diff --git a/app/build.gradle b/app/build.gradle index 6c12eb352..270fb90e5 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -10,8 +10,8 @@ android { applicationId "wangdaye.com.geometricweather" minSdkVersion 19 targetSdkVersion 30 - versionCode 30001 - versionName "3.001" + versionCode 30002 + versionName "3.002" multiDexEnabled true ndk { abiFilters 'armeabi', 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a' diff --git a/app/src/main/java/wangdaye/com/geometricweather/common/rxjava/BaseObserver.java b/app/src/main/java/wangdaye/com/geometricweather/common/rxjava/BaseObserver.java index eaaa30aef..f16940728 100644 --- a/app/src/main/java/wangdaye/com/geometricweather/common/rxjava/BaseObserver.java +++ b/app/src/main/java/wangdaye/com/geometricweather/common/rxjava/BaseObserver.java @@ -1,5 +1,7 @@ package wangdaye.com.geometricweather.common.rxjava; +import androidx.annotation.NonNull; + import io.reactivex.observers.DisposableObserver; public abstract class BaseObserver extends DisposableObserver { @@ -9,7 +11,7 @@ public abstract class BaseObserver extends DisposableObserver { public abstract void onFailed(); @Override - public void onNext(T t) { + public void onNext(@NonNull T t) { if (t == null) { onFailed(); } else { diff --git a/app/src/main/java/wangdaye/com/geometricweather/common/rxjava/ObserverContainer.java b/app/src/main/java/wangdaye/com/geometricweather/common/rxjava/ObserverContainer.java index 4b8dae0d8..809200564 100644 --- a/app/src/main/java/wangdaye/com/geometricweather/common/rxjava/ObserverContainer.java +++ b/app/src/main/java/wangdaye/com/geometricweather/common/rxjava/ObserverContainer.java @@ -25,7 +25,7 @@ protected void onStart() { } @Override - public void onNext(T t) { + public void onNext(@NonNull T t) { if (observer != null) { observer.onNext(t); } diff --git a/app/src/main/java/wangdaye/com/geometricweather/weather/converters/AccuResultConverter.java b/app/src/main/java/wangdaye/com/geometricweather/weather/converters/AccuResultConverter.java index a61919af7..7fcbda6e7 100644 --- a/app/src/main/java/wangdaye/com/geometricweather/weather/converters/AccuResultConverter.java +++ b/app/src/main/java/wangdaye/com/geometricweather/weather/converters/AccuResultConverter.java @@ -46,9 +46,11 @@ import wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult; import wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult; import wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult; +import wangdaye.com.geometricweather.weather.services.WeatherService; public class AccuResultConverter { + @NonNull public static Location convert(@Nullable Location location, AccuLocationResult result, @Nullable String zipCode) { if (location != null @@ -101,16 +103,17 @@ public static Location convert(@Nullable Location location, AccuLocationResult r } } - public static Weather convert(Context context, - Location location, - AccuCurrentResult currentResult, - AccuDailyResult dailyResult, - List hourlyResultList, - @Nullable AccuMinuteResult minuteResult, - @Nullable AccuAqiResult aqiResult, - List alertResultList) { + @NonNull + public static WeatherService.WeatherResultWrapper convert(Context context, + Location location, + AccuCurrentResult currentResult, + AccuDailyResult dailyResult, + List hourlyResultList, + @Nullable AccuMinuteResult minuteResult, + @Nullable AccuAqiResult aqiResult, + List alertResultList) { try { - return new Weather( + Weather weather = new Weather( new Base( location.getCityId(), System.currentTimeMillis(), @@ -189,8 +192,9 @@ public static Weather convert(Context context, ), getAlertList(alertResultList) ); + return new WeatherService.WeatherResultWrapper(weather); } catch (Exception ignored) { - return null; + return new WeatherService.WeatherResultWrapper(null); } } diff --git a/app/src/main/java/wangdaye/com/geometricweather/weather/converters/CNResultConverter.java b/app/src/main/java/wangdaye/com/geometricweather/weather/converters/CNResultConverter.java index 040810873..836c44cb3 100644 --- a/app/src/main/java/wangdaye/com/geometricweather/weather/converters/CNResultConverter.java +++ b/app/src/main/java/wangdaye/com/geometricweather/weather/converters/CNResultConverter.java @@ -38,13 +38,16 @@ import wangdaye.com.geometricweather.common.basic.models.weather.Wind; import wangdaye.com.geometricweather.common.basic.models.weather.WindDegree; import wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult; +import wangdaye.com.geometricweather.weather.services.WeatherService; public class CNResultConverter { - public static Weather convert(Context context, - @NonNull Location location, @Nullable CNWeatherResult result) { + @NonNull + public static WeatherService.WeatherResultWrapper convert(Context context, + @NonNull Location location, + @Nullable CNWeatherResult result) { if (result == null) { - return null; + return new WeatherService.WeatherResultWrapper(null); } try { @@ -58,7 +61,7 @@ public static Weather convert(Context context, ); result.weather.remove(0); - return new Weather( + Weather weather = new Weather( new Base( location.getCityId(), System.currentTimeMillis(), @@ -134,9 +137,10 @@ public static Weather convert(Context context, new ArrayList<>(), getAlertList(result.alert) ); + return new WeatherService.WeatherResultWrapper(weather); } catch (Exception e) { e.printStackTrace(); - return null; + return new WeatherService.WeatherResultWrapper(null); } } diff --git a/app/src/main/java/wangdaye/com/geometricweather/weather/converters/CaiyunResultConverter.java b/app/src/main/java/wangdaye/com/geometricweather/weather/converters/CaiyunResultConverter.java index 442e12175..61ab29fa6 100644 --- a/app/src/main/java/wangdaye/com/geometricweather/weather/converters/CaiyunResultConverter.java +++ b/app/src/main/java/wangdaye/com/geometricweather/weather/converters/CaiyunResultConverter.java @@ -5,6 +5,7 @@ import android.text.TextUtils; import androidx.annotation.ColorInt; +import androidx.annotation.NonNull; import androidx.annotation.Nullable; import java.util.ArrayList; @@ -36,15 +37,16 @@ import wangdaye.com.geometricweather.common.basic.models.weather.WindDegree; import wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult; import wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult; +import wangdaye.com.geometricweather.weather.services.WeatherService; public class CaiyunResultConverter { - @Nullable - public static Weather convert(Context context, Location location, - CaiYunMainlyResult mainlyResult, - CaiYunForecastResult forecastResult) { + @NonNull + public static WeatherService.WeatherResultWrapper convert(Context context, Location location, + CaiYunMainlyResult mainlyResult, + CaiYunForecastResult forecastResult) { try { - return new Weather( + Weather weather = new Weather( new Base( location.getCityId(), System.currentTimeMillis(), @@ -129,15 +131,21 @@ public static Weather convert(Context context, Location location, ), getAlertList(mainlyResult) ); + return new WeatherService.WeatherResultWrapper(weather); } catch (Exception e) { e.printStackTrace(); - return null; + return new WeatherService.WeatherResultWrapper(null); } } private static AirQuality getAirQuality(Context context, CaiYunMainlyResult result) { - String quality = CommonConverter.getAqiQuality( - context, Integer.parseInt(result.aqi.aqi)); + String quality; + try { + quality = CommonConverter.getAqiQuality( + context, Integer.parseInt(result.aqi.aqi)); + } catch (Exception e) { + quality = null; + } Integer index; try { @@ -324,8 +332,12 @@ private static List getDailyList(Context context, new Astro(null, null), new MoonPhase(null, null), new AirQuality( - CommonConverter.getAqiQuality(context, forecast.aqi.value.get(i)), - forecast.aqi.value.get(i), + forecast.aqi != null && forecast.aqi.value != null && forecast.aqi.value.size() > i + ? CommonConverter.getAqiQuality(context, forecast.aqi.value.get(i)) + : null, + forecast.aqi != null && forecast.aqi.value != null && forecast.aqi.value.size() > i + ? forecast.aqi.value.get(i) + : null, null, null, null, diff --git a/app/src/main/java/wangdaye/com/geometricweather/weather/converters/MfResultConverter.java b/app/src/main/java/wangdaye/com/geometricweather/weather/converters/MfResultConverter.java index 9e1569b1b..7c2fe45dd 100644 --- a/app/src/main/java/wangdaye/com/geometricweather/weather/converters/MfResultConverter.java +++ b/app/src/main/java/wangdaye/com/geometricweather/weather/converters/MfResultConverter.java @@ -5,6 +5,7 @@ import android.text.TextUtils; import android.util.Log; +import androidx.annotation.NonNull; import androidx.annotation.Nullable; import java.text.SimpleDateFormat; @@ -44,10 +45,12 @@ import wangdaye.com.geometricweather.weather.json.mf.MfLocationResult; import wangdaye.com.geometricweather.weather.json.mf.MfRainResult; import wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult; +import wangdaye.com.geometricweather.weather.services.WeatherService; public class MfResultConverter { // Result of a coordinates search + @NonNull public static Location convert(@Nullable Location location, MfForecastV2Result result) { if (location != null && !TextUtils.isEmpty(location.getProvince()) @@ -100,6 +103,7 @@ public static Location convert(@Nullable Location location, MfForecastV2Result r } // Result of a query string search + @NonNull public static Location convert(@Nullable Location location, MfLocationResult result) { if (location != null && !TextUtils.isEmpty(location.getProvince()) @@ -151,16 +155,17 @@ public static Location convert(@Nullable Location location, MfLocationResult res } } - public static Weather convert(Context context, - Location location, - MfCurrentResult currentResult, - MfForecastResult forecastResult, - MfEphemerisResult ephemerisResult, - MfRainResult rainResult, - MfWarningsResult warningsResult, - @Nullable AtmoAuraQAResult aqiAtmoAuraResult) { + @NonNull + public static WeatherService.WeatherResultWrapper convert(Context context, + Location location, + MfCurrentResult currentResult, + MfForecastResult forecastResult, + MfEphemerisResult ephemerisResult, + MfRainResult rainResult, + MfWarningsResult warningsResult, + @Nullable AtmoAuraQAResult aqiAtmoAuraResult) { try { - return new Weather( + Weather weather = new Weather( new Base( location.getCityId(), System.currentTimeMillis(), @@ -223,12 +228,13 @@ public static Weather convert(Context context, getMinutelyList(forecastResult.dailyForecasts.get(0).sun.rise, forecastResult.dailyForecasts.get(0).sun.set, rainResult), getWarningsList(warningsResult) ); + return new WeatherService.WeatherResultWrapper(weather); } catch (Exception ignored) { Log.d("GEOM", ignored.getMessage()); for (StackTraceElement stackTraceElement : ignored.getStackTrace()) { Log.d("GEOM", stackTraceElement.toString()); } - return null; + return new WeatherService.WeatherResultWrapper(null); } } diff --git a/app/src/main/java/wangdaye/com/geometricweather/weather/services/AccuWeatherService.java b/app/src/main/java/wangdaye/com/geometricweather/weather/services/AccuWeatherService.java index 77406f817..c4ee8f053 100644 --- a/app/src/main/java/wangdaye/com/geometricweather/weather/services/AccuWeatherService.java +++ b/app/src/main/java/wangdaye/com/geometricweather/weather/services/AccuWeatherService.java @@ -16,9 +16,10 @@ import io.reactivex.disposables.CompositeDisposable; import wangdaye.com.geometricweather.BuildConfig; import wangdaye.com.geometricweather.common.basic.models.Location; -import wangdaye.com.geometricweather.common.basic.models.weather.Weather; -import wangdaye.com.geometricweather.settings.SettingsOptionManager; +import wangdaye.com.geometricweather.common.rxjava.BaseObserver; +import wangdaye.com.geometricweather.common.rxjava.ObserverContainer; import wangdaye.com.geometricweather.common.rxjava.SchedulerTransformer; +import wangdaye.com.geometricweather.settings.SettingsOptionManager; import wangdaye.com.geometricweather.weather.apis.AccuWeatherApi; import wangdaye.com.geometricweather.weather.converters.AccuResultConverter; import wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult; @@ -28,8 +29,6 @@ import wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult; import wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult; import wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult; -import wangdaye.com.geometricweather.common.rxjava.BaseObserver; -import wangdaye.com.geometricweather.common.rxjava.ObserverContainer; /** * Accu weather service. @@ -139,11 +138,11 @@ public void requestWeather(Context context, Location location, @NonNull RequestW accuAlertResults ) ).compose(SchedulerTransformer.create()) - .subscribe(new ObserverContainer<>(mCompositeDisposable, new BaseObserver() { + .subscribe(new ObserverContainer<>(mCompositeDisposable, new BaseObserver() { @Override - public void onSucceed(Weather weather) { - if (weather != null) { - location.setWeather(weather); + public void onSucceed(WeatherResultWrapper wrapper) { + if (wrapper.result != null) { + location.setWeather(wrapper.result); callback.requestWeatherSuccess(location); } else { onFailed(); diff --git a/app/src/main/java/wangdaye/com/geometricweather/weather/services/CNWeatherService.java b/app/src/main/java/wangdaye/com/geometricweather/weather/services/CNWeatherService.java index c76cc2676..9ca6a3175 100644 --- a/app/src/main/java/wangdaye/com/geometricweather/weather/services/CNWeatherService.java +++ b/app/src/main/java/wangdaye/com/geometricweather/weather/services/CNWeatherService.java @@ -14,15 +14,14 @@ import io.reactivex.disposables.CompositeDisposable; import wangdaye.com.geometricweather.common.basic.models.ChineseCity; import wangdaye.com.geometricweather.common.basic.models.Location; -import wangdaye.com.geometricweather.common.basic.models.weather.Weather; +import wangdaye.com.geometricweather.common.rxjava.BaseObserver; +import wangdaye.com.geometricweather.common.rxjava.ObserverContainer; +import wangdaye.com.geometricweather.common.rxjava.SchedulerTransformer; import wangdaye.com.geometricweather.common.utils.LanguageUtils; import wangdaye.com.geometricweather.db.DatabaseHelper; -import wangdaye.com.geometricweather.common.rxjava.SchedulerTransformer; import wangdaye.com.geometricweather.weather.apis.CNWeatherApi; import wangdaye.com.geometricweather.weather.converters.CNResultConverter; import wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult; -import wangdaye.com.geometricweather.common.rxjava.BaseObserver; -import wangdaye.com.geometricweather.common.rxjava.ObserverContainer; /** * CN weather service. @@ -47,9 +46,9 @@ public void requestWeather(Context context, .subscribe(new ObserverContainer<>(mCompositeDisposable, new BaseObserver() { @Override public void onSucceed(CNWeatherResult cnWeatherResult) { - Weather weather = CNResultConverter.convert(context, location, cnWeatherResult); - if (weather != null) { - location.setWeather(weather); + WeatherResultWrapper wrapper = CNResultConverter.convert(context, location, cnWeatherResult); + if (wrapper.result != null) { + location.setWeather(wrapper.result); callback.requestWeatherSuccess(location); } else { onFailed(); diff --git a/app/src/main/java/wangdaye/com/geometricweather/weather/services/CaiYunWeatherService.java b/app/src/main/java/wangdaye/com/geometricweather/weather/services/CaiYunWeatherService.java index 4a50676f8..971a1824e 100644 --- a/app/src/main/java/wangdaye/com/geometricweather/weather/services/CaiYunWeatherService.java +++ b/app/src/main/java/wangdaye/com/geometricweather/weather/services/CaiYunWeatherService.java @@ -10,15 +10,14 @@ import io.reactivex.disposables.CompositeDisposable; import wangdaye.com.geometricweather.common.basic.models.ChineseCity; import wangdaye.com.geometricweather.common.basic.models.Location; -import wangdaye.com.geometricweather.common.basic.models.weather.Weather; +import wangdaye.com.geometricweather.common.rxjava.BaseObserver; +import wangdaye.com.geometricweather.common.rxjava.ObserverContainer; import wangdaye.com.geometricweather.common.rxjava.SchedulerTransformer; import wangdaye.com.geometricweather.weather.apis.CNWeatherApi; import wangdaye.com.geometricweather.weather.apis.CaiYunApi; import wangdaye.com.geometricweather.weather.converters.CaiyunResultConverter; import wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult; import wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult; -import wangdaye.com.geometricweather.common.rxjava.BaseObserver; -import wangdaye.com.geometricweather.common.rxjava.ObserverContainer; /** * CaiYun weather service. @@ -68,11 +67,11 @@ public void requestWeather(Context context, Observable.zip(mainly, forecast, (mainlyResult, forecastResult) -> CaiyunResultConverter.convert(context, location, mainlyResult, forecastResult) ).compose(SchedulerTransformer.create()) - .subscribe(new ObserverContainer<>(mCompositeDisposable, new BaseObserver() { + .subscribe(new ObserverContainer<>(mCompositeDisposable, new BaseObserver() { @Override - public void onSucceed(Weather weather) { - if (weather != null) { - location.setWeather(weather); + public void onSucceed(WeatherResultWrapper wrapper) { + if (wrapper.result != null) { + location.setWeather(wrapper.result); callback.requestWeatherSuccess(location); } else { callback.requestWeatherFailed(location); diff --git a/app/src/main/java/wangdaye/com/geometricweather/weather/services/MfWeatherService.java b/app/src/main/java/wangdaye/com/geometricweather/weather/services/MfWeatherService.java index 01847c5f2..cdf1fe7a0 100644 --- a/app/src/main/java/wangdaye/com/geometricweather/weather/services/MfWeatherService.java +++ b/app/src/main/java/wangdaye/com/geometricweather/weather/services/MfWeatherService.java @@ -43,7 +43,7 @@ public class MfWeatherService extends WeatherService { private final AtmoAuraIqaApi mAtmoAuraApi; private final CompositeDisposable mCompositeDisposable; - private static final String PREFERENCE_LOCAL = "LOCAL_PREFERENCE"; + private static final String PREFERENCE_LOCAL = "LOCAL_PREFERENCE_MF"; private static final String KEY_OLD_DISTRICT = "OLD_DISTRICT"; private static final String KEY_OLD_CITY = "OLD_CITY"; private static final String KEY_OLD_PROVINCE = "OLD_PROVINCE"; @@ -125,8 +125,10 @@ public void requestWeather(Context context, Location location, @NonNull RequestW Observable.create(emitter -> emitter.onNext(new EmptyWarningsResult())) ); - Observable aqiAtmoAura = null; - if (location.getProvince().equals("Auvergne-Rhône-Alpes") || location.getProvince().equals("01") + Observable aqiAtmoAura; + if (location.getProvince() == null) { + aqiAtmoAura = Observable.create(emitter -> emitter.onNext(new EmptyAtmoAuraQAResult())); + } else if (location.getProvince().equals("Auvergne-Rhône-Alpes") || location.getProvince().equals("01") || location.getProvince().equals("03") || location.getProvince().equals("07") || location.getProvince().equals("15") || location.getProvince().equals("26") || location.getProvince().equals("38") || location.getProvince().equals("42") @@ -156,11 +158,11 @@ public void requestWeather(Context context, Location location, @NonNull RequestW aqiAtmoAuraResult instanceof EmptyAtmoAuraQAResult ? null : aqiAtmoAuraResult ) ).compose(SchedulerTransformer.create()) - .subscribe(new ObserverContainer<>(mCompositeDisposable, new BaseObserver() { + .subscribe(new ObserverContainer<>(mCompositeDisposable, new BaseObserver() { @Override - public void onSucceed(Weather weather) { - if (weather != null) { - location.setWeather(weather); + public void onSucceed(WeatherResultWrapper wrapper) { + if (wrapper.result != null) { + location.setWeather(wrapper.result); callback.requestWeatherSuccess(location); } else { onFailed(); diff --git a/app/src/main/java/wangdaye/com/geometricweather/weather/services/WeatherService.java b/app/src/main/java/wangdaye/com/geometricweather/weather/services/WeatherService.java index f654b1ec9..86f64305c 100644 --- a/app/src/main/java/wangdaye/com/geometricweather/weather/services/WeatherService.java +++ b/app/src/main/java/wangdaye/com/geometricweather/weather/services/WeatherService.java @@ -4,10 +4,12 @@ import android.text.TextUtils; import androidx.annotation.NonNull; +import androidx.annotation.Nullable; import androidx.annotation.WorkerThread; import java.util.List; +import wangdaye.com.geometricweather.common.basic.models.weather.Weather; import wangdaye.com.geometricweather.common.utils.LanguageUtils; import wangdaye.com.geometricweather.common.basic.models.Location; @@ -17,6 +19,14 @@ public abstract class WeatherService { + public static class WeatherResultWrapper { + final Weather result; + + public WeatherResultWrapper(@Nullable Weather weather) { + result = weather; + } + } + public interface RequestWeatherCallback { void requestWeatherSuccess(@NonNull Location requestLocation); void requestWeatherFailed(@NonNull Location requestLocation); diff --git a/release/3.001/fdroid/release/GeometricWeather 3.001_fdroid.apk b/release/3.002/fdroid/release/GeometricWeather 3.002_fdroid.apk similarity index 73% rename from release/3.001/fdroid/release/GeometricWeather 3.001_fdroid.apk rename to release/3.002/fdroid/release/GeometricWeather 3.002_fdroid.apk index 60141da41..7b742401a 100644 Binary files a/release/3.001/fdroid/release/GeometricWeather 3.001_fdroid.apk and b/release/3.002/fdroid/release/GeometricWeather 3.002_fdroid.apk differ diff --git a/release/3.001/fdroid/release/output-metadata.json b/release/3.002/fdroid/release/output-metadata.json similarity index 68% rename from release/3.001/fdroid/release/output-metadata.json rename to release/3.002/fdroid/release/output-metadata.json index 90ab6aa61..d5687accc 100644 --- a/release/3.001/fdroid/release/output-metadata.json +++ b/release/3.002/fdroid/release/output-metadata.json @@ -10,9 +10,9 @@ { "type": "SINGLE", "filters": [], - "versionCode": 30001, - "versionName": "3.001_fdroid", - "outputFile": "GeometricWeather 3.001_fdroid.apk" + "versionCode": 30002, + "versionName": "3.002_fdroid", + "outputFile": "GeometricWeather 3.002_fdroid.apk" } ] } \ No newline at end of file diff --git a/release/3.001/gplay/release/GeometricWeather 3.001_gplay.apk b/release/3.002/gplay/release/GeometricWeather 3.002_gplay.apk similarity index 76% rename from release/3.001/gplay/release/GeometricWeather 3.001_gplay.apk rename to release/3.002/gplay/release/GeometricWeather 3.002_gplay.apk index 6a0403894..bea36e019 100644 Binary files a/release/3.001/gplay/release/GeometricWeather 3.001_gplay.apk and b/release/3.002/gplay/release/GeometricWeather 3.002_gplay.apk differ diff --git a/release/3.001/gplay/release/output-metadata.json b/release/3.002/gplay/release/output-metadata.json similarity index 69% rename from release/3.001/gplay/release/output-metadata.json rename to release/3.002/gplay/release/output-metadata.json index 0d071d2b2..26bc7737e 100644 --- a/release/3.001/gplay/release/output-metadata.json +++ b/release/3.002/gplay/release/output-metadata.json @@ -10,9 +10,9 @@ { "type": "SINGLE", "filters": [], - "versionCode": 30001, - "versionName": "3.001_gplay", - "outputFile": "GeometricWeather 3.001_gplay.apk" + "versionCode": 30002, + "versionName": "3.002_gplay", + "outputFile": "GeometricWeather 3.002_gplay.apk" } ] } \ No newline at end of file diff --git a/release/3.001/mapping/fdroidRelease/configuration.txt b/release/3.002/mapping/fdroidRelease/configuration.txt similarity index 100% rename from release/3.001/mapping/fdroidRelease/configuration.txt rename to release/3.002/mapping/fdroidRelease/configuration.txt diff --git a/release/3.001/mapping/fdroidRelease/mapping.txt b/release/3.002/mapping/fdroidRelease/mapping.txt similarity index 99% rename from release/3.001/mapping/fdroidRelease/mapping.txt rename to release/3.002/mapping/fdroidRelease/mapping.txt index e1cbc2df2..876f628bb 100644 --- a/release/3.001/mapping/fdroidRelease/mapping.txt +++ b/release/3.002/mapping/fdroidRelease/mapping.txt @@ -1,7 +1,7 @@ # compiler: R8 # compiler_version: 2.1.86 # min_api: 19 -# pg_map_id: 1eb3fb3 +# pg_map_id: e722e64 # common_typos_disable android.didikee.donate.AlipayDonate -> android.didikee.donate.a: 1:1:boolean hasInstalledAlipayClient(android.content.Context):73:73 -> a @@ -85713,30 +85713,30 @@ wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC 1:1:wangdaye.com.geometricweather.main.utils.StatementManager getStatementManager():485:485 -> G 1:1:javax.inject.Provider getStatementManagerProvider():489:489 -> H 2:3:javax.inject.Provider getStatementManagerProvider():491:492 -> H - 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity injectClockDayDetailsWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity):650:650 -> I - 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity injectClockDayHorizontalWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity):656:656 -> J - 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity injectClockDayVerticalWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity):662:662 -> K - 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity injectClockDayWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity):668:668 -> L - 1:1:wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity injectDailyTrendWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity):674:674 -> M - 1:1:wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity injectDayWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity):680:680 -> N - 1:1:wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity injectDayWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity):686:686 -> O - 1:1:wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity injectHourlyTrendWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity):692:692 -> P - 1:1:wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity injectMultiCityWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity):698:698 -> Q - 1:1:wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity injectTextWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity):704:704 -> R - 1:1:wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity injectWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity):710:710 -> S - 1:1:void injectWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity):641:641 -> a - 1:1:void injectClockDayWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity):600:600 -> b - 1:1:void injectHourlyTrendWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity):623:623 -> c - 1:1:void injectDailyTrendWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity):606:606 -> d - 1:1:void injectDayWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity):612:612 -> e + 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity injectClockDayDetailsWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity):643:643 -> I + 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity injectClockDayHorizontalWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity):649:649 -> J + 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity injectClockDayVerticalWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity):655:655 -> K + 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity injectClockDayWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity):661:661 -> L + 1:1:wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity injectDailyTrendWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity):667:667 -> M + 1:1:wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity injectDayWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity):673:673 -> N + 1:1:wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity injectDayWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity):679:679 -> O + 1:1:wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity injectHourlyTrendWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity):685:685 -> P + 1:1:wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity injectMultiCityWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity):691:691 -> Q + 1:1:wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity injectTextWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity):697:697 -> R + 1:1:wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity injectWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity):703:703 -> S + 1:1:void injectWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity):634:634 -> a + 1:1:void injectClockDayWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity):599:599 -> b + 1:1:void injectHourlyTrendWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity):619:619 -> c + 1:1:void injectDailyTrendWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity):604:604 -> d + 1:1:void injectDayWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity):609:609 -> e void injectSearchActivity(wangdaye.com.geometricweather.search.SearchActivity) -> f 1:1:void injectClockDayDetailsWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity):582:582 -> g void injectMainActivity(wangdaye.com.geometricweather.main.MainActivity) -> h - 1:1:void injectTextWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity):635:635 -> i + 1:1:void injectTextWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity):629:629 -> i 1:1:java.util.Set getActivityViewModelFactory():562:562 -> j 1:1:void injectClockDayHorizontalWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity):588:588 -> k - 1:1:void injectMultiCityWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity):629:629 -> l - 1:1:void injectDayWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity):617:617 -> m + 1:1:void injectMultiCityWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity):624:624 -> l + 1:1:void injectDayWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity):614:614 -> m 1:1:void injectClockDayVerticalWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity):594:594 -> n 1:1:wangdaye.com.geometricweather.main.MainActivityViewModel_AssistedFactory access$1800(wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl):452:452 -> o 1:1:wangdaye.com.geometricweather.main.MainActivityRepository access$1900(wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl):452:452 -> p @@ -85756,15 +85756,15 @@ wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl$SwitchingProvider -> wangdaye.com.geometricweather.a$c$b$a: wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl this$2 -> b int id -> a - 1:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl,int):799:800 -> - 1:1:java.lang.Object get():806:806 -> get - 2:2:java.lang.Object get():823:823 -> get - 3:3:java.lang.Object get():825:825 -> get - 4:4:java.lang.Object get():820:820 -> get - 5:5:java.lang.Object get():817:817 -> get - 6:6:java.lang.Object get():814:814 -> get - 7:7:java.lang.Object get():811:811 -> get - 8:8:java.lang.Object get():808:808 -> get + 1:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl,int):792:793 -> + 1:1:java.lang.Object get():799:799 -> get + 2:2:java.lang.Object get():816:816 -> get + 3:3:java.lang.Object get():818:818 -> get + 4:4:java.lang.Object get():813:813 -> get + 5:5:java.lang.Object get():810:810 -> get + 6:6:java.lang.Object get():807:807 -> get + 7:7:java.lang.Object get():804:804 -> get + 8:8:java.lang.Object get():801:801 -> get wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$Builder -> wangdaye.com.geometricweather.a$d: wangdaye.com.geometricweather.location.di.ApiModule apiModule -> a wangdaye.com.geometricweather.weather.di.ApiModule apiModule2 -> b @@ -85782,38 +85782,38 @@ wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ServiceCBuilder -> wangdaye.com.geometricweather.a$e: wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC this$0 -> b android.app.Service service -> a - 1:1:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC):832:832 -> - 2:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$1):832:832 -> - 1:1:dagger.hilt.android.components.ServiceComponent build():832:832 -> a - 1:1:dagger.hilt.android.internal.builders.ServiceComponentBuilder service(android.app.Service):832:832 -> b - 1:2:wangdaye.com.geometricweather.GeometricWeather_HiltComponents$ServiceC build():843:844 -> c - 1:1:wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ServiceCBuilder service(android.app.Service):837:837 -> d + 1:1:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC):825:825 -> + 2:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$1):825:825 -> + 1:1:dagger.hilt.android.components.ServiceComponent build():825:825 -> a + 1:1:dagger.hilt.android.internal.builders.ServiceComponentBuilder service(android.app.Service):825:825 -> b + 1:2:wangdaye.com.geometricweather.GeometricWeather_HiltComponents$ServiceC build():836:837 -> c + 1:1:wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ServiceCBuilder service(android.app.Service):830:830 -> d wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ServiceCImpl -> wangdaye.com.geometricweather.a$f: wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC this$0 -> a - 1:1:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,android.app.Service,wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$1):848:848 -> - 2:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,android.app.Service):849:849 -> - 1:1:void injectForegroundTodayForecastUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService):868:868 -> a - 1:1:void injectForegroundNormalUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService):862:862 -> b - 1:1:void injectForegroundTomorrowForecastUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService):874:874 -> c - 1:1:void injectCMWeatherProviderService(wangdaye.com.geometricweather.background.service.CMWeatherProviderService):879:879 -> d - 1:1:void injectAwakeForegroundUpdateService(wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService):856:856 -> e - 1:2:wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService injectAwakeForegroundUpdateService2(wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService):884:885 -> f - 1:2:wangdaye.com.geometricweather.background.service.CMWeatherProviderService injectCMWeatherProviderService2(wangdaye.com.geometricweather.background.service.CMWeatherProviderService):912:913 -> g - 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService injectForegroundNormalUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService):891:892 -> h - 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService injectForegroundTodayForecastUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService):898:899 -> i - 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService injectForegroundTomorrowForecastUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService):905:906 -> j + 1:1:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,android.app.Service,wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$1):841:841 -> + 2:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,android.app.Service):842:842 -> + 1:1:void injectForegroundTodayForecastUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService):859:859 -> a + 1:1:void injectForegroundNormalUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService):853:853 -> b + 1:1:void injectForegroundTomorrowForecastUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService):865:865 -> c + 1:1:void injectCMWeatherProviderService(wangdaye.com.geometricweather.background.service.CMWeatherProviderService):870:870 -> d + 1:1:void injectAwakeForegroundUpdateService(wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService):848:848 -> e + 1:2:wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService injectAwakeForegroundUpdateService2(wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService):875:876 -> f + 1:2:wangdaye.com.geometricweather.background.service.CMWeatherProviderService injectCMWeatherProviderService2(wangdaye.com.geometricweather.background.service.CMWeatherProviderService):903:904 -> g + 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService injectForegroundNormalUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService):882:883 -> h + 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService injectForegroundTodayForecastUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService):889:890 -> i + 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService injectForegroundTomorrowForecastUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService):896:897 -> j wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$SwitchingProvider -> wangdaye.com.geometricweather.a$g: wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC this$0 -> b int id -> a - 1:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,int):921:922 -> - 1:1:java.lang.Object get():928:928 -> get - 2:2:java.lang.Object get():945:945 -> get - 3:3:java.lang.Object get():947:947 -> get - 4:4:java.lang.Object get():942:942 -> get - 5:5:java.lang.Object get():939:939 -> get - 6:6:java.lang.Object get():936:936 -> get - 7:7:java.lang.Object get():933:933 -> get - 8:8:java.lang.Object get():930:930 -> get + 1:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,int):912:913 -> + 1:1:java.lang.Object get():919:919 -> get + 2:2:java.lang.Object get():936:936 -> get + 3:3:java.lang.Object get():938:938 -> get + 4:4:java.lang.Object get():933:933 -> get + 5:5:java.lang.Object get():930:930 -> get + 6:6:java.lang.Object get():927:927 -> get + 7:7:java.lang.Object get():924:924 -> get + 8:8:java.lang.Object get():921:921 -> get wangdaye.com.geometricweather.GeometricWeather -> wangdaye.com.geometricweather.GeometricWeather: wangdaye.com.geometricweather.GeometricWeather sInstance -> f java.util.Set mActivitySet -> c @@ -87360,10 +87360,10 @@ wangdaye.com.geometricweather.common.retrofit.interceptors.GzipInterceptor -> wa wangdaye.com.geometricweather.common.retrofit.interceptors.ReportExceptionInterceptor -> wangdaye.com.geometricweather.j.b.b.b: 1:1:void ():9:9 -> wangdaye.com.geometricweather.common.rxjava.BaseObserver -> wangdaye.com.geometricweather.j.c.a: - 1:1:void ():5:5 -> - 1:1:void onError(java.lang.Throwable):22:22 -> onError - 1:1:void onNext(java.lang.Object):14:14 -> onNext - 2:2:void onNext(java.lang.Object):16:16 -> onNext + 1:1:void ():7:7 -> + 1:1:void onError(java.lang.Throwable):24:24 -> onError + 1:1:void onNext(java.lang.Object):16:16 -> onNext + 2:2:void onNext(java.lang.Object):18:18 -> onNext wangdaye.com.geometricweather.common.rxjava.ObserverContainer -> wangdaye.com.geometricweather.j.c.b: io.reactivex.disposables.CompositeDisposable compositeDisposable -> b io.reactivex.Observer observer -> c @@ -100044,299 +100044,305 @@ wangdaye.com.geometricweather.weather.apis.MfWeatherApi -> wangdaye.com.geometri io.reactivex.Observable getForecast(double,double,java.lang.String,java.lang.String) -> f io.reactivex.Observable getEphemeris(double,double,java.lang.String,java.lang.String) -> g wangdaye.com.geometricweather.weather.converters.AccuResultConverter -> wangdaye.com.geometricweather.q.f.a: - 1:5:java.lang.String arrayToString(java.lang.String[]):544:548 -> a - 6:6:java.lang.String arrayToString(java.lang.String[]):551:551 -> a - 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):55:58 -> b - 5:5:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):62:62 -> b - 6:8:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):64:66 -> b - 9:15:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):71:77 -> b - 16:16:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):80:80 -> b - 17:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):84:84 -> b - 18:24:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):93:99 -> b - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):113:113 -> c - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):115:116 -> c - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):120:120 -> c - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):124:124 -> c - 6:11:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):126:131 -> c - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):135:135 -> c - 13:14:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):151:152 -> c - 15:15:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):154:154 -> c - 16:23:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):159:166 -> c - 24:31:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):168:175 -> c - 32:33:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):180:181 -> c - 34:35:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):183:184 -> c - 36:37:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):186:187 -> c - 38:38:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):185:185 -> c - 39:39:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):190:190 -> c - 1:1:java.lang.String convertUnit(android.content.Context,java.lang.String):485:485 -> d - 2:2:java.lang.String convertUnit(android.content.Context,java.lang.String):490:490 -> d - 3:3:java.lang.String convertUnit(android.content.Context,java.lang.String):493:493 -> d - 4:4:java.lang.String convertUnit(android.content.Context,java.lang.String):496:496 -> d - 1:1:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):511:511 -> e - 2:3:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):513:514 -> e - 4:6:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):516:518 -> e - 7:9:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):520:520 -> e - 10:10:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):522:522 -> e - 11:14:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):524:527 -> e - 15:15:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):530:530 -> e - 16:17:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):533:534 -> e - 1:2:wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen getAirAndPollen(java.util.List,java.lang.String):357:358 -> f - 1:3:java.util.List getAlertList(java.util.List):428:430 -> g - 4:5:java.util.List getAlertList(java.util.List):433:434 -> g - 6:6:java.util.List getAlertList(java.util.List):436:436 -> g - 7:7:java.util.List getAlertList(java.util.List):439:439 -> g - 8:8:java.util.List getAlertList(java.util.List):430:430 -> g - 9:10:java.util.List getAlertList(java.util.List):443:444 -> g - 1:3:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.util.List):307:309 -> h - 4:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.util.List):312:313 -> h - 1:1:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):198:198 -> i - 2:3:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):200:201 -> i - 4:4:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):206:206 -> i - 5:5:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):208:208 -> i - 6:8:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):210:212 -> i - 9:9:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):216:216 -> i - 10:10:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):219:219 -> i - 11:13:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):221:223 -> i - 14:18:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):226:230 -> i - 19:19:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):233:233 -> i - 20:22:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):235:237 -> i - 23:24:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):242:243 -> i - 25:25:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):245:245 -> i - 26:26:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):248:248 -> i - 27:27:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):250:250 -> i - 28:30:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):252:254 -> i - 31:31:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):258:258 -> i - 32:32:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):261:261 -> i - 33:35:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):263:265 -> i - 36:40:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):268:272 -> i - 41:41:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):275:275 -> i - 42:44:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):277:279 -> i - 45:46:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):284:285 -> i - 47:47:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):287:287 -> i - 48:48:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):292:292 -> i - 49:51:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):295:297 -> i - 52:52:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):201:201 -> i - 1:7:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):325:331 -> j - 8:9:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):333:334 -> j - 10:11:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):336:337 -> j - 12:13:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):339:340 -> j - 1:3:wangdaye.com.geometricweather.common.basic.models.weather.UV getDailyUV(java.util.List):346:348 -> k - 1:3:java.util.List getHourlyList(java.util.List):366:368 -> l - 4:4:java.util.List getHourlyList(java.util.List):374:374 -> l - 5:5:java.util.List getHourlyList(java.util.List):376:376 -> l - 6:6:java.util.List getHourlyList(java.util.List):392:392 -> l - 7:7:java.util.List getHourlyList(java.util.List):368:368 -> l - 1:1:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):407:407 -> m - 2:4:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):409:411 -> m - 5:5:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):415:415 -> m - 6:6:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):417:417 -> m - 7:8:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):419:420 -> m - 9:9:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):411:411 -> m - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):462:462 -> n - 2:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):464:464 -> n - 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):474:474 -> n - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):478:478 -> n - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):480:480 -> n - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):476:476 -> n - 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):472:472 -> n - 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):469:469 -> n - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):467:467 -> n - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):460:460 -> n - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):458:458 -> n - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):455:455 -> n + 1:5:java.lang.String arrayToString(java.lang.String[]):548:552 -> a + 6:6:java.lang.String arrayToString(java.lang.String[]):555:555 -> a + 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):57:60 -> b + 5:5:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):64:64 -> b + 6:8:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):66:68 -> b + 9:15:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):73:79 -> b + 16:16:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):82:82 -> b + 17:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):86:86 -> b + 18:24:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):95:101 -> b + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):116:116 -> c + 2:3:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):118:119 -> c + 4:4:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):123:123 -> c + 5:5:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):127:127 -> c + 6:11:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):129:134 -> c + 12:12:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):138:138 -> c + 13:14:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):154:155 -> c + 15:15:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):157:157 -> c + 16:23:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):162:169 -> c + 24:31:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):171:178 -> c + 32:33:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):183:184 -> c + 34:35:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):186:187 -> c + 36:37:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):189:190 -> c + 38:38:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):188:188 -> c + 39:39:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):193:193 -> c + 40:40:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):195:195 -> c + 41:41:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):197:197 -> c + 1:1:java.lang.String convertUnit(android.content.Context,java.lang.String):489:489 -> d + 2:2:java.lang.String convertUnit(android.content.Context,java.lang.String):494:494 -> d + 3:3:java.lang.String convertUnit(android.content.Context,java.lang.String):497:497 -> d + 4:4:java.lang.String convertUnit(android.content.Context,java.lang.String):500:500 -> d + 1:1:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):515:515 -> e + 2:3:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):517:518 -> e + 4:6:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):520:522 -> e + 7:9:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):524:524 -> e + 10:10:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):526:526 -> e + 11:14:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):528:531 -> e + 15:15:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):534:534 -> e + 16:17:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):537:538 -> e + 1:2:wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen getAirAndPollen(java.util.List,java.lang.String):361:362 -> f + 1:3:java.util.List getAlertList(java.util.List):432:434 -> g + 4:5:java.util.List getAlertList(java.util.List):437:438 -> g + 6:6:java.util.List getAlertList(java.util.List):440:440 -> g + 7:7:java.util.List getAlertList(java.util.List):443:443 -> g + 8:8:java.util.List getAlertList(java.util.List):434:434 -> g + 9:10:java.util.List getAlertList(java.util.List):447:448 -> g + 1:3:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.util.List):311:313 -> h + 4:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.util.List):316:317 -> h + 1:1:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):202:202 -> i + 2:3:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):204:205 -> i + 4:4:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):210:210 -> i + 5:5:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):212:212 -> i + 6:8:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):214:216 -> i + 9:9:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):220:220 -> i + 10:10:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):223:223 -> i + 11:13:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):225:227 -> i + 14:18:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):230:234 -> i + 19:19:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):237:237 -> i + 20:22:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):239:241 -> i + 23:24:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):246:247 -> i + 25:25:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):249:249 -> i + 26:26:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):252:252 -> i + 27:27:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):254:254 -> i + 28:30:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):256:258 -> i + 31:31:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):262:262 -> i + 32:32:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):265:265 -> i + 33:35:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):267:269 -> i + 36:40:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):272:276 -> i + 41:41:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):279:279 -> i + 42:44:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):281:283 -> i + 45:46:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):288:289 -> i + 47:47:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):291:291 -> i + 48:48:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):296:296 -> i + 49:51:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):299:301 -> i + 52:52:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):205:205 -> i + 1:7:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):329:335 -> j + 8:9:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):337:338 -> j + 10:11:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):340:341 -> j + 12:13:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):343:344 -> j + 1:3:wangdaye.com.geometricweather.common.basic.models.weather.UV getDailyUV(java.util.List):350:352 -> k + 1:3:java.util.List getHourlyList(java.util.List):370:372 -> l + 4:4:java.util.List getHourlyList(java.util.List):378:378 -> l + 5:5:java.util.List getHourlyList(java.util.List):380:380 -> l + 6:6:java.util.List getHourlyList(java.util.List):396:396 -> l + 7:7:java.util.List getHourlyList(java.util.List):372:372 -> l + 1:1:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):411:411 -> m + 2:4:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):413:415 -> m + 5:5:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):419:419 -> m + 6:6:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):421:421 -> m + 7:8:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):423:424 -> m + 9:9:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):415:415 -> m + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):466:466 -> n + 2:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):468:468 -> n + 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):478:478 -> n + 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):482:482 -> n + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):484:484 -> n + 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):480:480 -> n + 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):476:476 -> n + 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):473:473 -> n + 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):471:471 -> n + 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):464:464 -> n + 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):462:462 -> n + 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):459:459 -> n int toInt(double) -> o wangdaye.com.geometricweather.weather.converters.CNResultConverter -> wangdaye.com.geometricweather.q.f.b: - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):51:51 -> a - 2:2:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):53:53 -> a - 3:4:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):56:57 -> a - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):59:59 -> a - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):61:61 -> a - 7:8:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):63:64 -> a - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):68:68 -> a - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):72:72 -> a - 11:12:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):74:75 -> a - 13:14:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):98:99 -> a - 15:16:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):104:105 -> a - 17:24:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):108:115 -> a - 25:26:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):117:118 -> a - 27:27:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):124:124 -> a - 28:28:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):127:127 -> a - 29:30:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):130:131 -> a - 31:31:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):128:128 -> a - 32:32:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):135:135 -> a - 33:33:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):138:138 -> a - 1:1:int getAlertColor(java.lang.String):556:556 -> b - 2:2:int getAlertColor(java.lang.String):559:559 -> b - 3:3:int getAlertColor(java.lang.String):566:566 -> b - 4:4:int getAlertColor(java.lang.String):562:562 -> b - 5:5:int getAlertColor(java.lang.String):578:578 -> b - 6:6:int getAlertColor(java.lang.String):574:574 -> b - 1:3:java.util.List getAlertList(java.util.List):359:361 -> c - 4:4:java.util.List getAlertList(java.util.List):363:363 -> c - 5:5:java.util.List getAlertList(java.util.List):365:365 -> c - 6:6:java.util.List getAlertList(java.util.List):368:368 -> c - 7:7:java.util.List getAlertList(java.util.List):370:370 -> c - 8:8:java.util.List getAlertList(java.util.List):372:372 -> c - 9:10:java.util.List getAlertList(java.util.List):376:377 -> c - 11:11:java.util.List getAlertList(java.util.List):368:368 -> c - 12:13:java.util.List getAlertList(java.util.List):382:383 -> c - 1:1:int getAlertPriority(java.lang.String):526:526 -> d - 2:2:int getAlertPriority(java.lang.String):529:529 -> d - 1:1:java.lang.Float getCO(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):466:466 -> e - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):274:274 -> f - 2:4:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):276:278 -> f - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):290:290 -> f - 1:4:java.util.List getDailyList(android.content.Context,java.util.List):146:149 -> g - 5:5:java.util.List getDailyList(android.content.Context,java.util.List):151:151 -> g - 6:6:java.util.List getDailyList(android.content.Context,java.util.List):153:153 -> g - 7:7:java.util.List getDailyList(android.content.Context,java.util.List):156:156 -> g - 8:10:java.util.List getDailyList(android.content.Context,java.util.List):158:160 -> g - 11:11:java.util.List getDailyList(android.content.Context,java.util.List):162:162 -> g - 12:13:java.util.List getDailyList(android.content.Context,java.util.List):192:193 -> g - 14:14:java.util.List getDailyList(android.content.Context,java.util.List):195:195 -> g - 15:17:java.util.List getDailyList(android.content.Context,java.util.List):200:202 -> g - 18:18:java.util.List getDailyList(android.content.Context,java.util.List):204:204 -> g - 19:20:java.util.List getDailyList(android.content.Context,java.util.List):234:235 -> g - 21:21:java.util.List getDailyList(android.content.Context,java.util.List):237:237 -> g - 22:23:java.util.List getDailyList(android.content.Context,java.util.List):242:243 -> g - 24:24:java.util.List getDailyList(android.content.Context,java.util.List):247:247 -> g - 25:26:java.util.List getDailyList(android.content.Context,java.util.List):264:265 -> g - 27:27:java.util.List getDailyList(android.content.Context,java.util.List):263:263 -> g - 28:28:java.util.List getDailyList(android.content.Context,java.util.List):153:153 -> g - 1:2:java.util.Date getDate(java.lang.String):474:475 -> h - 1:6:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):297:302 -> i - 7:8:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):304:305 -> i - 9:9:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):307:307 -> i - 10:11:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):318:319 -> i - 12:12:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):321:321 -> i - 13:14:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):324:325 -> i - 15:15:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):327:327 -> i - 16:16:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):329:329 -> i - 17:17:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):321:321 -> i - 1:1:float getHoursOfDay(java.util.Date,java.util.Date):480:480 -> j - 1:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):388:389 -> k - 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):392:392 -> k - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):460:460 -> k - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):457:457 -> k - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):451:451 -> k - 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):446:446 -> k - 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):440:440 -> k - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):430:430 -> k - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):425:425 -> k - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):421:421 -> k - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):417:417 -> k - 13:13:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):399:399 -> k - 14:14:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):395:395 -> k - 1:1:float getWindDegree(java.lang.String):488:488 -> l + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):50:50 -> a + 2:2:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):54:54 -> a + 3:3:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):56:56 -> a + 4:5:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):59:60 -> a + 6:6:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):62:62 -> a + 7:7:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):64:64 -> a + 8:9:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):66:67 -> a + 10:10:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):71:71 -> a + 11:11:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):75:75 -> a + 12:13:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):77:78 -> a + 14:15:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):101:102 -> a + 16:17:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):107:108 -> a + 18:25:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):111:118 -> a + 26:27:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):120:121 -> a + 28:28:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):127:127 -> a + 29:29:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):130:130 -> a + 30:31:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):133:134 -> a + 32:32:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):131:131 -> a + 33:33:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):138:138 -> a + 34:34:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):140:140 -> a + 35:36:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):142:143 -> a + 1:1:int getAlertColor(java.lang.String):560:560 -> b + 2:2:int getAlertColor(java.lang.String):563:563 -> b + 3:3:int getAlertColor(java.lang.String):570:570 -> b + 4:4:int getAlertColor(java.lang.String):566:566 -> b + 5:5:int getAlertColor(java.lang.String):582:582 -> b + 6:6:int getAlertColor(java.lang.String):578:578 -> b + 1:3:java.util.List getAlertList(java.util.List):363:365 -> c + 4:4:java.util.List getAlertList(java.util.List):367:367 -> c + 5:5:java.util.List getAlertList(java.util.List):369:369 -> c + 6:6:java.util.List getAlertList(java.util.List):372:372 -> c + 7:7:java.util.List getAlertList(java.util.List):374:374 -> c + 8:8:java.util.List getAlertList(java.util.List):376:376 -> c + 9:10:java.util.List getAlertList(java.util.List):380:381 -> c + 11:11:java.util.List getAlertList(java.util.List):372:372 -> c + 12:13:java.util.List getAlertList(java.util.List):386:387 -> c + 1:1:int getAlertPriority(java.lang.String):530:530 -> d + 2:2:int getAlertPriority(java.lang.String):533:533 -> d + 1:1:java.lang.Float getCO(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):470:470 -> e + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):278:278 -> f + 2:4:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):280:282 -> f + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):294:294 -> f + 1:4:java.util.List getDailyList(android.content.Context,java.util.List):150:153 -> g + 5:5:java.util.List getDailyList(android.content.Context,java.util.List):155:155 -> g + 6:6:java.util.List getDailyList(android.content.Context,java.util.List):157:157 -> g + 7:7:java.util.List getDailyList(android.content.Context,java.util.List):160:160 -> g + 8:10:java.util.List getDailyList(android.content.Context,java.util.List):162:164 -> g + 11:11:java.util.List getDailyList(android.content.Context,java.util.List):166:166 -> g + 12:13:java.util.List getDailyList(android.content.Context,java.util.List):196:197 -> g + 14:14:java.util.List getDailyList(android.content.Context,java.util.List):199:199 -> g + 15:17:java.util.List getDailyList(android.content.Context,java.util.List):204:206 -> g + 18:18:java.util.List getDailyList(android.content.Context,java.util.List):208:208 -> g + 19:20:java.util.List getDailyList(android.content.Context,java.util.List):238:239 -> g + 21:21:java.util.List getDailyList(android.content.Context,java.util.List):241:241 -> g + 22:23:java.util.List getDailyList(android.content.Context,java.util.List):246:247 -> g + 24:24:java.util.List getDailyList(android.content.Context,java.util.List):251:251 -> g + 25:26:java.util.List getDailyList(android.content.Context,java.util.List):268:269 -> g + 27:27:java.util.List getDailyList(android.content.Context,java.util.List):267:267 -> g + 28:28:java.util.List getDailyList(android.content.Context,java.util.List):157:157 -> g + 1:2:java.util.Date getDate(java.lang.String):478:479 -> h + 1:6:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):301:306 -> i + 7:8:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):308:309 -> i + 9:9:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):311:311 -> i + 10:11:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):322:323 -> i + 12:12:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):325:325 -> i + 13:14:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):328:329 -> i + 15:15:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):331:331 -> i + 16:16:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):333:333 -> i + 17:17:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):325:325 -> i + 1:1:float getHoursOfDay(java.util.Date,java.util.Date):484:484 -> j + 1:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):392:393 -> k + 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):396:396 -> k + 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):464:464 -> k + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):461:461 -> k + 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):455:455 -> k + 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):450:450 -> k + 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):444:444 -> k + 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):434:434 -> k + 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):429:429 -> k + 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):425:425 -> k + 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):421:421 -> k + 13:13:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):403:403 -> k + 14:14:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):399:399 -> k + 1:1:float getWindDegree(java.lang.String):492:492 -> l wangdaye.com.geometricweather.weather.converters.CaiyunResultConverter -> wangdaye.com.geometricweather.q.f.c: - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):47:47 -> a - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):49:50 -> a - 4:6:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):52:54 -> a - 7:8:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):57:58 -> a - 9:10:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):60:61 -> a - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):83:83 -> a - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):85:85 -> a - 13:13:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):88:88 -> a - 14:14:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):91:91 -> a - 15:15:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):89:89 -> a - 16:17:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):95:96 -> a - 18:20:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):99:101 -> a - 21:22:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):103:104 -> a - 23:24:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):106:107 -> a - 25:26:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):115:116 -> a - 27:28:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):119:120 -> a - 29:29:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):117:117 -> a - 30:33:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):124:127 -> a - 34:34:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):123:123 -> a - 35:35:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):130:130 -> a - 36:36:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):133:133 -> a - 1:3:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):139:139 -> b - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):144:144 -> b - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):151:151 -> b - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):158:158 -> b - 7:7:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):165:165 -> b - 8:8:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):172:172 -> b - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):179:179 -> b - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):186:186 -> b - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):191:191 -> b - 1:1:int getAlertColor(java.lang.String):804:804 -> c - 2:2:int getAlertColor(java.lang.String):807:807 -> c - 3:3:int getAlertColor(java.lang.String):814:814 -> c - 4:4:int getAlertColor(java.lang.String):810:810 -> c - 5:5:int getAlertColor(java.lang.String):826:826 -> c - 6:6:int getAlertColor(java.lang.String):822:822 -> c - 1:3:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):509:511 -> d - 4:4:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):513:513 -> d - 5:5:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):515:515 -> d - 6:7:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):519:520 -> d - 8:8:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):511:511 -> d - 9:10:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):524:525 -> d - 1:1:int getAlertPriority(java.lang.String):774:774 -> e - 2:2:int getAlertPriority(java.lang.String):777:777 -> e - 1:9:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):210:218 -> f - 10:10:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):220:220 -> f - 11:12:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):222:223 -> f - 13:15:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):225:227 -> f - 16:16:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):229:229 -> f - 17:17:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):245:245 -> f - 18:18:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):259:259 -> f - 19:19:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):261:261 -> f - 20:20:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):264:264 -> f - 21:21:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):267:267 -> f - 22:22:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):265:265 -> f - 23:25:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):273:275 -> f - 26:26:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):277:277 -> f - 27:27:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):293:293 -> f - 28:28:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):307:307 -> f - 29:29:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):309:309 -> f - 30:30:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):312:312 -> f - 31:31:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):315:315 -> f - 32:32:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):313:313 -> f - 33:34:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):321:322 -> f - 35:36:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):327:328 -> f - 37:38:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):356:357 -> f - 39:39:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):220:220 -> f - 1:8:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):383:390 -> g - 9:10:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):392:393 -> g - 11:14:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):396:399 -> g - 15:15:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):401:401 -> g - 16:16:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):393:393 -> g - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):486:486 -> h - 2:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):489:489 -> h - 3:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):492:493 -> h - 1:1:java.lang.String getMinuteWeatherText(double,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):469:469 -> i - 2:2:java.lang.String getMinuteWeatherText(double,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):475:475 -> i - 1:1:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):433:433 -> j - 2:7:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):435:440 -> j - 8:8:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):442:442 -> j - 9:11:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):444:446 -> j - 12:12:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):448:448 -> j - 13:13:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):447:447 -> j - 14:14:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):453:453 -> j - 15:15:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):452:452 -> j - 16:16:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):442:442 -> j - 1:2:java.lang.Float getPrecipitationProbability(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean,int):370:371 -> k - 1:1:java.lang.String getUVDescription(java.lang.String):754:754 -> l - 2:2:java.lang.String getUVDescription(java.lang.String):767:767 -> l - 1:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):653:654 -> m - 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):657:657 -> m - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):725:725 -> m - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):722:722 -> m - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):716:716 -> m - 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):711:711 -> m - 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):705:705 -> m - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):695:695 -> m - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):690:690 -> m - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):686:686 -> m - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):682:682 -> m - 13:13:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):664:664 -> m - 14:14:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):660:660 -> m - 1:1:java.lang.String getWeatherText(java.lang.String):530:530 -> n - 2:2:java.lang.String getWeatherText(java.lang.String):534:534 -> n + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):49:49 -> a + 2:3:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):51:52 -> a + 4:6:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):54:56 -> a + 7:8:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):59:60 -> a + 9:10:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):62:63 -> a + 11:11:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):85:85 -> a + 12:12:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):87:87 -> a + 13:13:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):90:90 -> a + 14:14:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):93:93 -> a + 15:15:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):91:91 -> a + 16:17:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):97:98 -> a + 18:20:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):101:103 -> a + 21:22:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):105:106 -> a + 23:24:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):108:109 -> a + 25:26:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):117:118 -> a + 27:28:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):121:122 -> a + 29:29:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):119:119 -> a + 30:33:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):126:129 -> a + 34:34:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):125:125 -> a + 35:35:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):132:132 -> a + 36:36:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):134:134 -> a + 37:38:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):136:137 -> a + 1:3:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):144:144 -> b + 4:4:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):152:152 -> b + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):159:159 -> b + 6:6:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):166:166 -> b + 7:7:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):173:173 -> b + 8:8:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):180:180 -> b + 9:9:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):187:187 -> b + 10:10:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):194:194 -> b + 11:11:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):199:199 -> b + 1:1:int getAlertColor(java.lang.String):816:816 -> c + 2:2:int getAlertColor(java.lang.String):819:819 -> c + 3:3:int getAlertColor(java.lang.String):826:826 -> c + 4:4:int getAlertColor(java.lang.String):822:822 -> c + 5:5:int getAlertColor(java.lang.String):838:838 -> c + 6:6:int getAlertColor(java.lang.String):834:834 -> c + 1:3:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):521:523 -> d + 4:4:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):525:525 -> d + 5:5:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):527:527 -> d + 6:7:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):531:532 -> d + 8:8:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):523:523 -> d + 9:10:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):536:537 -> d + 1:1:int getAlertPriority(java.lang.String):786:786 -> e + 2:2:int getAlertPriority(java.lang.String):789:789 -> e + 1:9:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):218:226 -> f + 10:10:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):228:228 -> f + 11:12:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):230:231 -> f + 13:15:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):233:235 -> f + 16:16:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):237:237 -> f + 17:17:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):253:253 -> f + 18:18:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):267:267 -> f + 19:19:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):269:269 -> f + 20:20:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):272:272 -> f + 21:21:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):275:275 -> f + 22:22:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):273:273 -> f + 23:25:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):281:283 -> f + 26:26:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):285:285 -> f + 27:27:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):301:301 -> f + 28:28:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):315:315 -> f + 29:29:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):317:317 -> f + 30:30:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):320:320 -> f + 31:31:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):323:323 -> f + 32:32:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):321:321 -> f + 33:34:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):329:330 -> f + 35:36:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):335:336 -> f + 37:38:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):338:339 -> f + 39:40:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):368:369 -> f + 41:41:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):228:228 -> f + 1:8:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):395:402 -> g + 9:10:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):404:405 -> g + 11:14:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):408:411 -> g + 15:15:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):413:413 -> g + 16:16:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):405:405 -> g + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):498:498 -> h + 2:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):501:501 -> h + 3:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):504:505 -> h + 1:1:java.lang.String getMinuteWeatherText(double,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):481:481 -> i + 2:2:java.lang.String getMinuteWeatherText(double,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):487:487 -> i + 1:1:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):445:445 -> j + 2:7:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):447:452 -> j + 8:8:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):454:454 -> j + 9:11:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):456:458 -> j + 12:12:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):460:460 -> j + 13:13:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):459:459 -> j + 14:14:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):465:465 -> j + 15:15:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):464:464 -> j + 16:16:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):454:454 -> j + 1:2:java.lang.Float getPrecipitationProbability(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean,int):382:383 -> k + 1:1:java.lang.String getUVDescription(java.lang.String):766:766 -> l + 2:2:java.lang.String getUVDescription(java.lang.String):779:779 -> l + 1:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):665:666 -> m + 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):669:669 -> m + 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):737:737 -> m + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):734:734 -> m + 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):728:728 -> m + 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):723:723 -> m + 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):717:717 -> m + 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):707:707 -> m + 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):702:702 -> m + 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):698:698 -> m + 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):694:694 -> m + 13:13:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):676:676 -> m + 14:14:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):672:672 -> m + 1:1:java.lang.String getWeatherText(java.lang.String):542:542 -> n + 2:2:java.lang.String getWeatherText(java.lang.String):546:546 -> n java.lang.String getWindDirection(float) -> o - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):197:197 -> p - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):200:201 -> p - 1:1:boolean isPrecipitation(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):501:501 -> q + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):205:205 -> p + 2:3:wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):208:209 -> p + 1:1:boolean isPrecipitation(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):513:513 -> q wangdaye.com.geometricweather.weather.converters.CommonConverter -> wangdaye.com.geometricweather.q.f.d: 1:1:java.lang.String getAqiQuality(android.content.Context,java.lang.Integer):49:49 -> a 2:11:java.lang.String getAqiQuality(android.content.Context,java.lang.Integer):51:60 -> a @@ -100369,90 +100375,92 @@ wangdaye.com.geometricweather.weather.converters.CommonConverter -> wangdaye.com 4:5:boolean isDaylight(java.util.Date,java.util.Date,java.util.Date):117:118 -> d 6:7:boolean isDaylight(java.util.Date,java.util.Date,java.util.Date):120:121 -> d wangdaye.com.geometricweather.weather.converters.MfResultConverter -> wangdaye.com.geometricweather.q.f.e: - 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):53:56 -> a - 5:7:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):58:60 -> a - 8:10:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):62:64 -> a - 11:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):69:75 -> a - 18:18:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):78:78 -> a - 19:21:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):80:82 -> a - 22:28:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):91:97 -> a - 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):105:108 -> b - 5:5:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):112:112 -> b - 6:8:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):114:116 -> b - 9:15:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):121:127 -> b - 16:16:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):130:130 -> b - 17:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):134:134 -> b - 18:24:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):143:149 -> b - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):163:163 -> c - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):165:166 -> c - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):170:170 -> c - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):174:174 -> c - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):176:176 -> c - 7:9:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):200:202 -> c - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):205:205 -> c - 11:12:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):218:219 -> c - 13:16:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):221:224 -> c - 17:19:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):227:229 -> c - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):238:238 -> d - 2:8:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):245:251 -> d - 9:14:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):253:258 -> d - 15:20:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):260:265 -> d - 21:26:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):267:272 -> d - 27:27:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):275:275 -> d - 1:1:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):286:286 -> e - 2:3:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):288:289 -> e - 4:4:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):296:296 -> e - 5:5:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):298:298 -> e - 6:6:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):338:338 -> e - 7:7:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):340:340 -> e - 8:8:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):377:377 -> e - 9:10:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):381:382 -> e - 11:12:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):384:385 -> e - 13:13:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):289:289 -> e - 1:3:java.util.List getHourlyList(java.util.List):393:395 -> f - 4:4:java.util.List getHourlyList(java.util.List):401:401 -> f - 5:5:java.util.List getHourlyList(java.util.List):403:403 -> f - 6:6:java.util.List getHourlyList(java.util.List):405:405 -> f - 7:7:java.util.List getHourlyList(java.util.List):409:409 -> f - 8:8:java.util.List getHourlyList(java.util.List):395:395 -> f - 1:1:float getHoursOfDay(java.util.Date,java.util.Date):580:580 -> g - 1:1:java.util.List getMinutelyList(long,long,wangdaye.com.geometricweather.weather.json.mf.MfRainResult):435:435 -> h - 1:1:int getWarningColor(int):521:521 -> i - 2:2:int getWarningColor(int):523:523 -> i - 3:3:int getWarningColor(int):525:525 -> i - 4:4:int getWarningColor(int):527:527 -> i + 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):56:59 -> a + 5:7:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):61:63 -> a + 8:10:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):65:67 -> a + 11:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):72:78 -> a + 18:18:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):81:81 -> a + 19:21:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):83:85 -> a + 22:28:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):94:100 -> a + 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):109:112 -> b + 5:5:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):116:116 -> b + 6:8:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):118:120 -> b + 9:15:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):125:131 -> b + 16:16:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):134:134 -> b + 17:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):138:138 -> b + 18:24:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):147:153 -> b + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):168:168 -> c + 2:3:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):170:171 -> c + 4:4:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):175:175 -> c + 5:5:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):179:179 -> c + 6:6:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):181:181 -> c + 7:9:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):205:207 -> c + 10:10:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):210:210 -> c + 11:12:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):223:224 -> c + 13:16:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):226:229 -> c + 17:17:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):231:231 -> c + 18:20:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):233:235 -> c + 21:21:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):237:237 -> c + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):244:244 -> d + 2:8:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):251:257 -> d + 9:14:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):259:264 -> d + 15:20:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):266:271 -> d + 21:26:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):273:278 -> d + 27:27:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):281:281 -> d + 1:1:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):292:292 -> e + 2:3:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):294:295 -> e + 4:4:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):302:302 -> e + 5:5:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):304:304 -> e + 6:6:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):344:344 -> e + 7:7:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):346:346 -> e + 8:8:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):383:383 -> e + 9:10:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):387:388 -> e + 11:12:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):390:391 -> e + 13:13:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):295:295 -> e + 1:3:java.util.List getHourlyList(java.util.List):399:401 -> f + 4:4:java.util.List getHourlyList(java.util.List):407:407 -> f + 5:5:java.util.List getHourlyList(java.util.List):409:409 -> f + 6:6:java.util.List getHourlyList(java.util.List):411:411 -> f + 7:7:java.util.List getHourlyList(java.util.List):415:415 -> f + 8:8:java.util.List getHourlyList(java.util.List):401:401 -> f + 1:1:float getHoursOfDay(java.util.Date,java.util.Date):586:586 -> g + 1:1:java.util.List getMinutelyList(long,long,wangdaye.com.geometricweather.weather.json.mf.MfRainResult):441:441 -> h + 1:1:int getWarningColor(int):527:527 -> i + 2:2:int getWarningColor(int):529:529 -> i + 3:3:int getWarningColor(int):531:531 -> i + 4:4:int getWarningColor(int):533:533 -> i java.lang.String getWarningText(int) -> j java.lang.String getWarningType(int) -> k - 1:5:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):456:460 -> l - 6:6:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):465:465 -> l - 7:7:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):467:467 -> l - 8:8:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):469:469 -> l - 9:9:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):460:460 -> l - 10:10:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):474:474 -> l - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):533:533 -> m - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):537:538 -> m - 4:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):540:541 -> m - 6:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):543:544 -> m - 8:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):546:548 -> m - 11:17:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):550:556 -> m - 18:20:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):558:560 -> m - 21:21:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):562:562 -> m - 22:22:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):564:564 -> m - 23:23:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):566:566 -> m - 24:24:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):568:568 -> m - 25:26:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):570:571 -> m - 27:27:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):574:574 -> m - 28:28:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):572:572 -> m - 29:29:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):569:569 -> m - 30:30:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):567:567 -> m - 31:31:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):565:565 -> m - 32:32:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):563:563 -> m - 33:33:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):561:561 -> m - 34:34:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):557:557 -> m - 35:35:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):549:549 -> m - 36:36:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):545:545 -> m - 37:37:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):542:542 -> m - 38:38:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):539:539 -> m + 1:5:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):462:466 -> l + 6:6:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):471:471 -> l + 7:7:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):473:473 -> l + 8:8:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):475:475 -> l + 9:9:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):466:466 -> l + 10:10:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):480:480 -> l + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):539:539 -> m + 2:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):543:544 -> m + 4:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):546:547 -> m + 6:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):549:550 -> m + 8:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):552:554 -> m + 11:17:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):556:562 -> m + 18:20:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):564:566 -> m + 21:21:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):568:568 -> m + 22:22:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):570:570 -> m + 23:23:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):572:572 -> m + 24:24:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):574:574 -> m + 25:26:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):576:577 -> m + 27:27:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):580:580 -> m + 28:28:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):578:578 -> m + 29:29:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):575:575 -> m + 30:30:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):573:573 -> m + 31:31:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):571:571 -> m + 32:32:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):569:569 -> m + 33:33:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):567:567 -> m + 34:34:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):563:563 -> m + 35:35:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):555:555 -> m + 36:36:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):551:551 -> m + 37:37:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):548:548 -> m + 38:38:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):545:545 -> m int toInt(double) -> n wangdaye.com.geometricweather.weather.di.ApiModule -> wangdaye.com.geometricweather.q.g.a: 1:1:void ():21:21 -> @@ -101423,7 +101431,7 @@ wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps - 1:1:void ():84:84 -> wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem -> wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: 1:1:void ():90:90 -> -wangdaye.com.geometricweather.weather.services.-$$Lambda$AccuWeatherService$cLkkMO61WGnVYpqncVN04FRg8V0 -> wangdaye.com.geometricweather.q.h.a: +wangdaye.com.geometricweather.weather.services.-$$Lambda$AccuWeatherService$hbwHChbrgkGgbN77MwoFgM-IZRY -> wangdaye.com.geometricweather.q.h.a: android.content.Context f$0 -> a wangdaye.com.geometricweather.common.basic.models.Location f$1 -> b java.lang.Object apply(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -> a @@ -101446,11 +101454,11 @@ wangdaye.com.geometricweather.weather.services.-$$Lambda$CNWeatherService$ze4Uyy wangdaye.com.geometricweather.weather.services.CNWeatherService f$0 -> a java.lang.String f$3 -> d void subscribe(io.reactivex.ObservableEmitter) -> a -wangdaye.com.geometricweather.weather.services.-$$Lambda$CaiYunWeatherService$dB5VocieteWWS5mEAUgJULrpUiI -> wangdaye.com.geometricweather.q.h.f: +wangdaye.com.geometricweather.weather.services.-$$Lambda$CaiYunWeatherService$ruGrHasJPsr9A3XYAYoXyiba9eo -> wangdaye.com.geometricweather.q.h.f: android.content.Context f$0 -> a wangdaye.com.geometricweather.common.basic.models.Location f$1 -> b java.lang.Object apply(java.lang.Object,java.lang.Object) -> a -wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$EFmSX82XGLyKAAfJ91z98fHnCzc -> wangdaye.com.geometricweather.q.h.g: +wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$30rS34ntymBSqayLEKMV5ea0z5w -> wangdaye.com.geometricweather.q.h.g: android.content.Context f$0 -> a wangdaye.com.geometricweather.common.basic.models.Location f$1 -> b java.lang.Object apply(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -> a @@ -101460,177 +101468,179 @@ wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$FhYpuN wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$IrTBydFX34ABG8enbJ5SHQhKB7U -> wangdaye.com.geometricweather.q.h.i: wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$IrTBydFX34ABG8enbJ5SHQhKB7U INSTANCE -> a void subscribe(io.reactivex.ObservableEmitter) -> a -wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$svFGHLJb3C3HZtwfE08FZrLJAHg -> wangdaye.com.geometricweather.q.h.j: +wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$ZFI9mhUNhuVzmceSANmkzEGtuVM -> wangdaye.com.geometricweather.q.h.j: + wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$ZFI9mhUNhuVzmceSANmkzEGtuVM INSTANCE -> a + void subscribe(io.reactivex.ObservableEmitter) -> a +wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$svFGHLJb3C3HZtwfE08FZrLJAHg -> wangdaye.com.geometricweather.q.h.k: wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$svFGHLJb3C3HZtwfE08FZrLJAHg INSTANCE -> a void subscribe(io.reactivex.ObservableEmitter) -> a -wangdaye.com.geometricweather.weather.services.AccuWeatherService -> wangdaye.com.geometricweather.q.h.k: +wangdaye.com.geometricweather.weather.services.AccuWeatherService -> wangdaye.com.geometricweather.q.h.l: wangdaye.com.geometricweather.weather.apis.AccuWeatherApi mApi -> a io.reactivex.disposables.CompositeDisposable mCompositeDisposable -> b - 1:3:void (wangdaye.com.geometricweather.weather.apis.AccuWeatherApi,io.reactivex.disposables.CompositeDisposable):90:92 -> - 1:1:void cancel():279:279 -> a - 1:1:java.util.List requestLocation(android.content.Context,java.lang.String):163:163 -> d - 2:2:java.util.List requestLocation(android.content.Context,java.lang.String):166:166 -> d - 3:3:java.util.List requestLocation(android.content.Context,java.lang.String):171:171 -> d - 4:4:java.util.List requestLocation(android.content.Context,java.lang.String):173:173 -> d - 5:5:java.util.List requestLocation(android.content.Context,java.lang.String):176:176 -> d - 6:9:java.util.List requestLocation(android.content.Context,java.lang.String):178:181 -> d - 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):190:190 -> e - 2:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):194:197 -> e - 6:14:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):199:207 -> e - 15:15:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):206:206 -> e - 16:20:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):213:217 -> e - 21:22:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):219:220 -> e - 23:23:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):222:222 -> e - 24:24:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):225:225 -> e - 25:25:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):222:222 -> e - 26:27:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):227:228 -> e - 1:1:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):97:97 -> f - 2:4:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):99:99 -> f - 5:7:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):102:102 -> f - 8:10:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):105:105 -> f - 11:11:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):108:108 -> f - 12:12:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):112:112 -> f - 13:13:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):108:108 -> f - 14:14:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):114:114 -> f - 15:15:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):113:113 -> f - 16:18:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):117:117 -> f - 19:21:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):120:120 -> f - 22:22:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):124:124 -> f - 23:23:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):123:123 -> f - 24:24:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):127:127 -> f - 25:26:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):141:142 -> f - 1:1:void lambda$requestWeather$0(io.reactivex.ObservableEmitter):114:114 -> g - 1:1:void lambda$requestWeather$1(io.reactivex.ObservableEmitter):124:124 -> h - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather lambda$requestWeather$2(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult):134:134 -> i - 2:2:wangdaye.com.geometricweather.common.basic.models.weather.Weather lambda$requestWeather$2(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult):131:131 -> i - 1:2:boolean queryEquals(java.lang.String,java.lang.String):283:284 -> j - 1:1:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):290:290 -> k - 2:3:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):293:294 -> k -wangdaye.com.geometricweather.weather.services.AccuWeatherService$1 -> wangdaye.com.geometricweather.q.h.k$a: + 1:3:void (wangdaye.com.geometricweather.weather.apis.AccuWeatherApi,io.reactivex.disposables.CompositeDisposable):89:91 -> + 1:1:void cancel():278:278 -> a + 1:1:java.util.List requestLocation(android.content.Context,java.lang.String):162:162 -> d + 2:2:java.util.List requestLocation(android.content.Context,java.lang.String):165:165 -> d + 3:3:java.util.List requestLocation(android.content.Context,java.lang.String):170:170 -> d + 4:4:java.util.List requestLocation(android.content.Context,java.lang.String):172:172 -> d + 5:5:java.util.List requestLocation(android.content.Context,java.lang.String):175:175 -> d + 6:9:java.util.List requestLocation(android.content.Context,java.lang.String):177:180 -> d + 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):189:189 -> e + 2:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):193:196 -> e + 6:14:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):198:206 -> e + 15:15:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):205:205 -> e + 16:20:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):212:216 -> e + 21:22:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):218:219 -> e + 23:23:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):221:221 -> e + 24:24:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):224:224 -> e + 25:25:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):221:221 -> e + 26:27:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):226:227 -> e + 1:1:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):96:96 -> f + 2:4:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):98:98 -> f + 5:7:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):101:101 -> f + 8:10:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):104:104 -> f + 11:11:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):107:107 -> f + 12:12:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):111:111 -> f + 13:13:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):107:107 -> f + 14:14:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):113:113 -> f + 15:15:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):112:112 -> f + 16:18:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):116:116 -> f + 19:21:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):119:119 -> f + 22:22:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):123:123 -> f + 23:23:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):122:122 -> f + 24:24:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):126:126 -> f + 25:26:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):140:141 -> f + 1:1:void lambda$requestWeather$0(io.reactivex.ObservableEmitter):113:113 -> g + 1:1:void lambda$requestWeather$1(io.reactivex.ObservableEmitter):123:123 -> h + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper lambda$requestWeather$2(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult):133:133 -> i + 2:2:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper lambda$requestWeather$2(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult):130:130 -> i + 1:2:boolean queryEquals(java.lang.String,java.lang.String):282:283 -> j + 1:1:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):289:289 -> k + 2:3:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):292:293 -> k +wangdaye.com.geometricweather.weather.services.AccuWeatherService$1 -> wangdaye.com.geometricweather.q.h.l$a: wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback val$callback -> c wangdaye.com.geometricweather.common.basic.models.Location val$location -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):142:142 -> - 1:2:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):146:147 -> a - 3:3:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):149:149 -> a - 1:1:void onFailed():155:155 -> onFailed - 1:1:void onSucceed(java.lang.Object):142:142 -> onSucceed -wangdaye.com.geometricweather.weather.services.AccuWeatherService$2 -> wangdaye.com.geometricweather.q.h.k$b: + 1:1:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):141:141 -> + 1:3:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):144:146 -> a + 4:4:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):148:148 -> a + 1:1:void onFailed():154:154 -> onFailed + 1:1:void onSucceed(java.lang.Object):141:141 -> onSucceed +wangdaye.com.geometricweather.weather.services.AccuWeatherService$2 -> wangdaye.com.geometricweather.q.h.l$b: wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback val$finalCallback -> c wangdaye.com.geometricweather.common.basic.models.Location val$location -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback):228:228 -> - 1:4:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):232:235 -> a - 5:5:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):234:234 -> a - 6:6:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):237:237 -> a - 1:3:void onFailed():243:243 -> onFailed - 1:1:void onSucceed(java.lang.Object):228:228 -> onSucceed -wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback -> wangdaye.com.geometricweather.q.h.k$c: + 1:1:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback):227:227 -> + 1:4:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):231:234 -> a + 5:5:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):233:233 -> a + 6:6:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):236:236 -> a + 1:3:void onFailed():242:242 -> onFailed + 1:1:void onSucceed(java.lang.Object):227:227 -> onSucceed +wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback -> wangdaye.com.geometricweather.q.h.l$c: android.content.Context mContext -> a wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback mCallback -> b - 1:3:void (android.content.Context,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):54:56 -> - 1:5:void requestLocationSuccess(java.lang.String,java.util.List):61:65 -> a - 6:6:void requestLocationSuccess(java.lang.String,java.util.List):67:67 -> a - 1:8:void requestLocationFailed(java.lang.String):72:79 -> b -wangdaye.com.geometricweather.weather.services.AccuWeatherService$EmptyAqiResult -> wangdaye.com.geometricweather.q.h.k$d: - 1:1:void ():86:86 -> - 2:2:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService$1):86:86 -> -wangdaye.com.geometricweather.weather.services.AccuWeatherService$EmptyMinuteResult -> wangdaye.com.geometricweather.q.h.k$e: - 1:1:void ():83:83 -> - 2:2:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService$1):83:83 -> -wangdaye.com.geometricweather.weather.services.CNWeatherService -> wangdaye.com.geometricweather.q.h.l: + 1:3:void (android.content.Context,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):53:55 -> + 1:5:void requestLocationSuccess(java.lang.String,java.util.List):60:64 -> a + 6:6:void requestLocationSuccess(java.lang.String,java.util.List):66:66 -> a + 1:8:void requestLocationFailed(java.lang.String):71:78 -> b +wangdaye.com.geometricweather.weather.services.AccuWeatherService$EmptyAqiResult -> wangdaye.com.geometricweather.q.h.l$d: + 1:1:void ():85:85 -> + 2:2:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService$1):85:85 -> +wangdaye.com.geometricweather.weather.services.AccuWeatherService$EmptyMinuteResult -> wangdaye.com.geometricweather.q.h.l$e: + 1:1:void ():82:82 -> + 2:2:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService$1):82:82 -> +wangdaye.com.geometricweather.weather.services.CNWeatherService -> wangdaye.com.geometricweather.q.h.m: io.reactivex.disposables.CompositeDisposable mCompositeDisposable -> b wangdaye.com.geometricweather.weather.apis.CNWeatherApi mApi -> a - 1:3:void (wangdaye.com.geometricweather.weather.apis.CNWeatherApi,io.reactivex.disposables.CompositeDisposable):37:39 -> - 1:1:void cancel():180:180 -> a - 1:2:java.util.List requestLocation(android.content.Context,java.lang.String):69:70 -> d - 3:3:java.util.List requestLocation(android.content.Context,java.lang.String):73:73 -> d - 4:7:java.util.List requestLocation(android.content.Context,java.lang.String):75:78 -> d - 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):86:86 -> e - 2:4:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):89:91 -> e - 5:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):87:87 -> e - 6:7:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):97:98 -> e - 8:8:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):95:95 -> e - 1:3:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):45:47 -> f - 1:1:wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource getSource():184:184 -> g - 1:1:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):116:116 -> h - 2:3:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):118:119 -> h - 4:4:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):122:122 -> h - 5:5:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):125:125 -> h + 1:3:void (wangdaye.com.geometricweather.weather.apis.CNWeatherApi,io.reactivex.disposables.CompositeDisposable):36:38 -> + 1:1:void cancel():179:179 -> a + 1:2:java.util.List requestLocation(android.content.Context,java.lang.String):68:69 -> d + 3:3:java.util.List requestLocation(android.content.Context,java.lang.String):72:72 -> d + 4:7:java.util.List requestLocation(android.content.Context,java.lang.String):74:77 -> d + 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):85:85 -> e + 2:4:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):88:90 -> e + 5:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):86:86 -> e + 6:7:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):96:97 -> e + 8:8:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):94:94 -> e + 1:3:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):44:46 -> f + 1:1:wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource getSource():183:183 -> g + 1:1:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):115:115 -> h + 2:3:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):117:118 -> h + 4:4:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):121:121 -> h + 5:5:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):124:124 -> h void lambda$searchLocationsInThread$0$CNWeatherService(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter) -> i - 1:1:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):151:151 -> j - 2:3:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):153:154 -> j - 4:4:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):156:156 -> j - 5:5:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):159:159 -> j + 1:1:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):150:150 -> j + 2:3:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):152:153 -> j + 4:4:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):155:155 -> j + 5:5:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):158:158 -> j void lambda$searchLocationsInThread$1$CNWeatherService(android.content.Context,float,float,io.reactivex.ObservableEmitter) -> k - 1:1:void searchLocationsInThread(android.content.Context,float,float,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):150:150 -> l - 2:3:void searchLocationsInThread(android.content.Context,float,float,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):160:161 -> l - 1:3:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):111:113 -> m - 4:4:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):115:115 -> m - 5:6:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):126:127 -> m -wangdaye.com.geometricweather.weather.services.CNWeatherService$1 -> wangdaye.com.geometricweather.q.h.l$a: + 1:1:void searchLocationsInThread(android.content.Context,float,float,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):149:149 -> l + 2:3:void searchLocationsInThread(android.content.Context,float,float,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):159:160 -> l + 1:3:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):110:112 -> m + 4:4:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):114:114 -> m + 5:6:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):125:126 -> m +wangdaye.com.geometricweather.weather.services.CNWeatherService$1 -> wangdaye.com.geometricweather.q.h.m$a: wangdaye.com.geometricweather.common.basic.models.Location val$location -> c android.content.Context val$context -> b wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback val$callback -> d - 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):47:47 -> - 1:1:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):50:50 -> a - 2:3:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):52:53 -> a - 4:4:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):55:55 -> a - 1:1:void onFailed():61:61 -> onFailed - 1:1:void onSucceed(java.lang.Object):47:47 -> onSucceed -wangdaye.com.geometricweather.weather.services.CNWeatherService$2 -> wangdaye.com.geometricweather.q.h.l$b: + 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):46:46 -> + 1:4:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):49:52 -> a + 5:5:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):54:54 -> a + 1:1:void onFailed():60:60 -> onFailed + 1:1:void onSucceed(java.lang.Object):46:46 -> onSucceed +wangdaye.com.geometricweather.weather.services.CNWeatherService$2 -> wangdaye.com.geometricweather.q.h.m$b: wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback val$callback -> b java.lang.String val$finalDistrict -> c - 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback,java.lang.String):127:127 -> - 1:2:void onSucceed(java.util.List):130:131 -> a - 3:3:void onSucceed(java.util.List):133:133 -> a - 1:1:void onFailed():139:139 -> onFailed - 1:1:void onSucceed(java.lang.Object):127:127 -> onSucceed -wangdaye.com.geometricweather.weather.services.CNWeatherService$3 -> wangdaye.com.geometricweather.q.h.l$c: + 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback,java.lang.String):126:126 -> + 1:2:void onSucceed(java.util.List):129:130 -> a + 3:3:void onSucceed(java.util.List):132:132 -> a + 1:1:void onFailed():138:138 -> onFailed + 1:1:void onSucceed(java.lang.Object):126:126 -> onSucceed +wangdaye.com.geometricweather.weather.services.CNWeatherService$3 -> wangdaye.com.geometricweather.q.h.m$c: wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback val$callback -> b float val$longitude -> d float val$latitude -> c - 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback,float,float):161:161 -> - 1:2:void onSucceed(java.util.List):164:165 -> a - 3:3:void onSucceed(java.util.List):167:167 -> a - 1:1:void onFailed():173:173 -> onFailed - 1:1:void onSucceed(java.lang.Object):161:161 -> onSucceed -wangdaye.com.geometricweather.weather.services.CaiYunWeatherService -> wangdaye.com.geometricweather.q.h.m: + 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback,float,float):160:160 -> + 1:2:void onSucceed(java.util.List):163:164 -> a + 3:3:void onSucceed(java.util.List):166:166 -> a + 1:1:void onFailed():172:172 -> onFailed + 1:1:void onSucceed(java.lang.Object):160:160 -> onSucceed +wangdaye.com.geometricweather.weather.services.CaiYunWeatherService -> wangdaye.com.geometricweather.q.h.n: io.reactivex.disposables.CompositeDisposable mCompositeDisposable -> d wangdaye.com.geometricweather.weather.apis.CaiYunApi mApi -> c - 1:3:void (wangdaye.com.geometricweather.weather.apis.CaiYunApi,wangdaye.com.geometricweather.weather.apis.CNWeatherApi,io.reactivex.disposables.CompositeDisposable):34:36 -> - 1:2:void cancel():91:92 -> a - 1:6:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):42:42 -> f - 7:9:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):58:60 -> f - 10:10:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):64:64 -> f - 11:11:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):58:58 -> f - 12:12:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):68:68 -> f - 13:14:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):70:71 -> f - 1:1:wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource getSource():97:97 -> g - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather lambda$requestWeather$0(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):69:69 -> n -wangdaye.com.geometricweather.weather.services.CaiYunWeatherService$1 -> wangdaye.com.geometricweather.q.h.m$a: + 1:3:void (wangdaye.com.geometricweather.weather.apis.CaiYunApi,wangdaye.com.geometricweather.weather.apis.CNWeatherApi,io.reactivex.disposables.CompositeDisposable):33:35 -> + 1:2:void cancel():90:91 -> a + 1:6:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):41:41 -> f + 7:9:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):57:59 -> f + 10:10:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):63:63 -> f + 11:11:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):57:57 -> f + 12:12:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):67:67 -> f + 13:14:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):69:70 -> f + 1:1:wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource getSource():96:96 -> g + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper lambda$requestWeather$0(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):68:68 -> n +wangdaye.com.geometricweather.weather.services.CaiYunWeatherService$1 -> wangdaye.com.geometricweather.q.h.n$a: wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback val$callback -> c wangdaye.com.geometricweather.common.basic.models.Location val$location -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.CaiYunWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):71:71 -> - 1:2:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):75:76 -> a - 3:3:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):78:78 -> a - 1:1:void onFailed():84:84 -> onFailed - 1:1:void onSucceed(java.lang.Object):71:71 -> onSucceed -wangdaye.com.geometricweather.weather.services.MfWeatherService -> wangdaye.com.geometricweather.q.h.n: + 1:1:void (wangdaye.com.geometricweather.weather.services.CaiYunWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):70:70 -> + 1:3:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):73:75 -> a + 4:4:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):77:77 -> a + 1:1:void onFailed():83:83 -> onFailed + 1:1:void onSucceed(java.lang.Object):70:70 -> onSucceed +wangdaye.com.geometricweather.weather.services.MfWeatherService -> wangdaye.com.geometricweather.q.h.o: wangdaye.com.geometricweather.weather.apis.AtmoAuraIqaApi mAtmoAuraApi -> b io.reactivex.disposables.CompositeDisposable mCompositeDisposable -> c wangdaye.com.geometricweather.weather.apis.MfWeatherApi mMfApi -> a 1:4:void (wangdaye.com.geometricweather.weather.apis.MfWeatherApi,wangdaye.com.geometricweather.weather.apis.AtmoAuraIqaApi,io.reactivex.disposables.CompositeDisposable):94:97 -> - 1:1:void cancel():293:293 -> a - 1:1:java.util.List requestLocation(android.content.Context,java.lang.String):182:182 -> d - 2:2:java.util.List requestLocation(android.content.Context,java.lang.String):184:184 -> d - 3:7:java.util.List requestLocation(android.content.Context,java.lang.String):187:191 -> d - 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):201:201 -> e - 2:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):205:208 -> e - 6:14:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):210:218 -> e - 15:15:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):217:217 -> e - 16:20:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):224:228 -> e - 21:22:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):230:231 -> e - 23:26:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):233:233 -> e - 27:28:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):238:239 -> e + 1:1:void cancel():295:295 -> a + 1:1:java.util.List requestLocation(android.content.Context,java.lang.String):184:184 -> d + 2:2:java.util.List requestLocation(android.content.Context,java.lang.String):186:186 -> d + 3:7:java.util.List requestLocation(android.content.Context,java.lang.String):189:193 -> d + 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):203:203 -> e + 2:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):207:210 -> e + 6:14:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):212:220 -> e + 15:15:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):219:219 -> e + 16:20:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):226:230 -> e + 21:22:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):232:233 -> e + 23:26:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):235:235 -> e + 27:28:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):240:241 -> e 1:1:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):102:102 -> f 2:4:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):104:104 -> f 5:7:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):107:107 -> f @@ -101639,82 +101649,86 @@ wangdaye.com.geometricweather.weather.services.MfWeatherService -> wangdaye.com. 14:16:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):121:121 -> f 17:17:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):125:125 -> f 18:18:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):123:123 -> f - 19:25:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):129:135 -> f - 26:26:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):144:144 -> f - 27:27:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):136:136 -> f - 28:29:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):138:139 -> f - 30:30:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):136:136 -> f - 31:31:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):141:141 -> f - 32:32:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):140:140 -> f - 33:33:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):147:147 -> f - 34:35:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):158:159 -> f + 19:27:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):129:137 -> f + 28:28:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):146:146 -> f + 29:29:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):138:138 -> f + 30:31:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):140:141 -> f + 32:32:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):138:138 -> f + 33:33:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):143:143 -> f + 34:34:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):142:142 -> f + 35:35:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):149:149 -> f + 36:37:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):160:161 -> f 1:1:void lambda$requestWeather$0(io.reactivex.ObservableEmitter):125:125 -> g - 1:1:void lambda$requestWeather$1(io.reactivex.ObservableEmitter):141:141 -> h - 1:1:void lambda$requestWeather$2(io.reactivex.ObservableEmitter):144:144 -> i - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather lambda$requestWeather$3(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):148:148 -> j - 1:2:boolean queryEquals(java.lang.String,java.lang.String):297:298 -> k - 1:1:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):304:304 -> l - 2:3:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):307:308 -> l -wangdaye.com.geometricweather.weather.services.MfWeatherService$1 -> wangdaye.com.geometricweather.q.h.n$a: + 1:1:void lambda$requestWeather$1(io.reactivex.ObservableEmitter):130:130 -> h + 1:1:void lambda$requestWeather$2(io.reactivex.ObservableEmitter):143:143 -> i + 1:1:void lambda$requestWeather$3(io.reactivex.ObservableEmitter):146:146 -> j + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper lambda$requestWeather$4(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):150:150 -> k + 1:2:boolean queryEquals(java.lang.String,java.lang.String):299:300 -> l + 1:1:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):306:306 -> m + 2:3:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):309:310 -> m +wangdaye.com.geometricweather.weather.services.MfWeatherService$1 -> wangdaye.com.geometricweather.q.h.o$a: wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback val$callback -> c wangdaye.com.geometricweather.common.basic.models.Location val$location -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.MfWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):159:159 -> - 1:2:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):163:164 -> a - 3:3:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):166:166 -> a - 1:1:void onFailed():172:172 -> onFailed - 1:1:void onSucceed(java.lang.Object):159:159 -> onSucceed -wangdaye.com.geometricweather.weather.services.MfWeatherService$2 -> wangdaye.com.geometricweather.q.h.n$b: + 1:1:void (wangdaye.com.geometricweather.weather.services.MfWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):161:161 -> + 1:3:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):164:166 -> a + 4:4:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):168:168 -> a + 1:1:void onFailed():174:174 -> onFailed + 1:1:void onSucceed(java.lang.Object):161:161 -> onSucceed +wangdaye.com.geometricweather.weather.services.MfWeatherService$2 -> wangdaye.com.geometricweather.q.h.o$b: wangdaye.com.geometricweather.common.basic.models.Location val$location -> c wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback val$finalCallback -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.MfWeatherService,wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback,wangdaye.com.geometricweather.common.basic.models.Location):239:239 -> - 1:3:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):243:245 -> a - 4:6:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):248:248 -> a - 7:7:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):251:251 -> a - 1:3:void onFailed():258:258 -> onFailed - 1:1:void onSucceed(java.lang.Object):239:239 -> onSucceed -wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback -> wangdaye.com.geometricweather.q.h.n$c: + 1:1:void (wangdaye.com.geometricweather.weather.services.MfWeatherService,wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback,wangdaye.com.geometricweather.common.basic.models.Location):241:241 -> + 1:3:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):245:247 -> a + 4:6:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):250:250 -> a + 7:7:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):253:253 -> a + 1:3:void onFailed():260:260 -> onFailed + 1:1:void onSucceed(java.lang.Object):241:241 -> onSucceed +wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback -> wangdaye.com.geometricweather.q.h.o$c: android.content.Context mContext -> a wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback mCallback -> b 1:3:void (android.content.Context,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):57:59 -> 1:5:void requestLocationSuccess(java.lang.String,java.util.List):64:68 -> a 6:6:void requestLocationSuccess(java.lang.String,java.util.List):70:70 -> a 1:8:void requestLocationFailed(java.lang.String):75:82 -> b -wangdaye.com.geometricweather.weather.services.MfWeatherService$EmptyAtmoAuraQAResult -> wangdaye.com.geometricweather.q.h.n$d: +wangdaye.com.geometricweather.weather.services.MfWeatherService$EmptyAtmoAuraQAResult -> wangdaye.com.geometricweather.q.h.o$d: 1:1:void ():86:86 -> 2:2:void (wangdaye.com.geometricweather.weather.services.MfWeatherService$1):86:86 -> -wangdaye.com.geometricweather.weather.services.MfWeatherService$EmptyWarningsResult -> wangdaye.com.geometricweather.q.h.n$e: +wangdaye.com.geometricweather.weather.services.MfWeatherService$EmptyWarningsResult -> wangdaye.com.geometricweather.q.h.o$e: 1:1:void ():89:89 -> 2:2:void (wangdaye.com.geometricweather.weather.services.MfWeatherService$1):89:89 -> -wangdaye.com.geometricweather.weather.services.WeatherService -> wangdaye.com.geometricweather.q.h.o: - 1:1:void ():18:18 -> +wangdaye.com.geometricweather.weather.services.WeatherService -> wangdaye.com.geometricweather.q.h.p: + 1:1:void ():20:20 -> void cancel() -> a - 1:1:java.lang.String convertChinese(java.lang.String):142:142 -> b - 1:1:java.lang.String formatLocationString(java.lang.String):43:43 -> c - 2:3:java.lang.String formatLocationString(java.lang.String):47:48 -> c - 4:11:java.lang.String formatLocationString(java.lang.String):50:57 -> c - 12:30:java.lang.String formatLocationString(java.lang.String):59:77 -> c - 31:38:java.lang.String formatLocationString(java.lang.String):80:87 -> c - 39:44:java.lang.String formatLocationString(java.lang.String):89:94 -> c - 45:48:java.lang.String formatLocationString(java.lang.String):97:100 -> c - 49:53:java.lang.String formatLocationString(java.lang.String):103:107 -> c - 54:59:java.lang.String formatLocationString(java.lang.String):110:115 -> c - 60:61:java.lang.String formatLocationString(java.lang.String):118:119 -> c - 62:63:java.lang.String formatLocationString(java.lang.String):122:123 -> c - 64:64:java.lang.String formatLocationString(java.lang.String):125:125 -> c - 65:66:java.lang.String formatLocationString(java.lang.String):128:129 -> c - 67:68:java.lang.String formatLocationString(java.lang.String):131:132 -> c - 69:70:java.lang.String formatLocationString(java.lang.String):134:135 -> c - 71:71:java.lang.String formatLocationString(java.lang.String):126:126 -> c - 72:72:java.lang.String formatLocationString(java.lang.String):116:116 -> c - 73:73:java.lang.String formatLocationString(java.lang.String):108:108 -> c - 74:74:java.lang.String formatLocationString(java.lang.String):101:101 -> c - 75:75:java.lang.String formatLocationString(java.lang.String):95:95 -> c + 1:1:java.lang.String convertChinese(java.lang.String):152:152 -> b + 1:1:java.lang.String formatLocationString(java.lang.String):53:53 -> c + 2:3:java.lang.String formatLocationString(java.lang.String):57:58 -> c + 4:11:java.lang.String formatLocationString(java.lang.String):60:67 -> c + 12:30:java.lang.String formatLocationString(java.lang.String):69:87 -> c + 31:38:java.lang.String formatLocationString(java.lang.String):90:97 -> c + 39:44:java.lang.String formatLocationString(java.lang.String):99:104 -> c + 45:48:java.lang.String formatLocationString(java.lang.String):107:110 -> c + 49:53:java.lang.String formatLocationString(java.lang.String):113:117 -> c + 54:59:java.lang.String formatLocationString(java.lang.String):120:125 -> c + 60:61:java.lang.String formatLocationString(java.lang.String):128:129 -> c + 62:63:java.lang.String formatLocationString(java.lang.String):132:133 -> c + 64:64:java.lang.String formatLocationString(java.lang.String):135:135 -> c + 65:66:java.lang.String formatLocationString(java.lang.String):138:139 -> c + 67:68:java.lang.String formatLocationString(java.lang.String):141:142 -> c + 69:70:java.lang.String formatLocationString(java.lang.String):144:145 -> c + 71:71:java.lang.String formatLocationString(java.lang.String):136:136 -> c + 72:72:java.lang.String formatLocationString(java.lang.String):126:126 -> c + 73:73:java.lang.String formatLocationString(java.lang.String):118:118 -> c + 74:74:java.lang.String formatLocationString(java.lang.String):111:111 -> c + 75:75:java.lang.String formatLocationString(java.lang.String):105:105 -> c java.util.List requestLocation(android.content.Context,java.lang.String) -> d void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback) -> e void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback) -> f -wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback -> wangdaye.com.geometricweather.q.h.o$a: +wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback -> wangdaye.com.geometricweather.q.h.p$a: void requestLocationSuccess(java.lang.String,java.util.List) -> a void requestLocationFailed(java.lang.String) -> b -wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback -> wangdaye.com.geometricweather.q.h.o$b: +wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback -> wangdaye.com.geometricweather.q.h.p$b: void requestWeatherFailed(wangdaye.com.geometricweather.common.basic.models.Location) -> a void requestWeatherSuccess(wangdaye.com.geometricweather.common.basic.models.Location) -> b +wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper -> wangdaye.com.geometricweather.q.h.p$c: + wangdaye.com.geometricweather.common.basic.models.weather.Weather result -> a + 1:2:void (wangdaye.com.geometricweather.common.basic.models.weather.Weather):25:26 -> diff --git a/release/3.001/mapping/fdroidRelease/resources.txt b/release/3.002/mapping/fdroidRelease/resources.txt similarity index 99% rename from release/3.001/mapping/fdroidRelease/resources.txt rename to release/3.002/mapping/fdroidRelease/resources.txt index c637c7b12..6ed560c49 100644 --- a/release/3.001/mapping/fdroidRelease/resources.txt +++ b/release/3.002/mapping/fdroidRelease/resources.txt @@ -137,7 +137,7 @@ Referenced Strings: 2:00 2:30 3 - 3.001_fdroid + 3.002_fdroid 30 300% 304 @@ -803,6 +803,7 @@ Referenced Strings: LOADING LOCAL LOCAL_PREFERENCE + LOCAL_PREFERENCE_MF LOCATION LOCATION_ENTITY LOCKSCREEN diff --git a/release/3.001/mapping/fdroidRelease/seeds.txt b/release/3.002/mapping/fdroidRelease/seeds.txt similarity index 100% rename from release/3.001/mapping/fdroidRelease/seeds.txt rename to release/3.002/mapping/fdroidRelease/seeds.txt index ac52561bf..cef19e2b4 100644 --- a/release/3.001/mapping/fdroidRelease/seeds.txt +++ b/release/3.002/mapping/fdroidRelease/seeds.txt @@ -1,51805 +1,51805 @@ -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver otherObserver -wangdaye.com.geometricweather.R$layout: int test_toolbar -androidx.constraintlayout.widget.R$attr: int windowFixedHeightMajor -com.jaredrummler.android.colorpicker.R$attr: int isLightTheme -androidx.viewpager2.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.R$color: int colorTextTitle -androidx.viewpager.R$attr -androidx.viewpager2.R$id: int accessibility_custom_action_27 -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowDy -cyanogenmod.profiles.LockSettings: void writeXmlString(java.lang.StringBuilder,android.content.Context) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -retrofit2.Retrofit$Builder: Retrofit$Builder(retrofit2.Platform) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getCo() -wangdaye.com.geometricweather.R$attr: int allowDividerBelow -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea -james.adaptiveicon.R$string: int abc_action_bar_home_description -cyanogenmod.app.CustomTile$RemoteExpandedStyle -androidx.constraintlayout.widget.R$dimen: int abc_disabled_alpha_material_dark -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius -cyanogenmod.content.Intent: java.lang.String EXTRA_PROTECTED_COMPONENTS -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DIALER_OPENCNAM_AUTH_TOKEN_VALIDATOR -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReferenceArray values -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_default -okhttp3.internal.ws.RealWebSocket$Close -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Snackbar -wangdaye.com.geometricweather.R$styleable: int Preference_order -wangdaye.com.geometricweather.R$styleable: int[] MenuGroup -io.reactivex.internal.observers.InnerQueuedObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart -wangdaye.com.geometricweather.R$drawable: int notify_panel_notification_icon_bg -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.fuseable.SimplePlainQueue queue -wangdaye.com.geometricweather.R$attr: int dayInvalidStyle -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemPaddingRight -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String uvDescription -androidx.recyclerview.R$layout: R$layout() -androidx.work.R$layout: int notification_template_part_chronometer -cyanogenmod.providers.CMSettings$System: float getFloat(android.content.ContentResolver,java.lang.String) +androidx.appcompat.widget.AppCompatSpinner: void setDropDownWidth(int) +androidx.preference.R$style: int Widget_Compat_NotificationActionText +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitationDuration() +okhttp3.internal.http.HttpMethod: boolean requiresRequestBody(java.lang.String) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void removeInner(io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginBottom +androidx.lifecycle.LifecycleRegistry: void setCurrentState(androidx.lifecycle.Lifecycle$State) +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked +com.xw.repo.bubbleseekbar.R$id: int contentPanel +com.google.android.material.R$attr: int tabRippleColor +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerSuccess(java.lang.Object) +androidx.preference.R$drawable: int abc_ratingbar_material +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status FAILED +androidx.preference.R$style: int Theme_AppCompat_Light_Dialog +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_textLocale +androidx.appcompat.R$attr: int actionBarPopupTheme +androidx.preference.R$attr: int autoSizePresetSizes +android.support.v4.app.INotificationSideChannel$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +androidx.constraintlayout.widget.R$styleable: int ActivityChooserView_initialActivityCount +okhttp3.logging.HttpLoggingInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +androidx.viewpager2.R$styleable: int ColorStateListItem_alpha +androidx.lifecycle.LiveData: void onInactive() +wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_modal_elevation +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: int CategoryValue +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginEnd +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent SOUND +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: AccuCurrentResult$WindChillTemperature$Metric() +androidx.core.R$id: int accessibility_custom_action_31 +com.google.android.material.R$styleable: int[] AppCompatSeekBar +wangdaye.com.geometricweather.R$attr: int expanded +androidx.lifecycle.SavedStateHandleController: java.lang.String TAG_SAVED_STATE_HANDLE_CONTROLLER +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_3 +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getHelperText() +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_goIcon +androidx.preference.R$styleable: int CheckBoxPreference_android_summaryOff +wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_text_color +com.bumptech.glide.R$id: int icon +androidx.preference.R$id: int notification_main_column_container +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_caption_material +wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_top_start +androidx.swiperefreshlayout.R$drawable: int notification_tile_bg +androidx.customview.R$style: int TextAppearance_Compat_Notification_Title +androidx.legacy.coreutils.R$dimen: int notification_small_icon_size_as_large +james.adaptiveicon.R$id: int buttonPanel +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_to_on_mtrl_000 +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_1 +androidx.hilt.work.R$id: int accessibility_custom_action_2 +cyanogenmod.app.BaseLiveLockManagerService: java.lang.String TAG +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWetBulbTemperature +wangdaye.com.geometricweather.R$drawable: int abc_ic_arrow_drop_right_black_24dp +okio.Pipe$PipeSource: okio.Timeout timeout +okhttp3.ConnectionPool: void evictAll() wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_actionTextColorAlpha -okio.DeflaterSink: void deflate(boolean) -cyanogenmod.weather.WeatherInfo$Builder: double mHumidity -com.google.android.material.R$attr: int lineSpacing -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onNext(java.lang.Object) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_SLEET -okhttp3.internal.connection.ConnectionSpecSelector: java.util.List connectionSpecs -wangdaye.com.geometricweather.R$attr: int layoutDescription -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -io.reactivex.internal.disposables.ArrayCompositeDisposable: long serialVersionUID -wangdaye.com.geometricweather.R$array: int pollen_unit_values -androidx.recyclerview.R$dimen: int notification_top_pad_large_text -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_scaleY -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float rain -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog -io.reactivex.internal.subscriptions.EmptySubscription: boolean offer(java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setBrandId(java.lang.String) -androidx.constraintlayout.widget.R$integer: R$integer() -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -android.didikee.donate.R$style: int Widget_AppCompat_ActionButton_CloseMode -okhttp3.internal.http1.Http1Codec: okio.Source newChunkedSource(okhttp3.HttpUrl) -com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_id -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorPrimary -okhttp3.internal.http2.PushObserver$1: boolean onRequest(int,java.util.List) -com.google.android.material.R$attr: int tabTextColor -androidx.appcompat.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean address_detail -com.xw.repo.bubbleseekbar.R$attr: int actionLayout -io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,io.reactivex.Scheduler) -androidx.lifecycle.LifecycleRegistry: void removeObserver(androidx.lifecycle.LifecycleObserver) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -okio.RealBufferedSource: void skip(long) -cyanogenmod.providers.CMSettings$Global: boolean putInt(android.content.ContentResolver,java.lang.String,int) -cyanogenmod.app.CustomTile$ExpandedStyle: int GRID_STYLE -retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type lowerBound -cyanogenmod.app.Profile: cyanogenmod.app.Profile fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -com.google.android.material.R$styleable: int Constraint_flow_horizontalGap -androidx.preference.R$style: int Base_Animation_AppCompat_Tooltip -okhttp3.internal.cache.DiskLruCache$Snapshot: okio.Source[] sources -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_visible -com.xw.repo.bubbleseekbar.R$attr: int colorError -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language DUTCH -okio.GzipSource: byte SECTION_HEADER -com.google.android.material.R$styleable: int KeyCycle_android_rotation -james.adaptiveicon.R$drawable: int abc_btn_radio_material -androidx.constraintlayout.widget.R$attr: int textAppearanceSearchResultSubtitle -okhttp3.internal.ws.RealWebSocket: java.lang.String receivedCloseReason -androidx.appcompat.resources.R$styleable: int[] StateListDrawable -androidx.preference.R$color: int secondary_text_default_material_light -com.google.android.material.R$styleable: int Motion_animate_relativeTo -okhttp3.ConnectionSpec: void apply(javax.net.ssl.SSLSocket,boolean) -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -androidx.work.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property PublishDate -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderQuery -androidx.viewpager.R$styleable: int[] FontFamilyFont -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WEATHER_CODE_MIN -james.adaptiveicon.R$drawable: int abc_text_select_handle_right_mtrl_light -androidx.hilt.work.R$bool -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year -androidx.hilt.R$id: int tag_accessibility_clickable_spans -wangdaye.com.geometricweather.R$id: int event -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Bridge -okio.Buffer: okio.Buffer write(byte[],int,int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_89 -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMode -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SearchView -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(java.lang.String) -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickTintList() -okhttp3.Request$Builder: java.util.Map tags -androidx.preference.R$attr: int buttonIconDimen -com.google.android.material.R$attr: int endIconTint -wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_max -cyanogenmod.app.ICustomTileListener$Stub$Proxy: ICustomTileListener$Stub$Proxy(android.os.IBinder) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintDimensionRatio -android.didikee.donate.R$style: int Base_Widget_AppCompat_Toolbar -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: KeyguardExternalViewProviderService$Provider(cyanogenmod.externalviews.KeyguardExternalViewProviderService,android.os.Bundle) -androidx.vectordrawable.R$layout: R$layout() -cyanogenmod.app.CMContextConstants$Features: java.lang.String HARDWARE_ABSTRACTION -androidx.viewpager2.R$id: int accessibility_custom_action_3 -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerX -okio.ByteString: int lastIndexOf(byte[],int) -com.jaredrummler.android.colorpicker.R$attr: int elevation -androidx.preference.R$styleable: int PreferenceTheme_seekBarPreferenceStyle -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_subtitleTextStyle -io.reactivex.internal.util.NotificationLite$SubscriptionNotification: NotificationLite$SubscriptionNotification(org.reactivestreams.Subscription) -com.google.android.material.R$attr: int layoutDuringTransition -androidx.lifecycle.Observer: void onChanged(java.lang.Object) -com.jaredrummler.android.colorpicker.R$attr: int fontWeight -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onScreenTurnedOff() -androidx.preference.R$attr: int preferenceStyle -cyanogenmod.providers.CMSettings$Secure: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) -androidx.preference.R$style: int Widget_AppCompat_ActivityChooserView -androidx.constraintlayout.widget.R$attr: int actionModePopupWindowStyle -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.functions.Function mapper -androidx.legacy.coreutils.R$drawable: int notification_icon_background -okhttp3.internal.http1.Http1Codec: int STATE_IDLE -com.google.android.material.R$style: R$style() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_middle_mtrl_dark -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -androidx.constraintlayout.widget.R$styleable: int CompoundButton_android_button -com.turingtechnologies.materialscrollbar.R$attr: int singleSelection -com.turingtechnologies.materialscrollbar.R$attr: int showDividers -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_scaleY -androidx.work.impl.utils.futures.DirectExecutor: java.lang.String toString() -android.didikee.donate.R$attr: int windowNoTitle -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_content_inset_material -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider NATIVE -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarPopupTheme -com.google.android.material.R$string: int mtrl_badge_numberless_content_description -wangdaye.com.geometricweather.R$styleable: int MotionHelper_onShow -androidx.recyclerview.R$dimen: int compat_button_inset_vertical_material -cyanogenmod.app.CMStatusBarManager: java.lang.String TAG -com.google.android.material.button.MaterialButton: int getTextWidth() -com.jaredrummler.android.colorpicker.R$bool: int config_materialPreferenceIconSpaceReserved -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderFetchTimeout -com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_3 -wangdaye.com.geometricweather.R$id: int widget_clock_day -okhttp3.internal.http2.Settings: int set -cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings(int,boolean) -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit MPH -okhttp3.internal.http2.Http2Stream$StreamTimeout: void timedOut() -androidx.preference.R$styleable: int StateListDrawableItem_android_drawable -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -io.reactivex.internal.observers.ForEachWhileObserver: boolean isDisposed() -androidx.lifecycle.ComputableLiveData: java.util.concurrent.atomic.AtomicBoolean mInvalid -okhttp3.internal.http.HttpDate$1: HttpDate$1() -okio.AsyncTimeout$1: void close() -com.google.android.material.tabs.TabLayout: void setSelectedTabView(int) -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onNext(java.lang.Object) -androidx.viewpager.R$id: int icon -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_shouldDisableView -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: void onFinish(boolean) -wangdaye.com.geometricweather.R$id: int item_about_library_title -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: long time -android.didikee.donate.R$attr: int contentInsetStart -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit KPA -wangdaye.com.geometricweather.R$drawable: int design_ic_visibility -com.google.android.material.R$color: int abc_secondary_text_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_alpha -okhttp3.internal.http.RetryAndFollowUpInterceptor -com.google.gson.stream.JsonWriter: void flush() -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceTimedObserver parent -androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange -androidx.appcompat.R$attr: int tint -james.adaptiveicon.R$styleable: int TextAppearance_android_textSize -android.didikee.donate.R$styleable: int[] ActionBar -wangdaye.com.geometricweather.R$style: int Base_V23_Theme_AppCompat -wangdaye.com.geometricweather.R$string: int settings_title_notification_background -okhttp3.Headers: okhttp3.Headers$Builder newBuilder() -wangdaye.com.geometricweather.R$layout: int preference_list_fragment -james.adaptiveicon.R$styleable: int MenuView_android_itemIconDisabledAlpha -com.google.android.material.R$attr: int altSrc -com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Action -wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_dark -androidx.recyclerview.R$dimen: int compat_button_padding_horizontal_material -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: IThermalListenerCallback$Stub$Proxy(android.os.IBinder) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -com.jaredrummler.android.colorpicker.R$string: int abc_capital_on -wangdaye.com.geometricweather.R$string: int abc_prepend_shortcut_label -androidx.preference.R$id: int icon_frame -androidx.constraintlayout.widget.R$attr: int paddingBottomNoButtons -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShrinkMotionSpecResource(int) -com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_android_alpha -james.adaptiveicon.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -com.jaredrummler.android.colorpicker.R$attr: int windowMinWidthMajor -cyanogenmod.weather.ICMWeatherManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: MfForecastResult$Forecast$Weather() -wangdaye.com.geometricweather.R$xml: int cm_weather_provider_options +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getNo2Desc() +androidx.preference.R$layout: int preference_category +androidx.appcompat.R$styleable: int ActionBar_contentInsetEndWithActions +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Chip +androidx.constraintlayout.helper.widget.Flow: void setFirstVerticalStyle(int) +com.google.android.material.R$attr: int windowMinWidthMajor +okhttp3.MediaType: java.lang.String type +androidx.hilt.work.R$drawable: int notification_bg_low_pressed +androidx.lifecycle.Transformations$2 +com.google.android.material.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +com.jaredrummler.android.colorpicker.R$id: int message +com.google.android.material.R$styleable: int[] ChipGroup +com.jaredrummler.android.colorpicker.ColorPreference +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_font +okhttp3.internal.io.FileSystem$1: okio.Sink sink(java.io.File) +com.google.android.material.R$color: int mtrl_fab_bg_color_selector +androidx.constraintlayout.widget.R$id: int src_over +com.bumptech.glide.integration.okhttp.R$dimen: int compat_control_corner_material +com.jaredrummler.android.colorpicker.R$dimen: int abc_progress_bar_height_material +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_bottomBar +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_LAST_PROFILE_NAME +android.didikee.donate.R$dimen: int abc_text_size_medium_material +androidx.activity.ComponentActivity: ComponentActivity() +androidx.fragment.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: MfCurrentResult$Observation$Weather() +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void drain() +androidx.appcompat.widget.ActionMenuView: void setOnMenuItemClickListener(androidx.appcompat.widget.ActionMenuView$OnMenuItemClickListener) +androidx.preference.R$layout: int image_frame +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_shape_horizontal_margin +com.turingtechnologies.materialscrollbar.R$id: int search_badge +androidx.preference.R$style: int TextAppearance_Compat_Notification_Title +james.adaptiveicon.R$drawable: int abc_list_focused_holo +wangdaye.com.geometricweather.R$style: int ThemeOverlay_Design_TextInputEditText +androidx.preference.R$attr: int dropdownListPreferredItemHeight +androidx.work.R$id: int accessibility_custom_action_12 +com.google.android.material.R$styleable: int SearchView_android_imeOptions +okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: void execute() +com.google.android.material.checkbox.MaterialCheckBox +androidx.appcompat.R$drawable: int notification_bg_low_pressed +androidx.coordinatorlayout.R$id: int tag_unhandled_key_listeners +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTag +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Spinner +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.MinutelyEntity,int) +cyanogenmod.profiles.StreamSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +james.adaptiveicon.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$id: int tag_transition_group +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getSummary(android.content.Context,java.util.List) +wangdaye.com.geometricweather.R$dimen: int cpv_column_width +androidx.vectordrawable.animated.R$id: int forever +james.adaptiveicon.R$layout: int abc_action_bar_title_item +okio.Okio$4: Okio$4(java.net.Socket) +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_ALARMS +wangdaye.com.geometricweather.R$id: int mtrl_picker_header_selection_text +androidx.viewpager.widget.PagerTitleStrip: void setTextSpacing(int) +com.turingtechnologies.materialscrollbar.R$attr: int coordinatorLayoutStyle +io.reactivex.Observable: io.reactivex.Observable doAfterNext(io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_bias +androidx.appcompat.R$dimen: int abc_dialog_list_padding_top_no_title +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onBouncerShowing +io.reactivex.internal.observers.LambdaObserver: void onNext(java.lang.Object) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_31 +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void subscribeInner(io.reactivex.ObservableSource) +androidx.cardview.R$dimen: int cardview_compat_inset_shadow +com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar +wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_android_entryValues +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Colored +com.google.android.material.R$drawable: int notification_bg +androidx.lifecycle.LiveData$AlwaysActiveObserver +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginStart +wangdaye.com.geometricweather.db.entities.MinutelyEntity: long getTime() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onSubscribe(org.reactivestreams.Subscription) +androidx.recyclerview.R$id: int accessibility_custom_action_28 +cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient access$200(cyanogenmod.weatherservice.WeatherProviderService) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX temperature +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint +okio.RealBufferedSource$1: RealBufferedSource$1(okio.RealBufferedSource) +io.reactivex.Observable: io.reactivex.Observable fromIterable(java.lang.Iterable) +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_max_progress +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: java.lang.String Name +cyanogenmod.externalviews.KeyguardExternalView$6: boolean val$screenOn +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.R$attr: int selectableItemBackground +io.reactivex.Observable: io.reactivex.Observable compose(io.reactivex.ObservableTransformer) +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.MinutelyEntity) +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: java.lang.Object[] row +com.google.android.material.R$id: int reverseSawtooth +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_max +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Borderless +okhttp3.MultipartBody: byte[] CRLF +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature +androidx.customview.R$id: int action_image +wangdaye.com.geometricweather.R$id: int star_1 +androidx.work.R$id: int accessibility_custom_action_23 +androidx.swiperefreshlayout.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: int status +james.adaptiveicon.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$styleable: int[] MotionScene +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_percent +androidx.appcompat.widget.AppCompatImageButton: void setImageBitmap(android.graphics.Bitmap) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String EnglishType +com.google.android.material.R$attr: int titleTextAppearance +okhttp3.internal.connection.RouteSelector: java.util.List postponedRoutes +wangdaye.com.geometricweather.R$styleable: int Layout_layout_editor_absoluteY +wangdaye.com.geometricweather.R$id: int SHOW_ALL +wangdaye.com.geometricweather.R$drawable: int ic_collected +androidx.preference.R$styleable: int RecyclerView_layoutManager +androidx.constraintlayout.widget.R$attr: int displayOptions +okio.Buffer: okio.BufferedSink writeDecimalLong(long) +okhttp3.EventListener$2: okhttp3.EventListener val$listener +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_horizontal_padding +androidx.appcompat.widget.Toolbar: void setLogoDescription(java.lang.CharSequence) +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Name +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_elevation +androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +wangdaye.com.geometricweather.R$styleable: int MockView_mock_labelBackgroundColor +com.google.android.material.R$styleable: int[] AnimatedStateListDrawableItem +wangdaye.com.geometricweather.R$anim: int fragment_fade_exit +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +okhttp3.Cache: int ENTRY_COUNT +james.adaptiveicon.R$styleable: int AppCompatImageView_tint +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_93 +com.google.gson.internal.JsonReaderInternalAccess: JsonReaderInternalAccess() +androidx.drawerlayout.R$styleable: int ColorStateListItem_android_color +okhttp3.internal.NamedRunnable: java.lang.String name +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String temperature +androidx.transition.R$id: int action_divider +androidx.appcompat.R$drawable: int abc_ic_search_api_material +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceTheme +wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedIndex(java.lang.Integer) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_31 +androidx.appcompat.R$id: int action_bar_container +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog +io.reactivex.Observable: io.reactivex.Single collect(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ab_share_pack_mtrl_alpha +okio.SegmentedByteString: okio.ByteString toByteString() +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit NMI +androidx.core.R$drawable: int notification_action_background +james.adaptiveicon.R$color: int abc_background_cache_hint_selector_material_dark +com.xw.repo.bubbleseekbar.R$dimen: int abc_select_dialog_padding_start_material +com.jaredrummler.android.colorpicker.R$layout: int cpv_color_item_circle +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvLevel +com.bumptech.glide.integration.okhttp.R$attr: int alpha +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State CANCELLED +cyanogenmod.providers.CMSettings$Secure$2: CMSettings$Secure$2() +androidx.constraintlayout.widget.Barrier: int getMargin() +wangdaye.com.geometricweather.R$attr: int actionModeStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_124 +com.google.android.material.R$styleable: int NavigationView_android_maxWidth +okhttp3.Call: void enqueue(okhttp3.Callback) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfIce +okhttp3.internal.cache.DiskLruCache$Entry: boolean readable +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getUnitId() +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType JPEG +androidx.hilt.work.R$id: int right_side +com.google.android.material.R$attr: int boxBackgroundColor +com.google.android.material.R$attr: int colorOnBackground +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int prefetch +androidx.viewpager2.R$id: int accessibility_custom_action_10 +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderAuthority +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_color +com.jaredrummler.android.colorpicker.R$styleable: int[] MenuItem +retrofit2.BuiltInConverters$VoidResponseBodyConverter +androidx.core.R$string: int status_bar_notification_info_overflow +androidx.vectordrawable.animated.R$id: int line3 +james.adaptiveicon.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.lifecycle.extensions.R$string +android.didikee.donate.R$id: int action_bar +retrofit2.http.Url +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.os.Bundle getOptions() +okio.Buffer: okio.Buffer clone() +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.util.concurrent.TimeUnit unit +okhttp3.internal.http2.Http2Writer wangdaye.com.geometricweather.R$id: int item_about_title -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) -com.google.android.material.R$attr: int materialCalendarTheme -okhttp3.internal.http2.Http2Connection$6: okhttp3.internal.http2.Http2Connection this$0 -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float ceiling -com.jaredrummler.android.colorpicker.R$attr: int collapseIcon -wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_bottom_start -androidx.appcompat.R$color: int accent_material_light -wangdaye.com.geometricweather.R$id: int recycler_view -androidx.lifecycle.SavedStateHandle$1 -android.didikee.donate.R$style: int Theme_AppCompat_Dialog_MinWidth -androidx.loader.R$dimen: int notification_small_icon_size_as_large -cyanogenmod.themes.ThemeManager$2$1: ThemeManager$2$1(cyanogenmod.themes.ThemeManager$2,java.lang.String) -androidx.constraintlayout.widget.R$styleable: int Transform_android_rotationX -androidx.viewpager2.R$id: int accessibility_custom_action_30 -androidx.recyclerview.R$id: int text -okio.BufferedSink: okio.BufferedSink writeUtf8CodePoint(int) -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: java.lang.Object poll() +androidx.preference.R$drawable: int abc_list_selector_disabled_holo_light +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_elevation +cyanogenmod.app.CMStatusBarManager: void publishTile(java.lang.String,int,cyanogenmod.app.CustomTile) +androidx.transition.R$id +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_dd +cyanogenmod.themes.IThemeChangeListener$Stub: int TRANSACTION_onProgress_0 +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +com.google.android.material.R$style: int EmptyTheme +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status INITIALIZING +androidx.appcompat.widget.AppCompatCheckBox: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +io.reactivex.internal.util.NotificationLite: java.lang.Object subscription(org.reactivestreams.Subscription) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.recyclerview.R$id: int accessibility_custom_action_6 +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.Integer getCloudCover() +james.adaptiveicon.R$attr: int popupMenuStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowNoTitle +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_weatherContainer com.google.android.material.R$id: int design_menu_item_action_area_stub -com.jaredrummler.android.colorpicker.R$attr: int min -com.turingtechnologies.materialscrollbar.R$color: int primary_dark_material_light -androidx.appcompat.R$string: int abc_searchview_description_search -com.google.android.material.R$styleable: int AppCompatTheme_colorControlNormal -androidx.preference.R$attr: int backgroundSplit -io.reactivex.internal.schedulers.RxThreadFactory: java.lang.String prefix -com.bumptech.glide.integration.okhttp.R$style: int Widget_Support_CoordinatorLayout -androidx.constraintlayout.widget.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.R$attr: int maxButtonHeight -android.didikee.donate.R$color: int primary_dark_material_dark -com.google.android.material.R$attr: int gapBetweenBars -okhttp3.Cookie$Builder: java.lang.String name -wangdaye.com.geometricweather.R$attr: int tabGravity -io.reactivex.Observable: io.reactivex.Observable timeout0(long,java.util.concurrent.TimeUnit,io.reactivex.ObservableSource,io.reactivex.Scheduler) -com.google.android.material.R$styleable: int KeyPosition_pathMotionArc -com.google.android.material.R$styleable: int TextInputLayout_suffixTextAppearance -com.google.android.material.R$dimen: int mtrl_toolbar_default_height -androidx.lifecycle.LiveData$LifecycleBoundObserver: LiveData$LifecycleBoundObserver(androidx.lifecycle.LiveData,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Observer) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: long serialVersionUID -androidx.customview.R$integer -wangdaye.com.geometricweather.R$attr: int singleLineTitle -wangdaye.com.geometricweather.R$attr: int minHeight -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline5 -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered -androidx.dynamicanimation.R$attr: int alpha -androidx.recyclerview.R$styleable: int GradientColor_android_tileMode -android.didikee.donate.R$dimen: int abc_edit_text_inset_horizontal_material -com.google.android.material.slider.Slider: void setTrackTintList(android.content.res.ColorStateList) -androidx.appcompat.R$attr: int searchIcon -androidx.vectordrawable.animated.R$drawable -com.google.android.material.R$drawable: int abc_btn_check_material -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void collapseNotificationPanel() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver -androidx.preference.R$styleable: int[] ButtonBarLayout -cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder(java.util.List) -androidx.appcompat.R$attr: int colorControlNormal -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_grey -androidx.swiperefreshlayout.R$dimen: int notification_action_text_size -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeSplitBackground -androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_25 -wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Bridge -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_dividerHeight -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() -com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetTop -com.google.android.material.R$attr -androidx.work.R$color -com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingTop -androidx.appcompat.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_22 -wangdaye.com.geometricweather.R$drawable: int notif_temp_64 -androidx.lifecycle.ComputableLiveData$3: androidx.lifecycle.ComputableLiveData this$0 -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: void cancel() -okio.SegmentedByteString: okio.ByteString toByteString() -com.bumptech.glide.R$attr: int coordinatorLayoutStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius -androidx.appcompat.R$drawable: int abc_tab_indicator_material -cyanogenmod.app.Profile: int mDozeMode -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.slider.RangeSlider: void setThumbElevation(float) -com.jaredrummler.android.colorpicker.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getEn_US() -wangdaye.com.geometricweather.R$dimen: int touch_rise_z -io.reactivex.Observable: io.reactivex.Observable share() -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean daylight -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_android_windowAnimationStyle -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection findHealthyConnection(int,int,int,int,boolean,boolean) -androidx.lifecycle.LifecycleService: android.os.IBinder onBind(android.content.Intent) -okhttp3.RealCall: java.io.IOException timeoutExit(java.io.IOException) -androidx.vectordrawable.R$id: int tag_accessibility_actions -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleGravity(int) -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMaxWidth -androidx.hilt.work.R$styleable: int FontFamilyFont_fontVariationSettings -com.google.android.material.R$styleable: int RecycleListView_paddingTopNoTitle -androidx.preference.R$layout: int preference_dropdown_material -androidx.appcompat.R$drawable: int abc_item_background_holo_light -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 -com.xw.repo.bubbleseekbar.R$attr: int trackTintMode -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: int size -androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_activated_mtrl_alpha -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowMinWidthMajor -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: java.util.concurrent.TimeUnit unit -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorSize -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: java.lang.String DESCRIPTOR -com.github.rahatarmanahmed.cpv.CircularProgressView: int animSyncDuration -wangdaye.com.geometricweather.R$attr: int itemHorizontalTranslationEnabled -androidx.preference.R$style: int Theme_AppCompat_Dialog_Alert -androidx.preference.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.String getAqiText() -com.google.android.material.R$styleable: int TextInputLayout_boxBackgroundMode -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollHorizontalThumbDrawable -wangdaye.com.geometricweather.R$attr: int queryHint -androidx.core.R$dimen: int notification_right_side_padding_top -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomNavigationView -androidx.vectordrawable.R$attr: int alpha -androidx.appcompat.R$id: int search_button -androidx.preference.R$styleable: int AlertDialog_android_layout -androidx.activity.ComponentActivity: ComponentActivity() -james.adaptiveicon.R$integer: int abc_config_activityDefaultDur -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: java.lang.String Unit -okhttp3.internal.http.HttpHeaders: java.util.List parseChallenges(okhttp3.Headers,java.lang.String) -wangdaye.com.geometricweather.R$string: int key_card_style -androidx.vectordrawable.animated.R$attr: R$attr() -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: kotlin.coroutines.Continuation $continuation -com.google.android.material.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Caption -wangdaye.com.geometricweather.R$attr: int rippleColor -androidx.hilt.R$id: int accessibility_custom_action_1 -androidx.constraintlayout.utils.widget.ImageFilterButton: void setOverlay(boolean) -androidx.vectordrawable.R$id: int accessibility_custom_action_2 -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_textLocale -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getMoonPhaseDescription() -com.google.android.material.R$attr: int keyPositionType -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_12 -androidx.drawerlayout.R$styleable: int GradientColor_android_tileMode -androidx.preference.R$attr: int fontProviderAuthority -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -cyanogenmod.themes.ThemeChangeRequest: android.os.Parcelable$Creator CREATOR -androidx.appcompat.widget.AbsActionBarView: void setVisibility(int) -okhttp3.internal.ws.WebSocketWriter -wangdaye.com.geometricweather.R$layout: int abc_select_dialog_material -androidx.appcompat.R$layout: int abc_action_bar_up_container -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarSplitStyle -androidx.preference.R$styleable: int CheckBoxPreference_summaryOn -wangdaye.com.geometricweather.R$id: int snackbar_action -okio.Options: okio.ByteString get(int) -okhttp3.Dispatcher: int queuedCallsCount() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingRight -wangdaye.com.geometricweather.R$attr: int sizePercent -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getCityId() -androidx.preference.R$styleable: int AppCompatTheme_colorControlActivated -wangdaye.com.geometricweather.R$dimen: int abc_select_dialog_padding_start_material -androidx.appcompat.resources.R$styleable: int GradientColor_android_endY -androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_checkbox -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void run() -io.reactivex.internal.observers.InnerQueuedObserver: void onComplete() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.xw.repo.bubbleseekbar.R$id: int custom -androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context,android.util.AttributeSet) -androidx.preference.R$styleable: int AlertDialog_listLayout -com.google.android.material.R$id: int end -okio.Buffer: byte[] readByteArray() -androidx.preference.R$style: int Base_Theme_AppCompat -androidx.preference.R$string: int v7_preference_off -cyanogenmod.weather.IRequestInfoListener: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getRagweedIndex() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.R$id: int widget_clock_day_weather -androidx.preference.R$attr: int textColorAlertDialogListItem -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView_Menu -com.google.android.material.R$attr: int trackTint -androidx.preference.R$styleable: int ActionBar_title -com.google.android.material.transformation.TransformationChildCard: TransformationChildCard(android.content.Context,android.util.AttributeSet) -androidx.fragment.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather weather -wangdaye.com.geometricweather.R$attr: int listChoiceIndicatorMultipleAnimated -androidx.appcompat.R$color: int bright_foreground_disabled_material_dark -com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_CheckBox -androidx.viewpager2.R$styleable: int FontFamilyFont_ttcIndex -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: cyanogenmod.app.CustomTileListenerService this$0 -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_NoActionBar_Bridge -com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float snowPrecipitation -wangdaye.com.geometricweather.R$attr: int dialogIcon -androidx.constraintlayout.widget.Group: Group(android.content.Context) -com.bumptech.glide.R$styleable: int GradientColor_android_startX -androidx.constraintlayout.widget.R$styleable: int Layout_barrierAllowsGoneWidgets -okhttp3.internal.ws.RealWebSocket$Message: RealWebSocket$Message(int,okio.ByteString) -io.reactivex.internal.observers.BasicIntQueueDisposable: void clear() -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_speedValue -androidx.appcompat.R$styleable: int Toolbar_contentInsetEnd -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.R$color: int colorLevel_2 -wangdaye.com.geometricweather.R$color: int switch_thumb_normal_material_dark -androidx.activity.R$id: int accessibility_custom_action_23 -androidx.appcompat.R$styleable: int AppCompatTheme_controlBackground -androidx.preference.R$attr: int disableDependentsState -androidx.dynamicanimation.R$dimen: int notification_large_icon_height -androidx.appcompat.widget.AppCompatButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$bool -wangdaye.com.geometricweather.R$attr: int titleTextColor -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.functions.Function) -com.google.android.material.R$attr: int touchAnchorId -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: androidx.lifecycle.SavedStateHandle mHandle -com.google.android.material.R$id: int accessibility_custom_action_1 -androidx.coordinatorlayout.R$attr: int layout_insetEdge -okio.Okio$2: java.lang.String toString() -cyanogenmod.app.ICustomTileListener: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -com.turingtechnologies.materialscrollbar.R$styleable: int[] NavigationView -androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_toLeftOf -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ID -androidx.constraintlayout.widget.R$styleable: int ActionBar_customNavigationLayout -androidx.constraintlayout.widget.R$attr: int commitIcon -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit valueOf(java.lang.String) -james.adaptiveicon.R$attr: int alpha -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long size -androidx.preference.R$dimen: int abc_text_size_display_4_material -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemBackground(int) -retrofit2.Retrofit$Builder: java.util.List callAdapterFactories() -retrofit2.HttpException: java.lang.String message -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric -androidx.lifecycle.ComputableLiveData: java.lang.Runnable mInvalidationRunnable -androidx.appcompat.R$styleable: int Toolbar_titleMarginBottom -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationText(android.content.Context,float) -io.reactivex.internal.observers.InnerQueuedObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String speed -com.google.android.material.R$styleable: int BottomNavigationView_itemIconTint -androidx.preference.R$style: int Widget_AppCompat_ProgressBar -com.google.android.material.chip.Chip: com.google.android.material.animation.MotionSpec getShowMotionSpec() -okio.Utf8: long size(java.lang.String,int,int) -androidx.loader.R$id: int right_icon -androidx.viewpager2.R$dimen: int item_touch_helper_swipe_escape_max_velocity -androidx.preference.R$id: int tag_unhandled_key_event_manager -com.google.android.material.R$styleable: int DrawerArrowToggle_drawableSize -com.bumptech.glide.R$drawable: int notification_tile_bg -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setDropDownBackgroundResource(int) -com.google.android.material.R$style: int Base_Widget_AppCompat_PopupMenu -androidx.lifecycle.ClassesInfoCache$MethodReference: boolean equals(java.lang.Object) -androidx.hilt.lifecycle.R$attr: int fontVariationSettings -androidx.preference.R$string: int abc_action_mode_done -androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setZh_TW(java.lang.String) -androidx.constraintlayout.widget.R$attr: int arrowHeadLength -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -androidx.appcompat.R$dimen: int abc_text_size_menu_header_material -io.reactivex.internal.util.ArrayListSupplier: java.lang.Object apply(java.lang.Object) -okhttp3.OkHttpClient$Builder: okhttp3.Dispatcher dispatcher -androidx.appcompat.R$dimen: int abc_dialog_padding_material -wangdaye.com.geometricweather.R$attr: int layout_constrainedHeight -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.ChineseCityEntity) -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDataConnectionState -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_directionValue -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification -androidx.work.R$layout: int notification_template_custom_big -okio.GzipSink: void flush() -cyanogenmod.app.ProfileManager: android.content.Context mContext -cyanogenmod.weather.WeatherInfo$DayForecast: int describeContents() -okhttp3.internal.http2.Http2Writer: void connectionPreface() -retrofit2.Retrofit: boolean validateEagerly -james.adaptiveicon.R$attr: int logoDescription -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end -wangdaye.com.geometricweather.R$attr: int preferenceScreenStyle -okhttp3.OkHttpClient: okhttp3.Dns dns -com.turingtechnologies.materialscrollbar.R$attr: int hoveredFocusedTranslationZ -com.google.android.material.R$styleable: int ChipGroup_singleSelection -androidx.fragment.app.DialogFragment -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: ObservableIntervalRange$IntervalRangeObserver(io.reactivex.Observer,long,long) -cyanogenmod.providers.CMSettings$Secure: java.lang.String CM_SETUP_WIZARD_COMPLETED -androidx.recyclerview.widget.StaggeredGridLayoutManager -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog -com.turingtechnologies.materialscrollbar.R$layout: int design_layout_tab_text -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.String toString() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onDetach() -retrofit2.ParameterHandler$PartMap: ParameterHandler$PartMap(java.lang.reflect.Method,int,retrofit2.Converter,java.lang.String) -com.google.gson.stream.JsonWriter: int[] stack -com.bumptech.glide.integration.okhttp.R$dimen: int compat_notification_large_icon_max_height -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean tryEmitScalar(java.util.concurrent.Callable) -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type BASELINE -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_2 -com.google.android.material.R$attr: int minHeight -androidx.hilt.R$id: int right_icon -androidx.viewpager2.R$styleable: int GradientColor_android_centerColor -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: float val$swipeProgress -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -com.google.android.material.R$string: int mtrl_picker_invalid_range -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode[] values() -wangdaye.com.geometricweather.R$string: int path_password_eye -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_enabled -com.google.android.material.R$drawable: int mtrl_dialog_background -android.didikee.donate.R$attr: int showTitle -wangdaye.com.geometricweather.R$string: int about_glide -wangdaye.com.geometricweather.R$id: int src_atop -com.google.android.material.R$styleable: int MaterialCardView_strokeColor -android.didikee.donate.R$string: int abc_action_menu_overflow_description -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function,boolean,int) -okhttp3.RealCall: okhttp3.OkHttpClient client -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void dispose() -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_font -androidx.constraintlayout.widget.R$styleable: int Toolbar_collapseIcon -androidx.transition.R$id: int transition_layout_save -wangdaye.com.geometricweather.R$animator: int start_shine_2 -androidx.preference.R$dimen -androidx.vectordrawable.R$dimen: int notification_big_circle_margin -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void innerComplete(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver) -com.google.android.material.R$styleable: int TextAppearance_fontVariationSettings -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Wind wind -com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextAppearance -com.google.android.material.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance -com.google.android.material.R$attr: int layout_constraintLeft_toLeftOf -wangdaye.com.geometricweather.R$dimen: int widget_mini_weather_icon_size -com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_backgroundTint -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_normal -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String LAST_UPDATE_TIME -com.turingtechnologies.materialscrollbar.R$attr: int closeIconTint -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean cancelled -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_subheader -cyanogenmod.hardware.CMHardwareManager: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) -com.google.android.material.R$string: int material_clock_toggle_content_description -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void drain() -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit K -cyanogenmod.weather.util.WeatherUtils: double celsiusToFahrenheit(double) -com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_radio -androidx.preference.R$style: int Base_Widget_AppCompat_ImageButton -androidx.preference.R$styleable: int AppCompatTheme_colorBackgroundFloating -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: int capacityHint -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicBoolean stopWindows -com.google.android.material.R$drawable: int navigation_empty_icon -okhttp3.internal.cache.DiskLruCache$Editor: void abort() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_100 -retrofit2.DefaultCallAdapterFactory: DefaultCallAdapterFactory(java.util.concurrent.Executor) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling -okio.AsyncTimeout$1: void write(okio.Buffer,long) -okhttp3.OkHttpClient: okhttp3.OkHttpClient$Builder newBuilder() -james.adaptiveicon.R$layout: int abc_alert_dialog_button_bar_material -androidx.work.impl.diagnostics.DiagnosticsReceiver -com.google.android.material.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather weather -com.google.android.material.R$attr: int colorButtonNormal -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource DATA_DISK_CACHE -wangdaye.com.geometricweather.R$attr: int cpv_indeterminate -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -com.google.android.material.R$color: int mtrl_chip_close_icon_tint -androidx.constraintlayout.widget.R$string: int abc_searchview_description_search -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -wangdaye.com.geometricweather.R$drawable: int ic_github -androidx.appcompat.widget.FitWindowsLinearLayout: FitWindowsLinearLayout(android.content.Context) -android.didikee.donate.R$layout: int abc_screen_toolbar -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_summaryOn -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_menu_material -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onNext(retrofit2.Response) -androidx.recyclerview.R$id: int time -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ListPopupWindow -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.database.Database getDatabase() -cyanogenmod.providers.DataUsageContract: DataUsageContract() -wangdaye.com.geometricweather.R$attr: int actionMenuTextColor -retrofit2.ParameterHandler$Path: ParameterHandler$Path(java.lang.reflect.Method,int,java.lang.String,retrofit2.Converter,boolean) -okhttp3.ResponseBody: byte[] bytes() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: AccuDailyResult$DailyForecasts$Day$LocalSource() -com.google.android.material.R$style: int Base_V22_Theme_AppCompat_Light -com.jaredrummler.android.colorpicker.R$style: int AlertDialog_AppCompat_Light -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerY -com.google.android.material.R$id: int chip1 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlNormal -android.didikee.donate.R$style: int TextAppearance_AppCompat_Menu -androidx.appcompat.widget.SearchView: java.lang.CharSequence getQuery() -james.adaptiveicon.R$attr: int tooltipFrameBackground -androidx.appcompat.widget.AppCompatCheckBox: android.content.res.ColorStateList getSupportBackgroundTintList() -wangdaye.com.geometricweather.R$string: int feedback_today_precipitation_alert -okhttp3.internal.ws.WebSocketWriter$FrameSink: void write(okio.Buffer,long) -com.google.android.material.R$style: int TextAppearance_AppCompat_Title -cyanogenmod.providers.CMSettings$System: boolean putLong(android.content.ContentResolver,java.lang.String,long) -com.github.rahatarmanahmed.cpv.CircularProgressView: float getMaxProgress() -io.reactivex.internal.observers.ForEachWhileObserver: void dispose() -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.HistoryEntity) -com.google.android.material.R$string: int mtrl_picker_cancel -androidx.viewpager2.R$id: int actions -com.google.android.material.R$color: int abc_btn_colored_text_material -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_creator -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: long updateTime -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_visible -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Tooltip -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String ObstructionsToVisibility -com.google.gson.stream.JsonReader: boolean hasNext() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_small_material -androidx.fragment.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.R$styleable: int ActionBar_elevation -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.functions.Function mapper -androidx.preference.R$attr: int colorSwitchThumbNormal -androidx.preference.R$styleable: int Preference_summary -androidx.lifecycle.LiveData: java.lang.Object mDataLock -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean pressure -wangdaye.com.geometricweather.R$attr: int colorSurface -androidx.dynamicanimation.R$style: R$style() -androidx.preference.R$dimen: int abc_action_bar_content_inset_with_nav -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_min -cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri FORECAST_WEATHER_URI -cyanogenmod.app.Profile: cyanogenmod.profiles.BrightnessSettings mBrightness -com.google.android.material.R$styleable: int Constraint_flow_verticalGap -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_popupWindowStyle -com.google.android.material.R$color: int tooltip_background_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed Speed -com.google.android.material.transformation.ExpandableBehavior -io.reactivex.subjects.PublishSubject$PublishDisposable: io.reactivex.Observer downstream -androidx.drawerlayout.R$drawable: int notification_tile_bg -androidx.work.R$attr: R$attr() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getTotalPrecipitationProbability() -wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: void run() -androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.R$styleable: int Preference_isPreferenceVisible -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours Past3Hours -com.xw.repo.bubbleseekbar.R$id: int parentPanel -android.didikee.donate.R$styleable: int ActionBar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyStartText -androidx.core.R$id: int tag_transition_group -androidx.coordinatorlayout.R$integer -okio.ByteString: char[] HEX_DIGITS -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DialogWhenLarge -wangdaye.com.geometricweather.R$layout: int item_trend_hourly -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_123 -wangdaye.com.geometricweather.R$id: int widget_day_card -james.adaptiveicon.R$attr: int titleTextStyle -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endY -cyanogenmod.hardware.DisplayMode: android.os.Parcelable$Creator CREATOR -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: void throwIfCaught() -androidx.preference.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -com.xw.repo.bubbleseekbar.R$id: int chronometer -com.xw.repo.bubbleseekbar.R$attr: int buttonStyleSmall -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_3 -okhttp3.CacheControl: okhttp3.CacheControl FORCE_NETWORK -com.google.android.material.textfield.TextInputLayout: android.widget.EditText getEditText() -com.google.android.material.R$attr: int colorOnPrimary -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$styleable: int[] ColorStateListItem -okhttp3.OkHttpClient: javax.net.SocketFactory socketFactory() -androidx.preference.R$attr: int dialogTitle -androidx.preference.R$styleable: int StateListDrawable_android_visible -androidx.constraintlayout.widget.R$id: int contentPanel -com.google.android.material.card.MaterialCardView: void setRippleColorResource(int) -androidx.vectordrawable.animated.R$id -androidx.constraintlayout.widget.R$color: int material_grey_300 -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: boolean validate(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int abc_seekbar_tick_mark_material -com.google.android.material.R$attr: int placeholder_emptyVisibility -androidx.constraintlayout.widget.R$attr: int duration -wangdaye.com.geometricweather.R$drawable: int widget_clock_day_details -okhttp3.HttpUrl: java.lang.String queryParameterName(int) -com.google.android.material.R$drawable: int abc_textfield_search_activated_mtrl_alpha -com.google.android.material.R$dimen: int abc_action_button_min_width_overflow_material -androidx.appcompat.R$styleable: int StateListDrawable_android_enterFadeDuration -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_4 -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_divider_mtrl_alpha -androidx.activity.R$styleable: int FontFamilyFont_font -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void dispose() -wangdaye.com.geometricweather.R$drawable: int widget_card_light_20 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorAccent -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_toId -com.jaredrummler.android.colorpicker.R$id: int cpv_color_image_view -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: int UnitType -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias -com.google.android.material.appbar.AppBarLayout: void setStatusBarForegroundColor(int) -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: IExternalViewProviderFactory$Stub() -com.google.android.material.navigation.NavigationView$SavedState: android.os.Parcelable$Creator CREATOR -android.didikee.donate.R$styleable: int MenuGroup_android_menuCategory -androidx.cardview.widget.CardView: void setPreventCornerOverlap(boolean) -cyanogenmod.util.ColorUtils: int dropAlpha(int) -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_7 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$drawable: int ic_forecast -com.google.android.material.internal.CheckableImageButton: void setPressable(boolean) -com.turingtechnologies.materialscrollbar.R$attr: int layout_anchorGravity -cyanogenmod.app.LiveLockScreenManager: java.lang.String TAG -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_SearchView -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -com.jaredrummler.android.colorpicker.R$layout: int cpv_dialog_presets -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_31 -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar_Small -com.google.android.material.R$attr: int actionModeCloseButtonStyle -okhttp3.ConnectionSpec: java.util.List cipherSuites() -io.reactivex.internal.schedulers.ScheduledRunnable: void setFuture(java.util.concurrent.Future) -com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontVariationSettings -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Insert -com.google.android.material.R$style: int TextAppearance_AppCompat_Button -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.Platform buildIfSupported() -androidx.fragment.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Snackbar -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitationProbability() -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -cyanogenmod.providers.CMSettings$Secure: java.lang.String PROTECTED_COMPONENT_MANAGERS -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setIconResEnd(int) -com.google.android.material.R$styleable: int AppCompatTheme_actionModeSplitBackground -com.google.android.material.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.jaredrummler.android.colorpicker.R$anim: int abc_slide_out_bottom -com.google.android.material.R$attr: int chipMinHeight -retrofit2.RequestFactory: boolean isMultipart -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_menu -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionModeOverlay -androidx.swiperefreshlayout.R$dimen: int notification_small_icon_size_as_large -com.turingtechnologies.materialscrollbar.R$layout: R$layout() -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder expiresAt(long) -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_summaryOff -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HAIL -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColorHint -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_HOME_DOUBLE_TAP_ACTION -com.google.android.material.slider.RangeSlider: void setThumbRadius(int) -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -wangdaye.com.geometricweather.R$styleable: int[] CollapsingToolbarLayout -cyanogenmod.themes.IThemeService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getSupportImageTintMode() -com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_material_dark -com.xw.repo.bubbleseekbar.R$id: int time -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleDrawable -androidx.core.R$id: int accessibility_custom_action_4 -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_icon -androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_Toolbar -androidx.constraintlayout.widget.R$attr: int applyMotionScene -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_RC4_128_SHA -androidx.fragment.R$drawable: int notification_bg -com.turingtechnologies.materialscrollbar.R$integer: int cancel_button_image_alpha -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() -androidx.constraintlayout.widget.R$styleable: int AlertDialog_android_layout -io.reactivex.internal.observers.LambdaObserver +androidx.viewpager.R$id: int async +com.jaredrummler.android.colorpicker.R$layout: int abc_action_bar_title_item +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.util.AtomicThrowable error androidx.appcompat.R$color: int material_grey_50 -androidx.loader.R$drawable: int notification_bg_low -com.google.android.material.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode -wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_android_maxWidth -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -okio.RealBufferedSource -androidx.constraintlayout.widget.R$id: int top -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(long,java.util.concurrent.TimeUnit) -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_android_minHeight -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -com.google.android.material.R$styleable: int[] Snackbar -wangdaye.com.geometricweather.R$id: int widget_trend_daily -com.google.android.material.R$attr: int statusBarForeground -okhttp3.internal.http2.Http2Connection$5 -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getSummary(android.content.Context,java.util.List) -androidx.appcompat.R$color: int switch_thumb_disabled_material_light -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String treeDescription -androidx.appcompat.R$attr: int windowFixedWidthMajor -androidx.preference.R$id: int action_text -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY_DAY -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver this$0 -cyanogenmod.themes.IThemeService$Stub -com.google.android.material.R$styleable: int AppCompatTheme_windowFixedWidthMajor -wangdaye.com.geometricweather.R$id: int mtrl_calendar_days_of_week -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource MF -retrofit2.Converter$Factory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -okio.Buffer: byte[] readByteArray(long) -androidx.work.R$id: int accessibility_custom_action_8 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView -com.google.gson.stream.JsonScope -okhttp3.logging.HttpLoggingInterceptor$Logger$1: HttpLoggingInterceptor$Logger$1() -org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType None -androidx.constraintlayout.widget.R$styleable: int Transform_android_transformPivotX -androidx.appcompat.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: AccuCurrentResult$PressureTendency() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric Metric -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void removeSome(int) -wangdaye.com.geometricweather.R$attr: int bsb_anim_duration -com.google.android.material.R$attr: int itemMaxLines -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$OnFlingListener getOnFlingListener() -androidx.customview.R$styleable: int[] FontFamilyFont -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean replace(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: AccuLocationResult$GeoPosition$Elevation$Metric() -com.google.android.material.R$styleable: int TextInputLayout_endIconTint -com.google.android.material.R$id: int textinput_error -androidx.transition.R$styleable: int FontFamilyFont_ttcIndex -com.google.android.material.textfield.TextInputLayout: com.google.android.material.internal.CheckableImageButton getEndIconView() -wangdaye.com.geometricweather.R$drawable: int notif_temp_132 -androidx.constraintlayout.widget.R$id: int startHorizontal -androidx.viewpager2.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.R$id: int widget_clock_day_todayTemp -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizePresetSizes -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: FitSystemBarSwipeRefreshLayout(android.content.Context) -cyanogenmod.providers.CMSettings$Secure: java.lang.String PERFORMANCE_PROFILE -android.support.v4.os.ResultReceiver$MyResultReceiver: ResultReceiver$MyResultReceiver(android.support.v4.os.ResultReceiver) -io.reactivex.internal.observers.LambdaObserver: void dispose() -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: long serialVersionUID -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_TextView_SpinnerItem -com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -okhttp3.Address: java.net.ProxySelector proxySelector -com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy DEFAULT -cyanogenmod.app.Profile$TriggerState: Profile$TriggerState() -com.google.android.material.R$drawable: int btn_checkbox_checked_mtrl -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int[] Motion -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_2 -com.google.android.material.R$attr: int paddingTopNoTitle -cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.ICMStatusBarManager sService -com.jaredrummler.android.colorpicker.R$style: int Platform_V21_AppCompat_Light -com.google.android.material.R$string: int mtrl_picker_range_header_selected -retrofit2.OkHttpCall$1: retrofit2.OkHttpCall this$0 -androidx.work.R$styleable: R$styleable() -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$color: int design_box_stroke_color -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Medium_Inverse -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void registerListener(cyanogenmod.app.ICustomTileListener,android.content.ComponentName,int) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: int bufferSize -com.google.android.material.R$layout: int test_design_checkbox -com.xw.repo.bubbleseekbar.R$attr: int submitBackground -wangdaye.com.geometricweather.R$id: int search_edit_frame -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeSplitBackground -androidx.dynamicanimation.R$id: int normal -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_minWidth -cyanogenmod.app.LiveLockScreenInfo: java.lang.String toString() -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.fuseable.SimpleQueue queue -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontVariationSettings -okhttp3.internal.http2.Http2Stream$FramingSink: okio.Timeout timeout() -com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_disabled_material_light -okhttp3.internal.tls.CertificateChainCleaner: okhttp3.internal.tls.CertificateChainCleaner get(javax.net.ssl.X509TrustManager) -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_ContextMenu -com.google.android.material.R$styleable: int Layout_layout_constraintLeft_creator -androidx.preference.R$id: int action_menu_presenter -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableEndCompat -cyanogenmod.app.CustomTile: int icon -com.google.android.material.R$dimen: int abc_seekbar_track_background_height_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric Metric -wangdaye.com.geometricweather.R$string: int wind_10 -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA -okhttp3.internal.http2.Huffman: void buildTree() -android.support.v4.os.ResultReceiver$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.work.ListenableWorker -androidx.work.R$dimen: int compat_notification_large_icon_max_height -cyanogenmod.app.IProfileManager$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.R$string: int live -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int telltales_velocityMode -com.turingtechnologies.materialscrollbar.R$styleable: int RecycleListView_paddingBottomNoButtons -okhttp3.internal.http.HttpDate: long MAX_DATE -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleContentDescription -androidx.recyclerview.R$id: int tag_accessibility_heading -com.google.android.material.R$dimen: int abc_search_view_preferred_width -wangdaye.com.geometricweather.R$attr: int round -com.jaredrummler.android.colorpicker.R$attr: int titleMarginEnd -com.google.android.material.floatingactionbutton.FloatingActionButton: void setHideMotionSpecResource(int) -james.adaptiveicon.R$styleable: int ActionMode_titleTextStyle -androidx.appcompat.widget.SwitchCompat: int getCompoundPaddingLeft() -james.adaptiveicon.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.R$id: int titleDividerNoCustom -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle +com.turingtechnologies.materialscrollbar.R$drawable: int design_fab_background +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +com.google.android.material.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator +james.adaptiveicon.R$dimen: int notification_top_pad_large_text +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onSuccess(java.lang.Object) +androidx.constraintlayout.widget.R$attr: int mock_labelBackgroundColor +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStrokeWidth +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String NAME_EQ_PLACEHOLDER +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: long serialVersionUID +androidx.customview.R$id: int time +okhttp3.internal.http2.Http2Stream: okio.Sink getSink() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_116 +androidx.recyclerview.R$layout: int notification_template_icon_group +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onError(java.lang.Throwable) +com.google.android.material.chip.Chip: float getCloseIconEndPadding() +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType FLOAT_TYPE +android.didikee.donate.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +androidx.transition.R$style: int TextAppearance_Compat_Notification_Title +com.google.android.material.R$attr: int placeholderTextAppearance +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_4_30 +androidx.preference.R$id: int top +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +androidx.fragment.app.Fragment$InstantiationException: Fragment$InstantiationException(java.lang.String,java.lang.Exception) +androidx.viewpager2.R$styleable: int FontFamilyFont_fontVariationSettings +com.turingtechnologies.materialscrollbar.R$attr: int titleMarginTop +wangdaye.com.geometricweather.R$attr: int entryValues +androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMark +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeStepGranularity +com.jaredrummler.android.colorpicker.R$anim: int abc_grow_fade_in_from_bottom +androidx.constraintlayout.widget.R$style: int Base_V26_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService newInstance(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi,io.reactivex.disposables.CompositeDisposable) +com.xw.repo.bubbleseekbar.R$styleable: int[] BubbleSeekBar +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean isEmpty() +com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchPreference +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onComplete() +androidx.appcompat.R$attr: int buttonTint +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial +okhttp3.internal.http.RealResponseBody: okio.BufferedSource source +androidx.fragment.app.FragmentContainerView +wangdaye.com.geometricweather.R$style: R$style() +androidx.cardview.widget.CardView: void setCardBackgroundColor(android.content.res.ColorStateList) +androidx.core.app.RemoteActionCompatParcelizer: androidx.core.app.RemoteActionCompat read(androidx.versionedparcelable.VersionedParcel) +com.google.android.material.R$drawable: int abc_spinner_textfield_background_material +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_width +androidx.hilt.R$id: int accessibility_custom_action_15 +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MOSTLY_CLOUDY_NIGHT +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Dialog_Bridge +androidx.preference.R$styleable: int[] ViewStubCompat +okio.Sink: void close() +io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver[] values() +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +cyanogenmod.app.CustomTile$ExpandedStyle: int LIST_STYLE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String speed +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: long produced +james.adaptiveicon.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day +okhttp3.Headers: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$color: int highlighted_text_material_dark +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline4 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.util.List value +androidx.appcompat.R$dimen: int abc_list_item_height_large_material +okhttp3.internal.ws.WebSocketWriter: void writeControlFrame(int,okio.ByteString) +wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_subtitle_keywords +wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_width_minor +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String ID +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String DELETE_AFTER_USE +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_id +wangdaye.com.geometricweather.R$styleable: int Layout_constraint_referenced_ids +wangdaye.com.geometricweather.R$drawable: int abc_item_background_holo_light +okhttp3.internal.Internal: void apply(okhttp3.ConnectionSpec,javax.net.ssl.SSLSocket,boolean) +wangdaye.com.geometricweather.db.entities.HistoryEntity: int nighttimeTemperature +androidx.fragment.R$id: int tag_unhandled_key_listeners +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider access$002(cyanogenmod.externalviews.KeyguardExternalView,cyanogenmod.externalviews.IKeyguardExternalViewProvider) +okhttp3.internal.cache.CacheInterceptor: okhttp3.internal.cache.InternalCache cache +okhttp3.Headers$Builder: okhttp3.Headers$Builder addAll(okhttp3.Headers) +com.xw.repo.bubbleseekbar.R$dimen: int abc_alert_dialog_button_bar_height +androidx.appcompat.R$dimen: int notification_small_icon_background_padding +androidx.preference.R$attr: int fastScrollEnabled +androidx.appcompat.widget.ActionBarOverlayLayout: void setHideOnContentScrollEnabled(boolean) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalBias +okio.AsyncTimeout$1: okio.Timeout timeout() +androidx.viewpager.widget.ViewPager: int getOffscreenPageLimit() +androidx.constraintlayout.utils.widget.ImageFilterView: void setContrast(float) +com.google.android.material.R$color: int mtrl_bottom_nav_ripple_color +cyanogenmod.providers.CMSettings$Validator +okio.Timeout: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) +io.reactivex.internal.subscriptions.SubscriptionArbiter: long serialVersionUID +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: java.util.List history +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_showDelay +james.adaptiveicon.R$drawable: int abc_textfield_activated_mtrl_alpha +wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWidgetConfigActivity: Hilt_DayWidgetConfigActivity() +wangdaye.com.geometricweather.db.entities.MinutelyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_DropDownUp +james.adaptiveicon.R$dimen: int abc_progress_bar_height_material +wangdaye.com.geometricweather.settings.dialogs.AdaptiveIconDialog: AdaptiveIconDialog() +com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetBottom +wangdaye.com.geometricweather.R$id: int item +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_11 +com.google.android.material.R$styleable: int Constraint_android_layout_width +androidx.preference.R$styleable: int AppCompatTheme_panelMenuListWidth +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.Observer downstream +io.reactivex.exceptions.CompositeException: void printStackTrace(java.io.PrintStream) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RealFeelShaderTemperature androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Line2 -com.turingtechnologies.materialscrollbar.R$attr: int checkedIconVisible -wangdaye.com.geometricweather.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CollapsingToolbar -com.google.android.material.R$styleable: int CustomAttribute_customFloatValue -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabView -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvLevel -androidx.appcompat.view.menu.ListMenuItemView: void setChecked(boolean) -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void request(long) +com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.floatingactionbutton.FloatingActionButtonImpl getImpl() +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_DialogWhenLarge +com.bumptech.glide.integration.okhttp.R$style: R$style() +androidx.preference.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.R$id: int ghost_view +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +okhttp3.Request: boolean isHttps() +androidx.recyclerview.widget.RecyclerView: void addOnChildAttachStateChangeListener(androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener) +com.xw.repo.bubbleseekbar.R$id: int action_mode_bar +wangdaye.com.geometricweather.R$attr: int singleLineTitle +androidx.work.R$style: R$style() +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setId(java.lang.Long) +androidx.lifecycle.ViewModelProvider$Factory: androidx.lifecycle.ViewModel create(java.lang.Class) wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ -com.google.android.material.tabs.TabLayout: void setOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed -androidx.constraintlayout.widget.R$attr: int layout_goneMarginRight -androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_icon -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed -cyanogenmod.weather.WeatherInfo$Builder: boolean isValidTempUnit(int) -com.turingtechnologies.materialscrollbar.AlphabetIndicator -okhttp3.internal.http.RealResponseBody: long contentLength -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode -cyanogenmod.app.PartnerInterface: boolean setZenModeWithDuration(int,long) -androidx.appcompat.R$attr: int popupTheme -cyanogenmod.content.Intent -okhttp3.CertificatePinner$Pin: java.lang.String pattern -androidx.appcompat.R$attr: int voiceIcon -wangdaye.com.geometricweather.R$attr: int actionMenuTextAppearance -androidx.work.R$id: int accessibility_custom_action_9 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -com.google.android.material.R$dimen: int design_snackbar_action_text_color_alpha -org.greenrobot.greendao.AbstractDao: void updateInTx(java.lang.Object[]) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean() -com.jaredrummler.android.colorpicker.R$id: int gridView -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom -io.reactivex.internal.disposables.EmptyDisposable: boolean isDisposed() -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getWindDegree() -wangdaye.com.geometricweather.R$styleable: int Insets_paddingRightSystemWindowInsets -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_28 -android.didikee.donate.R$color: int material_grey_600 -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabView -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub -com.google.android.material.R$styleable: int Constraint_android_translationZ -wangdaye.com.geometricweather.R$string: int settings_summary_background_free_on -androidx.appcompat.R$styleable: int CompoundButton_android_button -androidx.preference.R$attr: int searchIcon -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: AccuCurrentResult$Precip1hr$Metric() -james.adaptiveicon.R$styleable: int SearchView_android_inputType -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -retrofit2.KotlinExtensions: java.lang.Object create(retrofit2.Retrofit) -androidx.constraintlayout.widget.R$anim: int abc_popup_enter -android.didikee.donate.R$style: int TextAppearance_AppCompat_Body2 -androidx.viewpager.R$id: int info -com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusTopStart() -com.jaredrummler.android.colorpicker.R$attr: int dropdownPreferenceStyle -cyanogenmod.weather.WeatherInfo: double access$1302(cyanogenmod.weather.WeatherInfo,double) -cyanogenmod.weather.WeatherInfo$Builder: double mTodaysHighTemp -cyanogenmod.hardware.CMHardwareManager: boolean writePersistentInt(java.lang.String,int) -androidx.loader.R$style: int TextAppearance_Compat_Notification_Line2 -com.google.android.material.appbar.AppBarLayout: int getUpNestedPreScrollRange() -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_disabled_holo_light -androidx.viewpager.widget.PagerTabStrip: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Snackbar_Message -okhttp3.OkHttpClient$Builder: okhttp3.Cache cache -androidx.viewpager2.R$attr: int font -io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyleSmall -cyanogenmod.themes.ThemeChangeRequest$1: java.lang.Object[] newArray(int) -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -wangdaye.com.geometricweather.R$id: int widget_day_week_card -com.xw.repo.bubbleseekbar.R$color: R$color() -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setProgress(float) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -com.google.android.material.R$drawable: int material_ic_menu_arrow_down_black_24dp -com.google.android.material.R$id: int mtrl_calendar_year_selector_frame -androidx.appcompat.R$id: int contentPanel -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_background_transition_holo_light -androidx.core.R$styleable: int GradientColorItem_android_color -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void drainLoop() -android.didikee.donate.R$dimen: int notification_top_pad_large_text -com.google.gson.LongSerializationPolicy$1: com.google.gson.JsonElement serialize(java.lang.Long) -com.google.android.material.timepicker.ChipTextInputComboView: ChipTextInputComboView(android.content.Context,android.util.AttributeSet) -com.google.gson.stream.JsonWriter: void replaceTop(int) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SearchView_ActionBar -wangdaye.com.geometricweather.R$drawable: int shortcuts_thunderstorm -com.bumptech.glide.R$styleable: int[] ColorStateListItem -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_CompactMenu -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeApparentTemperature -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierMargin -androidx.work.R$id: int accessibility_custom_action_28 -io.reactivex.internal.schedulers.RxThreadFactory -retrofit2.KotlinExtensions$suspendAndThrow$1: KotlinExtensions$suspendAndThrow$1(kotlin.coroutines.Continuation) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator QS_SHOW_BRIGHTNESS_SLIDER_VALIDATOR -androidx.appcompat.widget.SwitchCompat: android.graphics.PorterDuff$Mode getTrackTintMode() -cyanogenmod.externalviews.KeyguardExternalViewProviderService: KeyguardExternalViewProviderService() -com.jaredrummler.android.colorpicker.R$attr: int showDividers -wangdaye.com.geometricweather.R$attr: int actionBarTabBarStyle -androidx.hilt.work.R$id: int accessibility_custom_action_22 -androidx.legacy.coreutils.R$layout: int notification_action -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction Direction -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: void onProgress(int) -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void otherError(java.lang.Throwable) -cyanogenmod.power.IPerformanceManager$Stub: IPerformanceManager$Stub() -android.didikee.donate.R$color: int accent_material_light -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onComplete() -androidx.preference.R$drawable: int abc_switch_track_mtrl_alpha -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_switchTextOn -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_switchStyle -com.google.android.material.R$animator: int mtrl_btn_unelevated_state_list_anim -okhttp3.internal.publicsuffix.PublicSuffixDatabase: okhttp3.internal.publicsuffix.PublicSuffixDatabase instance -androidx.preference.R$drawable: int abc_textfield_default_mtrl_alpha -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback -wangdaye.com.geometricweather.R$string: int feedback_check_location_permission -com.jaredrummler.android.colorpicker.R$dimen: int compat_control_corner_material -com.github.rahatarmanahmed.cpv.CircularProgressView$9: CircularProgressView$9(com.github.rahatarmanahmed.cpv.CircularProgressView) -androidx.constraintlayout.widget.R$attr: int checkedTextViewStyle -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onAttach(android.os.IBinder) -androidx.hilt.work.R$drawable: int notification_bg_normal_pressed -androidx.lifecycle.Lifecycling: java.lang.reflect.Constructor generatedConstructor(java.lang.Class) -androidx.lifecycle.LifecycleRegistry: boolean isSynced() -com.xw.repo.bubbleseekbar.R$id: int scrollIndicatorDown -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Primary -wangdaye.com.geometricweather.background.receiver.widget.WidgetTextProvider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windSpeedEnd -com.google.android.material.R$string: int material_minute_suffix -androidx.appcompat.R$layout: int abc_screen_simple_overlay_action_mode -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_medium_material -androidx.transition.R$styleable: int FontFamilyFont_android_fontWeight -androidx.preference.R$id: int line1 -android.didikee.donate.R$styleable: int AppCompatTheme_checkboxStyle -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_pixel -androidx.appcompat.widget.Toolbar: int getPopupTheme() -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_keylines -cyanogenmod.hardware.ICMHardwareService: java.lang.String getSerialNumber() -androidx.appcompat.R$attr: int contentDescription -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RealFeelTemperature -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitleTextColor -retrofit2.ParameterHandler$FieldMap: ParameterHandler$FieldMap(java.lang.reflect.Method,int,retrofit2.Converter,boolean) -com.jaredrummler.android.colorpicker.R$color: int secondary_text_default_material_dark -com.turingtechnologies.materialscrollbar.R$attr: int track -wangdaye.com.geometricweather.R$attr: int constraintSet -androidx.recyclerview.widget.RecyclerView: void setOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -com.google.android.material.R$attr: int placeholderTextAppearance -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain -android.didikee.donate.R$attr: int contentInsetEndWithActions -com.google.android.material.R$id: int mtrl_calendar_day_selector_frame -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String LocalizedName -androidx.work.impl.foreground.SystemForegroundService: SystemForegroundService() -android.didikee.donate.R$drawable: int abc_scrubber_control_off_mtrl_alpha -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty12H -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analogContainer_dark -io.reactivex.internal.observers.InnerQueuedObserver: boolean isDone() -wangdaye.com.geometricweather.R$string: int settings_title_daily_trend_display +cyanogenmod.weather.WeatherInfo: double getHumidity() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf +android.didikee.donate.R$string: int abc_shareactionprovider_share_with_application +com.google.gson.stream.JsonScope: int DANGLING_NAME +com.google.android.material.R$anim: int mtrl_bottom_sheet_slide_in +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfRain +com.google.android.material.button.MaterialButton$SavedState +com.turingtechnologies.materialscrollbar.R$attr: int colorControlHighlight +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextEnabled +okhttp3.ResponseBody$BomAwareReader +androidx.preference.R$dimen: int compat_notification_large_icon_max_width +androidx.appcompat.view.menu.ActionMenuItemView +androidx.core.R$dimen: int notification_top_pad +com.google.android.material.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.floatingactionbutton.FloatingActionButton: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) +com.jaredrummler.android.colorpicker.R$attr: int font +android.didikee.donate.R$string: int abc_search_hint +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerComplete(io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver) +androidx.lifecycle.ProcessLifecycleOwner: boolean mStopSent androidx.appcompat.R$styleable: int AppCompatTheme_panelMenuListTheme -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getNumGammaControls() -androidx.constraintlayout.widget.R$id: int search_edit_frame -androidx.preference.R$color: int abc_tint_seek_thumb -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginStart -androidx.constraintlayout.widget.R$style: int Platform_AppCompat_Light -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickTintList() -wangdaye.com.geometricweather.R$string: int settings_title_notification_text_color -okhttp3.internal.connection.RouteSelector$Selection: okhttp3.Route next() -okhttp3.Response: okhttp3.Response$Builder newBuilder() -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -james.adaptiveicon.R$attr: int seekBarStyle -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_elevation -androidx.preference.R$styleable: int Preference_dependency -cyanogenmod.providers.DataUsageContract: java.lang.String EXTRA -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: int hashCode() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: java.lang.String Unit -com.google.android.material.R$attr: int subtitleTextColor -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconPadding -com.bumptech.glide.Registry$NoImageHeaderParserException: Registry$NoImageHeaderParserException() -okhttp3.internal.cache.CacheRequest -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.R$styleable: int CardView_cardCornerRadius -com.google.android.material.R$color: int mtrl_textinput_default_box_stroke_color -androidx.preference.R$anim: int fragment_fade_exit -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoldIndex() -retrofit2.Retrofit: retrofit2.Retrofit$Builder newBuilder() -okio.Okio: okio.Sink sink(java.io.OutputStream) -com.google.android.material.R$styleable: int SearchView_voiceIcon -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_hideOnScroll -com.bumptech.glide.manager.SupportRequestManagerFragment: SupportRequestManagerFragment() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_102 -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_margin -androidx.preference.R$id: int unchecked -wangdaye.com.geometricweather.R$id: int password_toggle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_showOldColor -retrofit2.Retrofit$Builder: java.util.concurrent.Executor callbackExecutor -com.google.android.material.R$styleable: int Constraint_pivotAnchor -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.lang.Object invoke(java.lang.Object,java.lang.reflect.Method,java.lang.Object[]) -androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior: CoordinatorLayout$Behavior(android.content.Context,android.util.AttributeSet) -com.github.rahatarmanahmed.cpv.CircularProgressView: float getProgress() -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemTextAppearance -androidx.preference.R$styleable: int Toolbar_titleMargin -android.didikee.donate.R$style: int Base_AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float tWindchill -wangdaye.com.geometricweather.R$attr: int dividerHorizontal -io.reactivex.Observable: io.reactivex.Single elementAt(long,java.lang.Object) -okhttp3.internal.Util: java.lang.String[] intersect(java.util.Comparator,java.lang.String[],java.lang.String[]) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -retrofit2.OptionalConverterFactory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -cyanogenmod.app.suggest.AppSuggestManager: android.content.Context mContext -wangdaye.com.geometricweather.R$attr: int bottom_text_size -androidx.hilt.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$string: int wind_0 -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType DIMENSION_TYPE -androidx.drawerlayout.R$dimen: int notification_subtext_size -com.google.android.material.R$styleable: int[] Insets -com.google.android.material.R$styleable: int SwitchMaterial_useMaterialThemeColors -okhttp3.internal.cache.CacheInterceptor$1: long read(okio.Buffer,long) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver -androidx.appcompat.R$style: int Base_Widget_AppCompat_SearchView -cyanogenmod.weatherservice.WeatherProviderService -androidx.appcompat.R$color: int background_material_dark -wangdaye.com.geometricweather.R$styleable: int ArcProgress_text_color -androidx.customview.R$styleable: int FontFamily_fontProviderFetchTimeout -com.google.android.material.chip.ChipGroup: void setOnHierarchyChangeListener(android.view.ViewGroup$OnHierarchyChangeListener) -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit valueOf(java.lang.String) -androidx.swiperefreshlayout.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event[] values() -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSmallPopupMenu -okio.Buffer$1: void write(byte[],int,int) -androidx.preference.R$styleable: int AppCompatImageView_tint -com.google.android.material.R$attr: int actionModeCopyDrawable -wangdaye.com.geometricweather.R$id: int direct -wangdaye.com.geometricweather.R$layout: int item_about_header -androidx.constraintlayout.widget.R$attr: int switchMinWidth -androidx.lifecycle.Transformations$2$1: androidx.lifecycle.Transformations$2 this$0 -cyanogenmod.app.Profile: int compareTo(java.lang.Object) -androidx.appcompat.R$layout: R$layout() -okhttp3.HttpUrl: java.util.List pathSegments -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Description -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_CRITICAL -androidx.preference.R$dimen: int abc_edit_text_inset_top_material -com.jaredrummler.android.colorpicker.R$color: R$color() -androidx.lifecycle.Lifecycle: java.util.concurrent.atomic.AtomicReference mInternalScopeRef -retrofit2.OkHttpCall: retrofit2.Converter responseConverter -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindDirection(java.lang.String) -wangdaye.com.geometricweather.R$attr: int widgetLayout -cyanogenmod.hardware.CMHardwareManager: boolean deletePersistentObject(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_text_horizontal_edge_offset -com.turingtechnologies.materialscrollbar.R$id: int line3 -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSteps -okhttp3.WebSocketListener -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) -retrofit2.HttpException -wangdaye.com.geometricweather.R$id: int linear -com.turingtechnologies.materialscrollbar.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String getWeatherPhase() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -wangdaye.com.geometricweather.R$attr: int cpv_animSyncDuration -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotationX -com.google.android.material.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowDy -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rx() -okhttp3.HttpUrl$Builder: boolean isDot(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_tooltipFrameBackground -androidx.work.R$style: int TextAppearance_Compat_Notification_Time -androidx.constraintlayout.widget.R$dimen: int abc_select_dialog_padding_start_material -com.turingtechnologies.materialscrollbar.R$id: int transition_scene_layoutid_cache -androidx.lifecycle.SavedStateHandle: void validateValue(java.lang.Object) -com.google.gson.stream.JsonReader: void push(int) -com.google.android.material.slider.BaseSlider: void setTickActiveTintList(android.content.res.ColorStateList) -james.adaptiveicon.R$layout: int abc_search_dropdown_item_icons_2line -com.google.android.material.R$string: int abc_shareactionprovider_share_with -android.didikee.donate.R$attr: int titleMarginStart -com.xw.repo.bubbleseekbar.R$layout: int notification_template_part_time -cyanogenmod.app.Profile: int getNotificationLightMode() -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean access$502(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,boolean) -cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup[] getNotificationGroups() -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd -com.google.android.material.R$attr: int paddingBottomNoButtons -com.google.android.material.R$color: int mtrl_card_view_foreground -okhttp3.internal.http2.Http2: java.lang.String frameLog(boolean,int,int,byte,byte) -io.reactivex.Observable: io.reactivex.Observable concatArrayEagerDelayError(io.reactivex.ObservableSource[]) -okhttp3.OkHttpClient: javax.net.ssl.HostnameVerifier hostnameVerifier -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int UPDATING -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontWeight -androidx.preference.R$attr: int actionModeCloseDrawable -androidx.drawerlayout.R$id: R$id() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_dark -com.jaredrummler.android.colorpicker.R$attr: int defaultQueryHint -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar -retrofit2.ParameterHandler: ParameterHandler() -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -okhttp3.internal.connection.ConnectionSpecSelector: int nextModeIndex -com.google.android.material.R$drawable: int abc_tab_indicator_mtrl_alpha -com.google.android.material.R$styleable: int Constraint_flow_maxElementsWrap -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -okio.Utf8: Utf8() -cyanogenmod.hardware.ICMHardwareService$Stub: android.os.IBinder asBinder() -com.bumptech.glide.load.engine.GlideException: void printStackTrace(java.io.PrintWriter) -wangdaye.com.geometricweather.R$attr: int enforceMaterialTheme -wangdaye.com.geometricweather.R$attr: int bsb_section_text_position -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicReference upstream -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator LOCKSCREEN_PIN_SCRAMBLE_LAYOUT_VALIDATOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setSunRiseSet(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean) -androidx.core.widget.NestedScrollView: void setNestedScrollingEnabled(boolean) -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMinWidth -androidx.appcompat.R$attr: int colorBackgroundFloating -com.google.android.material.R$attr: int deriveConstraintsFrom -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean disposeAll() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: MfForecastV2Result() -com.google.android.material.R$styleable: int NavigationView_itemShapeFillColor -androidx.appcompat.resources.R$id -wangdaye.com.geometricweather.R$styleable: int[] KeyAttribute -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean done -com.xw.repo.bubbleseekbar.R$drawable: int abc_edit_text_material -wangdaye.com.geometricweather.R$attr: int defaultQueryHint -okhttp3.internal.proxy.NullProxySelector: NullProxySelector() -okhttp3.OkHttpClient$Builder: OkHttpClient$Builder(okhttp3.OkHttpClient) -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_NoActionBar -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void disposeInner() -com.google.android.material.R$attr: int layout_constraintGuide_percent -okhttp3.internal.http1.Http1Codec: int STATE_READ_RESPONSE_HEADERS -wangdaye.com.geometricweather.R$string: int dew_point -cyanogenmod.themes.IThemeChangeListener$Stub: cyanogenmod.themes.IThemeChangeListener asInterface(android.os.IBinder) -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder readTimeout(java.time.Duration) -com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundMode(int) -okhttp3.internal.http2.Http2Reader$Handler: void rstStream(int,okhttp3.internal.http2.ErrorCode) -cyanogenmod.hardware.CMHardwareManager: int getVibratorWarningIntensity() -androidx.preference.R$attr: int fastScrollHorizontalTrackDrawable -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar_Colored -okhttp3.internal.cache2.Relay: int SOURCE_FILE -wangdaye.com.geometricweather.R$attr: int motionDebug -androidx.preference.R$styleable: int AppCompatTheme_windowActionBar -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder query(java.lang.String) -cyanogenmod.profiles.LockSettings: android.os.Parcelable$Creator CREATOR -retrofit2.http.Url -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric() -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver this$0 -okhttp3.internal.http2.Http2Writer: void rstStream(int,okhttp3.internal.http2.ErrorCode) -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableTop -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert -com.google.android.material.R$color: int highlighted_text_material_light -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_DarkActionBar -okio.Segment: okio.Segment next -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void subscribeActual() -wangdaye.com.geometricweather.R$xml: int perference -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTINUATION -androidx.viewpager.R$layout: int notification_template_icon_group -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type getOwnerType() -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Light -james.adaptiveicon.R$attr: int actionBarTheme -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -com.google.android.material.R$attr: int drawableBottomCompat -cyanogenmod.hardware.DisplayMode$1: cyanogenmod.hardware.DisplayMode createFromParcel(android.os.Parcel) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_right_mtrl_light -com.google.android.material.R$attr: int linearSeamless -androidx.constraintlayout.widget.R$styleable: int Constraint_animate_relativeTo -com.google.android.material.R$attr: int curveFit -androidx.appcompat.R$styleable: int PopupWindow_overlapAnchor -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_16dp -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int RUNNING -androidx.preference.R$style: int Base_Widget_AppCompat_PopupMenu -okhttp3.internal.Internal: int code(okhttp3.Response$Builder) -james.adaptiveicon.R$styleable: int AppCompatTheme_listPopupWindowStyle -androidx.lifecycle.ClassesInfoCache$MethodReference: ClassesInfoCache$MethodReference(int,java.lang.reflect.Method) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: int UnitType -androidx.appcompat.R$attr: int spinBars -com.turingtechnologies.materialscrollbar.R$attr: int titleMarginBottom -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$attr: int layout_collapseMode -androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context,android.util.AttributeSet) -androidx.preference.R$styleable: int MultiSelectListPreference_android_entries -androidx.constraintlayout.widget.R$attr: int crossfade -cyanogenmod.app.ICustomTileListener$Stub: cyanogenmod.app.ICustomTileListener asInterface(android.os.IBinder) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum() -android.didikee.donate.R$style: int Widget_AppCompat_ActionButton_Overflow -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitationProbability -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context,android.util.AttributeSet) -okhttp3.internal.http2.Http2Reader$ContinuationSource -androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogCenterButtons -cyanogenmod.weather.WeatherInfo: long mTimestamp -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: double Value -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_switchTextOn -androidx.preference.R$styleable: int ActionBarLayout_android_layout_gravity -com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.AnimatorSet createIndeterminateAnimator(float) -androidx.customview.R$id: int right_icon -com.google.android.material.R$styleable: int KeyAttribute_transitionPathRotate -androidx.preference.R$dimen: int abc_action_bar_stacked_tab_max_width -androidx.hilt.work.R$style: int Widget_Compat_NotificationActionText -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_RC4_128_MD5 -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void dispose() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void openComplete(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver) -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State FAILED -androidx.constraintlayout.widget.R$attr: int suggestionRowLayout -okhttp3.internal.ws.WebSocketWriter: okio.Buffer buffer -cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(int) -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode[] values() -androidx.preference.R$string: int abc_action_bar_up_description -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean) -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_11 -android.didikee.donate.R$style: int TextAppearance_AppCompat_Large_Inverse -com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_inset_vertical_material -okio.RealBufferedSource: long readAll(okio.Sink) -androidx.appcompat.R$layout: int abc_alert_dialog_material -com.google.android.material.textfield.TextInputLayout: int getBaseline() -androidx.preference.R$id: int scrollIndicatorDown -androidx.work.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.LocationEntity,long) -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_summaryOff -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_thumb -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelMenuListWidth -okhttp3.internal.cache.DiskLruCache$Snapshot: void close() -com.turingtechnologies.materialscrollbar.R$attr: int arrowHeadLength -com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_weight -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setIcon(int) -androidx.appcompat.R$id: int tabMode -com.google.android.material.R$color: int switch_thumb_material_dark -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context,android.util.AttributeSet) -androidx.preference.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSrc() -okio.GzipSource: okio.Timeout timeout() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindSpeedStart(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: java.lang.String ShortPhrase -androidx.constraintlayout.widget.R$attr: int toolbarStyle -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_WARNING_INDEX -com.google.android.material.R$dimen: int design_fab_size_normal -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language UNSIMPLIFIED_CHINESE -com.xw.repo.bubbleseekbar.R$id: int notification_main_column_container -wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean hasKey(java.lang.Object) -com.google.android.material.R$styleable: int AppCompatTheme_colorError -okhttp3.HttpUrl$Builder: java.lang.String encodedFragment -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum -androidx.coordinatorlayout.R$id: int accessibility_custom_action_4 -com.google.android.material.R$id: int accelerate -wangdaye.com.geometricweather.R$styleable: int[] AppCompatTextHelper -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Borderless -wangdaye.com.geometricweather.R$string: int wind_direction -cyanogenmod.power.PerformanceManager: int PROFILE_POWER_SAVE -com.xw.repo.bubbleseekbar.R$drawable: int abc_tab_indicator_mtrl_alpha -okhttp3.Cache: int requestCount() -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode SNOW -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationVoice(android.content.Context,float) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemRippleColor() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_elevation -com.jaredrummler.android.colorpicker.ColorPickerView -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(java.util.Map,java.util.Map,cyanogenmod.themes.ThemeChangeRequest$RequestType,long) -androidx.appcompat.widget.Toolbar: void setCollapseContentDescription(java.lang.CharSequence) -com.google.android.material.R$styleable: int OnSwipe_maxVelocity -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Bridge -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day Day -androidx.appcompat.R$attr: int drawableTopCompat -wangdaye.com.geometricweather.R$attr: int errorContentDescription -wangdaye.com.geometricweather.R$id: int resident_icon -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getReadableDb() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric Metric -io.reactivex.internal.util.EmptyComponent: void onSubscribe(org.reactivestreams.Subscription) -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -androidx.customview.R$color: int notification_action_color_filter -com.google.android.material.R$styleable: int Layout_layout_constraintRight_toRightOf -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setStatus(int) -wangdaye.com.geometricweather.R$attr: int autoTransition -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_5 -com.xw.repo.bubbleseekbar.R$color: int dim_foreground_material_light -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar -com.xw.repo.bubbleseekbar.R$style: R$style() -androidx.preference.CheckBoxPreference -com.jaredrummler.android.colorpicker.R$attr: int actionBarItemBackground -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_height -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetStart -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_MWI_NOTIFICATION_VALIDATOR -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_PREV_VALUE -androidx.appcompat.widget.ListPopupWindow: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: int UnitType -androidx.lifecycle.extensions.R$anim: int fragment_fade_exit -com.google.android.material.R$attr: int boxStrokeColor -com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_enforceTextAppearance -okhttp3.internal.http.RetryAndFollowUpInterceptor: RetryAndFollowUpInterceptor(okhttp3.OkHttpClient,boolean) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelMenuListWidth -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_stroke_size -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial Imperial -com.google.android.material.slider.BaseSlider: void setFocusedThumbIndex(int) -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy[] values() -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void drainFused() -org.greenrobot.greendao.AbstractDao: long insert(java.lang.Object) -androidx.preference.R$styleable: int ActionMode_backgroundSplit -com.google.android.material.R$attr: int animate_relativeTo -org.greenrobot.greendao.AbstractDaoMaster: java.util.Map daoConfigMap -com.google.gson.stream.JsonReader: int peekNumber() -james.adaptiveicon.R$styleable: int MenuView_subMenuArrow -androidx.preference.R$attr: int fastScrollEnabled -com.jaredrummler.android.colorpicker.R$id: int info -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Colored -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -james.adaptiveicon.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerColor -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.disposables.CompositeDisposable set -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: AccuCurrentResult$PrecipitationSummary$Past18Hours() -androidx.appcompat.R$layout: int abc_popup_menu_header_item_layout -io.reactivex.internal.functions.Functions$NaturalComparator -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_EditText -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderFetchTimeout -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SeekBar -androidx.fragment.app.FragmentManager: void addOnBackStackChangedListener(androidx.fragment.app.FragmentManager$OnBackStackChangedListener) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_creator -android.didikee.donate.R$attr: int buttonBarNeutralButtonStyle -cyanogenmod.app.IProfileManager: boolean profileExistsByName(java.lang.String) -retrofit2.Utils: java.lang.RuntimeException parameterError(java.lang.reflect.Method,int,java.lang.String,java.lang.Object[]) -wangdaye.com.geometricweather.R$styleable: int Layout_barrierMargin -com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List forecasts -com.turingtechnologies.materialscrollbar.R$attr: int layout_behavior -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Headline -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_BLUE_INDEX -wangdaye.com.geometricweather.R$drawable: int weather_hail_2 -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: io.reactivex.Observer downstream -retrofit2.BuiltInConverters: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.AbstractDao getDao(java.lang.Class) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String windDirection -androidx.fragment.R$attr -com.google.android.material.R$attr: int placeholderText -com.turingtechnologies.materialscrollbar.R$attr: int actionBarWidgetTheme -com.bumptech.glide.integration.okhttp.R$attr: int coordinatorLayoutStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf -james.adaptiveicon.R$styleable: int AlertDialog_android_layout -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void removeFirst() -com.xw.repo.BubbleSeekBar: void setTrackColor(int) -wangdaye.com.geometricweather.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSo2(java.lang.Float) -james.adaptiveicon.R$dimen: int abc_seekbar_track_background_height_material -wangdaye.com.geometricweather.R$attr: int switchTextAppearance -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber) -wangdaye.com.geometricweather.R$id: int sawtooth -androidx.appcompat.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -com.google.android.material.R$layout: int design_navigation_item_separator -com.google.android.material.R$attr: int listPopupWindowStyle -android.didikee.donate.R$drawable: int abc_spinner_mtrl_am_alpha -wangdaye.com.geometricweather.R$attr: int itemShapeAppearance -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_SCREEN_ON_VALIDATOR -androidx.core.os.CancellationSignal -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.constraintlayout.widget.R$dimen: int abc_floating_window_z -com.google.android.material.R$styleable: int NavigationView_itemTextAppearance -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber -androidx.legacy.coreutils.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: ChineseCityEntity() -okio.Pipe$PipeSource: okio.Pipe this$0 -okio.BufferedSource: byte readByte() -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient build() -com.google.android.material.R$styleable: int Constraint_layout_constraintTop_creator -cyanogenmod.weather.CMWeatherManager$2$1: CMWeatherManager$2$1(cyanogenmod.weather.CMWeatherManager$2,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener,int,cyanogenmod.weather.WeatherInfo) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$color: int mtrl_indicator_text_color -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_weight -androidx.customview.R$id: int async -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dark -okhttp3.internal.cache.DiskLruCache$Editor: void detach() -androidx.coordinatorlayout.R$styleable: int GradientColor_android_gradientRadius -com.google.android.material.R$styleable: int Constraint_layout_constraintTag -androidx.appcompat.widget.AppCompatToggleButton +com.google.android.material.R$styleable: int[] MenuGroup +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_count +io.reactivex.Observable: io.reactivex.Observable timeout0(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: int UnitType +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean +wangdaye.com.geometricweather.R$attr: int panelMenuListTheme +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder cipherSuites(okhttp3.CipherSuite[]) +okhttp3.internal.http2.Header: int hpackSize +androidx.appcompat.R$attr: int buttonBarNeutralButtonStyle +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_statusBarBackground +com.google.android.material.R$id: int search_src_text +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_padding +io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,io.reactivex.Scheduler) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver +androidx.lifecycle.MediatorLiveData$Source: int mVersion +io.reactivex.internal.observers.InnerQueuedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerNext(int,java.lang.Object) +androidx.preference.R$styleable: int ViewStubCompat_android_inflatedId +retrofit2.http.Field: boolean encoded() +cyanogenmod.app.LiveLockScreenManager: LiveLockScreenManager(android.content.Context) +androidx.hilt.R$layout: int notification_template_custom_big +androidx.core.R$dimen: int notification_subtext_size +okio.SegmentedByteString: int[] directory +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setPubTime(java.lang.String) +cyanogenmod.providers.CMSettings$Secure: boolean isLegacySetting(java.lang.String) +cyanogenmod.app.ILiveLockScreenManagerProvider: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +okhttp3.Cache$1: Cache$1(okhttp3.Cache) +androidx.viewpager2.R$id: int italic +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_PopupMenu +androidx.preference.R$styleable: int GradientColor_android_centerY +com.google.android.material.R$id: int design_navigation_view +com.turingtechnologies.materialscrollbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.R$dimen: int material_text_view_test_line_height +retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: CompletableFutureCallAdapterFactory$CallCancelCompletableFuture(retrofit2.Call) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder password(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onCross +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_minHeight +androidx.appcompat.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$styleable: int Constraint_android_alpha +wangdaye.com.geometricweather.R$array: int subtitle_data_values +com.google.android.material.appbar.CollapsingToolbarLayout: int getCollapsedTitleGravity() +james.adaptiveicon.R$attr: int textAppearanceListItemSecondary +com.google.android.material.R$dimen: int mtrl_textinput_box_corner_radius_medium +androidx.drawerlayout.R$layout: int notification_action +com.turingtechnologies.materialscrollbar.R$attr: int useCompatPadding +wangdaye.com.geometricweather.R$id +com.jaredrummler.android.colorpicker.R$string: int abc_action_bar_up_description +wangdaye.com.geometricweather.db.entities.AlertEntityDao +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.R$attr: int closeIconSize +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.Integer getIndex() +androidx.hilt.work.R$drawable: int notification_action_background +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_margin +android.didikee.donate.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setStatus(int) +com.google.android.material.R$styleable: int TextInputLayout_boxBackgroundColor +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver +com.google.android.material.R$dimen: int mtrl_btn_disabled_elevation +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position position +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean cancelled +io.reactivex.Observable: io.reactivex.Completable switchMapCompletableDelayError(io.reactivex.functions.Function) +okhttp3.OkHttpClient: okhttp3.ConnectionPool connectionPool +androidx.preference.R$styleable: int AppCompatTheme_windowFixedHeightMinor +com.google.android.material.R$id: int title_template +androidx.viewpager.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$string: int abc_action_mode_done +james.adaptiveicon.R$color: int bright_foreground_inverse_material_dark +androidx.lifecycle.SavedStateHandle: SavedStateHandle() +wangdaye.com.geometricweather.R$attr: int cornerFamilyTopLeft +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitle_inputter +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_arrowHeadLength +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleContentDescription +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customStringValue +com.xw.repo.bubbleseekbar.R$integer: int status_bar_notification_info_maxnum +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +androidx.cardview.widget.CardView: void setMinimumWidth(int) +com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_android_popupBackground +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogCenterButtons +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HEAVY_SNOW +com.google.android.material.R$styleable: int ActionBar_displayOptions +com.google.android.material.R$attr: int actionBarTheme +okhttp3.EventListener$1: EventListener$1() +androidx.fragment.app.FragmentContainerView: void setDrawDisappearingViewsLast(boolean) +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_contentDescription +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogTheme +wangdaye.com.geometricweather.R$attr: int actionModeCloseDrawable +com.xw.repo.bubbleseekbar.R$dimen: int disabled_alpha_material_dark +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Info +androidx.fragment.R$color: int notification_icon_bg_color +androidx.hilt.R$dimen: int notification_small_icon_background_padding com.google.android.material.bottomnavigation.BottomNavigationView: int getItemBackgroundResource() -wangdaye.com.geometricweather.R$drawable: int notif_temp_28 -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_track -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: retrofit2.Call $this_await$inlined -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$RequestType mRequestType -wangdaye.com.geometricweather.R$style: int Preference_SwitchPreference -androidx.constraintlayout.widget.R$attr: int indeterminateProgressStyle -com.google.android.material.R$styleable: int NavigationView_itemShapeAppearanceOverlay -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_item_max_width -com.google.android.material.R$styleable: int Toolbar_titleMargins -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Menu -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void dispose() -com.google.android.material.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -wangdaye.com.geometricweather.R$array: int languages -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onError(java.lang.Throwable) -com.bumptech.glide.load.engine.GlideException: void logRootCauses(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotation -cyanogenmod.app.BaseLiveLockManagerService: BaseLiveLockManagerService() -wangdaye.com.geometricweather.db.entities.AlertEntity: AlertEntity() -com.jaredrummler.android.colorpicker.R$id: int async -androidx.appcompat.R$integer: int status_bar_notification_info_maxnum -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider access$000(cyanogenmod.externalviews.KeyguardExternalView) -com.google.android.material.R$styleable: int ConstraintSet_motionProgress -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getWetBulbTemperature() -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -androidx.lifecycle.extensions.R$id: int blocking -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void dispose() -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer -com.jaredrummler.android.colorpicker.R$style: int Base_V22_Theme_AppCompat -james.adaptiveicon.R$color: int highlighted_text_material_light -androidx.constraintlayout.widget.R$attr: int layout_constraintCircle -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_stacked_tab_max_width -androidx.fragment.R$styleable: int GradientColor_android_gradientRadius -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -androidx.legacy.coreutils.R$id: int line1 -com.google.android.material.R$color: int material_slider_active_tick_marks_color -androidx.constraintlayout.widget.R$attr: int autoSizeTextType -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_keyline -wangdaye.com.geometricweather.R$styleable: int[] ArcProgress -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date sunsetTime -com.google.android.material.R$styleable: int MenuItem_android_checkable -james.adaptiveicon.R$dimen: int notification_right_side_padding_top -androidx.loader.R$drawable: int notification_template_icon_low_bg -com.google.android.material.textfield.TextInputLayout: int getPlaceholderTextAppearance() -com.jaredrummler.android.colorpicker.R$attr: int iconTintMode -james.adaptiveicon.R$layout: R$layout() -androidx.constraintlayout.utils.widget.MotionTelltales -androidx.preference.R$styleable: int[] ActionMenuItemView -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: double Value -androidx.fragment.R$dimen: int notification_top_pad -com.google.android.material.R$style: int Base_V7_Widget_AppCompat_Toolbar -com.bumptech.glide.R$id -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: int getChartBottom() -android.didikee.donate.R$layout: int abc_action_menu_layout -com.xw.repo.bubbleseekbar.R$color: int material_grey_50 -wangdaye.com.geometricweather.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) -androidx.preference.R$styleable: int Toolbar_contentInsetRight -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_startAngle -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context) -wangdaye.com.geometricweather.R$dimen: int design_snackbar_background_corner_radius -wangdaye.com.geometricweather.R$id: int fill_vertical -com.turingtechnologies.materialscrollbar.R$layout: int abc_activity_chooser_view -wangdaye.com.geometricweather.R$styleable: int[] MotionTelltales -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$layout: int select_dialog_item_material -cyanogenmod.hardware.CMHardwareManager: java.lang.String getSerialNumber() -cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.os.Bundle mOptions -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: ObservableThrottleLatest$ThrottleLatestObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker,boolean) -androidx.constraintlayout.widget.R$id: int search_badge -android.didikee.donate.R$styleable: int SwitchCompat_switchTextAppearance -wangdaye.com.geometricweather.R$styleable: int[] BottomAppBar -com.jaredrummler.android.colorpicker.R$drawable -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String messageLong -wangdaye.com.geometricweather.R$drawable: int ic_alert -androidx.recyclerview.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextView -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language POLISH -androidx.constraintlayout.motion.widget.MotionLayout: androidx.constraintlayout.motion.widget.DesignTool getDesignTool() -androidx.appcompat.widget.Toolbar: void setTitleMarginEnd(int) -androidx.preference.R$styleable: int TextAppearance_android_textStyle -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerComplete() -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_position -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderCerts -android.didikee.donate.R$attr: int tickMarkTint -wangdaye.com.geometricweather.R$layout: int dialog_minimal_icon -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ProgressBar -com.google.android.material.R$style: int Base_Theme_AppCompat_DialogWhenLarge -androidx.coordinatorlayout.R$attr: int layout_anchor -cyanogenmod.weather.CMWeatherManager: java.util.Map access$300(cyanogenmod.weather.CMWeatherManager) -android.didikee.donate.R$attr: int dividerPadding -androidx.constraintlayout.widget.R$styleable: int[] ActivityChooserView -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setDraggableFromAnywhere(boolean) -wangdaye.com.geometricweather.R$attr: int textAppearanceLineHeightEnabled -retrofit2.KotlinExtensions$awaitResponse$2$2: KotlinExtensions$awaitResponse$2$2(kotlinx.coroutines.CancellableContinuation) -com.google.gson.stream.JsonReader: int[] pathIndices -io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.functions.Function) -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_DATAUSAGE -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: MfForecastV2Result$ForecastProperties() -com.google.android.material.R$attr: int layout_scrollInterpolator -com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: void setInternalAutoHideListener(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) -okio.Buffer$2: int read(byte[],int,int) -com.google.android.material.R$styleable: int FloatingActionButton_backgroundTint -james.adaptiveicon.R$attr: int submitBackground -androidx.core.R$styleable: int GradientColor_android_startY -okio.RealBufferedSource: int read(byte[],int,int) -androidx.appcompat.R$styleable: int[] TextAppearance -cyanogenmod.app.IProfileManager$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_enqueueLiveLockScreen -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit -io.reactivex.internal.observers.BlockingObserver: void onNext(java.lang.Object) -android.didikee.donate.R$color: int accent_material_dark -cyanogenmod.externalviews.ExternalViewProviderService$1: ExternalViewProviderService$1(cyanogenmod.externalviews.ExternalViewProviderService) -wangdaye.com.geometricweather.R$attr: int bottomNavigationStyle -androidx.viewpager2.R$dimen: int compat_button_padding_horizontal_material -com.turingtechnologies.materialscrollbar.R$attr: int cardUseCompatPadding -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_keyline -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_edittext -androidx.preference.R$drawable: int notification_action_background -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_DarkActionBar -com.google.android.material.R$style: int Widget_MaterialComponents_TextView -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Colored -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean checkTerminate() -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderAuthority -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void cancel() -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String name -james.adaptiveicon.R$styleable: int[] ViewStubCompat -james.adaptiveicon.R$dimen: int abc_text_size_menu_header_material -james.adaptiveicon.R$styleable: int CompoundButton_android_button -wangdaye.com.geometricweather.R$dimen: int notification_small_icon_background_padding -com.jaredrummler.android.colorpicker.R$attr: int voiceIcon -androidx.recyclerview.R$attr -com.jaredrummler.android.colorpicker.R$attr: int statusBarBackground -cyanogenmod.app.CustomTile -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.Float getSpeed() -james.adaptiveicon.R$style: int Platform_AppCompat -com.google.android.material.R$id: int accessibility_custom_action_11 -androidx.viewpager.R$attr: int fontProviderQuery -androidx.preference.R$attr: int tickMarkTintMode -wangdaye.com.geometricweather.R$styleable: int[] OnSwipe -androidx.fragment.R$id: int tag_accessibility_clickable_spans -cyanogenmod.app.suggest.ApplicationSuggestion$1: ApplicationSuggestion$1() -com.google.android.material.R$styleable: int Chip_checkedIconEnabled -james.adaptiveicon.R$color: int dim_foreground_material_dark -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_longpressed_holo -com.jaredrummler.android.colorpicker.R$dimen: int notification_big_circle_margin -james.adaptiveicon.R$style: int Platform_V21_AppCompat_Light -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid -androidx.preference.R$drawable: int abc_list_selector_holo_light -com.jaredrummler.android.colorpicker.R$id: int right_side -android.didikee.donate.R$id: int info -okhttp3.Response: okhttp3.Protocol protocol() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property CityId -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: java.lang.String Unit -androidx.fragment.R$string: int status_bar_notification_info_overflow -okio.RealBufferedSink: void close() -wangdaye.com.geometricweather.R$styleable: int[] InkPageIndicator -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.preference.R$style: int Widget_AppCompat_ButtonBar -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSnowPrecipitationProbability(java.lang.Float) -androidx.legacy.coreutils.R$integer: int status_bar_notification_info_maxnum -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabView -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_22 -wangdaye.com.geometricweather.R$styleable: int FlowLayout_itemSpacing -com.bumptech.glide.R$color: R$color() -com.google.android.material.R$attr: int tabTextAppearance -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabText -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean isDisposed() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void drainLoop() -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeFindDrawable -wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_title -androidx.constraintlayout.widget.R$attr: int transitionFlags -androidx.appcompat.R$styleable: int FontFamilyFont_android_font -android.didikee.donate.R$styleable: int MenuItem_android_orderInCategory -com.xw.repo.bubbleseekbar.R$layout: int abc_action_menu_item_layout -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterTextAppearance -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator APP_SWITCH_WAKE_SCREEN_VALIDATOR -androidx.appcompat.R$attr: int lastBaselineToBottomHeight -androidx.lifecycle.ClassesInfoCache$MethodReference: void invokeCallback(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) -androidx.appcompat.widget.AppCompatImageButton: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) -com.google.gson.LongSerializationPolicy$1: LongSerializationPolicy$1(java.lang.String,int) -androidx.preference.R$styleable: int AppCompatTheme_actionBarTabTextStyle -com.google.android.material.R$style: int Widget_AppCompat_ActionButton -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light -androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.R$styleable: int NavigationView_elevation -wangdaye.com.geometricweather.R$attr: int msb_textColor -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat -androidx.appcompat.R$styleable: int TextAppearance_fontFamily -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int no2 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_thumb_material -james.adaptiveicon.R$styleable: int AppCompatTextView_textAllCaps -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setNo2(java.lang.Float) -james.adaptiveicon.R$layout: int abc_list_menu_item_layout -com.google.android.material.R$styleable: int OnSwipe_dragScale -wangdaye.com.geometricweather.R$anim: int mtrl_bottom_sheet_slide_out -okhttp3.internal.http2.Http2: java.lang.String[] FLAGS -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onComplete() -wangdaye.com.geometricweather.R$id: int activity_allergen_container -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline3 -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -android.didikee.donate.R$color: int abc_background_cache_hint_selector_material_light -com.google.android.material.R$attr: int progressIndicatorStyle -androidx.swiperefreshlayout.R$styleable: int[] FontFamilyFont -androidx.appcompat.widget.ActionMenuPresenter$ActionButtonSubmenu -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_summaryOff -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: void setUnit(java.lang.String) -com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode valueOf(java.lang.String) -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.internal.operators.observable.ObservableCache$Node node -io.reactivex.Observable: io.reactivex.Observable concatEager(io.reactivex.ObservableSource,int,int) -androidx.viewpager2.R$attr -cyanogenmod.app.LiveLockScreenManager: java.lang.String SERVICE_INTERFACE +androidx.fragment.R$id: int accessibility_action_clickable_span +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1 +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onComplete() +okio.Buffer: boolean request(long) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_disabled_z +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_padding +cyanogenmod.app.BaseLiveLockManagerService$1: cyanogenmod.app.BaseLiveLockManagerService this$0 +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type[] getLowerBounds() +androidx.appcompat.resources.R$dimen: int notification_large_icon_height +androidx.hilt.R$id: int info +wangdaye.com.geometricweather.R$styleable: int Transform_android_translationY +androidx.preference.R$style: int Widget_AppCompat_ActionButton_CloseMode +com.google.android.material.R$style: int ThemeOverlay_AppCompat_DayNight +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_queryBackground +com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context) +androidx.preference.R$styleable: int FontFamily_fontProviderQuery +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_5 +wangdaye.com.geometricweather.R$color: int weather_source_cn +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: int getStatus() +androidx.appcompat.widget.Toolbar: int getTitleMarginBottom() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +androidx.preference.R$style: int Preference_Category +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum +com.google.android.material.R$styleable: int AppBarLayout_android_keyboardNavigationCluster +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$id: int spread_inside +androidx.preference.R$color: int abc_background_cache_hint_selector_material_dark +wangdaye.com.geometricweather.R$attr: int colorControlNormal +androidx.preference.R$attr: int preferenceFragmentCompatStyle +okhttp3.internal.connection.RouteSelector: void connectFailed(okhttp3.Route,java.io.IOException) +com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int KeyPosition_sizePercent +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_year_abbr +androidx.appcompat.widget.ListPopupWindow: void setOnItemSelectedListener(android.widget.AdapterView$OnItemSelectedListener) +wangdaye.com.geometricweather.R$integer: int mtrl_badge_max_character_count +com.google.android.material.R$layout: int mtrl_alert_dialog_title +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableRightCompat +androidx.hilt.lifecycle.R$attr: int fontProviderQuery +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_popupTheme +com.xw.repo.bubbleseekbar.R$style +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_stroke_width_default +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long count +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_contentScrim +androidx.preference.R$styleable: int ViewBackgroundHelper_backgroundTintMode +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constrainedWidth +io.reactivex.Observable: io.reactivex.Observable delaySubscription(io.reactivex.ObservableSource) +com.xw.repo.bubbleseekbar.R$attr: int buttonBarButtonStyle +android.didikee.donate.R$id: int radio +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_container +com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_android_color +androidx.lifecycle.ViewModelProvider: java.lang.String DEFAULT_KEY +james.adaptiveicon.R$styleable: int ViewStubCompat_android_inflatedId +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.appcompat.R$styleable: int SwitchCompat_switchPadding +androidx.viewpager2.R$style: int Widget_Compat_NotificationActionText cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_set -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderPackage -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder writeTimeout(long,java.util.concurrent.TimeUnit) -cyanogenmod.app.CustomTileListenerService: void onCustomTilePosted(cyanogenmod.app.StatusBarPanelCustomTile) -com.google.android.material.R$styleable: int Layout_layout_goneMarginStart -androidx.preference.R$attr: int srcCompat -retrofit2.Utils$GenericArrayTypeImpl -cyanogenmod.power.PerformanceManager: PerformanceManager(android.content.Context) -androidx.lifecycle.ProcessLifecycleOwnerInitializer: java.lang.String getType(android.net.Uri) -okhttp3.internal.ws.RealWebSocket: boolean $assertionsDisabled -wangdaye.com.geometricweather.R$attr: int helperText -retrofit2.RequestBuilder: RequestBuilder(java.lang.String,okhttp3.HttpUrl,java.lang.String,okhttp3.Headers,okhttp3.MediaType,boolean,boolean,boolean) -com.google.android.material.R$attr: int listPreferredItemHeightLarge -androidx.loader.R$styleable: int FontFamilyFont_fontWeight -androidx.swiperefreshlayout.R$id: int forever -wangdaye.com.geometricweather.R$styleable: int Transition_transitionFlags -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetStartWithNavigation -android.didikee.donate.R$styleable: int[] AppCompatTextHelper -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeBackground -wangdaye.com.geometricweather.R$integer: int cpv_default_anim_sync_duration -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDate(java.util.Date) -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView -com.google.android.material.slider.BaseSlider: void setThumbRadiusResource(int) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_NoActionBar -com.turingtechnologies.materialscrollbar.R$attr: int behavior_autoHide -androidx.core.R$dimen: R$dimen() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CheckedTextView -retrofit2.OkHttpCall: okhttp3.Call$Factory callFactory -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_rtl -okhttp3.internal.Util: okio.ByteString UTF_16_BE_BOM -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int SILENT_STATE -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum -android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -com.turingtechnologies.materialscrollbar.Indicator -wangdaye.com.geometricweather.R$drawable: int mtrl_popupmenu_background -com.google.android.material.R$id: int expand_activities_button -cyanogenmod.profiles.RingModeSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Button -cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getProfile(android.os.ParcelUuid) -androidx.preference.R$styleable: int Spinner_android_entries -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_9 -androidx.appcompat.R$styleable: int SearchView_iconifiedByDefault -androidx.lifecycle.ClassesInfoCache$CallbackInfo: java.util.Map mHandlerToEvent -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int HAS_REQUEST_NO_VALUE -com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Indeterminate -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.util.List toCardDisplayList(java.lang.String) -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType[] values() -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.R$attr: int trackColor -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.R$color: int mtrl_btn_stroke_color_selector -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_1 -androidx.fragment.R$styleable: int GradientColor_android_centerY -com.google.android.material.tabs.TabItem: TabItem(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$attr: int selectableItemBackground -androidx.cardview.R$style: int CardView_Light -okhttp3.HttpUrl: java.lang.String encodedPath() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours Past24Hours -wangdaye.com.geometricweather.R$attr: int enableCopying -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: cyanogenmod.externalviews.IExternalViewProviderFactory asInterface(android.os.IBinder) -androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy valueOf(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_attributeName -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.Function rightEnd -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: ExternalViewProviderService$Provider$ProviderImpl$1(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTextPadding -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_orderInCategory -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf -androidx.preference.R$styleable: int[] DrawerArrowToggle -androidx.preference.R$style: int Widget_AppCompat_CompoundButton_Switch -com.bumptech.glide.integration.okhttp.R$id: int action_container -androidx.lifecycle.ReportFragment: void dispatch(android.app.Activity,androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowRadius -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.lang.String pubTime -james.adaptiveicon.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.R$drawable: int ic_play_store -wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_small_material -androidx.activity.R$id: int tag_accessibility_clickable_spans -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomSheetDialog -okhttp3.internal.cache.FaultHidingSink -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_track_color -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean isDisposed() -androidx.preference.R$attr: int actionBarStyle -com.jaredrummler.android.colorpicker.R$color: int background_material_light -com.google.android.material.R$id: int none -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getContent() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout -cyanogenmod.app.ProfileGroup: void readFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_minHeight -androidx.constraintlayout.widget.R$attr: int nestedScrollFlags -com.google.android.material.R$id: int accessibility_custom_action_9 -retrofit2.BuiltInConverters$UnitResponseBodyConverter: BuiltInConverters$UnitResponseBodyConverter() -io.reactivex.exceptions.CompositeException: java.lang.String message -android.didikee.donate.R$layout: int abc_activity_chooser_view -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: void run() -com.google.android.material.R$dimen: int disabled_alpha_material_light -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogCenterButtons -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.Long id -com.google.android.material.R$styleable: int Slider_labelBehavior -wangdaye.com.geometricweather.R$layout: int preference_material -com.github.rahatarmanahmed.cpv.CircularProgressView$2: CircularProgressView$2(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -cyanogenmod.platform.Manifest$permission -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isSubActive -okhttp3.internal.connection.RealConnection -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String zh_TW -wangdaye.com.geometricweather.R$drawable: int notif_temp_126 -wangdaye.com.geometricweather.R$style: int material_button -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_checked -androidx.activity.R$id: int time -com.google.android.material.R$id: int tag_accessibility_actions -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingTop -wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity: WeekWidgetConfigActivity() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitation -androidx.preference.PreferenceFragmentCompat: PreferenceFragmentCompat() -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean isCancelled() -androidx.preference.R$attr: int navigationContentDescription -androidx.preference.R$styleable: int AppCompatTheme_actionBarSplitStyle -okhttp3.internal.connection.StreamAllocation -androidx.loader.R$styleable: int[] GradientColor -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) -com.google.android.material.textfield.TextInputLayout: int getBoxStrokeColor() -okhttp3.OkHttpClient$1: boolean equalsNonHost(okhttp3.Address,okhttp3.Address) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day -wangdaye.com.geometricweather.R$styleable: int ActionBar_navigationMode -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstHorizontalBias -wangdaye.com.geometricweather.R$string: int feedback_subtitle_data -cyanogenmod.app.suggest.ApplicationSuggestion$1: java.lang.Object[] newArray(int) -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_EditText -androidx.appcompat.R$id: int shortcut -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTextView -wangdaye.com.geometricweather.R$dimen: int abc_text_size_small_material -androidx.drawerlayout.R$layout: int notification_template_part_chronometer -com.xw.repo.bubbleseekbar.R$style: int AlertDialog_AppCompat_Light -io.reactivex.internal.util.VolatileSizeArrayList: boolean add(java.lang.Object) -androidx.swiperefreshlayout.R$id: int blocking -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: long date -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dark -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorPrimaryDark -com.jaredrummler.android.colorpicker.R$attr: int dependency -androidx.constraintlayout.widget.R$color: int abc_secondary_text_material_light -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onSucceed(java.lang.Object) -com.google.android.material.R$id: R$id() -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setRingtone(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetRight -okhttp3.Response$Builder -androidx.lifecycle.Lifecycling: androidx.lifecycle.LifecycleEventObserver lifecycleEventObserver(java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionMode -android.didikee.donate.R$styleable: int[] AppCompatTextView -androidx.constraintlayout.widget.R$attr: int motionTarget -okhttp3.FormBody: okhttp3.MediaType contentType() -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$202(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -cyanogenmod.themes.ThemeManager$1$2 -com.jaredrummler.android.colorpicker.R$styleable: int[] ViewBackgroundHelper -wangdaye.com.geometricweather.R$color: int dim_foreground_material_dark -com.google.android.material.R$styleable: int Chip_showMotionSpec -com.google.android.material.R$dimen: int mtrl_extended_fab_icon_size -androidx.customview.R$color: int ripple_material_light -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: void complete() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.ObservableSource bufferOpen -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float snowPrecipitationProbability -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.disposables.Disposable upstream -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogTheme -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setHumidity(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean) -com.google.android.material.R$drawable: int ic_mtrl_chip_checked_black -wangdaye.com.geometricweather.R$style: int Theme_Design_NoActionBar -okhttp3.logging.LoggingEventListener: void connectStart(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeStyle -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Medium -androidx.lifecycle.ViewModelProvider$Factory -androidx.vectordrawable.R$id: int accessibility_custom_action_16 -com.xw.repo.bubbleseekbar.R$drawable: int abc_item_background_holo_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_83 -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_toRightOf -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction LastAction -wangdaye.com.geometricweather.R$style: int widget_background_card -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_al -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getDate() -com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService pushExecutor -com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Theme_AppCompat -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -com.google.android.material.R$layout: int support_simple_spinner_dropdown_item -androidx.transition.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean() -androidx.lifecycle.ComputableLiveData$1: androidx.lifecycle.ComputableLiveData this$0 -wangdaye.com.geometricweather.R$styleable: int Constraint_android_scaleY -wangdaye.com.geometricweather.R$string: int week_1 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getDetail() -androidx.legacy.coreutils.R$id: int normal -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTime(long) -android.didikee.donate.R$styleable: int DrawerArrowToggle_thickness -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_OBJECT -retrofit2.SkipCallbackExecutorImpl: boolean equals(java.lang.Object) -com.google.android.material.R$id: int jumpToStart -androidx.fragment.app.FragmentTabHost$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstHorizontalStyle -cyanogenmod.externalviews.ExternalView$7: void run() -androidx.preference.R$dimen: int hint_alpha_material_light -com.google.android.material.R$string: int item_view_role_description -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_arrowSize -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: java.lang.String Name -wangdaye.com.geometricweather.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Light -androidx.preference.R$styleable: int ActionBar_icon -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_Solid -com.google.android.material.R$animator: int linear_indeterminate_line2_tail_interpolator -cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.IAppSuggestManager getService() -cyanogenmod.weather.CMWeatherManager$2: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_subtitle_material_toolbar -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_anchor -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onComplete() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitationDuration -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: int mMin -com.jaredrummler.android.colorpicker.R$attr: int actionModeSelectAllDrawable -wangdaye.com.geometricweather.R$attr: int entries -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_ListPopupWindow -androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerX -androidx.savedstate.SavedStateRegistry$1 -androidx.lifecycle.extensions.R$id: int tag_accessibility_actions -wangdaye.com.geometricweather.R$styleable: int[] ColorPanelView -com.google.android.material.R$attr: int chipGroupStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_wrapMode -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -com.google.android.material.R$attr: int colorAccent -androidx.drawerlayout.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setType(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int msb_barColor -com.turingtechnologies.materialscrollbar.R$id: int action_bar_root -cyanogenmod.weatherservice.ServiceRequestResult$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableItem_android_drawable -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_colorShape -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -okhttp3.RequestBody$2: void writeTo(okio.BufferedSink) -okhttp3.Challenge: Challenge(java.lang.String,java.util.Map) -com.turingtechnologies.materialscrollbar.R$attr: int tabBackground -wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_dark -androidx.vectordrawable.R$id: int accessibility_custom_action_6 -androidx.preference.R$id: int action_context_bar -android.didikee.donate.R$string: int abc_activitychooserview_choose_application -android.didikee.donate.R$styleable: int AppCompatTheme_windowMinWidthMajor -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation: java.lang.Float cumul24H -com.jaredrummler.android.colorpicker.R$attr: int selectableItemBackgroundBorderless -wangdaye.com.geometricweather.R$layout: int activity_preview_icon -androidx.appcompat.R$drawable: int abc_list_selector_holo_light -okio.AsyncTimeout: long IDLE_TIMEOUT_MILLIS -wangdaye.com.geometricweather.R$attr: int actionModeSelectAllDrawable -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupWindow -androidx.appcompat.R$dimen: int abc_text_size_menu_material -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: ObservableTakeUntil$TakeUntilMainObserver(io.reactivex.Observer) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: void setValue(java.lang.String) -androidx.constraintlayout.widget.R$attr: int actionBarTabBarStyle -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.fuseable.SimpleQueue queue -androidx.vectordrawable.R$id: int accessibility_custom_action_18 -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_DarkActionBar -cyanogenmod.weather.WeatherInfo: double getTodaysLow() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: java.lang.String Localized -okhttp3.internal.http2.Http2Codec: java.lang.String ENCODING -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: IWeatherServiceProviderChangeListener$Stub() -com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context,android.util.AttributeSet) -androidx.core.R$dimen: int notification_small_icon_background_padding -androidx.constraintlayout.widget.R$styleable: int MotionLayout_applyMotionScene -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric Metric -com.bumptech.glide.load.engine.GlideException: void setOrigin(java.lang.Exception) -com.google.android.material.circularreveal.CircularRevealFrameLayout -androidx.constraintlayout.widget.R$style: int AlertDialog_AppCompat -com.google.android.material.R$drawable: int notification_bg_normal_pressed -androidx.vectordrawable.R$attr: int fontProviderQuery -androidx.appcompat.R$style: int Widget_AppCompat_Spinner_DropDown -retrofit2.adapter.rxjava2.CallExecuteObservable -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -androidx.constraintlayout.widget.R$attr: int contrast -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onSuccess(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorAnimationDuration -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation TOP -wangdaye.com.geometricweather.R$drawable: int flag_hu -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setIcePrecipitation(java.lang.Float) -androidx.viewpager2.R$styleable: int RecyclerView_spanCount -com.google.android.material.chip.Chip: void setCloseIconVisible(boolean) -androidx.appcompat.widget.AbsActionBarView: AbsActionBarView(android.content.Context,android.util.AttributeSet) -androidx.appcompat.widget.Toolbar: android.view.Menu getMenu() -okhttp3.RequestBody: okhttp3.MediaType contentType() -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderPackage -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -com.google.android.material.tabs.TabLayout: void setUnboundedRipple(boolean) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_title -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: int minuteInterval -androidx.preference.R$drawable: int abc_ic_search_api_material -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_tileMode -com.xw.repo.bubbleseekbar.R$color: int abc_color_highlight_material -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float thunderstormPrecipitationProbability -james.adaptiveicon.R$layout: int abc_screen_content_include -okio.RealBufferedSource: RealBufferedSource(okio.Source) -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_NoActionBar -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWindLevel() -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: java.lang.Object invoke(java.lang.Object) -wangdaye.com.geometricweather.R$string: int retrofit -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: int getRootAlpha() -androidx.appcompat.R$attr: int drawableBottomCompat -androidx.constraintlayout.widget.R$styleable: int MenuView_android_windowAnimationStyle -android.didikee.donate.R$attr: int arrowHeadLength -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_strokeColor -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textStyle -androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getSunSet() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_default -androidx.preference.R$attr: int goIcon -okhttp3.internal.http2.Hpack$Reader: void readHeaders() -wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_title -io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit) -com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: FloatingActionButton$BaseBehavior() -androidx.fragment.R$style: int TextAppearance_Compat_Notification_Time -com.google.android.material.bottomnavigation.BottomNavigationPresenter$SavedState: android.os.Parcelable$Creator CREATOR -james.adaptiveicon.R$color: int accent_material_dark -wangdaye.com.geometricweather.R$id: int widget_day_time -cyanogenmod.weather.CMWeatherManager$RequestStatus: int FAILED -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.util.concurrent.TimeUnit unit -wangdaye.com.geometricweather.R$styleable: int ChipGroup_selectionRequired -com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat_Light -okhttp3.OkHttpClient$Builder: boolean followSslRedirects -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWindDirection -okhttp3.OkHttpClient: int callTimeout -androidx.lifecycle.ReportFragment: void onStart() -androidx.constraintlayout.widget.R$drawable: int notification_icon_background -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: BasicIntQueueSubscription() -com.google.android.material.R$styleable: int[] RecycleListView -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTheme -cyanogenmod.weatherservice.ServiceRequestResult$1 -wangdaye.com.geometricweather.R$id: int activity_preview_icon_toolbar -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar -com.google.android.material.R$layout: int mtrl_calendar_month -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String ENABLED -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getBrandId() -com.turingtechnologies.materialscrollbar.TouchScrollBar: float getHideRatio() -androidx.constraintlayout.widget.R$string: int abc_menu_enter_shortcut_label -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.util.AtomicThrowable errors -com.google.android.material.R$styleable: int TabItem_android_icon -wangdaye.com.geometricweather.R$dimen: int notification_action_icon_size -com.google.android.material.R$styleable: int TabLayout_tabMode -okio.Buffer: int REPLACEMENT_CHARACTER -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackground(android.graphics.drawable.Drawable) -androidx.appcompat.R$string: int abc_activity_chooser_view_see_all -androidx.swiperefreshlayout.R$id: int accessibility_action_clickable_span -androidx.appcompat.R$style: int Widget_AppCompat_Light_ListView_DropDown -androidx.customview.R$styleable: int ColorStateListItem_alpha -okhttp3.internal.http2.Http2 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setImages(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean) -com.turingtechnologies.materialscrollbar.R$color: int mtrl_bottom_nav_colored_item_tint -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_textLocale -com.turingtechnologies.materialscrollbar.R$id: int group_divider -com.jaredrummler.android.colorpicker.R$attr: int popupMenuStyle -com.google.android.material.R$dimen: int mtrl_snackbar_action_text_color_alpha -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1 -cyanogenmod.app.Profile$DozeMode -okhttp3.internal.cache.DiskLruCache: boolean initialized -androidx.appcompat.R$color: int abc_tint_spinner -okhttp3.logging.HttpLoggingInterceptor$Logger$1: void log(java.lang.String) -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,long) -com.turingtechnologies.materialscrollbar.R$attr: int navigationIcon -androidx.hilt.lifecycle.R$id: int normal -com.xw.repo.bubbleseekbar.R$attr: int seekBarStyle -androidx.appcompat.R$color: int primary_text_default_material_light -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int o3 -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType GIF -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setCityId(java.lang.String) -androidx.appcompat.widget.ActionBarOverlayLayout: void setUiOptions(int) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.WeatherEntity,int) -androidx.drawerlayout.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu -com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Light -androidx.preference.R$string: int copy -androidx.constraintlayout.widget.R$styleable: int Transition_autoTransition -com.turingtechnologies.materialscrollbar.R$attr: int cardPreventCornerOverlap -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_minWidth -james.adaptiveicon.R$id: int progress_circular -androidx.recyclerview.R$layout: int notification_action -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Body1 -wangdaye.com.geometricweather.R$styleable: int Toolbar_navigationContentDescription -wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_width_material -com.jaredrummler.android.colorpicker.R$attr: int backgroundTint -wangdaye.com.geometricweather.R$id: int notification_base_realtimeTemp -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: int maxColor -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_creator -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -okhttp3.internal.http2.Http2Connection: java.util.Set currentPushRequests -wangdaye.com.geometricweather.R$string: int key_item_animation_switch -com.google.android.material.R$attr: int layout_collapseParallaxMultiplier -wangdaye.com.geometricweather.R$dimen: int design_navigation_max_width -com.jaredrummler.android.colorpicker.R$id: int recycler_view -com.google.android.material.R$style: int TextAppearance_Design_Tab -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: ObservableTimeoutTimed$TimeoutObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker) -retrofit2.Response: java.lang.Object body() -com.google.android.material.textfield.TextInputLayout: void setErrorTextColor(android.content.res.ColorStateList) -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noCache() -androidx.preference.R$styleable: int AppCompatTheme_windowMinWidthMajor -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelMenuListTheme -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf -wangdaye.com.geometricweather.R$styleable: int MenuItem_iconTint -com.google.android.material.R$styleable: int KeyTrigger_triggerId -androidx.appcompat.R$styleable: int AnimatedStateListDrawableItem_android_drawable -wangdaye.com.geometricweather.R$string: int content_des_no2 -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type rawType -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer RIGHT_VALUE -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: java.util.concurrent.atomic.AtomicReference queue -androidx.preference.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: double Value -com.google.android.material.R$id: int baseline -com.google.android.material.R$dimen: int mtrl_calendar_navigation_top_padding -com.google.gson.stream.JsonReader: int doPeek() -okhttp3.OkHttpClient: okhttp3.CertificatePinner certificatePinner -cyanogenmod.themes.ThemeChangeRequest$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$drawable: int notif_temp_128 +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: int index +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircle +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Time +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int UNKNOWN +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object getKey(java.lang.Object) +androidx.swiperefreshlayout.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_container +androidx.viewpager.widget.PagerTabStrip: int getMinHeight() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +androidx.appcompat.widget.Toolbar: void setNavigationContentDescription(int) +androidx.vectordrawable.R$styleable: int FontFamilyFont_android_font +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: boolean requestDismiss() +okhttp3.WebSocket$Factory +com.jaredrummler.android.colorpicker.R$color: int material_deep_teal_200 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_63 +com.google.android.material.R$color: int abc_search_url_text_normal +com.turingtechnologies.materialscrollbar.R$attr: int pressedTranslationZ +retrofit2.Converter$Factory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogTheme +com.xw.repo.bubbleseekbar.R$attr +io.reactivex.Observable: io.reactivex.Observable generate(io.reactivex.functions.Consumer) +com.google.android.material.slider.Slider: int getActiveThumbIndex() +io.reactivex.internal.observers.InnerQueuedObserver: void onComplete() +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +wangdaye.com.geometricweather.R$layout: int test_reflow_chipgroup +com.bumptech.glide.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$attr: int showDividers +wangdaye.com.geometricweather.R$string: int feedback_click_toggle +okhttp3.internal.connection.RealConnection$1 +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$attr: int itemShapeFillColor +okhttp3.ResponseBody: okhttp3.MediaType contentType() +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float icePrecipitation +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: AccuCurrentResult$RealFeelTemperatureShade$Metric() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast +androidx.constraintlayout.widget.R$styleable: int PropertySet_motionProgress +okhttp3.internal.http.StatusLine: java.lang.String message +io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.functions.Function,io.reactivex.ObservableSource) +okhttp3.internal.http2.Huffman: byte[] CODE_LENGTHS +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.turingtechnologies.materialscrollbar.R$attr: int textEndPadding +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginTop +androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_alpha +androidx.appcompat.R$styleable: int ColorStateListItem_alpha +androidx.core.R$color: R$color() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarWidgetTheme +androidx.appcompat.R$style: int Widget_AppCompat_ActionButton_CloseMode +wangdaye.com.geometricweather.common.basic.models.weather.History: java.util.Date date +com.google.android.material.R$styleable: int TabLayout_tabIndicatorHeight +com.google.android.material.R$id: int material_textinput_timepicker +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit C +com.google.android.material.R$styleable: int Layout_layout_constraintVertical_chainStyle +androidx.preference.R$styleable: int AppCompatTheme_windowActionBarOverlay +com.bumptech.glide.integration.okhttp.R$styleable: int[] GradientColor +com.google.android.material.R$attr: int autoSizeTextType +cyanogenmod.themes.ThemeManager: java.lang.String TAG +wangdaye.com.geometricweather.R$attr: int shapeAppearanceLargeComponent +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_android_textAppearance +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_4 +com.bumptech.glide.integration.okhttp.R$id: int right_icon +com.google.android.material.navigation.NavigationView +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_FloatingActionButton +wangdaye.com.geometricweather.R$color: int abc_search_url_text_pressed +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +android.didikee.donate.R$bool: int abc_action_bar_embed_tabs +com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_background_color +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_months +androidx.customview.R$styleable: int GradientColor_android_centerColor +androidx.appcompat.R$styleable: int Toolbar_popupTheme +androidx.appcompat.R$attr: int windowFixedWidthMajor +retrofit2.converter.gson.GsonRequestBodyConverter: java.lang.Object convert(java.lang.Object) +cyanogenmod.weather.WeatherInfo: WeatherInfo(cyanogenmod.weather.WeatherInfo$1) +wangdaye.com.geometricweather.R$attr: int preserveIconSpacing +james.adaptiveicon.R$styleable: int AppCompatTheme_actionMenuTextColor +cyanogenmod.content.Intent: java.lang.String ACTION_RECENTS_LONG_PRESS +androidx.savedstate.Recreator +androidx.preference.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer iso0 +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode nighttimeWeatherCode +com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimAnimationDuration(long) +androidx.constraintlayout.widget.R$styleable: int ActionBar_navigationMode +io.reactivex.Observable: io.reactivex.Observable concat(java.lang.Iterable) +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.R$attr: int useCompatPadding +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +com.xw.repo.bubbleseekbar.R$attr: int colorButtonNormal +androidx.constraintlayout.widget.Guideline +androidx.constraintlayout.widget.R$styleable: int Toolbar_android_minHeight +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$attr: int windowActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int[] RecycleListView +android.didikee.donate.R$styleable: int Toolbar_collapseIcon +wangdaye.com.geometricweather.R$array: int notification_text_color_values +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_spinBars +androidx.preference.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationZ +io.reactivex.internal.observers.BasicIntQueueDisposable: boolean isDisposed() +com.google.android.material.R$attr: int actionModeCloseDrawable +okio.Okio: java.util.logging.Logger logger +androidx.coordinatorlayout.R$dimen: int notification_right_side_padding_top +androidx.vectordrawable.R$drawable: int notification_template_icon_bg +androidx.vectordrawable.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.R$dimen: int design_navigation_max_width +androidx.viewpager.widget.PagerTabStrip: void setBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.constraintlayout.widget.R$styleable: int[] MockView +com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_CheckBox +android.didikee.donate.R$dimen: int abc_text_size_caption_material +androidx.appcompat.resources.R$drawable: int notification_bg_normal_pressed +com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_disable_only_material_dark +androidx.preference.DropDownPreference +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Light +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickActiveTintList() +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickInactiveTintList() +android.didikee.donate.R$style: int Widget_AppCompat_ActionMode +cyanogenmod.themes.ThemeManager$2: cyanogenmod.themes.ThemeManager this$0 +androidx.appcompat.R$string: int abc_toolbar_collapse_description +androidx.recyclerview.R$dimen: int item_touch_helper_swipe_escape_max_velocity +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getRain() +com.google.android.material.R$color: int bright_foreground_disabled_material_dark +wangdaye.com.geometricweather.R$id: int clip_vertical +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2 +com.google.android.material.R$color: int design_default_color_primary_dark +com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Solid +androidx.preference.R$style: int Base_TextAppearance_AppCompat +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerComplete(int,boolean) +retrofit2.CallAdapter$Factory: java.lang.Class getRawType(java.lang.reflect.Type) retrofit2.package-info -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerY -android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_light -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 -cyanogenmod.weather.CMWeatherManager: java.lang.String TAG -okhttp3.internal.http2.Http2Writer: int maxDataLength() -androidx.recyclerview.R$styleable: int FontFamily_fontProviderPackage -com.google.android.material.slider.Slider: void setHaloRadius(int) -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchTextAppearance -com.google.android.material.R$color: int mtrl_outlined_stroke_color -wangdaye.com.geometricweather.R$styleable: int Transition_duration -org.greenrobot.greendao.AbstractDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -com.google.android.material.R$attr: int backgroundInsetBottom -androidx.appcompat.R$style: int Base_Animation_AppCompat_Dialog -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer ragweedIndex -io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: java.lang.String Name -okhttp3.Cache$1: void update(okhttp3.Response,okhttp3.Response) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getCo() -androidx.constraintlayout.widget.R$styleable: int[] ActionBar -androidx.hilt.work.R$styleable: int FontFamily_fontProviderPackage -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection build() -com.bumptech.glide.load.HttpException: HttpException(java.lang.String,int) -wangdaye.com.geometricweather.R$drawable: int ic_water_percent -androidx.appcompat.R$styleable: int ActionMode_titleTextStyle -androidx.legacy.coreutils.R$id: int tag_unhandled_key_event_manager -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_enterFadeDuration -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setValue(java.util.List) -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_day_of_week -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter open(int,java.lang.String) -okhttp3.internal.http2.Hpack: int PREFIX_5_BITS -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -com.google.android.material.R$style: int Base_Widget_AppCompat_ListView -wangdaye.com.geometricweather.R$styleable: int KeyPosition_framePosition +androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean speed +com.xw.repo.bubbleseekbar.R$attr: int popupTheme +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Light +androidx.preference.R$styleable: int StateListDrawable_android_enterFadeDuration +okhttp3.OkHttpClient: java.util.List DEFAULT_PROTOCOLS +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_TextView +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String dept +io.reactivex.Observable: io.reactivex.Observable retry(long,io.reactivex.functions.Predicate) +cyanogenmod.weather.RequestInfo$Builder: boolean mIsQueryOnly +wangdaye.com.geometricweather.R$attr: int boxStrokeColor +okio.Okio$3: void close() +james.adaptiveicon.R$styleable: int Toolbar_popupTheme +wangdaye.com.geometricweather.R$attr: int queryHint +com.github.rahatarmanahmed.cpv.CircularProgressView: android.graphics.RectF bounds +wangdaye.com.geometricweather.R$id: int graph +cyanogenmod.media.MediaRecorder$AudioSource: MediaRecorder$AudioSource() +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMargin +com.turingtechnologies.materialscrollbar.R$attr: int layout_anchor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String sunSet +wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedLevel(java.lang.Integer) +androidx.appcompat.widget.Toolbar: androidx.appcompat.widget.DecorToolbar getWrapper() +retrofit2.adapter.rxjava2.RxJava2CallAdapter: io.reactivex.Scheduler scheduler +com.turingtechnologies.materialscrollbar.R$attr: int fabCradleVerticalOffset +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Title +okhttp3.Protocol: okhttp3.Protocol HTTP_2 +cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_LAUNCH +com.google.android.material.tabs.TabLayout: void setTabIconTintResource(int) +wangdaye.com.geometricweather.R$attr: int cardBackgroundColor +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalStyle +com.bumptech.glide.integration.okhttp3.OkHttpGlideModule: OkHttpGlideModule() +com.xw.repo.bubbleseekbar.R$drawable: int abc_spinner_mtrl_am_alpha +com.jaredrummler.android.colorpicker.R$attr: int autoCompleteTextViewStyle +com.google.android.material.R$styleable: int Motion_motionStagger +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginBottom +james.adaptiveicon.R$styleable: int AppCompatTheme_tooltipForegroundColor +okhttp3.Request: Request(okhttp3.Request$Builder) +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.appcompat.R$dimen: int abc_floating_window_z +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +wangdaye.com.geometricweather.location.services.LocationService: boolean hasPermissions(android.content.Context) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: BaiduIPLocationResult$ContentBean$AddressDetailBean() +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String getWeatherSource() +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_holo_dark +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object get(int) +androidx.appcompat.R$styleable: int AppCompatTextView_drawableStartCompat +org.greenrobot.greendao.AbstractDao: long insertInsideTx(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX getDirection() +androidx.constraintlayout.widget.R$color: int primary_text_disabled_material_light +wangdaye.com.geometricweather.R$attr: int tabIconTintMode +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endColor +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: android.os.IBinder asBinder() +androidx.preference.R$styleable: int LinearLayoutCompat_divider +cyanogenmod.weather.CMWeatherManager: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener) +androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_horizontal_material +androidx.vectordrawable.R$color: R$color() +androidx.constraintlayout.widget.R$drawable: int abc_ic_go_search_api_material +android.didikee.donate.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.R$string: int feedback_search_location +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_headerBackground +com.turingtechnologies.materialscrollbar.DragScrollBar: float getHideRatio() +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityStarted(android.app.Activity) +androidx.appcompat.R$string: int abc_action_bar_up_description +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_11 +com.google.gson.stream.JsonWriter: boolean isLenient() +com.jaredrummler.android.colorpicker.R$attr: int autoSizeMaxTextSize +com.xw.repo.bubbleseekbar.R$attr: int actionModeFindDrawable +com.google.android.material.R$id: int bounce +wangdaye.com.geometricweather.R$attr: int gapBetweenBars +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: long serialVersionUID +android.support.v4.app.INotificationSideChannel$Stub: INotificationSideChannel$Stub() +androidx.appcompat.widget.SearchView: void setSuggestionsAdapter(androidx.cursoradapter.widget.CursorAdapter) +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.Property getPkProperty() +com.jaredrummler.android.colorpicker.R$attr: int ttcIndex +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int prefetch +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircle +android.didikee.donate.R$styleable: int AppCompatTheme_panelMenuListTheme +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_sunText +wangdaye.com.geometricweather.common.basic.models.weather.Alert: void descByTime(java.util.List) +com.google.android.material.R$styleable: int LinearLayoutCompat_android_orientation +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean syncFused +wangdaye.com.geometricweather.R$styleable: int Constraint_constraint_referenced_ids +androidx.preference.R$dimen: int abc_button_inset_horizontal_material +androidx.appcompat.app.AlertController$RecycleListView: AlertController$RecycleListView(android.content.Context) +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.jaredrummler.android.colorpicker.R$styleable: int[] LinearLayoutCompat_Layout +wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionContainer +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +androidx.preference.R$dimen: int abc_text_size_menu_material +com.jaredrummler.android.colorpicker.R$id: int up +cyanogenmod.power.PerformanceManager: cyanogenmod.power.PerformanceManager getInstance(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderCerts +androidx.appcompat.widget.SearchView: void setAppSearchData(android.os.Bundle) +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadClose(int,java.lang.String) +com.google.android.material.R$style: int Widget_MaterialComponents_CardView +androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$style: int Widget_AppCompat_DrawerArrowToggle +io.reactivex.internal.observers.ForEachWhileObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean delayError +com.xw.repo.bubbleseekbar.R$attr: int panelBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: java.util.List value +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property District +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: java.lang.String Unit +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_BACK_BUTTON +wangdaye.com.geometricweather.R$id: int always +androidx.viewpager.R$styleable: int[] FontFamily +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,int) +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplaceInTxArray +com.xw.repo.bubbleseekbar.R$style: int Base_AlertDialog_AppCompat +wangdaye.com.geometricweather.common.basic.models.weather.Astro: Astro(java.util.Date,java.util.Date) +androidx.constraintlayout.widget.R$color: int background_floating_material_light +com.google.android.material.R$attr: int actionModeCopyDrawable +retrofit2.Response: retrofit2.Response error(int,okhttp3.ResponseBody) +wangdaye.com.geometricweather.R$styleable: int State_constraints +james.adaptiveicon.R$attr: int buttonBarStyle +cyanogenmod.weatherservice.WeatherProviderService$1: void cancelOngoingRequests() +wangdaye.com.geometricweather.R$attr: int tabRippleColor +wangdaye.com.geometricweather.R$style: int Widget_Design_CollapsingToolbar +androidx.constraintlayout.widget.R$attr: int popupWindowStyle +com.xw.repo.bubbleseekbar.R$layout: int abc_tooltip +androidx.appcompat.R$color: int bright_foreground_inverse_material_dark +io.reactivex.internal.schedulers.ScheduledRunnable: boolean isDisposed() +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutely +android.didikee.donate.R$dimen: int disabled_alpha_material_light +com.jaredrummler.android.colorpicker.R$attr: int dropdownPreferenceStyle +androidx.preference.R$dimen +androidx.constraintlayout.widget.R$attr: int popupTheme +okhttp3.RealCall: java.lang.String redactedUrl() +cyanogenmod.providers.CMSettings$System: java.lang.String SHOW_ALARM_ICON +cyanogenmod.weather.RequestInfo: int TYPE_WEATHER_BY_WEATHER_LOCATION_REQ +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemTextAppearance +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.AlertEntity) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.Observer downstream +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_EditText +com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyleSmall +com.jaredrummler.android.colorpicker.R$id: int top +io.reactivex.internal.util.EmptyComponent: void cancel() +james.adaptiveicon.R$dimen: int tooltip_precise_anchor_extra_offset +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date modificationDate +com.google.android.material.R$style: int Widget_MaterialComponents_FloatingActionButton +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_exitFadeDuration +wangdaye.com.geometricweather.R$id: int right +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_3G +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: $Gson$Types$GenericArrayTypeImpl(java.lang.reflect.Type) +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_padding +androidx.appcompat.R$attr: int titleTextStyle +wangdaye.com.geometricweather.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Inverse +com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$attr: int tabIconTintMode +com.github.rahatarmanahmed.cpv.CircularProgressView$5: boolean wasCancelled +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Line2 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarSplitStyle +com.google.android.material.R$styleable: int Layout_layout_constraintHeight_percent +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents +cyanogenmod.weatherservice.ServiceRequestResult: int hashCode() +cyanogenmod.weather.RequestInfo$Builder: boolean isValidTempUnit(int) +com.turingtechnologies.materialscrollbar.R$color: int mtrl_scrim_color +com.github.rahatarmanahmed.cpv.CircularProgressView: void updateBounds() +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$string: int wind_10 +androidx.recyclerview.R$layout: int notification_template_custom_big +androidx.swiperefreshlayout.R$styleable: int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather +androidx.hilt.lifecycle.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.background.polling.permanent.observer.TimeObserverService: TimeObserverService() +io.reactivex.Observable: io.reactivex.Observable window(java.util.concurrent.Callable,int) +com.jaredrummler.android.colorpicker.R$color: int abc_hint_foreground_material_dark +com.google.gson.stream.JsonReader: double nextDouble() +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Wind getWind() +androidx.appcompat.R$dimen: int abc_progress_bar_height_material +androidx.constraintlayout.widget.R$styleable: int[] KeyTrigger +com.google.android.material.chip.Chip: void setChipIconSizeResource(int) +cyanogenmod.app.ILiveLockScreenManager: boolean getLiveLockScreenEnabled() +okhttp3.FormBody: java.lang.String value(int) +androidx.preference.R$styleable: int RecyclerView_fastScrollEnabled +com.jaredrummler.android.colorpicker.R$attr: int cpv_showAlphaSlider +cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.StatusBarPanelCustomTile clone() +androidx.core.R$id: int dialog_button +androidx.hilt.work.R$styleable: int GradientColor_android_startY +com.google.android.material.R$styleable: int MenuGroup_android_menuCategory +wangdaye.com.geometricweather.R$string: int wind +androidx.work.impl.WorkDatabase_Impl: WorkDatabase_Impl() +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: ObservableCreate$SerializedEmitter(io.reactivex.ObservableEmitter) +wangdaye.com.geometricweather.R$attr: int chipSpacingVertical +androidx.appcompat.app.ActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +com.google.android.material.slider.BaseSlider: int getHaloRadius() +com.google.android.material.R$dimen: int mtrl_snackbar_margin +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: AtmoAuraQAResult$Advice() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void clear() +androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$styleable: int Toolbar_navigationContentDescription +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String weatherDescription +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWeatherPhase +androidx.lifecycle.LiveData$LifecycleBoundObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: ObservableUnsubscribeOn$UnsubscribeObserver(io.reactivex.Observer,io.reactivex.Scheduler) +okhttp3.Cookie$Builder: okhttp3.Cookie build() +james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat_Light +androidx.activity.R$id: int accessibility_custom_action_22 +wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundODialog: RunningInBackgroundODialog() +androidx.constraintlayout.widget.R$id: int start +com.google.android.material.R$attr: int contentScrim +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_2 +android.didikee.donate.R$style: int Platform_V21_AppCompat_Light +androidx.appcompat.widget.AppCompatRadioButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: int phenomenoMaxColorId +androidx.appcompat.R$color: int material_blue_grey_800 +cyanogenmod.themes.ThemeManager: void onClientDestroyed(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +androidx.recyclerview.R$styleable: int GradientColor_android_centerColor +cyanogenmod.providers.WeatherContract: WeatherContract() +wangdaye.com.geometricweather.R$attr: int constraint_referenced_ids +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +com.jaredrummler.android.colorpicker.R$id: int search_plate +okhttp3.internal.http2.Hpack$Writer: int maxDynamicTableByteCount +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: float getIntervalInHour() +okhttp3.Cache: int writeAbortCount() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids +com.bumptech.glide.load.ImageHeaderParser$ImageType: boolean hasAlpha() +com.turingtechnologies.materialscrollbar.R$attr: int closeIconStartPadding +com.google.android.material.R$color: int material_on_primary_disabled +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec newStream(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,boolean) +wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: DaoMaster$DevOpenHelper(android.content.Context,java.lang.String) +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean isSunlightEnhancementSelfManaged() +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_dialogTitle +com.turingtechnologies.materialscrollbar.R$id: int action_mode_bar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours Past9Hours +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +io.reactivex.internal.operators.observable.ObservableReplay$Node: long serialVersionUID +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: AccuDailyResult$DailyForecasts$Night$LocalSource() +okhttp3.internal.connection.RealConnection: void onSettings(okhttp3.internal.http2.Http2Connection) +com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context) +io.reactivex.internal.operators.observable.ObservableGroupBy$State: io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver parent +androidx.appcompat.R$attr: int colorControlHighlight +androidx.hilt.R$id: int text2 +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.functions.Function combiner +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onComplete() +wangdaye.com.geometricweather.R$styleable: int SearchView_goIcon +androidx.appcompat.R$styleable: int AppCompatTheme_activityChooserViewStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_41 +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getNavigationContentDescription() +okio.Buffer: okio.Segment writableSegment(int) +androidx.appcompat.R$dimen: int notification_top_pad_large_text +androidx.appcompat.widget.ActionBarOverlayLayout: ActionBarOverlayLayout(android.content.Context,android.util.AttributeSet) androidx.viewpager.widget.PagerTitleStrip: void setSingleLineAllCaps(android.widget.TextView) -androidx.lifecycle.ReportFragment -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitation(java.lang.Float) -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_android_layout -android.didikee.donate.R$attr: int subtitleTextAppearance -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onNext(java.lang.Object) -cyanogenmod.platform.R$string -cyanogenmod.weather.RequestInfo: java.lang.String mCityName -androidx.constraintlayout.widget.R$id: int path -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.WeatherLocation mWeatherLocation -cyanogenmod.app.Profile$TriggerType: int WIFI -wangdaye.com.geometricweather.R$drawable: int ic_top -com.google.android.material.R$drawable: int abc_ic_ab_back_material -com.google.android.material.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -com.jaredrummler.android.colorpicker.R$dimen: int notification_right_side_padding_top -android.support.v4.os.IResultReceiver$Stub$Proxy: void send(int,android.os.Bundle) -okio.InflaterSource: java.util.zip.Inflater inflater -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeight -com.google.android.material.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -com.turingtechnologies.materialscrollbar.R$attr: int contentPadding -com.google.android.material.floatingactionbutton.FloatingActionButton: void show(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) -com.jaredrummler.android.colorpicker.R$id: int action_bar_activity_content -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -androidx.vectordrawable.R$id: int dialog_button -com.turingtechnologies.materialscrollbar.R$attr: int seekBarStyle -com.google.android.material.R$attr: int dropdownListPreferredItemHeight -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1 -androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String key() -cyanogenmod.weather.WeatherInfo: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.R$id: int widget_day_week_subtitle -android.support.v4.app.INotificationSideChannel$Stub: android.os.IBinder asBinder() -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_divider -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getDailyForecast() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: double Value -android.didikee.donate.R$styleable: int[] ColorStateListItem -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder eventListener(okhttp3.EventListener) -wangdaye.com.geometricweather.R$xml: R$xml() -androidx.viewpager2.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: MfForecastResult$DailyForecast$Weather() -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onComplete() -androidx.constraintlayout.widget.R$attr: int layout_goneMarginEnd -io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.SingleSource) -android.didikee.donate.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$attr: int colorError -com.google.android.material.R$layout: int abc_list_menu_item_checkbox -com.google.android.material.R$id: int mtrl_internal_children_alpha_tag -androidx.core.R$dimen: int notification_action_text_size -okhttp3.Response$Builder: okhttp3.Handshake handshake -androidx.lifecycle.LifecycleRegistry: void pushParentState(androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.R$id: int start -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void cancelAll() -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_fontFamily -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_overflow_padding_start_material -wangdaye.com.geometricweather.R$layout: int widget_day_oreo_google_sans -retrofit2.Retrofit$Builder: retrofit2.Retrofit build() -androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -wangdaye.com.geometricweather.common.basic.models.weather.Daily: Daily(java.util.Date,long,wangdaye.com.geometricweather.common.basic.models.weather.HalfDay,wangdaye.com.geometricweather.common.basic.models.weather.HalfDay,wangdaye.com.geometricweather.common.basic.models.weather.Astro,wangdaye.com.geometricweather.common.basic.models.weather.Astro,wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase,wangdaye.com.geometricweather.common.basic.models.weather.AirQuality,wangdaye.com.geometricweather.common.basic.models.weather.Pollen,wangdaye.com.geometricweather.common.basic.models.weather.UV,float) -androidx.lifecycle.Lifecycling: int getObserverConstructorType(java.lang.Class) -androidx.vectordrawable.R$styleable: int GradientColor_android_type -james.adaptiveicon.R$color: int abc_secondary_text_material_dark -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: long serialVersionUID -com.jaredrummler.android.colorpicker.R$id: int scrollView -com.xw.repo.bubbleseekbar.R$color: int ripple_material_light -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_GLOBAL -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense -com.google.android.material.R$styleable: int[] DrawerArrowToggle -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: long serialVersionUID -androidx.constraintlayout.widget.R$drawable: int abc_spinner_textfield_background_material -cyanogenmod.profiles.RingModeSettings: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.util.VolatileSizeArrayList: boolean containsAll(java.util.Collection) -com.google.android.material.R$color: int switch_thumb_material_light -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginTop() -androidx.viewpager2.R$id: int async -okhttp3.Credentials: java.lang.String basic(java.lang.String,java.lang.String,java.nio.charset.Charset) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -cyanogenmod.hardware.CMHardwareManager: int FEATURE_SUNLIGHT_ENHANCEMENT -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_listLayout -android.didikee.donate.R$drawable: int abc_text_select_handle_middle_mtrl_dark -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_3DES_EDE_CBC_MD5 -okhttp3.internal.cache2.Relay: okhttp3.internal.cache2.Relay read(java.io.File) -android.didikee.donate.R$layout: int abc_list_menu_item_layout -androidx.transition.R$dimen: int notification_top_pad -com.turingtechnologies.materialscrollbar.R$attr: int snackbarButtonStyle -wangdaye.com.geometricweather.R$string: int key_notification_temp_icon -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_Switch -com.google.android.material.R$string: int abc_shareactionprovider_share_with_application -com.google.android.material.R$attr: int title -androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: int UnitType -wangdaye.com.geometricweather.R$styleable: int Transition_android_id -okio.Buffer: okio.Buffer writeIntLe(int) -okhttp3.internal.http1.Http1Codec: boolean isClosed() -cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() -wangdaye.com.geometricweather.R$styleable: int MotionLayout_layoutDescription -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_switchTextOn -okhttp3.Request$Builder -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility -okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withReadTimeout(int,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.converters.WeatherSourceConverter weatherSourceConverter -androidx.work.R$styleable: int FontFamilyFont_font -androidx.transition.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.R$drawable: int abc_list_pressed_holo_light -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogPreferredPadding -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_DialogWhenLarge -okio.RealBufferedSource: int readUtf8CodePoint() -wangdaye.com.geometricweather.R$string: int feedback_live_wallpaper_weather_kind -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarButtonStyle -com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_material -wangdaye.com.geometricweather.R$layout: int notification_base -wangdaye.com.geometricweather.R$styleable: int Fragment_android_tag -androidx.recyclerview.widget.RecyclerView: void setNestedScrollingEnabled(boolean) -wangdaye.com.geometricweather.R$array: int temperature_unit_values -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder callTimeout(java.time.Duration) -okhttp3.internal.cache2.Relay: long upstreamPos -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_31 -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Subhead -androidx.hilt.work.R$bool: int enable_system_job_service_default -com.google.android.material.R$dimen: int mtrl_btn_pressed_z -wangdaye.com.geometricweather.R$array: int widget_card_style_values -androidx.preference.R$color: int background_material_dark -androidx.hilt.R$id: int accessibility_custom_action_9 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedWidthMajor -androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView_DropDown -androidx.activity.R$styleable: int FontFamilyFont_android_fontWeight -com.turingtechnologies.materialscrollbar.R$styleable: int[] LinearLayoutCompat -wangdaye.com.geometricweather.R$styleable: int Badge_badgeGravity -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg -james.adaptiveicon.R$styleable: int AlertDialog_buttonPanelSideLayout -wangdaye.com.geometricweather.R$drawable: int notif_temp_86 -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onComplete() -androidx.recyclerview.R$id: int line3 -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: android.os.IBinder asBinder() -com.google.android.material.R$attr: int transitionShapeAppearance -androidx.customview.R$styleable -com.jaredrummler.android.colorpicker.R$id: int item_touch_helper_previous_elevation -androidx.constraintlayout.widget.R$id: int action_divider -com.jaredrummler.android.colorpicker.R$color: int primary_material_light -androidx.constraintlayout.widget.R$id: int honorRequest -androidx.constraintlayout.widget.R$styleable: int ActionMode_subtitleTextStyle -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowDx -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_lightOnTouch -okhttp3.Request: java.lang.String header(java.lang.String) -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void error(java.lang.Throwable) -androidx.constraintlayout.widget.R$color: int material_grey_850 -androidx.appcompat.R$drawable: int abc_text_select_handle_middle_mtrl_light -wangdaye.com.geometricweather.R$attr: int colorSecondaryVariant -retrofit2.ParameterHandler$FieldMap: boolean encoded -io.reactivex.subjects.PublishSubject$PublishDisposable: void onComplete() -okhttp3.Dispatcher: java.util.Deque runningAsyncCalls -retrofit2.KotlinExtensions: java.lang.Object awaitNullable(retrofit2.Call,kotlin.coroutines.Continuation) -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: float unitFactor -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_CardView -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder parse(okhttp3.HttpUrl,java.lang.String) -com.google.android.material.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorType -wangdaye.com.geometricweather.R$color: int design_default_color_on_error -androidx.hilt.work.R$attr: int fontProviderFetchStrategy -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour[] values() -cyanogenmod.themes.IThemeService$Stub$Proxy: void registerThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_alt_shortcut_label -wangdaye.com.geometricweather.R$attr: int cpv_dialogTitle -com.xw.repo.bubbleseekbar.R$style: int Base_V28_Theme_AppCompat -okhttp3.HttpUrl$Builder: java.lang.String canonicalizeHost(java.lang.String,int,int) -wangdaye.com.geometricweather.R$drawable: int weather_sleet -wangdaye.com.geometricweather.R$color: int mtrl_card_view_ripple -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: int requestFusion(int) -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginEnd -cyanogenmod.providers.ThemesContract: java.lang.String AUTHORITY -wangdaye.com.geometricweather.R$id: int action_mode_close_button -okhttp3.internal.connection.RouteSelector: okhttp3.EventListener eventListener -androidx.appcompat.R$styleable: int AppCompatTextView_textLocale -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Visibility -androidx.appcompat.widget.ActivityChooserView: void setInitialActivityCount(int) -androidx.constraintlayout.widget.R$styleable: int AlertDialog_showTitle -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -cyanogenmod.weather.WeatherInfo: double mWindSpeed -androidx.preference.R$attr: int paddingTopNoTitle -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: java.lang.Float max -androidx.hilt.work.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.viewpager2.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.R$attr: int customNavigationLayout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: double Value -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_fabCustomSize -wangdaye.com.geometricweather.R$string: int feedback_request_permission -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.Object adapt(retrofit2.Call) -com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_material_dark -androidx.coordinatorlayout.R$id: int notification_background -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: CaiYunMainlyResult$IndicesBeanX$IndicesBean() -wangdaye.com.geometricweather.R$attr: int singleLine -android.didikee.donate.R$anim: int abc_slide_in_bottom -com.xw.repo.bubbleseekbar.R$attr: int actionMenuTextAppearance -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -androidx.loader.R$attr: int fontStyle -wangdaye.com.geometricweather.R$styleable: int[] RecyclerView -cyanogenmod.power.IPerformanceManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -com.google.android.material.R$style: int Widget_AppCompat_SearchView_ActionBar -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Subhead -com.google.android.material.circularreveal.CircularRevealGridLayout: int getCircularRevealScrimColor() -androidx.vectordrawable.R$layout: int notification_template_custom_big -android.didikee.donate.R$id: int image -androidx.preference.R$id: int home -com.google.android.material.R$attr: int checkboxStyle -androidx.constraintlayout.widget.R$dimen: int compat_notification_large_icon_max_height -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_y_offset_non_touch -com.turingtechnologies.materialscrollbar.R$attr: int ttcIndex -com.bumptech.glide.integration.okhttp.R$string -wangdaye.com.geometricweather.R$id: int tag_screen_reader_focusable -okhttp3.internal.http2.Http2Connection: void shutdown(okhttp3.internal.http2.ErrorCode) -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetLeft -okhttp3.Response: okhttp3.Handshake handshake -wangdaye.com.geometricweather.R$drawable: int star_1 -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_translation_z_pressed -cyanogenmod.providers.CMSettings$Secure: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void addScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: CNWeatherResult$WeatherX() -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: long serialVersionUID -wangdaye.com.geometricweather.R$string: int feedback_refresh_notification_now -androidx.hilt.work.R$id: int text2 -cyanogenmod.profiles.StreamSettings: cyanogenmod.profiles.StreamSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -org.greenrobot.greendao.AbstractDao: java.util.List loadAllAndCloseCursor(android.database.Cursor) -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_framePosition -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String MinuteText -okhttp3.internal.http.RealResponseBody: okio.BufferedSource source -io.reactivex.subjects.PublishSubject$PublishDisposable: boolean isDisposed() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_alpha -com.google.android.material.circularreveal.CircularRevealFrameLayout: void setCircularRevealScrimColor(int) -com.google.android.material.R$styleable: int MotionLayout_applyMotionScene -wangdaye.com.geometricweather.R$styleable: int ButtonBarLayout_allowStacking -okhttp3.MultipartBody: long writeOrCountBytes(okio.BufferedSink,boolean) -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemTextColor -com.turingtechnologies.materialscrollbar.R$dimen: int abc_list_item_padding_horizontal_material -androidx.activity.R$color: int notification_icon_bg_color -io.reactivex.Observable: io.reactivex.Single firstOrError() -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit INHG -androidx.constraintlayout.widget.ConstraintLayout: int getOptimizationLevel() -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode THUNDER -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getUvIndex() -wangdaye.com.geometricweather.R$drawable: int shortcuts_fog -com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_horizontal_material -wangdaye.com.geometricweather.R$attr: int maxWidth -cyanogenmod.externalviews.ExternalViewProviderService: android.os.Handler mHandler -androidx.activity.R$layout: int notification_template_custom_big -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver -wangdaye.com.geometricweather.R$id: int item_card_display_container -android.support.v4.app.INotificationSideChannel$Stub$Proxy: void notify(java.lang.String,int,java.lang.String,android.app.Notification) -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_colored_ripple_color -com.google.android.material.R$styleable: int AppCompatImageView_tint -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Toolbar -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar_Small -android.didikee.donate.R$color: int abc_btn_colored_text_material -androidx.preference.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_4 -com.google.android.material.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.R$menu -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: long serialVersionUID -android.didikee.donate.R$color: int material_grey_850 -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_precise_anchor_threshold -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -cyanogenmod.hardware.CMHardwareManager: int getVibratorMinIntensity() -androidx.preference.EditTextPreference: void setOnBindEditTextListener(androidx.preference.EditTextPreference$OnBindEditTextListener) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_121 -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: long serialVersionUID -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableBottom -wangdaye.com.geometricweather.R$id: int path -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemBackgroundResource(int) -androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -james.adaptiveicon.R$styleable: int ActionBar_contentInsetStart -androidx.lifecycle.FullLifecycleObserverAdapter$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$Event -android.didikee.donate.R$attr: int actionBarTabTextStyle -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_always_show_bubble -com.turingtechnologies.materialscrollbar.R$styleable: int[] PopupWindowBackgroundState -androidx.preference.R$anim: int abc_tooltip_exit -com.google.android.material.slider.BaseSlider: java.util.List getValues() -androidx.lifecycle.ProcessLifecycleOwner: int mResumedCounter -io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.Observer) -android.didikee.donate.R$styleable: R$styleable() -com.xw.repo.bubbleseekbar.R$id: int action_divider -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceCategoryStyle -androidx.viewpager2.R$layout -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.concurrent.atomic.AtomicReference error +com.jaredrummler.android.colorpicker.R$attr: int actionBarSplitStyle +com.xw.repo.bubbleseekbar.R$color: int dim_foreground_disabled_material_dark +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_homeAsUpIndicator +okhttp3.internal.http2.Http2Codec: java.util.List http2HeadersList(okhttp3.Request) +com.turingtechnologies.materialscrollbar.R$id: int uniform +james.adaptiveicon.R$styleable: int AppCompatTheme_listMenuViewStyle +androidx.constraintlayout.widget.R$attr: int thumbTintMode +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setAddress_detail(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean) +androidx.constraintlayout.widget.R$attr: int defaultDuration +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_background_transition_holo_dark +androidx.constraintlayout.widget.R$attr: int listChoiceIndicatorMultipleAnimated +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: double Value +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton +androidx.fragment.R$id: int tag_accessibility_pane_title +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onNext(java.lang.Object) +james.adaptiveicon.R$style: int Theme_AppCompat_Light +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl build() +okhttp3.internal.http.HttpHeaders: long contentLength(okhttp3.Headers) +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage FINISHED +com.google.android.material.R$attr: int flow_horizontalBias +wangdaye.com.geometricweather.R$attr: int tabUnboundedRipple +androidx.preference.R$layout: int notification_action_tombstone +cyanogenmod.weatherservice.WeatherProviderService: java.util.Set access$100(cyanogenmod.weatherservice.WeatherProviderService) +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_day_of_week +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_PopupMenu +wangdaye.com.geometricweather.R$attr: int cardForegroundColor +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Icon +androidx.dynamicanimation.R$styleable: int GradientColor_android_startY +com.google.android.material.R$dimen: int mtrl_calendar_year_height +androidx.preference.R$style: int Platform_Widget_AppCompat_Spinner +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: AccuCurrentResult$Visibility$Metric() +wangdaye.com.geometricweather.common.ui.behaviors.InkPageIndicatorBehavior +com.turingtechnologies.materialscrollbar.R$attr: int windowActionBarOverlay +androidx.legacy.coreutils.R$styleable: int[] ColorStateListItem +cyanogenmod.app.IPartnerInterface: java.lang.String getCurrentHotwordPackageName() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float ice +com.xw.repo.bubbleseekbar.R$styleable: int[] LinearLayoutCompat +androidx.appcompat.R$id: int spacer +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationX +com.google.android.material.R$style: int Widget_AppCompat_SeekBar +androidx.hilt.work.R$id: int forever +com.google.android.material.R$styleable: int ConstraintSet_android_rotation +com.google.android.material.R$attr: int subtitle +okio.ForwardingTimeout: okio.Timeout delegate +androidx.appcompat.R$attr: int listPreferredItemHeightLarge +okhttp3.internal.http2.Http2Connection: long degradedPingsSent +cyanogenmod.app.CMContextConstants: java.lang.String CM_PARTNER_INTERFACE +com.turingtechnologies.materialscrollbar.R$attr: int colorBackgroundFloating +androidx.constraintlayout.widget.R$id: int action_container +okio.Buffer: int readInt() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Title +androidx.viewpager2.R$id: int accessibility_custom_action_29 +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_scaleX +com.google.android.material.R$attr: int subtitleTextStyle +androidx.preference.R$styleable: int StateListDrawable_android_dither +com.google.android.material.R$styleable: int Constraint_layout_constraintStart_toStartOf +okio.ByteString: boolean endsWith(byte[]) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingTop +retrofit2.ParameterHandler$QueryMap: int p +androidx.viewpager2.R$styleable: int GradientColor_android_endColor +androidx.transition.R$id: int time +androidx.appcompat.R$styleable: int GradientColor_android_type +okhttp3.internal.http1.Http1Codec$AbstractSource +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6 +androidx.recyclerview.widget.RecyclerView: void removeOnItemTouchListener(androidx.recyclerview.widget.RecyclerView$OnItemTouchListener) +com.google.android.material.card.MaterialCardView: void setRippleColor(android.content.res.ColorStateList) +james.adaptiveicon.R$drawable: int abc_spinner_mtrl_am_alpha +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: ObservableMergeWithMaybe$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginEnd +androidx.fragment.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$attr: int iconResEnd +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginBottom +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.String) +okhttp3.Cookie: java.lang.String path +okhttp3.logging.LoggingEventListener$Factory: okhttp3.logging.HttpLoggingInterceptor$Logger logger +androidx.recyclerview.widget.RecyclerView: java.lang.CharSequence getAccessibilityClassName() +com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Panel +android.didikee.donate.R$style: R$style() +com.turingtechnologies.materialscrollbar.R$attr: int panelMenuListWidth +retrofit2.RequestFactory$Builder: java.util.Set parsePathParameters(java.lang.String) +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatSeekBar +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean replace(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) +james.adaptiveicon.R$styleable: int AppCompatTheme_dialogCornerRadius +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmPic1 +wangdaye.com.geometricweather.R$styleable: int Variant_region_widthMoreThan +androidx.appcompat.R$styleable: int[] ActionMode +wangdaye.com.geometricweather.R$layout: int item_weather_daily_astro +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_selectableItemBackground +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: java.lang.String Unit +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: java.lang.String Unit +androidx.core.R$id: int accessibility_action_clickable_span +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +okhttp3.internal.platform.Platform: void logCloseableLeak(java.lang.String,java.lang.Object) +android.didikee.donate.R$styleable: int AppCompatTheme_colorPrimary +android.didikee.donate.R$attr: int actionMenuTextAppearance +androidx.coordinatorlayout.R$attr: int fontProviderAuthority +com.xw.repo.BubbleSeekBar: void setThumbColor(int) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio +wangdaye.com.geometricweather.R$string: int settings_summary_service_provider +com.google.android.material.R$layout: int abc_screen_toolbar +androidx.preference.R$attr: int backgroundTintMode +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +androidx.constraintlayout.widget.R$drawable: int notification_bg_low_normal +androidx.appcompat.R$dimen: int abc_text_size_subtitle_material_toolbar +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeightSmall +james.adaptiveicon.R$dimen: int abc_action_button_min_height_material +com.google.android.material.R$styleable: int KeyAttribute_motionTarget +okio.Timeout$1 +cyanogenmod.power.PerformanceManager: int getNumberOfProfiles() +com.jaredrummler.android.colorpicker.R$attr: int summary +com.turingtechnologies.materialscrollbar.R$attr: int tint +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +okio.ByteString: okio.ByteString read(java.io.InputStream,int) +okhttp3.internal.platform.OptionalMethod: java.lang.Object invoke(java.lang.Object,java.lang.Object[]) +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_fontFamily +wangdaye.com.geometricweather.R$anim: int abc_slide_out_top +androidx.constraintlayout.widget.R$attr: int customNavigationLayout +com.google.android.material.R$styleable: int Constraint_android_minWidth +androidx.work.ListenableWorker +wangdaye.com.geometricweather.R$string: int key_icon_provider +com.bumptech.glide.integration.okhttp.R$styleable: int[] GradientColorItem +retrofit2.ParameterHandler$HeaderMap: int p +com.turingtechnologies.materialscrollbar.R$style: int Platform_Widget_AppCompat_Spinner +com.google.android.material.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +okhttp3.internal.http.RetryAndFollowUpInterceptor: RetryAndFollowUpInterceptor(okhttp3.OkHttpClient,boolean) +com.turingtechnologies.materialscrollbar.R$attr: int floatingActionButtonStyle +androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_max +androidx.vectordrawable.R$styleable: int GradientColor_android_startY +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_level +com.google.android.material.navigation.NavigationView: void setItemBackgroundResource(int) +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,java.io.File) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getSo2Color(android.content.Context) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTotalPrecipitation(java.lang.Float) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: AccuCurrentResult$WindGust$Speed() +wangdaye.com.geometricweather.R$id: int alerts +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +androidx.constraintlayout.widget.R$id: int easeInOut +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property City +com.google.android.material.R$styleable: int BottomAppBar_hideOnScroll +wangdaye.com.geometricweather.db.entities.MinutelyEntity: boolean getDaylight() +wangdaye.com.geometricweather.R$attr: int cpv_alphaChannelVisible +okio.Segment: okio.Segment unsharedCopy() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: java.lang.String Unit +androidx.appcompat.R$attr: int titleMarginTop +com.google.gson.stream.JsonReader: boolean nextBoolean() +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast +androidx.lifecycle.ProcessLifecycleOwner$2: ProcessLifecycleOwner$2(androidx.lifecycle.ProcessLifecycleOwner) +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void clear() +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.R$animator: int weather_hail_2 +okhttp3.WebSocketListener: void onClosing(okhttp3.WebSocket,int,java.lang.String) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void setInteractivity(boolean) +androidx.preference.R$attr: int buttonTintMode +com.google.android.material.R$color: int material_deep_teal_500 +androidx.constraintlayout.widget.R$styleable: int KeyCycle_motionProgress +cyanogenmod.providers.CMSettings$System: java.lang.String __MAGICAL_TEST_PASSING_ENABLER +com.google.android.material.R$styleable: int Toolbar_collapseIcon +com.google.android.material.R$id: int line3 +okhttp3.Cache$CacheRequestImpl$1: Cache$CacheRequestImpl$1(okhttp3.Cache$CacheRequestImpl,okio.Sink,okhttp3.Cache,okhttp3.internal.cache.DiskLruCache$Editor) +cyanogenmod.profiles.LockSettings: LockSettings(int) +androidx.appcompat.R$drawable: int btn_radio_off_to_on_mtrl_animation +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display4 +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State RESUMED +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTag +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position position +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.util.AtomicThrowable errors +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: java.lang.String Unit +androidx.recyclerview.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit[] values() +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Body2 +androidx.constraintlayout.widget.R$id: int deltaRelative +com.google.android.material.R$attr: int colorOnSecondary +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX +androidx.appcompat.resources.R$drawable: int notification_bg_low_pressed +androidx.constraintlayout.widget.R$dimen: int abc_button_inset_vertical_material +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onStop() +io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_subtitle +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.google.android.material.R$style: int Theme_MaterialComponents_Light_DarkActionBar +wangdaye.com.geometricweather.R$attr: int flow_horizontalBias +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentStyle +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void drain() +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: void run() +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long) +cyanogenmod.providers.CMSettings$NameValueCache +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_8 +james.adaptiveicon.R$layout: int abc_activity_chooser_view_list_item +com.turingtechnologies.materialscrollbar.R$id: int notification_background +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_explanation +com.google.android.material.R$id: int test_radiobutton_app_button_tint +androidx.appcompat.R$style: int TextAppearance_AppCompat_Medium_Inverse cyanogenmod.app.CustomTile$ExpandedStyle: void internalSetRemoteViews(android.widget.RemoteViews) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_checked_black -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textColorSearchUrl -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_pressed_holo_light -androidx.vectordrawable.R$id: int text2 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_night_foreground -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -okhttp3.internal.http2.Http2Connection$PingRunnable: int payload1 -androidx.appcompat.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -com.google.android.material.R$style: int ThemeOverlay_Design_TextInputEditText -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_19 -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -com.google.android.material.R$drawable: int notification_template_icon_bg -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_backgroundSplit -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type[] typeArguments -okio.Buffer: okio.BufferedSink write(okio.ByteString) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: java.util.concurrent.atomic.AtomicReference timer -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_width_minor -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context) -com.google.android.material.R$style: int Widget_AppCompat_ActionBar -android.didikee.donate.R$drawable: int notification_bg_low_pressed -com.jaredrummler.android.colorpicker.R$attr: int titleTextColor -retrofit2.BuiltInConverters: BuiltInConverters() -okio.Base64: byte[] decode(java.lang.String) -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: MfHistoryResult$History() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -com.google.android.material.R$dimen: int action_bar_size -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_maxElementsWrap -com.bumptech.glide.R$layout: int notification_action -androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Title -com.jaredrummler.android.colorpicker.R$attr: int lastBaselineToBottomHeight -com.turingtechnologies.materialscrollbar.R$style: R$style() -wangdaye.com.geometricweather.R$id: int action_bar_spinner -com.google.android.material.checkbox.MaterialCheckBox: void setUseMaterialThemeColors(boolean) -io.reactivex.internal.subscribers.StrictSubscriber: org.reactivestreams.Subscriber downstream -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_animationMode -androidx.vectordrawable.R$id: int accessibility_custom_action_31 -okhttp3.internal.http.HttpMethod: boolean invalidatesCache(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_min_height -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeight -androidx.customview.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.work.R$id: int accessibility_custom_action_7 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitationProbability -cyanogenmod.externalviews.ExternalView: void onActivityStarted(android.app.Activity) -cyanogenmod.externalviews.KeyguardExternalView: void registerOnWindowAttachmentChangedListener(cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener) -androidx.constraintlayout.widget.R$styleable: int Toolbar_navigationContentDescription -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_commitIcon -android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -wangdaye.com.geometricweather.R$drawable: int notif_temp_10 -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: javax.inject.Provider apiProvider -wangdaye.com.geometricweather.R$styleable: int MenuView_android_verticalDivider -okhttp3.logging.LoggingEventListener: void requestBodyStart(okhttp3.Call) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float o3 -androidx.lifecycle.extensions.R$drawable: int notification_action_background -james.adaptiveicon.R$id: int listMode -org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.database.Database db -okhttp3.Request: okhttp3.RequestBody body() -okhttp3.internal.cache.DiskLruCache$Entry: java.io.IOException invalidLengths(java.lang.String[]) -io.reactivex.internal.disposables.EmptyDisposable: boolean isEmpty() -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$id: int dialog_location_help_manageContainer -androidx.fragment.R$id: int accessibility_custom_action_16 -james.adaptiveicon.R$styleable: int AppCompatTheme_colorBackgroundFloating -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void dispose() -com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_bottom_margin -okhttp3.internal.http2.Huffman: void addCode(int,int,byte) -wangdaye.com.geometricweather.R$id: int cpv_color_panel_view -wangdaye.com.geometricweather.db.entities.DaoMaster: void createAllTables(org.greenrobot.greendao.database.Database,boolean) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -androidx.coordinatorlayout.R$attr: int layout_anchorGravity -androidx.preference.R$attr: int switchTextAppearance -wangdaye.com.geometricweather.R$styleable: int ClockHandView_materialCircleRadius -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float no2 -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_setPowerProfile -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_Switch -androidx.hilt.work.R$styleable: int[] GradientColorItem -com.google.android.material.R$id: int cut -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitationProbability -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_large_material -android.didikee.donate.R$style: int Platform_V21_AppCompat_Light -okhttp3.internal.http2.Http2Stream$FramingSink: void flush() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeDegreeDayTemperature -com.turingtechnologies.materialscrollbar.R$attr: int cardElevation -wangdaye.com.geometricweather.R$color: int material_slider_active_track_color -wangdaye.com.geometricweather.R$color: int tooltip_background_dark -androidx.core.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_72 +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: long StartEpochDateTime +androidx.dynamicanimation.R$styleable: int[] GradientColor +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +com.google.android.material.R$id: int search_plate +james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_arrowHeadLength +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric Metric +androidx.multidex.MultiDexApplication: MultiDexApplication() +androidx.viewpager.R$styleable: int GradientColor_android_centerColor +androidx.appcompat.widget.SearchView: java.lang.CharSequence getQueryHint() +androidx.constraintlayout.widget.R$string: int abc_menu_function_shortcut_label +com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorCornerRadius() +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean cancelled +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: int size +androidx.viewpager.R$id: int tag_transition_group +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setSunDrawable(android.graphics.drawable.Drawable) +okhttp3.internal.cache2.FileOperator: java.nio.channels.FileChannel fileChannel +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtendMotionSpecResource(int) +androidx.lifecycle.MediatorLiveData: void removeSource(androidx.lifecycle.LiveData) +androidx.constraintlayout.widget.R$styleable: int[] ListPopupWindow +androidx.constraintlayout.widget.R$attr: int textAppearanceSearchResultTitle +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicReference upstream +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.google.android.material.R$id: int action_menu_presenter +wangdaye.com.geometricweather.R$drawable: int notif_temp_19 +androidx.vectordrawable.R$layout: int notification_template_part_chronometer +com.github.rahatarmanahmed.cpv.CircularProgressView: void setIndeterminate(boolean) +androidx.loader.R$attr: int ttcIndex +androidx.fragment.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text +androidx.customview.R$style: int Widget_Compat_NotificationActionText +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_height_minor +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_title +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_stackFromEnd +retrofit2.http.HTTP +com.google.android.material.R$layout: int abc_search_view +okhttp3.CacheControl +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_touch_to_seek +androidx.recyclerview.R$dimen: int compat_notification_large_icon_max_width +retrofit2.http.Headers +wangdaye.com.geometricweather.search.Hilt_SearchActivity +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial Imperial +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: java.util.List brands +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String headDescription +androidx.appcompat.R$styleable: int[] AlertDialog +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() +com.jaredrummler.android.colorpicker.ColorPickerView: int getBorderColor() +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_SmallComponent +james.adaptiveicon.R$styleable: int MenuGroup_android_menuCategory +com.bumptech.glide.R$string: int status_bar_notification_info_overflow +okio.ByteString: okio.ByteString encodeUtf8(java.lang.String) +okhttp3.internal.NamedRunnable: void execute() +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +com.google.android.material.slider.Slider: float getValueTo() +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_DifferentCornerSize +com.jaredrummler.android.colorpicker.R$attr: int lineHeight +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView +androidx.lifecycle.SavedStateHandle: java.util.Map mRegular +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_elevation +okhttp3.internal.http.RequestLine: RequestLine() +wangdaye.com.geometricweather.R$styleable: int Badge_horizontalOffset +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_checkable +wangdaye.com.geometricweather.R$drawable: int weather_hail_1 +androidx.constraintlayout.widget.R$dimen: int abc_dialog_min_width_major +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String locationKey +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setId(java.lang.Long) +cyanogenmod.alarmclock.ClockContract$InstancesColumns +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: java.lang.String Unit +androidx.preference.R$dimen: int abc_dialog_title_divider_material +wangdaye.com.geometricweather.R$string: int abc_search_hint +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_MIN_INDEX +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitation(java.lang.Float) +androidx.constraintlayout.widget.R$attr: int queryBackground +androidx.fragment.R$styleable: int GradientColorItem_android_offset +com.google.android.material.R$attr: int warmth +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode[] getDisplayModes() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_android_windowIsFloating +com.google.android.material.bottomsheet.BottomSheetBehavior: BottomSheetBehavior() +james.adaptiveicon.R$attr: int alertDialogTheme +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_BottomRightCut +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationX +com.turingtechnologies.materialscrollbar.R$dimen: int notification_large_icon_height +androidx.preference.R$styleable: int GradientColor_android_startX +androidx.viewpager2.R$attr: int fontProviderFetchStrategy +retrofit2.HttpException: int code() +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: ObservableGroupJoin$LeftRightObserver(io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport,boolean) +wangdaye.com.geometricweather.R$attr: int boxCollapsedPaddingTop +wangdaye.com.geometricweather.R$attr: int minHeight +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_divider_thickness +androidx.swiperefreshlayout.R$dimen: int compat_control_corner_material +androidx.transition.R$id: int transition_position +wangdaye.com.geometricweather.R$attr: int layout_constraintCircleAngle +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Green +com.google.android.material.slider.RangeSlider: void setTrackTintList(android.content.res.ColorStateList) +android.didikee.donate.R$dimen: int abc_edit_text_inset_bottom_material +com.jaredrummler.android.colorpicker.R$attr: int actionViewClass +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_height_major +androidx.work.ListenableWorker: ListenableWorker(android.content.Context,androidx.work.WorkerParameters) +androidx.lifecycle.ProcessLifecycleOwner$1: void run() +okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method getMethod +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextColor +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getGrassDescription() +com.google.android.material.R$attr: int checkedChip +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge +androidx.constraintlayout.widget.R$styleable: int Toolbar_menu +wangdaye.com.geometricweather.R$attr: int coordinatorLayoutStyle +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstVerticalStyle +okhttp3.Address: boolean equals(java.lang.Object) +androidx.dynamicanimation.R$styleable: int GradientColor_android_centerColor +com.google.android.material.R$xml: int standalone_badge_offset +wangdaye.com.geometricweather.R$layout: int fragment_management +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void unregisterListener(cyanogenmod.app.ICustomTileListener,int) +com.jaredrummler.android.colorpicker.R$attr: int collapseContentDescription +okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_2 +io.reactivex.exceptions.CompositeException: java.lang.String getMessage() +androidx.appcompat.R$drawable: int abc_list_longpressed_holo +androidx.appcompat.resources.R$id: int accessibility_custom_action_6 +wangdaye.com.geometricweather.R$attr: int flow_horizontalAlign +androidx.appcompat.widget.Toolbar: void setCollapsible(boolean) +okhttp3.Headers$Builder: java.lang.String get(java.lang.String) +com.google.android.material.R$interpolator: int fast_out_slow_in +okio.AsyncTimeout$1: java.lang.String toString() +androidx.coordinatorlayout.R$style: int Widget_Support_CoordinatorLayout +com.google.android.material.R$attr: int chipStrokeWidth +okhttp3.internal.cache.DiskLruCache: java.lang.String CLEAN +androidx.preference.R$id: int expanded_menu +cyanogenmod.profiles.StreamSettings: boolean mDirty +androidx.appcompat.widget.AppCompatButton: int[] getAutoSizeTextAvailableSizes() +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMode +androidx.activity.R$styleable: int GradientColor_android_endColor +androidx.appcompat.R$styleable: int Spinner_android_dropDownWidth +androidx.constraintlayout.widget.R$drawable: int abc_item_background_holo_dark +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator LIVE_DISPLAY_HINTED_VALIDATOR +com.google.android.material.R$styleable: int AlertDialog_buttonPanelSideLayout +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRealFeelTemperature(java.lang.Integer) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onSuccess(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String getDefenseText() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +okhttp3.Cache: int ENTRY_BODY +com.xw.repo.bubbleseekbar.R$style: int Platform_Widget_AppCompat_Spinner +okio.Buffer: java.lang.String toString() +wangdaye.com.geometricweather.R$color: int colorTextTitle_light +androidx.vectordrawable.animated.R$dimen: int notification_action_text_size +android.didikee.donate.R$styleable: int RecycleListView_paddingBottomNoButtons +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth +okhttp3.internal.publicsuffix.PublicSuffixDatabase +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather weather +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setRequestType(cyanogenmod.themes.ThemeChangeRequest$RequestType) +androidx.legacy.coreutils.R$id: int title +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getGrassLevel() +wangdaye.com.geometricweather.R$attr: int percentHeight +okio.Buffer$1: okio.Buffer this$0 +okio.ByteString: int indexOf(byte[],int) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Invalid +com.xw.repo.bubbleseekbar.R$id: int textSpacerNoTitle +com.jaredrummler.android.colorpicker.R$style: R$style() +com.google.android.material.R$styleable: int[] ConstraintLayout_placeholder +james.adaptiveicon.R$id: int contentPanel +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.R$string: int thunderstorm +androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeBottomRight +cyanogenmod.providers.ThemesContract: java.lang.String AUTHORITY +com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String weatherSource +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void dispose() +wangdaye.com.geometricweather.weather.apis.CaiYunApi +com.google.android.material.R$dimen: int design_snackbar_action_inline_max_width +androidx.appcompat.R$dimen: int tooltip_horizontal_padding +okhttp3.logging.LoggingEventListener: long startNs +androidx.preference.R$attr: int ratingBarStyle +com.bumptech.glide.Registry$NoModelLoaderAvailableException +retrofit2.ParameterHandler$2: retrofit2.ParameterHandler this$0 +androidx.preference.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +okhttp3.internal.http2.Http2Connection$6: int val$byteCount +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_sun +okhttp3.Call: okhttp3.Request request() +com.google.android.material.R$attr: int valueTextColor +cyanogenmod.externalviews.ExternalViewProperties: ExternalViewProperties(android.view.View,android.content.Context) +com.google.android.material.R$styleable: int Variant_region_widthMoreThan +james.adaptiveicon.R$attr: int paddingTopNoTitle +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setDate(java.util.Date) +androidx.viewpager2.R$id: int actions +wangdaye.com.geometricweather.R$styleable: int Badge_verticalOffset +androidx.constraintlayout.widget.R$color: int abc_btn_colored_text_material +com.google.android.material.R$dimen: int item_touch_helper_swipe_escape_velocity +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_min +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Large +okhttp3.WebSocket: boolean send(okio.ByteString) +com.turingtechnologies.materialscrollbar.R$color: int primary_text_default_material_light +androidx.work.R$dimen: int compat_control_corner_material +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginEnd +cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String access$200() +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void drain() +androidx.constraintlayout.widget.R$styleable: int Transform_android_rotationX +wangdaye.com.geometricweather.R$anim: int abc_tooltip_enter +com.google.android.material.R$attr: int layout_constraintHeight_default +okhttp3.EventListener: void callFailed(okhttp3.Call,java.io.IOException) +androidx.preference.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconStartPadding +okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: void execute() +okio.ByteString: okio.ByteString hmacSha256(okio.ByteString) +com.google.android.material.R$styleable: int AlertDialog_multiChoiceItemLayout +com.xw.repo.bubbleseekbar.R$styleable: int RecycleListView_paddingTopNoTitle +com.bumptech.glide.R$dimen: int notification_top_pad +okhttp3.internal.platform.AndroidPlatform: java.lang.Class sslParametersClass +james.adaptiveicon.R$styleable: int[] ListPopupWindow +com.google.android.material.card.MaterialCardView: void setClickable(boolean) +okio.Buffer: okio.Buffer copyTo(java.io.OutputStream,long,long) +com.google.android.material.R$color: int material_timepicker_button_stroke +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX getNames() +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.internal.util.AtomicThrowable error +io.reactivex.Observable: io.reactivex.Observable doOnError(io.reactivex.functions.Consumer) +androidx.constraintlayout.widget.R$drawable: int btn_radio_on_mtrl +cyanogenmod.externalviews.KeyguardExternalView$3: cyanogenmod.externalviews.KeyguardExternalView this$0 +james.adaptiveicon.R$styleable: int PopupWindow_android_popupAnimationStyle +androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context,android.util.AttributeSet,int) +androidx.vectordrawable.animated.R$dimen: int notification_content_margin_start +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_DropDownItem_Spinner +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Colored +androidx.appcompat.R$id: int accessibility_custom_action_28 +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Body1 +io.reactivex.internal.util.EmptyComponent: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: long serialVersionUID +androidx.appcompat.R$id: int alertTitle +okhttp3.ResponseBody$1 +androidx.constraintlayout.widget.VirtualLayout: void setVisibility(int) +androidx.appcompat.R$string: int search_menu_title +okio.GzipSource: GzipSource(okio.Source) +com.google.android.material.slider.RangeSlider +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List daisan +com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalGap +androidx.preference.R$dimen: int abc_text_size_large_material +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +cyanogenmod.hardware.DisplayMode: DisplayMode(android.os.Parcel,cyanogenmod.hardware.DisplayMode$1) +wangdaye.com.geometricweather.R$id: int widget_day_weather +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitationProbability +androidx.preference.R$styleable: int MenuView_android_itemBackground +james.adaptiveicon.R$style: int Widget_AppCompat_Button_Small +com.google.android.material.R$styleable: int AppBarLayout_statusBarForeground +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_2 +com.turingtechnologies.materialscrollbar.R$color +com.jaredrummler.android.colorpicker.R$drawable: int preference_list_divider_material +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_fontFamily +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_orientation +com.google.android.material.internal.ScrimInsetsFrameLayout: void setDrawTopInsetForeground(boolean) +com.google.android.material.R$styleable: int ClockHandView_selectorSize +cyanogenmod.weather.IRequestInfoListener$Stub: cyanogenmod.weather.IRequestInfoListener asInterface(android.os.IBinder) +androidx.work.R$id: int accessibility_custom_action_4 +okio.Timeout: okio.Timeout clearDeadline() +okhttp3.internal.connection.RouteSelector: okhttp3.EventListener eventListener +androidx.appcompat.widget.ActionBarOverlayLayout: void setWindowCallback(android.view.Window$Callback) +retrofit2.Retrofit: retrofit2.CallAdapter callAdapter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) +okhttp3.internal.connection.RealConnection: void cancel() +cyanogenmod.themes.ThemeManager$1$2: ThemeManager$1$2(cyanogenmod.themes.ThemeManager$1,boolean) +wangdaye.com.geometricweather.db.entities.LocationEntityDao: LocationEntityDao(org.greenrobot.greendao.internal.DaoConfig) +androidx.preference.R$attr: int windowActionModeOverlay +okhttp3.ResponseBody: byte[] bytes() +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: long serialVersionUID +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List alertEntityList +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_button_material +com.turingtechnologies.materialscrollbar.R$attr: int tabIconTint +wangdaye.com.geometricweather.R$attr: int minWidth +com.google.android.material.R$string: int material_timepicker_pm io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void signalConsumer() -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarNeutralButtonStyle -androidx.loader.R$dimen: int notification_main_column_padding_top -com.jaredrummler.android.colorpicker.R$attr: int navigationIcon -com.google.android.material.card.MaterialCardView -okio.AsyncTimeout$Watchdog -com.turingtechnologies.materialscrollbar.R$attr: int cardBackgroundColor -com.turingtechnologies.materialscrollbar.R$attr: int tabSelectedTextColor -androidx.appcompat.R$color: int notification_icon_bg_color -androidx.preference.R$attr: int layout_keyline -cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CONTENT_URI -wangdaye.com.geometricweather.R$attr: int isLightTheme +com.xw.repo.bubbleseekbar.R$string: int abc_action_bar_home_description +androidx.preference.UnPressableLinearLayout: UnPressableLinearLayout(android.content.Context) +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_2_material +androidx.cardview.R$dimen: R$dimen() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: int getStatus() +wangdaye.com.geometricweather.R$styleable: int Constraint_transitionPathRotate +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeAppearanceOverlay +wangdaye.com.geometricweather.R$id: int action_context_bar +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog +wangdaye.com.geometricweather.R$styleable: int PropertySet_visibilityMode +com.github.rahatarmanahmed.cpv.CircularProgressView: void initAttributes(android.util.AttributeSet,int) +com.google.android.material.textfield.TextInputLayout: int getHintCurrentCollapsedTextColor() +wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_icon_width +okhttp3.internal.cache.DiskLruCache$Editor: okhttp3.internal.cache.DiskLruCache$Entry entry +wangdaye.com.geometricweather.R$styleable: int Chip_ensureMinTouchTargetSize +com.google.android.material.R$id: int submenuarrow +okio.BufferedSink: java.io.OutputStream outputStream() +androidx.viewpager2.R$styleable: int FontFamily_fontProviderAuthority +com.google.android.material.R$dimen: int design_navigation_item_horizontal_padding +com.google.android.material.R$attr: int textAppearanceSearchResultSubtitle +okhttp3.internal.http.HttpHeaders: okio.ByteString TOKEN_DELIMITERS +okhttp3.internal.http2.Http2Connection$5: int val$streamId +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: long remaining +androidx.constraintlayout.widget.R$attr: int deltaPolarAngle +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_NoActionBar +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDataConnectionSelectedOnSub(int) +com.turingtechnologies.materialscrollbar.R$layout: int design_layout_snackbar +com.google.android.material.datepicker.DateValidatorPointForward: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_subtitleTextStyle +com.google.android.material.R$styleable: int AppCompatTheme_colorBackgroundFloating +com.google.android.material.R$styleable: int MaterialCalendar_dayStyle +james.adaptiveicon.R$id: int search_badge +androidx.appcompat.widget.AppCompatSpinner$SavedState: android.os.Parcelable$Creator CREATOR +okio.Buffer$1: java.lang.String toString() +com.google.android.material.R$color: int abc_hint_foreground_material_dark +wangdaye.com.geometricweather.R$anim: int mtrl_card_lowers_interpolator +com.google.android.material.R$dimen: int design_snackbar_min_width +androidx.hilt.R$styleable: int FontFamilyFont_font +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_hideMotionSpec +androidx.constraintlayout.widget.R$styleable: int[] AppCompatTextView +androidx.appcompat.widget.SwitchCompat: void setThumbPosition(float) +androidx.lifecycle.extensions.R$drawable +com.google.android.material.R$color: int mtrl_tabs_colored_ripple_color +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf +com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ListPopupWindow +okio.Okio$2: okio.Timeout timeout() +wangdaye.com.geometricweather.R$color: int material_grey_300 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: FlowableOnBackpressureError$BackpressureErrorSubscriber(org.reactivestreams.Subscriber) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String detail +okhttp3.internal.http2.Http2Reader$Handler: void rstStream(int,okhttp3.internal.http2.ErrorCode) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean images +cyanogenmod.providers.CMSettings$Global: int getIntForUser(android.content.ContentResolver,java.lang.String,int) +wangdaye.com.geometricweather.R$string: int abc_searchview_description_voice +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getIce() androidx.constraintlayout.widget.R$color: int switch_thumb_disabled_material_light -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceCaption -androidx.drawerlayout.R$id: int action_container -wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogStyle -androidx.hilt.work.R$string -wangdaye.com.geometricweather.R$attr: int actionBarTabTextStyle -okhttp3.internal.tls.OkHostnameVerifier: boolean verifyHostname(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitationDuration -wangdaye.com.geometricweather.R$layout: int preference_category_material -androidx.appcompat.R$string: int abc_action_bar_home_description -com.google.android.material.R$layout: int test_toolbar_custom_background -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getWindSpeed() -androidx.preference.R$styleable: int View_paddingEnd -wangdaye.com.geometricweather.R$drawable: int notif_temp_115 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$color: int checkbox_themeable_attribute_color -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_color -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA -okhttp3.MultipartBody: okhttp3.MediaType contentType() -androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -com.bumptech.glide.integration.okhttp.R$id: int text2 -androidx.appcompat.R$color: int material_blue_grey_900 -androidx.recyclerview.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_z -android.didikee.donate.R$styleable: int ViewStubCompat_android_inflatedId -wangdaye.com.geometricweather.db.entities.DailyEntity: void setSunRiseDate(java.util.Date) -com.google.android.material.R$styleable: int[] CustomAttribute -io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier INSTANCE -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_Solid -android.didikee.donate.R$styleable: int SearchView_goIcon -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$color: int cardview_light_background -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.LocationEntity,int) -cyanogenmod.os.Build$CM_VERSION_CODES: int APRICOT -androidx.coordinatorlayout.R$id: int accessibility_custom_action_11 -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type LEFT -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Light -okhttp3.internal.cache.CacheInterceptor: okhttp3.Headers combine(okhttp3.Headers,okhttp3.Headers) -okhttp3.internal.ws.WebSocketWriter: okhttp3.internal.ws.WebSocketWriter$FrameSink frameSink -cyanogenmod.themes.IThemeChangeListener$Stub: IThemeChangeListener$Stub() +okhttp3.internal.cache.DiskLruCache +okhttp3.internal.connection.RealConnection: okhttp3.Request createTunnelRequest() +okhttp3.HttpUrl$Builder: int portColonOffset(java.lang.String,int,int) +okhttp3.internal.cache.DiskLruCache: java.util.regex.Pattern LEGAL_KEY_PATTERN +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setStreet(java.lang.String) +okhttp3.internal.tls.DistinguishedNameParser: char getUTF8() +androidx.appcompat.R$styleable: int MenuItem_android_numericShortcut +com.google.android.material.snackbar.SnackbarContentLayout: android.widget.Button getActionView() +com.google.android.material.R$styleable: int Variant_constraints +com.google.android.material.R$attr: int textAppearanceSearchResultTitle +cyanogenmod.app.PartnerInterface: void shutdownDevice() +android.didikee.donate.R$id: int submit_area +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_height +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.Object NextOffsetChange +androidx.vectordrawable.R$id: int accessibility_custom_action_27 +androidx.constraintlayout.widget.R$attr: int textAppearanceSmallPopupMenu +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: KeyguardExternalViewProviderService$1$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService$1,android.os.Bundle) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_CheckedTextView +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_RC4_40_SHA +okhttp3.internal.http2.Http2Reader$Handler: void goAway(int,okhttp3.internal.http2.ErrorCode,okio.ByteString) +james.adaptiveicon.R$styleable: int ActionBar_indeterminateProgressStyle +com.google.android.material.R$styleable: int BottomAppBar_fabCradleVerticalOffset +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer bulletinCote +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startY +android.didikee.donate.R$dimen: int abc_action_bar_stacked_max_height +androidx.appcompat.R$style: int Widget_AppCompat_RatingBar_Small +cyanogenmod.themes.ThemeChangeRequest: java.util.Map getPerAppOverlays() +okhttp3.internal.http.RetryAndFollowUpInterceptor: int MAX_FOLLOW_UPS +wangdaye.com.geometricweather.R$drawable: int abc_spinner_textfield_background_material +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analog_light +wangdaye.com.geometricweather.R$string: int feedback_readd_location_after_changing_source +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum() +androidx.work.R$styleable: int GradientColor_android_centerY +androidx.activity.R$color: int notification_icon_bg_color +james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_DropDown +com.google.android.material.R$styleable: int SnackbarLayout_elevation +io.reactivex.Observable: io.reactivex.Observable concatMapEagerDelayError(io.reactivex.functions.Function,boolean) +com.bumptech.glide.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.main.dialogs.LocationPermissionStatementDialog: LocationPermissionStatementDialog() +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +com.google.android.material.R$drawable: int abc_ic_star_half_black_36dp +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace valueOf(java.lang.String) +com.google.android.material.R$styleable: int[] FloatingActionButton_Behavior_Layout +androidx.constraintlayout.widget.R$attr: int windowMinWidthMinor +com.google.android.material.R$integer: int abc_config_activityDefaultDur +androidx.appcompat.widget.ActionBarContainer: void setTabContainer(androidx.appcompat.widget.ScrollingTabContainerView) +androidx.coordinatorlayout.R$attr: int ttcIndex +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_to_on_mtrl_015 +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String mName +io.reactivex.internal.subscriptions.BasicQueueSubscription: int requestFusion(int) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_always_show_bubble_delay +androidx.vectordrawable.R$layout: int custom_dialog +com.google.android.material.chip.ChipGroup: int getChipSpacingVertical() +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setBottomIconDrawable(android.graphics.drawable.Drawable) +cyanogenmod.themes.ThemeChangeRequest$RequestType +androidx.appcompat.R$dimen: int abc_text_size_button_material +androidx.hilt.work.R$anim: int fragment_fade_enter +com.jaredrummler.android.colorpicker.R$attr: int selectableItemBackgroundBorderless +androidx.preference.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +android.didikee.donate.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: boolean done +com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getEndIconDrawable() +com.google.gson.stream.JsonWriter: java.lang.String[] REPLACEMENT_CHARS +com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_weight +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +com.google.android.material.R$attr: int drawableTint +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplace +androidx.activity.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$string: int feedback_today_precipitation_alert +wangdaye.com.geometricweather.R$dimen: int mtrl_edittext_rectangle_top_offset +com.google.android.material.slider.Slider: int getTrackWidth() +androidx.constraintlayout.widget.R$attr: int roundPercent wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleVerticalOffset -androidx.preference.R$style: int Widget_AppCompat_CompoundButton_CheckBox -cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(java.lang.String,java.lang.String,android.net.Uri,android.net.Uri) -androidx.hilt.lifecycle.R$styleable: int FragmentContainerView_android_tag -androidx.constraintlayout.utils.widget.ImageFilterButton: float getContrast() -androidx.viewpager2.R$drawable: int notification_bg_low_normal -androidx.appcompat.R$styleable: int AppCompatTheme_searchViewStyle -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void clear() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$id: int unchecked -com.google.android.material.R$styleable: int AppCompatTheme_actionButtonStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ShapeableImageView -retrofit2.Callback: void onResponse(retrofit2.Call,retrofit2.Response) -com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -androidx.preference.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetDailyEntityList() -com.google.gson.stream.JsonReader: boolean isLenient() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.R$styleable: int TextAppearance_android_textStyle -androidx.appcompat.R$styleable: int LinearLayoutCompat_showDividers -androidx.appcompat.widget.Toolbar$SavedState -androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -com.google.android.material.R$layout: int material_timepicker -okhttp3.internal.http2.Http2: byte TYPE_SETTINGS -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: int index -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: double Value -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_measureWithLargestChild -androidx.appcompat.R$color: int foreground_material_dark -wangdaye.com.geometricweather.R$string: int settings_title_forecast_tomorrow_time -androidx.vectordrawable.R$styleable: int GradientColor_android_endX -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addFormDataPart(java.lang.String,java.lang.String,okhttp3.RequestBody) -retrofit2.HttpServiceMethod: retrofit2.RequestFactory requestFactory -com.google.android.material.R$color: int button_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: int getIconSize() -androidx.recyclerview.R$styleable: int GradientColor_android_gradientRadius -com.google.android.material.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextSpinner -wangdaye.com.geometricweather.R$string: int content_des_swipe_right_to_delete -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void otherError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer -androidx.preference.R$style: int Platform_V21_AppCompat -com.google.android.material.R$attr: int checkedTextViewStyle -io.reactivex.internal.observers.ForEachWhileObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onError(java.lang.Throwable) -james.adaptiveicon.R$dimen: int abc_action_bar_stacked_max_height -wangdaye.com.geometricweather.R$dimen: int appcompat_dialog_background_inset -com.google.android.material.R$attr: int editTextColor -com.google.android.material.R$style: int Theme_MaterialComponents_CompactMenu -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTintMode -com.xw.repo.bubbleseekbar.R$attr: int bsb_rtl -com.google.android.material.R$dimen: int mtrl_btn_hovered_z -wangdaye.com.geometricweather.R$id: int material_label -com.turingtechnologies.materialscrollbar.R$attr: int closeItemLayout -retrofit2.http.Field: boolean encoded() -androidx.preference.R$attr: int contentInsetStartWithNavigation -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric Metric -wangdaye.com.geometricweather.R$attr: int contrast -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTypeface(android.graphics.Typeface) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupMenu -androidx.constraintlayout.helper.widget.Layer: void setElevation(float) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_PopupMenu -androidx.appcompat.R$styleable: int[] StateListDrawableItem -okio.Buffer: okio.BufferedSink writeLongLe(long) -androidx.loader.R$dimen: int notification_action_icon_size -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Large -com.turingtechnologies.materialscrollbar.R$attr: int tabTextColor -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit valueOf(java.lang.String) -androidx.drawerlayout.R$attr: R$attr() -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_padding -android.didikee.donate.R$styleable: int Toolbar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$attr: int tickColorActive -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -com.google.android.material.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_trackTint -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Slider -com.google.android.material.R$dimen: int design_snackbar_text_size -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_toRightOf -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_THEMES -cyanogenmod.app.CustomTile: boolean collapsePanel -android.didikee.donate.R$styleable: int SwitchCompat_android_textOff -androidx.constraintlayout.widget.R$anim -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_elevation -okhttp3.internal.http2.Http2: byte TYPE_PUSH_PROMISE -com.jaredrummler.android.colorpicker.R$id: int custom -okhttp3.CacheControl: boolean noStore() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_percent -androidx.preference.R$styleable: int AppCompatSeekBar_tickMarkTint -com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_swipe_escape_max_velocity -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayDetailsWidgetConfigActivity: Hilt_ClockDayDetailsWidgetConfigActivity() -androidx.work.R$styleable: int GradientColor_android_endY -com.google.android.material.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -cyanogenmod.profiles.LockSettings: int describeContents() -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.HistoryEntity) -wangdaye.com.geometricweather.common.ui.activities.AllergenActivity: AllergenActivity() -okhttp3.Cache$2: boolean canRemove -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setNightIconDrawable(android.graphics.drawable.Drawable) -android.didikee.donate.R$layout: int abc_dialog_title_material -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: boolean isDisposed() -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivityStopped(android.app.Activity) -wangdaye.com.geometricweather.R$attr: int buttonTint -androidx.appcompat.widget.ActionMenuPresenter$SavedState -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onError(java.lang.Throwable) -cyanogenmod.app.CustomTile: android.content.Intent onSettingsClick -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$x -okhttp3.Interceptor$Chain -com.google.android.material.R$id: int right_icon -cyanogenmod.app.Profile: cyanogenmod.profiles.AirplaneModeSettings mAirplaneMode -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_transitionEasing -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult -james.adaptiveicon.R$styleable: int ActionBar_contentInsetEnd -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowNoTitle -androidx.viewpager.R$dimen: int notification_small_icon_background_padding -james.adaptiveicon.R$styleable: int RecycleListView_paddingBottomNoButtons -androidx.preference.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: io.reactivex.disposables.Disposable upstream -androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context) -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat -wangdaye.com.geometricweather.R$attr: int layoutManager -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherText(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_section_text -androidx.appcompat.R$id: int accessibility_custom_action_18 -androidx.constraintlayout.widget.R$layout: int abc_screen_simple -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListPopupWindow -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: int offset -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_background -com.github.rahatarmanahmed.cpv.CircularProgressView$8: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Title -androidx.lifecycle.ViewModelStore -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_16 -androidx.vectordrawable.animated.R$id: int tag_accessibility_clickable_spans -okhttp3.HttpUrl: java.lang.String query() -androidx.appcompat.R$styleable: int MenuGroup_android_visible -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display3 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeApparentTemperature() -wangdaye.com.geometricweather.R$mipmap: int ic_launcher -wangdaye.com.geometricweather.R$styleable: int BackgroundStyle_selectableItemBackground -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_android_enabled -androidx.transition.R$id: int ghost_view_holder -cyanogenmod.app.IPartnerInterface$Stub$Proxy: void setAirplaneModeEnabled(boolean) -com.google.android.material.R$attr: int hideOnContentScroll -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: boolean requestDismiss() -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_backgroundTint -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType STRING_TYPE -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BACK_WAKE_SCREEN_VALIDATOR -okhttp3.OkHttpClient: java.util.List connectionSpecs() -cyanogenmod.app.CustomTile$ExpandedStyle$1: java.lang.Object createFromParcel(android.os.Parcel) -io.reactivex.Observable: io.reactivex.Observable skipWhile(io.reactivex.functions.Predicate) -androidx.preference.R$styleable: int GradientColor_android_endY -androidx.preference.R$dimen: int abc_text_size_medium_material -com.jaredrummler.android.colorpicker.R$styleable: R$styleable() -androidx.dynamicanimation.R$styleable: int ColorStateListItem_android_color -retrofit2.RequestFactory: retrofit2.RequestFactory parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method) -james.adaptiveicon.R$attr: int textAppearanceListItem -androidx.appcompat.R$id: int line3 -androidx.appcompat.R$attr: int colorAccent -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_voice -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: double Value -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_3_00 -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_16dp -james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyleSmall -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.WeatherEntity) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonSetDate(java.util.Date) -okhttp3.internal.http2.Http2Writer: okio.BufferedSink sink -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyBottomLeft -cyanogenmod.app.CustomTileListenerService: void removeCustomTile(java.lang.String,java.lang.String,int) -androidx.preference.R$styleable: int PreferenceImageView_android_maxWidth -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_max -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification -com.google.android.material.R$styleable: int Constraint_visibilityMode -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float co -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.WeatherEntityDao getWeatherEntityDao() -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customColorDrawableValue -com.google.android.material.R$styleable: int Tooltip_android_minHeight -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: long serialVersionUID -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -com.google.android.material.R$attr: int hideOnScroll -com.xw.repo.bubbleseekbar.R$anim: int abc_popup_exit -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: java.lang.String WeatherCode -androidx.fragment.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColorSchemeColor(int) -com.google.android.material.R$attr: int layout -androidx.fragment.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_62 -retrofit2.ParameterHandler$QueryMap: boolean encoded -com.google.android.material.R$interpolator: int mtrl_fast_out_slow_in -wangdaye.com.geometricweather.R$color: int primary_text_disabled_material_dark -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode SLEET -com.google.android.material.R$styleable: int AnimatedStateListDrawableItem_android_id -com.google.android.material.R$styleable: int AppCompatTheme_colorPrimary -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_DASHES -wangdaye.com.geometricweather.R$styleable: int[] ActionBarLayout -androidx.fragment.app.Fragment: Fragment() -com.google.android.material.bottomnavigation.BottomNavigationView: void setOnNavigationItemSelectedListener(com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemSelectedListener) -io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite[] values() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onComplete() -androidx.work.R$id: int accessibility_custom_action_23 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_131 -com.google.android.material.imageview.ShapeableImageView: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial -wangdaye.com.geometricweather.R$layout: int container_main_sun_moon -com.xw.repo.bubbleseekbar.R$id: int src_in -androidx.lifecycle.Lifecycling: boolean isLifecycleParent(java.lang.Class) -com.turingtechnologies.materialscrollbar.R$attr: int thumbTint -wangdaye.com.geometricweather.R$attr: int flow_verticalAlign -androidx.constraintlayout.widget.R$color: int primary_text_default_material_light -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ProgressBar -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.R$styleable: int AppCompatTheme_windowFixedWidthMinor -com.google.android.material.R$styleable: int CollapsingToolbarLayout_statusBarScrim -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification -android.didikee.donate.R$styleable: int AppCompatTheme_dividerHorizontal -androidx.appcompat.resources.R$attr: int fontProviderFetchTimeout -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onComplete() -androidx.constraintlayout.widget.R$dimen: int disabled_alpha_material_dark -okhttp3.internal.connection.RouteSelector: java.util.List postponedRoutes -com.turingtechnologies.materialscrollbar.R$styleable: int ScrimInsetsFrameLayout_insetForeground -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingStart -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.reflect.Type responseType -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void drainLoop() -wangdaye.com.geometricweather.common.basic.models.Location: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$attr: int startIconContentDescription -cyanogenmod.providers.CMSettings$Secure: java.lang.String STATS_COLLECTION -cyanogenmod.app.ICMTelephonyManager -com.google.android.material.R$id: int notification_background -androidx.dynamicanimation.R$styleable: int GradientColorItem_android_offset -androidx.constraintlayout.widget.R$attr: int flow_firstVerticalStyle -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial -androidx.appcompat.R$string: R$string() -com.google.android.material.R$string: int abc_menu_meta_shortcut_label -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ButtonBar -retrofit2.http.POST: java.lang.String value() -androidx.preference.R$styleable: int ViewStubCompat_android_layout -androidx.constraintlayout.widget.R$attr: int pathMotionArc -androidx.core.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: java.lang.String[] getPermissions() -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long readKey(android.database.Cursor,int) -androidx.hilt.R$style: int Widget_Compat_NotificationActionText -org.greenrobot.greendao.AbstractDao: java.lang.Object loadCurrent(android.database.Cursor,int,boolean) -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge -androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_weight -androidx.viewpager2.R$id: int accessibility_custom_action_21 -okhttp3.internal.http.HttpHeaders: java.util.Set varyFields(okhttp3.Headers) -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: java.lang.String styleId -wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_layout -androidx.viewpager2.R$drawable: int notification_bg_low -androidx.appcompat.R$styleable: int AppCompatTheme_windowMinWidthMajor -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Daylight -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_10 -androidx.customview.R$drawable: int notification_template_icon_low_bg -androidx.lifecycle.ProcessLifecycleOwner: boolean mPauseSent -cyanogenmod.externalviews.ExternalViewProperties: boolean isVisible() -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit$Calculator unitCalculator -wangdaye.com.geometricweather.R$id: int notification_multi_city -androidx.hilt.R$attr: int fontProviderFetchTimeout -androidx.appcompat.widget.AppCompatButton: int[] getAutoSizeTextAvailableSizes() -androidx.hilt.lifecycle.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawableItem_android_drawable -james.adaptiveicon.R$dimen: int abc_dialog_list_padding_top_no_title -retrofit2.ServiceMethod: ServiceMethod() -io.reactivex.internal.observers.DeferredScalarDisposable: int requestFusion(int) -com.jaredrummler.android.colorpicker.R$id: int shortcut -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -androidx.viewpager.widget.ViewPager: void setOffscreenPageLimit(int) -cyanogenmod.providers.CMSettings$Global: boolean shouldInterceptSystemProvider(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintEnd_toStartOf -com.turingtechnologies.materialscrollbar.R$drawable: int navigation_empty_icon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setPrecipitation(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean) -android.didikee.donate.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendHourlyProvider -androidx.preference.R$style: int TextAppearance_AppCompat_Body2 -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedTextWithoutUnit(float) -wangdaye.com.geometricweather.R$attr: int layout_constrainedWidth -wangdaye.com.geometricweather.R$string: int yesterday -wangdaye.com.geometricweather.R$animator: int weather_hail_2 -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder supportsTlsExtensions(boolean) -androidx.vectordrawable.animated.R$id: int tag_transition_group -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar -com.google.android.material.R$styleable: int KeyAttribute_android_translationY -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer -okhttp3.Response: java.lang.String message -com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_out_top -androidx.fragment.R$id: int accessibility_custom_action_27 +androidx.constraintlayout.widget.R$id: int icon_group +androidx.appcompat.R$integer: int abc_config_activityShortDur +wangdaye.com.geometricweather.R$id: int stretch +io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function) +wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial() +wangdaye.com.geometricweather.R$attr: int colorOnSecondary +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: int getStatus() +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +okhttp3.internal.http2.Http2Codec: okhttp3.Protocol protocol +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +wangdaye.com.geometricweather.R$styleable: int SearchView_defaultQueryHint +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Small +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_keylines +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitationDuration +retrofit2.ParameterHandler$Body: void apply(retrofit2.RequestBuilder,java.lang.Object) +androidx.preference.R$drawable: int abc_btn_colored_material +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Integer getAqiIndex() +androidx.constraintlayout.widget.R$styleable: int[] LinearLayoutCompat +wangdaye.com.geometricweather.R$id: int month_navigation_bar +androidx.vectordrawable.animated.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.db.entities.HistoryEntity: HistoryEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,int,int) +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.TableStatements statements +androidx.preference.R$styleable: int MenuGroup_android_checkableBehavior +wangdaye.com.geometricweather.R$string: int abc_toolbar_collapse_description +com.google.android.material.R$attr: int duration +com.jaredrummler.android.colorpicker.R$attr: int initialExpandedChildrenCount +wangdaye.com.geometricweather.common.basic.models.weather.Alert: long getTime() +okio.BufferedSource: long indexOfElement(okio.ByteString) +com.google.android.material.R$styleable: int MaterialCardView_rippleColor +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getIce() +wangdaye.com.geometricweather.R$attr: int tabPaddingEnd +androidx.appcompat.R$attr: int contentDescription +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +com.xw.repo.bubbleseekbar.R$attr: int layout_anchorGravity +androidx.lifecycle.FullLifecycleObserverAdapter: androidx.lifecycle.FullLifecycleObserver mFullLifecycleObserver +cyanogenmod.providers.CMSettings$System: java.lang.String QS_SHOW_BRIGHTNESS_SLIDER +cyanogenmod.app.Profile: int getExpandedDesktopMode() +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sColorValidator +cyanogenmod.providers.CMSettings$System: java.lang.String RECENTS_SHOW_SEARCH_BAR +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int SnowProbability +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_transitionEasing +com.google.android.material.R$interpolator: int mtrl_fast_out_linear_in +io.reactivex.internal.subscriptions.DeferredScalarSubscription: long serialVersionUID +androidx.preference.R$string: int summary_collapsed_preference_list +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3 +james.adaptiveicon.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +androidx.lifecycle.extensions.R$id: int tag_screen_reader_focusable +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_tooltipText +com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius +com.jaredrummler.android.colorpicker.R$id: int transparency_text +james.adaptiveicon.R$attr: int listPreferredItemPaddingLeft +com.jaredrummler.android.colorpicker.R$styleable: int[] Preference +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.ExternalViewProperties mExternalViewProperties +androidx.preference.R$styleable: int TextAppearance_textAllCaps +okhttp3.internal.connection.RouteSelector: java.lang.String getHostString(java.net.InetSocketAddress) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: double lon +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String o3Desc +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +com.bumptech.glide.integration.okhttp.R$attr: int layout_dodgeInsetEdges +com.google.android.material.R$style: int Base_AlertDialog_AppCompat_Light +android.didikee.donate.R$id: int collapseActionView +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: ObservableCreate$CreateEmitter(io.reactivex.Observer) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleContentDescription +okhttp3.internal.publicsuffix.PublicSuffixDatabase: void readTheList() +androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getGrassLevel() +com.google.android.material.R$attr: int fontStyle +io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer) +androidx.viewpager.R$styleable: int GradientColor_android_startY +com.google.android.material.R$id: int mtrl_calendar_days_of_week +wangdaye.com.geometricweather.R$attr: int dragDirection +com.google.android.material.R$styleable: int NavigationView_itemTextColor +wangdaye.com.geometricweather.R$attr: int windowFixedHeightMinor +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SearchView +androidx.constraintlayout.widget.R$color: int switch_thumb_material_light +com.google.android.material.R$styleable: int ButtonBarLayout_allowStacking +com.bumptech.glide.R$styleable: int GradientColor_android_gradientRadius +androidx.preference.R$color: int background_material_dark +wangdaye.com.geometricweather.R$styleable: int[] RadialViewGroup +wangdaye.com.geometricweather.R$attr: int closeItemLayout +com.turingtechnologies.materialscrollbar.R$styleable: int[] TouchScrollBar +androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupWindow +androidx.loader.R$styleable: int FontFamilyFont_android_font +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_bias +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_PLAY_QUEUE +cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String mName +androidx.preference.R$styleable: int SwitchCompat_track +cyanogenmod.app.StatusBarPanelCustomTile: int uid +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +io.reactivex.internal.util.VolatileSizeArrayList: boolean remove(java.lang.Object) +androidx.fragment.R$styleable: int FragmentContainerView_android_tag +androidx.core.R$color: int androidx_core_secondary_text_default_material_light +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$styleable: int[] StateListDrawableItem +com.xw.repo.bubbleseekbar.R$attr: int actionBarWidgetTheme +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setValue(java.util.List) +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_background_transition_holo_light +wangdaye.com.geometricweather.R$string: int settings_title_distance_unit +androidx.appcompat.R$style: int Widget_Compat_NotificationActionText +com.google.android.material.R$dimen: int default_dimension +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_ttcIndex +com.jaredrummler.android.colorpicker.R$id: int forever +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: AccuCurrentResult$TemperatureSummary$Past12HourRange() +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +com.google.android.material.R$layout: int design_navigation_menu_item +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowDy +androidx.legacy.coreutils.R$styleable: int[] FontFamily +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: void run() +androidx.preference.R$color: int dim_foreground_disabled_material_dark +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginRight +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_search_api_material +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: ObservableZip$ZipCoordinator(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) +wangdaye.com.geometricweather.R$string: int widget_day +wangdaye.com.geometricweather.R$styleable: int[] MenuView +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_weight +okhttp3.OkHttpClient: java.util.List connectionSpecs +android.didikee.donate.R$color: int bright_foreground_material_light +android.didikee.donate.R$string: int abc_toolbar_collapse_description +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region +wangdaye.com.geometricweather.R$styleable: int MockView_mock_diagonalsColor androidx.appcompat.resources.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotationY -androidx.appcompat.widget.ActionBarOverlayLayout: ActionBarOverlayLayout(android.content.Context) -androidx.vectordrawable.animated.R$attr: int alpha -androidx.fragment.R$id: int accessibility_custom_action_18 -androidx.preference.R$attr: int activityChooserViewStyle -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Large -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onNext(java.lang.Object) -androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: io.reactivex.Observer child -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_2 -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_title -okhttp3.internal.http.StatusLine: int HTTP_CONTINUE -androidx.coordinatorlayout.R$styleable: int ColorStateListItem_alpha -androidx.preference.R$styleable: int Toolbar_navigationIcon -androidx.appcompat.R$style: int AlertDialog_AppCompat_Light -cyanogenmod.app.LiveLockScreenManager: boolean getLiveLockScreenEnabled() -androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat -androidx.coordinatorlayout.widget.CoordinatorLayout: java.util.List getDependencySortedChildren() -com.jaredrummler.android.colorpicker.R$styleable: int[] FontFamily -com.google.android.material.R$attr: int voiceIcon -cyanogenmod.profiles.RingModeSettings: boolean isDirty() -androidx.appcompat.widget.AppCompatSpinner: void setDropDownHorizontalOffset(int) -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogMessage -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type[] values() -com.xw.repo.bubbleseekbar.R$attr: int titleMarginStart -com.google.android.material.slider.Slider: void setHaloRadiusResource(int) -androidx.dynamicanimation.R$drawable: int notification_icon_background -androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context) -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -androidx.preference.R$id: int accessibility_custom_action_0 -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int listMenuViewStyle -com.turingtechnologies.materialscrollbar.R$attr: int chipIconSize -androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_android_background -androidx.appcompat.widget.AppCompatImageButton: android.content.res.ColorStateList getSupportBackgroundTintList() -androidx.activity.R$styleable: int GradientColor_android_gradientRadius -okhttp3.internal.ws.WebSocketWriter$FrameSink: void flush() -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: long serialVersionUID -androidx.coordinatorlayout.R$id: int accessibility_custom_action_18 -cyanogenmod.weather.CMWeatherManager$RequestStatus: int SUBMITTED_TOO_SOON -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver parent -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_37 -androidx.hilt.work.R$id: int actions -com.jaredrummler.android.colorpicker.R$string: int abc_menu_alt_shortcut_label -retrofit2.ParameterHandler$Body: retrofit2.Converter converter -okhttp3.internal.Internal: void addLenient(okhttp3.Headers$Builder,java.lang.String,java.lang.String) -androidx.hilt.work.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_normalContainer -com.google.android.material.snackbar.SnackbarContentLayout: android.widget.Button getActionView() -com.jaredrummler.android.colorpicker.R$layout: int notification_template_icon_group -androidx.viewpager2.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button -wangdaye.com.geometricweather.R$attr: int boxCornerRadiusTopEnd -com.google.android.material.R$styleable: int AppCompatTheme_colorControlHighlight -androidx.preference.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: java.lang.String modeId -androidx.appcompat.resources.R$id: int info -androidx.recyclerview.R$layout: int custom_dialog -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_popupBackground -androidx.appcompat.resources.R$dimen: int notification_right_side_padding_top -android.didikee.donate.R$id: int action_text -com.google.android.material.R$attr: int inverse -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onPause() -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickActiveTintList() -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_subtitle_material_toolbar -com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.badge.BadgeDrawable getBadge() -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setNightIndicatorRotation(float) -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_strokeColor -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSyncDuration -android.didikee.donate.R$styleable: int AppCompatTheme_dividerVertical -com.bumptech.glide.R$string: R$string() -com.google.android.material.R$attr: int iconPadding -james.adaptiveicon.R$styleable: int FontFamilyFont_android_font -cyanogenmod.app.CMContextConstants$Features: CMContextConstants$Features() -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -com.google.android.material.R$styleable: int KeyTimeCycle_waveDecay -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -androidx.activity.R$integer: int status_bar_notification_info_maxnum -androidx.constraintlayout.widget.R$attr: int actionBarItemBackground -androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation: MfForecastResult$DailyForecast$Precipitation() -androidx.appcompat.R$dimen: int notification_main_column_padding_top -com.google.android.material.R$styleable: int StateListDrawable_android_visible -com.google.android.material.R$styleable: int SnackbarLayout_elevation -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float ceiling -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: AndroidPlatform$AndroidTrustRootIndex(javax.net.ssl.X509TrustManager,java.lang.reflect.Method) -androidx.appcompat.widget.AppCompatCheckBox: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontWeight -androidx.recyclerview.R$id: int accessibility_custom_action_9 -cyanogenmod.power.IPerformanceManager$Stub$Proxy: boolean getProfileHasAppProfiles(int) -wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentWidth -androidx.constraintlayout.widget.R$style: int Base_V28_Theme_AppCompat_Light -androidx.preference.R$color: int switch_thumb_disabled_material_light -androidx.constraintlayout.widget.R$attr: int textAppearanceListItemSecondary -androidx.appcompat.R$style: int Widget_AppCompat_ActionButton -android.didikee.donate.R$dimen: int abc_panel_menu_list_width -androidx.work.R$bool: int enable_system_job_service_default -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: io.reactivex.FlowableEmitter serialize() -androidx.appcompat.R$styleable: int AppCompatTheme_switchStyle -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.jaredrummler.android.colorpicker.R$styleable: int View_paddingEnd -androidx.appcompat.R$id: int action_menu_divider -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner -cyanogenmod.externalviews.KeyguardExternalView$1: KeyguardExternalView$1(cyanogenmod.externalviews.KeyguardExternalView) -com.google.android.material.R$styleable: int AppCompatTheme_android_windowIsFloating -androidx.hilt.work.R$attr: int fontProviderAuthority -retrofit2.OkHttpCall: java.lang.Object clone() -com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.tabs.TabLayout$Tab getTab() -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History -androidx.appcompat.widget.ActionBarContainer: ActionBarContainer(android.content.Context,android.util.AttributeSet) -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.R$attr: int menu -androidx.appcompat.R$string: int search_menu_title -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_28 -cyanogenmod.externalviews.ExternalView$4: cyanogenmod.externalviews.ExternalView this$0 -androidx.preference.R$styleable: int SearchView_android_inputType -androidx.coordinatorlayout.R$styleable: int GradientColor_android_type -androidx.viewpager2.widget.ViewPager2: void setAdapter(androidx.recyclerview.widget.RecyclerView$Adapter) -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver -com.google.android.material.R$styleable: int CustomAttribute_customPixelDimension -androidx.appcompat.resources.R$id: int blocking -androidx.hilt.lifecycle.R$attr: int ttcIndex -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.String toString() -wangdaye.com.geometricweather.R$attr: int staggered -com.xw.repo.bubbleseekbar.R$id: int tag_transition_group -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windDircEnd -okio.Buffer$UnsafeCursor: Buffer$UnsafeCursor() -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType WEBP_A -androidx.viewpager2.R$id -androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_updateWeather_0 -okhttp3.logging.LoggingEventListener$Factory: okhttp3.EventListener create(okhttp3.Call) -com.google.android.material.R$style: int Base_Widget_AppCompat_EditText -androidx.drawerlayout.R$integer: int status_bar_notification_info_maxnum -androidx.preference.R$styleable: int ActionBar_customNavigationLayout -androidx.constraintlayout.widget.R$attr: int singleChoiceItemLayout -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderQuery -com.google.android.material.slider.BaseSlider: void setTrackActiveTintList(android.content.res.ColorStateList) -android.didikee.donate.R$attr: int radioButtonStyle -wangdaye.com.geometricweather.R$string: int content_des_sunrise -androidx.constraintlayout.widget.R$id: int scrollIndicatorDown -com.google.android.material.R$color: int material_slider_inactive_tick_marks_color -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableBottom -com.turingtechnologies.materialscrollbar.R$drawable: int indicator -androidx.constraintlayout.widget.R$dimen: int abc_text_size_subtitle_material_toolbar -androidx.appcompat.R$styleable: int[] View -com.jaredrummler.android.colorpicker.R$attr: int singleChoiceItemLayout -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getTreeLevel() -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_searchIcon -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial() -android.didikee.donate.R$id: int tabMode -okhttp3.internal.platform.Jdk9Platform: okhttp3.internal.platform.Jdk9Platform buildIfSupported() -com.jaredrummler.android.colorpicker.R$attr: int theme -androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar -cyanogenmod.themes.ThemeManager: void applyDefaultTheme() -com.google.android.material.R$styleable: int ViewPager2_android_orientation -androidx.preference.R$string: int abc_menu_shift_shortcut_label -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void clear() +androidx.viewpager.widget.ViewPager +androidx.constraintlayout.utils.widget.ImageFilterButton: float getSaturation() +androidx.appcompat.R$styleable: int AnimatedStateListDrawableItem_android_drawable +cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_APP_SUGGESTIONS +wangdaye.com.geometricweather.R$color: int highlighted_text_material_light +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: double Value +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemRippleColor(android.content.res.ColorStateList) +cyanogenmod.util.ColorUtils$1 +com.google.android.material.appbar.AppBarLayout$Behavior +wangdaye.com.geometricweather.R$attr: int cornerRadius +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf +android.didikee.donate.R$color: int dim_foreground_disabled_material_dark +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: ObservableCombineLatest$LatestCoordinator(io.reactivex.Observer,io.reactivex.functions.Function,int,int,boolean) +com.jaredrummler.android.colorpicker.R$dimen: int cpv_color_preference_large +androidx.appcompat.R$id: int accessibility_custom_action_12 +androidx.drawerlayout.R$dimen: int compat_button_padding_horizontal_material +cyanogenmod.providers.CMSettings$Global: boolean putLong(android.content.ContentResolver,java.lang.String,long) +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endColor +cyanogenmod.externalviews.ExternalViewProviderService: void onCreate() +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_summaryOff +com.google.android.material.R$styleable: int KeyTrigger_motionTarget +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_DOCUMENT +androidx.viewpager.widget.ViewPager: void setPageMarginDrawable(int) +android.didikee.donate.R$style: int Theme_AppCompat_Light_DarkActionBar +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: void run() +androidx.constraintlayout.widget.R$color: int abc_secondary_text_material_light +androidx.preference.R$dimen: int abc_disabled_alpha_material_light +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Info +james.adaptiveicon.R$styleable: int FontFamilyFont_ttcIndex +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_steps +cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,int,int) +com.jaredrummler.android.colorpicker.R$style: int Platform_Widget_AppCompat_Spinner +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindLevel +wangdaye.com.geometricweather.R$styleable: int[] CircularProgressView +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawableItem_android_drawable +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabGravity +androidx.preference.R$drawable: int abc_control_background_material +androidx.activity.R$dimen: int notification_subtext_size +com.turingtechnologies.materialscrollbar.R$attr: int tooltipFrameBackground +wangdaye.com.geometricweather.R$attr: int expandedTitleTextAppearance +com.turingtechnologies.materialscrollbar.CustomIndicator +androidx.preference.R$styleable: int RecyclerView_reverseLayout +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_READY +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: android.os.IBinder mRemote +com.google.gson.LongSerializationPolicy: LongSerializationPolicy(java.lang.String,int,com.google.gson.LongSerializationPolicy$1) +androidx.preference.R$styleable: int ListPreference_android_entries +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_orientation +androidx.fragment.R$attr: int fontProviderQuery +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircleRadius +androidx.customview.R$attr: int fontProviderQuery +android.didikee.donate.R$styleable: int MenuItem_android_onClick +okhttp3.internal.http2.Http2Stream +androidx.appcompat.R$integer: int abc_config_activityDefaultDur +androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context) +android.didikee.donate.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setValue(java.util.List) +com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +androidx.hilt.R$styleable: int GradientColor_android_type +okhttp3.Authenticator$1: Authenticator$1() +com.google.android.material.R$attr: int switchPadding +androidx.core.os.CancellationSignal: void setOnCancelListener(androidx.core.os.CancellationSignal$OnCancelListener) +wangdaye.com.geometricweather.R$drawable: int weather_haze +com.google.android.material.R$styleable: int TabLayout_tabMaxWidth +wangdaye.com.geometricweather.R$attr: int actionOverflowMenuStyle +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: AccuLocationResult$GeoPosition$Elevation$Metric() +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_creator +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Time +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode HAIL +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean cancelled +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource LOCAL +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_hovered_focused +androidx.lifecycle.ComputableLiveData: void invalidate() +com.google.android.material.chip.Chip: void setCheckedIconTint(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_disableDependentsState androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -android.didikee.donate.R$layout: int abc_list_menu_item_icon -androidx.fragment.R$id: int accessibility_custom_action_1 -cyanogenmod.app.CustomTile$ExpandedStyle$1: cyanogenmod.app.CustomTile$ExpandedStyle createFromParcel(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$attr: int logo -retrofit2.BuiltInConverters: boolean checkForKotlinUnit -wangdaye.com.geometricweather.R$dimen: int hint_alpha_material_light -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -android.didikee.donate.R$id: int alertTitle -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemIconSize -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SearchView_ActionBar -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarButtonStyle -com.bumptech.glide.R$attr: int fontStyle -androidx.constraintlayout.widget.R$styleable: int Spinner_android_entries -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_secondary -okhttp3.internal.platform.AndroidPlatform: int getSdkInt() -androidx.constraintlayout.widget.R$attr: int layout_constraintRight_creator -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void dispose() -org.greenrobot.greendao.AbstractDao: java.lang.Object loadUnique(android.database.Cursor) -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -androidx.fragment.R$styleable: int[] GradientColorItem -com.google.android.material.R$styleable: int CardView_contentPaddingLeft -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void next(java.lang.Object) -androidx.appcompat.resources.R$dimen: R$dimen() -wangdaye.com.geometricweather.R$style: int Preference_Category -com.google.android.material.R$color: int mtrl_navigation_item_icon_tint -androidx.activity.R$styleable: int FontFamilyFont_android_ttcIndex -james.adaptiveicon.R$attr: int alertDialogTheme -wangdaye.com.geometricweather.R$styleable: int MaterialCheckBox_useMaterialThemeColors -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Light -android.didikee.donate.R$style: int Theme_AppCompat_DialogWhenLarge -com.google.android.material.R$style: int Theme_MaterialComponents_Light -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -androidx.constraintlayout.widget.R$color: int background_material_dark -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_color -wangdaye.com.geometricweather.R$styleable: int PropertySet_android_alpha -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -com.google.android.material.slider.BaseSlider: void addOnChangeListener(com.google.android.material.slider.BaseOnChangeListener) -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_textOn -com.google.android.material.R$styleable: int AlertDialog_listItemLayout -wangdaye.com.geometricweather.common.ui.behaviors.InkPageIndicatorBehavior -androidx.viewpager2.R$id: int icon_group -androidx.loader.R$color: int secondary_text_default_material_light -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItemSmall -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onComplete() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver inner -com.google.android.material.R$styleable: int CollapsingToolbarLayout_titleEnabled -com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context) -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$string: int phase_new -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_toolbarStyle -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_ON -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_left_mtrl_light -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherCode -androidx.viewpager.R$styleable: int GradientColor_android_tileMode -com.google.android.material.R$style: int Widget_MaterialComponents_Button_Icon -cyanogenmod.externalviews.KeyguardExternalView$2: void slideLockscreenIn() -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onTimeout(long) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling Ceiling -com.google.android.material.R$styleable: int ChipGroup_chipSpacingVertical -com.xw.repo.bubbleseekbar.R$id: int forever -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -wangdaye.com.geometricweather.R$string: int key_pressure_unit -android.didikee.donate.R$styleable: int[] AppCompatImageView -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderLayout -wangdaye.com.geometricweather.R$id: int shades_layout -com.google.android.material.R$color: int switch_thumb_normal_material_light -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mCallGetCommand -james.adaptiveicon.R$styleable: R$styleable() -com.jaredrummler.android.colorpicker.R$attr: int key -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: long serialVersionUID -com.google.android.material.button.MaterialButtonToggleGroup: int getCheckedButtonId() -wangdaye.com.geometricweather.R$styleable: int PropertySet_visibilityMode -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_DES_CBC_SHA -androidx.lifecycle.ReportFragment$LifecycleCallbacks -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean getFeelsLike() -com.google.android.material.datepicker.Month: android.os.Parcelable$Creator CREATOR -androidx.preference.R$attr: int numericModifiers -james.adaptiveicon.R$integer: R$integer() -androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_height_minor -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType QueryUnique -com.google.android.material.R$dimen: int abc_control_padding_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: double Value -com.xw.repo.bubbleseekbar.R$attr: int bsb_max -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_icon_width -com.google.android.material.R$attr: int toolbarId -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize -androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification -androidx.customview.R$styleable: int[] GradientColor -com.turingtechnologies.materialscrollbar.DragScrollBar -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabBar -android.didikee.donate.R$id: int showCustom -androidx.viewpager2.R$id: int right_icon -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedPassword(java.lang.String) -io.reactivex.Observable: io.reactivex.Observable filter(io.reactivex.functions.Predicate) -okhttp3.internal.Util: java.lang.reflect.Method addSuppressedExceptionMethod -cyanogenmod.providers.ThemesContract$PreviewColumns -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ProgressBar -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_21 -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionMode -io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler,boolean,int) -com.google.android.material.R$drawable: int material_ic_keyboard_arrow_right_black_24dp -androidx.drawerlayout.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String country -androidx.appcompat.R$dimen: int abc_progress_bar_height_material -cyanogenmod.app.PartnerInterface: void setMobileDataEnabled(boolean) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: CMSettings$InclusiveFloatRangeValidator(float,float) -cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup getProfileGroup(java.util.UUID) -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImpl: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) -com.google.android.material.R$styleable: int[] StateListDrawableItem -wangdaye.com.geometricweather.R$drawable: int shortcuts_haze -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -com.google.android.material.progressindicator.ProgressIndicator: void setIndeterminateDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onNext(java.lang.Object) -com.google.android.material.progressindicator.ProgressIndicator: int getCircularRadius() -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_extra_spacing_horizontal -com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetBottom -androidx.recyclerview.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$dimen: int design_snackbar_max_width -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: java.lang.String textAdvice -android.didikee.donate.R$drawable: int abc_cab_background_internal_bg -com.jaredrummler.android.colorpicker.R$dimen: int abc_seekbar_track_background_height_material -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_21 -okhttp3.Dispatcher: java.util.concurrent.ExecutorService executorService() -androidx.loader.app.LoaderManagerImpl$LoaderViewModel: LoaderManagerImpl$LoaderViewModel() -wangdaye.com.geometricweather.R$color: int foreground_material_light -wangdaye.com.geometricweather.R$id: int action_bar_title -androidx.constraintlayout.widget.R$drawable: int notification_bg_normal_pressed -android.didikee.donate.R$styleable: int SwitchCompat_switchMinWidth -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAVIGATION_BAR_MENU_ARROW_KEYS_VALIDATOR -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Choice -wangdaye.com.geometricweather.R$id: int widget_week_temp -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_android_alpha -cyanogenmod.externalviews.ExternalViewProperties -androidx.preference.R$color: int abc_search_url_text_pressed -androidx.appcompat.widget.AppCompatSpinner: android.content.Context getPopupContext() -okhttp3.Cache$Entry: java.lang.String url -androidx.constraintlayout.widget.R$dimen: int abc_panel_menu_list_width -okhttp3.MediaType: java.util.regex.Pattern TYPE_SUBTYPE -okhttp3.internal.connection.StreamAllocation: java.net.Socket deallocate(boolean,boolean,boolean) -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_strokeWidth -androidx.constraintlayout.utils.widget.ImageFilterView: void setRound(float) -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_light -com.jaredrummler.android.colorpicker.R$dimen: int notification_action_icon_size -com.google.gson.JsonParseException: JsonParseException(java.lang.String) -wangdaye.com.geometricweather.R$attr: int layout_constraintStart_toStartOf -james.adaptiveicon.R$styleable: int MenuItem_android_checked -com.jaredrummler.android.colorpicker.R$styleable: int Preference_defaultValue -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getRagweedDescription() -androidx.appcompat.R$styleable: int DrawerArrowToggle_arrowHeadLength -com.google.android.material.R$styleable: int TabLayout_tabContentStart -androidx.constraintlayout.widget.R$styleable: int SearchView_submitBackground -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.R$style: int PreferenceFragment -cyanogenmod.profiles.ConnectionSettings: cyanogenmod.profiles.ConnectionSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: java.lang.Object poll() -com.google.android.material.slider.RangeSlider: void setHaloRadius(int) -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.disposables.Disposable upstream -androidx.constraintlayout.widget.R$styleable -androidx.constraintlayout.widget.R$styleable: int[] ConstraintSet -android.didikee.donate.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_FULL_COLOR -androidx.appcompat.R$id: int progress_horizontal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean current -com.turingtechnologies.materialscrollbar.R$attr: int listLayout -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize -com.google.android.material.R$styleable: int Chip_android_textSize -cyanogenmod.app.CMContextConstants: java.lang.String CM_ICON_CACHE_SERVICE -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void again(java.lang.Object) -cyanogenmod.app.ProfileGroup$2 -androidx.activity.R$id: int accessibility_custom_action_2 -com.google.android.material.R$styleable: int[] MotionHelper -com.xw.repo.bubbleseekbar.R$layout: int abc_search_dropdown_item_icons_2line -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver inner -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.AlertEntityDao getAlertEntityDao() -okhttp3.internal.cache.CacheRequest: okio.Sink body() -com.xw.repo.bubbleseekbar.R$attr: int suggestionRowLayout -androidx.constraintlayout.widget.R$drawable: int abc_switch_thumb_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String tempMax -james.adaptiveicon.R$styleable: int AppCompatTheme_tooltipFrameBackground -com.jaredrummler.android.colorpicker.R$attr: int homeLayout -androidx.appcompat.widget.SearchView: SearchView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer realFeelTemperature -com.turingtechnologies.materialscrollbar.R$attr: int imageButtonStyle -wangdaye.com.geometricweather.R$dimen: int item_touch_helper_swipe_escape_max_velocity -cyanogenmod.weather.RequestInfo -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_setLiveLockScreenEnabled -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_snackbar_background_corner_radius -cyanogenmod.app.Profile$DozeMode: int ENABLE -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_pressed_holo_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getAlertId() -androidx.appcompat.R$styleable: int ColorStateListItem_android_color -com.turingtechnologies.materialscrollbar.R$attr: int msb_handleColor -androidx.preference.R$anim: int abc_tooltip_enter -com.google.android.material.R$styleable: int ActionBar_contentInsetStart -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance -com.google.android.material.R$id: int month_grid -android.didikee.donate.R$drawable: int abc_dialog_material_background -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_disabled_material_dark -james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -androidx.constraintlayout.widget.R$color: int switch_thumb_material_dark -james.adaptiveicon.R$color: int switch_thumb_material_light -androidx.swiperefreshlayout.R$styleable -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable -com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: int phenomenoMaxColorId -cyanogenmod.app.Profile: void setNotificationLightMode(int) -android.didikee.donate.R$color: int abc_hint_foreground_material_light -com.google.android.material.R$attr: int round -cyanogenmod.app.StatusBarPanelCustomTile: int uid -androidx.appcompat.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.db.entities.AlertEntity: java.util.Date getDate() -androidx.constraintlayout.widget.Barrier: int getMargin() -james.adaptiveicon.R$drawable: int abc_seekbar_tick_mark_material -com.google.android.material.R$style: int Theme_Design_BottomSheetDialog -com.turingtechnologies.materialscrollbar.R$style: int Base_V23_Theme_AppCompat_Light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: int UnitType -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemIconSize() -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onNext(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar -com.google.android.material.R$styleable: int Transform_android_rotationY -wangdaye.com.geometricweather.R$color: int ripple_material_dark -wangdaye.com.geometricweather.R$attr: int themeLineHeight -com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog -androidx.constraintlayout.widget.R$string: int abc_action_menu_overflow_description -androidx.dynamicanimation.R$dimen: int compat_button_inset_horizontal_material -james.adaptiveicon.R$styleable: int DrawerArrowToggle_arrowShaftLength -io.reactivex.subjects.PublishSubject$PublishDisposable: void onNext(java.lang.Object) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.ChineseCityEntity) -androidx.constraintlayout.widget.ConstraintLayout: int getMaxHeight() -okhttp3.internal.connection.StreamAllocation: okhttp3.EventListener eventListener -okhttp3.Authenticator -okhttp3.internal.io.FileSystem: void delete(java.io.File) -androidx.appcompat.widget.AppCompatSpinner$DropdownPopup -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animDuration -com.google.android.material.R$color: int bright_foreground_material_dark -okhttp3.internal.Util: boolean nonEmptyIntersection(java.util.Comparator,java.lang.String[],java.lang.String[]) -androidx.hilt.work.R$anim: int fragment_fade_exit -androidx.preference.R$styleable: int Toolbar_menu -androidx.constraintlayout.widget.R$string -wangdaye.com.geometricweather.R$drawable: int widget_card_light_100 -james.adaptiveicon.R$attr: int windowFixedWidthMinor -wangdaye.com.geometricweather.R$id: int dialog_background_location_title -androidx.core.view.ViewCompat$1 -com.bumptech.glide.load.engine.GlideException: java.util.List causes -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean isUnbounded() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric Metric -androidx.preference.R$styleable: int AppCompatTextView_drawableStartCompat -org.greenrobot.greendao.AbstractDao: long executeInsert(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement,boolean) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -cyanogenmod.externalviews.IExternalViewProviderFactory: android.os.IBinder createExternalView(android.os.Bundle) -com.google.android.material.slider.BaseSlider: void setHaloRadiusResource(int) -androidx.preference.R$attr: int buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.R$styleable: int GradientColorItem_android_color -androidx.lifecycle.ComputableLiveData$1: void onActive() -android.didikee.donate.R$styleable: int Toolbar_navigationContentDescription -androidx.work.R$layout: int notification_template_icon_group -androidx.preference.R$styleable: int[] ActivityChooserView -androidx.constraintlayout.widget.R$id: int notification_main_column_container -com.bumptech.glide.GeneratedAppGlideModule: GeneratedAppGlideModule() -wangdaye.com.geometricweather.R$attr: int hideOnScroll -wangdaye.com.geometricweather.R$string: int feedback_select_location_provider -wangdaye.com.geometricweather.R$attr: int materialCalendarYearNavigationButton -androidx.appcompat.R$style: int Platform_V25_AppCompat_Light -androidx.appcompat.R$color: int bright_foreground_inverse_material_light -com.google.android.material.button.MaterialButton: int getTextHeight() -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_seekBarIncrement -com.google.android.material.R$styleable: int Transition_transitionFlags -wangdaye.com.geometricweather.R$id: int notification_big_icon_2 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActivityChooserView -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeService sService -wangdaye.com.geometricweather.R$array: int temperature_units_short -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_dither -wangdaye.com.geometricweather.R$attr: int cornerFamilyTopRight -com.google.android.material.card.MaterialCardView: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onNext(java.lang.Object) -com.google.android.material.R$styleable: int Layout_android_layout_marginEnd -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Menu -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm25(java.lang.String) -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: java.lang.Throwable error -wangdaye.com.geometricweather.R$dimen: int abc_control_corner_material -com.turingtechnologies.materialscrollbar.R$id: int split_action_bar -okio.ForwardingSink: okio.Sink delegate -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_FixedSize_Bridge -androidx.dynamicanimation.R$dimen: int notification_right_side_padding_top -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isResult -androidx.customview.widget.ExploreByTouchHelper: int mHoveredVirtualViewId -androidx.work.R$dimen: R$dimen() -okhttp3.internal.platform.ConscryptPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -com.google.android.material.R$attr: int chipIconSize -com.bumptech.glide.Priority: com.bumptech.glide.Priority HIGH -androidx.preference.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -androidx.preference.R$styleable: int AppCompatTheme_editTextBackground -cyanogenmod.hardware.ICMHardwareService: java.lang.String getLtoSource() -androidx.appcompat.R$styleable: int MenuView_android_itemTextAppearance -android.didikee.donate.R$id: int line1 -androidx.hilt.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$attr: int expandedHintEnabled -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listDividerAlertDialog -com.jaredrummler.android.colorpicker.R$attr: int allowStacking -com.google.android.material.R$dimen: int design_snackbar_padding_horizontal -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Light -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -com.google.android.material.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.R$attr: int submitBackground -androidx.constraintlayout.widget.R$attr: int splitTrack -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupMenu_Overflow -androidx.appcompat.R$styleable: int ActionMode_closeItemLayout -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingRight -cyanogenmod.app.Profile$LockMode: int INSECURE -androidx.hilt.R$drawable: int notify_panel_notification_icon_bg -com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$drawable: int abc_popup_background_mtrl_mult -cyanogenmod.app.Profile: boolean isConditionalType() -androidx.preference.R$drawable: int abc_ratingbar_small_material -wangdaye.com.geometricweather.R$id: int forever -com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPreference -com.google.android.material.R$styleable: int MenuItem_android_title -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView -com.turingtechnologies.materialscrollbar.Indicator: void setSizeCustom(int) -android.didikee.donate.R$dimen: int notification_media_narrow_margin -retrofit2.http.Tag -cyanogenmod.providers.DataUsageContract: java.lang.String UID -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void dispose() -okio.RealBufferedSource: boolean isOpen() -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.preference.R$styleable: int MenuItem_actionViewClass -wangdaye.com.geometricweather.R$attr: int sv_side -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animAutostart -okhttp3.internal.Util: void addSuppressedIfPossible(java.lang.Throwable,java.lang.Throwable) -androidx.recyclerview.R$styleable: int RecyclerView_reverseLayout -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -retrofit2.Converter -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode getInstance(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_titleCondensed -androidx.constraintlayout.widget.Placeholder: void setEmptyVisibility(int) -androidx.work.R$layout: int custom_dialog -retrofit2.RequestBuilder: char[] HEX_DIGITS -wangdaye.com.geometricweather.R$color: int switch_thumb_disabled_material_dark -cyanogenmod.platform.Manifest$permission: java.lang.String THIRD_PARTY_KEYGUARD -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder tlsVersions(okhttp3.TlsVersion[]) -com.google.android.material.R$id: int text_input_end_icon -cyanogenmod.os.Build$CM_VERSION: Build$CM_VERSION() -com.google.android.material.R$styleable: int TextInputLayout_helperTextTextColor -com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout -james.adaptiveicon.R$id: int split_action_bar -wangdaye.com.geometricweather.R$drawable: int notif_temp_124 -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_layout -james.adaptiveicon.R$id: int action_menu_divider -wangdaye.com.geometricweather.R$styleable: int OnClick_targetId -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathStart() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setCity_code(int) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircleRadius -androidx.constraintlayout.widget.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamily -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button -androidx.appcompat.R$attr: int thickness -androidx.preference.R$styleable: int[] MenuView -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitationProbability -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getDewPoint() -androidx.constraintlayout.widget.R$dimen: int abc_alert_dialog_button_dimen -androidx.viewpager2.R$styleable: int FontFamilyFont_fontStyle -okhttp3.Headers$Builder: okhttp3.Headers$Builder addLenient(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CONDITION -androidx.legacy.coreutils.R$dimen: int notification_small_icon_background_padding -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String mixNMatchKeyToComponent(java.lang.String) -wangdaye.com.geometricweather.R$bool: int config_materialPreferenceIconSpaceReserved -androidx.vectordrawable.animated.R$id: int tag_unhandled_key_event_manager -com.jaredrummler.android.colorpicker.R$attr: int titleMarginStart -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWetBulbTemperature(java.lang.Integer) -androidx.appcompat.R$dimen: int abc_panel_menu_list_width -okhttp3.RealCall$AsyncCall: okhttp3.RealCall this$0 -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean checkTerminated(boolean,boolean,io.reactivex.Observer) -androidx.cardview.R$color: int cardview_light_background -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowDx -androidx.appcompat.R$styleable: int MenuItem_android_menuCategory -androidx.constraintlayout.widget.R$attr: int showText -retrofit2.ParameterHandler$2 -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: boolean connected -okhttp3.CacheControl: int maxStaleSeconds() -android.didikee.donate.R$drawable: int abc_ic_search_api_material -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isDataConnectionSelectedOnSub(int) -androidx.appcompat.widget.ActionBarOverlayLayout: void setIcon(int) -okhttp3.internal.http2.Hpack$Writer: int SETTINGS_HEADER_TABLE_SIZE_LIMIT -androidx.recyclerview.R$drawable: R$drawable() -cyanogenmod.externalviews.ExternalView$2: void run() -androidx.vectordrawable.R$id: int accessibility_custom_action_20 -okhttp3.internal.ws.RealWebSocket$2 -com.google.android.material.R$styleable: int ConstraintLayout_placeholder_content -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_Alert -okhttp3.logging.HttpLoggingInterceptor -androidx.appcompat.R$styleable: int AppCompatTheme_android_windowAnimationStyle -androidx.core.R$id: int accessibility_custom_action_17 -androidx.viewpager2.R$attr: int fontWeight -androidx.constraintlayout.motion.widget.MotionHelper: float getProgress() -androidx.hilt.R$id: int icon -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_visible -james.adaptiveicon.R$dimen: int abc_dialog_fixed_height_minor -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_progress -com.turingtechnologies.materialscrollbar.R$color: int abc_secondary_text_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontWeight -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: MaybeToObservable$MaybeToObservableObserver(io.reactivex.Observer) -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setLabel(int) -wangdaye.com.geometricweather.R$styleable: int Preference_android_order -android.didikee.donate.R$style: int Widget_AppCompat_ProgressBar -wangdaye.com.geometricweather.R$styleable: int[] RecycleListView -okhttp3.internal.cache2.Relay$RelaySource: void close() -com.turingtechnologies.materialscrollbar.R$attr: int tabMinWidth -okhttp3.internal.Util -wangdaye.com.geometricweather.R$styleable: int MaterialShape_shapeAppearance -com.google.android.material.R$attr: int tabUnboundedRipple -androidx.hilt.work.R$dimen: int notification_subtext_size -androidx.lifecycle.SavedStateHandle: SavedStateHandle() -com.turingtechnologies.materialscrollbar.R$id: int actions -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_subtitle -com.google.android.material.button.MaterialButton: void setChecked(boolean) -androidx.appcompat.R$layout: int abc_screen_toolbar -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Tooltip -okhttp3.internal.cache.DiskLruCache$Editor: okhttp3.internal.cache.DiskLruCache this$0 -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() -com.google.android.material.R$styleable: int ShapeableImageView_shapeAppearance -com.bumptech.glide.Priority: com.bumptech.glide.Priority IMMEDIATE -com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeBottomLeft -androidx.viewpager.R$drawable: int notification_tile_bg -android.didikee.donate.R$attr: int background -androidx.activity.R$styleable: int[] FontFamilyFont -okhttp3.internal.http2.Http2Stream$FramingSource: void close() -wangdaye.com.geometricweather.R$attr: int textAppearanceCaption -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_padding_end_material -androidx.lifecycle.extensions.R$dimen: int notification_large_icon_height -io.reactivex.Observable: io.reactivex.Observable buffer(java.util.concurrent.Callable) -cyanogenmod.weather.WeatherInfo$Builder: long mTimestamp -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_2 -com.google.android.material.slider.Slider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) -com.google.android.material.R$styleable: int SearchView_searchIcon -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int THUNDERSHOWER -cyanogenmod.themes.ThemeManager: java.lang.String access$100() -retrofit2.converter.gson.GsonConverterFactory -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: boolean equals(java.lang.Object) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver -androidx.preference.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -com.google.android.material.switchmaterial.SwitchMaterial: android.content.res.ColorStateList getMaterialThemeColorsTrackTintList() -androidx.legacy.coreutils.R$styleable: int[] ColorStateListItem -androidx.appcompat.R$drawable: int notify_panel_notification_icon_bg -com.google.android.material.R$id: int image -wangdaye.com.geometricweather.R$attr: int titleMargins -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_NAVIGATION_BAR -androidx.lifecycle.ViewModel: ViewModel() -wangdaye.com.geometricweather.R$drawable: int notif_temp_71 -com.google.android.material.R$styleable: int TextInputLayout_errorIconTint -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -androidx.appcompat.widget.ContentFrameLayout: void setAttachListener(androidx.appcompat.widget.ContentFrameLayout$OnAttachListener) -wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_default_mtrl_alpha -wangdaye.com.geometricweather.db.entities.DailyEntityDao: DailyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -androidx.constraintlayout.widget.R$attr: int checkboxStyle -okhttp3.internal.publicsuffix.PublicSuffixDatabase: okhttp3.internal.publicsuffix.PublicSuffixDatabase get() -com.github.rahatarmanahmed.cpv.R$dimen -androidx.constraintlayout.widget.R$id: int tag_accessibility_heading -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust WindGust -androidx.constraintlayout.widget.R$string: int abc_action_bar_home_description -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView getTrendItemView() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -androidx.constraintlayout.widget.R$color: int abc_color_highlight_material -com.google.android.material.R$style: int Theme_Design_Light_BottomSheetDialog -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_change_size_expand_motion_spec -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen -com.jaredrummler.android.colorpicker.R$string: int abc_search_hint -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs -com.xw.repo.bubbleseekbar.R$anim: int abc_grow_fade_in_from_bottom -okio.RealBufferedSink: okio.BufferedSink write(byte[],int,int) -androidx.preference.R$styleable: int AppCompatTheme_dividerHorizontal -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$id: int weather_icon -wangdaye.com.geometricweather.R$styleable: int Chip_iconStartPadding -androidx.constraintlayout.widget.R$attr: int layout_editor_absoluteY -io.reactivex.Observable: io.reactivex.Observable fromPublisher(org.reactivestreams.Publisher) -wangdaye.com.geometricweather.R$layout: int material_time_input -com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_950 -io.reactivex.Observable: io.reactivex.Single toList(java.util.concurrent.Callable) -com.google.android.material.chip.Chip: com.google.android.material.resources.TextAppearance getTextAppearance() -com.xw.repo.bubbleseekbar.R$drawable: int abc_tab_indicator_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: void setUnit(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_bottom_material -androidx.recyclerview.R$layout: int notification_template_custom_big -com.google.android.material.R$dimen: int design_bottom_sheet_peek_height_min -androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onStart() -wangdaye.com.geometricweather.R$attr: int layout_constraintBaseline_toBaselineOf -wangdaye.com.geometricweather.R$id: int layout -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeFindDrawable -androidx.drawerlayout.R$styleable: int FontFamilyFont_font -okhttp3.Cache: void update(okhttp3.Response,okhttp3.Response) -wangdaye.com.geometricweather.R$id: int NO_DEBUG -androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_focusable -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog -androidx.customview.R$attr: int fontProviderQuery -okhttp3.internal.cache2.Relay -cyanogenmod.externalviews.KeyguardExternalView$2: boolean requestDismiss() -androidx.core.R$styleable: int GradientColor_android_startX -androidx.constraintlayout.widget.R$id: int aligned -com.google.android.material.R$dimen: int abc_control_inset_material -okhttp3.internal.Util: boolean isAndroidGetsocknameError(java.lang.AssertionError) -wangdaye.com.geometricweather.R$color: int notification_background_m -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView_Menu -androidx.lifecycle.ProcessLifecycleOwner$3 -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_31 -okhttp3.internal.connection.RealConnection: void startHttp2(int) -androidx.constraintlayout.widget.R$attr: int controlBackground -androidx.constraintlayout.widget.R$id: int titleDividerNoCustom -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_container -com.google.android.material.R$styleable: int FloatingActionButton_shapeAppearanceOverlay -com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_icon_width -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: boolean cancelled -androidx.appcompat.widget.AppCompatButton: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -androidx.appcompat.R$attr -wangdaye.com.geometricweather.R$styleable: int Preference_fragment -com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorCornerRadius() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_SHOW_WEATHER_VALIDATOR -androidx.activity.R$dimen: R$dimen() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogTheme -androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context) -androidx.preference.R$style: int TextAppearance_AppCompat_Headline -androidx.constraintlayout.widget.R$styleable: int Transition_duration -androidx.preference.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -androidx.viewpager.R$id: int time -io.reactivex.internal.disposables.SequentialDisposable: SequentialDisposable(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeWetBulbTemperature() -android.didikee.donate.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -com.jaredrummler.android.colorpicker.R$attr: int alertDialogCenterButtons -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_ActionBar +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: android.graphics.Rect val$clipRect +com.google.android.material.R$style: int CardView_Light +androidx.legacy.coreutils.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$id: int progress +androidx.loader.R$id: int action_text +androidx.constraintlayout.widget.R$attr: int dialogPreferredPadding +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isSubActive +com.turingtechnologies.materialscrollbar.R$color: int material_grey_100 +androidx.preference.R$styleable: int Preference_enabled +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_precise_anchor_extra_offset +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getAqi() +com.google.android.material.R$id: int auto +org.greenrobot.greendao.DaoException: DaoException(java.lang.String,java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: int status +com.turingtechnologies.materialscrollbar.R$id: int coordinator +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_baselineAligned +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State INITIALIZED +androidx.appcompat.R$integer: int config_tooltipAnimTime +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_keyline +android.didikee.donate.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +cyanogenmod.app.CustomTile$ExpandedStyle: int GRID_STYLE +cyanogenmod.power.PerformanceManager: boolean getProfileHasAppProfiles(int) +retrofit2.adapter.rxjava2.ResultObservable: ResultObservable(io.reactivex.Observable) +com.google.android.material.R$animator: int mtrl_extended_fab_hide_motion_spec +com.jaredrummler.android.colorpicker.R$drawable +androidx.transition.R$styleable: int GradientColor_android_endX +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemOnClickIntent(android.app.PendingIntent) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Indeterminate +androidx.appcompat.widget.AppCompatTextView: void setTextMetricsParamsCompat(androidx.core.text.PrecomputedTextCompat$Params) +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moon_icon +com.google.android.material.navigation.NavigationView: void setCheckedItem(int) +cyanogenmod.weather.WeatherInfo$Builder: double mTemperature +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: boolean isExecuted() +cyanogenmod.app.ILiveLockScreenManager: void cancelLiveLockScreen(java.lang.String,int,int) +wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonTint +androidx.preference.R$styleable: int Toolbar_contentInsetLeft +okhttp3.internal.connection.RealConnection$1: RealConnection$1(okhttp3.internal.connection.RealConnection,boolean,okio.BufferedSource,okio.BufferedSink,okhttp3.internal.connection.StreamAllocation) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_title_material_toolbar +com.google.android.material.R$attr: int thumbElevation +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitation +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder followSslRedirects(boolean) +io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver INSTANCE +androidx.appcompat.R$styleable: int GradientColor_android_tileMode +androidx.swiperefreshlayout.R$color: R$color() +com.google.android.material.R$id: int tag_accessibility_actions +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconTint +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar +okio.Buffer: okio.ByteString snapshot() +androidx.appcompat.R$drawable: int btn_checkbox_unchecked_mtrl +android.didikee.donate.R$styleable: int SwitchCompat_splitTrack +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_DialogWhenLarge +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RealFeelShaderTemperature -androidx.lifecycle.DefaultLifecycleObserver -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: java.lang.String Unit -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_max -cyanogenmod.library.R$attr: R$attr() -com.google.android.material.R$attr: int layout_constraintVertical_weight -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_variablePadding -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlHighlight -okhttp3.ResponseBody$1 -okio.ByteString: void write(java.io.OutputStream) -com.google.android.material.R$styleable: int Tooltip_android_padding -com.turingtechnologies.materialscrollbar.R$id: int default_activity_button -androidx.vectordrawable.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$color: int cardview_shadow_start_color -cyanogenmod.externalviews.ExternalView$2: boolean val$visible -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_disabled_translation_z -james.adaptiveicon.R$styleable: int SwitchCompat_trackTint -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: void setTo(java.util.Date) -androidx.hilt.R$id: int accessibility_custom_action_13 -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type[] values() -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabView -androidx.hilt.work.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherText -wangdaye.com.geometricweather.R$id: int container_main_aqi_recyclerView -androidx.activity.R$styleable: int ColorStateListItem_android_color -cyanogenmod.app.suggest.IAppSuggestProvider: boolean handles(android.content.Intent) -com.google.android.material.R$dimen: int mtrl_calendar_header_content_padding_fullscreen -wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontTitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX getNames() -com.google.android.material.R$layout: int abc_dialog_title_material -com.jaredrummler.android.colorpicker.R$attr: int actionModeCutDrawable -wangdaye.com.geometricweather.R$array: int air_quality_units -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Switch -com.google.android.material.R$styleable: int Layout_layout_constrainedHeight -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onNext(java.lang.Object) -androidx.constraintlayout.widget.R$attr: int arcMode -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleTextColor -wangdaye.com.geometricweather.R$drawable: int notif_temp_42 -com.jaredrummler.android.colorpicker.R$style: int Preference_Information_Material -wangdaye.com.geometricweather.R$array: int air_quality_unit_voices -com.google.android.material.R$color: int notification_action_color_filter -androidx.appcompat.widget.AppCompatCheckBox: android.content.res.ColorStateList getSupportButtonTintList() -androidx.viewpager2.R$styleable: int GradientColor_android_endX -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_4_material -wangdaye.com.geometricweather.R$drawable: int shortcuts_thunder -wangdaye.com.geometricweather.R$string: int sp_widget_daily_trend_setting -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_toLeftOf -wangdaye.com.geometricweather.R$id: int message -okhttp3.internal.tls.DistinguishedNameParser: int beg -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -androidx.appcompat.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginEnd(int) -okio.BufferedSource: java.lang.String readUtf8() -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: boolean equals(java.lang.Object) -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.R$dimen: int abc_text_size_medium_material -androidx.dynamicanimation.R$id: int actions -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_checkboxStyle -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_visible -androidx.appcompat.R$styleable: int AppCompatTheme_seekBarStyle -wangdaye.com.geometricweather.R$attr: int onTouchUp -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitationProbability(java.lang.Float) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_11 -cyanogenmod.providers.CMSettings$Secure$1: CMSettings$Secure$1() -wangdaye.com.geometricweather.R$string: int about_app -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource MEMORY_CACHE -com.google.android.material.R$attr: int chipEndPadding -james.adaptiveicon.R$styleable: int Spinner_android_entries -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_font -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_ActionBar -wangdaye.com.geometricweather.R$id: int container_main_aqi_progress -retrofit2.RequestBuilder: boolean hasBody -cyanogenmod.app.Profile: boolean getStatusBarIndicator() -androidx.appcompat.R$id: int accessibility_custom_action_16 -com.google.android.material.tabs.TabLayout$TabView: void setTab(com.google.android.material.tabs.TabLayout$Tab) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_weather -androidx.constraintlayout.widget.R$drawable: int abc_ic_clear_material -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListPopupWindow -okio.ByteString: okio.ByteString decodeHex(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int notif_temp_43 -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar -com.google.android.material.R$string: int abc_searchview_description_search -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: long getTime() -androidx.core.R$drawable: int notification_template_icon_low_bg -android.didikee.donate.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.R$color: int design_default_color_on_primary -cyanogenmod.app.Profile: void setProfileType(int) -wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_width_major -androidx.constraintlayout.widget.R$styleable: int[] MotionHelper -com.google.android.material.R$styleable: int RangeSlider_minSeparation -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabText -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: wangdaye.com.geometricweather.db.entities.HistoryEntity readEntity(android.database.Cursor,int) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dividerHorizontal -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.ObservableSource source -wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundDialog -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemIconSize(int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_83 -com.google.android.material.R$attr: int actionMenuTextColor -com.google.android.material.R$id: int action_mode_bar_stub -com.xw.repo.bubbleseekbar.R$string: int abc_menu_alt_shortcut_label -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogCornerRadius -com.google.android.material.R$style: int Base_Widget_AppCompat_PopupWindow -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_popupMenuStyle -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline1 -cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING_RAMP_UP_TIME -org.greenrobot.greendao.AbstractDaoMaster: AbstractDaoMaster(org.greenrobot.greendao.database.Database,int) -androidx.appcompat.R$id: int listMode -androidx.hilt.work.R$id: int accessibility_custom_action_10 -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -com.google.android.material.R$attr: int searchIcon -android.didikee.donate.R$string: int abc_action_bar_up_description -com.jaredrummler.android.colorpicker.R$dimen: int abc_search_view_preferred_width -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_17 -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_atd -wangdaye.com.geometricweather.R$layout: int dialog_time_setter -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_als -androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentListStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX aqi -android.didikee.donate.R$layout: int abc_popup_menu_item_layout -james.adaptiveicon.R$styleable: int FontFamily_fontProviderCerts -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onComplete() -okhttp3.Dispatcher: java.util.Deque runningSyncCalls -wangdaye.com.geometricweather.R$layout: int activity_settings -wangdaye.com.geometricweather.R$anim: int fragment_fade_exit -james.adaptiveicon.R$id: int expanded_menu -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_1_material -james.adaptiveicon.R$dimen: int abc_config_prefDialogWidth -wangdaye.com.geometricweather.R$anim: int abc_slide_out_bottom -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void innerError(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver,java.lang.Throwable) -wangdaye.com.geometricweather.R$id: int star_container -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlNormal -com.google.android.material.R$attr: int subtitleTextAppearance -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation observation -androidx.customview.R$dimen: int compat_notification_large_icon_max_height -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getSelectedItemId() -androidx.appcompat.widget.MenuPopupWindow -com.google.android.material.R$styleable: int PropertySet_android_visibility -wangdaye.com.geometricweather.R$string: int abc_searchview_description_submit -cyanogenmod.platform.R$array: R$array() -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionMode -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation[] values() -wangdaye.com.geometricweather.settings.dialogs.AnimatableIconDialog: AnimatableIconDialog() -wangdaye.com.geometricweather.R$attr: int textColorAlertDialogListItem -com.google.android.material.R$styleable: int[] ImageFilterView -wangdaye.com.geometricweather.db.entities.DailyEntity: void setPm10(java.lang.Float) -androidx.constraintlayout.widget.R$string: int abc_shareactionprovider_share_with_application -cyanogenmod.app.Profile$1: java.lang.Object[] newArray(int) -com.google.android.material.R$dimen: int mtrl_calendar_action_padding -com.turingtechnologies.materialscrollbar.R$attr: int contentScrim -android.didikee.donate.R$bool -okhttp3.Dispatcher: int runningCallsForHost(okhttp3.RealCall$AsyncCall) -androidx.transition.R$id: int right_icon -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_29 -androidx.appcompat.widget.AppCompatTextView: void setBackgroundResource(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: int UnitType -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Caption -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarButtonStyle -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onNext(java.lang.Object) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: boolean isDisposed() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_AES_128_CBC_SHA -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int SnowProbability -com.google.android.material.button.MaterialButtonToggleGroup: void setSingleSelection(boolean) -androidx.viewpager2.R$id: int accessibility_custom_action_31 -androidx.preference.R$styleable: int FontFamilyFont_fontStyle -androidx.work.R$dimen: int compat_button_inset_vertical_material -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: int retries -androidx.preference.R$styleable: int LinearLayoutCompat_android_baselineAligned -wangdaye.com.geometricweather.R$attr: int track -okhttp3.internal.connection.StreamAllocation: java.net.Socket releaseAndAcquire(okhttp3.internal.connection.RealConnection) -wangdaye.com.geometricweather.background.polling.basic.ForegroundUpdateService -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long REQUEST_MASK -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onTimeout(long) -com.google.android.material.R$dimen: int notification_right_icon_size -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: AccuCurrentResult$PrecipitationSummary$Past12Hours() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.util.Date time -androidx.core.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.common.basic.models.weather.Wind: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getDegree() -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_seek_thumb -androidx.appcompat.R$styleable: int Toolbar_buttonGravity -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -com.github.rahatarmanahmed.cpv.R$attr: int cpv_startAngle -wangdaye.com.geometricweather.R$drawable: int abc_spinner_mtrl_am_alpha -com.turingtechnologies.materialscrollbar.R$id: int multiply -androidx.appcompat.resources.R$styleable: int GradientColor_android_centerY -com.google.android.material.R$attr: int perpendicularPath_percent -com.google.android.material.R$styleable: int AppCompatTextView_drawableLeftCompat -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense -androidx.constraintlayout.widget.R$dimen: int notification_top_pad_large_text -androidx.transition.R$id: int line1 -com.google.android.material.R$attr: int listPreferredItemPaddingLeft -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDegreeDayTemperature(java.lang.Integer) -io.reactivex.internal.schedulers.AbstractDirectTask: void setFuture(java.util.concurrent.Future) -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec CLEARTEXT -james.adaptiveicon.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -androidx.appcompat.R$id: int accessibility_custom_action_23 -androidx.appcompat.R$styleable: int MenuItem_iconTintMode -androidx.fragment.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.R$font: int product_sans_light_italic -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SeekBar -james.adaptiveicon.R$style: int Widget_AppCompat_Button_Small -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display1 -androidx.appcompat.widget.SearchView: void setQuery(java.lang.CharSequence) -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_menu_header_material -androidx.lifecycle.Transformations$1: void onChanged(java.lang.Object) -io.reactivex.internal.subscriptions.SubscriptionHelper: void request(long) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: AccuCurrentResult$Past24HourTemperatureDeparture() -com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context) -androidx.constraintlayout.widget.R$attr: int preserveIconSpacing -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_shutdown -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_gradientRadius -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2 -com.jaredrummler.android.colorpicker.R$attr: int colorError -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogPreferredPadding -com.google.android.material.R$layout: int mtrl_picker_text_input_date_range -androidx.preference.R$style: int Preference_SwitchPreference -androidx.constraintlayout.widget.R$attr: int flow_horizontalStyle -androidx.appcompat.R$color: int abc_primary_text_disable_only_material_light -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findAndroidPlatform() -cyanogenmod.os.Build$CM_VERSION_CODES: int BOYSENBERRY -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void cancel() -androidx.preference.R$attr: int allowDividerAbove -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_toRightOf -james.adaptiveicon.R$layout: int abc_popup_menu_item_layout -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_RC4_128_SHA -cyanogenmod.app.Profile: int mExpandedDesktopMode -wangdaye.com.geometricweather.R$attr: int tabMinWidth -androidx.appcompat.widget.SwitchCompat: void setChecked(boolean) -androidx.work.R$drawable: R$drawable() -james.adaptiveicon.R$attr: int tickMarkTint -retrofit2.OkHttpCall$NoContentResponseBody: long contentLength -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_profileExistsByName -wangdaye.com.geometricweather.R$styleable: int Constraint_barrierMargin -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void run() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility -okhttp3.MultipartBody: byte[] CRLF -com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_android_button -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_inset -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeBackground -james.adaptiveicon.R$styleable: int AppCompatTheme_listDividerAlertDialog -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: void setOnWeatherIconChangingListener(wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView$OnWeatherIconChangingListener) -com.google.android.material.R$layout: int design_navigation_item_header -wangdaye.com.geometricweather.R$styleable: int MaterialButton_backgroundTintMode -com.google.android.material.R$styleable: int MenuGroup_android_orderInCategory -android.didikee.donate.R$bool: R$bool() -com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector YEAR -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitation(java.lang.Float) -androidx.preference.R$style: int Preference_SwitchPreference_Material -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_minimum_range -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType WEBP -io.reactivex.internal.operators.observable.ObservableGroupBy$State: ObservableGroupBy$State(int,io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver,java.lang.Object,boolean) -androidx.work.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.R$id: int text_input_error_icon -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -androidx.fragment.R$id: int accessibility_custom_action_13 -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextAppearanceActive -androidx.lifecycle.ProcessLifecycleOwner: void dispatchStopIfNeeded() -james.adaptiveicon.R$attr: int alertDialogButtonGroupStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitationProbability() -okhttp3.internal.http.HttpDate$1: java.text.DateFormat initialValue() -okhttp3.internal.Util$2: java.lang.String val$name -okio.RealBufferedSink: okio.BufferedSink writeUtf8CodePoint(int) -androidx.activity.R$id: int accessibility_custom_action_19 -cyanogenmod.externalviews.KeyguardExternalView: void onScreenTurnedOn() -com.google.android.material.R$styleable: int[] NavigationView -cyanogenmod.app.Profile$ProfileTrigger: int describeContents() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_creator -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.util.List Area -com.google.android.material.R$id: int circular -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginLeft -james.adaptiveicon.R$styleable: int AlertDialog_multiChoiceItemLayout -androidx.appcompat.widget.Toolbar: void setLogo(android.graphics.drawable.Drawable) -androidx.preference.R$dimen: int abc_text_size_title_material -androidx.appcompat.widget.FitWindowsViewGroup -okhttp3.Cache$CacheRequestImpl: void abort() -androidx.recyclerview.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.wallpaper.LiveWallpaperConfigActivity -com.google.android.material.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled -wangdaye.com.geometricweather.R$drawable: int mtrl_tabs_default_indicator -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 -wangdaye.com.geometricweather.R$array: int week_icon_mode_values -androidx.preference.R$attr: int titleMargin -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDataConnectionState(boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int CloudCover -android.didikee.donate.R$styleable: int AppCompatTheme_popupWindowStyle -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light -androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentHeight -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_android_checkable -com.google.android.material.R$styleable: int AppCompatTheme_actionModeCutDrawable -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_shapeAppearanceOverlay -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode fromHttp2(int) -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean otherDone -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_collapsedSize -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Latitude -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onError(java.lang.Throwable) -androidx.vectordrawable.animated.R$drawable: int notification_bg -androidx.preference.R$id: int search_plate -androidx.appcompat.R$styleable: int Spinner_android_popupBackground -androidx.dynamicanimation.R$attr -wangdaye.com.geometricweather.R$id: int widget_clock_day_sensibleTemp -com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setCircularRevealScrimColor(int) -wangdaye.com.geometricweather.R$style: int Widget_Design_Snackbar -com.turingtechnologies.materialscrollbar.R$attr: int scrimAnimationDuration -io.reactivex.Observable: io.reactivex.Observable switchOnNext(io.reactivex.ObservableSource,int) -com.google.android.material.R$attr: int boxBackgroundMode -okhttp3.internal.http2.Hpack$Reader: int dynamicTableByteCount -com.google.android.material.chip.Chip: void setTextAppearanceResource(int) -androidx.constraintlayout.widget.R$styleable: int Toolbar_navigationIcon -com.google.android.material.R$styleable: int MenuItem_actionLayout -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.R$layout: R$layout() -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_showText -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.DaoConfig config -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_summaryOn -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String weatherSource -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnt -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_normal_material_light -com.google.android.material.R$styleable: R$styleable() -cyanogenmod.themes.IThemeService$Stub$Proxy: boolean processThemeResources(java.lang.String) -androidx.core.widget.NestedScrollView: void setFillViewport(boolean) -com.google.android.material.R$styleable: int Badge_badgeGravity -androidx.constraintlayout.widget.R$color: int material_grey_600 -com.jaredrummler.android.colorpicker.R$styleable: int[] TextAppearance -androidx.viewpager2.R$drawable: int notify_panel_notification_icon_bg -androidx.constraintlayout.widget.R$styleable: int MotionScene_layoutDuringTransition -android.didikee.donate.R$color: int primary_text_default_material_light -android.didikee.donate.R$id: int line3 -cyanogenmod.hardware.ICMHardwareService -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder secure() -androidx.appcompat.widget.DialogTitle -androidx.appcompat.widget.AppCompatTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -com.xw.repo.bubbleseekbar.R$attr: int layout_behavior -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconMode -androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_DropDownUp -io.reactivex.internal.operators.observable.ObservableReplay$Node: ObservableReplay$Node(java.lang.Object) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object readKey(android.database.Cursor,int) -androidx.constraintlayout.widget.R$style: int Base_V26_Theme_AppCompat_Light -okhttp3.internal.ws.WebSocketProtocol: long CLOSE_MESSAGE_MAX -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getRagweedDescription() -androidx.viewpager.R$drawable: int notification_bg -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.google.android.material.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String EXTRA_ALARM_ID -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircleAngle -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String name -androidx.constraintlayout.widget.R$color: int background_floating_material_light -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Button -androidx.appcompat.R$id: int search_plate -androidx.constraintlayout.widget.R$interpolator: int fast_out_slow_in -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleVerticalOffset -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver -androidx.coordinatorlayout.R$styleable: int[] FontFamilyFont -android.didikee.donate.R$styleable: int SwitchCompat_thumbTextPadding -com.turingtechnologies.materialscrollbar.R$styleable: int[] FlowLayout -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int consumed -com.xw.repo.bubbleseekbar.R$attr: int logoDescription -androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerY -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_icon -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_default -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver -androidx.preference.R$drawable: int abc_cab_background_top_material -com.google.android.material.floatingactionbutton.FloatingActionButton: void setShowMotionSpecResource(int) -com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.content.res.ColorStateList getItemTextColor() -com.google.android.material.R$styleable: int Toolbar_titleMarginTop -androidx.hilt.lifecycle.R$drawable: int notification_tile_bg -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -androidx.work.R$id: int action_divider -androidx.preference.R$color: int dim_foreground_disabled_material_dark -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onPositiveCross -cyanogenmod.app.ICMStatusBarManager: void removeCustomTileWithTag(java.lang.String,java.lang.String,int,int) -androidx.coordinatorlayout.R$id: int line3 -androidx.hilt.lifecycle.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: AtmoAuraQAResult() -androidx.preference.R$attr: int drawableStartCompat -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListMenuView -androidx.appcompat.R$dimen: int abc_list_item_height_small_material -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarStyle -androidx.appcompat.R$styleable: int AppCompatTheme_dividerVertical -androidx.constraintlayout.widget.R$styleable: int StateListDrawableItem_android_drawable -androidx.lifecycle.extensions.R$id: int title -androidx.preference.R$attr: int actionBarTabBarStyle -androidx.constraintlayout.widget.R$styleable: int[] ViewStubCompat -cyanogenmod.providers.CMSettings$Secure: java.lang.String getString(android.content.ContentResolver,java.lang.String) -android.didikee.donate.R$attr: int searchViewStyle -androidx.constraintlayout.motion.widget.MotionLayout: long getNanoTime() -com.google.android.material.progressindicator.ProgressIndicator: int[] getIndicatorColors() -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceInformationStyle -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastVerticalBias -androidx.constraintlayout.widget.Group: Group(android.content.Context,android.util.AttributeSet,int) -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode[] values() -wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconVisible -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver parent -okio.Buffer: okio.ByteString sha512() -okhttp3.Cache: int ENTRY_BODY -com.xw.repo.bubbleseekbar.R$dimen: int abc_list_item_padding_horizontal_material -okhttp3.internal.cache.DiskLruCache: void close() -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean done -com.jaredrummler.android.colorpicker.R$id: int action_divider -com.turingtechnologies.materialscrollbar.TouchScrollBar: float getIndicatorOffset() -com.google.android.material.R$attr: int closeItemLayout -wangdaye.com.geometricweather.R$string: int aqi_3 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getPm10() -com.turingtechnologies.materialscrollbar.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.R$styleable: int KeyCycle_android_scaleX -okio.AsyncTimeout: okio.AsyncTimeout head -android.didikee.donate.R$attr: int actionDropDownStyle -cyanogenmod.app.ProfileManager: void setActiveProfile(java.util.UUID) -okhttp3.HttpUrl: java.lang.String password() -wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_radio -wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_checkedButton -androidx.appcompat.R$drawable: int abc_ic_menu_overflow_material -androidx.viewpager2.R$styleable: int[] ColorStateListItem -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarStyle -james.adaptiveicon.R$styleable: int Toolbar_titleTextAppearance -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit PERCENT -com.google.android.material.R$attr: int closeIconEnabled -okhttp3.internal.http.RetryAndFollowUpInterceptor: int retryAfter(okhttp3.Response,int) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Spinner_Underlined -wangdaye.com.geometricweather.R$color: int design_fab_stroke_top_inner_color -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void drain() -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property CloudCover -androidx.customview.R$styleable: int[] GradientColorItem -com.turingtechnologies.materialscrollbar.R$attr: int firstBaselineToTopHeight -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Button -androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMarkTintMode -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconEnabled -androidx.recyclerview.R$color: int ripple_material_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String date -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeStepGranularity -io.reactivex.Observable: io.reactivex.Observable doOnTerminate(io.reactivex.functions.Action) -android.didikee.donate.R$color: int abc_hint_foreground_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource getInstance(java.lang.String) -okhttp3.CacheControl$Builder: int maxStaleSeconds -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$attr: int min -androidx.constraintlayout.widget.R$id: int autoCompleteToStart -okio.DeflaterSink: java.util.zip.Deflater deflater -cyanogenmod.providers.CMSettings$System: long getLong(android.content.ContentResolver,java.lang.String) -wangdaye.com.geometricweather.R$id: int dialog_time_setter_container -android.support.v4.app.INotificationSideChannel$Default: void cancelAll(java.lang.String) -android.didikee.donate.R$attr: int queryBackground -androidx.constraintlayout.widget.R$styleable: int ActionBar_displayOptions -com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableTransition -wangdaye.com.geometricweather.R$id: int action_container -androidx.appcompat.R$string: int abc_menu_meta_shortcut_label -androidx.core.R$id: int accessibility_custom_action_8 -com.google.android.material.R$integer: int mtrl_calendar_header_orientation -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerCloseError(java.lang.Throwable) -cyanogenmod.app.Profile$LockMode -okhttp3.FormBody: java.util.List encodedValues -androidx.hilt.work.R$drawable: int notification_bg_low -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarStyle -androidx.constraintlayout.widget.R$string: int abc_menu_shift_shortcut_label -androidx.customview.R$id: int forever -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SHOWERS -cyanogenmod.app.ThemeComponent: int id -com.google.android.material.R$attr: int popupMenuBackground -androidx.constraintlayout.widget.R$id: int edit_query -okio.InflaterSource: int bufferBytesHeldByInflater -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_hovered_alpha -androidx.viewpager2.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar -com.google.android.material.R$id: int parent_matrix -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: int Age -okio.Buffer: byte readByte() -androidx.recyclerview.R$id: int accessibility_custom_action_26 -androidx.lifecycle.Lifecycling: Lifecycling() -com.google.android.material.R$styleable: int Slider_tickColorActive -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -androidx.appcompat.R$styleable: int AppCompatTheme_borderlessButtonStyle -com.google.android.material.button.MaterialButton: void addOnCheckedChangeListener(com.google.android.material.button.MaterialButton$OnCheckedChangeListener) -androidx.constraintlayout.widget.R$styleable: int Transform_android_scaleY -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void drain() -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: boolean disposed -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status LOADING -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Indeterminate -cyanogenmod.app.IProfileManager$Stub: cyanogenmod.app.IProfileManager asInterface(android.os.IBinder) -com.google.android.material.R$attr: int layout_constraintHorizontal_chainStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_transition_shared_axis_slide_distance -com.google.android.material.R$styleable: int Variant_region_widthMoreThan -androidx.core.R$id: int accessibility_custom_action_19 -com.google.android.material.R$styleable: int MaterialButton_shapeAppearance -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_divider -androidx.preference.R$style: int Base_V23_Theme_AppCompat -com.bumptech.glide.integration.okhttp.R$color -androidx.hilt.R$anim: int fragment_open_exit -androidx.customview.R$styleable: int FontFamilyFont_android_font -com.google.android.material.R$style: int TextAppearance_AppCompat_Tooltip -cyanogenmod.themes.ThemeManager: java.util.Set access$300(cyanogenmod.themes.ThemeManager) -com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_height_material -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -androidx.appcompat.R$attr: int paddingTopNoTitle -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getMinutelyForecast() -okhttp3.internal.http.HttpHeaders -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean hasKey(java.lang.Object) -com.google.android.material.card.MaterialCardView: void setBackgroundInternal(android.graphics.drawable.Drawable) -androidx.hilt.work.R$drawable: int notification_icon_background -com.google.android.material.R$id: int async -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_statusBarForeground -wangdaye.com.geometricweather.R$id: int barrier -com.google.android.material.R$dimen: int design_bottom_navigation_active_item_min_width -android.didikee.donate.R$style: int Theme_AppCompat_Light_NoActionBar -com.xw.repo.bubbleseekbar.R$attr: int bsb_hide_bubble -com.google.android.material.timepicker.ClockHandView: void setOnActionUpListener(com.google.android.material.timepicker.ClockHandView$OnActionUpListener) -wangdaye.com.geometricweather.R$styleable: int MenuItem_alphabeticModifiers -com.google.android.material.R$id: int easeInOut -com.google.android.material.R$styleable: int FontFamily_fontProviderPackage -com.xw.repo.bubbleseekbar.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: double lat -androidx.appcompat.R$style: int Widget_AppCompat_SeekBar_Discrete -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -com.google.android.material.R$id: int search_close_btn -androidx.appcompat.resources.R$style -com.jaredrummler.android.colorpicker.R$attr: int tooltipForegroundColor -android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedWidthMinor -wangdaye.com.geometricweather.R$dimen: int mtrl_fab_translation_z_hovered_focused -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitationDuration() -com.google.gson.FieldNamingPolicy$2: FieldNamingPolicy$2(java.lang.String,int) -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_velocityMode -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_16dp -androidx.constraintlayout.widget.R$styleable: int TextAppearance_textAllCaps -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onScreenTurnedOn() -com.google.android.material.R$color: int material_on_background_disabled -okhttp3.internal.http2.Http2Connection: long access$608(okhttp3.internal.http2.Http2Connection) -wangdaye.com.geometricweather.R$attr: int actionBarDivider -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dividerHorizontal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String getWeathercn() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_padding_end_material -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.functions.Function keySelector -wangdaye.com.geometricweather.R$array: int widget_styles -james.adaptiveicon.R$layout: int abc_dialog_title_material -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getLiveLockScreenThemePackageName() -wangdaye.com.geometricweather.R$id: int right_icon -androidx.fragment.app.Fragment$InstantiationException -com.turingtechnologies.materialscrollbar.R$attr: int maxImageSize -androidx.preference.R$color: int primary_dark_material_light -okhttp3.internal.http2.Http2Codec: java.lang.String CONNECTION -cyanogenmod.app.LiveLockScreenInfo: void cloneInto(cyanogenmod.app.LiveLockScreenInfo) -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -com.google.gson.JsonIOException -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -androidx.constraintlayout.widget.R$attr: int titleTextAppearance -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPm25() -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicReference upstream -cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_VISUALIZER_ENABLED -com.google.android.material.tabs.TabLayout: int getTabMinWidth() -io.reactivex.Observable: io.reactivex.Completable concatMapCompletable(io.reactivex.functions.Function) -cyanogenmod.themes.IThemeService$Stub$Proxy: long getLastThemeChangeTime() -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: boolean isDisposed() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String brandId -com.google.android.material.R$id: int filled -androidx.transition.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.util.Date date -androidx.dynamicanimation.R$id: int right_icon -androidx.constraintlayout.utils.widget.ImageFilterView: float getContrast() -androidx.recyclerview.R$attr: int fontProviderFetchStrategy -androidx.swiperefreshlayout.widget.SwipeRefreshLayout$SavedState -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_logo -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_20 -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTint -wangdaye.com.geometricweather.R$id: int pathRelative -cyanogenmod.weather.RequestInfo: RequestInfo(android.os.Parcel) -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: android.os.IBinder mRemote -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -com.google.android.material.R$dimen: int mtrl_card_dragged_z -okhttp3.Cache$CacheRequestImpl$1 -android.didikee.donate.R$attr: int colorControlActivated -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_menuCategory -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_numericShortcut -wangdaye.com.geometricweather.R$anim -james.adaptiveicon.R$attr: int listItemLayout -com.bumptech.glide.load.engine.GlideException: java.lang.Exception exception -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_CompactMenu -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontContainer -com.google.android.material.card.MaterialCardView: void setCheckedIconSizeResource(int) -cyanogenmod.profiles.AirplaneModeSettings$1: cyanogenmod.profiles.AirplaneModeSettings createFromParcel(android.os.Parcel) -androidx.constraintlayout.widget.R$string: int abc_menu_meta_shortcut_label -androidx.appcompat.widget.ViewStubCompat: int getInflatedId() -androidx.constraintlayout.widget.R$color: int abc_tint_btn_checkable -com.bumptech.glide.integration.okhttp.R$id: int left -okhttp3.Challenge: java.lang.String scheme -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$id: int item_weather_daily_air_content -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float thunderstorm -androidx.appcompat.R$dimen: int abc_action_button_min_width_overflow_material -okhttp3.internal.ws.WebSocketProtocol: long PAYLOAD_BYTE_MAX -okhttp3.internal.ws.RealWebSocket: RealWebSocket(okhttp3.Request,okhttp3.WebSocketListener,java.util.Random,long) -wangdaye.com.geometricweather.R$styleable: int[] AlertDialog -com.google.android.material.chip.Chip: android.content.res.ColorStateList getCloseIconTint() -wangdaye.com.geometricweather.R$attr: int overlapAnchor -android.didikee.donate.R$styleable: int PopupWindow_android_popupAnimationStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf -io.reactivex.Observable: io.reactivex.Observable debounce(io.reactivex.functions.Function) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getLongDate(android.content.Context) -cyanogenmod.os.Build: Build() -okhttp3.internal.http2.Hpack$Writer: int maxDynamicTableByteCount -wangdaye.com.geometricweather.R$id: int dialog_location_help_locationIcon -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_material -okhttp3.internal.http2.Http2Reader: void readPriority(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -wangdaye.com.geometricweather.R$string: int phase_third -wangdaye.com.geometricweather.R$styleable: int Chip_hideMotionSpec -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -wangdaye.com.geometricweather.R$style: int TestStyleWithLineHeight -okio.ByteString: int lastIndexOf(okio.ByteString,int) -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_disableDependentsState -io.reactivex.internal.observers.DeferredScalarDisposable: boolean isDisposed() -com.turingtechnologies.materialscrollbar.MaterialScrollBar: MaterialScrollBar(android.content.Context,android.util.AttributeSet) -cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient access$202(cyanogenmod.weatherservice.WeatherProviderService,cyanogenmod.weatherservice.IWeatherProviderServiceClient) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_FULL -com.turingtechnologies.materialscrollbar.R$id: int up -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingStart -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_orientation -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: int requestFusion(int) -io.reactivex.internal.disposables.ArrayCompositeDisposable -androidx.viewpager.R$dimen: int notification_big_circle_margin -okhttp3.internal.http2.Settings: int ENABLE_PUSH -androidx.appcompat.R$id: int action_text -com.google.android.material.appbar.AppBarLayout: void setTargetElevation(float) -wangdaye.com.geometricweather.R$id: int widget_week_icon -androidx.preference.R$style: int Widget_AppCompat_SearchView -com.google.android.material.R$string: int abc_menu_alt_shortcut_label -androidx.lifecycle.SavedStateHandle: java.util.Set keys() -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_error -wangdaye.com.geometricweather.R$drawable: int material_ic_clear_black_24dp -wangdaye.com.geometricweather.R$xml: int widget_trend_daily -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String getValue() -com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontStyle -com.google.android.material.R$style: int TextAppearance_Design_Error -wangdaye.com.geometricweather.R$xml: int standalone_badge -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents -androidx.constraintlayout.widget.R$styleable: int KeyCycle_motionTarget -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream newStream(int,java.util.List,boolean) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: MfHistoryResult$Position() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber -com.jaredrummler.android.colorpicker.R$attr: int height -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextInputEditText -androidx.constraintlayout.widget.R$dimen: int disabled_alpha_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_headerLayout -com.xw.repo.bubbleseekbar.R$layout: int abc_action_mode_bar -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getIcePrecipitation() -android.didikee.donate.R$string: int abc_searchview_description_query -wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_1_3_padding_bottom -com.jaredrummler.android.colorpicker.R$attr: int colorPrimary -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: long EndEpochDate -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String country -com.google.android.material.R$attr: int boxCornerRadiusTopStart -androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$attr: int barLength -com.jaredrummler.android.colorpicker.R$attr: int cpv_showDialog -androidx.viewpager2.widget.ViewPager2: int getItemDecorationCount() -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dark -io.reactivex.internal.observers.BasicIntQueueDisposable: long serialVersionUID -wangdaye.com.geometricweather.main.utils.MainPalette -com.jaredrummler.android.colorpicker.ColorPreference -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabText -androidx.hilt.lifecycle.R$id: int notification_background -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_enabled -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_FONTS -okio.RealBufferedSource: java.lang.String readUtf8LineStrict(long) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarStyle -okhttp3.ResponseBody: java.io.Reader reader -wangdaye.com.geometricweather.R$id: int grassTitle -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_KEYS_CONTROL_RING_STREAM_VALIDATOR -androidx.vectordrawable.R$integer: R$integer() -wangdaye.com.geometricweather.R$styleable: int Insets_paddingBottomSystemWindowInsets -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String toValue(java.util.List) -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float ParticulateMatter2_5 -com.google.android.material.R$id: int autoComplete -okhttp3.internal.http2.Http2Connection$PingRunnable: void execute() -androidx.transition.R$dimen: int notification_small_icon_size_as_large -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias -wangdaye.com.geometricweather.R$drawable: int notif_temp_0 -androidx.constraintlayout.widget.R$id: int easeOut -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_BarSize -wangdaye.com.geometricweather.R$xml: int widget_clock_day_horizontal -io.reactivex.internal.util.VolatileSizeArrayList: long serialVersionUID -cyanogenmod.app.ThemeVersion$ComponentVersion: cyanogenmod.app.ThemeComponent component -wangdaye.com.geometricweather.R$styleable: int MaterialRadioButton_useMaterialThemeColors -okhttp3.Protocol: okhttp3.Protocol SPDY_3 -wangdaye.com.geometricweather.R$string: int mold -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display1 -com.xw.repo.bubbleseekbar.R$id: int customPanel -androidx.preference.R$dimen: int item_touch_helper_swipe_escape_max_velocity -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_dither -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_editor_absoluteX -wangdaye.com.geometricweather.R$id: int bidirectional -com.google.android.material.textfield.TextInputLayout: void setErrorIconOnLongClickListener(android.view.View$OnLongClickListener) -androidx.hilt.work.R$id: int accessibility_custom_action_4 -okhttp3.internal.ws.RealWebSocket$PingRunnable: RealWebSocket$PingRunnable(okhttp3.internal.ws.RealWebSocket) -wangdaye.com.geometricweather.R$styleable: int[] State -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_48dp -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelMenuListWidth -com.google.android.material.R$drawable: int abc_btn_radio_material_anim -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginStart() -wangdaye.com.geometricweather.R$id: int decelerate -android.didikee.donate.R$attr: int buttonPanelSideLayout -com.jaredrummler.android.colorpicker.R$layout: int abc_action_bar_title_item -com.google.android.material.R$attr: int materialThemeOverlay -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_dither -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature Temperature -android.didikee.donate.R$drawable: int abc_ic_voice_search_api_material -okhttp3.Response: okhttp3.Protocol protocol -io.reactivex.internal.util.NotificationLite: boolean isError(java.lang.Object) -com.google.android.material.R$id: int barrier -androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_width_overflow_material -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionBarOverlay -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry -wangdaye.com.geometricweather.R$string: int feedback_search_location -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: java.util.concurrent.atomic.AtomicBoolean shouldConnect -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_tint -androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -android.didikee.donate.R$dimen: int abc_config_prefDialogWidth -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_visible -com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusTopEnd -wangdaye.com.geometricweather.R$layout: int preference_information_material -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_FULL_COLOR_VALIDATOR -com.jaredrummler.android.colorpicker.R$attr: int switchPreferenceStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: void setId(java.lang.Long) -wangdaye.com.geometricweather.R$layout: int abc_action_bar_title_item -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline2 -cyanogenmod.weatherservice.IWeatherProviderService: void cancelOngoingRequests() -androidx.preference.R$color: int button_material_dark -com.xw.repo.bubbleseekbar.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.R$styleable: int AppCompatTextView_fontVariationSettings -com.jaredrummler.android.colorpicker.R$attr: int windowFixedHeightMinor -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onComplete() -james.adaptiveicon.R$layout: int abc_screen_simple -com.google.android.material.R$attr: int textAppearanceListItemSmall -com.google.android.material.R$style: int Base_Widget_AppCompat_ImageButton -com.google.gson.stream.JsonReader: long MIN_INCOMPLETE_INTEGER -okhttp3.internal.platform.AndroidPlatform$CloseGuard: boolean warnIfOpen(java.lang.Object) -com.bumptech.glide.R$id: int icon -okhttp3.internal.http.CallServerInterceptor$CountingSink: void write(okio.Buffer,long) -com.jaredrummler.android.colorpicker.R$attr: int searchHintIcon -james.adaptiveicon.R$styleable: int DrawerArrowToggle_spinBars -wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaTitle -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_content_inset_material -androidx.swiperefreshlayout.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.R$styleable: int FragmentContainerView_android_tag +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cp +com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Widget_AppCompat_Toolbar +androidx.preference.R$styleable: int AppCompatTheme_actionModeStyle +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver) +androidx.constraintlayout.widget.R$id: int action_bar_container +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String weather +wangdaye.com.geometricweather.R$id: int enterAlwaysCollapsed +com.google.android.material.R$dimen: int mtrl_calendar_header_toggle_margin_top +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getUnitId() +com.google.android.material.R$styleable: int KeyTimeCycle_motionTarget +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderCerts android.didikee.donate.R$attr: int textAppearanceLargePopupMenu -androidx.appcompat.widget.AppCompatRadioButton: void setSupportButtonTintList(android.content.res.ColorStateList) -androidx.preference.R$attr: int elevation -android.didikee.donate.R$styleable: int AppCompatTheme_seekBarStyle -androidx.appcompat.R$id: int titleDividerNoCustom -androidx.dynamicanimation.animation.DynamicAnimation -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: java.lang.String Unit -com.xw.repo.bubbleseekbar.R$color: int dim_foreground_disabled_material_dark -android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -androidx.fragment.app.BackStackState -wangdaye.com.geometricweather.R$attr: int gestureInsetBottomIgnored -androidx.constraintlayout.widget.R$layout: int notification_template_icon_group -okhttp3.logging.LoggingEventListener$Factory -com.bumptech.glide.R$attr: int fontWeight -android.didikee.donate.R$styleable: int AlertDialog_buttonIconDimen -cyanogenmod.weather.WeatherInfo$DayForecast: boolean equals(java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_editor_absoluteY -androidx.viewpager.R$dimen: int compat_notification_large_icon_max_height -okhttp3.Cache: void evictAll() -androidx.preference.R$dimen: int abc_dialog_padding_material -com.google.android.material.R$attr: int buttonStyleSmall -com.google.android.material.R$styleable: int[] Variant -androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_id -com.google.android.material.R$styleable: int[] MotionLayout -okio.ByteString: int indexOf(byte[],int) -android.didikee.donate.R$styleable: int AppCompatTheme_dialogTheme -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWeatherStart() -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.reflect.Type getGenericComponentType() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: int UnitType -androidx.lifecycle.LifecycleDispatcher: java.util.concurrent.atomic.AtomicBoolean sInitialized -wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_top_start -com.google.android.material.R$dimen: int mtrl_large_touch_target -com.google.android.material.navigation.NavigationView: void setItemHorizontalPaddingResource(int) -com.jaredrummler.android.colorpicker.R$attr: int popupWindowStyle -wangdaye.com.geometricweather.R$layout: int notification_template_part_chronometer -androidx.viewpager2.R$dimen: int notification_top_pad_large_text -com.google.android.material.R$attr: int sizePercent -com.google.android.material.R$dimen: int mtrl_extended_fab_disabled_elevation -cyanogenmod.providers.CMSettings$Secure: android.net.Uri getUriFor(java.lang.String) -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerViewAccessibilityDelegate getCompatAccessibilityDelegate() -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: ChineseCityEntity(java.lang.Long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getWetBulbTemperature() -wangdaye.com.geometricweather.R$attr: int showDelay -okhttp3.internal.ws.RealWebSocket$CancelRunnable: okhttp3.internal.ws.RealWebSocket this$0 -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_search -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedHeightMinor -wangdaye.com.geometricweather.R$color: int material_on_primary_emphasis_medium -android.didikee.donate.R$styleable: int View_paddingStart -androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$styleable: int[] ViewBackgroundHelper -androidx.appcompat.R$attr: int contentInsetEndWithActions -androidx.preference.TwoStatePreference: TwoStatePreference(android.content.Context,android.util.AttributeSet) -androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getTagValue() -androidx.customview.R$id: int time -james.adaptiveicon.R$attr: int backgroundSplit -androidx.preference.R$styleable: int ActionBar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableTransition -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.Observer downstream -james.adaptiveicon.R$string: int abc_search_hint -wangdaye.com.geometricweather.R$attr: int subtitleTextStyle -okhttp3.internal.http.StatusLine: int code -com.google.android.material.R$dimen: int mtrl_snackbar_padding_horizontal -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_elevation -com.google.android.material.tabs.TabLayout: int getTabGravity() -com.google.android.material.R$id: int accessibility_custom_action_31 -androidx.drawerlayout.R$attr: int fontProviderQuery -androidx.fragment.app.FragmentManagerState -androidx.preference.R$styleable: int AlertDialog_showTitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.util.List getValue() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCityId(java.lang.String) -cyanogenmod.content.Intent: java.lang.String ACTION_THEME_REMOVED -wangdaye.com.geometricweather.R$attr: int preferenceFragmentCompatStyle -com.google.android.material.R$color: int abc_search_url_text_pressed -androidx.constraintlayout.widget.R$id: int blocking -okio.GzipSink: void write(okio.Buffer,long) -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: java.lang.Object[] row -com.turingtechnologies.materialscrollbar.R$attr: int snackbarStyle -wangdaye.com.geometricweather.R$attr: int autoSizePresetSizes -wangdaye.com.geometricweather.R$attr: int textAppearanceOverline -retrofit2.RequestBuilder: okhttp3.HttpUrl$Builder urlBuilder -com.google.gson.internal.LazilyParsedNumber: int intValue() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display3 -com.google.android.material.R$attr: int trackHeight -okio.Buffer: long readAll(okio.Sink) -androidx.appcompat.resources.R$dimen: int notification_small_icon_size_as_large -cyanogenmod.profiles.LockSettings: LockSettings(int) -androidx.drawerlayout.R$attr: int fontStyle -io.reactivex.Observable: io.reactivex.Observable error(java.util.concurrent.Callable) -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$color: int mtrl_fab_bg_color_selector -androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemTextAppearance -androidx.coordinatorlayout.R$styleable: int ColorStateListItem_android_alpha -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2(retrofit2.Call) -com.google.android.material.R$attr: int snackbarStyle -androidx.preference.R$attr: int listPreferredItemHeightLarge -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: long EpochEndTime -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalStyle -androidx.core.R$drawable: int notification_icon_background -okio.Buffer: okio.Buffer writeUtf8CodePoint(int) -wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_summary -com.google.android.material.slider.Slider: void setTickInactiveTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$string: int abc_menu_ctrl_shortcut_label -com.xw.repo.bubbleseekbar.R$attr: int actionModeBackground -wangdaye.com.geometricweather.R$attr: int dropDownListViewStyle -james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.google.android.material.imageview.ShapeableImageView: void setStrokeColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity -androidx.constraintlayout.widget.R$styleable: int[] TextAppearance -androidx.activity.R$color -com.google.android.material.R$styleable: int[] TextInputLayout -androidx.appcompat.R$drawable: int abc_btn_radio_to_on_mtrl_000 -cyanogenmod.externalviews.KeyguardExternalView$3: android.graphics.Rect val$clipRect -androidx.vectordrawable.animated.R$dimen: int notification_content_margin_start -androidx.constraintlayout.widget.R$styleable: int Constraint_visibilityMode -wangdaye.com.geometricweather.R$attr: int cornerSize -wangdaye.com.geometricweather.R$drawable: int notif_temp_11 -android.didikee.donate.R$color: int abc_search_url_text_normal -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_15 -androidx.constraintlayout.widget.R$style: R$style() -com.google.android.material.R$layout: int test_chip_zero_corner_radius -wangdaye.com.geometricweather.R$styleable: int NavigationView_menu -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_vertical -com.jaredrummler.android.colorpicker.R$attr: int dialogTheme -com.google.android.material.R$color: int cardview_dark_background -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackActiveTintList() -okhttp3.internal.http2.Huffman: int encodedLength(okio.ByteString) -wangdaye.com.geometricweather.R$attr: int itemShapeAppearanceOverlay -com.google.android.material.R$styleable: int Constraint_flow_verticalAlign -cyanogenmod.externalviews.ExternalView$8: void run() -wangdaye.com.geometricweather.R$styleable: int RadialViewGroup_materialCircleRadius -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String getIcon() -io.reactivex.internal.util.VolatileSizeArrayList: boolean isEmpty() -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_normal -com.google.android.material.R$attr: int boxStrokeErrorColor -okio.Buffer: long size -com.google.android.material.R$color: int material_slider_inactive_track_color -androidx.fragment.R$styleable: int FontFamily_fontProviderPackage -com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyleIndicator -com.google.android.material.R$styleable: int ActionBar_progressBarPadding -com.google.android.material.R$id: int start -com.google.android.material.R$color: int mtrl_bottom_nav_item_tint -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_listItemLayout -com.jaredrummler.android.colorpicker.R$id: int top -wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_xml -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_CBC_SHA256 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastVerticalStyle -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: org.reactivestreams.Subscriber downstream -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getTranslateY() -com.xw.repo.bubbleseekbar.R$attr: int navigationContentDescription -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_DialogWhenLarge -androidx.vectordrawable.R$id: int line1 -com.google.android.material.R$styleable: int KeyCycle_android_rotationX -cyanogenmod.providers.CMSettings$Secure: boolean putFloat(android.content.ContentResolver,java.lang.String,float) -wangdaye.com.geometricweather.R$id: int reverseSawtooth -androidx.hilt.R$attr: int font -androidx.fragment.R$attr: R$attr() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_30 -androidx.loader.R$style: int TextAppearance_Compat_Notification -androidx.drawerlayout.widget.DrawerLayout: float getDrawerElevation() -wangdaye.com.geometricweather.R$dimen: int abc_text_size_subtitle_material_toolbar -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Subhead -androidx.core.app.RemoteActionCompatParcelizer: androidx.core.app.RemoteActionCompat read(androidx.versionedparcelable.VersionedParcel) -androidx.appcompat.widget.ActionMenuView: void setOverflowIcon(android.graphics.drawable.Drawable) -cyanogenmod.weather.WeatherLocation -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource CAIYUN -okhttp3.internal.http.RequestLine: RequestLine() -com.google.android.material.R$styleable: int[] ExtendedFloatingActionButton_Behavior_Layout -com.google.android.material.textfield.TextInputLayout: void setHint(int) -okhttp3.internal.http2.Http2Stream: long bytesLeftInWriteWindow -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_11 -androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_radio -org.greenrobot.greendao.database.DatabaseOpenHelper: boolean loadSQLCipherNativeLibs -androidx.preference.R$drawable: int abc_spinner_mtrl_am_alpha -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_min -retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1 -cyanogenmod.providers.CMSettings$Secure: java.util.Map VALIDATORS -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3 -android.didikee.donate.R$attr: int listPopupWindowStyle -androidx.hilt.R$anim: int fragment_fast_out_extra_slow_in -com.turingtechnologies.materialscrollbar.R$dimen: int notification_small_icon_background_padding -retrofit2.adapter.rxjava2.CallEnqueueObservable: void subscribeActual(io.reactivex.Observer) -com.google.android.material.R$layout: int test_toolbar_elevation -wangdaye.com.geometricweather.R$id: int widget_day_sign -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_overflow_material -cyanogenmod.app.CustomTile$Builder: boolean mCollapsePanel -com.google.android.material.R$style: int Widget_AppCompat_DrawerArrowToggle -com.google.android.material.R$style: int Platform_AppCompat_Light -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: KeyguardExternalViewProviderService$Provider$ProviderImpl$5(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) -okhttp3.Cache: int requestCount -android.didikee.donate.R$id: int title_template -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$dimen: int mtrl_edittext_rectangle_top_offset -androidx.appcompat.resources.R$layout: int notification_action -androidx.hilt.work.R$id: int right_icon -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean hasKey(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSubtitle2 -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver) -wangdaye.com.geometricweather.R$id: int action_image -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_5 -wangdaye.com.geometricweather.R$styleable: int Layout_chainUseRtl -com.google.android.material.R$attr: int homeAsUpIndicator -cyanogenmod.providers.CMSettings$2: CMSettings$2() -androidx.preference.R$dimen: int abc_text_size_body_2_material -com.jaredrummler.android.colorpicker.R$anim: int abc_fade_in -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_go_search_api_material -androidx.viewpager.R$dimen: int notification_subtext_size -com.google.android.material.textfield.TextInputLayout: void setHelperTextEnabled(boolean) -androidx.hilt.lifecycle.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.db.entities.MinutelyEntity: long time -androidx.preference.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$id: int action_mode_bar -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_1 -androidx.preference.R$styleable: int Preference_android_dependency -okio.RealBufferedSink$1: void flush() -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: java.lang.Object v1 -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_android_layout -retrofit2.RequestFactory$Builder: boolean gotPart -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu -androidx.lifecycle.SavedStateViewModelFactory: android.os.Bundle mDefaultArgs -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTheme -androidx.constraintlayout.widget.R$styleable: int KeyPosition_drawPath -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric -androidx.appcompat.R$id: int accessibility_custom_action_27 -okhttp3.CacheControl: boolean isPublic -androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabText -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void clear() -com.google.android.material.R$styleable: int KeyCycle_android_elevation -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabView -com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_disabled_material_dark -okio.ByteString: okio.ByteString hmacSha1(okio.ByteString) -wangdaye.com.geometricweather.R$styleable: int Spinner_android_prompt -cyanogenmod.app.IPartnerInterface$Stub$Proxy: IPartnerInterface$Stub$Proxy(android.os.IBinder) -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_31 -androidx.appcompat.widget.AppCompatRadioButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.xw.repo.bubbleseekbar.R$dimen -cyanogenmod.weather.CMWeatherManager$RequestStatus -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric Metric -androidx.recyclerview.R$styleable: int RecyclerView_android_descendantFocusability -com.turingtechnologies.materialscrollbar.R$id: int activity_chooser_view_content -androidx.preference.R$styleable: int Preference_android_shouldDisableView -retrofit2.ParameterHandler$FieldMap: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonTintMode -wangdaye.com.geometricweather.R$attr: int dividerPadding -okhttp3.internal.http2.Http2Connection: long degradedPongsReceived -james.adaptiveicon.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -wangdaye.com.geometricweather.R$styleable: int ActionMode_height -retrofit2.Utils$GenericArrayTypeImpl: Utils$GenericArrayTypeImpl(java.lang.reflect.Type) -okhttp3.Cookie: okhttp3.Cookie parse(okhttp3.HttpUrl,java.lang.String) -com.google.gson.stream.JsonReader$1: void promoteNameToValue(com.google.gson.stream.JsonReader) -com.google.android.material.navigation.NavigationView: void setItemBackground(android.graphics.drawable.Drawable) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_homeAsUpIndicator -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Caption -android.didikee.donate.R$dimen: int abc_action_bar_subtitle_top_margin_material -androidx.fragment.R$anim: int fragment_fade_exit -okhttp3.internal.cache.CacheInterceptor: boolean isContentSpecificHeader(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int[] ViewStubCompat -com.google.android.material.R$layout: int material_clock_period_toggle_land -okhttp3.Response$Builder: void checkPriorResponse(okhttp3.Response) -james.adaptiveicon.R$attr: int thumbTintMode -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: CMSettings$InclusiveIntegerRangeValidator(int,int) -androidx.vectordrawable.animated.R$drawable: int notification_action_background -androidx.appcompat.R$styleable: int AppCompatTheme_colorPrimary -androidx.fragment.app.FragmentManager -james.adaptiveicon.R$string: int abc_action_bar_up_description -james.adaptiveicon.R$drawable: int notification_bg_normal_pressed -androidx.constraintlayout.widget.R$attr: int backgroundSplit -android.didikee.donate.R$drawable: int abc_textfield_search_default_mtrl_alpha -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_pressed -com.turingtechnologies.materialscrollbar.R$drawable: int notification_template_icon_bg -com.google.android.material.R$dimen: int abc_list_item_height_material -okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Level level -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onComplete() -io.reactivex.internal.queue.SpscArrayQueue: void soElement(int,java.lang.Object) -androidx.lifecycle.ProcessLifecycleOwner: android.os.Handler mHandler -wangdaye.com.geometricweather.R$attr: int boxStrokeWidthFocused -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_45 -cyanogenmod.power.IPerformanceManager$Stub$Proxy: int getPowerProfile() -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_disabled_holo_dark -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarStyle -wangdaye.com.geometricweather.R$layout: int design_navigation_item_subheader -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Bridge -com.google.android.material.R$string: int material_timepicker_text_input_mode_description -com.google.android.material.internal.NavigationMenuItemView: void setCheckable(boolean) -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_seek_step_section -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_showAsAction -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_color_disabled -com.google.android.material.R$string: int material_timepicker_clock_mode_description -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State[] values() -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void clear(io.reactivex.internal.queue.SpscLinkedArrayQueue) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_scaleX -wangdaye.com.geometricweather.R$drawable: int notif_temp_111 -okhttp3.internal.http2.Http2Connection$ReaderRunnable -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf -androidx.constraintlayout.widget.R$id: int action_mode_bar -androidx.recyclerview.R$id: R$id() -okio.RealBufferedSource: byte[] readByteArray() -com.google.android.material.R$styleable: int MenuView_android_headerBackground -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig weatherEntityDaoConfig -com.google.android.material.textfield.TextInputLayout: com.google.android.material.shape.MaterialShapeDrawable getBoxBackground() -androidx.preference.R$styleable: int SearchView_defaultQueryHint -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCopyDrawable -retrofit2.Call -com.google.android.material.R$attr: int staggered -cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileGroup getActiveProfileGroup(java.lang.String) -androidx.preference.R$styleable: int GradientColor_android_tileMode -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_colorShape -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode -com.google.android.material.R$color: int material_on_background_emphasis_medium -com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_backgroundTint -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerComplete() -android.didikee.donate.R$drawable: int abc_list_pressed_holo_light -cyanogenmod.externalviews.KeyguardExternalView$4: KeyguardExternalView$4(cyanogenmod.externalviews.KeyguardExternalView) -com.bumptech.glide.R$id: int top -androidx.constraintlayout.widget.ConstraintLayout: void setMaxHeight(int) -com.google.android.material.R$id: int mtrl_calendar_frame -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_ASSIST_ACTION -wangdaye.com.geometricweather.R$dimen: int fastscroll_margin -androidx.viewpager2.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: FitSystemBarSwipeRefreshLayout(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionDropDownStyle -com.turingtechnologies.materialscrollbar.R$attr: int actionBarItemBackground -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void cancel(io.reactivex.internal.queue.SpscLinkedArrayQueue,io.reactivex.internal.queue.SpscLinkedArrayQueue) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_popupWindowStyle -wangdaye.com.geometricweather.R$id: int subtitle +okhttp3.internal.platform.Platform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.X509TrustManager) +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_content_include +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textFontWeight +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeFillColor +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_scaleX +com.google.android.material.R$layout: int mtrl_calendar_vertical +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.hilt.R$layout: int notification_template_icon_group +okio.Util +androidx.lifecycle.ViewModelStore: java.util.HashMap mMap +androidx.constraintlayout.widget.R$styleable: int[] KeyPosition +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$color: int error_color_material_light +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_y_offset_touch +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean() +com.jaredrummler.android.colorpicker.R$color: int primary_material_dark +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_disabled_elevation +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +androidx.work.R$id: int right_side +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +androidx.preference.R$styleable: int MenuGroup_android_orderInCategory +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Temperature +androidx.appcompat.R$layout: int abc_activity_chooser_view_list_item +com.google.android.material.textfield.TextInputLayout: void setPrefixTextColor(android.content.res.ColorStateList) +androidx.preference.R$styleable: int MenuItem_actionViewClass +okio.Buffer: byte getByte(long) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getCityId() +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.query.QueryBuilder queryBuilder(java.lang.Class) +androidx.preference.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +androidx.preference.R$string: int abc_searchview_description_query +androidx.loader.R$attr: int fontVariationSettings +cyanogenmod.weather.ICMWeatherManager$Stub +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float no2 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWeatherSource() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedWidthMajor +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_negativeButtonText +cyanogenmod.weather.WeatherInfo: double mWindSpeed +com.google.android.material.slider.Slider: void setThumbTintList(android.content.res.ColorStateList) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: java.lang.Object singleItem +okhttp3.Protocol: java.lang.String protocol +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float totalPrecipitationProbability +androidx.core.R$integer +com.jaredrummler.android.colorpicker.R$dimen: int notification_large_icon_height +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setId(java.lang.Long) +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_RESUME +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: java.lang.Integer proba6H +com.xw.repo.bubbleseekbar.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$styleable: int MotionScene_defaultDuration +wangdaye.com.geometricweather.R$string: int key_widget_text +okhttp3.internal.http2.Http2Connection: long access$108(okhttp3.internal.http2.Http2Connection) wangdaye.com.geometricweather.R$drawable: int weather_haze_1 -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarStyle -androidx.hilt.R$drawable: int notification_icon_background -retrofit2.Platform: java.lang.reflect.Constructor lookupConstructor -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Light -androidx.appcompat.widget.AppCompatButton: int getAutoSizeStepGranularity() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight +androidx.preference.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +retrofit2.ParameterHandler: void apply(retrofit2.RequestBuilder,java.lang.Object) +androidx.appcompat.R$style: int Base_DialogWindowTitle_AppCompat +com.turingtechnologies.materialscrollbar.R$color: int design_bottom_navigation_shadow_color +androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorPrimaryDark +androidx.appcompat.R$style: int Widget_AppCompat_Button_Small +com.google.android.material.R$styleable: int MaterialRadioButton_useMaterialThemeColors +androidx.constraintlayout.widget.R$id: int submenuarrow +com.google.android.material.R$id: int animateToStart +android.didikee.donate.R$attr: int buttonStyle +androidx.preference.R$dimen: int abc_edit_text_inset_horizontal_material +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$drawable: R$drawable() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String getUnit() +androidx.constraintlayout.widget.R$id: int group_divider +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_keyline +wangdaye.com.geometricweather.R$id: int action_bar_spinner +com.xw.repo.bubbleseekbar.R$color: int abc_tint_seek_thumb +androidx.appcompat.widget.Toolbar: android.widget.TextView getSubtitleTextView() +androidx.hilt.R$id: int chronometer +wangdaye.com.geometricweather.R$attr: int layout +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupMenu_Overflow +androidx.appcompat.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +androidx.constraintlayout.widget.R$attr: int motionPathRotate +okhttp3.internal.cache.FaultHidingSink +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type LEFT +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: void setKeyLineVisibility(boolean) +androidx.preference.R$string: int abc_activitychooserview_choose_application +wangdaye.com.geometricweather.R$id: int split_action_bar +okio.Buffer: void skip(long) +androidx.appcompat.R$dimen: int abc_edit_text_inset_horizontal_material +com.google.android.material.R$attr: int queryBackground +com.google.android.material.slider.Slider: int getTrackSidePadding() +androidx.core.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$id: int easeOut +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: boolean isDisposed() +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onComplete() +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_min_height +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_Solid +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult +com.google.android.material.R$styleable: int ProgressIndicator_trackColor +wangdaye.com.geometricweather.R$attr: int strokeWidth +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Id +com.google.android.material.chip.Chip: float getChipEndPadding() com.bumptech.glide.R$attr: int layout_behavior -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_NoActionBar -androidx.vectordrawable.R$drawable: int notification_bg_normal_pressed -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 -com.turingtechnologies.materialscrollbar.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int Toolbar_menu -androidx.activity.R$styleable: int FontFamilyFont_ttcIndex -androidx.core.widget.NestedScrollView$SavedState -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleTextAppearance -androidx.viewpager2.R$attr: int alpha -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType UpdateInTxIterable -com.xw.repo.bubbleseekbar.R$attr: int actionButtonStyle -androidx.preference.R$dimen: int abc_disabled_alpha_material_light -androidx.preference.R$styleable: int AppCompatTheme_actionModeStyle -cyanogenmod.app.StatusBarPanelCustomTile: android.os.UserHandle getUser() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitationDuration(java.lang.Float) -androidx.appcompat.R$attr: int actionBarDivider -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textStyle -wangdaye.com.geometricweather.R$attr: int tooltipFrameBackground -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_id -androidx.annotation.Keep -androidx.transition.R$styleable: int FontFamilyFont_android_fontStyle -androidx.recyclerview.R$styleable: int FontFamilyFont_font -com.google.android.material.R$attr: int showDividers -androidx.appcompat.widget.SearchView -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle -androidx.vectordrawable.R$id: int right_icon -wangdaye.com.geometricweather.R$attr: int srcCompat -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.TableStatements statements -androidx.lifecycle.ProcessLifecycleOwner: void attach(android.content.Context) -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onNext(java.lang.Object) -androidx.lifecycle.MediatorLiveData$Source: androidx.lifecycle.LiveData mLiveData -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_cut_mtrl_alpha -okio.Buffer: okio.BufferedSink emitCompleteSegments() -androidx.drawerlayout.R$id: int line3 -com.turingtechnologies.materialscrollbar.R$attr: int state_collapsed -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRealFeelTemperature(java.lang.Integer) -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_visible -retrofit2.DefaultCallAdapterFactory -cyanogenmod.themes.ThemeManager$1: ThemeManager$1(cyanogenmod.themes.ThemeManager) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: SwipeRefreshLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setNumberString(java.lang.String) -com.xw.repo.bubbleseekbar.R$string: int abc_menu_ctrl_shortcut_label -okhttp3.internal.tls.DistinguishedNameParser: int end -com.google.android.material.R$styleable: int ConstraintSet_motionStagger -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_title_baseline_to_top -okhttp3.Cache: void flush() -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBaseline_creator -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_clear_material -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -com.google.android.material.slider.RangeSlider: void setTickVisible(boolean) -com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Determinate -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgressBackgroundColor(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: double Value -androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_horizontal_material -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onSuccess(java.lang.Object) -androidx.appcompat.R$styleable: int FontFamilyFont_ttcIndex -androidx.work.R$style: R$style() -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display4 -okio.ByteString: java.lang.String base64() -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable -androidx.fragment.app.FragmentContainerView: void setLayoutTransition(android.animation.LayoutTransition) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String weatherStart -com.google.android.material.R$dimen: int abc_text_size_caption_material -wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_dark -androidx.preference.R$string: int abc_searchview_description_voice -wangdaye.com.geometricweather.R$string: int feedback_restart -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Alert_Bridge -androidx.preference.R$drawable: int abc_ratingbar_indicator_material -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_left_mtrl_light -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getDailyForecast() -wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Panel -okhttp3.internal.http.CallServerInterceptor: CallServerInterceptor(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_textLocale -wangdaye.com.geometricweather.R$string: int key_widget_day_week -wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.entities.LocationEntity readEntity(android.database.Cursor,int) -com.github.rahatarmanahmed.cpv.CircularProgressView$5: boolean wasCancelled -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType TransactionCallable -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() -androidx.constraintlayout.widget.R$attr: int flow_firstVerticalBias -androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabView -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTag -androidx.preference.R$styleable: int CheckBoxPreference_summaryOff -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean done -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_lineHeight -wangdaye.com.geometricweather.R$string: int wind_11 -androidx.work.R$styleable: int FontFamily_fontProviderCerts -androidx.constraintlayout.widget.R$string: int abc_menu_space_shortcut_label -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: cyanogenmod.app.ILiveLockScreenChangeListener asInterface(android.os.IBinder) -androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -wangdaye.com.geometricweather.R$layout: int widget_remote -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_horizontalDivider -cyanogenmod.providers.CMSettings$System$2: boolean validate(java.lang.String) -com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$attr: int itemRippleColor -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_enabled -okio.GzipSource: java.util.zip.Inflater inflater -com.xw.repo.BubbleSeekBar: float getProgressFloat() -com.google.android.material.R$styleable: int ActionBar_contentInsetEndWithActions -wangdaye.com.geometricweather.db.entities.LocationEntity: LocationEntity(java.lang.String,java.lang.String,float,float,java.util.TimeZone,java.lang.String,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource,boolean,boolean,boolean) -com.xw.repo.bubbleseekbar.R$id: int action_bar_spinner -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_progress_in_float -wangdaye.com.geometricweather.R$styleable: int FragmentContainerView_android_tag -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$302(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Bridge -com.google.android.material.R$attr: int itemTextAppearanceActive -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setAlertId(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_suggestionRowLayout -okio.SegmentedByteString: okio.ByteString hmacSha256(okio.ByteString) -okhttp3.internal.http2.Hpack: java.util.Map nameToFirstIndex() -wangdaye.com.geometricweather.R$drawable: int abc_vector_test -androidx.preference.R$styleable: int AppCompatTextView_drawableBottomCompat -androidx.vectordrawable.R$drawable: R$drawable() -james.adaptiveicon.R$attr -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onComplete() -com.google.android.material.textfield.TextInputLayout: void setEndIconVisible(boolean) -androidx.constraintlayout.widget.R$id: int title_template -com.turingtechnologies.materialscrollbar.R$attr: int colorError -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object call() -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: void onThermalChanged(int) -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Caption -okhttp3.internal.http2.Http2Connection: boolean isHealthy(long) -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_disabled_holo_dark -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int getSubTextColorResId() -wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.R$id: int circular -androidx.appcompat.resources.R$layout: int notification_template_custom_big -androidx.core.R$drawable: int notification_bg_normal_pressed -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogTitle -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_OFF_VALIDATOR -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: long getTimeStamp() -wangdaye.com.geometricweather.common.ui.activities.AllergenActivity -androidx.constraintlayout.widget.R$integer: int abc_config_activityDefaultDur -okhttp3.internal.cache.CacheInterceptor: okhttp3.internal.cache.InternalCache cache -com.google.android.material.R$attr: int elevationOverlayEnabled -retrofit2.ParameterHandler$Path -androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_max -androidx.constraintlayout.widget.R$layout: int abc_expanded_menu_layout -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxBackgroundColor -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyBar -com.google.android.material.appbar.HeaderBehavior: HeaderBehavior() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_hint -androidx.coordinatorlayout.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$string: int feedback_request_location_in_background -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType JPEG +androidx.activity.R$string: int status_bar_notification_info_overflow +com.bumptech.glide.R$styleable: int FontFamily_fontProviderCerts +androidx.coordinatorlayout.R$layout: int notification_template_custom_big +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_MinWidth +cyanogenmod.profiles.ConnectionSettings: int mSubId +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onComplete() +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object getKey(java.lang.Object) +androidx.coordinatorlayout.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.R$string: int material_timepicker_text_input_mode_description +wangdaye.com.geometricweather.R$drawable: int ic_wind +io.reactivex.Observable: io.reactivex.Observable interval(long,long,java.util.concurrent.TimeUnit) +com.google.android.material.R$dimen: int mtrl_calendar_month_vertical_padding +androidx.preference.R$color: int notification_icon_bg_color +com.google.android.material.bottomnavigation.BottomNavigationView: int getSelectedItemId() +wangdaye.com.geometricweather.R$id: int path +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getCityId() +com.google.android.material.R$styleable: int Insets_paddingLeftSystemWindowInsets +com.google.android.material.card.MaterialCardView: void setBackground(android.graphics.drawable.Drawable) +androidx.cardview.R$styleable: int CardView_android_minHeight +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: CircularProgressViewAdapter() +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean error(java.lang.Throwable) +androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_layout +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitationProbability +androidx.appcompat.R$layout: int select_dialog_multichoice_material +com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusBottomStart +androidx.constraintlayout.widget.R$attr: int paddingTopNoTitle +androidx.constraintlayout.utils.widget.ImageFilterView: float getWarmth() +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth +androidx.core.R$id: int tag_screen_reader_focusable +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay[] values() +androidx.constraintlayout.widget.R$styleable: int Toolbar_logo +okhttp3.internal.io.FileSystem: okio.Sink sink(java.io.File) +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +androidx.constraintlayout.widget.R$attr: int flow_wrapMode +androidx.work.R$bool +com.xw.repo.bubbleseekbar.R$attr: int checkedTextViewStyle +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.ErrorCode errorCode +com.google.android.material.R$styleable: int SwitchCompat_track +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial +com.google.android.material.R$dimen: int mtrl_btn_padding_top +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getVibratorIntensity +james.adaptiveicon.R$dimen: int abc_dropdownitem_text_padding_left +com.bumptech.glide.R$style: int Widget_Compat_NotificationActionContainer +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_buttonPanelSideLayout +cyanogenmod.power.IPerformanceManager$Stub$Proxy: int getPowerProfile() +com.jaredrummler.android.colorpicker.R$dimen: int cpv_item_size +okio.RealBufferedSource: okio.ByteString readByteString(long) +wangdaye.com.geometricweather.R$string: int aqi_2 +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean getUrl() +com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_ContextMenu +wangdaye.com.geometricweather.R$drawable: int material_ic_menu_arrow_down_black_24dp +androidx.appcompat.R$color: int material_grey_600 +androidx.legacy.coreutils.R$id: int chronometer +wangdaye.com.geometricweather.R$drawable: int material_ic_calendar_black_24dp +com.google.android.material.R$styleable: int[] MaterialAlertDialogTheme +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.lang.String unit +wangdaye.com.geometricweather.R$styleable: int Slider_tickVisible +androidx.constraintlayout.widget.R$styleable: int MotionLayout_applyMotionScene +wangdaye.com.geometricweather.R$layout: int notification_action_tombstone +okhttp3.internal.http2.Http2Codec: okio.Sink createRequestBody(okhttp3.Request,long) +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderPackage +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_fontVariationSettings +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onSubscribe(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$attr: int actionModeCloseButtonStyle +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_always_show_bubble +cyanogenmod.externalviews.ExternalView: android.content.Context mContext +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer realFeelTemperature +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitation +com.google.android.material.R$integer: int status_bar_notification_info_maxnum +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.R$attr: int navigationMode +com.google.android.material.R$style: int TextAppearance_Design_Counter_Overflow +androidx.preference.R$layout: int abc_alert_dialog_title_material +com.bumptech.glide.integration.okhttp.R$dimen: int notification_top_pad +okhttp3.internal.platform.AndroidPlatform: void connectSocket(java.net.Socket,java.net.InetSocketAddress,int) +android.didikee.donate.R$styleable: int Toolbar_logo +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getDensityText(android.content.Context,float) +androidx.lifecycle.ServiceLifecycleDispatcher: void postDispatchRunnable(androidx.lifecycle.Lifecycle$Event) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.turingtechnologies.materialscrollbar.R$attr: int tabTextAppearance +android.didikee.donate.R$dimen: int abc_action_bar_overflow_padding_start_material +com.google.android.material.R$id: int BOTTOM_END +androidx.cardview.R$styleable: int CardView_cardPreventCornerOverlap +com.jaredrummler.android.colorpicker.R$integer: R$integer() +androidx.cardview.widget.CardView +androidx.preference.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.lifecycle.viewmodel.savedstate.R: R() +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display3 +com.jaredrummler.android.colorpicker.R$attr: int maxHeight +cyanogenmod.weather.CMWeatherManager$2$2: java.util.List val$weatherLocations +okhttp3.internal.platform.Android10Platform: Android10Platform(java.lang.Class) +cyanogenmod.weather.WeatherInfo$DayForecast: double getLow() +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_UNKNOWN +com.google.android.material.R$attr: int chipMinHeight +wangdaye.com.geometricweather.R$attr: int itemHorizontalPadding +okhttp3.Dispatcher: java.lang.Runnable idleCallback +androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontWeight +androidx.constraintlayout.widget.R$layout: int select_dialog_singlechoice_material +android.support.v4.app.INotificationSideChannel$Default: android.os.IBinder asBinder() +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: int mMax +com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_button_bar_material +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.viewpager2.R$dimen: int notification_small_icon_size_as_large +okhttp3.internal.platform.AndroidPlatform: boolean supportsAlpn() +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit[] values() +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +androidx.preference.R$styleable: int SwitchPreference_switchTextOff +androidx.lifecycle.LiveData: void considerNotify(androidx.lifecycle.LiveData$ObserverWrapper) +com.bumptech.glide.integration.okhttp.R$attr: int layout_keyline +cyanogenmod.providers.CMSettings$System: java.lang.String APP_SWITCH_WAKE_SCREEN +androidx.hilt.R$id: int accessibility_custom_action_7 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int Icon +android.didikee.donate.R$attr: int windowFixedWidthMinor +androidx.preference.R$id: int wrap_content +okhttp3.internal.http2.Http2Codec: java.lang.String KEEP_ALIVE +com.google.android.material.R$styleable: int TextInputLayout_endIconMode +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_Toolbar +androidx.appcompat.widget.SearchView: void setOnQueryTextListener(androidx.appcompat.widget.SearchView$OnQueryTextListener) +com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_toTopOf +okhttp3.internal.http2.Http2Connection: int DEGRADED_PING +androidx.customview.R$drawable: int notification_template_icon_bg +com.xw.repo.bubbleseekbar.R$attr: int titleMarginTop +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_tint +androidx.lifecycle.LifecycleService: androidx.lifecycle.ServiceLifecycleDispatcher mDispatcher +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_editor_absoluteY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String from +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.google.android.material.R$id: int action_mode_bar +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: java.lang.Object item +com.google.android.material.R$styleable: int AppCompatTheme_editTextStyle +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_CompactMenu +androidx.preference.R$attr: int actionOverflowButtonStyle +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.R$string: int mtrl_badge_numberless_content_description +com.google.android.material.R$dimen: int mtrl_btn_letter_spacing +androidx.appcompat.widget.ActionMenuView: void setOverflowReserved(boolean) +wangdaye.com.geometricweather.R$drawable: int flag_si +androidx.preference.R$id: int accessibility_custom_action_24 +androidx.swiperefreshlayout.R$attr: int fontProviderFetchStrategy +okio.BufferedSink: okio.BufferedSink write(okio.Source,long) +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: long serialVersionUID +androidx.vectordrawable.R$integer: R$integer() +com.google.android.material.R$attr: int statusBarForeground +com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_close_icon_tint +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_MENU_ACTION_VALIDATOR +com.google.android.material.R$styleable: int FloatingActionButton_backgroundTintMode +androidx.swiperefreshlayout.R$styleable +retrofit2.Platform$Android: java.util.concurrent.Executor defaultCallbackExecutor() +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: SingleToObservable$SingleToObservableObserver(io.reactivex.Observer) wangdaye.com.geometricweather.R$attr: int suffixText -androidx.constraintlayout.widget.R$attr: int gapBetweenBars -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableStartCompat -com.turingtechnologies.materialscrollbar.R$attr: int queryBackground -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endX -retrofit2.ServiceMethod: retrofit2.ServiceMethod parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_31 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ZEN_PRIORITY_ALLOW_LIGHTS_VALIDATOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getSpeed() -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer ragweedLevel -androidx.coordinatorlayout.R$styleable: int GradientColor_android_tileMode -okhttp3.internal.cache.DiskLruCache: void initialize() -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onError(java.lang.Throwable) -com.google.android.material.R$color: int abc_decor_view_status_guard_light -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_2G -androidx.core.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.R$color: int notification_background_l -com.xw.repo.bubbleseekbar.R$color: int primary_dark_material_light -okhttp3.internal.Util: java.util.List immutableList(java.lang.Object[]) -androidx.core.R$dimen: int notification_action_icon_size -androidx.lifecycle.Transformations$1: androidx.lifecycle.MediatorLiveData val$result -wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_night -wangdaye.com.geometricweather.R$styleable: int MenuItem_actionLayout -okhttp3.Handshake: java.security.Principal peerPrincipal() -androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackgroundColor(int) -androidx.dynamicanimation.R$styleable: int FontFamilyFont_ttcIndex -cyanogenmod.weather.util.WeatherUtils -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_6 -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: int UnitType -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean isDisposed() -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_hideOnContentScroll -com.google.android.material.R$attr: int customFloatValue -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabView -okhttp3.OkHttpClient$Builder: int pingInterval -com.google.android.material.textfield.TextInputLayout: com.google.android.material.textfield.EndIconDelegate getEndIconDelegate() -wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text_color -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_touch_to_seek -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.preference.R$attr: int actionBarDivider -com.google.android.material.R$id: int search_voice_btn -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabView -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean done -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBaseline_creator -com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_material -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult -wangdaye.com.geometricweather.R$id: int easeOut -wangdaye.com.geometricweather.R$drawable: int flag_ko -com.google.android.material.slider.RangeSlider: int getTrackWidth() -com.google.android.material.R$attr: int drawerArrowStyle -com.jaredrummler.android.colorpicker.R$id: int content -okhttp3.RealCall$1: RealCall$1(okhttp3.RealCall) -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.util.List protocols -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf -com.xw.repo.bubbleseekbar.R$drawable: int notify_panel_notification_icon_bg -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeStepGranularity -androidx.constraintlayout.widget.R$id: int screen -android.didikee.donate.R$attr: int actionBarTheme -com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets -wangdaye.com.geometricweather.R$layout: int test_action_chip -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getDailyForecast() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorBackgroundFloating -com.google.android.material.R$drawable: int btn_checkbox_unchecked_mtrl -com.google.android.material.R$id: int material_hour_text_input -com.turingtechnologies.materialscrollbar.MaterialScrollBar: boolean getHide() -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_ANY -com.google.android.material.R$color: int mtrl_btn_text_btn_ripple_color -com.google.android.material.navigation.NavigationView: void setItemHorizontalPadding(int) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Dbz -wangdaye.com.geometricweather.R$integer: int mtrl_badge_max_character_count -androidx.appcompat.resources.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$styleable: int Badge_maxCharacterCount -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitationDuration -okhttp3.MultipartBody: okhttp3.MediaType ALTERNATIVE -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickActiveTintList() -androidx.vectordrawable.animated.R$color -androidx.appcompat.R$style: int Widget_AppCompat_SearchView -james.adaptiveicon.R$attr: int queryBackground -androidx.preference.R$color: int primary_text_default_material_dark -cyanogenmod.app.CustomTile$ExpandedStyle: int describeContents() -wangdaye.com.geometricweather.R$string: R$string() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorBackgroundFloating -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation valueOf(java.lang.String) -cyanogenmod.providers.CMSettings$System: java.lang.String PROXIMITY_ON_WAKE -androidx.vectordrawable.R$layout: int notification_template_icon_group -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog -android.didikee.donate.R$id: int bottom -wangdaye.com.geometricweather.R$drawable: int flag_pl -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: CaiYunMainlyResult$BrandInfoBeanXX() -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge -wangdaye.com.geometricweather.R$attr: int targetId -androidx.appcompat.R$id: int notification_main_column -okhttp3.internal.Util: int delimiterOffset(java.lang.String,int,int,char) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_APP_SWITCH_ACTION_VALIDATOR -androidx.preference.R$styleable: int Spinner_android_popupBackground -androidx.appcompat.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -okhttp3.Headers: java.lang.String get(java.lang.String[],java.lang.String) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize -com.turingtechnologies.materialscrollbar.R$layout: int design_bottom_sheet_dialog -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.functions.Function mapper -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider this$1 -wangdaye.com.geometricweather.R$layout: int preference_dialog_edittext -wangdaye.com.geometricweather.R$id: int dialog_location_help_locationTitle -androidx.appcompat.view.menu.StandardMenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getWeatherSource() -androidx.hilt.work.R$anim: int fragment_open_exit -androidx.lifecycle.process.R: R() -androidx.constraintlayout.widget.R$attr: int flow_firstHorizontalBias -androidx.constraintlayout.widget.R$color: int abc_search_url_text -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicator -androidx.preference.R$styleable: int Preference_android_defaultValue -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -androidx.appcompat.R$attr: int numericModifiers -cyanogenmod.themes.ThemeManager: void requestThemeChange(java.util.Map) -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_DarkActionBar -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.identityscope.IdentityScope identityScope -okhttp3.internal.http2.Http2Stream: boolean isLocallyInitiated() -androidx.appcompat.R$styleable: int[] LinearLayoutCompat -retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type[] getUpperBounds() -androidx.dynamicanimation.R$attr: int fontProviderFetchTimeout -james.adaptiveicon.R$attr: int contentInsetEnd -androidx.preference.R$style: int Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean wind -com.google.android.material.R$attr: int extendMotionSpec -io.reactivex.internal.subscriptions.BasicIntQueueSubscription -cyanogenmod.app.Profile: Profile(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String PrimaryPostalCode -android.support.v4.os.IResultReceiver$Stub: java.lang.String DESCRIPTOR -okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date servedDate -com.google.android.material.R$styleable: int[] MaterialToolbar -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_expanded -com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$attr: int backgroundInsetStart -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_UnelevatedButton -cyanogenmod.power.PerformanceManager: int PROFILE_HIGH_PERFORMANCE -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotationY -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_xml -org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Object[]) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long readKey(android.database.Cursor,int) -androidx.lifecycle.ComputableLiveData$2: void run() -okhttp3.internal.http2.Http2Writer: void data(boolean,int,okio.Buffer,int) -androidx.preference.R$style: int Widget_AppCompat_Spinner_DropDown -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: CaiYunMainlyResult$CurrentBean$FeelsLikeBean() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -okhttp3.internal.cache.DiskLruCache$Editor: okio.Source newSource(int) -wangdaye.com.geometricweather.db.entities.DaoMaster -wangdaye.com.geometricweather.R$id: int container_alert_display_view_container -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric Metric -androidx.vectordrawable.R$id: int accessibility_custom_action_12 -okhttp3.MediaType -james.adaptiveicon.R$styleable: int TextAppearance_android_typeface -com.turingtechnologies.materialscrollbar.R$string: int status_bar_notification_info_overflow +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setNotification(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode THUNDERSTORM +com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog +androidx.hilt.lifecycle.R$dimen: int notification_action_icon_size +retrofit2.RequestFactory$Builder: boolean isFormEncoded wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String getMoonPhase(android.content.Context) -androidx.lifecycle.ReflectiveGenericLifecycleObserver: androidx.lifecycle.ClassesInfoCache$CallbackInfo mInfo -androidx.viewpager2.R$styleable: int RecyclerView_android_clipToPadding -cyanogenmod.platform.R$integer: R$integer() -cyanogenmod.externalviews.KeyguardExternalView$5: void run() -android.didikee.donate.R$styleable: int AppCompatTheme_switchStyle -androidx.preference.R$color: int highlighted_text_material_dark -okhttp3.internal.http2.Http2Stream$FramingSink: void write(okio.Buffer,long) -com.xw.repo.bubbleseekbar.R$attr: int collapseContentDescription -okhttp3.internal.tls.DistinguishedNameParser: char[] chars -android.didikee.donate.R$styleable: int ActionBar_displayOptions -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_NoActionBar -androidx.vectordrawable.R$dimen: int notification_subtext_size -cyanogenmod.app.ThemeVersion: java.lang.String MIN_SUPPORTED_THEME_VERSION_FIELD_NAME -cyanogenmod.app.PartnerInterface: cyanogenmod.app.PartnerInterface getInstance(android.content.Context) -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceFragmentCompat -com.google.android.material.R$attr: int itemIconSize -cyanogenmod.themes.IThemeService: void registerThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) -com.jaredrummler.android.colorpicker.R$id: int search_go_btn -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView_Menu -com.google.android.material.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -android.didikee.donate.R$drawable: int abc_tab_indicator_mtrl_alpha -com.google.android.material.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_font -androidx.constraintlayout.widget.R$id: int decelerate -com.google.android.material.R$styleable: int AppCompatTheme_actionBarStyle -com.xw.repo.bubbleseekbar.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_margin -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_container -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge -com.google.android.material.R$attr: int textAppearanceHeadline3 -com.google.android.material.R$dimen: int mtrl_snackbar_background_corner_radius -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display3 -wangdaye.com.geometricweather.R$styleable: int MaterialButton_backgroundTint -wangdaye.com.geometricweather.R$string: int content_des_sunset -wangdaye.com.geometricweather.R$id: int below_section_mark -androidx.constraintlayout.widget.R$attr: int motionProgress -com.google.android.material.R$styleable: int[] ActionMenuView -okio.RealBufferedSource: boolean rangeEquals(long,okio.ByteString) -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityStarted(android.app.Activity) -com.turingtechnologies.materialscrollbar.R$id: int icon_group -wangdaye.com.geometricweather.R$attr: int buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_toId -wangdaye.com.geometricweather.R$id: int transition_scene_layoutid_cache -com.xw.repo.bubbleseekbar.R$dimen: int disabled_alpha_material_light -androidx.work.R$id: int accessibility_custom_action_27 -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List minutelyEntityList -com.turingtechnologies.materialscrollbar.R$id: int alertTitle -cyanogenmod.weatherservice.IWeatherProviderService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$style: int Base_Widget_AppCompat_ListMenuView -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_logoDescription -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorButtonNormal -androidx.work.R$dimen: int notification_action_text_size -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.github.rahatarmanahmed.cpv.CircularProgressView$1 -com.google.android.material.R$string: int abc_menu_enter_shortcut_label -james.adaptiveicon.R$dimen: int abc_seekbar_track_progress_height_material -cyanogenmod.providers.CMSettings$System$1: CMSettings$System$1() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCo(java.lang.Float) -wangdaye.com.geometricweather.db.entities.LocationEntity: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource weatherSource -io.reactivex.Observable: io.reactivex.Single toSortedList(java.util.Comparator) -androidx.preference.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: CaiYunMainlyResult() -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language valueOf(java.lang.String) -androidx.vectordrawable.R$id: int title -com.google.android.material.R$drawable: int mtrl_ic_arrow_drop_down -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_thumb -com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_track_material -com.google.android.material.card.MaterialCardView: void setCheckedIconSize(int) -androidx.appcompat.R$id: int notification_main_column_container -okhttp3.OkHttpClient$Builder: java.util.List connectionSpecs -retrofit2.Converter$Factory: Converter$Factory() -wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_subtitle_keywords -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$attr: int bottomNavigationStyle -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.appcompat.R$attr: int backgroundSplit -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onProgressUpdate(float) -com.turingtechnologies.materialscrollbar.R$attr: int lineHeight -androidx.appcompat.R$attr: int listLayout -androidx.appcompat.R$dimen: int abc_text_size_headline_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: void setValue(java.lang.String) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathOffset() -com.google.android.material.R$dimen: int mtrl_extended_fab_top_padding -retrofit2.adapter.rxjava2.RxJava2CallAdapter: io.reactivex.Scheduler scheduler -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -retrofit2.Response: okhttp3.Response rawResponse -io.reactivex.internal.observers.BasicIntQueueDisposable: boolean offer(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int backgroundTintMode -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -androidx.appcompat.R$styleable: int[] ActionMenuView -wangdaye.com.geometricweather.R$attr: int onCross -androidx.work.R$attr: int font -com.google.android.material.R$attr: int logoDescription -androidx.appcompat.R$dimen: int tooltip_y_offset_touch -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -androidx.viewpager2.R$styleable: int RecyclerView_stackFromEnd -com.google.android.material.R$attr: int shapeAppearanceMediumComponent -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String content -wangdaye.com.geometricweather.location.services.LocationService: LocationService() -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -androidx.appcompat.R$styleable: int[] ActionBarLayout -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: long serialVersionUID -androidx.vectordrawable.animated.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.R$styleable: int Motion_transitionEasing -com.turingtechnologies.materialscrollbar.R$styleable: int[] RecyclerView -retrofit2.ParameterHandler$Query -androidx.appcompat.widget.ActionMenuView: int getWindowAnimations() -okio.Timeout: long timeoutNanos() -wangdaye.com.geometricweather.R$drawable: int shortcuts_sleet_foreground -wangdaye.com.geometricweather.R$attr: int closeIconEndPadding -androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_toBottomOf -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TabLayout_Colored -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_3 -com.google.android.material.R$attr: int layout_constraintTop_toBottomOf -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life -androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_113 -cyanogenmod.providers.DataUsageContract: java.lang.String ENABLE -james.adaptiveicon.R$dimen: int abc_action_bar_content_inset_with_nav -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display1 -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$layout: int abc_tooltip -retrofit2.CompletableFutureCallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_pivotAnchor -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_NoActionBar -androidx.appcompat.R$styleable: int[] GradientColorItem -james.adaptiveicon.R$attr: int iconTintMode -androidx.constraintlayout.widget.R$id: int ignoreRequest -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -com.turingtechnologies.materialscrollbar.R$string: int path_password_eye -androidx.work.R$id: int tag_accessibility_actions -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -cyanogenmod.app.CustomTile$ExpandedStyle: android.widget.RemoteViews contentViews -androidx.hilt.work.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework -androidx.constraintlayout.widget.R$id: int search_voice_btn -wangdaye.com.geometricweather.R$attr: int drawerArrowStyle -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_dialogPreferenceStyle -androidx.constraintlayout.widget.R$attr: int altSrc -androidx.constraintlayout.widget.R$attr: int alertDialogStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -cyanogenmod.app.IProfileManager: boolean setActiveProfileByName(java.lang.String) -okhttp3.internal.platform.AndroidPlatform$CloseGuard: AndroidPlatform$CloseGuard(java.lang.reflect.Method,java.lang.reflect.Method,java.lang.reflect.Method) -wangdaye.com.geometricweather.R$styleable: int Layout_constraint_referenced_ids -io.reactivex.internal.util.NotificationLite: java.lang.Object getValue(java.lang.Object) -wangdaye.com.geometricweather.R$id: int item_pollen_daily -com.github.rahatarmanahmed.cpv.R$attr -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIconSize(int) -com.google.android.material.R$integer: int mtrl_calendar_year_selector_span -android.didikee.donate.R$dimen: int abc_button_padding_vertical_material -androidx.appcompat.R$color: int abc_secondary_text_material_dark -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfileByName -okhttp3.RequestBody$3: RequestBody$3(okhttp3.MediaType,java.io.File) -okio.BufferedSink: okio.BufferedSink writeDecimalLong(long) -androidx.appcompat.R$string: int abc_action_menu_overflow_description -james.adaptiveicon.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_textAllCaps -cyanogenmod.providers.CMSettings$Global -androidx.constraintlayout.widget.R$layout: int abc_popup_menu_item_layout -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: long serialVersionUID -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit -io.reactivex.internal.util.ArrayListSupplier: io.reactivex.functions.Function asFunction() -org.greenrobot.greendao.AbstractDao: java.lang.String[] getPkColumns() -androidx.lifecycle.Transformations$2$1: Transformations$2$1(androidx.lifecycle.Transformations$2) -wangdaye.com.geometricweather.R$color: int design_dark_default_color_secondary -androidx.hilt.R$id: int tag_transition_group -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance -androidx.recyclerview.widget.LinearLayoutManager$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$animator: int weather_sleet_1 -androidx.appcompat.widget.SearchView: void setIconifiedByDefault(boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: double Value -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusTopStart -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextColor -androidx.constraintlayout.widget.R$id: int submenuarrow -okhttp3.internal.http2.Http2Connection: void updateConnectionFlowControl(long) -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motion_triggerOnCollision -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind Wind -wangdaye.com.geometricweather.R$attr: int layout_constraintRight_toRightOf -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_3DES_EDE_CBC_SHA -androidx.constraintlayout.widget.R$integer -com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_normal -wangdaye.com.geometricweather.R$attr: int selectableItemBackground -com.google.android.material.textfield.TextInputLayout: void setExpandedHintEnabled(boolean) -wangdaye.com.geometricweather.R$string: int rain -androidx.preference.R$style: int TextAppearance_AppCompat_Subhead_Inverse -androidx.recyclerview.R$string: R$string() -androidx.constraintlayout.widget.R$attr: int placeholder_emptyVisibility -androidx.appcompat.widget.AppCompatButton -androidx.viewpager2.R$color: int notification_action_color_filter -com.google.android.material.internal.NavigationMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() -com.xw.repo.BubbleSeekBar: float getMin() -androidx.vectordrawable.R$id: int accessibility_custom_action_11 -androidx.appcompat.R$styleable: int AppCompatTheme_colorPrimaryDark -com.google.android.material.slider.RangeSlider: void setTrackActiveTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_grey -androidx.preference.R$color: int accent_material_dark -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void setCancellable(io.reactivex.functions.Cancellable) -cyanogenmod.providers.CMSettings$Secure: java.lang.String ADB_PORT -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getAbbreviation(android.content.Context) -com.google.android.material.R$attr: int panelMenuListTheme -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$id: int transition_layout_save -cyanogenmod.app.StatusBarPanelCustomTile: int getInitialPid() -androidx.lifecycle.extensions.R$styleable: int Fragment_android_name -androidx.appcompat.R$color: int dim_foreground_disabled_material_dark -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.lang.String selected -com.google.android.material.R$drawable: int design_fab_background -okhttp3.EventListener: void callStart(okhttp3.Call) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginBottom -okhttp3.internal.http2.Settings: boolean getEnablePush(boolean) -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_barLength -androidx.appcompat.widget.SwitchCompat: void setTextOn(java.lang.CharSequence) -okio.GzipSource: java.util.zip.CRC32 crc -james.adaptiveicon.R$styleable: int[] LinearLayoutCompat_Layout -wangdaye.com.geometricweather.R$id: int textTop -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox -com.xw.repo.bubbleseekbar.R$styleable: R$styleable() +com.google.android.material.R$attr: int colorPrimarySurface +androidx.vectordrawable.R$id: int line3 +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_visible +cyanogenmod.app.IProfileManager: android.app.NotificationGroup[] getNotificationGroups() +androidx.constraintlayout.widget.R$id: int startHorizontal +com.jaredrummler.android.colorpicker.R$anim: int abc_tooltip_enter +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onComplete() +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_track_size +com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipBackgroundColor() +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status COMPLETED +wangdaye.com.geometricweather.R$font: int product_sans_bold_italic +wangdaye.com.geometricweather.R$styleable: int OnSwipe_nestedScrollFlags +okhttp3.internal.http1.Http1Codec: okio.Source newUnknownLengthSource() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_activityChooserViewStyle +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) +androidx.hilt.R$attr: int ttcIndex +com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getSupportImageTintList() +androidx.appcompat.R$color: int background_floating_material_dark +androidx.appcompat.widget.Toolbar: void setSubtitleTextColor(int) +wangdaye.com.geometricweather.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_top_mtrl_alpha +androidx.activity.R$integer +com.xw.repo.bubbleseekbar.R$dimen: int abc_floating_window_z +james.adaptiveicon.R$style: int Widget_AppCompat_PopupMenu +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DialogWhenLarge +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8 +wangdaye.com.geometricweather.common.basic.models.weather.Minutely +com.xw.repo.bubbleseekbar.R$id: int action_mode_close_button +io.reactivex.internal.util.EmptyComponent: void onSuccess(java.lang.Object) +androidx.swiperefreshlayout.R$layout: int notification_action +androidx.swiperefreshlayout.R$id: int action_image +wangdaye.com.geometricweather.R$id: int center +okio.BufferedSource: int select(okio.Options) +okhttp3.internal.http2.Http2: byte TYPE_WINDOW_UPDATE +org.greenrobot.greendao.DaoException: void safeInitCause(java.lang.Throwable) +com.github.rahatarmanahmed.cpv.R$styleable: R$styleable() +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: cyanogenmod.weatherservice.WeatherProviderService this$0 +cyanogenmod.weather.WeatherInfo$DayForecast$1: WeatherInfo$DayForecast$1() +wangdaye.com.geometricweather.R$drawable: int flag_es +com.google.android.material.button.MaterialButton: void removeOnCheckedChangeListener(com.google.android.material.button.MaterialButton$OnCheckedChangeListener) +androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context) +com.turingtechnologies.materialscrollbar.CustomIndicator: CustomIndicator(android.content.Context) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_102 +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: ObservableConcatMapSingle$ConcatMapSingleMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,io.reactivex.internal.util.ErrorMode) +androidx.appcompat.R$styleable: int Toolbar_navigationIcon +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_summaryOn +okio.Buffer: okio.Buffer copyTo(okio.Buffer,long,long) +james.adaptiveicon.R$styleable: int Toolbar_contentInsetEndWithActions +androidx.preference.R$attr: int buttonStyle +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ImageButton +okhttp3.Request: java.lang.String toString() +wangdaye.com.geometricweather.R$attr: int layout_constraintRight_creator +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService: ForegroundTomorrowForecastUpdateService() +androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getOverflowIcon() +wangdaye.com.geometricweather.R$string: int widget_clock_day_details +com.google.android.material.R$styleable: int[] MaterialCardView +androidx.versionedparcelable.CustomVersionedParcelable: CustomVersionedParcelable() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircleRadius +okhttp3.Request: java.lang.Object tag() +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setFont(java.lang.String) +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getWeatherSource() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +androidx.swiperefreshlayout.R$id: int right_icon +androidx.transition.R$styleable: int FontFamilyFont_android_fontWeight +androidx.recyclerview.R$color: int notification_icon_bg_color +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_longpressed_holo +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low +android.didikee.donate.R$attr: int actionBarPopupTheme +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onBouncerShowing(boolean) +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onComplete() +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.common.ui.widgets.TagView: void setUncheckedBackgroundColor(int) +android.didikee.donate.R$style: int Widget_AppCompat_ActionButton +io.reactivex.internal.util.NotificationLite$ErrorNotification: int hashCode() +com.google.android.material.R$styleable: int TextInputLayout_hintAnimationEnabled +wangdaye.com.geometricweather.R$styleable: int[] ShapeableImageView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String getTo() +androidx.swiperefreshlayout.R$layout: int notification_action_tombstone +com.google.android.material.R$anim: int design_snackbar_out +androidx.appcompat.R$attr: int color +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_creator +androidx.transition.R$styleable: int GradientColor_android_type +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +com.xw.repo.bubbleseekbar.R$attr: int commitIcon +wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_pressed_alpha +com.google.android.material.R$dimen: int mtrl_btn_text_btn_padding_right +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: java.lang.Integer proba3H +androidx.preference.R$style: int Base_V7_Theme_AppCompat_Light +cyanogenmod.content.Intent: java.lang.String ACTION_THEME_INSTALLED +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Subhead +androidx.preference.R$id: int off +io.reactivex.internal.subscriptions.DeferredScalarSubscription: void cancel() +androidx.appcompat.widget.AppCompatAutoCompleteTextView: android.content.res.ColorStateList getSupportBackgroundTintList() +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: ChineseCityEntity() +androidx.activity.R$id: int blocking +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display2 +androidx.lifecycle.FullLifecycleObserver: void onResume(androidx.lifecycle.LifecycleOwner) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getPM10() +androidx.lifecycle.ComputableLiveData: java.lang.Runnable mRefreshRunnable +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetEnd +androidx.coordinatorlayout.R$id: int forever +cyanogenmod.externalviews.KeyguardExternalView: void unregisterKeyguardExternalViewCallback(cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks) +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Action +okhttp3.internal.platform.ConscryptPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +com.google.android.material.R$attr: int flow_horizontalStyle +cyanogenmod.app.ProfileGroup$1: java.lang.Object createFromParcel(android.os.Parcel) +com.google.android.material.button.MaterialButton: void setIcon(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: double seaLevel +james.adaptiveicon.R$styleable: int SwitchCompat_thumbTintMode +okio.ByteString: int size() +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthTextView +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableDelegateState +com.jaredrummler.android.colorpicker.R$id: int end +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeWetBulbTemperature +androidx.appcompat.R$attr: int tickMarkTint +androidx.vectordrawable.R$layout: int notification_template_part_time +androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_toId +okio.ByteString: okio.ByteString decodeBase64(java.lang.String) +com.xw.repo.bubbleseekbar.R$anim: int abc_slide_in_bottom +com.google.android.material.R$styleable: int Chip_iconEndPadding +androidx.constraintlayout.widget.R$attr: int dialogCornerRadius +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.appcompat.resources.R$dimen: int notification_media_narrow_margin +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.view.WindowManager access$500(cyanogenmod.externalviews.KeyguardExternalViewProviderService) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean isEmpty() +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getWeatherKind() +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthResource(int) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.disposables.CompositeDisposable set +androidx.viewpager2.R$id: int dialog_button +androidx.appcompat.widget.ActionBarContainer: void setTransitioning(boolean) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getBackgroundColor() +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean done +okhttp3.internal.http2.Http2Connection: void writePing(boolean,int,int) +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_LANDSCAPE +wangdaye.com.geometricweather.R$string: int content_desc_app_store +wangdaye.com.geometricweather.R$styleable: int[] SwitchCompat +wangdaye.com.geometricweather.R$styleable: int TextAppearance_textLocale +com.google.android.material.R$dimen: int mtrl_btn_icon_btn_padding_left +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_textAppearance +com.turingtechnologies.materialscrollbar.R$interpolator +retrofit2.http.Part: java.lang.String value() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_CAMELLIA_128_CBC_SHA +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: IKeyguardExternalViewCallbacks$Stub() +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getMoldDescription() +wangdaye.com.geometricweather.main.Hilt_MainActivity +com.turingtechnologies.materialscrollbar.R$attr: int actionModeSplitBackground +android.didikee.donate.R$color: int abc_search_url_text +androidx.constraintlayout.widget.R$attr: int backgroundStacked +com.google.android.material.R$id: int mtrl_motion_snapshot_view +wangdaye.com.geometricweather.background.receiver.widget.WidgetDayWeekProvider +androidx.legacy.coreutils.R$attr: int fontWeight +wangdaye.com.geometricweather.R$styleable: int ArcProgress_text_color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: int UnitType +androidx.appcompat.R$color: int abc_tint_edittext +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView +androidx.appcompat.R$id: int accessibility_custom_action_3 +io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function,boolean) +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: long serialVersionUID +com.google.android.material.chip.Chip: void setCloseIconTint(android.content.res.ColorStateList) +cyanogenmod.weatherservice.WeatherProviderService$1: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_state_dragged +androidx.customview.R$styleable: int FontFamily_fontProviderQuery +android.didikee.donate.R$attr: int colorButtonNormal +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_day +androidx.customview.R$dimen: R$dimen() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_transformPivotX +okio.Utf8: long size(java.lang.String) +okio.ByteString: int hashCode +com.google.gson.stream.JsonReader: java.io.Reader in +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_borderless_material wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: java.lang.String icon -okhttp3.ConnectionPool: long keepAliveDurationNs -com.google.android.material.R$attr: int contentPaddingBottom -wangdaye.com.geometricweather.R$attr: int actionModeCloseDrawable -com.google.android.material.R$attr: int itemPadding -okhttp3.OkHttpClient$1: void apply(okhttp3.ConnectionSpec,javax.net.ssl.SSLSocket,boolean) -android.didikee.donate.R$attr: int actionMenuTextColor -androidx.appcompat.R$styleable: int AppCompatTheme_checkedTextViewStyle -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_ActionBar -androidx.preference.R$styleable: int AppCompatTheme_checkedTextViewStyle -androidx.preference.R$styleable: int[] TextAppearance -androidx.appcompat.R$layout: int notification_template_part_chronometer -com.turingtechnologies.materialscrollbar.R$animator -androidx.fragment.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$attr: int flow_horizontalBias -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low_pressed -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_textAppearance -com.google.android.material.R$attr: int endIconDrawable -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicBoolean once -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupWindow -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotationX -okhttp3.Response$Builder: Response$Builder() -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$dimen: int notification_subtext_size -androidx.preference.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: int UnitType -retrofit2.Utils$ParameterizedTypeImpl: Utils$ParameterizedTypeImpl(java.lang.reflect.Type,java.lang.reflect.Type,java.lang.reflect.Type[]) -androidx.appcompat.R$drawable: int abc_action_bar_item_background_material -androidx.lifecycle.ViewModelProvider$OnRequeryFactory: ViewModelProvider$OnRequeryFactory() -androidx.hilt.work.R$styleable: int[] FragmentContainerView -android.didikee.donate.R$attr: int subtitleTextStyle -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat valueOf(java.lang.String) -androidx.activity.R$attr: int fontProviderAuthority -retrofit2.HttpServiceMethod$SuspendForBody: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) -com.google.android.material.R$id: int action_bar -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_icon_padding -com.turingtechnologies.materialscrollbar.R$id: int bottom -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -com.jaredrummler.android.colorpicker.R$attr: int alertDialogStyle -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onNegativeCross -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetEnd -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Tooltip -androidx.appcompat.R$styleable: int TextAppearance_android_fontFamily -com.google.android.material.R$style: int Widget_Design_CollapsingToolbar -com.google.android.material.R$attr: int paddingLeftSystemWindowInsets -androidx.constraintlayout.widget.R$style: int Theme_AppCompat -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy -android.didikee.donate.R$styleable: int[] ActionMode -androidx.constraintlayout.utils.widget.ImageFilterView: float getCrossfade() -androidx.appcompat.R$string: int abc_menu_space_shortcut_label -com.jaredrummler.android.colorpicker.R$style -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setOnClickListener(android.view.View$OnClickListener) -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -androidx.preference.R$styleable: int CheckBoxPreference_android_summaryOff -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: android.graphics.Rect val$clipRect -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_typeface -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_logo -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabBarStyle -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Subhead -james.adaptiveicon.R$attr: int titleMarginBottom -wangdaye.com.geometricweather.R$drawable: int notif_temp_15 -com.google.android.material.R$styleable: int ConstraintSet_android_rotation -androidx.preference.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_percent -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String readKey(android.database.Cursor,int) -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTodaysLow(double) -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro moon() -com.google.android.material.R$attr: int textEndPadding -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_suggestionRowLayout -com.bumptech.glide.load.resource.gif.GifFrameLoader: void setOnEveryFrameReadyListener(com.bumptech.glide.load.resource.gif.GifFrameLoader$OnEveryFrameListener) -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom -com.bumptech.glide.integration.okhttp.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$string: int appbar_scrolling_view_behavior -james.adaptiveicon.R$styleable: int MenuView_android_itemBackground -io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.ObservableSource) -com.google.android.material.R$id: int accessibility_custom_action_27 -io.reactivex.internal.subscriptions.DeferredScalarSubscription -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: long serialVersionUID -cyanogenmod.weatherservice.IWeatherProviderService: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) -okhttp3.Cache: int networkCount() -androidx.preference.R$styleable: int BackgroundStyle_selectableItemBackground -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind -wangdaye.com.geometricweather.R$attr: int strokeWidth -androidx.preference.R$string: int abc_shareactionprovider_share_with_application -androidx.viewpager2.R$integer -okhttp3.OkHttpClient$Builder: java.net.Proxy proxy -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickTintList() -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -james.adaptiveicon.R$styleable: int ViewStubCompat_android_id -okhttp3.RequestBody: void writeTo(okio.BufferedSink) -com.google.android.material.R$attr: int checkedIconTint -wangdaye.com.geometricweather.R$styleable: int CompoundButton_android_button -androidx.constraintlayout.widget.R$attr: int maxVelocity -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.internal.util.AtomicThrowable errors -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Info -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: int bufferSize -james.adaptiveicon.R$styleable: int SearchView_android_focusable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour PastHour -okhttp3.CipherSuite$1 -androidx.appcompat.R$dimen: int abc_action_button_min_height_material -wangdaye.com.geometricweather.R$drawable: int abc_btn_check_to_on_mtrl_015 -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstHorizontalBias -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_content_inset_with_nav -james.adaptiveicon.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$styleable: int Slider_android_valueTo -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBaseline_creator -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager -androidx.preference.R$style: int TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.R$dimen: int widget_current_weather_icon_size -com.google.android.material.R$dimen: int material_text_view_test_line_height_override -android.didikee.donate.R$styleable: int MenuView_android_itemTextAppearance -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: java.lang.String textConsequence -android.didikee.donate.R$color: int switch_thumb_material_dark -androidx.preference.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.appcompat.R$dimen: int abc_text_size_body_1_material -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_type -james.adaptiveicon.R$id: int scrollView -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_navigationIcon -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayModes -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_orientation -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onAttachedToWindow() -androidx.constraintlayout.widget.R$attr: int animate_relativeTo -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: int requestFusion(int) -androidx.preference.R$styleable: int Preference_shouldDisableView -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport parent -okhttp3.internal.http2.Http2Reader: void readSettings(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -com.jaredrummler.android.colorpicker.R$style: int Preference_Material -androidx.constraintlayout.widget.R$drawable: int abc_textfield_activated_mtrl_alpha -androidx.constraintlayout.widget.R$id: int sin -androidx.hilt.lifecycle.R$style: int Widget_Compat_NotificationActionText -android.didikee.donate.R$styleable: int DrawerArrowToggle_drawableSize -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -wangdaye.com.geometricweather.R$attr: int cardForegroundColor -androidx.lifecycle.extensions.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacingHorizontal -androidx.customview.R$layout: int notification_action -wangdaye.com.geometricweather.R$styleable: int TextAppearance_fontVariationSettings -com.google.android.material.R$styleable: int Constraint_layout_constraintRight_toLeftOf -androidx.lifecycle.Transformations: Transformations() -io.reactivex.internal.subscriptions.BasicQueueSubscription: void cancel() -com.google.gson.stream.JsonReader: java.lang.String nextString() -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void onDetachedFromWindow() -okhttp3.internal.platform.Android10Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView_DropDown -com.jaredrummler.android.colorpicker.R$styleable: int Preference_shouldDisableView -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: int UnitType -wangdaye.com.geometricweather.R$id: int action_bar_root -androidx.preference.R$color: int abc_primary_text_disable_only_material_dark -okhttp3.MultipartBody: MultipartBody(okio.ByteString,okhttp3.MediaType,java.util.List) -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: int getMarginTop() -androidx.coordinatorlayout.R$integer: R$integer() -retrofit2.Response: retrofit2.Response error(okhttp3.ResponseBody,okhttp3.Response) -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date publishDate -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getCOColor(android.content.Context) -androidx.swiperefreshlayout.R$drawable: int notification_icon_background -androidx.lifecycle.ComputableLiveData: ComputableLiveData(java.util.concurrent.Executor) -com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_pressed -okhttp3.internal.http2.Http2Codec -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginTop -androidx.lifecycle.LiveData: void observe(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Observer) -androidx.preference.R$attr: int listPopupWindowStyle -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Spinner -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_normal -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int level -com.xw.repo.bubbleseekbar.R$color: int highlighted_text_material_dark -androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_Dialog -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_onClick -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindTitle -androidx.appcompat.R$styleable: int AppCompatTheme_editTextStyle -wangdaye.com.geometricweather.R$color: int colorAccent -okhttp3.internal.http1.Http1Codec$ChunkedSource: boolean hasMoreChunks -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode IMMEDIATE -wangdaye.com.geometricweather.R$id: int ifRoom -androidx.recyclerview.R$id: int right_icon -androidx.constraintlayout.widget.R$attr: int overlay -android.didikee.donate.R$attr: int indeterminateProgressStyle -cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_MWI_NOTIFICATION -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onUnsubscribed() -com.google.android.material.R$id: int progress_horizontal -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getRealFeelTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ChipGroup -wangdaye.com.geometricweather.R$attr: int expandedTitleMarginTop -androidx.constraintlayout.widget.R$id: int chronometer -org.greenrobot.greendao.AbstractDao: boolean isEntityUpdateable() -androidx.appcompat.resources.R$attr: int fontProviderQuery -androidx.constraintlayout.widget.R$id: int staticLayout -okhttp3.Address: javax.net.ssl.SSLSocketFactory sslSocketFactory -cyanogenmod.externalviews.ExternalView -com.turingtechnologies.materialscrollbar.R$id: int progress_horizontal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.util.List indices -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizePresetSizes -wangdaye.com.geometricweather.R$styleable: int[] MaterialShape -wangdaye.com.geometricweather.R$styleable: int[] GradientColor -okio.Buffer: void flush() -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathOffset(float) -wangdaye.com.geometricweather.R$styleable: int[] CoordinatorLayout -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_setServiceClient -wangdaye.com.geometricweather.R$attr: int background -androidx.dynamicanimation.R$dimen: int compat_button_padding_vertical_material -okhttp3.RealCall$1 -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue getOrCreateQueue() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial() -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endColor -com.google.android.material.R$attr: int flow_horizontalGap -io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.CompletableObserver) -com.google.android.material.R$string: int material_timepicker_select_time -okhttp3.internal.tls.BasicTrustRootIndex -androidx.dynamicanimation.R$id: int action_divider -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow -com.google.android.material.chip.Chip: com.google.android.material.animation.MotionSpec getHideMotionSpec() -com.google.android.material.R$color: int abc_color_highlight_material -com.google.android.material.R$styleable: int ClockHandView_selectorSize -cyanogenmod.app.IProfileManager$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String dept -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 -androidx.preference.R$dimen: int tooltip_horizontal_padding -androidx.preference.R$attr: int adjustable -wangdaye.com.geometricweather.R$string: int settings_title_permanent_service -androidx.constraintlayout.helper.widget.Layer: void setVisibility(int) -wangdaye.com.geometricweather.R$interpolator: int fast_out_slow_in -androidx.preference.R$styleable: int[] AppCompatTextHelper -com.google.android.material.R$layout: int material_time_input -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -androidx.fragment.R$id: int tag_accessibility_heading -androidx.dynamicanimation.R$attr: R$attr() -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: long mRequested -androidx.activity.R$id: int italic -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogPreferredPadding -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_size -wangdaye.com.geometricweather.R$drawable: int ic_temperature_celsius -okhttp3.internal.io.FileSystem: void rename(java.io.File,java.io.File) -okhttp3.internal.http2.PushObserver$1: void onReset(int,okhttp3.internal.http2.ErrorCode) -androidx.preference.R$styleable: int AppCompatTheme_alertDialogTheme -androidx.appcompat.R$id: int expanded_menu -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSuggest(java.lang.String) -androidx.hilt.lifecycle.R$drawable: int notification_bg_low -retrofit2.Utils$ParameterizedTypeImpl: int hashCode() -retrofit2.BuiltInConverters$BufferingResponseBodyConverter: BuiltInConverters$BufferingResponseBodyConverter() -com.google.android.material.R$id: int chronometer -androidx.appcompat.widget.Toolbar: androidx.appcompat.widget.DecorToolbar getWrapper() -com.xw.repo.bubbleseekbar.R$string: int abc_menu_sym_shortcut_label -androidx.preference.R$styleable: int Toolbar_contentInsetEndWithActions -com.google.android.material.R$id: int invisible -wangdaye.com.geometricweather.R$id: int scrollView -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.Float speed -com.github.rahatarmanahmed.cpv.CircularProgressView: void addListener(com.github.rahatarmanahmed.cpv.CircularProgressViewListener) -androidx.transition.R$styleable -com.google.android.material.R$styleable: int AppCompatTheme_buttonStyleSmall -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference upstream -android.didikee.donate.R$styleable: int[] Spinner -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.FlowableEmitter serialize() -cyanogenmod.platform.Manifest$permission: java.lang.String PROTECTED_APP -androidx.hilt.R$id: int async -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: java.lang.String Unit -androidx.hilt.lifecycle.R$drawable: int notification_icon_background -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMaxWidth -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX() -androidx.constraintlayout.widget.R$id: int action_bar_spinner -android.didikee.donate.R$attr: int actionModeShareDrawable -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean isDisposed() -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.ICMWeatherManager sWeatherManagerService -androidx.appcompat.R$styleable: int AppCompatImageView_tint -wangdaye.com.geometricweather.R$attr: int tabPaddingTop -androidx.fragment.R$layout: int notification_action_tombstone -com.jaredrummler.android.colorpicker.R$attr: int splitTrack -wangdaye.com.geometricweather.R$drawable: int notif_temp_5 -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Determinate -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$FramingSource source -cyanogenmod.app.IProfileManager: void addNotificationGroup(android.app.NotificationGroup) -wangdaye.com.geometricweather.R$id: int design_navigation_view -androidx.lifecycle.extensions.R$drawable -com.google.android.material.R$attr: int arcMode -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogIcon -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Subtitle2 -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -com.google.android.material.card.MaterialCardView: void setCheckedIconMarginResource(int) -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getCollapseContentDescription() -com.google.android.material.R$color: int mtrl_tabs_legacy_text_color_selector -androidx.lifecycle.AbstractSavedStateViewModelFactory: AbstractSavedStateViewModelFactory(androidx.savedstate.SavedStateRegistryOwner,android.os.Bundle) -androidx.appcompat.resources.R$dimen: int notification_subtext_size -androidx.legacy.coreutils.R$id: int async -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String locationKey -cyanogenmod.profiles.RingModeSettings$1: cyanogenmod.profiles.RingModeSettings[] newArray(int) -wangdaye.com.geometricweather.db.entities.LocationEntity: LocationEntity() -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean done -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display1 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_content_inset_with_nav -android.support.v4.app.INotificationSideChannel -android.support.v4.os.ResultReceiver$MyResultReceiver -com.xw.repo.bubbleseekbar.R$attr: int backgroundTint -android.didikee.donate.R$style: int Platform_AppCompat_Light -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_Alert -wangdaye.com.geometricweather.R$color: int colorTextSubtitle -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.R$string: int key_daily_trend_display -androidx.activity.R$id: int action_image -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Dialog -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfRain -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: long index -okhttp3.internal.Util$1: Util$1() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getZh_CN() -wangdaye.com.geometricweather.R$string: int uv_index -androidx.fragment.R$id: int line1 -androidx.appcompat.R$style: int Widget_AppCompat_RatingBar -com.google.android.material.R$styleable: int BottomAppBar_hideOnScroll -androidx.hilt.R$styleable: int Fragment_android_tag -com.turingtechnologies.materialscrollbar.R$color: int button_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_showTitle -cyanogenmod.hardware.ThermalListenerCallback -com.google.android.material.R$attr: int layout_constraintWidth_min -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric Metric -androidx.appcompat.resources.R$layout: int custom_dialog -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_creator -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Time -com.google.android.material.R$dimen: int design_bottom_sheet_modal_elevation -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onComplete() -james.adaptiveicon.R$color: int switch_thumb_normal_material_dark -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias -androidx.recyclerview.R$attr: int layoutManager -androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_android_color -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 -android.support.v4.os.ResultReceiver$1: java.lang.Object[] newArray(int) -androidx.preference.R$style: int TextAppearance_AppCompat_Caption -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: boolean isDisposed() -okio.HashingSource: long read(okio.Buffer,long) -james.adaptiveicon.R$attr: int alertDialogCenterButtons -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onComplete() -wangdaye.com.geometricweather.R$styleable: int[] LiveLockScreen -com.turingtechnologies.materialscrollbar.R$drawable: int avd_hide_password -com.turingtechnologies.materialscrollbar.R$id: int title -okio.Buffer: Buffer() -com.google.android.material.R$styleable: int[] OnSwipe -com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog_Alert -android.didikee.donate.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_grey -com.google.android.material.textfield.MaterialAutoCompleteTextView -androidx.appcompat.R$styleable: int[] RecycleListView -com.google.android.material.chip.Chip: void setChipIconResource(int) -androidx.hilt.work.R$id: R$id() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherText -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: int UnitType -androidx.preference.R$anim: int abc_fade_out -wangdaye.com.geometricweather.R$attr: int tabIndicatorFullWidth -james.adaptiveicon.R$dimen: R$dimen() -io.reactivex.internal.util.VolatileSizeArrayList: int hashCode() -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderQuery -cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.CMTelephonyManager sCMTelephonyManagerInstance -com.google.android.material.R$style: int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_selectionRequired -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Large -com.bumptech.glide.integration.okhttp.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_item_max_width -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_levelValue -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -androidx.loader.R$styleable: int FontFamily_fontProviderPackage -james.adaptiveicon.R$styleable: int MenuItem_android_numericShortcut -androidx.appcompat.R$color: int abc_tint_btn_checkable -com.google.android.material.internal.NavigationMenuView -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onComplete() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogTheme -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontStyle -androidx.loader.R$style: R$style() -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: int skip -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconSize -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastVerticalBias -androidx.constraintlayout.widget.R$color: int abc_tint_switch_track -io.reactivex.Observable: io.reactivex.Single toSortedList() -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_HUMIDITY -com.jaredrummler.android.colorpicker.R$id: int screen -cyanogenmod.providers.CMSettings$Secure: android.net.Uri CONTENT_URI -androidx.preference.R$styleable: int SwitchCompat_switchPadding -androidx.dynamicanimation.R$dimen: int notification_right_icon_size -androidx.appcompat.R$dimen: int highlight_alpha_material_dark -com.google.android.material.textfield.TextInputLayout: void setStartIconTintMode(android.graphics.PorterDuff$Mode) -com.turingtechnologies.materialscrollbar.R$anim: int abc_tooltip_enter -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_setActiveProfileByName -androidx.core.R$string -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.HourlyEntity) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: void cancel() -okio.Buffer: java.lang.Object clone() -com.turingtechnologies.materialscrollbar.TouchScrollBar -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -androidx.appcompat.R$interpolator -androidx.drawerlayout.widget.DrawerLayout: void setDrawerLockMode(int) -com.google.android.material.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -cyanogenmod.profiles.StreamSettings$1 -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode[] values() -com.google.android.material.R$styleable: int[] MenuItem -androidx.dynamicanimation.R$id: int action_image -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_months -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void drain() -com.google.android.material.R$styleable: int AppCompatImageView_tintMode -wangdaye.com.geometricweather.R$font: int product_sans_black -androidx.hilt.work.R$id: int accessibility_custom_action_6 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getCityId() -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_width -com.google.android.material.textfield.TextInputLayout: int getErrorTextCurrentColor() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: java.util.List brands -androidx.drawerlayout.R$layout: int notification_action -wangdaye.com.geometricweather.R$attr: int positiveButtonText -wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetMinutelyEntityList() -io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow -com.google.android.material.R$id: int multiply -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onDrop(java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_always_show_bubble -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingEnd -com.google.android.material.R$id: int transition_layout_save -androidx.preference.R$string: int abc_capital_off -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType[] values() -com.google.android.material.R$styleable: int[] AnimatedStateListDrawableItem -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedWidthMajor() -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_recyclerView -com.google.android.material.R$styleable: int Motion_motionStagger -cyanogenmod.profiles.AirplaneModeSettings: void writeToParcel(android.os.Parcel,int) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6 -androidx.appcompat.resources.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.R$attr: int dotGap -wangdaye.com.geometricweather.R$drawable: int ic_filter_off -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -com.jaredrummler.android.colorpicker.R$styleable: int Preference_widgetLayout -androidx.preference.R$styleable: int AppCompatTheme_colorError -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getBackgroundTintList() -wangdaye.com.geometricweather.R$animator: int weather_thunder_1 -androidx.preference.R$styleable: int AppCompatTheme_android_windowAnimationStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getAlertEntityList() -wangdaye.com.geometricweather.R$attr: int actionButtonStyle -com.google.android.material.R$styleable: int AppCompatTheme_toolbarStyle -cyanogenmod.app.BaseLiveLockManagerService: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -androidx.work.R$dimen: int notification_media_narrow_margin -androidx.preference.R$attr: int windowFixedHeightMajor -androidx.core.R$id: int italic -androidx.hilt.work.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$anim: int popup_show_top_left -com.google.android.material.slider.RangeSlider: void setTrackHeight(int) -retrofit2.RequestFactory$Builder: boolean gotPath -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: double speed -androidx.dynamicanimation.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: java.lang.Integer depth -cyanogenmod.weather.WeatherInfo: double mTodaysLowTemp -androidx.preference.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_3 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: java.lang.String Unit -android.didikee.donate.R$styleable: int RecycleListView_paddingBottomNoButtons -com.google.android.material.R$styleable: int ConstraintSet_barrierMargin -com.google.android.material.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.R$drawable: int btn_checkbox_checked_mtrl -cyanogenmod.providers.CMSettings$Global: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) -org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType Session -androidx.viewpager2.widget.ViewPager2: void setOrientation(int) -androidx.appcompat.R$attr: int initialActivityCount -com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_weight -androidx.dynamicanimation.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showDialog -androidx.hilt.lifecycle.R$layout -android.didikee.donate.R$anim: int abc_fade_out -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Headline -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: ObservableConcatMapEager$ConcatMapEagerMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,int,io.reactivex.internal.util.ErrorMode) -com.google.android.material.R$style: int Theme_MaterialComponents_Light_DarkActionBar -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.Disposable upstream -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeShareDrawable -com.google.android.material.R$styleable: int Chip_checkedIcon -androidx.appcompat.widget.SearchView: void setAppSearchData(android.os.Bundle) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_112 -com.google.android.material.R$dimen: int mtrl_progress_indicator_full_rounded_corner_radius -io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.preference.R$drawable: int abc_item_background_holo_light -com.google.android.material.R$attr: int layout_goneMarginBottom -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -wangdaye.com.geometricweather.R$styleable: int Slider_tickColor -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setAnimationProgress(float) -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_updatesContinuously -cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder asBinder() -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COL_VALUE -androidx.constraintlayout.widget.R$attr: int textAppearancePopupMenuHeader -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Title -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_SPEED -wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_android_letterSpacing -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric Metric -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windSpeedGust -wangdaye.com.geometricweather.R$id: int line1 -androidx.transition.R$drawable: int notification_action_background -com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_light -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme -androidx.constraintlayout.widget.R$attr: int seekBarStyle -com.bumptech.glide.integration.okhttp.R$drawable -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_1 -com.xw.repo.BubbleSeekBar: float getMax() -com.google.android.material.floatingactionbutton.FloatingActionButton: void setExpandedComponentIdHint(int) -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy -cyanogenmod.providers.CMSettings$System: java.lang.String LOCKSCREEN_PIN_SCRAMBLE_LAYOUT -retrofit2.BuiltInConverters$BufferingResponseBodyConverter -wangdaye.com.geometricweather.R$style: int TestStyleWithThemeLineHeightAttribute -androidx.coordinatorlayout.R$attr: int ttcIndex -com.google.android.material.R$dimen: int mtrl_navigation_item_icon_size -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTemperature(int) -com.jaredrummler.android.colorpicker.R$string: int abc_capital_off -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat[] values() -wangdaye.com.geometricweather.R$attr: int bsb_thumb_text_color -androidx.viewpager2.R$drawable: int notification_bg_normal_pressed -androidx.activity.R$styleable -androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context) -okhttp3.internal.http2.Http2Connection: void writeSynReset(int,okhttp3.internal.http2.ErrorCode) -com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace SRGB -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric Metric -android.didikee.donate.R$styleable: int AppCompatTheme_popupMenuStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_top -okhttp3.internal.http2.Http2Stream$FramingSource: okio.Buffer receiveBuffer -cyanogenmod.themes.IThemeService$Stub$Proxy: void requestThemeChangeUpdates(cyanogenmod.themes.IThemeChangeListener) -com.google.android.material.R$dimen: int mtrl_fab_translation_z_hovered_focused -cyanogenmod.weather.CMWeatherManager: android.os.Handler access$100(cyanogenmod.weather.CMWeatherManager) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: java.util.concurrent.atomic.AtomicInteger wip -wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_android_thumb -com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchPreference -com.jaredrummler.android.colorpicker.R$integer: int abc_config_activityShortDur -okhttp3.Headers$Builder: okhttp3.Headers$Builder addAll(okhttp3.Headers) -cyanogenmod.util.ColorUtils: double[] sColorTable -androidx.preference.R$styleable: int AppCompatTextView_drawableTopCompat -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getThermalState() -wangdaye.com.geometricweather.R$styleable: int MaterialShape_shapeAppearanceOverlay -androidx.hilt.lifecycle.R$attr: int fontStyle -androidx.constraintlayout.widget.R$attr: int touchRegionId -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean getAddress_detail() -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_max_width -androidx.constraintlayout.widget.R$styleable: int AlertDialog_singleChoiceItemLayout -androidx.coordinatorlayout.R$style: int Widget_Compat_NotificationActionContainer -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedLevel(java.lang.Integer) -androidx.appcompat.widget.AppCompatSpinner: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -androidx.constraintlayout.widget.R$attr: int motionPathRotate -okio.ByteString: okio.ByteString hmacSha512(okio.ByteString) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -androidx.appcompat.R$color: int primary_dark_material_light -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float icePrecipitation -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction Direction -androidx.appcompat.widget.AppCompatSpinner: int getDropDownVerticalOffset() -okhttp3.internal.Util: java.nio.charset.Charset UTF_8 -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableEnd -wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_year_selection -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayInvalidStyle -com.xw.repo.bubbleseekbar.R$color: int abc_secondary_text_material_dark -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Line2 -com.google.android.material.R$layout: int design_layout_snackbar_include -androidx.preference.R$attr: int homeLayout -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float totalPrecipitationProbability -wangdaye.com.geometricweather.background.receiver.widget.WidgetTextProvider: WidgetTextProvider() -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: io.reactivex.Observer observer -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: int getCircularRevealScrimColor() -androidx.loader.R$id: int right_side -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_singleLineTitle -com.google.android.material.R$styleable: int TabLayout_tabMaxWidth -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setPubTime(java.util.Date) -com.google.android.material.R$style: int TextAppearance_AppCompat_Menu -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String getFrom() -com.jaredrummler.android.colorpicker.R$attr: int actionModeCopyDrawable -com.google.android.material.R$attr: int itemSpacing -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: java.lang.String modeId -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,boolean) -cyanogenmod.themes.IThemeService$Stub$Proxy: int getProgress() -com.google.android.material.button.MaterialButton: int getIconSize() -com.google.android.material.R$styleable: int ShapeableImageView_shapeAppearanceOverlay -com.turingtechnologies.materialscrollbar.R$id: int shortcut -com.xw.repo.bubbleseekbar.R$color: int abc_hint_foreground_material_dark -cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING_START_VOLUME -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$color: int colorLevel_5 -com.google.android.material.chip.ChipGroup: void setSingleLine(boolean) -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onError(java.lang.Throwable) -okio.Okio$1: java.lang.String toString() -com.google.android.material.R$attr: int textAppearanceListItem -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String color -okhttp3.Request$Builder: okhttp3.Headers$Builder headers -androidx.lifecycle.ProcessLifecycleOwner$2: void onResume() -wangdaye.com.geometricweather.R$string: int restart -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Latitude -androidx.preference.R$style: int Preference_SeekBarPreference_Material -androidx.preference.R$layout: int preference_widget_switch -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat -com.google.android.material.R$dimen: int mtrl_navigation_elevation -wangdaye.com.geometricweather.R$attr: int paddingRightSystemWindowInsets -wangdaye.com.geometricweather.R$string: int material_timepicker_am -androidx.appcompat.R$style: int Widget_AppCompat_Spinner_Underlined -com.jaredrummler.android.colorpicker.R$id: int search_src_text -retrofit2.ParameterHandler: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.jaredrummler.android.colorpicker.R$attr: int actionModeWebSearchDrawable -androidx.appcompat.R$styleable: int ActionBar_titleTextStyle -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_RAINSTORM -androidx.appcompat.R$attr: int tooltipForegroundColor -com.google.android.material.textfield.TextInputLayout: void setError(java.lang.CharSequence) -com.google.android.material.R$id: int top -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dark -androidx.preference.R$attr: int singleLineTitle -android.didikee.donate.R$styleable: int TextAppearance_android_textSize -androidx.appcompat.R$styleable: int ViewStubCompat_android_layout -retrofit2.Platform: Platform(boolean) -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeColor(int) -com.google.android.material.R$drawable: int abc_seekbar_track_material -androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityPreCreated(android.app.Activity,android.os.Bundle) -wangdaye.com.geometricweather.R$styleable: int[] ConstraintLayout_Layout -com.google.android.material.R$style: int TextAppearance_AppCompat_Small_Inverse -com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_padding_material -io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean active -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids -androidx.constraintlayout.widget.R$attr: int chainUseRtl -okhttp3.internal.connection.RouteSelector: okhttp3.Address address -com.google.android.material.R$styleable: int MenuItem_android_menuCategory -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.R$drawable: int abc_textfield_activated_mtrl_alpha -wangdaye.com.geometricweather.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: AccuCurrentResult$PrecipitationSummary$Past24Hours() -android.didikee.donate.R$drawable: int abc_edit_text_material -com.jaredrummler.android.colorpicker.R$attr: int fontStyle -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low_normal -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Overline -com.google.android.material.R$attr: int actionModeSplitBackground -com.google.android.material.R$attr: int circularRadius -androidx.constraintlayout.widget.R$string: int abc_menu_sym_shortcut_label -androidx.viewpager.R$dimen: int compat_button_inset_horizontal_material -com.jaredrummler.android.colorpicker.R$color: int abc_tint_spinner -com.google.android.material.R$color: int foreground_material_dark -androidx.appcompat.widget.ScrollingTabContainerView: void setTabSelected(int) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position -androidx.constraintlayout.widget.R$attr: int firstBaselineToTopHeight -io.reactivex.internal.subscriptions.DeferredScalarSubscription: java.lang.Object poll() -com.google.android.material.R$styleable: int Motion_pathMotionArc -retrofit2.Utils: java.lang.Class declaringClassOf(java.lang.reflect.TypeVariable) -wangdaye.com.geometricweather.R$drawable: int ic_tag_plus -okhttp3.internal.cache.DiskLruCache: boolean isClosed() -cyanogenmod.externalviews.ExternalViewProviderService$Provider: int DEFAULT_WINDOW_TYPE -com.google.android.material.internal.ForegroundLinearLayout: void setForegroundGravity(int) -okhttp3.Request$Builder: Request$Builder(okhttp3.Request) -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSearchResultSubtitle -wangdaye.com.geometricweather.R$styleable: int TextInputEditText_textInputLayoutFocusedRectEnabled -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Title -com.google.android.material.R$id: int coordinator -com.google.android.material.R$dimen: int notification_top_pad -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_SCREEN_ON -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTheme -com.jaredrummler.android.colorpicker.R$attr: int dropDownListViewStyle -cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: int FAHRENHEIT -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sColorValidator -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setZenMode -androidx.appcompat.R$style: int TextAppearance_AppCompat_Small_Inverse -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.preference.R$styleable: int SwitchCompat_showText -com.turingtechnologies.materialscrollbar.R$id: int right -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_getActiveWeatherServiceProviderLabel -okio.RealBufferedSink: okio.BufferedSink writeInt(int) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: java.lang.String Unit -androidx.swiperefreshlayout.R$id -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetStart -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Suffix -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingBottom -okhttp3.Response: long sentRequestAtMillis -androidx.constraintlayout.widget.R$attr: int defaultDuration -cyanogenmod.app.Profile$TriggerType: Profile$TriggerType() -com.jaredrummler.android.colorpicker.R$integer: int abc_config_activityDefaultDur -androidx.appcompat.resources.R$dimen: int compat_control_corner_material -cyanogenmod.app.BaseLiveLockManagerService$1: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -androidx.appcompat.R$id: int scrollView -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -com.google.android.material.slider.RangeSlider: void setTrackTintList(android.content.res.ColorStateList) -com.google.android.material.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setIconDrawable(android.graphics.drawable.Drawable) -com.jaredrummler.android.colorpicker.R$integer: int cancel_button_image_alpha -wangdaye.com.geometricweather.R$color: int abc_primary_text_material_dark -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_buttonIconDimen -com.google.android.material.R$id: int dragUp -okhttp3.internal.cache.DiskLruCache$Editor: void abortUnlessCommitted() -com.google.android.material.R$color: int mtrl_card_view_ripple -androidx.lifecycle.extensions.R$attr: int fontWeight -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSmallPopupMenu -cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder() -androidx.work.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -wangdaye.com.geometricweather.R$drawable: int notif_temp_70 -com.jaredrummler.android.colorpicker.R$dimen: int notification_small_icon_background_padding -androidx.constraintlayout.widget.R$attr: int actionBarSplitStyle -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemShapeAppearance -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetStart -wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -cyanogenmod.weather.WeatherLocation: WeatherLocation(android.os.Parcel,cyanogenmod.weather.WeatherLocation$1) -androidx.preference.R$layout: int preference_widget_checkbox -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder client(okhttp3.OkHttpClient) -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerReceiver -cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String SERVICE_INTERFACE -com.jaredrummler.android.colorpicker.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object getKey(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_60 -com.google.android.material.R$attr: int dividerVertical -androidx.viewpager.R$dimen: int notification_action_text_size -com.jaredrummler.android.colorpicker.R$id: int cpv_arrow_right -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.concurrent.atomic.AtomicInteger active -com.google.gson.FieldNamingPolicy$2: java.lang.String translateName(java.lang.reflect.Field) -io.reactivex.internal.disposables.SequentialDisposable: boolean isDisposed() -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_icon -com.bumptech.glide.integration.okhttp.R$id: R$id() -james.adaptiveicon.R$color: int abc_search_url_text -com.google.android.material.R$styleable: int AppCompatTheme_windowActionBarOverlay -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getBackgroundColor() -wangdaye.com.geometricweather.R$string: int settings_title_speed_unit -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_MIN -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: int UnitType -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_138 -androidx.constraintlayout.widget.R$styleable: int[] ConstraintLayout_placeholder -wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullResourceIdException: ResourceUtils$NullResourceIdException() -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowDx -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar_Small -com.google.android.material.textfield.TextInputLayout: void setSuffixTextColor(android.content.res.ColorStateList) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeAlpha(float) -com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getTextSize() -androidx.lifecycle.LifecycleRegistry: void backwardPass(androidx.lifecycle.LifecycleOwner) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_subtitleTextStyle -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabStyle -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -android.didikee.donate.R$attr: int maxButtonHeight -androidx.transition.R$attr: int fontStyle -com.turingtechnologies.materialscrollbar.R$color: int primary_text_disabled_material_light -android.didikee.donate.R$styleable: int Toolbar_titleMarginStart -okhttp3.internal.http1.Http1Codec: okhttp3.Headers readHeaders() -androidx.preference.R$styleable: int MenuItem_actionProviderClass -com.google.android.material.R$style: int Theme_AppCompat_CompactMenu -com.jaredrummler.android.colorpicker.R$id: int transparency_title -wangdaye.com.geometricweather.R$styleable: int Toolbar_android_gravity -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textSize -com.jaredrummler.android.colorpicker.R$attr: int tickMark -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabGravity -androidx.work.R$styleable: int[] GradientColorItem -androidx.preference.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$string: int key_forecast_today -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display4 -androidx.work.impl.diagnostics.DiagnosticsReceiver: DiagnosticsReceiver() -com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_inset_horizontal_material -okhttp3.internal.cache.DiskLruCache: DiskLruCache(okhttp3.internal.io.FileSystem,java.io.File,int,int,long,java.util.concurrent.Executor) -com.google.android.material.R$anim: int abc_slide_in_bottom -com.google.android.material.R$styleable: int MaterialButton_android_checkable -james.adaptiveicon.R$styleable: int SwitchCompat_switchTextAppearance -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: long endTime -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Color -com.turingtechnologies.materialscrollbar.R$color: int material_grey_50 -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_cardForegroundColor -androidx.viewpager.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$drawable: int notif_temp_53 -com.turingtechnologies.materialscrollbar.R$anim: int abc_fade_out -okio.BufferedSource: java.lang.String readUtf8Line() -androidx.appcompat.R$styleable: int GradientColor_android_type -cyanogenmod.power.IPerformanceManager$Stub$Proxy: IPerformanceManager$Stub$Proxy(android.os.IBinder) -androidx.lifecycle.extensions.R$layout: int notification_template_custom_big -com.bumptech.glide.integration.okhttp.R$layout: int notification_template_part_chronometer -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_ab_back_material -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_motionProgress -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean requestDismissAndStartActivity(android.content.Intent) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position position -james.adaptiveicon.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.tls.TrustRootIndex buildTrustRootIndex(javax.net.ssl.X509TrustManager) -androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver -james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedWidthMinor -androidx.swiperefreshlayout.R$id: int dialog_button -wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetHourlyEntityList() -androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveData(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int helperText -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_shapeAppearance -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.R$id: int progress_circular -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float thunderstorm -wangdaye.com.geometricweather.R$drawable: int flag_si -com.xw.repo.bubbleseekbar.R$attr: int switchTextAppearance -com.google.android.material.R$styleable: int ActionBar_itemPadding -wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvDescription(java.lang.String) -androidx.appcompat.R$id: int accessibility_custom_action_22 -androidx.recyclerview.R$id: int accessibility_custom_action_12 -okio.Segment: boolean owner -androidx.appcompat.widget.LinearLayoutCompat: int getOrientation() -cyanogenmod.themes.ThemeManager$1$2: void run() -com.xw.repo.bubbleseekbar.R$bool -com.google.android.material.R$dimen: int abc_text_size_display_1_material -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RelativeHumidity -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: double Value -cyanogenmod.externalviews.ExternalView$6: void run() -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_6 -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarWidgetTheme -james.adaptiveicon.R$dimen: int disabled_alpha_material_light -com.google.android.material.slider.Slider: void setLabelBehavior(int) -cyanogenmod.profiles.AirplaneModeSettings$BooleanState -wangdaye.com.geometricweather.background.service.TileService -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActivityChooserView -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.xw.repo.bubbleseekbar.R$id: int scrollIndicatorUp -com.xw.repo.bubbleseekbar.R$attr: int srcCompat -cyanogenmod.externalviews.ExternalView: void onDetachedFromWindow() -com.google.android.material.R$string: int fab_transformation_sheet_behavior -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: ObservableJoin$JoinDisposable(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.R$color: int colorLevel_3 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_WAKE_SCREEN_VALIDATOR -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -cyanogenmod.profiles.LockSettings$1: LockSettings$1() -com.google.android.material.R$color: int mtrl_bottom_nav_colored_ripple_color -com.turingtechnologies.materialscrollbar.R$id: int labeled -cyanogenmod.externalviews.ExternalViewProviderService$Provider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: java.util.List getBrands() -androidx.activity.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_month_abbr -androidx.appcompat.widget.SwitchCompat: void setThumbResource(int) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listMenuViewStyle -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.Observer downstream -retrofit2.RequestFactory$Builder: void parseHttpMethodAndPath(java.lang.String,java.lang.String,boolean) -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.constraintlayout.widget.R$styleable: int[] KeyTimeCycle -androidx.appcompat.R$attr: int autoSizeStepGranularity -com.google.android.material.bottomnavigation.BottomNavigationItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: boolean done -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetBottom -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_icon -androidx.preference.R$id: int accessibility_custom_action_5 -androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.FragmentActivity,androidx.lifecycle.ViewModelProvider$Factory) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability -cyanogenmod.app.LiveLockScreenManager: android.content.Context mContext -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_rtl -androidx.lifecycle.ComputableLiveData$1: ComputableLiveData$1(androidx.lifecycle.ComputableLiveData) -wangdaye.com.geometricweather.R$attr: int titleTextStyle -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Small -com.turingtechnologies.materialscrollbar.R$id: int mini -com.google.android.material.slider.BaseSlider: float getValueTo() -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.functions.Function mapper -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void dispose() -com.google.android.material.R$attr: int thumbTintMode -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.lang.Object poll() -wangdaye.com.geometricweather.R$attr: int singleChoiceItemLayout -wangdaye.com.geometricweather.db.entities.WeatherEntity: WeatherEntity(java.lang.Long,java.lang.String,java.lang.String,long,java.util.Date,long,java.util.Date,long,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.String,java.lang.String) -com.jaredrummler.android.colorpicker.R$attr: int actionModeSplitBackground -wangdaye.com.geometricweather.R$drawable: int widget_day_week -cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(int,int,boolean) -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginTop -android.support.v4.os.ResultReceiver$MyResultReceiver: void send(int,android.os.Bundle) -com.xw.repo.bubbleseekbar.R$styleable: int[] TextAppearance -wangdaye.com.geometricweather.R$animator: int weather_rain_1 -cyanogenmod.externalviews.KeyguardExternalView: void onDetachedFromWindow() -wangdaye.com.geometricweather.R$layout: int text_view_without_line_height -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActivityChooserView -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMode -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.preference.R$drawable: int abc_list_selector_disabled_holo_light -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -com.bumptech.glide.load.engine.GlideException -com.jaredrummler.android.colorpicker.R$layout: int notification_action_tombstone -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColorLink -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_material_anim -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: AccuCurrentResult$Temperature$Imperial() -com.google.android.material.R$attr: int layout_goneMarginRight -com.google.android.material.R$attr: int paddingBottomSystemWindowInsets -com.jaredrummler.android.colorpicker.R$layout: int notification_action -androidx.appcompat.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$string: int error_icon_content_description -androidx.customview.R$id: int text -androidx.activity.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Id -androidx.dynamicanimation.R$drawable: int notification_bg_normal -androidx.dynamicanimation.R$style -okhttp3.internal.connection.RealConnection: void connectTunnel(int,int,int,okhttp3.Call,okhttp3.EventListener) -androidx.activity.R$style: int TextAppearance_Compat_Notification_Title -androidx.appcompat.R$id: int search_badge -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getSunSetDate() -androidx.lifecycle.ServiceLifecycleDispatcher: android.os.Handler mHandler -androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonTintMode -com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String) -com.google.android.material.R$drawable: int abc_list_selector_holo_light -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_material -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_requestDismissAndStartActivity_1 -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_normal_pressed -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onWindowFocusChanged(boolean) -wangdaye.com.geometricweather.R$attr: int cpv_sliderColor -androidx.appcompat.R$styleable: int Toolbar_logoDescription -com.jaredrummler.android.colorpicker.ColorPickerView: int getSliderTrackerColor() -wangdaye.com.geometricweather.R$id: int dialog_location_help_title -wangdaye.com.geometricweather.R$string: int settings_title_exchange_day_night_temp_switch -com.google.android.material.R$id: int autoCompleteToStart -androidx.appcompat.R$string: int abc_activitychooserview_choose_application -com.google.android.material.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Body1 -wangdaye.com.geometricweather.R$id: int drawerLayout -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded -okhttp3.ResponseBody: java.lang.String string() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display2 -androidx.constraintlayout.widget.R$attr: int drawableLeftCompat -android.didikee.donate.R$styleable: int[] PopupWindow -wangdaye.com.geometricweather.R$id: int mtrl_picker_header_toggle -james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_Toolbar -com.jaredrummler.android.colorpicker.R$id: int preset -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawableItem_android_drawable -com.xw.repo.bubbleseekbar.R$dimen: R$dimen() -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type TOP -androidx.constraintlayout.widget.R$layout: int notification_template_custom_big -androidx.recyclerview.R$id: int notification_background -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getCurrentLiveLockScreen -androidx.preference.R$styleable: int AppCompatTheme_windowFixedHeightMinor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: AccuCurrentResult$WetBulbTemperature$Imperial() -androidx.appcompat.R$color: int primary_text_disabled_material_dark -android.didikee.donate.R$styleable: int MenuItem_actionProviderClass -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -com.xw.repo.bubbleseekbar.R$attr: int bsb_show_section_text -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: boolean requestDismissAndStartActivity(android.content.Intent) -androidx.lifecycle.ViewModelProvider$KeyedFactory -wangdaye.com.geometricweather.main.dialogs.LocationPermissionStatementDialog -androidx.preference.R$drawable: int abc_ic_menu_share_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeTopLeft -okhttp3.internal.http2.Http2Connection$ReaderRunnable: Http2Connection$ReaderRunnable(okhttp3.internal.http2.Http2Connection,okhttp3.internal.http2.Http2Reader) -cyanogenmod.app.CMContextConstants -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getUnitId() -okhttp3.internal.http2.Http2Stream: boolean isOpen() -wangdaye.com.geometricweather.R$id: int showHome -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customFloatValue -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_2G3G4G -wangdaye.com.geometricweather.R$styleable: int Badge_verticalOffset -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_title -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties: MfEphemerisResult$Properties() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -androidx.fragment.app.SuperNotCalledException: SuperNotCalledException(java.lang.String) -cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature temperature -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderCerts -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitationDuration -androidx.activity.R$id: int accessibility_custom_action_31 -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityResumed(android.app.Activity) -android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.os.IBinder asBinder() -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_icon_color_selector -com.turingtechnologies.materialscrollbar.R$attr: int buttonIconDimen -androidx.hilt.R$id: int forever -com.google.android.material.R$styleable: int NavigationView_android_background -wangdaye.com.geometricweather.background.polling.work.worker.TomorrowForecastUpdateWorker: TomorrowForecastUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -com.xw.repo.bubbleseekbar.R$attr: int fontProviderPackage -androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Dialog -okio.ForwardingTimeout: okio.ForwardingTimeout setDelegate(okio.Timeout) -android.didikee.donate.R$styleable: int[] Toolbar -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -wangdaye.com.geometricweather.R$styleable: int Constraint_android_minWidth -androidx.appcompat.R$style: int Widget_AppCompat_DrawerArrowToggle -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_THEME_COMPONENTS -com.turingtechnologies.materialscrollbar.R$attr: int color -androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandle mHandle -androidx.appcompat.R$id: int action_bar_subtitle -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_light -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MOSTLY_CLOUDY_DAY -androidx.constraintlayout.widget.R$layout: int abc_select_dialog_material -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerError(java.lang.Throwable) -androidx.core.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents -cyanogenmod.app.Profile: void removeProfileGroup(java.util.UUID) -wangdaye.com.geometricweather.R$id: int cpv_color_image_view -okhttp3.internal.http2.Header: int hpackSize -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property CurrentPosition -androidx.lifecycle.SavedStateHandle: SavedStateHandle(java.util.Map) -com.turingtechnologies.materialscrollbar.R$color: int material_deep_teal_500 -androidx.appcompat.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr Precip1hr -android.didikee.donate.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -wangdaye.com.geometricweather.R$layout: int item_weather_daily_wind -okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_0 -com.google.gson.internal.LinkedTreeMap: java.util.Comparator comparator -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date date -android.didikee.donate.R$layout: int abc_action_bar_up_container -androidx.lifecycle.ClassesInfoCache: void verifyAndPutHandler(java.util.Map,androidx.lifecycle.ClassesInfoCache$MethodReference,androidx.lifecycle.Lifecycle$Event,java.lang.Class) -wangdaye.com.geometricweather.R$transition: int search_activity_enter -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_creator -wangdaye.com.geometricweather.R$drawable: int notif_temp_20 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust WindGust -com.google.android.material.textfield.TextInputLayout: void setEndIconMode(int) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -com.jaredrummler.android.colorpicker.R$layout: int select_dialog_item_material -android.support.v4.os.IResultReceiver$Stub$Proxy: android.support.v4.os.IResultReceiver sDefaultImpl -androidx.preference.R$dimen: int abc_floating_window_z -com.turingtechnologies.materialscrollbar.R$styleable: int[] ViewBackgroundHelper -okhttp3.internal.http.HttpCodec: void flushRequest() -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_android_thumb -com.bumptech.glide.R$dimen: int notification_content_margin_start -james.adaptiveicon.R$attr: int arrowHeadLength -androidx.transition.R$drawable: int notification_bg -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ACTIVE -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight -wangdaye.com.geometricweather.R$string: int material_clock_display_divider -wangdaye.com.geometricweather.R$color: int lightPrimary_4 -androidx.fragment.R$id: int line3 -wangdaye.com.geometricweather.R$drawable: int notif_temp_60 -wangdaye.com.geometricweather.R$string: int material_timepicker_minute -james.adaptiveicon.R$attr: int listPreferredItemHeightLarge -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -okhttp3.internal.cache.CacheInterceptor: okhttp3.Response stripBody(okhttp3.Response) -io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean isEmpty() -wangdaye.com.geometricweather.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_itemPadding -james.adaptiveicon.R$drawable: int notify_panel_notification_icon_bg -com.bumptech.glide.integration.okhttp.R$drawable: int notification_icon_background -com.google.android.material.R$styleable: int KeyAttribute_android_rotationX -com.google.android.material.slider.Slider: void setValueTo(float) -com.bumptech.glide.R$drawable: int notification_bg_normal_pressed -com.jaredrummler.android.colorpicker.R$attr: int tooltipFrameBackground -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogLayout -com.turingtechnologies.materialscrollbar.R$id: int search_close_btn -com.google.android.material.R$style: int Base_V26_Theme_AppCompat_Light -com.bumptech.glide.integration.okhttp.R$dimen: int notification_right_side_padding_top -androidx.activity.ComponentActivity$3 -wangdaye.com.geometricweather.R$style: int Animation_MaterialComponents_BottomSheetDialog -com.xw.repo.bubbleseekbar.R$id: int expanded_menu -com.google.android.material.R$styleable: int Toolbar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$array: int notification_text_color_values -okhttp3.CacheControl: int maxStaleSeconds -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: void setUnit(java.lang.String) -android.didikee.donate.R$styleable: int Toolbar_collapseIcon -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_text_size -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_creator -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,java.util.concurrent.Callable,boolean) -com.google.android.material.card.MaterialCardView: void setUseCompatPadding(boolean) -com.jaredrummler.android.colorpicker.R$attr: int titleMargin -androidx.hilt.R$id: int dialog_button -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.R$dimen: int tooltip_corner_radius -androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.observers.InnerQueuedObserver: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$attr: int actionModePopupWindowStyle -io.reactivex.Observable: io.reactivex.Observable repeatWhen(io.reactivex.functions.Function) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: AccuCurrentResult$Precip1hr$Imperial() -cyanogenmod.weatherservice.WeatherProviderService: android.os.IBinder onBind(android.content.Intent) -retrofit2.ParameterHandler$Path: retrofit2.Converter valueConverter -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -cyanogenmod.providers.ThemesContract$MixnMatchColumns: ThemesContract$MixnMatchColumns() -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Title -james.adaptiveicon.R$id: int up -com.google.android.material.textfield.TextInputLayout: void setTextInputAccessibilityDelegate(com.google.android.material.textfield.TextInputLayout$AccessibilityDelegate) -okio.Buffer: long indexOf(byte,long,long) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed Speed -com.google.android.material.navigation.NavigationView: int getItemHorizontalPadding() -wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_light -wangdaye.com.geometricweather.R$styleable: int MockView_mock_labelBackgroundColor -com.jaredrummler.android.colorpicker.R$attr: int switchPadding -androidx.constraintlayout.widget.R$attr: int fontProviderFetchTimeout -cyanogenmod.weather.util.WeatherUtils: boolean isValidTempUnit(int) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintDimensionRatio -com.jaredrummler.android.colorpicker.R$attr: int stackFromEnd -androidx.recyclerview.R$id: int icon_group -wangdaye.com.geometricweather.R$attr: int autoSizeMaxTextSize -okhttp3.internal.http2.Http2Stream: java.util.Deque access$000(okhttp3.internal.http2.Http2Stream) -com.google.android.material.R$layout: int custom_dialog -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_switchStyle -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMenuItemView -androidx.loader.R$id: int info -io.reactivex.internal.subscriptions.SubscriptionHelper: void reportSubscriptionSet() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_grey -androidx.preference.R$color: int button_material_light -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableStart -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_vertical_padding -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.String Name -wangdaye.com.geometricweather.R$id: int widget_remote_card -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder addInterceptor(okhttp3.Interceptor) -okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV3 -com.google.android.material.R$styleable: int TextAppearance_textLocale -androidx.constraintlayout.widget.R$dimen: int tooltip_precise_anchor_extra_offset -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindDegree -io.reactivex.internal.observers.ForEachWhileObserver: boolean done -com.jaredrummler.android.colorpicker.R$attr: int logoDescription -com.google.android.material.circularreveal.cardview.CircularRevealCardView: int getCircularRevealScrimColor() -androidx.customview.R$drawable: int notification_tile_bg -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_WARM_FALLING -com.jaredrummler.android.colorpicker.R$dimen: int notification_subtext_size -com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector DAY -androidx.lifecycle.service.R -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_Chip -com.google.android.material.R$attr: int backgroundInsetEnd -androidx.appcompat.R$style: int Base_Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$array: int precipitation_unit_values -androidx.appcompat.R$styleable: int FontFamilyFont_android_fontStyle -androidx.appcompat.view.menu.ActionMenuItemView: void setTitle(java.lang.CharSequence) -okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_FIN -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function9) -com.turingtechnologies.materialscrollbar.R$attr: int paddingEnd -androidx.legacy.coreutils.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout -cyanogenmod.app.Profile: void setDozeMode(int) -io.reactivex.Observable: io.reactivex.Observable take(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$attr: int tabContentStart -retrofit2.Retrofit: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerId -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipMinHeight -com.turingtechnologies.materialscrollbar.R$attr: int spinnerDropDownItemStyle -wangdaye.com.geometricweather.R$attr: int applyMotionScene -com.google.android.material.R$styleable: int SnackbarLayout_animationMode -wangdaye.com.geometricweather.R$dimen: int mtrl_toolbar_default_height -com.google.android.material.R$attr: int cornerRadius -androidx.preference.R$styleable: int DialogPreference_android_dialogMessage -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.disposables.Disposable upstream -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.MediaType contentType -retrofit2.ParameterHandler$Body: java.lang.reflect.Method method -androidx.appcompat.R$layout: int abc_list_menu_item_checkbox -io.reactivex.Observable: io.reactivex.Observable delay(io.reactivex.functions.Function) -androidx.vectordrawable.animated.R$id: int tag_screen_reader_focusable -com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView_PrimarySurface -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_toTopOf -androidx.appcompat.R$styleable: int AppCompatTheme_colorAccent -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA -androidx.preference.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.R$id: int async -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadPong(okio.ByteString) -android.didikee.donate.R$style: int Widget_AppCompat_Light_PopupMenu -com.google.android.material.R$id: int motion_base -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_tooltipForegroundColor -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRelativeHumidity(java.lang.Float) -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderQuery -cyanogenmod.app.Profile: void doSelect(android.content.Context,com.android.internal.policy.IKeyguardService) -androidx.preference.R$styleable: int[] EditTextPreference -cyanogenmod.app.BaseLiveLockManagerService$1: cyanogenmod.app.BaseLiveLockManagerService this$0 -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_width -com.google.android.material.R$color: int mtrl_outlined_icon_tint -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_inputType -wangdaye.com.geometricweather.R$drawable: int notif_temp_82 -retrofit2.converter.gson.GsonRequestBodyConverter: com.google.gson.Gson gson -okio.ForwardingSink -wangdaye.com.geometricweather.settings.fragments.SettingsFragment: SettingsFragment() -wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_title -androidx.coordinatorlayout.R$id: int action_container -android.didikee.donate.R$styleable: int MenuItem_contentDescription -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarStyle -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.LocationEntity) -androidx.preference.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -com.jaredrummler.android.colorpicker.R$dimen: int abc_button_padding_vertical_material -com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_padding_vertical_material -androidx.viewpager.R$id: int action_container -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCloudCover(java.lang.Integer) -wangdaye.com.geometricweather.R$id: int notification_big_week_5 -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,int) -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -androidx.hilt.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$drawable: int widget_card_light_80 -com.google.android.material.R$attr: int percentWidth -androidx.appcompat.R$drawable: int abc_ic_search_api_material -com.jaredrummler.android.colorpicker.R$id: int forever -okhttp3.internal.connection.ConnectInterceptor -androidx.preference.R$color: int material_grey_100 -okhttp3.RequestBody$1: void writeTo(okio.BufferedSink) -androidx.constraintlayout.widget.R$attr: int onNegativeCross -io.reactivex.internal.operators.observable.ObservableGroupBy$State: io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver parent -okio.Buffer: java.lang.String readUtf8LineStrict() -android.didikee.donate.R$dimen: int abc_text_size_title_material_toolbar -android.didikee.donate.R$styleable: int AppCompatTheme_tooltipForegroundColor -android.didikee.donate.R$styleable: int Toolbar_titleTextColor -okhttp3.internal.http2.Http2Reader -okhttp3.internal.Internal: java.io.IOException timeoutExit(okhttp3.Call,java.io.IOException) -com.google.android.material.R$styleable: int Layout_layout_constraintHeight_min -androidx.constraintlayout.widget.R$attr: int barrierMargin -com.jaredrummler.android.colorpicker.R$attr: int buttonBarStyle -androidx.viewpager.R$id: int right_icon -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSwoopDuration -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_PopupMenu -okhttp3.internal.platform.OptionalMethod: java.lang.reflect.Method getMethod(java.lang.Class) -androidx.preference.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -androidx.drawerlayout.R$drawable: int notification_bg_low -io.reactivex.exceptions.UndeliverableException -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean humidity -wangdaye.com.geometricweather.R$id: int collapseActionView -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_selectableItemBackground -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -james.adaptiveicon.R$style: int Base_DialogWindowTitleBackground_AppCompat -james.adaptiveicon.R$attr: int multiChoiceItemLayout -cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.CMStatusBarManager getInstance(android.content.Context) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: long EpochRise -androidx.appcompat.R$attr: int closeIcon -com.google.android.material.R$anim: int design_bottom_sheet_slide_in -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerY -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: long serialVersionUID -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SUNNY -com.google.android.material.R$id: int mtrl_child_content_container -io.reactivex.Observable: io.reactivex.Observable mergeArray(io.reactivex.ObservableSource[]) -com.google.android.material.R$color: int ripple_material_dark -com.google.android.material.slider.RangeSlider: void setHaloRadiusResource(int) -com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialScrollBar -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getLongTemperatureText(android.content.Context,int) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonPhaseDescription(java.lang.String) -cyanogenmod.providers.CMSettings$NameValueCache: android.content.IContentProvider lazyGetProvider(android.content.ContentResolver) -okio.Okio$3: void write(okio.Buffer,long) -james.adaptiveicon.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_max -com.google.android.material.R$attr: int background -com.turingtechnologies.materialscrollbar.R$attr: int tabIconTint -androidx.preference.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle -com.google.android.material.slider.BaseSlider: float[] getActiveRange() -wangdaye.com.geometricweather.R$string: int action_settings -okhttp3.internal.cache2.Relay: okio.ByteString PREFIX_CLEAN -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.R$color: int colorTextSubtitle_light -androidx.preference.R$attr: int textAppearanceSmallPopupMenu -okio.HashingSource: okio.ByteString hash() -com.google.android.material.R$styleable: int KeyPosition_percentX -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onComplete() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: boolean isDisposed() -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_25 -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Body2 -com.xw.repo.bubbleseekbar.R$integer: int abc_config_activityShortDur -androidx.viewpager2.R$attr: int fastScrollVerticalTrackDrawable -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginEnd -io.reactivex.internal.queue.SpscArrayQueue: int lookAheadStep -com.google.android.material.R$style: int Theme_AppCompat_DayNight_DarkActionBar -androidx.vectordrawable.R$styleable: int FontFamilyFont_fontWeight -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceImageView -okhttp3.Cookie: java.lang.String parseDomain(java.lang.String) -james.adaptiveicon.R$attr: int contentInsetRight -androidx.hilt.lifecycle.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Snackbar_Message -com.xw.repo.bubbleseekbar.R$layout: int abc_action_mode_close_item_material -wangdaye.com.geometricweather.R$styleable: int Chip_chipBackgroundColor -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: java.lang.String getInterfaceDescriptor() -okhttp3.TlsVersion: okhttp3.TlsVersion forJavaName(java.lang.String) -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids -wangdaye.com.geometricweather.R$styleable: int CardView_android_minWidth -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX) -com.xw.repo.bubbleseekbar.R$string: int abc_menu_enter_shortcut_label -android.didikee.donate.R$styleable: int ActionBar_contentInsetRight -com.google.android.material.R$style: int Widget_MaterialComponents_CollapsingToolbar -wangdaye.com.geometricweather.R$attr: int motionInterpolator -cyanogenmod.app.BaseLiveLockManagerService$1: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -cyanogenmod.app.suggest.IAppSuggestManager$Stub: IAppSuggestManager$Stub() -android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_Switch -androidx.transition.R$integer: R$integer() -androidx.appcompat.widget.LinearLayoutCompat: void setHorizontalGravity(int) -wangdaye.com.geometricweather.R$id: int zero_corner_chip -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_tileMode -retrofit2.adapter.rxjava2.Result: boolean isError() -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityDestroyed(android.app.Activity) -androidx.constraintlayout.widget.ConstraintLayout: void setMinHeight(int) -com.google.android.material.R$attr: int defaultDuration -androidx.constraintlayout.widget.R$attr: int fontFamily -androidx.constraintlayout.widget.R$attr: int spinBars -cyanogenmod.themes.ThemeManager$1$1 -androidx.constraintlayout.widget.R$id: int jumpToStart -wangdaye.com.geometricweather.R$id: int design_bottom_sheet -com.google.android.material.R$styleable: int ConstraintSet_android_maxHeight -james.adaptiveicon.R$color: int abc_hint_foreground_material_light -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer uvIndex -com.google.android.material.R$styleable: int Layout_layout_constraintWidth_percent -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial Imperial -okio.ForwardingSink: java.lang.String toString() -wangdaye.com.geometricweather.R$drawable: int ic_settings -retrofit2.ParameterHandler$PartMap: int p -okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date lastModified -cyanogenmod.providers.CMSettings$System: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) -com.google.android.material.slider.Slider: Slider(android.content.Context,android.util.AttributeSet,int) -android.didikee.donate.R$dimen: int abc_dialog_fixed_width_minor -wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemBackground -okio.RealBufferedSource: long readDecimalLong() -wangdaye.com.geometricweather.R$styleable: int NavigationView_shapeAppearance -wangdaye.com.geometricweather.R$id: int triangle -retrofit2.Call: okio.Timeout timeout() -androidx.preference.R$drawable: int abc_list_selector_holo_dark -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_right_mtrl_light -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean isEmpty() -androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$styleable: int MenuView_android_horizontalDivider -james.adaptiveicon.R$attr: int popupTheme -androidx.activity.R$styleable: int GradientColor_android_startX -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge -com.google.android.material.R$color: int material_on_surface_emphasis_high_type -com.jaredrummler.android.colorpicker.R$color: int material_grey_900 -androidx.constraintlayout.widget.R$dimen: int abc_text_size_small_material -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_56 -retrofit2.converter.gson.package-info -cyanogenmod.app.PartnerInterface -okhttp3.internal.http2.Hpack$Reader: int readInt(int,int) -com.google.android.material.R$styleable: int AppCompatTheme_actionBarSize -james.adaptiveicon.R$dimen: int abc_button_inset_horizontal_material -androidx.appcompat.widget.Toolbar: void setTitleMarginStart(int) -okhttp3.internal.Util: java.lang.String inet6AddressToAscii(byte[]) -androidx.lifecycle.extensions.R$dimen: int notification_action_text_size -com.google.android.material.R$styleable: int MenuItem_android_onClick -cyanogenmod.providers.CMSettings$System: java.lang.String NAVBAR_LEFT_IN_LANDSCAPE -cyanogenmod.app.ICMStatusBarManager$Stub -io.reactivex.internal.schedulers.RxThreadFactory: java.lang.String toString() -com.github.rahatarmanahmed.cpv.CircularProgressView: int getThickness() -androidx.preference.R$layout: int abc_list_menu_item_icon -com.google.android.material.R$id: int mini -cyanogenmod.app.Profile: void setSecondaryUuids(java.util.List) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int IconCode -androidx.appcompat.widget.AppCompatSpinner -cyanogenmod.app.Profile$TriggerState: int ON_A2DP_CONNECT -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status valueOf(java.lang.String) -wangdaye.com.geometricweather.R$id: int clip_vertical -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_maxWidth -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -wangdaye.com.geometricweather.background.receiver.widget.WidgetDayProvider: WidgetDayProvider() -android.didikee.donate.R$string: R$string() -com.google.android.material.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findJvmPlatform() -retrofit2.http.Path: boolean encoded() -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Inverse -cyanogenmod.externalviews.ExternalViewProviderService$1$1 -okhttp3.internal.platform.Platform: java.lang.String toString() -io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onSubscribe -com.google.android.material.R$style: int Theme_MaterialComponents_Light_LargeTouch -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm10Desc() -okhttp3.Cache$1: void trackConditionalCacheHit() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Large -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner -com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_small_material -okhttp3.internal.http2.Http2Codec: void finishRequest() -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerComplete(int) -com.turingtechnologies.materialscrollbar.R$attr: int chipIcon -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FREEZING_RAIN -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context) -wangdaye.com.geometricweather.R$id: int widget_trend_hourly -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int isRainOrSnow -wangdaye.com.geometricweather.R$id: int item_about_library_content -com.google.android.material.R$id: int zero_corner_chip -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_title -wangdaye.com.geometricweather.R$attr: int circularRadius -androidx.preference.R$attr: int actionBarTheme -com.google.android.material.R$styleable: int AppCompatTheme_windowMinWidthMinor -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float co -com.google.android.material.tabs.TabLayout: void setUnboundedRippleResource(int) -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Tooltip -com.google.android.material.R$attr: int colorPrimaryVariant -wangdaye.com.geometricweather.R$drawable: int ic_briefing -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String weatherText -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -okio.RealBufferedSource: okio.Buffer buffer -com.google.android.material.slider.BaseSlider: float getValueOfTouchPositionAbsolute() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: int Severity -androidx.work.R$style: int TextAppearance_Compat_Notification_Info -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_disabled_holo_light -androidx.activity.R$drawable: int notification_bg_low_pressed -com.google.android.material.navigation.NavigationView: void setCheckedItem(android.view.MenuItem) -com.google.android.material.R$style: int TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.R$color: int cpv_default_color -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar -com.jaredrummler.android.colorpicker.R$styleable: int[] Toolbar -com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX() -okio.Okio$1: void write(okio.Buffer,long) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setO3Desc(java.lang.String) -okio.BufferedSource: void require(long) -okhttp3.Cache$Entry: okhttp3.Handshake handshake -androidx.appcompat.R$styleable: int[] AppCompatSeekBar -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchGenericMotionEvent(android.view.MotionEvent) -androidx.viewpager2.R$layout: int notification_template_part_chronometer -okio.RealBufferedSink: okio.Buffer buffer() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property O3 -retrofit2.ParameterHandler$HeaderMap: void apply(retrofit2.RequestBuilder,java.lang.Object) -androidx.constraintlayout.widget.R$drawable: int btn_checkbox_checked_mtrl -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType[] values() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconStartPadding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setZh_CN(java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_min -androidx.cardview.R$styleable -retrofit2.DefaultCallAdapterFactory$1: java.util.concurrent.Executor val$executor -wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_1 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalBias -com.google.android.material.chip.Chip: void setCloseIconResource(int) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowMinWidthMajor -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult -cyanogenmod.app.ThemeVersion: int CM12_PRE_VERSIONING -androidx.preference.R$id: int checkbox -okhttp3.OkHttpClient: int writeTimeout -okhttp3.Credentials: Credentials() -com.google.android.material.R$interpolator: int mtrl_linear -android.didikee.donate.R$drawable: int abc_btn_radio_material -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light -wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_icon -androidx.preference.R$style: int Widget_AppCompat_ListView_DropDown -androidx.preference.R$style: int Widget_AppCompat_Light_SearchView -android.didikee.donate.R$attr: int windowActionModeOverlay -cyanogenmod.app.Profile: cyanogenmod.profiles.AirplaneModeSettings getAirplaneMode() -io.reactivex.internal.subscribers.StrictSubscriber: StrictSubscriber(org.reactivestreams.Subscriber) -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit valueOf(java.lang.String) -cyanogenmod.util.ColorUtils: int findPerceptuallyNearestColor(int,int[]) -com.jaredrummler.android.colorpicker.R$attr: int actionBarSize -wangdaye.com.geometricweather.R$attr: int horizontalOffset -com.xw.repo.bubbleseekbar.R$attr: int multiChoiceItemLayout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWeatherEnd() -com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabText -com.google.android.material.R$attr: int startIconTint -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: int UnitType -wangdaye.com.geometricweather.R$id: int item_card_display_sortButton -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: CustomTileListenerService$ICustomTileListenerWrapper(cyanogenmod.app.CustomTileListenerService) -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType LoadAll -com.google.android.material.R$style: int Theme_MaterialComponents_Bridge -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode[] values() -androidx.constraintlayout.widget.R$id: int chain -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getRequiredWidth() -androidx.lifecycle.ViewModelStores: androidx.lifecycle.ViewModelStore of(androidx.fragment.app.Fragment) -cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationMin() -wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog -okio.RealBufferedSink: okio.BufferedSink writeLongLe(long) -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void lookupCity(cyanogenmod.weather.RequestInfo) -com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_Surface -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_constantSize -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Chip -com.turingtechnologies.materialscrollbar.R$attr: int iconStartPadding -cyanogenmod.weather.WeatherInfo: long access$1002(cyanogenmod.weather.WeatherInfo,long) -com.google.android.material.R$attr: int mock_labelBackgroundColor -okhttp3.Challenge: java.nio.charset.Charset charset() -androidx.legacy.coreutils.R$drawable: int notification_tile_bg -com.xw.repo.bubbleseekbar.R$attr: int showText -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: int status -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setOnPageSwipeListener(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout$OnPagerSwipeListener) -okhttp3.internal.http2.Http2Writer: void frameHeader(int,int,byte,byte) -androidx.hilt.lifecycle.R$drawable: int notification_bg_normal -com.google.android.material.R$styleable: int SearchView_layout -wangdaye.com.geometricweather.R$drawable: int weather_hail_pixel -cyanogenmod.power.PerformanceManagerInternal: void launchBoost() -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_search -com.google.android.material.chip.Chip: void setLayoutDirection(int) -okio.AsyncTimeout$2: okio.Source val$source -com.turingtechnologies.materialscrollbar.R$attr: int tickMarkTint -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_30 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedWidthMinor -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setSubState(int,boolean) -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: void run() -com.google.android.material.R$drawable: int abc_list_selector_disabled_holo_light -cyanogenmod.app.IProfileManager: boolean profileExists(android.os.ParcelUuid) -wangdaye.com.geometricweather.R$styleable: int MaterialButton_strokeColor -com.google.android.material.R$attr: int tabPadding -cyanogenmod.app.Profile: void setExpandedDesktopMode(int) -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_size_normal -retrofit2.ParameterHandler$Tag: java.lang.Class cls -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -okhttp3.HttpUrl: int hashCode() -james.adaptiveicon.R$styleable: int MenuItem_android_enabled -androidx.appcompat.R$attr: int closeItemLayout -com.xw.repo.bubbleseekbar.R$layout: int abc_activity_chooser_view_list_item -androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$dimen: int mtrl_fab_translation_z_pressed -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableStartCompat -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_content_inset_with_nav -androidx.appcompat.R$drawable: int abc_ic_menu_cut_mtrl_alpha -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -com.turingtechnologies.materialscrollbar.R$attr: int font -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorPrimaryDark -okhttp3.OkHttpClient: okhttp3.EventListener$Factory eventListenerFactory -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -com.google.android.material.R$id: int textinput_counter -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getAbbreviation(android.content.Context) -okhttp3.internal.http1.Http1Codec$FixedLengthSink: void flush() -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$style: int Platform_AppCompat_Light -androidx.appcompat.R$styleable: int ActionBar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris ephemeris -androidx.appcompat.resources.R$style: int Widget_Compat_NotificationActionText -wangdaye.com.geometricweather.R$id: int mtrl_calendar_main_pane -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onAttach_0 -okhttp3.Dispatcher: Dispatcher() -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: CallEnqueueObservable$CallCallback(retrofit2.Call,io.reactivex.Observer) -wangdaye.com.geometricweather.R$styleable: int[] AppCompatTheme -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableLeft -androidx.work.impl.background.systemalarm.ConstraintProxy: ConstraintProxy() -androidx.legacy.coreutils.R$dimen: int notification_right_side_padding_top -com.google.android.material.datepicker.DateSelector -okio.Pipe$PipeSink: void write(okio.Buffer,long) -okhttp3.internal.http.RealInterceptorChain: okhttp3.Call call() -androidx.appcompat.resources.R$id: R$id() -androidx.appcompat.view.menu.ExpandedMenuView -androidx.appcompat.R$attr: int contentInsetLeft -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: java.lang.String Unit -james.adaptiveicon.R$styleable: int CompoundButton_buttonTintMode -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum Minimum -wangdaye.com.geometricweather.R$drawable: int notif_temp_79 -cyanogenmod.themes.IThemeProcessingListener$Stub: android.os.IBinder asBinder() -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback(retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter,java.util.concurrent.CompletableFuture) -com.turingtechnologies.materialscrollbar.R$attr: int maxActionInlineWidth -com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_RadioButton -com.google.android.material.R$attr: int themeLineHeight -androidx.viewpager.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$attr: int expanded -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -androidx.loader.R$styleable: int GradientColor_android_endX -cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mDeleteIntent -cyanogenmod.app.CustomTileListenerService$1 -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginEnd -androidx.fragment.R$id -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Time -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode HTTP_1_1_REQUIRED -androidx.constraintlayout.widget.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.R$styleable: int[] ViewBackgroundHelper -retrofit2.RequestFactory -cyanogenmod.externalviews.KeyguardExternalView: void unregisterOnWindowAttachmentChangedListener(cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener) -wangdaye.com.geometricweather.R$attr: int buttonPanelSideLayout -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeErrorColor -android.didikee.donate.R$attr: int actionModeWebSearchDrawable -androidx.appcompat.widget.SearchView: void setQueryHint(java.lang.CharSequence) -androidx.viewpager.R$id: int actions -cyanogenmod.app.ProfileGroup: void setRingerMode(cyanogenmod.app.ProfileGroup$Mode) -com.google.android.material.R$style: int Widget_Design_BottomSheet_Modal -okhttp3.internal.http2.Http2: java.lang.IllegalArgumentException illegalArgument(java.lang.String,java.lang.Object[]) -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Info -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: void setSpeed(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX) -okhttp3.ConnectionSpec: boolean isCompatible(javax.net.ssl.SSLSocket) -androidx.lifecycle.ViewModelProvider$NewInstanceFactory -com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_tooltipForegroundColor -com.google.android.material.R$styleable: int AppCompatTheme_windowMinWidthMajor -androidx.preference.R$styleable: int AppCompatTheme_android_windowIsFloating -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_115 -io.reactivex.internal.subscriptions.SubscriptionHelper: void reportMoreProduced(long) -androidx.appcompat.R$attr: int actionBarItemBackground -androidx.appcompat.R$styleable: int AppCompatTheme_buttonStyle -okhttp3.internal.ws.RealWebSocket: void onReadMessage(okio.ByteString) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1 -wangdaye.com.geometricweather.R$bool: int abc_allow_stacked_button_bar -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean notificationGroupExistsByName(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int[] MaterialAlertDialogTheme -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationY -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_query -com.google.android.material.R$styleable: int MaterialButton_cornerRadius -com.jaredrummler.android.colorpicker.R$id: int search_voice_btn -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean isDisposed() -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void settings(boolean,okhttp3.internal.http2.Settings) -com.google.android.material.checkbox.MaterialCheckBox -com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_square -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontStyle -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressCircleDiameter() -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable -com.xw.repo.bubbleseekbar.R$layout: int select_dialog_multichoice_material -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextBackground -james.adaptiveicon.R$styleable: int AppCompatTheme_seekBarStyle -androidx.fragment.R$id: int right_icon -cyanogenmod.power.IPerformanceManager$Stub$Proxy -androidx.lifecycle.Lifecycle$State -android.didikee.donate.R$styleable: int ViewStubCompat_android_layout -androidx.appcompat.widget.AppCompatEditText: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -androidx.constraintlayout.widget.R$drawable: int abc_seekbar_track_material -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginRight -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit CM -cyanogenmod.app.Profile: java.util.ArrayList mSecondaryUuids -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean getHumidity() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial Imperial -wangdaye.com.geometricweather.R$styleable: int Constraint_pivotAnchor -com.google.android.material.R$string: int material_timepicker_pm -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: boolean unsupported -cyanogenmod.power.IPerformanceManager$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.R$drawable: int notification_tile_bg -androidx.dynamicanimation.R$dimen: int notification_content_margin_start -android.didikee.donate.R$styleable: int ActionBar_height -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Longitude -androidx.constraintlayout.helper.widget.Flow: void setOrientation(int) -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircleRadius -androidx.appcompat.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -com.jaredrummler.android.colorpicker.R$integer: int config_tooltipAnimTime -wangdaye.com.geometricweather.R$attr: int flow_firstVerticalBias -androidx.constraintlayout.widget.R$attr: int contentInsetStart -okhttp3.internal.http2.Http2Connection: void pushResetLater(int,okhttp3.internal.http2.ErrorCode) -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event[] values() -com.google.gson.stream.JsonReader: java.lang.String nextName() -androidx.lifecycle.extensions.R$dimen: int compat_notification_large_icon_max_width -androidx.constraintlayout.widget.R$styleable: int Transition_layoutDuringTransition -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) -james.adaptiveicon.R$style: int Animation_AppCompat_Dialog -androidx.appcompat.view.menu.ListMenuItemView: void setCheckable(boolean) -com.google.android.material.R$attr: int actionModePasteDrawable -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerColor -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircle -okhttp3.Response: okhttp3.Request request -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_cancelOngoingRequests -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks access$700(cyanogenmod.externalviews.KeyguardExternalView) -wangdaye.com.geometricweather.R$id: int mtrl_calendar_months -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Chip -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean Summary -okhttp3.internal.publicsuffix.PublicSuffixDatabase: PublicSuffixDatabase() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: AlertEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -androidx.preference.R$id: int custom -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeRealFeelTemperature -com.google.android.material.R$styleable: int CustomAttribute_customIntegerValue -cyanogenmod.app.StatusBarPanelCustomTile: android.os.UserHandle user -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: int UnitType -wangdaye.com.geometricweather.R$style: int Base_AlertDialog_AppCompat -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Medium -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_visible -androidx.loader.R$dimen: R$dimen() -cyanogenmod.profiles.BrightnessSettings: void writeToParcel(android.os.Parcel,int) -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -io.reactivex.internal.disposables.DisposableHelper: boolean isDisposed() -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: java.lang.String getNotificationTextColorName(android.content.Context) -androidx.lifecycle.ProcessLifecycleOwnerInitializer: ProcessLifecycleOwnerInitializer() -androidx.appcompat.app.ToolbarActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicReference upstream -james.adaptiveicon.R$drawable: int abc_btn_check_to_on_mtrl_000 -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: ObservableMergeWithMaybe$MergeWithObserver(io.reactivex.Observer) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: double Value -dagger.hilt.android.internal.managers.ActivityRetainedComponentManager$ActivityRetainedComponentViewModel -com.google.android.material.R$id: int flip -cyanogenmod.app.ProfileManager: void resetAll() -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnClickListener(android.view.View$OnClickListener) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -com.google.gson.stream.JsonReader: int PEEKED_NULL -wangdaye.com.geometricweather.R$attr: int bsb_show_section_mark -com.jaredrummler.android.colorpicker.R$id: int bottom -androidx.constraintlayout.widget.R$styleable: int[] FontFamilyFont -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_RadioButton -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Caption -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.ObservableSource[],io.reactivex.functions.Function) -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void removeCustomTileFromListener(cyanogenmod.app.ICustomTileListener,java.lang.String,java.lang.String,int) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_minHeight -wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragDirection -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Inverse -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String IconPhrase -cyanogenmod.weatherservice.WeatherProviderService$1 -wangdaye.com.geometricweather.R$color: int design_default_color_secondary -okhttp3.internal.ws.WebSocketProtocol -wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light -com.bumptech.glide.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: java.lang.String Unit -androidx.constraintlayout.widget.R$attr: int windowActionModeOverlay -james.adaptiveicon.R$style: int Widget_AppCompat_ListView -james.adaptiveicon.R$styleable: int SwitchCompat_android_textOn -wangdaye.com.geometricweather.R$attr: int lineSpacing -androidx.constraintlayout.widget.R$attr: int onHide -com.xw.repo.bubbleseekbar.R$attr: int actionModePasteDrawable -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor -com.jaredrummler.android.colorpicker.R$styleable: int[] ActivityChooserView -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_LOW_COLOR_VALIDATOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setStatus(int) -androidx.preference.R$attr: int textAppearancePopupMenuHeader -com.jaredrummler.android.colorpicker.R$color: int primary_dark_material_light -com.google.android.material.R$xml: int standalone_badge_gravity_bottom_start -com.google.android.material.chip.Chip: void setIconStartPadding(float) -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabGravity -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -androidx.transition.R$integer -androidx.viewpager2.R$id: int accessibility_custom_action_29 -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String insee -com.xw.repo.bubbleseekbar.R$color -com.google.android.material.appbar.AppBarLayout$BaseBehavior$SavedState -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf -okio.ByteString: okio.ByteString read(java.io.InputStream,int) -com.google.android.material.R$styleable: int KeyTimeCycle_motionTarget -com.google.android.material.R$attr: int colorError -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_closeItemLayout -androidx.appcompat.widget.SwitchCompat: android.graphics.drawable.Drawable getThumbDrawable() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLBTN_MUSIC_CONTROLS_VALIDATOR -cyanogenmod.profiles.RingModeSettings: void setOverride(boolean) -androidx.fragment.R$id: int accessibility_custom_action_22 -androidx.cardview.R$dimen: int cardview_default_elevation -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_switchTextOn -okhttp3.Response: okhttp3.Response cacheResponse -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.ObservableSource source -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_transformation_sheet_expand_spec -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit valueOf(java.lang.String) -cyanogenmod.externalviews.ExternalViewProviderService$1$1: ExternalViewProviderService$1$1(cyanogenmod.externalviews.ExternalViewProviderService$1,android.os.Bundle) -com.google.android.material.R$animator: int mtrl_extended_fab_change_size_expand_motion_spec -android.didikee.donate.R$style: int TextAppearance_AppCompat_Body1 -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_3 -cyanogenmod.app.StatusBarPanelCustomTile$1 -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode RAIN -wangdaye.com.geometricweather.R$attr: int verticalOffset -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_longpressed_holo -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CUSTOM_ENABLE -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_MULTIPLE_LEDS_ENABLE -com.google.android.material.R$id: int navigation_header_container -com.google.android.material.R$drawable: int abc_btn_radio_material -androidx.viewpager.R$styleable: int GradientColorItem_android_offset -com.google.android.material.button.MaterialButton: int getCornerRadius() -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mPostal -androidx.preference.R$drawable: int notification_template_icon_bg -cyanogenmod.profiles.BrightnessSettings: void setValue(int) -androidx.core.R$integer: int status_bar_notification_info_maxnum -com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_layout -wangdaye.com.geometricweather.R$style: int widget_progress -androidx.viewpager2.R$id: int title -retrofit2.Response: retrofit2.Response success(java.lang.Object) -okhttp3.Response: okhttp3.Response networkResponse -com.jaredrummler.android.colorpicker.R$string: int abc_shareactionprovider_share_with -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: long serialVersionUID -james.adaptiveicon.R$styleable: int AppCompatTheme_editTextColor -androidx.drawerlayout.R$styleable: int GradientColor_android_startX -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: int getWindowFlags() -cyanogenmod.app.Profile: java.util.Map networkConnectionSubIds -okhttp3.internal.http2.Http2Codec: void cancel() -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_unregisterCallback -com.google.android.material.chip.Chip: void setChipTextResource(int) -com.xw.repo.bubbleseekbar.R$id: int search_bar -androidx.transition.R$styleable: int[] FontFamily -androidx.hilt.R$id: int normal -com.google.android.material.R$styleable: int SearchView_suggestionRowLayout -cyanogenmod.providers.CMSettings$System$3: CMSettings$System$3() -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_trackTint -com.google.android.material.R$styleable: int BottomNavigationView_backgroundTint -com.google.android.material.R$dimen: int mtrl_snackbar_message_margin_horizontal -cyanogenmod.app.CMContextConstants$Features: java.lang.String PARTNER -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String feelslike_c -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: FlowableOnBackpressureLatest$BackpressureLatestSubscriber(org.reactivestreams.Subscriber) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeStyle -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_default -android.support.v4.os.IResultReceiver$Stub: android.support.v4.os.IResultReceiver asInterface(android.os.IBinder) -cyanogenmod.app.Profile: boolean mStatusBarIndicator -com.xw.repo.bubbleseekbar.R$string: int abc_action_menu_overflow_description -wangdaye.com.geometricweather.R$attr: int textAppearanceLargePopupMenu -androidx.appcompat.R$attr: int titleTextColor -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_altSrc -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_dividerPadding -cyanogenmod.weather.IRequestInfoListener$Stub: cyanogenmod.weather.IRequestInfoListener asInterface(android.os.IBinder) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean -com.google.android.material.R$styleable: int Constraint_layout_constraintDimensionRatio -com.turingtechnologies.materialscrollbar.R$attr: int autoSizeMaxTextSize -james.adaptiveicon.R$drawable: int tooltip_frame_light -com.google.android.material.R$attr: int statusBarScrim -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf -okhttp3.EventListener: void requestHeadersEnd(okhttp3.Call,okhttp3.Request) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService this$0 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX) -com.google.android.material.R$styleable: int ActionBar_title -com.google.gson.stream.JsonToken: JsonToken(java.lang.String,int) -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type ownerType -cyanogenmod.hardware.CMHardwareManager: int FEATURE_UNIQUE_DEVICE_ID -com.bumptech.glide.request.RequestCoordinator$RequestState: boolean isComplete -androidx.preference.R$drawable: int abc_seekbar_thumb_material -wangdaye.com.geometricweather.R$styleable: int Motion_animate_relativeTo -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cps -okhttp3.CookieJar -com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -androidx.constraintlayout.widget.R$styleable: int MotionLayout_motionProgress -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric() -android.didikee.donate.R$styleable: int TextAppearance_android_shadowDy -com.google.android.material.R$styleable: int AppCompatTheme_colorControlActivated -androidx.appcompat.widget.AppCompatCheckBox: void setButtonDrawable(int) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_25 -cyanogenmod.weather.RequestInfo: boolean mIsQueryOnly -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void dispose() -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: long time -androidx.preference.R$styleable: int GradientColor_android_endX -james.adaptiveicon.R$string: int abc_shareactionprovider_share_with_application -com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimAlpha(int) -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_action_text_color_alpha -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getWeek(android.content.Context) -androidx.appcompat.widget.AppCompatImageView: void setImageDrawable(android.graphics.drawable.Drawable) -androidx.preference.R$styleable: int PreferenceTheme_dropdownPreferenceStyle -com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingLeft() -okhttp3.internal.connection.RealConnection: java.util.List allocations -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindContainer -io.reactivex.Observable: io.reactivex.Observable map(io.reactivex.functions.Function) -cyanogenmod.providers.CMSettings$DiscreteValueValidator: CMSettings$DiscreteValueValidator(java.lang.String[]) -androidx.legacy.coreutils.R$id: int icon_group -wangdaye.com.geometricweather.R$string: int content_des_no_precipitation -androidx.core.widget.NestedScrollView$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$drawable: int ic_temperature_fahrenheit -okio.RealBufferedSource: boolean rangeEquals(long,okio.ByteString,int,int) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void run() -wangdaye.com.geometricweather.R$style: int notification_large_title_text -androidx.loader.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_20 -okhttp3.internal.Version: Version() -com.google.android.material.R$style: int Widget_MaterialComponents_Light_ActionBar_Solid -androidx.appcompat.widget.AppCompatTextView: int getAutoSizeStepGranularity() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric Metric -androidx.constraintlayout.widget.R$attr: int selectableItemBackgroundBorderless -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode[] $VALUES -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: ExternalViewProviderService$Provider$ProviderImpl$5(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.R$attr: int customColorValue -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property China -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: BaiduIPLocationResult$ContentBean$AddressDetailBean() -com.turingtechnologies.materialscrollbar.R$color: int abc_hint_foreground_material_light -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_container -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Small -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.functions.BiPredicate predicate -okhttp3.internal.http2.Http2Codec: okhttp3.internal.connection.StreamAllocation streamAllocation -wangdaye.com.geometricweather.R$animator: int weather_fog_1 -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItemSecondary -cyanogenmod.app.IPartnerInterface$Stub: android.os.IBinder asBinder() -io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,boolean) -cyanogenmod.app.Profile$1: java.lang.Object createFromParcel(android.os.Parcel) -okhttp3.HttpUrl: java.net.URL url() -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_imeOptions -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: RequestBuilder$ContentTypeOverridingRequestBody(okhttp3.RequestBody,okhttp3.MediaType) -com.xw.repo.bubbleseekbar.R$color: int button_material_light -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: void clear() -okio.Buffer$1: okio.Buffer this$0 -cyanogenmod.providers.CMSettings$Secure: java.lang.String WEATHER_PROVIDER_SERVICE -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onAttach(android.os.IBinder) -android.didikee.donate.R$styleable: int TextAppearance_android_fontFamily -okhttp3.Cache$1: Cache$1(okhttp3.Cache) -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_entries -okhttp3.CacheControl: boolean onlyIfCached -androidx.appcompat.R$attr: int actionBarSize -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitleTextAppearance -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SLEET -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.R$attr: int fontVariationSettings -com.google.android.material.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getIce() -okhttp3.Cache$1: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) -okhttp3.internal.http2.Http2Connection: boolean client -wangdaye.com.geometricweather.R$styleable: int[] RadialViewGroup -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeRealFeelShaderTemperature() -androidx.appcompat.widget.LinearLayoutCompat: void setBaselineAlignedChildIndex(int) -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSearchResultTitle -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_2 -androidx.preference.R$styleable: int ViewStubCompat_android_inflatedId -cyanogenmod.util.ColorUtils: ColorUtils() -okhttp3.internal.ws.RealWebSocket: long MAX_QUEUE_SIZE -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Body2 -retrofit2.RequestFactory$Builder -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTextPadding -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_FORWARD_LOOKUP_VALIDATOR -androidx.fragment.R$layout: int notification_template_icon_group -okio.Timeout -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicLong index -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String unitId -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed -com.jaredrummler.android.colorpicker.R$attr: int actionBarTheme -james.adaptiveicon.R$styleable: int TextAppearance_android_textStyle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onLockscreenSlideOffsetChanged(float) -com.google.android.material.R$styleable: int MenuItem_iconTint -james.adaptiveicon.R$styleable: int[] LinearLayoutCompat -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconTint -okio.Utf8 -androidx.appcompat.widget.AppCompatSpinner$SavedState: android.os.Parcelable$Creator CREATOR -okhttp3.HttpUrl$Builder: java.lang.String toString() -io.reactivex.Observable: void blockingSubscribe() -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_right -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean isDisposed() -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getTreeIndex() -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class,androidx.lifecycle.SavedStateHandle) -okhttp3.internal.http2.Header: okio.ByteString RESPONSE_STATUS -wangdaye.com.geometricweather.R$string: int wind_7 -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.internal.util.AtomicThrowable error -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: void setTo(java.lang.String) -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getSubtitle() -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onComplete() -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontStyle -cyanogenmod.app.BaseLiveLockManagerService$1: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_1 -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.Observer downstream -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_behavior -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object SYNC_DISPOSED -james.adaptiveicon.R$drawable: int abc_popup_background_mtrl_mult -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: int UnitType -com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_pressed -okhttp3.Address: java.util.List connectionSpecs -androidx.transition.R$id: int title -okhttp3.internal.ws.WebSocketReader: long frameLength -androidx.appcompat.widget.AppCompatRadioButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -android.support.v4.os.IResultReceiver$Stub$Proxy: android.os.IBinder mRemote -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_chainStyle -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void windowUpdate(int,long) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle -cyanogenmod.externalviews.KeyguardExternalView: android.content.ServiceConnection access$500(cyanogenmod.externalviews.KeyguardExternalView) -cyanogenmod.providers.CMSettings$Global: boolean putFloat(android.content.ContentResolver,java.lang.String,float) -wangdaye.com.geometricweather.R$styleable: int ActionBar_titleTextStyle -okhttp3.internal.cache.DiskLruCache: java.io.File journalFileBackup -androidx.viewpager2.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.R$id: int easeInOut -androidx.hilt.work.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.R$styleable: int[] AppCompatSeekBar -com.turingtechnologies.materialscrollbar.R$attr: int msb_handleOffColor -com.google.android.material.R$dimen: int mtrl_btn_z -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: long serialVersionUID -androidx.hilt.work.R$id: int notification_background -james.adaptiveicon.R$color: int abc_primary_text_material_dark -retrofit2.RequestBuilder: void setBody(okhttp3.RequestBody) -com.google.android.material.R$styleable: int[] LinearLayoutCompat -androidx.loader.app.LoaderManagerImpl$LoaderViewModel -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorGravity -androidx.preference.R$attr: int collapseIcon -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max -io.reactivex.Observable: io.reactivex.Single contains(java.lang.Object) -james.adaptiveicon.R$id: int image -wangdaye.com.geometricweather.R$string: int tag_wind -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_DropDown -com.turingtechnologies.materialscrollbar.R$drawable: int notification_action_background -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: void setHistogramAlpha(float) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_tooltipText -wangdaye.com.geometricweather.R$attr: int layout_insetEdge -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatElevation(float) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf -androidx.preference.R$styleable: int PreferenceTheme_dialogPreferenceStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_cornerSize -wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_android_textAppearance -okhttp3.internal.http2.Http2Stream: void waitForIo() -wangdaye.com.geometricweather.R$styleable: int Layout_layout_editor_absoluteY -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleTextColor -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_inputType -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_ab_back_material -okhttp3.OkHttpClient$Builder: okhttp3.internal.cache.InternalCache internalCache -androidx.cardview.R$styleable: int CardView_cardElevation -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Time -okhttp3.RequestBody: long contentLength() -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_cut_mtrl_alpha -cyanogenmod.app.CustomTile$ExpandedGridItem: CustomTile$ExpandedGridItem() -cyanogenmod.app.Profile$ProfileTrigger$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: java.util.concurrent.atomic.AtomicInteger active -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum -com.turingtechnologies.materialscrollbar.R$attr: int hintAnimationEnabled -wangdaye.com.geometricweather.R$attr: int iconifiedByDefault -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_16dp -io.reactivex.Observable: io.reactivex.Observable takeUntil(io.reactivex.ObservableSource) -androidx.loader.R$integer -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getO3() -wangdaye.com.geometricweather.R$id: int submenuarrow -james.adaptiveicon.R$drawable: int abc_seekbar_thumb_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setIndices(java.util.List) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupWindow -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemPaddingRight -okhttp3.internal.http2.Http2Reader$ContinuationSource: void readContinuationHeader() -com.turingtechnologies.materialscrollbar.R$attr: int titleMarginEnd -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_reverseLayout -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: android.os.IBinder mRemote -james.adaptiveicon.R$color: int material_grey_50 -cyanogenmod.app.ProfileManager: void updateNotificationGroup(android.app.NotificationGroup) -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: long produced -wangdaye.com.geometricweather.R$id: int container_main_details -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: int Level -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: int status -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_hovered_z -androidx.viewpager2.widget.ViewPager2: java.lang.CharSequence getAccessibilityClassName() -wangdaye.com.geometricweather.R$layout: int abc_cascading_menu_item_layout -wangdaye.com.geometricweather.R$string: int ice -wangdaye.com.geometricweather.R$id: int edit_query -androidx.appcompat.R$dimen: int abc_button_padding_horizontal_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer gust -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -com.jaredrummler.android.colorpicker.R$layout: int abc_action_mode_close_item_material -com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: void setInternalAutoHideListener(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) -okhttp3.internal.ws.RealWebSocket: boolean close(int,java.lang.String,long) -com.google.android.material.R$attr: int materialCalendarFullscreenTheme -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: AccuCurrentResult$ApparentTemperature() -wangdaye.com.geometricweather.R$transition -androidx.fragment.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeWetBulbTemperature -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -okio.DeflaterSink: void flush() -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onNext(retrofit2.Response) -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCutDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric Metric -okhttp3.internal.cache2.Relay: void commit(long) -wangdaye.com.geometricweather.R$id: int mtrl_picker_header_title_and_selection -androidx.fragment.app.Fragment: void setOnStartEnterTransitionListener(androidx.fragment.app.Fragment$OnStartEnterTransitionListener) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getZh_CN() -com.google.android.material.R$styleable: int Transition_layoutDuringTransition -com.google.gson.FieldNamingPolicy$5 -okhttp3.internal.platform.OptionalMethod: boolean isSupported(java.lang.Object) -okhttp3.internal.http2.Hpack$Reader: okio.BufferedSource source -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List dailyForecast -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: MfForecastResult$DailyForecast$Sun() -wangdaye.com.geometricweather.R$drawable: int ic_eye -wangdaye.com.geometricweather.R$styleable: int Toolbar_navigationIcon -com.google.android.material.R$dimen: int mtrl_calendar_title_baseline_to_top_fullscreen -io.reactivex.observers.TestObserver$EmptyObserver: void onComplete() -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$string: int settings_summary_service_provider -androidx.constraintlayout.widget.R$styleable: int[] AppCompatImageView -com.google.android.material.R$drawable: int abc_seekbar_thumb_material -wangdaye.com.geometricweather.R$attr: int actionModeStyle -com.turingtechnologies.materialscrollbar.R$id: int search_go_btn -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating Heating -androidx.hilt.work.R$id: int accessibility_custom_action_13 -cyanogenmod.weather.CMWeatherManager: CMWeatherManager(android.content.Context) -androidx.appcompat.resources.R$id: int right_side -androidx.coordinatorlayout.widget.CoordinatorLayout: int getNestedScrollAxes() -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onTimeout(long) -wangdaye.com.geometricweather.R$attr: int cardCornerRadius -com.turingtechnologies.materialscrollbar.R$id: int notification_main_column_container -com.google.android.material.R$styleable: int BottomAppBar_fabCradleMargin -com.jaredrummler.android.colorpicker.R$attr: int buttonStyleSmall -com.google.android.material.R$style: int Base_Widget_AppCompat_ProgressBar -androidx.recyclerview.R$dimen: int notification_big_circle_margin -com.xw.repo.bubbleseekbar.R$attr: int voiceIcon -com.xw.repo.bubbleseekbar.R$dimen: int abc_cascading_menus_min_smallest_width -androidx.preference.R$color: int abc_search_url_text_normal -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginTop -okhttp3.internal.connection.RouteSelector: RouteSelector(okhttp3.Address,okhttp3.internal.connection.RouteDatabase,okhttp3.Call,okhttp3.EventListener) -com.xw.repo.bubbleseekbar.R$color: int abc_secondary_text_material_light -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig dailyEntityDaoConfig -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_CONDITION -wangdaye.com.geometricweather.R$string: int abc_search_hint -io.reactivex.Observable: io.reactivex.Observable interval(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onNext(java.lang.Object) -com.google.android.material.R$color: int design_dark_default_color_on_surface -okhttp3.internal.cache.InternalCache: void remove(okhttp3.Request) -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_statusBarBackground -james.adaptiveicon.R$attr: int colorControlHighlight -androidx.preference.R$styleable: int AppCompatTheme_buttonStyleSmall -okio.BufferedSource: int select(okio.Options) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial() -com.google.android.material.R$styleable: int KeyCycle_android_scaleY -wangdaye.com.geometricweather.R$id: int search_src_text -androidx.appcompat.R$id: int scrollIndicatorDown -org.greenrobot.greendao.AbstractDaoSession: java.util.List loadAll(java.lang.Class) -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: ObservableSequenceEqualSingle$EqualCoordinator(io.reactivex.SingleObserver,int,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) -androidx.preference.R$attr: int alpha -retrofit2.http.POST -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginEnd -okhttp3.Cache$CacheResponseBody -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getDegreeDayTemperature() -com.google.android.material.R$color: int background_floating_material_light -com.turingtechnologies.materialscrollbar.R$id: R$id() -androidx.preference.R$styleable: int TextAppearance_fontFamily -android.didikee.donate.R$id: int homeAsUp -cyanogenmod.weather.IRequestInfoListener$Stub: android.os.IBinder asBinder() -cyanogenmod.app.Profile: java.util.Map connections -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: int UnitType -androidx.recyclerview.R$id: int chronometer -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getDaytimeWindDegree() -androidx.constraintlayout.widget.ConstraintHelper -okio.RealBufferedSink: okio.BufferedSink writeByte(int) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver) -com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_internal_bg -androidx.constraintlayout.widget.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -androidx.constraintlayout.widget.R$id: int off -retrofit2.KotlinExtensions$awaitResponse$2$2 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts -com.turingtechnologies.materialscrollbar.R$styleable: int FlowLayout_lineSpacing -okhttp3.internal.http1.Http1Codec$AbstractSource -wangdaye.com.geometricweather.R$attr: int actionOverflowMenuStyle -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_AES_128_CBC_SHA -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analog_light -io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper CANCELLED -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: java.lang.String Unit -okhttp3.internal.platform.Platform: Platform() -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortTemperature(android.content.Context,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -cyanogenmod.library.R$styleable: int LiveLockScreen_settingsActivity -androidx.preference.R$styleable: int[] ActionBar -androidx.preference.R$color: int secondary_text_default_material_dark -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeApparentTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$attr: int badgeGravity -com.google.android.material.R$layout: int mtrl_picker_header_title_text -cyanogenmod.platform.R$bool: R$bool() -wangdaye.com.geometricweather.R$mipmap: R$mipmap() -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_STOP -android.didikee.donate.R$attr: int commitIcon -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource access$000(wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource) -com.google.android.material.R$styleable: int ConstraintSet_android_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfPrecipitation -wangdaye.com.geometricweather.R$id: int guideline -okhttp3.internal.proxy.NullProxySelector -androidx.preference.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.R$layout: int item_aqi -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval[] values() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: ObservableSampleWithObservable$SampleMainEmitLast(io.reactivex.Observer,io.reactivex.ObservableSource) -james.adaptiveicon.R$drawable: int abc_ic_star_half_black_48dp -androidx.drawerlayout.R$styleable: R$styleable() -androidx.activity.R$dimen: int compat_button_inset_horizontal_material -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: ObservableSequenceEqual$EqualCoordinator(io.reactivex.Observer,int,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) -androidx.loader.R$layout -cyanogenmod.app.ThemeVersion$ComponentVersion: int getCurrentVersion() -androidx.hilt.lifecycle.R$id: int tag_unhandled_key_listeners -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogStyle -com.google.android.material.R$styleable: int AppCompatTheme_colorPrimaryDark -androidx.core.R$style: int TextAppearance_Compat_Notification_Info -androidx.preference.R$attr: int showAsAction -com.google.android.material.R$styleable: int Layout_layout_constraintEnd_toStartOf -com.google.android.material.R$dimen: int notification_right_side_padding_top -androidx.preference.R$id: int up -com.google.android.material.R$attr: int tabIndicatorAnimationDuration -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_SECURE -wangdaye.com.geometricweather.R$styleable: int NavigationView_android_background -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowColor -com.google.android.material.behavior.SwipeDismissBehavior: void setListener(com.google.android.material.behavior.SwipeDismissBehavior$OnDismissListener) -com.jaredrummler.android.colorpicker.R$attr: int windowActionBarOverlay -james.adaptiveicon.R$styleable: int[] AppCompatTextView -wangdaye.com.geometricweather.R$string: int allergen -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_NoActionBar -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_onAttachedToWindow -androidx.loader.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String description -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_showMotionSpec -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Borderless_Colored -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onPositiveCross -com.turingtechnologies.materialscrollbar.R$attr: int selectableItemBackground -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CUSTOM_ENABLE_VALIDATOR -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_THUNDERSTORMS -com.google.android.material.R$styleable: int Slider_haloRadius -androidx.preference.R$dimen: int abc_list_item_height_material -wangdaye.com.geometricweather.R$id: int bounce -androidx.fragment.app.FragmentTabHost$SavedState -android.didikee.donate.R$style: int Base_DialogWindowTitle_AppCompat -com.google.android.material.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -com.google.android.material.textfield.TextInputLayout: void setStartIconContentDescription(java.lang.CharSequence) -io.reactivex.Observable: void blockingSubscribe(io.reactivex.Observer) -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_disabled_holo_light -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onComplete() -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setDisplayState(boolean) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionMenuTextAppearance -androidx.coordinatorlayout.R$dimen: int notification_media_narrow_margin -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCutDrawable -com.google.android.material.textfield.TextInputLayout: void setStartIconCheckable(boolean) -okhttp3.internal.http1.Http1Codec: void finishRequest() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_14 -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver -android.didikee.donate.R$string: int abc_action_bar_home_description -wangdaye.com.geometricweather.R$styleable: int[] Slider -androidx.constraintlayout.widget.R$color: int bright_foreground_inverse_material_dark -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_ASSIST_LONG_PRESS_ACTION_VALIDATOR -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_backgroundTint -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_id -androidx.hilt.work.R$dimen: int notification_action_icon_size -cyanogenmod.profiles.AirplaneModeSettings: boolean isDirty() -com.google.android.material.R$color: int material_on_primary_emphasis_high_type -wangdaye.com.geometricweather.R$attr: int textAppearanceBody1 -com.xw.repo.bubbleseekbar.R$attr: int buttonTintMode -cyanogenmod.providers.CMSettings$System: java.lang.String getString(android.content.ContentResolver,java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeDegreeDayTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$color: int colorTextContent_dark -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_vertical_padding -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldLevel -okhttp3.internal.http2.Http2Connection$6: Http2Connection$6(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okio.Buffer,int,boolean) -cyanogenmod.providers.CMSettings$System: java.lang.String REVERSE_LOOKUP_PROVIDER -androidx.lifecycle.ClassesInfoCache$MethodReference: java.lang.reflect.Method mMethod -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -okhttp3.Response$Builder: okhttp3.Response$Builder code(int) -com.bumptech.glide.Registry$MissingComponentException: Registry$MissingComponentException(java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonTintMode -com.google.android.material.R$styleable: int MenuItem_android_visible -android.didikee.donate.R$id: int search_close_btn -androidx.lifecycle.LifecycleRegistry: void setCurrentState(androidx.lifecycle.Lifecycle$State) -com.google.android.material.R$id: int list_item -androidx.dynamicanimation.R$dimen -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitationProbability -android.didikee.donate.R$drawable: int notify_panel_notification_icon_bg -james.adaptiveicon.R$styleable: int RecycleListView_paddingTopNoTitle -androidx.vectordrawable.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_icon -androidx.constraintlayout.widget.R$attr: int actionBarTheme -retrofit2.Invocation: retrofit2.Invocation of(java.lang.reflect.Method,java.util.List) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout_PrimarySurface -androidx.preference.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.AlertEntityDao alertEntityDao -com.turingtechnologies.materialscrollbar.R$attr: int layout_anchor -androidx.appcompat.widget.AppCompatImageButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$color: int material_deep_teal_500 -io.reactivex.internal.queue.SpscArrayQueue: boolean offer(java.lang.Object,java.lang.Object) -androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_defaultQueryHint -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust WindGust -okhttp3.internal.connection.RouteDatabase: java.util.Set failedRoutes -wangdaye.com.geometricweather.R$animator: int weather_cloudy_2 -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_anim_duration -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer snowHazard6h -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableBottomCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: void setDefenseText(java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int titleMarginEnd -wangdaye.com.geometricweather.R$id: int notification_big_temp_5 -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap -okhttp3.internal.http2.Hpack$Writer: Hpack$Writer(int,boolean,okio.Buffer) -com.turingtechnologies.materialscrollbar.R$style: int Widget_Support_CoordinatorLayout -okio.AsyncTimeout: void scheduleTimeout(okio.AsyncTimeout,long,boolean) -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_visible -androidx.viewpager.widget.PagerTitleStrip -com.bumptech.glide.R$id: int blocking -androidx.vectordrawable.R$attr: int fontStyle -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver otherObserver -com.google.android.material.R$dimen: int material_clock_period_toggle_margin_left -androidx.hilt.work.R$styleable: int FragmentContainerView_android_tag -androidx.vectordrawable.R$layout -androidx.customview.view.AbsSavedState$1 -wangdaye.com.geometricweather.R$styleable: int[] MaterialAlertDialog -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_gravity -com.turingtechnologies.materialscrollbar.R$attr: int background -wangdaye.com.geometricweather.R$color: int lightPrimary_2 -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_splitTrack -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitation -androidx.constraintlayout.widget.R$attr: int iconTint -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.R$dimen: int cpv_item_horizontal_padding -retrofit2.ParameterHandler$QueryMap: retrofit2.Converter valueConverter -androidx.appcompat.widget.ActionBarOverlayLayout: void setLogo(int) -androidx.coordinatorlayout.R$drawable: int notification_action_background -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_removeUpdates -androidx.preference.R$attr: int autoSizeStepGranularity -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float totalPrecipitationProbability -androidx.viewpager.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.drawerlayout.R$color: int ripple_material_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: okio.Timeout timeout() -com.google.android.material.internal.NavigationMenuItemView: void setIconSize(int) -retrofit2.CallAdapter$Factory: CallAdapter$Factory() -com.google.android.material.R$styleable: int Chip_android_textColor -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacingVertical -androidx.preference.R$drawable: int abc_btn_colored_material -com.google.android.material.circularreveal.cardview.CircularRevealCardView: CircularRevealCardView(android.content.Context) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.MinutelyEntity,long) -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_TabLayoutTheme -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvIndex(java.lang.Integer) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Bridge -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moonrise_moonset -okhttp3.ConnectionSpec: int hashCode() -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void onFailure(retrofit2.Call,java.lang.Throwable) -androidx.customview.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionModeOverlay -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_to_on_mtrl_015 -com.google.android.material.R$styleable: int ConstraintSet_android_transformPivotY -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_fullscreen -androidx.constraintlayout.widget.R$layout: int abc_cascading_menu_item_layout -wangdaye.com.geometricweather.R$styleable: int Chip_chipIconTint -wangdaye.com.geometricweather.R$attr: int initialActivityCount -androidx.transition.R$id: int parent_matrix -wangdaye.com.geometricweather.R$dimen: int design_fab_size_mini -androidx.appcompat.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$attr: int windowActionBarOverlay -androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int SNOOZE_STATE -com.google.android.material.R$styleable: int NavigationView_itemHorizontalPadding -com.google.android.material.R$string: int abc_action_menu_overflow_description -com.xw.repo.bubbleseekbar.R$attr: int actionModeCloseButtonStyle -com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_disable_only_material_light -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRealFeelShaderTemperature -retrofit2.ParameterHandler$Part: okhttp3.Headers headers -androidx.transition.R$id: int right_side -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: long dt -androidx.viewpager2.R$integer: R$integer() -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_switchTextOff -androidx.appcompat.R$id: int src_in -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setBrandId(java.lang.String) -okio.RealBufferedSink: okio.BufferedSink writeShortLe(int) -wangdaye.com.geometricweather.R$string: int wind_speed -com.xw.repo.bubbleseekbar.R$attr: int dividerPadding -okhttp3.ResponseBody$BomAwareReader: int read(char[],int,int) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -androidx.appcompat.R$layout: int abc_list_menu_item_layout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric() -android.didikee.donate.R$layout: int abc_action_bar_title_item -wangdaye.com.geometricweather.R$drawable: int clock_dial_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String en_US -android.didikee.donate.R$color: int material_grey_100 -io.reactivex.internal.queue.SpscArrayQueue -io.reactivex.internal.disposables.ArrayCompositeDisposable: ArrayCompositeDisposable(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial() -wangdaye.com.geometricweather.R$color: int background_material_dark -androidx.appcompat.view.menu.ListMenuItemView: void setSubMenuArrowVisible(boolean) -cyanogenmod.os.Concierge$ParcelInfo: int mParcelableSize -okhttp3.internal.cache.FaultHidingSink: void write(okio.Buffer,long) -com.google.android.material.R$styleable: int BottomNavigationView_itemTextColor -androidx.transition.R$id: int normal -android.didikee.donate.R$dimen: int abc_seekbar_track_background_height_material -wangdaye.com.geometricweather.R$style: int Theme_AppCompat -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric -okhttp3.internal.connection.RealConnection: okhttp3.ConnectionPool connectionPool -wangdaye.com.geometricweather.R$drawable: int notif_temp_117 -wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar -okio.Options: int size() -okhttp3.internal.connection.RealConnection: okhttp3.Handshake handshake() -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onComplete() -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_NoActionBar -wangdaye.com.geometricweather.R$dimen: int preference_seekbar_value_minWidth -androidx.constraintlayout.widget.R$attr: int drawableTopCompat -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_cursor_material -androidx.constraintlayout.widget.R$styleable: int MenuItem_iconTint -okhttp3.RealCall$AsyncCall: okhttp3.Callback responseCallback -androidx.lifecycle.DefaultLifecycleObserver: void onStop(androidx.lifecycle.LifecycleOwner) -androidx.preference.R$style: int TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String ShortPhrase -androidx.appcompat.R$anim: int abc_fade_in -com.jaredrummler.android.colorpicker.R$string: R$string() -wangdaye.com.geometricweather.R$attr: int cpv_allowCustom -com.google.android.material.R$drawable: int abc_ic_star_black_16dp -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_transformPivotY -com.xw.repo.bubbleseekbar.R$attr: int subtitle -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: boolean val$clearPrevious -androidx.preference.R$attr: int entries -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_53 -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalGap -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Toolbar -com.google.android.material.chip.Chip: void setLines(int) -wangdaye.com.geometricweather.R$string: int key_appearance -com.xw.repo.bubbleseekbar.R$bool: int abc_action_bar_embed_tabs -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleGravity(int) -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_colored_material -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_rangeFillColor -okio.RealBufferedSource: okio.Source source -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult -cyanogenmod.providers.CMSettings$System: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) -com.google.android.material.slider.Slider -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Borderless -androidx.appcompat.R$anim: R$anim() -cyanogenmod.app.ProfileGroup: ProfileGroup(android.os.Parcel,cyanogenmod.app.ProfileGroup$1) -com.google.android.material.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -androidx.core.R$dimen: int notification_media_narrow_margin -com.google.android.material.R$styleable: int ProgressIndicator_circularRadius -androidx.preference.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.google.android.material.R$styleable: int MaterialCardView_checkedIcon -cyanogenmod.themes.ThemeChangeRequest: long mWallpaperId -androidx.appcompat.R$attr: int isLightTheme -com.turingtechnologies.materialscrollbar.R$id: int uniform -com.google.android.material.R$dimen: int material_font_2_0_box_collapsed_padding_top -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_android_src -retrofit2.Retrofit: java.util.List callAdapterFactories() -com.google.android.material.circularreveal.CircularRevealGridLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperText -wangdaye.com.geometricweather.R$id: int bottomBar -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getRelativeHumidity() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: int UnitType -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object readKey(android.database.Cursor,int) -androidx.appcompat.R$style: int Widget_AppCompat_ListMenuView -androidx.appcompat.resources.R$styleable: int ColorStateListItem_android_alpha -retrofit2.ParameterHandler$QueryName: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int mtrl_ic_arrow_drop_down -io.reactivex.internal.util.NotificationLite$DisposableNotification -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: java.lang.String Unit -io.reactivex.internal.schedulers.AbstractDirectTask -james.adaptiveicon.R$bool: int abc_config_actionMenuItemAllCaps -cyanogenmod.app.BaseLiveLockManagerService: void notifyChangeListeners(cyanogenmod.app.LiveLockScreenInfo) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_onClick -com.google.android.material.R$dimen: int abc_alert_dialog_button_bar_height -androidx.constraintlayout.widget.R$styleable: int Constraint_motionProgress -androidx.dynamicanimation.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.R$color: int mtrl_scrim_color -io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler) -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: void invoke(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat_Dark -okhttp3.CipherSuite$1: int compare(java.lang.Object,java.lang.Object) -com.google.android.material.bottomnavigation.BottomNavigationMenuView: BottomNavigationMenuView(android.content.Context) -wangdaye.com.geometricweather.R$id: int mtrl_calendar_day_selector_frame -com.jaredrummler.android.colorpicker.R$id: int start -com.xw.repo.bubbleseekbar.R$id: int text2 -cyanogenmod.weather.WeatherLocation: java.lang.String access$302(cyanogenmod.weather.WeatherLocation,java.lang.String) -okhttp3.internal.connection.StreamAllocation: void release(okhttp3.internal.connection.RealConnection) -androidx.appcompat.R$style: R$style() -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customBoolean -androidx.appcompat.R$id: int right_side -androidx.appcompat.R$styleable: int MenuItem_actionViewClass -androidx.core.R$styleable: int ColorStateListItem_android_alpha -androidx.appcompat.resources.R$attr: int alpha -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar -androidx.work.R$id: int italic -androidx.appcompat.R$styleable: int Spinner_android_prompt -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: double Value -com.google.android.material.navigation.NavigationView: android.content.res.ColorStateList getItemIconTintList() -android.didikee.donate.R$drawable: int notification_action_background -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -com.google.android.material.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog -androidx.preference.R$styleable: int MenuItem_android_icon -okio.Util: Util() -com.google.android.material.R$id: int accessibility_custom_action_26 -james.adaptiveicon.R$styleable: int Toolbar_titleMarginTop -com.jaredrummler.android.colorpicker.R$color: int abc_secondary_text_material_light -com.github.rahatarmanahmed.cpv.CircularProgressView: android.graphics.Paint paint -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String VIBRATE -cyanogenmod.weather.RequestInfo$Builder: int mTempUnit -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_MIN_INDEX -okhttp3.Cache$Entry: long receivedResponseMillis -io.reactivex.Observable: java.lang.Object blockingSingle(java.lang.Object) -com.google.android.material.floatingactionbutton.FloatingActionButton: int getSizeDimension() -cyanogenmod.themes.IThemeService: void applyDefaultTheme() -wangdaye.com.geometricweather.main.dialogs.LocationPermissionStatementDialog: LocationPermissionStatementDialog() -wangdaye.com.geometricweather.R$styleable: int MaterialButton_icon -cyanogenmod.providers.WeatherContract -wangdaye.com.geometricweather.R$layout: int material_clockface_view -wangdaye.com.geometricweather.R$drawable: int cpv_alpha -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: int bufferSize -androidx.vectordrawable.R$id: int accessibility_custom_action_30 -com.google.android.material.R$styleable: int KeyTrigger_onPositiveCross -okio.RealBufferedSource: short readShort() -cyanogenmod.app.ThemeVersion -com.google.android.material.textfield.TextInputLayout: void setErrorTextAppearance(int) -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode HAIL -androidx.constraintlayout.widget.R$styleable: int[] DrawerArrowToggle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: int status -cyanogenmod.providers.CMSettings$Secure: java.lang.String ADVANCED_REBOOT -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Time -androidx.preference.R$bool: int abc_config_actionMenuItemAllCaps -wangdaye.com.geometricweather.R$attr: int preferenceFragmentStyle -com.google.android.material.R$attr: int cardPreventCornerOverlap -io.reactivex.Observable: io.reactivex.Single any(io.reactivex.functions.Predicate) -androidx.appcompat.R$string: int abc_menu_enter_shortcut_label -com.jaredrummler.android.colorpicker.R$layout: int preference_dropdown -com.turingtechnologies.materialscrollbar.R$attr: int actionModeWebSearchDrawable -okio.Pipe$PipeSink: void flush() -androidx.preference.R$drawable: int abc_list_divider_material -io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action) -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_2_00 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Small -wangdaye.com.geometricweather.R$attr: int msb_barThickness -wangdaye.com.geometricweather.R$string: int key_unit -wangdaye.com.geometricweather.R$styleable: int CardView_cardUseCompatPadding -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: long timeout -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult -cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING -android.didikee.donate.R$styleable: int MenuItem_android_enabled -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_31 -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean isDisposed() -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTrendTemperature(android.content.Context,java.lang.Integer,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -cyanogenmod.app.ICMStatusBarManager: void createCustomTileWithTag(java.lang.String,java.lang.String,java.lang.String,int,cyanogenmod.app.CustomTile,int[],int) -com.google.android.material.chip.Chip: android.graphics.RectF getCloseIconTouchBounds() -okhttp3.internal.Util: boolean verifyAsIpAddress(java.lang.String) -androidx.swiperefreshlayout.R$attr: int fontProviderAuthority -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_title_divider_material -wangdaye.com.geometricweather.R$id: int ignore -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String admin -androidx.lifecycle.extensions.R$layout: R$layout() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleDrawable -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -wangdaye.com.geometricweather.common.basic.models.weather.Base: long timeStamp -com.google.android.material.R$id: int accessibility_custom_action_23 -wangdaye.com.geometricweather.R$attr: int values -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSnowPrecipitationProbability() -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setBackgroundColor(int) -androidx.recyclerview.widget.StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem -okhttp3.EventListener$2 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: java.lang.String Unit -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPasswordVisibilityToggleContentDescription() -com.google.android.material.appbar.AppBarLayout$BaseBehavior$SavedState: android.os.Parcelable$Creator CREATOR -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderFetchStrategy -okhttp3.EventListener$2: okhttp3.EventListener val$listener -retrofit2.adapter.rxjava2.Result -james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogTheme -androidx.constraintlayout.widget.R$style: int Base_V26_Widget_AppCompat_Toolbar -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void request(long) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getAqiIndex() -com.google.android.material.textfield.TextInputLayout -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableLeft -com.bumptech.glide.integration.okhttp.R$id: int bottom -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setScaleY(float) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_numericModifiers -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LIVE_LOCK_SCREEN_THUMBNAIL -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: java.lang.String toString() -androidx.appcompat.R$style: int Widget_AppCompat_Button_Colored -com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Entry -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_default -com.xw.repo.bubbleseekbar.R$attr: int tint -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: double Value -androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMarkTint -androidx.constraintlayout.widget.R$attr: int goIcon -wangdaye.com.geometricweather.R$color: int abc_tint_switch_track -james.adaptiveicon.R$attr: int expandActivityOverflowButtonDrawable -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.internal.disposables.SequentialDisposable task -androidx.appcompat.R$style: int TextAppearance_AppCompat_Large -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Button -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -io.reactivex.internal.util.ExceptionHelper$Termination: java.lang.Throwable fillInStackTrace() -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastVerticalStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX -cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient access$200(cyanogenmod.weatherservice.WeatherProviderService) -cyanogenmod.app.IProfileManager$Stub$Proxy: void addNotificationGroup(android.app.NotificationGroup) -androidx.fragment.R$id: int actions -com.google.gson.stream.JsonReader: void consumeNonExecutePrefix() -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void dispose() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List guomin -androidx.viewpager.R$id: int normal -androidx.appcompat.widget.ActionBarContextView: void setTitle(java.lang.CharSequence) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -androidx.hilt.R$dimen: int compat_notification_large_icon_max_width -com.turingtechnologies.materialscrollbar.R$attr: int headerLayout -cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: WeatherContract$WeatherColumns$TempUnit() -wangdaye.com.geometricweather.R$styleable: int LiveLockScreen_settingsActivity -com.turingtechnologies.materialscrollbar.R$id: int notification_background -com.google.android.material.R$style: int TextAppearance_AppCompat_Subhead -james.adaptiveicon.R$style: int AlertDialog_AppCompat -wangdaye.com.geometricweather.R$drawable: int cpv_btn_background_pressed -com.google.android.material.R$dimen: int abc_action_bar_subtitle_top_margin_material -com.google.android.material.R$styleable: int Spinner_android_entries -cyanogenmod.app.suggest.IAppSuggestManager$Stub: cyanogenmod.app.suggest.IAppSuggestManager asInterface(android.os.IBinder) -androidx.appcompat.R$styleable: int[] GradientColor -com.google.android.material.chip.Chip: void setChipIcon(android.graphics.drawable.Drawable) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -wangdaye.com.geometricweather.R$attr: int cornerSizeBottomLeft -cyanogenmod.weatherservice.IWeatherProviderService$Stub: android.os.IBinder asBinder() -cyanogenmod.hardware.DisplayMode: void writeToParcel(android.os.Parcel,int) -android.didikee.donate.R$styleable: int ActionBar_title -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -io.reactivex.internal.disposables.ArrayCompositeDisposable: void dispose() -wangdaye.com.geometricweather.R$id: int item_weather_daily_air_progress -com.google.android.material.R$attr: int flow_lastHorizontalBias -androidx.lifecycle.extensions.R$anim: int fragment_open_enter -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -com.google.android.material.R$styleable: int FontFamilyFont_android_fontWeight -com.jaredrummler.android.colorpicker.R$dimen: int disabled_alpha_material_light -io.reactivex.internal.util.ArrayListSupplier: java.util.List apply(java.lang.Object) -cyanogenmod.weatherservice.ServiceRequestResult: java.util.List access$302(cyanogenmod.weatherservice.ServiceRequestResult,java.util.List) -android.didikee.donate.R$styleable: int ActionBar_contentInsetLeft -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_cancelRequest -androidx.appcompat.widget.ActionBarContextView: void setContentHeight(int) -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream newStream(java.util.List,boolean) -com.google.android.material.R$plurals: R$plurals() -com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_bias -retrofit2.Retrofit: java.lang.Object create(java.lang.Class) -com.turingtechnologies.materialscrollbar.R$id: int scrollable -com.turingtechnologies.materialscrollbar.R$dimen: int abc_floating_window_z -androidx.core.R$id: int accessibility_custom_action_6 -androidx.preference.R$style: int Theme_AppCompat_Light_DarkActionBar -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button -androidx.customview.R$id: int action_container -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onSubscribe(org.reactivestreams.Subscription) -androidx.preference.R$dimen: int abc_disabled_alpha_material_dark -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setOnChildScrollUpCallback(androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnChildScrollUpCallback) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderPackage -androidx.work.R$attr: int fontVariationSettings -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Line2 -james.adaptiveicon.R$styleable: int ColorStateListItem_alpha -androidx.constraintlayout.widget.R$drawable: int abc_ic_arrow_drop_right_black_24dp -com.google.android.material.R$styleable: int MaterialCalendar_yearStyle -androidx.appcompat.R$attr: int navigationMode -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_second_track_size -androidx.core.R$layout: R$layout() -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnClickUri(android.net.Uri) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_CLOCK_TEXT_COLOR -com.jaredrummler.android.colorpicker.R$style: int PreferenceFragment -androidx.preference.R$style: int Widget_AppCompat_Button_Colored -com.google.android.material.R$dimen: int abc_action_bar_elevation_material -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginLeft -cyanogenmod.externalviews.ExternalView: void setProviderComponent(android.content.ComponentName) -androidx.preference.R$drawable: int abc_item_background_holo_dark -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int ThunderstormProbability -wangdaye.com.geometricweather.common.ui.transitions.RoundCornerTransition -androidx.appcompat.R$drawable: int abc_ic_star_black_16dp -retrofit2.Retrofit: java.util.List callAdapterFactories -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Body2 -com.turingtechnologies.materialscrollbar.R$id: int expanded_menu -androidx.constraintlayout.widget.ConstraintLayout: void setMaxWidth(int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedHeightMajor -com.google.gson.JsonIOException: long serialVersionUID -okhttp3.internal.http.HttpDate: java.util.Date parse(java.lang.String) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String cityId -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle -okhttp3.internal.ws.WebSocketProtocol: int B1_FLAG_MASK -androidx.lifecycle.LiveData$LifecycleBoundObserver: androidx.lifecycle.LiveData this$0 -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -androidx.core.R$id: int info -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$style: int Preference_Category -androidx.appcompat.widget.ScrollingTabContainerView: ScrollingTabContainerView(android.content.Context) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_5 -com.google.android.material.R$styleable: int MaterialCardView_state_dragged -androidx.preference.R$style: int Widget_AppCompat_SeekBar_Discrete -androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_icon_width -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX) -androidx.hilt.work.R$styleable: int FontFamilyFont_fontStyle -com.google.android.material.R$string: int mtrl_picker_invalid_format -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar -androidx.viewpager2.R$id: int forever -retrofit2.CallAdapter: java.lang.reflect.Type responseType() -io.reactivex.internal.util.VolatileSizeArrayList: void add(int,java.lang.Object) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Small -com.google.android.material.button.MaterialButton: void setBackgroundColor(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice Ice -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_checkable -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService this$0 -wangdaye.com.geometricweather.search.SearchActivity -com.turingtechnologies.materialscrollbar.R$attr: int layoutManager -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setLineColor(int) -cyanogenmod.app.Profile: java.lang.String mName -okio.SegmentedByteString: java.lang.String base64() -android.didikee.donate.R$drawable: int abc_ic_star_black_36dp -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder eventListenerFactory(okhttp3.EventListener$Factory) -android.didikee.donate.R$attr: int actionBarTabStyle -wangdaye.com.geometricweather.R$attr: int layout_constraintRight_toLeftOf -com.google.android.material.R$styleable: int SwitchCompat_splitTrack -androidx.constraintlayout.helper.widget.Flow: void setPaddingTop(int) -com.jaredrummler.android.colorpicker.R$color: int error_color_material_light -androidx.transition.R$styleable: int FontFamilyFont_fontWeight -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCityId -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherText(java.lang.String) -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Info -io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,long,java.util.concurrent.TimeUnit) -androidx.preference.R$attr: int windowFixedHeightMinor -james.adaptiveicon.R$style: int Theme_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$attr: int actionModeSelectAllDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: java.lang.String English -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature -com.google.android.material.R$style: int Base_Widget_AppCompat_ListView_DropDown -cyanogenmod.externalviews.ExternalViewProviderService$1$1: android.os.Bundle val$options -com.jaredrummler.android.colorpicker.R$attr: int layout_anchor -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.IBinder onBind(android.content.Intent) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer direction -androidx.hilt.work.R$styleable: int GradientColor_android_endY -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeFindDrawable -androidx.core.R$id: R$id() -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder dns(okhttp3.Dns) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setOnClickListener(android.view.View$OnClickListener) -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetBottom -com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_icon -androidx.preference.R$styleable: int SearchView_iconifiedByDefault -com.google.android.material.R$styleable: int[] StateSet -com.google.android.material.R$styleable: int TabLayout_tabPaddingTop -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -androidx.dynamicanimation.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.R$attr: int colorOnError -androidx.constraintlayout.widget.R$id: int animateToEnd -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setState(java.lang.String) -wangdaye.com.geometricweather.R$color: int colorLevel_4 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_COLOR_VALIDATOR -wangdaye.com.geometricweather.R$drawable: int material_ic_menu_arrow_up_black_24dp -androidx.swiperefreshlayout.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_track -androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitleTextColor -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintStart_toEndOf -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -io.reactivex.Observable: io.reactivex.Observable interval(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean getVisibility() -com.google.android.material.R$dimen: int mtrl_badge_text_horizontal_edge_offset -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: double Value -androidx.appcompat.R$attr: int listPreferredItemPaddingEnd -androidx.constraintlayout.widget.R$styleable: int OnSwipe_limitBoundsTo -okhttp3.Response: okhttp3.CacheControl cacheControl -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_baselineAligned -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setThunderstormPrecipitationProbability(java.lang.Float) -retrofit2.HttpServiceMethod$CallAdapted: retrofit2.CallAdapter callAdapter -androidx.constraintlayout.widget.R$layout: int abc_action_menu_item_layout -com.google.android.material.R$attr: int closeIconStartPadding -com.jaredrummler.android.colorpicker.R$attr: int fragment -wangdaye.com.geometricweather.R$attr: int region_widthLessThan -wangdaye.com.geometricweather.R$attr: int boxCornerRadiusBottomStart -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA -com.jaredrummler.android.colorpicker.R$attr: int alphabeticModifiers -okhttp3.internal.http2.Http2Connection$6: boolean val$inFinished -com.google.android.material.R$drawable: int abc_ic_voice_search_api_material -android.didikee.donate.R$styleable: int MenuItem_android_titleCondensed -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.R$color: int colorLine_light -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: void subscribe(org.reactivestreams.Subscriber) -com.turingtechnologies.materialscrollbar.R$id: int scrollIndicatorUp -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean outputFused -okio.Pipe$PipeSource: okio.Timeout timeout -wangdaye.com.geometricweather.R$dimen: int large_title_text_size -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: long serialVersionUID -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_light -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long readKey(android.database.Cursor,int) -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedUsername(java.lang.String) -com.google.android.material.circularreveal.CircularRevealLinearLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -androidx.preference.R$attr: int windowNoTitle -james.adaptiveicon.R$attr: int actionDropDownStyle -androidx.coordinatorlayout.R$styleable: int[] ColorStateListItem -androidx.lifecycle.Lifecycle$State: Lifecycle$State(java.lang.String,int) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void run() -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupMenu_Overflow -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setDistanceToTriggerSync(int) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActivityChooserView -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ButtonBar -io.reactivex.internal.disposables.DisposableHelper: boolean isDisposed(io.reactivex.disposables.Disposable) -okhttp3.Cache: Cache(java.io.File,long,okhttp3.internal.io.FileSystem) -androidx.fragment.R$attr: int ttcIndex -androidx.preference.R$drawable: int abc_list_selector_disabled_holo_dark -wangdaye.com.geometricweather.R$string: int hourly_overview -androidx.preference.R$dimen: int abc_text_size_button_material -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_right_mtrl_dark -okhttp3.Cookie: java.lang.String domain() -androidx.appcompat.widget.SwitchCompat: void setThumbPosition(float) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: double Value -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_keylines -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: io.reactivex.internal.fuseable.SimplePlainQueue queue -androidx.preference.R$attr: int isPreferenceVisible -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -androidx.constraintlayout.widget.R$attr: int titleMargins -android.didikee.donate.R$styleable: int AppCompatTheme_searchViewStyle -androidx.preference.R$drawable: int abc_list_pressed_holo_light -com.jaredrummler.android.colorpicker.R$style: int Preference_Information -androidx.appcompat.widget.SwitchCompat: android.graphics.PorterDuff$Mode getThumbTintMode() -androidx.swiperefreshlayout.R$id: int notification_background -androidx.preference.R$styleable: int PreferenceImageView_maxHeight -okhttp3.internal.ws.RealWebSocket: boolean awaitingPong -retrofit2.DefaultCallAdapterFactory: java.util.concurrent.Executor callbackExecutor -androidx.constraintlayout.widget.R$anim: int abc_tooltip_enter -androidx.lifecycle.extensions.R$styleable: R$styleable() -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_OutlinedButton -cyanogenmod.app.Profile$ProfileTrigger: int getState() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_creator -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getAqiColor(android.content.Context) -androidx.core.R$drawable: int notification_bg_normal -cyanogenmod.externalviews.KeyguardExternalView$5: KeyguardExternalView$5(cyanogenmod.externalviews.KeyguardExternalView) -com.google.android.material.R$dimen: int design_bottom_sheet_elevation -okio.Buffer: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) -cyanogenmod.app.ICMTelephonyManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -okio.GzipSink: okio.BufferedSink sink -wangdaye.com.geometricweather.R$id: int bottomRecyclerView -androidx.appcompat.widget.SwitchCompat: void setTrackDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$attr: int homeLayout -androidx.activity.R$id: int accessibility_custom_action_5 -androidx.lifecycle.ViewModelStores -androidx.constraintlayout.widget.R$attr: int contentInsetLeft -okhttp3.internal.http.RealResponseBody: okhttp3.MediaType contentType() -androidx.appcompat.R$color: int abc_tint_seek_thumb -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_viewInflaterClass -com.turingtechnologies.materialscrollbar.R$id: int action_bar_activity_content -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItem -androidx.appcompat.R$anim: int abc_shrink_fade_out_from_bottom -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: int UnitType -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.google.android.material.R$styleable: int[] MotionTelltales -io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean delayError -org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.database.Database getDatabase() -androidx.lifecycle.extensions.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleContentDescription -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetEnd -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: double Value -wangdaye.com.geometricweather.R$styleable: int ActionBar_progressBarStyle -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetOnClickPendingIntent(android.app.PendingIntent) -cyanogenmod.externalviews.IExternalViewProviderFactory -wangdaye.com.geometricweather.R$drawable: int notif_temp_113 -androidx.constraintlayout.widget.R$attr: int alphabeticModifiers -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: int UnitType -james.adaptiveicon.R$styleable: int FontFamilyFont_ttcIndex -io.reactivex.observers.TestObserver$EmptyObserver: void onNext(java.lang.Object) -james.adaptiveicon.R$styleable: int MenuView_android_itemTextAppearance -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator -io.reactivex.Observable: java.lang.Object blockingFirst() -com.xw.repo.bubbleseekbar.R$attr: int autoSizePresetSizes -com.google.android.material.bottomnavigation.BottomNavigationPresenter$SavedState -com.google.android.material.R$style: int Base_V23_Theme_AppCompat_Light -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver this$0 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.Date Date -androidx.preference.R$dimen: int abc_switch_padding -androidx.preference.R$drawable: int ic_arrow_down_24dp -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_ripple_color -okhttp3.internal.http2.Http2Connection$5: boolean val$inFinished -com.google.android.material.R$attr: int layout_constraintHeight_max -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int IconCode -wangdaye.com.geometricweather.R$anim: int abc_grow_fade_in_from_bottom -android.didikee.donate.R$styleable: int TextAppearance_textLocale -com.google.android.material.R$attr: int backgroundSplit -okhttp3.internal.http.StatusLine: java.lang.String message -io.reactivex.Observable: io.reactivex.Observable zipArray(io.reactivex.functions.Function,boolean,int,io.reactivex.ObservableSource[]) -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_defaultQueryHint -wangdaye.com.geometricweather.R$color: int design_error -wangdaye.com.geometricweather.background.polling.work.worker.TodayForecastUpdateWorker -com.google.android.material.chip.ChipGroup: int getChipCount() -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -androidx.lifecycle.GenericLifecycleObserver -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customIntegerValue -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver inner -androidx.constraintlayout.widget.R$color: int dim_foreground_disabled_material_dark -wangdaye.com.geometricweather.R$attr: int popupWindowStyle -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderTitle -com.bumptech.glide.integration.okhttp.R$attr: int font -com.bumptech.glide.R$color: int ripple_material_light -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.appcompat.widget.AppCompatImageButton: void setImageResource(int) -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_indeterminate -cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(android.os.Parcel,cyanogenmod.app.Profile$1) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterEnabled -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_motionProgress -com.google.android.material.R$styleable: int ActionBar_backgroundSplit -androidx.constraintlayout.widget.R$drawable: int abc_ic_voice_search_api_material -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_CBC_SHA -okhttp3.Cache: Cache(java.io.File,long) -okhttp3.Cookie$Builder: boolean secure -cyanogenmod.weather.WeatherInfo$DayForecast$Builder -androidx.dynamicanimation.R$layout -io.reactivex.internal.queue.SpscArrayQueue: boolean isEmpty() -james.adaptiveicon.R$styleable: int FontFamily_fontProviderFetchTimeout -io.reactivex.Observable: io.reactivex.Observable fromIterable(java.lang.Iterable) -okhttp3.ResponseBody: java.io.InputStream byteStream() -androidx.dynamicanimation.animation.DynamicAnimation: void removeEndListener(androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationEndListener) -com.xw.repo.bubbleseekbar.R$string: int abc_toolbar_collapse_description -wangdaye.com.geometricweather.R$string: int wind_8 -cyanogenmod.themes.ThemeManager: void unregisterThemeChangeListener(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -com.google.android.material.R$styleable: int BottomAppBar_backgroundTint -com.jaredrummler.android.colorpicker.R$attr: int buttonPanelSideLayout -androidx.appcompat.R$id: int tag_accessibility_actions -io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource) -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -com.google.android.material.R$dimen: int design_fab_elevation -james.adaptiveicon.R$styleable: int ActionBar_height -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean precipitationProbability -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_radius_on_dragging -androidx.recyclerview.R$color -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeight -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_width_overflow_material -androidx.hilt.work.R$drawable: int notification_template_icon_bg -com.turingtechnologies.materialscrollbar.R$id: int decor_content_parent -androidx.customview.R$id -androidx.vectordrawable.animated.R$id: int info -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.R$id: int BOTTOM_END -androidx.appcompat.R$style: int TextAppearance_AppCompat_Tooltip -androidx.preference.internal.PreferenceImageView: int getMaxWidth() -androidx.preference.R$styleable: int TextAppearance_android_shadowDx -okhttp3.internal.ws.RealWebSocket: void initReaderAndWriter(java.lang.String,okhttp3.internal.ws.RealWebSocket$Streams) -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onComplete() -okhttp3.CertificatePinner: okio.ByteString sha256(java.security.cert.X509Certificate) -androidx.lifecycle.Transformations: androidx.lifecycle.LiveData distinctUntilChanged(androidx.lifecycle.LiveData) -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_summaryOff -cyanogenmod.app.Profile: cyanogenmod.profiles.StreamSettings getSettingsForStream(int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dividerVertical -com.google.android.material.R$styleable: int MaterialTextView_android_textAppearance -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_title_divider_material -james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat -com.turingtechnologies.materialscrollbar.R$id: int action_text -androidx.appcompat.R$dimen: int notification_small_icon_size_as_large -com.google.android.material.R$id: int forever -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okio.BufferedSource delegateSource -wangdaye.com.geometricweather.background.polling.basic.Hilt_AwakeForegroundUpdateService: Hilt_AwakeForegroundUpdateService() -okhttp3.FormBody$Builder: okhttp3.FormBody$Builder add(java.lang.String,java.lang.String) -androidx.appcompat.R$styleable: int[] MenuView -cyanogenmod.providers.ThemesContract$MixnMatchColumns -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: boolean requestDismiss() -io.reactivex.internal.observers.BlockingObserver: void dispose() -com.google.android.material.R$style: int Theme_AppCompat_Light_DialogWhenLarge -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollVerticalTrackDrawable -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeWidth -wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected -androidx.fragment.R$layout: int notification_template_part_time -com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_Switch -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontStyle -androidx.preference.R$attr: int dropdownPreferenceStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float co -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.R$id: int activity_widget_config_styleSpinner -androidx.appcompat.widget.ContentFrameLayout -wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_alpha -cyanogenmod.app.StatusBarPanelCustomTile: long postTime -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean() -com.google.android.material.R$string: int abc_searchview_description_voice -com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_creator -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle[] values() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: double Value -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric Metric -androidx.appcompat.app.AppCompatActivity: void setContentView(android.view.View) -androidx.appcompat.widget.ActionMenuView: void setPresenter(androidx.appcompat.widget.ActionMenuPresenter) -wangdaye.com.geometricweather.R$attr: int tabTextColor -okio.ForwardingSource: okio.Source delegate -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial -androidx.activity.R$styleable: int FontFamilyFont_fontVariationSettings -io.reactivex.internal.queue.SpscArrayQueue: SpscArrayQueue(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: CaiYunForecastResult$PrecipitationBean() -wangdaye.com.geometricweather.R$attr: int itemIconPadding -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_Alert -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_closeItemLayout -wangdaye.com.geometricweather.R$string: int settings_title_forecast_today -android.didikee.donate.R$dimen: int abc_edit_text_inset_top_material -okhttp3.internal.connection.RouteException: java.io.IOException getLastConnectException() -com.google.android.material.transformation.FabTransformationSheetBehavior: FabTransformationSheetBehavior(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabView -wangdaye.com.geometricweather.R$styleable: int OnSwipe_onTouchUp -com.google.android.material.slider.RangeSlider: void setTickTintList(android.content.res.ColorStateList) -androidx.lifecycle.FullLifecycleObserverAdapter -androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_layout -androidx.preference.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton_CloseMode -cyanogenmod.os.Concierge -wangdaye.com.geometricweather.R$layout: int item_weather_daily_uv -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPaused(android.app.Activity) -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.identityscope.IdentityScopeLong identityScopeLong -io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Runnable getWrappedRunnable() -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onNext(java.lang.Object) -io.reactivex.Observable: io.reactivex.Observable distinct() -androidx.recyclerview.R$id: int tag_accessibility_pane_title -androidx.hilt.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.appcompat.R$styleable: int SwitchCompat_track -androidx.preference.R$style: int Base_V21_Theme_AppCompat_Dialog -com.google.android.material.R$dimen: int abc_seekbar_track_progress_height_material -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: boolean isDisposed() -androidx.hilt.R$attr: int fontWeight -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onComplete() -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: boolean isDisposed() -okhttp3.Dispatcher: boolean $assertionsDisabled -androidx.preference.R$attr: int borderlessButtonStyle -com.google.android.material.R$styleable: int ConstraintSet_flow_firstVerticalStyle -cyanogenmod.providers.CMSettings$System: android.net.Uri CONTENT_URI -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -cyanogenmod.app.CustomTile$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.preference.R$color: int ripple_material_dark -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_minHeight -androidx.preference.R$dimen: int abc_dialog_min_width_major -androidx.preference.R$styleable: int AppCompatTheme_buttonBarButtonStyle -cyanogenmod.themes.IThemeService$Stub$Proxy: IThemeService$Stub$Proxy(android.os.IBinder) -com.google.android.material.R$id: int material_timepicker_ok_button -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_vertical_padding -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: AccuCurrentResult$WetBulbTemperature() -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_creator -wangdaye.com.geometricweather.R$string: int settings_summary_live_wallpaper -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_motionProgress -cyanogenmod.app.IProfileManager -okhttp3.internal.http2.Hpack$Reader: int evictToRecoverBytes(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$id: int smallLabel -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$drawable: int abc_ic_clear_material -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sBooleanValidator -com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_selected -androidx.appcompat.R$styleable: int AppCompatTheme_checkboxStyle -com.turingtechnologies.materialscrollbar.R$attr: int colorSwitchThumbNormal -com.google.android.material.textfield.TextInputLayout: void setHintAnimationEnabled(boolean) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_CheckBox -com.google.android.material.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_LIVE_LOCK_SCREEN -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Delete -cyanogenmod.profiles.ConnectionSettings$BooleanState: ConnectionSettings$BooleanState() -androidx.loader.R$id: int action_text -wangdaye.com.geometricweather.R$styleable: int[] Toolbar -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit valueOf(java.lang.String) -okhttp3.internal.http2.Http2: byte FLAG_PRIORITY -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: HistoryEntityDao(org.greenrobot.greendao.internal.DaoConfig) -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_textOff -androidx.constraintlayout.widget.R$id: int action_menu_presenter -okhttp3.internal.ws.RealWebSocket$Close: long cancelAfterCloseMillis -com.google.android.material.R$id: int reverseSawtooth -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric Metric -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.lang.String getPubTime() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.Observer downstream -androidx.dynamicanimation.R$drawable: int notification_bg_low_normal -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_height_minor -okhttp3.Response: java.util.List challenges() -wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Top_Right -androidx.hilt.work.R$dimen: int notification_large_icon_height -com.google.android.material.R$integer: int show_password_duration -retrofit2.http.PartMap -james.adaptiveicon.R$style: int Base_AlertDialog_AppCompat -androidx.appcompat.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -androidx.constraintlayout.widget.R$attr: int flow_horizontalGap -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_primary_mtrl_alpha -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -cyanogenmod.weather.WeatherInfo$DayForecast$1: cyanogenmod.weather.WeatherInfo$DayForecast createFromParcel(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableRightCompat -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconTintMode -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset -androidx.recyclerview.widget.RecyclerView: int getItemDecorationCount() -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onSubscribe(org.reactivestreams.Subscription) -com.xw.repo.bubbleseekbar.R$attr: int showAsAction -com.google.android.material.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -com.google.android.material.R$styleable: int SearchView_android_focusable -androidx.preference.R$styleable: int AlertDialog_listItemLayout -wangdaye.com.geometricweather.R$dimen: int cpv_dialog_preview_width -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.internal.util.AtomicThrowable error -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onStop -okhttp3.internal.http2.Http2Stream: okhttp3.Headers takeHeaders() -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImpl -androidx.lifecycle.extensions.R$styleable: int FragmentContainerView_android_tag -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_showTitle -com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_text_padding_right -com.xw.repo.bubbleseekbar.R$attr: int colorPrimaryDark -androidx.preference.R$drawable: int notification_bg_normal -okhttp3.CacheControl$Builder: boolean noTransform -cyanogenmod.providers.CMSettings$Global: java.lang.String WEATHER_TEMPERATURE_UNIT -retrofit2.Platform: int defaultCallAdapterFactoriesSize() -org.greenrobot.greendao.AbstractDao: void updateKeyAfterInsertAndAttach(java.lang.Object,long,boolean) -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Current getCurrent() -wangdaye.com.geometricweather.R$attr: int chipBackgroundColor -wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardSpinner -okhttp3.internal.http1.Http1Codec$ChunkedSource -androidx.hilt.R$id: int accessibility_custom_action_12 -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getLiveLockScreenEnabled -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_queryHint -cyanogenmod.externalviews.KeyguardExternalView$1: void onServiceDisconnected(android.content.ComponentName) -okhttp3.ConnectionPool: ConnectionPool(int,long,java.util.concurrent.TimeUnit) -com.google.android.material.R$dimen: int abc_edit_text_inset_top_material -wangdaye.com.geometricweather.R$array: int speed_unit_voices -androidx.fragment.R$id: int accessibility_custom_action_29 -com.google.android.material.R$styleable: int Constraint_layout_constraintCircle -androidx.hilt.lifecycle.R$id: int text -wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchAnchorId -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -wangdaye.com.geometricweather.R$drawable: int notif_temp_100 -james.adaptiveicon.R$dimen: int highlight_alpha_material_light -okhttp3.internal.ws.RealWebSocket: java.lang.String key -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY -com.jaredrummler.android.colorpicker.R$id: int uniform -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeShareDrawable -james.adaptiveicon.R$styleable: int MenuItem_android_titleCondensed -androidx.transition.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.db.entities.AlertEntity: AlertEntity(java.lang.Long,java.lang.String,java.lang.String,long,java.util.Date,long,java.lang.String,java.lang.String,java.lang.String,int,int) -androidx.preference.R$dimen: R$dimen() -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -com.google.android.material.R$drawable: int avd_show_password -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed Speed -com.google.android.material.R$color: int abc_tint_edittext -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getCoDesc() -com.google.android.material.R$style: int Base_Widget_AppCompat_Spinner -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setSize(float) -wangdaye.com.geometricweather.R$id: int screen -okhttp3.Response$Builder: okhttp3.Response$Builder addHeader(java.lang.String,java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox -androidx.appcompat.R$attr: int firstBaselineToTopHeight -wangdaye.com.geometricweather.R$layout: int abc_screen_toolbar -wangdaye.com.geometricweather.R$array: int live_wallpaper_weather_kind_values -androidx.preference.Preference -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object get(int) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: void complete() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Borderless -io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean offer(java.lang.Object,java.lang.Object) -androidx.lifecycle.ProcessLifecycleOwner$2: void onCreate() -wangdaye.com.geometricweather.R$array: int pollen_units -androidx.preference.R$attr: int backgroundStacked -com.google.android.material.bottomappbar.BottomAppBar$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$id: int notification_big_temp_4 -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabBar -android.didikee.donate.R$attr: int actionModeFindDrawable -okhttp3.ConnectionSpec: boolean isTls() -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableCompatState: int getChangingConfigurations() -io.reactivex.internal.subscriptions.BasicQueueSubscription: long serialVersionUID -wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity: DayWidgetConfigActivity() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial Imperial -wangdaye.com.geometricweather.R$string: int ceiling -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: boolean isDisposed() -androidx.appcompat.R$id: int search_mag_icon -android.didikee.donate.R$string: int abc_shareactionprovider_share_with_application -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitation() -androidx.cardview.R$attr: int contentPaddingLeft -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_iconTint -okhttp3.internal.io.FileSystem: okhttp3.internal.io.FileSystem SYSTEM -cyanogenmod.weather.util.WeatherUtils: WeatherUtils() -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Date -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void replay(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) -com.bumptech.glide.load.engine.GlideException: void setLoggingDetails(com.bumptech.glide.load.Key,com.bumptech.glide.load.DataSource,java.lang.Class) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property AqiText -wangdaye.com.geometricweather.R$attr: int indeterminateProgressStyle -androidx.constraintlayout.widget.R$attr: int actionModeFindDrawable -com.google.android.material.R$attr: int shapeAppearanceSmallComponent -com.google.android.material.R$attr: int chipSurfaceColor -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String detail -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_homeLayout -retrofit2.Response: okhttp3.ResponseBody errorBody -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderPackage -androidx.constraintlayout.widget.R$styleable: int SearchView_queryHint -cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_VIBRATE -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int HAS_REQUEST_HAS_VALUE -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf -wangdaye.com.geometricweather.R$style: int Preference_SeekBarPreference_Material -wangdaye.com.geometricweather.R$drawable: int clock_dial_dark -okhttp3.internal.http2.Hpack$Writer: int dynamicTableByteCount -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button -okhttp3.RequestBody$2: byte[] val$content -androidx.fragment.R$drawable: int notification_bg_low_pressed -com.turingtechnologies.materialscrollbar.R$attr: int msb_barThickness -androidx.preference.R$interpolator: R$interpolator() -androidx.preference.R$styleable: int SwitchCompat_trackTint -androidx.preference.R$attr: int subtitleTextStyle -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterMaxLength -androidx.appcompat.R$attr: int subtitleTextAppearance -com.google.android.material.R$dimen: int highlight_alpha_material_light -wangdaye.com.geometricweather.R$attr: int attributeName -android.didikee.donate.R$attr: int textAppearanceListItemSmall -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: java.lang.Object leaveTransform(java.lang.Object) -wangdaye.com.geometricweather.R$xml: int widget_text -androidx.appcompat.R$styleable: int ActionBar_homeAsUpIndicator -wangdaye.com.geometricweather.R$styleable: int[] Preference -retrofit2.ParameterHandler$PartMap: java.lang.reflect.Method method -retrofit2.Platform$Android: Platform$Android() -cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.CMWeatherManager$2 this$1 -com.xw.repo.bubbleseekbar.R$attr: int isLightTheme -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Badge -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: java.lang.Object resource -com.jaredrummler.android.colorpicker.R$attr: int summary -cyanogenmod.externalviews.KeyguardExternalView$3: cyanogenmod.externalviews.KeyguardExternalView this$0 -androidx.fragment.R$styleable: int FragmentContainerView_android_name -androidx.swiperefreshlayout.R$id: int action_container -com.jaredrummler.android.colorpicker.R$attr: int iconifiedByDefault -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_UNKNOWN -androidx.preference.R$styleable: int AppCompatTheme_windowNoTitle -com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_SIGN -wangdaye.com.geometricweather.R$array: int live_wallpaper_day_night_types -android.didikee.donate.R$id: int notification_main_column -androidx.appcompat.R$attr: int searchViewStyle -com.google.android.material.R$attr: int nestedScrollFlags -android.didikee.donate.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -io.reactivex.Observable: io.reactivex.Observable retry() -com.bumptech.glide.integration.okhttp.R$dimen: int notification_large_icon_width -androidx.coordinatorlayout.R$styleable: R$styleable() -com.google.android.material.R$styleable: int TextInputLayout_counterTextAppearance -androidx.viewpager.R$styleable: int[] FontFamily -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_applyDefaultTheme -androidx.recyclerview.R$dimen: int notification_top_pad -okhttp3.OkHttpClient: java.net.Proxy proxy() -wangdaye.com.geometricweather.R$drawable: int ic_google_play -androidx.constraintlayout.widget.R$id: int up -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_subtitle -com.google.android.material.R$dimen: int abc_progress_bar_height_material -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnp -androidx.legacy.coreutils.R$string: R$string() -okhttp3.EventListener: void secureConnectEnd(okhttp3.Call,okhttp3.Handshake) -com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_start_color -androidx.constraintlayout.widget.R$attr: int transitionPathRotate -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setPrecipitationColor(int) -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: void setY(java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int bsb_show_progress_in_float -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService: MaterialLiveWallpaperService() -wangdaye.com.geometricweather.R$attr: int ttcIndex -androidx.appcompat.R$styleable: int AppCompatTheme_actionModePasteDrawable -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_1 -androidx.vectordrawable.R$id: int notification_background -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_subtitleTextStyle -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_share_mtrl_alpha -androidx.constraintlayout.widget.R$styleable: int MotionHelper_onHide -wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_entryValues -android.didikee.donate.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder tlsVersions(java.lang.String[]) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric -com.turingtechnologies.materialscrollbar.R$color: int accent_material_light -androidx.appcompat.R$id: int action_menu_presenter -androidx.hilt.lifecycle.R$id: int tag_accessibility_pane_title -retrofit2.BuiltInConverters$RequestBodyConverter -android.didikee.donate.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -androidx.appcompat.R$color: int material_grey_850 -com.google.android.material.R$attr: int counterTextColor -james.adaptiveicon.R$dimen: int abc_text_size_display_1_material -wangdaye.com.geometricweather.R$attr: int flow_lastVerticalStyle -androidx.appcompat.R$color: int abc_search_url_text_selected -okio.Buffer: okio.BufferedSink writeShortLe(int) -okhttp3.internal.http2.Header: Header(okio.ByteString,java.lang.String) -com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyle -james.adaptiveicon.R$attr: int autoSizeTextType -androidx.swiperefreshlayout.R$id: int line3 -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Text -wangdaye.com.geometricweather.R$string: int precipitation_probability -com.google.android.material.R$attr: int spinnerDropDownItemStyle -androidx.appcompat.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -com.google.android.material.R$style: int CardView_Light -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onComplete() -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType USER_REQUEST_MIXNMATCH -wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_medium_component -androidx.appcompat.resources.R$attr: int fontProviderAuthority -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Borderless -wangdaye.com.geometricweather.R$color: int abc_search_url_text_selected -androidx.preference.R$styleable: int LinearLayoutCompat_divider -retrofit2.ParameterHandler$PartMap: void apply(retrofit2.RequestBuilder,java.lang.Object) -okio.Buffer$1: Buffer$1(okio.Buffer) -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback(retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter,java.util.concurrent.CompletableFuture) -androidx.vectordrawable.R$id: int accessibility_custom_action_14 -okhttp3.OkHttpClient: int connectTimeout -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Medium -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: boolean isDisposed() -io.reactivex.internal.functions.Functions$NaturalComparator: int compare(java.lang.Object,java.lang.Object) -com.google.android.material.R$styleable: int NavigationView_shapeAppearanceOverlay -androidx.vectordrawable.R$id: int accessibility_custom_action_15 -cyanogenmod.app.Profile: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.R$id: int center -androidx.core.R$styleable: int GradientColor_android_endColor -retrofit2.HttpServiceMethod: java.lang.Object invoke(java.lang.Object[]) -cyanogenmod.app.ICustomTileListener$Stub -wangdaye.com.geometricweather.R$id: int app_bar -cyanogenmod.externalviews.KeyguardExternalView$10: KeyguardExternalView$10(cyanogenmod.externalviews.KeyguardExternalView) -com.google.android.material.R$id: int BOTTOM_END -androidx.preference.R$style: int Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_behavior -wangdaye.com.geometricweather.R$dimen: int material_helper_text_font_1_3_padding_top -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String timezone -com.google.android.material.R$styleable: int ScrimInsetsFrameLayout_insetForeground -com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_borderColor -okio.AsyncTimeout$2: void close() -androidx.preference.R$styleable: int AppCompatTheme_actionBarTabStyle -wangdaye.com.geometricweather.R$color: int button_material_dark -com.google.android.material.R$styleable: int FloatingActionButton_showMotionSpec -com.bumptech.glide.Priority: com.bumptech.glide.Priority LOW -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$dimen: int design_snackbar_text_size -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabBarStyle -com.google.android.material.R$id: int staticPostLayout -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_creator -androidx.preference.R$styleable: int ActionBar_height -retrofit2.Utils: java.lang.reflect.Type resolve(java.lang.reflect.Type,java.lang.Class,java.lang.reflect.Type) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LIVE_LOCK_SCREEN -com.jaredrummler.android.colorpicker.R$id: int title -okhttp3.internal.cache.DiskLruCache$Entry: java.lang.String key -androidx.constraintlayout.widget.R$attr: int constraintSet -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean getForecastHourly() -com.google.android.material.appbar.AppBarLayout: void setExpanded(boolean) -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getRingerMode() -com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_android_popupBackground -androidx.swiperefreshlayout.R$attr: int font -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: ThemesContract$ThemesColumns$InstallState() -androidx.lifecycle.extensions.R$id: int action_divider -retrofit2.Utils$GenericArrayTypeImpl: java.lang.reflect.Type getGenericComponentType() -com.google.android.material.R$id: int textinput_helper_text -com.jaredrummler.android.colorpicker.R$drawable: int cpv_ic_arrow_right_black_24dp -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display2 -android.didikee.donate.R$styleable: int Toolbar_titleMarginEnd -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getBrandId() -com.google.android.material.R$anim: int abc_tooltip_enter -wangdaye.com.geometricweather.R$styleable: int RoundCornerTransition_radius_to -androidx.drawerlayout.widget.DrawerLayout: void setScrimColor(int) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_height_material -androidx.appcompat.widget.SearchView$SearchAutoComplete: void setSearchView(androidx.appcompat.widget.SearchView) -com.google.android.material.R$dimen: int mtrl_calendar_day_today_stroke -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemPaddingRight -james.adaptiveicon.R$styleable: int Toolbar_collapseIcon -wangdaye.com.geometricweather.R$attr -androidx.legacy.coreutils.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: java.lang.String Unit -com.google.android.material.R$styleable: int TextInputLayout_helperTextTextAppearance -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat -james.adaptiveicon.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -androidx.constraintlayout.widget.R$attr: int tooltipForegroundColor -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_5 -android.didikee.donate.R$id: int list_item -androidx.appcompat.R$styleable: int ButtonBarLayout_allowStacking -okhttp3.HttpUrl$Builder: int portColonOffset(java.lang.String,int,int) -com.github.rahatarmanahmed.cpv.CircularProgressView: boolean isIndeterminate() -retrofit2.adapter.rxjava2.CallEnqueueObservable -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float pm25 -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_TextView_SpinnerItem -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_toLeftOf -androidx.transition.R$drawable: R$drawable() -okhttp3.MultipartBody: java.util.List parts() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setIndices(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX temperature -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.ObservableSource first -io.reactivex.Observable: io.reactivex.Observable timestamp(java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -okhttp3.Cache: java.io.File directory() -wangdaye.com.geometricweather.R$string: int character_counter_content_description -wangdaye.com.geometricweather.R$string: int settings_title_refresh_rate -androidx.preference.R$id: int accessibility_custom_action_15 -okhttp3.logging.LoggingEventListener: void callEnd(okhttp3.Call) -androidx.coordinatorlayout.R$dimen: int compat_button_padding_horizontal_material -androidx.preference.R$style: int Widget_AppCompat_Spinner_Underlined -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_VALUE -androidx.lifecycle.LiveData$LifecycleBoundObserver: void detachObserver() -com.google.android.material.R$styleable: int State_android_id -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_motionTarget -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$y -androidx.activity.R$dimen: int notification_large_icon_height -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type[] getActualTypeArguments() -cyanogenmod.app.Profile: cyanogenmod.profiles.ConnectionSettings getSettingsForConnection(int) -androidx.lifecycle.LiveData$AlwaysActiveObserver: androidx.lifecycle.LiveData this$0 -android.didikee.donate.R$color: int abc_primary_text_disable_only_material_light -com.google.android.material.R$dimen: int mtrl_calendar_header_toggle_margin_bottom -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_3 -androidx.preference.PreferenceFragmentCompat -androidx.work.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_creator -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -androidx.constraintlayout.motion.widget.MotionLayout: int getEndState() -okio.Buffer: okio.BufferedSink writeIntLe(int) -androidx.hilt.R$id: int blocking -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_scaleX -cyanogenmod.weatherservice.WeatherProviderService$1: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) -wangdaye.com.geometricweather.R$xml: int widget_clock_day_week -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: double Value -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_checkedChip -com.google.android.material.R$attr: int tabPaddingBottom -cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.CMStatusBarManager sCMStatusBarManagerInstance -cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener: void onAttachedToWindow() -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$attr: int msb_hideDelayInMilliseconds -com.google.android.material.R$styleable: int[] Layout -androidx.preference.R$styleable: int SearchView_commitIcon -okio.RealBufferedSource: long readHexadecimalUnsignedLong() -androidx.drawerlayout.R$color: int notification_action_color_filter -okio.GzipSink: void close() -com.google.android.material.R$drawable: int abc_ic_clear_material -androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStoreOwner) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -androidx.constraintlayout.widget.R$attr: int menu -io.reactivex.Observable: io.reactivex.Observable throttleFirst(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -cyanogenmod.app.ILiveLockScreenChangeListener -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_counter_margin_start -wangdaye.com.geometricweather.R$attr: int errorIconTint -androidx.hilt.R$attr: int fontProviderFetchStrategy -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type valueOf(java.lang.String) -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeMinTextSize -androidx.preference.R$attr: int fragment -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -com.google.android.material.R$dimen: int material_clock_face_margin_top -wangdaye.com.geometricweather.R$color: int design_dark_default_color_error -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7 -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_overflow_padding_end_material -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayVerticalWidgetConfigActivity: Hilt_ClockDayVerticalWidgetConfigActivity() -okio.Options: Options(okio.ByteString[],int[]) -wangdaye.com.geometricweather.R$drawable: int notif_temp_68 -com.google.android.material.R$id: int scrollIndicatorUp -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderQuery -androidx.hilt.R$dimen: int notification_content_margin_start -androidx.loader.R$id: int line3 -cyanogenmod.providers.CMSettings$Secure: java.lang.String RING_HOME_BUTTON_BEHAVIOR -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Temperature -com.google.android.material.R$styleable: int MaterialButton_shapeAppearanceOverlay -com.google.android.material.R$style: int Widget_AppCompat_ButtonBar -androidx.recyclerview.R$id: int item_touch_helper_previous_elevation -androidx.constraintlayout.widget.R$attr: int actionProviderClass -android.didikee.donate.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void dispose() -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_HelperText -wangdaye.com.geometricweather.R$string: int settings_title_notification_can_be_cleared -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long firstEmission -okhttp3.Handshake -androidx.dynamicanimation.animation.SpringAnimation -com.github.rahatarmanahmed.cpv.R$attr: int cpv_progress -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionBar -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display2 -androidx.appcompat.R$styleable: int TextAppearance_textAllCaps -okhttp3.internal.cache.DiskLruCache: java.lang.String READ -androidx.appcompat.R$color: int material_deep_teal_200 -james.adaptiveicon.R$id: int search_bar -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: long serialVersionUID -androidx.drawerlayout.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_ActionBar -androidx.preference.PreferenceCategory: PreferenceCategory(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.concurrent.Callable bufferSupplier -com.google.android.material.slider.Slider: void setThumbStrokeColorResource(int) -com.google.android.material.R$attr: int srcCompat -com.google.android.material.R$attr: int trackColorInactive -com.google.android.material.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -okhttp3.Protocol: okhttp3.Protocol HTTP_1_0 -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onNext(java.lang.Object) -okhttp3.internal.cache2.FileOperator: void write(long,okio.Buffer,long) -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Call clone() -androidx.preference.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getUnitId() -cyanogenmod.weather.CMWeatherManager: android.os.Handler mHandler -wangdaye.com.geometricweather.R$integer: int mtrl_calendar_selection_text_lines -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_unregisterChangeListener -com.xw.repo.bubbleseekbar.R$styleable: int[] ListPopupWindow -okhttp3.internal.http2.ErrorCode: ErrorCode(java.lang.String,int,int) -androidx.lifecycle.ProcessLifecycleOwner: void activityPaused() -androidx.constraintlayout.widget.R$attr: int buttonPanelSideLayout -com.turingtechnologies.materialscrollbar.R$attr: int autoCompleteTextViewStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitationDuration() -androidx.loader.R$id -wangdaye.com.geometricweather.R$interpolator: int mtrl_fast_out_linear_in -james.adaptiveicon.R$styleable: int[] AppCompatImageView -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_icon_padding -androidx.hilt.R$integer -okio.RealBufferedSource$1: int available() -androidx.constraintlayout.widget.R$id: int time -com.xw.repo.bubbleseekbar.R$style: int Widget_Compat_NotificationActionContainer -okhttp3.internal.http.HttpHeaders: HttpHeaders() -wangdaye.com.geometricweather.R$styleable: int Toolbar_maxButtonHeight -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_DialogWhenLarge -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: CircularRevealCoordinatorLayout(android.content.Context) -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_day -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents -androidx.appcompat.R$attr: int commitIcon -com.google.android.material.transformation.ExpandableTransformationBehavior: ExpandableTransformationBehavior(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$id: int wrap_content -androidx.viewpager.widget.ViewPager: ViewPager(android.content.Context,android.util.AttributeSet) -androidx.loader.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.R$styleable: int Constraint_flow_verticalStyle -androidx.constraintlayout.widget.R$styleable: int AlertDialog_multiChoiceItemLayout -james.adaptiveicon.R$styleable: int ActionBarLayout_android_layout_gravity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean getUrl() -com.google.android.material.R$styleable: int SwitchCompat_android_textOff -androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_android_src -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object readKey(android.database.Cursor,int) -androidx.appcompat.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean set(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowNoTitle -cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup mDefaultGroup -com.jaredrummler.android.colorpicker.R$id: int parentPanel -com.google.gson.stream.JsonWriter: boolean isHtmlSafe() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCloseDrawable -androidx.preference.R$drawable: int abc_btn_check_to_on_mtrl_000 -androidx.activity.R$styleable: int GradientColor_android_endX -android.didikee.donate.R$attr: int navigationIcon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: java.util.List getValue() -okhttp3.internal.http1.Http1Codec: okio.BufferedSink sink -androidx.viewpager2.R$styleable: int FontFamilyFont_fontWeight -okhttp3.internal.http2.Http2Reader: void close() -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) -wangdaye.com.geometricweather.R$dimen: int title_text_size -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTheme -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer wetBulbTemperature -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource) -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver INNER_DISPOSED -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean done -com.google.android.material.R$styleable: int Constraint_layout_editor_absoluteY -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -androidx.appcompat.R$attr: int customNavigationLayout -retrofit2.http.Query -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean getNames() -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontWeight -okhttp3.Cache$1: okhttp3.Response get(okhttp3.Request) -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int requestFusion(int) -james.adaptiveicon.R$style: int Widget_AppCompat_Button -retrofit2.Platform: java.util.List defaultConverterFactories() -androidx.constraintlayout.widget.R$color: R$color() -okio.BufferedSource: int readInt() -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int) -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: long serialVersionUID -okhttp3.FormBody$Builder: okhttp3.FormBody build() -wangdaye.com.geometricweather.db.entities.DaoMaster: void dropAllTables(org.greenrobot.greendao.database.Database,boolean) -com.google.android.material.R$styleable: int AppCompatTextView_autoSizePresetSizes -androidx.hilt.R$id: int italic -androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context,android.util.AttributeSet) -retrofit2.Call: void cancel() -androidx.work.R$id: int tag_accessibility_pane_title -androidx.preference.R$dimen: int notification_action_text_size -androidx.constraintlayout.widget.R$attr: int transitionEasing -com.google.gson.JsonIOException: JsonIOException(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid -androidx.recyclerview.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_range_start_hint -androidx.preference.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider valueOf(java.lang.String) -com.google.android.material.R$style: int Widget_AppCompat_ActionButton_CloseMode -wangdaye.com.geometricweather.R$color: int mtrl_btn_ripple_color -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Title -android.didikee.donate.R$styleable: int SwitchCompat_thumbTint -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotation -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.R$attr: int listChoiceBackgroundIndicator -androidx.work.impl.utils.futures.AbstractFuture: java.lang.Object value -androidx.legacy.coreutils.R$string -okhttp3.internal.Util: okio.ByteString UTF_32_BE_BOM -wangdaye.com.geometricweather.R$color: int primary_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_ellipsize -androidx.vectordrawable.R$id: int tag_accessibility_heading -androidx.preference.R$styleable: int AppCompatTheme_actionDropDownStyle -okhttp3.Headers$Builder: java.util.List namesAndValues -androidx.appcompat.R$attr: int actionModeSelectAllDrawable -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean cancelled -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar -androidx.appcompat.R$styleable: int ActionMenuItemView_android_minWidth -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: void onFailure(retrofit2.Call,java.lang.Throwable) -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_middle_mtrl_dark -com.google.android.material.R$attr: int mock_showLabel -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -com.jaredrummler.android.colorpicker.R$layout: int abc_action_mode_bar -okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallbackPossible(javax.net.ssl.SSLSocket) -androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStore,androidx.lifecycle.ViewModelProvider$Factory) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setContent(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean) -cyanogenmod.app.ProfileGroup: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Primary -wangdaye.com.geometricweather.R$animator: int weather_clear_day_1 -com.google.android.material.slider.Slider: void setThumbStrokeWidthResource(int) -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxPlain() -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -cyanogenmod.externalviews.KeyguardExternalView$8: boolean val$showing -wangdaye.com.geometricweather.R$layout: int design_layout_tab_icon -androidx.appcompat.R$styleable: int SearchView_commitIcon -james.adaptiveicon.R$styleable: int Toolbar_menu -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: int getStatus() -io.reactivex.Observable: io.reactivex.Observable timestamp() -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_height -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: java.util.List value -androidx.appcompat.R$color: int bright_foreground_material_dark -com.google.android.material.R$style: int Base_Widget_AppCompat_ActivityChooserView -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_closeIcon -androidx.constraintlayout.widget.R$attr: int iconTintMode -androidx.appcompat.R$styleable: int MenuView_android_verticalDivider -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: int UnitType -com.google.android.material.R$style: int Widget_AppCompat_ImageButton -com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_Primary -androidx.appcompat.widget.AppCompatEditText: android.text.Editable getText() -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_android_elevation -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Large -androidx.fragment.R$id: int accessibility_custom_action_23 -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayGammaCalibration(int,int[]) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.List value -io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.functions.Function,io.reactivex.ObservableSource) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void truncateFinal() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getEn_US() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -org.greenrobot.greendao.AbstractDao: void saveInTx(java.lang.Iterable) -okhttp3.internal.Util: java.util.Comparator NATURAL_ORDER -com.google.android.material.R$styleable: int StateListDrawable_android_constantSize -androidx.lifecycle.reactivestreams.R -com.jaredrummler.android.colorpicker.R$attr: int negativeButtonText -com.bumptech.glide.R$id: int notification_main_column_container -wangdaye.com.geometricweather.R$id: int baseline -cyanogenmod.app.PartnerInterface: java.lang.String MODIFY_NETWORK_SETTINGS_PERMISSION -androidx.appcompat.R$id: int search_voice_btn -wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text -androidx.preference.R$attr: int actionViewClass -androidx.preference.R$styleable: int Preference_android_persistent -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_padding_start_material -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_popupTheme -wangdaye.com.geometricweather.R$attr: int textAllCaps -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit F -org.greenrobot.greendao.AbstractDao: void attachEntity(java.lang.Object,java.lang.Object,boolean) -android.didikee.donate.R$attr: int icon -wangdaye.com.geometricweather.R$color: int material_on_background_emphasis_high_type -androidx.transition.R$id: int ghost_view -androidx.coordinatorlayout.R$layout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getTempMax() -io.reactivex.Observable: io.reactivex.Observable sorted() -androidx.preference.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.internal.fuseable.SimpleQueue queue -android.didikee.donate.R$styleable: int Toolbar_logo -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: long serialVersionUID -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean residentPosition -androidx.core.app.ComponentActivity -androidx.dynamicanimation.R$attr: int fontProviderPackage -androidx.preference.R$styleable: int LinearLayoutCompat_android_orientation -okio.RealBufferedSource: int select(okio.Options) -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -okhttp3.EventListener: void callEnd(okhttp3.Call) -androidx.core.app.CoreComponentFactory: CoreComponentFactory() -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRainPrecipitation(java.lang.Float) -com.google.gson.stream.JsonReader: int NUMBER_CHAR_DECIMAL -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_cursor_material -com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -wangdaye.com.geometricweather.R$layout: int widget_day_pixel -wangdaye.com.geometricweather.R$attr: int splitTrack -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit[] values() -wangdaye.com.geometricweather.R$id: int add -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onNext(java.lang.Object) -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -com.google.android.material.R$styleable: int MenuGroup_android_visible -retrofit2.HttpServiceMethod: retrofit2.HttpServiceMethod parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method,retrofit2.RequestFactory) -com.google.android.material.circularreveal.CircularRevealFrameLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration -com.xw.repo.bubbleseekbar.R$string: int status_bar_notification_info_overflow -okhttp3.ConnectionSpec$Builder -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SeekBar -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder authenticator(okhttp3.Authenticator) -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void cancelLiveLockScreen(java.lang.String,int,int) -james.adaptiveicon.R$style: int Theme_AppCompat_Light -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPm10(java.lang.Float) -wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationY -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Primary -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableBottomCompat -wangdaye.com.geometricweather.R$color: int mtrl_text_btn_text_color_selector -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_track -androidx.work.impl.WorkDatabase_Impl -wangdaye.com.geometricweather.db.entities.MinutelyEntity: MinutelyEntity() -wangdaye.com.geometricweather.R$attr: int endIconContentDescription -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: boolean hasPermissions(android.content.Context) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.bumptech.glide.integration.okhttp.R$dimen: R$dimen() -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored -wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line1_head_interpolator -okhttp3.ConnectionPool$1: ConnectionPool$1(okhttp3.ConnectionPool) -com.turingtechnologies.materialscrollbar.R$id: int left -com.google.android.material.R$attr: int region_widthLessThan -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitationDuration() -com.google.android.material.R$styleable: int AppCompatTextView_textLocale -androidx.appcompat.R$attr: int autoSizeMaxTextSize -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginStart -retrofit2.RequestFactory$Builder: java.lang.String PARAM -com.google.android.material.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge -androidx.preference.R$attr: int textLocale -androidx.constraintlayout.widget.R$attr: int theme -com.google.android.material.R$anim: int abc_slide_out_top -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_track_size -okhttp3.internal.http.RealInterceptorChain: int connectTimeout -com.xw.repo.bubbleseekbar.R$attr: int textAppearancePopupMenuHeader -com.google.android.material.R$styleable: int MenuView_subMenuArrow -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_android_checkable -androidx.viewpager2.R$styleable: int RecyclerView_layoutManager -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getEndIconContentDescription() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windDirection -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTint -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display2 -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: ObservableRetryBiPredicate$RetryBiObserver(io.reactivex.Observer,io.reactivex.functions.BiPredicate,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) -com.google.android.material.R$attr: int layout_constraintLeft_creator -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String HOMESCREEN_URI -com.google.android.material.R$styleable: int CardView_contentPaddingTop -com.google.android.material.R$styleable: int NavigationView_itemIconTint -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginTop -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_disabled_material_light -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Small_Inverse -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView -com.turingtechnologies.materialscrollbar.R$id: int icon -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setLongitude(java.lang.String) -com.turingtechnologies.materialscrollbar.R$string: int path_password_eye_mask_strike_through -androidx.constraintlayout.utils.widget.ImageFilterView: void setOverlay(boolean) -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_disableDependentsState -androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveOffset -com.google.android.material.R$styleable: int OnClick_clickAction -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout -wangdaye.com.geometricweather.R$attr: int dragDirection -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_updatesContinuously -com.google.gson.internal.LinkedTreeMap: void removeInternal(com.google.gson.internal.LinkedTreeMap$Node,boolean) -androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.LifecycleRegistry mRegistry -androidx.fragment.R$style: int TextAppearance_Compat_Notification_Line2 -com.google.android.material.R$styleable: int Slider_thumbColor -com.google.android.material.R$dimen: int disabled_alpha_material_dark -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabView -androidx.preference.R$id: int accessibility_custom_action_8 -android.didikee.donate.R$drawable: int abc_seekbar_tick_mark_material -androidx.preference.R$id: int normal -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action) -androidx.appcompat.R$dimen: int notification_media_narrow_margin -androidx.vectordrawable.R$style -androidx.constraintlayout.widget.R$id: int checked -okhttp3.internal.ws.RealWebSocket$1: okhttp3.internal.ws.RealWebSocket this$0 -james.adaptiveicon.R$attr: int selectableItemBackgroundBorderless -wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_unselected -okio.RealBufferedSource: java.lang.String readUtf8LineStrict() -com.turingtechnologies.materialscrollbar.R$attr: int counterOverflowTextAppearance -android.didikee.donate.R$styleable: int AppCompatTheme_android_windowIsFloating -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String MONTH -androidx.customview.R$styleable: int FontFamilyFont_android_ttcIndex -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: PrecipitationProbability(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -androidx.customview.R$id: int line3 -androidx.preference.R$color: int abc_tint_switch_track -com.google.android.material.R$styleable: int Constraint_android_orientation -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_LABEL -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_variablePadding -androidx.appcompat.R$id: int list_item -james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlActivated -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_36dp -androidx.appcompat.R$style: int Theme_AppCompat -wangdaye.com.geometricweather.R$attr: int tickColor -cyanogenmod.os.Build$CM_VERSION_CODES: Build$CM_VERSION_CODES() -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: android.os.IBinder asBinder() -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.work.ListenableWorker: ListenableWorker(android.content.Context,androidx.work.WorkerParameters) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_seek_step_section -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: byte[] readPersistentBytes(java.lang.String) -com.google.android.material.R$attr: int daySelectedStyle -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder retryOnConnectionFailure(boolean) -wangdaye.com.geometricweather.R$dimen: int abc_dialog_corner_radius_material -com.google.android.material.R$drawable: int abc_ic_star_black_36dp -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: org.reactivestreams.Subscription receiver -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getShortUVDescription() -okhttp3.internal.http2.Http2Connection: void awaitPong() -cyanogenmod.weather.WeatherInfo: int describeContents() -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_UK -wangdaye.com.geometricweather.R$attr: int textInputStyle -okhttp3.internal.cache.CacheInterceptor$1: okio.BufferedSource val$source -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int limit -com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String type -com.google.android.material.textfield.TextInputLayout: void setEnabled(boolean) -androidx.lifecycle.ClassesInfoCache: java.util.Map mCallbackMap -okio.Buffer: long indexOf(byte) -wangdaye.com.geometricweather.R$dimen: int abc_search_view_preferred_height -com.google.android.material.R$styleable: int GradientColor_android_endY -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitationProbability -com.turingtechnologies.materialscrollbar.R$anim: int abc_fade_in -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingBottom -androidx.constraintlayout.widget.R$attr: int listPopupWindowStyle -androidx.recyclerview.R$id: int action_text -cyanogenmod.providers.CMSettings$Global: long getLong(android.content.ContentResolver,java.lang.String) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String THEME_ID -wangdaye.com.geometricweather.R$attr: int animate_relativeTo -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicInteger wip -androidx.lifecycle.SavedStateHandle: androidx.lifecycle.SavedStateHandle createHandle(android.os.Bundle,android.os.Bundle) -cyanogenmod.providers.CMSettings: boolean LOCAL_LOGV -cyanogenmod.profiles.LockSettings$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.common.basic.models.weather.UV: boolean isValid() -com.google.android.material.chip.Chip: void setBackgroundTintList(android.content.res.ColorStateList) -cyanogenmod.profiles.AirplaneModeSettings: int mValue -com.jaredrummler.android.colorpicker.R$styleable: int[] MenuView -wangdaye.com.geometricweather.R$drawable: int notif_temp_58 -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_min_width_minor -com.google.android.material.R$dimen: int mtrl_calendar_content_padding -androidx.lifecycle.ClassesInfoCache$CallbackInfo: void invokeCallbacks(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) -androidx.appcompat.R$drawable: int tooltip_frame_dark -wangdaye.com.geometricweather.R$styleable: int Chip_android_textColor -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min -com.google.android.material.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.R$attr: int dayStyle -io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable[] values() -androidx.constraintlayout.widget.R$styleable: int[] KeyAttribute -io.reactivex.internal.subscriptions.BasicQueueSubscription: void request(long) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents -okhttp3.internal.http2.Http2Connection$Listener: void onSettings(okhttp3.internal.http2.Http2Connection) -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingLeft -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_fontFamily -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: float mMax -androidx.legacy.coreutils.R$id: int action_divider -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircle -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Button -androidx.lifecycle.LiveData: int mVersion -retrofit2.RequestBuilder: void addPart(okhttp3.Headers,okhttp3.RequestBody) -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float getMilliMeters(float) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTemperature(int) -com.google.android.material.R$string: int material_timepicker_hour -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_normal_pressed -james.adaptiveicon.R$drawable: int abc_list_divider_mtrl_alpha -androidx.legacy.coreutils.R$integer: R$integer() -androidx.swiperefreshlayout.R$id: int icon -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: int UnitType -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetStart -androidx.preference.R$style: int TextAppearance_Compat_Notification_Title -androidx.preference.R$dimen: int abc_dialog_corner_radius_material -okhttp3.internal.connection.StreamAllocation: okhttp3.Route route() -androidx.constraintlayout.widget.R$drawable: int abc_tab_indicator_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animDuration -wangdaye.com.geometricweather.R$color: int primary_text_disabled_material_light -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_activated_mtrl_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getLtoDestination() -com.xw.repo.bubbleseekbar.R$attr: int spinnerDropDownItemStyle -retrofit2.ParameterHandler$HeaderMap -com.google.android.material.R$drawable: int abc_edit_text_material -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableRight -com.xw.repo.bubbleseekbar.R$layout: int notification_template_custom_big -androidx.preference.R$styleable: int[] ViewStubCompat -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_middle_mtrl_dark -androidx.lifecycle.MethodCallsLogger: MethodCallsLogger() -androidx.constraintlayout.widget.R$dimen: int notification_media_narrow_margin -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean mainDone -io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function,io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$attr: int layout_constraintEnd_toStartOf -com.google.android.material.slider.Slider: int getTrackWidth() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory HIGH -androidx.recyclerview.R$attr: int fontProviderPackage -android.didikee.donate.R$styleable: int AppCompatTheme_colorControlNormal -io.reactivex.internal.util.NotificationLite: boolean acceptFull(java.lang.Object,io.reactivex.Observer) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWetBulbTemperature(java.lang.Integer) -androidx.lifecycle.ReportFragment$ActivityInitializationListener -com.google.android.material.R$styleable: int KeyTimeCycle_android_rotation -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_111 -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type valueOf(java.lang.String) -com.google.android.material.R$dimen: int mtrl_calendar_selection_baseline_to_top_fullscreen -com.xw.repo.bubbleseekbar.R$drawable: int notification_template_icon_bg -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.CompletableObserver downstream -androidx.loader.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String ShortPhrase -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableRight -james.adaptiveicon.R$styleable: int SearchView_voiceIcon -com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_android_button -com.google.android.material.R$attr: int materialCalendarHeaderSelection -androidx.appcompat.R$dimen: int abc_text_size_button_material -wangdaye.com.geometricweather.R$drawable: int shortcuts_snow -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner -okhttp3.Route: Route(okhttp3.Address,java.net.Proxy,java.net.InetSocketAddress) -androidx.appcompat.R$attr: int checkboxStyle -okhttp3.internal.http2.Http2Reader: boolean nextFrame(boolean,okhttp3.internal.http2.Http2Reader$Handler) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: AccuCurrentResult$PrecipitationSummary() -androidx.appcompat.widget.AlertDialogLayout: AlertDialogLayout(android.content.Context,android.util.AttributeSet) -androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_icon -wangdaye.com.geometricweather.R$attr: int bsb_seek_step_section -com.google.android.material.R$anim: int mtrl_card_lowers_interpolator -wangdaye.com.geometricweather.R$id: int textinput_error -com.google.android.material.R$attr: int windowActionModeOverlay -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_creator -com.turingtechnologies.materialscrollbar.R$dimen: int abc_disabled_alpha_material_dark -androidx.constraintlayout.widget.R$styleable: int KeyCycle_motionProgress -io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator valueOf(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveOffset -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMargin -okhttp3.Response: boolean isSuccessful() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String unit -androidx.drawerlayout.R$style -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float rain -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_Surface -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService$1 this$1 -com.google.android.material.R$id: int action_bar_title -com.turingtechnologies.materialscrollbar.R$attr: int autoSizeStepGranularity -androidx.core.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$id: int selection_type -androidx.preference.R$drawable: int abc_ic_star_half_black_36dp -wangdaye.com.geometricweather.db.entities.DailyEntity: int getDaytimeTemperature() -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.R$styleable: int SearchView_suggestionRowLayout -wangdaye.com.geometricweather.R$style: int TestStyleWithoutLineHeight -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree nighttimeWindDegree -com.google.android.material.R$attr: int materialCalendarDay -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeFindDrawable -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: long serialVersionUID -androidx.constraintlayout.widget.R$drawable: int abc_list_divider_material -com.google.android.material.R$styleable: int[] FloatingActionButton_Behavior_Layout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX) -com.bumptech.glide.R$dimen: int notification_top_pad -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: boolean isLeft -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActivityChooserView -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_19 -io.reactivex.internal.observers.LambdaObserver: boolean hasCustomOnError() -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_NAME -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$dimen: int abc_disabled_alpha_material_light -androidx.transition.R$id: int action_image -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: double lon -com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context,android.util.AttributeSet,int) -okhttp3.OkHttpClient: int readTimeoutMillis() -com.google.gson.internal.LazilyParsedNumber: java.lang.Object writeReplace() -androidx.appcompat.R$attr: int buttonStyle -wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment -androidx.preference.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_DES_CBC_SHA -androidx.constraintlayout.widget.R$styleable: int TextAppearance_fontVariationSettings -cyanogenmod.app.LiveLockScreenManager -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: float getDistance(float) -com.google.android.material.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.R$string: int wind_chill_temperature -io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit) -io.reactivex.Observable: io.reactivex.Observable buffer(int) -androidx.preference.R$styleable: int SwitchPreference_switchTextOff -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerError(java.lang.Throwable) -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_arrow -android.didikee.donate.R$styleable: int[] ActivityChooserView -com.github.rahatarmanahmed.cpv.CircularProgressView$8 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeCloudCover -com.google.android.material.slider.RangeSlider: int getTrackSidePadding() -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int limit -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String type -com.bumptech.glide.R$id: int async -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_RESET -com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Determinate -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_spinnerStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: AccuDailyResult$DailyForecasts$RealFeelTemperature() -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -okio.Buffer: boolean rangeEquals(okio.Segment,int,okio.ByteString,int,int) -okhttp3.internal.ws.RealWebSocket$Streams -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder callFactory(okhttp3.Call$Factory) -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetStart -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.R$attr: int editTextStyle -com.google.android.material.R$styleable: int Constraint_flow_horizontalAlign -androidx.appcompat.R$styleable: int GradientColor_android_tileMode -com.google.gson.stream.JsonReader: int peekedNumberLength -androidx.appcompat.R$color: int abc_primary_text_material_dark -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long index -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_27 -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_inputType -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.preference.R$styleable: int GradientColor_android_startColor -androidx.loader.R$dimen: int compat_button_inset_horizontal_material -androidx.appcompat.R$id: int italic -android.didikee.donate.R$styleable: int ActionMode_background -androidx.appcompat.widget.ActionMenuView: int getPopupTheme() -com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_text_size_2line -androidx.core.R$drawable: int notification_action_background -com.turingtechnologies.materialscrollbar.R$attr: int checkedIconEnabled -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: CNWeatherResult$Life$Info() -androidx.vectordrawable.R$id: int tag_accessibility_clickable_spans -androidx.cardview.R$attr: int cardCornerRadius -com.google.android.material.textfield.TextInputEditText: void setTextInputLayoutFocusedRectEnabled(boolean) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ListPopupWindow -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_expandedHintEnabled -retrofit2.RequestBuilder: java.lang.String canonicalizeForPath(java.lang.String,boolean) -cyanogenmod.os.Build: java.lang.String getNameForSDKInt(int) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display3 -okhttp3.internal.connection.RealConnection: void onSettings(okhttp3.internal.http2.Http2Connection) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_HourlyEntityListQuery -com.bumptech.glide.R$styleable: int[] FontFamilyFont -com.turingtechnologies.materialscrollbar.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Long id -com.google.android.material.R$dimen: int mtrl_switch_thumb_elevation -com.google.android.material.R$dimen: int design_appbar_elevation -androidx.hilt.work.R$id: int accessibility_custom_action_24 -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NAME -androidx.constraintlayout.widget.R$id: int icon_group -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int LOW_NOTIFICATION_STATE -com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_Tooltip -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: long produced -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDefaultPhoneSub -androidx.preference.R$styleable: int MenuItem_android_enabled -james.adaptiveicon.R$drawable: int notification_bg_low -androidx.constraintlayout.widget.R$id: int NO_DEBUG -okio.BufferedSource: void skip(long) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabTextStyle -io.reactivex.Observable: io.reactivex.Observable doAfterNext(io.reactivex.functions.Consumer) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String LanguageCode -com.google.android.material.R$styleable: int KeyAttribute_android_translationX -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Type -com.jaredrummler.android.colorpicker.R$styleable: int[] DrawerArrowToggle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: CaiYunForecastResult() -androidx.constraintlayout.widget.R$attr: int alertDialogButtonGroupStyle -okhttp3.internal.tls.BasicCertificateChainCleaner: okhttp3.internal.tls.TrustRootIndex trustRootIndex -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_DayTextView -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getDesiredWidth() -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_icon -androidx.preference.R$attr: int thumbTint -wangdaye.com.geometricweather.R$color: int dim_foreground_disabled_material_dark -com.google.android.material.appbar.AppBarLayout: void setLiftOnScroll(boolean) -androidx.appcompat.widget.SearchView: int getSuggestionRowLayout() -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabAlignmentMode -androidx.viewpager2.R$styleable: int FontFamily_fontProviderCerts -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorHeight -wangdaye.com.geometricweather.R$styleable: int MaterialTextView_lineHeight -cyanogenmod.weather.ICMWeatherManager$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitationProbability(java.lang.Float) -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mVibrateMode -androidx.preference.R$attr: int showDividers -androidx.preference.R$styleable: int Toolbar_contentInsetEnd -com.google.android.material.R$attr: int layout_constraintEnd_toStartOf -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_keyline -okhttp3.internal.http2.Http2Connection$7: okhttp3.internal.http2.Http2Connection this$0 -com.jaredrummler.android.colorpicker.R$dimen: int notification_right_icon_size -androidx.work.R$id: int action_container -okhttp3.ResponseBody: okhttp3.MediaType contentType() -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginStart(int) -okio.Buffer: okio.Buffer writeUtf8(java.lang.String,int,int) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -wangdaye.com.geometricweather.R$styleable: int[] MultiSelectListPreference -androidx.appcompat.widget.AppCompatTextView: void setTextFuture(java.util.concurrent.Future) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Invalid -wangdaye.com.geometricweather.R$attr: int itemTextAppearanceInactive -androidx.appcompat.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: java.lang.String Hex -androidx.appcompat.R$dimen: int abc_text_size_medium_material -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_pathMotionArc -com.google.android.material.chip.Chip: void setEllipsize(android.text.TextUtils$TruncateAt) -com.google.android.material.R$attr: int windowNoTitle -androidx.lifecycle.R -com.google.android.material.R$drawable: int abc_btn_colored_material -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -com.google.android.material.R$styleable: int Layout_barrierAllowsGoneWidgets -retrofit2.Retrofit -wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_activated_mtrl_alpha -androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context,android.util.AttributeSet) -androidx.viewpager2.R$id: int tag_accessibility_clickable_spans -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver) -james.adaptiveicon.R$color: int switch_thumb_normal_material_light -androidx.core.app.CoreComponentFactory -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: io.reactivex.subjects.UnicastSubject this$0 -com.turingtechnologies.materialscrollbar.R$attr: int enforceTextAppearance -androidx.recyclerview.widget.RecyclerView -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_arrowHeadLength -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void dispose() -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTheme -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfRain -james.adaptiveicon.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -androidx.activity.R$id: int accessibility_custom_action_22 -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayVerticalProvider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setValue(java.util.List) -com.jaredrummler.android.colorpicker.R$styleable: int RecycleListView_paddingTopNoTitle -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: boolean handles(android.content.Intent) -wangdaye.com.geometricweather.R$dimen: int clock_face_margin_start -androidx.appcompat.widget.LinearLayoutCompat: int getVirtualChildCount() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: void setValue(java.lang.String) -cyanogenmod.app.IProfileManager$Stub$Proxy: void removeNotificationGroup(android.app.NotificationGroup) -android.didikee.donate.R$dimen: int abc_text_size_headline_material -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_material -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_padding_material -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontVariationSettings -cyanogenmod.weather.WeatherInfo: int access$302(cyanogenmod.weather.WeatherInfo,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean -android.didikee.donate.R$styleable: int SwitchCompat_android_thumb -wangdaye.com.geometricweather.R$id: int activity_widget_config_scrollView -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_maximum_default_fullscreen_minor_axis -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$000() -com.google.android.material.R$attr: int flow_verticalStyle -com.google.android.material.R$color: int mtrl_popupmenu_overlay_color -wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_showOldColor -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -androidx.drawerlayout.R$layout: int notification_template_icon_group -androidx.preference.R$id: int screen -cyanogenmod.profiles.BrightnessSettings: int mValue -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_chainStyle -com.google.android.material.bottomappbar.BottomAppBar: void setFabCradleMargin(float) -androidx.recyclerview.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setColor(boolean) -com.google.android.material.R$attr: int tabContentStart -androidx.viewpager.R$id: int action_divider -cyanogenmod.app.ICMTelephonyManager: boolean isSubActive(int) -cyanogenmod.providers.CMSettings$DelimitedListValidator: CMSettings$DelimitedListValidator(java.lang.String[],java.lang.String,boolean) -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator -wangdaye.com.geometricweather.R$attr: int errorIconTintMode -com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_Dialog -androidx.lifecycle.LifecycleRegistry: void forwardPass(androidx.lifecycle.LifecycleOwner) -androidx.recyclerview.R$dimen: int notification_subtext_size -androidx.work.R$styleable: int FontFamilyFont_android_fontWeight -com.google.android.material.R$attr: int contentPaddingRight -com.google.android.material.R$styleable: int ConstraintSet_flow_maxElementsWrap -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String value -wangdaye.com.geometricweather.R$drawable: int notif_temp_6 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_fontVariationSettings -okhttp3.Request$Builder: okhttp3.Request build() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_MD5 -androidx.appcompat.R$dimen: int notification_content_margin_start -android.didikee.donate.R$color: int dim_foreground_material_dark -androidx.customview.R$dimen: int notification_top_pad_large_text -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper[] values() -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.Observer downstream -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: java.lang.Object poll() -wangdaye.com.geometricweather.R$attr: int windowFixedWidthMinor -androidx.preference.R$style: int Theme_AppCompat_Light_Dialog_Alert -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_BRIGHTNESS_CONTROL -androidx.vectordrawable.animated.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_only_end_selected -android.didikee.donate.R$drawable: int abc_text_select_handle_middle_mtrl_light -androidx.preference.R$style: int Widget_AppCompat_DrawerArrowToggle -androidx.appcompat.resources.R$drawable: int notification_bg_low_normal -com.google.android.material.timepicker.TimePickerView: void setOnPeriodChangeListener(com.google.android.material.timepicker.TimePickerView$OnPeriodChangeListener) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextBackground -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: AccuDailyResult$DailyForecasts$Night$Wind() -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_logo -wangdaye.com.geometricweather.db.entities.HistoryEntity: int getDaytimeTemperature() -android.didikee.donate.R$styleable: int Spinner_popupTheme -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetTop -wangdaye.com.geometricweather.R$animator: int design_fab_show_motion_spec -wangdaye.com.geometricweather.R$string: int settings_category_notification -wangdaye.com.geometricweather.R$dimen: int current_weather_icon_size -androidx.preference.R$attr: int switchTextOn -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceTheme -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_textAppearance -retrofit2.ParameterHandler$1 -android.didikee.donate.R$color: int switch_thumb_normal_material_dark -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.util.AtomicThrowable errors -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_23 -androidx.swiperefreshlayout.R$dimen: int notification_small_icon_background_padding -androidx.vectordrawable.R$integer: int status_bar_notification_info_maxnum -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_menu -okhttp3.internal.connection.StreamAllocation: java.net.Socket releaseIfNoNewStreams() -androidx.work.R$id: int blocking -com.google.gson.internal.LinkedTreeMap: int size() -androidx.preference.R$style: int Theme_AppCompat_DialogWhenLarge -com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getStartIconDrawable() -androidx.legacy.coreutils.R$color -androidx.appcompat.R$attr: int dialogCornerRadius -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_width -android.didikee.donate.R$style: int Widget_AppCompat_ActionMode -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -com.google.android.material.R$attr: int tabIndicatorGravity -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: double Value -com.turingtechnologies.materialscrollbar.R$anim: int abc_tooltip_exit -okio.Buffer: okio.ByteString sha1() -androidx.dynamicanimation.R$integer -retrofit2.ParameterHandler$Header: void apply(retrofit2.RequestBuilder,java.lang.Object) -cyanogenmod.providers.CMSettings$Secure: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTintMode -wangdaye.com.geometricweather.R$layout: int design_text_input_start_icon -com.jaredrummler.android.colorpicker.R$attr: int initialActivityCount -androidx.constraintlayout.widget.R$id: int scrollIndicatorUp -james.adaptiveicon.R$styleable: int[] MenuItem -androidx.preference.R$attr: int spanCount -androidx.drawerlayout.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$id: int container_main_header -wangdaye.com.geometricweather.R$id: int transparency_title -android.didikee.donate.R$style: int Widget_AppCompat_ActionButton -james.adaptiveicon.R$style: int Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.R$attr: int itemTextColor -wangdaye.com.geometricweather.R$styleable: int[] ShapeAppearance -com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Light_Dialog -com.google.android.material.R$plurals -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: int prefetch -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getRain() -androidx.recyclerview.R$color: R$color() -cyanogenmod.themes.IThemeService$Stub$Proxy: void unregisterThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) -cyanogenmod.externalviews.ExternalViewProviderService$1$1: cyanogenmod.externalviews.ExternalViewProviderService$1 this$1 -io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.functions.Consumer) -androidx.viewpager2.R$attr: int fontProviderCerts -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_padding_top_material -cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getActiveProfile() -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_snackbar_margin_horizontal -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_82 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitationDuration() -androidx.core.R$styleable: int GradientColor_android_startColor -com.xw.repo.bubbleseekbar.R$attr: int dialogCornerRadius -james.adaptiveicon.R$dimen: int abc_progress_bar_height_material -com.jaredrummler.android.colorpicker.R$attr: int shouldDisableView -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_android_gravity -wangdaye.com.geometricweather.R$integer: int hide_password_duration -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event[] $VALUES -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$styleable: int Constraint_pathMotionArc -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleContainer -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogPreferredPadding -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_font -androidx.constraintlayout.widget.R$drawable: int btn_radio_on_mtrl -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pubTime -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_viewInflaterClass -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float so2 -androidx.appcompat.R$dimen: int notification_action_icon_size -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_padding_end_material -com.google.android.material.R$string: int mtrl_picker_range_header_title -wangdaye.com.geometricweather.R$id: int disableHome -androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_84 -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_toId -androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context) -james.adaptiveicon.R$dimen: int abc_text_size_subtitle_material_toolbar -okhttp3.internal.http2.Http2Connection: long degradedPongDeadlineNs -cyanogenmod.externalviews.KeyguardExternalView$3: void run() -androidx.appcompat.widget.SearchView: void setOnSuggestionListener(androidx.appcompat.widget.SearchView$OnSuggestionListener) -com.google.android.material.chip.Chip: void setIconEndPadding(float) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setLocationKey(java.lang.String) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_title_material -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_LOW_COLOR -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -james.adaptiveicon.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.util.List toDailyTrendDisplayList(java.lang.String) -androidx.constraintlayout.widget.R$color: int highlighted_text_material_dark -wangdaye.com.geometricweather.R$styleable: int Preference_key -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeBackground -com.google.android.material.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_FLAG_CONTROL -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: ObservableCreate$SerializedEmitter(io.reactivex.ObservableEmitter) -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorCornerRadius -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_padding -com.google.android.material.R$id: int date_picker_actions -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: java.lang.String DESCRIPTOR -androidx.customview.R$string: int status_bar_notification_info_overflow -androidx.appcompat.resources.R$id: int right_icon -james.adaptiveicon.R$layout: int abc_action_menu_layout -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: ILiveLockScreenManager$Stub$Proxy(android.os.IBinder) -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: java.lang.Object value -com.jaredrummler.android.colorpicker.R$drawable: int cpv_alpha -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode CONNECT_ERROR -okhttp3.Cookie: java.lang.String path -wangdaye.com.geometricweather.R$color: int notification_action_color_filter -androidx.work.R$attr: int alpha -android.didikee.donate.R$styleable: int TextAppearance_fontFamily -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayHorizontalProvider -com.turingtechnologies.materialscrollbar.R$attr: int dividerPadding -com.google.android.material.R$styleable: int Toolbar_titleMarginStart -com.xw.repo.bubbleseekbar.R$attr: int listLayout -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: AccuDailyResult$DailyForecasts$Night$TotalLiquid() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_editor_absoluteY -wangdaye.com.geometricweather.R$color: int switch_thumb_disabled_material_light -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_text_size -cyanogenmod.externalviews.KeyguardExternalView: void setProviderComponent(android.content.ComponentName) -com.xw.repo.bubbleseekbar.R$string: R$string() -androidx.recyclerview.widget.RecyclerView: void setRecycledViewPool(androidx.recyclerview.widget.RecyclerView$RecycledViewPool) -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection findConnection(int,int,int,int,boolean) -android.didikee.donate.R$string: int abc_searchview_description_voice -androidx.constraintlayout.widget.R$styleable: int[] Spinner -org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Object[]) -cyanogenmod.alarmclock.ClockContract$InstancesColumns: android.net.Uri CONTENT_URI -wangdaye.com.geometricweather.R$attr: int expandedTitleMarginBottom -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitation -androidx.constraintlayout.widget.R$attr: int overlapAnchor -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_setDefaultLiveLockScreen -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -wangdaye.com.geometricweather.R$xml: int icon_provider_animator_filter -androidx.appcompat.R$styleable: int ActionBar_background -androidx.constraintlayout.widget.R$attr: int popupMenuStyle -androidx.viewpager2.R$styleable: int GradientColorItem_android_color -com.jaredrummler.android.colorpicker.R$attr: int collapseContentDescription -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -androidx.constraintlayout.widget.R$attr: int textAppearanceSmallPopupMenu -okhttp3.MultipartBody: java.lang.String boundary() -wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_day -android.didikee.donate.R$styleable: int MenuView_android_itemIconDisabledAlpha -okhttp3.internal.http2.Hpack$Reader: void adjustDynamicTableByteCount() -androidx.constraintlayout.widget.R$id: int action_bar_title -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getPM10() -wangdaye.com.geometricweather.db.entities.AlertEntity: void setCityId(java.lang.String) -androidx.constraintlayout.widget.R$id: int async -wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndSwitch -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.appcompat.R$attr: int textAppearanceListItemSmall -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_max -wangdaye.com.geometricweather.R$dimen: int cardview_default_elevation -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: int requestFusion(int) -com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_Primary -retrofit2.http.QueryMap -android.didikee.donate.R$dimen: int abc_action_bar_icon_vertical_padding_material -androidx.legacy.coreutils.R$attr: int fontWeight -wangdaye.com.geometricweather.R$string: int briefings -androidx.lifecycle.extensions.R$color: int notification_action_color_filter -androidx.appcompat.R$color: int switch_thumb_material_dark -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_stacked_max_height -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean addProfile(cyanogenmod.app.Profile) -com.bumptech.glide.R$drawable: int notification_action_background -com.google.android.material.chip.Chip: float getCloseIconStartPadding() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitationDuration(java.lang.Float) -com.xw.repo.bubbleseekbar.R$attr: int bsb_touch_to_seek -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction -wangdaye.com.geometricweather.R$drawable: int widget_text -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft -androidx.fragment.R$id: int notification_main_column_container -com.google.android.material.R$layout -com.google.android.material.R$attr: int drawableSize -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.R$string: int key_forecast_today_time -androidx.lifecycle.LifecycleService: int onStartCommand(android.content.Intent,int,int) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void setInteractivity(boolean) -android.didikee.donate.R$styleable: int[] ActionMenuView -james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar -androidx.preference.R$style: int Base_Theme_AppCompat_DialogWhenLarge -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -james.adaptiveicon.R$dimen: int abc_button_inset_vertical_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String zh_CN -wangdaye.com.geometricweather.R$string: int wet_bulb_temperature -androidx.lifecycle.ViewModelStore: java.util.HashMap mMap -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec supportedSpec(javax.net.ssl.SSLSocket,boolean) -androidx.constraintlayout.widget.R$drawable: int abc_btn_check_material -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator PEOPLE_LOOKUP_PROVIDER_VALIDATOR -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: int hashCode() -androidx.constraintlayout.widget.Barrier: int getType() -androidx.appcompat.R$color -com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String caiyun -androidx.dynamicanimation.R$layout: R$layout() -okhttp3.internal.Util: java.nio.charset.Charset UTF_32_LE -james.adaptiveicon.R$styleable: int AppCompatTheme_editTextBackground -androidx.appcompat.R$drawable: int abc_popup_background_mtrl_mult -com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_android_alpha -androidx.hilt.lifecycle.R$string -androidx.preference.R$string: int abc_menu_alt_shortcut_label -wangdaye.com.geometricweather.R$attr: int transitionShapeAppearance -wangdaye.com.geometricweather.R$styleable: int[] PreferenceTheme -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.R$string: int not_set -com.google.android.material.R$integer -com.google.android.material.R$styleable: int AppCompatTextView_drawableBottomCompat -com.google.android.material.R$styleable: int MaterialCalendarItem_itemShapeAppearance -wangdaye.com.geometricweather.R$animator: int mtrl_fab_transformation_sheet_collapse_spec -com.google.android.material.slider.BaseSlider: int getTrackHeight() -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_xml -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onComplete() -androidx.constraintlayout.widget.R$styleable: int SearchView_layout -com.bumptech.glide.R$styleable: int FontFamily_fontProviderCerts -okhttp3.internal.cache.DiskLruCache$2: void onException(java.io.IOException) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 -android.didikee.donate.R$id: int shortcut -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: ObservableFlatMapMaybe$FlatMapMaybeObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -io.reactivex.internal.subscriptions.SubscriptionArbiter: void cancel() -androidx.appcompat.widget.AppCompatCheckBox: int getCompoundPaddingLeft() -com.google.android.material.R$styleable: int MaterialShape_shapeAppearance -james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton_Overflow -cyanogenmod.hardware.DisplayMode$1: cyanogenmod.hardware.DisplayMode[] newArray(int) -okio.BufferedSink: okio.BufferedSink writeInt(int) -androidx.fragment.R$styleable: int FontFamilyFont_ttcIndex -com.google.android.material.chip.Chip: void setCheckedIconResource(int) -com.google.android.material.R$styleable: int BottomNavigationView_itemTextAppearanceInactive -android.didikee.donate.R$layout: int notification_template_custom_big -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_android_layout -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String weatherPhase -wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity: ClockDayDetailsWidgetConfigActivity() -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.R$id: int mtrl_picker_fullscreen -okhttp3.HttpUrl$Builder: HttpUrl$Builder() -androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -okhttp3.internal.cache.CacheStrategy$Factory: long sentRequestMillis -io.reactivex.internal.util.NotificationLite: boolean accept(java.lang.Object,org.reactivestreams.Subscriber) -androidx.appcompat.R$dimen: int abc_cascading_menus_min_smallest_width -androidx.coordinatorlayout.R$id: int accessibility_custom_action_12 -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitation -wangdaye.com.geometricweather.R$string: int key_notification_color -wangdaye.com.geometricweather.R$string: int key_clock_font -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomSheet_Modal -wangdaye.com.geometricweather.R$dimen: int widget_aa_text_size -io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent INSTANCE -com.google.android.material.R$styleable: int TextAppearance_android_typeface -com.google.android.material.R$color: int mtrl_chip_text_color -wangdaye.com.geometricweather.R$styleable: int Slider_thumbColor -okio.RealBufferedSource: long indexOf(byte) -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State[] values() -androidx.appcompat.R$styleable: int MenuView_preserveIconSpacing -androidx.lifecycle.service.R: R() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDailyForecast(java.lang.String) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_padding_top_material -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status CLEARED -okhttp3.internal.http2.Hpack$Reader: okio.ByteString getName(int) -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_orderInCategory -androidx.appcompat.R$dimen: int abc_action_bar_content_inset_with_nav -androidx.vectordrawable.R$styleable -okhttp3.CacheControl$Builder -wangdaye.com.geometricweather.settings.activities.CardDisplayManageActivity: CardDisplayManageActivity() -androidx.appcompat.R$style: int Theme_AppCompat_NoActionBar -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_lightOnTouch -james.adaptiveicon.R$id: int info -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_height -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: long serialVersionUID -wangdaye.com.geometricweather.R$anim: int design_snackbar_in -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int SourceId -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -androidx.legacy.coreutils.R$styleable: int GradientColorItem_android_color -com.jaredrummler.android.colorpicker.R$color: int background_floating_material_light -androidx.appcompat.R$color: int primary_text_default_material_dark -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_background_transition_holo_dark -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getRippleColor() -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_AppBarLayout -com.jaredrummler.android.colorpicker.R$attr: int paddingTopNoTitle -androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context) -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder addCallAdapterFactory(retrofit2.CallAdapter$Factory) -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_previewSize -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerError(java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int chipIconVisible -com.jaredrummler.android.colorpicker.R$drawable: int abc_spinner_mtrl_am_alpha -io.reactivex.Observable: io.reactivex.Observable range(int,int) -androidx.preference.R$styleable: int Toolbar_logoDescription -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -com.google.android.material.transformation.FabTransformationBehavior: FabTransformationBehavior() -okhttp3.Cache$CacheRequestImpl: Cache$CacheRequestImpl(okhttp3.Cache,okhttp3.internal.cache.DiskLruCache$Editor) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display3 -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorViewAlpha(int) -com.xw.repo.bubbleseekbar.R$layout: int abc_dialog_title_material -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid -com.google.android.material.R$attr: int coordinatorLayoutStyle -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List weather -okhttp3.internal.connection.RouteSelector: okhttp3.internal.connection.RouteSelector$Selection next() -android.didikee.donate.R$styleable: int Toolbar_title -wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String getUnit() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.internal.util.AtomicThrowable errors -androidx.swiperefreshlayout.widget.SwipeRefreshLayout$SavedState: android.os.Parcelable$Creator CREATOR -okio.RealBufferedSource: void require(long) -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.util.concurrent.locks.Lock lock -com.google.android.material.R$id: int transition_position -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getMoldDescription() -wangdaye.com.geometricweather.R$string: int feedback_live_wallpaper_day_night_type -androidx.constraintlayout.widget.R$attr: int layoutDuringTransition -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String to -androidx.preference.R$color: int abc_primary_text_disable_only_material_light -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.ProcessLifecycleOwner sInstance -com.google.android.material.R$styleable: int GradientColor_android_gradientRadius -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_orderInCategory -okio.BufferedSink: okio.BufferedSink emit() -com.github.rahatarmanahmed.cpv.CircularProgressView: void onDraw(android.graphics.Canvas) -com.turingtechnologies.materialscrollbar.R$integer: int bottom_sheet_slide_duration -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -cyanogenmod.themes.IThemeProcessingListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.jaredrummler.android.colorpicker.R$attr: int activityChooserViewStyle -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_spinnerStyle -cyanogenmod.app.IPartnerInterface$Stub$Proxy -androidx.hilt.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display4 -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_dialogType -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onNext(java.lang.Object) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getInterfaceDescriptor() -okhttp3.internal.http2.Http2Reader$Handler -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_SearchView -com.google.android.material.R$attr: int fontProviderAuthority -james.adaptiveicon.R$styleable: int AlertDialog_listItemLayout -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_26 -com.google.android.material.R$drawable: int abc_list_divider_mtrl_alpha -io.reactivex.internal.util.VolatileSizeArrayList: VolatileSizeArrayList(int) -wangdaye.com.geometricweather.R$id: int item_weather_daily_uv_title -androidx.core.widget.NestedScrollView: float getTopFadingEdgeStrength() -com.google.android.material.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -com.google.android.material.R$attr: int spinBars -cyanogenmod.app.Profile$Type: Profile$Type() -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_textAllCaps -androidx.appcompat.R$attr: R$attr() -androidx.viewpager2.adapter.FragmentStateAdapter$5 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: int UnitType -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: int colorId -wangdaye.com.geometricweather.R$id: int firstVisible -com.google.android.material.R$style: int TestStyleWithoutLineHeight -androidx.fragment.R$id: int tag_screen_reader_focusable -io.reactivex.Observable: void safeSubscribe(io.reactivex.Observer) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.util.Date getDate() -androidx.drawerlayout.R$styleable: int GradientColor_android_centerY -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayGammaCalibration -okhttp3.internal.http2.Header: okio.ByteString TARGET_AUTHORITY -wangdaye.com.geometricweather.R$attr: int linearSeamless -wangdaye.com.geometricweather.R$string: int feedback_refresh_notification_after_back -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_margin -androidx.constraintlayout.widget.R$attr: int waveOffset -okhttp3.internal.cache.DiskLruCache: void readJournal() -james.adaptiveicon.R$style: int Widget_AppCompat_Light_SearchView -androidx.constraintlayout.widget.R$styleable: int ActionBar_icon -cyanogenmod.themes.IThemeService: int getLastThemeChangeRequestType() -androidx.appcompat.R$styleable: int AppCompatTheme_windowActionModeOverlay -androidx.hilt.R$id: int text2 -okio.RealBufferedSource: long indexOfElement(okio.ByteString) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -android.didikee.donate.R$styleable: int Toolbar_maxButtonHeight -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onSubscribe(org.reactivestreams.Subscription) -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceLargePopupMenu -androidx.constraintlayout.widget.R$styleable: int MenuView_subMenuArrow -com.turingtechnologies.materialscrollbar.R$attr: int thickness -androidx.constraintlayout.widget.R$styleable: int ActionBarLayout_android_layout_gravity -androidx.appcompat.R$attr: int paddingStart -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX -androidx.constraintlayout.widget.R$styleable: int View_android_theme -com.google.android.material.R$layout: int notification_action -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow1h -androidx.preference.R$attr: int allowDividerBelow -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.lifecycle.EmptyActivityLifecycleCallbacks -androidx.appcompat.resources.R$id: int time -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable -androidx.recyclerview.R$string -com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_4 -com.google.android.material.R$attr: int fastScrollHorizontalThumbDrawable -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.Scheduler$Worker worker -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: int getStatus() -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Borderless -androidx.recyclerview.widget.RecyclerView$LayoutManager: RecyclerView$LayoutManager() -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_keylines -com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_close_circle -wangdaye.com.geometricweather.R$id: int peekHeight -wangdaye.com.geometricweather.R$dimen: int design_title_text_size -cyanogenmod.profiles.RingModeSettings: RingModeSettings(java.lang.String,boolean) -androidx.preference.R$layout: int expand_button -okio.Okio$2: Okio$2(okio.Timeout,java.io.InputStream) -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog_Alert -androidx.constraintlayout.widget.R$attr: int region_heightLessThan -wangdaye.com.geometricweather.R$string: int abc_searchview_description_search -androidx.transition.R$string -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_dither -cyanogenmod.profiles.StreamSettings$1: cyanogenmod.profiles.StreamSettings[] newArray(int) -androidx.hilt.work.R$attr: int font -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -james.adaptiveicon.R$styleable: int AppCompatTheme_listMenuViewStyle -okio.ForwardingSource: java.lang.String toString() -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int HIDE_NOTIFICATION_STATE -com.xw.repo.bubbleseekbar.R$anim: int abc_tooltip_exit -io.reactivex.Observable: io.reactivex.Observable doOnDispose(io.reactivex.functions.Action) -com.turingtechnologies.materialscrollbar.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$styleable: int[] PopupWindowBackgroundState -wangdaye.com.geometricweather.settings.activities.SelectProviderActivity: SelectProviderActivity() -wangdaye.com.geometricweather.R$attr: int errorEnabled -wangdaye.com.geometricweather.R$attr: int placeholder_emptyVisibility -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetLeft -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonStyleSmall -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_allowPresets -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$color: int accent_material_light -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -androidx.preference.R$style: int Base_Widget_AppCompat_Button_Small -com.google.android.material.R$styleable: int TextAppearance_android_shadowColor -androidx.core.R$id: int tag_accessibility_heading -okio.ByteString: okio.ByteString of(byte[],int,int) -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getTotal() -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.swiperefreshlayout.R$id: int tag_transition_group -androidx.preference.R$id: int tag_accessibility_actions -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void drain() -wangdaye.com.geometricweather.R$dimen: int notification_action_text_size -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean isDisposed() -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.util.List contextList -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeSplitBackground -com.google.gson.stream.JsonReader: int peekKeyword() -wangdaye.com.geometricweather.R$attr: int labelStyle -com.google.android.material.snackbar.Snackbar$SnackbarLayout -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_gravity -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setHideMotionSpecResource(int) -wangdaye.com.geometricweather.R$layout: int widget_text_end -androidx.preference.R$color: int switch_thumb_normal_material_dark -com.google.android.material.R$layout: int abc_alert_dialog_title_material -com.google.android.material.R$styleable: int Transform_android_transformPivotY -com.google.android.material.R$styleable: int TabItem_android_layout -com.google.android.material.R$attr: int barrierDirection -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade() -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node find(java.lang.Object,boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingTop -cyanogenmod.externalviews.IExternalViewProvider$Stub: cyanogenmod.externalviews.IExternalViewProvider asInterface(android.os.IBinder) -androidx.preference.R$styleable: int DrawerArrowToggle_gapBetweenBars -com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_PrimarySurface -wangdaye.com.geometricweather.R$string: int key_widget_week -androidx.viewpager.R$id: int notification_background -wangdaye.com.geometricweather.R$id: int tag_accessibility_clickable_spans -android.didikee.donate.R$style: int Base_Widget_AppCompat_EditText -androidx.recyclerview.R$id: int accessibility_custom_action_24 -okhttp3.ResponseBody: okio.BufferedSource source() -androidx.fragment.app.FragmentState: android.os.Parcelable$Creator CREATOR -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_min_width_major -androidx.viewpager.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.R$styleable: int[] FragmentContainerView -androidx.hilt.work.R$id: int action_image -androidx.viewpager.R$color: R$color() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -okhttp3.internal.http.BridgeInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: android.os.IBinder asBinder() -com.google.android.material.R$dimen: int mtrl_card_elevation -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: void spValue(java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_queryHint -io.reactivex.internal.schedulers.ScheduledRunnable: boolean isDisposed() -james.adaptiveicon.R$dimen: int notification_subtext_size -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -android.didikee.donate.R$attr: int titleTextColor -com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Light_Dialog -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: AccuCurrentResult$TemperatureSummary$Past12HourRange() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorEnabled -cyanogenmod.externalviews.KeyguardExternalView$10 -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_MediumComponent -cyanogenmod.hardware.ICMHardwareService$Stub: ICMHardwareService$Stub() -wangdaye.com.geometricweather.main.layouts.MainLayoutManager -androidx.recyclerview.R$id: int accessibility_custom_action_3 -com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorError -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean delayError -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_percent -com.google.android.material.R$layout: int design_menu_item_action_area -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_percent -androidx.preference.R$string: int summary_collapsed_preference_list -wangdaye.com.geometricweather.R$string: int phase_full -androidx.work.R$id: int line3 -androidx.appcompat.R$attr: int displayOptions -com.jaredrummler.android.colorpicker.ColorPickerView: java.lang.String getAlphaSliderText() -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_colorShape -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Spinner_Underlined -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -cyanogenmod.weather.WeatherInfo: double access$1202(cyanogenmod.weather.WeatherInfo,double) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeShareDrawable -androidx.constraintlayout.widget.R$drawable: int tooltip_frame_light -okio.HashingSink: okio.HashingSink sha512(okio.Sink) -wangdaye.com.geometricweather.R$id: int moldIcon -androidx.preference.R$attr: int iconTintMode -wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_height_major -okhttp3.FormBody: okhttp3.MediaType CONTENT_TYPE -io.reactivex.Observable: io.reactivex.Observable delaySubscription(io.reactivex.ObservableSource) -com.google.android.material.R$dimen: int mtrl_card_checked_icon_margin -wangdaye.com.geometricweather.R$layout: int abc_activity_chooser_view -androidx.preference.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_enabled -android.didikee.donate.R$styleable: int AlertDialog_singleChoiceItemLayout -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -androidx.transition.R$styleable: int ColorStateListItem_android_alpha -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -wangdaye.com.geometricweather.R$drawable: int abc_list_divider_material -cyanogenmod.profiles.RingModeSettings: RingModeSettings(android.os.Parcel) -okhttp3.Cache$CacheResponseBody$1: Cache$CacheResponseBody$1(okhttp3.Cache$CacheResponseBody,okio.Source,okhttp3.internal.cache.DiskLruCache$Snapshot) -io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.hilt.R$styleable: int GradientColor_android_startY -james.adaptiveicon.R$attr: int height -android.didikee.donate.R$styleable: int ViewBackgroundHelper_backgroundTintMode -androidx.viewpager2.R$dimen: int item_touch_helper_swipe_escape_velocity -cyanogenmod.weather.WeatherLocation: android.os.Parcelable$Creator CREATOR -cyanogenmod.app.suggest.AppSuggestManager: boolean handles(android.content.Intent) -androidx.work.impl.WorkManagerInitializer -com.google.android.material.R$layout: int material_clockface_view -retrofit2.Retrofit$Builder: okhttp3.Call$Factory callFactory -com.google.android.material.R$attr: int boxCollapsedPaddingTop -com.github.rahatarmanahmed.cpv.CircularProgressView: int thickness -com.turingtechnologies.materialscrollbar.R$drawable: int abc_vector_test -james.adaptiveicon.R$styleable: int TextAppearance_android_shadowColor -com.xw.repo.bubbleseekbar.R$id: int right_icon -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMark -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider mExternalViewProvider -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getSO2() -wangdaye.com.geometricweather.R$attr: int msb_rightToLeft -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.ErrorCode errorCode -wangdaye.com.geometricweather.R$id: int withinBounds -androidx.lifecycle.FullLifecycleObserverAdapter: androidx.lifecycle.LifecycleEventObserver mLifecycleEventObserver -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.ILiveLockScreenManager sService -cyanogenmod.externalviews.KeyguardExternalViewProviderService -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ProgressBar -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_Switch -wangdaye.com.geometricweather.R$id: int item_weather_daily_uv_icon -androidx.work.R$styleable: int FontFamilyFont_ttcIndex -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$drawable: int notif_temp_29 -cyanogenmod.weather.RequestInfo: java.lang.String toString() -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button -androidx.recyclerview.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixText -retrofit2.Utils: boolean isAnnotationPresent(java.lang.annotation.Annotation[],java.lang.Class) -okhttp3.Cache$CacheResponseBody: okio.BufferedSource source() -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryInnerObserver BOUNDARY_DISPOSED -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_color -io.reactivex.Observable: io.reactivex.Observable onErrorResumeNext(io.reactivex.functions.Function) -com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialCardView -wangdaye.com.geometricweather.R$string -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Error -okhttp3.internal.http2.Http2Connection$Listener$1: void onStream(okhttp3.internal.http2.Http2Stream) -wangdaye.com.geometricweather.R$color: int background_floating_material_light -com.google.android.material.R$styleable: int Layout_layout_editor_absoluteX -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String BriefPhrase -androidx.preference.R$id: int submit_area -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: int UnitType -cyanogenmod.profiles.BrightnessSettings: boolean mOverride -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runAsync() -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_icon -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_material -androidx.hilt.work.R$drawable: int notify_panel_notification_icon_bg -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: android.os.IBinder asBinder() -androidx.vectordrawable.R$id: int action_divider -wangdaye.com.geometricweather.R$styleable: int Preference_title -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: boolean cancelled -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -okhttp3.Response: java.lang.String message() -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.ObservableSource source -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -com.google.android.material.R$styleable: int Constraint_android_rotationY -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String direct -androidx.appcompat.R$attr: int windowActionBarOverlay -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2 -com.google.android.material.R$styleable: int Chip_chipIconTint -com.xw.repo.bubbleseekbar.R$color: int secondary_text_default_material_dark -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_padding -android.didikee.donate.R$styleable: int[] MenuGroup -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: AccuAlertResult() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -com.google.android.material.R$color: int material_on_background_emphasis_high_type -com.google.android.material.R$animator: int mtrl_fab_transformation_sheet_collapse_spec -com.google.android.material.R$attr: int editTextBackground -androidx.activity.R$id: int accessibility_custom_action_3 -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver(io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver) -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dark -com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_max -androidx.preference.R$attr: int actionMenuTextColor -androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMarkTintMode -wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_container -okhttp3.internal.http1.Http1Codec: int STATE_READING_RESPONSE_BODY -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColorItem_android_color -androidx.activity.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableStart -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: android.os.IBinder asBinder() -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -okhttp3.logging.LoggingEventListener: long startNs -androidx.constraintlayout.widget.R$dimen: int tooltip_y_offset_non_touch -okhttp3.internal.http2.Http2Codec: okhttp3.Response$Builder readResponseHeaders(boolean) -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getLightsMode() -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void dispose() -wangdaye.com.geometricweather.R$attr: int trackTintMode -okhttp3.Handshake: okhttp3.Handshake get(javax.net.ssl.SSLSession) -io.reactivex.Observable: io.reactivex.Observable sorted(java.util.Comparator) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int AppBarLayoutStates_state_collapsed -wangdaye.com.geometricweather.R$dimen: int cpv_item_size -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void run() -wangdaye.com.geometricweather.R$layout: int mtrl_picker_actions -android.didikee.donate.R$attr: int drawableSize -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_material_dark -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_COLOR_VALIDATOR -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_android_max -androidx.appcompat.R$attr: int dialogTheme -cyanogenmod.providers.DataUsageContract: java.lang.String CONTENT_ITEM_TYPE -wangdaye.com.geometricweather.R$attr: int barrierMargin -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setEncodedPathSegment(int,java.lang.String) -androidx.lifecycle.extensions.R$id: int italic -androidx.constraintlayout.widget.R$drawable: int abc_item_background_holo_dark -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_SETTINGS -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 -androidx.fragment.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_elevation -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -io.reactivex.internal.util.ArrayListSupplier: java.lang.Object call() -james.adaptiveicon.R$dimen: int notification_main_column_padding_top -androidx.vectordrawable.animated.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial -cyanogenmod.app.ProfileGroup: boolean validateOverrideUri(android.content.Context,android.net.Uri) -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_framePosition -androidx.preference.R$styleable: int AppCompatTheme_actionBarTabBarStyle -androidx.recyclerview.widget.RecyclerView: void setItemViewCacheSize(int) -com.turingtechnologies.materialscrollbar.R$attr: int gapBetweenBars -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink -com.xw.repo.bubbleseekbar.R$attr: int bsb_auto_adjust_section_mark -com.google.android.material.R$bool: int abc_config_actionMenuItemAllCaps -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_INTENSITY_INDEX -androidx.preference.R$styleable: int RecyclerView_android_orientation -james.adaptiveicon.R$drawable: int abc_text_cursor_material -androidx.lifecycle.LiveData$1: void run() -androidx.appcompat.R$style: int Widget_AppCompat_SearchView_ActionBar -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean,int,int) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetEndWithActions -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitation(java.lang.Float) -wangdaye.com.geometricweather.R$color: int colorTextTitle_light -com.jaredrummler.android.colorpicker.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_EditTextPreference -androidx.transition.R$dimen: int compat_control_corner_material -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display2 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Counter_Overflow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial -com.bumptech.glide.integration.okhttp.R$color: int notification_icon_bg_color -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void innerError(io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver,java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int helperTextTextColor -android.didikee.donate.R$styleable: int Toolbar_titleMarginTop -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -com.google.android.material.chip.ChipGroup: void setDividerDrawableHorizontal(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$layout: int widget_clock_day_rectangle -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeDegreeDayTemperature(java.lang.Integer) -androidx.legacy.coreutils.R$id: int notification_background -com.google.android.material.textfield.TextInputLayout: void setHint(java.lang.CharSequence) -okhttp3.WebSocket: boolean send(okio.ByteString) -com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_circle_large -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_splitTrack -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Small -androidx.preference.R$dimen: int notification_main_column_padding_top -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_ON_VALIDATOR -androidx.lifecycle.SavedStateHandleController$OnRecreation -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -retrofit2.ParameterHandler$Headers -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder pushObserver(okhttp3.internal.http2.PushObserver) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -okhttp3.OkHttpClient: okhttp3.Cache cache() -androidx.hilt.lifecycle.R$style -androidx.preference.R$dimen: int hint_alpha_material_dark -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setTextColor(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_top -cyanogenmod.app.CustomTile: java.lang.String label -james.adaptiveicon.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -androidx.preference.R$styleable: int DialogPreference_dialogMessage -io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent valueOf(java.lang.String) -james.adaptiveicon.R$drawable: int abc_ic_arrow_drop_right_black_24dp -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: IKeyguardExternalViewCallbacks$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderDivider -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_xmlIcon -androidx.core.R$style: int Widget_Compat_NotificationActionText -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -okhttp3.CacheControl$Builder: int maxAgeSeconds -wangdaye.com.geometricweather.R$string: int key_location_service -cyanogenmod.weather.WeatherInfo$1 -androidx.viewpager2.R$layout: int notification_action -okio.AsyncTimeout: java.io.IOException newTimeoutException(java.io.IOException) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_9 -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog -com.google.android.material.R$styleable: int KeyAttribute_android_transformPivotX -androidx.fragment.app.FragmentActivity: FragmentActivity() -com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast -com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart -wangdaye.com.geometricweather.R$style: int Platform_V21_AppCompat_Light -com.google.android.material.R$styleable: int TabLayout_tabIconTintMode -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorBackgroundFloating -wangdaye.com.geometricweather.R$attr: int initialExpandedChildrenCount -androidx.appcompat.R$id: int action_bar_title -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void dispose() -androidx.recyclerview.R$id: int accessibility_custom_action_30 -okhttp3.internal.publicsuffix.PublicSuffixDatabase: void readTheList() -androidx.appcompat.R$attr: int buttonIconDimen -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitleTextAppearance -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: MfWarningsResult$WarningTimelaps$WarningTimelapsItem() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarSize -androidx.preference.R$styleable: int DialogPreference_android_dialogTitle -james.adaptiveicon.R$styleable: int AppCompatTheme_switchStyle -com.google.gson.internal.LinkedTreeMap -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_default -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_max -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -androidx.customview.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$attr: int background_color -com.google.android.material.R$attr: int subMenuArrow -com.xw.repo.bubbleseekbar.R$attr: int titleMargin -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintStart_toEndOf -io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate) -com.jaredrummler.android.colorpicker.R$bool -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginEnd -org.greenrobot.greendao.DaoException: DaoException() -androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$attr: int tabIconTintMode -androidx.swiperefreshlayout.R$attr: int fontProviderFetchTimeout -android.didikee.donate.R$attr: int homeAsUpIndicator -com.jaredrummler.android.colorpicker.R$attr: int arrowHeadLength -okhttp3.internal.Util: int delimiterOffset(java.lang.String,int,int,java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Pm10 -androidx.work.R$id: int accessibility_custom_action_6 -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_android_enabled -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date -wangdaye.com.geometricweather.db.entities.HourlyEntity: int temperature -wangdaye.com.geometricweather.R$string: int v7_preference_off -androidx.recyclerview.R$style: int Widget_Compat_NotificationActionText -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Large -wangdaye.com.geometricweather.R$dimen: int abc_dialog_title_divider_material -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_iconTint -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay day() -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: io.reactivex.Scheduler scheduler -com.google.android.material.bottomappbar.BottomAppBar: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() -android.didikee.donate.R$styleable: int AppCompatTheme_dialogPreferredPadding -com.google.android.material.imageview.ShapeableImageView: void setStrokeWidth(float) -okhttp3.Address: okhttp3.CertificatePinner certificatePinner() -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setUseSessionTickets -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -retrofit2.HttpServiceMethod$SuspendForResponse: retrofit2.CallAdapter callAdapter -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: boolean isAsync -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: AccuDailyResult$DailyForecasts$Moon() -androidx.appcompat.R$layout: int abc_action_menu_layout -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_gradientRadius -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherSuccess(java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_weight -androidx.appcompat.R$attr: int textAppearanceListItemSecondary -okhttp3.internal.connection.RealConnection: int MAX_TUNNEL_ATTEMPTS -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource[],io.reactivex.functions.Function,int) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode[] getDisplayModes() -james.adaptiveicon.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.R$attr: int closeIcon -wangdaye.com.geometricweather.R$drawable: int notif_temp_98 -android.support.v4.graphics.drawable.IconCompatParcelizer -com.google.android.material.R$styleable: int Constraint_flow_lastHorizontalStyle -okhttp3.internal.http2.Http2Connection$Listener -io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver valueOf(java.lang.String) -james.adaptiveicon.R$string: int abc_action_mode_done -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: int UnitType -okhttp3.HttpUrl: okhttp3.HttpUrl$Builder newBuilder(java.lang.String) -com.google.android.material.R$styleable: int Transform_android_elevation -androidx.drawerlayout.R$styleable: int GradientColor_android_centerColor -com.bumptech.glide.integration.okhttp.R$styleable: int[] GradientColor -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder minFresh(int,java.util.concurrent.TimeUnit) -cyanogenmod.app.Profile: void setConnectionSettings(cyanogenmod.profiles.ConnectionSettings) -androidx.preference.R$color: int abc_background_cache_hint_selector_material_dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial -androidx.cardview.widget.CardView: float getMaxCardElevation() -com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display3 -okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method getMethod -com.jaredrummler.android.colorpicker.R$attr: int allowDividerBelow -androidx.preference.R$styleable: int[] PopupWindow -androidx.lifecycle.LifecycleRegistry$ObserverWithState -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_font -james.adaptiveicon.R$color: int secondary_text_default_material_dark -com.google.android.material.R$attr: int materialCalendarMonth -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService access$400() -com.google.android.material.R$styleable: int CardView_contentPadding -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_elevation -cyanogenmod.platform.Manifest$permission: java.lang.String READ_DATAUSAGE -wangdaye.com.geometricweather.R$id: int dialog_location_help_providerTitle -androidx.appcompat.R$styleable: int GradientColor_android_centerX -james.adaptiveicon.R$attr: int overlapAnchor -androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_4_material -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayColorCalibration(int[]) -wangdaye.com.geometricweather.R$styleable: int Slider_android_stepSize -com.google.android.material.R$attr: int layout_goneMarginLeft -org.greenrobot.greendao.AbstractDaoSession: long insertOrReplace(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: int getStatus() -android.didikee.donate.R$id: int submit_area -android.didikee.donate.R$dimen: int abc_control_inset_material -wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_toBottomOf -wangdaye.com.geometricweather.R$dimen: int mtrl_card_checked_icon_margin -com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrimColor(int) -wangdaye.com.geometricweather.R$color: int design_fab_shadow_start_color -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon -androidx.preference.EditTextPreference: EditTextPreference(android.content.Context,android.util.AttributeSet) -androidx.transition.R$styleable: int FontFamilyFont_font -androidx.vectordrawable.animated.R$drawable: int notification_tile_bg -com.turingtechnologies.materialscrollbar.R$attr: int popupTheme -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.util.List value -androidx.appcompat.widget.ActionBarOverlayLayout: int getActionBarHideOffset() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Medium_Inverse -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getCityId() -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge -okhttp3.internal.http2.Http2Stream$FramingSink: void close() -wangdaye.com.geometricweather.R$layout: int cpv_preference_circle -wangdaye.com.geometricweather.settings.dialogs.WechatDonateDialog: WechatDonateDialog() -com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextEnabled(boolean) -androidx.lifecycle.LifecycleEventObserver -androidx.appcompat.R$dimen: int abc_control_corner_material -wangdaye.com.geometricweather.settings.activities.DailyTrendDisplayManageActivity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setNo2(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: AccuCurrentResult$Wind() -androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_1_material -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarTitle -james.adaptiveicon.R$attr: int elevation -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_toBottomOf -com.turingtechnologies.materialscrollbar.R$attr: int switchTextAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemIconSize -com.google.android.material.R$style: int Widget_Design_FloatingActionButton -androidx.drawerlayout.R$color: int secondary_text_default_material_light -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_height_material -wangdaye.com.geometricweather.R$attr: int itemShapeInsetBottom -androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -com.google.android.material.R$layout: int material_clock_period_toggle -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabStyle -androidx.preference.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -com.jaredrummler.android.colorpicker.R$color: int accent_material_light -com.google.android.material.timepicker.TimePickerView: void setOnActionUpListener(com.google.android.material.timepicker.ClockHandView$OnActionUpListener) -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay[] values() -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter beginArray() -wangdaye.com.geometricweather.R$drawable: int ic_donate -com.google.android.material.card.MaterialCardView: android.graphics.RectF getBoundsAsRectF() -wangdaye.com.geometricweather.R$layout: int preference_widget_seekbar_material -com.google.android.material.R$attr: int path_percent -okhttp3.internal.http2.Header: okio.ByteString value -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWeatherStart(java.lang.String) -wangdaye.com.geometricweather.R$string: int next -cyanogenmod.hardware.ICMHardwareService$Stub -androidx.appcompat.widget.ActionMenuView: void setPopupTheme(int) -wangdaye.com.geometricweather.R$styleable: int Preference_enableCopying -wangdaye.com.geometricweather.R$string: int settings_title_trend_horizontal_line_switch -wangdaye.com.geometricweather.R$drawable: int material_ic_calendar_black_24dp -cyanogenmod.alarmclock.ClockContract$AlarmsColumns -cyanogenmod.providers.CMSettings$System: java.lang.String HEADSET_CONNECT_PLAYER -wangdaye.com.geometricweather.R$color: int design_snackbar_background_color -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getNO2() -james.adaptiveicon.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction -com.google.android.material.card.MaterialCardView: void setBackground(android.graphics.drawable.Drawable) -androidx.appcompat.R$styleable: int SearchView_closeIcon -com.google.android.material.R$styleable: int CompoundButton_android_button -okhttp3.internal.http2.Http2Connection$3: void execute() -com.google.android.material.R$attr: int layout_constraintLeft_toRightOf -androidx.drawerlayout.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int FragmentContainerView_android_name -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String LocalizedName -com.xw.repo.bubbleseekbar.R$styleable: int[] StateListDrawable -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetBottom -android.didikee.donate.R$attr: int dialogPreferredPadding -androidx.appcompat.R$attr: int track -wangdaye.com.geometricweather.R$id: int activity_chooser_view_content -cyanogenmod.hardware.CMHardwareManager: boolean get(int) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Surface -android.didikee.donate.R$style: int TextAppearance_AppCompat_Display1 -com.google.android.material.button.MaterialButton: void removeOnCheckedChangeListener(com.google.android.material.button.MaterialButton$OnCheckedChangeListener) -io.reactivex.internal.observers.BlockingObserver -io.reactivex.exceptions.CompositeException: int size() -james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -com.google.android.material.R$style: int Widget_Design_TabLayout -io.reactivex.Observable: io.reactivex.Observable mergeArrayDelayError(io.reactivex.ObservableSource[]) -com.jaredrummler.android.colorpicker.R$layout: int abc_cascading_menu_item_layout -wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_material -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_customNavigationLayout -wangdaye.com.geometricweather.R$styleable: int MaterialButton_shapeAppearanceOverlay -androidx.appcompat.R$attr: int buttonBarNegativeButtonStyle -com.google.android.material.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration -androidx.hilt.R$style: int TextAppearance_Compat_Notification_Time -okhttp3.internal.http1.Http1Codec$ChunkedSink: void write(okio.Buffer,long) -james.adaptiveicon.R$style: int Base_Theme_AppCompat_CompactMenu -okhttp3.internal.ws.RealWebSocket: void writePingFrame() -android.didikee.donate.R$styleable: int MenuView_android_verticalDivider -com.google.android.material.R$styleable: int MaterialCardView_checkedIconTint -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -okhttp3.internal.http2.Hpack$Writer: void clearDynamicTable() -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: void setTextColors(int) -com.google.android.material.R$dimen: int mtrl_tooltip_cornerSize -wangdaye.com.geometricweather.db.entities.WeatherEntity: int getTemperature() -com.google.android.material.R$color: int material_blue_grey_950 -androidx.hilt.R$styleable: int FontFamilyFont_font -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceOverline -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_checked_circle -com.turingtechnologies.materialscrollbar.R$attr: int thumbTintMode -com.google.android.material.R$styleable: int Toolbar_android_minHeight -io.reactivex.internal.util.NotificationLite$ErrorNotification: long serialVersionUID -cyanogenmod.app.ProfileGroup: void writeToParcel(android.os.Parcel,int) -cyanogenmod.providers.CMSettings$Secure$1: java.lang.String mDelimiter -com.google.android.material.R$attr: int buttonPanelSideLayout -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder cipherSuites(okhttp3.CipherSuite[]) -okio.GzipSource -okio.ForwardingTimeout: okio.Timeout clearDeadline() -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setExpandedStyle(cyanogenmod.app.CustomTile$ExpandedStyle) -okhttp3.internal.connection.RouteException: java.io.IOException lastException -com.google.android.material.R$color: int design_fab_shadow_start_color -wangdaye.com.geometricweather.R$string: int feedback_interpret_background_notification_content -com.turingtechnologies.materialscrollbar.R$dimen: int abc_seekbar_track_background_height_material -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.R$layout: int notification_template_part_time -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -wangdaye.com.geometricweather.R$attr: int paddingBottomNoButtons -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_Surface -com.google.android.material.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -io.reactivex.internal.subscribers.StrictSubscriber: void onNext(java.lang.Object) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWindLevel -okhttp3.Handshake: java.util.List localCertificates -androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog -androidx.constraintlayout.widget.R$styleable: int ActionBar_itemPadding -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource ACCU -androidx.appcompat.R$attr: int titleMargins -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat -com.turingtechnologies.materialscrollbar.R$anim: int design_snackbar_in -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty3H -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_android_enabled -android.didikee.donate.R$attr: int actionButtonStyle -okhttp3.internal.cache2.Relay$RelaySource: long read(okio.Buffer,long) -wangdaye.com.geometricweather.settings.fragments.SettingsFragment -wangdaye.com.geometricweather.R$attr: int iconStartPadding -com.google.android.material.R$styleable: int Constraint_android_rotation -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerError(int,java.lang.Throwable) -com.google.android.material.snackbar.Snackbar$SnackbarLayout: Snackbar$SnackbarLayout(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$layout: int abc_screen_simple_overlay_action_mode -com.google.android.material.R$attr: int errorTextColor -okhttp3.internal.http.HttpMethod: HttpMethod() -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setMinuteInterval(int) -androidx.appcompat.widget.AppCompatAutoCompleteTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -io.reactivex.internal.operators.observable.ObserverResourceWrapper: boolean isDisposed() -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.util.List textHtml -wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -com.bumptech.glide.integration.okhttp.R$id: int right -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setSunDrawable(android.graphics.drawable.Drawable) -cyanogenmod.externalviews.ExternalView: cyanogenmod.externalviews.ExternalViewProperties mExternalViewProperties -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_selectableItemBackground -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_transitionEasing -androidx.lifecycle.SavedStateHandleController: void attachHandleIfNeeded(androidx.lifecycle.ViewModel,androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) -wangdaye.com.geometricweather.R$attr: int crossfade -james.adaptiveicon.R$id: int textSpacerNoTitle -com.google.android.material.appbar.HeaderScrollingViewBehavior: HeaderScrollingViewBehavior(android.content.Context,android.util.AttributeSet) -cyanogenmod.themes.ThemeChangeRequest$Builder: java.util.Map mThemeComponents -androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_toTopOf -com.google.android.material.R$attr: int state_lifted -wangdaye.com.geometricweather.R$animator: int weather_snow_3 -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody build() -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void disposeInner() -com.google.android.material.R$styleable: int CollapsingToolbarLayout_toolbarId -com.turingtechnologies.materialscrollbar.R$id: int action_menu_presenter -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_closeIcon -com.turingtechnologies.materialscrollbar.R$bool -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_3 -okhttp3.internal.Internal: Internal() -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_button_material -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin -wangdaye.com.geometricweather.R$id: int cpv_color_picker_view -com.google.android.material.R$styleable: int Slider_tickColorInactive -com.google.gson.FieldNamingPolicy$1: FieldNamingPolicy$1(java.lang.String,int) -com.jaredrummler.android.colorpicker.R$attr: int overlapAnchor -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_Switch -com.google.android.material.R$dimen: int abc_text_size_title_material -com.google.android.material.R$attr: int dragDirection -io.reactivex.internal.disposables.DisposableHelper -wangdaye.com.geometricweather.R$color: int colorSearchBarBackground_light -okhttp3.internal.http2.Http2Stream$StreamTimeout: Http2Stream$StreamTimeout(okhttp3.internal.http2.Http2Stream) -wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment: void setOnWeatherSourceChangedListener(wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment$OnWeatherSourceChangedListener) -androidx.preference.R$style: int TextAppearance_Compat_Notification_Time -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onSuccess(java.lang.Object) -com.google.android.material.R$styleable: int Transform_android_rotation -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterOverflowTextColor -com.google.android.material.R$styleable: int Transform_android_translationX -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_scaleY -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_barThickness -androidx.activity.R$id: R$id() -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Snapshot get(java.lang.String) -wangdaye.com.geometricweather.R$string: int key_distance_unit -androidx.appcompat.R$styleable: int AppCompatTextView_drawableRightCompat -com.google.android.material.R$styleable: int Layout_layout_constraintGuide_percent -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver -com.bumptech.glide.R$layout: int notification_template_part_time -com.google.android.material.R$string: int mtrl_picker_a11y_prev_month -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getFontThemePackageName() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdwd -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: java.util.ArrayDeque buffers -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric -wangdaye.com.geometricweather.R$id: int textinput_prefix_text -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain3h -com.jaredrummler.android.colorpicker.R$color: int abc_tint_edittext -cyanogenmod.app.Profile$TriggerState -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit -james.adaptiveicon.R$attr: int listPreferredItemPaddingLeft -androidx.constraintlayout.widget.R$styleable: int KeyPosition_motionTarget -cyanogenmod.weather.WeatherInfo: double access$402(cyanogenmod.weather.WeatherInfo,double) -okhttp3.internal.http2.Http2Connection: long access$708(okhttp3.internal.http2.Http2Connection) -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startY -android.didikee.donate.R$style: int Platform_V21_AppCompat -okhttp3.EventListener$2: EventListener$2(okhttp3.EventListener) -androidx.constraintlayout.widget.R$styleable: int MenuItem_contentDescription -androidx.core.R$id: int accessibility_custom_action_15 -com.xw.repo.bubbleseekbar.R$layout: int abc_cascading_menu_item_layout -james.adaptiveicon.R$id: int buttonPanel -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogMessage -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: java.lang.Float value -androidx.hilt.lifecycle.R$id: int actions -wangdaye.com.geometricweather.R$string: int local_time -androidx.preference.R$id: int action_divider -com.google.android.material.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding -okhttp3.Cookie: long expiresAt() -androidx.transition.R$style: int Widget_Compat_NotificationActionContainer -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_iconTintMode -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_baselineAligned -com.jaredrummler.android.colorpicker.R$id: int edit_query -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_get -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: int phenomenonId -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_warmth -retrofit2.adapter.rxjava2.HttpException: HttpException(retrofit2.Response) -cyanogenmod.app.Profile: cyanogenmod.profiles.BrightnessSettings getBrightness() -cyanogenmod.media.MediaRecorder: java.lang.String EXTRA_CURRENT_PACKAGE_NAME -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Invalid -com.google.android.material.tabs.TabLayout$TabView: int getContentWidth() -com.jaredrummler.android.colorpicker.R$attr: int fontProviderFetchTimeout -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_visible -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_dialog -okhttp3.internal.http.HttpCodec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) -retrofit2.ParameterHandler$Field: boolean encoded -retrofit2.HttpException: java.lang.String message() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -android.didikee.donate.R$styleable: int ActionMode_titleTextStyle -com.turingtechnologies.materialscrollbar.R$anim: int abc_grow_fade_in_from_bottom -com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_background_color -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void drain() -okio.RealBufferedSource: void close() -androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyle -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button -androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$attr: int fastScrollVerticalTrackDrawable -wangdaye.com.geometricweather.R$color: int mtrl_chip_surface_color -androidx.recyclerview.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_Solid -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_progress -com.google.android.material.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -androidx.preference.R$styleable: int SwitchCompat_thumbTextPadding -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_overflow_padding_start_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -androidx.appcompat.R$color: int notification_action_color_filter -androidx.appcompat.R$layout: int abc_popup_menu_item_layout -android.didikee.donate.R$attr: int collapseIcon -com.google.android.material.R$styleable: int AppCompatTheme_actionModeStyle -okhttp3.Interceptor$Chain: okhttp3.Response proceed(okhttp3.Request) -wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_chainStyle -wangdaye.com.geometricweather.R$attr: int msb_scrollMode -cyanogenmod.profiles.ConnectionSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -android.didikee.donate.R$styleable: int CompoundButton_buttonTint -okio.Options: okio.Options of(okio.ByteString[]) -wangdaye.com.geometricweather.R$id: int editText -android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_CheckBox -androidx.lifecycle.extensions.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_73 -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: java.lang.String desc -com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Linear -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA -retrofit2.Retrofit$1: java.lang.Object invoke(java.lang.Object,java.lang.reflect.Method,java.lang.Object[]) -androidx.preference.R$attr: int dialogIcon -io.reactivex.Observable: io.reactivex.Observable buffer(int,int,java.util.concurrent.Callable) -com.google.android.material.R$dimen: int mtrl_alert_dialog_picker_background_inset -com.google.android.material.R$id: int accessibility_custom_action_7 -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void startTimeout(long) -androidx.viewpager.R$styleable: int GradientColorItem_android_color -com.google.android.material.R$styleable: int Layout_android_layout_width -androidx.preference.R$dimen: int abc_action_bar_icon_vertical_padding_material -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionBarLayout -okio.ByteString: int hashCode() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth -james.adaptiveicon.R$style: int Widget_AppCompat_ListView_Menu -androidx.constraintlayout.widget.R$attr: int actionBarStyle -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_stacked_tab_max_width -wangdaye.com.geometricweather.R$drawable: int ic_running_in_background -com.google.android.material.R$attr: int tintMode -io.reactivex.internal.subscriptions.DeferredScalarSubscription: void complete(java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_maxButtonHeight -androidx.constraintlayout.widget.R$attr: int voiceIcon -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: android.graphics.Rect getWindowInsets() -androidx.core.R$color: int androidx_core_secondary_text_default_material_light -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: int quality -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: int getChartBottom() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: int UnitType -okhttp3.internal.http.CallServerInterceptor: boolean forWebSocket -io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Action onComplete -okhttp3.Response$Builder: okhttp3.Response$Builder networkResponse(okhttp3.Response) -okhttp3.internal.http2.Http2Reader: void readPing(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -androidx.lifecycle.ClassesInfoCache$MethodReference: int mCallType -wangdaye.com.geometricweather.R$id: int action_menu_divider -androidx.preference.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -okhttp3.Request: okhttp3.Headers headers() -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Connection$ReaderRunnable readerRunnable -com.turingtechnologies.materialscrollbar.R$attr: int theme -android.didikee.donate.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -com.google.android.material.R$color: int bright_foreground_inverse_material_dark -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean cancelled -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf -androidx.preference.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -androidx.hilt.work.R$id: int accessibility_custom_action_8 -okhttp3.Cookie$Builder: java.lang.String domain -android.support.v4.os.IResultReceiver$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -androidx.appcompat.R$attr: int spinnerDropDownItemStyle -james.adaptiveicon.R$attr: int listPreferredItemPaddingRight -wangdaye.com.geometricweather.R$id: int container_main_footer_editButton -okio.BufferedSource: long readHexadecimalUnsignedLong() -android.didikee.donate.R$style: int Base_V7_Widget_AppCompat_EditText -androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -com.bumptech.glide.integration.okhttp.R$dimen: int notification_top_pad -com.google.gson.stream.JsonWriter: boolean serializeNulls -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: android.app.Application mApplication -androidx.lifecycle.AbstractSavedStateViewModelFactory -james.adaptiveicon.R$styleable: int Toolbar_titleMarginStart -com.google.android.material.R$drawable: int ic_keyboard_black_24dp -wangdaye.com.geometricweather.R$attr: int drawableSize -androidx.preference.R$styleable: int[] PreferenceGroup -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -com.google.android.material.R$integer: int mtrl_btn_anim_duration_ms -wangdaye.com.geometricweather.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_light -com.google.android.material.internal.CheckableImageButton: void setChecked(boolean) -com.xw.repo.bubbleseekbar.R$attr: int track -wangdaye.com.geometricweather.R$id: int material_hour_text_input -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_cardForegroundColor -androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.R$dimen: int mtrl_card_spacing -com.google.android.material.R$dimen: int abc_dropdownitem_text_padding_right -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_indicator_material -com.xw.repo.BubbleSeekBar: int getProgress() -wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format -com.xw.repo.bubbleseekbar.R$layout: int support_simple_spinner_dropdown_item -wangdaye.com.geometricweather.R$drawable: int cpv_ic_arrow_right_black_24dp -com.google.android.material.internal.VisibilityAwareImageButton -com.google.android.material.R$attr: int layout_anchorGravity -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling Cooling -com.google.android.material.R$styleable: int TabLayout_tabIndicator -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_android_maxWidth -com.google.android.material.bottomnavigation.BottomNavigationView: int getItemIconSize() -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit KPH -wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity -android.didikee.donate.R$integer: R$integer() -okhttp3.internal.connection.RealConnection: void establishProtocol(okhttp3.internal.connection.ConnectionSpecSelector,int,okhttp3.Call,okhttp3.EventListener) -androidx.preference.R$color: int bright_foreground_material_dark -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabTextStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon -retrofit2.ParameterHandler$QueryMap: java.lang.reflect.Method method -okhttp3.Route: okhttp3.Address address -android.didikee.donate.R$attr: int controlBackground -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetLeft -wangdaye.com.geometricweather.R$attr: int transitionPathRotate -androidx.constraintlayout.widget.R$attr: int actionDropDownStyle -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_HOME_LONG_PRESS_ACTION_VALIDATOR -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: android.os.IBinder asBinder() -com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_end_color -com.xw.repo.bubbleseekbar.R$attr: int autoSizeMaxTextSize -cyanogenmod.app.CustomTile$ExpandedStyle: void setBuilder(cyanogenmod.app.CustomTile$Builder) -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light -okio.RealBufferedSource: void readFully(okio.Buffer,long) -cyanogenmod.weatherservice.ServiceRequest$Status: ServiceRequest$Status(java.lang.String,int) -cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void drain() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer iso0 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -com.google.android.material.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -com.bumptech.glide.integration.okhttp.R$id: int tag_unhandled_key_listeners -okhttp3.internal.cache.CacheStrategy$Factory -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: ThemeVersion$ThemeVersionImpl3() -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: AlertEntityDao$Properties() -com.xw.repo.bubbleseekbar.R$attr: int actionModeCopyDrawable -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_wrapMode -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_size -wangdaye.com.geometricweather.R$attr: int alertDialogCenterButtons -com.jaredrummler.android.colorpicker.R$layout: int abc_search_dropdown_item_icons_2line -androidx.constraintlayout.widget.R$dimen: int notification_small_icon_background_padding -androidx.preference.R$attr: int popupTheme -android.didikee.donate.R$attr: int titleMarginBottom -james.adaptiveicon.R$styleable: int MenuItem_showAsAction -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_NoActionBar -com.google.android.material.R$attr: int onNegativeCross -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_android_textAppearance -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void collect(java.util.Collection) -wangdaye.com.geometricweather.R$dimen: int abc_text_size_title_material_toolbar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String getUnit() -com.google.android.material.R$style: int Base_V21_Theme_AppCompat -androidx.preference.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.util.List getValue() -com.google.android.material.R$attr: int actionBarTheme -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_max -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: java.lang.String Name -androidx.hilt.lifecycle.R$anim: int fragment_open_enter -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean requestIsUnrepeatable(java.io.IOException,okhttp3.Request) -wangdaye.com.geometricweather.R$string: int mtrl_picker_navigate_to_year_description -com.google.android.material.R$color: int design_dark_default_color_surface -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle valueOf(java.lang.String) -androidx.preference.R$dimen: int abc_action_bar_overflow_padding_end_material -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationZ -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setText(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int notification_right_icon_size -androidx.loader.R$color -cyanogenmod.externalviews.ExternalViewProviderService: cyanogenmod.externalviews.ExternalViewProviderService$Provider createExternalView(android.os.Bundle) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitationProbability() -androidx.fragment.app.FragmentTabHost: FragmentTabHost(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DIALER_OPENCNAM_ACCOUNT_SID_VALIDATOR -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeIndex -androidx.constraintlayout.widget.R$attr: int navigationContentDescription -com.google.android.material.R$styleable: int Layout_barrierMargin -com.bumptech.glide.R$id: int italic -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf -com.google.android.material.R$attr: int tint -io.reactivex.exceptions.CompositeException: long serialVersionUID -androidx.preference.R$attr: int autoCompleteTextViewStyle -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog -androidx.constraintlayout.widget.R$attr: int round -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void drain() -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$attr: int counterMaxLength -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_indicator_material -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_36dp -androidx.lifecycle.Transformations$2: void onChanged(java.lang.Object) -cyanogenmod.hardware.CMHardwareManager: int[] getDisplayGammaCalibration(int) -androidx.constraintlayout.widget.R$attr: int editTextBackground -james.adaptiveicon.R$id: int topPanel -james.adaptiveicon.R$dimen: int abc_action_button_min_width_overflow_material -androidx.legacy.coreutils.R$id -com.turingtechnologies.materialscrollbar.R$attr: int tooltipFrameBackground -android.didikee.donate.R$drawable: int abc_seekbar_thumb_material -com.google.android.material.R$dimen: int mtrl_btn_text_btn_padding_right -com.google.android.material.slider.RangeSlider: void setHaloTintList(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$styleable: int Layout_minHeight -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_scrollMode -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_light -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabText -androidx.constraintlayout.widget.R$color: int material_deep_teal_200 -okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache this$0 -androidx.appcompat.resources.R$attr: int fontWeight -wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullException -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeightSmall -android.didikee.donate.R$dimen: int abc_button_inset_vertical_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric() -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -wangdaye.com.geometricweather.R$styleable: int Toolbar_buttonGravity -androidx.preference.R$id: int accessibility_custom_action_6 -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 -okhttp3.internal.http2.Http2Connection: void flush() -androidx.appcompat.widget.ListPopupWindow: void setOnItemSelectedListener(android.widget.AdapterView$OnItemSelectedListener) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String frenchDepartment -androidx.preference.R$id: int action_container -com.google.android.material.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: DaoMaster$DevOpenHelper(android.content.Context,java.lang.String) -android.didikee.donate.R$styleable: int AppCompatTheme_editTextBackground -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_headline_material -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ch -cyanogenmod.app.CustomTile$ExpandedGridItem -androidx.appcompat.R$style: int Widget_AppCompat_ButtonBar -androidx.work.R$styleable: int FontFamilyFont_android_font -okhttp3.RequestBody$1: okhttp3.MediaType val$contentType -androidx.appcompat.widget.AppCompatCheckedTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_percent -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_font -android.didikee.donate.R$dimen: R$dimen() -io.reactivex.internal.schedulers.ScheduledRunnable: int FUTURE_INDEX -com.turingtechnologies.materialscrollbar.R$attr: int listItemLayout -com.google.android.material.R$attr: int listDividerAlertDialog -com.jaredrummler.android.colorpicker.R$id: int textSpacerNoTitle -wangdaye.com.geometricweather.R$attr: int closeIconEnabled -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeSpinner -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeTextType -cyanogenmod.app.PartnerInterface: android.content.Context mContext -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object[] toArray() -com.jaredrummler.android.colorpicker.R$anim: int abc_shrink_fade_out_from_bottom -com.xw.repo.bubbleseekbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -androidx.customview.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$attr: int behavior_autoShrink -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_shrinkMotionSpec -cyanogenmod.app.Profile: int getTriggerState(int,java.lang.String) -com.google.android.material.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -okhttp3.internal.http.BridgeInterceptor: BridgeInterceptor(okhttp3.CookieJar) -com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingRight -wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_strokeColor -com.xw.repo.bubbleseekbar.R$attr: int measureWithLargestChild -androidx.customview.R$styleable: int FontFamilyFont_ttcIndex -androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.Lifecycle mLifecycle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getNo2() -okhttp3.Authenticator$1: okhttp3.Request authenticate(okhttp3.Route,okhttp3.Response) -com.bumptech.glide.integration.okhttp.R$styleable: int[] CoordinatorLayout_Layout -androidx.preference.R$style: int Widget_AppCompat_ProgressBar_Horizontal -cyanogenmod.app.ICustomTileListener$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.R$attr: int actionBarPopupTheme -androidx.preference.R$styleable: int Preference_android_layout -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableEnd -com.google.android.material.R$color: int mtrl_tabs_icon_color_selector_colored -com.google.gson.stream.JsonReader: int PEEKED_LONG -androidx.work.R$id: int accessibility_custom_action_22 -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_defaultValue -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: AccuLocationResult() -androidx.hilt.work.R$attr -android.didikee.donate.R$attr: int actionModePopupWindowStyle -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getBoxStrokeErrorColor() -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_19 -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle -okio.BufferedSink: okio.BufferedSink writeShort(int) -com.jaredrummler.android.colorpicker.R$id: int spinner -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayTodayStyle -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -androidx.appcompat.R$string -androidx.coordinatorlayout.R$id: int info -wangdaye.com.geometricweather.R$styleable: int PropertySet_layout_constraintTag -com.google.android.material.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -wangdaye.com.geometricweather.R$color: int colorLevel_1 -com.jaredrummler.android.colorpicker.R$style: int Platform_AppCompat_Light -androidx.lifecycle.extensions.R$styleable: int[] FontFamily -android.didikee.donate.R$style: int Widget_AppCompat_Light_SearchView -com.bumptech.glide.R$attr: int fontProviderQuery -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_subtitle_material_toolbar -androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -cyanogenmod.app.ICustomTileListener$Stub$Proxy -wangdaye.com.geometricweather.R$dimen: int widget_content_text_size -wangdaye.com.geometricweather.R$integer: int cpv_default_max_progress -androidx.constraintlayout.widget.R$styleable: R$styleable() -cyanogenmod.externalviews.KeyguardExternalView -com.google.android.material.R$attr: int checkedButton -androidx.fragment.R$id: int notification_main_column -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconSizeRes(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: long EffectiveEpochDate -wangdaye.com.geometricweather.R$styleable: int Slider_tickColorActive -androidx.legacy.coreutils.R$dimen: R$dimen() -android.didikee.donate.R$styleable: int MenuItem_iconTintMode -okhttp3.Cache$Entry: java.lang.String requestMethod -com.bumptech.glide.integration.okhttp.R$id: int notification_main_column -james.adaptiveicon.R$drawable: int abc_list_pressed_holo_dark -com.google.android.material.R$id: int material_minute_tv -wangdaye.com.geometricweather.R$color: int darkPrimary_2 -androidx.coordinatorlayout.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox -android.didikee.donate.R$id: int action_container -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_maxElementsWrap -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long index -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMark -androidx.cardview.R$styleable: int[] CardView -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_BottomSheetDialog -wangdaye.com.geometricweather.R$dimen: int abc_seekbar_track_progress_height_material -cyanogenmod.weather.ICMWeatherManager: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) -wangdaye.com.geometricweather.R$color: int bright_foreground_material_light -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moldLevel -com.bumptech.glide.integration.okhttp.R$attr: int alpha -androidx.appcompat.widget.ActionMenuView: void setOnMenuItemClickListener(androidx.appcompat.widget.ActionMenuView$OnMenuItemClickListener) -androidx.preference.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -okio.Buffer: int selectPrefix(okio.Options,boolean) -com.google.android.material.R$string: int abc_action_bar_up_description -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_elevation -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_105 -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_LargeComponent -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_backgroundSplit -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_3 -androidx.constraintlayout.widget.R$attr: int customStringValue -androidx.preference.R$attr: int titleTextAppearance -com.xw.repo.bubbleseekbar.R$attr: int buttonBarButtonStyle -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: $Gson$Types$WildcardTypeImpl(java.lang.reflect.Type[],java.lang.reflect.Type[]) -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.R$styleable: int ActionBar_subtitleTextStyle -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noTransform() -james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlHighlight -wangdaye.com.geometricweather.R$drawable: int widget_clock_day_vertical -wangdaye.com.geometricweather.R$dimen: int notification_small_icon_size_as_large -com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_min -androidx.appcompat.widget.SearchView: void setOnQueryTextListener(androidx.appcompat.widget.SearchView$OnQueryTextListener) -james.adaptiveicon.R$id: int chronometer -androidx.viewpager.R$styleable: int FontFamilyFont_fontStyle -com.google.android.material.R$styleable: int FontFamilyFont_android_fontStyle -androidx.preference.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeCloudCover(java.lang.Integer) -wangdaye.com.geometricweather.R$drawable: int widget_clock_day_horizontal -androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -okhttp3.internal.http2.Http2Reader: void readPushPromise(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -cyanogenmod.app.Profile$TriggerState: int ON_DISCONNECT -androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityPaused(android.app.Activity) -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_BottomSheet_Modal -wangdaye.com.geometricweather.R$id: int item_touch_helper_previous_elevation -androidx.hilt.R$styleable: int FontFamily_fontProviderFetchStrategy -james.adaptiveicon.R$dimen: int abc_action_bar_elevation_material -wangdaye.com.geometricweather.R$drawable: int ic_menu_up -com.google.android.material.progressindicator.ProgressIndicator: void setTrackColor(int) -com.google.android.material.R$attr: int clickAction -okhttp3.Cache$CacheResponseBody: okhttp3.internal.cache.DiskLruCache$Snapshot snapshot -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.ObservableSource first -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_rippleColor -com.google.android.material.R$style: int Base_Theme_AppCompat_Light -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: void setPathData(androidx.core.graphics.PathParser$PathDataNode[]) -androidx.work.impl.utils.futures.AbstractFuture$Failure$1 -com.google.android.material.appbar.AppBarLayout: int getPendingAction() -com.google.android.material.R$attr: int telltales_tailScale -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_stackFromEnd -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean forWebSocket -androidx.appcompat.widget.AppCompatEditText: java.lang.CharSequence getText() -okhttp3.internal.http2.Http2Stream: Http2Stream(int,okhttp3.internal.http2.Http2Connection,boolean,boolean,okhttp3.Headers) -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconSize -wangdaye.com.geometricweather.R$animator: int weather_wind_1 -com.google.android.material.R$dimen: int abc_dialog_corner_radius_material -androidx.preference.R$styleable: int AppCompatTheme_dividerVertical -androidx.hilt.R$id: int line3 -com.jaredrummler.android.colorpicker.R$string: int search_menu_title -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_15 -com.google.android.material.R$style: int Platform_Widget_AppCompat_Spinner -com.bumptech.glide.R$styleable: int ColorStateListItem_android_color -okhttp3.Cache: int hitCount() -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -android.didikee.donate.R$style: int Base_Animation_AppCompat_DropDownUp -cyanogenmod.hardware.CMHardwareManager: boolean setDisplayGammaCalibration(int,int[]) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitation -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressViewEndOffset() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onNext(java.lang.Object) -okhttp3.internal.cache.CacheStrategy: CacheStrategy(okhttp3.Request,okhttp3.Response) -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setWeatherCondition(int) -wangdaye.com.geometricweather.common.basic.models.weather.Weather: boolean isDaylight(java.util.TimeZone) -james.adaptiveicon.R$styleable: int TextAppearance_android_shadowDy -com.google.android.material.R$styleable: int KeyCycle_curveFit -androidx.viewpager2.widget.ViewPager2: int getScrollState() -okio.AsyncTimeout$1: AsyncTimeout$1(okio.AsyncTimeout,okio.Sink) -cyanogenmod.weather.CMWeatherManager$1$1: cyanogenmod.weather.CMWeatherManager$1 this$1 -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button -androidx.lifecycle.viewmodel.R -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: MfHistoryResult$History$Temperature() -com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector[] values() -androidx.hilt.lifecycle.R$id: R$id() -com.google.android.material.R$styleable: int Layout_layout_constraintBottom_toBottomOf -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder sslSocketFactory(javax.net.ssl.SSLSocketFactory,javax.net.ssl.X509TrustManager) -cyanogenmod.app.ProfileManager: cyanogenmod.app.IProfileManager sService -cyanogenmod.hardware.CMHardwareManager: int FEATURE_LONG_TERM_ORBITS -androidx.constraintlayout.motion.widget.MotionLayout: void setTransition(int) -wangdaye.com.geometricweather.R$id: int transparency_text -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void setResource(io.reactivex.disposables.Disposable) -androidx.appcompat.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -james.adaptiveicon.R$drawable: int abc_ic_search_api_material -android.didikee.donate.R$drawable: int abc_textfield_search_material -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: void truncate() -androidx.core.R$layout: int custom_dialog -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayWeekProvider: WidgetClockDayWeekProvider() -com.google.android.material.datepicker.MaterialCalendar: MaterialCalendar() -com.google.android.material.chip.Chip: void setCloseIconEndPaddingResource(int) -cyanogenmod.externalviews.ExternalViewProviderService: void onCreate() -james.adaptiveicon.R$id: int contentPanel -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 -james.adaptiveicon.R$id: int select_dialog_listview -okio.Okio: okio.Sink sink(java.io.File) -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_color -retrofit2.ParameterHandler: retrofit2.ParameterHandler iterable() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: KeyguardExternalViewProviderService$Provider$ProviderImpl$6(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -james.adaptiveicon.R$drawable: int notification_tile_bg -okhttp3.internal.ws.WebSocketReader: okio.BufferedSource source -wangdaye.com.geometricweather.R$styleable: int ChipGroup_singleSelection -androidx.constraintlayout.widget.R$attr: int tooltipText -androidx.preference.internal.PreferenceImageView -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_submit -com.google.android.material.R$id: int src_atop -james.adaptiveicon.R$styleable: int SearchView_goIcon -androidx.preference.R$id: int accessibility_custom_action_10 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -cyanogenmod.app.BaseLiveLockManagerService: void enforcePrivateAccessPermission() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: AccuCurrentResult$Temperature$Metric() -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItem -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver[] CANCELLED -androidx.customview.R$integer: R$integer() -com.google.android.material.R$id: int mtrl_picker_header_title_and_selection -wangdaye.com.geometricweather.R$id: int fill_horizontal -com.google.android.material.R$styleable: int Layout_layout_constraintRight_creator -okhttp3.internal.ws.WebSocketReader: void readHeader() -okio.Buffer$2: Buffer$2(okio.Buffer) -androidx.appcompat.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -wangdaye.com.geometricweather.R$style: int Base_V23_Theme_AppCompat_Light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setTitle(java.lang.String) -wangdaye.com.geometricweather.R$attr: int itemSpacing -androidx.appcompat.R$style: int Animation_AppCompat_Dialog -wangdaye.com.geometricweather.R$id: int save_non_transition_alpha -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_LED_ON -cyanogenmod.providers.DataUsageContract: android.net.Uri BASE_CONTENT_URI -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver parent -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Menu -androidx.appcompat.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -okhttp3.internal.http.RetryAndFollowUpInterceptor: void setCallStackTrace(java.lang.Object) -okhttp3.internal.http.RealInterceptorChain: okhttp3.Call call -com.turingtechnologies.materialscrollbar.MaterialScrollBar: int getMode() -wangdaye.com.geometricweather.R$drawable: int ic_gauge -androidx.activity.ComponentActivity$2 -androidx.constraintlayout.widget.Placeholder: android.view.View getContent() -okhttp3.internal.cache.DiskLruCache: void processJournal() -androidx.work.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.db.entities.AlertEntity: void setType(java.lang.String) -io.reactivex.internal.subscriptions.EmptySubscription -cyanogenmod.app.ThemeVersion$ComponentVersion: cyanogenmod.app.ThemeComponent getComponent() -com.google.android.material.R$id: int smallLabel -wangdaye.com.geometricweather.R$color: int colorRootDark_dark -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: java.lang.String getMessage() -com.google.android.material.button.MaterialButtonToggleGroup: java.lang.CharSequence getAccessibilityClassName() -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.R$color: int material_on_primary_emphasis_medium -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_showMotionSpec -okhttp3.internal.ws.WebSocketWriter: okio.Buffer sinkBuffer -androidx.appcompat.R$styleable: int[] StateListDrawable -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_exitFadeDuration -wangdaye.com.geometricweather.R$style: int material_icon -androidx.preference.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource -com.xw.repo.bubbleseekbar.R$style: int Base_AlertDialog_AppCompat -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean terminated -okhttp3.internal.http2.Http2Connection: boolean $assertionsDisabled -retrofit2.Utils: int indexOf(java.lang.Object[],java.lang.Object) -androidx.appcompat.R$id: int search_bar -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: AccuDailyResult$DailyForecasts$Night$Wind$Speed() -wangdaye.com.geometricweather.R$string: int icon_content_description -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPopupWindowStyle -androidx.recyclerview.R$drawable: int notification_bg_low_pressed -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_Underlined -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_2 -com.google.android.material.tabs.TabLayout: void setInlineLabelResource(int) -okio.AsyncTimeout$Watchdog: AsyncTimeout$Watchdog() -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_night_1 -cyanogenmod.profiles.ConnectionSettings: void setSubId(int) -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -com.xw.repo.bubbleseekbar.R$id: int text -androidx.appcompat.R$id: int search_edit_frame -androidx.activity.R$id: int right_icon -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: long serialVersionUID -retrofit2.SkipCallbackExecutorImpl: java.lang.Class annotationType() -androidx.appcompat.widget.SwitchCompat: int getThumbOffset() -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_thickness -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_motionProgress -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline1 -com.google.android.material.R$drawable: int abc_ratingbar_material -com.google.android.material.R$styleable: int TabLayout_tabInlineLabel -james.adaptiveicon.R$drawable: int abc_list_selector_holo_light -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String getWeatherText() -androidx.lifecycle.OnLifecycleEvent -okhttp3.internal.ws.RealWebSocket$Streams: boolean client -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -com.xw.repo.bubbleseekbar.R$id: int search_badge -com.google.android.material.R$attr: int motionStagger -com.google.android.material.R$styleable: int GradientColor_android_endColor -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_hideMotionSpec -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer snowHazard3h -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastHorizontalStyle -com.google.android.material.R$string: int abc_searchview_description_clear -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_CollapsingToolbar -wangdaye.com.geometricweather.R$id: int unchecked -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog -com.xw.repo.bubbleseekbar.R$styleable: int View_android_focusable -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.Callable other -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_height_minor -androidx.customview.R$id: int notification_main_column_container -com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonTint -okio.Okio: okio.BufferedSink buffer(okio.Sink) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitationProbability(java.lang.Float) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_9 -com.google.android.material.R$id: int wrap_content -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DrawingDelegate getCurrentDrawingDelegate() -android.didikee.donate.R$attr: int windowFixedHeightMajor -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constrainedWidth -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -wangdaye.com.geometricweather.R$layout: int select_dialog_item_material -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIconTintMode -wangdaye.com.geometricweather.R$style: int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day -wangdaye.com.geometricweather.R$dimen: int material_font_2_0_box_collapsed_padding_top -okhttp3.Dispatcher: void finished(java.util.Deque,java.lang.Object) -android.didikee.donate.R$attr: int seekBarStyle -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float pressure -wangdaye.com.geometricweather.R$string: int current_location -androidx.constraintlayout.widget.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$attr: int subMenuArrow -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_shapeAppearance -androidx.preference.R$style: int Preference_CheckBoxPreference_Material -james.adaptiveicon.R$attr: int textColorAlertDialogListItem -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -wangdaye.com.geometricweather.R$string: int settings_summary_appearance -cyanogenmod.profiles.AirplaneModeSettings: boolean mDirty -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstVerticalStyle -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Tooltip -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_inverse_material_dark -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_textColorHint -cyanogenmod.providers.CMSettings$Secure: java.lang.String ADB_NOTIFY -org.greenrobot.greendao.DaoException: DaoException(java.lang.Throwable) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setSlingshotDistance(int) -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float ice -com.google.android.material.R$styleable: int MaterialCardView_shapeAppearanceOverlay -wangdaye.com.geometricweather.R$layout: int dialog_providers_previewer -cyanogenmod.platform.Manifest$permission: java.lang.String MANAGE_PERSISTENT_STORAGE -okio.Buffer$UnsafeCursor -com.google.android.material.R$attr: int flow_firstHorizontalStyle -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_behavior -com.turingtechnologies.materialscrollbar.R$attr: int statusBarScrim -com.google.android.material.R$id: int outline -wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.DailyEntity) -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleTextColor -wangdaye.com.geometricweather.R$string: int tag_temperature -com.google.android.material.chip.ChipGroup: void setSingleSelection(boolean) -androidx.activity.ImmLeaksCleaner -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.lang.String getPubTime() -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTextColor(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$attr: int cardCornerRadius -com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.badge.BadgeDrawable getOrCreateBadge() -okhttp3.HttpUrl$Builder: void push(java.lang.String,int,int,boolean,boolean) -cyanogenmod.app.CustomTile$ExpandedItem: int describeContents() -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.lang.reflect.Method checkServerTrusted -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_trackTintMode -androidx.lifecycle.extensions.R$anim: int fragment_fade_enter -android.didikee.donate.R$dimen: int abc_dialog_list_padding_top_no_title -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_7 -com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar -james.adaptiveicon.R$color: int material_grey_800 -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_SHA256 -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: MfHistoryResult$History$Precipitation() -io.reactivex.Observable: io.reactivex.Single toSortedList(int) -com.google.android.material.R$layout: int mtrl_calendar_day_of_week -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_8 -com.google.android.material.R$dimen: int mtrl_btn_disabled_elevation -com.google.android.material.R$styleable: int State_constraints -com.turingtechnologies.materialscrollbar.R$styleable: int[] AlertDialog -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onNext(java.lang.Object) -androidx.appcompat.R$attr: int actionModeWebSearchDrawable -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_resetAll -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: java.lang.Object poll() -okio.AsyncTimeout: boolean exit() -androidx.swiperefreshlayout.R$string -androidx.preference.R$styleable: int AppCompatTheme_dialogCornerRadius -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxyAuthenticator(okhttp3.Authenticator) -androidx.constraintlayout.widget.R$color: int material_grey_800 -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_editor_absoluteY -android.didikee.donate.R$style -androidx.preference.R$drawable: int abc_ic_star_half_black_48dp -com.google.android.material.R$id: int material_clock_period_toggle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setId(java.lang.Long) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SMOKY -okhttp3.internal.platform.ConscryptPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -cyanogenmod.weather.RequestInfo: android.location.Location access$502(cyanogenmod.weather.RequestInfo,android.location.Location) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeDegreeDayTemperature -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$array: int widget_style_values -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator -com.turingtechnologies.materialscrollbar.R$drawable: int notify_panel_notification_icon_bg -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: long serialVersionUID -androidx.viewpager.R$id: int text2 -androidx.preference.R$styleable: int Toolbar_titleMarginEnd -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerClose(boolean,io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver) -com.turingtechnologies.materialscrollbar.R$attr: int showAsAction -androidx.appcompat.R$styleable: int PopupWindow_android_popupAnimationStyle -com.google.gson.stream.JsonReader: int PEEKED_END_OBJECT -com.google.android.material.R$attr: int chipIconEnabled -com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_top_mtrl_alpha -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_11 -wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_bias -james.adaptiveicon.R$attr: int controlBackground -androidx.constraintlayout.helper.widget.Layer: void setScaleY(float) -androidx.appcompat.R$dimen: int tooltip_y_offset_non_touch -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status FAILED -com.google.android.material.R$attr: int customStringValue -okhttp3.internal.cache.DiskLruCache: long maxSize -androidx.constraintlayout.widget.R$color: int background_floating_material_dark -wangdaye.com.geometricweather.R$attr: int badgeStyle -com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onNext(java.lang.Object) -androidx.transition.R$drawable -androidx.preference.ListPreference$SavedState -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_title_material_toolbar -com.google.android.material.R$style: int ThemeOverlay_AppCompat -okhttp3.internal.Util: int checkDuration(java.lang.String,long,java.util.concurrent.TimeUnit) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric() -androidx.appcompat.resources.R$styleable: int GradientColor_android_type -retrofit2.Call: retrofit2.Call clone() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_radioButtonStyle -okio.Buffer: int readInt() -io.reactivex.subjects.PublishSubject$PublishDisposable: void dispose() -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.String TABLENAME -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundTint -wangdaye.com.geometricweather.R$drawable: int ic_exercise -androidx.constraintlayout.widget.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -androidx.viewpager2.R$styleable: int[] RecyclerView -retrofit2.OkHttpCall -cyanogenmod.hardware.DisplayMode$1: DisplayMode$1() -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -cyanogenmod.power.PerformanceManager: int getPowerProfile() -androidx.appcompat.R$styleable: int GradientColor_android_endY -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView_Menu -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_count -com.turingtechnologies.materialscrollbar.R$id: int save_non_transition_alpha -wangdaye.com.geometricweather.R$attr: int startIconTint -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_days_of_week -androidx.viewpager.widget.PagerTabStrip: int getTabIndicatorColor() -wangdaye.com.geometricweather.R$dimen: int main_title_text_size -okhttp3.internal.http.RealInterceptorChain: okhttp3.Request request() -androidx.appcompat.widget.ActivityChooserModel -wangdaye.com.geometricweather.db.entities.HourlyEntity: boolean getDaylight() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial Imperial -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: int getTemperature() -android.didikee.donate.R$styleable: int LinearLayoutCompat_showDividers -androidx.activity.R$styleable: int GradientColor_android_startColor -okhttp3.RealCall: okhttp3.EventListener eventListener -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void cancel() -androidx.fragment.R$dimen: int notification_big_circle_margin -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$color: int highlighted_text_material_light -com.google.android.material.textfield.TextInputLayout: void setErrorIconDrawable(int) -com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_material_dark -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -okio.GzipSource: byte FNAME -okio.Sink: void write(okio.Buffer,long) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_borderless_material -com.jaredrummler.android.colorpicker.R$id: int customPanel -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Overline -androidx.lifecycle.ProcessLifecycleOwner$2: ProcessLifecycleOwner$2(androidx.lifecycle.ProcessLifecycleOwner) -io.reactivex.Observable: io.reactivex.Completable switchMapCompletable(io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$color: int error_color_material_dark -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeSplitBackground -com.google.android.material.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -androidx.lifecycle.ComputableLiveData: java.lang.Object compute() -com.turingtechnologies.materialscrollbar.DragScrollBar: float getIndicatorOffset() -okhttp3.internal.http1.Http1Codec: int STATE_OPEN_REQUEST_BODY -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial -androidx.preference.R$attr: int gapBetweenBars -com.google.android.material.R$attr: int materialCalendarMonthNavigationButton -androidx.appcompat.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_BottomSheetDialog -com.google.android.material.R$styleable: int AppCompatTextView_drawableEndCompat -com.google.android.material.R$attr: int boxCornerRadiusBottomStart -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long count -androidx.appcompat.resources.R$id: int accessibility_custom_action_20 -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onNext(java.lang.Object) -okhttp3.internal.http2.Http2Stream: void setHeadersListener(okhttp3.internal.http2.Header$Listener) -okhttp3.internal.platform.JdkWithJettyBootPlatform -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_focused_holo -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindSpeed -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: CNWeatherResult$Realtime$Weather() -wangdaye.com.geometricweather.R$id: int activity_widget_config -androidx.preference.R$attr: int alertDialogTheme -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.R$color: int foreground_material_dark -com.jaredrummler.android.colorpicker.R$attr: int colorAccent -com.google.android.material.R$dimen: int abc_text_size_display_2_material -wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotationX -androidx.preference.R$attr: int listChoiceBackgroundIndicator -androidx.recyclerview.widget.RecyclerView: void setRecyclerListener(androidx.recyclerview.widget.RecyclerView$RecyclerListener) -androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_material_anim -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: BaiduIPLocationResult() -com.google.android.material.R$color: int material_timepicker_button_background -androidx.drawerlayout.R$id: int forever -com.google.android.material.R$id: int layout -com.google.android.material.R$style: int Widget_AppCompat_Button_Small -androidx.loader.R$color: int ripple_material_light -androidx.constraintlayout.widget.R$attr: int listChoiceBackgroundIndicator -com.google.android.material.bottomnavigation.BottomNavigationView: int getItemTextAppearanceInactive() -wangdaye.com.geometricweather.R$string: int character_counter_pattern -wangdaye.com.geometricweather.R$drawable: int ic_pm -androidx.work.R$styleable: int GradientColor_android_tileMode -androidx.dynamicanimation.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: void setValue(java.lang.String) -androidx.viewpager.R$styleable: int ColorStateListItem_android_alpha -android.didikee.donate.R$styleable: int TextAppearance_android_textColorHint -com.google.android.material.R$dimen: int abc_action_button_min_height_material -wangdaye.com.geometricweather.R$dimen: int default_dimension -androidx.hilt.work.R$id: int accessibility_custom_action_2 -okhttp3.internal.http2.Hpack: java.util.Map NAME_TO_FIRST_INDEX -okhttp3.internal.ws.RealWebSocket: void awaitTermination(int,java.util.concurrent.TimeUnit) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat -okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_REENCODE_SET -io.reactivex.internal.schedulers.ScheduledDirectTask -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat -wangdaye.com.geometricweather.R$drawable: int notif_temp_139 -androidx.preference.R$id: int select_dialog_listview -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_alphabeticShortcut -com.google.android.material.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -androidx.preference.SwitchPreferenceCompat -wangdaye.com.geometricweather.db.entities.AlertEntity: void setId(java.lang.Long) -androidx.preference.R$attr: int buttonBarNegativeButtonStyle -android.didikee.donate.R$styleable: int DrawerArrowToggle_gapBetweenBars -wangdaye.com.geometricweather.R$attr: int behavior_overlapTop -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: java.lang.Integer clouds -androidx.appcompat.R$attr: int colorPrimary -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float thunderstorm -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_RC4_128_SHA -wangdaye.com.geometricweather.common.basic.models.weather.Daily: long time -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage valueOf(java.lang.String) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void clear() -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object set(int,java.lang.Object) -androidx.appcompat.R$attr: int actionBarSplitStyle -androidx.dynamicanimation.R$styleable: int[] FontFamilyFont -androidx.appcompat.R$attr: int listPreferredItemPaddingRight -com.google.android.material.R$drawable: int abc_text_select_handle_middle_mtrl_light -androidx.preference.R$layout: R$layout() -androidx.constraintlayout.widget.R$attr: int imageButtonStyle -okhttp3.internal.ws.RealWebSocket: int receivedPongCount -cyanogenmod.app.ThemeVersion$ComponentVersion -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias -androidx.preference.R$id: int text2 -okio.HashingSource: HashingSource(okio.Source,okio.ByteString,java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean -androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_EditText -com.bumptech.glide.integration.okhttp.R$color: int notification_action_color_filter -com.google.android.material.R$attr: int colorSecondaryVariant -okhttp3.internal.http1.Http1Codec$ChunkedSource: Http1Codec$ChunkedSource(okhttp3.internal.http1.Http1Codec,okhttp3.HttpUrl) -cyanogenmod.weather.WeatherInfo: int access$902(cyanogenmod.weather.WeatherInfo,int) -androidx.preference.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance -androidx.dynamicanimation.R$string -androidx.preference.R$styleable: int[] PopupWindowBackgroundState -wangdaye.com.geometricweather.R$style: int Preference_CheckBoxPreference -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_height_material -okhttp3.internal.http2.Http2Writer: void dataFrame(int,byte,okio.Buffer,int) -com.google.android.material.internal.VisibilityAwareImageButton: int getUserSetVisibility() -android.didikee.donate.R$styleable: int TextAppearance_fontVariationSettings -androidx.drawerlayout.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_pre_l_text_clip_padding -androidx.appcompat.R$layout -okhttp3.internal.http2.Http2: byte TYPE_RST_STREAM -cyanogenmod.app.ThemeVersion$ComponentVersion: int getMinVersion() -com.google.android.material.R$layout: int design_layout_snackbar -androidx.constraintlayout.widget.R$drawable: int abc_list_focused_holo -com.turingtechnologies.materialscrollbar.R$attr: int colorSecondary -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_min -androidx.constraintlayout.helper.widget.Flow: void setHorizontalGap(int) -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_extendMotionSpec -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_WAKE_SCREEN_VALIDATOR -com.google.android.material.R$styleable: int ConstraintSet_android_rotationX -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_dd -androidx.preference.R$attr: int windowMinWidthMinor -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMargins -cyanogenmod.weatherservice.WeatherProviderService: java.util.Set mWeakRequestsSet -com.google.android.material.R$layout: int text_view_with_line_height_from_layout -wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_layout -retrofit2.Retrofit: void validateServiceInterface(java.lang.Class) -com.google.android.material.R$styleable: int TextAppearance_android_fontFamily -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -androidx.appcompat.view.menu.ActionMenuItemView: void setExpandedFormat(boolean) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -cyanogenmod.providers.CMSettings$System: java.lang.String ASSIST_WAKE_SCREEN -wangdaye.com.geometricweather.R$styleable: int[] PropertySet -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onStart() -wangdaye.com.geometricweather.R$id: R$id() -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -cyanogenmod.externalviews.KeyguardExternalView$9 -com.xw.repo.bubbleseekbar.R$layout: int notification_template_part_chronometer -androidx.preference.R$styleable: int PreferenceGroup_initialExpandedChildrenCount -okhttp3.internal.Util: java.nio.charset.Charset UTF_16_BE -androidx.lifecycle.SavedStateHandle: java.lang.Class[] ACCEPTABLE_CLASSES -com.google.android.material.slider.RangeSlider: void setStepSize(float) -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_dropDownWidth -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.lifecycle.OnLifecycleEvent: androidx.lifecycle.Lifecycle$Event value() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX -com.google.android.material.button.MaterialButton: void setRippleColor(android.content.res.ColorStateList) -androidx.preference.R$styleable: int Toolbar_navigationContentDescription -android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -cyanogenmod.weather.WeatherLocation$Builder: WeatherLocation$Builder(java.lang.String) -androidx.dynamicanimation.R$integer: int status_bar_notification_info_maxnum -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton -androidx.customview.R$style: int TextAppearance_Compat_Notification_Title -androidx.recyclerview.R$styleable: int FontFamilyFont_android_font -androidx.vectordrawable.R$string: R$string() -com.google.android.material.R$styleable: int AppCompatTheme_actionBarDivider -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ListView_DropDown -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_motionStagger -androidx.appcompat.R$dimen: int hint_pressed_alpha_material_dark -com.google.android.material.R$styleable: int KeyTrigger_motion_triggerOnCollision -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerSlack -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_bottom_margin -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDataConnectionSelectedOnSub(int) -wangdaye.com.geometricweather.R$color: int material_grey_600 -com.google.android.material.R$id: int right_side -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endX -com.google.android.material.R$anim -cyanogenmod.providers.DataUsageContract: android.net.Uri CONTENT_URI -wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_night_foreground -wangdaye.com.geometricweather.R$attr: int allowDividerAfterLastItem -androidx.appcompat.R$style: int Base_Theme_AppCompat_CompactMenu -com.jaredrummler.android.colorpicker.R$string: int cpv_custom -io.reactivex.internal.subscribers.StrictSubscriber: void request(long) -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: FlowableRepeatWhen$WhenSourceSubscriber(org.reactivestreams.Subscriber,io.reactivex.processors.FlowableProcessor,org.reactivestreams.Subscription) -androidx.preference.R$dimen: int abc_seekbar_track_progress_height_material -androidx.preference.R$attr: int seekBarIncrement -okio.ForwardingSink: okio.Sink delegate() -android.didikee.donate.R$styleable: int MenuGroup_android_checkableBehavior -cyanogenmod.weatherservice.WeatherProviderService: void onDisconnected() -wangdaye.com.geometricweather.R$attr: int summary -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDegreeDayTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$id: int item_aqi_progress -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ITALIAN -io.reactivex.disposables.ReferenceDisposable: long serialVersionUID -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: java.lang.String getAddress() -androidx.appcompat.R$dimen: int abc_action_bar_icon_vertical_padding_material -androidx.constraintlayout.widget.R$dimen: int notification_large_icon_width -cyanogenmod.app.CustomTile: android.app.PendingIntent onLongClick -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_55 -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.util.concurrent.CompletableFuture adapt(retrofit2.Call) -com.google.android.material.R$drawable: int abc_list_selector_background_transition_holo_light -okio.GzipSource: byte SECTION_DONE -android.didikee.donate.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -androidx.coordinatorlayout.R$id: int dialog_button -android.didikee.donate.R$integer: int abc_config_activityShortDur -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_creator -wangdaye.com.geometricweather.R$styleable: int SearchView_android_focusable -okhttp3.FormBody$Builder: java.util.List names -androidx.preference.R$attr: int actionLayout -com.xw.repo.bubbleseekbar.R$attr: int homeAsUpIndicator -com.google.android.material.chip.Chip: float getIconStartPadding() -wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_to_on_mtrl_015 -androidx.appcompat.R$styleable: int AppCompatTheme_windowMinWidthMinor -wangdaye.com.geometricweather.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$layout: int test_reflow_chipgroup -okhttp3.Challenge: java.lang.String realm() -com.google.android.material.R$attr: int triggerReceiver -com.google.android.material.transformation.ExpandableTransformationBehavior -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver -androidx.hilt.lifecycle.R$layout: int custom_dialog -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context) -androidx.lifecycle.ComputableLiveData$3: ComputableLiveData$3(androidx.lifecycle.ComputableLiveData) -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_NoActionBar -wangdaye.com.geometricweather.R$layout: int material_clock_display_divider -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult -com.google.gson.stream.JsonWriter: int stackSize -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconTintMode -com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_creator -androidx.preference.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type AIR_QUALITY -androidx.preference.R$attr: int buttonStyle -androidx.cardview.widget.CardView: int getContentPaddingLeft() -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat PREFER_ARGB_8888 -com.xw.repo.bubbleseekbar.R$integer -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton -androidx.dynamicanimation.R$id: int action_text -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -androidx.viewpager.R$styleable: int GradientColor_android_endColor -androidx.drawerlayout.R$attr: int fontWeight -com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_android_popupAnimationStyle -com.bumptech.glide.R$drawable: int notification_bg_normal -androidx.constraintlayout.widget.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Colored -okhttp3.Response$Builder: okhttp3.Response$Builder handshake(okhttp3.Handshake) -wangdaye.com.geometricweather.settings.fragments.AbstractSettingsFragment: AbstractSettingsFragment() -androidx.preference.R$styleable: int AppCompatTextView_fontVariationSettings -com.google.android.material.R$animator: int design_fab_show_motion_spec -androidx.appcompat.R$attr: int checkedTextViewStyle -com.google.android.material.R$dimen: int mtrl_calendar_year_horizontal_padding -com.jaredrummler.android.colorpicker.R$attr: int dialogCornerRadius -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language[] values() -okhttp3.internal.Util: okhttp3.RequestBody EMPTY_REQUEST -androidx.preference.R$style: int Base_Widget_AppCompat_ActionMode -androidx.constraintlayout.utils.widget.ImageFilterButton: float getSaturation() -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status[] values() -com.google.android.material.R$styleable: int ImageFilterView_saturation -wangdaye.com.geometricweather.R$string: int precipitation_heavy -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_LIVE_LOCK_SCREEN_COMPONENT -com.google.android.material.slider.RangeSlider: void setValues(java.util.List) -androidx.coordinatorlayout.R$id: int right -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver parent -androidx.preference.R$attr: int contentDescription -com.google.android.material.appbar.CollapsingToolbarLayout: void setTitle(java.lang.CharSequence) -wangdaye.com.geometricweather.R$dimen: R$dimen() -androidx.preference.R$styleable: int Toolbar_titleMarginStart -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_Primary -io.reactivex.internal.util.EmptyComponent: void cancel() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarDivider -cyanogenmod.power.IPerformanceManager: boolean setPowerProfile(int) -com.google.android.material.R$id: int chip3 -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void setDisposable(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$string: int path_password_eye_mask_visible -wangdaye.com.geometricweather.R$style: int notification_title_text -com.xw.repo.bubbleseekbar.R$layout: int abc_screen_toolbar -wangdaye.com.geometricweather.R$layout: int container_alert_display_view -com.turingtechnologies.materialscrollbar.R$id: int text2 -wangdaye.com.geometricweather.R$styleable: int[] TabItem -wangdaye.com.geometricweather.remoteviews.config.Hilt_WeekWidgetConfigActivity -android.didikee.donate.R$styleable: int AppCompatTheme_windowNoTitle -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: java.lang.String unitAbbreviation -com.google.android.material.R$attr: int firstBaselineToTopHeight -com.jaredrummler.android.colorpicker.R$styleable: int[] SearchView -com.google.android.material.R$attr: int colorBackgroundFloating -androidx.constraintlayout.widget.R$attr: int fontProviderAuthority -androidx.lifecycle.Transformations$1: androidx.arch.core.util.Function val$mapFunction -com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker -androidx.preference.R$styleable: int PreferenceTheme_preferenceTheme -io.reactivex.internal.disposables.ArrayCompositeDisposable: boolean setResource(int,io.reactivex.disposables.Disposable) -androidx.lifecycle.extensions.R$dimen: int notification_right_side_padding_top -androidx.preference.R$drawable: int abc_list_pressed_holo_dark -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_spanCount -james.adaptiveicon.R$attr: int itemPadding -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours Past12Hours -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_maxWidth -androidx.appcompat.R$dimen: int compat_button_padding_vertical_material -androidx.coordinatorlayout.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig hourlyEntityDaoConfig -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: android.os.IBinder call() -com.xw.repo.bubbleseekbar.R$attr: int listDividerAlertDialog -wangdaye.com.geometricweather.R$id: int regular -com.google.android.material.R$attr: int mock_showDiagonals -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_title -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView_Menu -wangdaye.com.geometricweather.R$dimen: int material_clock_hand_padding -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setThunderstormPrecipitation(java.lang.Float) -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_ScrimInsetsFrameLayout -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_tileMode -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okio.BufferedSource source() -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onNext(java.lang.Object) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WEATHER_CODE_MAX -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_7 -okhttp3.internal.http2.PushObserver: void onReset(int,okhttp3.internal.http2.ErrorCode) -androidx.constraintlayout.widget.R$styleable: int[] ButtonBarLayout -okhttp3.ConnectionPool: boolean cleanupRunning -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: io.reactivex.internal.disposables.SequentialDisposable serial -androidx.viewpager.R$string: int status_bar_notification_info_overflow -androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context) -wangdaye.com.geometricweather.R$dimen: int widget_grid_3 -androidx.lifecycle.LifecycleRegistry: void popParentState() -androidx.constraintlayout.widget.R$styleable: int MockView_mock_showLabel -io.reactivex.Observable: io.reactivex.Observable ambArray(io.reactivex.ObservableSource[]) -retrofit2.Utils$GenericArrayTypeImpl: int hashCode() -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerError(java.lang.Throwable) -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_progress -james.adaptiveicon.R$attr: int contentDescription -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Bridge -com.jaredrummler.android.colorpicker.R$style: int Platform_V21_AppCompat -cyanogenmod.app.CMTelephonyManager: boolean isDataConnectionSelectedOnSub(int) -androidx.core.R$attr -okhttp3.internal.Util: java.lang.String[] EMPTY_STRING_ARRAY -com.turingtechnologies.materialscrollbar.R$drawable: int tooltip_frame_light -com.xw.repo.bubbleseekbar.R$style: int Widget_Support_CoordinatorLayout -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Switch -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onComplete() -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: java.lang.Object poll() -retrofit2.HttpServiceMethod: retrofit2.Converter responseConverter -wangdaye.com.geometricweather.R$attr: int arc_angle -james.adaptiveicon.R$attr: int actionBarItemBackground -wangdaye.com.geometricweather.R$attr: int actionViewClass -androidx.appcompat.R$style: int Platform_V21_AppCompat -cyanogenmod.app.CustomTileListenerService: void onCustomTileRemoved(cyanogenmod.app.StatusBarPanelCustomTile) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf -android.didikee.donate.R$drawable: int abc_tab_indicator_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String getUnit() -wangdaye.com.geometricweather.R$array: int distance_unit_values -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver parent -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textFontWeight -cyanogenmod.externalviews.ExternalViewProperties: android.view.View mView -james.adaptiveicon.R$attr: int windowMinWidthMajor -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_unregisterChangeListener -com.google.android.material.R$styleable: int MenuItem_android_titleCondensed -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_background_corner_radius -com.bumptech.glide.load.engine.GlideException: void printStackTrace(java.io.PrintStream) -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Primary -android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.google.android.material.R$style: int Base_Widget_Design_TabLayout -com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_toolbar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String getFrom() -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Time -com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabBar -com.jaredrummler.android.colorpicker.R$color: int secondary_text_disabled_material_light -okhttp3.internal.http2.Http2Reader$Handler: void data(boolean,int,okio.BufferedSource,int) -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemMaxLines -retrofit2.converter.gson.GsonResponseBodyConverter: java.lang.Object convert(okhttp3.ResponseBody) -cyanogenmod.util.ColorUtils: int findPerceptuallyNearestSolidColor(int) -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayDetailsProvider -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode AUTO -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: KeyguardExternalViewProviderService$Provider$ProviderImpl$8(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,float) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX -androidx.lifecycle.SavedStateViewModelFactory -com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$id: int search_src_text -androidx.hilt.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.R$attr: int curveFit -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours -com.xw.repo.bubbleseekbar.R$styleable: int[] FontFamilyFont -androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: ObservableReplay$BoundedReplayBuffer() -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_btn_ripple_color -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_DIALOG_THEME -retrofit2.HttpException: retrofit2.Response response() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_COLOR_ADJUSTMENT_VALIDATOR -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getSuffixText() -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onNext(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$attr: int checkboxStyle -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginEnd() -androidx.swiperefreshlayout.R$integer: int status_bar_notification_info_maxnum -okio.RealBufferedSource: java.lang.String readUtf8(long) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void drain() -android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogTheme -wangdaye.com.geometricweather.R$id: int notification_base_time -okhttp3.internal.http2.Http2Connection$2 -android.didikee.donate.R$color: int switch_thumb_material_light -com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_default -com.google.android.material.R$styleable: int TabLayout_tabIndicatorHeight -com.jaredrummler.android.colorpicker.R$attr: int viewInflaterClass -wangdaye.com.geometricweather.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -com.google.android.material.R$style: int TextAppearance_Design_Prefix -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_scaleX -cyanogenmod.providers.CMSettings$Secure: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao -cyanogenmod.app.Profile$DozeMode: Profile$DozeMode() -cyanogenmod.alarmclock.ClockContract$InstancesColumns -com.google.android.material.timepicker.ClockHandView: ClockHandView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$id: int fixed -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String shortDescription -androidx.lifecycle.LifecycleRegistry$ObserverWithState: void dispatchEvent(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -io.reactivex.Observable: io.reactivex.Observable amb(java.lang.Iterable) -androidx.hilt.lifecycle.R$dimen: int notification_main_column_padding_top -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_disableDependentsState -james.adaptiveicon.R$style: int TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.background.receiver.widget.WidgetWeekProvider: WidgetWeekProvider() -androidx.preference.R$styleable: int AppCompatImageView_android_src -com.google.android.material.datepicker.CalendarConstraints -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityStopped(android.app.Activity) -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarSize -wangdaye.com.geometricweather.R$string: int feedback_location_list_cannot_be_null -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconTint -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -com.turingtechnologies.materialscrollbar.R$attr: int titleEnabled -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: ObservableCache$CacheDisposable(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableCache) -androidx.customview.R$id: int action_image -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial Imperial -androidx.viewpager.R$color -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display3 -com.google.android.material.R$dimen: int mtrl_calendar_navigation_height -androidx.preference.R$style: int Platform_AppCompat_Light -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert -cyanogenmod.externalviews.ExternalView: void access$000(cyanogenmod.externalviews.ExternalView) -com.jaredrummler.android.colorpicker.R$attr: int showTitle -com.google.android.material.chip.Chip: void setChipIconVisible(boolean) -com.google.android.material.R$styleable: int Chip_ensureMinTouchTargetSize -okio.Okio: okio.Source source(java.io.InputStream,okio.Timeout) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Large -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogCenterButtons -androidx.hilt.work.R$styleable: int Fragment_android_name -com.google.android.material.R$id: int bidirectional -com.turingtechnologies.materialscrollbar.R$attr: int tooltipForegroundColor -cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() -com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyle -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_menu_material -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -android.didikee.donate.R$string: int abc_searchview_description_clear -cyanogenmod.hardware.CMHardwareManager: java.lang.String getLtoDestination() -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_MinWidth_Bridge -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutely -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_spinnerStyle -okhttp3.RequestBody$3: void writeTo(okio.BufferedSink) -com.turingtechnologies.materialscrollbar.R$layout: int notification_template_icon_group -com.google.android.material.R$styleable: int Chip_chipStrokeWidth -wangdaye.com.geometricweather.R$dimen: int abc_search_view_preferred_width -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void removeScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getFillAlpha() -com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context,android.util.AttributeSet) -androidx.preference.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.R$id: int showCustom -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setNotification(java.lang.String) -com.google.android.material.R$styleable: int ActionBar_indeterminateProgressStyle -androidx.preference.R$style: int PreferenceSummaryTextStyle -retrofit2.Response: java.lang.Object body -com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_end_outer_color -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeStyle -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_MIN_INDEX -wangdaye.com.geometricweather.R$string: int feedback_clock_font -wangdaye.com.geometricweather.R$string: int key_forecast_tomorrow -android.didikee.donate.R$color: int abc_btn_colored_borderless_text_material -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: void dispose() -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableEnd -androidx.preference.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -androidx.activity.R$styleable: int GradientColorItem_android_offset -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox -okhttp3.ResponseBody$1: okio.BufferedSource source() -androidx.preference.R$styleable: int EditTextPreference_useSimpleSummaryProvider -retrofit2.ParameterHandler$1: void apply(retrofit2.RequestBuilder,java.lang.Object) -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean tryOnError(java.lang.Throwable) -androidx.fragment.R$style: int TextAppearance_Compat_Notification_Info -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizePresetSizes -androidx.constraintlayout.widget.R$color: int secondary_text_default_material_light -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_titleTextStyle -androidx.viewpager2.R$id: int accessibility_custom_action_4 -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -androidx.hilt.R$id: int accessibility_custom_action_22 -androidx.vectordrawable.animated.R$id: int tag_accessibility_heading -android.didikee.donate.R$drawable: int abc_switch_thumb_material -com.google.android.material.R$dimen: int design_navigation_icon_size -io.reactivex.internal.observers.InnerQueuedObserver: int prefetch -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowRadius -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -androidx.core.R$id: int line3 -okio.AsyncTimeout$Watchdog: void run() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: android.os.Bundle val$options -com.google.android.material.R$attr: int fabCustomSize -androidx.preference.R$layout: int preference_dropdown -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_corner_radius -wangdaye.com.geometricweather.R$styleable: int Chip_chipStartPadding -androidx.preference.R$attr: int drawableBottomCompat -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.functions.Function combiner -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_showText -com.google.android.material.R$integer: int abc_config_activityDefaultDur -wangdaye.com.geometricweather.settings.activities.SelectProviderActivity -com.google.android.material.R$styleable: int AppCompatTheme_borderlessButtonStyle -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition -androidx.appcompat.widget.Toolbar: int getContentInsetRight() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -com.google.android.material.textfield.TextInputLayout: int getHintCurrentCollapsedTextColor() -com.google.android.material.R$dimen: int highlight_alpha_material_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getLogo() -androidx.appcompat.R$drawable: int abc_btn_borderless_material -okhttp3.Interceptor -io.reactivex.Observable: io.reactivex.Observable switchOnNextDelayError(io.reactivex.ObservableSource) -android.didikee.donate.R$styleable: int ActionBar_logo -androidx.constraintlayout.widget.R$dimen: int abc_button_inset_horizontal_material -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() -com.turingtechnologies.materialscrollbar.R$attr: int tabPadding -com.google.android.material.R$styleable: int MenuItem_numericModifiers -androidx.constraintlayout.widget.R$id: int linear -com.google.android.material.R$styleable: int[] CompoundButton -com.google.android.material.R$styleable: int BottomAppBar_fabAnimationMode -androidx.hilt.R$styleable: int FontFamily_fontProviderPackage -androidx.preference.R$drawable: int abc_seekbar_track_material -androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_weight -com.google.android.material.R$dimen: int mtrl_calendar_header_height_fullscreen -cyanogenmod.externalviews.KeyguardExternalView$7: KeyguardExternalView$7(cyanogenmod.externalviews.KeyguardExternalView) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerSuccess(java.lang.Object) -com.bumptech.glide.R$attr: int fontProviderPackage -okio.Timeout$1: void throwIfReached() -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: $Gson$Types$ParameterizedTypeImpl(java.lang.reflect.Type,java.lang.reflect.Type,java.lang.reflect.Type[]) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTheme -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: boolean requestDismissAndStartActivity(android.content.Intent) -androidx.preference.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.R$styleable: int TagView_checked_background_color -retrofit2.HttpException: retrofit2.Response response -retrofit2.OkHttpCall: retrofit2.Response execute() -james.adaptiveicon.R$styleable: int ActionMenuItemView_android_minWidth -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: AccuLocationResult$AdministrativeArea() -androidx.preference.PreferenceScreen -androidx.recyclerview.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidth(int) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 -androidx.constraintlayout.widget.R$attr: int ratingBarStyleIndicator -androidx.core.R$drawable: int notification_template_icon_bg -io.reactivex.exceptions.ProtocolViolationException -james.adaptiveicon.R$integer: int cancel_button_image_alpha -androidx.work.R$styleable: int GradientColorItem_android_color -io.reactivex.Observable: io.reactivex.Observable debounce(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -android.didikee.donate.R$attr: int colorControlHighlight -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getSnow() -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionViewClass -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_icon -com.google.android.material.R$dimen: int abc_action_bar_overflow_padding_start_material -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: java.util.concurrent.CompletableFuture future -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments textAvalanche -wangdaye.com.geometricweather.R$color: int abc_background_cache_hint_selector_material_light -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_homeAsUpIndicator -android.didikee.donate.R$color: int abc_tint_edittext -androidx.preference.R$drawable: int abc_ic_ab_back_material -androidx.preference.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem -com.xw.repo.bubbleseekbar.R$attr: int actionModeCloseDrawable -android.didikee.donate.R$drawable: int abc_text_select_handle_right_mtrl_light -androidx.appcompat.resources.R$drawable: int notification_bg -androidx.constraintlayout.widget.R$color: int foreground_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: long EpochDateTime -wangdaye.com.geometricweather.R$integer -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -com.jaredrummler.android.colorpicker.R$attr: int contentInsetStart -com.google.android.material.R$dimen: int design_bottom_navigation_item_max_width -com.google.android.material.R$attr: int cardElevation -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description Description -androidx.appcompat.R$attr: int logo -wangdaye.com.geometricweather.R$color: int design_default_color_secondary_variant -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_EMPTY_RENEGOTIATION_INFO_SCSV -okio.SegmentedByteString: java.lang.Object writeReplace() -androidx.legacy.coreutils.R$styleable: int GradientColor_android_endColor -android.didikee.donate.R$styleable: int Spinner_android_entries -okhttp3.internal.platform.Platform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.SSLSocketFactory) -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context,android.util.AttributeSet,int) -androidx.preference.PreferenceDialogFragmentCompat -com.google.android.material.R$style: int Widget_Design_BottomNavigationView -okhttp3.CookieJar: void saveFromResponse(okhttp3.HttpUrl,java.util.List) -com.turingtechnologies.materialscrollbar.R$attr: int dropdownListPreferredItemHeight -androidx.work.impl.workers.CombineContinuationsWorker -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getAqiIndex() -androidx.preference.R$attr: int alertDialogButtonGroupStyle -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getSummary(android.content.Context,java.util.List) -wangdaye.com.geometricweather.R$styleable: int Spinner_popupTheme -com.jaredrummler.android.colorpicker.R$style: int Preference_SeekBarPreference -wangdaye.com.geometricweather.R$style: int Preference_Material -androidx.appcompat.R$styleable: int StateListDrawable_android_constantSize -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textSize -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Title -james.adaptiveicon.R$styleable: int MenuGroup_android_id -okhttp3.internal.http.CallServerInterceptor$CountingSink -okhttp3.internal.ws.RealWebSocket$PingRunnable: okhttp3.internal.ws.RealWebSocket this$0 -okio.HashingSource: okio.HashingSource sha256(okio.Source) -androidx.fragment.R$style -okhttp3.internal.http.StatusLine: int HTTP_TEMP_REDIRECT -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onNext(java.lang.Object) -com.google.android.material.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -androidx.viewpager.widget.ViewPager: void addOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) -com.xw.repo.bubbleseekbar.R$dimen: int notification_subtext_size -io.reactivex.internal.util.NotificationLite: java.lang.Object error(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult -android.didikee.donate.R$attr: int divider -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: double Value -android.didikee.donate.R$styleable: int ActionMenuItemView_android_minWidth -androidx.preference.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$transition: R$transition() -com.google.android.material.R$id: int ghost_view -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconVisible -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedWidthMinor -androidx.appcompat.R$drawable: int abc_tab_indicator_mtrl_alpha -com.xw.repo.bubbleseekbar.R$attr: int bsb_show_thumb_text -com.turingtechnologies.materialscrollbar.R$id: int search_edit_frame -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceBody2 -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PKG_NAME -retrofit2.ParameterHandler$RelativeUrl: java.lang.reflect.Method method -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node removeInternalByKey(java.lang.Object) -com.google.android.material.R$style: int Widget_AppCompat_SeekBar_Discrete -wangdaye.com.geometricweather.db.entities.AlertEntity: long alertId -wangdaye.com.geometricweather.R$styleable: int[] ClockHandView -com.google.android.material.R$attr: int scrimVisibleHeightTrigger -io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX) -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderQuery -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getTotalPrecipitationProbability() -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context,android.util.AttributeSet) -androidx.preference.R$id: int actions -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$styleable: int[] KeyPosition -cyanogenmod.themes.ThemeManager: void addClient(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getAbbreviation(android.content.Context) -com.google.android.material.R$dimen: int mtrl_calendar_landscape_header_width -okhttp3.internal.http2.PushObserver: boolean onRequest(int,java.util.List) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_content_inset_material -okhttp3.Handshake: java.util.List localCertificates() -com.xw.repo.bubbleseekbar.R$attr: int bsb_second_track_color -com.google.android.material.R$dimen: int mtrl_slider_halo_radius -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ButtonBar -okhttp3.internal.http.HttpMethod: boolean permitsRequestBody(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: void setStatus(int) -androidx.preference.PreferenceGroup -androidx.preference.R$drawable: int preference_list_divider_material -com.google.android.material.R$dimen: int item_touch_helper_swipe_escape_velocity -com.turingtechnologies.materialscrollbar.R$attr: int controlBackground -wangdaye.com.geometricweather.R$attr: int autoSizeTextType -wangdaye.com.geometricweather.R$attr: int endIconCheckable -com.google.android.material.R$attr: int layout_constraintBottom_toTopOf -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_CHACHA20_POLY1305_SHA256 -com.bumptech.glide.R$dimen: int notification_big_circle_margin -com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_top -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_content_padding -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstVerticalBias -io.reactivex.internal.util.VolatileSizeArrayList: boolean contains(java.lang.Object) -androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor[] values() -wangdaye.com.geometricweather.R$color: int abc_search_url_text -cyanogenmod.app.ILiveLockScreenManagerProvider: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -cyanogenmod.app.ProfileManager: boolean profileExists(java.lang.String) -wangdaye.com.geometricweather.R$id: int slide -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_card -com.google.android.material.R$attr: int tickMarkTint -com.google.android.material.R$dimen: int mtrl_calendar_year_corner -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: android.os.IBinder asBinder() -cyanogenmod.themes.IThemeService: long getLastThemeChangeTime() -com.turingtechnologies.materialscrollbar.R$attr: int toolbarId -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification -android.support.v4.os.ResultReceiver: ResultReceiver(android.os.Parcel) -androidx.preference.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -io.reactivex.internal.functions.Functions$HashSetCallable: java.util.Set call() -wangdaye.com.geometricweather.R$string: int abc_activity_chooser_view_see_all -wangdaye.com.geometricweather.R$attr: int expandedTitleGravity -wangdaye.com.geometricweather.R$color: int test_mtrl_calendar_day_selected -androidx.appcompat.R$integer: int abc_config_activityDefaultDur -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: AccuAlertResult$Color() -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: long serialVersionUID -com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimVisibleHeightTrigger(int) -com.google.android.material.internal.ParcelableSparseIntArray -com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.xw.repo.bubbleseekbar.R$id: int default_activity_button -wangdaye.com.geometricweather.R$attr: int drawable_res_on -androidx.hilt.work.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setStatus(int) -androidx.preference.R$layout: int abc_list_menu_item_checkbox -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getGrassLevel() -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_Cut -com.google.android.material.R$id: int rectangles -okio.Segment: Segment() -androidx.lifecycle.CompositeGeneratedAdaptersObserver: CompositeGeneratedAdaptersObserver(androidx.lifecycle.GeneratedAdapter[]) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -okhttp3.ConnectionPool$1: void run() -com.jaredrummler.android.colorpicker.R$styleable: int BackgroundStyle_android_selectableItemBackground -wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWidgetConfigActivity: Hilt_DayWidgetConfigActivity() -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_divider_material -okhttp3.Cookie$Builder -james.adaptiveicon.R$layout: int support_simple_spinner_dropdown_item -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setCityId(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ArcProgress_arc_angle -com.google.android.material.R$attr: int itemShapeInsetStart -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getLongAbbreviation(android.content.Context) -wangdaye.com.geometricweather.R$attr: int bsb_progress -androidx.room.MultiInstanceInvalidationService -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: void setUnit(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeWidth -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setTextColor(int) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String threshold -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_CheckBox -androidx.preference.R$attr: int enableCopying -wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_close_circle -androidx.appcompat.view.menu.ActionMenuItemView: void setItemInvoker(androidx.appcompat.view.menu.MenuBuilder$ItemInvoker) -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type valueOf(java.lang.String) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -androidx.preference.R$styleable: int AppCompatTheme_listMenuViewStyle -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -cyanogenmod.power.PerformanceManagerInternal -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionBar -james.adaptiveicon.R$styleable: int[] AppCompatTheme -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onNext(java.lang.Object) -cyanogenmod.app.ProfileManager: boolean profileExists(java.util.UUID) -androidx.preference.R$id: int none -wangdaye.com.geometricweather.R$dimen: int material_emphasis_disabled -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display2 -androidx.core.R$id: int actions -wangdaye.com.geometricweather.R$id: int item_weather_icon_title -android.didikee.donate.R$anim: int abc_grow_fade_in_from_bottom -okhttp3.Cookie$Builder: long expiresAt -retrofit2.ParameterHandler$RawPart: ParameterHandler$RawPart() -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String weatherSource -com.google.android.material.R$styleable: int Chip_checkedIconTint -com.google.android.material.R$styleable: int Chip_closeIconEnabled -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Colored -androidx.appcompat.widget.LinearLayoutCompat: void setVerticalGravity(int) -android.didikee.donate.R$drawable: int abc_ic_go_search_api_material -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void run() -androidx.activity.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getIconResEnd() -androidx.appcompat.widget.SwitchCompat: int getSwitchMinWidth() -com.google.android.material.R$id: int selected -com.bumptech.glide.R$styleable: int GradientColor_android_gradientRadius -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -com.google.android.material.R$drawable: int abc_text_select_handle_right_mtrl_light -cyanogenmod.app.CustomTile: java.lang.Object clone() -androidx.preference.R$styleable: int PreferenceFragmentCompat_android_layout -androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Light -androidx.hilt.lifecycle.R$anim: int fragment_fast_out_extra_slow_in -okio.RealBufferedSource: long indexOf(byte,long,long) -androidx.appcompat.widget.FitWindowsFrameLayout -okhttp3.internal.http2.Header: okio.ByteString TARGET_PATH -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_controlBackground -androidx.swiperefreshlayout.R$style: int Widget_Compat_NotificationActionContainer -com.turingtechnologies.materialscrollbar.R$attr: int chipSpacingHorizontal -wangdaye.com.geometricweather.remoteviews.config.Hilt_DailyTrendWidgetConfigActivity -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry -com.google.android.material.R$styleable: int CompoundButton_buttonTintMode -io.reactivex.Observable: io.reactivex.Observable startWithArray(java.lang.Object[]) -com.google.android.material.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -james.adaptiveicon.R$color: int bright_foreground_disabled_material_light -cyanogenmod.app.CustomTile$ExpandedItem$1: cyanogenmod.app.CustomTile$ExpandedItem[] newArray(int) -com.google.android.material.R$styleable: int ActionBar_homeAsUpIndicator -com.bumptech.glide.R$attr: int statusBarBackground -wangdaye.com.geometricweather.R$dimen: int material_timepicker_dialog_buttons_margin_top -cyanogenmod.app.Profile$DozeMode: int DEFAULT -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_69 -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getThumbTintList() -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getPackage() -com.google.android.material.R$id: int material_minute_text_input -android.didikee.donate.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -wangdaye.com.geometricweather.R$color: int material_blue_grey_900 -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: ObservableMergeWithCompletable$MergeWithObserver(io.reactivex.Observer) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: boolean isDisposed() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onKeyguardDismissed() -com.google.android.material.R$attr: int flow_lastVerticalBias -com.google.android.material.textfield.TextInputLayout: void setHelperTextTextAppearance(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric -com.xw.repo.bubbleseekbar.R$color: int material_grey_100 -wangdaye.com.geometricweather.R$styleable: int CardView_cardElevation -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Pollen getPollen() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: int UnitType -com.google.android.material.R$id: int bounce -okhttp3.internal.cache.InternalCache: void update(okhttp3.Response,okhttp3.Response) -com.google.android.material.R$dimen: int mtrl_shape_corner_size_large_component -android.didikee.donate.R$styleable: int ActionMode_height -wangdaye.com.geometricweather.R$attr: int valueTextColor -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onSuccess(java.lang.Object) -cyanogenmod.app.CMTelephonyManager: void setDefaultSmsSub(int) -androidx.customview.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature -io.reactivex.internal.disposables.DisposableHelper: boolean trySet(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWetBulbTemperature(java.lang.Integer) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: AccuCurrentResult$Pressure$Metric() -com.google.gson.JsonSyntaxException -com.google.android.material.R$styleable: int KeyPosition_percentHeight -androidx.appcompat.R$style: int Theme_AppCompat_Light_NoActionBar -okhttp3.internal.cache.CacheInterceptor$1: void close() -okhttp3.internal.connection.StreamAllocation: java.lang.Object callStackTrace -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default -cyanogenmod.weather.CMWeatherManager$1$1 -com.google.android.material.R$styleable: int AppCompatTheme_imageButtonStyle -com.jaredrummler.android.colorpicker.R$string: int v7_preference_on -com.google.android.material.chip.Chip: void setChipText(java.lang.CharSequence) -androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragScale -okio.Okio: okio.AsyncTimeout timeout(java.net.Socket) -okio.BufferedSource: long indexOfElement(okio.ByteString) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_shapeAppearanceOverlay -androidx.preference.R$styleable: int RecyclerView_reverseLayout -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_prompt -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityCreated(android.app.Activity,android.os.Bundle) -okio.Buffer: byte getByte(long) -okio.GzipSink: okio.DeflaterSink deflaterSink -com.google.android.material.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -androidx.dynamicanimation.R$attr: int fontProviderAuthority -androidx.preference.R$drawable: int btn_radio_on_to_off_mtrl_animation -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_track -wangdaye.com.geometricweather.R$attr: int titleMargin -android.didikee.donate.R$color: int bright_foreground_disabled_material_dark -androidx.lifecycle.Transformations: androidx.lifecycle.LiveData switchMap(androidx.lifecycle.LiveData,androidx.arch.core.util.Function) -com.bumptech.glide.R$id: int notification_background -androidx.constraintlayout.widget.R$attr: int homeLayout -wangdaye.com.geometricweather.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: java.lang.Long set -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.util.Date StartTime -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableItem_android_id -wangdaye.com.geometricweather.R$id: int widget_day_week_time -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_divider -androidx.constraintlayout.widget.R$styleable: int Spinner_android_prompt -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowColor -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode valueOf(java.lang.String) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: ExecutorScheduler$ExecutorWorker$InterruptibleRunnable(java.lang.Runnable,io.reactivex.internal.disposables.DisposableContainer) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView_Menu -cyanogenmod.app.suggest.ApplicationSuggestion -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteSelector routeSelector -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextInputLayout -androidx.legacy.coreutils.R$id: int notification_main_column_container -com.google.android.material.R$dimen: int design_tab_scrollable_min_width -james.adaptiveicon.R$id: int spacer -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetLeft -androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -androidx.constraintlayout.widget.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum Maximum -androidx.preference.R$styleable: int AppCompatImageView_srcCompat -androidx.appcompat.R$layout: int abc_list_menu_item_icon -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motion_postLayoutCollision -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pm25 -androidx.appcompat.R$color: int abc_secondary_text_material_light -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_checkedTextViewStyle -androidx.constraintlayout.widget.R$id: int listMode -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$y -androidx.constraintlayout.widget.Group: void setVisibility(int) -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -cyanogenmod.weather.RequestInfo: boolean equals(java.lang.Object) -io.reactivex.Observable: io.reactivex.Observable concatDelayError(io.reactivex.ObservableSource,int,boolean) -androidx.fragment.app.Fragment$2 -androidx.preference.R$styleable: int RecyclerView_android_clipToPadding -james.adaptiveicon.R$drawable: int abc_text_select_handle_middle_mtrl_dark -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView -androidx.constraintlayout.widget.R$attr: int homeAsUpIndicator -androidx.preference.R$style: int Preference_SwitchPreferenceCompat_Material -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Filter -com.xw.repo.bubbleseekbar.R$dimen: int disabled_alpha_material_dark -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String _ID -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode FLOW_CONTROL_ERROR -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackInactiveTintList() -wangdaye.com.geometricweather.R$color: int colorSearchBarBackground_dark -wangdaye.com.geometricweather.R$color: int preference_fallback_accent_color -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency PressureTendency -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar_FullWidth -androidx.constraintlayout.utils.widget.MockView -androidx.appcompat.R$color: int material_grey_600 -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -android.didikee.donate.R$color: int abc_tint_switch_track -android.didikee.donate.R$styleable: int SwitchCompat_showText -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA -android.didikee.donate.R$styleable: int SearchView_iconifiedByDefault -androidx.preference.R$styleable: int AppCompatTheme_dialogTheme -androidx.lifecycle.extensions.R$dimen: int notification_main_column_padding_top -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_orderInCategory -okhttp3.internal.tls.BasicCertificateChainCleaner: boolean verifySignature(java.security.cert.X509Certificate,java.security.cert.X509Certificate) -wangdaye.com.geometricweather.R$attr: int trackColorActive -io.reactivex.disposables.RunnableDisposable: java.lang.String toString() -androidx.preference.R$attr: int layoutManager -com.google.android.material.R$layout: int mtrl_calendar_months -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: WindDegree(float,boolean) -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver -com.turingtechnologies.materialscrollbar.R$layout: int abc_tooltip -cyanogenmod.os.Concierge$ParcelInfo: void complete() -wangdaye.com.geometricweather.R$dimen: int content_text_size -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory create() -androidx.vectordrawable.R$id: int accessibility_custom_action_0 -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator -okhttp3.Dispatcher: void setIdleCallback(java.lang.Runnable) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Small -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void cancel() -androidx.activity.R$drawable: int notification_action_background -retrofit2.http.Field: java.lang.String value() -okhttp3.internal.http1.Http1Codec: okhttp3.internal.connection.StreamAllocation streamAllocation -okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String,java.util.Date) -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_exitFadeDuration -cyanogenmod.providers.CMSettings$System: java.lang.String ZEN_ALLOW_LIGHTS -androidx.appcompat.R$styleable: int[] ButtonBarLayout -okhttp3.HttpUrl$Builder: int schemeDelimiterOffset(java.lang.String,int,int) -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Writer writer -cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.CMTelephonyManager getInstance(android.content.Context) -cyanogenmod.profiles.AirplaneModeSettings$1: java.lang.Object[] newArray(int) -com.xw.repo.bubbleseekbar.R$color: int abc_background_cache_hint_selector_material_dark -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_AM_PM -androidx.fragment.R$styleable: int ColorStateListItem_android_color -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_elevation -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_checkedTextViewStyle -androidx.lifecycle.extensions.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitation -com.google.android.material.R$attr: int chipStrokeWidth -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource LOCAL -androidx.activity.R$dimen: int compat_button_padding_horizontal_material -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl -com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_thumb_material -androidx.appcompat.R$dimen: int abc_action_bar_overflow_padding_end_material -androidx.constraintlayout.widget.R$attr: int layout_constraintTop_creator -androidx.hilt.lifecycle.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: double Value -com.google.android.material.R$styleable: int Constraint_flow_lastHorizontalBias -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_visible -com.google.android.material.R$attr: int actionTextColorAlpha -androidx.constraintlayout.widget.R$attr: int flow_lastVerticalStyle -androidx.swiperefreshlayout.R$drawable: R$drawable() -androidx.appcompat.R$id: int time -cyanogenmod.hardware.CMHardwareManager: int getArrayValue(int[],int,int) -com.google.android.material.R$color: int secondary_text_disabled_material_light -com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_alpha -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean isEntityUpdateable() -wangdaye.com.geometricweather.R$id: int snackbar_text -wangdaye.com.geometricweather.R$color: int mtrl_chip_close_icon_tint -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void drain() -wangdaye.com.geometricweather.R$layout: int notification_action_tombstone -android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Medium -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.disposables.Disposable upstream -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache -okhttp3.EventListener: void dnsStart(okhttp3.Call,java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeLevel(java.lang.Integer) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer rainProductAvailable -com.bumptech.glide.load.engine.GlideException: void setLoggingDetails(com.bumptech.glide.load.Key,com.bumptech.glide.load.DataSource) -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework -okio.ForwardingTimeout: long timeoutNanos() -androidx.lifecycle.ComputableLiveData: java.lang.Runnable mRefreshRunnable -okhttp3.Cookie: boolean hostOnly() -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: long serialVersionUID -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property So2 -com.google.android.material.R$styleable: int Chip_closeIconTint -androidx.recyclerview.R$id -androidx.core.R$styleable: int FontFamilyFont_android_font -com.google.android.material.bottomappbar.BottomAppBar: void setFabCradleRoundedCornerRadius(float) -com.google.android.material.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -com.google.android.material.R$dimen: int abc_dialog_padding_top_material -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_android_gravity -cyanogenmod.app.CustomTile$Builder: CustomTile$Builder(android.content.Context) -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_normal_material_light -com.google.android.material.R$string: int abc_action_bar_home_description -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi mApi -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun Sun -androidx.appcompat.R$styleable: int ActionMode_height -io.reactivex.internal.disposables.CancellableDisposable: long serialVersionUID -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeCloudCover() -com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetRight -androidx.customview.R$dimen: R$dimen() -com.google.android.material.textfield.TextInputLayout: void setPrefixText(java.lang.CharSequence) -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void cancelOngoingRequests() -com.google.android.material.R$animator: int mtrl_fab_transformation_sheet_expand_spec -com.turingtechnologies.materialscrollbar.R$attr: int counterTextAppearance -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItemSmall -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean isEmpty() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int so2 -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -com.google.android.material.slider.RangeSlider: void setThumbTintList(android.content.res.ColorStateList) -androidx.preference.EditTextPreference -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType[] $VALUES -com.jaredrummler.android.colorpicker.R$drawable: int abc_tab_indicator_mtrl_alpha -com.google.android.material.R$styleable: int[] Tooltip -com.google.android.material.R$styleable: int[] ShapeableImageView -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year -wangdaye.com.geometricweather.R$anim: int abc_shrink_fade_out_from_bottom -cyanogenmod.externalviews.ExternalViewProviderService: android.view.WindowManager mWindowManager -com.google.android.material.R$style: int Theme_MaterialComponents_DialogWhenLarge -android.didikee.donate.R$style: int Base_Theme_AppCompat_DialogWhenLarge -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property CityId -okhttp3.WebSocketListener: void onMessage(okhttp3.WebSocket,okio.ByteString) -okhttp3.internal.platform.OptionalMethod: java.lang.reflect.Method getPublicMethod(java.lang.Class,java.lang.String,java.lang.Class[]) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum -io.reactivex.internal.observers.InnerQueuedObserver: int fusionMode -androidx.appcompat.resources.R$id: int accessibility_custom_action_11 -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarStyle -androidx.appcompat.R$drawable: int abc_ic_star_half_black_16dp -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalBias -androidx.loader.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.R$attr: int buttonIconDimen -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_dividerPadding -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: java.lang.Runnable getWrappedRunnable() -androidx.recyclerview.R$id: int notification_main_column -com.google.android.material.bottomappbar.BottomAppBar: int getRightInset() -androidx.viewpager.R$dimen: int notification_content_margin_start -com.google.android.material.R$attr: int scrimBackground -james.adaptiveicon.R$layout: int abc_activity_chooser_view_list_item -androidx.lifecycle.Transformations -com.xw.repo.bubbleseekbar.R$attr: int alertDialogTheme -androidx.hilt.work.R$id: int accessibility_custom_action_25 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarButtonStyle -james.adaptiveicon.R$drawable: int abc_ratingbar_indicator_material -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: int limit -wangdaye.com.geometricweather.R$drawable: int weather_snow_3 -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_holo_light -com.jaredrummler.android.colorpicker.R$attr: int showAsAction -wangdaye.com.geometricweather.R$styleable: int Layout_barrierDirection -retrofit2.ParameterHandler$Part: ParameterHandler$Part(java.lang.reflect.Method,int,okhttp3.Headers,retrofit2.Converter) -com.turingtechnologies.materialscrollbar.Indicator: int getTextSize() -androidx.appcompat.view.menu.StandardMenuPopup -wangdaye.com.geometricweather.R$drawable: int clock_hour_light -com.google.android.material.R$attr: int tabMaxWidth -androidx.vectordrawable.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -com.google.android.material.R$attr: int reverseLayout -retrofit2.http.Path: java.lang.String value() -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void dispose() -cyanogenmod.providers.CMSettings$Secure: java.lang.String ENABLED_EVENT_LIVE_LOCKS_KEY -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: AccuCurrentResult$Ceiling$Metric() -androidx.constraintlayout.widget.R$layout: int abc_popup_menu_header_item_layout -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintEnd_toStartOf -com.bumptech.glide.integration.okhttp.R$attr: int layout_keyline -james.adaptiveicon.R$styleable: int MenuItem_iconTint -wangdaye.com.geometricweather.R$id: int textSpacerNoButtons -com.google.android.material.R$attr: int itemFillColor -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_title_material_toolbar -androidx.dynamicanimation.R$id: int notification_main_column -com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String BUILD_TYPE -androidx.lifecycle.extensions.R$id: int tag_accessibility_clickable_spans -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather weather -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_registerChangeListener -wangdaye.com.geometricweather.R$attr: int flow_verticalGap -androidx.preference.R$id: int activity_chooser_view_content -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: io.reactivex.MaybeSource other -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy[] values() -com.turingtechnologies.materialscrollbar.R$attr: int boxStrokeColor -com.jaredrummler.android.colorpicker.R$id: int textSpacerNoButtons -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_42 -androidx.lifecycle.ServiceLifecycleDispatcher -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -androidx.viewpager.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setBottomText(java.lang.String) -androidx.cardview.widget.CardView: int getContentPaddingBottom() -wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_dark -io.reactivex.Observable: io.reactivex.Observable doAfterTerminate(io.reactivex.functions.Action) -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_keyline -james.adaptiveicon.R$styleable: int TextAppearance_android_shadowRadius -okhttp3.internal.platform.Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -androidx.preference.R$string: int expand_button_title -com.google.android.material.R$styleable: int FloatingActionButton_maxImageSize -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setEn_US(java.lang.String) -com.google.android.material.R$styleable: int ChipGroup_checkedChip -com.google.android.material.R$dimen: R$dimen() -androidx.swiperefreshlayout.R$id: int tag_accessibility_pane_title -com.bumptech.glide.R$id: int text -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode CANCEL -cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.CustomTile customTile -androidx.preference.R$styleable: int[] PreferenceImageView -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ProgressBar -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogCornerRadius -androidx.constraintlayout.widget.R$id: int right_side -okhttp3.Protocol: okhttp3.Protocol get(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_showDividers -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection connection -cyanogenmod.externalviews.KeyguardExternalView$4: cyanogenmod.externalviews.KeyguardExternalView this$0 -com.bumptech.glide.R$attr: int layout_dodgeInsetEdges -androidx.constraintlayout.widget.R$drawable: int abc_text_cursor_material -wangdaye.com.geometricweather.R$color: int design_default_color_surface -androidx.fragment.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: float unitFactor -com.google.gson.stream.JsonWriter: void setIndent(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.Alert: long getTime() -wangdaye.com.geometricweather.R$string: int feedback_unusable_geocoder -com.bumptech.glide.R$dimen: int notification_large_icon_height -okhttp3.internal.http1.Http1Codec: void flushRequest() -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_progressBarStyle -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView_DropDown -james.adaptiveicon.R$dimen: int abc_text_size_body_1_material -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String comment -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -wangdaye.com.geometricweather.R$style: int PreferenceFragment_Material -com.google.android.material.R$styleable: int Chip_textEndPadding -wangdaye.com.geometricweather.background.service.TileService: TileService() -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_DialogWhenLarge -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_RINGTONE -com.bumptech.glide.integration.okhttp.R$dimen: int notification_action_icon_size -com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException: long serialVersionUID -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property DegreeDayTemperature -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node header -wangdaye.com.geometricweather.R$drawable: int notif_temp_116 -androidx.appcompat.R$styleable: int AppCompatTheme_tooltipFrameBackground -androidx.dynamicanimation.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.R$attr: int showDividers -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getUnitId() -com.google.android.material.R$styleable: int ColorStateListItem_android_alpha -androidx.lifecycle.ProcessLifecycleOwner -com.xw.repo.bubbleseekbar.R$attr: int preserveIconSpacing -com.google.android.material.R$styleable: int Chip_closeIconSize -james.adaptiveicon.R$id: int actions -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton_Overflow -androidx.core.R$id: int action_image -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,io.reactivex.functions.Function,java.util.concurrent.Callable) -androidx.constraintlayout.widget.R$styleable: int ActionBar_title -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -com.xw.repo.bubbleseekbar.R$attr: int searchIcon -androidx.viewpager2.R$styleable: int GradientColor_android_startY -androidx.constraintlayout.utils.widget.ImageFilterButton: void setRoundPercent(float) -com.google.android.material.navigation.NavigationView: void setItemTextAppearance(int) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: ObservableRange$RangeDisposable(io.reactivex.Observer,long,long) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onNext(java.lang.Object) -io.reactivex.Observable: io.reactivex.Observable concatEager(java.lang.Iterable) -okhttp3.internal.http2.Http2Connection: okhttp3.Protocol getProtocol() -io.reactivex.Observable: java.lang.Iterable blockingLatest() -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_normal_material_light -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ApparentTemperature -androidx.preference.R$id: int accessibility_custom_action_13 -androidx.swiperefreshlayout.R$id: int info -com.turingtechnologies.materialscrollbar.R$styleable: int ButtonBarLayout_allowStacking -james.adaptiveicon.R$attr: int colorControlNormal -wangdaye.com.geometricweather.R$attr: int fabAnimationMode -com.google.android.material.R$styleable: int TextInputLayout_boxStrokeWidthFocused -wangdaye.com.geometricweather.R$dimen: int design_snackbar_action_text_color_alpha -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: int getCity_code() -com.google.android.material.R$string: int mtrl_exceed_max_badge_number_content_description -james.adaptiveicon.R$attr: int switchPadding -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingBottom -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework -okhttp3.ResponseBody$1: okhttp3.MediaType contentType() -james.adaptiveicon.R$color: int highlighted_text_material_dark -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_2 -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float pSea -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListMenuView -james.adaptiveicon.R$drawable: int abc_ic_star_black_36dp -io.reactivex.disposables.RunnableDisposable: void onDisposed(java.lang.Object) -com.google.android.material.R$styleable: int KeyCycle_framePosition -com.google.android.material.R$styleable: int AppCompatSeekBar_android_thumb -wangdaye.com.geometricweather.R$styleable: int FitSystemBarRecyclerView_rv_side -com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.graphics.drawable.Drawable getItemBackground() -wangdaye.com.geometricweather.R$string: int key_widget_clock_day_vertical -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast -androidx.viewpager2.widget.ViewPager2: void setOffscreenPageLimit(int) -okio.BufferedSink: long writeAll(okio.Source) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_NULL_SHA -com.google.android.material.R$styleable: int Constraint_android_translationY -wangdaye.com.geometricweather.R$style: int Widget_Design_ScrimInsetsFrameLayout -wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_dark -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.CMHardwareManager sCMHardwareManagerInstance -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_y_offset_touch -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_scaleY -android.didikee.donate.R$style: int Widget_AppCompat_DropDownItem_Spinner -com.xw.repo.bubbleseekbar.R$attr: int divider -com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_swipe_escape_velocity -com.turingtechnologies.materialscrollbar.R$attr: int tickMarkTintMode -okio.RealBufferedSource: okio.ByteString readByteString() -wangdaye.com.geometricweather.R$id: int dialog_resident_location_container -android.didikee.donate.R$styleable: int[] ActionBarLayout -androidx.lifecycle.extensions.R$id: int dialog_button -com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_end_inner_color -androidx.preference.R$attr: int buttonCompat -wangdaye.com.geometricweather.R$drawable: int shortcuts_wind -wangdaye.com.geometricweather.R$attr: int behavior_fitToContents -androidx.appcompat.view.menu.ListMenuItemView: void setIcon(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onComplete() -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: float unitFactor -wangdaye.com.geometricweather.R$attr: int drawableTint -okio.Buffer: long read(okio.Buffer,long) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_WIFI_ICON -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: CaiYunMainlyResult$CurrentBean$HumidityBean() -com.google.android.material.R$dimen: int abc_disabled_alpha_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorAccent -androidx.coordinatorlayout.R$layout: int custom_dialog -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_toLeftOf -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: float intervalInHour -com.google.android.material.R$id: int tabMode -wangdaye.com.geometricweather.R$style: int Widget_Compat_NotificationActionText -cyanogenmod.weather.RequestInfo: android.location.Location getLocation() -wangdaye.com.geometricweather.R$color: int design_dark_default_color_background -com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonTint -androidx.coordinatorlayout.R$layout: int notification_template_part_chronometer -androidx.dynamicanimation.R$layout: int notification_template_custom_big -androidx.preference.R$styleable: int RecyclerView_stackFromEnd -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton_Overflow -com.google.android.material.R$attr: int textAppearanceSmallPopupMenu -james.adaptiveicon.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getLongDate(android.content.Context) -wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_range_start -wangdaye.com.geometricweather.common.basic.models.weather.History: int getDaytimeTemperature() -androidx.drawerlayout.R$id: int async -com.google.android.material.slider.Slider: int getActiveThumbIndex() -androidx.lifecycle.LiveData: LiveData() -androidx.vectordrawable.R$layout: int notification_template_part_time -com.xw.repo.bubbleseekbar.R$attr: int lineHeight -androidx.appcompat.R$attr: int buttonGravity -okhttp3.Headers$Builder: okhttp3.Headers$Builder removeAll(java.lang.String) -com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Object) -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification -com.google.android.material.slider.BaseSlider: void setThumbStrokeColorResource(int) -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date sunriseTime -james.adaptiveicon.R$styleable: int SwitchCompat_showText -androidx.work.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String value -com.github.rahatarmanahmed.cpv.CircularProgressView: void onSizeChanged(int,int,int,int) -cyanogenmod.app.IProfileManager$Stub -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float no2 -okhttp3.internal.http2.Settings: int[] values -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart -wangdaye.com.geometricweather.R$styleable: int TextAppearance_fontFamily -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -wangdaye.com.geometricweather.R$id: int container_main_header_tempTxt -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize -com.xw.repo.bubbleseekbar.R$attr: int autoSizeStepGranularity -com.google.android.material.R$integer: int cancel_button_image_alpha -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_backgroundStacked -wangdaye.com.geometricweather.R$string: int key_refresh_rate -androidx.core.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.R$id: int activity_widget_config_wall -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String EnglishName -androidx.preference.R$layout: int abc_action_menu_item_layout -wangdaye.com.geometricweather.R$attr: int flow_verticalBias -com.turingtechnologies.materialscrollbar.Indicator: void setScroll(float) -android.didikee.donate.R$attr: int popupMenuStyle -android.didikee.donate.R$style: int Widget_AppCompat_Spinner_DropDown -android.didikee.donate.R$color: int abc_primary_text_material_dark -com.turingtechnologies.materialscrollbar.R$drawable: int abc_item_background_holo_dark -androidx.preference.R$attr: int actionBarWidgetTheme -james.adaptiveicon.R$attr: int windowFixedHeightMajor -com.google.android.material.R$styleable: int KeyTimeCycle_android_elevation -wangdaye.com.geometricweather.R$anim: int design_bottom_sheet_slide_out -androidx.appcompat.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.entities.DailyEntity readEntity(android.database.Cursor,int) -com.xw.repo.bubbleseekbar.R$string: int abc_capital_on -wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_height_material -wangdaye.com.geometricweather.R$color: int mtrl_textinput_disabled_color -com.google.android.material.datepicker.MaterialDatePicker -cyanogenmod.themes.IThemeService: void requestThemeChangeUpdates(cyanogenmod.themes.IThemeChangeListener) -androidx.preference.R$attr: int dialogPreferenceStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setStatus(int) -okhttp3.internal.NamedRunnable: void execute() -android.didikee.donate.R$attr: int buttonTintMode -com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getBackgroundTintMode() -androidx.preference.R$dimen: int compat_button_inset_vertical_material -androidx.transition.R$id: int icon -cyanogenmod.app.ThemeVersion: java.lang.String THEME_VERSION_FIELD_NAME -androidx.constraintlayout.widget.R$layout: int notification_action_tombstone -androidx.vectordrawable.animated.R$id: int notification_main_column_container -okio.AsyncTimeout -okhttp3.OkHttpClient$1: OkHttpClient$1() -cyanogenmod.app.Profile: void setAirplaneMode(cyanogenmod.profiles.AirplaneModeSettings) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupWindow -com.jaredrummler.android.colorpicker.R$attr: int maxWidth -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedPath(java.lang.String) -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Caption -com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreference -androidx.constraintlayout.helper.widget.Flow -wangdaye.com.geometricweather.R$id: int material_clock_period_toggle -okhttp3.logging.HttpLoggingInterceptor$Level: HttpLoggingInterceptor$Level(java.lang.String,int) -wangdaye.com.geometricweather.R$attr: int navigationIcon -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_radius -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_layoutManager -androidx.legacy.coreutils.R$style -com.bumptech.glide.R$styleable: int FontFamilyFont_ttcIndex -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void updateVisibility() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherText -com.turingtechnologies.materialscrollbar.R$styleable: int[] ScrollingViewBehavior_Layout -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy[] values() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -com.bumptech.glide.R$style: int Widget_Compat_NotificationActionContainer -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -com.turingtechnologies.materialscrollbar.R$styleable: int[] TabItem -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onError(java.lang.Throwable) -androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context) -wangdaye.com.geometricweather.R$layout: int support_simple_spinner_dropdown_item -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderCerts -com.xw.repo.bubbleseekbar.R$layout: int abc_action_bar_up_container -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long serialVersionUID -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -io.reactivex.exceptions.CompositeException: void printStackTrace(java.io.PrintWriter) -android.didikee.donate.R$attr: int listMenuViewStyle -com.google.android.material.R$styleable: int ActionBarLayout_android_layout_gravity -wangdaye.com.geometricweather.R$id: int item_about_translator -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: android.graphics.Rect val$clipRect -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.disposables.Disposable upstream -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mLightsMode -androidx.transition.R$styleable: int GradientColor_android_endX -androidx.constraintlayout.widget.R$dimen: int hint_alpha_material_dark -cyanogenmod.app.ProfileGroup: android.net.Uri mRingerOverride -com.xw.repo.bubbleseekbar.R$dimen: int compat_button_padding_vertical_material -androidx.preference.R$string: int not_set -androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context,android.util.AttributeSet,int) -james.adaptiveicon.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeWithoutCheckedException(java.lang.Object,java.lang.Object[]) -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status PENDING -androidx.hilt.work.R$styleable: int FragmentContainerView_android_name -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setMax(float) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonPhaseAngle(java.lang.Integer) -androidx.hilt.lifecycle.R$id: int right_side -androidx.viewpager.widget.PagerTabStrip: void setTabIndicatorColor(int) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String street_number -wangdaye.com.geometricweather.R$drawable: int notif_temp_36 -cyanogenmod.app.CustomTileListenerService: void registerAsSystemService(android.content.Context,android.content.ComponentName,int) -androidx.fragment.R$attr: int fontProviderFetchStrategy -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_3_material -james.adaptiveicon.R$styleable: int Spinner_android_dropDownWidth -androidx.preference.R$drawable: int abc_btn_default_mtrl_shape -com.turingtechnologies.materialscrollbar.AlphabetIndicator: AlphabetIndicator(android.content.Context) -com.google.android.material.R$style: int TextAppearance_Design_Counter_Overflow -wangdaye.com.geometricweather.R$styleable: int MenuItem_actionProviderClass -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String weathercn -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge -com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay_v14_Material -com.google.android.material.R$string: int status_bar_notification_info_overflow -androidx.constraintlayout.widget.R$attr: int motionInterpolator -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light -androidx.preference.R$drawable: int abc_scrubber_track_mtrl_alpha -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.turingtechnologies.materialscrollbar.R$attr: int actionModeShareDrawable -android.didikee.donate.R$color: int abc_primary_text_disable_only_material_dark -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetEnd -wangdaye.com.geometricweather.R$string: int wind_5 -androidx.viewpager.R$dimen: int compat_button_inset_vertical_material -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_QUICK_QS_PULLDOWN -androidx.hilt.R$anim: R$anim() -james.adaptiveicon.R$id: int submit_area -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String dn -com.jaredrummler.android.colorpicker.R$styleable: int Preference_title -cyanogenmod.weather.WeatherLocation$Builder: WeatherLocation$Builder(java.lang.String,java.lang.String) -com.google.android.material.R$styleable: int OnSwipe_dragDirection -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_square_side -com.google.android.material.slider.BaseSlider: java.lang.CharSequence getAccessibilityClassName() -androidx.swiperefreshlayout.R$id: int title -com.google.android.material.R$attr: int submitBackground -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetEnd -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_android_windowAnimationStyle -android.support.v4.app.INotificationSideChannel$Default: void notify(java.lang.String,int,java.lang.String,android.app.Notification) -wangdaye.com.geometricweather.R$string: int widget_clock_day_details -androidx.appcompat.R$styleable: int AppCompatTheme_popupWindowStyle -wangdaye.com.geometricweather.R$string: int key_week_icon_mode -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintEnd_toEndOf -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeBackground -androidx.constraintlayout.widget.R$attr: int textAppearanceSearchResultTitle -okhttp3.internal.connection.RouteSelector: void connectFailed(okhttp3.Route,java.io.IOException) -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) -james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display2 -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: org.reactivestreams.Publisher mPublisher -android.didikee.donate.R$dimen: int abc_text_size_display_2_material -androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache$CallbackInfo getInfo(java.lang.Class) -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy valueOf(java.lang.String) -io.reactivex.internal.schedulers.ScheduledRunnable: void run() -com.google.android.material.R$color: int abc_background_cache_hint_selector_material_light -okio.AsyncTimeout: okio.Sink sink(okio.Sink) -cyanogenmod.hardware.CMHardwareManager: java.lang.String TAG -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position -androidx.fragment.R$drawable -james.adaptiveicon.R$dimen: int abc_dropdownitem_text_padding_right -james.adaptiveicon.R$attr: int titleTextAppearance -wangdaye.com.geometricweather.R$id: int container_alert_display_view_title -wangdaye.com.geometricweather.R$string: int path_password_eye_mask_visible -cyanogenmod.app.CustomTile$RemoteExpandedStyle: CustomTile$RemoteExpandedStyle() -okhttp3.internal.connection.ConnectionSpecSelector: ConnectionSpecSelector(java.util.List) -androidx.appcompat.R$dimen: int abc_edit_text_inset_bottom_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getDirection() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_26 -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: int unitArrayIndex -com.google.android.material.textview.MaterialTextView -androidx.viewpager2.R$styleable: int[] ViewPager2 -com.google.android.material.R$styleable: int AppCompatTheme_tooltipFrameBackground -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -android.didikee.donate.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -com.google.android.material.R$attr: int yearSelectedStyle -com.bumptech.glide.R$dimen: int compat_notification_large_icon_max_width -androidx.customview.R$styleable: R$styleable() -androidx.fragment.R$styleable: int GradientColor_android_endX -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionModeOverlay -cyanogenmod.providers.ThemesContract: android.net.Uri AUTHORITY_URI -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_MEDIUM_COLOR -wangdaye.com.geometricweather.R$styleable: int Constraint_android_scaleX -com.google.android.material.R$drawable -wangdaye.com.geometricweather.R$id: int row_index_key -com.jaredrummler.android.colorpicker.R$color: int material_grey_50 -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String getCityId() -wangdaye.com.geometricweather.R$attr: int subMenuArrow -com.google.android.material.progressindicator.ProgressIndicator: void setInverse(boolean) -android.support.v4.os.ResultReceiver$MyRunnable: ResultReceiver$MyRunnable(android.support.v4.os.ResultReceiver,int,android.os.Bundle) -com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_end -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.util.Locale locale -com.turingtechnologies.materialscrollbar.R$dimen: int notification_subtext_size -androidx.preference.R$dimen: int compat_control_corner_material -james.adaptiveicon.R$id: int customPanel -com.jaredrummler.android.colorpicker.R$layout: int abc_dialog_title_material -cyanogenmod.weather.RequestInfo: RequestInfo(android.os.Parcel,cyanogenmod.weather.RequestInfo$1) -com.google.android.material.R$attr: int windowFixedWidthMinor -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -com.jaredrummler.android.colorpicker.R$style: int Preference_DropDown_Material -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconEnabled -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType valueOf(java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String windLevel -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_weightSum -okhttp3.internal.cache.DiskLruCache$Entry: void setLengths(java.lang.String[]) -androidx.appcompat.resources.R$id: int dialog_button -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: BaiduIPLocationService_Factory(javax.inject.Provider,javax.inject.Provider) -okhttp3.internal.cache.DiskLruCache: boolean $assertionsDisabled -okhttp3.internal.ws.RealWebSocket$CancelRunnable: void run() -androidx.lifecycle.extensions.R$attr: int fontProviderQuery -com.google.android.material.R$attr: int flow_firstVerticalStyle -okhttp3.Response$Builder: okhttp3.Response$Builder removeHeader(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int Layout_android_orientation -androidx.constraintlayout.widget.R$attr: int fontStyle -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_positiveButtonText -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy APPEND_OR_REPLACE -com.google.android.material.R$attr: int behavior_skipCollapsed -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean,int) -androidx.legacy.coreutils.R$styleable: int ColorStateListItem_alpha -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense -okhttp3.HttpUrl: void percentDecode(okio.Buffer,java.lang.String,int,int,boolean) -com.google.android.material.R$styleable: int TabLayout_tabIndicatorFullWidth -james.adaptiveicon.R$attr: int contentInsetLeft -james.adaptiveicon.R$drawable: int abc_switch_track_mtrl_alpha -androidx.constraintlayout.widget.R$id: int submit_area -okhttp3.Request$Builder: Request$Builder() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitation -com.google.android.material.R$styleable: int GradientColor_android_centerX -com.google.android.material.circularreveal.CircularRevealLinearLayout: int getCircularRevealScrimColor() -wangdaye.com.geometricweather.R$styleable: int TouchScrollBar_msb_hideDelayInMilliseconds -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -cyanogenmod.weather.WeatherInfo: int hashCode() -com.xw.repo.bubbleseekbar.R$attr: int dropDownListViewStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setLogo(java.lang.String) -james.adaptiveicon.R$attr: int color -wangdaye.com.geometricweather.db.entities.AlertEntity: void setColor(int) -android.didikee.donate.R$attr: int titleTextStyle -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_divider -androidx.drawerlayout.R$id: int line1 -androidx.appcompat.widget.AppCompatButton: int getAutoSizeMinTextSize() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getDescription() -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_EditText -cyanogenmod.weather.WeatherInfo$DayForecast$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.fragment.R$attr: int fontProviderCerts -androidx.loader.R$id: int actions -androidx.appcompat.widget.AppCompatTextView: int getAutoSizeMaxTextSize() -androidx.preference.R$dimen: int abc_text_size_subtitle_material_toolbar -androidx.constraintlayout.widget.R$styleable: int Constraint_pathMotionArc -androidx.preference.R$styleable: int AppCompatTextView_autoSizeStepGranularity -wangdaye.com.geometricweather.R$styleable: int[] FitSystemBarNestedScrollView -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_textAppearance -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile build() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: int UnitType -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.Observer downstream -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents -okhttp3.internal.cache.FaultHidingSink: boolean hasErrors -cyanogenmod.profiles.RingModeSettings: void processOverride(android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String unit -cyanogenmod.externalviews.KeyguardExternalView$3: int val$x -androidx.activity.R$drawable: int notification_bg_low_normal -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlHighlight -wangdaye.com.geometricweather.R$styleable: int NavigationView_shapeAppearanceOverlay -android.didikee.donate.R$attr: int measureWithLargestChild -cyanogenmod.weather.RequestInfo: int mRequestType -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_default -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getUnitId() -okhttp3.ResponseBody$BomAwareReader: ResponseBody$BomAwareReader(okio.BufferedSource,java.nio.charset.Charset) -androidx.recyclerview.widget.RecyclerView: int getBaseline() -androidx.swiperefreshlayout.R$layout: int custom_dialog -com.bumptech.glide.integration.okhttp.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: CaiYunMainlyResult$AqiBeanXX() -androidx.appcompat.R$drawable: int abc_text_select_handle_right_mtrl_light -com.google.android.material.R$styleable: int[] MaterialCalendar -com.turingtechnologies.materialscrollbar.R$id: int action_image -okhttp3.Cache$CacheRequestImpl: okhttp3.Cache this$0 -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents -androidx.preference.R$attr: int dividerPadding -com.google.android.material.R$attr: int behavior_expandedOffset -okio.Okio$3: void close() -androidx.appcompat.resources.R$style: int Widget_Compat_NotificationActionContainer -io.reactivex.Observable: io.reactivex.Observable concatMapIterable(io.reactivex.functions.Function) -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_Tooltip -androidx.appcompat.widget.Toolbar: void setLogo(int) -retrofit2.OkHttpCall$1 -com.google.android.material.R$styleable: int Layout_layout_constraintCircleRadius -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircleAngle -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Title_Inverse -james.adaptiveicon.R$styleable: int View_theme -androidx.preference.R$id: int scrollView -androidx.constraintlayout.widget.R$attr: int customFloatValue -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder domain(java.lang.String) -cyanogenmod.weather.IRequestInfoListener$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.R$array: int notification_text_colors -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String province -io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_EMPTY -wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_android_color -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy -com.google.android.material.R$attr: int backgroundTint -com.bumptech.glide.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_padding_left -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionMode -retrofit2.Platform: java.util.List defaultCallAdapterFactories(java.util.concurrent.Executor) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath -androidx.constraintlayout.widget.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacing -com.google.android.material.R$styleable: int[] ActionBarLayout -androidx.constraintlayout.widget.R$attr: int maxWidth -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_default_mtrl_alpha -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List wuran -okhttp3.logging.HttpLoggingInterceptor: HttpLoggingInterceptor() -okhttp3.HttpUrl: char[] HEX_DIGITS -android.support.v4.os.ResultReceiver: boolean mLocal -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: java.lang.String WeatherCode -androidx.customview.R$dimen: int notification_content_margin_start -androidx.activity.R$id: int accessibility_custom_action_0 -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin -io.reactivex.exceptions.UndeliverableException: long serialVersionUID -androidx.constraintlayout.widget.R$color: int accent_material_dark -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.util.AtomicThrowable errors -androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonTint -com.turingtechnologies.materialscrollbar.R$id: int view_offset_helper -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -wangdaye.com.geometricweather.R$string: int phase_first -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_101 -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List consequences -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle -com.google.android.material.R$styleable: int MotionLayout_layoutDescription -androidx.appcompat.widget.AppCompatCheckBox: void setButtonDrawable(android.graphics.drawable.Drawable) -com.xw.repo.bubbleseekbar.R$id: int scrollView -androidx.appcompat.widget.SearchView$SearchAutoComplete -retrofit2.OkHttpCall$NoContentResponseBody: okhttp3.MediaType contentType -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX temperature -okhttp3.Cookie: java.util.List parseAll(okhttp3.HttpUrl,okhttp3.Headers) -io.reactivex.internal.observers.DeferredScalarDisposable: void complete(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_id -androidx.preference.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.common.ui.activities.AwakeUpdateActivity -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String timezone -okio.Buffer: void skip(long) -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog_Alert -cyanogenmod.app.Profile: boolean isDirty() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorButtonNormal -androidx.constraintlayout.widget.R$styleable: int Toolbar_logo -wangdaye.com.geometricweather.R$styleable: int[] FontFamilyFont -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dialog -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf -androidx.lifecycle.FullLifecycleObserver: void onPause(androidx.lifecycle.LifecycleOwner) -androidx.preference.R$attr: int switchPreferenceStyle -com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_Switch -com.google.android.material.R$id: int fill -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.xw.repo.bubbleseekbar.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.R$dimen: int trend_item_width -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_gravity -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setApparentTemperature(java.lang.Integer) -wangdaye.com.geometricweather.common.basic.GeoDialog -com.jaredrummler.android.colorpicker.R$attr: int layout_insetEdge -androidx.appcompat.R$attr: int dividerHorizontal -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_btn_unelevated_state_list_anim -androidx.preference.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_ttcIndex -com.google.android.material.R$dimen: int design_navigation_separator_vertical_padding -androidx.transition.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$id: int item_icon_provider_container -okhttp3.internal.connection.RealConnection: okhttp3.internal.http2.Http2Connection http2Connection -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicReference actual -io.reactivex.internal.subscriptions.BasicQueueSubscription: void clear() -wangdaye.com.geometricweather.R$attr: int tabMaxWidth -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onKeyguardDismissed -androidx.hilt.R$drawable: R$drawable() -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackActiveTintList() -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Tooltip -io.reactivex.internal.util.NotificationLite: boolean isDisposable(java.lang.Object) -okhttp3.HttpUrl: java.lang.String host() -cyanogenmod.util.ColorUtils: float interp(int,float) -androidx.preference.R$id: int search_voice_btn -androidx.cardview.R$attr: int contentPaddingTop -com.google.android.material.chip.Chip: void setCloseIconStartPadding(float) -androidx.drawerlayout.R$dimen: int notification_large_icon_height -com.google.android.material.card.MaterialCardView: int getStrokeColor() -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: retrofit2.Call call -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage ENCODE -com.xw.repo.bubbleseekbar.R$drawable: int tooltip_frame_light -okhttp3.logging.HttpLoggingInterceptor: boolean bodyHasUnknownEncoding(okhttp3.Headers) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum() -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: int requestFusion(int) -wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_material -okio.GzipSink: okio.Timeout timeout() -androidx.constraintlayout.widget.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.settings.dialogs.AdaptiveIconDialog: AdaptiveIconDialog() -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -com.google.android.material.internal.NavigationMenuItemView -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_verticalDivider -androidx.loader.R$id: int normal -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String weatherSource -cyanogenmod.app.ThemeVersion$ComponentVersion: int id -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onComplete() -androidx.preference.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -wangdaye.com.geometricweather.R$id: int widget_clock_day_card -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getNighttimeWeatherCode() -androidx.appcompat.R$id: int textSpacerNoButtons -wangdaye.com.geometricweather.R$string: int gitHub -cyanogenmod.weatherservice.ServiceRequestResult: int describeContents() -androidx.coordinatorlayout.R$id: int left -androidx.appcompat.R$styleable: int AlertDialog_buttonIconDimen -cyanogenmod.app.ICMStatusBarManager: void removeCustomTileFromListener(cyanogenmod.app.ICustomTileListener,java.lang.String,java.lang.String,int) -wangdaye.com.geometricweather.R$string: int page_indicator -okhttp3.HttpUrl$Builder: void resolvePath(java.lang.String,int,int) -com.google.android.material.R$id: int transition_transform -android.didikee.donate.R$style: int Widget_AppCompat_Button_Colored -okhttp3.internal.http2.Hpack$Reader: okhttp3.internal.http2.Header[] dynamicTable -wangdaye.com.geometricweather.R$attr: int alertDialogStyle -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String tag -org.greenrobot.greendao.DaoException: void safeInitCause(java.lang.Throwable) -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -cyanogenmod.profiles.ConnectionSettings$BooleanState: int STATE_ENABLED -james.adaptiveicon.R$attr: int voiceIcon -com.google.android.material.R$layout: int mtrl_calendar_day -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontWeight -androidx.appcompat.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -james.adaptiveicon.R$style: int Base_V26_Theme_AppCompat_Light -androidx.drawerlayout.R$styleable: int ColorStateListItem_alpha -android.didikee.donate.R$styleable: int ActionBar_homeAsUpIndicator -wangdaye.com.geometricweather.R$attr: int adjustable -wangdaye.com.geometricweather.R$styleable: int[] ExtendedFloatingActionButton -cyanogenmod.themes.ThemeChangeRequest: void writeToParcel(android.os.Parcel,int) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Subhead -james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.R$color: int abc_btn_colored_borderless_text_material -wangdaye.com.geometricweather.R$dimen: int mtrl_large_touch_target -okhttp3.internal.tls.OkHostnameVerifier -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_switchTextOff -androidx.preference.R$styleable: int AppCompatTheme_listDividerAlertDialog -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: cyanogenmod.app.suggest.IAppSuggestProvider asInterface(android.os.IBinder) -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Title -androidx.lifecycle.SavedStateHandle: java.lang.Object remove(java.lang.String) -okio.GzipSource: byte FEXTRA -wangdaye.com.geometricweather.R$drawable: int abc_ic_go_search_api_material -androidx.constraintlayout.widget.R$attr: int actionLayout -com.jaredrummler.android.colorpicker.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline6 -androidx.drawerlayout.R$dimen: int compat_control_corner_material -androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_tintMode -okhttp3.internal.cache2.FileOperator: java.nio.channels.FileChannel fileChannel -wangdaye.com.geometricweather.R$string: int settings_title_location_service -wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.AlertEntity) -okhttp3.FormBody: void writeTo(okio.BufferedSink) -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_start -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: androidx.lifecycle.LiveData mLiveData -com.google.android.material.chip.Chip: void setChipBackgroundColorResource(int) -androidx.constraintlayout.widget.R$styleable: int ActionMenuItemView_android_minWidth -com.google.android.material.R$attr: int actionOverflowMenuStyle -okhttp3.internal.platform.ConscryptPlatform: void configureSslSocketFactory(javax.net.ssl.SSLSocketFactory) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -okhttp3.MultipartBody: okio.ByteString boundary -androidx.transition.R$styleable: int ColorStateListItem_alpha -com.google.android.material.R$integer: int design_tab_indicator_anim_duration_ms -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModelProvider$Factory mFactory -james.adaptiveicon.R$dimen: int abc_dialog_title_divider_material -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias -androidx.preference.R$color: int material_grey_850 -com.xw.repo.bubbleseekbar.R$dimen: int compat_control_corner_material -com.jaredrummler.android.colorpicker.R$styleable: int Preference_layout -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowNoTitle -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,int) -com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Solid -com.jaredrummler.android.colorpicker.R$id: int checkbox -androidx.constraintlayout.widget.R$styleable: int Transform_android_translationX -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder allEnabledCipherSuites() -cyanogenmod.power.PerformanceManager: int PROFILE_BALANCED -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleEnabled -wangdaye.com.geometricweather.R$id: int star_1 -okhttp3.internal.platform.AndroidPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -android.support.v4.os.ResultReceiver: android.support.v4.os.IResultReceiver mReceiver -androidx.viewpager.widget.ViewPager: void addOnAdapterChangeListener(androidx.viewpager.widget.ViewPager$OnAdapterChangeListener) -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderAuthority -com.google.android.material.R$styleable: int AppCompatTheme_dividerHorizontal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String en_US -io.reactivex.exceptions.CompositeException: java.util.List exceptions -android.didikee.donate.R$attr: int subMenuArrow -okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: Http2Connection$IntervalPingRunnable(okhttp3.internal.http2.Http2Connection) -okhttp3.internal.connection.RealConnection: void connectSocket(int,int,okhttp3.Call,okhttp3.EventListener) -android.didikee.donate.R$dimen: int abc_text_size_medium_material -androidx.transition.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun sun -wangdaye.com.geometricweather.R$id: int ragweedTitle -com.google.android.material.slider.Slider: void setValue(float) -wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Dialog -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.Observer downstream -androidx.preference.R$id: int chronometer -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void request(long) -com.google.android.material.R$style: int Widget_AppCompat_Light_ListView_DropDown -wangdaye.com.geometricweather.location.services.LocationService: boolean hasPermissions(android.content.Context) -androidx.appcompat.resources.R$id: int tag_accessibility_heading -wangdaye.com.geometricweather.R$id: int transition_transform -wangdaye.com.geometricweather.R$dimen: int widget_title_text_size -com.google.android.material.navigation.NavigationView: void setItemIconSize(int) -androidx.constraintlayout.widget.R$id: int src_atop -wangdaye.com.geometricweather.R$string: int settings_notification_hide_icon_off -android.didikee.donate.R$style: int Base_Widget_AppCompat_Spinner -okhttp3.internal.http2.Http2Writer: void ping(boolean,int,int) -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Chip -androidx.coordinatorlayout.R$dimen: int compat_button_inset_vertical_material -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -androidx.preference.R$drawable: int abc_text_cursor_material -wangdaye.com.geometricweather.R$attr: int contentPaddingTop -com.jaredrummler.android.colorpicker.R$style: int Preference_CheckBoxPreference -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$layout: int abc_dialog_title_material -wangdaye.com.geometricweather.R$anim: int fragment_main_pop_enter -androidx.viewpager.widget.PagerTitleStrip: PagerTitleStrip(android.content.Context) -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerColor -com.xw.repo.bubbleseekbar.R$style: int Platform_AppCompat -wangdaye.com.geometricweather.db.entities.LocationEntity: void setLongitude(float) -androidx.preference.R$styleable: int AppCompatTheme_actionModeCopyDrawable -android.didikee.donate.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -androidx.appcompat.R$attr: int titleMarginEnd -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.R$anim: int abc_tooltip_enter -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: boolean isValid() -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_maxElementsWrap -wangdaye.com.geometricweather.R$attr: int progress -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Selected -james.adaptiveicon.R$attr: int progressBarStyle -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: java.util.concurrent.TimeUnit unit -androidx.hilt.R$id: int accessibility_custom_action_8 -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_percent -okhttp3.internal.connection.RouteDatabase -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent SOUND -wangdaye.com.geometricweather.R$attr: int state_lifted -wangdaye.com.geometricweather.R$attr: int maxHeight -androidx.preference.R$color: int highlighted_text_material_light -okhttp3.internal.ws.RealWebSocket$Streams: RealWebSocket$Streams(boolean,okio.BufferedSource,okio.BufferedSink) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: int CategoryValue -com.bumptech.glide.integration.okhttp.R$styleable: R$styleable() -cyanogenmod.hardware.CMHardwareManager: int getDisplayGammaCalibrationMax() -androidx.lifecycle.process.R -com.google.android.material.R$id: int search_bar -wangdaye.com.geometricweather.R$string: int ellipsis -okhttp3.internal.cache.CacheInterceptor$1 -com.turingtechnologies.materialscrollbar.R$integer: int show_password_duration -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: java.util.concurrent.atomic.AtomicInteger wip -androidx.constraintlayout.widget.R$attr: int autoCompleteTextViewStyle -okhttp3.EventListener: void connectionAcquired(okhttp3.Call,okhttp3.Connection) -androidx.fragment.R$styleable: R$styleable() -androidx.appcompat.R$integer: R$integer() -androidx.drawerlayout.R$styleable: int[] FontFamily -androidx.vectordrawable.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.R$styleable: int MaterialCheckBox_buttonTint -com.google.android.material.R$attr: int shapeAppearance -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircle -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconSize(int) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Button -james.adaptiveicon.R$attr: int fontFamily -androidx.loader.R$style: int TextAppearance_Compat_Notification_Time -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: ExternalViewProviderService$Provider$ProviderImpl$7(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,int,int,int,int,boolean,android.graphics.Rect) -com.google.android.material.R$drawable: int abc_list_pressed_holo_light -androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -okhttp3.ConnectionPool: okhttp3.internal.connection.RouteDatabase routeDatabase -androidx.fragment.R$color: int ripple_material_light -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int OTHER_STATE_CONSUMED_OR_EMPTY -androidx.appcompat.R$drawable: int btn_checkbox_unchecked_mtrl -com.jaredrummler.android.colorpicker.R$drawable: int abc_ab_share_pack_mtrl_alpha -com.google.android.material.R$dimen: int abc_action_bar_default_padding_start_material -okhttp3.internal.Util: java.util.List immutableList(java.util.List) -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getStatusBarThemePackageName() -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String NAME_EQ_PLACEHOLDER -wangdaye.com.geometricweather.R$id: int widget_day_week_center -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextColor(android.content.res.ColorStateList) -james.adaptiveicon.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -com.google.android.material.R$dimen: int mtrl_tooltip_minHeight -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_LOW_POWER -james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Dialog -retrofit2.adapter.rxjava2.BodyObservable -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_unregisterListener -androidx.appcompat.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX getBrandInfo() -androidx.appcompat.R$attr: int actionOverflowButtonStyle -cyanogenmod.weather.WeatherLocation: java.lang.String access$202(cyanogenmod.weather.WeatherLocation,java.lang.String) -androidx.preference.R$styleable: int AppCompatTheme_searchViewStyle -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean cancelled -wangdaye.com.geometricweather.R$id: int search_mag_icon -com.google.android.material.R$id: int decelerateAndComplete -cyanogenmod.weather.WeatherInfo$DayForecast: void writeToParcel(android.os.Parcel,int) -android.didikee.donate.R$anim: int abc_popup_exit -androidx.preference.R$styleable: int DrawerArrowToggle_thickness -android.didikee.donate.R$attr: int panelMenuListWidth -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1(retrofit2.Call) -androidx.viewpager.widget.ViewPager$SavedState -com.google.android.material.tabs.TabLayout: void setTabRippleColor(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$style: int Base_V23_Theme_AppCompat_Light -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_GLOBAL -androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerX -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Subtitle2 -wangdaye.com.geometricweather.R$drawable: int weather_haze_2 -androidx.fragment.R$styleable -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetTop -com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context) -com.google.android.material.R$id: int customPanel -io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier[] values() -androidx.preference.R$attr: int collapseContentDescription -org.greenrobot.greendao.AbstractDao: java.util.List queryRaw(java.lang.String,java.lang.String[]) -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.lang.Object NEXT_WINDOW -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathStart(float) -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_normal -okio.Base64: java.lang.String encode(byte[],byte[]) -com.google.android.material.R$integer: int hide_password_duration -androidx.appcompat.widget.SwitchCompat: void setTrackResource(int) -androidx.constraintlayout.widget.R$styleable: int[] AppCompatSeekBar -okhttp3.internal.http2.Header: Header(okio.ByteString,okio.ByteString) -okhttp3.logging.LoggingEventListener: void connectFailed(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol,java.io.IOException) -james.adaptiveicon.R$bool -com.xw.repo.bubbleseekbar.R$dimen: int abc_control_inset_material -com.xw.repo.bubbleseekbar.R$attr: int actionOverflowMenuStyle -android.didikee.donate.R$styleable: int MenuItem_android_numericShortcut -okio.AsyncTimeout: void timedOut() -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationZ -androidx.appcompat.R$dimen: int abc_control_inset_material -com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextColor(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endColor -okhttp3.internal.io.FileSystem: long size(java.io.File) -com.google.android.material.R$style: int TextAppearance_AppCompat_Display2 -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_13 -android.didikee.donate.R$styleable: int[] RecycleListView -com.xw.repo.bubbleseekbar.R$color: int abc_btn_colored_text_material -wangdaye.com.geometricweather.R$layout: int design_navigation_item_separator -com.google.android.material.chip.Chip: void setChipStrokeColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -com.google.android.material.R$id: int parent -androidx.coordinatorlayout.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_strokeWidth -androidx.constraintlayout.widget.R$string: int abc_menu_ctrl_shortcut_label -retrofit2.Utils: java.lang.RuntimeException methodError(java.lang.reflect.Method,java.lang.String,java.lang.Object[]) -james.adaptiveicon.R$styleable: int ActionBar_background -androidx.constraintlayout.utils.widget.ImageFilterButton: float getRound() -wangdaye.com.geometricweather.R$string: int feedback_enable_location_information -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder hostOnlyDomain(java.lang.String) -androidx.constraintlayout.widget.ConstraintLayout: int getMinHeight() -androidx.constraintlayout.widget.R$color: int abc_secondary_text_material_dark -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_liftOnScroll -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property CityId -android.didikee.donate.R$color: int secondary_text_default_material_dark -androidx.lifecycle.LiveData$1: androidx.lifecycle.LiveData this$0 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX getNames() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onMenuOpened(int,android.view.Menu) -wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_HIGH -okhttp3.Cookie -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: void setBrands(java.util.List) -androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandle getHandle() -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSubtitle1 -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_item_horizontal_padding -com.google.android.material.R$color: int material_on_surface_emphasis_medium -android.didikee.donate.R$attr: int imageButtonStyle -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List xiche -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_22 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String getValue() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator -com.google.android.material.R$attr: int titleEnabled -androidx.lifecycle.ProcessLifecycleOwner: void dispatchPauseIfNeeded() -wangdaye.com.geometricweather.R$string: int feedback_resident_location_description -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.String TABLENAME -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: $Gson$Types$GenericArrayTypeImpl(java.lang.reflect.Type) -androidx.transition.R$id: int info -androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -androidx.constraintlayout.widget.R$id: int group_divider -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontWeight -androidx.hilt.R$id: int accessibility_custom_action_24 -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -androidx.constraintlayout.widget.R$dimen: int abc_dialog_padding_top_material -retrofit2.converter.gson.GsonResponseBodyConverter: GsonResponseBodyConverter(com.google.gson.Gson,com.google.gson.TypeAdapter) -androidx.appcompat.R$dimen: int notification_subtext_size -androidx.multidex.MultiDexExtractor$ExtractedDex -cyanogenmod.providers.CMSettings$System: boolean isLegacySetting(java.lang.String) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getSupportedFeatures() -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: ObservableWindowBoundarySupplier$WindowBoundaryMainObserver(io.reactivex.Observer,int,java.util.concurrent.Callable) -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity -com.google.android.material.R$attr: int contentInsetEndWithActions -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_height -androidx.constraintlayout.widget.R$attr: int progressBarStyle -wangdaye.com.geometricweather.R$id: int item_weather_daily_air_title -okhttp3.Cache: long maxSize() -androidx.constraintlayout.motion.widget.MotionLayout: void setScene(androidx.constraintlayout.motion.widget.MotionScene) -androidx.preference.R$drawable: int abc_ic_star_black_36dp -androidx.coordinatorlayout.R$dimen: int notification_large_icon_width -com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_E -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf -android.didikee.donate.R$dimen: int abc_select_dialog_padding_start_material -com.google.android.material.R$style: int Widget_Design_TextInputEditText -okhttp3.MultipartBody$Builder -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth -cyanogenmod.app.ProfileGroup: java.util.UUID mUuid -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: Precipitation(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: boolean equals(java.lang.Object) -okhttp3.ResponseBody: java.io.Reader charStream() -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onComplete() -com.google.android.material.slider.Slider: void setThumbStrokeWidth(float) -android.didikee.donate.R$styleable: int Toolbar_titleTextAppearance -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionDropDownStyle -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_middle_mtrl_dark -com.google.android.material.R$style: int TextAppearance_AppCompat_Display3 -com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -com.google.android.material.R$dimen: int mtrl_slider_label_square_side -androidx.cardview.widget.CardView -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeightLarge -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean -com.google.android.material.R$drawable: int abc_list_selector_holo_dark -androidx.customview.R$styleable: int GradientColor_android_centerX -james.adaptiveicon.R$attr: int iconifiedByDefault -io.reactivex.Observable: io.reactivex.Observable concat(java.lang.Iterable) -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean offer(java.lang.Object) -com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.drawable.Drawable getStatusBarScrim() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String country -wangdaye.com.geometricweather.R$string: int settings_title_distance_unit -com.google.android.material.R$styleable: int MenuItem_actionViewClass -androidx.hilt.lifecycle.R$id: int info -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -retrofit2.Response: boolean isSuccessful() -com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_alpha -cyanogenmod.app.CustomTile$ExpandedStyle: int getStyle() -wangdaye.com.geometricweather.R$array: int week_widget_styles -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingRight -android.support.v4.app.RemoteActionCompatParcelizer -androidx.vectordrawable.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getDescription() -androidx.appcompat.R$attr: int lineHeight -james.adaptiveicon.R$color: int background_floating_material_light -androidx.recyclerview.widget.LinearLayoutManager -com.xw.repo.bubbleseekbar.R$drawable: R$drawable() -androidx.lifecycle.extensions.R$integer: R$integer() -androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchAnchorSide -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitation() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void fail(java.lang.Throwable,io.reactivex.Observer,io.reactivex.internal.queue.SpscLinkedArrayQueue) -io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable valueOf(java.lang.String) -androidx.preference.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents -com.google.android.material.R$styleable: int FontFamily_fontProviderCerts -androidx.hilt.R$dimen: R$dimen() -okhttp3.ConnectionPool: long cleanup(long) -com.turingtechnologies.materialscrollbar.R$attr: int colorBackgroundFloating -com.github.rahatarmanahmed.cpv.CircularProgressView$2: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -androidx.recyclerview.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice advice -androidx.preference.R$styleable: int PopupWindowBackgroundState_state_above_anchor -wangdaye.com.geometricweather.R$id: int CTRL -com.jaredrummler.android.colorpicker.R$color: int material_deep_teal_500 -okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withConnectTimeout(int,java.util.concurrent.TimeUnit) -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.R$id: int transitionToEnd -androidx.customview.R$attr: int fontProviderPackage -okhttp3.CacheControl: int maxAgeSeconds() -cyanogenmod.weather.WeatherLocation: java.lang.String mCity -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: AccuMinuteResult$SummaryBean() -com.google.android.material.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_background_transition_holo_light -wangdaye.com.geometricweather.R$id: int alerts -james.adaptiveicon.R$attr: int windowNoTitle -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String admin2 -retrofit2.Retrofit: okhttp3.HttpUrl baseUrl() -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSearchResultSubtitle -com.google.android.material.R$layout: int test_action_chip -com.google.android.material.R$attr: int overlay -androidx.lifecycle.ServiceLifecycleDispatcher: void postDispatchRunnable(androidx.lifecycle.Lifecycle$Event) -com.google.android.material.R$drawable: int btn_radio_off_mtrl -com.turingtechnologies.materialscrollbar.R$attr: int tabUnboundedRipple -androidx.constraintlayout.widget.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.turingtechnologies.materialscrollbar.R$id: int visible -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTintMode -androidx.preference.R$style: int PreferenceThemeOverlay_v14_Material -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconTint -wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_default_alpha -james.adaptiveicon.R$attr: int buttonStyle -wangdaye.com.geometricweather.R$dimen: int design_snackbar_min_width -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_activityChooserViewStyle -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: boolean isDisposed() -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitle -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginTop -com.google.android.material.R$styleable: int ChipGroup_chipSpacingHorizontal -okhttp3.HttpUrl: java.lang.String PATH_SEGMENT_ENCODE_SET_URI -okhttp3.internal.http2.Http2Connection$PingRunnable: boolean reply -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int WeatherIcon -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: long serialVersionUID -cyanogenmod.providers.CMSettings$System: java.lang.String SYS_PROP_CM_SETTING_VERSION -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView -retrofit2.adapter.rxjava2.CallExecuteObservable: void subscribeActual(io.reactivex.Observer) -wangdaye.com.geometricweather.R$drawable: int notif_temp_30 -android.didikee.donate.R$dimen: int abc_text_size_large_material -okhttp3.internal.io.FileSystem: okio.Sink appendingSink(java.io.File) -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_COLOR_ENHANCE -com.google.android.material.appbar.AppBarLayout: void addOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$BaseOnOffsetChangedListener) -androidx.constraintlayout.widget.R$styleable: int[] PropertySet -androidx.loader.R$dimen: int notification_large_icon_height -androidx.appcompat.R$style: int Widget_AppCompat_Light_ListPopupWindow -com.turingtechnologies.materialscrollbar.R$layout: int design_bottom_navigation_item -com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_padding_horizontal_material -androidx.work.R$id: int right_icon -okio.SegmentedByteString: void write(okio.Buffer) -okhttp3.Connection: okhttp3.Handshake handshake() -com.jaredrummler.android.colorpicker.R$attr: int displayOptions -okhttp3.internal.cache.DiskLruCache: boolean remove(java.lang.String) -android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedHeightMajor -wangdaye.com.geometricweather.R$string: int feedback_hide_subtitle -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void updateVisibility() -cyanogenmod.app.ThemeVersion$ComponentVersion: java.lang.String name -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object readKey(android.database.Cursor,int) -androidx.preference.R$attr: int actionModeSplitBackground -androidx.preference.R$style: int PreferenceFragment -androidx.preference.R$color: int abc_background_cache_hint_selector_material_light -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber -james.adaptiveicon.R$dimen: int abc_action_bar_stacked_tab_max_width -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_128_CCM_SHA256 -wangdaye.com.geometricweather.R$id: int widget_week -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_titleEnabled -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String _ID -com.bumptech.glide.request.RequestCoordinator$RequestState: boolean isComplete() -okhttp3.internal.http2.Http2Codec: java.util.List HTTP_2_SKIPPED_RESPONSE_HEADERS -android.didikee.donate.R$attr: int multiChoiceItemLayout -wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity -androidx.appcompat.R$id: int accessibility_custom_action_30 -com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2 -wangdaye.com.geometricweather.R$animator: int search_container_in -androidx.appcompat.widget.LinearLayoutCompat: void setWeightSum(float) -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_setNotificationGroupBtn -androidx.appcompat.R$styleable: int AppCompatTheme_colorControlHighlight -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver -james.adaptiveicon.R$color: int dim_foreground_disabled_material_light -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_transformPivotX -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listDividerAlertDialog -com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_inflatedId -androidx.appcompat.R$dimen: int notification_right_side_padding_top -james.adaptiveicon.R$styleable: int AppCompatTheme_popupMenuStyle -com.jaredrummler.android.colorpicker.R$string: int cpv_presets -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.lang.String Link -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge -com.google.android.material.R$color: int design_snackbar_background_color -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -wangdaye.com.geometricweather.db.entities.LocationEntity: void setFormattedId(java.lang.String) -james.adaptiveicon.R$attr: int drawerArrowStyle -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Menu -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -okhttp3.internal.http1.Http1Codec: okio.Sink newFixedLengthSink(long) -io.reactivex.Observable: io.reactivex.Observable buffer(int,java.util.concurrent.Callable) -androidx.hilt.lifecycle.R$style: int Widget_Compat_NotificationActionContainer -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription(org.reactivestreams.Subscriber,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) -wangdaye.com.geometricweather.R$attr: int colorOnSecondary -com.google.android.material.button.MaterialButton: int getInsetBottom() -com.turingtechnologies.materialscrollbar.R$attr: int thumbTextPadding -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) -retrofit2.adapter.rxjava2.Result: retrofit2.Response response -cyanogenmod.app.LiveLockScreenInfo$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.R$bool: R$bool() -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation -com.google.android.material.R$id: int position -androidx.preference.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -androidx.lifecycle.extensions.R$styleable: int GradientColorItem_android_offset -james.adaptiveicon.R$attr: int alertDialogStyle -com.jaredrummler.android.colorpicker.R$layout: int preference_dropdown_material -androidx.recyclerview.widget.RecyclerView: void setAccessibilityDelegateCompat(androidx.recyclerview.widget.RecyclerViewAccessibilityDelegate) -com.github.rahatarmanahmed.cpv.CircularProgressView$5: void onAnimationCancel(android.animation.Animator) -wangdaye.com.geometricweather.R$layout: int notification_base_big -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onNext(java.lang.Object) -androidx.drawerlayout.R$id: int tag_unhandled_key_event_manager -com.google.android.material.navigation.NavigationView -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_max -okio.Pipe: okio.Sink sink() -androidx.legacy.coreutils.R$id: int action_container -com.jaredrummler.android.colorpicker.R$layout: int cpv_dialog_color_picker -androidx.loader.R$layout: int notification_template_part_chronometer -okhttp3.internal.http2.Http2Reader$ContinuationSource: int left -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getDefaultLiveLockScreen -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.disposables.Disposable upstream -com.google.android.material.R$id: int select_dialog_listview -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -okhttp3.internal.cache.InternalCache: void trackConditionalCacheHit() -cyanogenmod.providers.CMSettings$DelimitedListValidator: boolean mAllowEmptyList -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX() -james.adaptiveicon.R$styleable: int PopupWindowBackgroundState_state_above_anchor -wangdaye.com.geometricweather.R$color: int secondary_text_default_material_light -cyanogenmod.profiles.BrightnessSettings: void readFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: AccuCurrentResult$Visibility() -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: boolean isDisposed() -androidx.hilt.R$attr: int fontStyle -androidx.activity.R$id: int notification_main_column_container -com.google.android.material.R$dimen: int tooltip_horizontal_padding -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItem -androidx.constraintlayout.widget.R$attr: int fontProviderCerts -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void drainAndDispose() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: int UnitType -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_selectableItemBackground -cyanogenmod.weather.CMWeatherManager: java.util.Map access$200(cyanogenmod.weather.CMWeatherManager) -com.turingtechnologies.materialscrollbar.R$styleable: int View_paddingEnd -cyanogenmod.platform.Manifest$permission: java.lang.String READ_ALARMS -okhttp3.TlsVersion -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: MpscLinkedQueue$LinkedQueueNode(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance -com.github.rahatarmanahmed.cpv.CircularProgressView$3: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -androidx.appcompat.R$id: int icon_group -androidx.appcompat.R$drawable: int abc_ab_share_pack_mtrl_alpha -james.adaptiveicon.R$style: int Widget_AppCompat_SeekBar -cyanogenmod.weather.CMWeatherManager$RequestStatus: CMWeatherManager$RequestStatus() -androidx.preference.R$styleable: int AppCompatTheme_colorControlNormal -wangdaye.com.geometricweather.db.entities.AlertEntity: void setDate(java.util.Date) -wangdaye.com.geometricweather.R$attr: int yearStyle -wangdaye.com.geometricweather.R$id: int item_details_title -androidx.appcompat.widget.AppCompatTextView: android.view.textclassifier.TextClassifier getTextClassifier() -cyanogenmod.app.CMTelephonyManager: void setSubState(int,boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial Imperial -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -james.adaptiveicon.R$attr: int dialogTheme -cyanogenmod.providers.CMSettings$Secure$1: boolean validate(java.lang.String) -androidx.appcompat.R$attr: int subtitleTextColor -androidx.appcompat.R$color: int abc_background_cache_hint_selector_material_dark -james.adaptiveicon.R$attr: int maxButtonHeight -androidx.constraintlayout.widget.R$color: int bright_foreground_material_light -cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_LOCATION_ADVANCED -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSo2Desc() -wangdaye.com.geometricweather.R$attr: int colorOnPrimary -wangdaye.com.geometricweather.R$string: int life_details -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String getValue() -cyanogenmod.themes.ThemeManager$1 -wangdaye.com.geometricweather.common.basic.models.weather.Daily: boolean isToday(java.util.TimeZone) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.CompletableObserver downstream -com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusTopStart -okio.RealBufferedSource: int readInt() -com.turingtechnologies.materialscrollbar.R$dimen: int hint_pressed_alpha_material_light -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_android_windowIsFloating -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_fontVariationSettings -wangdaye.com.geometricweather.R$drawable: int notif_temp_104 -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatImageView -okio.InflaterSource: boolean refill() -androidx.preference.R$style: int Base_V7_Theme_AppCompat -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColorItem_android_offset -androidx.vectordrawable.animated.R$string -androidx.preference.R$attr: int allowDividerAfterLastItem -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_maxProgress -wangdaye.com.geometricweather.R$string: int key_widget_config -okhttp3.internal.ws.WebSocketWriter: void writePing(okio.ByteString) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_min -wangdaye.com.geometricweather.R$color: int abc_primary_text_disable_only_material_dark -okhttp3.internal.Util$2: boolean val$daemon -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getUnitId() -androidx.constraintlayout.widget.R$styleable: int[] ListPopupWindow -androidx.preference.R$styleable: int AppCompatTheme_popupWindowStyle -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableDelegateState -androidx.fragment.R$id: int right_side -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean -okhttp3.CertificatePinner$Pin: boolean matches(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_shadow_height -androidx.preference.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card -androidx.appcompat.R$id: int forever -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarPopupTheme -com.google.android.material.R$styleable: int MaterialButton_android_insetTop -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemDrawable(int) -androidx.vectordrawable.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.R$layout: int item_about_translator -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String description -wangdaye.com.geometricweather.R$id: int cpv_preference_preview_color_panel -com.google.android.material.textfield.TextInputLayout: void setPlaceholderText(java.lang.CharSequence) -androidx.lifecycle.FullLifecycleObserver: void onCreate(androidx.lifecycle.LifecycleOwner) -com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context) -cyanogenmod.themes.ThemeManager$ThemeChangeListener: void onProgress(int) -com.google.gson.stream.JsonScope: int NONEMPTY_DOCUMENT -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void dispose() -androidx.appcompat.resources.R$drawable: int notification_template_icon_bg -cyanogenmod.app.Profile$LockMode: int DISABLE -androidx.preference.R$attr: R$attr() -android.didikee.donate.R$dimen: int abc_dialog_min_width_major -wangdaye.com.geometricweather.R$id: int wrap_content -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_borderlessButtonStyle -io.reactivex.disposables.ReferenceDisposable: boolean isDisposed() -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostCreated(android.app.Activity,android.os.Bundle) -androidx.preference.R$style: int Base_V28_Theme_AppCompat_Light -com.jaredrummler.android.colorpicker.R$id: int notification_main_column -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlNormal -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer degreeDayTemperature -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicReference upstream -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_DIRECTION -com.google.android.material.R$style: int Base_Theme_AppCompat -james.adaptiveicon.R$attr: int theme -wangdaye.com.geometricweather.R$attr: int multiChoiceItemLayout -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontStyle -androidx.lifecycle.LiveData$ObserverWrapper: boolean mActive -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onError(java.lang.Throwable) -com.google.android.material.R$id: int material_timepicker_edit_text -wangdaye.com.geometricweather.R$styleable: int Transform_android_elevation -androidx.legacy.coreutils.R$dimen: int notification_top_pad -com.turingtechnologies.materialscrollbar.R$id: int submenuarrow -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalAlign -wangdaye.com.geometricweather.R$attr: int motion_postLayoutCollision -cyanogenmod.app.Profile$ProfileTrigger -com.turingtechnologies.materialscrollbar.R$id: int search_button -io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver INSTANCE -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginEnd -cyanogenmod.app.CustomTile$ExpandedStyle: void writeToParcel(android.os.Parcel,int) -cyanogenmod.hardware.CMHardwareManager: int getSupportedFeatures() -wangdaye.com.geometricweather.R$string: int wind_9 -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdtd -androidx.appcompat.view.menu.MenuPopupHelper: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -james.adaptiveicon.R$styleable: int AppCompatTheme_toolbarStyle -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_color -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TabLayout -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DialogWhenLarge -androidx.lifecycle.LifecycleRegistry$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$State -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void drain() -androidx.loader.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$attr: int fragment -com.google.android.material.R$color: int mtrl_tabs_icon_color_selector -wangdaye.com.geometricweather.R$attr: int behavior_hideable -okio.Okio$2: long read(okio.Buffer,long) -com.google.android.material.R$styleable: int[] MaterialCardView -wangdaye.com.geometricweather.R$layout: int abc_dialog_title_material -androidx.viewpager.widget.ViewPager: int getOffscreenPageLimit() -com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.R$string: int settings_notification_hide_in_lockScreen_on -com.google.android.material.internal.NavigationMenuItemView: void setHorizontalPadding(int) -james.adaptiveicon.R$id: int src_in -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: int Version -wangdaye.com.geometricweather.R$styleable: int[] MaterialButtonToggleGroup -cyanogenmod.themes.IThemeService$Stub$Proxy: android.os.IBinder asBinder() -com.google.android.material.R$styleable: int MotionLayout_currentState -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_61 -androidx.legacy.coreutils.R$id: int action_text -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: long serialVersionUID -james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionModeOverlay -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -androidx.constraintlayout.widget.R$styleable: int Motion_motionPathRotate -androidx.hilt.R$color -com.google.android.material.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator -com.google.android.material.R$id: int floating -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayColorCalibration -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWeatherPhase -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarButtonStyle -james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -okhttp3.ConnectionSpec$Builder: java.lang.String[] tlsVersions -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition ABOVE_LINE -com.xw.repo.bubbleseekbar.R$id: int notification_background -androidx.preference.R$anim: int abc_slide_in_top -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: int getPosition() -wangdaye.com.geometricweather.R$id: int spread_inside -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeProcessingListener mThemeProcessingListener -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: java.lang.String Unit -android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -com.google.android.material.R$styleable: int TabLayout_tabTextAppearance -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_titleCondensed -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon -cyanogenmod.app.Profile: java.util.ArrayList getTriggersFromType(int) -androidx.customview.R$drawable: int notification_bg_low_normal -androidx.appcompat.R$attr: int arrowShaftLength -androidx.legacy.coreutils.R$styleable: int GradientColor_android_startX -androidx.preference.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit FTPS -androidx.appcompat.widget.SwitchCompat: void setThumbDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$attr: int selectionRequired -androidx.appcompat.R$attr: int colorButtonNormal -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getScaleX() -retrofit2.HttpServiceMethod$SuspendForResponse: HttpServiceMethod$SuspendForResponse(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: int UnitType -androidx.constraintlayout.widget.R$attr: int collapseContentDescription -wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -com.google.android.material.R$dimen: int abc_dialog_padding_material -retrofit2.BuiltInConverters$UnitResponseBodyConverter: retrofit2.BuiltInConverters$UnitResponseBodyConverter INSTANCE -io.reactivex.internal.observers.BlockingObserver: long serialVersionUID -androidx.preference.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -okio.Buffer$1: void flush() -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_begin -cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String getName() -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context,android.util.AttributeSet) -retrofit2.RequestBuilder: okhttp3.MultipartBody$Builder multipartBuilder -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: io.reactivex.CompletableSource other -cyanogenmod.app.CustomTile$ExpandedItem: int itemDrawableResourceId -wangdaye.com.geometricweather.R$id: int TOP_END -wangdaye.com.geometricweather.common.ui.activities.AwakeUpdateActivity: AwakeUpdateActivity() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_LED_OFF_VALIDATOR -wangdaye.com.geometricweather.R$animator: int touch_raise -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_content_inset_material -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_seekBarStyle -wangdaye.com.geometricweather.R$string: int sp_widget_day_week_setting -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_STATUS_BAR -wangdaye.com.geometricweather.common.basic.models.weather.Base: Base(java.lang.String,long,java.util.Date,long,java.util.Date,long) -androidx.recyclerview.widget.RecyclerView: void suppressLayout(boolean) -wangdaye.com.geometricweather.R$attr: int layout_scrollInterpolator -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintDimensionRatio -wangdaye.com.geometricweather.R$color: int mtrl_textinput_hovered_box_stroke_color -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA -com.github.rahatarmanahmed.cpv.CircularProgressView$8: CircularProgressView$8(com.github.rahatarmanahmed.cpv.CircularProgressView,float,float) -cyanogenmod.providers.CMSettings$System: CMSettings$System() -com.google.android.material.chip.Chip: void setTextStartPadding(float) -cyanogenmod.providers.CMSettings$Global: android.net.Uri getUriFor(java.lang.String) -wangdaye.com.geometricweather.R$id: int alertTitle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: AccuCurrentResult$Ceiling$Imperial() -androidx.legacy.coreutils.R$id: int icon -com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Class,java.lang.Class) -wangdaye.com.geometricweather.db.entities.MinutelyEntity: MinutelyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer) -androidx.appcompat.R$attr: int fontProviderFetchStrategy -android.didikee.donate.R$styleable: int AppCompatTheme_colorBackgroundFloating -androidx.preference.R$styleable: int AppCompatTheme_controlBackground -okhttp3.internal.cache.CacheStrategy: okhttp3.Request networkRequest -androidx.appcompat.R$styleable: int[] AppCompatTheme -android.didikee.donate.R$attr: int buttonTint -androidx.fragment.R$anim: int fragment_open_enter -okhttp3.internal.http2.Http2Codec: okhttp3.Response$Builder readHttp2HeadersList(okhttp3.Headers,okhttp3.Protocol) -com.turingtechnologies.materialscrollbar.R$attr: int contentDescription -androidx.hilt.work.R$bool: int enable_system_alarm_service_default -okhttp3.Request: boolean isHttps() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.lang.String pubTime -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context) -com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_base -okio.Buffer: int select(okio.Options) -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_Toolbar -okhttp3.internal.http2.Header: java.lang.String TARGET_PATH_UTF8 -com.google.android.material.internal.NavigationMenuItemView: void setIconTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$id: int currentLocationButton -com.google.android.material.R$attr: int expandedTitleMarginStart -retrofit2.ParameterHandler$QueryName -androidx.work.R$id: int accessibility_custom_action_26 -androidx.fragment.R$id: int icon_group -io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer,io.reactivex.functions.Consumer) -android.didikee.donate.R$attr: int switchStyle -androidx.preference.R$attr: int popupMenuStyle -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onError(java.lang.Throwable) -okhttp3.OkHttpClient$Builder: javax.net.SocketFactory socketFactory -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onComplete() -okio.RealBufferedSink: int write(java.nio.ByteBuffer) -wangdaye.com.geometricweather.R$attr: int passwordToggleTint -androidx.preference.R$attr: int measureWithLargestChild -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.lang.Throwable error -com.xw.repo.bubbleseekbar.R$color: int secondary_text_disabled_material_dark -cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder(cyanogenmod.weather.WeatherInfo) -wangdaye.com.geometricweather.R$drawable: int material_cursor_drawable -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onError(java.lang.Throwable) -androidx.preference.R$attr: int fontProviderFetchStrategy -com.google.android.material.R$attr: int passwordToggleDrawable -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_max_progress -com.turingtechnologies.materialscrollbar.R$attr: int helperTextTextAppearance -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTodaysHigh(double) -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetLeft -androidx.preference.R$color -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicator(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_92 -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginRight -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: void run() -androidx.preference.R$style: int TextAppearance_AppCompat_Display3 -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_visible -wangdaye.com.geometricweather.R$layout: int material_timepicker_textinput_display -okhttp3.internal.http2.Settings -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -com.google.android.material.R$id: int material_timepicker_view -androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontStyle -okhttp3.internal.http.RealInterceptorChain: int writeTimeoutMillis() -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -androidx.constraintlayout.widget.R$styleable: int ActionBar_homeLayout -wangdaye.com.geometricweather.R$attr: int materialCalendarMonth -androidx.preference.R$drawable: int abc_ic_star_black_48dp -androidx.swiperefreshlayout.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean getPrecipitation() -wangdaye.com.geometricweather.R$id: int autoCompleteToStart -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeTextType -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float snow -wangdaye.com.geometricweather.R$drawable: int notif_temp_85 -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetStartWithNavigation -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -androidx.appcompat.R$id: int search_go_btn -org.greenrobot.greendao.database.DatabaseOpenHelper: void setLoadSQLCipherNativeLibs(boolean) -retrofit2.Call: boolean isCanceled() -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderFetchStrategy -io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,java.util.concurrent.Callable) -wangdaye.com.geometricweather.R$drawable: int weather_rain_1 -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Caption -androidx.work.R$id: int accessibility_custom_action_24 -androidx.constraintlayout.widget.R$attr: int deltaPolarAngle -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintTextAppearance -com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context,android.util.AttributeSet) -cyanogenmod.externalviews.ExternalViewProperties: boolean hasChanged() -com.xw.repo.bubbleseekbar.R$attr: int windowMinWidthMinor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: java.lang.String Unit -com.google.android.material.R$id: int progress_circular -androidx.constraintlayout.widget.R$color: int dim_foreground_disabled_material_light -androidx.preference.R$styleable: int MenuItem_android_onClick -io.reactivex.Observable: io.reactivex.Observable concatMapEagerDelayError(io.reactivex.functions.Function,int,int,boolean) -androidx.work.R$id: int tag_accessibility_heading -okhttp3.ConnectionSpec: boolean tls -android.didikee.donate.R$dimen: int abc_dialog_padding_top_material -androidx.constraintlayout.widget.R$id: int search_mag_icon -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.functions.BooleanSupplier stop -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String district -androidx.hilt.work.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setZh_CN(java.lang.String) -androidx.drawerlayout.R$attr: int fontProviderCerts -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int DUST -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_normal -wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWeekWidgetConfigActivity -androidx.lifecycle.extensions.R$id: int icon_group -okhttp3.internal.http2.Http2: byte TYPE_WINDOW_UPDATE -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Settings okHttpSettings -androidx.appcompat.R$id: int action_divider -com.google.android.material.R$dimen: int abc_dialog_min_width_major -androidx.fragment.R$style: R$style() -com.jaredrummler.android.colorpicker.R$anim: int abc_popup_exit -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableItem_android_id -cyanogenmod.app.StatusBarPanelCustomTile: int getUserId() -wangdaye.com.geometricweather.R$styleable: int ActionBar_title -androidx.constraintlayout.widget.R$attr: int customNavigationLayout -com.jaredrummler.android.colorpicker.R$attr: int tickMarkTintMode -james.adaptiveicon.R$id: int scrollIndicatorDown -cyanogenmod.app.Profile$ExpandedDesktopMode: Profile$ExpandedDesktopMode() -james.adaptiveicon.R$color: int abc_primary_text_disable_only_material_light -android.didikee.donate.R$styleable: int AppCompatTheme_windowActionModeOverlay -androidx.core.R$drawable: R$drawable() -androidx.appcompat.R$style: int Theme_AppCompat_Light_DarkActionBar -com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetEnd -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -com.xw.repo.bubbleseekbar.R$attr: int backgroundSplit -androidx.cardview.R$style: int Base_CardView -okhttp3.internal.cache.CacheRequest: void abort() -io.reactivex.Observable: io.reactivex.Observable skipUntil(io.reactivex.ObservableSource) -org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,int) -com.bumptech.glide.R$color -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature -james.adaptiveicon.R$dimen: int abc_panel_menu_list_width -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_min_width_major -wangdaye.com.geometricweather.R$integer: int bottom_sheet_slide_duration -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.R$styleable: int Transform_android_translationX -androidx.appcompat.resources.R$id: int accessibility_custom_action_21 -androidx.preference.R$attr -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float visibility -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setPoint(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean) -wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Top_Left -androidx.hilt.work.R$layout: int custom_dialog -com.google.gson.FieldNamingPolicy$3 -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver parent -okhttp3.logging.LoggingEventListener: void requestHeadersStart(okhttp3.Call) -com.google.android.material.chip.Chip: void setChipStartPaddingResource(int) -okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV1 -androidx.preference.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.R$id: int transition_current_scene -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModePasteDrawable -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onNext(java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragThreshold -androidx.dynamicanimation.R$id: int line3 -com.google.android.material.R$xml: int standalone_badge_gravity_bottom_end -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider -com.google.android.material.R$styleable: int Spinner_android_prompt -androidx.constraintlayout.widget.R$id: int dragLeft -androidx.preference.R$layout: int preference_widget_switch_compat -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getThunderstorm() -androidx.hilt.work.R$id: int tag_accessibility_heading -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyle -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_off_mtrl_alpha -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthFocused(int) -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_phaseText -com.google.android.material.R$styleable: int KeyCycle_android_rotationY -retrofit2.RequestFactory$Builder: java.util.Set parsePathParameters(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomNavigationView -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_color -cyanogenmod.weather.WeatherInfo$Builder: WeatherInfo$Builder(java.lang.String,double,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: CaiYunMainlyResult$ForecastDailyBean$WeatherBean() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableStartCompat -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat -android.support.v4.app.INotificationSideChannel: void notify(java.lang.String,int,java.lang.String,android.app.Notification) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.lang.String unit -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog -androidx.vectordrawable.animated.R$attr: int fontProviderCerts -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: io.reactivex.Observer downstream -androidx.constraintlayout.widget.R$color: int abc_decor_view_status_guard_light -okhttp3.internal.http1.Http1Codec$ChunkedSource: long bytesRemainingInChunk -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getHeaderHeight() -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_scrollContainer -james.adaptiveicon.R$styleable: int ActionBar_divider -androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_visible -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyle -wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setArcBackgroundColor(int) -james.adaptiveicon.R$string: int abc_searchview_description_submit -androidx.vectordrawable.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_controlBackground -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPadding -wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_grey -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List probabilityForecast -androidx.dynamicanimation.R$style: int Widget_Compat_NotificationActionContainer -com.xw.repo.bubbleseekbar.R$string: int search_menu_title -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActivityChooserView -wangdaye.com.geometricweather.R$id: int item_about_translator_title -com.google.android.material.R$attr: int alertDialogTheme -com.xw.repo.bubbleseekbar.R$attr: int actionProviderClass -androidx.constraintlayout.widget.R$attr: int actionModeCutDrawable -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.R$attr: int maxCharacterCount -androidx.work.R$id: int tag_unhandled_key_listeners -io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String,int,boolean) -androidx.appcompat.R$attr: int tickMark -androidx.appcompat.resources.R$string: R$string() -androidx.preference.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -okhttp3.FormBody: long contentLength() -androidx.preference.R$layout: int image_frame -androidx.lifecycle.ViewModelProviders$DefaultFactory -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String unitId -cyanogenmod.profiles.LockSettings: LockSettings() -wangdaye.com.geometricweather.R$string: int wind_6 -android.didikee.donate.R$styleable: int View_paddingEnd -androidx.hilt.lifecycle.R$id: int title -androidx.swiperefreshlayout.R$attr: int fontProviderFetchStrategy -androidx.appcompat.widget.Toolbar: void setNavigationContentDescription(java.lang.CharSequence) -cyanogenmod.hardware.DisplayMode$1: java.lang.Object createFromParcel(android.os.Parcel) -io.reactivex.internal.observers.ForEachWhileObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$color: int secondary_text_disabled_material_dark -org.greenrobot.greendao.AbstractDao: void deleteInTx(java.lang.Iterable) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogCenterButtons -androidx.lifecycle.ClassesInfoCache: java.lang.reflect.Method[] getDeclaredMethods(java.lang.Class) -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit getInstance(java.lang.String) -androidx.preference.R$styleable: int TextAppearance_textAllCaps -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String access$300(cyanogenmod.app.Profile$ProfileTrigger) -com.google.android.material.chip.Chip: float getIconEndPadding() -androidx.preference.R$color: int abc_hint_foreground_material_light -wangdaye.com.geometricweather.R$attr: int actionModeCutDrawable -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxBackgroundMode -wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_light -com.google.android.material.R$drawable: int notification_bg_low -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: cyanogenmod.weather.IWeatherServiceProviderChangeListener asInterface(android.os.IBinder) -android.didikee.donate.R$dimen: int abc_cascading_menus_min_smallest_width -wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_material -com.google.android.material.card.MaterialCardView: android.graphics.drawable.Drawable getCheckedIcon() -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView_DropDown -retrofit2.RequestBuilder: okhttp3.HttpUrl baseUrl -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -com.bumptech.glide.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.appcompat.R$styleable: int AlertDialog_android_layout -okhttp3.CacheControl: CacheControl(boolean,boolean,int,int,boolean,boolean,boolean,int,int,boolean,boolean,boolean,java.lang.String) -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_DES_CBC_MD5 -com.google.android.material.R$styleable: int RecycleListView_paddingBottomNoButtons -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setRightToLeft(boolean) -androidx.appcompat.R$style: int Base_V26_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.search.SearchActivityViewModel -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: CaiYunMainlyResult$UrlBean() -wangdaye.com.geometricweather.R$string: int follow_system -androidx.vectordrawable.animated.R$id: int text2 -com.google.android.material.R$string: int mtrl_picker_toggle_to_year_selection -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_grey -wangdaye.com.geometricweather.R$string: int sunrise_sunset -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX() -wangdaye.com.geometricweather.R$styleable: int[] CardView -wangdaye.com.geometricweather.R$color: int mtrl_outlined_icon_tint -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.Observer downstream -androidx.dynamicanimation.R$dimen: int notification_action_text_size -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light_BottomSheetDialog -wangdaye.com.geometricweather.R$attr: int layout_collapseParallaxMultiplier -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias -androidx.appcompat.R$id: int on -com.turingtechnologies.materialscrollbar.R$attr: int foregroundInsidePadding -com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_pressed -com.google.android.material.tabs.TabLayout: void setTabsFromPagerAdapter(androidx.viewpager.widget.PagerAdapter) -androidx.constraintlayout.widget.R$attr: int warmth -wangdaye.com.geometricweather.R$styleable: int[] FontFamily -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_clear_material -androidx.appcompat.resources.R$id: int async -androidx.hilt.lifecycle.R$dimen: int notification_top_pad -androidx.appcompat.R$style: int AlertDialog_AppCompat -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: CustomTileListenerService$ICustomTileListenerWrapper(cyanogenmod.app.CustomTileListenerService,cyanogenmod.app.CustomTileListenerService$1) -wangdaye.com.geometricweather.R$attr: int bsb_section_count -okhttp3.internal.http.HttpHeaders: boolean hasVaryAll(okhttp3.Headers) -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.hilt.work.R$styleable: int FontFamilyFont_ttcIndex -james.adaptiveicon.R$drawable: int abc_control_background_material -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean isDisposed() -com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.drawable.Drawable getContentBackground() -com.xw.repo.bubbleseekbar.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getAbbreviation(android.content.Context) -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getProgress -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_5 -retrofit2.Invocation: java.lang.String toString() -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.lang.String getPubTime() -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -wangdaye.com.geometricweather.R$dimen: int compat_notification_large_icon_max_height -com.jaredrummler.android.colorpicker.R$styleable: int RecycleListView_paddingBottomNoButtons -com.google.android.material.R$style: int Base_CardView -com.google.android.material.R$styleable: int Constraint_layout_goneMarginLeft -androidx.lifecycle.ViewModelProvider$KeyedFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -com.google.android.material.R$styleable: int AppBarLayout_android_background -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_end -wangdaye.com.geometricweather.R$drawable: int material_ic_edit_black_24dp -androidx.appcompat.R$color: int abc_btn_colored_borderless_text_material -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_backgroundTint -wangdaye.com.geometricweather.R$dimen: int mtrl_min_touch_target_size -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean tryOnError(java.lang.Throwable) -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setPressure(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean) -androidx.constraintlayout.widget.R$styleable: int[] KeyTrigger -james.adaptiveicon.AdaptiveIconView: james.adaptiveicon.AdaptiveIcon getIcon() -okhttp3.internal.http1.Http1Codec$ChunkedSink: void flush() -com.google.android.material.slider.BaseSlider: void setTrackInactiveTintList(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$string -com.google.android.material.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier -com.google.android.material.R$attr: int cardMaxElevation -okio.Buffer: okio.ByteString sha256() -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_shapeAppearanceOverlay -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.turingtechnologies.materialscrollbar.R$attr: int windowFixedHeightMajor -android.didikee.donate.R$styleable: int MenuView_subMenuArrow -cyanogenmod.os.Build$CM_VERSION -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: java.util.List timelapsItems -wangdaye.com.geometricweather.R$string: int settings_title_forecast_tomorrow -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_bar_title_item -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void dispose() -okhttp3.internal.http2.Http2Writer: void close() -wangdaye.com.geometricweather.R$string: int key_alert_notification_switch -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult -androidx.preference.R$styleable: int Preference_android_iconSpaceReserved -okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] publicSuffixListBytes -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: int getMarginBottom() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX getWind() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf -cyanogenmod.hardware.CMHardwareManager: int FEATURE_HIGH_TOUCH_SENSITIVITY -androidx.appcompat.R$attr: int thumbTextPadding -com.google.gson.stream.JsonReader: int NUMBER_CHAR_SIGN -android.didikee.donate.R$styleable: int ActionBar_subtitleTextStyle -androidx.appcompat.R$style: int TextAppearance_AppCompat_Body1 -androidx.dynamicanimation.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: float unitFactor -io.reactivex.internal.subscriptions.SubscriptionArbiter: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onError(java.lang.Throwable) -cyanogenmod.externalviews.KeyguardExternalView$6: void run() -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.R$attr: int backgroundColorEnd -android.didikee.donate.R$styleable: int[] ListPopupWindow -okio.Buffer$UnsafeCursor: void close() -cyanogenmod.providers.CMSettings$Secure: boolean isLegacySetting(java.lang.String) -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: java.lang.String English -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: boolean IsAlias -cyanogenmod.profiles.RingModeSettings$1: RingModeSettings$1() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -okio.Buffer: int read(byte[],int,int) -androidx.viewpager2.R$dimen: int compat_button_padding_vertical_material -androidx.preference.R$id: int notification_main_column -com.google.android.material.slider.Slider: void setTrackActiveTintList(android.content.res.ColorStateList) -okhttp3.internal.Internal: okhttp3.internal.connection.RouteDatabase routeDatabase(okhttp3.ConnectionPool) -android.didikee.donate.R$color: int material_grey_50 -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColorItem_android_offset -androidx.customview.R$layout: int notification_template_part_time -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -com.turingtechnologies.materialscrollbar.R$attr: int fabCradleMargin -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_gradientRadius -androidx.swiperefreshlayout.R$drawable: int notification_bg -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Time -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_title_divider_material -androidx.constraintlayout.widget.R$attr: int layout_constraintTop_toTopOf -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.Observer downstream -okhttp3.ResponseBody$1: ResponseBody$1(okhttp3.MediaType,long,okio.BufferedSource) -androidx.hilt.work.R$styleable: R$styleable() -androidx.viewpager.widget.PagerTitleStrip: void setTextColor(int) -androidx.hilt.R$style: int TextAppearance_Compat_Notification -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.gson.stream.JsonReader: int stackSize -io.reactivex.Observable: io.reactivex.Observable fromCallable(java.util.concurrent.Callable) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean cancelled -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String moonPhase -com.xw.repo.bubbleseekbar.R$id: int image -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton -wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_chainStyle -com.google.android.material.slider.BaseSlider: void setLabelBehavior(int) -wangdaye.com.geometricweather.R$color: int abc_primary_text_material_light -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Menu -androidx.vectordrawable.R$styleable: int GradientColor_android_endColor -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void truncate() -android.didikee.donate.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -wangdaye.com.geometricweather.R$id: int switch_layout -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.lang.Object NULL_KEY -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_radioButtonStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_end -retrofit2.HttpException: int code() -cyanogenmod.externalviews.KeyguardExternalView$1 -wangdaye.com.geometricweather.R$color: int lightPrimary_5 -wangdaye.com.geometricweather.R$id: int search_close_btn -com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_disable_only_material_dark -com.google.android.material.slider.Slider: int getFocusedThumbIndex() -com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_colored -androidx.constraintlayout.widget.R$attr: int actionModeSplitBackground -androidx.constraintlayout.widget.R$attr: int triggerReceiver -androidx.constraintlayout.widget.R$attr: int radioButtonStyle -com.jaredrummler.android.colorpicker.R$attr: int isPreferenceVisible -androidx.coordinatorlayout.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWetBulbTemperature -james.adaptiveicon.R$styleable: int Toolbar_android_gravity -com.turingtechnologies.materialscrollbar.R$id: int list_item -androidx.hilt.lifecycle.R$anim: int fragment_open_exit -com.jaredrummler.android.colorpicker.R$attr: int arrowShaftLength -com.google.android.material.slider.RangeSlider: void setMinSeparation(float) -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: void onResponse(retrofit2.Call,retrofit2.Response) -cyanogenmod.externalviews.ExternalView$4 -cyanogenmod.app.LiveLockScreenInfo: void writeToParcel(android.os.Parcel,int) -com.google.android.material.R$dimen: int mtrl_btn_snackbar_margin_horizontal -okhttp3.internal.ws.WebSocketProtocol: int PAYLOAD_LONG -com.xw.repo.bubbleseekbar.R$attr: int titleMarginTop -okhttp3.internal.connection.StreamAllocation: void cancel() -androidx.lifecycle.extensions.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowDx -androidx.appcompat.R$id: int screen -androidx.constraintlayout.widget.R$attr: int thumbTint -androidx.fragment.R$id: int accessibility_custom_action_17 -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_processThemeResources -androidx.appcompat.R$anim: int abc_popup_enter -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -com.google.android.material.R$id: int easeOut -okhttp3.internal.connection.RouteException: java.io.IOException firstException -com.google.android.material.R$color: int error_color_material_dark -com.jaredrummler.android.colorpicker.R$attr: int cpv_showOldColor -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SWAP_VOLUME_KEYS_ON_ROTATION_VALIDATOR -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ScheduledExecutorService writerExecutor -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_text_color -com.google.android.material.R$dimen: int abc_floating_window_z -wangdaye.com.geometricweather.R$string: int key_language -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getUniqueDeviceId() -com.google.android.material.R$attr: int behavior_peekHeight -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.internal.util.AtomicThrowable error -com.google.android.material.R$attr: int expandedTitleGravity -com.turingtechnologies.materialscrollbar.R$integer -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconDrawable -com.google.android.material.R$attr: int textAppearanceListItemSecondary -io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator INSTANCE -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void dispose() -com.xw.repo.bubbleseekbar.R$attr: int autoSizeTextType -androidx.hilt.lifecycle.R$styleable: int GradientColorItem_android_color -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -io.reactivex.internal.subscriptions.DeferredScalarSubscription: DeferredScalarSubscription(org.reactivestreams.Subscriber) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupWindow -okhttp3.Response: okhttp3.ResponseBody peekBody(long) -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: long id -androidx.appcompat.resources.R$string -io.reactivex.Observable: io.reactivex.Observable retry(long,io.reactivex.functions.Predicate) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setValue(java.util.List) -com.google.android.material.R$dimen: int design_fab_translation_z_pressed -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: AccuCurrentResult$WindChillTemperature() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: ObservableFlatMapCompletable$FlatMapCompletableMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -androidx.drawerlayout.R$dimen: int compat_button_inset_vertical_material -com.google.android.material.chip.ChipGroup: void setShowDividerHorizontal(int) -androidx.legacy.coreutils.R$dimen: int notification_large_icon_height -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableRight -com.google.gson.stream.JsonWriter: boolean lenient -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -retrofit2.Utils: java.lang.reflect.Type getGenericSupertype(java.lang.reflect.Type,java.lang.Class,java.lang.Class) -android.didikee.donate.R$drawable: int abc_list_selector_background_transition_holo_dark -androidx.lifecycle.LiveData$LifecycleBoundObserver: boolean isAttachedTo(androidx.lifecycle.LifecycleOwner) -com.google.android.material.R$attr: int helperTextEnabled -android.didikee.donate.R$style: int Widget_AppCompat_PopupWindow -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onSuccess(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int shortcuts_cloudy_foreground -cyanogenmod.app.ILiveLockScreenManager -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: void setX(java.lang.String) -androidx.hilt.lifecycle.R$id: int line1 -androidx.vectordrawable.animated.R$attr: int fontProviderAuthority -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_Solid -androidx.appcompat.R$attr: int colorError -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit[] values() -com.xw.repo.bubbleseekbar.R$styleable: int View_theme -com.xw.repo.bubbleseekbar.R$attr: int windowActionBar -okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_2 -cyanogenmod.externalviews.ExternalViewProperties: ExternalViewProperties(android.view.View,android.content.Context) -com.google.android.material.R$color: int abc_tint_seek_thumb -io.reactivex.internal.queue.SpscArrayQueue: long producerLookAhead -androidx.activity.R$dimen: int notification_small_icon_size_as_large -androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_CheckBox -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setWind(double,double,int) -io.reactivex.Observable: io.reactivex.Observable using(java.util.concurrent.Callable,io.reactivex.functions.Function,io.reactivex.functions.Consumer,boolean) -james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat -androidx.appcompat.R$attr: int actionButtonStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDewPoint(java.lang.Integer) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String quality -com.bumptech.glide.Registry$NoImageHeaderParserException -com.google.android.material.R$attr: int backgroundInsetTop -retrofit2.ParameterHandler$Query: ParameterHandler$Query(java.lang.String,retrofit2.Converter,boolean) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button -com.xw.repo.bubbleseekbar.R$attr: int closeIcon -cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_APP_SUGGESTIONS -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void disposeAll() -android.didikee.donate.R$dimen: int highlight_alpha_material_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getShortDescription() -androidx.appcompat.widget.Toolbar: void setTitle(java.lang.CharSequence) -androidx.fragment.R$drawable: int notification_bg_normal -cyanogenmod.weather.WeatherInfo: int mConditionCode -io.reactivex.internal.disposables.CancellableDisposable: boolean isDisposed() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String EnglishName -androidx.loader.R$styleable: int FontFamily_fontProviderCerts -com.google.android.material.R$id: int time -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_29 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarStyle -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_font -okhttp3.MultipartBody$Part: okhttp3.RequestBody body() -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxy(java.net.Proxy) -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startY -androidx.customview.R$styleable: int FontFamily_fontProviderFetchStrategy -io.reactivex.internal.subscriptions.SubscriptionArbiter -androidx.transition.R$id: int action_text -android.didikee.donate.R$attr: int buttonGravity -androidx.preference.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -wangdaye.com.geometricweather.main.fragments.MainFragment -androidx.work.NetworkType: androidx.work.NetworkType NOT_REQUIRED -okhttp3.internal.connection.RouteSelector$Selection: RouteSelector$Selection(java.util.List) -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean getLiveLockScreenEnabled() -android.didikee.donate.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -james.adaptiveicon.R$drawable: int abc_cab_background_top_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogPreferredPadding -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_inverse_material_light -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener access$900(cyanogenmod.externalviews.KeyguardExternalView) -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_medium_material -wangdaye.com.geometricweather.db.entities.HistoryEntity: int daytimeTemperature -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date sunriseTime -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_elevation -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_default_mtrl_shape -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_background_transition_holo_light -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarItemBackground -androidx.viewpager.R$styleable: int FontFamily_fontProviderFetchTimeout -com.google.android.material.R$styleable: int DrawerArrowToggle_barLength -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Large_Inverse -androidx.loader.R$id: int notification_main_column_container -cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) -okhttp3.CertificatePinner$Builder: okhttp3.CertificatePinner build() -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: long updatedOn -com.turingtechnologies.materialscrollbar.R$styleable: int[] DrawerArrowToggle -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode PARTLY_CLOUDY -james.adaptiveicon.R$id: int search_go_btn -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline Headline -androidx.activity.R$id: int accessibility_custom_action_7 -com.google.android.material.R$styleable: int PropertySet_android_alpha -io.reactivex.internal.util.NotificationLite: java.lang.String toString() -com.google.android.material.R$styleable: int NavigationView_itemBackground -okhttp3.internal.http2.Http2Stream$FramingSource: okio.Timeout timeout() -wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingRight -androidx.constraintlayout.widget.ConstraintLayout: void setOnConstraintsChanged(androidx.constraintlayout.widget.ConstraintsChangedListener) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: MfForecastResult$Forecast$Snow() -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderCerts -cyanogenmod.weather.WeatherInfo$1: cyanogenmod.weather.WeatherInfo createFromParcel(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle -wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitleTextColor -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetLeft -com.google.android.material.R$style: int Widget_AppCompat_Light_PopupMenu -android.didikee.donate.R$styleable: int AppCompatTheme_controlBackground -wangdaye.com.geometricweather.R$color: int material_grey_800 -okhttp3.internal.ws.RealWebSocket: java.util.concurrent.ScheduledExecutorService executor -wangdaye.com.geometricweather.R$layout: int mtrl_picker_text_input_date -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_seekBarStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -okhttp3.internal.http2.Http2Connection: void sendDegradedPingLater() -androidx.work.R$style: int Widget_Compat_NotificationActionText -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_MediumComponent -androidx.core.R$id: int blocking -wangdaye.com.geometricweather.R$dimen: int material_cursor_inset_bottom -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeight -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String languageId -com.google.android.material.R$styleable: int TabLayout_tabRippleColor -com.google.android.material.R$dimen: int mtrl_snackbar_background_overlay_color_alpha -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_surface -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarSize -androidx.constraintlayout.widget.R$attr: int buttonBarNegativeButtonStyle -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -james.adaptiveicon.R$styleable: int ViewBackgroundHelper_backgroundTint -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -james.adaptiveicon.R$layout: int notification_template_custom_big -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_DropDown -wangdaye.com.geometricweather.R$attr: int mock_labelBackgroundColor -com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_view -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() -cyanogenmod.app.suggest.IAppSuggestManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.appcompat.R$styleable: int AppCompatTextView_textAllCaps -com.turingtechnologies.materialscrollbar.R$attr: int hintTextAppearance -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void error(java.lang.Throwable) -androidx.core.R$layout -androidx.appcompat.R$styleable: int GradientColor_android_startY -cyanogenmod.app.ILiveLockScreenChangeListener: void onLiveLockScreenChanged(cyanogenmod.app.LiveLockScreenInfo) -com.turingtechnologies.materialscrollbar.R$attr: int lineSpacing -cyanogenmod.externalviews.ExternalViewProviderService$1: android.os.IBinder createExternalView(android.os.Bundle) -com.google.android.material.chip.Chip: void setChipIconSizeResource(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setUvIndex(java.lang.String) -wangdaye.com.geometricweather.R$xml: int widget_day_week -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: long serialVersionUID -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_font -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalBias -com.turingtechnologies.materialscrollbar.R$id: int search_src_text -wangdaye.com.geometricweather.R$interpolator -androidx.preference.R$dimen: int disabled_alpha_material_dark -okhttp3.internal.cache.CacheStrategy$Factory: int ageSeconds -wangdaye.com.geometricweather.R$dimen: int design_snackbar_extra_spacing_horizontal -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date setDate -cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weather.RequestInfo mInfo -androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context,android.util.AttributeSet,int) -com.github.rahatarmanahmed.cpv.R$styleable: int[] CircularProgressView -androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context) -wangdaye.com.geometricweather.R$drawable: int abc_edit_text_material -okhttp3.internal.http2.Http2Codec: java.lang.String HOST -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeMinTextSize -android.didikee.donate.R$style: int Theme_AppCompat_Light -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: java.util.concurrent.atomic.AtomicReference upstream -androidx.constraintlayout.widget.R$attr: int flow_firstHorizontalStyle -com.google.android.material.R$dimen: int material_clock_hand_padding -com.google.android.material.textfield.TextInputLayout: void setStartIconDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi -wangdaye.com.geometricweather.R$id: int dialog_time_setter_cancel -com.turingtechnologies.materialscrollbar.R$string: int search_menu_title -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String dept -androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.R$id: int custom -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_DialogWhenLarge -com.google.android.material.R$style: int Widget_AppCompat_ActionBar_Solid -androidx.constraintlayout.widget.R$color: int abc_primary_text_material_light -okhttp3.internal.http2.Header -james.adaptiveicon.R$attr: int isLightTheme -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void next(java.lang.Object) -androidx.lifecycle.SavedStateViewModelFactory: java.lang.reflect.Constructor findMatchingConstructor(java.lang.Class,java.lang.Class[]) -androidx.preference.PreferenceGroup: void setOnExpandButtonClickListener(androidx.preference.PreferenceGroup$OnExpandButtonClickListener) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: MfForecastResult$DailyForecast$DailyTemperature() -cyanogenmod.profiles.StreamSettings -com.xw.repo.bubbleseekbar.R$attr: int homeLayout -androidx.appcompat.R$drawable: int notification_bg_low -com.google.android.material.R$attr: int checkedChip -wangdaye.com.geometricweather.R$anim: int fragment_close_exit -com.google.android.material.slider.BaseSlider: void setThumbStrokeWidth(float) -androidx.appcompat.widget.AppCompatEditText: void setBackgroundResource(int) -james.adaptiveicon.R$string: int abc_searchview_description_query -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.google.android.material.R$integer: int mtrl_calendar_selection_text_lines -com.google.android.material.datepicker.Month -com.jaredrummler.android.colorpicker.R$bool: int abc_allow_stacked_button_bar -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property City -androidx.preference.R$styleable: int SwitchCompat_android_textOff -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onComplete() -wangdaye.com.geometricweather.R$color: int material_slider_inactive_tick_marks_color -cyanogenmod.weatherservice.WeatherProviderService: void attachBaseContext(android.content.Context) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_38 -com.google.android.material.R$attr: int useCompatPadding -androidx.preference.R$attr: int contentInsetLeft -okhttp3.CookieJar: java.util.List loadForRequest(okhttp3.HttpUrl) -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void subscribeNext() -cyanogenmod.hardware.CMHardwareManager: int FEATURE_TAP_TO_WAKE -androidx.viewpager2.widget.ViewPager2$SavedState: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$drawable: int notification_tile_bg -com.google.android.material.R$id: int group_divider -android.didikee.donate.R$color: int button_material_dark -com.jaredrummler.android.colorpicker.R$style: int Base_V23_Theme_AppCompat -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_collapseIcon -okhttp3.CertificatePinner: void check(java.lang.String,java.security.cert.Certificate[]) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeStepGranularity -androidx.constraintlayout.widget.R$id: int scrollView -androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context,android.util.AttributeSet) -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animDuration -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -com.google.android.material.textfield.TextInputLayout: void setCounterTextColor(android.content.res.ColorStateList) -android.didikee.donate.R$styleable: int AppCompatTheme_listMenuViewStyle -androidx.swiperefreshlayout.R$id: R$id() -wangdaye.com.geometricweather.R$attr: int bsb_always_show_bubble -org.greenrobot.greendao.AbstractDao: void readEntity(android.database.Cursor,java.lang.Object,int) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeWindSpeed() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemTextColor -retrofit2.http.PATCH: java.lang.String value() -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void drain() -wangdaye.com.geometricweather.R$drawable: int weather_wind -wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeDescription(java.lang.String) -android.didikee.donate.R$drawable: int abc_list_selector_holo_light -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.Query queryRawCreate(java.lang.String,java.lang.Object[]) -androidx.appcompat.resources.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaSeekBar -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.db.entities.DaoSession -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moonContainer -wangdaye.com.geometricweather.R$drawable: int notif_temp_97 -androidx.preference.R$styleable: int[] Fragment -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_material_light -wangdaye.com.geometricweather.R$drawable: int ic_uv -androidx.transition.R$dimen: int notification_small_icon_background_padding -androidx.constraintlayout.widget.R$attr: int ratingBarStyleSmall -androidx.constraintlayout.widget.R$dimen: int abc_text_size_menu_header_material -com.xw.repo.bubbleseekbar.R$attr: int windowFixedWidthMajor -james.adaptiveicon.R$attr: int colorBackgroundFloating -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -org.greenrobot.greendao.AbstractDaoMaster: int getSchemaVersion() -android.didikee.donate.R$id: int showHome -wangdaye.com.geometricweather.R$drawable: int weather_snow_2 -okhttp3.internal.platform.Jdk9Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List hourlyForecast -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: ObservableRefCount$RefCountObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableRefCount,io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection) -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status WAITING_FOR_SIZE -james.adaptiveicon.R$attr: int trackTint -androidx.preference.R$styleable: int DialogPreference_android_negativeButtonText -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_spanCount -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_trackTintMode -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder cipherSuites(java.lang.String[]) -cyanogenmod.profiles.StreamSettings: int getStreamId() -com.github.rahatarmanahmed.cpv.R$color -androidx.appcompat.R$styleable: int ActionBarLayout_android_layout_gravity -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric -cyanogenmod.weather.ICMWeatherManager: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) -com.google.android.material.R$styleable: int NavigationView_menu -wangdaye.com.geometricweather.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -androidx.transition.R$drawable: int notification_icon_background -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void drainLoop() -wangdaye.com.geometricweather.R$drawable: int ic_dress -androidx.appcompat.R$style: int ThemeOverlay_AppCompat -com.google.android.material.R$styleable: int Insets_paddingBottomSystemWindowInsets -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_expanded -com.xw.repo.bubbleseekbar.R$attr: int switchPadding -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void trimHead() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listDividerAlertDialog -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Large -androidx.appcompat.R$styleable: int GradientColor_android_startColor -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -com.google.gson.internal.JsonReaderInternalAccess: void promoteNameToValue(com.google.gson.stream.JsonReader) -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner -androidx.preference.R$drawable: int abc_textfield_search_activated_mtrl_alpha -androidx.constraintlayout.widget.R$color: int material_grey_50 -wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_hovered_alpha -okhttp3.ConnectionPool: boolean connectionBecameIdle(okhttp3.internal.connection.RealConnection) -cyanogenmod.app.ILiveLockScreenManagerProvider: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange Past12HourRange -androidx.core.R$id: int accessibility_custom_action_28 -android.didikee.donate.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature -okhttp3.internal.Util: java.lang.String[] concat(java.lang.String[],java.lang.String) -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderPackage -androidx.hilt.work.R$id: int accessibility_custom_action_5 -androidx.appcompat.resources.R$id: int accessibility_custom_action_12 -okhttp3.internal.http.HttpHeaders: java.lang.String repeat(char,int) -androidx.lifecycle.ComputableLiveData$2: androidx.lifecycle.ComputableLiveData this$0 -androidx.fragment.R$color -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -android.didikee.donate.R$string: int abc_capital_off -com.google.android.material.slider.BaseSlider: void removeOnChangeListener(com.google.android.material.slider.BaseOnChangeListener) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -com.xw.repo.bubbleseekbar.R$attr: int subtitleTextColor -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeStyle -com.google.android.material.R$dimen: int abc_edit_text_inset_bottom_material -wangdaye.com.geometricweather.R$dimen: int abc_floating_window_z -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Large_Inverse -androidx.transition.R$id: int save_overlay_view -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.weather.apis.AtmoAuraIqaApi -androidx.preference.R$style: int Platform_V21_AppCompat_Light -com.google.android.material.R$string: int appbar_scrolling_view_behavior -com.google.android.material.R$styleable: int CardView_cardCornerRadius -androidx.constraintlayout.widget.R$id: int split_action_bar -androidx.preference.R$id: int action_mode_bar -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.Lifecycle getLifecycle() -androidx.appcompat.R$id: int accessibility_custom_action_11 -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_READY -androidx.appcompat.R$dimen: int compat_notification_large_icon_max_width -okhttp3.internal.Util: java.lang.String canonicalizeHost(java.lang.String) -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int endIconMode -androidx.appcompat.R$styleable: int ActionBar_displayOptions -androidx.constraintlayout.widget.R$styleable: int SearchView_android_imeOptions -androidx.preference.R$attr: int subtitle -wangdaye.com.geometricweather.R$layout: int test_chip_zero_corner_radius -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginStart -okhttp3.HttpUrl: java.lang.String username -wangdaye.com.geometricweather.R$string: int humidity -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int bufferSize -okhttp3.Cache$2: java.util.Iterator delegate -com.jaredrummler.android.colorpicker.R$style: int Platform_V25_AppCompat -com.google.android.material.R$drawable: int notification_action_background -androidx.swiperefreshlayout.R$dimen: int notification_large_icon_width -com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -androidx.cardview.widget.CardView: android.content.res.ColorStateList getCardBackgroundColor() -okio.AsyncTimeout: long timeoutAt -cyanogenmod.app.ICMStatusBarManager -com.google.android.material.R$styleable: int MaterialRadioButton_buttonTint -okhttp3.ResponseBody$1: long contentLength() -androidx.preference.R$styleable: int PreferenceFragmentCompat_android_divider -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_end -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver) -okhttp3.internal.http1.Http1Codec: void writeRequestHeaders(okhttp3.Request) -james.adaptiveicon.R$dimen: int abc_dialog_fixed_width_minor -com.google.android.material.R$styleable: int PropertySet_visibilityMode -androidx.constraintlayout.widget.R$attr: int logoDescription -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long end -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String moonPhaseDescription -com.jaredrummler.android.colorpicker.R$attr: int commitIcon -com.turingtechnologies.materialscrollbar.R$attr: int fabSize -com.google.android.material.R$id: int mtrl_picker_header -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitationProbability(java.lang.Float) -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationZ -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionBar -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense -androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$id: int grassIcon -androidx.transition.R$id: int action_container -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_default_mtrl_alpha -com.google.android.material.R$attr: int indeterminateProgressStyle -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_switchPreferenceStyle -cyanogenmod.themes.IThemeService: void rebuildResourceCache() -androidx.preference.R$attr: int actionBarTabStyle -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_disableDependentsState -okhttp3.internal.http2.Hpack: Hpack() -androidx.work.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_creator -com.google.android.material.R$styleable: int TextInputLayout_hintTextAppearance -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_horizontal -wangdaye.com.geometricweather.R$attr: int liftOnScroll -wangdaye.com.geometricweather.R$styleable: int[] AppCompatTextView -com.jaredrummler.android.colorpicker.R$attr: int layout -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float thunderstormPrecipitation -androidx.coordinatorlayout.R$dimen: int notification_large_icon_height -okhttp3.Request$Builder: okhttp3.Request$Builder get() -com.google.android.material.R$styleable: int ActionBar_navigationMode -wangdaye.com.geometricweather.R$font: int product_sans_medium -retrofit2.ServiceMethod -wangdaye.com.geometricweather.R$animator: int mtrl_chip_state_list_anim -com.bumptech.glide.integration.okhttp.R$drawable: int notification_template_icon_low_bg -io.reactivex.internal.observers.DeferredScalarDisposable: DeferredScalarDisposable(io.reactivex.Observer) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: AccuCurrentResult$DewPoint$Metric() -androidx.constraintlayout.widget.R$id: int list_item -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginBottom -okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithoutIndexingNewName() -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_controlView -wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity: ClockDayVerticalWidgetConfigActivity() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric Metric -com.google.android.material.R$attr: int badgeStyle -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_toLeftOf -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setHumidity(double) -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_SYSTEM -cyanogenmod.app.ProfileGroup: int describeContents() -com.google.android.material.R$layout: int select_dialog_singlechoice_material -com.jaredrummler.android.colorpicker.R$layout: int abc_screen_simple_overlay_action_mode -androidx.appcompat.R$attr: int drawableTint -com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context) -com.google.android.material.R$id: int action_bar_spinner -io.reactivex.observers.TestObserver$EmptyObserver -androidx.appcompat.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -com.google.android.material.R$attr: int bottomSheetDialogTheme -com.google.android.material.timepicker.ChipTextInputComboView: void setOnClickListener(android.view.View$OnClickListener) -androidx.appcompat.resources.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.main.dialogs.HourlyWeatherDialog -wangdaye.com.geometricweather.R$attr: int onShow -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property TimeZone -androidx.dynamicanimation.R$drawable: int notify_panel_notification_icon_bg -com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableItem -com.google.android.material.R$interpolator: int fast_out_slow_in -cyanogenmod.app.ProfileGroup: boolean mDirty -org.greenrobot.greendao.AbstractDao: java.util.List loadAllFromCursor(android.database.Cursor) -androidx.versionedparcelable.CustomVersionedParcelable -wangdaye.com.geometricweather.R$drawable: int notif_temp_41 -androidx.preference.R$styleable: int AppCompatTheme_borderlessButtonStyle -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_visible -androidx.appcompat.R$styleable: int Toolbar_logo -okio.SegmentedByteString: java.lang.String toString() -androidx.preference.R$styleable: int MultiSelectListPreference_entries -okhttp3.internal.http2.Http2Connection: void writePing(boolean,int,int) -com.google.android.material.R$id: int mtrl_motion_snapshot_view -cyanogenmod.themes.ThemeChangeRequest$RequestType -james.adaptiveicon.R$string: int abc_activity_chooser_view_see_all -com.turingtechnologies.materialscrollbar.R$color: int foreground_material_light -androidx.hilt.lifecycle.R$layout: int notification_template_part_time -io.reactivex.Observable: io.reactivex.Observable retry(long) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: int Rank -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_fontFamily -wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_horizontal_setting -wangdaye.com.geometricweather.R$attr: int progressIndicatorStyle -com.xw.repo.bubbleseekbar.R$dimen: int abc_config_prefDialogWidth -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Address createAddress(okhttp3.HttpUrl) -androidx.hilt.lifecycle.R$dimen: int notification_content_margin_start -com.google.android.material.timepicker.TimePickerView: void addOnRotateListener(com.google.android.material.timepicker.ClockHandView$OnRotateListener) -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dark -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_DropDown -james.adaptiveicon.R$styleable: int MenuItem_android_title -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Caption -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -com.google.android.material.R$color: int dim_foreground_disabled_material_light -cyanogenmod.app.CMTelephonyManager: java.lang.String TAG -com.jaredrummler.android.colorpicker.R$id: int search_mag_icon -wangdaye.com.geometricweather.R$styleable: int Chip_chipIconSize -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dark -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.gson.internal.LinkedTreeMap: int modCount -com.bumptech.glide.integration.okhttp.R$id: int right_side -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -okhttp3.internal.connection.RouteException -androidx.lifecycle.extensions.R$attr: R$attr() -android.didikee.donate.R$color: int switch_thumb_disabled_material_light -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode valueOf(java.lang.String) -okhttp3.Response$Builder: okhttp3.Response$Builder cacheResponse(okhttp3.Response) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListMenuView -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor valueOf(java.lang.String) -okio.Buffer: okio.Buffer writeUtf8(java.lang.String) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String etag -io.reactivex.Observable: io.reactivex.Observable empty() -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.view.WindowManager mWindowManager -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getLabelVisibilityMode() -james.adaptiveicon.R$styleable: int ActionBar_elevation -androidx.lifecycle.SavedStateHandleController -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setEn_US(java.lang.String) -androidx.viewpager2.R$layout: R$layout() -com.xw.repo.bubbleseekbar.R$dimen: int abc_button_padding_vertical_material -com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorType() -com.google.android.material.R$dimen: int abc_dialog_fixed_height_major -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -retrofit2.RequestBuilder: void addFormField(java.lang.String,java.lang.String,boolean) -androidx.lifecycle.DefaultLifecycleObserver: void onCreate(androidx.lifecycle.LifecycleOwner) -okio.BufferedSink: okio.BufferedSink writeIntLe(int) -wangdaye.com.geometricweather.R$drawable: int notification_bg -io.reactivex.internal.util.VolatileSizeArrayList: boolean retainAll(java.util.Collection) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void dispose() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: java.util.List alerts -androidx.fragment.R$attr: int fontProviderAuthority -com.jaredrummler.android.colorpicker.R$attr: int windowFixedWidthMajor -wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_details_setting -com.jaredrummler.android.colorpicker.R$attr: int windowFixedHeightMajor -android.didikee.donate.R$dimen: int abc_action_bar_elevation_material -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -wangdaye.com.geometricweather.R$id: int container_main_details_title -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox -retrofit2.HttpServiceMethod: retrofit2.CallAdapter createCallAdapter(retrofit2.Retrofit,java.lang.reflect.Method,java.lang.reflect.Type,java.lang.annotation.Annotation[]) -wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity: ClockDayHorizontalWidgetConfigActivity() -com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreferenceCompat -android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_notify -cyanogenmod.providers.CMSettings$NameValueCache: android.net.Uri mUri -com.jaredrummler.android.colorpicker.R$attr: int actionBarTabTextStyle -androidx.constraintlayout.widget.R$dimen: int abc_progress_bar_height_material -cyanogenmod.app.StatusBarPanelCustomTile: void writeToParcel(android.os.Parcel,int) -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node root -james.adaptiveicon.R$id: int shortcut -com.google.gson.stream.JsonWriter: int peek() -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onComplete() -com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyle -cyanogenmod.app.ICustomTileListener: void onListenerConnected() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: long serialVersionUID -cyanogenmod.weather.WeatherInfo$DayForecast: java.lang.String mKey -wangdaye.com.geometricweather.R$styleable: int[] SwitchImageButton -wangdaye.com.geometricweather.R$attr: int goIcon -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCopyDrawable -androidx.constraintlayout.widget.R$styleable: int Layout_chainUseRtl -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -okhttp3.Challenge: java.lang.String scheme() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getLocationKey() -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitationProbability(java.lang.Float) -cyanogenmod.externalviews.ExternalViewProviderService: ExternalViewProviderService() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getAqiText() -james.adaptiveicon.R$dimen: int hint_pressed_alpha_material_dark -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleTitle -wangdaye.com.geometricweather.R$id: int time -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: int status -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -com.xw.repo.bubbleseekbar.R$id: int bottom_sides -wangdaye.com.geometricweather.R$id: int outgoing -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end -androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.lang.String accuracy -james.adaptiveicon.R$attr: int actionModePasteDrawable -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_Test -androidx.preference.R$id: int forever -androidx.core.widget.NestedScrollView: int getNestedScrollAxes() -cyanogenmod.providers.ThemesContract$ThemesColumns -okio.HashingSink: okio.HashingSink sha256(okio.Sink) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetLeft -androidx.preference.R$style: int PreferenceFragment_Material -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType UNKNOWN -com.google.android.material.R$color: int abc_primary_text_disable_only_material_dark -wangdaye.com.geometricweather.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moon -wangdaye.com.geometricweather.R$id: int widget_remote_progress -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayHorizontalProvider: WidgetClockDayHorizontalProvider() -androidx.appcompat.R$attr: int tintMode -io.reactivex.Observable: io.reactivex.Observable publish(io.reactivex.functions.Function) -androidx.lifecycle.SavedStateHandleController: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -androidx.drawerlayout.R$integer: R$integer() -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris -com.google.android.material.R$styleable: int Layout_layout_constraintTop_creator -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setAdaptiveWidthEnabled(boolean) -wangdaye.com.geometricweather.R$string: int widget_day_week -wangdaye.com.geometricweather.R$drawable: int clock_minute_light -james.adaptiveicon.R$drawable: int abc_list_selector_disabled_holo_dark -retrofit2.Converter$Factory: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_shapeAppearance -com.google.android.material.R$dimen: int mtrl_calendar_day_vertical_padding -wangdaye.com.geometricweather.R$attr: int limitBoundsTo -androidx.fragment.R$drawable: int notification_template_icon_low_bg -androidx.swiperefreshlayout.R$id: int action_text -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getRagweedLevel() -androidx.work.R$drawable -androidx.lifecycle.MutableLiveData -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontWeight -androidx.appcompat.view.menu.ListMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() -androidx.hilt.work.R$id: int normal -wangdaye.com.geometricweather.R$animator: int weather_sleet_3 -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_NULL_SHA -androidx.constraintlayout.widget.R$id: int spread -androidx.lifecycle.extensions.R$attr: int fontProviderPackage -androidx.preference.R$attr: int progressBarPadding -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableStart -androidx.constraintlayout.widget.R$id: int info -com.google.android.material.R$id: int withinBounds -android.didikee.donate.R$styleable: int AppCompatTheme_actionDropDownStyle -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_Switch -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object getKey(java.lang.Object) -androidx.appcompat.resources.R$id: int accessibility_custom_action_3 -com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_backgroundTintMode -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void clear() -androidx.constraintlayout.widget.R$attr: int buttonIconDimen -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver -retrofit2.http.Query: java.lang.String value() -retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object L$0 -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.disposables.Disposable upstream -androidx.viewpager2.R$attr: int fontProviderPackage -com.google.android.material.R$drawable: int notification_template_icon_low_bg -james.adaptiveicon.R$style: int Widget_AppCompat_Spinner -james.adaptiveicon.R$attr: int showDividers -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_74 -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableLeft -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: boolean isDisposed() -androidx.appcompat.R$styleable: int Toolbar_titleMarginEnd -wangdaye.com.geometricweather.db.entities.AlertEntity: int color -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit -com.xw.repo.bubbleseekbar.R$styleable: int View_paddingStart -wangdaye.com.geometricweather.R$attr: int contentPaddingRight -androidx.constraintlayout.widget.R$drawable: int abc_btn_check_material_anim -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_DialogWhenLarge -com.turingtechnologies.materialscrollbar.R$attr: int trackTint -com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info info -wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchAnchorSide -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: java.util.concurrent.Executor callbackExecutor -retrofit2.Utils$WildcardTypeImpl: java.lang.String toString() -io.reactivex.internal.subscriptions.SubscriptionArbiter: void request(long) -wangdaye.com.geometricweather.R$string: int widget_clock_day_vertical -cyanogenmod.weather.RequestInfo$Builder: android.location.Location mLocation -android.didikee.donate.R$color: int primary_text_disabled_material_light -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: void execute() -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_overflow_material -com.turingtechnologies.materialscrollbar.R$id: int parent_matrix -wangdaye.com.geometricweather.R$string: int content_des_add_current_location -cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,cyanogenmod.app.CustomTile,android.os.UserHandle,long) -cyanogenmod.themes.ThemeChangeRequest: cyanogenmod.themes.ThemeChangeRequest$RequestType mRequestType -cyanogenmod.weather.IWeatherServiceProviderChangeListener -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_width -com.google.android.material.R$drawable: int abc_ic_search_api_material -com.xw.repo.bubbleseekbar.R$styleable: int[] ButtonBarLayout -androidx.coordinatorlayout.R$string: R$string() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupMenu_Overflow -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: boolean isDisposed() -com.google.android.material.progressindicator.ProgressIndicator: int getTrackColor() -wangdaye.com.geometricweather.R$id: int material_clock_face -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_toLeftOf -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_SYNC -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_24 -androidx.constraintlayout.widget.R$attr: int colorAccent -com.google.android.material.circularreveal.CircularRevealLinearLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -com.google.android.material.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -androidx.constraintlayout.widget.R$id: int line1 -wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_backgroundColorStart -wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status ERROR -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMode -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_timeIcon -com.xw.repo.bubbleseekbar.R$id: int end -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_bg_color_selector -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView -androidx.constraintlayout.widget.R$string: int abc_activitychooserview_choose_application -okhttp3.logging.LoggingEventListener: void connectionReleased(okhttp3.Call,okhttp3.Connection) -androidx.hilt.lifecycle.R$layout: int notification_template_part_chronometer -com.google.android.material.R$style: int Platform_AppCompat -wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_EditTextPreference_Material -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okhttp3.logging.HttpLoggingInterceptor: java.nio.charset.Charset UTF8 -retrofit2.Platform: retrofit2.Platform PLATFORM -cyanogenmod.app.ICustomTileListener -androidx.fragment.R$styleable: int FontFamilyFont_android_fontWeight -com.jaredrummler.android.colorpicker.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_radius_on_dragging -androidx.constraintlayout.widget.R$styleable: int Layout_minWidth -androidx.constraintlayout.widget.Guideline: void setVisibility(int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionButtonStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_top -okio.Buffer: long indexOfElement(okio.ByteString,long) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long serialVersionUID -android.didikee.donate.R$styleable: int MenuItem_android_onClick -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_seek_by_section -com.google.android.material.bottomsheet.BottomSheetBehavior -com.google.android.material.R$styleable: int FloatingActionButton_android_enabled -com.google.android.material.R$attr: int enforceMaterialTheme -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.R$animator: int weather_fog_3 -com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_scrollable_min_width -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingLeft -okio.RealBufferedSource$1: okio.RealBufferedSource this$0 -okhttp3.OkHttpClient$Builder: java.net.ProxySelector proxySelector -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: boolean isDaylight() -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: long serialVersionUID -androidx.preference.R$style: int TextAppearance_AppCompat_Title -androidx.coordinatorlayout.R$drawable: int notification_bg -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -io.reactivex.Observable: java.lang.Object blockingLast(java.lang.Object) -androidx.appcompat.resources.R$id: int title -cyanogenmod.weather.WeatherInfo: WeatherInfo(cyanogenmod.weather.WeatherInfo$1) -wangdaye.com.geometricweather.R$id: int snap -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabText -okhttp3.RealCall: okhttp3.internal.http.RetryAndFollowUpInterceptor retryAndFollowUpInterceptor -wangdaye.com.geometricweather.R$string: int abc_toolbar_collapse_description -wangdaye.com.geometricweather.R$drawable: int notification_bg_low -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -androidx.vectordrawable.R$styleable: int[] GradientColorItem -com.jaredrummler.android.colorpicker.R$attr: int backgroundStacked -androidx.vectordrawable.animated.R$dimen: int notification_main_column_padding_top -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_font -androidx.preference.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -androidx.appcompat.R$styleable: int[] Toolbar -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -androidx.constraintlayout.widget.R$id: int decelerateAndComplete -wangdaye.com.geometricweather.R$attr: int hintTextAppearance -com.jaredrummler.android.colorpicker.R$attr: int cpv_sliderColor -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_popupTheme -androidx.lifecycle.LifecycleDispatcher: void init(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarWidgetTheme -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getPM25() -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonRiseDate(java.util.Date) -wangdaye.com.geometricweather.R$attr: int placeholderTextColor -android.didikee.donate.R$id: int action_divider -retrofit2.http.GET: java.lang.String value() -androidx.fragment.R$id: int accessibility_custom_action_31 -com.google.android.material.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: void setType(java.lang.String) -androidx.preference.R$attr: int listPreferredItemPaddingLeft -cyanogenmod.app.CustomTile$ExpandedItem$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setCoDesc(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterMaxLength -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lat -com.google.android.material.R$styleable: int MockView_mock_showLabel -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeight -james.adaptiveicon.R$dimen: int abc_list_item_padding_horizontal_material -androidx.constraintlayout.widget.R$attr: int customColorDrawableValue -android.didikee.donate.R$attr: int overlapAnchor -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void cancelAllBut(int) -io.reactivex.internal.subscriptions.SubscriptionArbiter: void produced(long) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BLUETOOTH_ACCEPT_ALL_FILES_VALIDATOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm25Desc() -cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_TARGETS -retrofit2.RequestFactory: okhttp3.MediaType contentType -wangdaye.com.geometricweather.R$layout: int select_dialog_singlechoice_material -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: boolean active -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_elevation -com.google.android.material.slider.RangeSlider: void setMinSeparationValue(float) -com.jaredrummler.android.colorpicker.R$attr: int listChoiceBackgroundIndicator -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_transitionPathRotate -android.didikee.donate.R$attr: int initialActivityCount -androidx.appcompat.R$color: int secondary_text_disabled_material_light -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -android.didikee.donate.R$drawable: int abc_ic_clear_material -retrofit2.converter.gson.GsonConverterFactory: retrofit2.converter.gson.GsonConverterFactory create() -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_thickness -wangdaye.com.geometricweather.R$layout: int abc_action_mode_close_item_material -wangdaye.com.geometricweather.R$attr: int seekBarPreferenceStyle -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean point -androidx.appcompat.widget.AbsActionBarView: int getAnimatedVisibility() -wangdaye.com.geometricweather.R$styleable: int SearchView_defaultQueryHint -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_maxWidth -wangdaye.com.geometricweather.R$attr: int endIconTintMode -io.reactivex.Observable: io.reactivex.observers.TestObserver test(boolean) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotationX -cyanogenmod.providers.CMSettings$Global: boolean isLegacySetting(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust -wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitleIconStyle -retrofit2.RequestFactory$Builder: void validatePathName(int,java.lang.String) -okhttp3.internal.http2.Http2Connection$Builder -com.turingtechnologies.materialscrollbar.R$style: int Widget_Compat_NotificationActionText -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearSelectedStyle -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderAuthority -okhttp3.internal.http.RealInterceptorChain: int writeTimeout -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int CANCELLED -com.turingtechnologies.materialscrollbar.R$attr: int closeIcon -android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyleSmall -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_alpha -com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Panel -wangdaye.com.geometricweather.R$string: int feedback_refresh_ui_after_refresh -androidx.viewpager.R$dimen: int compat_button_padding_vertical_material -androidx.viewpager.R$layout: int notification_template_part_chronometer -com.google.android.material.R$styleable: int ConstraintSet_flow_lastVerticalBias -androidx.appcompat.resources.R$dimen: int notification_large_icon_height -com.google.android.material.R$styleable: int ConstraintLayout_Layout_constraintSet -com.google.android.material.R$styleable: int View_android_focusable -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context) -com.google.android.material.R$layout: int notification_template_icon_group -androidx.preference.R$styleable: int AppCompatTextView_drawableEndCompat -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month_labeled -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setLevel(java.lang.String) -androidx.preference.R$id: int uniform -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow snow -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconTintList(android.content.res.ColorStateList) -okio.Options: void buildTrieRecursive(long,okio.Buffer,int,java.util.List,int,int,java.util.List) -androidx.dynamicanimation.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.R$styleable: int[] SlidingItemContainerLayout -com.turingtechnologies.materialscrollbar.R$dimen: int abc_alert_dialog_button_dimen -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_HOURLY_OVERVIEW -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstVerticalStyle -androidx.preference.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String getDefenseIcon() -androidx.hilt.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitationDuration(java.lang.Float) -com.jaredrummler.android.colorpicker.R$attr: int icon -com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_ListPopupWindow -com.google.android.material.R$styleable: int[] Badge -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean done -androidx.viewpager.widget.ViewPager: void setPageMarginDrawable(int) -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customStringValue -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_maxButtonHeight -cyanogenmod.hardware.ICMHardwareService: boolean set(int,boolean) -wangdaye.com.geometricweather.R$dimen: int compat_notification_large_icon_max_width -okio.Buffer$2: void close() -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String description -androidx.constraintlayout.widget.R$styleable: int MockView_mock_labelColor -cyanogenmod.app.ProfileGroup: void applyOverridesToNotification(android.app.Notification) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: KeyguardExternalViewProviderService$Provider$ProviderImpl$2(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -androidx.hilt.R$dimen: int compat_button_inset_vertical_material -okhttp3.logging.LoggingEventListener: void connectEnd(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol) -androidx.appcompat.R$dimen: int abc_dialog_fixed_height_major -james.adaptiveicon.R$styleable: int[] SwitchCompat -androidx.appcompat.R$attr: int gapBetweenBars -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_right -com.google.android.material.R$styleable: int MaterialCalendarItem_itemShapeAppearanceOverlay -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_3G -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedIndex -androidx.appcompat.R$attr: int actionBarWidgetTheme -cyanogenmod.externalviews.ExternalViewProperties: int getWidth() -com.xw.repo.bubbleseekbar.R$styleable: int View_paddingEnd -okhttp3.internal.cache.DiskLruCache$1: okhttp3.internal.cache.DiskLruCache this$0 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String getValue() -androidx.constraintlayout.widget.R$attr: int layout_constraintStart_toStartOf -cyanogenmod.providers.CMSettings$System: int getInt(android.content.ContentResolver,java.lang.String) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator T9_SEARCH_INPUT_LOCALE_VALIDATOR -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconTint -wangdaye.com.geometricweather.R$id: int text_input_end_icon -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableLeft -okhttp3.internal.ws.RealWebSocket: okhttp3.Request request() -com.xw.repo.bubbleseekbar.R$color: int primary_text_default_material_dark -com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_action_area_stub -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayGammaCalibration -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_weight -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Button -com.google.android.material.R$attr: int trackColorActive -cyanogenmod.themes.IThemeChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog -android.didikee.donate.R$dimen: int hint_pressed_alpha_material_light -androidx.appcompat.R$styleable: int AppCompatTextView_drawableEndCompat -com.google.android.material.R$attr: int tabPaddingStart -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_12 -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -okhttp3.internal.Util: okio.ByteString UTF_8_BOM -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context) -okio.GzipSource: void consumeHeader() -androidx.swiperefreshlayout.R$style -cyanogenmod.externalviews.KeyguardExternalViewProviderService: boolean DEBUG -androidx.fragment.R$id: int time -com.xw.repo.bubbleseekbar.R$id: int tag_unhandled_key_listeners -androidx.constraintlayout.widget.R$drawable: int abc_control_background_material -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerCloseError(java.lang.Throwable) -wangdaye.com.geometricweather.R$color: int abc_decor_view_status_guard_light -androidx.core.R$id: int notification_main_column_container -wangdaye.com.geometricweather.R$styleable: int ChipGroup_singleLine -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer LEFT_VALUE -androidx.constraintlayout.widget.R$styleable: int PopupWindow_android_popupBackground -androidx.constraintlayout.widget.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonStyleSmall -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_21 -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.disposables.Disposable upstream -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderFetchTimeout -james.adaptiveicon.R$styleable: int ActionBar_indeterminateProgressStyle -cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationDefault() -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getProfileHasAppProfiles -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isSingle -com.google.android.material.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -androidx.preference.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property SunRiseDate -io.reactivex.internal.queue.SpscArrayQueue: void soConsumerIndex(long) -androidx.coordinatorlayout.R$styleable: int[] GradientColorItem -androidx.appcompat.R$attr: int textAppearanceSmallPopupMenu -com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat -com.google.android.material.R$styleable: int ViewBackgroundHelper_android_background -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius -androidx.appcompat.R$styleable: int SearchView_queryHint -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlActivated -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver parent -androidx.appcompat.widget.ActionBarContainer -com.google.android.material.R$style: int ShapeAppearanceOverlay_TopRightDifferentCornerSize -retrofit2.OkHttpCall: okhttp3.Call rawCall -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getTotal() -wangdaye.com.geometricweather.R$styleable: int Chip_shapeAppearance -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getSunRiseDate() -androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_PROVIDER -wangdaye.com.geometricweather.R$attr: int textAppearanceButton -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ListPopupWindow -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeStyle -james.adaptiveicon.R$dimen: int abc_text_size_display_2_material -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textAppearance -okhttp3.internal.tls.OkHostnameVerifier: java.util.List allSubjectAltNames(java.security.cert.X509Certificate) -androidx.preference.R$style: int AlertDialog_AppCompat -com.bumptech.glide.integration.okhttp.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getHourlyForecast() -com.google.android.material.R$style: int TextAppearance_AppCompat_Body1 -okio.Segment: okio.Segment split(int) -okio.Buffer: long indexOfElement(okio.ByteString) -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$layout: int design_navigation_menu_item -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum() -wangdaye.com.geometricweather.R$string: int key_widget_text -com.google.android.material.R$id: int scrollIndicatorDown -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -cyanogenmod.hardware.CMHardwareManager: int FEATURE_KEY_DISABLE -wangdaye.com.geometricweather.R$color: int material_cursor_color -com.google.android.material.R$id: int submit_area -androidx.preference.R$styleable: int SearchView_queryHint -wangdaye.com.geometricweather.R$layout: int mtrl_layout_snackbar -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_backgroundSplit -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$Event upEvent(androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: java.lang.String getPubTime() -com.turingtechnologies.materialscrollbar.R$anim -androidx.constraintlayout.widget.R$attr: int buttonTintMode -androidx.constraintlayout.widget.R$attr: int customDimension -okhttp3.internal.http2.Http2Connection$2: void execute() -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dividerVertical -androidx.lifecycle.Lifecycle: void removeObserver(androidx.lifecycle.LifecycleObserver) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setWeekText(java.lang.String) -com.google.android.material.R$attr: int customColorDrawableValue -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -com.google.android.material.R$color: int mtrl_btn_stroke_color_selector -androidx.swiperefreshlayout.R$integer -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_fontVariationSettings -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_searchHintIcon -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_summaryOff -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial -androidx.appcompat.resources.R$styleable: int[] FontFamilyFont -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void setResource(io.reactivex.disposables.Disposable) -androidx.appcompat.R$styleable: int[] ActivityChooserView -com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_Dialog -androidx.appcompat.R$styleable: int MenuItem_showAsAction -cyanogenmod.app.CustomTile$Builder: java.lang.String mContentDescription -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode[] values() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_3DES_EDE_CBC_SHA -okhttp3.CipherSuite: java.lang.String javaName -okhttp3.logging.LoggingEventListener: LoggingEventListener(okhttp3.logging.HttpLoggingInterceptor$Logger) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarSize -androidx.constraintlayout.widget.R$id: int standard -wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_layout -wangdaye.com.geometricweather.R$color: int material_grey_50 -androidx.activity.R$dimen: int notification_big_circle_margin -androidx.appcompat.R$attr: int singleChoiceItemLayout -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub -com.google.android.material.progressindicator.ProgressIndicator: int getGrowMode() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_bias -com.google.android.material.R$style: int Base_Widget_MaterialComponents_Slider -com.turingtechnologies.materialscrollbar.R$attr: int progressBarPadding -androidx.constraintlayout.widget.R$attr: int framePosition -cyanogenmod.profiles.BrightnessSettings$1: cyanogenmod.profiles.BrightnessSettings[] newArray(int) -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult -androidx.activity.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout -james.adaptiveicon.R$styleable: int Toolbar_titleMargin -cyanogenmod.externalviews.ExternalView$2: android.graphics.Rect val$clipRect -com.google.android.material.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Wind getWind() -android.didikee.donate.R$attr: int listPreferredItemHeightSmall -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetTop -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_pixel -androidx.appcompat.widget.AbsActionBarView: void setContentHeight(int) -cyanogenmod.app.CustomTile$Builder -com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_RadioButton -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetEnd -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long readKey(android.database.Cursor,int) -androidx.appcompat.R$attr: int goIcon -android.didikee.donate.R$attr: int searchHintIcon -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -james.adaptiveicon.R$styleable: int ActionBar_homeLayout -cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder access$202(cyanogenmod.externalviews.KeyguardExternalView,android.os.IBinder) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_4 -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerNext(int,java.lang.Object) -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable -cyanogenmod.hardware.ICMHardwareService: boolean writePersistentBytes(java.lang.String,byte[]) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Time -androidx.work.NetworkType: androidx.work.NetworkType NOT_ROAMING -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.Property getPkProperty() -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.Observer downstream -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionModeOverlay -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String STATUSBAR_URI -cyanogenmod.app.CMStatusBarManager: void publishTile(int,cyanogenmod.app.CustomTile) -okhttp3.OkHttpClient$1: void put(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) -wangdaye.com.geometricweather.R$string: int material_timepicker_hour -androidx.work.impl.utils.futures.AbstractFuture: androidx.work.impl.utils.futures.AbstractFuture$Waiter waiters -androidx.preference.R$styleable: int ColorStateListItem_android_alpha -com.jaredrummler.android.colorpicker.R$attr: int closeItemLayout -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Light -cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(android.os.Parcel) -androidx.constraintlayout.widget.R$color: int primary_text_disabled_material_dark -cyanogenmod.app.Profile: java.lang.String getName() -androidx.viewpager2.R$attr: int fontStyle -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$100() -wangdaye.com.geometricweather.R$color: int mtrl_textinput_default_box_stroke_color -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onWindowAttributesChanged(android.view.WindowManager$LayoutParams) -androidx.preference.R$style: int Base_Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWindChillTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$drawable: int notif_temp_135 -cyanogenmod.externalviews.IExternalViewProvider -androidx.vectordrawable.animated.R$layout: int notification_template_part_time -androidx.preference.R$styleable: int PreferenceTheme_editTextPreferenceStyle -androidx.preference.R$attr: int arrowHeadLength -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: boolean isCanceled() -androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$color: int notification_icon_bg_color -androidx.lifecycle.LifecycleRegistry: java.util.ArrayList mParentStates -androidx.preference.R$attr: int defaultQueryHint -androidx.lifecycle.extensions.R$id: int visible_removing_fragment_view_tag -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_fontFamily -androidx.work.impl.workers.ConstraintTrackingWorker -wangdaye.com.geometricweather.R$attr: int textAppearanceListItemSmall -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_6 -okhttp3.internal.http.RealInterceptorChain: RealInterceptorChain(java.util.List,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http.HttpCodec,okhttp3.internal.connection.RealConnection,int,okhttp3.Request,okhttp3.Call,okhttp3.EventListener,int,int,int) -androidx.preference.R$styleable: int DialogPreference_dialogTitle -com.jaredrummler.android.colorpicker.R$dimen: int compat_button_inset_vertical_material -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: androidx.lifecycle.LifecycleRegistry mRegistry -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf -org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory,int) -com.turingtechnologies.materialscrollbar.R$attr: int showMotionSpec -androidx.recyclerview.R$dimen: int fastscroll_default_thickness -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.google.android.material.button.MaterialButton$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getMinutelyEntityList() -androidx.lifecycle.ViewModelStoreOwner: androidx.lifecycle.ViewModelStore getViewModelStore() -androidx.dynamicanimation.R$drawable: int notification_template_icon_low_bg -com.google.android.material.R$attr: int actionModeShareDrawable -androidx.constraintlayout.widget.R$styleable: int[] ConstraintLayout_Layout -android.didikee.donate.R$styleable: int AppCompatTheme_buttonStyle -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_windowAnimationStyle -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_switchTextOff -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: IExternalViewProviderFactory$Stub$Proxy(android.os.IBinder) -com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyleSmall -okhttp3.Request: java.util.Map tags -cyanogenmod.providers.CMSettings$3: CMSettings$3() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: int sourceMode -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onError(java.lang.Throwable) -com.bumptech.glide.R$color: int secondary_text_default_material_light -okio.BufferedSource: java.lang.String readUtf8LineStrict(long) -com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Icon -retrofit2.Response: int code() -cyanogenmod.hardware.CMHardwareManager: int[] getDisplayColorCalibration() -androidx.appcompat.widget.Toolbar: int getTitleMarginStart() -cyanogenmod.app.Profile$1: cyanogenmod.app.Profile createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: MinutelyEntityDao$Properties() -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_end_padding_icon -okhttp3.internal.cache.DiskLruCache$Editor: boolean done -wangdaye.com.geometricweather.R$string: int aqi_6 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorPrimaryDark -cyanogenmod.weather.RequestInfo: int getRequestType() -com.jaredrummler.android.colorpicker.R$style: int Preference_SeekBarPreference_Material -com.google.android.material.R$attr: int dividerPadding -cyanogenmod.themes.IThemeService$Stub$Proxy: void rebuildResourceCache() -wangdaye.com.geometricweather.R$attr: int actionBarSize -com.google.android.material.bottomnavigation.BottomNavigationMenuView: com.google.android.material.bottomnavigation.BottomNavigationItemView getNewItem() -androidx.dynamicanimation.R$styleable: int GradientColor_android_startY -okio.Okio: okio.BufferedSource buffer(okio.Source) -com.google.android.material.R$attr: int backgroundStacked -com.google.android.material.R$attr: int helperText -com.turingtechnologies.materialscrollbar.R$layout: int abc_dialog_title_material -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void dispose() -android.didikee.donate.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackground(android.graphics.drawable.Drawable) -com.google.android.material.R$attr: int layout_goneMarginTop -okhttp3.internal.cache.CacheInterceptor$1: okio.Timeout timeout() -okio.RealBufferedSink: okio.BufferedSink writeIntLe(int) -com.turingtechnologies.materialscrollbar.R$drawable: int notification_tile_bg -androidx.core.app.RemoteActionCompat -com.google.android.material.R$style: int Base_V7_Widget_AppCompat_EditText -androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindDirection(java.lang.String) -com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_fast_out_slow_in -com.google.android.material.datepicker.SingleDateSelector: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$id: int search_edit_frame -com.xw.repo.bubbleseekbar.R$id: int actions -android.didikee.donate.R$dimen: int abc_action_bar_stacked_max_height -retrofit2.Platform$Android$MainThreadExecutor: Platform$Android$MainThreadExecutor() -com.bumptech.glide.load.engine.GlideException: java.lang.String detailMessage -wangdaye.com.geometricweather.R$color: int colorRoot -okhttp3.OkHttpClient: boolean followRedirects() -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void runFinally() -androidx.hilt.lifecycle.R$color: int secondary_text_default_material_light -okhttp3.Cookie: java.util.regex.Pattern TIME_PATTERN -okhttp3.internal.http2.Http2Connection$PingRunnable: Http2Connection$PingRunnable(okhttp3.internal.http2.Http2Connection,boolean,int,int) -com.google.android.material.R$dimen: int abc_button_padding_vertical_material -cyanogenmod.app.ProfileManager: java.lang.String ACTION_PROFILE_PICKER -okhttp3.internal.cache.DiskLruCache: java.io.File getDirectory() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Medium_Inverse -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_submit -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_text -retrofit2.Platform$Android: java.lang.Object invokeDefaultMethod(java.lang.reflect.Method,java.lang.Class,java.lang.Object,java.lang.Object[]) -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog_Alert -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_always_show_bubble_delay -com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabBarStyle -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler -wangdaye.com.geometricweather.R$id: int material_timepicker_container -com.jaredrummler.android.colorpicker.R$layout: int abc_action_menu_layout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: java.util.List getBrands() -androidx.core.widget.NestedScrollView: void setOnScrollChangeListener(androidx.core.widget.NestedScrollView$OnScrollChangeListener) -cyanogenmod.app.ICustomTileListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.jaredrummler.android.colorpicker.R$dimen: int compat_notification_large_icon_max_width -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_FloatingActionButton -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColorLink -android.didikee.donate.R$drawable -okhttp3.OkHttpClient$Builder: void setInternalCache(okhttp3.internal.cache.InternalCache) -androidx.appcompat.R$style: int Theme_AppCompat_DayNight -james.adaptiveicon.R$anim: int abc_slide_in_top -retrofit2.RequestBuilder: java.util.regex.Pattern PATH_TRAVERSAL -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotationY -com.google.android.material.R$dimen: int mtrl_progress_circular_radius -androidx.lifecycle.ClassesInfoCache$CallbackInfo: ClassesInfoCache$CallbackInfo(java.util.Map) -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_MIDDLE -androidx.hilt.R$id: int accessibility_custom_action_11 -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro[] astros -okhttp3.internal.http2.Hpack: okio.ByteString checkLowercase(okio.ByteString) -wangdaye.com.geometricweather.R$drawable: int abc_btn_check_to_on_mtrl_000 -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void drain() -cyanogenmod.hardware.DisplayMode: int id -okhttp3.OkHttpClient$Builder: okhttp3.CertificatePinner certificatePinner -com.turingtechnologies.materialscrollbar.R$attr: int chipMinHeight -com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableCompat -cyanogenmod.app.CMContextConstants: java.lang.String CM_HARDWARE_SERVICE -androidx.core.R$id: int title -com.jaredrummler.android.colorpicker.R$styleable: int Preference_order -wangdaye.com.geometricweather.R$attr: int fabCradleMargin -com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day -androidx.appcompat.resources.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabView -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeDegreeDayTemperature() -okhttp3.RealCall$AsyncCall: java.lang.String host() -androidx.preference.R$style: int TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorAccent -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getWindChillTemperature() -androidx.constraintlayout.motion.widget.MotionLayout: java.util.ArrayList getDefinedTransitions() -okhttp3.RequestBody$2: long contentLength() -androidx.coordinatorlayout.R$attr: int alpha -io.reactivex.Observable: io.reactivex.Completable ignoreElements() -cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String itemSummary -cyanogenmod.weather.WeatherLocation: boolean equals(java.lang.Object) -androidx.preference.R$attr: int windowActionBar -okhttp3.internal.io.FileSystem$1: okio.Sink sink(java.io.File) -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -com.turingtechnologies.materialscrollbar.R$id: int transition_transform -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -androidx.preference.R$id: int listMode -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind Wind -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean names -com.google.android.material.R$id: int material_textinput_timepicker -android.didikee.donate.R$styleable: int MenuView_android_headerBackground -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_hideOnContentScroll -com.google.android.material.R$layout: int material_radial_view_group -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startY -okhttp3.internal.http1.Http1Codec: int HEADER_LIMIT -cyanogenmod.providers.CMSettings$System: java.lang.String VOLBTN_MUSIC_CONTROLS -android.didikee.donate.R$color: int abc_secondary_text_material_light -com.google.android.material.R$id: int snackbar_text -androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: void close() -retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object invokeSuspend(java.lang.Object) -androidx.constraintlayout.widget.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_only_start_selected -com.xw.repo.bubbleseekbar.R$string: int abc_prepend_shortcut_label -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: okhttp3.internal.http1.Http1Codec this$0 -wangdaye.com.geometricweather.R$styleable: int AlertDialog_buttonIconDimen -com.google.android.material.R$attr: int collapsedTitleGravity -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: long serialVersionUID -james.adaptiveicon.R$attr: int windowActionBar -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabBarStyle -androidx.loader.R$styleable: int GradientColor_android_centerColor -com.google.android.material.R$attr: int passwordToggleTint -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.IndeterminateDrawable getIndeterminateDrawable() -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float snow -okio.Buffer: okio.Buffer writeTo(java.io.OutputStream) -androidx.swiperefreshlayout.R$attr: int alpha -james.adaptiveicon.R$attr: int titleTextColor -retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object result -cyanogenmod.providers.CMSettings$Secure: long getLong(android.content.ContentResolver,java.lang.String,long) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_padding_material -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldDescription -androidx.preference.R$style: int Base_V28_Theme_AppCompat -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property No2 -androidx.lifecycle.ReportFragment: void onDestroy() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -okhttp3.internal.cache.DiskLruCache$Entry: DiskLruCache$Entry(okhttp3.internal.cache.DiskLruCache,java.lang.String) -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver -com.google.android.material.R$color: int androidx_core_secondary_text_default_material_light -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getPressureVoice(android.content.Context,float) -wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat -androidx.appcompat.R$style -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -wangdaye.com.geometricweather.R$id: int dialog_background_location_setButton -cyanogenmod.providers.CMSettings$Global: int getIntForUser(android.content.ContentResolver,java.lang.String,int) -cyanogenmod.app.CMContextConstants: java.lang.String CM_LIVE_LOCK_SCREEN_SERVICE -okhttp3.internal.cache.DiskLruCache$Entry -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SeekBar -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sAlwaysTrueValidator -wangdaye.com.geometricweather.R$styleable: int[] AppCompatImageView -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property MinuteInterval -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: long serialVersionUID -com.google.android.material.R$dimen: int mtrl_low_ripple_pressed_alpha -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_width_minor -james.adaptiveicon.R$drawable: int abc_item_background_holo_dark -androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context) -com.google.android.material.R$dimen: int mtrl_btn_corner_radius -androidx.constraintlayout.widget.R$attr: int motion_postLayoutCollision -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -cyanogenmod.themes.ThemeManager: void onClientPaused(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -androidx.appcompat.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -com.google.android.material.R$styleable: int AppCompatTheme_panelMenuListTheme -androidx.preference.R$styleable: int[] CompoundButton -android.didikee.donate.R$styleable: int MenuItem_android_title -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeColor -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionMode -okhttp3.internal.NamedRunnable: NamedRunnable(java.lang.String,java.lang.Object[]) -okhttp3.CertificatePinner$Pin: okio.ByteString hash -com.google.android.material.R$styleable: int ActionBar_divider -androidx.appcompat.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -okhttp3.HttpUrl: java.lang.String redact() -com.google.android.material.R$styleable: int[] AppCompatTextView -androidx.recyclerview.widget.RecyclerView: void setEdgeEffectFactory(androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed Speed -com.google.android.material.R$id: int listMode -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onComplete() -com.google.android.material.button.MaterialButton: int getStrokeWidth() -okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method warnIfOpenMethod -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginRight -io.reactivex.internal.disposables.CancellableDisposable: void dispose() -com.jaredrummler.android.colorpicker.R$attr: int contentDescription -wangdaye.com.geometricweather.R$string: int default_location -com.google.android.material.R$styleable: int MockView_mock_diagonalsColor -com.xw.repo.bubbleseekbar.R$attr: int fontProviderFetchStrategy -androidx.appcompat.widget.SwitchCompat: void setSwitchMinWidth(int) -wangdaye.com.geometricweather.R$attr: int iconPadding -okhttp3.internal.Util: void closeQuietly(java.net.Socket) -androidx.viewpager2.R$drawable: R$drawable() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_isSunlightEnhancementSelfManaged -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver) -okio.Buffer: int read(java.nio.ByteBuffer) -cyanogenmod.app.ICMTelephonyManager: java.util.List getSubInformation() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String getType() -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float pm10 -io.reactivex.internal.util.NotificationLite -com.google.android.material.R$attr: int hintAnimationEnabled -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_textAllCaps -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_spinBars -android.didikee.donate.R$attr: int actionModePasteDrawable -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_body_1_material -androidx.preference.R$drawable: int abc_ratingbar_material -androidx.appcompat.R$dimen: int abc_seekbar_track_background_height_material -androidx.preference.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -androidx.appcompat.resources.R$dimen: int notification_right_icon_size -com.google.android.material.R$id: int honorRequest -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportImageTintList(android.content.res.ColorStateList) -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableEnd -androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$id: int scrollView -androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_android_color -androidx.appcompat.R$styleable: int MenuItem_contentDescription -cyanogenmod.weather.WeatherInfo$DayForecast: android.os.Parcelable$Creator CREATOR -androidx.lifecycle.extensions.R$id: int action_image -com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context) -com.google.android.material.R$attr: int layout_constrainedWidth -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupMenu -com.google.android.material.R$id: int content -androidx.fragment.R$dimen: int notification_right_icon_size -androidx.recyclerview.R$styleable: int FontFamily_fontProviderQuery -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_entries -com.google.android.material.R$id: int design_bottom_sheet -okhttp3.internal.http1.Http1Codec$FixedLengthSource -androidx.activity.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.R$attr: int showMotionSpec -okhttp3.internal.connection.ConnectionSpecSelector: okhttp3.ConnectionSpec configureSecureSocket(javax.net.ssl.SSLSocket) -androidx.preference.R$dimen: int abc_text_size_small_material -androidx.constraintlayout.widget.R$id: int dialog_button -retrofit2.OptionalConverterFactory: retrofit2.Converter$Factory INSTANCE -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date from -wangdaye.com.geometricweather.R$attr: int daySelectedStyle -okhttp3.internal.http2.Http2Reader: void readPriority(okhttp3.internal.http2.Http2Reader$Handler,int) -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$layout: int widget_week_3 -com.google.android.material.R$attr: int contentInsetStartWithNavigation -com.google.android.material.R$id: int accessibility_custom_action_5 -com.google.android.material.R$string: int abc_menu_shift_shortcut_label -androidx.appcompat.R$drawable: int btn_radio_off_to_on_mtrl_animation -android.didikee.donate.R$styleable: int AppCompatImageView_android_src -james.adaptiveicon.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -android.didikee.donate.R$styleable: int AppCompatTheme_colorControlHighlight -androidx.legacy.coreutils.R$attr: int fontProviderCerts -androidx.preference.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -androidx.appcompat.R$styleable: int AppCompatTheme_actionMenuTextAppearance -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_toTopOf -james.adaptiveicon.R$styleable: int SwitchCompat_thumbTintMode -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeMinTextSize -wangdaye.com.geometricweather.R$style: int Widget_Design_TabLayout -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_contrast -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onComplete() -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getOpPkg() -androidx.lifecycle.LifecycleObserver -androidx.preference.R$styleable: int[] SwitchPreference -com.github.rahatarmanahmed.cpv.R$dimen: int cpv_default_thickness -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: double Value -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -androidx.appcompat.widget.LinearLayoutCompat: int getBaselineAlignedChildIndex() -com.turingtechnologies.materialscrollbar.R$style: int CardView_Dark -androidx.core.R$id: int accessibility_custom_action_11 -com.bumptech.glide.R$styleable: int[] CoordinatorLayout -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_Solid -com.google.android.material.R$dimen: int mtrl_calendar_day_height -androidx.lifecycle.ProcessLifecycleOwner: void activityStarted() -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Light -io.reactivex.Observable: io.reactivex.Observable error(java.lang.Throwable) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String moldDescription -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: CNWeatherResult$Pm25() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_DrawerArrowToggle -com.google.android.material.R$layout: int abc_action_menu_layout -retrofit2.HttpException: HttpException(retrofit2.Response) -io.reactivex.Observable: io.reactivex.Observable distinct(io.reactivex.functions.Function) -james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogCenterButtons -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd -androidx.preference.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -okio.ByteString: byte[] data -androidx.work.R$attr: int fontProviderFetchTimeout -com.jaredrummler.android.colorpicker.R$attr: int orderingFromXml -okio.ByteString: okio.ByteString sha512() -android.didikee.donate.R$styleable: int AppCompatTheme_panelBackground -com.google.android.material.slider.BaseSlider: void setThumbRadius(int) -com.google.android.material.R$attr: int panelBackground -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: void run() -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: boolean isValid() -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -com.xw.repo.bubbleseekbar.R$attr: int icon -wangdaye.com.geometricweather.R$id: int filled -wangdaye.com.geometricweather.R$drawable: int abc_list_longpressed_holo -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitationDuration() -retrofit2.http.PATCH -com.google.android.material.R$attr: int chipSpacing -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.appcompat.widget.AppCompatTextView: int getAutoSizeTextType() -wangdaye.com.geometricweather.R$string: int content_desc_powered_by -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeShareDrawable -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean mShouldShow -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX() -io.reactivex.internal.util.NotificationLite: java.lang.Object next(java.lang.Object) -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -com.google.android.material.R$string: int mtrl_picker_a11y_next_month -androidx.constraintlayout.widget.R$styleable: int Constraint_transitionPathRotate -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void subscribeNext() -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -okhttp3.MediaType: okhttp3.MediaType get(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int measureWithLargestChild -wangdaye.com.geometricweather.R$drawable: int notif_temp_47 -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_circularRadius -com.google.android.material.R$styleable: int View_android_theme -com.google.android.material.R$attr: int behavior_hideable -com.jaredrummler.android.colorpicker.R$style: int PreferenceFragmentList -com.jaredrummler.android.colorpicker.R$attr: int track -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_backgroundStacked -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_drawableSize -io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function) -com.jaredrummler.android.colorpicker.R$layout: int abc_screen_content_include -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback -okhttp3.internal.http2.Http2Stream: java.util.Deque headersQueue -okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part create(okhttp3.Headers,okhttp3.RequestBody) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean delayError -com.xw.repo.bubbleseekbar.R$id: int listMode -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixTextColor -androidx.appcompat.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView -com.jaredrummler.android.colorpicker.R$id: int scrollIndicatorUp -james.adaptiveicon.R$color: int dim_foreground_disabled_material_dark -wangdaye.com.geometricweather.R$id: int search_button -com.google.android.material.R$styleable: int KeyCycle_waveOffset -androidx.appcompat.R$attr: int fontProviderAuthority -okhttp3.internal.http.HttpDate: HttpDate() -androidx.preference.R$styleable: int AppCompatTheme_actionMenuTextAppearance -com.google.android.material.R$id: int mtrl_picker_fullscreen -androidx.coordinatorlayout.R$id: int right_icon -okhttp3.MediaType: java.lang.String mediaType -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade -com.google.android.material.R$id: int SHOW_PATH -wangdaye.com.geometricweather.R$id: int action_mode_bar_stub -androidx.viewpager2.R$id: int info -com.jaredrummler.android.colorpicker.R$id: int radio -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: org.reactivestreams.Subscription upstream -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: java.util.List value -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_buttonGravity -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -cyanogenmod.themes.ThemeManager$ThemeChangeListener -io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_collapsible -com.google.android.material.R$dimen: int material_filled_edittext_font_1_3_padding_bottom -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_FALLBACK_SCSV -androidx.loader.R$id: int icon -com.google.android.material.R$style: int Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -cyanogenmod.app.ProfileManager: void updateProfile(cyanogenmod.app.Profile) -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_logoDescription -android.didikee.donate.R$styleable: int Spinner_android_popupBackground -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property CityId -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_anchor -wangdaye.com.geometricweather.R$styleable: int Slider_labelStyle -james.adaptiveicon.R$styleable: int MenuItem_android_checkable -wangdaye.com.geometricweather.R$layout: int widget_trend_daily -com.turingtechnologies.materialscrollbar.R$style: int Widget_Compat_NotificationActionContainer -androidx.recyclerview.R$id: int accessibility_custom_action_28 -com.google.android.material.R$styleable: int[] KeyTrigger -wangdaye.com.geometricweather.R$styleable: int TextAppearance_textLocale -androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context) -okhttp3.internal.ws.WebSocketProtocol: java.lang.String ACCEPT_MAGIC -androidx.recyclerview.R$styleable: int RecyclerView_android_clipToPadding -androidx.fragment.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_background -androidx.fragment.R$anim -okhttp3.internal.ws.WebSocketProtocol: WebSocketProtocol() -androidx.constraintlayout.widget.R$id: int action_image -wangdaye.com.geometricweather.R$id: int progress -com.google.android.material.R$attr: int windowFixedHeightMajor -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String mName -okio.SegmentedByteString: okio.ByteString md5() -cyanogenmod.profiles.StreamSettings: void writeToParcel(android.os.Parcel,int) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: boolean val$visible -com.google.android.material.appbar.CollapsingToolbarLayout -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderPackage -okhttp3.internal.ws.RealWebSocket: void connect(okhttp3.OkHttpClient) -com.google.android.material.R$styleable: int TextInputLayout_startIconContentDescription -cyanogenmod.profiles.AirplaneModeSettings: void setOverride(boolean) -wangdaye.com.geometricweather.R$drawable: int notif_temp_18 -androidx.preference.R$string: int abc_action_bar_home_description -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onNext(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextStyle -wangdaye.com.geometricweather.R$attr: int listPreferredItemHeightSmall -androidx.constraintlayout.widget.R$id: int percent -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_0 -android.support.v4.os.ResultReceiver$MyRunnable: android.support.v4.os.ResultReceiver this$0 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorButtonNormal -wangdaye.com.geometricweather.R$drawable: int ic_circle_medium -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_shapeAppearance -io.reactivex.internal.disposables.EmptyDisposable: void dispose() -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer getCloudCover() -com.google.android.material.R$styleable: int Constraint_android_rotationX -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign -androidx.constraintlayout.motion.widget.MotionLayout: float getVelocity() -okhttp3.Challenge: java.util.Map authParams -com.turingtechnologies.materialscrollbar.R$id: int search_plate -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode[] values() -androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_text_padding_left -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String findMostSpecific(java.lang.String) -wangdaye.com.geometricweather.R$id: int title_template -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity humidity -androidx.constraintlayout.widget.R$color: int abc_hint_foreground_material_dark -wangdaye.com.geometricweather.R$string: int mini_temp -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -androidx.constraintlayout.widget.R$id: int src_in -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_weight -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_clear_material -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEVICE_HOSTNAME -androidx.appcompat.R$styleable: int MenuItem_numericModifiers -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_20 -okio.ByteString: okio.ByteString sha256() -com.xw.repo.bubbleseekbar.R$attr: int switchMinWidth -androidx.viewpager2.R$id: int action_image -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_orientation -androidx.appcompat.R$attr: int selectableItemBackground -james.adaptiveicon.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_fabSize -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar_Indicator -android.didikee.donate.R$style: int Theme_AppCompat_Light_DialogWhenLarge -com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Summary -okhttp3.OkHttpClient: okhttp3.Authenticator proxyAuthenticator -com.xw.repo.bubbleseekbar.R$attr: int spinBars -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type HORIZONTAL_DIMENSION -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation LEFT -androidx.coordinatorlayout.R$id: int accessibility_custom_action_15 -androidx.constraintlayout.widget.R$color: int abc_search_url_text_pressed -androidx.appcompat.app.AppCompatDelegateImpl$PanelFeatureState$SavedState: android.os.Parcelable$Creator CREATOR -com.google.android.material.slider.RangeSlider: void setValues(java.lang.Float[]) -cyanogenmod.power.PerformanceManager: boolean checkService() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_chainUseRtl -androidx.hilt.R$styleable: int FontFamily_fontProviderAuthority -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int OTHER_STATE_HAS_VALUE -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date sunsetTime -androidx.preference.R$style: int Base_Widget_AppCompat_ListView_DropDown -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric -androidx.preference.R$styleable: int PreferenceTheme_preferenceStyle -james.adaptiveicon.R$drawable: int notification_bg_low_pressed -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void dispose() -androidx.constraintlayout.widget.R$id: int textSpacerNoTitle -com.bumptech.glide.R$dimen: int notification_top_pad_large_text -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: long idx -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: java.lang.Integer direction -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeWidthFocused -okhttp3.internal.ws.RealWebSocket: long queueSize() -androidx.fragment.R$id: int chronometer -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabView -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_normal -okhttp3.internal.http1.Http1Codec$AbstractSource: okio.Timeout timeout() -wangdaye.com.geometricweather.R$id: int notification_big_temp_1 -com.google.android.material.R$attr: int thumbElevation -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_width_major -wangdaye.com.geometricweather.R$attr: int checked_background_color -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: void setLineColor(int) -androidx.preference.R$styleable: int RecyclerView_layoutManager -com.google.gson.stream.JsonReader: boolean lenient -androidx.constraintlayout.widget.R$attr: int triggerId -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customFloatValue -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_navigationMode -com.google.android.material.R$color: int highlighted_text_material_dark -com.jaredrummler.android.colorpicker.R$style: int Preference -com.turingtechnologies.materialscrollbar.R$id: int textSpacerNoTitle -com.google.android.material.textfield.TextInputLayout: void setStartIconOnClickListener(android.view.View$OnClickListener) -androidx.constraintlayout.widget.R$attr: int layout_constraintTop_toBottomOf -cyanogenmod.providers.CMSettings$DelimitedListValidator -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_material_light -androidx.loader.content.Loader: void registerOnLoadCanceledListener(androidx.loader.content.Loader$OnLoadCanceledListener) -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: long serialVersionUID -com.google.android.material.R$attr: int alertDialogButtonGroupStyle -james.adaptiveicon.R$dimen: int tooltip_y_offset_touch -android.didikee.donate.R$style: int TextAppearance_AppCompat_Display2 -okhttp3.Cookie: java.lang.String toString(boolean) -androidx.appcompat.widget.AppCompatImageButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -okio.ByteString: java.lang.String toString() -com.google.android.material.R$drawable: int mtrl_ic_cancel -androidx.constraintlayout.widget.R$id: int progress_circular -io.reactivex.internal.util.NotificationLite: java.lang.Object complete() -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setZh_TW(java.lang.String) -androidx.preference.R$drawable: int abc_ic_clear_material -androidx.lifecycle.extensions.R$attr: int fontProviderFetchTimeout -io.reactivex.exceptions.CompositeException: java.lang.Throwable cause -androidx.lifecycle.MediatorLiveData$Source: void plug() -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstHorizontalStyle -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatPressedTranslationZResource(int) -androidx.constraintlayout.widget.R$attr: int allowStacking -androidx.constraintlayout.widget.R$styleable: int KeyPosition_curveFit -okio.BufferedSource: okio.ByteString readByteString(long) -okhttp3.OkHttpClient: okhttp3.Dispatcher dispatcher -okhttp3.Cache$CacheRequestImpl: boolean done -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: double lon -okhttp3.internal.proxy.NullProxySelector: java.util.List select(java.net.URI) -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_weightSum -com.google.gson.stream.JsonScope: int NONEMPTY_OBJECT -androidx.preference.R$dimen: int abc_action_bar_default_padding_start_material -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean) -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: void endOfInput(java.io.IOException) -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents -androidx.lifecycle.MediatorLiveData$Source: void onChanged(java.lang.Object) -cyanogenmod.providers.DataUsageContract: java.lang.String ACTIVE -com.google.android.material.R$styleable: int Toolbar_navigationContentDescription -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView_Menu -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginStart -wangdaye.com.geometricweather.R$color: int bright_foreground_disabled_material_light -com.google.android.material.R$attr: int liftOnScrollTargetViewId -com.google.android.material.slider.BaseSlider: void removeOnSliderTouchListener(com.google.android.material.slider.BaseOnSliderTouchListener) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String windIcon -com.google.android.material.R$styleable: int ActionBar_elevation -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -okhttp3.CacheControl$Builder: boolean immutable -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_corner -androidx.preference.R$styleable: int AppCompatTheme_dialogPreferredPadding -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: void setValue(java.lang.String) -androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context) -androidx.constraintlayout.widget.R$attr: int listPreferredItemHeightSmall -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onRequested() -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable -android.didikee.donate.R$attr: int windowActionBarOverlay -androidx.appcompat.R$drawable: int abc_scrubber_track_mtrl_alpha -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Title -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_dividerPadding -com.google.android.material.R$id: int scale -com.google.android.material.textfield.TextInputLayout: void setStartIconVisible(boolean) -androidx.appcompat.R$styleable: int AppCompatTheme_tooltipForegroundColor -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setLockWallpaper(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ImageButton -androidx.lifecycle.AndroidViewModel: android.app.Application getApplication() -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: ObservableCombineLatest$LatestCoordinator(io.reactivex.Observer,io.reactivex.functions.Function,int,int,boolean) -wangdaye.com.geometricweather.R$id: int textStart -com.jaredrummler.android.colorpicker.R$styleable: int View_theme -com.google.android.material.R$attr: int endIconTintMode -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_CompactMenu -com.turingtechnologies.materialscrollbar.R$color: int foreground_material_dark -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_SEED_CBC_SHA -okio.ByteString: int size() -com.xw.repo.bubbleseekbar.R$styleable: int GradientColorItem_android_offset -androidx.appcompat.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -android.didikee.donate.R$attr: int submitBackground -com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.Throwable) -com.google.android.material.R$styleable: int SwitchCompat_showText -com.xw.repo.bubbleseekbar.R$attr: int displayOptions -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_precise_anchor_threshold -james.adaptiveicon.R$attr: int paddingBottomNoButtons -com.google.android.material.R$styleable: int AppCompatTextView_drawableTintMode -androidx.constraintlayout.utils.widget.ImageFilterView: float getRound() -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_enterFadeDuration -retrofit2.ParameterHandler$FieldMap: void apply(retrofit2.RequestBuilder,java.util.Map) -com.google.android.material.R$dimen: int design_navigation_padding_bottom -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: ObservableUnsubscribeOn$UnsubscribeObserver(io.reactivex.Observer,io.reactivex.Scheduler) -okhttp3.HttpUrl: java.lang.String percentDecode(java.lang.String,boolean) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Headline -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_keyboardNavigationCluster -io.reactivex.Observable: io.reactivex.Observable retry(io.reactivex.functions.Predicate) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalGap -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean validate(org.reactivestreams.Subscription,org.reactivestreams.Subscription) -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_3 -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_focusable -com.google.android.material.R$styleable: int Layout_layout_goneMarginEnd -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: ExternalViewProviderService$Provider$ProviderImpl$4(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerY -androidx.viewpager2.R$drawable: int notification_icon_background -okhttp3.internal.connection.RouteSelector: void resetNextProxy(okhttp3.HttpUrl,java.net.Proxy) -okhttp3.internal.http2.Http2Writer: void headers(int,java.util.List) -cyanogenmod.power.PerformanceManager: cyanogenmod.power.IPerformanceManager getService() -androidx.appcompat.resources.R$id: int tag_accessibility_clickable_spans -com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarTextViewStyle -androidx.hilt.work.R$id: int accessibility_custom_action_11 -cyanogenmod.app.CustomTile: int describeContents() -com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentCompatStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(android.os.Parcel) -okhttp3.Connection: java.net.Socket socket() -com.google.android.material.R$animator: int mtrl_chip_state_list_anim -com.xw.repo.bubbleseekbar.R$styleable: int RecycleListView_paddingBottomNoButtons -cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem() -androidx.appcompat.R$styleable: int Toolbar_titleMargins -wangdaye.com.geometricweather.R$layout: int widget_day_week_tile -wangdaye.com.geometricweather.R$layout: int item_details -com.turingtechnologies.materialscrollbar.R$id: int action_container -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_PAUSE -androidx.legacy.coreutils.R$dimen: int notification_action_icon_size -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display3 -com.jaredrummler.android.colorpicker.R$bool: int abc_action_bar_embed_tabs -okhttp3.internal.connection.RouteSelector -androidx.appcompat.resources.R$layout: int notification_template_icon_group -androidx.vectordrawable.R$dimen: int compat_button_inset_vertical_material -io.reactivex.internal.subscriptions.EmptySubscription: void error(java.lang.Throwable,org.reactivestreams.Subscriber) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView -com.google.android.material.R$style: int TextAppearance_AppCompat_Caption -wangdaye.com.geometricweather.R$color: int design_dark_default_color_secondary_variant -cyanogenmod.profiles.StreamSettings: boolean isDirty() -androidx.hilt.work.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.R$color: int material_on_surface_emphasis_medium -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_unselected -okio.Okio$1: java.io.OutputStream val$out -androidx.legacy.content.WakefulBroadcastReceiver: WakefulBroadcastReceiver() -wangdaye.com.geometricweather.R$id: int month_navigation_bar -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_20 -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getWindChillTemperature() -androidx.legacy.coreutils.R$drawable -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode INADEQUATE_SECURITY -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_CBC_SHA -androidx.preference.R$styleable: int AlertDialog_buttonPanelSideLayout -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property No2 -com.google.android.material.R$dimen: int mtrl_high_ripple_focused_alpha -okhttp3.internal.http2.Http2Connection -androidx.appcompat.R$drawable: int abc_cab_background_internal_bg -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context) -wangdaye.com.geometricweather.R$attr: int prefixTextColor -androidx.coordinatorlayout.R$dimen: int notification_right_icon_size -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd -androidx.vectordrawable.animated.R$attr: int fontProviderFetchStrategy -com.google.gson.stream.JsonReader: int PEEKED_SINGLE_QUOTED_NAME -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_width_minor -com.google.android.material.tabs.TabLayout -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabTextStyle -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_2 -androidx.preference.R$id: int bottom -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index o3 -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int getPriority() -james.adaptiveicon.R$drawable: int abc_list_pressed_holo_light -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_chainStyle -androidx.fragment.R$id: int accessibility_custom_action_30 -okhttp3.Address: java.util.List protocols() -android.didikee.donate.R$attr: int switchMinWidth -cyanogenmod.app.ProfileGroup$2: int[] $SwitchMap$cyanogenmod$app$ProfileGroup$Mode -androidx.appcompat.widget.AppCompatSpinner: void setDropDownWidth(int) -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.db.entities.AlertEntity: void setTime(long) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_setInteractivity -com.xw.repo.bubbleseekbar.R$styleable: int[] MenuItem -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -com.google.android.material.button.MaterialButton: void setBackground(android.graphics.drawable.Drawable) -io.reactivex.internal.util.VolatileSizeArrayList -io.reactivex.internal.subscribers.StrictSubscriber: void onError(java.lang.Throwable) -androidx.legacy.coreutils.R$id: R$id() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomSheetDialog -retrofit2.RequestFactory$Builder: java.util.regex.Pattern PARAM_URL_REGEX -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.disposables.Disposable upstream -com.google.android.material.R$attr: int boxStrokeWidthFocused -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_BottomSheetDialog -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWetBulbTemperature(java.lang.Integer) -android.didikee.donate.R$attr: int progressBarPadding -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context,android.util.AttributeSet,int) -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_keyline -android.didikee.donate.R$dimen: int abc_list_item_padding_horizontal_material -androidx.swiperefreshlayout.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_19 -cyanogenmod.os.Concierge: int PARCELABLE_VERSION -cyanogenmod.hardware.CMHardwareManager: boolean checkService() -androidx.appcompat.resources.R$dimen: int notification_big_circle_margin -androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context,android.util.AttributeSet,int) -androidx.swiperefreshlayout.R$id: int async -androidx.appcompat.widget.SwitchCompat: int getThumbTextPadding() -com.google.android.material.R$attr: int constraintSetStart -retrofit2.Utils -okhttp3.internal.cache.DiskLruCache$2: DiskLruCache$2(okhttp3.internal.cache.DiskLruCache,okio.Sink) -cyanogenmod.app.Profile: int getExpandedDesktopMode() -cyanogenmod.themes.IThemeService$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.R$color: int abc_btn_colored_text_material -com.google.android.material.R$color: int material_grey_600 -com.xw.repo.bubbleseekbar.R$attr: int subtitleTextAppearance -androidx.appcompat.widget.AppCompatTextView: void setLineHeight(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: int UnitType -android.didikee.donate.R$drawable: int abc_cab_background_top_material -okhttp3.internal.http2.Http2Writer: boolean closed -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_22 -com.google.android.material.internal.NavigationMenuItemView: void setTextAppearance(int) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks -okhttp3.OkHttpClient: okhttp3.Cache cache -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onComplete() -com.google.android.material.R$style: int TextAppearance_Design_Counter -androidx.lifecycle.FullLifecycleObserver: void onStart(androidx.lifecycle.LifecycleOwner) -com.jaredrummler.android.colorpicker.R$layout: int select_dialog_singlechoice_material -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle CITIES -com.google.android.material.chip.Chip: float getChipIconSize() -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_BACK_BUTTON -androidx.appcompat.R$anim: int abc_slide_out_top -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitation -androidx.transition.R$string: R$string() -org.greenrobot.greendao.AbstractDao: void refresh(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_logoDescription -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PRESENT_AS_THEME -com.xw.repo.bubbleseekbar.R$styleable: int RecycleListView_paddingTopNoTitle -androidx.constraintlayout.widget.R$styleable: int[] GradientColor -android.didikee.donate.R$id: int time -okhttp3.RequestBody$2: int val$byteCount -com.google.android.material.R$color: int mtrl_filled_icon_tint -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_entries -com.xw.repo.bubbleseekbar.R$attr: int fontStyle -androidx.appcompat.R$id: int accessibility_custom_action_14 -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setWallpaperId(long) -androidx.constraintlayout.widget.R$styleable: int SearchView_android_focusable -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItem -wangdaye.com.geometricweather.R$attr: int customStringValue -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Colored -android.didikee.donate.R$styleable: int MenuItem_android_alphabeticShortcut -androidx.preference.R$styleable: int LinearLayoutCompat_android_weightSum -androidx.hilt.work.R$styleable: int FontFamilyFont_font -cyanogenmod.app.IPartnerInterface: void setAirplaneModeEnabled(boolean) -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource) -com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy STRING -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_normal_material_dark -androidx.work.R$attr: int fontProviderQuery -cyanogenmod.providers.CMSettings$System: java.lang.String RECENTS_SHOW_SEARCH_BAR -androidx.constraintlayout.widget.R$styleable: int Motion_drawPath -androidx.appcompat.resources.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_132 -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider AMAP -com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_disable_only_material_dark -james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar_Indicator -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -androidx.core.R$dimen: int compat_notification_large_icon_max_width -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_23 -androidx.constraintlayout.widget.R$id: int textSpacerNoButtons -wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_pressed_alpha -io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$id: int masked -wangdaye.com.geometricweather.R$styleable: int TagView_checked -com.turingtechnologies.materialscrollbar.R$attr: int chipSpacing -io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged(io.reactivex.functions.BiPredicate) -androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$id: int decor_content_parent -androidx.fragment.R$attr: int fontProviderFetchTimeout -androidx.appcompat.R$id: int add -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onStop() -okhttp3.internal.http.StatusLine: java.lang.String toString() -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setCircularRevealScrimColor(int) -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onNext(java.lang.Object) -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.Handler access$100(cyanogenmod.externalviews.KeyguardExternalViewProviderService) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_default -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String PUBLIC_SUFFIX_RESOURCE -androidx.constraintlayout.widget.R$attr: int percentWidth -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer getCloudCover() -androidx.constraintlayout.widget.R$attr: int thumbTextPadding -androidx.transition.R$id: int chronometer -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -james.adaptiveicon.R$dimen: int notification_large_icon_height -cyanogenmod.app.CustomTile$ExpandedStyle: android.widget.RemoteViews getContentViews() -james.adaptiveicon.R$styleable: int AppCompatTheme_homeAsUpIndicator -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date time -james.adaptiveicon.R$id: int home -com.jaredrummler.android.colorpicker.ColorPanelView: void setColor(int) -wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_width -com.jaredrummler.android.colorpicker.R$layout: int abc_select_dialog_material -wangdaye.com.geometricweather.R$dimen: int notification_right_side_padding_top -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionProviderClass -androidx.appcompat.widget.AppCompatEditText: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -okhttp3.Cache$2: java.lang.String next() -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onKeyguardShowing(boolean) -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] findMatchingRule(java.lang.String[]) -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) -com.xw.repo.bubbleseekbar.R$color: int material_grey_600 -com.google.android.material.R$styleable: int Toolbar_subtitle -androidx.preference.R$styleable: int Preference_android_fragment -androidx.coordinatorlayout.R$id: int accessibility_custom_action_24 -com.github.rahatarmanahmed.cpv.R -androidx.appcompat.R$string: int abc_prepend_shortcut_label -wangdaye.com.geometricweather.common.basic.models.weather.Alert: long time -com.google.gson.stream.JsonReader: void endArray() -androidx.appcompat.R$attr: int queryBackground -wangdaye.com.geometricweather.R$styleable: int Transform_android_scaleX -retrofit2.Utils$GenericArrayTypeImpl: boolean equals(java.lang.Object) -androidx.appcompat.R$drawable: int abc_spinner_textfield_background_material -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipMinTouchTargetSize -com.jaredrummler.android.colorpicker.R$attr: int autoSizeTextType -androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context,android.util.AttributeSet) -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setWallpaper(java.lang.String) -androidx.preference.R$styleable: int[] SeekBarPreference -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -io.reactivex.Observable: io.reactivex.Observable concatMapDelayError(io.reactivex.functions.Function,int,boolean) -com.google.android.material.R$color: int accent_material_dark -wangdaye.com.geometricweather.R$array: int language_values -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar -okhttp3.RequestBody -androidx.vectordrawable.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_right_mtrl_dark -androidx.drawerlayout.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherPhase -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean fused -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: java.lang.Object item -cyanogenmod.app.Profile: java.util.UUID getUuid() -androidx.constraintlayout.widget.R$id: int action_mode_bar_stub -com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_internal_bg -okhttp3.EventListener$1 -io.reactivex.Observable: io.reactivex.Single toList() -james.adaptiveicon.R$dimen: int abc_action_bar_overflow_padding_end_material -com.google.android.material.R$styleable: int Snackbar_snackbarStyle -com.xw.repo.bubbleseekbar.R$attr: int contentInsetEndWithActions -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Snackbar -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableRight -androidx.appcompat.R$styleable: int RecycleListView_paddingBottomNoButtons -com.google.android.material.R$string: int password_toggle_content_description -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getHeadDescription() -okio.BufferedSource: long readDecimalLong() -androidx.coordinatorlayout.R$id: int normal -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemPaddingLeft -android.didikee.donate.R$styleable: int AppCompatTextView_fontVariationSettings -androidx.appcompat.R$id: int src_atop -okio.ByteString -io.reactivex.internal.observers.DeferredScalarObserver: void onComplete() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String timezone -androidx.appcompat.widget.ScrollingTabContainerView: void setContentHeight(int) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetLeft -okhttp3.internal.connection.StreamAllocation: void release() -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,java.io.File) -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_item_min_width -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver parent -androidx.appcompat.R$anim: int abc_grow_fade_in_from_bottom -androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache$CallbackInfo createInfo(java.lang.Class,java.lang.reflect.Method[]) -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemOnClickIntent(android.app.PendingIntent) -okhttp3.CacheControl: boolean immutable -wangdaye.com.geometricweather.R$attr: int snackbarStyle -androidx.constraintlayout.widget.R$dimen: int tooltip_horizontal_padding -okhttp3.CertificatePinner$Builder -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeight -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver -androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModelProvider$NewInstanceFactory sInstance -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: MfWarningsResult() -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startColor -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver -com.turingtechnologies.materialscrollbar.R$id: int fixed -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Body2 -com.google.android.material.R$color: int secondary_text_default_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_showDividers -okio.ByteString: okio.ByteString toAsciiLowercase() -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginEnd -james.adaptiveicon.R$dimen: int tooltip_horizontal_padding -com.xw.repo.bubbleseekbar.R$attr: int firstBaselineToTopHeight -com.google.android.material.R$attr: int counterTextAppearance -androidx.recyclerview.widget.RecyclerView: boolean getClipToPadding() -androidx.constraintlayout.widget.R$attr: int defaultState -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType[] values() -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarDivider -android.didikee.donate.R$attr: int listPreferredItemPaddingRight -okhttp3.RealCall: java.lang.String toLoggableString() -wangdaye.com.geometricweather.R$attr: int checkBoxPreferenceStyle -com.google.android.material.chip.Chip: void setCloseIcon(android.graphics.drawable.Drawable) -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX indices -com.google.android.material.R$interpolator: R$interpolator() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Title -androidx.constraintlayout.widget.R$layout: int abc_action_bar_up_container -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long serialVersionUID -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Selected -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float snowPrecipitation -androidx.dynamicanimation.R$id: int async -com.google.android.material.R$dimen: int compat_button_inset_vertical_material -io.reactivex.Observable: io.reactivex.Observable distinct(io.reactivex.functions.Function,java.util.concurrent.Callable) -cyanogenmod.providers.DataUsageContract: java.lang.String[] PROJECTION_ALL -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_inverse_material_dark -com.jaredrummler.android.colorpicker.R$id: int italic -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database wrap(android.database.sqlite.SQLiteDatabase) -okhttp3.ConnectionSpec$Builder: ConnectionSpec$Builder(okhttp3.ConnectionSpec) -androidx.preference.R$styleable: int MenuItem_android_orderInCategory -cyanogenmod.platform.R -androidx.preference.R$id: int italic -com.google.android.material.internal.ForegroundLinearLayout: android.graphics.drawable.Drawable getForeground() -androidx.appcompat.widget.AppCompatImageView: void setBackgroundResource(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String headDescription -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: io.reactivex.internal.disposables.SequentialDisposable direct -wangdaye.com.geometricweather.R$xml: int icon_provider_sun_moon_filter -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWeatherText() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country -retrofit2.BuiltInConverters$ToStringConverter: BuiltInConverters$ToStringConverter() -io.reactivex.Observable: io.reactivex.Observable timer(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$id: int sort_button -com.google.gson.FieldNamingPolicy$2 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String getPubTime() -com.turingtechnologies.materialscrollbar.R$attr: int dropDownListViewStyle -com.google.android.material.R$styleable: int[] ViewStubCompat -androidx.preference.R$styleable: int SwitchPreference_android_summaryOn -androidx.appcompat.R$attr: int actionMenuTextColor -androidx.appcompat.R$style: int TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$bool: int abc_action_bar_embed_tabs -com.google.android.material.R$style: int Widget_AppCompat_Button_Borderless -androidx.viewpager2.R$id: int tag_transition_group -cyanogenmod.profiles.ConnectionSettings: void processOverride(android.content.Context) -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: float getMax() -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -androidx.preference.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -okhttp3.Cache$CacheRequestImpl: okio.Sink body -androidx.viewpager.widget.PagerTitleStrip: int getTextSpacing() -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Body1 -androidx.vectordrawable.R$styleable: int GradientColor_android_centerColor -okhttp3.Connection -retrofit2.http.HEAD: java.lang.String value() -wangdaye.com.geometricweather.R$dimen: int tooltip_corner_radius -com.google.android.material.chip.Chip: void setHideMotionSpecResource(int) -androidx.constraintlayout.widget.R$dimen: int abc_control_padding_material -com.google.android.material.R$attr: int itemShapeFillColor -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_altSrc -com.google.android.material.R$attr: int helperTextTextColor -androidx.swiperefreshlayout.R$dimen: int compat_button_padding_vertical_material -androidx.preference.R$styleable: int[] StateListDrawableItem -com.google.android.material.R$styleable: int TabLayout_tabMinWidth -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyleSmall -android.didikee.donate.R$styleable: int AppCompatTextView_drawableRightCompat -com.jaredrummler.android.colorpicker.R$attr: int adjustable -wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_checkbox -com.google.android.material.R$id: int tag_unhandled_key_event_manager -androidx.appcompat.R$id: int accessibility_custom_action_21 -org.greenrobot.greendao.AbstractDaoSession: java.util.Map entityToDao -com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_padding_horizontal_material -androidx.appcompat.widget.Toolbar: void setPopupTheme(int) -wangdaye.com.geometricweather.R$attr: int measureWithLargestChild -androidx.loader.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getCO() -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: java.util.concurrent.atomic.AtomicReference inner -retrofit2.OkHttpCall: retrofit2.Call clone() -retrofit2.OkHttpCall: void cancel() -com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_android_color -android.didikee.donate.R$drawable: int abc_btn_default_mtrl_shape -androidx.constraintlayout.widget.R$attr: int deltaPolarRadius -com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$drawable: int avd_hide_password -com.jaredrummler.android.colorpicker.R$attr: int titleTextAppearance -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long serialVersionUID -androidx.loader.R$string -androidx.constraintlayout.widget.R$attr: int flow_wrapMode -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void run() -com.google.android.material.R$styleable: int DrawerArrowToggle_arrowShaftLength -cyanogenmod.externalviews.ExternalViewProviderService: android.os.IBinder onBind(android.content.Intent) -androidx.viewpager.R$layout: R$layout() -wangdaye.com.geometricweather.R$attr: int backgroundInsetBottom -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_content_inset_with_nav -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_5 -wangdaye.com.geometricweather.R$font: R$font() -androidx.preference.R$id: int right_icon -android.support.v4.os.IResultReceiver$Stub -wangdaye.com.geometricweather.R$layout: int dialog_weather_hourly -wangdaye.com.geometricweather.R$layout: int item_weather_daily_pollen -com.google.android.material.R$id: int test_checkbox_android_button_tint -androidx.constraintlayout.widget.R$drawable: int abc_seekbar_tick_mark_material -com.jaredrummler.android.colorpicker.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.google.android.material.card.MaterialCardView: void setCheckedIcon(android.graphics.drawable.Drawable) -okio.SegmentedByteString: byte[] internalArray() -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.functions.Function,int,io.reactivex.ObservableSource[]) -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void cancel() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: int rightIndex -cyanogenmod.externalviews.KeyguardExternalView$8: KeyguardExternalView$8(cyanogenmod.externalviews.KeyguardExternalView,boolean) -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.Property[] getProperties() -androidx.constraintlayout.widget.R$id: int dragDown -com.google.android.material.R$attr: int counterMaxLength -com.google.android.material.R$color: int design_dark_default_color_on_primary -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_right_mtrl_dark -androidx.constraintlayout.widget.R$attr: int colorButtonNormal -androidx.appcompat.resources.R$id: int accessibility_custom_action_13 -com.bumptech.glide.integration.okhttp.R$id: int italic -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max -okhttp3.ResponseBody: long contentLength() -wangdaye.com.geometricweather.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.db.entities.MinutelyEntity: int getMinuteInterval() -androidx.constraintlayout.widget.R$styleable: int SearchView_android_maxWidth -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelMenuListTheme -okhttp3.internal.http2.Http2Stream$StreamTimeout -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: void setRootAlpha(int) -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: long serialVersionUID -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String city -com.google.android.material.R$attr: int checkedIcon -androidx.preference.R$id: int accessibility_custom_action_31 -okio.HashingSource: java.security.MessageDigest messageDigest -com.jaredrummler.android.colorpicker.R$attr: int drawerArrowStyle -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_48dp -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Switch -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -androidx.hilt.R$id: int accessibility_custom_action_20 -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String latitude -wangdaye.com.geometricweather.R$dimen: int disabled_alpha_material_dark -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_NoActionBar -androidx.hilt.work.R$dimen: int compat_button_inset_vertical_material -io.reactivex.exceptions.CompositeException -okhttp3.OkHttpClient$1: okhttp3.internal.connection.StreamAllocation streamAllocation(okhttp3.Call) -com.google.android.material.chip.Chip: void setCheckedIconEnabledResource(int) -com.google.android.material.R$layout: int design_bottom_navigation_item -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial Imperial -wangdaye.com.geometricweather.R$color: int mtrl_chip_ripple_color -com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_backgroundTintMode -androidx.viewpager2.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_showText -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_STATUS_BAR -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerX -android.didikee.donate.R$attr: int windowFixedWidthMinor -io.reactivex.Observable: io.reactivex.Single isEmpty() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean requestDismiss() -wangdaye.com.geometricweather.R$id: int item_weather_icon -androidx.appcompat.R$attr: int height -wangdaye.com.geometricweather.R$styleable: int ActionBar_popupTheme -okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Logger logger -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton -androidx.constraintlayout.widget.R$attr: int listPreferredItemHeightLarge -androidx.coordinatorlayout.R$id: int accessibility_custom_action_19 -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginStart -androidx.constraintlayout.widget.R$drawable: int btn_radio_off_mtrl -androidx.constraintlayout.widget.R$string: int abc_searchview_description_voice -androidx.customview.R$id: int right_side -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String AUTHOR -retrofit2.RequestFactory$Builder: java.util.regex.Pattern PARAM_NAME_REGEX -io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.observers.InnerQueuedObserverSupport parent -wangdaye.com.geometricweather.R$string: int introduce -wangdaye.com.geometricweather.R$font: int product_sans_medium_italic -androidx.preference.R$styleable: int[] AnimatedStateListDrawableCompat -androidx.loader.R$id: int action_divider -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_Tooltip -com.turingtechnologies.materialscrollbar.R$id: int screen -okio.SegmentedByteString: void write(java.io.OutputStream) -com.google.gson.internal.JsonReaderInternalAccess: JsonReaderInternalAccess() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.functions.Function mapper -com.google.android.material.R$attr: int crossfade -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline1 -james.adaptiveicon.R$attr: int checkedTextViewStyle -com.jaredrummler.android.colorpicker.R$style: int Widget_Compat_NotificationActionText -androidx.preference.R$style: int Base_V23_Theme_AppCompat_Light -org.greenrobot.greendao.database.DatabaseOpenHelper: void onOpen(org.greenrobot.greendao.database.Database) -com.xw.repo.bubbleseekbar.R$id: int search_button -com.jaredrummler.android.colorpicker.R$attr: int listLayout -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: androidx.lifecycle.LifecycleOwner mLifecycle -cyanogenmod.app.Profile$NotificationLightMode -retrofit2.OkHttpCall$NoContentResponseBody: OkHttpCall$NoContentResponseBody(okhttp3.MediaType,long) -james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionBar -androidx.lifecycle.extensions.R$id: int notification_background -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_110 -com.google.android.material.R$layout: int design_text_input_end_icon -james.adaptiveicon.R$attr: int paddingEnd -androidx.loader.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer getDbz() -androidx.viewpager.R$drawable: int notification_template_icon_bg -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$id: int activity_alert_toolbar -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void cancel(java.lang.Object) -wangdaye.com.geometricweather.R$array: int widget_text_colors -io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) -okhttp3.internal.http2.PushObserver: okhttp3.internal.http2.PushObserver CANCEL -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: double Value -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onSubscribe(org.reactivestreams.Subscription) -wangdaye.com.geometricweather.R$anim: int abc_slide_out_top -com.google.android.material.R$styleable: int[] KeyCycle -androidx.constraintlayout.widget.R$interpolator: R$interpolator() -james.adaptiveicon.R$attr: int actionModeCopyDrawable -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property FormattedId -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_PONG -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabText -com.google.android.material.R$attr: int toolbarNavigationButtonStyle -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_lineHeight -com.google.android.material.card.MaterialCardView: void setCheckedIconResource(int) -androidx.lifecycle.ClassesInfoCache: java.util.Map mHasLifecycleMethods -james.adaptiveicon.AdaptiveIconView: void setPath(java.lang.String) -wangdaye.com.geometricweather.R$layout: int preference_dropdown_material -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionMode -androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingRight -com.google.android.material.R$attr: int viewInflaterClass -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.BiFunction resultSelector -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text -com.google.android.material.slider.Slider: void setTrackInactiveTintList(android.content.res.ColorStateList) -okhttp3.internal.cache.DiskLruCache$Editor$1: void onException(java.io.IOException) -cyanogenmod.app.LiveLockScreenInfo$1: LiveLockScreenInfo$1() -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_cut_mtrl_alpha -androidx.constraintlayout.widget.R$id: int action_context_bar -androidx.appcompat.R$attr: int colorSwitchThumbNormal -androidx.preference.R$attr: int selectableItemBackgroundBorderless -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -androidx.preference.R$styleable: int AppCompatTheme_colorAccent -androidx.appcompat.R$styleable: int AppCompatTheme_activityChooserViewStyle -androidx.preference.R$attr: int preferenceFragmentListStyle -com.turingtechnologies.materialscrollbar.Handle: void setRightToLeft(boolean) -androidx.legacy.coreutils.R$attr: int fontProviderQuery -cyanogenmod.os.Concierge$ParcelInfo: android.os.Parcel mParcel -androidx.constraintlayout.helper.widget.Flow: void setFirstHorizontalStyle(int) -androidx.legacy.coreutils.R$id: int actions -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipCornerRadius -io.reactivex.internal.util.NotificationLite$DisposableNotification: NotificationLite$DisposableNotification(io.reactivex.disposables.Disposable) -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense -androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView: void setSelector(android.graphics.drawable.Drawable) -com.google.android.material.R$styleable: int TextInputLayout_helperText -okio.ByteString: okio.ByteString decodeBase64(java.lang.String) -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource valueOf(java.lang.String) -com.bumptech.glide.integration.okhttp.R$styleable -wangdaye.com.geometricweather.db.entities.HistoryEntityDao -okhttp3.internal.http.RealInterceptorChain: okhttp3.Request request -android.didikee.donate.R$drawable: int notification_bg_low -android.didikee.donate.R$dimen: int highlight_alpha_material_light -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTimestamp(long) -androidx.appcompat.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdt -androidx.preference.R$styleable: int Preference_iconSpaceReserved -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService this$0 -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_RC4_40_MD5 -com.turingtechnologies.materialscrollbar.R$id: int search_mag_icon -wangdaye.com.geometricweather.R$id: int enterAlways -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layoutDescription -com.google.android.material.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_subtitle_top_margin_material -cyanogenmod.weather.CMWeatherManager$2$2: cyanogenmod.weather.CMWeatherManager$2 this$1 -com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_bias -androidx.preference.R$styleable: int Preference_android_widgetLayout -cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit -okhttp3.Interceptor$Chain: int readTimeoutMillis() -com.jaredrummler.android.colorpicker.R$attr: int windowActionModeOverlay -android.didikee.donate.R$dimen: int abc_text_size_subhead_material -okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,java.lang.String) -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.ObservableEmitter emitter -okhttp3.internal.http2.Http2Stream: boolean $assertionsDisabled -android.didikee.donate.R$styleable: int AppCompatTextView_drawableStartCompat -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_DropDownItem_Spinner -androidx.viewpager2.R$id: int accessibility_custom_action_28 -androidx.appcompat.widget.Toolbar: int getContentInsetStart() -com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarButtonStyle -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onListenerConnected() -com.google.android.material.R$styleable: int Badge_horizontalOffset -androidx.constraintlayout.widget.R$styleable: int Transform_android_elevation -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontWeight -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver parent -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -okhttp3.FormBody$Builder: FormBody$Builder() -com.google.android.material.R$drawable: int abc_btn_check_material_anim -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationX -androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_small_material -com.google.android.material.R$string: int path_password_eye -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_sync_duration -cyanogenmod.hardware.DisplayMode: DisplayMode(android.os.Parcel) -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Primary -androidx.vectordrawable.animated.R$color: int notification_action_color_filter -androidx.appcompat.R$id: int home -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void dispose() -wangdaye.com.geometricweather.R$dimen: int mtrl_progress_indicator_size -androidx.loader.R$id: R$id() -okhttp3.OkHttpClient: boolean retryOnConnectionFailure -okhttp3.internal.http2.Hpack$Reader: int maxDynamicTableByteCount() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setDescription(java.lang.String) -androidx.preference.R$color: int material_blue_grey_950 -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 -androidx.recyclerview.R$dimen: int notification_media_narrow_margin -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Connection$Listener listener -wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_tintMode -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Dialog -androidx.activity.R$id: int accessibility_custom_action_18 -com.turingtechnologies.materialscrollbar.R$id: int expand_activities_button -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -androidx.constraintlayout.widget.R$styleable: int Transition_transitionDisable -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCity -wangdaye.com.geometricweather.R$color: int highlighted_text_material_light -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.R$styleable: int AlertDialog_listItemLayout -cyanogenmod.providers.CMSettings$System: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) -androidx.lifecycle.extensions.R$anim: int fragment_open_exit -androidx.constraintlayout.widget.R$attr: int textColorSearchUrl -androidx.constraintlayout.widget.R$styleable: int[] Transform -okio.Util: java.nio.charset.Charset UTF_8 -com.jaredrummler.android.colorpicker.R$attr: int maxButtonHeight -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_text_color -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingBottom -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean checkTerminated(boolean,boolean,io.reactivex.Observer,boolean,io.reactivex.internal.operators.observable.ObservableZip$ZipObserver) -com.turingtechnologies.materialscrollbar.R$styleable: R$styleable() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: AccuCurrentResult$ApparentTemperature$Imperial() -wangdaye.com.geometricweather.R$id: int month_title -androidx.lifecycle.extensions.R$layout: int custom_dialog -androidx.vectordrawable.animated.R$attr: int fontProviderQuery -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_alphabeticShortcut -androidx.viewpager.R$color: int ripple_material_light -com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipStrokeColor() -androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableTransition -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableBottom -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -com.google.android.material.R$id: int password_toggle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature WetBulbTemperature -com.github.rahatarmanahmed.cpv.CircularProgressView$4: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -cyanogenmod.themes.IThemeService$Stub$Proxy: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) -androidx.drawerlayout.R$styleable: int GradientColor_android_endY -androidx.constraintlayout.widget.R$styleable: int KeyCycle_transitionEasing -wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -okio.ByteString: java.lang.String string(java.nio.charset.Charset) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_activated_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_in_bottom -okhttp3.internal.platform.Platform: boolean isAndroid() -androidx.preference.R$anim: int fragment_fast_out_extra_slow_in -android.didikee.donate.R$styleable: int Toolbar_logoDescription -android.didikee.donate.R$styleable: int AppCompatImageView_tint -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result -androidx.fragment.R$id: int async -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog -com.xw.repo.bubbleseekbar.R$attr: int windowNoTitle -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindSpeed(java.lang.Float) -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setTopIconDrawable(android.graphics.drawable.Drawable) -cyanogenmod.profiles.LockSettings$1: cyanogenmod.profiles.LockSettings[] newArray(int) -androidx.appcompat.R$id: int tag_accessibility_heading -androidx.constraintlayout.widget.R$bool: int abc_action_bar_embed_tabs -androidx.appcompat.resources.R$id: int accessibility_custom_action_14 -android.didikee.donate.R$attr: int ratingBarStyle -cyanogenmod.profiles.BrightnessSettings: BrightnessSettings(int,boolean) -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.widget.AppCompatCheckBox: void setSupportButtonTintMode(android.graphics.PorterDuff$Mode) -com.google.android.material.R$styleable: int Toolbar_titleMarginEnd -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyBottomLeft -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginEnd -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.constraintlayout.helper.widget.Flow: void setFirstHorizontalBias(float) -okhttp3.internal.http2.Http2Connection$ReaderRunnable: okhttp3.internal.http2.Http2Reader reader -okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor setLevel(okhttp3.logging.HttpLoggingInterceptor$Level) -cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo$Builder setComponent(android.content.ComponentName) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onStop() -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dialog -cyanogenmod.app.ThemeComponent -com.turingtechnologies.materialscrollbar.R$attr: int windowMinWidthMinor -com.turingtechnologies.materialscrollbar.R$layout: int design_menu_item_action_area -androidx.recyclerview.R$dimen: int notification_large_icon_width -okhttp3.internal.io.FileSystem$1 -androidx.legacy.coreutils.R$id: int text2 -wangdaye.com.geometricweather.R$styleable: int Spinner_android_popupBackground -okio.SegmentedByteString: int hashCode() -cyanogenmod.externalviews.ExternalView$2: int val$height -androidx.constraintlayout.widget.R$attr -wangdaye.com.geometricweather.R$attr: int fontStyle -okio.Okio: okio.Source source(java.io.InputStream) -androidx.constraintlayout.widget.R$attr: int mock_labelColor -androidx.hilt.work.R$attr: int fontProviderCerts -com.google.android.material.R$styleable: int[] ConstraintSet -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_2 -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Solid -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_6 -com.google.android.material.R$styleable: int Transition_staggered -wangdaye.com.geometricweather.R$attr: int tabBackground -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setUnit(java.lang.String) -androidx.lifecycle.LiveData$ObserverWrapper: void activeStateChanged(boolean) -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_sunText -androidx.lifecycle.ReportFragment: androidx.lifecycle.ReportFragment$ActivityInitializationListener mProcessListener -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayVerticalWidgetConfigActivity -androidx.loader.R$styleable: int[] FontFamily -io.reactivex.Observable: io.reactivex.Observable buffer(java.util.concurrent.Callable,java.util.concurrent.Callable) -io.reactivex.internal.disposables.DisposableHelper: boolean validate(io.reactivex.disposables.Disposable,io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int Chip_chipSurfaceColor -wangdaye.com.geometricweather.R$bool -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getExtendMotionSpec() -cyanogenmod.app.PartnerInterface: PartnerInterface(android.content.Context) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.util.List Summaries -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Fullscreen -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -james.adaptiveicon.R$attr: int drawableSize -android.didikee.donate.R$styleable: int AppCompatTheme_imageButtonStyle -android.didikee.donate.R$attr: int actionBarTabBarStyle -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_height_material -com.google.android.material.R$styleable: int Constraint_layout_goneMarginEnd -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_1 -com.bumptech.glide.load.HttpException -com.google.android.material.chip.Chip: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) -wangdaye.com.geometricweather.R$string: int key_text_size -wangdaye.com.geometricweather.R$styleable: int ActionMode_closeItemLayout -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_orientation -androidx.constraintlayout.widget.R$bool: R$bool() -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void dispose() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupMenu -com.google.android.material.R$attr: int counterOverflowTextColor -androidx.lifecycle.SavedStateHandleController: void tryToAddRecreator(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) -james.adaptiveicon.R$drawable: int abc_list_selector_holo_dark -cyanogenmod.themes.ThemeManager$ThemeChangeListener: void onFinish(boolean) -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_backgroundTint -androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver: ConstraintProxyUpdateReceiver() -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List dailyForecast -wangdaye.com.geometricweather.R$color: int material_grey_100 -retrofit2.KotlinExtensions$await$4$2: void onResponse(retrofit2.Call,retrofit2.Response) -wangdaye.com.geometricweather.main.dialogs.BackgroundLocationDialog -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_13 -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -androidx.constraintlayout.widget.R$styleable: int Variant_region_heightLessThan -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long,boolean) -retrofit2.ParameterHandler$Field: ParameterHandler$Field(java.lang.String,retrofit2.Converter,boolean) -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startColor -okio.GzipSink: void writeFooter() -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onCross -cyanogenmod.app.CustomTileListenerService: java.lang.String access$200(cyanogenmod.app.CustomTileListenerService) -wangdaye.com.geometricweather.R$integer: int mtrl_card_anim_duration_ms -androidx.viewpager2.R$attr: int fontVariationSettings -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -androidx.appcompat.R$dimen: int abc_config_prefDialogWidth -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: java.util.List getDeviceComponentVersions() -androidx.recyclerview.widget.RecyclerView: void addOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -androidx.hilt.lifecycle.R$drawable -wangdaye.com.geometricweather.R$id: int notification_big_week_3 -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_height_material -okhttp3.Headers: long byteCount() -okio.Buffer$UnsafeCursor: long resizeBuffer(long) -android.didikee.donate.R$layout: int abc_action_menu_item_layout -com.turingtechnologies.materialscrollbar.R$color -androidx.preference.R$attr: int fontFamily -com.google.android.material.button.MaterialButton: int getIconGravity() -wangdaye.com.geometricweather.R$attr: int closeItemLayout -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_fontFamily -androidx.vectordrawable.animated.R$id: int line1 -com.google.android.material.R$styleable: int TextInputLayout_boxStrokeWidth -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean delayErrors -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_blackContainer -com.turingtechnologies.materialscrollbar.R$styleable: int[] StateListDrawableItem -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean setActiveProfileByName(java.lang.String) -cyanogenmod.weatherservice.WeatherProviderService$1: void cancelRequest(int) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_REVERSE_LOOKUP_VALIDATOR -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Title_Inverse -androidx.preference.R$attr: int dropDownListViewStyle -cyanogenmod.app.CMTelephonyManager: boolean isDataConnectionEnabled() -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String grassDescription -wangdaye.com.geometricweather.R$attr: int dayTodayStyle -okhttp3.Cookie: Cookie(okhttp3.Cookie$Builder) -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DialogWhenLarge -com.github.rahatarmanahmed.cpv.CircularProgressView: void setMaxProgress(float) -okhttp3.internal.http2.Http2Connection$Builder: okio.BufferedSink sink -com.xw.repo.bubbleseekbar.R$id: int multiply -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(java.net.URL) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean -androidx.vectordrawable.animated.R$dimen: int notification_big_circle_margin -com.xw.repo.bubbleseekbar.R$dimen: int abc_search_view_preferred_height -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_textColor -wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_lineHeight -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_descendantFocusability -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Tooltip -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mState -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int backgroundStacked -wangdaye.com.geometricweather.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -wangdaye.com.geometricweather.R$style: int PreferenceFragmentList_Material -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationX -com.google.android.material.R$styleable: int MaterialButton_iconGravity -okhttp3.MediaType: okhttp3.MediaType parse(java.lang.String) -androidx.preference.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle -okhttp3.OkHttpClient: int pingInterval -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_width -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorFullWidth -androidx.appcompat.R$styleable: int StateListDrawableItem_android_drawable -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_PING -com.google.android.material.R$attr: int collapsedTitleTextAppearance -okhttp3.internal.http2.Http2: okio.ByteString CONNECTION_PREFACE -okhttp3.OkHttpClient$Builder: OkHttpClient$Builder() -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: java.lang.String color -okhttp3.MediaType: java.lang.String subtype -org.greenrobot.greendao.database.DatabaseOpenHelper: void onUpgrade(org.greenrobot.greendao.database.Database,int,int) -androidx.recyclerview.R$styleable: int FontFamilyFont_ttcIndex -androidx.swiperefreshlayout.R$attr: int ttcIndex -okio.SegmentPool -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.Object adapt(retrofit2.Call) -android.didikee.donate.R$attr: int searchIcon -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SearchView -wangdaye.com.geometricweather.R$attr: int tabIndicatorColor -androidx.constraintlayout.widget.R$attr: int panelBackground -okhttp3.internal.http2.Http2Connection: int DEGRADED_PING -android.didikee.donate.R$id -androidx.appcompat.R$dimen: int abc_button_padding_vertical_material -androidx.appcompat.R$style: int Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfIce -wangdaye.com.geometricweather.R$layout: int container_main_hourly_trend_card -wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_content -cyanogenmod.externalviews.KeyguardExternalView: android.content.ServiceConnection mServiceConnection -com.google.android.material.R$styleable: int[] OnClick -androidx.activity.R$id: int tag_accessibility_heading -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean tryOnError(java.lang.Throwable) -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_alterWindow -com.google.gson.stream.MalformedJsonException: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyTopLeft -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_thickness -androidx.viewpager.R$id: int action_text -androidx.constraintlayout.widget.R$styleable: int MenuItem_showAsAction -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginBottom -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_keyline -wangdaye.com.geometricweather.R$id: int search_voice_btn -android.didikee.donate.R$attr: int popupTheme -okio.Buffer: okio.ByteString readByteString() -okhttp3.internal.http2.PushObserver -android.didikee.donate.R$string: int search_menu_title -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setThunderstormPrecipitation(java.lang.Float) -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken[] $VALUES -retrofit2.BuiltInConverters$VoidResponseBodyConverter: java.lang.Void convert(okhttp3.ResponseBody) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindChillTemperature -wangdaye.com.geometricweather.R$styleable: int MotionLayout_currentState -com.google.android.material.R$styleable: int KeyAttribute_android_translationZ -wangdaye.com.geometricweather.R$color: int material_on_background_emphasis_medium -wangdaye.com.geometricweather.R$styleable: int Chip_showMotionSpec -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Empty -androidx.constraintlayout.widget.R$dimen: int abc_switch_padding -com.google.gson.LongSerializationPolicy: LongSerializationPolicy(java.lang.String,int,com.google.gson.LongSerializationPolicy$1) -cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_ACCESS_PRIVATE -com.google.android.material.R$styleable: int Constraint_motionStagger -io.reactivex.Observable: io.reactivex.Observable doOnNext(io.reactivex.functions.Consumer) -android.didikee.donate.R$id: int action_bar_spinner -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_radius -com.google.android.material.slider.Slider: void setThumbTintList(android.content.res.ColorStateList) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String TITLE -androidx.viewpager.widget.ViewPager: void removeOnAdapterChangeListener(androidx.viewpager.widget.ViewPager$OnAdapterChangeListener) -com.google.android.material.R$id: int line3 -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_subhead_material -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dark -io.reactivex.exceptions.CompositeException: void printStackTrace() -androidx.appcompat.R$id: int accessibility_custom_action_12 -com.google.android.material.R$string: int mtrl_picker_day_of_week_column_header -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroupForPackage -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart -wangdaye.com.geometricweather.R$dimen: int mtrl_fab_min_touch_target -cyanogenmod.platform.Manifest: Manifest() -okhttp3.internal.connection.StreamAllocation: boolean hasMoreRoutes() -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_precise_anchor_extra_offset -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Info -androidx.preference.internal.PreferenceImageView: int getMaxHeight() -com.turingtechnologies.materialscrollbar.R$id: int notification_main_column -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List hourly_forecast -androidx.lifecycle.extensions.R$drawable: int notification_template_icon_low_bg -com.google.android.material.R$layout: int abc_alert_dialog_material -androidx.preference.R$attr: int actionOverflowButtonStyle -com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference -androidx.constraintlayout.widget.R$styleable: int SearchView_suggestionRowLayout -androidx.work.R$attr: int fontProviderPackage -androidx.preference.R$id: int search_src_text -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags -io.reactivex.internal.observers.InnerQueuedObserver: int fusionMode() -okhttp3.OkHttpClient: OkHttpClient() -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: java.lang.Float min -androidx.appcompat.R$style: int Base_Theme_AppCompat_DialogWhenLarge -cyanogenmod.weather.WeatherInfo: java.lang.String mKey -wangdaye.com.geometricweather.R$attr: int haloRadius -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindChillTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$bool: int enable_system_foreground_service_default -androidx.constraintlayout.widget.R$string: int abc_action_mode_done -okhttp3.RequestBody$3: long contentLength() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -com.google.android.material.R$styleable: int AppCompatTheme_colorBackgroundFloating -androidx.lifecycle.extensions.R$id: R$id() -wangdaye.com.geometricweather.R$attr: int defaultState -androidx.constraintlayout.widget.R$styleable: int MenuItem_actionLayout -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Id -com.google.android.material.R$dimen: int mtrl_extended_fab_min_width -androidx.core.R$id: int right_side -wangdaye.com.geometricweather.R$attr: int fontProviderAuthority -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindDirection -androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_AutoCompleteTextView -cyanogenmod.hardware.IThermalListenerCallback$Stub: cyanogenmod.hardware.IThermalListenerCallback asInterface(android.os.IBinder) -com.google.android.material.R$id: int decor_content_parent -wangdaye.com.geometricweather.R$drawable: int notif_temp_31 -wangdaye.com.geometricweather.R$styleable: int CardView_cardMaxElevation -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getScaleY() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric() -james.adaptiveicon.R$styleable: int[] ButtonBarLayout -androidx.preference.R$styleable: int GradientColor_android_centerColor -android.didikee.donate.R$styleable: int Toolbar_popupTheme -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_material_dark -androidx.core.R$id: int accessibility_custom_action_31 -android.didikee.donate.R$id: int multiply -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$string: int get_more_store -com.google.android.material.textfield.TextInputLayout: void setStartIconOnLongClickListener(android.view.View$OnLongClickListener) -cyanogenmod.externalviews.KeyguardExternalView$2: void onAttachedToWindow() -androidx.work.impl.background.systemjob.SystemJobService: SystemJobService() -okio.AsyncTimeout: boolean inQueue -androidx.appcompat.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -com.turingtechnologies.materialscrollbar.R$dimen: int cardview_compat_inset_shadow -androidx.preference.R$dimen: int abc_dialog_title_divider_material -com.google.android.material.R$styleable: int ActionBar_hideOnContentScroll -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setDuration(long) -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onSubscribe(org.reactivestreams.Subscription) -com.google.android.material.R$styleable: int TextInputLayout_endIconDrawable -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: java.lang.Integer direction -com.google.android.material.R$style: int Widget_AppCompat_Light_ListPopupWindow -com.google.android.material.R$attr: int layout_constraintTag -androidx.hilt.work.R$attr: int fontWeight -androidx.appcompat.widget.ActionMenuView: android.graphics.drawable.Drawable getOverflowIcon() -androidx.constraintlayout.widget.R$attr: int actionModeStyle -cyanogenmod.util.ColorUtils: int generateAlertColorFromDrawable(android.graphics.drawable.Drawable) -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegment(java.lang.String) -androidx.fragment.R$id: int accessibility_custom_action_4 -com.google.android.material.R$attr: R$attr() -org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Iterable,boolean) -wangdaye.com.geometricweather.R$layout: int widget_clock_day_week -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias -james.adaptiveicon.R$style: int Base_Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: int getChartTop() -androidx.appcompat.R$styleable: int SwitchCompat_thumbTintMode -com.google.android.material.R$attr: int textAppearanceHeadline4 -androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotation -wangdaye.com.geometricweather.R$attr: int warmth -okhttp3.internal.http2.Http2: Http2() -wangdaye.com.geometricweather.R$attr: int elevationOverlayColor -com.google.android.material.R$attr: int collapsingToolbarLayoutStyle -com.google.android.material.chip.Chip: void setChipDrawable(com.google.android.material.chip.ChipDrawable) -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State calculateTargetState(androidx.lifecycle.LifecycleObserver) -com.xw.repo.bubbleseekbar.R$id: int action_bar_title -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayout -okio.ByteString: int lastIndexOf(okio.ByteString) -com.jaredrummler.android.colorpicker.R$attr: int queryHint -com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.content.res.ColorStateList getIconTintList() -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getUnitId() -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeTextType -wangdaye.com.geometricweather.R$string: int settings_title_ui_style -retrofit2.Retrofit$1: java.lang.Object[] emptyArgs -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_35 -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: ObservableRepeat$RepeatObserver(io.reactivex.Observer,long,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) -com.google.android.material.R$style: int TextAppearance_AppCompat -com.google.android.material.button.MaterialButton: void setCornerRadius(int) -com.google.android.material.button.MaterialButtonToggleGroup: void setGeneratedIdIfNeeded(com.google.android.material.button.MaterialButton) -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder sslSocketFactory(javax.net.ssl.SSLSocketFactory) -androidx.fragment.R$id: int dialog_button -com.xw.repo.bubbleseekbar.R$id: int action_menu_presenter -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_switchTextOff -wangdaye.com.geometricweather.R$styleable: int MotionScene_layoutDuringTransition -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Title -com.google.android.material.R$attr: int drawableEndCompat -com.google.android.material.R$dimen: int mtrl_slider_widget_height -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedHeightMajor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial Imperial -androidx.recyclerview.widget.RecyclerView: int getMaxFlingVelocity() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeApparentTemperature -androidx.preference.R$attr: int listLayout -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_NULL_SHA -io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.ObservableSource) -android.support.v4.os.IResultReceiver$Stub: boolean setDefaultImpl(android.support.v4.os.IResultReceiver) -androidx.preference.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -com.google.android.material.R$styleable: int MaterialButton_iconTintMode -wangdaye.com.geometricweather.R$id: int src_in -com.google.android.material.R$attr: int activityChooserViewStyle -androidx.customview.R$styleable: int GradientColor_android_tileMode -cyanogenmod.media.MediaRecorder$AudioSource: int HOTWORD -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum Maximum -androidx.appcompat.R$styleable: int[] MenuGroup -okio.AsyncTimeout$2 -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: IRequestInfoListener$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_editor_absoluteX -com.google.android.material.R$style: int Widget_AppCompat_SeekBar -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customColorValue -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionMode -com.google.android.material.R$attr: int itemTextAppearance -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: void onWeatherServiceProviderChanged(java.lang.String) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin -com.jaredrummler.android.colorpicker.R$attr: int enabled -androidx.transition.R$color: int notification_icon_bg_color -com.google.android.material.R$styleable: int NavigationView_itemShapeInsetTop -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: int TRANSACTION_getSuggestions -wangdaye.com.geometricweather.R$id: int container_main_pollen_indicator -wangdaye.com.geometricweather.R$drawable: int flag_fr -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setCityId(java.lang.String) -james.adaptiveicon.R$attr: int searchViewStyle -wangdaye.com.geometricweather.R$id: int search_badge -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getDisplayColorCalibration() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_creator -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_borderWidth -okhttp3.Interceptor$Chain: okhttp3.Connection connection() -com.google.android.material.R$attr: int transitionDisable -okio.RealBufferedSink: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) -cyanogenmod.themes.ThemeManager: ThemeManager(android.content.Context) -wangdaye.com.geometricweather.R$color: int material_blue_grey_800 -retrofit2.ParameterHandler$Path: java.lang.String name -androidx.appcompat.resources.R$id: int icon_group -wangdaye.com.geometricweather.db.entities.LocationEntity: void setCityId(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_dark -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat -okhttp3.internal.http2.Http2Connection: int maxConcurrentStreams() -cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onListenerConnected_0 -com.turingtechnologies.materialscrollbar.R$id: int mtrl_internal_children_alpha_tag -wangdaye.com.geometricweather.R$id: int postLayout -androidx.constraintlayout.widget.R$dimen: int abc_button_padding_vertical_material -androidx.lifecycle.Lifecycle -wangdaye.com.geometricweather.R$id: int searchIcon -cyanogenmod.weather.IRequestInfoListener$Stub: int TRANSACTION_onLookupCityRequestCompleted -androidx.work.impl.utils.futures.AbstractFuture$Failure$1: AbstractFuture$Failure$1(java.lang.String) -com.google.android.material.R$styleable: int BottomNavigationView_labelVisibilityMode -androidx.loader.R$drawable: R$drawable() -androidx.cardview.R$attr: int cardElevation -okhttp3.OkHttpClient$Builder: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner -wangdaye.com.geometricweather.R$attr: int cardBackgroundColor -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getResidentPosition() -androidx.preference.R$drawable: int abc_btn_check_to_on_mtrl_015 -com.xw.repo.bubbleseekbar.R$attr: int actionBarPopupTheme -androidx.cardview.widget.CardView: boolean getPreventCornerOverlap() -cyanogenmod.media.MediaRecorder -wangdaye.com.geometricweather.R$attr: int colorControlActivated -com.turingtechnologies.materialscrollbar.R$attr: int iconifiedByDefault -wangdaye.com.geometricweather.R$attr: int iconEndPadding -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List ziwaixian -com.google.android.material.R$string: int abc_menu_space_shortcut_label -com.jaredrummler.android.colorpicker.R$attr: int fontFamily -okhttp3.internal.Internal: java.net.Socket deduplicate(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation) -android.didikee.donate.R$styleable: int ActionBar_subtitle -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: cyanogenmod.app.ThemeVersion$ComponentVersion getDeviceComponentVersion(cyanogenmod.app.ThemeComponent) -androidx.core.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context,android.util.AttributeSet) -androidx.lifecycle.SavedStateViewModelFactory: android.app.Application mApplication -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_24 -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,int) -com.turingtechnologies.materialscrollbar.R$attr: int listChoiceBackgroundIndicator -com.turingtechnologies.materialscrollbar.R$color: int material_grey_300 -wangdaye.com.geometricweather.R$drawable: int notif_temp_138 -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void cancel() -androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean done -androidx.constraintlayout.widget.R$attr: int isLightTheme -androidx.activity.R$dimen: int notification_main_column_padding_top -okhttp3.internal.connection.StreamAllocation: java.lang.String toString() -androidx.viewpager2.widget.ViewPager2$SavedState -okhttp3.internal.connection.StreamAllocation$StreamAllocationReference -io.reactivex.internal.observers.BasicIntQueueDisposable: boolean offer(java.lang.Object,java.lang.Object) -androidx.preference.R$id: int decor_content_parent -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onComplete() -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationZ -androidx.hilt.R$attr: int ttcIndex -wangdaye.com.geometricweather.R$id: int search_bar -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: CaiYunMainlyResult$AlertsBean$DefenseBean() -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode WRITE_AHEAD_LOGGING -wangdaye.com.geometricweather.R$string: int widget_day -androidx.appcompat.R$style: int Widget_AppCompat_Spinner -androidx.constraintlayout.widget.R$attr: int actionMenuTextColor -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitationDuration(java.lang.Float) -okhttp3.OkHttpClient: okhttp3.internal.cache.InternalCache internalCache() -com.google.android.material.R$styleable: int Transform_android_translationZ -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Time -androidx.coordinatorlayout.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.util.List getValue() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HEAVY_SNOW -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.String TABLENAME -wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean isEntityUpdateable() -wangdaye.com.geometricweather.db.entities.LocationEntity: void setResidentPosition(boolean) -wangdaye.com.geometricweather.R$id: int test_radiobutton_android_button_tint -com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingBottom() -androidx.activity.R$layout: int notification_action -com.google.android.material.R$styleable: int Chip_chipSurfaceColor -android.didikee.donate.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -okhttp3.MediaType: java.lang.String TOKEN -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: java.util.concurrent.atomic.AtomicInteger wip -wangdaye.com.geometricweather.R$styleable: int MenuView_android_headerBackground -okhttp3.logging.HttpLoggingInterceptor$Logger -com.google.android.material.timepicker.TimePickerView: TimePickerView(android.content.Context,android.util.AttributeSet) -androidx.preference.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_dividerHeight -cyanogenmod.profiles.AirplaneModeSettings: boolean isOverride() -com.google.android.material.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets -okhttp3.internal.tls.DistinguishedNameParser: DistinguishedNameParser(javax.security.auth.x500.X500Principal) -androidx.customview.R$attr -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Borderless -okhttp3.internal.http2.Hpack$Reader: void readIndexedHeader(int) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: float getAlpha() -com.google.android.material.R$styleable: int[] RadialViewGroup -com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context,android.util.AttributeSet) -androidx.recyclerview.R$id: int accessibility_custom_action_21 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_share_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -androidx.appcompat.resources.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Time -com.jaredrummler.android.colorpicker.R$id: int decor_content_parent -james.adaptiveicon.R$drawable: int notification_action_background -androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -androidx.recyclerview.R$drawable: int notification_template_icon_low_bg -com.google.android.material.R$styleable: int KeyPosition_curveFit -androidx.fragment.R$dimen: int notification_content_margin_start -org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Iterable,boolean) -androidx.drawerlayout.R$dimen: int notification_action_icon_size -okhttp3.internal.http2.Http2Connection$Listener: Http2Connection$Listener() -wangdaye.com.geometricweather.R$attr: int motion_triggerOnCollision -wangdaye.com.geometricweather.R$layout: int cpv_preference_square_large -androidx.appcompat.widget.SearchView: SearchView(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$id: int top -androidx.appcompat.widget.SearchView$SearchAutoComplete: int getSearchViewTextMinWidthDp() -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -io.reactivex.internal.observers.BasicIntQueueDisposable: BasicIntQueueDisposable() -com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Filter -james.adaptiveicon.R$style: int Widget_AppCompat_EditText -james.adaptiveicon.R$attr: int initialActivityCount -androidx.constraintlayout.widget.R$drawable: int abc_btn_check_to_on_mtrl_000 -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: ObservableRangeLong$RangeDisposable(io.reactivex.Observer,long,long) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: CNWeatherResult$HourlyForecast() -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadMessage(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindSpeedStart() -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_drawableSize -androidx.preference.R$styleable: int AppCompatTheme_panelMenuListTheme -androidx.constraintlayout.widget.R$id: int triangle -james.adaptiveicon.R$styleable: int MenuGroup_android_checkableBehavior -androidx.constraintlayout.widget.R$attr: int titleMarginStart -io.reactivex.Observable: io.reactivex.Single elementAtOrError(long) -androidx.lifecycle.AbstractSavedStateViewModelFactory: void onRequery(androidx.lifecycle.ViewModel) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -wangdaye.com.geometricweather.R$id: int activity_widget_config_container -com.google.android.material.slider.BaseSlider: void setValuesInternal(java.util.ArrayList) -wangdaye.com.geometricweather.R$drawable: int notif_temp_129 -android.didikee.donate.R$anim -androidx.customview.R$drawable: int notification_bg_low_pressed -com.google.android.material.R$styleable: int[] Transition -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -cyanogenmod.os.Concierge: cyanogenmod.os.Concierge$ParcelInfo prepareParcel(android.os.Parcel) -androidx.coordinatorlayout.R$styleable: int GradientColorItem_android_offset -com.bumptech.glide.integration.okhttp.R$id: int icon -cyanogenmod.app.CustomTile$ExpandedStyle: int NO_STYLE -cyanogenmod.app.suggest.IAppSuggestManager: boolean handles(android.content.Intent) -okhttp3.CipherSuite -com.google.android.material.R$dimen: int design_bottom_navigation_active_item_max_width -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_orientation -wangdaye.com.geometricweather.R$dimen: int abc_text_size_body_1_material -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason SWITCH_TO_SOURCE_SERVICE -cyanogenmod.app.PartnerInterface: void rebootDevice() -io.reactivex.exceptions.MissingBackpressureException -com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.ValueAnimator progressAnimator -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -androidx.appcompat.resources.R$styleable: int GradientColorItem_android_color -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setVibratorIntensity -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitleTextAppearance -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Body2 -okio.Okio$3: okio.Timeout timeout() -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_SLOW_SAMPLES -com.google.android.material.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -james.adaptiveicon.R$styleable: int AppCompatTheme_radioButtonStyle -androidx.viewpager2.R$styleable: int FontFamilyFont_android_font -androidx.appcompat.R$attr: int color -wangdaye.com.geometricweather.R$style: int Widget_Design_AppBarLayout -okhttp3.ConnectionPool$1 -cyanogenmod.app.Profile: void getXmlString(java.lang.StringBuilder,android.content.Context) -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo build() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_large_material -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.Observable: io.reactivex.Observable takeWhile(io.reactivex.functions.Predicate) -wangdaye.com.geometricweather.background.polling.work.worker.NormalUpdateWorker -androidx.appcompat.widget.Toolbar: void setCollapseIcon(android.graphics.drawable.Drawable) -androidx.appcompat.R$styleable: int MenuItem_android_alphabeticShortcut -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void dispose() -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: java.lang.Object item -com.google.android.material.imageview.ShapeableImageView: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -androidx.vectordrawable.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.R$dimen: int material_cursor_width -androidx.preference.R$dimen: int abc_text_size_menu_material -okhttp3.internal.Util: Util() -com.google.android.material.button.MaterialButton: void setStrokeColorResource(int) -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderFetchTimeout -cyanogenmod.app.Profile: cyanogenmod.profiles.ConnectionSettings getConnectionSettingWithSubId(int) -cyanogenmod.weather.WeatherLocation: int describeContents() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Spinner -androidx.preference.R$color: int material_grey_800 -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SEVERE_THUNDERSTORMS -wangdaye.com.geometricweather.db.entities.DailyEntity: void setHoursOfSun(float) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -wangdaye.com.geometricweather.R$attr: int closeIconVisible -cyanogenmod.externalviews.IExternalViewProvider: void onStart() -androidx.preference.R$styleable: int AppCompatTheme_actionModeBackground -wangdaye.com.geometricweather.R$attr: int arrowHeadLength -android.didikee.donate.R$attr: int buttonBarNegativeButtonStyle -okhttp3.Response$Builder: long receivedResponseAtMillis -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_height -wangdaye.com.geometricweather.R$attr: int fastScrollHorizontalTrackDrawable -com.google.android.material.card.MaterialCardView: void setPreventCornerOverlap(boolean) -wangdaye.com.geometricweather.R$layout: int material_clock_period_toggle -com.google.android.material.R$styleable: int Chip_shapeAppearanceOverlay -androidx.coordinatorlayout.R$id: int accessibility_custom_action_8 -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_toolbarId -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -cyanogenmod.externalviews.ExternalView$4: ExternalView$4(cyanogenmod.externalviews.ExternalView) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -okio.Base64: java.lang.String encodeUrl(byte[]) -androidx.preference.R$attr: int colorBackgroundFloating -com.jaredrummler.android.colorpicker.R$attr: int color -wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogLayout -androidx.vectordrawable.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.R$style: int my_switch -retrofit2.ParameterHandler$RawPart: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.google.android.material.R$dimen: int design_bottom_navigation_label_padding -wangdaye.com.geometricweather.R$string: int settings_title_notification_color -wangdaye.com.geometricweather.db.entities.HourlyEntity: HourlyEntity() -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver -android.didikee.donate.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Title -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_padding_top_material -okhttp3.logging.HttpLoggingInterceptor: void redactHeader(java.lang.String) -android.didikee.donate.R$anim: int abc_fade_in -james.adaptiveicon.R$drawable: int abc_list_selector_background_transition_holo_light -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableItem -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Request followUpRequest(okhttp3.Response,okhttp3.Route) -androidx.appcompat.resources.R$id: int accessibility_custom_action_10 -com.xw.repo.bubbleseekbar.R$anim: int abc_slide_in_bottom -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getNighttimeWindDegree() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio -okio.RealBufferedSink: java.io.OutputStream outputStream() -androidx.coordinatorlayout.R$styleable -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum Minimum -androidx.appcompat.R$dimen: int abc_dialog_min_width_major -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Body1 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_AUTO_OUTDOOR_MODE_VALIDATOR -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf -com.google.android.material.R$id: int mtrl_calendar_months -androidx.appcompat.view.menu.MenuPopupHelper -cyanogenmod.library.R$attr -james.adaptiveicon.R$style: int Base_Theme_AppCompat_DialogWhenLarge -io.reactivex.exceptions.ProtocolViolationException: ProtocolViolationException(java.lang.String) -okhttp3.TlsVersion: java.util.List forJavaNames(java.lang.String[]) -com.google.android.material.switchmaterial.SwitchMaterial: android.content.res.ColorStateList getMaterialThemeColorsThumbTintList() -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_icon_vertical_padding_material -com.google.android.material.navigation.NavigationView: void setCheckedItem(int) -com.google.android.material.R$styleable: int[] SwitchMaterial -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -com.bumptech.glide.R$drawable: int notification_bg_low -io.reactivex.Observable: io.reactivex.Observable concatMapEagerDelayError(io.reactivex.functions.Function,boolean) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_DrawerArrowToggle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: double Value -wangdaye.com.geometricweather.R$id: int shortcut -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void drainLoop() -androidx.constraintlayout.widget.R$styleable: int Constraint_android_visibility -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_numericShortcut -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Medium -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -okhttp3.internal.http1.Http1Codec$ChunkedSource: void readChunkSize() -io.reactivex.Observable: io.reactivex.Observable doFinally(io.reactivex.functions.Action) -com.google.android.material.R$styleable: int MenuGroup_android_id -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_ttcIndex -com.google.android.material.chip.Chip: void setTextAppearance(com.google.android.material.resources.TextAppearance) -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: boolean equals(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_maxLines -james.adaptiveicon.R$color: int material_grey_100 -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_normalContainer -com.google.android.material.R$string: int fab_transformation_scrim_behavior -androidx.legacy.coreutils.R$id: int info -com.google.android.material.R$id: int info -com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_selected -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property District -james.adaptiveicon.R$styleable: int DrawerArrowToggle_drawableSize -com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_text -androidx.appcompat.R$attr: int backgroundStacked -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver,java.lang.Throwable) -androidx.lifecycle.CompositeGeneratedAdaptersObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -androidx.constraintlayout.widget.R$styleable: int KeyCycle_wavePeriod -com.bumptech.glide.R$styleable: int FontFamilyFont_fontStyle -androidx.work.impl.utils.futures.AbstractFuture$Waiter: androidx.work.impl.utils.futures.AbstractFuture$Waiter next -okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithIncrementalIndexingIndexedName(int) -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setTime(long) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeWindSpeed -androidx.preference.R$id: int search_close_btn -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setSunSet(java.lang.String) -androidx.appcompat.R$id: int action_bar_root -androidx.constraintlayout.widget.R$attr: int flow_verticalAlign -com.turingtechnologies.materialscrollbar.R$style: int Base_V22_Theme_AppCompat -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_ripple_color -androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$id: int widget_week_temp_3 -com.bumptech.glide.R$id: int actions -com.google.gson.stream.JsonWriter: JsonWriter(java.io.Writer) -com.google.android.material.R$styleable: int RangeSlider_values -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeWindChillTemperature() -androidx.preference.R$attr: int imageButtonStyle -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: android.content.res.ColorStateList getSupportBackgroundTintList() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitationProbability -com.jaredrummler.android.colorpicker.R$id: int action_bar_subtitle -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Small_Inverse -com.google.android.material.slider.BaseSlider: void addOnSliderTouchListener(com.google.android.material.slider.BaseOnSliderTouchListener) -androidx.core.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.R$attr: int altSrc -androidx.constraintlayout.widget.R$styleable: int SearchView_defaultQueryHint -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$attr: int cornerFamilyBottomRight -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitationDuration(java.lang.Float) -wangdaye.com.geometricweather.R$drawable: int notif_temp_88 -androidx.appcompat.widget.ViewStubCompat: android.view.LayoutInflater getLayoutInflater() -androidx.recyclerview.R$styleable: int GradientColor_android_endX -cyanogenmod.weather.RequestInfo: int access$202(cyanogenmod.weather.RequestInfo,int) -wangdaye.com.geometricweather.R$styleable: int Badge_number -com.google.android.material.R$styleable: int[] MaterialRadioButton -com.google.android.material.transformation.ExpandableBehavior: ExpandableBehavior() -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void cancel() -james.adaptiveicon.R$styleable: int TextAppearance_android_fontFamily -com.google.android.material.R$styleable: int Snackbar_snackbarButtonStyle -androidx.hilt.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -okhttp3.CipherSuite: java.lang.String secondaryName(java.lang.String) -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getDesiredHeight() -com.google.android.material.internal.BaselineLayout: int getBaseline() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: int getStatus() -wangdaye.com.geometricweather.R$dimen: int large_margin -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: int capacityHint -com.google.android.material.chip.Chip: android.graphics.Rect getCloseIconTouchBoundsInt() -okhttp3.internal.io.FileSystem$1: void delete(java.io.File) -com.turingtechnologies.materialscrollbar.R$styleable: int[] TextInputLayout -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -com.google.android.material.R$dimen: int abc_control_corner_material -james.adaptiveicon.R$attr: int colorPrimaryDark -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonStyleSmall -wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_width_minor -wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_subtitle -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String weatherDescription -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type TEMPERATURE -okhttp3.internal.cache.CacheInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode -okhttp3.Cache: int readInt(okio.BufferedSource) -okhttp3.Route: java.net.Proxy proxy -cyanogenmod.hardware.DisplayMode$1: java.lang.Object[] newArray(int) -okio.Pipe: boolean sourceClosed -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: long remaining -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean active -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.R$styleable: int Chip_chipStrokeColor -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_12 -androidx.viewpager2.R$id: int action_text -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.google.android.material.R$layout: int design_layout_tab_text -androidx.appcompat.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -com.google.android.material.R$style: int Widget_MaterialComponents_BottomSheet_Modal -androidx.appcompat.widget.SwitchCompat: void setTrackTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.R$attr: int showSeekBarValue -com.xw.repo.bubbleseekbar.R$drawable: int abc_popup_background_mtrl_mult -com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_percent -io.reactivex.Observable: io.reactivex.Observable concatArrayEager(io.reactivex.ObservableSource[]) -cyanogenmod.app.IPartnerInterface$Stub$Proxy: void reboot() -com.google.android.material.R$styleable: int[] ButtonBarLayout -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabContentStart -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind wind -com.google.android.material.R$dimen: int mtrl_extended_fab_icon_text_spacing -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String YEAR -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean disposed -cyanogenmod.app.Profile: void setBrightness(cyanogenmod.profiles.BrightnessSettings) -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level[] values() -androidx.constraintlayout.widget.R$styleable: int OnSwipe_nestedScrollFlags -okhttp3.OkHttpClient$1: java.io.IOException timeoutExit(okhttp3.Call,java.io.IOException) -androidx.appcompat.R$id: int title -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constrainedWidth -io.reactivex.internal.observers.DeferredScalarDisposable: int TERMINATED -james.adaptiveicon.R$styleable: int MenuItem_contentDescription -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Toolbar -androidx.constraintlayout.widget.R$dimen: int notification_large_icon_height -okhttp3.CacheControl: CacheControl(okhttp3.CacheControl$Builder) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView_DropDown -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconSize -okio.DeflaterSink: void finishDeflate() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.Integer alti -com.google.android.material.R$styleable: int ProgressIndicator_showDelay -com.google.android.material.R$styleable: int ShapeableImageView_strokeWidth -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_LOCKSCREEN -androidx.drawerlayout.R$style: R$style() -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_trackColor -com.google.android.material.textfield.TextInputLayout: void setSuffixText(java.lang.CharSequence) -com.google.android.material.R$id: int mtrl_card_checked_layer_id -androidx.hilt.R$styleable: int GradientColorItem_android_color -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean cancelled -wangdaye.com.geometricweather.R$styleable: int Badge_backgroundColor -com.google.android.material.circularreveal.CircularRevealRelativeLayout: int getCircularRevealScrimColor() -cyanogenmod.app.IProfileManager: void updateNotificationGroup(android.app.NotificationGroup) -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) -androidx.preference.R$style: int Preference_DropDown -android.didikee.donate.R$layout: int select_dialog_singlechoice_material -cyanogenmod.weather.RequestInfo$1: java.lang.Object createFromParcel(android.os.Parcel) -com.github.rahatarmanahmed.cpv.CircularProgressView$1: void onAnimationUpdate(android.animation.ValueAnimator) -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_23 -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType PNG -androidx.preference.R$styleable: int AppCompatImageView_tintMode -com.google.android.material.button.MaterialButton: void setIcon(android.graphics.drawable.Drawable) -com.jaredrummler.android.colorpicker.R$attr: int textColorAlertDialogListItem -okhttp3.internal.http.StatusLine: okhttp3.internal.http.StatusLine parse(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int tabRippleColor -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -androidx.preference.R$styleable: int ActionBar_displayOptions -wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_text_padding_left -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth -androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_button_bar_material -okio.AsyncTimeout: void exit(boolean) -androidx.lifecycle.ReflectiveGenericLifecycleObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetLeft -androidx.hilt.work.R$string: R$string() -wangdaye.com.geometricweather.R$menu: R$menu() -com.google.android.material.R$layout: int material_clockface_textview -james.adaptiveicon.R$styleable: int ActionBar_icon -wangdaye.com.geometricweather.R$id: int tag_icon_top -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_10 -androidx.loader.R$id: int text -com.jaredrummler.android.colorpicker.R$attr: int checkboxStyle -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onDetach() -okhttp3.internal.Util: int skipTrailingAsciiWhitespace(java.lang.String,int,int) -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton -com.google.android.material.R$attr: int tabIndicatorFullWidth -androidx.appcompat.R$styleable: int SwitchCompat_android_textOn -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Title -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onComplete() -androidx.preference.R$color: int dim_foreground_material_light -androidx.preference.R$styleable: int AppCompatTheme_alertDialogStyle -wangdaye.com.geometricweather.R$string: int key_notification_minimal_icon -org.greenrobot.greendao.AbstractDao: void updateInTx(java.lang.Iterable) -james.adaptiveicon.R$style: int Base_Animation_AppCompat_Tooltip -androidx.preference.R$styleable: int PreferenceTheme_preferenceCategoryStyle -wangdaye.com.geometricweather.R$attr: int state_above_anchor -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType USER_REQUEST -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -androidx.transition.R$dimen: int notification_large_icon_width -androidx.appcompat.view.menu.ExpandedMenuView: ExpandedMenuView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$attr: int cornerSizeTopLeft -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginStart -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken[] values() -okio.SegmentedByteString: java.lang.String string(java.nio.charset.Charset) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int UVIndex -androidx.dynamicanimation.R$color: int notification_action_color_filter -androidx.lifecycle.ViewModelStores: ViewModelStores() -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabUnboundedRipple -james.adaptiveicon.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -okhttp3.internal.Util: java.util.TimeZone UTC -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: boolean isDisposed() -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_to_on_mtrl_000 -io.reactivex.Observable: io.reactivex.Observable delaySubscription(long,java.util.concurrent.TimeUnit) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int TROPICAL_STORM -wangdaye.com.geometricweather.R$style: int Preference_DialogPreference -okhttp3.internal.cache.DiskLruCache$Entry: boolean readable -wangdaye.com.geometricweather.R$id: int source -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedHeightMinor -com.google.android.material.R$attr: int titleTextColor -androidx.appcompat.widget.ButtonBarLayout: void setAllowStacking(boolean) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Display3 -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton -androidx.appcompat.R$id: int accessibility_custom_action_0 -okio.GzipSource: long read(okio.Buffer,long) -com.google.android.material.R$id: int labeled -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_PrimarySurface -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Title -com.google.android.material.R$styleable: int Transition_transitionDisable -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog -cyanogenmod.themes.ThemeChangeRequest$Builder -james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar_Small -james.adaptiveicon.R$style: int Widget_AppCompat_DropDownItem_Spinner -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setDateText(java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTemperature(int) -cyanogenmod.app.ILiveLockScreenManager$Stub: cyanogenmod.app.ILiveLockScreenManager asInterface(android.os.IBinder) -androidx.fragment.R$styleable: int[] FontFamily -androidx.dynamicanimation.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.R$dimen: int fastscroll_minimum_range -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_maxImageSize -androidx.constraintlayout.widget.R$string: int abc_menu_delete_shortcut_label -com.github.rahatarmanahmed.cpv.CircularProgressView: void updatePaint() -com.turingtechnologies.materialscrollbar.R$id: int search_badge -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 -cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(int,cyanogenmod.app.ThemeComponent,java.lang.String,int,int) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer grassIndex -wangdaye.com.geometricweather.R$layout: int test_toolbar_custom_background -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_menuCategory -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_go_search_api_material -retrofit2.Utils: java.lang.Class getRawType(java.lang.reflect.Type) -cyanogenmod.profiles.RingModeSettings$1 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String IconPhrase -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long readKey(android.database.Cursor,int) -okio.Buffer: okio.ByteString hmacSha1(okio.ByteString) -com.google.android.material.card.MaterialCardView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -retrofit2.http.Multipart -androidx.viewpager2.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -james.adaptiveicon.R$id: int line3 -com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_android_button -okhttp3.ResponseBody$BomAwareReader: boolean closed -androidx.lifecycle.LiveData: void removeObserver(androidx.lifecycle.Observer) -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: ILiveLockScreenManagerProvider$Stub() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Spinner -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTotalPrecipitation(java.lang.Float) -cyanogenmod.power.IPerformanceManager: void cpuBoost(int) -androidx.appcompat.widget.Toolbar: int getContentInsetStartWithNavigation() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int Icon -androidx.appcompat.widget.Toolbar: android.widget.TextView getTitleTextView() -androidx.lifecycle.FullLifecycleObserverAdapter: FullLifecycleObserverAdapter(androidx.lifecycle.FullLifecycleObserver,androidx.lifecycle.LifecycleEventObserver) -james.adaptiveicon.R$dimen: int abc_action_bar_icon_vertical_padding_material -androidx.constraintlayout.utils.widget.ImageFilterButton: void setContrast(float) -androidx.core.R$id: int dialog_button -com.google.android.material.R$dimen: int mtrl_navigation_item_shape_horizontal_margin -androidx.dynamicanimation.R$attr: int ttcIndex -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_crossfade -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarStyle -com.google.android.material.R$dimen: int mtrl_slider_label_padding -androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$dimen: int abc_dialog_fixed_width_major -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemRippleColor -android.didikee.donate.R$dimen: int abc_alert_dialog_button_bar_height -androidx.loader.R$layout: int notification_template_icon_group -androidx.drawerlayout.R$drawable: int notification_template_icon_bg -okhttp3.internal.http2.Http2Codec: okhttp3.internal.http2.Http2Stream stream -com.google.android.material.R$attr: int maxImageSize -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Link -androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Time -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_scaleY -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatElevationResource(int) -androidx.appcompat.R$styleable: int TextAppearance_android_shadowDx -org.greenrobot.greendao.AbstractDao: void saveInTx(java.lang.Object[]) -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_menu_header_material -okhttp3.MultipartBody$Part: okhttp3.Headers headers -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator$SavedState: android.os.Parcelable$Creator CREATOR -androidx.vectordrawable.animated.R$layout: int notification_template_custom_big -android.didikee.donate.R$attr: int barLength -com.bumptech.glide.integration.okhttp.R$id: int end -androidx.preference.R$attr: int listPreferredItemHeight -okhttp3.internal.http1.Http1Codec$AbstractSource: long bytesRead -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -com.google.android.material.R$style: int TextAppearance_AppCompat_Large -com.google.android.material.R$drawable: int abc_list_focused_holo -com.jaredrummler.android.colorpicker.R$attr: int actionOverflowMenuStyle -wangdaye.com.geometricweather.common.ui.widgets.TagView: int getUncheckedBackgroundColor() -wangdaye.com.geometricweather.R$id: int mtrl_child_content_container -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean -wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_margin_left -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_headline_material -wangdaye.com.geometricweather.R$styleable: int SearchView_android_imeOptions -wangdaye.com.geometricweather.R$array: int notification_style_values -androidx.preference.R$styleable: int SwitchPreferenceCompat_switchTextOff -androidx.lifecycle.ReflectiveGenericLifecycleObserver: java.lang.Object mWrapped -com.google.android.material.slider.RangeSlider: void setTickInactiveTintList(android.content.res.ColorStateList) -retrofit2.CallAdapter$Factory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -androidx.appcompat.widget.FitWindowsFrameLayout: FitWindowsFrameLayout(android.content.Context,android.util.AttributeSet) -androidx.lifecycle.ComputableLiveData: java.util.concurrent.Executor mExecutor -androidx.preference.R$attr: int useSimpleSummaryProvider -androidx.constraintlayout.widget.R$attr: int popupWindowStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -com.google.android.material.R$color: int design_default_color_on_primary -james.adaptiveicon.R$dimen: int abc_text_size_medium_material -cyanogenmod.power.PerformanceManager: int PROFILE_BIAS_PERFORMANCE -com.google.android.material.R$string: int abc_searchview_description_submit -androidx.constraintlayout.widget.R$attr: int flow_horizontalBias -io.reactivex.internal.disposables.ArrayCompositeDisposable: io.reactivex.disposables.Disposable replaceResource(int,io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorContentDescription -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status RUNNING -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getGrassIndex() -com.google.android.material.R$styleable: int BottomAppBar_fabCradleVerticalOffset -com.google.android.material.R$color: int design_fab_stroke_end_inner_color -android.didikee.donate.R$id: int src_over -com.jaredrummler.android.colorpicker.R$styleable: int[] ViewStubCompat -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_percent -io.reactivex.Observable: io.reactivex.Observable concatMapSingle(io.reactivex.functions.Function,int) -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean mAskedShow -com.google.android.material.R$attr: int drawPath -com.google.android.material.R$attr: int switchTextAppearance -wangdaye.com.geometricweather.R$id: int text2 -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int requestFusion(int) -androidx.constraintlayout.widget.R$styleable: int Spinner_android_dropDownWidth -com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingLeft -wangdaye.com.geometricweather.R$color: int bright_foreground_material_dark -io.reactivex.internal.subscriptions.EmptySubscription: int requestFusion(int) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: int bufferSize -wangdaye.com.geometricweather.R$id: int textEnd -com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_Overflow -com.turingtechnologies.materialscrollbar.R$styleable: int[] SnackbarLayout -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getStartIconContentDescription() -wangdaye.com.geometricweather.R$attr: int tintMode -androidx.hilt.R$dimen: int notification_small_icon_size_as_large -james.adaptiveicon.R$bool: int abc_action_bar_embed_tabs -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: retrofit2.Callback val$callback -com.google.android.material.R$dimen: int abc_text_size_subhead_material -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeight -wangdaye.com.geometricweather.R$id: int homeAsUp -wangdaye.com.geometricweather.R$attr: int textAppearanceListItem -com.bumptech.glide.integration.okhttp.R$id -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_icon -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String moldDescription -androidx.appcompat.R$attr: int editTextBackground -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_motionProgress -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle -wangdaye.com.geometricweather.R$attr: int floatingActionButtonStyle -androidx.vectordrawable.R$styleable: int FontFamilyFont_ttcIndex -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BACKGROUND -androidx.preference.R$layout: int preference -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean mainDone -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalGap -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Body1 -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_DarkActionBar -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float total -okhttp3.internal.http2.Http2Stream$StreamTimeout: void exitAndThrowIfTimedOut() -com.google.gson.stream.JsonWriter: java.lang.String[] REPLACEMENT_CHARS -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_voiceIcon -com.google.android.material.slider.BaseSlider: float getMinSeparation() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul6H -com.google.android.material.R$styleable: int ActionMode_closeItemLayout -androidx.preference.R$styleable: int[] AppCompatTheme -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedFragment(java.lang.String) -com.google.android.material.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets -wangdaye.com.geometricweather.background.polling.PollingUpdateHelper: void setOnPollingUpdateListener(wangdaye.com.geometricweather.background.polling.PollingUpdateHelper$OnPollingUpdateListener) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric() -com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.Throwable) -androidx.viewpager2.R$drawable: int notification_bg_low_pressed -okhttp3.Dispatcher: int getMaxRequestsPerHost() -wangdaye.com.geometricweather.R$string: int week -androidx.hilt.R$id: int tag_screen_reader_focusable -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: IKeyguardExternalViewProvider$Stub$Proxy(android.os.IBinder) -androidx.appcompat.R$color: int material_deep_teal_500 -androidx.appcompat.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -com.jaredrummler.android.colorpicker.R$id: int time -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge -com.jaredrummler.android.colorpicker.R$drawable: int abc_switch_thumb_material -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindSpeed(java.lang.Float) -androidx.recyclerview.R$dimen: int item_touch_helper_swipe_escape_max_velocity -androidx.activity.R$attr: int font -androidx.preference.R$style: int Animation_AppCompat_DropDownUp -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_114 -androidx.constraintlayout.widget.R$attr: int switchPadding -android.didikee.donate.R$styleable: int AppCompatTheme_colorPrimary -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_creator -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: java.lang.Runnable getWrappedRunnable() -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -com.google.android.material.R$dimen: int abc_edit_text_inset_horizontal_material -androidx.appcompat.widget.ActionBarContextView: void setTitleOptional(boolean) -cyanogenmod.profiles.AirplaneModeSettings -com.google.android.material.R$styleable: int ProgressIndicator_growMode -wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_id -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Pollen pollen -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object readKey(android.database.Cursor,int) -com.xw.repo.bubbleseekbar.R$styleable: int PopupWindowBackgroundState_state_above_anchor -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginEnd -retrofit2.KotlinExtensions: java.lang.Object awaitResponse(retrofit2.Call,kotlin.coroutines.Continuation) -com.xw.repo.bubbleseekbar.R$attr: int titleTextStyle -androidx.coordinatorlayout.R$id: int accessibility_custom_action_22 -wangdaye.com.geometricweather.R$style: int widget_text_clock_analog -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar_Small -androidx.coordinatorlayout.R$dimen: int compat_notification_large_icon_max_width -com.turingtechnologies.materialscrollbar.R$string: int character_counter_pattern -androidx.constraintlayout.widget.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -com.google.android.material.R$attr: int constraintSetEnd -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_selection_line_height -retrofit2.converter.gson.GsonRequestBodyConverter: java.nio.charset.Charset UTF_8 -cyanogenmod.app.StatusBarPanelCustomTile: long getPostTime() -cyanogenmod.weather.RequestInfo: int getTemperatureUnit() -com.jaredrummler.android.colorpicker.R$id: int add -com.google.android.material.R$styleable: int Chip_closeIcon -com.jaredrummler.android.colorpicker.R$id: int icon_group -cyanogenmod.providers.CMSettings$System: java.lang.String NAV_BUTTONS -androidx.preference.R$attr: int stackFromEnd -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() -androidx.preference.R$drawable -androidx.viewpager.R$drawable: int notification_bg_low_normal -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMarkTint -wangdaye.com.geometricweather.R$animator: int weather_hail_3 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.util.Date Rise -com.google.android.material.R$attr: int mock_label -androidx.constraintlayout.widget.R$id: int rectangles -androidx.transition.R$attr: R$attr() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode -com.google.android.material.R$style: int TextAppearance_AppCompat_Medium -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_checkedTextViewStyle -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onComplete() -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void cancelLiveLockScreen(java.lang.String,int,int) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationY -com.google.android.material.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge -com.google.android.material.R$attr: int waveOffset -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float snow -james.adaptiveicon.R$styleable: int SwitchCompat_track -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight -androidx.preference.R$attr: int preserveIconSpacing -androidx.lifecycle.ProcessLifecycleOwner$3$1: void onActivityPostResumed(android.app.Activity) -wangdaye.com.geometricweather.R$id: int stretch -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -com.google.android.material.R$styleable: int Constraint_android_visibility -okio.Timeout: long deadlineNanoTime -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_borderless_material -com.turingtechnologies.materialscrollbar.R$color: int error_color_material_dark -okhttp3.internal.http2.Http2Reader: okio.BufferedSource source -androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy -androidx.transition.R$styleable: int FontFamily_fontProviderAuthority -androidx.hilt.lifecycle.R$dimen: R$dimen() -androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context) -androidx.constraintlayout.widget.R$attr: int panelMenuListWidth -com.google.android.material.R$styleable: int ConstraintSet_flow_firstVerticalBias -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean getBrandInfo() -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DeterminateDrawable getProgressDrawable() -androidx.coordinatorlayout.R$id: int action_image -wangdaye.com.geometricweather.R$styleable: int[] OnClick -androidx.constraintlayout.widget.R$styleable: int MenuItem_iconTintMode -wangdaye.com.geometricweather.R$attr: int editTextPreferenceStyle -com.google.android.material.R$styleable: int Layout_android_layout_marginBottom -com.jaredrummler.android.colorpicker.R$id: int action_mode_close_button -com.google.android.material.R$styleable: int KeyAttribute_android_rotation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String getTo() -james.adaptiveicon.R$layout: int abc_search_view -com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_alphaChannelVisible -io.reactivex.internal.schedulers.RxThreadFactory: long serialVersionUID -wangdaye.com.geometricweather.db.entities.DailyEntity: void setSo2(java.lang.Float) -com.google.android.material.R$id: int parentPanel -androidx.appcompat.R$attr: int actionMenuTextAppearance -com.bumptech.glide.integration.okhttp.R$id: int glide_custom_view_target_tag -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.preference.R$styleable: int[] FragmentContainerView -androidx.loader.R$dimen: int notification_top_pad_large_text -com.google.android.material.appbar.AppBarLayout$BaseBehavior: AppBarLayout$BaseBehavior(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.db.entities.AlertEntity: int priority -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_material -com.google.android.material.R$color: int switch_thumb_normal_material_dark -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_borderlessButtonStyle -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_HOME_DOUBLE_TAP_ACTION_VALIDATOR -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_navigationMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String getUvIndex() -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: java.lang.String Unit -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void dispose() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_selectableItemBackground -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constrainedWidth -cyanogenmod.app.CustomTile: android.app.PendingIntent deleteIntent -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$styleable: int Toolbar_title -cyanogenmod.app.ILiveLockScreenManagerProvider -androidx.appcompat.R$attr: int splitTrack -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar -androidx.appcompat.R$drawable: int abc_text_select_handle_middle_mtrl_dark -io.reactivex.Observable: io.reactivex.Observable takeLast(int) -com.xw.repo.bubbleseekbar.R$layout: int abc_popup_menu_header_item_layout -com.google.android.material.R$attr: int drawableTopCompat -cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.StatusBarPanelCustomTile clone() -androidx.preference.R$anim: int abc_popup_enter -wangdaye.com.geometricweather.R$attr: int materialCalendarFullscreenTheme -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_swoop_duration -wangdaye.com.geometricweather.R$styleable: int[] Layout -androidx.appcompat.R$style: int TextAppearance_AppCompat_Display4 -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$id: int widget_week_week_3 -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabTextStyle -androidx.preference.R$style: int Widget_Compat_NotificationActionText -okhttp3.internal.platform.Platform: java.util.logging.Logger logger -com.jaredrummler.android.colorpicker.R$attr: int preserveIconSpacing -androidx.viewpager2.R$styleable: int RecyclerView_android_descendantFocusability -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver[] observers -wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity: ClockDayWeekWidgetConfigActivity() -com.google.android.material.R$style: int TextAppearance_Compat_Notification_Info -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onComplete() -androidx.swiperefreshlayout.R$drawable: int notification_template_icon_low_bg -androidx.customview.R$styleable: int FontFamily_fontProviderQuery -james.adaptiveicon.R$attr: int autoSizeMinTextSize -com.jaredrummler.android.colorpicker.R$layout: int abc_popup_menu_item_layout -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionButtonStyle -com.google.android.material.R$styleable: int Chip_chipIconEnabled -wangdaye.com.geometricweather.R$attr: int preferenceInformationStyle -androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior: CoordinatorLayout$Behavior() -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setTitleText(java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleTextAppearance -com.turingtechnologies.materialscrollbar.R$attr: int errorTextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature -androidx.appcompat.app.WindowDecorActionBar -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_height -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: java.lang.Throwable val$ex -androidx.constraintlayout.widget.R$styleable: int ActionBar_navigationMode -com.google.android.material.R$style: int TestStyleWithLineHeightAppearance -androidx.appcompat.R$layout: int select_dialog_multichoice_material -wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_shapeAppearance -android.didikee.donate.R$drawable: int abc_popup_background_mtrl_mult -org.greenrobot.greendao.AbstractDaoSession: AbstractDaoSession(org.greenrobot.greendao.database.Database) -wangdaye.com.geometricweather.R$color: int colorTextLight2nd -retrofit2.BuiltInConverters$StreamingResponseBodyConverter: java.lang.Object convert(java.lang.Object) -wangdaye.com.geometricweather.R$string: int aqi_4 -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_search_view_preferred_height -retrofit2.ParameterHandler$Body -com.google.android.material.R$attr: int titleMarginEnd -okhttp3.internal.tls.DistinguishedNameParser: int cur -androidx.appcompat.app.AppCompatViewInflater: AppCompatViewInflater() -okhttp3.internal.http2.Http2Stream$FramingSink: boolean finished -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: int status -androidx.appcompat.view.menu.ActionMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() -com.google.android.material.R$styleable: int AppCompatTheme_actionBarSplitStyle -wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_layout -androidx.preference.R$attr: int actionModeCopyDrawable -okhttp3.ConnectionPool$1: okhttp3.ConnectionPool this$0 -com.google.android.material.R$styleable: int AppCompatTheme_actionMenuTextColor -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitationDuration -wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetAlertEntityList() -androidx.preference.R$style: int Preference_Category -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActivityChooserView -androidx.work.R$id: int text -cyanogenmod.app.IProfileManager: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) -james.adaptiveicon.R$attr: int title -androidx.preference.R$styleable: int StateListDrawable_android_exitFadeDuration -io.reactivex.internal.util.NotificationLite: org.reactivestreams.Subscription getSubscription(java.lang.Object) -com.google.android.material.R$layout: int abc_select_dialog_material -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: java.lang.String level -wangdaye.com.geometricweather.R$attr: int dropdownListPreferredItemHeight -com.google.android.material.R$styleable: int Layout_layout_constraintWidth_min -androidx.appcompat.widget.SearchView$SavedState -androidx.appcompat.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getDensityText(android.content.Context,float) -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderCerts -com.google.android.material.progressindicator.ProgressIndicator: void setGrowMode(int) -wangdaye.com.geometricweather.R$string: int abc_searchview_description_clear -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -cyanogenmod.themes.IThemeService$Stub$Proxy: void applyDefaultTheme() -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int prefetch -com.xw.repo.bubbleseekbar.R$attr: int controlBackground -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: void run() -com.bumptech.glide.R$id: int bottom -wangdaye.com.geometricweather.db.entities.HistoryEntity: int nighttimeTemperature -android.didikee.donate.R$color: int background_material_dark -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type ownerType -android.didikee.donate.R$attr: int spinnerDropDownItemStyle -androidx.appcompat.resources.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: double Value -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: int limit -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu -com.xw.repo.bubbleseekbar.R$attr: int selectableItemBackgroundBorderless -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: int status -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_overlapAnchor -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.IWeatherServiceProviderChangeListener mProviderChangeListener -okhttp3.Response: okhttp3.Headers headers -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_27 -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_KEY -androidx.preference.R$attr: int actionModePopupWindowStyle -com.google.android.material.R$styleable: int ProgressIndicator_linearSeamless -androidx.constraintlayout.widget.R$styleable: int Transform_android_translationY -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int NOT_AVAILABLE -com.google.android.material.R$styleable: int TextAppearance_fontFamily -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionBarLayout -james.adaptiveicon.R$layout: int select_dialog_item_material -androidx.constraintlayout.widget.R$styleable: int SearchView_iconifiedByDefault -androidx.lifecycle.LifecycleRegistry$ObserverWithState: LifecycleRegistry$ObserverWithState(androidx.lifecycle.LifecycleObserver,androidx.lifecycle.Lifecycle$State) -androidx.preference.R$attr: int progressBarStyle -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.turingtechnologies.materialscrollbar.R$dimen: int notification_big_circle_margin -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -cyanogenmod.weather.WeatherInfo$DayForecast$1: java.lang.Object[] newArray(int) -retrofit2.ParameterHandler$Headers: int p -androidx.preference.R$styleable: int AppCompatTheme_actionModeShareDrawable -com.google.android.material.R$style: int ShapeAppearanceOverlay_Cut -retrofit2.ParameterHandler$HeaderMap: java.lang.reflect.Method method -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_text_size -com.google.android.material.imageview.ShapeableImageView: float getStrokeWidth() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeTextType -androidx.dynamicanimation.R$styleable: int ColorStateListItem_android_alpha -io.reactivex.internal.functions.Functions$HashSetCallable -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemIconTint -androidx.preference.R$layout: int abc_tooltip -androidx.constraintlayout.widget.R$attr: int color -com.google.android.material.R$style: int Platform_MaterialComponents -androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_material -com.bumptech.glide.R$id: int forever -androidx.preference.R$style: int Widget_AppCompat_SeekBar -james.adaptiveicon.R$attr: int radioButtonStyle -androidx.fragment.app.FragmentContainerView: void setDrawDisappearingViewsLast(boolean) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2 -androidx.viewpager.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$color: int error_color_material_light -james.adaptiveicon.R$styleable: int SwitchCompat_switchPadding -james.adaptiveicon.R$attr: int dividerVertical -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: double Value -com.google.android.material.R$styleable: int BottomNavigationView_itemRippleColor -com.google.android.material.R$color: int design_fab_stroke_end_outer_color -androidx.lifecycle.ReportFragment$LifecycleCallbacks: ReportFragment$LifecycleCallbacks() -okio.Buffer: okio.BufferedSink writeUtf8CodePoint(int) -wangdaye.com.geometricweather.R$attr: int suffixTextColor -okhttp3.Request$Builder: okhttp3.Request$Builder headers(okhttp3.Headers) -okhttp3.MediaType: java.nio.charset.Charset charset(java.nio.charset.Charset) -wangdaye.com.geometricweather.R$color: int highlighted_text_material_dark -cyanogenmod.os.Build -androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setWeather(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_hideOnContentScroll -wangdaye.com.geometricweather.R$styleable: int[] PreferenceGroup -androidx.hilt.lifecycle.R$id: int right_icon -wangdaye.com.geometricweather.R$attr: int textAppearancePopupMenuHeader -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RealFeelShaderTemperature -com.google.gson.internal.LazilyParsedNumber: java.lang.String value -androidx.appcompat.app.ActionBar -androidx.viewpager.widget.ViewPager: void setPageMarginDrawable(android.graphics.drawable.Drawable) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -androidx.preference.R$style: int PreferenceThemeOverlay -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_checkable -wangdaye.com.geometricweather.R$id: int text_input_start_icon -com.google.android.material.R$attr: int boxBackgroundColor -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void request(long) -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_ttcIndex -cyanogenmod.power.IPerformanceManager$Stub$Proxy: android.os.IBinder asBinder() -com.google.android.material.R$dimen: int mtrl_textinput_counter_margin_start -androidx.appcompat.R$styleable: int Toolbar_titleMargin -wangdaye.com.geometricweather.R$attr: int windowActionBar -okhttp3.internal.http2.Http2Connection: int lastGoodStreamId -okhttp3.RealCall: okhttp3.EventListener access$000(okhttp3.RealCall) -james.adaptiveicon.R$styleable: int[] PopupWindow -cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.content.ComponentName,int) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: AccuLocationResult$GeoPosition$Elevation$Imperial() -androidx.preference.R$attr: int fastScrollVerticalThumbDrawable -wangdaye.com.geometricweather.R$menu: int activity_main -retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type[] getLowerBounds() -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMargin -wangdaye.com.geometricweather.R$drawable: int notif_temp_63 -com.google.gson.JsonParseException: JsonParseException(java.lang.String,java.lang.Throwable) -androidx.appcompat.R$dimen: int abc_dialog_fixed_width_major -james.adaptiveicon.R$styleable: int MenuItem_actionLayout -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: CNWeatherResult$Realtime$Wind() -com.google.android.material.R$styleable: int RecyclerView_android_orientation -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog -androidx.preference.ListPreferenceDialogFragmentCompat -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit KM -cyanogenmod.power.PerformanceManager: cyanogenmod.power.IPerformanceManager sService -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: double lon -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -cyanogenmod.app.ILiveLockScreenManager: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_pressed_z -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_android_minHeight -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias -com.github.rahatarmanahmed.cpv.CircularProgressView$6 -io.reactivex.internal.queue.SpscArrayQueue: int calcElementOffset(long) -wangdaye.com.geometricweather.R$drawable: int live_wallpaper_thumbnail -androidx.appcompat.R$style: int TextAppearance_AppCompat -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getIdType(int) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_height -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver -android.didikee.donate.R$attr: int listPreferredItemHeight -james.adaptiveicon.R$styleable: int AppCompatTheme_panelMenuListWidth -wangdaye.com.geometricweather.R$id: int default_activity_button -androidx.preference.R$drawable: int notification_bg_low_pressed -cyanogenmod.app.PartnerInterface: int ZEN_MODE_OFF -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_NULL_SHA -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherText(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -com.google.android.material.R$string: int mtrl_picker_out_of_range -androidx.drawerlayout.R$styleable: int[] FontFamilyFont -okhttp3.internal.ws.WebSocketWriter$FrameSink: okhttp3.internal.ws.WebSocketWriter this$0 -androidx.appcompat.R$color: int abc_decor_view_status_guard -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setSunRise(java.lang.String) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Small -okio.Buffer: okio.BufferedSink writeByte(int) -james.adaptiveicon.R$attr: int actionBarWidgetTheme -okhttp3.MultipartBody$Part -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus -androidx.swiperefreshlayout.R$attr: int fontVariationSettings -androidx.loader.R$attr: R$attr() -cyanogenmod.app.CMStatusBarManager: void publishTile(java.lang.String,int,cyanogenmod.app.CustomTile) -com.turingtechnologies.materialscrollbar.R$id: int italic -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerReceiver -retrofit2.BuiltInConverters$StreamingResponseBodyConverter: BuiltInConverters$StreamingResponseBodyConverter() -cyanogenmod.app.ThemeVersion: cyanogenmod.app.ThemeVersion$ComponentVersion getComponentVersion(cyanogenmod.app.ThemeComponent) -androidx.appcompat.widget.ViewStubCompat: ViewStubCompat(android.content.Context,android.util.AttributeSet) -okhttp3.internal.http.RealInterceptorChain: int connectTimeoutMillis() -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomAppBar -com.google.android.material.R$styleable: int ConstraintSet_android_scaleY -android.didikee.donate.R$styleable: int AppCompatTheme_colorButtonNormal -androidx.loader.R$attr: int fontProviderFetchTimeout -io.reactivex.internal.observers.DeferredScalarDisposable -wangdaye.com.geometricweather.R$styleable: int[] MotionLayout -cyanogenmod.weatherservice.ServiceRequestResult$Builder: java.util.List mLocationLookupList -androidx.hilt.work.R$styleable: int GradientColor_android_centerX -com.google.android.material.R$styleable: int[] PropertySet -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getUrl() -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemSummary(java.lang.String) -james.adaptiveicon.R$styleable: int Spinner_popupTheme -androidx.constraintlayout.widget.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -com.google.android.material.R$styleable: int CardView_cardBackgroundColor -com.google.android.material.textfield.TextInputLayout: void setErrorContentDescription(java.lang.CharSequence) -com.google.android.material.R$id: int search_button -androidx.activity.R$layout: int custom_dialog -io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiFunction,io.reactivex.functions.Consumer) -wangdaye.com.geometricweather.R$xml: int perference_service_provider -com.google.android.material.R$style: int Widget_AppCompat_TextView -okhttp3.internal.platform.Platform: int WARN -cyanogenmod.themes.ThemeChangeRequest$Builder: ThemeChangeRequest$Builder() -androidx.appcompat.R$styleable: int AppCompatTextView_fontVariationSettings -wangdaye.com.geometricweather.R$dimen: int abc_control_inset_material -com.xw.repo.bubbleseekbar.R$attr: int bsb_always_show_bubble_delay -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onError(java.lang.Throwable) -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getSoundMode() -com.google.android.material.R$styleable: int Toolbar_logoDescription -com.jaredrummler.android.colorpicker.NestedGridView -com.google.android.material.textfield.TextInputLayout: void setErrorIconTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_enterFadeDuration -okhttp3.internal.cache.DiskLruCache: boolean journalRebuildRequired() -okhttp3.internal.ws.WebSocketProtocol: int B1_MASK_LENGTH -androidx.preference.R$attr: int shouldDisableView -androidx.preference.R$color: int material_deep_teal_500 -okhttp3.logging.LoggingEventListener: void responseBodyStart(okhttp3.Call) -com.google.android.material.R$dimen: int material_font_1_3_box_collapsed_padding_top -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowRadius -androidx.hilt.R$id: int accessibility_custom_action_7 -androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getMoldDescription() -okhttp3.logging.HttpLoggingInterceptor$Logger: okhttp3.logging.HttpLoggingInterceptor$Logger DEFAULT -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_voiceIcon -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Borderless -androidx.preference.R$drawable: int abc_text_select_handle_right_mtrl_light -cyanogenmod.externalviews.ExternalView$2 -com.google.android.material.R$color: int material_grey_800 -androidx.appcompat.widget.AppCompatImageButton: void setSupportImageTintList(android.content.res.ColorStateList) -retrofit2.RequestFactory$Builder: okhttp3.Headers parseHeaders(java.lang.String[]) -androidx.appcompat.R$attr: int fontProviderCerts -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_width_major -james.adaptiveicon.R$drawable: int notification_bg -android.didikee.donate.R$layout: int notification_template_part_time -cyanogenmod.platform.Manifest -com.xw.repo.bubbleseekbar.R$id: int start -okhttp3.internal.http2.Huffman: byte[] decode(byte[]) -androidx.appcompat.widget.AppCompatTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -androidx.lifecycle.FullLifecycleObserver: void onResume(androidx.lifecycle.LifecycleOwner) -androidx.viewpager.widget.PagerTabStrip: void setTextSpacing(int) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.db.entities.DailyEntity: long time -androidx.activity.R$dimen: int notification_right_side_padding_top -okhttp3.internal.platform.Platform -okhttp3.package-info -cyanogenmod.power.PerformanceManager: java.lang.String POWER_PROFILE_CHANGED -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.dynamicanimation.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getCity() -androidx.preference.R$attr: int buttonGravity -androidx.work.R$style: int TextAppearance_Compat_Notification_Line2 -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_trackTintMode -wangdaye.com.geometricweather.R$attr: int behavior_draggable -android.support.v4.app.INotificationSideChannel$Stub: boolean setDefaultImpl(android.support.v4.app.INotificationSideChannel) -okio.Sink: okio.Timeout timeout() -androidx.cardview.R$color: int cardview_shadow_start_color -com.google.android.material.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallback -androidx.preference.R$dimen: int notification_top_pad -androidx.preference.R$styleable: int Preference_android_singleLineTitle -okio.Buffer: boolean isOpen() -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: double mHigh -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_left_mtrl_dark -androidx.lifecycle.SavedStateHandle: java.util.Map mRegular -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemIconDisabledAlpha -io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean checkTerminated(boolean,boolean,io.reactivex.Observer,boolean) -androidx.preference.R$styleable: int Toolbar_title -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -androidx.transition.R$dimen: R$dimen() -okhttp3.internal.connection.RealConnection: boolean isMultiplexed() -cyanogenmod.providers.CMSettings$NameValueCache: java.util.HashMap mValues -wangdaye.com.geometricweather.R$string: int content_des_co -android.didikee.donate.R$drawable: int abc_ic_star_half_black_48dp -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionMenuTextColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX() -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_summaryOn -androidx.coordinatorlayout.R$attr: int layout_dodgeInsetEdges -com.turingtechnologies.materialscrollbar.R$drawable: int design_fab_background -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: retrofit2.Call $this_awaitResponse$inlined -com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy[] values() -io.reactivex.Observable: io.reactivex.Observable window(long,long) -com.google.android.material.R$style: int Theme_AppCompat_Dialog_Alert -androidx.lifecycle.LifecycleRegistry: androidx.arch.core.internal.FastSafeIterableMap mObserverMap -retrofit2.converter.gson.GsonRequestBodyConverter: java.lang.Object convert(java.lang.Object) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: java.lang.String date -okhttp3.Response: okhttp3.ResponseBody body -com.google.android.material.imageview.ShapeableImageView: void setStrokeWidthResource(int) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver parent -james.adaptiveicon.R$color: int bright_foreground_inverse_material_light -com.google.android.material.R$attr: int colorControlHighlight -okhttp3.internal.http2.Http2Connection$Builder: okio.BufferedSource source -okio.ByteString: long serialVersionUID -com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setCircularRevealScrimColor(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setStatus(int) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button -androidx.constraintlayout.widget.R$layout: int abc_screen_toolbar -androidx.lifecycle.Lifecycling: androidx.lifecycle.GenericLifecycleObserver getCallback(java.lang.Object) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setO3(java.lang.Float) -wangdaye.com.geometricweather.R$string: int feedback_align_end -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_text_color -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Button -androidx.viewpager.R$integer: R$integer() -com.google.android.material.R$drawable: int btn_radio_on_mtrl -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -com.google.android.material.R$color: int material_on_surface_stroke -com.jaredrummler.android.colorpicker.R$styleable: int[] Spinner -androidx.appcompat.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -com.google.android.material.textfield.TextInputLayout: void setHelperTextColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$id: int dimensions -com.google.android.material.R$styleable: int ConstraintSet_android_translationZ -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_visible -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial Imperial -wangdaye.com.geometricweather.settings.dialogs.WechatDonateDialog -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: okhttp3.internal.http2.Settings val$settings -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -androidx.dynamicanimation.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light -androidx.viewpager.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: int UnitType -androidx.preference.R$style: int Preference_SwitchPreferenceCompat -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeAppearance -cyanogenmod.providers.WeatherContract$WeatherColumns -okhttp3.internal.http2.Http2Connection: int nextStreamId -com.jaredrummler.android.colorpicker.R$color: int abc_hint_foreground_material_dark -androidx.hilt.lifecycle.R$dimen: int notification_small_icon_background_padding -androidx.appcompat.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -wangdaye.com.geometricweather.R$layout: int dialog_running_in_background_o -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_1 -com.google.android.material.R$attr: int prefixText -com.google.android.material.R$styleable: int TextAppearance_android_textSize -wangdaye.com.geometricweather.R$id: int mtrl_card_checked_layer_id -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl build() -androidx.customview.R$dimen: int compat_button_padding_horizontal_material -androidx.preference.R$styleable: int DrawerArrowToggle_arrowShaftLength -androidx.transition.R$color: int notification_action_color_filter -android.didikee.donate.R$id: int select_dialog_listview -com.google.android.material.R$styleable: int TextInputLayout_prefixTextColor -wangdaye.com.geometricweather.R$string: int greenDAO -androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -com.google.android.material.R$color: int test_mtrl_calendar_day_selected -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) -com.google.android.material.R$dimen: int mtrl_extended_fab_start_padding_icon -james.adaptiveicon.R$attr: int textAllCaps -retrofit2.CallAdapter: java.lang.Object adapt(retrofit2.Call) -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property District -com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetBottom -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_toLeftOf -io.reactivex.internal.queue.SpscArrayQueue: java.lang.Object lvElement(int) -androidx.constraintlayout.widget.R$id: int topPanel -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.functions.Function zipper -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeRealFeelTemperature() -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_DialogWhenLarge -com.google.android.material.R$attr: int singleChoiceItemLayout -wangdaye.com.geometricweather.R$string: int settings_notification_hide_big_view_off -androidx.preference.R$id: int search_button -james.adaptiveicon.R$color -wangdaye.com.geometricweather.R$styleable: int Constraint_barrierAllowsGoneWidgets -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getCounterOverflowDescription() -androidx.constraintlayout.widget.R$attr: int constraint_referenced_ids -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.preference.R$styleable: int CompoundButton_buttonTintMode -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: Pollen(java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) -io.reactivex.subjects.PublishSubject$PublishDisposable -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Button -com.google.android.material.R$style: int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize -com.turingtechnologies.materialscrollbar.R$attr: int activityChooserViewStyle -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getShowMotionSpec() -wangdaye.com.geometricweather.R$id: int standard -com.google.android.material.R$color: int cardview_shadow_start_color -james.adaptiveicon.R$layout: int notification_action -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeDegreeDayTemperature -com.google.android.material.R$dimen: int design_snackbar_max_width -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.os.Bundle mOptions -cyanogenmod.profiles.ConnectionSettings -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: ObservableBufferBoundary$BufferBoundaryObserver(io.reactivex.Observer,io.reactivex.ObservableSource,io.reactivex.functions.Function,java.util.concurrent.Callable) -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginBottom(int) -com.turingtechnologies.materialscrollbar.R$styleable: int[] FontFamily -androidx.appcompat.R$attr: int listPreferredItemPaddingStart -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_editor_absoluteX -wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_item_icon_padding -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets -com.google.android.material.R$attr: int chipSpacingHorizontal -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -androidx.vectordrawable.animated.R$id: int action_image -com.google.android.material.R$attr: int chipSpacingVertical -androidx.preference.R$styleable: int SearchView_submitBackground -wangdaye.com.geometricweather.R$attr: int customColorDrawableValue -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: java.util.concurrent.atomic.AtomicBoolean once -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.db.entities.DailyEntityDao -com.bumptech.glide.integration.okhttp.R$layout: int notification_template_icon_group -androidx.hilt.R$drawable -androidx.customview.R$id: int tag_unhandled_key_event_manager -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizePresetSizes -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: ObservableScalarXMap$ScalarDisposable(io.reactivex.Observer,java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String logo -wangdaye.com.geometricweather.R$array: int air_quality_co_units -retrofit2.Response: java.lang.String toString() -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context) -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitle_inputter -android.didikee.donate.R$id: int custom -cyanogenmod.app.IProfileManager: boolean isEnabled() -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex yesterday -androidx.coordinatorlayout.R$id: int action_divider -com.jaredrummler.android.colorpicker.R$attr: int hideOnContentScroll -android.didikee.donate.R$anim: int abc_shrink_fade_out_from_bottom -com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context,android.util.AttributeSet,int) -okhttp3.Cookie: java.util.regex.Pattern MONTH_PATTERN -okio.BufferedSource: java.io.InputStream inputStream() -io.reactivex.Observable: java.util.concurrent.Future toFuture() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitation(java.lang.Float) -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setIcon(android.graphics.Bitmap) -wangdaye.com.geometricweather.R$id: int item_tag -cyanogenmod.app.ProfileManager: java.lang.String TAG -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Small_Inverse -com.jaredrummler.android.colorpicker.R$color: int dim_foreground_material_dark -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_end -androidx.constraintlayout.widget.R$styleable: int Toolbar_buttonGravity -android.didikee.donate.R$attr: int activityChooserViewStyle -com.xw.repo.bubbleseekbar.R$color: int primary_dark_material_dark -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: double mLow -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position -wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendHourlyProvider: WidgetTrendHourlyProvider() -androidx.swiperefreshlayout.R$color: int secondary_text_default_material_light -androidx.lifecycle.Lifecycling$1: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -androidx.hilt.R$string -androidx.preference.R$attr: int keylines -com.turingtechnologies.materialscrollbar.R$attr: int actionModeSplitBackground -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_PrimarySurface -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_Solid -androidx.vectordrawable.animated.R$dimen: int compat_control_corner_material -androidx.preference.R$dimen: int abc_select_dialog_padding_start_material -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.disposables.CompositeDisposable disposables -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_type -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMarkTint -okhttp3.internal.platform.Platform: java.lang.Object getStackTraceForCloseable(java.lang.String) -com.google.android.material.R$styleable: int MenuView_android_itemTextAppearance -androidx.recyclerview.R$color: int notification_icon_bg_color -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragThreshold -androidx.constraintlayout.widget.R$attr: int path_percent -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getPowerProfile -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderCerts -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onComplete() -james.adaptiveicon.R$color: int abc_tint_edittext -com.jaredrummler.android.colorpicker.R$styleable: int[] PopupWindowBackgroundState -androidx.appcompat.widget.Toolbar: android.content.Context getPopupContext() -okio.Utf8: long size(java.lang.String) -okhttp3.internal.http2.Huffman$Node: int symbol -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onComplete() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: double Value -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline3 -android.didikee.donate.R$layout: int select_dialog_item_material -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,io.reactivex.Scheduler) -androidx.viewpager.R$attr: int font -wangdaye.com.geometricweather.R$attr: int persistent -android.didikee.donate.R$attr: int backgroundTintMode -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -james.adaptiveicon.R$drawable: int abc_textfield_search_activated_mtrl_alpha -androidx.preference.R$dimen: int abc_action_bar_content_inset_material -android.didikee.donate.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_buttonIconDimen -okhttp3.internal.connection.StreamAllocation: void streamFailed(java.io.IOException) -androidx.preference.UnPressableLinearLayout: UnPressableLinearLayout(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean isDisposed() -android.didikee.donate.R$styleable: int SearchView_searchIcon -cyanogenmod.themes.IThemeChangeListener: void onProgress(int) -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationY -cyanogenmod.externalviews.ExternalView$7: cyanogenmod.externalviews.ExternalView this$0 -com.google.android.material.R$styleable: int Layout_layout_constraintDimensionRatio -androidx.constraintlayout.widget.R$anim: int abc_grow_fade_in_from_bottom -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -okhttp3.Address: java.util.List connectionSpecs() -com.xw.repo.bubbleseekbar.R$color: int dim_foreground_disabled_material_light -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.loader.R$id: int action_container -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getUvLevel() -okhttp3.HttpUrl: java.util.List pathSegments() -com.google.android.material.R$dimen: int mtrl_low_ripple_focused_alpha -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ImageButton -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitationProbability -wangdaye.com.geometricweather.R$attr: int indicatorColor -james.adaptiveicon.R$dimen: int tooltip_corner_radius -io.reactivex.internal.util.NotificationLite$DisposableNotification: io.reactivex.disposables.Disposable upstream -com.google.android.material.chip.Chip: void setShowMotionSpecResource(int) -android.didikee.donate.R$id: int search_edit_frame -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: AccuLocationResult$TimeZone() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer realFeelShaderTemperature -androidx.preference.R$color: int primary_text_disabled_material_dark -cyanogenmod.providers.CMSettings$System: long getLong(android.content.ContentResolver,java.lang.String,long) -androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton -android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.constraintlayout.widget.R$styleable: int MockView_mock_showDiagonals -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_summaryOn -wangdaye.com.geometricweather.R$drawable: int ic_circle_white -androidx.transition.R$styleable: int[] FontFamilyFont -androidx.room.MultiInstanceInvalidationService: MultiInstanceInvalidationService() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onComplete() -wangdaye.com.geometricweather.R$styleable: int[] KeyFramesAcceleration -org.greenrobot.greendao.AbstractDao: long insertOrReplace(java.lang.Object) -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: float getDegree() -androidx.appcompat.R$id: int content -androidx.drawerlayout.R$drawable: int notification_icon_background -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionDropDownStyle -okhttp3.internal.Util: int decodeHexDigit(char) -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean done -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,io.reactivex.Scheduler) -androidx.appcompat.R$attr: int drawableStartCompat -com.google.gson.stream.JsonReader: boolean isLiteral(char) -wangdaye.com.geometricweather.R$layout: int notification_template_icon_group -com.google.android.material.internal.ParcelableSparseArray: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$attr: int buttonCompat -wangdaye.com.geometricweather.R$styleable: int[] Motion -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean isEntityUpdateable() -wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_3_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain -wangdaye.com.geometricweather.R$id: int widget_clock_day_week -com.google.android.material.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.google.android.material.R$attr: int cornerFamilyBottomRight -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onNext(java.lang.Object) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LAUNCHER -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List minutelyForecast -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String weatherSource -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX getIndices() -wangdaye.com.geometricweather.R$attr: int actionBarStyle -wangdaye.com.geometricweather.R$color: int material_slider_active_tick_marks_color -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_android_gravity -com.xw.repo.bubbleseekbar.R$string: int abc_activitychooserview_choose_application -androidx.legacy.coreutils.R$styleable: int[] GradientColor -androidx.appcompat.R$dimen: int abc_list_item_height_large_material -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemSummary(java.lang.String) -wangdaye.com.geometricweather.R$color: int colorTextContent_light -wangdaye.com.geometricweather.R$color: int material_on_primary_disabled -cyanogenmod.app.LiveLockScreenInfo$Builder -com.turingtechnologies.materialscrollbar.R$attr: int iconSize -androidx.drawerlayout.R$id: int right_side -cyanogenmod.profiles.AirplaneModeSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -com.google.android.material.R$styleable: int RecyclerView_spanCount -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver -cyanogenmod.app.CustomTile$ExpandedStyle: void internalSetExpandedItems(java.util.ArrayList) -com.google.android.material.R$id: int outgoing -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_baselineAligned -com.google.android.material.R$layout: int mtrl_calendar_horizontal -wangdaye.com.geometricweather.R$id: int widget_day_subtitle -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -wangdaye.com.geometricweather.R$attr: int waveVariesBy -com.bumptech.glide.integration.okhttp.R$id: int start -android.didikee.donate.R$dimen: int abc_button_padding_horizontal_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String logo -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_statusBarForeground -io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier valueOf(java.lang.String) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitationProbability -androidx.work.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setDayIndicatorRotation(float) -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar -android.didikee.donate.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_3 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -okhttp3.logging.LoggingEventListener$Factory: okhttp3.logging.HttpLoggingInterceptor$Logger logger -android.support.v4.app.INotificationSideChannel: void cancel(java.lang.String,int,java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: double Value -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_exitFadeDuration -androidx.core.R$attr: int font -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_106 -cyanogenmod.externalviews.KeyguardExternalView: java.lang.String TAG -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy -androidx.appcompat.R$id: int activity_chooser_view_content -io.reactivex.internal.util.HashMapSupplier: java.util.concurrent.Callable asCallable() -okhttp3.HttpUrl: java.lang.String url -wangdaye.com.geometricweather.R$layout: int material_clockface_textview -androidx.appcompat.R$drawable: int abc_ratingbar_indicator_material -cyanogenmod.app.ICMTelephonyManager: void setDefaultPhoneSub(int) -com.google.android.material.bottomappbar.BottomAppBar: int getFabAlignmentMode() -androidx.preference.R$styleable: int MenuItem_android_id -okhttp3.internal.http2.Http2Connection$4: Http2Connection$4(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,java.util.List) -com.google.android.material.R$styleable: int Constraint_android_minWidth -androidx.loader.content.Loader: void unregisterListener(androidx.loader.content.Loader$OnLoadCompleteListener) -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Line2 -com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay_v14 -wangdaye.com.geometricweather.db.entities.DaoMaster: int SCHEMA_VERSION -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int state -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String level -com.xw.repo.bubbleseekbar.R$id: int action_image -com.google.android.material.R$attr: int suggestionRowLayout -wangdaye.com.geometricweather.R$styleable: int Slider_haloColor -james.adaptiveicon.R$anim: int abc_fade_out -wangdaye.com.geometricweather.R$styleable: int RecyclerView_stackFromEnd -okhttp3.internal.ws.WebSocketReader: boolean isFinalFrame -io.reactivex.internal.util.EmptyComponent: void dispose() -wangdaye.com.geometricweather.R$styleable: int Slider_trackHeight -wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedDescription(java.lang.String) -okhttp3.internal.cache.DiskLruCache: boolean closed -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String ShortPhrase -androidx.core.R$drawable: int notification_bg_low_normal -androidx.preference.R$attr: int listDividerAlertDialog -com.jaredrummler.android.colorpicker.R$layout: int preference_category -com.jaredrummler.android.colorpicker.R$dimen: int abc_cascading_menus_min_smallest_width -retrofit2.converter.gson.GsonRequestBodyConverter: GsonRequestBodyConverter(com.google.gson.Gson,com.google.gson.TypeAdapter) -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_NoActionBar -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.util.ErrorMode errorMode -com.google.android.material.R$styleable: int Slider_tickColor -wangdaye.com.geometricweather.R$drawable: int flag_el -wangdaye.com.geometricweather.R$style: int Preference_PreferenceScreen_Material -androidx.preference.R$styleable: int Spinner_popupTheme -okhttp3.internal.http1.Http1Codec$AbstractSource: okio.ForwardingTimeout timeout -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastVerticalBias -androidx.appcompat.R$attr: int dividerVertical -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: java.util.Queue sources -com.google.android.material.R$styleable: int ConstraintSet_android_visibility -okhttp3.Cache$CacheRequestImpl -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginLeft -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.HistoryEntity,int) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$layout: int widget_day_vertical -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_LOW_POWER_VALIDATOR -cyanogenmod.providers.CMSettings$Secure: int getInt(android.content.ContentResolver,java.lang.String) -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit[] values() -wangdaye.com.geometricweather.R$bool: int enable_system_job_service_default -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -james.adaptiveicon.R$dimen: int notification_content_margin_start -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -wangdaye.com.geometricweather.R$id: int toggle -androidx.appcompat.widget.ScrollingTabContainerView: void setAllowCollapse(boolean) -cyanogenmod.profiles.StreamSettings$1: java.lang.Object[] newArray(int) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -wangdaye.com.geometricweather.R$attr: int errorTextColor -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) -james.adaptiveicon.R$styleable: int TextAppearance_fontVariationSettings -android.didikee.donate.R$id: int action_bar_subtitle -com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_minimum_range -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.Scheduler scheduler -com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_colorShape -cyanogenmod.themes.IThemeService$Stub$Proxy: android.os.IBinder mRemote -com.xw.repo.bubbleseekbar.R$attr: int titleMarginBottom -okhttp3.internal.io.FileSystem$1: okio.Source source(java.io.File) -com.google.android.material.R$styleable: int StateListDrawable_android_enterFadeDuration -james.adaptiveicon.R$dimen: int abc_select_dialog_padding_start_material -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_title_material_toolbar -com.google.android.material.R$dimen: int notification_content_margin_start -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity -wangdaye.com.geometricweather.R$styleable: int State_constraints -com.google.android.material.tabs.TabLayout: void setInlineLabel(boolean) -io.reactivex.Observable: java.lang.Iterable blockingNext() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyle -androidx.drawerlayout.widget.DrawerLayout$SavedState: android.os.Parcelable$Creator CREATOR -androidx.appcompat.widget.ActionBarOverlayLayout: ActionBarOverlayLayout(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$attr: int paddingBottomNoButtons -android.didikee.donate.R$id: int default_activity_button -com.google.android.material.R$styleable: int CollapsingToolbarLayout_contentScrim -androidx.preference.R$styleable: int ActionBar_divider -com.google.android.material.R$styleable: int[] Chip -okio.Buffer: okio.Buffer writeLongLe(long) -com.bumptech.glide.load.engine.GlideException: java.lang.Exception getOrigin() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginTop -com.google.android.material.R$attr: int pivotAnchor -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setStatus(int) -okio.Timeout: okio.Timeout clearTimeout() -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer -com.xw.repo.bubbleseekbar.R$attr: int subMenuArrow -com.turingtechnologies.materialscrollbar.R$dimen: int abc_search_view_preferred_width -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ListView_DropDown -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_5 -wangdaye.com.geometricweather.R$styleable: int ActionBar_background -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void data(boolean,int,okio.BufferedSource,int) -androidx.preference.R$layout: int preference_widget_seekbar_material -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircleRadius -wangdaye.com.geometricweather.R$attr: int cpv_startAngle -androidx.customview.R$layout: R$layout() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String pubTime -wangdaye.com.geometricweather.R$string: int key_trend_horizontal_line_switch -com.google.android.material.tabs.TabLayout$TabView -com.google.android.material.R$dimen: int mtrl_calendar_header_toggle_margin_top -cyanogenmod.weatherservice.WeatherProviderService: void onConnected() -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String insee -wangdaye.com.geometricweather.R$drawable: int ic_mtrl_checked_circle -androidx.preference.R$attr: int widgetLayout -wangdaye.com.geometricweather.R$attr: int itemHorizontalPadding -james.adaptiveicon.R$dimen: int abc_dropdownitem_icon_width -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTint -cyanogenmod.app.ProfileManager -com.turingtechnologies.materialscrollbar.R$bool: int mtrl_btn_textappearance_all_caps -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents -androidx.loader.R$color: int notification_action_color_filter -okhttp3.Cache: okhttp3.internal.cache.InternalCache internalCache -android.didikee.donate.R$attr: int ratingBarStyleSmall -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -androidx.appcompat.R$color: int abc_hint_foreground_material_dark -com.google.android.material.R$dimen: int mtrl_fab_elevation -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_height_major -wangdaye.com.geometricweather.R$attr: int backgroundTint -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_elevation -com.google.android.material.R$style: int Animation_AppCompat_Dialog -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context,android.util.AttributeSet) -io.reactivex.disposables.ReferenceDisposable -okhttp3.RealCall: okhttp3.internal.connection.StreamAllocation streamAllocation() -androidx.hilt.R$drawable: int notification_template_icon_low_bg -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionLayout -androidx.constraintlayout.widget.R$attr: int minHeight -james.adaptiveicon.R$drawable: int abc_dialog_material_background -wangdaye.com.geometricweather.R$id: int month_grid -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void clear() -androidx.preference.R$attr: int colorPrimary -com.google.android.material.R$styleable: int RadialViewGroup_materialCircleRadius -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: AccuCurrentResult$PrecipitationSummary$Precipitation$Metric() -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_constraint_referenced_ids -androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_EditText -io.reactivex.internal.subscribers.StrictSubscriber: boolean done -okhttp3.internal.http2.Http2Connection: long awaitPingsSent -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getLevel() -okhttp3.Cache: int writeAbortCount -wangdaye.com.geometricweather.R$string: int mtrl_picker_day_of_week_column_header -com.google.android.material.R$color: int design_default_color_on_surface -androidx.viewpager.R$id: int tag_transition_group -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties properties -wangdaye.com.geometricweather.R$attr: int materialCircleRadius -cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String CITY_NAME -io.reactivex.Observable: io.reactivex.Observable ambWith(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getDescription() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeWindSpeed -okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV2 -james.adaptiveicon.R$style: int Theme_AppCompat -com.google.android.material.R$styleable: int AppCompatTheme_radioButtonStyle -androidx.constraintlayout.widget.R$attr: int mock_showDiagonals -com.google.android.material.R$anim: int btn_checkbox_to_checked_icon_null_animation -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String CountryID -com.google.android.material.R$id: int save_overlay_view -androidx.preference.R$string: int abc_menu_meta_shortcut_label -okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE_BACKUP -com.jaredrummler.android.colorpicker.R$dimen: int abc_list_item_padding_horizontal_material -com.google.android.material.R$plurals: int mtrl_badge_content_description -wangdaye.com.geometricweather.R$attr: int itemIconSize -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarItemBackground -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomSheet_Modal -com.turingtechnologies.materialscrollbar.R$id: int spacer -wangdaye.com.geometricweather.R$drawable: int ic_state_uncheck -com.google.android.material.R$attr: int flow_maxElementsWrap -okio.BufferedSink: okio.BufferedSink writeHexadecimalUnsignedLong(long) -wangdaye.com.geometricweather.R$attr: int cornerRadius -james.adaptiveicon.R$styleable: int ActionBar_backgroundSplit -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: java.lang.String MESSAGE -wangdaye.com.geometricweather.R$styleable: int[] GradientColorItem -okhttp3.internal.cache2.Relay$RelaySource -okhttp3.ConnectionSpec: boolean supportsTlsExtensions() -androidx.constraintlayout.widget.R$dimen: int abc_text_size_title_material_toolbar -androidx.vectordrawable.R$style: int Widget_Compat_NotificationActionText -androidx.appcompat.app.ToolbarActionBar -com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_default -wangdaye.com.geometricweather.R$id: int visible_removing_fragment_view_tag -com.turingtechnologies.materialscrollbar.R$id: int item_touch_helper_previous_elevation -androidx.preference.R$attr: int contentInsetRight -james.adaptiveicon.R$id: int tabMode -wangdaye.com.geometricweather.R$animator: int weather_rain_3 -androidx.appcompat.widget.LinearLayoutCompat -com.google.android.material.tabs.TabLayout: void setupWithViewPager(androidx.viewpager.widget.ViewPager) -android.didikee.donate.R$style: int Theme_AppCompat_Dialog -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy -okhttp3.Response$Builder: okhttp3.Response$Builder header(java.lang.String,java.lang.String) -com.google.android.material.slider.BaseSlider: void setTickVisible(boolean) -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setLabelVisibilityMode(int) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$height -androidx.appcompat.R$id: int custom -com.xw.repo.bubbleseekbar.R$bool: int abc_config_actionMenuItemAllCaps -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_popupTheme -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_d -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification -androidx.preference.R$drawable: int abc_control_background_material -com.google.android.material.R$styleable: int[] RangeSlider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String weather -cyanogenmod.externalviews.ExternalView$3: ExternalView$3(cyanogenmod.externalviews.ExternalView) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_4 -okio.SegmentPool: long byteCount -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton -com.jaredrummler.android.colorpicker.R$attr: int buttonBarNegativeButtonStyle -com.google.android.material.R$styleable: int SearchView_goIcon -android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -wangdaye.com.geometricweather.location.services.LocationService: void cancel() -wangdaye.com.geometricweather.R$layout: int activity_daily_trend_display_manage -android.didikee.donate.R$style: int Widget_AppCompat_PopupMenu -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onError(java.lang.Throwable) -okio.RealBufferedSink: void flush() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber,java.util.concurrent.atomic.AtomicReference) -androidx.constraintlayout.widget.R$attr: int actionOverflowMenuStyle -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastHorizontalStyle -androidx.preference.R$color: int bright_foreground_inverse_material_dark -cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.ICMStatusBarManager mStatusBarService -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: FitSystemBarViewPager(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int AppCompatTheme_android_windowAnimationStyle -wangdaye.com.geometricweather.R$id: int mtrl_calendar_year_selector_frame -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSearchResultTitle -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver) -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -james.adaptiveicon.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherPhase(java.lang.String) -cyanogenmod.weather.WeatherLocation: WeatherLocation() -com.google.android.material.internal.ScrimInsetsFrameLayout: void setScrimInsetForeground(android.graphics.drawable.Drawable) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_SNOW -wangdaye.com.geometricweather.R$style: int Base_DialogWindowTitle_AppCompat -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -com.google.android.material.R$layout: int abc_tooltip -okhttp3.internal.Internal: okhttp3.internal.connection.RealConnection get(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) -com.google.android.material.R$styleable: int MaterialCalendarItem_itemStrokeWidth -androidx.recyclerview.widget.RecyclerView: void setPreserveFocusAfterLayout(boolean) -androidx.vectordrawable.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.R$attr: int preferenceFragmentListStyle -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: ObservableSampleTimed$SampleTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String so2Desc -com.google.android.material.R$styleable: int FontFamilyFont_android_font -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamily -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String getProviderName(android.content.Context) -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeight -wangdaye.com.geometricweather.R$drawable: int notif_temp_78 -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_actionTextColorAlpha -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableItem_android_drawable -androidx.preference.R$drawable: int notification_bg_low_normal -com.xw.repo.bubbleseekbar.R$attr: int titleTextAppearance -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: IExternalViewProvider$Stub$Proxy(android.os.IBinder) -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onError(java.lang.Throwable) -cyanogenmod.weather.WeatherInfo: double getWindSpeed() -io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.MaybeSource) -androidx.preference.PreferenceManager: void setOnNavigateToScreenListener(androidx.preference.PreferenceManager$OnNavigateToScreenListener) -com.google.android.material.datepicker.CalendarConstraints: android.os.Parcelable$Creator CREATOR -androidx.appcompat.R$drawable: int abc_seekbar_tick_mark_material -androidx.work.R$dimen: int notification_action_icon_size -androidx.preference.R$dimen: int abc_button_padding_vertical_material -com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_button_bar_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: java.lang.String Unit -androidx.preference.R$styleable: int MenuItem_contentDescription -cyanogenmod.externalviews.KeyguardExternalView$8 -wangdaye.com.geometricweather.R$attr: int selectorSize -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_elevation -com.google.android.material.R$styleable: int AppCompatTheme_editTextBackground -androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Dialog -com.google.android.material.appbar.AppBarLayout: void setOrientation(int) -androidx.appcompat.R$dimen: int abc_button_inset_horizontal_material -com.google.android.material.R$styleable: int KeyCycle_wavePeriod -androidx.preference.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.work.R$id: int title -cyanogenmod.app.CustomTile$ExpandedStyle: cyanogenmod.app.CustomTile$ExpandedItem[] expandedItems -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Medium -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconPadding -okhttp3.internal.ws.RealWebSocket: void failWebSocket(java.lang.Exception,okhttp3.Response) -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.R$dimen: int abc_button_padding_horizontal_material -android.didikee.donate.R$style: int Animation_AppCompat_Dialog -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: IKeyguardExternalViewCallbacks$Stub() -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver -androidx.preference.R$styleable: int Toolbar_subtitleTextAppearance -wangdaye.com.geometricweather.R$string: int content_desc_weather_icon -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -com.jaredrummler.android.colorpicker.R$dimen: int notification_large_icon_width -okhttp3.logging.HttpLoggingInterceptor$Logger$1 -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.reflect.Type responseType() -com.google.android.material.R$attr: int titleMarginStart -androidx.preference.R$color: int accent_material_light -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap -okhttp3.internal.Util: void checkOffsetAndCount(long,long,long) -cyanogenmod.externalviews.ExternalViewProperties: int mWidth -wangdaye.com.geometricweather.R$color: int striking_red -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String unit -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState valueOf(java.lang.String) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$attr: int percentX -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: double seaLevel -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: double Value -com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -androidx.preference.R$style: int TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_range_end_hint -android.didikee.donate.R$id: int action_bar_container -com.jaredrummler.android.colorpicker.R$attr: int cpv_borderColor -cyanogenmod.app.BaseLiveLockManagerService$1 -androidx.recyclerview.R$styleable: int RecyclerView_layoutManager -wangdaye.com.geometricweather.R$styleable: int SearchView_layout -com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.floatingactionbutton.FloatingActionButtonImpl getImpl() -james.adaptiveicon.R$styleable: int SearchView_android_maxWidth -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getNumberOfProfiles -okhttp3.MultipartBody: okhttp3.MediaType MIXED -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String TODAYS_LOW_TEMPERATURE -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.remoteviews.config.AbstractWidgetConfigActivity: AbstractWidgetConfigActivity() -io.reactivex.internal.util.NotificationLite: java.lang.Object subscription(org.reactivestreams.Subscription) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonStyle -com.google.android.material.R$id: int checked -androidx.constraintlayout.widget.R$id: int image -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType TransactionRunnable -com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_android_textAppearance -com.bumptech.glide.Priority: com.bumptech.glide.Priority NORMAL -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul12H -androidx.appcompat.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.R$string: int cpv_transparency -androidx.preference.R$attr: int commitIcon -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber) -cyanogenmod.profiles.StreamSettings: boolean isOverride() -android.didikee.donate.R$attr: int textAppearancePopupMenuHeader -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Headline -com.turingtechnologies.materialscrollbar.R$attr: int actionMenuTextColor -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemBitmap(android.graphics.Bitmap) -androidx.constraintlayout.widget.R$attr: int customColorValue -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogTheme -com.google.android.material.R$attr: int allowStacking -androidx.constraintlayout.widget.R$styleable: int Variant_region_heightMoreThan -androidx.transition.R$id: int notification_background -com.google.android.material.R$integer: int design_snackbar_text_max_lines -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: java.util.List brands -androidx.vectordrawable.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$attr: int pivotAnchor -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -com.google.gson.internal.LazilyParsedNumber: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRealFeelTemperature(java.lang.Integer) -androidx.hilt.lifecycle.R$dimen: int notification_right_side_padding_top -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level BODY -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: boolean handles(android.content.Intent) -com.google.android.material.R$styleable: int Constraint_barrierMargin -okhttp3.internal.http.HttpDate: java.lang.String format(java.util.Date) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.R$string: int feedback_ignore_battery_optimizations_title -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -retrofit2.BuiltInConverters$UnitResponseBodyConverter: java.lang.Object convert(java.lang.Object) -okio.Buffer: boolean equals(java.lang.Object) -cyanogenmod.app.CMTelephonyManager: void setDataConnectionSelectedOnSub(int) -retrofit2.KotlinExtensions$suspendAndThrow$1 -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: long getLtoDownloadInterval() -androidx.appcompat.R$id: int default_activity_button -wangdaye.com.geometricweather.R$attr: int summaryOn -wangdaye.com.geometricweather.R$drawable: int ic_water -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_horizontalDivider -androidx.preference.UnPressableLinearLayout: UnPressableLinearLayout(android.content.Context) -com.google.android.material.R$styleable: int CoordinatorLayout_keylines -android.didikee.donate.R$style: int Base_Widget_AppCompat_ProgressBar -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean isDisposed() -cyanogenmod.weather.WeatherLocation: java.lang.String access$502(cyanogenmod.weather.WeatherLocation,java.lang.String) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -com.turingtechnologies.materialscrollbar.R$attr: int singleChoiceItemLayout -androidx.coordinatorlayout.widget.CoordinatorLayout: android.graphics.drawable.Drawable getStatusBarBackground() -wangdaye.com.geometricweather.R$string: int path_password_eye_mask_strike_through -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy LATEST -james.adaptiveicon.R$styleable: int ActionBar_progressBarPadding -com.google.android.material.R$styleable: int ProgressIndicator_circularInset -androidx.constraintlayout.widget.R$drawable: int notification_bg -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getWeatherSource() -cyanogenmod.providers.CMSettings$Global: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache -com.jaredrummler.android.colorpicker.R$attr: int actionButtonStyle -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -wangdaye.com.geometricweather.R$string: int feedback_show_widget_card -james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -com.google.android.material.R$id: int mtrl_calendar_selection_frame -cyanogenmod.app.ThemeVersion: int getMinSupportedVersion() -com.google.android.material.datepicker.RangeDateSelector -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitationProbability -androidx.appcompat.R$styleable: int MenuItem_android_icon -com.google.android.material.R$id: int tag_accessibility_heading -androidx.loader.R$attr: int ttcIndex -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum Maximum -wangdaye.com.geometricweather.R$layout: int preference_widget_switch -androidx.constraintlayout.widget.R$attr: int displayOptions -com.google.android.material.bottomappbar.BottomAppBar: void setSubtitle(java.lang.CharSequence) -cyanogenmod.themes.IThemeService: boolean isThemeBeingProcessed(java.lang.String) -com.turingtechnologies.materialscrollbar.R$id: int action_bar_subtitle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum Maximum -androidx.hilt.work.R$id: int tag_accessibility_actions -com.jaredrummler.android.colorpicker.ColorPickerView: void setOnColorChangedListener(com.jaredrummler.android.colorpicker.ColorPickerView$OnColorChangedListener) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric -wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_text_color -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextTextColor -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize -cyanogenmod.util.ColorUtils -androidx.vectordrawable.animated.R$dimen: int notification_action_icon_size -okhttp3.internal.http.HttpHeaders: long contentLength(okhttp3.Response) -androidx.constraintlayout.widget.R$id: int search_close_btn -com.bumptech.glide.load.engine.GlideException: long serialVersionUID -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias -com.google.android.material.R$attr: int splitTrack -wangdaye.com.geometricweather.R$id: int mini -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_alphabeticModifiers -androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_34 -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int DRIZZLE -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_search_api_material -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour MATCH_PARENT -wangdaye.com.geometricweather.R$id: int snapMargins -androidx.preference.R$id: int switchWidget -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String MobileLink -wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_container -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -com.google.android.material.R$attr: int boxStrokeWidth -androidx.swiperefreshlayout.R$id: int tag_unhandled_key_listeners -androidx.constraintlayout.widget.R$id: int visible -okhttp3.internal.cache.DiskLruCache: java.io.File directory -com.google.android.material.R$attr: int textAllCaps -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitation -androidx.preference.R$style: int Widget_AppCompat_RatingBar_Small -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Body2 -io.reactivex.Observable: io.reactivex.Single singleOrError() -cyanogenmod.profiles.RingModeSettings: boolean mOverride -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat DEFAULT -androidx.preference.R$attr: int dialogCornerRadius -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function7) -androidx.fragment.R$styleable: int[] FontFamilyFont -androidx.transition.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: int status -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeWidthFocused -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: ObservableAmb$AmbInnerObserver(io.reactivex.internal.operators.observable.ObservableAmb$AmbCoordinator,int,io.reactivex.Observer) -com.google.android.material.R$attr: int minTouchTargetSize -okio.AsyncTimeout$2: okio.AsyncTimeout this$0 -okhttp3.internal.platform.Platform: java.lang.Object readFieldOrNull(java.lang.Object,java.lang.Class,java.lang.String) -androidx.appcompat.widget.Toolbar$SavedState: android.os.Parcelable$Creator CREATOR -androidx.loader.R$styleable: int FontFamily_fontProviderFetchTimeout -okhttp3.Dispatcher: int maxRequestsPerHost -androidx.lifecycle.ReportFragment: void dispatch(androidx.lifecycle.Lifecycle$Event) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean canceled -cyanogenmod.externalviews.ExternalView$8: ExternalView$8(cyanogenmod.externalviews.ExternalView) -com.google.android.material.R$id: int action_mode_close_button -com.xw.repo.bubbleseekbar.R$id: int action_bar -com.google.android.material.R$anim: int design_snackbar_out -cyanogenmod.app.CMContextConstants$Features: java.lang.String LIVE_LOCK_SCREEN -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_SearchView -com.google.android.material.R$styleable: int GradientColor_android_centerY -com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrimResource(int) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getStreet_number() -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_min -androidx.constraintlayout.widget.R$id: int position -wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_divider -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemBackground -cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet) -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_USER_KEY -android.support.v4.os.IResultReceiver$Stub: IResultReceiver$Stub() -wangdaye.com.geometricweather.R$styleable: int Constraint_android_orientation -okhttp3.Request: okhttp3.Request$Builder newBuilder() -com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView -androidx.preference.R$attr: int autoSizeMinTextSize -wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_dark -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_query -okhttp3.internal.connection.RealConnection: okhttp3.Request createTunnelRequest() -com.google.android.material.R$layout: int abc_action_bar_up_container -james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: AccuCurrentResult$PrecipitationSummary$Past9Hours() -okhttp3.internal.Util: java.lang.String hostHeader(okhttp3.HttpUrl,boolean) -wangdaye.com.geometricweather.R$drawable: int ic_mold -androidx.coordinatorlayout.widget.CoordinatorLayout$SavedState -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_ASSIST_ACTION_VALIDATOR -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.Observer downstream -com.google.android.material.R$color: int design_default_color_on_background -androidx.appcompat.R$drawable: int abc_item_background_holo_dark -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onDetach -okhttp3.Request: Request(okhttp3.Request$Builder) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 -com.google.android.material.R$id: int stop -com.turingtechnologies.materialscrollbar.R$styleable: int[] FloatingActionButton -com.google.android.material.R$attr: int titleMarginBottom -com.xw.repo.bubbleseekbar.R$id: int search_go_btn -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarButtonStyle -okio.Okio: okio.Source source(java.nio.file.Path,java.nio.file.OpenOption[]) -cyanogenmod.themes.ThemeChangeRequest$Builder: java.util.Map mPerAppOverlays -com.bumptech.glide.integration.okhttp.R$id: int notification_background -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onResume() -cyanogenmod.weather.ICMWeatherManager: void cancelRequest(int) -com.google.android.material.R$styleable: int ImageFilterView_roundPercent -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_PopupMenu -android.didikee.donate.R$attr: int textColorSearchUrl -androidx.preference.R$style: int ThemeOverlay_AppCompat_Dark -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILES_STATE -androidx.appcompat.R$dimen: int abc_switch_padding -androidx.work.BackoffPolicy: androidx.work.BackoffPolicy EXPONENTIAL -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okio.Okio$1: void close() -wangdaye.com.geometricweather.R$anim: int x2_accelerate_interpolator -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_track_mtrl_alpha -okhttp3.OkHttpClient: okhttp3.Call newCall(okhttp3.Request) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Body1 -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_4_material -wangdaye.com.geometricweather.R$id: int action_bar_activity_content -androidx.core.graphics.drawable.IconCompatParcelizer: IconCompatParcelizer() -com.google.android.material.R$styleable: int AppCompatTheme_dialogCornerRadius -androidx.hilt.R$id: int notification_main_column -wangdaye.com.geometricweather.R$attr: int showText -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_default_mtrl_alpha -wangdaye.com.geometricweather.R$id: int exitUntilCollapsed -android.didikee.donate.R$styleable: int SearchView_android_inputType -com.google.android.material.internal.FlowLayout: int getLineSpacing() -androidx.appcompat.R$styleable: int ActionBar_contentInsetRight -androidx.appcompat.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -wangdaye.com.geometricweather.R$color: int weather_source_accu -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: MfHistoryResult$History$Wind() -wangdaye.com.geometricweather.weather.apis.MfWeatherApi -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.jaredrummler.android.colorpicker.R$attr: int layout_keyline -androidx.transition.R$attr: int fontWeight -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ctd -okhttp3.internal.http.HttpMethod -androidx.lifecycle.extensions.R$id: int normal -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_displayOptions -androidx.customview.R$id: int action_text -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton -wangdaye.com.geometricweather.R$layout: int preference_widget_checkbox -android.didikee.donate.R$styleable -androidx.appcompat.widget.AppCompatSpinner: void setAdapter(android.widget.SpinnerAdapter) -wangdaye.com.geometricweather.R$style: int Preference_Information -com.google.android.material.R$attr: int materialTimePickerTheme -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.hilt.work.R$styleable: int ColorStateListItem_android_color -androidx.work.R$id: int action_image -com.bumptech.glide.integration.okhttp.R$integer: R$integer() -james.adaptiveicon.R$attr: int textAppearanceSmallPopupMenu -com.google.android.material.tabs.TabLayout: void setTabIconTint(android.content.res.ColorStateList) -okio.ByteString: int indexOf(byte[]) -okhttp3.Address: java.net.ProxySelector proxySelector() -okio.Buffer: java.lang.String readString(java.nio.charset.Charset) -okhttp3.OkHttpClient: okhttp3.Authenticator authenticator -androidx.viewpager2.R$styleable: R$styleable() -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onComplete() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStartPadding -androidx.lifecycle.extensions.R$dimen: int notification_large_icon_width -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert -androidx.preference.R$styleable: int Toolbar_contentInsetLeft -androidx.preference.R$layout: int abc_activity_chooser_view_list_item -wangdaye.com.geometricweather.R$id: int filterBtn -cyanogenmod.themes.ThemeManager$2: void onFinishedProcessing(java.lang.String) -androidx.appcompat.widget.AppCompatCheckBox: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -retrofit2.http.Header -androidx.hilt.R$styleable: int ColorStateListItem_android_color -androidx.appcompat.widget.Toolbar: void setCollapseContentDescription(int) -okhttp3.OkHttpClient: okhttp3.internal.cache.InternalCache internalCache -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_disabled_holo_light -com.google.android.material.R$attr: int spinnerStyle -io.reactivex.Observable: io.reactivex.Observable zip(java.lang.Iterable,io.reactivex.functions.Function) -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory -wangdaye.com.geometricweather.common.basic.models.weather.Astro: boolean isValid() -okhttp3.internal.http.HttpHeaders: boolean skipWhitespaceAndCommas(okio.Buffer) -com.xw.repo.bubbleseekbar.R$styleable: int View_android_theme -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -io.reactivex.Observable: io.reactivex.Observable skipLast(int) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -androidx.preference.R$styleable: int DialogPreference_android_dialogLayout -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: okhttp3.Request request() -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_color -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -com.xw.repo.bubbleseekbar.R$attr: int viewInflaterClass -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_LAST_PROFILE_NAME -wangdaye.com.geometricweather.R$dimen: int design_fab_image_size -androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveVariesBy -okhttp3.internal.ws.WebSocketWriter: okio.Buffer$UnsafeCursor maskCursor -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: long period -androidx.appcompat.R$styleable: int AlertDialog_multiChoiceItemLayout -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WetBulbTemperature -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig minutelyEntityDaoConfig -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: int getCollapsedPadding() -wangdaye.com.geometricweather.R$string: int key_notification_can_be_cleared -io.reactivex.Observable: io.reactivex.Single first(java.lang.Object) -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setDistrict(java.lang.String) -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String NO_RINGTONE -cyanogenmod.app.Profile: java.util.Collection getConnectionSettings() -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Light -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveOffset -androidx.appcompat.R$attr: int tickMarkTint -com.google.android.material.slider.BaseSlider: void setValueTo(float) -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder fragment(java.lang.String) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean mainDone -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemBackground(android.graphics.drawable.Drawable) -com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context,android.util.AttributeSet) -androidx.preference.R$style: int Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: CaiYunMainlyResult$YesterdayBean() -io.reactivex.Observable: io.reactivex.Observable switchMap(io.reactivex.functions.Function,int) -com.jaredrummler.android.colorpicker.ColorPickerView: int getColor() -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchMinWidth -wangdaye.com.geometricweather.R$id: int coordinator -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_left_mtrl_dark -com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_android_foreground -okio.Buffer: boolean rangeEquals(long,okio.ByteString,int,int) -cyanogenmod.app.suggest.IAppSuggestManager$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintDimensionRatio -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetRight -androidx.preference.R$style: int Base_Widget_AppCompat_ActivityChooserView -androidx.loader.R$styleable: int FontFamilyFont_android_fontWeight -androidx.constraintlayout.widget.R$attr: int listItemLayout -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView -com.google.android.material.datepicker.CompositeDateValidator: android.os.Parcelable$Creator CREATOR -android.didikee.donate.R$styleable: int TextAppearance_android_shadowRadius -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlHighlight -wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog_actions -com.jaredrummler.android.colorpicker.R$styleable: int Preference_key -okhttp3.internal.http.HttpHeaders: boolean hasBody(okhttp3.Response) -com.google.android.material.chip.Chip: void setCloseIconTint(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$attr: int materialCalendarTheme -androidx.constraintlayout.widget.R$attr: int dividerHorizontal -okhttp3.RealCall: void cancel() -cyanogenmod.weather.RequestInfo: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setIcePrecipitationProbability(java.lang.Float) -cyanogenmod.weather.WeatherInfo: java.lang.String getCity() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_127 -com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetStart -wangdaye.com.geometricweather.R$styleable: int[] RangeSlider -com.google.android.material.internal.FlowLayout: int getRowCount() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA -okio.Segment: boolean shared -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight -com.jaredrummler.android.colorpicker.R$attr: int checkBoxPreferenceStyle -com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingStart -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton -okio.BufferedSource: okio.ByteString readByteString() -cyanogenmod.content.Intent: java.lang.String ACTION_OPEN_LIVE_LOCKSCREEN_SETTINGS -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: java.lang.Object enterTransform(java.lang.Object) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Date -wangdaye.com.geometricweather.R$drawable: int notif_temp_75 -com.turingtechnologies.materialscrollbar.R$attr: int buttonTintMode -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder maxAge(int,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX) -com.google.android.material.R$styleable: int Slider_thumbStrokeColor -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_color -okhttp3.Call: okio.Timeout timeout() -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: int skip -com.google.android.material.chip.Chip: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -wangdaye.com.geometricweather.R$drawable: int widget_trend_daily -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeFindDrawable -okhttp3.OkHttpClient$1: okhttp3.Call newWebSocketCall(okhttp3.OkHttpClient,okhttp3.Request) -android.didikee.donate.R$styleable: int Toolbar_subtitle -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.StreamAllocation streamAllocation() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.disposables.Disposable upstream -androidx.appcompat.R$drawable: int abc_textfield_search_activated_mtrl_alpha -wangdaye.com.geometricweather.R$attr: int msb_handleOffColor -com.google.android.material.R$style: int Animation_Design_BottomSheetDialog -androidx.constraintlayout.widget.R$attr: int alpha -wangdaye.com.geometricweather.R$drawable: int shortcuts_hail -wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardTitle -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: java.lang.String type -androidx.fragment.app.FragmentManagerImpl -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar_Small -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog_MinWidth -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginBottom -wangdaye.com.geometricweather.R$id: int both -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent valueOf(java.lang.String) -android.didikee.donate.R$styleable: int ButtonBarLayout_allowStacking -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalStyle -androidx.constraintlayout.widget.R$id: int startVertical -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType START -com.turingtechnologies.materialscrollbar.R$attr: int pressedTranslationZ -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_shapeAppearanceOverlay -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX -androidx.recyclerview.widget.LinearLayoutManager: LinearLayoutManager(android.content.Context,android.util.AttributeSet,int,int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: java.lang.Integer proba3H -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Tooltip -com.jaredrummler.android.colorpicker.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getApparentTemperature() -com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context) -okio.HashingSink: okio.HashingSink sha1(okio.Sink) -com.jaredrummler.android.colorpicker.R$styleable: int[] CoordinatorLayout_Layout -wangdaye.com.geometricweather.R$layout: int material_time_chip -android.didikee.donate.R$styleable: int ActionBar_homeLayout -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$styleable: int Variant_region_widthMoreThan -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_id -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -androidx.hilt.R$id: int chronometer -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String weatherText -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_iconTintMode -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -androidx.preference.R$id: int action_bar_container -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType valueOf(java.lang.String) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator MENU_WAKE_SCREENN_VALIDATOR -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.lang.String domain -wangdaye.com.geometricweather.R$layout: int item_location -com.google.android.material.R$id: int mtrl_picker_header_selection_text -okhttp3.MediaType: java.lang.String toString() -androidx.viewpager.widget.PagerTabStrip: void setBackgroundResource(int) -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$attr: int telltales_tailColor -cyanogenmod.themes.IThemeService$Stub$Proxy: boolean isThemeApplying() -wangdaye.com.geometricweather.R$attr: int constraintSetStart -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float ice -wangdaye.com.geometricweather.R$attr: int cpv_dialogType -androidx.appcompat.widget.FitWindowsViewGroup: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) -android.didikee.donate.R$layout: int select_dialog_multichoice_material -okhttp3.internal.tls.BasicTrustRootIndex: java.util.Map subjectToCaCerts -io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.CompletableObserver) -wangdaye.com.geometricweather.R$id: int submit_area -okhttp3.internal.Util$2: Util$2(java.lang.String,boolean) -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -okhttp3.internal.ws.RealWebSocket: boolean failed -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Badge -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String MINUTES -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Body2 -androidx.loader.R$styleable: int ColorStateListItem_alpha -android.support.v4.app.RemoteActionCompatParcelizer: androidx.core.app.RemoteActionCompat read(androidx.versionedparcelable.VersionedParcel) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.MinutelyEntity) -wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacingVertical -com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_text_padding_left -okhttp3.internal.http.HttpHeaders: int parseSeconds(java.lang.String,int) -wangdaye.com.geometricweather.R$attr: int boxCornerRadiusBottomEnd -retrofit2.Retrofit$Builder: Retrofit$Builder(retrofit2.Retrofit) -com.turingtechnologies.materialscrollbar.R$id: int message -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Borderless -okhttp3.internal.connection.RouteSelector$Selection -androidx.viewpager2.R$dimen: int notification_big_circle_margin -retrofit2.adapter.rxjava2.Result: retrofit2.Response response() -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: ExternalViewProviderService$Provider$ProviderImpl$2(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -james.adaptiveicon.R$id: int add -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed Speed -com.google.android.material.R$id: int buttonPanel -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -androidx.loader.R$style: int Widget_Compat_NotificationActionText -androidx.viewpager2.R$id: int accessibility_custom_action_12 -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: ObservableFlatMap$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver,long) -androidx.preference.SwitchPreference -wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeContainer -okhttp3.internal.http2.Http2Connection$3 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPrimary(java.lang.String) -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableBottomCompat -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer freezingHazard -androidx.appcompat.R$attr: int showDividers -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton -cyanogenmod.app.PartnerInterface: boolean setZenMode(int) -wangdaye.com.geometricweather.R$attr: int thumbStrokeColor -com.google.android.material.circularreveal.CircularRevealFrameLayout: int getCircularRevealScrimColor() -androidx.preference.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.appcompat.R$style: int TextAppearance_AppCompat_Subhead_Inverse -androidx.preference.SeekBarPreference$SavedState: android.os.Parcelable$Creator CREATOR -androidx.preference.R$drawable: int abc_ic_star_black_16dp -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_android_entries -androidx.dynamicanimation.R$attr: int fontStyle -com.google.android.material.circularreveal.CircularRevealGridLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onModeChanged(boolean) -wangdaye.com.geometricweather.R$styleable: int[] AnimatableIconView -cyanogenmod.externalviews.ExternalView$1: cyanogenmod.externalviews.ExternalView this$0 -android.didikee.donate.R$styleable: int AppCompatSeekBar_android_thumb -com.google.android.material.R$styleable: int Tooltip_android_text -com.turingtechnologies.materialscrollbar.R$attr: int listPopupWindowStyle -cyanogenmod.os.Build$CM_VERSION_CODES: int ELDERBERRY -androidx.appcompat.R$drawable: int abc_list_selector_background_transition_holo_light -androidx.viewpager.R$styleable: int FontFamilyFont_fontVariationSettings -com.jaredrummler.android.colorpicker.R$color: int tooltip_background_dark -com.google.android.material.navigation.NavigationView: int getItemMaxLines() -okhttp3.CertificatePinner$Builder: CertificatePinner$Builder() -cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_SHOW_BRIGHTNESS_SLIDER -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg -androidx.constraintlayout.widget.R$styleable: int Toolbar_android_gravity -wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_2_0_padding_top -retrofit2.ParameterHandler$QueryName: retrofit2.Converter nameConverter -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_minHideDelay -com.google.android.material.R$attr: int autoSizeTextType -android.didikee.donate.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Dialog -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayColorCalibration -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: ObservableGroupJoin$LeftRightObserver(io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport,boolean) -androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -androidx.appcompat.R$style: int Base_Widget_AppCompat_Spinner -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_dither -android.didikee.donate.R$styleable: int TextAppearance_textAllCaps -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastVerticalStyle -androidx.appcompat.R$styleable: int GradientColor_android_endColor -androidx.work.R$id: int notification_main_column -wangdaye.com.geometricweather.R$color: int primary_dark_material_light -android.support.v4.os.IResultReceiver$Default: android.os.IBinder asBinder() -android.didikee.donate.R$color: int abc_tint_btn_checkable -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemTextAppearanceActive() -cyanogenmod.app.ProfileGroup: void setRingerOverride(android.net.Uri) -androidx.coordinatorlayout.R$id: int start -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light -com.google.android.material.button.MaterialButtonToggleGroup: void setSingleSelection(int) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_shapeAppearance -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -androidx.constraintlayout.widget.R$id: int motion_base -cyanogenmod.externalviews.KeyguardExternalView: void onBouncerShowing(boolean) -com.google.android.material.R$attr: int triggerSlack -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_BOOT_ANIM -com.xw.repo.bubbleseekbar.R$attr: int height -cyanogenmod.providers.CMSettings$System: java.lang.String DIALER_OPENCNAM_ACCOUNT_SID -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$styleable: int RecyclerView_reverseLayout -wangdaye.com.geometricweather.R$attr: int textLocale -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdw -androidx.customview.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getZh_TW() -com.xw.repo.bubbleseekbar.R$attr: int dialogPreferredPadding -androidx.lifecycle.Lifecycling$1 -androidx.appcompat.R$styleable: int FontFamilyFont_fontStyle -okhttp3.internal.cache.DiskLruCache -androidx.preference.R$styleable: int PreferenceFragment_android_divider -androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.google.android.material.R$string: int path_password_strike_through -com.bumptech.glide.R$color: int notification_action_color_filter -okhttp3.Response$Builder: okhttp3.Protocol protocol -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getNavBarThemePackageName() -cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getActiveProfile() -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type UNKNOWN -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: java.lang.Float temperature -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle getInstance(java.lang.String) -androidx.lifecycle.ComputableLiveData$2: ComputableLiveData$2(androidx.lifecycle.ComputableLiveData) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setWeather(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_title_baseline_to_top_fullscreen -com.google.android.material.R$styleable: int BottomAppBar_elevation -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setLogo(java.lang.String) -okhttp3.Dns: okhttp3.Dns SYSTEM -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: long count -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String grassDescription -okio.ForwardingSource: okio.Source delegate() -cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper mWrapper -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_137 -wangdaye.com.geometricweather.R$attr: int suggestionRowLayout -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabTextAppearance -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_Toolbar -james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionBarOverlay -androidx.constraintlayout.widget.R$attr: int tint -cyanogenmod.media.MediaRecorder: java.lang.String EXTRA_HOTWORD_INPUT_STATE -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder shouldCollapsePanel(boolean) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onComplete() -wangdaye.com.geometricweather.R$color: int dim_foreground_material_light -com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy valueOf(java.lang.String) -okhttp3.internal.ws.RealWebSocket: boolean close(int,java.lang.String) -com.google.gson.stream.JsonReader: boolean skipTo(java.lang.String) -androidx.constraintlayout.widget.R$drawable: int abc_item_background_holo_light -com.google.android.material.tabs.TabItem -androidx.appcompat.R$id: int radio -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: void close() -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage INITIALIZE -wangdaye.com.geometricweather.R$id: int parentPanel -james.adaptiveicon.R$style: int Base_Animation_AppCompat_DropDownUp -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_bias -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat -okhttp3.internal.ws.WebSocketProtocol: int CLOSE_CLIENT_GOING_AWAY -okio.GzipSource: int section -com.turingtechnologies.materialscrollbar.R$color: int tooltip_background_light -wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextContainer -androidx.transition.R$attr -androidx.constraintlayout.widget.R$attr: int actionBarTabStyle -james.adaptiveicon.R$attr: int homeAsUpIndicator -org.greenrobot.greendao.AbstractDaoSession: void registerDao(java.lang.Class,org.greenrobot.greendao.AbstractDao) -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: JdkWithJettyBootPlatform$JettyNegoProvider(java.util.List) -com.turingtechnologies.materialscrollbar.R$attr: int alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String logo -androidx.constraintlayout.widget.R$attr: int pivotAnchor -androidx.cardview.R$color -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void drain() -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getHaloTintList() -com.google.android.material.R$layout: int text_view_without_line_height -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setSubtitleText(java.lang.String) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$string: int abc_activitychooserview_choose_application -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_ENABLED_VALIDATOR -androidx.swiperefreshlayout.R$color: int notification_icon_bg_color -androidx.lifecycle.LifecycleDispatcher: LifecycleDispatcher() -androidx.activity.R$id: int tag_unhandled_key_listeners -androidx.appcompat.R$drawable: int btn_checkbox_checked_mtrl -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$string: int content_desc_back -androidx.preference.R$styleable: int ActivityChooserView_initialActivityCount -androidx.preference.R$styleable: int[] CoordinatorLayout_Layout -com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Button -cyanogenmod.hardware.IThermalListenerCallback$Stub: IThermalListenerCallback$Stub() -wangdaye.com.geometricweather.R$layout: int preference_dropdown -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_toolbarStyle -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_EXISTING_UUID -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult -androidx.preference.R$id: int text -androidx.legacy.coreutils.R$layout: int notification_template_custom_big -androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_tailScale -androidx.appcompat.R$styleable: int AppCompatTheme_dialogTheme -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_translation_z_hovered_focused -androidx.lifecycle.extensions.R$anim -io.reactivex.internal.subscribers.StrictSubscriber: long serialVersionUID -wangdaye.com.geometricweather.R$layout: int notification_multi_city -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog -com.google.android.material.R$attr: int tabIconTint -org.greenrobot.greendao.database.DatabaseOpenHelper: void onOpen(android.database.sqlite.SQLiteDatabase) -cyanogenmod.externalviews.ExternalViewProperties: int[] mScreenCoords -com.jaredrummler.android.colorpicker.R$styleable: int Preference_singleLineTitle -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: int hashCode() -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_summary -androidx.constraintlayout.widget.R$attr: int dragScale -androidx.preference.R$styleable: int AppCompatTextView_drawableTintMode -androidx.preference.R$attr: int track -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeFillColor -androidx.constraintlayout.widget.R$attr: int layout_constraintTag -com.google.android.material.R$dimen: int abc_text_size_body_2_material -com.google.android.material.R$string: int bottomsheet_action_expand_halfway -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.lifecycle.extensions.R$drawable: int notification_bg_low_pressed -okhttp3.internal.http.HttpHeaders: okio.ByteString QUOTED_STRING_DELIMITERS -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onFailed() -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: int TRANSACTION_onWeatherServiceProviderChanged_0 -androidx.drawerlayout.R$id: int title -com.google.android.material.R$styleable: int LinearLayoutCompat_measureWithLargestChild -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_singleSelection -androidx.preference.R$attr: int actionBarPopupTheme -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_percent -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: int status -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource LocalSource -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_orientation -wangdaye.com.geometricweather.R$attr: int listDividerAlertDialog -com.google.android.material.R$attr: int chipStrokeColor -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.vectordrawable.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_1 -wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_horizontal_material -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIMAX -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -com.google.gson.stream.JsonWriter: void beforeName() -okhttp3.internal.http2.Http2Connection$5: okhttp3.internal.http2.Http2Connection this$0 -okhttp3.internal.http2.Hpack: okhttp3.internal.http2.Header[] STATIC_HEADER_TABLE -okio.GzipSource: byte FHCRC -androidx.hilt.R$id: int tag_accessibility_pane_title -cyanogenmod.profiles.StreamSettings: int getValue() -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$layout: int item_alert -androidx.core.R$layout: int notification_action_tombstone -android.didikee.donate.R$style: int Widget_AppCompat_ImageButton -retrofit2.BuiltInConverters$ToStringConverter: retrofit2.BuiltInConverters$ToStringConverter INSTANCE -com.google.android.material.R$attr: int counterOverflowTextAppearance -android.support.v4.os.ResultReceiver$MyRunnable: void run() -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabView -okhttp3.RequestBody$2: RequestBody$2(okhttp3.MediaType,int,byte[],int) -com.bumptech.glide.load.HttpException: int UNKNOWN -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitationProbability -androidx.appcompat.R$attr: int radioButtonStyle -okhttp3.HttpUrl$Builder: java.util.List encodedQueryNamesAndValues -wangdaye.com.geometricweather.R$drawable: int notif_temp_76 -com.google.android.material.R$attr: int contentDescription -wangdaye.com.geometricweather.R$attr: int textInputLayoutFocusedRectEnabled -cyanogenmod.library.R$id: int event -androidx.preference.R$dimen: int abc_action_button_min_width_overflow_material -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getWetBulbTemperature() -androidx.core.R$id: int accessibility_custom_action_27 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.WeatherEntity) -wangdaye.com.geometricweather.R$attr: int panelMenuListTheme -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_checkable -okio.ByteString: int indexOf(okio.ByteString) -com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_text_size -wangdaye.com.geometricweather.R$id: int buttonPanel -cyanogenmod.app.IProfileManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -okio.Buffer: okio.BufferedSink writeHexadecimalUnsignedLong(long) -androidx.lifecycle.LiveData$ObserverWrapper: androidx.lifecycle.Observer mObserver -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_ctrl_shortcut_label -androidx.work.R$id: int tag_accessibility_clickable_spans -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModePasteDrawable -okhttp3.WebSocket -wangdaye.com.geometricweather.R$drawable: int ic_arrow_down_24dp -androidx.preference.R$style: int Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean getTemperature() -androidx.core.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.R$layout: int widget_week -okhttp3.Request$Builder: java.lang.String method -cyanogenmod.themes.ThemeManager$ThemeProcessingListener -com.bumptech.glide.R$attr: int layout_keyline -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontStyle -androidx.preference.R$styleable: int[] CoordinatorLayout -james.adaptiveicon.R$color: int button_material_light -com.google.gson.stream.JsonReader: int PEEKED_EOF -androidx.preference.R$attr: int textAppearanceListItem -androidx.appcompat.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -james.adaptiveicon.R$layout: int abc_screen_simple_overlay_action_mode -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: AccuCurrentResult$RealFeelTemperatureShade$Imperial() -androidx.work.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$attr: int tickMark -androidx.fragment.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status valueOf(java.lang.String) -okhttp3.internal.platform.Platform: void afterHandshake(javax.net.ssl.SSLSocket) -wangdaye.com.geometricweather.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_textOn -com.google.android.material.R$styleable: int FloatingActionButton_hideMotionSpec -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.util.List getValue() -org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Iterable) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date moonRiseDate -androidx.viewpager.widget.ViewPager: void setScrollingCacheEnabled(boolean) -androidx.recyclerview.R$id: int notification_main_column_container -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void dispose() -com.xw.repo.bubbleseekbar.R$attr: int checkboxStyle -okhttp3.internal.platform.Platform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.X509TrustManager) -androidx.constraintlayout.widget.R$string: int abc_searchview_description_clear -okhttp3.RealCall$1: void timedOut() -androidx.vectordrawable.animated.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$styleable: int OnSwipe_limitBoundsTo -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX -androidx.core.R$layout: int notification_template_custom_big -androidx.constraintlayout.widget.R$attr: int contentInsetStartWithNavigation -com.google.android.material.R$layout: int mtrl_calendar_vertical -james.adaptiveicon.R$color: int abc_search_url_text_selected -com.google.android.material.R$attr: int passwordToggleTintMode -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getRealFeelShaderTemperature() -androidx.appcompat.R$drawable: int abc_list_selector_disabled_holo_dark -cyanogenmod.app.IProfileManager: boolean addProfile(cyanogenmod.app.Profile) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.util.Date pubTime -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_font -androidx.recyclerview.widget.GridLayoutManager -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_function_shortcut_label -wangdaye.com.geometricweather.R$layout: int item_weather_icon_title -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTopCompat -wangdaye.com.geometricweather.R$styleable: int Layout_layout_editor_absoluteX -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: KeyguardExternalViewProviderService$Provider$ProviderImpl$9(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,int,int,int,int,boolean,android.graphics.Rect) -okhttp3.internal.http2.Http2Reader$Handler: void goAway(int,okhttp3.internal.http2.ErrorCode,okio.ByteString) -cyanogenmod.providers.CMSettings$Secure$2 -wangdaye.com.geometricweather.R$attr: int stackFromEnd -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -com.google.android.material.R$styleable: int Constraint_android_maxHeight -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: long serialVersionUID -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_progressBarPadding -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver -james.adaptiveicon.R$styleable: int TextAppearance_android_textColor -androidx.hilt.R$layout: int notification_template_icon_group -cyanogenmod.profiles.LockSettings: boolean isDirty() -wangdaye.com.geometricweather.R$dimen: int material_emphasis_medium -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onSuccess(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_negativeButtonText -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle -androidx.fragment.R$id: int normal -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: SwipeRefreshLayout(android.content.Context) -wangdaye.com.geometricweather.R$attr: int state_collapsible -androidx.appcompat.widget.Toolbar: void setOverflowIcon(android.graphics.drawable.Drawable) -androidx.viewpager.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: AccuAlertResult$Area() -wangdaye.com.geometricweather.R$attr: int fabCradleRoundedCornerRadius -retrofit2.ParameterHandler$Headers: java.lang.reflect.Method method -androidx.appcompat.R$string: int status_bar_notification_info_overflow -androidx.appcompat.R$attr: int titleMarginTop -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mCallSetCommand -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature Temperature -cyanogenmod.app.CMContextConstants$Features: java.lang.String PROFILES -com.bumptech.glide.GeneratedAppGlideModule -androidx.hilt.work.R$dimen: int notification_right_icon_size -james.adaptiveicon.R$attr: int panelMenuListTheme -androidx.appcompat.resources.R$styleable: int GradientColor_android_centerColor -androidx.appcompat.R$string: int abc_searchview_description_submit -wangdaye.com.geometricweather.R$string: int settings_title_forecast_today_time -wangdaye.com.geometricweather.R$attr: int startIconCheckable -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_anchor -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabAnimationMode -okhttp3.internal.cache.DiskLruCache: long getMaxSize() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Flush -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean isRecoverable(java.io.IOException,boolean) -com.xw.repo.bubbleseekbar.R$anim: int abc_slide_in_top -com.jaredrummler.android.colorpicker.R$attr: int editTextStyle -wangdaye.com.geometricweather.R$string: int status_bar_notification_info_overflow -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: boolean isDisposed() -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ListPopupWindow -com.google.android.material.R$attr: int suffixTextAppearance -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: int phenomenoMaxColorId -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lon -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_shapeAppearance -com.google.android.material.R$color: int design_default_color_secondary_variant -androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.helper.widget.Flow: void setVerticalAlign(int) -androidx.appcompat.R$styleable: int SearchView_voiceIcon -androidx.appcompat.R$drawable: int abc_list_selector_disabled_holo_light -wangdaye.com.geometricweather.R$styleable: int[] PreferenceFragment -androidx.legacy.coreutils.R$id: int time -okhttp3.CertificatePinner: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setForecastHourly(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean) -com.google.android.material.R$dimen: int mtrl_high_ripple_default_alpha -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: float getProgress() -wangdaye.com.geometricweather.R$attr: int bsb_second_track_size -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_height -wangdaye.com.geometricweather.R$attr: int cpv_animDuration -cyanogenmod.externalviews.KeyguardExternalView: void onAttachedToWindow() -com.google.android.material.textfield.TextInputLayout: void setErrorIconDrawable(android.graphics.drawable.Drawable) -okhttp3.Cache$Entry: okhttp3.Protocol protocol -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: MfForecastResult$ProbabilityForecast$ProbabilitySnow() -com.jaredrummler.android.colorpicker.R$id: int src_in -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getUvIndex() -okhttp3.logging.LoggingEventListener: LoggingEventListener(okhttp3.logging.HttpLoggingInterceptor$Logger,okhttp3.logging.LoggingEventListener$1) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: void completion() -wangdaye.com.geometricweather.R$attr: int msb_handleColor -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SeekBar_Discrete -cyanogenmod.profiles.BrightnessSettings: cyanogenmod.profiles.BrightnessSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -wangdaye.com.geometricweather.R$attr: int contentPaddingLeft -james.adaptiveicon.R$anim: int abc_slide_out_bottom -com.xw.repo.bubbleseekbar.R$string: int abc_menu_meta_shortcut_label -androidx.core.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_thumb_elevation -wangdaye.com.geometricweather.R$string: int cancel -james.adaptiveicon.R$styleable: int PopupWindow_android_popupAnimationStyle -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_percent -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: double gust -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_default_mtrl_shape -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -com.jaredrummler.android.colorpicker.R$attr: int tint -cyanogenmod.app.IProfileManager$Stub$Proxy -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String BriefPhrase -com.xw.repo.bubbleseekbar.R$attr: int bsb_second_track_size -okhttp3.ResponseBody: java.nio.charset.Charset charset() -com.turingtechnologies.materialscrollbar.R$layout -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onError(java.lang.Throwable) -james.adaptiveicon.R$styleable: int View_android_focusable -com.google.android.material.R$styleable: int ProgressIndicator_inverse -androidx.fragment.R$id: int tag_transition_group -com.turingtechnologies.materialscrollbar.R$attr: int splitTrack -cyanogenmod.alarmclock.ClockContract$CitiesColumns: android.net.Uri CONTENT_URI -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius -retrofit2.Retrofit$1: Retrofit$1(retrofit2.Retrofit,java.lang.Class) -com.google.android.material.R$bool: int abc_action_bar_embed_tabs -okhttp3.MediaType: int hashCode() -com.jaredrummler.android.colorpicker.R$attr: int progressBarPadding -androidx.appcompat.R$attr: int srcCompat -okhttp3.internal.Internal -com.google.android.material.card.MaterialCardView: void setCheckedIconTint(android.content.res.ColorStateList) -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer LEFT_VALUE -android.support.v4.os.ResultReceiver: void writeToParcel(android.os.Parcel,int) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconSize -androidx.fragment.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.R$id: int notification_multi_city_3 -com.google.android.material.R$integer: R$integer() -androidx.preference.R$color: int tooltip_background_dark -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HourlyEntityDao hourlyEntityDao -james.adaptiveicon.R$styleable: int FontFamilyFont_fontWeight -james.adaptiveicon.R$styleable: int SwitchCompat_switchMinWidth -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_checkableBehavior -com.google.android.material.R$color: int material_blue_grey_800 -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_orientation -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_maxHeight -androidx.vectordrawable.animated.R$drawable: int notification_bg_low_pressed -androidx.appcompat.widget.ActionBarContainer: android.view.View getTabContainer() -wangdaye.com.geometricweather.R$drawable: int notif_temp_50 -com.google.gson.FieldNamingPolicy -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour FIXED -androidx.fragment.R$id: int tag_unhandled_key_event_manager -okio.ByteString: int hashCode -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast -androidx.constraintlayout.widget.R$styleable: int MenuView_android_headerBackground -androidx.preference.R$id: int end -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: KeyguardExternalViewProviderService$Provider$ProviderImpl$3(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) -androidx.appcompat.R$attr: int autoCompleteTextViewStyle -com.google.android.material.R$attr: int growMode -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int[] ViewStubCompat -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setBackgroundColorStart(int) -james.adaptiveicon.R$string -com.google.android.material.R$attr: int onShow -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onSubscribe(org.reactivestreams.Subscription) -androidx.preference.R$attr: int listChoiceIndicatorSingleAnimated -cyanogenmod.weatherservice.IWeatherProviderService: void cancelRequest(int) -wangdaye.com.geometricweather.common.basic.models.weather.Base: long getPublishTime() -com.google.android.material.R$id: int visible -io.reactivex.Observable: io.reactivex.Maybe reduce(io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -com.google.android.material.card.MaterialCardView: void setOnCheckedChangeListener(com.google.android.material.card.MaterialCardView$OnCheckedChangeListener) -io.reactivex.Observable: io.reactivex.Observable concatMapEager(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$string: int night -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_CAMELLIA_128_CBC_SHA -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_COLOR_ADJUSTMENT -com.jaredrummler.android.colorpicker.R$styleable: int Preference_allowDividerAbove -androidx.viewpager2.widget.ViewPager2: int getOrientation() -com.google.android.material.card.MaterialCardView: void setClickable(boolean) -android.didikee.donate.R$dimen: int notification_large_icon_height -com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.String) -androidx.appcompat.R$attr: int menu -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textSize -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf -okhttp3.internal.http2.Huffman: Huffman() -okhttp3.Dispatcher -androidx.constraintlayout.widget.R$attr: int constraintSetStart -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial Imperial -okhttp3.Response: okhttp3.Response networkResponse() -cyanogenmod.weather.WeatherInfo: double mWindDirection -wangdaye.com.geometricweather.R$dimen: int preference_dropdown_padding_start -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder validateEagerly(boolean) -cyanogenmod.os.Concierge$ParcelInfo -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -com.google.android.material.R$styleable: int ActionBar_background -androidx.vectordrawable.animated.R$styleable: int[] ColorStateListItem -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder dispatcher(okhttp3.Dispatcher) -androidx.viewpager2.R$styleable: int[] GradientColor -com.google.gson.FieldNamingPolicy$4: java.lang.String translateName(java.lang.reflect.Field) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean -com.google.android.material.R$color: int abc_primary_text_material_dark -com.google.android.material.R$id: int mtrl_picker_text_input_range_end -wangdaye.com.geometricweather.R$id: int material_textinput_timepicker -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FAIR_NIGHT -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: java.lang.Float windChill -com.google.android.material.R$styleable: int MaterialCalendar_dayStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_end_padding -cyanogenmod.weather.CMWeatherManager: int requestWeatherUpdate(android.location.Location,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener) -cyanogenmod.power.PerformanceManager: java.lang.String TAG -androidx.appcompat.widget.AppCompatButton: android.content.res.ColorStateList getSupportBackgroundTintList() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.functions.Function itemTimeoutIndicator -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldLevel(java.lang.Integer) -com.jaredrummler.android.colorpicker.R$attr: int contentInsetRight -com.google.android.material.R$drawable: int abc_ic_menu_cut_mtrl_alpha -okhttp3.internal.cache.DiskLruCache: void trimToSize() -androidx.appcompat.R$attr: int dropDownListViewStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView -com.google.android.material.R$drawable: int abc_ab_share_pack_mtrl_alpha -com.bumptech.glide.integration.okhttp.R$id: int right_icon -androidx.constraintlayout.widget.R$drawable: int abc_cab_background_top_material -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -wangdaye.com.geometricweather.R$attr: int spinnerStyle -androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.vectordrawable.R$drawable: int notify_panel_notification_icon_bg -com.google.android.material.R$attr: int layout_constraintVertical_chainStyle -io.reactivex.internal.util.NotificationLite: boolean isSubscription(java.lang.Object) -wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_button_bar_material -androidx.lifecycle.extensions.R$layout: int notification_template_icon_group -okhttp3.internal.tls.BasicCertificateChainCleaner: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int PropertySet_android_visibility -android.didikee.donate.R$bool: int abc_allow_stacked_button_bar -com.jaredrummler.android.colorpicker.R$attr: int buttonIconDimen -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setMax(float) -com.google.android.material.bottomnavigation.BottomNavigationView: void setOnNavigationItemReselectedListener(com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemReselectedListener) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPubTime() -james.adaptiveicon.R$attr: int listPreferredItemHeightSmall -com.xw.repo.bubbleseekbar.R$attr: int tooltipText -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight -retrofit2.http.OPTIONS -james.adaptiveicon.R$attr: int autoSizeMaxTextSize -wangdaye.com.geometricweather.R$color: int material_on_background_disabled -androidx.lifecycle.ComputableLiveData$3 -androidx.appcompat.resources.R$styleable: int StateListDrawableItem_android_drawable -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DewPoint -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_motionTarget -wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_toTopOf -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onComplete() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_chainUseRtl -androidx.work.Worker -com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_DropDownUp -androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.helper.widget.Flow: void setWrapMode(int) -wangdaye.com.geometricweather.R$string: int today -wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.LocationEntity) -androidx.viewpager.R$color: int notification_action_color_filter -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Small -james.adaptiveicon.R$attr: int dividerPadding -com.google.android.material.R$id: int mtrl_picker_header_toggle -androidx.preference.R$drawable: int abc_tab_indicator_material -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: java.util.Date Date -com.jaredrummler.android.colorpicker.R$layout: int cpv_color_item_square -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonSetDate -androidx.coordinatorlayout.R$id: int title -cyanogenmod.themes.ThemeManager: boolean isThemeApplying() -androidx.preference.R$attr: int paddingBottomNoButtons -wangdaye.com.geometricweather.R$dimen: int widget_little_weather_icon_size -okhttp3.ResponseBody: void close() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Determinate -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object getKey(java.lang.Object) -androidx.appcompat.resources.R$attr: int fontProviderCerts -com.google.android.material.R$attr: int hintTextColor -android.didikee.donate.R$style: int Theme_AppCompat_NoActionBar -wangdaye.com.geometricweather.R$attr: int flow_lastVerticalBias -cyanogenmod.os.Build: java.lang.String CYANOGENMOD_DISPLAY_VERSION -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_SUNRISE_SUNSET -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.DailyEntity,int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_33 -com.google.android.material.R$attr: int layout_goneMarginEnd -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: boolean requestDismiss() -wangdaye.com.geometricweather.R$bool: int cpv_default_anim_autostart -com.jaredrummler.android.colorpicker.R$dimen: int disabled_alpha_material_dark -cyanogenmod.app.CustomTile$Builder: int mIcon -androidx.constraintlayout.widget.R$styleable: int KeyPosition_keyPositionType -android.didikee.donate.R$attr: int showAsAction -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -cyanogenmod.providers.CMSettings: java.lang.String AUTHORITY -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getActiveProfile -androidx.viewpager2.R$id: int accessibility_custom_action_7 -james.adaptiveicon.R$style: int Widget_AppCompat_PopupMenu_Overflow -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid TotalLiquid -androidx.swiperefreshlayout.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay[] values() -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_Snackbar -androidx.appcompat.R$styleable: int GradientColorItem_android_color -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$id: int action_divider -wangdaye.com.geometricweather.R$id: int activity_widget_config_widgetContainer -wangdaye.com.geometricweather.R$color: int cardview_dark_background -com.google.android.material.R$style: int TextAppearance_Compat_Notification_Title -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog_MinWidth -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_ASSIST_LONG_PRESS_ACTION -okhttp3.Address: boolean equalsNonHost(okhttp3.Address) -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String unitId -com.google.android.material.R$id: int month_navigation_previous -androidx.drawerlayout.R$styleable: int FontFamilyFont_fontWeight -androidx.appcompat.widget.AppCompatImageButton: void setImageURI(android.net.Uri) -androidx.constraintlayout.widget.Barrier: void setAllowsGoneWidget(boolean) -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -cyanogenmod.app.suggest.IAppSuggestManager$Stub -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableTop -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_Tooltip -com.xw.repo.bubbleseekbar.R$attr: int thickness -androidx.customview.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.R$attr: int textAppearanceLargePopupMenu -wangdaye.com.geometricweather.R$styleable: int ActionBar_subtitle -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport parent -androidx.fragment.R$dimen: int notification_large_icon_width -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_checked -okhttp3.Response$Builder: okhttp3.Response networkResponse -cyanogenmod.themes.ThemeChangeRequest$1: ThemeChangeRequest$1() -androidx.dynamicanimation.R$dimen: int compat_button_padding_horizontal_material -io.reactivex.Observable: io.reactivex.Observable concatDelayError(java.lang.Iterable) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyleSmall -androidx.activity.R$id: int title -retrofit2.Converter$Factory: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassDescription -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: java.lang.String Unit -androidx.core.app.JobIntentService -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: ObservableSwitchMap$SwitchMapInnerObserver(io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver,long,int) -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void clear() -wangdaye.com.geometricweather.R$bool: int mtrl_btn_textappearance_all_caps -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean getCurrent() -androidx.constraintlayout.widget.R$id: int tag_unhandled_key_event_manager -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$attr: int actionModeSplitBackground -androidx.hilt.work.R$drawable: int notification_action_background -com.google.android.material.R$styleable: int TabLayout_tabPadding -wangdaye.com.geometricweather.R$dimen: int material_text_view_test_line_height_override -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean isEmpty() -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onComplete() -androidx.work.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.R$id: int widget_text_date -com.google.android.material.R$attr: int listPreferredItemPaddingStart -com.bumptech.glide.integration.okhttp.R$styleable: int[] CoordinatorLayout -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -androidx.vectordrawable.R$id: int accessibility_custom_action_23 -androidx.recyclerview.R$style: R$style() -wangdaye.com.geometricweather.R$attr: int tabInlineLabel -com.google.android.material.R$string: int hide_bottom_view_on_scroll_behavior -okhttp3.HttpUrl: boolean isHttps() -cyanogenmod.profiles.StreamSettings: void setValue(int) -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Id -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView_DropDown -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void alternateService(int,java.lang.String,okio.ByteString,java.lang.String,int,long) -androidx.hilt.R$id: int info -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_top -androidx.constraintlayout.widget.R$id: int buttonPanel -androidx.appcompat.R$attr: int actionBarTheme -androidx.preference.R$style: int TextAppearance_AppCompat_Large -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight -androidx.preference.R$styleable: int Preference_android_selectable -cyanogenmod.weather.WeatherInfo$Builder: double mWindSpeed -james.adaptiveicon.R$dimen: int abc_action_button_min_width_material -com.google.android.material.R$attr: int customPixelDimension -io.reactivex.Observable: io.reactivex.Observable concatMapMaybe(io.reactivex.functions.Function) -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date riseDate -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ListView_DropDown -com.xw.repo.bubbleseekbar.R$color: int primary_material_dark -wangdaye.com.geometricweather.R$array: int dark_mode_values -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams access$400(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.R$styleable: int MotionHelper_onHide -android.didikee.donate.R$color: int material_blue_grey_900 -androidx.appcompat.widget.AppCompatTextView: void setTextMetricsParamsCompat(androidx.core.text.PrecomputedTextCompat$Params) -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_1 -okhttp3.FormBody -androidx.preference.R$drawable: int abc_textfield_search_default_mtrl_alpha -io.reactivex.Observable: io.reactivex.Observable onExceptionResumeNext(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$styleable: int TextAppearance_textAllCaps -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator$SavedState -com.xw.repo.bubbleseekbar.R$id: int textSpacerNoButtons -wangdaye.com.geometricweather.R$attr: int contentDescription -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.Observer downstream -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean cancelled -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: long serialVersionUID -com.jaredrummler.android.colorpicker.R$dimen: int abc_progress_bar_height_material -androidx.hilt.R$styleable: int FontFamilyFont_fontStyle -androidx.preference.R$id: int action_bar_title -com.jaredrummler.android.colorpicker.R$attr: int coordinatorLayoutStyle -com.google.android.material.R$dimen: int abc_action_bar_default_height_material -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String dailyForecast -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.internal.disposables.SequentialDisposable upstream -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.Observer downstream -org.greenrobot.greendao.database.DatabaseOpenHelper: void onCreate(android.database.sqlite.SQLiteDatabase) -okio.Buffer: okio.ByteString md5() -okio.ForwardingTimeout -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.concurrent.atomic.AtomicReference error -okhttp3.Address: okhttp3.Authenticator proxyAuthenticator() -androidx.transition.R$style: R$style() -com.google.android.material.R$color: int mtrl_btn_text_color_selector -wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotation -james.adaptiveicon.R$color: int dim_foreground_material_light -com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context) -wangdaye.com.geometricweather.R$string: int feedback_no_data -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_visibility -androidx.preference.R$layout: int preference_dialog_edittext -androidx.viewpager.R$color: int notification_icon_bg_color -okhttp3.internal.http1.Http1Codec: int STATE_OPEN_RESPONSE_BODY -com.xw.repo.bubbleseekbar.R$attr: int panelMenuListTheme -androidx.appcompat.R$attr: int queryHint -androidx.lifecycle.LiveData$AlwaysActiveObserver: boolean shouldBeActive() -okhttp3.internal.cache.DiskLruCache: java.lang.String DIRTY -cyanogenmod.themes.IThemeProcessingListener$Stub: int TRANSACTION_onFinishedProcessing_0 -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_slideLockscreenIn -wangdaye.com.geometricweather.R$string: int password_toggle_content_description -androidx.constraintlayout.widget.R$attr: int circleRadius -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -android.didikee.donate.R$styleable: int AppCompatTheme_windowActionBar -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: java.lang.String getDarkModeName(android.content.Context) -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf -androidx.dynamicanimation.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$dimen: int share_view_height -androidx.preference.R$styleable: int Toolbar_buttonGravity -androidx.constraintlayout.widget.R$id: int shortcut -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: android.graphics.Path getRetreatingJoinPath() -androidx.transition.R$drawable: int notification_bg_low_pressed -androidx.constraintlayout.widget.R$integer: int abc_config_activityShortDur -com.turingtechnologies.materialscrollbar.R$dimen: int notification_right_icon_size -com.google.android.material.R$styleable: int ConstraintSet_barrierDirection -androidx.appcompat.R$drawable: int abc_scrubber_control_off_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int MenuView_preserveIconSpacing -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_getCurrentHotwordPackageName -androidx.preference.R$styleable: int ActionBar_contentInsetEndWithActions -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -androidx.appcompat.R$drawable: int abc_ic_go_search_api_material -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionMenuTextAppearance -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void applyAndAckSettings(boolean,okhttp3.internal.http2.Settings) -james.adaptiveicon.R$styleable: int AppCompatTheme_controlBackground -com.turingtechnologies.materialscrollbar.R$attr: int bottomAppBarStyle -wangdaye.com.geometricweather.R$drawable: int weather_wind_pixel -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert -wangdaye.com.geometricweather.R$anim: int popup_show_bottom_left -com.google.android.material.R$styleable: int ConstraintSet_android_translationY -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmPic1 -james.adaptiveicon.R$attr: int alphabeticModifiers -okhttp3.internal.ws.WebSocketReader: void readMessage() -com.turingtechnologies.materialscrollbar.R$attr: int buttonTint -android.didikee.donate.R$style: int TextAppearance_AppCompat_Display4 -com.google.android.material.R$dimen: int material_clock_period_toggle_width -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedHeightMajor -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onSuccess(java.lang.Object) -james.adaptiveicon.R$color: int abc_tint_seek_thumb -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenText(android.content.Context,int) -io.reactivex.Observable: io.reactivex.Observable timeInterval(java.util.concurrent.TimeUnit) -com.google.android.material.R$styleable: int NavigationView_itemTextColor -wangdaye.com.geometricweather.R$attr: int barrierDirection -androidx.coordinatorlayout.R$id: int bottom -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableBottom -com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyleIndicator -wangdaye.com.geometricweather.R$id: int notification_big_icon_3 -wangdaye.com.geometricweather.R$id: int expand_activities_button -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText -com.google.android.material.R$drawable: int abc_scrubber_track_mtrl_alpha -androidx.preference.R$string: int abc_search_hint -wangdaye.com.geometricweather.R$id: int notification_big_week_2 -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: java.util.List history -androidx.legacy.coreutils.R$drawable: int notification_action_background -cyanogenmod.hardware.ICMHardwareService: long getLtoDownloadInterval() -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabBarStyle -androidx.appcompat.widget.Toolbar: void setTitleMarginTop(int) -androidx.core.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_doneBtn -wangdaye.com.geometricweather.R$drawable: int flag_es -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void dispose() -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao -androidx.preference.R$styleable: int MenuItem_android_checked -androidx.preference.R$id: int on -com.google.android.material.chip.Chip: void setChipIconTintResource(int) -android.didikee.donate.R$styleable: int Toolbar_contentInsetEnd -androidx.appcompat.widget.ActionBarContextView: int getAnimatedVisibility() -okhttp3.internal.ws.RealWebSocket: int receivedPingCount() -cyanogenmod.externalviews.ExternalViewProviderService: android.os.Handler access$100(cyanogenmod.externalviews.ExternalViewProviderService) -com.google.android.material.R$styleable: int SwitchCompat_thumbTint -okhttp3.Dispatcher: boolean promoteAndExecute() -androidx.preference.R$styleable: int MenuView_android_headerBackground -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_legacy_text_color_selector -cyanogenmod.profiles.BrightnessSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: java.util.List value -wangdaye.com.geometricweather.remoteviews.config.Hilt_WeekWidgetConfigActivity: Hilt_WeekWidgetConfigActivity() -androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton -com.google.gson.stream.JsonReader: int PEEKED_FALSE -com.google.android.material.R$id: int tag_accessibility_clickable_spans -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: int UnitType -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: java.lang.Object index -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean -androidx.constraintlayout.widget.R$id: int ignore -james.adaptiveicon.R$styleable: int TextAppearance_fontFamily -com.bumptech.glide.integration.okhttp.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display3 -androidx.appcompat.R$attr: int actionProviderClass -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean access$602(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: boolean hasCompleted() -wangdaye.com.geometricweather.R$attr: int buttonIconDimen -okhttp3.CacheControl$Builder: CacheControl$Builder() -androidx.appcompat.R$style: int Widget_AppCompat_Button -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 -androidx.constraintlayout.widget.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State getStateAfter(androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float o3 -okio.Buffer: java.lang.String readString(long,java.nio.charset.Charset) -androidx.appcompat.R$attr: int actionBarStyle -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_hideMotionSpec -androidx.hilt.R$styleable -androidx.appcompat.R$id: int accessibility_custom_action_1 -androidx.constraintlayout.widget.R$attr: int searchViewStyle -james.adaptiveicon.R$styleable: int ActionBar_titleTextStyle -androidx.recyclerview.R$integer -okhttp3.internal.http1.Http1Codec$FixedLengthSink: Http1Codec$FixedLengthSink(okhttp3.internal.http1.Http1Codec,long) -james.adaptiveicon.R$styleable: int TextAppearance_android_shadowDx -wangdaye.com.geometricweather.R$attr: int maxAcceleration -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setUnit(java.lang.String) -james.adaptiveicon.R$style: int TextAppearance_AppCompat -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: double lat -androidx.appcompat.R$styleable: int MenuGroup_android_enabled -com.xw.repo.bubbleseekbar.R$id: int line1 -wangdaye.com.geometricweather.R$style: int Base_V26_Theme_AppCompat -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterOverflowTextAppearance -cyanogenmod.app.CustomTile$Builder: android.net.Uri mOnClickUri -androidx.customview.R$dimen: int notification_right_side_padding_top -com.turingtechnologies.materialscrollbar.R$drawable: int abc_edit_text_material -okhttp3.OkHttpClient$Builder: okhttp3.EventListener$Factory eventListenerFactory -com.xw.repo.bubbleseekbar.R$styleable: int[] BubbleSeekBar -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_navigationContentDescription -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: MfCurrentResult$Observation() -com.google.android.material.R$styleable: int MaterialToolbar_navigationIconColor -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TEMPERATURE_UNIT -james.adaptiveicon.R$styleable: int AppCompatTheme_colorError -okhttp3.CookieJar$1: void saveFromResponse(okhttp3.HttpUrl,java.util.List) -cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle() -androidx.viewpager.R$styleable: int FontFamily_fontProviderAuthority -androidx.appcompat.R$color: R$color() -com.google.android.material.R$layout: int mtrl_alert_select_dialog_multichoice -androidx.appcompat.R$string: int abc_searchview_description_voice -io.reactivex.Observable: io.reactivex.Observable wrap(io.reactivex.ObservableSource) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FREEZING_DRIZZLE -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.disposables.CompositeDisposable set -com.turingtechnologies.materialscrollbar.R$attr: int behavior_overlapTop -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property AqiIndex -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: java.util.concurrent.atomic.AtomicInteger active -wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_elevation -com.jaredrummler.android.colorpicker.R$attr: int backgroundTintMode -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getLevel() -androidx.preference.R$id: int visible_removing_fragment_view_tag -androidx.lifecycle.LiveData: int START_VERSION -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onComplete() -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: ObservableMergeWithSingle$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver) -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber -wangdaye.com.geometricweather.R$string: int abc_searchview_description_query -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadClose(int,java.lang.String) -androidx.preference.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -james.adaptiveicon.R$color: int primary_text_default_material_light -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: void setBrands(java.util.List) -com.jaredrummler.android.colorpicker.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitation(java.lang.Float) -androidx.constraintlayout.widget.R$attr: int percentY -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -wangdaye.com.geometricweather.R$string: int content_des_pm25 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String weatherEnd -androidx.recyclerview.R$dimen: int notification_large_icon_height -com.turingtechnologies.materialscrollbar.R$attr: int iconTintMode -androidx.vectordrawable.R$id: int icon -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean content -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteSelector$Selection routeSelection -androidx.cardview.widget.CardView: void setCardBackgroundColor(int) -okhttp3.Authenticator: okhttp3.Authenticator NONE -wangdaye.com.geometricweather.background.polling.basic.ForegroundUpdateService: ForegroundUpdateService() -wangdaye.com.geometricweather.R$id: int radio -androidx.work.R$id: int forever -androidx.preference.R$styleable: int BackgroundStyle_android_selectableItemBackground -androidx.preference.R$dimen: int abc_action_bar_elevation_material -wangdaye.com.geometricweather.R$attr: int textAppearanceSubtitle1 -james.adaptiveicon.R$style: int Platform_Widget_AppCompat_Spinner -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginTop -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_percent -com.bumptech.glide.Priority: com.bumptech.glide.Priority[] values() -androidx.preference.R$id: int tag_screen_reader_focusable -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_activityChooserViewStyle -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: void dispose() -com.google.gson.stream.JsonReader: long nextLong() -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_thickness -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: MfForecastV2Result$ForecastProperties$ProbabilityForecastV2() -com.google.android.material.R$dimen: int design_bottom_navigation_icon_size -androidx.constraintlayout.widget.R$styleable: int OnClick_targetId -androidx.viewpager.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService: AwakeForegroundUpdateService() -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_singleChoiceItemLayout -okio.GzipSink: java.util.zip.CRC32 crc -com.github.rahatarmanahmed.cpv.CircularProgressView: void removeListener(com.github.rahatarmanahmed.cpv.CircularProgressViewListener) -wangdaye.com.geometricweather.R$attr: int layout_goneMarginEnd -com.xw.repo.bubbleseekbar.R$attr: int buttonGravity -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean setDisposable(io.reactivex.disposables.Disposable,int) -com.google.android.material.R$styleable: int TextAppearance_android_textColor -retrofit2.ParameterHandler$HeaderMap: void apply(retrofit2.RequestBuilder,java.util.Map) -james.adaptiveicon.R$attr: int listPopupWindowStyle -okhttp3.Protocol: java.lang.String protocol -com.google.android.material.slider.RangeSlider -android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$styleable: int MaterialRadioButton_buttonTint -androidx.hilt.lifecycle.R$id: int tag_accessibility_heading -androidx.preference.R$id: int recycler_view -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String chief -com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents -com.google.android.material.R$dimen: int compat_notification_large_icon_max_height -com.google.android.material.R$attr: int cornerSizeBottomLeft -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.R$string: int help -wangdaye.com.geometricweather.R$attr: int bsb_section_text_color -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -wangdaye.com.geometricweather.R$attr: int alphabeticModifiers -com.google.android.material.internal.BaselineLayout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX) -com.jaredrummler.android.colorpicker.R$color: int primary_text_default_material_dark -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro sun() -wangdaye.com.geometricweather.R$string: int date_format_widget_long -retrofit2.ParameterHandler$Part -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25 pm25 -com.google.gson.JsonIOException: JsonIOException(java.lang.String,java.lang.Throwable) -androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context,android.util.AttributeSet) -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: int mMax -androidx.constraintlayout.widget.R$attr: int panelMenuListTheme -okhttp3.Response$Builder: okhttp3.Response priorResponse -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf -androidx.constraintlayout.widget.R$color: int ripple_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets -com.google.gson.stream.JsonReader: int PEEKED_BUFFERED -okio.ForwardingTimeout: okio.Timeout deadlineNanoTime(long) -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_primary -androidx.hilt.lifecycle.R$attr: int fontProviderFetchTimeout -androidx.appcompat.R$attr: int theme -androidx.dynamicanimation.R$styleable: int GradientColor_android_gradientRadius -io.reactivex.Observable: void blockingForEach(io.reactivex.functions.Consumer) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitation -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String date -wangdaye.com.geometricweather.R$styleable: int MenuItem_actionViewClass -com.google.android.material.R$styleable: int FontFamily_fontProviderFetchStrategy -cyanogenmod.providers.CMSettings$Global: java.lang.String getString(android.content.ContentResolver,java.lang.String) -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_REMOVED -com.google.android.material.R$attr: int actionBarStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_end_icon_margin_start -androidx.viewpager.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$styleable: int RangeSlider_values -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_layout -com.xw.repo.bubbleseekbar.R$string: int abc_menu_function_shortcut_label -androidx.core.R$drawable: int notification_bg -retrofit2.Retrofit: java.util.List converterFactories() -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int START -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onError(java.lang.Throwable) -okhttp3.RealCall: okhttp3.Response execute() -okio.RealBufferedSource$1 -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void dispose() -james.adaptiveicon.R$drawable: int abc_list_selector_disabled_holo_light -retrofit2.ParameterHandler$Part: retrofit2.Converter converter -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setStatusBar(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen -org.greenrobot.greendao.AbstractDao: java.lang.Object getKey(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Surface -james.adaptiveicon.R$style: int Base_Theme_AppCompat -okhttp3.RealCall: okhttp3.RealCall clone() -com.google.android.material.R$styleable: int[] ShapeAppearance -io.reactivex.internal.schedulers.AbstractDirectTask: java.util.concurrent.FutureTask DISPOSED -androidx.preference.R$styleable: int AlertDialog_singleChoiceItemLayout -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dark -com.google.android.material.R$id: int material_timepicker_mode_button -androidx.preference.R$attr: int switchPreferenceCompatStyle -wangdaye.com.geometricweather.R$attr: int homeAsUpIndicator -retrofit2.RequestBuilder: void addPart(okhttp3.MultipartBody$Part) -cyanogenmod.platform.Manifest$permission: java.lang.String MANAGE_ALARMS -cyanogenmod.weather.ICMWeatherManager$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_68 -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconSize -io.reactivex.Observable: io.reactivex.Single toList(int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_collapsed -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTopCompat -androidx.constraintlayout.widget.R$style: int Animation_AppCompat_DropDownUp -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SearchView -androidx.core.graphics.drawable.IconCompat -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar -androidx.constraintlayout.widget.R$styleable: int[] ActionBarLayout -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.Map lefts -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: BaseTransientBottomBar$SnackbarBaseLayout(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$attr: int dragThreshold -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String value -james.adaptiveicon.R$attr: int contentInsetEndWithActions -com.bumptech.glide.load.HttpException: int statusCode -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias -okhttp3.internal.platform.JdkWithJettyBootPlatform: void afterHandshake(javax.net.ssl.SSLSocket) -wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundNormalUpdateService: Hilt_ForegroundNormalUpdateService() -androidx.swiperefreshlayout.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.R$styleable: int[] ChipGroup -wangdaye.com.geometricweather.R$attr: int toolbarId -com.turingtechnologies.materialscrollbar.R$attr: int cardViewStyle -cyanogenmod.weather.ICMWeatherManager: void updateWeather(cyanogenmod.weather.RequestInfo) -androidx.lifecycle.extensions.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.R$id: int selected -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric -androidx.drawerlayout.widget.DrawerLayout -android.didikee.donate.R$dimen: int abc_seekbar_track_progress_height_material -com.google.android.material.transformation.TransformationChildCard: TransformationChildCard(android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setEn_US(java.lang.String) -wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line2_head_interpolator -androidx.fragment.R$attr: int fontStyle -wangdaye.com.geometricweather.R$id: int notification_big_icon_1 -wangdaye.com.geometricweather.R$drawable: int notif_temp_8 -com.google.android.material.R$attr: int autoTransition -wangdaye.com.geometricweather.R$style: int Base_DialogWindowTitleBackground_AppCompat -wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity: DailyTrendWidgetConfigActivity() -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: io.reactivex.SingleSource other -retrofit2.BuiltInConverters$ToStringConverter: java.lang.Object convert(java.lang.Object) -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Alert -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_clipToPadding -cyanogenmod.weatherservice.ServiceRequest: void reject(int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType CENTER -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar -androidx.constraintlayout.widget.ConstraintLayout: void setId(int) -retrofit2.Invocation: java.util.List arguments() -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetRight -androidx.constraintlayout.widget.R$dimen: int abc_text_size_button_material -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getDensityVoice(android.content.Context,float) -com.bumptech.glide.integration.okhttp.R$color: R$color() -androidx.appcompat.R$styleable: int ViewStubCompat_android_id -com.xw.repo.bubbleseekbar.R$attr: int goIcon -wangdaye.com.geometricweather.R$id: int scrollIndicatorUp -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_left_mtrl_light -androidx.constraintlayout.widget.R$drawable: int btn_checkbox_unchecked_mtrl -retrofit2.http.Header: java.lang.String value() -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Inverse -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_SmallComponent -androidx.preference.R$attr: int dialogTheme -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$layout: int widget_trend_hourly -com.turingtechnologies.materialscrollbar.R$dimen: int notification_top_pad_large_text -androidx.dynamicanimation.R$styleable: int GradientColor_android_centerX -com.google.android.material.R$attr: int buttonGravity -wangdaye.com.geometricweather.background.polling.work.worker.AsyncUpdateWorker: AsyncUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) -androidx.hilt.work.R$dimen: int notification_right_side_padding_top -androidx.preference.R$styleable: int TextAppearance_android_textColorLink -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getProvince() -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_NoActionBar_Bridge -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfPrecipitation -cyanogenmod.externalviews.KeyguardExternalView: void onKeyguardShowing(boolean) -wangdaye.com.geometricweather.R$string: int key_gravity_sensor_switch -androidx.viewpager.R$dimen: int compat_notification_large_icon_max_width -cyanogenmod.weather.WeatherLocation: java.lang.String getState() -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setIcePrecipitationProbability(java.lang.Float) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long readKey(android.database.Cursor,int) -com.google.android.material.R$id: int asConfigured -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_ContextMenu -androidx.constraintlayout.widget.R$styleable: int View_android_focusable -wangdaye.com.geometricweather.R$color: int weather_source_cn -wangdaye.com.geometricweather.R$drawable: int widget_day -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_icon -retrofit2.BuiltInConverters: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -retrofit2.KotlinExtensions$awaitResponse$2$2: void onFailure(retrofit2.Call,java.lang.Throwable) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Borderless_Colored -com.google.android.material.bottomnavigation.BottomNavigationView: void setSelectedItemId(int) -androidx.viewpager2.R$dimen: int notification_large_icon_width -com.google.android.material.slider.RangeSlider: int getFocusedThumbIndex() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Menu -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingEnd -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.view.WindowManager access$500(cyanogenmod.externalviews.KeyguardExternalViewProviderService) -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay() -androidx.viewpager2.R$styleable: int FontFamily_fontProviderPackage -androidx.fragment.R$layout: int notification_template_part_chronometer -com.google.android.material.R$styleable: int AlertDialog_multiChoiceItemLayout -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okhttp3.internal.cache.DiskLruCache: void readJournalLine(java.lang.String) -androidx.preference.R$styleable: int Toolbar_subtitleTextColor -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType valueOf(java.lang.String) -okhttp3.internal.cache2.Relay$RelaySource: okhttp3.internal.cache2.FileOperator fileOperator -android.didikee.donate.R$styleable: int ActionBar_itemPadding -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SLOVENIAN -com.xw.repo.bubbleseekbar.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.R$string: int learn_more -androidx.core.R$id: int accessibility_custom_action_24 -androidx.preference.TwoStatePreference$SavedState: android.os.Parcelable$Creator CREATOR -androidx.preference.R$styleable: int AppCompatTheme_actionBarDivider -com.google.android.material.R$attr: int windowMinWidthMinor -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_month_horizontal_padding -androidx.recyclerview.R$styleable: int ColorStateListItem_android_color -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: io.reactivex.functions.Action onOverflow -com.google.android.material.R$attr: int statusBarBackground -androidx.preference.R$styleable: int AppCompatTextView_textAllCaps -com.google.android.material.button.MaterialButton: int getInsetTop() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_PopupMenu -android.didikee.donate.R$attr: int switchTextAppearance -androidx.appcompat.widget.ActivityChooserView$InnerLayout: ActivityChooserView$InnerLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit getInstance(java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String dailyForecast -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light -wangdaye.com.geometricweather.R$string: int tag_precipitation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean() -com.google.android.material.R$styleable: int TextInputLayout_hintTextColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: int getStatus() -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_shapeAppearanceOverlay -androidx.vectordrawable.animated.R$id: int italic -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -com.google.android.material.snackbar.Snackbar$SnackbarLayout: Snackbar$SnackbarLayout(android.content.Context) -wangdaye.com.geometricweather.R$id: int parallax -com.google.android.material.R$styleable: int OnSwipe_touchAnchorId -cyanogenmod.app.IProfileManager$Stub$Proxy: IProfileManager$Stub$Proxy(android.os.IBinder) -androidx.appcompat.widget.ActionBarContextView: void setSubtitle(java.lang.CharSequence) -com.google.android.material.textfield.TextInputLayout: void setEndIconOnLongClickListener(android.view.View$OnLongClickListener) -okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman get() -wangdaye.com.geometricweather.R$array -com.google.android.material.radiobutton.MaterialRadioButton: void setUseMaterialThemeColors(boolean) -com.google.android.material.R$styleable: int SearchView_defaultQueryHint -com.google.android.material.R$styleable: int TextInputLayout_startIconTint -wangdaye.com.geometricweather.common.basic.models.weather.History: int nighttimeTemperature -wangdaye.com.geometricweather.R$color: int design_bottom_navigation_shadow_color -cyanogenmod.profiles.LockSettings: void setValue(int) -androidx.preference.R$layout: int select_dialog_item_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX -androidx.preference.R$attr: int panelMenuListWidth -wangdaye.com.geometricweather.R$attr: int actionTextColorAlpha -com.google.android.material.R$id: int SHOW_PROGRESS -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -androidx.recyclerview.R$attr: int spanCount -wangdaye.com.geometricweather.R$color: int design_fab_stroke_top_outer_color -com.xw.repo.bubbleseekbar.R$attr: int alpha -com.google.android.material.slider.Slider: void setFocusedThumbIndex(int) -androidx.preference.R$id: int item_touch_helper_previous_elevation -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit NMI -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: java.lang.Float value -com.google.android.material.R$attr: int listMenuViewStyle -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.UV getUV() -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio -okio.BufferedSource: okio.Buffer buffer() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String headIconType -wangdaye.com.geometricweather.R$attr: int iconResStart -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle -androidx.preference.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric -wangdaye.com.geometricweather.R$attr: int hideMotionSpec -retrofit2.ParameterHandler$RelativeUrl: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.db.entities.AlertEntity -com.google.android.material.R$styleable: int Layout_layout_constraintVertical_weight -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Action -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle -androidx.constraintlayout.widget.R$styleable: int[] MenuView -com.google.android.material.R$drawable: int abc_dialog_material_background -com.google.gson.stream.JsonWriter: void newline() -com.google.android.material.R$layout: int mtrl_calendar_month_navigation -io.reactivex.internal.util.NotificationLite: io.reactivex.disposables.Disposable getDisposable(java.lang.Object) -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -com.google.android.material.R$styleable: int OnSwipe_maxAcceleration -com.google.android.material.R$styleable: int ActionBar_contentInsetStartWithNavigation -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display3 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeRealFeelShaderTemperature() -okhttp3.FormBody$Builder: java.util.List values -com.google.android.material.R$drawable: int design_ic_visibility_off -androidx.appcompat.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -androidx.viewpager2.R$id: int dialog_button -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Caption -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: int getStatus() -androidx.activity.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button -com.google.android.material.slider.RangeSlider: void setTickActiveTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_tagView -wangdaye.com.geometricweather.R$string: int wind_12 -androidx.drawerlayout.R$attr: int fontProviderPackage -androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontVariationSettings -cyanogenmod.externalviews.KeyguardExternalView$11: void run() -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void slideLockscreenIn() -wangdaye.com.geometricweather.R$array: int clock_font -androidx.preference.R$styleable: int LinearLayoutCompat_showDividers -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_editTextPreferenceStyle -cyanogenmod.library.R$id: R$id() -wangdaye.com.geometricweather.R$attr: int tooltipForegroundColor -android.didikee.donate.R$styleable: int[] MenuView -androidx.preference.R$styleable: int ActionBar_titleTextStyle -okhttp3.Headers: java.util.Set names() -androidx.preference.R$attr: int actionModeSelectAllDrawable -cyanogenmod.os.Concierge$ParcelInfo: int getParcelVersion() -wangdaye.com.geometricweather.R$id: int auto -com.google.android.material.R$id: int test_radiobutton_android_button_tint -com.jaredrummler.android.colorpicker.R$attr: int switchTextOn -okhttp3.internal.platform.AndroidPlatform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) -io.reactivex.Observable: io.reactivex.Observable buffer(int,int) -com.google.gson.stream.JsonReader: void endObject() -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onError(java.lang.Throwable) -okhttp3.internal.platform.AndroidPlatform: void connectSocket(java.net.Socket,java.net.InetSocketAddress,int) -com.google.android.material.card.MaterialCardView: void setCheckable(boolean) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -com.google.android.material.circularreveal.CircularRevealLinearLayout -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getPm25() -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_dropdownPreferenceStyle -com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context) -androidx.coordinatorlayout.R$styleable: int[] FontFamily -okhttp3.ConnectionPool: int maxIdleConnections -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy SOURCE -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer LEFT_CLOSE -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List chuanyi -androidx.work.R$id: R$id() -androidx.lifecycle.LifecycleRegistry$1 -wangdaye.com.geometricweather.R$drawable: int notif_temp_121 -retrofit2.ParameterHandler$Field -com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setHeadIconType(java.lang.String) -androidx.viewpager2.R$attr: int fastScrollEnabled -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onNegativeCross -wangdaye.com.geometricweather.R$attr: int layout_constraintDimensionRatio -wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_light -com.github.rahatarmanahmed.cpv.CircularProgressView: float indeterminateSweep -com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_PrimarySurface -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onScreenTurnedOff -com.jaredrummler.android.colorpicker.R$attr: int subMenuArrow -androidx.constraintlayout.widget.R$id: int animateToStart -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline4 -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTextAppearance(int) -wangdaye.com.geometricweather.R$anim: int design_snackbar_out -androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableTransition -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeWindChillTemperature -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getCounterOverflowTextColor() -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$animator: int weather_fog_2 -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_height -androidx.preference.R$styleable: int SeekBarPreference_adjustable -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_thumb -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: boolean isDisposed() -androidx.fragment.R$styleable: int Fragment_android_id -com.xw.repo.bubbleseekbar.R$attr: int subtitleTextStyle -androidx.hilt.work.R$dimen -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setFillAlpha(float) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogStyle -androidx.appcompat.R$styleable: int Toolbar_android_gravity -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar -androidx.hilt.work.R$dimen: int notification_top_pad -james.adaptiveicon.R$attr: int textAppearanceSearchResultSubtitle -okio.SegmentedByteString: byte getByte(int) -io.reactivex.Observable: io.reactivex.Observable doOnComplete(io.reactivex.functions.Action) -wangdaye.com.geometricweather.R$string: int abc_capital_off -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List hourlyEntityList -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: int status -androidx.legacy.coreutils.R$id: int italic -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_logo -james.adaptiveicon.R$id: int message -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: java.lang.String desc -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer windChillTemperature -com.turingtechnologies.materialscrollbar.R$attr: int windowMinWidthMajor -com.turingtechnologies.materialscrollbar.R$attr: int iconEndPadding -android.didikee.donate.R$dimen: int notification_right_icon_size -com.google.android.material.R$styleable: int Layout_layout_constraintWidth_default -com.google.android.material.floatingactionbutton.FloatingActionButton: int getRippleColor() -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIFIAP -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfiles -com.google.android.material.button.MaterialButton: void setInternalBackground(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date getFrom() -androidx.transition.R$id: int blocking -com.turingtechnologies.materialscrollbar.R$string: int bottom_sheet_behavior -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle getInstance(java.lang.String) -io.reactivex.internal.subscriptions.SubscriptionArbiter: void drainLoop() -androidx.preference.R$dimen: int abc_action_bar_default_padding_end_material -androidx.work.R$bool: int enable_system_alarm_service_default -cyanogenmod.app.ProfileManager: void setActiveProfile(java.lang.String) -okhttp3.OkHttpClient: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner -okhttp3.RealCall: void captureCallStackTrace() -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchPadding -com.google.android.material.R$dimen: int mtrl_extended_fab_start_padding -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Subhead -com.google.android.material.R$styleable: int ActionBar_customNavigationLayout -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_bar_up_container -android.didikee.donate.R$attr: int textAllCaps -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_textAllCaps -androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_constraintSet -com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyleSmall -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int activeCount -wangdaye.com.geometricweather.R$attr: int expandedTitleTextAppearance -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_section_mark -james.adaptiveicon.R$dimen: int tooltip_precise_anchor_extra_offset -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeRealFeelTemperature() -james.adaptiveicon.R$dimen: int abc_dialog_padding_top_material -okhttp3.Cookie: long expiresAt -com.jaredrummler.android.colorpicker.R$dimen: int abc_switch_padding -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonStyle -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -androidx.preference.R$styleable: int Preference_widgetLayout -okhttp3.internal.http2.Http2Connection: void pushRequestLater(int,java.util.List) -androidx.viewpager.R$style: int TextAppearance_Compat_Notification -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.MaybeSource) -wangdaye.com.geometricweather.R$string: int gson -com.google.android.material.slider.Slider: void setHaloTintList(android.content.res.ColorStateList) -okhttp3.internal.http2.Http2Stream$StreamTimeout: java.io.IOException newTimeoutException(java.io.IOException) -james.adaptiveicon.R$attr: int paddingStart -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property CityId -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_min_width_major -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickInactiveTintList() -james.adaptiveicon.R$styleable: int DrawerArrowToggle_color -android.didikee.donate.R$layout: int abc_screen_simple -androidx.preference.R$drawable: int abc_cab_background_internal_bg -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalBias -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_typeface -com.turingtechnologies.materialscrollbar.R$attr: int hintEnabled -com.google.android.material.R$id: int material_clock_period_am_button -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginTop -okio.BufferedSource: java.lang.String readString(long,java.nio.charset.Charset) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX getNames() -com.turingtechnologies.materialscrollbar.R$styleable: int[] CompoundButton -wangdaye.com.geometricweather.R$styleable: int Chip_chipIcon -androidx.appcompat.R$attr: int fontFamily -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_icon_vertical_padding_material -wangdaye.com.geometricweather.R$attr: int lineHeight -okhttp3.OkHttpClient$1: void addLenient(okhttp3.Headers$Builder,java.lang.String,java.lang.String) -androidx.viewpager2.R$dimen: int compat_control_corner_material -androidx.preference.R$styleable: int MenuGroup_android_orderInCategory -androidx.customview.R$styleable: int ColorStateListItem_android_color -com.google.android.material.R$attr: int windowFixedHeightMinor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: void setCaiyun(java.lang.String) -com.google.android.material.R$attr: int textAppearanceSearchResultTitle -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode[] $VALUES -wangdaye.com.geometricweather.R$xml -com.turingtechnologies.materialscrollbar.R$attr: int itemIconSize -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator FORWARD_LOOKUP_PROVIDER_VALIDATOR -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.functions.Function mapper -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String getCode() -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_SYSTEM -cyanogenmod.profiles.ConnectionSettings: int mSubId -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: int UnitType -androidx.hilt.work.R$layout: int notification_action_tombstone -com.xw.repo.bubbleseekbar.R$style: int Platform_V21_AppCompat -androidx.constraintlayout.widget.R$attr: int numericModifiers -com.google.android.material.R$attr: int popupMenuStyle -wangdaye.com.geometricweather.R$attr: int spinBars -com.jaredrummler.android.colorpicker.R$string: int abc_menu_function_shortcut_label -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context,android.util.AttributeSet,int) -androidx.core.R$id: int accessibility_custom_action_0 -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onSubscribe(org.reactivestreams.Subscription) -wangdaye.com.geometricweather.R$id: int listMode -com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_backgroundTint -wangdaye.com.geometricweather.R$id: int notification_base_titleContainer -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DrawableWithAnimatedVisibilityChange getCurrentDrawable() -androidx.hilt.lifecycle.R$anim: R$anim() -androidx.constraintlayout.widget.R$dimen: int notification_action_text_size -com.google.android.material.R$layout: int design_navigation_menu_item -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean done -cyanogenmod.profiles.StreamSettings: void setOverride(boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_showMotionSpec -androidx.preference.R$attr: int windowMinWidthMajor -androidx.constraintlayout.widget.R$attr: int hideOnContentScroll -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_show_motion_spec -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature ApparentTemperature -wangdaye.com.geometricweather.R$string: int path_password_strike_through -cyanogenmod.externalviews.IExternalViewProvider: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_dither -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: AtmoAuraQAResult$MultiDaysIndexs() -com.google.gson.stream.JsonReader: char[] NON_EXECUTE_PREFIX -okhttp3.Request$Builder: okhttp3.Request$Builder delete() -com.google.android.material.textfield.TextInputLayout: void setPrefixTextColor(android.content.res.ColorStateList) -com.google.android.material.R$styleable: int OnSwipe_onTouchUp -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: java.util.List getSubInformation() -androidx.appcompat.resources.R$id: int text2 -com.turingtechnologies.materialscrollbar.R$attr: int colorControlActivated -com.jaredrummler.android.colorpicker.R$attr: int cpv_alphaChannelText -com.google.android.material.R$attr: int insetForeground -okhttp3.internal.ws.RealWebSocket: boolean pong(okio.ByteString) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property CloudCover -androidx.lifecycle.LifecycleEventObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -com.google.android.material.R$style: int Widget_AppCompat_Button_Colored -androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context) -androidx.cardview.R$dimen: int cardview_default_radius -com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense -androidx.hilt.R$drawable: int notification_action_background -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: java.util.List day -androidx.fragment.R$id: int action_text -androidx.legacy.coreutils.R$id: int chronometer -androidx.vectordrawable.animated.R$id: int notification_background -com.jaredrummler.android.colorpicker.R$color: int abc_background_cache_hint_selector_material_light -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: double visibility -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_speed -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_subtitleTextStyle -androidx.preference.R$style: int Base_Widget_AppCompat_ListView -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_buttonGravity -com.google.android.material.R$styleable: int MaterialButton_iconSize -com.google.android.material.R$styleable: int MaterialShape_shapeAppearanceOverlay -okio.SegmentedByteString: okio.ByteString substring(int,int) -wangdaye.com.geometricweather.R$dimen: int subtitle_text_size -com.google.android.material.stateful.ExtendableSavedState: android.os.Parcelable$Creator CREATOR -io.reactivex.Observable: void subscribe(io.reactivex.Observer) -androidx.work.R$color: int notification_icon_bg_color -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.R$attr: int actionModeCopyDrawable -cyanogenmod.weather.RequestInfo: int describeContents() -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition BELOW_LINE -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_menu_item_layout -androidx.preference.R$attr: int drawableTopCompat -com.google.android.material.R$anim: int abc_slide_in_top -androidx.appcompat.R$styleable: int SearchView_suggestionRowLayout -com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_900 -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableEnd -wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format_example -com.google.android.material.R$attr: int maxHeight -wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_grey -okhttp3.Cache: void initialize() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: double Value -com.bumptech.glide.integration.okhttp.R$dimen -okhttp3.internal.http1.Http1Codec$FixedLengthSink: long bytesRemaining -androidx.lifecycle.MediatorLiveData: void addSource(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle HOURLY -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_71 -com.google.android.material.internal.NavigationMenuItemView: void setTextColor(android.content.res.ColorStateList) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getPivotX() -com.google.android.material.R$string: int chip_text -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -org.greenrobot.greendao.AbstractDao: void assertSinglePk() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String y -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: FlowableConcatMap$ConcatMapInner(io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport) -androidx.preference.R$styleable: int AppCompatSeekBar_tickMark -androidx.appcompat.R$attr: int textAppearanceSearchResultTitle -androidx.core.R$dimen -androidx.constraintlayout.widget.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status[] values() -com.google.android.material.R$style: int TextAppearance_Design_Placeholder -wangdaye.com.geometricweather.R$attr: int indicatorColors -james.adaptiveicon.R$style: R$style() -wangdaye.com.geometricweather.R$id: int tag_unhandled_key_listeners -com.google.android.material.R$color: int design_default_color_on_error -wangdaye.com.geometricweather.R$drawable: int ic_launcher_background -androidx.lifecycle.viewmodel.savedstate.R -okhttp3.OkHttpClient: java.util.List protocols() -com.bumptech.glide.R$layout -io.reactivex.Observable: io.reactivex.Observable defaultIfEmpty(java.lang.Object) -james.adaptiveicon.R$attr: int showText -wangdaye.com.geometricweather.R$styleable: int Preference_dependency -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low_pressed -com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_dark -androidx.constraintlayout.widget.R$dimen: int hint_pressed_alpha_material_light -com.google.android.material.R$attr: int valueTextColor -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_93 -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: cyanogenmod.externalviews.ExternalViewProviderService$Provider this$1 -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver -androidx.constraintlayout.widget.R$styleable: int[] Variant -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_elevation -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getVibratorIntensity -androidx.cardview.R$attr: int contentPadding -androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context) -com.jaredrummler.android.colorpicker.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$dimen: int abc_control_padding_material -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textColorSearchUrl -android.support.v4.os.IResultReceiver$Stub: android.support.v4.os.IResultReceiver getDefaultImpl() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setFeelsLike(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean) -com.turingtechnologies.materialscrollbar.R$attr: int iconTint -com.google.android.material.R$styleable: int Badge_badgeTextColor -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status[] $VALUES -wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: void onCreate(org.greenrobot.greendao.database.Database) -com.google.android.material.R$styleable: int NavigationView_itemMaxLines -com.google.android.material.R$attr: int queryHint -android.didikee.donate.R$attr: int checkboxStyle -okhttp3.internal.platform.AndroidPlatform: int MAX_LOG_LENGTH -wangdaye.com.geometricweather.R$id: int packed -androidx.preference.R$id: int accessibility_custom_action_25 -com.google.android.material.R$dimen: int test_mtrl_calendar_day_cornerSize -okhttp3.Address: java.lang.String toString() -com.xw.repo.bubbleseekbar.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String cityId -wangdaye.com.geometricweather.R$id: int rectangles -cyanogenmod.app.Profile$LockMode: Profile$LockMode() -com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindowBackgroundState_state_above_anchor -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getGrassDescription() -com.jaredrummler.android.colorpicker.R$string: int abc_shareactionprovider_share_with_application -retrofit2.RequestFactory$Builder: boolean gotBody -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMinWidth -wangdaye.com.geometricweather.R$id: int chronometer -wangdaye.com.geometricweather.R$layout: int test_design_radiobutton -androidx.dynamicanimation.R$styleable: int FontFamilyFont_font -james.adaptiveicon.R$styleable: int SearchView_commitIcon -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$attr: int state_above_anchor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX() -androidx.preference.R$styleable: int SearchView_android_maxWidth -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getId() -com.google.android.material.R$styleable: int Slider_labelStyle -android.didikee.donate.R$drawable: int notification_template_icon_bg -cyanogenmod.power.PerformanceManager: int mNumberOfProfiles -androidx.hilt.work.R$id: int tag_transition_group -com.jaredrummler.android.colorpicker.R$styleable: int[] CheckBoxPreference -androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_bottom_material -com.google.android.material.R$attr: int radioButtonStyle -wangdaye.com.geometricweather.R$drawable: int mtrl_ic_error -com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_padding_vertical_material -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,long,java.util.concurrent.TimeUnit) -androidx.work.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$string: int precipitation_overview -androidx.activity.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer grassIndex -james.adaptiveicon.R$styleable: int CompoundButton_buttonCompat -cyanogenmod.weather.WeatherLocation: java.lang.String mCountry -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: CaiYunMainlyResult$ForecastDailyBean() -androidx.recyclerview.widget.StaggeredGridLayoutManager: StaggeredGridLayoutManager(android.content.Context,android.util.AttributeSet,int,int) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Headline -cyanogenmod.profiles.AirplaneModeSettings: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$attr: int layout_constraintStart_toEndOf -com.turingtechnologies.materialscrollbar.R$attr: int dialogCornerRadius -wangdaye.com.geometricweather.R$drawable: int preference_list_divider_material -okhttp3.internal.http.RealInterceptorChain: okhttp3.Response proceed(okhttp3.Request) -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_title -cyanogenmod.app.CustomTile: java.lang.String toString() -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_unregisterWeatherServiceProviderChangeListener -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$attr: int fastScrollHorizontalTrackDrawable -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_displayOptions -okhttp3.internal.connection.StreamAllocation: boolean canceled -okhttp3.CacheControl: okhttp3.CacheControl FORCE_CACHE -com.google.android.material.R$attr: int fastScrollVerticalTrackDrawable -androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context) -androidx.preference.R$string: int preference_copied -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabContentStart -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: int WeatherIcon -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedWidthMajor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: long getUpdateTime() -com.google.android.material.R$style: int TextAppearance_AppCompat_SearchResult_Title -com.xw.repo.bubbleseekbar.R$attr: int layout -androidx.constraintlayout.helper.widget.Flow: void setPaddingLeft(int) -com.jaredrummler.android.colorpicker.R$id: int right_icon -okio.RealBufferedSink: boolean closed -com.google.gson.stream.JsonScope: int NONEMPTY_ARRAY -wangdaye.com.geometricweather.R$string: int key_hide_lunar -androidx.lifecycle.Transformations$1 -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_bottom_padding -com.google.android.material.R$attr: int transitionEasing -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display4 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String ragweedDescription -wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: void onUpgrade(org.greenrobot.greendao.database.Database,int,int) -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$style: int Base_Widget_AppCompat_SeekBar -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle -androidx.hilt.R$dimen: int notification_main_column_padding_top -androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.R$style: int widget_text_clock_analog_Light -com.google.android.material.card.MaterialCardView: float getProgress() -cyanogenmod.weatherservice.WeatherProviderService: android.os.Handler access$000(cyanogenmod.weatherservice.WeatherProviderService) -androidx.activity.R$id: int text -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: int UnitType -okio.BufferedSink: okio.Buffer buffer() -androidx.constraintlayout.helper.widget.Flow: void setFirstVerticalStyle(int) -androidx.hilt.work.R$attr: int alpha -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_controlBackground -com.turingtechnologies.materialscrollbar.R$attr: int statusBarBackground -wangdaye.com.geometricweather.R$animator: int mtrl_fab_hide_motion_spec -androidx.preference.R$style: int Base_Widget_AppCompat_PopupWindow -com.google.android.material.R$attr: int telltales_tailColor -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String city -com.jaredrummler.android.colorpicker.R$attr: int homeAsUpIndicator -cyanogenmod.weather.WeatherLocation: java.lang.String getCountry() -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_DarkActionBar -okhttp3.internal.ws.RealWebSocket$CancelRunnable -androidx.lifecycle.LifecycleRegistry$ObserverWithState: androidx.lifecycle.LifecycleEventObserver mLifecycleObserver -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: long serialVersionUID -com.google.android.material.slider.Slider: void setThumbRadiusResource(int) -androidx.viewpager.widget.ViewPager: void setAdapter(androidx.viewpager.widget.PagerAdapter) -james.adaptiveicon.R$layout: int abc_select_dialog_material -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton -com.google.android.material.R$styleable: int Transform_android_scaleX -androidx.appcompat.widget.SearchView: void setOnCloseListener(androidx.appcompat.widget.SearchView$OnCloseListener) -retrofit2.Utils: boolean hasUnresolvableType(java.lang.reflect.Type) -retrofit2.Callback -wangdaye.com.geometricweather.R$styleable: int Chip_chipStrokeWidth -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_50 -androidx.preference.R$attr: int titleMarginStart -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Long getId() -androidx.preference.R$color: int abc_search_url_text_selected -wangdaye.com.geometricweather.R$drawable: int shortcuts_rain_foreground -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean isDaylight() -cyanogenmod.providers.CMSettings$1: CMSettings$1() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: java.lang.String Unit -com.google.android.material.R$style: int Widget_AppCompat_TextView_SpinnerItem -org.greenrobot.greendao.AbstractDaoSession: java.lang.Object load(java.lang.Class,java.lang.Object) -cyanogenmod.providers.CMSettings$Secure: java.lang.String PRIVACY_GUARD_NOTIFICATION -androidx.cardview.R$styleable: int CardView_contentPaddingTop -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -okhttp3.internal.platform.Platform: boolean isConscryptPreferred() -wangdaye.com.geometricweather.R$string: int key_exchange_day_night_temp_switch -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String OVERLAYS_URI -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSwoopDuration -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextEnabled -com.turingtechnologies.materialscrollbar.R$drawable: int abc_spinner_mtrl_am_alpha -okhttp3.internal.http2.Http2Connection: void failConnection() -androidx.appcompat.R$styleable: int ActionBar_customNavigationLayout -wangdaye.com.geometricweather.R$id: int wrap -cyanogenmod.app.ProfileGroup: ProfileGroup(android.os.Parcel) -retrofit2.adapter.rxjava2.BodyObservable: BodyObservable(io.reactivex.Observable) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure -androidx.viewpager.R$id: int right_side -androidx.viewpager.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginTop -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Small -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupWindow -cyanogenmod.weather.WeatherInfo: boolean access$000(int) -com.turingtechnologies.materialscrollbar.R$attr: int fabAlignmentMode -com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar -androidx.constraintlayout.widget.R$attr: int tooltipFrameBackground -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$id: int dialog_time_setter_time_picker -wangdaye.com.geometricweather.R$attr: int selectable -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_to_on_mtrl_000 -android.didikee.donate.R$styleable: int[] ButtonBarLayout -androidx.preference.R$style: int Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.R$id: int action_text -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: java.lang.String Code -com.google.android.material.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -androidx.fragment.R$color: R$color() -com.google.android.material.R$style: int ThemeOverlay_AppCompat_DayNight -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Caption -okhttp3.ConnectionPool: void put(okhttp3.internal.connection.RealConnection) -com.turingtechnologies.materialscrollbar.R$attr: int borderWidth -wangdaye.com.geometricweather.R$layout: int activity_about -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitationDuration -wangdaye.com.geometricweather.R$attr: int drawableBottomCompat -com.google.android.material.R$styleable: int Tooltip_android_textAppearance -androidx.preference.R$id: int title -androidx.dynamicanimation.R$style: int Widget_Compat_NotificationActionText -androidx.preference.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf -com.google.android.material.R$attr: int badgeTextColor -androidx.preference.R$styleable: int SearchView_queryBackground -androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeightLarge -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderFetchStrategy -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_primary_mtrl_alpha -androidx.preference.R$style: int Base_Widget_AppCompat_Button -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_statusBarBackground -com.google.android.material.R$id: int sin -com.google.android.material.circularreveal.CircularRevealFrameLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_allowPresets -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -wangdaye.com.geometricweather.R$id: int activity_weather_daily_subtitle -androidx.core.R$id: int accessibility_custom_action_22 -okio.SegmentedByteString: okio.ByteString hmacSha1(okio.ByteString) -com.google.gson.stream.JsonReader: char[] buffer -wangdaye.com.geometricweather.R$drawable: int abc_ic_ab_back_material -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_anchor -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getRotation() -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast -james.adaptiveicon.R$color: int material_blue_grey_900 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: AccuCurrentResult$PrecipitationSummary$Precipitation() -com.google.gson.internal.LazilyParsedNumber: double doubleValue() -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String LOCKSCREEN_URI -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_begin -io.reactivex.Observable: io.reactivex.Observable retryUntil(io.reactivex.functions.BooleanSupplier) -okhttp3.internal.http2.Hpack$Writer: int SETTINGS_HEADER_TABLE_SIZE -com.google.android.material.button.MaterialButton: android.graphics.drawable.Drawable getIcon() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String type -wangdaye.com.geometricweather.R$attr: int layout_anchor -james.adaptiveicon.R$color: int accent_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingBottom -androidx.appcompat.R$style: int Base_DialogWindowTitle_AppCompat -okio.RealBufferedSink$1: okio.RealBufferedSink this$0 -cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_DO_NOTHING -okhttp3.Cache$Entry: long sentRequestMillis -androidx.appcompat.resources.R$integer: R$integer() -okhttp3.internal.http2.Http2Writer: int maxFrameSize -android.didikee.donate.R$attr: int colorControlNormal -james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedHeightMinor -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: CompositeException$CompositeExceptionCausalChain() -android.didikee.donate.R$styleable: int MenuGroup_android_visible -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.constraintlayout.widget.R$attr: int keyPositionType -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollEnabled -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyEndText -james.adaptiveicon.R$id: int expand_activities_button -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: AirQuality(java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_font -androidx.appcompat.R$dimen: int compat_notification_large_icon_max_height -james.adaptiveicon.R$attr: int divider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setStatus(int) -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_1 -com.turingtechnologies.materialscrollbar.R$attr: int switchPadding -wangdaye.com.geometricweather.R$drawable: int ic_temperature_kelvin -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_material_dark -wangdaye.com.geometricweather.R$attr: int switchPadding -james.adaptiveicon.R$attr: int spinnerDropDownItemStyle -james.adaptiveicon.R$id: int action_text -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceBody1 -cyanogenmod.app.IPartnerInterface$Stub: IPartnerInterface$Stub() -wangdaye.com.geometricweather.R$id: int widget_day_icon -wangdaye.com.geometricweather.R$color: int colorPrimary -androidx.hilt.R$id: int accessibility_custom_action_23 -androidx.appcompat.R$anim: int abc_popup_exit -androidx.vectordrawable.animated.R$attr: int font -androidx.appcompat.R$layout: int abc_activity_chooser_view_list_item -com.xw.repo.bubbleseekbar.R$id: int line3 -androidx.hilt.work.R$id: int action_text -wangdaye.com.geometricweather.R$string: int action_alert -androidx.preference.R$string: int abc_searchview_description_clear -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: int getPrecipitationColor(android.content.Context) -com.google.gson.stream.JsonReader: int NUMBER_CHAR_DIGIT -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy -wangdaye.com.geometricweather.R$string: int action_appStore -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarItemBackground -androidx.constraintlayout.widget.R$styleable: int ActionBar_backgroundStacked -wangdaye.com.geometricweather.R$attr: int order -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -androidx.preference.R$attr: int drawableTintMode -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isIce() -androidx.preference.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -okhttp3.internal.tls.OkHostnameVerifier: int ALT_IPA_NAME -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: int UnitType -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: okhttp3.internal.http2.Http2Stream val$newStream -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder followSslRedirects(boolean) -com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_height -com.google.android.material.R$dimen: int mtrl_chip_pressed_translation_z -com.google.android.material.R$layout: int material_timepicker_textinput_display -androidx.constraintlayout.widget.R$styleable: int[] MenuItem -okio.Util -androidx.vectordrawable.R$id: int blocking -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationZ -androidx.swiperefreshlayout.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$string: int v7_preference_on -com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar_PrimarySurface -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: int Value -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_SLOW_AVG -okhttp3.Cookie: java.lang.String toString() -cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String toString() -wangdaye.com.geometricweather.R$styleable: int Constraint_android_maxHeight -cyanogenmod.weather.WeatherLocation$1: WeatherLocation$1() -com.xw.repo.bubbleseekbar.R$styleable -com.google.android.material.R$styleable: int CollapsingToolbarLayout_maxLines -androidx.work.R$styleable: int GradientColor_android_centerColor -okhttp3.internal.ws.RealWebSocket$1: void run() -com.xw.repo.bubbleseekbar.R$id: int contentPanel -android.didikee.donate.R$attr: int actionModeBackground -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_EditText -com.google.android.material.tabs.TabLayout: void setTabGravity(int) -androidx.appcompat.R$color: int switch_thumb_normal_material_light -okhttp3.internal.connection.StreamAllocation: void streamFinished(boolean,okhttp3.internal.http.HttpCodec,long,java.io.IOException) -androidx.appcompat.R$styleable: int Toolbar_navigationContentDescription -androidx.vectordrawable.animated.R$drawable: int notification_bg_normal -okhttp3.internal.http2.Http2Connection$1 -com.google.android.material.R$attr: int cardUseCompatPadding -wangdaye.com.geometricweather.R$id: int dialog_button -androidx.legacy.coreutils.R$dimen: int notification_media_narrow_margin -androidx.cardview.widget.CardView: int getContentPaddingTop() -com.google.android.material.chip.Chip: void setChipIconEnabledResource(int) -android.didikee.donate.R$color: int bright_foreground_disabled_material_light -com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_DropDownUp -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getIconTint() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: double GmtOffset -androidx.appcompat.R$attr: int listItemLayout -com.google.android.material.datepicker.MaterialCalendarGridView: MaterialCalendarGridView(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$attr: int navigationIcon -com.google.android.material.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_RadioButton -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onComplete() -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void subscribeNext() -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$id: int TOP_START -androidx.constraintlayout.utils.widget.ImageFilterButton -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display1 -androidx.preference.R$color: int primary_material_dark -androidx.preference.R$attr: int layout_anchorGravity -wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitle -androidx.recyclerview.R$layout: int notification_template_part_chronometer -androidx.work.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.R$styleable: int[] ActionMenuView -androidx.preference.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.google.android.material.R$attr: int tabGravity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setDetail(java.lang.String) -androidx.swiperefreshlayout.R$drawable: int notification_bg_low -com.google.android.material.button.MaterialButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$attr: int tabMode -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long skip -okhttp3.internal.http2.Http2Connection$Listener$1 -cyanogenmod.externalviews.KeyguardExternalView$10: void run() -androidx.preference.R$id: int customPanel -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type NONE -cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener: void onDetachedFromWindow() -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: RxJava2CallAdapterFactory(io.reactivex.Scheduler,boolean) -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.Function leftEnd -wangdaye.com.geometricweather.R$string: int thanks -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.util.Map groups -androidx.appcompat.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.util.List value -androidx.lifecycle.extensions.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$styleable: int Constraint_animate_relativeTo -androidx.preference.R$styleable: int ActionBar_subtitle -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void setDisposable(io.reactivex.disposables.Disposable) -android.support.v4.os.IResultReceiver$Default: IResultReceiver$Default() -com.google.android.material.R$styleable: int AppCompatTheme_actionModePasteDrawable -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(cyanogenmod.app.ThemeVersion$ComponentVersion) -androidx.work.R$layout -com.google.android.material.chip.Chip: android.content.res.ColorStateList getRippleColor() -wangdaye.com.geometricweather.R$attr: int windowMinWidthMinor -wangdaye.com.geometricweather.R$drawable: int btn_radio_on_to_off_mtrl_animation -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int CloudCover -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_CAMELLIA_256_CBC_SHA -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -wangdaye.com.geometricweather.R$id: int decelerateAndComplete -wangdaye.com.geometricweather.R$attr: int switchTextOn -wangdaye.com.geometricweather.R$styleable: int FlowLayout_lineSpacing -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String getTo() -androidx.activity.R$string -wangdaye.com.geometricweather.R$styleable: int[] SwipeRefreshLayout -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_position -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircle -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelBackground -androidx.fragment.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$attr: int layoutDuringTransition -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -cyanogenmod.app.Profile: void setStreamSettings(cyanogenmod.profiles.StreamSettings) -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderAuthority -androidx.constraintlayout.widget.R$anim: int abc_tooltip_exit -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.String aqiText -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_variablePadding -com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearance -androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Dialog -androidx.activity.R$attr: int ttcIndex -wangdaye.com.geometricweather.R$attr: int searchIcon -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.DailyEntityDao dailyEntityDao -okhttp3.internal.http.RealInterceptorChain: int readTimeoutMillis() -cyanogenmod.weather.WeatherInfo$DayForecast: double mHigh -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: java.util.concurrent.atomic.AtomicReference upstream -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconTint -androidx.recyclerview.R$id: int action_divider -okhttp3.internal.ws.WebSocketWriter: boolean writerClosed -com.bumptech.glide.integration.okhttp.R$id: int chronometer -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: double Value -android.support.v4.graphics.drawable.IconCompatParcelizer: void write(androidx.core.graphics.drawable.IconCompat,androidx.versionedparcelable.VersionedParcel) -wangdaye.com.geometricweather.R$styleable: int Toolbar_android_minHeight -io.reactivex.internal.schedulers.ScheduledRunnable: int PARENT_INDEX -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf -androidx.coordinatorlayout.R$drawable: int notification_bg_normal_pressed -com.turingtechnologies.materialscrollbar.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric -james.adaptiveicon.R$style: int Widget_AppCompat_ListPopupWindow -com.google.android.material.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getUrl() -androidx.appcompat.R$attr: int alertDialogTheme -retrofit2.http.Headers: java.lang.String[] value() -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Small -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIconTintList(android.content.res.ColorStateList) -okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part create(okhttp3.RequestBody) -com.google.android.material.R$attr: int attributeName -cyanogenmod.weatherservice.ServiceRequest -okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withReadTimeout(int,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService newInstance(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi,io.reactivex.disposables.CompositeDisposable) -androidx.appcompat.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText -retrofit2.Retrofit: Retrofit(okhttp3.Call$Factory,okhttp3.HttpUrl,java.util.List,java.util.List,java.util.concurrent.Executor,boolean) -com.github.rahatarmanahmed.cpv.R$bool: int cpv_default_is_indeterminate -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button -androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveShape -cyanogenmod.providers.CMSettings$System: java.lang.String BLUETOOTH_ACCEPT_ALL_FILES -james.adaptiveicon.R$id: int src_over -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getUnitId() -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver) -com.google.android.material.R$attr: int buttonBarButtonStyle -com.bumptech.glide.R$layout: int notification_template_part_chronometer -com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -okio.Okio$1 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setZh_CN(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String zh_TW -okhttp3.internal.cache.CacheInterceptor: okhttp3.Response cacheWritingResponse(okhttp3.internal.cache.CacheRequest,okhttp3.Response) -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onError(java.lang.Throwable) -cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String CITY_ID -androidx.appcompat.R$styleable: int AppCompatTheme_dividerHorizontal -com.google.android.material.R$styleable: int MaterialCalendar_yearTodayStyle -androidx.vectordrawable.animated.R$drawable: int notification_template_icon_bg -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void dispose() -androidx.customview.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_color -wangdaye.com.geometricweather.R$attr: int textAppearanceListItemSecondary -wangdaye.com.geometricweather.R$dimen: int abc_dialog_min_width_minor -androidx.cardview.widget.CardView: CardView(android.content.Context,android.util.AttributeSet,int) -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.lang.Object key -com.google.android.material.R$styleable: int ActionMenuItemView_android_minWidth -com.xw.repo.bubbleseekbar.R$style: int Base_V23_Theme_AppCompat -com.xw.repo.BubbleSeekBar -wangdaye.com.geometricweather.R$attr: int type -wangdaye.com.geometricweather.R$styleable: int ScrimInsetsFrameLayout_insetForeground -androidx.vectordrawable.animated.R$drawable: R$drawable() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void drain() -com.turingtechnologies.materialscrollbar.R$styleable: int ActivityChooserView_initialActivityCount -androidx.preference.R$id: int multiply -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory -android.didikee.donate.R$attr: int track -com.google.android.material.R$style: int Theme_MaterialComponents_BottomSheetDialog -androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_srcCompat -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_trackTint -com.jaredrummler.android.colorpicker.R$attr: int actionLayout -androidx.core.widget.NestedScrollView -okhttp3.Dispatcher: void finished(okhttp3.RealCall) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconGravity -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night -com.turingtechnologies.materialscrollbar.R$styleable: int[] StateListDrawable -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,long,java.util.concurrent.TimeUnit) -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: MfHistoryResult() -androidx.appcompat.resources.R$attr: int font -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display1 -androidx.lifecycle.ComputableLiveData$2 -com.jaredrummler.android.colorpicker.R$attr: int cpv_showColorShades -okhttp3.Response: java.lang.String header(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String sunRise -androidx.constraintlayout.widget.R$styleable: int Layout_barrierMargin -androidx.appcompat.widget.ListPopupWindow: void setOnItemClickListener(android.widget.AdapterView$OnItemClickListener) -androidx.customview.R$layout -com.google.android.material.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.ChineseCityEntity) -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked -androidx.appcompat.widget.AppCompatSpinner: java.lang.CharSequence getPrompt() -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onKeyguardShowing(boolean) -com.google.android.material.R$styleable: int ChipGroup_selectionRequired -com.google.android.material.chip.Chip: void setOnCloseIconClickListener(android.view.View$OnClickListener) -android.didikee.donate.R$id: int top -androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton -androidx.appcompat.widget.ActivityChooserView: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -wangdaye.com.geometricweather.R$styleable: int[] ShapeableImageView -com.bumptech.glide.integration.okhttp.R$id: int action_text -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_36dp -androidx.hilt.R$styleable: int FontFamily_fontProviderCerts -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void dispose() -wangdaye.com.geometricweather.R$animator: int weather_hail_1 -okhttp3.CacheControl: boolean noCache -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItemSmall -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange -androidx.work.R$string: R$string() -wangdaye.com.geometricweather.R$styleable: int[] KeyTrigger -wangdaye.com.geometricweather.R$attr: int entryValues -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.db.entities.DaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String city -androidx.preference.R$drawable: int abc_btn_radio_material_anim -wangdaye.com.geometricweather.R$string: int date_format_widget_oreo_style -androidx.constraintlayout.widget.R$attr: int colorSwitchThumbNormal -androidx.constraintlayout.widget.R$attr: int drawableSize -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomAppBar -okhttp3.CipherSuite: okhttp3.CipherSuite init(java.lang.String,int) -androidx.preference.R$styleable: int ViewBackgroundHelper_backgroundTint -androidx.cardview.widget.CardView: void setRadius(float) -james.adaptiveicon.R$color: int background_floating_material_dark -com.turingtechnologies.materialscrollbar.R$attr: int colorControlHighlight -androidx.dynamicanimation.R$id: int line1 -cyanogenmod.hardware.ICMHardwareService: boolean unRegisterThermalListener(cyanogenmod.hardware.IThermalListenerCallback) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_103 -androidx.preference.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$attr: int radioButtonStyle -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_layout -okhttp3.FormBody$Builder -androidx.work.R$drawable: int notification_icon_background -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_constantSize -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_caption_material -okhttp3.internal.connection.RouteSelector: boolean hasNextProxy() -androidx.loader.R$drawable: int notification_icon_background -com.google.android.material.R$dimen: int design_snackbar_action_inline_max_width -cyanogenmod.weather.WeatherInfo: int mTempUnit -james.adaptiveicon.R$styleable: int AlertDialog_showTitle -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void dispose() -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_ttcIndex -cyanogenmod.app.suggest.IAppSuggestManager: java.util.List getSuggestions(android.content.Intent) -com.jaredrummler.android.colorpicker.R$dimen: int cpv_color_preference_normal -androidx.customview.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_80 -androidx.vectordrawable.animated.R$layout: int custom_dialog -okio.InflaterSource: okio.BufferedSource source -com.xw.repo.bubbleseekbar.R$drawable: int abc_ab_share_pack_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintStart_toEndOf -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_ON_NEW_REQUEST -androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -com.google.android.material.appbar.AppBarLayout: int getDownNestedScrollRange() -wangdaye.com.geometricweather.R$drawable: int ic_cloud -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetRight -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: io.reactivex.internal.operators.observable.ObservableAmb$AmbCoordinator parent -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition[] values() -com.jaredrummler.android.colorpicker.R$attr: int submitBackground -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial Imperial -wangdaye.com.geometricweather.R$id: int cpv_color_panel_new -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setForecastDaily(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean) -james.adaptiveicon.R$color: int secondary_text_disabled_material_dark -androidx.preference.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -com.google.android.material.R$styleable: int AppCompatTheme_activityChooserViewStyle -wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_grey -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$styleable: int BottomNavigationView_itemBackground -androidx.lifecycle.LiveData: androidx.arch.core.internal.SafeIterableMap mObservers -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Body2 -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPadding -androidx.coordinatorlayout.R$dimen: int compat_control_corner_material -com.jaredrummler.android.colorpicker.R$dimen: int cpv_item_horizontal_padding -cyanogenmod.weather.WeatherInfo$Builder: int mTempUnit -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX names -okhttp3.internal.http2.Hpack$Writer -com.turingtechnologies.materialscrollbar.R$id: int tabMode -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void subscribe(io.reactivex.Observer) -james.adaptiveicon.R$styleable: int MenuItem_android_id -android.didikee.donate.R$styleable: int SearchView_layout -com.google.android.material.R$styleable: int TextInputLayout_android_enabled -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit getInstance(java.lang.String) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_bottom -androidx.viewpager2.widget.ViewPager2: void setPageTransformer(androidx.viewpager2.widget.ViewPager2$PageTransformer) -com.google.android.material.R$id: int scrollable -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_36dp -okhttp3.RequestBody$1: long contentLength() -cyanogenmod.externalviews.KeyguardExternalView: void onScreenTurnedOff() -androidx.preference.R$styleable: int DialogPreference_android_positiveButtonText -com.xw.repo.bubbleseekbar.R$id: int action_mode_bar_stub -com.turingtechnologies.materialscrollbar.R$color: int material_deep_teal_200 -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty24H -wangdaye.com.geometricweather.R$array: int temperature_units_long -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.internal.disposables.SequentialDisposable sd -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature WindChillTemperature -com.turingtechnologies.materialscrollbar.R$attr: int actionModeFindDrawable -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getType() -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_thickness -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float CarbonMonoxide -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_precise_anchor_extra_offset -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_useSimpleSummaryProvider -com.github.rahatarmanahmed.cpv.CircularProgressView$7: CircularProgressView$7(com.github.rahatarmanahmed.cpv.CircularProgressView) -androidx.recyclerview.R$id: int accessibility_custom_action_13 -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void cancel() -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_createCustomTileWithTag -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_progressBarPadding -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_elevation -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: void invoke(java.lang.Throwable) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int ISOLATED_THUNDERSHOWERS -james.adaptiveicon.R$dimen: int abc_search_view_preferred_width -wangdaye.com.geometricweather.R$id: int action_settings -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionProviderClass -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconVisible -org.greenrobot.greendao.AbstractDao: boolean isStandardSQLite -android.didikee.donate.R$color: int background_floating_material_light -com.xw.repo.bubbleseekbar.R$color: int abc_background_cache_hint_selector_material_light -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_margin -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean isEnabled() -com.google.android.material.R$styleable: int OnSwipe_touchAnchorSide -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onComplete() -wangdaye.com.geometricweather.R$string: int abc_menu_function_shortcut_label -wangdaye.com.geometricweather.R$array: int week_widget_style_values -com.google.android.material.R$dimen: int mtrl_calendar_day_width -okhttp3.internal.cache.DiskLruCache: boolean mostRecentRebuildFailed -com.google.android.material.R$dimen: int abc_text_size_large_material -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity -com.google.android.material.R$dimen: int hint_pressed_alpha_material_dark -androidx.preference.R$styleable: int ListPreference_android_entries -com.turingtechnologies.materialscrollbar.R$drawable: int design_ic_visibility_off -com.google.android.material.R$string: int exposed_dropdown_menu_content_description -wangdaye.com.geometricweather.R$styleable: int Constraint_constraint_referenced_ids -androidx.appcompat.R$drawable: int abc_cab_background_top_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$attr: int subtitle -com.bumptech.glide.R$id: int right -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_pressedTranslationZ -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: ObservableFlatMap$MergeObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean,int,int) -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColor -okhttp3.internal.ws.WebSocketProtocol: java.lang.String closeCodeExceptionMessage(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setUpdateTime(long) -com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleMargin -james.adaptiveicon.R$attr: int srcCompat -android.support.v4.os.ResultReceiver$MyRunnable -com.google.android.material.R$styleable: int TextInputLayout_hintAnimationEnabled -james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_subMenuArrow -androidx.constraintlayout.widget.R$styleable: int SearchView_goIcon -com.jaredrummler.android.colorpicker.R$style: int PreferenceFragmentList_Material -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItem -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat -com.turingtechnologies.materialscrollbar.R$layout: int notification_action -android.didikee.donate.R$drawable: int abc_btn_radio_to_on_mtrl_015 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ImageButton -androidx.fragment.R$anim: int fragment_fast_out_extra_slow_in -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Body1 -io.reactivex.Observable: io.reactivex.Observable repeat(long) -com.google.gson.stream.JsonReader: int limit -androidx.lifecycle.ClassesInfoCache: ClassesInfoCache() -okio.Timeout: boolean hasDeadline() -cyanogenmod.media.MediaRecorder: java.lang.String ACTION_HOTWORD_INPUT_CHANGED -io.reactivex.internal.queue.SpscArrayQueue: java.util.concurrent.atomic.AtomicLong producerIndex -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String zh_CN -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color -com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_lunar -wangdaye.com.geometricweather.R$id: int disableScroll -wangdaye.com.geometricweather.R$styleable: int[] CompoundButton -androidx.preference.R$styleable: int ActionBar_progressBarPadding -android.didikee.donate.R$styleable: int AppCompatTextView_fontFamily -androidx.preference.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -androidx.fragment.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$drawable: int cpv_preset_checked -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableEnd -okhttp3.Response$Builder: java.lang.String message -wangdaye.com.geometricweather.R$drawable: int widget_card_light_0 -com.google.android.material.R$id: int snackbar_action -androidx.appcompat.R$styleable: int AppCompatTextView_drawableBottomCompat -wangdaye.com.geometricweather.R$id: int notification_big_icon_4 -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_onDetachedFromWindow -com.google.android.material.R$id: int largeLabel -com.google.gson.FieldNamingPolicy$3: FieldNamingPolicy$3(java.lang.String,int) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeApparentTemperature(java.lang.Integer) -androidx.appcompat.resources.R$id: int accessibility_custom_action_17 -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$id: int dragLeft -androidx.preference.R$styleable: int Preference_selectable -androidx.appcompat.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -androidx.constraintlayout.widget.R$attr: R$attr() -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void request(long) -wangdaye.com.geometricweather.db.entities.LocationEntity: void setTimeZone(java.util.TimeZone) -androidx.recyclerview.widget.RecyclerView: boolean getPreserveFocusAfterLayout() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int OTHER_STATE_CONSUMED_OR_EMPTY -androidx.core.widget.NestedScrollView: float getBottomFadingEdgeStrength() -android.didikee.donate.R$styleable: int AppCompatTheme_spinnerStyle -wangdaye.com.geometricweather.R$string: int feedback_about_geocoder -com.xw.repo.bubbleseekbar.R$styleable: int[] AlertDialog -androidx.hilt.R$drawable: int notification_bg_low -io.reactivex.internal.schedulers.ScheduledDirectTask: ScheduledDirectTask(java.lang.Runnable) -androidx.appcompat.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -com.turingtechnologies.materialscrollbar.R$id: int forever -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: SavedStateHandle$SavingStateLiveData(androidx.lifecycle.SavedStateHandle,java.lang.String) -wangdaye.com.geometricweather.R$attr: int thumbColor -com.google.android.material.floatingactionbutton.FloatingActionButton: void setElevation(float) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_checked -okhttp3.OkHttpClient$Builder: int callTimeout -androidx.appcompat.widget.SwitchCompat: int getSwitchPadding() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX brandInfo -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: boolean done -okhttp3.internal.ws.RealWebSocket: void cancel() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: AccuCurrentResult$Visibility$Imperial() -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayWeekWidgetConfigActivity -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_off_mtrl_alpha -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_begin -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty6H -com.github.rahatarmanahmed.cpv.CircularProgressView: float initialStartAngle -cyanogenmod.app.CustomTile$GridExpandedStyle -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeStepGranularity -wangdaye.com.geometricweather.R$array: int pollen_unit_voices -okhttp3.internal.cache.DiskLruCache$Entry: java.io.File[] dirtyFiles -retrofit2.Utils$ParameterizedTypeImpl: java.lang.String toString() -androidx.appcompat.R$attr: int textAppearancePopupMenuHeader -android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: boolean IsDaylightSaving -androidx.hilt.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_layout -com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_top_material -com.jaredrummler.android.colorpicker.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.MinutelyEntity) -androidx.constraintlayout.widget.R$attr: int layout_goneMarginLeft -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Long getId() -androidx.transition.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setPubTime(java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int actionDropDownStyle -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_width_material -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCardBackgroundColor() -androidx.appcompat.R$drawable: int abc_text_select_handle_right_mtrl_dark -androidx.recyclerview.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.R$attr: int cardUseCompatPadding -james.adaptiveicon.R$attr: int fontProviderPackage -io.reactivex.internal.subscribers.DeferredScalarSubscriber: long serialVersionUID -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_toRightOf -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_splitTrack -wangdaye.com.geometricweather.R$layout: int item_icon_provider -com.xw.repo.bubbleseekbar.R$attr: int windowFixedHeightMinor -wangdaye.com.geometricweather.background.polling.basic.UpdateService: UpdateService() -androidx.constraintlayout.widget.R$styleable: int ActionBar_titleTextStyle -android.support.v4.app.INotificationSideChannel$Stub$Proxy: void cancelAll(java.lang.String) -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: long serialVersionUID -okhttp3.internal.http2.Http2Stream$FramingSink: Http2Stream$FramingSink(okhttp3.internal.http2.Http2Stream) -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_elevation_material -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_percent -okhttp3.internal.Version -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_toBottomOf -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_holo_light -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_percent -com.google.android.material.R$style: int Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_seekBarStyle -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Title -androidx.viewpager2.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework -androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingEnd -com.google.android.material.R$layout: int notification_template_custom_big -james.adaptiveicon.R$styleable: int AppCompatTheme_actionButtonStyle -androidx.appcompat.R$styleable: int[] FontFamily -okio.Buffer: int readUtf8CodePoint() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.fuseable.SimpleQueue queue -androidx.coordinatorlayout.R$color: int ripple_material_light -com.xw.repo.bubbleseekbar.R$anim: int abc_slide_out_bottom -androidx.preference.R$styleable: int MenuGroup_android_enabled -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_preserveIconSpacing -okhttp3.Response$Builder: okhttp3.Response$Builder protocol(okhttp3.Protocol) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: double Value -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean isDisposed() -wangdaye.com.geometricweather.R$drawable: int weather_thunder -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_constraint_referenced_ids -androidx.appcompat.resources.R$color: int notification_icon_bg_color -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginLeft -androidx.lifecycle.extensions.R$styleable: int Fragment_android_id -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_18 -com.google.android.material.R$styleable: int DrawerArrowToggle_spinBars -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: java.lang.Object v2 -wangdaye.com.geometricweather.R$attr: int iconTint -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_removeNotificationGroup -wangdaye.com.geometricweather.R$color: int abc_search_url_text_normal -com.google.android.material.slider.BaseSlider: void setValues(java.lang.Float[]) -okhttp3.Address: javax.net.SocketFactory socketFactory() -androidx.appcompat.R$style: int Base_V23_Theme_AppCompat_Light -androidx.appcompat.widget.AppCompatCheckBox: void setBackgroundDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String unit -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_lookupCity -androidx.loader.R$drawable: int notification_bg_low_pressed -okhttp3.HttpUrl$Builder: int port -androidx.viewpager.widget.ViewPager: androidx.viewpager.widget.PagerAdapter getAdapter() -wangdaye.com.geometricweather.R$attr: int shapeAppearanceMediumComponent -io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: java.lang.String Localized -androidx.viewpager2.R$dimen: int compat_button_inset_vertical_material -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_max -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_backgroundSplit -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_night_2 -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setOnRefreshListener(androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnRefreshListener) -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastVerticalStyle -androidx.constraintlayout.widget.R$id: int parent -com.google.android.material.bottomappbar.BottomAppBar: int getFabAnimationMode() -okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte EXCEPTION_MARKER -com.turingtechnologies.materialscrollbar.R$attr: int selectableItemBackgroundBorderless -wangdaye.com.geometricweather.R$id: int activity_settings_container -com.turingtechnologies.materialscrollbar.R$styleable: int View_theme -android.didikee.donate.R$attr: int color -androidx.preference.R$styleable: int TextAppearance_android_textSize -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierDirection -wangdaye.com.geometricweather.R$styleable: int[] ListPreference -android.didikee.donate.R$layout: int abc_popup_menu_header_item_layout -retrofit2.Retrofit$1 -androidx.constraintlayout.widget.ConstraintLayout: void setOptimizationLevel(int) -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen -androidx.swiperefreshlayout.R$dimen: int notification_large_icon_height -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Subhead_Inverse -com.turingtechnologies.materialscrollbar.R$id: int start -com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextColor -androidx.coordinatorlayout.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_blackContainer -androidx.appcompat.R$styleable: int MenuItem_android_checked -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMenuView -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context) -wangdaye.com.geometricweather.R$id: int widget_clock_day_wind -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setDayIconDrawable(android.graphics.drawable.Drawable) -androidx.appcompat.R$style: int Platform_AppCompat -androidx.constraintlayout.widget.R$styleable: int[] FontFamily -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: android.os.IBinder mRemote -androidx.appcompat.R$style: int Widget_AppCompat_EditText -retrofit2.BuiltInConverters$ToStringConverter -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status IMPLICIT_INITIALIZING -androidx.fragment.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleTint -androidx.fragment.R$dimen -androidx.viewpager.R$dimen: int notification_right_icon_size -androidx.appcompat.R$attr: int windowActionModeOverlay -cyanogenmod.profiles.AirplaneModeSettings: cyanogenmod.profiles.AirplaneModeSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: ObservableReplay$UnboundedReplayBuffer(int) -io.reactivex.internal.subscriptions.EmptySubscription: java.lang.String toString() -androidx.activity.R$id: int accessibility_custom_action_9 -okhttp3.Cache$CacheResponseBody$1: okhttp3.internal.cache.DiskLruCache$Snapshot val$snapshot -com.jaredrummler.android.colorpicker.R$styleable: int GradientColorItem_android_color -com.google.android.material.R$layout: int abc_popup_menu_item_layout -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_23 -wangdaye.com.geometricweather.R$styleable: int Layout_barrierAllowsGoneWidgets -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeTextType -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon -james.adaptiveicon.R$styleable: int MenuItem_android_icon -androidx.appcompat.widget.SwitchCompat: void setSwitchTypeface(android.graphics.Typeface) -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getRain() -androidx.coordinatorlayout.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.R$layout: int cpv_dialog_color_picker -wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarTextViewStyle -com.google.android.material.slider.RangeSlider: void setValueTo(float) -androidx.appcompat.R$styleable: int AppCompatTheme_actionMenuTextColor -com.google.android.material.R$attr: int fabSize -cyanogenmod.externalviews.KeyguardExternalView: android.graphics.Point mDisplaySize -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight -com.xw.repo.bubbleseekbar.R$attr: int textColorAlertDialogListItem -wangdaye.com.geometricweather.R$drawable: int abc_btn_borderless_material -wangdaye.com.geometricweather.R$dimen: int disabled_alpha_material_light -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_RC4_128_MD5 -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline3 -com.google.android.material.R$id: int design_navigation_view -james.adaptiveicon.R$color: int material_grey_300 -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int READY -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_positiveButtonText -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator PROXIMITY_ON_WAKE_VALIDATOR -okhttp3.Handshake: java.util.List peerCertificates() -okhttp3.Response: java.util.List headers(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerY -com.google.android.material.R$attr: int pathMotionArc -androidx.appcompat.R$styleable: int View_theme -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getDegreeDayTemperature() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: boolean isDisposed() -okio.Okio$4: void timedOut() -retrofit2.Platform$Android$MainThreadExecutor -com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -james.adaptiveicon.R$id: int multiply -wangdaye.com.geometricweather.R$attr: int chipIconEnabled -com.google.android.material.R$attr: int dayTodayStyle -okhttp3.EventListener$2: okhttp3.EventListener create(okhttp3.Call) -wangdaye.com.geometricweather.R$dimen: int abc_alert_dialog_button_dimen -com.google.android.material.R$string: int mtrl_picker_range_header_unselected -okhttp3.internal.cache.DiskLruCache$Editor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setDatetime(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX() -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getLogoDescription() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MOSTLY_CLOUDY_NIGHT -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onDetach() -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_textAllCaps -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton -androidx.constraintlayout.widget.R$id: int multiply -androidx.hilt.R$layout: int notification_action -com.google.android.material.R$bool: int mtrl_btn_textappearance_all_caps -com.google.gson.stream.JsonWriter: void push(int) -retrofit2.OkHttpCall$1: void onResponse(okhttp3.Call,okhttp3.Response) -androidx.viewpager2.R$id: int time -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index aggregatedIndex -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: java.lang.String Unit -wangdaye.com.geometricweather.R$attr: int constraintSetEnd -com.google.android.material.slider.BaseSlider: int getAccessibilityFocusedVirtualViewId() -androidx.appcompat.widget.Toolbar: void setNavigationIcon(android.graphics.drawable.Drawable) -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder reencodeForUri() -com.turingtechnologies.materialscrollbar.R$attr: int buttonStyle -androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackgroundResource(int) -cyanogenmod.weather.WeatherInfo: java.lang.String toString() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void update() -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_Bridge -cyanogenmod.app.CMContextConstants$Features: java.lang.String TELEPHONY -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric -androidx.constraintlayout.widget.R$id: int square -wangdaye.com.geometricweather.R$attr: int layout_constraintTop_creator -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalStyle -okio.AsyncTimeout: okio.AsyncTimeout awaitTimeout() -com.google.android.material.R$string: int mtrl_picker_text_input_date_range_start_hint -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_anchor -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_material -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.LifecycleOwner get() -com.google.android.material.R$attr: int itemStrokeColor -androidx.preference.R$styleable: int SwitchCompat_android_textOn -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status ERROR -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_activated_mtrl_alpha -android.didikee.donate.R$style: int Theme_AppCompat_Dialog_Alert -androidx.lifecycle.LiveData$1: LiveData$1(androidx.lifecycle.LiveData) -androidx.appcompat.resources.R$id: int accessibility_custom_action_23 -androidx.customview.R$style: int TextAppearance_Compat_Notification -james.adaptiveicon.R$styleable: int MenuItem_android_menuCategory -androidx.appcompat.widget.AppCompatTextView: void setSupportCompoundDrawablesTintMode(android.graphics.PorterDuff$Mode) -com.google.android.material.slider.Slider: int getTrackSidePadding() -android.didikee.donate.R$attr: int editTextColor -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTextPadding -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Spinner -com.turingtechnologies.materialscrollbar.R$anim: int abc_popup_exit -com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_internal_bg -android.didikee.donate.R$styleable: int MenuView_android_itemBackground -james.adaptiveicon.R$drawable: int abc_textfield_search_default_mtrl_alpha -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTextHelper -androidx.hilt.work.R$layout: int notification_template_part_time -com.google.android.material.datepicker.MaterialDatePicker: MaterialDatePicker() -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_switch -com.xw.repo.bubbleseekbar.R$id: int wrap_content -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_corner_radius -cyanogenmod.hardware.CMHardwareManager: boolean writePersistentString(java.lang.String,java.lang.String) -com.google.android.material.R$animator: int mtrl_fab_show_motion_spec -wangdaye.com.geometricweather.main.layouts.MainLayoutManager: MainLayoutManager() -com.jaredrummler.android.colorpicker.R$attr: int cpv_previewSize -james.adaptiveicon.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -androidx.appcompat.R$styleable: int ActionBar_divider -androidx.appcompat.R$drawable: int abc_btn_check_material -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_CBC_SHA256 -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_Alert -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.IRequestInfoListener mRequestInfoListener -androidx.drawerlayout.R$id: int action_text -androidx.appcompat.R$layout: int notification_template_icon_group -okio.Okio$3 -android.didikee.donate.R$id: int beginning -wangdaye.com.geometricweather.R$id: int notification_big_icon_5 -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.R$style: int Widget_AppCompat_ActionButton_Overflow -androidx.core.graphics.drawable.IconCompatParcelizer: androidx.core.graphics.drawable.IconCompat read(androidx.versionedparcelable.VersionedParcel) -com.google.android.material.R$attr: int keylines -android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedWidthMajor -retrofit2.ParameterHandler$FieldMap: java.lang.reflect.Method method -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: void truncate() -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setProvince(java.lang.String) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onComplete() -androidx.preference.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SearchView -james.adaptiveicon.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView_DropDown -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float snowPrecipitationProbability -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -cyanogenmod.platform.Manifest$permission: java.lang.String PUBLISH_CUSTOM_TILE -com.google.android.material.R$attr: int bottomNavigationStyle -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$string: int clear_text_end_icon_content_description -okhttp3.internal.cache.DiskLruCache: long size() -androidx.hilt.lifecycle.R$id: int tag_accessibility_clickable_spans -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -com.xw.repo.bubbleseekbar.R$attr: int itemPadding -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_imageButtonStyle -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy[] values() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldDescription(java.lang.String) -wangdaye.com.geometricweather.R$id: int always -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BEGIN_OBJECT -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.R$attr: int layout_optimizationLevel -androidx.lifecycle.extensions.R$styleable: int[] GradientColorItem -com.google.gson.stream.JsonReader: int PEEKED_SINGLE_QUOTED -cyanogenmod.externalviews.KeyguardExternalView$4: void run() -androidx.preference.R$styleable: int FontFamily_fontProviderPackage -com.google.android.material.R$string: int mtrl_picker_navigate_to_year_description -wangdaye.com.geometricweather.R$id: int transitionToStart -com.xw.repo.bubbleseekbar.R$color: int abc_tint_edittext -com.google.android.material.bottomnavigation.BottomNavigationView: int getItemTextAppearanceActive() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ProgressBar -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState PAUSED -io.reactivex.Observable: java.lang.Object to(io.reactivex.functions.Function) -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSize(int) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onKeyguardShowing -androidx.appcompat.widget.AppCompatTextView: void setPrecomputedText(androidx.core.text.PrecomputedTextCompat) -com.google.gson.FieldNamingPolicy: FieldNamingPolicy(java.lang.String,int,com.google.gson.FieldNamingPolicy$1) -okhttp3.internal.connection.RouteSelector: okhttp3.Call call -android.didikee.donate.R$dimen: int abc_text_size_subtitle_material_toolbar -androidx.hilt.work.R$styleable: int ColorStateListItem_alpha -io.reactivex.internal.schedulers.RxThreadFactory: int priority -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColorHint -androidx.hilt.R$dimen: int notification_big_circle_margin -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_verticalDivider -com.jaredrummler.android.colorpicker.R$styleable: int[] GradientColor -cyanogenmod.hardware.CMHardwareManager: boolean registerThermalListener(cyanogenmod.hardware.ThermalListenerCallback) -wangdaye.com.geometricweather.R$id: int animateToStart -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial -wangdaye.com.geometricweather.R$drawable: int widget_trend_hourly -okhttp3.internal.http2.Http2Reader$ContinuationSource: short padding -com.google.android.material.R$styleable: int BottomNavigationView_elevation -androidx.recyclerview.R$id: int accessibility_custom_action_17 -com.google.android.material.R$attr: int liftOnScroll -wangdaye.com.geometricweather.db.entities.AlertEntityDao: wangdaye.com.geometricweather.db.entities.AlertEntity readEntity(android.database.Cursor,int) -androidx.drawerlayout.R$integer -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: int hashCode() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_panel_menu_list_width -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked -james.adaptiveicon.R$attr: int paddingTopNoTitle -androidx.appcompat.R$id: int accessibility_custom_action_19 -com.google.android.material.chip.ChipGroup: void setChipSpacing(int) -androidx.constraintlayout.widget.R$styleable: int[] Transition -androidx.loader.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemFillColor -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_width -androidx.preference.R$dimen: int abc_action_bar_stacked_max_height -androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontVariationSettings -android.didikee.donate.R$dimen: int abc_dropdownitem_text_padding_right -com.xw.repo.bubbleseekbar.R$attr: int splitTrack -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout_Colored -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onComplete() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String WidgetPhrase -androidx.dynamicanimation.R$drawable: R$drawable() -com.jaredrummler.android.colorpicker.R$layout: int preference_list_fragment -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_FixedSize_Bridge -androidx.lifecycle.SavedStateHandleController$1: androidx.savedstate.SavedStateRegistry val$registry -wangdaye.com.geometricweather.R$string: int hours_of_sun -androidx.appcompat.R$styleable: int AppCompatTheme_listDividerAlertDialog -androidx.viewpager.R$drawable: int notification_bg_normal -com.turingtechnologies.materialscrollbar.R$attr: int checkedIcon -androidx.preference.R$styleable: int DialogPreference_android_dialogIcon -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_title -com.google.android.material.R$string: int character_counter_overflowed_content_description -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton_CloseMode -androidx.vectordrawable.R$id: int accessibility_custom_action_22 -com.google.android.material.R$attr: int colorPrimary -androidx.swiperefreshlayout.R$attr: int swipeRefreshLayoutProgressSpinnerBackgroundColor -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay night() -james.adaptiveicon.R$color: int abc_primary_text_disable_only_material_dark -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int priority -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog -com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -cyanogenmod.externalviews.KeyguardExternalView$6 -com.jaredrummler.android.colorpicker.R$styleable: int[] DialogPreference -cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup getDefaultGroup() -androidx.appcompat.widget.AppCompatImageButton: void setImageBitmap(android.graphics.Bitmap) -io.reactivex.internal.disposables.SequentialDisposable: boolean update(io.reactivex.disposables.Disposable) -okio.Buffer: okio.BufferedSink write(byte[]) -wangdaye.com.geometricweather.R$id: int fill -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacingHorizontal -com.google.android.material.R$id: int TOP_END -androidx.appcompat.R$styleable: int AppCompatTheme_windowNoTitle -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -android.didikee.donate.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter nighttimeWindDegreeConverter -androidx.preference.R$attr: int editTextStyle -wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_maxHeight -androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -androidx.constraintlayout.widget.R$styleable: int[] SwitchCompat -okhttp3.MultipartBody: okhttp3.MediaType PARALLEL -james.adaptiveicon.R$style: int Platform_AppCompat_Light -cyanogenmod.providers.CMSettings$CMSettingNotFoundException -androidx.lifecycle.SavedStateHandle$SavingStateLiveData -okhttp3.internal.http.HttpHeaders: okhttp3.Headers varyHeaders(okhttp3.Response) -wangdaye.com.geometricweather.R$id: int uniform -cyanogenmod.hardware.CMHardwareManager: int FEATURE_COLOR_ENHANCEMENT -okhttp3.internal.cache.CacheInterceptor$1: CacheInterceptor$1(okhttp3.internal.cache.CacheInterceptor,okio.BufferedSource,okhttp3.internal.cache.CacheRequest,okio.BufferedSink) -com.google.gson.stream.JsonWriter: void string(java.lang.String) -okhttp3.internal.platform.Platform: javax.net.ssl.SSLContext getSSLContext() -androidx.transition.R$style: int Widget_Compat_NotificationActionText -androidx.appcompat.R$color: int material_grey_800 -androidx.preference.R$attr: int indeterminateProgressStyle -androidx.fragment.R$dimen: int compat_notification_large_icon_max_width -android.didikee.donate.R$styleable: int MenuGroup_android_enabled -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String getValue() -androidx.preference.R$attr: int preferenceCategoryTitleTextAppearance -com.google.android.material.R$attr: int toolbarStyle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean -androidx.constraintlayout.widget.ConstraintHelper: void setIds(java.lang.String) -wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$attr: int titleMarginBottom -wangdaye.com.geometricweather.R$layout: int design_text_input_end_icon -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onCreatePanelMenu(int,android.view.Menu) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day -androidx.appcompat.resources.R$id: int actions -androidx.preference.R$drawable: int abc_text_select_handle_middle_mtrl_dark -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_SmallComponent -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: java.util.List night -wangdaye.com.geometricweather.db.entities.LocationEntity: void setProvince(java.lang.String) -androidx.preference.MultiSelectListPreference -androidx.constraintlayout.widget.R$styleable: int[] MockView -wangdaye.com.geometricweather.R$string: int sp_widget_multi_city -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_android_lineHeight -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_SHOW_NONE -cyanogenmod.app.CustomTile$Builder: android.content.Intent mOnSettingsClick -androidx.constraintlayout.utils.widget.ImageFilterButton: float getCrossfade() -androidx.lifecycle.LiveDataReactiveStreams -android.didikee.donate.R$id: int text -wangdaye.com.geometricweather.R$style: int Test_Theme_MaterialComponents_MaterialCalendar -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerX -com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_top_mtrl_alpha -com.bumptech.glide.load.engine.GlideException: java.util.List getCauses() -androidx.constraintlayout.widget.R$drawable -okhttp3.Cache$CacheRequestImpl$1: okhttp3.internal.cache.DiskLruCache$Editor val$editor -androidx.appcompat.R$bool -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.Observer downstream -androidx.preference.EditTextPreference$SavedState: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner inner -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_dither -wangdaye.com.geometricweather.R$attr: int buttonGravity -androidx.lifecycle.extensions.R$dimen: int compat_button_inset_vertical_material -android.didikee.donate.R$id: int right_side -retrofit2.ParameterHandler$Body: int p -androidx.hilt.work.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial() -com.google.android.material.internal.NavigationMenuItemView: void setIcon(android.graphics.drawable.Drawable) -com.google.android.material.R$attr: int actionModeFindDrawable -wangdaye.com.geometricweather.R$styleable: int[] SwitchPreferenceCompat -com.google.android.material.R$style: int Base_Widget_AppCompat_TextView -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object getKey(java.lang.Object) -com.google.android.material.R$attr: int endIconContentDescription -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String en_US -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -androidx.viewpager2.R$id: int icon -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_16 -com.xw.repo.bubbleseekbar.R$attr: int contentInsetEnd -com.google.android.material.R$color: int mtrl_textinput_focused_box_stroke_color -androidx.constraintlayout.widget.R$attr: int srcCompat -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onNext(java.lang.Object) -com.google.android.material.R$styleable: int Toolbar_titleMarginBottom -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.Date pubTime -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: java.lang.String Unit -com.google.android.material.R$attr: int percentHeight -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setUrl(java.lang.String) -androidx.hilt.R$id: int accessibility_custom_action_5 -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderDivider -com.bumptech.glide.R$layout: int notification_action_tombstone -cyanogenmod.themes.ThemeChangeRequest: java.util.Map getThemeComponentsMap() -androidx.vectordrawable.R$dimen: R$dimen() -okhttp3.internal.http2.Settings: int COUNT -com.google.android.material.R$attr: int tooltipStyle -wangdaye.com.geometricweather.R$styleable: int SearchView_android_maxWidth -androidx.constraintlayout.widget.R$id: int tag_unhandled_key_listeners -androidx.appcompat.R$drawable: int abc_btn_check_material_anim -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -cyanogenmod.externalviews.ExternalViewProviderService$Provider: ExternalViewProviderService$Provider(cyanogenmod.externalviews.ExternalViewProviderService,android.os.Bundle) -wangdaye.com.geometricweather.R$styleable: int[] TabLayout -androidx.appcompat.R$style: int TextAppearance_AppCompat_Title -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_imageButtonStyle -wangdaye.com.geometricweather.R$layout: int mtrl_layout_snackbar_include -cyanogenmod.weather.WeatherInfo: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$attr: int boxCornerRadiusBottomEnd -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_RC4_128_SHA -android.didikee.donate.R$styleable: int Toolbar_contentInsetStart -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable -com.github.rahatarmanahmed.cpv.CircularProgressView: boolean isIndeterminate -com.google.android.material.chip.Chip: void setCheckedIcon(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Level -wangdaye.com.geometricweather.R$attr: int closeIconSize -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_margin -wangdaye.com.geometricweather.db.entities.AlertEntityDao: org.greenrobot.greendao.query.Query weatherEntity_AlertEntityListQuery -okhttp3.Handshake: okhttp3.CipherSuite cipherSuite -wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_singleSelection -com.google.android.material.R$attr: int layout_constraintHeight_default -wangdaye.com.geometricweather.R$color: int mtrl_fab_ripple_color -androidx.viewpager2.widget.ViewPager2 -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView_DropDown -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription,long) -androidx.viewpager2.R$id: int tag_accessibility_heading -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$anim: int fragment_close_enter -james.adaptiveicon.R$id: int icon -com.google.android.material.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customDimension -com.google.android.material.R$style: int Base_Animation_AppCompat_DropDownUp -androidx.core.R$id: int notification_main_column -wangdaye.com.geometricweather.R$id: int ratio -com.google.android.material.chip.Chip: void setElevation(float) -okio.SegmentedByteString: okio.ByteString sha256() -cyanogenmod.weather.WeatherInfo: java.util.List access$1102(cyanogenmod.weather.WeatherInfo,java.util.List) -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: long serialVersionUID -wangdaye.com.geometricweather.R$drawable: int weather_clear_night -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: double Value -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat_Dark -androidx.preference.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -okhttp3.internal.http2.Http2Connection: Http2Connection(okhttp3.internal.http2.Http2Connection$Builder) -com.jaredrummler.android.colorpicker.ColorPickerView: int getBorderColor() -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.R$attr: int tabPaddingStart -james.adaptiveicon.R$attr: int closeIcon -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_getSubInformation_0 -com.google.android.material.R$attr: int layout_constraintTop_creator -wangdaye.com.geometricweather.R$style: int Theme_Design_Light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getAqi() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent -com.google.android.material.R$styleable: int NavigationView_android_maxWidth -android.didikee.donate.R$styleable: int TextAppearance_android_typeface -androidx.hilt.R$id: int accessibility_custom_action_26 -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setLabel(java.lang.String) -wangdaye.com.geometricweather.background.polling.basic.UpdateService -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -cyanogenmod.providers.CMSettings$Secure: java.lang.String BUTTON_BRIGHTNESS -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCollapsedPaddingTop -androidx.preference.R$styleable: int DialogPreference_dialogLayout -com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getPasswordVisibilityToggleDrawable() -wangdaye.com.geometricweather.background.polling.work.worker.NormalUpdateWorker: NormalUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) -wangdaye.com.geometricweather.R$xml: int widget_clock_day_vertical -cyanogenmod.externalviews.KeyguardExternalView: android.content.Context mContext -com.jaredrummler.android.colorpicker.R$attr: int itemPadding -com.xw.repo.bubbleseekbar.R$layout: int abc_popup_menu_item_layout -com.bumptech.glide.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String suggest -com.turingtechnologies.materialscrollbar.R$attr: int singleLine -james.adaptiveicon.R$attr: int backgroundStacked -okhttp3.internal.cache2.Relay: okio.ByteString metadata -io.reactivex.Observable: java.lang.Object blockingSingle() -cyanogenmod.weather.WeatherLocation: java.lang.String mCountryId -androidx.lifecycle.extensions.R$id: int line1 -cyanogenmod.externalviews.KeyguardExternalView$3 -androidx.lifecycle.SavedStateHandleController: java.lang.String mKey -com.google.android.material.R$attr: int tickVisible -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_36dp -cyanogenmod.providers.CMSettings$Global: boolean putLong(android.content.ContentResolver,java.lang.String,long) -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: java.lang.String unitAbbreviation -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualObserver[] observers -androidx.constraintlayout.widget.R$id: int SHOW_ALL -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onComplete() -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerNext(io.reactivex.internal.observers.InnerQueuedObserver,java.lang.Object) -org.greenrobot.greendao.AbstractDao: void loadAllUnlockOnWindowBounds(android.database.Cursor,android.database.CursorWindow,java.util.List) -androidx.preference.R$styleable: int StateListDrawable_android_variablePadding -androidx.appcompat.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$attr: int bsb_section_text_size -okio.Base64: byte[] MAP -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void tryEmit(java.lang.Object,io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) -androidx.customview.R$color: int secondary_text_default_material_light -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -cyanogenmod.app.ILiveLockScreenManager: boolean getLiveLockScreenEnabled() -androidx.preference.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.R$string: int key_widget_multi_city -wangdaye.com.geometricweather.R$dimen: int preference_icon_minWidth -cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_LAUNCH -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8 -com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_Dialog -android.didikee.donate.R$drawable: int notification_bg_normal -cyanogenmod.app.ICMTelephonyManager$Stub: ICMTelephonyManager$Stub() -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date getPublishDate() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int pm25 -androidx.preference.R$attr: int checkboxStyle -androidx.activity.R$style: int TextAppearance_Compat_Notification -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder pingIntervalMillis(int) -com.google.android.material.button.MaterialButtonToggleGroup: void setCheckedId(int) -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarWidgetTheme -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX() -wangdaye.com.geometricweather.R$drawable: int notification_bg_normal_pressed -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -okhttp3.OkHttpClient: java.util.List connectionSpecs -com.google.android.material.R$drawable: int abc_text_select_handle_left_mtrl_dark -androidx.lifecycle.extensions.R$dimen: int notification_action_icon_size -androidx.hilt.work.R$id: int tag_screen_reader_focusable -com.xw.repo.bubbleseekbar.R$string: int abc_search_hint -androidx.vectordrawable.animated.R$id: int icon -androidx.appcompat.resources.R$drawable: int notification_bg_low_pressed -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onComplete() -androidx.hilt.R$styleable: int GradientColor_android_gradientRadius -androidx.coordinatorlayout.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.R$dimen: int abc_dialog_list_padding_top_no_title -wangdaye.com.geometricweather.R$attr: int titleMarginEnd -com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -wangdaye.com.geometricweather.R$layout: int design_bottom_sheet_dialog -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense -com.google.android.material.R$attr: int layout_constraintWidth_percent -retrofit2.RequestFactory$Builder: boolean gotUrl -androidx.hilt.lifecycle.R$attr: int fontProviderQuery -retrofit2.converter.gson.GsonRequestBodyConverter -cyanogenmod.providers.CMSettings$Secure: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$array: int pressure_units -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State INITIALIZED -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_radius_on_dragging -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_height_minor -com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonTintMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: void setUnit(java.lang.String) -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setCity(java.lang.String) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity: DayWeekWidgetConfigActivity() -com.google.android.material.R$styleable: int LinearLayoutCompat_showDividers -wangdaye.com.geometricweather.R$string: int date_format_widget_short -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getCeiling() -androidx.core.R$string: int status_bar_notification_info_overflow -com.google.android.material.R$attr: int buttonBarStyle -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_titleTextStyle -okhttp3.ResponseBody$1: long val$contentLength -androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -androidx.lifecycle.CompositeGeneratedAdaptersObserver: androidx.lifecycle.GeneratedAdapter[] mGeneratedAdapters -com.google.android.material.textfield.TextInputLayout: com.google.android.material.internal.CheckableImageButton getEndIconToUpdateDummyDrawable() -androidx.appcompat.R$string: int abc_action_bar_up_description -wangdaye.com.geometricweather.R$color: int mtrl_chip_background_color -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_backgroundTint -okhttp3.internal.ws.RealWebSocket: boolean send(java.lang.String) -androidx.appcompat.R$drawable: int abc_ic_clear_material -wangdaye.com.geometricweather.R$integer: int abc_config_activityShortDur -com.google.android.material.R$styleable: int ConstraintSet_android_pivotY -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_summaryOn -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit valueOf(java.lang.String) -wangdaye.com.geometricweather.R$color: int primary_material_dark -wangdaye.com.geometricweather.R$drawable: int weather_haze -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_rippleColor -wangdaye.com.geometricweather.R$style: int Widget_Design_NavigationView -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust -androidx.constraintlayout.widget.R$attr: int backgroundStacked -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotationX -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String componentToMixNMatchKey(java.lang.String) -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.WeatherEntityDao weatherEntityDao -james.adaptiveicon.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -androidx.swiperefreshlayout.R$styleable: R$styleable() -cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo() -androidx.coordinatorlayout.R$id: int icon_group -com.google.android.material.slider.RangeSlider: int getTrackHeight() -com.google.android.material.R$id: int sawtooth -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerComplete(io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver) -androidx.constraintlayout.widget.R$layout: int abc_tooltip -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_text_size -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String img -androidx.core.content.FileProvider: FileProvider() -org.greenrobot.greendao.AbstractDao: void update(java.lang.Object) -cyanogenmod.app.CustomTile: java.lang.String getResourcesPackageName() -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar -com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_top_material -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_maxElementsWrap -com.xw.repo.bubbleseekbar.R$color: int abc_tint_spinner -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableTop -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: ObservableObserveOn$ObserveOnObserver(io.reactivex.Observer,io.reactivex.Scheduler$Worker,boolean,int) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: ObservableConcatMapCompletable$ConcatMapCompletableObserver(io.reactivex.CompletableObserver,io.reactivex.functions.Function,io.reactivex.internal.util.ErrorMode,int) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5 -androidx.lifecycle.Transformations$2: androidx.lifecycle.LiveData mSource -wangdaye.com.geometricweather.R$attr: int colorAccent -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_trackTint -cyanogenmod.hardware.ICMHardwareService: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: float getMax() -okhttp3.Dispatcher: int getMaxRequests() -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -io.reactivex.Observable: io.reactivex.Observable concatArray(io.reactivex.ObservableSource[]) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_top_material -okhttp3.internal.http.HttpHeaders: long contentLength(okhttp3.Headers) -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_AIR_QUALITY -com.xw.repo.bubbleseekbar.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: java.lang.String desc -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_GPS -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_menu_item -com.google.android.material.R$animator: int mtrl_extended_fab_change_size_collapse_motion_spec -androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getLogo() -androidx.hilt.R$id: int accessibility_custom_action_3 -androidx.lifecycle.extensions.R$id: int text -com.turingtechnologies.materialscrollbar.R$id: int textinput_counter -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorError -androidx.preference.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -androidx.constraintlayout.widget.R$styleable: int Constraint_android_minWidth -org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) -wangdaye.com.geometricweather.R$animator: int weather_haze_2 -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.Observer downstream -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 -androidx.preference.R$attr: int toolbarNavigationButtonStyle -com.google.android.material.R$styleable: int KeyTimeCycle_transitionEasing -androidx.appcompat.R$layout: int abc_tooltip -androidx.dynamicanimation.R$id: int info -wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_enforceMaterialTheme -com.google.android.material.slider.BaseSlider: int getThumbRadius() -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver -androidx.lifecycle.MediatorLiveData$Source -retrofit2.Utils: void throwIfFatal(java.lang.Throwable) -androidx.appcompat.resources.R$style: R$style() -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -com.google.android.material.R$styleable: int TextInputLayout_hintEnabled -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textStyle -okhttp3.Response$Builder: okhttp3.Headers$Builder headers -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionMode -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemPaddingLeft -android.didikee.donate.R$styleable: int SearchView_defaultQueryHint -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf -com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context,android.util.AttributeSet,int) -androidx.legacy.coreutils.R$dimen: int notification_big_circle_margin -com.xw.repo.bubbleseekbar.R$color: int abc_tint_seek_thumb -android.didikee.donate.R$id: int contentPanel -androidx.preference.R$attr: int colorButtonNormal -com.jaredrummler.android.colorpicker.R$attr: int buttonGravity -com.google.android.material.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$drawable: int ic_weather_alert -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarDivider -wangdaye.com.geometricweather.R$string: int ragweed -wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity -androidx.legacy.coreutils.R$attr: int alpha -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_text_padding -io.reactivex.Observable: io.reactivex.Observable timeInterval(java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.android.material.tabs.TabLayout: int getTabIndicatorGravity() -wangdaye.com.geometricweather.R$id: int motion_base -james.adaptiveicon.R$integer: int abc_config_activityShortDur -androidx.constraintlayout.widget.R$attr: int mock_diagonalsColor -com.turingtechnologies.materialscrollbar.R$drawable: int abc_dialog_material_background -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.xw.repo.bubbleseekbar.R$attr: int popupTheme -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void clear() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean -android.didikee.donate.R$attr: int hideOnContentScroll -okhttp3.internal.ws.RealWebSocket: void onReadPong(okio.ByteString) -com.bumptech.glide.integration.okhttp.R$layout: int notification_template_part_time -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox -com.xw.repo.bubbleseekbar.R$dimen: int abc_switch_padding -io.reactivex.internal.operators.observable.ObserverResourceWrapper -com.jaredrummler.android.colorpicker.R$attr: int actionBarStyle -cyanogenmod.app.BaseLiveLockManagerService: boolean hasPrivatePermissions() -androidx.loader.R$id: int action_image -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_shadow_height -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTotalPrecipitation(java.lang.Float) -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_pixel -retrofit2.Platform: retrofit2.Platform findPlatform() -wangdaye.com.geometricweather.R$string: int key_background_free -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_animate_relativeTo -io.reactivex.internal.disposables.EmptyDisposable: boolean offer(java.lang.Object,java.lang.Object) -androidx.swiperefreshlayout.R$attr: R$attr() -com.google.android.material.R$attr: int switchMinWidth -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_searchIcon -com.google.android.material.R$styleable: int ConstraintSet_layout_editor_absoluteX -androidx.appcompat.R$color: int material_grey_900 -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean error(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: long unique -com.google.android.material.R$string: int abc_prepend_shortcut_label -com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_top_outer_color -androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_default -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.ObservableSource[],io.reactivex.functions.Function,int) -cyanogenmod.providers.CMSettings$System: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) -com.google.android.material.R$styleable: int MockView_mock_labelColor -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setLocation(android.location.Location) -wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_light -com.google.android.material.appbar.AppBarLayout$Behavior: AppBarLayout$Behavior(android.content.Context,android.util.AttributeSet) -androidx.preference.R$attr: int overlapAnchor -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: void onLiveLockScreenChanged(cyanogenmod.app.LiveLockScreenInfo) -androidx.appcompat.widget.AppCompatEditText: android.view.textclassifier.TextClassifier getTextClassifier() -androidx.recyclerview.R$style -wangdaye.com.geometricweather.R$id: int FUNCTION -wangdaye.com.geometricweather.R$id: int clear_text -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabView -wangdaye.com.geometricweather.db.entities.WeatherEntity: long updateTime -android.didikee.donate.R$styleable: int AppCompatTheme_windowMinWidthMinor -wangdaye.com.geometricweather.R$array: int precipitation_units -androidx.work.R$drawable: int notification_template_icon_low_bg -cyanogenmod.externalviews.ExternalViewProperties: boolean mVisible -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onTimeout(long) -okhttp3.Call: boolean isCanceled() -androidx.appcompat.R$styleable: int[] SearchView -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day -androidx.lifecycle.LiveData: boolean hasActiveObservers() -androidx.appcompat.R$style: int TextAppearance_AppCompat_Subhead -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy IDENTITY -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_TEMPERATURE -okhttp3.internal.cache.CacheInterceptor$1: okhttp3.internal.cache.CacheRequest val$cacheRequest -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.R$layout: int cpv_dialog_presets -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: java.lang.String getWidgetWeekIconModeName(android.content.Context) -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeightSmall -androidx.loader.R$id: int forever -okhttp3.internal.connection.RealConnection: okhttp3.internal.connection.RealConnection testConnection(okhttp3.ConnectionPool,okhttp3.Route,java.net.Socket,long) -androidx.preference.R$attr: int coordinatorLayoutStyle -okhttp3.OkHttpClient$Builder: java.util.List networkInterceptors -okhttp3.internal.http2.Hpack$Writer: okio.Buffer out -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: long serialVersionUID -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Bridge -wangdaye.com.geometricweather.R$xml: int widget_day -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void dispose() -com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode FIRST_VISIBLE -com.google.android.material.R$styleable: int Constraint_android_minHeight -android.didikee.donate.R$styleable: int AppCompatTextView_drawableLeftCompat -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: android.os.IBinder asBinder() -androidx.appcompat.resources.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider BAIDU -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: MinutelyEntityDao(org.greenrobot.greendao.internal.DaoConfig) -androidx.preference.R$styleable: int[] LinearLayoutCompat_Layout -wangdaye.com.geometricweather.R$attr: int colorPrimaryDark -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit valueOf(java.lang.String) -androidx.preference.R$styleable: int PreferenceTheme_preferenceInformationStyle -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_PORTRAIT -wangdaye.com.geometricweather.R$id: int mtrl_internal_children_alpha_tag -androidx.activity.R$layout: int notification_action_tombstone -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_LargeComponent -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_viewInflaterClass -wangdaye.com.geometricweather.R$string: int sp_widget_text_setting -androidx.preference.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -androidx.drawerlayout.R$dimen: int notification_action_text_size -cyanogenmod.power.PerformanceManager: cyanogenmod.power.PerformanceManager sInstance -wangdaye.com.geometricweather.R$string: int material_clock_toggle_content_description -wangdaye.com.geometricweather.R$font: int product_sans_thin_italic -android.didikee.donate.R$id: int search_voice_btn -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_focused_z -okhttp3.internal.cache.CacheStrategy$Factory: long nowMillis -wangdaye.com.geometricweather.R$attr: int listItemLayout -com.google.android.material.R$color: int secondary_text_disabled_material_dark -androidx.coordinatorlayout.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String EnglishName -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.preference.R$style: int Preference_Information_Material -com.google.android.material.R$anim: int abc_grow_fade_in_from_bottom -androidx.lifecycle.SavedStateViewModelFactory: java.lang.Class[] ANDROID_VIEWMODEL_SIGNATURE -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotationY -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_search_api_material -androidx.viewpager.R$styleable: R$styleable() -com.bumptech.glide.R$attr: int keylines -androidx.preference.R$dimen: int abc_action_bar_subtitle_top_margin_material -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -androidx.constraintlayout.widget.R$attr: int barrierAllowsGoneWidgets -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String info -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_elevation -cyanogenmod.library.R$id: int experience -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -okhttp3.FormBody$Builder: java.nio.charset.Charset charset -wangdaye.com.geometricweather.db.entities.LocationEntity: float getLongitude() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_DropDownItem_Spinner -com.xw.repo.bubbleseekbar.R$attr: int actionBarDivider -androidx.lifecycle.extensions.R$id: int accessibility_action_clickable_span -androidx.preference.R$styleable: int View_android_focusable -io.reactivex.Observable: io.reactivex.Single reduceWith(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection connection -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.R$styleable: int MockView_mock_labelColor -com.google.android.material.R$style: int ThemeOverlay_AppCompat_ActionBar -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleTintMode -james.adaptiveicon.R$styleable: int Spinner_android_popupBackground -androidx.preference.R$dimen: int abc_action_bar_overflow_padding_start_material -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_maxLines -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_CBC_SHA256 -com.google.android.material.R$styleable: int Variant_region_heightMoreThan -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: int UnitType -com.xw.repo.bubbleseekbar.R$attr: int colorSwitchThumbNormal -android.didikee.donate.R$styleable: int MenuItem_actionViewClass -com.bumptech.glide.integration.okhttp.R$drawable: int notification_action_background -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getDirection() -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description -com.google.android.material.chip.Chip: void setMinLines(int) -wangdaye.com.geometricweather.R$drawable: int ic_toolbar_close -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder followRedirects(boolean) -okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman$Node root -retrofit2.CallAdapter$Factory: java.lang.Class getRawType(java.lang.reflect.Type) -androidx.loader.R$id: int blocking -com.google.android.material.R$id: int accessibility_custom_action_14 -james.adaptiveicon.R$attr: int panelBackground -com.google.android.material.R$attr: int actionModeStyle -androidx.preference.R$bool: int abc_allow_stacked_button_bar -cyanogenmod.platform.R$string: R$string() -okhttp3.Route: java.net.Proxy proxy() -com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$dimen: int abc_text_size_subhead_material -okhttp3.internal.connection.RealConnection: boolean isHealthy(boolean) -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_100 -cyanogenmod.providers.CMSettings$CMSettingNotFoundException: CMSettings$CMSettingNotFoundException(java.lang.String) -wangdaye.com.geometricweather.R$attr: int chipStrokeColor -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver -androidx.preference.R$dimen: int abc_text_size_display_3_material -com.turingtechnologies.materialscrollbar.R$attr: int msb_lightOnTouch -cyanogenmod.weatherservice.ServiceRequestResult: java.util.List mLocationLookupList -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_summaryOn -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -android.didikee.donate.R$styleable: int[] ActionMenuItemView -wangdaye.com.geometricweather.R$string: int aqi_5 -com.google.android.material.R$styleable: int[] PopupWindowBackgroundState -androidx.lifecycle.extensions.R$styleable: int[] Fragment -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_focused_holo -androidx.preference.R$dimen: int compat_notification_large_icon_max_width -io.reactivex.Observable: io.reactivex.Observable takeUntil(io.reactivex.functions.Predicate) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: int capacityHint -androidx.work.R$drawable: int notify_panel_notification_icon_bg -com.google.android.material.R$styleable: int Transition_autoTransition -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarStyle -androidx.constraintlayout.widget.R$styleable: int[] Constraint -com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableTransition -android.didikee.donate.R$styleable: int TextAppearance_android_textFontWeight -com.google.android.material.R$color: int background_material_dark -wangdaye.com.geometricweather.R$drawable: int notif_temp_49 -okhttp3.internal.http2.Http2: byte TYPE_PRIORITY -com.google.android.material.R$interpolator: int mtrl_fast_out_linear_in -com.jaredrummler.android.colorpicker.R$attr: int dropdownListPreferredItemHeight -androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -wangdaye.com.geometricweather.R$id: int material_timepicker_edit_text -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableEnd -androidx.appcompat.R$style: int Widget_AppCompat_Toolbar -okhttp3.Headers: java.util.Map toMultimap() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void request(long) -androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStoreOwner,androidx.lifecycle.ViewModelProvider$Factory) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Headline -androidx.lifecycle.Transformations$2$1: void onChanged(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int abc_item_background_holo_dark -io.reactivex.Observable: io.reactivex.Observable combineLatest(java.lang.Iterable,io.reactivex.functions.Function) -okio.SegmentedByteString -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoSource -wangdaye.com.geometricweather.R$id: int pin -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_6 -wangdaye.com.geometricweather.R$attr: int cornerFamily -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button -com.google.android.material.R$dimen: int mtrl_btn_text_btn_padding_left -okhttp3.internal.http2.Http2Connection$Listener$1: Http2Connection$Listener$1() -cyanogenmod.providers.CMSettings$Secure: java.lang.String THEME_PREV_BOOT_API_LEVEL -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.LocationEntityDao getLocationEntityDao() -android.didikee.donate.R$styleable: int View_android_theme -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_summaryOff -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_homeAsUpIndicator -androidx.constraintlayout.widget.R$styleable: int[] Motion -okhttp3.CookieJar$1: java.util.List loadForRequest(okhttp3.HttpUrl) -cyanogenmod.externalviews.KeyguardExternalView$2: boolean requestDismissAndStartActivity(android.content.Intent) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setDistrict(java.lang.String) -com.google.android.material.R$attr: int labelBehavior -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_1 -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context,android.util.AttributeSet,int) -androidx.legacy.coreutils.R$dimen: int compat_button_inset_horizontal_material -androidx.cardview.R$styleable: int CardView_android_minWidth -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void subscribeNext() -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getSnow() -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotationY -com.turingtechnologies.materialscrollbar.R$drawable: int abc_control_background_material -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardPreventCornerOverlap -androidx.viewpager.widget.PagerTitleStrip: PagerTitleStrip(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type SLACK -james.adaptiveicon.R$style: int Base_AlertDialog_AppCompat_Light -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_y_offset_touch -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Body1 -androidx.legacy.coreutils.R$id: int tag_unhandled_key_listeners -android.didikee.donate.R$attr: int buttonBarStyle -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedQueryParameter(java.lang.String,java.lang.String) -io.reactivex.internal.observers.DeferredScalarDisposable: boolean tryDispose() -androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandleController create(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle,java.lang.String,android.os.Bundle) -wangdaye.com.geometricweather.R$styleable: int RecyclerView_layoutManager -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String weatherText -wangdaye.com.geometricweather.R$string: int settings_title_notification_style -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_preserveIconSpacing -okhttp3.Cache: void delete() -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void drain() -androidx.preference.R$id: int src_atop -com.google.android.material.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -com.google.android.material.internal.FlowLayout: void setSingleLine(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: int getStatus() -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: long timeout -androidx.constraintlayout.widget.R$attr: int itemPadding -androidx.viewpager2.R$id: int item_touch_helper_previous_elevation -androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_material -okhttp3.internal.http1.Http1Codec$ChunkedSink: boolean closed -cyanogenmod.app.BaseLiveLockManagerService: void enforceAccessPermission() -okhttp3.Response$Builder: long sentRequestAtMillis -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$attr: int selectionRequired -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type WIND -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -james.adaptiveicon.R$attr: int dropDownListViewStyle -androidx.preference.R$styleable: int SwitchCompat_switchTextAppearance -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getRealFeelTemperature() -androidx.constraintlayout.widget.R$styleable: int AlertDialog_buttonPanelSideLayout -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_icon_vertical_padding_material -com.google.android.material.R$attr: int wavePeriod -okhttp3.Cache: int hitCount -retrofit2.SkipCallbackExecutorImpl: int hashCode() -androidx.preference.R$styleable: int DrawerArrowToggle_arrowHeadLength -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position -cyanogenmod.themes.ThemeManager$2: ThemeManager$2(cyanogenmod.themes.ThemeManager) -com.google.android.material.R$styleable: int MaterialCalendar_dayTodayStyle -androidx.vectordrawable.animated.R$id: int right_icon -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_RED_INDEX -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startX -cyanogenmod.weather.WeatherInfo: WeatherInfo(android.os.Parcel) -okhttp3.Request$Builder: okhttp3.Request$Builder url(java.net.URL) -okhttp3.internal.tls.OkHostnameVerifier: boolean verify(java.lang.String,java.security.cert.X509Certificate) -james.adaptiveicon.R$dimen: int abc_text_size_subhead_material -androidx.legacy.coreutils.R$id: int notification_main_column -com.google.gson.LongSerializationPolicy$2: LongSerializationPolicy$2(java.lang.String,int) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintEnd_toStartOf -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar_Small -wangdaye.com.geometricweather.R$string: int feedback_interpret_notification_group_title -androidx.transition.R$id: int notification_main_column -com.turingtechnologies.materialscrollbar.R$attr: int navigationMode -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean cancelled -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionMenuTextColor -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,okio.ByteString) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) -com.google.android.material.R$drawable: int abc_item_background_holo_light -androidx.lifecycle.extensions.R$attr: int alpha -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_title -retrofit2.RequestFactory$Builder: retrofit2.Retrofit retrofit -okhttp3.Address: javax.net.SocketFactory socketFactory -wangdaye.com.geometricweather.R$id: int test_radiobutton_app_button_tint -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature temperature -androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.preference.R$styleable: int TextAppearance_android_fontFamily -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Headline6 -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_COOL -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Date -androidx.appcompat.R$styleable: int StateListDrawable_android_dither -androidx.appcompat.R$style: int Base_Animation_AppCompat_DropDownUp -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_mode_close_item_material -okio.Buffer$UnsafeCursor: okio.Segment segment -wangdaye.com.geometricweather.R$array: int automatic_refresh_rates -okhttp3.Cookie: long parseExpires(java.lang.String,int,int) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_textColorHint -okhttp3.HttpUrl: java.util.List percentDecode(java.util.List,boolean) -androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvLevel -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_pivotY -com.google.android.material.R$styleable: int ConstraintSet_layout_constrainedHeight -okio.Buffer: okio.ByteString readByteString(long) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather weather12H -com.google.android.material.R$styleable: int AppCompatTheme_controlBackground -okhttp3.Cookie: int dateCharacterOffset(java.lang.String,int,int,boolean) -com.google.android.material.R$styleable: int Constraint_layout_goneMarginStart -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Ceiling -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_section_mark -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: double Value -androidx.appcompat.R$dimen: int abc_dialog_corner_radius_material -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorColor(int) -com.google.android.material.R$attr: int labelVisibilityMode -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: double Value -wangdaye.com.geometricweather.R$attr: int labelBehavior -com.google.android.material.R$style: int Base_V26_Theme_AppCompat -james.adaptiveicon.R$styleable: int AppCompatTheme_windowNoTitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String zh_CN -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -okhttp3.Callback: void onResponse(okhttp3.Call,okhttp3.Response) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String LongPhrase -androidx.constraintlayout.widget.R$style: int Platform_V25_AppCompat -wangdaye.com.geometricweather.R$string: int settings_title_list_animation_switch -androidx.vectordrawable.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.R$dimen: int design_textinput_caption_translate_y -com.google.android.material.R$attr: int hoveredFocusedTranslationZ -okhttp3.internal.http1.Http1Codec$ChunkedSource: long NO_CHUNK_YET -cyanogenmod.weatherservice.ServiceRequestResult: boolean equals(java.lang.Object) -com.google.android.material.R$styleable: int AppCompatTextView_lineHeight -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setPrefixString(java.lang.String) -androidx.preference.R$styleable: int TextAppearance_android_textColorHint -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,int) -cyanogenmod.hardware.ICMHardwareService: boolean setDisplayGammaCalibration(int,int[]) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String getX() -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.internal.fuseable.QueueDisposable qd -com.google.android.material.R$dimen: int material_cursor_inset_bottom -androidx.appcompat.R$color: int background_floating_material_light -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarSplitStyle -wangdaye.com.geometricweather.settings.fragments.NotificationColorSettingsFragment: NotificationColorSettingsFragment() -com.google.android.material.R$styleable: int ConstraintSet_flow_lastVerticalStyle -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetEndWithActions -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_weight -androidx.preference.R$styleable: int[] AppCompatSeekBar -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: boolean inMaybe -androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWidgetConfigActivity -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken STRING -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetStart -androidx.appcompat.R$styleable: int MenuItem_android_titleCondensed -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_elevation -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Tab -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_MIN_INDEX -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeShareDrawable -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -okio.BufferedSource: long indexOf(okio.ByteString,long) -androidx.vectordrawable.animated.R$id: int async -com.google.android.material.R$attr: int textAppearanceSubtitle2 -androidx.transition.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$id: int noScroll -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_PrimarySurface -wangdaye.com.geometricweather.R$attr: int customFloatValue -wangdaye.com.geometricweather.R$color: int design_default_color_primary_variant -androidx.appcompat.R$attr: int buttonBarPositiveButtonStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: Minutely(java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer) -okhttp3.OkHttpClient$Builder: java.util.List interceptors() -wangdaye.com.geometricweather.R$anim: int popup_hide -com.turingtechnologies.materialscrollbar.R$id: int transition_position -com.jaredrummler.android.colorpicker.ColorPickerDialog: ColorPickerDialog() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean getContent() -io.reactivex.internal.operators.observable.ObservableReplay$Node -okio.Buffer: long readLong() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult -wangdaye.com.geometricweather.R$styleable: int KeyCycle_motionTarget -androidx.preference.R$styleable: int SeekBarPreference_min -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getType() -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetStart -com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_linear -androidx.hilt.work.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Body1 -androidx.appcompat.R$attr: int listChoiceIndicatorMultipleAnimated -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_statusBarBackground -com.google.android.material.R$attr: int layout_constraintHeight_min -androidx.activity.R$dimen: int notification_top_pad -com.google.android.material.R$dimen: int design_tab_text_size -com.google.android.material.R$style: int Base_Widget_AppCompat_SearchView -com.jaredrummler.android.colorpicker.R$id: int line3 -androidx.hilt.R$id: int tag_unhandled_key_event_manager -com.google.android.material.R$dimen: int abc_button_inset_vertical_material -androidx.preference.R$style: int Theme_AppCompat_DayNight_DarkActionBar -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onError(java.lang.Throwable) -android.support.v4.app.INotificationSideChannel$Default: void cancel(java.lang.String,int,java.lang.String) -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm -io.reactivex.internal.util.ArrayListSupplier -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String IconPhrase -androidx.transition.R$attr: int ttcIndex -androidx.vectordrawable.animated.R$color: int secondary_text_default_material_light -com.google.android.material.R$color: int abc_tint_btn_checkable -com.jaredrummler.android.colorpicker.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_76 -retrofit2.Utils$ParameterizedTypeImpl: boolean equals(java.lang.Object) -android.didikee.donate.R$attr: int borderlessButtonStyle -androidx.lifecycle.AbstractSavedStateViewModelFactory: java.lang.String TAG_SAVED_STATE_HANDLE_CONTROLLER -james.adaptiveicon.R$id: int notification_background -androidx.recyclerview.R$dimen: int fastscroll_margin -com.google.gson.stream.JsonToken -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorColors -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius -androidx.appcompat.resources.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$anim: int mtrl_card_lowers_interpolator -androidx.lifecycle.Lifecycling$1: Lifecycling$1(androidx.lifecycle.LifecycleEventObserver) -wangdaye.com.geometricweather.R$layout: int abc_activity_chooser_view_list_item -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitation -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_framePosition -com.google.android.material.R$attr: int mock_labelColor -androidx.vectordrawable.R$id: int italic -okhttp3.RealCall$AsyncCall: RealCall$AsyncCall(okhttp3.RealCall,okhttp3.Callback) -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_font -androidx.constraintlayout.utils.widget.ImageFilterView -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getSerialNumber() -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String direction -cyanogenmod.profiles.BrightnessSettings$1: cyanogenmod.profiles.BrightnessSettings createFromParcel(android.os.Parcel) -androidx.lifecycle.Lifecycle: androidx.lifecycle.Lifecycle$State getCurrentState() -androidx.lifecycle.extensions.R$anim: int fragment_fast_out_extra_slow_in -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.List getValue() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.util.concurrent.atomic.AtomicLong requested -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWetBulbTemperature -cyanogenmod.app.Profile$ProfileTrigger: int mState -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_off_mtrl_alpha -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNo2() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_transformPivotY -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_background -androidx.appcompat.widget.AlertDialogLayout: AlertDialogLayout(android.content.Context) -androidx.activity.R$style: int TextAppearance_Compat_Notification_Info -okio.Pipe$PipeSource: Pipe$PipeSource(okio.Pipe) -okhttp3.internal.connection.RealConnection: void connectTls(okhttp3.internal.connection.ConnectionSpecSelector) -okhttp3.logging.LoggingEventListener: void connectionAcquired(okhttp3.Call,okhttp3.Connection) -okhttp3.Cache$Entry: boolean isHttps() -androidx.appcompat.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -cyanogenmod.alarmclock.ClockContract: java.lang.String AUTHORITY -androidx.loader.R$drawable: int notification_action_background -cyanogenmod.externalviews.KeyguardExternalView: java.lang.String EXTRA_PERMISSION_LIST -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit FT -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String co -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_17 -com.google.android.material.slider.Slider: Slider(android.content.Context) -com.google.android.material.transformation.FabTransformationBehavior -androidx.appcompat.R$attr: int actionModeFindDrawable -okio.Buffer: int write(java.nio.ByteBuffer) -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$attr: int checkedIconSize -androidx.appcompat.R$style: int Widget_AppCompat_ListView_DropDown -androidx.fragment.R$id: int fragment_container_view_tag -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_30 -cyanogenmod.weather.WeatherLocation: int hashCode() -androidx.preference.R$id: int async -com.jaredrummler.android.colorpicker.R$attr: int listMenuViewStyle -com.google.gson.stream.JsonReader: void close() -androidx.preference.R$id: int progress_circular -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_40 -com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String,java.lang.Throwable) -androidx.vectordrawable.R$styleable: int FontFamilyFont_fontVariationSettings -com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_backgroundTintMode -androidx.constraintlayout.widget.R$styleable: int ActionMode_height -com.google.android.material.R$color: int material_grey_900 -wangdaye.com.geometricweather.R$string: int feedback_collect_succeed -cyanogenmod.app.CMContextConstants$Features: java.lang.String THEMES -androidx.lifecycle.Lifecycle$Event: Lifecycle$Event(java.lang.String,int) -android.didikee.donate.R$styleable: int SearchView_android_maxWidth -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalGap -cyanogenmod.themes.ThemeManager$1$2: ThemeManager$1$2(cyanogenmod.themes.ThemeManager$1,boolean) -cyanogenmod.externalviews.ExternalView$4: void run() -androidx.appcompat.R$layout: int notification_action -android.didikee.donate.R$dimen: int abc_dialog_fixed_height_major -com.google.android.material.navigation.NavigationView: android.content.res.ColorStateList getItemTextColor() -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -com.google.android.material.R$styleable: int GradientColor_android_startY -androidx.hilt.lifecycle.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_begin -com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_alpha -androidx.constraintlayout.widget.ConstraintLayout: int getMaxWidth() -wangdaye.com.geometricweather.R$string: int widget_text -com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -com.google.android.material.R$dimen: int design_bottom_navigation_height -com.google.android.material.R$attr: int showDelay -androidx.preference.R$styleable: int AppCompatTheme_actionModeCutDrawable -wangdaye.com.geometricweather.R$attr: int fabCustomSize -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTintMode -androidx.hilt.R$styleable: R$styleable() -androidx.vectordrawable.animated.R$dimen: int compat_button_inset_vertical_material -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Bridge -io.reactivex.Observable: io.reactivex.Maybe firstElement() -com.google.android.material.chip.Chip: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Caption -androidx.appcompat.widget.AppCompatButton: int getAutoSizeTextType() -okhttp3.OkHttpClient$Builder: boolean followRedirects -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int EndMinute -androidx.appcompat.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -cyanogenmod.os.Build: android.util.SparseArray sdkMap -com.google.android.material.circularreveal.CircularRevealRelativeLayout: CircularRevealRelativeLayout(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$style: int Base_V22_Theme_AppCompat_Light -cyanogenmod.app.ILiveLockScreenChangeListener$Stub -okhttp3.internal.http.StatusLine: okhttp3.internal.http.StatusLine get(okhttp3.Response) -okhttp3.internal.http.RealInterceptorChain: int index -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabBarStyle -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_isThemeApplying -wangdaye.com.geometricweather.R$attr: int flow_firstHorizontalBias -com.google.android.material.R$attr: int cardBackgroundColor -wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_in_lockScreen -androidx.constraintlayout.widget.R$styleable: int GradientColorItem_android_color -james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat -android.support.v4.app.INotificationSideChannel$Default: android.os.IBinder asBinder() -androidx.preference.R$style: int PreferenceCategoryTitleTextStyle -okhttp3.internal.http2.Hpack$Writer: Hpack$Writer(okio.Buffer) -androidx.preference.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.R$color: int abc_search_url_text_pressed -wangdaye.com.geometricweather.R$drawable: int ic_back -cyanogenmod.profiles.AirplaneModeSettings$BooleanState: int STATE_DISALED -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType FLOAT_TYPE -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Refresh -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_height -wangdaye.com.geometricweather.R$dimen: int design_navigation_separator_vertical_padding -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_minWidth -io.reactivex.Observable: io.reactivex.Observable switchIfEmpty(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$drawable: int weather_fog_pixel -okhttp3.internal.http.RealInterceptorChain: int calls -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy TRANSFORMED -androidx.constraintlayout.utils.widget.ImageFilterView: void setRoundPercent(float) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max -com.google.android.material.R$attr: int textAppearanceBody2 -androidx.constraintlayout.widget.R$attr: int logo -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogTheme -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void ping(boolean,int,int) -com.google.android.material.navigation.NavigationView: void setOverScrollMode(int) -retrofit2.Response: okhttp3.Headers headers() -android.didikee.donate.R$color: int abc_secondary_text_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitle -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_minWidth -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_dialogTitle -wangdaye.com.geometricweather.R$attr: int behavior_saveFlags -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyTitle -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -com.google.android.material.R$attr: int motionTarget -wangdaye.com.geometricweather.R$id: int tag_icon_bottom -cyanogenmod.library.R -com.google.android.material.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String DAY -cyanogenmod.providers.CMSettings$Secure: boolean putLong(android.content.ContentResolver,java.lang.String,long) -com.turingtechnologies.materialscrollbar.TouchScrollBar: boolean getHide() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalBias -androidx.lifecycle.ViewModel: java.lang.Object setTagIfAbsent(java.lang.String,java.lang.Object) -com.xw.repo.bubbleseekbar.R$color: int material_grey_300 -cyanogenmod.externalviews.ExternalViewProperties: android.view.View mDecorView -androidx.constraintlayout.widget.R$drawable: int btn_radio_on_to_off_mtrl_animation -org.greenrobot.greendao.DaoException -wangdaye.com.geometricweather.R$styleable: int KeyPosition_pathMotionArc -com.google.android.material.R$styleable: int ActionMode_titleTextStyle -cyanogenmod.app.ICMTelephonyManager$Stub -android.didikee.donate.R$styleable: int SwitchCompat_splitTrack -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String getProviderId() -wangdaye.com.geometricweather.R$id: int gridView -androidx.lifecycle.SavedStateHandleController: java.lang.String TAG_SAVED_STATE_HANDLE_CONTROLLER -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_maxHeight -okhttp3.Handshake: int hashCode() -androidx.core.R$id: int action_divider -androidx.preference.R$drawable: int abc_textfield_search_material -wangdaye.com.geometricweather.R$attr: int expandActivityOverflowButtonDrawable -wangdaye.com.geometricweather.R$drawable: int notif_temp_125 -androidx.appcompat.widget.ActionBarOverlayLayout: void setActionBarVisibilityCallback(androidx.appcompat.widget.ActionBarOverlayLayout$ActionBarVisibilityCallback) -androidx.appcompat.widget.AppCompatTextView: java.lang.CharSequence getText() -androidx.appcompat.widget.Toolbar: void setContentInsetStartWithNavigation(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean weather -androidx.constraintlayout.widget.R$id: int action_text -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.functions.Function mapper -android.didikee.donate.R$attr: int selectableItemBackground -com.jaredrummler.android.colorpicker.R$attr: int switchTextOff -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setEnableAnim(boolean) -wangdaye.com.geometricweather.R$attr: int materialCardViewStyle -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout -com.google.android.material.R$styleable: int KeyCycle_transitionPathRotate -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCopyDrawable -okhttp3.internal.platform.AndroidPlatform: javax.net.ssl.SSLContext getSSLContext() -wangdaye.com.geometricweather.R$color: int colorTextLight -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Filter -com.google.android.material.R$attr: int indicatorColor -com.google.android.material.R$attr: int chipIcon -io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier valueOf(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_spinBars -wangdaye.com.geometricweather.location.services.LocationService: android.app.Notification getLocationNotification(android.content.Context) -com.google.android.material.R$attr: int fontProviderPackage -androidx.appcompat.R$dimen: int abc_dialog_list_padding_top_no_title -androidx.preference.R$attr: int subtitleTextAppearance -wangdaye.com.geometricweather.R$id: int appBar -com.jaredrummler.android.colorpicker.R$styleable: int[] PopupWindow -androidx.lifecycle.SingleGeneratedAdapterObserver: androidx.lifecycle.GeneratedAdapter mGeneratedAdapter -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindDircStart(java.lang.String) -androidx.appcompat.R$attr: int subMenuArrow -okhttp3.Handshake: okhttp3.TlsVersion tlsVersion -androidx.loader.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_radius -com.google.android.material.R$styleable: int ConstraintSet_constraint_referenced_ids -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean() -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_menu_material -cyanogenmod.themes.IThemeChangeListener -androidx.constraintlayout.widget.R$styleable: int MenuItem_alphabeticModifiers -com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customPixelDimension -androidx.lifecycle.MediatorLiveData: void onInactive() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle -android.didikee.donate.R$attr: int closeIcon -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int ON_COMPLETE -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -okhttp3.internal.tls.BasicCertificateChainCleaner -com.turingtechnologies.materialscrollbar.R$attr: int srcCompat -com.google.android.material.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -androidx.appcompat.R$color: int secondary_text_default_material_dark -wangdaye.com.geometricweather.R$attr: int cornerSizeTopRight -androidx.lifecycle.Lifecycle: void addObserver(androidx.lifecycle.LifecycleObserver) -okhttp3.internal.http1.Http1Codec$ChunkedSource: long read(okio.Buffer,long) -androidx.preference.R$style: int Preference_Material -androidx.preference.R$id: int expand_activities_button -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver -com.google.android.material.R$dimen: int design_tab_text_size_2line -james.adaptiveicon.AdaptiveIconView -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String unitId -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.app.suggest.ApplicationSuggestion$1: cyanogenmod.app.suggest.ApplicationSuggestion[] newArray(int) -com.google.android.material.R$styleable: int MockView_mock_showDiagonals -androidx.preference.R$styleable: int AppCompatTextView_android_textAppearance -androidx.appcompat.R$layout: int abc_alert_dialog_button_bar_material -com.bumptech.glide.R$color: int notification_icon_bg_color -androidx.recyclerview.R$id: int accessibility_custom_action_23 -androidx.preference.R$color: int material_grey_300 -com.github.rahatarmanahmed.cpv.CircularProgressView$8: float val$start -androidx.appcompat.R$attr: int showAsAction -io.reactivex.internal.observers.LambdaObserver: long serialVersionUID -wangdaye.com.geometricweather.db.entities.LocationEntityDao: LocationEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -okio.Okio$2: okio.Timeout timeout() -wangdaye.com.geometricweather.R$attr: int checkedIconEnabled -com.xw.repo.bubbleseekbar.R$color: int background_material_light -cyanogenmod.weather.CMWeatherManager$2$1 -wangdaye.com.geometricweather.R$id: int info -com.google.android.material.slider.Slider: android.content.res.ColorStateList getThumbStrokeColor() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotation -androidx.appcompat.R$id: int checked -cyanogenmod.themes.ThemeManager$1: void onFinish(boolean) -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken valueOf(java.lang.String) -okhttp3.internal.http2.Hpack$Writer: int evictToRecoverBytes(int) -androidx.coordinatorlayout.R$id: int blocking -androidx.vectordrawable.R$attr: int fontVariationSettings -cyanogenmod.app.Profile: int getProfileType() -com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.animation.MotionSpec getShowMotionSpec() -com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_elevation -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_3 -android.didikee.donate.R$color: int bright_foreground_inverse_material_dark -androidx.customview.R$style: R$style() -wangdaye.com.geometricweather.R$id: int asConfigured -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintEnd_toEndOf -retrofit2.Retrofit: okhttp3.HttpUrl baseUrl -com.turingtechnologies.materialscrollbar.R$color: int accent_material_dark -androidx.constraintlayout.widget.R$id: int checkbox -androidx.preference.PreferenceGroup: PreferenceGroup(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$layout: int custom_dialog -retrofit2.KotlinExtensions$await$2$2 -androidx.lifecycle.LifecycleRegistryOwner: androidx.lifecycle.LifecycleRegistry getLifecycle() -com.bumptech.glide.integration.okhttp.R$id: int icon_group -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.constraintlayout.widget.R$color: int primary_dark_material_light -okio.Okio: okio.Source source(java.net.Socket) -wangdaye.com.geometricweather.R$id: int container_main_details_recyclerView -androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -cyanogenmod.app.ProfileGroup$1: java.lang.Object[] newArray(int) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -com.turingtechnologies.materialscrollbar.R$attr: int goIcon -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties properties -com.github.rahatarmanahmed.cpv.CircularProgressView: void setThickness(int) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_orientation -androidx.appcompat.widget.ActionBarContainer: void setTransitioning(boolean) -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status IN_PROGRESS -com.google.android.material.R$style: int Base_Theme_MaterialComponents_CompactMenu -wangdaye.com.geometricweather.R$color: int colorRootDark -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: java.util.List getSuggestions(android.content.Intent) -android.didikee.donate.R$styleable: int AppCompatTheme_selectableItemBackground -com.google.android.material.R$layout: int abc_list_menu_item_radio -wangdaye.com.geometricweather.R$string: int feedback_click_again_to_exit -com.turingtechnologies.materialscrollbar.R$attr: int fontFamily -cyanogenmod.app.CMContextConstants$Features: java.lang.String APP_SUGGEST -com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_horizontal_material -james.adaptiveicon.R$anim: int abc_popup_enter -wangdaye.com.geometricweather.R$id: int material_minute_text_input -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_baselineAligned -retrofit2.Retrofit$Builder: java.util.List callAdapterFactories -retrofit2.Response: Response(okhttp3.Response,java.lang.Object,okhttp3.ResponseBody) -androidx.appcompat.widget.SearchView: void setMaxWidth(int) -wangdaye.com.geometricweather.R$attr: int onHide -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_toId -androidx.preference.R$attr: int listPreferredItemHeightSmall -androidx.preference.R$style: int Preference_SeekBarPreference -com.turingtechnologies.materialscrollbar.R$attr: int textColorSearchUrl -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_MinutelyEntityListQuery -com.google.android.material.R$attr: int motionProgress -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: ChineseCityEntityDao$Properties() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange Past6HourRange -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit PERCENT -com.google.android.material.R$attr: int autoSizePresetSizes -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getCheckedIcon() -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceCategoryStyle -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -okio.Buffer: okio.Buffer write(okio.ByteString) -com.google.android.material.R$styleable: int SnackbarLayout_backgroundTintMode -com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyleSmall -okhttp3.internal.platform.JdkWithJettyBootPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -androidx.appcompat.R$styleable: int ActionBar_itemPadding -androidx.swiperefreshlayout.R$color: int ripple_material_light -io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator[] values() -wangdaye.com.geometricweather.R$attr: int motionStagger -com.jaredrummler.android.colorpicker.R$id: int src_atop -androidx.preference.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarSize -androidx.hilt.work.R$color: int notification_action_color_filter -com.google.android.material.slider.RangeSlider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable[] EMPTY -wangdaye.com.geometricweather.R$dimen: int abc_text_size_title_material -io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription valueOf(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastHorizontalBias -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode INTERNAL_ERROR -androidx.cardview.R$attr: int cardViewStyle -com.google.android.material.R$anim: int mtrl_bottom_sheet_slide_out -androidx.transition.R$styleable: int GradientColor_android_gradientRadius -com.google.android.material.R$dimen: int design_snackbar_elevation -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: ObservableGroupJoin$GroupJoinDisposable(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_activated_mtrl_alpha -androidx.constraintlayout.widget.R$styleable: int Constraint_android_orientation -okio.ForwardingSink: ForwardingSink(okio.Sink) -wangdaye.com.geometricweather.db.entities.WeatherEntity: long timeStamp -com.jaredrummler.android.colorpicker.R$style: int Preference_DropDown -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int CLEAR_NIGHT -cyanogenmod.providers.DataUsageContract: java.lang.String LABEL -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.Observer downstream -androidx.dynamicanimation.R$drawable: int notification_action_background -androidx.activity.R$dimen: int notification_content_margin_start -androidx.work.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial Imperial -wangdaye.com.geometricweather.R$attr: int expandedTitleMarginStart -androidx.work.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.util.Date EndDate -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_entryValues -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,int) -android.didikee.donate.R$dimen: int notification_subtext_size -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.lifecycle.extensions.R$style: int Widget_Compat_NotificationActionText -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: void run() -com.google.android.material.R$styleable: int[] ActionMenuItemView -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Button -com.google.android.material.appbar.AppBarLayout: void removeOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$BaseOnOffsetChangedListener) -com.google.android.material.floatingactionbutton.FloatingActionButton: void hide(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.DailyEntity,long) -wangdaye.com.geometricweather.db.entities.DailyEntity: int daytimeTemperature -com.turingtechnologies.materialscrollbar.R$attr: int windowActionModeOverlay -okio.Okio: okio.Sink appendingSink(java.io.File) -com.turingtechnologies.materialscrollbar.R$id: int textinput_helper_text -com.bumptech.glide.R$drawable -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver(io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver) -androidx.viewpager.R$styleable -androidx.appcompat.R$color: int material_blue_grey_950 -androidx.core.R$layout: int notification_template_part_time -com.jaredrummler.android.colorpicker.R$styleable: int ActivityChooserView_initialActivityCount -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Caption -com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context) -androidx.lifecycle.extensions.R$color: int notification_icon_bg_color -okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: void execute() -androidx.appcompat.resources.R$id: int tag_accessibility_pane_title -androidx.preference.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -androidx.preference.R$styleable: int AppCompatTheme_buttonBarStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_horizontal_edge_offset -okio.Pipe$PipeSource: okio.Timeout timeout() -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollHorizontalTrackDrawable -okhttp3.internal.http2.Hpack$Reader: Hpack$Reader(int,int,okio.Source) -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -okio.SegmentedByteString: java.lang.String utf8() -cyanogenmod.app.Profile: void addProfileGroup(cyanogenmod.app.ProfileGroup) -androidx.appcompat.R$styleable: int ActionBar_popupTheme -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer wetBulbTemperature -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean() -retrofit2.http.Part: java.lang.String value() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign -okhttp3.internal.tls.CertificateChainCleaner: CertificateChainCleaner() -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_layoutManager -james.adaptiveicon.R$dimen: int abc_action_bar_overflow_padding_start_material -androidx.core.R$id: int tag_accessibility_clickable_spans -androidx.hilt.R$styleable: int[] ColorStateListItem -okhttp3.internal.platform.ConscryptPlatform -androidx.appcompat.R$attr: int controlBackground -wangdaye.com.geometricweather.R$dimen: int material_font_1_3_box_collapsed_padding_top -androidx.transition.R$id: int save_non_transition_alpha -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle -okhttp3.internal.http.RetryAndFollowUpInterceptor: void cancel() -okio.BufferedSink: okio.BufferedSink writeLong(long) -wangdaye.com.geometricweather.R$styleable: int[] BottomSheetBehavior_Layout -com.jaredrummler.android.colorpicker.R$attr: int thumbTextPadding -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_maxHeight -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenManager sInstance -com.google.android.material.R$color: int design_default_color_background -retrofit2.Platform: boolean hasJava8Types -androidx.appcompat.R$styleable: int AppCompatTextView_drawableTintMode -okhttp3.internal.platform.Jdk9Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintStart_toEndOf -okhttp3.internal.ws.WebSocketWriter: byte[] maskKey -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification -james.adaptiveicon.R$styleable: int AppCompatImageView_android_src -androidx.preference.R$style: int Base_V26_Theme_AppCompat_Light -retrofit2.HttpServiceMethod$SuspendForResponse: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void emit() -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.util.Date getDate() -com.jaredrummler.android.colorpicker.R$attr: int preferenceInformationStyle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_wrapMode -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: AccuAlertResult$Description() -wangdaye.com.geometricweather.R$attr: int materialCalendarDay -com.google.android.material.R$xml: int standalone_badge_gravity_top_start -androidx.activity.R$drawable -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_RC4_128_SHA -okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Level getLevel() -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEV_FORCE_SHOW_NAVBAR -com.google.android.material.R$styleable: int CompoundButton_buttonTint -wangdaye.com.geometricweather.R$string: int key_live_wallpaper -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String o3 -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void run() -wangdaye.com.geometricweather.R$string: int item_view_role_description -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_list_padding_top_no_title -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_4 -io.reactivex.observers.DisposableObserver: DisposableObserver() -com.google.android.material.R$styleable: int Toolbar_contentInsetLeft -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassIndex -com.google.android.material.R$id: int chain -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index() -android.didikee.donate.R$styleable: int ActionBar_icon -okhttp3.internal.http2.Http2Connection: long access$108(okhttp3.internal.http2.Http2Connection) -com.google.android.material.R$string: int mtrl_picker_invalid_format_example -android.didikee.donate.R$color -com.jaredrummler.android.colorpicker.R$attr: int buttonBarPositiveButtonStyle -com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_offset -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: ObservableSwitchMapSingle$SwitchMapSingleMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -androidx.preference.R$drawable: int abc_ic_menu_cut_mtrl_alpha -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableEnd -androidx.loader.R$id: int line1 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$styleable: int ViewPager2_android_orientation -com.google.android.material.R$attr: int roundPercent -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean() -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_textLocale -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity -androidx.constraintlayout.widget.R$styleable: int Layout_layout_editor_absoluteX -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) -wangdaye.com.geometricweather.R$layout: int abc_screen_simple_overlay_action_mode -androidx.coordinatorlayout.R$id: int accessibility_custom_action_25 -androidx.appcompat.R$attr: int preserveIconSpacing -com.google.android.material.card.MaterialCardView: void setStrokeColor(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$id: int cos -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundColor(int) -cyanogenmod.app.Profile: android.os.Parcelable$Creator CREATOR -retrofit2.OkHttpCall$1: void onFailure(okhttp3.Call,java.io.IOException) -com.google.android.material.R$drawable: int tooltip_frame_dark -androidx.constraintlayout.helper.widget.Flow: void setMaxElementsWrap(int) -android.didikee.donate.R$attr: int windowMinWidthMinor -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Small -retrofit2.converter.gson.GsonResponseBodyConverter: com.google.gson.Gson gson -okhttp3.internal.cache.DiskLruCache$Snapshot -wangdaye.com.geometricweather.R$styleable: int[] MaterialRadioButton -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation precipitation -com.xw.repo.bubbleseekbar.R$attr: int closeItemLayout -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: void run() -com.google.android.material.card.MaterialCardView: int getCheckedIconMargin() -com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_text_padding_right -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_elevation -wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionContainer -com.google.android.material.R$attr: int actionModePopupWindowStyle -androidx.work.R$id: int accessibility_custom_action_3 -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level HEADERS -wangdaye.com.geometricweather.R$integer: int mtrl_calendar_header_orientation -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_21 -androidx.appcompat.R$styleable: int TextAppearance_android_textFontWeight -cyanogenmod.weatherservice.ServiceRequestResult: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_EditTextPreference_Material -cyanogenmod.themes.ThemeManager: void registerThemeChangeListener(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type BOTTOM -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_searchViewStyle -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: double speed -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: java.lang.String toString() -james.adaptiveicon.R$styleable: int Toolbar_contentInsetRight -wangdaye.com.geometricweather.R$styleable: int Chip_chipEndPadding -androidx.preference.R$styleable: int Preference_android_icon -androidx.appcompat.R$drawable: int abc_list_pressed_holo_dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: java.lang.String Unit -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu -androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingStart -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onError(java.lang.Throwable) -android.didikee.donate.R$attr: int actionModeCopyDrawable -james.adaptiveicon.R$styleable: int DrawerArrowToggle_gapBetweenBars -okhttp3.MediaType: java.lang.String subtype() -wangdaye.com.geometricweather.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layoutDescription -james.adaptiveicon.R$styleable: int AppCompatTheme_android_windowAnimationStyle -com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_Tooltip -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_13 -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod getAlpnSelectedProtocol -wangdaye.com.geometricweather.R$attr: int textAppearanceSearchResultSubtitle -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: boolean isDisposed() -com.google.android.material.R$styleable: int OnSwipe_dragThreshold -androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context,android.util.AttributeSet,int) -androidx.work.NetworkType: androidx.work.NetworkType[] values() -okio.InflaterSource: okio.Timeout timeout() -retrofit2.RequestFactory$Builder: void validateResolvableType(int,java.lang.reflect.Type) -com.google.android.material.R$styleable: int[] AppBarLayoutStates -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_22 -okio.package-info -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder password(java.lang.String) -cyanogenmod.app.Profile$ProfileTrigger: void getXmlString(java.lang.StringBuilder,android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: int status -com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_old -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorColor -io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Action onComplete -androidx.drawerlayout.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.R$drawable: int notif_temp_128 -okhttp3.Challenge: java.lang.String toString() -cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder mService -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -wangdaye.com.geometricweather.R$layout: int widget_day_week_symmetry -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_controlBackground -com.turingtechnologies.materialscrollbar.R$attr: int boxStrokeWidth -com.google.android.material.slider.Slider: float getThumbStrokeWidth() -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_fontVariationSettings -com.google.android.material.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource valueOf(java.lang.String) -androidx.preference.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -retrofit2.Utils: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) -androidx.preference.R$attr: int arrowShaftLength -com.turingtechnologies.materialscrollbar.R$dimen: int notification_content_margin_start -com.google.android.material.bottomnavigation.BottomNavigationMenuView: BottomNavigationMenuView(android.content.Context,android.util.AttributeSet) -com.bumptech.glide.load.engine.CallbackException: long serialVersionUID -androidx.lifecycle.LifecycleDispatcher -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: int status -androidx.lifecycle.LiveData: java.lang.Object NOT_SET -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -cyanogenmod.profiles.ConnectionSettings: void setValue(int) -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit[] values() -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -androidx.hilt.work.R$bool: R$bool() -android.didikee.donate.R$id: int src_in -wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentHeight -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRainPrecipitation() -com.google.android.material.R$color: int dim_foreground_disabled_material_dark -com.jaredrummler.android.colorpicker.R$id: int regular -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,java.lang.String) -cyanogenmod.weatherservice.WeatherProviderService$1: WeatherProviderService$1(cyanogenmod.weatherservice.WeatherProviderService) -androidx.constraintlayout.widget.R$styleable: int[] OnSwipe -wangdaye.com.geometricweather.R$attr: int spanCount -com.jaredrummler.android.colorpicker.R$attr: int singleLineTitle -com.xw.repo.bubbleseekbar.R$id: int action_bar_container -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabView -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_baseline_to_top_fullscreen -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onError(java.lang.Throwable) -com.google.android.material.R$styleable: int Chip_chipStartPadding -okhttp3.FormBody: java.lang.String name(int) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorButtonNormal -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onComplete() -androidx.viewpager2.R$attr: int stackFromEnd -androidx.appcompat.R$style: int Platform_AppCompat_Light -androidx.hilt.R$styleable: int GradientColor_android_centerY -androidx.appcompat.R$id: int accessibility_custom_action_24 -androidx.appcompat.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void access$600(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxIo -okhttp3.internal.http2.Hpack$Writer: void writeInt(int,int,int) -cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl access$000(cyanogenmod.externalviews.ExternalViewProviderService$Provider) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeWindChillTemperature() -io.reactivex.Observable: io.reactivex.Single all(io.reactivex.functions.Predicate) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_5 -wangdaye.com.geometricweather.R$layout: int abc_action_menu_layout -wangdaye.com.geometricweather.R$styleable: int AlertDialog_buttonPanelSideLayout -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onKeyguardDismissed() -androidx.lifecycle.ClassesInfoCache$CallbackInfo -androidx.appcompat.R$dimen: int abc_button_inset_vertical_material -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getDaytimeWeatherCode() -com.google.android.material.R$styleable: int AppCompatTheme_listDividerAlertDialog -androidx.coordinatorlayout.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherSource(java.lang.String) -android.didikee.donate.R$drawable: R$drawable() -com.google.android.material.R$color: int mtrl_bottom_nav_colored_item_tint -androidx.core.R$id: int accessibility_custom_action_10 -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_entries -androidx.hilt.work.R$dimen: R$dimen() -com.google.android.material.R$styleable: int Chip_android_checkable -androidx.constraintlayout.widget.Guideline: void setGuidelinePercent(float) -androidx.appcompat.widget.ActivityChooserView: androidx.appcompat.widget.ListPopupWindow getListPopupWindow() -com.google.android.material.R$styleable: int ActionBar_contentInsetRight -android.didikee.donate.R$style: R$style() -com.google.android.material.R$dimen: int mtrl_badge_radius -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Button -wangdaye.com.geometricweather.R$id: int widget_text_container -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$Validator PROTECTED_COMPONENTS_VALIDATOR -cyanogenmod.providers.CMSettings$Secure: int getIntForUser(android.content.ContentResolver,java.lang.String,int) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Small -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setCountryId(java.lang.String) -james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button -wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity: HourlyTrendWidgetConfigActivity() -okhttp3.internal.http2.PushObserver$1: PushObserver$1() -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortRealFeeTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -androidx.coordinatorlayout.R$layout: int notification_template_icon_group -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_borderlessButtonStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: java.lang.String Unit -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onNext(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -androidx.appcompat.R$attr: int buttonBarButtonStyle -androidx.appcompat.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -com.google.android.material.R$styleable: int Chip_chipIcon -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit[] values() -com.google.android.material.R$color: int mtrl_choice_chip_text_color -android.didikee.donate.R$styleable: int AppCompatTheme_panelMenuListWidth -android.support.v4.os.IResultReceiver -com.bumptech.glide.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int CloudCover -androidx.appcompat.view.menu.ListMenuItemView: ListMenuItemView(android.content.Context,android.util.AttributeSet) -androidx.work.R$id: int accessibility_action_clickable_span -com.google.android.material.R$styleable: int TextInputLayout_suffixTextColor -okhttp3.Response -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent -com.google.android.material.R$id: int stretch -androidx.hilt.R$styleable: int GradientColorItem_android_offset -okhttp3.internal.cache.DiskLruCache$Snapshot: long sequenceNumber -com.google.android.material.R$color: int abc_search_url_text -androidx.constraintlayout.widget.R$attr: int subtitle -cyanogenmod.platform.Manifest$permission: java.lang.String BIND_WEATHER_PROVIDER_SERVICE -cyanogenmod.hardware.CMHardwareManager: int getThermalState() -cyanogenmod.externalviews.KeyguardExternalView$4 -com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getRippleColorStateList() -okhttp3.internal.io.FileSystem: void deleteContents(java.io.File) -androidx.appcompat.resources.R$styleable: int GradientColor_android_startY -androidx.lifecycle.LiveData$LifecycleBoundObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentStyle -com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat_Dark -androidx.preference.R$drawable: int abc_text_select_handle_left_mtrl_dark -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar -wangdaye.com.geometricweather.R$drawable: int notif_temp_2 -okhttp3.Response$Builder: okhttp3.Response$Builder message(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getCardName(android.content.Context) -androidx.appcompat.widget.ActionMenuView: void setExpandedActionViewsExclusive(boolean) -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Bridge -androidx.constraintlayout.widget.R$color: int switch_thumb_disabled_material_dark -androidx.preference.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -com.turingtechnologies.materialscrollbar.R$attr: int voiceIcon -com.google.gson.stream.JsonReader: void checkLenient() -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode AUTOMATIC -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarSplitStyle -androidx.constraintlayout.widget.R$id: int text -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeTopRight -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -okio.Buffer: okio.Buffer buffer() -okhttp3.internal.Util: boolean equal(java.lang.Object,java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int[] PopupWindow -okio.Buffer$UnsafeCursor: int seek(long) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_today_stroke -com.google.android.material.R$dimen: int mtrl_textinput_box_stroke_width_default -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListPopupWindow -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeTextType -okio.Pipe: okio.Buffer buffer -wangdaye.com.geometricweather.R$styleable: int[] ButtonBarLayout -androidx.constraintlayout.widget.R$styleable: int RecycleListView_paddingTopNoTitle -okhttp3.internal.cache.DiskLruCache: java.lang.String REMOVE -androidx.constraintlayout.widget.R$string: int abc_toolbar_collapse_description -com.google.android.material.R$attr: int contentPaddingLeft -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle CIRCULAR -cyanogenmod.profiles.ConnectionSettings: void setOverride(boolean) -com.turingtechnologies.materialscrollbar.R$attr: int elevation -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void dispose() -com.google.android.material.R$styleable: int[] LinearLayoutCompat_Layout -cyanogenmod.providers.CMSettings$Secure: java.lang.String STATS_COLLECTION_REPORTED -wangdaye.com.geometricweather.R$bool: int abc_config_actionMenuItemAllCaps -androidx.appcompat.R$style: int Widget_AppCompat_AutoCompleteTextView -io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable[] values() -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenVoice(android.content.Context,java.lang.Integer) -com.xw.repo.bubbleseekbar.R$style -com.google.android.material.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -androidx.preference.R$styleable: int AppCompatTheme_actionBarPopupTheme -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitationDuration -androidx.lifecycle.extensions.R$dimen: int notification_small_icon_background_padding -okhttp3.Call: okhttp3.Request request() -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) -cyanogenmod.app.Profile$Type: int CONDITIONAL -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRealFeelShaderTemperature(java.lang.Integer) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -cyanogenmod.weather.ICMWeatherManager: java.lang.String getActiveWeatherServiceProviderLabel() -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_hovered_focused -androidx.swiperefreshlayout.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setPostfixString(java.lang.String) -james.adaptiveicon.R$attr: int collapseContentDescription -okio.BufferedSource: long indexOf(byte,long,long) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionButtonStyle -androidx.viewpager.R$drawable: int notification_icon_background -androidx.constraintlayout.widget.ConstraintLayout: void setMinWidth(int) -androidx.fragment.R$id: int accessibility_custom_action_10 -com.google.android.material.appbar.CollapsingToolbarLayout: int getScrimAlpha() -androidx.preference.R$id: int accessibility_action_clickable_span -com.turingtechnologies.materialscrollbar.R$attr: int rippleColor -wangdaye.com.geometricweather.R$id: int item_icon_provider_previewButton -okhttp3.internal.ws.WebSocketReader: void processNextFrame() -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_ALARMS -wangdaye.com.geometricweather.R$string: int settings_title_background_free -com.jaredrummler.android.colorpicker.R$attr: int actionBarSplitStyle -com.bumptech.glide.R$styleable: int GradientColor_android_centerColor -androidx.transition.R$color: R$color() -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderLayout -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Primary -wangdaye.com.geometricweather.R$layout: int dialog_location_permission_statement -com.google.android.material.R$dimen: int fastscroll_minimum_range -androidx.work.R$id: int tag_unhandled_key_event_manager -com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_tick_mark_material -james.adaptiveicon.R$id: int submenuarrow -okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String servedDateString -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_130 -androidx.coordinatorlayout.R$id: int end -android.didikee.donate.R$styleable: int AppCompatTextView_android_textAppearance -wangdaye.com.geometricweather.R$array: int distance_units -androidx.preference.R$style: int Base_Widget_AppCompat_EditText -com.google.android.material.appbar.AppBarLayout: android.graphics.drawable.Drawable getStatusBarForeground() -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textStyle -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean isDisposed() -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type VERTICAL_DIMENSION -com.google.android.material.bottomappbar.BottomAppBar$Behavior: BottomAppBar$Behavior(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Long id -okhttp3.internal.http2.Http2Stream: int id -wangdaye.com.geometricweather.R$color: int material_on_surface_emphasis_high_type -androidx.viewpager2.R$id: int blocking -com.google.android.material.R$color: int design_box_stroke_color -okhttp3.logging.LoggingEventListener: okhttp3.logging.HttpLoggingInterceptor$Logger logger -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_popupTheme -android.didikee.donate.R$dimen: int abc_action_button_min_height_material -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.internal.disposables.SequentialDisposable task -com.google.android.material.R$styleable: int ConstraintSet_layout_editor_absoluteY -androidx.appcompat.R$attr: int actionModeCloseButtonStyle -io.reactivex.Observable: io.reactivex.Observable debounce(long,java.util.concurrent.TimeUnit) -androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionListener(androidx.constraintlayout.motion.widget.MotionLayout$TransitionListener) -androidx.preference.R$styleable: int SwitchPreference_summaryOn -androidx.hilt.lifecycle.R$anim: int fragment_close_exit -cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.ICMStatusBarManager getService() -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String READ_ALARMS_PERMISSION -james.adaptiveicon.R$bool: int abc_allow_stacked_button_bar -androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_title -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_textAppearance -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Selected -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_share_mtrl_alpha -androidx.work.R$id: int right_side -androidx.appcompat.R$interpolator: R$interpolator() -android.didikee.donate.R$id: int topPanel -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_horizontal_padding -cyanogenmod.profiles.LockSettings: LockSettings(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_padding_start_material -okhttp3.RealCall$AsyncCall: okhttp3.RealCall get() -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.R$styleable: int AppCompatTheme_panelMenuListWidth -com.turingtechnologies.materialscrollbar.R$color: int mtrl_scrim_color -com.google.android.material.R$styleable: int[] FontFamily -androidx.core.R$id: int icon -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_light -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String uvDescription -androidx.recyclerview.R$id: int title -wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: double Value -androidx.appcompat.view.menu.CascadingMenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge -com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context) -android.didikee.donate.R$attr: int navigationMode -androidx.viewpager.widget.ViewPager: void setScrollState(int) -com.google.android.material.R$styleable: int MenuView_android_horizontalDivider -androidx.transition.R$styleable: int GradientColorItem_android_color -com.bumptech.glide.R$layout: R$layout() -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showAlphaSlider -cyanogenmod.app.Profile: java.util.Map mTriggers -androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context,android.util.AttributeSet) -androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackgroundColor(int) -james.adaptiveicon.R$style: int AlertDialog_AppCompat_Light -com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context) -androidx.core.graphics.drawable.IconCompat: IconCompat() -androidx.vectordrawable.R$drawable: int notification_bg -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HURRICANE -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onNext(java.lang.Object) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language PORTUGUESE -wangdaye.com.geometricweather.R$style: int Animation_AppCompat_Tooltip -wangdaye.com.geometricweather.R$styleable: int[] KeyCycle -androidx.appcompat.R$drawable: int notification_bg_low_pressed -androidx.preference.R$attr: int showSeekBarValue -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_tooltipText -wangdaye.com.geometricweather.R$style: int Widget_Design_TextInputEditText -wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_offset -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason valueOf(java.lang.String) -com.google.android.material.circularreveal.CircularRevealRelativeLayout -androidx.core.R$id -androidx.constraintlayout.widget.R$attr: int autoSizePresetSizes -okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,long,okio.BufferedSource) -com.turingtechnologies.materialscrollbar.R$attr: int layout_scrollInterpolator -com.github.rahatarmanahmed.cpv.CircularProgressView$7: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display4 -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow24h -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer treeIndex -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_y_offset_non_touch -com.xw.repo.bubbleseekbar.R$string: int abc_shareactionprovider_share_with_application -wangdaye.com.geometricweather.R$styleable: int RecycleListView_paddingTopNoTitle -androidx.appcompat.R$style: int TextAppearance_AppCompat_Medium_Inverse -androidx.constraintlayout.widget.R$attr: int titleMarginBottom -com.google.android.material.R$id: int accessibility_custom_action_15 -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String getEffectiveTldPlusOne(java.lang.String) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_16dp -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextAppearanceInactive -wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_progress -com.google.android.material.R$styleable: int Layout_layout_goneMarginRight -androidx.lifecycle.LiveData$ObserverWrapper: void detachObserver() -androidx.preference.R$integer: int config_tooltipAnimTime -wangdaye.com.geometricweather.R$string: int key_dark_mode -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context) -androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_RadioButton -james.adaptiveicon.R$layout: int select_dialog_multichoice_material -wangdaye.com.geometricweather.R$id: int hideable -androidx.preference.R$attr: int checkBoxPreferenceStyle -com.google.android.material.circularreveal.CircularRevealFrameLayout: CircularRevealFrameLayout(android.content.Context) -com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_Tooltip -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: FlowableObserveOn$BaseObserveOnSubscriber(io.reactivex.Scheduler$Worker,boolean,int) -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalBias -com.google.android.material.R$integer: int bottom_sheet_slide_duration -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Alert -androidx.preference.R$id: int contentPanel -com.google.android.material.R$styleable: int MenuGroup_android_menuCategory -org.greenrobot.greendao.AbstractDao: void updateInsideSynchronized(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement,boolean) -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_labelVisibilityMode -wangdaye.com.geometricweather.R$id: int customPanel -james.adaptiveicon.R$attr: int actionBarTabTextStyle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback) -wangdaye.com.geometricweather.R$attr: int bottom_text -com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_top_material -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String momentDay -androidx.dynamicanimation.R$styleable: int ColorStateListItem_alpha -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginRight -androidx.constraintlayout.widget.R$id: int expand_activities_button -androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet,int) -androidx.fragment.R$integer -com.turingtechnologies.materialscrollbar.R$integer: int design_snackbar_text_max_lines -com.google.android.material.R$attr: int startIconDrawable -wangdaye.com.geometricweather.R$attr: int passwordToggleEnabled -com.bumptech.glide.integration.okhttp.R$layout: int notification_action -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Tooltip -androidx.preference.R$styleable: int FragmentContainerView_android_name -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginLeft -androidx.hilt.lifecycle.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMarkTint -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: boolean cancelled -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean direction -cyanogenmod.weather.WeatherLocation: java.lang.String toString() -com.bumptech.glide.integration.okhttp.R$attr: int ttcIndex -com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$color: int secondary_text_disabled_material_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: java.util.List getValue() -com.google.android.material.R$attr: int alertDialogCenterButtons -com.google.android.material.R$id: int action_bar_root -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator -james.adaptiveicon.R$styleable: int ActionMode_closeItemLayout -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onError(java.lang.Throwable) -androidx.preference.R$layout: int abc_activity_chooser_view -com.google.android.material.R$styleable: int SwitchCompat_android_thumb -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: KeyguardExternalViewProviderService$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService) -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.internal.operators.observable.ObservableCache parent -android.didikee.donate.R$color: int switch_thumb_disabled_material_dark -retrofit2.adapter.rxjava2.CallExecuteObservable: retrofit2.Call originalCall -okhttp3.EventListener: void requestBodyStart(okhttp3.Call) -androidx.viewpager2.R$layout: int notification_template_icon_group -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removeAllQueryParameters(java.lang.String) -com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_colored -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTint -wangdaye.com.geometricweather.R$styleable: int DialogPreference_positiveButtonText -androidx.appcompat.R$color: int switch_thumb_disabled_material_dark -android.didikee.donate.R$style: int TextAppearance_AppCompat_Display3 -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: long serialVersionUID -androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context) -com.xw.repo.bubbleseekbar.R$attr: int bsb_always_show_bubble -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.ChineseCityEntity) -cyanogenmod.hardware.CMHardwareManager: boolean unRegisterThermalListener(cyanogenmod.hardware.ThermalListenerCallback) -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String getWeatherSource() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.preference.R$styleable: R$styleable() -okhttp3.internal.cache.DiskLruCache$Editor$1: okhttp3.internal.cache.DiskLruCache$Editor this$1 -okhttp3.internal.cache.FaultHidingSink: FaultHidingSink(okio.Sink) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonStyle -androidx.hilt.work.R$id: int line3 -androidx.appcompat.R$styleable: int DrawerArrowToggle_barLength -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalGap -androidx.lifecycle.Transformations$2 -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_toolbar -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView -cyanogenmod.weather.WeatherLocation: java.lang.String mPostal -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_MAX -com.google.android.material.R$dimen: int abc_action_bar_stacked_tab_max_width -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: void setBrands(java.util.List) -com.turingtechnologies.materialscrollbar.R$attr: int alertDialogButtonGroupStyle -com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_toRightOf -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index no2 -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindSpeed -wangdaye.com.geometricweather.R$styleable: int[] Variant -androidx.viewpager2.widget.ViewPager2: void setUserInputEnabled(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int[] StateListDrawableItem -androidx.appcompat.R$styleable: int AppCompatTheme_editTextColor -com.google.android.material.appbar.AppBarLayout: void removeOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: MfForecastResult$DailyForecast() -androidx.preference.R$styleable: int Preference_defaultValue -wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemIconDisabledAlpha -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric Metric -okio.GzipSource: void updateCrc(okio.Buffer,long,long) -okhttp3.Headers$Builder -androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_toId -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: boolean disconnectedEarly -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_orderInCategory -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm10 -okhttp3.internal.ws.RealWebSocket: okhttp3.Request originalRequest -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: android.os.IBinder mRemote -com.google.android.material.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Id -com.bumptech.glide.request.RequestCoordinator$RequestState -androidx.legacy.coreutils.R$attr: int fontProviderFetchStrategy -androidx.recyclerview.R$dimen: int compat_button_padding_vertical_material -com.xw.repo.bubbleseekbar.R$style: int Base_DialogWindowTitleBackground_AppCompat -androidx.work.R$styleable -cyanogenmod.app.ThemeVersion$ComponentVersion: int minVersion -wangdaye.com.geometricweather.R$attr: int updatesContinuously -androidx.hilt.work.R$id: int accessibility_custom_action_0 -okio.Timeout: long timeoutNanos -androidx.work.impl.WorkManagerInitializer: WorkManagerInitializer() -com.google.android.material.internal.ParcelableSparseBooleanArray -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_16 -androidx.fragment.R$id: int accessibility_custom_action_3 -wangdaye.com.geometricweather.R$styleable: int MenuItem_tooltipText -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pm10 -com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabTextColors() -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_DayNight -wangdaye.com.geometricweather.R$array: int location_services -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_title -okhttp3.internal.Util$2 -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver -wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_percent -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_dialogType -com.google.android.material.R$attr: int content -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onComplete() -wangdaye.com.geometricweather.common.basic.models.weather.Alert: void deduplication(java.util.List) -androidx.preference.R$styleable: int SeekBarPreference_updatesContinuously -androidx.recyclerview.R$id: int accessibility_custom_action_18 -androidx.constraintlayout.widget.R$attr: int colorPrimary -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.recyclerview.R$styleable: int FontFamilyFont_fontStyle -com.google.android.material.R$id: int ghost_view_holder -android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupMenu -android.didikee.donate.R$drawable: int abc_btn_radio_to_on_mtrl_000 -okio.Okio$2: okio.Timeout val$timeout -com.google.android.material.textfield.TextInputLayout: void setEditText(android.widget.EditText) -com.google.android.material.R$styleable: int MenuItem_android_enabled -androidx.lifecycle.ViewModelStores: androidx.lifecycle.ViewModelStore of(androidx.fragment.app.FragmentActivity) -com.google.android.material.R$styleable: int ActionBar_icon -okhttp3.internal.connection.StreamAllocation: boolean $assertionsDisabled -com.google.android.material.R$styleable: int MaterialCalendar_yearSelectedStyle -wangdaye.com.geometricweather.R$attr: int bsb_hide_bubble -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_holo_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getNo2() -androidx.preference.R$id: int action_bar -androidx.constraintlayout.widget.Guideline: void setGuidelineBegin(int) -androidx.constraintlayout.utils.widget.ImageFilterButton: void setWarmth(float) -android.didikee.donate.R$styleable: int Spinner_android_prompt -com.jaredrummler.android.colorpicker.R$dimen: int abc_alert_dialog_button_dimen -io.reactivex.internal.schedulers.AbstractDirectTask: long serialVersionUID -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_percent -io.reactivex.internal.util.EmptyComponent: org.reactivestreams.Subscriber asSubscriber() -androidx.work.R$id -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowMinWidthMinor -com.xw.repo.bubbleseekbar.R$color: int button_material_dark -com.google.android.material.chip.Chip: void setChipStrokeWidthResource(int) -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogLayout -okio.ByteString: int decodeHexDigit(char) -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: boolean eager -androidx.appcompat.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$drawable: int widget_clock_day_week -androidx.appcompat.resources.R$id: int accessibility_custom_action_27 -wangdaye.com.geometricweather.R$attr: int buttonStyle -okhttp3.internal.http2.Http2Connection$3: Http2Connection$3(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[]) -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void dispose() -wangdaye.com.geometricweather.R$id: int item_weather_daily_title_title -wangdaye.com.geometricweather.R$drawable: int notif_temp_112 -androidx.loader.content.Loader -androidx.constraintlayout.widget.R$styleable: int Transform_android_transformPivotY -com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_light -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_GCM_SHA384 -cyanogenmod.themes.ThemeManager$1: void onProgress(int) -androidx.fragment.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.R$color: int mtrl_error -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setLiveLockScreen(java.lang.String) -com.google.android.material.R$dimen: int design_navigation_item_horizontal_padding -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder scheme(java.lang.String) -io.reactivex.observers.DisposableObserver: void dispose() -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_showSeekBarValue -cyanogenmod.themes.IThemeService: boolean isThemeApplying() -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty1H -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.lang.String titleHtml -wangdaye.com.geometricweather.R$drawable: int ic_search -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherComplete() -com.google.android.material.R$attr: int goIcon -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_ENABLED -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String LongPhrase -androidx.appcompat.R$styleable: int SwitchCompat_showText -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: ObservableMergeWithSingle$MergeWithObserver(io.reactivex.Observer) -wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_range -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.internal.disposables.ArrayCompositeDisposable resources -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_summaryOff -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_stacked_max_height -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTotalPrecipitationProbability(java.lang.Float) -androidx.preference.R$attr: int customNavigationLayout -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onError(java.lang.Throwable) -james.adaptiveicon.R$dimen: int tooltip_y_offset_non_touch -retrofit2.RequestFactory$Builder: java.lang.Class boxIfPrimitive(java.lang.Class) -wangdaye.com.geometricweather.R$drawable: int avd_hide_password -androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context,android.util.AttributeSet) -androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnStart() -androidx.constraintlayout.widget.R$id: int notification_main_column -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeWindChillTemperature -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constrainedWidth -com.jaredrummler.android.colorpicker.R$attr: int checkedTextViewStyle -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DarkActionBar -cyanogenmod.app.ProfileGroup: java.lang.String mName -com.google.android.material.R$id: int accessibility_custom_action_8 -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogTitle -com.google.android.material.R$color: int mtrl_textinput_disabled_color -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginStart -retrofit2.adapter.rxjava2.CallEnqueueObservable: CallEnqueueObservable(retrofit2.Call) -wangdaye.com.geometricweather.R$id: int shades_divider -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework -wangdaye.com.geometricweather.R$styleable: int Slider_trackColorActive -cyanogenmod.hardware.ICMHardwareService$Stub: java.lang.String DESCRIPTOR -okhttp3.internal.cache.DiskLruCache: java.util.Iterator snapshots() -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver -okio.Okio$4: java.net.Socket val$socket -james.adaptiveicon.R$color: int abc_btn_colored_text_material -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1 -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void disposeAfter() -cyanogenmod.app.CustomTile$ExpandedStyle: int LIST_STYLE -androidx.hilt.work.R$anim -androidx.appcompat.R$styleable: int[] DrawerArrowToggle -wangdaye.com.geometricweather.R$attr: int collapsingToolbarLayoutStyle -androidx.lifecycle.SavedStateHandleController$1: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: java.lang.Integer max -cyanogenmod.weather.WeatherInfo$Builder: boolean isValidWindSpeedUnit(int) -cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder onBind(android.content.Intent) -androidx.appcompat.R$id: int alertTitle -com.turingtechnologies.materialscrollbar.R$dimen: int abc_progress_bar_height_material -androidx.lifecycle.LifecycleRegistry: int mAddingObserverCounter -com.google.android.material.slider.RangeSlider: void setThumbStrokeWidthResource(int) -retrofit2.DefaultCallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: MfLocationResult() -com.google.android.material.R$styleable: int CustomAttribute_customColorDrawableValue -androidx.activity.R$dimen: int notification_top_pad_large_text -okhttp3.internal.http2.Http2Connection: long access$100(okhttp3.internal.http2.Http2Connection) -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startY -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean cancelled -wangdaye.com.geometricweather.R$style: int Theme_Design -com.google.android.material.R$styleable: int TextInputLayout_errorIconTintMode -wangdaye.com.geometricweather.R$color: int bright_foreground_inverse_material_dark -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_type -cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_WAKE_SCREEN -okio.BufferedSource: long readLong() -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge -wangdaye.com.geometricweather.R$attr: int state_collapsed -io.reactivex.internal.subscriptions.SubscriptionArbiter: long requested -android.support.v4.os.IResultReceiver$Stub$Proxy: IResultReceiver$Stub$Proxy(android.os.IBinder) -com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Light -okhttp3.Response$Builder: okhttp3.Response build() -androidx.appcompat.resources.R$styleable: int FontFamilyFont_ttcIndex -okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeOptionalWithoutCheckedException(java.lang.Object,java.lang.Object[]) -androidx.swiperefreshlayout.R$style: int Widget_Compat_NotificationActionText -android.didikee.donate.R$id: int actions -retrofit2.ParameterHandler$2: ParameterHandler$2(retrofit2.ParameterHandler) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionMode -androidx.preference.PreferenceManager: void setOnPreferenceTreeClickListener(androidx.preference.PreferenceManager$OnPreferenceTreeClickListener) -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColorHint -androidx.hilt.lifecycle.R$id: int tag_transition_group -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: MfCurrentResult$Position() -androidx.preference.R$styleable: int ActionBar_homeAsUpIndicator -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_corner_radius_medium -android.didikee.donate.R$attr: int navigationContentDescription -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogMessage -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onLockscreenSlideOffsetChanged -androidx.customview.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_default -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -android.didikee.donate.R$drawable: int abc_btn_colored_material -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_AIR_QUALITY -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_84 -androidx.lifecycle.FullLifecycleObserver: void onStop(androidx.lifecycle.LifecycleOwner) -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable -androidx.constraintlayout.widget.R$attr: int roundPercent -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$drawable: int notif_temp_120 -com.google.android.material.R$attr: int motionPathRotate -io.reactivex.Observable: io.reactivex.Observable window(java.util.concurrent.Callable,int) -cyanogenmod.externalviews.KeyguardExternalView$8: void run() -com.bumptech.glide.R$id: int action_text -com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset -androidx.preference.R$styleable: int FontFamily_fontProviderFetchTimeout -com.xw.repo.bubbleseekbar.R$attr: int tintMode -androidx.activity.R$id: int action_text -androidx.constraintlayout.widget.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient mClient -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$drawable: int abc_switch_track_mtrl_alpha -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean done -androidx.constraintlayout.widget.R$anim: int abc_popup_exit -com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout_Colored -androidx.lifecycle.extensions.R$styleable: int[] ColorStateListItem -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -cyanogenmod.profiles.ConnectionSettings$BooleanState -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$attr: int actionModeCutDrawable -androidx.appcompat.resources.R$id: int accessibility_custom_action_9 -com.google.android.material.R$attr: int region_heightLessThan -androidx.preference.R$attr: int trackTint -androidx.constraintlayout.widget.R$id: int dragRight -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_height -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_start_icon_margin_end -com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_icon_width -androidx.constraintlayout.widget.R$drawable: int abc_btn_check_to_on_mtrl_015 -androidx.core.view.ViewCompat$1: ViewCompat$1(androidx.core.view.OnApplyWindowInsetsListener) -androidx.appcompat.widget.AppCompatRadioButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature Temperature -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onError(java.lang.Throwable) -com.google.android.material.R$animator: int mtrl_fab_hide_motion_spec -com.google.android.material.appbar.MaterialToolbar: void setElevation(float) -androidx.drawerlayout.R$dimen: int notification_top_pad -com.google.android.material.R$styleable: int KeyTimeCycle_android_rotationX -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Caption -com.google.android.material.textfield.TextInputLayout: void setPrefixTextAppearance(int) -okhttp3.Request: okhttp3.HttpUrl url() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: AccuDailyResult$DailyForecasts$Night$WindGust$Direction() -androidx.vectordrawable.R$id -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getEn_US() -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginRight -com.google.android.material.R$attr: int arrowHeadLength -io.reactivex.internal.util.VolatileSizeArrayList: boolean remove(java.lang.Object) -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_EMPTY -androidx.preference.R$style: int TextAppearance_AppCompat_Title_Inverse -james.adaptiveicon.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -com.turingtechnologies.materialscrollbar.R$id: int action_mode_close_button -wangdaye.com.geometricweather.R$styleable: int[] ViewPager2 -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf -com.google.android.material.R$attr: int expandedTitleMarginEnd -okio.BufferedSink: okio.BufferedSink writeUtf8(java.lang.String) -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -androidx.lifecycle.SavedStateHandle$1: androidx.lifecycle.SavedStateHandle this$0 -androidx.viewpager.widget.PagerTitleStrip: void setTextSpacing(int) -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onSubscribe(org.reactivestreams.Subscription) -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: long serialVersionUID -android.didikee.donate.R$drawable: int abc_ratingbar_material -com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_Tooltip -com.turingtechnologies.materialscrollbar.R$attr: int bottomSheetDialogTheme -androidx.work.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.R$attr: int cpv_maxProgress -wangdaye.com.geometricweather.R$styleable: int ActionBar_icon -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_goIcon -okhttp3.Response$Builder: okhttp3.Request request -cyanogenmod.content.Intent: java.lang.String CATEGORY_THEME_PACKAGE_INSTALLED_STATE_CHANGE -com.google.android.material.R$attr: int switchStyle -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getCurrentPosition() -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void setDisposable(io.reactivex.disposables.Disposable) -androidx.constraintlayout.utils.widget.ImageFilterView: void setCrossfade(float) -wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarStyle -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ButtonBar -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String MODIFY_ALARMS_PERMISSION -androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_inflatedId -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_share_mtrl_alpha -androidx.work.R$styleable: int GradientColorItem_android_offset -com.google.android.material.card.MaterialCardView: void setProgress(float) -androidx.preference.R$color: int notification_action_color_filter -androidx.preference.R$color: int abc_search_url_text -com.google.android.material.button.MaterialButton -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -wangdaye.com.geometricweather.R$string: int key_notification_hide_big_view -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String INSTALL_TIME -okio.Buffer$2: okio.Buffer this$0 -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -androidx.hilt.lifecycle.R$styleable: int Fragment_android_name -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_icon_size -com.jaredrummler.android.colorpicker.R$id: int split_action_bar -cyanogenmod.app.IPartnerInterface$Stub$Proxy: java.lang.String getCurrentHotwordPackageName() -androidx.preference.R$styleable: int AppCompatSeekBar_tickMarkTintMode -com.jaredrummler.android.colorpicker.R$attr: int preferenceScreenStyle -cyanogenmod.weather.RequestInfo: int hashCode() -com.turingtechnologies.materialscrollbar.R$attr: int actionButtonStyle -wangdaye.com.geometricweather.R$attr: int titleMarginTop -io.reactivex.Observable: io.reactivex.Observable repeatUntil(io.reactivex.functions.BooleanSupplier) -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void dispose() -androidx.preference.R$style: int TextAppearance_AppCompat_Body1 -androidx.appcompat.widget.SearchView: void setSuggestionsAdapter(androidx.cursoradapter.widget.CursorAdapter) -wangdaye.com.geometricweather.R$id: int item_card_display_title -wangdaye.com.geometricweather.R$string: int about_circular_progress_view -okio.Util: short reverseBytesShort(short) -androidx.preference.R$attr: int homeAsUpIndicator -wangdaye.com.geometricweather.R$style: int title_text -com.google.android.material.R$styleable: int MaterialButton_iconPadding -cyanogenmod.weather.WeatherInfo: boolean equals(java.lang.Object) -androidx.recyclerview.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.R$styleable: int[] TextAppearance -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorColor -wangdaye.com.geometricweather.R$drawable: int flag_sr -io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.CompletableSource) -androidx.appcompat.widget.SearchView: void setOnSearchClickListener(android.view.View$OnClickListener) -androidx.preference.R$styleable: int ActionBar_contentInsetStart -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -okhttp3.internal.http1.Http1Codec: okio.Sink newChunkedSink() -androidx.cardview.widget.CardView: void setUseCompatPadding(boolean) -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: java.util.concurrent.atomic.AtomicReference observers -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Small -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTint -wangdaye.com.geometricweather.common.ui.activities.AlertActivity: AlertActivity() -wangdaye.com.geometricweather.R$styleable: int NavigationView_android_maxWidth -androidx.hilt.R$id: int action_image -androidx.lifecycle.extensions.R$drawable: int notification_icon_background -androidx.hilt.R$dimen: int notification_action_text_size -io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit) -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_separator_vertical_padding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String getTo() -wangdaye.com.geometricweather.R$styleable: int Slider_thumbRadius -com.google.android.material.transformation.ExpandableTransformationBehavior: ExpandableTransformationBehavior() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_GCM_SHA256 -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getTemperatureText(android.content.Context,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: int getStatus() -androidx.constraintlayout.widget.R$attr: int switchTextAppearance -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitationDuration -wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_android_foregroundGravity -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void clear() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindSpeedEnd(java.lang.String) -wangdaye.com.geometricweather.R$attr: int checkedIconMargin -cyanogenmod.providers.ThemesContract$PreviewColumns: ThemesContract$PreviewColumns() -com.xw.repo.bubbleseekbar.R$drawable: int notification_template_icon_low_bg -cyanogenmod.externalviews.ExternalView: android.content.Context mContext -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter nullValue() -okhttp3.internal.http.RealResponseBody: okio.BufferedSource source() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService get() -james.adaptiveicon.R$styleable: int ActionBar_contentInsetLeft -wangdaye.com.geometricweather.R$attr: int deltaPolarRadius -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -okhttp3.internal.http.StatusLine: okhttp3.Protocol protocol -androidx.preference.R$attr: int firstBaselineToTopHeight -wangdaye.com.geometricweather.R$drawable: int widget_multi_city -com.turingtechnologies.materialscrollbar.R$style: int Platform_V25_AppCompat -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer grassLevel -androidx.preference.PreferenceScreen: PreferenceScreen(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setTempMax(java.lang.String) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index pm10 -androidx.appcompat.R$style: int TextAppearance_AppCompat_Medium -androidx.preference.R$layout: int abc_action_bar_title_item -wangdaye.com.geometricweather.R$id: int widget_week_week_1 -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_checkableBehavior -okhttp3.EventListener: void requestBodyEnd(okhttp3.Call,long) -okhttp3.internal.http1.Http1Codec: okhttp3.OkHttpClient client -com.google.android.material.R$attr: int materialCalendarHeaderLayout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult -com.google.android.material.R$styleable: int MaterialTextAppearance_android_letterSpacing -androidx.preference.R$dimen: int abc_config_prefDialogWidth -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginStart -retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler parseParameterAnnotation(int,java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation) -androidx.work.R$styleable: int GradientColor_android_gradientRadius -com.jaredrummler.android.colorpicker.ColorPanelView: void setShape(int) -androidx.preference.R$id: int tag_accessibility_heading -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_holo_light -androidx.constraintlayout.widget.R$styleable: int ActionBar_backgroundSplit -okhttp3.Cache: void trackResponse(okhttp3.internal.cache.CacheStrategy) -com.xw.repo.bubbleseekbar.R$id: int topPanel -androidx.fragment.R$attr: int fontWeight -wangdaye.com.geometricweather.R$attr: int endIconDrawable -android.didikee.donate.R$style: int Widget_AppCompat_Button -okio.HashingSource: okio.HashingSource sha1(okio.Source) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_elevation -okio.HashingSink: okio.HashingSink hmacSha512(okio.Sink,okio.ByteString) -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTextView -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_voice -androidx.preference.R$drawable: int abc_btn_radio_to_on_mtrl_015 -androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo getWeatherInfo() -wangdaye.com.geometricweather.R$id: int item_aqi -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_registerThemeProcessingListener -com.jaredrummler.android.colorpicker.R$layout: int preference_recyclerview -wangdaye.com.geometricweather.R$attr: int percentY -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Medium -okhttp3.Cache$CacheResponseBody: java.lang.String contentLength -wangdaye.com.geometricweather.R$color: int material_timepicker_button_background -com.xw.repo.bubbleseekbar.R$attr: int actionModeCutDrawable -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_corner_radius -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean isDisposed() -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleTintList(android.content.res.ColorStateList) -androidx.recyclerview.R$id: int accessibility_custom_action_5 -cyanogenmod.platform.R$integer -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -android.didikee.donate.R$color: int button_material_light -com.xw.repo.bubbleseekbar.R$attr: int defaultQueryHint -androidx.appcompat.widget.AppCompatButton: void setAutoSizeTextTypeWithDefaults(int) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_anim_duration -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitationDuration(java.lang.Float) -androidx.loader.R$dimen: int notification_small_icon_background_padding -androidx.core.R$attr: int ttcIndex -okhttp3.Response: okhttp3.Handshake handshake() -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceVoice(android.content.Context) -wangdaye.com.geometricweather.R$color: int mtrl_btn_text_color_disabled -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getMoldIndex() -okhttp3.RealCall: java.lang.String redactedUrl() -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_voice -io.reactivex.Observable: io.reactivex.Observable compose(io.reactivex.ObservableTransformer) -cyanogenmod.weather.ICMWeatherManager$Stub: ICMWeatherManager$Stub() -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_padding_bottom -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getLongitude() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier[] values() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableLeft -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_attributeName -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonPhaseDescription -androidx.preference.R$dimen: int abc_dialog_fixed_width_minor -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean isDisposed() -androidx.drawerlayout.R$id: int tag_unhandled_key_listeners -okhttp3.Response: java.lang.String header(java.lang.String,java.lang.String) -okio.AsyncTimeout: okio.Source source(okio.Source) -wangdaye.com.geometricweather.R$attr: int pressedTranslationZ -androidx.constraintlayout.widget.R$attr: int region_widthMoreThan -wangdaye.com.geometricweather.R$drawable: int notif_temp_140 -androidx.drawerlayout.R$attr: int alpha -james.adaptiveicon.R$anim: int abc_grow_fade_in_from_bottom -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_prompt -okhttp3.internal.Version: java.lang.String userAgent() -com.github.rahatarmanahmed.cpv.CircularProgressView: void onDetachedFromWindow() -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: org.reactivestreams.Subscription upstream -androidx.lifecycle.Lifecycling -com.xw.repo.bubbleseekbar.R$attr: int statusBarBackground -androidx.vectordrawable.R$styleable: int GradientColor_android_centerX -androidx.preference.R$style: int Widget_AppCompat_Button_Borderless -wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_iconResStart -com.google.android.material.R$styleable: int SwitchCompat_track -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -okhttp3.internal.Util: void closeQuietly(java.io.Closeable) -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedPathSegments(java.lang.String) -wangdaye.com.geometricweather.R$color: int switch_thumb_normal_material_light -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void clear() -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_ttcIndex -androidx.activity.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setBackgroundColorEnd(int) -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: int unitArrayIndex -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getCloudCover() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -wangdaye.com.geometricweather.R$id: int widget_day_week_week_2 -androidx.preference.SeekBarPreference -com.jaredrummler.android.colorpicker.R$styleable: int[] LinearLayoutCompat_Layout -wangdaye.com.geometricweather.R$array: int live_wallpaper_weather_kinds -com.google.android.material.R$styleable: int AppCompatTheme_dropDownListViewStyle -wangdaye.com.geometricweather.R$id: int tag_accessibility_actions -androidx.vectordrawable.animated.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelBackground -androidx.hilt.work.R$id: int text -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_elevation -androidx.hilt.lifecycle.R$color: int ripple_material_light -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.MinutelyEntity) -com.google.android.material.R$id: int uniform -wangdaye.com.geometricweather.R$id: int item_about_header_appName -androidx.preference.R$styleable: int FragmentContainerView_android_tag -wangdaye.com.geometricweather.R$layout: int container_snackbar -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: BodyObservable$BodyObserver(io.reactivex.Observer) -com.turingtechnologies.materialscrollbar.R$id: int src_atop -wangdaye.com.geometricweather.R$integer: int mtrl_card_anim_delay_ms -com.google.android.material.R$styleable: int AppCompatTextView_fontFamily -com.bumptech.glide.R$integer: int status_bar_notification_info_maxnum -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableStart -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: int UnitType -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModePasteDrawable -androidx.lifecycle.HasDefaultViewModelProviderFactory: androidx.lifecycle.ViewModelProvider$Factory getDefaultViewModelProviderFactory() -com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabView -com.turingtechnologies.materialscrollbar.R$attr: int dialogTheme -okio.Buffer: okio.ByteString hmac(java.lang.String,okio.ByteString) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable -android.didikee.donate.R$styleable: int AppCompatTheme_actionMenuTextAppearance -androidx.appcompat.R$dimen: int abc_alert_dialog_button_bar_height -com.google.android.material.R$dimen: int mtrl_slider_track_top -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabTextStyle -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean done -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconTint -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Blue -okhttp3.internal.http2.Http2Connection: void writeSynResetLater(int,okhttp3.internal.http2.ErrorCode) -com.google.android.material.stateful.ExtendableSavedState -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String getDescription() -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$drawable: int ic_chronus -com.google.android.material.R$id: int transition_current_scene -com.google.android.material.R$styleable: int[] ScrimInsetsFrameLayout -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Small -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_54 -com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_horizontal_material -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SYSTEM_PROFILES_ENABLED_VALIDATOR -wangdaye.com.geometricweather.R$string: int content_des_m3 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlNormal -cyanogenmod.themes.IThemeProcessingListener$Stub: java.lang.String DESCRIPTOR -androidx.appcompat.R$styleable: int CompoundButton_buttonTintMode -com.jaredrummler.android.colorpicker.R$attr: int cpv_colorPresets -com.turingtechnologies.materialscrollbar.R$drawable: int abc_tab_indicator_material -wangdaye.com.geometricweather.location.services.LocationService: android.app.NotificationChannel getLocationNotificationChannel(android.content.Context) -james.adaptiveicon.R$attr: int spinBars -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric Metric -com.google.android.material.badge.BadgeDrawable$SavedState: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SeekBar_Discrete -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: ObservableSampleTimed$SampleTimedEmitLast(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.core.R$id: int line1 -com.jaredrummler.android.colorpicker.R$attr: int dividerVertical -android.didikee.donate.R$styleable: int ColorStateListItem_alpha -cyanogenmod.hardware.CMHardwareManager: boolean set(int,boolean) -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_HIGH -okhttp3.Headers: boolean equals(java.lang.Object) -androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$styleable: int[] AlertDialog -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_min -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeShareDrawable -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: io.reactivex.disposables.Disposable upstream -com.google.android.material.R$attr: int materialCalendarYearNavigationButton -androidx.constraintlayout.widget.R$styleable: int Constraint_barrierDirection -james.adaptiveicon.R$dimen: int abc_text_size_button_material -com.google.android.material.R$dimen: int mtrl_textinput_box_stroke_width_focused -com.google.android.material.R$dimen: int abc_select_dialog_padding_start_material -androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_velocityMode -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitationProbability -androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_4_material -com.google.android.material.R$string: int mtrl_picker_toggle_to_calendar_input_mode -retrofit2.Retrofit: retrofit2.ServiceMethod loadServiceMethod(java.lang.reflect.Method) -androidx.hilt.work.R$id: int accessibility_custom_action_16 -com.google.android.material.R$color: int material_cursor_color -com.google.android.material.R$styleable: int ConstraintSet_android_layout_width -com.google.android.material.R$color: int test_mtrl_calendar_day -androidx.preference.R$drawable: int abc_ic_arrow_drop_right_black_24dp -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float icePrecipitation -android.didikee.donate.R$id: int action_context_bar -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void complete() -wangdaye.com.geometricweather.R$styleable: int[] ThemeEnforcement -androidx.core.R$layout: int notification_action -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_tileMode -com.google.android.material.R$styleable: int Layout_chainUseRtl -okhttp3.CipherSuite: java.lang.String javaName() -io.reactivex.internal.schedulers.RxThreadFactory: boolean nonBlocking -androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.Fragment) -james.adaptiveicon.R$drawable: int abc_action_bar_item_background_material -androidx.coordinatorlayout.R$attr: R$attr() -wangdaye.com.geometricweather.main.dialogs.LearnMoreAboutResidentLocationDialog: LearnMoreAboutResidentLocationDialog() -androidx.appcompat.R$styleable: int SearchView_searchIcon -androidx.preference.R$styleable: int MenuItem_actionLayout -androidx.appcompat.R$drawable: int abc_textfield_search_material -wangdaye.com.geometricweather.R$id: int italic -cyanogenmod.providers.CMSettings$System: java.lang.String T9_SEARCH_INPUT_LOCALE -androidx.preference.R$styleable: int SearchView_layout -com.google.android.material.R$attr: int fabCradleMargin -okio.Buffer: java.lang.String readUtf8() -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: Http1Codec$UnknownLengthSource(okhttp3.internal.http1.Http1Codec) -androidx.customview.R$id: int notification_main_column -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -okhttp3.HttpUrl: okhttp3.HttpUrl get(java.net.URI) -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemShapeAppearanceOverlay -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -androidx.recyclerview.R$styleable: int FontFamily_fontProviderFetchStrategy -james.adaptiveicon.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$layout: int container_main_daily_trend_card -com.jaredrummler.android.colorpicker.R$integer: R$integer() -androidx.constraintlayout.widget.R$dimen: int abc_seekbar_track_background_height_material -okhttp3.CertificatePinner: int hashCode() -com.google.android.material.R$attr: int layout_dodgeInsetEdges -cyanogenmod.app.ProfileGroup$1: ProfileGroup$1() -androidx.preference.R$dimen: int abc_dialog_list_padding_top_no_title -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTopCompat -androidx.fragment.R$styleable: int FragmentContainerView_android_tag -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabView -androidx.legacy.coreutils.R$styleable: int[] FontFamilyFont -com.google.android.material.R$attr: int dialogTheme -androidx.drawerlayout.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_summaryOn -wangdaye.com.geometricweather.R$animator: int weather_haze_3 -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Title_Inverse -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean cancelled -com.google.android.material.floatingactionbutton.FloatingActionButton: void setImageDrawable(android.graphics.drawable.Drawable) -androidx.appcompat.app.WindowDecorActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -androidx.preference.R$styleable: int AppCompatTheme_textColorSearchUrl -james.adaptiveicon.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -com.bumptech.glide.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.WeatherEntity,long) -wangdaye.com.geometricweather.R$id: int bottom -androidx.constraintlayout.widget.R$attr: int buttonStyle -androidx.constraintlayout.widget.R$attr: int motion_triggerOnCollision -okio.RealBufferedSink: okio.BufferedSink write(okio.ByteString) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_CBC_SHA -com.turingtechnologies.materialscrollbar.R$color: int background_floating_material_dark -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_17 -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_normal -androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyleSmall -wangdaye.com.geometricweather.R$styleable: int[] MotionScene -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_chainUseRtl -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Content -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight -com.jaredrummler.android.colorpicker.R$layout: int notification_template_part_chronometer -okhttp3.internal.http.HttpHeaders: java.lang.String readQuotedString(okio.Buffer) -androidx.dynamicanimation.R$dimen: int notification_small_icon_background_padding -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: java.lang.Object[] latest -androidx.swiperefreshlayout.R$id: int notification_main_column -com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_percent -com.google.android.material.R$id: int on -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -androidx.lifecycle.LifecycleService -androidx.lifecycle.LifecycleRegistry: void handleLifecycleEvent(androidx.lifecycle.Lifecycle$Event) -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$drawable: int weather_haze_3 -androidx.loader.R$styleable: int GradientColor_android_centerX -cyanogenmod.app.suggest.ApplicationSuggestion$1: cyanogenmod.app.suggest.ApplicationSuggestion createFromParcel(android.os.Parcel) -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void removeCustomTileWithTag(java.lang.String,java.lang.String,int,int) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xsr -james.adaptiveicon.R$dimen: int abc_text_size_title_material_toolbar -okhttp3.Cookie$Builder: okhttp3.Cookie build() -com.google.android.material.R$dimen: int mtrl_shape_corner_size_small_component -android.didikee.donate.R$styleable: int AppCompatTextView_drawableTintMode -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial() -com.jaredrummler.android.colorpicker.R$id: int up -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_divider_thickness -androidx.lifecycle.extensions.R$id: int fragment_container_view_tag -com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constrainedHeight -androidx.customview.R$id: int icon -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoonPhaseAngle() -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.db.entities.DaoSession daoSession -wangdaye.com.geometricweather.db.entities.HourlyEntityDao -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -okhttp3.internal.cache.DiskLruCache: int valueCount -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableStart -androidx.viewpager.R$id: int notification_main_column -com.google.android.material.R$dimen: int abc_list_item_padding_horizontal_material -wangdaye.com.geometricweather.R$id: int dragDown -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -wangdaye.com.geometricweather.R$drawable: int btn_checkbox_unchecked_mtrl -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconDrawable -okio.BufferedSource: long indexOf(byte,long) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List daisan -wangdaye.com.geometricweather.R$animator: int mtrl_fab_show_motion_spec -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX() -com.turingtechnologies.materialscrollbar.R$integer: int mtrl_btn_anim_delay_ms -com.google.android.material.R$id: int mtrl_picker_text_input_date -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataTitle -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul3H -androidx.preference.R$styleable: int AppCompatTheme_actionBarTheme -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_allowCustom -wangdaye.com.geometricweather.R$color: int background_floating_material_dark -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_switchTextOn -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitation -okhttp3.internal.platform.Platform: void connectSocket(java.net.Socket,java.net.InetSocketAddress,int) -wangdaye.com.geometricweather.R$layout: int container_main_first_card_header -androidx.preference.R$drawable: int abc_btn_check_material -androidx.preference.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -com.google.android.material.R$attr: int itemShapeAppearance -com.google.android.material.R$color: int design_bottom_navigation_shadow_color -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetBottom -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String from -com.bumptech.glide.integration.okhttp3.OkHttpGlideModule: OkHttpGlideModule() -com.google.android.material.R$style: int Theme_Design_Light_NoActionBar -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle valueOf(java.lang.String) -okhttp3.RealCall$AsyncCall: void executeOn(java.util.concurrent.ExecutorService) -com.google.android.material.button.MaterialButton: void setIconTintMode(android.graphics.PorterDuff$Mode) -okhttp3.ResponseBody$1: okhttp3.MediaType val$contentType -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startY -cyanogenmod.app.ThemeVersion: java.util.List getComponentVersions() -wangdaye.com.geometricweather.main.dialogs.LocationHelpDialog -okhttp3.internal.http2.Http2Codec: java.util.List http2HeadersList(okhttp3.Request) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator RECENTS_SHOW_SEARCH_BAR_VALIDATOR -androidx.constraintlayout.widget.ConstraintHelper: int[] getReferencedIds() -okhttp3.CookieJar$1: CookieJar$1() -androidx.lifecycle.Lifecycling: int REFLECTIVE_CALLBACK -com.google.android.material.R$dimen: int appcompat_dialog_background_inset -androidx.appcompat.resources.R$string: int status_bar_notification_info_overflow -okio.Buffer: okio.Timeout timeout() -cyanogenmod.profiles.AirplaneModeSettings: void processOverride(android.content.Context) -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder host(java.lang.String) -cyanogenmod.externalviews.ExternalView: java.util.LinkedList mQueue -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getTranslateX() -wangdaye.com.geometricweather.R$attr: int windowActionBarOverlay -com.google.android.material.R$style: int Base_Theme_MaterialComponents -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: long serialVersionUID -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogCenterButtons -com.google.android.material.R$attr: int errorContentDescription -wangdaye.com.geometricweather.R$styleable: int Chip_closeIcon -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -android.didikee.donate.R$color: int highlighted_text_material_dark -android.didikee.donate.R$styleable: int[] TextAppearance -androidx.drawerlayout.R$drawable: int notification_action_background -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object DONE -androidx.drawerlayout.R$id: int notification_background -androidx.appcompat.R$styleable: int TextAppearance_android_typeface -androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotationY -wangdaye.com.geometricweather.R$styleable: int Transform_android_translationZ -wangdaye.com.geometricweather.R$drawable: int ic_flower -okhttp3.internal.http2.Hpack$Reader: int dynamicTableIndex(int) -androidx.preference.R$styleable: int SwitchCompat_trackTintMode -cyanogenmod.externalviews.KeyguardExternalView: void performAction(java.lang.Runnable) -androidx.work.WorkerParameters -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_right_mtrl_light -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_day_selection -com.jaredrummler.android.colorpicker.R$styleable: int[] StateListDrawableItem -androidx.appcompat.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWeatherEnd(java.lang.String) -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorError -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -io.reactivex.internal.observers.LambdaObserver: LambdaObserver(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Consumer) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String value -androidx.viewpager2.R$attr: int fontProviderFetchStrategy -androidx.constraintlayout.widget.R$color: int tooltip_background_dark -androidx.appcompat.widget.SearchView$SearchAutoComplete: void setThreshold(int) -com.google.gson.stream.JsonReader: java.lang.String nextQuotedValue(char) -cyanogenmod.themes.ThemeManager$2$1: cyanogenmod.themes.ThemeManager$2 this$1 -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: ObservableRetryPredicate$RepeatObserver(io.reactivex.Observer,long,io.reactivex.functions.Predicate,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) -androidx.constraintlayout.widget.R$color: int primary_text_default_material_dark -com.bumptech.glide.R$styleable: int GradientColor_android_tileMode -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -android.didikee.donate.R$id: int titleDividerNoCustom -wangdaye.com.geometricweather.R$drawable: int clock_minute_dark -androidx.lifecycle.ReportFragment: androidx.lifecycle.ReportFragment get(android.app.Activity) -com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_Dialog -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float icePrecipitationProbability -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_switchTextOff -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearTodayStyle -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityPaused(android.app.Activity) -androidx.vectordrawable.R$string -okhttp3.internal.http2.Http2Reader$Handler: void windowUpdate(int,long) -androidx.constraintlayout.widget.R$styleable: int View_paddingEnd -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_ON -okio.Buffer: okio.Buffer$UnsafeCursor readAndWriteUnsafe() -androidx.core.R$id: int text2 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_android_windowAnimationStyle -androidx.lifecycle.ViewModelProvider$NewInstanceFactory: ViewModelProvider$NewInstanceFactory() -wangdaye.com.geometricweather.R$attr: int counterTextColor -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_padding_start_material -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -cyanogenmod.app.suggest.ApplicationSuggestion$1: java.lang.Object createFromParcel(android.os.Parcel) -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$attr: int listChoiceBackgroundIndicator -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String LongPhrase -com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar_Small -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm25() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_bias -okhttp3.internal.connection.RealConnection: int allocationLimit -androidx.transition.ChangeBounds$7: androidx.transition.ChangeBounds$ViewBounds mViewBounds -androidx.appcompat.R$dimen: int abc_search_view_preferred_height -androidx.viewpager.R$id: int async -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeMinTextSize -com.google.android.material.R$dimen: int design_bottom_navigation_margin -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date getUpdateDate() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Subhead -androidx.constraintlayout.widget.R$styleable: int ActionBar_subtitleTextStyle -wangdaye.com.geometricweather.R$drawable: int shortcuts_refresh_foreground -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource) -androidx.activity.R$styleable: int FontFamily_fontProviderCerts -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias -wangdaye.com.geometricweather.db.entities.AlertEntity: long time -retrofit2.SkipCallbackExecutorImpl: SkipCallbackExecutorImpl() -cyanogenmod.app.ProfileGroup: void getXmlString(java.lang.StringBuilder,android.content.Context) -androidx.appcompat.resources.R$color -com.google.android.material.slider.BaseSlider: void setEnabled(boolean) -com.google.android.material.R$attr: int floatingActionButtonStyle -cyanogenmod.app.PartnerInterface: java.lang.String TAG -james.adaptiveicon.R$styleable: int MenuGroup_android_enabled -com.google.android.material.R$string: R$string() -james.adaptiveicon.R$drawable: int abc_scrubber_control_off_mtrl_alpha -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarPopupTheme -wangdaye.com.geometricweather.background.receiver.widget.AbstractWidgetProvider: AbstractWidgetProvider() -wangdaye.com.geometricweather.R$color: int design_default_color_primary -com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyleSmall -com.google.android.material.R$dimen: int abc_dialog_fixed_width_minor -androidx.preference.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean) -androidx.loader.R$color: int notification_icon_bg_color -com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_padding_horizontal_material -com.bumptech.glide.R$styleable: int GradientColorItem_android_color -com.google.android.material.chip.Chip: void setSingleLine(boolean) -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_localTimeText -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogStyle -androidx.lifecycle.extensions.R$anim: R$anim() -android.didikee.donate.R$styleable: int AppCompatTextView_drawableTopCompat -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_prompt -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_initialExpandedChildrenCount -cyanogenmod.themes.IThemeService$Stub$Proxy -com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonCompat -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIcon -androidx.preference.R$id: int textSpacerNoTitle -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_disableDependentsState -androidx.hilt.work.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX() -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableRightCompat -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitationDuration -wangdaye.com.geometricweather.R$id: int tabMode -james.adaptiveicon.R$styleable: int MenuView_android_headerBackground -android.didikee.donate.R$color: int dim_foreground_disabled_material_dark -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: java.util.List coordinates -android.support.v4.os.ResultReceiver: void send(int,android.os.Bundle) -wangdaye.com.geometricweather.R$id: int notification_multi_city_text_1 -io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer,io.reactivex.functions.Action) -cyanogenmod.themes.IThemeChangeListener$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setUrl(java.lang.String) -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.google.android.material.R$attr: int placeholderTextColor -wangdaye.com.geometricweather.R$id: int parent_matrix -androidx.cardview.R$styleable: int CardView_cardMaxElevation -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Light -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void dispose() -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sunrise_sunset -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_min_width -cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(android.os.Parcel,cyanogenmod.themes.ThemeChangeRequest$1) -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgressColor(int) -okio.BufferedSink: okio.BufferedSink write(byte[]) -com.xw.repo.bubbleseekbar.R$attr: int alphabeticModifiers -okhttp3.logging.LoggingEventListener: void dnsStart(okhttp3.Call,java.lang.String) -com.google.android.material.R$attr: int chipCornerRadius -android.didikee.donate.R$attr: int tickMark -okio.Segment: int SIZE -wangdaye.com.geometricweather.R$attr: int tabRippleColor -okhttp3.Call$Factory: okhttp3.Call newCall(okhttp3.Request) -com.jaredrummler.android.colorpicker.ColorPreferenceCompat: ColorPreferenceCompat(android.content.Context,android.util.AttributeSet) -cyanogenmod.app.PartnerInterface: void shutdownDevice() -okhttp3.Callback: void onFailure(okhttp3.Call,java.io.IOException) -cyanogenmod.app.IPartnerInterface: void shutdown() -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: void run() -io.reactivex.internal.util.ExceptionHelper$Termination -wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_light -com.google.android.material.R$color: int design_error -okhttp3.OkHttpClient$1: void setCache(okhttp3.OkHttpClient$Builder,okhttp3.internal.cache.InternalCache) -com.google.android.material.R$styleable: int Constraint_transitionPathRotate -wangdaye.com.geometricweather.R$id: int easeIn -com.google.android.material.slider.Slider: int getThumbRadius() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_26 -okio.DeflaterSink: boolean closed -androidx.vectordrawable.animated.R$styleable: int[] FontFamilyFont -com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorSize() -com.google.android.material.tabs.TabLayout: void setTabTextColors(android.content.res.ColorStateList) -androidx.hilt.lifecycle.R$dimen: int notification_small_icon_size_as_large -androidx.fragment.R$styleable: int FontFamily_fontProviderFetchTimeout -com.google.android.material.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STYLE_PREVIEW -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_SHOW_WEATHER -wangdaye.com.geometricweather.R$styleable: int ActionBar_divider -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: void onFinishedProcessing(java.lang.String) -wangdaye.com.geometricweather.R$attr: int homeLayout -com.google.android.material.R$id: int action_bar_activity_content -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Body1 -wangdaye.com.geometricweather.R$color: int weather_source_caiyun -cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener -com.google.android.material.R$styleable: int MaterialButton_android_insetLeft -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties -wangdaye.com.geometricweather.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri APPLIED_URI -com.google.android.material.R$styleable: int Chip_hideMotionSpec -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDefaultSmsSub(int) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Spinner_Underlined -okhttp3.internal.http2.Http2Connection: java.lang.String hostname -com.google.android.material.R$styleable: int KeyPosition_percentWidth -androidx.vectordrawable.R$attr: int fontProviderPackage -androidx.dynamicanimation.R$id: int notification_main_column_container -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Light -com.google.android.material.timepicker.TimePickerView: void setOnDoubleTapListener(com.google.android.material.timepicker.TimePickerView$OnDoubleTapListener) -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button -okhttp3.internal.http1.Http1Codec$ChunkedSink: Http1Codec$ChunkedSink(okhttp3.internal.http1.Http1Codec) -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation valueOf(java.lang.String) -cyanogenmod.themes.ThemeManager$1$2: boolean val$isSuccess -okhttp3.internal.http2.Huffman$Node: Huffman$Node(int,int) -com.google.android.material.slider.BaseSlider: void setValueFrom(float) -cyanogenmod.externalviews.KeyguardExternalView$11: cyanogenmod.externalviews.KeyguardExternalView this$0 -james.adaptiveicon.R$attr: int switchMinWidth -com.xw.repo.bubbleseekbar.R$anim: int abc_popup_enter -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconTintMode -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String MINUTES -wangdaye.com.geometricweather.R$string: int feedback_updated_in_background -okio.RealBufferedSource: long indexOf(byte,long) -android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -okhttp3.internal.ws.RealWebSocket: long queueSize -wangdaye.com.geometricweather.background.receiver.widget.AbstractWidgetProvider -cyanogenmod.app.Profile: void setConditionalType() -com.google.android.material.R$styleable: int KeyTimeCycle_curveFit -wangdaye.com.geometricweather.R$attr: int closeIconTint -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_fontVariationSettings -androidx.cardview.R$styleable: int CardView_contentPaddingLeft -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleGravity -cyanogenmod.app.ProfileGroup: java.lang.String TAG -androidx.hilt.R$style: R$style() -com.turingtechnologies.materialscrollbar.R$color: int material_grey_600 -androidx.core.R$id: int accessibility_custom_action_9 -androidx.hilt.R$id: int right_side -wangdaye.com.geometricweather.R$attr: int cpv_colorPresets -androidx.constraintlayout.widget.R$drawable: int abc_edit_text_material -com.google.android.material.R$styleable: int ActionBar_contentInsetLeft -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.legacy.coreutils.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String uvIndex -wangdaye.com.geometricweather.R$string: int widget_trend_hourly -cyanogenmod.externalviews.KeyguardExternalView$7: cyanogenmod.externalviews.KeyguardExternalView this$0 -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endColor -james.adaptiveicon.R$attr: int titleMargin -androidx.legacy.coreutils.R$dimen: int notification_right_icon_size -okhttp3.internal.http2.Http2Stream -okio.RealBufferedSource: int read(java.nio.ByteBuffer) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: int getStatus() -com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_text_color -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX() -androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_large_material -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: long dt -com.google.android.material.R$styleable: int AppBarLayout_liftOnScrollTargetViewId -okhttp3.internal.io.FileSystem$1: boolean exists(java.io.File) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_config_prefDialogWidth -androidx.lifecycle.MediatorLiveData: void removeSource(androidx.lifecycle.LiveData) -androidx.appcompat.R$id: int decor_content_parent -androidx.loader.R$dimen: int notification_action_text_size -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_listItemLayout -wangdaye.com.geometricweather.R$string: int settings_notification_hide_big_view_on -wangdaye.com.geometricweather.R$dimen: int material_clock_number_text_size -retrofit2.adapter.rxjava2.Result: retrofit2.adapter.rxjava2.Result response(retrofit2.Response) -androidx.hilt.R$attr -io.reactivex.Observable: io.reactivex.Observable hide() -wangdaye.com.geometricweather.R$drawable: int selectable_item_background -com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_Material -cyanogenmod.profiles.ConnectionSettings: int mConnectionId -io.reactivex.internal.util.HashMapSupplier -okhttp3.Request$Builder: okhttp3.Request$Builder header(java.lang.String,java.lang.String) -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_6 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_visibility -com.google.android.material.R$layout: int abc_expanded_menu_layout -androidx.constraintlayout.widget.R$styleable: int GradientColorItem_android_offset -androidx.lifecycle.LifecycleOwner: androidx.lifecycle.Lifecycle getLifecycle() -wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_xml -android.didikee.donate.R$id: int parentPanel -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void dispose() -com.google.gson.internal.LinkedTreeMap: java.util.Set entrySet() -wangdaye.com.geometricweather.R$styleable: int Insets_paddingLeftSystemWindowInsets -com.turingtechnologies.materialscrollbar.Indicator: void setTextColor(int) -wangdaye.com.geometricweather.common.basic.models.weather.History: long time -com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context,android.util.AttributeSet) -cyanogenmod.weather.WeatherInfo: double getTemperature() -cyanogenmod.weather.WeatherLocation: java.lang.String mKey -wangdaye.com.geometricweather.R$attr: int msb_barColor -com.google.android.material.R$styleable: int Chip_chipStrokeColor -james.adaptiveicon.R$styleable: int SearchView_searchHintIcon -androidx.appcompat.widget.Toolbar: int getContentInsetEnd() -android.didikee.donate.R$layout: int abc_action_mode_close_item_material -wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonTintMode -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeWetBulbTemperature() -android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -okhttp3.EventListener: void responseHeadersStart(okhttp3.Call) -wangdaye.com.geometricweather.R$drawable: int notif_temp_67 -com.google.android.material.R$id: int dragEnd -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams mParams -android.didikee.donate.R$style: int Platform_Widget_AppCompat_Spinner -com.turingtechnologies.materialscrollbar.R$attr: int homeAsUpIndicator -com.jaredrummler.android.colorpicker.R$attr: int layout_behavior -io.reactivex.exceptions.CompositeException: java.lang.Throwable getCause() -james.adaptiveicon.R$integer: int config_tooltipAnimTime -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_thumb_text -com.google.android.material.R$styleable: int[] TabItem -com.turingtechnologies.materialscrollbar.R$attr: int textAllCaps -android.didikee.donate.R$styleable: int SwitchCompat_switchPadding -androidx.appcompat.R$bool: int abc_action_bar_embed_tabs -androidx.cardview.R$styleable: int CardView_contentPaddingBottom -android.didikee.donate.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -com.jaredrummler.android.colorpicker.R$attr: int paddingStart -wangdaye.com.geometricweather.R$style: int large_title_text -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: java.lang.String English -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature -okhttp3.internal.http2.PushObserver: boolean onData(int,okio.BufferedSource,int,boolean) -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event BACKGROUND_UPDATE -androidx.fragment.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.R$attr: int key -androidx.preference.R$layout: int custom_dialog -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_BottomRightCut -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar -com.jaredrummler.android.colorpicker.R$id: int src_over -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_bias -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text -com.google.android.material.R$attr: int behavior_fitToContents -cyanogenmod.profiles.RingModeSettings: int describeContents() -com.google.android.material.R$color: int primary_dark_material_dark -wangdaye.com.geometricweather.R$string: int geometric_weather -wangdaye.com.geometricweather.background.polling.work.worker.AsyncUpdateWorker -android.didikee.donate.R$dimen: int disabled_alpha_material_dark -com.google.android.material.R$styleable: int AppCompatTextView_drawableTint -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul12H -com.jaredrummler.android.colorpicker.R$id: int search_button -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -cyanogenmod.weather.CMWeatherManager: java.util.Map mWeatherUpdateRequestListeners -wangdaye.com.geometricweather.R$id: int decor_content_parent -wangdaye.com.geometricweather.R$array: int weather_sources -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUpdateTime(long) -okio.ByteString: okio.ByteString encodeString(java.lang.String,java.nio.charset.Charset) -com.google.android.material.R$dimen: int abc_text_size_button_material -retrofit2.RequestFactory$Builder: java.lang.String httpMethod -androidx.viewpager.widget.PagerTabStrip: void setBackgroundColor(int) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: ObservableWindow$WindowExactObserver(io.reactivex.Observer,long,int) -okhttp3.internal.ws.RealWebSocket: void checkResponse(okhttp3.Response) -com.google.android.material.R$attr: int colorOnError -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context) -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -androidx.activity.R$id: int tag_accessibility_actions -okhttp3.internal.platform.OptionalMethod: java.lang.String methodName -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_switchTextOff -okhttp3.internal.http.HttpHeaders: int skipUntil(java.lang.String,int,java.lang.String) -retrofit2.Retrofit: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[]) -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerValue(boolean,java.lang.Object) -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.R$style: int Preference_PreferenceScreen -okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory sslSocketFactory -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean requireAdaptiveBacklightForSunlightEnhancement() -com.xw.repo.bubbleseekbar.R$layout: int abc_search_view -androidx.lifecycle.ProcessLifecycleOwnerInitializer: int delete(android.net.Uri,java.lang.String,java.lang.String[]) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void cancel() -android.didikee.donate.R$styleable: int DrawerArrowToggle_arrowHeadLength -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_tileMode -cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: WeatherContract$WeatherColumns$WindSpeedUnit() -androidx.customview.R$dimen: int notification_big_circle_margin -org.greenrobot.greendao.AbstractDao: void deleteByKey(java.lang.Object) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf -wangdaye.com.geometricweather.R$id: int container_main_sun_moon -androidx.appcompat.R$style: int Widget_AppCompat_ProgressBar -androidx.hilt.work.R$anim: int fragment_fast_out_extra_slow_in -com.google.android.material.chip.ChipGroup: void setChipSpacingHorizontal(int) -org.greenrobot.greendao.AbstractDao: long count() -retrofit2.OkHttpCall$1: void callFailure(java.lang.Throwable) -androidx.constraintlayout.widget.R$attr: int drawerArrowStyle -io.reactivex.internal.subscriptions.EmptySubscription: void complete(org.reactivestreams.Subscriber) -androidx.preference.R$color: int material_grey_900 -androidx.constraintlayout.widget.R$styleable: int[] Toolbar -com.xw.repo.bubbleseekbar.R$anim: int abc_fade_out -wangdaye.com.geometricweather.R$color: int design_default_color_error -wangdaye.com.geometricweather.R$color: int notification_background_rootLight -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getShortDate(android.content.Context) -com.turingtechnologies.materialscrollbar.R$layout: int notification_action_tombstone -androidx.preference.R$styleable: int ActionMenuItemView_android_minWidth -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_showText -com.google.android.material.R$styleable: int MaterialCalendar_rangeFillColor -com.google.android.material.button.MaterialButton: void setElevation(float) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -wangdaye.com.geometricweather.R$string: int thunderstorm -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum() -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerNext() -okhttp3.HttpUrl: void canonicalize(okio.Buffer,java.lang.String,int,int,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) -androidx.appcompat.widget.FitWindowsLinearLayout -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_bias -retrofit2.Retrofit: retrofit2.CallAdapter callAdapter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) -android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -com.google.android.material.R$string: int abc_capital_on -com.google.android.material.R$styleable: int Chip_iconEndPadding -james.adaptiveicon.R$styleable: int ActivityChooserView_initialActivityCount -wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_range_end -okio.BufferedSink: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -androidx.core.R$attr: int fontWeight -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: long serialVersionUID -androidx.coordinatorlayout.R$id: int accessibility_custom_action_7 -com.xw.repo.bubbleseekbar.R$attr: int paddingEnd -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView_Menu -cyanogenmod.app.IPartnerInterface: void reboot() -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startX -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_baselineAligned -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: void setValue(java.util.List) -cyanogenmod.app.Profile$1 -com.turingtechnologies.materialscrollbar.R$id: int end -androidx.transition.R$id: int actions -androidx.constraintlayout.widget.R$attr: int popupTheme -com.turingtechnologies.materialscrollbar.R$id: int design_navigation_view -com.google.android.material.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: int index -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void schedule() -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: int mConditionCode -james.adaptiveicon.R$styleable: int AppCompatTheme_activityChooserViewStyle -okhttp3.MultipartBody: okhttp3.MediaType contentType -androidx.appcompat.R$dimen: int disabled_alpha_material_dark -androidx.appcompat.widget.Toolbar -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constrainedHeight -com.google.android.material.R$dimen: int mtrl_badge_horizontal_edge_offset -retrofit2.OkHttpCall: OkHttpCall(retrofit2.RequestFactory,java.lang.Object[],okhttp3.Call$Factory,retrofit2.Converter) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setValue(java.util.List) -okhttp3.Address: Address(java.lang.String,int,okhttp3.Dns,javax.net.SocketFactory,javax.net.ssl.SSLSocketFactory,javax.net.ssl.HostnameVerifier,okhttp3.CertificatePinner,okhttp3.Authenticator,java.net.Proxy,java.util.List,java.util.List,java.net.ProxySelector) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_seekbar_track_progress_height_material -com.google.android.material.R$styleable: int Layout_layout_constraintTop_toTopOf -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Headline -okio.BufferedSink: okio.BufferedSink emitCompleteSegments() -wangdaye.com.geometricweather.R$color: int design_fab_shadow_mid_color -cyanogenmod.weather.RequestInfo: int mTempUnit -com.google.android.material.R$color: int material_on_surface_disabled -cyanogenmod.themes.ThemeChangeRequest: int describeContents() -wangdaye.com.geometricweather.R$id: int search_go_btn -wangdaye.com.geometricweather.R$layout: int dialog_animatable_icon -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean delayError -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String treeDescription -com.jaredrummler.android.colorpicker.R$string: int abc_activity_chooser_view_see_all -com.google.android.material.R$dimen: int notification_top_pad_large_text -android.didikee.donate.R$drawable: int abc_switch_track_mtrl_alpha -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_unregisterThemeProcessingListener -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTag -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void dispose() -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endX -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_material_dark -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf -wangdaye.com.geometricweather.common.basic.models.weather.Astro -androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.util.List value -androidx.customview.R$id: int notification_background -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Title -androidx.coordinatorlayout.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$styleable: int Motion_pathMotionArc -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_3 -androidx.core.R$styleable: int GradientColor_android_gradientRadius -androidx.appcompat.widget.ActionMenuView: ActionMenuView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$attr: int layout_constraintRight_toLeftOf -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -okhttp3.WebSocketListener: void onClosed(okhttp3.WebSocket,int,java.lang.String) -androidx.viewpager.R$dimen: int notification_large_icon_width -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -com.google.android.material.R$color: int primary_material_dark -androidx.preference.R$styleable: int FontFamily_fontProviderAuthority -androidx.constraintlayout.widget.R$attr: int dropDownListViewStyle -wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary_dark -okhttp3.internal.http2.Http2Connection: void writeSynReply(int,boolean,java.util.List) -wangdaye.com.geometricweather.R$string: int copy -androidx.activity.R$id: int tag_transition_group -com.google.android.material.R$id: int postLayout -androidx.activity.R$style: int Widget_Compat_NotificationActionText -cyanogenmod.weather.ICMWeatherManager$Stub: cyanogenmod.weather.ICMWeatherManager asInterface(android.os.IBinder) -com.google.gson.stream.JsonReader: void setLenient(boolean) -okhttp3.internal.connection.RealConnection: okio.BufferedSink sink -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: java.lang.String Unit -com.google.android.material.R$string: int material_minute_selection -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Time -com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_filled_box_default_background_color -androidx.constraintlayout.widget.R$layout: int notification_template_part_time -cyanogenmod.content.Intent: Intent() -cyanogenmod.externalviews.ExternalView: void onAttachedToWindow() -wangdaye.com.geometricweather.R$string: int material_timepicker_clock_mode_description -android.didikee.donate.R$dimen: int abc_text_size_menu_header_material -androidx.customview.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: MfRainResult$Position() -androidx.customview.R$styleable: int[] ColorStateListItem -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.common.basic.models.weather.Daily: float getHoursOfSun() -cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.IAppSuggestManager sImpl -okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.WebSocketReader reader -wangdaye.com.geometricweather.R$id: int star_2 -io.reactivex.internal.util.NotificationLite$SubscriptionNotification -com.google.android.material.transformation.TransformationChildLayout -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_disabled_z -james.adaptiveicon.R$color: int bright_foreground_disabled_material_dark -androidx.preference.R$styleable: int ActionBar_popupTheme -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -wangdaye.com.geometricweather.R$layout: int material_radial_view_group -james.adaptiveicon.R$attr: int searchIcon -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: ILiveLockScreenManagerProvider$Stub$Proxy(android.os.IBinder) -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startX -com.turingtechnologies.materialscrollbar.R$attr: int fabCradleRoundedCornerRadius -androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -androidx.preference.R$styleable: int ActionBar_contentInsetLeft -james.adaptiveicon.R$id: int search_plate -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeFillColor -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String insee -cyanogenmod.providers.CMSettings$System: java.lang.String ZEN_PRIORITY_ALLOW_LIGHTS -androidx.preference.TwoStatePreference -wangdaye.com.geometricweather.R$dimen: int progress_view_size -androidx.core.R$styleable: int FontFamily_fontProviderFetchTimeout -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualObserver[] observers -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: IWeatherProviderService$Stub$Proxy(android.os.IBinder) -androidx.lifecycle.MutableLiveData: MutableLiveData() -com.jaredrummler.android.colorpicker.R$style: int PreferenceFragment_Material -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_expandedHintEnabled -wangdaye.com.geometricweather.R$string: int settings_notification_can_be_cleared_on -androidx.constraintlayout.widget.R$dimen: int abc_dialog_padding_material -okhttp3.internal.connection.RouteSelector: java.lang.String getHostString(java.net.InetSocketAddress) -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColorHint -androidx.appcompat.R$styleable: int Spinner_android_entries -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -com.google.android.material.R$drawable: int abc_list_divider_material -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function8) -cyanogenmod.weather.WeatherInfo: int getTemperatureUnit() -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_headerBackground -okio.Util: void sneakyThrow2(java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getTreeDescription() -androidx.preference.R$style -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context) -androidx.preference.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -okhttp3.internal.Util: int indexOf(java.util.Comparator,java.lang.String[],java.lang.String) -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplace -androidx.hilt.R$id: int time -com.google.android.material.R$style: int TextAppearance_Design_Hint -androidx.preference.R$attr: int windowActionModeOverlay -com.xw.repo.bubbleseekbar.R$anim: int abc_tooltip_enter -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onNext(java.lang.Object) -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String getValue() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTint -androidx.preference.R$attr: int selectable -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type getRawType() -okio.RealBufferedSink$1: void write(byte[],int,int) -com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Badge -androidx.preference.R$id: int alertTitle -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColorLink -com.google.android.material.chip.Chip: void setCheckedIconVisible(boolean) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonStyle -com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Text -okhttp3.internal.cache.DiskLruCache: void delete() -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type[] getUpperBounds() -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder protocols(java.util.List) -org.greenrobot.greendao.AbstractDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -okhttp3.Dispatcher: void finished(okhttp3.RealCall$AsyncCall) -androidx.cardview.R$style -com.google.android.material.R$attr: int itemIconPadding -james.adaptiveicon.R$attr: int checkboxStyle -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: long serialVersionUID -androidx.preference.R$style: int Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setDefense(java.util.List) -com.google.android.material.R$attr: int closeIconEndPadding -io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int) -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer degreeDayTemperature -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getTotal() -androidx.transition.R$layout -com.google.android.material.slider.Slider: void setEnabled(boolean) -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Primary -io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper valueOf(java.lang.String) -com.jaredrummler.android.colorpicker.R$string: int abc_menu_ctrl_shortcut_label -com.google.android.material.R$id: int accessibility_custom_action_18 -org.greenrobot.greendao.AbstractDao: java.lang.Object loadByRowId(long) -androidx.constraintlayout.helper.widget.Flow: void setPadding(int) -com.google.android.material.R$style: int TextAppearance_AppCompat_Headline -retrofit2.ParameterHandler$Query: boolean encoded -androidx.recyclerview.R$styleable: int[] ColorStateListItem -androidx.lifecycle.MediatorLiveData: MediatorLiveData() -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_3 -androidx.appcompat.view.menu.MenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String advice -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: io.reactivex.functions.Consumer onDrop -wangdaye.com.geometricweather.R$attr: int tabIndicatorHeight -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_track_size -james.adaptiveicon.R$id: int uniform -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView -com.google.android.material.R$dimen: int abc_panel_menu_list_width -wangdaye.com.geometricweather.R$attr: int seekBarStyle -wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay_v14 -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area -androidx.fragment.R$styleable: int FontFamily_fontProviderCerts -james.adaptiveicon.R$styleable: int MenuItem_numericModifiers -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackInactiveTintList() -okhttp3.internal.cache2.Relay$RelaySource: okio.Timeout timeout -cyanogenmod.alarmclock.CyanogenModAlarmClock: android.content.Intent createAlarmIntent(android.content.Context) -com.google.android.material.R$attr: int materialCalendarHeaderToggleButton -androidx.appcompat.widget.AppCompatRadioButton: int getCompoundPaddingLeft() -androidx.constraintlayout.widget.R$styleable: int Constraint_android_minHeight -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA -cyanogenmod.externalviews.IExternalViewProvider: void onAttach(android.os.IBinder) -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String value -wangdaye.com.geometricweather.R$drawable: int flag_tr -okio.Buffer: okio.Buffer writeString(java.lang.String,int,int,java.nio.charset.Charset) -io.reactivex.internal.observers.BasicIntQueueDisposable: java.lang.Object poll() -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability -retrofit2.ParameterHandler$Tag -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean isEmpty() -wangdaye.com.geometricweather.R$styleable: int KeyPosition_sizePercent -androidx.constraintlayout.widget.R$dimen: int notification_main_column_padding_top -cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo mWeatherInfo -androidx.preference.R$styleable: int FontFamilyFont_fontVariationSettings -james.adaptiveicon.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatPressedTranslationZ() -org.greenrobot.greendao.AbstractDao: void delete(java.lang.Object) -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_statusBarScrim -com.google.android.material.R$styleable: int ViewStubCompat_android_layout -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$attr: int tooltipStyle -james.adaptiveicon.R$drawable: int abc_textfield_default_mtrl_alpha -androidx.preference.R$styleable: int StateListDrawable_android_enterFadeDuration -okhttp3.Cookie: boolean pathMatch(okhttp3.HttpUrl,java.lang.String) -wangdaye.com.geometricweather.R$attr: int navigationContentDescription -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme -com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected -androidx.appcompat.R$drawable: int abc_btn_radio_material -androidx.constraintlayout.widget.R$attr: int motionStagger -okhttp3.ResponseBody: ResponseBody() -wangdaye.com.geometricweather.R$array: int ui_style_values -androidx.appcompat.R$styleable: int AppCompatTheme_viewInflaterClass -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabBar -androidx.fragment.R$styleable: int FontFamilyFont_fontWeight -cyanogenmod.app.BaseLiveLockManagerService$1: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -com.jaredrummler.android.colorpicker.R$styleable: int Preference_iconSpaceReserved -androidx.preference.R$string: int abc_menu_delete_shortcut_label -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float thunderstormPrecipitationProbability -android.didikee.donate.R$styleable: int[] CompoundButton -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_bias -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isSubActive(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice -okio.Segment: byte[] data -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition valueOf(java.lang.String) -androidx.preference.R$styleable: int GradientColorItem_android_offset -com.google.android.material.R$styleable: int Constraint_layout_constraintTop_toTopOf -james.adaptiveicon.R$layout: int abc_action_mode_bar -android.didikee.donate.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -james.adaptiveicon.R$attr: int textAppearanceListItemSmall -com.google.android.material.chip.Chip: void setBackground(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_elevation -cyanogenmod.hardware.CMHardwareManager: int getVibratorMaxIntensity() -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_spinBars -wangdaye.com.geometricweather.common.basic.models.options.DarkMode -androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context,android.util.AttributeSet,int) -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dialog -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest build() -wangdaye.com.geometricweather.R$attr: int thumbTint -com.github.rahatarmanahmed.cpv.CircularProgressView$3: void onAnimationUpdate(android.animation.ValueAnimator) -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabInlineLabel -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type UV_INDEX -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display1 -androidx.appcompat.widget.SearchView: void setSubmitButtonEnabled(boolean) -okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) -wangdaye.com.geometricweather.R$string: int content_desc_wechat_payment_code -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.util.concurrent.atomic.AtomicBoolean listRead -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String value -wangdaye.com.geometricweather.R$dimen: int mtrl_card_corner_radius -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date modificationDate -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDefaultPhoneSub(int) -com.bumptech.glide.integration.okhttp.R$dimen: int compat_control_corner_material -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okhttp3.internal.http2.Http2Connection$5: void execute() -com.jaredrummler.android.colorpicker.R$id: int tag_transition_group -androidx.recyclerview.R$id: int async -androidx.appcompat.widget.ActionBarContainer: ActionBarContainer(android.content.Context) -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setIconResStart(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: double Value -android.didikee.donate.R$styleable: int SearchView_android_imeOptions -com.google.android.material.slider.RangeSlider: float getThumbElevation() -okhttp3.internal.http2.Http2Codec: okhttp3.Protocol protocol -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String LocalizedType -com.bumptech.glide.R$dimen: int compat_button_inset_vertical_material -cyanogenmod.app.CustomTile$ExpandedItem$1: cyanogenmod.app.CustomTile$ExpandedItem createFromParcel(android.os.Parcel) -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy KEEP -androidx.appcompat.resources.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: java.lang.String Unit -wangdaye.com.geometricweather.R$id: int none -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginEnd -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status IDLE -androidx.hilt.lifecycle.R$layout: int notification_template_icon_group -retrofit2.HttpServiceMethod$CallAdapted -com.bumptech.glide.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit MPS -cyanogenmod.themes.IThemeService: void removeUpdates(cyanogenmod.themes.IThemeChangeListener) -okhttp3.internal.http.RealInterceptorChain -androidx.preference.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String WidgetPhrase -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_width -wangdaye.com.geometricweather.R$layout: int material_timepicker_dialog -android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogCenterButtons -androidx.lifecycle.ProcessLifecycleOwner: void init(android.content.Context) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: AccuCurrentResult$Wind$Speed$Metric() -android.didikee.donate.R$styleable: int ViewBackgroundHelper_backgroundTint -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitationProbability() -androidx.appcompat.R$attr: int buttonTintMode -com.google.android.material.R$styleable: int AppCompatTheme_colorAccent -com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrimColor(int) -androidx.constraintlayout.widget.R$attr: int mock_showLabel -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: ObservableWithLatestFrom$WithLatestFromObserver(io.reactivex.Observer,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.R$attr: int currentPageIndicatorColor -wangdaye.com.geometricweather.R$layout: int test_design_checkbox -androidx.constraintlayout.widget.R$attr: int attributeName -wangdaye.com.geometricweather.R$string: int wind_2 -com.google.android.material.R$attr: int backgroundTintMode -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_min -okhttp3.internal.cache.DiskLruCache: int redundantOpCount -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: void onFailure(retrofit2.Call,java.lang.Throwable) -cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_MUTE -wangdaye.com.geometricweather.R$id: int widget_remote -androidx.preference.R$color: int primary_text_default_material_light -wangdaye.com.geometricweather.R$id: int item_weather_daily_pollen -com.turingtechnologies.materialscrollbar.R$interpolator -cyanogenmod.externalviews.ExternalViewProviderService: boolean DEBUG -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float totalPrecipitation -wangdaye.com.geometricweather.R$id: int textinput_suffix_text -androidx.constraintlayout.widget.R$id: int default_activity_button -androidx.constraintlayout.widget.R$attr: int saturation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setNewX(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintEnabled -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.lang.String getUnit() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void drain() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -com.google.android.material.slider.Slider: java.lang.CharSequence getAccessibilityClassName() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_menu_header_material -okio.HashingSource: okio.HashingSource md5(okio.Source) -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onBouncerShowing(boolean) -cyanogenmod.providers.CMSettings$System: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) -com.google.android.material.circularreveal.CircularRevealGridLayout: void setCircularRevealScrimColor(int) -android.didikee.donate.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -androidx.preference.R$attr: int order -wangdaye.com.geometricweather.R$id: int reservedNamedId -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Body1 -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicator(int) -androidx.transition.R$styleable: int FontFamily_fontProviderFetchStrategy -cyanogenmod.externalviews.KeyguardExternalView: java.lang.String CATEGORY_KEYGUARD_GRANT_PERMISSION -com.google.android.material.internal.CheckableImageButton$SavedState -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent ICON -wangdaye.com.geometricweather.R$style: int Preference_Category_Material -retrofit2.HttpServiceMethod$SuspendForBody -com.xw.repo.bubbleseekbar.R$id: int tag_unhandled_key_event_manager -androidx.preference.R$styleable: int MenuItem_numericModifiers -wangdaye.com.geometricweather.R$styleable: int MaterialButton_elevation -androidx.customview.R$dimen -androidx.hilt.lifecycle.R$layout: int notification_template_custom_big -android.didikee.donate.R$color: int bright_foreground_inverse_material_light -androidx.appcompat.R$color: int tooltip_background_light -wangdaye.com.geometricweather.R$dimen: int cpv_dialog_preview_height -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarDivider -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_INACTIVE -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: double Value -com.google.android.material.R$drawable: int ic_mtrl_chip_checked_circle -com.google.android.material.R$attr: int extendedFloatingActionButtonStyle -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void dispose() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CardView -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Small_Inverse -james.adaptiveicon.R$drawable: int abc_btn_default_mtrl_shape -androidx.viewpager2.R$styleable: int[] FontFamilyFont -com.turingtechnologies.materialscrollbar.R$attr: int titleTextAppearance -okhttp3.internal.http1.Http1Codec$FixedLengthSource: void close() -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean isEntityUpdateable() -com.google.android.material.R$styleable: int KeyCycle_waveShape -com.google.android.material.R$styleable: int MotionLayout_showPaths -androidx.constraintlayout.widget.R$attr: int alertDialogCenterButtons -androidx.activity.R$id: int accessibility_custom_action_25 -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder addNetworkInterceptor(okhttp3.Interceptor) -androidx.coordinatorlayout.R$id: int tag_transition_group -cyanogenmod.app.LiveLockScreenManager: void setLiveLockScreenEnabled(boolean) -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: double lat -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderCerts -cyanogenmod.platform.Manifest$permission: java.lang.String READ_THEMES -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Toolbar -com.turingtechnologies.materialscrollbar.R$attr: int alertDialogCenterButtons -androidx.appcompat.R$styleable: int AlertDialog_listItemLayout -com.jaredrummler.android.colorpicker.R$attr: int indeterminateProgressStyle -com.turingtechnologies.materialscrollbar.R$id: int action_bar_spinner -com.google.android.material.R$attr: int triggerId -okhttp3.internal.Util: int indexOfControlOrNonAscii(java.lang.String) -cyanogenmod.providers.CMSettings: CMSettings() -androidx.recyclerview.R$attr: int fastScrollEnabled -androidx.viewpager.R$styleable: int GradientColor_android_centerY -android.support.v4.app.INotificationSideChannel$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.viewpager2.adapter.FragmentStateAdapter$FragmentMaxLifecycleEnforcer$3 -androidx.swiperefreshlayout.R$string: R$string() -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableEndCompat -com.google.android.material.R$styleable -com.turingtechnologies.materialscrollbar.R$style: int CardView_Light -com.google.android.material.R$styleable: int ConstraintSet_android_minHeight -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Toolbar -james.adaptiveicon.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -androidx.hilt.work.R$id: int title -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onSearchRequested(android.view.SearchEvent) -com.google.android.material.R$string: int mtrl_picker_text_input_year_abbr -com.google.android.material.R$attr: int layout_constraintHeight_percent -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_fontFamily -okio.AsyncTimeout$2: long read(okio.Buffer,long) -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean done -androidx.hilt.work.R$color -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onError(java.lang.Throwable) -com.google.android.material.R$style: int Widget_AppCompat_Spinner_Underlined -android.didikee.donate.R$attr: int preserveIconSpacing -androidx.preference.R$layout: int select_dialog_multichoice_material -wangdaye.com.geometricweather.R$styleable: int TagView_unchecked_background_color -wangdaye.com.geometricweather.R$attr: R$attr() -cyanogenmod.app.Profile: Profile(java.lang.String,int,java.util.UUID) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange -james.adaptiveicon.AdaptiveIconView: android.graphics.Path getPath() -androidx.appcompat.R$attr: int defaultQueryHint -androidx.constraintlayout.widget.R$color -com.bumptech.glide.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$id: int autoComplete -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setTempMin(java.lang.String) -io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_toolbarStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm25Desc -okhttp3.Cache: int writeSuccessCount() -retrofit2.RequestBuilder: void canonicalizeForPath(okio.Buffer,java.lang.String,int,int,boolean) -wangdaye.com.geometricweather.R$drawable: int ic_check_circle_green -com.turingtechnologies.materialscrollbar.R$layout: int mtrl_layout_snackbar_include -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_thumb_radius -androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -cyanogenmod.externalviews.KeyguardExternalView: java.lang.String access$400() -okhttp3.MultipartBody: okhttp3.MultipartBody$Part part(int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSnowPrecipitation(java.lang.Float) -wangdaye.com.geometricweather.R$drawable: int design_snackbar_background -com.xw.repo.bubbleseekbar.R$id: int submenuarrow -wangdaye.com.geometricweather.R$color: int accent_material_dark -okhttp3.internal.http2.Http2: byte FLAG_PADDED -james.adaptiveicon.R$attr: int navigationContentDescription -cyanogenmod.app.IPartnerInterface -com.jaredrummler.android.colorpicker.R$id: int action_context_bar -com.xw.repo.bubbleseekbar.R$string: int abc_menu_shift_shortcut_label -androidx.vectordrawable.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm10() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSo2(java.lang.String) -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -androidx.preference.R$attr: int buttonBarStyle -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource REMOTE -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginStart -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Type -wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_ripple_color -androidx.constraintlayout.widget.R$styleable: int Constraint_android_transformPivotX -wangdaye.com.geometricweather.R$styleable: int BackgroundStyle_android_selectableItemBackground -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.wallpaper.LiveWallpaperConfigActivity: LiveWallpaperConfigActivity() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: int UnitType -wangdaye.com.geometricweather.remoteviews.config.Hilt_HourlyTrendWidgetConfigActivity -com.google.android.material.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintAnimationEnabled -wangdaye.com.geometricweather.R$drawable: int tooltip_frame_light -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginBottom -james.adaptiveicon.R$id: int notification_main_column_container -androidx.appcompat.R$style: int Base_AlertDialog_AppCompat -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_20 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter windDegreeConverter -com.google.android.material.R$styleable: int MaterialButtonToggleGroup_checkedButton -com.google.android.material.R$attr: int showText -cyanogenmod.app.ProfileManager: void addProfile(cyanogenmod.app.Profile) -cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile[] getProfiles() -wangdaye.com.geometricweather.R$styleable: int SearchView_submitBackground -okio.ByteString: okio.ByteString encodeUtf8(java.lang.String) -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline5 -com.turingtechnologies.materialscrollbar.R$color: int ripple_material_dark -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_creator -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_69 -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign -okhttp3.internal.cache.DiskLruCache$Snapshot: long[] lengths -com.github.rahatarmanahmed.cpv.CircularProgressView$3 -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String saint -james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_Switch -cyanogenmod.hardware.ThermalListenerCallback$State -okhttp3.Cache$2: java.lang.Object next() -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: boolean isDisposed() -androidx.core.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitation -james.adaptiveicon.R$attr: int buttonStyleSmall -wangdaye.com.geometricweather.R$array: int automatic_refresh_rate_values -android.didikee.donate.R$style: int Widget_AppCompat_Toolbar -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.google.android.material.bottomappbar.BottomAppBar: float getCradleVerticalOffset() -wangdaye.com.geometricweather.settings.dialogs.TimeSetterDialog -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService: ForegroundTodayForecastUpdateService() -retrofit2.Retrofit: java.util.Map serviceMethodCache -androidx.core.R$id: int time -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ImageButton -androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat -com.google.android.material.R$styleable: int Slider_thumbStrokeWidth -com.google.android.material.R$drawable: int abc_text_select_handle_right_mtrl_dark -wangdaye.com.geometricweather.R$string: int settings_summary_background_free_off -james.adaptiveicon.R$layout: int abc_action_menu_item_layout -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy BUFFER -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.functions.Consumer disposer -com.google.android.material.R$drawable: int mtrl_dropdown_arrow -james.adaptiveicon.R$id: int action_bar_subtitle -wangdaye.com.geometricweather.R$styleable: int[] MaterialCalendarItem -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabText -com.turingtechnologies.materialscrollbar.R$styleable: int[] LinearLayoutCompat_Layout -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription this$0 -wangdaye.com.geometricweather.R$id: int META -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase getMoonPhase() -wangdaye.com.geometricweather.R$style: int AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView_PrimarySurface -wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_android_src -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit valueOf(java.lang.String) -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.AlertEntity) -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemBackgroundRes() -com.turingtechnologies.materialscrollbar.R$attr: int boxBackgroundMode -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context,android.util.AttributeSet,int) -okhttp3.CertificatePinner: java.util.List findMatchingPins(java.lang.String) -com.google.android.material.R$styleable: int[] AppBarLayout_Layout -com.google.android.material.R$styleable: int Constraint_flow_horizontalBias -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_content_inset_with_nav -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon -cyanogenmod.weather.WeatherInfo$DayForecast: java.lang.String toString() -com.xw.repo.bubbleseekbar.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -wangdaye.com.geometricweather.R$styleable: int MotionLayout_showPaths -wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_item -androidx.preference.R$styleable: int MenuView_android_verticalDivider -com.google.android.material.R$attr: int layout_constraintBottom_creator -com.xw.repo.bubbleseekbar.R$drawable: int abc_spinner_mtrl_am_alpha -com.google.android.material.R$attr: int fabCradleVerticalOffset -okhttp3.internal.http2.Http2: byte FLAG_END_HEADERS -cyanogenmod.externalviews.KeyguardExternalView$7: void run() -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -james.adaptiveicon.R$attr: int fontProviderCerts -androidx.appcompat.R$dimen: int hint_pressed_alpha_material_light -android.didikee.donate.R$layout: int abc_search_view -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionBar -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_normal_pressed -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setId(java.lang.Long) -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_extendMotionSpec -androidx.constraintlayout.widget.R$styleable: int[] OnClick -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction Direction -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_inverse -com.google.android.material.R$attr: int tickColorInactive -wangdaye.com.geometricweather.R$array: int precipitation_unit_voices -retrofit2.RequestFactory$Builder: java.lang.reflect.Type[] parameterTypes -wangdaye.com.geometricweather.main.MainActivity: MainActivity() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dark -com.jaredrummler.android.colorpicker.R$id: int icon -androidx.lifecycle.ReportFragment: java.lang.String REPORT_FRAGMENT_TAG -com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.drawable.Drawable getContentScrim() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar_TextView -androidx.loader.R$id: int tag_unhandled_key_listeners -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.R$drawable: int flag_ja -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String description -james.adaptiveicon.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -android.didikee.donate.R$attr: int editTextStyle -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_titleTextStyle -cyanogenmod.app.BaseLiveLockManagerService: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status INITIALIZING -com.turingtechnologies.materialscrollbar.R$attr: int backgroundTint -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default -com.google.android.material.R$attr: int startIconCheckable -com.google.android.material.R$color: int design_dark_default_color_primary_variant -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorPrimaryDark -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -james.adaptiveicon.R$styleable: int LinearLayoutCompat_divider -androidx.lifecycle.LiveData: void assertMainThread(java.lang.String) -okhttp3.internal.cache.InternalCache: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getSupportedFeatures_0 -wangdaye.com.geometricweather.R$attr: int alertDialogButtonGroupStyle -androidx.constraintlayout.widget.R$styleable: int Motion_motionStagger -androidx.fragment.R$styleable: int GradientColor_android_startY -com.turingtechnologies.materialscrollbar.R$color: int secondary_text_default_material_dark -wangdaye.com.geometricweather.R$id: int item_about_link -okio.Buffer: okio.Buffer writeShortLe(int) -com.google.android.material.textfield.TextInputLayout: void setEndIconContentDescription(java.lang.CharSequence) -androidx.core.R$id: int accessibility_custom_action_26 -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$ExpandedStyle mExpandedStyle -com.xw.repo.BubbleSeekBar: com.xw.repo.BubbleSeekBar$OnProgressChangedListener getOnProgressChangedListener() -com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$styleable: int Chip_chipCornerRadius -com.turingtechnologies.materialscrollbar.R$attr: int closeIconSize -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$attr: int contentInsetEnd -com.google.android.material.R$id: int standard -io.reactivex.internal.util.ArrayListSupplier: java.util.concurrent.Callable asCallable() -james.adaptiveicon.R$id: int line1 -androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityCreated(android.app.Activity,android.os.Bundle) -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -com.google.android.material.R$dimen: int mtrl_btn_text_size -androidx.appcompat.widget.Toolbar: void setTitleTextColor(int) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_progressBarPadding -android.didikee.donate.R$color: int dim_foreground_material_light -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DailyForecast -com.google.android.material.R$style: int Base_Widget_AppCompat_ButtonBar -androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnCreate() -wangdaye.com.geometricweather.R$string: int summary_collapsed_preference_list -okhttp3.internal.tls.BasicCertificateChainCleaner: int hashCode() -com.google.android.material.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -androidx.activity.R$style: R$style() -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_body_2_material -cyanogenmod.app.ICMStatusBarManager$Stub: android.os.IBinder asBinder() -androidx.fragment.R$id: int accessibility_custom_action_5 -com.google.android.material.R$dimen: int mtrl_btn_padding_right -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean disposed -androidx.constraintlayout.helper.widget.Layer: void setTranslationX(float) -androidx.preference.R$id: int group_divider -com.google.android.material.R$attr: int fontFamily -com.google.android.material.textfield.TextInputEditText: java.lang.CharSequence getHint() -com.google.gson.internal.LinkedTreeMap: int size -com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrimResource(int) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: long serialVersionUID -androidx.constraintlayout.widget.R$styleable: int Variant_constraints -androidx.constraintlayout.utils.widget.ImageFilterButton: float getWarmth() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: boolean cancelled -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: AccuDailyResult$DailyForecasts$Day$Rain() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CUSTOM_VALUES_VALIDATOR -androidx.preference.PreferenceManager -androidx.appcompat.R$attr: int windowFixedWidthMinor -com.turingtechnologies.materialscrollbar.R$color: int abc_hint_foreground_material_dark -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetRight -okio.SegmentedByteString: okio.ByteString toAsciiLowercase() -com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuGroup -wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_vertical_2lines -com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_ContextMenu -com.xw.repo.bubbleseekbar.R$attr: int layout_anchorGravity -androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitleTextAppearance -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean isDisposed() -com.google.android.material.R$styleable: int Layout_layout_constraintRight_toLeftOf -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimsShown(boolean) -wangdaye.com.geometricweather.R$dimen: int tooltip_y_offset_non_touch -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endColor -com.bumptech.glide.R$styleable: int ColorStateListItem_android_alpha -com.google.android.material.R$attr: int layout_constraintVertical_bias -wangdaye.com.geometricweather.R$dimen: int notification_media_narrow_margin -androidx.appcompat.widget.DropDownListView: void setListSelectionHidden(boolean) -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarStyle -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupMenu_Overflow -cyanogenmod.profiles.ConnectionSettings$1: cyanogenmod.profiles.ConnectionSettings[] newArray(int) -androidx.constraintlayout.widget.R$integer: int status_bar_notification_info_maxnum -okhttp3.OkHttpClient$1: okhttp3.internal.connection.RealConnection get(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) -com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_icon -okhttp3.internal.platform.Platform: java.util.List alpnProtocolNames(java.util.List) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String WALLPAPER_URI -wangdaye.com.geometricweather.R$color: int material_on_surface_disabled -retrofit2.adapter.rxjava2.RxJava2CallAdapter -androidx.constraintlayout.widget.Constraints: androidx.constraintlayout.widget.ConstraintSet getConstraintSet() -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.functions.Function valueSelector -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue getOrCreateQueue() -wangdaye.com.geometricweather.common.basic.models.weather.Base: long updateTime -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_closeIcon -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_13 -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_showMotionSpec -androidx.recyclerview.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: int UnitType -com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_dotGap -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_Alert -com.google.android.material.R$styleable: int Tooltip_backgroundTint -androidx.constraintlayout.widget.ConstraintLayout: int getMinWidth() -cyanogenmod.app.ILiveLockScreenManager$Stub: java.lang.String DESCRIPTOR -james.adaptiveicon.R$styleable: int[] Toolbar -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_measureWithLargestChild -wangdaye.com.geometricweather.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean isDisposed() -io.reactivex.internal.observers.InnerQueuedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$dimen: int abc_text_size_large_material -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.preference.R$dimen: int abc_control_corner_material -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getO3Color(android.content.Context) -androidx.constraintlayout.widget.R$id: int forever -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: void setUnfold(boolean) -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat -wangdaye.com.geometricweather.R$attr: int actionBarTabStyle -com.bumptech.glide.Registry$NoSourceEncoderAvailableException -android.didikee.donate.R$attr: int colorPrimary -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: ObservableWindow$WindowSkipObserver(io.reactivex.Observer,long,long,int) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconEnabled -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetTop -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum Minimum -androidx.lifecycle.MediatorLiveData$Source: void unplug() -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_text_input_padding_top -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_CANCEL_REQUEST -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String co -com.bumptech.glide.R$integer: R$integer() -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: ChineseCityEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_subtitle -androidx.legacy.coreutils.R$dimen: int notification_content_margin_start -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: void onResponse(retrofit2.Call,retrofit2.Response) -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int sourceMode -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: java.lang.Object call() -com.google.android.material.R$attr: int contrast -androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription INSTANCE -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderPackage -okhttp3.internal.http1.Http1Codec: okhttp3.Response$Builder readResponseHeaders(boolean) -cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri getThumbailUri() -com.google.android.material.R$attr: int flow_lastHorizontalStyle -androidx.preference.R$integer -com.google.android.material.R$id: int row_index_key -androidx.preference.R$styleable: int AlertDialog_multiChoiceItemLayout -retrofit2.Callback: void onFailure(retrofit2.Call,java.lang.Throwable) -androidx.appcompat.R$drawable: int abc_ic_arrow_drop_right_black_24dp -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void innerError(io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver,java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingEnd -androidx.preference.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void schedule() -com.google.android.material.textfield.TextInputLayout: int getErrorCurrentTextColors() -androidx.constraintlayout.widget.R$styleable: int[] CompoundButton -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -okhttp3.internal.connection.RealConnection: java.net.Socket socket() -androidx.recyclerview.R$styleable: int[] FontFamily -okhttp3.Protocol: Protocol(java.lang.String,int,java.lang.String) -okhttp3.internal.http.UnrepeatableRequestBody -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: android.os.IBinder mRemote -okhttp3.internal.ws.WebSocketWriter: WebSocketWriter(boolean,okio.BufferedSink,java.util.Random) -androidx.preference.R$attr: int windowActionBarOverlay -com.jaredrummler.android.colorpicker.ColorPickerDialog -com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context,android.util.AttributeSet) -androidx.vectordrawable.R$attr -androidx.transition.R$dimen: int notification_media_narrow_margin -okio.Pipe: long maxBufferSize -com.google.android.material.R$attr: int labelStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind -retrofit2.ServiceMethod: java.lang.Object invoke(java.lang.Object[]) -androidx.lifecycle.ComputableLiveData: ComputableLiveData() -com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dark -androidx.hilt.work.R$layout -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWindDirection() -com.google.android.material.R$style: int Widget_AppCompat_DropDownItem_Spinner -com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_android_entries -com.google.android.material.R$dimen: int mtrl_btn_elevation -com.google.android.material.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -androidx.viewpager.R$id: int blocking -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event valueOf(java.lang.String) -okhttp3.Address: okhttp3.Dns dns -androidx.preference.R$styleable: int ActionBar_elevation -okhttp3.internal.cache2.Relay: void writeMetadata(long) -com.google.android.material.chip.Chip: void setCloseIconSizeResource(int) -androidx.preference.R$attr: int colorControlActivated -io.reactivex.internal.queue.SpscArrayQueue: boolean offer(java.lang.Object) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onDetach() -wangdaye.com.geometricweather.R$dimen: int standard_weather_icon_container_size -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver -androidx.core.R$id: int action_container -cyanogenmod.content.Intent: java.lang.String EXTRA_RECENTS_LONG_PRESS_RELEASE -com.google.android.material.R$anim: R$anim() -okhttp3.internal.http2.Http2Connection$Builder: java.lang.String hostname -okhttp3.internal.http1.Http1Codec: void detachTimeout(okio.ForwardingTimeout) -androidx.customview.R$layout: int notification_template_custom_big -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_framePosition -androidx.appcompat.resources.R$attr -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline6 -okhttp3.internal.http1.Http1Codec$FixedLengthSink: boolean closed -cyanogenmod.app.ICustomTileListener$Stub: android.os.IBinder asBinder() -okio.RealBufferedSource$1: int read() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getEn_US() -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemBackground -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTintMode -androidx.fragment.R$styleable: int[] ColorStateListItem -androidx.appcompat.widget.SwitchCompat: void setTextOff(java.lang.CharSequence) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Line2 -com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomSheetBehavior_Layout -wangdaye.com.geometricweather.R$drawable: int ic_building -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Medium -com.xw.repo.bubbleseekbar.R$layout: int abc_action_bar_title_item -com.google.android.material.R$attr: int borderWidth -com.google.android.material.R$layout: int mtrl_picker_text_input_date -wangdaye.com.geometricweather.R$drawable: int notif_temp_81 -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: java.lang.String styleId -com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getHandleOffset() -androidx.fragment.R$styleable: int FontFamilyFont_android_fontStyle -cyanogenmod.power.PerformanceManager: int[] POSSIBLE_POWER_PROFILES -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearStyle -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder asBinder() -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void drain() -james.adaptiveicon.R$color: R$color() -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customIntegerValue -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.lang.String type -androidx.coordinatorlayout.R$id: int accessibility_custom_action_20 -cyanogenmod.app.Profile: Profile(android.os.Parcel,cyanogenmod.app.Profile$1) -com.jaredrummler.android.colorpicker.R$attr: int actionBarPopupTheme -james.adaptiveicon.R$styleable: int ActionBar_contentInsetRight -com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_overlapAnchor -com.google.android.material.R$color: int material_grey_300 -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorTextColor -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int mainTextColorResId -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: void setDrawable(boolean) -com.google.android.material.R$color: int abc_hint_foreground_material_light -wangdaye.com.geometricweather.R$layout: int item_tag -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline1 -com.google.android.material.slider.Slider: float getValueTo() -com.google.android.material.R$dimen: int mtrl_badge_with_text_radius -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_icon_btn_padding_left -androidx.viewpager.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: java.lang.String Unit -james.adaptiveicon.R$styleable: int SwitchCompat_android_thumb -androidx.dynamicanimation.R$id: R$id() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.functions.Function mapper -com.google.android.material.chip.Chip: void setChipEndPaddingResource(int) -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.lang.Throwable error -androidx.viewpager2.R$attr: int fastScrollHorizontalThumbDrawable -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: MfEphemerisResult() -com.google.android.material.R$styleable: int Constraint_android_layout_marginEnd -com.jaredrummler.android.colorpicker.R$attr: int dividerPadding -com.turingtechnologies.materialscrollbar.R$color: int cardview_shadow_end_color -androidx.preference.R$style: int Widget_AppCompat_Button_Small -androidx.appcompat.R$attr: int drawableRightCompat -com.turingtechnologies.materialscrollbar.R$integer: int mtrl_chip_anim_duration -android.didikee.donate.R$drawable: int abc_ic_menu_overflow_material -com.google.android.material.R$styleable: int Tooltip_android_minWidth -io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Consumer onError -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets -com.turingtechnologies.materialscrollbar.R$dimen: int notification_main_column_padding_top -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalStyle -io.reactivex.internal.observers.ForEachWhileObserver: long serialVersionUID -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_stacked_max_height -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_title -okhttp3.internal.cache.DiskLruCache: long ANY_SEQUENCE_NUMBER -android.didikee.donate.R$id: int checkbox -okhttp3.internal.platform.AndroidPlatform: java.lang.Class sslParametersClass -okhttp3.internal.connection.StreamAllocation: okhttp3.Address address -androidx.lifecycle.DefaultLifecycleObserver: void onStart(androidx.lifecycle.LifecycleOwner) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_primary_mtrl_alpha -androidx.preference.R$attr: int positiveButtonText -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_switchTextOn -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: boolean isDisposed() -com.xw.repo.bubbleseekbar.R$attr: int actionBarSplitStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf -androidx.preference.ListPreference: ListPreference(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$drawable: int abc_text_cursor_material -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: int UnitType -com.google.android.material.R$attr: int iconTint -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void errorAll(io.reactivex.Observer) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String cityId -com.xw.repo.bubbleseekbar.R$string: int abc_shareactionprovider_share_with -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -wangdaye.com.geometricweather.R$animator: int mtrl_fab_transformation_sheet_expand_spec -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -com.google.android.material.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -okio.Buffer: long writeAll(okio.Source) -android.didikee.donate.R$id: int customPanel -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeDegreeDayTemperature -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onNext(java.lang.Object) -android.didikee.donate.R$styleable: int Toolbar_android_minHeight -okhttp3.internal.http1.Http1Codec$AbstractSource: long read(okio.Buffer,long) -androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy -androidx.constraintlayout.widget.R$attr: int actionModeSelectAllDrawable -com.github.rahatarmanahmed.cpv.R$styleable -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_shape_vertical_margin -wangdaye.com.geometricweather.R$id: int activity_widget_config_viewStyleContainer -wangdaye.com.geometricweather.R$color: int ripple_material_light -androidx.legacy.coreutils.R$styleable: int GradientColor_android_startColor -com.google.android.material.R$dimen: int mtrl_min_touch_target_size -androidx.preference.R$attr: int popupWindowStyle -androidx.appcompat.R$attr: int tooltipText -io.reactivex.Observable: void subscribeActual(io.reactivex.Observer) -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: CircularProgressViewAdapter() -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void setCancellable(io.reactivex.functions.Cancellable) -okhttp3.RealCall: RealCall(okhttp3.OkHttpClient,okhttp3.Request,boolean) -com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Display_TextInputEditText -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context) -androidx.constraintlayout.widget.R$id: int flip -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void dispose() -wangdaye.com.geometricweather.R$attr: int colorSecondary -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData this$0 -com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_height -android.didikee.donate.R$attr: int colorBackgroundFloating -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_gravity -cyanogenmod.util.ColorUtils: int[] SOLID_COLORS -com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.functions.Function bufferClose -androidx.constraintlayout.motion.widget.MotionLayout: float getProgress() -james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton -androidx.preference.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -okhttp3.Cache -com.google.android.material.R$attr: int singleLine -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig chineseCityEntityDaoConfig -james.adaptiveicon.R$anim: int abc_shrink_fade_out_from_bottom -androidx.loader.R$drawable: int notification_bg_normal_pressed -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -androidx.constraintlayout.widget.R$attr: int limitBoundsTo -okio.Buffer: okio.Buffer copyTo(java.io.OutputStream) -com.turingtechnologies.materialscrollbar.R$integer: R$integer() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties -androidx.hilt.R$dimen: int notification_top_pad -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -wangdaye.com.geometricweather.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -okhttp3.internal.http2.Http2Connection$PingRunnable: int payload2 -com.xw.repo.bubbleseekbar.R$id: int submit_area -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_chip_pressed_translation_z -androidx.appcompat.R$styleable: int StateListDrawable_android_exitFadeDuration -androidx.coordinatorlayout.R$style -okio.ByteString: boolean startsWith(okio.ByteString) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_77 -com.jaredrummler.android.colorpicker.R$id: int action_bar_root -androidx.recyclerview.widget.StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem: android.os.Parcelable$Creator CREATOR -androidx.preference.SwitchPreferenceCompat: SwitchPreferenceCompat(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.R$styleable: int Layout_android_layout_marginTop -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog_Alert -com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_id -android.didikee.donate.R$layout: int abc_screen_simple_overlay_action_mode -com.google.android.material.R$styleable: int NavigationView_itemShapeInsetBottom -androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModelProvider$NewInstanceFactory getInstance() -androidx.hilt.work.R$id: int chronometer -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintDimensionRatio -james.adaptiveicon.R$styleable: int AppCompatTheme_dividerVertical -androidx.lifecycle.LiveData: java.lang.Object mPendingData -com.google.android.material.slider.RangeSlider: float getStepSize() -androidx.coordinatorlayout.R$drawable: int notification_template_icon_low_bg -okhttp3.internal.http2.Hpack -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStrokeWidth -androidx.preference.R$styleable: int CheckBoxPreference_disableDependentsState -cyanogenmod.platform.Manifest$permission: Manifest$permission() -com.google.android.material.R$string: int mtrl_picker_text_input_month_abbr -com.google.android.material.R$color: int design_dark_default_color_background -com.google.android.material.R$dimen: int mtrl_navigation_item_horizontal_padding -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginRight -androidx.swiperefreshlayout.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String url -androidx.activity.R$id: int actions -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_enterFadeDuration -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1 -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_state_list_animator -androidx.appcompat.widget.ActivityChooserView: androidx.appcompat.widget.ActivityChooserModel getDataModel() -androidx.legacy.coreutils.R$drawable: int notification_bg_normal_pressed -com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextInputLayout -androidx.activity.R$drawable: int notification_icon_background -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabBar -okhttp3.Route: int hashCode() -cyanogenmod.hardware.ICMHardwareService: boolean setVibratorIntensity(int) -androidx.appcompat.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setWeather(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: AccuDailyResult$DailyForecasts$Day$WindGust$Direction() -com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context,android.util.AttributeSet,int) -com.xw.repo.bubbleseekbar.R$attr: int allowStacking -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPressure() -androidx.fragment.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.R$styleable: int[] CollapsingToolbarLayout_Layout -okio.RealBufferedSink: okio.BufferedSink emitCompleteSegments() -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: IWeatherProviderServiceClient$Stub() -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit valueOf(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor DARK -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState SUCCESS -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean writePersistentBytes(java.lang.String,byte[]) -androidx.constraintlayout.widget.R$id: int reverseSawtooth -com.jaredrummler.android.colorpicker.R$id: int expand_activities_button -okhttp3.internal.http2.Http2Connection: void writeWindowUpdateLater(int,long) -com.google.android.material.R$dimen -cyanogenmod.weatherservice.WeatherProviderService: java.lang.String SERVICE_META_DATA -wangdaye.com.geometricweather.R$styleable: int Slider_labelBehavior -okhttp3.internal.http2.Huffman$Node: okhttp3.internal.http2.Huffman$Node[] children -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView -com.google.android.material.R$styleable: int[] GradientColorItem -androidx.constraintlayout.widget.R$drawable: int abc_ab_share_pack_mtrl_alpha -com.google.android.material.R$attr: int cornerFamilyTopLeft -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function9) -cyanogenmod.providers.CMSettings$NameValueCache: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit[] values() -androidx.recyclerview.widget.RecyclerView: void removeOnChildAttachStateChangeListener(androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener) -com.turingtechnologies.materialscrollbar.R$anim: int abc_popup_enter -org.greenrobot.greendao.database.DatabaseOpenHelper: void onCreate(org.greenrobot.greendao.database.Database) -io.reactivex.subjects.PublishSubject$PublishDisposable: io.reactivex.subjects.PublishSubject parent -android.didikee.donate.R$attr: int contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$attr: int actionModeShareDrawable -androidx.constraintlayout.widget.R$styleable: int PropertySet_android_alpha -cyanogenmod.hardware.DisplayMode$1 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle -okio.SegmentedByteString: int[] directory -wangdaye.com.geometricweather.R$styleable: int KeyPosition_motionTarget -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.jaredrummler.android.colorpicker.R$layout: R$layout() -androidx.swiperefreshlayout.widget.SwipeRefreshLayout -retrofit2.RequestFactory$Builder: boolean isFormEncoded -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_NAVIGATION_BAR -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored -wangdaye.com.geometricweather.R$id: int ignoreRequest -com.xw.repo.bubbleseekbar.R$attr: int actionBarTabStyle -com.google.android.material.R$styleable: int KeyCycle_android_translationY -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_NoActionBar -com.bumptech.glide.R$integer -com.google.android.material.R$attr: int editTextStyle -androidx.appcompat.R$styleable: int AlertDialog_listLayout -androidx.vectordrawable.R$style: R$style() -wangdaye.com.geometricweather.R$styleable: int OnSwipe_moveWhenScrollAtTop -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: java.lang.String getNotificationStyleName(android.content.Context) -wangdaye.com.geometricweather.R$integer: int design_snackbar_text_max_lines -androidx.constraintlayout.widget.R$styleable: int Constraint_android_maxWidth -okhttp3.CertificatePinner: java.util.Set pins -okhttp3.internal.http2.Http2Connection: void setSettings(okhttp3.internal.http2.Settings) -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_submitBackground -androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable mLastDispatchRunnable -com.xw.repo.bubbleseekbar.R$attr: int contentDescription -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: float getDensity(float) -androidx.loader.R$string: R$string() -androidx.constraintlayout.widget.Group -cyanogenmod.providers.CMSettings$System: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) -cyanogenmod.providers.CMSettings$System$3: boolean validate(java.lang.String) -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startColor -okhttp3.internal.connection.RouteSelector$Selection: java.util.List getAll() -okhttp3.Cache$CacheResponseBody: java.lang.String contentType -androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context,android.util.AttributeSet) -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: ICMStatusBarManager$Stub$Proxy(android.os.IBinder) -com.turingtechnologies.materialscrollbar.R$id: int scrollIndicatorDown -wangdaye.com.geometricweather.R$drawable: int ic_time -androidx.preference.R$style: int Widget_AppCompat_ListView -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_maxProgress -wangdaye.com.geometricweather.R$layout: int item_trend_daily -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.RealConnection connection -androidx.work.R$drawable: int notification_tile_bg -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_summaryOn -com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_layout -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_max -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onFailed() -com.google.android.material.R$id: int action_bar_container -io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework -retrofit2.http.FormUrlEncoded -androidx.recyclerview.R$styleable: int RecyclerView_spanCount -androidx.lifecycle.LiveDataReactiveStreams: org.reactivestreams.Publisher toPublisher(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) -wangdaye.com.geometricweather.R$xml: int network_security_config -wangdaye.com.geometricweather.R$attr: int behavior_autoHide -wangdaye.com.geometricweather.R$id: int item_details -com.google.android.material.bottomappbar.BottomAppBar: void setCradleVerticalOffset(float) -androidx.lifecycle.MediatorLiveData: void onActive() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: AccuCurrentResult$Pressure() -androidx.hilt.work.R$drawable: int notification_bg_normal -androidx.constraintlayout.widget.R$id: int text2 -wangdaye.com.geometricweather.R$attr: int navigationViewStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Text -com.google.android.material.R$attr: int drawableRightCompat -cyanogenmod.providers.CMSettings$System: java.lang.String LIVE_DISPLAY_HINTED -wangdaye.com.geometricweather.remoteviews.config.Hilt_TextWidgetConfigActivity -androidx.fragment.R$anim: int fragment_close_exit -androidx.cardview.R$attr: int contentPaddingBottom -com.google.android.material.R$styleable: int FontFamilyFont_fontWeight -androidx.lifecycle.extensions.R$dimen: int notification_big_circle_margin -com.google.android.material.R$dimen: int mtrl_calendar_bottom_padding -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_headerBackground -androidx.preference.R$attr: int actionModePasteDrawable -wangdaye.com.geometricweather.R$attr: int buttonTintMode -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_alpha -cyanogenmod.profiles.AirplaneModeSettings: void setValue(int) -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: long remaining -wangdaye.com.geometricweather.R$drawable: int flag_br -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.drawerlayout.R$drawable: R$drawable() -james.adaptiveicon.R$color: int abc_background_cache_hint_selector_material_light -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: cyanogenmod.app.ThemeVersion$ComponentVersion getDeviceComponentVersion(cyanogenmod.app.ThemeComponent) -com.jaredrummler.android.colorpicker.R$color: int foreground_material_light -androidx.constraintlayout.widget.R$attr: int motionDebug -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float NitrogenMonoxide -org.greenrobot.greendao.AbstractDao: java.lang.String[] getAllColumns() -androidx.viewpager.widget.ViewPager: int getCurrentItem() -wangdaye.com.geometricweather.R$attr: int layout_anchorGravity -wangdaye.com.geometricweather.R$drawable: int weather_sleet_2 -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActivityChooserView -wangdaye.com.geometricweather.R$layout: int abc_popup_menu_header_item_layout -com.google.android.material.R$styleable: int ShapeAppearance_cornerSize -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationTextWithoutUnit(float) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderPackage -com.bumptech.glide.integration.okhttp.R$attr: int layout_anchor -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onScreenTurnedOn() -androidx.recyclerview.R$attr: int fontProviderQuery -io.reactivex.exceptions.UndeliverableException: UndeliverableException(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_ab_back_material -com.jaredrummler.android.colorpicker.R$id: int notification_main_column_container -com.google.android.material.bottomnavigation.BottomNavigationItemView: int getItemVisiblePosition() -androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_width_material -com.google.android.material.R$attr: int sliderStyle -io.reactivex.internal.subscribers.StrictSubscriber: void onComplete() -cyanogenmod.profiles.ConnectionSettings: void writeToParcel(android.os.Parcel,int) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Inverse -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long count -wangdaye.com.geometricweather.R$string: int mtrl_picker_a11y_next_month -androidx.constraintlayout.widget.R$attr: int thumbTintMode -okhttp3.internal.platform.OptionalMethod -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String zh_CN -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar_Indicator -androidx.hilt.work.R$dimen: int notification_small_icon_size_as_large -com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context) -okio.Buffer: java.io.OutputStream outputStream() -androidx.vectordrawable.animated.R$attr: int fontStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getBrandId() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd -androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet,int,int) -com.google.android.material.R$attr: int visibilityMode -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type PRECIPITATION -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Icon -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: androidx.lifecycle.Lifecycle$Event mEvent -okhttp3.Cookie: java.lang.String path() -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: AccuHourlyResult$Temperature() -androidx.appcompat.R$drawable: int abc_btn_radio_material_anim -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorSchemeResources(int[]) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer grassLevel -com.turingtechnologies.materialscrollbar.R$attr: int tabIconTintMode -com.google.android.material.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.R$styleable: int[] MaterialToolbar -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_popupTheme -cyanogenmod.app.CustomTileListenerService: void onListenerConnected() -wangdaye.com.geometricweather.R$bool: int workmanager_test_configuration -androidx.appcompat.R$style: int Widget_AppCompat_DropDownItem_Spinner -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay[] halfDays -androidx.vectordrawable.R$id: int action_container -wangdaye.com.geometricweather.R$attr: int closeIconStartPadding -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context,android.util.AttributeSet) -cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,android.content.ComponentName) -com.google.android.material.R$styleable: int Variant_region_widthLessThan -cyanogenmod.weather.WeatherInfo$DayForecast$1: WeatherInfo$DayForecast$1() -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode resolve(android.content.Context) -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent LOCKSCREEN -com.turingtechnologies.materialscrollbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabText -okhttp3.Handshake: okhttp3.TlsVersion tlsVersion() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeIndex(java.lang.Integer) -com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getSupportBackgroundTintList() -james.adaptiveicon.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Borderless -androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontStyle -cyanogenmod.profiles.ConnectionSettings$1: java.lang.Object[] newArray(int) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onComplete() -com.turingtechnologies.materialscrollbar.R$styleable: int View_android_theme -com.google.android.material.circularreveal.CircularRevealRelativeLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2 -androidx.work.R$id: int action_text -okhttp3.internal.tls.OkHostnameVerifier: OkHostnameVerifier() -com.google.android.material.R$attr: int minHideDelay -com.xw.repo.bubbleseekbar.R$layout: int abc_screen_content_include -com.google.gson.stream.JsonReader: int pos -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void run() -cyanogenmod.themes.ThemeManager -okhttp3.internal.Util: okio.ByteString UTF_16_LE_BOM -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconSize -androidx.swiperefreshlayout.R$id: int right_side -androidx.appcompat.R$style: int Platform_V25_AppCompat -james.adaptiveicon.R$styleable: int Toolbar_contentInsetLeft -androidx.preference.R$attr: int reverseLayout -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextBackground -androidx.preference.R$style: int ThemeOverlay_AppCompat_Light -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_ARRAY -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: boolean validate(java.lang.String) -androidx.appcompat.R$id: int action_mode_bar_stub -okhttp3.Cookie: int hashCode() -androidx.customview.R$drawable -androidx.appcompat.R$attr: int homeLayout -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_Underlined -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: int TRANSACTION_handles_0 -cyanogenmod.profiles.ConnectionSettings$BooleanState: int STATE_DISALED -cyanogenmod.weather.CMWeatherManager: void cancelRequest(int) -androidx.appcompat.R$id: int async -wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_title -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_elevation -com.jaredrummler.android.colorpicker.R$attr: int switchMinWidth -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -androidx.vectordrawable.animated.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String TypeID -android.didikee.donate.R$id: int radio -com.google.android.material.R$styleable: int KeyPosition_framePosition -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginTop -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmTp2 -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.weather.json.mf.MfRainResult -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean cancelled -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_liftOnScrollTargetViewId -wangdaye.com.geometricweather.R$drawable: int design_bottom_navigation_item_background -wangdaye.com.geometricweather.R$layout: int mtrl_picker_dialog -com.google.android.material.R$id: int action_mode_bar -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_color -androidx.appcompat.widget.Toolbar: void setTitleTextColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$layout: int preference_widget_seekbar -wangdaye.com.geometricweather.R$layout: int dialog_adaptive_icon -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String longitude -cyanogenmod.app.CMStatusBarManager: void removeTile(java.lang.String,int) -okhttp3.internal.cache.CacheInterceptor -com.google.android.material.R$attr: int boxCornerRadiusTopEnd -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_14 -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeManager getInstance(android.content.Context) -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onComplete() -androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -james.adaptiveicon.R$styleable: int AppCompatTheme_checkedTextViewStyle -wangdaye.com.geometricweather.R$attr: int iconTintMode -com.google.android.material.R$styleable: int AppCompatTheme_actionModeBackground -com.turingtechnologies.materialscrollbar.R$id: int time -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float rainPrecipitationProbability -wangdaye.com.geometricweather.R$styleable: int FitSystemBarNestedScrollView_sv_side -androidx.preference.R$styleable: int SwitchPreferenceCompat_disableDependentsState -androidx.fragment.app.FragmentTabHost: FragmentTabHost(android.content.Context) -cyanogenmod.hardware.CMHardwareManager: long getLtoDownloadInterval() -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_halo_radius -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtendMotionSpec(com.google.android.material.animation.MotionSpec) -retrofit2.KotlinExtensions$awaitResponse$2$2: kotlinx.coroutines.CancellableContinuation $continuation -androidx.drawerlayout.R$styleable: int FontFamilyFont_ttcIndex -okhttp3.internal.cache2.Relay$RelaySource: okhttp3.internal.cache2.Relay this$0 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric() -com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_inset_vertical_material -com.google.android.material.R$styleable: int NavigationView_itemIconPadding -android.didikee.donate.R$attr: int defaultQueryHint -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.Observer downstream -androidx.lifecycle.FullLifecycleObserver -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabTextStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -okio.Base64: byte[] URL_MAP -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_material_light -wangdaye.com.geometricweather.db.entities.LocationEntity: void setWeatherSource(wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource) -android.didikee.donate.R$string: int abc_search_hint -cyanogenmod.app.Profile$ProfileTrigger: int getType() -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getSuffixTextColor() -com.turingtechnologies.materialscrollbar.R$attr: int closeIconStartPadding -androidx.cardview.R$style: R$style() -com.jaredrummler.android.colorpicker.R$attr: int dialogIcon -wangdaye.com.geometricweather.R$style: int Preference_SwitchPreference_Material -androidx.fragment.app.FragmentContainerView -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.Lifecycle mLifecycle -cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$string: int fab_transformation_sheet_behavior -wangdaye.com.geometricweather.R$styleable: int[] CustomAttribute -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Title -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_left_mtrl_dark -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_color_selector -wangdaye.com.geometricweather.R$attr: int layout_goneMarginLeft -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierMargin -androidx.transition.R$style: int TextAppearance_Compat_Notification -com.google.android.material.R$styleable: int ActionBar_subtitleTextStyle -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation LEFT -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: AccuCurrentResult() -androidx.activity.R$styleable: int GradientColor_android_tileMode -com.google.android.material.R$dimen: int mtrl_btn_stroke_size -com.jaredrummler.android.colorpicker.R$drawable: int abc_switch_track_mtrl_alpha -retrofit2.ParameterHandler$Body: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void dispose() -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.util.AtomicThrowable errors -retrofit2.Response: retrofit2.Response success(java.lang.Object,okhttp3.Headers) -androidx.drawerlayout.R$styleable: int ColorStateListItem_android_alpha -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTheme -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String BOOT_ANIM_URI -androidx.vectordrawable.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade RealFeelTemperatureShade -com.google.android.material.R$styleable: int RecyclerView_stackFromEnd -cyanogenmod.app.ICMTelephonyManager: void setDataConnectionState(boolean) -cyanogenmod.weather.RequestInfo$1: cyanogenmod.weather.RequestInfo[] newArray(int) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.google.android.material.R$styleable: int AppCompatTheme_actionBarTheme -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.HourlyEntity) -com.google.android.material.R$layout: int mtrl_picker_header_fullscreen -com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: DaoMaster$DevOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory) -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -com.google.android.material.R$style: int Widget_AppCompat_RatingBar_Small -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: android.graphics.Rect getWindowInsets() -com.turingtechnologies.materialscrollbar.R$id: int transition_current_scene -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActivityChooserView -okhttp3.Response: okhttp3.Headers headers() -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -okhttp3.Cache$CacheRequestImpl$1: okhttp3.Cache$CacheRequestImpl this$1 -com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeRealFeelTemperature -wangdaye.com.geometricweather.R$array: int air_quality_co_unit_values -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_MinWidth -io.reactivex.internal.util.EmptyComponent: io.reactivex.Observer asObserver() -com.google.android.material.R$attr: int gestureInsetBottomIgnored -androidx.preference.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSmallPopupMenu -com.google.android.material.R$styleable: int[] ClockFaceView -wangdaye.com.geometricweather.R$integer: int cpv_default_progress -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhaseIcon -androidx.work.R$dimen: int notification_small_icon_background_padding -androidx.preference.R$styleable: int PreferenceTheme_preferenceScreenStyle -androidx.work.R$id: int accessibility_custom_action_16 -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.util.concurrent.atomic.AtomicLong requested -com.google.android.material.R$styleable: int StateListDrawable_android_dither -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_gapBetweenBars -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum -wangdaye.com.geometricweather.R$layout: int activity_weather_daily -com.jaredrummler.android.colorpicker.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -android.didikee.donate.R$anim: R$anim() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextColor -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removeAllEncodedQueryParameters(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String getValue() -com.google.android.material.chip.Chip: void setCloseIconHovered(boolean) -com.google.android.material.R$attr: int initialActivityCount -androidx.swiperefreshlayout.R$drawable: int notification_template_icon_bg -cyanogenmod.app.CMStatusBarManager -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type UNKNOWN -retrofit2.SkipCallbackExecutorImpl: java.lang.annotation.Annotation[] ensurePresent(java.lang.annotation.Annotation[]) -io.reactivex.Observable: io.reactivex.Observable timeInterval() -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -androidx.hilt.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetStart -com.google.android.material.R$id: int material_clock_display -androidx.preference.R$attr: int titleTextColor -androidx.appcompat.R$id: int tag_accessibility_clickable_spans -wangdaye.com.geometricweather.R$string: int settings_title_pressure_unit -androidx.recyclerview.widget.RecyclerView: void setChildDrawingOrderCallback(androidx.recyclerview.widget.RecyclerView$ChildDrawingOrderCallback) -androidx.preference.R$dimen: int abc_progress_bar_height_material -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.Observer downstream -james.adaptiveicon.R$drawable: int abc_vector_test -com.jaredrummler.android.colorpicker.R$id: int scrollIndicatorDown -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: ObservableWindowBoundary$WindowBoundaryMainObserver(io.reactivex.Observer,int) -androidx.preference.R$attr: int drawableEndCompat -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Name -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Inverse -androidx.constraintlayout.widget.R$styleable: int[] ActionMenuItemView -com.google.android.material.textfield.TextInputLayout: void setEndIconContentDescription(int) -okhttp3.internal.cache2.Relay: boolean isClosed() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: int UnitType -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_orderInCategory -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: java.lang.String English -james.adaptiveicon.R$color: int button_material_dark -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_barLength -com.google.android.material.R$dimen: int mtrl_extended_fab_bottom_padding -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String DATE_CREATED -android.didikee.donate.R$drawable: int abc_list_selector_holo_dark -androidx.preference.R$styleable: int View_paddingStart -androidx.vectordrawable.animated.R$dimen: int notification_top_pad -androidx.appcompat.R$attr: int colorPrimaryDark -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListPopupWindow -com.turingtechnologies.materialscrollbar.R$id: int normal -wangdaye.com.geometricweather.R$styleable: int Spinner_android_dropDownWidth -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicBoolean cancelled -cyanogenmod.externalviews.KeyguardExternalView$2: void collapseNotificationPanel() -wangdaye.com.geometricweather.R$styleable: int PopupWindow_android_popupAnimationStyle -androidx.work.R$id: int normal -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.internal.disposables.SequentialDisposable task -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_y_offset_non_touch -com.jaredrummler.android.colorpicker.R$style: int Base_V23_Theme_AppCompat_Light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setEn_US(java.lang.String) -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onComplete() -android.didikee.donate.R$styleable: int AppCompatTheme_homeAsUpIndicator -wangdaye.com.geometricweather.R$attr: int animationMode -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_buttonPanelSideLayout -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: io.reactivex.Observer downstream -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableEndCompat -androidx.preference.R$attr: int fontProviderQuery -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableStart -androidx.appcompat.R$styleable: int MenuItem_android_orderInCategory -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Selected -wangdaye.com.geometricweather.R$styleable: int[] ImageFilterView -androidx.preference.R$styleable: int Preference_android_enabled -androidx.appcompat.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -androidx.constraintlayout.widget.R$dimen: int compat_control_corner_material -androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationY -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String pubTime -cyanogenmod.app.CMTelephonyManager: CMTelephonyManager(android.content.Context) -okhttp3.MultipartBody$Part: okhttp3.Headers headers() -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.Scheduler scheduler -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getNo2Color(android.content.Context) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setPivotX(float) -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingTop -wangdaye.com.geometricweather.R$string: int abc_action_menu_overflow_description -james.adaptiveicon.R$styleable: int Toolbar_navigationIcon -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_min_width_minor -androidx.drawerlayout.R$layout: R$layout() -wangdaye.com.geometricweather.search.SearchActivity: SearchActivity() -androidx.preference.R$bool -androidx.appcompat.R$styleable: int FontFamily_fontProviderFetchTimeout -com.jaredrummler.android.colorpicker.R$attr: int font -androidx.hilt.work.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_change_size_collapse_motion_spec -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_1 -io.reactivex.Observable: io.reactivex.disposables.Disposable forEach(io.reactivex.functions.Consumer) -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: double lon -com.google.android.material.R$drawable: int abc_ic_star_half_black_36dp -androidx.constraintlayout.widget.R$styleable: int ButtonBarLayout_allowStacking -androidx.recyclerview.R$integer: R$integer() -android.didikee.donate.R$styleable: int AppCompatTheme_dropDownListViewStyle -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: wangdaye.com.geometricweather.location.services.LocationService$LocationCallback val$callback -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean profileExistsByName(java.lang.String) -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener mWindowAttachmentListener -androidx.appcompat.resources.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.R$drawable: int ic_weather -wangdaye.com.geometricweather.R$attr: int layout_behavior -okhttp3.HttpUrl: void namesAndValuesToQueryString(java.lang.StringBuilder,java.util.List) -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTextHelper -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_textOff -com.xw.repo.bubbleseekbar.R$color: int material_grey_900 -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState -com.google.android.material.R$drawable: int abc_cab_background_top_mtrl_alpha -androidx.constraintlayout.helper.widget.Flow: void setFirstVerticalBias(float) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_11 -cyanogenmod.hardware.CMHardwareManager: int getVibratorIntensity() -io.reactivex.exceptions.CompositeException: CompositeException(java.lang.Throwable[]) -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: java.lang.Throwable error -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_2 -androidx.preference.R$attr: int summaryOff -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogTitle -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.R$id: int dragRight -wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_left_black_24dp -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_tintMode -retrofit2.ParameterHandler$Tag: ParameterHandler$Tag(java.lang.Class) -com.google.android.material.R$attr: int behavior_overlapTop -cyanogenmod.providers.CMSettings$NameValueCache: long mValuesVersion -com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_EditTextPreference -com.google.android.material.slider.RangeSlider: void setThumbStrokeColor(android.content.res.ColorStateList) -androidx.preference.R$styleable: int[] ActionMenuView -android.didikee.donate.R$string: int abc_activity_chooser_view_see_all -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getStrokeAlpha() -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontWeight -io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function) -androidx.customview.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea AdministrativeArea -androidx.preference.R$attr: int splitTrack -androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat -androidx.vectordrawable.R$layout: int notification_action -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_text_size -io.reactivex.exceptions.CompositeException: java.util.List getExceptions() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: double Value -com.jaredrummler.android.colorpicker.R$color: int abc_btn_colored_text_material -androidx.preference.R$style: int Base_Widget_AppCompat_Toolbar -cyanogenmod.externalviews.ExternalViewProviderService$1$1: java.lang.Object call() -cyanogenmod.app.ICMTelephonyManager$Stub: cyanogenmod.app.ICMTelephonyManager asInterface(android.os.IBinder) -com.google.android.material.R$attr: int collapsedSize -wangdaye.com.geometricweather.R$id: int design_menu_item_action_area_stub -com.turingtechnologies.materialscrollbar.R$attr: int colorButtonNormal -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder socket(java.net.Socket) -androidx.preference.R$attr: int navigationIcon -androidx.work.R$layout: R$layout() -androidx.hilt.R$layout: int notification_action_tombstone -io.reactivex.internal.util.AtomicThrowable: java.lang.Throwable terminate() -android.didikee.donate.R$attr: int textAppearanceSmallPopupMenu -androidx.appcompat.R$interpolator: int fast_out_slow_in -androidx.viewpager2.R$styleable: int GradientColor_android_endY -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthTextView -wangdaye.com.geometricweather.R$string: int settings_title_notification_temp_icon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: void setWeathercn(java.lang.String) -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$402(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_gapBetweenBars -wangdaye.com.geometricweather.R$id: int BOTTOM_START -wangdaye.com.geometricweather.R$drawable: int notif_temp_110 -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -okhttp3.ConnectionSpec: boolean equals(java.lang.Object) -com.google.gson.stream.JsonReader: void skipValue() -com.google.android.material.R$drawable: int abc_ic_menu_share_mtrl_alpha -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeContainer -androidx.preference.R$drawable: int btn_radio_off_to_on_mtrl_animation -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_1 -androidx.coordinatorlayout.R$style: R$style() -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: java.lang.reflect.Method findByIssuerAndSignatureMethod -com.google.android.material.R$styleable: int TabLayout_tabIconTint -wangdaye.com.geometricweather.R$dimen: int design_navigation_icon_size -androidx.preference.R$string: int abc_prepend_shortcut_label -wangdaye.com.geometricweather.R$drawable: int notif_temp_127 -android.didikee.donate.R$dimen: int hint_alpha_material_dark -com.google.gson.stream.JsonReader -com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_material -okhttp3.internal.ws.WebSocketProtocol: int PAYLOAD_SHORT -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_2 -cyanogenmod.app.IProfileManager: void updateProfile(cyanogenmod.app.Profile) -androidx.preference.R$styleable: int AppCompatTheme_colorPrimary -okhttp3.internal.cache.DiskLruCache: boolean mostRecentTrimFailed -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.lang.Object poll() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_holo_light -wangdaye.com.geometricweather.R$attr: int subtitleTextAppearance -com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentStyle -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean access$702(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,boolean) -com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial -androidx.preference.R$style: int Widget_AppCompat_ActionButton_CloseMode -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: int TRANSACTION_createExternalView_0 -okhttp3.Cookie$Builder: boolean hostOnly -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getDistanceVoice(android.content.Context,float) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -androidx.constraintlayout.widget.R$style: int Platform_AppCompat -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String no2 -com.google.android.material.R$attr: int actionMenuTextAppearance -com.google.android.material.R$dimen: int design_textinput_caption_translate_y -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemHorizontalPadding -wangdaye.com.geometricweather.remoteviews.config.Hilt_MultiCityWidgetConfigActivity: Hilt_MultiCityWidgetConfigActivity() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: int Id -com.turingtechnologies.materialscrollbar.R$attr: int chipStrokeColor -james.adaptiveicon.R$styleable: int MenuItem_android_orderInCategory -okhttp3.internal.http2.Http2Connection: int INTERVAL_PING -androidx.customview.R$style: int Widget_Compat_NotificationActionContainer -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -com.google.android.material.R$attr: int actionModeWebSearchDrawable -com.google.gson.stream.JsonReader: int NUMBER_CHAR_FRACTION_DIGIT -androidx.fragment.R$anim: int fragment_fade_enter -com.jaredrummler.android.colorpicker.R$anim -cyanogenmod.providers.CMSettings$System: java.lang.String HIGH_TOUCH_SENSITIVITY_ENABLE -androidx.preference.R$styleable: int DialogPreference_negativeButtonText -okhttp3.internal.http2.Http2Stream: void closeLater(okhttp3.internal.http2.ErrorCode) -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemTextAppearanceInactive() -com.turingtechnologies.materialscrollbar.R$color: int background_floating_material_light -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth -com.google.android.material.R$string: int character_counter_content_description -com.google.android.material.R$layout: int text_view_with_line_height_from_style -com.xw.repo.bubbleseekbar.R$attr: int layout_dodgeInsetEdges -androidx.loader.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$dimen: int abc_text_size_menu_material -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState -io.reactivex.Observable: io.reactivex.Observable flatMapIterable(io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -com.jaredrummler.android.colorpicker.R$string: int cpv_select -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$RecycledViewPool getRecycledViewPool() -com.google.android.material.R$id: int screen -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetStartWithNavigation -androidx.preference.Preference: void setOnPreferenceChangeInternalListener(androidx.preference.Preference$OnPreferenceChangeInternalListener) -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_order -com.google.android.material.R$string: int abc_menu_ctrl_shortcut_label -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation Precipitation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String getCaiyun() -com.turingtechnologies.materialscrollbar.R$attr: int scrimBackground -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias -cyanogenmod.profiles.BrightnessSettings: BrightnessSettings() -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: ObservableReplay$SizeAndTimeBoundReplayBuffer(int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -cyanogenmod.externalviews.ExternalView$5: cyanogenmod.externalviews.ExternalView this$0 -androidx.lifecycle.ProcessLifecycleOwner$1 -com.google.android.material.R$attr: int limitBoundsTo -com.turingtechnologies.materialscrollbar.R$attr: int chipStyle -wangdaye.com.geometricweather.R$drawable: int weather_sleet_1 -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -org.greenrobot.greendao.database.DatabaseOpenHelper: int version -androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.jaredrummler.android.colorpicker.R$drawable: int abc_dialog_material_background -okhttp3.Challenge -com.google.android.material.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: AccuMinuteResult$SummariesBean() -com.jaredrummler.android.colorpicker.R$style: int Platform_Widget_AppCompat_Spinner -androidx.appcompat.widget.AppCompatRadioButton: void setButtonDrawable(int) -okhttp3.internal.http.RequestLine: boolean includeAuthorityInRequestLine(okhttp3.Request,java.net.Proxy$Type) -androidx.lifecycle.extensions.R$attr: int fontStyle -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver -androidx.swiperefreshlayout.R$layout: int notification_template_icon_group -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog -android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_cancel -com.bumptech.glide.R$styleable: int ColorStateListItem_alpha -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_horizontal_padding -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterEnabled -wangdaye.com.geometricweather.settings.activities.PreviewIconActivity: PreviewIconActivity() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarSplitStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX) -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object remove(int) -androidx.fragment.R$styleable: int GradientColor_android_endColor -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.util.AtomicThrowable errors -androidx.work.R$dimen: int notification_right_icon_size -androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_light -androidx.preference.R$style: int Preference -androidx.preference.R$styleable: int SwitchPreferenceCompat_summaryOn -okio.Pipe: boolean sinkClosed -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_behavior -com.google.android.material.R$color: int mtrl_textinput_hovered_box_stroke_color -james.adaptiveicon.R$attr: int indeterminateProgressStyle -wangdaye.com.geometricweather.R$styleable: int Layout_minHeight -okhttp3.internal.tls.BasicCertificateChainCleaner: BasicCertificateChainCleaner(okhttp3.internal.tls.TrustRootIndex) -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_switchPreferenceStyle -androidx.preference.R$id: int action_bar_root -androidx.appcompat.R$attr: int homeAsUpIndicator -androidx.appcompat.R$id: int accessibility_action_clickable_span -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -cyanogenmod.power.PerformanceManager: int getNumberOfProfiles() -com.google.android.material.R$dimen: int mtrl_btn_inset -com.google.android.material.R$attr: int circleRadius -retrofit2.KotlinExtensions: java.lang.Object await(retrofit2.Call,kotlin.coroutines.Continuation) -androidx.viewpager.R$styleable: int FontFamily_fontProviderPackage -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onError(java.lang.Throwable) -androidx.activity.R$attr: int alpha -com.turingtechnologies.materialscrollbar.R$styleable: int[] Snackbar -okhttp3.internal.http2.Header: boolean equals(java.lang.Object) -com.turingtechnologies.materialscrollbar.Indicator: void setText(int) -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setMoonDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$string: int edit -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf -wangdaye.com.geometricweather.R$id: int actions -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onMenuItemSelected(int,android.view.MenuItem) -okio.RealBufferedSource$1: RealBufferedSource$1(okio.RealBufferedSource) -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: java.lang.String icon -james.adaptiveicon.R$attr: int tickMark -okhttp3.Dispatcher: java.lang.Runnable idleCallback -wangdaye.com.geometricweather.R$drawable: int notif_temp_44 -okhttp3.HttpUrl$Builder: int parsePort(java.lang.String,int,int) -com.google.android.material.R$attr: int contentPaddingTop -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: io.reactivex.functions.BiFunction combiner -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: long serialVersionUID -androidx.work.R$styleable: int[] FontFamily -androidx.constraintlayout.widget.R$style: int Base_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.R$id: int date_picker_actions -okio.InflaterSource: boolean closed -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$attr: int showText -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial -com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.activity.R$string: R$string() -james.adaptiveicon.R$styleable: int[] ActionBarLayout -com.google.android.material.R$attr: int windowFixedWidthMajor -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -androidx.preference.internal.PreferenceImageView: void setMaxHeight(int) -androidx.lifecycle.AndroidViewModel -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: double Value -cyanogenmod.app.ILiveLockScreenManagerProvider: boolean getLiveLockScreenEnabled() -com.google.android.material.appbar.AppBarLayout$BaseBehavior -androidx.preference.R$styleable: int SwitchCompat_android_thumb -com.google.android.material.R$id: int save_non_transition_alpha -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableStart -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean tillTheEnd -com.turingtechnologies.materialscrollbar.R$attr: int tintMode -androidx.preference.R$style: int TextAppearance_Compat_Notification -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeFindDrawable -wangdaye.com.geometricweather.R$layout: int design_navigation_menu -com.google.gson.stream.JsonScope: JsonScope() -com.google.android.material.R$styleable: int ImageFilterView_contrast -wangdaye.com.geometricweather.R$string: int precipitation_light -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableLeft -com.turingtechnologies.materialscrollbar.R$attr: int listDividerAlertDialog -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: long serialVersionUID -cyanogenmod.library.R$id -androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat_Light -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: java.lang.Object poll() -wangdaye.com.geometricweather.R$attr: int layout_goneMarginStart -cyanogenmod.providers.CMSettings$Secure$2: boolean validate(java.lang.String) -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Flush -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner -wangdaye.com.geometricweather.R$string: int off -james.adaptiveicon.R$styleable: int ActionBar_subtitleTextStyle -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeStepGranularity -com.jaredrummler.android.colorpicker.R$attr: int paddingBottomNoButtons -com.google.android.material.R$id: int incoming -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetStartWithNavigation -androidx.vectordrawable.R$dimen: int notification_action_text_size -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Title -retrofit2.HttpServiceMethod -wangdaye.com.geometricweather.R$styleable: int[] MaterialCheckBox -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date getPublishDate() -androidx.constraintlayout.widget.R$attr: int backgroundTint -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_weightSum -com.google.android.material.R$dimen: int cardview_default_radius -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_chip_state_list_anim -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft -cyanogenmod.app.CMTelephonyManager: java.util.List getSubInformation() -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State DESTROYED -wangdaye.com.geometricweather.R$dimen: int material_icon_size -retrofit2.KotlinExtensions$await$2$2: kotlinx.coroutines.CancellableContinuation $continuation -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerNext(java.lang.Object) -okhttp3.internal.ws.RealWebSocket: long pingIntervalMillis -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3 -okio.Buffer: void require(long) -wangdaye.com.geometricweather.common.ui.widgets.DonateImageView: DonateImageView(android.content.Context) -android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_TextView -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedHeightMinor -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: java.lang.Object singleItem -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: AccuDailyResult$DailyForecasts$Temperature() -androidx.lifecycle.extensions.R$id: int action_text -com.bumptech.glide.R$styleable: int GradientColorItem_android_offset -okio.Okio: okio.Sink sink(java.nio.file.Path,java.nio.file.OpenOption[]) -androidx.preference.R$attr: int fastScrollVerticalTrackDrawable -androidx.constraintlayout.widget.R$style: int Base_V23_Theme_AppCompat -com.google.android.material.R$styleable: int FlowLayout_lineSpacing -androidx.appcompat.R$dimen: int abc_dropdownitem_text_padding_right -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endY -com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_padding -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: io.reactivex.Observer downstream -okhttp3.internal.ws.RealWebSocket$Streams: okio.BufferedSink sink -wangdaye.com.geometricweather.R$font -james.adaptiveicon.R$drawable: int notification_bg_normal -com.google.android.material.R$dimen: int abc_dropdownitem_icon_width -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_android_entryValues -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalGap -retrofit2.http.Body -androidx.appcompat.R$attr: int backgroundTint -com.xw.repo.bubbleseekbar.R$styleable: int[] Toolbar -io.reactivex.internal.schedulers.AbstractDirectTask: java.util.concurrent.FutureTask FINISHED -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_listLayout -wangdaye.com.geometricweather.db.entities.LocationEntity: float latitude -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCloseDrawable -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_light -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String name -wangdaye.com.geometricweather.R$styleable: int[] LinearLayoutCompat -cyanogenmod.app.CustomTileListenerService: CustomTileListenerService() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_39 -com.turingtechnologies.materialscrollbar.R$id: int checkbox -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: AccuDailyResult$DailyForecasts$Night$Rain() -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.hilt.work.R$id: int action_container -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTag -androidx.work.impl.utils.futures.DirectExecutor -wangdaye.com.geometricweather.R$id: int widget_day_weather -wangdaye.com.geometricweather.db.entities.MinutelyEntity: boolean getDaylight() -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int maxConcurrency -com.google.android.material.R$styleable: int OnSwipe_moveWhenScrollAtTop -androidx.appcompat.R$id -com.turingtechnologies.materialscrollbar.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -android.didikee.donate.R$style: int Widget_AppCompat_RatingBar_Small -com.jaredrummler.android.colorpicker.R$attr: int actionModeCloseDrawable -okhttp3.MultipartBody$Builder: MultipartBody$Builder(java.lang.String) -io.reactivex.Observable: io.reactivex.Flowable toFlowable(io.reactivex.BackpressureStrategy) -androidx.vectordrawable.animated.R$styleable: int GradientColorItem_android_color -androidx.lifecycle.ProcessLifecycleOwner: int mStartedCounter -com.google.android.material.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -cyanogenmod.weather.CMWeatherManager: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener) -androidx.vectordrawable.R$dimen: int notification_small_icon_background_padding -android.didikee.donate.R$styleable: int[] DrawerArrowToggle -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: int nameId -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: boolean IsDayTime -androidx.fragment.R$id: int accessibility_custom_action_28 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -cyanogenmod.hardware.IThermalListenerCallback$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherCode -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_CBC_SHA -wangdaye.com.geometricweather.R$style: int Widget_Design_BottomNavigationView -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial Imperial -wangdaye.com.geometricweather.R$drawable: int notif_temp_137 -androidx.constraintlayout.widget.R$attr: int fontVariationSettings -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void request(long) -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onSubscribe(org.reactivestreams.Subscription) -androidx.appcompat.R$styleable: int ActionBar_elevation -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Today -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.R$styleable: int Chip_textStartPadding -com.google.android.material.R$styleable: int DrawerArrowToggle_gapBetweenBars -androidx.constraintlayout.widget.R$attr: int queryBackground -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String info -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: java.lang.String icon -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackInactiveTintList() -com.google.android.material.R$xml: int standalone_badge_offset -cyanogenmod.app.suggest.IAppSuggestManager$Stub: int TRANSACTION_getSuggestions -androidx.vectordrawable.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer speed -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_position -cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.os.Parcel,cyanogenmod.app.LiveLockScreenInfo$1) -androidx.appcompat.R$layout: int abc_action_menu_item_layout -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontWeight -james.adaptiveicon.R$styleable: int[] View -james.adaptiveicon.R$styleable: int View_android_theme -james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context) -com.google.android.material.R$id: int title -okhttp3.internal.http2.Http2: byte FLAG_END_PUSH_PROMISE -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -io.reactivex.internal.schedulers.ScheduledRunnable -androidx.core.R$color: int notification_icon_bg_color -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_maxWidth -androidx.dynamicanimation.R$id: int icon -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_2_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum -android.didikee.donate.R$style: int Widget_AppCompat_SearchView_ActionBar -wangdaye.com.geometricweather.R$drawable: int notif_temp_25 -okhttp3.ConnectionPool: java.net.Socket deduplicate(okhttp3.Address,okhttp3.internal.connection.StreamAllocation) -androidx.appcompat.R$layout: int abc_action_mode_bar -com.turingtechnologies.materialscrollbar.R$styleable: int View_paddingStart -androidx.appcompat.R$styleable: int AppCompatTheme_toolbarStyle -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType[] $VALUES -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean cancelled -io.reactivex.internal.subscriptions.SubscriptionArbiter: org.reactivestreams.Subscription actual -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setOnClickListener(android.view.View$OnClickListener) -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_black -com.google.android.material.R$drawable: int btn_radio_off_to_on_mtrl_animation -com.google.android.material.R$styleable: int Constraint_barrierDirection -android.didikee.donate.R$styleable: int Toolbar_navigationIcon -com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -wangdaye.com.geometricweather.R$array: int dark_modes -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.lang.String unit -com.google.android.material.bottomnavigation.BottomNavigationView: void setElevation(float) -okhttp3.internal.http2.Hpack: int PREFIX_7_BITS -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_chainStyle -androidx.activity.R$attr: int fontStyle -androidx.transition.R$attr: int fontProviderFetchStrategy -com.google.android.material.chip.Chip: void setChipIconTint(android.content.res.ColorStateList) -com.google.android.material.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$attr: int itemStrokeColor -wangdaye.com.geometricweather.R$id: int animateToEnd -android.didikee.donate.R$styleable: int AppCompatTheme_tooltipFrameBackground -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_vertical -wangdaye.com.geometricweather.R$styleable: int Chip_checkedIcon -androidx.preference.R$dimen: int abc_list_item_height_small_material -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress -okio.Buffer: okio.Buffer writeString(java.lang.String,java.nio.charset.Charset) -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getPressureText(android.content.Context,float) -okhttp3.Headers$Builder: okhttp3.Headers$Builder addLenient(java.lang.String,java.lang.String) -androidx.appcompat.R$attr: int actionBarTabBarStyle -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String country -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_track_mtrl_alpha -com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar_FullWidth -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_maxButtonHeight -com.google.android.material.circularreveal.CircularRevealFrameLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModelStore mViewModelStore -james.adaptiveicon.R$drawable: int abc_ic_star_black_16dp -okhttp3.FormBody$Builder: okhttp3.FormBody$Builder addEncoded(java.lang.String,java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startColor -okhttp3.internal.connection.RealConnection: java.net.Socket socket -androidx.appcompat.R$attr: int actionModePasteDrawable -androidx.loader.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) -cyanogenmod.app.ICMStatusBarManager$Stub: java.lang.String DESCRIPTOR -io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function,boolean,int) -retrofit2.http.HeaderMap -com.google.android.material.floatingactionbutton.FloatingActionButton: void setUseCompatPadding(boolean) -com.jaredrummler.android.colorpicker.R$string: int abc_action_bar_home_description -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationZ -com.xw.repo.bubbleseekbar.R$attr: int thumbTintMode -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_body_1_material -wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_xml -james.adaptiveicon.R$layout: int abc_screen_toolbar -androidx.recyclerview.R$drawable: int notification_bg_normal -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getSerialNumber -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_switchStyle -androidx.lifecycle.SingleGeneratedAdapterObserver: SingleGeneratedAdapterObserver(androidx.lifecycle.GeneratedAdapter) -com.turingtechnologies.materialscrollbar.R$id: int buttonPanel -androidx.appcompat.R$string: int abc_shareactionprovider_share_with_application -io.reactivex.internal.util.VolatileSizeArrayList: java.util.Iterator iterator() -androidx.recyclerview.R$attr: int fastScrollHorizontalThumbDrawable -okhttp3.Response: okhttp3.ResponseBody body() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul1H -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setUrl(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean) -io.reactivex.internal.observers.BlockingObserver: java.lang.Object TERMINATED -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: AccuCurrentResult$PrecipitationSummary$PastHour$Metric() -wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_singlechoice -com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColor(int) -okhttp3.Cache$CacheResponseBody$1 -androidx.lifecycle.ProcessLifecycleOwnerInitializer: int update(android.net.Uri,android.content.ContentValues,java.lang.String,java.lang.String[]) -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onComplete() -wangdaye.com.geometricweather.R$layout: int widget_day_tile -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() -com.turingtechnologies.materialscrollbar.R$styleable: int[] TabLayout -okhttp3.HttpUrl: java.lang.String topPrivateDomain() -android.didikee.donate.R$id: int useLogo -okio.RealBufferedSink$1: RealBufferedSink$1(okio.RealBufferedSink) -androidx.constraintlayout.widget.R$styleable: int PropertySet_layout_constraintTag -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.lang.String pubTime -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onNext(java.lang.Object) -okhttp3.internal.publicsuffix.PublicSuffixDatabase: void readTheListUninterruptibly() -androidx.constraintlayout.widget.R$attr: int flow_lastHorizontalBias -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getDegreeDayTemperature() -cyanogenmod.weather.WeatherLocation: java.lang.String getCityId() -com.jaredrummler.android.colorpicker.R$attr: int layoutManager -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Title -androidx.activity.R$color: int notification_action_color_filter -androidx.preference.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_TITLE -androidx.constraintlayout.widget.R$string: int abc_searchview_description_query -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.R$id: int widget_clock_day_date -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionBar -okhttp3.internal.connection.StreamAllocation: int refusedStreamCount -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_indeterminateProgressStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: AccuCurrentResult$Wind$Speed() -com.jaredrummler.android.colorpicker.R$attr: int maxHeight -com.google.android.material.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$color: int material_grey_900 -wangdaye.com.geometricweather.R$string: int key_notification_background_color -wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_alphaChannelText -cyanogenmod.providers.CMSettings$2: boolean validate(java.lang.String) -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status REJECTED -okio.ByteString: byte[] internalArray() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) -cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(android.os.Parcel) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max -wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_1_3_padding_top -wangdaye.com.geometricweather.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.lang.String getUnit() -com.google.android.material.R$string: int material_clock_display_divider -io.reactivex.internal.observers.ForEachWhileObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$attr: int fontWeight -io.reactivex.internal.operators.observable.ObservableGroupBy$State: long serialVersionUID -com.xw.repo.bubbleseekbar.R$attr: int collapseIcon -wangdaye.com.geometricweather.R$dimen: int design_navigation_elevation -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitationDuration -com.xw.repo.bubbleseekbar.R$color: int secondary_text_disabled_material_light -com.google.android.material.R$styleable: int KeyTrigger_motionTarget -wangdaye.com.geometricweather.R$id: int fragment_drawer -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_dither -androidx.preference.R$styleable: int[] MenuGroup -wangdaye.com.geometricweather.R$id: int image -androidx.lifecycle.LifecycleRegistry$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$Event -okhttp3.ResponseBody$BomAwareReader -androidx.appcompat.widget.Toolbar: android.view.MenuInflater getMenuInflater() -cyanogenmod.providers.CMSettings$Secure: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) -okhttp3.internal.http1.Http1Codec$ChunkedSource: void close() -androidx.preference.R$attr: int color -okhttp3.HttpUrl -cyanogenmod.hardware.CMHardwareManager: int FEATURE_SERIAL_NUMBER -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: MfForecastV2Result$ForecastProperties$HourForecast() -com.xw.repo.bubbleseekbar.R$id: int none -androidx.legacy.coreutils.R$drawable: int notification_bg_low -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode valueOf(java.lang.String) -com.google.android.material.R$attr: int tickMark -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constrainedHeight -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_title -androidx.work.R$id: int actions -androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.Fragment,androidx.lifecycle.ViewModelProvider$Factory) -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabBackground -com.google.android.material.R$styleable: int ChipGroup_singleLine -com.google.android.material.R$styleable: int AlertDialog_showTitle -retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: boolean cancel(boolean) -cyanogenmod.app.LiveLockScreenInfo: java.lang.Object clone() -androidx.viewpager.widget.PagerTabStrip: PagerTabStrip(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabTextColor -wangdaye.com.geometricweather.common.basic.GeoViewModel: GeoViewModel(android.app.Application) -androidx.appcompat.R$styleable: int AppCompatTheme_colorBackgroundFloating -wangdaye.com.geometricweather.R$attr: int errorIconDrawable -androidx.viewpager.R$style -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String from -com.jaredrummler.android.colorpicker.R$attr: int actionModeFindDrawable -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void accept(java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItem -androidx.legacy.coreutils.R$dimen: int compat_notification_large_icon_max_height -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorPrimary -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String getFrom() -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dialog -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstVerticalStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_queryBackground -com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_animationMode -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabAlignmentMode -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_disableDependentsState -cyanogenmod.app.CustomTile$ExpandedItem -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontStyle -cyanogenmod.externalviews.KeyguardExternalView$7 -com.google.android.material.chip.ChipGroup: void setChipSpacingHorizontalResource(int) -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver[] observers -io.reactivex.internal.observers.InnerQueuedObserver: InnerQueuedObserver(io.reactivex.internal.observers.InnerQueuedObserverSupport,int) -com.google.android.material.R$attr: int textAppearanceLineHeightEnabled -cyanogenmod.app.IPartnerInterface$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$id: int container_main_aqi -cyanogenmod.app.Profile$LockMode: int DEFAULT -androidx.appcompat.widget.ActionBarContextView: java.lang.CharSequence getSubtitle() -wangdaye.com.geometricweather.R$attr: int counterTextAppearance -wangdaye.com.geometricweather.R$anim: int abc_fade_in -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -wangdaye.com.geometricweather.R$attr: int region_heightMoreThan -cyanogenmod.content.Intent: java.lang.String ACTION_PROTECTED -cyanogenmod.app.Profile$ProfileTrigger: cyanogenmod.app.Profile$ProfileTrigger fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: long serialVersionUID -com.google.android.material.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -androidx.appcompat.widget.Toolbar: void setNavigationContentDescription(int) -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void cancelSubscription() -androidx.work.WorkInfo$State -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitation(java.lang.Float) -androidx.constraintlayout.widget.R$attr: int actionModeBackground -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogTheme -wangdaye.com.geometricweather.db.entities.WeatherEntity -android.didikee.donate.R$styleable: int ActionBar_divider -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer windChillTemperature -androidx.recyclerview.R$styleable: int GradientColor_android_endColor -com.google.android.material.chip.Chip: void setCheckableResource(int) -android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Light -com.bumptech.glide.integration.okhttp.R$layout: R$layout() -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabBackground -com.jaredrummler.android.colorpicker.R$attr: int lineHeight -androidx.lifecycle.SavedStateHandleController$OnRecreation: SavedStateHandleController$OnRecreation() -james.adaptiveicon.R$styleable: int PopupWindow_overlapAnchor -james.adaptiveicon.R$color: int material_grey_900 -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Medium -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_menu -androidx.drawerlayout.R$attr: int ttcIndex -androidx.preference.R$layout: int support_simple_spinner_dropdown_item -james.adaptiveicon.R$id: int blocking -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -androidx.versionedparcelable.ParcelImpl -androidx.appcompat.widget.AppCompatCheckBox: android.graphics.PorterDuff$Mode getSupportButtonTintMode() -com.google.android.material.textfield.TextInputLayout: void setHintEnabled(boolean) -com.google.android.material.R$dimen: int mtrl_btn_text_btn_icon_padding -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_36dp -cyanogenmod.app.Profile: java.util.List readSecondaryUuidsFromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -androidx.appcompat.resources.R$id: int notification_main_column -com.jaredrummler.android.colorpicker.R$attr: int alertDialogButtonGroupStyle -cyanogenmod.app.ProfileGroup: android.net.Uri getRingerOverride() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setBrandId(java.lang.String) -androidx.preference.R$attr: int actionModeFindDrawable -androidx.appcompat.R$style: int Widget_AppCompat_PopupWindow -com.jaredrummler.android.colorpicker.R$attr: int thumbTint -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitationDuration -com.google.android.material.slider.BaseSlider: float getThumbElevation() -wangdaye.com.geometricweather.R$styleable: int SearchView_iconifiedByDefault -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event valueOf(java.lang.String) -androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.widget.AppCompatCheckBox: void setBackgroundResource(int) -android.didikee.donate.R$styleable: int SearchView_queryHint -androidx.dynamicanimation.R$id: int tag_unhandled_key_listeners -okhttp3.Response: okhttp3.CacheControl cacheControl() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer uvIndex -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_small_material -androidx.preference.R$styleable: int AppCompatTheme_alertDialogCenterButtons -wangdaye.com.geometricweather.R$styleable: int[] DrawerArrowToggle -androidx.preference.R$attr: int textAllCaps -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: void setSurfaceAngle(float) -okio.ByteString: boolean startsWith(byte[]) -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_listLayout -wangdaye.com.geometricweather.R$string: int settings_title_temperature_unit -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: java.lang.String aqi -james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_btn_checkable -androidx.dynamicanimation.R$dimen: int notification_top_pad_large_text -androidx.constraintlayout.widget.R$styleable: int[] MotionScene -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Toolbar -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_minWidth -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_ensureMinTouchTargetSize -okhttp3.internal.cache.DiskLruCache: java.lang.Runnable cleanupRunnable -retrofit2.KotlinExtensions$awaitResponse$2$2: void onResponse(retrofit2.Call,retrofit2.Response) -androidx.appcompat.R$attr: int actionOverflowMenuStyle -wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line2_tail_interpolator -com.jaredrummler.android.colorpicker.R$attr: int autoCompleteTextViewStyle -com.turingtechnologies.materialscrollbar.R$attr: int textInputStyle -androidx.vectordrawable.animated.R$drawable: int notification_bg_low -cyanogenmod.themes.ThemeManager: void requestThemeChange(java.lang.String,java.util.List) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getAqiText() -io.reactivex.internal.util.NotificationLite$ErrorNotification: NotificationLite$ErrorNotification(java.lang.Throwable) -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Dialog -androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onResume() -com.turingtechnologies.materialscrollbar.R$layout: int notification_template_part_chronometer -james.adaptiveicon.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -cyanogenmod.hardware.ICMHardwareService: int[] getVibratorIntensity() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String value -wangdaye.com.geometricweather.R$attr: int maxLines -com.google.android.material.R$styleable: int TextAppearance_textAllCaps -com.google.android.material.R$styleable: int ConstraintSet_flow_verticalBias -wangdaye.com.geometricweather.R$dimen: int mtrl_chip_pressed_translation_z -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_end -okhttp3.internal.http2.Huffman: byte[] CODE_LENGTHS -androidx.core.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$dimen: int mtrl_btn_focused_z -okhttp3.Cache: java.util.Iterator urls() -wangdaye.com.geometricweather.R$styleable: int RecyclerView_spanCount -androidx.hilt.lifecycle.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul1H -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onAttach(android.os.IBinder) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_FloatingActionButton -cyanogenmod.externalviews.KeyguardExternalView$5: cyanogenmod.externalviews.KeyguardExternalView this$0 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_QUICK_QS_PULLDOWN_VALIDATOR -androidx.appcompat.widget.SwitchCompat -androidx.preference.R$styleable: int ColorStateListItem_alpha -androidx.preference.R$id: int shortcut -com.google.android.material.R$styleable: int[] MaterialCheckBox -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_bias -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginEnd -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_textEndPadding -androidx.appcompat.R$style: int TextAppearance_AppCompat_SearchResult_Title -androidx.activity.R$styleable: int FontFamily_fontProviderQuery -com.xw.repo.bubbleseekbar.R$attr: int actionMenuTextColor -cyanogenmod.app.CMStatusBarManager: CMStatusBarManager(android.content.Context) -androidx.legacy.coreutils.R$styleable: int[] FontFamily -androidx.preference.R$attr: int summaryOn -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_tooltipForegroundColor -androidx.constraintlayout.widget.R$attr: int actionModeCloseButtonStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: float getSpeed(float) -androidx.appcompat.widget.SearchView$SearchAutoComplete: void setImeVisibility(boolean) -retrofit2.ParameterHandler$1: void apply(retrofit2.RequestBuilder,java.lang.Iterable) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul24H -com.google.android.material.R$id: int circle_center -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.functions.BiPredicate comparer -androidx.preference.R$attr: int multiChoiceItemLayout -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: boolean isValid() -wangdaye.com.geometricweather.R$id: int graph -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: android.os.IBinder mRemote -org.greenrobot.greendao.AbstractDao: java.lang.Object load(java.lang.Object) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getSnowPrecipitationProbability() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoldLevel() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: int getStatus() -androidx.lifecycle.extensions.R -io.reactivex.internal.util.ArrayListSupplier: java.util.List call() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarDivider -wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_title_material -androidx.legacy.coreutils.R$layout: int notification_action_tombstone -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean cancelled -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getAqi() -com.jaredrummler.android.colorpicker.R$attr: int textAppearancePopupMenuHeader -okhttp3.Route -com.google.android.material.R$id: int startHorizontal -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl mImpl -androidx.vectordrawable.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_measureWithLargestChild -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean isEmpty() -cyanogenmod.os.Build$CM_VERSION_CODES: int DRAGON_FRUIT -androidx.core.R$style: int TextAppearance_Compat_Notification_Time -com.turingtechnologies.materialscrollbar.R$attr: int menu -wangdaye.com.geometricweather.R$style: int notification_subtitle_text -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_start_angle -android.didikee.donate.R$styleable: int AppCompatTheme_borderlessButtonStyle -com.turingtechnologies.materialscrollbar.R$attr: int showTitle -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_title_material -com.google.android.material.R$attr: int customColorValue -androidx.fragment.R$styleable: int GradientColor_android_centerX -com.google.android.material.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -okhttp3.internal.ws.RealWebSocket: void onReadMessage(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String Phrase -wangdaye.com.geometricweather.main.MainActivity -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.R$attr: int layout_constraintCircleRadius -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit LPSQM -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -james.adaptiveicon.R$style: int Widget_AppCompat_ListView_DropDown -com.google.android.material.R$animator: int mtrl_extended_fab_show_motion_spec -com.xw.repo.bubbleseekbar.R$attr: int alertDialogButtonGroupStyle -okio.AsyncTimeout$1: okio.AsyncTimeout this$0 -com.google.android.material.R$styleable: int[] CoordinatorLayout_Layout -com.google.android.material.R$styleable: int ConstraintSet_animate_relativeTo -androidx.constraintlayout.widget.R$string: int abc_menu_function_shortcut_label -okio.Buffer: okio.Buffer writeShort(int) -okhttp3.OkHttpClient: int writeTimeoutMillis() -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String cityId -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver(io.reactivex.CompletableObserver,io.reactivex.functions.Function,boolean) -com.google.android.material.R$dimen: int mtrl_extended_fab_end_padding_icon -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_font -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String quotedAV() -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_baselineAligned -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_to_on_mtrl_000 -retrofit2.ParameterHandler$HeaderMap: int p -androidx.constraintlayout.widget.R$attr: int buttonGravity -cyanogenmod.profiles.BrightnessSettings: void setOverride(boolean) -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTemperature(android.content.Context,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String UVIndexText -okhttp3.internal.ws.RealWebSocket: void tearDown() -cyanogenmod.providers.CMSettings: java.lang.String ACTION_DATA_USAGE -androidx.appcompat.R$style: int Widget_AppCompat_TextView_SpinnerItem -androidx.preference.R$dimen: int abc_text_size_display_1_material -james.adaptiveicon.R$id: int screen -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) -com.turingtechnologies.materialscrollbar.R$id: int right_icon -com.xw.repo.bubbleseekbar.R$id: int buttonPanel -com.jaredrummler.android.colorpicker.R$dimen: int compat_notification_large_icon_max_height -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.constraintlayout.helper.widget.Layer -com.google.android.material.R$styleable: int Tooltip_android_layout_margin -androidx.constraintlayout.widget.R$string: int status_bar_notification_info_overflow -com.jaredrummler.android.colorpicker.R$layout: int preference_dialog_edittext -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_95 -okhttp3.internal.ws.WebSocketWriter$FrameSink: okio.Timeout timeout() -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.History yesterday -okio.Buffer: okio.Segment head -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -wangdaye.com.geometricweather.R$attr: int popupMenuBackground -androidx.preference.R$dimen: int item_touch_helper_swipe_escape_velocity -io.reactivex.internal.observers.DeferredScalarDisposable: void error(java.lang.Throwable) -io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent[] values() -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintStart_toStartOf -androidx.work.R$integer: int status_bar_notification_info_maxnum -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void dispose() -com.google.android.material.R$styleable: int KeyTimeCycle_android_translationY -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorAnimationDuration -retrofit2.ParameterHandler$Field: retrofit2.Converter valueConverter -com.bumptech.glide.integration.okhttp.R$style -android.didikee.donate.R$attr: int backgroundTint -androidx.viewpager2.R$id: int action_divider -com.jaredrummler.android.colorpicker.R$attr: int actionBarDivider -android.didikee.donate.R$attr: int thumbTint -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -com.google.android.material.R$style: int Base_Widget_AppCompat_Button -androidx.hilt.work.R$id: int accessibility_custom_action_29 -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Colored -androidx.vectordrawable.animated.R$id: R$id() -androidx.hilt.R$anim: int fragment_close_enter -android.didikee.donate.R$integer: int abc_config_activityDefaultDur -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_hd -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void drain() -wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_material -cyanogenmod.app.ThemeVersion: java.lang.String THEME_VERSION_CLASS_NAME -cyanogenmod.util.ColorUtils: float[] convertRGBtoLAB(int) -retrofit2.converter.gson.GsonRequestBodyConverter: com.google.gson.TypeAdapter adapter -okhttp3.OkHttpClient$Builder: okhttp3.ConnectionPool connectionPool -cyanogenmod.app.Profile$TriggerState: int ON_A2DP_DISCONNECT -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -androidx.coordinatorlayout.R$id: int none -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean getImages() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: CaiYunMainlyResult$ForecastHourlyBean() -cyanogenmod.app.ProfileGroup$1: cyanogenmod.app.ProfileGroup createFromParcel(android.os.Parcel) -androidx.preference.R$style: int Base_V7_Theme_AppCompat_Dialog -androidx.hilt.R$id: int accessibility_custom_action_28 -okhttp3.internal.http1.Http1Codec$ChunkedSource: okhttp3.HttpUrl url -com.turingtechnologies.materialscrollbar.R$attr: int floatingActionButtonStyle -androidx.constraintlayout.widget.R$style -cyanogenmod.app.Profile$ProfileTrigger$1 -wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newSession() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierDirection -com.bumptech.glide.R$styleable: int FontFamilyFont_fontVariationSettings -android.didikee.donate.R$styleable: int AppCompatImageView_srcCompat -okhttp3.Protocol: okhttp3.Protocol[] $VALUES -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onKeyguardDismissed() -org.greenrobot.greendao.DaoException: DaoException(java.lang.String) -androidx.transition.R$id: int notification_main_column_container -cyanogenmod.externalviews.IExternalViewProvider$Stub: android.os.IBinder asBinder() -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarNegativeButtonStyle -cyanogenmod.app.Profile$ProfileTrigger: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void dispose() -com.turingtechnologies.materialscrollbar.R$attr: int tooltipText -cyanogenmod.providers.CMSettings$Secure$2: java.lang.String mDelimiter -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onDetachedFromWindow() -androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet) -androidx.fragment.R$id: int title -com.google.android.material.R$attr: int subtitleTextStyle -cyanogenmod.providers.CMSettings$System: java.lang.String TOUCHSCREEN_GESTURE_HAPTIC_FEEDBACK -cyanogenmod.app.CustomTile: cyanogenmod.app.CustomTile$ExpandedStyle expandedStyle -androidx.activity.R$styleable: int GradientColor_android_endY -androidx.recyclerview.R$id: int tag_accessibility_actions -androidx.appcompat.R$drawable: int btn_radio_on_mtrl -cyanogenmod.media.MediaRecorder$AudioSource: MediaRecorder$AudioSource() -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int Priority -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getSupportBackgroundTintList() -james.adaptiveicon.R$id: int title -com.jaredrummler.android.colorpicker.R$attr: int colorSwitchThumbNormal -wangdaye.com.geometricweather.R$styleable: int[] Badge -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY -androidx.viewpager2.R$id: int right_side -androidx.transition.R$styleable: int GradientColor_android_type -android.didikee.donate.R$styleable: int PopupWindow_overlapAnchor -com.google.android.material.R$attr: int indicatorSize -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_begin -androidx.appcompat.R$attr: int dividerPadding -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.util.Date date -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable,int) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Province -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$002(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindChillTemperature -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_27 -android.didikee.donate.R$layout: int abc_expanded_menu_layout -cyanogenmod.externalviews.ExternalView$2: int val$width -wangdaye.com.geometricweather.R$attr: int collapsedTitleTextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: java.lang.String Unit -androidx.core.R$attr: int fontStyle -com.google.android.material.R$attr: int titleMargin -com.google.android.material.R$styleable: int ForegroundLinearLayout_android_foreground -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetStart -androidx.appcompat.widget.AppCompatSpinner: void setBackgroundResource(int) -wangdaye.com.geometricweather.R$anim: int fragment_fast_out_extra_slow_in -okhttp3.internal.platform.OptionalMethod: java.lang.Class[] methodParams -wangdaye.com.geometricweather.R$attr: int itemPadding -com.google.android.material.R$id: int right -wangdaye.com.geometricweather.R$style: int Preference_CheckBoxPreference_Material -wangdaye.com.geometricweather.R$id: int activity_allergen_toolbar -androidx.preference.R$styleable: int ListPreference_android_entryValues -androidx.core.widget.ContentLoadingProgressBar -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRealFeelShaderTemperature -androidx.lifecycle.ViewModelProvider$KeyedFactory: ViewModelProvider$KeyedFactory() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: int temperature -com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode[] values() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixText -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_5 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isModify -wangdaye.com.geometricweather.R$layout: int widget_clock_day_details -wangdaye.com.geometricweather.R$string: int wind_level -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.util.Date EndTime -androidx.appcompat.R$attr: int tickMarkTintMode -wangdaye.com.geometricweather.R$id: int widget_clock_day_title -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorButtonNormal -com.google.android.material.R$style: int Base_Widget_AppCompat_ListPopupWindow -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Inverse -androidx.hilt.work.R$dimen: int notification_small_icon_background_padding -cyanogenmod.app.CMTelephonyManager: boolean localLOGD -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_30 -io.reactivex.Observable: io.reactivex.Observable window(java.util.concurrent.Callable) -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low -android.didikee.donate.R$styleable: int AppCompatTheme_android_windowAnimationStyle -okhttp3.Route: java.lang.String toString() -com.google.android.material.chip.Chip: void setBackgroundColor(int) -androidx.cardview.R$attr: R$attr() -androidx.appcompat.R$dimen: int abc_text_size_subhead_material -com.google.android.material.R$style: int Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.R$attr: int bsb_rtl -androidx.swiperefreshlayout.R$attr: int fontProviderQuery -okhttp3.Cache$CacheResponseBody: Cache$CacheResponseBody(okhttp3.internal.cache.DiskLruCache$Snapshot,java.lang.String,java.lang.String) -androidx.preference.R$styleable: int FontFamily_fontProviderQuery -androidx.constraintlayout.widget.R$color: int switch_thumb_material_light -androidx.swiperefreshlayout.R$attr: int fontProviderPackage -cyanogenmod.externalviews.ExternalViewProperties: android.graphics.Rect getHitRect() -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -androidx.preference.R$color: int primary_material_light -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: long serialVersionUID -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_summaryOn -android.didikee.donate.R$color: int primary_dark_material_light -retrofit2.adapter.rxjava2.CallExecuteObservable: CallExecuteObservable(retrofit2.Call) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_toTopOf -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter endArray() -com.google.android.material.R$styleable: int TextInputLayout_errorIconDrawable -androidx.appcompat.R$drawable: int abc_text_select_handle_left_mtrl_dark -com.google.android.material.R$color: int mtrl_chip_ripple_color -retrofit2.Platform: java.util.concurrent.Executor defaultCallbackExecutor() -io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.android.material.R$attr: int font -wangdaye.com.geometricweather.R$styleable: int Preference_android_singleLineTitle -androidx.hilt.work.R$layout: R$layout() -okhttp3.HttpUrl: okhttp3.HttpUrl get(java.net.URL) -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.gson.stream.JsonWriter: java.lang.String[] HTML_SAFE_REPLACEMENT_CHARS -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: CNWeatherResult() -androidx.preference.R$integer: int abc_config_activityShortDur -wangdaye.com.geometricweather.R$dimen: int mtrl_progress_circular_inset -androidx.preference.R$dimen: int notification_subtext_size -com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_Alert -androidx.viewpager2.R$drawable: int notification_bg -io.reactivex.Observable: io.reactivex.Observable throttleWithTimeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_thumb -androidx.recyclerview.R$styleable: int ColorStateListItem_alpha -com.turingtechnologies.materialscrollbar.R$id: int topPanel -okhttp3.Dispatcher: java.util.Deque readyAsyncCalls -androidx.core.R$id: int accessibility_custom_action_5 -okhttp3.internal.tls.OkHostnameVerifier: boolean verify(java.lang.String,javax.net.ssl.SSLSession) -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox -android.didikee.donate.R$id: int search_go_btn -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_Design_TabLayout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum Minimum -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollVerticalThumbDrawable -androidx.preference.R$styleable: int Toolbar_contentInsetStartWithNavigation -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String LABEL -wangdaye.com.geometricweather.R$attr: int tabUnboundedRipple -android.didikee.donate.R$attr: int subtitleTextColor -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit[] values() -wangdaye.com.geometricweather.GeometricWeather -cyanogenmod.os.Build$CM_VERSION_CODES -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: ObservableRefCount$RefConnection(io.reactivex.internal.operators.observable.ObservableRefCount) -wangdaye.com.geometricweather.R$attr: int customIntegerValue -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_month_vertical_padding -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) -okhttp3.HttpUrl$Builder: java.lang.String host -com.google.android.material.R$style: int Widget_MaterialComponents_CheckedTextView -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.savedstate.SavedStateRegistry mSavedStateRegistry -com.turingtechnologies.materialscrollbar.R$color: int material_grey_100 -wangdaye.com.geometricweather.R$styleable: int Preference_android_defaultValue -androidx.constraintlayout.utils.widget.ImageFilterView: float getBrightness() -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerId -androidx.transition.R$attr: int font -androidx.hilt.work.R$drawable: int notification_bg_low_pressed -com.turingtechnologies.materialscrollbar.R$style -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue getOrCreateQueue() -cyanogenmod.weatherservice.ServiceRequestResult: void writeToParcel(android.os.Parcel,int) -com.xw.repo.bubbleseekbar.R$id: int split_action_bar -androidx.fragment.R$dimen: int notification_small_icon_background_padding -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void dispose() -wangdaye.com.geometricweather.R$dimen: int design_navigation_icon_padding -androidx.viewpager2.R$dimen: int notification_main_column_padding_top -androidx.work.ArrayCreatingInputMerger -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean getYesterday() -wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_bias -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Large -com.google.android.material.R$attr: int actionBarTabStyle -androidx.preference.R$style: int Base_Animation_AppCompat_DropDownUp -com.turingtechnologies.materialscrollbar.R$color: int primary_material_dark -wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_srcCompat -okhttp3.Request$Builder: okhttp3.Request$Builder head() -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.ExternalViewProperties mExternalViewProperties -androidx.vectordrawable.R$id: int actions -james.adaptiveicon.R$attr: int spinnerStyle -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon -com.google.android.material.R$drawable: int abc_textfield_default_mtrl_alpha -androidx.vectordrawable.R$attr: R$attr() -james.adaptiveicon.R$color: int abc_search_url_text_pressed -cyanogenmod.util.ColorUtils$1: int compare(com.android.internal.util.cm.palette.Palette$Swatch,com.android.internal.util.cm.palette.Palette$Swatch) -okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeOptional(java.lang.Object,java.lang.Object[]) -wangdaye.com.geometricweather.R$animator: int mtrl_btn_state_list_anim -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivityCreated(android.app.Activity,android.os.Bundle) -wangdaye.com.geometricweather.R$layout: int widget_multi_city_horizontal -retrofit2.OkHttpCall: boolean isExecuted() -com.xw.repo.bubbleseekbar.R$layout: int abc_screen_simple -androidx.appcompat.R$string: int abc_searchview_description_clear -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderAuthority -androidx.coordinatorlayout.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_MIDDLE -android.support.v4.os.ResultReceiver -androidx.constraintlayout.widget.R$color: int bright_foreground_material_dark -com.bumptech.glide.R$styleable: int[] CoordinatorLayout_Layout -com.turingtechnologies.materialscrollbar.R$layout: int abc_expanded_menu_layout -androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_alpha -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean offer(java.lang.Object) -android.didikee.donate.R$attr: int trackTintMode -androidx.recyclerview.widget.RecyclerView$SavedState: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -com.google.android.material.tabs.TabItem: TabItem(android.content.Context) -androidx.appcompat.resources.R$id: int notification_background -androidx.constraintlayout.widget.R$id: int SHOW_PATH -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_navigationIcon -com.google.android.material.R$dimen: int mtrl_badge_long_text_horizontal_padding -wangdaye.com.geometricweather.R$attr: int wavePeriod -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_4G -wangdaye.com.geometricweather.R$color: int error_color_material_dark -androidx.vectordrawable.animated.R$id: int action_divider -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner -androidx.preference.R$id: int action_menu_divider -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontStyle -androidx.preference.R$attr: int icon -com.google.gson.stream.JsonReader: int PEEKED_TRUE -io.reactivex.Observable: io.reactivex.Observable switchMapSingle(io.reactivex.functions.Function) -okhttp3.internal.platform.AndroidPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_27 -com.turingtechnologies.materialscrollbar.R$attr: int actionBarDivider -wangdaye.com.geometricweather.R$id: int widget_day_week_title -androidx.recyclerview.R$id: int right_side -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: int getStatus() -okhttp3.Connection: okhttp3.Protocol protocol() -androidx.appcompat.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments text -cyanogenmod.weather.ICMWeatherManager$Stub -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_removeCustomTileWithTag -androidx.preference.R$style: int Theme_AppCompat -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onNext(java.lang.Object) -androidx.preference.R$string: int abc_shareactionprovider_share_with -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_calendar_input_mode -androidx.appcompat.R$styleable: int ActionBar_navigationMode -com.google.android.material.R$xml: R$xml() -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton_Overflow -cyanogenmod.app.CustomTile$ListExpandedStyle -androidx.preference.R$drawable: int abc_btn_radio_to_on_mtrl_000 -wangdaye.com.geometricweather.R$styleable: int Spinner_android_entries -com.jaredrummler.android.colorpicker.R$style: int Preference_CheckBoxPreference_Material -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator USE_EDGE_SERVICE_FOR_GESTURES_VALIDATOR -androidx.appcompat.widget.SwitchCompat: android.content.res.ColorStateList getTrackTintList() -com.google.android.material.textfield.MaterialAutoCompleteTextView: void setAdapter(android.widget.ListAdapter) -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -androidx.appcompat.R$drawable: int btn_radio_off_mtrl -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeightLarge -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_SearchResult_Title -androidx.appcompat.R$attr: int switchMinWidth -okio.BufferedSink -wangdaye.com.geometricweather.R$transition: int search_activity_return -wangdaye.com.geometricweather.R$styleable: int Transition_transitionDisable -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableLeftCompat -wangdaye.com.geometricweather.R$string: int apparent_temperature -androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int KeyPosition_pathMotionArc -com.google.android.material.R$color: int material_grey_50 -cyanogenmod.app.CustomTileListenerService: java.lang.String SERVICE_INTERFACE -wangdaye.com.geometricweather.R$styleable: int TabItem_android_text -okhttp3.internal.http2.Http2Stream: void receiveFin() -com.google.android.material.bottomnavigation.BottomNavigationView: int getMaxItemCount() -com.turingtechnologies.materialscrollbar.R$id: int parallax -androidx.appcompat.widget.ViewStubCompat: void setLayoutInflater(android.view.LayoutInflater) -com.turingtechnologies.materialscrollbar.R$attr: int backgroundStacked -androidx.preference.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setHourText(java.lang.String) -androidx.appcompat.R$styleable: int[] FontFamilyFont -androidx.preference.R$layout: int abc_alert_dialog_title_material -wangdaye.com.geometricweather.R$transition: int search_activity_shared_enter -okhttp3.internal.http2.Http2Connection$6: int val$streamId -wangdaye.com.geometricweather.R$interpolator: int mtrl_linear_out_slow_in -cyanogenmod.power.IPerformanceManager$Stub: android.os.IBinder asBinder() -com.google.android.material.navigation.NavigationView: void setItemTextColor(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$id: int bottom -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderFetchTimeout -com.google.gson.JsonIOException: JsonIOException(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastHorizontalBias -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: io.reactivex.Observer observer -com.bumptech.glide.R$styleable: int GradientColor_android_startY -com.turingtechnologies.materialscrollbar.R$attr: int chipSpacingVertical -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder httpOnly() -androidx.activity.R$layout: R$layout() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerError(java.lang.Throwable) -android.didikee.donate.R$attr: int buttonStyleSmall -cyanogenmod.profiles.StreamSettings: int mValue -android.didikee.donate.R$attr: int listChoiceBackgroundIndicator -com.jaredrummler.android.colorpicker.R$attr: int preferenceStyle -androidx.work.R$styleable: int FontFamily_fontProviderPackage -okhttp3.internal.http2.Http2Connection$1: void execute() -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endY -com.google.android.material.transformation.TransformationChildLayout: TransformationChildLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -com.google.android.material.R$animator: int linear_indeterminate_line1_head_interpolator -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endX -androidx.constraintlayout.widget.R$attr: int windowFixedWidthMinor -wangdaye.com.geometricweather.R$string: int key_widget_clock_day_details -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_icon -com.turingtechnologies.materialscrollbar.R$id: int home -androidx.constraintlayout.widget.R$attr: int flow_horizontalAlign -androidx.constraintlayout.widget.R$id: int actions -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableStartCompat -com.google.android.material.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -com.google.android.material.R$string: int mtrl_exceed_max_badge_number_suffix -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean disposed -wangdaye.com.geometricweather.R$layout: int abc_action_bar_up_container -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_toLeftOf -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver -androidx.constraintlayout.widget.R$id: int action_menu_divider -james.adaptiveicon.R$color: int abc_tint_btn_checkable -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_spinnerStyle -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void cancelTimer() -com.xw.repo.bubbleseekbar.R$attr: int buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.R$font: int product_sans_light -wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean isEntityUpdateable() -androidx.customview.R$id: int action_divider -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: boolean val$showing -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabView -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TIMESTAMP -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabView -okhttp3.internal.http2.Http2Codec: Http2Codec(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http2.Http2Connection) -james.adaptiveicon.R$styleable: int ActionBar_backgroundStacked -com.google.android.material.R$styleable: int NavigationView_itemIconSize -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarStyle -com.google.android.material.chip.Chip: float getChipStrokeWidth() -james.adaptiveicon.R$style: int Widget_AppCompat_PopupWindow -com.google.android.material.R$drawable: int abc_list_longpressed_holo -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onComplete() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconTintMode -cyanogenmod.app.IProfileManager$Stub: java.lang.String DESCRIPTOR -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: long serialVersionUID -wangdaye.com.geometricweather.R$dimen: int material_clock_hand_center_dot_radius -com.google.android.material.R$color: int button_material_dark -com.bumptech.glide.integration.okhttp.R$attr: int layout_behavior -wangdaye.com.geometricweather.R$drawable: int shortcuts_hail_foreground -com.jaredrummler.android.colorpicker.R$attr: int firstBaselineToTopHeight -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sunContainer -androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitle -com.google.android.material.button.MaterialButtonToggleGroup: void setSelectionRequired(boolean) -androidx.constraintlayout.widget.R$attr: int layout_constraintRight_toRightOf -com.google.android.material.card.MaterialCardView: void setCardForegroundColor(android.content.res.ColorStateList) -okhttp3.internal.http2.Http2Reader$ContinuationSource: Http2Reader$ContinuationSource(okio.BufferedSource) -com.google.android.material.appbar.AppBarLayout$Behavior: AppBarLayout$Behavior() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$array: int weather_source_values -com.google.android.material.R$styleable: int SwitchCompat_trackTint -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.disposables.Disposable upstream -com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalBias -com.google.android.material.R$attr: int colorOnBackground -com.google.android.material.R$dimen: int material_clock_number_text_size -io.reactivex.Observable: io.reactivex.Observable defer(java.util.concurrent.Callable) -android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMark -android.didikee.donate.R$attr: int toolbarStyle -wangdaye.com.geometricweather.R$drawable: int dialog_background -okhttp3.internal.cache.DiskLruCache$Snapshot: okhttp3.internal.cache.DiskLruCache$Editor edit() -com.turingtechnologies.materialscrollbar.R$color: int abc_btn_colored_text_material -androidx.appcompat.R$styleable: int Toolbar_titleTextColor -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onComplete() -com.turingtechnologies.materialscrollbar.R$anim: int design_snackbar_out -wangdaye.com.geometricweather.R$integer: int cancel_button_image_alpha -james.adaptiveicon.R$styleable: int[] AppCompatSeekBar -androidx.appcompat.widget.SearchView: SearchView(android.content.Context) -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onComplete() -com.google.android.material.chip.Chip: java.lang.CharSequence getChipText() -okhttp3.OkHttpClient: javax.net.ssl.HostnameVerifier hostnameVerifier() -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -retrofit2.BuiltInConverters$RequestBodyConverter: okhttp3.RequestBody convert(okhttp3.RequestBody) -james.adaptiveicon.R$id: int titleDividerNoCustom -com.google.android.material.card.MaterialCardView: void setRadius(float) -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.Integer index -com.xw.repo.bubbleseekbar.R$style: int Base_AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Wind getWind() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -androidx.preference.PreferenceGroup$SavedState: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObserverResourceWrapper: long serialVersionUID -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog -androidx.appcompat.R$id: int accessibility_custom_action_6 -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnSettingsClickIntent(android.content.Intent) -com.google.android.material.R$styleable: int AppCompatTheme_checkedTextViewStyle -androidx.recyclerview.R$dimen: int fastscroll_minimum_range -com.google.android.material.R$attr: int layout_constraintWidth_max -androidx.legacy.coreutils.R$drawable: R$drawable() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: HourlyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -androidx.hilt.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$attr: int preserveIconSpacing -okio.Buffer: okio.BufferedSink writeUtf8(java.lang.String,int,int) -wangdaye.com.geometricweather.R$attr: int statusBarScrim -wangdaye.com.geometricweather.R$styleable: int CardView_cardPreventCornerOverlap -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType UpdateInTxArray -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_12 -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_setActiveProfile_0 -wangdaye.com.geometricweather.R$color: int abc_tint_btn_checkable -io.reactivex.internal.observers.LambdaObserver: boolean isDisposed() -james.adaptiveicon.R$styleable: int ActionMode_backgroundSplit -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endY -androidx.preference.R$style: int Base_V7_Widget_AppCompat_EditText -androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context) -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType valueOf(java.lang.String) -androidx.loader.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView -androidx.preference.R$style: int Base_AlertDialog_AppCompat -androidx.swiperefreshlayout.R$layout: int notification_action_tombstone -com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationY(float) -com.google.android.material.R$dimen: int notification_media_narrow_margin -okhttp3.WebSocket: okhttp3.Request request() -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type[] typeArguments -cyanogenmod.providers.CMSettings$Secure: java.lang.String APP_PERFORMANCE_PROFILES_ENABLED -android.didikee.donate.R$style: int TextAppearance_AppCompat_Medium -androidx.preference.R$style: int Base_Widget_AppCompat_Button_Borderless -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorPrimary -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_CBC_SHA -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: MinutelyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -wangdaye.com.geometricweather.R$attr: int textAppearanceBody2 -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$id: int view_offset_helper -com.google.android.material.R$styleable: int ActionBar_backgroundStacked -android.didikee.donate.R$id: int home -okhttp3.Challenge: okhttp3.Challenge withCharset(java.nio.charset.Charset) -cyanogenmod.os.Concierge: Concierge() -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomAppBar_Colored -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int limit -wangdaye.com.geometricweather.R$interpolator: R$interpolator() -okhttp3.HttpUrl: java.lang.String encodedFragment() -com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog -cyanogenmod.providers.CMSettings$System -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cpb -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionBar -androidx.lifecycle.ReportFragment: void onResume() -androidx.appcompat.resources.R$styleable -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: IWeatherProviderServiceClient$Stub$Proxy(android.os.IBinder) -okhttp3.internal.http1.Http1Codec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) -okhttp3.OkHttpClient$Builder: okhttp3.Authenticator proxyAuthenticator -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton_CloseMode -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -okhttp3.internal.connection.RealConnection: okhttp3.internal.ws.RealWebSocket$Streams newWebSocketStreams(okhttp3.internal.connection.StreamAllocation) -androidx.constraintlayout.widget.R$attr: int mock_labelBackgroundColor -com.jaredrummler.android.colorpicker.R$attr: int summaryOn -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -com.google.gson.stream.JsonWriter: java.lang.String indent -wangdaye.com.geometricweather.R$styleable: int TouchScrollBar_msb_autoHide -wangdaye.com.geometricweather.R$attr: int passwordToggleContentDescription -okhttp3.RealCall$AsyncCall: void execute() -okhttp3.logging.LoggingEventListener: void secureConnectStart(okhttp3.Call) -androidx.lifecycle.LiveData: void observeForever(androidx.lifecycle.Observer) -androidx.preference.R$styleable: int AppCompatTextView_drawableRightCompat -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: Hourly(java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_2 -androidx.preference.R$style: int Preference_DropDown_Material -wangdaye.com.geometricweather.R$drawable: int ic_delete -io.reactivex.Observable: io.reactivex.Observable sample(io.reactivex.ObservableSource) -com.google.android.material.R$color: int design_default_color_secondary -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_elevation_material -com.google.android.material.R$styleable: int AppCompatImageView_android_src -com.google.android.material.R$animator: int linear_indeterminate_line2_head_interpolator -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -wangdaye.com.geometricweather.R$attr: int popupTheme -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean currentPosition -androidx.constraintlayout.widget.R$attr: int colorBackgroundFloating -james.adaptiveicon.R$attr: int actionModeBackground -wangdaye.com.geometricweather.R$styleable: int Slider_tickColorInactive -james.adaptiveicon.R$styleable: int AlertDialog_listLayout -okhttp3.FormBody: java.lang.String encodedValue(int) -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_menu_layout -com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout_PrimarySurface -retrofit2.BuiltInConverters$RequestBodyConverter: BuiltInConverters$RequestBodyConverter() -com.google.android.material.navigation.NavigationView: void setNavigationItemSelectedListener(com.google.android.material.navigation.NavigationView$OnNavigationItemSelectedListener) -cyanogenmod.app.ProfileGroup -androidx.lifecycle.extensions.R$style: int Widget_Compat_NotificationActionContainer -com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior: AppBarLayout$ScrollingViewBehavior() -com.turingtechnologies.materialscrollbar.R$styleable: int[] CoordinatorLayout_Layout -wangdaye.com.geometricweather.R$attr: int touchRegionId -androidx.lifecycle.ComputableLiveData: void invalidate() -wangdaye.com.geometricweather.R$drawable: int notification_template_icon_low_bg -androidx.fragment.app.SuperNotCalledException -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTheme -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: float getProgress() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object readKey(android.database.Cursor,int) -androidx.appcompat.resources.R$id: int accessibility_custom_action_22 -io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer) -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motionTarget -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver -wangdaye.com.geometricweather.R$string: int content_desc_search_filter_off -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogTheme -com.google.android.material.R$attr: int barrierMargin -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter -androidx.preference.R$integer: int abc_config_activityDefaultDur -wangdaye.com.geometricweather.R$drawable: int btn_radio_off_mtrl -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String level -com.turingtechnologies.materialscrollbar.R$styleable: int TouchScrollBar_msb_hideDelayInMilliseconds -com.google.android.material.R$drawable: int abc_control_background_material -retrofit2.RequestFactory$Builder: retrofit2.RequestFactory build() -androidx.swiperefreshlayout.R$layout: int notification_template_custom_big -com.turingtechnologies.materialscrollbar.R$attr: int collapseContentDescription -cyanogenmod.alarmclock.CyanogenModAlarmClock: CyanogenModAlarmClock() -android.support.v4.os.IResultReceiver$Default -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long COMPLETE_MASK -android.didikee.donate.R$id: int spacer -com.jaredrummler.android.colorpicker.R$dimen: int notification_large_icon_height -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removePathSegment(int) -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: FlowableCreate$SerializedEmitter(io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter) -com.google.android.material.R$attr: int materialCalendarHeaderTitle -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: MfHistoryResult$History$Snow() -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_side_padding -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon -com.google.android.material.R$styleable: int SwitchCompat_switchTextAppearance -androidx.constraintlayout.widget.R$attr: int drawableBottomCompat -androidx.recyclerview.R$drawable: int notification_icon_background -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierDirection -wangdaye.com.geometricweather.R$color: int mtrl_fab_icon_text_color_selector -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryInnerObserver boundaryObserver -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderAuthority -com.jaredrummler.android.colorpicker.ColorPickerView: int getPreferredHeight() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setAqi(java.lang.String) -okhttp3.Request: java.util.List headers(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: float unitFactor -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode END -androidx.preference.R$styleable: int AppCompatTheme_actionModePasteDrawable -wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_EXCESSIVE -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean isDisposed() -okio.Buffer: java.lang.String toString() -android.didikee.donate.R$dimen: int hint_pressed_alpha_material_dark -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_icon_color_selector_colored -com.google.android.material.R$attr: int rippleColor -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_CBC_SHA -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: java.util.concurrent.atomic.AtomicReference upstream -cyanogenmod.app.IProfileManager: void resetAll() -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: int phenomenonId -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_HOMESCREEN -android.didikee.donate.R$style: int Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_outline_box_expanded_padding -okio.RealBufferedSource$1: void close() -android.support.v4.app.RemoteActionCompatParcelizer: void write(androidx.core.app.RemoteActionCompat,androidx.versionedparcelable.VersionedParcel) -wangdaye.com.geometricweather.R$attr: int alertDialogTheme -com.turingtechnologies.materialscrollbar.R$id: int src_over -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cv -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.util.Date getDate() -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DialogWhenLarge -androidx.constraintlayout.widget.R$attr: int telltales_tailColor -com.google.android.material.R$attr: int cornerSizeBottomRight -androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -io.reactivex.Observable: io.reactivex.Observable dematerialize(io.reactivex.functions.Function) -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_BATTERY_STYLE -com.google.android.material.R$styleable: int Constraint_pathMotionArc -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.Query queryRawCreateListArgs(java.lang.String,java.util.Collection) -androidx.preference.R$style: int TextAppearance_AppCompat_Small -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_PopupMenu -com.turingtechnologies.materialscrollbar.R$drawable: int abc_spinner_textfield_background_material -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.disposables.Disposable upstream -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: io.reactivex.Observer downstream -android.didikee.donate.R$styleable: int Toolbar_titleMargins -com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_start -com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_alphaChannelText -io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Action) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.functions.Function mapper -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$attr: int hoveredFocusedTranslationZ -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -androidx.preference.R$style: int Animation_AppCompat_Dialog -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: MfWarningsResult$WarningAdvice() -com.google.android.material.R$style: int Theme_MaterialComponents -wangdaye.com.geometricweather.R$drawable: int notif_temp_16 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierDirection -com.xw.repo.bubbleseekbar.R$styleable: int[] CoordinatorLayout -androidx.core.R$id: int tag_screen_reader_focusable -com.google.android.material.textfield.TextInputLayout: void setStartIconDrawable(int) -androidx.viewpager.R$attr: int fontStyle -org.greenrobot.greendao.AbstractDaoMaster: void registerDaoClass(java.lang.Class) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionDropDownStyle -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_dither -androidx.appcompat.R$attr: int buttonBarNeutralButtonStyle -io.reactivex.Observable: io.reactivex.Single collect(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSrc(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int KeyPosition_drawPath -com.jaredrummler.android.colorpicker.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -androidx.work.R$bool: R$bool() -cyanogenmod.themes.ThemeManager$2: cyanogenmod.themes.ThemeManager this$0 -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicReference upstream -com.bumptech.glide.R$styleable: int CoordinatorLayout_keylines -okio.Pipe -okhttp3.internal.http1.Http1Codec: long headerLimit -android.didikee.donate.R$color: int abc_tint_seek_thumb -wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_xml -com.google.android.material.R$styleable: int Layout_layout_constraintWidth_max -james.adaptiveicon.R$color: int primary_material_light -wangdaye.com.geometricweather.db.entities.DaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession() -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endColor -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onSubscribe(org.reactivestreams.Subscription) -io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.ObservableSource,io.reactivex.functions.Function) -okio.Buffer: java.util.List segmentSizes() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_minWidth -androidx.dynamicanimation.R$integer: R$integer() -androidx.preference.R$color: R$color() -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontWeight -com.turingtechnologies.materialscrollbar.R$id: int none -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Body2 -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_btn_state_list_anim -androidx.preference.R$layout: int abc_popup_menu_header_item_layout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: AccuCurrentResult$Wind$Speed$Imperial() -androidx.preference.R$attr: int dialogLayout -wangdaye.com.geometricweather.R$styleable: int ActionMode_background -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_black -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_subMenuArrow -cyanogenmod.providers.CMSettings$System: java.lang.String SHOW_ALARM_ICON -io.reactivex.internal.util.HashMapSupplier: java.util.Map call() -androidx.preference.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf -androidx.lifecycle.DefaultLifecycleObserver: void onDestroy(androidx.lifecycle.LifecycleOwner) -com.google.android.material.R$drawable: int test_custom_background -androidx.constraintlayout.widget.R$id: int packed -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.List defense -wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_allowDividerAfterLastItem -wangdaye.com.geometricweather.R$string: int widget_trend_daily -com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -io.reactivex.Observable: io.reactivex.Observable concatMapEager(io.reactivex.functions.Function,int,int) -cyanogenmod.app.CustomTile$ExpandedItem$1: java.lang.Object[] newArray(int) -androidx.vectordrawable.R$id: int async -androidx.drawerlayout.R$dimen: int notification_right_side_padding_top -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline5 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Spinner_Underlined -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_30 -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextAppearanceActive(int) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Title -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_LEGACY_ICONPACK -com.google.android.material.R$styleable: int Spinner_popupTheme -androidx.preference.R$styleable: int AppCompatTheme_editTextColor -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_queryBackground -com.google.android.material.slider.BaseSlider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) -com.google.android.material.R$attr: int materialAlertDialogBodyTextStyle -cyanogenmod.app.CustomTileListenerService: void unregisterAsSystemService() -androidx.appcompat.app.AppCompatDelegateImpl$PanelFeatureState$SavedState -com.turingtechnologies.materialscrollbar.R$integer: int mtrl_tab_indicator_anim_duration_ms -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroup -com.google.android.material.R$string: int mtrl_picker_date_header_selected -com.turingtechnologies.materialscrollbar.R$color: int background_material_dark -androidx.lifecycle.extensions.R$id: int right_side -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String getUnit() -com.xw.repo.BubbleSeekBar: void setSecondTrackColor(int) -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_toolbarStyle -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalBias -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setDaytimeTemperature(int) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void access$700(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,io.reactivex.ObservableSource) -androidx.constraintlayout.widget.R$color: int abc_decor_view_status_guard -android.support.v4.graphics.drawable.IconCompatParcelizer: IconCompatParcelizer() -com.google.android.material.button.MaterialButton: int getIconPadding() -wangdaye.com.geometricweather.R$id: int item_about_header_appIcon -androidx.preference.R$style: int TextAppearance_AppCompat_Subhead -okhttp3.internal.http2.Http2Connection: long awaitPongsReceived -com.github.rahatarmanahmed.cpv.R$styleable: R$styleable() -androidx.constraintlayout.widget.Barrier: void setDpMargin(int) -wangdaye.com.geometricweather.R$attr: int bsb_bubble_color -com.google.android.material.R$attr: int tooltipFrameBackground -com.google.android.material.R$color: int abc_primary_text_disable_only_material_light -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dark -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour valueOf(java.lang.String) -android.didikee.donate.R$dimen: int abc_disabled_alpha_material_light -androidx.appcompat.widget.Toolbar: void setSubtitle(int) -androidx.lifecycle.SavedStateHandleController$1: SavedStateHandleController$1(androidx.lifecycle.Lifecycle,androidx.savedstate.SavedStateRegistry) -com.google.android.material.R$id: int wrap -cyanogenmod.content.Intent: java.lang.String ACTION_THEME_INSTALLED -james.adaptiveicon.R$drawable: int abc_list_focused_holo -com.bumptech.glide.R$attr: int layout_insetEdge -wangdaye.com.geometricweather.R$id: int chip2 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: java.util.List getValue() -androidx.appcompat.resources.R$id: int tag_unhandled_key_listeners -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$string: int widget_clock_day_week -androidx.preference.R$dimen: int abc_dropdownitem_icon_width -com.google.android.material.R$attr: int popupWindowStyle -androidx.customview.R$dimen: int notification_subtext_size -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: android.os.IBinder asBinder() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_LED_ON_VALIDATOR -wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_tailColor -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language FOLLOW_SYSTEM -androidx.fragment.R$id: int accessibility_custom_action_7 -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display3 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitationDuration() -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginTop -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: java.util.List brands -androidx.preference.R$id: int accessibility_custom_action_2 -com.xw.repo.bubbleseekbar.R$integer: R$integer() -com.bumptech.glide.integration.okhttp.R$dimen: int notification_small_icon_background_padding -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_track -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 -okhttp3.internal.cache.CacheInterceptor$1: boolean cacheRequestClosed -cyanogenmod.externalviews.ExternalView: void onActivityResumed(android.app.Activity) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1 -okhttp3.Address: javax.net.ssl.HostnameVerifier hostnameVerifier() -james.adaptiveicon.R$styleable: int[] PopupWindowBackgroundState -okio.ForwardingSource -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: AccuMinuteResult() -androidx.constraintlayout.widget.R$attr: int dragDirection -wangdaye.com.geometricweather.R$styleable: int Chip_chipIconEnabled -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorError -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -android.didikee.donate.R$id: int showTitle -wangdaye.com.geometricweather.R$attr: int progress_color -androidx.preference.R$attr: int showText -androidx.appcompat.R$id: int accessibility_custom_action_9 -androidx.coordinatorlayout.R$id: int forever -androidx.constraintlayout.widget.R$attr: int listChoiceIndicatorSingleAnimated -cyanogenmod.externalviews.KeyguardExternalView$8: cyanogenmod.externalviews.KeyguardExternalView this$0 -com.turingtechnologies.materialscrollbar.R$color: int primary_material_light -androidx.recyclerview.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.R$style: int Base_CardView -io.reactivex.internal.observers.DeferredScalarObserver -retrofit2.ParameterHandler$PartMap: void apply(retrofit2.RequestBuilder,java.util.Map) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCutDrawable -com.jaredrummler.android.colorpicker.R$attr: int switchTextAppearance -com.google.android.material.R$color: int mtrl_filled_background_color -okhttp3.Cookie: java.util.regex.Pattern DAY_OF_MONTH_PATTERN -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Body1 -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -okhttp3.Cookie: boolean persistent() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: AccuCurrentResult$WindChillTemperature$Imperial() -androidx.appcompat.widget.AppCompatTextView -wangdaye.com.geometricweather.R$styleable: int Badge_horizontalOffset -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_gravity -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.ObservableSource fallback -com.bumptech.glide.load.ImageHeaderParser$ImageType: boolean hasAlpha() -com.google.android.material.R$style: int Base_Animation_AppCompat_Tooltip -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: int UnitType -wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconTint -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_toLeftOf -androidx.recyclerview.R$id: int accessibility_custom_action_7 -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getWeatherText() -com.google.android.material.R$attr: int materialCalendarHeaderConfirmButton -wangdaye.com.geometricweather.R$id: int dialog_background_location_summary -androidx.preference.R$color: int bright_foreground_disabled_material_light -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startX -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: AccuDailyResult$DailyForecasts$Day$TotalLiquid() -com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonCompat -okhttp3.HttpUrl: java.lang.String USERNAME_ENCODE_SET -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VClipPath -retrofit2.adapter.rxjava2.Result: retrofit2.adapter.rxjava2.Result error(java.lang.Throwable) -androidx.lifecycle.Lifecycling: int GENERATED_CALLBACK -androidx.drawerlayout.R$styleable: int[] ColorStateListItem -com.turingtechnologies.materialscrollbar.R$styleable: int[] ScrimInsetsFrameLayout -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_toBottomOf -androidx.appcompat.R$drawable: int abc_list_selector_holo_dark -okio.GzipSink: GzipSink(okio.Sink) -cyanogenmod.profiles.StreamSettings: StreamSettings(int) -androidx.recyclerview.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$attr: int dialogMessage -com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.ValueAnimator startAngleRotate -com.jaredrummler.android.colorpicker.R$attr: int toolbarStyle -androidx.appcompat.R$dimen: int abc_text_size_display_1_material -androidx.hilt.R$styleable: int FontFamilyFont_android_ttcIndex -com.google.android.material.internal.ParcelableSparseArray -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pressure -androidx.viewpager.R$drawable -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void goAway(int,okhttp3.internal.http2.ErrorCode,okio.ByteString) -okhttp3.internal.http2.Header: okio.ByteString TARGET_SCHEME -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowMinWidthMinor -androidx.constraintlayout.widget.R$drawable: int abc_ic_ab_back_material -com.xw.repo.bubbleseekbar.R$attr: int popupMenuStyle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onBouncerShowing(boolean) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getPm10Color(android.content.Context) -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setBottomIconDrawable(android.graphics.drawable.Drawable) -okio.Util: void sneakyRethrow(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setBrandId(java.lang.String) -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void setDisposable(io.reactivex.disposables.Disposable) -com.xw.repo.bubbleseekbar.R$id: int blocking -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -wangdaye.com.geometricweather.R$styleable: int Toolbar_popupTheme -androidx.appcompat.widget.AppCompatImageView: android.graphics.PorterDuff$Mode getSupportImageTintMode() -com.google.android.material.R$attr: int progressBarStyle -com.google.android.material.appbar.AppBarLayout: void setLiftOnScrollTargetViewId(int) -android.didikee.donate.R$style: int Base_V23_Theme_AppCompat -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_height -androidx.appcompat.R$attr: int listChoiceIndicatorSingleAnimated -com.google.android.material.R$color: int cardview_shadow_end_color -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable[] TERMINATED -cyanogenmod.themes.IThemeChangeListener$Stub: int TRANSACTION_onProgress_0 -androidx.lifecycle.SavedStateViewModelFactory: androidx.savedstate.SavedStateRegistry mSavedStateRegistry -android.didikee.donate.R$attr: int titleMargin -com.turingtechnologies.materialscrollbar.R$attr: int textEndPadding -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getWeatherSource() -androidx.preference.R$layout: int abc_list_menu_item_layout -androidx.preference.R$id -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlActivated -com.github.rahatarmanahmed.cpv.CircularProgressView: java.util.List listeners -james.adaptiveicon.R$attr: int gapBetweenBars -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_week_setting -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean cancelled -androidx.appcompat.R$drawable: int abc_seekbar_track_material -com.turingtechnologies.materialscrollbar.R$anim: int design_bottom_sheet_slide_out -androidx.vectordrawable.animated.R$id: int right_side -james.adaptiveicon.R$color: int ripple_material_dark -cyanogenmod.app.ProfileGroup: java.util.UUID getUuid() -wangdaye.com.geometricweather.R$attr: int colorOnPrimarySurface -cyanogenmod.app.ThemeVersion$ComponentVersion: java.lang.String getName() -cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast() -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance -okhttp3.internal.http2.Http2Connection$6: okio.Buffer val$buffer -io.reactivex.Observable: io.reactivex.Observable lift(io.reactivex.ObservableOperator) -com.google.android.material.chip.Chip: void setChipCornerRadius(float) -com.google.android.material.R$id: int off -com.google.android.material.R$styleable: int MenuView_android_verticalDivider -cyanogenmod.providers.CMSettings$Global: java.lang.String ZEN_DISABLE_DUCKING_DURING_MEDIA_PLAYBACK -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_toTopOf -okhttp3.internal.http2.Http2Connection: java.net.Socket socket -wangdaye.com.geometricweather.R$id: int position -cyanogenmod.weather.WeatherInfo: int getWindSpeedUnit() -wangdaye.com.geometricweather.R$attr: int nestedScrollFlags -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -okio.SegmentPool: void recycle(okio.Segment) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ImageButton -com.xw.repo.bubbleseekbar.R$styleable: int[] DrawerArrowToggle -com.google.android.material.R$styleable: int SearchView_iconifiedByDefault -wangdaye.com.geometricweather.R$color: int abc_tint_edittext -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf -androidx.preference.R$attr: int actionModeShareDrawable -com.github.rahatarmanahmed.cpv.R$string: R$string() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Toolbar -okhttp3.Response: long receivedResponseAtMillis() -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetTop -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataContainer -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Switch -okhttp3.logging.LoggingEventListener: void callStart(okhttp3.Call) -com.github.rahatarmanahmed.cpv.CircularProgressView$5: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -androidx.preference.DropDownPreference: DropDownPreference(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastHorizontalStyle -androidx.vectordrawable.animated.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.R$id: int widget_day -okio.BufferedSource: int readUtf8CodePoint() -androidx.hilt.lifecycle.R$id: int action_text -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetStart -cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile[] getProfiles() -androidx.customview.R$id: int title -wangdaye.com.geometricweather.R$id: int notification_base_weather -com.google.android.material.R$attr: int fontProviderFetchStrategy -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getCo() -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_UPDATE_TIME -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -wangdaye.com.geometricweather.R$anim: R$anim() -com.google.android.material.R$styleable: int Layout_minWidth -androidx.viewpager.widget.PagerTabStrip: boolean getDrawFullUnderline() -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetBottom -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.Integer getAngle() -androidx.constraintlayout.widget.R$attr: int percentX -okhttp3.RequestBody$2: int val$offset -com.google.android.material.R$color: int material_deep_teal_500 -okhttp3.internal.NamedRunnable: void run() -wangdaye.com.geometricweather.R$string: int week_6 -com.google.android.material.textfield.TextInputLayout: void setEndIconOnClickListener(android.view.View$OnClickListener) -androidx.viewpager2.R$styleable: int GradientColor_android_endColor -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_horizontalDivider -wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarButtonStyle -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_menuCategory -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_orientation -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.ObservableSource second -com.google.android.material.R$styleable: int AppCompatSeekBar_tickMarkTintMode -com.google.android.material.R$styleable: int View_paddingEnd -com.google.android.material.R$styleable: int Chip_chipMinTouchTargetSize -wangdaye.com.geometricweather.R$id: int test_checkbox_android_button_tint -james.adaptiveicon.R$dimen: int abc_dialog_min_width_minor -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric -com.google.android.material.R$styleable: int Constraint_chainUseRtl -com.google.android.material.R$dimen: int mtrl_calendar_header_content_padding -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean syncFused -com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$styleable: int AppCompatTheme_radioButtonStyle -com.github.rahatarmanahmed.cpv.CircularProgressView: void stopAnimation() -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_13 -io.reactivex.internal.observers.LambdaObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Borderless -android.didikee.donate.R$styleable: int Toolbar_titleMargin -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -com.jaredrummler.android.colorpicker.R$attr: int windowMinWidthMinor -androidx.activity.R$id: int chronometer -androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_min -androidx.vectordrawable.R$styleable: int FontFamilyFont_fontStyle -android.didikee.donate.R$id: int listMode -cyanogenmod.externalviews.ExternalViewProperties: int getY() -com.bumptech.glide.R$id: int glide_custom_view_target_tag -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: int getTotalCount() -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: boolean isDisposed() -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onComplete() -okhttp3.internal.cache.FaultHidingSink: void onException(java.io.IOException) -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.MultipartBody$Part) -com.turingtechnologies.materialscrollbar.R$style: int AlertDialog_AppCompat_Light -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() -androidx.appcompat.R$id: int normal -cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_NETWORK_SETTINGS -wangdaye.com.geometricweather.R$attr: int chipIconTint -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.HistoryEntity,long) -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(double) -com.github.rahatarmanahmed.cpv.CircularProgressView$4 -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert -com.google.android.material.R$styleable: int MaterialCalendar_daySelectedStyle -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleDrawable(int) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void setInteractivity(boolean) -wangdaye.com.geometricweather.R$id: int notification_background -wangdaye.com.geometricweather.R$attr: int enforceTextAppearance -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -wangdaye.com.geometricweather.R$dimen: int current_weather_icon_container_size -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onSubscribe(org.reactivestreams.Subscription) -com.google.android.material.R$id: int edit_query -wangdaye.com.geometricweather.R$styleable: int[] ClockFaceView -androidx.appcompat.R$dimen: int notification_large_icon_width -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.Object adapt(retrofit2.Call) -wangdaye.com.geometricweather.main.Hilt_MainActivity -okhttp3.internal.ws.RealWebSocket$1: RealWebSocket$1(okhttp3.internal.ws.RealWebSocket) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date endDate -com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_hovered_focused -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindDirection(java.lang.String) -com.jaredrummler.android.colorpicker.R$dimen: int cpv_dialog_preview_width -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_subhead_material -io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_READY -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getDatetime() -androidx.core.R$id: int accessibility_custom_action_12 -androidx.recyclerview.R$id: int dialog_button -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status valueOf(java.lang.String) -androidx.viewpager2.R$dimen: int notification_right_icon_size -androidx.constraintlayout.widget.R$dimen: int abc_text_size_title_material -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatSeekBar -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property SunSetDate -com.google.android.material.R$styleable: int MaterialRadioButton_useMaterialThemeColors -wangdaye.com.geometricweather.R$color: int mtrl_btn_transparent_bg_color -cyanogenmod.platform.Manifest$permission: java.lang.String HARDWARE_ABSTRACTION_ACCESS -androidx.constraintlayout.widget.R$id: int gone -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun -com.turingtechnologies.materialscrollbar.R$id: int fill -cyanogenmod.providers.CMSettings$System$2 -com.google.android.material.R$styleable: int ConstraintSet_android_translationX -androidx.constraintlayout.widget.R$layout: int custom_dialog -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontWeight -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_collapsible -okhttp3.internal.http.CallServerInterceptor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX getTemperature() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_4_00 -android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_29 -cyanogenmod.weather.WeatherInfo: java.lang.String access$202(cyanogenmod.weather.WeatherInfo,java.lang.String) -com.bumptech.glide.R$attr: int fontProviderFetchStrategy -okhttp3.internal.http2.Header: okio.ByteString PSEUDO_PREFIX -wangdaye.com.geometricweather.R$drawable: int weather_sleet_pixel -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_pressed_holo_dark -androidx.legacy.coreutils.R$dimen: int notification_top_pad_large_text -androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_default_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int[] MaterialAutoCompleteTextView -com.google.android.material.R$attr: int actionBarTabTextStyle -com.jaredrummler.android.colorpicker.R$dimen: int abc_control_inset_material -com.google.android.material.R$dimen: int abc_disabled_alpha_material_dark -io.reactivex.Observable: io.reactivex.Observable retry(io.reactivex.functions.BiPredicate) -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog -com.google.android.material.R$style: int TextAppearance_AppCompat_Body2 -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarContainer -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_TextView -okhttp3.internal.http2.Http2Stream$FramingSink: boolean closed -com.google.android.material.R$styleable: int BottomNavigationView_itemIconSize -com.google.android.material.R$styleable: int MenuItem_alphabeticModifiers -wangdaye.com.geometricweather.R$attr: int switchTextOff -android.didikee.donate.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginEnd -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_typeface -io.reactivex.observers.DisposableObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf -james.adaptiveicon.R$anim: int abc_slide_in_bottom -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_gapBetweenBars -wangdaye.com.geometricweather.R$id: int material_hour_tv -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain12h -androidx.transition.R$id: int text -wangdaye.com.geometricweather.R$styleable: int SearchView_commitIcon -androidx.hilt.R$id: int accessibility_custom_action_25 -com.google.android.material.R$attr: int ratingBarStyleIndicator -wangdaye.com.geometricweather.R$color: int colorTextDark -cyanogenmod.power.IPerformanceManager: int getNumberOfProfiles() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: int UnitType -com.google.android.material.bottomappbar.BottomAppBar$Behavior: BottomAppBar$Behavior() -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_backgroundTintMode -cyanogenmod.weather.CMWeatherManager$2$1: int val$status -com.xw.repo.bubbleseekbar.R$attr: int queryHint -androidx.customview.R$string: R$string() -androidx.appcompat.R$style: int Widget_AppCompat_ListPopupWindow -wangdaye.com.geometricweather.R$attr: int chipSpacing -androidx.lifecycle.extensions.R$string -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_2 -wangdaye.com.geometricweather.common.ui.widgets.TagView: void setChecked(boolean) -okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.Request request -androidx.viewpager2.R$style: int Widget_Compat_NotificationActionContainer -okhttp3.internal.http2.Http2Codec: java.lang.String UPGRADE -com.xw.repo.bubbleseekbar.R$drawable: int notification_icon_background -com.google.android.material.R$styleable: int Transform_android_rotationX -androidx.recyclerview.R$styleable: int RecyclerView_stackFromEnd -com.xw.repo.bubbleseekbar.R$attr: int numericModifiers -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtended(boolean) -androidx.preference.R$styleable: int AppCompatTheme_imageButtonStyle -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -androidx.preference.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$style: int CardView_Light -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.Map rights -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256 -androidx.preference.R$style: int Widget_AppCompat_AutoCompleteTextView -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SearchView -wangdaye.com.geometricweather.R$drawable: int abc_item_background_holo_light -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver CANCELLED -wangdaye.com.geometricweather.R$id: int activity_widget_config_scrollContainer -com.google.android.material.R$color: int background_floating_material_dark -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial Imperial -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_enabled -com.jaredrummler.android.colorpicker.R$string: int abc_menu_space_shortcut_label -com.jaredrummler.android.colorpicker.R$drawable: int abc_item_background_holo_dark -com.turingtechnologies.materialscrollbar.R$id: int transition_layout_save -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSo2() -com.google.android.material.R$drawable: int mtrl_ic_error -androidx.preference.R$styleable: int SeekBarPreference_android_layout -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_popupMenuStyle -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconTint -james.adaptiveicon.R$styleable: int AppCompatTheme_panelMenuListTheme -com.jaredrummler.android.colorpicker.R$id: int circle -cyanogenmod.weather.CMWeatherManager$2: CMWeatherManager$2(cyanogenmod.weather.CMWeatherManager) -com.google.android.material.R$attr: int itemShapeInsetBottom -android.didikee.donate.R$id: int title -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -okio.AsyncTimeout$1: okio.Sink val$sink -cyanogenmod.profiles.ConnectionSettings$1: ConnectionSettings$1() -androidx.swiperefreshlayout.R$id: int right_icon -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstVerticalBias -com.google.android.material.R$attr: int actionBarWidgetTheme -okhttp3.ResponseBody$BomAwareReader: okio.BufferedSource source -wangdaye.com.geometricweather.R$id: int item_icon_provider_title -androidx.constraintlayout.widget.R$color: int material_grey_100 -com.google.android.material.appbar.CollapsingToolbarLayout: void setMaxLines(int) -androidx.lifecycle.R: R() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onActionModeFinished(android.view.ActionMode) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.HourlyEntity) -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.Handler mHandler -androidx.appcompat.R$attr: int thumbTintMode -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_maxWidth -wangdaye.com.geometricweather.R$attr: int chipGroupStyle -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode COMPRESSION_ERROR -cyanogenmod.app.IProfileManager: boolean removeProfile(cyanogenmod.app.Profile) -com.google.android.material.R$styleable: int AppCompatImageView_srcCompat -com.jaredrummler.android.colorpicker.R$id: int line1 -androidx.constraintlayout.widget.R$styleable: int SearchView_searchHintIcon -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorTextColor -james.adaptiveicon.R$id: int notification_main_column -com.turingtechnologies.materialscrollbar.R$attr: int searchIcon -androidx.preference.PreferenceGroup$SavedState -androidx.hilt.work.R$styleable: int[] Fragment -androidx.dynamicanimation.R$drawable: int notification_bg -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid -okio.SegmentedByteString: int lastIndexOf(byte[],int) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: ExternalViewProviderService$Provider$ProviderImpl$3(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer dewPoint -com.turingtechnologies.materialscrollbar.R$dimen: R$dimen() -androidx.core.R$color: int notification_action_color_filter -androidx.appcompat.resources.R$drawable: int notification_tile_bg -com.google.android.material.R$styleable: int ConstraintSet_flow_verticalGap -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_Overflow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours Past6Hours -androidx.lifecycle.extensions.R$id: int async -androidx.preference.R$styleable: int[] RecyclerView -androidx.appcompat.R$color: int foreground_material_light -com.google.android.material.R$style: int Base_V7_Theme_AppCompat -android.didikee.donate.R$id: int notification_background -com.jaredrummler.android.colorpicker.R$id: int notification_background -androidx.preference.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.R$attr: int rv_side -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarSplitStyle -wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_material -wangdaye.com.geometricweather.R$attr: int flow_firstVerticalStyle -com.google.android.material.R$attr: int colorControlActivated -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: long serialVersionUID -androidx.appcompat.widget.Toolbar: int getContentInsetLeft() -androidx.preference.R$styleable: int ActionBar_indeterminateProgressStyle -retrofit2.OptionalConverterFactory: OptionalConverterFactory() -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void onDetachedFromWindow() -cyanogenmod.externalviews.ExternalViewProperties: int getHeight() -androidx.preference.R$styleable: int ActionMode_height -wangdaye.com.geometricweather.R$string: int resident_location -androidx.appcompat.R$styleable: int AppCompatTheme_buttonStyleSmall -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$attr: int lastBaselineToBottomHeight -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_TextInputLayout -androidx.preference.R$attr: int actionButtonStyle -androidx.fragment.R$id: int accessibility_custom_action_20 -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_CheckedTextView -cyanogenmod.weather.WeatherInfo: double access$802(cyanogenmod.weather.WeatherInfo,double) -com.google.android.material.R$attr: int checkedIconSize -com.google.android.material.R$styleable: int[] CardView -com.google.android.material.R$attr: int hideMotionSpec -com.google.android.material.R$id: int mtrl_calendar_main_pane -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_updateNotificationGroup -com.google.android.material.R$styleable: int AppCompatTheme_editTextStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: long EpochSet -wangdaye.com.geometricweather.R$string: int abc_menu_alt_shortcut_label -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_7 -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: ExecutorScheduler$ExecutorWorker$BooleanRunnable(java.lang.Runnable) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_snackbar_margin -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogIcon -cyanogenmod.providers.CMSettings$Global: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -androidx.appcompat.widget.AppCompatCheckBox: void setSupportBackgroundTintList(android.content.res.ColorStateList) -androidx.recyclerview.widget.RecyclerView: void setLayoutFrozen(boolean) -okhttp3.Cache: void close() -okio.Buffer: long readHexadecimalUnsignedLong() -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_homeLayout -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -com.google.android.material.R$attr: int materialCalendarHeaderCancelButton -androidx.work.R$id: int accessibility_custom_action_0 -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_behavior -com.xw.repo.bubbleseekbar.R$integer: int status_bar_notification_info_maxnum -com.turingtechnologies.materialscrollbar.R$attr: int lastBaselineToBottomHeight -wangdaye.com.geometricweather.R$drawable: int notif_temp_106 -androidx.vectordrawable.animated.R$color: int ripple_material_light -androidx.constraintlayout.widget.R$attr: int targetId -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance -okio.ByteString: int lastIndexOf(byte[]) -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit MMHG -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter -androidx.constraintlayout.widget.R$style: int Base_AlertDialog_AppCompat -james.adaptiveicon.R$drawable -io.reactivex.internal.util.VolatileSizeArrayList: boolean removeAll(java.util.Collection) -androidx.preference.R$styleable: int ActionMode_closeItemLayout -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: AccuDailyResult$DailyForecasts$Night$Ice() -androidx.appcompat.R$style: int Base_V7_Theme_AppCompat -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_1 -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float NitrogenDioxide -androidx.appcompat.R$styleable: int AppCompatTheme_android_windowIsFloating -wangdaye.com.geometricweather.R$styleable: int[] AppBarLayout -wangdaye.com.geometricweather.R$string: int key_list_animation_switch -com.google.android.material.R$dimen: int mtrl_low_ripple_default_alpha -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_drawableSize -wangdaye.com.geometricweather.R$id: int widget_day_title -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Subhead -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_handleColor -androidx.constraintlayout.widget.R$styleable: int[] StateListDrawableItem -cyanogenmod.app.LiveLockScreenInfo$1: cyanogenmod.app.LiveLockScreenInfo createFromParcel(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -android.didikee.donate.R$styleable: int ActionBar_contentInsetEnd -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Info -okhttp3.CertificatePinner: okhttp3.CertificatePinner DEFAULT -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: void dispose() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -cyanogenmod.power.PerformanceManager: boolean setPowerProfile(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: int UnitType -androidx.viewpager.R$string -androidx.work.R$drawable: int notification_bg_normal -okhttp3.internal.http2.Settings: int MAX_CONCURRENT_STREAMS -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_outline_box_expanded_padding -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon -retrofit2.http.QueryMap: boolean encoded() -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabText -androidx.viewpager2.R$id: int accessibility_custom_action_5 -androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingLeft -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.disposables.Disposable upstream -okhttp3.internal.ws.RealWebSocket: int receivedPingCount -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isMaybe -io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.Observer) -androidx.constraintlayout.widget.R$attr: int listDividerAlertDialog -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getCityId() -okhttp3.internal.http1.Http1Codec -com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text -wangdaye.com.geometricweather.R$attr: int layout_keyline -androidx.constraintlayout.widget.R$attr: int titleTextStyle -com.github.rahatarmanahmed.cpv.BuildConfig: int VERSION_CODE -androidx.appcompat.R$styleable: int AppCompatTheme_textColorSearchUrl -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -james.adaptiveicon.R$attr: int panelMenuListWidth -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabSelectedTextColor -androidx.customview.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -com.google.android.material.chip.Chip: void setChecked(boolean) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: ObservableTimeout$TimeoutFallbackObserver(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.ObservableSource) -androidx.preference.Preference: Preference(android.content.Context) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer moldLevel -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Medium_Inverse -com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_DIGIT -androidx.activity.R$dimen -androidx.lifecycle.MutableLiveData: void setValue(java.lang.Object) -okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.RealWebSocket$Streams streams -io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String,int) -com.google.android.material.R$styleable: int Motion_drawPath -android.didikee.donate.R$attr: int colorAccent -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedWidthMinor() -cyanogenmod.hardware.ICMHardwareService: boolean requireAdaptiveBacklightForSunlightEnhancement() -io.reactivex.internal.observers.DeferredScalarDisposable: void complete() -wangdaye.com.geometricweather.R$attr: int shapeAppearance -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_anchor -androidx.preference.R$style: int Base_Widget_AppCompat_TextView -cyanogenmod.app.CMTelephonyManager: int ASK_FOR_SUBSCRIPTION_ID -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int INTERRUPTING -androidx.loader.R$layout: int notification_action_tombstone -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorAccent -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_enabled -wangdaye.com.geometricweather.R$string: int key_widget_minimal_icon -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long serialVersionUID -wangdaye.com.geometricweather.R$attr: int expandedTitleMargin -androidx.appcompat.R$color: int switch_thumb_material_light -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight -io.reactivex.exceptions.CompositeException: java.lang.String getMessage() -org.greenrobot.greendao.AbstractDaoSession: java.util.List queryRaw(java.lang.Class,java.lang.String,java.lang.String[]) -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.CMHardwareManager getInstance(android.content.Context) -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.util.concurrent.TimeUnit unit -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: android.graphics.Matrix getLocalMatrix() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -androidx.activity.R$id: int icon_group -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: boolean isDisposed() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonStyleSmall -cyanogenmod.externalviews.KeyguardExternalView$3: int val$width -retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: CompletableFutureCallAdapterFactory$CallCancelCompletableFuture(retrofit2.Call) -com.google.android.material.R$dimen: int mtrl_calendar_days_of_week_height -androidx.activity.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.R$drawable: int weather_snow_1 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_tooltipFrameBackground -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER_Y -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastHorizontalBias -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_writePersistentBytes -androidx.constraintlayout.widget.R$attr: int dialogCornerRadius -com.google.android.material.R$styleable: int MaterialCalendarItem_itemFillColor -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_handleColor -james.adaptiveicon.R$color: int primary_text_disabled_material_dark -com.jaredrummler.android.colorpicker.R$drawable: int preference_list_divider_material -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar_Small -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_BottomNavigationView -com.xw.repo.bubbleseekbar.R$drawable: int abc_control_background_material -cyanogenmod.externalviews.ExternalViewProviderService$Provider: int getWindowFlags() -android.didikee.donate.R$styleable: int Toolbar_subtitleTextAppearance -androidx.appcompat.R$attr: int arrowHeadLength -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Caption -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onComplete() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPm10() -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.util.Date date -cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,int,int) -wangdaye.com.geometricweather.R$attr: int preferenceCategoryStyle -com.google.android.material.R$styleable: int CompoundButton_buttonCompat -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets -com.google.android.material.R$color: int design_fab_shadow_mid_color -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: int UnitType -james.adaptiveicon.R$attr: int actionModeCloseButtonStyle -com.google.android.material.R$style: int Widget_Support_CoordinatorLayout -com.turingtechnologies.materialscrollbar.R$string: int password_toggle_content_description -com.google.android.material.R$attr: int layoutManager -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: java.lang.String getWindArrow() -com.google.android.material.R$style: int Widget_AppCompat_Light_SearchView -android.didikee.donate.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -com.google.android.material.textfield.TextInputLayout: void setCounterOverflowTextColor(android.content.res.ColorStateList) -okhttp3.internal.connection.RouteSelector$Selection: int nextRouteIndex -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void cancel() -androidx.viewpager2.R$id: int tag_accessibility_actions -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: long serialVersionUID -android.didikee.donate.R$attr: int drawerArrowStyle -androidx.appcompat.R$id: int action_image -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView_Menu -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country Country -com.google.android.material.R$id: int src_over -androidx.preference.R$attr: int preferenceFragmentStyle -androidx.preference.R$dimen: int abc_text_size_display_2_material -com.google.android.material.R$animator: int mtrl_extended_fab_hide_motion_spec -com.google.gson.stream.JsonWriter -com.turingtechnologies.materialscrollbar.R$attr: int navigationContentDescription -androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE_TEMP -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_overflow_material -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language GERMAN -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_customNavigationLayout -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: void completion() -com.google.android.material.R$attr: int passwordToggleEnabled -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerSuccess(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver,java.lang.Object) -androidx.recyclerview.R$drawable: int notify_panel_notification_icon_bg -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_statusBarBackground -io.reactivex.disposables.RunnableDisposable: RunnableDisposable(java.lang.Runnable) -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int prefetch -okhttp3.internal.cache.InternalCache: okhttp3.Response get(okhttp3.Request) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX names -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: java.lang.String getNewX() -okhttp3.internal.http2.Header: okio.ByteString TARGET_METHOD -okhttp3.Cookie$Builder: boolean persistent -cyanogenmod.app.Profile$ExpandedDesktopMode -okhttp3.OkHttpClient$1: okhttp3.internal.connection.RouteDatabase routeDatabase(okhttp3.ConnectionPool) -android.didikee.donate.R$style: int Widget_AppCompat_ListView -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type RIGHT -james.adaptiveicon.R$drawable: int abc_ic_star_half_black_16dp -wangdaye.com.geometricweather.R$drawable: int notif_temp_107 -com.google.android.material.R$styleable: int Chip_chipBackgroundColor -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_second_track_color -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.R$attr: int collapsedTitleGravity -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundTintList(android.content.res.ColorStateList) -androidx.appcompat.widget.ActivityChooserView: void setDefaultActionButtonContentDescription(int) -okhttp3.HttpUrl: java.lang.String FORM_ENCODE_SET -com.jaredrummler.android.colorpicker.R$attr: int drawableSize -com.google.android.material.R$id: int tag_screen_reader_focusable -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf -androidx.preference.R$color: int tooltip_background_light -androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_goIcon -android.didikee.donate.R$attr: int backgroundStacked -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex tomorrow -com.bumptech.glide.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: double val -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -okhttp3.Dispatcher: java.util.concurrent.ExecutorService executorService -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showColorShades -org.greenrobot.greendao.AbstractDao: void deleteAll() -retrofit2.OkHttpCall: okhttp3.Call createRawCall() -com.xw.repo.bubbleseekbar.R$dimen: int notification_small_icon_background_padding -com.turingtechnologies.materialscrollbar.R$attr: int initialActivityCount -com.google.gson.LongSerializationPolicy$1 -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: java.lang.String Unit -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(java.lang.Iterable,io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$attr: int customPixelDimension -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.util.Date date -androidx.appcompat.R$styleable: int TextAppearance_fontVariationSettings -wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_background_color -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setSize(int) -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textFontWeight -com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_max_width -androidx.appcompat.R$id: int wrap_content -androidx.preference.R$id: int icon -james.adaptiveicon.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_entries -androidx.constraintlayout.widget.R$attr: int layout_goneMarginTop -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter -wangdaye.com.geometricweather.R$attr: int materialAlertDialogBodyTextStyle -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_disabled_elevation -androidx.drawerlayout.R$color: R$color() -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider getInstance(java.lang.String) -android.didikee.donate.R$id: int icon -com.jaredrummler.android.colorpicker.R$id: int group_divider -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_toRightOf -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onTimeoutError(long,java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int TabItem_android_layout -android.didikee.donate.R$id: int screen -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver otherObserver -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -james.adaptiveicon.R$dimen: int notification_top_pad -cyanogenmod.providers.CMSettings$Global: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Menu -io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_transitionPathRotate -com.google.android.material.transformation.FabTransformationSheetBehavior: FabTransformationSheetBehavior() -wangdaye.com.geometricweather.R$array: int duration_unit_voices -androidx.appcompat.R$style: int TextAppearance_AppCompat_Button -com.google.android.material.R$styleable: int TabLayout_tabIndicatorAnimationDuration -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA -androidx.constraintlayout.widget.R$styleable: int PopupWindowBackgroundState_state_above_anchor -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.ICMHardwareService sService -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_fragment -com.google.android.material.R$animator: int linear_indeterminate_line1_tail_interpolator -com.google.android.material.R$styleable: int[] ListPopupWindow -wangdaye.com.geometricweather.R$drawable: int avd_show_password -android.didikee.donate.R$attr: int goIcon -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.util.Date time -james.adaptiveicon.R$attr: int windowFixedWidthMajor -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult -okhttp3.EventListener: okhttp3.EventListener NONE -cyanogenmod.profiles.BrightnessSettings$1: java.lang.Object[] newArray(int) -com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_width_material -com.google.android.material.R$styleable: int[] Slider -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Country -androidx.constraintlayout.widget.R$styleable: int View_theme -okhttp3.OkHttpClient$Builder: int readTimeout -retrofit2.converter.gson.GsonResponseBodyConverter: java.lang.Object convert(java.lang.Object) -cyanogenmod.power.PerformanceManager: int PROFILE_BIAS_POWER_SAVE -android.didikee.donate.R$styleable: int ActionBar_background -retrofit2.RequestFactory$Builder: boolean hasBody -com.google.android.material.timepicker.ClockHandView -androidx.constraintlayout.widget.R$styleable: int[] PopupWindow -okhttp3.internal.http.RealInterceptorChain: okhttp3.EventListener eventListener() -com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.Typeface getCollapsedTitleTypeface() -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int BLOWING_SNOW -wangdaye.com.geometricweather.R$array: int widget_card_styles -wangdaye.com.geometricweather.R$string: int mtrl_chip_close_icon_content_description -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotationY -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure measure -wangdaye.com.geometricweather.R$layout: int abc_expanded_menu_layout -androidx.viewpager2.R$id: int tag_unhandled_key_listeners -com.github.rahatarmanahmed.cpv.CircularProgressView$7: void onAnimationUpdate(android.animation.ValueAnimator) -wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingEnd -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf -okhttp3.internal.cache.DiskLruCache: void rebuildJournal() -com.google.android.material.R$attr: int theme -cyanogenmod.externalviews.ExternalView$3: cyanogenmod.externalviews.ExternalView this$0 -wangdaye.com.geometricweather.R$attr: int cpv_alphaChannelVisible -androidx.constraintlayout.widget.R$id: int dragUp -androidx.fragment.R$dimen: int compat_button_padding_horizontal_material -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorScheme(int[]) -androidx.hilt.work.R$anim: int fragment_fade_enter -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_overflow_padding_end_material -android.didikee.donate.R$style: int TextAppearance_AppCompat_Button -androidx.appcompat.widget.AppCompatImageButton -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_UID -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_android_windowAnimationStyle -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: AtmoAuraQAResult$Measure() -wangdaye.com.geometricweather.R$id: int select_dialog_listview -okio.Buffer: okio.Buffer writeTo(java.io.OutputStream,long) -wangdaye.com.geometricweather.R$styleable: int[] KeyFramesVelocity -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void innerSuccess(java.lang.Object) -retrofit2.Utils: java.lang.RuntimeException parameterError(java.lang.reflect.Method,java.lang.Throwable,int,java.lang.String,java.lang.Object[]) -androidx.vectordrawable.animated.R$layout: R$layout() -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.Lifecycle getLifecycle() -androidx.recyclerview.R$style: int Widget_Compat_NotificationActionContainer -io.reactivex.Observable: io.reactivex.Observable window(long) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_DEFAULT_THEME -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -androidx.core.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf -com.turingtechnologies.materialscrollbar.R$attr: int closeIconEnabled -com.turingtechnologies.materialscrollbar.R$attr: int queryHint -androidx.hilt.work.R$styleable: int Fragment_android_id -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableRightCompat -androidx.appcompat.R$id: int accessibility_custom_action_8 -retrofit2.http.PartMap: java.lang.String encoding() -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconTint -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert -androidx.preference.R$style: int TextAppearance_Compat_Notification_Info -okio.RealBufferedSource: long readLongLe() -cyanogenmod.providers.CMSettings$Validator -com.google.android.material.R$dimen: int material_helper_text_font_1_3_padding_top -okhttp3.internal.http2.Http2Connection: java.util.Map streams -com.google.android.material.card.MaterialCardView: int getContentPaddingTop() -okhttp3.Cache$CacheRequestImpl$1: okhttp3.Cache val$this$0 -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String hour -io.reactivex.Observable: java.lang.Object blockingLast() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_background -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_default -com.turingtechnologies.materialscrollbar.R$attr: int enforceMaterialTheme -io.reactivex.Observable: io.reactivex.Observable generate(io.reactivex.functions.Consumer) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Body2 -cyanogenmod.externalviews.KeyguardExternalView: boolean access$802(cyanogenmod.externalviews.KeyguardExternalView,boolean) -androidx.lifecycle.HasDefaultViewModelProviderFactory -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder cookieJar(okhttp3.CookieJar) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTag -androidx.appcompat.R$attr: int activityChooserViewStyle -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_commitIcon -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Light -io.reactivex.internal.schedulers.ScheduledRunnable: long serialVersionUID -wangdaye.com.geometricweather.R$attr: int haloColor -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: AtmoAuraQAResult$Advice$AdviceContext() -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PRIMARY_COLOR -androidx.preference.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -androidx.appcompat.R$style: int Widget_AppCompat_ListView -androidx.constraintlayout.widget.R$styleable: int[] StateSet -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActivityChooserView -androidx.constraintlayout.widget.R$attr: int autoSizeStepGranularity -cyanogenmod.power.IPerformanceManager$Stub$Proxy: boolean setPowerProfile(int) -james.adaptiveicon.R$styleable: int Toolbar_subtitle -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicator -okhttp3.CertificatePinner$Pin: java.lang.String hashAlgorithm -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String[] SELECT_VALUE -com.turingtechnologies.materialscrollbar.R$attr: int layout_collapseParallaxMultiplier -com.google.android.material.appbar.MaterialToolbar: void setNavigationIcon(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.Observer downstream -androidx.constraintlayout.widget.R$anim: int abc_slide_in_top -wangdaye.com.geometricweather.R$id: int rounded -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableDelegateState: int getChangingConfigurations() -androidx.core.R$attr: int alpha -com.google.android.material.checkbox.MaterialCheckBox: android.content.res.ColorStateList getMaterialThemeColorsTintList() -wangdaye.com.geometricweather.R$color: int design_default_color_background -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature -androidx.hilt.work.R$id: int icon -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTopCompat -com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context,android.util.AttributeSet,int) -io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function) -com.google.android.material.timepicker.TimePickerView -com.google.android.material.slider.RangeSlider: int getLabelBehavior() -androidx.vectordrawable.R$id: int tag_transition_group -android.didikee.donate.R$color: int primary_text_default_material_dark -okio.SegmentedByteString: int size() -androidx.dynamicanimation.R$styleable: int GradientColor_android_startX -cyanogenmod.weather.RequestInfo: int access$602(cyanogenmod.weather.RequestInfo,int) -androidx.lifecycle.ProcessLifecycleOwner$3$1 -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindLevel -james.adaptiveicon.R$id: int action_bar_activity_content -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: void execute() -okhttp3.internal.ws.RealWebSocket$CancelRunnable: RealWebSocket$CancelRunnable(okhttp3.internal.ws.RealWebSocket) -androidx.constraintlayout.widget.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -com.google.android.material.R$dimen: int abc_text_size_body_1_material -wangdaye.com.geometricweather.R$styleable: int StateListDrawableItem_android_drawable -com.bumptech.glide.Registry$NoSourceEncoderAvailableException: Registry$NoSourceEncoderAvailableException(java.lang.Class) -com.google.android.material.R$attr: int itemShapeAppearanceOverlay -cyanogenmod.providers.CMSettings$Global: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_SearchResult_Title -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_Solid -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode REFUSED_STREAM -com.google.gson.stream.JsonReader: java.io.IOException syntaxError(java.lang.String) -androidx.preference.R$attr: int ratingBarStyleIndicator -com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_inflatedId -wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_orderingFromXml -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_divider -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitationDuration -wangdaye.com.geometricweather.R$interpolator: int mtrl_fast_out_slow_in -com.jaredrummler.android.colorpicker.R$attr: int initialExpandedChildrenCount -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_NavigationView -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getAbbreviation(android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String primary -wangdaye.com.geometricweather.R$attr: int path_percent -wangdaye.com.geometricweather.R$styleable: int AnimatableIconView_inner_margins -okhttp3.internal.http2.Header$Listener: void onHeaders(okhttp3.Headers) -android.didikee.donate.R$styleable: int PopupWindowBackgroundState_state_above_anchor -wangdaye.com.geometricweather.R$id: int list_item -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.internal.operators.observable.ObservableZip$ZipObserver[] observers -com.google.android.material.R$styleable: int Layout_layout_goneMarginBottom -androidx.dynamicanimation.R$drawable: int notification_template_icon_bg -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight -androidx.transition.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean -androidx.cardview.R$styleable: R$styleable() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -wangdaye.com.geometricweather.R$styleable: int[] SwitchPreference -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: org.reactivestreams.Subscriber downstream -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getWeatherSource() -androidx.preference.R$style: int Base_V26_Theme_AppCompat -com.google.android.material.R$dimen: int abc_text_size_subtitle_material_toolbar -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf -androidx.hilt.lifecycle.R$id: int accessibility_action_clickable_span -androidx.recyclerview.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$style: int Preference_SwitchPreferenceCompat -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_displayOptions -com.google.android.material.chip.Chip: void setChipIconSize(float) -wangdaye.com.geometricweather.R$styleable: int Transform_android_translationY -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_toolbar -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_min_width_minor -androidx.viewpager.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.R$id: int bottom_sides -androidx.preference.R$color: int background_floating_material_light -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_barLength -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_maxActionInlineWidth -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_updateDefaultLiveLockScreen -androidx.preference.R$attr: int alertDialogCenterButtons -io.reactivex.Observable: io.reactivex.Observable concatEager(java.lang.Iterable,int,int) -okio.Base64: java.lang.String encode(byte[]) -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityDestroyed(android.app.Activity) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator LIVE_DISPLAY_HINTED_VALIDATOR -wangdaye.com.geometricweather.R$attr: int itemShapeInsetTop -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light -com.google.android.material.R$styleable: int DrawerArrowToggle_arrowHeadLength -wangdaye.com.geometricweather.R$layout: int text_view_with_theme_line_height -com.google.android.material.R$attr: int saturation -com.google.android.material.R$layout: int test_design_radiobutton -cyanogenmod.profiles.ConnectionSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$drawable: int shortcuts_sleet -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.util.AtomicThrowable errors -androidx.swiperefreshlayout.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherPhase(java.lang.String) -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onError(java.lang.Throwable) -com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onAnimationReset() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.os.RemoteCallbackList mCallbacks -okio.Pipe$PipeSink: void close() -androidx.lifecycle.LiveData$AlwaysActiveObserver -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Slider -cyanogenmod.profiles.RingModeSettings: boolean isOverride() -wangdaye.com.geometricweather.R$id: int dialog_location_help_locationContainer -androidx.lifecycle.ProcessLifecycleOwner: java.lang.Runnable mDelayedPauseRunnable -com.google.android.material.R$string: int material_timepicker_am -androidx.preference.R$styleable: int StateListDrawable_android_dither -androidx.vectordrawable.animated.R$dimen: int compat_button_padding_horizontal_material -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -com.google.android.material.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -android.support.v4.app.INotificationSideChannel$Stub$Proxy: void cancel(java.lang.String,int,java.lang.String) -androidx.appcompat.R$drawable: int abc_btn_check_to_on_mtrl_015 -com.google.gson.internal.LinkedTreeMap: java.lang.Object get(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: AccuDailyResult$DailyForecasts$Temperature$Minimum() -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Base base -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial Imperial -wangdaye.com.geometricweather.R$attr: int passwordToggleTintMode -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight -cyanogenmod.app.IPartnerInterface: void setMobileDataEnabled(boolean) -androidx.activity.R$styleable: int FontFamilyFont_fontStyle -james.adaptiveicon.R$styleable: int SearchView_submitBackground -com.google.android.material.R$styleable: int MaterialCardView_strokeWidth -com.google.gson.stream.JsonScope: int EMPTY_DOCUMENT -io.reactivex.Observable: io.reactivex.Observable timestamp(java.util.concurrent.TimeUnit) -okio.Pipe: okio.Sink sink -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: void setKeyLineVisibility(boolean) -com.google.android.material.appbar.AppBarLayout: int getLiftOnScrollTargetViewId() -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_summaryOn -wangdaye.com.geometricweather.R$id: int ghost_view -com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context) -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchPadding -com.jaredrummler.android.colorpicker.R$drawable: int ic_arrow_down_24dp -retrofit2.Retrofit$1: retrofit2.Platform platform -com.jaredrummler.android.colorpicker.R$attr: int dividerHorizontal -com.google.android.material.R$attr: int actionModeCloseDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int Icon -android.didikee.donate.R$attr: R$attr() -wangdaye.com.geometricweather.R$drawable: int ic_ragweed -android.didikee.donate.R$layout: int abc_alert_dialog_title_material -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onError(java.lang.Throwable) -com.google.android.material.R$styleable: int MotionScene_defaultDuration -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getLatitude() -com.bumptech.glide.R$id: int line1 -androidx.vectordrawable.animated.R$dimen: int notification_large_icon_height -androidx.room.RoomDatabase$JournalMode -androidx.appcompat.R$styleable: int SwitchCompat_trackTintMode -androidx.preference.R$style: int TextAppearance_AppCompat_Inverse -androidx.preference.R$styleable: int AppCompatTextView_autoSizeTextType -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textFontWeight -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void subscribe(io.reactivex.ObservableSource[],int) -com.xw.repo.bubbleseekbar.R$drawable: int abc_vector_test -com.jaredrummler.android.colorpicker.R$color: int material_grey_100 -com.turingtechnologies.materialscrollbar.CustomIndicator -com.turingtechnologies.materialscrollbar.R$attr: int chipIconTint -androidx.appcompat.R$attr: int divider -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_TextView_SpinnerItem -okio.RealBufferedSource: long readLong() -com.google.gson.stream.JsonReader: int PEEKED_DOUBLE_QUOTED_NAME -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask -androidx.appcompat.R$style: int Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_dialog_btn_min_width -android.didikee.donate.R$id: int add -com.google.android.material.R$styleable: int[] MaterialAutoCompleteTextView -wangdaye.com.geometricweather.R$string: int key_click_widget_to_refresh -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemRippleColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$id: int container_main_footer_title -androidx.appcompat.R$attr: int titleMargin -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: double HoursOfSun -androidx.constraintlayout.widget.R$styleable: int ActionBar_hideOnContentScroll -androidx.constraintlayout.widget.R$color: int abc_tint_default -com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle -com.google.android.material.R$string: int mtrl_picker_toggle_to_text_input_mode -okio.Sink -com.google.android.material.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -android.didikee.donate.R$id: int collapseActionView -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeWindSpeed() -androidx.appcompat.R$styleable: int[] ViewStubCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String to -okhttp3.internal.platform.Android10Platform: Android10Platform(java.lang.Class) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_66 -com.jaredrummler.android.colorpicker.R$color: int abc_tint_switch_track -com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Indeterminate -com.google.android.material.R$style: int Widget_AppCompat_AutoCompleteTextView -android.didikee.donate.R$dimen: int abc_action_button_min_width_material -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog_MinWidth -androidx.lifecycle.livedata.R: R() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPressure(java.lang.Float) -androidx.appcompat.R$styleable: int ActionBar_subtitle -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: int getAnimationMode() -androidx.preference.R$styleable: int DrawerArrowToggle_spinBars -androidx.constraintlayout.widget.R$id: int wrap -com.google.android.material.slider.BaseSlider: int getActiveThumbIndex() -okio.Base64: Base64() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric Metric -cyanogenmod.weather.CMWeatherManager$2$1: void run() -androidx.viewpager.widget.PagerTabStrip: PagerTabStrip(android.content.Context) -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: int rain -com.turingtechnologies.materialscrollbar.R$attr: int customNavigationLayout -androidx.constraintlayout.widget.R$attr: int flow_verticalGap -okhttp3.Cache$Entry: boolean matches(okhttp3.Request,okhttp3.Response) -androidx.appcompat.R$style: int Base_Widget_AppCompat_TextView -androidx.viewpager2.R$attr: int fastScrollHorizontalTrackDrawable -com.xw.repo.bubbleseekbar.R$attr: int actionModePopupWindowStyle -wangdaye.com.geometricweather.common.ui.behaviors.InkPageIndicatorBehavior: InkPageIndicatorBehavior(android.content.Context,android.util.AttributeSet) -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_BOOT_ANIM -com.google.android.material.R$color: int design_dark_default_color_primary_dark -okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot next() -androidx.constraintlayout.widget.R$attr: int fontProviderFetchStrategy -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu -cyanogenmod.externalviews.KeyguardExternalViewProviderService: int onStartCommand(android.content.Intent,int,int) -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginLeft -com.google.android.material.R$attr: int listPreferredItemHeightSmall -androidx.lifecycle.LiveDataReactiveStreams: LiveDataReactiveStreams() -com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat -wangdaye.com.geometricweather.R$attr: int chipStandaloneStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstVerticalBias -okhttp3.internal.http2.Http2Stream$FramingSink: okhttp3.internal.http2.Http2Stream this$0 -wangdaye.com.geometricweather.R$attr: int startIconTintMode -wangdaye.com.geometricweather.R$style: int TestThemeWithLineHeightDisabled -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizePresetSizes -com.turingtechnologies.materialscrollbar.R$styleable: int[] GradientColor -androidx.swiperefreshlayout.R$id: int tag_screen_reader_focusable -androidx.dynamicanimation.R$id: int italic -okhttp3.internal.http2.Header: java.lang.String TARGET_SCHEME_UTF8 -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String nextAT() -wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationZ -io.reactivex.Observable: io.reactivex.Observable cache() -androidx.appcompat.R$style: int Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$attr: int layout_constraintCircleAngle -cyanogenmod.externalviews.KeyguardExternalView: void executeQueue() -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource[],io.reactivex.functions.Function) -com.jaredrummler.android.colorpicker.R$attr: int keylines -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherSource(java.lang.String) -com.google.android.material.R$styleable: int KeyAttribute_android_elevation -wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_3 -com.google.android.material.R$dimen: int design_bottom_navigation_active_text_size -androidx.appcompat.R$styleable: int MenuGroup_android_checkableBehavior -com.google.android.material.R$attr: int region_widthMoreThan -com.google.android.material.R$styleable: int SwitchCompat_thumbTintMode -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_8 -com.github.rahatarmanahmed.cpv.CircularProgressView: void startAnimation() -wangdaye.com.geometricweather.R$attr: int textEndPadding -androidx.constraintlayout.widget.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.R$id: int textinput_helper_text -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_tooltipFrameBackground -android.didikee.donate.R$layout: int abc_action_mode_bar -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int COLD -androidx.constraintlayout.widget.R$attr: int arrowShaftLength -com.google.android.material.R$styleable: int CardView_cardMaxElevation -androidx.swiperefreshlayout.R$layout: R$layout() -com.google.android.material.R$attr: int textAppearancePopupMenuHeader -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.ChineseCityEntity,int) -com.google.android.material.R$styleable: int KeyAttribute_android_scaleY -androidx.vectordrawable.R$styleable: int GradientColor_android_endY -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListPopupWindow -wangdaye.com.geometricweather.background.service.CMWeatherProviderService: CMWeatherProviderService() -com.google.android.material.R$id: int message -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.RequestBody) -cyanogenmod.providers.CMSettings$Secure: int getInt(android.content.ContentResolver,java.lang.String,int) -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean timerRunning -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver this$0 -io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable,int,int) -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: void invoke(java.lang.Throwable) -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean setActiveProfile(android.os.ParcelUuid) -okhttp3.Dispatcher: int maxRequests -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer ragweedLevel -androidx.constraintlayout.widget.R$styleable: int Transform_android_rotationY -com.google.android.material.R$id: int dialog_button -wangdaye.com.geometricweather.common.basic.models.weather.Wind -com.google.android.material.R$style -wangdaye.com.geometricweather.R$id: int seekbar -com.jaredrummler.android.colorpicker.R$styleable: int[] FontFamilyFont -okhttp3.internal.ws.WebSocketProtocol: long PAYLOAD_SHORT_MAX -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getStrokeWidth() -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onSubscribe(io.reactivex.disposables.Disposable) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.turingtechnologies.materialscrollbar.R$color: int secondary_text_disabled_material_dark -androidx.preference.DropDownPreference -wangdaye.com.geometricweather.common.ui.widgets.DonateImageView -androidx.cardview.R$attr: int contentPaddingRight -wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_day_foreground -androidx.hilt.work.R$drawable -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -com.google.android.material.R$attr: int dropDownListViewStyle -androidx.dynamicanimation.R$dimen: int compat_notification_large_icon_max_height -retrofit2.RequestFactory: java.lang.String httpMethod -okhttp3.internal.tls.BasicTrustRootIndex: BasicTrustRootIndex(java.security.cert.X509Certificate[]) -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderQuery -com.google.android.material.R$dimen: int mtrl_navigation_item_icon_padding -com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -androidx.legacy.coreutils.R$dimen: int notification_small_icon_size_as_large -androidx.preference.R$styleable: int MenuItem_showAsAction -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String Key -wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_dividerHeight -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.viewpager.R$dimen: int notification_top_pad -com.google.android.material.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$style: int Widget_Design_CollapsingToolbar -androidx.constraintlayout.widget.R$styleable: int TextAppearance_fontFamily -com.google.android.material.R$id: int bottom -androidx.preference.R$attr: int tint -androidx.coordinatorlayout.R$id: int top -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: int getMarginTop() -okhttp3.internal.http2.Http2: byte TYPE_PING -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIcon -okhttp3.CertificatePinner: void check(java.lang.String,java.util.List) -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2$1 -com.jaredrummler.android.colorpicker.R$color: int abc_background_cache_hint_selector_material_dark -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: boolean isLeft -com.google.android.material.R$string: int icon_content_description -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerColor -androidx.activity.R$styleable: int ColorStateListItem_alpha -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: long serialVersionUID -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.AndroidPlatform$CloseGuard closeGuard -james.adaptiveicon.R$dimen: int abc_text_size_small_material -androidx.lifecycle.ComputableLiveData$1 -wangdaye.com.geometricweather.R$dimen: int cpv_color_preference_large -com.google.android.material.R$attr: int titleTextAppearance -androidx.appcompat.widget.ListPopupWindow -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.turingtechnologies.materialscrollbar.R$attr: int navigationViewStyle -androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void complete() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial Imperial -androidx.appcompat.R$styleable: int SearchView_searchHintIcon -com.turingtechnologies.materialscrollbar.R$attr: int buttonPanelSideLayout -android.didikee.donate.R$attr: int itemPadding -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder socketFactory(javax.net.SocketFactory) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric Metric -androidx.coordinatorlayout.R$id: int accessibility_custom_action_26 -androidx.core.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float so2 -android.didikee.donate.R$styleable: int AlertDialog_multiChoiceItemLayout -james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedHeightMajor -io.reactivex.internal.queue.SpscArrayQueue: int mask -wangdaye.com.geometricweather.R$style: int Base_AlertDialog_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarStyle -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Tab -androidx.lifecycle.SavedStateHandleController: void attachToLifecycle(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_collapsedSize -androidx.constraintlayout.widget.R$layout: int abc_search_view -cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(java.util.Map,java.util.Map,cyanogenmod.themes.ThemeChangeRequest$RequestType,long,cyanogenmod.themes.ThemeChangeRequest$1) -okio.Okio$2: void close() -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Tooltip -com.google.android.material.R$styleable: int[] MenuView -androidx.appcompat.resources.R$id: int accessibility_custom_action_19 -com.google.android.material.R$styleable: int StateSet_defaultState -cyanogenmod.themes.ThemeManager: long getLastThemeChangeTime() -wangdaye.com.geometricweather.R$id: int honorRequest -com.jaredrummler.android.colorpicker.R$attr: int actionDropDownStyle -io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged() -io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintEnd_toEndOf -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Chip -com.turingtechnologies.materialscrollbar.R$attr: int chipEndPadding -retrofit2.BuiltInConverters$RequestBodyConverter: java.lang.Object convert(java.lang.Object) -androidx.fragment.R$id: int accessibility_custom_action_12 -androidx.appcompat.R$styleable: int AlertDialog_showTitle -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder port(int) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void dispose() -wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_activated_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$attr: int chipGroupStyle -androidx.coordinatorlayout.R$id: int accessibility_custom_action_21 -com.jaredrummler.android.colorpicker.R$attr: int fontProviderCerts -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_elevation_material -com.github.rahatarmanahmed.cpv.CircularProgressView$4: CircularProgressView$4(com.github.rahatarmanahmed.cpv.CircularProgressView) -wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_borderColor -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: int active -wangdaye.com.geometricweather.R$attr: int extendedFloatingActionButtonStyle -androidx.hilt.R$styleable: int[] GradientColor -com.google.android.material.R$dimen: int design_navigation_icon_padding -com.google.android.material.R$styleable: int Layout_layout_constraintBottom_creator -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_75 -androidx.loader.R$styleable: int FontFamilyFont_fontStyle -com.google.android.material.R$styleable: int Slider_tickVisible -com.turingtechnologies.materialscrollbar.R$dimen: int notification_action_text_size -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.RequestBody delegate -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.lang.String Phase -wangdaye.com.geometricweather.R$attr: int checkboxStyle -com.google.android.material.R$styleable: int Constraint_layout_goneMarginRight -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit PERCENT -androidx.preference.R$style: int Widget_AppCompat_ListPopupWindow -wangdaye.com.geometricweather.R$attr: int text_color -com.google.android.material.R$id: int accessibility_custom_action_29 -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -cyanogenmod.app.IPartnerInterface$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String unitId -wangdaye.com.geometricweather.R$attr: int customBoolean -retrofit2.ParameterHandler$RawPart: retrofit2.ParameterHandler$RawPart INSTANCE -androidx.preference.R$attr: int alertDialogStyle -james.adaptiveicon.R$styleable: int ActionMode_height -com.google.android.material.R$dimen: int mtrl_card_corner_radius -com.google.gson.stream.JsonReader: int NUMBER_CHAR_NONE -com.google.android.material.R$styleable: int CardView_android_minWidth -androidx.dynamicanimation.R$styleable: R$styleable() -androidx.constraintlayout.widget.R$anim: int abc_fade_out -androidx.lifecycle.ClassesInfoCache$MethodReference -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary -androidx.appcompat.R$attr: int textAppearanceSearchResultSubtitle -com.google.android.material.R$styleable: int AppCompatTheme_spinnerStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView -androidx.hilt.lifecycle.R$integer: R$integer() -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSyncDuration -com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabIconTint() -cyanogenmod.weatherservice.ServiceRequestResult$Builder: cyanogenmod.weatherservice.ServiceRequestResult build() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind -wangdaye.com.geometricweather.R$attr: int snackbarTextViewStyle -androidx.preference.R$id: int checked -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_multiChoiceItemLayout -okhttp3.logging.HttpLoggingInterceptor$Level -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textColorSearchUrl -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.preference.R$integer: R$integer() -okhttp3.internal.tls.DistinguishedNameParser: char getEscaped() -cyanogenmod.app.CMContextConstants$Features: java.lang.String WEATHER_SERVICES -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setValue(java.util.List) -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_0 -com.google.android.material.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -androidx.hilt.lifecycle.R$id: int action_image -androidx.preference.R$dimen: int tooltip_vertical_padding -wangdaye.com.geometricweather.R$id: int material_clock_hand -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerSlack -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean isCancelled() -okhttp3.internal.cache2.Relay: okio.Source newSource() -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onComplete() -com.google.android.material.R$dimen: int mtrl_calendar_header_selection_line_height -okio.RealBufferedSource: short readShortLe() -io.reactivex.internal.observers.ForEachWhileObserver: ForEachWhileObserver(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer,io.reactivex.functions.Action) -wangdaye.com.geometricweather.R$attr: int progress_width -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorHeight -io.reactivex.Observable: io.reactivex.Observable mergeArray(int,int,io.reactivex.ObservableSource[]) -okhttp3.internal.http2.Http2: byte FLAG_ACK -cyanogenmod.profiles.LockSettings$1 -android.didikee.donate.R$string: int abc_toolbar_collapse_description -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String Link -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircle -androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf -retrofit2.Utils$WildcardTypeImpl -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void dispose() -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String getCityId() -androidx.vectordrawable.animated.R$dimen: int notification_subtext_size -okhttp3.OkHttpClient: java.util.List DEFAULT_CONNECTION_SPECS -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_34 -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_GCM_SHA256 -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_18 -james.adaptiveicon.R$id: int checkbox -okhttp3.internal.Internal: boolean isInvalidHttpUrlHost(java.lang.IllegalArgumentException) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -okio.Buffer: int read(byte[]) -cyanogenmod.themes.IThemeChangeListener$Stub -com.google.android.material.R$dimen: int mtrl_calendar_year_height -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getContent() -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Error -com.xw.repo.bubbleseekbar.R$attr: int indeterminateProgressStyle -wangdaye.com.geometricweather.daily.DailyWeatherActivity -androidx.constraintlayout.widget.R$layout: int abc_action_mode_bar -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason[] values() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_94 -retrofit2.KotlinExtensions: java.lang.Object suspendAndThrow(java.lang.Exception,kotlin.coroutines.Continuation) -android.didikee.donate.R$attr: int showDividers -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatSeekBar -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource[] values() -androidx.preference.R$styleable: int ActionMode_subtitleTextStyle -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.google.android.material.slider.BaseSlider: float getThumbStrokeWidth() -androidx.appcompat.R$dimen: int hint_alpha_material_light -com.turingtechnologies.materialscrollbar.R$attr: int arrowShaftLength -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -android.didikee.donate.R$dimen: int abc_search_view_preferred_height -androidx.preference.R$styleable: int AppCompatTheme_windowFixedWidthMajor -io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_CONSUMED -com.google.android.material.R$style: int Platform_MaterialComponents_Dialog -wangdaye.com.geometricweather.R$attr: int dialogLayout -androidx.preference.R$string: int abc_activity_chooser_view_see_all -wangdaye.com.geometricweather.R$string: int character_counter_overflowed_content_description -androidx.hilt.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getCity() -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void request(long) -com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuItem -wangdaye.com.geometricweather.R$id: int staticPostLayout -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipBackgroundColor -androidx.recyclerview.R$id: int italic -wangdaye.com.geometricweather.R$styleable: int Chip_shapeAppearanceOverlay -androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.core.R$id: int accessibility_custom_action_18 -james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -androidx.constraintlayout.widget.R$attr: int measureWithLargestChild -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -com.google.android.material.R$dimen: int design_snackbar_padding_vertical -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: int leftIndex -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerError(java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int flow_verticalStyle -okhttp3.Call: okhttp3.Call clone() -androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -androidx.preference.R$dimen: int abc_list_item_padding_horizontal_material -androidx.cardview.R$styleable: int CardView_cardBackgroundColor -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyBottomRight -okhttp3.OkHttpClient: java.net.ProxySelector proxySelector() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_checkedTextViewStyle -wangdaye.com.geometricweather.R$styleable: int Layout_maxWidth -okio.Okio: boolean isAndroidGetsocknameError(java.lang.AssertionError) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_maxWidth -cyanogenmod.weather.WeatherLocation: java.lang.String getPostalCode() -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetEndWithActions -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom -androidx.cardview.widget.CardView: CardView(android.content.Context,android.util.AttributeSet) -io.reactivex.Observable: io.reactivex.Observable concatDelayError(io.reactivex.ObservableSource) -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Info -android.didikee.donate.R$styleable: int Spinner_android_dropDownWidth -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable,int,int) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalBias -com.google.android.material.card.MaterialCardView: float getRadius() -com.google.android.material.R$color: int mtrl_indicator_text_color -cyanogenmod.providers.ThemesContract$ThemesColumns: android.net.Uri CONTENT_URI -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: boolean setOther(io.reactivex.disposables.Disposable) -com.google.android.material.slider.BaseSlider -wangdaye.com.geometricweather.background.polling.permanent.observer.TimeObserverService -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService -com.google.android.material.R$attr: int thumbStrokeWidth -james.adaptiveicon.R$attr: int titleMargins -wangdaye.com.geometricweather.R$attr: int preferenceCategoryTitleTextAppearance -wangdaye.com.geometricweather.R$attr: int radius_from -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_color -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableLeftCompat -james.adaptiveicon.R$attr: int toolbarStyle -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function8) -wangdaye.com.geometricweather.R$id: int treeValue -androidx.swiperefreshlayout.R$integer: R$integer() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowMinWidthMinor -androidx.activity.R$dimen: int compat_notification_large_icon_max_height -android.didikee.donate.R$drawable: int abc_cab_background_top_mtrl_alpha -okio.Options: int[] trie -android.didikee.donate.R$attr: int actionBarItemBackground -com.google.android.material.tabs.TabLayout: void removeOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) -android.didikee.donate.R$color: int notification_action_color_filter -androidx.preference.R$id: int accessibility_custom_action_22 -okio.AsyncTimeout$2: AsyncTimeout$2(okio.AsyncTimeout,okio.Source) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean getSpeed() -com.turingtechnologies.materialscrollbar.R$color: int mtrl_bottom_nav_item_tint -okio.Segment: okio.Segment prev -wangdaye.com.geometricweather.R$attr: int color -androidx.core.R$drawable -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetEnd -james.adaptiveicon.R$attr: int icon -android.didikee.donate.R$styleable: int ActionBar_navigationMode -wangdaye.com.geometricweather.R$styleable: int[] ActivityChooserView -okhttp3.ConnectionSpec: java.util.List tlsVersions() -james.adaptiveicon.R$styleable: int Toolbar_collapseContentDescription -okhttp3.internal.platform.JdkWithJettyBootPlatform: JdkWithJettyBootPlatform(java.lang.reflect.Method,java.lang.reflect.Method,java.lang.reflect.Method,java.lang.Class,java.lang.Class) -androidx.hilt.lifecycle.R$id: int blocking -androidx.preference.R$styleable: int[] AnimatedStateListDrawableItem -wangdaye.com.geometricweather.R$styleable: int Chip_android_ellipsize -androidx.appcompat.R$attr: int showTitle -io.reactivex.internal.util.EmptyComponent: void request(long) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_pivotX -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_5 -okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 -androidx.constraintlayout.widget.R$color: int button_material_dark -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent WALLPAPER -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: long serialVersionUID -com.google.android.material.R$styleable: int Constraint_android_layout_height -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setStreet(java.lang.String) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -androidx.appcompat.widget.ActionBarContextView: int getContentHeight() -okhttp3.RequestBody$3: okhttp3.MediaType val$contentType -androidx.constraintlayout.widget.Guideline: void setGuidelineEnd(int) -androidx.preference.R$attr: int displayOptions -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: double Value -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRainPrecipitationProbability(java.lang.Float) -com.google.android.material.R$attr: int colorSurface -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getMinWidthMinor() -androidx.constraintlayout.widget.R$styleable: int[] AppCompatTheme -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Headline -cyanogenmod.weather.WeatherInfo$1: cyanogenmod.weather.WeatherInfo[] newArray(int) -com.google.android.material.R$dimen: int abc_text_size_title_material_toolbar -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: boolean done -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -cyanogenmod.app.IProfileManager: void removeNotificationGroup(android.app.NotificationGroup) -androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context,android.util.AttributeSet,int) -okhttp3.Headers: void checkValue(java.lang.String,java.lang.String) -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long serialVersionUID -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabText -cyanogenmod.app.PartnerInterface: int ZEN_MODE_IMPORTANT_INTERRUPTIONS -com.xw.repo.bubbleseekbar.R$attr: int fontFamily -com.google.android.material.chip.Chip: android.content.res.ColorStateList getCheckedIconTint() -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabRippleColor -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionMenuTextAppearance -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: io.reactivex.disposables.Disposable upstream -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean done -retrofit2.Call: retrofit2.Response execute() -androidx.preference.R$id: int tabMode -androidx.preference.R$style: int Preference_Category_Material -wangdaye.com.geometricweather.R$dimen: int mtrl_card_checked_icon_size -androidx.appcompat.widget.AppCompatRadioButton: void setBackgroundResource(int) -okhttp3.internal.http1.Http1Codec$ChunkedSink: okio.Timeout timeout() -wangdaye.com.geometricweather.R$attr: int dragScale -io.reactivex.internal.subscriptions.EmptySubscription: void request(long) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconTint -androidx.core.widget.NestedScrollView: int getScrollRange() -com.google.android.material.slider.BaseSlider: void setValues(java.util.List) -com.google.android.material.R$styleable: int[] MotionScene -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.ProgressIndicatorSpec getSpec() -okhttp3.OkHttpClient$Builder: okhttp3.Dns dns -james.adaptiveicon.R$drawable: int abc_btn_radio_to_on_mtrl_000 -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -okhttp3.CacheControl -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: int UnitType -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter emitter -androidx.preference.Preference$BaseSavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.xw.repo.bubbleseekbar.R$styleable: int[] RecycleListView -wangdaye.com.geometricweather.R$style: int Animation_AppCompat_Dialog -james.adaptiveicon.R$layout: int abc_list_menu_item_checkbox -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer getCloudCover() -com.jaredrummler.android.colorpicker.R$attr: int fontProviderPackage -okhttp3.internal.tls.OkHostnameVerifier: int ALT_DNS_NAME -wangdaye.com.geometricweather.settings.fragments.UnitSettingsFragment: UnitSettingsFragment() -androidx.constraintlayout.helper.widget.Flow: void setVerticalStyle(int) -wangdaye.com.geometricweather.settings.activities.PreviewIconActivity -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatSeekBar -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void dispose() -androidx.activity.R$drawable: int notification_template_icon_low_bg -android.didikee.donate.R$drawable: int abc_control_background_material -okhttp3.internal.cache.DiskLruCache$Editor: okio.Sink newSink(int) -androidx.hilt.lifecycle.R$id: int notification_main_column -com.google.android.material.chip.ChipGroup: int getCheckedChipId() -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onNext(java.lang.Object) -androidx.lifecycle.LiveData$ObserverWrapper -androidx.fragment.R$attr: int font -wangdaye.com.geometricweather.R$styleable: int MaterialButton_shapeAppearance -androidx.preference.R$id: int buttonPanel -androidx.work.impl.background.systemalarm.RescheduleReceiver: RescheduleReceiver() -androidx.appcompat.widget.Toolbar: void setLogoDescription(java.lang.CharSequence) -android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat_Dark -androidx.appcompat.R$styleable: int Toolbar_popupTheme -retrofit2.BuiltInConverters$UnitResponseBodyConverter -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean isDisposed() -androidx.appcompat.resources.R$layout -com.google.android.material.R$styleable: int FloatingActionButton_fabCustomSize -okhttp3.internal.http2.Http2Reader$Handler: void headers(boolean,int,int,java.util.List) -androidx.coordinatorlayout.R$id: int tag_unhandled_key_listeners -james.adaptiveicon.R$styleable: int[] SearchView -okhttp3.internal.Util: java.lang.AssertionError assertionError(java.lang.String,java.lang.Exception) -wangdaye.com.geometricweather.R$id: int action_about -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_reverseLayout -com.google.android.material.R$attr: int actionBarSplitStyle -androidx.lifecycle.LiveData: void postValue(java.lang.Object) -com.google.android.material.chip.Chip: void setTextEndPadding(float) -androidx.vectordrawable.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: java.lang.String English -android.didikee.donate.R$styleable: int DrawerArrowToggle_arrowShaftLength -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeAppearanceOverlay -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_DarkActionBar -com.google.android.material.R$attr: int layoutDescription -com.google.android.material.internal.StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException: StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_dropDownWidth -com.google.android.material.R$dimen: int design_snackbar_background_corner_radius -androidx.core.R$dimen: int notification_small_icon_size_as_large -androidx.appcompat.R$styleable: int AppCompatImageView_android_src -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(java.lang.Iterable,io.reactivex.functions.Function,int) -cyanogenmod.weather.WeatherInfo$Builder -retrofit2.ParameterHandler$2: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTextView -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_thumb_text -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: long contentLength() -androidx.appcompat.R$attr: int fontWeight -okhttp3.internal.ws.WebSocketWriter$FrameSink: WebSocketWriter$FrameSink(okhttp3.internal.ws.WebSocketWriter) -com.turingtechnologies.materialscrollbar.R$attr: int numericModifiers -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.google.android.material.R$attr: int itemIconTint -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -com.xw.repo.bubbleseekbar.R$id: int content -android.didikee.donate.R$styleable: int AppCompatTheme_listDividerAlertDialog -okhttp3.Headers: java.lang.String name(int) -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.util.AtomicThrowable error -com.jaredrummler.android.colorpicker.R$string: int abc_toolbar_collapse_description -com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_square_large -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onAttach(android.os.IBinder) -com.bumptech.glide.R$id: int notification_main_column -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String ShortPhrase -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm25Desc(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String tempMin -com.google.android.material.internal.NavigationMenuItemView: void setActionView(android.view.View) -com.jaredrummler.android.colorpicker.R$attr: int spinnerDropDownItemStyle -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginBottom -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_cancelLiveLockScreen -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling -retrofit2.ParameterHandler$HeaderMap: ParameterHandler$HeaderMap(java.lang.reflect.Method,int,retrofit2.Converter) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeStyle -androidx.legacy.coreutils.R$style: R$style() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SeekBar_Discrete -wangdaye.com.geometricweather.R$style: int Platform_Widget_AppCompat_Spinner -androidx.activity.R$styleable: int GradientColor_android_centerY -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Line2 -com.xw.repo.bubbleseekbar.R$attr: int layout_keyline -androidx.appcompat.R$dimen: int abc_text_size_title_material_toolbar -androidx.customview.R$style -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: Http2Connection$ReaderRunnable$1(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[],okhttp3.internal.http2.Http2Stream) -wangdaye.com.geometricweather.R$attr: int clickAction -cyanogenmod.platform.Manifest$permission: java.lang.String OBSERVE_AUDIO_SESSIONS -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -androidx.preference.R$styleable: int[] PreferenceFragment -android.didikee.donate.R$dimen: int abc_dialog_min_width_minor -wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_icon -wangdaye.com.geometricweather.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.Scheduler scheduler -com.google.android.material.R$drawable: int notification_bg_normal -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeStepGranularity -androidx.coordinatorlayout.R$id: int action_text -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather -com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_in_top -okhttp3.internal.platform.AndroidPlatform -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: long updatedOn -wangdaye.com.geometricweather.R$id: int widget_week_icon_1 -com.google.android.material.R$styleable: int MotionScene_layoutDuringTransition -wangdaye.com.geometricweather.R$string: int feedback_interpret_notification_group_content -androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_default -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String postCode -okhttp3.internal.ws.RealWebSocket: okhttp3.WebSocketListener listener -androidx.work.R$id: int dialog_button -james.adaptiveicon.R$attr: int textAppearanceSearchResultTitle -wangdaye.com.geometricweather.R$id: int activity_settings -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMenuItemView_android_minWidth -androidx.constraintlayout.widget.R$color: int foreground_material_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: java.lang.String getDesc() -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.subjects.UnicastSubject window -wangdaye.com.geometricweather.R$attr: int checked -com.xw.repo.bubbleseekbar.R$layout: int abc_select_dialog_material -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node findByObject(java.lang.Object) -androidx.lifecycle.Lifecycle$State: boolean isAtLeast(androidx.lifecycle.Lifecycle$State) -okhttp3.internal.Util: int skipLeadingAsciiWhitespace(java.lang.String,int,int) -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long end -wangdaye.com.geometricweather.R$dimen: int design_fab_translation_z_hovered_focused -james.adaptiveicon.R$color: int tooltip_background_light -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region -com.google.android.material.R$id: int accessibility_custom_action_4 -com.jaredrummler.android.colorpicker.R$attr: int fastScrollVerticalTrackDrawable -androidx.preference.R$color: int abc_secondary_text_material_dark -android.didikee.donate.R$style: int TextAppearance_AppCompat_Large -com.google.android.material.R$drawable: int abc_ic_star_half_black_16dp -androidx.lifecycle.ViewModelStoreOwner -androidx.appcompat.R$attr: int alphabeticModifiers -com.bumptech.glide.R$attr: int ttcIndex -wangdaye.com.geometricweather.R$drawable: int notif_temp_61 -com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_default_thickness -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme_Light -okhttp3.Dispatcher: int runningCallsCount() -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Badge -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_Chip -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_title -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginTop -com.xw.repo.bubbleseekbar.R$attr: int colorControlActivated -wangdaye.com.geometricweather.R$attr: int useSimpleSummaryProvider -androidx.fragment.R$id: int accessibility_custom_action_6 -androidx.drawerlayout.R$string: R$string() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial Imperial -retrofit2.HttpServiceMethod: okhttp3.Call$Factory callFactory -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Menu -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_overlay -com.jaredrummler.android.colorpicker.R$style: int Preference_PreferenceScreen_Material -androidx.preference.ExpandButton -wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndTitle -androidx.coordinatorlayout.R$style: int Widget_Compat_NotificationActionText -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setSwitchView(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -com.google.android.material.R$styleable: int ThemeEnforcement_enforceTextAppearance -androidx.appcompat.resources.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Headline -androidx.appcompat.R$dimen: int abc_text_size_subtitle_material_toolbar -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode CLEAR -androidx.customview.R$styleable: int GradientColor_android_endY -com.jaredrummler.android.colorpicker.R$attr: int toolbarNavigationButtonStyle -androidx.hilt.R$styleable: int GradientColor_android_centerX -androidx.preference.R$bool: int config_materialPreferenceIconSpaceReserved -wangdaye.com.geometricweather.R$styleable: int Constraint_android_elevation -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: android.os.IBinder mRemote -cyanogenmod.providers.CMSettings$Secure: java.lang.String SYS_PROP_CM_SETTING_VERSION -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleEnabled -androidx.appcompat.R$styleable: int AppCompatTheme_popupMenuStyle -com.google.android.material.R$color: int design_dark_default_color_error -okio.Buffer: short readShortLe() -cyanogenmod.hardware.DisplayMode: DisplayMode(int,java.lang.String) -wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_2_material -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen -com.google.android.material.R$dimen: int mtrl_calendar_month_vertical_padding -com.google.android.material.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRainPrecipitation(java.lang.Float) -wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_right_black_24dp -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void dispose() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -androidx.constraintlayout.widget.R$dimen: int abc_text_size_body_2_material -com.google.android.material.button.MaterialButton: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -androidx.coordinatorlayout.R$attr: int fontWeight -com.turingtechnologies.materialscrollbar.R$attr: int buttonGravity -com.google.android.material.R$layout: int abc_search_dropdown_item_icons_2line -androidx.preference.R$styleable: int TextAppearance_android_shadowRadius -androidx.constraintlayout.widget.R$attr: int layout_constraintBaseline_creator -cyanogenmod.providers.CMSettings$System$1: boolean validate(java.lang.String) -wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitleTextStyle -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircle -com.google.android.material.R$styleable: int[] View -androidx.constraintlayout.widget.R$attr: int listMenuViewStyle -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_font -androidx.work.BackoffPolicy: androidx.work.BackoffPolicy[] values() -androidx.activity.R$dimen: int compat_button_inset_vertical_material -okio.BufferedSource: int read(byte[]) -okhttp3.CacheControl: int sMaxAgeSeconds -androidx.preference.R$styleable: int AppCompatTextView_drawableLeftCompat -androidx.constraintlayout.widget.R$styleable: int KeyCycle_transitionPathRotate -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void setLiveLockScreenEnabled(boolean) -com.jaredrummler.android.colorpicker.R$dimen: R$dimen() -androidx.constraintlayout.widget.R$style: int Base_V26_Theme_AppCompat -androidx.preference.R$dimen: int highlight_alpha_material_dark -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_IME_SWITCHER_VALIDATOR -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: ObservablePublishSelector$TargetObserver(io.reactivex.Observer) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindSpeed -com.turingtechnologies.materialscrollbar.R$attr: int actionBarStyle -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_round -androidx.fragment.app.DialogFragment: DialogFragment() -wangdaye.com.geometricweather.R$styleable: int Constraint_chainUseRtl -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_visible -wangdaye.com.geometricweather.R$style: int Widget_Design_BottomSheet_Modal -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.UV uv -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$attr: int spanCount -cyanogenmod.hardware.CMHardwareManager: int getNumGammaControls() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_elevation -androidx.lifecycle.SavedStateHandleController$1: androidx.lifecycle.Lifecycle val$lifecycle -retrofit2.KotlinExtensions$await$2$2: void onResponse(retrofit2.Call,retrofit2.Response) -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.preference.R$layout: int abc_list_menu_item_radio -androidx.appcompat.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -androidx.work.R$integer -cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.WeatherInfo val$weatherInfo -okhttp3.internal.http2.Http2Writer: void flush() -com.google.android.material.internal.ForegroundLinearLayout: void setForeground(android.graphics.drawable.Drawable) -com.google.android.material.slider.RangeSlider: void setThumbStrokeWidth(float) -wangdaye.com.geometricweather.R$attr: int boxStrokeWidth -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonStyleSmall -androidx.preference.R$attr: int closeIcon -com.google.android.material.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.R$drawable: int weather_rain_3 -wangdaye.com.geometricweather.R$drawable: int notif_temp_52 -com.jaredrummler.android.colorpicker.R$anim: int abc_tooltip_exit -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer aqiIndex -com.google.android.material.R$styleable: int AppCompatTheme_listMenuViewStyle -androidx.viewpager2.R$layout: int custom_dialog -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_measureWithLargestChild -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenManager getInstance(android.content.Context) -android.didikee.donate.R$dimen: int abc_action_bar_overflow_padding_start_material -androidx.viewpager.R$styleable: int GradientColor_android_type -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -com.google.android.material.R$layout: int mtrl_calendar_year -okhttp3.CacheControl: boolean noStore -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_summaryOn -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_4 -james.adaptiveicon.R$attr: int fontStyle -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_dither -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_clear -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_checkable -okio.BufferedSink: java.io.OutputStream outputStream() -androidx.appcompat.widget.ActionBarContainer: void setSplitBackground(android.graphics.drawable.Drawable) -androidx.constraintlayout.widget.R$dimen: int tooltip_margin -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: long serialVersionUID -cyanogenmod.app.suggest.AppSuggestManager -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isDataConnectionEnabled -com.google.android.material.R$drawable: int abc_cab_background_top_material -wangdaye.com.geometricweather.R$styleable: int SearchView_voiceIcon -androidx.preference.R$dimen: int tooltip_precise_anchor_threshold -wangdaye.com.geometricweather.R$string: int feedback_location_failed -james.adaptiveicon.R$dimen: int abc_dialog_fixed_height_major -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_shapeAppearanceOverlay -com.google.android.material.R$attr: int startIconTintMode -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void dispose() -james.adaptiveicon.R$attr: int thumbTextPadding -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.activity.R$id: int forever -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator parent -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorTextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: AccuAlertResult$Area$LastAction() -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource) -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: ObservableCombineLatest$CombinerObserver(io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator,int) -cyanogenmod.weather.RequestInfo: int TYPE_LOOKUP_CITY_NAME_REQ -com.bumptech.glide.integration.okhttp.R$dimen: int notification_right_icon_size -okio.GzipSource: void checkEqual(java.lang.String,int,int) -retrofit2.SkipCallbackExecutorImpl: java.lang.String toString() -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean set(int,boolean) -com.google.gson.stream.JsonReader: java.lang.String peekedString -wangdaye.com.geometricweather.R$id: int item_alert_title -cyanogenmod.os.Concierge$ParcelInfo: int mParcelableVersion -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum() -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Menu -androidx.preference.R$attr: int tooltipForegroundColor -okhttp3.internal.platform.ConscryptPlatform: okhttp3.internal.platform.ConscryptPlatform buildIfSupported() -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.R$styleable: int KeyPosition_keyPositionType -androidx.preference.R$color: int abc_hint_foreground_material_dark -okhttp3.HttpUrl$Builder -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textSize -androidx.preference.R$attr: int orderingFromXml -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_button_bar_material -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onPreparePanel(int,android.view.View,android.view.Menu) -okhttp3.internal.http2.Http2Writer: void synStream(boolean,int,int,java.util.List) -com.turingtechnologies.materialscrollbar.R$attr: int dividerVertical -okio.Buffer: okio.BufferedSink emit() -wangdaye.com.geometricweather.R$color: int design_default_color_primary_dark -androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl -androidx.preference.R$string: int abc_activitychooserview_choose_application -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_elevation -com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding QUALITY -okio.ByteString: ByteString(byte[]) -cyanogenmod.app.ICMTelephonyManager$Stub: java.lang.String DESCRIPTOR -com.jaredrummler.android.colorpicker.R$id: int activity_chooser_view_content -okhttp3.internal.http2.Http2Connection: void writePing() -androidx.legacy.coreutils.R$attr: int fontProviderAuthority -com.google.android.material.R$attr: int chainUseRtl -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth -okhttp3.Headers: java.lang.String[] namesAndValues -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry: MfEphemerisResult$Geometry() -wangdaye.com.geometricweather.R$attr: int transitionDisable -wangdaye.com.geometricweather.R$attr: int textColorSearchUrl -androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline2 -james.adaptiveicon.R$color: int switch_thumb_material_dark -wangdaye.com.geometricweather.R$layout: int container_main_pollen -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onBouncerShowing -wangdaye.com.geometricweather.R$string: int fab_transformation_sheet_behavior -okhttp3.EventListener: void connectionReleased(okhttp3.Call,okhttp3.Connection) -wangdaye.com.geometricweather.R$layout: int cpv_color_item_square -com.jaredrummler.android.colorpicker.R$attr: int subtitleTextAppearance -wangdaye.com.geometricweather.R$string: int temperature -com.google.android.material.R$color: R$color() -androidx.appcompat.R$attr: int tooltipFrameBackground -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_middle_mtrl_light -okio.ByteString: java.lang.String hex() -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -androidx.viewpager2.R$id: int line1 -androidx.preference.R$styleable: int PopupWindow_android_popupAnimationStyle -wangdaye.com.geometricweather.R$id: int refresh_layout -james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation TOP -wangdaye.com.geometricweather.R$color: int error_color_material_light -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: SinglePostCompleteSubscriber(org.reactivestreams.Subscriber) -com.jaredrummler.android.colorpicker.R$attr: int actionModeBackground -wangdaye.com.geometricweather.R$id: int touch_outside -com.google.android.material.R$style: int Widget_Design_NavigationView -androidx.lifecycle.extensions.R$id: int tag_accessibility_heading -androidx.appcompat.R$styleable: int DrawerArrowToggle_thickness -androidx.preference.R$dimen: int preference_seekbar_padding_vertical -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours Past18Hours -com.turingtechnologies.materialscrollbar.R$attr: int multiChoiceItemLayout -okhttp3.internal.http.HttpMethod: boolean redirectsWithBody(java.lang.String) -androidx.lifecycle.extensions.R$id: int notification_main_column_container -com.google.android.material.R$id: int spread -okhttp3.internal.ws.WebSocketReader: byte[] maskKey -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory createAsync() -androidx.constraintlayout.widget.R$color: int material_grey_900 -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.Observer downstream -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_contentDescription -wangdaye.com.geometricweather.R$attr: int itemShapeFillColor -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -cyanogenmod.hardware.CMHardwareManager: boolean setDisplayColorCalibration(int[]) -com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchCompat -okhttp3.internal.http2.Http2Stream$FramingSink: void emitFrame(boolean) -okhttp3.internal.http2.PushObserver$1: boolean onHeaders(int,java.util.List,boolean) -com.google.android.material.R$styleable: int Constraint_flow_firstVerticalBias -com.google.android.material.imageview.ShapeableImageView -cyanogenmod.app.CustomTile$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getIcePrecipitationProbability() -android.didikee.donate.R$styleable: int LinearLayoutCompat_divider -okio.InflaterSource: InflaterSource(okio.Source,java.util.zip.Inflater) -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: ObservableRepeatUntil$RepeatUntilObserver(io.reactivex.Observer,io.reactivex.functions.BooleanSupplier,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) -retrofit2.OkHttpCall: retrofit2.Response parseResponse(okhttp3.Response) -androidx.preference.R$attr: int tickMark -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onNext(java.lang.Object) -androidx.fragment.R$attr: int alpha -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdp -james.adaptiveicon.R$attr: int actionModeFindDrawable -wangdaye.com.geometricweather.R$styleable: int Fragment_android_name -com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_Tooltip -androidx.hilt.R$dimen: int compat_notification_large_icon_max_height -androidx.appcompat.R$styleable: int TextAppearance_android_textColorLink -androidx.vectordrawable.R$layout: int notification_action_tombstone -com.google.android.material.R$styleable: int SwitchCompat_switchPadding -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIcon -com.google.android.material.R$attr: int dragThreshold -okhttp3.OkHttpClient: okhttp3.ConnectionPool connectionPool -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.R$id: int title -android.didikee.donate.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.R$styleable: int CustomAttribute_customStringValue -com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.String,java.lang.Throwable) -com.google.android.material.internal.FlowLayout -okhttp3.internal.http2.Http2Writer: void applyAndAckSettings(okhttp3.internal.http2.Settings) -okhttp3.FormBody$Builder: FormBody$Builder(java.nio.charset.Charset) -cyanogenmod.themes.ThemeChangeRequest: cyanogenmod.themes.ThemeChangeRequest$RequestType getReqeustType() -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathEnd() -androidx.appcompat.R$color: int abc_search_url_text -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: ObservableCreate$CreateEmitter(io.reactivex.Observer) -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: androidx.lifecycle.LifecycleOwner mLifecycle -com.google.android.material.R$dimen: int material_emphasis_disabled -androidx.appcompat.resources.R$id: int tag_screen_reader_focusable -androidx.hilt.work.R$id: int fragment_container_view_tag -cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getProfile(java.lang.String) -com.google.android.material.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver -androidx.appcompat.R$styleable: int MenuView_android_headerBackground -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_pressed_holo_dark -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State SUCCEEDED -james.adaptiveicon.R$styleable: int Toolbar_contentInsetStart -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: java.lang.String Unit -com.xw.repo.bubbleseekbar.R$id: int spacer -com.google.android.material.R$attr: int thickness -wangdaye.com.geometricweather.R$color: int notification_background_rootDark -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_orderInCategory -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginBottom -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: BaiduIPLocationService$1(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) -com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_title_material -com.google.android.material.R$attr: int onTouchUp -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionBarLayout -androidx.constraintlayout.widget.R$id: int notification_background -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -cyanogenmod.hardware.DisplayMode: java.lang.String name -androidx.core.R$styleable: int FontFamilyFont_ttcIndex -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_constantSize -cyanogenmod.providers.CMSettings$Secure$1 -androidx.preference.EditTextPreferenceDialogFragmentCompat: EditTextPreferenceDialogFragmentCompat() -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchPopulateAccessibilityEvent(android.view.accessibility.AccessibilityEvent) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.R$attr: int growMode -wangdaye.com.geometricweather.db.entities.AlertEntity: java.util.Date date -io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Predicate onNext -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarButtonStyle -wangdaye.com.geometricweather.R$id: int circular_sky -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onNext(java.lang.Object) -okio.ForwardingSink: void close() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: double Value -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setNighttimeTemperature(int) -retrofit2.Retrofit$Builder: java.util.List converterFactories() -android.didikee.donate.R$color: int material_grey_900 -androidx.appcompat.R$styleable: int AppCompatTheme_actionDropDownStyle -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: MfForecastV2Result$ForecastProperties$ForecastV2() -wangdaye.com.geometricweather.R$id -androidx.hilt.lifecycle.R$dimen: int notification_large_icon_height -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionBarOverlay -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_show_motion_spec -cyanogenmod.weather.WeatherLocation: java.lang.String access$402(cyanogenmod.weather.WeatherLocation,java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMargins -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial -androidx.customview.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$id: int preset -androidx.preference.R$styleable: int AppCompatTheme_panelBackground -androidx.recyclerview.widget.RecyclerView: void setScrollingTouchSlop(int) -com.google.android.material.R$attr: int alphabeticModifiers -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver this$0 -com.google.android.material.R$dimen: int abc_text_size_display_3_material -cyanogenmod.app.Profile: int mNameResId -androidx.preference.R$style: int Widget_AppCompat_EditText -com.jaredrummler.android.colorpicker.R$attr: int imageButtonStyle -com.xw.repo.bubbleseekbar.R$styleable: int[] View -retrofit2.internal.EverythingIsNonNull -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderText -androidx.customview.R$id: int tag_transition_group -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_ttcIndex -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerComplete() -wangdaye.com.geometricweather.R$font: int product_sans_bold -androidx.appcompat.widget.DropDownListView: void setSelector(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$layout: int activity_search -com.google.android.material.R$styleable: int ConstraintSet_flow_verticalStyle -androidx.drawerlayout.R$id: int blocking -androidx.constraintlayout.widget.R$attr: int barLength -androidx.transition.R$drawable: int notification_template_icon_bg -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_scaleY -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderFetchStrategy -com.google.android.material.slider.BaseSlider: float getValueOfTouchPosition() -androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit) -com.google.gson.stream.JsonReader: void beginArray() -retrofit2.http.DELETE: java.lang.String value() -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_9 -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getOverlayThemePackageName() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.util.List value -wangdaye.com.geometricweather.R$styleable: int PopupWindowBackgroundState_state_above_anchor -retrofit2.RequestBuilder -io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.ObservableSource) -cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup getNotificationGroup(android.os.ParcelUuid) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindDircStart() -com.google.android.material.R$styleable: int KeyPosition_transitionEasing -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_disabled_material_light -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onSearchRequested() -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onComplete() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog -cyanogenmod.externalviews.ExternalView: cyanogenmod.externalviews.IExternalViewProvider mExternalViewProvider -com.bumptech.glide.integration.okhttp.R$color: int ripple_material_light -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language FRENCH -androidx.core.R$id: int tag_unhandled_key_listeners -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_popupBackground -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_behavior -cyanogenmod.content.Intent: java.lang.String URI_SCHEME_PACKAGE -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabTextColor -androidx.appcompat.widget.AppCompatButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen -android.didikee.donate.R$styleable: int AlertDialog_buttonPanelSideLayout -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginRight -androidx.vectordrawable.R$id: int forever -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_percent -com.google.android.material.R$style: int Base_Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_3 -androidx.transition.R$dimen: int notification_main_column_padding_top -cyanogenmod.app.ICMStatusBarManager$Stub: ICMStatusBarManager$Stub() -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: int getMinuteInterval() -wangdaye.com.geometricweather.common.basic.models.weather.Wind: boolean isValidSpeed() -androidx.work.R$dimen: int notification_large_icon_width -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItem -androidx.viewpager.R$id: int tag_unhandled_key_listeners -androidx.appcompat.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.R$string: int cpv_default_title -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_borderless_material -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_DarkActionBar -okio.HashingSink: okio.ByteString hash() -com.google.android.material.R$drawable: int design_snackbar_background -cyanogenmod.app.CustomTile$ExpandedItem: android.os.Parcelable$Creator CREATOR -androidx.lifecycle.extensions.R$layout: int notification_template_part_time -androidx.vectordrawable.animated.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$anim: int abc_popup_enter -com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context,android.util.AttributeSet,int) -com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_android_background -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Info -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleTintMode -com.google.android.material.R$style: int Base_Animation_AppCompat_Dialog -wangdaye.com.geometricweather.R$layout: int item_about_link -com.google.android.material.transformation.FabTransformationScrimBehavior -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy -wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_DropDownUp -androidx.constraintlayout.widget.R$attr: int onShow -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Info -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: boolean done -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_textLocale -wangdaye.com.geometricweather.R$attr: int materialCalendarMonthNavigationButton -okhttp3.internal.cache.DiskLruCache: long size -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer cloudCover -wangdaye.com.geometricweather.R$id: int fixed -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean registerThermalListener(cyanogenmod.hardware.IThermalListenerCallback) -wangdaye.com.geometricweather.R$style: int Base_Widget_Design_TabLayout -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) -androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String from -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_disabled_material_dark -androidx.recyclerview.R$id: int tag_transition_group -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$color: int material_grey_100 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogCornerRadius -com.google.android.material.R$attr: int waveShape -androidx.preference.R$styleable: int MenuView_android_windowAnimationStyle -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_android_windowIsFloating -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf -com.turingtechnologies.materialscrollbar.R$anim: int abc_shrink_fade_out_from_bottom -com.google.android.material.R$color: int accent_material_light -com.google.android.material.R$layout: int abc_action_mode_close_item_material -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteAll -com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_text -android.didikee.donate.R$styleable: int[] View -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Body2 -cyanogenmod.providers.CMSettings$Secure: java.lang.String DISPLAY_GAMMA_CALIBRATION_PREFIX -com.bumptech.glide.MemoryCategory -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State BLOCKED -com.turingtechnologies.materialscrollbar.R$id: int content -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabTextStyle -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconTint -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TEMPERATURE -com.google.android.material.R$styleable: int AppCompatTheme_colorButtonNormal -com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_small_material -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -wangdaye.com.geometricweather.R$string: int feedback_request_location_permission_success -com.jaredrummler.android.colorpicker.R$dimen: int compat_button_inset_horizontal_material -androidx.appcompat.R$attr: int overlapAnchor -wangdaye.com.geometricweather.R$id: int item_alert_content -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getChipDrawable() -wangdaye.com.geometricweather.db.entities.HourlyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -com.google.android.material.R$dimen: int cardview_compat_inset_shadow -cyanogenmod.providers.CMSettings$Secure: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) -wangdaye.com.geometricweather.R$string: int wind_4 -com.google.android.material.R$styleable: int KeyAttribute_motionProgress -cyanogenmod.app.CustomTile$ExpandedStyle: cyanogenmod.app.CustomTile$ExpandedItem[] getExpandedItems() -androidx.activity.R$id: int action_container -androidx.appcompat.R$style: int Widget_Compat_NotificationActionText -com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_material_light -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Button -org.greenrobot.greendao.AbstractDao: void updateInsideSynchronized(java.lang.Object,android.database.sqlite.SQLiteStatement,boolean) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintTextColor -androidx.preference.R$styleable: int LinearLayoutCompat_android_gravity -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.lang.String Link -com.google.android.material.R$styleable: int CustomAttribute_customDimension -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: CNWeatherResult$WeatherX$InfoX() -androidx.constraintlayout.widget.R$attr: int navigationMode -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActivityChooserView -okhttp3.Interceptor$Chain: int writeTimeoutMillis() -com.google.android.material.R$id: int text -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode SYSTEM -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: ObservableDoFinally$DoFinallyObserver(io.reactivex.Observer,io.reactivex.functions.Action) -wangdaye.com.geometricweather.R$dimen: int test_mtrl_calendar_day_cornerSize -cyanogenmod.app.CustomTileListenerService: java.lang.String TAG -com.google.android.material.R$id: int material_value_index -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void run() -wangdaye.com.geometricweather.R$id: int parentRelative -androidx.vectordrawable.animated.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_1 -cyanogenmod.weather.WeatherInfo$Builder: java.lang.String mCity -com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context) -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -okhttp3.internal.http1.Http1Codec$FixedLengthSource: okhttp3.internal.http1.Http1Codec this$0 -androidx.constraintlayout.widget.R$dimen: int tooltip_corner_radius -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean delayError -okhttp3.EventListener: void responseBodyStart(okhttp3.Call) -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light -james.adaptiveicon.R$drawable: int abc_ic_go_search_api_material -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_normal_pressed -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Dialog -androidx.preference.R$id: int message -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.Observable: io.reactivex.Observable doOnError(io.reactivex.functions.Consumer) -wangdaye.com.geometricweather.R$attr: int mock_label -androidx.appcompat.R$color: int bright_foreground_disabled_material_light -com.google.android.material.R$styleable: int AppBarLayoutStates_state_liftable -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionViewClass -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_enabled -james.adaptiveicon.R$style: int Platform_V25_AppCompat_Light -androidx.lifecycle.extensions.R$layout -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: java.lang.String getProbabilityText(android.content.Context,float) -androidx.coordinatorlayout.R$string -com.google.android.material.chip.Chip: void setMaxWidth(int) -com.turingtechnologies.materialscrollbar.R$styleable: int[] RecycleListView -wangdaye.com.geometricweather.R$drawable: int flag_cs -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void dispose() -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_START -androidx.fragment.R$styleable: int Fragment_android_tag -wangdaye.com.geometricweather.R$interpolator: int mtrl_linear -wangdaye.com.geometricweather.R$attr: int iconResEnd -com.turingtechnologies.materialscrollbar.R$id: int snackbar_text -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRealFeelTemperature -android.didikee.donate.R$dimen: int abc_dropdownitem_text_padding_left -wangdaye.com.geometricweather.R$layout: int widget_day_temp -io.reactivex.internal.queue.SpscArrayQueue: java.lang.Object poll() -com.jaredrummler.android.colorpicker.R$layout: int support_simple_spinner_dropdown_item -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalStyle -cyanogenmod.hardware.CMHardwareManager: byte[] readPersistentBytes(java.lang.String) -androidx.swiperefreshlayout.R$dimen: int compat_button_padding_horizontal_material -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchPadding -androidx.appcompat.R$styleable: int SwitchCompat_switchTextAppearance -androidx.appcompat.R$dimen: int highlight_alpha_material_colored -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_PopupMenu -okhttp3.OkHttpClient$Builder: java.util.List protocols -androidx.preference.R$styleable: int PopupWindow_android_popupBackground -wangdaye.com.geometricweather.R$styleable: int Constraint_drawPath -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_progressBarStyle -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_SearchView -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onComplete() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_CBC_SHA -com.google.android.material.chip.Chip: void setEnsureMinTouchTargetSize(boolean) -wangdaye.com.geometricweather.R$bool: int cpv_default_is_indeterminate -androidx.hilt.lifecycle.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_horizontal -wangdaye.com.geometricweather.R$animator: int start_shine_1 -io.reactivex.Observable: io.reactivex.Observable switchMapSingleDelayError(io.reactivex.functions.Function) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.Observer downstream -cyanogenmod.power.PerformanceManager -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_corner_radius_medium -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.QueryBuilder queryBuilder() -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.database.Database db -wangdaye.com.geometricweather.R$string: int precipitation_rainstorm -androidx.appcompat.R$string: int abc_action_mode_done -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_holo_dark -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -androidx.core.R$style: int TextAppearance_Compat_Notification_Title -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAVBAR_LEFT_IN_LANDSCAPE_VALIDATOR -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_dialog_btn_min_width -okio.ByteString: java.nio.ByteBuffer asByteBuffer() -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetStartWithNavigation -okio.Buffer: okio.BufferedSink writeShort(int) -androidx.lifecycle.Transformations$3: Transformations$3(androidx.lifecycle.MediatorLiveData) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int StartMinute -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalGap -wangdaye.com.geometricweather.R$attr: int behavior_peekHeight -com.google.android.material.R$attr: int fontStyle -androidx.appcompat.R$styleable: int View_paddingEnd -wangdaye.com.geometricweather.db.entities.HistoryEntity: HistoryEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,int,int) -androidx.preference.R$style: int Widget_AppCompat_Toolbar -io.reactivex.internal.disposables.EmptyDisposable: boolean offer(java.lang.Object) -androidx.work.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindDircEnd() -androidx.preference.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_800 -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_max -james.adaptiveicon.R$style: int Widget_AppCompat_AutoCompleteTextView -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -com.github.rahatarmanahmed.cpv.CircularProgressView$1: CircularProgressView$1(com.github.rahatarmanahmed.cpv.CircularProgressView) -cyanogenmod.externalviews.ExternalView$6: ExternalView$6(cyanogenmod.externalviews.ExternalView) -okhttp3.HttpUrl: java.net.URI uri() -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: io.reactivex.internal.fuseable.SimpleQueue queue -cyanogenmod.content.Intent: java.lang.String ACTION_APP_FAILURE -com.google.gson.stream.JsonReader: int nextInt() -com.xw.repo.bubbleseekbar.R$id: R$id() -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -okio.RealBufferedSource: java.lang.String readString(java.nio.charset.Charset) -com.google.android.material.R$attr: int iconEndPadding -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void innerError(java.lang.Throwable) -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: long requested() -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.Observer downstream -com.xw.repo.bubbleseekbar.R$attr: int layout_anchor -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.lang.Object enterTransform(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$style: int Animation_Design_BottomSheetDialog -okio.BufferedSource: java.lang.String readString(java.nio.charset.Charset) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle -androidx.appcompat.widget.AppCompatImageView: void setImageBitmap(android.graphics.Bitmap) -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_elevation -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.google.android.material.R$integer: int mtrl_card_anim_duration_ms -wangdaye.com.geometricweather.R$attr: int bsb_thumb_text_size -android.didikee.donate.R$style: int Widget_AppCompat_PopupMenu_Overflow -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer cloudCover -com.google.android.material.R$styleable: int Constraint_android_translationX -androidx.legacy.coreutils.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_summaryOff -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State mState -james.adaptiveicon.R$attr: int actionBarTabStyle -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_visible -james.adaptiveicon.R$string: int search_menu_title -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer treeLevel -androidx.appcompat.R$id: int textSpacerNoTitle -androidx.recyclerview.R$id: int accessibility_custom_action_11 -okhttp3.internal.http1.Http1Codec$UnknownLengthSource -androidx.appcompat.R$attr: int actionModeCutDrawable -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_customNavigationLayout -io.reactivex.Observable: io.reactivex.Observable dematerialize() -androidx.hilt.R$styleable: int FontFamily_fontProviderQuery -androidx.customview.R$style: int Widget_Compat_NotificationActionText -androidx.recyclerview.R$id: int accessibility_custom_action_27 -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: int unitArrayIndex -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: AccuCurrentResult$Temperature() -androidx.recyclerview.R$drawable: int notification_bg_low_normal -androidx.hilt.R$anim: int fragment_fade_enter -james.adaptiveicon.R$attr: int actionModeWebSearchDrawable -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String TARGET_API -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX() -okio.ForwardingSource: void close() -cyanogenmod.app.StatusBarPanelCustomTile: int getId() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Small -com.jaredrummler.android.colorpicker.R$anim: int abc_tooltip_enter -androidx.transition.R$layout: int notification_action -androidx.appcompat.R$attr: int buttonBarStyle -cyanogenmod.app.StatusBarPanelCustomTile: int id -com.turingtechnologies.materialscrollbar.R$id: int outline -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_action_inline_max_width -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Small -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.preference.R$layout: int abc_alert_dialog_button_bar_material -com.xw.repo.bubbleseekbar.R$style: int Base_V28_Theme_AppCompat_Light -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_256_CCM_8_SHA256 -com.turingtechnologies.materialscrollbar.R$color: int notification_icon_bg_color -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_singleLine -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -okhttp3.internal.cache2.Relay: okio.ByteString metadata() -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox -com.turingtechnologies.materialscrollbar.R$attr: int state_collapsible -com.jaredrummler.android.colorpicker.R$attr: int thumbTintMode -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_disabled_material_light -com.google.android.material.R$style: int TextAppearance_AppCompat_Medium_Inverse -androidx.preference.R$attr: int dialogMessage -android.didikee.donate.R$attr: int arrowShaftLength -james.adaptiveicon.R$drawable: int abc_text_select_handle_right_mtrl_dark -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_roundPercent -com.turingtechnologies.materialscrollbar.R$attr: int msb_autoHide -wangdaye.com.geometricweather.R$anim: int design_bottom_sheet_slide_in -wangdaye.com.geometricweather.R$styleable: int Chip_android_checkable -androidx.fragment.R$id: int accessibility_custom_action_19 -io.reactivex.Observable: io.reactivex.Observable timer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: boolean isDisposed() -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_buttonPanelSideLayout -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: CallExecuteObservable$CallDisposable(retrofit2.Call) -androidx.appcompat.R$style: int Widget_Compat_NotificationActionContainer -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void dispose() -androidx.appcompat.R$styleable: int MenuGroup_android_orderInCategory -androidx.fragment.app.FragmentTabHost -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean delayErrors -com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace[] values() -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void cleanup() -com.google.android.material.R$id: int header_title -okhttp3.internal.http2.Huffman: void encode(okio.ByteString,okio.BufferedSink) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: long serialVersionUID -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: java.lang.String WeatherCode -androidx.preference.R$styleable: int AlertDialog_buttonIconDimen -com.google.android.material.internal.ScrimInsetsFrameLayout -io.reactivex.internal.subscribers.DeferredScalarSubscriber -okhttp3.ConnectionPool: boolean $assertionsDisabled -androidx.constraintlayout.widget.R$attr: int layout_constrainedWidth -wangdaye.com.geometricweather.R$string: int air_quality -okhttp3.internal.ws.WebSocketWriter: boolean activeWriter -wangdaye.com.geometricweather.R$attr: int tickMarkTint -androidx.appcompat.R$styleable: int TextAppearance_android_shadowColor -com.google.android.material.datepicker.DateValidatorPointForward: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver this$0 -okio.Buffer: long size() -com.google.android.material.R$color: int material_on_primary_disabled -androidx.preference.R$attr: int iconSpaceReserved -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_MENU_ACTION -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: void setValue(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int material_clock_display_padding -com.google.android.material.R$id: int masked -com.google.android.material.R$styleable: int SnackbarLayout_actionTextColorAlpha -androidx.preference.R$id: int topPanel -com.turingtechnologies.materialscrollbar.R$id: int textinput_error -com.google.android.material.R$layout: int design_navigation_menu -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.R$attr: int counterMaxLength -com.bumptech.glide.R$drawable: R$drawable() -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getUnitId() -androidx.preference.MultiSelectListPreference: MultiSelectListPreference(android.content.Context,android.util.AttributeSet) -androidx.legacy.coreutils.R$color: int notification_action_color_filter -com.google.android.material.R$color: int design_default_color_surface -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: double Latitude -androidx.constraintlayout.widget.R$color: int notification_action_color_filter -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -okhttp3.internal.connection.RealConnection: java.net.Socket rawSocket -wangdaye.com.geometricweather.R$attr: int appBarLayoutStyle -androidx.constraintlayout.widget.R$id: int activity_chooser_view_content -com.jaredrummler.android.colorpicker.R$string -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_showDelay -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -androidx.viewpager.R$id: int tag_unhandled_key_event_manager -com.google.android.material.R$style: int Widget_AppCompat_ListView_Menu -james.adaptiveicon.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -com.turingtechnologies.materialscrollbar.R$id: int container -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.MinutelyEntity,int) -com.google.android.material.R$style: int AndroidThemeColorAccentYellow -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar_Small -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginBottom -okio.Timeout: boolean hasDeadline -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getDate(java.lang.String) -com.google.android.material.R$id: int left -com.google.android.material.R$attr: int suffixTextColor -wangdaye.com.geometricweather.common.basic.models.weather.Temperature -cyanogenmod.providers.CMSettings$Secure: float getFloat(android.content.ContentResolver,java.lang.String) -james.adaptiveicon.R$drawable: int abc_ic_star_black_48dp -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.disposables.Disposable upstream -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display4 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableRightCompat -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingLeft -cyanogenmod.weather.CMWeatherManager$2$2 -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_xml -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: io.reactivex.Observer downstream -okhttp3.internal.http.HttpDate$1 -com.google.android.material.R$style: int Widget_AppCompat_Spinner_DropDown -androidx.work.R$id: int tag_transition_group -io.reactivex.Observable: io.reactivex.Observable intervalRange(long,long,long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sNonNegativeIntegerValidator -io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.SingleObserver) -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -androidx.core.R$id: int normal -com.google.android.material.chip.ChipGroup: int getChipSpacingHorizontal() -androidx.constraintlayout.widget.R$dimen: int abc_dialog_list_padding_top_no_title -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_imageButtonStyle -androidx.lifecycle.FullLifecycleObserver: void onDestroy(androidx.lifecycle.LifecycleOwner) -com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context) -wangdaye.com.geometricweather.R$attr: int contentInsetStartWithNavigation -androidx.constraintlayout.widget.R$attr: int height -androidx.lifecycle.Transformations$3: void onChanged(java.lang.Object) -com.google.android.material.R$styleable: int ForegroundLinearLayout_android_foregroundGravity -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$string: int action_preview -com.google.android.material.R$attr: int materialAlertDialogTitleIconStyle -androidx.preference.R$attr: int entryValues -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotation -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date moonSetDate -wangdaye.com.geometricweather.R$string: int content_desc_app_store -cyanogenmod.app.ProfileManager: boolean notificationGroupExists(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX direction -com.turingtechnologies.materialscrollbar.R$attr: int liftOnScroll -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getError() -com.jaredrummler.android.colorpicker.R$color: int dim_foreground_disabled_material_light -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListMenuView -cyanogenmod.app.Profile: void setRingMode(cyanogenmod.profiles.RingModeSettings) -com.google.android.material.R$attr: int actionBarSize -androidx.transition.R$attr: int fontProviderPackage -androidx.constraintlayout.widget.R$styleable: int KeyCycle_framePosition -androidx.vectordrawable.R$id: int notification_main_column -com.google.android.material.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.R$color: int abc_primary_text_material_light -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: FlowableOnBackpressureBuffer$BackpressureBufferSubscriber(org.reactivestreams.Subscriber,int,boolean,boolean,io.reactivex.functions.Action) -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: java.lang.String icon -wangdaye.com.geometricweather.R$string: int content_desc_weather_alert_button -androidx.hilt.R$drawable: int notification_bg_normal -cyanogenmod.platform.R$attr: R$attr() -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginTop -okhttp3.OkHttpClient: java.util.List networkInterceptors -androidx.appcompat.R$attr: int actionLayout -okhttp3.HttpUrl: java.lang.String toString() -androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentWidth -androidx.appcompat.R$color: int material_grey_300 -com.xw.repo.bubbleseekbar.R$attr: int searchHintIcon -wangdaye.com.geometricweather.R$styleable: int CardView_cardBackgroundColor -androidx.constraintlayout.widget.R$styleable: int Variant_region_widthMoreThan -okhttp3.MultipartBody: java.lang.StringBuilder appendQuotedString(java.lang.StringBuilder,java.lang.String) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_NOTIF_COUNT_VALIDATOR -androidx.preference.R$styleable: int ActionBar_contentInsetRight -wangdaye.com.geometricweather.R$string: int glide -android.didikee.donate.R$style: int Widget_AppCompat_EditText -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_normal_material_dark -androidx.viewpager2.R$color: int notification_icon_bg_color -com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableCompat -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -cyanogenmod.app.LiveLockScreenManager: void logServiceException(java.lang.Exception) -cyanogenmod.externalviews.ExternalView$7: ExternalView$7(cyanogenmod.externalviews.ExternalView) -okio.BufferedSink: okio.BufferedSink write(okio.ByteString) -cyanogenmod.profiles.RingModeSettings: void readFromParcel(android.os.Parcel) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_background_transition_holo_dark -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense -com.google.android.material.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility -com.google.android.material.R$id: int middle -com.google.android.material.textfield.TextInputLayout: android.graphics.Typeface getTypeface() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Body1 -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startColor -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_APP_SWITCH_ACTION -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintEnd_toEndOf -androidx.lifecycle.CompositeGeneratedAdaptersObserver -wangdaye.com.geometricweather.R$id: int action_context_bar -com.google.android.material.R$attr: int errorIconDrawable -wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_iconResEnd -cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_SOUND_SETTINGS -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: long serialVersionUID -androidx.appcompat.R$styleable: int SwitchCompat_android_textOff -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.dynamicanimation.animation.DynamicAnimation: void removeUpdateListener(androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationUpdateListener) -com.google.android.material.R$attr: int progressBarPadding -com.google.android.material.R$styleable: int TextInputLayout_expandedHintEnabled -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean sameConnection(okhttp3.Response,okhttp3.HttpUrl) -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_Test -wangdaye.com.geometricweather.R$styleable: int View_android_theme -androidx.core.app.ComponentActivity: ComponentActivity() -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Spinner -okhttp3.internal.connection.StreamAllocation: StreamAllocation(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.Call,okhttp3.EventListener,java.lang.Object) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: void setGravitySensorEnabled(boolean) -okhttp3.internal.io.FileSystem$1: okio.Sink appendingSink(java.io.File) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: io.reactivex.Observer downstream -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_registerCallback -wangdaye.com.geometricweather.R$attr: int errorTextAppearance -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_BottomSheet -com.google.android.material.R$layout: int abc_screen_toolbar -com.google.android.material.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconSize -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTemperature -androidx.hilt.lifecycle.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum Minimum -android.didikee.donate.R$bool: int abc_config_actionMenuItemAllCaps -com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_top_mtrl_alpha -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: boolean isDisposed() -james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat_Dark -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontWeight -androidx.viewpager.R$attr: int fontWeight -androidx.appcompat.R$styleable: int TextAppearance_android_shadowRadius -wangdaye.com.geometricweather.R$dimen: int design_fab_elevation -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationY -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean getAqi() -wangdaye.com.geometricweather.R$attr: int switchPreferenceCompatStyle -wangdaye.com.geometricweather.R$string: int feedback_not_yet_location -okio.Pipe: okio.Source source -retrofit2.RequestFactory$Builder: java.lang.reflect.Method method -androidx.preference.R$string: int abc_searchview_description_query -androidx.appcompat.R$styleable: int[] ViewBackgroundHelper -com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Dialog -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIcon(android.graphics.drawable.Drawable) -cyanogenmod.app.Profile -android.didikee.donate.R$color: int secondary_text_default_material_light -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_id -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getSnow() -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Title -androidx.customview.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.background.polling.permanent.observer.FakeForegroundService: FakeForegroundService() -cyanogenmod.power.PerformanceManagerInternal: void activityResumed(android.content.Intent) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeApparentTemperature -wangdaye.com.geometricweather.R$dimen: int hint_alpha_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets -androidx.preference.R$attr: int updatesContinuously -androidx.appcompat.R$styleable: int View_android_theme -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetLeft -okhttp3.EventListener$1: EventListener$1() -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_multiChoiceItemLayout -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitation -androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context) -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference upstream -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: int index -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: void setTo(java.lang.String) -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather -androidx.preference.R$attr: int iconifiedByDefault -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_min -wangdaye.com.geometricweather.R$attr: int windowMinWidthMajor -androidx.appcompat.R$bool: R$bool() -com.google.android.material.snackbar.SnackbarContentLayout -wangdaye.com.geometricweather.R$id: int transparency_layout -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCountryId -io.reactivex.internal.util.NotificationLite$ErrorNotification: java.lang.String toString() -androidx.dynamicanimation.R$id: int time -androidx.appcompat.R$style: int TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.db.entities.WeatherEntity: void __setDaoSession(wangdaye.com.geometricweather.db.entities.DaoSession) -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_type -okio.Segment: void compact() -androidx.transition.R$dimen: int notification_action_icon_size -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button -okhttp3.internal.http2.Hpack$Writer: void setHeaderTableSizeSetting(int) -androidx.appcompat.R$drawable: int btn_radio_on_to_off_mtrl_animation -androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabBar -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber this$1 -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_logo -okhttp3.Request$Builder: okhttp3.Request$Builder method(java.lang.String,okhttp3.RequestBody) -androidx.drawerlayout.R$id: int action_divider -androidx.hilt.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceLargePopupMenu -androidx.appcompat.R$styleable: int AppCompatTheme_dialogPreferredPadding -wangdaye.com.geometricweather.R$menu: int activity_settings -okhttp3.internal.http2.Http2Connection: boolean pushedStream(int) -okhttp3.internal.platform.Android10Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver -wangdaye.com.geometricweather.R$attr: int minHideDelay -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMode -androidx.lifecycle.extensions.R$dimen: int notification_media_narrow_margin -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: io.reactivex.internal.operators.observable.ObservableRefCount parent -james.adaptiveicon.R$attr: int subtitleTextColor -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicReference upstream -android.didikee.donate.R$style: int TextAppearance_AppCompat -com.jaredrummler.android.colorpicker.R$attr: int actionMenuTextAppearance -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.Object clone() -wangdaye.com.geometricweather.R$attr: int ratingBarStyleIndicator -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense -wangdaye.com.geometricweather.R$styleable: int RecycleListView_paddingBottomNoButtons -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void run() -androidx.fragment.app.Fragment$SavedState: android.os.Parcelable$Creator CREATOR -androidx.appcompat.R$styleable: int StateListDrawable_android_variablePadding -androidx.appcompat.R$styleable: int ActionBar_hideOnContentScroll -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_128_GCM_SHA256 -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_elevation -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float windSpeed -wangdaye.com.geometricweather.R$string: int sp_widget_week_setting -com.google.android.material.chip.Chip: void setIconEndPaddingResource(int) -androidx.preference.R$color: int error_color_material_dark -wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_Toolbar -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_popupMenuStyle -androidx.constraintlayout.widget.R$attr: int textLocale -androidx.lifecycle.MediatorLiveData$Source: int mVersion -com.google.android.material.R$dimen: int design_tab_max_width -cyanogenmod.app.StatusBarPanelCustomTile$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.preference.R$drawable: int btn_checkbox_checked_mtrl -wangdaye.com.geometricweather.R$attr: int onPositiveCross -android.didikee.donate.R$id: int textSpacerNoButtons -androidx.preference.R$dimen: int fastscroll_margin -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onResume -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitation() -com.google.android.material.R$attr: int actionOverflowButtonStyle -james.adaptiveicon.R$dimen: int abc_action_bar_default_padding_end_material -wangdaye.com.geometricweather.R$id: int dialog_background_location_container -com.jaredrummler.android.colorpicker.R$style: int Base_AlertDialog_AppCompat -james.adaptiveicon.R$attr: int subtitleTextStyle -androidx.preference.R$styleable: int AppCompatTheme_editTextStyle -com.google.android.material.R$attr: int iconifiedByDefault -cyanogenmod.hardware.IThermalListenerCallback -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber -com.jaredrummler.android.colorpicker.R$dimen: int abc_select_dialog_padding_start_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getZh_CN() -androidx.appcompat.R$id: int action_bar -io.reactivex.Observable: io.reactivex.Observable switchMapDelayError(io.reactivex.functions.Function,int) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_inset -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog_Alert -androidx.appcompat.R$color: int dim_foreground_material_light -androidx.drawerlayout.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$attr: int materialThemeOverlay -com.turingtechnologies.materialscrollbar.R$integer: int app_bar_elevation_anim_duration -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitationDuration -com.google.android.material.R$color: int mtrl_filled_stroke_color -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getWeatherText() -org.greenrobot.greendao.AbstractDao: java.lang.String[] getNonPkColumns() -okhttp3.internal.connection.RealConnection: okhttp3.Route route() -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean isDisposed() -androidx.hilt.work.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ROMANIAN -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabSelectedTextColor -android.didikee.donate.R$id: int never -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: boolean isDisposed() -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: ExternalViewProviderService$Provider$ProviderImpl$6(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -okhttp3.MultipartBody$Part: MultipartBody$Part(okhttp3.Headers,okhttp3.RequestBody) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator -wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveShape -wangdaye.com.geometricweather.R$drawable: int ic_alipay -okhttp3.internal.http2.Http2Connection: int openStreamCount() -androidx.lifecycle.ViewModelProvider$OnRequeryFactory: void onRequery(androidx.lifecycle.ViewModel) -cyanogenmod.hardware.ICMHardwareService: int getSupportedFeatures() -androidx.appcompat.widget.ViewStubCompat: void setInflatedId(int) -android.didikee.donate.R$styleable: int Toolbar_collapseContentDescription -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_textAllCaps -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int RainProbability -com.google.android.material.appbar.HeaderScrollingViewBehavior: HeaderScrollingViewBehavior() -james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMarkTintMode -org.greenrobot.greendao.AbstractDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -com.google.android.material.internal.FlowLayout: int getItemSpacing() -androidx.fragment.R$layout: R$layout() -androidx.vectordrawable.animated.R$dimen: int notification_media_narrow_margin -android.didikee.donate.R$drawable: int abc_btn_borderless_material -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: HourlyEntityDao$Properties() -com.google.android.material.R$attr: int contentInsetStart -okhttp3.logging.LoggingEventListener: void secureConnectEnd(okhttp3.Call,okhttp3.Handshake) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.util.AtomicThrowable error -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_overflow_material -james.adaptiveicon.R$styleable: int TextAppearance_android_textColorLink -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: double lat -wangdaye.com.geometricweather.R$color: int mtrl_tabs_icon_color_selector -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: LifecycleDispatcher$DispatcherActivityCallback() -com.bumptech.glide.Registry$NoModelLoaderAvailableException -james.adaptiveicon.R$anim -androidx.viewpager2.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -com.xw.repo.bubbleseekbar.R$dimen: int hint_pressed_alpha_material_light -wangdaye.com.geometricweather.R$dimen: int tooltip_horizontal_padding -com.xw.repo.bubbleseekbar.R$id: int edit_query -james.adaptiveicon.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.R$anim: int fragment_main_exit -com.google.android.material.behavior.HideBottomViewOnScrollBehavior: HideBottomViewOnScrollBehavior() -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_UPDATED -com.google.android.material.card.MaterialCardView: void setMaxCardElevation(float) -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void remove(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) -com.google.android.material.R$attr: int circularInset -james.adaptiveicon.R$style: int Theme_AppCompat_Light_DialogWhenLarge -com.google.android.material.R$styleable: int MaterialCardView_checkedIconMargin -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundTintList(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_border_width -okhttp3.EventListener -com.turingtechnologies.materialscrollbar.R$id: int top -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum Minimum -com.google.android.material.R$dimen: int material_clock_period_toggle_height -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.DailyEntity) -com.jaredrummler.android.colorpicker.R$attr: int cpv_colorShape -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_begin -okhttp3.Cache$CacheRequestImpl: okhttp3.internal.cache.DiskLruCache$Editor editor -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: int unitArrayIndex -com.google.android.material.theme.MaterialComponentsViewInflater: MaterialComponentsViewInflater() -androidx.constraintlayout.widget.Placeholder -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: java.lang.Integer proba3H -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: void setDefenseIcon(java.lang.String) -com.jaredrummler.android.colorpicker.R$style: int cpv_ColorPickerViewStyle -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabRippleColor -com.google.android.material.R$id: int radio -com.turingtechnologies.materialscrollbar.R$attr: int bottomSheetStyle -com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_bias -io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.fuseable.SimpleQueue queue() -wangdaye.com.geometricweather.R$color: int mtrl_fab_bg_color_selector -com.turingtechnologies.materialscrollbar.DragScrollBar: DragScrollBar(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.app.LiveLockScreenInfo$1 -androidx.appcompat.resources.R$styleable: int[] FontFamily -androidx.vectordrawable.animated.R$id: int forever -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight -com.xw.repo.bubbleseekbar.R$id: int left -com.google.android.material.tabs.TabLayout: void setTabMode(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: AccuDailyResult$DailyForecasts$Day$WindGust() -androidx.preference.R$style: int Base_Theme_AppCompat_Dialog -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -com.google.android.material.tabs.TabLayout: int getDefaultHeight() -wangdaye.com.geometricweather.R$drawable: int ic_wechat_pay -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_id -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipSurfaceColor -androidx.appcompat.R$id: R$id() -wangdaye.com.geometricweather.remoteviews.config.Hilt_TextWidgetConfigActivity: Hilt_TextWidgetConfigActivity() -wangdaye.com.geometricweather.R$drawable: int selectable_ripple -androidx.lifecycle.LifecycleRegistry: boolean mNewEventOccurred -androidx.cardview.widget.CardView: void setMaxCardElevation(float) -androidx.appcompat.R$styleable: int AppCompatTheme_radioButtonStyle -com.google.android.material.R$attr: int layout_editor_absoluteY -wangdaye.com.geometricweather.db.entities.HistoryEntity: int getNighttimeTemperature() -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -com.jaredrummler.android.colorpicker.R$color: int primary_dark_material_dark -com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabStyle -com.jaredrummler.android.colorpicker.R$styleable: int View_android_focusable -wangdaye.com.geometricweather.R$id: int ghost_view_holder -wangdaye.com.geometricweather.R$drawable: int notif_temp_101 -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_Alert -okhttp3.ConnectionSpec: ConnectionSpec(okhttp3.ConnectionSpec$Builder) -androidx.preference.R$styleable: int DialogPreference_positiveButtonText -okhttp3.Dns$1 -cyanogenmod.weather.RequestInfo: int TYPE_WEATHER_BY_WEATHER_LOCATION_REQ -android.didikee.donate.R$attr: int progressBarStyle -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPadding -io.reactivex.internal.subscriptions.BasicQueueSubscription: java.lang.Object poll() -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability -androidx.constraintlayout.widget.R$id: int message -wangdaye.com.geometricweather.db.entities.LocationEntity: void setCurrentPosition(boolean) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_corner_material -com.jaredrummler.android.colorpicker.R$style: int Base_V22_Theme_AppCompat_Light -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature -android.didikee.donate.R$styleable: int SearchView_android_focusable -com.google.android.material.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.R$string: int aqi_2 -androidx.hilt.work.R$id: int icon_group -androidx.transition.R$styleable: int FontFamilyFont_android_font -okhttp3.HttpUrl: okhttp3.HttpUrl parse(java.lang.String) -wangdaye.com.geometricweather.R$string: int wait_refresh -androidx.preference.R$anim: int abc_fade_in -com.jaredrummler.android.colorpicker.R$color: int abc_tint_seek_thumb -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: void setFrom(java.lang.String) -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_material -com.google.android.material.R$styleable: int Slider_android_enabled -com.jaredrummler.android.colorpicker.R$styleable: int Preference_summary -androidx.constraintlayout.widget.R$dimen: int abc_seekbar_track_progress_height_material -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Priority -wangdaye.com.geometricweather.R$integer: int config_tooltipAnimTime -cyanogenmod.providers.CMSettings$Secure: java.lang.String BUTTON_BACKLIGHT_TIMEOUT -androidx.recyclerview.widget.RecyclerView: void removeOnItemTouchListener(androidx.recyclerview.widget.RecyclerView$OnItemTouchListener) -wangdaye.com.geometricweather.R$attr: int isMaterialTheme -com.google.android.material.R$style: int Base_Widget_MaterialComponents_Chip -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlHighlight -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_collapseNotificationPanel_2 -androidx.appcompat.widget.AppCompatRadioButton -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void setCancellable(io.reactivex.functions.Cancellable) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: org.reactivestreams.Subscription upstream -io.reactivex.internal.observers.ForEachWhileObserver -androidx.viewpager.R$string: R$string() -james.adaptiveicon.R$color: int material_blue_grey_950 -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_grey -androidx.preference.R$attr: int layout_dodgeInsetEdges -cyanogenmod.app.ICustomTileListener$Stub: ICustomTileListener$Stub() -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setOverlay(java.lang.String) -retrofit2.http.DELETE -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationY -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: AccuCurrentResult$DewPoint$Imperial() -cyanogenmod.externalviews.KeyguardExternalView$6: cyanogenmod.externalviews.KeyguardExternalView this$0 -com.google.android.material.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -com.google.android.material.R$styleable: int TextInputLayout_boxCollapsedPaddingTop -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: AccuCurrentResult$PrecipitationSummary$Past6Hours() -org.greenrobot.greendao.AbstractDao: void save(java.lang.Object) -com.google.android.material.R$attr: int expandedTitleTextAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_indeterminateProgressStyle -androidx.lifecycle.LiveData: java.lang.Object mData -wangdaye.com.geometricweather.R$attr: int spinnerDropDownItemStyle -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_CheckBox -com.google.android.material.R$styleable: int Toolbar_contentInsetStart -wangdaye.com.geometricweather.common.basic.models.weather.Weather: boolean isValid(float) -wangdaye.com.geometricweather.R$attr: int fontWeight -james.adaptiveicon.R$id: int custom -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay valueOf(java.lang.String) -com.xw.repo.bubbleseekbar.R$integer: int config_tooltipAnimTime -androidx.coordinatorlayout.R$attr: int fontStyle -androidx.appcompat.R$styleable: int MenuItem_alphabeticModifiers -androidx.preference.Preference$BaseSavedState -androidx.recyclerview.R$id: int accessibility_custom_action_25 -android.didikee.donate.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColorSchemeResource(int) -com.google.android.material.chip.Chip: void setChipStartPadding(float) -com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextInputEditText -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method removeMethod -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX getBrandInfo() -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.Observer downstream -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowMinWidthMajor -androidx.appcompat.widget.SwitchCompat: int getThumbScrollRange() -james.adaptiveicon.R$style: int Theme_AppCompat_Dialog_Alert -okio.BufferedSink: okio.BufferedSink writeLongLe(long) -okhttp3.internal.http2.Hpack$Reader: Hpack$Reader(int,okio.Source) -androidx.lifecycle.LiveData: java.lang.Runnable mPostValueRunnable -androidx.vectordrawable.R$id: int line3 -com.turingtechnologies.materialscrollbar.R$color: int design_default_color_primary_dark -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_31 -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl access$000(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver -wangdaye.com.geometricweather.common.basic.models.Location -okio.RealBufferedSink: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getTag() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min -com.xw.repo.bubbleseekbar.R$attr: int dialogTheme -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.util.List SupplementalAdminAreas -wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_modal_elevation -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Small -androidx.appcompat.R$color: int abc_btn_colored_text_material -com.jaredrummler.android.colorpicker.R$color: int material_deep_teal_200 -com.turingtechnologies.materialscrollbar.R$id: int selected -com.xw.repo.bubbleseekbar.R$attr: int maxButtonHeight -com.bumptech.glide.integration.okhttp.R$color: int secondary_text_default_material_light -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: int unitArrayIndex -cyanogenmod.weather.WeatherLocation$1: cyanogenmod.weather.WeatherLocation createFromParcel(android.os.Parcel) -android.support.v4.os.ResultReceiver$MyRunnable: int mResultCode -okio.ByteString: int indexOf(okio.ByteString,int) -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_image_size -androidx.work.R$dimen: int notification_subtext_size -com.google.android.material.R$drawable: int abc_list_selector_background_transition_holo_dark -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.textfield.TextInputLayout: void setErrorIconTintMode(android.graphics.PorterDuff$Mode) -com.google.android.material.R$drawable: int design_bottom_navigation_item_background -com.google.android.material.button.MaterialButton: java.lang.String getA11yClassName() -androidx.preference.R$styleable: int AppCompatTextHelper_android_textAppearance -com.google.android.material.R$styleable: int ThemeEnforcement_enforceMaterialTheme -wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingStart -wangdaye.com.geometricweather.R$animator: int weather_cloudy_1 -com.xw.repo.bubbleseekbar.R$bool: int abc_allow_stacked_button_bar -androidx.transition.R$color: int secondary_text_default_material_light -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.lifecycle.extensions.R$id: int tag_accessibility_pane_title -androidx.preference.R$attr: int tintMode -wangdaye.com.geometricweather.R$drawable: int notif_temp_12 -okio.Buffer: okio.Buffer$UnsafeCursor readUnsafe(okio.Buffer$UnsafeCursor) -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_28 -okhttp3.internal.cache2.Relay$RelaySource: long sourcePos -android.didikee.donate.R$attr: int expandActivityOverflowButtonDrawable -androidx.appcompat.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitationProbability -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onComplete() -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onComplete() -wangdaye.com.geometricweather.R$styleable: int AlertDialog_android_layout -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul6H -cyanogenmod.providers.CMSettings$System: java.lang.String SYSTEM_PROFILES_ENABLED -com.google.android.material.R$styleable: int NavigationView_itemShapeInsetEnd -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_BottomSheetDialog -cyanogenmod.externalviews.ExternalView$8 -android.didikee.donate.R$id: int action_mode_close_button -com.google.android.material.datepicker.MaterialCalendar -androidx.appcompat.resources.R$id: int action_image -okio.BufferedSink: okio.BufferedSink writeUtf8(java.lang.String,int,int) -io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicBoolean once -androidx.hilt.R$dimen: int notification_right_icon_size -androidx.appcompat.R$attr: int state_above_anchor -com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingBottom -androidx.preference.R$styleable: int[] View -okhttp3.Headers: int size() -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog -com.google.android.material.R$styleable: int AppBarLayout_android_keyboardNavigationCluster -com.xw.repo.bubbleseekbar.R$id: int action_mode_bar -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyleSmall -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginBottom -com.google.android.material.R$string: int abc_search_hint -cyanogenmod.externalviews.ExternalView$2: ExternalView$2(cyanogenmod.externalviews.ExternalView,int,int,int,int,boolean,android.graphics.Rect) -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_LED_OFF -com.jaredrummler.android.colorpicker.R$styleable: int[] AlertDialog -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit MB -com.google.android.material.R$id: int mtrl_calendar_text_input_frame -com.turingtechnologies.materialscrollbar.R$attr: int itemHorizontalTranslationEnabled -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderCerts -com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_out_bottom -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTintMode -com.bumptech.glide.integration.okhttp.R$attr: int fontStyle -cyanogenmod.weatherservice.ServiceRequestResult: java.lang.String mKey -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language JAPANESE -androidx.constraintlayout.widget.R$dimen: int tooltip_y_offset_touch -wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeSeekBar -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_OutlinedButton -androidx.preference.R$id: int src_in -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_keylines -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_MULTIPLE_LEDS_ENABLE_VALIDATOR -com.google.android.material.R$styleable: int ConstraintSet_transitionPathRotate -com.google.android.material.appbar.HeaderBehavior: HeaderBehavior(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$attr: int barLength -androidx.appcompat.R$attr: int autoSizeMinTextSize -androidx.coordinatorlayout.R$id: int text -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setTranslateY(float) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: ExternalViewProviderService$Provider$ProviderImpl(cyanogenmod.externalviews.ExternalViewProviderService$Provider,cyanogenmod.externalviews.ExternalViewProviderService$Provider) -com.google.android.material.slider.Slider: void setTickTintList(android.content.res.ColorStateList) -okhttp3.internal.cache2.Relay$RelaySource: Relay$RelaySource(okhttp3.internal.cache2.Relay) -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder hostnameVerifier(javax.net.ssl.HostnameVerifier) -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_sheet_peek_height_min -androidx.customview.R$drawable: int notification_icon_background -com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_borderColor -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice Ice -androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context) -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat -androidx.recyclerview.R$attr: int fontStyle -androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_toRightOf -androidx.appcompat.R$styleable: int AppCompatTheme_dialogCornerRadius -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: int UnitType -androidx.loader.R$id: int italic -androidx.viewpager.R$attr: R$attr() -wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newDevSession(android.content.Context,java.lang.String) -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: java.lang.String DESCRIPTOR -androidx.preference.R$color: int dim_foreground_material_dark -okhttp3.internal.http1.Http1Codec: int STATE_WRITING_REQUEST_BODY -androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline2 -wangdaye.com.geometricweather.R$styleable: int Preference_android_shouldDisableView -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType END -androidx.appcompat.widget.LinearLayoutCompat: void setBaselineAligned(boolean) -wangdaye.com.geometricweather.R$attr: int subtitleTextColor -androidx.vectordrawable.R$styleable: int GradientColor_android_gradientRadius -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.CMWeatherManager sInstance -android.didikee.donate.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: int status -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer uvIndex -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getRagweedLevel() -androidx.swiperefreshlayout.R$id: int time -androidx.preference.R$dimen: int abc_text_size_title_material_toolbar -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextAppearance(int) -androidx.appcompat.R$dimen: int tooltip_precise_anchor_threshold -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean isDisposed() -com.google.android.material.R$attr: int navigationMode -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onNext(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$attr: int dialogPreferredPadding -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall -com.google.android.material.R$styleable: int RecyclerView_layoutManager -wangdaye.com.geometricweather.R$drawable: int notif_temp_19 -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display1 -androidx.preference.R$attr: int switchPadding -androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -com.google.android.material.R$attr: int tabIndicatorHeight -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationZ -androidx.hilt.work.R$id: int accessibility_custom_action_27 -android.didikee.donate.R$style: int Theme_AppCompat_Light_DarkActionBar -cyanogenmod.profiles.ConnectionSettings: int describeContents() -androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_material -wangdaye.com.geometricweather.R$string: int key_subtitle_data -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getThunderstormPrecipitationProbability() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitationProbability() -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_DOTS -com.google.android.material.R$color: int mtrl_error -okio.Base64 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: java.lang.String Unit -io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,boolean) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getGrassDescription() -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeStepGranularity -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_min -androidx.cardview.R$styleable: int CardView_android_minHeight -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setBackgroundResource(int) -com.google.android.material.R$attr: int colorSecondary -androidx.preference.R$style: int TextAppearance_AppCompat -androidx.fragment.app.FragmentState -james.adaptiveicon.R$styleable: int AppCompatTheme_dialogPreferredPadding -androidx.constraintlayout.widget.R$dimen: int abc_text_size_caption_material -androidx.lifecycle.ViewModel: void clear() -androidx.constraintlayout.widget.R$color: int abc_search_url_text_selected -androidx.drawerlayout.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$id: int widget_day_week -androidx.work.R$styleable: int FontFamilyFont_fontWeight -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform get() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Large_Inverse -com.google.android.material.R$styleable: int TextInputLayout_shapeAppearanceOverlay -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitation -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -okhttp3.internal.cache.CacheStrategy$Factory: long computeFreshnessLifetime() -okhttp3.internal.ws.RealWebSocket$Close: okio.ByteString reason -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -androidx.coordinatorlayout.widget.CoordinatorLayout: void setFitsSystemWindows(boolean) -androidx.appcompat.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionIcon -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_body_1_material -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_min -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitationProbability -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setWeatherSource(java.lang.String) -androidx.preference.R$drawable: int abc_ic_go_search_api_material -androidx.core.R$dimen: int notification_large_icon_width -android.didikee.donate.R$styleable: int AppCompatTheme_viewInflaterClass -androidx.appcompat.view.menu.ActionMenuItemView: void setChecked(boolean) -okhttp3.Cookie: boolean secure -com.github.rahatarmanahmed.cpv.CircularProgressView: void setProgress(float) -wangdaye.com.geometricweather.R$dimen: int widget_large_title_text_size -androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_title_material -com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_indicator_material -com.google.android.material.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -com.google.android.material.R$styleable: int ShapeableImageView_strokeColor -okio.HashingSource: okio.HashingSource hmacSha256(okio.Source,okio.ByteString) -com.google.android.material.R$dimen: int fastscroll_margin -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.subjects.Subject signaller -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void cancel(io.reactivex.internal.queue.SpscLinkedArrayQueue,io.reactivex.internal.queue.SpscLinkedArrayQueue) -androidx.constraintlayout.widget.R$attr: int sizePercent -io.reactivex.internal.util.ExceptionHelper$Termination: ExceptionHelper$Termination() -com.turingtechnologies.materialscrollbar.R$attr: int autoSizeMinTextSize -androidx.legacy.coreutils.R$attr -cyanogenmod.app.Profile: java.util.UUID[] getSecondaryUuids() -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: java.util.List textBlocItems -com.jaredrummler.android.colorpicker.R$attr: int title -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper[] values() -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_CompactMenu -com.google.android.material.behavior.SwipeDismissBehavior: SwipeDismissBehavior() -android.didikee.donate.R$layout: int abc_alert_dialog_material -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -androidx.constraintlayout.widget.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_item_max_width -com.turingtechnologies.materialscrollbar.R$attr: int toolbarStyle -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_corner_radius_material -wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity -com.google.android.material.chip.Chip: void setChipStrokeColorResource(int) -cyanogenmod.library.R$attr: int type -com.jaredrummler.android.colorpicker.R$styleable: int[] StateListDrawable -androidx.appcompat.widget.AppCompatSpinner: void setPopupBackgroundDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$dimen: int mtrl_high_ripple_pressed_alpha -com.turingtechnologies.materialscrollbar.R$attr: int actionLayout -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.Observer downstream -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_BINARY -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_notificationGroupExistsByName -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getThermalState -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: void setNotice(java.lang.String) -androidx.viewpager2.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.preference.R$styleable: int CoordinatorLayout_keylines -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String to -com.google.android.material.R$styleable: int LinearLayoutCompat_android_gravity -com.google.android.material.R$styleable: int Layout_maxWidth -com.google.android.material.R$dimen: int mtrl_calendar_navigation_bottom_padding -wangdaye.com.geometricweather.R$id: int labelGroup -androidx.lifecycle.SingleGeneratedAdapterObserver -com.bumptech.glide.R$dimen: R$dimen() -com.jaredrummler.android.colorpicker.R$styleable: int ActionBarLayout_android_layout_gravity -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableTop -com.turingtechnologies.materialscrollbar.R$attr: int actionOverflowButtonStyle -com.google.android.material.R$anim: int abc_slide_out_bottom -androidx.preference.R$id: int split_action_bar -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: boolean inputExhausted -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_brightness -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setStatus(int) -wangdaye.com.geometricweather.R$id: int widget_day_week_week_1 -james.adaptiveicon.R$attr: int fontWeight -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableLeft -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ProgressBar_Horizontal -androidx.core.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.hilt.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_transitionPathRotate -android.didikee.donate.R$attr: int actionOverflowButtonStyle -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display2 -com.google.android.material.bottomappbar.BottomAppBar: int getLeftInset() -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_800 -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.legacy.coreutils.R$integer -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult -com.turingtechnologies.materialscrollbar.R$attr: int preserveIconSpacing -com.google.android.material.circularreveal.CircularRevealGridLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -com.xw.repo.bubbleseekbar.R$dimen: int abc_control_corner_material -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableRight -com.google.android.material.R$dimen: int notification_action_icon_size -okhttp3.HttpUrl: java.lang.String PATH_SEGMENT_ENCODE_SET -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long count -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date getTo() -james.adaptiveicon.R$attr: int thickness -androidx.vectordrawable.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$attr: int cpv_previewSize -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_keyline -okio.Options -okhttp3.internal.http.HttpHeaders: void parseChallengeHeader(java.util.List,okio.Buffer) -cyanogenmod.weather.WeatherInfo: java.util.List mForecastList -com.google.android.material.R$style: int Widget_AppCompat_ListPopupWindow -wangdaye.com.geometricweather.R$attr: int checkedIconVisible -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_seekBarStyle -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListMenuView -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_NavigationView -com.bumptech.glide.integration.okhttp.R$attr: int keylines -james.adaptiveicon.R$styleable: int ActionBar_contentInsetStartWithNavigation -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.Scheduler$Worker worker -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType COLOR_DRAWABLE_TYPE -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: double Value -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.WeatherEntity) -androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context,android.util.AttributeSet) -cyanogenmod.externalviews.KeyguardExternalView$2 -com.turingtechnologies.materialscrollbar.R$attr: int collapsedTitleGravity -wangdaye.com.geometricweather.R$style: int content_text -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_6_00 -androidx.lifecycle.ServiceLifecycleDispatcher: ServiceLifecycleDispatcher(androidx.lifecycle.LifecycleOwner) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_default -androidx.appcompat.widget.SwitchCompat: void setShowText(boolean) -cyanogenmod.weather.CMWeatherManager: java.lang.String getActiveWeatherServiceProviderLabel() -wangdaye.com.geometricweather.R$attr: int circleRadius -androidx.constraintlayout.widget.R$id: int center -wangdaye.com.geometricweather.R$attr: int enabled -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_elevation -androidx.lifecycle.LiveData$ObserverWrapper: boolean shouldBeActive() -androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentX -androidx.constraintlayout.widget.VirtualLayout -okio.Segment: okio.Segment push(okio.Segment) -wangdaye.com.geometricweather.R$styleable: int Preference_selectable -androidx.constraintlayout.widget.Guideline -androidx.appcompat.R$styleable: int MenuView_android_itemBackground -com.jaredrummler.android.colorpicker.R$id: int home -androidx.constraintlayout.widget.Placeholder: void setContentId(int) -okhttp3.internal.http2.Http2Reader$Handler: void pushPromise(int,int,java.util.List) -wangdaye.com.geometricweather.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialButtonToggleGroup -androidx.constraintlayout.widget.R$layout: int abc_search_dropdown_item_icons_2line -androidx.preference.R$id: int spacer -androidx.appcompat.R$attr: int elevation -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String temperature -com.google.android.material.R$dimen: int design_bottom_navigation_elevation -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: void run() -okio.SegmentedByteString: java.lang.String hex() -okhttp3.TlsVersion: TlsVersion(java.lang.String,int,java.lang.String) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: void run() -com.google.android.material.R$styleable: int Chip_chipCornerRadius -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_motionTarget -androidx.preference.R$color: int primary_dark_material_dark -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_colored_ripple_color -android.didikee.donate.R$attr: int actionBarDivider -androidx.appcompat.R$attr: int textAppearanceLargePopupMenu -wangdaye.com.geometricweather.R$id: int widget_day_week_week_5 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeSplitBackground -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer RIGHT_CLOSE -com.xw.repo.bubbleseekbar.R$attr: int dropdownListPreferredItemHeight -androidx.appcompat.R$dimen: int abc_dialog_padding_top_material -com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String getLanguageName(android.content.Context) -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float getPrecipitation(float) -com.github.rahatarmanahmed.cpv.CircularProgressView$9 -androidx.appcompat.resources.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeApparentTemperature -okio.Okio$2: java.io.InputStream val$in -com.google.gson.internal.LazilyParsedNumber: int hashCode() -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setBottomTextColor(int) -wangdaye.com.geometricweather.R$dimen: int abc_config_prefDialogWidth -com.jaredrummler.android.colorpicker.R$dimen: int preference_icon_minWidth -wangdaye.com.geometricweather.R$attr: int cornerSizeBottomRight -androidx.activity.R$id: int icon -cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(cyanogenmod.weatherservice.ServiceRequestResult$1) -io.reactivex.internal.util.VolatileSizeArrayList: java.util.ListIterator listIterator() -io.reactivex.Observable: io.reactivex.Observable scan(java.lang.Object,io.reactivex.functions.BiFunction) -androidx.preference.R$attr: int layout_behavior -wangdaye.com.geometricweather.R$id: int floating -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_UnelevatedButton -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_NIGHT -wangdaye.com.geometricweather.R$attr: int bottomSheetDialogTheme -androidx.preference.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintStart_toStartOf -okhttp3.internal.http2.Settings: int getMaxHeaderListSize(int) -com.google.android.material.R$styleable: int ImageFilterView_overlay -androidx.recyclerview.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragScale -androidx.constraintlayout.widget.R$attr: int layout_constraintCircleRadius -wangdaye.com.geometricweather.R$styleable: int[] ConstraintSet -james.adaptiveicon.R$style: int Widget_AppCompat_SearchView_ActionBar -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Tooltip -wangdaye.com.geometricweather.db.entities.LocationEntity: void setCity(java.lang.String) -cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.CustomTile getCustomTile() -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object lpValue() -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: BlockingObservableIterable$BlockingObservableIterator(int) -androidx.hilt.work.R$id: int dialog_button -androidx.appcompat.R$id: int text2 -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_large_material -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedVoice(android.content.Context,float) -retrofit2.Platform$Android$MainThreadExecutor: void execute(java.lang.Runnable) -org.greenrobot.greendao.AbstractDao: java.lang.Object loadCurrentOther(org.greenrobot.greendao.AbstractDao,android.database.Cursor,int) -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_item_max_width -okhttp3.internal.tls.DistinguishedNameParser: int getByte(int) -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: void run() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource valueOf(java.lang.String) -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_Solid -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelMenuListTheme -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: java.lang.Object value -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onDetach -androidx.activity.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalGap -androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowDx -retrofit2.Invocation: java.lang.reflect.Method method -android.didikee.donate.R$id: int ifRoom -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_checkedTextViewStyle -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeChangeListener mThemeChangeListener -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_corner_radius_material -android.didikee.donate.R$styleable: int ActionMode_backgroundSplit -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void dispose() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_button_material -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_toggle_margin_bottom -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Info -okhttp3.Cache: int VERSION -androidx.constraintlayout.motion.widget.MotionLayout: android.os.Bundle getTransitionState() -androidx.preference.R$dimen: int tooltip_precise_anchor_extra_offset -androidx.hilt.work.R$styleable: int Fragment_android_tag -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -com.google.android.material.button.MaterialButton$SavedState -androidx.preference.Preference: void setOnPreferenceClickListener(androidx.preference.Preference$OnPreferenceClickListener) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver -com.google.android.material.R$color: int abc_decor_view_status_guard -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop -androidx.preference.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.R$attr: int defaultDuration -wangdaye.com.geometricweather.R$styleable: int[] View -retrofit2.HttpException: java.lang.String getMessage(retrofit2.Response) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean delayErrors -wangdaye.com.geometricweather.R$styleable: int Preference_layout -cyanogenmod.app.Profile: cyanogenmod.profiles.LockSettings mScreenLockMode -com.google.android.material.R$id: int accessibility_custom_action_0 -james.adaptiveicon.R$styleable: int ActionBar_displayOptions -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_android_minHeight -cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo build() -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemBackground(android.graphics.drawable.Drawable) -androidx.transition.R$id: int icon_group -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property CityId -androidx.preference.R$styleable: int AppCompatTextView_fontFamily -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: void setColor(boolean) -com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_top_material -james.adaptiveicon.R$styleable: int MenuItem_actionProviderClass -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Time -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressViewStartOffset() -com.jaredrummler.android.colorpicker.R$attr: int disableDependentsState -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_WIFI_COMBO_MARGIN_END -androidx.loader.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.R$color: int material_grey_300 -com.xw.repo.bubbleseekbar.R$styleable: int[] SwitchCompat -androidx.vectordrawable.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.R$id: int lastElement -wangdaye.com.geometricweather.R$attr: int rangeFillColor -wangdaye.com.geometricweather.R$string: int key_widget_clock_day_week -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1 -io.reactivex.internal.util.NotificationLite$ErrorNotification: int hashCode() -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void headers(boolean,int,int,java.util.List) -com.turingtechnologies.materialscrollbar.R$id: int touch_outside -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog -com.google.android.material.R$style: int Base_Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmPic2 -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge -wangdaye.com.geometricweather.R$attr: int barrierAllowsGoneWidgets -com.xw.repo.bubbleseekbar.R$dimen: int hint_alpha_material_dark -wangdaye.com.geometricweather.R$drawable: int notif_temp_134 -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_windowAnimationStyle -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_15 -com.google.android.material.R$styleable: int[] CollapsingToolbarLayout -androidx.drawerlayout.R$dimen: int compat_notification_large_icon_max_height -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: boolean disposed -wangdaye.com.geometricweather.R$attr: int singleSelection -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: ObservableMergeWithCompletable$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver) -com.turingtechnologies.materialscrollbar.R$layout: int abc_cascading_menu_item_layout -okhttp3.EventListener$Factory: okhttp3.EventListener create(okhttp3.Call) -com.jaredrummler.android.colorpicker.R$id: int default_activity_button -androidx.appcompat.widget.FitWindowsFrameLayout: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingStart -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox -retrofit2.RequestFactory$Builder: okhttp3.Headers headers -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean unRegisterThermalListener(cyanogenmod.hardware.IThermalListenerCallback) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getZh_CN() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Choice -wangdaye.com.geometricweather.R$id: int container_main_pollen_title -com.xw.repo.bubbleseekbar.R$style: int Base_V22_Theme_AppCompat -androidx.core.R$id: int accessibility_custom_action_23 -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_dividerHeight -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String LocalizedName -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onNext(java.lang.Object) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.preference.R$style: int Platform_V25_AppCompat_Light -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color Color -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -wangdaye.com.geometricweather.R$style: int notification_content_text -cyanogenmod.app.CustomTileListenerService: android.os.IBinder onBind(android.content.Intent) -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: int count -androidx.appcompat.R$attr: int windowFixedHeightMinor -james.adaptiveicon.R$attr: int listMenuViewStyle -com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_layout -james.adaptiveicon.R$color: int abc_hint_foreground_material_dark -okhttp3.internal.ws.WebSocketWriter$FrameSink: boolean isFirstFrame -wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_divider -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_DayTextView -okhttp3.internal.http2.Http2Stream$FramingSink: okio.Buffer sendBuffer -james.adaptiveicon.R$dimen: int tooltip_vertical_padding -androidx.preference.R$styleable: int TextAppearance_android_shadowDy -james.adaptiveicon.R$styleable: int ViewBackgroundHelper_backgroundTintMode -retrofit2.Retrofit$1: retrofit2.Retrofit this$0 -wangdaye.com.geometricweather.R$color -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date startDate -cyanogenmod.profiles.StreamSettings: int mStreamId -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: long serialVersionUID -okhttp3.logging.LoggingEventListener$1 -com.google.android.material.R$id: int month_navigation_next -com.google.android.material.R$id: int chip2 -androidx.preference.R$attr: int listChoiceIndicatorMultipleAnimated -io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicReference missedSubscription -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial Imperial -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSo2Desc(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_homeLayout -okhttp3.internal.Util$2: java.lang.Thread newThread(java.lang.Runnable) -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.internal.disposables.SequentialDisposable upstream -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_lineHeight -com.google.android.material.R$styleable: int KeyTimeCycle_android_alpha -androidx.preference.R$layout: int abc_screen_content_include -androidx.lifecycle.DefaultLifecycleObserver: void onPause(androidx.lifecycle.LifecycleOwner) -okio.Buffer$UnsafeCursor: byte[] data -wangdaye.com.geometricweather.R$string: int feedback_collect_failed -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_wrapMode -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTag -androidx.preference.R$attr: int tooltipFrameBackground -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchMinWidth -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_DarkActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchAnchorId -androidx.appcompat.R$dimen: int abc_text_size_small_material -okio.GzipSource: okio.BufferedSource source -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon Moon -com.google.android.material.R$style: int Theme_MaterialComponents_NoActionBar_Bridge -com.jaredrummler.android.colorpicker.R$styleable: int[] CoordinatorLayout -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_horizontal_padding -androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_PROVIDER_WITH_EVENT -androidx.preference.R$attr: int listItemLayout -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: java.lang.Integer proba6H -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyTopLeft -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Display_TextInputEditText -cyanogenmod.app.ILiveLockScreenManager: void cancelLiveLockScreen(java.lang.String,int,int) -james.adaptiveicon.R$attr: int actionModeSplitBackground -androidx.work.R$id: int accessibility_custom_action_10 -androidx.hilt.work.R$dimen: int notification_big_circle_margin -com.google.android.material.R$styleable: int ImageFilterView_crossfade -wangdaye.com.geometricweather.R$string: int key_card_display -wangdaye.com.geometricweather.R$string: int alipay -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_backgroundTint -androidx.drawerlayout.R$drawable -okio.Buffer: long indexOf(okio.ByteString) -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: ICMTelephonyManager$Stub$Proxy(android.os.IBinder) -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -androidx.preference.R$attr: int queryHint -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit C -wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvIndex(java.lang.Integer) -com.google.android.material.R$attr: int constraints -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onAttach() -com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingStart -androidx.hilt.R$layout -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getKey() -androidx.hilt.work.R$id: int italic -com.turingtechnologies.materialscrollbar.R$layout: int design_layout_snackbar_include -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_NoActionBar -com.xw.repo.bubbleseekbar.R$layout: int select_dialog_item_material -androidx.preference.R$id: int titleDividerNoCustom -cyanogenmod.weatherservice.WeatherProviderService: java.util.Set access$100(cyanogenmod.weatherservice.WeatherProviderService) -cyanogenmod.providers.CMSettings$System: java.lang.String SWAP_VOLUME_KEYS_ON_ROTATION -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String district -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: java.lang.Integer poll() -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_subtitle -androidx.viewpager2.R$id: int chronometer -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_120 -androidx.preference.ListPreference$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.util.Date date -androidx.vectordrawable.animated.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: long updatedOn -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitationProbability -okio.Buffer -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_android_maxWidth -com.turingtechnologies.materialscrollbar.R$style: int CardView -androidx.preference.R$styleable: int SearchView_suggestionRowLayout -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_FONT -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: long serialVersionUID -androidx.constraintlayout.widget.R$attr: int windowFixedWidthMajor -okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_ENCODE_SET -com.jaredrummler.android.colorpicker.R$id: int cpv_color_picker_view -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isAsync -retrofit2.ParameterHandler$Path: boolean encoded -androidx.recyclerview.R$id: int info -androidx.preference.R$styleable: int RecycleListView_paddingBottomNoButtons -com.turingtechnologies.materialscrollbar.R$attr: int counterEnabled -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_creator -com.google.android.material.bottomnavigation.BottomNavigationView: android.view.MenuInflater getMenuInflater() -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.google.android.material.R$id: int month_navigation_bar -com.google.android.material.R$attr: int tabIndicatorColor -com.turingtechnologies.materialscrollbar.R$attr: int itemIconTint -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_popupTheme -james.adaptiveicon.R$attr: int actionBarSplitStyle -androidx.core.R$attr: R$attr() -cyanogenmod.externalviews.KeyguardExternalView: void access$300(cyanogenmod.externalviews.KeyguardExternalView) -com.google.android.material.transformation.FabTransformationScrimBehavior: FabTransformationScrimBehavior(android.content.Context,android.util.AttributeSet) -cyanogenmod.providers.CMSettings$System: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_Alert -androidx.preference.R$styleable: int ActionBar_subtitleTextStyle -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: void run() -androidx.loader.R$styleable -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_default_mtrl_alpha -androidx.viewpager2.R$id: int accessibility_custom_action_20 -androidx.constraintlayout.widget.R$id: int expanded_menu -androidx.activity.R$id: int tag_unhandled_key_event_manager -androidx.hilt.R$id: int icon_group -wangdaye.com.geometricweather.R$id: int widget_day_center -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_onClick -io.reactivex.internal.subscriptions.SubscriptionHelper -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getWeatherKind() -com.google.android.material.R$attr: int flow_horizontalAlign -wangdaye.com.geometricweather.R$id: int item_about_link_text -cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(android.os.Parcel) -james.adaptiveicon.R$attr: int listPreferredItemHeight -okhttp3.internal.http1.Http1Codec$ChunkedSink: okhttp3.internal.http1.Http1Codec this$0 -androidx.preference.R$styleable: int[] ActionBarLayout -com.google.android.material.R$attr: int actionLayout -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_allowCustom -com.turingtechnologies.materialscrollbar.R$string: int appbar_scrolling_view_behavior -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void dispose() -com.xw.repo.bubbleseekbar.R$color: int error_color_material_dark -android.didikee.donate.R$style: int Widget_AppCompat_Spinner_Underlined -retrofit2.ParameterHandler$1: retrofit2.ParameterHandler this$0 -com.google.android.material.R$style: int Widget_AppCompat_Button -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver otherObserver -androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontWeight -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Subhead -io.reactivex.internal.disposables.SequentialDisposable: SequentialDisposable() -wangdaye.com.geometricweather.R$dimen: int design_snackbar_action_inline_max_width -com.google.android.material.R$color -okhttp3.Response$Builder: okhttp3.ResponseBody body -wangdaye.com.geometricweather.R$attr: int thumbElevation -androidx.preference.R$attr: int autoSizeTextType -okio.SegmentPool: long MAX_SIZE -androidx.loader.R$dimen: int notification_right_side_padding_top -com.xw.repo.bubbleseekbar.R$attr: int editTextBackground -androidx.coordinatorlayout.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getHeaderHeight() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -androidx.appcompat.widget.AppCompatButton: int getAutoSizeMaxTextSize() -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_BottomSheet -okio.DeflaterSink: DeflaterSink(okio.Sink,java.util.zip.Deflater) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max -com.google.android.material.button.MaterialButton: void setCornerRadiusResource(int) -androidx.lifecycle.ProcessLifecycleOwner$3$1: ProcessLifecycleOwner$3$1(androidx.lifecycle.ProcessLifecycleOwner$3) -androidx.appcompat.resources.R$dimen: int compat_notification_large_icon_max_width -com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_android_color -retrofit2.OkHttpCall: void enqueue(retrofit2.Callback) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_action_bar_item_background_material -io.reactivex.internal.schedulers.AbstractDirectTask: AbstractDirectTask(java.lang.Runnable) -cyanogenmod.profiles.RingModeSettings$1: java.lang.Object[] newArray(int) -com.xw.repo.bubbleseekbar.R$color: int colorPrimary -com.google.android.material.R$styleable: int Variant_constraints -androidx.constraintlayout.widget.R$attr: int layout_constraintRight_toLeftOf -com.google.android.material.R$dimen: int mtrl_badge_text_size -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: void run() -james.adaptiveicon.R$layout: int abc_alert_dialog_title_material -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String x -wangdaye.com.geometricweather.R$attr: int chainUseRtl -androidx.lifecycle.extensions.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$dimen: int design_fab_border_width -android.didikee.donate.R$style: int Base_Theme_AppCompat -android.didikee.donate.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -androidx.lifecycle.ViewModelProvider$Factory: androidx.lifecycle.ViewModel create(java.lang.Class) -androidx.constraintlayout.widget.R$styleable: int[] ImageFilterView -cyanogenmod.themes.ThemeManager$1$1: int val$progress -okhttp3.internal.http2.Http2Writer: okhttp3.internal.http2.Hpack$Writer hpackWriter -retrofit2.SkipCallbackExecutorImpl -okhttp3.Request$Builder: okhttp3.Request$Builder post(okhttp3.RequestBody) -com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_normal -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display3 -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe() -com.google.android.material.R$styleable: int[] BottomSheetBehavior_Layout -com.google.android.material.chip.Chip: void setCloseIconTintResource(int) -okhttp3.HttpUrl: java.lang.String QUERY_ENCODE_SET -james.adaptiveicon.R$attr: int barLength -android.didikee.donate.R$drawable: int abc_list_pressed_holo_dark -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCityId() -okhttp3.internal.platform.Android10Platform -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -android.didikee.donate.R$dimen -com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getSupportImageTintList() -wangdaye.com.geometricweather.R$string: int key_widget_day -okhttp3.logging.LoggingEventListener$Factory: LoggingEventListener$Factory() -androidx.appcompat.widget.AppCompatButton: void setSupportAllCaps(boolean) -com.turingtechnologies.materialscrollbar.R$attr: int actionModeCopyDrawable -wangdaye.com.geometricweather.R$id: int action_bar_subtitle -wangdaye.com.geometricweather.R$attr: int prefixTextAppearance -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.turingtechnologies.materialscrollbar.R$attr: int actionModeBackground -com.google.android.material.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status valueOf(java.lang.String) -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -com.google.android.material.bottomappbar.BottomAppBar: boolean getHideOnScroll() -com.jaredrummler.android.colorpicker.R$color: int background_material_dark -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getLastThemeChangeRequestType -androidx.preference.R$attr: int maxButtonHeight -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: void setDrawable(boolean) -androidx.preference.R$attr: int autoSizeMaxTextSize -wangdaye.com.geometricweather.R$id: int mtrl_calendar_selection_frame -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontStyle -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks asInterface(android.os.IBinder) -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_scaleY -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_barLength -androidx.preference.R$dimen: int abc_dialog_min_width_minor -wangdaye.com.geometricweather.R$styleable: int Preference_android_iconSpaceReserved -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy valueOf(java.lang.String) -wangdaye.com.geometricweather.R$attr: int contentScrim -androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyleSmall -com.google.android.material.R$styleable: int Constraint_flow_verticalBias -androidx.legacy.coreutils.R$attr: int fontVariationSettings -android.didikee.donate.R$styleable: int AppCompatTheme_windowActionBarOverlay -com.google.android.material.R$styleable: int TabLayout_tabGravity -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display1 -androidx.appcompat.R$styleable: int ActionBar_subtitleTextStyle -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setMinutelyList(java.util.List) -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_backgroundTint -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator -okhttp3.OkHttpClient$1: boolean connectionBecameIdle(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) -com.google.android.material.R$drawable: int abc_cab_background_internal_bg -androidx.preference.R$attr: int editTextPreferenceStyle -com.jaredrummler.android.colorpicker.R$dimen: int abc_seekbar_track_progress_height_material -androidx.hilt.R$styleable: int[] FontFamilyFont -okhttp3.internal.http2.Http2Connection$2: Http2Connection$2(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,long) -wangdaye.com.geometricweather.R$attr: int visibilityMode -com.google.android.material.R$styleable: int ImageFilterView_warmth -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String ID -wangdaye.com.geometricweather.R$string: int get_more_github -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherPhase -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher -james.adaptiveicon.R$dimen: int notification_small_icon_background_padding -androidx.preference.R$dimen: int tooltip_margin -okhttp3.RealCall: okio.Timeout timeout() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -com.google.android.material.R$color: int primary_text_disabled_material_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String getWeather() -com.google.android.material.datepicker.CalendarConstraints$DateValidator -com.google.android.material.R$styleable: int TabLayout_tabTextColor -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_disabled_material_dark -retrofit2.Platform: int defaultConverterFactoriesSize() -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean add(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) -androidx.customview.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.R$attr: int tickColor -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$color: int material_timepicker_clockface -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_16dp -com.google.android.material.R$styleable: int Chip_android_ellipsize -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_searchViewStyle -androidx.dynamicanimation.R$id: int blocking -com.google.gson.stream.JsonReader: java.lang.String[] pathNames -com.google.android.material.chip.Chip: void setChipCornerRadiusResource(int) -com.google.android.material.R$dimen: int design_snackbar_min_width +wangdaye.com.geometricweather.R$string: int background_information +com.xw.repo.bubbleseekbar.R$color: R$color() +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_tileMode +cyanogenmod.weatherservice.ServiceRequest: void reject(int) +androidx.lifecycle.ComputableLiveData: androidx.lifecycle.LiveData getLiveData() +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_darkIcon +com.google.android.material.R$dimen: int mtrl_btn_dialog_btn_min_width +com.google.android.material.R$styleable: int ShapeAppearance_cornerSize +com.xw.repo.bubbleseekbar.R$id: int action_context_bar +com.google.android.material.textfield.TextInputLayout: void setEndIconTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: java.util.List getAlerts() +androidx.appcompat.R$color: int abc_decor_view_status_guard_light +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Alert_Bridge +okio.GzipSource: void consumeTrailer() +android.didikee.donate.R$drawable: int abc_scrubber_control_off_mtrl_alpha +androidx.preference.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +androidx.appcompat.widget.ActionBarOverlayLayout: void setHasNonEmbeddedTabs(boolean) +io.reactivex.Observable: io.reactivex.Observable sorted() +james.adaptiveicon.R$id: int list_item +wangdaye.com.geometricweather.R$attr: int layout_constraintEnd_toEndOf +com.google.android.material.R$attr: int actionLayout +androidx.preference.PreferenceGroup$SavedState +james.adaptiveicon.R$styleable: int AppCompatTextView_textLocale +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_showDividers +androidx.preference.R$style: int PreferenceThemeOverlay_v14 +com.google.android.material.R$layout: int material_clock_display +com.google.android.material.appbar.HeaderScrollingViewBehavior: HeaderScrollingViewBehavior() +wangdaye.com.geometricweather.R$attr: int spinnerDropDownItemStyle +androidx.appcompat.widget.AppCompatButton: android.content.res.ColorStateList getSupportCompoundDrawablesTintList() +cyanogenmod.weather.WeatherInfo$DayForecast$1: cyanogenmod.weather.WeatherInfo$DayForecast createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$color: int material_deep_teal_500 +android.didikee.donate.R$id: int notification_main_column_container +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: java.util.Queue sources +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +com.google.android.material.R$attr: int srcCompat +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollEnabled +wangdaye.com.geometricweather.R$attr: int actionBarWidgetTheme +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +com.xw.repo.bubbleseekbar.R$id: int text +com.turingtechnologies.materialscrollbar.R$id: int right_side +androidx.appcompat.R$layout: int abc_cascading_menu_item_layout +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_normal_pressed +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginRight +wangdaye.com.geometricweather.R$id: int gridView +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void drain() +androidx.constraintlayout.widget.R$id: int search_edit_frame +wangdaye.com.geometricweather.R$id: int ragweedIcon +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$attr: int fontWeight +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton +com.jaredrummler.android.colorpicker.R$attr: int isPreferenceVisible +cyanogenmod.providers.CMSettings$Secure: java.lang.String BUTTON_BACKLIGHT_TIMEOUT +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.R$layout: int item_weather_daily_title_large +com.bumptech.glide.integration.okhttp.R$attr: int ttcIndex +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean cancelled +androidx.viewpager2.R$attr: int fastScrollHorizontalTrackDrawable +android.didikee.donate.R$drawable: int abc_list_selector_holo_dark +okhttp3.ConnectionSpec$Builder: ConnectionSpec$Builder(boolean) +androidx.appcompat.R$styleable: int Toolbar_navigationContentDescription +com.bumptech.glide.integration.okhttp.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getSO2() +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +androidx.appcompat.widget.AppCompatRadioButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActivityChooserView +androidx.appcompat.R$dimen: int abc_dialog_fixed_height_major +com.xw.repo.bubbleseekbar.R$attr: int switchPadding +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit$Calculator unitCalculator +io.reactivex.Observable: io.reactivex.Observable distinct(io.reactivex.functions.Function,java.util.concurrent.Callable) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorButtonNormal +wangdaye.com.geometricweather.R$string: int mtrl_picker_announce_current_selection +okio.Okio$3: Okio$3() +io.reactivex.Observable: java.lang.Object blockingFirst(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit M +androidx.appcompat.widget.Toolbar: void setTitleTextColor(int) +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String content +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: double gust +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: void setY(java.lang.String) +wangdaye.com.geometricweather.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$string: int gitHub +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks +wangdaye.com.geometricweather.R$drawable: int notif_temp_92 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: AccuDailyResult$DailyForecasts$Day$Wind() +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_material_dark +androidx.dynamicanimation.animation.DynamicAnimation +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Medium +io.reactivex.subjects.PublishSubject$PublishDisposable: long serialVersionUID +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +com.google.android.material.R$dimen: int mtrl_shape_corner_size_large_component +retrofit2.KotlinExtensions$suspendAndThrow$1: KotlinExtensions$suspendAndThrow$1(kotlin.coroutines.Continuation) +com.bumptech.glide.integration.okhttp.R$dimen: R$dimen() +com.turingtechnologies.materialscrollbar.R$attr: int dialogPreferredPadding +androidx.preference.R$attr: int buttonBarButtonStyle +androidx.appcompat.R$styleable: int MenuItem_tooltipText +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart +android.didikee.donate.R$attr: int actionDropDownStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogPreferredPadding +com.google.android.material.R$attr: int voiceIcon +okhttp3.Dispatcher +com.google.android.material.R$attr: int pressedTranslationZ +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setLabelVisibilityMode(int) +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: void onFinish(boolean) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_android_enabled +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Borderless +com.turingtechnologies.materialscrollbar.R$animator: int design_fab_show_motion_spec +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit valueOf(java.lang.String) +com.google.android.material.chip.ChipGroup +androidx.viewpager.R$id: int notification_main_column_container +com.google.android.material.R$drawable: int abc_ic_star_black_16dp +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf +com.turingtechnologies.materialscrollbar.R$attr: int chipIconTint +androidx.appcompat.view.menu.ActionMenuItemView: void setCheckable(boolean) +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_precise_anchor_extra_offset +okio.RealBufferedSource: long indexOfElement(okio.ByteString) +com.google.android.material.imageview.ShapeableImageView: android.content.res.ColorStateList getStrokeColor() +androidx.preference.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +okio.AsyncTimeout$1: okio.AsyncTimeout this$0 +com.google.gson.stream.JsonReader: int PEEKED_NULL +com.google.android.material.R$styleable: int KeyCycle_waveOffset +com.google.android.material.R$attr: int layout_dodgeInsetEdges +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Menu +com.google.android.material.snackbar.SnackbarContentLayout: SnackbarContentLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$id: int date_picker_actions +com.google.android.material.R$attr: int layoutManager +okhttp3.Response: okhttp3.Response networkResponse() +com.google.gson.internal.LazilyParsedNumber: double doubleValue() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String LongPhrase +androidx.appcompat.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconStartPadding android.didikee.donate.R$dimen: int abc_switch_padding -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getHourlyForecast() -okhttp3.internal.ws.RealWebSocket$Message -cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: ObservableInterval$IntervalObserver(io.reactivex.Observer) -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_ActionBar -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: float getDensity(float) -wangdaye.com.geometricweather.R$attr: int viewInflaterClass -androidx.customview.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$attr: int cpv_showDialog -retrofit2.CallAdapter$Factory: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) -androidx.appcompat.R$id: int right_icon -androidx.customview.R$styleable: int GradientColorItem_android_offset -com.google.android.material.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -okhttp3.internal.platform.AndroidPlatform: boolean api23IsCleartextTrafficPermitted(java.lang.String,java.lang.Class,java.lang.Object) -androidx.viewpager2.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextAppearanceInactive -androidx.customview.R$styleable: int GradientColor_android_endX -androidx.core.R$id: int accessibility_custom_action_29 -cyanogenmod.hardware.CMHardwareManager: int FEATURE_PERSISTENT_STORAGE -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getHourlyForecast() -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int itemIconTint +retrofit2.Retrofit: okhttp3.HttpUrl baseUrl() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float thunderstormPrecipitation +james.adaptiveicon.R$dimen: int abc_text_size_small_material +androidx.swiperefreshlayout.R$id: int forever +android.didikee.donate.R$dimen: int abc_button_inset_vertical_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: java.lang.String English +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_title +androidx.constraintlayout.widget.R$drawable: int tooltip_frame_dark +androidx.preference.R$dimen: int abc_button_padding_vertical_material +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemSummary(java.lang.String) +com.jaredrummler.android.colorpicker.R$attr: int tickMark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum() +wangdaye.com.geometricweather.R$attr: int listPreferredItemHeight +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_wrapMode +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_RC4_128_MD5 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: CaiYunMainlyResult$AlertsBean$ImagesBean() +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getDescription() +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +com.google.android.material.R$id: int position +wangdaye.com.geometricweather.R$dimen: int spinner_drop_width +com.jaredrummler.android.colorpicker.R$style: int Base_V23_Theme_AppCompat_Light +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1(androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription,long) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String getIcon() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarStyle +androidx.swiperefreshlayout.R$drawable: int notification_template_icon_low_bg +com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: java.lang.String level +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog +okhttp3.internal.ws.RealWebSocket: boolean close(int,java.lang.String,long) +com.google.android.material.R$dimen: int clock_face_margin_start +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +cyanogenmod.weather.WeatherLocation: java.lang.String getCountryId() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onTimeout(long) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_6 +com.google.android.material.R$style: int Theme_AppCompat_NoActionBar +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_tooltipFrameBackground +com.google.android.material.R$style: int Widget_MaterialComponents_ChipGroup +retrofit2.ParameterHandler$Part: ParameterHandler$Part(java.lang.reflect.Method,int,okhttp3.Headers,retrofit2.Converter) +androidx.preference.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float ParticulateMatter10 +cyanogenmod.app.Profile$ProfileTrigger: void writeToParcel(android.os.Parcel,int) +androidx.core.R$styleable: int[] GradientColorItem +com.bumptech.glide.R$dimen +wangdaye.com.geometricweather.R$id: int header_title +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: okhttp3.internal.http1.Http1Codec this$0 +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: ObservableConcatMap$SourceObserver$InnerObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver) +okhttp3.Response$Builder: okhttp3.Response$Builder removeHeader(java.lang.String) +com.google.android.material.R$attr: int motionDebug +io.reactivex.internal.operators.observable.ObserverResourceWrapper: java.util.concurrent.atomic.AtomicReference upstream +androidx.preference.R$style: int TextAppearance_Compat_Notification_Time +androidx.preference.R$styleable: int SearchView_submitBackground +android.didikee.donate.R$styleable: int ActionBar_navigationMode +androidx.appcompat.R$dimen: int abc_text_size_display_2_material +io.reactivex.Observable: io.reactivex.Observable repeatUntil(io.reactivex.functions.BooleanSupplier) +com.google.android.material.R$style: int Base_V22_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$layout: int widget_day_week_symmetry +com.jaredrummler.android.colorpicker.R$styleable: int Preference_isPreferenceVisible +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_28 +io.reactivex.Observable: io.reactivex.Single toList() +com.google.android.material.textfield.TextInputLayout: void setPlaceholderText(java.lang.CharSequence) +com.google.android.material.R$layout: int mtrl_layout_snackbar_include +androidx.lifecycle.FullLifecycleObserverAdapter$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$Event +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat +io.reactivex.internal.observers.InnerQueuedObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int Slider_trackColor +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: long serialVersionUID +androidx.hilt.R$attr: int font +com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrim(android.graphics.drawable.Drawable) +android.didikee.donate.R$color: int abc_hint_foreground_material_dark +cyanogenmod.themes.ThemeManager: void requestThemeChange(java.util.Map,boolean) +wangdaye.com.geometricweather.R$id: int spinner +androidx.lifecycle.ViewModel: boolean mCleared +androidx.lifecycle.ReportFragment: void dispatchStart(androidx.lifecycle.ReportFragment$ActivityInitializationListener) +wangdaye.com.geometricweather.R$color: int colorLine +androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.themes.ThemeChangeRequest$1: java.lang.Object createFromParcel(android.os.Parcel) +com.google.android.material.R$attr: int verticalOffset +okio.BufferedSink: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) +androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingStart +androidx.fragment.R$id: int accessibility_custom_action_6 +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getWeatherSource() +androidx.appcompat.widget.SearchView: SearchView(android.content.Context) +androidx.preference.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +james.adaptiveicon.R$color: int button_material_light +androidx.coordinatorlayout.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String uvDescription +james.adaptiveicon.R$styleable: int AppCompatTheme_popupMenuStyle +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_material +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String direct +androidx.activity.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.R$styleable: int[] EditTextPreference +com.xw.repo.bubbleseekbar.R$id: int end +androidx.swiperefreshlayout.R$id: int icon_group +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: MfCurrentResult$Observation$Wind() +android.didikee.donate.R$id: int search_badge +cyanogenmod.profiles.ConnectionSettings: void processOverride(android.content.Context) +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getRingtoneThemePackageName() +cyanogenmod.hardware.ThermalListenerCallback$State: ThermalListenerCallback$State() +androidx.activity.R$drawable: int notification_bg +james.adaptiveicon.R$color: int accent_material_light +android.didikee.donate.R$drawable: int abc_spinner_mtrl_am_alpha +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegments(java.lang.String,boolean) +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_cancelRequest +cyanogenmod.providers.CMSettings$Secure: java.lang.String STATS_COLLECTION +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabBackground +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: double GmtOffset +cyanogenmod.themes.ThemeManager$2$1: ThemeManager$2$1(cyanogenmod.themes.ThemeManager$2,java.lang.String) +wangdaye.com.geometricweather.R$attr: int commitIcon +com.google.android.material.R$style: int Base_Widget_AppCompat_TextView +com.google.android.material.R$styleable: int MenuItem_android_icon +com.bumptech.glide.R$layout: int notification_template_custom_big +androidx.constraintlayout.widget.R$styleable: int AlertDialog_multiChoiceItemLayout +com.google.android.material.R$color: int highlighted_text_material_dark +com.jaredrummler.android.colorpicker.R$dimen: int cpv_dialog_preview_height +androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_android_background +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.functions.Function mapper +okhttp3.internal.ws.WebSocketProtocol: int B0_MASK_OPCODE +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +wangdaye.com.geometricweather.common.basic.models.weather.Wind: int getWindColor(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabSelectedTextColor +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_bias +androidx.hilt.lifecycle.R$attr: int fontProviderFetchTimeout +com.google.android.material.R$dimen: int mtrl_min_touch_target_size +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature RealFeelTemperature +okhttp3.Cache$1: okhttp3.Cache this$0 +wangdaye.com.geometricweather.R$dimen: int fastscroll_margin +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_recyclerView +androidx.viewpager.R$drawable: int notification_bg_low_normal +james.adaptiveicon.R$attr: int autoSizePresetSizes +wangdaye.com.geometricweather.R$styleable: int Toolbar_navigationIcon +okio.Buffer: okio.ByteString hmacSha512(okio.ByteString) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List wuran +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.R$drawable: int shortcuts_haze +androidx.transition.R$id: int text +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarItemBackground +okhttp3.internal.http2.Hpack$Reader +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.Long id +james.adaptiveicon.R$id: int right_icon +okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] publicSuffixListBytes +okhttp3.RequestBody$2: byte[] val$content +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: int UnitType +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtended(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: AccuLocationResult$GeoPosition() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_tooltipFrameBackground +androidx.coordinatorlayout.R$id: int icon +com.turingtechnologies.materialscrollbar.R$dimen: int abc_select_dialog_padding_start_material +retrofit2.converter.gson.GsonRequestBodyConverter: GsonRequestBodyConverter(com.google.gson.Gson,com.google.gson.TypeAdapter) +wangdaye.com.geometricweather.R$dimen: int tooltip_precise_anchor_threshold +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: void run() +com.jaredrummler.android.colorpicker.R$styleable: int Preference_enabled +com.google.android.material.R$id: int search_mag_icon +com.google.android.material.R$styleable: int MaterialCalendarItem_itemFillColor +androidx.appcompat.R$styleable: int AppCompatTheme_listPopupWindowStyle +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStrokeColor +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_thickness +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_inverse_material_dark +wangdaye.com.geometricweather.R$color: int design_fab_shadow_end_color +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: long updatedOn +okhttp3.Cache: long size() +okhttp3.internal.http2.Http2Connection$1: okhttp3.internal.http2.Http2Connection this$0 +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display2 +cyanogenmod.providers.CMSettings$NameValueCache: android.content.IContentProvider mContentProvider +com.jaredrummler.android.colorpicker.R$id: int blocking +androidx.constraintlayout.widget.R$styleable: int[] Motion +io.reactivex.Observable: io.reactivex.Observable zip(java.lang.Iterable,io.reactivex.functions.Function) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_order +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_height_material +wangdaye.com.geometricweather.R$id: int notification_big_week_1 +com.google.android.material.R$attr: int framePosition +james.adaptiveicon.R$string: int abc_action_mode_done +wangdaye.com.geometricweather.settings.activities.CardDisplayManageActivity +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_inputType +wangdaye.com.geometricweather.common.basic.models.weather.UV: UV(java.lang.Integer,java.lang.String,java.lang.String) +androidx.appcompat.R$styleable: int LinearLayoutCompat_divider +okhttp3.internal.cache.DiskLruCache$3: DiskLruCache$3(okhttp3.internal.cache.DiskLruCache) +androidx.constraintlayout.widget.R$id: int triangle +retrofit2.ParameterHandler$Headers: void apply(retrofit2.RequestBuilder,okhttp3.Headers) +com.google.android.material.imageview.ShapeableImageView: void setStrokeWidthResource(int) +androidx.coordinatorlayout.R$style: R$style() +cyanogenmod.app.Profile$ProfileTrigger: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_PrimarySurface +androidx.preference.R$styleable: int Toolbar_subtitleTextAppearance +okhttp3.Headers$Builder: okhttp3.Headers$Builder set(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getNo2() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String getValue() +io.reactivex.internal.observers.ForEachWhileObserver: void onComplete() +androidx.appcompat.R$attr: int trackTintMode +androidx.customview.R$id: int icon_group +okhttp3.MediaType: java.lang.String toString() +androidx.constraintlayout.widget.R$string: int abc_searchview_description_voice +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_start_padding +okhttp3.RealCall$AsyncCall +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator +androidx.preference.DropDownPreference: DropDownPreference(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_colored +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.util.Date Set +okhttp3.logging.LoggingEventListener$Factory: okhttp3.EventListener create(okhttp3.Call) +okhttp3.internal.tls.BasicTrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) +com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context,android.util.AttributeSet) +androidx.preference.R$styleable: int[] PopupWindowBackgroundState +androidx.preference.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +androidx.customview.R$attr: int fontVariationSettings +androidx.appcompat.R$id: int tabMode +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void clear() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: AccuDailyResult$DailyForecasts$DegreeDaySummary() +okhttp3.EventListener: void connectionAcquired(okhttp3.Call,okhttp3.Connection) +com.turingtechnologies.materialscrollbar.R$attr: int closeIconSize +androidx.constraintlayout.widget.R$style: int Base_V28_Theme_AppCompat +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setShowMotionSpecResource(int) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_visibility +com.xw.repo.bubbleseekbar.R$layout: int notification_action_tombstone +okio.RealBufferedSink: void close() +cyanogenmod.weather.WeatherLocation: java.lang.String access$102(cyanogenmod.weather.WeatherLocation,java.lang.String) +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit +okhttp3.OkHttpClient +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getUrl() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassIndex(java.lang.Integer) +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_anchor +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_liftOnScroll +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setHourlyForecast(java.lang.String) +wangdaye.com.geometricweather.R$attr: int errorEnabled +com.xw.repo.bubbleseekbar.R$attr: int contentInsetRight +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_SHOW_NONE +androidx.fragment.R$attr: int fontProviderCerts +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: ObservableReplay$SizeBoundReplayBuffer(int) +james.adaptiveicon.R$string +com.bumptech.glide.load.HttpException: HttpException(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: Precipitation(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings(android.os.Parcel) +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.util.concurrent.atomic.AtomicBoolean listRead +cyanogenmod.themes.ThemeChangeRequest$Builder: java.util.Map mPerAppOverlays +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description +android.didikee.donate.R$color: int abc_tint_spinner +retrofit2.Utils$ParameterizedTypeImpl: int hashCode() +com.xw.repo.bubbleseekbar.R$style: int Base_DialogWindowTitleBackground_AppCompat +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean isDisposed() +com.jaredrummler.android.colorpicker.R$anim: int abc_fade_out +wangdaye.com.geometricweather.R$styleable: int Toolbar_popupTheme +wangdaye.com.geometricweather.R$styleable: int Chip_chipMinTouchTargetSize +androidx.drawerlayout.R$id: int line3 +com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +com.jaredrummler.android.colorpicker.R$styleable: int[] MenuGroup +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabBarStyle +com.github.rahatarmanahmed.cpv.CircularProgressView$4 +cyanogenmod.profiles.ConnectionSettings$BooleanState: int STATE_ENABLED +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ButtonBar +androidx.hilt.work.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.db.entities.AlertEntity: void setContent(java.lang.String) +androidx.customview.R$drawable: int notification_bg_low_pressed +cyanogenmod.weather.WeatherInfo: double mTemperature +cyanogenmod.externalviews.KeyguardExternalView$2: void onAttachedToWindow() +androidx.legacy.coreutils.R$attr: int fontProviderCerts +androidx.cardview.widget.CardView: boolean getUseCompatPadding() +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onComplete() +wangdaye.com.geometricweather.R$dimen: int widget_mini_weather_icon_size +android.didikee.donate.R$attr: int listPopupWindowStyle +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: java.util.concurrent.atomic.AtomicReference queue +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: boolean daylight +android.didikee.donate.R$id: R$id() +wangdaye.com.geometricweather.R$style: int CardView_Light +okhttp3.Dispatcher: void finished(okhttp3.RealCall$AsyncCall) +androidx.swiperefreshlayout.R$styleable: int[] SwipeRefreshLayout +com.bumptech.glide.R$attr: int fontVariationSettings +okhttp3.Address: Address(java.lang.String,int,okhttp3.Dns,javax.net.SocketFactory,javax.net.ssl.SSLSocketFactory,javax.net.ssl.HostnameVerifier,okhttp3.CertificatePinner,okhttp3.Authenticator,java.net.Proxy,java.util.List,java.util.List,java.net.ProxySelector) +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_visible +androidx.recyclerview.R$styleable: int GradientColor_android_endColor +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotationY +wangdaye.com.geometricweather.R$id: int action_mode_bar +okio.SegmentedByteString: okio.ByteString toAsciiLowercase() +androidx.preference.R$drawable: R$drawable() +james.adaptiveicon.R$dimen: int tooltip_y_offset_non_touch +wangdaye.com.geometricweather.R$attr: int isLightTheme +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_grey +androidx.work.R$drawable: int notification_bg +androidx.loader.R$id: int icon_group +wangdaye.com.geometricweather.R$dimen: int cpv_default_thickness +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onKeyguardShowing +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +android.didikee.donate.R$styleable: int DrawerArrowToggle_thickness +wangdaye.com.geometricweather.R$attr: int listDividerAlertDialog +com.google.android.material.R$id: int action_container +androidx.hilt.R$color: R$color() +wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: void onCreate(org.greenrobot.greendao.database.Database) +androidx.cardview.R$attr: int cardViewStyle +androidx.hilt.lifecycle.R$anim: int fragment_fade_enter +androidx.appcompat.R$styleable: int View_paddingEnd +okhttp3.internal.http2.Http2Reader$Handler: void alternateService(int,java.lang.String,okio.ByteString,java.lang.String,int,long) +retrofit2.adapter.rxjava2.CallEnqueueObservable: CallEnqueueObservable(retrofit2.Call) +androidx.customview.R$styleable: int GradientColorItem_android_color +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_getSubInformation_0 +okhttp3.ResponseBody: void close() +james.adaptiveicon.R$styleable: int AppCompatTheme_colorPrimary +androidx.appcompat.R$attr: int textColorAlertDialogListItem +com.google.android.material.R$styleable: int Layout_constraint_referenced_ids +wangdaye.com.geometricweather.R$styleable: int Transition_transitionFlags +com.turingtechnologies.materialscrollbar.R$attr: int tickMarkTint +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_percent +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstHorizontalStyle +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextAppearanceActive +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +androidx.hilt.work.R$bool: int enable_system_foreground_service_default +androidx.viewpager2.R$id: int accessibility_action_clickable_span +androidx.preference.R$styleable: int View_android_focusable +okhttp3.internal.http2.Http2Reader: boolean nextFrame(boolean,okhttp3.internal.http2.Http2Reader$Handler) +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_weightSum +com.turingtechnologies.materialscrollbar.R$id: int action_container +com.google.android.material.R$styleable: int MaterialCardView_state_dragged +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_1 +com.google.android.material.R$drawable: int abc_list_divider_mtrl_alpha +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActivityChooserView +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +androidx.loader.R$dimen: int compat_notification_large_icon_max_width +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleEnabled +com.google.android.material.R$attr: int state_lifted +androidx.constraintlayout.widget.R$id: int animateToEnd +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupWindow +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_chip_text_size +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Caption +cyanogenmod.externalviews.KeyguardExternalView$2: void slideLockscreenIn() +androidx.preference.R$id: int accessibility_custom_action_10 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelMenuListWidth +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_android_minHeight +android.didikee.donate.R$style: int Widget_AppCompat_Light_ListPopupWindow +android.didikee.donate.R$dimen: int abc_dialog_padding_top_material +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean cancelOnReplace +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +androidx.appcompat.R$anim: int abc_slide_in_top +com.google.android.material.navigation.NavigationView: void setOverScrollMode(int) +androidx.viewpager2.R$id: int accessibility_custom_action_20 +androidx.appcompat.R$styleable: int FontFamilyFont_android_fontWeight +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierMargin +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getLocationKey() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm10 +android.didikee.donate.R$attr: int windowFixedWidthMajor +okhttp3.internal.http2.Header: boolean equals(java.lang.Object) +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: io.reactivex.Observer observer +androidx.transition.R$styleable: int GradientColor_android_startColor +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_small_material +com.google.android.material.textfield.TextInputLayout: void setCounterOverflowTextColor(android.content.res.ColorStateList) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_SearchResult_Title +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean canceled +androidx.preference.R$layout: int support_simple_spinner_dropdown_item +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onComplete() +androidx.constraintlayout.widget.R$styleable: int Constraint_android_scaleY +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getThunderstormPrecipitationProbability() +wangdaye.com.geometricweather.R$styleable: int[] Slider +androidx.preference.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void disposeInner() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: double Value +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +cyanogenmod.platform.Manifest$permission: java.lang.String READ_THEMES +okio.Segment: okio.Segment split(int) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_alpha +james.adaptiveicon.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_Surface +androidx.preference.R$attr: int fontProviderPackage +james.adaptiveicon.R$styleable: int[] ActivityChooserView +james.adaptiveicon.R$color: int switch_thumb_material_light +com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_start_color +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_blackContainer +androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar_Small +okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor setLevel(okhttp3.logging.HttpLoggingInterceptor$Level) +com.xw.repo.bubbleseekbar.R$id: int scrollIndicatorUp +androidx.fragment.app.FragmentTabHost$SavedState +com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_icon_width +com.google.gson.internal.LazilyParsedNumber: java.lang.Object writeReplace() +wangdaye.com.geometricweather.R$attr: int layout_goneMarginEnd +retrofit2.HttpServiceMethod$SuspendForResponse: HttpServiceMethod$SuspendForResponse(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter) +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.R$id: int widget_clock_day_lunar +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endColor +androidx.constraintlayout.widget.R$dimen: int abc_cascading_menus_min_smallest_width +com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: FloatingActionButton$Behavior() +com.xw.repo.bubbleseekbar.R$dimen: int abc_panel_menu_list_width +cyanogenmod.externalviews.ExternalView: boolean onPreDraw() +androidx.recyclerview.R$dimen: int notification_large_icon_width +androidx.appcompat.R$attr: int logoDescription +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean active +androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_title_material +cyanogenmod.externalviews.ExternalView$2: int val$width +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: double Value +androidx.lifecycle.ProcessLifecycleOwner: void dispatchPauseIfNeeded() +androidx.fragment.R$id: int action_text +okhttp3.OkHttpClient$1: okhttp3.Call newWebSocketCall(okhttp3.OkHttpClient,okhttp3.Request) +androidx.appcompat.R$drawable: int btn_radio_off_mtrl +io.reactivex.Observable: void blockingForEach(io.reactivex.functions.Consumer) +androidx.constraintlayout.widget.R$id: int action_mode_close_button +androidx.preference.R$styleable: int DrawerArrowToggle_spinBars +wangdaye.com.geometricweather.R$styleable: int NavigationView_android_maxWidth +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarItemBackground +com.google.android.material.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginEnd +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onComplete() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: java.lang.String Unit +androidx.lifecycle.LifecycleService: void onCreate() +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_lineHeight androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator -cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri CONTENT_URI -io.reactivex.Observable: io.reactivex.Observable throttleLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_disableDependentsState -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarItemBackground -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer relativeHumidityMin -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX wind -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorAccent -okio.RealBufferedSource$1: java.lang.String toString() -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_UUID -androidx.recyclerview.R$dimen: int compat_control_corner_material -android.didikee.donate.R$styleable: int ActionBar_progressBarPadding -james.adaptiveicon.R$attr: int contentInsetStart -androidx.preference.R$layout: int notification_template_part_time -androidx.appcompat.R$dimen: int abc_action_bar_overflow_padding_start_material -cyanogenmod.externalviews.ExternalViewProviderService$1: cyanogenmod.externalviews.ExternalViewProviderService this$0 -com.google.gson.stream.JsonReader$1: JsonReader$1() -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_multiChoiceItemLayout -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy NONE -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display3 -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer realFeelTemperature -com.turingtechnologies.materialscrollbar.R$attr: int layout_keyline -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer stormHazard -androidx.constraintlayout.widget.R$styleable: int[] ColorStateListItem -retrofit2.DefaultCallAdapterFactory$1: java.lang.Object adapt(retrofit2.Call) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow Snow -androidx.appcompat.widget.AlertDialogLayout -cyanogenmod.app.CustomTile$ExpandedStyle: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onComplete() -okhttp3.Headers: java.lang.String get(java.lang.String) -com.google.android.material.R$styleable: int Badge_maxCharacterCount -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginRight -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -okio.HashingSink: HashingSink(okio.Sink,okio.ByteString,java.lang.String) -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: void onInactive() -wangdaye.com.geometricweather.R$attr: int contentPadding -wangdaye.com.geometricweather.R$drawable: int widget_card_light_40 -com.jaredrummler.android.colorpicker.R$drawable: int notify_panel_notification_icon_bg -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.jaredrummler.android.colorpicker.R$dimen: int abc_control_padding_material -androidx.viewpager.R$layout -com.google.android.material.R$styleable: int NavigationView_itemShapeAppearance -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_dialog_background_inset -androidx.work.BackoffPolicy: androidx.work.BackoffPolicy LINEAR -androidx.constraintlayout.widget.R$id: int search_bar -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.ObservableSource source -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: java.lang.String Unit -com.google.android.material.R$id: int spread_inside -wangdaye.com.geometricweather.R$attr: int controlBackground -retrofit2.ParameterHandler$RelativeUrl: int p -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String INCREASING_VOLUME -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherText -androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_height_major -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabText +androidx.constraintlayout.widget.R$id: int image +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_3 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: AccuDailyResult$DailyForecasts$Night$Wind() +androidx.preference.R$attr: int actionModePopupWindowStyle +okhttp3.Cache: void trackResponse(okhttp3.internal.cache.CacheStrategy) +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_4_material +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onNext(java.lang.Object) +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColorHint +cyanogenmod.app.ICMStatusBarManager: void removeCustomTileWithTag(java.lang.String,java.lang.String,int,int) +androidx.constraintlayout.widget.R$string: int abc_searchview_description_search +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setIcePrecipitation(java.lang.Float) +cyanogenmod.profiles.RingModeSettings: RingModeSettings(java.lang.String,boolean) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind wind +james.adaptiveicon.R$styleable: int FontFamilyFont_font +android.didikee.donate.R$string: int abc_searchview_description_clear +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: AccuCurrentResult$TemperatureSummary() +androidx.appcompat.R$dimen: int abc_alert_dialog_button_bar_height +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5 +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$id: int alertTitle +com.google.android.material.R$styleable: int AppCompatTheme_actionModeStyle +cyanogenmod.power.PerformanceManager: cyanogenmod.power.PerformanceManager sInstance +com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat_Light +androidx.lifecycle.LiveData: java.lang.Object mPendingData +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Headline +cyanogenmod.externalviews.ExternalView$2: void run() +androidx.lifecycle.ViewModelProvider +androidx.customview.R$attr: int fontProviderPackage +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerColor +androidx.preference.R$color: int error_color_material_dark +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_weight +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableLeftCompat +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastVerticalBias +okhttp3.internal.ws.RealWebSocket: void cancel() +james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionBarOverlay +com.google.android.material.R$styleable: int AppCompatTheme_actionBarPopupTheme +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method putMethod +com.turingtechnologies.materialscrollbar.R$id: int end +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +com.turingtechnologies.materialscrollbar.R$id: int customPanel +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getCardName(android.content.Context) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void tryEmit(java.lang.Object,io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) +cyanogenmod.providers.CMSettings$Secure: java.lang.String FEATURE_TOUCH_HOVERING +wangdaye.com.geometricweather.R$styleable: int Layout_chainUseRtl +cyanogenmod.externalviews.ExternalViewProperties +okhttp3.CookieJar$1: void saveFromResponse(okhttp3.HttpUrl,java.util.List) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: void run() +androidx.work.impl.diagnostics.DiagnosticsReceiver: DiagnosticsReceiver() +androidx.preference.R$attr: int commitIcon +io.reactivex.internal.observers.LambdaObserver: long serialVersionUID +com.jaredrummler.android.colorpicker.R$attr: int contentInsetEndWithActions +android.didikee.donate.R$id: int action_mode_close_button +io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.ObservableSource) +com.google.android.material.R$attr: int statusBarBackground +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange Past6HourRange +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.List Sources +wangdaye.com.geometricweather.db.entities.DaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession() +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.appcompat.widget.AppCompatButton: int getAutoSizeTextType() +wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_LOW +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_123 +okhttp3.OkHttpClient: java.net.ProxySelector proxySelector +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: cyanogenmod.app.ILiveLockScreenManagerProvider asInterface(android.os.IBinder) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean getFeelsLike() +wangdaye.com.geometricweather.R$layout: int item_trend_hourly +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginTop +com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int Preference_android_defaultValue +com.google.android.material.R$styleable: int LinearLayoutCompat_divider +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference other +cyanogenmod.app.LiveLockScreenInfo: void writeToParcel(android.os.Parcel,int) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: java.lang.Object call() +androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textFontWeight +okhttp3.ResponseBody +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitationDuration +okhttp3.internal.http2.Http2: java.io.IOException ioException(java.lang.String,java.lang.Object[]) +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_menu_header_material +wangdaye.com.geometricweather.R$style: int widget_text_clock_analog_Dark +androidx.vectordrawable.animated.R$id: int tag_transition_group +androidx.drawerlayout.R$id: int notification_main_column_container +androidx.appcompat.R$id: int line3 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: AccuCurrentResult$Ceiling$Imperial() +james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogCenterButtons +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid TotalLiquid +wangdaye.com.geometricweather.R$id: int edit_query +cyanogenmod.hardware.CMHardwareManager: int[] getDisplayGammaCalibration(int) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +androidx.appcompat.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf +com.turingtechnologies.materialscrollbar.R$drawable: int abc_switch_track_mtrl_alpha +com.google.android.material.R$styleable: int AppCompatTheme_actionBarItemBackground +androidx.constraintlayout.widget.R$styleable: int Layout_minHeight +com.turingtechnologies.materialscrollbar.R$attr: int suggestionRowLayout +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) +androidx.appcompat.R$attr: int actionModeWebSearchDrawable +androidx.work.R$color: R$color() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_creator +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSrc(java.lang.String) +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.reflect.Type getGenericComponentType() +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int color +com.turingtechnologies.materialscrollbar.R$styleable: int[] ChipGroup +wangdaye.com.geometricweather.R$anim: int fragment_open_exit +androidx.preference.R$color: int abc_search_url_text_normal +com.jaredrummler.android.colorpicker.R$attr: int cpv_sliderColor +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_NAVIGATION_BAR +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property FormattedId +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List forecasts +androidx.hilt.lifecycle.R$id: int normal +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_constantSize +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_begin +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityStopped(android.app.Activity) +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardElevation +androidx.customview.R$dimen: int compat_control_corner_material +james.adaptiveicon.R$dimen: int abc_dialog_min_width_minor +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf +androidx.preference.R$attr: int multiChoiceItemLayout +com.google.android.material.R$styleable: int Toolbar_contentInsetRight +wangdaye.com.geometricweather.R$color: int material_on_surface_stroke +com.google.android.material.R$attr: int windowFixedHeightMajor +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void cancel() +androidx.transition.R$id: int forever +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType[] values() com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_thumb_material -androidx.constraintlayout.widget.R$styleable: int Constraint_motionStagger -com.google.android.material.bottomappbar.BottomAppBar: float getFabCradleRoundedCornerRadius() -androidx.constraintlayout.widget.R$styleable: int[] State -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPopupWindowStyle -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_duration -com.jaredrummler.android.colorpicker.R$layout: int preference -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: int status -com.google.android.material.R$attr: int mock_diagonalsColor -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$StreamTimeout readTimeout -com.google.android.material.R$dimen: int abc_dialog_fixed_height_minor -io.reactivex.Observable: io.reactivex.Observable throttleFirst(long,java.util.concurrent.TimeUnit) -com.jaredrummler.android.colorpicker.R$attr: int entries -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: java.util.Date updateTime -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: AccuCurrentResult$Ceiling() -com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context,android.util.AttributeSet,int) -androidx.viewpager.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.Date getPubTime() -okio.GzipSink: boolean closed -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_progress -androidx.appcompat.resources.R$color: R$color() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: java.lang.String type -androidx.dynamicanimation.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance -wangdaye.com.geometricweather.R$id: int widget_week_weather -wangdaye.com.geometricweather.R$id: int material_timepicker_cancel_button -com.google.android.material.R$animator: int mtrl_btn_state_list_anim -com.google.android.material.R$id: int search_src_text -okhttp3.FormBody: java.lang.String encodedName(int) -androidx.viewpager.R$dimen: int notification_small_icon_size_as_large -retrofit2.Utils$WildcardTypeImpl: Utils$WildcardTypeImpl(java.lang.reflect.Type[],java.lang.reflect.Type[]) -james.adaptiveicon.R$attr: int buttonBarPositiveButtonStyle -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintEnd_toStartOf -okhttp3.Cache: int ENTRY_COUNT -wangdaye.com.geometricweather.db.entities.HistoryEntity: HistoryEntity() -androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -androidx.cardview.R$dimen -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setPubTime(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_minHeight -com.google.android.material.chip.Chip: void setTextAppearance(int) -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: void truncateFinal() -wangdaye.com.geometricweather.R$attr: int bottomAppBarStyle -androidx.viewpager2.R$dimen: int fastscroll_minimum_range -androidx.appcompat.widget.ScrollingTabContainerView -androidx.preference.R$styleable: int AppCompatTheme_tooltipForegroundColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: java.lang.String Unit -okhttp3.internal.ws.RealWebSocket$PingRunnable -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_TabLayout -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List alert -androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar_Small -okhttp3.internal.http.HttpCodec: okhttp3.Response$Builder readResponseHeaders(boolean) -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceFragment -com.google.android.material.R$color: int mtrl_btn_transparent_bg_color -cyanogenmod.app.Profile$DozeMode: int DISABLE -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent -wangdaye.com.geometricweather.R$string: int phase_waning_crescent -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain24h -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getLogo() -wangdaye.com.geometricweather.R$id: int square -androidx.swiperefreshlayout.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.R$id: int ALT -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_DialogWhenLarge -com.jaredrummler.android.colorpicker.R$attr: int autoSizeMaxTextSize -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours -androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int Constraint_android_minHeight -com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getProgressDrawable() -com.xw.repo.bubbleseekbar.R$attr: int searchViewStyle -androidx.viewpager2.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_night -androidx.preference.R$string: int search_menu_title -okhttp3.internal.http2.Settings: void merge(okhttp3.internal.http2.Settings) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver -wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_liftable -okhttp3.internal.http2.Hpack$Writer: void adjustDynamicTableByteCount() -com.xw.repo.bubbleseekbar.R$attr: int panelBackground -cyanogenmod.providers.CMSettings$System: java.lang.String CALL_RECORDING_FORMAT -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getLockWallpaperThemePackageName() -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree windDegree -james.adaptiveicon.R$id: int progress_horizontal -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Subtitle2 -okhttp3.internal.http2.Http2Stream: void cancelStreamIfNecessary() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCloseDrawable -androidx.recyclerview.R$dimen: int notification_action_text_size -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_CONSUMED -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRainPrecipitationProbability(java.lang.Float) -com.google.android.material.R$drawable: int abc_ratingbar_indicator_material -com.google.android.material.R$styleable: int Constraint_flow_firstHorizontalBias -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind Wind -androidx.preference.R$attr: int enabled -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_ChipGroup -com.google.android.material.R$attr: int layout_constraintWidth_default -android.didikee.donate.R$styleable: int MenuItem_android_visible -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle[] values() -androidx.appcompat.R$attr: int autoSizeTextType -android.didikee.donate.R$anim: int abc_slide_out_top -james.adaptiveicon.R$color: int material_deep_teal_200 -io.reactivex.internal.observers.LambdaObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text -androidx.swiperefreshlayout.R$styleable: int[] GradientColorItem -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: java.lang.String Source -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type lowerBound -wangdaye.com.geometricweather.R$attr: int windowFixedWidthMajor -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String street -com.google.android.material.textfield.TextInputLayout: int getBoxBackgroundMode() -com.xw.repo.bubbleseekbar.R$attr: R$attr() -androidx.hilt.R$styleable: int FragmentContainerView_android_tag -androidx.appcompat.R$style: int Base_Widget_AppCompat_Spinner_Underlined -androidx.constraintlayout.widget.R$attr: int font -cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCK_PASS_TO_SECURITY_VIEW -androidx.constraintlayout.widget.R$id: int normal -androidx.appcompat.widget.SearchView: java.lang.CharSequence getQueryHint() -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -android.didikee.donate.R$attr: int tickMarkTintMode -okhttp3.internal.http2.Http2Reader: int readMedium(okio.BufferedSource) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: ObservableSampleWithObservable$SampleMainObserver(io.reactivex.Observer,io.reactivex.ObservableSource) -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,long,boolean) -retrofit2.RequestBuilder: okhttp3.RequestBody body -com.jaredrummler.android.colorpicker.ColorPickerView: void setColor(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: double Value -androidx.recyclerview.R$dimen: int compat_notification_large_icon_max_width -com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_dark -androidx.loader.R$dimen: int notification_content_margin_start -com.xw.repo.bubbleseekbar.R$color: int accent_material_dark -com.github.rahatarmanahmed.cpv.R$string -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvIndex -androidx.hilt.lifecycle.R$string: int status_bar_notification_info_overflow -androidx.appcompat.R$attr: int measureWithLargestChild -androidx.vectordrawable.R$id: int tag_screen_reader_focusable -androidx.appcompat.R$attr: int titleMarginBottom -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: boolean isValidIndex() -androidx.constraintlayout.widget.R$attr: int touchAnchorSide -com.turingtechnologies.materialscrollbar.R$styleable: int[] Toolbar -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitationProbability -com.jaredrummler.android.colorpicker.R$attr: int preferenceTheme -com.google.android.material.R$dimen: int design_fab_size_mini -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String unit -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.AbstractDaoSession getSession() -wangdaye.com.geometricweather.R$attr: int bottomSheetStyle -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_summaryOff -james.adaptiveicon.R$attr: int actionLayout -androidx.loader.R$drawable -androidx.lifecycle.ProcessLifecycleOwner$3: androidx.lifecycle.ProcessLifecycleOwner this$0 -wangdaye.com.geometricweather.R$id: int indicator -wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text_size -androidx.fragment.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.R$color: int button_material_light -okhttp3.internal.http.RealInterceptorChain: okhttp3.Response proceed(okhttp3.Request,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http.HttpCodec,okhttp3.internal.connection.RealConnection) -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean,int,int) +james.adaptiveicon.R$dimen: int highlight_alpha_material_light +com.bumptech.glide.integration.okhttp.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: long serialVersionUID +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getCityId() +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setTextColor(int) +androidx.appcompat.R$color: int abc_search_url_text_normal +com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedHeightMinor +androidx.appcompat.R$id: int notification_main_column +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: ExternalViewProviderService$Provider$ProviderImpl(cyanogenmod.externalviews.ExternalViewProviderService$Provider,cyanogenmod.externalviews.ExternalViewProviderService$Provider) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX() +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler +androidx.fragment.R$styleable: int FontFamily_fontProviderAuthority +com.google.android.material.button.MaterialButton: void setRippleColorResource(int) +wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_layout +com.google.android.material.R$styleable: int Transform_android_scaleX +androidx.constraintlayout.widget.R$styleable: int[] Constraint +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void dispose() +androidx.appcompat.R$attr: int customNavigationLayout +com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context) +io.reactivex.internal.observers.BlockingObserver: void dispose() +cyanogenmod.app.LiveLockScreenInfo$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$layout: int widget_clock_day_week +wangdaye.com.geometricweather.R$id: int tag_unhandled_key_listeners +androidx.preference.R$dimen: int notification_right_icon_size +androidx.preference.R$styleable: int AppCompatTheme_actionBarSize +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.internal.connection.StreamAllocation streamAllocation +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_primary_mtrl_alpha +okio.BufferedSource: java.lang.String readUtf8LineStrict(long) +okhttp3.internal.http2.Settings: int get(int) +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_transitionEasing +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder domain(java.lang.String,boolean) +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_homeAsUpIndicator +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onAttach_0 +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_summaryOn +cyanogenmod.providers.CMSettings$System: long getLong(android.content.ContentResolver,java.lang.String) +james.adaptiveicon.R$color: int material_grey_600 +com.google.android.material.floatingactionbutton.FloatingActionButton: void setScaleX(float) +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String IconPhrase +okhttp3.ConnectionPool: boolean connectionBecameIdle(okhttp3.internal.connection.RealConnection) +wangdaye.com.geometricweather.R$styleable: int Chip_shapeAppearance +androidx.preference.R$styleable: int PreferenceTheme_preferenceStyle +android.support.v4.os.IResultReceiver$Default: void send(int,android.os.Bundle) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_ttcIndex +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_NoActionBar +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void dispose() +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenText(android.content.Context,int) +okhttp3.OkHttpClient$Builder: javax.net.SocketFactory socketFactory +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleDrawable androidx.appcompat.R$styleable: int[] AppCompatTextView -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void drain() -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void drainLoop() -james.adaptiveicon.R$attr: int actionModeStyle -wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_weight -cyanogenmod.weather.CMWeatherManager$1$1: void run() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: org.reactivestreams.Subscription upstream -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: ObservableSkipLast$SkipLastObserver(io.reactivex.Observer,int) -com.google.android.material.R$styleable: int ConstraintSet_flow_lastHorizontalBias -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.DailyEntity) -androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_Tooltip -androidx.appcompat.R$dimen: int notification_top_pad_large_text -androidx.hilt.lifecycle.R$color: R$color() -wangdaye.com.geometricweather.R$id: int skipCollapsed -okhttp3.internal.io.FileSystem: okio.Sink sink(java.io.File) -wangdaye.com.geometricweather.R$animator -androidx.preference.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -com.jaredrummler.android.colorpicker.R$attr: int alpha -com.google.android.material.theme.MaterialComponentsViewInflater +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: int hasSeaBulletin +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar +cyanogenmod.app.CustomTile: java.lang.Object clone() +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: void run() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_height +wangdaye.com.geometricweather.R$id: int snackbar_action +androidx.appcompat.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_error +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline6 +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu +androidx.preference.R$drawable: int abc_ic_menu_cut_mtrl_alpha +androidx.preference.R$style: int TextAppearance_AppCompat_Display3 +com.google.android.material.tabs.TabLayout: void removeOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) +com.google.android.material.R$attr: int boxBackgroundMode +wangdaye.com.geometricweather.common.ui.activities.AllergenActivity: AllergenActivity() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginBottom +okhttp3.internal.cache.DiskLruCache: void rebuildJournal() +com.google.android.material.tabs.TabItem: TabItem(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: org.reactivestreams.Subscriber downstream +wangdaye.com.geometricweather.R$attr: int foregroundInsidePadding +wangdaye.com.geometricweather.R$array: int notification_style_values +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_goIcon +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position +okhttp3.internal.platform.AndroidPlatform: void log(int,java.lang.String,java.lang.Throwable) +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.internal.disposables.SequentialDisposable upstream +wangdaye.com.geometricweather.R$dimen: int hourly_trend_item_height +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void dispose() +androidx.preference.R$color: int highlighted_text_material_light +androidx.constraintlayout.widget.R$attr: int autoSizeTextType +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType QueryList +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_preserveIconSpacing +com.google.android.material.R$id: int test_radiobutton_android_button_tint +androidx.transition.R$string +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_Switch +com.turingtechnologies.materialscrollbar.R$id: int firstVisible +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListMenuView +com.google.android.material.textfield.TextInputLayout: void setEndIconActivated(boolean) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String windLevel +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTextPadding +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_weight +okhttp3.internal.platform.Jdk9Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +okhttp3.Headers: void checkValue(java.lang.String,java.lang.String) +androidx.preference.R$id: int decor_content_parent +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitationProbability +wangdaye.com.geometricweather.R$attr: int useMaterialThemeColors +wangdaye.com.geometricweather.R$drawable: int weather_fog_pixel +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingBottom +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline3 +androidx.preference.R$styleable: int AppCompatTheme_colorBackgroundFloating +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: ObservableRetryPredicate$RepeatObserver(io.reactivex.Observer,long,io.reactivex.functions.Predicate,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getIconsThemePackageName() +com.xw.repo.bubbleseekbar.R$attr: int colorControlHighlight +wangdaye.com.geometricweather.R$string: int wind_speed +com.google.android.material.R$styleable: int FloatingActionButton_useCompatPadding +com.google.android.material.navigation.NavigationView: void setItemTextColor(android.content.res.ColorStateList) +okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_0 +androidx.legacy.coreutils.R$dimen: int compat_button_inset_horizontal_material +androidx.constraintlayout.widget.R$attr: int flow_lastHorizontalStyle +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_Solid +okhttp3.Challenge: okhttp3.Challenge withCharset(java.nio.charset.Charset) +androidx.coordinatorlayout.widget.CoordinatorLayout: int getSuggestedMinimumWidth() +androidx.activity.R$attr: int alpha +okio.Buffer: java.lang.String readUtf8() +okhttp3.CertificatePinner$Pin: java.lang.String WILDCARD +okio.GzipSource: okio.BufferedSource source +androidx.loader.R$dimen: int notification_small_icon_background_padding +androidx.appcompat.widget.ViewStubCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction Direction +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelMenuListWidth +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function9) +okhttp3.EventListener: void dnsEnd(okhttp3.Call,java.lang.String,java.util.List) +wangdaye.com.geometricweather.R$layout: int select_dialog_multichoice_material +okio.Buffer: void clear() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getShortDate(android.content.Context) +androidx.preference.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +com.xw.repo.bubbleseekbar.R$color: int material_grey_800 +androidx.dynamicanimation.R$attr: int fontStyle +okhttp3.internal.http2.Http2Connection$1: void execute() +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog_Alert +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.turingtechnologies.materialscrollbar.R$attr: int chipIconVisible +com.google.android.material.R$styleable: int AppCompatTextView_drawableRightCompat +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_profileExistsByName +io.reactivex.internal.disposables.CancellableDisposable: CancellableDisposable(io.reactivex.functions.Cancellable) +wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogIcon +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +androidx.viewpager.widget.PagerTitleStrip: void setNonPrimaryAlpha(float) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: AtmoAuraQAResult$MultiDaysIndexs$MultiIndex() +android.support.v4.app.INotificationSideChannel$Default +wangdaye.com.geometricweather.R$id: int zero_corner_chip +android.didikee.donate.R$dimen: int abc_button_inset_horizontal_material +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void dispose() +android.didikee.donate.R$layout: int abc_action_menu_item_layout +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property CityId +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,java.util.concurrent.Callable) +wangdaye.com.geometricweather.R$attr: int layout_optimizationLevel +okhttp3.Cache$CacheResponseBody: java.lang.String contentType +io.reactivex.Observable: io.reactivex.Observable startWith(io.reactivex.ObservableSource) +androidx.appcompat.widget.ActionBarContextView: void setTitle(java.lang.CharSequence) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String getFrom() +android.didikee.donate.R$id: int action_context_bar +androidx.preference.R$dimen: R$dimen() +android.didikee.donate.R$id: int action_container +com.jaredrummler.android.colorpicker.R$attr: int cpv_dialogType +io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier valueOf(java.lang.String) +com.google.android.material.R$dimen: int mtrl_calendar_bottom_padding +com.google.android.material.R$integer: int design_snackbar_text_max_lines +wangdaye.com.geometricweather.R$string: int settings_title_trend_horizontal_line_switch +cyanogenmod.app.ProfileManager: boolean notificationGroupExists(java.lang.String) +androidx.appcompat.R$attr: int switchMinWidth +com.google.android.material.R$styleable: int View_android_theme +com.google.android.material.R$attr: int thumbColor +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Body1 +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: long serialVersionUID +wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_day +androidx.preference.R$styleable: int FontFamilyFont_android_font +retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object invokeSuspend(java.lang.Object) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +com.bumptech.glide.integration.okhttp.R$id: int right +wangdaye.com.geometricweather.remoteviews.config.AbstractWidgetConfigActivity +com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimsShown(boolean) +cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(cyanogenmod.app.ThemeVersion$ComponentVersion) +wangdaye.com.geometricweather.R$drawable: int star_1 +cyanogenmod.app.CustomTile: android.net.Uri onClickUri +androidx.preference.R$attr: int editTextBackground +com.github.rahatarmanahmed.cpv.CircularProgressView: void onSizeChanged(int,int,int,int) +com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_material_dark +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String type +androidx.lifecycle.ClassesInfoCache +androidx.preference.R$attr: int listPreferredItemHeightSmall +wangdaye.com.geometricweather.R$attr: int subtitleTextColor +com.google.android.material.tabs.TabLayout: void setUnboundedRippleResource(int) +androidx.lifecycle.process.R: R() +com.google.android.material.R$id: int action_mode_bar_stub +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingTop +androidx.constraintlayout.utils.widget.ImageFilterButton: void setWarmth(float) +okhttp3.Cookie: okhttp3.Cookie parse(okhttp3.HttpUrl,java.lang.String) +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void drain() +androidx.preference.TwoStatePreference$SavedState: android.os.Parcelable$Creator CREATOR +androidx.cardview.R$attr: int contentPadding +com.google.android.material.R$attr: int closeIcon +cyanogenmod.app.ProfileGroup: void writeToParcel(android.os.Parcel,int) +com.google.android.material.R$style: int Widget_AppCompat_DropDownItem_Spinner +okio.Okio$4: void timedOut() +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_OFF +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: ObservableDebounceTimed$DebounceEmitter(java.lang.Object,long,io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceTimedObserver) +io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean isDisposed() +com.jaredrummler.android.colorpicker.R$id: int right_side +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm25 +androidx.loader.R$styleable: int FontFamilyFont_ttcIndex +com.google.android.material.R$dimen: int highlight_alpha_material_light +com.google.android.material.circularreveal.CircularRevealLinearLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitationDuration +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontWeight +androidx.lifecycle.extensions.R$id: int async +com.google.android.material.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf +androidx.preference.R$styleable: int ActionBar_icon +com.google.android.material.R$dimen: int mtrl_tooltip_padding +wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeDescription(java.lang.String) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Headline +androidx.appcompat.R$drawable: int abc_tab_indicator_material +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored +com.jaredrummler.android.colorpicker.R$attr: int fontProviderQuery +androidx.constraintlayout.widget.R$attr: int titleTextStyle +cyanogenmod.app.CMStatusBarManager: boolean localLOGV +cyanogenmod.app.ILiveLockScreenManager$Stub: android.os.IBinder asBinder() +android.didikee.donate.R$attr: int hideOnContentScroll +androidx.hilt.work.R$color: R$color() +retrofit2.Retrofit$Builder: java.util.List callAdapterFactories() +com.google.android.material.textfield.TextInputLayout: void setStartIconContentDescription(int) +okhttp3.internal.Internal: void setCache(okhttp3.OkHttpClient$Builder,okhttp3.internal.cache.InternalCache) +james.adaptiveicon.R$color: int notification_action_color_filter +retrofit2.RequestBuilder: void setBody(okhttp3.RequestBody) +android.didikee.donate.R$style: int Widget_AppCompat_Button_Small +androidx.lifecycle.ProcessLifecycleOwner: void init(android.content.Context) com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getHideRatio() -com.google.android.material.R$styleable: int Transition_motionInterpolator -wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_appStore -androidx.customview.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating -androidx.coordinatorlayout.R$id: int accessibility_custom_action_3 -wangdaye.com.geometricweather.R$attr: int popupMenuStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar -com.google.android.material.R$drawable: int mtrl_ic_arrow_drop_up -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionBarOverlay -cyanogenmod.profiles.ConnectionSettings: java.lang.String EXTRA_SUB_ID -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -com.google.android.material.R$styleable: int Chip_shapeAppearance -wangdaye.com.geometricweather.background.polling.permanent.observer.FakeForegroundService -androidx.constraintlayout.widget.R$layout: int abc_screen_content_include -androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_RC4_128_SHA -okhttp3.Cookie: java.util.regex.Pattern YEAR_PATTERN -retrofit2.ParameterHandler$FieldMap -com.xw.repo.bubbleseekbar.R$layout: int abc_activity_chooser_view -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -retrofit2.Utils: okhttp3.ResponseBody buffer(okhttp3.ResponseBody) -wangdaye.com.geometricweather.R$attr: int tabIndicatorAnimationDuration -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: long serialVersionUID -androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy: ConstraintProxy$StorageNotLowProxy() -com.xw.repo.bubbleseekbar.R$dimen: int hint_alpha_material_light -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_pressed_holo_light -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetEnd -androidx.appcompat.R$attr: int trackTint -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_android_minHeight -com.google.android.material.R$attr: int flow_horizontalBias -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabText -cyanogenmod.app.LiveLockScreenManager: boolean show(int,cyanogenmod.app.LiveLockScreenInfo) -androidx.vectordrawable.R$id: int action_image -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_2 -com.google.android.material.R$dimen: int mtrl_calendar_header_text_padding -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean done -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Small -android.didikee.donate.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -okhttp3.Headers$Builder: okhttp3.Headers$Builder set(java.lang.String,java.util.Date) -com.bumptech.glide.integration.okhttp.R$dimen: int notification_main_column_padding_top -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom -okhttp3.internal.http2.Http2Connection$2: okhttp3.internal.http2.Http2Connection this$0 -com.bumptech.glide.Priority: com.bumptech.glide.Priority valueOf(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Badge_badgeTextColor -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature temperature -android.didikee.donate.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionMenuTextColor -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_tooltipFrameBackground -androidx.hilt.R$id: int line1 -com.google.android.material.R$dimen: int mtrl_extended_fab_corner_radius -okhttp3.internal.http1.Http1Codec: okio.Sink createRequestBody(okhttp3.Request,long) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onNext(java.lang.Object) -com.bumptech.glide.R$style: R$style() -com.google.android.material.R$attr: int layout_keyline -cyanogenmod.themes.ThemeManager: void requestThemeChange(java.util.Map,boolean) -james.adaptiveicon.R$attr: int actionProviderClass -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_toolbar_default_height -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_spinner -wangdaye.com.geometricweather.R$id: int material_clock_period_am_button -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_NoActionBar -androidx.preference.R$styleable: int Preference_layout -androidx.constraintlayout.widget.R$styleable: int Layout_maxHeight -wangdaye.com.geometricweather.common.basic.models.weather.UV -com.google.android.material.R$id: int animateToStart -com.xw.repo.bubbleseekbar.R$attr: int ttcIndex -cyanogenmod.app.CMContextConstants$Features -wangdaye.com.geometricweather.R$string: int week_3 -wangdaye.com.geometricweather.R$attr: int bsb_touch_to_seek -james.adaptiveicon.R$styleable: int[] ActionBar -wangdaye.com.geometricweather.R$attr: int circularInset -wangdaye.com.geometricweather.R$style: int TestThemeWithLineHeight -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_title -androidx.coordinatorlayout.R$drawable: int notification_icon_background -androidx.fragment.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.common.basic.models.weather.UV: int getUVColor(android.content.Context) -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setCountry(java.lang.String) -androidx.preference.R$drawable: int abc_spinner_textfield_background_material -androidx.constraintlayout.widget.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -okhttp3.internal.http2.Http2Writer: void writeContinuationFrames(int,long) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: double Value -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: float getBackgroundOverlayColorAlpha() -androidx.transition.R$styleable: int GradientColor_android_startX -androidx.hilt.work.R$id: int accessibility_custom_action_23 -androidx.preference.R$dimen: int abc_dialog_padding_top_material -android.didikee.donate.R$styleable: int MenuItem_android_checked -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isDataConnectionEnabled() -wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Icon -wangdaye.com.geometricweather.R$styleable: int MenuItem_showAsAction -androidx.preference.R$attr: int dividerHorizontal -wangdaye.com.geometricweather.R$attr: int editTextBackground -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMargins -com.google.android.material.R$styleable: int[] MockView -androidx.appcompat.R$string: int abc_toolbar_collapse_description -cyanogenmod.profiles.AirplaneModeSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -android.support.v4.os.ResultReceiver$1 -androidx.appcompat.R$styleable: int ViewBackgroundHelper_backgroundTintMode -james.adaptiveicon.R$drawable: int abc_textfield_activated_mtrl_alpha -androidx.fragment.R$id: int accessibility_custom_action_11 -androidx.constraintlayout.widget.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setDate(java.util.Date) -okhttp3.internal.ws.RealWebSocket: boolean send(okio.ByteString) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.entities.WeatherEntity readEntity(android.database.Cursor,int) -androidx.core.view.GestureDetectorCompat -okhttp3.internal.http.HttpHeaders: long stringToLong(java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int arrowHeadLength -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -okhttp3.internal.http2.Settings: int getMaxFrameSize(int) -androidx.lifecycle.LifecycleService: androidx.lifecycle.ServiceLifecycleDispatcher mDispatcher -androidx.preference.R$styleable: int Preference_android_title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary PrecipitationSummary -androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemBackground -okhttp3.internal.http2.Http2Reader$ContinuationSource: void close() -android.support.v4.os.IResultReceiver$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$id: int autoCompleteToEnd -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_CompactMenu -androidx.appcompat.R$styleable: int Toolbar_contentInsetStartWithNavigation -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String mId -james.adaptiveicon.R$dimen: int notification_small_icon_size_as_large -androidx.lifecycle.ViewModelStore: void clear() -android.didikee.donate.R$attr: int autoCompleteTextViewStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_77 -com.google.android.material.R$attr: int maxActionInlineWidth -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onPause() -androidx.fragment.R$dimen: int notification_top_pad_large_text -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void cancelRequest(int) -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedWritableDb(char[]) -wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: float mMin -android.didikee.donate.R$attr: int panelMenuListTheme -com.github.rahatarmanahmed.cpv.CircularProgressView$6: void onAnimationUpdate(android.animation.ValueAnimator) -cyanogenmod.app.Profile$ProfileTrigger: int mType -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -retrofit2.converter.gson.GsonConverterFactory: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) -com.xw.repo.bubbleseekbar.R$id: int src_atop -androidx.lifecycle.Transformations$2: Transformations$2(androidx.arch.core.util.Function,androidx.lifecycle.MediatorLiveData) -androidx.viewpager2.R$styleable: int ViewPager2_android_orientation -android.didikee.donate.R$dimen: int abc_floating_window_z -com.google.android.material.R$id: int pin -androidx.hilt.lifecycle.R$drawable: int notify_panel_notification_icon_bg -okio.Pipe$PipeSink: Pipe$PipeSink(okio.Pipe) -com.turingtechnologies.materialscrollbar.R$attr: int autoSizeTextType -androidx.preference.R$string: int v7_preference_on -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_pixel -cyanogenmod.profiles.LockSettings: int getValue() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_65 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: java.lang.String Unit -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_124 -androidx.constraintlayout.widget.R$attr: int paddingStart -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA -cyanogenmod.app.ProfileManager: ProfileManager(android.content.Context) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int INTERRUPTED -wangdaye.com.geometricweather.R$array: R$array() -wangdaye.com.geometricweather.R$drawable: int ic_filter -com.google.android.material.R$styleable: int CoordinatorLayout_statusBarBackground -androidx.appcompat.widget.AppCompatTextView: void setFirstBaselineToTopHeight(int) -okhttp3.internal.cache.DiskLruCache: java.util.LinkedHashMap lruEntries -retrofit2.Utils$ParameterizedTypeImpl -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthFocusedResource(int) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dividerVertical -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -okhttp3.HttpUrl$Builder: void removeAllCanonicalQueryParameters(java.lang.String) -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$id: int split_action_bar -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindDirection -okhttp3.internal.ws.WebSocketWriter$FrameSink: int formatOpcode -wangdaye.com.geometricweather.R$id: int top -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean hasKey(java.lang.Object) -james.adaptiveicon.R$styleable: int Toolbar_titleMarginEnd -wangdaye.com.geometricweather.R$styleable: int Preference_persistent -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat -okio.RealBufferedSink$1 -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List alertEntityList -com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginBottom -wangdaye.com.geometricweather.R$attr: int thickness -wangdaye.com.geometricweather.R$attr: int touchAnchorId -com.google.android.material.textfield.TextInputLayout: android.widget.TextView getSuffixTextView() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String LongPhrase -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_orderInCategory -com.jaredrummler.android.colorpicker.R$attr: int gapBetweenBars -okio.HashingSource: javax.crypto.Mac mac -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_119 -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setZenModeWithDuration -androidx.core.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTag -com.jaredrummler.android.colorpicker.R$styleable: int Preference_enableCopying -android.didikee.donate.R$style: int AlertDialog_AppCompat_Light -com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimAnimationDuration(long) -cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(cyanogenmod.weather.WeatherInfo$1) -com.turingtechnologies.materialscrollbar.R$styleable: int[] ChipGroup -wangdaye.com.geometricweather.R$string: int settings_notification_hide_in_lockScreen_off -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String access$200() -androidx.core.R$string: R$string() -androidx.work.R$color: int ripple_material_light -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric() -androidx.appcompat.R$dimen: int abc_disabled_alpha_material_dark -androidx.preference.R$id: int submenuarrow -androidx.coordinatorlayout.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type TOP -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getLevel() -okhttp3.internal.http2.Huffman +com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_text +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String value +com.google.android.material.R$styleable: int OnClick_clickAction +wangdaye.com.geometricweather.R$attr: int showPaths +com.xw.repo.bubbleseekbar.R$id: int tag_transition_group +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_menuCategory +com.jaredrummler.android.colorpicker.R$styleable: int[] PopupWindowBackgroundState +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextAppearanceActive +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dark +androidx.lifecycle.ComputableLiveData: java.lang.Runnable mInvalidationRunnable +androidx.viewpager2.R$id: int text +androidx.appcompat.R$style: int Widget_AppCompat_ListMenuView +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_height +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActivityChooserView +okhttp3.CipherSuite: CipherSuite(java.lang.String) +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1 +android.didikee.donate.R$styleable: int AppCompatTextView_textLocale +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: androidx.lifecycle.LifecycleRegistry mRegistry +james.adaptiveicon.R$dimen: int notification_top_pad +android.didikee.donate.R$style: int Widget_AppCompat_ImageButton +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_type +com.turingtechnologies.materialscrollbar.MaterialScrollBar: MaterialScrollBar(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_visible +wangdaye.com.geometricweather.R$id: int transition_layout_save +androidx.appcompat.resources.R$id: int accessibility_custom_action_11 +wangdaye.com.geometricweather.R$drawable: int notif_temp_138 +com.google.android.material.R$dimen: int abc_action_button_min_width_material +wangdaye.com.geometricweather.R$id: int dialog_background_location_setButton +cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_COLOR_CALIBRATION +cyanogenmod.app.CustomTile$Builder: java.lang.String mContentDescription +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_3 +android.didikee.donate.R$style: int Theme_AppCompat_Dialog +android.didikee.donate.R$styleable: int SearchView_submitBackground +cyanogenmod.app.CMStatusBarManager: android.content.Context mContext +com.google.android.material.R$style: int Widget_MaterialComponents_Light_ActionBar_Solid +com.google.android.material.slider.Slider: float getValueFrom() +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date +com.google.android.material.R$attr: int textAppearanceSubtitle2 +androidx.fragment.R$styleable: int[] GradientColorItem +james.adaptiveicon.R$style: int Base_DialogWindowTitle_AppCompat +com.bumptech.glide.R$id: int right +com.google.android.material.button.MaterialButton: int getTextHeight() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Pollen pollen +com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_Switch +android.didikee.donate.R$attr: int actionModeCloseButtonStyle +androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat_Dark +androidx.appcompat.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingBottom +com.google.android.material.R$attr: int layout_constrainedHeight +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pm10 +androidx.constraintlayout.helper.widget.Flow: void setOrientation(int) +com.google.android.material.R$attr: int checkboxStyle +wangdaye.com.geometricweather.R$attr: int fabSize +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextInputEditText +io.reactivex.Observable: io.reactivex.Observable concatMapDelayError(io.reactivex.functions.Function) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String languageId +androidx.customview.R$id: int actions +androidx.work.R$styleable: int GradientColor_android_endX +androidx.appcompat.R$color: int abc_decor_view_status_guard +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_48dp +com.google.android.material.R$styleable: int ConstraintSet_transitionEasing +cyanogenmod.themes.IThemeProcessingListener$Stub: android.os.IBinder asBinder() +org.greenrobot.greendao.AbstractDaoMaster: java.util.Map daoConfigMap +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleDrawable +androidx.appcompat.R$style: int TextAppearance_AppCompat_Large_Inverse +androidx.appcompat.R$style: int Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$styleable: int Constraint_android_alpha +wangdaye.com.geometricweather.R$attr: int ratingBarStyleIndicator +okhttp3.CacheControl: okhttp3.CacheControl parse(okhttp3.Headers) +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getLongAbbreviation(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String value +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: double Value +wangdaye.com.geometricweather.R$styleable: int MotionLayout_layoutDescription +cyanogenmod.platform.Manifest: Manifest() +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State getCurrentState() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_RadioButton +androidx.appcompat.widget.FitWindowsViewGroup +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar_Small +okhttp3.internal.http2.Http2Connection: int nextStreamId +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul3H +com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$attr: int bsb_bubble_text_color +androidx.work.R$drawable: int notification_template_icon_low_bg +com.google.android.material.slider.Slider: void setThumbStrokeWidth(float) +org.greenrobot.greendao.AbstractDao: boolean hasKey(java.lang.Object) +com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.R$string: int settings_category_forecast +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: ObservableRange$RangeDisposable(io.reactivex.Observer,long,long) +wangdaye.com.geometricweather.R$styleable: int BackgroundStyle_android_selectableItemBackground +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_subhead_material +androidx.preference.R$dimen: int fastscroll_default_thickness +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_NoActionBar +com.google.android.material.R$dimen: int abc_dialog_min_width_major +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_Chip +wangdaye.com.geometricweather.R$style: int widget_text_clock_aa +com.google.android.material.R$drawable: int abc_ic_menu_share_mtrl_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: java.lang.String Unit +james.adaptiveicon.R$styleable: int MenuItem_android_numericShortcut +com.google.android.material.R$styleable: int SearchView_iconifiedByDefault +com.jaredrummler.android.colorpicker.R$attr: int dialogPreferredPadding +com.google.android.material.internal.ParcelableSparseArray: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$attr: int buttonIconDimen +com.google.android.material.R$styleable: int NavigationView_itemShapeInsetStart +com.google.android.material.R$styleable: int AppCompatTheme_actionBarDivider +james.adaptiveicon.R$layout: int abc_search_dropdown_item_icons_2line +androidx.legacy.coreutils.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$attr: int inverse +com.github.rahatarmanahmed.cpv.CircularProgressView: float maxProgress +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: java.lang.String toString() +cyanogenmod.weather.CMWeatherManager: android.os.Handler access$100(cyanogenmod.weather.CMWeatherManager) +okio.SegmentedByteString: java.nio.ByteBuffer asByteBuffer() +wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_3 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.util.List value +okhttp3.MultipartBody: okhttp3.MediaType type() +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_divider +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onUnsubscribed() +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setPrecipitationColor(int) +androidx.preference.R$id: int tag_unhandled_key_listeners +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.ObservableEmitter emitter +retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: boolean cancel(boolean) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircleRadius +cyanogenmod.hardware.CMHardwareManager: java.lang.String TAG +james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.R$string: int geometric_weather +com.google.android.material.R$dimen: int material_clock_hand_padding +androidx.hilt.R$id: int accessibility_custom_action_17 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_IME_SWITCHER_VALIDATOR +retrofit2.Invocation: java.util.List arguments() +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Base base +androidx.work.R$drawable +okhttp3.CertificatePinner: java.util.Set pins +androidx.preference.R$styleable: int PreferenceFragment_android_divider +com.google.android.material.appbar.AppBarLayout$BaseBehavior +com.google.android.material.R$attr: int flow_horizontalGap +androidx.dynamicanimation.R$id: int title +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle +androidx.appcompat.R$id: int action_bar_activity_content +androidx.appcompat.R$attr: int panelMenuListWidth +com.xw.repo.bubbleseekbar.R$id: int split_action_bar +wangdaye.com.geometricweather.daily.DailyWeatherActivity +okio.Segment: okio.Segment sharedCopy() +wangdaye.com.geometricweather.R$styleable: int[] KeyFramesVelocity +com.google.android.material.R$attr: int fontWeight +cyanogenmod.externalviews.ExternalViewProviderService$1$1: cyanogenmod.externalviews.ExternalViewProviderService$1 this$1 +androidx.work.R$id: int accessibility_custom_action_27 +com.google.android.material.R$string: int mtrl_picker_range_header_selected +com.jaredrummler.android.colorpicker.R$style: int Base_V22_Theme_AppCompat_Light +com.xw.repo.bubbleseekbar.R$attr: int buttonBarStyle +com.turingtechnologies.materialscrollbar.R$string: int abc_action_bar_up_description +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.lang.Throwable error +androidx.transition.R$id: int action_container +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_corner +com.google.android.material.R$id: int guideline +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric +wangdaye.com.geometricweather.R$attr: int switchPreferenceCompatStyle +androidx.core.R$attr: int fontWeight +cyanogenmod.weather.WeatherLocation$1: cyanogenmod.weather.WeatherLocation[] newArray(int) +com.bumptech.glide.R$drawable: int notification_tile_bg +android.didikee.donate.R$dimen: int abc_text_size_menu_material +androidx.loader.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getDescription() +com.google.android.material.R$attr: int layout_editor_absoluteY +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language CZECH +androidx.preference.R$styleable: int[] PreferenceFragment +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dark +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_spinnerStyle +android.didikee.donate.R$drawable: int notification_action_background +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +androidx.preference.R$attr: int alpha +wangdaye.com.geometricweather.R$id: int jumpToEnd +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_android_gravity +androidx.loader.R$integer +androidx.work.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets +com.bumptech.glide.integration.okhttp.R$attr: int keylines +androidx.loader.R$drawable: int notification_bg_low_pressed +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ProgressBar +androidx.fragment.R$styleable: int GradientColor_android_endX +androidx.viewpager2.R$styleable: int FontFamily_fontProviderQuery +retrofit2.BuiltInConverters$VoidResponseBodyConverter: java.lang.Object convert(java.lang.Object) +androidx.viewpager2.R$id: int tag_accessibility_heading +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean cancelled +androidx.hilt.work.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Circular +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float ice +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getThemePackageNameForComponent(java.lang.String) +james.adaptiveicon.R$attr: int layout +androidx.constraintlayout.widget.R$dimen: int abc_dialog_list_padding_top_no_title +androidx.preference.R$attr: int textLocale +android.didikee.donate.R$style: int Theme_AppCompat_Light_NoActionBar +androidx.preference.R$layout: int abc_alert_dialog_button_bar_material +wangdaye.com.geometricweather.R$styleable: int Chip_android_ellipsize +com.google.android.material.R$attr: int collapseContentDescription +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +james.adaptiveicon.R$styleable: int[] CompoundButton +androidx.appcompat.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.R$id: int item_about_header_appName +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Long id +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean +wangdaye.com.geometricweather.R$layout: int widget_day_tile +wangdaye.com.geometricweather.R$styleable: int[] ExtendedFloatingActionButton_Behavior_Layout +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveShape okhttp3.CipherSuite: java.util.Map INSTANCES -com.google.android.material.R$color: int material_grey_850 -wangdaye.com.geometricweather.R$layout: int widget_text -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_RC4_40_SHA -okio.Buffer: okio.Buffer emitCompleteSegments() -com.google.android.material.appbar.AppBarLayout: int getDownNestedPreScrollRange() -com.google.android.material.R$styleable: int AppCompatTheme_windowActionModeOverlay -cyanogenmod.externalviews.KeyguardExternalView$3: boolean val$visible -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List dailyForecasts -retrofit2.converter.gson.GsonResponseBodyConverter -wangdaye.com.geometricweather.R$attr: int materialButtonOutlinedStyle -com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_padding_vertical_material -com.xw.repo.bubbleseekbar.R$attr: int listPopupWindowStyle -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: long serialVersionUID -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_track_mtrl_alpha -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontWeight -com.bumptech.glide.load.engine.GlideException: java.lang.Throwable fillInStackTrace() -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked -com.google.android.material.card.MaterialCardView: void setStrokeColor(int) -retrofit2.RequestFactory$Builder: java.lang.annotation.Annotation[] methodAnnotations -androidx.recyclerview.R$id: int blocking -androidx.appcompat.R$id: int tag_unhandled_key_event_manager -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Medium -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -androidx.preference.R$attr: int voiceIcon -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -androidx.appcompat.R$styleable: int AlertDialog_singleChoiceItemLayout -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -okio.SegmentedByteString: int indexOf(byte[],int) -com.google.android.material.R$id: int unlabeled -androidx.lifecycle.SavedStateHandle: androidx.savedstate.SavedStateRegistry$SavedStateProvider savedStateProvider() -okhttp3.ConnectionSpec$Builder: ConnectionSpec$Builder(boolean) -okhttp3.internal.http1.Http1Codec: int STATE_CLOSED -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_8 -wangdaye.com.geometricweather.search.Hilt_SearchActivity: Hilt_SearchActivity() -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$color: int primary_text_default_material_light -com.google.android.material.internal.ParcelableSparseBooleanArray: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$styleable: int ActionBar_elevation -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginBottom -cyanogenmod.app.ILiveLockScreenManager: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_GREEN_INDEX -okio.Buffer$1 -okhttp3.Request$Builder: okhttp3.Request$Builder tag(java.lang.Class,java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_tailColor -com.jaredrummler.android.colorpicker.R$attr: int cpv_dialogType -cyanogenmod.themes.ThemeManager: void removeClient(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -com.jaredrummler.android.colorpicker.R$attr: int actionModeCloseButtonStyle -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -com.google.android.material.R$attr: int textAppearanceCaption -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitationProbability -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: java.lang.String Unit -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long lastId -james.adaptiveicon.R$layout: int abc_action_bar_title_item -androidx.appcompat.widget.LinearLayoutCompat: int getGravity() -okhttp3.CacheControl: java.lang.String headerValue() -cyanogenmod.app.ProfileManager: java.util.UUID NO_PROFILE -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.Function rightEnd -com.google.android.material.chip.Chip: Chip(android.content.Context,android.util.AttributeSet) -com.bumptech.glide.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerColor -retrofit2.SkipCallbackExecutor -com.google.android.material.button.MaterialButton: void setOnPressedChangeListenerInternal(com.google.android.material.button.MaterialButton$OnPressedChangeListener) -android.didikee.donate.R$dimen: int abc_text_size_small_material -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType BOOLEAN_TYPE -androidx.vectordrawable.animated.R$id: int title -cyanogenmod.externalviews.ExternalView$5: ExternalView$5(cyanogenmod.externalviews.ExternalView) -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: io.reactivex.Observer downstream -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg -com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding[] values() -com.google.android.material.R$styleable: int SwitchCompat_switchMinWidth -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime -com.google.android.material.R$styleable: int BottomNavigationView_menu -wangdaye.com.geometricweather.R$attr: int state_dragged -io.reactivex.Observable: io.reactivex.Observable ofType(java.lang.Class) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonRiseDate -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_CompactMenu -cyanogenmod.app.PartnerInterface: cyanogenmod.app.IPartnerInterface sService -androidx.customview.R$string -androidx.vectordrawable.animated.R$attr: int fontWeight -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Dialog -okhttp3.internal.ws.WebSocketWriter$FrameSink: void close() -wangdaye.com.geometricweather.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +com.google.android.material.R$style: int Platform_Widget_AppCompat_Spinner +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: AccuCurrentResult$WetBulbTemperature() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onBouncerShowing(boolean) +okhttp3.internal.http2.Http2Reader$Handler: void priority(int,int,int,boolean) +okhttp3.internal.http2.Http2Reader: void readPriority(okhttp3.internal.http2.Http2Reader$Handler,int) +android.support.v4.os.ResultReceiver$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.hilt.work.R$id: int accessibility_custom_action_11 +james.adaptiveicon.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +android.didikee.donate.R$string: int abc_capital_off +retrofit2.RequestFactory$Builder: java.lang.String PARAM +wangdaye.com.geometricweather.R$style: int TestStyleWithLineHeight +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter +androidx.appcompat.R$color: R$color() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizePresetSizes +androidx.appcompat.R$color: int background_material_dark +com.turingtechnologies.materialscrollbar.R$dimen: int notification_media_narrow_margin +androidx.vectordrawable.animated.R$layout: int notification_template_part_chronometer +com.bumptech.glide.load.engine.GlideException: com.bumptech.glide.load.DataSource dataSource +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_106 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: AccuCurrentResult$Wind$Direction() +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_thumb_text +com.google.android.material.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon +androidx.constraintlayout.widget.R$string: int abc_searchview_description_submit +okhttp3.internal.Version: java.lang.String userAgent() +cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile[] getProfiles() +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int otherState +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dialog +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeFindDrawable +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String hourlyForecast +android.didikee.donate.R$style: int TextAppearance_AppCompat_Title_Inverse +androidx.appcompat.R$styleable: int DrawerArrowToggle_arrowHeadLength +okio.SegmentedByteString: java.lang.String toString() +android.didikee.donate.R$id: int add +com.xw.repo.bubbleseekbar.R$id: int left +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void run() +com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float o3 +okhttp3.internal.http2.Http2Connection$PingRunnable: boolean reply androidx.transition.R$color -okhttp3.internal.cache2.Relay$RelaySource: okio.Timeout timeout() -wangdaye.com.geometricweather.R$dimen: int tooltip_margin -okio.Source -retrofit2.Retrofit: okhttp3.Call$Factory callFactory() -androidx.preference.R$styleable: int TextAppearance_textLocale -androidx.appcompat.R$styleable: int AppCompatTextView_drawableStartCompat -okhttp3.Protocol -okhttp3.internal.Util: javax.net.ssl.X509TrustManager platformTrustManager() -androidx.vectordrawable.animated.R$drawable: int notification_icon_background -android.didikee.donate.R$drawable: int abc_scrubber_track_mtrl_alpha -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -okhttp3.internal.platform.Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -androidx.vectordrawable.R$styleable: int GradientColor_android_tileMode -androidx.preference.R$id: int accessibility_custom_action_20 -okio.BufferedSource: void readFully(okio.Buffer,long) -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_delete_shortcut_label -io.reactivex.internal.observers.DeferredScalarDisposable: boolean isEmpty() -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActivityChooserView -com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_item_material -androidx.appcompat.widget.LinearLayoutCompat: android.graphics.drawable.Drawable getDividerDrawable() -okio.AsyncTimeout$1: okio.Timeout timeout() -androidx.preference.R$attr: int logoDescription -cyanogenmod.app.CustomTile: android.app.PendingIntent onClick -com.jaredrummler.android.colorpicker.R$id: int text -android.didikee.donate.R$drawable: int abc_text_select_handle_right_mtrl_dark -okhttp3.HttpUrl$Builder: java.util.List encodedPathSegments -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(okhttp3.HttpUrl) -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode DAY -androidx.constraintlayout.widget.R$id: int jumpToEnd -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_tooltipFrameBackground -james.adaptiveicon.R$style: int Animation_AppCompat_DropDownUp -com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_android_foregroundGravity -androidx.preference.R$id: int accessibility_custom_action_1 -com.google.gson.JsonSyntaxException: long serialVersionUID -wangdaye.com.geometricweather.R$attr: int ensureMinTouchTargetSize -androidx.work.R$id: int notification_background -wangdaye.com.geometricweather.R$attr: int hintAnimationEnabled -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getDate(java.lang.String) -androidx.viewpager2.R$id: int accessibility_custom_action_9 -androidx.preference.R$style: int Preference_DialogPreference_Material -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.Window access$200(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dark -com.google.android.material.R$dimen: int mtrl_transition_shared_axis_slide_distance -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_background -wangdaye.com.geometricweather.R$attr: int flow_horizontalGap -androidx.preference.R$id: int expanded_menu -wangdaye.com.geometricweather.db.entities.MinutelyEntity: boolean daylight -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_LargeTouch -com.google.android.material.textfield.TextInputLayout: int getHelperTextCurrentTextColor() -com.github.rahatarmanahmed.cpv.CircularProgressView: void setColor(int) -cyanogenmod.externalviews.ExternalViewProperties: int mHeight -androidx.preference.R$attr: int menu -com.jaredrummler.android.colorpicker.R$string: int abc_action_bar_up_description -android.didikee.donate.R$styleable: int ActionBar_contentInsetStart -james.adaptiveicon.R$drawable: int abc_text_select_handle_middle_mtrl_light -androidx.constraintlayout.utils.widget.ImageFilterView: void setContrast(float) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setO3(java.lang.Float) -androidx.appcompat.R$style: int Widget_AppCompat_Button_Borderless_Colored -androidx.constraintlayout.widget.R$attr: int expandActivityOverflowButtonDrawable -retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler parseParameter(int,java.lang.reflect.Type,java.lang.annotation.Annotation[],boolean) -com.bumptech.glide.integration.okhttp.R$id: int normal -android.didikee.donate.R$attr: int dividerHorizontal -com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context,android.util.AttributeSet) -com.google.android.material.slider.RangeSlider: void setValueFrom(float) -androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnDestroy() -androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -com.google.android.material.R$styleable: int AlertDialog_buttonIconDimen -com.google.android.material.R$layout: int mtrl_layout_snackbar -androidx.constraintlayout.widget.R$styleable: int MenuView_preserveIconSpacing -okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String,java.lang.String) -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onNext(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$attr: int scrimVisibleHeightTrigger -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_Dialog -com.google.android.material.R$id: int guideline -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_5 -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_58 -android.didikee.donate.R$style: int Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth -james.adaptiveicon.R$attr: int actionModePopupWindowStyle -com.google.android.material.R$dimen: int mtrl_shape_corner_size_medium_component -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_11 -androidx.vectordrawable.R$id: int accessibility_custom_action_8 -androidx.lifecycle.SingleGeneratedAdapterObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -com.google.android.material.R$styleable: int KeyTimeCycle_transitionPathRotate -okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_3 -okhttp3.internal.cache.DiskLruCache$Entry: long sequenceNumber -wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_container -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_16dp -wangdaye.com.geometricweather.background.receiver.MainReceiver: MainReceiver() -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_MAX_INDEX -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_profileExists -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: ExecutorScheduler$DelayedRunnable(java.lang.Runnable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean -com.google.android.material.R$styleable: int ConstraintSet_android_maxWidth -cyanogenmod.themes.IThemeChangeListener$Stub: int TRANSACTION_onFinish_1 -james.adaptiveicon.R$dimen: int abc_text_size_caption_material -okhttp3.HttpUrl: java.lang.String queryParameterValue(int) -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -cyanogenmod.platform.R$attr -com.turingtechnologies.materialscrollbar.R$attr: int spinnerStyle -com.google.android.material.R$attr: int startIconContentDescription -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: boolean mCanceled -androidx.dynamicanimation.R$layout: int notification_template_part_time -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_fontVariationSettings -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1(androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription,long) -com.google.android.material.R$attr: int layout_optimizationLevel -com.bumptech.glide.integration.okhttp.R$layout -androidx.work.R$string: int status_bar_notification_info_overflow -okhttp3.internal.http2.Http2Connection$1: int val$streamId -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: HistoryEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -androidx.preference.R$styleable: int CompoundButton_buttonTint -com.jaredrummler.android.colorpicker.R$attr: int colorButtonNormal -wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassDescription(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMarkTintMode -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onComplete() -com.google.android.material.R$styleable: int FontFamilyFont_ttcIndex -com.jaredrummler.android.colorpicker.R$string: int summary_collapsed_preference_list -com.google.gson.stream.JsonReader: java.io.Reader in -androidx.constraintlayout.widget.R$id: int action_container -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer RIGHT_CLOSE -com.google.android.material.R$style: int Theme_AppCompat_DialogWhenLarge -wangdaye.com.geometricweather.R$style: int Platform_V25_AppCompat_Light -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize -cyanogenmod.providers.WeatherContract$WeatherColumns: WeatherContract$WeatherColumns() -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: boolean mWasExecuted -james.adaptiveicon.R$styleable: int SwitchCompat_trackTintMode -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_showAsAction -androidx.lifecycle.ReflectiveGenericLifecycleObserver: ReflectiveGenericLifecycleObserver(java.lang.Object) -james.adaptiveicon.R$style: int Base_V26_Theme_AppCompat -wangdaye.com.geometricweather.R$styleable: int ActionBar_customNavigationLayout -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_colorPresets -james.adaptiveicon.R$color: int primary_text_disabled_material_light -android.didikee.donate.R$styleable: int ActionBar_contentInsetEndWithActions -com.google.android.material.R$styleable: int Toolbar_subtitleTextAppearance -james.adaptiveicon.R$styleable: int AppCompatTheme_actionMenuTextColor -androidx.drawerlayout.R$styleable -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver -cyanogenmod.profiles.ConnectionSettings: int mValue -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: java.util.concurrent.atomic.AtomicReference active -com.google.android.material.slider.RangeSlider: int getHaloRadius() -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.String toString() -androidx.constraintlayout.widget.R$attr: int spinnerStyle -cyanogenmod.app.StatusBarPanelCustomTile: int describeContents() -androidx.lifecycle.LifecycleService: LifecycleService() -androidx.appcompat.R$attr: int textColorAlertDialogListItem -com.google.android.material.R$layout: int abc_action_bar_title_item -com.google.android.material.R$style: int Widget_Design_TextInputLayout -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_type -androidx.preference.R$id: int right_side -com.jaredrummler.android.colorpicker.R$layout: int select_dialog_multichoice_material -com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_android_color -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -okhttp3.ConnectionPool: java.util.Deque connections -wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_colored_item_tint -androidx.loader.R$dimen: int compat_notification_large_icon_max_height -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean done -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -james.adaptiveicon.R$attr: int measureWithLargestChild -com.google.android.material.slider.BaseSlider: void setThumbTintList(android.content.res.ColorStateList) -androidx.appcompat.R$attr: int allowStacking -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getApparentTemperature() -androidx.coordinatorlayout.R$attr: int statusBarBackground -androidx.appcompat.resources.R$dimen: int notification_top_pad -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: long serialVersionUID -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPublishTime(long) -okhttp3.CertificatePinner: CertificatePinner(java.util.Set,okhttp3.internal.tls.CertificateChainCleaner) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicInteger windows -wangdaye.com.geometricweather.R$layout: int notification_template_custom_big -com.google.android.material.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -com.google.android.material.R$styleable: int TextInputLayout_boxStrokeColor -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhase -wangdaye.com.geometricweather.R$id: int circle -com.xw.repo.bubbleseekbar.R$attr: int bsb_seek_step_section -wangdaye.com.geometricweather.R$dimen: int preference_seekbar_padding_horizontal -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupMenu -com.google.android.material.R$attr: int fastScrollHorizontalTrackDrawable -cyanogenmod.weather.WeatherInfo$Builder: java.util.List mForecastList -okio.InflaterSource: long read(okio.Buffer,long) -androidx.appcompat.resources.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_99 -wangdaye.com.geometricweather.R$style: int Base_V26_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$id: int mtrl_picker_header -com.google.android.material.R$layout: int mtrl_alert_select_dialog_singlechoice -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarWidgetTheme -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginBottom -wangdaye.com.geometricweather.R$attr: int thumbStrokeWidth -com.turingtechnologies.materialscrollbar.R$attr: int homeLayout -com.google.android.material.R$color: int mtrl_calendar_item_stroke_color -com.google.android.material.R$id: int BOTTOM_START -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Dialog -cyanogenmod.externalviews.ExternalView: void onActivityStopped(android.app.Activity) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.activity.R$id: int text2 -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -cyanogenmod.providers.CMSettings$Secure: java.lang.String ADVANCED_MODE -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void dispose() -io.reactivex.Observable: io.reactivex.Observable groupJoin(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -androidx.preference.R$dimen: int abc_edit_text_inset_horizontal_material -james.adaptiveicon.R$dimen: int abc_button_padding_vertical_material -com.google.android.material.floatingactionbutton.FloatingActionButton: void setVisibility(int) -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior: ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer humidity -androidx.constraintlayout.widget.R$interpolator -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: android.os.IBinder asBinder() -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents -androidx.viewpager.R$styleable: int FontFamilyFont_android_fontWeight -okio.Buffer$1: void close() -androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationZ -okhttp3.EventListener: void requestHeadersStart(okhttp3.Call) -com.google.android.material.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.google.android.material.R$styleable: int[] MenuGroup -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleContentDescription(java.lang.CharSequence) -androidx.constraintlayout.widget.R$dimen: int notification_top_pad -cyanogenmod.hardware.ICMHardwareService: boolean setDisplayColorCalibration(int[]) -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.DatabaseOpenHelper$EncryptedHelper checkEncryptedHelper() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.settings.dialogs.ProvidersPreviewerDialog: ProvidersPreviewerDialog() -com.google.android.material.R$attr: int constraint_referenced_ids -com.google.android.material.R$style: int Widget_MaterialComponents_FloatingActionButton -androidx.constraintlayout.widget.R$string: int abc_prepend_shortcut_label -androidx.lifecycle.extensions.R$integer: int status_bar_notification_info_maxnum -android.didikee.donate.R$dimen: int abc_text_size_body_2_material +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +wangdaye.com.geometricweather.R$id: int disableScroll +retrofit2.Retrofit: retrofit2.ServiceMethod loadServiceMethod(java.lang.reflect.Method) +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderFetchTimeout +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: OkHttpCall$ExceptionCatchingResponseBody(okhttp3.ResponseBody) +androidx.lifecycle.extensions.R$attr: int fontProviderCerts +com.google.android.material.R$styleable: int Insets_paddingRightSystemWindowInsets +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_46 +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +wangdaye.com.geometricweather.R$styleable: int MaterialRadioButton_buttonTint +androidx.customview.R$styleable: int GradientColor_android_tileMode +okio.HashingSource: javax.crypto.Mac mac +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.functions.Function bufferClose +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: ObservableRangeLong$RangeDisposable(io.reactivex.Observer,long,long) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_material +okhttp3.Cache$1: void trackResponse(okhttp3.internal.cache.CacheStrategy) +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level BASIC +androidx.activity.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_setActiveProfile_0 +cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.view.View onCreateView() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Bridge +androidx.appcompat.R$styleable: int View_android_theme +android.didikee.donate.R$attr: int listDividerAlertDialog +androidx.preference.R$id: int src_atop +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String moonPhase +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText +james.adaptiveicon.R$styleable: int FontFamilyFont_fontWeight +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +wangdaye.com.geometricweather.R$string: int retrofit +androidx.hilt.work.R$id: int accessibility_custom_action_4 +james.adaptiveicon.R$styleable: int MenuItem_android_icon +androidx.hilt.R$id: int accessibility_custom_action_12 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.util.concurrent.atomic.AtomicLong requested +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Inverse +wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_android_thumb +cyanogenmod.app.ICustomTileListener$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: AccuCurrentResult$Wind$Speed() +android.didikee.donate.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.bumptech.glide.R$styleable: int[] FontFamily +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Toolbar +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_ALL +okhttp3.Protocol: okhttp3.Protocol HTTP_1_1 +androidx.customview.R$styleable: int GradientColor_android_startColor +com.google.android.material.datepicker.CompositeDateValidator: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getAbbreviation(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +wangdaye.com.geometricweather.R$drawable: int donate_wechat +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice Ice +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button +com.google.android.material.R$style: int Widget_MaterialComponents_BottomSheet +androidx.appcompat.R$styleable: int[] LinearLayoutCompat +com.google.android.material.R$style: int Theme_AppCompat_DayNight +wangdaye.com.geometricweather.R$id: int activity_allergen_container +com.turingtechnologies.materialscrollbar.R$attr: int colorAccent +cyanogenmod.weather.WeatherInfo$DayForecast: double getHigh() +okhttp3.internal.http2.Http2Connection$ReaderRunnable +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_pivotX +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onSubscribe(org.reactivestreams.Subscription) +retrofit2.http.Query: java.lang.String value() +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Line2 +okio.GzipSource: byte FCOMMENT +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_PrimarySurface +wangdaye.com.geometricweather.R$attr: int expandActivityOverflowButtonDrawable +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_title_divider_material +com.google.android.material.R$attr: int buttonCompat +wangdaye.com.geometricweather.db.entities.WeatherEntity: long updateTime +io.reactivex.internal.queue.SpscArrayQueue: void clear() +com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontWeight +androidx.preference.R$styleable: int PreferenceFragmentCompat_android_divider +com.google.android.material.R$attr: int thumbRadius +com.xw.repo.bubbleseekbar.R$drawable: int abc_dialog_material_background +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_LOW +com.turingtechnologies.materialscrollbar.R$attr: int hideOnContentScroll +wangdaye.com.geometricweather.db.entities.DailyEntity: void setSunRiseDate(java.util.Date) +androidx.lifecycle.ReflectiveGenericLifecycleObserver +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +androidx.appcompat.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: AccuCurrentResult$ApparentTemperature() +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_text_horizontal_edge_offset +com.google.android.material.R$style: int TextAppearance_AppCompat_Medium_Inverse +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_4 +okio.Okio$1: okio.Timeout val$timeout +io.reactivex.internal.subscribers.StrictSubscriber: void onNext(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: ObservableWithLatestFromMany$WithLatestFromObserver(io.reactivex.Observer,io.reactivex.functions.Function,int) +cyanogenmod.weather.WeatherInfo: double access$402(cyanogenmod.weather.WeatherInfo,double) +com.google.android.material.R$attr: int arcMode +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean add(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Category +androidx.preference.R$styleable: int[] DialogPreference +wangdaye.com.geometricweather.db.entities.DaoSession: void clear() +androidx.appcompat.R$style: int Base_V22_Theme_AppCompat +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_bottom +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit[] values() +androidx.activity.R$styleable: int GradientColor_android_endX +androidx.appcompat.widget.AppCompatRadioButton: android.content.res.ColorStateList getSupportBackgroundTintList() +androidx.viewpager.R$styleable: int FontFamilyFont_ttcIndex +cyanogenmod.app.StatusBarPanelCustomTile: android.os.UserHandle user +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +wangdaye.com.geometricweather.R$id: int recycler_view +com.turingtechnologies.materialscrollbar.R$attr: int switchMinWidth +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean isDisposed() +android.didikee.donate.R$styleable +com.google.android.material.R$styleable: int ActionBar_contentInsetStartWithNavigation +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextColor +androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context) +wangdaye.com.geometricweather.R$style: int Animation_MaterialComponents_BottomSheetDialog +com.google.android.material.R$attr: int checkedIconEnabled +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textColor +androidx.lifecycle.extensions.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_backgroundTintMode +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderQuery +io.reactivex.Observable: io.reactivex.Single firstOrError() +com.google.android.material.R$styleable: int ChipGroup_singleSelection +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low_pressed +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_fontVariationSettings +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_lookupCity +androidx.constraintlayout.motion.widget.MotionLayout: int getStartState() +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void run() +wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundDialog +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Borderless +androidx.preference.R$dimen: int fastscroll_minimum_range +retrofit2.KotlinExtensions: java.lang.Object await(retrofit2.Call,kotlin.coroutines.Continuation) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.Observer downstream +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getPrefixTextColor() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Small +okhttp3.internal.ws.WebSocketReader: okio.Buffer$UnsafeCursor maskCursor +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_NoActionBar +androidx.fragment.R$drawable: int notification_icon_background +androidx.appcompat.R$attr: int actionViewClass +com.jaredrummler.android.colorpicker.R$id: int tag_unhandled_key_listeners +com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setCircularRevealScrimColor(int) +okhttp3.internal.http2.ErrorCode +androidx.drawerlayout.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity: MultiCityWidgetConfigActivity() +androidx.constraintlayout.widget.R$color: int dim_foreground_material_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String en_US +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display1 wangdaye.com.geometricweather.R$styleable: int[] MockView -androidx.viewpager2.R$id: int tag_screen_reader_focusable -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State RESUMED -com.google.android.material.R$styleable: int KeyAttribute_transitionEasing -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_4 -androidx.recyclerview.R$attr: int reverseLayout -com.google.android.material.chip.Chip: float getCloseIconEndPadding() -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_shift_shortcut_label -androidx.activity.R$dimen: int notification_large_icon_width -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onTimeoutError(long,java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getTotalPrecipitation() -androidx.activity.R$id: int normal -james.adaptiveicon.R$attr: int layout -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItem -okhttp3.logging.HttpLoggingInterceptor$Logger: void log(java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitation -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemBitmap(android.graphics.Bitmap) -retrofit2.Platform$Android -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String defenseText -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_PRECIPITATION -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport parent -com.google.android.material.R$dimen: int hint_alpha_material_dark -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onError(java.lang.Throwable) -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall this$0 -androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String Phrase_60 -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontWeight -androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context) -com.google.android.material.R$styleable: int Transition_constraintSetStart -cyanogenmod.app.PartnerInterface: void setAirplaneModeEnabled(boolean) -cyanogenmod.app.IPartnerInterface$Stub$Proxy: void shutdown() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeBackground -com.bumptech.glide.R$attr: int font -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onNext(java.lang.Object) -androidx.viewpager.R$styleable: int GradientColor_android_centerColor -com.google.android.material.R$attr: int motion_postLayoutCollision -wangdaye.com.geometricweather.R$dimen: int abc_panel_menu_list_width -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customStringValue -okhttp3.internal.cache2.Relay: okio.Buffer buffer -com.turingtechnologies.materialscrollbar.Handle -androidx.fragment.R$styleable: int GradientColor_android_type +okhttp3.logging.LoggingEventListener: void connectStart(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy) +com.xw.repo.bubbleseekbar.R$id: int action_bar_activity_content +cyanogenmod.app.suggest.ApplicationSuggestion: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.R$attr: int behavior_overlapTop +com.jaredrummler.android.colorpicker.R$attr: int colorSwitchThumbNormal +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String description +androidx.constraintlayout.widget.R$id: int standard +com.google.android.material.bottomappbar.BottomAppBar: int getFabAlignmentMode() +androidx.hilt.work.R$drawable: int notification_bg_low_normal +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void pushPromise(int,int,java.util.List) +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animAutostart +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_HIGH +androidx.legacy.coreutils.R$string: int status_bar_notification_info_overflow +androidx.dynamicanimation.R$styleable: int GradientColor_android_startColor +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_COLOR +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.R$id: int TOP_END +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: long serialVersionUID wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked -cyanogenmod.profiles.StreamSettings$1: StreamSettings$1() -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: AccuCurrentResult$ApparentTemperature$Metric() -wangdaye.com.geometricweather.R$id: int activity_settings_toolbar -androidx.appcompat.R$style: int Theme_AppCompat_CompactMenu -james.adaptiveicon.R$styleable: int MenuItem_android_alphabeticShortcut -com.xw.repo.bubbleseekbar.R$attr: int colorButtonNormal -androidx.preference.R$style: int Base_Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_light -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getPlaceholderTextColor() -com.google.android.material.R$attr: int chipBackgroundColor -android.didikee.donate.R$style: int TextAppearance_AppCompat_Medium_Inverse -android.didikee.donate.R$styleable: int[] ViewBackgroundHelper -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours Past9Hours -cyanogenmod.app.BaseLiveLockManagerService: android.os.RemoteCallbackList mChangeListeners -androidx.appcompat.R$id: int progress_circular -androidx.legacy.coreutils.R$id: int blocking -com.bumptech.glide.R$style: int Widget_Compat_NotificationActionText -androidx.constraintlayout.widget.R$attr: int windowActionBar -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getRealFeelShaderTemperature() -androidx.activity.R$style: int TextAppearance_Compat_Notification_Time -com.google.android.material.R$dimen: int material_filled_edittext_font_1_3_padding_top -androidx.appcompat.R$id: int submenuarrow -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_material_light -okhttp3.Dns$1: java.util.List lookup(java.lang.String) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_textAllCaps -androidx.core.R$drawable: int notification_tile_bg -com.google.android.material.R$styleable: int SearchView_android_imeOptions -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_elevation_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean forecastHourly -com.jaredrummler.android.colorpicker.R$attr: int preferenceCategoryStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.util.List getValue() -androidx.fragment.app.FragmentManager: void removeOnBackStackChangedListener(androidx.fragment.app.FragmentManager$OnBackStackChangedListener) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetEnd -androidx.appcompat.R$drawable: int notification_action_background -cyanogenmod.externalviews.ExternalViewProviderService -com.google.android.material.R$attr: int showPaths -okhttp3.internal.http2.Http2Connection$ReaderRunnable$3 -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerNext(int,java.lang.Object) -com.turingtechnologies.materialscrollbar.R$bool: int abc_config_actionMenuItemAllCaps -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String ragweedDescription -cyanogenmod.providers.CMSettings$Secure: java.lang.String[] NAVIGATION_RING_TARGETS -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: ObservableTakeUntil$TakeUntilMainObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX() -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setTemperatureUnit(int) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.Integer alti -com.google.android.material.R$style: int EmptyTheme -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_longpressed_holo -cyanogenmod.weatherservice.WeatherProviderService$1: cyanogenmod.weatherservice.WeatherProviderService this$0 -androidx.preference.R$styleable: int Toolbar_subtitle -androidx.preference.R$layout: int abc_screen_simple -androidx.appcompat.R$color: int ripple_material_dark -wangdaye.com.geometricweather.R$drawable: int snackbar_background -com.google.android.material.R$id: int actions -retrofit2.RequestBuilder: java.lang.String method -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_4 -androidx.coordinatorlayout.R$color: int secondary_text_default_material_light -james.adaptiveicon.R$styleable: int MenuItem_actionViewClass -okhttp3.internal.tls.CertificateChainCleaner: okhttp3.internal.tls.CertificateChainCleaner get(java.security.cert.X509Certificate[]) -wangdaye.com.geometricweather.common.basic.models.weather.Daily: long getTime() -com.google.android.material.R$color: int abc_tint_spinner -com.google.android.material.chip.Chip: void setCheckable(boolean) -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NUMBER -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: boolean cancelled -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Base getBase() -wangdaye.com.geometricweather.R$drawable: int weather_snow_pixel -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -wangdaye.com.geometricweather.R$id: int right_side -androidx.preference.R$drawable: int btn_radio_off_mtrl -wangdaye.com.geometricweather.settings.activities.AboutActivity: AboutActivity() -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setScrollBarHidden(boolean) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_32 -androidx.appcompat.R$id: int action_context_bar -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger -androidx.preference.R$styleable: int Preference_allowDividerAbove -cyanogenmod.power.IPerformanceManager$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.R$styleable: int MockView_mock_showLabel -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: double Value -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.String dailyWeatherIcon -wangdaye.com.geometricweather.R$attr: int trackHeight -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler,boolean) -androidx.appcompat.R$attr: int drawableLeftCompat -com.xw.repo.bubbleseekbar.R$attr: int elevation -com.bumptech.glide.load.engine.GlideException: java.lang.String getMessage() -com.google.android.material.R$bool: R$bool() -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_textLocale -androidx.constraintlayout.widget.R$color: int material_blue_grey_800 -androidx.constraintlayout.widget.R$attr: int showAsAction -com.google.gson.stream.JsonWriter: void setHtmlSafe(boolean) -com.google.android.material.chip.Chip: float getTextStartPadding() -io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$style: int week_weather_week_info +wangdaye.com.geometricweather.R$style: int material_card +com.bumptech.glide.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$attr: int contentScrim +androidx.preference.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: void setGravitySensorEnabled(boolean) +androidx.preference.R$styleable: int AppCompatTheme_actionBarTabTextStyle +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +androidx.preference.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +io.reactivex.internal.operators.observable.ObserverResourceWrapper: long serialVersionUID +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.R$id: int title_template +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setIndices(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX) +com.jaredrummler.android.colorpicker.R$id: int preset +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +androidx.appcompat.widget.LinearLayoutCompat: int getDividerPadding() +androidx.preference.R$styleable: int AnimatedStateListDrawableItem_android_drawable +com.jaredrummler.android.colorpicker.R$style: int Base_V22_Theme_AppCompat +androidx.transition.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$styleable: int[] RangeSlider +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Solid +cyanogenmod.app.Profile: boolean isDirty() +com.google.android.material.R$color: int design_dark_default_color_secondary_variant +androidx.core.R$id: int tag_unhandled_key_event_manager +retrofit2.http.Body +wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Top_Left +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_max +cyanogenmod.app.Profile$TriggerType: int WIFI +wangdaye.com.geometricweather.R$string: int material_timepicker_clock_mode_description +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionMenuTextColor +wangdaye.com.geometricweather.R$id: int mtrl_picker_header_toggle +cyanogenmod.themes.IThemeService: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.turingtechnologies.materialscrollbar.R$attr: int splitTrack +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_BLUE_INDEX +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_switchTextOn +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: cyanogenmod.app.ILiveLockScreenChangeListener asInterface(android.os.IBinder) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue getOrCreateQueue() +com.google.android.material.R$styleable: int Layout_layout_constraintLeft_toRightOf +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.util.List value +com.google.android.material.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +androidx.viewpager.R$drawable: int notification_tile_bg +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void dispose() +android.didikee.donate.R$dimen: int abc_text_size_display_2_material +com.google.android.material.chip.Chip: float getChipMinHeight() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_srcCompat +wangdaye.com.geometricweather.common.ui.transitions.RoundCornerTransition +androidx.swiperefreshlayout.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_iconTint +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_holo_light +com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_icon +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onAttachedToWindow() +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontStyle +androidx.transition.R$dimen: int compat_notification_large_icon_max_height +androidx.preference.R$layout: int abc_action_menu_item_layout +androidx.vectordrawable.animated.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabContentStart +androidx.constraintlayout.widget.R$id: int visible +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setSize(float) +com.jaredrummler.android.colorpicker.R$drawable: int notification_tile_bg +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type UNKNOWN +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_switchTextOn +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_subheader +androidx.appcompat.R$id: int unchecked +androidx.preference.R$attr: int keylines +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: IWeatherProviderService$Stub$Proxy(android.os.IBinder) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setEncodedPathSegment(int,java.lang.String) +androidx.activity.R$style: int TextAppearance_Compat_Notification_Line2 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogCenterButtons +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: java.lang.String getMessage() +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow snow +com.jaredrummler.android.colorpicker.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$attr: int counterTextColor +com.google.android.material.chip.Chip: void setTextEndPadding(float) +com.turingtechnologies.materialscrollbar.R$id: int custom +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +com.google.android.material.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +androidx.cardview.R$style: int Base_CardView +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit PERCENT +androidx.transition.R$styleable: int FontFamily_fontProviderQuery +com.google.android.material.internal.ForegroundLinearLayout: void setForeground(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onNext(java.lang.Object) +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_off_mtrl_alpha +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String getUnit() +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Body1 +androidx.hilt.work.R$attr: int ttcIndex +com.google.android.material.R$string: int error_icon_content_description +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabStyle +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_begin +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_windowAnimationStyle +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: java.util.List getSuggestions(android.content.Intent) +cyanogenmod.app.CMTelephonyManager: void setDataConnectionSelectedOnSub(int) +com.google.android.material.R$styleable: int AppCompatTheme_controlBackground +cyanogenmod.app.Profile: java.util.Collection getConnectionSettings() +wangdaye.com.geometricweather.R$layout: int material_clockface_textview +cyanogenmod.providers.CMSettings$System: int getInt(android.content.ContentResolver,java.lang.String,int) +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_bar_title_item +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void onAttachedToWindow() +cyanogenmod.app.LiveLockScreenManager: void cancel(int) +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.util.Date date +androidx.constraintlayout.widget.R$attr: int customColorDrawableValue +androidx.preference.R$anim +okhttp3.HttpUrl: java.util.List encodedPathSegments() +androidx.preference.R$id: int recycler_view +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_Main +com.google.android.material.R$style: int Base_Widget_Design_TabLayout +com.google.android.material.textfield.TextInputLayout: void setEndIconDrawable(android.graphics.drawable.Drawable) +okhttp3.internal.http2.Http2Writer: void windowUpdate(int,long) +okio.ByteString: okio.ByteString of(byte[],int,int) +androidx.constraintlayout.widget.R$id: int square +androidx.preference.R$style: int Widget_AppCompat_CompoundButton_CheckBox +com.google.android.material.R$layout: R$layout() +androidx.recyclerview.R$layout +androidx.recyclerview.R$dimen: int notification_large_icon_height +androidx.constraintlayout.widget.R$attr: int alertDialogCenterButtons +james.adaptiveicon.R$attr: int thumbTextPadding +cyanogenmod.providers.CMSettings$Secure: long getLong(android.content.ContentResolver,java.lang.String) +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getUniqueDeviceId +io.reactivex.internal.observers.DeferredScalarDisposable: DeferredScalarDisposable(io.reactivex.Observer) +android.didikee.donate.R$color: int secondary_text_default_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconSize +com.google.android.material.slider.Slider: void setTrackActiveTintList(android.content.res.ColorStateList) +android.didikee.donate.R$styleable: int ActionBar_title +com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getIndicatorHeight() +com.google.android.material.R$string: int abc_capital_off +com.google.android.material.R$attr: int colorBackgroundFloating +com.google.android.material.R$styleable: int KeyCycle_android_scaleX +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Headline +androidx.appcompat.widget.AppCompatSpinner: void setDropDownVerticalOffset(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean getForecastHourly() +android.didikee.donate.R$styleable: int View_paddingStart +com.google.android.material.R$attr: int hideOnScroll +androidx.constraintlayout.widget.R$attr: int constraint_referenced_ids +androidx.fragment.app.Fragment$SavedState: android.os.Parcelable$Creator CREATOR +james.adaptiveicon.R$styleable: int Spinner_android_entries +wangdaye.com.geometricweather.R$style: int Widget_Design_BottomSheet_Modal +okio.Options: java.lang.Object get(int) +androidx.hilt.R$style: int TextAppearance_Compat_Notification_Time +okhttp3.RequestBody$2: okhttp3.MediaType val$contentType +android.didikee.donate.R$styleable: int[] View +androidx.appcompat.app.WindowDecorActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_toRightOf +com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusTopEnd() +androidx.appcompat.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pressure +james.adaptiveicon.R$layout: int notification_action_tombstone +androidx.appcompat.R$styleable: int ViewStubCompat_android_inflatedId +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_12 +com.jaredrummler.android.colorpicker.R$string: int abc_shareactionprovider_share_with +com.google.android.material.R$styleable: int KeyAttribute_curveFit +com.jaredrummler.android.colorpicker.R$attr: int windowMinWidthMinor +okhttp3.internal.platform.Platform: int WARN +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveShape +james.adaptiveicon.R$id: int action_menu_divider +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$200(com.github.rahatarmanahmed.cpv.CircularProgressView) +com.bumptech.glide.load.engine.GlideException: java.lang.Exception exception +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache +okhttp3.internal.ws.RealWebSocket: long queueSize() +com.google.android.material.slider.BaseSlider: void removeOnChangeListener(com.google.android.material.slider.BaseOnChangeListener) +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.FlowableEmitter serialize() +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +com.google.android.material.appbar.CollapsingToolbarLayout: void setMaxLines(int) +com.google.android.material.textfield.TextInputLayout: android.widget.TextView getPrefixTextView() +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowDy +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_border_width +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean addInner(io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) +okhttp3.HttpUrl: java.util.List pathSegments +com.google.android.material.R$dimen: int compat_button_padding_vertical_material +androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$attr: int defaultState +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets +com.google.android.material.R$layout: int abc_action_menu_layout +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabText +androidx.hilt.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$id: int item_weather_daily_value_title +okhttp3.internal.ws.WebSocketProtocol: WebSocketProtocol() +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int maxConcurrency +androidx.work.BackoffPolicy: androidx.work.BackoffPolicy valueOf(java.lang.String) +com.google.android.material.R$styleable: int Slider_labelStyle +androidx.viewpager.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$attr: int tooltipFrameBackground +com.google.android.material.R$color: int mtrl_scrim_color +androidx.lifecycle.ViewModelStore: ViewModelStore() +okhttp3.internal.ws.WebSocketReader: WebSocketReader(boolean,okio.BufferedSource,okhttp3.internal.ws.WebSocketReader$FrameCallback) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getSunRiseDate() +james.adaptiveicon.R$attr: int iconTintMode +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingLeft +io.reactivex.Observable: io.reactivex.Observable fromCallable(java.util.concurrent.Callable) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterTextAppearance +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris ephemeris +androidx.core.R$styleable: int GradientColor_android_startX +android.didikee.donate.R$attr: int buttonBarNegativeButtonStyle +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onComplete() +com.google.android.material.R$attr: int drawableRightCompat +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +okhttp3.internal.cache.InternalCache +com.google.android.material.R$drawable: int abc_ic_clear_material +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.disposables.Disposable upstream +androidx.recyclerview.widget.LinearLayoutManager: LinearLayoutManager(android.content.Context,android.util.AttributeSet,int,int) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver +android.didikee.donate.R$styleable: int AppCompatTheme_android_windowIsFloating +androidx.viewpager2.R$string +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_LOW_POWER +androidx.preference.R$style: int Widget_AppCompat_ListPopupWindow +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_checkboxStyle +io.reactivex.internal.functions.Functions$NaturalComparator: int compare(java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder httpOnly() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Caption +android.didikee.donate.R$dimen: int abc_text_size_title_material +wangdaye.com.geometricweather.R$string: int feedback_location_list_cannot_be_null +com.google.android.material.R$styleable: int Layout_android_layout_marginStart +wangdaye.com.geometricweather.R$string: int feels_like +com.google.android.material.R$styleable: int[] TextAppearance +androidx.lifecycle.FullLifecycleObserverAdapter: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_keyline +com.jaredrummler.android.colorpicker.R$string: int expand_button_title +okhttp3.internal.ws.WebSocketReader: long frameLength +retrofit2.KotlinExtensions$await$2$2: kotlinx.coroutines.CancellableContinuation $continuation +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_divider_mtrl_alpha +okhttp3.Call: okhttp3.Call clone() +wangdaye.com.geometricweather.R$attr: int radius_from +wangdaye.com.geometricweather.R$string: int abc_menu_meta_shortcut_label +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL_VALIDATOR +androidx.preference.ListPreference +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: void clear() +androidx.appcompat.R$string: int abc_searchview_description_voice +androidx.core.R$id: int accessibility_custom_action_26 +androidx.work.NetworkType: androidx.work.NetworkType METERED +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_creator +android.didikee.donate.R$styleable: int MenuItem_android_numericShortcut +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.jaredrummler.android.colorpicker.R$dimen: int compat_button_padding_vertical_material +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Button +androidx.appcompat.resources.R$id: int right_side +com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_internal_bg +com.xw.repo.bubbleseekbar.R$id: int async +com.turingtechnologies.materialscrollbar.R$attr: int tabMinWidth +retrofit2.Utils: boolean hasUnresolvableType(java.lang.reflect.Type) +com.google.android.material.R$attr: int shapeAppearanceOverlay +androidx.appcompat.R$styleable: int ActionBar_backgroundSplit +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: java.lang.Object item +wangdaye.com.geometricweather.R$drawable: int ic_play_store +okhttp3.internal.cache2.Relay: okio.Source newSource() +james.adaptiveicon.R$attr: int track +android.didikee.donate.R$attr: int gapBetweenBars +io.reactivex.internal.subscribers.StrictSubscriber: void request(long) +androidx.vectordrawable.R$id: int actions +androidx.viewpager2.R$id: int accessibility_custom_action_30 +com.google.android.material.textfield.TextInputLayout: com.google.android.material.internal.CheckableImageButton getEndIconView() +com.google.android.material.R$styleable: int MotionLayout_motionProgress +cyanogenmod.app.suggest.ApplicationSuggestion$1: java.lang.Object createFromParcel(android.os.Parcel) +com.google.android.material.button.MaterialButton: android.graphics.drawable.Drawable getIcon() +wangdaye.com.geometricweather.R$id: int layout +android.didikee.donate.R$id: int listMode +org.greenrobot.greendao.AbstractDaoSession: java.lang.Object callInTxNoException(java.util.concurrent.Callable) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_23 +com.google.android.material.R$style: int ShapeAppearanceOverlay +android.didikee.donate.R$attr: int thumbTint +wangdaye.com.geometricweather.R$styleable: int Chip_closeIcon +com.google.android.material.R$styleable: int ConstraintSet_android_translationY +androidx.constraintlayout.widget.R$layout: int abc_activity_chooser_view_list_item +com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_start +androidx.appcompat.R$attr: int actionOverflowMenuStyle +retrofit2.Call: void cancel() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.WeatherEntity,long) +wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_background_color +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setWeekText(java.lang.String) +com.jaredrummler.android.colorpicker.R$id: int search_bar +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_toBottomOf +androidx.appcompat.widget.ActionMenuPresenter$SavedState +com.google.android.material.R$dimen: int abc_text_size_title_material +james.adaptiveicon.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +okhttp3.HttpUrl: boolean equals(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_4_material +androidx.activity.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_default +io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_ActionBar +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: long serialVersionUID +com.google.android.material.slider.Slider: float getValue() +wangdaye.com.geometricweather.R$styleable: int[] SwitchPreference +wangdaye.com.geometricweather.R$color: int abc_search_url_text_normal +android.didikee.donate.R$style: int Widget_AppCompat_Light_ListView_DropDown +com.jaredrummler.android.colorpicker.R$color: int dim_foreground_disabled_material_light +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float rain +wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_velocityMode +wangdaye.com.geometricweather.R$string: R$string() +wangdaye.com.geometricweather.R$attr: int cardMaxElevation +com.google.android.material.R$string: int material_hour_suffix +androidx.vectordrawable.R$drawable +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Medium +com.google.android.material.R$dimen: int mtrl_extended_fab_start_padding +com.google.android.material.R$attr: int maxButtonHeight +okhttp3.internal.http.HttpDate: java.lang.String[] BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS +androidx.preference.R$layout: int preference_widget_switch wangdaye.com.geometricweather.R$attr: int fabCradleVerticalOffset -androidx.preference.R$style: int Widget_AppCompat_Button -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display2 -com.google.android.material.R$style: int Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListMenuView -androidx.viewpager.R$attr: int fontVariationSettings -com.xw.repo.bubbleseekbar.R$id: int search_voice_btn -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionLayout -androidx.preference.DialogPreference: DialogPreference(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endX -com.jaredrummler.android.colorpicker.R$dimen: int abc_button_padding_horizontal_material -wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundODialog -io.reactivex.exceptions.ProtocolViolationException: long serialVersionUID -android.didikee.donate.R$styleable: int MenuItem_iconTint -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_6 -android.didikee.donate.R$styleable: int Toolbar_contentInsetLeft -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionModeOverlay -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean hasKey(java.lang.Object) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -wangdaye.com.geometricweather.R$string: int refresh_at -com.google.android.material.slider.RangeSlider: void setLabelBehavior(int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$id: int textinput_placeholder -io.reactivex.Observable: io.reactivex.Observable join(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.R$id: int item_about_translator_subtitle -james.adaptiveicon.R$styleable: int MenuItem_alphabeticModifiers -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain Rain -com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Theme_AppCompat_Light -okio.Buffer: long completeSegmentByteCount() -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig historyEntityDaoConfig -wangdaye.com.geometricweather.R$layout: int container_circular_sky_view +com.turingtechnologies.materialscrollbar.R$style: int Platform_AppCompat_Light +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setDisplayState(boolean) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void startFirstTimeout(io.reactivex.ObservableSource) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Surface +com.google.android.material.R$attr: int startIconContentDescription +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_lightOnTouch +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isDataConnectionEnabled +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_27 +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_summaryOff +com.google.android.material.textfield.TextInputLayout: int getPlaceholderTextAppearance() +android.didikee.donate.R$styleable: int MenuItem_android_titleCondensed +com.google.android.material.R$styleable: int OnSwipe_touchRegionId +com.google.android.material.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha +androidx.swiperefreshlayout.R$dimen: int compat_notification_large_icon_max_width +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: boolean cancelled +androidx.preference.R$layout: int expand_button +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionMode +androidx.viewpager.R$id: int action_image +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_toolbarStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat +android.didikee.donate.R$color: int material_deep_teal_200 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List ganmao +androidx.preference.R$styleable: int ActionBar_hideOnContentScroll +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onNext(java.lang.Object) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: java.lang.Object mLatest +androidx.viewpager2.R$id: int action_container +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_disabled_translation_z +retrofit2.RequestBuilder: java.lang.String method +com.turingtechnologies.materialscrollbar.R$color: int design_error +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String,java.util.List) +android.didikee.donate.R$id: int always +wangdaye.com.geometricweather.background.receiver.MainReceiver +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$drawable: int notif_temp_80 +cyanogenmod.weather.WeatherInfo$Builder +wangdaye.com.geometricweather.R$color: int material_slider_halo_color +androidx.recyclerview.R$styleable: int RecyclerView_android_descendantFocusability +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean validate(long) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitation +androidx.transition.R$drawable: int notification_bg_normal +okio.HashingSink: java.security.MessageDigest messageDigest +retrofit2.ServiceMethod: retrofit2.ServiceMethod parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method) +io.reactivex.Observable: io.reactivex.Single toList(java.util.concurrent.Callable) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean delayError +androidx.dynamicanimation.R$string +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge +wangdaye.com.geometricweather.R$string: int settings_title_appearance +com.google.gson.JsonSyntaxException +com.bumptech.glide.R$dimen: int notification_main_column_padding_top +okhttp3.ConnectionSpec: boolean isCompatible(javax.net.ssl.SSLSocket) +com.jaredrummler.android.colorpicker.ColorPreferenceCompat: void setOnShowDialogListener(com.jaredrummler.android.colorpicker.ColorPreferenceCompat$OnShowDialogListener) +com.turingtechnologies.materialscrollbar.R$id: int progress_horizontal +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button +androidx.appcompat.resources.R$drawable: int notification_icon_background +androidx.transition.R$id: int transition_layout_save +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setDraggableFromAnywhere(boolean) +wangdaye.com.geometricweather.R$attr: int useSimpleSummaryProvider +com.google.android.material.R$attr: int state_collapsible +androidx.viewpager2.R$id: int accessibility_custom_action_16 +cyanogenmod.externalviews.KeyguardExternalView$3: int val$height +androidx.legacy.coreutils.R$id: int right_side +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat +com.bumptech.glide.integration.okhttp.R$id: int action_image +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setSunRiseSet(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean) +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataSpinner +james.adaptiveicon.R$styleable: int Toolbar_maxButtonHeight +wangdaye.com.geometricweather.R$drawable: int weather_rain_pixel +android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.appcompat.R$attr: int listPreferredItemHeightSmall +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_toRightOf +io.reactivex.internal.util.NotificationLite: java.lang.String toString() +com.turingtechnologies.materialscrollbar.R$attr: int imageButtonStyle +okhttp3.Response: Response(okhttp3.Response$Builder) +androidx.constraintlayout.widget.R$styleable: int KeyPosition_drawPath +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: java.lang.String WeatherCode +com.google.android.material.R$dimen: int mtrl_badge_long_text_horizontal_padding +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider NATIVE +wangdaye.com.geometricweather.R$layout: int widget_day_oreo_google_sans +com.jaredrummler.android.colorpicker.R$attr: int titleMarginTop +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderQuery +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ZEN_ALLOW_LIGHTS_VALIDATOR +okhttp3.Request$Builder: okhttp3.RequestBody body +androidx.preference.R$dimen: int abc_seekbar_track_background_height_material +androidx.constraintlayout.widget.R$id: int action_menu_divider +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 +androidx.coordinatorlayout.R$styleable: int[] FontFamilyFont +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Bottom_Left +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode ENHANCE_YOUR_CALM +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object readKey(android.database.Cursor,int) +android.didikee.donate.R$styleable: int AlertDialog_buttonIconDimen +retrofit2.converter.gson.GsonConverterFactory: retrofit2.converter.gson.GsonConverterFactory create(com.google.gson.Gson) +androidx.constraintlayout.widget.R$attr: int subtitleTextColor +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView_Menu +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_prompt +androidx.preference.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +okhttp3.internal.http2.Huffman: int[] CODES +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitation(java.lang.Float) +james.adaptiveicon.R$attr: int toolbarNavigationButtonStyle +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$array: R$array() +wangdaye.com.geometricweather.R$font: int product_sans_regular +androidx.swiperefreshlayout.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$string: int content_desc_wechat_payment_code +androidx.hilt.lifecycle.R$layout: int notification_template_icon_group +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintDimensionRatio +com.jaredrummler.android.colorpicker.R$id: int progress_circular +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstVerticalBias +androidx.preference.R$id: int item_touch_helper_previous_elevation +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: double lat +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int IconCode +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.app.ProfileManager: void removeProfile(cyanogenmod.app.Profile) +okhttp3.OkHttpClient: OkHttpClient(okhttp3.OkHttpClient$Builder) +com.bumptech.glide.R$styleable: int GradientColor_android_endX +androidx.loader.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.appcompat.R$color: int highlighted_text_material_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric Metric +wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean isEntityUpdateable() +com.google.android.material.R$animator: R$animator() +android.didikee.donate.R$dimen: int abc_text_size_large_material +cyanogenmod.app.CustomTileListenerService: void onListenerConnected() +com.jaredrummler.android.colorpicker.R$attr: int dependency +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTag +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: boolean hasPermissions(android.content.Context) +com.jaredrummler.android.colorpicker.R$drawable: int abc_tab_indicator_material +androidx.preference.R$attr: int allowDividerAbove +io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$string: int key_widget_clock_day_vertical +androidx.work.R$id: int accessibility_custom_action_7 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_CBC_SHA256 +androidx.appcompat.widget.ActionBarContextView: java.lang.CharSequence getTitle() +androidx.vectordrawable.R$dimen: int notification_big_circle_margin +cyanogenmod.themes.ThemeManager$1$2 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric Metric +com.google.android.material.R$attr: int actionOverflowMenuStyle +androidx.hilt.work.R$integer: int status_bar_notification_info_maxnum +com.jaredrummler.android.colorpicker.R$attr: int min +androidx.constraintlayout.widget.R$attr: int actionViewClass +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginEnd +androidx.preference.R$style: int Base_Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_colored +okhttp3.internal.http1.Http1Codec$FixedLengthSource: okhttp3.internal.http1.Http1Codec this$0 +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationX +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_visible +androidx.fragment.app.Fragment: void setOnStartEnterTransitionListener(androidx.fragment.app.Fragment$OnStartEnterTransitionListener) +com.turingtechnologies.materialscrollbar.R$color: int tooltip_background_light +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetLeft +com.google.android.material.R$styleable: int MaterialCalendarItem_itemStrokeWidth +com.google.android.material.R$styleable: int Chip_textEndPadding +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.util.Locale getLocale() +androidx.lifecycle.ClassesInfoCache: ClassesInfoCache() +okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] publicSuffixExceptionListBytes +com.google.android.material.R$color: int primary_text_disabled_material_light +androidx.recyclerview.R$id: int accessibility_custom_action_17 +com.google.android.material.R$attr: int cardUseCompatPadding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setShortDescription(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconEnabled +cyanogenmod.weather.WeatherInfo$1: java.lang.Object createFromParcel(android.os.Parcel) +cyanogenmod.app.Profile$ProfileTrigger: int describeContents() +com.bumptech.glide.integration.okhttp.R$style: int Widget_Compat_NotificationActionContainer +okhttp3.CacheControl$Builder: boolean noTransform +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: ExternalViewProviderService$Provider$ProviderImpl$1(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +james.adaptiveicon.R$styleable: int AppCompatImageView_android_src +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onComplete() +cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onListenerConnected() +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: MaybeToObservable$MaybeToObservableObserver(io.reactivex.Observer) +wangdaye.com.geometricweather.R$id: int widget_week_week_3 +cyanogenmod.providers.CMSettings$System$2 +wangdaye.com.geometricweather.R$attr: int numericModifiers +androidx.constraintlayout.widget.R$dimen: int abc_text_size_large_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSo2Desc() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_visibility +wangdaye.com.geometricweather.R$color: int foreground_material_dark +androidx.constraintlayout.widget.R$styleable: int SearchView_queryHint +com.google.android.material.R$styleable: int Constraint_flow_horizontalAlign +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_shapeAppearance +androidx.appcompat.R$attr: int progressBarPadding +android.didikee.donate.R$color: int secondary_text_disabled_material_dark +androidx.swiperefreshlayout.R$layout: int notification_template_icon_group +com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrimResource(int) +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_dialog +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabBarStyle +com.google.android.material.R$attr: int textAppearanceOverline +com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_sliderColor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain +wangdaye.com.geometricweather.R$string: int settings_title_pressure_unit +okhttp3.Route: okhttp3.Address address() +androidx.appcompat.widget.Toolbar: void setSubtitle(int) +com.google.android.material.R$color: int material_timepicker_modebutton_tint +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_enterFadeDuration +okhttp3.internal.tls.BasicCertificateChainCleaner: int hashCode() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_GCM_SHA384 +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: MfForecastV2Result() +wangdaye.com.geometricweather.settings.fragments.UnitSettingsFragment: UnitSettingsFragment() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeFindDrawable +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_setActiveProfileByName +cyanogenmod.app.CustomTile$ExpandedStyle: int getStyle() +cyanogenmod.app.CustomTile: java.lang.String contentDescription +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void dispose() +com.google.android.material.R$id: int accessibility_custom_action_27 +androidx.drawerlayout.widget.DrawerLayout: void setDrawerLockMode(int) +james.adaptiveicon.R$styleable: int ActionBar_progressBarPadding +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +androidx.hilt.work.R$id: int tag_screen_reader_focusable +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitation +com.google.android.material.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: int getRootAlpha() +com.google.android.material.R$styleable: int RecyclerView_android_descendantFocusability +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric Metric +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMarkTintMode +okhttp3.Call: okio.Timeout timeout() +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize +okio.Buffer: void require(long) +com.google.android.material.R$dimen: int mtrl_fab_min_touch_target +wangdaye.com.geometricweather.R$attr: int measureWithLargestChild +androidx.activity.R$styleable: int ColorStateListItem_android_color +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat +okio.Pipe +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit KGFPSQCM +retrofit2.RequestFactory$Builder: java.lang.annotation.Annotation[] methodAnnotations +androidx.hilt.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.util.Locale locale +okhttp3.RequestBody$2: int val$offset +com.bumptech.glide.integration.okhttp.R$style: int Widget_Support_CoordinatorLayout +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: AccuCurrentResult$TemperatureSummary$Past24HourRange() +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider AMAP +io.reactivex.Observable: io.reactivex.Observable buffer(java.util.concurrent.Callable,java.util.concurrent.Callable) +com.turingtechnologies.materialscrollbar.R$attr: int msb_handleOffColor +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_allowPresets +androidx.constraintlayout.widget.R$id: int tag_accessibility_heading +com.google.android.material.R$styleable: int ConstraintLayout_Layout_constraintSet +com.google.android.material.R$attr: int expanded +com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: java.lang.String pubTime +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDegreeDayTemperature(java.lang.Integer) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherText +wangdaye.com.geometricweather.R$menu +wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$id: int bottom_sides +com.turingtechnologies.materialscrollbar.R$attr: int headerLayout +androidx.work.R$id +wangdaye.com.geometricweather.R$attr: int fabCustomSize +android.support.v4.os.ResultReceiver$1: java.lang.Object[] newArray(int) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCloseDrawable +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderPackage +okhttp3.MultipartBody: java.util.List parts() +wangdaye.com.geometricweather.R$anim: int abc_tooltip_exit +cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_VISUALIZER_ENABLED +androidx.drawerlayout.R$id: int action_text +androidx.preference.R$dimen: int abc_dialog_fixed_height_minor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum Maximum +androidx.constraintlayout.widget.R$string: int abc_menu_ctrl_shortcut_label +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +okhttp3.Cache: void flush() +com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.animation.MotionSpec getHideMotionSpec() +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_speed +james.adaptiveicon.R$color: int abc_secondary_text_material_light +okhttp3.Dispatcher: Dispatcher() +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextAppearanceInactive(int) +com.google.android.material.R$id: int material_timepicker_cancel_button +androidx.preference.R$styleable: int ActionMode_titleTextStyle +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default +james.adaptiveicon.R$style: int Base_Theme_AppCompat +androidx.hilt.R$id: int forever +okio.Buffer$UnsafeCursor +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitationDuration() +wangdaye.com.geometricweather.R$id: int container_main_details +com.google.android.material.R$styleable: int ConstraintSet_android_transformPivotY +com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context) +okhttp3.internal.http2.Hpack$Writer: void writeByteString(okio.ByteString) +androidx.preference.R$styleable: int ColorStateListItem_android_color +retrofit2.ParameterHandler$1 +com.turingtechnologies.materialscrollbar.R$attr: int initialActivityCount +com.turingtechnologies.materialscrollbar.R$attr: int logo +com.turingtechnologies.materialscrollbar.R$attr: int actionLayout +cyanogenmod.providers.CMSettings$Secure: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: java.util.List coordinates +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontWeight +com.google.android.material.R$attr: int behavior_autoHide +androidx.hilt.R$id: int action_image +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_DrawerArrowToggle +okhttp3.internal.http2.Http2Stream: long bytesLeftInWriteWindow +androidx.viewpager2.R$styleable: int RecyclerView_spanCount +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void dispose() +wangdaye.com.geometricweather.R$color: int bright_foreground_inverse_material_dark +androidx.legacy.coreutils.R$attr: int ttcIndex +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPrimary() +james.adaptiveicon.R$attr: int subtitleTextColor +androidx.preference.R$style: int Widget_AppCompat_ActivityChooserView +androidx.appcompat.R$id: int textSpacerNoTitle +androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_android_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textSize +okio.ForwardingTimeout: okio.Timeout deadlineNanoTime(long) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: ExternalViewProviderService$Provider$ProviderImpl$6(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +com.jaredrummler.android.colorpicker.R$string: R$string() +com.turingtechnologies.materialscrollbar.R$style: int AlertDialog_AppCompat_Light +androidx.preference.R$attr: int actionBarSplitStyle +com.google.android.material.R$dimen: int abc_seekbar_track_background_height_material +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar +okhttp3.MultipartBody: long writeOrCountBytes(okio.BufferedSink,boolean) +com.google.android.material.R$styleable: int ConstraintSet_android_orientation +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_normalContainer +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction Direction +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +androidx.fragment.R$style: R$style() +com.google.android.material.R$layout: int abc_activity_chooser_view_list_item +wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_grey +androidx.preference.R$styleable: int AppCompatImageView_android_src +okhttp3.internal.http2.Http2Reader: java.util.logging.Logger logger +com.google.android.material.R$style: int Widget_AppCompat_ImageButton +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +cyanogenmod.externalviews.ExternalView$2: boolean val$visible +com.google.android.material.R$attr: int itemTextAppearanceInactive +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconTint +androidx.hilt.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain +com.google.gson.stream.JsonReader: int peekedNumberLength +androidx.preference.R$id: int seekbar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean) +okhttp3.internal.http2.Hpack$Writer: boolean useCompression +androidx.appcompat.R$string: int abc_action_menu_overflow_description +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: void setUnfold(boolean) +com.google.android.material.R$layout: int notification_action_tombstone +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_Solid +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeDegreeDayTemperature(java.lang.Integer) +com.google.android.material.R$styleable: int[] ListPopupWindow +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_android_layout +okhttp3.internal.connection.StreamAllocation: void release() +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_2 +wangdaye.com.geometricweather.R$id: int item_about_link +android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyleSmall +androidx.preference.R$attr: int preferenceScreenStyle +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +okhttp3.internal.http2.Http2Codec: Http2Codec(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http2.Http2Connection) +cyanogenmod.content.Intent +cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileManager getInstance(android.content.Context) +androidx.vectordrawable.R$color +wangdaye.com.geometricweather.R$drawable: int btn_radio_on_to_off_mtrl_animation +androidx.appcompat.R$attr: int windowActionModeOverlay +com.google.android.material.R$drawable: int notify_panel_notification_icon_bg +androidx.appcompat.R$dimen: int compat_button_inset_horizontal_material +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: boolean terminated +com.bumptech.glide.R$id: int notification_background +io.reactivex.Observable: io.reactivex.Observable buffer(int) +com.xw.repo.bubbleseekbar.R$attr: int state_above_anchor +androidx.appcompat.R$styleable: int SearchView_defaultQueryHint +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_roundPercent +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.String weatherText +com.google.android.material.R$attr: int chipIconTint +com.google.android.material.R$attr: int paddingStart +cyanogenmod.app.ILiveLockScreenManagerProvider: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean precipitationProbability +okio.BufferedSink: okio.BufferedSink writeLongLe(long) +okhttp3.Dispatcher: void setMaxRequests(int) +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +wangdaye.com.geometricweather.R$attr: int constraintSetStart +androidx.lifecycle.extensions.R$id: int line3 +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +androidx.preference.R$styleable: int LinearLayoutCompat_showDividers +androidx.work.R$attr: int fontProviderPackage +okhttp3.internal.connection.RealConnection: okhttp3.internal.ws.RealWebSocket$Streams newWebSocketStreams(okhttp3.internal.connection.StreamAllocation) +okio.ForwardingSink +com.google.android.material.R$styleable: int MaterialCardView_checkedIcon +com.jaredrummler.android.colorpicker.R$attr: int paddingBottomNoButtons +androidx.constraintlayout.widget.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_chainStyle +com.google.android.material.transformation.FabTransformationBehavior: FabTransformationBehavior(android.content.Context,android.util.AttributeSet) +androidx.lifecycle.ProcessLifecycleOwner$3$1 +androidx.dynamicanimation.R$attr: int fontProviderFetchTimeout +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastHorizontalStyle +androidx.preference.R$drawable: int abc_list_pressed_holo_dark +com.google.android.material.R$styleable: int Layout_layout_goneMarginLeft +androidx.appcompat.R$id: int icon +androidx.preference.R$styleable: int RecyclerView_android_orientation +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressCircleDiameter() +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_disabled_material_light +android.didikee.donate.R$styleable: int AppCompatTheme_colorControlNormal +androidx.appcompat.widget.ActionBarOverlayLayout: ActionBarOverlayLayout(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int status +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_text_size +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String OVERLAYS_URI +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_alphabeticShortcut +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setForecastDaily(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_scaleY +com.google.android.material.chip.Chip: void setTextAppearance(int) +androidx.preference.R$attr: int firstBaselineToTopHeight +androidx.preference.R$attr: int defaultValue +io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,io.reactivex.ObservableSource) +androidx.appcompat.R$styleable: int ActionBar_popupTheme +androidx.viewpager2.adapter.FragmentStateAdapter$2 +cyanogenmod.app.Profile: java.lang.String mName +com.google.android.material.R$attr: int subtitleTextColor +android.didikee.donate.R$styleable: int AppCompatTextView_drawableLeftCompat +android.didikee.donate.R$styleable: int AppCompatTheme_colorError +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_action_text_color_alpha +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_LIGHT +androidx.appcompat.R$styleable: int AppCompatTheme_popupMenuStyle +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_small_material +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.lang.String getRiseTime(android.content.Context) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_icon_padding +com.google.android.material.R$string: int material_minute_selection +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +com.google.android.material.R$dimen: int material_clock_hand_stroke_width +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_NoActionBar +com.github.rahatarmanahmed.cpv.CircularProgressView$2: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +androidx.appcompat.R$layout: int abc_expanded_menu_layout +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetRight +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String unit +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setOnClickListener(android.view.View$OnClickListener) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.Observer downstream +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.SingleObserver downstream +androidx.appcompat.R$id: int textSpacerNoButtons +wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_android_windowAnimationStyle +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox +cyanogenmod.themes.IThemeChangeListener: void onProgress(int) +wangdaye.com.geometricweather.R$styleable: int[] DrawerArrowToggle +androidx.hilt.work.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter windDegreeConverter +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_enabled +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_spanCount +androidx.constraintlayout.widget.R$drawable: int abc_spinner_textfield_background_material +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_24 +okhttp3.Cookie: boolean secure +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric() +com.google.android.material.R$styleable: int Layout_layout_constraintLeft_creator +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherPhase +androidx.preference.R$attr: int contentInsetEnd +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getIcePrecipitation() +io.reactivex.internal.util.VolatileSizeArrayList: int hashCode() +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginBottom +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean) +androidx.vectordrawable.R$dimen: int compat_button_padding_horizontal_material +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$StreamTimeout writeTimeout +retrofit2.Call: retrofit2.Response execute() +com.google.android.material.R$string: R$string() +cyanogenmod.app.ICustomTileListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.jaredrummler.android.colorpicker.R$style: int Preference_DropDown_Material +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA +androidx.work.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_normalContainer +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabStyle +wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog +androidx.hilt.R$id: int right_icon +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: java.lang.Object poll() +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_closeItemLayout +com.google.android.material.R$style: int Theme_Design_Light_NoActionBar +okhttp3.internal.http2.Http2Stream: void receiveData(okio.BufferedSource,int) +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int getColor() +com.google.android.material.R$styleable: int[] MotionTelltales +androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy: ConstraintProxy$StorageNotLowProxy() +com.jaredrummler.android.colorpicker.R$style: int AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetStartWithNavigation wangdaye.com.geometricweather.R$id: int middle -wangdaye.com.geometricweather.R$attr: int bsb_bubble_text_size -androidx.lifecycle.LiveData: boolean mDispatchInvalidated -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize -cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: int MPH -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_Solid -androidx.appcompat.R$styleable: int MenuItem_android_visible -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean aqi -androidx.appcompat.R$style: int Base_Animation_AppCompat_Tooltip -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: java.lang.Exception $this_suspendAndThrow$inlined -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_updateProfile -androidx.preference.R$attr: int editTextBackground -androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -james.adaptiveicon.R$drawable: int abc_scrubber_primary_mtrl_alpha -com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationZ(float) -james.adaptiveicon.R$styleable: int Toolbar_title -androidx.recyclerview.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$attr: int inverse -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String time -android.didikee.donate.R$styleable: int SearchView_searchHintIcon -androidx.preference.R$attr: int searchViewStyle -androidx.constraintlayout.widget.R$attr: int maxButtonHeight -com.jaredrummler.android.colorpicker.R$color: int foreground_material_dark -wangdaye.com.geometricweather.R$layout: int material_chip_input_combo -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.HistoryEntity) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogCornerRadius -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -android.didikee.donate.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -com.turingtechnologies.materialscrollbar.R$layout: int mtrl_layout_snackbar -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -com.google.android.material.R$styleable: int[] ViewPager2 -androidx.constraintlayout.widget.R$id: int search_plate -okhttp3.internal.cache.DiskLruCache$Editor$1: DiskLruCache$Editor$1(okhttp3.internal.cache.DiskLruCache$Editor,okio.Sink) -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String TABLENAME -io.reactivex.internal.disposables.ArrayCompositeDisposable: boolean isDisposed() -okio.Buffer: java.lang.String readUtf8LineStrict(long) -okhttp3.HttpUrl: int port() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_textStartPadding -io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -cyanogenmod.externalviews.KeyguardExternalView: boolean isInteractive() -wangdaye.com.geometricweather.R$attr: int titleMarginStart -androidx.preference.R$id: int tag_accessibility_pane_title -androidx.constraintlayout.widget.R$attr: int dividerVertical -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems -cyanogenmod.app.Profile: void setScreenLockMode(cyanogenmod.profiles.LockSettings) -okhttp3.MultipartBody: int size() -androidx.hilt.lifecycle.R$anim: int fragment_fade_exit -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDaylight(boolean) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView -wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonStyle -com.google.android.material.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -wangdaye.com.geometricweather.R$string: int date_format_long -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int PREDISMISSED_STATE -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_container -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_light -androidx.preference.R$attr: int actionBarItemBackground -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$styleable: int Preference_shouldDisableView -androidx.dynamicanimation.R$id: int forever -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button -okhttp3.internal.connection.RealConnection: int successCount -wangdaye.com.geometricweather.R$id: int icon -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -androidx.preference.R$attr: int buttonStyleSmall -retrofit2.RequestBuilder: void addHeaders(okhttp3.Headers) -androidx.work.R$id: int accessibility_custom_action_21 -com.google.android.material.R$styleable: int[] ConstraintLayout_Layout -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: ILiveLockScreenChangeListener$Stub$Proxy(android.os.IBinder) -androidx.preference.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -androidx.preference.R$attr: int initialActivityCount -wangdaye.com.geometricweather.R$attr: int colorControlHighlight -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -androidx.hilt.lifecycle.R$layout: R$layout() -androidx.lifecycle.ProcessLifecycleOwner$2: void onStart() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd -okhttp3.Headers: okhttp3.Headers of(java.util.Map) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_29 -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String LocalizedName -wangdaye.com.geometricweather.R$attr: int cpv_showOldColor -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_percent -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.constraintlayout.widget.R$dimen: int abc_dialog_corner_radius_material -okhttp3.internal.http2.Http2Reader$ContinuationSource: okio.BufferedSource source -cyanogenmod.weather.CMWeatherManager$2$2: void run() -android.didikee.donate.R$id: int icon_group -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginEnd -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxBackgroundColor -androidx.hilt.R$styleable: int FontFamilyFont_android_fontWeight -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_5 -okhttp3.HttpUrl: int port -wangdaye.com.geometricweather.R$styleable: int[] SwitchCompat -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -james.adaptiveicon.R$color: int notification_action_color_filter -io.reactivex.internal.util.VolatileSizeArrayList: java.util.ArrayList list -com.xw.repo.bubbleseekbar.R$bool: R$bool() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyle -android.didikee.donate.R$attr: int buttonBarButtonStyle -androidx.preference.R$styleable: int Fragment_android_id -wangdaye.com.geometricweather.R$anim: int abc_slide_in_top -androidx.coordinatorlayout.R$id: int line1 -com.xw.repo.bubbleseekbar.R$dimen: int abc_select_dialog_padding_start_material -androidx.constraintlayout.widget.R$attr: int flow_lastHorizontalStyle -androidx.appcompat.widget.LinearLayoutCompat: void setGravity(int) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_INACTIVE -okio.BufferedSink: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) -io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicLong missedProduced -com.turingtechnologies.materialscrollbar.R$attr: int state_liftable -wangdaye.com.geometricweather.db.entities.AlertEntity: void setDescription(java.lang.String) -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_weightSum -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getDistrict() -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat -wangdaye.com.geometricweather.R$attr: int layout_constraintTag -com.turingtechnologies.materialscrollbar.R$attr: int itemPadding -wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_alphaChannelVisible -androidx.activity.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: int unitArrayIndex -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayWeekWidgetConfigActivity: Hilt_ClockDayWeekWidgetConfigActivity() -org.greenrobot.greendao.AbstractDao: boolean detach(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ProgressBar -james.adaptiveicon.R$style: int Widget_AppCompat_SearchView -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: WeatherEntityDao$Properties() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX getDirection() -james.adaptiveicon.R$styleable: int AppCompatTextView_textLocale -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int LIGHT_SNOW_SHOWERS -com.google.android.material.R$styleable: int SnackbarLayout_backgroundTint -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: AccuDailyResult$DailyForecasts$Night$WindGust$Speed() -com.jaredrummler.android.colorpicker.R$layout: int preference_category_material -com.turingtechnologies.materialscrollbar.R$attr: int itemBackground -androidx.appcompat.widget.AppCompatSpinner$SavedState -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerY -com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusTopEnd() -james.adaptiveicon.R$style -androidx.customview.R$drawable: R$drawable() -com.xw.repo.bubbleseekbar.R$attr: int progressBarPadding -androidx.fragment.R$drawable: int notification_tile_bg -androidx.vectordrawable.R$id: int accessibility_custom_action_24 -okhttp3.internal.http.HttpHeaders: void receiveHeaders(okhttp3.CookieJar,okhttp3.HttpUrl,okhttp3.Headers) -okhttp3.internal.tls.CertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) -okhttp3.HttpUrl: java.lang.String percentDecode(java.lang.String,int,int,boolean) -com.bumptech.glide.R$id: int action_image -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemOnClickIntent(android.app.PendingIntent) -androidx.appcompat.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -wangdaye.com.geometricweather.R$attr: int allowDividerAbove -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: io.reactivex.Observer downstream -android.didikee.donate.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -cyanogenmod.app.StatusBarPanelCustomTile -com.github.rahatarmanahmed.cpv.CircularProgressView$2 -okhttp3.Request$Builder: okhttp3.HttpUrl url -cyanogenmod.weather.WeatherInfo$Builder: int mConditionCode -com.xw.repo.bubbleseekbar.R$color: int error_color_material_light -okio.InflaterSource: void close() -androidx.constraintlayout.helper.widget.Flow: void setHorizontalBias(float) -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert -com.turingtechnologies.materialscrollbar.R$attr: int boxCollapsedPaddingTop -androidx.preference.R$style: int TextAppearance_AppCompat_Menu -com.turingtechnologies.materialscrollbar.R$attr: int paddingTopNoTitle -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DOUBLE_TAP_SLEEP_GESTURE_VALIDATOR -androidx.constraintlayout.widget.R$anim: int abc_slide_in_bottom -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getDurationText(android.content.Context,float) -com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipBackgroundColor() -wangdaye.com.geometricweather.R$string: int on -wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getIconResStart() -com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_indicator_material -androidx.constraintlayout.utils.widget.ImageFilterView: void setWarmth(float) -com.google.android.material.R$attr: int flow_lastVerticalStyle -android.didikee.donate.R$dimen: int abc_dialog_fixed_height_minor -android.didikee.donate.R$style: int Theme_AppCompat -com.turingtechnologies.materialscrollbar.R$attr: int colorControlNormal -com.jaredrummler.android.colorpicker.ColorPanelView: int getBorderColor() -com.google.android.material.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -org.greenrobot.greendao.AbstractDao: AbstractDao(org.greenrobot.greendao.internal.DaoConfig,org.greenrobot.greendao.AbstractDaoSession) -androidx.appcompat.R$attr: int listPreferredItemHeightLarge -wangdaye.com.geometricweather.R$id: int container_alert_display_view_indicator -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver -com.bumptech.glide.R$layout: int notification_template_custom_big -com.jaredrummler.android.colorpicker.R$style: int Base_V26_Theme_AppCompat_Light -okio.Buffer$1: java.lang.String toString() -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableStart -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircleRadius -wangdaye.com.geometricweather.settings.dialogs.MinimalIconDialog -wangdaye.com.geometricweather.R$attr: int keylines -com.xw.repo.bubbleseekbar.R$attr: int buttonBarNeutralButtonStyle -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModePasteDrawable -com.xw.repo.bubbleseekbar.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.R$styleable: int Layout_layout_goneMarginTop -com.google.android.material.R$string: int error_icon_content_description -wangdaye.com.geometricweather.R$layout: int custom_dialog -james.adaptiveicon.R$styleable: int View_paddingEnd -android.didikee.donate.R$styleable: int MenuItem_tooltipText -androidx.activity.R$id: int accessibility_custom_action_8 -androidx.recyclerview.widget.RecyclerView: void removeOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -androidx.preference.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$string: int settings_title_icon_provider -com.google.android.material.R$id: int text_input_error_icon -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_4 -com.google.android.material.R$styleable: int TabItem_android_text -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_scrollView -com.google.android.material.R$attr: int minSeparation -androidx.constraintlayout.widget.R$styleable: int ActionBar_background -wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Light -wangdaye.com.geometricweather.R$styleable: int Transition_constraintSetEnd -androidx.lifecycle.ViewModelProviders -androidx.preference.R$style: int ThemeOverlay_AppCompat -wangdaye.com.geometricweather.R$styleable: int MotionLayout_motionDebug -androidx.loader.R$id: int text2 -androidx.constraintlayout.widget.R$attr: int buttonBarButtonStyle -android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMarkTint -com.jaredrummler.android.colorpicker.R$layout: int cpv_color_item_circle -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_0 -androidx.hilt.lifecycle.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.common.basic.models.weather.Alert: void descByTime(java.util.List) -wangdaye.com.geometricweather.R$id: int month_navigation_previous -wangdaye.com.geometricweather.R$color: int colorAccent_light -james.adaptiveicon.R$styleable: int FontFamily_fontProviderAuthority -androidx.preference.R$styleable: int AppCompatTheme_switchStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitationProbability() -com.google.android.material.R$styleable: int AnimatedStateListDrawableItem_android_drawable -okhttp3.OkHttpClient: boolean followSslRedirects -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_requestThemeChange -androidx.appcompat.R$attr: int toolbarStyle -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_android_elevation -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int BLUSTERY -wangdaye.com.geometricweather.R$id: int notification_multi_city_text_3 -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$attr: int showAsAction -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode WIND -okhttp3.internal.ws.WebSocketReader: void readUntilNonControlFrame() -james.adaptiveicon.R$styleable: int Toolbar_titleTextColor -androidx.preference.R$style: int Widget_Support_CoordinatorLayout -androidx.constraintlayout.widget.R$id: int layout -okhttp3.internal.http2.Http2Codec: okio.Sink createRequestBody(okhttp3.Request,long) -org.greenrobot.greendao.AbstractDao: void attachEntity(java.lang.Object) -androidx.preference.R$drawable: int abc_action_bar_item_background_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getLogo() -androidx.constraintlayout.widget.R$attr: int drawableEndCompat -androidx.constraintlayout.widget.R$drawable: int abc_ic_search_api_material -cyanogenmod.providers.CMSettings$DiscreteValueValidator: java.lang.String[] mValues -okhttp3.CacheControl: boolean isPrivate -androidx.appcompat.R$attr: int actionBarPopupTheme -androidx.appcompat.R$attr: int alpha -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Date -com.google.android.material.R$style: int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day -wangdaye.com.geometricweather.R$color: int primary_dark_material_dark -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents -com.xw.repo.bubbleseekbar.R$string: int abc_action_bar_home_description -retrofit2.adapter.rxjava2.BodyObservable: void subscribeActual(io.reactivex.Observer) -androidx.appcompat.R$dimen: int abc_edit_text_inset_horizontal_material -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconMargin -com.google.android.material.R$attr: int titleMargins -cyanogenmod.hardware.IThermalListenerCallback$Stub: java.lang.String DESCRIPTOR -androidx.dynamicanimation.R$styleable: int[] ColorStateListItem -cyanogenmod.providers.CMSettings$Global: float getFloat(android.content.ContentResolver,java.lang.String) -com.google.android.material.internal.CheckableImageButton$SavedState: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$dimen: int abc_button_inset_vertical_material -androidx.loader.R$id: int tag_unhandled_key_event_manager -androidx.constraintlayout.widget.R$attr: int actionMenuTextAppearance -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: float degree -okhttp3.internal.io.FileSystem$1: long size(java.io.File) -retrofit2.RequestFactory: okhttp3.Headers headers -com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreferenceCompat_Material -com.google.android.material.chip.Chip: Chip(android.content.Context) -james.adaptiveicon.R$styleable: int[] ColorStateListItem -androidx.preference.R$styleable: int TextAppearance_android_textFontWeight -okhttp3.internal.Util: boolean skipAll(okio.Source,int,java.util.concurrent.TimeUnit) -androidx.preference.R$style: int Theme_AppCompat_Light_NoActionBar -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierMargin +cyanogenmod.app.suggest.AppSuggestManager: AppSuggestManager(android.content.Context) +androidx.vectordrawable.animated.R$dimen: int notification_right_icon_size +com.google.android.material.R$styleable: int KeyTrigger_triggerId +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_top +cyanogenmod.externalviews.ExternalViewProviderService$Provider: int DEFAULT_WINDOW_FLAGS +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline6 +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +okio.Buffer: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) +androidx.appcompat.R$drawable: int abc_ic_star_black_16dp +androidx.constraintlayout.utils.widget.MotionTelltales +androidx.appcompat.R$attr: int dialogTheme +androidx.preference.R$bool: R$bool() +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress +wangdaye.com.geometricweather.R$styleable: int RangeSlider_values +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.List getValue() +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void setInteractivity(boolean) +wangdaye.com.geometricweather.R$styleable: int TagView_unchecked_background_color +wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_doneBtn +androidx.constraintlayout.widget.R$id: int NO_DEBUG +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int IceProbability +cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo mWeatherInfo +cyanogenmod.profiles.RingModeSettings: cyanogenmod.profiles.RingModeSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Linear +androidx.preference.R$dimen: int abc_alert_dialog_button_dimen +androidx.work.R$id: int accessibility_custom_action_13 +androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_inflatedId +wangdaye.com.geometricweather.R$attr: int pathMotionArc +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindSpeedEnd() +okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String key() +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.functions.BiPredicate comparer +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.disposables.CompositeDisposable observers +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator REVERSE_LOOKUP_PROVIDER_VALIDATOR +androidx.hilt.R$styleable: int GradientColorItem_android_offset +james.adaptiveicon.AdaptiveIconView: void setPath(java.lang.String) +androidx.appcompat.R$color: int material_blue_grey_900 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_toolbarStyle +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +androidx.preference.R$attr: int preferenceInformationStyle +com.google.android.material.R$dimen: int mtrl_alert_dialog_picker_background_inset +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float pm10 +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.AbstractDao getDao(java.lang.Class) +com.xw.repo.bubbleseekbar.R$attr: int drawableSize +wangdaye.com.geometricweather.R$attr: int tabIndicator +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_collapseIcon +wangdaye.com.geometricweather.R$string: int settings_notification_can_be_cleared_off +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: void setCaiyun(java.lang.String) +androidx.appcompat.R$styleable: int DrawerArrowToggle_thickness +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_SLOW_SAMPLES +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onComplete() +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setPostfixString(java.lang.String) +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState[] values() +androidx.legacy.content.WakefulBroadcastReceiver +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: long updatedOn +okio.Sink: void write(okio.Buffer,long) +androidx.preference.R$styleable: int ActionBar_backgroundStacked +com.google.android.material.R$id: int scrollIndicatorDown +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: boolean done +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: org.reactivestreams.Subscription upstream +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +androidx.preference.R$dimen: int abc_action_bar_overflow_padding_end_material +okhttp3.Cookie: boolean hostOnly +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableLeftCompat +okhttp3.MultipartBody$Builder: MultipartBody$Builder() +com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context) +androidx.constraintlayout.widget.R$attr: int iconTintMode +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String componentToImageColName(java.lang.String) +androidx.lifecycle.DefaultLifecycleObserver: void onCreate(androidx.lifecycle.LifecycleOwner) +androidx.core.R$id: int accessibility_custom_action_8 +com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemIconTintList() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: long EpochSet +cyanogenmod.os.Concierge$ParcelInfo: boolean mCreation +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalBias +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Spinner +com.google.android.material.R$id: int none +androidx.hilt.R$layout: int notification_action_tombstone +android.didikee.donate.R$styleable: int AppCompatTheme_popupWindowStyle +com.google.android.material.R$attr: int mock_showLabel +androidx.viewpager2.R$id: int accessibility_custom_action_8 +io.reactivex.internal.subscribers.StrictSubscriber: long serialVersionUID +android.didikee.donate.R$styleable: int Toolbar_titleMarginBottom +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BOOLEAN +okhttp3.internal.http2.Settings: int getMaxHeaderListSize(int) +wangdaye.com.geometricweather.db.entities.AlertEntity: int color +androidx.constraintlayout.widget.R$styleable: int RecycleListView_paddingBottomNoButtons +cyanogenmod.os.Concierge: int PARCELABLE_VERSION +android.support.v4.app.INotificationSideChannel$Stub$Proxy: void notify(java.lang.String,int,java.lang.String,android.app.Notification) +cyanogenmod.hardware.CMHardwareManager: java.lang.String getLtoDestination() +androidx.appcompat.R$drawable: int abc_ratingbar_indicator_material +android.didikee.donate.R$styleable: int ActionBar_backgroundStacked +com.google.android.material.button.MaterialButton +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_stackFromEnd +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextColor(int) +com.google.android.material.R$attr: int windowFixedWidthMinor +com.google.android.material.R$id: int material_hour_text_input +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItemSmall +wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_multichoice +cyanogenmod.themes.ThemeManager$1$1: ThemeManager$1$1(cyanogenmod.themes.ThemeManager$1,int) +androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat +com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_top_material +okio.Timeout$1: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) +okhttp3.internal.ws.RealWebSocket: long MAX_QUEUE_SIZE +com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context,android.util.AttributeSet) +okhttp3.RequestBody: RequestBody() +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_2 +com.xw.repo.bubbleseekbar.R$attr: int fontFamily +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.internal.fuseable.SimpleQueue queue +com.google.android.material.R$attr: int itemShapeAppearanceOverlay +wangdaye.com.geometricweather.R$attr: int listChoiceIndicatorSingleAnimated +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: boolean IsDayTime +androidx.hilt.work.R$styleable: int[] ColorStateListItem +androidx.constraintlayout.widget.R$styleable: int[] ConstraintLayout_placeholder +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constrainedHeight +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_scaleY +wangdaye.com.geometricweather.R$style: int Theme_Design_NoActionBar +okio.BufferedSource: long readLong() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: AccuDailyResult$DailyForecasts$Day$TotalLiquid() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Body1 +com.google.android.material.timepicker.TimePickerView: void setOnDoubleTapListener(com.google.android.material.timepicker.TimePickerView$OnDoubleTapListener) +com.google.android.material.R$attr: int listPreferredItemHeight +cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri COMPONENTS_URI +androidx.core.R$id: int notification_main_column +androidx.appcompat.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$styleable: int NavigationView_shapeAppearance +com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_top_material +com.google.android.material.R$color: int material_on_surface_emphasis_medium +androidx.preference.R$styleable: int Preference_iconSpaceReserved +androidx.constraintlayout.widget.R$attr: int layout_constraintTop_toTopOf +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid +wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaTitle +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_disabled_material_dark +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: java.lang.Integer depth +cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemDrawable(int) +wangdaye.com.geometricweather.R$drawable: int selectable_item_background +androidx.preference.R$attr: int switchTextAppearance +wangdaye.com.geometricweather.R$id: int switchWidget +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pm10 +com.google.android.material.R$styleable: int MenuItem_android_menuCategory +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Button +androidx.preference.R$dimen: int abc_cascading_menus_min_smallest_width +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver inner +io.reactivex.exceptions.OnErrorNotImplementedException: long serialVersionUID +androidx.appcompat.R$attr: int titleMarginBottom +okhttp3.internal.Util: java.util.List immutableList(java.util.List) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.R$string: int material_timepicker_pm +androidx.dynamicanimation.R$dimen: int notification_top_pad_large_text +james.adaptiveicon.R$attr: int dropDownListViewStyle +com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Text +androidx.work.R$id: int accessibility_custom_action_5 +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: android.os.IBinder mRemote +androidx.preference.R$id: int accessibility_custom_action_0 +okhttp3.Request$Builder: okhttp3.Request$Builder url(okhttp3.HttpUrl) +okhttp3.internal.http2.Http2Connection: java.util.Set currentPushRequests +com.google.android.material.bottomnavigation.BottomNavigationView: void setElevation(float) +com.bumptech.glide.integration.okhttp.R$id: int actions +com.turingtechnologies.materialscrollbar.R$attr: int fontVariationSettings +com.google.android.material.R$attr: int actionOverflowButtonStyle +androidx.preference.R$attr: int order +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: java.lang.String English +androidx.appcompat.R$styleable: int Toolbar_contentInsetRight +com.google.android.material.R$dimen: int design_bottom_navigation_margin +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void slideLockscreenIn() +okhttp3.OkHttpClient$Builder: OkHttpClient$Builder(okhttp3.OkHttpClient) +wangdaye.com.geometricweather.R$color: int cardview_shadow_start_color +io.reactivex.internal.util.ArrayListSupplier: java.lang.Object apply(java.lang.Object) +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_font +androidx.appcompat.R$styleable: int AppCompatTheme_editTextColor +com.google.gson.LongSerializationPolicy$1: com.google.gson.JsonElement serialize(java.lang.Long) +okio.RealBufferedSource: long indexOf(okio.ByteString) +cyanogenmod.providers.DataUsageContract: java.lang.String SLOW_SAMPLES +wangdaye.com.geometricweather.R$id: int design_menu_item_text +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ProgressBar_Horizontal +cyanogenmod.app.ProfileGroup$2 +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Header$Listener headersListener +androidx.dynamicanimation.R$dimen: int notification_action_text_size +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String MODIFY_ALARMS_PERMISSION +androidx.appcompat.resources.R$id: int accessibility_action_clickable_span +androidx.appcompat.R$styleable: int Toolbar_title +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_elevation_material +okio.Okio$1: Okio$1(okio.Timeout,java.io.OutputStream) +androidx.coordinatorlayout.R$id: int accessibility_custom_action_4 +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_menuCategory +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removeAllQueryParameters(java.lang.String) +android.didikee.donate.R$styleable: int ActionBar_popupTheme +androidx.appcompat.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar +org.greenrobot.greendao.AbstractDao: void deleteInTx(java.lang.Object[]) +wangdaye.com.geometricweather.R$attr: int showTitle +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context,android.util.AttributeSet,int) +okhttp3.Cache$2: java.lang.String next() +androidx.preference.R$id: int src_over +android.didikee.donate.R$attr: int listPreferredItemPaddingRight +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: int mMin +androidx.lifecycle.Transformations$3: boolean mFirstTime +com.google.android.material.R$styleable: int GradientColor_android_type +okhttp3.internal.cache.FaultHidingSink: FaultHidingSink(okio.Sink) +james.adaptiveicon.R$color: int secondary_text_default_material_dark +androidx.appcompat.R$id: int message +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: MfHistoryResult$History() +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onNext(java.lang.Object) +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayDetailsWidgetConfigActivity +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance +com.jaredrummler.android.colorpicker.R$attr: int firstBaselineToTopHeight +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: java.lang.String Unit +androidx.appcompat.R$styleable: int ActionMode_height +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_light +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_101 +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.transition.R$id: int ghost_view_holder +com.google.android.material.R$styleable: int KeyTimeCycle_android_alpha +okio.AsyncTimeout: java.io.IOException newTimeoutException(java.io.IOException) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String province +wangdaye.com.geometricweather.R$attr: int growMode +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_SPEED_UNIT +androidx.viewpager.widget.PagerTitleStrip: void setTextColor(int) +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert +wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_allowDividerAfterLastItem +android.didikee.donate.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +com.google.android.material.R$styleable: int Tooltip_android_minHeight +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_minWidth +androidx.vectordrawable.R$id: int accessibility_custom_action_24 +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setContentDescription(java.lang.String) +com.google.android.material.R$styleable: int Constraint_android_layout_marginBottom +com.google.android.material.R$color: int design_dark_default_color_primary_dark +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Country +okhttp3.OkHttpClient: boolean retryOnConnectionFailure() +wangdaye.com.geometricweather.R$styleable: int[] PropertySet +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog_Alert +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy APPEND +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onNext(java.lang.Object) +cyanogenmod.themes.ThemeChangeRequest: cyanogenmod.themes.ThemeChangeRequest$RequestType mRequestType +james.adaptiveicon.R$styleable: int MenuGroup_android_checkableBehavior +wangdaye.com.geometricweather.R$bool: R$bool() +okhttp3.internal.cache.DiskLruCache: void processJournal() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ImageButton +com.google.android.material.R$attr: int listPreferredItemPaddingStart +com.google.android.material.R$id: int row_index_key +cyanogenmod.content.Intent: java.lang.String URI_SCHEME_PACKAGE +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: io.reactivex.Observer downstream +androidx.lifecycle.LiveData$1: void run() +wangdaye.com.geometricweather.R$attr: int motion_postLayoutCollision +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_android_elevation +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_navigationContentDescription +cyanogenmod.app.Profile: void setStatusBarIndicator(boolean) +androidx.fragment.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.R$styleable: int DrawerArrowToggle_color +com.google.android.material.R$styleable: int MaterialCalendar_dayInvalidStyle +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_height +androidx.loader.R$attr +cyanogenmod.weather.WeatherLocation: java.lang.String mCity +com.jaredrummler.android.colorpicker.R$attr: int actionBarTabTextStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorAccent +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: int UnitType +androidx.constraintlayout.widget.R$integer: R$integer() +james.adaptiveicon.R$styleable: int FontFamilyFont_android_font +androidx.appcompat.resources.R$style: R$style() +wangdaye.com.geometricweather.R$attr: int maxWidth +com.google.android.material.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding +androidx.dynamicanimation.R$layout +cyanogenmod.weather.WeatherLocation$1: java.lang.Object[] newArray(int) +com.google.android.material.textfield.TextInputLayout: void setHintTextAppearance(int) +androidx.appcompat.R$id: int accessibility_custom_action_27 +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_11 +com.google.android.material.chip.Chip: void setBackgroundTintList(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$attr: int checkedTextViewStyle +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button +cyanogenmod.externalviews.IExternalViewProvider$Stub: IExternalViewProvider$Stub() +wangdaye.com.geometricweather.R$id: int month_title +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void createCustomTileWithTag(java.lang.String,java.lang.String,java.lang.String,int,cyanogenmod.app.CustomTile,int[],int) +okhttp3.WebSocket: okhttp3.Request request() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitationProbability(java.lang.Float) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: CaiYunMainlyResult$IndicesBeanX$IndicesBean() +com.google.android.material.R$color: int mtrl_filled_icon_tint +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMargin +com.google.android.material.R$styleable: int Variant_region_heightLessThan +wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_grey +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_updateNotificationGroup +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_is_float_type +james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void dispose() +androidx.constraintlayout.widget.R$id: int action_mode_bar +androidx.preference.R$drawable: int abc_textfield_default_mtrl_alpha +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_id +com.google.android.material.button.MaterialButton: void setIconPadding(int) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +com.turingtechnologies.materialscrollbar.R$integer: R$integer() +androidx.preference.R$layout: int abc_popup_menu_item_layout +wangdaye.com.geometricweather.R$id: int snackbar_text +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void onDetachedFromWindow() +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setAlpnProtocols +com.xw.repo.bubbleseekbar.R$attr: int trackTint +com.google.android.material.R$attr: int actionModeStyle +wangdaye.com.geometricweather.R$id: int search_bar +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarStyle +wangdaye.com.geometricweather.R$id: int test_checkbox_android_button_tint +okio.Buffer$1: Buffer$1(okio.Buffer) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$string: int tomorrow +com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior: AppBarLayout$ScrollingViewBehavior() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: CaiYunForecastResult() +com.google.android.material.R$styleable: int SwitchMaterial_useMaterialThemeColors +wangdaye.com.geometricweather.common.ui.widgets.TagView +androidx.preference.R$id: int parentPanel +cyanogenmod.app.IPartnerInterface: boolean setZenModeWithDuration(int,long) +androidx.appcompat.R$drawable: int abc_ratingbar_small_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture +wangdaye.com.geometricweather.R$drawable: int material_ic_clear_black_24dp +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarStyle +retrofit2.ParameterHandler$Headers: ParameterHandler$Headers(java.lang.reflect.Method,int) +androidx.appcompat.R$styleable: int Toolbar_titleMarginStart +androidx.preference.R$styleable: int ActionMode_height +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: int index +com.xw.repo.bubbleseekbar.R$attr: int actionBarStyle +wangdaye.com.geometricweather.R$id: int dragLeft +androidx.appcompat.widget.Toolbar: int getContentInsetEndWithActions() +com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_view +wangdaye.com.geometricweather.R$id: int sort_button +androidx.appcompat.app.ActionBar +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 +org.greenrobot.greendao.AbstractDao: java.util.List queryRaw(java.lang.String,java.lang.String[]) +android.didikee.donate.R$id: int line1 +okhttp3.internal.http2.Http2Connection: void pushExecutorExecute(okhttp3.internal.NamedRunnable) +wangdaye.com.geometricweather.R$attr: int layout_goneMarginBottom +androidx.preference.R$style: int TextAppearance_AppCompat_Inverse +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onError(java.lang.Throwable) +cyanogenmod.profiles.StreamSettings$1: StreamSettings$1() +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: FlowableCreate$SerializedEmitter(io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter) +androidx.drawerlayout.R$drawable: int notification_template_icon_bg +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_label_cutout_padding +james.adaptiveicon.R$style: int Widget_AppCompat_PopupWindow +james.adaptiveicon.R$dimen: int abc_text_size_medium_material +wangdaye.com.geometricweather.R$drawable: int indicator +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isFlowable +androidx.appcompat.widget.ActivityChooserView: void setExpandActivityOverflowButtonDrawable(android.graphics.drawable.Drawable) +androidx.preference.R$styleable: int SearchView_goIcon +io.reactivex.Observable: io.reactivex.Observable takeLast(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX getBrandInfo() +com.google.android.material.R$styleable: int MockView_mock_diagonalsColor +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$drawable: int notif_temp_81 +android.didikee.donate.R$styleable: int[] AppCompatTheme +wangdaye.com.geometricweather.db.entities.DailyEntity: void setPm10(java.lang.Float) +androidx.lifecycle.MediatorLiveData$Source: void unplug() +androidx.appcompat.widget.AppCompatImageView: void setSupportImageTintList(android.content.res.ColorStateList) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +com.google.android.material.R$style: int Widget_MaterialComponents_Tooltip +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onTimeoutError(long,java.lang.Throwable) +androidx.lifecycle.ComputableLiveData$3: androidx.lifecycle.ComputableLiveData this$0 +io.reactivex.exceptions.CompositeException: CompositeException(java.lang.Iterable) +com.jaredrummler.android.colorpicker.ColorPickerView: java.lang.String getAlphaSliderText() +cyanogenmod.app.ProfileGroup$Mode: ProfileGroup$Mode(java.lang.String,int) +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerComplete() +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +androidx.preference.R$attr: int actionModeStyle +wangdaye.com.geometricweather.R$attr: int msb_barThickness +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_toRightOf +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_constantSize +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Caption androidx.preference.R$styleable: int MenuView_subMenuArrow -androidx.constraintlayout.widget.R$styleable: int Constraint_android_scaleX -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitation() -okio.Buffer: void clear() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windSpeedStart -com.bumptech.glide.R$styleable: R$styleable() -androidx.constraintlayout.widget.R$style: int Platform_V21_AppCompat -io.reactivex.internal.observers.ForEachWhileObserver: void onComplete() -james.adaptiveicon.R$id: int action_divider -com.google.android.material.R$color: int primary_material_light -cyanogenmod.app.ILiveLockScreenManagerProvider: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -wangdaye.com.geometricweather.R$id: int spline -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setLogo(java.lang.String) -okhttp3.HttpUrl: java.lang.String encodedPassword() -com.google.android.material.R$style: int Theme_AppCompat_Empty -wangdaye.com.geometricweather.R$dimen: int material_emphasis_high_type -androidx.preference.R$styleable: int PreferenceFragment_allowDividerAfterLastItem -com.turingtechnologies.materialscrollbar.R$color: int primary_text_default_material_dark -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_DropDownItem_Spinner -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlHighlight -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Date -wangdaye.com.geometricweather.R$attr: int fontProviderFetchStrategy -okhttp3.internal.ws.RealWebSocket$1 -com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog -androidx.appcompat.R$dimen: int highlight_alpha_material_light -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowColor -androidx.appcompat.R$attr: int icon -wangdaye.com.geometricweather.R$id: int jumpToStart -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenVoice(android.content.Context,int) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveOffset -com.google.android.material.bottomnavigation.BottomNavigationView: android.view.Menu getMenu() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_homeAsUpIndicator -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setPivotY(float) -androidx.hilt.R$dimen: int notification_large_icon_width -android.didikee.donate.R$styleable: int SwitchCompat_thumbTintMode -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorBackgroundFloating -wangdaye.com.geometricweather.R$styleable: int[] MaterialTextView -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: double Value -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_3 -com.jaredrummler.android.colorpicker.R$styleable: int[] ListPopupWindow -androidx.appcompat.R$dimen: int tooltip_precise_anchor_extra_offset -com.jaredrummler.android.colorpicker.R$id: int left -androidx.dynamicanimation.R$color: R$color() -androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -androidx.hilt.work.R$id: int accessibility_custom_action_26 -androidx.appcompat.R$dimen: int tooltip_corner_radius -com.google.android.material.R$attr: int thumbColor -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_stacked_tab_max_width -wangdaye.com.geometricweather.R$color: int abc_secondary_text_material_light -androidx.viewpager2.R$id: int accessibility_custom_action_19 -com.google.android.material.R$styleable: int ThemeEnforcement_android_textAppearance -androidx.hilt.work.R$id: int accessibility_custom_action_20 -androidx.vectordrawable.animated.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours -com.jaredrummler.android.colorpicker.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: java.util.List DailyForecasts -com.google.android.material.R$styleable: int MotionHelper_onShow -james.adaptiveicon.R$layout: int abc_alert_dialog_material -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostStarted(android.app.Activity) -androidx.preference.R$attr: int paddingStart -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircleRadius -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum -com.xw.repo.bubbleseekbar.R$attr: int state_above_anchor -cyanogenmod.weather.WeatherInfo: double access$702(cyanogenmod.weather.WeatherInfo,double) -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTintMode +wangdaye.com.geometricweather.R$string: int content_des_swipe_left_to_delete +androidx.hilt.lifecycle.R$layout: int custom_dialog +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: int sourceColor +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LIVE_LOCK_SCREEN +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_show_motion_spec +wangdaye.com.geometricweather.R$id: int activity_widget_config_top +james.adaptiveicon.R$attr: int alertDialogCenterButtons +com.google.android.material.R$styleable: int KeyPosition_percentX +android.didikee.donate.R$attr: int dividerVertical +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationY +androidx.appcompat.R$id: int tag_accessibility_clickable_spans +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$id: int aligned +io.reactivex.internal.queue.SpscArrayQueue: long serialVersionUID +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void request(long) +retrofit2.HttpServiceMethod$SuspendForBody: retrofit2.CallAdapter callAdapter +wangdaye.com.geometricweather.db.entities.AlertEntity: long time +com.google.android.material.R$attr: int helperText +cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_SHOW_BRIGHTNESS_SLIDER +com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomAppBar +okhttp3.internal.http.HttpHeaders: int skipAll(okio.Buffer,byte) +wangdaye.com.geometricweather.R$styleable: int[] ColorPreference +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getLatitude() +wangdaye.com.geometricweather.R$id: int material_minute_tv +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Colored +cyanogenmod.providers.CMSettings$Secure: java.lang.String WEATHER_PROVIDER_SERVICE +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder createExternalView(android.os.Bundle) +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_text_size +com.google.android.material.textfield.TextInputLayout: void setEndIconTintMode(android.graphics.PorterDuff$Mode) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.util.AtomicThrowable errors +androidx.coordinatorlayout.R$layout: int notification_action +com.google.android.material.R$string: int mtrl_chip_close_icon_content_description +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +okhttp3.RequestBody$3: void writeTo(okio.BufferedSink) +james.adaptiveicon.R$style: int AlertDialog_AppCompat +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_summaryOff +okio.HashingSink: okio.HashingSink sha256(okio.Sink) +androidx.constraintlayout.widget.R$drawable: int abc_list_divider_mtrl_alpha +androidx.constraintlayout.widget.R$style: int Base_AlertDialog_AppCompat +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List maxCountItems +com.google.android.material.R$attr: int flow_verticalAlign +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dividerVertical +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_imageButtonStyle +wangdaye.com.geometricweather.R$styleable: int MotionHelper_onShow +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: int prefetch +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.String TABLENAME +androidx.dynamicanimation.R$styleable: int[] FontFamily +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$layout: int activity_preview_icon +com.xw.repo.bubbleseekbar.R$string: int abc_menu_space_shortcut_label +com.bumptech.glide.load.engine.GlideException: java.lang.Throwable fillInStackTrace() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_stacked_tab_max_width +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial Imperial +com.xw.repo.bubbleseekbar.R$attr: int progressBarStyle +okio.GzipSink: java.util.zip.Deflater deflater +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Light +james.adaptiveicon.R$drawable: int abc_btn_colored_material +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onError(java.lang.Throwable) +com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BACK_WAKE_SCREEN_VALIDATOR +androidx.vectordrawable.animated.R$drawable: R$drawable() +com.google.android.material.R$attr: int popupMenuBackground +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: ChineseCityEntityDao(org.greenrobot.greendao.internal.DaoConfig) +com.google.android.material.R$attr: int actionModeSelectAllDrawable +cyanogenmod.app.ThemeVersion: java.lang.String THEME_VERSION_CLASS_NAME +androidx.preference.R$attr: int checkboxStyle +wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_android_entries +wangdaye.com.geometricweather.R$id: int item_icon_provider_previewButton +com.google.android.material.R$styleable: int Layout_maxWidth +androidx.customview.R$style: int Widget_Compat_NotificationActionContainer +com.google.android.material.R$styleable: int[] Slider +androidx.preference.CheckBoxPreference: CheckBoxPreference(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderText +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleContentDescription(java.lang.CharSequence) +android.didikee.donate.R$styleable: int AppCompatTextView_fontVariationSettings +androidx.viewpager.R$styleable: int FontFamily_fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$id: int selected +wangdaye.com.geometricweather.R$dimen: int compat_notification_large_icon_max_height +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderQuery +androidx.hilt.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String unit +wangdaye.com.geometricweather.R$anim: int popup_hide +androidx.constraintlayout.widget.R$string: R$string() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int Minute +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_textAppearance +okhttp3.ResponseBody$1: okhttp3.MediaType contentType() +okhttp3.internal.cache.DiskLruCache$Snapshot: okio.Source getSource(int) +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: cyanogenmod.externalviews.IKeyguardExternalViewProvider asInterface(android.os.IBinder) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.Map lefts +okhttp3.internal.http2.Http2Connection$PingRunnable: okhttp3.internal.http2.Http2Connection this$0 +wangdaye.com.geometricweather.R$drawable: int abc_cab_background_top_material +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.ILiveLockScreenManager sService +com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalBias +com.google.android.material.circularreveal.cardview.CircularRevealCardView: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +androidx.loader.R$dimen: int notification_action_text_size +com.google.android.material.R$styleable: int AppCompatTheme_colorPrimary +wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_toRightOf +com.jaredrummler.android.colorpicker.ColorPanelView +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: long serialVersionUID +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.constraintlayout.widget.R$styleable: int[] MenuItem +wangdaye.com.geometricweather.R$string: int phase_first +androidx.appcompat.R$styleable: int TextAppearance_android_textSize +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastHorizontalBias +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription(org.reactivestreams.Subscriber,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitationProbability(java.lang.Float) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_switch_padding +com.jaredrummler.android.colorpicker.R$attr: int fastScrollEnabled +okhttp3.internal.ws.RealWebSocket: int receivedPongCount() +wangdaye.com.geometricweather.R$drawable: int notif_temp_46 +com.google.android.material.timepicker.ChipTextInputComboView +com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.functions.Functions$HashSetCallable: java.util.Set call() +androidx.preference.TwoStatePreference$SavedState +com.google.android.material.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +androidx.preference.PreferenceManager: void setOnNavigateToScreenListener(androidx.preference.PreferenceManager$OnNavigateToScreenListener) +wangdaye.com.geometricweather.R$styleable: int[] CustomAttribute +androidx.appcompat.widget.SearchView: void setQueryRefinementEnabled(boolean) +cyanogenmod.profiles.StreamSettings: int getValue() +androidx.lifecycle.SavedStateViewModelFactory: android.app.Application mApplication +androidx.preference.R$color: int dim_foreground_material_light +com.xw.repo.bubbleseekbar.R$styleable: int[] PopupWindowBackgroundState +wangdaye.com.geometricweather.R$attr: int currentPageIndicatorColor +android.didikee.donate.R$styleable: int AlertDialog_listItemLayout +retrofit2.ParameterHandler$Headers +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_menu +androidx.activity.R$styleable: int[] FontFamily +okhttp3.internal.http2.Http2Connection: long unacknowledgedBytesRead +wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_MIDDLE +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Date +com.google.android.material.R$layout: int design_layout_snackbar_include +androidx.viewpager.R$id: int notification_background +android.didikee.donate.R$drawable: int abc_text_select_handle_left_mtrl_dark +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarPopupTheme +androidx.core.R$drawable: int notification_icon_background +androidx.transition.R$styleable: int FontFamilyFont_ttcIndex +androidx.transition.R$id: int transition_transform +com.turingtechnologies.materialscrollbar.DateAndTimeIndicator +wangdaye.com.geometricweather.R$string: int dew_point +com.google.android.material.R$drawable: int abc_list_selector_disabled_holo_dark +com.google.android.material.R$styleable: int Badge_maxCharacterCount +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getThunderstorm() +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_elevation +android.didikee.donate.R$color: int background_material_light +james.adaptiveicon.R$drawable: int abc_scrubber_primary_mtrl_alpha +com.google.android.material.R$dimen: int material_emphasis_medium +okhttp3.WebSocketListener: WebSocketListener() +com.google.android.material.R$layout: int test_design_checkbox +cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings() +wangdaye.com.geometricweather.R$color: int design_snackbar_background_color +wangdaye.com.geometricweather.R$attr: int hintTextColor +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getBackgroundColorEnd() +com.jaredrummler.android.colorpicker.R$id: int text2 +com.xw.repo.bubbleseekbar.R$attr: int actionModeCloseDrawable +com.google.android.material.R$styleable: int ProgressIndicator_indicatorCornerRadius +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver otherObserver +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_collapsedSize +okhttp3.internal.Internal: okhttp3.internal.connection.RealConnection get(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_translation_z_pressed +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitation +cyanogenmod.providers.CMSettings$Secure: java.lang.String BUTTON_BRIGHTNESS +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean +com.xw.repo.bubbleseekbar.R$drawable: int notification_action_background +org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Iterable,boolean) +com.google.android.material.R$attr: int iconTintMode +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.appcompat.R$attr: int fontProviderFetchStrategy +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_1 +androidx.viewpager.widget.PagerTabStrip: int getTabIndicatorColor() +okhttp3.internal.platform.Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRealFeelShaderTemperature +androidx.preference.R$drawable: int abc_ic_go_search_api_material +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWindDirection() +wangdaye.com.geometricweather.R$string: int bottom_sheet_behavior +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_ActionBar +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.disposables.Disposable upstream +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver parent +com.google.android.material.R$dimen: int abc_text_size_subhead_material +com.turingtechnologies.materialscrollbar.R$attr: int autoSizeTextType +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long count +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: java.lang.Object clone() +wangdaye.com.geometricweather.R$layout: int test_toolbar +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours Past12Hours +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub +com.google.android.material.card.MaterialCardView: int getStrokeColor() +com.jaredrummler.android.colorpicker.R$attr: int fastScrollHorizontalTrackDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility +com.google.android.material.R$string: int mtrl_picker_a11y_prev_month +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_33 +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_android_indeterminate +cyanogenmod.themes.IThemeChangeListener$Stub: IThemeChangeListener$Stub() +androidx.appcompat.R$drawable: int abc_textfield_activated_mtrl_alpha +com.google.android.material.R$attr: int flow_firstHorizontalBias +androidx.preference.R$styleable: int AppCompatTextView_textAllCaps +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_disableDependentsState +com.google.android.material.R$attr: int layout_constraintCircleRadius +androidx.hilt.work.R$drawable: int notification_template_icon_low_bg +androidx.viewpager2.R$id: int accessibility_custom_action_22 +androidx.work.R$id: int accessibility_custom_action_30 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_tooltipFrameBackground +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void subscribeActual() +com.bumptech.glide.R$color: int notification_icon_bg_color +androidx.preference.R$styleable: int[] ColorStateListItem +com.google.android.material.R$dimen: int mtrl_calendar_days_of_week_height +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_Solid +com.google.android.material.R$id: int decor_content_parent +android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_range_start_hint +com.google.gson.stream.JsonScope +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: double Value +retrofit2.OptionalConverterFactory$OptionalConverter: java.util.Optional convert(okhttp3.ResponseBody) +androidx.preference.R$styleable: int SearchView_android_inputType +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: int unitArrayIndex +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceTheme +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_scaleY +android.didikee.donate.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +james.adaptiveicon.R$dimen: int abc_switch_padding +androidx.preference.R$styleable: int PreferenceTheme_preferenceCategoryStyle +com.google.android.material.R$styleable: int Constraint_flow_lastVerticalBias +androidx.activity.R$id: int line1 +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.Integer alti +com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_android_background +androidx.constraintlayout.widget.R$id: int dragEnd +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCloseDrawable +androidx.appcompat.resources.R$dimen +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_spinBars +org.greenrobot.greendao.AbstractDao: java.lang.Object loadByRowId(long) +androidx.customview.R$id: int forever +androidx.core.R$dimen: int notification_right_icon_size +androidx.legacy.coreutils.R$layout: int notification_template_part_time +okhttp3.OkHttpClient: okhttp3.Dns dns() +androidx.preference.R$attr: int activityChooserViewStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_DialogWhenLarge +androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog +com.google.android.material.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +androidx.constraintlayout.widget.ConstraintHelper: void setIds(java.lang.String) +com.google.android.material.button.MaterialButton: int getInsetTop() +cyanogenmod.app.IPartnerInterface$Stub$Proxy: boolean setZenMode(int) +okhttp3.EventListener$2 +com.google.android.material.chip.Chip: void setBackgroundDrawable(android.graphics.drawable.Drawable) +android.didikee.donate.R$styleable: int AppCompatTheme_colorControlActivated +com.google.android.material.R$styleable: int TabLayout_tabBackground +com.google.android.material.R$string: int icon_content_description +androidx.preference.R$layout: int preference_recyclerview +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: AndroidPlatform$AndroidCertificateChainCleaner(java.lang.Object,java.lang.reflect.Method) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String wind_direct +com.bumptech.glide.R$id: int title +okhttp3.CacheControl$Builder: int maxAgeSeconds +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void dispose() +androidx.appcompat.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_disabled_holo_dark +wangdaye.com.geometricweather.R$styleable: int ActivityChooserView_initialActivityCount +okhttp3.MultipartBody$Builder: java.util.List parts +cyanogenmod.app.ICMTelephonyManager$Stub: android.os.IBinder asBinder() +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog +com.jaredrummler.android.colorpicker.R$styleable: int RecycleListView_paddingTopNoTitle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_tooltipForegroundColor +io.reactivex.Observable: io.reactivex.Observable never() +okhttp3.HttpUrl$Builder: java.lang.String encodedUsername +androidx.constraintlayout.widget.R$attr: int textAppearanceListItem +com.google.android.material.internal.ScrimInsetsFrameLayout: void setDrawBottomInsetForeground(boolean) +com.google.android.material.R$styleable: int Constraint_flow_horizontalBias +cyanogenmod.weather.CMWeatherManager$RequestStatus: int ALREADY_IN_PROGRESS +okio.Buffer: int read(byte[]) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.ObservableSource bufferOpen +wangdaye.com.geometricweather.R$string: int ellipsis +androidx.hilt.work.R$style: R$style() +com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_Dialog +android.didikee.donate.R$style: int Widget_AppCompat_Spinner_DropDown +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCityId(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_maxWidth +james.adaptiveicon.R$dimen: int tooltip_margin +androidx.work.R$id: int accessibility_custom_action_10 +cyanogenmod.weather.WeatherLocation: java.lang.String mCityId +okhttp3.internal.cache.DiskLruCache: java.lang.String DIRTY +wangdaye.com.geometricweather.R$string: int wind_0 +okio.Okio$2: void close() +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.gson.stream.JsonReader: int peeked +com.turingtechnologies.materialscrollbar.TouchScrollBar: int getMode() +android.didikee.donate.R$id: int action_menu_presenter +wangdaye.com.geometricweather.R$attr: int fabCradleRoundedCornerRadius +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String notice +com.turingtechnologies.materialscrollbar.R$attr: int iconTint +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitationProbability() +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: int getPosition() +com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_material_light +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getDegreeDayTemperature() +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void schedule() +com.bumptech.glide.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconCheckable wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarButtonStyle -wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_vertical_setting -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogMessage -okhttp3.EventListener: void dnsEnd(okhttp3.Call,java.lang.String,java.util.List) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xms -com.google.android.material.R$styleable: int[] RecyclerView -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitation -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_font -io.reactivex.Observable: io.reactivex.Observable throttleWithTimeout(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: AccuDailyResult$DailyForecasts$Day$Wind() -androidx.appcompat.view.menu.MenuPopup -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float total -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$attr: R$attr() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextBackground -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Primary -wangdaye.com.geometricweather.R$color: int design_default_color_on_secondary -com.bumptech.glide.load.engine.GlideException: com.bumptech.glide.load.Key key -okhttp3.internal.connection.RouteException: void addConnectException(java.io.IOException) -android.didikee.donate.R$attr: int buttonStyle -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabView -android.didikee.donate.R$color: int abc_tint_spinner -wangdaye.com.geometricweather.R$color: int primary_text_default_material_dark -androidx.constraintlayout.widget.R$id: int action_bar_activity_content -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -okhttp3.HttpUrl: java.lang.String fragment() -com.jaredrummler.android.colorpicker.R$attr: int buttonTint -androidx.transition.R$styleable: int GradientColor_android_centerColor -com.xw.repo.bubbleseekbar.R$attr: int actionModeFindDrawable -androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -cyanogenmod.providers.CMSettings$Global: int getInt(android.content.ContentResolver,java.lang.String,int) -cyanogenmod.profiles.StreamSettings: StreamSettings(android.os.Parcel) -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: boolean delayError -wangdaye.com.geometricweather.R$attr: int colorOnBackground -wangdaye.com.geometricweather.R$drawable: int abc_list_pressed_holo_dark -com.jaredrummler.android.colorpicker.R$attr: int cpv_dialogTitle -androidx.constraintlayout.widget.R$attr: int waveShape -retrofit2.BuiltInConverters -james.adaptiveicon.R$drawable: int notification_template_icon_bg -com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalGap -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property HourlyForecast -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: io.reactivex.Observer child -com.google.gson.FieldNamingPolicy: java.lang.String separateCamelCase(java.lang.String,java.lang.String) -androidx.coordinatorlayout.R$id: int text2 -androidx.preference.R$styleable: int PreferenceTheme_switchPreferenceStyle -com.jaredrummler.android.colorpicker.R$id: int expanded_menu -com.google.android.material.appbar.MaterialToolbar: void setNavigationIconColor(int) -okhttp3.RealCall: okhttp3.RealCall newRealCall(okhttp3.OkHttpClient,okhttp3.Request,boolean) -cyanogenmod.app.IProfileManager: android.app.NotificationGroup[] getNotificationGroups() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constrainedWidth -android.didikee.donate.R$drawable: int abc_textfield_activated_mtrl_alpha -com.google.android.material.datepicker.MaterialTextInputPicker -com.google.android.material.R$attr: int onHide -com.google.android.material.R$color: int bright_foreground_disabled_material_dark -com.google.android.material.R$drawable: int abc_textfield_search_default_mtrl_alpha -com.google.android.material.R$styleable: int KeyPosition_keyPositionType -androidx.recyclerview.widget.RecyclerView: void setHasFixedSize(boolean) -com.xw.repo.bubbleseekbar.R$color: int abc_tint_default -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: MfForecastResult$ProbabilityForecast$ProbabilityRain() -android.didikee.donate.R$styleable: int MenuView_android_windowAnimationStyle -wangdaye.com.geometricweather.R$color: int mtrl_tabs_icon_color_selector_colored -wangdaye.com.geometricweather.R$attr: int gapBetweenBars -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -android.didikee.donate.R$styleable: int[] MenuItem -androidx.appcompat.R$style: int Base_Widget_AppCompat_Toolbar -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelMenuListTheme -okhttp3.ConnectionSpec$Builder: java.lang.String[] cipherSuites -cyanogenmod.externalviews.KeyguardExternalView$9: void run() -retrofit2.BuiltInConverters$VoidResponseBodyConverter: retrofit2.BuiltInConverters$VoidResponseBodyConverter INSTANCE -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -cyanogenmod.app.Profile$NotificationLightMode: int ENABLE -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarWidgetTheme -wangdaye.com.geometricweather.R$drawable: int notif_temp_21 -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.lang.Object x509TrustManagerExtensions -com.google.android.material.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf +androidx.fragment.R$id: int right_icon +retrofit2.Utils: java.lang.RuntimeException parameterError(java.lang.reflect.Method,java.lang.Throwable,int,java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: float getDegree() +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String value +com.google.android.material.R$attr: int motionProgress +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_viewInflaterClass +com.google.gson.internal.LinkedTreeMap: int modCount +androidx.viewpager2.R$dimen: int notification_top_pad +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder query(java.lang.String) +com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getTextSize() +androidx.appcompat.widget.ActionBarContainer: void setSplitBackground(android.graphics.drawable.Drawable) +okhttp3.internal.ws.RealWebSocket$Close: long cancelAfterCloseMillis +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_track +androidx.work.R$dimen: int compat_button_inset_horizontal_material +okhttp3.RequestBody$1: okio.ByteString val$content +com.google.android.material.textfield.TextInputLayout$SavedState: android.os.Parcelable$Creator CREATOR +androidx.appcompat.resources.R$attr: int fontProviderAuthority +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Bridge +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: java.lang.String Unit +com.turingtechnologies.materialscrollbar.R$attr: int errorTextAppearance +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +okhttp3.internal.http2.Http2Writer: boolean closed +androidx.vectordrawable.animated.R$dimen: int notification_large_icon_width +androidx.lifecycle.SingleGeneratedAdapterObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +androidx.preference.R$attr: int titleMarginBottom +com.jaredrummler.android.colorpicker.R$styleable: int View_android_theme +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_visible +wangdaye.com.geometricweather.R$attr: int bsb_rtl +androidx.lifecycle.ComputableLiveData$2: ComputableLiveData$2(androidx.lifecycle.ComputableLiveData) +com.google.android.material.R$attr: int layout_constrainedWidth +com.google.android.material.R$styleable: int[] ScrimInsetsFrameLayout +wangdaye.com.geometricweather.R$attr: int flow_verticalAlign +com.google.android.material.R$string: int abc_activitychooserview_choose_application +wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardTitle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA +okhttp3.internal.platform.Android10Platform: void enableSessionTickets(javax.net.ssl.SSLSocket) +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: io.reactivex.internal.disposables.SequentialDisposable serial +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_text_color +com.turingtechnologies.materialscrollbar.R$attr: int maxActionInlineWidth +androidx.appcompat.widget.LinearLayoutCompat: void setBaselineAligned(boolean) +com.google.android.material.bottomnavigation.BottomNavigationItemView: com.google.android.material.badge.BadgeDrawable getBadge() +androidx.preference.R$layout: int preference_dropdown +androidx.appcompat.R$string: int abc_menu_meta_shortcut_label +androidx.appcompat.resources.R$dimen: int compat_button_inset_horizontal_material +com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrimResource(int) +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetEnd +com.google.android.material.R$color: int secondary_text_default_material_dark +com.google.android.material.R$layout: int mtrl_alert_dialog +wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotationX +cyanogenmod.app.CustomTile: CustomTile() +james.adaptiveicon.R$id: int text +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getAbbreviation(android.content.Context) +androidx.appcompat.R$attr: int actionModeCloseButtonStyle +retrofit2.http.PartMap: java.lang.String encoding() +androidx.preference.R$styleable: int TextAppearance_android_shadowRadius +com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableTransition +androidx.vectordrawable.animated.R$id: int right_icon +wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_end +wangdaye.com.geometricweather.R$attr: int motion_triggerOnCollision +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COL_KEY +androidx.preference.R$styleable: int AppCompatTheme_editTextStyle +com.google.android.material.R$styleable: int BottomAppBar_fabAnimationMode +androidx.preference.R$styleable: int AppCompatTextView_drawableStartCompat +androidx.constraintlayout.widget.R$anim: int abc_slide_in_top +androidx.preference.R$attr: int dividerHorizontal +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle +androidx.appcompat.R$styleable: int MenuItem_alphabeticModifiers +androidx.recyclerview.R$id: int action_image +okhttp3.internal.http.HttpDate$1: java.text.DateFormat initialValue() +com.google.android.material.R$styleable: int ActionBar_height +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_TARGETS +com.turingtechnologies.materialscrollbar.R$id: int transition_current_scene +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_rippleColor +retrofit2.adapter.rxjava2.RxJava2CallAdapter +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer speed +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +com.jaredrummler.android.colorpicker.R$attr: int searchViewStyle wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvDescription -wangdaye.com.geometricweather.R$attr: int tickMarkTintMode -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.preference.R$styleable: int AppCompatTheme_windowFixedHeightMajor -cyanogenmod.app.StatusBarPanelCustomTile$1: cyanogenmod.app.StatusBarPanelCustomTile[] newArray(int) -io.reactivex.internal.schedulers.ScheduledRunnable: ScheduledRunnable(java.lang.Runnable,io.reactivex.internal.disposables.DisposableContainer) -okhttp3.internal.http2.Http2Connection: long access$200(okhttp3.internal.http2.Http2Connection) +okhttp3.internal.Util: void closeQuietly(java.io.Closeable) +com.google.android.material.R$id: int accessibility_custom_action_3 +androidx.constraintlayout.widget.R$attr: int tooltipForegroundColor +com.jaredrummler.android.colorpicker.R$attr: int trackTintMode +james.adaptiveicon.R$styleable: int ActivityChooserView_initialActivityCount +com.google.android.material.R$dimen: int notification_top_pad +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: boolean won +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Colored +com.turingtechnologies.materialscrollbar.R$string: int path_password_strike_through +com.google.android.material.R$style: int TextAppearance_AppCompat_Caption +com.google.android.material.chip.Chip: void setTextAppearanceResource(int) +com.bumptech.glide.Registry$NoSourceEncoderAvailableException: Registry$NoSourceEncoderAvailableException(java.lang.Class) +wangdaye.com.geometricweather.background.polling.basic.UpdateService: UpdateService() +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircleAngle +james.adaptiveicon.R$string: int abc_capital_on +com.turingtechnologies.materialscrollbar.TouchScrollBar: boolean getHide() +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorGravity +james.adaptiveicon.R$color: int material_grey_300 +androidx.preference.R$styleable: int SearchView_android_focusable +io.reactivex.internal.util.NotificationLite: boolean accept(java.lang.Object,org.reactivestreams.Subscriber) +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2$1 +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_2G3G +wangdaye.com.geometricweather.R$drawable: int btn_radio_off_to_on_mtrl_animation +wangdaye.com.geometricweather.R$layout: int support_simple_spinner_dropdown_item +cyanogenmod.themes.ThemeManager$1: void onFinish(boolean) +com.jaredrummler.android.colorpicker.R$attr: int titleMarginBottom +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTheme +android.didikee.donate.R$styleable: int AppCompatTheme_actionMenuTextColor +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1 +androidx.constraintlayout.widget.R$attr: int tickMark +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceVoice(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange +androidx.appcompat.R$attr: int textColorSearchUrl +com.google.android.material.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.google.android.material.R$styleable: int Chip_closeIconEnabled +androidx.viewpager.R$id: int tag_unhandled_key_listeners +james.adaptiveicon.R$styleable: int AppCompatTheme_windowMinWidthMinor +cyanogenmod.app.CustomTile$ExpandedItem$1: java.lang.Object[] newArray(int) +james.adaptiveicon.R$dimen: int abc_dialog_fixed_height_minor +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getNo2() +okhttp3.internal.http.RequestLine: java.lang.String requestPath(okhttp3.HttpUrl) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_snackbar_margin_horizontal +android.didikee.donate.R$dimen: int abc_text_size_display_3_material +james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +androidx.preference.R$attr: int fontProviderCerts +james.adaptiveicon.R$styleable: int Toolbar_titleMarginTop +androidx.work.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$attr: int customBoolean +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableBottom +androidx.appcompat.R$styleable: int ActionBar_contentInsetEnd +com.bumptech.glide.integration.okhttp.R$color: int notification_action_color_filter +cyanogenmod.app.suggest.IAppSuggestManager: java.util.List getSuggestions(android.content.Intent) +androidx.loader.R$dimen: int compat_button_inset_horizontal_material +android.didikee.donate.R$attr: int navigationMode +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec COMPATIBLE_TLS +androidx.work.BackoffPolicy: androidx.work.BackoffPolicy[] values() +android.didikee.donate.R$style: int Base_Animation_AppCompat_Dialog +wangdaye.com.geometricweather.R$styleable: int Motion_transitionEasing +android.didikee.donate.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean address_detail +androidx.appcompat.R$dimen: int abc_disabled_alpha_material_dark +wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text_size +wangdaye.com.geometricweather.R$styleable: int ActionBar_logo +wangdaye.com.geometricweather.R$drawable: int flag_tr +wangdaye.com.geometricweather.R$drawable: int ic_navigation +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit MI +cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6 +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.DailyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_DailyEntityListQuery +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorColor +cyanogenmod.platform.R$drawable +androidx.customview.R$attr: R$attr() +androidx.appcompat.R$attr: int listDividerAlertDialog +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat +com.google.android.material.circularreveal.CircularRevealGridLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.xw.repo.bubbleseekbar.R$layout: int abc_action_bar_title_item +androidx.recyclerview.R$id: int tag_accessibility_heading +androidx.appcompat.R$attr: int iconTintMode +androidx.swiperefreshlayout.R$attr: int swipeRefreshLayoutProgressSpinnerBackgroundColor +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$dimen: int mtrl_large_touch_target +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit FTPS +okhttp3.Address: boolean equalsNonHost(okhttp3.Address) +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_ON +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: boolean mWasExecuted +com.bumptech.glide.R$attr: int layout_insetEdge +android.didikee.donate.R$attr: int actionBarItemBackground +james.adaptiveicon.R$attr: int colorPrimaryDark +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderQuery io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable INSTANCE -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.X509TrustManager) -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_top_padding -wangdaye.com.geometricweather.R$string: int daily_overview -cyanogenmod.profiles.BrightnessSettings: boolean isOverride() -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getBootanimationThemePackageName() -android.didikee.donate.R$styleable: int SwitchCompat_android_textOn -com.turingtechnologies.materialscrollbar.R$styleable: int[] CollapsingToolbarLayout_Layout -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: java.lang.Object mLatest -androidx.coordinatorlayout.R$attr: int font +wangdaye.com.geometricweather.R$style: int Platform_V21_AppCompat_Light +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit KPH +wangdaye.com.geometricweather.R$drawable: int notif_temp_71 +com.turingtechnologies.materialscrollbar.R$color: int primary_text_disabled_material_dark +okhttp3.internal.http1.Http1Codec$AbstractSource: okio.Timeout timeout() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String iconUrl +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date moonSetDate +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed Speed +wangdaye.com.geometricweather.R$string: int feedback_show_widget_card_alpha +wangdaye.com.geometricweather.R$styleable: int Chip_iconEndPadding +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_black +org.greenrobot.greendao.AbstractDao: void deleteInTxInternal(java.lang.Iterable,java.lang.Iterable) +android.didikee.donate.R$styleable: int SearchView_goIcon +cyanogenmod.app.CMTelephonyManager: void setDefaultSmsSub(int) +androidx.appcompat.resources.R$id: int action_container +androidx.preference.R$attr: int showSeekBarValue +androidx.activity.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat_Dark +android.didikee.donate.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.R$attr: int tickMarkTintMode +com.google.android.material.chip.Chip: void setCloseIconHovered(boolean) +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setOverlay(java.lang.String) +androidx.preference.R$attr: int queryBackground +com.google.android.material.R$attr: int thumbTintMode +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitationDuration(java.lang.Float) +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endX +com.google.android.material.internal.NavigationMenuItemView: void setTextColor(android.content.res.ColorStateList) +androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context,android.util.AttributeSet,int) +android.didikee.donate.R$attr: int listItemLayout +com.turingtechnologies.materialscrollbar.R$attr: int hideOnScroll +okhttp3.internal.http2.Http2Stream$StreamTimeout: void timedOut() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: BaiduIPLocationResult() +okhttp3.internal.http2.Hpack$Reader: void adjustDynamicTableByteCount() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: int status +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean offer(java.lang.Object,java.lang.Object) +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onComplete() +retrofit2.adapter.rxjava2.BodyObservable: io.reactivex.Observable upstream +androidx.lifecycle.extensions.R$dimen: int notification_top_pad_large_text +okio.ForwardingSource: okio.Source delegate() +okhttp3.internal.connection.RouteSelector$Selection: java.util.List routes +okhttp3.internal.http.CallServerInterceptor$CountingSink: long successfulCount +androidx.coordinatorlayout.R$id: int actions +com.google.android.material.R$styleable: int TextAppearance_android_shadowDx +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: io.reactivex.Observer observer +androidx.work.impl.utils.futures.AbstractFuture: java.lang.Object value +cyanogenmod.hardware.ICMHardwareService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +android.didikee.donate.R$color: int abc_primary_text_material_dark +okhttp3.Protocol: java.lang.String toString() +com.google.android.material.slider.Slider: int getFocusedThumbIndex() +androidx.lifecycle.ComputableLiveData: ComputableLiveData(java.util.concurrent.Executor) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl access$000(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider) +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver this$0 +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: double visibility +androidx.preference.R$layout: int abc_search_view +androidx.appcompat.R$dimen: int compat_control_corner_material +com.turingtechnologies.materialscrollbar.R$id: int line1 +okio.ByteString: java.nio.ByteBuffer asByteBuffer() +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +io.reactivex.Observable: io.reactivex.Observable startWith(java.lang.Iterable) +androidx.legacy.coreutils.R$color: int ripple_material_light +okhttp3.ResponseBody: long contentLength() +androidx.preference.R$id: int notification_main_column +androidx.core.R$attr: int fontVariationSettings +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constrainedHeight +androidx.constraintlayout.widget.R$color: int background_floating_material_dark +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Determinate +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_scaleX +androidx.drawerlayout.R$dimen: int compat_control_corner_material +com.bumptech.glide.MemoryCategory: float getMultiplier() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HOME_WAKE_SCREEN_VALIDATOR +com.turingtechnologies.materialscrollbar.R$color: int material_grey_800 +wangdaye.com.geometricweather.R$color: int design_default_color_primary_dark +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String ShortPhrase +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType[] $VALUES +io.reactivex.exceptions.CompositeException: java.util.List exceptions +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: MfHistoryResult$History$Temperature() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_CBC_SHA +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Visibility +com.google.android.material.R$attr: int layout_constraintBottom_toBottomOf +wangdaye.com.geometricweather.R$id: int container_main_aqi_recyclerView +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: java.lang.String icon +com.google.android.material.R$dimen: int mtrl_textinput_end_icon_margin_start +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.recyclerview.R$id: int line1 +androidx.preference.R$attr: int tickMarkTintMode +androidx.lifecycle.Transformations$2: void onChanged(java.lang.Object) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeWindSpeed() +androidx.constraintlayout.widget.R$attr: int buttonCompat +okio.BufferedSink: okio.BufferedSink writeByte(int) +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +cyanogenmod.hardware.ICMHardwareService$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$attr: int msb_recyclerView +wangdaye.com.geometricweather.R$attr: int tabPaddingBottom +wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_previous_black_24dp +wangdaye.com.geometricweather.R$id: int notification_big_week_2 +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.concurrent.atomic.AtomicReference error +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_barThickness +wangdaye.com.geometricweather.R$attr: int passwordToggleEnabled +wangdaye.com.geometricweather.R$styleable: int Preference_allowDividerBelow +com.jaredrummler.android.colorpicker.R$attr: int colorButtonNormal +cyanogenmod.app.Profile: void validateRingtones(android.content.Context) +wangdaye.com.geometricweather.R$id: int fragment_drawer +com.google.android.material.chip.ChipGroup: void setChipSpacing(int) +com.google.android.material.R$styleable: int Constraint_android_scaleY +androidx.drawerlayout.R$styleable: int[] ColorStateListItem +com.google.android.material.R$attr: int actionBarTabTextStyle +android.didikee.donate.R$style: int Base_V22_Theme_AppCompat +okio.Buffer$UnsafeCursor: int start +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onDetach() +wangdaye.com.geometricweather.R$styleable: int Transition_android_id +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type[] values() +wangdaye.com.geometricweather.R$id: int item_alert_content +androidx.appcompat.R$styleable: int DrawerArrowToggle_barLength +androidx.transition.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.R$id: int drawerLayout +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +james.adaptiveicon.R$styleable: int Spinner_android_dropDownWidth +androidx.preference.R$string: int abc_menu_meta_shortcut_label +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date sunriseTime +androidx.coordinatorlayout.R$dimen: int notification_large_icon_width +org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory,int,android.database.DatabaseErrorHandler) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getTotal() +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean cancelled +com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator +okhttp3.internal.platform.Platform: java.lang.String toString() +wangdaye.com.geometricweather.R$attr: int bsb_min +cyanogenmod.externalviews.ExternalView$3: void run() +cyanogenmod.themes.ThemeManager: android.os.Handler access$200() +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_windowAnimationStyle +androidx.lifecycle.extensions.R$id: int tag_accessibility_clickable_spans +androidx.preference.R$drawable: int abc_list_selector_disabled_holo_dark +okhttp3.internal.platform.Platform: java.util.logging.Logger logger +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_rtl +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.internal.util.AtomicThrowable errors +androidx.preference.R$string: int abc_menu_space_shortcut_label +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_showText +com.google.android.material.R$attr: int startIconTint +androidx.preference.R$styleable: int Preference_android_layout +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CUSTOM_VALUES +cyanogenmod.app.ICMStatusBarManager: void unregisterListener(cyanogenmod.app.ICustomTileListener,int) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle +androidx.appcompat.view.menu.ListMenuItemView +cyanogenmod.app.suggest.IAppSuggestManager$Stub: int TRANSACTION_getSuggestions +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeSplitBackground +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_useSimpleSummaryProvider +retrofit2.RequestFactory$Builder: boolean gotBody +com.google.android.material.R$drawable: int abc_ic_menu_overflow_material +cyanogenmod.weather.WeatherLocation: java.lang.String access$502(cyanogenmod.weather.WeatherLocation,java.lang.String) +cyanogenmod.providers.ThemesContract$ThemesColumns: android.net.Uri CONTENT_URI +androidx.appcompat.widget.Toolbar: int getCurrentContentInsetStart() +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean registerThermalListener(cyanogenmod.hardware.IThermalListenerCallback) +com.google.android.material.R$id: int accessibility_custom_action_28 +androidx.drawerlayout.R$styleable: int FontFamilyFont_fontStyle +androidx.dynamicanimation.R$attr: int fontProviderCerts +com.jaredrummler.android.colorpicker.R$attr: int windowActionModeOverlay +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setCityName(java.lang.String) +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: java.lang.Object v2 +io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Runnable getWrappedRunnable() +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeShareDrawable +com.google.android.material.R$style: int Theme_AppCompat_Dialog_MinWidth +james.adaptiveicon.R$style: int Base_Animation_AppCompat_Tooltip +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeColor +okhttp3.Response: long sentRequestAtMillis +cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_REVERSE_LOOKUP +com.turingtechnologies.materialscrollbar.R$attr: int collapseIcon +com.google.android.material.R$dimen: int abc_text_size_display_3_material +androidx.appcompat.view.menu.ListMenuItemView: android.view.LayoutInflater getInflater() +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconSize +android.didikee.donate.R$attr: int titleMarginStart +wangdaye.com.geometricweather.R$color: int colorLevel_1 +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemTitle(java.lang.String) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_als +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +androidx.coordinatorlayout.R$layout +androidx.preference.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String SECONDARY_COLOR +androidx.constraintlayout.motion.widget.MotionLayout: void setTransition(int) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_android_enabled +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: int getStrokeColor() +com.google.gson.stream.JsonWriter: boolean lenient +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTopCompat +okhttp3.internal.cache.CacheStrategy: boolean isCacheable(okhttp3.Response,okhttp3.Request) +cyanogenmod.providers.CMSettings$3: boolean validate(java.lang.String) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeColor(int) +androidx.constraintlayout.widget.R$attr: int progressBarPadding +androidx.hilt.work.R$styleable: int GradientColor_android_centerX +android.support.v4.os.IResultReceiver$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.R$id: int dragStart +wangdaye.com.geometricweather.R$string: int feedback_view_style +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +wangdaye.com.geometricweather.R$attr: int colorControlHighlight +com.google.android.material.R$styleable: int MaterialButtonToggleGroup_checkedButton +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.R$style: int TextAppearance_Compat_Notification_Time +com.google.android.material.textfield.TextInputLayout: void setCounterTextColor(android.content.res.ColorStateList) +com.google.android.material.R$styleable: int MaterialButton_rippleColor +androidx.appcompat.R$styleable: int[] AppCompatTheme com.google.android.material.R$styleable: int Slider_android_stepSize -com.jaredrummler.android.colorpicker.R$attr: int textColorSearchUrl -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void otherError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -androidx.lifecycle.extensions.R$id: int actions -androidx.constraintlayout.widget.R$style: int Animation_AppCompat_Tooltip -okhttp3.HttpUrl$Builder: boolean isDotDot(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_maxWidth -androidx.viewpager.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_weight -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind wind -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver INNER_DISPOSED -androidx.activity.R$integer -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_menuCategory -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2 -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorEnabled -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_28 -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: java.lang.Object item -androidx.transition.R$styleable: int GradientColorItem_android_offset -com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$dimen: int abc_list_item_height_large_material -com.google.android.material.R$styleable: int Transition_duration -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_bias -android.didikee.donate.R$attr: int paddingStart -androidx.core.R$attr: int fontProviderFetchStrategy -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_backgroundSplit -android.didikee.donate.R$styleable: int[] AlertDialog -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String MinutesText -androidx.constraintlayout.widget.R$styleable: int[] GradientColorItem -androidx.fragment.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableItem_android_drawable -com.google.android.material.textfield.TextInputLayout: void removeOnEndIconChangedListener(com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: long serialVersionUID -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade RealFeelTemperatureShade -com.google.android.material.slider.RangeSlider: float getMinSeparation() -okio.Buffer: boolean rangeEquals(long,okio.ByteString) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstVerticalStyle -wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_Material -okhttp3.Request$Builder: okhttp3.Request$Builder put(okhttp3.RequestBody) -com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat_Dark -androidx.constraintlayout.motion.widget.MotionLayout: int[] getConstraintSetIds() -james.adaptiveicon.R$dimen: int abc_dialog_padding_material -androidx.appcompat.R$string: int abc_shareactionprovider_share_with -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeErrorColor -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind -com.google.android.material.card.MaterialCardView: void setCardElevation(float) -com.turingtechnologies.materialscrollbar.R$attr: int actionModeStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_transformPivotY -okhttp3.internal.cache2.Relay: okio.Source upstream -james.adaptiveicon.R$styleable: int[] Spinner -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderPackage -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_font -okio.RealBufferedSource: void readFully(byte[]) -androidx.customview.view.AbsSavedState: android.os.Parcelable$Creator CREATOR -okhttp3.FormBody: FormBody(java.util.List,java.util.List) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setDate(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_circularInset -cyanogenmod.externalviews.ExternalView$2: cyanogenmod.externalviews.ExternalView this$0 -wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_max -androidx.work.R$dimen: int notification_large_icon_height -okhttp3.OkHttpClient$Builder: javax.net.ssl.SSLSocketFactory sslSocketFactory -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: android.os.IBinder mRemote -androidx.vectordrawable.R$styleable: int ColorStateListItem_alpha -com.google.android.material.chip.Chip: void setBackgroundDrawable(android.graphics.drawable.Drawable) -androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemIconDisabledAlpha -cyanogenmod.themes.ThemeChangeRequest$Builder: ThemeChangeRequest$Builder(android.content.res.ThemeConfig) -wangdaye.com.geometricweather.R$attr: int dotDiameter -okio.RealBufferedSource: java.lang.String readString(long,java.nio.charset.Charset) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ProgressBar -com.google.android.material.R$drawable: int abc_ic_go_search_api_material -wangdaye.com.geometricweather.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$attr: int closeIconVisible -okhttp3.OkHttpClient: okhttp3.Dns dns() -com.google.android.material.R$dimen: int abc_text_size_medium_material -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_cancelRequest -com.jaredrummler.android.colorpicker.R$id: int tag_unhandled_key_event_manager -com.google.android.material.button.MaterialButtonToggleGroup: int getVisibleButtonCount() -wangdaye.com.geometricweather.R$color: int darkPrimary_1 -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$attr: int motionProgress -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getLunar() -wangdaye.com.geometricweather.R$string: int feedback_search_nothing -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.R$style: int Platform_V25_AppCompat -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_middle_mtrl_light -com.turingtechnologies.materialscrollbar.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop -androidx.appcompat.R$style: int Theme_AppCompat_Dialog_Alert -androidx.constraintlayout.widget.R$attr: int buttonTint -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_shape_horizontal_margin -androidx.constraintlayout.widget.R$styleable: int ActionBar_subtitle -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitationDuration -okio.RealBufferedSink: okio.BufferedSink emit() -androidx.hilt.R$styleable: int GradientColor_android_endColor -androidx.hilt.R$dimen: int notification_small_icon_background_padding -androidx.appcompat.R$style: int Theme_AppCompat_DialogWhenLarge -cyanogenmod.app.ICMStatusBarManager: void registerListener(cyanogenmod.app.ICustomTileListener,android.content.ComponentName,int) -io.reactivex.exceptions.CompositeException: java.lang.Throwable getRootCause(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_preserveIconSpacing -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void subscribe(io.reactivex.ObservableSource[],int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: double Value -androidx.appcompat.R$color: int primary_text_disabled_material_light -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: long serialVersionUID -com.jaredrummler.android.colorpicker.R$attr: int titleTextStyle -com.xw.repo.bubbleseekbar.R$id: int up -androidx.lifecycle.LiveData: void setValue(java.lang.Object) -retrofit2.Utils: java.lang.String typeToString(java.lang.reflect.Type) -androidx.preference.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircleAngle -androidx.constraintlayout.widget.R$drawable: int abc_popup_background_mtrl_mult -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$width -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum Maximum -wangdaye.com.geometricweather.R$attr: int boxCornerRadiusTopStart -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyTopRight -com.google.android.material.R$attr: int rangeFillColor -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setHourlyForecast(java.lang.String) -wangdaye.com.geometricweather.R$attr: int layout_editor_absoluteY -com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context,android.util.AttributeSet) -cyanogenmod.hardware.IThermalListenerCallback$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric Metric -wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_lifted -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationX -wangdaye.com.geometricweather.R$attr: int summaryOff -androidx.viewpager2.R$id: int accessibility_custom_action_22 -com.google.gson.JsonParseException: long serialVersionUID -cyanogenmod.app.IProfileManager: android.app.NotificationGroup getNotificationGroup(android.os.ParcelUuid) -com.google.android.material.R$styleable: int KeyTimeCycle_waveOffset -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextTextAppearance -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_alpha -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getO3() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int IceProbability -okhttp3.OkHttpClient: javax.net.SocketFactory socketFactory -com.google.android.material.R$styleable: int AppCompatTheme_tooltipForegroundColor -com.google.android.material.R$attr: int materialAlertDialogTitleTextStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitation(java.lang.Float) -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationX -androidx.lifecycle.extensions.R$styleable: int FragmentContainerView_android_name -androidx.constraintlayout.widget.R$attr: int searchHintIcon -androidx.viewpager2.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String no2Desc -androidx.hilt.work.R$layout: int notification_template_part_chronometer -org.greenrobot.greendao.AbstractDaoSession: void update(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$drawable: R$drawable() -android.didikee.donate.R$styleable: int Toolbar_buttonGravity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String getUnit() -com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_radio +com.google.gson.stream.JsonReader: int[] pathIndices +com.google.android.material.R$styleable: int Motion_pathMotionArc +com.google.android.material.R$styleable: int AppCompatImageView_android_src +com.google.android.material.R$attr: int tabStyle +androidx.hilt.lifecycle.R$attr: int font +androidx.hilt.R$id: int icon_group +okhttp3.internal.connection.RealConnection +androidx.work.R$id: int tag_transition_group +cyanogenmod.externalviews.ExternalView$6: cyanogenmod.externalviews.ExternalView this$0 +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean isDisposed() +io.reactivex.Observable: io.reactivex.Observable concatMapIterable(io.reactivex.functions.Function,int) +cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile[] getProfiles() +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_elevation +androidx.constraintlayout.widget.R$attr: int actionModeSelectAllDrawable +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeWidthFocused +cyanogenmod.externalviews.KeyguardExternalView: java.lang.String TAG +com.google.android.material.R$styleable: int BottomAppBar_fabCradleMargin +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getSerialNumber() +androidx.appcompat.widget.AppCompatTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) +androidx.preference.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +com.google.android.material.R$attr: int cardViewStyle +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onNext(java.lang.Object) +com.google.android.material.navigation.NavigationView: void setItemIconSize(int) +com.google.android.material.R$interpolator: R$interpolator() +james.adaptiveicon.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$styleable: int AlertDialog_listItemLayout +okhttp3.internal.http2.Http2: byte TYPE_PUSH_PROMISE +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: long serialVersionUID +com.google.android.material.R$dimen: int notification_large_icon_height +okhttp3.internal.http2.Http2Connection$3: void execute() +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +com.turingtechnologies.materialscrollbar.R$attr: int colorPrimary +io.reactivex.Observable: void safeSubscribe(io.reactivex.Observer) +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: boolean isDisposed() +wangdaye.com.geometricweather.R$string: int key_refresh_rate +androidx.legacy.coreutils.R$id: int action_container +com.bumptech.glide.integration.okhttp.R$id +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode CANCEL +wangdaye.com.geometricweather.R$attr: int tickVisible +wangdaye.com.geometricweather.R$attr: int cornerSizeTopRight +androidx.appcompat.R$styleable: int LinearLayoutCompat_measureWithLargestChild androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_alpha -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getVibratorIntensity() -okio.Options: int intCount(okio.Buffer) -androidx.coordinatorlayout.R$drawable: int notify_panel_notification_icon_bg -com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context) -androidx.legacy.coreutils.R$layout: R$layout() -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -okhttp3.Credentials: java.lang.String basic(java.lang.String,java.lang.String) -androidx.preference.R$drawable: int abc_list_selector_background_transition_holo_dark -com.xw.repo.bubbleseekbar.R$dimen: int notification_media_narrow_margin -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: void run() -androidx.viewpager2.R$color: R$color() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitationProbability -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1 -com.google.android.material.R$styleable: int[] SwitchCompat -androidx.appcompat.R$drawable: int abc_text_cursor_material -com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_800 -androidx.constraintlayout.widget.R$id: int tag_transition_group -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder value(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle -com.google.android.material.textfield.TextInputLayout: int getBoxStrokeWidth() -wangdaye.com.geometricweather.R$animator: int weather_clear_day_2 -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit KGFPSQCM -com.google.android.material.R$dimen: int mtrl_calendar_action_confirm_button_min_width -androidx.hilt.R$dimen: int notification_top_pad_large_text -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_EXTRA -com.google.android.material.tabs.TabLayout: int getSelectedTabPosition() -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_DESTROY -com.google.android.material.R$styleable: int NavigationView_itemShapeInsetStart -androidx.preference.R$id: int list_item -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: long serialVersionUID -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: AccuDailyResult$DailyForecasts$Sun() -android.didikee.donate.R$attr: int actionModeCutDrawable -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) -android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar -com.jaredrummler.android.colorpicker.R$string: int abc_activitychooserview_choose_application +com.github.rahatarmanahmed.cpv.CircularProgressView$9: CircularProgressView$9(com.github.rahatarmanahmed.cpv.CircularProgressView) +cyanogenmod.profiles.AirplaneModeSettings$1 +android.didikee.donate.R$anim: int abc_slide_out_top +okhttp3.Response$Builder: okhttp3.Response build() +wangdaye.com.geometricweather.R$attr: int barrierAllowsGoneWidgets +com.jaredrummler.android.colorpicker.R$attr: int summaryOff +cyanogenmod.providers.CMSettings$Secure: java.lang.String APP_PERFORMANCE_PROFILES_ENABLED +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorPrimaryDark +androidx.preference.R$attr: int numericModifiers +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_MENU_LONG_PRESS_ACTION_VALIDATOR +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_constantSize +com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_top_material +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder onlyIfCached() +androidx.appcompat.R$styleable: int MenuItem_android_id +okhttp3.internal.cache.DiskLruCache$Editor: void commit() +cyanogenmod.weather.RequestInfo: int access$602(cyanogenmod.weather.RequestInfo,int) +androidx.appcompat.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +com.google.android.material.button.MaterialButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Body1 +androidx.preference.R$drawable: int abc_btn_borderless_material +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +com.google.android.material.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_popupWindowStyle +androidx.appcompat.R$attr: int drawableBottomCompat +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +okhttp3.internal.http2.Hpack$Reader: okio.ByteString readByteString() +com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_max +com.google.android.material.chip.ChipGroup: void setOnCheckedChangeListener(com.google.android.material.chip.ChipGroup$OnCheckedChangeListener) +okhttp3.internal.http2.Huffman$Node: Huffman$Node(int,int) +androidx.constraintlayout.widget.R$attr: int background +wangdaye.com.geometricweather.R$dimen: int abc_text_size_button_material +cyanogenmod.profiles.StreamSettings$1: cyanogenmod.profiles.StreamSettings[] newArray(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Headline +okhttp3.Address: javax.net.ssl.SSLSocketFactory sslSocketFactory() +cyanogenmod.app.LiveLockScreenInfo$1: java.lang.Object[] newArray(int) +com.google.android.material.timepicker.TimePickerView: void setOnActionUpListener(com.google.android.material.timepicker.ClockHandView$OnActionUpListener) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit ATM +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_end +androidx.core.widget.NestedScrollView$SavedState: android.os.Parcelable$Creator CREATOR +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onComplete() +wangdaye.com.geometricweather.R$string: int wait_refresh +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +androidx.constraintlayout.widget.R$attr: int listMenuViewStyle +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +james.adaptiveicon.R$id: int wrap_content +androidx.constraintlayout.widget.R$attr: int customDimension +androidx.preference.PreferenceDialogFragmentCompat: PreferenceDialogFragmentCompat() +cyanogenmod.externalviews.KeyguardExternalView$4: cyanogenmod.externalviews.KeyguardExternalView this$0 +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getIconTint() +com.google.android.material.bottomnavigation.BottomNavigationItemView: int getItemVisiblePosition() +wangdaye.com.geometricweather.R$drawable: int ic_exercise +okhttp3.internal.ws.WebSocketReader: void readUntilNonControlFrame() +okhttp3.CacheControl: int maxStaleSeconds() +com.google.android.material.R$attr: int currentState +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_WEATHER_MANAGER +androidx.appcompat.resources.R$style +androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModelProvider$NewInstanceFactory sInstance +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitationProbability() +com.google.android.material.card.MaterialCardView: int getCheckedIconSize() +wangdaye.com.geometricweather.R$styleable: int[] RoundCornerTransition +wangdaye.com.geometricweather.R$color: int abc_color_highlight_material +com.google.android.material.R$styleable: int[] PopupWindow +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogLayout +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_shapeAppearanceOverlay +androidx.customview.R$drawable: int notification_bg_normal +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastHorizontalBias +wangdaye.com.geometricweather.R$attr: int text_size +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerY +com.jaredrummler.android.colorpicker.R$color: int foreground_material_dark +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationX +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial +wangdaye.com.geometricweather.R$layout: int activity_search +wangdaye.com.geometricweather.R$layout: int widget_clock_day_vertical +okio.Timeout: long deadlineNanoTime() +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: ObservableConcatWithCompletable$ConcatWithObserver(io.reactivex.Observer,io.reactivex.CompletableSource) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar_Indicator +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onComplete() +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: java.lang.Object poll() +androidx.work.R$drawable: R$drawable() +androidx.constraintlayout.widget.R$anim: int abc_shrink_fade_out_from_bottom +com.google.android.material.R$attr: int itemPadding +cyanogenmod.weather.WeatherInfo$Builder: java.lang.String mCity +james.adaptiveicon.R$attr: int colorButtonNormal +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight +okhttp3.internal.tls.OkHostnameVerifier: boolean verify(java.lang.String,javax.net.ssl.SSLSession) +james.adaptiveicon.R$anim +com.google.gson.stream.JsonReader: long MIN_INCOMPLETE_INTEGER +james.adaptiveicon.R$attr: int actionButtonStyle +wangdaye.com.geometricweather.R$attr: int textInputStyle +com.google.android.material.R$id: int text2 +androidx.core.R$id: int async +com.google.android.material.bottomnavigation.BottomNavigationView$SavedState: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$id: int expand_activities_button +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$color: int design_default_color_primary +cyanogenmod.providers.CMSettings$Global: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_icon_color_selector +com.google.android.material.R$styleable: int Constraint_pathMotionArc +com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd +wangdaye.com.geometricweather.R$id: int radio +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionLayout +wangdaye.com.geometricweather.R$string: int settings_title_live_wallpaper +james.adaptiveicon.R$layout: int abc_alert_dialog_button_bar_material +androidx.constraintlayout.widget.R$styleable: int OnSwipe_limitBoundsTo +cyanogenmod.app.ICustomTileListener$Stub: ICustomTileListener$Stub() +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okhttp3.ResponseBody delegate +cyanogenmod.providers.CMSettings$System: java.lang.String SYS_PROP_CM_SETTING_VERSION +okhttp3.internal.connection.RealConnection: int successCount +com.turingtechnologies.materialscrollbar.R$id: int textSpacerNoTitle +androidx.fragment.R$styleable: int FontFamily_fontProviderPackage +android.didikee.donate.R$style: int Widget_AppCompat_Button_Borderless +androidx.coordinatorlayout.R$attr: int fontWeight +com.google.android.material.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_CheckBox +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Tooltip +androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMark +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog_MinWidth +okhttp3.internal.http2.Http2Writer: void dataFrame(int,byte,okio.Buffer,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean) +retrofit2.Retrofit$1: Retrofit$1(retrofit2.Retrofit,java.lang.Class) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.preference.R$drawable: int abc_ic_star_black_36dp +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval +retrofit2.Utils$WildcardTypeImpl +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.R$attr: int textAppearanceBody2 +com.jaredrummler.android.colorpicker.R$attr: int actionModeSplitBackground +androidx.customview.R$id: int async +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableItem_android_id +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_lightOnTouch +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Small_Inverse +okio.RealBufferedSink$1: void write(byte[],int,int) +androidx.appcompat.widget.AppCompatTextView: int getAutoSizeTextType() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_spinner_mtrl_am_alpha +wangdaye.com.geometricweather.R$layout: int item_weather_daily_overview +com.google.android.material.card.MaterialCardView: int getContentPaddingRight() +com.google.android.material.R$attr: int viewInflaterClass +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginLeft +com.google.android.material.R$styleable: int AppBarLayout_android_background +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Dialog_Bridge +androidx.legacy.coreutils.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$style: int material_icon +wangdaye.com.geometricweather.R$layout: int container_main_pollen +cyanogenmod.weatherservice.ServiceRequest$Status: ServiceRequest$Status(java.lang.String,int) +cyanogenmod.providers.DataUsageContract: android.net.Uri CONTENT_URI +androidx.constraintlayout.widget.R$attr: int ratingBarStyleSmall +androidx.vectordrawable.animated.R$string +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_APP_SWITCH_LONG_PRESS_ACTION +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedHeightMinor +androidx.lifecycle.SavedStateHandle: java.lang.Object remove(java.lang.String) +androidx.preference.R$attr: int shouldDisableView +com.google.android.material.floatingactionbutton.FloatingActionButton: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_android_elevation +com.google.android.material.R$attr: int textInputStyle +androidx.activity.R$dimen: int notification_large_icon_width +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display4 +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTemperature(int) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingLeft +wangdaye.com.geometricweather.R$string: int precipitation_heavy +androidx.lifecycle.ViewModelProvider$KeyedFactory: ViewModelProvider$KeyedFactory() +okhttp3.MediaType: java.lang.String charset +androidx.lifecycle.extensions.R$id: int time +okhttp3.internal.platform.Platform: void log(int,java.lang.String,java.lang.Throwable) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView +com.bumptech.glide.integration.okhttp.R$color: int ripple_material_light +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Small +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder reencodeForUri() +cyanogenmod.profiles.ConnectionSettings$1: cyanogenmod.profiles.ConnectionSettings createFromParcel(android.os.Parcel) +com.turingtechnologies.materialscrollbar.R$attr: int listDividerAlertDialog +wangdaye.com.geometricweather.R$styleable: int AlertDialog_buttonIconDimen +com.google.android.material.R$attr: int expandedTitleTextAppearance +androidx.preference.R$styleable: int Spinner_popupTheme +androidx.work.R$styleable: int GradientColor_android_startX +com.google.android.material.R$dimen: int abc_action_bar_default_padding_end_material +com.google.android.material.R$attr: int chipMinTouchTargetSize +retrofit2.OptionalConverterFactory: OptionalConverterFactory() +com.google.android.material.R$attr: int collapseIcon +androidx.constraintlayout.helper.widget.Flow: void setFirstVerticalBias(float) +android.didikee.donate.R$attr: int progressBarStyle +com.google.android.material.R$attr: int textAppearanceHeadline5 +com.turingtechnologies.materialscrollbar.R$anim +cyanogenmod.library.R$id +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.appcompat.widget.AlertDialogLayout +androidx.preference.R$drawable: int abc_list_pressed_holo_light +okhttp3.internal.connection.StreamAllocation: boolean $assertionsDisabled +io.reactivex.Observable: io.reactivex.Observable window(long,long,int) +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: int getChartBottom() +androidx.preference.R$dimen: int abc_floating_window_z +androidx.preference.R$styleable: int AppCompatTextView_drawableTintMode +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getUVDescription() +androidx.recyclerview.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: MfWarningsResult$WarningComments() +wangdaye.com.geometricweather.R$attr: int telltales_tailColor +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Dialog +okhttp3.internal.http2.Http2Reader$Handler: void headers(boolean,int,int,java.util.List) +androidx.appcompat.R$style: int TextAppearance_AppCompat_Inverse +androidx.preference.R$styleable: int AlertDialog_showTitle +wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_toTopOf +com.google.android.material.R$attr: int titleMarginBottom +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_elevation +cyanogenmod.hardware.CMHardwareManager: boolean writePersistentBytes(java.lang.String,byte[]) +com.xw.repo.bubbleseekbar.R$color: int error_color_material_dark +androidx.appcompat.R$style: int Widget_AppCompat_EditText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: int status +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_wrapMode +com.google.android.material.R$dimen: int disabled_alpha_material_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX getAqi() +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_cut_mtrl_alpha +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeRealFeelShaderTemperature() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListMenuView +androidx.constraintlayout.utils.widget.ImageFilterView: void setOverlay(boolean) +androidx.dynamicanimation.R$id: R$id() +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_variablePadding +com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_margin +com.google.android.material.transformation.FabTransformationScrimBehavior +android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: java.lang.String DESCRIPTOR +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void request(long) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getTitle() +androidx.lifecycle.extensions.R$id: int action_container +com.bumptech.glide.integration.okhttp.R$id: int text2 +androidx.recyclerview.widget.RecyclerView: void setAccessibilityDelegateCompat(androidx.recyclerview.widget.RecyclerViewAccessibilityDelegate) +okio.BufferedSink: okio.BufferedSink writeUtf8(java.lang.String) +okio.AsyncTimeout: int TIMEOUT_WRITE_SIZE +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_grey +okio.Okio$3: void write(okio.Buffer,long) +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_textOff +cyanogenmod.library.R$styleable: int[] LiveLockScreen +io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult +androidx.constraintlayout.widget.R$layout: int notification_template_part_chronometer +com.google.android.material.R$dimen: int mtrl_btn_snackbar_margin_horizontal +com.turingtechnologies.materialscrollbar.R$attr: int controlBackground +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetEndWithActions +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_28 +com.xw.repo.bubbleseekbar.R$attr: int actionModeWebSearchDrawable +wangdaye.com.geometricweather.R$id: int material_textinput_timepicker +androidx.swiperefreshlayout.R$styleable: int[] GradientColor +androidx.appcompat.view.menu.ListMenuItemView: ListMenuItemView(android.content.Context,android.util.AttributeSet,int) +okio.RealBufferedSink: RealBufferedSink(okio.Sink) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: java.lang.String Unit +com.google.android.material.R$id: int flip +cyanogenmod.power.PerformanceManagerInternal +wangdaye.com.geometricweather.common.basic.models.weather.Wind: boolean isValidSpeed() +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayHorizontalWidgetConfigActivity +com.google.android.material.R$styleable: int AppCompatTheme_windowActionModeOverlay +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle +com.jaredrummler.android.colorpicker.R$style: int Base_V26_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabGravity +cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(java.util.Map,java.util.Map,cyanogenmod.themes.ThemeChangeRequest$RequestType,long,cyanogenmod.themes.ThemeChangeRequest$1) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onNext(java.lang.Object) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_NULL_SHA +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: AccuCurrentResult$Precip1hr() +com.google.android.material.R$dimen: int mtrl_badge_text_size +androidx.appcompat.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.R$id: int jumpToStart +wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.appcompat.R$dimen: int abc_dialog_fixed_width_major +androidx.viewpager2.R$drawable: int notification_bg_normal_pressed +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button +okhttp3.internal.http2.ErrorCode: int httpCode +com.bumptech.glide.R$id: int right_icon +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +wangdaye.com.geometricweather.R$attr: int itemFillColor +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_titleCondensed +com.google.android.material.R$dimen: int mtrl_calendar_landscape_header_width +com.github.rahatarmanahmed.cpv.CircularProgressView: float currentProgress +com.google.android.material.R$attr: int paddingTopNoTitle +androidx.constraintlayout.widget.R$styleable: int Constraint_android_id +com.google.android.material.R$layout: int material_timepicker +com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_min +com.google.gson.stream.JsonReader: com.google.gson.stream.JsonToken peek() +com.xw.repo.bubbleseekbar.R$color: int secondary_text_default_material_dark +retrofit2.Response: java.lang.Object body +com.xw.repo.bubbleseekbar.R$id: int action_mode_bar_stub +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_10 +androidx.viewpager.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$string: int uv_index +androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.Lifecycle getLifecycle() +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean done +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onComplete() +androidx.customview.R$integer: int status_bar_notification_info_maxnum +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: ResultObservable$ResultObserver(io.reactivex.Observer) +wangdaye.com.geometricweather.R$attr: int materialCalendarMonthNavigationButton +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature +james.adaptiveicon.R$attr: int theme +androidx.vectordrawable.animated.R$dimen: int notification_media_narrow_margin +androidx.lifecycle.MediatorLiveData: void onInactive() +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void subscribeNext() +androidx.appcompat.R$dimen: int abc_text_size_title_material +com.google.android.material.switchmaterial.SwitchMaterial: android.content.res.ColorStateList getMaterialThemeColorsTrackTintList() +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircle +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +androidx.lifecycle.ViewModelProvider$KeyedFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) +com.google.android.material.datepicker.CalendarConstraints$DateValidator +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.R$array: int temperature_units_long +androidx.vectordrawable.R$drawable: int notification_tile_bg +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAVBAR_LEFT_IN_LANDSCAPE_VALIDATOR +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2 +com.google.android.material.R$attr: int colorPrimaryVariant +okhttp3.MediaType: int hashCode() +androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabView +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String TITLE +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Light +com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorSize(int) +androidx.constraintlayout.widget.R$attr: int flow_verticalStyle +androidx.constraintlayout.widget.R$styleable: int Transform_android_translationY +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long index +io.reactivex.Observable: io.reactivex.Completable concatMapCompletable(io.reactivex.functions.Function,int) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float so2 +androidx.hilt.R$styleable: int ColorStateListItem_alpha +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_CHACHA20_POLY1305_SHA256 +com.google.gson.JsonSyntaxException: long serialVersionUID +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeBackground +android.didikee.donate.R$dimen: int highlight_alpha_material_dark +android.didikee.donate.R$attr: int textColorAlertDialogListItem +cyanogenmod.weather.CMWeatherManager$RequestStatus: int FAILED +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: IWeatherServiceProviderChangeListener$Stub$Proxy(android.os.IBinder) +com.google.android.material.R$attr: int counterOverflowTextAppearance +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onError(java.lang.Throwable) +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_THEME_COMPONENTS +okhttp3.internal.http2.Http2Stream$FramingSource: boolean closed +androidx.hilt.work.R$drawable: int notification_icon_background +androidx.preference.R$attr: int textAppearanceLargePopupMenu +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_16dp +wangdaye.com.geometricweather.R$id: int wrap_content +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Title +com.turingtechnologies.materialscrollbar.R$attr: int colorControlNormal io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: org.reactivestreams.Subscription upstream -io.reactivex.internal.util.EmptyComponent: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: long serialVersionUID -com.google.android.material.datepicker.RangeDateSelector: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$id: int jumpToEnd -com.jaredrummler.android.colorpicker.R$attr: int allowDividerAbove -okio.Timeout$1: okio.Timeout deadlineNanoTime(long) -android.didikee.donate.R$styleable: int ActionBarLayout_android_layout_gravity -wangdaye.com.geometricweather.R$layout: int item_weather_daily_value -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -android.didikee.donate.R$bool: int abc_action_bar_embed_tabs -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_with_text_radius -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetEndWithActions -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.lang.Throwable error -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPrePaused(android.app.Activity) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.ChineseCityEntity,long) -cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_KEYS_CONTROL_RING_STREAM -cyanogenmod.providers.CMSettings$Global: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) -androidx.appcompat.R$drawable: int abc_list_longpressed_holo -wangdaye.com.geometricweather.R$styleable: int Preference_summary -androidx.activity.R$dimen: int notification_small_icon_background_padding -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean offer(java.lang.Object,java.lang.Object) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void drainLoop() -wangdaye.com.geometricweather.R$styleable: int MenuItem_numericModifiers -androidx.work.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.R$styleable: int[] CircularProgressView -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: ObservableConcatWithMaybe$ConcatWithObserver(io.reactivex.Observer,io.reactivex.MaybeSource) -wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotationY -wangdaye.com.geometricweather.R$color: int mtrl_popupmenu_overlay_color -okhttp3.logging.LoggingEventListener: void responseBodyEnd(okhttp3.Call,long) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_explanation -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -com.google.android.material.R$color: int abc_secondary_text_material_dark -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox -com.google.android.material.R$styleable: int ConstraintSet_android_minWidth -androidx.cardview.widget.CardView: CardView(android.content.Context) -com.jaredrummler.android.colorpicker.ColorPreferenceCompat: void setOnShowDialogListener(com.jaredrummler.android.colorpicker.ColorPreferenceCompat$OnShowDialogListener) +androidx.customview.R$drawable: int notification_action_background +com.turingtechnologies.materialscrollbar.R$color: int tooltip_background_dark +com.turingtechnologies.materialscrollbar.R$attr: int cardCornerRadius +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabTextStyle +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar +james.adaptiveicon.R$style: int Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_range_end +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: int getCollapsedSize() +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_extendMotionSpec +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionViewClass +androidx.constraintlayout.widget.R$styleable: int ActionBarLayout_android_layout_gravity +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowRadius +com.turingtechnologies.materialscrollbar.R$string: int abc_activitychooserview_choose_application +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getHint() +cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(int,java.lang.String,int,java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setPm25(java.lang.Float) +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_roundPercent +com.bumptech.glide.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_night +okhttp3.logging.LoggingEventListener +wangdaye.com.geometricweather.R$attr: int behavior_draggable +retrofit2.http.OPTIONS +androidx.preference.Preference: void setOnPreferenceChangeInternalListener(androidx.preference.Preference$OnPreferenceChangeInternalListener) +androidx.appcompat.R$styleable: int GradientColorItem_android_color +com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusTopStart() +androidx.preference.R$attr: int listChoiceIndicatorSingleAnimated +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer aqiIndex +wangdaye.com.geometricweather.R$attr: int drawableTintMode +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_MAX_INDEX +android.didikee.donate.R$attr: int srcCompat +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_WAKE_SCREEN_VALIDATOR +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: double Value +wangdaye.com.geometricweather.R$styleable: int[] RecyclerView +wangdaye.com.geometricweather.R$drawable: int ic_circle_medium +com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_Tooltip +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String power +cyanogenmod.app.BaseLiveLockManagerService +androidx.appcompat.resources.R$id: int accessibility_custom_action_26 +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onError(java.lang.Throwable) +james.adaptiveicon.R$id: int progress_circular +androidx.vectordrawable.R$id: int tag_accessibility_clickable_spans +wangdaye.com.geometricweather.R$layout: int notification_template_part_chronometer +android.didikee.donate.R$style: int Widget_AppCompat_ButtonBar +androidx.constraintlayout.widget.ConstraintLayout: int getMaxHeight() +androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getNavigationIcon() +cyanogenmod.app.ICustomTileListener$Stub +androidx.core.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setNightIndicatorRotation(float) +cyanogenmod.providers.CMSettings$System: java.lang.String USE_EDGE_SERVICE_FOR_GESTURES +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: java.lang.String Code +com.google.android.material.chip.Chip: void setCloseIconStartPadding(float) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf +com.xw.repo.bubbleseekbar.R$attr: int drawerArrowStyle +okhttp3.internal.http2.Http2Connection: java.net.Socket socket +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String mId +okhttp3.internal.http2.Http2Stream$StreamTimeout: void exitAndThrowIfTimedOut() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Small +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit getInstance(java.lang.String) +androidx.activity.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.R$id: int item_weather_daily_uv_icon +com.google.gson.stream.JsonReader: int NUMBER_CHAR_SIGN +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getHaloTintList() +androidx.constraintlayout.widget.R$styleable: int Constraint_android_maxWidth +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.MinutelyEntityDao minutelyEntityDao +cyanogenmod.weather.util.WeatherUtils: double celsiusToFahrenheit(double) +io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.SingleSource) +com.google.android.material.datepicker.DateValidatorPointForward +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_gravity +com.google.android.material.R$string +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabView +androidx.recyclerview.R$styleable: int RecyclerView_stackFromEnd +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +okhttp3.logging.HttpLoggingInterceptor: boolean isPlaintext(okio.Buffer) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: int UnitType +com.jaredrummler.android.colorpicker.R$id: int action_bar_subtitle +androidx.lifecycle.LifecycleRegistry: java.util.ArrayList mParentStates +com.google.android.material.R$dimen: int design_bottom_navigation_icon_size +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: int UnitType +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_subtitle +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogTheme +androidx.constraintlayout.widget.R$attr: int listLayout +wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_light +io.reactivex.internal.util.VolatileSizeArrayList: void clear() +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_trackTintMode +com.google.android.material.slider.RangeSlider: void setFocusedThumbIndex(int) +com.google.android.material.R$string: int mtrl_picker_toggle_to_year_selection +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +com.google.android.material.R$dimen: int abc_disabled_alpha_material_dark +okio.Buffer: long indexOfElement(okio.ByteString,long) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_overflow_padding_start_material +androidx.appcompat.R$drawable: int abc_ic_go_search_api_material +com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyleSmall +androidx.constraintlayout.widget.R$styleable: int[] MotionScene +okhttp3.internal.ws.WebSocketWriter$FrameSink: long contentLength +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeSplitBackground +wangdaye.com.geometricweather.R$string: int settings_title_notification +com.xw.repo.bubbleseekbar.R$attr: int windowFixedHeightMinor +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getDatetime() +org.greenrobot.greendao.AbstractDaoSession: java.util.List loadAll(java.lang.Class) +okhttp3.internal.http.HttpCodec: okhttp3.Response$Builder readResponseHeaders(boolean) +cyanogenmod.power.IPerformanceManager$Stub +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind Wind +okhttp3.internal.http2.Http2Reader$ContinuationSource: short padding +com.jaredrummler.android.colorpicker.R$attr: int multiChoiceItemLayout +androidx.preference.R$styleable: int SwitchPreferenceCompat_disableDependentsState +androidx.appcompat.widget.ActionBarContextView +androidx.preference.R$styleable: int CheckBoxPreference_summaryOff +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_creator +okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory newSslSocketFactory(javax.net.ssl.X509TrustManager) +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean writePersistentBytes(java.lang.String,byte[]) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerComplete(io.reactivex.internal.observers.InnerQueuedObserver) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Today +androidx.appcompat.R$layout: int notification_template_part_chronometer +com.google.android.material.bottomappbar.BottomAppBar: void setFabCradleMargin(float) +androidx.hilt.lifecycle.R$anim: int fragment_close_enter +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display1 +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf +com.google.android.material.R$styleable: int CollapsingToolbarLayout_statusBarScrim +james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +retrofit2.BuiltInConverters$ToStringConverter: retrofit2.BuiltInConverters$ToStringConverter INSTANCE +androidx.fragment.R$dimen: int notification_small_icon_size_as_large +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.disposables.Disposable upstream +androidx.constraintlayout.widget.R$id: int italic +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_btn_unelevated_state_list_anim +com.google.android.material.R$style: int AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSo2Desc(java.lang.String) +com.google.android.material.chip.Chip: void setOnCloseIconClickListener(android.view.View$OnClickListener) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Display3 +androidx.legacy.coreutils.R$style: int Widget_Compat_NotificationActionContainer +com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.drawable.Drawable getContentScrim() +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setIndicatorColor(int) +cyanogenmod.themes.ThemeManager$ThemeChangeListener: void onProgress(int) +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_3 +james.adaptiveicon.R$styleable: int LinearLayoutCompat_dividerPadding +androidx.hilt.R$drawable: int notification_icon_background +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +cyanogenmod.weather.WeatherInfo: int mConditionCode +james.adaptiveicon.R$style: int Base_DialogWindowTitleBackground_AppCompat +io.reactivex.Observable: io.reactivex.Observable cast(java.lang.Class) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: java.util.List textBlocItems +com.google.android.material.R$styleable: int MaterialCalendar_yearSelectedStyle +james.adaptiveicon.R$dimen: int abc_action_bar_overflow_padding_end_material +com.google.android.material.R$dimen: int mtrl_slider_thumb_radius +androidx.lifecycle.extensions.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$string: int ceiling +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.db.entities.WeatherEntity: long getUpdateTime() +com.xw.repo.bubbleseekbar.R$id: int action_bar_title +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +com.google.android.material.R$styleable: int TextAppearance_android_textStyle +com.google.android.material.R$dimen: int tooltip_vertical_padding +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_RED_INDEX +com.google.android.material.bottomnavigation.BottomNavigationView: int getItemTextAppearanceActive() +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.HistoryEntity) +com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrimColor(int) +androidx.appcompat.R$styleable: int MenuItem_iconTintMode +com.jaredrummler.android.colorpicker.R$attr: int spinnerDropDownItemStyle +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColorHint +com.jaredrummler.android.colorpicker.R$integer: int status_bar_notification_info_maxnum +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.ObservableSource fallback +wangdaye.com.geometricweather.R$id: int widget_remote_drawable +wangdaye.com.geometricweather.R$id: int text_input_start_icon +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView_DropDown +cyanogenmod.app.Profile: void setNotificationLightMode(int) +com.turingtechnologies.materialscrollbar.R$id: int forever +cyanogenmod.weather.RequestInfo$Builder +cyanogenmod.app.CMStatusBarManager: void removeTile(int) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onError(java.lang.Throwable) +com.google.android.material.slider.RangeSlider: void setThumbStrokeWidth(float) +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceStyle +androidx.preference.R$styleable: int MultiSelectListPreference_entryValues +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitationDuration() +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: ChineseCityEntity(java.lang.Long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.functions.Function mapper com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_divider -androidx.hilt.lifecycle.R$styleable: int Fragment_android_tag -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void cancelSources() -com.jaredrummler.android.colorpicker.R$styleable: int ButtonBarLayout_allowStacking -androidx.lifecycle.extensions.R$color -androidx.constraintlayout.widget.R$layout: int abc_action_bar_title_item -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float pm10 -androidx.appcompat.widget.ActionBarOverlayLayout: void setShowingForActionMode(boolean) -android.didikee.donate.R$style: int Theme_AppCompat_DayNight -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource LocalSource -androidx.hilt.work.R$attr: int ttcIndex -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.Integer getCloudCover() -james.adaptiveicon.R$styleable: int TextAppearance_android_textFontWeight -com.turingtechnologies.materialscrollbar.R$attr: int tabMaxWidth -androidx.recyclerview.R$id: int tag_accessibility_clickable_spans -androidx.appcompat.R$color: int material_blue_grey_800 -wangdaye.com.geometricweather.R$style: int Base_V28_Theme_AppCompat_Light -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitationDuration -com.google.android.material.R$attr: int state_liftable -android.didikee.donate.R$id: int right_icon -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: boolean terminated -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_LOW -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatImageView -androidx.core.R$id: int tag_unhandled_key_event_manager -android.didikee.donate.R$drawable: int abc_spinner_textfield_background_material -androidx.activity.R$attr: int fontVariationSettings -androidx.appcompat.widget.SearchView: void setQueryRefinementEnabled(boolean) -androidx.vectordrawable.R$dimen: int compat_button_padding_vertical_material -androidx.preference.R$attr: int windowFixedWidthMinor -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function6) -retrofit2.RequestFactory$Builder: okhttp3.MediaType contentType -okhttp3.internal.tls.DistinguishedNameParser: char getUTF8() -com.google.android.material.R$styleable: int TextAppearance_android_shadowRadius -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar -okhttp3.internal.http2.Http2Stream$FramingSource -androidx.transition.R$dimen: int notification_large_icon_height -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_1 -androidx.viewpager.R$attr: int fontProviderAuthority -io.reactivex.observers.TestObserver$EmptyObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconCheckable -androidx.appcompat.resources.R$id: int accessibility_custom_action_0 -com.turingtechnologies.materialscrollbar.R$attr: int allowStacking -com.jaredrummler.android.colorpicker.R$id: int search_plate -androidx.hilt.R$anim: int fragment_open_enter -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_TopLeftCut -androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String escapedAV() -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_second_track_color -okhttp3.MultipartBody: okhttp3.MediaType FORM -cyanogenmod.weatherservice.IWeatherProviderServiceClient: void setServiceRequestState(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.ServiceRequestResult,int) -com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonStyle -wangdaye.com.geometricweather.common.ui.widgets.TagView -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: MfForecastV2Result$Geometry() -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getProvince() -androidx.preference.R$drawable: int abc_text_select_handle_right_mtrl_dark -com.google.android.material.internal.ForegroundLinearLayout: int getForegroundGravity() -retrofit2.Response: okhttp3.Response raw() -androidx.swiperefreshlayout.R$styleable: int[] ColorStateListItem -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -androidx.viewpager2.R$id: int normal -androidx.fragment.R$id: int visible_removing_fragment_view_tag -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getApparentTemperature() -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor[] values() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Borderless -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getSo2() -com.google.android.material.appbar.AppBarLayout -com.google.android.material.R$drawable: int abc_textfield_activated_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int Constraint_android_maxWidth -android.didikee.donate.R$anim: int abc_slide_out_bottom -wangdaye.com.geometricweather.R$drawable: int abc_tab_indicator_material -com.google.android.material.R$attr: int animationMode -okhttp3.internal.http2.Http2Codec: void writeRequestHeaders(okhttp3.Request) -cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(android.os.Parcel,cyanogenmod.app.CustomTile$1) -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetLeft -com.google.android.material.R$attr: int showTitle -androidx.cardview.R$attr: int cardMaxElevation -wangdaye.com.geometricweather.R$styleable: int[] PopupWindow -wangdaye.com.geometricweather.R$styleable: int ActionBar_height -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ListView_DropDown -wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_colored -james.adaptiveicon.R$drawable: int abc_scrubber_track_mtrl_alpha -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -com.google.android.material.R$layout: int select_dialog_multichoice_material -androidx.constraintlayout.widget.R$string: int abc_action_bar_up_description -com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context) -com.xw.repo.bubbleseekbar.R$drawable: int tooltip_frame_dark -wangdaye.com.geometricweather.R$dimen: int default_drawer_width -wangdaye.com.geometricweather.R$drawable: int mtrl_dropdown_arrow -androidx.constraintlayout.widget.R$id: int right_icon -androidx.preference.R$styleable: int SwitchPreference_android_summaryOff -wangdaye.com.geometricweather.R$dimen: int notification_big_circle_margin -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_256_GCM_SHA384 -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathEnd(float) -james.adaptiveicon.R$drawable: int notification_icon_background -androidx.preference.R$styleable: int MenuView_preserveIconSpacing -androidx.vectordrawable.animated.R$styleable: int[] GradientColorItem -okhttp3.internal.http2.Http2Stream$FramingSource: long read(okio.Buffer,long) -com.jaredrummler.android.colorpicker.R$anim: R$anim() -com.xw.repo.bubbleseekbar.R$id: int normal -android.didikee.donate.R$style: int Base_Widget_AppCompat_Spinner_Underlined -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onStart() -cyanogenmod.providers.CMSettings$Secure: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) -cyanogenmod.weather.RequestInfo: boolean access$702(cyanogenmod.weather.RequestInfo,boolean) -com.google.android.material.bottomnavigation.BottomNavigationItemView: int getItemPosition() -android.didikee.donate.R$drawable: int abc_ratingbar_indicator_material -com.google.android.material.R$interpolator -com.google.android.material.circularreveal.CircularRevealLinearLayout: CircularRevealLinearLayout(android.content.Context) -com.jaredrummler.android.colorpicker.R$id: int progress_horizontal -io.reactivex.internal.observers.DeferredScalarObserver: void dispose() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -com.google.android.material.R$color: int mtrl_btn_bg_color_selector -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String weatherIcon -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.Observer downstream -okhttp3.OkHttpClient$Builder: java.util.List interceptors -androidx.lifecycle.LifecycleRegistry: void moveToState(androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_78 -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -cyanogenmod.app.ILiveLockScreenManagerProvider: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: android.os.IBinder asBinder() +android.didikee.donate.R$style: int Theme_AppCompat_Light_DialogWhenLarge +okhttp3.HttpUrl$Builder: int port +com.bumptech.glide.integration.okhttp.R$dimen: int notification_big_circle_margin +com.google.android.material.R$styleable: int KeyPosition_motionTarget +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SearchView_ActionBar +android.didikee.donate.R$attr: int listPreferredItemHeightSmall +androidx.swiperefreshlayout.R$id: int tag_unhandled_key_event_manager +com.xw.repo.bubbleseekbar.R$attr: int searchIcon +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean hasKey(java.lang.Object) +androidx.appcompat.R$attr: int autoCompleteTextViewStyle +retrofit2.ParameterHandler$Query: boolean encoded +okhttp3.internal.Util: java.nio.charset.Charset ISO_8859_1 +androidx.appcompat.R$attr: int navigationContentDescription +james.adaptiveicon.R$dimen: int abc_dialog_list_padding_top_no_title +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_title_divider_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: double Value +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Info +com.jaredrummler.android.colorpicker.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_grey +androidx.preference.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +com.google.android.material.R$styleable: int MaterialButton_android_insetBottom +androidx.preference.R$style: int Widget_AppCompat_ActionButton_Overflow +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: void run() +androidx.appcompat.R$attr: int fontWeight +androidx.appcompat.widget.AppCompatTextView: java.lang.CharSequence getText() +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_ActionBar +androidx.viewpager.widget.ViewPager: androidx.viewpager.widget.PagerAdapter getAdapter() +androidx.customview.R$color: int ripple_material_light +androidx.activity.R$styleable: int[] GradientColor +com.xw.repo.bubbleseekbar.R$bool: int abc_config_actionMenuItemAllCaps +androidx.viewpager2.R$attr: R$attr() +android.didikee.donate.R$styleable: int AppCompatTheme_homeAsUpIndicator +androidx.constraintlayout.widget.R$attr: int editTextStyle +cyanogenmod.app.IPartnerInterface: void reboot() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +james.adaptiveicon.R$styleable: int MenuItem_android_alphabeticShortcut +james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar_Small +wangdaye.com.geometricweather.R$attr: int preferenceScreenStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm25() +com.turingtechnologies.materialscrollbar.R$attr: int multiChoiceItemLayout +wangdaye.com.geometricweather.R$attr: int orderingFromXml +androidx.appcompat.R$dimen: int abc_dialog_corner_radius_material +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarDivider +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +cyanogenmod.providers.CMSettings$Secure: float getFloat(android.content.ContentResolver,java.lang.String,float) +wangdaye.com.geometricweather.R$attr: int cardElevation +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenManager getInstance(android.content.Context) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlActivated +androidx.hilt.R$styleable: int FontFamilyFont_android_fontVariationSettings +okhttp3.internal.http.CallServerInterceptor$CountingSink +cyanogenmod.weather.WeatherInfo: int getTemperatureUnit() +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_dither +wangdaye.com.geometricweather.R$layout: int abc_screen_toolbar +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_maxButtonHeight +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onDetachedFromWindow() +androidx.appcompat.widget.SwitchCompat: void setSplitTrack(boolean) +androidx.preference.R$id: int switchWidget +androidx.loader.R$dimen: int notification_top_pad +com.google.gson.stream.JsonWriter: int stackSize +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Info +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_title +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void drain() +androidx.appcompat.R$dimen: int abc_action_bar_icon_vertical_padding_material +androidx.preference.R$attr: int drawerArrowStyle +androidx.appcompat.R$color: int abc_tint_btn_checkable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX +com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingBottom() +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int MISSED_STATE +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService: ForegroundNormalUpdateService() +androidx.viewpager2.R$id: int accessibility_custom_action_18 +okio.Sink +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void cancel() +cyanogenmod.platform.R$bool +wangdaye.com.geometricweather.R$attr: int textAppearanceLineHeightEnabled +androidx.fragment.app.BackStackState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay +androidx.preference.R$attr: int maxButtonHeight +okhttp3.internal.Util +android.didikee.donate.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setPubTime(java.lang.String) +io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer,io.reactivex.functions.Consumer) +retrofit2.Utils$WildcardTypeImpl: boolean equals(java.lang.Object) +cyanogenmod.providers.ThemesContract$PreviewColumns +com.xw.repo.bubbleseekbar.R$attr: int alertDialogTheme +androidx.core.R$id: int accessibility_custom_action_1 +androidx.loader.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: MfHistoryResult() +androidx.constraintlayout.widget.R$layout +com.jaredrummler.android.colorpicker.R$string: int abc_prepend_shortcut_label +com.google.android.material.progressindicator.ProgressIndicator: void setTrackColor(int) +com.google.android.material.bottomappbar.BottomAppBar: void setFabCradleRoundedCornerRadius(float) +com.google.android.material.R$style: int Widget_Support_CoordinatorLayout +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_width_major +okio.ByteString: long serialVersionUID +androidx.constraintlayout.widget.R$attr: int alertDialogTheme +wangdaye.com.geometricweather.R$styleable: int ActionBar_background +androidx.appcompat.R$styleable: int MenuView_android_windowAnimationStyle +com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_DropDownUp +androidx.appcompat.R$dimen: int abc_dialog_min_width_minor +androidx.preference.R$style: int Widget_AppCompat_Spinner_Underlined +cyanogenmod.app.Profile: java.util.UUID[] getSecondaryUuids() +wangdaye.com.geometricweather.db.entities.HourlyEntity: boolean daylight +io.reactivex.exceptions.ProtocolViolationException: ProtocolViolationException(java.lang.String) +com.google.android.material.R$styleable: int AppCompatSeekBar_tickMarkTintMode +androidx.recyclerview.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.settings.fragments.SettingsFragment: SettingsFragment() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +okhttp3.HttpUrl: okhttp3.HttpUrl get(java.net.URI) +wangdaye.com.geometricweather.R$dimen: int material_icon_size +io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.SingleSource) +wangdaye.com.geometricweather.R$styleable: int[] FragmentContainerView +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: android.os.IBinder asBinder() +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: ObservableConcatMapCompletable$ConcatMapCompletableObserver(io.reactivex.CompletableObserver,io.reactivex.functions.Function,io.reactivex.internal.util.ErrorMode,int) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_TextInputEditText +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_iconStartPadding +androidx.preference.R$dimen: int notification_top_pad +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +cyanogenmod.weatherservice.WeatherProviderService +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit MB +com.google.android.material.R$style: int TextAppearance_AppCompat_Subhead +androidx.appcompat.R$drawable: int abc_list_divider_material +wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_container +io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.Observer) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_LED_OFF_VALIDATOR +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: boolean hasValue +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$drawable: int notif_temp_101 +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List consequences +androidx.appcompat.R$styleable: int AppCompatTheme_windowMinWidthMajor +wangdaye.com.geometricweather.R$dimen: int little_margin +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_textColor +james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +com.google.android.material.R$styleable: int[] ShapeableImageView +cyanogenmod.providers.CMSettings$System: boolean putLong(android.content.ContentResolver,java.lang.String,long) +com.google.android.material.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +com.google.android.material.R$styleable: int FloatingActionButton_showMotionSpec +okhttp3.internal.http2.Http2Connection$Builder: java.net.Socket socket +androidx.constraintlayout.widget.R$id: int action_menu_presenter +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableLeft +androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.appcompat.R$drawable: int abc_scrubber_primary_mtrl_alpha +androidx.preference.R$attr: int editTextStyle +com.google.android.material.floatingactionbutton.FloatingActionButton: void setExpandedComponentIdHint(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: CaiYunForecastResult$PrecipitationBean() +wangdaye.com.geometricweather.R$drawable: int abc_list_longpressed_holo +androidx.recyclerview.R$id: int tag_screen_reader_focusable +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getPlaceholderTextColor() +com.google.gson.stream.JsonScope: int NONEMPTY_ARRAY +okhttp3.internal.http2.Http2Connection$5: okhttp3.internal.http2.Http2Connection this$0 +com.turingtechnologies.materialscrollbar.R$attr: int chipIcon +androidx.preference.R$attr: int drawableTint +com.google.android.material.R$style: int Widget_AppCompat_Button_Colored +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListMenuView +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String info +james.adaptiveicon.R$styleable: int MenuView_android_verticalDivider +wangdaye.com.geometricweather.R$attr: int paddingRightSystemWindowInsets +wangdaye.com.geometricweather.R$id: int widget_week_temp +cyanogenmod.profiles.AirplaneModeSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean isDisposed() +james.adaptiveicon.R$color: int primary_material_light +androidx.preference.R$styleable: int ActionBar_titleTextStyle +android.didikee.donate.R$style: int TextAppearance_AppCompat_Display2 +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchTextAppearance +androidx.preference.R$attr: int buttonIconDimen +com.google.android.material.slider.BaseSlider: void setHaloTintList(android.content.res.ColorStateList) +com.jaredrummler.android.colorpicker.R$color: int highlighted_text_material_dark +cyanogenmod.externalviews.ExternalViewProviderService: cyanogenmod.externalviews.ExternalViewProviderService$Provider createExternalView(android.os.Bundle) +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_margin +androidx.recyclerview.R$attr: int font +okhttp3.internal.http2.PushObserver$1: boolean onHeaders(int,java.util.List,boolean) +androidx.constraintlayout.widget.R$attr: int subtitle +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.util.List _queryWeatherEntity_MinutelyEntityList(java.lang.String,java.lang.String) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar +androidx.loader.R$styleable: int ColorStateListItem_android_alpha +androidx.cardview.widget.CardView: CardView(android.content.Context) +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetRight +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onComplete() +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_disabled_material_light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +androidx.appcompat.widget.ActionMenuView: ActionMenuView(android.content.Context) +com.google.android.material.R$string: int path_password_eye +com.jaredrummler.android.colorpicker.R$string: int cpv_transparency +androidx.appcompat.R$color: int abc_primary_text_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int ThunderstormProbability +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection connection +android.didikee.donate.R$styleable: int Toolbar_contentInsetStart +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context,android.util.AttributeSet) +retrofit2.Utils: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: java.lang.Exception $this_suspendAndThrow$inlined +wangdaye.com.geometricweather.R$attr: int height +james.adaptiveicon.AdaptiveIconView +com.xw.repo.bubbleseekbar.R$attr: int windowActionBarOverlay +wangdaye.com.geometricweather.R$attr: int updatesContinuously +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context) +wangdaye.com.geometricweather.R$dimen: int design_snackbar_action_inline_max_width +com.bumptech.glide.R$dimen: int compat_button_inset_horizontal_material +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: void cancel() +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayTodayStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean delayErrors +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerError(java.lang.Throwable) +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickTintList() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver) +androidx.appcompat.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_color_disabled +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeRealFeelShaderTemperature +wangdaye.com.geometricweather.R$layout: int abc_action_bar_up_container +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onScreenTurnedOn() +androidx.appcompat.widget.AppCompatImageButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +androidx.appcompat.R$attr: int actionBarTheme +androidx.legacy.coreutils.R$id: int time +com.turingtechnologies.materialscrollbar.R$color: int error_color_material_dark +com.google.android.material.R$styleable: int AppCompatImageView_tintMode +cyanogenmod.app.ProfileGroup: android.net.Uri mSoundOverride +com.turingtechnologies.materialscrollbar.R$styleable: int[] GradientColor +androidx.appcompat.R$styleable: int AppCompatTextView_textLocale +androidx.constraintlayout.widget.R$styleable: int Constraint_pathMotionArc +wangdaye.com.geometricweather.R$color: int mtrl_chip_surface_color +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme +io.reactivex.internal.observers.InnerQueuedObserver: boolean isDone() +okio.RealBufferedSink: void write(okio.Buffer,long) +com.google.android.material.chip.Chip: void setChipStrokeWidthResource(int) +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_icon +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_gravity +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitationDuration(java.lang.Float) +cyanogenmod.themes.ThemeManager$1$1: cyanogenmod.themes.ThemeManager$1 this$1 +androidx.vectordrawable.R$attr: R$attr() +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$attr: int actionOverflowButtonStyle +wangdaye.com.geometricweather.R$color: int mtrl_btn_transparent_bg_color +wangdaye.com.geometricweather.R$color: int colorTextContent +androidx.constraintlayout.widget.R$styleable: int SearchView_commitIcon +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView +okio.Pipe: okio.Source source +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias +androidx.preference.R$styleable: int AppCompatTheme_actionModePasteDrawable +wangdaye.com.geometricweather.R$color: int abc_btn_colored_borderless_text_material +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean gate +androidx.appcompat.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +com.google.android.material.R$string: int mtrl_exceed_max_badge_number_suffix +com.google.android.material.R$styleable: int AppCompatTextHelper_android_textAppearance +com.google.android.material.R$styleable: int ConstraintSet_android_layout_width +com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_borderColor +androidx.appcompat.R$style: int Widget_Compat_NotificationActionContainer +androidx.preference.R$styleable: int[] ButtonBarLayout +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalGap +retrofit2.ParameterHandler$RelativeUrl: java.lang.reflect.Method method +com.google.android.material.R$attr: int chipSurfaceColor +wangdaye.com.geometricweather.db.entities.WeatherEntity +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: void execute() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_body_2_material +cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup getProfileGroup(java.util.UUID) +wangdaye.com.geometricweather.R$array: int widget_card_style_values +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: boolean isEmpty() +android.support.v4.app.INotificationSideChannel: void cancelAll(java.lang.String) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul1H +com.google.android.material.navigation.NavigationView: int getItemIconPadding() +androidx.appcompat.R$drawable: int abc_list_selector_disabled_holo_light +wangdaye.com.geometricweather.R$dimen: int widget_large_title_text_size +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animDuration +com.xw.repo.bubbleseekbar.R$color: int background_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial +cyanogenmod.providers.CMSettings$NameValueCache: long mValuesVersion +okhttp3.HttpUrl$Builder: boolean isDotDot(java.lang.String) +androidx.appcompat.resources.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxBackgroundColor +org.greenrobot.greendao.AbstractDao: void updateInsideSynchronized(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement,boolean) +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_lineHeight +androidx.preference.R$styleable: int CheckBoxPreference_android_disableDependentsState +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: long getLtoDownloadInterval() +com.google.android.material.R$styleable: int KeyPosition_transitionEasing +io.reactivex.internal.subscriptions.SubscriptionHelper: void reportSubscriptionSet() +wangdaye.com.geometricweather.R$id: int item_about_translator_subtitle +com.google.android.material.R$attr: int buttonPanelSideLayout +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_attributeName +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_EXPORT_WITH_RC4_40_MD5 +com.google.android.material.R$styleable: int FloatingActionButton_borderWidth +okhttp3.Cache: void abortQuietly(okhttp3.internal.cache.DiskLruCache$Editor) +wangdaye.com.geometricweather.R$string: int key_temperature_unit +cyanogenmod.externalviews.ExternalView: void onDetachedFromWindow() +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_getCurrentLiveLockScreen +cyanogenmod.app.Profile$DozeMode: int DEFAULT +androidx.appcompat.resources.R$styleable: int GradientColorItem_android_color +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTextAppearance(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust WindGust +james.adaptiveicon.R$drawable: int abc_ic_go_search_api_material +wangdaye.com.geometricweather.R$styleable: int MenuView_android_windowAnimationStyle +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: void setLineColor(int) +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.preference.R$id: int accessibility_custom_action_15 +androidx.appcompat.R$dimen: int notification_main_column_padding_top +androidx.core.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult +androidx.hilt.R$id: int fragment_container_view_tag +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeRealFeelTemperature() +cyanogenmod.weather.CMWeatherManager$1$1: CMWeatherManager$1$1(cyanogenmod.weather.CMWeatherManager$1,java.lang.String) +cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.IAppSuggestManager getService() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void slideLockscreenIn() +wangdaye.com.geometricweather.R$id: int editText +wangdaye.com.geometricweather.R$color: int dim_foreground_disabled_material_light +wangdaye.com.geometricweather.R$id: int design_menu_item_action_area_stub +androidx.activity.R$id: int accessibility_custom_action_12 +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActivityChooserView +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SearchView_ActionBar +android.didikee.donate.R$color: int switch_thumb_material_light +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getAbbreviation(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String logo +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getDisplayColorCalibration() +okhttp3.ConnectionSpec$Builder: boolean tls +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarDivider +okhttp3.internal.http2.Http2Codec: void cancel() +io.reactivex.internal.util.VolatileSizeArrayList: int size() +com.xw.repo.bubbleseekbar.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cdp +androidx.vectordrawable.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_al +android.didikee.donate.R$attr: int actionBarTheme +androidx.constraintlayout.widget.R$color: int dim_foreground_disabled_material_dark +androidx.fragment.R$anim +com.turingtechnologies.materialscrollbar.R$layout: int design_menu_item_action_area +cyanogenmod.providers.CMSettings$Secure: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgressColor(int) +androidx.constraintlayout.widget.R$id: int spread_inside +androidx.customview.R$styleable: int ColorStateListItem_alpha +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_AES_128_CBC_SHA +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_font +okhttp3.internal.cache.DiskLruCache$2: void onException(java.io.IOException) +wangdaye.com.geometricweather.R$styleable: int SearchView_closeIcon +com.google.android.material.R$color: int cardview_dark_background +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void drainLoop() +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State BLOCKED +androidx.appcompat.R$style: int Widget_AppCompat_Light_ListPopupWindow +com.google.android.material.R$style: int Widget_AppCompat_ListMenuView +cyanogenmod.providers.CMSettings$Global: java.lang.String WEATHER_TEMPERATURE_UNIT +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String mixNMatchKeyToComponent(java.lang.String) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.drawerlayout.R$attr: int ttcIndex +androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotationX +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle +androidx.hilt.work.R$id: int actions +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_end_padding +cyanogenmod.weatherservice.IWeatherProviderService$Stub +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_shapeAppearance +androidx.appcompat.R$style: int Base_V23_Theme_AppCompat +androidx.preference.R$id: int textSpacerNoTitle +wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: DaoMaster$OpenHelper(android.content.Context,java.lang.String) +androidx.drawerlayout.R$id: int line1 +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Button +androidx.activity.R$styleable: int GradientColor_android_gradientRadius +androidx.drawerlayout.R$id: int title +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_dither +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitation() +retrofit2.Retrofit: retrofit2.Converter nextResponseBodyConverter(retrofit2.Converter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[]) +androidx.coordinatorlayout.R$dimen: int compat_notification_large_icon_max_width +com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getIndicatorHeight() +okio.Source: void close() +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_3 +androidx.constraintlayout.widget.R$styleable: int KeyCycle_curveFit +cyanogenmod.hardware.CMHardwareManager: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_tintMode -wangdaye.com.geometricweather.R$string: int content_des_delete_flag -com.jaredrummler.android.colorpicker.R$string: int abc_action_mode_done -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.lang.String getRiseTime(android.content.Context) -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter -androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog_Alert -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog -com.jaredrummler.android.colorpicker.R$attr: int barLength -wangdaye.com.geometricweather.R$string: int pressure -okhttp3.internal.tls.BasicTrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalAlign -androidx.hilt.lifecycle.R$anim -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -com.bumptech.glide.integration.okhttp.R$styleable: int[] FontFamily -androidx.appcompat.widget.AppCompatTextView: void setLastBaselineToBottomHeight(int) -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_background -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItem -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabTextStyle -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_textOff -androidx.fragment.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.String TABLENAME -androidx.loader.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: void setProgress(float) -com.google.android.material.R$styleable: int PopupWindow_android_popupAnimationStyle -retrofit2.ParameterHandler$FieldMap: retrofit2.Converter valueConverter -androidx.appcompat.widget.ActionBarContextView: void setVisibility(int) -okhttp3.internal.ws.RealWebSocket$2: okhttp3.internal.ws.RealWebSocket this$0 -wangdaye.com.geometricweather.R$integer: int mtrl_btn_anim_delay_ms -androidx.preference.R$attr: int barLength -okio.Source: okio.Timeout timeout() -androidx.work.WorkInfo$State: boolean isFinished() -androidx.drawerlayout.R$styleable: int ColorStateListItem_android_color -android.didikee.donate.R$attr: int actionModeSelectAllDrawable -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type CONSTANT -okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String) -androidx.appcompat.resources.R$color: int ripple_material_light -com.google.android.material.slider.Slider: void setThumbStrokeColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$styleable: int[] MaterialTextAppearance -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_HOME_LONG_PRESS_ACTION -android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -james.adaptiveicon.R$dimen: int abc_action_button_min_height_material -androidx.hilt.work.R$color: R$color() -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.R$id: int dialog_location_help_providerContainer -androidx.appcompat.R$style: int Base_V28_Theme_AppCompat -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.constraintlayout.widget.R$attr: int thickness -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: AccuCurrentResult$RealFeelTemperature$Metric() -wangdaye.com.geometricweather.R$string: int feedback_black_text -wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_grey -wangdaye.com.geometricweather.R$styleable: int Chip_android_textSize -cyanogenmod.app.ICMTelephonyManager: void setDefaultSmsSub(int) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Green -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_splitTrack -cyanogenmod.app.IPartnerInterface: boolean setZenMode(int) -androidx.appcompat.R$drawable: int abc_list_divider_mtrl_alpha -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void cancelSources() -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerY -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.R$attr: int actionModePopupWindowStyle -okio.BufferedSource -io.reactivex.Observable: io.reactivex.Observable concatMapMaybe(io.reactivex.functions.Function,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction Direction -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayVerticalProvider: WidgetClockDayVerticalProvider() -okhttp3.internal.cache2.FileOperator: FileOperator(java.nio.channels.FileChannel) -androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerColor -okio.Pipe$PipeSink: okio.Timeout timeout() -com.jaredrummler.android.colorpicker.R$attr: int controlBackground -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator -retrofit2.Utils: java.lang.reflect.Type getSupertype(java.lang.reflect.Type,java.lang.Class,java.lang.Class) -androidx.vectordrawable.R$attr: int ttcIndex -com.jaredrummler.android.colorpicker.R$styleable: int[] Preference -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -cyanogenmod.app.ProfileGroup$Mode: ProfileGroup$Mode(java.lang.String,int) -com.google.android.material.R$id: int action_divider -wangdaye.com.geometricweather.R$string: int key_text_color -androidx.recyclerview.R$id: int accessibility_custom_action_20 -wangdaye.com.geometricweather.R$id: int item_card_display -wangdaye.com.geometricweather.common.ui.activities.AlertActivity -com.turingtechnologies.materialscrollbar.R$styleable: int[] Chip -androidx.loader.R$styleable: int FontFamily_fontProviderFetchStrategy -com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusBottomStart() -androidx.constraintlayout.widget.R$layout: int notification_action -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: long contentLength() -androidx.constraintlayout.widget.R$attr: int touchAnchorId -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean isDisposed() -androidx.constraintlayout.widget.R$anim: int abc_slide_out_top -androidx.appcompat.R$drawable: int abc_ic_star_half_black_48dp -com.github.rahatarmanahmed.cpv.CircularProgressView: android.graphics.RectF bounds -com.jaredrummler.android.colorpicker.R$dimen: int hint_pressed_alpha_material_dark -wangdaye.com.geometricweather.R$styleable: int Variant_region_heightMoreThan -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.R$color: int colorRoot_light -wangdaye.com.geometricweather.R$styleable: int ChipGroup_checkedChip -com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_circle -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable publish() -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.lang.Object leaveTransform(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalBias +androidx.activity.R$color: int ripple_material_light +okio.Buffer$UnsafeCursor: int seek(long) +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode NIGHT +okhttp3.Cookie: boolean matches(okhttp3.HttpUrl) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float total +androidx.customview.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$string: int mini_temp +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getRainPrecipitation() +androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context) +com.google.android.material.textfield.TextInputLayout: void setTypeface(android.graphics.Typeface) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_padding +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Selected +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_CBC_SHA +androidx.swiperefreshlayout.R$layout: int custom_dialog +com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_colored +com.jaredrummler.android.colorpicker.R$styleable: int[] SearchView +cyanogenmod.app.Profile$TriggerState: int ON_A2DP_CONNECT +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showDialog +okhttp3.internal.platform.Platform: void connectSocket(java.net.Socket,java.net.InetSocketAddress,int) +com.github.rahatarmanahmed.cpv.R$bool: R$bool() +okhttp3.internal.connection.StreamAllocation: okhttp3.Call call +com.turingtechnologies.materialscrollbar.R$attr: int indeterminateProgressStyle +io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Object call() +okhttp3.logging.HttpLoggingInterceptor$Logger$1: void log(java.lang.String) +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder mRemote +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Surface +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: java.lang.Object invoke(java.lang.Object) +androidx.cardview.R$style +james.adaptiveicon.R$attr: int listPreferredItemHeight +com.xw.repo.bubbleseekbar.R$attr: int bsb_track_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.util.List getValue() +com.turingtechnologies.materialscrollbar.R$id: int textinput_counter +wangdaye.com.geometricweather.R$string: int precipitation_probability +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float co +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogIcon +androidx.constraintlayout.widget.R$id: int tag_unhandled_key_event_manager +okhttp3.Address: java.lang.String toString() +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int CLEAR_NIGHT +androidx.constraintlayout.widget.R$dimen: int abc_text_size_body_2_material +com.jaredrummler.android.colorpicker.R$attr: int fontStyle +androidx.vectordrawable.R$layout: R$layout() +wangdaye.com.geometricweather.R$drawable: int flag_br +okhttp3.internal.http2.Http2Connection$7: Http2Connection$7(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okhttp3.internal.http2.ErrorCode) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.reflect.Type responseType() +wangdaye.com.geometricweather.R$attr: int tabTextAppearance +com.turingtechnologies.materialscrollbar.R$color: int material_deep_teal_500 +wangdaye.com.geometricweather.R$attr: int haloColor +okhttp3.internal.Util: java.lang.String hostHeader(okhttp3.HttpUrl,boolean) +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation[] values() +com.google.android.material.R$styleable: int ActionMode_backgroundSplit +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean cancelled +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetStartWithNavigation +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int FUSED +androidx.fragment.R$drawable: R$drawable() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setZh_CN(java.lang.String) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Large +com.google.android.material.button.MaterialButton: void setIconTint(android.content.res.ColorStateList) +androidx.lifecycle.AndroidViewModel: android.app.Application getApplication() +okhttp3.internal.http2.Http2Writer: void rstStream(int,okhttp3.internal.http2.ErrorCode) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleTint +okhttp3.internal.http1.Http1Codec: int state +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_WAKE_SCREEN_VALIDATOR +wangdaye.com.geometricweather.R$id: int widget_clock_day_center +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getDistrict() +com.google.android.material.R$string: int abc_searchview_description_clear +james.adaptiveicon.R$styleable: int AppCompatTheme_panelMenuListTheme +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService this$0 +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getType() +com.turingtechnologies.materialscrollbar.R$dimen: int notification_right_side_padding_top +okhttp3.internal.http2.Http2Reader$ContinuationSource: int left +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getZh_CN() +okhttp3.MediaType: java.lang.String QUOTED +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_WIND +androidx.viewpager2.R$id: int tag_accessibility_clickable_spans +com.google.android.material.R$styleable: int Tooltip_android_textAppearance +androidx.constraintlayout.widget.R$styleable: int Constraint_android_alpha +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit valueOf(java.lang.String) +com.google.android.material.R$attr: int layout_collapseParallaxMultiplier +okhttp3.CacheControl: boolean noCache() +androidx.work.R$id: int accessibility_custom_action_16 +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode lvNext() +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getRain() +androidx.constraintlayout.widget.R$styleable: int KeyPosition_motionTarget +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property CityId +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property CityId +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_2 +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$dimen: int current_weather_icon_container_size +okhttp3.Challenge: java.nio.charset.Charset charset() +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_7 +androidx.lifecycle.extensions.R$dimen: R$dimen() +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_switchTextOff +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: boolean done +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_anchor +okhttp3.logging.LoggingEventListener: void dnsStart(okhttp3.Call,java.lang.String) +io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription[] values() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.CompositeDisposable set +cyanogenmod.weather.CMWeatherManager$2$2 +okhttp3.RequestBody$2: void writeTo(okio.BufferedSink) +androidx.hilt.work.R$dimen: int notification_big_circle_margin +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetEndWithActions +cyanogenmod.platform.Manifest$permission: java.lang.String MANAGE_ALARMS +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginBottom(int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windDirection +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String zh_TW +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionViewClass +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter endArray() +io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,io.reactivex.functions.Function,int) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_CAMELLIA_256_CBC_SHA +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeManager getInstance(android.content.Context) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_74 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection +com.bumptech.glide.R$dimen: int notification_action_icon_size +com.google.android.material.R$style: int ShapeAppearanceOverlay_TopRightDifferentCornerSize +wangdaye.com.geometricweather.R$id: int activity_weather_daily_title +androidx.viewpager2.R$styleable: int RecyclerView_android_clipToPadding +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ImageButton +cyanogenmod.app.Profile: void setDozeMode(int) +com.turingtechnologies.materialscrollbar.R$integer: int status_bar_notification_info_maxnum +com.google.android.material.R$color: int design_dark_default_color_primary +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: void setValue(java.util.List) +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Light +com.xw.repo.bubbleseekbar.R$attr: int tickMarkTintMode +android.didikee.donate.R$attr: int alpha +com.google.android.material.R$styleable: int Constraint_layout_goneMarginLeft +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_CheckBox +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_NoActionBar +com.turingtechnologies.materialscrollbar.R$attr: int helperTextTextAppearance +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivityStopped(android.app.Activity) +androidx.appcompat.R$styleable: int StateListDrawable_android_constantSize +com.google.android.material.button.MaterialButton: void setOnPressedChangeListenerInternal(com.google.android.material.button.MaterialButton$OnPressedChangeListener) +androidx.viewpager2.R$dimen: int compat_notification_large_icon_max_width +okhttp3.internal.http2.Http2Connection: boolean shutdown +okhttp3.internal.http1.Http1Codec: okio.BufferedSink sink +androidx.drawerlayout.R$layout: int notification_template_custom_big +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: long serialVersionUID +com.xw.repo.bubbleseekbar.R$dimen: int notification_big_circle_margin +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogTheme +com.google.android.material.R$attr: int customNavigationLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setPubTime(java.util.Date) +com.google.android.material.R$styleable: int CoordinatorLayout_statusBarBackground +androidx.vectordrawable.animated.R$dimen +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String findMostSpecific(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.Float getSpeed() +cyanogenmod.app.Profile$LockMode: int DISABLE +com.google.android.material.R$styleable: int TabLayout_tabMinWidth +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderTitle +androidx.appcompat.view.menu.ActionMenuItemView: void setPopupCallback(androidx.appcompat.view.menu.ActionMenuItemView$PopupCallback) +androidx.viewpager2.R$id: int accessibility_custom_action_4 +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType[] values() +com.jaredrummler.android.colorpicker.R$attr: int selectable +cyanogenmod.app.CustomTile$ExpandedStyle$1: CustomTile$ExpandedStyle$1() +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getTotal() +androidx.legacy.coreutils.R$id: int right_icon +wangdaye.com.geometricweather.R$string: int content_des_moonset +com.github.rahatarmanahmed.cpv.CircularProgressView$4: CircularProgressView$4(com.github.rahatarmanahmed.cpv.CircularProgressView) +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_default_mtrl_shape +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getIce() +androidx.appcompat.R$styleable: int AlertDialog_listLayout +wangdaye.com.geometricweather.R$string: int date_format_widget_long +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_light +androidx.constraintlayout.widget.R$attr: int transitionEasing +androidx.appcompat.R$dimen: int abc_dialog_fixed_height_minor +wangdaye.com.geometricweather.R$attr: int titleMarginBottom +wangdaye.com.geometricweather.R$styleable: int[] AppBarLayout +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_showMotionSpec +com.turingtechnologies.materialscrollbar.R$id: int action_bar_activity_content +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Time +cyanogenmod.externalviews.ExternalView$6 +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode valueOf(java.lang.String) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean mainDone +androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$string: int character_counter_content_description +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity +okhttp3.internal.http.CallServerInterceptor +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: void setValue(java.lang.String) +cyanogenmod.profiles.AirplaneModeSettings: boolean isOverride() +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTextHelper +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetStartWithNavigation +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void dispose() +io.reactivex.internal.util.NotificationLite$ErrorNotification: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$layout +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: long beginTime +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onNext(java.lang.Object) +com.google.android.material.R$style: int Widget_AppCompat_Light_SearchView +com.google.android.material.R$style: int Platform_MaterialComponents_Light_Dialog +wangdaye.com.geometricweather.R$layout: int preference_dropdown +com.turingtechnologies.materialscrollbar.R$attr: int chipGroupStyle +com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +androidx.hilt.lifecycle.R$string: int status_bar_notification_info_overflow +androidx.lifecycle.LiveData$1: androidx.lifecycle.LiveData this$0 +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +androidx.activity.R$styleable: int FontFamilyFont_android_font +cyanogenmod.app.Profile: java.util.UUID mUuid +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.String TABLENAME +wangdaye.com.geometricweather.R$color: int switch_thumb_disabled_material_dark +com.google.android.material.R$attr: int textAppearanceCaption +com.google.android.material.R$attr: int itemTextAppearanceActive +okio.Buffer: int selectPrefix(okio.Options,boolean) +retrofit2.BuiltInConverters$VoidResponseBodyConverter: retrofit2.BuiltInConverters$VoidResponseBodyConverter INSTANCE +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: MfForecastV2Result$ForecastProperties$ProbabilityForecastV2() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +android.didikee.donate.R$attr: int overlapAnchor +wangdaye.com.geometricweather.R$string: int feedback_background_location_title +androidx.hilt.work.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: int UnitType +com.google.android.material.R$layout: int mtrl_picker_dialog +com.google.android.material.R$styleable: int AppCompatTextView_fontVariationSettings +okhttp3.internal.http.HttpHeaders: int skipUntil(java.lang.String,int,java.lang.String) +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy STRING +com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingLeft() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: double Value +wangdaye.com.geometricweather.R$attr: int motionInterpolator +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +androidx.preference.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Small +retrofit2.RequestFactory: java.lang.reflect.Method method +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherText(java.lang.String) +wangdaye.com.geometricweather.R$id: int fragment +james.adaptiveicon.R$attr: int searchHintIcon +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar +androidx.dynamicanimation.R$string: R$string() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_48dp +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: int getChartBottom() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.google.android.material.datepicker.MaterialCalendarGridView +io.reactivex.Observable: io.reactivex.Observable timestamp() +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +okhttp3.internal.http2.Hpack$Reader: void readHeaders() +cyanogenmod.profiles.LockSettings$1: cyanogenmod.profiles.LockSettings createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_clear_material +wangdaye.com.geometricweather.db.entities.WeatherEntity: long timeStamp +com.google.android.material.R$style: int Theme_AppCompat_DialogWhenLarge +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.lang.String MobileLink +androidx.constraintlayout.widget.R$id: int list_item +james.adaptiveicon.R$drawable: int abc_text_select_handle_middle_mtrl_dark +com.google.android.material.R$attr: int dragThreshold +androidx.constraintlayout.widget.R$styleable: int Transform_android_transformPivotX +androidx.preference.R$id: int title +wangdaye.com.geometricweather.R$string: int sp_widget_daily_trend_setting +com.bumptech.glide.R$style: R$style() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarPopupTheme +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabView +androidx.preference.R$styleable: int AppCompatTheme_listMenuViewStyle +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_height_material +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginTop() +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState PAUSED +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView +androidx.appcompat.widget.Toolbar: androidx.appcompat.widget.ActionMenuPresenter getOuterActionMenuPresenter() +android.didikee.donate.R$style: int Widget_AppCompat_Light_PopupMenu +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.WeatherEntityDao getWeatherEntityDao() +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light +androidx.constraintlayout.widget.R$color: int primary_text_default_material_dark +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int so2 +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusBottomEnd() +okhttp3.FormBody: FormBody(java.util.List,java.util.List) +androidx.appcompat.R$style: int Base_AlertDialog_AppCompat +com.google.android.material.slider.BaseSlider: int getActiveThumbIndex() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyle +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_left_mtrl_light +androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_percent +androidx.fragment.R$layout: int notification_action +androidx.appcompat.R$drawable: int notification_bg_low +android.didikee.donate.R$attr: int contentInsetLeft +wangdaye.com.geometricweather.R$layout: int activity_live_wallpaper_config +okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.Object createAndOpen(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar +androidx.constraintlayout.widget.R$drawable: int abc_ic_search_api_material +okio.Base64: Base64() +androidx.constraintlayout.widget.R$drawable: int abc_switch_track_mtrl_alpha +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_HOME_DOUBLE_TAP_ACTION_VALIDATOR +james.adaptiveicon.R$styleable: int Toolbar_titleMarginEnd +okio.RealBufferedSource: boolean closed +androidx.appcompat.R$id: int action_mode_close_button +io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.CompletableObserver) +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String value +androidx.preference.R$id: int content +androidx.coordinatorlayout.R$id: int accessibility_custom_action_17 +androidx.coordinatorlayout.R$style: int Widget_Compat_NotificationActionText +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Subhead +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitationProbability(java.lang.Float) +androidx.viewpager2.R$styleable: int GradientColor_android_gradientRadius +com.jaredrummler.android.colorpicker.R$style: int Base_V26_Widget_AppCompat_Toolbar +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endColor +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void remove(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) +com.xw.repo.bubbleseekbar.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$attr: int fontWeight +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_behavior +wangdaye.com.geometricweather.R$attr: int backgroundTint +androidx.appcompat.R$attr: int buttonBarButtonStyle +com.google.android.material.R$color: int design_error +wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean hasKey(java.lang.Object) +com.bumptech.glide.R$styleable: int FontFamilyFont_ttcIndex +james.adaptiveicon.R$styleable: int AppCompatTheme_radioButtonStyle +androidx.lifecycle.Lifecycling: java.lang.reflect.Constructor generatedConstructor(java.lang.Class) +wangdaye.com.geometricweather.R$layout: int notification_template_custom_big +com.jaredrummler.android.colorpicker.R$layout: int abc_dialog_title_material +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +com.jaredrummler.android.colorpicker.R$id: int spinner +androidx.preference.R$drawable: int abc_textfield_search_activated_mtrl_alpha +okhttp3.internal.ws.WebSocketWriter: okio.Sink newMessageSink(int,long) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_28 +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_reverseLayout +androidx.preference.R$styleable: int Preference_android_enabled +androidx.appcompat.R$attr: int fontProviderCerts +james.adaptiveicon.R$styleable: int Toolbar_collapseContentDescription +androidx.drawerlayout.R$layout +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Menu +android.didikee.donate.R$drawable: R$drawable() +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerColor +androidx.preference.R$style: int Base_Widget_AppCompat_Button_Small +com.xw.repo.bubbleseekbar.R$styleable: int[] Spinner +androidx.recyclerview.R$style: int Widget_Compat_NotificationActionText +androidx.appcompat.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +com.google.android.material.R$attr: int layoutDuringTransition +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: WeatherEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +androidx.preference.R$attr: int alertDialogButtonGroupStyle +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_colored_material +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean checkTerminate() +com.google.android.material.textfield.TextInputLayout: int getHelperTextCurrentTextColor() +com.google.android.material.R$styleable: int Layout_layout_constraintDimensionRatio +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_81 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: int UnitType +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_backgroundTint +com.xw.repo.bubbleseekbar.R$id: int right_icon +com.turingtechnologies.materialscrollbar.R$styleable: int RecycleListView_paddingBottomNoButtons +androidx.appcompat.R$styleable: int SearchView_commitIcon +com.turingtechnologies.materialscrollbar.R$color: int accent_material_light +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.String dailyWeatherIcon +okhttp3.internal.platform.Jdk9Platform: java.lang.reflect.Method getProtocolMethod +james.adaptiveicon.R$attr: int listPreferredItemHeightLarge +com.google.android.material.R$style +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.Observer downstream +com.xw.repo.bubbleseekbar.R$drawable: int abc_switch_track_mtrl_alpha +wangdaye.com.geometricweather.R$layout: int container_main_header +io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean) +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onComplete() +com.bumptech.glide.Registry$NoSourceEncoderAvailableException +okhttp3.internal.ws.RealWebSocket$1: RealWebSocket$1(okhttp3.internal.ws.RealWebSocket) +androidx.recyclerview.R$layout: R$layout() +okhttp3.internal.tls.DistinguishedNameParser: int pos +wangdaye.com.geometricweather.R$id: int seekbar +com.google.android.material.R$attr: int endIconCheckable +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_width_overflow_material +androidx.activity.R$id: int actions +wangdaye.com.geometricweather.db.entities.LocationEntity: java.util.TimeZone timeZone +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService$1 this$1 +android.didikee.donate.R$drawable: int abc_edit_text_material +androidx.work.R$styleable: int GradientColor_android_centerColor +com.bumptech.glide.integration.okhttp.R$styleable: int[] ColorStateListItem +okhttp3.Address: okhttp3.Dns dns +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_icon_padding +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_editor_absoluteX +com.jaredrummler.android.colorpicker.ColorPickerView: int getColor() +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_allowDividerAfterLastItem +com.google.android.material.R$style: int Widget_AppCompat_ProgressBar +io.reactivex.Observable: io.reactivex.disposables.Disposable forEach(io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String unit +com.google.android.material.R$attr: int chipStyle +com.bumptech.glide.integration.okhttp.R$id: int left +com.google.android.material.chip.Chip: void setCloseIconEnabledResource(int) +com.google.android.material.appbar.AppBarLayout$BaseBehavior$SavedState +wangdaye.com.geometricweather.R$styleable: int[] SearchView +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +androidx.lifecycle.ProcessLifecycleOwner$2 +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void drain() +wangdaye.com.geometricweather.R$dimen: int design_fab_translation_z_hovered_focused +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchTextAppearance +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Category +cyanogenmod.weather.RequestInfo: void writeToParcel(android.os.Parcel,int) +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener getRequestListener() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver +android.didikee.donate.R$styleable: int SearchView_queryHint +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_container +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +com.github.rahatarmanahmed.cpv.CircularProgressView: java.util.List access$100(com.github.rahatarmanahmed.cpv.CircularProgressView) +com.bumptech.glide.load.engine.GlideException: void logRootCauses(java.lang.String) +com.bumptech.glide.R$dimen: int notification_right_side_padding_top +androidx.preference.R$attr: int ratingBarStyleSmall +androidx.lifecycle.LifecycleService: int onStartCommand(android.content.Intent,int,int) +com.jaredrummler.android.colorpicker.R$attr +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA +com.jaredrummler.android.colorpicker.R$id: int italic +okhttp3.internal.cache.FaultHidingSink: void close() +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_maxWidth +io.reactivex.Observable: io.reactivex.Observable buffer(int,int) +androidx.hilt.work.R$drawable +androidx.constraintlayout.widget.Guideline: void setGuidelinePercent(float) +james.adaptiveicon.R$attr: int fontProviderFetchTimeout +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type BASELINE +androidx.constraintlayout.widget.R$styleable: int ActionMode_subtitleTextStyle +okhttp3.Credentials: java.lang.String basic(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$id: int tabMode +io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +cyanogenmod.themes.ThemeChangeRequest: java.util.Map getThemeComponentsMap() +io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function) +com.google.android.material.R$styleable: int[] ThemeEnforcement +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar_Small +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionMode +com.jaredrummler.android.colorpicker.R$attr: int listMenuViewStyle +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer getCloudCover() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String unit +androidx.appcompat.R$styleable: int MenuItem_android_enabled +androidx.preference.R$attr: int windowMinWidthMajor +androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconDrawable +androidx.preference.R$attr: int closeIcon +androidx.appcompat.R$styleable: int SwitchCompat_android_thumb +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval valueOf(java.lang.String) +androidx.activity.R$style: int TextAppearance_Compat_Notification +retrofit2.ParameterHandler$HeaderMap: retrofit2.Converter valueConverter +androidx.appcompat.widget.Toolbar: void setOnMenuItemClickListener(androidx.appcompat.widget.Toolbar$OnMenuItemClickListener) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_dialog_btn_min_width +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Colored +io.reactivex.internal.observers.InnerQueuedObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: java.util.concurrent.atomic.AtomicInteger wip +com.google.android.material.R$styleable: int Constraint_android_id +androidx.constraintlayout.widget.R$attr: int listPreferredItemHeightSmall +com.google.android.material.R$attr: int icon +cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder(java.util.List) +wangdaye.com.geometricweather.R$font: int product_sans_black +cyanogenmod.providers.CMSettings$System: android.net.Uri CONTENT_URI +io.reactivex.internal.observers.DeferredScalarDisposable: void complete() +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isSnow() +cyanogenmod.weatherservice.ServiceRequestResult$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert +retrofit2.ServiceMethod: ServiceMethod() +androidx.preference.R$id: int activity_chooser_view_content +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedWidthMinor +androidx.appcompat.R$attr: int imageButtonStyle +androidx.preference.R$attr: int preferenceTheme +androidx.preference.R$styleable: int ListPreference_useSimpleSummaryProvider +androidx.work.impl.utils.futures.DirectExecutor: void execute(java.lang.Runnable) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextBackground +com.turingtechnologies.materialscrollbar.R$dimen: R$dimen() +android.didikee.donate.R$style: int Theme_AppCompat_DialogWhenLarge +com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context) +com.google.android.material.R$dimen: int mtrl_extended_fab_disabled_translation_z +androidx.appcompat.R$id: int add +androidx.work.InputMerger: InputMerger() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelMenuListTheme +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Large_Inverse +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_WIFI_ICON +com.google.android.material.R$id: int textinput_placeholder +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void dispose() +androidx.appcompat.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_overflow_padding_end_material +androidx.recyclerview.R$id: int accessibility_custom_action_1 +android.didikee.donate.R$layout: int notification_template_part_time +retrofit2.HttpServiceMethod: retrofit2.Converter createResponseConverter(retrofit2.Retrofit,java.lang.reflect.Method,java.lang.reflect.Type) +androidx.hilt.lifecycle.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$id: int app_bar +okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Logger logger +wangdaye.com.geometricweather.R$attr: int autoCompleteTextViewStyle +androidx.constraintlayout.widget.R$styleable: int Spinner_android_entries +cyanogenmod.platform.Manifest$permission: java.lang.String READ_MSIM_PHONE_STATE +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform PLATFORM +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_android_textAppearance +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_toTopOf +retrofit2.HttpServiceMethod$SuspendForResponse +cyanogenmod.themes.IThemeProcessingListener +wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_enforceTextAppearance +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +androidx.core.R$id: int line3 +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_primary_mtrl_alpha +wangdaye.com.geometricweather.R$drawable: int notif_temp_39 +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +wangdaye.com.geometricweather.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +wangdaye.com.geometricweather.R$id: int widget_week_container +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow1h +com.google.gson.stream.JsonReader: char[] buffer +wangdaye.com.geometricweather.R$layout: int container_snackbar +wangdaye.com.geometricweather.R$string: int key_widget_config +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_ON_VALIDATOR +okio.AsyncTimeout$1: okio.Sink val$sink +com.google.android.material.bottomnavigation.BottomNavigationPresenter$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$drawable: int abc_ab_share_pack_mtrl_alpha +james.adaptiveicon.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +com.google.android.material.R$styleable: int CustomAttribute_customColorDrawableValue +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int HAS_REQUEST_NO_VALUE +io.reactivex.internal.schedulers.ScheduledDirectTask +androidx.appcompat.R$drawable: int abc_ic_star_black_48dp +androidx.work.R$style: int Widget_Compat_NotificationActionContainer +androidx.vectordrawable.R$id: int accessibility_custom_action_30 +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_activityChooserViewStyle +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_separator_vertical_padding +james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +com.jaredrummler.android.colorpicker.R$dimen: int abc_select_dialog_padding_start_material +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean done +androidx.appcompat.R$styleable: int[] Toolbar +com.google.android.material.R$id: int mtrl_picker_fullscreen +androidx.activity.R$id: int tag_accessibility_pane_title +androidx.appcompat.resources.R$dimen: int notification_subtext_size +androidx.fragment.R$styleable: int FontFamilyFont_font +com.google.android.material.R$color: int abc_primary_text_disable_only_material_light +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +wangdaye.com.geometricweather.R$drawable: int notif_temp_90 +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_rightToLeft +androidx.coordinatorlayout.R$id: int async +retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type lowerBound +org.greenrobot.greendao.AbstractDao: void updateInsideSynchronized(java.lang.Object,android.database.sqlite.SQLiteStatement,boolean) +wangdaye.com.geometricweather.R$attr: int disableDependentsState +androidx.constraintlayout.widget.R$styleable: int KeyPosition_keyPositionType +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconSizeRes(int) +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver otherObserver +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day +android.didikee.donate.R$color: int material_blue_grey_800 +com.google.android.material.R$styleable: int MaterialButton_backgroundTint +wangdaye.com.geometricweather.db.entities.LocationEntity: void setCountry(java.lang.String) +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +com.jaredrummler.android.colorpicker.R$attr: int buttonBarButtonStyle +com.google.android.material.R$attr: int boxCornerRadiusTopEnd +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle valueOf(java.lang.String) +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void dispose() +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: long serialVersionUID +com.google.android.material.R$dimen: int design_fab_size_normal +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Info +android.didikee.donate.R$styleable: int AppCompatTextView_android_textAppearance +wangdaye.com.geometricweather.R$drawable: int notify_panel_notification_icon_bg +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconVisible +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActivityChooserView +com.turingtechnologies.materialscrollbar.R$layout: int design_layout_tab_text +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_title_divider_material +com.xw.repo.bubbleseekbar.R$integer +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: AccuDailyResult$DailyForecasts$Day$Snow() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: int UnitType +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_spinnerStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setTempMax(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Large +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +androidx.recyclerview.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_side_padding +io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator INSTANCE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWeatherEnd() +androidx.cardview.widget.CardView: float getRadius() +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_textOff +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemShapeAppearanceOverlay +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status CLEARED +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display4 +james.adaptiveicon.R$drawable: int abc_dialog_material_background +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +james.adaptiveicon.R$styleable: int ColorStateListItem_alpha +androidx.appcompat.R$styleable: int[] Spinner +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_pathMotionArc +cyanogenmod.providers.WeatherContract$WeatherColumns: WeatherContract$WeatherColumns() +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void startTimeout(long) +io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicLong missedProduced +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long size +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_16dp +wangdaye.com.geometricweather.R$attr: int fragment +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_ttcIndex +cyanogenmod.externalviews.KeyguardExternalView$7: void run() +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: boolean isDisposed() +com.xw.repo.bubbleseekbar.R$attr: int elevation +com.turingtechnologies.materialscrollbar.R$drawable: int design_bottom_navigation_item_background +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_3_material +okhttp3.Address: java.net.ProxySelector proxySelector() +com.turingtechnologies.materialscrollbar.R$id: int center +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowNoTitle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_56 +wangdaye.com.geometricweather.R$attr: int initialActivityCount +wangdaye.com.geometricweather.R$dimen: int cardview_compat_inset_shadow +com.google.android.material.R$drawable: int material_ic_keyboard_arrow_next_black_24dp +androidx.dynamicanimation.R$id: int forever +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.Float speed +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceLargePopupMenu +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem +androidx.recyclerview.widget.RecyclerView: long getNanoTime() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.util.Date EndTime +wangdaye.com.geometricweather.R$string: int key_clock_font +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_PORTRAIT +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: java.lang.Object get() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA +com.xw.repo.bubbleseekbar.R$attr: int fontVariationSettings +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_animationMode +com.jaredrummler.android.colorpicker.R$color: int tooltip_background_dark +wangdaye.com.geometricweather.R$styleable: int[] GradientColorItem +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +com.google.android.material.R$dimen: int material_cursor_inset_bottom +wangdaye.com.geometricweather.R$attr: int drawableBottomCompat +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String MobileLink +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitationDuration +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setOnSwitchListener(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout$OnSwitchListener) +okhttp3.MultipartBody$Builder: okio.ByteString boundary +androidx.constraintlayout.widget.Guideline: void setGuidelineBegin(int) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_toRightOf +wangdaye.com.geometricweather.R$attr: int dropDownListViewStyle +wangdaye.com.geometricweather.R$attr: int hoveredFocusedTranslationZ +androidx.constraintlayout.widget.R$styleable: int Toolbar_logoDescription +com.google.android.material.R$layout: int mtrl_picker_header_dialog +androidx.appcompat.R$styleable: int AlertDialog_singleChoiceItemLayout +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +com.google.android.material.R$styleable: int GradientColor_android_gradientRadius +androidx.preference.R$styleable: int AppCompatImageView_tint +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_displayOptions +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListMenuView +androidx.preference.R$dimen: int abc_dropdownitem_text_padding_right +androidx.appcompat.R$attr: int backgroundSplit +com.jaredrummler.android.colorpicker.R$id: int action_bar_title +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: double Value +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCloseDrawable +androidx.activity.R$id: int accessibility_custom_action_4 +com.xw.repo.bubbleseekbar.R$color: int abc_tint_default +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Caption +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +androidx.appcompat.view.menu.MenuPopup +androidx.preference.R$id: int icon_frame +androidx.appcompat.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +com.google.android.material.slider.BaseSlider: void setTrackTintList(android.content.res.ColorStateList) +androidx.preference.R$attr: int buttonCompat +androidx.dynamicanimation.R$id: int tag_unhandled_key_event_manager +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_min +com.xw.repo.bubbleseekbar.R$id: int text2 +okio.ByteString: boolean endsWith(okio.ByteString) +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer moldIndex +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +okhttp3.OkHttpClient: okhttp3.Authenticator proxyAuthenticator() +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnt +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setStatus(int) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_24 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_textLocale +james.adaptiveicon.R$attr: int submitBackground +com.turingtechnologies.materialscrollbar.R$attr: int drawableSize +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onComplete() +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver) +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginRight +wangdaye.com.geometricweather.R$drawable: int clock_minute_light +okio.SegmentedByteString: boolean rangeEquals(int,okio.ByteString,int,int) +androidx.constraintlayout.widget.R$attr: int listPopupWindowStyle +androidx.appcompat.widget.ActivityChooserView: androidx.appcompat.widget.ListPopupWindow getListPopupWindow() +wangdaye.com.geometricweather.R$string: int key_speed_unit +androidx.viewpager.R$string: R$string() +androidx.constraintlayout.widget.R$attr: int fontProviderFetchTimeout +okhttp3.OkHttpClient: java.util.List connectionSpecs() +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog +com.google.android.material.R$attr: int staggered +androidx.preference.R$styleable: int MenuView_android_headerBackground +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setNo2(java.lang.Float) +com.google.android.material.R$style: int Widget_AppCompat_Toolbar +james.adaptiveicon.R$styleable: int AppCompatTheme_colorButtonNormal +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long readKey(android.database.Cursor,int) +okhttp3.internal.http.CallServerInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +com.google.android.material.R$id: int mtrl_picker_header_selection_text +com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart +wangdaye.com.geometricweather.db.entities.DailyEntity: void setO3(java.lang.Float) +retrofit2.Call +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction +com.bumptech.glide.R$styleable: int FontFamily_fontProviderQuery +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ScheduledExecutorService writerExecutor +okhttp3.internal.cache.DiskLruCache$3 +com.jaredrummler.android.colorpicker.R$attr: int textAppearancePopupMenuHeader +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfIce +james.adaptiveicon.R$attr: int actionOverflowButtonStyle +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Headline +cyanogenmod.power.PerformanceManager: PerformanceManager(android.content.Context) +com.google.android.material.R$attr: int percentWidth +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerY +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerX +androidx.lifecycle.ProcessLifecycleOwner: int mStartedCounter +androidx.preference.R$style: int Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveShape +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +com.google.android.material.button.MaterialButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_NIGHT_VALIDATOR +wangdaye.com.geometricweather.R$id: int spread +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getNavBarThemePackageName() +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Subhead +androidx.constraintlayout.widget.R$styleable: int Transform_android_rotation +com.google.android.material.textfield.TextInputLayout: void setErrorContentDescription(java.lang.CharSequence) +androidx.coordinatorlayout.R$styleable: int[] ColorStateListItem +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabTextStyle +com.jaredrummler.android.colorpicker.R$color: int abc_btn_colored_borderless_text_material +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_size +androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton +androidx.appcompat.R$style: int TextAppearance_AppCompat_SearchResult_Title +com.bumptech.glide.R$layout: int notification_action_tombstone +com.google.android.material.chip.Chip: float getChipStrokeWidth() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric +com.jaredrummler.android.colorpicker.R$id: int action_bar +androidx.viewpager.widget.ViewPager: void setScrollState(int) +wangdaye.com.geometricweather.R$attr: int waveOffset +wangdaye.com.geometricweather.R$id: int activity_allergen_recyclerView +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeContainer +com.google.android.material.R$dimen: int design_bottom_navigation_shadow_height +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: io.reactivex.disposables.Disposable timer +cyanogenmod.app.ICMTelephonyManager$Stub: ICMTelephonyManager$Stub() +wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.DatabaseOpenHelper$EncryptedHelper checkEncryptedHelper() +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao chineseCityEntityDao +wangdaye.com.geometricweather.R$id: int search_src_text +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startX +retrofit2.ParameterHandler$RelativeUrl: int p +cyanogenmod.weather.WeatherInfo: WeatherInfo(android.os.Parcel) +androidx.legacy.coreutils.R$dimen: int notification_subtext_size +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: io.reactivex.internal.fuseable.SimpleQueue queue +androidx.appcompat.R$styleable: int MenuItem_android_checked +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver parent +android.didikee.donate.R$attr: int tickMarkTintMode +cyanogenmod.profiles.StreamSettings: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String unit +androidx.appcompat.R$color: int abc_tint_seek_thumb +android.didikee.donate.R$id: int action_text +androidx.constraintlayout.widget.R$attr: int layout_constraintTop_creator +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: io.reactivex.Observer observer +com.google.android.material.behavior.SwipeDismissBehavior: SwipeDismissBehavior() +cyanogenmod.app.Profile: int mNameResId +androidx.preference.R$styleable: int Preference_selectable +wangdaye.com.geometricweather.R$attr: int widgetLayout +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onRequested() +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_orientation +androidx.preference.PreferenceCategory +wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_range +okhttp3.Route +wangdaye.com.geometricweather.R$id: int dragDown +androidx.lifecycle.Lifecycle$State +androidx.work.R$id: int action_container +androidx.hilt.lifecycle.R$layout: R$layout() +retrofit2.RequestFactory: okhttp3.MediaType contentType +cyanogenmod.os.Concierge +androidx.appcompat.R$styleable: int MenuItem_android_orderInCategory +androidx.preference.R$attr: int summary +com.google.android.material.R$id: int ignoreRequest +com.google.gson.stream.JsonReader: void checkLenient() +com.google.android.material.R$dimen: int abc_text_size_caption_material +org.greenrobot.greendao.AbstractDao: java.lang.String[] getPkColumns() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: java.lang.String getAddress() +androidx.activity.R$id: int action_image +wangdaye.com.geometricweather.R$styleable: int OnSwipe_maxAcceleration +androidx.constraintlayout.widget.R$attr: int layout_constraintRight_creator +okhttp3.internal.http2.Http2Codec: java.lang.String HOST +wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_close_circle +okhttp3.internal.cache.DiskLruCache$Editor$1: okhttp3.internal.cache.DiskLruCache$Editor this$1 +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItemSecondary +androidx.transition.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.preference.R$id: int accessibility_custom_action_19 +androidx.activity.R$id: int async +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void subscribe() +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo getWeatherInfo() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getLunar() +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_CompactMenu +com.jaredrummler.android.colorpicker.R$layout: int abc_screen_toolbar +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse androidx.viewpager2.R$string: R$string() -com.google.android.material.R$drawable: int abc_scrubber_control_off_mtrl_alpha -cyanogenmod.power.IPerformanceManager$Stub$Proxy: int getNumberOfProfiles() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region Region -cyanogenmod.externalviews.KeyguardExternalView$2: cyanogenmod.externalviews.KeyguardExternalView this$0 -cyanogenmod.providers.ThemesContract$ThemesColumns: ThemesContract$ThemesColumns() -androidx.appcompat.R$id: int blocking -james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_Underlined -com.turingtechnologies.materialscrollbar.R$attr: int switchStyle -com.google.android.material.tabs.TabLayout: void setOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) -androidx.preference.R$color: int background_material_light -com.google.android.material.R$attr: int touchRegionId -androidx.constraintlayout.widget.R$styleable: int OnSwipe_maxAcceleration -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_5 -com.google.android.material.button.MaterialButton: void setIconResource(int) -okio.ByteString: int compareTo(java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ImageButton -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setAnimationMode(int) -androidx.lifecycle.SavedStateHandle: androidx.savedstate.SavedStateRegistry$SavedStateProvider mSavedStateProvider -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: LiveDataReactiveStreams$PublisherLiveData(org.reactivestreams.Publisher) -io.reactivex.internal.util.VolatileSizeArrayList: int lastIndexOf(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int chipSpacingVertical -cyanogenmod.app.Profile$NotificationLightMode: Profile$NotificationLightMode() -okhttp3.CertificatePinner: java.lang.String pin(java.security.cert.Certificate) -retrofit2.BuiltInConverters$BufferingResponseBodyConverter: java.lang.Object convert(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int abc_spinner_textfield_background_material -com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Light -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_content_inset_material -cyanogenmod.app.ProfileGroup: int mNameResId -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: AccuCurrentResult$PrecipitationSummary$Past3Hours() -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconVisible -com.google.android.material.R$styleable: int[] MaterialAlertDialogTheme -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_ALARMS -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getHaloTintList() -wangdaye.com.geometricweather.R$plurals -retrofit2.Retrofit: java.util.concurrent.Executor callbackExecutor -com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier -androidx.preference.R$styleable: int SearchView_android_imeOptions -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicLong index -androidx.preference.R$id: int accessibility_custom_action_3 -com.google.android.material.R$styleable: int OnSwipe_nestedScrollFlags -okhttp3.internal.tls.OkHostnameVerifier: okhttp3.internal.tls.OkHostnameVerifier INSTANCE -androidx.preference.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -james.adaptiveicon.R$style: int Widget_AppCompat_Button_Borderless_Colored -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListMenuView -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_darkIcon -com.google.android.material.R$id: int gone -android.didikee.donate.R$styleable: int MenuItem_android_icon -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endY -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_divider_material -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getRealFeelTemperature() -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration getPrecipitationDuration() -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_maxWidth -androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context,android.util.AttributeSet,int) -androidx.core.app.RemoteActionCompatParcelizer: void write(androidx.core.app.RemoteActionCompat,androidx.versionedparcelable.VersionedParcel) -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onResume() -androidx.lifecycle.extensions.R$dimen: int notification_small_icon_size_as_large -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy -okio.ByteString: okio.ByteString hmac(java.lang.String,okio.ByteString) +okhttp3.internal.http2.Http2Stream$FramingSource: long read(okio.Buffer,long) +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function8) +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onComplete() +androidx.appcompat.widget.AppCompatRadioButton: void setSupportButtonTintList(android.content.res.ColorStateList) +james.adaptiveicon.R$color: int abc_primary_text_disable_only_material_light +androidx.drawerlayout.R$attr: R$attr() +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_allowCustom +androidx.preference.R$style: int Base_Widget_AppCompat_PopupMenu +com.google.android.material.R$styleable: int ConstraintSet_flow_verticalAlign +wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_creator +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Snackbar_Message +androidx.appcompat.R$color: int material_deep_teal_500 +androidx.preference.R$styleable: int[] AnimatedStateListDrawableTransition +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_ASSIST_ACTION_VALIDATOR +james.adaptiveicon.R$id: int title +androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$attr: int toolbarNavigationButtonStyle +com.jaredrummler.android.colorpicker.R$attr: int searchHintIcon +com.google.android.material.R$dimen: int material_clock_hand_center_dot_radius +cyanogenmod.profiles.BrightnessSettings$1: BrightnessSettings$1() +com.google.android.material.R$attr: int closeIconTint +androidx.fragment.R$id: int chronometer +androidx.dynamicanimation.R$attr: R$attr() +androidx.constraintlayout.widget.R$attr: int layout_goneMarginRight +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathEnd(float) +androidx.appcompat.R$layout +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: int capacityHint +wangdaye.com.geometricweather.R$string: int sunrise_sunset +androidx.work.R$id: int chronometer +retrofit2.CallAdapter$Factory: CallAdapter$Factory() +com.google.android.material.R$style: int Widget_Design_FloatingActionButton +com.google.android.material.card.MaterialCardView: void setCardBackgroundColor(int) +androidx.vectordrawable.R$styleable: int GradientColor_android_tileMode +com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.Typeface getExpandedTitleTypeface() +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabRippleColor +cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationMin() +com.turingtechnologies.materialscrollbar.R$attr: int titleTextStyle +androidx.constraintlayout.motion.widget.MotionLayout: void setDebugMode(int) +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_minHideDelay +okhttp3.internal.http2.Http2Reader: void readPing(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +androidx.constraintlayout.widget.R$attr: int customIntegerValue +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_toTopOf +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: java.util.List value +androidx.viewpager.R$id: int right_icon +okio.AsyncTimeout$1: void close() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_NoActionBar_Bridge +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_measureWithLargestChild +wangdaye.com.geometricweather.R$attr: int navigationIcon +com.google.android.material.slider.BaseSlider: void setValueFrom(float) +wangdaye.com.geometricweather.R$color: int bright_foreground_material_dark +cyanogenmod.providers.CMSettings$System: java.lang.String[] LEGACY_SYSTEM_SETTINGS +cyanogenmod.app.ProfileGroup: void applyOverridesToNotification(android.app.Notification) +androidx.work.impl.utils.futures.AbstractFuture$Failure$1: java.lang.Throwable fillInStackTrace() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +androidx.coordinatorlayout.widget.CoordinatorLayout: androidx.core.view.WindowInsetsCompat getLastWindowInsets() +cyanogenmod.weatherservice.IWeatherProviderService: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) +wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_sliderColor +androidx.preference.R$drawable: int abc_ic_star_half_black_48dp +cyanogenmod.app.CustomTile$Builder: android.net.Uri mOnClickUri +androidx.legacy.coreutils.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.R$string: int feedback_location_permissions_title +androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonTintMode +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: java.util.List DailyForecasts +wangdaye.com.geometricweather.db.entities.AlertEntityDao: AlertEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +com.google.android.material.R$attr: int actionBarSplitStyle +wangdaye.com.geometricweather.R$xml: int perference_notification_color +wangdaye.com.geometricweather.R$dimen: int material_cursor_inset_top +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context,android.util.AttributeSet) +androidx.preference.R$dimen: int fastscroll_margin +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +retrofit2.Platform$Android +androidx.vectordrawable.animated.R$id: int notification_main_column +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_variablePadding +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_lineHeight +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowRadius +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundTintList(android.content.res.ColorStateList) +com.jaredrummler.android.colorpicker.R$attr: int order +androidx.appcompat.R$dimen: int abc_config_prefDialogWidth +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconEnabled +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_contentDescription +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_Tooltip +okio.Okio: okio.Source source(java.io.File) +com.google.android.material.appbar.AppBarLayout$BaseBehavior: AppBarLayout$BaseBehavior(android.content.Context,android.util.AttributeSet) +org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Object[]) +androidx.appcompat.R$attr: int actionModeCopyDrawable +androidx.appcompat.resources.R$attr: int fontWeight +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_transitionPathRotate +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap +okhttp3.internal.ws.WebSocketReader: void readMessageFrame() +wangdaye.com.geometricweather.R$attr: int expandedTitleMargin +james.adaptiveicon.R$style: int Widget_AppCompat_ProgressBar +wangdaye.com.geometricweather.R$styleable: int[] TextAppearance +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogCenterButtons +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColorLink +cyanogenmod.power.IPerformanceManager: int getNumberOfProfiles() +retrofit2.adapter.rxjava2.ResultObservable +com.google.android.material.R$id: int accessibility_custom_action_11 +android.didikee.donate.R$attr: int colorAccent +wangdaye.com.geometricweather.R$dimen: int design_snackbar_min_width +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: void setAlpha(float) +androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnStart() +com.xw.repo.bubbleseekbar.R$integer: int abc_config_activityDefaultDur +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: double Value +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder path(java.lang.String) +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: ICMStatusBarManager$Stub$Proxy(android.os.IBinder) +james.adaptiveicon.R$color: int material_grey_50 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum +android.didikee.donate.R$styleable: int ActionMode_closeItemLayout +okhttp3.HttpUrl: java.util.List queryNamesAndValues +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: void setFrom(java.lang.String) +wangdaye.com.geometricweather.R$color: int accent_material_light +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getUnitId() +androidx.lifecycle.extensions.R$string: R$string() +androidx.activity.R$dimen: int notification_right_icon_size +androidx.appcompat.resources.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_orderingFromXml +wangdaye.com.geometricweather.R$styleable: int View_paddingEnd +androidx.customview.R$color: int notification_action_color_filter +james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedWidthMajor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid TotalLiquid +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: int UnitType +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_23 +com.google.android.material.R$styleable: int MaterialAutoCompleteTextView_android_inputType +androidx.constraintlayout.widget.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +cyanogenmod.profiles.LockSettings: LockSettings() +com.google.android.material.internal.CheckableImageButton$SavedState: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeShareDrawable +retrofit2.http.HTTP: java.lang.String path() +cyanogenmod.app.Profile: void addSecondaryUuid(java.util.UUID) +james.adaptiveicon.R$attr: int switchTextAppearance +com.google.android.material.R$styleable: int AppCompatTheme_buttonStyleSmall +wangdaye.com.geometricweather.R$attr: int horizontalOffset +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxDaoPlain +retrofit2.Retrofit: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[]) +okhttp3.internal.cache.DiskLruCache$Snapshot: long sequenceNumber +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_15 +androidx.preference.R$styleable: int[] BackgroundStyle +androidx.viewpager2.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Switch +androidx.preference.R$styleable: int[] ActionBar +com.jaredrummler.android.colorpicker.R$color: int abc_secondary_text_material_light +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathStart(float) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onSuccess(java.lang.Object) +androidx.coordinatorlayout.R$dimen: int compat_button_padding_horizontal_material +cyanogenmod.app.CMTelephonyManager: boolean isDataConnectionEnabled() +androidx.appcompat.widget.Toolbar: void setCollapseContentDescription(int) +androidx.recyclerview.R$drawable: int notification_bg_low_normal +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_search_api_material +cyanogenmod.app.StatusBarPanelCustomTile: int getInitialPid() +wangdaye.com.geometricweather.R$integer: int config_tooltipAnimTime +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void subscribe(io.reactivex.ObservableSource[],int) +wangdaye.com.geometricweather.R$string: int introduce +com.github.rahatarmanahmed.cpv.CircularProgressView: void setThickness(int) +com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearanceActive +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$height +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: MfWarningsResult$WarningConsequence() +com.google.android.material.R$attr: int searchHintIcon +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_motionTarget +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_left_mtrl_light +io.reactivex.Observable: void blockingSubscribe() +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String direction +cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mOnClick +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_corner_radius +androidx.preference.R$string: int preference_copied +wangdaye.com.geometricweather.R$styleable: int AlertDialog_listLayout +androidx.activity.R$drawable: int notify_panel_notification_icon_bg +com.google.android.material.R$styleable: int[] DrawerArrowToggle +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_overflow_material +androidx.drawerlayout.R$styleable: int FontFamilyFont_font +androidx.viewpager2.R$drawable: int notification_action_background +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicator(int) +androidx.appcompat.R$styleable: int AppCompatTheme_listDividerAlertDialog +wangdaye.com.geometricweather.R$style: int Preference_SeekBarPreference +com.google.android.material.R$attr: int deltaPolarRadius +james.adaptiveicon.R$color: int highlighted_text_material_dark +okhttp3.internal.http2.Http2Codec: java.lang.String UPGRADE +wangdaye.com.geometricweather.R$drawable: int abc_spinner_mtrl_am_alpha +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.Observer downstream +okhttp3.internal.ws.RealWebSocket: okhttp3.Call call +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeFindDrawable +androidx.transition.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_switchTextOn +wangdaye.com.geometricweather.R$attr: int buttonBarButtonStyle +wangdaye.com.geometricweather.R$id: int groups +wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_progress +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getRealFeelShaderTemperature() +wangdaye.com.geometricweather.R$id: int cpv_hex +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setProvince(java.lang.String) +androidx.lifecycle.LiveData$ObserverWrapper: void activeStateChanged(boolean) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void clear() +com.jaredrummler.android.colorpicker.R$dimen: int abc_disabled_alpha_material_light +okhttp3.internal.cache.InternalCache: void trackResponse(okhttp3.internal.cache.CacheStrategy) +androidx.work.Worker +androidx.coordinatorlayout.R$id: int accessibility_custom_action_18 +androidx.constraintlayout.widget.R$attr: int flow_maxElementsWrap +com.google.android.material.R$styleable: int AppBarLayout_expanded +com.google.android.material.R$dimen: int compat_control_corner_material +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1(retrofit2.Call) +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState UNDEFINED +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_30 +retrofit2.Utils$ParameterizedTypeImpl: Utils$ParameterizedTypeImpl(java.lang.reflect.Type,java.lang.reflect.Type,java.lang.reflect.Type[]) +com.turingtechnologies.materialscrollbar.R$attr: int titleMargin +wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_title_material +android.didikee.donate.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +okhttp3.internal.http2.Http2Connection: void failConnection() +androidx.constraintlayout.widget.R$id: R$id() +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollHorizontalTrackDrawable +cyanogenmod.providers.CMSettings$System: long getLong(android.content.ContentResolver,java.lang.String,long) +androidx.customview.R$styleable: int GradientColor_android_endColor +androidx.preference.R$styleable: int ColorStateListItem_android_alpha +androidx.preference.R$style: int Base_Widget_AppCompat_Button_Colored +wangdaye.com.geometricweather.R$array: int dark_mode_values +com.google.android.material.R$styleable: int AppCompatTheme_searchViewStyle +okhttp3.internal.http2.Http2Reader$Handler: void settings(boolean,okhttp3.internal.http2.Settings) +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void cancelSources() +android.didikee.donate.R$styleable: int CompoundButton_buttonTint +cyanogenmod.weather.RequestInfo$Builder: int mRequestType +com.google.android.material.R$id: int TOP_END +cyanogenmod.hardware.IThermalListenerCallback +okhttp3.RequestBody$1: void writeTo(okio.BufferedSink) +com.google.android.material.R$drawable: int abc_ic_star_half_black_48dp +com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyle +com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onModeChanged(boolean) +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getMinWidthMajor() +cyanogenmod.providers.DataUsageContract: java.lang.String ENABLE +okhttp3.internal.http2.Header: java.lang.String TARGET_AUTHORITY_UTF8 +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.String toString() +wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newSession() +com.turingtechnologies.materialscrollbar.R$attr: int actionModePasteDrawable +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_97 +wangdaye.com.geometricweather.R$string: int widget_text +androidx.transition.R$styleable: int ColorStateListItem_android_alpha +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void data(boolean,int,okio.BufferedSource,int) +android.didikee.donate.R$attr: int actionModeCloseDrawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setLogo(java.lang.String) +wangdaye.com.geometricweather.R$attr: int autoSizeMaxTextSize +okhttp3.Headers: Headers(java.lang.String[]) +androidx.appcompat.R$style: int Widget_AppCompat_ListView_DropDown +com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context) +wangdaye.com.geometricweather.R$drawable: int design_snackbar_background +androidx.constraintlayout.widget.R$id: int staticPostLayout +wangdaye.com.geometricweather.R$string: int summary_collapsed_preference_list +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +okhttp3.ConnectionSpec: java.lang.String toString() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoonPhaseAngle() +okhttp3.internal.http2.Http2Stream: Http2Stream(int,okhttp3.internal.http2.Http2Connection,boolean,boolean,okhttp3.Headers) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_animate_relativeTo +okhttp3.MultipartBody$Builder +com.turingtechnologies.materialscrollbar.R$id: int listMode +androidx.fragment.app.FragmentTabHost: FragmentTabHost(android.content.Context) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void onDetachedFromWindow() +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeight +com.bumptech.glide.integration.okhttp.R$id: int action_text +androidx.viewpager.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.appcompat.R$color: int notification_icon_bg_color +androidx.fragment.R$id: int icon +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_singleSelection +androidx.preference.R$styleable: int StateListDrawable_android_constantSize +androidx.preference.R$styleable: int AppCompatTheme_windowActionModeOverlay +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty1H +wangdaye.com.geometricweather.R$string: int abc_capital_on +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: java.lang.Object v2 +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: io.reactivex.Observer downstream +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator +com.google.android.material.chip.Chip: void setEllipsize(android.text.TextUtils$TruncateAt) +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Caption +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder hostnameVerifier(javax.net.ssl.HostnameVerifier) +androidx.appcompat.R$drawable: int notification_bg_normal_pressed +androidx.constraintlayout.widget.R$id: int expanded_menu +androidx.drawerlayout.R$dimen: int compat_button_inset_horizontal_material +androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationY +okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withReadTimeout(int,java.util.concurrent.TimeUnit) +com.google.android.material.R$style: int Base_V28_Theme_AppCompat_Light +androidx.appcompat.widget.AppCompatEditText: void setBackgroundResource(int) +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_summaryOff +cyanogenmod.hardware.CMHardwareManager: boolean setDisplayGammaCalibration(int,int[]) +androidx.preference.R$id: int none +com.jaredrummler.android.colorpicker.R$string: int abc_activitychooserview_choose_application +com.turingtechnologies.materialscrollbar.R$color: int mtrl_fab_ripple_color +androidx.constraintlayout.widget.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +com.xw.repo.bubbleseekbar.R$attr: int tint +androidx.constraintlayout.widget.R$styleable: int AlertDialog_android_layout +retrofit2.RequestBuilder: java.lang.String relativeUrl +androidx.vectordrawable.R$style +com.google.android.material.R$styleable: int MenuView_android_horizontalDivider +androidx.coordinatorlayout.R$id: int line1 +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded +okhttp3.logging.LoggingEventListener: void requestBodyStart(okhttp3.Call) +cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_ENABLED +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +wangdaye.com.geometricweather.R$style: int notification_subtitle_text +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarWidgetTheme +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Title +androidx.loader.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$attr: int listPreferredItemPaddingLeft +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX +okhttp3.OkHttpClient: okhttp3.Dns dns +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.identityscope.IdentityScope identityScope +androidx.preference.R$styleable: int SearchView_suggestionRowLayout +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder tlsVersions(java.lang.String[]) +com.google.android.material.R$style: int Theme_AppCompat_Dialog +androidx.swiperefreshlayout.R$dimen: int notification_right_icon_size +androidx.appcompat.R$styleable: int AppCompatTheme_windowMinWidthMinor +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableStart +androidx.constraintlayout.widget.R$styleable: int[] ViewStubCompat +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListPopupWindow +cyanogenmod.hardware.ICMHardwareService: int[] getDisplayColorCalibration() +androidx.preference.R$styleable: int SwitchPreference_summaryOff +okio.Buffer: okio.ByteString md5() +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_NoActionBar +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton +wangdaye.com.geometricweather.main.dialogs.LocationHelpDialog: LocationHelpDialog() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String to +com.xw.repo.bubbleseekbar.R$attr: int windowActionModeOverlay +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean disposed +com.google.android.material.R$id: int transition_layout_save +com.turingtechnologies.materialscrollbar.R$attr: int counterEnabled +com.google.android.material.R$style: int Theme_AppCompat_Empty +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver +com.google.android.material.slider.BaseSlider$SliderState: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +james.adaptiveicon.R$dimen: int hint_pressed_alpha_material_light +cyanogenmod.app.Profile: cyanogenmod.app.Profile fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +james.adaptiveicon.R$styleable: int ActionBar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_android_minHeight +androidx.preference.R$styleable: int AppCompatTheme_actionMenuTextColor +cyanogenmod.weather.WeatherLocation: java.lang.String access$302(cyanogenmod.weather.WeatherLocation,java.lang.String) +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Alert +james.adaptiveicon.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: java.lang.Integer clouds +androidx.appcompat.R$styleable: int[] ButtonBarLayout +com.google.android.material.R$dimen: int abc_dialog_title_divider_material +retrofit2.ParameterHandler$RawPart: void apply(retrofit2.RequestBuilder,okhttp3.MultipartBody$Part) +com.google.android.material.R$styleable: int Chip_showMotionSpec +cyanogenmod.app.PartnerInterface: android.content.Context mContext +android.didikee.donate.R$color: int abc_tint_seek_thumb +androidx.appcompat.resources.R$id: int accessibility_custom_action_24 +androidx.viewpager2.R$id: int accessibility_custom_action_21 +james.adaptiveicon.R$id: int action_menu_presenter +com.google.android.material.R$styleable: int AppCompatTheme_dividerHorizontal +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastHorizontalStyle +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_1 +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActivityChooserView +wangdaye.com.geometricweather.R$id: int widget_day_week_time +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_weightSum +com.google.android.material.R$styleable: int KeyTrigger_onPositiveCross +androidx.constraintlayout.widget.R$id: int accessibility_action_clickable_span +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline Headline +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_radioButtonStyle +okhttp3.internal.connection.RealConnection: void connectTls(okhttp3.internal.connection.ConnectionSpecSelector) +androidx.preference.R$style: int Base_Widget_AppCompat_ListMenuView +com.google.android.material.R$styleable: int Layout_layout_constraintCircle +com.jaredrummler.android.colorpicker.R$layout +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void otherError(java.lang.Throwable) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.ProgressIndicatorSpec getSpec() +wangdaye.com.geometricweather.R$dimen: int compat_control_corner_material +androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_percent +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context) +androidx.appcompat.R$attr: int activityChooserViewStyle +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf +androidx.preference.R$id: int customPanel +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: double Value +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX temperature +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog +androidx.preference.R$styleable: int SeekBarPreference_android_layout +wangdaye.com.geometricweather.background.polling.basic.ForegroundUpdateService: ForegroundUpdateService() +androidx.preference.R$attr: int lastBaselineToBottomHeight +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$attr: int initialExpandedChildrenCount +com.google.android.material.datepicker.RangeDateSelector +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getO3Desc() +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayWeekWidgetConfigActivity: Hilt_ClockDayWeekWidgetConfigActivity() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: void setX(java.lang.String) +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moonrise_moonset +com.google.android.material.R$attr: int contentInsetStartWithNavigation +androidx.lifecycle.extensions.R$layout: int notification_action +androidx.hilt.R$drawable: int notification_bg_normal +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method getMethod +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getCardValue() +cyanogenmod.app.ILiveLockScreenManagerProvider: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: double Value +com.google.android.material.R$id: int action_divider +androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$drawable: int abc_btn_default_mtrl_shape +okhttp3.Cache$Entry +io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function,boolean) +wangdaye.com.geometricweather.R$dimen: int hint_alpha_material_dark +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Medium_Inverse +androidx.work.R$layout: int notification_template_icon_group +com.turingtechnologies.materialscrollbar.R$attr: int autoSizePresetSizes +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long serialVersionUID +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: int hashCode() +androidx.preference.R$style: int Theme_AppCompat_DayNight_NoActionBar +androidx.coordinatorlayout.R$id: int right_icon +cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean isDisposed() +com.jaredrummler.android.colorpicker.R$attr: int switchPreferenceCompatStyle +androidx.preference.R$styleable: int SwitchCompat_splitTrack +com.google.android.material.R$id: int list_item +james.adaptiveicon.R$style: int Widget_Compat_NotificationActionText +com.google.android.material.slider.BaseSlider: float getValueTo() +wangdaye.com.geometricweather.db.entities.DailyEntityDao: DailyEntityDao(org.greenrobot.greendao.internal.DaoConfig) +androidx.constraintlayout.widget.R$attr: int arrowHeadLength +wangdaye.com.geometricweather.common.basic.models.weather.Daily: Daily(java.util.Date,long,wangdaye.com.geometricweather.common.basic.models.weather.HalfDay,wangdaye.com.geometricweather.common.basic.models.weather.HalfDay,wangdaye.com.geometricweather.common.basic.models.weather.Astro,wangdaye.com.geometricweather.common.basic.models.weather.Astro,wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase,wangdaye.com.geometricweather.common.basic.models.weather.AirQuality,wangdaye.com.geometricweather.common.basic.models.weather.Pollen,wangdaye.com.geometricweather.common.basic.models.weather.UV,float) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onError(java.lang.Throwable) +android.didikee.donate.R$attr: int contentInsetEndWithActions +wangdaye.com.geometricweather.R$id: int ignoreRequest +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.vectordrawable.R$id: int accessibility_custom_action_1 +androidx.preference.R$styleable: int[] CoordinatorLayout +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier[] values() +androidx.appcompat.R$styleable: int StateListDrawable_android_enterFadeDuration +com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_bottom_margin +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_motionProgress +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: long serialVersionUID +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_homeAsUpIndicator +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableItem_android_id +cyanogenmod.profiles.StreamSettings: void writeToParcel(android.os.Parcel,int) +okio.AsyncTimeout: long remainingNanos(long) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabText +androidx.appcompat.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar +com.jaredrummler.android.colorpicker.R$attr: int maxWidth +com.turingtechnologies.materialscrollbar.R$attr: int iconGravity +wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_icon_tint +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onMenuOpened(int,android.view.Menu) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge +androidx.constraintlayout.widget.R$attr: int queryHint +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onSubscribe(org.reactivestreams.Subscription) +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int arc_angle +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customColorValue +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_textOn +wangdaye.com.geometricweather.R$string: int settings_notification_background_off +androidx.appcompat.R$drawable: int abc_seekbar_thumb_material +com.turingtechnologies.materialscrollbar.R$attr: int chipStandaloneStyle +wangdaye.com.geometricweather.R$styleable: int MaterialButton_backgroundTint +james.adaptiveicon.R$styleable: int ActionBar_background +wangdaye.com.geometricweather.db.entities.AlertEntity: void setType(java.lang.String) +com.google.gson.internal.LinkedTreeMap: LinkedTreeMap(java.util.Comparator) +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$FramingSink sink +androidx.constraintlayout.widget.R$attr: int layout_editor_absoluteY +androidx.preference.R$attr: int actionModeShareDrawable +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.preference.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setValue(java.util.List) +io.reactivex.internal.util.EmptyComponent: void dispose() +androidx.appcompat.R$dimen: int disabled_alpha_material_light +androidx.constraintlayout.widget.R$style: int AlertDialog_AppCompat_Light +okio.SegmentedByteString: okio.ByteString hmacSha256(okio.ByteString) +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String getKey(wangdaye.com.geometricweather.db.entities.LocationEntity) +org.greenrobot.greendao.AbstractDao: java.lang.Object getKeyVerified(java.lang.Object) +james.adaptiveicon.R$styleable: int AppCompatTheme_dividerHorizontal +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +androidx.vectordrawable.R$id: int title +james.adaptiveicon.R$bool +okhttp3.internal.connection.RealConnection: java.lang.String NPE_THROW_WITH_NULL +retrofit2.DefaultCallAdapterFactory$1: java.lang.Object adapt(retrofit2.Call) +wangdaye.com.geometricweather.R$id: int parent_matrix +okhttp3.internal.http1.Http1Codec: void flushRequest() +wangdaye.com.geometricweather.R$layout: int cpv_color_item_square +wangdaye.com.geometricweather.R$dimen: int mtrl_chip_text_size +androidx.hilt.lifecycle.R$id: int italic +androidx.appcompat.resources.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupMenu +androidx.preference.R$attr: int trackTintMode +com.turingtechnologies.materialscrollbar.R$dimen: int hint_pressed_alpha_material_light +androidx.preference.R$attr: int updatesContinuously +cyanogenmod.app.IProfileManager$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_drawPath +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth +com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +androidx.transition.R$styleable: int FontFamilyFont_android_fontStyle +androidx.constraintlayout.widget.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +androidx.constraintlayout.widget.R$styleable: int Constraint_visibilityMode +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_OFF_VALIDATOR +com.google.android.material.R$styleable: int Toolbar_titleMarginStart +com.google.android.material.R$dimen: int mtrl_extended_fab_bottom_padding +androidx.preference.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_switch_track +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit) +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: io.reactivex.internal.fuseable.SimpleQueue queue +wangdaye.com.geometricweather.R$id: int widget_day_title +com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Circular +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getPackage() +wangdaye.com.geometricweather.R$color: int design_default_color_on_primary +retrofit2.ParameterHandler$QueryMap: java.lang.reflect.Method method +com.xw.repo.bubbleseekbar.R$id: int search_src_text +com.google.android.material.slider.Slider: int getThumbRadius() +androidx.drawerlayout.R$drawable: int notification_bg_low_pressed +androidx.constraintlayout.widget.R$styleable: int KeyCycle_motionTarget +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_submit +okhttp3.Cache$Entry: okhttp3.Handshake handshake +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric Metric +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindSpeed(java.lang.Float) +androidx.activity.R$styleable: int FontFamilyFont_ttcIndex +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_removeCustomTileWithTag +james.adaptiveicon.R$integer: int cancel_button_image_alpha +okhttp3.MediaType: java.lang.String subtype +androidx.preference.R$drawable: int abc_list_divider_mtrl_alpha +com.google.android.material.R$id: int incoming +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListPopupWindow +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setHumidity(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver parent +androidx.lifecycle.SavedStateHandleController: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +okio.Options: okio.Options of(okio.ByteString[]) +wangdaye.com.geometricweather.R$drawable: int mtrl_dropdown_arrow +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents +androidx.constraintlayout.widget.R$styleable: int[] CompoundButton +androidx.preference.R$dimen: int abc_action_bar_overflow_padding_start_material +wangdaye.com.geometricweather.R$string: int hours_of_sun +androidx.preference.R$dimen: int abc_action_button_min_width_overflow_material +com.google.android.material.R$attr: int panelMenuListWidth +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String unitId +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog +androidx.preference.R$styleable: int AppCompatTheme_buttonBarStyle +androidx.hilt.R$styleable: int GradientColor_android_endX +androidx.hilt.R$anim: int fragment_fast_out_extra_slow_in +androidx.transition.R$id: R$id() +androidx.constraintlayout.widget.R$attr: int flow_horizontalBias +androidx.lifecycle.ViewModel: void clear() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Toolbar +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter nullValue() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_horizontal_material +androidx.vectordrawable.R$dimen: int notification_main_column_padding_top +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_second_track_color +androidx.drawerlayout.R$styleable: int GradientColor_android_endColor +james.adaptiveicon.R$attr: int title +androidx.loader.R$style: int TextAppearance_Compat_Notification_Title +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen +wangdaye.com.geometricweather.R$layout: int widget_day_oreo +androidx.work.impl.background.systemalarm.ConstraintProxy: ConstraintProxy() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getThunderstormPrecipitationProbability() +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getDesiredHeight() +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_icon_vertical_padding_material +okio.Base64: byte[] decode(java.lang.String) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SearchView_ActionBar +com.google.android.material.R$styleable: int Badge_badgeGravity +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitation() +androidx.preference.R$styleable: int AppCompatTheme_buttonStyle +wangdaye.com.geometricweather.R$styleable: int Constraint_pathMotionArc +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle +androidx.lifecycle.SavedStateHandle: java.lang.Object get(java.lang.String) +cyanogenmod.profiles.BrightnessSettings: int getValue() +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_homeLayout +androidx.hilt.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HistoryEntityDao historyEntityDao +androidx.work.R$attr +androidx.viewpager2.R$attr: int fastScrollVerticalTrackDrawable +wangdaye.com.geometricweather.R$dimen: int abc_config_prefDialogWidth +androidx.work.R$styleable: int GradientColor_android_endY +androidx.appcompat.widget.FitWindowsLinearLayout: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) +androidx.cardview.widget.CardView: CardView(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$style: int Base_DialogWindowTitleBackground_AppCompat +com.jaredrummler.android.colorpicker.R$attr: int seekBarIncrement +androidx.core.view.ViewCompat$1: ViewCompat$1(androidx.core.view.OnApplyWindowInsetsListener) +wangdaye.com.geometricweather.R$attr: int switchPreferenceStyle +com.xw.repo.bubbleseekbar.R$color: int notification_icon_bg_color +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.Scheduler$Worker worker +com.google.android.material.R$styleable: int TextInputLayout_errorTextAppearance +okhttp3.internal.connection.StreamAllocation: java.lang.Object callStackTrace +cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient mClient +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback +com.google.android.material.R$attr: int textAppearanceBody2 +okhttp3.CertificatePinner: okio.ByteString sha1(java.security.cert.X509Certificate) +androidx.lifecycle.MutableLiveData: MutableLiveData(java.lang.Object) +okhttp3.Request$Builder: okhttp3.Request$Builder tag(java.lang.Class,java.lang.Object) +com.google.android.material.R$styleable: int KeyCycle_android_rotationY +wangdaye.com.geometricweather.R$drawable: int ic_briefing +com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Indeterminate +androidx.preference.R$styleable: int SearchView_android_maxWidth +androidx.preference.R$dimen: int abc_action_bar_default_padding_end_material +androidx.activity.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.R$layout: int abc_screen_content_include +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: int UnitType +cyanogenmod.weather.CMWeatherManager: java.util.Map access$300(cyanogenmod.weather.CMWeatherManager) +okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.Response cacheResponse +androidx.transition.R$attr: int fontWeight +com.jaredrummler.android.colorpicker.R$attr: int paddingStart +com.google.android.material.R$dimen: int abc_text_size_title_material_toolbar +okio.Okio: okio.Source source(java.net.Socket) +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit[] values() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX getAqi() +com.google.android.material.R$attr: int font +wangdaye.com.geometricweather.R$attr: int defaultValue +com.google.android.material.R$styleable: int[] MenuView +com.google.android.material.R$color: int test_mtrl_calendar_day_selected +wangdaye.com.geometricweather.R$style: int Base_V23_Theme_AppCompat_Light +okhttp3.internal.http2.Huffman$Node: int symbol +androidx.constraintlayout.widget.R$attr: int editTextBackground +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties +com.google.gson.internal.LinkedTreeMap: java.util.Set entrySet() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onKeyguardDismissed() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean done +android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogTheme +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_barLength +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int) +james.adaptiveicon.R$styleable: int Spinner_android_prompt +okhttp3.Request: okhttp3.Headers headers() +com.google.android.material.R$attr: int chipIcon +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabView +androidx.appcompat.R$color: int foreground_material_light +com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.viewpager.R$color +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String city +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +com.google.android.material.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode +okhttp3.Cache$2: java.util.Iterator delegate +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags +com.google.android.material.R$attr: int layout_optimizationLevel +cyanogenmod.app.Profile: cyanogenmod.profiles.BrightnessSettings getBrightness() +com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.String) +androidx.coordinatorlayout.R$dimen: int compat_button_inset_vertical_material +com.jaredrummler.android.colorpicker.R$styleable: int Preference_selectable +james.adaptiveicon.R$id: int shortcut +androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_backgroundTint +com.github.rahatarmanahmed.cpv.R$attr: int cpv_indeterminate +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setTranslateX(float) +wangdaye.com.geometricweather.R$styleable: int[] Insets +cyanogenmod.app.LiveLockScreenInfo$1: LiveLockScreenInfo$1() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_CBC_SHA +cyanogenmod.app.CustomTile: java.lang.String label +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date sunRiseDate +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircle +com.google.android.material.R$styleable: int AppCompatTheme_colorControlHighlight +wangdaye.com.geometricweather.R$styleable: int[] MaterialToolbar +wangdaye.com.geometricweather.R$id: int dialog_time_setter_container +androidx.core.R$drawable: int notification_template_icon_bg +androidx.hilt.R$id: int tag_unhandled_key_event_manager +com.turingtechnologies.materialscrollbar.R$attr: int behavior_autoHide +androidx.preference.R$id: int left +com.google.android.material.R$attr: int animate_relativeTo +com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_Tooltip +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position +androidx.appcompat.widget.AppCompatCheckBox: void setBackgroundResource(int) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_toolbar_default_height +androidx.vectordrawable.R$style: int Widget_Compat_NotificationActionText +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature +com.google.android.material.R$attr: int closeIconVisible +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_FULL_COLOR_VALIDATOR +com.jaredrummler.android.colorpicker.R$layout: int abc_action_menu_layout +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeTopRight +okhttp3.internal.ws.WebSocketProtocol: int CLOSE_CLIENT_GOING_AWAY +com.google.android.material.R$style: int Theme_MaterialComponents_NoActionBar_Bridge +retrofit2.ParameterHandler$HeaderMap: ParameterHandler$HeaderMap(java.lang.reflect.Method,int,retrofit2.Converter) +androidx.drawerlayout.R$drawable: int notify_panel_notification_icon_bg +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: ObservableWithLatestFromMany$WithLatestInnerObserver(io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver,int) +wangdaye.com.geometricweather.R$string: int action_appStore +androidx.preference.R$styleable: int Toolbar_titleMargin +wangdaye.com.geometricweather.R$xml: int icon_provider_animator_filter +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.QueryBuilder queryBuilder() +okhttp3.WebSocketListener +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: MfForecastV2Result$ForecastProperties() +wangdaye.com.geometricweather.R$layout: int notification_template_icon_group +cyanogenmod.app.CMStatusBarManager +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context) +okhttp3.internal.http2.Http2Stream$FramingSource: boolean $assertionsDisabled +androidx.constraintlayout.utils.widget.MotionTelltales: void setText(java.lang.CharSequence) +okhttp3.internal.http2.Http2Reader$ContinuationSource: long read(okio.Buffer,long) +okhttp3.Connection: okhttp3.Protocol protocol() +androidx.constraintlayout.widget.R$integer: int abc_config_activityShortDur +androidx.appcompat.R$drawable: int tooltip_frame_light +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontVariationSettings +okhttp3.FormBody: java.lang.String encodedName(int) +androidx.swiperefreshlayout.R$dimen: int notification_right_side_padding_top +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getLtoSource() +james.adaptiveicon.R$style: int Base_V22_Theme_AppCompat +androidx.coordinatorlayout.R$id: int accessibility_custom_action_13 +androidx.hilt.work.R$styleable: R$styleable() +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DrawingDelegate getCurrentDrawingDelegate() +cyanogenmod.externalviews.ExternalView$5: cyanogenmod.externalviews.ExternalView this$0 +wangdaye.com.geometricweather.R$attr: int contentPaddingLeft +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Toolbar +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams mParams +io.reactivex.Observable: io.reactivex.Observable concatDelayError(io.reactivex.ObservableSource,int,boolean) +james.adaptiveicon.R$styleable: int Toolbar_contentInsetEnd +androidx.preference.R$styleable: int Preference_allowDividerBelow +androidx.lifecycle.extensions.R$id: int actions +wangdaye.com.geometricweather.R$id: int treeValue +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.google.android.material.R$drawable: int abc_popup_background_mtrl_mult +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeStyle +com.google.android.material.R$attr: int queryHint +com.turingtechnologies.materialscrollbar.R$color: int abc_color_highlight_material +wangdaye.com.geometricweather.R$drawable: int notif_temp_94 +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMenuItemView +cyanogenmod.providers.CMSettings$Global: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onStop() +androidx.cardview.R$styleable: int CardView_cardBackgroundColor +wangdaye.com.geometricweather.R$xml: int cm_weather_provider_options +cyanogenmod.util.ColorUtils: int dropAlpha(int) +androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +androidx.appcompat.R$dimen: int tooltip_corner_radius +com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_small_material +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: java.lang.String Unit +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_popupTheme +okhttp3.logging.LoggingEventListener: void responseHeadersEnd(okhttp3.Call,okhttp3.Response) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_84 +com.turingtechnologies.materialscrollbar.R$id: int info +android.didikee.donate.R$attr: int titleTextColor +androidx.customview.R$color: int notification_icon_bg_color +cyanogenmod.weatherservice.ServiceRequestResult$Builder: cyanogenmod.weatherservice.ServiceRequestResult build() +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: ObservableReplay$InnerDisposable(io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver,io.reactivex.Observer) +com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActivityChooserView +androidx.vectordrawable.animated.R$dimen: int notification_subtext_size +androidx.fragment.R$id: int info +wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableItem +androidx.constraintlayout.widget.R$dimen: int compat_button_inset_horizontal_material +androidx.preference.R$style: int Base_Theme_AppCompat +com.google.android.material.R$attr: int shapeAppearanceSmallComponent +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_height_material +com.google.android.material.textfield.TextInputLayout: int getBoxBackgroundColor() +james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedHeightMinor +okhttp3.internal.ws.WebSocketProtocol: int CLOSE_NO_STATUS_CODE +wangdaye.com.geometricweather.R$color: int material_slider_thumb_color +androidx.lifecycle.ReportFragment: void injectIfNeededIn(android.app.Activity) +okio.ForwardingSource: java.lang.String toString() +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String TODAYS_HIGH_TEMPERATURE +cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_SLEEP_ON_RELEASE +com.google.gson.stream.JsonReader: boolean lenient +wangdaye.com.geometricweather.main.dialogs.LearnMoreAboutResidentLocationDialog: LearnMoreAboutResidentLocationDialog() +okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache$Editor currentEditor +wangdaye.com.geometricweather.R$color: int androidx_core_secondary_text_default_material_light +wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_height_minor +androidx.hilt.work.R$bool: int enable_system_alarm_service_default +wangdaye.com.geometricweather.R$id: int bounce +com.google.android.material.R$attr: int materialAlertDialogTitlePanelStyle +androidx.preference.R$attr: int viewInflaterClass +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent UNKNOWN +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onLockscreenSlideOffsetChanged(float) +androidx.preference.R$styleable: int CompoundButton_buttonCompat +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_bottom_padding +wangdaye.com.geometricweather.R$id: int item_about_translator +cyanogenmod.profiles.ConnectionSettings: cyanogenmod.profiles.ConnectionSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void innerError(io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver,java.lang.Throwable) +androidx.hilt.lifecycle.R$color: int secondary_text_default_material_light +androidx.transition.R$styleable +com.turingtechnologies.materialscrollbar.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +okhttp3.Request$Builder: okhttp3.Request build() +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_visible +com.turingtechnologies.materialscrollbar.R$id: int largeLabel +wangdaye.com.geometricweather.R$styleable: int SearchView_android_imeOptions +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorColors +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ENABLE +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Dialog +okhttp3.OkHttpClient$Builder: javax.net.ssl.SSLSocketFactory sslSocketFactory +wangdaye.com.geometricweather.R$attr: int dialogTheme +androidx.hilt.lifecycle.R$drawable: int notification_action_background +okio.RealBufferedSource: long readLongLe() +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedUsername(java.lang.String) +com.turingtechnologies.materialscrollbar.R$color: int material_grey_300 +okhttp3.internal.http2.Http2Writer: okio.Buffer hpackBuffer +okhttp3.internal.http.HttpMethod +com.xw.repo.bubbleseekbar.R$dimen: int abc_alert_dialog_button_dimen +wangdaye.com.geometricweather.R$styleable: int CardView_cardCornerRadius +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ +com.google.android.material.R$attr: int indicatorCornerRadius +wangdaye.com.geometricweather.R$attr: int customIntegerValue +com.bumptech.glide.integration.okhttp.R$attr: R$attr() +android.didikee.donate.R$attr: int spinnerStyle +cyanogenmod.weather.WeatherInfo: WeatherInfo(android.os.Parcel,cyanogenmod.weather.WeatherInfo$1) +androidx.appcompat.resources.R$id: int accessibility_custom_action_27 +cyanogenmod.app.CustomTile$ListExpandedStyle +io.reactivex.Observable: io.reactivex.Observable switchOnNextDelayError(io.reactivex.ObservableSource,int) +wangdaye.com.geometricweather.R$dimen: int compat_button_padding_vertical_material +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_width_overflow_material +com.google.android.material.R$attr: int enforceTextAppearance +androidx.work.R$string: R$string() +androidx.appcompat.R$id: int accessibility_custom_action_8 +cyanogenmod.hardware.ICMHardwareService: boolean isSunlightEnhancementSelfManaged() +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +com.google.android.material.R$bool: R$bool() +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_text_size +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionProviderClass +androidx.appcompat.resources.R$id: int async +com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: double Value +james.adaptiveicon.R$styleable: int ActionMode_subtitleTextStyle +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +androidx.preference.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +okhttp3.Challenge: java.lang.String scheme +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: long serialVersionUID +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_padding_top_material +cyanogenmod.externalviews.KeyguardExternalView: void binderDied() +androidx.constraintlayout.widget.R$styleable: int KeyCycle_wavePeriod +com.google.android.material.R$styleable: int CardView_contentPadding +androidx.constraintlayout.widget.R$attr: int motionStagger +androidx.constraintlayout.widget.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.R$styleable: int OnClick_clickAction +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.R$styleable: int KeyCycle_android_rotationX +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void complete() +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable +androidx.constraintlayout.widget.R$dimen: int abc_search_view_preferred_height +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabView +com.google.android.material.R$styleable: int Layout_layout_goneMarginEnd +retrofit2.Utils: java.lang.reflect.Type[] EMPTY_TYPE_ARRAY +okhttp3.internal.platform.Android10Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +cyanogenmod.weather.WeatherInfo: double mTodaysHighTemp +androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$styleable: int NavigationView_shapeAppearance +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceFragment +cyanogenmod.themes.IThemeService$Stub: IThemeService$Stub() +com.google.android.material.textfield.TextInputEditText: java.lang.CharSequence getHint() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedLevel +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setThunderstormPrecipitationProbability(java.lang.Float) +androidx.work.R$styleable: int FontFamilyFont_fontStyle +androidx.constraintlayout.widget.Group: Group(android.content.Context) +wangdaye.com.geometricweather.R$attr: int listItemLayout +com.google.android.material.R$styleable: int Variant_region_widthLessThan +com.jaredrummler.android.colorpicker.R$id: int cpv_hex +wangdaye.com.geometricweather.R$color: int colorRootDark_dark +androidx.constraintlayout.helper.widget.Layer: void setTranslationX(float) +com.google.android.material.R$dimen: int abc_cascading_menus_min_smallest_width +wangdaye.com.geometricweather.R$dimen: int material_helper_text_font_1_3_padding_top +wangdaye.com.geometricweather.R$id: int standard +androidx.activity.R$styleable: int ColorStateListItem_android_alpha +androidx.viewpager2.R$layout: int notification_template_part_time +okio.InflaterSource: int bufferBytesHeldByInflater +okhttp3.internal.http2.Settings: int MAX_FRAME_SIZE +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_entries +androidx.constraintlayout.widget.ConstraintHelper: int[] getReferencedIds() +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextAppearanceInactive +retrofit2.adapter.rxjava2.CallExecuteObservable +cyanogenmod.app.CustomTile$ExpandedStyle +retrofit2.Response: retrofit2.Response success(java.lang.Object,okhttp3.Headers) +androidx.lifecycle.ViewModelStores: androidx.lifecycle.ViewModelStore of(androidx.fragment.app.FragmentActivity) +com.xw.repo.bubbleseekbar.R$attr: int contentInsetLeft +androidx.appcompat.widget.SwitchCompat: java.lang.CharSequence getTextOff() +wangdaye.com.geometricweather.R$dimen: int notification_large_icon_height wangdaye.com.geometricweather.R$styleable: int MenuItem_android_numericShortcut -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCopyDrawable -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getRingtoneThemePackageName() -androidx.dynamicanimation.R$styleable: int GradientColor_android_startColor -androidx.appcompat.R$styleable: int[] AppCompatTextHelper -okhttp3.internal.http.HttpCodec: int DISCARD_STREAM_TIMEOUT_MILLIS -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase -androidx.constraintlayout.widget.R$styleable: int OnSwipe_onTouchUp -wangdaye.com.geometricweather.R$id: int activity_widget_config_top -retrofit2.RequestFactory$Builder: void parseMethodAnnotation(java.lang.annotation.Annotation) -androidx.fragment.R$id: int text2 -androidx.viewpager.R$attr: int fontProviderCerts -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -android.didikee.donate.R$attr: int editTextBackground -androidx.preference.R$id: int radio -androidx.appcompat.R$styleable: int SearchView_layout -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.util.Date Set -androidx.swiperefreshlayout.R$string: int status_bar_notification_info_overflow -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int sourceMode -com.google.android.material.textfield.TextInputLayout: int getEndIconMode() +com.jaredrummler.android.colorpicker.R$attr: int actionProviderClass +androidx.preference.R$attr: int titleMarginTop +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalGap +com.google.android.material.R$styleable: int OnClick_targetId +androidx.preference.R$id: int home +com.google.android.material.R$attr: int fastScrollHorizontalTrackDrawable +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +cyanogenmod.app.CustomTileListenerService: java.lang.String access$200(cyanogenmod.app.CustomTileListenerService) +androidx.work.R$color: int ripple_material_light +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy[] values() +com.turingtechnologies.materialscrollbar.R$styleable: int View_android_focusable +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain1h +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_toBottomOf +androidx.preference.R$style: int AlertDialog_AppCompat +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDegreeDayTemperature(java.lang.Integer) +wangdaye.com.geometricweather.main.MainActivity: MainActivity() +retrofit2.ParameterHandler$Path: java.lang.reflect.Method method +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +com.google.android.material.tabs.TabLayout$TabView: void setSelected(boolean) +com.jaredrummler.android.colorpicker.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light +io.reactivex.internal.observers.DeferredScalarObserver: void onComplete() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderLayout +androidx.appcompat.R$dimen: int abc_dialog_padding_top_material +cyanogenmod.hardware.DisplayMode$1: java.lang.Object[] newArray(int) +com.github.rahatarmanahmed.cpv.CircularProgressView$1: CircularProgressView$1(com.github.rahatarmanahmed.cpv.CircularProgressView) +androidx.appcompat.R$anim: int abc_shrink_fade_out_from_bottom +com.google.android.material.R$drawable: int abc_item_background_holo_light +wangdaye.com.geometricweather.R$layout: int test_design_checkbox +okio.AsyncTimeout: void exit(boolean) +wangdaye.com.geometricweather.R$attr: int colorPrimary +cyanogenmod.app.CMStatusBarManager: java.lang.String TAG +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver +wangdaye.com.geometricweather.R$styleable: int[] FloatingActionButton_Behavior_Layout +com.turingtechnologies.materialscrollbar.R$integer: int design_snackbar_text_max_lines +androidx.appcompat.R$style: int Widget_AppCompat_TextView_SpinnerItem +james.adaptiveicon.R$attr: int trackTintMode +cyanogenmod.app.PartnerInterface: java.lang.String TAG +wangdaye.com.geometricweather.R$styleable: int Chip_iconStartPadding +androidx.fragment.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_maxActionInlineWidth +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Title +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks asInterface(android.os.IBinder) +com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_minimum_range +wangdaye.com.geometricweather.R$attr: int chipStandaloneStyle +android.didikee.donate.R$color: R$color() +androidx.appcompat.R$styleable: int ViewBackgroundHelper_backgroundTint +cyanogenmod.os.Build$CM_VERSION_CODES: int ELDERBERRY +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter jsonValue(java.lang.String) +androidx.core.R$id: int accessibility_custom_action_16 +okhttp3.internal.Util: java.lang.String trimSubstring(java.lang.String,int,int) +wangdaye.com.geometricweather.R$drawable: int indicator_ltr +io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler,boolean,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating Heating +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setBadgeDrawables(android.util.SparseArray) +com.google.android.material.R$attr: int layout_constraintWidth_default +okhttp3.logging.LoggingEventListener: LoggingEventListener(okhttp3.logging.HttpLoggingInterceptor$Logger,okhttp3.logging.LoggingEventListener$1) +cyanogenmod.externalviews.ExternalView: void onActivityDestroyed(android.app.Activity) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.functions.Function mapper +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum Maximum +wangdaye.com.geometricweather.R$id: int view_offset_helper +androidx.core.widget.NestedScrollView: void setOnScrollChangeListener(androidx.core.widget.NestedScrollView$OnScrollChangeListener) +android.didikee.donate.R$attr: int actionModeWebSearchDrawable +com.turingtechnologies.materialscrollbar.R$attr: int tabContentStart +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: double Value +androidx.preference.R$layout: int abc_action_bar_up_container +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMarkTintMode +james.adaptiveicon.R$id: int search_plate +james.adaptiveicon.R$anim: int abc_fade_out +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat +android.didikee.donate.R$drawable: int abc_list_selector_disabled_holo_dark +wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogMessage +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter this$0 +com.google.android.material.R$dimen: int mtrl_toolbar_default_height +com.bumptech.glide.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter nighttimeWindDegreeConverter +androidx.preference.R$styleable: int MenuView_android_windowAnimationStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitationProbability +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderFetchStrategy +com.google.android.material.R$dimen: int mtrl_calendar_header_toggle_margin_bottom +okhttp3.internal.cache.DiskLruCache: java.lang.String REMOVE +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ListView_DropDown +android.didikee.donate.R$drawable: int abc_ic_star_black_36dp +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setIcon(android.graphics.Bitmap) +androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_creator +com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationZ(float) +androidx.lifecycle.ProcessLifecycleOwnerInitializer: int update(android.net.Uri,android.content.ContentValues,java.lang.String,java.lang.String[]) +james.adaptiveicon.R$id: int action_mode_close_button +com.jaredrummler.android.colorpicker.R$attr: int windowFixedWidthMinor +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_CONSUMED +wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog_actions +androidx.coordinatorlayout.widget.CoordinatorLayout: int getNestedScrollAxes() +android.didikee.donate.R$styleable: int ActionBar_contentInsetStart +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom +androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getTagValue() +wangdaye.com.geometricweather.R$styleable: int MotionLayout_showPaths +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_MinutelyEntityListQuery +com.google.android.material.circularreveal.CircularRevealFrameLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +androidx.constraintlayout.widget.R$attr: int actionModeBackground +okhttp3.internal.platform.ConscryptPlatform: ConscryptPlatform() +okio.Buffer: long indexOf(byte,long,long) +wangdaye.com.geometricweather.R$id: int container_main_pollen +com.xw.repo.bubbleseekbar.R$layout: int notification_template_custom_big +androidx.viewpager2.widget.ViewPager2: int getItemDecorationCount() +okhttp3.Cache$Entry: java.lang.String message +androidx.preference.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +io.reactivex.Observable: io.reactivex.Observable defer(java.util.concurrent.Callable) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$attr: int chipStartPadding +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Id +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level valueOf(java.lang.String) +com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableCompat +com.google.android.material.card.MaterialCardView: float getProgress() +com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingTop() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display2 +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_android_entries +com.google.android.material.R$color: int cardview_shadow_start_color +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_min +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_ensureMinTouchTargetSize +com.google.android.material.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.R$attr: int placeholder_emptyVisibility +com.google.android.material.slider.BaseSlider: int getTrackWidth() +okhttp3.Headers: java.lang.String toString() +com.jaredrummler.android.colorpicker.ColorPickerView +androidx.dynamicanimation.R$styleable: R$styleable() +androidx.swiperefreshlayout.R$dimen: int notification_large_icon_height +cyanogenmod.app.ProfileGroup: ProfileGroup(android.os.Parcel) +androidx.fragment.R$styleable: int GradientColor_android_startX +com.google.android.material.transformation.TransformationChildLayout +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderCerts +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressViewStartOffset() +com.google.android.material.internal.CheckableImageButton: void setPressable(boolean) +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleGravity +androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemIconDisabledAlpha +androidx.transition.R$attr: int alpha +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks access$100(cyanogenmod.externalviews.KeyguardExternalView) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onNext(java.lang.Object) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.settings.dialogs.WechatDonateDialog: WechatDonateDialog() +okio.GzipSink: okio.BufferedSink sink +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void run() +com.github.rahatarmanahmed.cpv.R$attr +cyanogenmod.weather.IRequestInfoListener$Stub: java.lang.String DESCRIPTOR +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +james.adaptiveicon.R$drawable: int abc_list_pressed_holo_light +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_dark +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_thumb_radius +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: org.reactivestreams.Subscriber downstream +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_3 +io.reactivex.internal.queue.SpscArrayQueue: java.util.concurrent.atomic.AtomicLong consumerIndex +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource valueOf(java.lang.String) +androidx.preference.R$styleable: int Preference_icon +com.google.android.material.R$dimen: int notification_small_icon_size_as_large +androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_to_on_mtrl_000 +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingTop +io.reactivex.internal.observers.LambdaObserver: void onComplete() +okio.SegmentedByteString: okio.ByteString sha1() +cyanogenmod.externalviews.KeyguardExternalView$10 +com.google.android.material.R$string: int path_password_eye_mask_visible +androidx.loader.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.constraintlayout.widget.R$styleable: int ActionBar_progressBarPadding +androidx.work.R$styleable: int GradientColor_android_endColor +androidx.constraintlayout.widget.R$string +com.google.android.material.R$styleable: int CollapsingToolbarLayout_maxLines +androidx.appcompat.R$drawable: int abc_list_divider_mtrl_alpha +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setBackgroundResource(int) +androidx.appcompat.R$styleable: int TextAppearance_android_textStyle +io.reactivex.internal.schedulers.RxThreadFactory: java.lang.Thread newThread(java.lang.Runnable) +com.google.android.material.textfield.TextInputLayout: void setErrorTextColor(android.content.res.ColorStateList) +com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException: DefaultImageHeaderParser$Reader$EndOfFileException() +androidx.coordinatorlayout.R$drawable: int notification_action_background +cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo() +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItem +com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_CheckBox +james.adaptiveicon.R$style: int Platform_AppCompat +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerY +retrofit2.RequestBuilder: char[] HEX_DIGITS +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void drain() +androidx.appcompat.R$attr: int buttonCompat +wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_in_lockScreen +okhttp3.MediaType: java.lang.String type() +com.turingtechnologies.materialscrollbar.R$attr: int titleMarginStart +com.google.android.material.R$styleable: int Layout_layout_constrainedWidth +com.google.android.material.timepicker.ChipTextInputComboView: void setOnClickListener(android.view.View$OnClickListener) +com.bumptech.glide.R$id: int glide_custom_view_target_tag +com.google.android.material.R$dimen: int mtrl_card_dragged_z +com.google.android.material.R$attr: int tabMaxWidth +james.adaptiveicon.R$id: int scrollIndicatorUp +wangdaye.com.geometricweather.R$string: int page_indicator +wangdaye.com.geometricweather.R$id: int dialog_time_setter_time_picker +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView_DropDown +com.turingtechnologies.materialscrollbar.R$attr: int msb_hideDelayInMilliseconds +wangdaye.com.geometricweather.R$attr: int tabPaddingTop +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastVerticalBias +androidx.appcompat.resources.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$id: int rectangles +androidx.constraintlayout.helper.widget.Flow: void setFirstHorizontalBias(float) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Connection connection +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItemSecondary +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: long serialVersionUID +androidx.appcompat.R$id: int accessibility_custom_action_2 +com.jaredrummler.android.colorpicker.R$attr: int theme +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_Layout_layout_scrollFlags +com.jaredrummler.android.colorpicker.R$bool: R$bool() +com.google.android.material.R$styleable: int AppCompatTheme_listDividerAlertDialog +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent[] $VALUES +androidx.fragment.R$id: int tag_accessibility_clickable_spans +cyanogenmod.weather.WeatherLocation$Builder: WeatherLocation$Builder(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintDimensionRatio +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String so2 +james.adaptiveicon.R$layout: int abc_dialog_title_material +androidx.appcompat.R$styleable: int SearchView_queryBackground +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias +okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithIncrementalIndexingNewName() +com.google.android.material.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$layout: int abc_tooltip +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge +wangdaye.com.geometricweather.R$id: int action_menu_presenter +androidx.hilt.work.R$dimen: int notification_action_text_size +androidx.constraintlayout.widget.R$id: int search_mag_icon +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_17 +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: ParallelRunOn$BaseRunOnSubscriber(int,io.reactivex.internal.queue.SpscArrayQueue,io.reactivex.Scheduler$Worker) +androidx.dynamicanimation.R$color: int notification_action_color_filter +androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context,android.util.AttributeSet) +androidx.preference.R$styleable: int MenuView_android_itemIconDisabledAlpha +androidx.appcompat.R$layout: int abc_list_menu_item_layout +cyanogenmod.app.LiveLockScreenManager: java.lang.String SERVICE_INTERFACE +androidx.recyclerview.R$styleable: int RecyclerView_spanCount +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context) +androidx.appcompat.R$attr: int editTextColor +com.jaredrummler.android.colorpicker.R$attr: int listDividerAlertDialog +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeCloudCover +wangdaye.com.geometricweather.R$attr: int bsb_thumb_text_color +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_precise_anchor_threshold +androidx.appcompat.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: float getPressure(float) +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sUriValidator +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum() +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Inverse +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.AbstractDaoSession session +io.reactivex.Observable: io.reactivex.Observable cache() +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: retrofit2.Callback val$callback +com.google.gson.internal.LinkedTreeMap: boolean containsKey(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_CompactMenu wangdaye.com.geometricweather.R$id: int searchBar -okhttp3.internal.http2.Hpack$Reader -androidx.appcompat.widget.AppCompatImageView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -okhttp3.internal.http.RetryAndFollowUpInterceptor: int MAX_FOLLOW_UPS -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: io.reactivex.disposables.Disposable upstream -android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -wangdaye.com.geometricweather.R$id: int chains -com.google.android.material.R$styleable: int Layout_layout_constraintEnd_toEndOf -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: AccuCurrentResult$Past24HourTemperatureDeparture$Imperial() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getTitle() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline3 -com.jaredrummler.android.colorpicker.R$attr: int buttonBarNeutralButtonStyle -james.adaptiveicon.R$styleable: int ActionBar_popupTheme -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_creator -androidx.preference.R$style: int Widget_AppCompat_ActionButton -androidx.preference.R$style: int Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.R$string: int preference_copied -androidx.constraintlayout.widget.R$attr: int subtitleTextStyle -wangdaye.com.geometricweather.R$styleable: int[] MenuView -wangdaye.com.geometricweather.R$color: int material_deep_teal_500 -okhttp3.EventListener: void connectEnd(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol) -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable -okhttp3.OkHttpClient$Builder: java.util.List networkInterceptors() -okhttp3.MultipartBody$Builder: MultipartBody$Builder() -cyanogenmod.content.Intent: java.lang.String ACTION_SCREEN_CAMERA_GESTURE -androidx.lifecycle.extensions.R$string: int status_bar_notification_info_overflow -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMargin +wangdaye.com.geometricweather.R$string: int key_card_style +androidx.preference.R$string: int abc_menu_ctrl_shortcut_label +wangdaye.com.geometricweather.R$attr: int shapeAppearanceSmallComponent +cyanogenmod.providers.CMSettings$Global: long getLong(android.content.ContentResolver,java.lang.String,long) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu +com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Subtitle2 +androidx.appcompat.resources.R$styleable: int ColorStateListItem_android_color +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_material_light +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Borderless_Colored +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarPopupTheme +android.didikee.donate.R$attr: int collapseIcon +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver this$0 +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_12 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun Sun +android.didikee.donate.R$dimen: int abc_select_dialog_padding_start_material +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: MfForecastResult$Forecast() +com.jaredrummler.android.colorpicker.R$dimen: int preference_icon_minWidth +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.internal.disposables.SequentialDisposable task +io.reactivex.internal.observers.DeferredScalarObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.background.receiver.widget.AbstractWidgetProvider +wangdaye.com.geometricweather.R$string: int key_notification_minimal_icon +wangdaye.com.geometricweather.R$attr: int fontProviderFetchTimeout +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_saturation +androidx.lifecycle.LiveData: boolean mDispatchingValue +androidx.appcompat.R$id: int search_badge +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$xml: int perference +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$attr: int initialActivityCount +androidx.constraintlayout.widget.R$dimen: int abc_text_size_small_material +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_subhead_material +com.google.android.material.R$styleable: int StateListDrawable_android_exitFadeDuration +io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.MaybeSource) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_bias +com.google.android.material.R$dimen: int abc_control_inset_material +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconTint +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NAME +androidx.coordinatorlayout.R$drawable: int notification_bg_low +com.jaredrummler.android.colorpicker.R$color: int abc_tint_edittext +androidx.constraintlayout.widget.R$attr: int layout_constraintStart_toStartOf +okhttp3.internal.http2.Http2Stream$FramingSource: okhttp3.internal.http2.Http2Stream this$0 +okhttp3.Request$Builder: okhttp3.Request$Builder patch(okhttp3.RequestBody) +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: java.lang.String getCloudCoverText(int) +androidx.preference.R$attr: int ratingBarStyleIndicator +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: KeyguardExternalViewProviderService$Provider$ProviderImpl$9(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,int,int,int,int,boolean,android.graphics.Rect) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String dailyForecast +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listMenuViewStyle +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Title +cyanogenmod.app.ThemeVersion: cyanogenmod.app.ThemeVersion$ComponentVersion getComponentVersion(cyanogenmod.app.ThemeComponent) +wangdaye.com.geometricweather.R$id: int animateToStart +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +com.jaredrummler.android.colorpicker.R$attr: int windowNoTitle +android.didikee.donate.R$styleable: int[] PopupWindow +androidx.preference.R$styleable: int FontFamily_fontProviderAuthority +android.didikee.donate.R$attr: int editTextColor +com.google.android.material.R$attr: int drawerArrowStyle +cyanogenmod.providers.CMSettings$Secure$2: java.lang.String mDelimiter +androidx.recyclerview.R$id: int accessibility_custom_action_22 +androidx.appcompat.R$drawable: int notification_tile_bg +androidx.appcompat.R$attr: int textAllCaps +androidx.viewpager.R$layout: int notification_template_custom_big +androidx.recyclerview.R$id: int tag_transition_group +androidx.constraintlayout.widget.R$id: int search_plate +wangdaye.com.geometricweather.R$attr: int layout_dodgeInsetEdges +com.google.android.material.R$styleable: int TextAppearance_android_shadowColor +androidx.core.R$attr: int alpha +androidx.constraintlayout.widget.R$dimen: int tooltip_corner_radius +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: java.lang.Object poll() +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Body2 +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSo2(java.lang.Float) +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Borderless +com.google.android.material.R$attr: int collapsingToolbarLayoutStyle +androidx.preference.R$styleable: int GradientColorItem_android_offset +androidx.appcompat.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_end_padding_icon +james.adaptiveicon.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void otherError(java.lang.Throwable) +androidx.appcompat.R$style: int Theme_AppCompat_Dialog +cyanogenmod.app.Profile: Profile(android.os.Parcel) +cyanogenmod.themes.ThemeChangeRequest: cyanogenmod.themes.ThemeChangeRequest$RequestType getReqeustType() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +androidx.lifecycle.ViewModel +com.jaredrummler.android.colorpicker.R$attr: int panelMenuListTheme +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.util.concurrent.TimeUnit unit +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_ActionBar +androidx.constraintlayout.widget.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric Metric +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String YEAR +okhttp3.Cache$2: void remove() +wangdaye.com.geometricweather.R$styleable: int FitSystemBarNestedScrollView_sv_side +com.jaredrummler.android.colorpicker.R$id: int expanded_menu +androidx.preference.R$attr: int dependency +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: void setUnit(java.lang.String) +androidx.viewpager.widget.ViewPager: void setPageMarginDrawable(android.graphics.drawable.Drawable) +com.google.android.material.tabs.TabLayout: void setUnboundedRipple(boolean) +cyanogenmod.alarmclock.ClockContract +android.didikee.donate.R$id: int scrollView +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_22 +wangdaye.com.geometricweather.R$attr: int helperText +androidx.appcompat.R$attr: int buttonTintMode +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeLevel +androidx.transition.R$id: int notification_background +cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.os.Parcel,cyanogenmod.app.LiveLockScreenInfo$1) +com.xw.repo.BubbleSeekBar: com.xw.repo.BubbleSeekBar$OnProgressChangedListener getOnProgressChangedListener() +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat +wangdaye.com.geometricweather.db.entities.HistoryEntity: int getDaytimeTemperature() +okhttp3.OkHttpClient: java.util.List interceptors +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView_Menu +com.google.android.material.R$color: int material_on_background_disabled +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconTintMode +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: AccuDailyResult$DailyForecasts$Night$Ice() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windSpeedStart +com.google.android.material.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionMode +com.google.android.material.R$styleable: int ConstraintSet_android_translationX +wangdaye.com.geometricweather.R$styleable: int Variant_region_widthLessThan +com.google.android.material.R$styleable: int FloatingActionButton_pressedTranslationZ +androidx.viewpager2.R$id: int time +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabTextColor +cyanogenmod.hardware.CMHardwareManager: int getVibratorWarningIntensity() +io.reactivex.Observable: io.reactivex.Completable ignoreElements() +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void clear(io.reactivex.internal.queue.SpscLinkedArrayQueue) +androidx.appcompat.R$attr: int closeIcon +com.google.android.material.R$attr: int actionButtonStyle +cyanogenmod.externalviews.KeyguardExternalView$2: void setInteractivity(boolean) +com.google.android.material.R$drawable: int mtrl_tabs_default_indicator +com.google.android.material.R$styleable: int FontFamilyFont_ttcIndex +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstVerticalStyle +androidx.appcompat.R$style: int TextAppearance_AppCompat_Button +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType WEBP_A +cyanogenmod.app.Profile$ProfileTrigger: int access$202(cyanogenmod.app.Profile$ProfileTrigger,int) +androidx.appcompat.resources.R$attr +androidx.appcompat.R$string: int abc_menu_alt_shortcut_label +cyanogenmod.providers.WeatherContract +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_background +androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_top_material +androidx.constraintlayout.widget.R$styleable: int Constraint_transitionPathRotate +james.adaptiveicon.R$dimen: int tooltip_horizontal_padding +wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity +james.adaptiveicon.R$attr: int ratingBarStyleSmall +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property CityId +androidx.appcompat.widget.ViewStubCompat: int getLayoutResource() +androidx.appcompat.R$layout: int notification_template_part_time +androidx.activity.R$id: int accessibility_custom_action_3 +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_displayOptions +androidx.vectordrawable.animated.R$drawable: int notification_tile_bg +okhttp3.HttpUrl$Builder: int effectivePort() +com.google.android.material.R$styleable: int AppCompatTheme_seekBarStyle +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_weight +androidx.appcompat.R$attr: int popupMenuStyle +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeTextType +cyanogenmod.weather.CMWeatherManager: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener) +com.google.android.material.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration +retrofit2.ParameterHandler$FieldMap: void apply(retrofit2.RequestBuilder,java.util.Map) +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.R$drawable: int ic_precipitation +okhttp3.internal.cache.CacheInterceptor: boolean isContentSpecificHeader(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: boolean isValid() +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderFetchStrategy +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.bumptech.glide.integration.okhttp.R$attr: int layout_anchorGravity +com.google.android.material.R$styleable: int BottomAppBar_backgroundTint +androidx.appcompat.R$styleable: int View_theme +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onKeyguardDismissed() +wangdaye.com.geometricweather.R$string: int key_widget_minimal_icon +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.disposables.Disposable upstream +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar +androidx.fragment.R$id: int accessibility_custom_action_27 +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerSlack +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.LocationEntity) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowNoTitle +androidx.constraintlayout.widget.R$attr: int perpendicularPath_percent +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onSuccess(java.lang.Object) +okhttp3.HttpUrl$Builder: java.lang.String host +cyanogenmod.providers.CMSettings$Secure: float getFloat(android.content.ContentResolver,java.lang.String) +androidx.dynamicanimation.R$attr: int font +androidx.appcompat.R$attr: int background +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: MfCurrentResult() +wangdaye.com.geometricweather.R$integer: int abc_config_activityDefaultDur +android.didikee.donate.R$color: int material_grey_300 +okhttp3.CookieJar$1: CookieJar$1() +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_progress +com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_swipe_escape_max_velocity +io.reactivex.disposables.RunnableDisposable +okhttp3.Request$Builder: okhttp3.Request$Builder tag(java.lang.Object) +retrofit2.Platform: retrofit2.Platform findPlatform() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelMenuListWidth +androidx.loader.R$id: int action_image +cyanogenmod.externalviews.ExternalViewProperties: android.graphics.Rect mHitRect +cyanogenmod.providers.CMSettings$System: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_COLOR_ADJUSTMENT +androidx.core.R$color: int androidx_core_ripple_material_light +okhttp3.internal.http1.Http1Codec: int STATE_OPEN_RESPONSE_BODY +com.google.android.material.R$styleable: int ShapeableImageView_strokeWidth +androidx.appcompat.R$attr: int overlapAnchor +james.adaptiveicon.R$color: R$color() +org.greenrobot.greendao.AbstractDaoSession: void runInTx(java.lang.Runnable) +cyanogenmod.app.ICMStatusBarManager$Stub: java.lang.String DESCRIPTOR +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_creator +com.turingtechnologies.materialscrollbar.R$id: int design_navigation_view +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_elevation +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_primary +com.google.android.material.R$color: int mtrl_filled_background_color +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert +okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.WebSocketReader reader +okhttp3.OkHttpClient$1: OkHttpClient$1() +androidx.lifecycle.extensions.R$anim: int fragment_open_enter +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_color +androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$drawable: int notif_temp_76 +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void windowUpdate(int,long) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RealFeelTemperature +androidx.vectordrawable.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Prefix +com.turingtechnologies.materialscrollbar.R$styleable: int ScrimInsetsFrameLayout_insetForeground +io.reactivex.Observable: java.lang.Iterable blockingLatest() +io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function,boolean) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixTextAppearance +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_4 +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.R$string: int settings_title_icon_provider +okhttp3.Headers: java.lang.String name(int) +com.google.android.material.R$color: int notification_action_color_filter +com.bumptech.glide.R$id: int action_image +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: ObservableTakeLastTimed$TakeLastTimedObserver(io.reactivex.Observer,long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,boolean) +wangdaye.com.geometricweather.R$id: int widget_week_temp_1 +wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_android_src +wangdaye.com.geometricweather.R$attr: int progress +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +com.xw.repo.bubbleseekbar.R$attr: int paddingStart +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: java.lang.String icon +androidx.hilt.work.R$styleable: int FontFamilyFont_fontWeight +io.reactivex.internal.observers.BasicIntQueueDisposable: int requestFusion(int) +okhttp3.MediaType +okio.ByteString: boolean equals(java.lang.Object) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_SLEEP_ON_RELEASE_VALIDATOR +com.google.android.material.R$styleable: int KeyTimeCycle_android_rotationY +com.google.android.material.R$attr: int menu +wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonTintMode +com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$attr: int background +com.google.android.material.R$styleable: int[] OnSwipe +com.xw.repo.bubbleseekbar.R$attr: int bsb_second_track_size +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCloseDrawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: void setSpeed(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean) +androidx.viewpager2.R$drawable: int notification_template_icon_low_bg +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX getBrandInfo() +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_3 +okhttp3.internal.cache2.Relay: okio.ByteString metadata +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean getSunRiseSet() +wangdaye.com.geometricweather.R$string: int abc_menu_function_shortcut_label +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm10Desc +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_OFF +james.adaptiveicon.R$drawable: int abc_seekbar_track_material +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableRight +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeMinTextSize +okhttp3.internal.ws.WebSocketProtocol: int PAYLOAD_LONG +com.google.android.material.R$id: int cut +okhttp3.internal.http2.Http2Connection: void writeSynResetLater(int,okhttp3.internal.http2.ErrorCode) +com.google.android.material.R$styleable: int KeyPosition_percentHeight +wangdaye.com.geometricweather.R$color: int mtrl_chip_background_color +com.xw.repo.bubbleseekbar.R$styleable: int View_paddingStart +androidx.lifecycle.ComputableLiveData$2: void run() +com.google.android.material.R$styleable: int GradientColorItem_android_offset +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextStyle +com.google.android.material.R$styleable: int AppCompatTheme_actionDropDownStyle +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamily +com.xw.repo.bubbleseekbar.R$id: int src_over +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetRight +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler[] parameterHandlers +wangdaye.com.geometricweather.R$attr: int helperTextEnabled +androidx.loader.R$layout: R$layout() +androidx.preference.R$dimen: int compat_control_corner_material +com.google.android.material.R$string: int mtrl_picker_text_input_date_hint +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startColor +com.google.android.material.R$style: int TextAppearance_Design_Snackbar_Message +androidx.constraintlayout.widget.R$id: int radio +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullResourceIdException +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setEn_US(java.lang.String) +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getCounterOverflowTextColor() +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_visible +wangdaye.com.geometricweather.R$color: int material_timepicker_button_background +cyanogenmod.profiles.AirplaneModeSettings$BooleanState: AirplaneModeSettings$BooleanState() +com.google.android.material.R$styleable: int KeyCycle_curveFit +okio.SegmentPool: void recycle(okio.Segment) +androidx.hilt.lifecycle.R$layout: int notification_action +androidx.hilt.R$id: int blocking +com.google.android.material.R$string: int abc_shareactionprovider_share_with +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String BriefPhrase +androidx.drawerlayout.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial Imperial +wangdaye.com.geometricweather.R$attr: int pageIndicatorColor +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Menu +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float snow +wangdaye.com.geometricweather.R$layout: int material_clockface_view +wangdaye.com.geometricweather.R$dimen: int abc_dialog_min_width_minor +okhttp3.MultipartBody$Builder: MultipartBody$Builder(java.lang.String) +wangdaye.com.geometricweather.R$attr: int actionModeSelectAllDrawable +com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_preserveIconSpacing +androidx.appcompat.resources.R$styleable: int FontFamilyFont_font +okhttp3.internal.Util: java.nio.charset.Charset UTF_8 +androidx.appcompat.R$style: int Base_Widget_AppCompat_Toolbar +androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingEnd +com.github.rahatarmanahmed.cpv.CircularProgressView$1: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity +okhttp3.internal.Util$1: int compare(java.lang.String,java.lang.String) +androidx.appcompat.widget.ActionBarContainer: ActionBarContainer(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$attr: int boxBackgroundMode +com.google.android.material.R$attr: int tint +wangdaye.com.geometricweather.R$attr: int shapeAppearanceOverlay +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedQuery(java.lang.String) +wangdaye.com.geometricweather.R$attr: int itemShapeAppearanceOverlay +androidx.preference.R$style: int Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.R$id: int action_text +okhttp3.internal.ws.RealWebSocket$CancelRunnable: void run() +androidx.preference.R$styleable: int[] MultiSelectListPreference +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_android_maxHeight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric() +com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.HourlyEntity,int) +android.didikee.donate.R$styleable: int AppCompatImageView_android_src +androidx.constraintlayout.motion.widget.MotionLayout +androidx.appcompat.widget.ActionBarContainer: void setVisibility(int) +wangdaye.com.geometricweather.R$id: int topPanel +com.google.android.material.R$styleable: int[] MaterialCalendar +android.didikee.donate.R$attr: int checkedTextViewStyle +io.reactivex.internal.subscriptions.SubscriptionArbiter: void drainLoop() +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: Http2Codec$StreamFinishingSource(okhttp3.internal.http2.Http2Codec,okio.Source) +com.google.android.material.R$styleable: int[] TabItem +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_searchHintIcon +com.turingtechnologies.materialscrollbar.R$attr: int editTextColor +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_TextInputLayout +com.xw.repo.bubbleseekbar.R$drawable: int abc_vector_test +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_toolbarId +android.didikee.donate.R$styleable: int DrawerArrowToggle_arrowHeadLength +androidx.hilt.work.R$dimen +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_hide_bubble +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dropDownListViewStyle +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit valueOf(java.lang.String) +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable,int,int) +android.didikee.donate.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +com.google.android.material.R$id: int postLayout +com.turingtechnologies.materialscrollbar.R$attr: int backgroundStacked +wangdaye.com.geometricweather.db.entities.DailyEntity: void setHoursOfSun(float) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void onAttachedToWindow() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean hasKey(java.lang.Object) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +androidx.activity.R$id: int accessibility_custom_action_24 +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver +androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_android_thumb +wangdaye.com.geometricweather.R$color: int mtrl_textinput_disabled_color +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabText +androidx.preference.R$style: int Widget_AppCompat_Light_PopupMenu +cyanogenmod.hardware.ICMHardwareService: boolean setDisplayGammaCalibration(int,int[]) +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_black +okhttp3.internal.http1.Http1Codec$AbstractSource: okhttp3.internal.http1.Http1Codec this$0 +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_processCityNameLookupRequest +androidx.hilt.lifecycle.R$id: int action_image +com.turingtechnologies.materialscrollbar.R$attr: int actionButtonStyle +android.didikee.donate.R$string: int abc_capital_on +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.lang.Throwable error +androidx.constraintlayout.widget.R$styleable: int Constraint_drawPath +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: void setDirection(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SMOKY +wangdaye.com.geometricweather.R$attr: int mock_showLabel +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Primary +com.jaredrummler.android.colorpicker.R$styleable: int[] RecyclerView cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast$Builder setLow(double) -com.google.android.material.R$id: int fade -androidx.lifecycle.LifecycleService: androidx.lifecycle.Lifecycle getLifecycle() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setZh_CN(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric Metric -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha -cyanogenmod.externalviews.ExternalView$6: cyanogenmod.externalviews.ExternalView this$0 -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constrainedHeight -com.turingtechnologies.materialscrollbar.R$attr: int useCompatPadding -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleTextColor -com.xw.repo.bubbleseekbar.R$id: int sides -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontStyle -com.google.android.material.R$attr: int isLightTheme -androidx.drawerlayout.R$string: int status_bar_notification_info_overflow -androidx.constraintlayout.widget.R$styleable: int SearchView_android_inputType -androidx.constraintlayout.widget.R$attr: int curveFit -com.bumptech.glide.R$drawable: int notification_bg_low_normal -androidx.appcompat.R$dimen: int abc_action_bar_default_padding_start_material -androidx.vectordrawable.animated.R$attr -okio.Segment: int limit -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_collapseIcon -com.google.android.material.chip.Chip: void setCloseIconStartPaddingResource(int) -androidx.lifecycle.extensions.R$id: int info -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: long subscriberCount -wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_chronus -com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderText(java.lang.String) -androidx.preference.TwoStatePreference$SavedState -okhttp3.Cache$Entry: java.lang.String message -wangdaye.com.geometricweather.R$drawable: int notif_temp_3 -cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_WEATHER_MANAGER -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_EditText -androidx.customview.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.R$styleable: int Transform_android_rotationX +retrofit2.Utils$ParameterizedTypeImpl: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: WeatherEntityDao$Properties() +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_LIFE_DETAILS +okhttp3.Request$Builder: Request$Builder() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setPivotY(float) +androidx.appcompat.R$styleable: int MenuItem_android_alphabeticShortcut +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +okhttp3.Interceptor$Chain: okhttp3.Call call() +cyanogenmod.app.Profile$NotificationLightMode +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade RealFeelTemperatureShade +com.google.android.material.snackbar.Snackbar$SnackbarLayout: Snackbar$SnackbarLayout(android.content.Context) +androidx.fragment.R$id: int notification_main_column +retrofit2.http.QueryName: boolean encoded() +androidx.preference.R$styleable: int AppCompatTheme_actionMenuTextAppearance +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint DewPoint +okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date servedDate +com.turingtechnologies.materialscrollbar.R$id: int text +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceId() +james.adaptiveicon.R$styleable: int AppCompatTheme_textColorSearchUrl +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$color: int colorTextSubtitle +com.jaredrummler.android.colorpicker.R$attr: int actionModeCloseDrawable +cyanogenmod.profiles.StreamSettings: void readFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_50 +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isAsync +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBaseline_creator +androidx.hilt.lifecycle.R$color: R$color() +io.reactivex.observers.TestObserver$EmptyObserver: void onComplete() +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: CompletableFutureCallAdapterFactory$BodyCallAdapter(java.lang.reflect.Type) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String date +com.jaredrummler.android.colorpicker.R$id: int tag_transition_group +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void dispose() +androidx.lifecycle.extensions.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_seekBarPreferenceStyle +android.didikee.donate.R$style: int Widget_AppCompat_Spinner +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource) +androidx.constraintlayout.widget.R$attr: int drawPath +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastHorizontalStyle +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: double Value +io.reactivex.Observable: io.reactivex.Single contains(java.lang.Object) +android.didikee.donate.R$attr: int contentInsetEnd +com.google.android.material.R$attr: int commitIcon +com.turingtechnologies.materialscrollbar.R$styleable: int[] ScrimInsetsFrameLayout +androidx.appcompat.widget.SearchView: void setIconified(boolean) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorAccent +okhttp3.EventListener: okhttp3.EventListener NONE +io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,boolean) +okhttp3.internal.http2.Settings: int getInitialWindowSize() +wangdaye.com.geometricweather.R$color: int mtrl_calendar_selected_range +androidx.vectordrawable.R$dimen: int notification_subtext_size +james.adaptiveicon.R$attr +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$attr: int tabInlineLabel +retrofit2.RequestFactory: okhttp3.Headers headers +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_divider_material +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLBTN_MUSIC_CONTROLS_VALIDATOR +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Line2 +cyanogenmod.themes.IThemeService$Stub$Proxy: void requestThemeChangeUpdates(cyanogenmod.themes.IThemeChangeListener) +cyanogenmod.themes.ThemeManager: void registerProcessingListener(cyanogenmod.themes.ThemeManager$ThemeProcessingListener) +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeColorStateList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition ABOVE_LINE +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource CAIYUN +wangdaye.com.geometricweather.R$drawable: int ic_top +okhttp3.internal.http.CallServerInterceptor: CallServerInterceptor(boolean) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$attr: int behavior_fitToContents +androidx.preference.R$styleable: int AppCompatTheme_windowMinWidthMinor +com.google.android.material.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +okhttp3.internal.ws.RealWebSocket: boolean send(okio.ByteString) +cyanogenmod.app.CMContextConstants: java.lang.String CM_LIVE_LOCK_SCREEN_SERVICE +wangdaye.com.geometricweather.R$styleable: int ListPreference_android_entryValues +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_26 +okhttp3.internal.ws.WebSocketProtocol: long PAYLOAD_SHORT_MAX +androidx.recyclerview.R$id: int accessibility_custom_action_3 +androidx.appcompat.widget.ActionMenuView: void setOverflowIcon(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$string: int of_clock +okio.Buffer: okio.ByteString hmac(java.lang.String,okio.ByteString) +androidx.appcompat.R$drawable: int abc_btn_colored_material +wangdaye.com.geometricweather.R$drawable: int notif_temp_133 +wangdaye.com.geometricweather.R$dimen: int subtitle_text_size +okhttp3.Request$Builder: okhttp3.Request$Builder head() +androidx.vectordrawable.R$styleable: int GradientColor_android_centerColor +androidx.constraintlayout.widget.R$attr: int fontProviderPackage +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_SETTINGS +com.google.android.material.R$attr: int dividerHorizontal +com.google.android.material.R$styleable: int LinearLayoutCompat_android_gravity +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onComplete() +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.LifecycleRegistry mRegistry +com.google.android.material.R$styleable: int NavigationView_shapeAppearanceOverlay +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.lifecycle.ComputableLiveData: java.util.concurrent.Executor mExecutor +android.didikee.donate.R$drawable +wangdaye.com.geometricweather.R$style: int Animation_Design_BottomSheetDialog +wangdaye.com.geometricweather.R$drawable: int widget_week +io.reactivex.internal.disposables.ArrayCompositeDisposable: boolean isDisposed() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$attr: int cpv_colorPresets +okhttp3.internal.connection.StreamAllocation: boolean canceled +wangdaye.com.geometricweather.R$attr: int navigationIconColor +io.reactivex.observers.TestObserver$EmptyObserver: void onSubscribe(io.reactivex.disposables.Disposable) +retrofit2.Utils: boolean equals(java.lang.reflect.Type,java.lang.reflect.Type) +okhttp3.ConnectionPool: ConnectionPool() +okio.GzipSink: void updateCrc(okio.Buffer,long) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex inTwoDays +android.didikee.donate.R$styleable: int SearchView_searchHintIcon +com.bumptech.glide.load.HttpException: HttpException(java.lang.String,int) +com.jaredrummler.android.colorpicker.R$attr: int fastScrollVerticalThumbDrawable +com.xw.repo.bubbleseekbar.R$color: int dim_foreground_material_light +wangdaye.com.geometricweather.R$id: int item_weather_icon_image +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dialog +androidx.work.R$id: int tag_accessibility_actions +androidx.dynamicanimation.R$id: int chronometer +com.jaredrummler.android.colorpicker.R$string: int cpv_select +cyanogenmod.app.ICMStatusBarManager: void removeCustomTileFromListener(cyanogenmod.app.ICustomTileListener,java.lang.String,java.lang.String,int) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_icon +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap +retrofit2.ParameterHandler$PartMap: void apply(retrofit2.RequestBuilder,java.util.Map) +android.support.v4.os.ResultReceiver$1 +androidx.lifecycle.extensions.R$drawable: R$drawable() +okhttp3.internal.http1.Http1Codec$ChunkedSource: long read(okio.Buffer,long) +com.google.android.material.R$styleable: int RecyclerView_spanCount +james.adaptiveicon.R$styleable: int ActionBar_homeLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getType() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_ENCODE_SET_URI +com.turingtechnologies.materialscrollbar.R$id: int content +android.didikee.donate.R$dimen: int abc_action_bar_default_padding_end_material +wangdaye.com.geometricweather.R$styleable: int Constraint_android_transformPivotX +androidx.dynamicanimation.R$id: int time +androidx.work.R$attr: int fontStyle +io.reactivex.internal.queue.SpscArrayQueue: boolean offer(java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime realtime +com.google.android.material.R$dimen: int mtrl_btn_padding_bottom +wangdaye.com.geometricweather.R$attr: int checkedButton +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context,android.util.AttributeSet,int) +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: boolean disposed +wangdaye.com.geometricweather.R$id: int autoComplete +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void innerError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$drawable: R$drawable() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature +com.jaredrummler.android.colorpicker.R$string: int v7_preference_on +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean tryEmitScalar(java.util.concurrent.Callable) +androidx.preference.R$id: int radio +james.adaptiveicon.R$attr: int srcCompat +com.bumptech.glide.integration.okhttp.R$drawable: int notification_tile_bg +okhttp3.internal.http2.Hpack$Writer +wangdaye.com.geometricweather.R$id: int preset +cyanogenmod.weather.WeatherLocation: int hashCode() +androidx.lifecycle.ComputableLiveData: java.lang.Object compute() +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() +okhttp3.Dispatcher: void cancelAll() +com.turingtechnologies.materialscrollbar.R$attr: int panelMenuListTheme +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_closeItemLayout +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default +androidx.preference.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedIndex +com.google.android.material.R$attr: int prefixTextAppearance +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void disposeAfter() +retrofit2.RequestFactory$Builder: boolean gotQuery +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_2G +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +com.google.android.material.R$id: int design_menu_item_text +com.google.android.material.R$styleable: int ActionBar_icon +wangdaye.com.geometricweather.R$string: int feedback_initializing +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getHour(android.content.Context) +okhttp3.Route: java.net.Proxy proxy() +cyanogenmod.app.CustomTile$Builder +androidx.constraintlayout.widget.R$dimen: int compat_button_padding_vertical_material +okhttp3.internal.http.HttpMethod: boolean invalidatesCache(java.lang.String) +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf +okhttp3.internal.http1.Http1Codec$ChunkedSink: okhttp3.internal.http1.Http1Codec this$0 +androidx.constraintlayout.widget.R$color: int highlighted_text_material_light +androidx.constraintlayout.widget.R$id: int line3 +com.google.android.material.R$attr: int fastScrollEnabled +androidx.appcompat.R$layout: int abc_popup_menu_header_item_layout +android.didikee.donate.R$id: int right_icon +com.google.android.material.chip.Chip: void setChipIconTintResource(int) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStore,androidx.lifecycle.ViewModelProvider$Factory) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: int UnitType +com.bumptech.glide.R$dimen: int notification_action_text_size +cyanogenmod.app.PartnerInterface: int ZEN_MODE_OFF +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String img +androidx.appcompat.widget.ActivityChooserView$InnerLayout: ActivityChooserView$InnerLayout(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$attr: int thickness +io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean done +com.turingtechnologies.materialscrollbar.R$attr: int rippleColor +james.adaptiveicon.R$dimen: int abc_action_bar_default_padding_end_material +com.google.android.material.R$styleable: int ColorStateListItem_android_color +com.xw.repo.bubbleseekbar.R$layout: int notification_template_icon_group +com.google.android.material.circularreveal.CircularRevealRelativeLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView +androidx.fragment.app.FragmentManagerState +wangdaye.com.geometricweather.R$attr: int chipIcon +james.adaptiveicon.R$attr: int buttonBarNegativeButtonStyle +okio.Sink: void flush() +androidx.vectordrawable.R$id: int text +okhttp3.RealCall: okhttp3.Call clone() +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer) +androidx.hilt.lifecycle.R$id: int blocking +wangdaye.com.geometricweather.R$attr: int maxHeight +com.google.android.material.chip.Chip: void setChipIconVisible(boolean) +com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableItem +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean getForecastDaily() +com.google.android.material.R$attr: int collapsedTitleTextAppearance +wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.widget.AppCompatSpinner: void setPrompt(java.lang.CharSequence) +cyanogenmod.weather.WeatherInfo: double getWindSpeed() +com.turingtechnologies.materialscrollbar.R$attr: int tabMode +android.didikee.donate.R$id: int wrap_content +android.didikee.donate.R$attr: int actionModeShareDrawable +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setFillColor(int) +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_light +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_2 +com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_margin +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_normal +androidx.appcompat.R$styleable: int Toolbar_android_gravity +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onNext(java.lang.Object) +androidx.vectordrawable.animated.R$id: int tag_screen_reader_focusable +com.xw.repo.bubbleseekbar.R$attr: int srcCompat +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_font +android.didikee.donate.R$attr: int titleMarginEnd +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.R$id: int ALT +androidx.constraintlayout.widget.R$attr: int actionModeCloseButtonStyle +okhttp3.internal.ws.WebSocketWriter: void writePong(okio.ByteString) +androidx.viewpager2.R$styleable: int RecyclerView_android_descendantFocusability +androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_HOME_LONG_PRESS_ACTION_VALIDATOR +androidx.constraintlayout.widget.R$id: int listMode +wangdaye.com.geometricweather.R$drawable: int notification_bg +wangdaye.com.geometricweather.common.ui.widgets.TagView: int getUncheckedBackgroundColor() +com.google.android.material.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: int UnitType +androidx.legacy.coreutils.R$styleable: int GradientColor_android_startX +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_controlBackground +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorPrimaryDark +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusTopStart +androidx.preference.R$attr: int actionViewClass +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_right_mtrl_dark +androidx.hilt.lifecycle.R$color +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +retrofit2.ParameterHandler$Field: java.lang.String name +com.google.android.material.R$styleable: int[] BottomSheetBehavior_Layout +james.adaptiveicon.R$id: int split_action_bar +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setFillAlpha(float) +wangdaye.com.geometricweather.R$color: int abc_decor_view_status_guard +io.reactivex.internal.operators.observable.ObserverResourceWrapper +com.google.android.material.R$drawable: int abc_btn_check_material_anim +retrofit2.OkHttpCall: okhttp3.Call createRawCall() +androidx.constraintlayout.motion.widget.MotionLayout: void setTransition(androidx.constraintlayout.motion.widget.MotionScene$Transition) +wangdaye.com.geometricweather.R$id: int material_timepicker_ok_button +android.support.v4.app.RemoteActionCompatParcelizer: RemoteActionCompatParcelizer() +androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_EditText +androidx.appcompat.R$id: int tag_screen_reader_focusable +com.google.android.material.R$styleable: int Constraint_flow_wrapMode +androidx.coordinatorlayout.R$id: int accessibility_custom_action_11 +androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum() +cyanogenmod.app.Profile$ExpandedDesktopMode: Profile$ExpandedDesktopMode() +androidx.preference.Preference: void setOnPreferenceChangeListener(androidx.preference.Preference$OnPreferenceChangeListener) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void updateVisibility() +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentListStyle +com.xw.repo.bubbleseekbar.R$layout: int select_dialog_item_material +wangdaye.com.geometricweather.R$drawable: int ic_weather_alert +cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +androidx.viewpager.R$styleable: int FontFamilyFont_android_font +androidx.appcompat.widget.SwitchCompat: void setTrackTintMode(android.graphics.PorterDuff$Mode) +androidx.core.graphics.drawable.IconCompatParcelizer: androidx.core.graphics.drawable.IconCompat read(androidx.versionedparcelable.VersionedParcel) +android.didikee.donate.R$style: int Widget_AppCompat_DrawerArrowToggle +com.google.android.material.textfield.TextInputLayout: void setHintInternal(java.lang.CharSequence) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA +androidx.appcompat.R$styleable: int CompoundButton_android_button +androidx.constraintlayout.widget.R$styleable: int ActionBar_homeLayout +wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_scrollView +wangdaye.com.geometricweather.R$attr: int curveFit +cyanogenmod.hardware.ICMHardwareService: java.lang.String getSerialNumber() +wangdaye.com.geometricweather.R$attr: int snackbarButtonStyle +androidx.coordinatorlayout.R$id +androidx.activity.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$string: int abc_menu_enter_shortcut_label +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Type +james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableTop +com.turingtechnologies.materialscrollbar.R$dimen: int abc_list_item_padding_horizontal_material +wangdaye.com.geometricweather.R$drawable: int notif_temp_64 +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$attr: int autoCompleteTextViewStyle +androidx.recyclerview.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.recyclerview.R$id: int notification_background +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy NONE +io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.MaybeSource) +com.google.gson.stream.JsonReader: int pos +wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean isEntityUpdateable() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: CNWeatherResult$Realtime() +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setTitleText(java.lang.String) +wangdaye.com.geometricweather.R$attr: int altSrc +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode[] $VALUES +cyanogenmod.externalviews.KeyguardExternalView$4: void run() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setSunSetDate(java.util.Date) +androidx.constraintlayout.widget.R$styleable: int ActionBar_titleTextStyle +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.Map lefts +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_iconifiedByDefault +com.google.android.material.R$color: int material_timepicker_button_background +wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.LocationEntity) +com.google.android.material.R$attr: int itemShapeInsetBottom +wangdaye.com.geometricweather.R$layout: int dialog_weather_hourly +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: long serialVersionUID +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX info +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue getOrCreateQueue() wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetLeft -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRainPrecipitationProbability() -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: android.os.IBinder asBinder() -android.didikee.donate.R$dimen: int notification_big_circle_margin -cyanogenmod.app.suggest.ApplicationSuggestion$1 -com.google.android.material.R$attr: int motion_triggerOnCollision -com.xw.repo.bubbleseekbar.R$attr: int tickMarkTintMode -androidx.activity.R$layout: int notification_template_part_chronometer -okhttp3.internal.http.CallServerInterceptor$CountingSink: CallServerInterceptor$CountingSink(okio.Sink) -com.xw.repo.bubbleseekbar.R$color: int foreground_material_dark -retrofit2.RequestBuilder: okhttp3.MediaType contentType -androidx.appcompat.R$styleable: int Toolbar_titleMarginTop -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderAuthority -com.google.android.material.R$attr: int strokeColor -android.didikee.donate.R$color: int material_grey_800 -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_LIGHT -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_108 -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display1 -okhttp3.RealCall$AsyncCall -okhttp3.internal.ws.WebSocketWriter: okio.BufferedSink sink -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_TextView_SpinnerItem -com.xw.repo.bubbleseekbar.R$anim: R$anim() -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog -com.github.rahatarmanahmed.cpv.R$attr: int cpv_indeterminate -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Large -okhttp3.Request$Builder: okhttp3.RequestBody body -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_icon_padding -com.google.android.material.R$attr: int textAppearanceHeadline2 -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: java.util.concurrent.atomic.AtomicReference upstream -androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_layout -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String HOUR -androidx.drawerlayout.R$id: int actions -androidx.preference.R$styleable: int StateListDrawable_android_constantSize -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: java.lang.String pubTime -com.turingtechnologies.materialscrollbar.R$id: int edit_query -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: java.lang.String Unit -com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar_TextView -cyanogenmod.app.CustomTile$1: cyanogenmod.app.CustomTile createFromParcel(android.os.Parcel) -com.google.android.material.R$id: int default_activity_button -com.google.android.material.R$drawable: int mtrl_tabs_default_indicator -androidx.preference.R$style: int Base_V26_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorPrimary -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_NoActionBar -com.xw.repo.bubbleseekbar.R$attr: int tooltipFrameBackground -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver -androidx.appcompat.R$styleable: int[] PopupWindowBackgroundState -james.adaptiveicon.R$string: int abc_toolbar_collapse_description -com.xw.repo.bubbleseekbar.R$dimen: int compat_button_inset_vertical_material -okhttp3.internal.http1.Http1Codec$AbstractSource: boolean closed -android.didikee.donate.R$styleable: int AppCompatTextView_textLocale -androidx.viewpager.R$id: int line3 -android.didikee.donate.R$layout: int abc_alert_dialog_button_bar_material -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_type -androidx.swiperefreshlayout.R$id: int action_image -wangdaye.com.geometricweather.R$attr: int waveShape -james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.drawerlayout.R$id: int icon -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarStyle -com.turingtechnologies.materialscrollbar.R$id: int coordinator -androidx.appcompat.R$dimen: int abc_text_size_title_material -wangdaye.com.geometricweather.R$dimen: int material_clock_size -okhttp3.Route: java.net.InetSocketAddress inetSocketAddress -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -com.bumptech.glide.R$drawable: int notification_icon_background -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder username(java.lang.String) -io.reactivex.internal.subscriptions.SubscriptionHelper: void cancel() -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -cyanogenmod.providers.DataUsageContract: java.lang.String FAST_SAMPLES -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationX -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display2 -com.google.android.material.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String getUnit() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconTintMode -androidx.recyclerview.R$attr: int fontProviderAuthority -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SearchView_ActionBar -com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat -okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache$Editor currentEditor -androidx.vectordrawable.animated.R$dimen: R$dimen() -androidx.activity.R$dimen: int notification_action_text_size -androidx.activity.R$dimen: int notification_subtext_size -androidx.lifecycle.Transformations$1: Transformations$1(androidx.lifecycle.MediatorLiveData,androidx.arch.core.util.Function) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlNormal -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy APPEND -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_seekBarStyle -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.Integer cloudCover -com.google.android.material.navigation.NavigationView: android.view.MenuItem getCheckedItem() -androidx.appcompat.resources.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.R$id: int off -okhttp3.internal.http2.Http2Connection$2: int val$streamId -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderCancelButton -cyanogenmod.providers.CMSettings$System: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) -androidx.activity.R$id: int info -com.google.android.material.R$layout: int test_reflow_chipgroup -io.reactivex.internal.util.NotificationLite: boolean acceptFull(java.lang.Object,org.reactivestreams.Subscriber) -androidx.vectordrawable.animated.R$integer -okhttp3.OkHttpClient: java.util.List networkInterceptors() -cyanogenmod.externalviews.KeyguardExternalView$6: KeyguardExternalView$6(cyanogenmod.externalviews.KeyguardExternalView,boolean) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarPopupTheme -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_popupMenuStyle -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int requestFusion(int) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius -okhttp3.Request: java.lang.Object tag() -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addFormDataPart(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setUnit(java.lang.String) -androidx.appcompat.widget.AppCompatTextView: int[] getAutoSizeTextAvailableSizes() -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$attr: int actionMenuTextAppearance -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_material_dark -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorHeight -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitationDuration -cyanogenmod.app.ILiveLockScreenManager$Stub -james.adaptiveicon.R$styleable: int Toolbar_contentInsetEnd -cyanogenmod.themes.IThemeService -com.google.android.material.R$dimen: int mtrl_slider_thumb_elevation -androidx.transition.R$id: int transition_current_scene -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec RESTRICTED_TLS -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_end -wangdaye.com.geometricweather.R$layout: int notification_big -okhttp3.RequestBody$1 -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String ALARM_STATE -android.didikee.donate.R$attr: int listPreferredItemHeightLarge -wangdaye.com.geometricweather.R$string: int settings_notification_hide_icon_on -androidx.drawerlayout.R$color -com.google.android.material.R$drawable: int abc_list_pressed_holo_dark -okhttp3.internal.http1.Http1Codec: java.lang.String readHeaderLine() -androidx.appcompat.R$styleable: int AppCompatTheme_windowActionBar -androidx.preference.ListPreference -androidx.lifecycle.LifecycleOwner -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer moldIndex -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_submit -io.reactivex.Observable: java.lang.Iterable blockingIterable() -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedText(android.content.Context,float) -androidx.cardview.widget.CardView: float getCardElevation() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconTint -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -com.google.android.material.R$attr: int expandedHintEnabled -com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: MfForecastResult$DailyForecast$Humidity() -androidx.constraintlayout.widget.R$color: int bright_foreground_inverse_material_light -com.xw.repo.bubbleseekbar.R$attr: int contentInsetRight -wangdaye.com.geometricweather.R$id: int item_weather_icon_image -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_DarkActionBar -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: boolean isDisposed() -com.google.android.material.R$styleable: int ActionBar_contentInsetEnd -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onScreenTurnedOff() -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: org.reactivestreams.Subscriber downstream -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_MEDIUM_COLOR_VALIDATOR -cyanogenmod.app.ILiveLockScreenManager$Stub: ILiveLockScreenManager$Stub() -androidx.preference.R$anim: int abc_grow_fade_in_from_bottom -androidx.preference.R$drawable: int abc_text_select_handle_middle_mtrl_light -android.didikee.donate.R$style: int Widget_AppCompat_ListView_Menu -james.adaptiveicon.R$style: int Widget_AppCompat_TextView_SpinnerItem -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.work.impl.background.systemalarm.SystemAlarmService -com.jaredrummler.android.colorpicker.R$color: int accent_material_dark -androidx.constraintlayout.widget.R$attr: int actionModeShareDrawable -com.google.android.material.R$layout: int abc_alert_dialog_button_bar_material -com.turingtechnologies.materialscrollbar.R$attr: int actionModePasteDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: double Value -com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -androidx.hilt.work.R$id: int info -android.didikee.donate.R$anim: int abc_popup_enter -okio.SegmentedByteString: java.lang.String base64Url() -com.google.android.material.R$styleable: int TextInputLayout_endIconTintMode -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA -androidx.constraintlayout.widget.R$styleable: int Toolbar_logoDescription -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int DISMISSED_STATE -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String getValue() -androidx.preference.R$layout: int preference_widget_seekbar -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit[] values() -androidx.core.R$styleable: R$styleable() -com.turingtechnologies.materialscrollbar.R$attr: int coordinatorLayoutStyle -androidx.appcompat.widget.ActionMenuView: android.view.Menu getMenu() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitation -androidx.preference.R$layout: int preference_material -com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$drawable: int notif_temp_123 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_text_padding_left -wangdaye.com.geometricweather.R$dimen: int design_navigation_item_horizontal_padding -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature -com.google.android.material.R$styleable: int AppCompatTheme_actionDropDownStyle -androidx.recyclerview.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.R$attr: int actionModeWebSearchDrawable -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_stacked_tab_max_width -android.didikee.donate.R$color: int abc_background_cache_hint_selector_material_dark -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State getCurrentState() -androidx.core.R$styleable: int ColorStateListItem_android_color -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupMenu_Overflow -wangdaye.com.geometricweather.R$layout: int test_toolbar_elevation -android.didikee.donate.R$drawable: int abc_list_selector_disabled_holo_dark -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsModify(boolean) -com.google.android.material.circularreveal.CircularRevealLinearLayout: CircularRevealLinearLayout(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: java.util.List rainForecasts -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_5 -androidx.fragment.R$string: R$string() -androidx.recyclerview.R$dimen: int notification_small_icon_background_padding -com.google.android.material.slider.RangeSlider$RangeSliderState -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyleSmall -okio.SegmentPool: okio.Segment take() -com.google.android.material.R$styleable: int AppCompatTextView_android_textAppearance -androidx.hilt.work.R$anim: int fragment_open_enter -cyanogenmod.profiles.RingModeSettings: java.lang.String getValue() -wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_dark -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_top_padding -cyanogenmod.profiles.RingModeSettings: boolean mDirty -androidx.appcompat.R$id: int off -com.jaredrummler.android.colorpicker.R$attr: int customNavigationLayout -com.turingtechnologies.materialscrollbar.R$attr: int colorPrimaryDark -okhttp3.internal.connection.RouteSelector: okhttp3.internal.connection.RouteDatabase routeDatabase -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableEnd -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView_DropDown -io.reactivex.Observable: io.reactivex.Observable never() -com.xw.repo.bubbleseekbar.R$style: int Platform_V25_AppCompat_Light -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getDistanceText(android.content.Context,float) -wangdaye.com.geometricweather.R$string: int time -androidx.preference.R$attr: int dependency -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_type -com.google.android.material.R$attr: int percentX -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State ENQUEUED -androidx.legacy.coreutils.R$styleable -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayoutStates -androidx.constraintlayout.widget.R$color: int primary_dark_material_dark -androidx.preference.R$dimen: int abc_dialog_fixed_height_minor -com.turingtechnologies.materialscrollbar.R$attr: int drawerArrowStyle -androidx.preference.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -androidx.vectordrawable.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_padding -androidx.constraintlayout.widget.R$id: int parentRelative -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void drain() -androidx.appcompat.R$dimen: int abc_disabled_alpha_material_light -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog -wangdaye.com.geometricweather.R$styleable: int[] KeyFrame -wangdaye.com.geometricweather.R$drawable: int ic_wind -wangdaye.com.geometricweather.R$id: int notification_big_week_1 -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_Layout_layout_scrollFlags -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_1 +retrofit2.ParameterHandler$RelativeUrl +okio.InflaterSource: InflaterSource(okio.Source,java.util.zip.Inflater) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCopyDrawable +james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyleSmall +androidx.hilt.work.R$id: int accessibility_custom_action_7 +com.jaredrummler.android.colorpicker.R$attr: int checkedTextViewStyle +androidx.constraintlayout.widget.R$dimen: int abc_switch_padding +io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Void call() +cyanogenmod.app.ProfileGroup: void validateOverrideUris(android.content.Context) +cyanogenmod.app.ILiveLockScreenManager$Stub: cyanogenmod.app.ILiveLockScreenManager asInterface(android.os.IBinder) +androidx.activity.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context) +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void subscribe(io.reactivex.ObservableSource[]) +cyanogenmod.weatherservice.ServiceRequest$Status +com.turingtechnologies.materialscrollbar.R$id: int transition_layout_save +androidx.hilt.work.R$style +androidx.core.widget.NestedScrollView$SavedState +com.google.android.material.R$attr: int waveOffset +cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.os.Bundle getOptions() +com.jaredrummler.android.colorpicker.R$id: int transparency_title +wangdaye.com.geometricweather.R$styleable: int[] MaterialCheckBox +cyanogenmod.app.Profile$TriggerState: int ON_A2DP_DISCONNECT +wangdaye.com.geometricweather.R$drawable: int notif_temp_88 +okhttp3.Handshake: java.util.List localCertificates +androidx.preference.R$styleable: int MenuItem_android_orderInCategory +com.google.android.material.R$attr: int fastScrollHorizontalThumbDrawable +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: ObservableCache$CacheDisposable(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableCache) +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: boolean isDisposed() +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource) +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: long serialVersionUID +okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.internal.cache.CacheStrategy getCandidate() +wangdaye.com.geometricweather.R$id: int listMode +okhttp3.internal.http1.Http1Codec$ChunkedSink: okio.ForwardingTimeout timeout +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: long id +okhttp3.Response: okhttp3.ResponseBody peekBody(long) +io.reactivex.internal.observers.DeferredScalarDisposable: long serialVersionUID +cyanogenmod.power.IPerformanceManager$Stub: java.lang.String DESCRIPTOR +androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedHeightMinor +cyanogenmod.os.Build$CM_VERSION +androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_THEMES +com.google.android.material.R$style: int Base_V23_Theme_AppCompat_Light +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: int index +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedFragment(java.lang.String) +james.adaptiveicon.R$id: int select_dialog_listview +androidx.viewpager.R$styleable: int ColorStateListItem_android_color +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalGap +com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_light +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Small_Inverse +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) +retrofit2.ParameterHandler$2: void apply(retrofit2.RequestBuilder,java.lang.Object) +james.adaptiveicon.R$drawable: int abc_switch_track_mtrl_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric Metric +cyanogenmod.externalviews.KeyguardExternalView: android.content.Context mContext +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context,android.util.AttributeSet,int) +android.didikee.donate.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +com.google.android.material.R$styleable: int TextInputLayout_errorIconTint +androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_small_material +james.adaptiveicon.R$attr: int colorSwitchThumbNormal +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setCityId(java.lang.String) +com.google.android.material.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +wangdaye.com.geometricweather.R$id: int material_clock_display +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginLeft +james.adaptiveicon.R$id: int listMode +okhttp3.internal.http.HttpDate: java.text.DateFormat[] BROWSER_COMPATIBLE_DATE_FORMATS +okhttp3.Cache$2: java.lang.String nextUrl +com.google.android.material.R$style: int Theme_AppCompat_CompactMenu +cyanogenmod.hardware.CMHardwareManager: int FEATURE_UNIQUE_DEVICE_ID +com.google.android.material.R$styleable: int[] ConstraintLayout_Layout +androidx.preference.R$attr: int spinBars +okhttp3.internal.ws.WebSocketWriter$FrameSink: WebSocketWriter$FrameSink(okhttp3.internal.ws.WebSocketWriter) +androidx.appcompat.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd +com.google.android.material.R$styleable: int Transform_android_translationZ +androidx.lifecycle.extensions.R$styleable: int[] FragmentContainerView +com.google.android.material.R$animator: int mtrl_extended_fab_show_motion_spec +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: MfHistoryResult$History$Weather() +com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_track_material +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabView +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_variablePadding +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.R$styleable: int ClockHandView_selectorSize +androidx.appcompat.widget.SwitchCompat: boolean getShowText() +androidx.constraintlayout.widget.R$id: int end +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour WRAP_CONTENT +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Snackbar_Message +android.didikee.donate.R$style: int Widget_AppCompat_Button +com.jaredrummler.android.colorpicker.R$id: int src_over +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setCountry(java.lang.String) +androidx.appcompat.R$id: int title +okhttp3.Request$Builder: Request$Builder(okhttp3.Request) +androidx.appcompat.R$styleable: int ColorStateListItem_android_color +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +james.adaptiveicon.R$attr: int paddingStart +androidx.appcompat.R$id: int buttonPanel +wangdaye.com.geometricweather.R$dimen: int design_snackbar_extra_spacing_horizontal +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.R$attr: int actionModeFindDrawable +com.google.android.material.R$color: int abc_background_cache_hint_selector_material_dark +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorError +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: long serialVersionUID +retrofit2.RequestBuilder: java.lang.String PATH_SEGMENT_ALWAYS_ENCODE_SET +com.xw.repo.bubbleseekbar.R$dimen: int abc_seekbar_track_progress_height_material +androidx.viewpager2.R$id: int accessibility_custom_action_25 +com.google.gson.LongSerializationPolicy +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalStyle +retrofit2.http.Part: java.lang.String encoding() +cyanogenmod.weather.RequestInfo$1: cyanogenmod.weather.RequestInfo[] newArray(int) +cyanogenmod.app.Profile$ProfileTrigger: int mState +androidx.coordinatorlayout.R$attr: int layout_insetEdge +wangdaye.com.geometricweather.R$string: int content_desc_weather_alert_button +androidx.vectordrawable.R$attr: int ttcIndex +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder maxStale(int,java.util.concurrent.TimeUnit) +androidx.preference.R$color: int primary_dark_material_light +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: java.lang.Integer poll() +com.google.android.material.R$id: int accessibility_custom_action_12 +okhttp3.RealCall: okhttp3.RealCall clone() +james.adaptiveicon.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.R$string: int key_week_icon_mode +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property No2 +com.google.android.material.R$styleable: int TextInputLayout_suffixText +wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.chip.Chip: void setIconEndPaddingResource(int) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitation() +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getRagweedLevel() +wangdaye.com.geometricweather.R$color: int secondary_text_disabled_material_dark +androidx.constraintlayout.widget.R$attr: int logo +wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context) +androidx.appcompat.R$styleable: int MenuItem_actionViewClass +com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_entries +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitation +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.R$id: int item_weather_daily_title_title +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRealFeelShaderTemperature(java.lang.Integer) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1 +wangdaye.com.geometricweather.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getHourlyForecast() +io.reactivex.internal.observers.DeferredScalarDisposable: int TERMINATED +com.turingtechnologies.materialscrollbar.R$styleable: int[] NavigationView +cyanogenmod.app.Profile: int describeContents() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial Imperial +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_processWeatherUpdateRequest_0 +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_large_material +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean requestDismiss() +com.xw.repo.bubbleseekbar.R$string: int abc_menu_sym_shortcut_label +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.AlertEntity) +com.google.android.material.R$styleable: int KeyTimeCycle_wavePeriod +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabTextStyle +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColorLink +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_39 +androidx.appcompat.R$color: int abc_color_highlight_material +androidx.appcompat.R$styleable: int AppCompatTheme_tooltipFrameBackground +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Small +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_SUNRISE_SUNSET +android.didikee.donate.R$style: int Base_Theme_AppCompat +androidx.appcompat.view.menu.ActionMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() +wangdaye.com.geometricweather.R$attr: int placeholderText +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Subtitle2 +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +com.google.android.material.R$attr: int spanCount +com.jaredrummler.android.colorpicker.R$attr: int thumbTint +androidx.appcompat.R$color: int material_blue_grey_950 +retrofit2.Callback: void onResponse(retrofit2.Call,retrofit2.Response) +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: boolean isValid() +cyanogenmod.app.IPartnerInterface$Stub$Proxy: android.os.IBinder asBinder() +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents +james.adaptiveicon.R$id: int icon_group +com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_Dialog +com.jaredrummler.android.colorpicker.R$color: int ripple_material_dark +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +james.adaptiveicon.R$styleable: int Toolbar_contentInsetStart +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_CompactMenu +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Light +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function) +com.google.android.material.R$styleable: int KeyAttribute_android_alpha +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline2 +cyanogenmod.app.PartnerInterface: java.lang.String getCurrentHotwordPackageName() +cyanogenmod.weatherservice.WeatherProviderService: WeatherProviderService() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: void setTo(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_transformPivotX +com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingTop +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: long dt +com.turingtechnologies.materialscrollbar.R$attr: int goIcon +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver parent +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: boolean isDisposed() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String grassDescription +androidx.cardview.widget.CardView: boolean getPreventCornerOverlap() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +androidx.transition.R$id: int info +androidx.vectordrawable.animated.R$attr: int fontVariationSettings +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onComplete() +com.turingtechnologies.materialscrollbar.R$attr: int layout_scrollFlags +cyanogenmod.themes.ThemeManager$ThemeChangeListener: void onFinish(boolean) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_default +cyanogenmod.app.CMContextConstants$Features +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_icon +androidx.constraintlayout.widget.R$attr: int triggerSlack +okhttp3.internal.http.HttpHeaders: void parseChallengeHeader(java.util.List,okio.Buffer) +androidx.appcompat.R$styleable: int[] ActionMenuView +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_visible +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float thunderstormPrecipitationProbability +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +com.google.android.material.R$attr: int minHideDelay +cyanogenmod.providers.CMSettings: CMSettings() +wangdaye.com.geometricweather.R$styleable: int[] AlertDialog +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_1 +com.turingtechnologies.materialscrollbar.R$id: int left +cyanogenmod.app.LiveLockScreenInfo: int priority +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_NoActionBar +james.adaptiveicon.R$attr: int windowFixedHeightMajor +androidx.preference.R$styleable: int AppCompatTheme_dialogPreferredPadding +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_maxHeight +androidx.swiperefreshlayout.R$color: int notification_action_color_filter +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent LOCKSCREEN +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability +okhttp3.Request$Builder: okhttp3.Request$Builder url(java.lang.String) +james.adaptiveicon.R$styleable: int AlertDialog_singleChoiceItemLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: void setTo(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int[] LinearLayoutCompat +android.didikee.donate.R$color: int background_floating_material_light +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: java.lang.String type +james.adaptiveicon.R$styleable: int TextAppearance_android_fontFamily +androidx.constraintlayout.widget.R$attr: int isLightTheme +com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat_Dark +androidx.appcompat.R$attr: int actionModePopupWindowStyle +com.google.android.material.R$color: int material_grey_800 +cyanogenmod.app.LiveLockScreenInfo: java.lang.String toString() +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_visible +androidx.appcompat.R$id +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$string: int content_des_moonrise +androidx.hilt.work.R$styleable: int GradientColorItem_android_offset +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer +androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_Toolbar +androidx.appcompat.R$styleable: int MenuItem_numericModifiers +wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_item +androidx.loader.R$id: int action_container +com.google.android.material.slider.RangeSlider: int getTrackSidePadding() +androidx.core.R$style: int TextAppearance_Compat_Notification_Line2 +james.adaptiveicon.R$dimen: R$dimen() +wangdaye.com.geometricweather.common.basic.models.weather.Wind: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getDegree() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_3DES_EDE_CBC_SHA +com.xw.repo.bubbleseekbar.R$styleable: int ActionBarLayout_android_layout_gravity +cyanogenmod.weather.WeatherInfo$1 +okhttp3.internal.http2.Http2Connection$4: java.util.List val$requestHeaders +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getHourlyForecast() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun +com.google.android.material.R$drawable: int mtrl_popupmenu_background_dark +androidx.recyclerview.widget.LinearLayoutManager$SavedState: android.os.Parcelable$Creator CREATOR +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: long unique +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry: MfEphemerisResult$Geometry() +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: android.net.Uri CONTENT_URI +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierDirection +wangdaye.com.geometricweather.R$attr: int mock_showDiagonals +com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchPreferenceCompat +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Medium +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric() +androidx.hilt.lifecycle.R$id: int tag_screen_reader_focusable +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.functions.Function keySelector +com.xw.repo.bubbleseekbar.R$color: int background_material_light +androidx.viewpager.R$attr: int fontWeight +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Caption +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_direction +okhttp3.Request: java.lang.Object tag(java.lang.Class) +androidx.preference.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +androidx.preference.R$styleable: int MenuItem_android_icon +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft +androidx.viewpager.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotationX +androidx.preference.R$drawable: int abc_spinner_textfield_background_material +androidx.constraintlayout.helper.widget.Flow: void setVerticalAlign(int) +androidx.preference.R$dimen: int hint_pressed_alpha_material_dark +androidx.fragment.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop +androidx.appcompat.R$styleable: int MenuView_android_itemIconDisabledAlpha +androidx.constraintlayout.widget.R$styleable: int[] KeyAttribute +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_trackTintMode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setWeather(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: java.lang.Integer min +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_menu_layout +com.jaredrummler.android.colorpicker.R$id: R$id() +androidx.coordinatorlayout.R$attr: int fontProviderCerts +androidx.appcompat.R$attr: int maxButtonHeight +wangdaye.com.geometricweather.R$color: int material_grey_50 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String zh_TW +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTx() +androidx.appcompat.widget.ButtonBarLayout: void setStacked(boolean) +androidx.customview.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean direction +okio.Buffer: int write(java.nio.ByteBuffer) +androidx.lifecycle.SavedStateHandle: androidx.savedstate.SavedStateRegistry$SavedStateProvider mSavedStateProvider +androidx.customview.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstHorizontalBias +androidx.activity.R$styleable: int GradientColor_android_centerX +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_min +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light +com.xw.repo.bubbleseekbar.R$attr: int tooltipForegroundColor +io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.CompletableObserver) +com.google.gson.JsonIOException: long serialVersionUID +okhttp3.internal.tls.BasicCertificateChainCleaner +androidx.appcompat.R$drawable: int abc_ic_menu_share_mtrl_alpha +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cpb +cyanogenmod.app.Profile: void setProfileType(int) +com.jaredrummler.android.colorpicker.R$dimen: int abc_floating_window_z +android.didikee.donate.R$attr: int isLightTheme +androidx.constraintlayout.widget.R$style: int Platform_AppCompat +okio.RealBufferedSink: void flush() +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +com.google.android.material.R$anim: R$anim() +okhttp3.internal.http2.Settings: int size() +com.google.android.material.R$styleable: int MenuItem_android_alphabeticShortcut +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_18 +com.google.android.material.R$styleable: int TextAppearance_android_textSize +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: void completion() +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_text_input_padding_top +io.reactivex.internal.observers.BlockingObserver: long serialVersionUID +wangdaye.com.geometricweather.R$id: int shortcut +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listMenuViewStyle +wangdaye.com.geometricweather.R$layout: int cpv_preference_circle +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter close(int,int,java.lang.String) +wangdaye.com.geometricweather.R$attr: int itemBackground +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver +androidx.vectordrawable.R$id: int accessibility_custom_action_4 +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderCerts +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ProgressBar +okhttp3.FormBody +androidx.appcompat.R$color: int highlighted_text_material_light +com.google.android.material.R$attr: int boxCornerRadiusBottomEnd +okhttp3.Interceptor$Chain: int readTimeoutMillis() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: java.lang.String English +androidx.preference.R$attr: int titleMargins +io.reactivex.Observable: io.reactivex.Observable onErrorReturnItem(java.lang.Object) +androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy KEEP +wangdaye.com.geometricweather.R$id: int item_weather_daily_air_content +com.google.android.material.R$layout: int material_clock_period_toggle +androidx.lifecycle.LifecycleRegistryOwner +wangdaye.com.geometricweather.R$styleable: int RoundCornerTransition_radius_to +androidx.preference.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlActivated +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTint +james.adaptiveicon.R$color: int primary_text_disabled_material_light +androidx.viewpager2.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_subtitle +okhttp3.internal.http2.Http2Writer: int maxFrameSize +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperText +cyanogenmod.hardware.ICMHardwareService: int getThermalState() +androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_Switch +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColorSchemeColor(int) +androidx.hilt.work.R$dimen: int notification_action_icon_size +james.adaptiveicon.R$color: int abc_btn_colored_text_material +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String AUTHOR +io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable valueOf(java.lang.String) +com.xw.repo.bubbleseekbar.R$id: int action_divider +androidx.preference.R$dimen: int abc_text_size_title_material +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_title_material_toolbar +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display1 +androidx.preference.R$style: int Platform_V25_AppCompat_Light +wangdaye.com.geometricweather.R$attr: int dialogPreferredPadding +wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendDailyProvider: WidgetTrendDailyProvider() +androidx.preference.R$id: int accessibility_custom_action_14 +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconContentDescription +androidx.appcompat.resources.R$layout +wangdaye.com.geometricweather.R$layout: int item_weather_icon_title +com.google.android.material.R$attr: int windowActionBarOverlay +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_elevation +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getCurrentDrawable() +retrofit2.adapter.rxjava2.package-info +wangdaye.com.geometricweather.R$attr: int textAppearanceListItemSmall +cyanogenmod.themes.ThemeManager$2$1: void run() +wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextTitle +androidx.preference.PreferenceDialogFragmentCompat +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_34 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyle +wangdaye.com.geometricweather.R$attr: int number +com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimVisibleHeightTrigger(int) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_radius +com.jaredrummler.android.colorpicker.R$attr: int editTextColor +com.google.android.material.R$drawable: int abc_textfield_activated_mtrl_alpha +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String toValue(java.util.List) +androidx.coordinatorlayout.R$dimen +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarStyle +cyanogenmod.weather.CMWeatherManager$2$1: CMWeatherManager$2$1(cyanogenmod.weather.CMWeatherManager$2,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener,int,cyanogenmod.weather.WeatherInfo) +com.jaredrummler.android.colorpicker.R$dimen: int abc_seekbar_track_progress_height_material +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: java.lang.String textAdvice +com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar_Colored +wangdaye.com.geometricweather.R$dimen: int design_snackbar_action_text_color_alpha +okhttp3.HttpUrl: java.lang.String encodedUsername() +wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_medium_component +com.google.android.material.slider.RangeSlider: void setThumbRadius(int) +android.didikee.donate.R$styleable: int AppCompatTheme_actionMenuTextAppearance +com.google.android.material.R$dimen: int mtrl_card_corner_radius +com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_Dialog +androidx.appcompat.R$color: int abc_tint_spinner +androidx.hilt.work.R$id: int tag_accessibility_heading +cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.CMTelephonyManager getInstance(android.content.Context) +cyanogenmod.app.CustomTile: int icon +androidx.appcompat.R$style: int TextAppearance_AppCompat_Medium +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dark +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_NavigationView +wangdaye.com.geometricweather.db.entities.AlertEntity: void setPriority(int) +wangdaye.com.geometricweather.R$drawable: int abc_btn_default_mtrl_shape +retrofit2.SkipCallbackExecutorImpl: java.lang.Class annotationType() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_selectableItemBackground +com.google.android.material.R$styleable: int ForegroundLinearLayout_android_foreground +wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment: ServiceProviderSettingsFragment() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial Imperial +okio.SegmentedByteString: byte getByte(int) +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String BOOT_ANIM_URI +io.reactivex.Observable: io.reactivex.Observable doOnSubscribe(io.reactivex.functions.Consumer) +com.xw.repo.BubbleSeekBar: void setCustomSectionTextArray(com.xw.repo.BubbleSeekBar$CustomSectionTextArray) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_subtitle_material_toolbar +androidx.work.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPublishTime(long) +android.didikee.donate.R$id: int notification_background +cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING_START_VOLUME +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property District +com.google.android.material.R$id: int outgoing +androidx.lifecycle.ClassesInfoCache$CallbackInfo: java.util.Map mEventToHandlers +com.xw.repo.bubbleseekbar.R$anim: int abc_slide_in_top +androidx.appcompat.R$styleable: int[] ViewBackgroundHelper +io.reactivex.Observable: io.reactivex.Observable onErrorResumeNext(io.reactivex.ObservableSource) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.Observer downstream +android.didikee.donate.R$styleable: int Toolbar_contentInsetEndWithActions +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedDescription +wangdaye.com.geometricweather.R$id: int weather_icon +retrofit2.ParameterHandler$Query: void apply(retrofit2.RequestBuilder,java.lang.Object) +androidx.preference.R$styleable: int[] SwitchPreference +androidx.legacy.coreutils.R$styleable: int[] GradientColorItem +androidx.legacy.coreutils.R$drawable: int notification_bg_normal +android.didikee.donate.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +androidx.fragment.R$styleable: int FontFamilyFont_ttcIndex +androidx.viewpager.R$color: int notification_icon_bg_color +androidx.preference.R$id: int topPanel +android.didikee.donate.R$attr: int buttonPanelSideLayout +androidx.preference.R$attr: int orderingFromXml +wangdaye.com.geometricweather.R$attr: int mock_labelBackgroundColor +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherText(java.lang.String) +wangdaye.com.geometricweather.R$color: int mtrl_textinput_filled_box_default_background_color +com.google.android.material.R$id: int transition_transform +androidx.appcompat.R$attr: int titleMarginStart +androidx.appcompat.R$layout: int notification_template_custom_big +com.google.android.material.floatingactionbutton.FloatingActionButton: void setScaleY(float) +com.google.android.material.R$attr: int borderWidth +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: long serialVersionUID +androidx.appcompat.R$attr: int defaultQueryHint +wangdaye.com.geometricweather.R$layout: int container_main_first_card_header +com.jaredrummler.android.colorpicker.R$color: int abc_tint_btn_checkable +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_ENABLED_VALIDATOR +com.google.android.material.datepicker.MaterialDatePicker: MaterialDatePicker() +io.reactivex.internal.subscriptions.BasicQueueSubscription: void request(long) +android.didikee.donate.R$attr: int dividerPadding +android.didikee.donate.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +androidx.appcompat.resources.R$attr: int fontProviderPackage +androidx.drawerlayout.R$style: R$style() +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DialogWhenLarge +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontStyle +com.turingtechnologies.materialscrollbar.R$id: int chronometer +androidx.viewpager2.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: int UnitType +androidx.preference.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +wangdaye.com.geometricweather.R$attr: int colorOnError +androidx.appcompat.widget.SearchView: void setOnCloseListener(androidx.appcompat.widget.SearchView$OnCloseListener) +io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int) +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: io.reactivex.internal.disposables.DisposableContainer tasks +james.adaptiveicon.R$styleable: int Toolbar_subtitleTextColor +androidx.constraintlayout.widget.R$drawable: int btn_radio_off_mtrl +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +com.github.rahatarmanahmed.cpv.CircularProgressView: float getMaxProgress() +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_rtl +androidx.constraintlayout.widget.R$styleable: int ActionMode_titleTextStyle +androidx.constraintlayout.widget.R$drawable: int abc_textfield_activated_mtrl_alpha +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +okhttp3.internal.http2.Hpack: int PREFIX_6_BITS +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastVerticalStyle +okhttp3.CacheControl$Builder: okhttp3.CacheControl build() +cyanogenmod.weather.ICMWeatherManager$Stub: ICMWeatherManager$Stub() +androidx.preference.R$drawable: int notification_bg_low_normal +androidx.constraintlayout.widget.R$color: int tooltip_background_dark +james.adaptiveicon.R$style: int Widget_AppCompat_ActionMode +android.didikee.donate.R$dimen: int abc_action_bar_content_inset_with_nav +androidx.constraintlayout.widget.R$attr: int contentInsetEnd +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCityId +androidx.viewpager2.widget.ViewPager2: void setOrientation(int) +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontWeight +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean tryOnError(java.lang.Throwable) +wangdaye.com.geometricweather.R$xml: int widget_day_week +androidx.legacy.coreutils.R$integer +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$dimen: int design_bottom_navigation_item_max_width +com.turingtechnologies.materialscrollbar.R$attr: int textAppearancePopupMenuHeader +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_disabled_material_dark +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void run() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton +okio.Okio$2 +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderAuthority +androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.FragmentActivity,androidx.lifecycle.ViewModelProvider$Factory) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Error +wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_title +androidx.recyclerview.R$id: int accessibility_custom_action_11 +james.adaptiveicon.R$style: int Base_Widget_AppCompat_SearchView +james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlNormal +com.turingtechnologies.materialscrollbar.MaterialScrollBar +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabBar +com.github.rahatarmanahmed.cpv.R$attr: R$attr() +wangdaye.com.geometricweather.R$anim: int abc_slide_out_bottom +androidx.hilt.work.R$attr: int fontProviderCerts +androidx.coordinatorlayout.R$string: R$string() +okhttp3.HttpUrl$Builder: java.lang.String encodedPassword +cyanogenmod.hardware.CMHardwareManager: byte[] readPersistentBytes(java.lang.String) +androidx.appcompat.R$attr: int buttonGravity +androidx.loader.R$id: R$id() +androidx.appcompat.view.menu.ActionMenuItemView: void setItemInvoker(androidx.appcompat.view.menu.MenuBuilder$ItemInvoker) +androidx.appcompat.R$styleable: int SwitchCompat_switchTextAppearance +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +wangdaye.com.geometricweather.background.polling.basic.Hilt_AwakeForegroundUpdateService: Hilt_AwakeForegroundUpdateService() +okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part createFormData(java.lang.String,java.lang.String,okhttp3.RequestBody) +androidx.loader.R$styleable: int FontFamilyFont_android_fontStyle +com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_disabled_material_light +com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonCompat +androidx.appcompat.R$styleable: int[] ActionBar +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getHideMotionSpec() +okhttp3.Cookie +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void dispose() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTintMode +cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileManager sProfileManagerInstance +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_75 +okhttp3.internal.NamedRunnable: NamedRunnable(java.lang.String,java.lang.Object[]) +androidx.constraintlayout.widget.R$attr: int onShow +androidx.lifecycle.SavedStateHandle: androidx.lifecycle.SavedStateHandle createHandle(android.os.Bundle,android.os.Bundle) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: int getStatus() +androidx.coordinatorlayout.widget.CoordinatorLayout: int getSuggestedMinimumHeight() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getBrandId() +com.jaredrummler.android.colorpicker.R$style: int Platform_V25_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$attr: int chipStyle +wangdaye.com.geometricweather.R$attr: int errorTextAppearance +okhttp3.internal.cache.DiskLruCache$Editor: void abortUnlessCommitted() +android.didikee.donate.R$styleable: int[] MenuItem +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level[] $VALUES +androidx.constraintlayout.widget.R$color: int abc_secondary_text_material_dark +okhttp3.internal.cache.DiskLruCache$1: okhttp3.internal.cache.DiskLruCache this$0 +androidx.appcompat.R$attr: int numericModifiers +com.google.android.material.R$styleable: int[] Insets +com.google.android.material.tabs.TabItem: TabItem(android.content.Context) +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties: MfEphemerisResult$Properties() +androidx.appcompat.widget.LinearLayoutCompat: float getWeightSum() +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_ScrimInsetsFrameLayout +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Headline +com.google.android.material.slider.BaseSlider: void setValuesInternal(java.util.ArrayList) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setNumberString(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int btn_radio_on_mtrl +androidx.viewpager2.R$drawable: int notification_icon_background +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type TOP +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +wangdaye.com.geometricweather.R$style: int ThemeOverlayColorAccentRed +wangdaye.com.geometricweather.db.entities.ChineseCityEntity +wangdaye.com.geometricweather.R$styleable: int[] TouchScrollBar +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_chainUseRtl +retrofit2.Utils: java.lang.reflect.Type getParameterLowerBound(int,java.lang.reflect.ParameterizedType) +androidx.transition.R$layout: int notification_template_icon_group +com.xw.repo.bubbleseekbar.R$attr: int icon +wangdaye.com.geometricweather.R$drawable: int widget_day_week +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setNavBar(java.lang.String) +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_icon_null_animation +androidx.viewpager2.R$attr +androidx.preference.R$color: int tooltip_background_dark +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconTintMode +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Light +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_3 +wangdaye.com.geometricweather.R$id: int activity_alert_toolbar +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +com.turingtechnologies.materialscrollbar.R$attr: int homeLayout +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +io.reactivex.Observable: io.reactivex.Observable materialize() +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_elevation +okhttp3.Request$Builder: okhttp3.Request$Builder headers(okhttp3.Headers) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onComplete() +cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri FORECAST_WEATHER_URI +wangdaye.com.geometricweather.R$attr: int expandedTitleMarginBottom +com.google.android.material.appbar.CollapsingToolbarLayout +wangdaye.com.geometricweather.R$bool: int workmanager_test_configuration +androidx.coordinatorlayout.R$id: int notification_main_column_container +androidx.hilt.R$string +androidx.swiperefreshlayout.R$id: int blocking +wangdaye.com.geometricweather.R$drawable: int notif_temp_115 +com.xw.repo.bubbleseekbar.R$styleable: int ButtonBarLayout_allowStacking +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +com.github.rahatarmanahmed.cpv.CircularProgressView: void updatePaint() +androidx.preference.R$styleable: int AppCompatTheme_colorControlHighlight +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_max +com.xw.repo.bubbleseekbar.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$string: int key_widget_clock_day_details +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeMinTextSize +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveDecay +cyanogenmod.weather.WeatherInfo: long mTimestamp +cyanogenmod.os.Concierge$ParcelInfo: int getParcelVersion() +cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: int KPH +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_3_00 +androidx.appcompat.R$styleable: int ActivityChooserView_initialActivityCount +androidx.appcompat.widget.AppCompatImageView: void setImageDrawable(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: long serialVersionUID +okhttp3.internal.cache.DiskLruCache$Entry: DiskLruCache$Entry(okhttp3.internal.cache.DiskLruCache,java.lang.String) +com.google.android.material.R$styleable: int PropertySet_layout_constraintTag +com.turingtechnologies.materialscrollbar.R$id: int textinput_helper_text +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getReadableDb() +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Load +androidx.transition.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Display +james.adaptiveicon.R$layout: int select_dialog_singlechoice_material +okhttp3.HttpUrl$Builder: java.util.List encodedPathSegments +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Button +com.jaredrummler.android.colorpicker.R$attr: int preserveIconSpacing +com.google.android.material.chip.Chip: com.google.android.material.animation.MotionSpec getShowMotionSpec() +james.adaptiveicon.R$style: int Theme_AppCompat_Light_DarkActionBar +androidx.constraintlayout.widget.R$styleable: int MenuItem_showAsAction +wangdaye.com.geometricweather.R$attr: int itemShapeInsetBottom +androidx.appcompat.R$id: int action_mode_bar +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedWidthMajor() +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Light +com.google.android.material.chip.ChipGroup: void setDividerDrawableVertical(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$styleable: int MaterialButton_strokeWidth +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemFillColor +com.jaredrummler.android.colorpicker.R$color: int abc_secondary_text_material_dark +androidx.constraintlayout.widget.R$styleable: int Layout_barrierDirection +cyanogenmod.app.BaseLiveLockManagerService$1: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_48dp +wangdaye.com.geometricweather.R$id: int fixed +cyanogenmod.app.IPartnerInterface$Stub$Proxy: void reboot() +androidx.hilt.lifecycle.R$styleable: int[] FragmentContainerView +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_collapseContentDescription +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_71 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_PrimarySurface +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String BriefPhrase +okhttp3.internal.ws.WebSocketReader: byte[] maskKey +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_normal_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction +com.google.android.material.textfield.TextInputLayout: android.graphics.Typeface getTypeface() +com.google.android.material.R$color: int accent_material_light +androidx.recyclerview.R$styleable: int GradientColorItem_android_color +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean isDisposed() +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogCenterButtons +androidx.transition.R$id: int icon_group +retrofit2.http.Path: java.lang.String value() +androidx.constraintlayout.widget.R$style: int Base_V28_Theme_AppCompat_Light +androidx.preference.R$attr: int toolbarNavigationButtonStyle +io.reactivex.internal.observers.BlockingObserver: java.util.Queue queue +com.google.android.material.R$styleable: int[] StateSet +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextColor +androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +androidx.constraintlayout.widget.R$attr: int layout_constraintTag +androidx.lifecycle.extensions.R$anim +androidx.core.R$id: int action_divider +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleTintMode +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: java.lang.String textCount +androidx.constraintlayout.widget.R$styleable: int Constraint_android_maxHeight +androidx.appcompat.R$id: int src_over +androidx.loader.R$styleable: int GradientColor_android_endX +androidx.viewpager2.R$id: int tag_accessibility_pane_title +okhttp3.internal.cache.CacheInterceptor$1: long read(okio.Buffer,long) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String frenchDepartment +okhttp3.RealCall$AsyncCall: okhttp3.RealCall get() +wangdaye.com.geometricweather.R$string: int tree +com.google.android.material.R$integer: int abc_config_activityShortDur +wangdaye.com.geometricweather.R$attr: int viewInflaterClass +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit +retrofit2.ParameterHandler$Part: int p +androidx.core.R$style: int TextAppearance_Compat_Notification_Info +okhttp3.OkHttpClient: int pingIntervalMillis() +androidx.viewpager.widget.ViewPager$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$layout: int widget_day_nano +okhttp3.internal.cache2.FileOperator +androidx.appcompat.widget.LinearLayoutCompat: void setMeasureWithLargestChildEnabled(boolean) +com.google.android.material.R$dimen: int material_cursor_width +okhttp3.Cookie: java.lang.String value +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean) +androidx.activity.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$drawable: int ic_clock_black_24dp +com.google.android.material.slider.BaseSlider: void setTrackActiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: java.lang.String WeatherCode +org.greenrobot.greendao.AbstractDaoSession: java.util.List queryRaw(java.lang.Class,java.lang.String,java.lang.String[]) +com.google.android.material.R$attr: int colorPrimaryDark +wangdaye.com.geometricweather.R$string: int rain +com.jaredrummler.android.colorpicker.R$attr: int editTextPreferenceStyle +cyanogenmod.providers.DataUsageContract: java.lang.String BYTES +androidx.viewpager.R$styleable: int GradientColor_android_centerY +com.google.android.material.datepicker.Month +android.didikee.donate.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status WAITING_FOR_SIZE +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: int requestFusion(int) +cyanogenmod.weather.WeatherLocation: java.lang.String access$702(cyanogenmod.weather.WeatherLocation,java.lang.String) +com.google.android.material.R$string: int abc_searchview_description_search +okhttp3.internal.cache2.Relay$RelaySource +wangdaye.com.geometricweather.R$id: int unchecked +wangdaye.com.geometricweather.R$attr: int collapsedTitleTextAppearance +io.reactivex.internal.subscribers.DeferredScalarSubscriber +androidx.appcompat.R$style: int TextAppearance_AppCompat_Subhead +androidx.viewpager.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: java.lang.String Unit +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Tooltip +wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat +wangdaye.com.geometricweather.R$color: int colorLevel_2 +wangdaye.com.geometricweather.R$id: int appBar +com.xw.repo.bubbleseekbar.R$id: int normal +cyanogenmod.providers.DataUsageContract: java.lang.String UID +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean getContent() +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconEnabled +com.turingtechnologies.materialscrollbar.R$layout: int abc_activity_chooser_view +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.functions.Function mapper +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowDy +androidx.coordinatorlayout.R$dimen: int notification_media_narrow_margin +okhttp3.internal.cache.CacheRequest +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_recyclerView +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWindDirection +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabText +com.turingtechnologies.materialscrollbar.R$layout: int notification_template_part_chronometer +androidx.vectordrawable.animated.R$layout: R$layout() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onComplete() +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.lang.Throwable error +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeMinTextSize +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerError(int,java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setImages(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean) +androidx.hilt.work.R$attr: int fontStyle +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getCloudCover() +retrofit2.http.FieldMap +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_COLOR_VALIDATOR +com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_action_area +androidx.hilt.R$string: R$string() +wangdaye.com.geometricweather.R$color: int material_grey_850 +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_min_width_major +android.support.v4.graphics.drawable.IconCompatParcelizer: void write(androidx.core.graphics.drawable.IconCompat,androidx.versionedparcelable.VersionedParcel) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +androidx.coordinatorlayout.R$id: int right_side +androidx.customview.R$layout +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_to_on_mtrl_000 +android.didikee.donate.R$attr: int closeItemLayout +wangdaye.com.geometricweather.R$styleable: int MaterialCheckBox_useMaterialThemeColors +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView +com.bumptech.glide.R$drawable: int notification_action_background +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.Observer downstream +com.google.android.material.timepicker.TimeModel: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$attr: int singleChoiceItemLayout +com.bumptech.glide.integration.okhttp.R$styleable +okio.Buffer: byte readByte() +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void clear() +wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationX +com.jaredrummler.android.colorpicker.R$color: int primary_text_default_material_dark +androidx.appcompat.resources.R$id: int accessibility_custom_action_25 +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_31 +okhttp3.Response: long receivedResponseAtMillis() +androidx.loader.R$style: int TextAppearance_Compat_Notification_Time +androidx.viewpager.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$attr: int transitionFlags +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +com.jaredrummler.android.colorpicker.R$id: int action_bar_root +androidx.constraintlayout.widget.R$attr: int textAppearanceListItemSecondary +androidx.viewpager2.R$layout: int custom_dialog +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setPubTime(java.lang.String) +com.google.android.material.R$id: int src_over +okio.RealBufferedSource: boolean exhausted() +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void removeScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +com.google.android.material.slider.BaseSlider: void setLabelBehavior(int) +retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object result +wangdaye.com.geometricweather.R$id: int default_activity_button +androidx.appcompat.app.AppCompatActivity: void setContentView(android.view.View) +io.reactivex.internal.observers.BasicIntQueueDisposable: boolean offer(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalGap +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderAuthority +retrofit2.ParameterHandler$Headers: java.lang.reflect.Method method +okhttp3.Cache$Entry: boolean isHttps() +okio.RealBufferedSource$1 +com.turingtechnologies.materialscrollbar.R$layout: R$layout() +wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_grey +com.google.android.material.R$id: int header_title +com.google.android.material.R$dimen: int mtrl_high_ripple_focused_alpha +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitationProbability +com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_enforceMaterialTheme +okhttp3.Response$Builder: okhttp3.Response priorResponse +com.turingtechnologies.materialscrollbar.R$styleable: int[] TextAppearance +com.jaredrummler.android.colorpicker.R$color: int ripple_material_light +com.google.android.material.R$attr: int drawableBottomCompat +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Light +com.jaredrummler.android.colorpicker.R$color: R$color() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setPrecipitationProbability(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean) +androidx.customview.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf +okhttp3.internal.connection.ConnectInterceptor: okhttp3.OkHttpClient client +androidx.preference.R$style: int Widget_AppCompat_ImageButton +com.google.android.material.R$attr: int boxCornerRadiusTopStart +okhttp3.HttpUrl$Builder: HttpUrl$Builder() +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation observation +androidx.work.R$dimen: int notification_right_icon_size +okio.Buffer$UnsafeCursor: int end +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +androidx.preference.R$styleable: int Preference_android_widgetLayout +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_hovered_z +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getApparentTemperature() +com.xw.repo.bubbleseekbar.R$id: int home +androidx.lifecycle.SingleGeneratedAdapterObserver: androidx.lifecycle.GeneratedAdapter mGeneratedAdapter +okhttp3.internal.http2.Http2Writer: void settings(okhttp3.internal.http2.Settings) +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_NFC +com.jaredrummler.android.colorpicker.R$id: int recycler_view +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +androidx.work.R$integer +com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_RadioButton +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) +com.google.android.material.button.MaterialButton: void setCheckable(boolean) +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: ObservableSubscribeOn$SubscribeOnObserver(io.reactivex.Observer) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cv +androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingLeft +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_disableDependentsState +androidx.customview.R$id: int chronometer +androidx.hilt.lifecycle.R$layout +io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_EMPTY +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_section_mark +wangdaye.com.geometricweather.R$string: int feedback_unusable_geocoder +okio.RealBufferedSource: long indexOf(byte,long) +androidx.constraintlayout.widget.R$integer: int cancel_button_image_alpha +androidx.preference.R$attr: int titleTextStyle +com.google.android.material.R$id: int sin +com.google.android.material.slider.RangeSlider: void setValues(java.lang.Float[]) +wangdaye.com.geometricweather.R$drawable: int notification_bg_normal +androidx.hilt.work.R$id: int accessibility_action_clickable_span +wangdaye.com.geometricweather.db.entities.AlertEntity: long getAlertId() +androidx.constraintlayout.widget.R$string: int abc_search_hint +com.turingtechnologies.materialscrollbar.R$styleable: int[] FloatingActionButton_Behavior_Layout +wangdaye.com.geometricweather.R$id: int triangle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setUrl(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationZ +com.google.android.material.internal.CheckableImageButton +androidx.appcompat.R$styleable: int ActionBar_homeAsUpIndicator io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: long serialVersionUID -com.google.android.material.R$styleable: int Constraint_layout_constrainedWidth -com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Headline6 -com.turingtechnologies.materialscrollbar.R$color: int background_material_light -androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_material -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void drain() -cyanogenmod.externalviews.KeyguardExternalView$5 -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_vertical_padding -androidx.lifecycle.ProcessLifecycleOwnerInitializer: android.net.Uri insert(android.net.Uri,android.content.ContentValues) -com.turingtechnologies.materialscrollbar.R$string: int character_counter_content_description -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicReference boundaryObserver -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.io.FileSystem fileSystem -androidx.hilt.lifecycle.R$layout: int notification_action_tombstone -com.google.android.material.R$style: int Widget_AppCompat_SearchView -james.adaptiveicon.R$dimen: int abc_disabled_alpha_material_light -okio.Util: long reverseBytesLong(long) -wangdaye.com.geometricweather.R$drawable: int notif_temp_95 -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowRadius -io.reactivex.Observable: io.reactivex.Maybe elementAt(long) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchKeyShortcutEvent(android.view.KeyEvent) -okio.Buffer: void close() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_to_on_mtrl_015 -cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_SLEEP_ON_RELEASE -cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.os.Parcel) -cyanogenmod.app.LiveLockScreenInfo: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$dimen: int notification_top_pad -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_percent -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_PrimarySurface -com.google.android.material.tabs.TabLayout: int getTabMaxWidth() -androidx.preference.R$attr: int iconTint -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginBottom -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getTitle() -androidx.appcompat.widget.SearchView: void setIconified(boolean) -com.jaredrummler.android.colorpicker.R$attr: int goIcon -androidx.swiperefreshlayout.R$id: int icon_group -wangdaye.com.geometricweather.R$attr: int telltales_tailScale -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: void setTo(java.lang.String) -android.didikee.donate.R$attr: int contentInsetLeft -com.google.android.material.R$attr: int subtitle -okhttp3.WebSocket$Factory -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarStyle -com.google.android.material.internal.ForegroundLinearLayout -james.adaptiveicon.R$styleable: int Toolbar_maxButtonHeight -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge -wangdaye.com.geometricweather.background.receiver.widget.WidgetMultiCityProvider -cyanogenmod.app.ProfileManager: int PROFILES_STATE_ENABLED -okio.AsyncTimeout$1 -android.didikee.donate.R$dimen: int notification_small_icon_size_as_large -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleEnabled -androidx.hilt.R$styleable: int Fragment_android_name -androidx.core.R$styleable: int[] GradientColor -okhttp3.internal.ws.WebSocketReader: okio.Buffer controlFrameBuffer -android.didikee.donate.R$drawable: int abc_item_background_holo_light -androidx.constraintlayout.widget.R$id: int on -androidx.appcompat.widget.Toolbar: void setLogoDescription(int) -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_AutoCompleteTextView -wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_light -com.google.android.material.R$dimen: int mtrl_btn_disabled_z -james.adaptiveicon.R$style: int Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationX -okhttp3.internal.http.HttpCodec +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableStart +okhttp3.internal.ws.RealWebSocket: java.lang.String receivedCloseReason +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeApparentTemperature +com.google.android.material.R$id: int action_bar_container +androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemMaxLines +androidx.vectordrawable.R$dimen +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: float getSpeed(float) +androidx.lifecycle.extensions.R$id: int info +com.google.android.material.button.MaterialButtonToggleGroup: int getVisibleButtonCount() +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitle +retrofit2.RequestFactory: okhttp3.HttpUrl baseUrl +cyanogenmod.app.StatusBarPanelCustomTile$1 +androidx.preference.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: org.reactivestreams.Subscriber downstream +wangdaye.com.geometricweather.R$string: int settings_title_forecast_tomorrow_time +wangdaye.com.geometricweather.R$dimen: int abc_control_padding_material +android.didikee.donate.R$anim: int abc_slide_out_bottom +cyanogenmod.app.Profile: boolean isConditionalType() +androidx.viewpager2.R$attr: int layoutManager +androidx.lifecycle.LiveData$ObserverWrapper: int mLastVersion +com.turingtechnologies.materialscrollbar.R$color: int abc_hint_foreground_material_light +androidx.vectordrawable.animated.R$id: int tag_accessibility_clickable_spans +com.google.android.material.R$styleable: int Tooltip_backgroundTint +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA +cyanogenmod.alarmclock.ClockContract$AlarmsColumns +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_transitionEasing +android.didikee.donate.R$styleable: int AppCompatTheme_dialogCornerRadius +androidx.swiperefreshlayout.R$integer: R$integer() +okhttp3.HttpUrl: java.lang.String encodedFragment() +wangdaye.com.geometricweather.daily.DailyWeatherActivity: DailyWeatherActivity() +james.adaptiveicon.R$drawable: int notification_bg_normal +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean done +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_FAST_SAMPLES +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_ENABLED +com.jaredrummler.android.colorpicker.R$dimen: int cpv_required_padding +io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent[] values() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String mslp +com.google.android.material.R$id: int right +com.google.android.material.R$styleable: int KeyAttribute_transitionPathRotate +com.google.android.material.timepicker.TimePickerView: void addOnRotateListener(com.google.android.material.timepicker.ClockHandView$OnRotateListener) +cyanogenmod.weather.RequestInfo: int TYPE_LOOKUP_CITY_NAME_REQ +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context) +wangdaye.com.geometricweather.R$xml: int widget_trend_hourly +io.reactivex.internal.subscribers.StrictSubscriber: org.reactivestreams.Subscriber downstream +james.adaptiveicon.R$styleable: int[] AppCompatSeekBar +androidx.preference.R$id: int default_activity_button +com.google.android.material.R$style: int Widget_MaterialComponents_Button_Icon +androidx.appcompat.R$id: int accessibility_custom_action_11 +okio.RealBufferedSource: java.lang.String readUtf8() +androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +retrofit2.BuiltInConverters$UnitResponseBodyConverter: kotlin.Unit convert(okhttp3.ResponseBody) +com.jaredrummler.android.colorpicker.R$anim: int abc_fade_in +androidx.hilt.lifecycle.R$style: int Widget_Compat_NotificationActionText +okhttp3.internal.http2.Http2: int INITIAL_MAX_FRAME_SIZE +okhttp3.Dispatcher: void setIdleCallback(java.lang.Runnable) +androidx.preference.R$styleable: int Toolbar_subtitleTextColor +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_RESET +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.R$menu: int activity_main +wangdaye.com.geometricweather.R$style: int Base_Widget_Design_TabLayout +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: long index +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +androidx.constraintlayout.motion.widget.MotionLayout: void setInteractionEnabled(boolean) +com.google.android.material.button.MaterialButton: void setCornerRadiusResource(int) +wangdaye.com.geometricweather.R$attr: int preferenceFragmentListStyle +okio.RealBufferedSink: okio.BufferedSink emit() +androidx.viewpager.R$styleable: int FontFamilyFont_font +androidx.preference.R$color: int primary_material_light +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Count +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer +androidx.work.R$id: int accessibility_custom_action_17 +androidx.cardview.widget.CardView: CardView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabContentStart +com.xw.repo.bubbleseekbar.R$attr: int radioButtonStyle +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDailyForecast(java.lang.String) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView_PrimarySurface +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onLockscreenSlideOffsetChanged(float) +androidx.appcompat.R$dimen: int compat_button_padding_vertical_material +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String unitId +android.didikee.donate.R$styleable: int[] Spinner +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_max_width +com.google.android.material.R$styleable: int[] ScrollingViewBehavior_Layout +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CALL_RECORDING_FORMAT_VALIDATOR +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: AccuMinuteResult$SummaryBean() +james.adaptiveicon.R$id: int topPanel +android.didikee.donate.R$integer: int abc_config_activityShortDur +androidx.hilt.lifecycle.R$dimen: int notification_action_text_size +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat +com.google.android.material.R$dimen: R$dimen() +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: boolean disconnectedEarly +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowMinWidthMinor +androidx.recyclerview.R$id: int tag_accessibility_pane_title +com.xw.repo.bubbleseekbar.R$dimen: int abc_search_view_preferred_width +com.google.android.material.R$styleable: int KeyCycle_android_scaleY +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onComplete() +com.google.android.material.R$styleable: int Chip_chipStrokeColor +androidx.vectordrawable.R$dimen: int notification_media_narrow_margin +com.jaredrummler.android.colorpicker.R$id: int action_bar_activity_content +james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +com.google.android.material.R$attr: int useMaterialThemeColors +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeWindChillTemperature() +wangdaye.com.geometricweather.R$string: int key_background_free +android.didikee.donate.R$dimen: int abc_dialog_fixed_height_minor +cyanogenmod.app.LiveLockScreenManager: void setLiveLockScreenEnabled(boolean) +androidx.preference.R$styleable: int MenuItem_android_numericShortcut +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object getKey(java.lang.Object) +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.fuseable.SimplePlainQueue queue +com.jaredrummler.android.colorpicker.R$id: int transparency_seekbar +cyanogenmod.providers.CMSettings$Secure: java.lang.String LIVE_DISPLAY_COLOR_MATRIX +androidx.preference.R$styleable: int[] Toolbar +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +org.greenrobot.greendao.AbstractDaoSession: java.lang.Object callInTx(java.util.concurrent.Callable) +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_light +okhttp3.internal.platform.JdkWithJettyBootPlatform: okhttp3.internal.platform.Platform buildIfSupported() +com.jaredrummler.android.colorpicker.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.common.basic.models.weather.Astro: boolean isValid() +com.turingtechnologies.materialscrollbar.R$attr: int searchViewStyle +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleMargin +androidx.constraintlayout.widget.R$attr: int customFloatValue +wangdaye.com.geometricweather.R$drawable: int notif_temp_137 +androidx.core.R$layout +androidx.constraintlayout.widget.R$id: int tag_accessibility_actions +androidx.vectordrawable.R$attr: int fontWeight +james.adaptiveicon.R$attr: int showText +okhttp3.internal.http2.Http2Stream$FramingSource: okio.Buffer receiveBuffer +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: void setHistogramAlpha(float) +wangdaye.com.geometricweather.R$string: int feedback_cannot_start_live_wallpaper_activity +androidx.constraintlayout.widget.R$attr: int defaultState +com.turingtechnologies.materialscrollbar.R$attr: int itemTextColor +cyanogenmod.app.Profile: int getTriggerState(int,java.lang.String) +androidx.constraintlayout.widget.R$bool: int abc_allow_stacked_button_bar +wangdaye.com.geometricweather.R$id: int mtrl_calendar_selection_frame +cyanogenmod.app.IProfileManager: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_toId +androidx.constraintlayout.widget.R$id: int stop +wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +android.didikee.donate.R$style: int Widget_AppCompat_SeekBar_Discrete +android.didikee.donate.R$styleable: int MenuView_android_horizontalDivider +androidx.preference.R$id: int tag_accessibility_clickable_spans +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: long index +com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_alphaChannelText +androidx.hilt.work.R$bool: int enable_system_job_service_default +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver +com.google.android.material.R$dimen: int mtrl_high_ripple_hovered_alpha +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: int mConditionCode +androidx.constraintlayout.widget.R$attr: int searchHintIcon +cyanogenmod.app.ProfileManager: int PROFILES_STATE_DISABLED +okhttp3.Cache$Entry: void writeTo(okhttp3.internal.cache.DiskLruCache$Editor) +androidx.transition.R$styleable: int[] FontFamily +retrofit2.OptionalConverterFactory$OptionalConverter +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: float unitFactor +androidx.preference.R$id: int action_image +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_RAINSTORM +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2$1: ThemeVersion$ThemeVersionImpl2$1() +com.google.android.material.slider.RangeSlider: void setValueFrom(float) +android.didikee.donate.R$style: int Widget_AppCompat_DropDownItem_Spinner +io.reactivex.internal.util.VolatileSizeArrayList: java.util.Iterator iterator() +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +cyanogenmod.app.Profile: cyanogenmod.profiles.LockSettings getScreenLockMode() +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +com.google.android.material.R$id: int masked +com.google.android.material.card.MaterialCardView: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +wangdaye.com.geometricweather.R$drawable: int notif_temp_103 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean forecastHourly +com.google.android.material.R$id: int autoCompleteToEnd +com.google.android.material.R$id: int chip +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +com.google.android.material.chip.Chip: void setCheckedIconResource(int) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display4 +retrofit2.Retrofit$Builder: Retrofit$Builder(retrofit2.Retrofit) +com.google.android.material.R$attr: int listChoiceIndicatorSingleAnimated +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getCO() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_transitionEasing +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textStyle +androidx.preference.R$dimen: int preference_dropdown_padding_start +cyanogenmod.profiles.LockSettings$1 +wangdaye.com.geometricweather.R$drawable: int notif_temp_51 +cyanogenmod.externalviews.ExternalView$6: ExternalView$6(cyanogenmod.externalviews.ExternalView) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: int minuteInterval +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_checked +android.didikee.donate.R$id: int textSpacerNoButtons +androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitleTextColor +androidx.lifecycle.ProcessLifecycleOwnerInitializer: java.lang.String getType(android.net.Uri) +wangdaye.com.geometricweather.R$id: int material_label +james.adaptiveicon.R$attr: int textAllCaps +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayGammaCalibration +wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_to_on_mtrl_000 +okhttp3.Headers: java.lang.String[] namesAndValues +com.google.android.material.R$styleable: int AppCompatTheme_android_windowAnimationStyle +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet) +cyanogenmod.app.CustomTile: java.lang.String resourcesPackageName +okhttp3.internal.http2.Http2Stream$FramingSource: Http2Stream$FramingSource(okhttp3.internal.http2.Http2Stream,long) +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: void setColor(boolean) +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit IN +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float ceiling +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.constraintlayout.widget.R$id: int content +com.google.android.material.bottomnavigation.BottomNavigationView: int getItemIconSize() +androidx.constraintlayout.widget.R$styleable: int MockView_mock_showLabel +okio.Okio: okio.Source source(java.nio.file.Path,java.nio.file.OpenOption[]) +androidx.lifecycle.ReportFragment: void dispatch(androidx.lifecycle.Lifecycle$Event) +com.xw.repo.bubbleseekbar.R$attr: int tickMark +wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_shapeAppearance +okhttp3.Call: boolean isCanceled() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: int UnitType +com.google.android.material.R$styleable: int AppCompatTextView_drawableBottomCompat +androidx.preference.R$id: int accessibility_custom_action_27 +okhttp3.internal.http2.Hpack$Reader: int headerTableSizeSetting +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +androidx.preference.R$styleable: int DrawerArrowToggle_arrowShaftLength +com.google.android.material.R$styleable: int StateListDrawableItem_android_drawable +androidx.fragment.R$styleable: int[] FragmentContainerView +androidx.core.R$dimen: int notification_small_icon_background_padding +com.google.android.material.R$attr: int collapsedTitleGravity +james.adaptiveicon.R$styleable: int Toolbar_contentInsetLeft +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_height +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTotalPrecipitationProbability(java.lang.Float) +androidx.fragment.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$attr: int barrierMargin +androidx.drawerlayout.R$style: int Widget_Compat_NotificationActionText +james.adaptiveicon.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected +retrofit2.ParameterHandler$RelativeUrl: void apply(retrofit2.RequestBuilder,java.lang.Object) +androidx.constraintlayout.widget.R$dimen: int compat_button_padding_horizontal_material +io.reactivex.internal.schedulers.AbstractDirectTask: AbstractDirectTask(java.lang.Runnable) +cyanogenmod.providers.CMSettings$Secure: java.lang.String PRIVACY_GUARD_NOTIFICATION +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.util.List value +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Colored +com.turingtechnologies.materialscrollbar.R$id: int topPanel +okhttp3.Response: okhttp3.Headers headers +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_checkableBehavior +com.turingtechnologies.materialscrollbar.R$attr: int actionModeCloseButtonStyle +android.didikee.donate.R$styleable: int PopupWindow_overlapAnchor +androidx.viewpager.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer getCloudCover() +wangdaye.com.geometricweather.R$attr: int colorSwitchThumbNormal +androidx.appcompat.R$attr: int displayOptions +com.google.android.material.R$styleable: int Layout_layout_constraintGuide_end +james.adaptiveicon.R$string: int abc_shareactionprovider_share_with +com.turingtechnologies.materialscrollbar.R$attr: int buttonStyleSmall +com.google.android.material.R$style: int Theme_AppCompat_Light_DialogWhenLarge +wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment: void setOnWeatherSourceChangedListener(wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment$OnWeatherSourceChangedListener) +androidx.swiperefreshlayout.R$string +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void request(long) +androidx.appcompat.widget.Toolbar: int getContentInsetStartWithNavigation() +com.google.android.material.R$styleable: int Layout_minHeight +com.google.android.material.slider.Slider: void setThumbElevation(float) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeTextType +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitation +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void setDisposable(io.reactivex.disposables.Disposable) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +com.turingtechnologies.materialscrollbar.R$attr: int dialogCornerRadius +androidx.core.R$attr: int fontProviderQuery +androidx.vectordrawable.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.chip.ChipGroup: void setChipSpacingVerticalResource(int) +androidx.coordinatorlayout.R$styleable: int[] GradientColor +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog +okio.BufferedSource: java.lang.String readUtf8LineStrict() +wangdaye.com.geometricweather.R$array: int widget_text_color_values +androidx.preference.R$attr: int windowActionBar +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualObserver[] observers +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_15 +wangdaye.com.geometricweather.R$string: int action_manage +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver) +cyanogenmod.app.CustomTile$1: cyanogenmod.app.CustomTile[] newArray(int) +wangdaye.com.geometricweather.R$array: int pressure_units +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_header +okhttp3.internal.io.FileSystem$1 +androidx.viewpager.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust: AccuCurrentResult$WindGust() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Colored +okhttp3.internal.http2.Http2Codec: java.util.List HTTP_2_SKIPPED_REQUEST_HEADERS +com.turingtechnologies.materialscrollbar.R$color: int primary_dark_material_light +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_max +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type ERROR +com.google.android.material.R$integer: int design_tab_indicator_anim_duration_ms +cyanogenmod.themes.IThemeService$Stub$Proxy: boolean processThemeResources(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderTextColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setCurrent(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean) +cyanogenmod.providers.CMSettings$System: float getFloat(android.content.ContentResolver,java.lang.String,float) +androidx.hilt.work.R$id: int accessibility_custom_action_8 +com.bumptech.glide.load.engine.GlideException: void printStackTrace(java.io.PrintStream) +wangdaye.com.geometricweather.R$drawable: int notif_temp_74 +cyanogenmod.weather.WeatherLocation: WeatherLocation(android.os.Parcel) +io.reactivex.Observable: io.reactivex.Observable switchMapDelayError(io.reactivex.functions.Function) +androidx.fragment.R$integer: int status_bar_notification_info_maxnum +james.adaptiveicon.R$attr: int actionMenuTextAppearance +wangdaye.com.geometricweather.R$string: int material_timepicker_text_input_mode_description +wangdaye.com.geometricweather.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +com.jaredrummler.android.colorpicker.R$style: int Base_DialogWindowTitleBackground_AppCompat +androidx.constraintlayout.widget.R$dimen: int tooltip_precise_anchor_threshold +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache create(okhttp3.internal.io.FileSystem,java.io.File,int,int,long) +com.google.android.material.R$id: int chip3 +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.R$id: int item_card_display +androidx.appcompat.R$id: int accessibility_custom_action_5 +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +com.turingtechnologies.materialscrollbar.R$id: int shortcut +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow Snow +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginRight +james.adaptiveicon.R$styleable: int AppCompatTheme_tooltipFrameBackground +okhttp3.Cache: void remove(okhttp3.Request) +androidx.lifecycle.SavedStateViewModelFactory: java.lang.Class[] VIEWMODEL_SIGNATURE +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetBottom +androidx.vectordrawable.R$attr: int alpha +androidx.constraintlayout.widget.R$dimen: int notification_right_icon_size +com.google.android.material.R$dimen: int mtrl_textinput_outline_box_expanded_padding +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onSuccess(java.lang.Object) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Subhead +wangdaye.com.geometricweather.db.entities.AlertEntity: java.util.Date getDate() +androidx.hilt.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean pressure +androidx.hilt.work.R$id: int right_icon +android.didikee.donate.R$color: int abc_background_cache_hint_selector_material_light +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.google.android.material.R$drawable: int abc_list_divider_material +androidx.appcompat.widget.ActionMenuView: int getWindowAnimations() +androidx.recyclerview.R$styleable: int RecyclerView_android_clipToPadding +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +wangdaye.com.geometricweather.R$attr: int badgeTextColor +androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_indicator_material +com.google.android.material.R$dimen: int cardview_default_elevation +androidx.core.R$id: int notification_main_column_container +okio.Timeout$1: Timeout$1() +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.RealConnection connection +androidx.constraintlayout.widget.R$attr: int flow_firstVerticalBias +okhttp3.internal.http.RealResponseBody: okhttp3.MediaType contentType() +com.google.android.material.R$attr: int actionModeFindDrawable +wangdaye.com.geometricweather.R$id: int textinput_error +com.google.android.material.R$attr: int actionBarStyle +james.adaptiveicon.R$attr: int backgroundTint +wangdaye.com.geometricweather.R$styleable: int ListPreference_entries +android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonText +androidx.fragment.app.FragmentManagerImpl +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getPM25() +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: boolean isDisposed() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getDailyForecast() +androidx.preference.R$dimen: int abc_action_bar_default_height_material +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getDaytimeWindDegree() +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_strokeColor +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.preference.R$style: int Base_Widget_AppCompat_TextView +com.google.android.material.R$attr: int backgroundInsetTop +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_dark +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_23 +james.adaptiveicon.R$dimen: int abc_text_size_headline_material +com.google.android.material.R$styleable: int AppCompatTextView_drawableTint +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: io.reactivex.internal.disposables.SequentialDisposable timed +androidx.recyclerview.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstVerticalBias +wangdaye.com.geometricweather.R$styleable: int Slider_android_valueFrom +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_spinBars +com.jaredrummler.android.colorpicker.R$attr: int titleTextStyle +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy TRANSFORMED +androidx.appcompat.widget.ActivityChooserView: void setDefaultActionButtonContentDescription(int) +androidx.core.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DialogWhenLarge +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getLongitude() +com.xw.repo.bubbleseekbar.R$dimen: int abc_seekbar_track_background_height_material +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemBackgroundRes(int) +okhttp3.internal.http2.Http2: byte FLAG_PADDED +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +io.reactivex.internal.observers.InnerQueuedObserver: boolean done +okhttp3.RealCall: okio.Timeout timeout() +io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.CompletableSource) +wangdaye.com.geometricweather.R$layout: int preference_dialog_edittext +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean cancelled +com.google.android.material.R$attr: int flow_maxElementsWrap +androidx.lifecycle.LifecycleRegistry$ObserverWithState: androidx.lifecycle.LifecycleEventObserver mLifecycleObserver +okhttp3.internal.NamedRunnable +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String messageShort +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: int Degrees +james.adaptiveicon.R$styleable: int SwitchCompat_android_textOn +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.lang.String MobileLink +com.google.android.material.R$color: int design_bottom_navigation_shadow_color +wangdaye.com.geometricweather.R$styleable: int[] DialogPreference +androidx.lifecycle.LifecycleRegistry: boolean mNewEventOccurred +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogCornerRadius +com.bumptech.glide.integration.okhttp.R$id: int blocking +cyanogenmod.providers.CMSettings$Secure: int getInt(android.content.ContentResolver,java.lang.String) +okio.HashingSource: okio.HashingSource sha1(okio.Source) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_BOOT_ANIM +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_statusBarForeground +wangdaye.com.geometricweather.weather.apis.AccuWeatherApi +wangdaye.com.geometricweather.R$color: int mtrl_fab_bg_color_selector +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +com.google.android.material.R$attr: int ensureMinTouchTargetSize +okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.RealWebSocket$Streams streams +okhttp3.MultipartBody: okhttp3.MultipartBody$Part part(int) +android.didikee.donate.R$dimen: int abc_control_corner_material +wangdaye.com.geometricweather.R$attr: int waveVariesBy +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int COLD +com.turingtechnologies.materialscrollbar.R$color: int primary_material_dark +io.reactivex.internal.schedulers.ScheduledRunnable: int THREAD_INDEX +com.google.android.material.R$dimen: int tooltip_y_offset_non_touch +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_radius +okhttp3.CacheControl: boolean noStore +androidx.preference.R$styleable: int AppCompatTheme_dividerVertical +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean isDisposed() +io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,int) +io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,java.util.concurrent.Callable) +james.adaptiveicon.R$attr: int actionBarStyle +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Button +okio.RealBufferedSource: long read(okio.Buffer,long) +androidx.vectordrawable.R$id: int accessibility_custom_action_15 +com.jaredrummler.android.colorpicker.R$color: int material_grey_800 +okio.SegmentedByteString: java.lang.String base64Url() +okhttp3.internal.Internal: void addLenient(okhttp3.Headers$Builder,java.lang.String,java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_gravity +cyanogenmod.app.BaseLiveLockManagerService: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.DailyEntity) +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_Solid +io.reactivex.Observable: io.reactivex.Maybe singleElement() +io.reactivex.internal.util.HashMapSupplier: java.util.Map call() +com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector DAY +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintEnd_toEndOf +com.google.android.material.R$dimen: int abc_text_size_body_1_material +james.adaptiveicon.R$attr: int listItemLayout +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableBottomCompat +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_horizontalDivider +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getUvIndex() +androidx.appcompat.resources.R$styleable +androidx.core.content.FileProvider: FileProvider() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: java.lang.String Unit +com.turingtechnologies.materialscrollbar.R$attr: int tabStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String no2 +retrofit2.HttpServiceMethod$SuspendForBody: HttpServiceMethod$SuspendForBody(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter,boolean) +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Info +cyanogenmod.weather.WeatherInfo: long getTimestamp() +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: boolean isDisposed() +com.google.android.material.tabs.TabLayout$TabView: int getContentWidth() +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_height +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_commitIcon +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constrainedHeight +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_36 +wangdaye.com.geometricweather.settings.activities.PreviewIconActivity +com.turingtechnologies.materialscrollbar.R$color: int secondary_text_default_material_dark +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +james.adaptiveicon.R$styleable: int MenuItem_android_titleCondensed +com.google.android.material.R$string: int item_view_role_description +androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentX +cyanogenmod.providers.CMSettings$Global: android.net.Uri CONTENT_URI +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarItemBackground +wangdaye.com.geometricweather.R$color: int material_deep_teal_200 +androidx.constraintlayout.widget.R$color: int abc_hint_foreground_material_dark +androidx.hilt.work.R$id: int accessibility_custom_action_16 +androidx.vectordrawable.animated.R$id: int italic +okhttp3.CacheControl: CacheControl(boolean,boolean,int,int,boolean,boolean,boolean,int,int,boolean,boolean,boolean,java.lang.String) +androidx.lifecycle.extensions.R$id: int dialog_button +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listDividerAlertDialog +cyanogenmod.os.Build$CM_VERSION_CODES +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: cyanogenmod.app.suggest.IAppSuggestProvider asInterface(android.os.IBinder) +okhttp3.Authenticator: okhttp3.Authenticator NONE +com.google.android.material.R$attr: int submitBackground +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: MfWarningsResult$WarningComments$WarningTextBlocItem() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.lang.String getUnit() +com.xw.repo.bubbleseekbar.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +com.google.android.material.R$color: int design_dark_default_color_on_background +wangdaye.com.geometricweather.R$attr: int tooltipText +androidx.appcompat.R$style: int Base_V23_Theme_AppCompat_Light +androidx.lifecycle.Lifecycling$1: androidx.lifecycle.LifecycleEventObserver val$observer +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_TITLE +cyanogenmod.providers.DataUsageContract: java.lang.String FAST_AVG +com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_internal_bg +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: boolean isDisposed() +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_customNavigationLayout +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.functions.Predicate predicate +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionBarOverlay +okhttp3.internal.http.RetryAndFollowUpInterceptor: int retryAfter(okhttp3.Response,int) +androidx.fragment.R$drawable: int notification_bg_normal_pressed +cyanogenmod.app.PartnerInterface: int ZEN_MODE_NO_INTERRUPTIONS +androidx.preference.R$styleable: int ActionBar_contentInsetRight +androidx.appcompat.widget.ActivityChooserView: void setActivityChooserModel(androidx.appcompat.widget.ActivityChooserModel) +androidx.work.R$styleable: int FontFamilyFont_android_ttcIndex +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_MAX_INDEX +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) +okhttp3.MultipartBody: okhttp3.MediaType ALTERNATIVE +okhttp3.Cookie: java.lang.String value() +wangdaye.com.geometricweather.R$attr: int expandedTitleMarginTop +com.google.android.material.internal.FlowLayout +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: HourlyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +com.google.android.material.R$styleable: int SearchView_closeIcon +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetBottom +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textSize +wangdaye.com.geometricweather.R$layout: int dialog_location_help +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ImageButton +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$id: int transition_position +cyanogenmod.app.Profile: void setConnectionSettings(cyanogenmod.profiles.ConnectionSettings) +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sun_icon +wangdaye.com.geometricweather.R$id: int dragRight +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: android.os.IBinder asBinder() +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotation +cyanogenmod.app.CustomTile$ExpandedStyle: android.widget.RemoteViews contentViews +android.didikee.donate.R$color: int dim_foreground_material_light +androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getLogo() +wangdaye.com.geometricweather.R$dimen: int widget_little_weather_icon_size +okhttp3.internal.http.RealInterceptorChain: okhttp3.Connection connection() +android.didikee.donate.R$style: int Widget_AppCompat_Spinner_Underlined +androidx.core.R$id: int blocking +com.google.android.material.R$attr: int themeLineHeight +androidx.constraintlayout.widget.R$layout: int abc_action_menu_layout +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_closeIcon +cyanogenmod.externalviews.KeyguardExternalView: boolean access$802(cyanogenmod.externalviews.KeyguardExternalView,boolean) +com.bumptech.glide.R$color +wangdaye.com.geometricweather.R$styleable: int Chip_android_checkable +androidx.dynamicanimation.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$id: int password_toggle +androidx.recyclerview.widget.StaggeredGridLayoutManager$SavedState +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Latitude +androidx.activity.R$color +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: boolean isDisposed() +androidx.constraintlayout.widget.R$dimen: int abc_button_inset_horizontal_material +com.turingtechnologies.materialscrollbar.R$drawable: int notification_action_background +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginEnd +androidx.fragment.R$drawable: int notification_template_icon_low_bg +androidx.appcompat.widget.SearchView$SearchAutoComplete: void setSearchView(androidx.appcompat.widget.SearchView) androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedHeightMajor() -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Light -com.jaredrummler.android.colorpicker.R$dimen: int abc_button_inset_horizontal_material -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation BOTTOM -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableLeft -androidx.appcompat.R$attr: int searchHintIcon -io.reactivex.internal.observers.BlockingObserver: void onComplete() -com.google.android.material.R$attr: int fastScrollVerticalThumbDrawable -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircleRadius -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth -androidx.appcompat.R$styleable: int FontFamilyFont_font -io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.ObservableSource) -com.google.android.material.R$styleable: int SearchView_submitBackground -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_1_material -androidx.fragment.app.FragmentManagerViewModel -wangdaye.com.geometricweather.R$id: int circle_center -okhttp3.internal.cache2.Relay: okio.Buffer upstreamBuffer -com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_android_popupBackground -androidx.hilt.R$id: int action_text -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Info -androidx.activity.R$style -io.reactivex.exceptions.OnErrorNotImplementedException: long serialVersionUID -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type ERROR -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setCurrentIndicatorColor(int) -android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Dialog -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView_Menu -com.jaredrummler.android.colorpicker.R$attr: int queryBackground -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String country -com.xw.repo.bubbleseekbar.R$integer: int cancel_button_image_alpha -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Small -cyanogenmod.hardware.CMHardwareManager: int FEATURE_AUTO_CONTRAST -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.Observer downstream -com.google.android.material.R$styleable: int FontFamily_fontProviderAuthority -cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getProfile(android.os.ParcelUuid) -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_PLAY_QUEUE -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_EXPORT_WITH_DES40_CBC_SHA -androidx.preference.R$dimen: int notification_action_icon_size -cyanogenmod.power.IPerformanceManager -com.turingtechnologies.materialscrollbar.R$attr: int maxButtonHeight -com.google.android.material.R$styleable: int[] MaterialAlertDialog -androidx.preference.R$layout: int abc_action_mode_close_item_material -androidx.preference.R$styleable: int ViewBackgroundHelper_backgroundTintMode -cyanogenmod.externalviews.KeyguardExternalView: android.content.Context access$600(cyanogenmod.externalviews.KeyguardExternalView) -androidx.preference.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -androidx.hilt.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int[] ConstraintLayout_placeholder -wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_nextButton -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HAZE -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean delayError -cyanogenmod.profiles.LockSettings: void writeToParcel(android.os.Parcel,int) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.Disposable upstream -retrofit2.RequestBuilder: java.lang.String relativeUrl -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: java.lang.Integer freezing -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) -androidx.constraintlayout.widget.R$id: int staticPostLayout -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: long serialVersionUID -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: long serialVersionUID -okio.Okio$4 -androidx.appcompat.R$layout: int select_dialog_singlechoice_material -androidx.appcompat.R$attr: int indeterminateProgressStyle -com.turingtechnologies.materialscrollbar.R$styleable -wangdaye.com.geometricweather.R$styleable: int[] Snackbar -androidx.appcompat.R$id: int search_src_text -com.jaredrummler.android.colorpicker.ColorPickerView: void setBorderColor(int) -androidx.lifecycle.SavedStateViewModelFactory: SavedStateViewModelFactory(android.app.Application,androidx.savedstate.SavedStateRegistryOwner,android.os.Bundle) -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void onResponse(retrofit2.Call,retrofit2.Response) -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_ttcIndex -com.google.android.material.progressindicator.ProgressIndicator: void setProgress(int) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: CNWeatherResult$Alert() -androidx.preference.R$dimen: int abc_button_padding_horizontal_material -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_android_src -wangdaye.com.geometricweather.R$styleable: int GradientColorItem_android_offset -androidx.transition.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$layout: int preference -retrofit2.OkHttpCall: okio.Timeout timeout() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitation() -androidx.appcompat.R$style: int Base_AlertDialog_AppCompat_Light -okhttp3.EventListener: EventListener() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.Map buffers -androidx.preference.R$attr: int tickMarkTint -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getShortWindDescription() -androidx.appcompat.R$id: int actions -com.google.android.material.chip.ChipGroup: void setDividerDrawableVertical(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.util.List _queryWeatherEntity_MinutelyEntityList(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthTextView -wangdaye.com.geometricweather.R$id: int header_title -com.turingtechnologies.materialscrollbar.R$attr: int tabTextAppearance -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_enter_shortcut_label -com.google.android.material.R$id: int textinput_placeholder -cyanogenmod.providers.CMSettings$System: java.lang.String QS_SHOW_BRIGHTNESS_SLIDER -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitationProbability -androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat_Light -androidx.preference.R$layout: int abc_screen_toolbar -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_singleChoiceItemLayout -okhttp3.Headers$Builder: okhttp3.Headers$Builder set(java.lang.String,java.lang.String) -com.google.android.material.R$attr: int switchPadding -androidx.drawerlayout.R$id: int icon_group -james.adaptiveicon.R$style: int Base_V23_Theme_AppCompat -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnLayoutChangeListener(com.google.android.material.snackbar.BaseTransientBottomBar$OnLayoutChangeListener) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -cyanogenmod.weather.WeatherInfo$Builder: double mTemperature -wangdaye.com.geometricweather.R$attr: int onNegativeCross -com.bumptech.glide.R$drawable: int notification_bg_low_pressed -okio.RealBufferedSource: java.lang.String toString() -james.adaptiveicon.R$style: int Base_V22_Theme_AppCompat_Light -androidx.constraintlayout.widget.R$attr: int barrierDirection -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents -androidx.transition.R$drawable: int notification_bg_normal_pressed -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetEndWithActions -cyanogenmod.hardware.CMHardwareManager: int getDisplayGammaCalibrationMin() -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeMinTextSize -com.google.android.material.chip.Chip: android.text.TextUtils$TruncateAt getEllipsize() -androidx.core.R$attr: int fontProviderPackage -androidx.hilt.lifecycle.R$styleable -com.google.android.material.R$styleable: int RecyclerView_reverseLayout -androidx.hilt.lifecycle.R$anim: int fragment_close_enter -wangdaye.com.geometricweather.R$drawable: int weather_snow -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context) -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderSelection -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onSubscribe(io.reactivex.disposables.Disposable) -android.didikee.donate.R$drawable: int abc_btn_check_material -okio.DeflaterSink: DeflaterSink(okio.BufferedSink,java.util.zip.Deflater) -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_primary_mtrl_alpha -wangdaye.com.geometricweather.R$string: int key_notification_style -com.google.android.material.R$styleable: int Constraint_flow_firstVerticalStyle -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(io.reactivex.Scheduler) -okhttp3.internal.connection.StreamAllocation$StreamAllocationReference: StreamAllocation$StreamAllocationReference(okhttp3.internal.connection.StreamAllocation,java.lang.Object) -androidx.hilt.R$id: int tag_accessibility_heading -wangdaye.com.geometricweather.R$layout: int image_frame -wangdaye.com.geometricweather.R$drawable: int flag_it -com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalAlign -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_Solid -androidx.preference.R$attr: int colorAccent -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_lineHeight -wangdaye.com.geometricweather.db.entities.LocationEntity: void setLatitude(float) -com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context) -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SearchView -okhttp3.MultipartBody: byte[] COLONSPACE -androidx.recyclerview.R$styleable: int GradientColor_android_centerColor -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeight -wangdaye.com.geometricweather.R$styleable: int ActionBar_itemPadding -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy -com.google.android.material.R$styleable: int KeyCycle_transitionEasing -retrofit2.BuiltInConverters$StreamingResponseBodyConverter -retrofit2.RequestBuilder: okhttp3.Request$Builder requestBuilder -com.google.android.material.card.MaterialCardView: void setDragged(boolean) -com.google.android.material.button.MaterialButton: void setBackgroundTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$color: int colorLine -androidx.lifecycle.LifecycleService: void onStart(android.content.Intent,int) -android.didikee.donate.R$color: int abc_tint_default -androidx.preference.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display4 -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$FramingSink sink -com.github.rahatarmanahmed.cpv.R$attr: R$attr() -com.google.android.material.R$id: int title_template -james.adaptiveicon.R$dimen: int disabled_alpha_material_dark -androidx.preference.R$attr: int font -androidx.preference.R$attr: int negativeButtonText -com.google.android.material.navigation.NavigationView: int getItemIconPadding() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_iconStartPadding -wangdaye.com.geometricweather.R$styleable: int Chip_android_text -wangdaye.com.geometricweather.R$styleable: int MaterialTextView_android_textAppearance -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableItem_android_drawable -androidx.appcompat.R$styleable: int Toolbar_contentInsetRight -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String getUnit() -okio.ForwardingSource: okio.Timeout timeout() -okhttp3.HttpUrl: java.lang.String scheme -com.google.android.material.R$attr: int bottomAppBarStyle -wangdaye.com.geometricweather.R$styleable: int Chip_chipMinTouchTargetSize -cyanogenmod.app.Profile$ExpandedDesktopMode: int DISABLE -wangdaye.com.geometricweather.R$styleable: int[] PreferenceFragmentCompat -androidx.preference.R$styleable: int[] SwitchCompat -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_greyIcon -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Bridge -androidx.appcompat.widget.ActionBarOverlayLayout: void setHasNonEmbeddedTabs(boolean) -cyanogenmod.providers.CMSettings$DiscreteValueValidator: boolean validate(java.lang.String) -androidx.appcompat.widget.AppCompatTextView: androidx.core.text.PrecomputedTextCompat$Params getTextMetricsParamsCompat() -wangdaye.com.geometricweather.R$attr: int useMaterialThemeColors -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub -androidx.lifecycle.livedata.core.R -wangdaye.com.geometricweather.R$drawable: int notification_template_icon_bg -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.viewpager.R$styleable: int[] GradientColor -cyanogenmod.app.CustomTile$1: CustomTile$1() -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder certificatePinner(okhttp3.CertificatePinner) -com.google.android.material.slider.RangeSlider: void setTrackInactiveTintList(android.content.res.ColorStateList) -androidx.activity.R$id: int accessibility_custom_action_1 -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult -cyanogenmod.app.ProfileManager: void removeNotificationGroup(android.app.NotificationGroup) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition GeoPosition -wangdaye.com.geometricweather.R$drawable: int notif_temp_94 -com.google.android.material.textfield.TextInputLayout: void setEndIconActivated(boolean) -androidx.dynamicanimation.R$styleable: int[] FontFamily -com.turingtechnologies.materialscrollbar.R$attr: int tint -androidx.preference.R$attr: int dropdownListPreferredItemHeight -android.didikee.donate.R$drawable: int abc_vector_test -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_LIFE_DETAILS -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRelativeHumidity() -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1(retrofit2.Call) -com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar_Colored -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_2 -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: java.lang.Object v1 -androidx.preference.R$styleable: int AppCompatTheme_windowMinWidthMinor -wangdaye.com.geometricweather.R$attr: int trackColorInactive -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String insee -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode DEFAULT -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderAuthority -androidx.constraintlayout.helper.widget.Flow: void setVerticalGap(int) -androidx.work.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: double Value -androidx.preference.R$id: int spinner -androidx.lifecycle.Transformations$2$1 -retrofit2.OkHttpCall: okhttp3.Call getRawCall() -retrofit2.HttpServiceMethod: retrofit2.Converter createResponseConverter(retrofit2.Retrofit,java.lang.reflect.Method,java.lang.reflect.Type) -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemTitle(java.lang.String) -androidx.preference.R$styleable: int Toolbar_logo -androidx.preference.R$id: int fragment_container_view_tag -james.adaptiveicon.R$styleable: int ViewBackgroundHelper_android_background -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.Observer downstream -com.xw.repo.bubbleseekbar.R$attr: int listMenuViewStyle -okhttp3.Cookie: boolean matches(okhttp3.HttpUrl) -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.ICMWeatherManager getService() -wangdaye.com.geometricweather.R$id: int notification_multi_city_text_2 -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -androidx.appcompat.widget.SearchView: void setInputType(int) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Body1 -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String MobileLink -wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitleTextAppearance -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder addConverterFactory(retrofit2.Converter$Factory) -wangdaye.com.geometricweather.common.basic.GeoActivity -androidx.appcompat.R$attr: int thumbTint -retrofit2.http.HTTP: boolean hasBody() -okhttp3.internal.cache.DiskLruCache: java.util.concurrent.Executor executor -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button -okhttp3.internal.http2.Http2Writer: void goAway(int,okhttp3.internal.http2.ErrorCode,byte[]) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_alpha -com.turingtechnologies.materialscrollbar.R$interpolator: R$interpolator() -androidx.lifecycle.LifecycleRegistry: java.lang.ref.WeakReference mLifecycleOwner -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String cityId -androidx.constraintlayout.widget.R$style: int Base_V23_Theme_AppCompat_Light -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_CompactMenu -okhttp3.CertificatePinner$Pin: int hashCode() -com.google.android.material.R$styleable: int AppBarLayout_Layout_layout_scrollFlags -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchPadding -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_stackFromEnd -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_DES_CBC_SHA -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxDaoPlain -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: void onFailure(retrofit2.Call,java.lang.Throwable) -retrofit2.Response: retrofit2.Response error(int,okhttp3.ResponseBody) -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onNext(java.lang.Object) -okhttp3.internal.http2.Settings: int HEADER_TABLE_SIZE -androidx.hilt.work.R$id -androidx.appcompat.resources.R$id: int forever -com.google.android.material.circularreveal.cardview.CircularRevealCardView: CircularRevealCardView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$dimen: int spinner_drop_width -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_NOTIFICATIONS -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_backgroundTint -android.didikee.donate.R$attr: int isLightTheme -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.async.AsyncSession startAsyncSession() -androidx.preference.R$style: int Base_V22_Theme_AppCompat_Light -androidx.customview.R$attr: int ttcIndex -com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPickerView -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: java.lang.String mKey -androidx.fragment.R$integer: R$integer() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: long serialVersionUID -com.google.android.material.circularreveal.CircularRevealFrameLayout: CircularRevealFrameLayout(android.content.Context,android.util.AttributeSet) -cyanogenmod.app.CMTelephonyManager -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_enabled -androidx.hilt.lifecycle.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: AccuDailyResult$DailyForecasts$AirAndPollen() -androidx.lifecycle.EmptyActivityLifecycleCallbacks: EmptyActivityLifecycleCallbacks() -com.google.android.material.R$color: int material_timepicker_button_stroke -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void dispose() -wangdaye.com.geometricweather.R$string: int real_feel_shade_temperature -cyanogenmod.app.IPartnerInterface$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String direction -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_removeCustomTileFromListener -androidx.constraintlayout.helper.widget.Flow: void setHorizontalStyle(int) -com.google.android.material.R$animator: int design_appbar_state_list_animator -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedWritableDb(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: double Value -com.google.android.material.R$styleable: int MaterialButton_android_background -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onLockscreenSlideOffsetChanged(float) -james.adaptiveicon.R$drawable: int abc_btn_colored_material -androidx.preference.R$styleable: int[] MultiSelectListPreference -android.didikee.donate.R$style: int Widget_AppCompat_RatingBar -com.google.android.material.R$id: int material_timepicker_container -com.google.android.material.R$layout: int mtrl_alert_select_dialog_item -okhttp3.logging.LoggingEventListener$Factory: LoggingEventListener$Factory(okhttp3.logging.HttpLoggingInterceptor$Logger) -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColorLink -wangdaye.com.geometricweather.R$id: int dragEnd -androidx.activity.R$id: int accessibility_custom_action_21 -cyanogenmod.app.CMContextConstants: java.lang.String CM_THEME_SERVICE -androidx.appcompat.widget.Toolbar: int getTitleMarginBottom() -wangdaye.com.geometricweather.R$color: int colorTextGrey -io.reactivex.Observable: io.reactivex.Observable concatMapSingle(io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ProgressBar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setPubTime(java.lang.String) -wangdaye.com.geometricweather.R$string: int abc_menu_space_shortcut_label -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_weightSum -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_holo_dark -com.google.android.material.R$styleable: int Layout_layout_constraintBottom_toTopOf -okhttp3.internal.http2.Http2Connection: long bytesLeftInWriteWindow -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setAddress_detail(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean) -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -androidx.lifecycle.ProcessLifecycleOwner: void activityStopped() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixTextColor -wangdaye.com.geometricweather.R$style: int PreferenceSummaryTextStyle -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer dbz -androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModel get(java.lang.String,java.lang.Class) -wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndContainer -james.adaptiveicon.R$styleable: int[] ListPopupWindow -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_steps -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onAttach_0 -com.google.android.material.appbar.AppBarLayout$BaseBehavior: AppBarLayout$BaseBehavior() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary TemperatureSummary -androidx.appcompat.R$color: int abc_primary_text_material_light -androidx.viewpager.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.R$drawable: int notif_temp_108 -com.turingtechnologies.materialscrollbar.R$attr: int divider -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_Underlined -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: MfRainResult() +com.google.android.material.R$attr: int showMotionSpec +okhttp3.RealCall: void enqueue(okhttp3.Callback) +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getCurrentDisplayMode +wangdaye.com.geometricweather.R$attr: int arrowHeadLength +james.adaptiveicon.R$string: int abc_activitychooserview_choose_application +androidx.cardview.R$color: int cardview_light_background +com.google.android.material.R$layout: int material_time_input +androidx.viewpager2.R$styleable: int ColorStateListItem_android_color +com.jaredrummler.android.colorpicker.R$style: int Preference_PreferenceScreen +com.google.android.material.R$color: int mtrl_chip_close_icon_tint +androidx.constraintlayout.widget.R$attr: int buttonBarNegativeButtonStyle +okhttp3.ResponseBody: java.io.Reader reader +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory sInstance +wangdaye.com.geometricweather.R$id: int mtrl_calendar_main_pane +androidx.dynamicanimation.R$id: int action_text +com.google.android.material.R$attr: int spinnerStyle +wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_dark +okio.SegmentedByteString: byte[][] segments +androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context) +com.google.android.material.R$styleable: int SwitchCompat_switchMinWidth +james.adaptiveicon.R$attr: int queryHint +androidx.cardview.R$style: int CardView_Light +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconEndPadding +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Snackbar +com.google.android.material.circularreveal.CircularRevealGridLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.ICMHardwareService getService() +androidx.appcompat.R$attr: int drawableStartCompat +com.google.android.material.R$attr: int yearStyle +wangdaye.com.geometricweather.R$id: int search_mag_icon +com.google.android.material.R$attr: int closeIconEndPadding +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_CBC_SHA +androidx.core.R$id: int accessibility_custom_action_3 +com.google.android.material.R$attr: int mock_label +wangdaye.com.geometricweather.db.entities.WeatherEntity: void __setDaoSession(wangdaye.com.geometricweather.db.entities.DaoSession) +android.support.v4.os.IResultReceiver$Stub$Proxy: android.support.v4.os.IResultReceiver sDefaultImpl +androidx.preference.R$styleable: int ListPreference_android_entryValues okhttp3.internal.http2.Http2Codec$StreamFinishingSource: long read(okio.Buffer,long) -cyanogenmod.weather.CMWeatherManager: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart -org.greenrobot.greendao.AbstractDaoSession: void deleteAll(java.lang.Class) -james.adaptiveicon.R$dimen: int abc_text_size_display_3_material -androidx.constraintlayout.widget.R$color: int button_material_light -com.google.android.material.R$string: int path_password_eye_mask_visible -androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_COLOR -androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -com.jaredrummler.android.colorpicker.R$string: int abc_menu_delete_shortcut_label -com.google.android.material.R$dimen: int material_clock_display_padding -wangdaye.com.geometricweather.R$styleable: int Preference_android_selectable -com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusBottomStart -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceScreenStyle -androidx.viewpager.R$id: int notification_main_column_container -com.google.gson.stream.JsonReader: int PEEKED_END_ARRAY -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone TimeZone -androidx.loader.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String getUpdateIntervalName(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalAlign -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedWidthMinor -wangdaye.com.geometricweather.R$string: int feedback_readd_location_after_changing_source -okhttp3.internal.http2.Hpack$Reader: java.util.List headerList -com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_material -com.google.android.material.R$string: int search_menu_title -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY -okhttp3.internal.connection.RealConnection: boolean noNewStreams -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$id: int large -cyanogenmod.providers.CMSettings$System: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: ScheduledDirectPeriodicTask(java.lang.Runnable) -com.google.android.material.R$id: int parallax -android.didikee.donate.R$attr: int backgroundSplit -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_overlay -com.xw.repo.bubbleseekbar.R$color: int dim_foreground_material_dark -io.reactivex.Observable: io.reactivex.Observable timeInterval(io.reactivex.Scheduler) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: int UnitType -com.xw.repo.bubbleseekbar.R$style: int Base_V22_Theme_AppCompat_Light -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver -cyanogenmod.media.MediaRecorder: MediaRecorder() -okhttp3.internal.http.RequestLine -com.jaredrummler.android.colorpicker.R$attr: int seekBarIncrement -com.google.android.material.R$attr: int textColorSearchUrl -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: ObservableSubscribeOn$SubscribeOnObserver(io.reactivex.Observer) -okio.DeflaterSink: okio.BufferedSink sink -androidx.core.widget.ContentLoadingProgressBar: ContentLoadingProgressBar(android.content.Context,android.util.AttributeSet) -androidx.transition.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.R$attr: int recyclerViewStyle -okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: Http2Connection$ReaderRunnable$3(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[]) -com.google.android.material.datepicker.PickerFragment -android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_DropDownUp -android.didikee.donate.R$attr: int alertDialogStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlActivated -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_0 -wangdaye.com.geometricweather.R$string: int date_format_short -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCity() -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitle -androidx.appcompat.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -cyanogenmod.weather.CMWeatherManager -james.adaptiveicon.R$attr: int font -cyanogenmod.providers.CMSettings$NameValueCache -com.bumptech.glide.integration.okhttp.R$id: int top -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_light -com.xw.repo.bubbleseekbar.R$attr: int colorControlNormal -androidx.loader.R$layout: R$layout() -androidx.preference.R$color: int switch_thumb_material_light -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWeekWidgetConfigActivity: Hilt_DayWeekWidgetConfigActivity() -androidx.lifecycle.SavedStateHandle -androidx.customview.R$id: R$id() -okio.Okio$1: Okio$1(okio.Timeout,java.io.OutputStream) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: org.reactivestreams.Subscriber downstream -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: java.util.List getBrands() -okhttp3.internal.connection.StreamAllocation: okhttp3.Call call -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_scaleX -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -androidx.constraintlayout.widget.R$styleable: int[] MenuGroup -android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -android.didikee.donate.R$layout: int abc_activity_chooser_view_list_item -androidx.transition.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentX -wangdaye.com.geometricweather.R$color: int material_blue_grey_950 -wangdaye.com.geometricweather.R$styleable: int SearchView_android_inputType -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixTextColor -com.turingtechnologies.materialscrollbar.R$attr: int windowActionBar -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain rain -com.jaredrummler.android.colorpicker.R$id: int image -androidx.transition.R$id: int line3 -com.google.android.material.R$dimen: int clock_face_margin_start -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List maxCountItems -wangdaye.com.geometricweather.R$attr: int tabStyle -wangdaye.com.geometricweather.R$id: int widget_week_week_5 -wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_light -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog -android.didikee.donate.R$string: int abc_searchview_description_search -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids -androidx.constraintlayout.widget.R$attr: int customIntegerValue -cyanogenmod.weatherservice.ServiceRequest: void cancel() -com.google.gson.stream.JsonWriter: java.lang.String deferredName -cyanogenmod.hardware.CMHardwareManager: java.lang.String getLtoSource() -androidx.core.R$style: R$style() -com.google.android.material.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache -wangdaye.com.geometricweather.R$attr: int autoSizeStepGranularity -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: int nameId -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontWeight -androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontWeight -androidx.appcompat.R$attr: int listDividerAlertDialog -androidx.constraintlayout.widget.R$layout: int support_simple_spinner_dropdown_item -androidx.viewpager.widget.ViewPager: int getClientWidth() -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeBackground -okhttp3.internal.http2.Huffman$Node -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: int phenomenonId -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Info -james.adaptiveicon.R$styleable: int ActionBar_logo -okhttp3.TlsVersion: java.lang.String javaName() -okhttp3.CacheControl: boolean isPrivate() -wangdaye.com.geometricweather.R$styleable: int ActionBar_progressBarPadding -androidx.appcompat.R$styleable: int SearchView_android_focusable -retrofit2.RequestFactory$Builder: java.util.Set relativeUrlParamNames -androidx.appcompat.R$id: int none -com.google.android.material.textfield.TextInputLayout: void setHintTextAppearance(int) -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_day_abbr -cyanogenmod.power.IPerformanceManager$Stub: cyanogenmod.power.IPerformanceManager asInterface(android.os.IBinder) -okhttp3.OkHttpClient: okhttp3.Authenticator authenticator() -androidx.appcompat.resources.R$dimen: int notification_large_icon_width -android.didikee.donate.R$dimen: int abc_control_corner_material -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void ackSettings() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getUvLevel() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void cancel() -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.appcompat.R$attr: int titleMarginStart -wangdaye.com.geometricweather.R$attr: int touchAnchorSide -cyanogenmod.app.ThemeComponent: ThemeComponent(java.lang.String,int,int) -androidx.constraintlayout.widget.R$styleable: int ActionBar_progressBarStyle -androidx.preference.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -androidx.preference.R$styleable: int Spinner_android_dropDownWidth -com.google.android.material.R$style: int Platform_V25_AppCompat_Light -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -androidx.viewpager2.R$styleable -okhttp3.internal.http2.Huffman: int[] CODES -retrofit2.ParameterHandler$Tag: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.R$string: int settings_title_card_order -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_sun -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchPadding -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec MODERN_TLS -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderFetchStrategy -okhttp3.internal.http2.Http2Codec: okhttp3.internal.http2.Http2Connection connection -com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemTextColor() -androidx.drawerlayout.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$attr: int logo -wangdaye.com.geometricweather.R$string: int sensible_temp -androidx.preference.R$color: int abc_tint_edittext -wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_android_foreground -wangdaye.com.geometricweather.R$style: int TestStyleWithLineHeightAppearance -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Header$Listener headersListener -androidx.recyclerview.widget.RecyclerView: void setLayoutTransition(android.animation.LayoutTransition) -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_title -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event INITIALIZE -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: javax.net.ssl.X509TrustManager trustManager -okhttp3.internal.Internal: void initializeInstanceForTests() -cyanogenmod.app.IPartnerInterface: java.lang.String getCurrentHotwordPackageName() -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: int TRANSACTION_onLiveLockScreenChanged_0 -androidx.appcompat.R$drawable: int tooltip_frame_light -androidx.constraintlayout.widget.R$color: int bright_foreground_disabled_material_dark -androidx.appcompat.R$style: int Base_Widget_AppCompat_ImageButton -com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarStyle -cyanogenmod.app.PartnerInterface: java.lang.String MODIFY_SOUND_SETTINGS_PERMISSION -androidx.appcompat.R$attr: int popupWindowStyle -retrofit2.Retrofit: okhttp3.Call$Factory callFactory -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -james.adaptiveicon.R$attr: int splitTrack -com.google.android.material.R$styleable: int ConstraintSet_transitionEasing -androidx.preference.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.R$string: int key_notification -wangdaye.com.geometricweather.R$dimen: int tooltip_vertical_padding -com.xw.repo.bubbleseekbar.R$id: int info -androidx.constraintlayout.widget.R$drawable: int abc_dialog_material_background -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String unit -com.google.android.material.R$styleable: int Spinner_android_dropDownWidth -wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_grey -androidx.preference.R$drawable: int abc_scrubber_primary_mtrl_alpha -androidx.appcompat.R$color: int accent_material_dark -wangdaye.com.geometricweather.R$id: int notification_big_week_4 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: double Value -wangdaye.com.geometricweather.R$id: int container -wangdaye.com.geometricweather.R$drawable: int weather_clear_day -cyanogenmod.weather.RequestInfo: java.lang.String access$802(cyanogenmod.weather.RequestInfo,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Preference_defaultValue -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_21 -cyanogenmod.providers.CMSettings$System$3 -wangdaye.com.geometricweather.db.entities.LocationEntity: void setDistrict(java.lang.String) -wangdaye.com.geometricweather.R$string: int settings_title_click_widget_to_refresh -androidx.dynamicanimation.R$layout: int notification_template_icon_group -androidx.constraintlayout.widget.R$styleable: int View_paddingStart -androidx.drawerlayout.R$id: int time -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListPopupWindow -okhttp3.internal.ws.RealWebSocket: void onReadPing(okio.ByteString) -wangdaye.com.geometricweather.R$style: int widget_text_clock -wangdaye.com.geometricweather.R$attr: int moveWhenScrollAtTop -okio.RealBufferedSink: okio.BufferedSink writeUtf8(java.lang.String) -androidx.hilt.lifecycle.R$integer: int status_bar_notification_info_maxnum -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_Solid -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_fontFamily -androidx.fragment.R$id: int forever -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setAlpnProtocols -wangdaye.com.geometricweather.R$attr: int cardElevation -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean isDisposed() -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: boolean hasError() -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HistoryEntityDao historyEntityDao -okhttp3.internal.http2.Http2Codec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) -cyanogenmod.app.suggest.IAppSuggestProvider -com.bumptech.glide.load.HttpException: HttpException(int) -androidx.customview.R$styleable: int GradientColor_android_startColor -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void setCancellable(io.reactivex.functions.Cancellable) -com.google.android.material.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitationProbability(java.lang.Float) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixTextColor -okhttp3.internal.platform.Jdk9Platform -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode valueOf(java.lang.String) -com.google.android.material.R$dimen: int design_bottom_navigation_text_size -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: void setFrom(java.util.Date) -android.didikee.donate.R$style: int Base_AlertDialog_AppCompat -wangdaye.com.geometricweather.settings.activities.CardDisplayManageActivity -james.adaptiveicon.R$attr: int goIcon -androidx.constraintlayout.widget.R$color: int abc_tint_edittext -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getRainPrecipitationProbability() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorPrimaryDark -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemHorizontalTranslationEnabled(boolean) -androidx.hilt.R$styleable: int GradientColor_android_tileMode -androidx.core.widget.ContentLoadingProgressBar: ContentLoadingProgressBar(android.content.Context) -androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_chainStyle -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderCerts -androidx.preference.MultiSelectListPreferenceDialogFragmentCompat -com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_id -retrofit2.ParameterHandler$QueryName: ParameterHandler$QueryName(retrofit2.Converter,boolean) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean disposed -com.google.android.material.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.R$drawable: int material_ic_keyboard_arrow_next_black_24dp -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onComplete() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ImageButton -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontStyle -okio.ByteString: okio.ByteString of(byte[]) -okhttp3.internal.http2.Http2Connection: void writeData(int,boolean,okio.Buffer,long) -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSearchResultSubtitle -okhttp3.internal.ws.RealWebSocket$Close: int code -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconVisible -com.google.android.material.R$drawable: int abc_action_bar_item_background_material -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Switch -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -com.google.android.material.R$attr: int badgeGravity -wangdaye.com.geometricweather.R$array: int pressure_unit_values -android.didikee.donate.R$style: int TextAppearance_AppCompat_Headline -com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_track_material -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pm10 -androidx.loader.R$id: int notification_main_column -com.google.gson.stream.JsonReader: void skipUnquotedValue() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void slideLockscreenIn() -com.xw.repo.bubbleseekbar.R$attr: int buttonTint -com.xw.repo.bubbleseekbar.R$color: int material_grey_800 -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void clear() -wangdaye.com.geometricweather.R$styleable: int Slider_trackColorInactive -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button -androidx.constraintlayout.widget.R$attr: int paddingEnd -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -wangdaye.com.geometricweather.R$style: int Preference_SeekBarPreference -cyanogenmod.externalviews.IExternalViewProvider$Stub: IExternalViewProvider$Stub() -james.adaptiveicon.R$dimen: int abc_dialog_min_width_major -com.jaredrummler.android.colorpicker.R$styleable: int Preference_icon +androidx.preference.R$attr: int buttonBarNeutralButtonStyle +androidx.preference.R$styleable: int AppCompatSeekBar_android_thumb +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node find(java.lang.Object,boolean) +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSwoopDuration +cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,cyanogenmod.app.CustomTile,android.os.UserHandle,long) +com.google.android.material.R$id: int mtrl_calendar_selection_frame +androidx.preference.R$styleable: int ActionBar_homeLayout +cyanogenmod.themes.ThemeChangeRequest: long getWallpaperId() +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onNext(java.lang.Object) +james.adaptiveicon.R$string: int abc_searchview_description_submit +com.google.android.material.R$drawable: int design_password_eye +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_min_width_minor +androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogStyle +wangdaye.com.geometricweather.R$id: int CTRL +com.google.android.material.R$styleable: int ColorStateListItem_android_alpha +cyanogenmod.providers.CMSettings$System: java.lang.String CALL_RECORDING_FORMAT +androidx.core.R$dimen +wangdaye.com.geometricweather.R$layout: int widget_clock_day_mini +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void run() +cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri CONTENT_URI +com.google.android.material.R$drawable: int abc_btn_check_material +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_textAppearance +androidx.preference.R$styleable: int AlertDialog_listItemLayout +androidx.preference.R$color: int primary_text_disabled_material_dark +okhttp3.Request$Builder: java.util.Map tags +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitationProbability +android.didikee.donate.R$id: int search_src_text +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_typeface +androidx.vectordrawable.R$drawable: int notification_bg_normal +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_height +com.google.android.material.R$styleable: int ActionBar_backgroundSplit +androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline6 +com.google.android.material.R$style: int TextAppearance_AppCompat_Medium +androidx.appcompat.R$styleable: int GradientColor_android_gradientRadius +androidx.vectordrawable.animated.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_transitionEasing +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: long serialVersionUID +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability +wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_title +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.functions.Function valueSelector +com.google.android.material.R$styleable: int BottomNavigationView_menu +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTextView +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int drawableLeftCompat +com.google.android.material.imageview.ShapeableImageView: void setStrokeColor(android.content.res.ColorStateList) +okhttp3.internal.http2.Http2: byte TYPE_GOAWAY +io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$layout: int design_bottom_sheet_dialog +androidx.constraintlayout.utils.widget.ImageFilterView: float getCrossfade() +wangdaye.com.geometricweather.R$drawable: int weather_fog +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Light +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: cyanogenmod.externalviews.IExternalViewProviderFactory asInterface(android.os.IBinder) +okhttp3.logging.LoggingEventListener: LoggingEventListener(okhttp3.logging.HttpLoggingInterceptor$Logger) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar +androidx.lifecycle.LifecycleRegistry: void backwardPass(androidx.lifecycle.LifecycleOwner) +wangdaye.com.geometricweather.R$string: int exposed_dropdown_menu_content_description +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +com.jaredrummler.android.colorpicker.R$attr: int background +android.didikee.donate.R$id: int titleDividerNoCustom +androidx.constraintlayout.widget.R$attr: int switchStyle +com.google.android.material.R$attr: int colorOnError +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endX +io.reactivex.Observable: io.reactivex.Observable scan(java.lang.Object,io.reactivex.functions.BiFunction) +androidx.recyclerview.widget.LinearLayoutManager$SavedState +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: CaiYunMainlyResult$CurrentBean() +wangdaye.com.geometricweather.R$style: int week_weather_week_info +com.google.android.material.R$styleable: int[] Chip +retrofit2.ParameterHandler +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void dispose() +androidx.preference.R$dimen: int preference_seekbar_padding_vertical +cyanogenmod.app.suggest.AppSuggestManager: boolean handles(android.content.Intent) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.ChineseCityEntity) +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorColor +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String escapedAV() +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTint +james.adaptiveicon.R$styleable: int LinearLayoutCompat_divider +com.turingtechnologies.materialscrollbar.TouchScrollBar: float getIndicatorOffset() +wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_appStore +com.google.android.material.slider.BaseSlider: void setThumbTintList(android.content.res.ColorStateList) +okhttp3.internal.http2.PushObserver$1: boolean onRequest(int,java.util.List) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin +androidx.appcompat.resources.R$dimen: int notification_top_pad_large_text +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FREEZING_DRIZZLE +androidx.preference.R$styleable: int Toolbar_collapseIcon +com.google.android.material.R$style: int TextAppearance_Design_Error +wangdaye.com.geometricweather.R$attr: int cpv_dialogTitle +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function6) +org.greenrobot.greendao.database.DatabaseOpenHelper: void onUpgrade(android.database.sqlite.SQLiteDatabase,int,int) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +androidx.lifecycle.extensions.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setDistrict(java.lang.String) +okhttp3.logging.LoggingEventListener$Factory: LoggingEventListener$Factory(okhttp3.logging.HttpLoggingInterceptor$Logger) +com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_horizontal_material io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: ObservableRetryWhen$RepeatWhenObserver(io.reactivex.Observer,io.reactivex.subjects.Subject,io.reactivex.ObservableSource) -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver) -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.internal.fuseable.SimpleQueue queue -androidx.hilt.lifecycle.R$id -okio.Buffer$2: java.lang.String toString() -wangdaye.com.geometricweather.R$string: int bottomsheet_action_expand_halfway -androidx.hilt.work.R$drawable: int notification_bg_low_normal -com.google.android.material.appbar.CollapsingToolbarLayout: void setVisibility(int) -cyanogenmod.app.CustomTile$RemoteExpandedStyle: void setRemoteViews(android.widget.RemoteViews) -com.xw.repo.bubbleseekbar.R$attr: int buttonIconDimen -androidx.constraintlayout.widget.R$id: int SHOW_PROGRESS -okio.RealBufferedSink: java.lang.String toString() -okio.BufferedSource: byte[] readByteArray() -com.google.android.material.R$styleable: int AppCompatTheme_dividerVertical -com.jaredrummler.android.colorpicker.R$drawable: int abc_vector_test -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -com.turingtechnologies.materialscrollbar.R$id: int customPanel -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeErrorColor(android.content.res.ColorStateList) -okio.BufferedSource: java.lang.String readUtf8(long) -androidx.preference.R$styleable: int MenuItem_android_title -com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context) -com.bumptech.glide.R$dimen: int compat_control_corner_material -james.adaptiveicon.R$attr: int numericModifiers -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA -androidx.appcompat.R$attr: int textAllCaps -cyanogenmod.externalviews.KeyguardExternalView$2: void setInteractivity(boolean) -android.didikee.donate.R$drawable: int abc_ic_arrow_drop_right_black_24dp -com.bumptech.glide.module.AppGlideModule: AppGlideModule() -james.adaptiveicon.R$styleable: int[] DrawerArrowToggle -wangdaye.com.geometricweather.R$integer: int cpv_default_anim_swoop_duration -wangdaye.com.geometricweather.R$color: int mtrl_tabs_ripple_color -androidx.viewpager2.R$dimen: int notification_content_margin_start -androidx.core.R$dimen: int compat_button_padding_horizontal_material -androidx.hilt.R$drawable: int notification_tile_bg -okhttp3.Response: long sentRequestAtMillis() -com.google.gson.stream.JsonWriter: void setSerializeNulls(boolean) -android.didikee.donate.R$styleable: int[] AppCompatSeekBar -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_scaleX -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar_Indicator -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: int TRANSACTION_setServiceRequestState -androidx.core.R$styleable: int GradientColor_android_type -com.google.android.material.behavior.SwipeDismissBehavior -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_gravity -cyanogenmod.app.ILiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() -cyanogenmod.externalviews.ExternalViewProviderService$Provider: int DEFAULT_WINDOW_FLAGS -okhttp3.internal.connection.RealConnection$1 -com.google.android.material.R$id: int textinput_suffix_text -wangdaye.com.geometricweather.R$id: int left -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderFetchTimeout -james.adaptiveicon.R$color: int abc_secondary_text_material_light -com.jaredrummler.android.colorpicker.R$id: int action_bar_title -wangdaye.com.geometricweather.R$styleable: int[] Transform -wangdaye.com.geometricweather.R$attr: int paddingLeftSystemWindowInsets -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerComplete() -retrofit2.HttpServiceMethod: HttpServiceMethod(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog -androidx.preference.R$color: int material_grey_600 -com.turingtechnologies.materialscrollbar.R$styleable: int[] SwitchCompat -androidx.lifecycle.LiveDataReactiveStreams: androidx.lifecycle.LiveData fromPublisher(org.reactivestreams.Publisher) -androidx.appcompat.R$color: int highlighted_text_material_light -android.didikee.donate.R$styleable: int MenuView_android_horizontalDivider -com.google.android.material.R$attr: int behavior_autoHide -androidx.constraintlayout.widget.R$attr: int textAllCaps -androidx.lifecycle.Lifecycling: java.util.Map sCallbackCache -androidx.preference.R$drawable: int abc_list_divider_mtrl_alpha -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_margin -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_24 -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -cyanogenmod.hardware.CMHardwareManager: android.content.Context mContext -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: retrofit2.Call $this_await$inlined -wangdaye.com.geometricweather.db.entities.HourlyEntity: HourlyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginEnd -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Title -okhttp3.HttpUrl$Builder: java.lang.String encodedPassword -okhttp3.Cache: int writeAbortCount() -com.google.android.material.R$styleable: int ActionBar_progressBarStyle -androidx.preference.R$dimen: int highlight_alpha_material_light -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_3 -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_BACKGROUND +com.google.android.material.R$attr: int buttonBarPositiveButtonStyle +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription this$0 +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customBoolean +wangdaye.com.geometricweather.R$style: int CardView_Dark +androidx.viewpager2.R$styleable: int GradientColor_android_endY +androidx.preference.R$style: int ThemeOverlay_AppCompat_Dark +androidx.dynamicanimation.R$id: int tag_transition_group +com.google.android.material.R$attr: int dialogCornerRadius +androidx.constraintlayout.widget.R$layout: int custom_dialog +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +android.support.v4.os.ResultReceiver: android.support.v4.os.IResultReceiver mReceiver +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetLeft +okhttp3.logging.LoggingEventListener: void responseBodyEnd(okhttp3.Call,long) +okhttp3.Handshake: int hashCode() +cyanogenmod.app.suggest.AppSuggestManager: java.lang.String TAG +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer getDbz() +com.google.android.material.R$styleable: int Chip_textStartPadding +wangdaye.com.geometricweather.R$styleable: int ActionBar_subtitleTextStyle +com.bumptech.glide.integration.okhttp.R$drawable: int notification_template_icon_low_bg +okhttp3.EventListener: void responseHeadersEnd(okhttp3.Call,okhttp3.Response) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: boolean isDisposed() +androidx.hilt.work.R$styleable: int ColorStateListItem_alpha +androidx.appcompat.R$dimen: int abc_cascading_menus_min_smallest_width +okhttp3.internal.http.RealInterceptorChain: okhttp3.Call call() +androidx.hilt.R$styleable: int FontFamily_fontProviderPackage +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy REPLACE +androidx.preference.R$color: int highlighted_text_material_dark +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Date +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_scaleX +okhttp3.Dispatcher: int runningCallsCount() +com.google.android.material.R$attr: int tabPaddingBottom +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String timezone +retrofit2.OkHttpCall$NoContentResponseBody: okhttp3.MediaType contentType +android.didikee.donate.R$drawable: int abc_textfield_default_mtrl_alpha +james.adaptiveicon.R$color: int abc_hint_foreground_material_dark +wangdaye.com.geometricweather.R$string: int abc_shareactionprovider_share_with_application +james.adaptiveicon.R$layout: int abc_search_view +androidx.recyclerview.widget.RecyclerView: void setLayoutTransition(android.animation.LayoutTransition) +com.xw.repo.bubbleseekbar.R$attr: int bsb_is_float_type +android.didikee.donate.R$drawable: int abc_text_select_handle_right_mtrl_dark +androidx.appcompat.widget.AppCompatButton: int getAutoSizeMinTextSize() +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout +androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setIndices(java.util.List) +io.reactivex.exceptions.UndeliverableException: UndeliverableException(java.lang.Throwable) +org.greenrobot.greendao.AbstractDao: void delete(java.lang.Object) +com.github.rahatarmanahmed.cpv.BuildConfig: BuildConfig() +com.github.rahatarmanahmed.cpv.CircularProgressView +com.google.android.material.R$attr: int itemShapeInsetStart +androidx.appcompat.widget.Toolbar$SavedState: android.os.Parcelable$Creator CREATOR +retrofit2.BuiltInConverters$StreamingResponseBodyConverter +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_radius_on_dragging +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float visibility +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction Direction +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor valueOf(java.lang.String) +androidx.viewpager2.R$id: int tag_screen_reader_focusable +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.functions.Function) +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat +cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mDeleteIntent +wangdaye.com.geometricweather.R$color: int material_blue_grey_950 +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ButtonBar +retrofit2.RequestBuilder: void addPathParam(java.lang.String,java.lang.String,boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: int UnitType +wangdaye.com.geometricweather.R$styleable: int LiveLockScreen_type +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_2 +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_ttcIndex +androidx.vectordrawable.animated.R$layout: int notification_template_part_time +com.google.android.material.R$styleable: int ActionBar_contentInsetStart +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.R$attr: int dialogTitle +androidx.hilt.R$styleable: int GradientColor_android_startX +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalAlign +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_holo_light +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: java.lang.Object value +androidx.constraintlayout.widget.R$anim: int abc_tooltip_exit +cyanogenmod.themes.IThemeService$Stub$Proxy: IThemeService$Stub$Proxy(android.os.IBinder) +com.bumptech.glide.R$layout: R$layout() +com.bumptech.glide.R$id: int right_side androidx.constraintlayout.widget.R$id: int accessibility_custom_action_4 -com.jaredrummler.android.colorpicker.R$drawable: int abc_control_background_material -androidx.customview.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.R$drawable: int weather_thunder_2 -okhttp3.OkHttpClient$Builder: int writeTimeout -com.google.android.material.R$color: int dim_foreground_material_dark -wangdaye.com.geometricweather.R$layout: int material_timepicker -okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache$Snapshot snapshot() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.HourlyEntity,long) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -androidx.appcompat.R$id: int line1 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_body_2_material -androidx.work.R$style: int TextAppearance_Compat_Notification_Title -androidx.vectordrawable.animated.R$styleable: int GradientColorItem_android_offset -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display4 -com.xw.repo.bubbleseekbar.R$id: int title +james.adaptiveicon.R$styleable: int TextAppearance_android_textSize +com.jaredrummler.android.colorpicker.R$attr: int isLightTheme +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf +com.jaredrummler.android.colorpicker.R$attr: int cpv_previewSize +com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_inset_material +wangdaye.com.geometricweather.R$dimen: int cardview_default_elevation +com.google.android.material.R$styleable: int[] Toolbar +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: java.lang.String getDarkModeName(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int Constraint_barrierAllowsGoneWidgets +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabView +androidx.swiperefreshlayout.R$dimen: int notification_top_pad +com.google.android.material.R$styleable: int[] RadialViewGroup +com.xw.repo.bubbleseekbar.R$integer: int abc_config_activityShortDur +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias +android.didikee.donate.R$styleable: int SearchView_android_imeOptions +androidx.hilt.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginRight +com.google.android.material.R$attr: int layout_behavior +wangdaye.com.geometricweather.R$styleable: int[] Constraint +wangdaye.com.geometricweather.R$attr: int statusBarScrim +io.reactivex.observers.DisposableObserver: void dispose() +androidx.preference.R$styleable: int SwitchCompat_trackTint +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_defaultQueryHint +com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_top_mtrl_alpha +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_89 +io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function,io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$color: int cardview_shadow_end_color +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.LocationEntityDao locationEntityDao +wangdaye.com.geometricweather.R$layout: int widget_clock_day_symmetry +okhttp3.internal.http2.Http2Reader$ContinuationSource: int length +retrofit2.Platform: java.util.List defaultConverterFactories() +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_navigationIcon +android.didikee.donate.R$id: int action_bar_subtitle +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void cleanup() +wangdaye.com.geometricweather.R$drawable: int notif_temp_68 +androidx.preference.R$drawable: int abc_ratingbar_small_material +cyanogenmod.app.ProfileGroup: void getXmlString(java.lang.StringBuilder,android.content.Context) +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: LiveDataReactiveStreams$PublisherLiveData(org.reactivestreams.Publisher) +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State valueOf(java.lang.String) +wangdaye.com.geometricweather.R$xml: int network_security_config +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Request followUpRequest(okhttp3.Response,okhttp3.Route) +wangdaye.com.geometricweather.R$attr: int actionModeCloseButtonStyle +com.google.android.material.circularreveal.cardview.CircularRevealCardView: int getCircularRevealScrimColor() +io.reactivex.internal.observers.BlockingObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$styleable: int Preference_enabled +androidx.constraintlayout.widget.ConstraintLayout: void setMinHeight(int) +android.didikee.donate.R$styleable: int Toolbar_contentInsetRight +androidx.constraintlayout.widget.R$style: int Base_V22_Theme_AppCompat_Light +com.google.android.material.R$styleable: int StateListDrawable_android_variablePadding +com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding +okhttp3.OkHttpClient: java.util.List protocols() +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderCerts +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.disposables.Disposable upstream +androidx.appcompat.R$attr: int menu +io.reactivex.Observable: io.reactivex.Maybe firstElement() +androidx.recyclerview.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.appcompat.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeDegreeDayTemperature +com.jaredrummler.android.colorpicker.R$color: int abc_color_highlight_material +cyanogenmod.app.Profile: void writeToParcel(android.os.Parcel,int) +okio.RealBufferedSink: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) +wangdaye.com.geometricweather.R$layout: int preference_list_fragment +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatSeekBar +wangdaye.com.geometricweather.R$drawable: int weather_sleet_pixel +org.greenrobot.greendao.database.DatabaseOpenHelper: void setLoadSQLCipherNativeLibs(boolean) +com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableItem +wangdaye.com.geometricweather.settings.dialogs.AdaptiveIconDialog +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: void onProgress(int) +wangdaye.com.geometricweather.R$id: int parentPanel +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void run() +okhttp3.OkHttpClient: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner +android.didikee.donate.R$attr: int contentInsetStartWithNavigation +com.turingtechnologies.materialscrollbar.DragScrollBar: float getIndicatorOffset() +wangdaye.com.geometricweather.R$integer: int cpv_default_anim_steps +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconContentDescription +com.google.android.material.R$dimen: int mtrl_extended_fab_end_padding_icon +okhttp3.internal.connection.RouteSelector: okhttp3.Call call +wangdaye.com.geometricweather.R$id: int material_clock_period_am_button +wangdaye.com.geometricweather.R$drawable: int notif_temp_126 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dropDownListViewStyle +androidx.lifecycle.extensions.R$id: int icon_group +androidx.preference.R$attr: int fastScrollHorizontalThumbDrawable +okio.Buffer: okio.BufferedSink writeLongLe(long) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldIndex +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setIcePrecipitationProbability(java.lang.Float) +wangdaye.com.geometricweather.R$drawable: int notif_temp_79 +io.reactivex.Observable: io.reactivex.Observable timestamp(java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: AccuCurrentResult$Past24HourTemperatureDeparture$Metric() +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.internal.disposables.SequentialDisposable sd +android.didikee.donate.R$styleable: int TextAppearance_android_textStyle +wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeContainer +androidx.loader.R$styleable: int FontFamilyFont_fontVariationSettings +io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource) +androidx.recyclerview.R$layout: int notification_action_tombstone +androidx.hilt.lifecycle.R$drawable: int notification_bg +com.google.android.material.R$anim: int abc_shrink_fade_out_from_bottom +okhttp3.Cache: int ENTRY_METADATA +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setStreet_number(java.lang.String) +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +android.didikee.donate.R$styleable: int SwitchCompat_thumbTextPadding +androidx.appcompat.widget.ActionBarContextView: void setTitleOptional(boolean) +androidx.preference.R$style: int Base_Widget_AppCompat_Button_Borderless +com.turingtechnologies.materialscrollbar.R$color: int mtrl_bottom_nav_colored_item_tint +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetEndWithActions +androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityPaused(android.app.Activity) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_NOTIFICATIONS +com.google.android.material.R$styleable: int[] KeyTrigger +androidx.appcompat.R$styleable: int[] FontFamilyFont +androidx.preference.R$drawable: int abc_list_selector_holo_dark +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$attr: int voiceIcon +androidx.appcompat.R$styleable: int AppCompatTheme_imageButtonStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarItemBackground +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_pressed_holo_light +androidx.preference.R$style: int Preference_Information_Material +com.turingtechnologies.materialscrollbar.R$drawable: int avd_show_password +com.google.android.material.R$id: int scale +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noCache() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.R$attr: int endIconCheckable +android.didikee.donate.R$styleable: int SearchView_queryBackground +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitationProbability(java.lang.Float) +cyanogenmod.library.R$styleable +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language GREEK +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Small +androidx.preference.R$attr: int font +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex today +android.didikee.donate.R$attr: int titleTextAppearance +com.google.android.material.R$string: int character_counter_pattern +android.didikee.donate.R$id: int text2 +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver +com.google.android.material.R$attr: int navigationMode +com.bumptech.glide.integration.okhttp.R$drawable: int notify_panel_notification_icon_bg +androidx.preference.R$styleable: int ActionBar_progressBarStyle +io.reactivex.Observable: io.reactivex.Observable share() +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder addInterceptor(okhttp3.Interceptor) +androidx.dynamicanimation.R$id: int actions +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: MfForecastResult$Forecast$Snow() +com.turingtechnologies.materialscrollbar.R$attr: int state_above_anchor +cyanogenmod.externalviews.KeyguardExternalView$7 +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog +androidx.appcompat.R$id: int submenuarrow +cyanogenmod.weatherservice.WeatherProviderService$1: WeatherProviderService$1(cyanogenmod.weatherservice.WeatherProviderService) +wangdaye.com.geometricweather.common.basic.GeoDialog: GeoDialog() +okio.Buffer: long readHexadecimalUnsignedLong() +wangdaye.com.geometricweather.R$id: int icon_frame +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: Http2Connection$ReaderRunnable$1(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[],okhttp3.internal.http2.Http2Stream) +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Flush +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_behavior +com.google.android.material.R$attr: int tickColor +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year +androidx.lifecycle.LiveData: java.lang.Object mDataLock +wangdaye.com.geometricweather.R$attr: int prefixText +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_orientation +wangdaye.com.geometricweather.R$styleable: int Preference_android_title +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog +androidx.constraintlayout.widget.R$attr: int buttonBarPositiveButtonStyle +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +com.turingtechnologies.materialscrollbar.R$attr: int boxBackgroundMode +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf +com.google.android.material.R$attr: int titleEnabled +okhttp3.Cache$Entry: long sentRequestMillis +androidx.customview.R$styleable: R$styleable() +androidx.coordinatorlayout.R$id: int accessibility_custom_action_16 +okhttp3.internal.http2.Http2Connection$2: okhttp3.internal.http2.Http2Connection this$0 +android.didikee.donate.R$styleable: int AppCompatTheme_panelMenuListWidth +androidx.constraintlayout.widget.R$id: int parent +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Tooltip +com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_DropDownUp +com.xw.repo.bubbleseekbar.R$layout: int abc_popup_menu_item_layout +com.jaredrummler.android.colorpicker.R$id: int search_close_btn +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_RED_INDEX +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_borderlessButtonStyle +androidx.recyclerview.R$drawable: int notification_bg_normal_pressed +com.google.android.material.R$attr: int layout_scrollFlags +androidx.hilt.R$id: int async +androidx.preference.R$styleable: int AppCompatTheme_actionDropDownStyle +com.google.android.material.R$styleable: int Chip_android_textAppearance +com.google.android.material.R$styleable: int Layout_layout_constraintCircleRadius +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onScreenTurnedOn() +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_anim_duration +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onComplete() +com.xw.repo.bubbleseekbar.R$attr: int suggestionRowLayout +androidx.viewpager2.R$id: int tag_unhandled_key_event_manager +cyanogenmod.app.ThemeVersion: java.lang.String MIN_SUPPORTED_THEME_VERSION_FIELD_NAME +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_disabled_holo_light +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_Solid +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: boolean validate(java.lang.String) +androidx.preference.R$styleable: int AppCompatTextView_fontFamily +cyanogenmod.app.ProfileManager: void updateNotificationGroup(android.app.NotificationGroup) +wangdaye.com.geometricweather.R$styleable: int ArcProgress_max +com.xw.repo.bubbleseekbar.R$id: int src_in +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.IBinder onBind(android.content.Intent) +com.google.android.material.R$styleable: int[] NavigationView +com.xw.repo.bubbleseekbar.R$attr: int subtitle +james.adaptiveicon.R$layout: R$layout() +okhttp3.RequestBody +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActivityChooserView +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_elevation +io.reactivex.Observable: io.reactivex.Observable delay(io.reactivex.ObservableSource,io.reactivex.functions.Function) +okhttp3.Handshake: boolean equals(java.lang.Object) +com.google.android.material.R$id: int asConfigured +com.google.android.material.bottomappbar.BottomAppBar: com.google.android.material.bottomappbar.BottomAppBar$Behavior getBehavior() +android.didikee.donate.R$color: int secondary_text_disabled_material_light +com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingTop +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: java.lang.Integer direction +androidx.preference.R$styleable: int[] CoordinatorLayout_Layout +wangdaye.com.geometricweather.R$drawable: int ic_tag_plus +okhttp3.internal.http2.Http2Connection$PingRunnable +androidx.work.R$id: int tag_unhandled_key_event_manager +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterTextColor +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getMinutelyEntityList() +androidx.lifecycle.extensions.R$attr: int fontProviderFetchStrategy +androidx.coordinatorlayout.R$id: int line3 +wangdaye.com.geometricweather.remoteviews.config.Hilt_WeekWidgetConfigActivity: Hilt_WeekWidgetConfigActivity() +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_maxActionInlineWidth +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float thunderstormPrecipitation +com.google.android.material.tabs.TabLayout +androidx.appcompat.R$dimen: int hint_pressed_alpha_material_light +cyanogenmod.profiles.BrightnessSettings: BrightnessSettings(android.os.Parcel) +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_title +wangdaye.com.geometricweather.R$string: int material_clock_toggle_content_description +retrofit2.Platform: int defaultConverterFactoriesSize() +james.adaptiveicon.R$dimen: int abc_floating_window_z +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: java.lang.String Unit +james.adaptiveicon.R$string: int abc_toolbar_collapse_description +com.turingtechnologies.materialscrollbar.Handle: void setBackgroundColor(int) +androidx.activity.R$id: int accessibility_custom_action_8 +androidx.appcompat.R$dimen: int abc_text_size_title_material_toolbar +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: AccuDailyResult$DailyForecasts$Day$WindGust$Direction() +james.adaptiveicon.R$styleable: int[] SwitchCompat +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type[] typeArguments +com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemTextColor() +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String getCityId() +com.google.android.material.switchmaterial.SwitchMaterial: android.content.res.ColorStateList getMaterialThemeColorsThumbTintList() +androidx.preference.R$styleable: int Fragment_android_tag +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderFetchStrategy +com.google.android.material.card.MaterialCardView: android.graphics.drawable.Drawable getCheckedIcon() +wangdaye.com.geometricweather.R$drawable: int abc_item_background_holo_dark +com.google.android.material.slider.Slider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) +wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableTransition +com.google.android.material.circularreveal.CircularRevealGridLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +androidx.constraintlayout.widget.R$styleable +com.google.android.material.chip.Chip: void setCloseIconSizeResource(int) +cyanogenmod.profiles.RingModeSettings: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$id: int incoming +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String aqi +androidx.preference.R$dimen: int abc_dialog_fixed_width_major +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar +androidx.appcompat.R$layout: int abc_alert_dialog_title_material +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_arrowHeadLength +com.google.android.material.R$animator: int linear_indeterminate_line2_head_interpolator +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver +okhttp3.internal.http2.Header: okio.ByteString TARGET_SCHEME +wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_height_material +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitation +com.google.android.material.bottomnavigation.BottomNavigationView$SavedState +okhttp3.HttpUrl$Builder: boolean isDot(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_positiveButtonText +wangdaye.com.geometricweather.R$style: int Base_V26_Theme_AppCompat_Light +androidx.fragment.R$id: int accessibility_custom_action_7 +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetLeft +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_android_windowIsFloating +com.google.android.material.appbar.AppBarLayout: void setElevation(float) +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowDy +androidx.appcompat.R$styleable: int AppCompatTheme_actionDropDownStyle +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCardForegroundColor() +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle +cyanogenmod.themes.IThemeService$Stub$Proxy: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) +wangdaye.com.geometricweather.settings.activities.PreviewIconActivity: PreviewIconActivity() +androidx.preference.R$styleable: int AppCompatTheme_android_windowAnimationStyle +wangdaye.com.geometricweather.settings.dialogs.AnimatableIconDialog: AnimatableIconDialog() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowMinWidthMajor +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingLeft +cyanogenmod.os.Build: java.lang.String UNKNOWN +cyanogenmod.os.Concierge$ParcelInfo: android.os.Parcel mParcel +androidx.lifecycle.Transformations: androidx.lifecycle.LiveData switchMap(androidx.lifecycle.LiveData,androidx.arch.core.util.Function) +okio.AsyncTimeout$Watchdog +androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +cyanogenmod.app.PartnerInterface +androidx.vectordrawable.R$styleable: int GradientColor_android_startX +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Surface +okio.Buffer: okio.BufferedSink write(byte[],int,int) +com.google.android.material.R$attr: int stackFromEnd +androidx.preference.R$styleable: int RecycleListView_paddingTopNoTitle +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginTop +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: PrecipitationDuration(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +com.xw.repo.bubbleseekbar.R$id: int expanded_menu +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalAlign +wangdaye.com.geometricweather.R$id: int cpv_arrow_right +androidx.appcompat.R$styleable: int ActionBar_hideOnContentScroll +com.google.android.material.R$dimen: int mtrl_btn_pressed_z +com.google.gson.FieldNamingPolicy: FieldNamingPolicy(java.lang.String,int,com.google.gson.FieldNamingPolicy$1) +androidx.constraintlayout.widget.R$styleable: int Motion_motionPathRotate +wangdaye.com.geometricweather.R$color: int weather_source_caiyun +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long uniqueId +com.google.gson.stream.JsonReader: java.lang.String nextUnquotedValue() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_constraint_referenced_ids +android.didikee.donate.R$attr: int actionBarTabBarStyle +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: int UnitType +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth +wangdaye.com.geometricweather.R$anim: int design_bottom_sheet_slide_out +cyanogenmod.profiles.LockSettings: boolean isDirty() +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Time +androidx.appcompat.R$attr: int searchViewStyle +com.google.android.material.slider.RangeSlider: void setTickTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$id: int icon_group +io.reactivex.internal.util.EmptyComponent: void onSubscribe(org.reactivestreams.Subscription) +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontWeight +com.google.android.material.R$styleable: int MaterialCardView_checkedIconSize +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Time +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.Scheduler$Worker worker +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState SUCCESS +com.google.android.material.R$id: int honorRequest +wangdaye.com.geometricweather.R$string: int real_feel_temperature +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HOT +androidx.lifecycle.ProcessLifecycleOwner$1 +cyanogenmod.profiles.BrightnessSettings: boolean isDirty() +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int bufferSize +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_imageButtonStyle +com.google.android.material.R$layout: int abc_alert_dialog_title_material +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ch +androidx.constraintlayout.widget.Constraints: androidx.constraintlayout.widget.ConstraintSet getConstraintSet() +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setDuration(long) +androidx.appcompat.R$attr: int firstBaselineToTopHeight +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfiles +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_crossfade +james.adaptiveicon.R$style: R$style() +okhttp3.Response +okhttp3.Response$Builder: okhttp3.Headers$Builder headers +wangdaye.com.geometricweather.R$attr: int progressIndicatorStyle +com.google.android.material.R$styleable: int CollapsingToolbarLayout_title +androidx.work.impl.foreground.SystemForegroundService: SystemForegroundService() +james.adaptiveicon.R$styleable: int[] LinearLayoutCompat_Layout +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind Wind +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMarkTintMode +retrofit2.Utils: boolean isAnnotationPresent(java.lang.annotation.Annotation[],java.lang.Class) +android.didikee.donate.R$drawable: int abc_btn_colored_material +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +retrofit2.KotlinExtensions$await$2$2: void onFailure(retrofit2.Call,java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer ragweedLevel +james.adaptiveicon.R$id: int forever +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder cache(okhttp3.Cache) +cyanogenmod.profiles.AirplaneModeSettings: void processOverride(android.content.Context) +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider valueOf(java.lang.String) +androidx.appcompat.R$attr: int tintMode +android.didikee.donate.R$style: int Animation_AppCompat_Dialog +androidx.hilt.R$styleable: int FontFamilyFont_fontStyle +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_Underlined +android.didikee.donate.R$color: int material_grey_850 +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void subscribeNext() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +com.google.android.material.card.MaterialCardView: float getRadius() +com.google.android.material.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.R$string: int feedback_readd_location +com.bumptech.glide.R$attr: int layout_anchorGravity +com.jaredrummler.android.colorpicker.R$attr: int tooltipForegroundColor +james.adaptiveicon.R$dimen: int abc_text_size_display_2_material +wangdaye.com.geometricweather.R$id: int beginning +androidx.fragment.R$attr: int fontProviderPackage +james.adaptiveicon.R$drawable: int abc_list_pressed_holo_dark +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_exitFadeDuration +com.google.android.material.chip.ChipGroup: int getChipCount() +wangdaye.com.geometricweather.R$attr: int windowActionBarOverlay +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Toolbar +androidx.preference.R$attr: int titleMargin +android.didikee.donate.R$layout: int abc_screen_simple_overlay_action_mode +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_drawPath +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver +android.didikee.donate.R$color: int bright_foreground_material_dark +android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat_Light +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void fail(java.lang.Throwable,io.reactivex.Observer,io.reactivex.internal.queue.SpscLinkedArrayQueue) +org.greenrobot.greendao.AbstractDao: long count() +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_EditText +androidx.preference.R$dimen: int notification_right_side_padding_top +com.google.android.material.R$attr: int horizontalOffset +wangdaye.com.geometricweather.R$color: int colorTextContent_light +androidx.constraintlayout.widget.R$layout: int abc_popup_menu_item_layout +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_23 +wangdaye.com.geometricweather.R$attr: int enforceMaterialTheme +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_sheet_peek_height_min +androidx.constraintlayout.widget.R$drawable: int abc_textfield_default_mtrl_alpha +com.google.android.material.R$styleable: int[] View +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer realFeelTemperature +okhttp3.internal.http2.Http2: java.lang.String[] BINARY +androidx.transition.R$styleable: int GradientColor_android_centerColor +io.reactivex.internal.util.NotificationLite: java.lang.Object error(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$attr: int divider +android.didikee.donate.R$attr: int contentInsetStart +okio.BufferedSink: long writeAll(okio.Source) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_go_search_api_material +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty6H +wangdaye.com.geometricweather.R$string: int feedback_align_end +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: io.reactivex.internal.operators.observable.ObservableAmb$AmbCoordinator parent +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_corner_radius +com.google.android.material.R$styleable: int Layout_android_layout_height +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderPackage +cyanogenmod.profiles.BrightnessSettings: void readFromParcel(android.os.Parcel) +io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.MaybeObserver) +android.didikee.donate.R$attr: int logoDescription +android.didikee.donate.R$styleable: int MenuItem_android_checkable +androidx.constraintlayout.widget.R$color: int abc_primary_text_disable_only_material_dark +androidx.appcompat.R$drawable: int abc_list_pressed_holo_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_constantSize +com.jaredrummler.android.colorpicker.R$color: int notification_icon_bg_color +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: int TRANSACTION_createExternalView_0 +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color +io.reactivex.internal.subscriptions.EmptySubscription: boolean offer(java.lang.Object) +com.google.android.material.R$id: int accessibility_custom_action_4 +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState CLEARED +com.xw.repo.bubbleseekbar.R$attr: int showTitle +androidx.preference.R$attr: int windowFixedWidthMajor +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupMenu_Overflow +androidx.lifecycle.ComputableLiveData +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: ObservableConcatMapEager$ConcatMapEagerMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,int,io.reactivex.internal.util.ErrorMode) +io.reactivex.Observable: io.reactivex.Observable concatMapSingle(io.reactivex.functions.Function) +androidx.appcompat.R$style: int Widget_AppCompat_Light_SearchView +cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getProfile(android.os.ParcelUuid) +androidx.cardview.R$attr: int cardMaxElevation +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_longpressed_holo +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_14 +com.google.android.material.R$attr: int keyPositionType +wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundNormalUpdateService: Hilt_ForegroundNormalUpdateService() +com.jaredrummler.android.colorpicker.R$styleable: int[] Toolbar +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean access$702(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,boolean) +com.bumptech.glide.integration.okhttp.R$dimen: int notification_content_margin_start +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_right_mtrl_dark +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_icon +androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_to_on_mtrl_015 +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX weather +androidx.appcompat.widget.Toolbar: int getContentInsetEnd() +okhttp3.Address: java.util.List protocols +androidx.viewpager.R$id: int icon_group +androidx.appcompat.R$styleable: int ActionBar_height +retrofit2.ParameterHandler$PartMap: java.lang.String transferEncoding +com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimAlpha(int) +com.turingtechnologies.materialscrollbar.TouchScrollBar: TouchScrollBar(android.content.Context,android.util.AttributeSet,int) +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplaceInTxIterable +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$string: int action_search +io.reactivex.internal.schedulers.ScheduledRunnable: int PARENT_INDEX +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: ObservableReplay$BoundedReplayBuffer() +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTypeface(android.graphics.Typeface) +androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.Fragment) +wangdaye.com.geometricweather.R$attr: int flow_lastHorizontalStyle +wangdaye.com.geometricweather.R$string: int life_details +com.google.android.material.stateful.ExtendableSavedState +androidx.hilt.R$id: int accessibility_custom_action_5 +com.bumptech.glide.R$drawable: int notification_bg_normal_pressed +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_bias +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber) +com.xw.repo.bubbleseekbar.R$style: int Widget_Support_CoordinatorLayout +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_isThemeApplying +androidx.loader.R$id: int chronometer +com.google.android.material.transformation.ExpandableTransformationBehavior: ExpandableTransformationBehavior() +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void drain() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +wangdaye.com.geometricweather.R$id: int mtrl_calendar_year_selector_frame +com.google.android.material.slider.RangeSlider: void setThumbStrokeColorResource(int) +androidx.constraintlayout.widget.R$attr: int textAppearanceLargePopupMenu +com.google.android.material.R$dimen: int abc_control_corner_material +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeight +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_popupTheme +androidx.activity.R$id: int tag_unhandled_key_event_manager +cyanogenmod.app.Profile: int getProfileType() +com.bumptech.glide.integration.okhttp.R$dimen: int compat_notification_large_icon_max_height +james.adaptiveicon.R$color: int material_blue_grey_800 +com.google.android.material.R$style: int Widget_AppCompat_ActionBar +okio.BufferedSource: long indexOf(okio.ByteString) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_popupWindowStyle +retrofit2.Retrofit: java.util.List converterFactories +com.jaredrummler.android.colorpicker.R$attr: int subtitle +androidx.appcompat.view.menu.ListMenuItemView: void setTitle(java.lang.CharSequence) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: int status +com.google.android.material.R$styleable: int TextAppearance_android_shadowRadius +androidx.recyclerview.R$style: R$style() +com.google.android.material.R$layout: int abc_list_menu_item_checkbox +james.adaptiveicon.R$attr: int preserveIconSpacing +android.didikee.donate.R$layout: int abc_alert_dialog_button_bar_material +wangdaye.com.geometricweather.R$attr: int switchTextOff +androidx.work.R$id: int accessibility_custom_action_6 +com.google.android.material.R$attr: int passwordToggleTint +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light +retrofit2.Response: retrofit2.Response success(int,java.lang.Object) +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: void onFailure(retrofit2.Call,java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_chainUseRtl +okio.Okio: okio.Sink blackhole() +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: void setGravitySensorEnabled(boolean) +com.bumptech.glide.integration.okhttp.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$id: int container_main_details_recyclerView +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_overflow_material +okio.RealBufferedSink: okio.Sink sink +com.turingtechnologies.materialscrollbar.R$attr: int lastBaselineToBottomHeight +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature temperature +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric +com.google.android.material.R$styleable: int AppBarLayoutStates_state_collapsible +cyanogenmod.app.CustomTile: android.os.Parcelable$Creator CREATOR +com.google.android.material.internal.ForegroundLinearLayout: int getForegroundGravity() +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: int leftIndex +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle getInstance(java.lang.String) +io.reactivex.internal.schedulers.RxThreadFactory: long serialVersionUID +wangdaye.com.geometricweather.R$string: int key_notification_hide_icon +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorError +com.bumptech.glide.R$attr: int coordinatorLayoutStyle +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +james.adaptiveicon.R$styleable: int[] MenuView +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ImageButton +io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onSubscribe +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.List getDefense() +cyanogenmod.app.ProfileGroup: java.util.UUID mUuid +wangdaye.com.geometricweather.R$attr: int positiveButtonText +cyanogenmod.weather.IWeatherServiceProviderChangeListener: void onWeatherServiceProviderChanged(java.lang.String) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService this$0 +com.google.android.material.R$attr: int collapsedSize +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: java.lang.String Unit +com.jaredrummler.android.colorpicker.R$attr: int dialogTheme +okhttp3.FormBody$Builder: FormBody$Builder() +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +androidx.recyclerview.R$styleable: int ColorStateListItem_android_color +com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context) +io.reactivex.Observable: io.reactivex.Observable range(int,int) +retrofit2.Response: retrofit2.Response success(java.lang.Object,okhttp3.Response) +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicBoolean once +androidx.lifecycle.SavedStateHandle: java.lang.Class[] ACCEPTABLE_CLASSES +cyanogenmod.alarmclock.CyanogenModAlarmClock: CyanogenModAlarmClock() +wangdaye.com.geometricweather.R$string: int key_notification_hide_in_lockScreen +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.R$string: int daytime +com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_icon +com.turingtechnologies.materialscrollbar.R$attr: int chipMinHeight +org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Iterable) +androidx.lifecycle.FullLifecycleObserver: void onDestroy(androidx.lifecycle.LifecycleOwner) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchTrackballEvent(android.view.MotionEvent) +cyanogenmod.externalviews.ExternalView$4 +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void dispose() +wangdaye.com.geometricweather.R$drawable: int notif_temp_56 +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: int getChartTop() +wangdaye.com.geometricweather.R$styleable: int Transform_android_elevation +com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context,android.util.AttributeSet) +androidx.lifecycle.SavedStateHandle: java.lang.String KEYS +okhttp3.internal.http2.Http2Connection$4: okhttp3.internal.http2.Http2Connection this$0 +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: float unitFactor +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Subtitle2 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_APP_SWITCH_LONG_PRESS_ACTION_VALIDATOR +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getTagName(android.content.Context) +androidx.constraintlayout.widget.R$color: int error_color_material_dark +com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat +okhttp3.OkHttpClient: javax.net.SocketFactory socketFactory() +com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetTop +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties +com.jaredrummler.android.colorpicker.R$style: int AlertDialog_AppCompat +com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_tick_mark_material +android.didikee.donate.R$dimen: int notification_top_pad +okhttp3.internal.ws.RealWebSocket: int sentPingCount() +androidx.transition.R$dimen: int notification_action_text_size +okhttp3.Request: java.util.List headers(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int arrowHeadLength +androidx.preference.R$style: int Base_Theme_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$attr: int indeterminateProgressStyle +com.google.android.material.R$attr: int values +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroups +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType TransactionCallable +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.jaredrummler.android.colorpicker.R$dimen: int abc_control_padding_material +androidx.vectordrawable.R$style: int Widget_Compat_NotificationActionContainer +cyanogenmod.app.CustomTile: boolean sensitiveData +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String toValue(java.util.List) +com.jaredrummler.android.colorpicker.R$id: int icon_frame +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onComplete() +android.didikee.donate.R$styleable: int ActionBar_customNavigationLayout +com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextStyle +androidx.viewpager2.R$dimen: R$dimen() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: javax.inject.Provider disposableProvider +androidx.preference.R$styleable: int CompoundButton_android_button +androidx.constraintlayout.widget.R$attr: int layout_constraintRight_toRightOf +okhttp3.RealCall: okhttp3.internal.connection.StreamAllocation streamAllocation() +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: AccuCurrentResult$ApparentTemperature$Imperial() +com.google.android.material.R$color: int design_default_color_surface +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_trackTint +james.adaptiveicon.R$attr: int switchPadding +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String weatherText +okhttp3.Cache: java.io.File directory() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogTheme +cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_KEYS_CONTROL_RING_STREAM +com.jaredrummler.android.colorpicker.R$id: int seekbar +com.google.android.material.R$styleable: int Layout_layout_constraintWidth_default +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: long serialVersionUID +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy UPPER_CAMEL_CASE_WITH_SPACES +androidx.activity.R$dimen: int compat_button_inset_horizontal_material +androidx.loader.R$color: R$color() +io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,boolean) +wangdaye.com.geometricweather.R$attr: int counterOverflowTextAppearance +james.adaptiveicon.R$attr: int contentInsetRight +retrofit2.ParameterHandler$QueryName: boolean encoded +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String url +com.jaredrummler.android.colorpicker.R$style: int Preference +androidx.preference.R$drawable: int abc_cab_background_top_mtrl_alpha +wangdaye.com.geometricweather.R$dimen: int default_drawer_width +james.adaptiveicon.R$id: int action_bar_container +com.google.android.material.R$styleable: int Constraint_flow_maxElementsWrap com.bumptech.glide.integration.okhttp.R$id: int notification_main_column_container -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean isDisposed() -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void run() -retrofit2.OkHttpCall: java.lang.Throwable creationFailure -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_switchTextOn -wangdaye.com.geometricweather.R$styleable: int Preference_android_title -wangdaye.com.geometricweather.R$styleable: int Constraint_transitionPathRotate -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onComplete() -com.xw.repo.bubbleseekbar.R$layout: int abc_expanded_menu_layout -androidx.appcompat.R$attr: int editTextStyle -android.didikee.donate.R$style: int Widget_AppCompat_AutoCompleteTextView -cyanogenmod.providers.CMSettings$System: java.lang.String FORWARD_LOOKUP_PROVIDER -com.google.android.material.R$color: int design_fab_stroke_top_inner_color -wangdaye.com.geometricweather.R$attr: int bsb_second_track_color -wangdaye.com.geometricweather.R$attr: int flow_firstHorizontalStyle -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_keyboardNavigationCluster -com.google.android.material.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode -wangdaye.com.geometricweather.R$attr: int itemTextAppearanceActive -okio.Buffer$UnsafeCursor: long offset -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabView -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int requestFusion(int) -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_textOn -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable,int) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LOCKSCREEN -androidx.appcompat.R$color: int ripple_material_light -android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyle -wangdaye.com.geometricweather.db.entities.LocationEntity: void setChina(boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_listItemLayout -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onComplete() -james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton_CloseMode -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -androidx.core.R$drawable: int notify_panel_notification_icon_bg -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver parent -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSo2() -android.didikee.donate.R$styleable: int AppCompatTheme_panelMenuListTheme -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_transformPivotX -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_menuCategory -androidx.appcompat.R$attr: int listPreferredItemHeightSmall -androidx.activity.R$id: int accessibility_custom_action_27 -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle -com.jaredrummler.android.colorpicker.R$color: int abc_secondary_text_material_dark -androidx.hilt.lifecycle.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_checkboxStyle -cyanogenmod.app.CustomTile$ExpandedStyle: java.lang.String toString() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_Solid -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias -cyanogenmod.themes.ThemeManager: void logThemeServiceException(java.lang.Exception) -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconStartPadding -cyanogenmod.weather.RequestInfo$Builder: boolean isValidTempUnit(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: AccuDailyResult$DailyForecasts$Day$Snow() -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTintMode -james.adaptiveicon.R$drawable: int abc_btn_check_material -com.jaredrummler.android.colorpicker.R$id: int search_badge -cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult() -android.didikee.donate.R$id: int action_bar -wangdaye.com.geometricweather.R$id: int widget_day_symbol -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf -androidx.viewpager2.R$style: int Widget_Compat_NotificationActionText -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xntd -com.google.android.material.R$attr: int layout_constraintGuide_end -androidx.drawerlayout.R$dimen: int notification_small_icon_size_as_large -okhttp3.CacheControl: boolean isPublic() -androidx.vectordrawable.animated.R$dimen: int notification_large_icon_width -okhttp3.internal.cache.DiskLruCache: java.lang.String VERSION_1 -cyanogenmod.app.suggest.ApplicationSuggestion: void writeToParcel(android.os.Parcel,int) -com.jaredrummler.android.colorpicker.R$attr: int actionOverflowButtonStyle -wangdaye.com.geometricweather.R$id: int container_main_header_weatherTxt -com.xw.repo.bubbleseekbar.R$anim: int abc_fade_in -androidx.appcompat.widget.AppCompatImageButton: android.content.res.ColorStateList getSupportImageTintList() -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_color -wangdaye.com.geometricweather.R$layout: int dialog_donate_wechat -wangdaye.com.geometricweather.R$attr: int constraint_referenced_ids -androidx.hilt.R$id: int accessibility_custom_action_29 -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeCloudCover -androidx.appcompat.R$styleable: int AppCompatTheme_panelMenuListWidth -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance -retrofit2.ParameterHandler$Headers: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.google.android.material.R$attr: int expandedTitleMarginTop -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_30 -androidx.work.R$styleable: int GradientColor_android_endX -com.google.android.material.R$id: int cos -okhttp3.TlsVersion: java.lang.String javaName -androidx.activity.R$drawable: int notification_bg_normal -com.xw.repo.bubbleseekbar.R$id: int icon_group -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust: AccuCurrentResult$WindGust() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction Direction -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource source -wangdaye.com.geometricweather.R$drawable: int ic_collected -com.google.android.material.R$dimen: int abc_dialog_fixed_width_major -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableLeftCompat -okhttp3.internal.cache.DiskLruCache: void completeEdit(okhttp3.internal.cache.DiskLruCache$Editor,boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX names -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_gapBetweenBars -wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableCompat -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory create(javax.inject.Provider,javax.inject.Provider) -okio.Buffer: okio.Buffer writeInt(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: int Degrees -retrofit2.http.Query: boolean encoded() -com.bumptech.glide.R$style -android.didikee.donate.R$styleable: int[] SwitchCompat -wangdaye.com.geometricweather.R$id: int widget_text_temperature -androidx.viewpager.R$id: int forever -androidx.constraintlayout.widget.R$drawable: int btn_radio_off_to_on_mtrl_animation -com.google.android.material.chip.Chip: void setCloseIconEnabled(boolean) -com.bumptech.glide.load.HttpException: HttpException(java.lang.String) -androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -okio.ForwardingSink: okio.Timeout timeout() -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: java.lang.String type -wangdaye.com.geometricweather.R$drawable: int shortcuts_haze_foreground -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -com.jaredrummler.android.colorpicker.R$attr: int defaultValue -james.adaptiveicon.R$attr: int closeItemLayout -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_size -androidx.fragment.R$id: int notification_background -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -androidx.preference.R$attr: int titleMarginEnd -okhttp3.internal.cache2.Relay: boolean complete -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -androidx.constraintlayout.widget.R$color: int bright_foreground_disabled_material_light -androidx.preference.R$id: int time -android.didikee.donate.R$attr: int popupWindowStyle -androidx.appcompat.R$styleable: int TextAppearance_android_textSize -wangdaye.com.geometricweather.R$attr: int preferenceTheme -wangdaye.com.geometricweather.R$attr: int materialTimePickerTheme -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplBase -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_7 -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarButtonStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: void setBrands(java.util.List) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Subhead_Inverse -okhttp3.internal.http2.Http2Connection$PingRunnable: okhttp3.internal.http2.Http2Connection this$0 -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Body1 -androidx.customview.R$styleable: int GradientColor_android_startY -androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean -wangdaye.com.geometricweather.R$color: int test_mtrl_calendar_day -androidx.vectordrawable.animated.R$dimen: int notification_action_text_size -android.didikee.donate.R$color: int material_grey_300 -james.adaptiveicon.R$attr: int listChoiceBackgroundIndicator -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_share_mtrl_alpha -androidx.viewpager.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_104 -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String messageShort -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_divider_material -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityCreated(android.app.Activity,android.os.Bundle) -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalAlign -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String DESKCLOCK_PACKAGE -wangdaye.com.geometricweather.R$attr: int suffixTextAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStrokeColor -androidx.constraintlayout.utils.widget.ImageFilterView: void setSaturation(float) -wangdaye.com.geometricweather.R$drawable: int weather_fog -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindChillTemperature(java.lang.Integer) -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxDao -androidx.constraintlayout.utils.widget.ImageFilterView: float getRoundPercent() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$layout: int mtrl_picker_header_toggle -com.google.android.material.R$dimen: int tooltip_y_offset_touch -android.support.v4.os.IResultReceiver$Stub$Proxy -androidx.hilt.work.R$dimen: int notification_top_pad_large_text -com.google.android.material.chip.Chip: void setBackgroundResource(int) -james.adaptiveicon.R$layout: int notification_action_tombstone -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderFetchStrategy -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object PARENT_DISPOSED -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTemperature -cyanogenmod.weather.RequestInfo$Builder: boolean mIsQueryOnly -retrofit2.RequestBuilder: void addQueryParam(java.lang.String,java.lang.String,boolean) -cyanogenmod.providers.CMSettings -androidx.appcompat.R$attr: int titleTextStyle -androidx.work.impl.utils.futures.DirectExecutor: void execute(java.lang.Runnable) -wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity -cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_ADJUST_SOUNDS_ENABLED -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$200(com.github.rahatarmanahmed.cpv.CircularProgressView) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_27 -com.google.android.material.R$styleable: int AppCompatTheme_actionModeShareDrawable -com.google.android.material.R$attr: int materialButtonStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX -retrofit2.ParameterHandler$Path: java.lang.reflect.Method method -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String pkg -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetLeft -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_29 -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_radius -cyanogenmod.providers.CMSettings$3 -com.xw.repo.bubbleseekbar.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -okhttp3.internal.http2.Http2Connection$Builder: Http2Connection$Builder(boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial Imperial -androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerColor -androidx.work.impl.background.systemalarm.SystemAlarmService: SystemAlarmService() -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenText(android.content.Context,java.lang.Integer) -androidx.constraintlayout.widget.R$attr: int titleMarginEnd -wangdaye.com.geometricweather.R$attr: int settingsActivity +wangdaye.com.geometricweather.R$attr: int imageButtonStyle +wangdaye.com.geometricweather.R$styleable: int Motion_animate_relativeTo +cyanogenmod.app.suggest.ApplicationSuggestion +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_grey +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableLeft +cyanogenmod.app.IPartnerInterface$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.xw.repo.bubbleseekbar.R$color: int primary_text_default_material_light +io.reactivex.internal.disposables.SequentialDisposable: long serialVersionUID +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerComplete(io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver) +com.xw.repo.bubbleseekbar.R$styleable: int[] CoordinatorLayout +okio.Buffer: void write(okio.Buffer,long) +com.google.android.material.button.MaterialButton: void setIconTintResource(int) +okhttp3.internal.cache.DiskLruCache: java.io.File journalFile +cyanogenmod.themes.IThemeChangeListener$Stub +com.google.android.material.chip.Chip: void setCloseIconContentDescription(java.lang.CharSequence) +androidx.viewpager2.widget.ViewPager2: void setLayoutDirection(int) +wangdaye.com.geometricweather.R$xml: int icon_provider_drawable_filter +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onNext(java.lang.Object) +androidx.preference.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Borderless_Colored +okio.Buffer: okio.Buffer writeString(java.lang.String,java.nio.charset.Charset) +androidx.core.R$id: int accessibility_custom_action_11 +android.didikee.donate.R$attr: int indeterminateProgressStyle +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okio.BufferedSource source() +androidx.work.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme_Light +io.reactivex.Observable: io.reactivex.Observable timeInterval(java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.R$styleable: int[] Fragment +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_SHA256 +okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_3 +androidx.constraintlayout.widget.R$style: int Platform_Widget_AppCompat_Spinner +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: java.util.concurrent.CompletableFuture future +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_FixedSize_Bridge +wangdaye.com.geometricweather.R$anim: int abc_grow_fade_in_from_bottom +com.jaredrummler.android.colorpicker.R$styleable: int[] Spinner +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastHorizontalStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonStyleSmall +okio.BufferedSink: okio.BufferedSink write(byte[],int,int) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_pivotAnchor +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.CompletableObserver downstream +androidx.preference.R$style: int Preference_DialogPreference_Material +okhttp3.OkHttpClient: java.util.List networkInterceptors +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Badge +okhttp3.internal.Util: java.lang.String format(java.lang.String,java.lang.Object[]) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchCompat +okio.GzipSource: byte SECTION_BODY +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +wangdaye.com.geometricweather.R$id: int SHOW_PATH +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getCityId() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.legacy.coreutils.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_checkbox +com.google.android.material.R$dimen: int mtrl_extended_fab_end_padding +wangdaye.com.geometricweather.R$attr: int lineSpacing +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: int UnitType +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPm10() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlNormal +androidx.customview.R$id: int tag_transition_group +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy +android.didikee.donate.R$styleable: int MenuView_android_itemTextAppearance +okhttp3.Cookie: int dateCharacterOffset(java.lang.String,int,int,boolean) +androidx.appcompat.R$styleable: int TextAppearance_android_shadowRadius +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List chuanyi +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SYSTEM_PROFILES_ENABLED_VALIDATOR +android.didikee.donate.R$id: int action_menu_divider +com.jaredrummler.android.colorpicker.R$attr: int listPopupWindowStyle +androidx.preference.R$style: int Platform_V21_AppCompat +com.google.android.material.R$styleable: int ShapeableImageView_shapeAppearanceOverlay +androidx.recyclerview.R$drawable: int notification_bg_normal +com.bumptech.glide.integration.okhttp.R$id: int action_container +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionBar +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getGrassDescription() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabText +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_text_size +com.google.android.material.R$attr: int thumbTint +okio.Buffer$2 +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.internal.util.AtomicThrowable error +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWindLevel() +io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier INSTANCE +androidx.constraintlayout.widget.R$color: int abc_btn_colored_borderless_text_material +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +okhttp3.internal.http1.Http1Codec$AbstractSource: Http1Codec$AbstractSource(okhttp3.internal.http1.Http1Codec) +androidx.preference.R$color: int abc_search_url_text_selected +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int lastIndex +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetOnClickPendingIntent(android.app.PendingIntent) +androidx.appcompat.widget.LinearLayoutCompat: void setOrientation(int) +androidx.legacy.coreutils.R$id: int info +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_16dp +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_gradientRadius +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_BottomSheetDialog +wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontTitle +androidx.activity.R$styleable: int[] FontFamilyFont +com.google.android.material.R$attr: int suffixTextAppearance +androidx.appcompat.R$id: int text2 +wangdaye.com.geometricweather.R$animator: int weather_hail_1 +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_backgroundSplit +androidx.preference.R$attr: int actionBarTabBarStyle +james.adaptiveicon.R$layout: int abc_popup_menu_header_item_layout +cyanogenmod.externalviews.IExternalViewProviderFactory +james.adaptiveicon.R$id: int none +cyanogenmod.themes.ThemeManager$1$1: void run() +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_ALLERGEN +androidx.appcompat.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.location.services.LocationService: android.app.Notification getLocationNotification(android.content.Context) +androidx.appcompat.R$styleable: int AppCompatTheme_checkedTextViewStyle +wangdaye.com.geometricweather.R$drawable: int mtrl_dialog_background +androidx.preference.R$id: int right +okio.SegmentedByteString: java.lang.String base64() +wangdaye.com.geometricweather.R$drawable: int abc_vector_test +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_BACKGROUND +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableRightCompat +james.adaptiveicon.R$attr: int radioButtonStyle +androidx.preference.R$attr: int drawableLeftCompat +wangdaye.com.geometricweather.R$drawable: int ic_filter +com.google.android.material.R$attr: int transitionEasing +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge +wangdaye.com.geometricweather.R$id: int notification_main_column +wangdaye.com.geometricweather.R$attr: int chipGroupStyle +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_toId +androidx.viewpager2.widget.ViewPager2: int getOffscreenPageLimit() +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_overlay +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_SIGN +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.R$id: int progress_circular +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void dispose() +com.google.android.material.R$attr: int initialActivityCount +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setPrefixString(java.lang.String) +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_indeterminate +okhttp3.OkHttpClient: java.net.ProxySelector proxySelector() +androidx.appcompat.widget.AppCompatTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +androidx.cardview.widget.CardView: void setRadius(float) +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle +androidx.appcompat.R$styleable: int ActionBar_subtitleTextStyle +wangdaye.com.geometricweather.R$attr: int extendMotionSpec +wangdaye.com.geometricweather.R$string: int phase_new +com.jaredrummler.android.colorpicker.R$attr: int switchTextAppearance +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_body_2_material +com.jaredrummler.android.colorpicker.R$drawable: int cpv_btn_background_pressed +com.jaredrummler.android.colorpicker.R$styleable: int Preference_title +com.google.android.material.R$styleable: int ConstraintSet_motionStagger +wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_focused_alpha +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void cancel(io.reactivex.internal.queue.SpscLinkedArrayQueue,io.reactivex.internal.queue.SpscLinkedArrayQueue) +cyanogenmod.app.IProfileManager: void addNotificationGroup(android.app.NotificationGroup) +okhttp3.HttpUrl: java.net.URI uri() +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$Event downEvent(androidx.lifecycle.Lifecycle$State) +androidx.constraintlayout.widget.R$attr: int layout_constrainedHeight +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +wangdaye.com.geometricweather.R$drawable: int weather_clear_day +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWindDirection() +androidx.appcompat.R$styleable: int ActionBar_progressBarPadding +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_KEYS_CONTROL_RING_STREAM_VALIDATOR +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +androidx.vectordrawable.animated.R$id: int chronometer +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_elevation +androidx.viewpager.R$dimen: R$dimen() +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextAppearanceActive(int) +android.didikee.donate.R$styleable: int Toolbar_navigationIcon +com.google.android.material.R$attr: int cornerSizeTopLeft +cyanogenmod.weather.WeatherInfo$Builder: int mConditionCode +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void slideLockscreenIn() +androidx.hilt.R$drawable: int notification_bg +android.support.v4.app.RemoteActionCompatParcelizer: void write(androidx.core.app.RemoteActionCompat,androidx.versionedparcelable.VersionedParcel) +retrofit2.Converter$Factory: Converter$Factory() +androidx.appcompat.R$attr: int listChoiceBackgroundIndicator +okhttp3.Address +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +okhttp3.CipherSuite +android.support.v4.os.ResultReceiver$MyRunnable: android.os.Bundle mResultData +james.adaptiveicon.R$anim: int abc_fade_in +cyanogenmod.platform.R$xml +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyBottomRight +okio.ForwardingSink: void close() +android.didikee.donate.R$style: int Widget_AppCompat_SeekBar +androidx.appcompat.R$id: int accessibility_custom_action_20 +android.didikee.donate.R$styleable: int CompoundButton_buttonCompat +androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver parent cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchKeyEvent(android.view.KeyEvent) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moonPhaseAngle -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_padding_end_material -androidx.preference.R$style: int Preference_Information -com.google.android.material.R$styleable: int KeyPosition_sizePercent -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_textAppearance -com.google.android.material.R$styleable: int MenuItem_android_icon -androidx.constraintlayout.widget.R$string: int abc_capital_off -wangdaye.com.geometricweather.R$string: int mtrl_picker_confirm -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onKeyguardShowing(boolean) -androidx.legacy.coreutils.R$color: R$color() -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_search -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textColorSearchUrl -wangdaye.com.geometricweather.R$dimen: int item_touch_helper_swipe_escape_velocity -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundDrawable(android.graphics.drawable.Drawable) -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Large -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: java.lang.Runnable actual -androidx.preference.R$styleable: int[] AppCompatImageView -com.turingtechnologies.materialscrollbar.R$attr: int alertDialogTheme -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Temperature -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: ObservableConcatMapMaybe$ConcatMapMaybeMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,io.reactivex.internal.util.ErrorMode) -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: boolean isDisposed() -androidx.appcompat.widget.DropDownListView: void setSelectorEnabled(boolean) -okhttp3.internal.ws.RealWebSocket: java.util.ArrayDeque messageAndCloseQueue -cyanogenmod.themes.ThemeManager$1: cyanogenmod.themes.ThemeManager this$0 -wangdaye.com.geometricweather.R$layout: int item_weather_daily_air -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource CN -wangdaye.com.geometricweather.R$drawable: int ic_android -androidx.lifecycle.LiveData: void dispatchingValue(androidx.lifecycle.LiveData$ObserverWrapper) -android.didikee.donate.R$attr: int textAppearanceListItem -wangdaye.com.geometricweather.R$drawable: int ic_map_clock -cyanogenmod.themes.ThemeChangeRequest -com.google.android.material.R$attr: int fontProviderQuery -androidx.core.app.RemoteActionCompatParcelizer: RemoteActionCompatParcelizer() -wangdaye.com.geometricweather.common.basic.models.weather.Base: long getTimeStamp() -androidx.vectordrawable.R$id: int accessibility_custom_action_29 -com.google.android.material.R$attr: int number -wangdaye.com.geometricweather.R$layout: int container_snackbar_card -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: void setValue(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int shortcuts_wind_foreground -androidx.appcompat.R$styleable: int ActivityChooserView_initialActivityCount -retrofit2.http.Headers -androidx.constraintlayout.widget.R$dimen: int compat_notification_large_icon_max_width -androidx.dynamicanimation.R$id: int notification_background -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2$1: ThemeVersion$ThemeVersionImpl2$1() -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.internal.disposables.ArrayCompositeDisposable resources -androidx.work.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$styleable: int MockView_mock_label -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.String TABLENAME -com.github.rahatarmanahmed.cpv.R: R() -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setThunderstormPrecipitationProbability(java.lang.Float) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -androidx.hilt.R$id: int tag_accessibility_actions -com.google.android.material.appbar.AppBarLayout: int getMinimumHeightForVisibleOverlappingContent() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.AlertEntity) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListPopupWindow -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Small -com.google.android.material.R$color: int tooltip_background_dark -cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String mName -com.google.android.material.R$color: int material_timepicker_modebutton_tint -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableLeftCompat -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getCityId() -okhttp3.internal.ws.RealWebSocket$Close: RealWebSocket$Close(int,okio.ByteString,long) -androidx.hilt.work.R$styleable: int GradientColor_android_tileMode -com.turingtechnologies.materialscrollbar.R$string: int abc_action_bar_up_description -androidx.work.R$id: int async -androidx.work.R$styleable: int GradientColor_android_centerY -okhttp3.ResponseBody$1: okio.BufferedSource val$content -wangdaye.com.geometricweather.R$attr: int layout_goneMarginRight -androidx.appcompat.R$anim: int abc_slide_in_top -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_collapseIcon -androidx.appcompat.R$styleable: int[] ColorStateListItem -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerX -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: long EpochRise -wangdaye.com.geometricweather.R$attr: int actionBarSplitStyle -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemTextAppearance -androidx.drawerlayout.widget.DrawerLayout: void setDrawerElevation(float) -com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getGrassLevel() -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) -wangdaye.com.geometricweather.R$attr: int lastBaselineToBottomHeight -james.adaptiveicon.R$dimen: int abc_disabled_alpha_material_dark -okhttp3.Response: okhttp3.Response priorResponse() -wangdaye.com.geometricweather.common.basic.models.weather.UV: UV(java.lang.Integer,java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizePresetSizes -androidx.preference.R$attr: int preferenceFragmentCompatStyle -com.xw.repo.bubbleseekbar.R$attr: int alertDialogStyle -com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Subtitle2 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline6 -com.turingtechnologies.materialscrollbar.R$attr: int listMenuViewStyle -com.jaredrummler.android.colorpicker.R$attr: int actionViewClass -okhttp3.HttpUrl: java.util.List queryNamesAndValues -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_Alert -com.github.rahatarmanahmed.cpv.CircularProgressView$5: void onAnimationEnd(android.animation.Animator) -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_divider_mtrl_alpha -com.bumptech.glide.load.engine.GlideException: void printStackTrace() -androidx.preference.R$attr: int divider -androidx.preference.R$styleable: int ActionBar_navigationMode -okio.Buffer: int readIntLe() -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float ice -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerNext() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitation -androidx.hilt.work.R$id: int accessibility_custom_action_18 -com.turingtechnologies.materialscrollbar.R$attr: int actionModeCloseDrawable -wangdaye.com.geometricweather.R$drawable: int notif_temp_136 -james.adaptiveicon.R$styleable -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNo2(java.lang.Float) -com.turingtechnologies.materialscrollbar.R$color: int abc_background_cache_hint_selector_material_dark -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_padding_right -android.didikee.donate.R$styleable: int SearchView_commitIcon -androidx.hilt.R$id: int accessibility_custom_action_0 -androidx.recyclerview.widget.StaggeredGridLayoutManager$SavedState: android.os.Parcelable$Creator CREATOR -androidx.drawerlayout.R$styleable: int GradientColor_android_centerX -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCheckedIconTint() -androidx.work.R$id: int notification_main_column_container -androidx.dynamicanimation.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$id: int line3 -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -wangdaye.com.geometricweather.R$color: int design_fab_stroke_end_inner_color -com.turingtechnologies.materialscrollbar.R$drawable: int abc_item_background_holo_light -androidx.constraintlayout.motion.widget.MotionLayout: void setDebugMode(int) -androidx.loader.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date sunSetDate -com.google.gson.internal.LinkedTreeMap: java.lang.Object remove(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver[] EMPTY -wangdaye.com.geometricweather.R$attr: int cpv_allowPresets -com.google.android.material.R$string: int abc_capital_off -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onError(java.lang.Throwable) -androidx.work.R$styleable: int GradientColor_android_startY -com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$styleable: int Chip_ensureMinTouchTargetSize -com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$styleable: int AppCompatTextView_lineHeight -io.reactivex.internal.disposables.SequentialDisposable: void dispose() -james.adaptiveicon.R$styleable: int AppCompatTheme_viewInflaterClass -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: int bufferSize -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextColor -androidx.preference.R$attr: int submitBackground -james.adaptiveicon.R$styleable: int AppCompatTheme_borderlessButtonStyle -com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context,android.util.AttributeSet) -androidx.viewpager.R$attr: int alpha -androidx.loader.R$style -cyanogenmod.hardware.CMHardwareManager: int FEATURE_ADAPTIVE_BACKLIGHT -cyanogenmod.weather.WeatherLocation: WeatherLocation(cyanogenmod.weather.WeatherLocation$1) -com.jaredrummler.android.colorpicker.R$attr: int buttonStyle -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getRainPrecipitation() -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_Chip -wangdaye.com.geometricweather.R$string: int content_des_o3 -com.xw.repo.bubbleseekbar.R$attr: int actionModeShareDrawable -androidx.activity.R$styleable: int GradientColor_android_type -androidx.preference.R$attr: int allowStacking -wangdaye.com.geometricweather.R$id: int month_navigation_fragment_toggle -com.google.gson.stream.JsonReader: boolean nextBoolean() -androidx.constraintlayout.widget.R$dimen: int abc_text_size_menu_material -android.didikee.donate.R$color: int material_blue_grey_950 -androidx.fragment.R$dimen: int notification_small_icon_size_as_large -com.google.android.material.R$style: int Theme_MaterialComponents_Light_BarSize -androidx.customview.R$styleable: int GradientColor_android_centerY -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetStartWithNavigation -androidx.activity.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setFitSide(int) -cyanogenmod.app.BaseLiveLockManagerService: boolean getLiveLockScreenEnabled() -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: java.lang.String DESCRIPTOR -io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Thread runner -androidx.preference.UnPressableLinearLayout -okhttp3.internal.http2.Http2Reader: void readRstStream(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -androidx.lifecycle.extensions.R$drawable: int notification_template_icon_bg -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: KeyguardExternalViewProviderService$1$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService$1,android.os.Bundle) -com.google.android.material.R$attr: int motionInterpolator -com.xw.repo.bubbleseekbar.R$attr: int actionBarItemBackground -wangdaye.com.geometricweather.R$attr: int textStartPadding -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$200() -androidx.legacy.coreutils.R$layout: int notification_template_part_chronometer -com.github.rahatarmanahmed.cpv.CircularProgressView$2: void onAnimationEnd(android.animation.Animator) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setStreet_number(java.lang.String) -com.google.android.material.R$attr: int actionDropDownStyle -wangdaye.com.geometricweather.db.entities.MinutelyEntity -com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Widget_AppCompat_Toolbar -okhttp3.internal.connection.StreamAllocation: okhttp3.Route route -androidx.constraintlayout.widget.R$dimen: int compat_button_padding_vertical_material -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_radioButtonStyle -androidx.appcompat.R$styleable: int View_android_focusable -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Bridge -android.didikee.donate.R$attr: int selectableItemBackgroundBorderless -com.google.android.material.floatingactionbutton.FloatingActionButton: void setRippleColor(int) -com.turingtechnologies.materialscrollbar.R$color: int material_grey_800 -com.jaredrummler.android.colorpicker.R$drawable: int abc_popup_background_mtrl_mult -com.google.android.material.button.MaterialButton: void setIconSize(int) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_SNOW_AND_SLEET -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_clipToPadding -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_height -wangdaye.com.geometricweather.R$layout: int cpv_color_item_circle -androidx.appcompat.widget.SwitchCompat: java.lang.CharSequence getTextOff() -com.google.android.material.R$attr: int materialCalendarStyle -wangdaye.com.geometricweather.R$id: int cut -james.adaptiveicon.R$id: int action_mode_close_button -com.google.android.material.textfield.TextInputLayout: int getBoxStrokeWidthFocused() -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_icon_size -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_right_mtrl_light -com.google.android.material.R$layout: int mtrl_alert_dialog -androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context) -james.adaptiveicon.R$attr: int colorControlActivated -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_font -androidx.preference.R$attr: int singleChoiceItemLayout -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundTintList(android.content.res.ColorStateList) -com.google.android.material.R$id: int square -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_direction -com.google.android.material.chip.Chip: void setChipIconEnabled(boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String WeatherText -androidx.appcompat.R$styleable: int SearchView_android_maxWidth -com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarPopupTheme -androidx.activity.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.R$drawable: int weather_haze_pixel -com.google.android.material.R$styleable: int AppCompatTheme_buttonStyle -retrofit2.BuiltInConverters$ToStringConverter: java.lang.String convert(java.lang.Object) -james.adaptiveicon.R$attr: int popupMenuStyle -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_hideOnScroll -androidx.preference.R$style: int Theme_AppCompat_Dialog -androidx.appcompat.resources.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextTextColor -com.jaredrummler.android.colorpicker.R$attr: int switchPreferenceCompatStyle -com.google.android.material.R$attr: int contentInsetRight -cyanogenmod.app.LiveLockScreenInfo: android.content.ComponentName component -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_motionProgress -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric Metric -androidx.work.R$dimen: int notification_right_side_padding_top -androidx.vectordrawable.R$drawable: int notification_tile_bg -com.xw.repo.bubbleseekbar.R$drawable: int abc_item_background_holo_dark -com.google.android.material.R$styleable: int Layout_android_layout_marginLeft -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -wangdaye.com.geometricweather.R$attr: int orderingFromXml -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_TextInputEditText -androidx.appcompat.R$attr: int switchTextAppearance -wangdaye.com.geometricweather.R$id: int useLogo -androidx.recyclerview.R$id: int accessibility_custom_action_31 -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_dropDownWidth -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIcon -okhttp3.Cache$CacheRequestImpl$1: Cache$CacheRequestImpl$1(okhttp3.Cache$CacheRequestImpl,okio.Sink,okhttp3.Cache,okhttp3.internal.cache.DiskLruCache$Editor) -com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text -james.adaptiveicon.R$dimen: int abc_control_corner_material -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderCerts -okhttp3.FormBody: int size() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: CaiYunMainlyResult$CurrentBean$TemperatureBean() -cyanogenmod.weatherservice.IWeatherProviderServiceClient -cyanogenmod.app.Profile: int mNotificationLightMode -james.adaptiveicon.R$styleable: int SearchView_closeIcon -cyanogenmod.hardware.CMHardwareManager -cyanogenmod.weatherservice.WeatherProviderService: WeatherProviderService() -cyanogenmod.app.Profile$ProfileTrigger$1: Profile$ProfileTrigger$1() -okhttp3.internal.http.CallServerInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_background_corner_radius -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_imageButtonStyle -android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_creator -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_padding -com.google.android.material.R$styleable: int Chip_rippleColor -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox -androidx.constraintlayout.widget.R$styleable: int MotionHelper_onShow -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_RadioButton -com.xw.repo.bubbleseekbar.R$anim: int abc_shrink_fade_out_from_bottom -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -androidx.loader.R$dimen: int compat_button_inset_vertical_material -androidx.preference.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -okhttp3.HttpUrl: java.lang.String queryParameter(java.lang.String) -com.bumptech.glide.integration.okhttp.R$attr: int layout_dodgeInsetEdges -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: int UnitType -com.jaredrummler.android.colorpicker.R$id: int action_menu_presenter -io.reactivex.Observable: io.reactivex.Observable intervalRange(long,long,long,long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Alert -james.adaptiveicon.R$dimen: int abc_cascading_menus_min_smallest_width -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Subhead -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -androidx.constraintlayout.widget.R$attr: int onCross -androidx.constraintlayout.helper.widget.Layer: void setPivotY(float) -com.turingtechnologies.materialscrollbar.R$attr: int titleMarginTop -androidx.transition.R$attr: int alpha -james.adaptiveicon.R$id: int search_edit_frame -okhttp3.internal.http.BridgeInterceptor -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Button -james.adaptiveicon.R$styleable: int SwitchCompat_android_textOff -okhttp3.Cache$Entry -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: void setStatus(int) -androidx.transition.R$styleable: int GradientColor_android_endY -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_shapeAppearance -androidx.constraintlayout.widget.R$dimen: int abc_button_inset_vertical_material -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void completion() -androidx.appcompat.R$styleable: int TextAppearance_android_textStyle -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_orderingFromXml -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: AccuCurrentResult$Wind$Direction() -androidx.appcompat.R$styleable: int Toolbar_titleMarginStart -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderPackage -android.didikee.donate.R$styleable: int ActionMode_closeItemLayout -androidx.lifecycle.ClassesInfoCache$MethodReference: int hashCode() -okhttp3.internal.connection.RealConnection: okhttp3.internal.http.HttpCodec newCodec(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,okhttp3.internal.connection.StreamAllocation) -wangdaye.com.geometricweather.R$id: int container_main_header_aqiOrWindTxt -wangdaye.com.geometricweather.R$id: int widget_day_week_weather -androidx.lifecycle.LiveData$ObserverWrapper: androidx.lifecycle.LiveData this$0 -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit M -com.xw.repo.bubbleseekbar.R$drawable: int abc_spinner_textfield_background_material -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void priority(int,int,int,boolean) -com.google.android.material.R$styleable: int AppCompatTheme_windowFixedHeightMajor -com.google.android.material.R$attr: int materialCircleRadius -james.adaptiveicon.R$attr: int tint -wangdaye.com.geometricweather.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getUvDescription() -okhttp3.internal.tls.TrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) -androidx.preference.R$style: int Base_Widget_AppCompat_SeekBar -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onBouncerShowing(boolean) -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_0_30 -org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WindChillTemperature -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.util.concurrent.atomic.AtomicBoolean cancelled -com.google.android.material.R$attr: int state_collapsed -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleTextAppearance -wangdaye.com.geometricweather.R$id: int activity_about_recyclerView -androidx.preference.R$style: int Preference_DialogPreference_EditTextPreference -androidx.constraintlayout.widget.R$attr: int buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -cyanogenmod.app.CMContextConstants: java.lang.String CM_STATUS_BAR_SERVICE -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedPathSegment(java.lang.String) -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: io.reactivex.Observer downstream -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: boolean cancelled -okio.RealBufferedSink: okio.BufferedSink write(okio.Source,long) -androidx.preference.R$dimen: int abc_alert_dialog_button_dimen -com.bumptech.glide.R$dimen: int notification_action_text_size -com.google.android.material.R$dimen: int abc_action_bar_default_padding_end_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: int UnitType -okhttp3.RealCall: boolean isExecuted() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_VALIDATOR -androidx.constraintlayout.widget.R$layout: int abc_action_mode_close_item_material -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getHour(android.content.Context) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView -androidx.constraintlayout.widget.R$styleable: int KeyCycle_curveFit -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarItemBackground -androidx.hilt.R$layout: R$layout() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_backgroundTintMode +com.google.android.material.R$attr: int materialAlertDialogBodyTextStyle +androidx.recyclerview.R$dimen: int fastscroll_default_thickness +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_toId +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelBackground +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetLeft +com.google.android.material.R$drawable: int abc_text_select_handle_right_mtrl_dark +androidx.appcompat.resources.R$id: int accessibility_custom_action_5 +com.turingtechnologies.materialscrollbar.R$attr: int scrimAnimationDuration +wangdaye.com.geometricweather.db.entities.HourlyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +okhttp3.Cache: Cache(java.io.File,long) +com.turingtechnologies.materialscrollbar.R$layout: int abc_cascading_menu_item_layout +androidx.appcompat.R$id: int info +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedHeightMajor +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getThumbStrokeColor() +com.google.android.material.R$attr: int textColorSearchUrl +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textStyle +com.google.android.material.bottomnavigation.BottomNavigationMenuView: com.google.android.material.bottomnavigation.BottomNavigationItemView getNewItem() +androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_text_padding_left +androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context,android.util.AttributeSet) +okhttp3.ResponseBody: ResponseBody() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeDescription +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customBoolean +okhttp3.Cache$CacheResponseBody: long contentLength() +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetEndWithActions +androidx.hilt.R$layout: int custom_dialog +wangdaye.com.geometricweather.R$drawable: int ic_running_in_background +android.didikee.donate.R$style: int TextAppearance_AppCompat_Medium_Inverse +com.google.android.material.slider.BaseSlider: void setStepSize(float) +wangdaye.com.geometricweather.R$font: int product_sans_black_italic +wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.entities.LocationEntity readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.R$string: int key_list_animation_switch +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: double lon +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_WARM_FALLING +wangdaye.com.geometricweather.R$string: int key_notification_color +io.reactivex.internal.subscribers.StrictSubscriber: void onSubscribe(org.reactivestreams.Subscription) +wangdaye.com.geometricweather.R$dimen: int abc_text_size_subhead_material +wangdaye.com.geometricweather.R$styleable: int[] KeyCycle +androidx.lifecycle.Transformations$3 +androidx.vectordrawable.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMaxWidth +com.google.android.material.R$attr: int visibilityMode +cyanogenmod.profiles.BrightnessSettings$1: cyanogenmod.profiles.BrightnessSettings[] newArray(int) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: boolean IsDaylightSaving +okhttp3.internal.http1.Http1Codec$ChunkedSource: void close() +com.google.android.material.R$id: int spacer +okio.SegmentPool: okio.Segment next +wangdaye.com.geometricweather.R$drawable: int flag_cs +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +androidx.hilt.R$id: int accessibility_custom_action_13 +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_disableDependentsState +okhttp3.Dispatcher: java.util.List runningCalls() +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.subjects.UnicastSubject window +androidx.appcompat.R$attr: int fontStyle androidx.preference.R$attr: int listMenuViewStyle -wangdaye.com.geometricweather.R$color: int colorRootDark_light -cyanogenmod.themes.ThemeManager: void onClientDestroyed(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$styleable: int Toolbar_collapseContentDescription -wangdaye.com.geometricweather.R$anim: int x2_decelerate_interpolator -wangdaye.com.geometricweather.db.entities.DailyEntity: int nighttimeTemperature -androidx.appcompat.R$attr: int windowActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedWidthMajor -okhttp3.OkHttpClient$1: int code(okhttp3.Response$Builder) -androidx.loader.R$attr: int fontProviderFetchStrategy -okhttp3.internal.Util$1: int compare(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$string: int material_hour_suffix -okhttp3.internal.http.RequestLine: java.lang.String get(okhttp3.Request,java.net.Proxy$Type) -cyanogenmod.providers.CMSettings$Global: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) -wangdaye.com.geometricweather.R$id: int sin -io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicLong requested -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_BYTES -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onComplete() -androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -com.google.android.material.chip.Chip: float getChipEndPadding() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.os.Bundle getOptions() -com.google.android.material.textfield.TextInputLayout: void setEndIconTintMode(android.graphics.PorterDuff$Mode) -com.turingtechnologies.materialscrollbar.R$attr: int suggestionRowLayout -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ENABLE -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void cancel() -android.didikee.donate.R$id: int action_menu_divider -wangdaye.com.geometricweather.R$array: int air_quality_co_unit_voices -com.xw.repo.bubbleseekbar.R$attr: int hideOnContentScroll -com.google.android.material.R$style: int Base_Widget_AppCompat_ListMenuView -retrofit2.Utils$GenericArrayTypeImpl: java.lang.reflect.Type componentType -wangdaye.com.geometricweather.R$attr: int headerLayout -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: cyanogenmod.app.ILiveLockScreenManagerProvider asInterface(android.os.IBinder) -james.adaptiveicon.R$attr: int actionMenuTextAppearance -cyanogenmod.weather.RequestInfo$Builder -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_readPersistentBytes -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance -cyanogenmod.app.ProfileManager: void removeProfile(cyanogenmod.app.Profile) -com.google.android.material.R$styleable: int LinearLayoutCompat_android_orientation -cyanogenmod.providers.CMSettings$Secure: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -io.reactivex.internal.subscriptions.SubscriptionHelper: void deferredRequest(java.util.concurrent.atomic.AtomicReference,java.util.concurrent.atomic.AtomicLong,long) -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$id: int flip -androidx.work.impl.utils.futures.AbstractFuture$Failure$1: java.lang.Throwable fillInStackTrace() -com.bumptech.glide.integration.okhttp.R$id: int none -androidx.appcompat.widget.ButtonBarLayout -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableTop -androidx.constraintlayout.widget.R$color: int abc_primary_text_disable_only_material_dark -cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onCustomTileRemoved -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean isEntityUpdateable() -com.turingtechnologies.materialscrollbar.R$style: int Platform_V21_AppCompat -io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function,boolean) -androidx.loader.R$styleable: int FontFamilyFont_ttcIndex -okhttp3.internal.Util: okhttp3.ResponseBody EMPTY_RESPONSE -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -androidx.appcompat.widget.ActionBarOverlayLayout: void setActionBarHideOffset(int) -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableRight -androidx.coordinatorlayout.R$attr: int fontProviderQuery -androidx.lifecycle.ProcessLifecycleOwner$3: ProcessLifecycleOwner$3(androidx.lifecycle.ProcessLifecycleOwner) -androidx.vectordrawable.R$dimen: int compat_notification_large_icon_max_height -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Bridge -cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(int,cyanogenmod.app.ThemeComponent,int) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver,java.lang.Throwable) -androidx.hilt.lifecycle.R$styleable: int[] Fragment -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$styleable: int AppCompatTheme_colorButtonNormal +android.didikee.donate.R$styleable: int ActionBar_indeterminateProgressStyle +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter daytimeWeatherCodeConverter +com.google.android.material.internal.ParcelableSparseBooleanArray: android.os.Parcelable$Creator CREATOR +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityDestroyed(android.app.Activity) +wangdaye.com.geometricweather.R$id: int deltaRelative +wangdaye.com.geometricweather.R$attr: int materialCalendarYearNavigationButton +com.google.android.material.R$attr: int titleMarginTop +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_min +com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_id +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Overline +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginEnd +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedHeightMinor() +android.didikee.donate.R$dimen: int abc_panel_menu_list_width +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setOnRefreshListener(androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnRefreshListener) +okhttp3.internal.cache2.Relay: long upstreamPos +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalAlign +com.google.android.material.R$styleable: int CardView_cardCornerRadius +com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_disable_only_material_light +androidx.fragment.R$color: R$color() +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedVoice(android.content.Context,float) +androidx.constraintlayout.widget.R$attr: int navigationIcon +com.google.android.material.chip.Chip: void setChipTextResource(int) +okio.RealBufferedSink$1: void close() +okio.AsyncTimeout$2: java.lang.String toString() +com.google.android.material.R$styleable: int FloatingActionButton_elevation +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_icon_padding +com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_square_large +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_14 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyleSmall +com.turingtechnologies.materialscrollbar.R$integer: int mtrl_chip_anim_duration +okhttp3.internal.platform.AndroidPlatform: java.lang.Object getStackTraceForCloseable(java.lang.String) +cyanogenmod.content.Intent: java.lang.String ACTION_THEME_UPDATED +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() +com.google.android.material.R$styleable: int GradientColor_android_startX +androidx.constraintlayout.widget.R$attr: int buttonBarNeutralButtonStyle +androidx.activity.R$styleable: int GradientColor_android_type +androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy: ConstraintProxy$BatteryChargingProxy() +com.google.android.material.slider.BaseSlider: float getStepSize() +com.google.android.material.R$color: int abc_tint_default +wangdaye.com.geometricweather.settings.activities.AboutActivity +okhttp3.MultipartBody: byte[] COLONSPACE +androidx.preference.R$dimen: int notification_subtext_size +retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type[] getLowerBounds() +wangdaye.com.geometricweather.R$string: int key_pressure_unit +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_liftOnScrollTargetViewId +okhttp3.ResponseBody$1: okhttp3.MediaType val$contentType +com.google.android.material.appbar.AppBarLayout: void addOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$BaseOnOffsetChangedListener) +james.adaptiveicon.R$dimen: int highlight_alpha_material_dark +androidx.viewpager.R$color: int secondary_text_default_material_light +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.Long getId() +com.google.android.material.R$styleable: int[] ExtendedFloatingActionButton_Behavior_Layout +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sBooleanValidator +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.R$styleable: int TabItem_android_icon +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.R$styleable: int MockView_mock_labelColor +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_line +com.jaredrummler.android.colorpicker.R$attr: int closeIcon +retrofit2.Retrofit$Builder: Retrofit$Builder() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_end +com.google.android.material.chip.Chip: void setCheckable(boolean) +james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMarkTintMode +org.greenrobot.greendao.AbstractDao: void update(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_end_inner_color +com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_default_thickness +androidx.lifecycle.LiveData$ObserverWrapper: boolean isAttachedTo(androidx.lifecycle.LifecycleOwner) +james.adaptiveicon.R$dimen: int abc_text_size_large_material +cyanogenmod.providers.CMSettings$DelimitedListValidator: java.lang.String mDelimiter +okhttp3.Response$Builder: okhttp3.Response$Builder addHeader(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum() +androidx.work.R$id: int accessibility_custom_action_8 +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetEndWithActions +okhttp3.internal.http.StatusLine: okhttp3.Protocol protocol +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableLeft +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_22 +androidx.hilt.work.R$color: int notification_action_color_filter +androidx.hilt.lifecycle.R$anim: int fragment_fade_exit +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_checkableBehavior +com.google.android.material.R$dimen: int mtrl_calendar_header_text_padding +cyanogenmod.app.CustomTile$ExpandedStyle$1: cyanogenmod.app.CustomTile$ExpandedStyle[] newArray(int) +com.google.android.material.R$color: int bright_foreground_disabled_material_light +android.didikee.donate.R$style: int Widget_AppCompat_Button_Colored +com.google.android.material.R$color: int design_box_stroke_color +android.didikee.donate.R$attr: int showDividers +androidx.constraintlayout.widget.R$attr: int staggered +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator +io.reactivex.disposables.ReferenceDisposable: ReferenceDisposable(java.lang.Object) +wangdaye.com.geometricweather.R$bool: int abc_action_bar_embed_tabs +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: FlowableConcatMap$ConcatMapInner(io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport) +okhttp3.Cache: int writeAbortCount +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust +com.google.android.material.R$styleable: int DrawerArrowToggle_spinBars +androidx.work.R$layout: int notification_action +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.Object adapt(retrofit2.Call) +androidx.legacy.coreutils.R$drawable: int notification_icon_background +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onError(java.lang.Throwable) +android.didikee.donate.R$styleable: int SearchView_suggestionRowLayout +wangdaye.com.geometricweather.R$id: int scrollIndicatorUp +cyanogenmod.themes.IThemeService: void registerThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) +androidx.appcompat.R$styleable: int AppCompatTheme_colorControlHighlight +androidx.preference.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_pixel +okio.HashingSink: void write(okio.Buffer,long) +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onNext(java.lang.Object) +androidx.lifecycle.extensions.R$attr: int alpha +wangdaye.com.geometricweather.R$xml +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_COLOR_AUTO_VALIDATOR +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +james.adaptiveicon.R$styleable: int MenuItem_actionViewClass +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float icePrecipitationProbability +io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.fuseable.SimpleQueue queue +wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity +androidx.preference.R$layout: int abc_tooltip +wangdaye.com.geometricweather.R$style: int activity_create_widget_done_button +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: java.lang.String getGroupName() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean +androidx.appcompat.widget.LinearLayoutCompat: int getShowDividers() +com.google.android.material.R$attr: int floatingActionButtonStyle +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_OBJECT +okio.Buffer: okio.ByteString sha512() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_to_on_mtrl_000 +androidx.work.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.recyclerview.widget.RecyclerView: void setNestedScrollingEnabled(boolean) +okhttp3.HttpUrl$Builder: void push(java.lang.String,int,int,boolean,boolean) +androidx.hilt.R$dimen: int notification_content_margin_start +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_voiceIcon +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.Window mWindow +androidx.loader.R$attr: int fontProviderCerts +com.google.android.material.datepicker.MaterialDatePicker +cyanogenmod.externalviews.ExternalViewProperties: int mWidth +wangdaye.com.geometricweather.R$styleable: int AlertDialog_singleChoiceItemLayout +com.google.android.material.R$color: int cardview_light_background +james.adaptiveicon.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_showAsAction +androidx.viewpager2.R$id: int notification_main_column +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +com.turingtechnologies.materialscrollbar.R$id: int select_dialog_listview +com.turingtechnologies.materialscrollbar.R$attr: int buttonTintMode +okhttp3.HttpUrl: java.net.URL url() +james.adaptiveicon.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_stroke_width_default +androidx.vectordrawable.animated.R$id: int text2 +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver +cyanogenmod.app.ProfileManager: void addNotificationGroup(android.app.NotificationGroup) +wangdaye.com.geometricweather.R$styleable: int PropertySet_android_alpha +androidx.preference.R$id: int search_edit_frame +okhttp3.internal.connection.StreamAllocation: java.net.Socket releaseAndAcquire(okhttp3.internal.connection.RealConnection) +android.didikee.donate.R$drawable: int abc_textfield_search_activated_mtrl_alpha +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getIcePrecipitationProbability() +androidx.constraintlayout.widget.R$integer: int config_tooltipAnimTime +james.adaptiveicon.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +androidx.preference.R$styleable: int LinearLayoutCompat_dividerPadding +okhttp3.internal.cache.CacheStrategy$Factory: boolean isFreshnessLifetimeHeuristic() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabInlineLabel +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleColor(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: double Value +com.google.android.material.R$attr: int paddingBottomNoButtons +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_DEFAULT_INDEX +androidx.appcompat.R$styleable: int ButtonBarLayout_allowStacking +com.turingtechnologies.materialscrollbar.R$styleable: int ButtonBarLayout_allowStacking +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Long id +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onError(java.lang.Throwable) +androidx.hilt.work.R$id: int accessibility_custom_action_18 +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +okhttp3.Request$Builder: okhttp3.Request$Builder cacheControl(okhttp3.CacheControl) +androidx.preference.R$styleable: int AppCompatTheme_actionBarTabStyle +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhaseIcon +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mSoundMode +androidx.appcompat.R$string: int abc_action_bar_home_description +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void run() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int level +cyanogenmod.externalviews.ExternalView$7: ExternalView$7(cyanogenmod.externalviews.ExternalView) +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +androidx.constraintlayout.widget.R$attr: int region_heightMoreThan +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService this$0 +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onSubscribe(io.reactivex.disposables.Disposable) +okhttp3.RealCall: okhttp3.Response getResponseWithInterceptorChain() +retrofit2.Platform$Android$MainThreadExecutor: Platform$Android$MainThreadExecutor() +com.xw.repo.bubbleseekbar.R$color: int primary_text_disabled_material_light +okhttp3.internal.http1.Http1Codec$FixedLengthSource: Http1Codec$FixedLengthSource(okhttp3.internal.http1.Http1Codec,long) +com.jaredrummler.android.colorpicker.R$attr: int showTitle +androidx.fragment.R$id: int accessibility_custom_action_9 +okhttp3.internal.cache2.Relay$RelaySource: okhttp3.internal.cache2.FileOperator fileOperator +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSnowPrecipitation(java.lang.Float) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.util.List value +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec CLEARTEXT +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetLeft +android.didikee.donate.R$drawable: int abc_action_bar_item_background_material +androidx.recyclerview.R$id: int async +com.google.android.material.bottomsheet.BottomSheetBehavior$SavedState +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Medium +com.google.android.material.R$attr: int panelBackground +android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_square_side +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial Imperial +okhttp3.internal.platform.Jdk9Platform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +androidx.loader.R$layout: int notification_action +wangdaye.com.geometricweather.R$drawable: int selectable_item_background_borderless +cyanogenmod.weather.WeatherInfo: int mWindSpeedUnit +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SeekBar +wangdaye.com.geometricweather.R$drawable: int abc_dialog_material_background +com.bumptech.glide.R$attr: int layout_anchor +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf +androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.os.Concierge$ParcelInfo +com.google.android.material.R$styleable: int AlertDialog_singleChoiceItemLayout +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_text_color +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float SulfurDioxide +wangdaye.com.geometricweather.R$drawable: int notif_temp_61 +android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_Alert +com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_selected +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5 +wangdaye.com.geometricweather.R$id: int container_main_aqi_progress +android.didikee.donate.R$style: int Base_V7_Theme_AppCompat +androidx.appcompat.R$attr: int autoSizePresetSizes +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_showAsAction +androidx.coordinatorlayout.R$id: int accessibility_custom_action_27 cyanogenmod.profiles.AirplaneModeSettings: int getValue() -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackTintList() -com.xw.repo.bubbleseekbar.R$string: int abc_menu_delete_shortcut_label -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderTextColor -wangdaye.com.geometricweather.R$styleable: int ActionBar_homeAsUpIndicator -wangdaye.com.geometricweather.R$styleable: int KeyPosition_transitionEasing -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer RIGHT_VALUE -com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_medium_material -com.google.android.material.R$styleable: int Motion_transitionEasing +androidx.hilt.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUpdateDate(java.util.Date) +androidx.preference.R$string: int not_set +okio.GzipSource: java.util.zip.Inflater inflater +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void rstStream(int,okhttp3.internal.http2.ErrorCode) +io.reactivex.internal.disposables.CancellableDisposable +androidx.appcompat.widget.AppCompatCheckedTextView: void setCheckMarkDrawable(int) +com.xw.repo.bubbleseekbar.R$drawable: int abc_tab_indicator_material +james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.R$attr: int drawerArrowStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_android_thumb +com.turingtechnologies.materialscrollbar.R$attr: int bottomSheetDialogTheme +com.turingtechnologies.materialscrollbar.R$attr: int closeIcon +okio.Pipe$PipeSink +wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_min +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Id +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Light +okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 +retrofit2.Converter +androidx.constraintlayout.widget.R$attr: int flow_firstHorizontalStyle +androidx.lifecycle.Lifecycle: Lifecycle() +wangdaye.com.geometricweather.R$string: int about_circular_progress_view +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status[] values() +androidx.transition.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_45 +wangdaye.com.geometricweather.R$styleable: int ActionBar_backgroundStacked +okhttp3.internal.ws.RealWebSocket$2 +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +cyanogenmod.themes.ThemeChangeRequest$1: cyanogenmod.themes.ThemeChangeRequest createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_container +com.google.android.material.R$attr: int textAppearanceListItemSmall +androidx.preference.R$layout: int abc_list_menu_item_radio +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Title +cyanogenmod.os.Build$CM_VERSION_CODES: int CANTALOUPE +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: io.reactivex.functions.Action onOverflow +androidx.hilt.R$layout: R$layout() +com.google.android.material.R$style: int Widget_AppCompat_ActionBar_Solid +wangdaye.com.geometricweather.R$styleable: int DialogPreference_negativeButtonText +com.google.android.material.bottomappbar.BottomAppBar: android.content.res.ColorStateList getBackgroundTint() +okhttp3.internal.http1.Http1Codec: okio.Sink newChunkedSink() +androidx.hilt.lifecycle.R$id: int fragment_container_view_tag +okhttp3.internal.http1.Http1Codec$ChunkedSource +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: int getStatus() +com.google.android.material.R$attr: int layout_constraintTop_toTopOf +wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +cyanogenmod.weather.CMWeatherManager: int requestWeatherUpdate(cyanogenmod.weather.WeatherLocation,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener) +androidx.preference.R$color: int abc_hint_foreground_material_dark +androidx.lifecycle.LifecycleObserver +com.google.android.material.R$styleable: int AppCompatTheme_alertDialogCenterButtons +androidx.constraintlayout.widget.R$attr: int panelMenuListTheme +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_LED_ON +com.google.android.material.R$styleable: int MaterialCalendar_android_windowFullscreen +androidx.appcompat.resources.R$dimen: int notification_small_icon_size_as_large +wangdaye.com.geometricweather.R$layout: int notification_action +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetEnd +android.didikee.donate.R$drawable: int abc_list_focused_holo +james.adaptiveicon.R$id: int time +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature WindChillTemperature +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircleRadius +okhttp3.internal.Util: java.util.List immutableList(java.lang.Object[]) +james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode resolve(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int[] AppCompatTextView +wangdaye.com.geometricweather.R$string: int greenDAO +android.didikee.donate.R$id: int action_bar_root +androidx.constraintlayout.widget.R$styleable: int[] Spinner +androidx.preference.R$style: int PreferenceFragment_Material +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: java.util.concurrent.atomic.AtomicReference upstream +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconTintMode +com.google.gson.LongSerializationPolicy$2 +wangdaye.com.geometricweather.R$dimen: int disabled_alpha_material_light +cyanogenmod.hardware.ICMHardwareService: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_popupMenuStyle +com.turingtechnologies.materialscrollbar.R$integer: int cancel_button_image_alpha +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_linearSeamless +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_FixedSize wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String value -james.adaptiveicon.R$layout: int abc_popup_menu_header_item_layout -com.google.android.material.R$attr: int behavior_saveFlags -okio.Pipe: okio.Source source() -okhttp3.Interceptor$Chain: int connectTimeoutMillis() -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -com.google.android.material.R$drawable: int abc_vector_test -wangdaye.com.geometricweather.R$styleable: int[] TextInputEditText -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SERBIAN -cyanogenmod.weather.WeatherInfo: WeatherInfo() -androidx.constraintlayout.widget.R$id: int action_mode_close_button -okio.Buffer: okio.ByteString hmacSha512(okio.ByteString) -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HourlyEntityDao getHourlyEntityDao() -okhttp3.CipherSuite: java.util.List forJavaNames(java.lang.String[]) -okio.Buffer: boolean request(long) -androidx.loader.R$id: int chronometer -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetStart -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTypeface(android.graphics.Typeface) -androidx.constraintlayout.widget.R$attr: int colorError -james.adaptiveicon.R$anim: R$anim() -androidx.activity.R$styleable: int[] ColorStateListItem -androidx.appcompat.R$dimen: int disabled_alpha_material_light -androidx.fragment.R$id: int blocking -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getStreet() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent -wangdaye.com.geometricweather.settings.activities.SettingsActivity -com.google.android.material.R$styleable: int PopupWindowBackgroundState_state_above_anchor -androidx.recyclerview.widget.GridLayoutManager: GridLayoutManager(android.content.Context,android.util.AttributeSet,int,int) -wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_dark -androidx.lifecycle.extensions.R$dimen: int compat_button_padding_horizontal_material -android.didikee.donate.R$styleable: int ColorStateListItem_android_alpha -com.turingtechnologies.materialscrollbar.R$attr: int actionProviderClass -okhttp3.internal.io.FileSystem$1: void rename(java.io.File,java.io.File) -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_arrowHeadLength -wangdaye.com.geometricweather.R$attr: int boxCollapsedPaddingTop -okhttp3.internal.cache.CacheInterceptor$1: okhttp3.internal.cache.CacheInterceptor this$0 -cyanogenmod.themes.ThemeManager$2$1 -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void disposeInner() -androidx.appcompat.widget.ActionBarOverlayLayout -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentListStyle -androidx.constraintlayout.widget.R$attr: int defaultQueryHint -wangdaye.com.geometricweather.R$layout: int design_layout_tab_text -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onNext(java.lang.Object) -cyanogenmod.providers.CMSettings$Secure: java.lang.String KILL_APP_LONGPRESS_BACK -com.google.android.material.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonCompat -androidx.constraintlayout.widget.R$attr: int triggerSlack -androidx.viewpager2.R$dimen: R$dimen() -com.turingtechnologies.materialscrollbar.R$animator: int design_fab_show_motion_spec -com.google.android.material.R$styleable: int AlertDialog_listLayout -androidx.preference.R$id: int accessibility_custom_action_18 -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeightSmall -wangdaye.com.geometricweather.R$plurals: int mtrl_badge_content_description -okhttp3.Cache: int ENTRY_METADATA -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void run() -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode AUTO -com.google.android.material.R$styleable: int TextInputLayout_android_hint -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: ObservableSampleTimed$SampleTimedNoLast(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.util.Date date -androidx.preference.R$styleable: int SwitchPreference_switchTextOn -okhttp3.Cache$CacheResponseBody$1: okhttp3.Cache$CacheResponseBody this$0 -com.google.android.material.R$id: int TOP_START -androidx.vectordrawable.R$layout: int custom_dialog -androidx.preference.R$styleable: int AppCompatSeekBar_android_thumb -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: float getActionTextColorAlpha() -android.didikee.donate.R$drawable: int abc_list_longpressed_holo -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_android_max -android.didikee.donate.R$style: int TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String content -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: int UnitType -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow snow -com.google.android.material.R$style: int CardView -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingStart -com.google.android.material.tabs.TabLayout: int getTabCount() -androidx.legacy.coreutils.R$styleable: R$styleable() -androidx.hilt.lifecycle.R$attr -wangdaye.com.geometricweather.R$style: int AndroidThemeColorAccentYellow -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog -androidx.lifecycle.FullLifecycleObserverAdapter$1 -com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_layout -android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -io.reactivex.internal.disposables.CancellableDisposable: CancellableDisposable(io.reactivex.functions.Cancellable) -androidx.preference.R$styleable: int MenuGroup_android_visible -cyanogenmod.app.ThemeVersion: int CM11 -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status SUCCESS -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node findByEntry(java.util.Map$Entry) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm10Desc -com.bumptech.glide.load.HttpException: int getStatusCode() -wangdaye.com.geometricweather.R$styleable: int Constraint_android_id -androidx.preference.MultiSelectListPreference$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotationX -androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$attr: int passwordToggleDrawable -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setTextColor(int) -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextColor(int) -com.github.rahatarmanahmed.cpv.R$attr: int cpv_thickness -com.turingtechnologies.materialscrollbar.R$attr: int titleTextColor -androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView -androidx.preference.R$color: int bright_foreground_inverse_material_light -okio.Buffer: okio.Buffer$UnsafeCursor readUnsafe() -com.google.android.material.R$attr: int checkedIconMargin -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean brandInfo -retrofit2.KotlinExtensions$await$2$2: void onFailure(retrofit2.Call,java.lang.Throwable) -okhttp3.internal.connection.RealConnection: okhttp3.Handshake handshake -okio.BufferedSource: int read(byte[],int,int) -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Light -com.google.android.material.R$styleable: int Slider_trackColor -cyanogenmod.app.ProfileGroup: android.net.Uri getSoundOverride() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void cancel() -androidx.hilt.R$id: int action_container -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_LANDSCAPE -com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_Overflow -okio.ByteString: int codePointIndexToCharIndex(java.lang.String,int) -okhttp3.Request: java.lang.Object tag(java.lang.Class) -androidx.hilt.lifecycle.R$attr: int font -james.adaptiveicon.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.R$string: int key_view_type -androidx.constraintlayout.widget.ConstraintLayout -com.google.android.material.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String url -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog_Alert -com.turingtechnologies.materialscrollbar.Indicator: int getIndicatorWidth() -androidx.preference.R$styleable: int[] ViewBackgroundHelper -com.google.android.material.R$dimen: int mtrl_textinput_outline_box_expanded_padding +com.google.android.material.R$styleable: int[] AnimatedStateListDrawableCompat +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SearchView +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarButtonStyle +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_48dp +com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_backgroundTintMode +okhttp3.Interceptor$Chain: okhttp3.Connection connection() +wangdaye.com.geometricweather.R$styleable: int Chip_chipIconVisible +com.xw.repo.bubbleseekbar.R$attr: int navigationContentDescription +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupWindow +com.google.android.material.R$attr: int tabIndicatorColor +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent FONT +androidx.legacy.coreutils.R$style +androidx.hilt.R$style: int TextAppearance_Compat_Notification_Info +cyanogenmod.themes.ThemeManager$1: ThemeManager$1(cyanogenmod.themes.ThemeManager) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_pivotY +okhttp3.Response: okhttp3.Request request() +okio.BufferedSource: long indexOfElement(okio.ByteString,long) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr Precip1hr +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_elevation +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int OTHER_STATE_HAS_VALUE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean +android.didikee.donate.R$attr: int dialogTheme +wangdaye.com.geometricweather.common.basic.models.weather.Base: Base(java.lang.String,long,java.util.Date,long,java.util.Date,long) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getWeather() +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$id: int notification_big_week_5 +android.didikee.donate.R$dimen: int abc_text_size_subhead_material +wangdaye.com.geometricweather.R$styleable: int ActionBar_progressBarPadding +wangdaye.com.geometricweather.R$attr: int region_widthMoreThan +com.xw.repo.bubbleseekbar.R$styleable: int[] ViewStubCompat +androidx.constraintlayout.utils.widget.ImageFilterButton +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_switchPreferenceStyle +james.adaptiveicon.R$styleable: int MenuItem_iconTintMode +wangdaye.com.geometricweather.R$attr: int cpv_allowPresets +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_phaseView +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalGap +wangdaye.com.geometricweather.R$id: int item_weather_daily_overview_text +androidx.viewpager.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline1 +androidx.constraintlayout.widget.R$styleable: int Layout_chainUseRtl +androidx.preference.R$styleable: int ActionBar_divider +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: long serialVersionUID +cyanogenmod.weather.RequestInfo: android.location.Location mLocation +wangdaye.com.geometricweather.R$attr: int shrinkMotionSpec +james.adaptiveicon.R$attr: int showAsAction +androidx.activity.R$styleable: int GradientColor_android_tileMode +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_pressed_holo_dark +okhttp3.OkHttpClient$Builder +okio.AsyncTimeout: boolean exit() +cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(android.os.Parcel) +wangdaye.com.geometricweather.remoteviews.config.Hilt_WeekWidgetConfigActivity +wangdaye.com.geometricweather.R$id: int activity_widget_config_container +okhttp3.internal.ws.WebSocketReader: okio.Buffer messageFrameBuffer +cyanogenmod.externalviews.ExternalViewProviderService$Provider: ExternalViewProviderService$Provider(cyanogenmod.externalviews.ExternalViewProviderService,android.os.Bundle) +androidx.constraintlayout.motion.widget.MotionLayout: long getNanoTime() +androidx.preference.R$style: int Base_Widget_AppCompat_Light_PopupMenu +wangdaye.com.geometricweather.R$drawable: int widget_trend_daily +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: AccuDailyResult$DailyForecasts$Temperature$Minimum() +androidx.core.R$styleable: int[] GradientColor +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerViewAccessibilityDelegate getCompatAccessibilityDelegate() +androidx.appcompat.R$id: int accessibility_action_clickable_span +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_27 +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onError(java.lang.Throwable) +io.reactivex.internal.subscribers.DeferredScalarSubscriber: boolean hasValue +cyanogenmod.externalviews.ExternalViewProperties: int getY() +com.xw.repo.bubbleseekbar.R$attr: int actionBarTabStyle +androidx.appcompat.widget.AppCompatTextView: int getFirstBaselineToTopHeight() +androidx.preference.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +androidx.viewpager2.R$attr: int fastScrollEnabled +com.google.android.material.theme.MaterialComponentsViewInflater: MaterialComponentsViewInflater() +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg +com.google.gson.internal.LinkedTreeMap: java.lang.Object writeReplace() +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_vertical_padding +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.google.android.material.R$id: int easeIn +com.xw.repo.bubbleseekbar.R$string: int abc_capital_off +wangdaye.com.geometricweather.R$attr: int editTextStyle +androidx.appcompat.R$string: int abc_searchview_description_search +androidx.preference.R$dimen: int abc_text_size_display_3_material +androidx.core.app.RemoteActionCompatParcelizer: RemoteActionCompatParcelizer() +androidx.work.impl.workers.ConstraintTrackingWorker +androidx.vectordrawable.animated.R$id: int time +com.google.android.material.R$styleable: int[] ForegroundLinearLayout +com.xw.repo.bubbleseekbar.R$id: int tabMode +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.constraintlayout.widget.R$color: int material_grey_800 +com.google.android.material.R$styleable: R$styleable() +androidx.dynamicanimation.R$dimen: int compat_button_inset_horizontal_material +androidx.appcompat.resources.R$layout: int notification_template_icon_group +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isResult +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +okio.Buffer: java.lang.String readUtf8Line(long) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver INNER_DISPOSED +com.google.android.material.R$id: int contentPanel +wangdaye.com.geometricweather.R$drawable: int notif_temp_34 +androidx.hilt.R$id: int accessibility_custom_action_2 +okio.SegmentedByteString: int hashCode() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_disabled_holo_dark +com.jaredrummler.android.colorpicker.R$attr: int checkBoxPreferenceStyle +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean disposed +com.google.android.material.R$styleable: int ConstraintLayout_placeholder_content +com.google.android.material.R$attr: int layout_goneMarginEnd +retrofit2.Platform: java.util.List defaultCallAdapterFactories(java.util.concurrent.Executor) +com.jaredrummler.android.colorpicker.R$attr: int dialogIcon +wangdaye.com.geometricweather.R$dimen: int abc_dialog_padding_top_material +okhttp3.internal.http2.Http2Connection$Builder: int pingIntervalMillis +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_min +androidx.recyclerview.R$dimen: int fastscroll_minimum_range +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int UVIndex +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_CheckBox +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_122 +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.disposables.Disposable upstream +com.xw.repo.bubbleseekbar.R$attr: int goIcon +wangdaye.com.geometricweather.R$styleable: int MaterialTextView_lineHeight +james.adaptiveicon.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.R$attr: int title +com.google.android.material.R$attr: int animationMode +androidx.transition.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +android.didikee.donate.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +com.xw.repo.bubbleseekbar.R$id: int right +wangdaye.com.geometricweather.R$attr: int colorPrimaryDark +com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_android_alpha +retrofit2.RequestBuilder: void addQueryParam(java.lang.String,java.lang.String,boolean) +androidx.viewpager.R$styleable: int GradientColor_android_centerX +okio.Okio: okio.Sink sink(java.io.OutputStream) +androidx.appcompat.widget.ActivityChooserView: void setProvider(androidx.core.view.ActionProvider) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_RadioButton +com.google.android.material.R$styleable: int Layout_barrierDirection +okhttp3.internal.http2.Http2Reader$ContinuationSource +retrofit2.OkHttpCall$NoContentResponseBody: OkHttpCall$NoContentResponseBody(okhttp3.MediaType,long) +wangdaye.com.geometricweather.R$attr: int layout_constraintTop_creator +com.google.android.material.button.MaterialButton: void setStrokeColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_10 +wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndTitle +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Iterable) +com.jaredrummler.android.colorpicker.R$style: int Preference_Information_Material +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_100 +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterOverflowTextColor +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_10 +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMenuItemView +androidx.recyclerview.R$dimen: int notification_right_icon_size +android.didikee.donate.R$attr: int subtitleTextStyle +androidx.viewpager2.R$layout: int notification_action +io.reactivex.Observable: io.reactivex.Observable flatMapIterable(io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +wangdaye.com.geometricweather.R$id: int notification_multi_city +wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context,android.util.AttributeSet,int) +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Light +com.google.android.material.R$id: int text_input_error_icon +androidx.appcompat.R$color: int primary_text_default_material_dark +com.turingtechnologies.materialscrollbar.R$layout: int mtrl_layout_snackbar_include +com.google.android.material.R$drawable: int abc_list_selector_holo_light +com.google.android.material.chip.Chip: void setCheckedIconEnabled(boolean) +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$color: int mtrl_filled_background_color +cyanogenmod.alarmclock.ClockContract$InstancesColumns: android.net.Uri CONTENT_URI +com.google.android.material.internal.BaselineLayout +androidx.fragment.R$id: int notification_background +wangdaye.com.geometricweather.R$font: R$font() +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicInteger wip +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource RESOURCE_DISK_CACHE -okhttp3.HttpUrl: java.lang.String host -okhttp3.internal.http.RealInterceptorChain: okhttp3.EventListener eventListener +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream newStream(int,java.util.List,boolean) +com.jaredrummler.android.colorpicker.R$id: int title_template +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_greyIcon +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Light +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadPing(okio.ByteString) +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: java.lang.Throwable error +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_switchStyle +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSyncDuration +okhttp3.internal.tls.OkHostnameVerifier +io.reactivex.internal.subscribers.StrictSubscriber +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +androidx.appcompat.R$color: int dim_foreground_disabled_material_dark +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingStart +wangdaye.com.geometricweather.db.entities.AlertEntity: void setDate(java.util.Date) +cyanogenmod.hardware.CMHardwareManager: int getVibratorIntensity() +cyanogenmod.weather.WeatherInfo$DayForecast$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.loader.R$dimen: int notification_top_pad_large_text +com.google.android.material.R$id: int right_side +androidx.constraintlayout.widget.R$attr: int autoSizePresetSizes +androidx.preference.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +androidx.transition.R$id: int save_overlay_view +androidx.constraintlayout.widget.R$anim: int abc_slide_in_bottom +com.google.android.material.R$drawable: int ic_clock_black_24dp +com.google.android.material.R$styleable: int AppBarLayout_Layout_layout_scrollFlags +android.didikee.donate.R$dimen: int abc_dialog_padding_material +cyanogenmod.app.Profile: void setName(java.lang.String) +com.google.android.material.card.MaterialCardView: int getContentPaddingBottom() +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +wangdaye.com.geometricweather.R$attr: int animate_relativeTo +okhttp3.HttpUrl: java.lang.String fragment() +androidx.vectordrawable.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$attr: int dayStyle +cyanogenmod.app.Profile: int mProfileType +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_arrowHeadLength +androidx.preference.R$attr: int buttonBarStyle +cyanogenmod.providers.CMSettings$Global: float getFloat(android.content.ContentResolver,java.lang.String) +retrofit2.KotlinExtensions$awaitResponse$2$2: kotlinx.coroutines.CancellableContinuation $continuation +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String LongPhrase +androidx.preference.R$styleable: int ActionBar_contentInsetStartWithNavigation +okhttp3.internal.http2.Http2Codec: void finishRequest() +androidx.preference.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.R$drawable: int flag_de +com.google.android.material.R$id: int forever +androidx.preference.R$drawable: int abc_list_selector_background_transition_holo_dark +wangdaye.com.geometricweather.R$styleable: int[] PopupWindowBackgroundState +com.google.android.material.R$integer: int mtrl_calendar_year_selector_span +android.didikee.donate.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_dark +com.turingtechnologies.materialscrollbar.R$integer: int abc_config_activityDefaultDur +com.xw.repo.bubbleseekbar.R$attr: int dividerVertical +com.xw.repo.bubbleseekbar.R$attr: int iconTint +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: AtmoAuraQAResult$Advice$AdviceContext() +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_Toolbar +com.google.android.material.R$attr: int circularRadius +com.google.android.material.R$attr: int badgeGravity +androidx.constraintlayout.widget.R$styleable: int Variant_region_heightLessThan +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActivityChooserView +io.reactivex.Observable: io.reactivex.Observable take(long,java.util.concurrent.TimeUnit) +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_SECURE +com.google.android.material.R$styleable: int Constraint_android_maxHeight +com.google.android.material.bottomappbar.BottomAppBar: float getFabTranslationY() +androidx.coordinatorlayout.R$attr: int alpha +androidx.appcompat.R$id: int search_go_btn +com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context) +wangdaye.com.geometricweather.R$string: int about_greenDAO +wangdaye.com.geometricweather.R$id: int item_aqi_progress +androidx.preference.R$attr: int switchPreferenceStyle +com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +android.didikee.donate.R$id: int never +com.google.android.material.R$attr: int flow_lastHorizontalBias +com.google.android.material.R$attr: int layout_editor_absoluteX +wangdaye.com.geometricweather.background.polling.basic.ForegroundUpdateService +androidx.dynamicanimation.R$id: int line1 +androidx.constraintlayout.widget.R$color: int primary_material_light +com.google.android.material.tabs.TabLayout: int getTabGravity() +com.google.android.material.R$style: int Widget_MaterialComponents_Button_UnelevatedButton +wangdaye.com.geometricweather.background.polling.PollingUpdateHelper: void setOnPollingUpdateListener(wangdaye.com.geometricweather.background.polling.PollingUpdateHelper$OnPollingUpdateListener) +androidx.hilt.R$dimen: int notification_subtext_size +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_summaryOff +cyanogenmod.app.suggest.ApplicationSuggestion$1: cyanogenmod.app.suggest.ApplicationSuggestion[] newArray(int) +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onResume +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type UNRESTRICTED +androidx.appcompat.R$attr: int actionProviderClass +wangdaye.com.geometricweather.R$id: int percent +com.google.android.material.R$styleable: int LinearLayoutCompat_showDividers +androidx.constraintlayout.widget.Placeholder: int getEmptyVisibility() +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_circle_large +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleTextAppearance +com.jaredrummler.android.colorpicker.ColorPickerView: int getPreferredHeight() +com.google.android.material.R$animator: int mtrl_card_state_list_anim +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTopCompat +androidx.vectordrawable.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_margin +okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part create(okhttp3.Headers,okhttp3.RequestBody) +androidx.lifecycle.extensions.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.db.entities.DaoSession daoSession +james.adaptiveicon.R$attr: int fontProviderPackage +com.google.android.material.R$string: int character_counter_overflowed_content_description +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_progressBarPadding +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags +com.turingtechnologies.materialscrollbar.Indicator: void setText(int) +io.reactivex.internal.disposables.DisposableHelper +androidx.appcompat.widget.ActionBarContainer: void setStackedBackground(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorContentDescription +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginStart +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Title +cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: int MPH +android.didikee.donate.R$id: int image +androidx.lifecycle.ComputableLiveData$2: androidx.lifecycle.ComputableLiveData this$0 +james.adaptiveicon.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_dialogType +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: CaiYunMainlyResult$CurrentBean$HumidityBean() +androidx.viewpager2.R$styleable: int FontFamilyFont_fontStyle +androidx.appcompat.R$attr: int titleMargins +androidx.appcompat.R$attr: int elevation +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_BarSize +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getUrl() +com.google.android.material.R$dimen: int hint_alpha_material_light +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.lang.Throwable error +okhttp3.Cache$2: boolean canRemove +wangdaye.com.geometricweather.R$drawable: int notif_temp_26 +io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator[] values() +com.jaredrummler.android.colorpicker.R$attr: int singleLineTitle +androidx.preference.R$drawable: int tooltip_frame_dark +cyanogenmod.library.R$attr: R$attr() +com.google.gson.FieldNamingPolicy: java.lang.String translateName(java.lang.reflect.Field) +androidx.appcompat.R$style: int Platform_AppCompat_Light +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.transition.R$id: int line3 +androidx.viewpager.widget.ViewPager: void setPageMargin(int) +androidx.drawerlayout.R$styleable +androidx.viewpager.R$styleable: int GradientColor_android_tileMode +com.google.android.material.R$attr: int layout_constraintCircle +androidx.appcompat.R$string: int abc_menu_delete_shortcut_label +wangdaye.com.geometricweather.R$id: int widget_trend_hourly +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: void setBrands(java.util.List) +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Bridge +android.didikee.donate.R$drawable: int notification_bg_normal_pressed +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_cursor_material +com.github.rahatarmanahmed.cpv.CircularProgressView$7: CircularProgressView$7(com.github.rahatarmanahmed.cpv.CircularProgressView) +io.reactivex.internal.subscriptions.BasicQueueSubscription +com.google.android.material.R$attr: int colorButtonNormal +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getHeadDescription() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: java.lang.String English +androidx.appcompat.resources.R$id: int accessibility_custom_action_18 +androidx.lifecycle.Lifecycle: void removeObserver(androidx.lifecycle.LifecycleObserver) +com.xw.repo.bubbleseekbar.R$layout: int abc_search_dropdown_item_icons_2line +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String value +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +androidx.preference.R$attr: int paddingBottomNoButtons +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() +com.google.android.material.R$style: int CardView_Dark +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast +android.didikee.donate.R$styleable: int CompoundButton_buttonTintMode +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedWidthMinor +wangdaye.com.geometricweather.R$dimen: int abc_panel_menu_list_width +okio.Buffer: short readShortLe() +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Body1 +okhttp3.EventListener: void responseHeadersStart(okhttp3.Call) +okhttp3.internal.platform.OptionalMethod: java.lang.reflect.Method getPublicMethod(java.lang.Class,java.lang.String,java.lang.Class[]) +androidx.constraintlayout.widget.R$attr: int paddingEnd +cyanogenmod.providers.CMSettings$Global: int getInt(android.content.ContentResolver,java.lang.String) +cyanogenmod.externalviews.KeyguardExternalView: boolean isInteractive() +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void setInteractivity(boolean) +androidx.constraintlayout.widget.R$styleable: int SearchView_android_maxWidth +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams access$400(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.R$attr: int behavior_autoHide +cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String TIMEZONE_OFFSET +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_swoop_duration +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String district +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText +com.google.android.material.R$id: int accessibility_custom_action_30 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_fontVariationSettings +com.bumptech.glide.R$attr: int fontStyle +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.LifecycleOwner get() +cyanogenmod.app.ThemeVersion: java.util.List getComponentVersions() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNo2(java.lang.Float) +android.didikee.donate.R$attr: int popupWindowStyle +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.R$attr: int actionModeCloseDrawable +cyanogenmod.app.CustomTile$Builder: boolean mCollapsePanel +com.xw.repo.bubbleseekbar.R$attr: int actionBarSize +androidx.preference.R$dimen: int abc_action_bar_content_inset_with_nav +okhttp3.internal.Internal: okhttp3.Call newWebSocketCall(okhttp3.OkHttpClient,okhttp3.Request) +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_menu +com.jaredrummler.android.colorpicker.R$id: int search_edit_frame +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial() +james.adaptiveicon.R$id: int async +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_android_minWidth +okhttp3.CacheControl: okhttp3.CacheControl FORCE_CACHE +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxyAuthenticator(okhttp3.Authenticator) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_RC4_128_SHA +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator USE_EDGE_SERVICE_FOR_GESTURES_VALIDATOR +wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_xml +androidx.preference.R$id: int accessibility_custom_action_2 +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +okio.Util: long reverseBytesLong(long) +wangdaye.com.geometricweather.R$attr: int buttonGravity +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedHeightMinor +androidx.preference.R$drawable: int abc_textfield_search_default_mtrl_alpha +android.support.v4.os.IResultReceiver$Stub$Proxy: void send(int,android.os.Bundle) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupMenu +androidx.coordinatorlayout.R$drawable: int notification_bg +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Headline +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean fused +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +com.xw.repo.bubbleseekbar.R$drawable: int abc_popup_background_mtrl_mult +com.turingtechnologies.materialscrollbar.R$attr: int cardElevation +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +androidx.drawerlayout.R$dimen: int notification_small_icon_background_padding +io.reactivex.Observable: io.reactivex.Observable map(io.reactivex.functions.Function) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$attr: int windowFixedHeightMajor +com.jaredrummler.android.colorpicker.R$attr: int actionBarSize +androidx.preference.R$string: int expand_button_title +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$array: int precipitation_unit_voices +retrofit2.Callback +wangdaye.com.geometricweather.R$drawable: int ic_search +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric +wangdaye.com.geometricweather.R$string: int feedback_running_in_background +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: int getCircularRevealScrimColor() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitationProbability(java.lang.Float) +com.google.android.material.R$color: int abc_tint_edittext +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_256_CCM_8_SHA256 +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getWeatherText() +wangdaye.com.geometricweather.db.entities.DaoMaster: DaoMaster(org.greenrobot.greendao.database.Database) +com.google.android.material.R$id: int container +com.xw.repo.BubbleSeekBar: void setProgress(float) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: AccuLocationResult$TimeZone() +wangdaye.com.geometricweather.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedReadableDb(char[]) +androidx.constraintlayout.widget.R$attr: int titleTextAppearance +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_controlBackground +androidx.preference.R$styleable: int SearchView_searchIcon +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +com.google.android.material.R$styleable: int ConstraintSet_layout_constrainedWidth +wangdaye.com.geometricweather.db.entities.HourlyEntity: long time +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$EntrySet entrySet +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextBackground +androidx.preference.R$styleable: int AppCompatTheme_listDividerAlertDialog +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderQuery +androidx.preference.R$styleable: int ViewStubCompat_android_layout +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView +androidx.preference.R$styleable: int AppCompatTheme_actionModeCopyDrawable +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_background_overlay_color_alpha +wangdaye.com.geometricweather.R$dimen: int widget_standard_weather_icon_size +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_ignoreBatteryOptBtn +androidx.drawerlayout.R$dimen: int notification_right_side_padding_top +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_closeItemLayout +androidx.recyclerview.R$id: int text2 +androidx.appcompat.R$color: int bright_foreground_material_light +androidx.constraintlayout.widget.R$color: int background_material_dark +androidx.appcompat.R$color: int abc_search_url_text +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: double Value +androidx.recyclerview.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.appcompat.R$style: int Widget_AppCompat_Button_Borderless +androidx.transition.R$color: R$color() +com.google.android.material.slider.Slider: int getLabelBehavior() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +james.adaptiveicon.R$attr: int isLightTheme +androidx.constraintlayout.widget.R$attr: int switchMinWidth +androidx.constraintlayout.widget.R$attr: int contentInsetRight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: int getStatus() +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +wangdaye.com.geometricweather.R$styleable: int SearchView_iconifiedByDefault +wangdaye.com.geometricweather.R$styleable: int Transition_constraintSetStart +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitation +androidx.lifecycle.extensions.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_baseline_to_top_fullscreen +com.google.android.material.R$attr: int elevation +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +com.google.android.material.tabs.TabLayout: void setInlineLabelResource(int) +androidx.viewpager.R$style: int TextAppearance_Compat_Notification +androidx.core.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather weather12H +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle +androidx.appcompat.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +com.google.android.material.R$anim: int abc_slide_in_bottom +retrofit2.Response: okhttp3.Response raw() +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_clear +cyanogenmod.app.CustomTileListenerService$1 +cyanogenmod.providers.CMSettings$System: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) +com.google.gson.internal.LazilyParsedNumber: int hashCode() +android.didikee.donate.R$styleable: int SwitchCompat_switchMinWidth +james.adaptiveicon.R$layout: int notification_action +androidx.preference.R$styleable: int AppCompatTheme_panelMenuListTheme +com.google.android.material.R$dimen: int mtrl_badge_radius +androidx.work.R$attr: R$attr() +com.google.android.material.R$styleable: int BottomAppBar_fabAlignmentMode +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_1 +androidx.appcompat.R$styleable: int SwitchCompat_track +com.google.android.material.R$style: int Base_Widget_AppCompat_Toolbar +androidx.transition.R$attr: int fontProviderFetchStrategy +com.google.android.material.card.MaterialCardView: void setCardBackgroundColor(android.content.res.ColorStateList) +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.ICMWeatherManager sWeatherManagerService +cyanogenmod.profiles.StreamSettings$1 +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onComplete() +androidx.constraintlayout.widget.R$styleable: int Transition_autoTransition +cyanogenmod.app.IPartnerInterface: void shutdown() +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float snowPrecipitation +wangdaye.com.geometricweather.R$color: int abc_primary_text_disable_only_material_light +io.reactivex.internal.queue.SpscArrayQueue: int calcElementOffset(long) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Body1 +android.didikee.donate.R$styleable: int AlertDialog_buttonPanelSideLayout +com.xw.repo.bubbleseekbar.R$attr: int preserveIconSpacing +com.jaredrummler.android.colorpicker.R$attr: int editTextBackground +wangdaye.com.geometricweather.R$attr: R$attr() +okhttp3.CacheControl: boolean isPrivate +cyanogenmod.app.ProfileGroup: void setLightsMode(cyanogenmod.app.ProfileGroup$Mode) +wangdaye.com.geometricweather.common.basic.models.weather.Base: long getUpdateTime() io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.disposables.CompositeDisposable disposables -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm10(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int[] BackgroundStyle -com.google.android.material.R$styleable: int CardView_cardElevation -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotation -cyanogenmod.themes.ThemeChangeRequest: java.util.Map getPerAppOverlays() -wangdaye.com.geometricweather.R$attr: int colorButtonNormal -james.adaptiveicon.R$style: int Base_V22_Theme_AppCompat -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_icon_padding -okio.HashingSink: void write(okio.Buffer,long) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$attr: int popupWindowStyle -wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_container -wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_item_tint -okhttp3.internal.ws.RealWebSocket: int sentPingCount() -androidx.preference.R$attr: int backgroundTint -okhttp3.Cache$Entry: int code -androidx.preference.DialogPreference -wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_focused_alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindDircEnd(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_scaleX -wangdaye.com.geometricweather.R$attr: int colorPrimaryVariant -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property AqiText -wangdaye.com.geometricweather.R$dimen: int compat_button_inset_vertical_material -com.google.android.material.R$dimen: int design_navigation_max_width -androidx.core.R$id: int right_icon -androidx.hilt.R$attr: int fontProviderQuery -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd -com.jaredrummler.android.colorpicker.R$attr: int searchIcon -com.google.android.material.R$dimen: int mtrl_calendar_dialog_background_inset -wangdaye.com.geometricweather.R$styleable: int Transition_staggered -androidx.hilt.work.R$styleable: int GradientColor_android_endX +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode[] getDisplayModes() +android.didikee.donate.R$dimen: int hint_pressed_alpha_material_light +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.History yesterday +androidx.viewpager.R$id: int title +okhttp3.Cache: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) +wangdaye.com.geometricweather.R$id: int src_atop +cyanogenmod.app.suggest.ApplicationSuggestion$1: ApplicationSuggestion$1() +io.reactivex.internal.observers.BasicIntQueueDisposable: void dispose() +androidx.appcompat.widget.SearchView: int getMaxWidth() +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_subtitle +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.transition.R$dimen: int notification_large_icon_height +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_cancelLiveLockScreen +androidx.fragment.R$style: int TextAppearance_Compat_Notification +com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu +wangdaye.com.geometricweather.R$plurals +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_icon_text_spacing +okhttp3.Cookie: boolean domainMatch(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Time +okio.HashingSink: HashingSink(okio.Sink,java.lang.String) +com.google.android.material.R$attr: int liftOnScrollTargetViewId +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void setCancellable(io.reactivex.functions.Cancellable) +com.google.android.material.R$layout: int design_layout_tab_text +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: int UnitType +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_weight +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy[] values() +androidx.preference.R$drawable: int abc_btn_default_mtrl_shape +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_expandedHintEnabled +androidx.work.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$styleable: int GradientColor_android_endY +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer ragweedIndex +androidx.preference.R$styleable: int GradientColor_android_startY +okhttp3.internal.http.RealResponseBody: okio.BufferedSource source() +com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String province +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float ParticulateMatter2_5 +androidx.appcompat.widget.ActionMenuPresenter$ActionButtonSubmenu +cyanogenmod.weather.WeatherInfo$1: cyanogenmod.weather.WeatherInfo createFromParcel(android.os.Parcel) +com.google.android.material.textfield.TextInputLayout: int getCounterMaxLength() +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_cornerRadius +james.adaptiveicon.R$bool: int abc_action_bar_embed_tabs +androidx.appcompat.resources.R$attr: R$attr() +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_fabCustomSize +retrofit2.converter.gson.GsonResponseBodyConverter: GsonResponseBodyConverter(com.google.gson.Gson,com.google.gson.TypeAdapter) +androidx.recyclerview.R$id: int accessibility_custom_action_4 +com.turingtechnologies.materialscrollbar.R$attr: int switchTextAppearance +wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentHeight +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +james.adaptiveicon.R$id: int action_context_bar +okhttp3.internal.http2.Settings: boolean getEnablePush(boolean) +androidx.work.R$id: int action_image +com.google.android.material.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets +com.google.android.material.R$id: int tag_accessibility_pane_title +com.google.android.material.R$styleable: int Constraint_layout_constraintTag +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_RC4_128_SHA +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onComplete() +com.google.android.material.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +okhttp3.Request: okhttp3.RequestBody body +com.google.android.material.R$attr: int layout +cyanogenmod.providers.CMSettings$System: java.lang.String ZEN_PRIORITY_ALLOW_LIGHTS +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.WeatherEntityDao weatherEntityDao +wangdaye.com.geometricweather.R$string: int wind_4 +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sunContainer +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog_Alert +okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part create(okhttp3.RequestBody) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial Imperial +com.google.android.material.R$style: int Widget_AppCompat_PopupMenu_Overflow +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String insee +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitationDuration(java.lang.Float) +okhttp3.Request: okhttp3.CacheControl cacheControl +com.google.android.material.R$styleable: int CardView_cardPreventCornerOverlap +androidx.appcompat.R$styleable: int AppCompatTheme_radioButtonStyle +com.google.android.material.R$styleable: int TextInputEditText_textInputLayoutFocusedRectEnabled +wangdaye.com.geometricweather.R$id: int textinput_suffix_text +androidx.coordinatorlayout.R$id: int action_divider +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_2 +androidx.swiperefreshlayout.R$id: int async +cyanogenmod.app.ThemeVersion: int CM11 +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabView +androidx.hilt.R$id: int accessibility_custom_action_1 +wangdaye.com.geometricweather.R$id: int guideline +wangdaye.com.geometricweather.R$color: int background_floating_material_light +com.google.android.material.R$attr: int helperTextTextAppearance +wangdaye.com.geometricweather.R$string: int aqi_1 +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver parent +wangdaye.com.geometricweather.R$styleable: int[] MaterialButtonToggleGroup +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver,java.lang.Throwable) +androidx.preference.R$styleable: int SearchView_defaultQueryHint +com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextInputEditText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String from +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMenuItemView_android_minWidth +android.didikee.donate.R$attr: int actionButtonStyle +cyanogenmod.power.IPerformanceManager$Stub: cyanogenmod.power.IPerformanceManager asInterface(android.os.IBinder) +wangdaye.com.geometricweather.R$styleable: int[] AppCompatTextHelper +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircle +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: wangdaye.com.geometricweather.db.entities.ChineseCityEntity readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.R$string: int feedback_collect_succeed +androidx.appcompat.resources.R$color: int ripple_material_light +io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver[] CANCELLED +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String Key +wangdaye.com.geometricweather.R$id: int position +androidx.constraintlayout.widget.R$styleable: int[] View +okio.ForwardingSink: void flush() +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_cancelOngoingRequests +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalGap +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4 +com.google.android.material.R$attr: int number +androidx.fragment.R$id: int tag_accessibility_heading +cyanogenmod.providers.CMSettings$System: java.lang.String VOLBTN_MUSIC_CONTROLS +wangdaye.com.geometricweather.R$string: int feedback_updated_in_background +com.google.android.material.R$string: int path_password_strike_through +com.google.android.material.floatingactionbutton.FloatingActionButton: void setEnsureMinTouchTargetSize(boolean) +androidx.lifecycle.ReflectiveGenericLifecycleObserver: java.lang.Object mWrapped +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +wangdaye.com.geometricweather.R$id: int treeIcon +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState[] values() +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_material_light +android.didikee.donate.R$style: int Base_V21_Theme_AppCompat +okhttp3.internal.cache2.Relay: long FILE_HEADER_SIZE +com.google.android.material.R$attr: int listPreferredItemPaddingRight +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy DROP +cyanogenmod.platform.Manifest$permission: java.lang.String READ_WEATHER +okhttp3.Protocol: okhttp3.Protocol H2_PRIOR_KNOWLEDGE +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onLockscreenSlideOffsetChanged(float) +okhttp3.Dispatcher: int queuedCallsCount() +androidx.preference.R$dimen: int abc_config_prefDialogWidth +okhttp3.internal.ws.RealWebSocket$PingRunnable +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getNotificationThemePackageName() +androidx.appcompat.resources.R$id: int accessibility_custom_action_8 +androidx.constraintlayout.widget.R$attr: int sizePercent +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit valueOf(java.lang.String) +androidx.vectordrawable.animated.R$id +androidx.vectordrawable.animated.R$styleable: int[] FontFamilyFont +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +androidx.preference.Preference$BaseSavedState: android.os.Parcelable$Creator CREATOR +androidx.preference.R$styleable: int MenuItem_numericModifiers +androidx.lifecycle.extensions.R$styleable: int[] FontFamily +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: long serialVersionUID +androidx.preference.R$attr: int spanCount +wangdaye.com.geometricweather.R$styleable: int ClockHandView_materialCircleRadius +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_orderingFromXml +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Dialog +androidx.preference.R$dimen: int disabled_alpha_material_light +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showAlphaSlider +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_pressed +androidx.appcompat.R$string +okhttp3.internal.Util: boolean decodeIpv4Suffix(java.lang.String,int,int,byte[],int) +com.google.android.material.R$styleable: int TextInputLayout_startIconContentDescription +androidx.constraintlayout.widget.R$styleable: int ActionBar_itemPadding +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_editor_absoluteY +com.turingtechnologies.materialscrollbar.R$attr: int chipIconSize +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_scaleX +androidx.preference.R$drawable: int abc_cab_background_top_material +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_legacy_text_color_selector +androidx.drawerlayout.R$styleable: int FontFamilyFont_fontVariationSettings +com.xw.repo.BubbleSeekBar: void setOnProgressChangedListener(com.xw.repo.BubbleSeekBar$OnProgressChangedListener) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String unitId +james.adaptiveicon.R$attr: int trackTint +okhttp3.internal.Internal: boolean equalsNonHost(okhttp3.Address,okhttp3.Address) +io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable NEVER +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getThermalState +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetBottom +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_DialogWhenLarge +okhttp3.internal.Internal: okhttp3.internal.connection.RouteDatabase routeDatabase(okhttp3.ConnectionPool) +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +androidx.recyclerview.widget.RecyclerView: void suppressLayout(boolean) +cyanogenmod.weatherservice.ServiceRequest: void fail() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +androidx.viewpager2.R$attr: int stackFromEnd +com.bumptech.glide.R$dimen: R$dimen() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_width_major +com.google.android.material.R$color: int mtrl_text_btn_text_color_selector +com.google.android.material.R$styleable: int Motion_animate_relativeTo +cyanogenmod.externalviews.KeyguardExternalViewProviderService: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider createExternalView(android.os.Bundle) +okhttp3.internal.cache.CacheInterceptor$1: okhttp3.internal.cache.CacheRequest val$cacheRequest +androidx.preference.R$styleable: int AppCompatTextView_android_textAppearance +com.turingtechnologies.materialscrollbar.R$styleable: int[] SnackbarLayout +androidx.appcompat.R$color: int primary_dark_material_dark +com.jaredrummler.android.colorpicker.R$id: int expand_activities_button +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String ICON_URI +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +androidx.legacy.coreutils.R$dimen: int notification_action_text_size +okio.ForwardingSource: okio.Timeout timeout() +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_height_material +org.greenrobot.greendao.AbstractDao: boolean isStandardSQLite +androidx.preference.R$styleable: int PreferenceFragmentCompat_android_layout +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum Minimum +wangdaye.com.geometricweather.R$styleable: int[] MultiSelectListPreference +com.google.android.material.R$color: int bright_foreground_inverse_material_dark +androidx.constraintlayout.widget.R$styleable: int Spinner_android_popupBackground +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int LIGHT_SNOW_SHOWERS +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ChipGroup +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile build() +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation RIGHT +wangdaye.com.geometricweather.R$styleable: int ScrimInsetsFrameLayout_insetForeground +androidx.preference.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.google.android.material.R$attr: int mock_labelColor +androidx.preference.R$layout: int preference_information +cyanogenmod.app.IProfileManager: boolean notificationGroupExistsByName(java.lang.String) +androidx.loader.app.LoaderManagerImpl$LoaderViewModel: LoaderManagerImpl$LoaderViewModel() +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_HIGH +androidx.dynamicanimation.R$styleable: int GradientColor_android_endColor +com.google.android.material.R$dimen: int fastscroll_default_thickness +com.jaredrummler.android.colorpicker.R$string: int abc_menu_function_shortcut_label +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getHourlyForecast() +wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_android_textAppearance +androidx.preference.R$styleable: int SwitchCompat_thumbTextPadding +com.google.android.material.R$style: int Base_Widget_AppCompat_Button +io.reactivex.Observable: io.reactivex.Observable timestamp(java.util.concurrent.TimeUnit) +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: ICMTelephonyManager$Stub$Proxy(android.os.IBinder) +androidx.constraintlayout.widget.R$attr: int path_percent +com.jaredrummler.android.colorpicker.R$attr: int initialActivityCount +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onComplete() +wangdaye.com.geometricweather.R$dimen: int design_navigation_max_width +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Small +androidx.constraintlayout.widget.R$attr: int targetId +androidx.preference.R$attr: int drawableEndCompat +androidx.drawerlayout.R$dimen: R$dimen() +wangdaye.com.geometricweather.R$attr: int preferenceCategoryTitleTextAppearance +com.google.android.material.R$dimen: int mtrl_btn_focused_z +com.google.android.material.R$drawable: int material_ic_clear_black_24dp +androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityPreCreated(android.app.Activity,android.os.Bundle) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int getStatus() +wangdaye.com.geometricweather.R$drawable: int shortcuts_haze_foreground +androidx.appcompat.R$attr: int actionButtonStyle +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.Query queryRawCreateListArgs(java.lang.String,java.util.Collection) +wangdaye.com.geometricweather.R$id: int widget_day_week_title +io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +androidx.appcompat.R$style: int Base_AlertDialog_AppCompat_Light +android.didikee.donate.R$styleable: int SwitchCompat_thumbTintMode +com.jaredrummler.android.colorpicker.ColorPanelView: int getBorderColor() +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +wangdaye.com.geometricweather.R$string: int precipitation_middle +okhttp3.Headers$Builder: okhttp3.Headers$Builder set(java.lang.String,java.util.Date) +androidx.appcompat.R$layout: int custom_dialog +androidx.constraintlayout.widget.R$id: int sawtooth +james.adaptiveicon.R$styleable: int AlertDialog_multiChoiceItemLayout +com.google.android.material.R$interpolator: int mtrl_linear +com.google.android.material.slider.RangeSlider: void setThumbTintList(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$drawable: int design_password_eye +james.adaptiveicon.R$attr: int background +com.google.android.material.R$styleable: int ConstraintSet_android_elevation +androidx.preference.R$attr: int allowStacking +androidx.core.R$id: int accessibility_custom_action_24 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX +com.google.android.material.R$color: int mtrl_calendar_item_stroke_color +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: ObservableConcatWithMaybe$ConcatWithObserver(io.reactivex.Observer,io.reactivex.MaybeSource) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.Observer downstream +retrofit2.RequestFactory$Builder: java.lang.annotation.Annotation[][] parameterAnnotationsArray +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonStyle +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: float mMin +com.github.rahatarmanahmed.cpv.R$integer +cyanogenmod.app.CustomTile$ExpandedItem: android.app.PendingIntent onClickPendingIntent +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +androidx.appcompat.R$styleable: int StateListDrawable_android_exitFadeDuration +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: java.lang.String Unit +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabTextColor +wangdaye.com.geometricweather.R$color: int mtrl_textinput_default_box_stroke_color +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarDivider +com.google.android.material.R$color: int tooltip_background_light +androidx.viewpager2.R$attr: int ttcIndex +androidx.fragment.app.FragmentActivity +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getPowerProfile +com.google.android.material.textfield.TextInputLayout: void setHelperTextEnabled(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.util.Date StartTime +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$attr: int paddingEnd +android.didikee.donate.R$styleable: int ViewBackgroundHelper_backgroundTintMode +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Small +cyanogenmod.hardware.ICMHardwareService: boolean setVibratorIntensity(int) +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$color: int design_error +retrofit2.RequestFactory$Builder: boolean gotQueryName +com.google.android.material.R$string: int mtrl_picker_out_of_range +wangdaye.com.geometricweather.R$animator: int weather_clear_day_2 +wangdaye.com.geometricweather.R$drawable: int ic_toolbar_back +com.turingtechnologies.materialscrollbar.R$id: int italic +androidx.preference.R$attr: int showDividers +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat +james.adaptiveicon.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.util.Date getDate() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tMax +wangdaye.com.geometricweather.R$layout: int widget_clock_day_horizontal +androidx.core.R$id: int accessibility_custom_action_21 +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_dependency +com.turingtechnologies.materialscrollbar.R$attr: int spanCount +com.github.rahatarmanahmed.cpv.CircularProgressView: float initialStartAngle +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: AccuDailyResult() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: long updateTime +androidx.preference.R$anim: int abc_shrink_fade_out_from_bottom +wangdaye.com.geometricweather.R$attr: int currentState +wangdaye.com.geometricweather.R$color: int design_dark_default_color_error +okhttp3.internal.platform.Platform: boolean isAndroid() +androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_end +androidx.viewpager2.R$style +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: void close() +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setApparentTemperature(java.lang.Integer) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String from +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.appcompat.R$color: int primary_text_default_material_light +androidx.work.R$id: int action_divider +james.adaptiveicon.R$styleable: int AppCompatTextView_android_textAppearance +wangdaye.com.geometricweather.R$id: int action_appStore +wangdaye.com.geometricweather.R$dimen: int design_tab_text_size_2line +wangdaye.com.geometricweather.R$id: int visible_removing_fragment_view_tag +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_isThemeBeingProcessed +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial +com.google.android.material.tabs.TabLayout$TabView +androidx.dynamicanimation.R$layout: int notification_template_part_chronometer +androidx.preference.R$style: int Base_Animation_AppCompat_Tooltip +com.jaredrummler.android.colorpicker.R$attr: int paddingTopNoTitle +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void schedule() +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moldIndex +androidx.recyclerview.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Empty +androidx.transition.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.R$font: int product_sans_medium +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: double Value +com.turingtechnologies.materialscrollbar.R$id: int stretch +james.adaptiveicon.R$dimen: int abc_action_bar_elevation_material +android.support.v4.app.INotificationSideChannel$Stub +androidx.appcompat.R$color: int primary_material_light +androidx.constraintlayout.widget.R$styleable: int Transition_constraintSetStart +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_container +com.google.android.material.R$layout: int mtrl_alert_select_dialog_multichoice +androidx.appcompat.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +com.jaredrummler.android.colorpicker.R$styleable: int View_android_focusable +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.Integer alti +androidx.appcompat.resources.R$id: int action_text +okhttp3.OkHttpClient: java.util.List networkInterceptors() +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_NoActionBar +wangdaye.com.geometricweather.R$array: int pollen_unit_values +com.google.android.material.R$styleable: int Layout_layout_constraintStart_toStartOf +com.google.android.material.R$integer: int mtrl_card_anim_duration_ms +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int CloudCover +androidx.preference.R$styleable: int Preference_shouldDisableView +wangdaye.com.geometricweather.R$id: int icon +com.google.android.material.R$style: int Base_Widget_MaterialComponents_Chip +wangdaye.com.geometricweather.R$id: int notification_base_weather +com.xw.repo.bubbleseekbar.R$attr: int buttonBarNeutralButtonStyle +com.google.android.material.R$color: int material_slider_active_tick_marks_color +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onError(java.lang.Throwable) +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderAuthority +androidx.hilt.lifecycle.R$layout: int notification_template_part_time +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_dropDownWidth +wangdaye.com.geometricweather.R$id: int normal +okhttp3.Cache$Entry: java.lang.String RECEIVED_MILLIS +cyanogenmod.weather.WeatherLocation: WeatherLocation() +androidx.cardview.R$attr: int cardBackgroundColor +wangdaye.com.geometricweather.R$anim: int abc_fade_out +okhttp3.internal.http2.Settings: int getHeaderTableSize() +androidx.hilt.work.R$id: int accessibility_custom_action_0 +okhttp3.internal.http2.Http2Stream: void waitForIo() +james.adaptiveicon.R$layout: int abc_list_menu_item_checkbox okhttp3.internal.ws.WebSocketReader -androidx.appcompat.R$styleable: int AppCompatTheme_spinnerStyle -io.reactivex.internal.disposables.EmptyDisposable: int requestFusion(int) -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource) -androidx.lifecycle.extensions.R$id: int action_container -com.google.android.material.R$styleable: int Slider_trackColorInactive -okhttp3.HttpUrl: java.lang.String FRAGMENT_ENCODE_SET_URI -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 -androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy: ConstraintProxy$BatteryNotLowProxy() -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: ObservableReplay$SizeBoundReplayBuffer(int) -androidx.cardview.widget.CardView: void setCardBackgroundColor(android.content.res.ColorStateList) -androidx.preference.R$styleable: int CheckBoxPreference_android_summaryOn -androidx.swiperefreshlayout.R$id: int tag_accessibility_clickable_spans -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_chainUseRtl -com.google.gson.FieldNamingPolicy$4 -androidx.constraintlayout.widget.R$drawable: R$drawable() -androidx.appcompat.R$layout: int abc_alert_dialog_title_material -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] PREVAILING_RULE -com.jaredrummler.android.colorpicker.R$color: int material_grey_800 -cyanogenmod.app.CustomTile: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$string: int feedback_ignore_battery_optimizations_title +com.jaredrummler.android.colorpicker.R$style: int Preference_Information +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_creator +okhttp3.internal.connection.RouteSelector: okhttp3.internal.connection.RouteDatabase routeDatabase +android.didikee.donate.R$dimen: int abc_text_size_display_4_material +androidx.customview.R$id: int title +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String hourlyForecast +com.bumptech.glide.integration.okhttp.R$id: int end +okhttp3.WebSocket +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit +cyanogenmod.providers.CMSettings$Secure: CMSettings$Secure() +io.reactivex.exceptions.UndeliverableException +cyanogenmod.weather.WeatherLocation: android.os.Parcelable$Creator CREATOR +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_Solid +io.reactivex.disposables.ReferenceDisposable: void onDisposed(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: AccuDailyResult$DailyForecasts$Night$WindGust$Direction() +wangdaye.com.geometricweather.R$id: int action_about +james.adaptiveicon.R$id: int alertTitle +com.google.android.material.slider.Slider: void setStepSize(float) +okio.Buffer: okio.BufferedSink write(okio.Source,long) +james.adaptiveicon.R$styleable: int SwitchCompat_switchPadding +wangdaye.com.geometricweather.R$integer +com.github.rahatarmanahmed.cpv.CircularProgressView: void onAttachedToWindow() +com.google.android.material.R$attr: int errorIconDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayoutStates +androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$dimen: int abc_dialog_min_width_major +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer uvIndex +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language HUNGARIAN +com.xw.repo.bubbleseekbar.R$attr: int coordinatorLayoutStyle +androidx.appcompat.R$styleable: int ActionBar_contentInsetLeft +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +io.reactivex.Observable: io.reactivex.Observable dematerialize() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutSelectorSupport parent +androidx.viewpager2.R$id: int action_text +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getNighttimeWeatherCode() +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_resetAll +com.google.android.material.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitationDuration() +com.google.android.material.R$styleable: int Slider_tickColorInactive +androidx.constraintlayout.widget.R$attr: int srcCompat +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_backgroundSplit +com.bumptech.glide.R$style +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showAlphaSlider +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: java.lang.Object poll() +androidx.preference.EditTextPreference: void setOnBindEditTextListener(androidx.preference.EditTextPreference$OnBindEditTextListener) +com.jaredrummler.android.colorpicker.R$anim: int abc_slide_out_bottom +okhttp3.internal.http2.Http2Connection: long access$200(okhttp3.internal.http2.Http2Connection) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: ExternalViewProviderService$Provider$ProviderImpl$7(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,int,int,int,int,boolean,android.graphics.Rect) +okhttp3.internal.cache2.FileOperator: FileOperator(java.nio.channels.FileChannel) +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration getPrecipitationDuration() +com.turingtechnologies.materialscrollbar.R$attr: int searchHintIcon +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_95 +io.reactivex.Observable: io.reactivex.Observable unsubscribeOn(io.reactivex.Scheduler) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CUSTOM_ENABLE_VALIDATOR +wangdaye.com.geometricweather.R$styleable: int Slider_thumbRadius +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() +wangdaye.com.geometricweather.R$drawable: int abc_textfield_default_mtrl_alpha +wangdaye.com.geometricweather.R$style: int Widget_Design_Snackbar +cyanogenmod.os.Concierge: cyanogenmod.os.Concierge$ParcelInfo receiveParcel(android.os.Parcel) +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: long serialVersionUID +okio.RealBufferedSource: boolean request(long) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float no2 +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_orderInCategory +retrofit2.KotlinExtensions$awaitResponse$2$2: void onFailure(retrofit2.Call,java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitation(java.lang.Float) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Tooltip +com.jaredrummler.android.colorpicker.R$attr: int fontVariationSettings +androidx.viewpager2.R$dimen: int notification_action_icon_size +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.xw.repo.bubbleseekbar.R$attr: int actionModeSplitBackground +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +androidx.core.R$styleable: int GradientColor_android_gradientRadius +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setTargetOffsetTopAndBottom(int) +okhttp3.internal.http2.Http2Codec: okhttp3.Response$Builder readHttp2HeadersList(okhttp3.Headers,okhttp3.Protocol) +androidx.appcompat.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +wangdaye.com.geometricweather.common.basic.models.weather.Base: long getPublishTime() +androidx.activity.R$attr: int font +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Pollen getPollen() +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: long serialVersionUID +cyanogenmod.app.Profile: java.util.Map networkConnectionSubIds +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getSubtitle() +okhttp3.Address: javax.net.ssl.HostnameVerifier hostnameVerifier +androidx.appcompat.R$attr: int contentInsetRight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric Metric +cyanogenmod.app.Profile$ExpandedDesktopMode: int DISABLE +wangdaye.com.geometricweather.R$id: int item_about_translator_title +android.didikee.donate.R$color: int material_grey_50 +com.google.android.material.R$attr: int endIconTint +androidx.work.R$color +androidx.fragment.R$id: int accessibility_custom_action_30 +cyanogenmod.power.PerformanceManagerInternal: void launchBoost() +cyanogenmod.app.LiveLockScreenManager: java.lang.String TAG +wangdaye.com.geometricweather.R$attr: int transitionPathRotate +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: boolean equals(java.lang.Object) +androidx.vectordrawable.animated.R$dimen: int compat_button_inset_horizontal_material +androidx.loader.R$styleable: int[] ColorStateListItem +androidx.appcompat.R$styleable: int Toolbar_buttonGravity +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +com.google.android.material.R$string: int abc_shareactionprovider_share_with_application +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Time +okhttp3.internal.http2.Header: okio.ByteString TARGET_AUTHORITY +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_78 +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_state_dragged +android.didikee.donate.R$styleable: int AppCompatTheme_popupMenuStyle +com.xw.repo.bubbleseekbar.R$color: int primary_text_disabled_material_dark +com.google.android.material.R$string: int mtrl_picker_range_header_only_end_selected +okhttp3.RequestBody$2: RequestBody$2(okhttp3.MediaType,int,byte[],int) +com.turingtechnologies.materialscrollbar.R$attr: int thumbTextPadding +androidx.vectordrawable.animated.R$attr: int alpha +androidx.appcompat.R$dimen: int abc_search_view_preferred_height +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: boolean isDisposed() +com.xw.repo.BubbleSeekBar +com.xw.repo.bubbleseekbar.R$attr: int initialActivityCount +okhttp3.internal.cache.InternalCache: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) +androidx.lifecycle.extensions.R$dimen: int notification_large_icon_height +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startColor +com.google.android.material.R$styleable: int GradientColor_android_startY +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconSize +okhttp3.Cookie: boolean persistent() +android.didikee.donate.R$dimen: int abc_action_button_min_height_material +androidx.drawerlayout.R$id: int icon_group +androidx.lifecycle.extensions.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: long EffectiveEpochDate +androidx.preference.R$styleable: int View_paddingEnd +wangdaye.com.geometricweather.R$string: int temperature +james.adaptiveicon.R$attr: int listChoiceBackgroundIndicator +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.appcompat.widget.ActionMenuView: android.view.Menu getMenu() +okhttp3.CipherSuite: java.lang.String toString() +androidx.hilt.work.R$id: int notification_main_column +org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.database.Database db +wangdaye.com.geometricweather.R$color: int abc_search_url_text_selected +androidx.transition.R$dimen: int compat_button_inset_vertical_material +com.turingtechnologies.materialscrollbar.R$id: int textinput_error +com.google.android.material.progressindicator.ProgressIndicator: int getCircularInset() +androidx.constraintlayout.widget.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit valueOf(java.lang.String) +androidx.constraintlayout.widget.R$drawable: int abc_seekbar_track_material +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$string: int settings_language +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_splitTrack +com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay +okhttp3.TlsVersion: okhttp3.TlsVersion[] values() +com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarStyle +androidx.preference.R$attr: int enableCopying +androidx.appcompat.widget.AppCompatEditText: void setSupportBackgroundTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$array: int live_wallpaper_weather_kind_values +cyanogenmod.profiles.StreamSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +com.jaredrummler.android.colorpicker.R$dimen: int abc_cascading_menus_min_smallest_width +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver inner +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIcon(android.graphics.drawable.Drawable) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Toolbar +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_ON +androidx.constraintlayout.widget.R$drawable: int abc_list_pressed_holo_light +com.turingtechnologies.materialscrollbar.R$anim: int abc_fade_out +com.jaredrummler.android.colorpicker.R$styleable: int PopupWindowBackgroundState_state_above_anchor +org.greenrobot.greendao.AbstractDaoMaster: int schemaVersion +androidx.constraintlayout.widget.R$attr: int elevation +okhttp3.Response$Builder: okhttp3.Response$Builder sentRequestAtMillis(long) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_9 +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder expiresAt(long) +androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$id: int customPanel +io.reactivex.Observable: io.reactivex.Observable skip(long) +com.google.android.material.R$styleable: int ProgressIndicator_indicatorSize +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$drawable: int notif_temp_85 +com.google.android.material.R$attr: int switchMinWidth +cyanogenmod.themes.ThemeChangeRequest$1: java.lang.Object[] newArray(int) +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_horizontalDivider +androidx.constraintlayout.widget.R$attr: int measureWithLargestChild +com.google.android.material.R$styleable: int[] PopupWindowBackgroundState +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_Solid +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: java.lang.String Unit +com.google.android.material.tabs.TabLayout: void setInlineLabel(boolean) +androidx.transition.R$id: int icon +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_backgroundStacked +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeWetBulbTemperature +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getRippleColor() +wangdaye.com.geometricweather.R$id: int item_card_display_sortButton +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startColor +androidx.dynamicanimation.R$id: int notification_main_column +androidx.constraintlayout.widget.R$attr: int subMenuArrow +com.xw.repo.bubbleseekbar.R$dimen: int abc_list_item_padding_horizontal_material +com.xw.repo.bubbleseekbar.R$id: int radio +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_137 +com.turingtechnologies.materialscrollbar.R$attr: int paddingBottomNoButtons +okhttp3.RealCall: okhttp3.Request originalRequest +io.reactivex.disposables.ReferenceDisposable: boolean isDisposed() +cyanogenmod.alarmclock.ClockContract: ClockContract() +androidx.preference.R$color: int abc_tint_edittext +wangdaye.com.geometricweather.R$attr: int bsb_auto_adjust_section_mark +okhttp3.OkHttpClient: okhttp3.Cache cache() +com.google.android.material.R$color: int primary_text_default_material_dark +androidx.preference.R$attr: int listLayout +androidx.constraintlayout.widget.R$attr: int fontWeight +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog_Alert +cyanogenmod.themes.ThemeManager: android.os.Handler mHandler +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: int UnitType +com.google.android.material.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric +androidx.preference.PreferenceGroup$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$id: int circle_center +com.google.android.material.R$string: int abc_action_bar_up_description +io.reactivex.Observable: io.reactivex.Observable sample(io.reactivex.ObservableSource) +okhttp3.logging.LoggingEventListener: void dnsEnd(okhttp3.Call,java.lang.String,java.util.List) +androidx.preference.R$attr: int layout_insetEdge +com.google.android.material.circularreveal.cardview.CircularRevealCardView: CircularRevealCardView(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: ObservableReplay$UnboundedReplayBuffer(int) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void drainNormal() +androidx.preference.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.R$attr: int dragScale +wangdaye.com.geometricweather.R$attr: int chipStrokeColor +com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundMode(int) +androidx.viewpager.R$attr: int fontProviderPackage +androidx.preference.R$styleable: int PreferenceGroup_orderingFromXml +wangdaye.com.geometricweather.R$dimen: int abc_text_size_medium_material +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String uvLevel +com.bumptech.glide.integration.okhttp.R$id: int action_divider +io.reactivex.exceptions.OnErrorNotImplementedException: OnErrorNotImplementedException(java.lang.String,java.lang.Throwable) +com.google.android.material.R$color: int mtrl_btn_transparent_bg_color +androidx.work.R$layout: int custom_dialog +com.google.android.material.textfield.TextInputLayout: void setEndIconCheckable(boolean) +com.google.android.material.R$id: int mtrl_card_checked_layer_id +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindSpeed +com.google.android.material.R$color: int design_dark_default_color_secondary +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder tlsVersions(okhttp3.TlsVersion[]) +com.google.android.material.R$xml +wangdaye.com.geometricweather.R$color: int abc_btn_colored_text_material +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1 +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: boolean tryOnError(java.lang.Throwable) +android.didikee.donate.R$integer: int abc_config_activityDefaultDur +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onNext(java.lang.Object) +androidx.recyclerview.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getWritableDb() +wangdaye.com.geometricweather.R$styleable: int[] MaterialScrollBar +retrofit2.OkHttpCall: void enqueue(retrofit2.Callback) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarItemBackground +com.google.gson.internal.LinkedTreeMap +com.google.android.material.internal.CheckableImageButton$SavedState +com.google.android.material.R$drawable: int design_snackbar_background +wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_lifted +wangdaye.com.geometricweather.R$string: int action_alert +androidx.dynamicanimation.R$styleable: int GradientColor_android_startX +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: android.os.IBinder mRemote +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +com.jaredrummler.android.colorpicker.R$attr: int layout_anchorGravity +okhttp3.internal.http2.Http2Connection: void close(okhttp3.internal.http2.ErrorCode,okhttp3.internal.http2.ErrorCode) +okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithoutIndexingIndexedName(int) +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: long serialVersionUID +io.reactivex.Observable: io.reactivex.Single toList(int) +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setIconResStart(int) +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSize +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_3 +androidx.constraintlayout.widget.R$layout: int notification_template_icon_group +okio.Buffer: long indexOf(okio.ByteString) +com.google.android.material.R$layout: int abc_action_menu_item_layout +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorSchemeColors(int[]) +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_START +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +androidx.appcompat.view.menu.ListMenuItemView: void setSubMenuArrowVisible(boolean) +okhttp3.internal.connection.ConnectionSpecSelector +cyanogenmod.app.CMContextConstants: java.lang.String CM_WEATHER_SERVICE +android.didikee.donate.R$dimen: int abc_control_padding_material +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: java.util.concurrent.TimeUnit unit +androidx.preference.R$dimen: int abc_action_bar_default_padding_start_material +com.google.android.material.R$styleable: int TextAppearance_textAllCaps +com.google.android.material.R$drawable: int abc_seekbar_thumb_material +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogStyle +com.jaredrummler.android.colorpicker.R$id: int search_voice_btn +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +androidx.work.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$styleable: int KeyCycle_framePosition +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_Bridge +cyanogenmod.app.CustomTile$GridExpandedStyle: CustomTile$GridExpandedStyle() +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Body_Text +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Subhead +io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean delayError +wangdaye.com.geometricweather.R$styleable: int[] Transform +james.adaptiveicon.R$drawable: int abc_ic_star_half_black_36dp +com.google.android.material.R$string: int abc_searchview_description_submit +okhttp3.MediaType: java.lang.String subtype() +james.adaptiveicon.R$drawable: int abc_tab_indicator_mtrl_alpha +retrofit2.converter.gson.GsonRequestBodyConverter: com.google.gson.Gson gson +okio.Base64: java.lang.String encode(byte[]) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvLevel(java.lang.String) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date endDate +com.xw.repo.bubbleseekbar.R$drawable: int tooltip_frame_light +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_29 +androidx.preference.R$id: int accessibility_custom_action_25 +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_DAILY_OVERVIEW +androidx.core.app.NotificationCompatSideChannelService +james.adaptiveicon.R$attr: int buttonTintMode +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge +com.jaredrummler.android.colorpicker.R$dimen: int hint_alpha_material_dark +wangdaye.com.geometricweather.db.entities.HistoryEntity: long time +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonStyle +com.jaredrummler.android.colorpicker.R$attr: int actionModeCutDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +com.google.android.material.R$attr: int scrimVisibleHeightTrigger +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog +io.reactivex.internal.util.NotificationLite$ErrorNotification: NotificationLite$ErrorNotification(java.lang.Throwable) +android.didikee.donate.R$styleable: int SwitchCompat_trackTintMode +wangdaye.com.geometricweather.R$attr: int popupWindowStyle +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu +com.jaredrummler.android.colorpicker.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_TEMPERATURE +james.adaptiveicon.R$attr: int drawerArrowStyle +androidx.appcompat.R$styleable: int[] DrawerArrowToggle +wangdaye.com.geometricweather.common.ui.widgets.DonateImageView +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeProcessingListener mThemeProcessingListener +androidx.constraintlayout.widget.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$attr: int drawableEndCompat +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_16dp +io.reactivex.internal.schedulers.RxThreadFactory: java.lang.String toString() +com.xw.repo.bubbleseekbar.R$id: int action_bar_subtitle +com.turingtechnologies.materialscrollbar.R$attr: int stackFromEnd +com.turingtechnologies.materialscrollbar.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.appcompat.widget.AppCompatImageView: void setImageURI(android.net.Uri) +androidx.customview.R$drawable: int notification_bg_low +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog +androidx.appcompat.R$attr: int actionModePasteDrawable +com.google.android.material.R$id: int easeInOut +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_toTopOf +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf +okhttp3.internal.http2.Http2Connection$6 +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: int bufferSize +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void dispose() +wangdaye.com.geometricweather.R$color: int design_fab_stroke_top_outer_color +wangdaye.com.geometricweather.R$attr: int layout_anchor +wangdaye.com.geometricweather.R$styleable: int Constraint_android_visibility +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircle +androidx.constraintlayout.widget.R$id: int postLayout +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.entities.DailyEntity readEntity(android.database.Cursor,int) +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$302(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +com.xw.repo.bubbleseekbar.R$id: int search_plate +okhttp3.internal.connection.RouteException +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_GREEN_INDEX +androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_alpha +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.functions.Function mapper +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: java.lang.String timezone +androidx.transition.R$styleable: int GradientColor_android_startY +okhttp3.internal.ws.RealWebSocket: java.util.concurrent.ScheduledFuture cancelFuture +wangdaye.com.geometricweather.R$id: int material_clock_period_toggle +androidx.appcompat.R$styleable: int GradientColor_android_endColor +androidx.lifecycle.ViewModelStores: ViewModelStores() +androidx.constraintlayout.widget.R$attr: int backgroundTintMode +androidx.work.R$string +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +okhttp3.MediaType: java.util.regex.Pattern TYPE_SUBTYPE +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_overflow_material +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerNext(java.lang.Object) +io.reactivex.internal.observers.DeferredScalarDisposable: java.lang.Object value +android.didikee.donate.R$attr: int switchTextAppearance +wangdaye.com.geometricweather.R$attr: int path_percent +androidx.customview.R$dimen: int notification_main_column_padding_top +androidx.preference.R$styleable: int SearchView_closeIcon +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void setResource(io.reactivex.disposables.Disposable) +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableTop +com.google.android.material.chip.Chip: Chip(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$array +androidx.constraintlayout.widget.R$anim: int abc_slide_out_bottom +james.adaptiveicon.R$styleable: int AppCompatTheme_dialogTheme +androidx.customview.R$id: int italic +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.work.NetworkType: androidx.work.NetworkType NOT_REQUIRED +com.turingtechnologies.materialscrollbar.R$drawable: int design_snackbar_background +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xms +androidx.core.R$styleable: int FontFamilyFont_android_fontWeight +androidx.constraintlayout.motion.widget.MotionLayout: java.util.ArrayList getDefinedTransitions() +com.google.android.material.R$styleable: int RecyclerView_android_orientation +okhttp3.internal.http2.Header: java.lang.String TARGET_PATH_UTF8 +com.bumptech.glide.load.engine.GlideException: long serialVersionUID +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWindDirection() +androidx.preference.R$style: int Widget_AppCompat_RatingBar_Small +okhttp3.HttpUrl: java.lang.String USERNAME_ENCODE_SET +com.google.android.material.R$attr: int textColorAlertDialogListItem +com.jaredrummler.android.colorpicker.R$string: int search_menu_title +io.reactivex.Observable: io.reactivex.Observable unsafeCreate(io.reactivex.ObservableSource) +okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withReadTimeout(int,java.util.concurrent.TimeUnit) +com.turingtechnologies.materialscrollbar.R$attr: int height +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterTextColor +retrofit2.Call: boolean isExecuted() +com.google.android.material.navigation.NavigationView: void setItemBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$attr: int onPositiveCross +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endColor +com.google.android.material.R$drawable: int abc_list_selector_holo_dark +com.turingtechnologies.materialscrollbar.R$drawable: int avd_hide_password +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String country +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +androidx.fragment.app.SuperNotCalledException: SuperNotCalledException(java.lang.String) +com.google.android.material.R$styleable: int AppCompatTheme_radioButtonStyle +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date getUpdateDate() +com.google.android.material.R$style: int Base_Widget_AppCompat_EditText +com.google.android.material.R$styleable: int AppCompatTheme_dropDownListViewStyle +androidx.preference.R$styleable: int[] SeekBarPreference +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_subtitleTextStyle +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +androidx.constraintlayout.utils.widget.MockView +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Bridge +wangdaye.com.geometricweather.db.entities.LocationEntity: void setResidentPosition(boolean) +com.xw.repo.bubbleseekbar.R$attr: int actionBarSplitStyle +androidx.constraintlayout.widget.R$drawable: int abc_btn_check_material +androidx.lifecycle.extensions.R$id: int line1 +wangdaye.com.geometricweather.R$attr: int tooltipForegroundColor +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_end +io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +cyanogenmod.app.CustomTile: CustomTile(android.os.Parcel) +com.turingtechnologies.materialscrollbar.R$bool +cyanogenmod.providers.CMSettings$DelimitedListValidator: android.util.ArraySet mValidValueSet +com.google.android.material.R$attr: int buttonStyle +okhttp3.internal.connection.StreamAllocation +com.google.android.material.R$styleable: int TextInputLayout_boxCollapsedPaddingTop +cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener: void onLookupCityRequestCompleted(int,java.util.List) +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeApparentTemperature(java.lang.Integer) +com.turingtechnologies.materialscrollbar.R$dimen: int cardview_default_elevation +com.xw.repo.bubbleseekbar.R$color: int highlighted_text_material_dark +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NUMBER +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +androidx.viewpager2.R$id +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: android.net.Uri NO_RINGTONE_URI +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.cardview.R$styleable: int CardView_contentPaddingLeft +wangdaye.com.geometricweather.R$attr: int checkedIconVisible +androidx.work.R$drawable: int notification_bg_normal +com.google.android.material.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +androidx.constraintlayout.widget.R$color: int abc_search_url_text_pressed +okhttp3.internal.http2.Http2Connection: Http2Connection(okhttp3.internal.http2.Http2Connection$Builder) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onComplete() +androidx.preference.R$styleable: int MenuItem_android_visible +cyanogenmod.externalviews.KeyguardExternalView$2 +com.google.android.material.R$styleable: int CardView_contentPaddingTop +androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_PROVIDER_WITH_EVENT +androidx.dynamicanimation.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: MfForecastResult$DailyForecast$Sun() +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginEnd +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_TopRightDifferentCornerSize +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: double Value +android.didikee.donate.R$layout: int notification_template_part_chronometer +com.google.android.material.floatingactionbutton.FloatingActionButton: boolean getUseCompatPadding() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +cyanogenmod.hardware.ICMHardwareService: boolean requireAdaptiveBacklightForSunlightEnhancement() +com.turingtechnologies.materialscrollbar.R$attr: int srcCompat +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setIcons(java.lang.String) +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason[] values() +okio.Segment: byte[] data +wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: DaoMaster$DevOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory) +android.support.v4.os.ResultReceiver: android.os.Handler mHandler +james.adaptiveicon.R$attr: int iconifiedByDefault +okhttp3.internal.http.HttpHeaders: java.lang.String repeat(char,int) +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontVariationSettings +okhttp3.Handshake: java.util.List peerCertificates +cyanogenmod.externalviews.KeyguardExternalViewProviderService: int onStartCommand(android.content.Intent,int,int) +com.google.android.material.behavior.SwipeDismissBehavior +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Tooltip +com.google.android.material.R$style: int Base_Widget_AppCompat_ListView_Menu +androidx.preference.R$attr: int suggestionRowLayout +james.adaptiveicon.R$drawable: int abc_list_selector_disabled_holo_light +com.google.android.material.textfield.MaterialAutoCompleteTextView: void setAdapter(android.widget.ListAdapter) +com.google.android.material.R$styleable: int[] ActionMode +androidx.constraintlayout.widget.R$styleable: int Transition_transitionFlags +io.reactivex.internal.subscriptions.EmptySubscription: boolean offer(java.lang.Object,java.lang.Object) +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onNext(java.lang.Object) +androidx.preference.R$styleable: int CompoundButton_buttonTint +okhttp3.Response$Builder: void checkPriorResponse(okhttp3.Response) +androidx.preference.R$styleable: int MenuView_android_itemTextAppearance +com.jaredrummler.android.colorpicker.R$string: int abc_action_menu_overflow_description +androidx.core.R$drawable: int notification_bg +com.google.android.material.R$attr: int elevationOverlayEnabled +com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getIndicatorWidth() +com.google.gson.stream.JsonReader: void beginObject() +wangdaye.com.geometricweather.R$attr: int thumbColor +androidx.appcompat.R$bool: int abc_allow_stacked_button_bar +james.adaptiveicon.R$layout +com.google.android.material.R$styleable: int Toolbar_navigationContentDescription +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplBase +androidx.constraintlayout.widget.R$dimen: int disabled_alpha_material_light +androidx.activity.R$id +okhttp3.internal.connection.RouteSelector: void resetNextInetSocketAddress(java.net.Proxy) +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: DefaultCallAdapterFactory$ExecutorCallbackCall$1(retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall,retrofit2.Callback) +com.xw.repo.bubbleseekbar.R$attr: int contentInsetStart +okhttp3.internal.http2.Http2Reader$ContinuationSource: byte flags +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Inverse +okhttp3.internal.http2.Http2Reader: int readMedium(okio.BufferedSource) +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_enabled +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windSpeed +com.google.android.material.R$attr: int behavior_overlapTop +androidx.drawerlayout.R$id: int action_divider +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeCloudCover() +cyanogenmod.providers.CMSettings$System: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy[] values() +androidx.viewpager2.R$id: int item_touch_helper_previous_elevation +okhttp3.Headers: void checkName(java.lang.String) +wangdaye.com.geometricweather.R$id: int notification_big_icon_1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: java.util.List getBrands() +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: BodyObservable$BodyObserver(io.reactivex.Observer) +com.xw.repo.bubbleseekbar.R$styleable: int[] ButtonBarLayout +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_orientation +com.google.android.material.internal.NavigationMenuItemView: void setTitle(java.lang.CharSequence) +com.google.android.material.button.MaterialButton$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int[] ActionMenuItemView +androidx.drawerlayout.R$id: int normal +androidx.preference.R$styleable: int AppCompatTheme_actionBarSplitStyle +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_divider +wangdaye.com.geometricweather.R$string: int feedback_clock_font +okhttp3.internal.io.FileSystem$1: void deleteContents(java.io.File) +android.didikee.donate.R$styleable: int Toolbar_android_gravity +androidx.constraintlayout.helper.widget.Layer: void setElevation(float) +com.google.android.material.R$styleable: int[] TabLayout +cyanogenmod.app.suggest.AppSuggestManager +cyanogenmod.profiles.RingModeSettings$1: cyanogenmod.profiles.RingModeSettings[] newArray(int) +com.google.android.material.slider.RangeSlider: void setTickActiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView_Menu +android.didikee.donate.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +androidx.drawerlayout.R$attr: int fontWeight +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnAttachStateChangeListener(com.google.android.material.snackbar.BaseTransientBottomBar$OnAttachStateChangeListener) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActivityChooserView +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.HourlyEntity) +androidx.drawerlayout.widget.DrawerLayout: void setScrimColor(int) +com.google.android.material.appbar.AppBarLayout$BaseBehavior$SavedState: android.os.Parcelable$Creator CREATOR +com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.R$attr: int minHideDelay androidx.preference.R$attr: int textAppearanceSearchResultTitle -androidx.appcompat.R$attr: int itemPadding -cyanogenmod.weather.CMWeatherManager$RequestStatus: int COMPLETED -androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Line2 -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: int UnitType -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_off_mtrl_alpha -com.jaredrummler.android.colorpicker.R$attr: int ttcIndex -wangdaye.com.geometricweather.R$color: int secondary_text_default_material_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.util.List getValue() -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -com.jaredrummler.android.colorpicker.R$color: int highlighted_text_material_dark -androidx.hilt.work.R$style: R$style() -androidx.lifecycle.SavedStateHandle$1: SavedStateHandle$1(androidx.lifecycle.SavedStateHandle) -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao getChineseCityEntityDao() -androidx.preference.R$attr: int subMenuArrow -androidx.constraintlayout.motion.widget.MotionLayout: void setTransition(androidx.constraintlayout.motion.widget.MotionScene$Transition) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void dispose() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar_Indicator -androidx.appcompat.R$id: int checkbox -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Headline -com.google.android.material.R$style: int TestStyleWithLineHeight -wangdaye.com.geometricweather.db.entities.HourlyEntity -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_vertical_2lines -retrofit2.ParameterHandler$QueryMap -com.google.android.material.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -com.google.android.material.R$id: int decelerate -com.google.android.material.textfield.TextInputLayout: void setSuffixTextAppearance(int) -com.google.android.material.R$attr: int lastBaselineToBottomHeight -cyanogenmod.themes.ThemeManager: void requestThemeChange(java.lang.String,java.util.List,boolean) -androidx.preference.R$styleable: int ActionBar_itemPadding -com.jaredrummler.android.colorpicker.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: MfForecastResult$Forecast() -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onError(java.lang.Throwable) -androidx.appcompat.R$drawable: int abc_spinner_mtrl_am_alpha -cyanogenmod.app.CustomTile$Builder: android.graphics.Bitmap mRemoteIcon -androidx.legacy.coreutils.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_singlechoice +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: java.lang.String DESCRIPTOR +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +wangdaye.com.geometricweather.R$layout: int test_toolbar_custom_background +com.google.android.material.R$styleable: int Constraint_android_transformPivotY +com.bumptech.glide.integration.okhttp.R$id: int icon +james.adaptiveicon.R$attr: int queryBackground +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Filter +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_creator +wangdaye.com.geometricweather.R$id: int item_icon_provider_container +androidx.appcompat.R$styleable: int AppCompatTheme_spinnerStyle +androidx.core.R$id: int chronometer +retrofit2.SkipCallbackExecutorImpl: boolean equals(java.lang.Object) +androidx.appcompat.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.google.android.material.R$style: int Base_Widget_AppCompat_ListView_DropDown +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Body2 +io.reactivex.internal.observers.ForEachWhileObserver: void onError(java.lang.Throwable) +androidx.lifecycle.LifecycleRegistry: void handleLifecycleEvent(androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cps +okhttp3.ConnectionSpec +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginStart +cyanogenmod.externalviews.ExternalViewProperties: int[] mScreenCoords +com.google.android.material.R$dimen: int test_mtrl_calendar_day_cornerSize +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: long serialVersionUID +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_halo_radius +james.adaptiveicon.R$styleable: int AppCompatTheme_actionButtonStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: double Value james.adaptiveicon.R$styleable: int DrawerArrowToggle_thickness -wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_title -okhttp3.internal.http2.ErrorCode -okhttp3.Handshake: java.util.List peerCertificates -org.greenrobot.greendao.AbstractDao: long insertWithoutSettingPk(java.lang.Object) -james.adaptiveicon.R$string: int abc_searchview_description_voice -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.util.List value -james.adaptiveicon.R$styleable: int AppCompatTheme_colorButtonNormal -wangdaye.com.geometricweather.R$drawable: int ic_tree -wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment: ServiceProviderSettingsFragment() -androidx.constraintlayout.utils.widget.ImageFilterView: float getWarmth() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getThunderstormPrecipitation() -androidx.hilt.lifecycle.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DegreeDayTemperature -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String binarySearchBytes(byte[],byte[][],int) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_7 -androidx.preference.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -com.google.android.material.button.MaterialButtonToggleGroup: java.util.List getCheckedButtonIds() -androidx.appcompat.R$styleable: int[] ActionBar -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign -james.adaptiveicon.R$dimen: int notification_right_icon_size -com.jaredrummler.android.colorpicker.R$drawable: int tooltip_frame_light -androidx.preference.R$styleable: int SwitchCompat_thumbTint -com.turingtechnologies.materialscrollbar.R$styleable: int[] ThemeEnforcement -wangdaye.com.geometricweather.R$id: int cancel_button -wangdaye.com.geometricweather.R$layout: int container_main_aqi -wangdaye.com.geometricweather.R$string: int refresh -com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyle -androidx.appcompat.R$drawable: int notification_bg_normal -cyanogenmod.os.Concierge$ParcelInfo: int mStartPosition -com.google.android.material.R$dimen: int mtrl_slider_track_side_padding -androidx.lifecycle.LiveData: int mActiveCount -okhttp3.OkHttpClient: java.net.Proxy proxy +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: long period +androidx.preference.R$styleable: int SwitchCompat_switchTextAppearance +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_min +androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl +androidx.loader.R$styleable: int GradientColor_android_endColor +okhttp3.internal.http.HttpHeaders: void receiveHeaders(okhttp3.CookieJar,okhttp3.HttpUrl,okhttp3.Headers) +com.xw.repo.bubbleseekbar.R$attr: int windowMinWidthMinor +androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemBackground +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: int UnitType +androidx.appcompat.R$dimen: int notification_big_circle_margin +retrofit2.converter.gson.package-info +okhttp3.internal.http2.Hpack: Hpack() +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_enabled +com.turingtechnologies.materialscrollbar.R$styleable: int[] ForegroundLinearLayout +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$styleable: int Layout_layout_goneMarginTop +androidx.appcompat.R$attr: int thumbTextPadding +retrofit2.Utils: java.lang.Class declaringClassOf(java.lang.reflect.TypeVariable) +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_textLocale +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginRight +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.Integer angle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_tooltipForegroundColor +cyanogenmod.media.MediaRecorder$AudioSource: int HOTWORD +cyanogenmod.externalviews.ExternalView: void onActivityPaused(android.app.Activity) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyleSmall +androidx.preference.R$styleable: int FontFamilyFont_fontStyle +androidx.appcompat.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: int UnitType +james.adaptiveicon.R$styleable: int SearchView_layout +androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentHeight +androidx.constraintlayout.widget.R$styleable: int Motion_transitionEasing +com.google.android.material.R$dimen: int mtrl_snackbar_background_corner_radius +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedPathSegments(java.lang.String) +com.google.android.material.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day +wangdaye.com.geometricweather.R$attr: int dotDiameter +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void disposeInner() +cyanogenmod.platform.R$attr: R$attr() +okhttp3.internal.connection.ConnectionSpecSelector: ConnectionSpecSelector(java.util.List) +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2 +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_ALARMS +okhttp3.CertificatePinner$Pin: int hashCode() +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +androidx.constraintlayout.widget.R$id: int notification_background +okhttp3.internal.ws.RealWebSocket$Streams: boolean client +cyanogenmod.weather.CMWeatherManager: android.content.Context mContext +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display2 +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_iconTint +com.turingtechnologies.materialscrollbar.R$anim: int abc_popup_enter +com.google.android.material.bottomnavigation.BottomNavigationItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() +com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_Surface +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getProvince() +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +okhttp3.logging.LoggingEventListener: void requestHeadersStart(okhttp3.Call) +wangdaye.com.geometricweather.R$string: int precipitation_light +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.R$transition: int search_activity_shared_enter +com.google.android.material.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_PREV_VALUE +android.didikee.donate.R$styleable: int SearchView_iconifiedByDefault +cyanogenmod.app.CustomTile$RemoteExpandedStyle: CustomTile$RemoteExpandedStyle() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float pm10 +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +org.greenrobot.greendao.AbstractDaoSession: void delete(java.lang.Object) +com.jaredrummler.android.colorpicker.R$styleable: int[] View +com.google.android.material.R$attr: int listMenuViewStyle +androidx.constraintlayout.widget.R$id: int action_bar_activity_content +wangdaye.com.geometricweather.R$styleable: int[] SeekBarPreference +wangdaye.com.geometricweather.R$drawable +okio.Buffer: okio.Buffer writeUtf8CodePoint(int) +com.google.android.material.R$styleable: int NavigationView_itemIconTint +com.xw.repo.bubbleseekbar.R$dimen: R$dimen() +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void drain() +androidx.constraintlayout.widget.R$attr: int fontProviderAuthority +androidx.core.R$dimen: int notification_main_column_padding_top +androidx.constraintlayout.widget.R$styleable: int Constraint_android_transformPivotY +io.reactivex.internal.observers.InnerQueuedObserver +james.adaptiveicon.R$color: int bright_foreground_disabled_material_dark +androidx.preference.R$color: int primary_text_default_material_light +android.didikee.donate.R$attr: int ratingBarStyleIndicator +okhttp3.internal.cache.DiskLruCache: void checkNotClosed() +retrofit2.OkHttpCall$1: void onResponse(okhttp3.Call,okhttp3.Response) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getO3() +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderFetchTimeout +com.xw.repo.bubbleseekbar.R$dimen: int abc_control_padding_material +okhttp3.internal.http2.Http2Stream: boolean hasResponseHeaders +cyanogenmod.themes.ThemeChangeRequest: java.util.Map mThemeComponents +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationZ +james.adaptiveicon.R$styleable: int ActionBar_displayOptions +io.reactivex.Observable: io.reactivex.Observable subscribeOn(io.reactivex.Scheduler) +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_checked +com.jaredrummler.android.colorpicker.R$attr: int popupTheme +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: long EpochDate +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setAqiIndex(java.lang.Integer) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeDegreeDayTemperature(java.lang.Integer) +androidx.constraintlayout.widget.R$attr: int alphabeticModifiers +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_singleLine +androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_1_material +androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +androidx.constraintlayout.widget.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_middle_mtrl_dark +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight james.adaptiveicon.R$id -androidx.lifecycle.Transformations$2: androidx.lifecycle.MediatorLiveData val$result -com.google.android.material.R$styleable: int TextInputLayout_counterEnabled -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onError(java.lang.Throwable) -okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.Response cacheResponse -cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_WAKE_SCREEN -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginStart -cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_THEME_MANAGER -cyanogenmod.providers.CMSettings$Global: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) -androidx.preference.R$drawable: int abc_cab_background_top_mtrl_alpha -james.adaptiveicon.R$style: int Theme_AppCompat_DialogWhenLarge -com.google.android.material.textfield.TextInputLayout: void setCounterMaxLength(int) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_creator -wangdaye.com.geometricweather.R$attr: int elevationOverlayEnabled -androidx.core.R$styleable -com.jaredrummler.android.colorpicker.R$attr: int summaryOff -android.didikee.donate.R$layout: int notification_template_part_chronometer -okio.Segment -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Title -okio.GzipSink -com.google.android.material.R$color: int background_material_light -wangdaye.com.geometricweather.R$drawable: int ic_launcher_round -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBaseline_creator -okhttp3.logging.LoggingEventListener -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: void setTo(java.lang.String) -com.google.android.material.R$attr: int haloRadius -androidx.core.R$styleable: int GradientColor_android_centerY -cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.ICMTelephonyManager sService -androidx.recyclerview.widget.RecyclerView: void setClipToPadding(boolean) -androidx.preference.R$attr: int radioButtonStyle -androidx.appcompat.R$color: int switch_thumb_normal_material_dark -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String timezone -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_NoActionBar -com.google.android.material.R$attr: int listLayout -androidx.vectordrawable.R$id: int info -okio.SegmentedByteString: boolean rangeEquals(int,byte[],int,int) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: java.util.concurrent.atomic.AtomicReference inner -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int maxConcurrency -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationZ -com.google.android.material.slider.RangeSlider: float getValueFrom() -androidx.preference.R$attr: int lastBaselineToBottomHeight -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.R$attr: int strokeColor -com.google.android.material.R$style: int Widget_AppCompat_EditText -com.jaredrummler.android.colorpicker.R$styleable: int[] ColorStateListItem -okhttp3.internal.ws.RealWebSocket: boolean send(okio.ByteString,int) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintStart_toStartOf -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_weightSum -okio.RealBufferedSource: java.lang.String readUtf8() -okhttp3.Cookie: java.lang.String name -com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabRippleColor() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windSpeed -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_text -com.xw.repo.bubbleseekbar.R$attr: int showDividers -wangdaye.com.geometricweather.R$id: int notification_multi_city_2 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Hint -androidx.constraintlayout.widget.R$styleable: int ActivityChooserView_initialActivityCount -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setPubTime(java.lang.String) -androidx.loader.R$id: int icon_group -okhttp3.Response$Builder: okhttp3.Response$Builder priorResponse(okhttp3.Response) -okhttp3.FormBody: java.lang.String value(int) -android.didikee.donate.R$dimen: int abc_text_size_display_4_material -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onComplete() -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.app.CustomTile: void cloneInto(cyanogenmod.app.CustomTile) -okhttp3.CertificatePinner -james.adaptiveicon.R$style: int Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.R$attr: int cpv_showColorShades -wangdaye.com.geometricweather.R$styleable: int MenuItem_iconTintMode -james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setCheckable(boolean) -androidx.hilt.work.R$id: int async -org.greenrobot.greendao.AbstractDao: java.lang.Object readKey(android.database.Cursor,int) -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy valueOf(java.lang.String) -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX speed -com.google.android.material.R$styleable: int Toolbar_android_gravity -androidx.constraintlayout.widget.R$attr: int closeIcon -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: ObservableSampleWithObservable$SampleMainNoLast(io.reactivex.Observer,io.reactivex.ObservableSource) -androidx.appcompat.R$styleable: int AnimatedStateListDrawableItem_android_id -androidx.preference.R$styleable: int AppCompatTheme_actionBarStyle -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setDropDownBackgroundResource(int) -okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.WebSocketWriter writer -james.adaptiveicon.R$id: int search_close_btn -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getRain() -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: float getIntervalInHour() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.AlertEntity,long) -okhttp3.internal.http2.Http2Connection: void start(boolean) -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_NoActionBar -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean isDisposed() -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_left_mtrl_dark -androidx.constraintlayout.widget.R$styleable: int Transition_transitionFlags -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void request(long) -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollEnabled -com.turingtechnologies.materialscrollbar.R$attr: int iconPadding -com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense -androidx.vectordrawable.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: boolean noDirection -com.google.android.material.chip.Chip: void setCheckedIconVisible(int) -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Light -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert -wangdaye.com.geometricweather.background.receiver.widget.WidgetDayWeekProvider -com.xw.repo.bubbleseekbar.R$attr: int toolbarNavigationButtonStyle -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableRightCompat -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: boolean done -wangdaye.com.geometricweather.R$dimen: int notification_top_pad_large_text -androidx.lifecycle.SavedStateHandle: java.lang.String KEYS -com.xw.repo.bubbleseekbar.R$attr: int imageButtonStyle -com.turingtechnologies.materialscrollbar.R$layout: int abc_select_dialog_material -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: int UnitType -com.google.android.material.R$styleable: int KeyTrigger_onCross -wangdaye.com.geometricweather.R$drawable: int notif_temp_109 -okhttp3.CacheControl$Builder: int minFreshSeconds -retrofit2.KotlinExtensions -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean -androidx.lifecycle.SavedStateHandleController$1 -com.google.android.material.R$id: int aligned -wangdaye.com.geometricweather.R$attr: int scrimAnimationDuration -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_DropDownItem_Spinner -androidx.appcompat.R$styleable: int ColorStateListItem_alpha -com.google.android.material.R$styleable: int PopupWindow_android_popupBackground -wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingBottom -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean cancelled -com.google.android.material.navigation.NavigationView: android.view.MenuInflater getMenuInflater() -wangdaye.com.geometricweather.R$drawable: int ic_aqi -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: int fusionMode -wangdaye.com.geometricweather.R$drawable: int notification_bg_low_normal -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Tooltip -okhttp3.internal.http2.Settings: int MAX_HEADER_LIST_SIZE -org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType[] values() -okhttp3.internal.http.RealInterceptorChain: okhttp3.Connection connection() -okio.Buffer: long readLongLe() -androidx.activity.R$drawable: int notify_panel_notification_icon_bg -cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getProfileByName(java.lang.String) -com.google.android.material.R$styleable: int ConstraintSet_android_orientation -wangdaye.com.geometricweather.R$styleable: int Preference_android_key -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_black -okhttp3.CacheControl: boolean noTransform() -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderCerts -androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float unitFactor -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_normal -androidx.fragment.R$id: int accessibility_custom_action_26 -okio.ByteString: okio.ByteString sha1() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupMenu -cyanogenmod.power.IPerformanceManager: int getPowerProfile() -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.String toString() -wangdaye.com.geometricweather.R$attr: int textAppearanceSearchResultTitle -wangdaye.com.geometricweather.R$id: int right -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -androidx.coordinatorlayout.R$id: int right_side -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_query -androidx.activity.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setStatus(int) -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_showDividers -james.adaptiveicon.R$styleable: int SearchView_iconifiedByDefault -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialButtonToggleGroup -okhttp3.CipherSuite: okhttp3.CipherSuite forJavaName(java.lang.String) -okhttp3.HttpUrl$Builder: int slashCount(java.lang.String,int,int) -androidx.core.content.FileProvider -androidx.legacy.coreutils.R$color: int ripple_material_light -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -androidx.preference.R$id: int start -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver -com.jaredrummler.android.colorpicker.R$layout: int preference_information -com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Light -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -retrofit2.RequestBuilder: void addTag(java.lang.Class,java.lang.Object) -com.google.android.material.R$styleable: int[] MaterialTextAppearance -com.jaredrummler.android.colorpicker.R$attr: int editTextColor -wangdaye.com.geometricweather.R$color: R$color() -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Caption -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeight -androidx.constraintlayout.widget.R$styleable: int[] AlertDialog -com.google.android.material.textfield.TextInputLayout$SavedState -androidx.lifecycle.extensions.R$id: int line3 -com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_top -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceStyle -wangdaye.com.geometricweather.R$drawable: int indicator -androidx.transition.R$id: int async -wangdaye.com.geometricweather.R$drawable: int ic_grass -androidx.core.graphics.drawable.IconCompatParcelizer: void write(androidx.core.graphics.drawable.IconCompat,androidx.versionedparcelable.VersionedParcel) -android.didikee.donate.R$styleable: int MenuItem_alphabeticModifiers -androidx.constraintlayout.widget.R$color: int accent_material_light -com.google.android.material.R$id: int mtrl_picker_title_text -com.google.android.material.R$attr: int layout_insetEdge -androidx.lifecycle.extensions.R$dimen: int notification_top_pad -androidx.viewpager2.R$styleable: int ColorStateListItem_android_color -com.google.android.material.circularreveal.cardview.CircularRevealCardView: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableItem -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_card -androidx.constraintlayout.widget.R$dimen: int abc_list_item_padding_horizontal_material -okhttp3.internal.http2.Http2Connection: long intervalPingsSent -retrofit2.ParameterHandler$HeaderMap: retrofit2.Converter valueConverter -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean disposed -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setWeatherLocation(cyanogenmod.weather.WeatherLocation) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.String dailyWeatherDescription -com.google.android.material.R$drawable: int material_ic_edit_black_24dp -com.turingtechnologies.materialscrollbar.DragScrollBar: float getHideRatio() -androidx.appcompat.R$string: int abc_menu_delete_shortcut_label -cyanogenmod.app.CMContextConstants: java.lang.String CM_PARTNER_INTERFACE -okhttp3.internal.Util: java.nio.charset.Charset bomAwareCharset(okio.BufferedSource,java.nio.charset.Charset) -cyanogenmod.app.CMContextConstants: java.lang.String CM_APP_SUGGEST_SERVICE -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_12 -wangdaye.com.geometricweather.R$dimen: int material_helper_text_font_1_3_padding_horizontal -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: java.lang.String getPathName() -com.jaredrummler.android.colorpicker.R$styleable: int View_paddingStart -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf -androidx.swiperefreshlayout.R$styleable: int GradientColorItem_android_color -androidx.hilt.R$id: int accessibility_custom_action_16 -com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getBackgroundTintList() -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchTextAppearance -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_10 -okhttp3.internal.proxy.NullProxySelector: void connectFailed(java.net.URI,java.net.SocketAddress,java.io.IOException) -com.google.android.material.R$attr: int materialButtonToggleGroupStyle -com.google.android.material.R$attr: int layout_goneMarginStart -com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getIndicatorWidth() -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.disposables.Disposable upstream -io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable valueOf(java.lang.String) -com.google.android.material.R$styleable: int Constraint_transitionEasing -androidx.constraintlayout.widget.R$color: int primary_text_disabled_material_light -okhttp3.internal.ws.WebSocketReader$FrameCallback -wangdaye.com.geometricweather.db.entities.WeatherEntityDao -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getErrorContentDescription() -io.reactivex.internal.util.VolatileSizeArrayList: int indexOf(java.lang.Object) -wangdaye.com.geometricweather.R$dimen: int design_fab_size_normal -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf -cyanogenmod.weatherservice.IWeatherProviderService: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) -io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,boolean) -androidx.appcompat.widget.AppCompatSpinner: void setDropDownVerticalOffset(int) -okhttp3.ConnectionPool: void evictAll() -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream removeStream(int) -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type upperBound -io.reactivex.internal.subscriptions.DeferredScalarSubscription: org.reactivestreams.Subscriber downstream -okhttp3.Request$Builder: okhttp3.Request$Builder patch(okhttp3.RequestBody) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: java.lang.String English -androidx.appcompat.widget.ActionMenuView: ActionMenuView(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int ActionBar_homeAsUpIndicator -androidx.appcompat.R$id: int tag_unhandled_key_listeners -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean isEmpty() -com.google.android.material.R$styleable: int MenuView_android_itemBackground -wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_android_entryValues -androidx.viewpager2.R$styleable: int GradientColor_android_centerX -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_MODE -com.google.android.material.bottomappbar.BottomAppBar: void setFabAlignmentMode(int) -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: Temperature(int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable -androidx.appcompat.widget.AppCompatImageView -androidx.hilt.work.R$styleable: int ColorStateListItem_android_alpha -cyanogenmod.app.Profile: void validateRingtones(android.content.Context) -com.google.android.material.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha -com.google.android.material.R$attr: int layout_constraintTop_toTopOf -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.R$attr: int backgroundSplit -com.google.android.material.R$styleable: int ActionMode_height -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onNext(java.lang.Object) -androidx.preference.R$styleable: int[] SwitchPreferenceCompat -com.google.android.material.R$color: int design_default_color_primary_dark -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xss -com.xw.repo.bubbleseekbar.R$styleable: int[] CompoundButton -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality airQuality -wangdaye.com.geometricweather.R$dimen: int abc_dialog_padding_material -com.google.android.material.R$style: int Platform_V21_AppCompat -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -androidx.constraintlayout.widget.R$styleable: int MotionLayout_layoutDescription -okhttp3.internal.http2.Http2Codec: java.lang.String TRANSFER_ENCODING -com.google.android.material.R$dimen: int mtrl_textinput_box_label_cutout_padding -wangdaye.com.geometricweather.R$attr: int thumbRadius -com.xw.repo.bubbleseekbar.R$id: int action_mode_close_button -cyanogenmod.externalviews.KeyguardExternalView: void registerKeyguardExternalViewCallback(cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks) -okhttp3.internal.http2.Huffman$Node: Huffman$Node() -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: long dt -androidx.coordinatorlayout.R$drawable: int notification_bg_normal -okio.Okio$2 -com.google.android.material.chip.Chip: void setChipStrokeWidth(float) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_DrawerArrowToggle -com.google.android.material.R$attr: int backgroundOverlayColorAlpha -androidx.constraintlayout.widget.R$anim: R$anim() -wangdaye.com.geometricweather.R$styleable: int ActionBar_backgroundSplit -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: long dt -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_enabled -com.google.android.material.R$attr: int customNavigationLayout -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ButtonBar -wangdaye.com.geometricweather.db.entities.HistoryEntity -androidx.hilt.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: long beginTime -android.didikee.donate.R$styleable: int AppCompatTheme_actionButtonStyle -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_seekbar_material -com.turingtechnologies.materialscrollbar.R$drawable -com.google.android.material.R$styleable: int TextAppearance_android_textFontWeight -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX) -com.google.android.material.textfield.TextInputLayout: void setTypeface(android.graphics.Typeface) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarDivider -com.turingtechnologies.materialscrollbar.R$attr: int hideOnContentScroll -androidx.vectordrawable.R$drawable: int notification_action_background -com.google.android.material.R$layout: int material_timepicker_dialog -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection -okhttp3.internal.publicsuffix.PublicSuffixDatabase: void setListBytes(byte[],byte[]) -james.adaptiveicon.R$style: int Base_Animation_AppCompat_Dialog -androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context) -okio.Buffer$UnsafeCursor: okio.Buffer buffer -androidx.appcompat.R$styleable: int MenuItem_android_enabled -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onSubscribe(io.reactivex.disposables.Disposable) -james.adaptiveicon.R$styleable: int ButtonBarLayout_allowStacking -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_icon_size -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_18 -androidx.preference.R$style: int ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$style: int Preference_DropDown -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowNoTitle -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$attr: int tabIndicatorGravity -wangdaye.com.geometricweather.R$styleable: int[] EditTextPreference -com.jaredrummler.android.colorpicker.R$dimen: int cpv_item_size -io.reactivex.Observable: io.reactivex.Observable combineLatest(java.lang.Iterable,io.reactivex.functions.Function,int) -com.google.android.material.R$styleable: int MaterialTextAppearance_lineHeight -androidx.cardview.widget.CardView: float getRadius() -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void startTimeout(long) -android.didikee.donate.R$styleable: int DrawerArrowToggle_spinBars -androidx.preference.R$style: int Widget_AppCompat_ActionMode -androidx.constraintlayout.widget.R$attr: int flow_verticalBias -androidx.preference.R$styleable: int AppCompatTheme_panelMenuListWidth -androidx.coordinatorlayout.R$integer: int status_bar_notification_info_maxnum -androidx.appcompat.R$style: int Animation_AppCompat_Tooltip -io.reactivex.Observable: io.reactivex.Observable materialize() -james.adaptiveicon.R$attr: int hideOnContentScroll -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_OVERLAYS -androidx.hilt.lifecycle.R$dimen: int notification_media_narrow_margin -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_processWeatherUpdateRequest_0 -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.Observer downstream -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -androidx.hilt.work.R$id: int right_side -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void subscribe() -io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription[] values() -androidx.cardview.R$attr: int cardBackgroundColor -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetRight -okhttp3.OkHttpClient: java.net.ProxySelector proxySelector -androidx.preference.R$string: int abc_toolbar_collapse_description -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_textOn -com.google.android.material.R$attr: int behavior_draggable -cyanogenmod.providers.WeatherContract: java.lang.String AUTHORITY -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textColor -com.xw.repo.bubbleseekbar.R$id: int title_template -com.jaredrummler.android.colorpicker.R$id: int submenuarrow -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_space_shortcut_label -wangdaye.com.geometricweather.R$string: int key_forecast_tomorrow_time -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWindLevel() -com.google.android.material.R$attr: int actionViewClass -wangdaye.com.geometricweather.R$color: int mtrl_tabs_legacy_text_color_selector -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.Observer downstream -com.google.android.material.R$integer: int mtrl_tab_indicator_anim_duration_ms -com.jaredrummler.android.colorpicker.R$id: int select_dialog_listview -okhttp3.Headers: int hashCode() -androidx.vectordrawable.R$dimen: int notification_top_pad_large_text -james.adaptiveicon.R$attr: int navigationIcon -androidx.constraintlayout.widget.R$attr: int actionBarTabTextStyle -wangdaye.com.geometricweather.R$attr: int bsb_thumb_radius_on_dragging -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabView -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay valueOf(java.lang.String) -com.google.android.material.R$string: int mtrl_picker_text_input_date_hint -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_arrowHeadLength -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTheme -wangdaye.com.geometricweather.R$drawable: int notif_temp_114 -wangdaye.com.geometricweather.R$id: int widget_week_temp_5 -com.jaredrummler.android.colorpicker.R$color: int background_floating_material_dark -com.github.rahatarmanahmed.cpv.CircularProgressView: int size -james.adaptiveicon.R$layout: int select_dialog_singlechoice_material -james.adaptiveicon.R$style: int Widget_AppCompat_ListMenuView -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.Map rights -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: java.lang.Integer min -wangdaye.com.geometricweather.location.services.LocationService: java.lang.String[] getPermissions() -androidx.appcompat.R$color: int secondary_text_disabled_material_dark -androidx.preference.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder callTimeout(long,java.util.concurrent.TimeUnit) -okhttp3.internal.tls.BasicTrustRootIndex: int hashCode() -com.google.gson.LongSerializationPolicy$2: com.google.gson.JsonElement serialize(java.lang.Long) -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: IThemeChangeListener$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.R$attr: int switchStyle -io.reactivex.internal.observers.BasicIntQueueDisposable: boolean isEmpty() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabBar -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_mode_bar -com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_ripple_color -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat -retrofit2.ParameterHandler$Part: java.lang.reflect.Method method -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.R$attr: int layout_constraintEnd_toEndOf -com.turingtechnologies.materialscrollbar.R$attr: int drawableSize -okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: okhttp3.internal.http2.Http2Connection this$0 -james.adaptiveicon.R$attr: int singleChoiceItemLayout -androidx.constraintlayout.widget.R$attr: int textAppearanceLargePopupMenu -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: void setGravitySensorEnabled(boolean) -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,io.reactivex.Scheduler) -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_overflow_padding_start_material -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -com.turingtechnologies.materialscrollbar.R$dimen: int hint_alpha_material_light -retrofit2.Retrofit$Builder: java.util.List converterFactories -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginLeft -com.turingtechnologies.materialscrollbar.R$attr: int boxBackgroundColor +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_month_horizontal_padding +com.turingtechnologies.materialscrollbar.R$attr: int checkedIconVisible +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnp +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircleRadius +androidx.viewpager.R$attr: int fontProviderQuery +com.google.android.material.chip.Chip: float getTextEndPadding() +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Writer writer +androidx.drawerlayout.R$style: int Widget_Compat_NotificationActionContainer +androidx.core.R$styleable: int[] FontFamily +cyanogenmod.app.ProfileGroup: void readFromParcel(android.os.Parcel) +androidx.appcompat.widget.ActionMenuView: void setExpandedActionViewsExclusive(boolean) +androidx.viewpager2.widget.ViewPager2: void setPageTransformer(androidx.viewpager2.widget.ViewPager2$PageTransformer) +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayHorizontalWidgetConfigActivity: Hilt_ClockDayHorizontalWidgetConfigActivity() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWeatherText() +okhttp3.OkHttpClient$Builder: okhttp3.ConnectionPool connectionPool +okhttp3.internal.connection.RealConnection: okhttp3.Protocol protocol() +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +androidx.lifecycle.LifecycleRegistry: java.lang.ref.WeakReference mLifecycleOwner +wangdaye.com.geometricweather.R$attr: int borderWidth +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) +androidx.appcompat.R$color: int androidx_core_ripple_material_light +com.google.android.material.R$id: int search_close_btn +okhttp3.EventListener: void requestBodyEnd(okhttp3.Call,long) +androidx.appcompat.R$styleable: int Toolbar_titleMarginTop +androidx.constraintlayout.widget.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +com.google.gson.stream.JsonToken: JsonToken(java.lang.String,int) +com.turingtechnologies.materialscrollbar.R$attr: int tabPadding +wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchRegionId +wangdaye.com.geometricweather.R$string: int copy +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog +androidx.appcompat.R$attr: int tint +wangdaye.com.geometricweather.R$id: int lastElement +androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_light +androidx.constraintlayout.widget.R$attr: int mock_showDiagonals +com.google.gson.stream.JsonReader: void push(int) +cyanogenmod.util.ColorUtils: int findPerceptuallyNearestSolidColor(int) +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_thickness +androidx.constraintlayout.widget.R$styleable: int Layout_android_orientation +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getSoundMode() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitationProbability +james.adaptiveicon.R$styleable: int AppCompatTheme_colorAccent +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSmallPopupMenu +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +androidx.appcompat.R$styleable: int AppCompatTheme_actionMenuTextAppearance +wangdaye.com.geometricweather.R$attr: int actionBarStyle +com.xw.repo.bubbleseekbar.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.background.polling.work.worker.AsyncUpdateWorker: AsyncUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) +androidx.preference.R$styleable: int[] PreferenceFragmentCompat +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintStart_toStartOf +com.jaredrummler.android.colorpicker.R$id: int cpv_arrow_right +androidx.legacy.coreutils.R$drawable +com.google.android.material.R$drawable: int mtrl_popupmenu_background +android.didikee.donate.R$dimen: int abc_seekbar_track_progress_height_material +androidx.room.RoomDatabase: RoomDatabase() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColor +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +com.jaredrummler.android.colorpicker.R$id: int gridView +cyanogenmod.app.IPartnerInterface$Stub$Proxy: void setMobileDataEnabled(boolean) +com.google.android.material.card.MaterialCardView: int getStrokeWidth() +okhttp3.internal.Internal: int code(okhttp3.Response$Builder) +cyanogenmod.themes.IThemeService: void requestThemeChangeUpdates(cyanogenmod.themes.IThemeChangeListener) +androidx.preference.R$attr: int divider +androidx.constraintlayout.widget.R$drawable: int abc_cab_background_internal_bg +okio.RealBufferedSink: int write(java.nio.ByteBuffer) +com.xw.repo.bubbleseekbar.R$layout: int abc_expanded_menu_layout +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial() +com.google.android.material.R$drawable: int abc_tab_indicator_mtrl_alpha +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_131 +retrofit2.Platform$Android$MainThreadExecutor: void execute(java.lang.Runnable) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setCity_code(int) +wangdaye.com.geometricweather.R$attr: int itemIconTint +okhttp3.CacheControl: java.lang.String toString() +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(long) +wangdaye.com.geometricweather.R$anim: int fragment_open_enter +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.internal.util.AtomicThrowable errors +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_checkable +androidx.preference.R$attr: int actionModeCopyDrawable +okhttp3.internal.http2.Http2Codec$StreamFinishingSource +com.turingtechnologies.materialscrollbar.R$attr: int buttonGravity +androidx.constraintlayout.widget.R$attr: int onTouchUp +okhttp3.Headers: java.util.List values(java.lang.String) +io.reactivex.internal.observers.DeferredScalarDisposable: boolean tryDispose() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onError(java.lang.Throwable) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_6 +wangdaye.com.geometricweather.R$layout: int abc_action_bar_title_item +androidx.core.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind +wangdaye.com.geometricweather.R$string: int email +com.xw.repo.bubbleseekbar.R$id: int forever +okhttp3.internal.http2.Http2Connection$PingRunnable: Http2Connection$PingRunnable(okhttp3.internal.http2.Http2Connection,boolean,int,int) +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customIntegerValue +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_font +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlHighlight +james.adaptiveicon.R$drawable: int abc_text_cursor_material +wangdaye.com.geometricweather.R$layout: int abc_action_menu_layout +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dark +okio.RealBufferedSource: long readDecimalLong() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_SearchView +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog +okhttp3.internal.http.StatusLine: int HTTP_PERM_REDIRECT +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void cancelSubscription() +com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_button_bar_material +wangdaye.com.geometricweather.R$styleable: int ChipGroup_checkedChip +com.google.android.material.R$attr: int layout_constraintCircleAngle +com.turingtechnologies.materialscrollbar.R$attr: int activityChooserViewStyle +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: long serialVersionUID +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar_Indicator +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert +okhttp3.internal.http2.Http2Connection: long DEGRADED_PONG_TIMEOUT_NS +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_baselineAligned +com.xw.repo.bubbleseekbar.R$attr: int lineHeight +wangdaye.com.geometricweather.R$dimen: int mtrl_transition_shared_axis_slide_distance +androidx.appcompat.resources.R$string +com.google.android.material.R$dimen: int abc_dialog_fixed_height_minor +com.google.gson.stream.JsonWriter: void setHtmlSafe(boolean) +retrofit2.Retrofit: okhttp3.HttpUrl baseUrl +androidx.constraintlayout.widget.R$styleable: int KeyPosition_curveFit +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: KeyguardExternalViewProviderService$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService) +androidx.coordinatorlayout.R$id: int normal +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar +androidx.preference.R$string: int abc_searchview_description_voice +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: CaiYunMainlyResult$CurrentBean$VisibilityBean() +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver parent +com.google.android.material.R$attr: int perpendicularPath_percent +cyanogenmod.os.Build: java.lang.String CYANOGENMOD_DISPLAY_VERSION +james.adaptiveicon.R$color: int secondary_text_disabled_material_dark +com.google.android.material.R$id: int end +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderQuery +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationY +androidx.appcompat.resources.R$attr: int ttcIndex +james.adaptiveicon.R$styleable: int AppCompatTheme_checkboxStyle +io.reactivex.Observable: io.reactivex.Single collectInto(java.lang.Object,io.reactivex.functions.BiConsumer) +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnClickIntent(android.app.PendingIntent) +wangdaye.com.geometricweather.R$id: int activity_chooser_view_content +cyanogenmod.weatherservice.ServiceRequestResult$1 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeTextType +james.adaptiveicon.R$color: int bright_foreground_disabled_material_light +wangdaye.com.geometricweather.R$drawable: int ic_email +com.google.android.material.R$attr: int boxStrokeErrorColor +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardBackgroundColor +com.xw.repo.bubbleseekbar.R$attr: int fontProviderFetchStrategy +androidx.lifecycle.ProcessLifecycleOwnerInitializer: int delete(android.net.Uri,java.lang.String,java.lang.String[]) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: java.lang.String English +com.google.android.material.R$style: int Base_Widget_AppCompat_ProgressBar +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onSubscribe(io.reactivex.disposables.Disposable) +retrofit2.adapter.rxjava2.Result +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_weightSum +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_30 +okhttp3.internal.connection.RouteException: java.io.IOException getFirstConnectException() +wangdaye.com.geometricweather.R$attr: int flow_firstVerticalStyle +androidx.customview.R$layout: R$layout() +androidx.appcompat.widget.LinearLayoutCompat: int getGravity() +com.jaredrummler.android.colorpicker.R$layout: int abc_action_bar_up_container +com.xw.repo.bubbleseekbar.R$attr: int actionBarDivider +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_dividerHeight +james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +cyanogenmod.app.StatusBarPanelCustomTile: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$drawable: int cpv_preset_checked +androidx.vectordrawable.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$drawable: int notif_temp_10 +okhttp3.Response: int code() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Colored +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationX +androidx.loader.R$styleable: int GradientColor_android_centerY +androidx.appcompat.R$drawable: int abc_cab_background_top_mtrl_alpha +androidx.appcompat.R$attr: int titleTextColor +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +androidx.appcompat.R$styleable: int SearchView_searchHintIcon +androidx.work.NetworkType: androidx.work.NetworkType[] values() +io.reactivex.exceptions.UndeliverableException: long serialVersionUID +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeStepGranularity +androidx.constraintlayout.widget.R$attr: int subtitleTextStyle +com.jaredrummler.android.colorpicker.R$attr: int layout +com.google.android.material.R$styleable: int KeyCycle_waveVariesBy +androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context) +com.turingtechnologies.materialscrollbar.R$id: int multiply +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2 +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light_NoActionBar +androidx.appcompat.widget.ActivityChooserView: androidx.appcompat.widget.ActivityChooserModel getDataModel() +androidx.constraintlayout.widget.R$id: int layout +androidx.core.widget.NestedScrollView: void setNestedScrollingEnabled(boolean) +james.adaptiveicon.R$styleable: int[] AppCompatTheme +androidx.constraintlayout.widget.R$attr: int backgroundSplit +com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen +androidx.preference.R$styleable: int FragmentContainerView_android_tag +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void trySchedule() +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onAnimationReset() +com.google.android.material.R$drawable: int abc_spinner_mtrl_am_alpha +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +androidx.lifecycle.LifecycleRegistry: boolean mHandlingEvent +com.google.android.material.R$styleable: int SwitchCompat_thumbTintMode +androidx.constraintlayout.widget.R$id: int split_action_bar +cyanogenmod.weatherservice.WeatherProviderService: java.lang.String SERVICE_META_DATA +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_checkable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: java.util.List brands +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +androidx.transition.R$string: R$string() +retrofit2.ParameterHandler$Path: boolean encoded +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: int hasRain +androidx.transition.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox +com.google.android.material.R$attr: int bottomAppBarStyle +cyanogenmod.app.CMContextConstants: CMContextConstants() +okio.Okio$1: java.lang.String toString() +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +com.google.android.material.R$styleable: int ProgressIndicator_indicatorColors +com.jaredrummler.android.colorpicker.R$layout: int preference_dropdown_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange Past12HourRange +james.adaptiveicon.R$styleable: int TextAppearance_fontVariationSettings +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void dispose() +com.google.android.material.R$style: int Base_V26_Widget_AppCompat_Toolbar +com.google.android.material.R$dimen: int mtrl_btn_inset +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetEndWithActions +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.Scheduler scheduler +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property CityId +com.jaredrummler.android.colorpicker.R$id: int text +android.support.v4.os.ResultReceiver$1: android.support.v4.os.ResultReceiver createFromParcel(android.os.Parcel) +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onNext(java.lang.Object) +com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_text_color +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemBackground +com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.badge.BadgeDrawable getOrCreateBadge() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetHourlyEntityList() +okhttp3.internal.http2.Hpack$Writer: int evictToRecoverBytes(int) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String name +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior: ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior(android.content.Context,android.util.AttributeSet) +okhttp3.internal.http2.Http2Connection: long access$100(okhttp3.internal.http2.Http2Connection) +com.google.android.material.R$id: int off +com.google.android.material.bottomappbar.BottomAppBar: float getFabCradleMargin() +com.google.android.material.R$id: int action_bar_root +androidx.preference.R$layout: int abc_list_menu_item_checkbox +com.jaredrummler.android.colorpicker.R$attr: int subtitleTextStyle +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +cyanogenmod.weather.RequestInfo: RequestInfo(cyanogenmod.weather.RequestInfo$1) +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: long serialVersionUID +wangdaye.com.geometricweather.R$style: int Base_V22_Theme_AppCompat_Light +wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvLevel(java.lang.String) +androidx.appcompat.R$style: int Widget_AppCompat_RatingBar_Indicator +wangdaye.com.geometricweather.R$drawable: int notif_temp_21 +androidx.swiperefreshlayout.R$id: int icon +okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache this$0 +cyanogenmod.providers.CMSettings$Global: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) +androidx.preference.R$dimen: int tooltip_margin +okio.DeflaterSink: DeflaterSink(okio.BufferedSink,java.util.zip.Deflater) +com.turingtechnologies.materialscrollbar.DragScrollBar +okhttp3.OkHttpClient: boolean followRedirects +okhttp3.internal.platform.Platform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) +wangdaye.com.geometricweather.db.entities.DailyEntity: DailyEntity() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_NULL_SHA +com.google.android.material.R$styleable: int Constraint_layout_constrainedWidth +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitation +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Connection$ReaderRunnable readerRunnable +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$dimen: int abc_seekbar_track_background_height_material +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +wangdaye.com.geometricweather.R$layout: int widget_text_end +wangdaye.com.geometricweather.R$styleable: int[] Layout +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_searchIcon +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSrc() +james.adaptiveicon.R$style: int Widget_AppCompat_DropDownItem_Spinner +cyanogenmod.externalviews.ExternalViewProperties: int getWidth() +androidx.loader.R$drawable: int notification_bg_normal +androidx.hilt.work.R$id: int action_divider +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollEnabled +okhttp3.logging.LoggingEventListener: void secureConnectStart(okhttp3.Call) +wangdaye.com.geometricweather.R$id: int contentPanel +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int getMainTextColorResId() +com.google.android.material.R$id: int chip2 +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Toolbar +androidx.recyclerview.R$id: int tag_accessibility_clickable_spans +com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuGroup +com.google.android.material.R$drawable: int mtrl_dropdown_arrow +androidx.preference.R$style: int Widget_AppCompat_Light_SearchView +androidx.dynamicanimation.animation.SpringAnimation +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Small +okhttp3.Cache$2 +okhttp3.internal.connection.RealConnection: void connectSocket(int,int,okhttp3.Call,okhttp3.EventListener) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: java.util.concurrent.atomic.AtomicInteger active +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List guomin +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_viewInflaterClass +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.appcompat.widget.FitWindowsLinearLayout: FitWindowsLinearLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: java.lang.String Unit +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction Direction +androidx.hilt.work.R$styleable: int[] Fragment +androidx.constraintlayout.widget.R$attr: int logoDescription +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTrendTemperature(android.content.Context,java.lang.Integer,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +com.google.android.material.R$dimen: int abc_dialog_padding_material +com.google.android.material.R$styleable: int ConstraintSet_layout_editor_absoluteY +androidx.appcompat.R$styleable: int SearchView_searchIcon +james.adaptiveicon.R$styleable: int AppCompatTheme_searchViewStyle +androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$id: int month_navigation_fragment_toggle +com.xw.repo.bubbleseekbar.R$id: int content +com.google.android.material.chip.Chip: void setCheckedIcon(android.graphics.drawable.Drawable) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Caption +com.turingtechnologies.materialscrollbar.R$id: int text2 +wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_chronus +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_ListPopupWindow +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_listItemLayout +io.reactivex.internal.disposables.CancellableDisposable: void dispose() +wangdaye.com.geometricweather.R$string: int settings_title_refresh_rate +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: long produced +com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ActionMode_background +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +androidx.constraintlayout.widget.R$color: int switch_thumb_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric Metric +okhttp3.internal.http2.Huffman$Node: okhttp3.internal.http2.Huffman$Node[] children +cyanogenmod.hardware.CMHardwareManager: int FEATURE_HIGH_TOUCH_SENSITIVITY +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getDefaultLiveLockScreen +androidx.appcompat.widget.Toolbar: void setTitleTextColor(android.content.res.ColorStateList) +androidx.appcompat.app.ToolbarActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +wangdaye.com.geometricweather.R$styleable: int FitSystemBarRecyclerView_rv_side +wangdaye.com.geometricweather.db.entities.AlertEntity: void setDescription(java.lang.String) +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_ACTIVE +com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_material_light +okhttp3.ConnectionPool: long keepAliveDurationNs +com.google.android.material.R$attr: int chipCornerRadius +cyanogenmod.app.CustomTile: void cloneInto(cyanogenmod.app.CustomTile) +com.google.android.material.R$attr: int textAppearanceHeadline2 +wangdaye.com.geometricweather.R$dimen: int preference_seekbar_padding_vertical +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_elevation +android.didikee.donate.R$id: int expand_activities_button +okio.ForwardingTimeout +androidx.preference.R$color: int abc_hint_foreground_material_light +androidx.drawerlayout.R$dimen: int compat_button_padding_vertical_material +androidx.preference.R$dimen: int abc_text_size_menu_header_material +com.google.android.material.R$styleable: int AppCompatTheme_checkboxStyle +io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) +android.support.v4.app.INotificationSideChannel$Default: void cancel(java.lang.String,int,java.lang.String) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_18 +androidx.constraintlayout.widget.R$attr: int actionBarTheme +com.google.android.material.R$styleable: int AppCompatTheme_actionBarSplitStyle +androidx.preference.R$attr: int showText +okio.ByteString: okio.ByteString substring(int) +okhttp3.internal.http2.Http2Writer: void synReply(boolean,int,java.util.List) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconTintMode +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$id: int chronometer +okhttp3.Headers: java.util.Set names() +androidx.appcompat.resources.R$id: int tag_accessibility_heading +james.adaptiveicon.R$styleable: int ActionBarLayout_android_layout_gravity +com.google.android.material.textfield.TextInputLayout: void setStartIconDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: int getMarginTop() +wangdaye.com.geometricweather.db.entities.AlertEntity: void setTime(long) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float o3 +james.adaptiveicon.R$id: int action_bar_root +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +com.google.android.material.R$id: int mini +com.google.android.material.R$styleable: int Constraint_barrierDirection +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_divider +com.github.rahatarmanahmed.cpv.CircularProgressView: boolean isIndeterminate +wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitleTextColor +okhttp3.internal.Util: okhttp3.RequestBody EMPTY_REQUEST +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_maxElementsWrap +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_120 +androidx.appcompat.widget.AppCompatSpinner: int getDropDownVerticalOffset() +androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$id: int notification_big_icon_2 +androidx.appcompat.R$styleable: int SearchView_android_maxWidth +cyanogenmod.hardware.ThermalListenerCallback: ThermalListenerCallback() +androidx.work.R$id: int tag_screen_reader_focusable +cyanogenmod.externalviews.ExternalView$8 +com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_Tooltip +wangdaye.com.geometricweather.R$string: int mtrl_chip_close_icon_content_description +wangdaye.com.geometricweather.R$string: int feedback_location_help_title +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HourlyEntityDao getHourlyEntityDao() +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getBackgroundColorStart() +androidx.hilt.R$attr: int fontVariationSettings +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_menu +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids +androidx.hilt.work.R$color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: java.lang.String Unit +androidx.appcompat.R$styleable: int ActionBar_elevation +wangdaye.com.geometricweather.R$string: int material_timepicker_minute +com.turingtechnologies.materialscrollbar.R$id: int spacer +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_FixedSize +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_singleChoiceItemLayout +androidx.constraintlayout.widget.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$style: int Base_AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int MockView_mock_showLabel +cyanogenmod.app.Profile: Profile(java.lang.String,int,java.util.UUID) +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onSubscribe(org.reactivestreams.Subscription) +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerNext(int,java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowMinWidthMajor +androidx.constraintlayout.widget.R$drawable: int abc_list_pressed_holo_dark +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator +okio.GzipSink: okio.Timeout timeout() +com.jaredrummler.android.colorpicker.R$attr: int defaultValue +okhttp3.FormBody: java.util.List encodedValues +cyanogenmod.profiles.AirplaneModeSettings$1: cyanogenmod.profiles.AirplaneModeSettings createFromParcel(android.os.Parcel) +okhttp3.internal.tls.CertificateChainCleaner: CertificateChainCleaner() +com.google.android.material.snackbar.Snackbar$SnackbarLayout: Snackbar$SnackbarLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int Preference_shouldDisableView +cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.content.ComponentName,int) +com.turingtechnologies.materialscrollbar.R$attr: int cardPreventCornerOverlap +com.google.android.material.R$attr: int itemIconPadding +com.turingtechnologies.materialscrollbar.R$attr: int windowActionModeOverlay +com.xw.repo.bubbleseekbar.R$attr: int titleTextColor +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date date +androidx.constraintlayout.utils.widget.ImageFilterButton: float getCrossfade() +androidx.customview.view.AbsSavedState +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pm25 +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: java.util.concurrent.Executor callbackExecutor +com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyleIndicator +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.reflect.Type responseType +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WEATHER_CODE_MAX +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +androidx.loader.R$id: int normal +com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableTransition +com.google.android.material.R$attr: int layout_goneMarginRight +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +okhttp3.EventListener: void connectFailed(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol,java.io.IOException) +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +cyanogenmod.externalviews.ExternalView +com.xw.repo.bubbleseekbar.R$string: int abc_shareactionprovider_share_with +wangdaye.com.geometricweather.R$layout: int material_timepicker_dialog +okhttp3.internal.ws.RealWebSocket: int receivedPingCount +com.jaredrummler.android.colorpicker.R$attr: int windowActionBar +com.google.android.material.R$string: int mtrl_picker_invalid_format +androidx.appcompat.R$dimen: int abc_dialog_fixed_width_minor +retrofit2.ParameterHandler$QueryName +androidx.legacy.coreutils.R$styleable: int GradientColor_android_endY +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_elevation +wangdaye.com.geometricweather.R$string: int feedback_about_geocoder +android.didikee.donate.R$style: int Base_Widget_AppCompat_Spinner +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Info +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: boolean isDisposed() +okio.ByteString: int codePointIndexToCharIndex(java.lang.String,int) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModePasteDrawable +retrofit2.OkHttpCall: retrofit2.OkHttpCall clone() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: java.lang.String Unit +androidx.appcompat.widget.AppCompatTextView: void setBackgroundResource(int) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconCheckable +wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_text_color +androidx.preference.R$attr: int thumbTint +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_98 +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showColorShades +androidx.vectordrawable.R$id +android.didikee.donate.R$styleable: int TextAppearance_android_shadowDy +okhttp3.Cookie$Builder +wangdaye.com.geometricweather.R$dimen: int widget_content_text_size +com.google.android.material.R$id: int SHOW_PATH +androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_button_bar_material +wangdaye.com.geometricweather.R$id: int decor_content_parent +com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_950 +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_NoActionBar +com.google.gson.stream.JsonWriter: java.lang.String indent +okhttp3.EventListener: void dnsStart(okhttp3.Call,java.lang.String) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +com.xw.repo.bubbleseekbar.R$color: int background_floating_material_light +androidx.preference.R$drawable: int btn_checkbox_unchecked_mtrl +androidx.constraintlayout.widget.R$layout: int abc_action_bar_up_container +androidx.preference.R$id: int search_src_text +io.reactivex.internal.operators.observable.ObserverResourceWrapper: boolean isDisposed() +okhttp3.internal.ws.RealWebSocket: void onReadClose(int,java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getShortWindDescription() +androidx.legacy.coreutils.R$layout +com.google.android.material.R$styleable: int KeyCycle_android_elevation +androidx.viewpager.R$id: int actions +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level BODY +retrofit2.http.Headers: java.lang.String[] value() +retrofit2.Invocation: java.lang.reflect.Method method() +retrofit2.BuiltInConverters$UnitResponseBodyConverter: BuiltInConverters$UnitResponseBodyConverter() +com.google.android.material.R$id: int src_atop +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_keyboardNavigationCluster +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int requestFusion(int) +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +android.didikee.donate.R$style: int Base_V7_Widget_AppCompat_EditText +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void drain() +com.xw.repo.bubbleseekbar.R$attr: int titleMargin +wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_android_foregroundGravity +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +androidx.drawerlayout.R$color: int ripple_material_light +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getContent() +androidx.fragment.R$styleable: int[] Fragment +wangdaye.com.geometricweather.R$attr: int startIconDrawable +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents +wangdaye.com.geometricweather.R$id: int item_about_library +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List hourlyEntityList +androidx.preference.R$layout: int abc_action_mode_close_item_material +wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.github.rahatarmanahmed.cpv.CircularProgressView: java.util.List listeners +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getAlertList() +wangdaye.com.geometricweather.R$id: int action_mode_close_button +androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_radio +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +com.google.android.material.R$color: int mtrl_indicator_text_color +okhttp3.internal.cache.CacheStrategy$Factory: long sentRequestMillis +wangdaye.com.geometricweather.R$layout: int text_view_without_line_height +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatPressedTranslationZ(float) +james.adaptiveicon.R$styleable: int Toolbar_titleMarginStart +james.adaptiveicon.R$styleable: int ActionBar_popupTheme +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Display_TextInputEditText +wangdaye.com.geometricweather.R$drawable: int notif_temp_32 +com.google.android.material.R$styleable: int SwitchCompat_trackTintMode +com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: int UnitType +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.R$id: int auto +androidx.hilt.work.R$anim: R$anim() +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_visible +wangdaye.com.geometricweather.R$attr: int bsb_always_show_bubble +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findPlatform() +androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Bridge +okhttp3.HttpUrl$Builder: void pop() +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_voice +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void dispose() +android.didikee.donate.R$style: int TextAppearance_AppCompat_Caption +com.turingtechnologies.materialscrollbar.R$layout: int abc_dialog_title_material +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias +androidx.cardview.widget.CardView: int getContentPaddingLeft() +androidx.preference.R$attr: int tooltipForegroundColor +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Base_V26_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.HourlyEntity) +androidx.preference.R$anim: int abc_slide_out_top +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWeatherText() +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_INACTIVE +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorTextColor +okhttp3.internal.http1.Http1Codec$FixedLengthSink: long bytesRemaining +com.google.android.material.R$dimen: int mtrl_navigation_item_shape_vertical_margin +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_START_VOLUME_VALIDATOR +com.turingtechnologies.materialscrollbar.R$anim: int design_snackbar_out +cyanogenmod.themes.ThemeManager: void registerThemeChangeListener(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +com.google.android.material.R$styleable: int FontFamilyFont_android_fontVariationSettings +io.reactivex.internal.util.NotificationLite$DisposableNotification: java.lang.String toString() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Tooltip +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_state_list_animator +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_inset_horizontal_material +com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_thumb_material +wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_calendar_input_mode +com.turingtechnologies.materialscrollbar.R$string: int abc_prepend_shortcut_label +wangdaye.com.geometricweather.R$attr: int drawableTint +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_RC4_128_SHA +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.queue.MpscLinkedQueue queue +com.google.gson.internal.LazilyParsedNumber: float floatValue() +androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_material +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: long serialVersionUID +wangdaye.com.geometricweather.R$attr: int searchViewStyle +androidx.preference.R$dimen: int notification_top_pad_large_text +cyanogenmod.weather.WeatherLocation: WeatherLocation(android.os.Parcel,cyanogenmod.weather.WeatherLocation$1) +androidx.drawerlayout.R$dimen: int notification_content_margin_start +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Tooltip +androidx.recyclerview.R$styleable: int FontFamilyFont_fontVariationSettings +retrofit2.HttpException: retrofit2.Response response() +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_radius +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionBar +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String cityId +wangdaye.com.geometricweather.R$id: int cos +com.google.android.material.R$attr: int listItemLayout +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: boolean isDisposed() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +android.didikee.donate.R$style: int TextAppearance_AppCompat_Display1 +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +androidx.coordinatorlayout.R$id: int text2 +io.reactivex.Observable: io.reactivex.Observable takeUntil(io.reactivex.ObservableSource) +cyanogenmod.app.CustomTile$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.viewpager.R$id: R$id() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_default_mtrl_alpha +okhttp3.internal.http2.Settings: int[] values +com.google.android.material.R$styleable: int Toolbar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.R$array: int temperature_units_short +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_android_maxWidth +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarSize +wangdaye.com.geometricweather.R$color: int material_grey_800 +james.adaptiveicon.R$drawable: int abc_list_divider_mtrl_alpha +com.google.android.material.R$dimen: int mtrl_slider_halo_radius +com.google.android.material.R$styleable: int AppBarLayout_liftOnScroll +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintStart_toEndOf +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_disableDependentsState +com.google.android.material.R$styleable: int Layout_android_layout_marginBottom +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +androidx.appcompat.R$styleable: int SearchView_submitBackground +wangdaye.com.geometricweather.R$dimen: int disabled_alpha_material_dark +com.google.android.material.R$styleable: int NavigationView_itemBackground +james.adaptiveicon.R$attr: int progressBarStyle +com.xw.repo.bubbleseekbar.R$color: int foreground_material_dark +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_font +cyanogenmod.app.CustomTileListenerService: void onCustomTileRemoved(cyanogenmod.app.StatusBarPanelCustomTile) +wangdaye.com.geometricweather.R$drawable: int ic_settings +wangdaye.com.geometricweather.R$attr: int customPixelDimension +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric +com.google.android.material.R$attr: int minSeparation +com.xw.repo.bubbleseekbar.R$attr: int actionModeSelectAllDrawable +androidx.appcompat.R$drawable: int btn_checkbox_checked_mtrl +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_showText +okhttp3.internal.cache.DiskLruCache$1: DiskLruCache$1(okhttp3.internal.cache.DiskLruCache) +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetLeft +retrofit2.ParameterHandler$Header +okhttp3.Cookie: java.lang.String toString() +io.reactivex.internal.observers.DeferredScalarObserver +wangdaye.com.geometricweather.R$styleable: int[] ActionMode +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +okhttp3.internal.ws.RealWebSocket: java.util.List ONLY_HTTP1 +com.turingtechnologies.materialscrollbar.R$id: int pin +retrofit2.OkHttpCall: boolean executed +com.xw.repo.bubbleseekbar.R$string: int abc_action_menu_overflow_description +androidx.constraintlayout.widget.R$attr: int actionModeCloseDrawable +com.google.android.material.R$style: int Platform_V21_AppCompat +androidx.vectordrawable.R$id: int accessibility_custom_action_18 +androidx.customview.R$id: int notification_main_column +androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context) +com.google.android.material.slider.Slider: void setThumbStrokeColorResource(int) +cyanogenmod.providers.CMSettings$DelimitedListValidator: CMSettings$DelimitedListValidator(java.lang.String[],java.lang.String,boolean) +retrofit2.OkHttpCall: okio.Timeout timeout() +com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetTop +androidx.preference.R$dimen: int abc_text_size_body_1_material +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Caption +okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date expires +wangdaye.com.geometricweather.R$attr: int contentPaddingTop +com.google.android.material.R$dimen: int mtrl_high_ripple_pressed_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_enabled +okhttp3.internal.http2.Hpack: java.util.Map NAME_TO_FIRST_INDEX +com.turingtechnologies.materialscrollbar.R$id: int action_divider +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String content +com.google.android.material.progressindicator.ProgressIndicator: void setLinearSeamless(boolean) +com.google.android.material.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +james.adaptiveicon.R$dimen: int compat_button_padding_vertical_material +cyanogenmod.app.CustomTile$ExpandedItem: int itemDrawableResourceId +com.google.android.material.R$layout: int design_navigation_item_header +androidx.appcompat.R$styleable: int PopupWindow_overlapAnchor +okhttp3.internal.tls.TrustRootIndex +androidx.appcompat.resources.R$attr: int fontStyle +androidx.appcompat.widget.ContentFrameLayout: void setAttachListener(androidx.appcompat.widget.ContentFrameLayout$OnAttachListener) +com.turingtechnologies.materialscrollbar.R$styleable: int[] ColorStateListItem +com.turingtechnologies.materialscrollbar.R$drawable: int abc_tab_indicator_material +com.turingtechnologies.materialscrollbar.R$id: int buttonPanel +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean delayError +retrofit2.internal.EverythingIsNonNull +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_phaseText +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +com.google.android.material.R$dimen: int appcompat_dialog_background_inset +androidx.loader.R$dimen: int notification_large_icon_height +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator QS_SHOW_BRIGHTNESS_SLIDER_VALIDATOR +androidx.appcompat.R$layout: int abc_action_menu_layout +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String windspeed +com.turingtechnologies.materialscrollbar.R$id: int right +wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Bottom_Right +com.turingtechnologies.materialscrollbar.R$attr: int title +com.google.gson.stream.JsonReader: int PEEKED_TRUE +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +cyanogenmod.themes.IThemeService$Stub: java.lang.String DESCRIPTOR +cyanogenmod.profiles.ConnectionSettings: java.lang.String EXTRA_SUB_ID +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric Metric +androidx.preference.R$drawable: int abc_ic_clear_material +androidx.constraintlayout.widget.R$styleable: int Transform_android_scaleY +wangdaye.com.geometricweather.R$styleable: int[] BackgroundStyle +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Small +com.google.android.material.appbar.AppBarLayout: void setLiftOnScrollTargetViewId(int) +androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$styleable: int Variant_region_widthMoreThan +com.google.android.material.circularreveal.CircularRevealLinearLayout +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnLayoutChangeListener(com.google.android.material.snackbar.BaseTransientBottomBar$OnLayoutChangeListener) +com.google.android.material.tabs.TabLayout: void setTabRippleColor(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$color: int abc_tint_spinner +androidx.appcompat.view.menu.ExpandedMenuView +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_DrawerArrowToggle +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDataConnectionSelectedOnSub +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarItemBackground +org.greenrobot.greendao.AbstractDaoSession: java.util.Map entityToDao +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_COLOR_VALIDATOR +com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView_PrimarySurface +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: void setRootAlpha(int) +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DialogWhenLarge +androidx.constraintlayout.widget.Placeholder: void setEmptyVisibility(int) +com.xw.repo.bubbleseekbar.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +com.google.android.material.button.MaterialButton: void setIconResource(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSo2(java.lang.String) +okhttp3.logging.HttpLoggingInterceptor: void logHeader(okhttp3.Headers,int) +okio.Buffer$UnsafeCursor: okio.Segment segment +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_5_00 +androidx.appcompat.R$styleable: int AlertDialog_android_layout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean humidity +androidx.legacy.coreutils.R$attr: R$attr() +wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_big_view +com.google.android.material.R$styleable: int MaterialButton_iconGravity +androidx.preference.R$id: int accessibility_custom_action_7 +cyanogenmod.platform.Manifest$permission: java.lang.String PROTECTED_APP +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onPause() +com.google.android.material.R$dimen: int action_bar_size +retrofit2.adapter.rxjava2.CallExecuteObservable: retrofit2.Call originalCall +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIcon +androidx.legacy.coreutils.R$dimen: int notification_top_pad +cyanogenmod.weather.WeatherInfo: java.lang.String access$1402(cyanogenmod.weather.WeatherInfo,java.lang.String) +cyanogenmod.weather.WeatherInfo$Builder: long mTimestamp +com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorType(int) +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month_labeled +androidx.constraintlayout.widget.R$dimen: int abc_dialog_title_divider_material +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstVerticalBias +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String getPubTime() +androidx.core.app.CoreComponentFactory: CoreComponentFactory() +androidx.preference.R$layout: int select_dialog_singlechoice_material +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_menu +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeChangeRequest$RequestType getLastThemeChangeRequestType() +androidx.dynamicanimation.animation.DynamicAnimation: void removeUpdateListener(androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationUpdateListener) +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void lookupCity(cyanogenmod.weather.RequestInfo) +androidx.preference.R$attr: int subtitle +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_progressBarPadding +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginRight +wangdaye.com.geometricweather.R$id: int month_navigation_previous +io.reactivex.internal.observers.DeferredScalarObserver: DeferredScalarObserver(io.reactivex.Observer) +com.xw.repo.bubbleseekbar.R$attr: int textColorSearchUrl +androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_toId +androidx.appcompat.resources.R$color: int notification_action_color_filter +james.adaptiveicon.R$styleable: int AppCompatTheme_dialogPreferredPadding +androidx.hilt.work.R$anim: int fragment_close_exit +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pubTime +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTintMode +androidx.appcompat.R$style: int Base_Widget_AppCompat_SearchView +cyanogenmod.app.CustomTile$RemoteExpandedStyle: void setRemoteViews(android.widget.RemoteViews) +androidx.core.R$id: int text2 +com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_checkbox +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImpl: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) +cyanogenmod.app.Profile$TriggerState: int ON_CONNECT +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float icePrecipitation +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String city androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_visibility -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.ReportFragment$ActivityInitializationListener mInitializationListener -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource[],io.reactivex.functions.Function) -com.jaredrummler.android.colorpicker.R$styleable: int Preference_dependency -okhttp3.internal.http2.Http2Connection$5: int val$streamId -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property PublishTime -james.adaptiveicon.R$attr: int colorAccent -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: ObservableBuffer$BufferSkipObserver(io.reactivex.Observer,int,int,java.util.concurrent.Callable) -james.adaptiveicon.R$styleable: int[] AppCompatTextHelper -com.google.android.material.textfield.TextInputLayout: void setEndIconDrawable(int) -okhttp3.internal.Internal: okhttp3.internal.connection.StreamAllocation streamAllocation(okhttp3.Call) -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout -androidx.fragment.R$id: R$id() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: AccuCurrentResult$RealFeelTemperature() -wangdaye.com.geometricweather.db.entities.WeatherEntity: long publishTime -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_motionStagger +okhttp3.Response$Builder: long sentRequestAtMillis +com.turingtechnologies.materialscrollbar.DragScrollBar: int getMode() +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgressBackgroundColor(int) +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String dn +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void cancel() +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderQuery +androidx.constraintlayout.utils.widget.ImageFilterButton: void setSaturation(float) +com.jaredrummler.android.colorpicker.R$attr: int actionBarItemBackground +wangdaye.com.geometricweather.R$styleable: int Layout_barrierAllowsGoneWidgets +com.google.gson.stream.JsonScope: int CLOSED +androidx.appcompat.R$styleable: int CompoundButton_buttonTint +androidx.preference.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: java.lang.String date +cyanogenmod.weather.WeatherInfo$DayForecast: double mLow +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton_CloseMode +androidx.preference.R$dimen: int highlight_alpha_material_colored +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_exitFadeDuration +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String Link +cyanogenmod.power.PerformanceManager: cyanogenmod.power.IPerformanceManager sService +com.jaredrummler.android.colorpicker.R$layout: int abc_action_mode_bar +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: void invoke(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$id: int select_dialog_listview +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_tileMode +androidx.hilt.R$integer +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_checkedTextViewStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_textLocale +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintAnimationEnabled +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context,android.util.AttributeSet) +okhttp3.internal.cache.DiskLruCache: boolean hasJournalErrors +retrofit2.KotlinExtensions +com.google.android.material.R$layout: int select_dialog_multichoice_material +com.jaredrummler.android.colorpicker.R$id: int submenuarrow +com.turingtechnologies.materialscrollbar.R$anim: int design_bottom_sheet_slide_out +com.jaredrummler.android.colorpicker.R$attr: int contentInsetStart +retrofit2.RequestFactory: RequestFactory(retrofit2.RequestFactory$Builder) +com.google.android.material.R$id: int tag_screen_reader_focusable +wangdaye.com.geometricweather.R$drawable: int shortcuts_wind +com.google.android.material.R$color: int mtrl_btn_text_btn_ripple_color +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetStart +wangdaye.com.geometricweather.R$id: int item_about_header_appIcon +androidx.appcompat.R$layout: int abc_list_menu_item_checkbox +io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean isEmpty() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabView +androidx.lifecycle.extensions.R$styleable: R$styleable() +com.google.android.material.R$id: int material_clock_face +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPm10(java.lang.Float) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: int getChartTop() +com.google.android.material.R$animator: int linear_indeterminate_line1_head_interpolator +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getLogo() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog +com.google.android.material.slider.Slider: void setThumbRadius(int) +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: boolean inSingle +james.adaptiveicon.R$attr: int actionModeCloseDrawable +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.google.android.material.R$id: int save_overlay_view +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) +androidx.lifecycle.LiveData: androidx.arch.core.internal.SafeIterableMap mObservers +com.google.android.material.R$id: int middle +okhttp3.Challenge: Challenge(java.lang.String,java.util.Map) +androidx.recyclerview.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.R$attr: int layout_editor_absoluteY +androidx.constraintlayout.helper.widget.Layer: void setPivotX(float) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedQueryParameter(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginEnd +com.bumptech.glide.integration.okhttp.R$id: int normal +androidx.hilt.lifecycle.R$id: int notification_main_column +com.google.android.material.R$attr: int isLightTheme +wangdaye.com.geometricweather.R$attr: int counterEnabled +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life life +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle +okhttp3.ConnectionSpec: int hashCode() +androidx.appcompat.widget.SwitchCompat: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +wangdaye.com.geometricweather.R$string: int key_widget_trend_hourly +james.adaptiveicon.R$id: R$id() +androidx.core.widget.NestedScrollView: int getMaxScrollAmount() +androidx.vectordrawable.R$attr: int fontVariationSettings +io.reactivex.Observable: io.reactivex.Observable retry(io.reactivex.functions.BiPredicate) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HAZE +com.google.android.material.R$attr: int controlBackground +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation RIGHT +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeWetBulbTemperature() +com.google.android.material.R$id: int multiply +androidx.drawerlayout.R$id: int chronometer +android.didikee.donate.R$layout: int abc_list_menu_item_checkbox +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionModeOverlay +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginLeft +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getProgress +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean isEntityUpdateable() +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_enterFadeDuration +androidx.viewpager2.widget.ViewPager2: java.lang.CharSequence getAccessibilityClassName() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowMinWidthMinor +okio.HashingSink: javax.crypto.Mac mac +com.jaredrummler.android.colorpicker.R$attr: int actionButtonStyle +com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_Overflow +androidx.preference.R$styleable: int AppCompatTextView_drawableRightCompat +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: java.lang.String desc +com.google.android.material.R$attr: int navigationIconColor +androidx.drawerlayout.R$layout: int notification_template_icon_group +androidx.constraintlayout.widget.R$styleable: int OnSwipe_maxAcceleration +androidx.activity.R$id: int tag_accessibility_actions +androidx.dynamicanimation.R$styleable: int ColorStateListItem_alpha +io.reactivex.internal.queue.SpscArrayQueue: java.lang.Object poll() +com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabTextColors() +io.reactivex.Observable: io.reactivex.Observable mergeArrayDelayError(int,int,io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_22 io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: long serialVersionUID -wangdaye.com.geometricweather.R$attr: int listPreferredItemHeightLarge -com.google.gson.stream.JsonReader: com.google.gson.stream.JsonToken peek() -com.github.rahatarmanahmed.cpv.CircularProgressView$8: float val$maxSweep -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: double Value -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_COLOR_AUTO -androidx.recyclerview.R$id: int accessibility_custom_action_14 -androidx.loader.R$styleable: int ColorStateListItem_android_alpha -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$attr: int queryBackground -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_disabled_holo_light -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex inTwoDays -android.didikee.donate.R$drawable: int abc_text_select_handle_left_mtrl_light -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_fontFamily -okhttp3.internal.http2.Http2: byte FLAG_COMPRESSED -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitationProbability -androidx.preference.R$styleable: int[] AnimatedStateListDrawableTransition -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -com.google.android.material.R$styleable: int KeyCycle_motionProgress -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void setDisposable(io.reactivex.disposables.Disposable) -androidx.lifecycle.extensions.R$attr: int fontProviderFetchStrategy -androidx.hilt.R$anim: int fragment_fade_exit -androidx.hilt.lifecycle.R$drawable: int notification_template_icon_bg -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitationProbability -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_state_dragged -okhttp3.internal.ws.WebSocketProtocol: java.lang.String acceptHeader(java.lang.String) -io.reactivex.Observable: io.reactivex.Observable startWith(io.reactivex.ObservableSource) -com.google.android.material.R$attr: int buttonTintMode -okhttp3.ResponseBody$BomAwareReader: java.io.Reader delegate -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: double Value -android.support.v4.app.INotificationSideChannel$Stub$Proxy -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_24 -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_DOCUMENT -com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Dialog -com.jaredrummler.android.colorpicker.R$color: int abc_btn_colored_borderless_text_material -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -io.reactivex.internal.util.NotificationLite$ErrorNotification -okio.BufferedSource: long indexOfElement(okio.ByteString,long) -com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationX(float) -com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_android_color -io.reactivex.Observable: io.reactivex.Observable sample(io.reactivex.ObservableSource,boolean) -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) -androidx.constraintlayout.widget.R$id: int spacer -com.jaredrummler.android.colorpicker.R$attr: int allowDividerAfterLastItem -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_109 -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.lang.String getSetTime(android.content.Context) -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onError(java.lang.Throwable) -james.adaptiveicon.R$id: int text -com.turingtechnologies.materialscrollbar.R$id: int add -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogTheme -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_second_track_size -cyanogenmod.providers.CMSettings$DiscreteValueValidator -cyanogenmod.profiles.LockSettings -cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup[] getProfileGroups() -wangdaye.com.geometricweather.R$drawable: int ic_close -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_useCompatPadding -okio.Buffer: okio.Buffer writeDecimalLong(long) -wangdaye.com.geometricweather.R$styleable: int Preference_allowDividerBelow -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_headerBackground -androidx.appcompat.R$string: int abc_search_hint -com.bumptech.glide.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.R$attr: int cpv_progress -com.turingtechnologies.materialscrollbar.R$styleable: int[] View -com.google.android.material.R$attr: int maxAcceleration -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceName(android.content.Context) -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: java.lang.String getInterfaceDescriptor() -okhttp3.internal.http.StatusLine: int HTTP_PERM_REDIRECT -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_useCompatPadding -androidx.hilt.lifecycle.R$attr: int fontProviderPackage -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setVibratorIntensity(int) -androidx.cardview.R$attr -okhttp3.internal.http2.Http2: byte FLAG_NONE -okhttp3.internal.cache.DiskLruCache$3: void remove() -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getMinWidthMajor() -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetRight -wangdaye.com.geometricweather.background.receiver.widget.WidgetWeekProvider -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_android_src -wangdaye.com.geometricweather.R$attr: int cpv_animSteps -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginBottom -android.support.v4.app.RemoteActionCompatParcelizer: RemoteActionCompatParcelizer() -wangdaye.com.geometricweather.R$string: int key_widget_trend_daily -okhttp3.internal.http2.Http2Reader: boolean client -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListMenuView -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackTintList() -wangdaye.com.geometricweather.common.basic.models.weather.Daily: float hoursOfSun -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String weatherText -com.jaredrummler.android.colorpicker.R$layout: int abc_action_bar_up_container -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(long) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String pollutant -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pressure -com.jaredrummler.android.colorpicker.R$layout: int abc_expanded_menu_layout -com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableItem -cyanogenmod.weather.WeatherInfo: java.lang.String mCity -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: boolean isDisposed() -cyanogenmod.app.ProfileGroup: void validateOverrideUris(android.content.Context) +wangdaye.com.geometricweather.R$id: int filled +androidx.appcompat.R$styleable: int SearchView_android_imeOptions +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onDetach +wangdaye.com.geometricweather.R$id: int list_item +wangdaye.com.geometricweather.R$color: int design_fab_stroke_end_inner_color +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +androidx.appcompat.R$id: int action_text +wangdaye.com.geometricweather.R$dimen: int cpv_item_horizontal_padding +androidx.customview.R$style: int TextAppearance_Compat_Notification_Info +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.internal.disposables.SequentialDisposable task +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node findByEntry(java.util.Map$Entry) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties +androidx.constraintlayout.widget.R$styleable: int Motion_motionStagger +androidx.constraintlayout.widget.R$styleable: int SearchView_queryBackground +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_pixel +androidx.activity.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$id: int snap +com.turingtechnologies.materialscrollbar.R$attr: int tabGravity +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeSplitBackground +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginStart +com.google.android.material.R$attr: int backgroundInsetEnd +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.AlertEntityDao getAlertEntityDao() +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: boolean isDisposed() +com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context) +androidx.appcompat.R$dimen: int abc_control_corner_material +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +androidx.core.widget.NestedScrollView +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String latitude +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_android_gravity +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade() +android.didikee.donate.R$styleable: int SwitchCompat_thumbTint +com.bumptech.glide.R$id: int tag_transition_group +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIconTint +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial() +wangdaye.com.geometricweather.R$attr: int round +com.google.android.material.R$styleable: int RecycleListView_paddingTopNoTitle +androidx.lifecycle.ServiceLifecycleDispatcher: android.os.Handler mHandler +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void startFirstTimeout(io.reactivex.ObservableSource) +cyanogenmod.providers.CMSettings$Global: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +android.support.v4.os.ResultReceiver$MyRunnable: int mResultCode +com.google.android.material.R$id: int rectangles +androidx.preference.R$attr: int alertDialogCenterButtons +android.didikee.donate.R$attr: int closeIcon +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState valueOf(java.lang.String) +androidx.work.Worker: Worker(android.content.Context,androidx.work.WorkerParameters) +androidx.lifecycle.extensions.R$id: int icon +androidx.preference.R$color: int primary_text_disabled_material_light +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Spinner +androidx.preference.R$dimen: int abc_text_size_title_material_toolbar +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_grey +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: double lat +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Pm25 +com.xw.repo.bubbleseekbar.R$attr: int barLength +wangdaye.com.geometricweather.R$styleable: int Transition_duration +cyanogenmod.weather.WeatherInfo: double getTodaysHigh() +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarWidgetTheme +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setDefense(java.util.List) +androidx.lifecycle.Lifecycling: boolean isLifecycleParent(java.lang.Class) +androidx.constraintlayout.widget.R$attr: int constraints +com.turingtechnologies.materialscrollbar.R$id: int action_mode_close_button +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_overflow_material +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase moonPhase +retrofit2.BuiltInConverters$UnitResponseBodyConverter: retrofit2.BuiltInConverters$UnitResponseBodyConverter INSTANCE +androidx.appcompat.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec build() +androidx.preference.R$style: int TextAppearance_AppCompat_Medium_Inverse +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display3 +okhttp3.internal.connection.RouteDatabase: void connected(okhttp3.Route) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableRight +james.adaptiveicon.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderQuery +androidx.hilt.work.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme +okio.AsyncTimeout: long IDLE_TIMEOUT_NANOS +androidx.preference.R$attr: int homeLayout +wangdaye.com.geometricweather.R$attr: int toolbarNavigationButtonStyle +wangdaye.com.geometricweather.R$id: int container_alert_display_view_container +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_id +wangdaye.com.geometricweather.R$id: int both +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: long updateTime +com.xw.repo.bubbleseekbar.R$attr: int ttcIndex +androidx.preference.R$styleable: int Toolbar_navigationIcon +com.github.rahatarmanahmed.cpv.CircularProgressView$6: CircularProgressView$6(com.github.rahatarmanahmed.cpv.CircularProgressView) +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: MfLocationResult() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassLevel(java.lang.Integer) +wangdaye.com.geometricweather.R$attr: int snackbarStyle +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: io.reactivex.Observer downstream +androidx.appcompat.R$styleable: int AppCompatTheme_switchStyle +okhttp3.internal.tls.DistinguishedNameParser: int end +com.google.android.material.R$styleable: int NavigationView_android_fitsSystemWindows +androidx.constraintlayout.widget.R$attr: int theme +androidx.appcompat.R$attr: int windowFixedHeightMajor +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +com.google.android.material.R$string: int search_menu_title +com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace DISPLAY_P3 +com.google.gson.LongSerializationPolicy$2: LongSerializationPolicy$2(java.lang.String,int) +com.xw.repo.bubbleseekbar.R$attr: int buttonBarNegativeButtonStyle +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_keylines +androidx.preference.PreferenceGroup +com.google.android.material.R$styleable: int TabLayout_tabContentStart +wangdaye.com.geometricweather.R$attr: int fontFamily +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeFindDrawable +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.google.android.material.R$id: int icon +com.google.android.material.R$style: int TextAppearance_Compat_Notification_Info +androidx.coordinatorlayout.widget.CoordinatorLayout: android.graphics.drawable.Drawable getStatusBarBackground() +com.google.android.material.R$string: int mtrl_picker_toggle_to_calendar_input_mode +androidx.activity.R$id: int accessibility_custom_action_7 +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf +wangdaye.com.geometricweather.R$xml: int perference_appearance +wangdaye.com.geometricweather.R$xml: int icon_provider_config +wangdaye.com.geometricweather.db.entities.WeatherEntity: long publishTime +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object lpValue() +androidx.appcompat.widget.ViewStubCompat: ViewStubCompat(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_menu_item_layout +com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearance +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onError(java.lang.Throwable) +androidx.loader.R$styleable: int GradientColorItem_android_offset +com.turingtechnologies.materialscrollbar.R$drawable: int indicator +android.didikee.donate.R$id: int search_voice_btn +james.adaptiveicon.R$attr: int contentInsetEnd +com.google.gson.stream.JsonReader: boolean isLiteral(char) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_PopupMenu +cyanogenmod.externalviews.KeyguardExternalView$9 +wangdaye.com.geometricweather.R$id: int ratio +com.google.android.material.R$attr: int layout_constraintStart_toStartOf +com.google.android.material.chip.ChipGroup: void setChipSpacingVertical(int) +androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontStyle +retrofit2.BuiltInConverters$BufferingResponseBodyConverter: retrofit2.BuiltInConverters$BufferingResponseBodyConverter INSTANCE +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_orderInCategory +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType GIF +retrofit2.Converter$Factory: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) +com.google.android.material.R$styleable: int MenuItem_iconTint +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onError(java.lang.Throwable) wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: java.lang.Float windChill -cyanogenmod.weatherservice.IWeatherProviderService$Stub: java.lang.String DESCRIPTOR -com.google.android.material.R$id: int action_context_bar -androidx.work.Worker: Worker(android.content.Context,androidx.work.WorkerParameters) -androidx.vectordrawable.animated.R$id: int action_container -androidx.constraintlayout.widget.R$color: int dim_foreground_material_light -com.xw.repo.bubbleseekbar.R$attr: int windowActionModeOverlay -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: long serialVersionUID -okhttp3.internal.ws.WebSocketProtocol: int CLOSE_NO_STATUS_CODE -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_OFF -james.adaptiveicon.R$style: int Widget_AppCompat_SeekBar_Discrete -com.jaredrummler.android.colorpicker.R$attr: int actionModeStyle -wangdaye.com.geometricweather.R$id: int invisible -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: AccuCurrentResult$TemperatureSummary$Past6HourRange() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_27 -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator -android.didikee.donate.R$style: int Base_V23_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_transformPivotY -wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchRegionId -okio.BufferedSink: okio.BufferedSink writeShortLe(int) -android.didikee.donate.R$drawable: int abc_scrubber_primary_mtrl_alpha -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void run() -com.google.android.material.R$dimen: int mtrl_calendar_year_width -retrofit2.OptionalConverterFactory$OptionalConverter -androidx.constraintlayout.widget.R$color: int notification_icon_bg_color -cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mOnLongClick -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder cache(okhttp3.Cache) -wangdaye.com.geometricweather.R$id: int scrollBar -com.google.android.material.textfield.TextInputLayout: void setEndIconDrawable(android.graphics.drawable.Drawable) -androidx.constraintlayout.widget.R$attr: int backgroundTintMode -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean cancelled -wangdaye.com.geometricweather.R$id: int material_clock_display -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getRagweedIndex() -james.adaptiveicon.R$attr: int searchHintIcon -com.xw.repo.bubbleseekbar.R$styleable: int GradientColorItem_android_color -cyanogenmod.app.CustomTile: boolean sensitiveData -androidx.preference.R$anim: int abc_popup_exit -cyanogenmod.app.CustomTile: CustomTile() -wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundTomorrowForecastUpdateService: Hilt_ForegroundTomorrowForecastUpdateService() -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplaceInTxIterable -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State[] $VALUES -androidx.fragment.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration -okio.RealBufferedSink: boolean isOpen() -wangdaye.com.geometricweather.common.basic.models.weather.Wind: int getWindColor(android.content.Context) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: void dispose() -androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedHeightMinor -com.google.android.material.R$attr: int tabMinWidth -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -wangdaye.com.geometricweather.R$styleable: int SearchView_searchHintIcon -wangdaye.com.geometricweather.R$string: int chip_text -com.google.android.material.R$styleable: int ActionMode_subtitleTextStyle -androidx.hilt.work.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetTop -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_3 -androidx.constraintlayout.widget.R$attr: int layout_constraintDimensionRatio -com.google.android.material.R$dimen: int mtrl_calendar_text_input_padding_top -com.turingtechnologies.materialscrollbar.R$attr: int strokeColor -wangdaye.com.geometricweather.R$string: int about_retrofit -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectTimeout(java.time.Duration) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void innerSuccess(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver,java.lang.Object) -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) -androidx.preference.R$attr: int maxHeight -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColorHint -okhttp3.FormBody: java.util.List encodedNames -com.github.rahatarmanahmed.cpv.CircularProgressView$2: float val$currentProgress -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog -wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_width_overflow_material -io.reactivex.internal.disposables.SequentialDisposable: boolean replace(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getTotalPrecipitation() -com.jaredrummler.android.colorpicker.R$style: int Base_V28_Theme_AppCompat_Light -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean cancelled -cyanogenmod.library.R$styleable: R$styleable() -okhttp3.internal.http2.Header: java.lang.String RESPONSE_STATUS_UTF8 -androidx.appcompat.R$id: int accessibility_custom_action_29 -com.turingtechnologies.materialscrollbar.R$id: int progress_circular -wangdaye.com.geometricweather.R$id: int widget_week_container -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver -androidx.fragment.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.R$id: int test_radiobutton_app_button_tint -wangdaye.com.geometricweather.R$string: int feedback_readd_location -androidx.swiperefreshlayout.R$attr -wangdaye.com.geometricweather.R$layout: int design_navigation_item_header -androidx.constraintlayout.widget.R$styleable: int[] CustomAttribute -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display4 -com.google.android.material.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassLevel -androidx.work.R$id: int tag_screen_reader_focusable -androidx.constraintlayout.widget.R$color: int abc_primary_text_disable_only_material_light -okhttp3.internal.http2.Http2Connection: long DEGRADED_PONG_TIMEOUT_NS -androidx.constraintlayout.widget.R$styleable: int Transition_constraintSetStart -androidx.coordinatorlayout.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation +wangdaye.com.geometricweather.R$array: int widget_text_colors +androidx.preference.R$bool: int abc_allow_stacked_button_bar +android.didikee.donate.R$id: int action_bar_container +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: long index +okio.Buffer$2: int available() +androidx.work.R$styleable: int[] GradientColor +com.google.android.material.R$dimen: int mtrl_btn_disabled_z +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(java.lang.String) +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver) +wangdaye.com.geometricweather.R$attr: int customFloatValue +wangdaye.com.geometricweather.location.services.LocationService: java.lang.String[] getPermissions() +androidx.constraintlayout.widget.R$style: int Animation_AppCompat_Tooltip +wangdaye.com.geometricweather.R$id: int mtrl_calendar_months +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_MIDDLE +cyanogenmod.hardware.CMHardwareManager: int getVibratorDefaultIntensity() +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder port(int) +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_dropdownPreferenceStyle +io.reactivex.internal.disposables.DisposableHelper: boolean isDisposed() +io.reactivex.internal.util.VolatileSizeArrayList: java.util.ListIterator listIterator() +com.bumptech.glide.R$dimen: int notification_big_circle_margin +androidx.lifecycle.SavedStateHandleController$1 +com.jaredrummler.android.colorpicker.R$style: int Preference_DropDown +com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipStrokeColor() +com.google.android.material.R$styleable: int MaterialCardView_strokeWidth +okhttp3.internal.Version +wangdaye.com.geometricweather.R$id: int item_about_link_icon +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +androidx.dynamicanimation.R$dimen: int notification_right_icon_size +com.jaredrummler.android.colorpicker.R$attr: int backgroundSplit +androidx.lifecycle.Transformations$3: void onChanged(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Text +androidx.legacy.coreutils.R$string: R$string() +androidx.appcompat.R$attr: int windowFixedHeightMinor +androidx.vectordrawable.R$drawable: int notification_bg_low_normal +james.adaptiveicon.R$attr: int buttonStyleSmall +com.google.android.material.textfield.TextInputLayout: void setCounterOverflowTextAppearance(int) +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundDrawable(android.graphics.drawable.Drawable) +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabBarStyle +com.google.android.material.bottomappbar.BottomAppBar$Behavior: BottomAppBar$Behavior(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat_Dark +okhttp3.Headers: okhttp3.Headers$Builder newBuilder() +androidx.lifecycle.extensions.R$id: int right_side +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void onChanged(java.lang.Object) +androidx.constraintlayout.widget.R$id: int chronometer +okio.GzipSink: void close() +wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_week_setting +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setRightToLeft(boolean) +io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.Observer) +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +com.turingtechnologies.materialscrollbar.R$attr: int fabAlignmentMode +cyanogenmod.externalviews.KeyguardExternalView$10: cyanogenmod.externalviews.KeyguardExternalView this$0 +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +james.adaptiveicon.R$attr: int seekBarStyle +io.reactivex.Observable: io.reactivex.Observable debounce(long,java.util.concurrent.TimeUnit) +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_to_on_mtrl_015 +com.google.android.material.R$styleable: int AppCompatTheme_imageButtonStyle +cyanogenmod.providers.CMSettings$NameValueCache: android.content.IContentProvider lazyGetProvider(android.content.ContentResolver) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.R$layout: int widget_clock_day_details +okhttp3.internal.http2.Http2Stream$FramingSource: long maxByteCount +wangdaye.com.geometricweather.R$attr: int listPopupWindowStyle +wangdaye.com.geometricweather.R$dimen: int abc_dialog_title_divider_material +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$styleable: int[] CoordinatorLayout_Layout +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_width_minor +org.greenrobot.greendao.database.DatabaseOpenHelper: java.lang.String name +com.turingtechnologies.materialscrollbar.R$attr: int dialogTheme +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: FitSystemBarSwipeRefreshLayout(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$attr: int chipSpacingVertical +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_removeCustomTileFromListener +wangdaye.com.geometricweather.R$array: int notification_text_colors +androidx.constraintlayout.widget.R$id: int contentPanel androidx.preference.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.R$string: int tag_uv -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Dialog -okhttp3.Call: boolean isExecuted() -com.xw.repo.bubbleseekbar.R$dimen: int notification_small_icon_size_as_large -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: long serialVersionUID -james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlNormal -com.google.android.material.R$attr: int spanCount -androidx.appcompat.app.AppCompatDelegateImpl$ListMenuDecorView -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_numericModifiers -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_Solid -androidx.appcompat.resources.R$id: int accessibility_custom_action_18 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableRight -com.google.android.material.R$attr: int tabBackground -cyanogenmod.weather.WeatherInfo: java.util.List getForecasts() -com.github.rahatarmanahmed.cpv.CircularProgressView: float startAngle -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String[] VALID_KEYS -androidx.preference.R$styleable: int SwitchPreferenceCompat_switchTextOn -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_dark -wangdaye.com.geometricweather.daily.DailyWeatherActivity: DailyWeatherActivity() -wangdaye.com.geometricweather.R$styleable: int[] FloatingActionButton -okio.SegmentedByteString: byte[] toByteArray() -cyanogenmod.weatherservice.ServiceRequestResult$Builder: cyanogenmod.weather.WeatherInfo mWeatherInfo -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalGap -android.didikee.donate.R$attr: int paddingEnd -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: java.lang.Object invoke(java.lang.Object) -retrofit2.OkHttpCall$NoContentResponseBody: long contentLength() -com.google.android.material.R$styleable: int KeyCycle_waveVariesBy -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.util.concurrent.atomic.AtomicReference current -okio.Timeout: long deadlineNanoTime() -com.google.android.material.R$styleable: int ActionBar_logo -android.didikee.donate.R$id: int expanded_menu -com.google.android.material.R$attr: int textAppearanceButton -android.support.v4.os.ResultReceiver: int describeContents() -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_container -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMargin -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemTextAppearance -cyanogenmod.externalviews.KeyguardExternalViewProviderService: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider createExternalView(android.os.Bundle) -com.turingtechnologies.materialscrollbar.R$attr: int radioButtonStyle -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Body1 -androidx.appcompat.R$drawable: int abc_textfield_activated_mtrl_alpha -cyanogenmod.externalviews.KeyguardExternalView$6: boolean val$screenOn -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar -com.jaredrummler.android.colorpicker.R$color: int material_grey_600 -androidx.constraintlayout.widget.R$attr: int listLayout -com.jaredrummler.android.colorpicker.R$attr: int listDividerAlertDialog -james.adaptiveicon.R$drawable: int abc_ic_menu_share_mtrl_alpha -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRealFeelShaderTemperature(java.lang.Integer) -androidx.transition.R$styleable: int GradientColor_android_centerY -android.didikee.donate.R$styleable: int AppCompatTextView_drawableBottomCompat -com.google.android.material.R$dimen: int mtrl_fab_translation_z_pressed -wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity -androidx.constraintlayout.widget.R$id: int alertTitle -androidx.constraintlayout.widget.R$attr: int collapseIcon -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_hint -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_subtitle_top_margin_material -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDate(java.util.Date) -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_maxImageSize -androidx.vectordrawable.R$attr: int font -androidx.appcompat.R$dimen: int abc_action_button_min_width_material -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_android_orderingFromXml -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String zh_TW -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: boolean isValid() -com.turingtechnologies.materialscrollbar.R$attr: int itemIconPadding -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display1 -retrofit2.Utils: boolean equals(java.lang.reflect.Type,java.lang.reflect.Type) -okhttp3.WebSocket: void cancel() -wangdaye.com.geometricweather.R$id: int mtrl_calendar_text_input_frame -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListMenuView -okhttp3.RequestBody$1: okio.ByteString val$content -wangdaye.com.geometricweather.R$styleable: int[] CoordinatorLayout_Layout -androidx.preference.R$drawable: int abc_text_select_handle_left_mtrl_light -androidx.preference.R$attr: int listPreferredItemPaddingRight -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_cancelLiveLockScreen -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_activityChooserViewStyle -cyanogenmod.profiles.LockSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -okio.Okio: okio.Sink sink(java.net.Socket) -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: ParallelRunOn$BaseRunOnSubscriber(int,io.reactivex.internal.queue.SpscArrayQueue,io.reactivex.Scheduler$Worker) -com.google.android.material.R$dimen: int abc_alert_dialog_button_dimen -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSearchResultTitle -androidx.recyclerview.R$id: int accessibility_custom_action_6 -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_background -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -androidx.viewpager2.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$attr: int behavior_autoShrink -okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_1 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_36dp -androidx.viewpager.R$styleable: int FontFamilyFont_font -android.didikee.donate.R$drawable: int abc_item_background_holo_dark -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_RECENT_BUTTON -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context) -cyanogenmod.weather.WeatherInfo: int getConditionCode() -io.reactivex.subjects.PublishSubject$PublishDisposable: PublishSubject$PublishDisposable(io.reactivex.Observer,io.reactivex.subjects.PublishSubject) -androidx.loader.R$style: int Widget_Compat_NotificationActionContainer -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_dither -retrofit2.RequestFactory$Builder: java.lang.annotation.Annotation[][] parameterAnnotationsArray -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextAppearanceActive -com.google.android.material.R$styleable: int Constraint_android_elevation -androidx.appcompat.R$string: int abc_searchview_description_query -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -android.didikee.donate.R$attr: int singleChoiceItemLayout -androidx.appcompat.R$attr: int listMenuViewStyle -wangdaye.com.geometricweather.db.entities.LocationEntity: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource getWeatherSource() -wangdaye.com.geometricweather.R$attr: int voiceIcon -com.bumptech.glide.R$id: int time -androidx.recyclerview.R$layout -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderAuthority -james.adaptiveicon.R$drawable: int notification_bg_low_normal -android.didikee.donate.R$attr: int logoDescription -com.google.android.material.card.MaterialCardView: float getCardViewRadius() -com.google.android.material.card.MaterialCardView: void setCardBackgroundColor(int) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupWindow -org.greenrobot.greendao.AbstractDaoSession: void runInTx(java.lang.Runnable) -wangdaye.com.geometricweather.R$attr: int bsb_show_thumb_text -cyanogenmod.themes.ThemeManager$ThemeProcessingListener: void onFinishedProcessing(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int logo -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listDividerAlertDialog -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_visible -cyanogenmod.app.Profile$NotificationLightMode: int DEFAULT -com.github.rahatarmanahmed.cpv.CircularProgressView: float maxProgress -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 -android.didikee.donate.R$styleable: int Toolbar_contentInsetRight -androidx.vectordrawable.R$id: int accessibility_custom_action_17 -androidx.preference.R$styleable: int TextAppearance_android_textColor -androidx.preference.R$styleable: int ButtonBarLayout_allowStacking -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.util.Date getDate() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float pm25 -androidx.appcompat.resources.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.R$id: int dialog_time_setter_done -okhttp3.Challenge: int hashCode() -androidx.preference.R$id: int title_template -cyanogenmod.providers.CMSettings$Secure: float getFloat(android.content.ContentResolver,java.lang.String,float) -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_4 -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit getInstance(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.History: java.util.Date date -androidx.hilt.R$integer: int status_bar_notification_info_maxnum -androidx.vectordrawable.R$dimen: int compat_button_inset_horizontal_material -androidx.appcompat.widget.ActivityChooserView: void setActivityChooserModel(androidx.appcompat.widget.ActivityChooserModel) -androidx.constraintlayout.widget.R$dimen: int abc_config_prefDialogWidth -okhttp3.internal.http2.Http2Connection$Listener: void onStream(okhttp3.internal.http2.Http2Stream) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowMinWidthMajor -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void drain() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25 -androidx.transition.R$styleable: int ColorStateListItem_android_color -com.bumptech.glide.R$id: int left -wangdaye.com.geometricweather.location.services.LocationService: void requestLocation(android.content.Context,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Body2 -okhttp3.internal.http.RequestLine: java.lang.String requestPath(okhttp3.HttpUrl) -com.google.android.material.R$attr: int layout_constraintCircleRadius -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.HourlyEntity) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constrainedWidth -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_AES_256_CBC_SHA -wangdaye.com.geometricweather.db.entities.DailyEntity: DailyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.util.Date,java.util.Date,java.util.Date,java.util.Date,java.lang.Integer,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,float) -io.reactivex.disposables.ReferenceDisposable: ReferenceDisposable(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle -okhttp3.internal.ws.WebSocketProtocol: void validateCloseCode(int) -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetEnd -cyanogenmod.app.CMContextConstants: java.lang.String CM_PROFILE_SERVICE -wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary -androidx.work.R$id: int chronometer -wangdaye.com.geometricweather.R$style: int Base_V26_Widget_AppCompat_Toolbar -com.google.android.material.textfield.TextInputLayout: int getBoxBackgroundColor() -com.jaredrummler.android.colorpicker.R$attr: int dialogLayout -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: java.lang.Object singleItem -androidx.preference.R$anim: int abc_slide_in_bottom -io.reactivex.internal.observers.DeferredScalarDisposable: java.lang.Object poll() -wangdaye.com.geometricweather.common.basic.models.weather.Alert: void writeToParcel(android.os.Parcel,int) -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -okhttp3.internal.connection.RealConnection$1: RealConnection$1(okhttp3.internal.connection.RealConnection,boolean,okio.BufferedSource,okio.BufferedSink,okhttp3.internal.connection.StreamAllocation) -cyanogenmod.externalviews.ExternalView: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) -com.xw.repo.bubbleseekbar.R$attr: int tickMark -wangdaye.com.geometricweather.R$id: int item_aqi_title -james.adaptiveicon.R$attr: int textAppearancePopupMenuHeader -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTint -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int ON_NEXT -wangdaye.com.geometricweather.R$id: int widget_clock_day_center -com.google.android.material.R$attr: int backgroundColor -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status CANCELLED -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: long time -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_background_overlay_color_alpha -com.google.android.material.R$style: int Widget_MaterialComponents_ChipGroup -okhttp3.ConnectionSpec: java.lang.String[] cipherSuites -com.turingtechnologies.materialscrollbar.R$attr: int toolbarNavigationButtonStyle -com.google.gson.stream.JsonScope: int EMPTY_OBJECT -com.google.android.material.R$styleable: int Constraint_layout_constraintBaseline_creator -com.turingtechnologies.materialscrollbar.Indicator: int getIndicatorHeight() -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.disposables.Disposable upstream -okhttp3.internal.http2.Header$Listener -wangdaye.com.geometricweather.settings.fragments.AppearanceSettingsFragment: AppearanceSettingsFragment() -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit KN -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_type -com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.animation.MotionSpec getHideMotionSpec() -android.didikee.donate.R$dimen: int hint_alpha_material_light -com.google.android.material.R$attr: int actionModeSelectAllDrawable -okhttp3.internal.platform.AndroidPlatform: boolean isCleartextTrafficPermitted(java.lang.String) -okhttp3.RealCall: void enqueue(okhttp3.Callback) -com.google.android.material.R$styleable: int TextInputEditText_textInputLayoutFocusedRectEnabled -com.turingtechnologies.materialscrollbar.R$color: int tooltip_background_dark -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void drain() -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean done -com.google.android.material.R$style: int ThemeOverlayColorAccentRed -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.R$animator: int design_appbar_state_list_animator -james.adaptiveicon.R$dimen: int abc_edit_text_inset_top_material -okhttp3.internal.ws.RealWebSocket: int receivedCloseCode -com.google.android.material.R$styleable: int ActivityChooserView_initialActivityCount -androidx.constraintlayout.widget.R$styleable: int Toolbar_maxButtonHeight -okhttp3.MultipartBody$Builder: okhttp3.MediaType type -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: java.lang.String Unit -android.didikee.donate.R$drawable: int abc_text_select_handle_left_mtrl_dark -androidx.preference.R$styleable: int Toolbar_maxButtonHeight -androidx.preference.R$attr: int editTextColor -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCountry -androidx.dynamicanimation.R$color: int secondary_text_default_material_light -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode lvNext() -cyanogenmod.profiles.ConnectionSettings: int getSubId() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: double Value -androidx.appcompat.R$attr: int logoDescription -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_id -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_corner_radius_small -com.google.android.material.R$attr: int hintTextAppearance -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_36 -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void setResource(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_searchViewStyle -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconGravity -androidx.activity.R$id: int notification_main_column -okhttp3.internal.http.HttpMethod: boolean requiresRequestBody(java.lang.String) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_RAMP_UP_TIME_VALIDATOR -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int Minute -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar_Small -com.jaredrummler.android.colorpicker.R$id: int seekbar_value -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_w -com.google.android.material.R$styleable: int ConstraintSet_drawPath -com.google.android.material.R$styleable: int Layout_layout_constraintStart_toStartOf -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat -cyanogenmod.profiles.AirplaneModeSettings$1 -okhttp3.RequestBody$1: RequestBody$1(okhttp3.MediaType,okio.ByteString) -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_elevation -androidx.work.R$drawable: int notification_bg_low -androidx.lifecycle.ProcessLifecycleOwner: void activityResumed() -wangdaye.com.geometricweather.R$styleable: int Transition_motionInterpolator -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cwd -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_placeholder_content -okio.SegmentedByteString: okio.ByteString sha1() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf -androidx.recyclerview.R$styleable: int GradientColor_android_centerX -james.adaptiveicon.R$attr: int defaultQueryHint -androidx.constraintlayout.widget.R$attr: int windowFixedHeightMinor -cyanogenmod.app.IPartnerInterface$Stub$Proxy: boolean setZenMode(int) -androidx.preference.R$string: int abc_menu_sym_shortcut_label -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconSize -androidx.hilt.R$id -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: android.os.IBinder mRemote -cyanogenmod.providers.CMSettings$Secure: long getLongForUser(android.content.ContentResolver,java.lang.String,int) -android.support.v4.os.IResultReceiver$Default: void send(int,android.os.Bundle) -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnLongClickIntent(android.app.PendingIntent) +androidx.preference.R$styleable: int DialogPreference_dialogTitle +androidx.hilt.R$styleable: int[] FontFamily +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onSuccess(java.lang.Object) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setUseCompatPadding(boolean) +retrofit2.KotlinExtensions$await$4$2: void onFailure(retrofit2.Call,java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetLeft +androidx.transition.R$integer +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_toggle +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShrinkMotionSpecResource(int) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.String TABLENAME +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getWetBulbTemperature() +com.google.android.material.R$attr +okhttp3.internal.platform.OptionalMethod: java.lang.String methodName +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_stroke_width_focused +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_focused_holo +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveDecay +okio.RealBufferedSink: boolean isOpen() +com.google.android.material.tabs.TabLayout: void setOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) +androidx.appcompat.resources.R$id: int italic +com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException +okhttp3.internal.cache.DiskLruCache: void validateKey(java.lang.String) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart +com.google.android.material.R$styleable: int[] Motion +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric Metric +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_switchTextOff +wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_light +com.google.gson.stream.JsonReader: int PEEKED_NUMBER +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void dispose() +okio.Okio: okio.Sink sink(java.nio.file.Path,java.nio.file.OpenOption[]) +androidx.hilt.R$drawable: int notification_tile_bg +com.turingtechnologies.materialscrollbar.R$attr: int collapsedTitleGravity +androidx.preference.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_48dp +okhttp3.Cache$CacheResponseBody$1: okhttp3.internal.cache.DiskLruCache$Snapshot val$snapshot +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int UPDATING +androidx.constraintlayout.widget.R$id: int cos +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_color +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog_MinWidth +androidx.work.R$id: int notification_main_column_container +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,long,java.util.concurrent.TimeUnit) +android.didikee.donate.R$styleable: int AppCompatTheme_colorAccent +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +james.adaptiveicon.R$styleable: int Toolbar_logoDescription +com.xw.repo.bubbleseekbar.R$anim: int abc_grow_fade_in_from_bottom +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: MfForecastResult$Forecast$Rain() +okhttp3.internal.http2.Http2Reader$Handler: void ping(boolean,int,int) +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_material_dark +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionMode +okhttp3.OkHttpClient$Builder: java.util.List networkInterceptors() +com.google.android.material.R$id: int accessibility_custom_action_23 +com.xw.repo.bubbleseekbar.R$anim: int abc_tooltip_exit +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long,boolean) +androidx.viewpager2.adapter.FragmentStateAdapter$5 +okhttp3.Challenge: java.lang.String toString() +com.turingtechnologies.materialscrollbar.R$attr: int menu +androidx.preference.R$color +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.google.android.material.appbar.HeaderBehavior: HeaderBehavior() +androidx.preference.EditTextPreference$SavedState: android.os.Parcelable$Creator CREATOR +james.adaptiveicon.R$attr: int actionBarWidgetTheme +com.google.android.material.R$styleable: int[] RecyclerView +wangdaye.com.geometricweather.R$drawable: int abc_btn_check_material_anim +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton +androidx.fragment.R$id: int tag_transition_group +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language RUSSIAN +androidx.coordinatorlayout.R$drawable: int notification_tile_bg +com.turingtechnologies.materialscrollbar.R$attr: int keylines +com.google.gson.stream.JsonWriter: void string(java.lang.String) +com.google.android.material.R$styleable: int SearchView_queryBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String en_US +com.google.android.material.R$color: int abc_decor_view_status_guard_light +okhttp3.internal.cache.DiskLruCache: long size() +wangdaye.com.geometricweather.R$attr: int cornerSizeBottomRight +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitationDuration(java.lang.Float) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_77 +com.google.android.material.R$styleable: int NavigationView_menu +cyanogenmod.externalviews.KeyguardExternalView$2: void collapseNotificationPanel() +retrofit2.ParameterHandler$Header: ParameterHandler$Header(java.lang.String,retrofit2.Converter) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_size wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.String getWeatherText() -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Medium_Inverse -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_NoActionBar -com.bumptech.glide.R$id: int start -wangdaye.com.geometricweather.R$attr: int autoSizeMinTextSize -cyanogenmod.app.Profile: boolean mDirty -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onError(java.lang.Throwable) -androidx.work.R$drawable: int notification_action_background -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String name -androidx.constraintlayout.helper.widget.Flow: void setHorizontalAlign(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String unit -james.adaptiveicon.R$attr: int actionBarPopupTheme -cyanogenmod.externalviews.ExternalView$2: int val$x -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.internal.util.AtomicThrowable error -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: java.lang.Runnable run -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -wangdaye.com.geometricweather.R$layout: int widget_day_oreo -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy ERROR -com.google.android.material.R$styleable: int MenuItem_android_orderInCategory -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarDivider -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_divider -androidx.preference.R$styleable: int SeekBarPreference_showSeekBarValue -cyanogenmod.providers.CMSettings$Global: CMSettings$Global() -james.adaptiveicon.R$attr: int queryHint -com.google.android.material.R$styleable: int TabLayout_tabSelectedTextColor -wangdaye.com.geometricweather.R$string: int tree -androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveData(java.lang.String,java.lang.Object) -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry: java.lang.String type -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void errorAll(io.reactivex.Observer) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerError(int,java.lang.Throwable) -okhttp3.internal.http2.PushObserver$1: boolean onData(int,okio.BufferedSource,int,boolean) -androidx.preference.R$styleable: int DrawerArrowToggle_barLength -com.google.android.material.slider.Slider: android.content.res.ColorStateList getHaloTintList() -james.adaptiveicon.R$string: R$string() -com.google.android.material.R$id: int animateToEnd -wangdaye.com.geometricweather.R$drawable: int ic_clock_black_24dp -androidx.preference.R$style: int Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$color: int material_on_surface_stroke -okhttp3.internal.tls.BasicCertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) -com.google.android.material.R$id: int material_clock_period_pm_button -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_DAY_VALIDATOR -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric -androidx.constraintlayout.widget.R$drawable: int abc_cab_background_internal_bg -wangdaye.com.geometricweather.R$styleable: int Constraint_android_transformPivotX -com.jaredrummler.android.colorpicker.R$attr: int tooltipText -wangdaye.com.geometricweather.R$attr: int backgroundInsetEnd -androidx.dynamicanimation.R$styleable -cyanogenmod.weather.util.WeatherUtils: java.lang.String formatTemperature(double,int) -com.google.android.material.button.MaterialButton: void setStrokeWidth(int) -cyanogenmod.profiles.BrightnessSettings: int describeContents() -cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener val$listener -androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_curveFit -wangdaye.com.geometricweather.R$attr: int chipEndPadding -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$plurals: R$plurals() -android.didikee.donate.R$attr: int trackTint -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.preference.R$styleable: int PopupWindow_overlapAnchor -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_16dp -androidx.preference.R$attr: int theme -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_DropDown -android.didikee.donate.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_next_black_24dp -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Info -okio.ForwardingTimeout: okio.Timeout delegate -android.didikee.donate.R$drawable: int abc_ic_star_half_black_36dp -cyanogenmod.app.Profile: Profile(android.os.Parcel) -wangdaye.com.geometricweather.R$attr: int cardViewStyle -james.adaptiveicon.R$styleable: int[] AlertDialog -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -androidx.constraintlayout.widget.R$attr: int drawableRightCompat -wangdaye.com.geometricweather.R$attr: int triggerId -okhttp3.CertificatePinner$Pin: java.lang.String canonicalHostname -james.adaptiveicon.R$attr: int textAppearanceLargePopupMenu -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: wangdaye.com.geometricweather.db.entities.HourlyEntity readEntity(android.database.Cursor,int) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias -androidx.vectordrawable.R$id: int action_text -androidx.viewpager2.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.R$drawable: int notif_temp_46 -androidx.lifecycle.LiveData$LifecycleBoundObserver -com.jaredrummler.android.colorpicker.R$attr: int panelBackground -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onPanelClosed(int,android.view.Menu) -wangdaye.com.geometricweather.R$drawable: int abc_cab_background_top_mtrl_alpha -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: int UnitType -wangdaye.com.geometricweather.R$string: int settings_title_card_display -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float rain -wangdaye.com.geometricweather.R$attr: int pageIndicatorColor -androidx.activity.R$id: int tag_accessibility_pane_title -okhttp3.internal.http.HttpDate: java.lang.String[] BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS -com.google.android.material.R$style: int Widget_AppCompat_Spinner -com.google.android.material.R$style: int Theme_Design_Light -cyanogenmod.app.ILiveLockScreenManager$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Surface -cyanogenmod.externalviews.IExternalViewProvider$Stub -android.didikee.donate.R$id: int expand_activities_button -androidx.recyclerview.R$attr: int fontProviderCerts +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_subtitle_material_toolbar +cyanogenmod.hardware.DisplayMode: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$styleable: int MaterialTextAppearance_lineHeight +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelMenuListTheme +androidx.appcompat.resources.R$dimen: int notification_action_icon_size +james.adaptiveicon.R$styleable: int Toolbar_logo +com.google.android.material.R$dimen: int hint_pressed_alpha_material_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setZh_CN(java.lang.String) +wangdaye.com.geometricweather.R$attr: int dropdownPreferenceStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeIndex(java.lang.Integer) +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_expanded +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Subhead +com.google.android.material.R$layout: int design_navigation_item +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String uvIndex +androidx.appcompat.R$styleable: int[] SwitchCompat +androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyleSmall +androidx.preference.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +okio.Buffer: java.lang.String readString(java.nio.charset.Charset) +com.google.android.material.R$styleable: int TextAppearance_android_shadowDy +androidx.viewpager.widget.ViewPager: void setCurrentItem(int) +androidx.dynamicanimation.R$dimen: int notification_large_icon_width +okhttp3.internal.http2.Http2Connection$ReaderRunnable: Http2Connection$ReaderRunnable(okhttp3.internal.http2.Http2Connection,okhttp3.internal.http2.Http2Reader) +okhttp3.Address: okhttp3.Authenticator proxyAuthenticator() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void updateVisibility() +androidx.work.impl.utils.futures.AbstractFuture$Waiter: androidx.work.impl.utils.futures.AbstractFuture$Waiter next +com.xw.repo.bubbleseekbar.R$attr: int multiChoiceItemLayout +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar_Indicator +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float pm25 +retrofit2.RequestFactory: boolean hasBody +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getGrassIndex() +james.adaptiveicon.R$color: int foreground_material_dark +okhttp3.internal.connection.StreamAllocation: boolean reportedAcquired +cyanogenmod.app.ProfileManager: java.lang.String PROFILES_STATE_CHANGED_ACTION +androidx.appcompat.R$styleable: int AppCompatTheme_colorError +androidx.appcompat.R$styleable: int AppCompatTheme_colorControlActivated +androidx.fragment.R$dimen +wangdaye.com.geometricweather.R$string: int go_to_set +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onComplete() +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_buttonGravity +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_21 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +android.didikee.donate.R$color: int dim_foreground_disabled_material_light +com.google.android.material.chip.Chip: void setChipIconSize(float) +com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_material_dark +wangdaye.com.geometricweather.settings.dialogs.ProvidersPreviewerDialog +androidx.transition.R$drawable: int notification_icon_background +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onComplete() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: AccuCurrentResult$WetBulbTemperature$Metric() +wangdaye.com.geometricweather.background.polling.work.worker.TomorrowForecastUpdateWorker: TomorrowForecastUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onSucceed(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult) +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: long serialVersionUID +androidx.preference.R$styleable: int TextAppearance_android_fontFamily +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: float getActionTextColorAlpha() +androidx.constraintlayout.widget.R$attr: int track +okhttp3.FormBody: java.lang.String encodedValue(int) +androidx.preference.R$styleable: int SwitchPreference_android_summaryOff +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context) +org.greenrobot.greendao.AbstractDao: void refresh(java.lang.Object) +com.google.android.material.R$layout: int abc_action_bar_up_container +android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedHeightMajor +androidx.preference.R$styleable: int Spinner_android_popupBackground +com.google.android.material.R$styleable: int NavigationView_itemIconPadding +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.R$drawable: int ic_weather +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.util.Date LocalObservationDateTime +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_query +okhttp3.internal.http2.Http2Connection$Listener$1: void onStream(okhttp3.internal.http2.Http2Stream) +okhttp3.Cache$1: okhttp3.Response get(okhttp3.Request) +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: CallEnqueueObservable$CallCallback(retrofit2.Call,io.reactivex.Observer) +okio.RealBufferedSource: int select(okio.Options) +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_cpuBoost_0 +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.functions.Function mapper +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour PastHour +androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context,android.util.AttributeSet) +com.bumptech.glide.R$integer: R$integer() +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onError(java.lang.Throwable) +io.reactivex.Observable: io.reactivex.Single elementAt(long,java.lang.Object) +com.google.android.material.R$attr: int buttonBarButtonStyle +okhttp3.internal.cache.DiskLruCache: java.io.File directory +wangdaye.com.geometricweather.R$drawable: int notif_temp_134 +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ProgressBar +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf +androidx.hilt.work.R$dimen: int notification_content_margin_start +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSearchResultTitle +androidx.preference.R$styleable: int SwitchPreferenceCompat_switchTextOn +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Error +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: boolean isDisposed() +com.google.android.material.R$drawable: int material_ic_menu_arrow_up_black_24dp +androidx.preference.R$dimen: int compat_notification_large_icon_max_height +cyanogenmod.app.suggest.IAppSuggestManager$Stub +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_horizontal +androidx.preference.Preference: void setOnPreferenceClickListener(androidx.preference.Preference$OnPreferenceClickListener) +com.google.android.material.R$drawable: int abc_ic_search_api_material +androidx.viewpager2.R$id: int accessibility_custom_action_0 +androidx.lifecycle.Lifecycling: java.lang.String getAdapterName(java.lang.String) +androidx.preference.R$color: int dim_foreground_material_dark +com.google.android.material.R$layout: int test_toolbar_elevation +wangdaye.com.geometricweather.R$drawable: int notif_temp_127 +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Bridge +androidx.hilt.R$id: int accessibility_custom_action_0 +androidx.hilt.work.R$styleable: int FragmentContainerView_android_name +cyanogenmod.themes.ThemeManager$1: void onProgress(int) +androidx.legacy.coreutils.R$attr: int fontProviderFetchTimeout +io.reactivex.internal.disposables.DisposableHelper: boolean isDisposed(io.reactivex.disposables.Disposable) +androidx.loader.R$dimen: int notification_content_margin_start +retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type upperBound +androidx.appcompat.R$color: int secondary_text_default_material_dark +okhttp3.TlsVersion: TlsVersion(java.lang.String,int,java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getSunSet() +com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_Overflow +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.lang.Object NEXT_WINDOW +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.fuseable.SimpleQueue queue +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored +com.bumptech.glide.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$id: int dialog_location_help_container +wangdaye.com.geometricweather.R$attr: int actionProviderClass +androidx.constraintlayout.widget.R$attr: int ratingBarStyleIndicator +androidx.constraintlayout.widget.R$styleable: int KeyCycle_transitionPathRotate +retrofit2.ParameterHandler$2: ParameterHandler$2(retrofit2.ParameterHandler) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX() +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int limit +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_max_width +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.reflect.Type componentType +james.adaptiveicon.R$style: int Animation_AppCompat_Dialog +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Bridge +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult +wangdaye.com.geometricweather.db.entities.MinutelyEntity: int getMinuteInterval() +androidx.preference.R$anim: int abc_fade_in +com.turingtechnologies.materialscrollbar.R$attr: int editTextStyle +cyanogenmod.app.ProfileGroup: boolean validateOverrideUri(android.content.Context,android.net.Uri) +androidx.appcompat.widget.LinearLayoutCompat: int getDividerWidth() +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context) +android.didikee.donate.R$dimen: int abc_search_view_preferred_height +android.didikee.donate.R$color: int switch_thumb_disabled_material_light +wangdaye.com.geometricweather.db.entities.LocationEntity: float getLatitude() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableBottomCompat +cyanogenmod.weather.RequestInfo: java.lang.String mCityName +cyanogenmod.providers.CMSettings$Secure$2: boolean validate(java.lang.String) +androidx.recyclerview.R$dimen: int fastscroll_margin +androidx.viewpager2.R$attr: int fontProviderFetchTimeout +cyanogenmod.externalviews.ExternalViewProviderService$Provider: int getWindowType() +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Invalid +okhttp3.internal.cache.DiskLruCache: void setMaxSize(long) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getWeek(android.content.Context) +okhttp3.internal.http2.Http2Stream$FramingSource: okio.Timeout timeout() +cyanogenmod.weather.RequestInfo$Builder: int mTempUnit +wangdaye.com.geometricweather.R$string: int settings_title_precipitation_notification_switch +com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusBottomEnd +androidx.preference.R$styleable: int ListPreference_entries +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer dbz +androidx.constraintlayout.widget.R$attr: int flow_firstHorizontalBias +okhttp3.internal.connection.StreamAllocation: void release(okhttp3.internal.connection.RealConnection) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit HPA +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void runFinally() +retrofit2.OkHttpCall$1: void onFailure(okhttp3.Call,java.io.IOException) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setValue(java.util.List) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherCode +com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_DrawerArrowToggle +okhttp3.Handshake +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.appcompat.widget.SwitchCompat: void setSwitchPadding(int) +okhttp3.internal.http2.Http2Connection: void start() +okhttp3.internal.http2.Http2Connection: int INTERVAL_PING +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void dispose() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: MfForecastV2Result$ForecastProperties$HourForecast() +okio.Buffer: okio.BufferedSink write(okio.ByteString) +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_percent +androidx.preference.R$id: int unchecked +com.google.gson.stream.JsonWriter: java.lang.String separator +cyanogenmod.app.CMContextConstants: java.lang.String CM_HARDWARE_SERVICE +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf +com.github.rahatarmanahmed.cpv.CircularProgressView$5: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +androidx.coordinatorlayout.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.R$id: int activity_weather_daily_indicator +androidx.preference.R$style: int PreferenceCategoryTitleTextStyle +io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable) +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit[] values() +androidx.lifecycle.extensions.R$id: int action_divider +com.turingtechnologies.materialscrollbar.R$attr: int errorEnabled +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.util.concurrent.atomic.AtomicReference latest +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult +android.didikee.donate.R$styleable: int DrawerArrowToggle_drawableSize +wangdaye.com.geometricweather.R$styleable: int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor +wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_small_material +com.bumptech.glide.integration.okhttp.R$id: int line1 +androidx.constraintlayout.widget.R$attr: int barrierAllowsGoneWidgets +androidx.recyclerview.R$drawable: int notification_template_icon_low_bg +androidx.appcompat.widget.AppCompatButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.constraintlayout.widget.R$style: int Base_V23_Theme_AppCompat_Light +androidx.appcompat.R$attr: int radioButtonStyle +androidx.preference.R$styleable: int AppCompatTheme_popupWindowStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listDividerAlertDialog +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 +androidx.appcompat.R$layout: int abc_action_menu_item_layout +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: double Value +androidx.lifecycle.LiveData$ObserverWrapper: androidx.lifecycle.LiveData this$0 +james.adaptiveicon.R$dimen: int abc_text_size_menu_header_material +com.google.android.material.R$attr: int backgroundOverlayColorAlpha +com.google.android.material.R$styleable: int SearchView_android_maxWidth +wangdaye.com.geometricweather.R$array: int air_quality_co_unit_values +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMarkTint +io.reactivex.exceptions.CompositeException: void printStackTrace() +okhttp3.Cookie: Cookie(okhttp3.Cookie$Builder) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogStyle +okio.ByteString: okio.ByteString sha256() +okhttp3.internal.ws.RealWebSocket$2: void onFailure(okhttp3.Call,java.io.IOException) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: int UnitType +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_android_gravity +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_iconifiedByDefault +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginLeft +androidx.preference.R$styleable: int SwitchCompat_switchMinWidth +wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_padding +cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder() +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LOCKSCREEN +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List hourlyForecast +wangdaye.com.geometricweather.R$styleable: int[] BottomSheetBehavior_Layout +okhttp3.internal.Util$2 +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.lang.Object next() +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: float getBackgroundOverlayColorAlpha() +wangdaye.com.geometricweather.R$id: int widget_week_card +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onTimeout(long) +androidx.preference.R$styleable: int AppCompatTheme_textColorSearchUrl +wangdaye.com.geometricweather.R$styleable: int ActionBar_title +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$layout: int image_frame +androidx.drawerlayout.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_container +androidx.appcompat.R$id: int action_bar_subtitle +com.bumptech.glide.R$dimen: int notification_top_pad_large_text +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String INCREASING_VOLUME +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver[] observers +androidx.lifecycle.ProcessLifecycleOwnerInitializer: ProcessLifecycleOwnerInitializer() +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setBadge(com.google.android.material.badge.BadgeDrawable) +com.xw.repo.bubbleseekbar.R$anim: int abc_slide_out_top +androidx.activity.R$id: R$id() +androidx.swiperefreshlayout.R$drawable: int notification_bg_normal +cyanogenmod.externalviews.ExternalViewProviderService: android.os.Handler mHandler +io.reactivex.internal.observers.DeferredScalarDisposable: boolean isDisposed() +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_itemPadding -com.google.android.material.R$styleable: int KeyTimeCycle_framePosition -com.google.android.material.R$id: int search_mag_icon -wangdaye.com.geometricweather.R$attr: int panelBackground -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HistoryEntityDao getHistoryEntityDao() -androidx.drawerlayout.R$layout -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -com.google.android.material.R$styleable: int Constraint_drawPath -wangdaye.com.geometricweather.R$layout: int dialog_background_location -wangdaye.com.geometricweather.R$id: int item_about_library -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_gradientRadius -com.google.android.material.R$styleable: int ButtonBarLayout_allowStacking -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: cyanogenmod.weatherservice.IWeatherProviderServiceClient asInterface(android.os.IBinder) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed -cyanogenmod.app.CustomTile$ListExpandedStyle: void setListItems(java.util.ArrayList) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX getWeather() -androidx.swiperefreshlayout.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.R$color: int abc_primary_text_disable_only_material_light -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerX -com.google.android.material.R$styleable: int MaterialButton_android_insetRight -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer apparentTemperature -cyanogenmod.app.ProfileManager: cyanogenmod.app.IProfileManager getService() -wangdaye.com.geometricweather.settings.activities.AboutActivity -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_bias -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CONDITION_CODE -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ARABIC -wangdaye.com.geometricweather.R$layout: int activity_live_wallpaper_config -androidx.viewpager2.R$id: int accessibility_custom_action_11 -okhttp3.Route: boolean equals(java.lang.Object) -james.adaptiveicon.R$drawable: int abc_btn_check_to_on_mtrl_015 -james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat_Light -cyanogenmod.themes.ThemeManager: boolean isThemeBeingProcessed(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int Base_AlertDialog_AppCompat -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintDimensionRatio -wangdaye.com.geometricweather.R$attr: int alpha -androidx.preference.R$attr: int buttonBarButtonStyle -android.didikee.donate.R$attr: int actionMenuTextAppearance -com.jaredrummler.android.colorpicker.R$attr: int layout_anchorGravity -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +com.google.android.material.R$color: int checkbox_themeable_attribute_color +android.didikee.donate.R$drawable: int abc_ic_go_search_api_material +cyanogenmod.weather.WeatherInfo: int getWindSpeedUnit() +com.turingtechnologies.materialscrollbar.R$attr: int msb_textColor +wangdaye.com.geometricweather.R$styleable: int NavigationView_android_fitsSystemWindows +com.google.android.material.R$interpolator +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_59 +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_elevation +wangdaye.com.geometricweather.R$attr: int labelStyle +james.adaptiveicon.R$color: int switch_thumb_disabled_material_light +io.reactivex.Observable: io.reactivex.Single elementAtOrError(long) +androidx.fragment.R$id: int action_image +androidx.fragment.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.preference.R$style: int PreferenceFragmentList +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.util.AtomicThrowable errors +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analogContainer_dark +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getTranslateY() +okio.Pipe$PipeSink: void write(okio.Buffer,long) +androidx.constraintlayout.helper.widget.Flow: void setVerticalBias(float) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderTextColor +wangdaye.com.geometricweather.R$string: int feedback_add_location_manually +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_switchStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: void setValue(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String suggest +wangdaye.com.geometricweather.R$attr: int textEndPadding +james.adaptiveicon.R$drawable: int abc_textfield_default_mtrl_alpha +com.google.android.material.R$attr: int itemStrokeColor +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Medium +okhttp3.internal.http2.Http2: byte TYPE_RST_STREAM +wangdaye.com.geometricweather.R$styleable: int[] MenuGroup +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +wangdaye.com.geometricweather.R$attr: int preferenceFragmentCompatStyle +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: int getSourceColor() +wangdaye.com.geometricweather.R$id: int homeAsUp +com.turingtechnologies.materialscrollbar.R$string: int abc_toolbar_collapse_description +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStartPadding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: AccuCurrentResult$Pressure() +androidx.appcompat.widget.SearchView: void setIconifiedByDefault(boolean) +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$attr: int cpv_animSteps +com.google.android.material.R$styleable: int SnackbarLayout_android_maxWidth +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onError(java.lang.Throwable) +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +com.github.rahatarmanahmed.cpv.CircularProgressView$3 +com.xw.repo.bubbleseekbar.R$layout: int select_dialog_multichoice_material +com.google.android.material.R$drawable: int abc_textfield_search_material +androidx.appcompat.resources.R$id: int tag_screen_reader_focusable +androidx.loader.R$drawable: int notification_bg_low +retrofit2.Utils$WildcardTypeImpl: int hashCode() +androidx.preference.R$drawable: int ic_arrow_down_24dp +com.google.android.material.R$styleable: int AppCompatTheme_activityChooserViewStyle +android.didikee.donate.R$styleable: int ActionMode_backgroundSplit +wangdaye.com.geometricweather.R$string: int mtrl_exceed_max_badge_number_content_description +androidx.constraintlayout.widget.R$attr: int actionModeShareDrawable +james.adaptiveicon.R$attr: int windowActionBarOverlay +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +androidx.preference.R$integer: int abc_config_activityShortDur +cyanogenmod.weather.CMWeatherManager: java.util.Map mWeatherUpdateRequestListeners +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String season +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String TABLENAME +com.turingtechnologies.materialscrollbar.R$color: int abc_btn_colored_text_material +okio.ByteString +com.google.android.material.R$dimen: int material_cursor_inset_top +cyanogenmod.app.CustomTileListenerService: android.os.IBinder onBind(android.content.Intent) +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor getInstance(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: DailyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.util.Date,java.util.Date,java.util.Date,java.util.Date,java.lang.Integer,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,float) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ProgressBar +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_spinnerStyle +android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +cyanogenmod.app.StatusBarPanelCustomTile$1: cyanogenmod.app.StatusBarPanelCustomTile createFromParcel(android.os.Parcel) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingBottom +retrofit2.adapter.rxjava2.ResultObservable: io.reactivex.Observable upstream +cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State ENQUEUED +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: int getFillColor() +james.adaptiveicon.R$attr: int buttonBarNeutralButtonStyle +androidx.appcompat.R$styleable: int ActionMode_titleTextStyle +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy +androidx.transition.R$id: int transition_current_scene +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeLevel(java.lang.Integer) +wangdaye.com.geometricweather.R$styleable: int[] MaterialAlertDialogTheme +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_30 +androidx.preference.R$id: int action_mode_bar_stub +androidx.loader.R$styleable: int GradientColor_android_startY +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_scrollMode +android.didikee.donate.R$styleable: int AppCompatTheme_listDividerAlertDialog +androidx.preference.R$style: int Widget_AppCompat_Spinner +androidx.appcompat.R$styleable: int TextAppearance_android_textFontWeight +okhttp3.CertificatePinner: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int materialButtonOutlinedStyle +com.google.android.material.R$styleable: int AppCompatTheme_actionModeFindDrawable +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String HOUR +wangdaye.com.geometricweather.R$styleable: int[] Toolbar +androidx.core.R$dimen: int notification_small_icon_size_as_large +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: java.lang.String styleId +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onScreenTurnedOff +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_NavigationView +androidx.hilt.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.chip.Chip: void setChipStrokeColor(android.content.res.ColorStateList) +com.jaredrummler.android.colorpicker.R$attr: int iconSpaceReserved +com.google.android.material.R$attr: int listChoiceBackgroundIndicator +com.google.android.material.R$dimen: int mtrl_high_ripple_default_alpha +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String TARGET_API +com.jaredrummler.android.colorpicker.R$color: int material_grey_900 +com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarButtonStyle +androidx.appcompat.R$style: int TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_RadioButton +wangdaye.com.geometricweather.R$drawable: int ic_tree +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode NO_ERROR +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$color: int abc_tint_seek_thumb +wangdaye.com.geometricweather.R$id: int widget_day_week_subtitle +wangdaye.com.geometricweather.R$attr: int backgroundSplit +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconSize +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetStart +com.turingtechnologies.materialscrollbar.R$drawable: int design_ic_visibility_off +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_layout +com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Surface +androidx.appcompat.widget.ActionBarContainer: android.view.View getTabContainer() +androidx.dynamicanimation.R$id: int right_icon +androidx.appcompat.widget.SearchView: java.lang.CharSequence getQuery() +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_height +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderQuery +okhttp3.WebSocket$Factory: okhttp3.WebSocket newWebSocket(okhttp3.Request,okhttp3.WebSocketListener) +androidx.preference.TwoStatePreference: TwoStatePreference(android.content.Context,android.util.AttributeSet) +james.adaptiveicon.R$attr: int actionBarTabStyle +androidx.preference.R$layout: int abc_popup_menu_header_item_layout +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +com.turingtechnologies.materialscrollbar.R$style: int CardView_Dark +wangdaye.com.geometricweather.background.polling.PollingUpdateHelper +androidx.appcompat.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +james.adaptiveicon.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$id: int widget_day_week_week_3 +androidx.core.graphics.drawable.IconCompat +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean isDisposed() +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +androidx.fragment.app.BackStackRecord: void setOnStartPostponedListener(androidx.fragment.app.Fragment$OnStartEnterTransitionListener) +cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String SERVICE_INTERFACE +androidx.appcompat.widget.FitWindowsFrameLayout +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: long serialVersionUID +wangdaye.com.geometricweather.R$drawable: int notif_temp_5 +androidx.fragment.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_item_min_width +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: int skip +androidx.constraintlayout.widget.R$drawable: int abc_ab_share_pack_mtrl_alpha +okhttp3.MultipartBody$Part: okhttp3.RequestBody body +wangdaye.com.geometricweather.R$id: int up +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setThunderstormPrecipitation(java.lang.Float) +androidx.appcompat.R$id: int custom +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_tooltipText +androidx.constraintlayout.widget.R$styleable: int MenuView_preserveIconSpacing +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListMenuView +cyanogenmod.app.CustomTile$ExpandedStyle$1: java.lang.Object createFromParcel(android.os.Parcel) +okio.BufferedSource: boolean exhausted() +com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getSupportImageTintMode() +com.google.android.material.R$styleable: int State_android_id +wangdaye.com.geometricweather.R$dimen: int main_title_text_size +wangdaye.com.geometricweather.R$layout: int dialog_resident_location +okhttp3.ConnectionSpec: java.util.List cipherSuites() +cyanogenmod.hardware.DisplayMode: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay day() +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_submit +wangdaye.com.geometricweather.R$styleable: int Slider_haloColor +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_textAllCaps +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias +com.google.android.material.R$dimen: int material_filled_edittext_font_2_0_padding_bottom +wangdaye.com.geometricweather.R$attr: int materialAlertDialogTheme +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar_Small +okhttp3.Request$Builder +okhttp3.internal.publicsuffix.PublicSuffixDatabase: void setListBytes(byte[],byte[]) io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectionPool(okhttp3.ConnectionPool) -com.turingtechnologies.materialscrollbar.R$styleable: int[] ForegroundLinearLayout -okhttp3.Cache$1: void remove(okhttp3.Request) -wangdaye.com.geometricweather.R$drawable: int material_ic_menu_arrow_down_black_24dp -com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException: long serialVersionUID -com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_material_light -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean done -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowColor -retrofit2.converter.gson.GsonConverterFactory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -wangdaye.com.geometricweather.R$dimen: int daily_trend_item_height -androidx.viewpager2.R$dimen: int notification_large_icon_height -com.google.android.material.R$dimen: int hint_alpha_material_light -com.google.android.material.R$styleable: int TextInputLayout_endIconContentDescription -androidx.appcompat.R$attr: int titleTextAppearance -androidx.hilt.work.R$styleable: int FontFamily_fontProviderAuthority -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_height -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX getWind() -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_default -androidx.fragment.R$anim: int fragment_open_exit -retrofit2.ParameterHandler$Part: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState[] values() -androidx.recyclerview.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.common.ui.widgets.TagView: void setCheckedBackgroundColor(int) -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$string: int content_des_moonrise -okhttp3.internal.cache2.Relay: int SOURCE_UPSTREAM -wangdaye.com.geometricweather.R$id: int item_card_display_deleteBtn -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.Scheduler$Worker worker -android.didikee.donate.R$attr: int colorSwitchThumbNormal -com.google.android.material.R$styleable: int AppCompatTheme_editTextColor -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.IRequestInfoListener mListener -com.google.android.material.chip.Chip: float getChipMinHeight() -com.turingtechnologies.materialscrollbar.R$id: int listMode -androidx.hilt.work.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.DailyEntity) -android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.support.v4.app.INotificationSideChannel sDefaultImpl -wangdaye.com.geometricweather.R$id: int dialog_location_help_container -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String hourlyForecast -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SeekBar -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_tint -androidx.appcompat.widget.AppCompatSpinner: void setPopupBackgroundResource(int) -androidx.preference.R$dimen: int abc_text_size_subhead_material -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: android.net.Uri NO_RINGTONE_URI -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -james.adaptiveicon.R$style: int Widget_AppCompat_ButtonBar -androidx.coordinatorlayout.R$id: int notification_main_column -cyanogenmod.weather.WeatherInfo$Builder: double mWindDirection -androidx.appcompat.R$styleable: int LinearLayoutCompat_dividerPadding -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontStyle -androidx.preference.R$dimen: int abc_button_inset_vertical_material -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnw -androidx.lifecycle.GeneratedAdapter -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_disabled_material_light -androidx.preference.R$style: int Platform_V25_AppCompat -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean delayErrors -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvLevel(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -wangdaye.com.geometricweather.R$id: int action_appStore -com.google.android.material.R$styleable: int Toolbar_titleTextColor -androidx.loader.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_font -com.xw.repo.bubbleseekbar.R$drawable: int abc_switch_track_mtrl_alpha -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree -wangdaye.com.geometricweather.R$styleable: int PopupWindow_android_popupBackground -wangdaye.com.geometricweather.R$drawable: int flag_nl -androidx.recyclerview.R$drawable: int notification_bg_normal_pressed -androidx.work.R$layout: int notification_template_part_time -androidx.appcompat.R$string: int abc_menu_sym_shortcut_label -androidx.constraintlayout.widget.R$styleable: int[] ActionMode -androidx.loader.R$attr: int alpha -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setBadgeDrawables(android.util.SparseArray) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language GREEK -okhttp3.HttpUrl: java.util.List queryParameterValues(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedWidthMinor -androidx.appcompat.widget.ViewStubCompat -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginEnd -com.jaredrummler.android.colorpicker.R$style: int Base_V26_Theme_AppCompat -okhttp3.internal.http1.Http1Codec$ChunkedSink: void close() -com.bumptech.glide.R$attr: int alpha -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_exitFadeDuration -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -okhttp3.HttpUrl: java.util.List queryStringToNamesAndValues(java.lang.String) -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: void close() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setAddress(java.lang.String) -androidx.transition.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: java.lang.String Unit -okio.GzipSource: void consumeTrailer() -james.adaptiveicon.R$drawable: int abc_item_background_holo_light -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitationDuration -wangdaye.com.geometricweather.R$string: int mtrl_picker_save -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_key -james.adaptiveicon.R$id: int action_context_bar -wangdaye.com.geometricweather.R$string: int feedback_location_help_title -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem -wangdaye.com.geometricweather.R$string: int material_timepicker_text_input_mode_description -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.lang.String pubTime -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_bottomBar -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function,boolean) -androidx.core.R$styleable: int GradientColor_android_endX -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: int fusionMode -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date sunRiseDate -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline6 -wangdaye.com.geometricweather.R$string: int expand_button_title -androidx.appcompat.resources.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendDailyProvider: WidgetTrendDailyProvider() -androidx.constraintlayout.widget.R$styleable: int Transform_android_translationZ -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property So2 -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -com.google.gson.stream.JsonReader: int lineStart -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String value -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setAlerts(java.util.List) -com.turingtechnologies.materialscrollbar.R$dimen: int compat_notification_large_icon_max_height -okhttp3.Cookie: boolean persistent -okhttp3.RealCall: boolean executed -com.bumptech.glide.load.ImageHeaderParser$ImageType -androidx.vectordrawable.R$integer -wangdaye.com.geometricweather.R$drawable: int notif_temp_57 -androidx.appcompat.R$dimen: int abc_control_padding_material -james.adaptiveicon.R$id: int none -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_26 -okio.Okio$4: java.io.IOException newTimeoutException(java.io.IOException) -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_switch_track -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Info -androidx.constraintlayout.widget.R$attr: int contentDescription -wangdaye.com.geometricweather.R$dimen: int abc_text_size_menu_header_material -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: boolean done -android.didikee.donate.R$styleable: int AppCompatImageView_tintMode -wangdaye.com.geometricweather.R$attr: int flow_wrapMode -android.didikee.donate.R$id: int up -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -com.google.android.material.slider.BaseSlider: void setTrackTintList(android.content.res.ColorStateList) -retrofit2.ParameterHandler$Query: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: MfForecastResult() -androidx.viewpager2.R$attr: R$attr() -com.google.android.material.R$styleable: int SnackbarLayout_maxActionInlineWidth -androidx.constraintlayout.widget.VirtualLayout: void setVisibility(int) -com.google.android.material.R$color: int bright_foreground_disabled_material_light -androidx.preference.R$styleable: int LinearLayoutCompat_measureWithLargestChild -okhttp3.Handshake: Handshake(okhttp3.TlsVersion,okhttp3.CipherSuite,java.util.List,java.util.List) -io.reactivex.Observable: io.reactivex.Observer subscribeWith(io.reactivex.Observer) -androidx.preference.R$layout: int preference_list_fragment -okhttp3.internal.tls.TrustRootIndex -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_PEOPLE_LOOKUP_VALIDATOR -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.functions.Function combiner -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_4 -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_12 -androidx.constraintlayout.widget.R$attr: int trackTintMode -cyanogenmod.app.suggest.AppSuggestManager: AppSuggestManager(android.content.Context) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_switch_padding -androidx.viewpager2.R$color: int secondary_text_default_material_light -james.adaptiveicon.R$id: int scrollIndicatorUp -com.turingtechnologies.materialscrollbar.R$id: int pin -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: int UnitType -androidx.activity.R$id: int accessibility_custom_action_20 -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_48dp -com.google.android.material.R$styleable: int ImageFilterView_brightness -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Current current -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -wangdaye.com.geometricweather.R$id: int treeTitle -wangdaye.com.geometricweather.R$styleable: int[] BottomNavigationView -com.bumptech.glide.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_60 -androidx.appcompat.widget.SwitchCompat: boolean getSplitTrack() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_107 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: int UnitType -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource CAIYUN -retrofit2.ParameterHandler$QueryMap: void apply(retrofit2.RequestBuilder,java.util.Map) -okhttp3.Cache: okhttp3.internal.cache.DiskLruCache cache -androidx.constraintlayout.widget.R$attr: int onPositiveCross -androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: AccuCurrentResult$LocalSource() -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_RINGTONES -okhttp3.internal.cache.DiskLruCache$Editor: DiskLruCache$Editor(okhttp3.internal.cache.DiskLruCache,okhttp3.internal.cache.DiskLruCache$Entry) -okhttp3.internal.io.FileSystem: okio.Source source(java.io.File) -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: ObservableTakeLast$TakeLastObserver(io.reactivex.Observer,int) +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage DATA_CACHE +androidx.appcompat.resources.R$attr: int font +com.google.android.material.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle +com.google.android.material.R$style: int Widget_AppCompat_ListView_Menu +androidx.preference.R$drawable: int abc_seekbar_track_material +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display1 +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_icon_btn_padding_left +cyanogenmod.externalviews.IExternalViewProvider: void onDetach() +retrofit2.Invocation: java.util.List arguments +cyanogenmod.externalviews.KeyguardExternalView$6: KeyguardExternalView$6(cyanogenmod.externalviews.KeyguardExternalView,boolean) +wangdaye.com.geometricweather.R$id: int disableHome +androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.appcompat.R$styleable: int MenuView_preserveIconSpacing +androidx.appcompat.R$color: int bright_foreground_material_dark +androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor[] values() +com.turingtechnologies.materialscrollbar.R$style: int Widget_Compat_NotificationActionText +okhttp3.internal.http2.Http2Reader$Handler: void pushPromise(int,int,java.util.List) +io.reactivex.internal.observers.DeferredScalarObserver: void dispose() +wangdaye.com.geometricweather.R$string: int learn_more +androidx.constraintlayout.widget.R$styleable: int TextAppearance_textAllCaps +androidx.preference.R$attr: R$attr() +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: ThemeVersion$ThemeVersionImpl2() +com.google.android.material.R$dimen: int design_fab_translation_z_pressed +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$style: int Widget_Support_CoordinatorLayout +okhttp3.internal.http2.Settings: int ENABLE_PUSH +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: ExternalViewProviderService$Provider$ProviderImpl$2(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +androidx.preference.R$attr: int textColorAlertDialogListItem +cyanogenmod.providers.CMSettings$Secure: java.util.Map VALIDATORS +james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +com.xw.repo.bubbleseekbar.R$color: int abc_secondary_text_material_light +org.greenrobot.greendao.AbstractDaoSession: void registerDao(java.lang.Class,org.greenrobot.greendao.AbstractDao) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$string: int abc_menu_shift_shortcut_label +cyanogenmod.externalviews.ExternalViewProviderService +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabStyle +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitation +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShrinkMotionSpec(com.google.android.material.animation.MotionSpec) +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: long contentLength() +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW_FLURRIES +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: int hashCode() +androidx.preference.R$bool: int abc_action_bar_embed_tabs +okhttp3.internal.ws.RealWebSocket: void awaitTermination(int,java.util.concurrent.TimeUnit) +okhttp3.CookieJar: okhttp3.CookieJar NO_COOKIES +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void subscribe(io.reactivex.Observer) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WindChillTemperature +android.didikee.donate.R$styleable: int AppCompatTheme_radioButtonStyle +com.xw.repo.bubbleseekbar.R$id: int sides +okhttp3.internal.tls.CertificateChainCleaner +androidx.dynamicanimation.R$layout: int notification_action +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getDegreeDayTemperature() +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_rightToLeft +androidx.appcompat.R$attr: int colorPrimaryDark +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_max +android.support.v4.app.INotificationSideChannel: void notify(java.lang.String,int,java.lang.String,android.app.Notification) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +okhttp3.internal.http.HttpCodec: int DISCARD_STREAM_TIMEOUT_MILLIS +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onNext(java.lang.Object) +androidx.appcompat.R$styleable: int AppCompatTheme_android_windowAnimationStyle +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: ObservableMergeWithMaybe$MergeWithObserver(io.reactivex.Observer) +wangdaye.com.geometricweather.R$attr: int boxStrokeWidth +androidx.work.impl.WorkManagerInitializer +com.google.android.material.R$styleable: int MotionLayout_currentState +wangdaye.com.geometricweather.R$attr: int tabGravity +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: Pollen(java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) +com.bumptech.glide.integration.okhttp.R$layout +wangdaye.com.geometricweather.R$attr: int iconGravity +androidx.constraintlayout.widget.R$dimen: int abc_text_size_button_material +androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context) +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplBase: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) +com.google.android.material.R$string: int abc_action_menu_overflow_description +com.turingtechnologies.materialscrollbar.R$styleable: int[] LinearLayoutCompat_Layout +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Body2 +com.jaredrummler.android.colorpicker.R$attr: int alphabeticModifiers +cyanogenmod.app.Profile: void doSelect(android.content.Context,com.android.internal.policy.IKeyguardService) +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.Observer downstream +android.support.v4.os.ResultReceiver: void writeToParcel(android.os.Parcel,int) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +com.google.android.material.R$styleable: int Constraint_layout_constraintCircle +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: int getTotalCount() +androidx.appcompat.R$attr: int drawableRightCompat +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_background +androidx.coordinatorlayout.R$id: int accessibility_custom_action_10 +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_padding_start_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: java.util.List getValue() +com.turingtechnologies.materialscrollbar.R$id: int expanded_menu +cyanogenmod.profiles.ConnectionSettings$BooleanState +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_hideMotionSpec +wangdaye.com.geometricweather.R$layout: int abc_screen_simple_overlay_action_mode +com.turingtechnologies.materialscrollbar.R$drawable: int tooltip_frame_light +cyanogenmod.app.CustomTile$ExpandedStyle: cyanogenmod.app.CustomTile$ExpandedItem[] getExpandedItems() +com.google.android.material.R$attr: int actionBarWidgetTheme +androidx.appcompat.R$id: int none +com.google.android.material.card.MaterialCardView: void setRadius(float) +okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withWriteTimeout(int,java.util.concurrent.TimeUnit) +james.adaptiveicon.R$dimen: int abc_seekbar_track_background_height_material +okhttp3.logging.LoggingEventListener: void connectionAcquired(okhttp3.Call,okhttp3.Connection) +wangdaye.com.geometricweather.R$dimen: int abc_floating_window_z +wangdaye.com.geometricweather.R$attr: int thumbRadius +com.google.android.material.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +androidx.constraintlayout.widget.R$attr: int motionTarget +com.jaredrummler.android.colorpicker.R$attr: int track +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onNext(java.lang.Object) +androidx.appcompat.widget.AppCompatCheckBox: android.content.res.ColorStateList getSupportButtonTintList() +wangdaye.com.geometricweather.R$string: int settings_title_notification_color +androidx.hilt.R$layout: int notification_template_part_chronometer +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: java.lang.Integer freezing +io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_WIFI_COMBO_MARGIN_END +okhttp3.internal.http1.Http1Codec$ChunkedSink: void flush() +retrofit2.adapter.rxjava2.Result: retrofit2.adapter.rxjava2.Result response(retrofit2.Response) +androidx.appcompat.resources.R$id: int accessibility_custom_action_0 +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Bridge +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ButtonBar +com.turingtechnologies.materialscrollbar.R$attr: int msb_rightToLeft +okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String etag +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void dispose() +androidx.drawerlayout.R$id +com.google.android.material.R$styleable: int Toolbar_titleTextAppearance +okhttp3.internal.ws.WebSocketProtocol: void toggleMask(okio.Buffer$UnsafeCursor,byte[]) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar +com.google.android.material.R$interpolator: int mtrl_fast_out_slow_in +okhttp3.HttpUrl: java.lang.String redact() +android.didikee.donate.R$dimen: int abc_action_bar_default_height_material +wangdaye.com.geometricweather.R$styleable: int Preference_android_singleLineTitle +okhttp3.internal.http.RealInterceptorChain: int readTimeoutMillis() +androidx.constraintlayout.widget.R$attr: int maxButtonHeight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: AccuCurrentResult$Visibility() +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: io.reactivex.internal.queue.SpscArrayQueue queue +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_size +androidx.viewpager2.R$id: int accessibility_custom_action_15 +androidx.constraintlayout.widget.R$styleable: int TextAppearance_fontFamily +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_android_checkable +com.google.android.material.R$styleable: int RangeSlider_minSeparation +com.google.android.material.R$attr: int ratingBarStyle +com.xw.repo.bubbleseekbar.R$dimen: int notification_action_text_size +com.google.android.material.R$styleable: int[] AppCompatTheme +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_sync_duration +okio.Source: okio.Timeout timeout() +com.google.android.material.R$styleable: int RangeSlider_values +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isCompletable +androidx.preference.R$styleable: int FontFamilyFont_ttcIndex +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: org.reactivestreams.Subscriber downstream +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_toolbar +wangdaye.com.geometricweather.db.entities.LocationEntity: float longitude +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginLeft +android.didikee.donate.R$attr: int colorControlHighlight +com.google.android.material.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +androidx.customview.R$id: int line1 +wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_text_input_mode +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_allowPresets +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontWeight +androidx.loader.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.R$style: int Platform_MaterialComponents +com.google.android.material.R$styleable: int Layout_layout_constraintWidth_min +androidx.cardview.R$style: R$style() +wangdaye.com.geometricweather.R$color: int notification_background_l +com.xw.repo.bubbleseekbar.R$attr: int listMenuViewStyle +androidx.loader.R$id: int line1 +io.reactivex.internal.operators.observable.ObserverResourceWrapper: ObserverResourceWrapper(io.reactivex.Observer) +wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragThreshold +okhttp3.internal.http2.Hpack$Reader: void readIndexedHeader(int) +androidx.loader.R$styleable: R$styleable() +androidx.appcompat.widget.AppCompatRadioButton: android.content.res.ColorStateList getSupportButtonTintList() +com.google.android.material.R$styleable: int Constraint_android_translationY +com.google.android.material.R$attr: int layout_constraintHeight_percent +androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle +androidx.hilt.work.R$id: int accessibility_custom_action_5 +androidx.viewpager.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_padding_start_material +okhttp3.RealCall$AsyncCall: okhttp3.Request request() +androidx.viewpager.R$dimen: int compat_button_inset_vertical_material +androidx.work.WorkerParameters +androidx.preference.R$style: int Base_DialogWindowTitle_AppCompat +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_CompactMenu +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_multichoice_material +cyanogenmod.app.CustomTile$ExpandedItem$1: cyanogenmod.app.CustomTile$ExpandedItem createFromParcel(android.os.Parcel) +com.turingtechnologies.materialscrollbar.R$style: int Animation_Design_BottomSheetDialog +wangdaye.com.geometricweather.R$string: int abc_menu_shift_shortcut_label +androidx.constraintlayout.widget.R$attr: int motion_postLayoutCollision +androidx.hilt.lifecycle.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_start +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_6 +androidx.appcompat.widget.ActivityChooserView: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +androidx.preference.R$attr: int actionDropDownStyle +androidx.coordinatorlayout.R$id: int top +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderPackage +com.google.android.material.datepicker.DateSelector +com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_android_foregroundGravity +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_13 +okio.RealBufferedSource: int read(byte[],int,int) +com.jaredrummler.android.colorpicker.R$id: int item_touch_helper_previous_elevation +androidx.activity.R$dimen +okio.Buffer: long readLong() +wangdaye.com.geometricweather.R$attr: int checked +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +james.adaptiveicon.R$dimen: int abc_dropdownitem_text_padding_right +cyanogenmod.app.ILiveLockScreenManager: void setLiveLockScreenEnabled(boolean) +cyanogenmod.providers.CMSettings$Secure: java.lang.String PRIVACY_GUARD_DEFAULT +okhttp3.internal.Internal: okhttp3.internal.connection.StreamAllocation streamAllocation(okhttp3.Call) +androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache$CallbackInfo getInfo(java.lang.Class) +com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_normal +androidx.appcompat.R$styleable: int MenuItem_android_icon +androidx.preference.TwoStatePreference +okio.Util: void sneakyThrow2(java.lang.Throwable) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setLabelVisibilityMode(int) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Borderless_Colored +cyanogenmod.app.Profile: void setExpandedDesktopMode(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: int status +james.adaptiveicon.R$color: int material_blue_grey_950 +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge +androidx.preference.R$styleable: int ActionMode_backgroundSplit +wangdaye.com.geometricweather.db.entities.AlertEntity: long alertId +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitationProbability +com.google.android.material.R$styleable: int[] FontFamily +androidx.appcompat.view.menu.ActionMenuItemView: void setExpandedFormat(boolean) +androidx.drawerlayout.R$string +androidx.preference.R$string: int abc_action_mode_done +androidx.preference.R$drawable: int abc_switch_thumb_material +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: double lon +androidx.constraintlayout.widget.R$styleable: int[] ActionBar +androidx.constraintlayout.widget.R$string: int abc_capital_on +androidx.constraintlayout.widget.ConstraintLayout: int getMinHeight() +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(java.lang.Iterable,io.reactivex.functions.Function) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_15 +io.reactivex.internal.queue.SpscArrayQueue +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation: MfForecastResult$DailyForecast$Precipitation() +com.jaredrummler.android.colorpicker.R$string: int cpv_default_title +wangdaye.com.geometricweather.R$string: int wind_12 +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getCityId() +com.google.android.material.R$string: int mtrl_badge_numberless_content_description +com.google.android.material.R$style: int TextAppearance_Compat_Notification +com.turingtechnologies.materialscrollbar.R$styleable: int[] RecyclerView +wangdaye.com.geometricweather.R$attr: int triggerSlack +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +androidx.appcompat.R$attr: int alpha +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: float unitFactor +android.didikee.donate.R$layout: int abc_screen_simple +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelMenuListTheme +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$styleable: int StateSet_defaultState +androidx.fragment.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$styleable: int Constraint_android_maxWidth +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_Alert +okhttp3.internal.cache.DiskLruCache$2 +okhttp3.OkHttpClient: okhttp3.CertificatePinner certificatePinner +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_padding +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +android.didikee.donate.R$attr: int paddingEnd +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HIGH_TOUCH_SENSITIVITY_ENABLE_VALIDATOR +androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_creator +androidx.viewpager2.R$styleable: int GradientColor_android_centerColor +com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker +androidx.viewpager2.R$styleable: int GradientColor_android_centerX +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_stacked_max_height +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_typeface +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalGap +retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1 +androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTint +androidx.appcompat.R$id: int tag_accessibility_actions +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean requestIsUnrepeatable(java.io.IOException,okhttp3.Request) +james.adaptiveicon.R$attr: int gapBetweenBars +wangdaye.com.geometricweather.R$drawable: int abc_text_cursor_material +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.ObservableSource[],io.reactivex.functions.Function,int) +com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_backgroundTintMode +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$styleable: int ConstraintSet_flow_firstVerticalBias +androidx.preference.R$styleable: int SwitchPreference_switchTextOn +androidx.constraintlayout.widget.R$styleable: int SearchView_layout +androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void cancel() +com.google.android.material.R$id: int textinput_error +com.google.android.material.R$integer: int mtrl_calendar_selection_text_lines +com.jaredrummler.android.colorpicker.R$styleable: int[] LinearLayoutCompat +androidx.preference.R$string: int abc_prepend_shortcut_label +com.turingtechnologies.materialscrollbar.MaterialScrollBar: boolean getHide() +com.google.android.material.R$styleable: int MotionLayout_layoutDescription +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: double seaLevel +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_width +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_layout_margin +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setColor(boolean) +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DrawableWithAnimatedVisibilityChange getCurrentDrawable() +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onSubscribe(org.reactivestreams.Subscription) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String insee +android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.support.v4.app.INotificationSideChannel sDefaultImpl +com.turingtechnologies.materialscrollbar.AlphabetIndicator: AlphabetIndicator(android.content.Context) +com.github.rahatarmanahmed.cpv.CircularProgressView$5: void onAnimationCancel(android.animation.Animator) +cyanogenmod.app.Profile$NotificationLightMode: Profile$NotificationLightMode() +androidx.lifecycle.extensions.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$anim: int fragment_main_exit +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mVersionSystemProperty +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_7 +androidx.hilt.R$styleable: int[] FontFamilyFont +androidx.hilt.lifecycle.R$id: int tag_unhandled_key_event_manager +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_fontVariationSettings +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: java.lang.String modeId +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_bias +com.google.android.material.R$dimen: int mtrl_extended_fab_icon_size +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerComplete(int) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String district +com.google.android.material.R$styleable: int Layout_layout_goneMarginBottom +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_toRightOf +androidx.preference.R$styleable: int CompoundButton_buttonTintMode +com.jaredrummler.android.colorpicker.R$attr: int keylines +okhttp3.internal.Util: java.lang.reflect.Method addSuppressedExceptionMethod +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setStatus(int) +android.didikee.donate.R$styleable: int ActionBar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endY +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_19 +okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method openMethod +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: double Value +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.db.entities.HourlyEntity: HourlyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +wangdaye.com.geometricweather.R$id: int scrollable +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeStepGranularity +androidx.lifecycle.extensions.R$id: int visible_removing_fragment_view_tag +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderLayout +androidx.lifecycle.Lifecycling$1 +wangdaye.com.geometricweather.db.entities.HourlyEntity +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset +com.google.android.material.R$styleable: int BottomNavigationView_itemIconSize +androidx.constraintlayout.widget.R$attr: int framePosition +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemIconSize +wangdaye.com.geometricweather.R$attr: int fontProviderQuery +com.xw.repo.bubbleseekbar.R$attr: int isLightTheme +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: java.lang.String color +okhttp3.Connection: okhttp3.Handshake handshake() +androidx.lifecycle.LiveData: int START_VERSION android.didikee.donate.R$styleable: int DrawerArrowToggle_color -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_elevation_material -androidx.preference.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -cyanogenmod.platform.R: R() -wangdaye.com.geometricweather.R$styleable: int[] FlowLayout -androidx.coordinatorlayout.R$id: int tag_accessibility_clickable_spans -com.turingtechnologies.materialscrollbar.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.google.android.material.R$attr: int materialButtonOutlinedStyle -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder queryOnly() -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void startFirstTimeout(io.reactivex.ObservableSource) -androidx.appcompat.resources.R$id: int tag_accessibility_actions -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_gravity -com.google.android.material.R$attr: int fontProviderFetchTimeout -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_20 -com.github.rahatarmanahmed.cpv.R$attr: int cpv_maxProgress -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.google.android.material.button.MaterialButton: void setStrokeWidthResource(int) -androidx.drawerlayout.R$styleable: int GradientColor_android_startY -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -androidx.constraintlayout.widget.R$styleable: int[] AppCompatTextView -androidx.appcompat.widget.AppCompatSeekBar -com.github.rahatarmanahmed.cpv.CircularProgressView$9: void onAnimationUpdate(android.animation.ValueAnimator) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setValue(java.util.List) -james.adaptiveicon.R$attr: int toolbarNavigationButtonStyle -androidx.preference.R$styleable: int RecycleListView_paddingTopNoTitle -androidx.recyclerview.R$styleable: int FontFamilyFont_fontVariationSettings -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_popupWindowStyle -wangdaye.com.geometricweather.R$styleable: int Preference_android_fragment -androidx.transition.R$drawable: int notification_bg_low_normal -androidx.appcompat.R$dimen: int compat_control_corner_material -androidx.hilt.lifecycle.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: int UnitType -androidx.loader.R$dimen: int notification_right_icon_size -com.jaredrummler.android.colorpicker.ColorPickerView: void setSliderTrackerColor(int) -androidx.appcompat.resources.R$dimen: int notification_small_icon_background_padding -androidx.preference.R$styleable: int RecyclerView_spanCount -androidx.constraintlayout.widget.R$attr: int colorControlNormal -androidx.appcompat.R$styleable: int MenuView_android_itemIconDisabledAlpha -com.google.android.material.R$attr: int values -com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Button -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_id -okio.RealBufferedSink: okio.Buffer buffer -com.google.android.material.R$attr: int autoSizeMaxTextSize -cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemBitmap(android.graphics.Bitmap) -com.github.rahatarmanahmed.cpv.R$color: int cpv_default_color -androidx.viewpager2.R$dimen: int notification_action_text_size -com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onProgressUpdateEnd(float) -androidx.coordinatorlayout.widget.CoordinatorLayout: int getSuggestedMinimumWidth() -wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress -androidx.preference.R$styleable: int FontFamilyFont_android_ttcIndex -com.bumptech.glide.R$attr: int layout_anchor -wangdaye.com.geometricweather.R$attr: int chipIcon -wangdaye.com.geometricweather.R$layout: int select_dialog_multichoice_material -okhttp3.internal.http2.Http2Stream: boolean closeInternal(okhttp3.internal.http2.ErrorCode) -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean isCancelled() -okio.Buffer: okio.BufferedSink write(byte[],int,int) -cyanogenmod.app.ICMStatusBarManager: void unregisterListener(cyanogenmod.app.ICustomTileListener,int) -androidx.lifecycle.ViewModelStore: java.util.Set keys() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotation -android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog -okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithoutIndexingIndexedName(int) -androidx.appcompat.R$attr: int listPopupWindowStyle -com.google.android.material.R$attr: int listChoiceIndicatorMultipleAnimated -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderCerts -androidx.appcompat.R$drawable: int abc_switch_thumb_material -okhttp3.internal.platform.Jdk9Platform: java.lang.reflect.Method getProtocolMethod -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSuggest() -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_textOff -okhttp3.internal.http1.Http1Codec$FixedLengthSink: okio.ForwardingTimeout timeout -androidx.hilt.R$styleable: int[] FontFamily -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu -com.google.android.material.R$drawable: int design_password_eye -com.google.android.material.chip.Chip: float getChipStartPadding() -retrofit2.Invocation -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_MODE_VALIDATOR -james.adaptiveicon.R$attr: int actionBarStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_progress_circular_radius -androidx.constraintlayout.widget.R$styleable: int MotionLayout_showPaths -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingEnd -wangdaye.com.geometricweather.R$layout: int abc_screen_content_include -com.turingtechnologies.materialscrollbar.R$attr: int msb_scrollMode -androidx.drawerlayout.R$attr: int fontProviderFetchTimeout -com.bumptech.glide.integration.okhttp.R$dimen: int notification_media_narrow_margin -android.didikee.donate.R$id: int edit_query -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_behavior -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: int unitArrayIndex -androidx.hilt.lifecycle.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.R$string: int material_minute_suffix -androidx.appcompat.R$dimen: int abc_text_size_large_material -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabView -james.adaptiveicon.R$styleable: int MenuItem_android_visible -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.appcompat.resources.R$integer: int status_bar_notification_info_maxnum -james.adaptiveicon.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Dialog -androidx.preference.R$styleable: int Toolbar_collapseContentDescription -android.didikee.donate.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -com.google.android.material.R$styleable: int[] ScrollingViewBehavior_Layout -androidx.drawerlayout.R$id: int right_icon -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Light -androidx.viewpager2.R$id: int tag_unhandled_key_event_manager -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_auto_adjust_section_mark -android.support.v4.app.INotificationSideChannel$Stub -wangdaye.com.geometricweather.R$style: int material_card -android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_title_material -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onComplete() -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.R$string: int settings_title_item_animation_switch +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: double Value +wangdaye.com.geometricweather.R$styleable: int State_android_id +androidx.hilt.R$dimen: int compat_button_padding_horizontal_material +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: void dispose() +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabText +com.jaredrummler.android.colorpicker.R$styleable: int Preference_summary +io.reactivex.Observable: java.lang.Iterable blockingIterable(int) +okhttp3.internal.http2.Http2Writer: void frameHeader(int,int,byte,byte) +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable +wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_percent +androidx.hilt.work.R$id: int text androidx.preference.R$dimen: int compat_button_padding_horizontal_material -cyanogenmod.app.LiveLockScreenManager: LiveLockScreenManager(android.content.Context) -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: java.lang.String Unit -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean delayErrors -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_corner_radius -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: java.lang.String Unit -okhttp3.internal.ws.RealWebSocket$Message: int formatOpcode -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: double Value -io.reactivex.Observable: io.reactivex.Maybe lastElement() -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_icon_vertical_padding_material -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy -wangdaye.com.geometricweather.R$style: int Theme_Design_Light_NoActionBar -wangdaye.com.geometricweather.R$drawable: int shortcuts_fog_foreground -com.google.android.material.R$styleable: int NavigationView_headerLayout -okio.Buffer: java.lang.String readUtf8Line() -androidx.appcompat.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_stroke_size -com.google.android.material.R$attr: int yearTodayStyle -com.google.gson.stream.JsonReader$1 -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation getWeatherLocation() -androidx.drawerlayout.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs indexs -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_87 -com.google.android.material.R$id: int mtrl_calendar_days_of_week -com.google.android.material.R$styleable: int CardView_cardPreventCornerOverlap -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer) -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.R$drawable: int notif_temp_74 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.google.android.material.R$attr: int actionModeBackground -cyanogenmod.weather.WeatherInfo: WeatherInfo(android.os.Parcel,cyanogenmod.weather.WeatherInfo$1) -io.reactivex.internal.subscribers.StrictSubscriber: void onSubscribe(org.reactivestreams.Subscription) -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1(kotlin.coroutines.Continuation,java.lang.Exception) -com.google.android.material.R$styleable: int ViewBackgroundHelper_backgroundTintMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setValue(java.util.List) -com.google.android.material.R$styleable: int Chip_closeIconEndPadding -com.turingtechnologies.materialscrollbar.R$attr: int displayOptions -io.reactivex.internal.schedulers.RxThreadFactory: java.lang.Thread newThread(java.lang.Runnable) -androidx.constraintlayout.utils.widget.ImageFilterButton: float getRoundPercent() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.google.android.material.R$attr: int tabPaddingEnd -com.google.android.material.R$styleable: int AppCompatTextView_textAllCaps -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemMaxLines -okhttp3.internal.ws.WebSocketReader: boolean closed -io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onError -com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar -androidx.preference.R$style: int Base_V7_Theme_AppCompat_Light -androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle NATIVE -com.jaredrummler.android.colorpicker.R$drawable: int abc_item_background_holo_light -retrofit2.RequestFactory$Builder: boolean gotQueryName -androidx.appcompat.R$styleable: int RecycleListView_paddingTopNoTitle -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -com.google.android.material.internal.FlowLayout: void setLineSpacing(int) -cyanogenmod.os.Concierge$ParcelInfo: int mSizePosition -cyanogenmod.hardware.DisplayMode -com.google.android.material.R$attr: int fastScrollEnabled -cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener -androidx.activity.R$id: int blocking -androidx.preference.R$styleable: int AppCompatTheme_windowActionModeOverlay -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: long serialVersionUID -androidx.appcompat.R$color: int primary_material_light -james.adaptiveicon.R$attr: int actionMenuTextColor -wangdaye.com.geometricweather.R$styleable: int[] Transition -wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_sliderColor -okhttp3.TlsVersion: okhttp3.TlsVersion[] values() -com.bumptech.glide.R$styleable: int FontFamily_fontProviderFetchTimeout -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Toolbar -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour WRAP_CONTENT -androidx.appcompat.resources.R$dimen: int compat_button_inset_vertical_material -com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_bottom_material -okhttp3.internal.ws.WebSocketWriter: void writePong(okio.ByteString) -androidx.dynamicanimation.R$id: int text -androidx.constraintlayout.widget.R$attr: int title -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int) -androidx.recyclerview.widget.RecyclerView: void setScrollState(int) -com.turingtechnologies.materialscrollbar.R$attr: int borderlessButtonStyle -com.google.android.material.internal.CheckableImageButton: void setCheckable(boolean) -wangdaye.com.geometricweather.R$id: int staticLayout -com.turingtechnologies.materialscrollbar.R$color: int cardview_shadow_start_color -com.jaredrummler.android.colorpicker.R$drawable: int abc_edit_text_material -james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Light -androidx.lifecycle.livedata.core.R: R() -androidx.preference.R$styleable: int ActionBar_hideOnContentScroll -com.google.android.material.R$attr: int textAppearanceOverline -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$EntrySet entrySet -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean done -wangdaye.com.geometricweather.R$styleable: int MenuItem_contentDescription -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat -okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.Object createAndOpen(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_round -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Switch -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.AbstractDaoSession session -com.google.android.material.R$styleable: int Layout_layout_constraintHeight_default -cyanogenmod.app.BaseLiveLockManagerService$1: BaseLiveLockManagerService$1(cyanogenmod.app.BaseLiveLockManagerService) -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_buttonIconDimen -io.reactivex.internal.observers.DeferredScalarDisposable: void dispose() -wangdaye.com.geometricweather.R$id: int widget_week_week_4 -androidx.preference.R$styleable: int DrawerArrowToggle_drawableSize -okio.Buffer: okio.ByteString hmacSha256(okio.ByteString) -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: MpscLinkedQueue$LinkedQueueNode() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: java.lang.String date -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_seek_by_section -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_icon_null_animation -com.google.android.material.R$dimen: int mtrl_calendar_day_horizontal_padding -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconEnabled -com.jaredrummler.android.colorpicker.R$string: int status_bar_notification_info_overflow -okhttp3.internal.Util: boolean discard(okio.Source,int,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionMode -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean -wangdaye.com.geometricweather.R$attr: int placeholderText -io.reactivex.Observable: java.lang.Object as(io.reactivex.ObservableConverter) -android.didikee.donate.R$dimen: int abc_text_size_button_material -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTx() -androidx.preference.R$attr: int layout_anchor -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar -okhttp3.internal.http2.Http2Reader: java.util.logging.Logger logger -com.jaredrummler.android.colorpicker.R$attr: int showText -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean cancelled -wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_previous_black_24dp -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endX -androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -com.google.android.material.R$drawable: int abc_popup_background_mtrl_mult -androidx.appcompat.widget.LinearLayoutCompat: int getDividerWidth() -androidx.core.R$attr: int fontProviderQuery -androidx.drawerlayout.R$layout: int notification_template_custom_big -androidx.transition.R$styleable: int FontFamily_fontProviderFetchTimeout -com.google.android.material.R$styleable: int Constraint_android_layout_marginBottom -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog -androidx.constraintlayout.widget.R$color: int abc_btn_colored_borderless_text_material -androidx.constraintlayout.widget.R$color: int switch_thumb_normal_material_dark -com.xw.repo.bubbleseekbar.R$attr: int contentInsetStartWithNavigation -android.didikee.donate.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_57 -wangdaye.com.geometricweather.common.basic.models.weather.History: java.util.Date getDate() -androidx.preference.R$attr: int thumbTintMode -com.google.android.material.chip.ChipGroup: void setChipSpacingResource(int) -com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_bottom -com.turingtechnologies.materialscrollbar.R$style: int AlertDialog_AppCompat -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_progress -okhttp3.internal.http2.Http2Stream$FramingSource: void receive(okio.BufferedSource,long) -androidx.preference.R$layout: int preference_information -wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_appearance -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat -androidx.preference.R$attr: int backgroundTintMode -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart -com.xw.repo.bubbleseekbar.R$anim -com.google.android.material.R$color: int mtrl_navigation_item_text_color -androidx.preference.R$attr: int paddingEnd -com.turingtechnologies.materialscrollbar.R$drawable: int abc_switch_track_mtrl_alpha -androidx.appcompat.R$layout: int abc_dialog_title_material -com.xw.repo.bubbleseekbar.R$dimen: int notification_large_icon_height -retrofit2.Retrofit: java.util.concurrent.Executor callbackExecutor() -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: int requestFusion(int) -wangdaye.com.geometricweather.R$id: int group_divider -wangdaye.com.geometricweather.R$styleable: int Constraint_motionProgress -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.R$transition: int search_activity_shared_return -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTint -androidx.appcompat.R$dimen: int abc_select_dialog_padding_start_material -wangdaye.com.geometricweather.R$attr: int cardPreventCornerOverlap -org.greenrobot.greendao.AbstractDao: void deleteByKeyInTx(java.lang.Iterable) -androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstHorizontalStyle -androidx.recyclerview.R$id: int accessibility_custom_action_2 -androidx.customview.R$styleable: int ColorStateListItem_android_alpha -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog -com.google.android.material.R$attr: int ratingBarStyleSmall -wangdaye.com.geometricweather.R$id: int design_menu_item_action_area -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_CBC_SHA -okio.Buffer: java.lang.String readUtf8Line(long) -androidx.appcompat.R$id: int accessibility_custom_action_5 -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int prefetch -androidx.preference.R$dimen: int abc_action_button_min_height_material -com.google.android.material.R$attr: int contentPadding -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_menu -wangdaye.com.geometricweather.R$styleable: int[] MaterialButton -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_visible -androidx.preference.R$styleable: int DialogPreference_dialogIcon -com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior -cyanogenmod.app.CustomTile$Builder: java.lang.String mLabel -wangdaye.com.geometricweather.R$string: int feels_like -wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status SUCCESS -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -androidx.appcompat.R$drawable: int abc_textfield_search_default_mtrl_alpha -cyanogenmod.power.PerformanceManager: void cpuBoost(int) -android.didikee.donate.R$drawable: int abc_list_focused_holo -androidx.appcompat.R$drawable: int abc_btn_default_mtrl_shape -com.google.android.material.R$style: int Widget_AppCompat_ListMenuView -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton_CloseMode -androidx.swiperefreshlayout.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: int status -okhttp3.ConnectionPool: java.lang.Runnable cleanupRunnable -com.github.rahatarmanahmed.cpv.CircularProgressView$6: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder allEnabledTlsVersions() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -wangdaye.com.geometricweather.R$drawable: int cpv_btn_background -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_letter_spacing -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_CBC_SHA -wangdaye.com.geometricweather.R$attr: int paddingTopNoTitle -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_liftOnScrollTargetViewId -com.google.android.material.R$string: int mtrl_picker_save -okhttp3.Interceptor$Chain: okhttp3.Call call() -androidx.work.ArrayCreatingInputMerger: ArrayCreatingInputMerger() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupMenu -cyanogenmod.app.ProfileManager: android.app.NotificationGroup[] getNotificationGroups() -wangdaye.com.geometricweather.R$drawable: int ic_sunrise -androidx.legacy.coreutils.R$color: int notification_icon_bg_color -okhttp3.internal.cache.DiskLruCache: int appVersion -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: double Value -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable,int) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Display -androidx.preference.R$dimen: int compat_button_inset_horizontal_material -androidx.core.R$dimen: int notification_large_icon_height -okhttp3.internal.http2.ErrorCode: int httpCode -wangdaye.com.geometricweather.R$color: int material_slider_inactive_track_color -com.google.android.material.R$attr: int colorPrimaryDark -okhttp3.Cookie: boolean httpOnly() -androidx.recyclerview.widget.RecyclerView$SavedState -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Headline -androidx.vectordrawable.R$id: int tag_unhandled_key_listeners -androidx.viewpager.widget.PagerTitleStrip: void setNonPrimaryAlpha(float) -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: int getMarginBottom() -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean isSunlightEnhancementSelfManaged() -cyanogenmod.app.CustomTile: int PSEUDO_GRID_ITEM_MAX_COUNT -com.xw.repo.bubbleseekbar.R$attr: int actionBarTabBarStyle -cyanogenmod.weather.IWeatherServiceProviderChangeListener: void onWeatherServiceProviderChanged(java.lang.String) -com.xw.repo.bubbleseekbar.R$id: int activity_chooser_view_content -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Id -com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getIndeterminateDrawable() -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetEnd -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: long index -wangdaye.com.geometricweather.common.basic.models.weather.Base: long getUpdateTime() -wangdaye.com.geometricweather.R$style: int Preference_Information_Material -wangdaye.com.geometricweather.R$drawable: int test_custom_background -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int getColor() -androidx.vectordrawable.animated.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.R$id: int icon_frame -wangdaye.com.geometricweather.background.polling.work.worker.TomorrowForecastUpdateWorker -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_subtitle -okhttp3.internal.platform.AndroidPlatform: boolean api24IsCleartextTrafficPermitted(java.lang.String,java.lang.Class,java.lang.Object) -wangdaye.com.geometricweather.R$id: int month_navigation_next -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$string: int sp_widget_hourly_trend_setting -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,int) -okhttp3.internal.http.HttpHeaders: boolean hasVaryAll(okhttp3.Response) -james.adaptiveicon.R$string: int abc_searchview_description_search -com.google.android.material.R$styleable: int Constraint_android_maxWidth -androidx.hilt.lifecycle.R$layout: int notification_action -com.google.android.material.R$layout: int mtrl_alert_dialog_actions -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetRight -com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode LAST_ELEMENT -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int wip -com.google.android.material.R$dimen: int abc_cascading_menus_min_smallest_width -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.functions.Function mapper -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_80 -com.google.android.material.R$style: int Widget_MaterialComponents_Button -com.turingtechnologies.materialscrollbar.R$attr: int alertDialogStyle -wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingRight -com.google.android.material.appbar.AppBarLayout: void setElevation(float) -wangdaye.com.geometricweather.R$string: int settings_title_widget_config -androidx.constraintlayout.widget.R$styleable: int MenuItem_numericModifiers -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial Imperial -com.google.android.material.R$attr: int buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.R$layout: int activity_alert -androidx.constraintlayout.widget.R$id: int start -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode NIGHT -androidx.legacy.coreutils.R$dimen: int notification_action_text_size -com.xw.repo.bubbleseekbar.R$attr: int bsb_track_size -wangdaye.com.geometricweather.R$drawable: int ic_cold -androidx.recyclerview.R$drawable: int notification_bg_low -com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context,android.util.AttributeSet,int) -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -retrofit2.BuiltInConverters$BufferingResponseBodyConverter: retrofit2.BuiltInConverters$BufferingResponseBodyConverter INSTANCE -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedHeightMinor() -james.adaptiveicon.R$styleable: int ViewStubCompat_android_layout -com.google.android.material.R$color: int primary_dark_material_light -cyanogenmod.app.Profile$NotificationLightMode: int DISABLE -io.reactivex.internal.observers.LambdaObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX() -okio.Timeout$1 -androidx.activity.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setStatus(int) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer iso0 -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 -android.didikee.donate.R$styleable: int AppCompatTextView_drawableTint -wangdaye.com.geometricweather.R$layout: int container_main_header -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.Integer getIndex() -com.google.android.material.appbar.AppBarLayout: void setVisibility(int) -androidx.appcompat.R$styleable: int AppCompatTheme_selectableItemBackground -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_statusBarBackground -androidx.appcompat.R$attr: int switchPadding -android.didikee.donate.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +okhttp3.internal.connection.RouteException: java.io.IOException firstException +cyanogenmod.app.IProfileManager: void updateProfile(cyanogenmod.app.Profile) +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindTitle +com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_backgroundTint +com.google.android.material.bottomappbar.BottomAppBar: void setTitle(java.lang.CharSequence) +com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_Tooltip +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Title +okhttp3.Address: okhttp3.Authenticator proxyAuthenticator +androidx.appcompat.R$id: int blocking +io.reactivex.Observable: io.reactivex.Observable retry(io.reactivex.functions.Predicate) +okio.Buffer$1: void write(int) +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context) +androidx.viewpager.widget.ViewPager: void setScrollingCacheEnabled(boolean) +com.google.android.material.internal.ScrimInsetsFrameLayout +com.google.android.material.R$attr: int layout_constraintGuide_end +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String timezone +okhttp3.internal.http2.Settings: int DEFAULT_INITIAL_WINDOW_SIZE +cyanogenmod.app.LiveLockScreenInfo$1: cyanogenmod.app.LiveLockScreenInfo createFromParcel(android.os.Parcel) +com.google.android.material.R$layout: int material_timepicker_textinput_display +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_110 +androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior: CoordinatorLayout$Behavior(android.content.Context,android.util.AttributeSet) +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property HourlyForecast +wangdaye.com.geometricweather.R$layout: int select_dialog_item_material +androidx.vectordrawable.animated.R$id: int icon_group +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity humidity +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: java.lang.String Unit +wangdaye.com.geometricweather.R$integer: int mtrl_tab_indicator_anim_duration_ms +wangdaye.com.geometricweather.R$id: int floating +okio.Buffer: long indexOfElement(okio.ByteString) +wangdaye.com.geometricweather.db.entities.LocationEntityDao +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long count +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX direction +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean disposeAll() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_chainStyle +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.R$dimen: int appcompat_dialog_background_inset +okio.HashingSink: okio.ByteString hash() +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getOverlayThemePackageName() +com.google.android.material.R$attr: int closeIconSize +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: KeyguardExternalViewProviderService$Provider$ProviderImpl$3(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) +com.google.android.material.R$style: int Widget_Design_AppBarLayout +wangdaye.com.geometricweather.R$color: int dim_foreground_disabled_material_dark +okhttp3.ResponseBody: java.io.Reader charStream() +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_mode_close_item_material +okio.Timeout: boolean hasDeadline +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer dewPoint +com.turingtechnologies.materialscrollbar.R$drawable: int tooltip_frame_dark +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_30 +com.google.android.material.R$dimen: int design_navigation_separator_vertical_padding +io.reactivex.Observable: io.reactivex.Observable mergeArrayDelayError(io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.R$id: int NO_DEBUG +androidx.hilt.work.R$styleable: int GradientColor_android_startX +android.didikee.donate.R$drawable: int notification_bg_low_pressed +okio.RealBufferedSource: okio.Buffer buffer() +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadMessage(java.lang.String) +cyanogenmod.app.CustomTile: java.lang.String getResourcesPackageName() +androidx.constraintlayout.widget.R$color: R$color() +cyanogenmod.app.CustomTile$ExpandedStyle: void writeToParcel(android.os.Parcel,int) +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance +wangdaye.com.geometricweather.R$attr: int maxImageSize +com.google.android.material.R$style: int TestStyleWithoutLineHeight +com.xw.repo.bubbleseekbar.R$styleable: int ActivityChooserView_initialActivityCount +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRealFeelShaderTemperature(java.lang.Integer) +wangdaye.com.geometricweather.R$mipmap +androidx.transition.R$layout: int notification_template_part_chronometer +com.google.android.material.R$attr: int progressBarPadding +okhttp3.internal.http2.Hpack$Writer: int SETTINGS_HEADER_TABLE_SIZE +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_enabled +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitation +androidx.work.R$id: int text2 +com.google.android.material.R$color: int mtrl_navigation_item_background_color +com.google.android.material.R$styleable: int TextInputLayout_boxStrokeErrorColor +okhttp3.internal.platform.Jdk9Platform: okhttp3.internal.platform.Jdk9Platform buildIfSupported() +cyanogenmod.app.Profile: java.lang.String getName() +com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonCompat +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isDataConnectionSelectedOnSub(int) +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer wetBulbTemperature wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_MENU_LONG_PRESS_ACTION -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_NFC -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setPresenter(com.google.android.material.bottomnavigation.BottomNavigationPresenter) -androidx.cardview.R$style: int CardView_Dark -wangdaye.com.geometricweather.R$drawable: int abc_switch_thumb_material -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindSpeed(java.lang.Float) -com.turingtechnologies.materialscrollbar.R$color: int button_material_dark -okhttp3.internal.ws.RealWebSocket: java.util.Random random -cyanogenmod.externalviews.ExternalViewProperties: int getX() -io.reactivex.Observable: io.reactivex.Single lastOrError() -androidx.fragment.R$id: int tag_unhandled_key_listeners -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_max -com.google.android.material.R$id: int test_checkbox_app_button_tint -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean isDisposed() -com.google.android.material.R$attr: int waveDecay -androidx.dynamicanimation.R$layout: int notification_action_tombstone -androidx.appcompat.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.R$attr: int cpv_showAlphaSlider -androidx.appcompat.resources.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: MfWarningsResult$PhenomenonMaxColor() -androidx.appcompat.R$attr: int windowFixedHeightMajor -wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_descendantFocusability -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getResPkg() -cyanogenmod.providers.CMSettings$Global: long getLongForUser(android.content.ContentResolver,java.lang.String,int) -androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMark -io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean isCancelled() -androidx.hilt.R$id: int notification_main_column_container -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,java.util.concurrent.Callable) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_3 -androidx.constraintlayout.widget.R$styleable: int OnSwipe_maxVelocity -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_middle_mtrl_light -cyanogenmod.app.CustomTile$ExpandedStyle: void internalStyleId(int) -androidx.loader.R$drawable: int notification_bg -androidx.preference.R$bool: int abc_action_bar_embed_tabs -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedReadableDb(char[]) -io.reactivex.exceptions.CompositeException: void printStackTrace(java.io.PrintStream) -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_ActionBar -okhttp3.MultipartBody: okhttp3.MediaType DIGEST -retrofit2.Converter$Factory: retrofit2.Converter stringConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -androidx.constraintlayout.widget.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -cyanogenmod.externalviews.KeyguardExternalView$11: KeyguardExternalView$11(cyanogenmod.externalviews.KeyguardExternalView,float) -com.google.android.material.R$id: int textinput_prefix_text -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: ObservableThrottleFirstTimed$DebounceTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker) -wangdaye.com.geometricweather.R$dimen: int hint_pressed_alpha_material_dark -com.xw.repo.bubbleseekbar.R$attr: int bsb_min -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_singleChoiceItemLayout -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_voice_search_api_material -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode nighttimeWeatherCode -android.didikee.donate.R$style: int Base_V7_Theme_AppCompat -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dark -androidx.constraintlayout.widget.R$attr: int dividerPadding -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_scaleY -com.google.android.material.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -androidx.viewpager2.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.R$attr: int hintTextColor -io.reactivex.internal.subscribers.DeferredScalarSubscriber: org.reactivestreams.Subscription upstream -okhttp3.internal.connection.RealConnection: boolean isEligible(okhttp3.Address,okhttp3.Route) -com.google.android.material.R$styleable: int MaterialButtonToggleGroup_selectionRequired -cyanogenmod.app.ProfileGroup: boolean isDirty() -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void rstStream(int,okhttp3.internal.http2.ErrorCode) -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -james.adaptiveicon.R$styleable: int AppCompatImageView_srcCompat -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_FixedSize -com.google.android.material.R$attr: int seekBarStyle -androidx.core.R$styleable: int ColorStateListItem_alpha -okhttp3.CacheControl$Builder: boolean onlyIfCached -wangdaye.com.geometricweather.R$styleable: int[] Constraint -androidx.coordinatorlayout.R$style: int Widget_Support_CoordinatorLayout -wangdaye.com.geometricweather.R$string: int feedback_request_location_permission_failed -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_elevation -com.google.android.material.R$anim: int abc_fade_out -androidx.core.R$id: int accessibility_custom_action_3 -androidx.appcompat.view.menu.ListMenuItemView -com.google.android.material.R$color: int mtrl_chip_surface_color -android.didikee.donate.R$styleable: int SearchView_suggestionRowLayout -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: FlowableConcatMap$BaseConcatMapSubscriber(io.reactivex.functions.Function,int) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_collapseContentDescription -com.xw.repo.bubbleseekbar.R$id: int search_edit_frame -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dark -androidx.appcompat.resources.R$dimen: int compat_button_padding_horizontal_material -androidx.lifecycle.MediatorLiveData -com.turingtechnologies.materialscrollbar.R$attr: int alphabeticModifiers -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listMenuViewStyle -androidx.preference.R$styleable: int ActionBar_homeLayout -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_homeAsUpIndicator -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onError(java.lang.Throwable) -androidx.core.R$id: int notification_background -com.google.android.material.R$string: int mtrl_picker_announce_current_selection -okhttp3.Headers$Builder: java.lang.String get(java.lang.String) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.observers.InnerQueuedObserver current -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_disabled_holo_dark -okhttp3.internal.ws.RealWebSocket: int sentPingCount -okhttp3.internal.http1.Http1Codec$ChunkedSource: okhttp3.internal.http1.Http1Codec this$0 -com.google.android.material.tabs.TabLayout: android.graphics.drawable.Drawable getTabSelectedIndicator() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitation -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme_Light -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: ObservableTimeoutTimed$TimeoutFallbackObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker,io.reactivex.ObservableSource) -okhttp3.internal.http2.Http2Codec: java.util.List HTTP_2_SKIPPED_REQUEST_HEADERS -android.didikee.donate.R$attr: int height -androidx.preference.R$styleable: int AppCompatTheme_spinnerStyle -james.adaptiveicon.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -androidx.appcompat.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: java.util.Date Set -wangdaye.com.geometricweather.R$style: int Base_V22_Theme_AppCompat_Light -androidx.loader.R$drawable: int notify_panel_notification_icon_bg -androidx.constraintlayout.widget.R$bool: int abc_allow_stacked_button_bar -cyanogenmod.profiles.ConnectionSettings: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dark -james.adaptiveicon.R$style: int Widget_AppCompat_ProgressBar_Horizontal -androidx.work.R$id: int accessibility_custom_action_29 -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableEndCompat -androidx.appcompat.R$dimen: int abc_text_size_display_4_material -okhttp3.internal.http2.Http2Writer: Http2Writer(okio.BufferedSink,boolean) -okhttp3.WebSocket: long queueSize() -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.Long getId() -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_saturation -com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_DropDownUp -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginLeft -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$attr: int panelMenuListWidth -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Bridge -androidx.versionedparcelable.ParcelImpl: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundTodayForecastUpdateService: Hilt_ForegroundTodayForecastUpdateService() -wangdaye.com.geometricweather.R$drawable: int notif_temp_102 -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitation(java.lang.Float) -androidx.preference.R$attr: int drawableSize -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf -androidx.preference.R$styleable: int SwitchPreference_android_disableDependentsState -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.drawerlayout.R$dimen: int notification_right_icon_size -com.xw.repo.bubbleseekbar.R$attr: int fontProviderQuery -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIconTintMode -androidx.constraintlayout.widget.R$attr: int layout_constrainedHeight -org.greenrobot.greendao.AbstractDao: void deleteByKeyInsideSynchronized(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement) -androidx.preference.R$id: int src_over -wangdaye.com.geometricweather.R$color: int mtrl_btn_text_color_selector -com.google.android.material.R$color: int primary_text_disabled_material_dark -androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_material -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: boolean cancelled -com.google.android.material.R$dimen: int material_clock_size -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onNext(java.lang.Object) -androidx.viewpager2.R$attr: int recyclerViewStyle -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_1 -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String value -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: int city_code -androidx.dynamicanimation.R$attr: int fontProviderFetchStrategy -androidx.lifecycle.ComputableLiveData -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha -androidx.appcompat.widget.ActionBarContainer: void setTabContainer(androidx.appcompat.widget.ScrollingTabContainerView) -androidx.loader.R$color: R$color() -okhttp3.Cache$Entry: Cache$Entry(okio.Source) -wangdaye.com.geometricweather.R$drawable: int design_password_eye -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_checkable -androidx.preference.R$color: int abc_primary_text_material_light +androidx.lifecycle.ViewModelStore: androidx.lifecycle.ViewModel get(java.lang.String) +androidx.lifecycle.extensions.R$id: int tag_unhandled_key_listeners +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle +com.xw.repo.bubbleseekbar.R$drawable: int abc_switch_thumb_material +io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Runnable runnable +androidx.lifecycle.GenericLifecycleObserver +wangdaye.com.geometricweather.R$attr: int state_lifted +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean done +androidx.loader.R$id: int async +androidx.appcompat.R$string: int status_bar_notification_info_overflow +androidx.customview.R$attr +james.adaptiveicon.R$color: int background_material_light +com.jaredrummler.android.colorpicker.R$dimen: int cpv_dialog_preview_width +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.R$styleable: int[] ViewPager2 +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +com.turingtechnologies.materialscrollbar.R$id: int action_bar_container +wangdaye.com.geometricweather.R$layout: int material_clock_display +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackTintList() +com.google.android.material.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +com.jaredrummler.android.colorpicker.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +android.didikee.donate.R$style: int Theme_AppCompat_Dialog_MinWidth +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_rippleColor +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String province +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String WidgetPhrase +okhttp3.internal.tls.BasicTrustRootIndex: boolean equals(java.lang.Object) +com.google.android.material.transformation.FabTransformationScrimBehavior: FabTransformationScrimBehavior() +androidx.legacy.coreutils.R$id: int notification_background +com.google.android.material.R$styleable: int Chip_android_maxWidth +androidx.lifecycle.extensions.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$drawable: int notif_temp_62 +androidx.vectordrawable.R$styleable: int FontFamilyFont_ttcIndex +cyanogenmod.platform.Manifest +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +androidx.appcompat.R$styleable: int AppCompatTheme_windowActionModeOverlay +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: WeatherProviderService$ServiceHandler(cyanogenmod.weatherservice.WeatherProviderService,android.os.Looper) +com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_overlapAnchor +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void settings(boolean,okhttp3.internal.http2.Settings) +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_normal_pressed +io.reactivex.Observable: io.reactivex.Observable intervalRange(long,long,long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okhttp3.Handshake: java.util.List localCertificates() +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.RequestBody) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Caption +james.adaptiveicon.R$styleable: int ActionMode_titleTextStyle +james.adaptiveicon.R$attr: int subtitleTextAppearance +android.didikee.donate.R$style: int Platform_V25_AppCompat +okio.RealBufferedSource: int readIntLe() +androidx.viewpager2.R$dimen: int notification_subtext_size +retrofit2.RequestBuilder: okhttp3.Request$Builder get() +com.google.android.material.R$attr: int actionBarTabStyle +cyanogenmod.hardware.CMHardwareManager: int FEATURE_KEY_DISABLE +androidx.appcompat.R$styleable: int AppCompatTheme_panelBackground +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +cyanogenmod.app.StatusBarPanelCustomTile$1: StatusBarPanelCustomTile$1() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setUnit(java.lang.String) +com.google.android.material.R$attr: int suffixTextColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: double Value +com.google.android.material.R$color: int material_cursor_color +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver +com.google.android.material.R$style: int TextAppearance_AppCompat_Display4 +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow3h +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorColor +com.google.android.material.R$dimen: int mtrl_extended_fab_corner_radius +androidx.preference.R$dimen: int abc_action_bar_icon_vertical_padding_material +androidx.constraintlayout.widget.R$styleable: int Variant_region_heightMoreThan +androidx.core.widget.NestedScrollView: int getNestedScrollAxes() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_Solid +james.adaptiveicon.R$attr: int elevation +retrofit2.Platform +wangdaye.com.geometricweather.R$string: int mtrl_picker_cancel +wangdaye.com.geometricweather.R$attr: int bsb_section_text_size +com.google.android.material.R$styleable: int KeyAttribute_android_translationX +androidx.core.R$id: int title +androidx.activity.R$drawable: R$drawable() +io.reactivex.Observable: io.reactivex.Completable flatMapCompletable(io.reactivex.functions.Function) +com.google.android.material.R$attr: int cornerRadius +com.jaredrummler.android.colorpicker.ColorPreferenceCompat: ColorPreferenceCompat(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int KeyTimeCycle_android_rotationX +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean precipitation +androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_2_material +com.turingtechnologies.materialscrollbar.R$drawable: int notify_panel_notification_icon_bg +james.adaptiveicon.R$styleable: int ActionBar_backgroundStacked +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWeatherStart() +androidx.appcompat.widget.ActionMenuPresenter$SavedState: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTextHelper +james.adaptiveicon.R$layout: int abc_action_bar_up_container +com.google.android.material.slider.Slider: void setTrackInactiveTintList(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_shapeAppearance +androidx.appcompat.R$string: int abc_prepend_shortcut_label +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderPackage +com.google.android.material.navigation.NavigationView: int getHeaderCount() +io.reactivex.internal.util.VolatileSizeArrayList: boolean contains(java.lang.Object) +wangdaye.com.geometricweather.common.ui.transitions.RoundCornerTransition: RoundCornerTransition(android.content.Context,android.util.AttributeSet) +androidx.hilt.R$anim +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onNext(java.lang.Object) +okhttp3.Address: javax.net.SocketFactory socketFactory +androidx.hilt.lifecycle.R$id: int tag_transition_group +androidx.vectordrawable.R$id: int right_icon +androidx.appcompat.R$id: int customPanel +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25 +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type rawType +cyanogenmod.util.ColorUtils: float[] temperatureToRGB(int) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +androidx.recyclerview.R$id: int notification_main_column_container +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder retryOnConnectionFailure(boolean) +android.didikee.donate.R$drawable: int abc_switch_track_mtrl_alpha +androidx.coordinatorlayout.R$styleable: R$styleable() +androidx.constraintlayout.widget.R$styleable: int[] ImageFilterView +wangdaye.com.geometricweather.common.basic.models.weather.Alert: long time +androidx.appcompat.R$attr: int spinnerStyle +androidx.appcompat.R$attr: int subtitleTextStyle +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.UV uv +com.xw.repo.bubbleseekbar.R$attr: int subtitleTextStyle +wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_day_foreground +okhttp3.internal.Util$1: Util$1() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Summary +androidx.preference.R$attr: int dialogIcon +androidx.constraintlayout.widget.R$drawable: int abc_item_background_holo_light +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: double Value +com.turingtechnologies.materialscrollbar.R$string: int status_bar_notification_info_overflow +androidx.constraintlayout.widget.R$styleable: int MenuItem_actionProviderClass +wangdaye.com.geometricweather.R$attr: int bsb_show_progress_in_float +com.jaredrummler.android.colorpicker.R$attr: int cpv_borderColor +com.google.android.material.R$string: int mtrl_picker_invalid_format_use +androidx.appcompat.R$string: int abc_searchview_description_clear +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +androidx.constraintlayout.helper.widget.Flow: void setPaddingRight(int) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Large_Inverse +androidx.recyclerview.widget.RecyclerView: void setItemViewCacheSize(int) +androidx.appcompat.app.ToolbarActionBar +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DialogWhenLarge +com.google.android.material.R$attr: int tabUnboundedRipple +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider BAIDU +wangdaye.com.geometricweather.R$drawable: int shortcuts_rain_foreground +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.Map rights +androidx.constraintlayout.widget.R$attr: int touchAnchorSide +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_ctrl_shortcut_label +wangdaye.com.geometricweather.R$color: int lightPrimary_1 +com.jaredrummler.android.colorpicker.R$styleable: int Preference_iconSpaceReserved +com.google.android.material.R$styleable: int Layout_layout_constraintEnd_toEndOf +wangdaye.com.geometricweather.db.entities.DaoMaster: void createAllTables(org.greenrobot.greendao.database.Database,boolean) +com.xw.repo.bubbleseekbar.R$styleable: int View_paddingEnd +androidx.loader.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String zh_CN +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_precise_anchor_threshold +com.turingtechnologies.materialscrollbar.R$attr: int closeIconTint +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: java.util.concurrent.TimeUnit unit +com.bumptech.glide.Priority: com.bumptech.glide.Priority HIGH +io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: int getWindowFlags() +androidx.lifecycle.ReportFragment: void onStart() +okio.Buffer: okio.Buffer writeByte(int) +io.reactivex.internal.observers.BlockingObserver: void onError(java.lang.Throwable) +androidx.preference.R$dimen: int abc_dialog_padding_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: java.lang.String Localized +com.bumptech.glide.R$drawable: int notify_panel_notification_icon_bg +okhttp3.internal.http2.Http2Connection: long awaitPingsSent +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +com.google.android.material.R$id: int dragStart +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property AqiText +com.bumptech.glide.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_rippleColor +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeSplitBackground +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_cursor_material +wangdaye.com.geometricweather.R$styleable: int[] ArcProgress +com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: AccuDailyResult$DailyForecasts$Night$Snow() +wangdaye.com.geometricweather.R$id: int item_icon_provider_title +wangdaye.com.geometricweather.db.entities.DaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) +androidx.appcompat.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.background.polling.work.worker.AsyncWorker +com.google.android.material.R$dimen: int material_emphasis_high_type +com.xw.repo.bubbleseekbar.R$layout: int abc_activity_chooser_view_list_item +wangdaye.com.geometricweather.R$attr: int allowDividerBelow +com.xw.repo.bubbleseekbar.R$styleable: int[] MenuItem +com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_fast_out_linear_in +com.google.android.material.internal.ForegroundLinearLayout: android.graphics.drawable.Drawable getForeground() +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_LEGACY_ICONPACK +androidx.activity.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitationDuration() +okio.Buffer: okio.BufferedSink write(byte[]) +androidx.preference.R$drawable: int btn_radio_on_mtrl +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.Observer downstream +androidx.activity.R$styleable +com.turingtechnologies.materialscrollbar.R$layout +okhttp3.internal.ws.WebSocketReader: boolean isFinalFrame +okio.InflaterSource: void close() +wangdaye.com.geometricweather.R$array: int ui_styles +okio.Buffer$2: okio.Buffer this$0 +com.google.android.material.R$styleable: int TabLayout_tabUnboundedRipple +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +com.turingtechnologies.materialscrollbar.R$color: int primary_text_default_material_dark +com.jaredrummler.android.colorpicker.R$attr: int queryBackground +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_48dp +com.google.android.material.R$styleable: int TabItem_android_icon +com.google.android.material.textfield.TextInputLayout: void setErrorTextAppearance(int) +cyanogenmod.app.CustomTile$ExpandedListItem +com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_radio +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_title +cyanogenmod.externalviews.ExternalViewProperties: boolean mVisible +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial Imperial +okhttp3.internal.ws.RealWebSocket: boolean $assertionsDisabled +retrofit2.ParameterHandler$1: void apply(retrofit2.RequestBuilder,java.lang.Iterable) +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onNext(java.lang.Object) +cyanogenmod.externalviews.KeyguardExternalView$6: cyanogenmod.externalviews.KeyguardExternalView this$0 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getAlertId() +androidx.cardview.widget.CardView: void setMinimumHeight(int) +androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog_Alert +com.google.android.material.R$drawable: int abc_list_focused_holo +androidx.constraintlayout.widget.R$styleable: int[] ConstraintSet +com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_Dialog +okhttp3.internal.http.HttpMethod: boolean redirectsWithBody(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_dither +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getTreeDescription() +com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_RadioButton +com.jaredrummler.android.colorpicker.R$dimen: int abc_list_item_padding_horizontal_material +wangdaye.com.geometricweather.R$layout: int widget_day_vertical +okhttp3.internal.connection.ConnectionSpecSelector: okhttp3.ConnectionSpec configureSecureSocket(javax.net.ssl.SSLSocket) +okhttp3.RealCall: RealCall(okhttp3.OkHttpClient,okhttp3.Request,boolean) +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State SUCCEEDED +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: int UnitType +retrofit2.OkHttpCall$NoContentResponseBody: long contentLength +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: int requestFusion(int) +androidx.preference.R$attr: int listItemLayout +okhttp3.internal.Util: java.util.TimeZone UTC +wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_3_material +cyanogenmod.weatherservice.IWeatherProviderService: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) +com.google.android.material.circularreveal.CircularRevealFrameLayout: void setCircularRevealScrimColor(int) +androidx.appcompat.R$attr: int dropdownListPreferredItemHeight +android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +com.google.android.material.R$anim: int abc_popup_exit +com.turingtechnologies.materialscrollbar.R$anim: int abc_tooltip_exit +com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_disabled_color +androidx.constraintlayout.widget.R$style: int Theme_AppCompat +com.google.android.material.button.MaterialButton: void setBackgroundColor(int) +com.xw.repo.bubbleseekbar.R$attr: int iconifiedByDefault +wangdaye.com.geometricweather.R$attr: int actionBarTabStyle +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetRight +com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Button +com.google.android.material.R$drawable: int mtrl_ic_arrow_drop_down +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_maximum_default_fullscreen_minor_axis +okhttp3.internal.platform.OptionalMethod: java.lang.Class[] methodParams +android.support.v4.os.ResultReceiver$MyRunnable +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +com.google.android.material.R$color: int material_grey_900 +okhttp3.internal.cache2.Relay: okio.ByteString PREFIX_CLEAN +androidx.fragment.app.Fragment$SavedState +androidx.preference.R$style: int Base_AlertDialog_AppCompat_Light +com.xw.repo.bubbleseekbar.R$id: int expand_activities_button +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.R$dimen: int fastscroll_minimum_range +okhttp3.internal.http2.Http2Codec: java.util.List HTTP_2_SKIPPED_RESPONSE_HEADERS +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_onClick +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: ObservableConcatWithSingle$ConcatWithObserver(io.reactivex.Observer,io.reactivex.SingleSource) +okio.Buffer: long writeAll(okio.Source) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_13 +cyanogenmod.weather.WeatherInfo$DayForecast: java.lang.String toString() +com.jaredrummler.android.colorpicker.R$attr: int dialogTitle +androidx.preference.R$styleable: int Preference_order +retrofit2.Platform$Android: Platform$Android() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean +androidx.viewpager2.R$id: int chronometer +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelBackground +com.google.android.material.R$styleable: int PropertySet_motionProgress +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_92 +androidx.constraintlayout.widget.R$attr: int lineHeight +android.didikee.donate.R$string: int app_name +androidx.constraintlayout.widget.R$attr: int waveShape +androidx.lifecycle.LifecycleRegistry$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$Event +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Dbz +androidx.appcompat.R$id: int default_activity_button +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean mAskedShow +wangdaye.com.geometricweather.R$id: int spline +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_subMenuArrow +cyanogenmod.power.PerformanceManager +com.google.android.material.R$styleable: int Constraint_android_layout_marginEnd +androidx.appcompat.R$styleable: int AppCompatImageView_tint +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit getInstance(java.lang.String) +android.didikee.donate.R$color: int abc_tint_default +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: boolean IsAlias +androidx.fragment.R$id: int normal +com.google.android.material.R$styleable: int MockView_mock_showLabel +com.jaredrummler.android.colorpicker.R$attr: int orderingFromXml +okhttp3.internal.ws.RealWebSocket: boolean failed +com.google.android.material.R$attr: int progressIndicatorStyle +wangdaye.com.geometricweather.R$style: int subtitle_text +androidx.preference.R$id: int progress_horizontal +okhttp3.internal.http2.Http2Stream$StreamTimeout: Http2Stream$StreamTimeout(okhttp3.internal.http2.Http2Stream) +com.xw.repo.bubbleseekbar.R$style: int Base_DialogWindowTitle_AppCompat +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerClose(boolean,io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver) +james.adaptiveicon.R$attr: int actionBarDivider +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int DUST +androidx.lifecycle.viewmodel.savedstate.R +wangdaye.com.geometricweather.R$string: int tag_wind +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_PopupMenu +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long serialVersionUID +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_creator +com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf +okhttp3.internal.tls.CertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int OTHER_STATE_HAS_VALUE +com.turingtechnologies.materialscrollbar.R$attr: int collapseContentDescription +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +com.google.android.material.R$styleable: int Layout_maxHeight +retrofit2.SkipCallbackExecutorImpl: SkipCallbackExecutorImpl() +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_creator +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: int requestFusion(int) +androidx.viewpager2.R$drawable +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_prompt +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_typeface +com.google.android.material.slider.RangeSlider: void setThumbElevationResource(int) +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean otherDone +cyanogenmod.providers.CMSettings$Secure$1: java.lang.String mDelimiter +com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +retrofit2.adapter.rxjava2.ResultObservable: void subscribeActual(io.reactivex.Observer) +androidx.hilt.lifecycle.R$dimen: int notification_small_icon_background_padding +okhttp3.OkHttpClient: okhttp3.CookieJar cookieJar() +com.turingtechnologies.materialscrollbar.R$styleable: int[] CoordinatorLayout +com.github.rahatarmanahmed.cpv.R$integer: R$integer() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabBarStyle +androidx.appcompat.R$styleable: int GradientColor_android_startColor +androidx.loader.R$dimen: int notification_main_column_padding_top +okhttp3.internal.http2.ErrorCode: ErrorCode(java.lang.String,int,int) +androidx.lifecycle.MediatorLiveData$Source: androidx.lifecycle.LiveData mLiveData +com.google.android.material.R$drawable: int abc_ic_star_black_36dp +androidx.preference.R$style: int Base_Widget_AppCompat_ListView +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) com.jaredrummler.android.colorpicker.R$style: int Platform_AppCompat -wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean hasKey(java.lang.Object) +okhttp3.ConnectionPool: java.net.Socket deduplicate(okhttp3.Address,okhttp3.internal.connection.StreamAllocation) +retrofit2.RequestFactory$Builder: java.util.Set relativeUrlParamNames +james.adaptiveicon.R$styleable: int ActionBar_title +androidx.hilt.R$layout +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +okhttp3.Cache$CacheRequestImpl: void abort() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_Solid +androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context,android.util.AttributeSet,int) +james.adaptiveicon.R$drawable: int abc_ic_menu_cut_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.preference.R$drawable: int abc_seekbar_thumb_material +androidx.constraintlayout.widget.R$attr: int actionBarItemBackground +cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(android.os.Parcel) +androidx.loader.R$drawable: int notification_bg_low_normal +retrofit2.converter.gson.GsonConverterFactory: com.google.gson.Gson gson +androidx.appcompat.R$id: int parentPanel +cyanogenmod.weather.WeatherInfo$Builder: int mWindSpeedUnit +com.google.android.material.bottomnavigation.BottomNavigationView: void setSelectedItemId(int) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_max +cyanogenmod.power.PerformanceManager: int mNumberOfProfiles +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory create() +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +cyanogenmod.weather.WeatherInfo: java.util.List getForecasts() +cyanogenmod.app.ProfileGroup$1: cyanogenmod.app.ProfileGroup[] newArray(int) +io.reactivex.internal.subscriptions.SubscriptionHelper: void request(long) +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: retrofit2.Call $this_await$inlined +wangdaye.com.geometricweather.R$layout: int container_main_sun_moon +com.turingtechnologies.materialscrollbar.R$attr: int checkedChip +androidx.appcompat.R$styleable: int TextAppearance_android_fontFamily +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_weight +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionMode +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintEnd_toEndOf +androidx.work.R$attr: int alpha +androidx.constraintlayout.widget.R$styleable: int SearchView_android_imeOptions +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: double Value +androidx.constraintlayout.widget.R$styleable: int SearchView_defaultQueryHint +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX getWeather() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean() +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus +com.google.android.material.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$attr: int deltaPolarRadius +com.google.gson.internal.LinkedTreeMap: java.lang.Object put(java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog +com.google.android.material.R$attr: int counterOverflowTextColor +cyanogenmod.app.Profile$ProfileTrigger$1: cyanogenmod.app.Profile$ProfileTrigger[] newArray(int) +androidx.appcompat.widget.AppCompatSpinner: void setBackgroundDrawable(android.graphics.drawable.Drawable) +james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedWidthMinor +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: ILiveLockScreenManagerProvider$Stub$Proxy(android.os.IBinder) +androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context,android.util.AttributeSet) +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_behavior +cyanogenmod.app.CustomTile$ExpandedItem$1 +android.didikee.donate.R$styleable: int AppCompatTheme_tooltipForegroundColor +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.R$attr: int key +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Badge +com.bumptech.glide.integration.okhttp.R$attr: int layout_behavior +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_MIN +androidx.appcompat.widget.ButtonBarLayout +com.xw.repo.bubbleseekbar.R$color: int accent_material_dark +com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.util.ColorUtils: float interp(int,float) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircleRadius +com.google.android.material.timepicker.ClockFaceView +androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_toLeftOf +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$color: int mtrl_on_primary_text_btn_text_color_selector +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_defaultQueryHint +com.jaredrummler.android.colorpicker.R$id: int none +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColorHint +com.jaredrummler.android.colorpicker.R$attr: int buttonTint +com.google.android.material.R$styleable: int AlertDialog_showTitle +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String unit +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode THUNDER +wangdaye.com.geometricweather.R$drawable: int ic_chronus +wangdaye.com.geometricweather.db.entities.AlertEntityDao: wangdaye.com.geometricweather.db.entities.AlertEntity readEntity(android.database.Cursor,int) +androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_DropDownUp +okhttp3.internal.cache.DiskLruCache$Editor$1 +wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragScale +androidx.hilt.lifecycle.R$dimen: int notification_subtext_size +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void drain() +androidx.drawerlayout.R$styleable: R$styleable() +com.google.android.material.R$color: int material_slider_thumb_color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure Pressure +androidx.viewpager2.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$attr: int closeIconEndPadding +okio.Buffer: okio.ByteString digest(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: void setValue(java.lang.String) +okio.Buffer: okio.Buffer writeShort(int) +androidx.constraintlayout.widget.R$attr: int autoSizeMinTextSize +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeIndex +androidx.constraintlayout.widget.R$styleable: int View_theme +androidx.appcompat.R$styleable: int CompoundButton_buttonTintMode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: double Value +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +android.didikee.donate.R$layout: int abc_action_bar_title_item +com.turingtechnologies.materialscrollbar.R$attr: int titleMargins +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_position +com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_borderColor +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_KEY +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin +com.google.android.material.R$styleable: int BottomNavigationView_itemTextAppearanceInactive +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void clear() +com.turingtechnologies.materialscrollbar.R$attr: int backgroundSplit +com.google.android.material.R$drawable: int abc_btn_check_to_on_mtrl_015 +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getPressure() +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_3 +com.google.android.material.R$styleable: int MockView_mock_label +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabStyle +cyanogenmod.hardware.DisplayMode: DisplayMode(int,java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +com.google.android.material.slider.RangeSlider: void setThumbElevation(float) +cyanogenmod.app.ProfileGroup: boolean matches(android.app.NotificationGroup,boolean) +com.google.android.material.R$id: int staticLayout +wangdaye.com.geometricweather.R$anim: int abc_fade_in +wangdaye.com.geometricweather.R$attr: int contentInsetEndWithActions +okhttp3.CacheControl: int sMaxAgeSeconds() +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.Lifecycle mLifecycle +wangdaye.com.geometricweather.R$drawable: int abc_list_divider_material +cyanogenmod.app.ProfileManager: cyanogenmod.app.IProfileManager sService +com.google.android.material.card.MaterialCardView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +james.adaptiveicon.R$styleable: int TextAppearance_android_textStyle +com.jaredrummler.android.colorpicker.R$id: int action_image +okhttp3.Connection: okhttp3.Route route() +wangdaye.com.geometricweather.R$attr: int switchTextOn +wangdaye.com.geometricweather.background.receiver.widget.WidgetDayProvider +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tSea +wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_grey +cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(int,cyanogenmod.app.ThemeComponent,java.lang.String,int,int) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int no2 +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_2 +com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar_TextView +cyanogenmod.weather.util.WeatherUtils: WeatherUtils() +wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_day_selection +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial +androidx.appcompat.widget.ActionMenuView: android.graphics.drawable.Drawable getOverflowIcon() +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar +okhttp3.Cache$CacheRequestImpl: okio.Sink body +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context,android.util.AttributeSet) +androidx.appcompat.widget.Toolbar: android.widget.TextView getTitleTextView() +com.google.android.material.slider.BaseSlider: void setThumbElevationResource(int) +androidx.appcompat.R$color: int switch_thumb_disabled_material_dark +okhttp3.Route: java.net.InetSocketAddress inetSocketAddress +com.google.android.material.R$styleable: int MaterialButton_android_insetTop +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void setLiveLockScreenEnabled(boolean) +android.didikee.donate.R$styleable: int SearchView_defaultQueryHint +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +com.google.android.material.R$style: int Base_DialogWindowTitle_AppCompat +okhttp3.internal.http2.Http2Stream: void checkOutNotClosed() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: float getHoursOfSun() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_CBC_SHA +com.google.android.material.button.MaterialButton: int getCornerRadius() +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatElevationResource(int) +androidx.recyclerview.R$attr: int fastScrollHorizontalTrackDrawable +androidx.appcompat.resources.R$id: int title +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void dispose() +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_multiChoiceItemLayout +androidx.lifecycle.LiveData: void removeObserver(androidx.lifecycle.Observer) +androidx.vectordrawable.R$styleable: int FontFamilyFont_fontWeight +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.bumptech.glide.load.engine.GlideException: java.util.List getCauses() +org.greenrobot.greendao.AbstractDao: void updateInTx(java.lang.Iterable) +cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo build() +com.google.android.material.floatingactionbutton.FloatingActionButton: void setImageDrawable(android.graphics.drawable.Drawable) +retrofit2.RequestBuilder: void addFormField(java.lang.String,java.lang.String,boolean) +okio.SegmentPool: long MAX_SIZE +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Choice +com.xw.repo.bubbleseekbar.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitationProbability +wangdaye.com.geometricweather.R$menu: int activity_preview_icon +com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_item_material +com.bumptech.glide.Registry$MissingComponentException +com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomSheetBehavior_Layout +cyanogenmod.providers.CMSettings$System: boolean shouldInterceptSystemProvider(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: int WeatherIcon +com.google.android.material.datepicker.CalendarConstraints +cyanogenmod.providers.CMSettings$Secure: java.lang.String ENABLED_EVENT_LIVE_LOCKS_KEY +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer realFeelShaderTemperature +androidx.hilt.work.R$drawable: int notification_bg +com.google.android.material.R$styleable: int DrawerArrowToggle_arrowShaftLength +okhttp3.internal.http2.Hpack$Reader: int headerCount +wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status ERROR +com.google.android.material.R$id: int expand_activities_button +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Toolbar +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.main.dialogs.HourlyWeatherDialog: HourlyWeatherDialog() +androidx.work.R$drawable: int notification_bg_normal_pressed +com.google.android.material.R$color: int mtrl_textinput_filled_box_default_background_color +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_anim_duration +androidx.vectordrawable.R$id: int accessibility_custom_action_0 +androidx.appcompat.widget.SearchView: int getPreferredHeight() +androidx.constraintlayout.widget.R$attr: int arrowShaftLength +androidx.hilt.R$id: int accessibility_custom_action_18 +com.turingtechnologies.materialscrollbar.R$attr: int msb_barColor +androidx.drawerlayout.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$drawable: int abc_seekbar_track_material +okhttp3.internal.ws.RealWebSocket: long pingIntervalMillis +wangdaye.com.geometricweather.R$attr: int percentY +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRainPrecipitationProbability() +wangdaye.com.geometricweather.R$attr: int actionBarTabBarStyle +com.google.android.material.R$id: int SHOW_PROGRESS +com.google.android.material.R$attr: int customColorValue +okhttp3.internal.ws.RealWebSocket: void onReadPong(okio.ByteString) +okhttp3.OkHttpClient: javax.net.ssl.HostnameVerifier hostnameVerifier() +androidx.constraintlayout.widget.R$anim: int abc_popup_exit +wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_2 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_creator +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom +androidx.constraintlayout.widget.R$id: int shortcut +android.didikee.donate.R$styleable: int AppCompatTheme_spinnerStyle +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: long mRequested +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +james.adaptiveicon.R$drawable: int abc_ic_voice_search_api_material +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_48 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.lang.String Phase +wangdaye.com.geometricweather.R$attr: int fastScrollEnabled +com.google.android.material.R$id: int sawtooth +com.xw.repo.bubbleseekbar.R$style: int Platform_AppCompat +james.adaptiveicon.R$attr: int subMenuArrow +okhttp3.internal.cache.DiskLruCache$Editor +wangdaye.com.geometricweather.R$string: int key_notification_can_be_cleared +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherText(java.lang.String) +androidx.viewpager2.widget.ViewPager2: void setAdapter(androidx.recyclerview.widget.RecyclerView$Adapter) +com.turingtechnologies.materialscrollbar.R$attr: int fontStyle +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Large +wangdaye.com.geometricweather.R$id: int mtrl_picker_header +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_41 +androidx.preference.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.R$layout: int cpv_color_item_circle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_radioButtonStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setNewX(java.lang.String) +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.database.Database getDatabase() +androidx.lifecycle.extensions.R$color: R$color() +wangdaye.com.geometricweather.R$attr: int clickAction +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogCornerRadius +com.jaredrummler.android.colorpicker.R$dimen +androidx.preference.R$layout: int preference_dropdown_material +retrofit2.http.FormUrlEncoded +com.google.android.material.bottomappbar.BottomAppBar: int getBottomInset() +wangdaye.com.geometricweather.settings.fragments.NotificationColorSettingsFragment +wangdaye.com.geometricweather.R$array: int air_quality_unit_values +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter this$0 +okhttp3.internal.http.HttpDate: java.lang.String format(java.util.Date) +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +wangdaye.com.geometricweather.R$attr: int warmth +androidx.appcompat.R$attr: int colorControlNormal +androidx.swiperefreshlayout.R$id: int line1 +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontStyle +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String ALARM_ID +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_2_material +james.adaptiveicon.R$attr: int actionBarSplitStyle +androidx.constraintlayout.widget.R$styleable: int KeyCycle_transitionEasing +com.google.android.material.R$styleable: int TextInputLayout_shapeAppearance +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onComplete() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: double Value +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit MGPCUM +androidx.appcompat.resources.R$id: int notification_main_column_container okio.Buffer: short readShort() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupWindow -android.didikee.donate.R$id: int text2 -androidx.constraintlayout.helper.widget.Flow: void setPaddingBottom(int) -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_verticalDivider -wangdaye.com.geometricweather.R$attr: int actionBarTheme -androidx.appcompat.R$dimen: int abc_action_bar_stacked_tab_max_width -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemBackground -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX) -okhttp3.internal.http.HttpDate -com.google.android.material.slider.Slider: android.content.res.ColorStateList getThumbTintList() -androidx.appcompat.widget.SearchView: int getMaxWidth() -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getDisplayGammaCalibration(int) -androidx.constraintlayout.utils.widget.ImageFilterButton: void setCrossfade(float) -android.didikee.donate.R$color: int abc_search_url_text_pressed -io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.Observer) -cyanogenmod.app.ProfileGroup$Mode -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleMargin +okhttp3.internal.Util: java.lang.AssertionError assertionError(java.lang.String,java.lang.Exception) +androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy valueOf(java.lang.String) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$string: int content_des_delete_flag +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_searchIcon +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_textOn +wangdaye.com.geometricweather.R$drawable: int notif_temp_25 +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver +com.google.gson.stream.JsonScope: int EMPTY_DOCUMENT +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setUnit(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int design_navigation_separator_vertical_padding +wangdaye.com.geometricweather.R$styleable: int LiveLockScreen_settingsActivity +cyanogenmod.weather.WeatherInfo$Builder: double mWindSpeed +com.google.android.material.R$styleable: int NavigationView_elevation +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableRight +android.didikee.donate.R$dimen: int disabled_alpha_material_dark +okhttp3.internal.http2.Header: okio.ByteString TARGET_METHOD +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState +androidx.preference.MultiSelectListPreference$SavedState: android.os.Parcelable$Creator CREATOR +androidx.transition.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context) +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getStrokeColor() +com.google.android.material.R$styleable: int TextInputLayout_helperText +androidx.dynamicanimation.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_icon +wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconTint +wangdaye.com.geometricweather.R$id: int mtrl_motion_snapshot_view +com.google.android.material.R$dimen: int cardview_default_radius +wangdaye.com.geometricweather.R$drawable: int abc_btn_check_to_on_mtrl_000 +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: java.lang.String icon +okhttp3.internal.http2.Http2Connection$6: void execute() +androidx.preference.R$attr: int theme +wangdaye.com.geometricweather.R$id: int collapseActionView +james.adaptiveicon.R$styleable: int SearchView_voiceIcon +wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_toLeftOf +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void dispose() +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_24 +androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_shouldDisableView +androidx.appcompat.R$styleable: int LinearLayoutCompat_showDividers +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemBitmap(android.graphics.Bitmap) +com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.preference.R$drawable: int notification_bg_low +com.google.android.material.R$style: int Animation_AppCompat_DropDownUp +com.google.android.material.R$animator: int design_appbar_state_list_animator +androidx.constraintlayout.widget.R$styleable: int MockView_mock_showDiagonals +okhttp3.TlsVersion: okhttp3.TlsVersion forJavaName(java.lang.String) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context,android.util.AttributeSet) +okhttp3.internal.http.StatusLine: int HTTP_TEMP_REDIRECT +androidx.constraintlayout.widget.R$styleable: int MenuItem_numericModifiers +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_end +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCutDrawable +com.google.android.material.R$styleable: int Toolbar_contentInsetStart +com.google.android.material.R$styleable: int DrawerArrowToggle_arrowHeadLength +io.reactivex.Observable: io.reactivex.Observable debounce(io.reactivex.functions.Function) +io.reactivex.internal.util.NotificationLite$ErrorNotification: long serialVersionUID +wangdaye.com.geometricweather.R$attr: int chipStrokeWidth +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAV_BUTTONS_VALIDATOR +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogLayout +com.google.android.material.R$dimen: int mtrl_card_spacing +android.didikee.donate.R$styleable: int[] ActionMenuItemView +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: java.lang.String DESCRIPTOR +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_item_max_width +io.reactivex.Observable: io.reactivex.Observable repeat() +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.IRequestInfoListener mListener +com.google.android.material.R$dimen: int abc_alert_dialog_button_dimen +com.google.android.material.R$styleable: int[] AppCompatTextView +wangdaye.com.geometricweather.R$layout: int preference_dropdown_material +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type getOwnerType() +com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior: AppBarLayout$ScrollingViewBehavior(android.content.Context,android.util.AttributeSet) +androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUpdateTime(long) +com.xw.repo.bubbleseekbar.R$color: int abc_background_cache_hint_selector_material_light +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontStyle +androidx.activity.R$id: int action_container +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: okhttp3.internal.http2.Http2Codec this$0 +com.google.android.material.R$string: int password_toggle_content_description +androidx.appcompat.R$styleable: int SwitchCompat_showText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX) +com.turingtechnologies.materialscrollbar.R$attr: int actionBarWidgetTheme +okhttp3.internal.http2.Http2Connection$2: int val$streamId +wangdaye.com.geometricweather.R$attr: int trackHeight +androidx.preference.R$styleable: int SeekBarPreference_seekBarIncrement +cyanogenmod.app.Profile +wangdaye.com.geometricweather.R$color: int mtrl_textinput_hovered_box_stroke_color +androidx.preference.R$styleable: int[] ViewBackgroundHelper +wangdaye.com.geometricweather.R$string: int appbar_scrolling_view_behavior +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_font +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_creator +com.google.gson.internal.LinkedTreeMap: java.lang.Object get(java.lang.Object) +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_fontFamily +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain rain +androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandleController create(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle,java.lang.String,android.os.Bundle) +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleTextColor +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: int TRANSACTION_setServiceRequestState +com.google.android.material.R$styleable: int Chip_closeIconTint +com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: java.lang.String getNotificationStyleName(android.content.Context) +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: int requestFusion(int) +wangdaye.com.geometricweather.R$dimen: int design_appbar_elevation +androidx.preference.R$style: int ThemeOverlay_AppCompat_ActionBar +io.reactivex.Observable: io.reactivex.Observable flatMapSingle(io.reactivex.functions.Function,boolean) +james.adaptiveicon.R$styleable: int[] ColorStateListItem +androidx.appcompat.R$attr: int textAppearanceListItemSecondary +androidx.appcompat.R$id: int group_divider +androidx.viewpager.R$styleable: int ColorStateListItem_android_alpha +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light +androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_tintMode +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Date +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onNext(java.lang.Object) +james.adaptiveicon.R$id: int textSpacerNoTitle +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_framePosition +androidx.preference.R$style: int Preference_DropDown_Material +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Title_Inverse +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +com.google.android.material.R$dimen: int abc_action_bar_stacked_max_height +com.google.android.material.slider.Slider: void setEnabled(boolean) +com.google.android.material.R$id: int gone +androidx.vectordrawable.animated.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$string: int key_align_end +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlNormal +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitationDuration() +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_tagView +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float pressure +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_progress +wangdaye.com.geometricweather.R$styleable: int Preference_key +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onNext(java.lang.Object) +okio.Base64: java.lang.String encode(byte[],byte[]) +io.reactivex.internal.queue.SpscArrayQueue: java.util.concurrent.atomic.AtomicLong producerIndex +wangdaye.com.geometricweather.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$styleable: int Preference_order +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_behavior +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context,android.util.AttributeSet) +androidx.viewpager2.R$dimen: int compat_notification_large_icon_max_height +androidx.constraintlayout.widget.R$attr: int brightness +org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType[] values() +com.google.android.material.R$styleable: int ProgressIndicator_indicatorColor +cyanogenmod.app.ProfileGroup: boolean mDefaultGroup +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_overflow_padding_end_material +cyanogenmod.weatherservice.IWeatherProviderService +com.google.android.material.R$drawable: int btn_radio_on_mtrl +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Headline +androidx.appcompat.widget.AppCompatTextView: void setTextFuture(java.util.concurrent.Future) +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.identityscope.IdentityScopeLong identityScopeLong +wangdaye.com.geometricweather.R$id: int activity_widget_config_scrollView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setValue(java.util.List) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog +androidx.customview.R$styleable: int[] FontFamilyFont +androidx.preference.R$attr: int initialExpandedChildrenCount +wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_divider +wangdaye.com.geometricweather.R$drawable: int ic_grass +androidx.dynamicanimation.R$id: int action_divider +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMinWidth +retrofit2.ParameterHandler$HeaderMap: void apply(retrofit2.RequestBuilder,java.util.Map) +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode PARTLY_CLOUDY +com.google.android.material.R$attr: int textAppearanceSmallPopupMenu +james.adaptiveicon.R$styleable: int ActionBar_elevation +com.google.android.material.slider.Slider: void setHaloRadius(int) +androidx.lifecycle.ViewModelProvider$OnRequeryFactory: void onRequery(androidx.lifecycle.ViewModel) +androidx.constraintlayout.widget.R$styleable: int Transition_duration +androidx.constraintlayout.widget.R$dimen: int disabled_alpha_material_dark +com.google.android.material.floatingactionbutton.FloatingActionButton: void show(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) +com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeTopLeft +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_25 +androidx.preference.R$dimen: int abc_text_size_button_material +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void next(java.lang.Object) +wangdaye.com.geometricweather.R$string: int settings_notification_hide_in_lockScreen_on +okhttp3.internal.connection.StreamAllocation: boolean released +androidx.vectordrawable.R$id: int accessibility_custom_action_29 +android.didikee.donate.R$styleable: int AppCompatTheme_windowActionModeOverlay +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String MobileLink +androidx.preference.R$styleable: int[] PreferenceTheme +android.support.v4.os.IResultReceiver$Stub: java.lang.String DESCRIPTOR +androidx.vectordrawable.R$layout: int notification_action +wangdaye.com.geometricweather.R$string: int key_widget_clock_day_horizontal +com.google.android.material.transformation.TransformationChildCard: TransformationChildCard(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$styleable: int SearchView_goIcon +androidx.viewpager2.widget.ViewPager2: int getOrientation() +wangdaye.com.geometricweather.R$id: int baseline +androidx.core.R$id: int accessibility_custom_action_0 +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_visible +androidx.vectordrawable.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float Ozone +wangdaye.com.geometricweather.R$drawable: int shortcuts_snow_foreground +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: IKeyguardExternalViewProvider$Stub() +androidx.lifecycle.reactivestreams.R: R() +wangdaye.com.geometricweather.R$drawable: int mtrl_ic_cancel +androidx.appcompat.widget.ActionMenuView: void setPresenter(androidx.appcompat.widget.ActionMenuPresenter) +com.google.android.material.R$style: int Widget_AppCompat_TextView +com.turingtechnologies.materialscrollbar.R$id +androidx.vectordrawable.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setStatus(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.util.List value +com.google.android.material.R$color: int cardview_shadow_end_color +androidx.swiperefreshlayout.R$attr: int ttcIndex +james.adaptiveicon.R$attr: int titleMargin +wangdaye.com.geometricweather.R$styleable: int CardView_cardMaxElevation +retrofit2.CompletableFutureCallAdapterFactory +androidx.viewpager2.R$id: int icon_group +retrofit2.ParameterHandler$Tag: void apply(retrofit2.RequestBuilder,java.lang.Object) +james.adaptiveicon.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMargins +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onComplete() +okhttp3.internal.cache2.Relay: okio.ByteString metadata() +com.jaredrummler.android.colorpicker.ColorPickerView: void setOnColorChangedListener(com.jaredrummler.android.colorpicker.ColorPickerView$OnColorChangedListener) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_color +com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetLeft +com.google.android.material.R$drawable: int abc_list_selector_background_transition_holo_dark +android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +wangdaye.com.geometricweather.R$drawable: int notif_temp_114 +com.xw.repo.bubbleseekbar.R$color: int abc_hint_foreground_material_dark +wangdaye.com.geometricweather.R$id: int dialog_background_location_container +com.xw.repo.bubbleseekbar.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +androidx.appcompat.R$styleable: int ActionBar_title +cyanogenmod.platform.Manifest$permission: java.lang.String READ_ALARMS +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: long serialVersionUID +androidx.preference.R$layout: int preference +com.google.gson.internal.LazilyParsedNumber: long longValue() +com.google.android.material.R$style: int Platform_MaterialComponents_Light +com.turingtechnologies.materialscrollbar.R$id: int scrollIndicatorDown +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_UnelevatedButton +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String dataUptime +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +james.adaptiveicon.R$styleable: int ActionBar_icon +com.google.android.material.R$style: int Widget_MaterialComponents_ShapeableImageView +wangdaye.com.geometricweather.R$drawable: int ic_launcher_foreground +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int Icon +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_RC4_128_SHA +com.google.android.material.R$color: int mtrl_btn_text_color_disabled +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginTop +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Title +androidx.constraintlayout.widget.R$attr: int windowFixedWidthMajor +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.String icon +com.xw.repo.bubbleseekbar.R$dimen: int hint_pressed_alpha_material_light +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +androidx.coordinatorlayout.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text_color +androidx.activity.R$styleable: int FontFamilyFont_android_fontWeight +com.google.android.material.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModePasteDrawable +com.jaredrummler.android.colorpicker.R$id: int search_badge +androidx.preference.R$style: int Widget_AppCompat_PopupMenu +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Delete +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1 +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_attributeName +wangdaye.com.geometricweather.R$layout: int item_about_translator +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Inverse +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_divider +com.turingtechnologies.materialscrollbar.R$id: int action_text +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onComplete() +com.google.android.material.R$attr: int prefixTextColor +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTint +wangdaye.com.geometricweather.R$styleable: int Constraint_android_elevation +androidx.preference.R$dimen: int tooltip_precise_anchor_extra_offset +com.google.android.material.R$attr: int showTitle +com.google.android.material.R$id: int fade +james.adaptiveicon.R$id: int action_bar_subtitle +androidx.constraintlayout.widget.R$styleable: int MenuView_android_windowAnimationStyle +cyanogenmod.weatherservice.IWeatherProviderServiceClient +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabAnimationMode +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float windSpeed +com.turingtechnologies.materialscrollbar.R$string: int abc_action_menu_overflow_description +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String unitId +com.google.android.material.R$dimen: int mtrl_calendar_day_today_stroke +androidx.appcompat.R$attr: int alertDialogStyle +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdt +androidx.preference.R$attr: int actionModeCutDrawable +cyanogenmod.profiles.AirplaneModeSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +androidx.hilt.lifecycle.R$string: R$string() +com.google.android.material.button.MaterialButton: void setStrokeColorResource(int) +androidx.lifecycle.extensions.R$styleable: int[] ColorStateListItem +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton +okhttp3.internal.http2.ConnectionShutdownException: ConnectionShutdownException() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setStatus(int) +com.google.android.material.chip.ChipGroup: void setOnHierarchyChangeListener(android.view.ViewGroup$OnHierarchyChangeListener) +wangdaye.com.geometricweather.main.fragments.ManagementFragment: ManagementFragment() +androidx.preference.R$attr: int homeAsUpIndicator +com.turingtechnologies.materialscrollbar.R$id: int expand_activities_button +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void dispose() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_visibility +okio.Buffer: boolean equals(java.lang.Object) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 +com.google.android.material.R$drawable: int abc_text_select_handle_left_mtrl_dark +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_19 +com.google.android.material.R$styleable: int Chip_checkedIconTint +cyanogenmod.os.Build: java.lang.String getString(java.lang.String) +okhttp3.MultipartBody: java.util.List parts +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontVariationSettings +james.adaptiveicon.R$drawable: int abc_ic_star_black_36dp +io.reactivex.exceptions.ProtocolViolationException: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_expanded +wangdaye.com.geometricweather.R$attr: int layoutDuringTransition +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Daylight +androidx.appcompat.R$attr: int showDividers +androidx.constraintlayout.widget.R$styleable: int Transition_staggered +androidx.dynamicanimation.R$dimen +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date setDate +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_CBC_SHA +androidx.lifecycle.extensions.R$color: int ripple_material_light +androidx.appcompat.R$attr: int paddingStart +com.jaredrummler.android.colorpicker.R$attr: int itemPadding +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_large_material +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_arrowShaftLength +okio.ByteString: okio.ByteString hmacSha512(okio.ByteString) +okio.RealBufferedSink$1: java.lang.String toString() +cyanogenmod.providers.CMSettings$Secure: android.net.Uri getUriFor(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Widget_Compat_NotificationActionText +androidx.viewpager.widget.ViewPager: void addOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean active +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Bridge +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setLocationKey(java.lang.String) +androidx.preference.R$styleable: int AppCompatTheme_popupMenuStyle +com.jaredrummler.android.colorpicker.R$layout: int preference_category_material +com.xw.repo.bubbleseekbar.R$id: int search_button +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMark +androidx.fragment.R$styleable: int ColorStateListItem_android_color +androidx.vectordrawable.R$attr: int fontProviderPackage +androidx.fragment.R$id: int accessibility_custom_action_15 +android.didikee.donate.R$attr: int queryHint +androidx.vectordrawable.animated.R$attr: int font +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String MINUTES +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_6 +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_TextInputLayout +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_elevation +wangdaye.com.geometricweather.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.R$id: int item_weather_daily_air_progress +com.google.android.material.R$dimen: int mtrl_bottomappbar_height +androidx.preference.R$interpolator: R$interpolator() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +androidx.fragment.R$drawable: int notification_tile_bg +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +okhttp3.ConnectionPool: int idleConnectionCount() +wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_height_major +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeFindDrawable +okhttp3.internal.http2.PushObserver: okhttp3.internal.http2.PushObserver CANCEL +com.google.android.material.R$styleable: int AppCompatSeekBar_tickMarkTint +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit) +com.turingtechnologies.materialscrollbar.R$id: int touch_outside +androidx.appcompat.R$color: int switch_thumb_material_dark +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber this$1 +wangdaye.com.geometricweather.R$integer: int cpv_default_progress +james.adaptiveicon.R$styleable: int SwitchCompat_thumbTextPadding +wangdaye.com.geometricweather.db.entities.WeatherEntity: WeatherEntity() +okhttp3.internal.http2.Http2Connection: void setSettings(okhttp3.internal.http2.Settings) +androidx.appcompat.widget.SwitchCompat: void setThumbDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$attr: int boxCornerRadiusBottomStart +wangdaye.com.geometricweather.R$attr: int contentDescription +androidx.constraintlayout.widget.R$attr: int chainUseRtl +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_text +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric Metric +wangdaye.com.geometricweather.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +androidx.appcompat.R$styleable: int FontFamilyFont_android_font +com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_minimum_range +wangdaye.com.geometricweather.R$id: int row_index_key +androidx.hilt.work.R$id +androidx.preference.R$attr: int itemPadding +com.turingtechnologies.materialscrollbar.R$id: int action_menu_presenter +retrofit2.OptionalConverterFactory +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig alertEntityDaoConfig +retrofit2.RequestBuilder: void addTag(java.lang.Class,java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_130 +james.adaptiveicon.R$color: int material_grey_850 +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_fontFamily +cyanogenmod.themes.ThemeManager: void onClientResumed(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +androidx.fragment.app.DialogFragment: DialogFragment() +com.google.android.material.textfield.TextInputLayout: com.google.android.material.textfield.EndIconDelegate getEndIconDelegate() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +com.google.android.material.R$drawable: int notification_action_background +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_focused_holo +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int subTextColorResId +okhttp3.internal.proxy.NullProxySelector: java.util.List select(java.net.URI) +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent BOOT_ANIM +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long index +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Borderless_Colored +com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrim(android.graphics.drawable.Drawable) +com.google.android.material.R$styleable: int TextInputLayout_hintEnabled +androidx.appcompat.widget.AppCompatButton +androidx.core.app.JobIntentService: JobIntentService() +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit MPH +wangdaye.com.geometricweather.db.entities.DailyEntity: void setWeatherSource(java.lang.String) +androidx.activity.R$attr: int fontStyle +androidx.constraintlayout.widget.R$styleable: int[] DrawerArrowToggle +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void dispose() +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property CityId +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline6 +com.xw.repo.bubbleseekbar.R$attr: int actionViewClass +com.google.android.material.R$styleable: int Chip_android_textSize +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_stacked_tab_max_width +io.reactivex.Observable: io.reactivex.Observable onErrorReturn(io.reactivex.functions.Function) +com.google.android.material.button.MaterialButtonToggleGroup: int getLastVisibleChildIndex() +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_inverse +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_android_thumb +wangdaye.com.geometricweather.R$animator: int weather_rain_3 +android.didikee.donate.R$color: int material_deep_teal_500 +cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mOnLongClick +androidx.lifecycle.AbstractSavedStateViewModelFactory: android.os.Bundle mDefaultArgs +com.google.android.material.R$attr: int customFloatValue +android.didikee.donate.R$style: int AlertDialog_AppCompat_Light +okhttp3.internal.http2.Settings: int getMaxFrameSize(int) +wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_borderColor +okio.BufferedSource: int readInt() +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: java.lang.Object item +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_black +androidx.cardview.R$dimen +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification +com.google.android.material.R$dimen: int mtrl_chip_text_size +okhttp3.internal.cache2.Relay: okhttp3.internal.cache2.Relay edit(java.io.File,okio.Source,okio.ByteString,long) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitationProbability() +okhttp3.internal.http2.Http2Connection$6: okio.Buffer val$buffer +com.google.android.material.R$id: int search_bar +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabTextStyle +com.jaredrummler.android.colorpicker.R$attr: int dividerVertical +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +io.reactivex.Observable: io.reactivex.Single any(io.reactivex.functions.Predicate) +wangdaye.com.geometricweather.R$drawable: int notif_temp_4 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setStatus(int) +androidx.hilt.work.R$id: int action_container +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low_normal +androidx.appcompat.R$attr: int actionMenuTextAppearance +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListMenuView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getHeadIconType() +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.util.AtomicThrowable errors +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_horizontal_padding +com.google.android.material.R$style: int TestStyleWithThemeLineHeightAttribute +com.google.android.material.R$dimen: int abc_control_padding_material +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy +okio.ForwardingSink: ForwardingSink(okio.Sink) +retrofit2.CallAdapter$Factory +android.didikee.donate.R$styleable: int[] ActivityChooserView +androidx.constraintlayout.widget.R$attr: int buttonTint +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_43 +androidx.preference.R$layout: int abc_alert_dialog_material +com.google.android.material.R$dimen: int mtrl_card_checked_icon_size +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_android_foreground +com.xw.repo.bubbleseekbar.R$string: int abc_search_hint +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_month_abbr +okhttp3.Cookie$Builder: boolean secure +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator +com.turingtechnologies.materialscrollbar.R$color: int foreground_material_light +okhttp3.internal.http2.Http2Reader: void readHeaders(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int PrecipitationProbability +androidx.preference.R$styleable: int PreferenceImageView_android_maxHeight +com.jaredrummler.android.colorpicker.R$drawable: int notification_template_icon_bg +okhttp3.internal.io.FileSystem$1: FileSystem$1() +androidx.drawerlayout.R$id: int tag_transition_group +com.google.gson.stream.JsonReader: int PEEKED_END_OBJECT +wangdaye.com.geometricweather.R$font: int product_sans_light_italic +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.preference.R$id: int tag_transition_group +com.google.android.material.chip.Chip: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +okhttp3.Credentials: java.lang.String basic(java.lang.String,java.lang.String,java.nio.charset.Charset) +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +androidx.appcompat.R$layout: int abc_action_mode_bar +com.google.android.material.internal.StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException +cyanogenmod.weather.WeatherInfo: boolean isValidWeatherCode(int) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicator +com.github.rahatarmanahmed.cpv.R$attr: int cpv_color +androidx.vectordrawable.R$styleable: int GradientColorItem_android_color +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() +com.google.android.material.R$styleable: int Toolbar_titleMargin +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_title +com.bumptech.glide.integration.okhttp.R$attr: int fontStyle +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month_navigation +com.google.android.material.R$dimen: int mtrl_navigation_item_icon_padding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String en_US +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.disposables.Disposable upstream +androidx.preference.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_subMenuArrow +wangdaye.com.geometricweather.R$attr: int isPreferenceVisible +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: Http2Connection$ReaderRunnable$2(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[],boolean,okhttp3.internal.http2.Settings) +io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent INSTANCE +androidx.constraintlayout.widget.R$attr: int visibilityMode +com.google.android.material.R$style: int Base_Widget_AppCompat_ImageButton +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: AccuCurrentResult$Pressure$Imperial() +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: void complete() +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver +com.google.android.material.R$attr: int closeItemLayout +androidx.preference.R$drawable: int abc_btn_check_to_on_mtrl_015 +com.xw.repo.bubbleseekbar.R$attr: int actionProviderClass +androidx.constraintlayout.widget.R$color: int abc_tint_seek_thumb +androidx.viewpager.R$id: int info +james.adaptiveicon.R$id: int src_in +wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendHourlyProvider +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_measureWithLargestChild +wangdaye.com.geometricweather.R$animator: int design_appbar_state_list_animator +cyanogenmod.hardware.CMHardwareManager: int readPersistentInt(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int material_clock_face_margin_top +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA +androidx.drawerlayout.R$drawable: int notification_bg +android.didikee.donate.R$style: int TextAppearance_AppCompat_Large_Inverse +org.greenrobot.greendao.AbstractDao: void deleteByKey(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintEnd_toEndOf +androidx.constraintlayout.widget.R$bool +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit +wangdaye.com.geometricweather.db.entities.AlertEntity: java.util.Date date +com.bumptech.glide.integration.okhttp.R$integer: R$integer() +com.google.android.material.R$attr: int keylines +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean cancelled +androidx.preference.R$attr: int tint +james.adaptiveicon.R$drawable: int abc_textfield_search_activated_mtrl_alpha +cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String mPackage +androidx.vectordrawable.R$id: int accessibility_custom_action_3 +com.google.android.material.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$attr: int checked_background_color +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_toBottomOf +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerId +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_26 +androidx.appcompat.widget.AppCompatRadioButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getUvLevel() +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_chip_state_list_anim +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchMinWidth +com.jaredrummler.android.colorpicker.R$layout: int notification_template_custom_big +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +androidx.work.R$id: int async +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.Number) +com.google.android.material.chip.Chip: void setRippleColor(android.content.res.ColorStateList) +androidx.viewpager2.R$drawable: R$drawable() +android.didikee.donate.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +com.github.rahatarmanahmed.cpv.CircularProgressView$2: CircularProgressView$2(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +com.google.android.material.snackbar.SnackbarContentLayout: SnackbarContentLayout(android.content.Context) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_26 +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +retrofit2.converter.gson.GsonResponseBodyConverter +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.functions.Function mapper +cyanogenmod.app.Profile$Type: Profile$Type() +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: float unitFactor +com.google.android.material.R$styleable: int KeyAttribute_transitionEasing +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_128_GCM_SHA256 +okhttp3.Cache: int networkCount() +wangdaye.com.geometricweather.R$attr: int paddingBottomSystemWindowInsets +wangdaye.com.geometricweather.R$id: int mtrl_internal_children_alpha_tag +okhttp3.Cookie: boolean httpOnly +androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontWeight +androidx.activity.R$id: int action_text +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +com.jaredrummler.android.colorpicker.R$style: int Base_DialogWindowTitle_AppCompat +androidx.coordinatorlayout.R$id: int chronometer +androidx.preference.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_android_layout +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: Temperature(int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) +okhttp3.internal.ws.RealWebSocket: void checkResponse(okhttp3.Response) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Long getId() +james.adaptiveicon.R$styleable: int AlertDialog_listLayout +androidx.loader.R$attr: int fontWeight +com.turingtechnologies.materialscrollbar.R$attr: int submitBackground +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitationProbability() +androidx.preference.R$attr: int titleMarginEnd +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +wangdaye.com.geometricweather.R$id: int dialog_background_location_title +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarPopupTheme +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: wangdaye.com.geometricweather.db.entities.HistoryEntity readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setDatetime(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getUnitId() +com.google.android.material.R$style: int Widget_AppCompat_ActionButton_CloseMode +okhttp3.internal.Util: byte[] EMPTY_BYTE_ARRAY +androidx.customview.R$string: R$string() +com.google.android.material.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +androidx.vectordrawable.R$id: int async +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixTextAppearance +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: long serialVersionUID +android.didikee.donate.R$layout: int abc_search_dropdown_item_icons_2line +okhttp3.Cookie: boolean pathMatch(okhttp3.HttpUrl,java.lang.String) +androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$string: int material_hour_selection +androidx.constraintlayout.utils.widget.ImageFilterButton: void setRound(float) +com.google.android.material.R$styleable: int Chip_chipBackgroundColor +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.util.concurrent.locks.Lock lock +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: ObservableTakeUntil$TakeUntilMainObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver) +okio.HashingSink: okio.HashingSink hmacSha1(okio.Sink,okio.ByteString) +cyanogenmod.app.PartnerInterface: boolean setZenModeWithDuration(int,long) +androidx.appcompat.widget.ViewStubCompat: void setLayoutInflater(android.view.LayoutInflater) +cyanogenmod.app.ThemeVersion$ComponentVersion: int minVersion +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_initialExpandedChildrenCount +androidx.preference.R$attr: int fastScrollHorizontalTrackDrawable +com.turingtechnologies.materialscrollbar.R$id: int lastElement +wangdaye.com.geometricweather.R$string: int wechat +james.adaptiveicon.R$style: int Widget_AppCompat_Button_Colored +androidx.appcompat.view.menu.MenuPopupHelper: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getBackgroundTintList() +androidx.appcompat.resources.R$style: int Widget_Compat_NotificationActionText +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +wangdaye.com.geometricweather.common.basic.models.weather.Weather: Weather(wangdaye.com.geometricweather.common.basic.models.weather.Base,wangdaye.com.geometricweather.common.basic.models.weather.Current,wangdaye.com.geometricweather.common.basic.models.weather.History,java.util.List,java.util.List,java.util.List,java.util.List) +androidx.preference.R$styleable: int[] AlertDialog +james.adaptiveicon.R$styleable: int View_theme +com.google.android.material.chip.ChipGroup: void setSingleSelection(boolean) +wangdaye.com.geometricweather.R$attr: int onCross +com.google.android.material.textfield.TextInputLayout: void setExpandedHintEnabled(boolean) +com.turingtechnologies.materialscrollbar.R$id: int scrollable +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_material +androidx.appcompat.R$styleable: int SwitchCompat_switchMinWidth +wangdaye.com.geometricweather.R$color: int colorLevel_5 +wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_1_3_padding_top +androidx.transition.R$style: int TextAppearance_Compat_Notification +android.didikee.donate.R$attr: int panelBackground +wangdaye.com.geometricweather.R$xml: int icon_provider_sun_moon_filter +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius +wangdaye.com.geometricweather.R$attr: int tabContentStart +com.turingtechnologies.materialscrollbar.R$string: int path_password_eye_mask_visible +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon +androidx.viewpager.R$styleable: int GradientColor_android_gradientRadius +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +okhttp3.internal.http2.Settings: int HEADER_TABLE_SIZE +com.google.android.material.R$styleable: int Layout_layout_constraintVertical_weight +cyanogenmod.providers.CMSettings$Secure +com.google.android.material.R$styleable: int SearchView_goIcon +retrofit2.ParameterHandler$Field: boolean encoded +com.google.android.material.slider.RangeSlider: void setMinSeparationValue(float) +androidx.viewpager2.R$drawable: int notification_bg_low_pressed +androidx.constraintlayout.widget.R$styleable: int Constraint_barrierDirection +wangdaye.com.geometricweather.R$styleable: int[] Chip +androidx.swiperefreshlayout.R$attr: int fontVariationSettings +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +androidx.work.R$dimen: int notification_main_column_padding_top +com.jaredrummler.android.colorpicker.R$styleable: int ActivityChooserView_initialActivityCount +androidx.work.R$styleable: int FontFamily_fontProviderQuery +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_content_inset_material +cyanogenmod.app.ICMTelephonyManager: java.util.List getSubInformation() +wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_orientation +com.turingtechnologies.materialscrollbar.R$attr: int toolbarNavigationButtonStyle +androidx.constraintlayout.widget.R$attr: int onPositiveCross +com.google.android.material.R$styleable: int TextInputLayout_hintTextColor +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: int status +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner +androidx.preference.R$styleable: int LinearLayoutCompat_android_orientation +okhttp3.Cookie: java.util.regex.Pattern TIME_PATTERN +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_activityChooserViewStyle +wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_alphaChannelVisible +com.bumptech.glide.integration.okhttp.R$id: int icon_group +cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener: void onWeatherServiceProviderChanged(java.lang.String) +okio.Buffer: okio.Buffer readFrom(java.io.InputStream,long) +wangdaye.com.geometricweather.R$attr: int errorIconDrawable +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object readKey(android.database.Cursor,int) +okhttp3.internal.http.RealInterceptorChain: okhttp3.Request request() +james.adaptiveicon.R$styleable: int ColorStateListItem_android_color +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorAccent +cyanogenmod.app.ThemeVersion$ComponentVersion: int getId() +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_itemPadding +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language DUTCH +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean cancelled +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_125 +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int BLOWING_SNOW +android.didikee.donate.R$color: int abc_tint_switch_track +androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableItem +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +okhttp3.OkHttpClient: okhttp3.Authenticator proxyAuthenticator +com.xw.repo.bubbleseekbar.R$styleable: int[] AlertDialog +androidx.hilt.work.R$id: int visible_removing_fragment_view_tag +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setContentDescription(int) +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onNegativeCross +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_xml +com.google.android.material.snackbar.BaseTransientBottomBar$Behavior: BaseTransientBottomBar$Behavior() +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float ceiling +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Time +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_interval +wangdaye.com.geometricweather.R$string: int wind_5 +cyanogenmod.app.ThemeVersion$ComponentVersion: int currentVersion +cyanogenmod.profiles.ConnectionSettings: boolean isDirty() +okhttp3.Challenge: java.lang.String scheme() +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource getInstance(java.lang.String) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.ObservableSource source +org.greenrobot.greendao.AbstractDao: void deleteInTx(java.lang.Iterable) +james.adaptiveicon.R$color: int abc_secondary_text_material_dark +com.google.android.material.R$attr: int bottomSheetStyle +androidx.vectordrawable.R$id: int action_divider +com.google.android.material.slider.RangeSlider: void setThumbStrokeColor(android.content.res.ColorStateList) +cyanogenmod.app.Profile$TriggerType: int BLUETOOTH +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontVariationSettings +com.google.android.material.R$style: int Base_V26_Theme_AppCompat +com.google.android.material.R$id: int unchecked +androidx.preference.R$styleable: int TextAppearance_android_shadowDy +okhttp3.MultipartBody: okhttp3.MediaType MIXED +com.jaredrummler.android.colorpicker.R$color: int material_deep_teal_500 +wangdaye.com.geometricweather.R$attr: int bsb_thumb_text_size +androidx.customview.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$drawable: int notif_temp_132 +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object call() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +wangdaye.com.geometricweather.R$id: int dialog_resident_location_container +androidx.vectordrawable.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_label_padding +wangdaye.com.geometricweather.R$attr: int backgroundInsetEnd +com.google.android.material.R$dimen: int abc_dialog_fixed_width_major +android.didikee.donate.R$styleable: int ActionBar_contentInsetEndWithActions +androidx.appcompat.R$color: int bright_foreground_disabled_material_light +okio.Buffer: okio.BufferedSink emit() +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceScreenStyle +androidx.constraintlayout.widget.R$attr: int drawableRightCompat +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_0 +io.reactivex.Observable: io.reactivex.Observable interval(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.xw.repo.bubbleseekbar.R$style: int Base_V22_Theme_AppCompat_Light +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display1 +androidx.constraintlayout.widget.R$attr: int searchViewStyle +wangdaye.com.geometricweather.R$styleable: int[] ShapeAppearance +androidx.preference.R$styleable: int Preference_defaultValue +wangdaye.com.geometricweather.R$string: int settings_title_exchange_day_night_temp_switch +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: RxJava2CallAdapterFactory(io.reactivex.Scheduler,boolean) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao +wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +androidx.appcompat.widget.AppCompatSpinner +androidx.viewpager2.R$integer: int status_bar_notification_info_maxnum +com.turingtechnologies.materialscrollbar.CustomIndicator: int getIndicatorHeight() +android.didikee.donate.R$dimen: int abc_text_size_title_material_toolbar +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEVICE_HOSTNAME +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean isEmpty() +androidx.loader.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginLeft +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: void dispose() +androidx.activity.R$styleable: int FontFamilyFont_android_ttcIndex +cyanogenmod.alarmclock.ClockContract$CitiesColumns +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_ActionBar +okhttp3.internal.http2.PushObserver$1: boolean onData(int,okio.BufferedSource,int,boolean) wangdaye.com.geometricweather.R$string: int week_7 -wangdaye.com.geometricweather.R$attr: int minWidth -androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context,android.util.AttributeSet) -androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context) -androidx.preference.R$color: int abc_color_highlight_material -com.google.android.material.slider.Slider: Slider(android.content.Context,android.util.AttributeSet) -com.google.android.material.imageview.ShapeableImageView: android.content.res.ColorStateList getStrokeColor() -androidx.lifecycle.ProcessLifecycleOwnerInitializer: boolean onCreate() -androidx.preference.R$attr: int titleTextStyle -com.google.android.material.bottomsheet.BottomSheetBehavior: BottomSheetBehavior() -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onNext(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_right_mtrl_dark -androidx.swiperefreshlayout.R$id: int italic -com.bumptech.glide.integration.okhttp.R$dimen: int notification_top_pad_large_text -james.adaptiveicon.R$styleable: int Toolbar_titleMargins -com.turingtechnologies.materialscrollbar.R$attr: int behavior_hideable -androidx.preference.R$drawable: int notification_tile_bg -com.google.android.material.R$attr: int navigationIcon -wangdaye.com.geometricweather.R$attr: int coordinatorLayoutStyle -com.bumptech.glide.integration.okhttp.R$attr: R$attr() -androidx.legacy.coreutils.R$dimen: int notification_large_icon_width -okhttp3.internal.http2.Http2Stream$FramingSource: boolean closed -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarWidgetTheme -com.xw.repo.bubbleseekbar.R$id: int search_close_btn -android.didikee.donate.R$color: int background_material_light -androidx.lifecycle.ViewModelStore: ViewModelStore() -androidx.hilt.R$id: R$id() -okhttp3.internal.http2.Http2Connection$4: okhttp3.internal.http2.Http2Connection this$0 -wangdaye.com.geometricweather.R$id: int dragUp -okio.ByteString: void writeObject(java.io.ObjectOutputStream) -com.google.android.material.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_dark -com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$styleable: int Layout_constraint_referenced_ids -cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$Validator PROTECTED_COMPONENTS_MANAGER_VALIDATOR -androidx.preference.R$attr: int defaultValue -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_focused_z -com.google.android.material.R$styleable: int Layout_android_orientation -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline1 -com.xw.repo.bubbleseekbar.R$attr: int backgroundTintMode -com.bumptech.glide.integration.okhttp.R$styleable: int[] GradientColorItem -com.turingtechnologies.materialscrollbar.R$attr: int tabStyle -com.google.android.material.R$attr: int layout_constraintRight_toRightOf -com.turingtechnologies.materialscrollbar.R$attr: int titleMarginStart -android.didikee.donate.R$styleable: int LinearLayoutCompat_measureWithLargestChild -com.google.android.material.R$styleable: int PopupWindow_overlapAnchor -wangdaye.com.geometricweather.R$id: int item_aqi_content -wangdaye.com.geometricweather.R$layout: int item_weather_daily_overview -wangdaye.com.geometricweather.R$attr: int chipStrokeWidth -androidx.hilt.lifecycle.R$id: int dialog_button -okhttp3.internal.http2.Http2Connection$4: void execute() -androidx.preference.R$layout: int preference_recyclerview -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_long_text_horizontal_padding -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setId(java.lang.Long) +wangdaye.com.geometricweather.R$layout: int preference_material +androidx.constraintlayout.widget.R$attr: int moveWhenScrollAtTop +cyanogenmod.app.Profile$NotificationLightMode: int DISABLE +okhttp3.CertificatePinner: okhttp3.CertificatePinner DEFAULT +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lat +wangdaye.com.geometricweather.R$string: int key_exchange_day_night_temp_switch +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Large +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_fitsSystemWindows +james.adaptiveicon.R$dimen: int abc_text_size_display_3_material +com.bumptech.glide.R$styleable: int[] CoordinatorLayout_Layout +wangdaye.com.geometricweather.R$attr: int iconEndPadding +androidx.lifecycle.Lifecycling: int REFLECTIVE_CALLBACK +androidx.preference.R$dimen: int abc_dialog_fixed_width_minor +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: int unitArrayIndex +android.didikee.donate.R$styleable: int AppCompatTheme_borderlessButtonStyle +android.didikee.donate.R$style: int Base_AlertDialog_AppCompat_Light +androidx.preference.R$layout: int preference_category_material +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display2 +android.didikee.donate.R$styleable: int ColorStateListItem_alpha +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_arrow_drop_right_black_24dp +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getStrokeColorStateList() +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_borderWidth +androidx.activity.R$integer: int status_bar_notification_info_maxnum +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Counter_Overflow +okhttp3.internal.http1.Http1Codec: okio.Sink newFixedLengthSink(long) +android.didikee.donate.R$attr: int buttonTint +okio.AsyncTimeout: okio.Source source(okio.Source) +james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton_CloseMode +com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_filled_box_default_background_color +com.google.android.material.R$attr: int endIconDrawable +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.Disposable upstream +okhttp3.logging.LoggingEventListener: void secureConnectEnd(okhttp3.Call,okhttp3.Handshake) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +okhttp3.Cookie$Builder: boolean hostOnly +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String STATUSBAR_URI +james.adaptiveicon.R$attr: int windowActionModeOverlay +com.jaredrummler.android.colorpicker.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +wangdaye.com.geometricweather.R$dimen: int abc_text_size_menu_material +androidx.appcompat.R$attr: int colorSwitchThumbNormal +com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$dimen: int abc_dialog_min_width_minor +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: double Latitude +com.google.android.material.bottomnavigation.BottomNavigationView: void setOnNavigationItemSelectedListener(com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemSelectedListener) +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void run() +com.xw.repo.bubbleseekbar.R$attr: int arrowShaftLength +james.adaptiveicon.R$dimen: int tooltip_corner_radius +androidx.preference.R$drawable: int abc_ic_star_half_black_16dp +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast +james.adaptiveicon.R$attr: int dividerVertical +androidx.appcompat.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +androidx.preference.R$string: int abc_searchview_description_clear +androidx.appcompat.R$attr: int theme +wangdaye.com.geometricweather.R$id: int bottom +wangdaye.com.geometricweather.R$interpolator: int fast_out_slow_in +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_layout +okhttp3.Handshake: okhttp3.CipherSuite cipherSuite +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWeatherPhase() +com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_icon +android.didikee.donate.R$drawable: int notification_template_icon_low_bg +io.reactivex.Observable: io.reactivex.Observable combineLatest(java.lang.Iterable,io.reactivex.functions.Function,int) +okhttp3.internal.ws.WebSocketProtocol +com.google.android.material.R$attr: int dividerPadding +androidx.fragment.R$id: int accessibility_custom_action_28 +com.xw.repo.bubbleseekbar.R$dimen: int notification_action_icon_size +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String HOUR +androidx.hilt.work.R$id: int accessibility_custom_action_14 +james.adaptiveicon.R$color: int dim_foreground_disabled_material_dark +wangdaye.com.geometricweather.R$layout: int notification_template_part_time +james.adaptiveicon.R$color: int abc_tint_default +cyanogenmod.app.ICMStatusBarManager$Stub: android.os.IBinder asBinder() +androidx.constraintlayout.widget.R$color: int abc_decor_view_status_guard_light +com.xw.repo.bubbleseekbar.R$dimen: int abc_switch_padding +android.didikee.donate.R$id: int home +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +com.google.android.material.R$styleable: int ConstraintSet_android_minHeight +okhttp3.HttpUrl: java.lang.String QUERY_ENCODE_SET +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf +com.jaredrummler.android.colorpicker.R$color: int abc_background_cache_hint_selector_material_dark +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property O3 +androidx.appcompat.R$color: int switch_thumb_disabled_material_light +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +com.google.android.material.R$dimen: int mtrl_textinput_start_icon_margin_end +androidx.lifecycle.extensions.R$id: int normal +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed +okhttp3.internal.connection.RouteSelector: java.net.Proxy nextProxy() +cyanogenmod.power.PerformanceManager: int getPowerProfile() +androidx.hilt.lifecycle.R$id: int time +androidx.preference.R$styleable: int DialogPreference_android_dialogMessage +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) +okhttp3.internal.platform.OptionalMethod: java.lang.reflect.Method getMethod(java.lang.Class) +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline6 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: java.lang.String Unit +com.google.android.material.R$drawable: R$drawable() +okhttp3.internal.http2.Http2Connection$Listener: void onSettings(okhttp3.internal.http2.Http2Connection) +com.xw.repo.bubbleseekbar.R$style: R$style() +cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.AppSuggestManager sInstance +android.didikee.donate.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.R$animator: int mtrl_card_state_list_anim +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_text_size +android.didikee.donate.R$styleable: int Toolbar_contentInsetStartWithNavigation +com.turingtechnologies.materialscrollbar.Handle +com.google.android.material.imageview.ShapeableImageView +androidx.constraintlayout.widget.R$attr: int listPreferredItemHeight +androidx.transition.R$styleable: int ColorStateListItem_android_color +android.didikee.donate.R$style: int Theme_AppCompat +androidx.core.R$id: int accessibility_custom_action_7 +androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$attr: int growMode +cyanogenmod.providers.CMSettings$System: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +com.google.android.material.R$xml: int standalone_badge +androidx.constraintlayout.widget.R$attr: int onNegativeCross +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Time +com.google.android.material.R$attr: int contentInsetEnd +androidx.fragment.R$anim: R$anim() +io.reactivex.internal.util.NotificationLite$ErrorNotification: java.lang.Throwable e +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String time +com.google.android.material.R$styleable: int ActionMode_closeItemLayout +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: io.reactivex.Observer observer +com.google.android.material.R$styleable: int Chip_closeIconEndPadding +com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context) +okio.ByteString: int indexOf(okio.ByteString) +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_height +wangdaye.com.geometricweather.R$attr: int allowDividerAbove +com.bumptech.glide.integration.okhttp.R$drawable: int notification_icon_background +okio.RealBufferedSource$1: void close() +androidx.preference.R$id: int group_divider +com.google.android.material.R$styleable: int AppCompatTheme_selectableItemBackground +wangdaye.com.geometricweather.R$drawable: int notif_temp_59 +wangdaye.com.geometricweather.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float ice +wangdaye.com.geometricweather.R$attr: int layout_constraintEnd_toStartOf +wangdaye.com.geometricweather.R$id: int cpv_color_panel_new +androidx.lifecycle.Lifecycling: java.util.Map sClassToAdapters +androidx.core.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.constraintlayout.widget.R$drawable: int notification_bg_normal +androidx.preference.R$style: int Widget_AppCompat_CompoundButton_RadioButton +androidx.preference.R$style: int Widget_AppCompat_ListMenuView +com.google.android.material.chip.Chip: com.google.android.material.animation.MotionSpec getHideMotionSpec() +wangdaye.com.geometricweather.R$id: int accessibility_action_clickable_span +com.turingtechnologies.materialscrollbar.R$dimen: int abc_alert_dialog_button_dimen +james.adaptiveicon.R$id: int submenuarrow +androidx.constraintlayout.widget.R$styleable: int RecycleListView_paddingTopNoTitle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: int getStatus() +com.google.android.material.R$styleable: int ColorStateListItem_alpha +androidx.constraintlayout.widget.R$styleable: int StateSet_defaultState +androidx.lifecycle.LiveData$LifecycleBoundObserver: androidx.lifecycle.LifecycleOwner mOwner +io.reactivex.internal.subscriptions.DeferredScalarSubscription: java.lang.Object poll() +com.bumptech.glide.integration.okhttp.R$color: R$color() +okhttp3.internal.http.RequestLine +android.didikee.donate.R$id: int icon +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_Switch +okio.ByteString: okio.ByteString sha1() +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarTitle +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: io.reactivex.disposables.Disposable upstream +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_creator +cyanogenmod.content.Intent: java.lang.String EXTRA_PROTECTED_COMPONENTS +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_strokeWidth +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_color +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_27 +androidx.core.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.R$dimen: int material_cursor_width +com.google.android.material.chip.Chip: void setChipMinHeight(float) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle +wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_collapsible +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$KeySet keySet +com.google.android.material.R$attr: int telltales_tailScale +com.google.android.material.R$id: int image com.google.android.material.R$styleable: int Layout_android_layout_marginRight -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_sym_shortcut_label -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String cityId +androidx.constraintlayout.widget.R$id: int SHOW_PATH +okhttp3.internal.connection.RouteDatabase +androidx.preference.R$styleable: int Preference_android_dependency +io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.MaybeObserver) +cyanogenmod.app.CMTelephonyManager: void setDataConnectionState(boolean) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCountry() +androidx.swiperefreshlayout.R$attr: R$attr() +cyanogenmod.app.CustomTile$ExpandedItem +androidx.appcompat.R$dimen: int abc_action_bar_stacked_tab_max_width +wangdaye.com.geometricweather.R$anim: int abc_slide_in_bottom +androidx.constraintlayout.widget.R$styleable: int PropertySet_visibilityMode +wangdaye.com.geometricweather.R$animator: int weather_haze_1 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionDropDownStyle +androidx.vectordrawable.animated.R$color: int secondary_text_default_material_light +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginStart +com.jaredrummler.android.colorpicker.R$attr: int srcCompat +com.bumptech.glide.R$styleable: int GradientColor_android_startX +com.xw.repo.bubbleseekbar.R$attr: int actionModeBackground +com.google.android.material.R$layout: int design_layout_snackbar +com.google.android.material.R$attr: int strokeWidth +com.google.android.material.R$styleable: int KeyPosition_keyPositionType +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +androidx.constraintlayout.widget.R$attr: int flow_horizontalGap +io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +io.reactivex.internal.subscriptions.SubscriptionHelper: void deferredRequest(java.util.concurrent.atomic.AtomicReference,java.util.concurrent.atomic.AtomicLong,long) +androidx.constraintlayout.widget.R$attr: int curveFit +com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_square +io.reactivex.internal.disposables.DisposableHelper: boolean dispose(java.util.concurrent.atomic.AtomicReference) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WetBulbTemperature +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource[] values() +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_transitionPathRotate +androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentListStyle +cyanogenmod.providers.DataUsageContract: DataUsageContract() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Subtitle2 +com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_horizontal_material +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode FLOW_CONTROL_ERROR +androidx.lifecycle.LiveData$LifecycleBoundObserver: void detachObserver() +androidx.preference.R$styleable: int BackgroundStyle_selectableItemBackground +okhttp3.internal.http2.Http2Connection: void pushResetLater(int,okhttp3.internal.http2.ErrorCode) +androidx.lifecycle.SavedStateHandle: void set(java.lang.String,java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX wind +androidx.loader.R$id: int text +androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_toggle_margin_top +wangdaye.com.geometricweather.R$attr: int layout_constraintTop_toTopOf +cyanogenmod.externalviews.ExternalView$2: android.graphics.Rect val$clipRect +androidx.hilt.lifecycle.R$id: int accessibility_action_clickable_span +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Selected +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_arrowSize +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String insee +android.didikee.donate.R$styleable: int[] CompoundButton +androidx.vectordrawable.R$id: int accessibility_action_clickable_span +okhttp3.Request: okhttp3.CacheControl cacheControl() +androidx.constraintlayout.widget.R$attr: int transitionFlags +wangdaye.com.geometricweather.R$styleable: int[] ActionBarLayout +okhttp3.internal.connection.RouteSelector: okhttp3.Address address +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getThunderstorm() +wangdaye.com.geometricweather.R$id: int textinput_prefix_text +androidx.fragment.R$drawable: int notification_bg_low_normal +com.turingtechnologies.materialscrollbar.R$attr: int showTitle +wangdaye.com.geometricweather.R$id: int blocking +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_unregisterWeatherServiceProviderChangeListener +cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String TAG +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_wrapMode +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Alert +androidx.constraintlayout.widget.R$attr: int titleMargin +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onNext(java.lang.Object) +com.xw.repo.bubbleseekbar.R$color: int ripple_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: AccuMinuteResult$SummariesBean() +okhttp3.internal.http.HttpHeaders: boolean skipWhitespaceAndCommas(okio.Buffer) +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +cyanogenmod.externalviews.KeyguardExternalView$11: void run() +android.didikee.donate.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +androidx.appcompat.widget.AppCompatSpinner: java.lang.CharSequence getPrompt() +wangdaye.com.geometricweather.R$id: int fill +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorContentDescription +com.google.android.material.R$id: int scrollable +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_weight +androidx.fragment.R$dimen: int notification_right_side_padding_top +androidx.preference.R$drawable: int abc_spinner_mtrl_am_alpha +androidx.preference.R$attr: int switchPreferenceCompatStyle +com.google.android.material.R$attr: int itemStrokeWidth +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +androidx.work.R$styleable: int FontFamilyFont_fontWeight +okhttp3.internal.http1.Http1Codec: okhttp3.internal.connection.StreamAllocation streamAllocation +com.jaredrummler.android.colorpicker.R$attr: int cpv_colorPresets +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: int getStatus() +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents +okhttp3.internal.http2.Http2Codec: okhttp3.internal.http2.Http2Connection connection +okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,int,int,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) +okhttp3.Challenge: int hashCode() +com.turingtechnologies.materialscrollbar.R$dimen: int notification_action_text_size +com.turingtechnologies.materialscrollbar.R$id: int search_close_btn +com.google.android.material.R$color: int material_on_background_emphasis_high_type +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSteps +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIconTintMode +cyanogenmod.weatherservice.ServiceRequestResult: java.util.List mLocationLookupList +cyanogenmod.providers.WeatherContract$WeatherColumns +wangdaye.com.geometricweather.R$attr: int autoSizePresetSizes +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: int temperature +com.turingtechnologies.materialscrollbar.R$styleable: int[] CollapsingToolbarLayout_Layout +android.didikee.donate.R$styleable: int ActionBar_itemPadding +com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getTextSize() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX() +james.adaptiveicon.R$attr: int autoSizeMinTextSize +androidx.vectordrawable.animated.R$id: int notification_background +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial +wangdaye.com.geometricweather.db.entities.LocationEntity: LocationEntity(java.lang.String,java.lang.String,float,float,java.util.TimeZone,java.lang.String,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource,boolean,boolean,boolean) +com.turingtechnologies.materialscrollbar.R$attr: int chipStrokeColor +com.google.android.material.bottomappbar.BottomAppBar: int getRightInset() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotation +wangdaye.com.geometricweather.R$styleable: int Chip_chipBackgroundColor +wangdaye.com.geometricweather.R$styleable: int RecycleListView_paddingTopNoTitle +com.google.android.material.textfield.TextInputLayout: void setEndIconVisible(boolean) +androidx.preference.R$styleable: int Preference_android_singleLineTitle +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean +okhttp3.internal.Util: void closeQuietly(java.net.Socket) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: void setValue(java.lang.String) +cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode[] getDisplayModes() +cyanogenmod.app.Profile: java.util.Collection getStreamSettings() +androidx.appcompat.R$styleable: int AppCompatTheme_buttonStyleSmall +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.ProcessLifecycleOwner sInstance +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen +com.google.android.material.navigation.NavigationView: void setElevation(float) +wangdaye.com.geometricweather.R$dimen: int cpv_color_preference_large +wangdaye.com.geometricweather.R$color: int material_grey_100 +cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String toString() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: AccuDailyResult$DailyForecasts$Night() +wangdaye.com.geometricweather.R$string: int abc_capital_off +com.bumptech.glide.integration.okhttp.R$dimen: int notification_large_icon_width +androidx.cardview.R$attr: R$attr() +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_backgroundTint +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +com.google.android.material.R$styleable: int CompoundButton_buttonTintMode +androidx.lifecycle.LifecycleRegistry$ObserverWithState +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onComplete() +androidx.drawerlayout.R$drawable: int notification_template_icon_low_bg +androidx.appcompat.widget.ViewStubCompat: void setInflatedId(int) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeApparentTemperature() +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: java.lang.String toString() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ButtonBar +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetEnd +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setOnChildScrollUpCallback(androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnChildScrollUpCallback) +androidx.fragment.R$anim: int fragment_fade_enter +com.google.android.material.circularreveal.CircularRevealFrameLayout +androidx.appcompat.R$drawable: int abc_btn_borderless_material +com.google.android.material.R$attr: int onShow +okhttp3.internal.platform.JdkWithJettyBootPlatform: void afterHandshake(javax.net.ssl.SSLSocket) +io.reactivex.internal.schedulers.ScheduledRunnable +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean outputFused +cyanogenmod.app.Profile: java.util.UUID getUuid() +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorSize +androidx.hilt.R$id: int accessibility_custom_action_30 +james.adaptiveicon.R$styleable: int DrawerArrowToggle_drawableSize +androidx.preference.R$styleable: int RecycleListView_paddingBottomNoButtons +androidx.constraintlayout.widget.R$attr: int contentInsetLeft +com.google.android.material.R$dimen: int abc_action_bar_elevation_material +com.google.android.material.R$styleable: int Constraint_layout_constraintEnd_toEndOf +wangdaye.com.geometricweather.R$id: int notification_multi_city_text_3 +wangdaye.com.geometricweather.R$attr: int pressedTranslationZ +wangdaye.com.geometricweather.R$styleable: int Constraint_android_transformPivotY +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_DrawerArrowToggle +com.google.android.material.R$id: int bidirectional +james.adaptiveicon.R$style: int Theme_AppCompat_NoActionBar +james.adaptiveicon.R$attr: int panelBackground +androidx.preference.R$id: int select_dialog_listview +androidx.appcompat.resources.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_motionStagger +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotationX +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.appcompat.R$drawable: int abc_cab_background_top_material +okhttp3.internal.http2.Http2Connection: boolean access$300(okhttp3.internal.http2.Http2Connection) +wangdaye.com.geometricweather.R$drawable: int notif_temp_136 +androidx.viewpager2.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.R$id: int widget_day_subtitle +androidx.fragment.app.BackStackRecord +com.google.android.material.R$id: int normal +james.adaptiveicon.R$color: int abc_primary_text_disable_only_material_dark +okio.BufferedSource: java.lang.String readString(java.nio.charset.Charset) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_radius_on_dragging +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.R$drawable: int abc_list_pressed_holo_light +androidx.preference.R$drawable: int abc_scrubber_control_off_mtrl_alpha +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +com.jaredrummler.android.colorpicker.R$layout: int abc_action_mode_close_item_material +androidx.lifecycle.ProcessLifecycleOwner: boolean mPauseSent +okhttp3.internal.http2.Http2: byte TYPE_HEADERS +com.google.android.material.R$attr: int showDelay +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: double Value +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onSucceed(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_minHeight +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_elevation +com.turingtechnologies.materialscrollbar.R$dimen: int cardview_compat_inset_shadow +com.google.android.material.R$styleable: int Chip_chipIconEnabled +androidx.preference.R$attr: int switchTextOff +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver +androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackground(android.graphics.drawable.Drawable) +android.didikee.donate.R$attr: int arrowHeadLength +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SearchView +android.didikee.donate.R$attr: int windowMinWidthMajor +androidx.work.R$id: int accessibility_custom_action_1 +com.bumptech.glide.integration.okhttp.R$drawable +com.google.android.material.R$dimen: int mtrl_btn_padding_left +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_end_icon_margin_start +androidx.lifecycle.ProcessLifecycleOwner: android.os.Handler mHandler +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: float getAlpha() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorPrimaryDark +androidx.coordinatorlayout.R$color: R$color() +com.xw.repo.bubbleseekbar.R$dimen: int abc_config_prefDialogWidth +androidx.cardview.R$style: int CardView +retrofit2.Converter$Factory: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_visible +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed Speed +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List advices +androidx.appcompat.R$styleable: int AppCompatImageView_srcCompat +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarItemBackground +cyanogenmod.app.IPartnerInterface$Stub$Proxy: void shutdown() +okhttp3.internal.proxy.NullProxySelector: void connectFailed(java.net.URI,java.net.SocketAddress,java.io.IOException) +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTint +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_RESULT_VALUE +okhttp3.internal.connection.RealConnection: boolean noNewStreams +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void slideLockscreenIn() +androidx.viewpager.widget.ViewPager: void setOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) +okio.Buffer: okio.Buffer writeTo(java.io.OutputStream,long) +androidx.hilt.lifecycle.R$anim +androidx.constraintlayout.utils.widget.ImageFilterView: void setSaturation(float) +okhttp3.Protocol: okhttp3.Protocol[] values() +androidx.work.R$id: int accessibility_custom_action_14 +androidx.hilt.R$dimen: int notification_media_narrow_margin +retrofit2.adapter.rxjava2.CallEnqueueObservable +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Spinner_Underlined +com.google.android.material.R$attr: int tabMinWidth +androidx.appcompat.R$style: int Theme_AppCompat_Empty +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_Switch +cyanogenmod.hardware.DisplayMode: int describeContents() +wangdaye.com.geometricweather.common.basic.models.weather.Alert: void writeToParcel(android.os.Parcel,int) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_titleTextStyle +com.jaredrummler.android.colorpicker.R$style: int PreferenceFragmentList +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date sunsetTime +android.didikee.donate.R$dimen: int abc_cascading_menus_min_smallest_width +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: java.lang.String Unit +io.reactivex.Observable: io.reactivex.Observable error(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_list_padding_top_no_title +com.google.android.material.R$attr: int textEndPadding +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents +androidx.viewpager.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setNightIconDrawable(android.graphics.drawable.Drawable) +com.google.android.material.R$string: int material_timepicker_hour +okio.Pipe: Pipe(long) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindLevel +okhttp3.internal.tls.DistinguishedNameParser: int cur +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String ACTION_SET_ALARM_ENABLED +androidx.loader.R$styleable: int GradientColor_android_startColor +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_elevation_material +wangdaye.com.geometricweather.R$animator: int weather_sleet_2 +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: void run() +wangdaye.com.geometricweather.R$xml: int widget_clock_day_details +androidx.preference.R$styleable: int AppCompatTheme_seekBarStyle +cyanogenmod.providers.CMSettings +androidx.recyclerview.R$dimen: int compat_button_padding_vertical_material +androidx.preference.R$styleable: int DrawerArrowToggle_arrowHeadLength +wangdaye.com.geometricweather.R$dimen: int widget_grid_1 wangdaye.com.geometricweather.R$attr: int paddingStart -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DialogWhenLarge -com.xw.repo.bubbleseekbar.R$layout: int abc_tooltip -wangdaye.com.geometricweather.R$array: int ui_styles -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -cyanogenmod.weather.RequestInfo$1: java.lang.Object[] newArray(int) -androidx.preference.R$layout: int notification_action -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: HourlyEntityDao(org.greenrobot.greendao.internal.DaoConfig) -com.google.android.material.appbar.AppBarLayout: void setStatusBarForegroundResource(int) -wangdaye.com.geometricweather.R$drawable: int design_fab_background -androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonCompat -retrofit2.CompletableFutureCallAdapterFactory -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: int getCollapsedSize() -androidx.recyclerview.R$styleable: int GradientColor_android_startY -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_minHeight -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState FINISHED -androidx.constraintlayout.widget.R$attr: int region_heightMoreThan -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_2 -wangdaye.com.geometricweather.R$attr: int pathMotionArc -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit getInstance(java.lang.String) -androidx.constraintlayout.widget.R$color: int switch_thumb_normal_material_light -wangdaye.com.geometricweather.R$styleable: int Constraint_android_transformPivotY -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Editor edit(java.lang.String,long) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_HOME_BUTTON -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_DEFAULT_INDEX -org.greenrobot.greendao.DaoException: DaoException(java.lang.String,java.lang.Throwable) -androidx.preference.R$id: int top -io.reactivex.internal.util.NotificationLite: boolean isComplete(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Light -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer) -androidx.appcompat.R$styleable: int StateListDrawable_android_visible -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_rightToLeft -cyanogenmod.providers.CMSettings$System: java.lang.String DIALER_OPENCNAM_AUTH_TOKEN -com.google.android.material.R$styleable: int Toolbar_logo -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean fused -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain Rain -wangdaye.com.geometricweather.R$string: int material_timepicker_pm -androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.R$drawable: int abc_cab_background_top_material -cyanogenmod.app.Profile: java.lang.String TAG -james.adaptiveicon.R$attr: int editTextStyle -com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusBottomEnd -wangdaye.com.geometricweather.common.basic.models.weather.Wind: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree degree -wangdaye.com.geometricweather.weather.apis.CaiYunApi -com.xw.repo.bubbleseekbar.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -androidx.vectordrawable.R$color: R$color() -cyanogenmod.themes.ThemeChangeRequest: java.util.Map mPerAppOverlays -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method putMethod -androidx.work.impl.WorkDatabase -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -io.reactivex.Observable: io.reactivex.Observable scan(io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitationDuration(java.lang.Float) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService -com.google.android.material.R$integer: int mtrl_btn_anim_delay_ms -androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context) -com.google.android.material.R$attr: int layout_editor_absoluteX -okhttp3.internal.http2.Http2Stream: void addBytesToWriteWindow(long) -androidx.hilt.R$attr: R$attr() -com.xw.repo.bubbleseekbar.R$color: int abc_hint_foreground_material_light -com.google.android.material.R$styleable: int Chip_chipMinHeight -okhttp3.internal.platform.OptionalMethod: java.lang.Class returnType -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_checkbox -androidx.work.impl.workers.DiagnosticsWorker: DiagnosticsWorker(android.content.Context,androidx.work.WorkerParameters) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setStatus(int) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int getMainTextColorResId() -androidx.hilt.R$styleable: int GradientColor_android_startColor -io.reactivex.internal.disposables.DisposableHelper: boolean set(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) -androidx.preference.R$id: int add -wangdaye.com.geometricweather.R$id: int blocking -cyanogenmod.app.IProfileManager: boolean setActiveProfile(android.os.ParcelUuid) -androidx.preference.R$color: int background_floating_material_dark -retrofit2.Platform -androidx.recyclerview.R$id: int actions -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: boolean hasValue -androidx.preference.R$styleable: int AppCompatTheme_homeAsUpIndicator -okio.Buffer$UnsafeCursor: int next() -com.google.android.material.R$styleable: int Layout_android_layout_marginStart -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Spinner_Underlined -okio.BufferedSource: boolean request(long) -androidx.preference.R$styleable: int PreferenceImageView_maxWidth -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void dispose() -android.didikee.donate.R$style: int Widget_AppCompat_TextView_SpinnerItem -com.google.android.material.bottomappbar.BottomAppBar: int getBottomInset() -androidx.appcompat.resources.R$styleable: int GradientColor_android_centerX -org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory,int,android.database.DatabaseErrorHandler) -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_disableDependentsState -android.didikee.donate.R$styleable: int TextAppearance_android_textStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTheme -androidx.constraintlayout.motion.widget.MotionLayout: int getCurrentState() -androidx.appcompat.R$color: int abc_primary_text_disable_only_material_dark -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackActiveTintList() -cyanogenmod.weatherservice.WeatherProviderService: android.os.Handler mHandler -com.google.android.material.internal.StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException -androidx.constraintlayout.widget.R$id: int middle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -cyanogenmod.app.CMStatusBarManager: void removeTileAsUser(java.lang.String,int,android.os.UserHandle) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.Function leftEnd -androidx.viewpager2.R$id: int accessibility_custom_action_8 -cyanogenmod.hardware.ICMHardwareService: int[] getDisplayColorCalibration() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox -androidx.appcompat.R$styleable: int ActionBar_progressBarPadding -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getCloseIcon() -com.google.android.material.R$id: int labelGroup -wangdaye.com.geometricweather.R$id: int activity_weather_daily_pager -io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: androidx.lifecycle.LiveData mLiveData -wangdaye.com.geometricweather.R$styleable: int Toolbar_collapseIcon -okhttp3.RealCall: boolean isCanceled() -androidx.viewpager2.R$id: int line3 -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Province -androidx.appcompat.R$styleable: int Spinner_popupTheme -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabText -androidx.appcompat.R$style: int TextAppearance_AppCompat_Display1 -androidx.constraintlayout.widget.R$attr: int minWidth -androidx.preference.R$attr: int trackTintMode -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_textOff -okhttp3.internal.http2.Http2Stream: okio.Source getSource() -wangdaye.com.geometricweather.R$id: int percent -wangdaye.com.geometricweather.R$string: int cpv_select -retrofit2.RequestFactory$Builder: boolean gotQueryMap -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: ObservableWithLatestFromMany$WithLatestInnerObserver(io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver,int) -com.google.android.material.slider.RangeSlider$RangeSliderState: android.os.Parcelable$Creator CREATOR -androidx.activity.R$id: int dialog_button -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleTint -androidx.core.R$id: int tag_accessibility_actions -androidx.preference.R$attr: int tooltipText -wangdaye.com.geometricweather.R$attr: int windowNoTitle -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom -androidx.appcompat.R$attr: int submitBackground -androidx.appcompat.R$attr: int showText -james.adaptiveicon.R$id: int textSpacerNoButtons -com.google.android.material.R$styleable: int AppCompatTheme_windowNoTitle -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator -com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemIconTintList() -com.google.android.material.tabs.TabLayout: void addOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_fabCustomSize -com.xw.repo.bubbleseekbar.R$id: int progress_circular -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin -com.google.android.material.card.MaterialCardView: void setRippleColor(android.content.res.ColorStateList) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap -james.adaptiveicon.R$dimen: int abc_action_bar_subtitle_top_margin_material -com.google.android.material.R$styleable: int FloatingActionButton_useCompatPadding -wangdaye.com.geometricweather.R$attr: int cornerSizeTopLeft -com.google.android.material.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: java.lang.String Unit -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: android.os.IBinder mRemote -android.didikee.donate.R$dimen: int abc_action_bar_default_padding_start_material -wangdaye.com.geometricweather.R$color: int abc_tint_seek_thumb -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWindLevel() -androidx.core.R$color: R$color() -cyanogenmod.app.ICustomTileListener$Stub$Proxy: android.os.IBinder asBinder() -androidx.recyclerview.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.R$color: int colorTextSubtitle_dark -cyanogenmod.app.CMStatusBarManager: android.content.Context mContext -retrofit2.RequestFactory: boolean hasBody -wangdaye.com.geometricweather.R$attr: int layout_scrollFlags -com.google.android.material.R$id: int icon_group -android.didikee.donate.R$id: int decor_content_parent -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_isThemeBeingProcessed -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void drainNormal() -android.didikee.donate.R$styleable: int SearchView_queryBackground -com.google.android.material.R$styleable: int GradientColorItem_android_offset -cyanogenmod.themes.ThemeManager: java.lang.String TAG -com.google.android.material.R$styleable: int MaterialButton_icon -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getChipIcon() -io.reactivex.internal.disposables.EmptyDisposable: java.lang.Object poll() -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.appcompat.R$styleable: int LinearLayoutCompat_divider -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_padding_material -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onError(java.lang.Throwable) -androidx.swiperefreshlayout.R$color: int notification_action_color_filter -okhttp3.Cache$Entry: void writeTo(okhttp3.internal.cache.DiskLruCache$Editor) -io.reactivex.internal.util.AtomicThrowable: boolean addThrowable(java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.DaoSession: void clear() -androidx.hilt.work.R$styleable: int GradientColor_android_centerColor -com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_disable_only_material_light -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endY -androidx.customview.R$attr: int fontStyle -okhttp3.Cache$1: void trackResponse(okhttp3.internal.cache.CacheStrategy) -cyanogenmod.profiles.BrightnessSettings: void processOverride(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginLeft -wangdaye.com.geometricweather.R$string: int settings_title_notification_custom_color -com.google.android.material.R$styleable: int TabLayout_tabPaddingBottom -com.jaredrummler.android.colorpicker.R$drawable: int cpv_preset_checked -okhttp3.OkHttpClient: int connectTimeoutMillis() -androidx.preference.R$styleable: int[] PreferenceFragmentCompat -com.google.android.material.R$attr: int flow_wrapMode -wangdaye.com.geometricweather.R$drawable: int weather_rain_pixel -cyanogenmod.weatherservice.ServiceRequest: ServiceRequest(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.IWeatherProviderServiceClient) -com.google.android.material.R$id: int material_clock_face -androidx.constraintlayout.widget.R$id: int dragEnd -androidx.preference.R$styleable: int[] Preference -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_SHOW_BATTERY_PERCENT_VALIDATOR -cyanogenmod.app.CustomTile$ExpandedStyle$1 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarSize -androidx.appcompat.R$styleable: int AppCompatTheme_editTextBackground -androidx.appcompat.R$styleable: int AppCompatTheme_colorControlNormal -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_popupWindowStyle -okhttp3.internal.http.HttpHeaders: int skipAll(okio.Buffer,byte) -retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: retrofit2.Call call -wangdaye.com.geometricweather.R$style: int subtitle_text -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getHint() -com.turingtechnologies.materialscrollbar.R$attr: int panelMenuListTheme -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode[] getDisplayModes() -androidx.preference.R$string: int abc_menu_function_shortcut_label -com.bumptech.glide.integration.okhttp.R$drawable: int notification_tile_bg -androidx.vectordrawable.R$style: int Widget_Compat_NotificationActionContainer -okhttp3.internal.http.HttpCodec: void cancel() -cyanogenmod.externalviews.ExternalView: boolean onPreDraw() -wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_end -cyanogenmod.weather.WeatherInfo$DayForecast: double mLow -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: ViewModelProvider$AndroidViewModelFactory(android.app.Application) -com.google.android.material.R$attr: int dayInvalidStyle -androidx.constraintlayout.widget.R$attr: int constraints -com.google.gson.internal.LinkedTreeMap: boolean $assertionsDisabled -com.google.android.material.R$id: int accessibility_custom_action_24 -retrofit2.BuiltInConverters$StreamingResponseBodyConverter: retrofit2.BuiltInConverters$StreamingResponseBodyConverter INSTANCE -androidx.transition.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_days_of_week_height -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: java.lang.String getRelativeHumidityText(float) -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderQuery -okio.HashingSink: okio.HashingSink hmacSha256(okio.Sink,okio.ByteString) -cyanogenmod.app.CMContextConstants: java.lang.String CM_TELEPHONY_MANAGER_SERVICE -wangdaye.com.geometricweather.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean timerFired -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_transitionPathRotate -androidx.appcompat.R$color: int abc_search_url_text_pressed -wangdaye.com.geometricweather.R$color: int mtrl_on_primary_text_btn_text_color_selector -wangdaye.com.geometricweather.R$string: int transition_activity_search_txt -wangdaye.com.geometricweather.R$styleable: int StateSet_defaultState -com.google.android.material.internal.NavigationMenuItemView: void setNeedsEmptyIcon(boolean) -wangdaye.com.geometricweather.R$styleable: int RoundCornerTransition_radius_from -wangdaye.com.geometricweather.db.entities.HourlyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -androidx.customview.R$id: int actions -com.github.rahatarmanahmed.cpv.R$bool +wangdaye.com.geometricweather.main.MainActivity: void onSearchBarClicked(android.view.View) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: java.lang.String Localized +com.google.android.material.R$attr: int subMenuArrow +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorBackgroundFloating +cyanogenmod.externalviews.ExternalViewProperties: boolean isVisible() +okio.RealBufferedSource: long indexOf(byte,long,long) +androidx.preference.R$style: int TextAppearance_Compat_Notification_Line2 +cyanogenmod.app.ProfileManager: void removeNotificationGroup(android.app.NotificationGroup) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_interval +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.ObservableSource source +com.xw.repo.bubbleseekbar.R$attr: int iconTintMode +wangdaye.com.geometricweather.R$id: int easeInOut +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: java.util.List getValue() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Tooltip +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActivityChooserView +com.google.gson.stream.JsonReader: JsonReader(java.io.Reader) +com.google.android.material.R$id: int BOTTOM_START +androidx.appcompat.R$styleable: int MenuItem_android_menuCategory +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getPressureVoice(android.content.Context,float) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_min +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +com.google.android.material.R$styleable: int Constraint_layout_constraintTop_toBottomOf +com.google.android.material.R$dimen: int abc_edit_text_inset_bottom_material +com.google.android.material.R$styleable: int PopupWindowBackgroundState_state_above_anchor +androidx.coordinatorlayout.R$id: int accessibility_custom_action_24 +com.jaredrummler.android.colorpicker.R$attr: int showDividers +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String EnglishName +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_MULTIPLE_LEDS_ENABLE +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: java.lang.String modeId +okhttp3.internal.ws.WebSocketReader: void readMessage() +wangdaye.com.geometricweather.R$color: int material_on_primary_emphasis_high_type +androidx.hilt.R$id: int dialog_button +com.xw.repo.bubbleseekbar.R$styleable: int[] View +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer relativeHumidityMax +androidx.constraintlayout.widget.R$styleable: int ActionBar_divider +com.jaredrummler.android.colorpicker.R$attr: int gapBetweenBars +com.google.android.material.R$dimen: int material_emphasis_disabled +androidx.dynamicanimation.R$drawable: int notification_bg_normal +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: void completion() +androidx.appcompat.R$styleable: int AppCompatTheme_selectableItemBackground +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_maxWidth +wangdaye.com.geometricweather.R$id: int activity_weather_daily_toolbar +james.adaptiveicon.R$drawable: int abc_btn_check_material +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +james.adaptiveicon.R$layout: int abc_screen_simple_overlay_action_mode +androidx.hilt.lifecycle.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float pm25 +androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerY +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_VIBRATE +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceBody2 +cyanogenmod.hardware.ICMHardwareService: java.lang.String getLtoDestination() +com.google.android.material.chip.Chip: void setCheckedIconVisible(int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabStyle +com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_bottom +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BEGIN_ARRAY +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_16dp +androidx.preference.SeekBarPreference$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRealFeelShaderTemperature(java.lang.Integer) +wangdaye.com.geometricweather.R$array: int week_icon_modes +wangdaye.com.geometricweather.R$drawable: int notif_temp_38 +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_enter_shortcut_label +androidx.loader.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.R$id: int parentPanel +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$drawable: int weather_cloudy +okhttp3.internal.http2.Http2Connection$2: void execute() +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: long serialVersionUID +okhttp3.internal.connection.ConnectInterceptor +retrofit2.http.POST +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton +cyanogenmod.app.Profile: void readFromParcel(android.os.Parcel) +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: void onFailure(retrofit2.Call,java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_enabled +wangdaye.com.geometricweather.R$color: int tooltip_background_light +wangdaye.com.geometricweather.R$dimen: int large_margin +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onError(java.lang.Throwable) +okhttp3.internal.http2.Huffman +androidx.viewpager2.R$layout +wangdaye.com.geometricweather.R$drawable: int notif_temp_3 +com.jaredrummler.android.colorpicker.R$layout: int abc_screen_simple_overlay_action_mode +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeight +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getTreeIndex() +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_useCompatPadding +android.didikee.donate.R$color +com.google.android.material.R$dimen: int mtrl_progress_circular_inset +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorFullWidth +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_20 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeStyle +wangdaye.com.geometricweather.R$styleable: int RecyclerView_spanCount +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int CloudCover +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_1 +cyanogenmod.providers.CMSettings$System: java.lang.String DOUBLE_TAP_SLEEP_GESTURE +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize +com.google.android.material.R$dimen: int abc_disabled_alpha_material_light +okio.BufferedSource: long indexOf(byte,long) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Body2 +com.bumptech.glide.R$attr +wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_night_foreground +wangdaye.com.geometricweather.db.entities.AlertEntity: int getPriority() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_button_material +wangdaye.com.geometricweather.R$array: int widget_style_values +james.adaptiveicon.R$styleable: int MenuItem_android_checkable +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: MfHistoryResult$History$Precipitation() +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: java.util.List getBrands() +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidth(int) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWetBulbTemperature(java.lang.Integer) +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder shouldCollapsePanel(boolean) +io.reactivex.internal.disposables.EmptyDisposable: void clear() +james.adaptiveicon.R$styleable: int TextAppearance_android_textColor +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_editor_absoluteX +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object getKey(java.lang.Object) +okhttp3.ConnectionPool: okhttp3.internal.connection.RealConnection get(okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) +androidx.lifecycle.SavedStateViewModelFactory: java.lang.reflect.Constructor findMatchingConstructor(java.lang.Class,java.lang.Class[]) +com.google.android.material.R$attr: int haloRadius +androidx.appcompat.R$attr: int checkboxStyle +com.xw.repo.bubbleseekbar.R$attr: int submitBackground +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_barLength +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onSuccess(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.ObservableSource second +com.turingtechnologies.materialscrollbar.R$attr: int checkedIcon +okio.SegmentedByteString: okio.ByteString md5() +androidx.hilt.R$style: int TextAppearance_Compat_Notification_Title +james.adaptiveicon.R$layout: int abc_action_mode_bar +com.google.android.material.R$layout: int mtrl_layout_snackbar +wangdaye.com.geometricweather.R$id: int reservedNamedId +wangdaye.com.geometricweather.R$array: int speed_unit_voices +com.jaredrummler.android.colorpicker.R$styleable: int[] MenuView +io.reactivex.Observable: io.reactivex.Observable wrap(io.reactivex.ObservableSource) +com.google.android.material.bottomnavigation.BottomNavigationView: android.view.Menu getMenu() +com.google.android.material.R$styleable: int Transition_transitionDisable +androidx.appcompat.widget.AppCompatTextView: int getLastBaselineToBottomHeight() +com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding QUALITY +james.adaptiveicon.R$style: int Widget_AppCompat_SeekBar_Discrete +com.google.android.material.R$attr: int tabPaddingTop +com.google.android.material.R$attr: int mock_labelBackgroundColor +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress +androidx.coordinatorlayout.R$id: int accessibility_custom_action_9 +com.turingtechnologies.materialscrollbar.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$attr: int backgroundColorEnd +okhttp3.internal.platform.Platform: java.lang.String getPrefix() +com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text +androidx.preference.R$styleable: int SearchView_commitIcon +io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,long,java.util.concurrent.TimeUnit) +com.google.android.material.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +okhttp3.internal.http2.Http2Connection: java.util.Map streams +androidx.appcompat.widget.SwitchCompat +cyanogenmod.themes.IThemeService$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.hilt.work.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$anim: int mtrl_bottom_sheet_slide_out +cyanogenmod.app.BaseLiveLockManagerService: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.WeatherInfo val$weatherInfo +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setSubState(int,boolean) +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void error(java.lang.Throwable) +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource valueOf(java.lang.String) +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_tagView +wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity: DayWidgetConfigActivity() +wangdaye.com.geometricweather.R$string: int feedback_interpret_notification_group_content +com.jaredrummler.android.colorpicker.R$color: int abc_tint_switch_track +cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getActiveProfile() +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getResPkg() +androidx.constraintlayout.utils.widget.ImageFilterButton: float getWarmth() +androidx.preference.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation[] values() +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_baselineAligned +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_top +androidx.vectordrawable.R$id: int text2 +androidx.dynamicanimation.R$color: R$color() +com.turingtechnologies.materialscrollbar.R$attr: int msb_barThickness +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.R$attr: int textLocale +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconTint +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Time +cyanogenmod.hardware.CMHardwareManager: int getVibratorMaxIntensity() +android.didikee.donate.R$dimen: int abc_alert_dialog_button_bar_height +wangdaye.com.geometricweather.R$string: int key_live_wallpaper +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarSplitStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +okhttp3.logging.HttpLoggingInterceptor$Logger$1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: void setFrom(java.lang.String) +androidx.hilt.work.R$anim: int fragment_fast_out_extra_slow_in +com.github.rahatarmanahmed.cpv.CircularProgressView$4: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: AccuCurrentResult$ApparentTemperature$Metric() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_68 +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_width +com.google.android.material.R$attr: int layout_constraintWidth_percent +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.lang.String selected +android.didikee.donate.R$drawable: int abc_list_selector_disabled_holo_light +okhttp3.internal.http2.Http2Connection: long access$708(okhttp3.internal.http2.Http2Connection) +android.didikee.donate.R$dimen: int abc_action_button_min_width_material +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCity +androidx.fragment.R$styleable: int[] GradientColor +androidx.constraintlayout.widget.R$attr: int panelMenuListWidth +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWeatherPhase() +com.google.android.material.R$attr: int passwordToggleEnabled +androidx.hilt.work.R$attr: int fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +james.adaptiveicon.R$color: int material_grey_800 +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +okhttp3.internal.connection.RealConnection: java.util.List allocations +androidx.legacy.coreutils.R$styleable: int GradientColor_android_endColor +androidx.vectordrawable.R$color: int notification_action_color_filter +androidx.appcompat.R$color: int bright_foreground_disabled_material_dark +android.didikee.donate.R$attr: int actionProviderClass +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_w +wangdaye.com.geometricweather.R$styleable: int Transform_android_translationX +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_tintMode +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +com.google.gson.stream.JsonWriter: void setSerializeNulls(boolean) +androidx.recyclerview.R$styleable: int RecyclerView_reverseLayout +james.adaptiveicon.R$dimen: int abc_action_button_min_width_material +androidx.hilt.R$id: int line1 +androidx.constraintlayout.widget.R$styleable: int ActionBar_subtitleTextStyle +com.google.android.material.R$attr: int transitionShapeAppearance +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: MfForecastResult$ProbabilityForecast$ProbabilitySnow() +com.google.android.material.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +android.didikee.donate.R$attr: int alertDialogTheme +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_borderWidth +androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context,android.util.AttributeSet) +androidx.preference.R$style: int Animation_AppCompat_Tooltip +wangdaye.com.geometricweather.R$attr: int maxVelocity +androidx.preference.R$styleable: int CheckBoxPreference_summaryOn +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: double Value +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getRagweedDescription() +wangdaye.com.geometricweather.R$attr: int constraints +androidx.preference.R$style: int Preference_PreferenceScreen_Material +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +androidx.fragment.R$drawable +io.reactivex.Observable: io.reactivex.Observable intervalRange(long,long,long,long,java.util.concurrent.TimeUnit) +james.adaptiveicon.R$drawable: int notification_bg +com.google.android.material.slider.BaseSlider: void addOnSliderTouchListener(com.google.android.material.slider.BaseOnSliderTouchListener) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ITALIAN +androidx.loader.R$id: int blocking +androidx.work.R$id: int notification_background +com.google.android.material.R$attr: int round +okhttp3.CacheControl: int sMaxAgeSeconds +androidx.preference.R$layout: int abc_screen_simple +com.bumptech.glide.integration.okhttp.R$id: int forever +james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogStyle +androidx.constraintlayout.widget.R$id: int async +android.didikee.donate.R$styleable: int View_android_focusable +okhttp3.internal.cache.DiskLruCache$Entry: java.lang.String key +okhttp3.internal.Util: java.lang.String[] intersect(java.util.Comparator,java.lang.String[],java.lang.String[]) +retrofit2.http.QueryName +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias +james.adaptiveicon.R$attr: int divider +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: ObservableSwitchMap$SwitchMapObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) +james.adaptiveicon.R$styleable: int[] LinearLayoutCompat +androidx.loader.R$id: int text2 +james.adaptiveicon.R$styleable: int AppCompatSeekBar_android_thumb +android.didikee.donate.R$styleable: int AppCompatTheme_tooltipFrameBackground +androidx.appcompat.R$styleable: R$styleable() +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event[] values() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: double Dbz +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_thumb +androidx.appcompat.R$styleable: int TextAppearance_textLocale +james.adaptiveicon.R$drawable: int abc_action_bar_item_background_material +androidx.preference.R$styleable: int[] ListPopupWindow +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: io.reactivex.Observer downstream +android.didikee.donate.R$dimen: R$dimen() +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$styleable: int[] StateSet +cyanogenmod.platform.R$string +wangdaye.com.geometricweather.R$animator: int weather_snow_1 +wangdaye.com.geometricweather.R$id: int searchContainer +okhttp3.OkHttpClient: int connectTimeoutMillis() +wangdaye.com.geometricweather.R$drawable: int notification_bg_normal_pressed +retrofit2.SkipCallbackExecutorImpl: java.lang.annotation.Annotation[] ensurePresent(java.lang.annotation.Annotation[]) +android.didikee.donate.R$color: int abc_color_highlight_material +wangdaye.com.geometricweather.R$styleable: int KeyPosition_curveFit +com.google.android.material.behavior.HideBottomViewOnScrollBehavior: HideBottomViewOnScrollBehavior(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$id: int chains +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onComplete() +io.reactivex.internal.subscribers.DeferredScalarSubscriber: org.reactivestreams.Subscription upstream +com.google.android.material.tabs.TabLayout: void setTabsFromPagerAdapter(androidx.viewpager.widget.PagerAdapter) +wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_tailColor +wangdaye.com.geometricweather.R$drawable: int mtrl_ic_arrow_drop_down +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Selected +cyanogenmod.app.ProfileManager: android.app.NotificationGroup[] getNotificationGroups() +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int DRIZZLE +wangdaye.com.geometricweather.R$styleable: int KeyCycle_transitionEasing +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_srcCompat +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_track_mtrl_alpha +androidx.coordinatorlayout.R$drawable: int notification_icon_background +okhttp3.internal.cache.CacheStrategy$Factory: long nowMillis +com.google.android.material.R$styleable: int AppCompatTheme_panelMenuListWidth +okhttp3.internal.cache2.Relay: okio.Source upstream +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean addProfile(cyanogenmod.app.Profile) +androidx.core.R$dimen: int notification_top_pad_large_text +cyanogenmod.app.ProfileGroup$1: java.lang.Object[] newArray(int) +cyanogenmod.util.ColorUtils$1: int compare(java.lang.Object,java.lang.Object) +com.google.android.material.R$attr: int rangeFillColor +androidx.drawerlayout.R$dimen: int notification_large_icon_height +cyanogenmod.app.ILiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +cyanogenmod.hardware.IThermalListenerCallback$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +androidx.appcompat.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.R$style: int Preference_DialogPreference +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState RUNNING +com.google.android.material.R$styleable: int View_paddingEnd +androidx.cardview.R$dimen: int cardview_default_radius +com.turingtechnologies.materialscrollbar.R$string: int abc_shareactionprovider_share_with_application +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_width_material +io.reactivex.internal.util.NotificationLite: boolean isDisposable(java.lang.Object) +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event UPDATE +androidx.preference.R$styleable: int PreferenceImageView_maxHeight +wangdaye.com.geometricweather.R$attr: int counterMaxLength +androidx.constraintlayout.widget.R$string: int abc_searchview_description_clear +com.google.android.material.R$attr: int percentX +com.google.android.material.R$styleable: int SwitchCompat_thumbTint +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Bridge +wangdaye.com.geometricweather.R$attr: int summaryOff +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderAuthority +androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_alpha +okhttp3.internal.Util$2: boolean val$daemon +org.greenrobot.greendao.AbstractDao: void deleteAll() +androidx.work.R$attr: int fontProviderFetchStrategy +retrofit2.Retrofit$1: retrofit2.Platform platform +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.internal.disposables.SequentialDisposable upstream +androidx.appcompat.resources.R$attr: int fontProviderQuery +androidx.recyclerview.R$id: int right_side +androidx.appcompat.R$color: int abc_primary_text_disable_only_material_light +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitationProbability +com.xw.repo.bubbleseekbar.R$anim: int abc_tooltip_enter +com.google.gson.stream.JsonReader: int PEEKED_LONG +com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdp +com.xw.repo.bubbleseekbar.R$styleable: int[] FontFamily +androidx.viewpager2.R$styleable: int[] ViewPager2 +com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalAlign +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCopyDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textSize +androidx.constraintlayout.widget.R$attr: int deriveConstraintsFrom +cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_INTERNALLY_ENABLED +com.google.android.material.R$dimen: int notification_action_icon_size +androidx.constraintlayout.widget.R$attr: R$attr() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: boolean isDisposed() +com.google.android.material.R$styleable: int MaterialToolbar_navigationIconColor +wangdaye.com.geometricweather.R$id: int selected +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: int humidity +com.google.android.material.appbar.AppBarLayout: void setTargetElevation(float) +com.google.gson.stream.JsonReader: void skipQuotedValue(char) +androidx.constraintlayout.helper.widget.Flow: void setHorizontalStyle(int) +okhttp3.OkHttpClient$Builder: okhttp3.internal.cache.InternalCache internalCache +cyanogenmod.externalviews.KeyguardExternalView: void onBouncerShowing(boolean) +james.adaptiveicon.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +androidx.appcompat.R$dimen: int abc_action_bar_subtitle_top_margin_material +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getTotalPrecipitation() +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: MfHistoryResult$Position() +com.google.android.material.R$styleable: int MaterialButton_shapeAppearance +androidx.vectordrawable.animated.R$dimen: int compat_notification_large_icon_max_height +androidx.preference.R$styleable: int MenuGroup_android_visible +androidx.appcompat.widget.ActionBarContextView: void setSubtitle(java.lang.CharSequence) +wangdaye.com.geometricweather.R$attr: int editTextColor +com.xw.repo.bubbleseekbar.R$id: int icon_group +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotation +wangdaye.com.geometricweather.R$attr: int theme +cyanogenmod.library.R: R() +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Choice +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_40 +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver +cyanogenmod.providers.CMSettings$Secure: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language[] values() +androidx.lifecycle.livedata.core.R: R() +io.reactivex.internal.subscriptions.SubscriptionArbiter: void drain() +com.turingtechnologies.materialscrollbar.R$integer: int mtrl_btn_anim_duration_ms +okio.HashingSource: java.security.MessageDigest messageDigest +com.google.android.material.R$styleable: int MenuGroup_android_enabled +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String weatherText +androidx.appcompat.R$attr: int dividerPadding +wangdaye.com.geometricweather.R$string: int gson +cyanogenmod.hardware.CMHardwareManager: int getNumGammaControls() +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.Long getId() +com.google.android.material.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$string: int settings_title_card_display +androidx.hilt.lifecycle.R$styleable: int Fragment_android_tag okio.Timeout: okio.Timeout deadlineNanoTime(long) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeShareDrawable -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_chainStyle -com.google.android.material.R$styleable: int Transition_constraintSetEnd -wangdaye.com.geometricweather.R$styleable: int ActionBar_homeLayout -androidx.appcompat.R$attr: int dropdownListPreferredItemHeight -okio.Buffer: okio.Buffer clone() -com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_DropDownUp -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -com.google.android.material.R$attr: int actionBarDivider -com.jaredrummler.android.colorpicker.R$id: int blocking -androidx.appcompat.R$drawable: int abc_scrubber_primary_mtrl_alpha -wangdaye.com.geometricweather.R$xml: int perference_notification_color -okhttp3.OkHttpClient -okhttp3.internal.platform.AndroidPlatform: boolean supportsAlpn() -cyanogenmod.platform.R$xml -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableItem_android_drawable -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderQuery -android.didikee.donate.R$styleable: int MenuItem_showAsAction -android.didikee.donate.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -wangdaye.com.geometricweather.R$string: int real_feel_temperature -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -okhttp3.internal.http.HttpMethod: boolean redirectsToGet(java.lang.String) -james.adaptiveicon.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.google.android.material.R$attr: int collapseIcon -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_startAngle -androidx.hilt.lifecycle.R$integer -okhttp3.internal.http2.Http2Reader$ContinuationSource: long read(okio.Buffer,long) -androidx.viewpager2.adapter.FragmentStateAdapter$2 -com.google.android.material.R$styleable: int[] MaterialButtonToggleGroup -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_OVERLAYS -com.google.android.material.R$styleable: int AppBarLayout_liftOnScroll -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginStart -androidx.preference.R$attr: int summary -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_3 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_43 -cyanogenmod.weather.IRequestInfoListener -com.google.android.material.R$id: int checkbox -com.google.android.material.R$attr: int tickColorActive -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getZh_TW() -okhttp3.CertificatePinner$Builder: java.util.List pins -cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getProfileByName(java.lang.String) -androidx.appcompat.widget.ViewStubCompat: void setLayoutResource(int) -com.turingtechnologies.materialscrollbar.R$attr: int layout_dodgeInsetEdges -androidx.vectordrawable.R$drawable: int notification_template_icon_bg -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabText -com.google.android.material.R$drawable: int abc_text_select_handle_left_mtrl_light -com.google.android.material.R$styleable: int AlertDialog_android_layout -androidx.preference.R$styleable: int LinearLayoutCompat_dividerPadding -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_start_padding -wangdaye.com.geometricweather.R$attr: int backgroundColor -com.xw.repo.bubbleseekbar.R$id: int src_over -com.google.android.material.R$attr: int searchViewStyle -androidx.preference.R$styleable: int AppCompatTheme_actionModeFindDrawable -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.R$attr: int tabRippleColor -androidx.appcompat.R$styleable: int MenuItem_actionProviderClass -androidx.coordinatorlayout.R$id: int accessibility_custom_action_13 -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) -androidx.lifecycle.AndroidViewModel: android.app.Application mApplication -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: java.lang.String Unit -androidx.lifecycle.Transformations$3 -wangdaye.com.geometricweather.R$id: int chip_group -com.github.rahatarmanahmed.cpv.CircularProgressView: int animSwoopDuration -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void dispose() -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_constantSize -com.google.android.material.R$styleable: int Toolbar_titleMargin -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontStyle -android.didikee.donate.R$id: int action_bar_title -wangdaye.com.geometricweather.R$style: int Animation_Design_BottomSheetDialog -wangdaye.com.geometricweather.R$attr: int numericModifiers -androidx.preference.R$attr: int searchHintIcon -androidx.preference.R$styleable: int Preference_key -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: io.reactivex.Scheduler$Worker worker -com.google.android.material.R$string: int abc_menu_sym_shortcut_label -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_pathMotionArc -com.google.android.material.R$styleable: int Layout_layout_constraintCircleAngle -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayHorizontalWidgetConfigActivity -wangdaye.com.geometricweather.R$attr: int actionBarItemBackground -androidx.customview.R$drawable: int notification_template_icon_bg -androidx.appcompat.R$styleable: int MenuGroup_android_id -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onNext(java.lang.Object) -androidx.work.R$bool: int workmanager_test_configuration -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: int Degrees -io.reactivex.internal.observers.BasicIntQueueDisposable -androidx.hilt.work.R$id: int action_divider -com.github.rahatarmanahmed.cpv.CircularProgressView -james.adaptiveicon.R$styleable: int ActionBar_itemPadding -okhttp3.internal.cache.DiskLruCache: java.util.regex.Pattern LEGAL_KEY_PATTERN -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_scrollMode -com.google.gson.stream.JsonWriter: void beforeValue() -androidx.preference.R$style: int Base_V22_Theme_AppCompat -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconContentDescription -wangdaye.com.geometricweather.R$styleable: int Chip_textEndPadding -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_CompactMenu -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogCornerRadius -com.jaredrummler.android.colorpicker.R$attr: int thickness -androidx.swiperefreshlayout.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle -io.reactivex.Observable: io.reactivex.Observable rangeLong(long,long) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -com.google.android.material.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float so2 -wangdaye.com.geometricweather.R$drawable: int ic_github_dark -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_toBottomOf -okhttp3.internal.http.CallServerInterceptor$CountingSink: long successfulCount -com.jaredrummler.android.colorpicker.ColorPanelView: void setOriginalColor(int) -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderFetchTimeout -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: java.lang.Object index() -androidx.constraintlayout.widget.R$styleable: int ActionBar_divider -com.google.android.material.R$attr: int actionBarPopupTheme -androidx.preference.R$anim: int fragment_open_exit -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_stacked_tab_max_width -com.google.android.material.R$styleable: int GradientColor_android_endX -androidx.constraintlayout.widget.R$styleable: int MenuView_android_horizontalDivider -wangdaye.com.geometricweather.R$attr: int placeholderTextAppearance -james.adaptiveicon.R$attr: int imageButtonStyle -androidx.hilt.work.R$id: int accessibility_custom_action_31 -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf -com.google.android.material.R$dimen: int abc_button_inset_horizontal_material -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorGravity -okhttp3.Protocol: okhttp3.Protocol HTTP_2 -com.google.android.material.R$layout: int abc_list_menu_item_layout -com.turingtechnologies.materialscrollbar.R$styleable: int[] SearchView -androidx.preference.R$styleable: int RecyclerView_android_descendantFocusability -androidx.appcompat.R$styleable: int Toolbar_maxButtonHeight -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_y_offset_touch -okhttp3.OkHttpClient: java.util.List protocols -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_creator -okhttp3.Cookie: boolean domainMatch(java.lang.String,java.lang.String) -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_removeProfile -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.util.List _queryWeatherEntity_AlertEntityList(java.lang.String,java.lang.String) -cyanogenmod.profiles.BrightnessSettings -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemHorizontalTranslationEnabled(boolean) -com.jaredrummler.android.colorpicker.R$attr: int contentInsetEndWithActions -retrofit2.ParameterHandler$Path: int p -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customBoolean -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_layout -androidx.constraintlayout.widget.R$attr: int telltales_tailScale -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SearchView -retrofit2.Call: boolean isExecuted() -io.reactivex.observers.DisposableObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$attr: int itemHorizontalTranslationEnabled -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_17 -androidx.constraintlayout.widget.R$attr: int content -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconTintMode -androidx.preference.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.R$dimen: int abc_text_size_button_material -com.google.android.material.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_adjustable -androidx.preference.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit[] values() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: CaiYunMainlyResult$AlertsBean$ImagesBean() -androidx.recyclerview.widget.RecyclerView: int getMinFlingVelocity() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_padding_right -com.jaredrummler.android.colorpicker.R$attr: int actionBarTabBarStyle -wangdaye.com.geometricweather.R$id: int spread -androidx.swiperefreshlayout.R$style: R$style() -okhttp3.OkHttpClient: boolean retryOnConnectionFailure() -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_android_windowFullscreen -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_1 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String url -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveShape -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCardForegroundColor() -androidx.appcompat.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.R$styleable: int[] CoordinatorLayout -androidx.vectordrawable.R$dimen: int notification_right_side_padding_top -retrofit2.BuiltInConverters$BufferingResponseBodyConverter: okhttp3.ResponseBody convert(okhttp3.ResponseBody) -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked -androidx.recyclerview.R$styleable: int[] RecyclerView -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_shapeAppearanceOverlay -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display3 -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: java.lang.String Localized -wangdaye.com.geometricweather.R$drawable: int notif_temp_22 -com.google.android.material.R$styleable: int ProgressIndicator_indicatorType -wangdaye.com.geometricweather.background.service.CMWeatherProviderService -androidx.appcompat.widget.SwitchCompat: void setThumbTintMode(android.graphics.PorterDuff$Mode) -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button -wangdaye.com.geometricweather.R$dimen: int compat_control_corner_material -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addQueryParameter(java.lang.String,java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_shapeAppearance -androidx.lifecycle.ReportFragment: void onActivityCreated(android.os.Bundle) -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: boolean inSingle -retrofit2.OkHttpCall$NoContentResponseBody: okhttp3.MediaType contentType() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherText(java.lang.String) -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: SingleToObservable$SingleToObservableObserver(io.reactivex.Observer) -androidx.constraintlayout.widget.R$attr: int actionBarPopupTheme -wangdaye.com.geometricweather.R$layout: int widget_day_mini -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_android_elevation -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_summaryOn -androidx.appcompat.resources.R$dimen: int notification_content_margin_start -okhttp3.internal.http1.Http1Codec$ChunkedSink -androidx.constraintlayout.widget.R$styleable: int MockView_mock_diagonalsColor -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitationProbability -com.google.android.material.R$styleable: int Constraint_android_layout_width -wangdaye.com.geometricweather.R$xml: int icon_provider_config -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: boolean isValid() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight -okhttp3.WebSocketListener: WebSocketListener() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Category -com.turingtechnologies.materialscrollbar.R$id: int custom -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPopupWindowStyle -androidx.recyclerview.widget.RecyclerView$LayoutManager$Properties: RecyclerView$LayoutManager$Properties() -com.google.android.material.R$style: int Base_V28_Theme_AppCompat_Light -android.didikee.donate.R$integer -wangdaye.com.geometricweather.R$id: int container_main_pollen_subtitle -com.google.android.material.R$style: int Theme_AppCompat_DayNight_NoActionBar -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTheme -com.google.android.material.R$layout: int abc_activity_chooser_view -com.google.android.material.R$styleable: int Toolbar_collapseIcon -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Info -androidx.appcompat.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -com.google.android.material.card.MaterialCardView: void setStrokeWidth(int) -cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_USE_MAIN_TILES -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getUrl() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int PrecipitationProbability -androidx.appcompat.R$string: int abc_menu_ctrl_shortcut_label -io.reactivex.internal.disposables.CancellableDisposable -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_buttonPanelSideLayout -androidx.recyclerview.R$id: int tag_unhandled_key_event_manager -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_tileMode -androidx.coordinatorlayout.R$attr: int fontProviderFetchStrategy -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.R$string: int content_des_moonset -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_text -cyanogenmod.os.Build$CM_VERSION_CODES: int CANTALOUPE -org.greenrobot.greendao.AbstractDao: void deleteInTx(java.lang.Object[]) -androidx.lifecycle.extensions.R: R() -com.google.gson.stream.JsonReader: int nextNonWhitespace(boolean) -io.reactivex.observers.DisposableObserver: void onStart() -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -okhttp3.internal.http2.Http2: byte TYPE_GOAWAY -androidx.core.R$style: int TextAppearance_Compat_Notification_Line2 -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okhttp3.ResponseBody delegate -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_RC4_128_SHA -cyanogenmod.app.LiveLockScreenInfo$Builder: int mPriority -wangdaye.com.geometricweather.R$id: int graph_wrap -retrofit2.ParameterHandler$FieldMap: int p -androidx.constraintlayout.widget.R$attr: int showDividers -cyanogenmod.app.CMContextConstants: java.lang.String CM_WEATHER_SERVICE -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -james.adaptiveicon.R$color: int abc_tint_switch_track -androidx.preference.R$id: int textSpacerNoButtons -com.google.android.material.R$attr: int chipStandaloneStyle -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -retrofit2.ParameterHandler$Header: java.lang.String name -androidx.constraintlayout.widget.R$attr: int drawableStartCompat -androidx.coordinatorlayout.R$id -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.SingleObserver downstream -wangdaye.com.geometricweather.R$attr: int bsb_thumb_radius -io.reactivex.Observable: io.reactivex.Single last(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX -com.turingtechnologies.materialscrollbar.R$id: int snackbar_action -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xmp -androidx.coordinatorlayout.R$drawable -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: org.reactivestreams.Subscription upstream -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBaseline_creator -androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionState(android.os.Bundle) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4 -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.vectordrawable.animated.R$dimen: int notification_right_side_padding_top -com.xw.repo.bubbleseekbar.R$id: int screen -wangdaye.com.geometricweather.R$string: int key_hide_subtitle -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -wangdaye.com.geometricweather.R$attr: int fastScrollVerticalThumbDrawable -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotation -androidx.appcompat.widget.SwitchCompat: android.graphics.drawable.Drawable getTrackDrawable() -james.adaptiveicon.R$anim: int abc_fade_in -androidx.lifecycle.ReportFragment: void injectIfNeededIn(android.app.Activity) -okhttp3.Cache$1: okhttp3.Cache this$0 -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: LiveDataReactiveStreams$LiveDataPublisher(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_overflow_padding_start_material -james.adaptiveicon.R$styleable: int MenuItem_tooltipText -retrofit2.adapter.rxjava2.package-info -wangdaye.com.geometricweather.R$attr: int defaultValue -james.adaptiveicon.R$color: int ripple_material_light -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMarkTint -wangdaye.com.geometricweather.R$attr: int statusBarBackground -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService -okio.Sink: void flush() -androidx.appcompat.R$styleable: int ActionBar_height -okhttp3.internal.ws.WebSocketWriter: void writeClose(int,okio.ByteString) -com.xw.repo.bubbleseekbar.R$styleable: int[] SearchView -cyanogenmod.app.CustomTile: cyanogenmod.app.CustomTile clone() -com.google.android.material.textfield.TextInputLayout: void addOnEditTextAttachedListener(com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener) -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_Search -com.google.android.material.R$styleable: int AppCompatSeekBar_tickMark -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemBackground -com.xw.repo.bubbleseekbar.R$style: int Base_V26_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixTextAppearance -wangdaye.com.geometricweather.R$dimen: int abc_seekbar_track_background_height_material -io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.CompletableSource) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer treeIndex -androidx.recyclerview.R$styleable: int FontFamilyFont_fontWeight -androidx.work.R$bool: int enable_system_foreground_service_default -androidx.preference.R$attr: int dividerVertical -com.bumptech.glide.R$attr: int layout_anchorGravity -wangdaye.com.geometricweather.R$string: int abc_shareactionprovider_share_with_application -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setIcons(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String weather -wangdaye.com.geometricweather.R$attr: int commitIcon -wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_default -okhttp3.Cache$Entry: okhttp3.Headers varyHeaders -okhttp3.CacheControl: int minFreshSeconds -androidx.loader.R$integer: R$integer() -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_variablePadding -okhttp3.WebSocketListener: void onFailure(okhttp3.WebSocket,java.lang.Throwable,okhttp3.Response) -androidx.preference.R$dimen: int abc_action_button_min_width_material -cyanogenmod.weather.WeatherInfo -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_android_windowIsFloating -cyanogenmod.weather.WeatherInfo$DayForecast -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_19 -okhttp3.Request$Builder: okhttp3.Request$Builder url(okhttp3.HttpUrl) -com.google.android.material.R$styleable: int AppCompatTheme_dialogPreferredPadding -com.google.android.material.R$attr: int layout_scrollFlags -cyanogenmod.weather.CMWeatherManager$2: cyanogenmod.weather.CMWeatherManager this$0 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign -james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Light -androidx.vectordrawable.animated.R$layout: int notification_action -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display1 -com.google.android.material.R$styleable: int ProgressIndicator_indicatorColors -james.adaptiveicon.R$layout: int abc_action_mode_close_item_material -james.adaptiveicon.R$layout: int abc_expanded_menu_layout -okhttp3.internal.http2.Hpack$Writer: void writeHeaders(java.util.List) -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean done -io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable INSTANCE -android.support.v4.app.INotificationSideChannel$Default -james.adaptiveicon.R$styleable: int ActionMode_background -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconDrawable -androidx.lifecycle.ClassesInfoCache: boolean hasLifecycleMethods(java.lang.Class) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer wetBulbTemperature -cyanogenmod.weatherservice.ServiceRequestResult$1: ServiceRequestResult$1() -android.didikee.donate.R$attr: int actionBarSize -androidx.appcompat.widget.AppCompatRadioButton: android.graphics.PorterDuff$Mode getSupportButtonTintMode() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeApparentTemperature() -wangdaye.com.geometricweather.R$drawable: int abc_ab_share_pack_mtrl_alpha -androidx.hilt.work.R$id: int blocking -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWindLevel -cyanogenmod.hardware.CMHardwareManager: int FEATURE_TOUCH_HOVERING -com.google.android.material.R$style: int Base_V26_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.R$styleable: int ActionMode_titleTextStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int getStatus() -wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_date -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_NOTIFICATIONS -androidx.constraintlayout.widget.R$attr: int autoSizeMinTextSize -okhttp3.internal.connection.RealConnection: java.lang.String toString() -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: void detach() -com.jaredrummler.android.colorpicker.R$style: int AlertDialog_AppCompat +james.adaptiveicon.R$styleable: int ViewBackgroundHelper_android_background +cyanogenmod.app.CMTelephonyManager: java.util.List getSubInformation() +android.didikee.donate.R$styleable: int MenuItem_iconTintMode +io.reactivex.internal.util.EmptyComponent: boolean isDisposed() +cyanogenmod.power.IPerformanceManager: boolean getProfileHasAppProfiles(int) +wangdaye.com.geometricweather.R$attr: int dependency +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_60 +com.google.android.material.R$styleable: int KeyTimeCycle_android_elevation +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthFocused(int) +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +com.turingtechnologies.materialscrollbar.R$attr: int progressBarPadding +wangdaye.com.geometricweather.R$drawable: int abc_tab_indicator_mtrl_alpha +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onComplete() +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCustomSize(int) +okhttp3.internal.ws.WebSocketWriter: java.util.Random random +okhttp3.internal.cache.DiskLruCache$Snapshot: long[] lengths +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Title +com.google.android.material.slider.RangeSlider: int getHaloRadius() +androidx.transition.R$dimen: int compat_button_inset_horizontal_material +com.jaredrummler.android.colorpicker.R$color +androidx.preference.R$attr: int entryValues +wangdaye.com.geometricweather.R$id: int widget_day_week_weather +androidx.viewpager2.R$integer: R$integer() +androidx.core.graphics.drawable.IconCompatParcelizer: IconCompatParcelizer() +okhttp3.Cache: okhttp3.internal.cache.InternalCache internalCache +androidx.preference.R$attr: int buttonPanelSideLayout +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String dailyForecast +androidx.preference.R$dimen: int abc_text_size_headline_material +com.turingtechnologies.materialscrollbar.R$attr: int subMenuArrow +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Action +androidx.appcompat.R$id: int list_item +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderAuthority +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Bridge +com.google.android.material.R$styleable: int AppCompatTextView_textLocale +io.reactivex.internal.disposables.EmptyDisposable: boolean isEmpty() +wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_bottom_end +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_17 +androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandle mHandle +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_CompactMenu +com.google.android.material.R$dimen: int design_snackbar_extra_spacing_horizontal +wangdaye.com.geometricweather.R$layout: int custom_dialog +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_begin +android.didikee.donate.R$id +com.google.android.material.R$styleable: int View_theme +wangdaye.com.geometricweather.R$id: int coordinator +com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_new +james.adaptiveicon.R$attr: int tickMark +androidx.hilt.R$attr: int fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_enterFadeDuration +io.reactivex.internal.observers.BlockingObserver: java.lang.Object TERMINATED +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice Ice +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Colored +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +wangdaye.com.geometricweather.R$attr: int scrimBackground +okhttp3.internal.ws.WebSocketProtocol: void validateCloseCode(int) +com.turingtechnologies.materialscrollbar.R$string: int search_menu_title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: void setFrom(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean +androidx.hilt.lifecycle.R$id: int tag_accessibility_clickable_spans +androidx.viewpager2.R$id: int forever +androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onStart() +androidx.legacy.coreutils.R$integer: R$integer() +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_removeProfile +androidx.lifecycle.ViewModelProviders$DefaultFactory +androidx.constraintlayout.widget.R$styleable: int StateListDrawableItem_android_drawable +androidx.coordinatorlayout.R$layout: int notification_template_part_time +okhttp3.internal.cache.DiskLruCache$2: okhttp3.internal.cache.DiskLruCache this$0 +com.jaredrummler.android.colorpicker.R$drawable: int abc_spinner_mtrl_am_alpha +okio.BufferedSink: void flush() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeWidthFocused +wangdaye.com.geometricweather.R$styleable: int Constraint_motionProgress +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableRightCompat +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: org.reactivestreams.Subscription upstream +james.adaptiveicon.R$styleable: int ActionBar_height +androidx.work.R$styleable: int GradientColorItem_android_color +cyanogenmod.externalviews.IExternalViewProvider: void onPause() +androidx.lifecycle.LiveData +com.google.android.material.chip.Chip: android.graphics.Rect getCloseIconTouchBoundsInt() +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_text_color +androidx.lifecycle.ReportFragment: ReportFragment() +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog_Alert +androidx.constraintlayout.widget.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List phenomenonsItems +androidx.appcompat.R$style: int TextAppearance_AppCompat_Tooltip +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_only_end_selected +com.xw.repo.bubbleseekbar.R$attr: int thumbTextPadding +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: ObservableAmb$AmbInnerObserver(io.reactivex.internal.operators.observable.ObservableAmb$AmbCoordinator,int,io.reactivex.Observer) +androidx.lifecycle.ProcessLifecycleOwner$2: androidx.lifecycle.ProcessLifecycleOwner this$0 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_136 +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModePasteDrawable +androidx.core.R$id: int right_side +com.google.android.material.R$styleable: int Constraint_flow_firstVerticalStyle +cyanogenmod.app.CMContextConstants$Features: java.lang.String APP_SUGGEST +androidx.appcompat.R$drawable: int abc_list_pressed_holo_light +io.reactivex.internal.disposables.EmptyDisposable: int requestFusion(int) +android.didikee.donate.R$styleable: int Toolbar_collapseContentDescription +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy +okhttp3.internal.tls.BasicCertificateChainCleaner: boolean verifySignature(java.security.cert.X509Certificate,java.security.cert.X509Certificate) +wangdaye.com.geometricweather.R$drawable: int notif_temp_77 +okhttp3.internal.cache.DiskLruCache$1: void run() +androidx.constraintlayout.widget.R$drawable: int abc_btn_check_material_anim +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SeekBar_Discrete +androidx.legacy.coreutils.R$attr: int fontProviderAuthority +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +com.google.android.material.R$layout: int abc_expanded_menu_layout +okio.RealBufferedSource: short readShort() +androidx.preference.R$attr: int colorPrimaryDark +wangdaye.com.geometricweather.R$id: int notification_big_icon_4 +com.jaredrummler.android.colorpicker.R$style: int Base_V28_Theme_AppCompat_Light +androidx.viewpager2.R$layout: int notification_template_icon_group +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int HAS_REQUEST_HAS_VALUE +wangdaye.com.geometricweather.R$style: int PreferenceFragmentList +androidx.preference.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber(androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData) +androidx.preference.R$attr: int actionMenuTextAppearance +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState SETUP +james.adaptiveicon.R$styleable +androidx.appcompat.R$id: int action_bar +androidx.preference.R$style: int TextAppearance_AppCompat_Medium +com.google.android.material.R$styleable: int TextInputLayout_errorEnabled +wangdaye.com.geometricweather.R$layout: int abc_activity_chooser_view_list_item +androidx.constraintlayout.widget.R$attr: int navigationMode +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorSchemeResources(int[]) +androidx.preference.R$dimen: int abc_dropdownitem_icon_width +androidx.preference.R$styleable: int AlertDialog_android_layout +wangdaye.com.geometricweather.R$string: int date_format_widget_short +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void dispose() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial() +com.google.android.material.R$styleable: int KeyTrigger_framePosition +org.greenrobot.greendao.AbstractDao: long insert(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setHeadDescription(java.lang.String) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light +androidx.appcompat.widget.Toolbar: void setContentInsetStartWithNavigation(int) +okhttp3.internal.Util: int indexOfControlOrNonAscii(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int actionModeSelectAllDrawable +com.google.android.material.R$layout: int text_view_with_line_height_from_layout +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: java.lang.Object item +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String cityId +com.google.android.material.progressindicator.ProgressIndicator +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WINDY +io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,boolean) +androidx.constraintlayout.widget.R$dimen: int compat_control_corner_material +okio.Base64: byte[] MAP +wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_day_foreground +james.adaptiveicon.R$integer: int abc_config_activityDefaultDur +wangdaye.com.geometricweather.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +cyanogenmod.providers.CMSettings$DelimitedListValidator: boolean validate(java.lang.String) +androidx.lifecycle.ComputableLiveData$2 +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedPassword(java.lang.String) +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setZh_TW(java.lang.String) +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.ObservableSource source +com.xw.repo.bubbleseekbar.R$id: int chronometer +wangdaye.com.geometricweather.R$attr: int state_dragged +com.google.gson.stream.JsonWriter: JsonWriter(java.io.Writer) +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void drain() +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyBar +james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionBar +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionMenuTextAppearance +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customFloatValue +androidx.constraintlayout.widget.R$styleable: int Transition_layoutDuringTransition +androidx.appcompat.R$styleable: int ActionBar_titleTextStyle +okhttp3.internal.cache.DiskLruCache$Editor$1: DiskLruCache$Editor$1(okhttp3.internal.cache.DiskLruCache$Editor,okio.Sink) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBaseline_creator +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_queryHint +com.jaredrummler.android.colorpicker.R$style: int Preference_Category +wangdaye.com.geometricweather.R$dimen: int standard_weather_icon_size +androidx.constraintlayout.widget.R$color: int tooltip_background_light +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_keyline +cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(android.os.Parcel,cyanogenmod.app.CustomTile$1) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property AqiIndex +com.github.rahatarmanahmed.cpv.CircularProgressView: void onMeasure(int,int) +android.didikee.donate.R$dimen: int abc_floating_window_z +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Small +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_keyline +androidx.appcompat.widget.Toolbar: int getPopupTheme() +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$id: int material_hour_tv +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean brandInfo +james.adaptiveicon.R$styleable: int MenuView_preserveIconSpacing +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindDirection +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindChillTemperature(java.lang.Integer) +androidx.preference.R$color: int switch_thumb_normal_material_light +androidx.appcompat.widget.ActivityChooserModel +androidx.preference.R$styleable: int AppCompatTheme_homeAsUpIndicator +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindSpeed(java.lang.Float) +cyanogenmod.themes.IThemeChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +cyanogenmod.app.PartnerInterface: cyanogenmod.app.IPartnerInterface getService() +androidx.appcompat.R$drawable: int abc_scrubber_track_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$id: int actions +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerReceiver +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowDx +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemBackground(android.graphics.drawable.Drawable) +android.didikee.donate.R$attr: int colorControlActivated +com.google.android.material.R$styleable: int Slider_tickVisible +james.adaptiveicon.R$styleable: int AppCompatTheme_actionMenuTextAppearance +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundTint +io.reactivex.internal.schedulers.AbstractDirectTask: void setFuture(java.util.concurrent.Future) +androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context,android.util.AttributeSet) +cyanogenmod.weather.WeatherLocation$1: WeatherLocation$1() +cyanogenmod.weather.WeatherInfo: double getTodaysLow() +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial Imperial +androidx.appcompat.R$style: int TextAppearance_AppCompat_Title_Inverse +com.google.android.material.R$styleable: int Snackbar_snackbarTextViewStyle +androidx.loader.R$styleable: int[] GradientColor +cyanogenmod.app.BaseLiveLockManagerService$1: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +androidx.lifecycle.R +wangdaye.com.geometricweather.R$attr: int checkedIconMargin +wangdaye.com.geometricweather.R$color: int switch_thumb_material_light +wangdaye.com.geometricweather.R$dimen: int abc_text_size_body_1_material +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver +androidx.swiperefreshlayout.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$color: int mtrl_btn_stroke_color_selector +androidx.appcompat.resources.R$color +cyanogenmod.profiles.ConnectionSettings: int getSubId() +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State STARTED +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar +com.google.android.material.R$styleable: int ProgressIndicator_circularRadius +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_unregisterCallback +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Snackbar +com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String ID +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: java.lang.String Unit +androidx.appcompat.widget.ActivityChooserModel: void setOnChooseActivityListener(androidx.appcompat.widget.ActivityChooserModel$OnChooseActivityListener) +com.google.android.material.R$id: int design_menu_item_action_area +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void subscribeNext() +androidx.preference.R$id: int accessibility_custom_action_4 +okio.ByteString: void write(java.io.OutputStream) +androidx.swiperefreshlayout.R$dimen: int notification_big_circle_margin +androidx.lifecycle.LiveData: void observe(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Observer) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean getNames() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_stacked_max_height +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endX +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.AndroidPlatform$CloseGuard closeGuard +androidx.constraintlayout.utils.widget.ImageFilterButton: void setCrossfade(float) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerError(java.lang.Throwable) +androidx.hilt.lifecycle.R$anim: int fragment_open_enter +cyanogenmod.weather.WeatherLocation: java.lang.String access$202(cyanogenmod.weather.WeatherLocation,java.lang.String) +androidx.work.NetworkType: androidx.work.NetworkType UNMETERED +androidx.appcompat.R$styleable: int Toolbar_subtitleTextAppearance +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function) +androidx.lifecycle.extensions.R$dimen: int notification_subtext_size +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: java.lang.Object poll() +androidx.swiperefreshlayout.R$color: int notification_icon_bg_color +android.didikee.donate.R$anim: int abc_fade_out +androidx.preference.R$style: int Base_Widget_AppCompat_Toolbar +cyanogenmod.app.ThemeVersion +androidx.customview.R$id: int action_divider +androidx.appcompat.R$id: int submit_area +androidx.constraintlayout.widget.R$attr: int indeterminateProgressStyle +androidx.viewpager.R$attr: int fontStyle +com.turingtechnologies.materialscrollbar.R$attr: int tabTextColor +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode CLOUDY +androidx.hilt.work.R$id: int async +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder socket(java.net.Socket,java.lang.String,okio.BufferedSource,okio.BufferedSink) io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver inner -wangdaye.com.geometricweather.R$integer: int abc_config_activityDefaultDur -cyanogenmod.providers.CMSettings$Secure: java.lang.String[] LEGACY_SECURE_SETTINGS -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String pressure -cyanogenmod.themes.IThemeService: boolean processThemeResources(java.lang.String) -com.google.android.material.R$attr: int customBoolean -androidx.constraintlayout.widget.R$styleable: int Constraint_android_maxHeight -wangdaye.com.geometricweather.R$layout: int item_weather_daily_title -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State RUNNING -androidx.core.R$integer: R$integer() -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -okhttp3.internal.ws.RealWebSocket: void loopReader() -androidx.preference.R$drawable: int tooltip_frame_dark -cyanogenmod.app.suggest.IAppSuggestProvider: java.util.List getSuggestions(android.content.Intent) -androidx.work.R$color: R$color() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabText -androidx.loader.R$drawable: int notification_bg_normal -okhttp3.internal.http2.Http2Connection: long access$208(okhttp3.internal.http2.Http2Connection) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) -com.google.android.material.R$integer: int abc_config_activityShortDur -cyanogenmod.providers.CMSettings$Global: java.lang.String[] LEGACY_GLOBAL_SETTINGS -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_layout_margin -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.R$drawable: int abc_cab_background_internal_bg -io.reactivex.Observable: io.reactivex.Observable concatMap(io.reactivex.functions.Function,int) -androidx.lifecycle.ViewModelProviders$DefaultFactory: ViewModelProviders$DefaultFactory(android.app.Application) -com.google.android.material.R$styleable: int CardView_contentPaddingBottom -wangdaye.com.geometricweather.R$id: int mtrl_view_tag_bottom_padding -james.adaptiveicon.R$string: int abc_shareactionprovider_share_with -okhttp3.internal.cache2.Relay: void writeHeader(okio.ByteString,long,long) -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox -androidx.preference.R$styleable: int SearchView_closeIcon -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchTextAppearance -cyanogenmod.app.suggest.IAppSuggestManager -io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite valueOf(java.lang.String) -androidx.constraintlayout.widget.R$id: int dragStart -androidx.cardview.widget.CardView: void setMinimumWidth(int) -okhttp3.internal.connection.RouteSelector: java.util.List inetSocketAddresses -androidx.drawerlayout.R$styleable: int GradientColor_android_type -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Bridge -com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox -cyanogenmod.providers.CMSettings$System: java.lang.String MENU_WAKE_SCREEN -wangdaye.com.geometricweather.db.entities.DailyEntity: long getTime() -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollEnabled -wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveVariesBy -com.bumptech.glide.Registry$NoResultEncoderAvailableException: Registry$NoResultEncoderAvailableException(java.lang.Class) -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: float getPressure(float) -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textSize -wangdaye.com.geometricweather.db.entities.DaoMaster: DaoMaster(android.database.sqlite.SQLiteDatabase) -com.google.android.material.R$styleable: int[] ChipGroup -com.google.android.material.R$attr: int cornerSizeTopRight -wangdaye.com.geometricweather.R$integer: int cpv_default_anim_duration -okio.Timeout: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) +okhttp3.internal.connection.RealConnection: okhttp3.Protocol protocol +com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox +androidx.constraintlayout.widget.R$id: int decor_content_parent +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton +androidx.constraintlayout.widget.R$id: int src_atop +androidx.appcompat.widget.ActionBarContainer: void setPrimaryBackground(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String getTo() +okhttp3.internal.http1.Http1Codec$FixedLengthSink: okio.Timeout timeout() +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitleTextAppearance +androidx.transition.R$drawable: int notification_bg_low +android.didikee.donate.R$styleable: int MenuItem_android_menuCategory +cyanogenmod.weather.CMWeatherManager$1: cyanogenmod.weather.CMWeatherManager this$0 +wangdaye.com.geometricweather.R$id: int activity_about_toolbar +wangdaye.com.geometricweather.R$id: int widget_week_icon_3 +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog +cyanogenmod.profiles.LockSettings$1: java.lang.Object[] newArray(int) +android.didikee.donate.R$dimen: int highlight_alpha_material_light +androidx.core.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.db.entities.HistoryEntity: int getNighttimeTemperature() +android.didikee.donate.R$color: int primary_dark_material_light +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onComplete() +androidx.constraintlayout.widget.R$attr: int radioButtonStyle +wangdaye.com.geometricweather.R$attr: int showAsAction +wangdaye.com.geometricweather.R$styleable: int[] FitSystemBarNestedScrollView +androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.jaredrummler.android.colorpicker.R$attr: int buttonStyle +okhttp3.internal.http2.Http2Codec: okhttp3.Response$Builder readResponseHeaders(boolean) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: int count +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_item_max_width +androidx.hilt.lifecycle.R$drawable: int notification_template_icon_low_bg +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationX +com.google.android.material.R$styleable: int AppCompatTheme_editTextColor +wangdaye.com.geometricweather.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop +com.google.android.material.R$drawable: int abc_scrubber_primary_mtrl_alpha +com.jaredrummler.android.colorpicker.R$attr: int actionBarStyle +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date getPublishDate() +com.xw.repo.bubbleseekbar.R$attr: int displayOptions +wangdaye.com.geometricweather.R$style: int Animation_AppCompat_Tooltip +androidx.preference.R$style: int ThemeOverlay_AppCompat +androidx.appcompat.R$drawable: int btn_radio_on_to_off_mtrl_animation +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_10 +com.google.android.material.R$styleable: int RecyclerView_stackFromEnd +okhttp3.internal.http.HttpDate +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level NONE +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_ICONS +james.adaptiveicon.R$styleable: int DrawerArrowToggle_gapBetweenBars +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: KeyguardExternalViewProviderService$Provider$ProviderImpl$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +androidx.lifecycle.Transformations$1: androidx.lifecycle.MediatorLiveData val$result +wangdaye.com.geometricweather.R$style: int material_button +james.adaptiveicon.R$styleable: int Toolbar_subtitleTextAppearance +androidx.activity.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_style +androidx.constraintlayout.widget.R$id: int gone +androidx.lifecycle.Transformations$1: void onChanged(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_gravity +james.adaptiveicon.R$attr: int colorBackgroundFloating +cyanogenmod.profiles.RingModeSettings$1: RingModeSettings$1() +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerX +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_gapBetweenBars +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled +com.google.android.material.circularreveal.CircularRevealGridLayout: CircularRevealGridLayout(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$layout: int select_dialog_item_material +com.google.android.material.R$styleable: int ActionBar_hideOnContentScroll +okhttp3.HttpUrl: okhttp3.HttpUrl$Builder newBuilder() +com.turingtechnologies.materialscrollbar.R$style: int Base_AlertDialog_AppCompat +androidx.preference.R$attr: int alertDialogTheme +com.google.android.material.R$styleable: int MenuGroup_android_checkableBehavior +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: boolean isDisposed() +retrofit2.RequestBuilder: void addHeaders(okhttp3.Headers) +androidx.preference.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.lifecycle.ProcessLifecycleOwner: java.lang.Runnable mDelayedPauseRunnable +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textColorSearchUrl +wangdaye.com.geometricweather.R$styleable: int MenuItem_contentDescription +androidx.preference.R$string: int abc_menu_shift_shortcut_label +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int priority +com.google.android.material.R$attr: int materialCalendarTheme +wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingLeft +androidx.drawerlayout.widget.DrawerLayout: void setDrawerListener(androidx.drawerlayout.widget.DrawerLayout$DrawerListener) +com.google.android.material.R$styleable: int SearchView_searchHintIcon +wangdaye.com.geometricweather.R$styleable: int ClockFaceView_valueTextColor +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_altSrc +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_Icon +io.reactivex.Observable: io.reactivex.Observable using(java.util.concurrent.Callable,io.reactivex.functions.Function,io.reactivex.functions.Consumer,boolean) +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +okhttp3.internal.tls.BasicTrustRootIndex +okhttp3.internal.cache.CacheInterceptor$1: CacheInterceptor$1(okhttp3.internal.cache.CacheInterceptor,okio.BufferedSource,okhttp3.internal.cache.CacheRequest,okio.BufferedSink) +androidx.preference.R$style: int Base_V7_Theme_AppCompat +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalGap +com.github.rahatarmanahmed.cpv.R +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String LocalizedName +retrofit2.Platform: java.util.concurrent.Executor defaultCallbackExecutor() +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,int) +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: MfForecastResult$DailyForecast() +cyanogenmod.app.suggest.IAppSuggestManager: boolean handles(android.content.Intent) +com.google.android.material.R$styleable: int Chip_chipStartPadding +com.google.android.material.chip.Chip: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.google.android.material.R$styleable: int ActionBar_contentInsetRight +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableItem_android_drawable +retrofit2.adapter.rxjava2.Result: java.lang.Throwable error +androidx.appcompat.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveData(java.lang.String,java.lang.Object) +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_margin +androidx.hilt.work.R$style: int Widget_Compat_NotificationActionText +okhttp3.internal.platform.Platform: void configureSslSocketFactory(javax.net.ssl.SSLSocketFactory) +com.google.android.material.R$styleable: int TextInputLayout_endIconCheckable +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTintMode +com.google.android.material.appbar.AppBarLayout: float getTargetElevation() +wangdaye.com.geometricweather.R$id: int group_divider +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_titleCondensed +wangdaye.com.geometricweather.R$id: int never +com.google.android.material.R$style: int Base_Widget_AppCompat_ActivityChooserView +android.didikee.donate.R$attr: int preserveIconSpacing +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_positiveButtonText +androidx.constraintlayout.helper.widget.Flow: void setWrapMode(int) +com.google.android.material.R$layout: int material_chip_input_combo +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +cyanogenmod.app.CustomTile$ExpandedStyle: int styleId +okhttp3.internal.http1.Http1Codec$AbstractSource: long read(okio.Buffer,long) +okhttp3.internal.http2.Header: Header(okio.ByteString,okio.ByteString) +com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_Primary +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastVerticalStyle +wangdaye.com.geometricweather.R$attr: int actionBarTheme +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +wangdaye.com.geometricweather.R$style: int Preference_SwitchPreferenceCompat +com.google.android.material.R$drawable: int material_ic_menu_arrow_down_black_24dp +com.google.android.material.R$styleable: int KeyAttribute_android_transformPivotY +wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_default +androidx.preference.R$drawable: int notification_bg_normal_pressed +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_Snackbar +cyanogenmod.app.ICMStatusBarManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_0 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorPrimary +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +com.xw.repo.bubbleseekbar.R$layout: int select_dialog_singlechoice_material +retrofit2.RequestBuilder: okhttp3.Request$Builder requestBuilder +com.google.android.material.R$drawable: int abc_text_select_handle_left_mtrl_light +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +androidx.appcompat.R$attr: int borderlessButtonStyle +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_curveFit +cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean done +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void drain() +cyanogenmod.providers.ThemesContract$ThemesColumns: ThemesContract$ThemesColumns() +androidx.preference.R$id: R$id() +okio.SegmentedByteString: java.lang.String string(java.nio.charset.Charset) +androidx.vectordrawable.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.R$color: int mtrl_scrim_color +androidx.preference.R$dimen: int abc_action_bar_stacked_tab_max_width +wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_chainStyle +wangdaye.com.geometricweather.R$attr: int spinnerStyle +wangdaye.com.geometricweather.R$color +com.bumptech.glide.integration.okhttp.R$id: int notification_main_column +cyanogenmod.weather.ICMWeatherManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +androidx.customview.R$styleable: int FontFamilyFont_fontWeight +androidx.appcompat.R$attr: int autoSizeMinTextSize +com.google.android.material.internal.FlowLayout: void setItemSpacing(int) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyle +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_strokeColor +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType START +androidx.appcompat.R$styleable: int AppCompatTheme_windowNoTitle +com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_Primary +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_disabled_material_light +android.didikee.donate.R$attr: int measureWithLargestChild +com.google.android.material.R$attr: int paddingEnd +android.didikee.donate.R$drawable: int abc_ic_menu_overflow_material +com.google.android.material.R$attr: int layout_constraintVertical_bias +com.bumptech.glide.integration.okhttp.R$dimen: int compat_notification_large_icon_max_width +androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat +retrofit2.ParameterHandler$PartMap: java.lang.reflect.Method method +cyanogenmod.weather.CMWeatherManager$RequestStatus +wangdaye.com.geometricweather.R$string: int key_location_service +androidx.transition.R$id: int line1 +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_BYTES +wangdaye.com.geometricweather.R$id: int moldIcon +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$string: int feedback_request_location_in_background +com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_material_dark +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean unRegisterThermalListener(cyanogenmod.hardware.IThermalListenerCallback) +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: boolean equals(java.lang.Object) +okio.ByteString: okio.ByteString encodeString(java.lang.String,java.nio.charset.Charset) +okhttp3.CacheControl: boolean noTransform() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_percent +androidx.constraintlayout.widget.R$styleable: int[] ActivityChooserView +com.google.android.material.R$attr: int windowMinWidthMinor +androidx.appcompat.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.common.ui.widgets.TagView: int getCheckedBackgroundColor() +com.turingtechnologies.materialscrollbar.R$id: int icon_group +wangdaye.com.geometricweather.R$attr: int customNavigationLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean getPrecipitationProbability() +james.adaptiveicon.R$id: int action_bar_activity_content +com.google.android.material.R$layout: int test_design_radiobutton +androidx.viewpager.R$layout +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$drawable: int notification_template_icon_low_bg +androidx.preference.R$dimen: int abc_text_size_subhead_material +wangdaye.com.geometricweather.R$string: int mtrl_picker_out_of_range +androidx.constraintlayout.widget.R$style: int Widget_Compat_NotificationActionContainer +androidx.constraintlayout.widget.R$dimen: int tooltip_y_offset_touch +com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +androidx.recyclerview.R$id: int accessibility_custom_action_18 +androidx.hilt.work.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$drawable: int weather_sleet_3 +androidx.drawerlayout.R$drawable: int notification_bg_normal +james.adaptiveicon.R$styleable: int AppCompatTheme_dropDownListViewStyle +com.turingtechnologies.materialscrollbar.R$color: int cardview_shadow_start_color +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.util.List text +com.google.android.material.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_RC4_128_SHA +com.google.android.material.floatingactionbutton.FloatingActionButton: int getSizeDimension() +cyanogenmod.themes.IThemeService$Stub$Proxy: void rebuildResourceCache() +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPadding +wangdaye.com.geometricweather.R$styleable: int TouchScrollBar_msb_hideDelayInMilliseconds +androidx.constraintlayout.widget.R$id: int path wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date getUpdateDate() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitationProbability -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_interval -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -wangdaye.com.geometricweather.R$drawable: int weather_hail -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -androidx.preference.R$string: int abc_searchview_description_search -wangdaye.com.geometricweather.R$string: int transition_activity_search_bar -cyanogenmod.providers.CMSettings$DelimitedListValidator: boolean validate(java.lang.String) -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: boolean isDisposed() -cyanogenmod.app.PartnerInterface: java.lang.String getCurrentHotwordPackageName() -wangdaye.com.geometricweather.R$attr: int fabAlignmentMode -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String description -androidx.constraintlayout.widget.R$styleable: int State_android_id -okhttp3.OkHttpClient: int callTimeoutMillis() -androidx.fragment.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: CaiYunMainlyResult$CurrentBean() -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat -okhttp3.CacheControl: boolean mustRevalidate() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_0 -com.google.android.material.R$styleable: int Constraint_constraint_referenced_ids -com.turingtechnologies.materialscrollbar.R$id: int line1 -com.google.android.material.R$styleable: int AppCompatTheme_windowActionBar -wangdaye.com.geometricweather.R$string: int sp_widget_day_setting -okhttp3.Route: okhttp3.Address address() -james.adaptiveicon.R$attr: int buttonGravity -androidx.constraintlayout.widget.R$styleable: int[] LinearLayoutCompat_Layout -retrofit2.DefaultCallAdapterFactory$1: DefaultCallAdapterFactory$1(retrofit2.DefaultCallAdapterFactory,java.lang.reflect.Type,java.util.concurrent.Executor) -android.didikee.donate.R$attr: int actionBarPopupTheme -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemBackground -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: android.os.IBinder asBinder() -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: int complete -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onSubscribe(org.reactivestreams.Subscription) -androidx.preference.R$attr: int alphabeticModifiers -james.adaptiveicon.R$attr: int switchTextAppearance -com.google.android.material.R$attr: int state_dragged -okhttp3.OkHttpClient: boolean followSslRedirects() -com.google.android.material.textfield.TextInputLayout: void addOnEndIconChangedListener(com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: AccuCurrentResult$RealFeelTemperatureShade$Metric() -com.google.gson.internal.LinkedTreeMap: LinkedTreeMap() -androidx.preference.R$style: int Base_Widget_AppCompat_ListPopupWindow -com.google.android.material.bottomappbar.BottomAppBar: void setTitle(java.lang.CharSequence) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_titleCondensed -com.google.android.material.R$style: int Widget_AppCompat_ProgressBar -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String EnglishName -okio.Okio -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_DarkActionBar -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int MISSED_STATE -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.jaredrummler.android.colorpicker.R$attr: int actionModePasteDrawable -androidx.vectordrawable.animated.R$attr: int ttcIndex -cyanogenmod.library.R$attr: int settingsActivity -wangdaye.com.geometricweather.R$string: int tomorrow -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onNext(java.lang.Object) -okhttp3.Address: java.net.Proxy proxy() -com.jaredrummler.android.colorpicker.R$style: int Base_V28_Theme_AppCompat -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$styleable: int TextInputLayout_placeholderTextColor -com.github.rahatarmanahmed.cpv.CircularProgressView$5 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitationProbability -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets -androidx.core.R$style: int TextAppearance_Compat_Notification -com.google.android.material.badge.BadgeDrawable$SavedState -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function6) -wangdaye.com.geometricweather.db.entities.LocationEntity: float longitude -okhttp3.Cookie: java.lang.String value() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconEndPadding -androidx.coordinatorlayout.R$attr: int fontVariationSettings -okhttp3.WebSocket: boolean send(java.lang.String) -androidx.transition.R$layout: int notification_template_custom_big -cyanogenmod.profiles.StreamSettings: boolean mDirty -cyanogenmod.profiles.BrightnessSettings: int getValue() -cyanogenmod.hardware.ICMHardwareService: int[] getDisplayGammaCalibration(int) -com.google.android.material.R$styleable: int MaterialCheckBox_buttonTint -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: long produced -wangdaye.com.geometricweather.R$drawable: int notif_temp_39 -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_TextView -androidx.activity.R$styleable: R$styleable() -com.google.android.material.R$styleable: int MenuGroup_android_checkableBehavior -okhttp3.internal.http.RealResponseBody -okhttp3.internal.connection.RouteSelector: int nextProxyIndex -com.google.android.material.R$attr: int alertDialogStyle -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_activated_mtrl_alpha -androidx.preference.R$attr: int contentInsetStart -retrofit2.RequestBuilder: okhttp3.FormBody$Builder formBuilder -retrofit2.adapter.rxjava2.ResultObservable -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_clear -androidx.hilt.R$id: int visible_removing_fragment_view_tag -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String defenseIcon -james.adaptiveicon.R$attr: int buttonTintMode -androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_weight -com.google.android.material.R$id: int action_menu_divider -wangdaye.com.geometricweather.R$dimen: int mtrl_card_elevation -androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: AccuDailyResult$DailyForecasts$Night$LocalSource() -wangdaye.com.geometricweather.R$layout: int fragment_main -com.jaredrummler.android.colorpicker.R$dimen: int notification_content_margin_start -android.didikee.donate.R$styleable: int SearchView_voiceIcon -wangdaye.com.geometricweather.R$drawable: int notif_temp_27 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -com.google.android.material.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder setType(okhttp3.MediaType) -james.adaptiveicon.R$drawable: int abc_seekbar_track_material -com.google.android.material.internal.VisibilityAwareImageButton: void setVisibility(int) -okio.BufferedSource: short readShort() -wangdaye.com.geometricweather.db.entities.AlertEntity: void setContent(java.lang.String) -james.adaptiveicon.R$layout: int notification_template_part_chronometer -james.adaptiveicon.R$styleable: int ActionBar_contentInsetEndWithActions -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_1 -wangdaye.com.geometricweather.R$drawable: int weather_rain -com.jaredrummler.android.colorpicker.R$attr: int positiveButtonText -io.reactivex.internal.subscribers.DeferredScalarSubscriber: boolean hasValue -wangdaye.com.geometricweather.GeometricWeather: GeometricWeather() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf -com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingRight() -io.reactivex.internal.subscriptions.DeferredScalarSubscription: void cancel() -androidx.preference.R$styleable: int TextAppearance_android_typeface -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Body2 -androidx.appcompat.R$drawable: int abc_ic_star_half_black_36dp -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: int UnitType -com.turingtechnologies.materialscrollbar.R$layout: int notification_template_part_time -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.internal.util.AtomicThrowable errors -androidx.fragment.R$layout: int notification_action -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_DayNight -androidx.hilt.work.R$attr: R$attr() -wangdaye.com.geometricweather.R$styleable: int Variant_constraints -androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityStopped(android.app.Activity) -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_to_on_mtrl_000 -androidx.appcompat.R$dimen: int notification_small_icon_background_padding -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String PROFILE -cyanogenmod.weather.WeatherInfo$1: WeatherInfo$1() -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float o3 -cyanogenmod.app.CustomTile$ExpandedItem$1: CustomTile$ExpandedItem$1() -android.didikee.donate.R$attr: int closeItemLayout -com.google.android.material.R$color: int material_slider_thumb_color -com.google.android.material.datepicker.DateValidatorPointBackward -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabTextStyle -androidx.legacy.coreutils.R$attr: int fontProviderPackage -android.didikee.donate.R$styleable: int TextAppearance_android_textColorLink -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: java.lang.String Unit -wangdaye.com.geometricweather.R$attr: int actionModeBackground -wangdaye.com.geometricweather.R$string: int abc_action_mode_done -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.Long id -wangdaye.com.geometricweather.R$layout: int spinner_text -cyanogenmod.hardware.CMHardwareManager: int getVibratorDefaultIntensity() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: java.util.Date Rise -cyanogenmod.providers.CMSettings: java.lang.String TAG -androidx.constraintlayout.widget.R$style: int Widget_Compat_NotificationActionText -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceTheme -com.google.android.material.R$string: int mtrl_picker_text_input_date_range_end_hint -okhttp3.internal.Util: java.lang.String format(java.lang.String,java.lang.Object[]) -androidx.appcompat.R$attr: int iconTintMode -androidx.preference.R$styleable: int Preference_persistent -com.google.android.material.R$attr: int deltaPolarRadius -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_isEnabled -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_height_fullscreen -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTopCompat -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -okhttp3.internal.ws.WebSocketWriter: okio.Sink newMessageSink(int,long) -wangdaye.com.geometricweather.R$string: int settings_title_unit -androidx.preference.R$style: int Theme_AppCompat_Light -com.google.android.material.R$attr: int textAppearanceBody1 -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog -androidx.constraintlayout.widget.R$attr: int drawPath -retrofit2.Platform: boolean isDefaultMethod(java.lang.reflect.Method) -com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd -android.didikee.donate.R$attr: int actionModeCloseButtonStyle -androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -com.jaredrummler.android.colorpicker.R$id: int icon_frame -androidx.hilt.R$id: int action_divider -okio.Util: void checkOffsetAndCount(long,long,long) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dividerHorizontal -androidx.vectordrawable.animated.R$integer: R$integer() -wangdaye.com.geometricweather.R$attr: int actionOverflowButtonStyle -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Medium -androidx.appcompat.resources.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterTextColor -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$ItemAnimator getItemAnimator() +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_warmth +james.adaptiveicon.R$attr: int backgroundTintMode +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver observer +okhttp3.Cookie: boolean httpOnly() +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: io.reactivex.Observer downstream +androidx.activity.R$layout: int custom_dialog +androidx.vectordrawable.animated.R$drawable: int notification_action_background +okhttp3.internal.http2.Http2: java.lang.String[] FRAME_NAMES +com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Class,java.lang.Class) +androidx.lifecycle.MethodCallsLogger: boolean approveCall(java.lang.String,int) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: long updatedOn +wangdaye.com.geometricweather.R$string: int feedback_updating_weather_data +okio.Sink: okio.Timeout timeout() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: java.lang.String desc +androidx.hilt.work.R$layout +com.google.android.material.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +cyanogenmod.weather.WeatherInfo$DayForecast: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlHighlight +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconTint +androidx.transition.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragThreshold +androidx.hilt.lifecycle.R$attr: int ttcIndex +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int[] RecycleListView +com.google.android.material.R$attr: int layout_constraintStart_toEndOf +okhttp3.HttpUrl: java.lang.String queryParameter(java.lang.String) +cyanogenmod.app.CustomTile: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$string: int not_set +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: java.lang.String desc +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int state +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constrainedWidth +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_controlBackground +androidx.constraintlayout.helper.widget.Flow: void setHorizontalGap(int) +okhttp3.internal.ws.RealWebSocket: boolean writeOneFrame() +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedWritableDb(java.lang.String) +androidx.preference.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Dialog +com.google.android.material.R$string: int mtrl_picker_date_header_title +cyanogenmod.app.CustomTileListenerService: void registerAsSystemService(android.content.Context,android.content.ComponentName,int) +androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchAnchorSide +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_colorShape +wangdaye.com.geometricweather.R$drawable: int ic_android +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_FORWARD_LOOKUP_VALIDATOR +com.google.android.material.chip.ChipGroup: void setDividerDrawableHorizontal(android.graphics.drawable.Drawable) +com.google.android.material.progressindicator.ProgressIndicator: void setAnimatorDurationScaleProvider(com.google.android.material.progressindicator.AnimatorDurationScaleProvider) +androidx.lifecycle.LifecycleOwner +androidx.viewpager2.R$color +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Switch +com.google.gson.stream.JsonReader: long peekedLong +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getThumbTintList() +com.turingtechnologies.materialscrollbar.R$string: int password_toggle_content_description +com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Badge +com.turingtechnologies.materialscrollbar.R$id: int split_action_bar +androidx.transition.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitationDuration() +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabText +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_voice +androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_width_major +androidx.constraintlayout.widget.R$styleable: int Layout_barrierMargin +com.jaredrummler.android.colorpicker.R$string: int status_bar_notification_info_overflow +okio.RealBufferedSource: java.lang.String readUtf8(long) +com.google.android.material.R$color: int button_material_dark +retrofit2.HttpServiceMethod: okhttp3.Call$Factory callFactory +io.reactivex.Observable: io.reactivex.Observable flatMapMaybe(io.reactivex.functions.Function) +androidx.core.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_trendRecyclerView +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_EditText +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onBouncerShowing(boolean) +com.google.android.material.R$id: int accessibility_custom_action_10 +androidx.dynamicanimation.R$drawable: int notify_panel_notification_icon_bg +com.google.android.material.R$styleable: int SearchView_commitIcon +com.google.android.material.R$integer: int config_tooltipAnimTime +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int ON_NEXT +cyanogenmod.themes.ThemeChangeRequest: void writeToParcel(android.os.Parcel,int) +com.xw.repo.bubbleseekbar.R$attr: int editTextBackground +com.google.android.material.R$id: int pin +okhttp3.internal.platform.Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_width_minor +wangdaye.com.geometricweather.R$drawable: int ic_menu_up +androidx.preference.R$styleable: int TextAppearance_android_shadowColor +james.adaptiveicon.R$styleable: int AppCompatTextView_textAllCaps +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +com.google.android.material.R$dimen: int mtrl_progress_indicator_full_rounded_corner_radius +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_orderInCategory +wangdaye.com.geometricweather.background.polling.work.worker.TodayForecastUpdateWorker: TodayForecastUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) +androidx.appcompat.view.menu.ListMenuItemView: void setCheckable(boolean) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: void run() +com.google.gson.stream.JsonReader: int PEEKED_END_ARRAY +androidx.preference.R$attr: int colorControlActivated +androidx.preference.R$attr: int trackTint +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_FULL_COLOR +androidx.recyclerview.widget.RecyclerView: void removeOnChildAttachStateChangeListener(androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener) +james.adaptiveicon.R$style: int Animation_AppCompat_Tooltip +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context) +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getHintTextColor() +com.google.android.material.R$attr: int suggestionRowLayout +androidx.constraintlayout.widget.R$styleable: int State_constraints +wangdaye.com.geometricweather.db.entities.HourlyEntity: boolean getDaylight() +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_DayNight +wangdaye.com.geometricweather.R$layout: int expand_button +wangdaye.com.geometricweather.R$attr: int bsb_section_count +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableLeft +wangdaye.com.geometricweather.R$styleable: int[] View +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String pubTime +androidx.constraintlayout.widget.R$color: int abc_hint_foreground_material_light +androidx.lifecycle.extensions.R$id: int action_image +com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +android.didikee.donate.R$id: int textSpacerNoTitle +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowRadius +com.google.android.material.R$dimen: int mtrl_large_touch_target +com.google.android.material.R$styleable: int KeyAttribute_android_scaleY +android.didikee.donate.R$style: int Base_Widget_AppCompat_ButtonBar +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeight +androidx.appcompat.widget.AppCompatTextView: int getAutoSizeStepGranularity() +androidx.lifecycle.service.R: R() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.search.SearchActivity: SearchActivity() +okhttp3.internal.http.RealInterceptorChain: java.util.List interceptors +androidx.constraintlayout.widget.R$id: int rectangles +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_material +com.jaredrummler.android.colorpicker.R$attr: int dropDownListViewStyle +androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$attr: int checkedIconMargin +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_pressed_holo_light +androidx.preference.R$attr: int progressBarPadding +wangdaye.com.geometricweather.R$attr: int labelVisibilityMode +androidx.constraintlayout.widget.R$id: int action_bar_root +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +cyanogenmod.externalviews.ExternalView$3 +com.google.android.material.R$dimen: int material_helper_text_font_1_3_padding_top +androidx.preference.R$layout: int abc_list_menu_item_icon +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: long contentLength() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoDestination +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAVIGATION_BAR_MENU_ARROW_KEYS_VALIDATOR +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean getImages() +com.google.android.material.R$styleable: int ActionBar_homeLayout +com.google.android.material.textfield.TextInputLayout: int getBaseline() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_DrawerArrowToggle +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Large +androidx.appcompat.R$anim: R$anim() +com.turingtechnologies.materialscrollbar.R$id: int title_template +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: Minutely(java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer apparentTemperature +androidx.preference.R$attr: int lineHeight +cyanogenmod.app.ThemeVersion$ComponentVersion: cyanogenmod.app.ThemeComponent getComponent() +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_splitTrack +com.google.android.material.R$style: int Widget_AppCompat_Spinner +com.jaredrummler.android.colorpicker.R$attr: int iconifiedByDefault +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupMenu +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +com.google.android.material.R$attr: int inverse +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean outputFused +com.google.android.material.R$styleable: int[] ClockFaceView +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_suggestionRowLayout +okhttp3.internal.http2.Http2Connection$7: okhttp3.internal.http2.ErrorCode val$errorCode +okhttp3.Request$Builder: okhttp3.Request$Builder delete() +wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_inflatedId +com.jaredrummler.android.colorpicker.R$attr: int actionOverflowButtonStyle +cyanogenmod.app.Profile$ProfileTrigger: int mType +com.google.android.material.circularreveal.CircularRevealRelativeLayout +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: java.lang.String address +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onNext(java.lang.Object) +okio.Pipe: okio.Buffer buffer +androidx.hilt.work.R$styleable: int FontFamilyFont_android_font +androidx.coordinatorlayout.R$id: int accessibility_custom_action_5 +retrofit2.adapter.rxjava2.CallEnqueueObservable: void subscribeActual(io.reactivex.Observer) +com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior +cyanogenmod.providers.CMSettings$System: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) +androidx.recyclerview.R$color: int secondary_text_default_material_light +androidx.preference.R$attr: int preferenceStyle +android.didikee.donate.R$dimen: int abc_dialog_fixed_width_major +androidx.hilt.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$integer: int cpv_default_max_progress +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SearchView_ActionBar +wangdaye.com.geometricweather.db.entities.DaoSession +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void dispose() +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerColor +cyanogenmod.weather.CMWeatherManager: int requestWeatherUpdate(android.location.Location,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.concurrent.atomic.AtomicReference upstream +com.google.android.material.R$styleable: int CustomAttribute_customDimension +com.bumptech.glide.R$attr: int statusBarBackground +com.google.android.material.R$styleable: int TextInputLayout_endIconContentDescription +wangdaye.com.geometricweather.R$color: int ripple_material_light +androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_android_alpha +androidx.fragment.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.R$styleable: int MenuView_android_windowAnimationStyle +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_title_material +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvIndex +wangdaye.com.geometricweather.R$drawable: int notif_temp_55 +androidx.constraintlayout.widget.R$attr: int overlapAnchor +wangdaye.com.geometricweather.R$id: int outgoing +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeFindDrawable +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_pivotY +cyanogenmod.app.suggest.IAppSuggestProvider: java.util.List getSuggestions(android.content.Intent) +androidx.constraintlayout.widget.R$attr: int showText +james.adaptiveicon.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +org.greenrobot.greendao.AbstractDaoSession: void update(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onError(java.lang.Throwable) +androidx.lifecycle.LifecycleRegistry: LifecycleRegistry(androidx.lifecycle.LifecycleOwner) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: MfRainResult$Position() +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_fabSize +wangdaye.com.geometricweather.R$id: int mtrl_picker_fullscreen +okhttp3.internal.http.HttpCodec: void writeRequestHeaders(okhttp3.Request) +okhttp3.HttpUrl: java.lang.String host() +com.google.android.material.internal.NavigationMenuItemView: void setCheckable(boolean) +androidx.preference.R$attr: int entries +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_drawableSize +io.reactivex.internal.subscriptions.DeferredScalarSubscription: void request(long) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.disposables.Disposable upstream +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: double mLow +wangdaye.com.geometricweather.R$style: int Base_AlertDialog_AppCompat_Light +com.xw.repo.bubbleseekbar.R$attr: int actionBarItemBackground +io.reactivex.internal.operators.observable.ObservableGroupBy$State: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +org.greenrobot.greendao.AbstractDaoMaster: void registerDaoClass(java.lang.Class) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Filter +io.reactivex.internal.util.HashMapSupplier: java.util.concurrent.Callable asCallable() +androidx.constraintlayout.widget.R$id: int icon +androidx.transition.R$styleable: int GradientColor_android_centerX +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,boolean) +androidx.fragment.R$anim: int fragment_close_exit +androidx.constraintlayout.widget.R$styleable: int[] RecycleListView +com.google.android.material.internal.NavigationMenuView: int getWindowAnimations() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: android.os.IBinder asBinder() androidx.constraintlayout.widget.R$drawable: int abc_list_selector_background_transition_holo_dark -com.google.android.material.R$attr: int cornerFamilyBottomLeft -retrofit2.KotlinExtensions$await$4$2: void onFailure(retrofit2.Call,java.lang.Throwable) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -androidx.constraintlayout.widget.R$attr: int tickMarkTintMode -android.didikee.donate.R$styleable: int AppCompatTheme_colorError -androidx.hilt.work.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.chip.Chip: float getTextEndPadding() -androidx.drawerlayout.R$drawable: int notification_bg_normal -okhttp3.internal.Internal: void setCache(okhttp3.OkHttpClient$Builder,okhttp3.internal.cache.InternalCache) -cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(android.os.Parcel) -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_contentScrim -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setO3(java.lang.String) -androidx.hilt.lifecycle.R$styleable: int[] ColorStateListItem -com.jaredrummler.android.colorpicker.R$attr: int subtitleTextStyle -androidx.lifecycle.MethodCallsLogger -androidx.coordinatorlayout.R$id: int accessibility_custom_action_6 -com.google.android.material.R$styleable: int ProgressIndicator_minHideDelay -androidx.preference.R$dimen: int abc_action_bar_default_height_material -com.turingtechnologies.materialscrollbar.R$attr: int submitBackground -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.functions.Function,int,io.reactivex.ObservableSource[]) -okhttp3.internal.http2.Http2Stream$StreamTimeout: okhttp3.internal.http2.Http2Stream this$0 -androidx.preference.R$attr: int queryBackground -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTextHelper -androidx.core.R$dimen: int notification_main_column_padding_top -cyanogenmod.weather.CMWeatherManager: java.util.Set access$000(cyanogenmod.weather.CMWeatherManager) -io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean offer(java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getTreeDescription() -com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior: AppBarLayout$ScrollingViewBehavior(android.content.Context,android.util.AttributeSet) -com.google.android.material.behavior.HideBottomViewOnScrollBehavior: HideBottomViewOnScrollBehavior(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_recyclerView -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_8 -com.google.android.material.R$style: int Base_Widget_AppCompat_Spinner_Underlined -androidx.appcompat.widget.Toolbar: int getCurrentContentInsetLeft() -androidx.appcompat.R$styleable: int SwitchCompat_trackTint -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.Long id -com.jaredrummler.android.colorpicker.R$styleable -com.jaredrummler.android.colorpicker.R$attr: int multiChoiceItemLayout -okio.Buffer: okio.ByteString digest(java.lang.String) -androidx.hilt.work.R$dimen: int compat_button_inset_horizontal_material -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_elevation +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: CNWeatherResult$WeatherX$InfoX() +com.google.android.material.R$attr: int flow_firstVerticalStyle +cyanogenmod.providers.CMSettings$NameValueCache: java.util.HashMap mValues +android.didikee.donate.R$styleable: int SwitchCompat_switchPadding +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: LocationEntityDao$Properties() +com.turingtechnologies.materialscrollbar.R$attr: int alpha +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart +com.google.android.material.R$string: int material_slider_range_start +okhttp3.internal.platform.JdkWithJettyBootPlatform +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_titleEnabled +com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_checked_circle +com.google.android.material.R$attr: int placeholderTextColor +org.greenrobot.greendao.AbstractDao: java.lang.Object loadCurrentOther(org.greenrobot.greendao.AbstractDao,android.database.Cursor,int) +com.bumptech.glide.R$styleable: int GradientColor_android_tileMode +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error +android.didikee.donate.R$layout: int abc_list_menu_item_layout +cyanogenmod.weather.WeatherInfo: java.lang.String mKey +com.google.android.material.R$styleable: int ImageFilterView_crossfade +wangdaye.com.geometricweather.R$id: int sin +com.turingtechnologies.materialscrollbar.R$attr: int actionModeCopyDrawable +androidx.appcompat.R$styleable: int AppCompatTheme_tooltipForegroundColor +cyanogenmod.profiles.StreamSettings: StreamSettings(int,int,boolean) +androidx.vectordrawable.R$dimen: int notification_small_icon_size_as_large +androidx.appcompat.R$drawable: int abc_btn_check_material_anim +androidx.constraintlayout.widget.R$attr: int dragDirection +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_creator +okhttp3.internal.ws.RealWebSocket$PingRunnable: void run() +com.bumptech.glide.load.resource.gif.GifFrameLoader: void setOnEveryFrameReadyListener(com.bumptech.glide.load.resource.gif.GifFrameLoader$OnEveryFrameListener) +com.google.android.material.R$styleable: int TextInputLayout_boxStrokeWidth +io.reactivex.Observable: io.reactivex.Observable concatMapEager(io.reactivex.functions.Function,int,int) +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.reflect.Type responseType +com.google.android.material.R$color: int mtrl_fab_icon_text_color_selector +com.google.android.material.R$attr: int passwordToggleDrawable +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$ItemAnimator getItemAnimator() +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarStyle +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTimestamp(long) +android.didikee.donate.R$attr: int voiceIcon +wangdaye.com.geometricweather.R$attr: int titleTextColor +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Subhead +androidx.preference.R$styleable: int Preference_android_icon +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +android.didikee.donate.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerColor +okhttp3.ResponseBody$BomAwareReader: java.nio.charset.Charset charset +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean +com.google.android.material.R$attr: int seekBarStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setVisibility(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean) +com.google.android.material.R$attr: int tabGravity +com.google.android.material.tabs.TabLayout: void setSelectedTabView(int) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float thunderstormPrecipitationProbability +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_background +cyanogenmod.providers.CMSettings$Global: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) +android.support.v4.os.IResultReceiver: void send(int,android.os.Bundle) +com.google.android.material.R$color: int design_icon_tint +androidx.preference.R$style: int Widget_AppCompat_CompoundButton_Switch +okhttp3.internal.http2.Hpack$Reader: okio.ByteString getName(int) +androidx.preference.R$styleable: int Toolbar_titleMarginEnd +okhttp3.internal.ws.WebSocketWriter: byte[] maskKey +wangdaye.com.geometricweather.R$layout: int activity_widget_config +com.google.android.material.R$styleable: int OnSwipe_onTouchUp +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWindLevel() +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotationY +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$style: int widget_week_icon +com.bumptech.glide.request.RequestCoordinator$RequestState: boolean isComplete +androidx.vectordrawable.animated.R$id: int tag_accessibility_heading +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +james.adaptiveicon.R$bool: R$bool() +com.google.android.material.R$styleable: int OnSwipe_dragThreshold +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getZh_TW() +okio.RealBufferedSink: okio.BufferedSink write(okio.Source,long) +okhttp3.internal.http2.PushObserver: boolean onHeaders(int,java.util.List,boolean) +cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder(cyanogenmod.weather.WeatherInfo) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: AccuDailyResult$DailyForecasts$Night$Rain() +wangdaye.com.geometricweather.R$styleable: int Layout_barrierMargin +com.google.android.material.R$styleable: int AlertDialog_buttonIconDimen +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textFontWeight +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: KeyguardExternalViewProviderService$Provider$ProviderImpl$7(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.Observer downstream +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type NONE +com.google.android.material.textfield.TextInputLayout: void setSuffixText(java.lang.CharSequence) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_wrapMode +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap +cyanogenmod.profiles.ConnectionSettings$BooleanState: int STATE_DISALED +okio.Pipe$PipeSink: void flush() +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicReference boundaryObserver +james.adaptiveicon.R$id: int message +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setHostname +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsShow(boolean) +com.google.android.material.R$attr: int activityChooserViewStyle +cyanogenmod.themes.ThemeChangeRequest$Builder: java.util.Map mThemeComponents +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner +androidx.work.impl.background.systemalarm.RescheduleReceiver +com.xw.repo.bubbleseekbar.R$layout: int abc_screen_content_include +com.google.android.material.R$styleable: int ConstraintSet_android_layout_height +com.google.android.material.R$styleable: int[] ActivityChooserView +androidx.constraintlayout.widget.R$dimen: int tooltip_vertical_padding +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$x +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Inverse +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastVerticalBias +okhttp3.HttpUrl: boolean percentEncoded(java.lang.String,int,int) +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +androidx.appcompat.R$drawable: int abc_textfield_search_activated_mtrl_alpha +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetEnd +okhttp3.internal.http2.Http2Writer: void headers(int,java.util.List) +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView getTrendItemView() +com.google.android.material.R$attr: int windowNoTitle +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer apparentTemperature +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$layout: int cpv_dialog_presets +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: java.lang.String Unit +androidx.loader.R$styleable: int FontFamilyFont_fontStyle +androidx.recyclerview.R$id: int accessibility_custom_action_15 +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String TODAYS_LOW_TEMPERATURE +androidx.constraintlayout.widget.R$id: int tag_screen_reader_focusable +retrofit2.Call: retrofit2.Call clone() +com.google.android.material.navigation.NavigationView: int getItemMaxLines() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getStreet() +okhttp3.CertificatePinner$Builder: okhttp3.CertificatePinner build() +androidx.activity.R$style: int TextAppearance_Compat_Notification_Title +com.jaredrummler.android.colorpicker.R$attr: int popupMenuStyle +okhttp3.internal.http2.Hpack$Reader: void clearDynamicTable() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Info +com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindowBackgroundState_state_above_anchor +android.didikee.donate.R$style: int TextAppearance_AppCompat_Menu +cyanogenmod.app.Profile$LockMode: Profile$LockMode() +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean deferredSetOnce(java.util.concurrent.atomic.AtomicReference,java.util.concurrent.atomic.AtomicLong,org.reactivestreams.Subscription) +okhttp3.CertificatePinner$Pin: okio.ByteString hash +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Long getId() +wangdaye.com.geometricweather.R$drawable: int notif_temp_112 +androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_toTopOf +com.google.android.material.slider.BaseSlider: float getMinSeparation() +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleDrawable(android.graphics.drawable.Drawable) +com.bumptech.glide.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.R$id: int bottomBar +androidx.preference.R$styleable: int AppCompatTheme_panelBackground +io.reactivex.Observable: io.reactivex.Completable concatMapCompletable(io.reactivex.functions.Function) +io.reactivex.Observable: io.reactivex.Observable concatEager(java.lang.Iterable,int,int) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeFindDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric +androidx.lifecycle.ViewModel: java.lang.Object setTagIfAbsent(java.lang.String,java.lang.Object) +android.didikee.donate.R$styleable: int Toolbar_android_minHeight +io.reactivex.Observable: io.reactivex.Observable concatEager(io.reactivex.ObservableSource,int,int) +androidx.coordinatorlayout.R$drawable: int notification_bg_low_pressed +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_minHeight +androidx.dynamicanimation.R$attr: int fontProviderPackage +androidx.constraintlayout.widget.R$attr: int hideOnContentScroll +okhttp3.internal.tls.CertificateChainCleaner: okhttp3.internal.tls.CertificateChainCleaner get(javax.net.ssl.X509TrustManager) +androidx.constraintlayout.widget.R$dimen: int abc_text_size_menu_header_material +retrofit2.OkHttpCall: boolean isCanceled() +com.google.android.material.R$layout: int notification_template_icon_group +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastVerticalStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast +androidx.constraintlayout.widget.R$attr: int actionDropDownStyle +cyanogenmod.externalviews.KeyguardExternalView$5 +androidx.preference.R$layout +android.didikee.donate.R$style: int Widget_AppCompat_Button_Borderless_Colored +com.google.android.material.R$attr: int layout_constraintRight_toRightOf +wangdaye.com.geometricweather.R$drawable: int ic_water +androidx.activity.ComponentActivity$2 +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: boolean isValid() +androidx.vectordrawable.R$dimen: int compat_button_inset_vertical_material +com.jaredrummler.android.colorpicker.R$attr: int switchMinWidth +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult +androidx.fragment.R$styleable: int GradientColor_android_centerX +androidx.hilt.R$id: int tag_accessibility_clickable_spans +androidx.constraintlayout.widget.R$id: int pathRelative +com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrimColor(int) +android.didikee.donate.R$color: int abc_btn_colored_text_material +androidx.customview.R$drawable: int notification_tile_bg +androidx.preference.R$anim: int abc_tooltip_enter +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.DailyEntity) +androidx.lifecycle.LiveData: java.lang.Object mData +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.google.android.material.R$dimen: int design_textinput_caption_translate_y +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String LABEL +com.google.gson.FieldNamingPolicy$1 +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.AlertEntityDao alertEntityDao +androidx.preference.R$style: int Base_V26_Widget_AppCompat_Toolbar +com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabBar +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void accept(io.reactivex.disposables.Disposable) +james.adaptiveicon.R$attr: int textColorSearchUrl +com.google.android.material.R$dimen: int abc_action_bar_subtitle_top_margin_material +androidx.hilt.R$styleable: int ColorStateListItem_android_color +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +androidx.appcompat.R$styleable: int[] LinearLayoutCompat_Layout +com.google.android.material.appbar.AppBarLayout: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() +cyanogenmod.weather.RequestInfo: android.location.Location getLocation() cyanogenmod.themes.IThemeProcessingListener: void onFinishedProcessing(java.lang.String) -com.google.android.material.R$styleable: int Constraint_layout_goneMarginTop -androidx.activity.R$attr: R$attr() -androidx.recyclerview.widget.RecyclerView: void setViewCacheExtension(androidx.recyclerview.widget.RecyclerView$ViewCacheExtension) -retrofit2.ParameterHandler$Header: ParameterHandler$Header(java.lang.String,retrofit2.Converter) -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColorItem_android_color -androidx.appcompat.R$attr: int ratingBarStyleSmall -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_TextInputLayout -com.bumptech.glide.integration.okhttp.R$layout: int notification_action_tombstone -cyanogenmod.app.CMTelephonyManager: android.content.Context mContext -com.google.android.material.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_min -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onStart() -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval valueOf(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_allowDividerAfterLastItem -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache sInstance -com.google.android.material.R$layout: int mtrl_picker_dialog -com.turingtechnologies.materialscrollbar.R$attr: int checkedTextViewStyle -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource -wangdaye.com.geometricweather.R$drawable: int ic_star_outline -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -androidx.vectordrawable.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd -androidx.transition.R$dimen -wangdaye.com.geometricweather.R$id: int startVertical -okhttp3.internal.http2.PushObserver$1 -cyanogenmod.themes.ThemeManager$1$1: void run() -com.turingtechnologies.materialscrollbar.R$id: int blocking -androidx.appcompat.widget.ActionMenuView: void setOverflowReserved(boolean) -com.google.android.material.R$attr: int paddingRightSystemWindowInsets -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginLeft -com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getIndicatorHeight() -androidx.hilt.work.R$attr: int fontProviderPackage -io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) -cyanogenmod.app.ProfileGroup$1: cyanogenmod.app.ProfileGroup[] newArray(int) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void dispose() -okhttp3.internal.http2.Header: int hashCode() -com.google.android.material.R$dimen: int mtrl_textinput_box_corner_radius_medium -wangdaye.com.geometricweather.R$style: int Base_V22_Theme_AppCompat -androidx.coordinatorlayout.R$attr: int fontProviderPackage -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemHorizontalPadding -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String unitId -com.google.android.material.R$styleable: int TextInputLayout_counterMaxLength -androidx.constraintlayout.widget.R$drawable: int abc_cab_background_top_mtrl_alpha -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableRight -com.google.android.material.bottomsheet.BottomSheetBehavior$SavedState: android.os.Parcelable$Creator CREATOR -com.bumptech.glide.R$dimen -cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile[] getProfiles() -androidx.viewpager2.R$dimen: int fastscroll_margin -wangdaye.com.geometricweather.R$string: int abc_shareactionprovider_share_with -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_anchor -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_min -okhttp3.ConnectionSpec: okhttp3.CipherSuite[] APPROVED_CIPHER_SUITES -cyanogenmod.app.CustomTile: CustomTile(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$string: int v7_preference_off -wangdaye.com.geometricweather.db.entities.DailyEntityDao: DailyEntityDao(org.greenrobot.greendao.internal.DaoConfig) -wangdaye.com.geometricweather.R$string: int settings_category_widget -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean setDisposable(io.reactivex.disposables.Disposable,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: java.lang.String Unit -okhttp3.Cookie: Cookie(java.lang.String,java.lang.String,long,java.lang.String,java.lang.String,boolean,boolean,boolean,boolean) -wangdaye.com.geometricweather.R$attr: int editTextColor -wangdaye.com.geometricweather.R$attr: int behavior_expandedOffset -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Item -com.google.android.material.R$string: int material_slider_range_end -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver -androidx.lifecycle.LifecycleRegistry: int getObserverCount() -android.didikee.donate.R$layout: int abc_search_dropdown_item_icons_2line -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActivityChooserView -android.didikee.donate.R$attr: int actionBarStyle -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean offer(java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.R$attr: int indicatorType -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableBottomCompat -wangdaye.com.geometricweather.R$id: int mtrl_picker_title_text -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void run() -androidx.recyclerview.R$attr: int alpha -androidx.vectordrawable.animated.R$id: int normal -wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_light -com.jaredrummler.android.colorpicker.R$attr: int colorBackgroundFloating -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceStyle -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean done -io.reactivex.internal.subscribers.StrictSubscriber -androidx.appcompat.R$color: int highlighted_text_material_dark -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_id -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_textLocale -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked -android.didikee.donate.R$id: int search_src_text -com.google.android.material.R$styleable: int MaterialButtonToggleGroup_singleSelection -com.google.android.material.chip.Chip: void setCloseIconVisible(int) -com.google.android.material.R$attr: int dividerHorizontal -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextAppearanceActive(int) -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_trendRecyclerView -androidx.preference.R$color: int material_grey_50 -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_roundPercent -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_item_min_width -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDate(java.util.Date) +com.google.android.material.R$id: int rounded +androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +androidx.recyclerview.R$styleable wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getShrinkMotionSpec() -com.google.android.material.R$drawable: int abc_btn_borderless_material -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_2 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_cut_mtrl_alpha -androidx.viewpager.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_xml -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.R$attr: int backgroundInsetStart -okhttp3.internal.platform.ConscryptPlatform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) -cyanogenmod.weather.WeatherLocation$1: java.lang.Object[] newArray(int) -com.google.android.material.navigation.NavigationView$SavedState -com.google.android.material.R$styleable: int ConstraintSet_flow_firstHorizontalBias -com.xw.repo.bubbleseekbar.R$string: int abc_activity_chooser_view_see_all -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2 -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showColorShades -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableLeftCompat -io.reactivex.internal.observers.DeferredScalarObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$dimen: int mtrl_btn_icon_padding -james.adaptiveicon.R$dimen: int notification_big_circle_margin -com.google.android.material.R$styleable: int Transition_android_id -androidx.constraintlayout.widget.R$styleable: int MenuItem_tooltipText -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_showText -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_liftOnScroll -com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_elevation -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$styleable: int AppBarLayoutStates_state_lifted -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerNext() -com.jaredrummler.android.colorpicker.R$id: R$id() -android.didikee.donate.R$dimen: int abc_dialog_padding_material -wangdaye.com.geometricweather.R$styleable: int View_paddingStart -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_list_padding_top_no_title -androidx.appcompat.R$attr: int paddingEnd -wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_creator -wangdaye.com.geometricweather.R$string: int key_speed_unit -okhttp3.internal.connection.RealConnection$1: okhttp3.internal.connection.StreamAllocation val$streamAllocation -androidx.constraintlayout.widget.R$color: int abc_search_url_text_normal -okhttp3.internal.Util: java.util.regex.Pattern VERIFY_AS_IP_ADDRESS -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void drain() -wangdaye.com.geometricweather.db.entities.DailyEntity: DailyEntity() -androidx.appcompat.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context,android.util.AttributeSet,int) -androidx.hilt.lifecycle.R$id: int icon -cyanogenmod.hardware.ICMHardwareService: java.lang.String getLtoDestination() -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderCerts -com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableTransition -com.turingtechnologies.materialscrollbar.R$string: int abc_action_bar_home_description -androidx.preference.R$style: int Animation_AppCompat_Tooltip -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setAddress(java.lang.String) -james.adaptiveicon.R$styleable: int AppCompatImageView_tint -androidx.appcompat.R$attr: int background -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language HUNGARIAN -androidx.appcompat.R$styleable: int CompoundButton_buttonCompat -okhttp3.internal.http.HttpHeaders: java.util.Set varyFields(okhttp3.Response) -wangdaye.com.geometricweather.R$styleable: int AlertDialog_showTitle -androidx.preference.R$dimen: int abc_text_size_menu_header_material -okhttp3.RequestBody$3: java.io.File val$file -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_letter_spacing -androidx.constraintlayout.widget.R$attr: int toolbarNavigationButtonStyle -okhttp3.CacheControl: int sMaxAgeSeconds() -com.github.rahatarmanahmed.cpv.BuildConfig: boolean DEBUG -cyanogenmod.app.BaseLiveLockManagerService: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -james.adaptiveicon.R$styleable: int AppCompatTextView_lineHeight -wangdaye.com.geometricweather.R$layout: int activity_card_display_manage -android.didikee.donate.R$attr: int dialogTheme -androidx.appcompat.resources.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_tooltipForegroundColor -androidx.work.R$layout: int notification_action -okhttp3.internal.platform.Platform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) -androidx.customview.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$attr: int layout -com.google.gson.stream.JsonScope: int CLOSED -okhttp3.internal.http2.Http2Connection: boolean access$300(okhttp3.internal.http2.Http2Connection) -wangdaye.com.geometricweather.R$drawable: int indicator_ltr -androidx.core.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconEnabled -wangdaye.com.geometricweather.R$string: int mtrl_picker_cancel -okhttp3.HttpUrl: java.lang.String PASSWORD_ENCODE_SET -okhttp3.RealCall: okhttp3.Call clone() -io.reactivex.internal.disposables.EmptyDisposable: void clear() -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_requestThemeChangeUpdates -com.turingtechnologies.materialscrollbar.R$id: int textSpacerNoButtons -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onDetach() -wangdaye.com.geometricweather.background.polling.work.worker.AsyncWorker -com.xw.repo.bubbleseekbar.R$id: int search_mag_icon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String en_US -androidx.preference.R$styleable: int Fragment_android_tag -com.xw.repo.bubbleseekbar.R$string: int abc_menu_space_shortcut_label -com.google.android.material.R$attr: int transitionFlags -androidx.work.impl.workers.CombineContinuationsWorker: CombineContinuationsWorker(android.content.Context,androidx.work.WorkerParameters) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorTextColor +wangdaye.com.geometricweather.R$id: int controller +okhttp3.internal.http2.Http2Connection: boolean pushedStream(int) +wangdaye.com.geometricweather.R$styleable: int Preference_android_shouldDisableView +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float rainPrecipitation +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +com.google.android.material.R$dimen: int mtrl_shape_corner_size_medium_component +james.adaptiveicon.R$styleable: int AppCompatTheme_popupWindowStyle +wangdaye.com.geometricweather.R$styleable: int Preference_summary +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindChillTemperature +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_TextView_SpinnerItem +okio.Buffer: long size() +androidx.constraintlayout.widget.R$id: int actions +androidx.appcompat.R$style: int Widget_AppCompat_TextView +com.xw.repo.bubbleseekbar.R$styleable: int[] ActivityChooserView +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetStart +androidx.appcompat.R$id: int accessibility_custom_action_7 +android.didikee.donate.R$drawable: int abc_textfield_search_material +wangdaye.com.geometricweather.R$dimen: int design_fab_border_width +com.jaredrummler.android.colorpicker.R$attr: int preferenceScreenStyle +android.support.v4.os.IResultReceiver$Default: android.os.IBinder asBinder() +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable) +androidx.cardview.R$color: int cardview_shadow_end_color +androidx.drawerlayout.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$color: int material_cursor_color +androidx.viewpager.widget.PagerTabStrip: PagerTabStrip(android.content.Context,android.util.AttributeSet) +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_QUICK_QS_PULLDOWN +james.adaptiveicon.R$styleable: int TextAppearance_android_textColorLink +androidx.constraintlayout.widget.Placeholder: void setContentId(int) +androidx.preference.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +retrofit2.http.PUT: java.lang.String value() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String parent +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_track +wangdaye.com.geometricweather.R$id: int transition_current_scene +androidx.preference.R$attr: int dialogPreferredPadding +android.didikee.donate.R$styleable: int[] Toolbar +wangdaye.com.geometricweather.R$attr: int bsb_touch_to_seek +androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListPopupWindow +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SeekBar +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver +wangdaye.com.geometricweather.R$attr: int flow_firstHorizontalStyle +com.jaredrummler.android.colorpicker.R$attr: int contentInsetRight +androidx.preference.R$style: int Preference_Information com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -wangdaye.com.geometricweather.R$layout: int item_weather_icon -androidx.recyclerview.R$drawable: int notification_bg -com.xw.repo.bubbleseekbar.R$id: int tabMode -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_top -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator -androidx.appcompat.R$styleable: int PopupWindow_android_popupBackground -wangdaye.com.geometricweather.R$drawable: int notif_temp_65 -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent BOOT_ANIM -android.didikee.donate.R$attr: int actionModeStyle -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_fontFamily -wangdaye.com.geometricweather.R$id: int action_menu_presenter -com.google.android.material.chip.ChipGroup: void setShowDividerVertical(int) -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -cyanogenmod.providers.CMSettings$Secure: java.lang.String KEYBOARD_BRIGHTNESS -wangdaye.com.geometricweather.R$attr: int trackTint -androidx.lifecycle.extensions.R$id: int time -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm10Desc(java.lang.String) -james.adaptiveicon.R$attr: int actionViewClass -androidx.core.widget.NestedScrollView: float getVerticalScrollFactorCompat() -androidx.constraintlayout.widget.R$attr: int waveDecay -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_ttcIndex -okhttp3.internal.tls.DistinguishedNameParser -androidx.preference.R$styleable: int AppCompatTheme_toolbarStyle -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger -androidx.appcompat.R$style: int Base_V21_Theme_AppCompat -androidx.preference.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_2_30 -wangdaye.com.geometricweather.R$attr: int buttonBarNeutralButtonStyle +android.didikee.donate.R$attr: int displayOptions +com.xw.repo.bubbleseekbar.R$attr: int colorBackgroundFloating +com.bumptech.glide.integration.okhttp.R$styleable: R$styleable() +okhttp3.Cache$2: Cache$2(okhttp3.Cache) +com.google.android.material.button.MaterialButtonToggleGroup: void setSingleSelection(int) +wangdaye.com.geometricweather.R$styleable: int[] TabLayout +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_Alert +androidx.hilt.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.db.entities.DailyEntity: void setAqiIndex(java.lang.Integer) +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Light +cyanogenmod.externalviews.ExternalView$5: void run() +io.reactivex.Observable: io.reactivex.Observer subscribeWith(io.reactivex.Observer) +james.adaptiveicon.R$attr: int contentInsetLeft +androidx.constraintlayout.widget.R$attr: int layout_constraintCircle +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver inner +io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier valueOf(java.lang.String) +com.google.android.material.R$id: int standard +androidx.fragment.R$id: int accessibility_custom_action_25 +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarButtonStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer humidity +com.google.android.material.appbar.HeaderScrollingViewBehavior: HeaderScrollingViewBehavior(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int MaterialButton_android_background +androidx.constraintlayout.widget.R$attr: int percentWidth +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_25 +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Body2 +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_processThemeResources +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeErrorColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_2 +okio.AsyncTimeout$2: okio.AsyncTimeout this$0 +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +okhttp3.HttpUrl: int pathSize() +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationZ +android.didikee.donate.R$id: int action_mode_bar_stub +wangdaye.com.geometricweather.R$styleable: int Chip_android_maxWidth +androidx.constraintlayout.widget.R$drawable: int abc_btn_check_to_on_mtrl_015 +com.google.android.material.navigation.NavigationView: void setItemIconTintList(android.content.res.ColorStateList) +cyanogenmod.themes.ThemeManager: java.util.Set mProcessingListeners +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver +com.xw.repo.bubbleseekbar.R$attr: R$attr() +android.didikee.donate.R$styleable: int[] RecycleListView +androidx.vectordrawable.animated.R$dimen: int notification_big_circle_margin +io.reactivex.internal.disposables.SequentialDisposable: SequentialDisposable() +com.google.android.material.R$color: int design_dark_default_color_on_primary +wangdaye.com.geometricweather.R$animator: int design_fab_hide_motion_spec +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_PICKED_UUID +wangdaye.com.geometricweather.R$id: int notification_base_realtimeTemp +androidx.coordinatorlayout.R$dimen: int notification_subtext_size +io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged(io.reactivex.functions.Function) +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay night() +com.jaredrummler.android.colorpicker.R$style: int Platform_V25_AppCompat +androidx.preference.R$style: int Widget_AppCompat_Button_Colored +com.google.android.material.textfield.TextInputLayout: void setHint(java.lang.CharSequence) +wangdaye.com.geometricweather.R$styleable: int[] ForegroundLinearLayout +io.reactivex.internal.queue.SpscArrayQueue: java.lang.Object lvElement(int) +androidx.appcompat.R$style: int Base_Widget_AppCompat_ProgressBar +okhttp3.logging.HttpLoggingInterceptor: java.util.Set headersToRedact +cyanogenmod.weather.WeatherLocation: java.lang.String mCountryId +okhttp3.ConnectionSpec: boolean supportsTlsExtensions() +androidx.constraintlayout.widget.R$id: int titleDividerNoCustom +androidx.preference.R$style: int Preference_DialogPreference +wangdaye.com.geometricweather.R$dimen: int notification_main_column_padding_top +com.google.android.material.R$drawable: int mtrl_ic_cancel +com.google.android.material.R$styleable: int TextInputLayout_counterOverflowTextColor +android.didikee.donate.R$drawable: int abc_ic_clear_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.List AirAndPollen +james.adaptiveicon.R$dimen: int notification_large_icon_width +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedWidthMajor +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onNext(java.lang.Object) +androidx.appcompat.R$attr: int actionBarSplitStyle +androidx.appcompat.R$layout: int abc_alert_dialog_button_bar_material +androidx.fragment.app.DialogFragment +androidx.preference.R$layout: int preference_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: int UnitType +androidx.hilt.R$styleable: int[] Fragment +androidx.hilt.work.R$id: int accessibility_custom_action_15 +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_width_major +androidx.appcompat.R$styleable: int[] AppCompatImageView +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.R$drawable: int navigation_empty_icon +com.turingtechnologies.materialscrollbar.R$layout: int abc_expanded_menu_layout +androidx.constraintlayout.widget.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$color: int design_dark_default_color_background +androidx.appcompat.R$style: int Theme_AppCompat_Light +com.google.android.material.slider.RangeSlider: void setTrackInactiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarButtonStyle +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_DIRECTION +androidx.appcompat.widget.AppCompatEditText: void setBackgroundDrawable(android.graphics.drawable.Drawable) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Small +com.google.android.material.R$color: int abc_primary_text_material_light +io.reactivex.Observable: void subscribeActual(io.reactivex.Observer) +android.didikee.donate.R$style: int Widget_AppCompat_ActivityChooserView +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayDetailsProvider +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_scaleY +wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status SUCCESS +com.google.android.material.R$style: int Platform_V25_AppCompat +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Menu +androidx.vectordrawable.animated.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource valueOf(java.lang.String) +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabText +androidx.swiperefreshlayout.R$id: R$id() +com.xw.repo.bubbleseekbar.R$id: int top +retrofit2.Retrofit: java.util.List callAdapterFactories +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle com.google.android.material.R$styleable: int AppCompatTheme_actionMenuTextAppearance -wangdaye.com.geometricweather.R$string: int week_2 -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_maxWidth -androidx.recyclerview.R$styleable: int FontFamily_fontProviderCerts -androidx.dynamicanimation.R$color: int notification_icon_bg_color -com.jaredrummler.android.colorpicker.R$layout: int abc_screen_toolbar -androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dropDownListViewStyle -okhttp3.RealCall: okhttp3.Request originalRequest -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoDownloadInterval -androidx.lifecycle.extensions.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setSelectedPage(int) -io.reactivex.disposables.ReferenceDisposable: void dispose() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String img -androidx.appcompat.R$id: int customPanel -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Runnable actual -cyanogenmod.weather.WeatherLocation: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List timelaps -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice -retrofit2.RequestBuilder: void addHeader(java.lang.String,java.lang.String) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void removeInner(io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status FAILED -android.didikee.donate.R$drawable: int abc_list_divider_mtrl_alpha -androidx.constraintlayout.widget.R$dimen: int tooltip_vertical_padding -androidx.lifecycle.extensions.R$layout: int notification_action_tombstone -androidx.preference.R$anim: int abc_slide_out_top -com.google.android.material.R$styleable: int MaterialCardView_checkedIconSize -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_unRegisterThermalListener -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedHeightMajor -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void drain() -wangdaye.com.geometricweather.R$styleable: int MenuView_subMenuArrow -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Button -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf -com.google.android.material.R$attr: int paddingEnd -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeCloudCover -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onError(java.lang.Throwable) -com.google.android.material.R$attr: int closeIcon -cyanogenmod.app.PartnerInterface: cyanogenmod.app.PartnerInterface sPartnerInterfaceInstance -wangdaye.com.geometricweather.R$layout: int preference_recyclerview -androidx.lifecycle.extensions.R$anim: int fragment_close_exit -com.jaredrummler.android.colorpicker.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_dark -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dropDownListViewStyle -androidx.drawerlayout.R$dimen: int notification_main_column_padding_top -com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context,android.util.AttributeSet) -cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_TILES -androidx.activity.R$styleable: int FontFamily_fontProviderPackage -io.reactivex.exceptions.OnErrorNotImplementedException -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_88 -com.google.android.material.R$attr: int itemStrokeWidth -okhttp3.OkHttpClient: okhttp3.Dispatcher dispatcher() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String aqiText -com.google.android.material.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -com.turingtechnologies.materialscrollbar.R$attr: int collapseIcon -wangdaye.com.geometricweather.R$string: int phase_waning_gibbous -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_toolbarStyle -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Bridge -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: java.util.concurrent.TimeUnit unit -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List yundong -android.support.v4.os.IResultReceiver$Stub$Proxy: android.os.IBinder asBinder() -retrofit2.converter.gson.GsonConverterFactory: com.google.gson.Gson gson -com.google.gson.FieldNamingPolicy$1 -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: cyanogenmod.weatherservice.WeatherProviderService this$0 -okhttp3.Cache$Entry: Cache$Entry(okhttp3.Response) -james.adaptiveicon.R$styleable: int AppCompatTheme_panelBackground -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_homeAsUpIndicator -androidx.preference.R$styleable: int AppCompatTextView_autoSizeMinTextSize -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: io.reactivex.Observer downstream -cyanogenmod.hardware.ICMHardwareService: int getNumGammaControls() -retrofit2.Converter$Factory: java.lang.Class getRawType(java.lang.reflect.Type) -android.didikee.donate.R$style: int Widget_AppCompat_ButtonBar -okhttp3.CookieJar: okhttp3.CookieJar NO_COOKIES -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabView -com.jaredrummler.android.colorpicker.R$id: int action_mode_bar -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindLevel -androidx.customview.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: java.lang.String Unit -com.google.android.material.R$styleable: int Badge_verticalOffset -com.xw.repo.bubbleseekbar.R$attr: int toolbarStyle -com.google.android.material.card.MaterialCardView: int getContentPaddingLeft() -com.turingtechnologies.materialscrollbar.R$attr: int stackFromEnd -com.github.rahatarmanahmed.cpv.CircularProgressView: float actualProgress -android.didikee.donate.R$color: int abc_search_url_text_selected -androidx.work.R$drawable: int notification_bg_normal_pressed -androidx.core.R$dimen: int compat_control_corner_material -cyanogenmod.app.Profile$1: cyanogenmod.app.Profile[] newArray(int) -androidx.transition.R$dimen: int notification_top_pad_large_text -com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_DropDownUp -wangdaye.com.geometricweather.R$style: int Preference -com.google.android.material.R$color: int secondary_text_default_material_light -com.google.android.material.R$string: int material_hour_selection -com.google.android.material.R$attr: int iconGravity -androidx.recyclerview.R$attr: int fastScrollVerticalTrackDrawable -com.bumptech.glide.integration.okhttp.R$id: int action_divider -io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean) -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onComplete() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingTop -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer LEFT_CLOSE -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: ILiveLockScreenChangeListener$Stub() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: long upDateTime -androidx.work.R$dimen: int notification_big_circle_margin -com.google.android.material.R$styleable: int CustomAttribute_customColorValue -wangdaye.com.geometricweather.R$id: int tag_icon_night -androidx.appcompat.R$dimen: int abc_action_bar_elevation_material -io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Object call() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: AccuDailyResult$DailyForecasts$Day$Wind$Direction() -androidx.preference.R$styleable: int MenuItem_android_checkable -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endColor -com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_android_popupBackground -com.google.gson.stream.JsonReader: long peekedLong -cyanogenmod.themes.ThemeChangeRequest$Builder: long mWallpaperId -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String MobileLink -com.google.android.material.bottomnavigation.BottomNavigationMenuView -com.google.android.material.R$dimen: int abc_dialog_min_width_minor -james.adaptiveicon.R$attr: int editTextBackground -io.reactivex.Observable: io.reactivex.Observable onErrorReturnItem(java.lang.Object) -cyanogenmod.externalviews.KeyguardExternalView$3: KeyguardExternalView$3(cyanogenmod.externalviews.KeyguardExternalView,int,int,int,int,boolean,android.graphics.Rect) -io.reactivex.internal.observers.DeferredScalarDisposable: long serialVersionUID -com.google.android.material.R$attr: int textStartPadding -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_2 -com.github.rahatarmanahmed.cpv.R$integer: R$integer() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCeiling(java.lang.Float) -com.jaredrummler.android.colorpicker.R$layout: int abc_popup_menu_header_item_layout -com.google.android.material.bottomappbar.BottomAppBar$Behavior -androidx.lifecycle.Lifecycling: androidx.lifecycle.GeneratedAdapter createGeneratedAdapter(java.lang.reflect.Constructor,java.lang.Object) -io.reactivex.internal.observers.InnerQueuedObserver: void setDone() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: java.util.List value -okio.RealBufferedSink: okio.Sink sink -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: int Degrees -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -cyanogenmod.app.ThemeVersion: ThemeVersion() -io.reactivex.internal.observers.InnerQueuedObserver: boolean done -wangdaye.com.geometricweather.R$attr: int listPopupWindowStyle -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getThemePackageNameForComponent(java.lang.String) -james.adaptiveicon.R$styleable: int SearchView_queryBackground -okhttp3.OkHttpClient: okhttp3.WebSocket newWebSocket(okhttp3.Request,okhttp3.WebSocketListener) -wangdaye.com.geometricweather.R$string: int settings_title_minimal_icon -android.didikee.donate.R$color: int material_deep_teal_200 -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_toId -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.queue.MpscLinkedQueue queue -cyanogenmod.app.IPartnerInterface$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$id: int checkbox -com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_track_material -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -androidx.appcompat.widget.ActionBarContextView: java.lang.CharSequence getTitle() -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_caption_material -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_48dp -com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_inset_material -okhttp3.internal.connection.RealConnection: RealConnection(okhttp3.ConnectionPool,okhttp3.Route) -okhttp3.HttpUrl: java.lang.String encodedUsername() -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getThumbStrokeColor() -androidx.appcompat.widget.ActionBarContainer: void setVisibility(int) -io.reactivex.internal.subscriptions.BasicQueueSubscription: BasicQueueSubscription() -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: FlowableCreate$BaseEmitter(org.reactivestreams.Subscriber) -androidx.hilt.lifecycle.R$dimen: int notification_top_pad_large_text -androidx.constraintlayout.widget.R$attr: int progressBarPadding -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -com.google.android.material.R$dimen: int material_filled_edittext_font_2_0_padding_bottom -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitationProbability(java.lang.Float) -androidx.customview.R$styleable: int GradientColor_android_centerColor -com.google.android.material.R$styleable: int Snackbar_snackbarTextViewStyle -com.google.android.material.R$anim: int abc_popup_exit -androidx.appcompat.R$styleable: int FontFamilyFont_android_fontWeight -james.adaptiveicon.R$styleable: int View_paddingStart -com.google.android.material.R$dimen: int abc_text_size_menu_material -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarPopupTheme -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: WeatherEntityDao(org.greenrobot.greendao.internal.DaoConfig) -com.google.android.material.circularreveal.CircularRevealRelativeLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.util.Date LocalObservationDateTime -okhttp3.internal.cache2.Relay: long bufferMaxSize -okhttp3.internal.http2.Hpack$Writer: void writeByteString(okio.ByteString) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_requestDismiss_0 -retrofit2.Invocation: java.lang.reflect.Method method() -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode -com.xw.repo.bubbleseekbar.R$id: int textSpacerNoTitle -io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate,int) -okhttp3.internal.http2.Http2Reader$Handler: void settings(boolean,okhttp3.internal.http2.Settings) -com.turingtechnologies.materialscrollbar.R$attr: int windowFixedHeightMinor -androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context) -com.turingtechnologies.materialscrollbar.R$attr: int titleMargin -androidx.appcompat.R$attr: int subtitle -androidx.appcompat.R$styleable: int AppCompatTextView_android_textAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: int UnitType -okhttp3.internal.ws.RealWebSocket$2: okhttp3.Request val$request -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerNext(io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryInnerObserver) -com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_sliderColor -james.adaptiveicon.R$drawable: int abc_list_selector_background_transition_holo_dark -james.adaptiveicon.R$attr: int actionModeCutDrawable -android.didikee.donate.R$styleable: int AppCompatTheme_editTextColor -cyanogenmod.app.Profile: cyanogenmod.profiles.LockSettings getScreenLockMode() -wangdaye.com.geometricweather.R$attr: int tabPaddingEnd -com.google.android.material.R$id: int dropdown_menu -androidx.preference.R$styleable: int MenuView_android_itemBackground -com.google.android.material.R$styleable: int TextInputLayout_boxBackgroundColor -androidx.constraintlayout.widget.R$id: int invisible -cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener: void onWeatherServiceProviderChanged(java.lang.String) -com.bumptech.glide.integration.okhttp.R$id: int forever -com.xw.repo.bubbleseekbar.R$style: int Platform_V21_AppCompat_Light -com.google.android.material.R$styleable: int KeyAttribute_android_rotationY -wangdaye.com.geometricweather.R$dimen: int mtrl_chip_text_size -retrofit2.ParameterHandler$QueryName: boolean encoded -com.turingtechnologies.materialscrollbar.R$attr: int trackTintMode -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String unitId -wangdaye.com.geometricweather.R$string: int settings_title_alert_notification_switch -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setStatus(int) -com.google.android.material.bottomnavigation.BottomNavigationView: int getSelectedItemId() -com.google.android.material.R$color: int checkbox_themeable_attribute_color -wangdaye.com.geometricweather.db.entities.WeatherEntity: void delete() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.List getDefense() -com.google.android.material.floatingactionbutton.FloatingActionButton: void setRippleColor(android.content.res.ColorStateList) -android.didikee.donate.R$attr: int layout -com.xw.repo.bubbleseekbar.R$styleable: int[] ViewStubCompat -cyanogenmod.app.PartnerInterface: cyanogenmod.app.IPartnerInterface getService() -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: boolean isDisposed() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layoutDescription -james.adaptiveicon.R$attr: int progressBarPadding -androidx.preference.R$styleable: int AppCompatTextView_textLocale -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure Pressure -cyanogenmod.app.suggest.IAppSuggestManager$Stub: java.lang.String DESCRIPTOR -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginBottom -wangdaye.com.geometricweather.R$string: int translator -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context,android.util.AttributeSet) -androidx.hilt.work.R$id: int line1 -androidx.appcompat.resources.R$styleable: int[] GradientColorItem -cyanogenmod.app.Profile: cyanogenmod.profiles.RingModeSettings getRingMode() -androidx.appcompat.widget.AppCompatTextView: void setSupportCompoundDrawablesTintList(android.content.res.ColorStateList) -androidx.hilt.R$drawable: int notification_bg -com.turingtechnologies.materialscrollbar.R$string: int abc_toolbar_collapse_description -androidx.appcompat.widget.ActionBarOverlayLayout: void setIcon(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPm25(java.lang.Float) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult -com.google.android.material.tabs.TabLayout: void setTabRippleColorResource(int) -okhttp3.internal.platform.OptionalMethod: OptionalMethod(java.lang.Class,java.lang.String,java.lang.Class[]) -okhttp3.MediaType: java.lang.String charset -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setPageCount(int) -androidx.appcompat.widget.AppCompatImageView: android.content.res.ColorStateList getSupportBackgroundTintList() -com.xw.repo.bubbleseekbar.R$color: int highlighted_text_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: AccuDailyResult$DailyForecasts$Night$Wind$Direction() -androidx.viewpager2.R$dimen: int notification_top_pad -okhttp3.internal.http2.Hpack: int PREFIX_4_BITS -com.google.android.material.radiobutton.MaterialRadioButton: android.content.res.ColorStateList getMaterialThemeColorsTintList() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: java.lang.String Unit -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noStore() -wangdaye.com.geometricweather.R$id: int widget_week_icon_3 -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour MATCH_CONSTRAINT -wangdaye.com.geometricweather.R$font: int product_sans_bold_italic -com.google.gson.stream.JsonWriter: void close() -android.didikee.donate.R$id: int action_bar_root -wangdaye.com.geometricweather.R$color: int abc_tint_spinner -androidx.work.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$attr: int checkedIcon -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void remove() -com.google.android.material.R$id: int scrollView -io.reactivex.Observable: io.reactivex.Observable interval(long,long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -androidx.activity.R$attr: int fontWeight -cyanogenmod.app.CMStatusBarManager: void publishTileAsUser(java.lang.String,int,cyanogenmod.app.CustomTile,android.os.UserHandle) -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getShortTemperatureText(android.content.Context,int) -com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String,java.util.List) -androidx.viewpager.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogStyle -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ws -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.reflect.Type responseType() -androidx.lifecycle.extensions.R$styleable: int[] FragmentContainerView -com.turingtechnologies.materialscrollbar.R$string: int abc_activity_chooser_view_see_all -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_titleEnabled -okhttp3.Request$Builder: okhttp3.Request$Builder removeHeader(java.lang.String) -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_48dp -androidx.preference.R$attr: int fontVariationSettings -com.google.android.material.R$styleable: int ProgressIndicator_indicatorSize -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatHoveredFocusedTranslationZResource(int) -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type BOTTOM -wangdaye.com.geometricweather.R$attr: int fastScrollEnabled -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_titleCondensed -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabTextAppearance -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextView -wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_day -androidx.dynamicanimation.R$layout: int notification_action -androidx.appcompat.widget.SwitchCompat: android.content.res.ColorStateList getThumbTintList() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconContentDescription -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: long serialVersionUID -wangdaye.com.geometricweather.R$drawable: int notif_temp_119 -com.google.android.material.R$id: int center -com.jaredrummler.android.colorpicker.R$attr: int subtitle +androidx.preference.R$style: int Widget_AppCompat_PopupMenu_Overflow +wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_android_background +android.didikee.donate.R$id: int up +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_maxWidth +wangdaye.com.geometricweather.R$id: int stop +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: java.lang.String Name +com.google.android.material.R$styleable: int TabLayout_tabPaddingTop +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void drain() +retrofit2.ParameterHandler$Field +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$drawable: int shortcuts_fog_foreground +androidx.preference.R$attr: int contentInsetEndWithActions +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintDimensionRatio +com.google.android.material.R$color: int bright_foreground_material_light +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +androidx.constraintlayout.widget.R$attr: int listChoiceBackgroundIndicator +wangdaye.com.geometricweather.R$string: int on +com.google.android.material.R$styleable: int AppCompatTheme_alertDialogStyle +androidx.preference.R$styleable: int AppCompatTextView_fontVariationSettings +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerX +android.didikee.donate.R$string: int abc_activitychooserview_choose_application +okhttp3.MultipartBody$Builder: okhttp3.MediaType type +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setDescription(java.lang.String) +com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_end_color +okio.Util: void sneakyRethrow(java.lang.Throwable) +androidx.preference.R$styleable +okhttp3.logging.LoggingEventListener: void requestHeadersEnd(okhttp3.Call,okhttp3.Request) +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_ASSIST_ACTION +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: long dt +cyanogenmod.app.IProfileManager$Stub$Proxy: void updateProfile(cyanogenmod.app.Profile) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator +wangdaye.com.geometricweather.R$color: int colorPrimaryDark +com.google.android.material.R$attr: int saturation +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_EMPTY +cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri getThumbailUri() +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Bridge +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_variablePadding +okio.RealBufferedSink: okio.BufferedSink write(okio.ByteString) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_editor_absoluteX +io.reactivex.internal.subscriptions.SubscriptionArbiter: long requested +androidx.constraintlayout.widget.R$attr: int drawableTintMode +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_DEFAULT +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_HOME_BUTTON +com.jaredrummler.android.colorpicker.R$attr: int allowStacking +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: IWeatherServiceProviderChangeListener$Stub() +okhttp3.internal.http.RealResponseBody: long contentLength +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationZ +com.jaredrummler.android.colorpicker.R$style: int Preference_SeekBarPreference_Material +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionBarOverlay +android.didikee.donate.R$attr: int buttonBarNeutralButtonStyle +androidx.preference.R$style: int Preference_SwitchPreference_Material +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginRight +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: ObservableUsing$UsingObserver(io.reactivex.Observer,java.lang.Object,io.reactivex.functions.Consumer,boolean) +androidx.hilt.work.R$dimen: int compat_control_corner_material +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf +okhttp3.internal.cache2.Relay: void commit(long) +retrofit2.DefaultCallAdapterFactory: java.util.concurrent.Executor callbackExecutor +androidx.preference.R$style: int TextAppearance_AppCompat_Display4 +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +com.google.android.material.R$styleable: int Slider_labelBehavior +com.google.android.material.R$attr: int contentPadding +wangdaye.com.geometricweather.db.entities.MinutelyEntity: MinutelyEntity() +androidx.viewpager.R$styleable: int GradientColor_android_endY +okio.GzipSink: boolean closed +wangdaye.com.geometricweather.R$attr: int actionModeWebSearchDrawable +com.google.android.material.slider.RangeSlider: int getTrackWidth() +androidx.appcompat.widget.AppCompatImageView: void setSupportBackgroundTintList(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_android_enabled +androidx.appcompat.widget.AppCompatImageView: void setBackgroundResource(int) +com.xw.repo.bubbleseekbar.R$color: int notification_action_color_filter +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +okhttp3.OkHttpClient: okhttp3.CookieJar cookieJar +wangdaye.com.geometricweather.R$id: int labelGroup +androidx.constraintlayout.widget.R$styleable: int MockView_mock_label +com.xw.repo.bubbleseekbar.R$attr: int bsb_anim_duration +com.google.android.material.R$styleable: int MenuItem_android_numericShortcut +com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Entry +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.functions.Action onFinally +retrofit2.ParameterHandler$Header: void apply(retrofit2.RequestBuilder,java.lang.Object) +androidx.recyclerview.R$id: int accessibility_custom_action_29 +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ProgressBar_Horizontal +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeService getService() +com.google.android.material.appbar.MaterialToolbar: void setNavigationIconColor(int) +com.google.android.material.R$attr: int colorSecondary +io.reactivex.internal.util.VolatileSizeArrayList +okhttp3.internal.http2.Http2Stream: void receiveHeaders(java.util.List) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_popupWindowStyle +com.xw.repo.bubbleseekbar.R$styleable: int[] SearchView +androidx.constraintlayout.widget.R$color: int primary_dark_material_dark +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean forWebSocket +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_content_inset_with_nav +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ListPopupWindow +android.didikee.donate.R$style: int Widget_AppCompat_ActionButton_CloseMode +androidx.preference.R$styleable: int ActionBar_contentInsetLeft +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setLevel(java.lang.String) +okhttp3.internal.http2.Http2Codec: void flushRequest() +com.google.android.material.R$styleable: int MaterialTextView_lineHeight +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_DATAUSAGE +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int sourceMode +com.google.gson.internal.LazilyParsedNumber: int intValue() +com.jaredrummler.android.colorpicker.R$id: int contentPanel +com.google.android.material.button.MaterialButtonToggleGroup: void setCheckedId(int) +androidx.drawerlayout.R$styleable: int GradientColor_android_tileMode +android.didikee.donate.R$layout: int abc_action_mode_close_item_material +com.bumptech.glide.R$styleable: int FontFamilyFont_fontVariationSettings +okhttp3.Cache$1: void remove(okhttp3.Request) +wangdaye.com.geometricweather.R$drawable: int ic_delete +cyanogenmod.themes.ThemeManager$1$1: int val$progress +com.xw.repo.bubbleseekbar.R$color: int background_floating_material_dark +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +wangdaye.com.geometricweather.R$id: int dialog_donate_wechat_img +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$402(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Info +com.turingtechnologies.materialscrollbar.R$attr: int actionBarPopupTheme +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Fullscreen +com.google.android.material.R$attr: int materialCalendarMonth +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ROMANIAN +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void request(long) +com.google.android.material.bottomappbar.BottomAppBar: androidx.appcompat.widget.ActionMenuView getActionMenuView() +android.didikee.donate.R$styleable: int PopupWindowBackgroundState_state_above_anchor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getLogo() +org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) +okhttp3.internal.http2.Http2Connection$Listener: Http2Connection$Listener() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Caption +android.didikee.donate.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup mDefaultGroup +com.google.android.material.R$color: int mtrl_tabs_icon_color_selector +android.didikee.donate.R$styleable: int Spinner_android_entries +cyanogenmod.app.ICustomTileListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemTitle(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipCornerRadius +com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Determinate +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_query +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerY +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_SPEED +androidx.preference.R$styleable: int AppCompatTheme_colorError +androidx.hilt.lifecycle.R$dimen: int notification_right_side_padding_top +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_BATTERY_STYLE_VALIDATOR +androidx.viewpager2.widget.ViewPager2$SavedState: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_viewInflaterClass +com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.ValueAnimator startAngleRotate +okhttp3.HttpUrl: okhttp3.HttpUrl get(java.net.URL) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void innerComplete(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver) +okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withConnectTimeout(int,java.util.concurrent.TimeUnit) +retrofit2.HttpServiceMethod$SuspendForResponse: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat +com.jaredrummler.android.colorpicker.R$attr: int indeterminateProgressStyle +com.google.android.material.R$style: int Theme_MaterialComponents_Bridge +okhttp3.OkHttpClient$Builder: javax.net.ssl.HostnameVerifier hostnameVerifier +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource +io.reactivex.Observable: java.lang.Iterable blockingIterable() +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTemperature(int) +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onError(java.lang.Throwable) +com.google.android.material.R$attr: int layoutDescription +com.google.android.material.R$style: int Animation_Design_BottomSheetDialog +androidx.swiperefreshlayout.R$id: int info +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_ttcIndex +android.didikee.donate.R$color: int highlighted_text_material_light +androidx.recyclerview.R$id: int accessibility_action_clickable_span +com.google.android.material.R$id: int tabMode +com.google.android.material.R$anim: int abc_slide_out_bottom +wangdaye.com.geometricweather.R$id: int notification_multi_city_text_1 +androidx.preference.R$attr: int buttonBarPositiveButtonStyle +james.adaptiveicon.R$anim: int abc_grow_fade_in_from_bottom +com.google.android.material.R$dimen: int mtrl_switch_thumb_elevation +androidx.appcompat.R$style: int TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.R$styleable: int MenuItem_actionLayout +com.google.android.material.R$attr: int colorAccent +androidx.preference.R$attr: int searchHintIcon +wangdaye.com.geometricweather.R$attr: int cornerFamily +retrofit2.RequestBuilder: java.util.regex.Pattern PATH_TRAVERSAL +com.google.android.material.R$styleable: int ActionBar_divider +androidx.constraintlayout.widget.R$color: int bright_foreground_inverse_material_light +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionBarOverlay +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_registerChangeListener +okhttp3.internal.http.RealInterceptorChain: int writeTimeoutMillis() +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: int getPrecipitationColor(android.content.Context) +com.xw.repo.bubbleseekbar.R$attr: int buttonIconDimen +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixTextColor +android.didikee.donate.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +okhttp3.CacheControl$Builder: boolean immutable +okhttp3.Cache: int networkCount +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemTextAppearanceInactive() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dropDownListViewStyle +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void dispose() +androidx.constraintlayout.widget.R$attr: int lastBaselineToBottomHeight +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizePresetSizes +okhttp3.FormBody$Builder: okhttp3.FormBody$Builder add(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Today +cyanogenmod.weather.CMWeatherManager$RequestStatus: int COMPLETED +com.google.android.material.R$attr: int actionModeCloseButtonStyle +com.google.android.material.R$style: int Theme_AppCompat_Dialog_Alert +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onComplete() +com.google.gson.stream.JsonWriter: java.lang.String deferredName +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void request(long) +com.jaredrummler.android.colorpicker.R$color: int abc_tint_spinner +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderFetchTimeout +com.google.android.material.R$dimen: int mtrl_textinput_box_label_cutout_padding +okhttp3.internal.http1.Http1Codec$AbstractSource: void endOfInput(boolean,java.io.IOException) +cyanogenmod.weatherservice.ServiceRequestResult: java.util.List access$302(cyanogenmod.weatherservice.ServiceRequestResult,java.util.List) +wangdaye.com.geometricweather.R$transition: R$transition() +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_padding_horizontal +android.support.v4.os.IResultReceiver$Stub: boolean setDefaultImpl(android.support.v4.os.IResultReceiver) +wangdaye.com.geometricweather.R$layout: int abc_popup_menu_item_layout +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge +androidx.viewpager2.R$drawable: int notification_bg_normal +android.didikee.donate.R$attr: int dropdownListPreferredItemHeight +androidx.preference.R$styleable: int[] EditTextPreference +com.bumptech.glide.R$dimen: int compat_button_padding_vertical_material +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_EditText +cyanogenmod.weather.CMWeatherManager: java.util.Map access$200(cyanogenmod.weather.CMWeatherManager) +com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_old +androidx.preference.R$string: int abc_shareactionprovider_share_with +androidx.appcompat.R$string: int abc_menu_sym_shortcut_label +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentX +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.util.concurrent.atomic.AtomicBoolean cancelled +androidx.preference.R$integer: int abc_config_activityDefaultDur +wangdaye.com.geometricweather.R$string: int settings_summary_unit +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String logo +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableBottom +cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.CMTelephonyManager sCMTelephonyManagerInstance +android.didikee.donate.R$attr: int actionBarSplitStyle +androidx.lifecycle.SavedStateHandle$1 +com.google.gson.stream.JsonReader: int PEEKED_SINGLE_QUOTED +androidx.drawerlayout.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$layout: int abc_expanded_menu_layout +wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents +androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context,android.util.AttributeSet) +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,java.util.concurrent.Callable,boolean) +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$drawable: int notification_template_icon_bg +retrofit2.RequestFactory$Builder: void parseMethodAnnotation(java.lang.annotation.Annotation) +com.google.android.material.R$styleable: int AppCompatTextView_drawableTintMode +james.adaptiveicon.R$style: int Widget_AppCompat_ListMenuView +wangdaye.com.geometricweather.R$id: int checkbox +androidx.coordinatorlayout.widget.CoordinatorLayout: void setOnHierarchyChangeListener(android.view.ViewGroup$OnHierarchyChangeListener) +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setProgress(float) +com.google.android.material.R$styleable: int AppCompatTextView_drawableLeftCompat +com.google.android.material.R$color: int mtrl_tabs_legacy_text_color_selector +com.google.android.material.R$color: int abc_background_cache_hint_selector_material_light +okhttp3.internal.http2.Http2Codec: okhttp3.internal.connection.StreamAllocation streamAllocation +wangdaye.com.geometricweather.R$string: int content_des_co +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_id +com.google.android.material.R$layout: int test_toolbar_surface +wangdaye.com.geometricweather.R$attr: int materialCardViewStyle +cyanogenmod.app.ICustomTileListener$Stub$Proxy: android.os.IBinder mRemote +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +cyanogenmod.app.ProfileGroup: void setSoundMode(cyanogenmod.app.ProfileGroup$Mode) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.lang.String Link +com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay_v14 +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_weightSum +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.CompletableObserver downstream +com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_inset_vertical_material +com.google.android.material.R$attr: int layout_goneMarginStart +com.google.android.material.circularreveal.CircularRevealGridLayout: void setCircularRevealScrimColor(int) +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onNext(java.lang.Object) +cyanogenmod.content.Intent: java.lang.String ACTION_PROTECTED_CHANGED +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_normal_material_light +cyanogenmod.externalviews.ExternalViewProviderService: android.view.WindowManager access$400(cyanogenmod.externalviews.ExternalViewProviderService) +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer +androidx.hilt.R$anim: int fragment_close_enter +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display3 +androidx.constraintlayout.widget.R$attr: int layoutDescription +androidx.appcompat.R$drawable: int abc_seekbar_track_material +cyanogenmod.themes.ThemeManager: boolean isThemeApplying() +wangdaye.com.geometricweather.R$attr: int prefixTextColor +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_textAllCaps +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setProvince(java.lang.String) +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getNumGammaControls +com.google.android.material.R$dimen: int design_snackbar_text_size +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_16dp +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_COLOR +androidx.preference.R$styleable: int[] AppCompatTextHelper +okhttp3.internal.Util: java.net.InetAddress decodeIpv6(java.lang.String,int,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setPubTime(java.lang.String) +okhttp3.internal.ws.WebSocketWriter: void writePing(okio.ByteString) +okio.Utf8 +android.didikee.donate.R$attr: int elevation +com.google.android.material.R$styleable: int ActionBar_backgroundStacked +androidx.drawerlayout.R$id: int blocking +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_updatesContinuously +wangdaye.com.geometricweather.R$attr: int fontVariationSettings +cyanogenmod.externalviews.KeyguardExternalView$1: void onServiceConnected(android.content.ComponentName,android.os.IBinder) +okhttp3.internal.ws.RealWebSocket: java.util.ArrayDeque pongQueue +wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_dark +com.google.android.material.R$color: int mtrl_tabs_icon_color_selector_colored +wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_tailScale +okhttp3.internal.connection.RouteSelector: boolean hasNextProxy() +com.jaredrummler.android.colorpicker.R$id: int shades_divider +com.turingtechnologies.materialscrollbar.R$animator: R$animator() +android.didikee.donate.R$style: int Widget_AppCompat_RatingBar_Small +androidx.work.BackoffPolicy: androidx.work.BackoffPolicy LINEAR +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.util.Date EffectiveDate -cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_DEFAULT -com.google.android.material.R$styleable: int[] KeyAttribute -androidx.constraintlayout.widget.R$styleable: int Constraint_transitionEasing -android.didikee.donate.R$color: int notification_icon_bg_color -com.jaredrummler.android.colorpicker.R$attr: int colorControlNormal -wangdaye.com.geometricweather.R$dimen: int design_navigation_padding_bottom -okhttp3.Cookie: long parseMaxAge(java.lang.String) -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_translation_z_hovered_focused -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_title -androidx.preference.R$dimen: int notification_large_icon_width -androidx.preference.R$attr: int min -james.adaptiveicon.R$id: int src_atop -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_track_color -com.google.android.material.R$attr: int buttonBarNegativeButtonStyle -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int FIRED_STATE -wangdaye.com.geometricweather.weather.apis.AccuWeatherApi -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Name -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetLeft -androidx.appcompat.R$styleable: int AppCompatTextView_lineHeight -androidx.customview.R$styleable: int GradientColor_android_gradientRadius -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabBarStyle -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: java.lang.Object item -okhttp3.Cache: void trackConditionalCacheHit() -wangdaye.com.geometricweather.R$attr: int actionModeCloseButtonStyle -io.reactivex.Observable: io.reactivex.Completable switchMapCompletableDelayError(io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$attr: int actionModeWebSearchDrawable -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_Solid -james.adaptiveicon.R$styleable: int MenuGroup_android_orderInCategory -androidx.constraintlayout.widget.R$id: int easeIn -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_weight -android.didikee.donate.R$style: int Base_Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.R$color: int mtrl_chip_text_color -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String iconUrl -androidx.activity.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit IN -androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$string: int abc_capital_off -wangdaye.com.geometricweather.R$string: int feedback_resident_location -com.google.android.material.button.MaterialButton: void setIconPadding(int) -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onNext(java.lang.Object) -androidx.lifecycle.extensions.R$drawable: int notification_bg_normal_pressed -io.reactivex.internal.util.EmptyComponent: boolean isDisposed() -wangdaye.com.geometricweather.main.fragments.MainFragment: MainFragment() -com.xw.repo.bubbleseekbar.R$color: int foreground_material_light -wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.converters.TimeZoneConverter timeZoneConverter -okio.BufferedSource: short readShortLe() -androidx.viewpager2.R$color -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: MfRainResult$RainForecast() -com.google.android.material.R$dimen: int mtrl_btn_padding_left -com.google.android.material.slider.RangeSlider: java.lang.CharSequence getAccessibilityClassName() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWeatherText() -com.jaredrummler.android.colorpicker.R$anim: int abc_popup_enter -wangdaye.com.geometricweather.R$layout: int item_about_line -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarSize -wangdaye.com.geometricweather.R$animator: int weather_snow_1 -androidx.appcompat.widget.SwitchCompat: void setSplitTrack(boolean) +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: int unitArrayIndex +okhttp3.internal.cache.DiskLruCache: void delete() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: MfForecastResult$ProbabilityForecast() +androidx.preference.R$attr: int title +wangdaye.com.geometricweather.R$string: int abc_menu_space_shortcut_label +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String DAY +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedHeightMajor +com.google.android.material.R$attr: int waveVariesBy +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_to_on_mtrl_015 +io.reactivex.Observable: io.reactivex.Observable switchOnNext(io.reactivex.ObservableSource,int) +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_weightSum +androidx.constraintlayout.widget.R$attr: int windowFixedWidthMinor +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: void run() +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,io.reactivex.Scheduler) +androidx.lifecycle.LiveData: boolean hasActiveObservers() +androidx.lifecycle.ViewModel: java.util.Map mBagOfTags +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startX +james.adaptiveicon.R$string: int abc_action_bar_up_description +androidx.activity.R$layout: R$layout() +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec MODERN_TLS +androidx.preference.R$attr: int reverseLayout +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,boolean) +wangdaye.com.geometricweather.R$string: int material_slider_range_start +okhttp3.RequestBody$3: okhttp3.MediaType val$contentType +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +com.google.android.material.R$styleable: int SearchView_submitBackground +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_wrapMode +com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreference_Material +com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_in_bottom +com.google.android.material.R$id: int coordinator +androidx.constraintlayout.widget.R$attr: int colorSwitchThumbNormal +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +wangdaye.com.geometricweather.R$drawable: int abc_list_focused_holo +com.google.android.material.R$styleable: int AppCompatTheme_panelBackground +com.google.android.material.R$attr: int backgroundSplit +retrofit2.HttpServiceMethod$SuspendForResponse: retrofit2.CallAdapter callAdapter +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: boolean noDirection +com.google.android.material.chip.Chip: void setChipIconEnabled(boolean) +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void run() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setEn_US(java.lang.String) +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setMoonDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_pageIndicatorColor +androidx.hilt.lifecycle.R$id: int actions +cyanogenmod.hardware.CMHardwareManager: int[] getDisplayColorCalibrationArray() +androidx.constraintlayout.widget.R$attr: int controlBackground +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListPopupWindow +androidx.constraintlayout.utils.widget.ImageFilterView: float getRound() +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String getCityId() +wangdaye.com.geometricweather.R$attr: int mock_diagonalsColor +com.google.android.material.R$id: int accessibility_custom_action_6 +androidx.fragment.R$style +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer rainProductAvailable +androidx.loader.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: java.lang.String unitAbbreviation wangdaye.com.geometricweather.R$styleable: int ListPreference_entryValues -okhttp3.Cookie$Builder: java.lang.String path -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: ObservableZip$ZipCoordinator(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) -okio.AsyncTimeout: AsyncTimeout() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: double Value -androidx.drawerlayout.R$dimen: R$dimen() -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_normal -james.adaptiveicon.R$integer: int status_bar_notification_info_maxnum -androidx.lifecycle.ViewModelProvider: java.lang.String DEFAULT_KEY -androidx.constraintlayout.widget.R$styleable: int[] LinearLayoutCompat -com.google.android.material.R$attr: int customDimension -androidx.appcompat.R$style: int Widget_AppCompat_PopupMenu_Overflow -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onComplete() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierDirection -wangdaye.com.geometricweather.main.Hilt_MainActivity: Hilt_MainActivity() -androidx.lifecycle.extensions.R$dimen: int notification_right_icon_size -com.google.android.material.R$styleable: int MotionTelltales_telltales_tailColor -androidx.customview.R$attr: int fontWeight -wangdaye.com.geometricweather.R$styleable: int ActivityChooserView_initialActivityCount +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomSheet_Modal +com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_800 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +james.adaptiveicon.R$color: int abc_primary_text_material_light +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_19 +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityPaused(android.app.Activity) +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_DayNight +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.fuseable.SimpleQueue queue +com.google.android.material.timepicker.RadialViewGroup: RadialViewGroup(android.content.Context,android.util.AttributeSet) +androidx.coordinatorlayout.R$id: int accessibility_custom_action_22 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNo2() +com.jaredrummler.android.colorpicker.R$attr: int positiveButtonText +com.google.android.material.R$dimen: int mtrl_snackbar_message_margin_horizontal +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX) +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchMinWidth +androidx.appcompat.R$layout: int notification_action_tombstone +com.google.android.material.R$color: int mtrl_bottom_nav_item_tint +androidx.appcompat.R$attr: int thumbTint +androidx.preference.R$style: int Theme_AppCompat_DialogWhenLarge +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_anchor +com.google.android.material.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: int UnitType +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onNext(java.lang.Object) +androidx.preference.R$attr: int preferenceCategoryStyle +androidx.constraintlayout.widget.R$styleable: int Toolbar_android_gravity +wangdaye.com.geometricweather.R$color: int mtrl_text_btn_text_color_selector +okhttp3.internal.http2.Http2Reader: void close() +com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +okhttp3.internal.connection.RealConnection: okhttp3.internal.connection.RealConnection testConnection(okhttp3.ConnectionPool,okhttp3.Route,java.net.Socket,long) +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: io.reactivex.Observer downstream +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_material_light +com.turingtechnologies.materialscrollbar.R$string: int abc_capital_off +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_variablePadding +retrofit2.BuiltInConverters$StreamingResponseBodyConverter: BuiltInConverters$StreamingResponseBodyConverter() +androidx.appcompat.R$id: int notification_main_column_container +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_17 +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarPopupTheme +com.turingtechnologies.materialscrollbar.R$style: int Base_V23_Theme_AppCompat +okhttp3.Response: okhttp3.ResponseBody body +okhttp3.CacheControl: boolean isPrivate() +cyanogenmod.externalviews.KeyguardExternalView$3 +com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_padding_horizontal_material +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerNext() +androidx.preference.R$id: int scrollIndicatorUp +com.google.gson.internal.LinkedTreeMap: java.util.Comparator comparator +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_4 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindDircStart() +com.jaredrummler.android.colorpicker.R$string: int abc_toolbar_collapse_description +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int limit +android.didikee.donate.R$styleable: int AppCompatImageView_srcCompat +io.reactivex.Observable: io.reactivex.Completable switchMapCompletable(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$drawable: int ic_map_clock +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setWeatherCondition(int) +com.google.android.material.R$styleable: int KeyPosition_curveFit +wangdaye.com.geometricweather.R$string: int settings_title_notification_text_color +wangdaye.com.geometricweather.R$color: int material_slider_inactive_track_color +com.xw.repo.bubbleseekbar.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum +androidx.appcompat.R$drawable: int abc_text_select_handle_left_mtrl_light +androidx.appcompat.resources.R$id: int right_icon +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode COMPRESSION_ERROR +com.turingtechnologies.materialscrollbar.R$id: int wrap_content +retrofit2.OkHttpCall: boolean isExecuted() +com.google.android.material.transformation.FabTransformationSheetBehavior: FabTransformationSheetBehavior() +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleTextColor +com.google.android.material.R$attr: int transitionPathRotate +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog +okhttp3.Cache$1 +james.adaptiveicon.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: java.lang.String type +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getCo() +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_onAttachedToWindow +com.google.gson.stream.JsonReader: int NUMBER_CHAR_DIGIT +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldLevel +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motionTarget +com.xw.repo.bubbleseekbar.R$integer: int config_tooltipAnimTime +android.didikee.donate.R$attr: int ratingBarStyleSmall +wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_1 +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean removeProfile(cyanogenmod.app.Profile) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial() +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_padding_material +cyanogenmod.themes.ThemeManager$ThemeProcessingListener: void onFinishedProcessing(java.lang.String) +android.didikee.donate.R$dimen: int abc_action_bar_stacked_tab_max_width +androidx.lifecycle.FullLifecycleObserver: void onPause(androidx.lifecycle.LifecycleOwner) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +okhttp3.ConnectionPool$1: okhttp3.ConnectionPool this$0 +androidx.appcompat.R$attr: int listPopupWindowStyle +android.didikee.donate.R$style: int Widget_AppCompat_ListView_DropDown +androidx.constraintlayout.widget.R$styleable: int MotionLayout_layoutDescription +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_maxImageSize +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder immutable() +androidx.preference.R$attr: int isLightTheme +wangdaye.com.geometricweather.R$attr: int buttonStyleSmall +wangdaye.com.geometricweather.R$attr: int popupMenuStyle +androidx.recyclerview.R$attr: int recyclerViewStyle +cyanogenmod.providers.ThemesContract$ThemesColumns +io.reactivex.Observable: io.reactivex.Observable ambWith(io.reactivex.ObservableSource) +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: boolean isAsync +androidx.lifecycle.LifecycleService: android.os.IBinder onBind(android.content.Intent) +androidx.hilt.R$styleable: int[] FragmentContainerView +androidx.preference.R$attr +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_maxWidth +androidx.appcompat.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +cyanogenmod.app.suggest.AppSuggestManager: android.content.Context mContext +com.google.android.material.R$attr: int cardPreventCornerOverlap +com.google.android.material.chip.Chip: void setCloseIcon(android.graphics.drawable.Drawable) +androidx.lifecycle.ProcessLifecycleOwner: void activityStopped() +android.didikee.donate.R$attr: int seekBarStyle +wangdaye.com.geometricweather.R$string: int content_desc_weather_icon +com.google.android.material.chip.Chip: void setSingleLine(boolean) +wangdaye.com.geometricweather.R$id: int activity_alert_recyclerView +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.db.entities.WeatherEntityDao myDao +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableEndCompat +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void disposeAll() +androidx.constraintlayout.widget.R$id: int search_bar +com.bumptech.glide.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.android.material.R$styleable: int[] BottomNavigationView +org.greenrobot.greendao.AbstractDao: void saveInTx(java.lang.Object[]) +androidx.hilt.lifecycle.R$anim: int fragment_open_exit +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setTextColor(int) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_radioButtonStyle +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void openComplete(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Id +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator +com.google.android.material.R$attr: int customBoolean +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_multiChoiceItemLayout +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextStyle +okhttp3.internal.ws.RealWebSocket: void writePingFrame() +cyanogenmod.providers.ThemesContract$MixnMatchColumns +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_grey +wangdaye.com.geometricweather.R$drawable: int notif_temp_58 +cyanogenmod.hardware.CMHardwareManager: boolean deletePersistentObject(java.lang.String) +androidx.lifecycle.extensions.R$drawable: int notification_template_icon_low_bg +retrofit2.Callback: void onFailure(retrofit2.Call,java.lang.Throwable) +com.google.android.material.R$id: int material_timepicker_container +cyanogenmod.app.BaseLiveLockManagerService: boolean getLiveLockScreenEnabled() +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayWeekProvider: WidgetClockDayWeekProvider() +io.reactivex.internal.util.EmptyComponent: void onNext(java.lang.Object) +androidx.appcompat.widget.ListPopupWindow: void setOnItemClickListener(android.widget.AdapterView$OnItemClickListener) +androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +com.google.android.material.R$styleable: int KeyAttribute_android_translationY +androidx.dynamicanimation.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$drawable: int ic_temperature_celsius +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.HourlyEntity) +androidx.appcompat.R$id: int normal +com.turingtechnologies.materialscrollbar.R$attr: int firstBaselineToTopHeight +com.google.android.material.R$styleable: int SnackbarLayout_backgroundTintMode +com.bumptech.glide.R$styleable: int GradientColor_android_type +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog_Alert +android.didikee.donate.R$styleable: int AppCompatTheme_buttonStyle +com.google.android.material.R$dimen: int design_snackbar_background_corner_radius +com.google.android.material.R$attr: int foregroundInsidePadding +com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text +okhttp3.HttpUrl$Builder: void resolvePath(java.lang.String,int,int) +io.reactivex.internal.queue.SpscArrayQueue: boolean offer(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemTextAppearance +wangdaye.com.geometricweather.R$attr: int selectableItemBackgroundBorderless +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixText +androidx.core.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.preference.R$attr: int color +wangdaye.com.geometricweather.R$styleable: int ChipGroup_selectionRequired +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dropDownListViewStyle +james.adaptiveicon.R$layout: int abc_action_menu_item_layout +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_indeterminate +okio.Buffer: okio.BufferedSink writeLong(long) +okhttp3.internal.cache.DiskLruCache: DiskLruCache(okhttp3.internal.io.FileSystem,java.io.File,int,int,long,java.util.concurrent.Executor) +wangdaye.com.geometricweather.R$styleable: int ArcProgress_text_size +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(java.lang.Iterable,io.reactivex.functions.Function) +androidx.loader.content.Loader +com.jaredrummler.android.colorpicker.R$id: int time +okhttp3.internal.http2.Header: okio.ByteString PSEUDO_PREFIX +com.google.android.material.R$id: int slide +com.google.android.material.R$color: int mtrl_textinput_disabled_color +android.didikee.donate.R$color: int abc_tint_edittext +com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_Tooltip +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +okio.RealBufferedSource: okio.Timeout timeout() +cyanogenmod.weatherservice.ServiceRequestResult$1: cyanogenmod.weatherservice.ServiceRequestResult[] newArray(int) +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +android.didikee.donate.R$attr: int switchPadding +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeWidth +androidx.preference.R$attr: int displayOptions +com.google.android.material.R$id: int dragRight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: double Value +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: double Value +io.reactivex.internal.util.NotificationLite: java.lang.Object next(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long time +com.google.gson.JsonIOException: JsonIOException(java.lang.String,java.lang.Throwable) +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int mtrl_calendar_day_selector_frame +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +com.google.android.material.R$attr: int chainUseRtl +james.adaptiveicon.R$styleable: int[] ViewBackgroundHelper +androidx.lifecycle.LifecycleDispatcher: java.util.concurrent.atomic.AtomicBoolean sInitialized +com.turingtechnologies.materialscrollbar.R$attr: int actionBarItemBackground +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_thickness +androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_icon_width +androidx.constraintlayout.widget.R$styleable: int[] ActionMode +okhttp3.internal.connection.RouteException: java.io.IOException getLastConnectException() +android.didikee.donate.R$styleable: int ActionBar_contentInsetLeft +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectionPool(okhttp3.ConnectionPool) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: java.lang.String Unit +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm10Desc(java.lang.String) +androidx.preference.R$styleable: int ActionBar_displayOptions +wangdaye.com.geometricweather.R$id: int tag_icon_day +cyanogenmod.themes.ThemeManager$ThemeChangeListener +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: boolean active +androidx.preference.R$attr: int searchViewStyle +androidx.preference.R$color: int abc_secondary_text_material_light +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: ExternalViewProviderService$Provider$ProviderImpl$4(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +com.google.android.material.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: boolean isDisposed() +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstHorizontalStyle +com.google.android.material.R$color: int mtrl_chip_surface_color +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: long serialVersionUID +james.adaptiveicon.R$id: int action_bar_title +com.google.android.material.button.MaterialButtonToggleGroup: java.util.List getCheckedButtonIds() +androidx.constraintlayout.widget.R$styleable: int PopupWindow_android_popupAnimationStyle +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_iconTintMode +androidx.appcompat.widget.Toolbar: void setTitle(int) +okhttp3.Response: boolean isRedirect() +com.jaredrummler.android.colorpicker.R$attr: int toolbarStyle +com.google.android.material.R$id: int text_input_end_icon +james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyle +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: ObservableRefCount$RefCountObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableRefCount,io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection) +cyanogenmod.weather.WeatherLocation$1 +okhttp3.internal.cache.CacheRequest: void abort() +cyanogenmod.app.ICMStatusBarManager: void createCustomTileWithTag(java.lang.String,java.lang.String,java.lang.String,int,cyanogenmod.app.CustomTile,int[],int) +androidx.work.R$layout: int notification_template_part_chronometer +android.didikee.donate.R$drawable: int abc_ic_search_api_material +androidx.hilt.R$styleable: int GradientColor_android_startY +androidx.preference.R$styleable: int DrawerArrowToggle_color +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabRippleColor +android.didikee.donate.R$styleable: int AlertDialog_android_layout +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeStyle +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_activated_mtrl_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: java.lang.String Source +com.google.android.material.R$attr: int materialTimePickerTheme +cyanogenmod.profiles.LockSettings: boolean mDirty +cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_PEOPLE_LOOKUP +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_height +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getIcePrecipitation() +cyanogenmod.power.IPerformanceManager$Stub: android.os.IBinder asBinder() +androidx.loader.R$styleable: int ColorStateListItem_android_color +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Button +com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPanelView +retrofit2.Retrofit$1: java.lang.Object invoke(java.lang.Object,java.lang.reflect.Method,java.lang.Object[]) +okhttp3.Route: java.net.InetSocketAddress socketAddress() +wangdaye.com.geometricweather.R$styleable: int[] LinearLayoutCompat +com.google.android.material.R$attr: int tabIndicatorAnimationDuration +wangdaye.com.geometricweather.R$string: int search_menu_title +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void truncate() +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void dispose() +android.didikee.donate.R$attr: int buttonBarButtonStyle +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +androidx.constraintlayout.widget.R$styleable: int AlertDialog_listItemLayout +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_font +com.bumptech.glide.integration.okhttp.R$id: int chronometer +com.google.android.material.R$dimen: int item_touch_helper_swipe_escape_max_velocity +com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 +android.didikee.donate.R$string: int abc_activity_chooser_view_see_all +com.google.gson.stream.JsonWriter: void setIndent(java.lang.String) +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver +james.adaptiveicon.R$style: int Theme_AppCompat_Light_DialogWhenLarge +io.reactivex.observers.TestObserver$EmptyObserver +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +cyanogenmod.power.IPerformanceManager$Stub$Proxy: boolean setPowerProfile(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.lang.String getPubTime() +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_11 +wangdaye.com.geometricweather.R$id: int reverseSawtooth +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonStyle +android.didikee.donate.R$layout: R$layout() +wangdaye.com.geometricweather.R$array: int live_wallpaper_weather_kinds +wangdaye.com.geometricweather.R$attr: int flow_maxElementsWrap +androidx.lifecycle.LiveData: java.lang.Runnable mPostValueRunnable +com.google.android.material.slider.Slider: void setFocusedThumbIndex(int) +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_ttcIndex +com.google.android.material.R$style: int TextAppearance_Design_HelperText +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getDaytimeWeatherCode() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$y +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: java.util.concurrent.atomic.AtomicReference timer +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getShortDate(android.content.Context) +wangdaye.com.geometricweather.R$attr: int progress_width +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetTop +wangdaye.com.geometricweather.R$attr: int entries +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_WEATHER +wangdaye.com.geometricweather.R$attr: int actionBarSplitStyle +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text +io.reactivex.Observable: io.reactivex.Observable concatDelayError(io.reactivex.ObservableSource) +dagger.hilt.android.internal.managers.ActivityRetainedComponentManager$ActivityRetainedComponentViewModel +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setPubTime(java.lang.String) +com.jaredrummler.android.colorpicker.R$integer: int cancel_button_image_alpha +com.jaredrummler.android.colorpicker.R$styleable: int[] MultiSelectListPreference +androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_height_material +com.turingtechnologies.materialscrollbar.R$attr: int state_collapsible +androidx.work.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.R$attr: int font +wangdaye.com.geometricweather.R$attr: int ratingBarStyle +androidx.viewpager.widget.PagerTitleStrip: PagerTitleStrip(android.content.Context,android.util.AttributeSet) +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.turingtechnologies.materialscrollbar.R$styleable: int TouchScrollBar_msb_autoHide +okhttp3.internal.http2.Http2Stream: okio.Source getSource() +androidx.vectordrawable.animated.R$styleable: int GradientColorItem_android_offset +com.jaredrummler.android.colorpicker.R$attr: int layout_dodgeInsetEdges +androidx.vectordrawable.R$id: int accessibility_custom_action_8 +com.github.rahatarmanahmed.cpv.CircularProgressView$6: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +james.adaptiveicon.R$id: int src_over +okhttp3.internal.cache.DiskLruCache: int appVersion +james.adaptiveicon.R$attr: int spinnerStyle +wangdaye.com.geometricweather.R$color: int test_mtrl_calendar_day +androidx.viewpager2.R$styleable: int GradientColor_android_startX +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Caption +wangdaye.com.geometricweather.R$drawable: int weather_snow_pixel +android.didikee.donate.R$dimen: int abc_text_size_button_material +com.google.android.material.textfield.TextInputLayout: void setHelperTextTextAppearance(int) +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_icon_vertical_padding_material +okhttp3.internal.http2.Http2: byte TYPE_DATA +com.google.android.material.bottomsheet.BottomSheetBehavior$SavedState: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$attr: int editTextStyle +wangdaye.com.geometricweather.R$id: int chip1 +androidx.hilt.work.R$color: int ripple_material_light +com.google.android.material.R$attr: int titleMargins +wangdaye.com.geometricweather.db.entities.WeatherEntity: int getTemperature() +com.google.android.material.R$dimen: int design_navigation_item_icon_padding +wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_1 +james.adaptiveicon.R$id: int normal +androidx.constraintlayout.widget.R$attr: int fontProviderQuery +okhttp3.internal.http2.Http2Connection: void awaitPong() +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRainPrecipitationProbability(java.lang.Float) +wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_elevation +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_disabled_material_dark +androidx.lifecycle.SavedStateViewModelFactory: void onRequery(androidx.lifecycle.ViewModel) +com.google.android.material.R$styleable: int LinearLayoutCompat_dividerPadding +okhttp3.Call: void cancel() wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_xml -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.Observer downstream -com.jaredrummler.android.colorpicker.R$attr: int fontProviderAuthority -androidx.lifecycle.reactivestreams.R: R() -okhttp3.internal.connection.RealConnection: okio.BufferedSource source -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_framePosition -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Subtitle2 -com.google.android.material.bottomnavigation.BottomNavigationItemView -com.xw.repo.bubbleseekbar.R$id: int shortcut -com.xw.repo.bubbleseekbar.R$style: int Platform_Widget_AppCompat_Spinner -android.didikee.donate.R$anim: int abc_slide_in_top -androidx.preference.R$styleable: int CompoundButton_buttonCompat -androidx.constraintlayout.widget.R$layout: int select_dialog_item_material -androidx.drawerlayout.R$dimen -androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotationX -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_MinWidth -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Time -androidx.vectordrawable.animated.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getWeather() -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.HistoryEntity) -okhttp3.internal.connection.ConnectInterceptor: okhttp3.OkHttpClient client -androidx.appcompat.R$styleable: int AppCompatTheme_listPopupWindowStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer dbz -androidx.preference.R$string: int abc_menu_ctrl_shortcut_label -io.reactivex.internal.queue.SpscArrayQueue: void clear() -androidx.appcompat.widget.AppCompatTextView: int getFirstBaselineToTopHeight() -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginTop -com.google.android.material.R$string: int material_hour_suffix -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setChecked(boolean) -com.github.rahatarmanahmed.cpv.CircularProgressView$8: void onAnimationUpdate(android.animation.ValueAnimator) -io.reactivex.Observable: io.reactivex.Observable retryWhen(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_background -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.google.android.material.R$attr: int textAppearanceHeadline5 -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.internal.disposables.SequentialDisposable upstream -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List phenomenonsItems -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void dispose() -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_xml -com.google.android.material.slider.RangeSlider: void setThumbElevationResource(int) -androidx.preference.R$drawable: int abc_ab_share_pack_mtrl_alpha -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginTop -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_Alert -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA -io.reactivex.internal.operators.observable.ObserverResourceWrapper: io.reactivex.Observer downstream -android.didikee.donate.R$style: int Widget_AppCompat_Light_ListView_DropDown -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.disposables.CompositeDisposable observers -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu -com.google.android.material.R$id: int autoCompleteToEnd -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarItemBackground -com.google.android.material.R$styleable: int StateListDrawable_android_exitFadeDuration -cyanogenmod.app.ProfileManager: boolean isProfilesEnabled() -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_anchor -com.xw.repo.bubbleseekbar.R$color: int abc_btn_colored_borderless_text_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setModifyInHour(boolean) -androidx.preference.R$attr: int fastScrollHorizontalThumbDrawable -okhttp3.internal.http.HttpDate: java.text.DateFormat[] BROWSER_COMPATIBLE_DATE_FORMATS -com.jaredrummler.android.colorpicker.R$attr: int popupTheme -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginRight -wangdaye.com.geometricweather.R$drawable: int notif_temp_56 -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvDescription -okhttp3.internal.ws.RealWebSocket: java.util.concurrent.ScheduledFuture cancelFuture -io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.MaybeObserver) -wangdaye.com.geometricweather.R$attr: int cornerFamilyBottomLeft -okio.ByteString: boolean equals(java.lang.Object) -androidx.appcompat.R$styleable: int[] LinearLayoutCompat_Layout -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -wangdaye.com.geometricweather.R$style: int PreferenceCategoryTitleTextStyle -androidx.coordinatorlayout.R$dimen: R$dimen() -com.xw.repo.bubbleseekbar.R$attr: int selectableItemBackground -androidx.constraintlayout.widget.R$styleable: int PropertySet_motionProgress -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: ObservableWithLatestFromMany$WithLatestFromObserver(io.reactivex.Observer,io.reactivex.functions.Function,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemBackgroundRes(int) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeRealFeelShaderTemperature -com.xw.repo.bubbleseekbar.R$attr: int expandActivityOverflowButtonDrawable -com.bumptech.glide.integration.okhttp.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.R$attr: int titleTextAppearance -okhttp3.internal.http2.Http2Codec: java.lang.String PROXY_CONNECTION -com.google.android.material.floatingactionbutton.FloatingActionButton: int getSize() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.google.android.material.R$id: int action_menu_presenter -androidx.viewpager2.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_pageIndicatorColor -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] EMPTY_RULE -android.didikee.donate.R$attr: int switchPadding -androidx.appcompat.view.menu.ActionMenuItemView: void setPopupCallback(androidx.appcompat.view.menu.ActionMenuItemView$PopupCallback) -androidx.constraintlayout.widget.R$id: int action_bar_subtitle -android.didikee.donate.R$dimen: int abc_button_inset_horizontal_material -wangdaye.com.geometricweather.R$drawable: int notif_temp_118 -okhttp3.Cache$CacheRequestImpl: okio.Sink body() -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder listener(okhttp3.internal.http2.Http2Connection$Listener) -okhttp3.ConnectionSpec: okhttp3.CipherSuite[] RESTRICTED_CIPHER_SUITES -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_normal_material_dark -com.google.android.material.snackbar.BaseTransientBottomBar$Behavior: BaseTransientBottomBar$Behavior() -androidx.constraintlayout.widget.R$attr: int actionModePasteDrawable -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_precise_anchor_threshold -okhttp3.WebSocketListener: void onClosing(okhttp3.WebSocket,int,java.lang.String) -com.google.android.material.R$style: int Widget_AppCompat_ActionMode -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_NIGHT_VALIDATOR -androidx.appcompat.R$dimen: int abc_action_bar_subtitle_top_margin_material -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_ignoreBatteryOptBtn -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_goIcon -com.google.gson.stream.JsonReader: int PEEKED_BEGIN_OBJECT -cyanogenmod.providers.CMSettings$Global: float getFloat(android.content.ContentResolver,java.lang.String,float) -androidx.constraintlayout.widget.Constraints -com.google.android.material.R$attr: int selectableItemBackground -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void dispose() -androidx.hilt.lifecycle.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void attachEntity(java.lang.Object) -androidx.preference.R$style: int Widget_AppCompat_ImageButton -com.bumptech.glide.R$id: int line3 -com.google.android.material.R$style: int Platform_MaterialComponents_Light -com.google.android.material.progressindicator.ProgressIndicator: void setCircularInset(int) -com.google.android.material.R$styleable: int[] SearchView -androidx.preference.R$attr: int controlBackground -androidx.core.R$id: int accessibility_custom_action_21 -retrofit2.KotlinExtensions$await$4$2: kotlinx.coroutines.CancellableContinuation $continuation -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.util.Locale getLocale() -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: java.lang.String Unit -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void subscribeNext() -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: SavedStateHandle$SavingStateLiveData(androidx.lifecycle.SavedStateHandle,java.lang.String,java.lang.Object) -androidx.hilt.lifecycle.R$attr: int fontWeight -cyanogenmod.profiles.BrightnessSettings: boolean isDirty() -androidx.preference.R$styleable: int FontFamilyFont_android_font -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SeekBar -com.turingtechnologies.materialscrollbar.R$string: int abc_capital_off -androidx.recyclerview.R$dimen: R$dimen() -androidx.preference.R$color: int notification_icon_bg_color -androidx.constraintlayout.widget.R$integer: int config_tooltipAnimTime -com.google.android.material.R$dimen: int notification_small_icon_background_padding -retrofit2.http.HTTP -androidx.coordinatorlayout.R$drawable: int notification_bg_low_normal -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconDrawable -wangdaye.com.geometricweather.R$string: int material_minute_selection -okhttp3.internal.http2.Hpack$Reader: boolean isStaticHeader(int) -com.google.android.material.R$layout: int design_navigation_item_subheader -androidx.preference.R$layout: int abc_screen_simple_overlay_action_mode -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationY -cyanogenmod.platform.R$xml: R$xml() -androidx.preference.R$layout: int abc_cascading_menu_item_layout -wangdaye.com.geometricweather.R$color: int background_material_light -okhttp3.internal.http2.Http2Stream: okio.Sink getSink() -wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogIcon -androidx.constraintlayout.widget.R$styleable: int SearchView_queryBackground -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_width_material -com.turingtechnologies.materialscrollbar.R$attr: int behavior_peekHeight -androidx.viewpager2.R$dimen: int notification_action_icon_size -com.xw.repo.bubbleseekbar.R$styleable: int ActionBarLayout_android_layout_gravity -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float visibility -cyanogenmod.app.IPartnerInterface: boolean setZenModeWithDuration(int,long) -com.google.android.material.chip.Chip: void setIconStartPaddingResource(int) -androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context) -com.google.android.material.R$dimen: int mtrl_textinput_end_icon_margin_start -androidx.dynamicanimation.R$styleable: int[] GradientColorItem -com.turingtechnologies.materialscrollbar.R$attr: int collapsedTitleTextAppearance -com.google.android.material.R$color: int design_default_color_primary_variant -androidx.recyclerview.widget.StaggeredGridLayoutManager$SavedState -wangdaye.com.geometricweather.R$dimen: int cpv_column_width -com.jaredrummler.android.colorpicker.R$attr: int panelMenuListWidth -cyanogenmod.app.ThemeVersion$ComponentVersion: int currentVersion -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer realFeelShaderTemperature -wangdaye.com.geometricweather.R$style: int activity_create_widget_done_button -com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer ragweedIndex -androidx.appcompat.R$attr: int textColorSearchUrl -com.turingtechnologies.materialscrollbar.R$string: int hide_bottom_view_on_scroll_behavior -androidx.hilt.lifecycle.R$id: int visible_removing_fragment_view_tag -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -com.google.android.material.floatingactionbutton.FloatingActionButton: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) -okhttp3.Address: javax.net.ssl.HostnameVerifier hostnameVerifier -androidx.constraintlayout.widget.R$color: int material_blue_grey_950 -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$id: int recyclerView -androidx.hilt.work.R$id: int accessibility_custom_action_15 -androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean deferredSetOnce(java.util.concurrent.atomic.AtomicReference,java.util.concurrent.atomic.AtomicLong,org.reactivestreams.Subscription) -cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.AppSuggestManager getInstance(android.content.Context) -com.google.android.material.textfield.TextInputLayout: android.widget.TextView getPrefixTextView() -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float Ozone -com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_linear_out_slow_in -com.xw.repo.BubbleSeekBar: void setBubbleColor(int) -com.google.gson.stream.JsonReader: int PEEKED_DOUBLE_QUOTED -com.google.android.material.R$style: int ShapeAppearanceOverlay_BottomRightCut -com.google.android.material.R$styleable: int[] BottomAppBar -cyanogenmod.weatherservice.ServiceRequestResult: int hashCode() +androidx.customview.R$drawable: int notification_bg +okhttp3.CertificatePinner: CertificatePinner(java.util.Set,okhttp3.internal.tls.CertificateChainCleaner) +org.greenrobot.greendao.AbstractDaoMaster: AbstractDaoMaster(org.greenrobot.greendao.database.Database,int) +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: void enqueue(retrofit2.Callback) +com.xw.repo.bubbleseekbar.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setBackgroundColorEnd(int) +androidx.recyclerview.widget.RecyclerView: int getScrollState() +androidx.work.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$drawable: int mtrl_ic_error +wangdaye.com.geometricweather.db.entities.DailyEntity: void setTime(long) +okhttp3.MultipartBody$Part: MultipartBody$Part(okhttp3.Headers,okhttp3.RequestBody) +androidx.constraintlayout.widget.R$attr: int layout_goneMarginStart +androidx.constraintlayout.widget.R$color: int abc_background_cache_hint_selector_material_dark +okio.Buffer: okio.BufferedSink writeInt(int) +androidx.core.R$layout: int notification_template_part_chronometer +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.Class clientProviderClass +okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withWriteTimeout(int,java.util.concurrent.TimeUnit) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.internal.util.AtomicThrowable errors +okio.BufferedSource: boolean request(long) +androidx.constraintlayout.widget.R$attr: int borderlessButtonStyle +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void drain() +androidx.constraintlayout.widget.R$attr +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_menuCategory +com.xw.repo.bubbleseekbar.R$attr: int bsb_track_size +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: boolean connected +wangdaye.com.geometricweather.R$attr: int dividerPadding +androidx.transition.R$id: int ghost_view +com.google.android.material.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setOnPageSwipeListener(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout$OnPagerSwipeListener) +androidx.viewpager.R$drawable: int notification_action_background +com.google.android.material.R$styleable: int Constraint_android_layout_marginRight +androidx.recyclerview.R$color: R$color() +okio.SegmentedByteString +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_disabled_material_dark +androidx.constraintlayout.widget.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +io.reactivex.Observable: io.reactivex.Observable concatMap(io.reactivex.functions.Function) +androidx.lifecycle.extensions.R$id: int blocking +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_gravity +wangdaye.com.geometricweather.R$id: int italic +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endColor +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: IExternalViewProviderFactory$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_light +com.google.android.material.R$id: int accessibility_custom_action_17 +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.functions.Function combiner +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void errorAll(io.reactivex.Observer) +okhttp3.internal.cache2.Relay: long bufferMaxSize +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource[] values() +okio.RealBufferedSource: okio.Source source +androidx.appcompat.widget.SwitchCompat: android.graphics.drawable.Drawable getTrackDrawable() +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabTextStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarDivider +androidx.constraintlayout.widget.R$id: int linear +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setSpeed(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setWeather(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean) +wangdaye.com.geometricweather.R$id: int moldValue +cyanogenmod.externalviews.KeyguardExternalView$3: android.graphics.Rect val$clipRect +androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_min +androidx.preference.R$attr: int actionModeSelectAllDrawable +wangdaye.com.geometricweather.R$drawable: int notif_temp_73 +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onComplete() +androidx.appcompat.R$id: int src_in +james.adaptiveicon.R$styleable: int ActionBar_itemPadding +okio.HashingSource: HashingSource(okio.Source,okio.ByteString,java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_textOff +cyanogenmod.weather.util.WeatherUtils +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: java.util.ArrayDeque windows +androidx.preference.R$dimen: int abc_seekbar_track_progress_height_material +android.didikee.donate.R$styleable: int AppCompatTextView_lineHeight +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitationProbability(java.lang.Float) +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeAlpha(float) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextBackground +io.reactivex.Observable: io.reactivex.Observable skip(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.vectordrawable.R$color: int ripple_material_light +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver +okhttp3.HttpUrl: int querySize() +okhttp3.Cookie: java.util.List parseAll(okhttp3.HttpUrl,okhttp3.Headers) +wangdaye.com.geometricweather.R$attr: int fastScrollVerticalThumbDrawable +okio.RealBufferedSink$1 +cyanogenmod.app.ProfileManager +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.util.AtomicThrowable errors +androidx.work.R$id: int title +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: ObservableMergeWithCompletable$MergeWithObserver(io.reactivex.Observer) +okio.GzipSource: long read(okio.Buffer,long) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: android.os.IBinder createExternalView(android.os.Bundle) +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_with_text_radius +cyanogenmod.media.MediaRecorder: java.lang.String EXTRA_CURRENT_PACKAGE_NAME +com.google.android.material.R$styleable: int ThemeEnforcement_enforceMaterialTheme +com.google.android.material.R$attr: int chipIconSize +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum Maximum +com.google.android.material.R$styleable: int StateListDrawable_android_constantSize +androidx.preference.R$id: int spacer +wangdaye.com.geometricweather.R$transition +wangdaye.com.geometricweather.R$styleable: int ArcProgress_text +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_5 +wangdaye.com.geometricweather.R$attr: int track +androidx.constraintlayout.widget.R$attr: int contentInsetEndWithActions +androidx.transition.R$attr: int fontProviderQuery +okhttp3.internal.annotations.EverythingIsNonNull +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.R$string: int get_more_store +james.adaptiveicon.R$attr: int titleMarginStart +com.google.android.material.R$attr: int trackTint +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onNext(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isModifyInHour() +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_enterFadeDuration +androidx.transition.R$styleable: int[] GradientColorItem +com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context,android.util.AttributeSet,int) +androidx.recyclerview.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextSpinner +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String ENABLED +io.reactivex.internal.schedulers.ScheduledRunnable: void run() +wangdaye.com.geometricweather.R$animator: int weather_wind_1 +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: int fusionMode +com.google.android.material.R$styleable: int ConstraintSet_android_scaleY +com.google.android.material.chip.ChipGroup: void setChipSpacingHorizontalResource(int) +okio.RealBufferedSink: boolean closed +wangdaye.com.geometricweather.R$styleable: int[] InkPageIndicator +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_collapseContentDescription +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.HistoryEntity,long) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display1 +androidx.appcompat.R$anim: int btn_checkbox_to_checked_icon_null_animation +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_NoActionBar +com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_900 +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver +androidx.coordinatorlayout.R$integer +com.google.android.material.R$styleable: int KeyPosition_percentY +androidx.coordinatorlayout.R$id: int accessibility_custom_action_26 +com.google.android.material.R$attr: int errorIconTint +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginBottom() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_64 +wangdaye.com.geometricweather.R$string: int key_forecast_today +okio.SegmentedByteString: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: int UnitType +androidx.constraintlayout.widget.R$attr: int minHeight +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_AIR_QUALITY +androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnDestroy() +androidx.appcompat.R$drawable: int abc_ic_star_half_black_36dp +james.adaptiveicon.R$attr: int contentInsetStart +com.xw.repo.bubbleseekbar.R$color: int material_grey_300 +androidx.appcompat.R$styleable: int FontFamily_fontProviderPackage +com.google.gson.stream.JsonWriter: void beforeName() +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: boolean isDisposed() +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_showText +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String uvLevel +cyanogenmod.app.StatusBarPanelCustomTile +com.google.android.material.R$id: int wrap +androidx.hilt.lifecycle.R$id: int title +com.google.android.material.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderAuthority +com.bumptech.glide.integration.okhttp.R$integer +androidx.hilt.lifecycle.R$anim: int fragment_close_exit +androidx.constraintlayout.widget.R$attr: int customPixelDimension +androidx.appcompat.widget.AppCompatTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.appcompat.R$string: int abc_search_hint +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabView +androidx.preference.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_always_show_bubble_delay +com.google.android.material.R$attr: int checkedIconVisible +okhttp3.MediaType: okhttp3.MediaType get(java.lang.String) +james.adaptiveicon.R$attr: int listMenuViewStyle +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_Alert +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: MinutelyEntityDao$Properties() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_DropDown +wangdaye.com.geometricweather.R$drawable: int notif_temp_50 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String getValue() +com.turingtechnologies.materialscrollbar.R$attr: int autoSizeMaxTextSize +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2(androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription) +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_Search +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.reflect.Type responseType() +androidx.appcompat.widget.AppCompatCheckBox: void setSupportBackgroundTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$id: int right_side +james.adaptiveicon.R$attr: int actionLayout +wangdaye.com.geometricweather.R$drawable: int avd_hide_password +androidx.viewpager2.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.work.R$attr: int fontProviderQuery +com.google.android.material.R$drawable: int abc_text_cursor_material +android.didikee.donate.R$attr: int expandActivityOverflowButtonDrawable +okhttp3.internal.cache.DiskLruCache$Snapshot: long getLength(int) +com.turingtechnologies.materialscrollbar.R$attr: int layoutManager +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: AccuDailyResult$DailyForecasts$Day$Wind$Direction() +com.google.android.material.R$color: int radiobutton_themeable_attribute_color +androidx.constraintlayout.widget.R$styleable: int Toolbar_navigationContentDescription +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: long serialVersionUID +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_horizontal_padding +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_percent +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.Date pubTime +androidx.preference.R$string: int copy +androidx.drawerlayout.R$id: R$id() +com.turingtechnologies.materialscrollbar.R$id: int icon +wangdaye.com.geometricweather.R$layout: int dialog_adaptive_icon +com.google.android.material.textfield.TextInputLayout: void setErrorIconVisible(boolean) +wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.converters.WeatherSourceConverter weatherSourceConverter +wangdaye.com.geometricweather.R$attr: int cpv_thickness +androidx.vectordrawable.R$styleable: int[] GradientColorItem +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_middle_mtrl_light +com.google.android.material.R$id: int textinput_prefix_text +com.google.android.material.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +wangdaye.com.geometricweather.R$drawable: int preference_list_divider_material +com.google.android.material.R$attr: int tickColorActive +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +cyanogenmod.providers.CMSettings$System: java.lang.String ASSIST_WAKE_SCREEN +cyanogenmod.profiles.StreamSettings: boolean isDirty() +james.adaptiveicon.R$attr: int selectableItemBackgroundBorderless +wangdaye.com.geometricweather.db.entities.AlertEntity: int getColor() +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_1 +com.google.android.material.R$drawable: int abc_switch_track_mtrl_alpha +android.didikee.donate.R$id: int showHome +cyanogenmod.app.PartnerInterface: cyanogenmod.app.PartnerInterface sPartnerInterfaceInstance +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleContentDescription +retrofit2.OkHttpCall: okhttp3.Request request() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality() +androidx.swiperefreshlayout.R$id: int italic +androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityStopped(android.app.Activity) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric() +com.jaredrummler.android.colorpicker.R$styleable: int[] GradientColor +com.jaredrummler.android.colorpicker.R$styleable: int View_theme +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ASSIST_WAKE_SCREEN_VALIDATOR +androidx.appcompat.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_25 +com.google.android.material.R$attr: int touchRegionId +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getNestedScrollAxes() +com.google.android.material.R$styleable: int Layout_android_layout_marginLeft +io.reactivex.internal.schedulers.ScheduledRunnable: ScheduledRunnable(java.lang.Runnable,io.reactivex.internal.disposables.DisposableContainer) +android.didikee.donate.R$styleable: int Toolbar_titleTextAppearance +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.Scheduler scheduler +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit +wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_textAllCaps +com.jaredrummler.android.colorpicker.R$layout: int preference_information_material +androidx.viewpager.widget.PagerTitleStrip +androidx.lifecycle.Observer +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_seekBarStyle +androidx.preference.R$id: int tabMode +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.widget.ActionBarOverlayLayout +androidx.preference.R$style: int Widget_AppCompat_Light_ListPopupWindow +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorError +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView +io.reactivex.internal.util.NotificationLite$DisposableNotification: NotificationLite$DisposableNotification(io.reactivex.disposables.Disposable) +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_dotGap +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_text_size +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setPageCount(int) +james.adaptiveicon.R$attr: int voiceIcon +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.MinutelyEntityDao getMinutelyEntityDao() +com.turingtechnologies.materialscrollbar.R$id: int async +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer realFeelShaderTemperature +androidx.preference.R$styleable: int AnimatedStateListDrawableItem_android_id +androidx.constraintlayout.widget.R$styleable: int[] AppCompatTextHelper +com.google.android.material.R$styleable: int[] StateListDrawableItem +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mCallGetCommand +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.Scheduler scheduler +com.google.android.material.chip.Chip: void setChipBackgroundColorResource(int) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_fontFamily +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motionTarget +androidx.legacy.coreutils.R$dimen: int notification_action_icon_size +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mVibrateMode +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBaseline_creator +okio.RealBufferedSink: okio.BufferedSink writeByte(int) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign +okhttp3.CipherSuite: java.lang.String secondaryName(java.lang.String) +androidx.constraintlayout.widget.R$attr: int constraintSetEnd +cyanogenmod.power.PerformanceManager: java.lang.String TAG +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicInteger windows +wangdaye.com.geometricweather.R$string: int refresh_at +com.google.android.material.R$style: int Theme_Design +com.google.android.material.R$styleable: int TextInputLayout_errorContentDescription +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_ripple_color +cyanogenmod.hardware.ThermalListenerCallback +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +okhttp3.internal.connection.RealConnection: okhttp3.Handshake handshake +wangdaye.com.geometricweather.R$color: int mtrl_fab_ripple_color +com.google.android.material.R$color: int button_material_light +androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_default +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Type +androidx.preference.R$styleable: int AppCompatTheme_editTextBackground +androidx.appcompat.R$styleable: int SearchView_layout +androidx.work.R$id: int accessibility_custom_action_21 +com.jaredrummler.android.colorpicker.R$attr: int dialogCornerRadius +okio.Pipe: okio.Sink sink() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial Imperial +androidx.preference.R$id: int progress_circular +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean hasNext() +androidx.recyclerview.R$attr: int stackFromEnd +com.google.android.material.R$string: int mtrl_picker_toggle_to_text_input_mode wangdaye.com.geometricweather.R$attr: int logoDescription -com.google.android.material.R$styleable: int Layout_layout_constraintLeft_toRightOf -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: android.net.Uri CONTENT_URI -com.jaredrummler.android.colorpicker.R$id: int shades_layout -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_63 -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Large -com.bumptech.glide.MemoryCategory: float getMultiplier() -com.google.android.material.R$styleable: int MaterialButton_strokeWidth -androidx.fragment.R$id: int action_divider -cyanogenmod.providers.CMSettings$System: java.lang.String APP_SWITCH_WAKE_SCREEN -com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_icon -androidx.dynamicanimation.R$color: int ripple_material_light -cyanogenmod.externalviews.IExternalViewProvider$Stub: java.lang.String DESCRIPTOR -androidx.vectordrawable.animated.R$styleable: int[] GradientColor -androidx.constraintlayout.widget.R$styleable: int RecycleListView_paddingBottomNoButtons -com.google.android.material.R$styleable: int MotionLayout_motionDebug -androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context,android.util.AttributeSet) -io.reactivex.Observable: io.reactivex.Observable concatMapDelayError(io.reactivex.functions.Function) -androidx.work.R$styleable: int ColorStateListItem_alpha -org.greenrobot.greendao.AbstractDaoSession: java.lang.Object callInTxNoException(java.util.concurrent.Callable) -cyanogenmod.app.CustomTile$ListExpandedStyle: CustomTile$ListExpandedStyle() -com.google.android.material.R$drawable: int abc_textfield_search_material -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Headline -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontStyle -com.google.android.material.R$color: int mtrl_chip_background_color -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWindDirection() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String wind_speed -androidx.lifecycle.LifecycleRegistry: void markState(androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.R$drawable: int shortcuts_snow_foreground -wangdaye.com.geometricweather.R$attr: int unfold -okio.Buffer$UnsafeCursor: int start -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_WARM_RISING -com.google.android.material.R$id: int confirm_button -wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_default -cyanogenmod.app.Profile$TriggerType -com.google.android.material.R$styleable: int FloatingActionButton_elevation -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetEnd -com.xw.repo.bubbleseekbar.R$color: int background_material_dark -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTopCompat -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getNotificationThemePackageName() -androidx.work.R$integer: R$integer() -androidx.lifecycle.ProcessLifecycleOwner: boolean mStopSent -wangdaye.com.geometricweather.R$string: int abc_action_bar_home_description -wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_pressed_alpha -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: CompletableFutureCallAdapterFactory$ResponseCallAdapter(java.lang.reflect.Type) -androidx.preference.R$dimen: int tooltip_y_offset_non_touch -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -androidx.constraintlayout.widget.R$dimen: int abc_text_size_subhead_material -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Tooltip -com.xw.repo.bubbleseekbar.R$attr: int arrowShaftLength -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int prefetch -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -com.google.android.material.bottomappbar.BottomAppBar: float getFabTranslationX() -wangdaye.com.geometricweather.R$string: int widget_week -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$attr: int paddingEnd -androidx.preference.R$dimen: int tooltip_y_offset_touch -com.google.android.material.R$style: int TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_lightContainer -wangdaye.com.geometricweather.R$string: int settings_title_precipitation_notification_switch -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean getForecastDaily() -cyanogenmod.themes.IThemeChangeListener$Stub: android.os.IBinder asBinder() -retrofit2.http.GET -retrofit2.RequestBuilder: java.lang.String PATH_SEGMENT_ALWAYS_ENCODE_SET -wangdaye.com.geometricweather.R$attr: int barLength -wangdaye.com.geometricweather.R$attr: int theme -com.google.android.material.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -androidx.preference.R$attr: int actionModeCloseButtonStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode daytimeWeatherCode -okio.Buffer: okio.BufferedSink writeInt(int) -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Update -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.subjects.UnicastSubject window -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: AccuLocationResult$Region() -com.jaredrummler.android.colorpicker.R$id: int buttonPanel -android.didikee.donate.R$id: int search_mag_icon -com.xw.repo.bubbleseekbar.R$style: int Base_DialogWindowTitle_AppCompat -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display1 -androidx.appcompat.R$drawable: int abc_switch_track_mtrl_alpha -androidx.customview.R$dimen: int notification_media_narrow_margin -cyanogenmod.app.Profile: void setTrigger(int,java.lang.String,int,java.lang.String) -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.functions.BiPredicate comparer -androidx.constraintlayout.widget.R$attr: int dialogTheme -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_overflow_padding_end_material -james.adaptiveicon.R$styleable: int ActionBar_homeAsUpIndicator -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: double Value -androidx.lifecycle.extensions.R$id: int icon -cyanogenmod.providers.CMSettings$System: java.lang.String[] LEGACY_SYSTEM_SETTINGS -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_subtitleTextStyle -wangdaye.com.geometricweather.R$styleable: int TabItem_android_icon -com.turingtechnologies.materialscrollbar.R$color: int abc_btn_colored_borderless_text_material -com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace DISPLAY_P3 -okhttp3.internal.http2.Http2Stream$FramingSource: okhttp3.internal.http2.Http2Stream this$0 -com.xw.repo.bubbleseekbar.R$drawable: int notification_action_background -cyanogenmod.profiles.LockSettings: boolean mDirty -cyanogenmod.providers.CMSettings$Secure: java.lang.String PROTECTED_COMPONENTS -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Title -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_registerListener -wangdaye.com.geometricweather.R$drawable: int tooltip_frame_dark -wangdaye.com.geometricweather.R$attr: int backgroundOverlayColorAlpha -com.google.android.material.R$attr: int prefixTextColor -wangdaye.com.geometricweather.R$id: int incoming -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endColor -androidx.appcompat.R$styleable: int AppCompatTheme_colorControlActivated -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.Date getPubTime() -wangdaye.com.geometricweather.db.entities.HourlyEntity: long getTime() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.google.android.material.R$styleable: int AppCompatTextView_drawableTopCompat -wangdaye.com.geometricweather.common.basic.models.weather.Alert: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogCenterButtons -com.google.android.material.behavior.HideBottomViewOnScrollBehavior -okhttp3.internal.platform.Platform: void log(int,java.lang.String,java.lang.Throwable) -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.R$string: int wechat -androidx.appcompat.R$string: int abc_menu_shift_shortcut_label -androidx.fragment.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.R$dimen: int design_tab_scrollable_min_width -wangdaye.com.geometricweather.background.polling.work.worker.AsyncWorker: AsyncWorker(android.content.Context,androidx.work.WorkerParameters) -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextAppearanceInactive(int) -androidx.preference.R$interpolator: int fast_out_slow_in -androidx.loader.R$attr: int fontProviderQuery -androidx.preference.R$styleable: int AppCompatTheme_activityChooserViewStyle -wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_initialExpandedChildrenCount -io.reactivex.internal.operators.observable.ObservableReplay$Node: long serialVersionUID -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent[] values() -com.google.android.material.R$attr: int fabCradleRoundedCornerRadius -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String title -wangdaye.com.geometricweather.R$id: int fragment -okhttp3.FormBody: long writeOrCountBytes(okio.BufferedSink,boolean) -com.google.android.material.R$styleable: int MaterialCardView_shapeAppearance -androidx.appcompat.widget.AppCompatCheckedTextView -androidx.constraintlayout.widget.R$id: int tabMode -androidx.core.R$attr: int fontProviderCerts -com.google.android.material.R$color: int bright_foreground_inverse_material_light -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_enterFadeDuration -androidx.preference.R$styleable: int Spinner_android_prompt -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_3DES_EDE_CBC_SHA -android.didikee.donate.R$color: int secondary_text_disabled_material_light -androidx.vectordrawable.R$id: int accessibility_custom_action_10 -com.google.android.material.R$styleable: int Variant_region_heightLessThan -com.google.android.material.timepicker.ChipTextInputComboView -com.google.android.material.R$styleable: int Layout_android_layout_height -com.bumptech.glide.integration.okhttp.R$style: int Widget_Compat_NotificationActionContainer -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -androidx.constraintlayout.widget.R$drawable: int abc_vector_test -wangdaye.com.geometricweather.R$dimen: int material_cursor_inset_top -com.jaredrummler.android.colorpicker.R$color: int primary_text_default_material_light -wangdaye.com.geometricweather.R$dimen: int widget_grid_1 -androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context,android.util.AttributeSet) -okhttp3.Response$Builder: okhttp3.Response$Builder receivedResponseAtMillis(long) -com.google.gson.internal.LinkedTreeMap: java.lang.Object put(java.lang.Object,java.lang.Object) -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Borderless -wangdaye.com.geometricweather.R$style: int Platform_AppCompat -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_padding_start_material -com.jaredrummler.android.colorpicker.ColorPreference: void setOnShowDialogListener(com.jaredrummler.android.colorpicker.ColorPreference$OnShowDialogListener) -androidx.appcompat.widget.Toolbar: androidx.appcompat.widget.ActionMenuPresenter getOuterActionMenuPresenter() -io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier INSTANCE -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TimeStamp -com.xw.repo.bubbleseekbar.R$attr: int iconifiedByDefault -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_23 -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_layout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setHeadDescription(java.lang.String) -androidx.vectordrawable.animated.R$styleable -cyanogenmod.app.LiveLockScreenInfo: int describeContents() -wangdaye.com.geometricweather.R$attr: int actionModeFindDrawable -wangdaye.com.geometricweather.R$drawable: int notif_temp_35 -okio.RealBufferedSink: okio.Timeout timeout() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX getAqi() -androidx.viewpager.R$id: int line1 -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceInformationStyle -androidx.preference.R$styleable: int MenuView_android_horizontalDivider -androidx.constraintlayout.widget.R$attr: int layout_constraintCircleAngle -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.drawerlayout.R$styleable: int FontFamilyFont_fontStyle -androidx.activity.R$style: int Widget_Compat_NotificationActionContainer -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_cursor_material -com.google.android.material.R$styleable: int MaterialButton_elevation -cyanogenmod.weather.RequestInfo: RequestInfo(cyanogenmod.weather.RequestInfo$1) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean delayErrors -james.adaptiveicon.R$styleable: int AppCompatSeekBar_android_thumb -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipEndPadding -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object value -com.google.android.material.R$styleable: int TextInputLayout_android_textColorHint -androidx.viewpager.R$layout: int notification_template_part_time -com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: FloatingActionButton$Behavior() -wangdaye.com.geometricweather.main.layouts.TrendHorizontalLinearLayoutManager -android.didikee.donate.R$styleable: int View_android_focusable -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity -androidx.hilt.R$styleable: int FontFamilyFont_android_font -james.adaptiveicon.R$styleable: int[] FontFamily -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -cyanogenmod.app.ICMStatusBarManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode CLOUDY -cyanogenmod.externalviews.ExternalView$5: void run() -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.ObservableEmitter serialize() -androidx.appcompat.R$string: int abc_capital_on -cyanogenmod.app.Profile$ProfileTrigger: int access$202(cyanogenmod.app.Profile$ProfileTrigger,int) -com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.slider.BaseSlider: void setTickTintList(android.content.res.ColorStateList) -james.adaptiveicon.R$styleable: int MenuView_preserveIconSpacing -androidx.dynamicanimation.R$dimen: int notification_media_narrow_margin -com.google.android.material.slider.BaseSlider: float getValueFrom() -james.adaptiveicon.R$styleable: int AppCompatTheme_colorAccent -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: org.reactivestreams.Subscriber mSubscriber -okhttp3.Authenticator$1: Authenticator$1() -androidx.preference.R$color: int switch_thumb_material_dark -androidx.appcompat.R$dimen: int abc_action_bar_stacked_max_height -com.xw.repo.bubbleseekbar.R$attr: int initialActivityCount -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List ganmao -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Toolbar -com.google.android.material.chip.Chip: void setCloseIconSize(float) -james.adaptiveicon.R$layout -wangdaye.com.geometricweather.R$drawable: int abc_ic_search_api_material -retrofit2.ParameterHandler$Body: ParameterHandler$Body(java.lang.reflect.Method,int,retrofit2.Converter) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemIconDisabledAlpha -androidx.loader.R$styleable: int GradientColorItem_android_color -com.turingtechnologies.materialscrollbar.R$string: int abc_action_mode_done -retrofit2.OkHttpCall: boolean canceled -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: boolean requestDismiss() -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit HPA -androidx.lifecycle.SavedStateHandle: java.lang.Object get(java.lang.String) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String cityId -androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -android.didikee.donate.R$id: int action_menu_presenter -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Button -wangdaye.com.geometricweather.R$anim: int fragment_manange_pop_exit -androidx.preference.SwitchPreference: SwitchPreference(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$styleable: int AppCompatTextView_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_layout -androidx.appcompat.R$styleable: int SearchView_android_inputType -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX info -androidx.hilt.R$styleable: int GradientColor_android_endY -androidx.constraintlayout.widget.R$attr: int paddingTopNoTitle -com.google.android.material.R$attr: int elevation -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int thumbTextPadding -androidx.constraintlayout.widget.R$attr: int layout_goneMarginStart -retrofit2.Converter: java.lang.Object convert(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String getFrom() -wangdaye.com.geometricweather.background.service.Hilt_CMWeatherProviderService: Hilt_CMWeatherProviderService() -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_text_size -androidx.drawerlayout.R$style: int Widget_Compat_NotificationActionText -androidx.preference.R$id: int accessibility_custom_action_17 -okio.Buffer: int hashCode() -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: java.util.ArrayList cVersions -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setAdaptiveWidthEnabled(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_menuCategory -okhttp3.Headers$Builder: okhttp3.Headers$Builder addUnsafeNonAscii(java.lang.String,java.lang.String) -com.google.android.material.R$color: int mtrl_text_btn_text_color_selector -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: MoonPhase(java.lang.Integer,java.lang.String) -androidx.constraintlayout.widget.R$attr: int drawableTintMode -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.widget.ActionBarContainer: void setStackedBackground(android.graphics.drawable.Drawable) -androidx.constraintlayout.widget.R$id: int action_bar_root -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListPopupWindow -com.google.android.material.R$attr: int framePosition -com.google.android.material.R$style: int Platform_MaterialComponents_Light_Dialog -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_GCM_SHA384 -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_25 -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_width_minor -com.xw.repo.bubbleseekbar.R$color: int background_floating_material_light -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks -wangdaye.com.geometricweather.common.ui.widgets.DonateImageView: DonateImageView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_label_padding -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object readKey(android.database.Cursor,int) -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_orientation -okhttp3.RealCall: okio.AsyncTimeout timeout -okio.RealBufferedSource: java.io.InputStream inputStream() -com.google.gson.internal.LazilyParsedNumber: LazilyParsedNumber(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_showTitle -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: long serialVersionUID -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.LocationEntityDao locationEntityDao -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startColor -com.google.android.material.R$style: int Theme_MaterialComponents_Light_NoActionBar -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.customview.R$attr: int font -com.google.gson.stream.JsonReader: boolean fillBuffer(int) -okhttp3.internal.cache.DiskLruCache: java.io.File journalFile -james.adaptiveicon.R$styleable: int FontFamilyFont_font -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge -androidx.coordinatorlayout.R$id: int accessibility_custom_action_9 -android.didikee.donate.R$style: int Base_Widget_AppCompat_ImageButton -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onNext(java.lang.Object) -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCutDrawable -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -androidx.hilt.lifecycle.R$anim: int fragment_fade_enter -james.adaptiveicon.R$color: int switch_thumb_disabled_material_light -androidx.vectordrawable.animated.R$attr: int fontProviderPackage +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxy(java.net.Proxy) +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long,boolean,int) +android.didikee.donate.R$dimen: int abc_dialog_title_divider_material +wangdaye.com.geometricweather.R$string: int about_page_indicator +okio.SegmentedByteString: byte[] internalArray() +okio.RealBufferedSink: okio.BufferedSink writeUtf8(java.lang.String,int,int) +james.adaptiveicon.R$attr: int autoSizeStepGranularity +io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean tryCancel() +com.turingtechnologies.materialscrollbar.R$string: int fab_transformation_scrim_behavior +retrofit2.adapter.rxjava2.HttpException +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light +com.google.android.material.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +retrofit2.RequestFactory: retrofit2.RequestFactory parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method) +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginTop(int) +com.github.rahatarmanahmed.cpv.R$color: int cpv_default_color +com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Dialog +androidx.recyclerview.R$id: int title +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int mainTextColorResId +wangdaye.com.geometricweather.R$dimen: int mtrl_card_corner_radius +cyanogenmod.providers.CMSettings$Global: java.lang.String SYS_PROP_CM_SETTING_VERSION +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: double Value +okhttp3.Response$Builder: okhttp3.Response$Builder header(java.lang.String,java.lang.String) +okhttp3.RequestBody$3: RequestBody$3(okhttp3.MediaType,java.io.File) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle +cyanogenmod.externalviews.ExternalView$1 +android.didikee.donate.R$attr: int state_above_anchor +androidx.drawerlayout.R$attr: int fontProviderAuthority +androidx.recyclerview.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$attr: int telltales_tailScale +okhttp3.internal.connection.RouteException: void addConnectException(java.io.IOException) +cyanogenmod.power.IPerformanceManager +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType DIMENSION_TYPE +wangdaye.com.geometricweather.R$attr: int haloRadius +retrofit2.Response: okhttp3.ResponseBody errorBody +com.google.android.material.bottomappbar.BottomAppBar: int getFabAnimationMode() +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language UNSIMPLIFIED_CHINESE +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motion_postLayoutCollision +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderFetchTimeout +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver parent +cyanogenmod.power.IPerformanceManager$Stub$Proxy: void cpuBoost(int) +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +androidx.work.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$style: int notification_large_title_text +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.disposables.Disposable upstream +okio.BufferedSource: long indexOf(byte,long,long) +com.google.android.material.R$styleable: int Transition_staggered +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory getInstance(android.app.Application) +com.xw.repo.bubbleseekbar.R$id: int info +com.google.android.material.R$attr: int cornerFamilyTopRight +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontStyle +androidx.constraintlayout.widget.R$styleable: int Constraint_android_scaleX +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.Handler mHandler +cyanogenmod.providers.CMSettings: java.lang.String AUTHORITY +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +androidx.lifecycle.ViewModel: void closeWithRuntimeException(java.lang.Object) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: java.lang.String[] population +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_6 +androidx.core.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.R$id: int circle +okhttp3.Request$Builder: java.lang.String method +androidx.work.impl.WorkManagerInitializer: WorkManagerInitializer() +wangdaye.com.geometricweather.R$drawable: int ic_dress +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: long timeout +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator MENU_WAKE_SCREENN_VALIDATOR +androidx.preference.R$styleable: int MenuItem_actionProviderClass +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +wangdaye.com.geometricweather.R$attr: int snackbarTextViewStyle +cyanogenmod.externalviews.KeyguardExternalView: void access$300(cyanogenmod.externalviews.KeyguardExternalView) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_creator +com.jaredrummler.android.colorpicker.R$attr: int actionModePopupWindowStyle +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +wangdaye.com.geometricweather.R$id: int star_container +okhttp3.internal.http2.Hpack$Writer: boolean emitDynamicTableSizeUpdate +com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow +androidx.preference.R$styleable: int Toolbar_contentInsetRight +com.google.android.material.R$attr: int alphabeticModifiers +wangdaye.com.geometricweather.R$string: int translator +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_motionProgress +com.google.android.material.R$styleable: int Constraint_animate_relativeTo +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitation(java.lang.Float) +com.google.android.material.R$style: int TextAppearance_AppCompat_Display3 +io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_READY +androidx.constraintlayout.widget.R$id: int right_icon +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean mainDone +com.google.android.material.R$styleable: int ActionBar_title +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STYLE_PREVIEW +wangdaye.com.geometricweather.R$string: int path_password_eye +wangdaye.com.geometricweather.R$styleable: int SearchView_android_focusable +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_color +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeSplitBackground +android.didikee.donate.R$dimen +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.util.List value +com.google.android.material.R$dimen: int notification_large_icon_width +com.google.android.material.R$drawable: int notification_template_icon_bg +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: ILiveLockScreenManager$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$attr: int layout_goneMarginStart +androidx.constraintlayout.widget.R$drawable: int notify_panel_notification_icon_bg +james.adaptiveicon.R$attr: int tooltipFrameBackground +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.appcompat.R$styleable: int SearchView_voiceIcon +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowMinWidthMajor +wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_left_black_24dp +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setValue(java.util.List) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_height +okhttp3.CertificatePinner$Pin: boolean equals(java.lang.Object) +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +android.didikee.donate.R$styleable: int MenuView_android_itemIconDisabledAlpha +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String content +com.google.android.material.R$styleable: int Chip_ensureMinTouchTargetSize +okhttp3.internal.connection.RouteSelector$Selection: okhttp3.Route next() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: long serialVersionUID +okhttp3.WebSocketListener: void onMessage(okhttp3.WebSocket,java.lang.String) +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver +com.google.android.material.R$styleable: int MaterialCheckBox_buttonTint +wangdaye.com.geometricweather.R$styleable: int MenuItem_numericModifiers +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode IMMEDIATE +com.google.android.material.R$styleable: int GradientColor_android_centerColor +com.bumptech.glide.R$id: int bottom +wangdaye.com.geometricweather.R$id: int ifRoom +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Small +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginBottom +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.util.ErrorMode errorMode +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setAddress(java.lang.String) +android.didikee.donate.R$styleable: int ActionBar_homeLayout +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.turingtechnologies.materialscrollbar.R$style: int Platform_V21_AppCompat_Light +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +com.turingtechnologies.materialscrollbar.R$attr: int behavior_peekHeight +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: android.graphics.Rect getWindowInsets() +io.reactivex.Observable: io.reactivex.Observable skipWhile(io.reactivex.functions.Predicate) +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Subtitle2 +androidx.appcompat.R$styleable: int ActionBar_itemPadding +wangdaye.com.geometricweather.R$anim: int abc_popup_exit +androidx.constraintlayout.widget.R$layout: int abc_action_mode_close_item_material +com.google.android.material.R$dimen: int mtrl_calendar_day_width +com.google.android.material.R$attr: int expandedTitleMarginStart +androidx.preference.R$styleable: int AppCompatTextHelper_android_textAppearance +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.ObservableSource source +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_right_mtrl_light +androidx.recyclerview.R$id: int blocking +com.google.android.material.R$styleable: int CustomAttribute_customIntegerValue +wangdaye.com.geometricweather.common.basic.models.weather.Base: long updateTime +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: float getDensity(float) +okio.Segment: okio.Segment prev +com.bumptech.glide.integration.okhttp.R$layout: int notification_template_icon_group +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Small +com.google.android.material.R$id: int notification_main_column +wangdaye.com.geometricweather.R$styleable: int MaterialToolbar_navigationIconColor +com.google.android.material.R$styleable: int MaterialCardView_shapeAppearanceOverlay +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconDrawable +com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_hovered_box_stroke_color +wangdaye.com.geometricweather.R$attr: int framePosition +wangdaye.com.geometricweather.R$attr: int layout_keyline +com.google.android.material.R$id: int animateToEnd +com.bumptech.glide.integration.okhttp.R$id: int glide_custom_view_target_tag +wangdaye.com.geometricweather.R$drawable: int notif_temp_72 +wangdaye.com.geometricweather.R$attr: int paddingBottomNoButtons +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_days_of_week +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream removeStream(int) +android.didikee.donate.R$style: int Widget_AppCompat_EditText +androidx.appcompat.R$attr: int subtitleTextColor +okhttp3.internal.cache.DiskLruCache: void readJournal() +io.reactivex.internal.util.NotificationLite +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_primary_mtrl_alpha +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_seek_by_section +com.jaredrummler.android.colorpicker.R$attr: int viewInflaterClass +okio.InflaterSource: void releaseInflatedBytes() +androidx.drawerlayout.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.R$attr: int customDimension +androidx.appcompat.R$styleable: int ActionBar_subtitle +com.google.android.material.button.MaterialButtonToggleGroup: int getFirstVisibleChildIndex() +wangdaye.com.geometricweather.settings.dialogs.TimeSetterDialog +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +com.turingtechnologies.materialscrollbar.R$styleable: int[] CollapsingToolbarLayout +wangdaye.com.geometricweather.R$attr: int showMotionSpec +wangdaye.com.geometricweather.db.entities.HourlyEntity: HourlyEntity() +cyanogenmod.app.CustomTile$ExpandedItem: int describeContents() +com.turingtechnologies.materialscrollbar.R$styleable: int[] ButtonBarLayout +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_US +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode +com.jaredrummler.android.colorpicker.R$styleable: int[] ViewBackgroundHelper +cyanogenmod.app.CustomTile$ExpandedGridItem +androidx.core.R$string: R$string() +androidx.customview.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.R$styleable: int Toolbar_collapseContentDescription +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getO3Color(android.content.Context) +com.google.android.material.R$attr: int motionInterpolator +io.reactivex.Observable: io.reactivex.Observable concatArrayEager(io.reactivex.ObservableSource[]) +androidx.constraintlayout.widget.R$styleable: int Layout_minWidth +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: int UnitType +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onScreenTurnedOn() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +okhttp3.internal.http2.Http2Connection: void updateConnectionFlowControl(long) +cyanogenmod.app.ICustomTileListener$Stub$Proxy +com.google.android.material.R$attr: int materialCalendarHeaderConfirmButton +androidx.constraintlayout.utils.widget.ImageFilterView +androidx.vectordrawable.animated.R$dimen: int compat_button_inset_vertical_material +com.google.android.material.R$style: int ThemeOverlayColorAccentRed +androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_default +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_orientation +com.google.android.material.R$attr: int actionModePasteDrawable +okhttp3.ConnectionSpec: boolean equals(java.lang.Object) +com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.String,java.lang.Throwable) +io.reactivex.internal.subscriptions.BasicQueueSubscription: void clear() +okhttp3.internal.tls.BasicTrustRootIndex: java.util.Map subjectToCaCerts +com.google.android.material.R$id: int cos +androidx.appcompat.R$styleable: int ViewBackgroundHelper_backgroundTintMode +com.turingtechnologies.materialscrollbar.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.R$string: int about_gson +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float NitrogenDioxide +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_holo_light +androidx.appcompat.widget.AppCompatImageButton: void setImageURI(android.net.Uri) +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dark +androidx.preference.R$style: int Widget_AppCompat_ListView +androidx.constraintlayout.widget.R$attr: int tickMarkTint +androidx.preference.R$style: int Preference_SeekBarPreference_Material +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_holo_dark +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_ARRAY +wangdaye.com.geometricweather.R$dimen: int abc_cascading_menus_min_smallest_width +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetTop +androidx.hilt.work.R$id: int notification_background +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.WeatherEntity: WeatherEntity(java.lang.Long,java.lang.String,java.lang.String,long,java.util.Date,long,java.util.Date,long,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.String,java.lang.String) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_default_mtrl_shape +androidx.preference.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle +cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_ADJUST_SOUNDS_ENABLED +android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$id: int honorRequest +wangdaye.com.geometricweather.R$styleable: int Chip_chipIcon +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +com.google.android.material.R$attr: int clickAction +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SERBIAN +android.support.v4.os.ResultReceiver: boolean mLocal +wangdaye.com.geometricweather.R$styleable: int Slider_trackColorInactive +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours +wangdaye.com.geometricweather.R$styleable: int PopupWindow_android_popupAnimationStyle +com.google.android.material.R$dimen +cyanogenmod.externalviews.KeyguardExternalViewProviderService: KeyguardExternalViewProviderService() +cyanogenmod.app.Profile: int getDozeMode() +androidx.appcompat.R$styleable: int MenuView_android_horizontalDivider +wangdaye.com.geometricweather.R$id: int widget_day_time +okhttp3.CacheControl: boolean isPublic() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmTp2 +com.google.android.material.R$color: int mtrl_textinput_hovered_box_stroke_color +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_31 +james.adaptiveicon.R$dimen: int abc_action_bar_stacked_max_height +wangdaye.com.geometricweather.R$string: int abc_menu_sym_shortcut_label +retrofit2.RequestFactory$Builder: boolean hasBody +com.xw.repo.bubbleseekbar.R$attr: int autoSizeTextType +com.jaredrummler.android.colorpicker.R$id: int listMode +com.jaredrummler.android.colorpicker.R$attr: int seekBarPreferenceStyle com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelBackground -com.google.android.material.R$style: int Animation_AppCompat_Tooltip -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onNext(java.lang.Object) -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory getInstance(android.app.Application) -okhttp3.internal.Util: java.nio.charset.Charset UTF_32_BE -androidx.work.R$styleable: int GradientColor_android_type -com.google.android.material.R$styleable: int KeyTimeCycle_android_translationX -cyanogenmod.weather.RequestInfo: android.location.Location mLocation -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sUriValidator -okhttp3.internal.http2.StreamResetException: StreamResetException(okhttp3.internal.http2.ErrorCode) -wangdaye.com.geometricweather.R$style: int Base_V28_Theme_AppCompat -com.google.android.material.R$styleable: int AppCompatTheme_panelBackground -io.reactivex.internal.subscriptions.SubscriptionArbiter: void setSubscription(org.reactivestreams.Subscription) -androidx.preference.R$styleable: int MultiSelectListPreference_android_entryValues -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setBadge(com.google.android.material.badge.BadgeDrawable) -androidx.viewpager.R$attr: int ttcIndex -okio.RealBufferedSink: okio.BufferedSink writeDecimalLong(long) -cyanogenmod.externalviews.KeyguardExternalView$3: int val$height -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_colored_material -com.google.android.material.R$attr: int maxButtonHeight -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval getInstance(java.lang.String) -androidx.preference.R$styleable: int Toolbar_popupTheme -com.google.android.material.circularreveal.CircularRevealFrameLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -okhttp3.internal.http2.Header: java.lang.String TARGET_AUTHORITY_UTF8 -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -androidx.appcompat.R$styleable: int PopupWindowBackgroundState_state_above_anchor -com.xw.repo.bubbleseekbar.R$dimen: int abc_panel_menu_list_width -androidx.work.R$styleable: int FontFamily_fontProviderFetchStrategy -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: java.util.concurrent.CompletableFuture future -wangdaye.com.geometricweather.R$drawable: int flag_de -james.adaptiveicon.R$styleable: int AppCompatTheme_windowMinWidthMinor -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.util.concurrent.CompletableFuture adapt(retrofit2.Call) -okhttp3.MultipartBody -androidx.dynamicanimation.R$attr: int fontVariationSettings -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Body2 -com.xw.repo.bubbleseekbar.R$color: int colorPrimaryDark -cyanogenmod.hardware.ICMHardwareService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.bumptech.glide.R$styleable: int FontFamilyFont_android_font -androidx.appcompat.R$attr: int collapseIcon -com.turingtechnologies.materialscrollbar.R$anim: int design_bottom_sheet_slide_in -wangdaye.com.geometricweather.R$string: int settings_title_live_wallpaper -androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context) -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_size -androidx.lifecycle.ReportFragment: void dispatchCreate(androidx.lifecycle.ReportFragment$ActivityInitializationListener) -androidx.appcompat.R$anim: int abc_slide_in_bottom -okio.ByteString: byte[] toByteArray() -cyanogenmod.providers.CMSettings$Global: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification -androidx.swiperefreshlayout.R$id: int text2 -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_PREVIEW -androidx.appcompat.widget.ButtonBarLayout: ButtonBarLayout(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$dimen: int abc_alert_dialog_button_dimen -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.R$drawable: int navigation_empty_icon -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -io.reactivex.internal.util.AtomicThrowable -com.google.android.material.R$styleable: int[] AppCompatSeekBar -androidx.vectordrawable.animated.R$color: R$color() -com.google.android.material.R$attr: int onPositiveCross -cyanogenmod.providers.CMSettings$Global: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_129 -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView_Menu -com.turingtechnologies.materialscrollbar.R$attr: int paddingStart -okhttp3.Cache: java.lang.String key(okhttp3.HttpUrl) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language PORTUGUESE_BR -cyanogenmod.weatherservice.ServiceRequest: void complete(cyanogenmod.weatherservice.ServiceRequestResult) -androidx.lifecycle.LiveData -androidx.appcompat.R$attr: int drawableTintMode -wangdaye.com.geometricweather.R$attr: int collapseIcon -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_baselineAligned -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator -com.google.android.material.appbar.CollapsingToolbarLayout: long getScrimAnimationDuration() -cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_ACCESS -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String brandId -androidx.appcompat.R$styleable: int[] ListPopupWindow -okhttp3.internal.http2.Http2Reader: void readWindowUpdate(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -com.jaredrummler.android.colorpicker.R$color: int abc_color_highlight_material -androidx.preference.R$color: int secondary_text_disabled_material_dark -cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener: void onLookupCityRequestCompleted(int,java.util.List) -com.github.rahatarmanahmed.cpv.R$string: int app_name -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display2 -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Small -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_percent -james.adaptiveicon.R$styleable: int MenuItem_android_onClick -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: int Degrees -com.jaredrummler.android.colorpicker.R$style: int Platform_V25_AppCompat_Light -com.google.android.material.R$styleable: int BottomNavigationView_itemTextAppearanceActive -androidx.appcompat.resources.R$attr: int fontProviderFetchStrategy -androidx.preference.R$color: int preference_fallback_accent_color -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getThunderstorm() -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -wangdaye.com.geometricweather.R$id: int SYM -android.didikee.donate.R$dimen: int abc_text_size_body_1_material -cyanogenmod.providers.DataUsageContract: java.lang.String BYTES -com.google.android.material.R$dimen: int material_emphasis_high_type -wangdaye.com.geometricweather.R$attr: int msb_autoHide -com.github.rahatarmanahmed.cpv.R$integer -james.adaptiveicon.R$id: int text2 -androidx.preference.R$styleable: int SwitchPreferenceCompat_summaryOff -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String EnglishType -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarSplitStyle -com.google.android.material.R$dimen: int mtrl_edittext_rectangle_top_offset -io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean,int) -wangdaye.com.geometricweather.R$attr: int dialogTheme -wangdaye.com.geometricweather.R$styleable: int[] KeyTimeCycle -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_seekBarPreferenceStyle -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dark -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: io.reactivex.Observer downstream -androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Light -cyanogenmod.power.PerformanceManager: boolean getProfileHasAppProfiles(int) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_backgroundTint -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_29 -okio.SegmentPool: SegmentPool() -com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.Typeface getExpandedTitleTypeface() -okhttp3.internal.cache.DiskLruCache$Entry: long[] lengths -androidx.appcompat.widget.SwitchCompat: boolean getShowText() -com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_Tooltip -androidx.dynamicanimation.R$dimen: int compat_button_inset_vertical_material -retrofit2.OkHttpCall$1: OkHttpCall$1(retrofit2.OkHttpCall,retrofit2.Callback) -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeAppearance -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -wangdaye.com.geometricweather.common.basic.models.weather.Weather: void setYesterday(wangdaye.com.geometricweather.common.basic.models.weather.History) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int CloudCover -james.adaptiveicon.R$drawable: int abc_spinner_mtrl_am_alpha -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableItem_android_id -com.jaredrummler.android.colorpicker.R$string: int abc_menu_shift_shortcut_label -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: long serialVersionUID +androidx.hilt.work.R$id: int normal +androidx.activity.R$layout +com.google.android.material.R$styleable: int Slider_thumbRadius +io.reactivex.Observable: io.reactivex.observers.TestObserver test(boolean) +androidx.vectordrawable.R$id: int tag_unhandled_key_listeners +okhttp3.OkHttpClient$1: boolean equalsNonHost(okhttp3.Address,okhttp3.Address) +com.turingtechnologies.materialscrollbar.R$drawable: int navigation_empty_icon +okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot nextSnapshot +okhttp3.MediaType: java.util.regex.Pattern PARAMETER +james.adaptiveicon.R$id: int icon +wangdaye.com.geometricweather.R$drawable: int flag_ko +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: java.lang.Runnable run +android.didikee.donate.R$string: int abc_shareactionprovider_share_with +com.google.android.material.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +okhttp3.internal.http2.Http2Connection$Listener: void onStream(okhttp3.internal.http2.Http2Stream) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.schedulers.RxThreadFactory: int priority +androidx.work.impl.utils.futures.DirectExecutor +okhttp3.internal.Util: java.nio.charset.Charset UTF_16_LE +androidx.appcompat.widget.SwitchCompat: int getThumbScrollRange() +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.jaredrummler.android.colorpicker.R$color: int abc_tint_default +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +okhttp3.internal.tls.DistinguishedNameParser: int getByte(int) +com.xw.repo.bubbleseekbar.R$styleable: int[] ListPopupWindow +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: java.util.List getValue() +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomSheetDialog +androidx.constraintlayout.widget.R$anim: int abc_tooltip_enter +androidx.appcompat.view.menu.ListMenuItemView: void setForceShowIcon(boolean) +wangdaye.com.geometricweather.R$string: int key_widget_multi_city +com.google.android.material.R$styleable: int TabLayout_tabGravity +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton_Overflow +androidx.preference.DialogPreference +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void dispose() +com.google.android.material.R$styleable: int Constraint_motionProgress +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade RealFeelTemperatureShade +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthTextView +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPlaceholderText() +wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Panel +androidx.lifecycle.Lifecycling: int getObserverConstructorType(java.lang.Class) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String LocalizedName +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlActivated +cyanogenmod.content.Intent: java.lang.String ACTION_PROTECTED +com.google.android.material.R$id: int stop +com.jaredrummler.android.colorpicker.R$string: int abc_capital_off +androidx.core.R$styleable: int FontFamily_fontProviderCerts +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +wangdaye.com.geometricweather.R$styleable: int[] SwitchImageButton +androidx.appcompat.R$drawable: int abc_ic_star_black_36dp +okhttp3.Response: int code +com.xw.repo.bubbleseekbar.R$id: int custom +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetStart +com.xw.repo.bubbleseekbar.R$attr: int viewInflaterClass +cyanogenmod.externalviews.ExternalViewProviderService$1$1: java.lang.Object call() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingBottom +cyanogenmod.app.StatusBarPanelCustomTile: long postTime +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacingHorizontal +com.google.android.material.slider.BaseSlider: float[] getActiveRange() +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight wangdaye.com.geometricweather.common.basic.models.weather.History: int daytimeTemperature -androidx.appcompat.R$styleable: int TextAppearance_android_textColor -wangdaye.com.geometricweather.R$attr: int icon -okhttp3.internal.http2.Http2Codec: void flushRequest() -androidx.preference.R$style: int Base_Animation_AppCompat_Dialog -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Body_Text -com.google.android.material.R$style: int TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.R$dimen: int little_margin -io.reactivex.internal.util.AtomicThrowable: boolean isTerminated() -com.google.android.material.R$styleable: int Motion_motionPathRotate -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_arrow_drop_right_black_24dp -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level NONE -com.github.rahatarmanahmed.cpv.CircularProgressView: void setVisibility(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: long updateTime -com.google.android.material.R$attr: int constraintSet -james.adaptiveicon.R$style: int Platform_V25_AppCompat -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List dailyEntityList -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_1 -androidx.customview.R$drawable: int notification_action_background -androidx.appcompat.R$attr: int borderlessButtonStyle -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -cyanogenmod.weatherservice.ServiceRequest: void fail() -okhttp3.internal.tls.OkHostnameVerifier: boolean verifyHostname(java.lang.String,java.security.cert.X509Certificate) -com.google.android.material.internal.NavigationMenuItemView: void setMaxLines(int) -androidx.preference.R$color: int foreground_material_light -retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: retrofit2.OkHttpCall$ExceptionCatchingResponseBody this$0 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_height_major -androidx.appcompat.widget.SwitchCompat: java.lang.CharSequence getTextOn() -androidx.appcompat.R$color: int androidx_core_secondary_text_default_material_light -androidx.appcompat.R$style: int Widget_AppCompat_Button_Borderless -okhttp3.Address: javax.net.ssl.SSLSocketFactory sslSocketFactory() -cyanogenmod.providers.DataUsageContract: java.lang.String DATAUSAGE_AUTHORITY -okhttp3.RequestBody$2 -retrofit2.Retrofit: retrofit2.Converter nextResponseBodyConverter(retrofit2.Converter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[]) -james.adaptiveicon.R$styleable: int ActionBar_navigationMode -androidx.constraintlayout.widget.R$style: int AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.R$styleable: int OnSwipe_nestedScrollFlags -androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModel get(java.lang.Class) -androidx.hilt.work.R$styleable: int GradientColor_android_gradientRadius -cyanogenmod.app.CustomTile$ExpandedItem: android.app.PendingIntent onClickPendingIntent -androidx.appcompat.R$id: int action_mode_bar -okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallbackPossible -com.turingtechnologies.materialscrollbar.R$attr: int tabInlineLabel -james.adaptiveicon.R$dimen: int abc_button_padding_horizontal_material -androidx.hilt.work.R$styleable: int[] FontFamilyFont -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: boolean done -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life life -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_3 -cyanogenmod.weather.RequestInfo$1: RequestInfo$1() -androidx.hilt.lifecycle.R$drawable: int notification_action_background -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: retrofit2.Call call -androidx.lifecycle.extensions.R$styleable: int[] GradientColor -cyanogenmod.externalviews.ExternalViewProviderService$1$1: android.os.IBinder call() -cyanogenmod.power.PerformanceManagerInternal: void cpuBoost(int) -androidx.appcompat.R$attr: int toolbarNavigationButtonStyle -androidx.constraintlayout.widget.R$style: int Base_V22_Theme_AppCompat -okhttp3.internal.http2.Http2Writer -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_29 -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_numericShortcut -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature RealFeelTemperature -wangdaye.com.geometricweather.R$attr: int thumbTintMode -wangdaye.com.geometricweather.R$id: int widget_clock_day_aqiHumidity -androidx.preference.R$id: int search_badge -androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context,android.util.AttributeSet) -androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context) -com.turingtechnologies.materialscrollbar.R$attr: int itemTextColor -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void dispose() -android.didikee.donate.R$styleable: int AlertDialog_listItemLayout -wangdaye.com.geometricweather.R$id: int text -androidx.constraintlayout.widget.R$styleable: int Constraint_barrierAllowsGoneWidgets -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowMinWidthMinor -androidx.appcompat.R$attr: int title -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnAttachStateChangeListener(com.google.android.material.snackbar.BaseTransientBottomBar$OnAttachStateChangeListener) -androidx.vectordrawable.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$dimen: int mtrl_btn_padding_top -com.google.android.material.R$styleable: int ConstraintSet_flow_wrapMode -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionViewClass -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onError(java.lang.Throwable) -cyanogenmod.app.Profile: java.util.UUID mUuid -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_transitionEasing -androidx.preference.R$styleable: int AppCompatTheme_actionBarSize -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_2G3G -androidx.hilt.R$id: int notification_background -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: io.reactivex.Observer downstream -androidx.constraintlayout.widget.R$attr: int layout_editor_absoluteX -wangdaye.com.geometricweather.R$color: int material_slider_halo_color -androidx.appcompat.R$dimen: R$dimen() -cyanogenmod.weather.WeatherLocation: java.lang.String getCountryId() -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry geometry -okio.RealBufferedSource: byte readByte() -wangdaye.com.geometricweather.R$id: int widget_day_week_week_4 -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.DailyEntityDao getDailyEntityDao() -wangdaye.com.geometricweather.R$drawable: int abc_action_bar_item_background_material -androidx.activity.R$attr: int fontProviderQuery -androidx.constraintlayout.widget.R$dimen: int notification_content_margin_start -com.turingtechnologies.materialscrollbar.R$styleable: int[] ColorStateListItem -okio.ByteString: okio.ByteString toAsciiUppercase() -androidx.appcompat.R$styleable: int ViewStubCompat_android_inflatedId -androidx.preference.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -androidx.constraintlayout.widget.R$drawable: int tooltip_frame_dark -io.reactivex.internal.observers.LambdaObserver: void onComplete() -wangdaye.com.geometricweather.R$attr: int flow_horizontalStyle -com.google.android.material.R$animator: int mtrl_extended_fab_state_list_animator -android.didikee.donate.R$style: int TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$color: int abc_color_highlight_material -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text -wangdaye.com.geometricweather.R$dimen: int design_appbar_elevation -androidx.customview.R$id: int normal -androidx.preference.R$styleable: int[] AlertDialog -com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_simple -cyanogenmod.externalviews.ExternalView$1: void onServiceDisconnected(android.content.ComponentName) -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: android.os.IBinder mRemote -com.turingtechnologies.materialscrollbar.R$id: int right_side -okhttp3.internal.http2.Settings: void clear() -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -androidx.hilt.R$integer: R$integer() -io.reactivex.internal.subscriptions.BasicQueueSubscription -cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo$Builder setPriority(int) -com.xw.repo.bubbleseekbar.R$dimen: int notification_main_column_padding_top -okio.Okio: okio.Source source(java.io.File) -okhttp3.internal.http2.Http2Writer: void pushPromise(int,int,java.util.List) +okhttp3.Authenticator$1 +androidx.lifecycle.Transformations: Transformations() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_spinnerStyle +android.didikee.donate.R$style: int TextAppearance_AppCompat_Small +com.google.android.material.R$styleable: int Chip_checkedIconVisible +androidx.preference.R$id: int actions +wangdaye.com.geometricweather.R$dimen: int trend_item_width +cyanogenmod.app.Profile: void setAirplaneMode(cyanogenmod.profiles.AirplaneModeSettings) +wangdaye.com.geometricweather.R$styleable: int DrawerLayout_unfold +okhttp3.internal.http2.Hpack$Writer: int SETTINGS_HEADER_TABLE_SIZE_LIMIT +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_titleTextStyle +okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String servedDateString +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.Observer downstream +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_36dp +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display3 +androidx.constraintlayout.widget.R$attr: int backgroundTint +wangdaye.com.geometricweather.R$color: int abc_hint_foreground_material_dark +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_statusBarForeground +com.jaredrummler.android.colorpicker.R$color: int foreground_material_light +android.support.v4.os.IResultReceiver$Default: IResultReceiver$Default() +james.adaptiveicon.R$attr: int actionDropDownStyle +wangdaye.com.geometricweather.R$string: int wet_bulb_temperature +okhttp3.ResponseBody$BomAwareReader: okio.BufferedSource source +okio.Segment: okio.Segment next +com.google.android.material.R$id: int ghost_view_holder +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: ObservablePublish$InnerDisposable(io.reactivex.Observer) +com.turingtechnologies.materialscrollbar.R$attr: int textAllCaps +okhttp3.internal.http2.Http2: okio.ByteString CONNECTION_PREFACE +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Counter +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_10 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: void setValue(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_height +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String info +com.google.android.material.R$styleable: int Layout_layout_constraintWidth_percent +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +wangdaye.com.geometricweather.R$dimen: int compat_button_padding_horizontal_material +com.turingtechnologies.materialscrollbar.R$attr: int tabRippleColor +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language getInstance(java.lang.String) +wangdaye.com.geometricweather.R$id: int backBtn +androidx.constraintlayout.widget.R$color: int material_blue_grey_900 +com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatElevation() +wangdaye.com.geometricweather.R$attr: int tabMinWidth +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: java.lang.String aqi +okhttp3.internal.proxy.NullProxySelector: NullProxySelector() +androidx.constraintlayout.widget.R$attr: int navigationContentDescription +okio.ByteString: void write(okio.Buffer) +androidx.vectordrawable.R$id: int accessibility_custom_action_23 +retrofit2.OkHttpCall: retrofit2.Response parseResponse(okhttp3.Response) +okhttp3.Dispatcher: java.util.Deque runningSyncCalls +james.adaptiveicon.R$attr: int alertDialogButtonGroupStyle +wangdaye.com.geometricweather.R$styleable: int Fragment_android_name +androidx.appcompat.R$styleable: int SwitchCompat_thumbTintMode +com.google.android.material.R$style: int Theme_Design_BottomSheetDialog +retrofit2.KotlinExtensions$await$4$2: KotlinExtensions$await$4$2(kotlinx.coroutines.CancellableContinuation) +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit KN +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object readKey(android.database.Cursor,int) +com.google.android.material.R$dimen: int mtrl_calendar_header_height +androidx.transition.R$layout +wangdaye.com.geometricweather.R$styleable: int MotionLayout_motionDebug +androidx.activity.R$id: int accessibility_custom_action_2 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid +okhttp3.internal.ws.WebSocketReader: int opcode +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlActivated +com.google.android.material.R$attr: int paddingRightSystemWindowInsets +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider this$1 +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean checkTerminated(boolean,boolean,io.reactivex.Observer) +wangdaye.com.geometricweather.R$attr: int placeholderTextAppearance +com.google.android.material.R$color: int mtrl_choice_chip_text_color +com.jaredrummler.android.colorpicker.ColorPreferenceCompat: ColorPreferenceCompat(android.content.Context,android.util.AttributeSet,int) +androidx.hilt.lifecycle.R$styleable: int[] FontFamily +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarNegativeButtonStyle +androidx.preference.R$style: int Base_Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: void setIcon(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: java.lang.String Unit +com.turingtechnologies.materialscrollbar.R$attr: int colorSecondary +com.google.android.material.R$integer: int show_password_duration +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: AccuCurrentResult$PrecipitationSummary$PastHour$Imperial() +com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView +cyanogenmod.providers.CMSettings$System: java.lang.String ZEN_ALLOW_LIGHTS +retrofit2.DefaultCallAdapterFactory$1: retrofit2.DefaultCallAdapterFactory this$0 +androidx.hilt.work.R$id: int accessibility_custom_action_27 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: org.reactivestreams.Subscription upstream +com.google.android.material.R$styleable: int MaterialCalendar_rangeFillColor +okhttp3.internal.http2.Hpack$Writer: void setHeaderTableSizeSetting(int) +androidx.hilt.lifecycle.R$drawable: int notification_bg_normal_pressed +cyanogenmod.library.R$id: int experience +wangdaye.com.geometricweather.R$id: int textTop +wangdaye.com.geometricweather.R$color: int colorTextTitle_dark +com.xw.repo.bubbleseekbar.R$drawable: int notification_template_icon_bg +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTint +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_creator +okhttp3.OkHttpClient: okhttp3.Call newCall(okhttp3.Request) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Medium +androidx.core.R$id: int italic +android.didikee.donate.R$styleable: int ActionMode_height +okhttp3.Cache$Entry: boolean matches(okhttp3.Request,okhttp3.Response) +com.bumptech.glide.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getDate(java.lang.String) +androidx.appcompat.widget.AppCompatCheckBox: void setSupportButtonTintMode(android.graphics.PorterDuff$Mode) +androidx.coordinatorlayout.R$id: int icon_group +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: android.os.IBinder asBinder() +androidx.constraintlayout.widget.ConstraintLayout: void setId(int) +androidx.appcompat.R$styleable: int MenuItem_showAsAction +androidx.appcompat.R$styleable: int SearchView_android_inputType +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float snowPrecipitation +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul6H +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +androidx.hilt.work.R$id: int fragment_container_view_tag +wangdaye.com.geometricweather.R$attr: int textColorSearchUrl +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display2 +okhttp3.Cookie$Builder: Cookie$Builder() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_maxWidth +james.adaptiveicon.R$attr: int backgroundSplit +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackActiveTintList() +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setBottomText(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int notif_temp_65 +com.google.android.material.R$attr: int tabPaddingStart +androidx.preference.R$attr: int statusBarBackground +okhttp3.internal.Util$2: java.lang.String val$name +wangdaye.com.geometricweather.R$id: int container_main_aqi +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortTemperature(android.content.Context,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitation +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +androidx.constraintlayout.widget.R$string: int search_menu_title +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_icon_padding +com.turingtechnologies.materialscrollbar.R$attr: int theme +cyanogenmod.providers.CMSettings$System: java.lang.String PEOPLE_LOOKUP_PROVIDER +retrofit2.ParameterHandler$PartMap +cyanogenmod.providers.CMSettings$Global: long getLongForUser(android.content.ContentResolver,java.lang.String,int) +io.reactivex.Observable: io.reactivex.Observable ambArray(io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro[] astros +com.google.android.material.circularreveal.CircularRevealLinearLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Light +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitation +androidx.lifecycle.ComputableLiveData: java.util.concurrent.atomic.AtomicBoolean mInvalid +androidx.preference.Preference: Preference(android.content.Context) +androidx.constraintlayout.widget.R$attr: int maxAcceleration +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +wangdaye.com.geometricweather.R$style +com.xw.repo.bubbleseekbar.R$attr: int popupMenuStyle +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginBottom +okhttp3.FormBody$Builder: java.util.List values +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String treeDescription +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String momentDay +androidx.cardview.widget.CardView: float getCardElevation() +wangdaye.com.geometricweather.R$dimen: int current_weather_icon_size +cyanogenmod.weatherservice.WeatherProviderService: void attachBaseContext(android.content.Context) +androidx.viewpager2.R$dimen: int fastscroll_default_thickness +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: ObservableConcatMap$SourceObserver(io.reactivex.Observer,io.reactivex.functions.Function,int) +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: int getMarginBottom() +okhttp3.ResponseBody$1: long val$contentLength +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_percent +com.jaredrummler.android.colorpicker.ColorPickerView: void setBorderColor(int) +wangdaye.com.geometricweather.R$styleable: int Toolbar_menu +wangdaye.com.geometricweather.R$attr: int bsb_progress +io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$drawable: int abc_spinner_textfield_background_material +com.google.android.material.R$integer: int mtrl_chip_anim_duration +okhttp3.Authenticator: okhttp3.Request authenticate(okhttp3.Route,okhttp3.Response) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: void setDrawable(boolean) +okhttp3.MultipartBody: long contentLength() +wangdaye.com.geometricweather.R$drawable: int notif_temp_8 +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_subtitleTextStyle +io.reactivex.Observable: io.reactivex.Observable switchMapSingleDelayError(io.reactivex.functions.Function) +androidx.activity.R$styleable: R$styleable() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_vector_test +cyanogenmod.themes.IThemeService: int getProgress() +com.google.android.material.R$styleable: int TextInputLayout_helperTextTextColor +wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_small_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: java.util.Date Set +androidx.appcompat.widget.ScrollingTabContainerView: ScrollingTabContainerView(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ProgressBar +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: boolean cancelled +com.jaredrummler.android.colorpicker.R$styleable: int[] SeekBarPreference +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours +wangdaye.com.geometricweather.R$id: int material_hour_text_input +com.google.android.material.R$dimen: int mtrl_btn_padding_right +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge +androidx.appcompat.R$styleable: int AppCompatTheme_textColorSearchUrl +cyanogenmod.app.CMTelephonyManager: java.lang.String TAG +androidx.work.R$id: int accessibility_custom_action_29 +james.adaptiveicon.R$drawable: int notification_bg_low +com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitationProbability +com.google.android.material.slider.Slider: void setValueFrom(float) +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_2G3G4G +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextEnabled +wangdaye.com.geometricweather.R$id: int cpv_preference_preview_color_panel +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_hideOnContentScroll +androidx.core.R$id: int accessibility_custom_action_28 +androidx.vectordrawable.animated.R$string: R$string() +wangdaye.com.geometricweather.R$id: int design_navigation_view +com.google.android.material.R$style: int ShapeAppearanceOverlay_DifferentCornerSize +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_textAllCaps +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable[] EMPTY +com.xw.repo.bubbleseekbar.R$id: int listMode +io.reactivex.Observable: io.reactivex.Observable concatMapEager(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$id: int ghost_view_holder +cyanogenmod.providers.CMSettings$Global: boolean shouldInterceptSystemProvider(java.lang.String) +androidx.appcompat.widget.ActionMenuPresenter$OverflowPopup +com.jaredrummler.android.colorpicker.R$string: int abc_shareactionprovider_share_with_application +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$202(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +com.google.android.material.R$id: int textinput_helper_text +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onAttach() +androidx.lifecycle.LifecycleService: LifecycleService() +com.google.android.material.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_CompactMenu +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitationDuration +androidx.recyclerview.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.R$array: int live_wallpaper_day_night_types +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTintMode +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTheme +james.adaptiveicon.R$style: int Base_Theme_AppCompat_DialogWhenLarge +wangdaye.com.geometricweather.R$style: int Preference_PreferenceScreen +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +wangdaye.com.geometricweather.R$string: int settings_title_alert_notification_switch +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mLightsMode +cyanogenmod.hardware.DisplayMode$1: java.lang.Object createFromParcel(android.os.Parcel) +okhttp3.internal.http.HttpHeaders: boolean varyMatches(okhttp3.Response,okhttp3.Headers,okhttp3.Request) +com.turingtechnologies.materialscrollbar.R$attr: int listMenuViewStyle +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +com.xw.repo.bubbleseekbar.R$attr: int fontStyle +androidx.drawerlayout.R$color: R$color() +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_subMenuArrow +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY +wangdaye.com.geometricweather.R$id: int widget_week_week_2 +james.adaptiveicon.R$color: int secondary_text_disabled_material_light +androidx.hilt.work.R$layout: int notification_template_part_time +okhttp3.internal.cache.DiskLruCache$Entry: void setLengths(java.lang.String[]) +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getVibrateMode() +androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context) +com.google.android.material.R$attr: int circularInset +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_font +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial Imperial +io.reactivex.Observable: io.reactivex.Observable timeInterval(io.reactivex.Scheduler) +wangdaye.com.geometricweather.R$array: int duration_unit_values +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro moon() +com.turingtechnologies.materialscrollbar.R$style: int Widget_Support_CoordinatorLayout +wangdaye.com.geometricweather.db.entities.HistoryEntity: long getTime() +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: android.os.IBinder mRemote +com.google.android.material.R$styleable: int Constraint_android_translationX +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeShareDrawable +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintEnd_toEndOf +okhttp3.OkHttpClient$Builder: java.util.List connectionSpecs +retrofit2.RequestFactory$Builder: void validatePathName(int,java.lang.String) +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar +androidx.preference.R$styleable: int[] ListPreference +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderAuthority +com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_text_padding_right +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date moonRiseDate +wangdaye.com.geometricweather.R$attr: int buttonTint +com.xw.repo.bubbleseekbar.R$style: int Base_V23_Theme_AppCompat_Light +com.google.android.material.R$style: int Theme_MaterialComponents_NoActionBar +androidx.preference.R$styleable: int[] Preference +androidx.preference.R$id: int accessibility_custom_action_11 +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline5 +androidx.constraintlayout.widget.R$styleable: int[] PropertySet +wangdaye.com.geometricweather.R$id: int test_radiobutton_app_button_tint +androidx.legacy.coreutils.R$dimen: int compat_notification_large_icon_max_height +androidx.preference.R$styleable: int Toolbar_maxButtonHeight +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mRingerMode +wangdaye.com.geometricweather.R$styleable: int MaterialButton_icon +androidx.appcompat.R$id: int titleDividerNoCustom +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: int UnitType +com.google.android.material.R$attr: int helperTextTextColor +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: java.lang.Long rise +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitationDuration +com.turingtechnologies.materialscrollbar.R$attr: int itemHorizontalPadding +james.adaptiveicon.R$color: int material_grey_100 +com.google.android.material.R$id: int actions +retrofit2.ParameterHandler$Tag: ParameterHandler$Tag(java.lang.Class) +androidx.work.R$dimen: int notification_large_icon_width +com.bumptech.glide.integration.okhttp.R$styleable: int[] FontFamily +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +okhttp3.TlsVersion: java.util.List forJavaNames(java.lang.String[]) +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_STOP +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontWeight +androidx.core.R$styleable: int FontFamily_fontProviderFetchStrategy +com.google.android.material.R$styleable: int Toolbar_popupTheme +com.google.android.material.R$styleable: int Transform_android_rotationY +androidx.constraintlayout.motion.widget.MotionHelper: void setProgress(float) +james.adaptiveicon.R$styleable: int[] TextAppearance +cyanogenmod.weather.RequestInfo: int TYPE_WEATHER_BY_GEO_LOCATION_REQ +androidx.appcompat.widget.AppCompatCheckBox: android.graphics.PorterDuff$Mode getSupportButtonTintMode() +androidx.constraintlayout.motion.widget.MotionLayout: void setProgress(float) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver parent +wangdaye.com.geometricweather.R$attr: int boxCornerRadiusBottomEnd +androidx.hilt.work.R$dimen: int compat_button_inset_horizontal_material +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: long serialVersionUID +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean china +wangdaye.com.geometricweather.R$attr: int sv_side +com.google.android.material.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context) +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$attr: int nestedScrollFlags +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status valueOf(java.lang.String) +androidx.drawerlayout.R$drawable: int notification_tile_bg +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayModes +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dividerHorizontal +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline3 +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginBottom +com.turingtechnologies.materialscrollbar.TouchScrollBar: TouchScrollBar(android.content.Context,android.util.AttributeSet) +androidx.drawerlayout.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$attr: int fastScrollVerticalTrackDrawable +retrofit2.ParameterHandler$Header: retrofit2.Converter valueConverter +io.reactivex.exceptions.CompositeException +androidx.constraintlayout.widget.R$attr: int ratingBarStyle +com.google.android.material.R$attr: int contentDescription +androidx.fragment.R$styleable: int Fragment_android_tag +androidx.viewpager.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.R$attr: int elevationOverlayColor +androidx.constraintlayout.helper.widget.Flow: void setHorizontalAlign(int) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar_TextView +androidx.appcompat.widget.AppCompatCheckBox: void setSupportButtonTintList(android.content.res.ColorStateList) +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_behavior +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String INSTALL_TIME +androidx.appcompat.R$layout: int abc_popup_menu_item_layout +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay +androidx.constraintlayout.widget.R$id: int progress_horizontal +wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWeekWidgetConfigActivity +androidx.appcompat.widget.AppCompatImageButton: android.graphics.PorterDuff$Mode getSupportImageTintMode() +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar +cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getActiveProfile() +androidx.fragment.R$styleable: int GradientColor_android_type +com.google.android.material.R$style: int TextAppearance_AppCompat_Display2 +androidx.preference.R$attr: int actionBarTheme +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableTop +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_vertical_padding +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status ERROR +cyanogenmod.profiles.StreamSettings: boolean isOverride() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: AccuCurrentResult$PrecipitationSummary$Past24Hours() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabView +androidx.preference.R$drawable: int abc_text_select_handle_left_mtrl_dark +com.google.android.material.R$attr: int labelVisibilityMode +com.google.android.material.R$drawable: int abc_btn_radio_material_anim +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_title_material_toolbar +wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_track_mtrl_alpha +cyanogenmod.power.PerformanceManager: cyanogenmod.power.IPerformanceManager getService() +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setIconDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean +android.didikee.donate.R$id: int useLogo +com.turingtechnologies.materialscrollbar.Indicator +androidx.drawerlayout.R$styleable: int GradientColor_android_gradientRadius +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getLiveLockScreenThemePackageName() +androidx.preference.R$styleable: int MenuGroup_android_id +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_iconTintMode +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMark +androidx.appcompat.R$string: int abc_menu_ctrl_shortcut_label +androidx.preference.R$styleable: int Toolbar_contentInsetEnd +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents +com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_disable_only_material_light +okhttp3.internal.http2.Http2Connection$IntervalPingRunnable +okio.Pipe: boolean sourceClosed +james.adaptiveicon.R$styleable: int TextAppearance_android_textFontWeight +androidx.recyclerview.R$id: int accessibility_custom_action_26 +okhttp3.internal.http2.Http2Connection$5 +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog +wangdaye.com.geometricweather.R$attr: int tickColorInactive +cyanogenmod.themes.ThemeChangeRequest$Builder: void buildChangeRequestFromThemeConfig(android.content.res.ThemeConfig) +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable +com.google.android.material.button.MaterialButton: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTintMode +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default +wangdaye.com.geometricweather.R$styleable: int[] MaterialCalendarItem +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderAuthority +com.bumptech.glide.R$drawable: int notification_bg_low_pressed +okhttp3.internal.http2.Settings: int getMaxConcurrentStreams(int) +james.adaptiveicon.R$dimen: int abc_button_inset_horizontal_material +cyanogenmod.app.Profile$TriggerState +androidx.customview.R$id: int line3 +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_3 +wangdaye.com.geometricweather.R$attr: int tabTextColor +wangdaye.com.geometricweather.R$id: int parent +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_4 +androidx.appcompat.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +com.google.android.material.R$dimen: int design_navigation_icon_size +androidx.constraintlayout.widget.R$attr: int region_widthMoreThan +okhttp3.internal.http2.Settings: int COUNT +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_orderInCategory +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onComplete() +cyanogenmod.themes.ThemeChangeRequest: int describeContents() +androidx.appcompat.resources.R$id: int notification_background +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String pollutant +com.google.android.material.R$layout: int mtrl_calendar_month +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.fragment.app.FragmentTabHost: FragmentTabHost(android.content.Context,android.util.AttributeSet) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionTitle +com.jaredrummler.android.colorpicker.R$attr: int barLength +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_title +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA +android.didikee.donate.R$color: int background_material_dark com.google.gson.FieldNamingPolicy$6 -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Line2 -com.jaredrummler.android.colorpicker.R$dimen: int abc_button_inset_vertical_material -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onError(java.lang.Throwable) -okhttp3.Dispatcher: Dispatcher(java.util.concurrent.ExecutorService) -androidx.preference.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -cyanogenmod.os.Concierge: cyanogenmod.os.Concierge$ParcelInfo receiveParcel(android.os.Parcel) -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_disabled_material_dark -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -com.xw.repo.bubbleseekbar.R$id: int action_container -android.didikee.donate.R$attr: int buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: double gust -com.google.android.material.R$color: int abc_hint_foreground_material_dark -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontVariationSettings -okhttp3.internal.http2.Http2Stream: void close(okhttp3.internal.http2.ErrorCode) -androidx.appcompat.resources.R$id: int action_text -okio.Segment: int SHARE_MINIMUM -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfSnow -wangdaye.com.geometricweather.R$drawable: int star_2 -okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_ENCODE_SET_URI -wangdaye.com.geometricweather.R$attr: int roundPercent -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_android_windowIsFloating -com.google.android.material.R$styleable: int MenuItem_actionProviderClass -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.Observer downstream -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setAppOverlay(java.lang.String,java.lang.String) -com.xw.repo.bubbleseekbar.R$attr -com.google.android.material.slider.BaseSlider: int getHaloRadius() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_RESULT_VALUE -com.google.android.material.R$style: int AlertDialog_AppCompat_Light -androidx.preference.R$attr: int contentInsetEnd -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense -androidx.fragment.app.FragmentTabHost: void setOnTabChangedListener(android.widget.TabHost$OnTabChangeListener) -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_focused_holo -androidx.appcompat.R$styleable: int ActionBar_homeLayout -retrofit2.converter.gson.GsonResponseBodyConverter: com.google.gson.TypeAdapter adapter -android.didikee.donate.R$attr: int dropDownListViewStyle -cyanogenmod.weather.RequestInfo: java.lang.String access$302(cyanogenmod.weather.RequestInfo,java.lang.String) -androidx.constraintlayout.widget.R$color: int abc_hint_foreground_material_light -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: boolean isDisposed() -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Bridge -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_titleCondensed -wangdaye.com.geometricweather.R$styleable: int Transition_pathMotionArc -com.jaredrummler.android.colorpicker.R$drawable: int cpv_btn_background_pressed -androidx.appcompat.R$styleable: int DrawerArrowToggle_arrowShaftLength -io.reactivex.internal.util.HashMapSupplier: java.lang.Object call() -androidx.lifecycle.LiveData$LifecycleBoundObserver: androidx.lifecycle.LifecycleOwner mOwner -com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$styleable: int TextInputLayout_errorEnabled -com.xw.repo.bubbleseekbar.R$dimen: int abc_alert_dialog_button_bar_height -james.adaptiveicon.R$attr: int autoSizeStepGranularity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: void setValue(java.util.List) -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_AUTO_OUTDOOR_MODE -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: double Value -wangdaye.com.geometricweather.R$style: int Widget_Design_FloatingActionButton -android.didikee.donate.R$styleable: int MenuGroup_android_id -io.reactivex.Observable: java.lang.Iterable blockingIterable(int) -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -wangdaye.com.geometricweather.R$dimen: int abc_button_padding_vertical_material -android.didikee.donate.R$dimen: int notification_main_column_padding_top -com.google.android.material.R$drawable: int mtrl_popupmenu_background_dark -com.google.android.material.R$attr: int overlapAnchor -okhttp3.internal.ws.WebSocketProtocol: void toggleMask(okio.Buffer$UnsafeCursor,byte[]) -wangdaye.com.geometricweather.R$string: int settings_title_weather_source -com.google.android.material.R$attr: int targetId -io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node getHead() -android.didikee.donate.R$dimen: int disabled_alpha_material_light -androidx.coordinatorlayout.R$id: int accessibility_custom_action_2 -android.didikee.donate.R$id: int activity_chooser_view_content -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintTextColor -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -androidx.customview.R$attr: int fontProviderFetchTimeout -androidx.viewpager2.R$id: int italic -android.didikee.donate.R$color: int ripple_material_dark -androidx.preference.R$attr: int suggestionRowLayout -io.reactivex.internal.subscriptions.EmptySubscription: void clear() -androidx.hilt.lifecycle.R$styleable: int FragmentContainerView_android_name -androidx.appcompat.R$attr: int alertDialogCenterButtons -james.adaptiveicon.R$id: int search_button -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionProviderClass -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_bottom_padding -androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_android_alpha -androidx.preference.Preference: void setOnPreferenceChangeListener(androidx.preference.Preference$OnPreferenceChangeListener) -okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.internal.cache.CacheStrategy getCandidate() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTintMode -retrofit2.RequestFactory: java.lang.String relativeUrl -com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context,android.util.AttributeSet) -androidx.core.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$id: int activity_preview_icon_container -okio.RealBufferedSource: okio.ByteString readByteString(long) -com.google.android.material.R$attr: int showAsAction -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setMobileDataEnabled_1 -wangdaye.com.geometricweather.R$attr: int shapeAppearanceLargeComponent -wangdaye.com.geometricweather.R$color: int abc_background_cache_hint_selector_material_dark -okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part createFormData(java.lang.String,java.lang.String,okhttp3.RequestBody) -com.google.android.material.R$id: int dragRight -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback -cyanogenmod.profiles.RingModeSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode THUNDERSTORM -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_interval -com.turingtechnologies.materialscrollbar.R$id: int info -androidx.preference.R$styleable: int MenuGroup_android_checkableBehavior -wangdaye.com.geometricweather.R$string: int widget_multi_city -cyanogenmod.app.CustomTile$ExpandedStyle$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_4_30 -com.jaredrummler.android.colorpicker.R$attr: int selectable -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_ActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: int UnitType -com.jaredrummler.android.colorpicker.R$attr: int dialogMessage -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCopyDrawable -com.jaredrummler.android.colorpicker.R$attr: int editTextPreferenceStyle -james.adaptiveicon.R$styleable: int LinearLayoutCompat_dividerPadding -com.jaredrummler.android.colorpicker.R$attr: int iconSpaceReserved -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer apparentTemperature +wangdaye.com.geometricweather.R$attr: int fastScrollHorizontalThumbDrawable +okhttp3.ResponseBody$BomAwareReader: ResponseBody$BomAwareReader(okio.BufferedSource,java.nio.charset.Charset) +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_android_max +wangdaye.com.geometricweather.R$attr: int motionProgress +androidx.preference.R$style: int Preference_DropDown +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void cancelOngoingRequests() +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long firstEmission +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarStyle +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void ackSettings() +james.adaptiveicon.R$dimen: int notification_main_column_padding_top +androidx.constraintlayout.motion.widget.MotionLayout: android.os.Bundle getTransitionState() +okio.Timeout$1: void throwIfReached() +androidx.constraintlayout.widget.R$attr: int trackTintMode +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressViewEndOffset() +okhttp3.internal.http2.Settings +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void trimHead() +wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_srcCompat +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: double Value +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableBottomCompat +androidx.viewpager.R$dimen: int notification_small_icon_background_padding +androidx.activity.R$id: int accessibility_custom_action_28 +com.jaredrummler.android.colorpicker.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$drawable: int weather_hail +wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_android_lineHeight +okhttp3.internal.http1.Http1Codec: int STATE_READ_RESPONSE_HEADERS +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode[] values() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ListView_DropDown +wangdaye.com.geometricweather.R$string: int sp_widget_day_week_setting +com.google.android.material.card.MaterialCardView: void setRippleColorResource(int) +com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_overlapAnchor +james.adaptiveicon.R$attr: int autoSizeMaxTextSize +wangdaye.com.geometricweather.settings.fragments.AppearanceSettingsFragment: AppearanceSettingsFragment() +com.google.android.material.chip.Chip: void setChipBackgroundColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() +james.adaptiveicon.R$drawable: int abc_btn_radio_to_on_mtrl_000 +com.turingtechnologies.materialscrollbar.R$dimen: int compat_notification_large_icon_max_width +androidx.constraintlayout.widget.R$dimen: int notification_action_icon_size +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_height +com.google.android.material.R$dimen: int mtrl_low_ripple_focused_alpha +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit CM +com.xw.repo.bubbleseekbar.R$attr: int spinnerDropDownItemStyle +androidx.appcompat.R$styleable: int MenuView_android_headerBackground +wangdaye.com.geometricweather.R$id: int container_main_details_title +retrofit2.DefaultCallAdapterFactory$1: retrofit2.Call adapt(retrofit2.Call) +wangdaye.com.geometricweather.R$layout: int abc_select_dialog_material +com.jaredrummler.android.colorpicker.R$drawable: int abc_vector_test +androidx.preference.R$styleable: int AppCompatTextView_drawableTint +wangdaye.com.geometricweather.R$attr: int constraintSetEnd +androidx.hilt.R$styleable: int GradientColor_android_centerX +com.jaredrummler.android.colorpicker.R$attr: int displayOptions +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List kongtiao +com.jaredrummler.android.colorpicker.R$attr: int logoDescription +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX brandInfo +okhttp3.Cache: int writeSuccessCount +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_colorPresets +wangdaye.com.geometricweather.R$string: int feedback_resident_location_description +okhttp3.internal.http2.Http2Connection$6: Http2Connection$6(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okio.Buffer,int,boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow Snow +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property MinuteInterval +cyanogenmod.weather.WeatherInfo$Builder: boolean isValidTempUnit(int) +androidx.preference.R$drawable: int btn_radio_on_to_off_mtrl_animation +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitation +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean cancelled +com.xw.repo.bubbleseekbar.R$attr: int actionButtonStyle +com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog +androidx.work.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: AccuCurrentResult$WindGust$Speed$Metric() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListMenuView +com.google.android.material.R$dimen: int design_tab_text_size +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String UVIndexText +com.google.android.material.R$drawable: int abc_btn_radio_to_on_mtrl_000 +james.adaptiveicon.R$styleable: int AppCompatTheme_spinnerStyle +wangdaye.com.geometricweather.R$id: int tag_icon_night +okio.Buffer: okio.BufferedSink writeShort(int) +okhttp3.internal.cache2.FileOperator: void write(long,okio.Buffer,long) +androidx.constraintlayout.helper.widget.Layer: void setScaleX(float) +com.google.android.material.textfield.TextInputEditText: void setTextInputLayoutFocusedRectEnabled(boolean) +wangdaye.com.geometricweather.R$string: int key_card_alpha +androidx.lifecycle.extensions.R$attr: int font +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceLargePopupMenu +wangdaye.com.geometricweather.R$drawable: int shortcuts_hail +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language FOLLOW_SYSTEM +androidx.preference.R$style: int Animation_AppCompat_Dialog +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX) +wangdaye.com.geometricweather.R$attr: int tickMarkTint +androidx.preference.R$id: int action_container +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.lifecycle.LifecycleRegistry$ObserverWithState: void dispatchEvent(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +androidx.constraintlayout.widget.R$dimen: int notification_subtext_size +okhttp3.internal.http2.Hpack$Reader: java.util.List headerList +com.bumptech.glide.Registry$NoResultEncoderAvailableException +okhttp3.internal.cache.DiskLruCache: java.lang.String READ +cyanogenmod.weatherservice.WeatherProviderService: void onRequestCancelled(cyanogenmod.weatherservice.ServiceRequest) +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_visible +wangdaye.com.geometricweather.R$style: int Preference_SwitchPreference +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_3DES_EDE_CBC_SHA +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow +androidx.legacy.coreutils.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.R$attr: int layout_collapseParallaxMultiplier +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean setActiveProfileByName(java.lang.String) +androidx.hilt.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: int UnitType +androidx.customview.R$drawable: int notify_panel_notification_icon_bg +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_NULL_SHA +com.google.android.material.R$id: int tag_transition_group +androidx.appcompat.resources.R$styleable: int GradientColor_android_endX +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicInteger windows +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver) +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: io.reactivex.MaybeSource other +androidx.drawerlayout.R$styleable: int GradientColor_android_centerY com.xw.repo.bubbleseekbar.R$layout: R$layout() -com.turingtechnologies.materialscrollbar.R$dimen: int design_textinput_caption_translate_y -com.jaredrummler.android.colorpicker.R$layout: int abc_tooltip -wangdaye.com.geometricweather.R$color: int material_deep_teal_200 -android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat_Light -com.jaredrummler.android.colorpicker.R$id: int alertTitle -wangdaye.com.geometricweather.R$styleable: int View_theme -io.reactivex.internal.observers.DeferredScalarObserver: DeferredScalarObserver(io.reactivex.Observer) -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onDetach() -cyanogenmod.profiles.AirplaneModeSettings$1: AirplaneModeSettings$1() -androidx.constraintlayout.widget.R$attr: int dialogPreferredPadding -androidx.appcompat.R$integer -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActivityChooserView -okhttp3.CertificatePinner: boolean equals(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_navigationMode -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveDecay -retrofit2.RequestFactory$Builder: java.lang.String relativeUrl +io.reactivex.Observable: io.reactivex.Observable onExceptionResumeNext(io.reactivex.ObservableSource) +cyanogenmod.profiles.AirplaneModeSettings: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$color: int colorTextGrey +com.google.android.material.R$id: int right_icon +wangdaye.com.geometricweather.R$id: int search_close_btn +com.turingtechnologies.materialscrollbar.R$drawable: int abc_spinner_textfield_background_material +com.google.android.material.R$dimen: int mtrl_btn_z +okhttp3.internal.cache.DiskLruCache: long ANY_SEQUENCE_NUMBER +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_MD5 +androidx.constraintlayout.widget.R$styleable: int ActionBar_hideOnContentScroll +cyanogenmod.themes.ThemeChangeRequest +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_d +wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingRight +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_default_mtrl_alpha +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_gradientRadius com.jaredrummler.android.colorpicker.R$color: int abc_hint_foreground_material_light -androidx.constraintlayout.widget.R$id: int spline -cyanogenmod.app.ProfileManager: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) -androidx.constraintlayout.widget.R$style: int Platform_Widget_AppCompat_Spinner -androidx.fragment.R$styleable: int ColorStateListItem_alpha -androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMark -com.jaredrummler.android.colorpicker.R$id: int chronometer -com.turingtechnologies.materialscrollbar.R$id -com.turingtechnologies.materialscrollbar.R$attr: int colorPrimary -com.google.android.material.R$layout: int abc_action_menu_item_layout -androidx.constraintlayout.widget.R$attr: int showTitle -android.didikee.donate.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_Solid -retrofit2.HttpServiceMethod$SuspendForBody: boolean isNullable -com.turingtechnologies.materialscrollbar.DragScrollBar: boolean getHide() -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_crossfade +io.reactivex.Observable: io.reactivex.Observable mergeArray(int,int,io.reactivex.ObservableSource[]) +com.google.android.material.R$attr: int yearTodayStyle +androidx.fragment.R$id: int visible_removing_fragment_view_tag +android.didikee.donate.R$styleable: int AlertDialog_singleChoiceItemLayout +okhttp3.internal.ws.RealWebSocket: boolean enqueuedClose +androidx.appcompat.R$styleable: int AppCompatTheme_toolbarStyle +android.didikee.donate.R$color: int bright_foreground_disabled_material_light +okhttp3.Cache$CacheResponseBody$1: void close() +com.google.android.material.R$dimen: int tooltip_precise_anchor_threshold +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityStopped(android.app.Activity) +wangdaye.com.geometricweather.R$attr: int drawableTopCompat +cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.CMWeatherManager$2 this$1 +cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_minWidth +okhttp3.Challenge: java.lang.String realm() +com.xw.repo.bubbleseekbar.R$id: int icon +wangdaye.com.geometricweather.R$color: int abc_secondary_text_material_light +androidx.constraintlayout.widget.R$styleable: int AlertDialog_buttonIconDimen +com.google.android.material.R$styleable: int MaterialCalendarItem_itemStrokeColor +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.bumptech.glide.integration.okhttp.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetRight +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void setCancellable(io.reactivex.functions.Cancellable) +okhttp3.internal.platform.ConscryptPlatform: java.security.Provider getProvider() +androidx.hilt.lifecycle.R$color: int notification_icon_bg_color +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +com.jaredrummler.android.colorpicker.R$color: int secondary_text_default_material_light +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_horizontal +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog_MinWidth +com.xw.repo.bubbleseekbar.R$layout +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: int unitArrayIndex +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void dispose() +androidx.appcompat.R$dimen: int abc_text_size_subhead_material +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_numericModifiers +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: boolean val$visible +com.google.android.material.R$styleable: int BottomNavigationView_itemBackground +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onPositiveCross +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node findByObject(java.lang.Object) +com.google.android.material.R$styleable: int ActionBar_background +androidx.preference.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderQuery +okio.RealBufferedSink: okio.BufferedSink writeUtf8CodePoint(int) +cyanogenmod.weatherservice.WeatherProviderService$1: void cancelRequest(int) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Inverse +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String componentToMixNMatchKey(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_AIR_QUALITY +okhttp3.internal.cache.CacheStrategy$Factory: int ageSeconds +com.google.android.material.R$attr: int layout_constraintTop_creator +com.google.android.material.R$dimen: int abc_progress_bar_height_material +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog +com.jaredrummler.android.colorpicker.R$styleable: int[] DialogPreference +okhttp3.internal.http2.Http2Connection$ReaderRunnable$3 +okhttp3.internal.publicsuffix.PublicSuffixDatabase: PublicSuffixDatabase() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setContent(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean) +wangdaye.com.geometricweather.R$dimen: int mtrl_fab_translation_z_hovered_focused +androidx.fragment.R$id: int line1 +androidx.constraintlayout.widget.Placeholder: android.view.View getContent() +james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: float unitFactor +androidx.preference.R$dimen: int abc_control_corner_material +cyanogenmod.themes.ThemeManager: java.util.Set access$000(cyanogenmod.themes.ThemeManager) +com.google.android.material.R$attr: int tabIconTintMode +io.reactivex.subjects.PublishSubject$PublishDisposable: void onComplete() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Body2 +com.google.android.material.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +androidx.preference.R$styleable: int ActivityChooserView_initialActivityCount +androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.FragmentActivity) +androidx.appcompat.R$attr: int actionModeCutDrawable +android.didikee.donate.R$attr: int backgroundStacked +cyanogenmod.weatherservice.ServiceRequestResult$1: ServiceRequestResult$1() +wangdaye.com.geometricweather.R$animator: int weather_cloudy_1 +wangdaye.com.geometricweather.R$style: int Preference_SwitchPreferenceCompat_Material +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean active +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView +androidx.preference.internal.PreferenceImageView: void setMaxHeight(int) +okio.Buffer: okio.BufferedSink writeUtf8(java.lang.String,int,int) +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_font +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircleAngle +wangdaye.com.geometricweather.R$styleable: int[] Transition +okio.ForwardingSink: void write(okio.Buffer,long) +cyanogenmod.app.Profile$DozeMode: Profile$DozeMode() wangdaye.com.geometricweather.R$id: int item_weather_daily_value_value -androidx.constraintlayout.widget.R$id: int autoCompleteToEnd -wangdaye.com.geometricweather.R$styleable: int AlertDialog_listLayout -android.didikee.donate.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -androidx.constraintlayout.widget.R$attr: int buttonCompat -com.jaredrummler.android.colorpicker.R$anim: int abc_slide_in_top -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.constraintlayout.widget.R$id: int deltaRelative -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi: io.reactivex.Observable getLocation(java.lang.String,java.lang.String) -com.google.android.material.R$id: int search_go_btn -okhttp3.internal.connection.StreamAllocation: boolean released -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: java.lang.String getGroupName() -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Line2 -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_14 -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Large -james.adaptiveicon.R$styleable: int AlertDialog_buttonIconDimen -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_doneButton -com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_android_alpha -androidx.lifecycle.extensions.R$dimen: R$dimen() -android.didikee.donate.R$styleable: int[] ViewStubCompat -androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy: ConstraintProxy$NetworkStateProxy() -com.bumptech.glide.R$id: int tag_transition_group -androidx.preference.R$styleable: int MenuItem_android_visible -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -androidx.appcompat.widget.AppCompatImageView: void setSupportImageTintList(android.content.res.ColorStateList) -io.reactivex.Observable: io.reactivex.Observable onErrorReturn(io.reactivex.functions.Function) -androidx.preference.R$anim: int fragment_close_exit -androidx.viewpager2.R$id: int accessibility_custom_action_13 -androidx.appcompat.R$style: int Base_V26_Theme_AppCompat -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleColor(int) -androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_min -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String cityId -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -wangdaye.com.geometricweather.db.entities.DailyEntity: void setPm25(java.lang.Float) -com.google.android.material.R$styleable: int KeyAttribute_curveFit -android.support.v4.os.ResultReceiver$1: android.support.v4.os.ResultReceiver createFromParcel(android.os.Parcel) -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onProgressUpdateEnd(float) -com.turingtechnologies.materialscrollbar.MaterialScrollBar -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_contrast -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,byte[]) -androidx.preference.R$styleable: int[] ColorStateListItem -com.google.gson.internal.LinkedTreeMap: void clear() -com.jaredrummler.android.colorpicker.R$style: int Widget_Support_CoordinatorLayout -com.google.android.material.R$dimen: int mtrl_tooltip_padding -okhttp3.internal.http2.Http2Reader$ContinuationSource: okio.Timeout timeout() -cyanogenmod.app.CMTelephonyManager: boolean isSubActive(int) -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_state_dragged -com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$attr: int layout_constraintBaseline_toBaselineOf -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: long serialVersionUID -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitationDuration() -android.didikee.donate.R$styleable: int[] LinearLayoutCompat_Layout -com.google.android.material.R$attr: int height -androidx.preference.R$styleable: int ActionBar_progressBarStyle -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle -okhttp3.internal.http2.Http2Stream$FramingSource: Http2Stream$FramingSource(okhttp3.internal.http2.Http2Stream,long) -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -okhttp3.internal.platform.ConscryptPlatform: javax.net.ssl.SSLContext getSSLContext() -androidx.constraintlayout.widget.R$styleable: int Constraint_pivotAnchor -com.google.android.material.R$dimen: int notification_small_icon_size_as_large -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -com.google.android.material.R$styleable: int KeyPosition_motionTarget -androidx.hilt.R$dimen: int notification_subtext_size -androidx.constraintlayout.widget.R$drawable: int abc_btn_borderless_material -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense -androidx.work.impl.foreground.SystemForegroundService -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitationDuration -androidx.appcompat.R$attr: int multiChoiceItemLayout -androidx.preference.R$style: int Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$id: int mtrl_motion_snapshot_view -androidx.preference.R$styleable: int AppCompatTheme_seekBarStyle -wangdaye.com.geometricweather.R$attr: int listChoiceIndicatorSingleAnimated -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight -okhttp3.internal.http2.Http2: java.lang.String[] FRAME_NAMES -androidx.preference.R$styleable: int MenuItem_android_numericShortcut -com.google.android.material.R$integer: int mtrl_chip_anim_duration -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.R$attr: int indicatorType -com.google.android.material.R$styleable: int AppCompatTheme_actionModeFindDrawable -androidx.preference.R$layout: int notification_template_icon_group -cyanogenmod.weather.WeatherInfo: double getWindDirection() -com.google.android.material.R$layout: int mtrl_alert_dialog_title -com.xw.repo.BubbleSeekBar: void setProgress(float) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeBackground -androidx.loader.R$styleable: int[] GradientColorItem -okhttp3.internal.connection.RealConnection: okhttp3.Request createTunnel(int,int,okhttp3.Request,okhttp3.HttpUrl) -com.github.rahatarmanahmed.cpv.R$bool: int cpv_default_anim_autostart -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX -com.google.android.material.R$attr: int haloColor -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void drain() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getZh_TW() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindDirection -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: java.lang.String address -okhttp3.Cache$CacheRequestImpl$1: void close() -okhttp3.internal.connection.RouteSelector: java.net.Proxy nextProxy() -androidx.core.R$styleable: int[] FontFamilyFont -com.google.android.material.R$dimen: int mtrl_tooltip_arrowSize -okhttp3.CertificatePinner$Pin: boolean equals(java.lang.Object) -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_voice_search_api_material -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Id -androidx.appcompat.R$layout: int abc_action_bar_title_item -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: java.lang.Integer proba6H -androidx.appcompat.R$styleable: int SwitchCompat_android_thumb -androidx.constraintlayout.widget.R$styleable: int PopupWindow_android_popupAnimationStyle -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_textColor -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_SHOWERS -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onComplete() -com.google.android.material.R$style: int Platform_V25_AppCompat -com.google.android.material.R$attr: int flow_firstVerticalBias -com.google.android.material.R$attr: int cardForegroundColor -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -james.adaptiveicon.R$id: int action_image -cyanogenmod.app.CMStatusBarManager: void removeTile(int) -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -com.google.android.material.R$attr: int controlBackground -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: int getSuggestedMinimumHeight() -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_pixel -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.chip.Chip -androidx.vectordrawable.R$attr: int fontProviderCerts -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display2 -okio.Buffer$UnsafeCursor: long expandBuffer(int) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: double Dbz -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_constantSize -com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_checked_black -androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedWidthMajor -androidx.recyclerview.widget.RecyclerView: void setLayoutManager(androidx.recyclerview.widget.RecyclerView$LayoutManager) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void collapseNotificationPanel() -okhttp3.internal.http2.Http2Stream: boolean hasResponseHeaders -androidx.hilt.work.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.R$attr: int actionProviderClass -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: long EpochDate -androidx.viewpager2.R$styleable: int FontFamily_fontProviderQuery -com.bumptech.glide.R$dimen: int compat_button_inset_horizontal_material -androidx.constraintlayout.widget.R$styleable: int ActionBar_height -com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_chainStyle -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: boolean isEmpty() -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: android.os.IBinder mRemote -androidx.hilt.R$style: int TextAppearance_Compat_Notification_Title -com.google.android.material.R$id: int ignore -wangdaye.com.geometricweather.R$id: int test_checkbox_app_button_tint -com.xw.repo.bubbleseekbar.R$styleable: int[] PopupWindowBackgroundState -com.jaredrummler.android.colorpicker.R$attr: int autoSizeStepGranularity -com.google.android.material.R$attr: int autoSizeStepGranularity -com.google.android.material.R$id: int accessibility_custom_action_28 -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -com.xw.repo.bubbleseekbar.R$attr: int spinnerStyle -androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_android_layout -androidx.appcompat.widget.ViewStubCompat: ViewStubCompat(android.content.Context,android.util.AttributeSet,int) -io.reactivex.Observable: io.reactivex.Single count() -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -com.google.android.material.R$dimen: int compat_notification_large_icon_max_width -androidx.constraintlayout.widget.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory valueOf(java.lang.String) -com.google.android.material.R$string: int abc_action_mode_done -cyanogenmod.app.Profile$ProfileTrigger$1: cyanogenmod.app.Profile$ProfileTrigger createFromParcel(android.os.Parcel) -androidx.activity.R$id -androidx.dynamicanimation.R$dimen: int notification_small_icon_size_as_large -com.google.android.material.R$styleable: int Chip_closeIconStartPadding -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop +okhttp3.internal.Util: int delimiterOffset(java.lang.String,int,int,java.lang.String) +androidx.preference.R$styleable: int AppCompatTheme_actionBarDivider +wangdaye.com.geometricweather.R$string: int content_des_swipe_right_to_delete +okhttp3.internal.ws.RealWebSocket: java.util.Random random +wangdaye.com.geometricweather.R$id: int firstVisible +androidx.vectordrawable.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.constraintlayout.widget.R$attr: int actionBarTabBarStyle +androidx.legacy.coreutils.R$styleable: int[] GradientColor +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setLockWallpaper(java.lang.String) +cyanogenmod.app.Profile$ProfileTrigger: int getState() +wangdaye.com.geometricweather.R$attr: int keyPositionType +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.appcompat.R$attr: int navigationIcon +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogTheme +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +wangdaye.com.geometricweather.R$attr: int itemPadding +androidx.preference.R$styleable: int SearchView_voiceIcon +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView_Menu +androidx.hilt.lifecycle.R$anim: R$anim() +com.google.android.material.R$styleable: int[] MotionHelper +okio.ByteString: int lastIndexOf(byte[],int) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Large +androidx.appcompat.R$attr: int switchStyle +com.xw.repo.bubbleseekbar.R$attr: int fontProviderCerts +com.google.android.material.R$layout: int mtrl_calendar_month_labeled +org.greenrobot.greendao.AbstractDao: java.util.List loadAllFromCursor(android.database.Cursor) +okhttp3.Cache$Entry: java.lang.String SENT_MILLIS +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton +androidx.hilt.lifecycle.R$id: int forever +wangdaye.com.geometricweather.R$layout: int item_weather_daily_value +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_PopupMenu +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +com.xw.repo.bubbleseekbar.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.R$attr: int iconResStart +androidx.constraintlayout.widget.Group: Group(android.content.Context,android.util.AttributeSet) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSize(int) +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: ObservablePublishSelector$TargetObserver(io.reactivex.Observer) +androidx.appcompat.resources.R$id: int dialog_button +com.google.android.material.R$attr: int layout_constraintLeft_toRightOf +androidx.appcompat.widget.ViewStubCompat: ViewStubCompat(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus +james.adaptiveicon.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: int UnitType +android.didikee.donate.R$attr: int showText +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int PREDISMISSED_STATE +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Light +androidx.activity.R$id: int right_side +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModelProvider$Factory mFactory +com.jaredrummler.android.colorpicker.R$drawable: int abc_control_background_material +androidx.appcompat.R$style: int Base_V22_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$id: int activity_settings +androidx.customview.R$styleable: int FontFamilyFont_android_fontWeight +com.google.android.material.R$styleable: int[] MaterialButton +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean getWind() +wangdaye.com.geometricweather.R$color: int checkbox_themeable_attribute_color +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Bridge +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyleSmall +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemPaddingLeft +com.bumptech.glide.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$styleable: int SearchView_searchIcon +com.google.gson.internal.LinkedTreeMap: boolean $assertionsDisabled +androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_CBC_SHA256 +com.jaredrummler.android.colorpicker.R$color: int preference_fallback_accent_color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric Metric +wangdaye.com.geometricweather.R$drawable: int notif_temp_121 +androidx.appcompat.R$styleable: int AppCompatTheme_dialogCornerRadius +okhttp3.internal.platform.AndroidPlatform: boolean api24IsCleartextTrafficPermitted(java.lang.String,java.lang.Class,java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getSnow() +androidx.coordinatorlayout.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.R$string: int key_widget_day +wangdaye.com.geometricweather.R$styleable: int TextAppearance_fontVariationSettings +okhttp3.internal.http2.PushObserver: boolean onRequest(int,java.util.List) +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline4 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String weather +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage[] values() +com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: void close() +androidx.loader.R$string +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked +com.google.android.material.R$styleable: int[] FloatingActionButton +androidx.appcompat.widget.ActionBarContextView: int getAnimatedVisibility() +wangdaye.com.geometricweather.R$styleable: int[] GradientColor +androidx.activity.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_checkedButton +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Bridge +androidx.lifecycle.DefaultLifecycleObserver: void onPause(androidx.lifecycle.LifecycleOwner) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconTint +wangdaye.com.geometricweather.R$styleable: int View_theme +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_checkedChip +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.Long getId() +androidx.preference.R$attr: int popupWindowStyle +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FAIR_DAY +cyanogenmod.app.ProfileGroup: android.net.Uri getRingerOverride() +okhttp3.Dispatcher: java.util.concurrent.ExecutorService executorService +com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context) +androidx.dynamicanimation.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$drawable: int notif_temp_47 +androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Time +android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat +com.google.android.material.R$attr: int selectorSize +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX getIndices() +android.didikee.donate.R$styleable: int DrawerArrowToggle_barLength +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function9) +androidx.constraintlayout.widget.R$drawable: int abc_btn_check_to_on_mtrl_000 +wangdaye.com.geometricweather.R$string: int cpv_select +com.google.android.material.card.MaterialCardView: void setProgress(float) +wangdaye.com.geometricweather.R$id: int exitUntilCollapsed +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setZh_TW(java.lang.String) +androidx.preference.R$dimen: int abc_dialog_padding_top_material +okhttp3.Cache$1: void trackConditionalCacheHit() +androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$layout: int dialog_minimal_icon +androidx.preference.R$styleable: int SwitchCompat_android_textOff +com.google.android.material.R$attr: int listPopupWindowStyle +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.customview.R$styleable: int FontFamilyFont_android_font +androidx.appcompat.widget.Toolbar: int getCurrentContentInsetRight() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getLogo() +com.google.android.material.R$styleable: int ActionBar_subtitle +androidx.swiperefreshlayout.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPrimary(java.lang.String) +okhttp3.Cache$Entry: java.lang.String url +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_list_padding_top_no_title +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String unitId +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTheme +com.google.android.material.R$style: int Widget_MaterialComponents_Badge +wangdaye.com.geometricweather.R$id: int mtrl_child_content_container +android.didikee.donate.R$dimen: int abc_dialog_min_width_minor +androidx.hilt.lifecycle.R$dimen: int notification_top_pad +androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +com.google.android.material.R$id: int dragDown +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_black +wangdaye.com.geometricweather.db.entities.AlertEntity: long getTime() +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_shouldDisableView +wangdaye.com.geometricweather.R$attr: int layout_scrollInterpolator +com.xw.repo.bubbleseekbar.R$styleable: int[] ColorStateListItem +androidx.constraintlayout.widget.R$color: int switch_thumb_disabled_material_dark +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +wangdaye.com.geometricweather.R$attr: int arcMode +wangdaye.com.geometricweather.R$attr: int windowFixedWidthMinor +io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function,boolean,int) +androidx.lifecycle.LifecycleOwner: androidx.lifecycle.Lifecycle getLifecycle() +com.google.android.material.R$styleable: int[] Transform +com.google.android.material.R$id: int chronometer +androidx.appcompat.R$attr: int paddingTopNoTitle +androidx.appcompat.R$attr: int alertDialogTheme +com.turingtechnologies.materialscrollbar.R$attr: int actionMenuTextAppearance +androidx.swiperefreshlayout.R$drawable +com.google.android.material.button.MaterialButton: int getInsetBottom() +com.google.android.material.textfield.TextInputLayout: int getErrorTextCurrentColor() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: java.lang.String getPubTime() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listDividerAlertDialog +cyanogenmod.externalviews.ExternalView$3: ExternalView$3(cyanogenmod.externalviews.ExternalView) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moldLevel +com.google.android.material.R$attr: int trackTintMode +okhttp3.internal.http2.Http2Stream$FramingSource: void updateConnectionFlowControl(long) +com.google.android.material.chip.Chip: void setCloseIconEndPaddingResource(int) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: KeyguardExternalViewProviderService$Provider(cyanogenmod.externalviews.KeyguardExternalViewProviderService,android.os.Bundle) +androidx.constraintlayout.widget.R$attr: int tooltipFrameBackground +com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_alpha +androidx.appcompat.R$style: int Widget_AppCompat_ImageButton +androidx.appcompat.R$styleable: int AppCompatTheme_seekBarStyle +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPressure() +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_disableDependentsState +androidx.constraintlayout.widget.R$attr: int drawableLeftCompat +com.jaredrummler.android.colorpicker.R$bool: int config_materialPreferenceIconSpaceReserved +androidx.coordinatorlayout.R$attr: int font +androidx.constraintlayout.widget.R$dimen: int abc_text_size_medium_material +androidx.drawerlayout.R$id: int text2 +androidx.preference.R$styleable: int MultiSelectListPreference_android_entryValues +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context) +okhttp3.internal.platform.JdkWithJettyBootPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: java.lang.String getNotificationTextColorName(android.content.Context) +androidx.preference.R$color: int bright_foreground_disabled_material_dark +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +wangdaye.com.geometricweather.R$color: int lightPrimary_5 +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Line2 +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void drainLoop() +wangdaye.com.geometricweather.R$string: int action_settings +cyanogenmod.app.CustomTile: cyanogenmod.app.CustomTile clone() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitationDuration +com.xw.repo.bubbleseekbar.R$attr: int actionModeCopyDrawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: int status +androidx.preference.R$layout: int abc_search_dropdown_item_icons_2line +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorBackgroundFloating +com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_bottom_material +androidx.appcompat.R$attr: int actionLayout +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long serialVersionUID +wangdaye.com.geometricweather.settings.dialogs.MinimalIconDialog: MinimalIconDialog() +com.bumptech.glide.R$styleable: int GradientColorItem_android_offset +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours Past24Hours +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_fontFamily +okhttp3.internal.http2.Http2Connection: long awaitPongsReceived +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_colored_material +wangdaye.com.geometricweather.db.entities.WeatherEntity: void refresh() +wangdaye.com.geometricweather.R$attr: int listLayout +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.CustomIndicator: int getTextSize() +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void setDisposable(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_primary_mtrl_alpha +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void dispose() +androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_icon +com.xw.repo.bubbleseekbar.R$attr: int buttonStyle +com.google.android.material.R$styleable: int NavigationView_itemHorizontalPadding +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_selectionRequired +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: AccuCurrentResult$PrecipitationSummary$Precipitation$Metric() +wangdaye.com.geometricweather.R$dimen: int abc_text_size_body_2_material +android.didikee.donate.R$id: int action_bar_spinner +androidx.preference.R$styleable: int AppCompatTextView_drawableEndCompat +com.google.android.material.R$styleable: int MaterialTextAppearance_android_lineHeight +cyanogenmod.hardware.IThermalListenerCallback$Stub: int TRANSACTION_onThermalChanged_0 +androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontStyle +android.didikee.donate.R$attr: int progressBarPadding +com.turingtechnologies.materialscrollbar.R$attr: int spinnerDropDownItemStyle +okio.SegmentedByteString: int lastIndexOf(byte[],int) +com.turingtechnologies.materialscrollbar.R$attr: int checkboxStyle +okhttp3.internal.http2.Http2Writer: okhttp3.internal.http2.Hpack$Writer hpackWriter +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableLeftCompat +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerError(java.lang.Throwable) +wangdaye.com.geometricweather.R$layout: int abc_dialog_title_material +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +okhttp3.HttpUrl$Builder: int parsePort(java.lang.String,int,int) +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_PONG +com.google.android.material.R$styleable: int TextInputLayout_helperTextEnabled +androidx.drawerlayout.R$id: int action_image +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality airQuality +io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,int) +com.google.android.material.R$animator +okhttp3.internal.cache.DiskLruCache$Editor: void detach() +james.adaptiveicon.R$drawable: int abc_text_select_handle_right_mtrl_light +wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemIconDisabledAlpha +com.google.android.material.appbar.CollapsingToolbarLayout: void setTitleEnabled(boolean) +androidx.hilt.R$drawable: int notification_bg_normal_pressed +com.github.rahatarmanahmed.cpv.CircularProgressView: void setProgress(float) com.google.android.material.R$styleable: int KeyTrigger_motion_postLayoutCollision -wangdaye.com.geometricweather.R$string: int feedback_hide_lunar -okhttp3.Cache$2: java.lang.String nextUrl -okhttp3.HttpUrl: boolean percentEncoded(java.lang.String,int,int) -okio.ForwardingTimeout: void throwIfReached() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -androidx.appcompat.widget.SwitchCompat: void setThumbTextPadding(int) -okhttp3.OkHttpClient: int pingIntervalMillis() -androidx.appcompat.widget.Toolbar: int getCurrentContentInsetRight() -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Large -okhttp3.internal.http2.Http2Writer: boolean client -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_inverse_material_light -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position position -wangdaye.com.geometricweather.R$attr: int indicatorSize -okio.HashingSink -android.didikee.donate.R$color: int secondary_text_disabled_material_dark -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motion_triggerOnCollision -james.adaptiveicon.R$styleable: int SearchView_defaultQueryHint -com.google.android.material.R$styleable: int AppBarLayout_expanded -com.google.android.material.R$drawable: int abc_ratingbar_small_material -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: int UnitType -com.google.android.material.R$color: int mtrl_bottom_nav_ripple_color -wangdaye.com.geometricweather.R$attr: int tooltipText -android.didikee.donate.R$color: int foreground_material_dark -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionMode -james.adaptiveicon.R$id: int action_bar_container -cyanogenmod.externalviews.KeyguardExternalView$11 -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_handleOffColor -okhttp3.Cache: long size() -cyanogenmod.os.Concierge$ParcelInfo: boolean mCreation -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: void dispose() -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean cancelOnReplace -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: int UnitType -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterTextAppearance -androidx.coordinatorlayout.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$dimen: int compat_button_inset_horizontal_material -okio.Segment: int pos -androidx.appcompat.R$id: int multiply -androidx.work.R$style: int Widget_Compat_NotificationActionContainer -androidx.viewpager2.R$id: int accessibility_custom_action_25 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Inverse -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SearchView -androidx.appcompat.R$id: int icon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX weather -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_touch_to_seek -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_enabled -com.xw.repo.bubbleseekbar.R$style: int Widget_Compat_NotificationActionText -cyanogenmod.alarmclock.ClockContract$CitiesColumns -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItem -retrofit2.ParameterHandler$Headers: void apply(retrofit2.RequestBuilder,okhttp3.Headers) -cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String META_DATA -com.jaredrummler.android.colorpicker.R$color: int preference_fallback_accent_color -androidx.hilt.work.R$anim: R$anim() -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2 -androidx.appcompat.R$id: int message -com.google.android.material.R$attr: int itemShapeInsetEnd -androidx.preference.R$color: int abc_tint_btn_checkable -com.turingtechnologies.materialscrollbar.R$attr: int expandActivityOverflowButtonDrawable -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_disabled_material_dark +okio.Segment: Segment(byte[],int,int,boolean,boolean) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +com.google.android.material.R$styleable: int ActionMode_subtitleTextStyle +androidx.preference.R$layout: int abc_activity_chooser_view_list_item +com.google.android.material.R$attr: int backgroundColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: AccuDailyResult$DailyForecasts$Moon() +com.jaredrummler.android.colorpicker.R$attr: int layout_insetEdge +com.google.android.material.R$attr: int tabInlineLabel +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_color +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String timezone +androidx.appcompat.R$attr: int initialActivityCount +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoDownloadInterval +androidx.coordinatorlayout.widget.CoordinatorLayout +androidx.constraintlayout.widget.R$color: int material_grey_900 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating +com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_begin +io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Consumer onError +androidx.appcompat.R$style: int Base_Animation_AppCompat_Dialog +com.google.android.material.textfield.TextInputLayout: void setError(java.lang.CharSequence) +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +androidx.preference.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle +com.google.android.material.card.MaterialCardView: void setDragged(boolean) +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Borderless +okhttp3.internal.Util: java.util.regex.Pattern VERIFY_AS_IP_ADDRESS +androidx.work.R$dimen: int compat_button_padding_vertical_material +cyanogenmod.profiles.ConnectionSettings: java.lang.String ACTION_MODIFY_NETWORK_MODE +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_tileMode +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderFetchTimeout +okhttp3.Response$Builder: okhttp3.Response$Builder headers(okhttp3.Headers) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf +androidx.appcompat.R$style: int Base_DialogWindowTitleBackground_AppCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String WeatherText +wangdaye.com.geometricweather.R$drawable: int notif_temp_45 +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$attr: int passwordToggleDrawable +retrofit2.BuiltInConverters$StreamingResponseBodyConverter: retrofit2.BuiltInConverters$StreamingResponseBodyConverter INSTANCE +james.adaptiveicon.R$attr: int tint +cyanogenmod.profiles.ConnectionSettings$BooleanState: ConnectionSettings$BooleanState() +james.adaptiveicon.R$style: int Widget_AppCompat_PopupMenu_Overflow +com.google.android.material.R$id: int fill +com.xw.repo.bubbleseekbar.R$attr: int lastBaselineToBottomHeight +androidx.preference.R$styleable: int AppCompatTheme_editTextColor +androidx.appcompat.view.menu.ActionMenuItemView: void setIcon(android.graphics.drawable.Drawable) +androidx.hilt.work.R$styleable: int Fragment_android_tag +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline5 +androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_toBottomOf +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: long serialVersionUID +com.jaredrummler.android.colorpicker.R$id: int list_item +com.google.gson.stream.JsonScope: JsonScope() +androidx.hilt.work.R$styleable: int FragmentContainerView_android_tag +com.google.android.material.textfield.TextInputLayout: void setEnabled(boolean) +wangdaye.com.geometricweather.R$drawable: int weather_haze_pixel +com.jaredrummler.android.colorpicker.R$styleable: int Preference_allowDividerBelow +wangdaye.com.geometricweather.R$id: int test_checkbox_app_button_tint +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date sunriseTime +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setDateText(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_dark +wangdaye.com.geometricweather.R$attr: int textInputLayoutFocusedRectEnabled +com.google.android.material.R$style: int Widget_AppCompat_RatingBar_Small +wangdaye.com.geometricweather.R$dimen: int abc_text_size_title_material +com.google.android.material.R$styleable: int FloatingActionButton_shapeAppearanceOverlay +okhttp3.internal.http2.Http2Connection: int OKHTTP_CLIENT_WINDOW_SIZE +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int wip +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: java.util.concurrent.atomic.AtomicReference upstream com.google.android.material.R$style: int Theme_AppCompat_Light -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat PREFER_RGB_565 -com.google.android.material.R$dimen: int abc_dialog_list_padding_top_no_title -androidx.dynamicanimation.R$id: int title -androidx.appcompat.widget.AppCompatImageButton: void setImageDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Item -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -okhttp3.ConnectionPool: okhttp3.internal.connection.RealConnection get(okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) -androidx.preference.R$drawable: int abc_seekbar_tick_mark_material -com.jaredrummler.android.colorpicker.R$attr -cyanogenmod.app.IProfileManager$Stub: IProfileManager$Stub() -androidx.legacy.coreutils.R$dimen: int notification_subtext_size -androidx.legacy.coreutils.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$drawable: int notif_temp_105 -okhttp3.internal.ws.WebSocketWriter$FrameSink: long contentLength -cyanogenmod.weather.IRequestInfoListener$Stub: IRequestInfoListener$Stub() -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Spinner_Underlined -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int subTextColorResId -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getDistrict() -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: java.util.List getSuggestions(android.content.Intent) -okio.Okio$3: Okio$3() -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline4 -retrofit2.adapter.rxjava2.Result: java.lang.Throwable error() -com.jaredrummler.android.colorpicker.R$id: int action_menu_divider -com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialButton -android.didikee.donate.R$styleable: int ActionBar_backgroundSplit -androidx.hilt.work.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$attr: int materialButtonStyle -wangdaye.com.geometricweather.R$id: int notification_base_aqiAndWind -androidx.constraintlayout.widget.R$styleable: int Transition_android_id -androidx.viewpager2.R$styleable: int GradientColorItem_android_offset -androidx.hilt.work.R$styleable: int GradientColor_android_startColor -com.turingtechnologies.materialscrollbar.R$attr: int itemSpacing -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundTintMode -com.google.android.material.R$styleable: int Toolbar_popupTheme -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_shapeAppearanceOverlay -okhttp3.internal.cache.DiskLruCache: okio.BufferedSink journalWriter -io.reactivex.internal.observers.BlockingObserver: boolean isDisposed() -com.google.android.material.R$dimen: int abc_button_padding_horizontal_material -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback,int) -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_imeOptions -wangdaye.com.geometricweather.R$layout: int mtrl_picker_text_input_date_range -com.turingtechnologies.materialscrollbar.R$attr: int checkedChip -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.query.QueryBuilder queryBuilder(java.lang.Class) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Medium_Inverse -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: io.reactivex.disposables.Disposable timer -wangdaye.com.geometricweather.R$attr: int drawableRightCompat -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: int sourceColor -com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.ObservableSource sampler -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_left_mtrl_light -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer -androidx.preference.R$color: int material_deep_teal_200 -androidx.appcompat.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$styleable: int Transform_android_transformPivotX -androidx.viewpager.R$id: int chronometer -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -cyanogenmod.app.LiveLockScreenInfo -androidx.preference.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$drawable: int btn_radio_on_mtrl -okhttp3.CookieJar$1 -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_elevation -com.google.gson.stream.JsonReader: int[] stack -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder pingInterval(java.time.Duration) -okhttp3.internal.http.StatusLine -androidx.appcompat.widget.AppCompatTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -androidx.preference.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$string: int content_des_swipe_left_to_delete -androidx.preference.R$style: int TextAppearance_AppCompat_Tooltip -androidx.customview.R$drawable: int notification_bg_low -androidx.transition.R$style -cyanogenmod.app.CustomTile$ExpandedItem: android.graphics.Bitmap itemBitmapResource -android.didikee.donate.R$attr: int queryHint -cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationMax() -org.greenrobot.greendao.AbstractDao: int pkOrdinal -okhttp3.MediaType: java.lang.String QUOTED -com.jaredrummler.android.colorpicker.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -okio.DeflaterSink: void close() -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int INSTALLED -com.xw.repo.bubbleseekbar.R$dimen: int abc_disabled_alpha_material_dark -wangdaye.com.geometricweather.R$attr: int firstBaselineToTopHeight -cyanogenmod.app.ProfileGroup: void setVibrateMode(cyanogenmod.app.ProfileGroup$Mode) -androidx.appcompat.R$attr: int windowMinWidthMajor -androidx.hilt.R$layout: int notification_template_part_time -com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getIndicatorHeight() -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabView -io.reactivex.internal.disposables.DisposableHelper: void dispose() -androidx.constraintlayout.widget.R$anim: int abc_slide_out_bottom -okhttp3.internal.http2.Http2Stream: void checkOutNotClosed() -okhttp3.internal.http2.PushObserver: boolean onHeaders(int,java.util.List,boolean) -androidx.appcompat.R$id: int group_divider -com.google.android.material.R$styleable: int[] ThemeEnforcement -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconCheckable -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: long timeout -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.Integer angle -androidx.core.R$id: int icon_group -com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_layout -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_maxHeight -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotationY -androidx.preference.R$attr: int expandActivityOverflowButtonDrawable -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchMinWidth -androidx.hilt.work.R$drawable: int notification_tile_bg -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayout_Layout -io.reactivex.subjects.PublishSubject$PublishDisposable: long serialVersionUID -io.reactivex.Observable: io.reactivex.Observable take(long,java.util.concurrent.TimeUnit) -cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String itemTitle -com.turingtechnologies.materialscrollbar.R$attr -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.util.List _queryWeatherEntity_DailyEntityList(java.lang.String,java.lang.String) -cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onCustomTilePosted -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColor -com.google.android.material.bottomappbar.BottomAppBar: void setElevation(float) -com.google.android.material.R$styleable: int TextInputLayout_shapeAppearance -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconCheckable -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconTint -com.jaredrummler.android.colorpicker.R$attr: int seekBarPreferenceStyle -com.google.gson.stream.JsonReader: int PEEKED_NONE -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getVisibility() -com.google.android.material.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$attr: int colorBackgroundFloating -com.bumptech.glide.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitationProbability -cyanogenmod.alarmclock.CyanogenModAlarmClock -android.didikee.donate.R$drawable: int abc_text_cursor_material -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_0 -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_contentScrim -com.jaredrummler.android.colorpicker.R$id: int progress_circular -androidx.appcompat.R$attr: int actionViewClass -com.google.android.material.R$styleable: int Badge_backgroundColor -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.R$attr: int maxVelocity -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -androidx.appcompat.R$dimen: int abc_text_size_body_2_material -com.xw.repo.bubbleseekbar.R$color: int colorAccent -okhttp3.internal.connection.RouteSelector: boolean hasNext() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedHeightMinor -androidx.constraintlayout.widget.R$styleable: int[] StateListDrawable -cyanogenmod.app.IProfileManager$Stub$Proxy: void resetAll() -okhttp3.CipherSuite$1: int compare(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_collapsed -com.google.android.material.R$styleable: int TabLayout_tabPaddingStart -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_RadioButton -com.google.android.material.R$styleable: int[] AppBarLayout -com.xw.repo.bubbleseekbar.R$attr: int windowActionBarOverlay -com.google.android.material.R$attr: int listPreferredItemHeight -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWeatherPhase() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isShow -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -com.google.android.material.R$attr: int waveVariesBy -wangdaye.com.geometricweather.R$styleable: int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Surface -okhttp3.RequestBody$3: okhttp3.MediaType contentType() -androidx.fragment.R$drawable: int notification_template_icon_bg -android.didikee.donate.R$styleable: int AppCompatTheme_colorControlActivated -okhttp3.internal.http2.Http2Reader: int lengthWithoutPadding(int,byte,short) -com.google.gson.stream.JsonWriter: boolean getSerializeNulls() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle -okio.SegmentedByteString: okio.ByteString toAsciiUppercase() -okhttp3.logging.LoggingEventListener: void requestHeadersEnd(okhttp3.Call,okhttp3.Request) -com.google.android.material.R$id: int material_clock_hand -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onError(java.lang.Throwable) -androidx.preference.R$styleable: int TextAppearance_fontVariationSettings -androidx.preference.R$dimen: int preference_dropdown_padding_start -com.google.android.material.R$id: int material_timepicker_cancel_button -okio.SegmentedByteString: okio.ByteString substring(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: int UnitType -okhttp3.MultipartBody$Part: okhttp3.RequestBody body -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX) -android.didikee.donate.R$styleable: int ActionBar_indeterminateProgressStyle -com.turingtechnologies.materialscrollbar.R$id: int action_context_bar -wangdaye.com.geometricweather.R$font: int google_sans -android.didikee.donate.R$style: int Platform_V25_AppCompat_Light -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: cyanogenmod.externalviews.IKeyguardExternalViewProvider asInterface(android.os.IBinder) -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetEndWithActions -wangdaye.com.geometricweather.R$layout: int activity_widget_config -retrofit2.OptionalConverterFactory$OptionalConverter: OptionalConverterFactory$OptionalConverter(retrofit2.Converter) -wangdaye.com.geometricweather.R$styleable: int Motion_drawPath -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge -wangdaye.com.geometricweather.R$anim: int abc_fade_out -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex today -wangdaye.com.geometricweather.R$attr: int shrinkMotionSpec -com.google.android.material.R$attr: int layout_constraintDimensionRatio -wangdaye.com.geometricweather.R$dimen: int material_clock_face_margin_top -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -cyanogenmod.themes.ThemeChangeRequest: int DEFAULT_WALLPAPER_ID -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: boolean isDisposed() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerComplete(io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver) -com.google.android.material.R$drawable: int material_cursor_drawable -okhttp3.OkHttpClient: boolean followRedirects -org.greenrobot.greendao.AbstractDaoSession: java.lang.Object callInTx(java.util.concurrent.Callable) -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getType() -com.google.android.material.R$styleable: int Chip_iconStartPadding -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: okhttp3.internal.http2.Http2Codec this$0 -com.google.android.material.R$id: int icon -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton -com.google.android.material.R$id: int action_image -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton -com.turingtechnologies.materialscrollbar.R$attr: int reverseLayout -james.adaptiveicon.R$id: int action_mode_bar_stub -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getWindDescription(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit) -androidx.hilt.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$string: int key_widget_trend_hourly -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableEnd -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -com.xw.repo.bubbleseekbar.R$id: int radio -com.google.android.material.R$styleable: int TextInputLayout_startIconTintMode -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarSwitch -io.reactivex.exceptions.OnErrorNotImplementedException: OnErrorNotImplementedException(java.lang.Throwable) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Toolbar -com.google.android.material.R$color: int mtrl_btn_text_btn_bg_color_selector -wangdaye.com.geometricweather.remoteviews.config.Hilt_DailyTrendWidgetConfigActivity: Hilt_DailyTrendWidgetConfigActivity() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixText -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getMoonRiseDate() -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge -cyanogenmod.weatherservice.WeatherProviderService$1: void cancelOngoingRequests() -com.github.rahatarmanahmed.cpv.CircularProgressView: void resetAnimation() -okhttp3.Headers: okhttp3.Headers of(java.lang.String[]) -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: int getSuggestedMinimumWidth() -okhttp3.Cache$CacheResponseBody: long contentLength() -okhttp3.internal.http2.Hpack$Reader: void insertIntoDynamicTable(int,okhttp3.internal.http2.Header) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button -wangdaye.com.geometricweather.R$attr: int checkedChip -com.turingtechnologies.materialscrollbar.R$id: int navigation_header_container -com.turingtechnologies.materialscrollbar.R$attr: int panelMenuListWidth -androidx.lifecycle.LiveData: void removeObservers(androidx.lifecycle.LifecycleOwner) -androidx.viewpager2.R$id: int accessibility_custom_action_0 -com.google.android.material.chip.ChipGroup: java.util.List getCheckedChipIds() -com.google.android.material.R$attr: int hintEnabled -wangdaye.com.geometricweather.R$styleable: int[] RoundCornerTransition -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: java.lang.String getActiveWeatherServiceProviderLabel() -wangdaye.com.geometricweather.R$attr: int tickColorInactive -wangdaye.com.geometricweather.R$anim: int mtrl_bottom_sheet_slide_in -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_weightSum -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather weather -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_constantSize -cyanogenmod.weather.RequestInfo: java.lang.String getCityName() -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: java.lang.String toString() -retrofit2.OkHttpCall$1: retrofit2.Callback val$callback -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: boolean isDisposed() -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_summaryOff -com.google.android.material.R$attr: int dayStyle -androidx.activity.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Bottom_Right -com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_entryValues -com.bumptech.glide.integration.okhttp.R$id: int info -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getThumbStrokeColor() -wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary_variant -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: AndroidPlatform$AndroidCertificateChainCleaner(java.lang.Object,java.lang.reflect.Method) -james.adaptiveicon.R$styleable: int Toolbar_navigationContentDescription -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_icon_btn_padding_left -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_commitIcon -androidx.recyclerview.R$color: int notification_action_color_filter -cyanogenmod.profiles.LockSettings: int mValue -androidx.core.R$styleable: int FontFamily_fontProviderPackage -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_DialogWhenLarge -androidx.coordinatorlayout.widget.CoordinatorLayout$SavedState: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$styleable: int NavigationView_elevation -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_always_show_bubble_delay -wangdaye.com.geometricweather.R$styleable: int Layout_android_orientation -androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$attr: int spinnerStyle -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -okhttp3.internal.http2.Http2: java.lang.String[] BINARY -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.Object NextOffsetChange +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analog_dark +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_checkable +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall this$0 +wangdaye.com.geometricweather.R$attr: int progress_color +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String WRITE_ALARMS_PERMISSION +com.google.android.material.R$styleable: int Constraint_layout_constraintRight_creator +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.internal.util.AtomicThrowable error +androidx.appcompat.R$drawable: int abc_ic_menu_cut_mtrl_alpha +androidx.preference.R$drawable: int notification_bg_normal +androidx.viewpager.R$id: int text +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.background.receiver.widget.WidgetDayWeekProvider: WidgetDayWeekProvider() +wangdaye.com.geometricweather.R$styleable: int ActionBar_displayOptions +wangdaye.com.geometricweather.R$color: int mtrl_tabs_colored_ripple_color +com.google.gson.stream.JsonReader: void skipValue() +james.adaptiveicon.R$styleable: int Toolbar_menu +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context) +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_min_width +androidx.preference.R$id: int contentPanel +james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Dialog +io.reactivex.internal.subscriptions.EmptySubscription: boolean isEmpty() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain Rain +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: int UnitType +org.greenrobot.greendao.database.DatabaseOpenHelper: void onOpen(org.greenrobot.greendao.database.Database) +com.xw.repo.bubbleseekbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: void run() +cyanogenmod.library.R$styleable: int LiveLockScreen_type +wangdaye.com.geometricweather.R$attr: int bsb_seek_by_section +com.google.android.material.R$dimen: int design_bottom_sheet_elevation +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_go_search_api_material +com.google.android.material.R$style: int Base_Widget_AppCompat_ListView +wangdaye.com.geometricweather.R$string: int local_time +okhttp3.internal.Util: java.util.concurrent.ThreadFactory threadFactory(java.lang.String,boolean) +james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Dialog +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display4 +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndContainer +okhttp3.Cookie: long parseMaxAge(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_max +androidx.appcompat.R$attr: int drawableSize +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_percent +okhttp3.Headers: java.lang.String get(java.lang.String[],java.lang.String) +com.google.android.material.R$styleable: int SwitchCompat_android_thumb +wangdaye.com.geometricweather.R$styleable: int Preference_persistent +com.google.android.material.R$styleable: int BottomAppBar_elevation +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierMargin +androidx.appcompat.R$drawable: int abc_tab_indicator_mtrl_alpha +androidx.preference.R$attr: int submitBackground +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onComplete() +cyanogenmod.util.ColorUtils: int generateAlertColorFromDrawable(android.graphics.drawable.Drawable) +androidx.loader.R$drawable: int notification_template_icon_low_bg +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_to_on_mtrl_015 +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +cyanogenmod.app.ProfileManager: boolean isProfilesEnabled() +com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Filter +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Medium_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPreference +retrofit2.Converter$Factory: java.lang.Class getRawType(java.lang.reflect.Type) +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCloseDrawable +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintStart_toStartOf +androidx.swiperefreshlayout.R$drawable: int notification_bg_low_pressed +com.google.android.material.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.R$string: int settings_summary_background_free_on +wangdaye.com.geometricweather.R$anim: int design_bottom_sheet_slide_in +wangdaye.com.geometricweather.R$font: int product_sans_italic +com.google.android.material.R$attr: int materialCalendarHeaderDivider +androidx.appcompat.R$style: int TextAppearance_AppCompat_Body2 +james.adaptiveicon.R$styleable: int MenuItem_android_id +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierDirection +android.didikee.donate.R$attr: int navigationIcon +wangdaye.com.geometricweather.R$array: int notification_background_colors +wangdaye.com.geometricweather.R$drawable: int weather_sleet +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_maxWidth +cyanogenmod.app.CMTelephonyManager: boolean isDataConnectionSelectedOnSub(int) +androidx.constraintlayout.widget.R$styleable: int MenuView_android_headerBackground +wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_large_component +wangdaye.com.geometricweather.R$attr: int ttcIndex +com.google.android.material.R$drawable: int abc_list_selector_background_transition_holo_light +io.reactivex.internal.queue.SpscArrayQueue: long producerLookAhead +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_min +androidx.hilt.work.R$attr: int fontProviderQuery +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +androidx.appcompat.widget.AppCompatButton: void setSupportAllCaps(boolean) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitation +io.reactivex.internal.disposables.CancellableDisposable: boolean isDisposed() +wangdaye.com.geometricweather.R$attr: int themeLineHeight +io.reactivex.internal.subscriptions.SubscriptionArbiter: void request(long) +com.google.android.material.chip.Chip: java.lang.CharSequence getCloseIconContentDescription() +wangdaye.com.geometricweather.R$string: int aqi_3 +wangdaye.com.geometricweather.R$string: int minutely_overview +androidx.appcompat.R$style: R$style() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: java.lang.String Unit +androidx.constraintlayout.widget.R$dimen: int hint_pressed_alpha_material_light +androidx.viewpager.R$dimen: int notification_large_icon_width +james.adaptiveicon.R$anim: int abc_slide_in_top +cyanogenmod.profiles.RingModeSettings: boolean isOverride() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_EditText +com.google.android.material.slider.Slider: void setThumbStrokeColor(android.content.res.ColorStateList) +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityCreated(android.app.Activity,android.os.Bundle) +wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: java.lang.Object resource +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ImageButton +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_6 androidx.transition.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Today -androidx.transition.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_percent -androidx.cardview.widget.CardView: void setCardElevation(float) -androidx.lifecycle.ProcessLifecycleOwner$2: androidx.lifecycle.ProcessLifecycleOwner this$0 -wangdaye.com.geometricweather.R$id: int notification_main_column_container -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void otherError(java.lang.Throwable) -cyanogenmod.profiles.StreamSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -okhttp3.MediaType: MediaType(java.lang.String,java.lang.String,java.lang.String,java.lang.String) -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxPlain() -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_max -com.xw.repo.bubbleseekbar.R$dimen: int abc_seekbar_track_progress_height_material -com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_end -wangdaye.com.geometricweather.R$id: int visible -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert -androidx.loader.R$dimen: int compat_button_padding_vertical_material -okhttp3.Headers: java.lang.String value(int) -androidx.constraintlayout.widget.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow -wangdaye.com.geometricweather.R$attr: int windowFixedHeightMinor -androidx.preference.R$attr: int ratingBarStyle -cyanogenmod.app.CustomTile$ExpandedItem$1 -androidx.constraintlayout.widget.R$id: int progress_horizontal -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onStart_1 -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver -cyanogenmod.app.IPartnerInterface$Stub -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_5 -androidx.work.R$id: int text2 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour -androidx.appcompat.R$styleable: int MenuView_android_horizontalDivider -androidx.lifecycle.Lifecycle$Event -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void subscribeInner(io.reactivex.ObservableSource) -okhttp3.internal.http2.Http2Connection: boolean shutdown -io.reactivex.internal.util.NotificationLite: java.lang.Object disposable(io.reactivex.disposables.Disposable) -androidx.viewpager2.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize -cyanogenmod.hardware.CMHardwareManager: int readPersistentInt(java.lang.String) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -androidx.legacy.coreutils.R$drawable: int notification_bg -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motion_postLayoutCollision +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer snowHazard3h +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetRight +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getSunSetDate() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property No2 +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_motionTarget +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_vertical_2lines +androidx.drawerlayout.R$attr: int font +com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentListStyle +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean hasKey(java.lang.Object) +com.google.android.material.R$attr: int tabContentStart +wangdaye.com.geometricweather.R$drawable: int notification_tile_bg +androidx.loader.R$layout +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +androidx.swiperefreshlayout.R$id: int tag_accessibility_pane_title +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_1 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_seekBarStyle +androidx.constraintlayout.widget.R$attr: int customStringValue +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_cornerSize +androidx.preference.R$attr: int key +okhttp3.internal.io.FileSystem: void rename(java.io.File,java.io.File) +com.turingtechnologies.materialscrollbar.R$attr: int color +okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman$Node root +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTotalPrecipitationProbability(java.lang.Float) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_mid_color +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_normal +androidx.constraintlayout.widget.R$styleable: int MockView_mock_diagonalsColor +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +com.xw.repo.bubbleseekbar.R$color: int abc_btn_colored_borderless_text_material +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_percent +androidx.vectordrawable.animated.R$attr: int fontProviderFetchStrategy +io.reactivex.Observable: io.reactivex.Observable switchMapMaybeDelayError(io.reactivex.functions.Function) +okio.AsyncTimeout$2 +androidx.work.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$string: int settings_title_notification_can_be_cleared +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_medium_material +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_ASSIST_LONG_PRESS_ACTION +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +okhttp3.HttpUrl: java.lang.String host +okhttp3.RealCall: void captureCallStackTrace() +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_thickness +wangdaye.com.geometricweather.R$attr: int collapsedTitleGravity +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +okhttp3.internal.platform.AndroidPlatform: boolean isCleartextTrafficPermitted(java.lang.String) +retrofit2.DefaultCallAdapterFactory$1: DefaultCallAdapterFactory$1(retrofit2.DefaultCallAdapterFactory,java.lang.reflect.Type,java.util.concurrent.Executor) +com.bumptech.glide.R$styleable: int[] GradientColorItem +okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,java.lang.String,boolean,boolean,boolean,boolean) +androidx.appcompat.view.menu.ListMenuItemView: ListMenuItemView(android.content.Context,android.util.AttributeSet) +androidx.coordinatorlayout.widget.CoordinatorLayout: java.util.List getDependencySortedChildren() +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableRightCompat +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_menuCategory +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +org.greenrobot.greendao.AbstractDao: void executeInsertInTx(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Iterable,boolean) +androidx.recyclerview.R$id: int normal +com.google.android.material.R$styleable: int Constraint_flow_verticalGap +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: void setUnit(java.lang.String) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias +androidx.constraintlayout.widget.R$color: int abc_primary_text_material_light +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +androidx.appcompat.R$id: int action_menu_presenter +android.didikee.donate.R$dimen: int abc_config_prefDialogWidth +androidx.work.R$id: int text +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias +okhttp3.internal.http2.Huffman: void buildTree() +com.google.android.material.internal.ForegroundLinearLayout: void setForegroundGravity(int) +wangdaye.com.geometricweather.R$mipmap: int ic_launcher +wangdaye.com.geometricweather.R$attr: int actionMenuTextColor +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +james.adaptiveicon.R$styleable: int SearchView_iconifiedByDefault +com.google.android.material.R$styleable: int Constraint_layout_constraintCircleRadius +com.google.android.material.appbar.AppBarLayout: int getDownNestedPreScrollRange() +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_dividerPadding +com.jaredrummler.android.colorpicker.R$styleable: int Preference_persistent +com.google.android.material.R$layout: int test_toolbar_custom_background +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.R$color: int material_on_primary_disabled +james.adaptiveicon.R$attr: int dialogPreferredPadding +androidx.appcompat.R$attr: int fontProviderQuery +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.jaredrummler.android.colorpicker.R$attr: int titleMargin +io.reactivex.internal.util.NotificationLite$SubscriptionNotification: org.reactivestreams.Subscription upstream +retrofit2.Response: okhttp3.Response rawResponse +androidx.hilt.R$id: int accessibility_custom_action_21 +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_Alert +okhttp3.EventListener: void callEnd(okhttp3.Call) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.turingtechnologies.materialscrollbar.R$id: int filled +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: AccuAlertResult$Area() +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +com.google.gson.LongSerializationPolicy$1: LongSerializationPolicy$1(java.lang.String,int) +wangdaye.com.geometricweather.R$styleable: int Slider_labelBehavior +androidx.preference.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$dimen: int design_snackbar_background_corner_radius +okio.BufferedSource: java.lang.String readUtf8(long) +android.support.v4.app.INotificationSideChannel: void cancel(java.lang.String,int,java.lang.String) +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: int UnitType +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +wangdaye.com.geometricweather.R$dimen: int design_navigation_padding_bottom +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2 +com.google.android.material.chip.Chip: void setBackgroundColor(int) +com.google.android.material.slider.BaseSlider: void setTickTintList(android.content.res.ColorStateList) +androidx.cardview.R$styleable: int CardView_cardUseCompatPadding +androidx.constraintlayout.widget.R$styleable: int[] LinearLayoutCompat_Layout +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginEnd +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_minHeight +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Borderless +com.google.android.material.R$bool: int mtrl_btn_textappearance_all_caps +wangdaye.com.geometricweather.R$animator: R$animator() +androidx.legacy.coreutils.R$color +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type getRawType() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: wangdaye.com.geometricweather.db.entities.HourlyEntity readEntity(android.database.Cursor,int) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_padding_end_material +wangdaye.com.geometricweather.R$id: int widget_week_week_1 +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: HistoryEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +cyanogenmod.app.suggest.IAppSuggestManager +cyanogenmod.app.Profile: int mDozeMode +com.google.android.material.slider.Slider +androidx.legacy.coreutils.R$layout: R$layout() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial Imperial +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_long_text_horizontal_padding +james.adaptiveicon.R$styleable: int AppCompatTheme_listDividerAlertDialog +cyanogenmod.hardware.CMHardwareManager +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addFormDataPart(java.lang.String,java.lang.String,okhttp3.RequestBody) +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) +com.turingtechnologies.materialscrollbar.R$string: int character_counter_pattern +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_AU +okhttp3.CacheControl: boolean isPublic +androidx.drawerlayout.R$drawable: int notification_action_background +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconCheckable +okhttp3.Cookie: java.lang.String path() +com.google.android.material.R$string: int mtrl_picker_confirm +wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_strokeWidth +com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_disable_only_material_light +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getLastThemeChangeTime +com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipIconTint() +okhttp3.internal.tls.DistinguishedNameParser: char[] chars +androidx.transition.R$styleable: int GradientColorItem_android_offset +com.xw.repo.bubbleseekbar.R$anim: R$anim() +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.savedstate.SavedStateRegistry mSavedStateRegistry +io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.recyclerview.R$dimen: int notification_small_icon_background_padding +com.google.android.material.R$styleable: int Spinner_popupTheme +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderDivider +androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_colored +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments text +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_off_mtrl_alpha +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_switchTextOn +wangdaye.com.geometricweather.R$style: int PreferenceSummaryTextStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getZh_CN() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer freezingHazard +okhttp3.internal.tls.OkHostnameVerifier: java.util.List getSubjectAltNames(java.security.cert.X509Certificate,int) +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$attr: int backgroundColorStart +androidx.appcompat.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_maxLines +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int TROPICAL_STORM +com.google.gson.stream.JsonScope: int EMPTY_ARRAY +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Light +okhttp3.internal.cache2.Relay: java.io.RandomAccessFile file +com.google.android.material.R$style: int Widget_MaterialComponents_Slider +androidx.vectordrawable.R$id: int accessibility_custom_action_10 +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display3 +androidx.fragment.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.constraintlayout.widget.R$drawable: int abc_ic_arrow_drop_right_black_24dp +androidx.customview.R$styleable: int FontFamily_fontProviderAuthority +androidx.transition.R$id: int right_side +okio.Pipe$PipeSink: okio.Timeout timeout() wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isRain() -wangdaye.com.geometricweather.common.basic.GeoViewModel -androidx.recyclerview.R$styleable: int[] GradientColor -com.turingtechnologies.materialscrollbar.R$bool: int abc_allow_stacked_button_bar -wangdaye.com.geometricweather.R$attr: int boxStrokeErrorColor -com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context) -james.adaptiveicon.R$drawable: R$drawable() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: java.lang.String Localized -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ButtonBar -androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackground(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid TotalLiquid -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_font -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabAnimationMode -wangdaye.com.geometricweather.R$attr: int actionDropDownStyle -com.xw.repo.bubbleseekbar.R$id: int notification_main_column -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: ObservableMergeWithMaybe$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver) -androidx.preference.R$style: int ThemeOverlay_AppCompat_DayNight -wangdaye.com.geometricweather.common.basic.models.weather.History: History(java.util.Date,long,int,int) -androidx.preference.R$attr: int navigationMode -androidx.constraintlayout.helper.widget.Layer: void setTranslationY(float) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -okhttp3.internal.http2.Http2Codec: java.lang.String KEEP_ALIVE -com.google.android.material.R$styleable: int Constraint_android_layout_marginTop -james.adaptiveicon.R$styleable: int MenuView_android_horizontalDivider -androidx.appcompat.view.menu.ActionMenuItemView -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: ObservableBufferBoundary$BufferCloseObserver(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver,long) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_10 -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver -androidx.appcompat.R$attr: int actionModeStyle -com.xw.repo.bubbleseekbar.R$styleable: int ButtonBarLayout_allowStacking -okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache this$0 -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String hourlyForecast -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegments(java.lang.String,boolean) -androidx.work.impl.workers.ConstraintTrackingWorker: ConstraintTrackingWorker(android.content.Context,androidx.work.WorkerParameters) -androidx.preference.R$style: R$style() -okhttp3.internal.cache.DiskLruCache$1: DiskLruCache$1(okhttp3.internal.cache.DiskLruCache) -wangdaye.com.geometricweather.R$color: int androidx_core_secondary_text_default_material_light -androidx.hilt.lifecycle.R$styleable: int[] FragmentContainerView -androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableCompat -io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean done -com.google.android.material.R$styleable: int[] ConstraintLayout_placeholder -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_to_on_mtrl_000 -cyanogenmod.app.ILiveLockScreenManager: void setLiveLockScreenEnabled(boolean) -androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_Alert -androidx.preference.R$id: int image -okhttp3.HttpUrl: HttpUrl(okhttp3.HttpUrl$Builder) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: java.lang.String Unit -wangdaye.com.geometricweather.R$id: int item_trend_hourly -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context) -androidx.dynamicanimation.R$attr: int fontWeight -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dialog -cyanogenmod.providers.CMSettings$System: java.lang.String BACK_WAKE_SCREEN -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_alphabeticShortcut -wangdaye.com.geometricweather.R$layout: int expand_button -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$ReplayBuffer buffer -androidx.activity.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.R$string: int feedback_background_location_summary -com.google.android.material.R$id: int search_edit_frame -com.turingtechnologies.materialscrollbar.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme_Dark -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_disabled_elevation -androidx.viewpager.R$styleable: int FontFamilyFont_android_fontStyle -androidx.recyclerview.widget.RecyclerView: void setItemAnimator(androidx.recyclerview.widget.RecyclerView$ItemAnimator) -wangdaye.com.geometricweather.R$string: int total -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: java.lang.String icon -androidx.appcompat.widget.Toolbar: android.widget.TextView getSubtitleTextView() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_background_transition_holo_light -wangdaye.com.geometricweather.R$attr: int titleEnabled -com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_begin -wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextTitle -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonStyleSmall -androidx.preference.R$style: int Theme_AppCompat_DayNight_NoActionBar -cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CURRENT_AND_FORECAST_WEATHER_URI -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: android.os.IBinder asBinder() -com.google.android.material.R$dimen: int hint_pressed_alpha_material_light -com.google.android.material.R$style: int Platform_V21_AppCompat_Light -com.google.android.material.bottomappbar.BottomAppBar: com.google.android.material.bottomappbar.BottomAppBar$Behavior getBehavior() -com.turingtechnologies.materialscrollbar.R$id: int stretch -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial Imperial -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isModifyInHour() -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetBottom -androidx.activity.R$id: int line1 -james.adaptiveicon.R$drawable: int tooltip_frame_dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: java.lang.String Unit -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dividerVertical -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap -com.google.android.material.R$drawable: R$drawable() -com.turingtechnologies.materialscrollbar.R$attr: int editTextStyle -android.didikee.donate.R$styleable: int ActionBar_customNavigationLayout -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$styleable: int[] ProgressIndicator -android.didikee.donate.R$dimen: int abc_text_size_title_material -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -com.jaredrummler.android.colorpicker.R$attr: int windowFixedWidthMinor -com.google.android.material.R$attr: int preserveIconSpacing -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_curveFit -androidx.legacy.coreutils.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$id: int item_about_header_appVersion -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_toggle -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -james.adaptiveicon.R$color: int abc_background_cache_hint_selector_material_dark -okhttp3.internal.cache.DiskLruCache$3 -com.jaredrummler.android.colorpicker.R$attr: int panelMenuListTheme -io.reactivex.Observable: io.reactivex.Observable switchMapDelayError(io.reactivex.functions.Function) +cyanogenmod.externalviews.KeyguardExternalView: java.lang.String EXTRA_PERMISSION_LIST +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_SHOW_BATTERY_PERCENT +androidx.preference.R$attr: int buttonGravity +androidx.preference.R$color: int material_grey_600 +androidx.dynamicanimation.R$dimen: int notification_content_margin_start +com.google.android.material.R$id: int TOP_START +wangdaye.com.geometricweather.common.basic.models.weather.History: long getTime() +com.google.android.material.R$styleable: int[] ExtendedFloatingActionButton +wangdaye.com.geometricweather.R$attr: int windowNoTitle +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.CompositeDisposable set +wangdaye.com.geometricweather.R$attr: int errorIconTintMode +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_updateProfile +androidx.constraintlayout.widget.R$attr: int flow_horizontalAlign +io.reactivex.internal.observers.DeferredScalarDisposable: boolean isEmpty() +com.turingtechnologies.materialscrollbar.R$color: int background_material_light +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorPrimary +com.google.android.material.R$attr: int touchAnchorId +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_icon +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: java.lang.String Unit +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$drawable: int ic_thx +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Subhead +com.google.android.material.R$string: int material_timepicker_select_time +retrofit2.ParameterHandler$RawPart: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_0 +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.disposables.Disposable upstream +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_snackbar_background_corner_radius +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: int Degrees +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UpdateTime +james.adaptiveicon.R$styleable: int DrawerArrowToggle_spinBars +james.adaptiveicon.R$drawable: int abc_ab_share_pack_mtrl_alpha +androidx.recyclerview.R$dimen: int notification_main_column_padding_top +com.google.android.material.slider.Slider: void setTrackTintList(android.content.res.ColorStateList) +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +androidx.constraintlayout.motion.widget.MotionLayout: void setInterpolatedProgress(float) +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void dispose() +wangdaye.com.geometricweather.R$dimen: int mtrl_toolbar_default_height +androidx.appcompat.resources.R$drawable: int notification_bg_low +okhttp3.internal.cache.DiskLruCache: void readJournalLine(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int SearchView_voiceIcon +androidx.coordinatorlayout.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +okhttp3.internal.http2.Http2Stream: void writeHeaders(java.util.List,boolean) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.dynamicanimation.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_dialogType +retrofit2.converter.gson.GsonConverterFactory: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) +androidx.appcompat.R$attr: int fontProviderPackage +androidx.constraintlayout.widget.R$id: int dragRight +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 +com.xw.repo.bubbleseekbar.R$styleable: int[] Toolbar +com.google.android.material.internal.NavigationMenuItemView: void setIcon(android.graphics.drawable.Drawable) +android.didikee.donate.R$drawable: int abc_ic_star_half_black_36dp +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetEndWithActions +james.adaptiveicon.R$attr: int colorAccent +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: void onInactive() +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int consumed +android.didikee.donate.R$styleable: int Toolbar_contentInsetEnd +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_title +com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_backgroundTint +cyanogenmod.weather.WeatherLocation: java.lang.String mState +com.google.android.material.R$style: int Base_Animation_AppCompat_Tooltip +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: int colorId +androidx.viewpager.R$dimen: int notification_media_narrow_margin +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_cancelRequest +androidx.preference.R$styleable: int SwitchPreference_disableDependentsState +wangdaye.com.geometricweather.R$styleable: int Toolbar_collapseIcon +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onWindowFocusChanged(boolean) +wangdaye.com.geometricweather.common.basic.models.weather.Hourly +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialButtonToggleGroup +androidx.constraintlayout.widget.R$attr: int expandActivityOverflowButtonDrawable +cyanogenmod.providers.CMSettings$DiscreteValueValidator: CMSettings$DiscreteValueValidator(java.lang.String[]) +com.google.android.material.R$attr: int buttonBarNegativeButtonStyle +androidx.constraintlayout.widget.R$color: int button_material_light +james.adaptiveicon.R$styleable: int[] AppCompatImageView +okio.SegmentedByteString: okio.ByteString toAsciiUppercase() +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String weatherSource +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_statusBarScrim +okhttp3.OkHttpClient$Builder: OkHttpClient$Builder() +com.google.android.material.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +androidx.coordinatorlayout.R$attr: int fontStyle +okhttp3.internal.tls.CertificateChainCleaner: okhttp3.internal.tls.CertificateChainCleaner get(java.security.cert.X509Certificate[]) +com.google.android.material.R$dimen: int abc_floating_window_z +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: boolean isDisposed() +retrofit2.HttpException: retrofit2.Response response +wangdaye.com.geometricweather.R$styleable: int FlowLayout_lineSpacing +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ListPopupWindow +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: WeatherEntityDao(org.greenrobot.greendao.internal.DaoConfig) +retrofit2.Converter$Factory +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Spinner_Underlined +androidx.swiperefreshlayout.R$dimen: int notification_small_icon_background_padding +androidx.work.impl.WorkDatabase +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX +com.google.android.material.R$styleable: int AppCompatTheme_actionModeCutDrawable +androidx.preference.R$style: int Preference_CheckBoxPreference +androidx.appcompat.widget.AppCompatTextView: void setLastBaselineToBottomHeight(int) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Inverse +com.google.android.material.R$styleable: int Constraint_layout_editor_absoluteY +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_thumb +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_homeLayout +com.google.android.material.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: java.util.List getBrands() +wangdaye.com.geometricweather.R$drawable: int ic_water_percent +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onComplete() +android.didikee.donate.R$bool: R$bool() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextColor +com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$style: int Widget_AppCompat_Spinner_Underlined +okio.Buffer: okio.Buffer write(byte[]) +james.adaptiveicon.R$id: int edit_query +androidx.appcompat.R$styleable: int AppCompatTheme_popupWindowStyle +wangdaye.com.geometricweather.R$string: int settings_title_service_provider +android.didikee.donate.R$attr: int singleChoiceItemLayout +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getDewPoint() +com.jaredrummler.android.colorpicker.R$layout: int notification_action +com.jaredrummler.android.colorpicker.R$color: int material_grey_100 +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox +androidx.viewpager2.R$id: int accessibility_custom_action_17 +com.google.android.material.R$attr: int itemShapeInsetTop +com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_elevation +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableEndCompat +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setId(java.lang.Long) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_material +wangdaye.com.geometricweather.R$layout: int design_bottom_navigation_item +androidx.constraintlayout.widget.R$id: int action_bar_title +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +com.google.android.material.R$styleable: int ProgressIndicator_minHideDelay +com.google.android.material.R$attr: int radioButtonStyle +cyanogenmod.profiles.RingModeSettings: void setValue(java.lang.String) +cyanogenmod.platform.Manifest$permission: java.lang.String PUBLISH_CUSTOM_TILE +android.didikee.donate.R$styleable: int ActivityChooserView_initialActivityCount +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotationX +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_card +wangdaye.com.geometricweather.R$layout: int activity_about +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Body1 +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: io.reactivex.disposables.Disposable upstream +androidx.vectordrawable.R$drawable: int notification_bg_low +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onComplete() +android.didikee.donate.R$attr: int dividerHorizontal +com.xw.repo.bubbleseekbar.R$attr: int navigationIcon +wangdaye.com.geometricweather.R$id: int submenuarrow +com.turingtechnologies.materialscrollbar.R$attr: int iconTintMode +androidx.appcompat.R$style: int Base_Widget_AppCompat_Spinner_Underlined +cyanogenmod.profiles.BrightnessSettings: void writeToParcel(android.os.Parcel,int) +com.google.android.material.R$styleable: int Constraint_android_rotation +com.jaredrummler.android.colorpicker.R$attr: int thumbTextPadding +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatImageView +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_MinWidth_Bridge +androidx.preference.R$styleable: int RecyclerView_spanCount +androidx.work.R$layout: int notification_action_tombstone +androidx.preference.R$id: int accessibility_custom_action_28 +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: io.reactivex.ObservableEmitter serialize() +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setTime(long) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedPath(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: java.lang.String unitAbbreviation +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_0 +wangdaye.com.geometricweather.R$styleable: int[] ChipGroup +wangdaye.com.geometricweather.R$dimen: int design_tab_text_size +io.reactivex.observers.TestObserver$EmptyObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: double Value +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth +wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_maxWidth +okio.BufferedSource: short readShort() +androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_srcCompat +com.google.android.material.R$styleable: int Chip_chipIcon +com.google.android.material.R$id: int italic +wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardSpinner +android.didikee.donate.R$drawable: int abc_btn_check_to_on_mtrl_000 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setAlerts(java.util.List) +androidx.work.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.R$attr: int drawableRightCompat +com.jaredrummler.android.colorpicker.R$style: int Base_V23_Theme_AppCompat +wangdaye.com.geometricweather.R$style: int Preference_Information_Material +retrofit2.Invocation: java.lang.reflect.Method method +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit valueOf(java.lang.String) +wangdaye.com.geometricweather.R$attr: int textColorAlertDialogListItem +cyanogenmod.app.Profile$DozeMode: int ENABLE +com.jaredrummler.android.colorpicker.R$styleable: int Preference_widgetLayout +androidx.appcompat.widget.Toolbar: int getTitleMarginStart() +com.bumptech.glide.R$dimen: int notification_small_icon_size_as_large +androidx.appcompat.R$style: int Widget_AppCompat_ButtonBar +retrofit2.Utils: java.lang.RuntimeException methodError(java.lang.reflect.Method,java.lang.Throwable,java.lang.String,java.lang.Object[]) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabText +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory valueOf(java.lang.String) +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit MMHG +okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE_TEMP +okhttp3.Cache$CacheRequestImpl +okhttp3.internal.io.FileSystem$1: long size(java.io.File) +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endX +cyanogenmod.externalviews.KeyguardExternalView: void onDetachedFromWindow() +cyanogenmod.profiles.StreamSettings$1: java.lang.Object[] newArray(int) +androidx.preference.R$drawable: int tooltip_frame_light +androidx.appcompat.R$bool: int abc_action_bar_embed_tabs +com.google.android.material.circularreveal.CircularRevealLinearLayout: int getCircularRevealScrimColor() +androidx.preference.R$bool: int config_materialPreferenceIconSpaceReserved +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_l +com.jaredrummler.android.colorpicker.R$dimen: int compat_button_inset_vertical_material +okhttp3.internal.Util: Util() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart +wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_background_color +com.google.android.material.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$id: int mini +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemPosition(int) +com.xw.repo.bubbleseekbar.R$attr: int homeAsUpIndicator +androidx.appcompat.R$style: int Base_Widget_AppCompat_TextView +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getFormattedId() +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_text +com.google.android.material.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: HourlyEntityDao$Properties() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_toolbarStyle +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) android.support.v4.graphics.drawable.IconCompatParcelizer: androidx.core.graphics.drawable.IconCompat read(androidx.versionedparcelable.VersionedParcel) -wangdaye.com.geometricweather.R$id: int SHOW_ALL -wangdaye.com.geometricweather.R$styleable: int Chip_chipMinHeight -okhttp3.internal.connection.RouteDatabase: void connected(okhttp3.Route) -retrofit2.ParameterHandler$RelativeUrl -cyanogenmod.providers.CMSettings$Secure: java.lang.String POWER_MENU_ACTIONS -wangdaye.com.geometricweather.R$style: int Theme_Design_BottomSheetDialog -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void dispose() -androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableCompat -com.google.android.material.R$attr: int navigationContentDescription -wangdaye.com.geometricweather.R$layout: int item_line -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onBouncerShowing(boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int RainProbability -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextStyle -io.reactivex.internal.observers.BasicIntQueueDisposable: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog -okhttp3.ConnectionSpec: java.lang.String[] tlsVersions -com.xw.repo.bubbleseekbar.R$attr: int radioButtonStyle -androidx.legacy.coreutils.R$id: int line3 -androidx.preference.R$attr: int actionBarTabTextStyle -james.adaptiveicon.R$attr: int preserveIconSpacing -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_material_dark -androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context,android.util.AttributeSet) -androidx.recyclerview.widget.RecyclerView: java.lang.CharSequence getAccessibilityClassName() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_deriveConstraintsFrom -com.google.gson.stream.JsonReader: void beginObject() -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_DropDown -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$attr: int strokeWidth -wangdaye.com.geometricweather.R$color: int lightPrimary_1 -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderAuthority -androidx.preference.R$style: int Preference_PreferenceScreen_Material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: java.lang.String Unit -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_android_textAppearance -retrofit2.OkHttpCall$NoContentResponseBody: okio.BufferedSource source() -cyanogenmod.providers.CMSettings$System: float getFloat(android.content.ContentResolver,java.lang.String,float) -androidx.appcompat.R$styleable: int TextAppearance_textLocale -androidx.hilt.R$dimen -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_ttcIndex -cyanogenmod.providers.CMSettings$Global: long getLong(android.content.ContentResolver,java.lang.String,long) -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_BLUE_INDEX -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: AccuCurrentResult$Past24HourTemperatureDeparture$Metric() -androidx.preference.R$color: int abc_primary_text_material_dark -androidx.loader.R$dimen: int notification_large_icon_width -androidx.appcompat.R$attr: int imageButtonStyle -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemTextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: int UnitType -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarButtonStyle -wangdaye.com.geometricweather.R$color: int androidx_core_ripple_material_light -com.google.android.material.R$id: int notification_main_column_container -okhttp3.Dispatcher: java.util.List runningCalls() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_overflow_padding_end_material -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: long StartEpochDateTime -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed -androidx.coordinatorlayout.R$styleable: int ColorStateListItem_android_color -com.google.android.material.R$attr: int fontWeight -wangdaye.com.geometricweather.R$attr: int expandedTitleMarginEnd -androidx.recyclerview.widget.RecyclerView$LayoutManager$Properties -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.appcompat.R$color: int primary_material_dark -com.github.rahatarmanahmed.cpv.CircularProgressView: void onAttachedToWindow() -androidx.preference.R$drawable: int abc_btn_check_material_anim -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -androidx.fragment.R$styleable: int[] FragmentContainerView -okio.BufferedSource: java.lang.String readUtf8LineStrict() -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Title -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function7) -com.xw.repo.bubbleseekbar.R$styleable: int[] GradientColor -androidx.hilt.R$styleable: int ColorStateListItem_alpha -okhttp3.internal.Util: java.net.InetAddress decodeIpv6(java.lang.String,int,int) -okio.Buffer: boolean exhausted() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvDescription(java.lang.String) -wangdaye.com.geometricweather.R$attr: int listLayout -com.google.android.material.R$attr: int dialogPreferredPadding -com.google.android.material.progressindicator.ProgressIndicator: int getCircularInset() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_z -androidx.cardview.R$color: R$color() -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,io.reactivex.functions.Function) -cyanogenmod.externalviews.KeyguardExternalView$9: cyanogenmod.externalviews.KeyguardExternalView this$0 -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMarkTint -wangdaye.com.geometricweather.R$layout: int item_about_library -wangdaye.com.geometricweather.R$string: int feedback_location_permissions_title -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setAqiIndex(java.lang.Integer) -com.google.android.material.R$styleable: int TextAppearance_android_textColorHint -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date updateDate -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderTitle -androidx.preference.R$styleable: int MenuItem_android_menuCategory -okhttp3.internal.http2.Http2Reader: okhttp3.internal.http2.Hpack$Reader hpackReader -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldIndex(java.lang.Integer) -androidx.appcompat.R$styleable: int[] Spinner -okhttp3.internal.ws.RealWebSocket$2: void onFailure(okhttp3.Call,java.io.IOException) -wangdaye.com.geometricweather.R$dimen: int mtrl_progress_indicator_full_rounded_corner_radius -androidx.appcompat.R$id: int accessibility_custom_action_10 -androidx.appcompat.R$styleable: int ActionBar_contentInsetEnd -androidx.preference.R$style: int Widget_AppCompat_ListView_Menu -com.google.android.material.bottomappbar.BottomAppBar: android.content.res.ColorStateList getBackgroundTint() -androidx.vectordrawable.R$dimen: int notification_small_icon_size_as_large -androidx.recyclerview.widget.RecyclerView: int getScrollState() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListPopupWindow -androidx.hilt.work.R$id: int accessibility_custom_action_14 -okhttp3.Response: boolean isRedirect() -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver parent -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UpdateTime -com.google.android.material.R$styleable: int ConstraintSet_pivotAnchor -android.didikee.donate.R$style: int Widget_AppCompat_Light_ListPopupWindow -okhttp3.RequestBody$2: okhttp3.MediaType val$contentType -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListPopupWindow -okhttp3.Challenge: boolean equals(java.lang.Object) -android.didikee.donate.R$styleable: int AppCompatTheme_dialogCornerRadius -android.didikee.donate.R$attr: int contentInsetRight -wangdaye.com.geometricweather.db.entities.LocationEntity -com.google.gson.FieldNamingPolicy: java.lang.String translateName(java.lang.reflect.Field) -androidx.cardview.R$style: int CardView -androidx.loader.R$styleable: int GradientColor_android_startColor -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableBottom +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginBottom +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_headline_material +androidx.core.R$drawable: int notify_panel_notification_icon_bg +com.google.android.material.R$string: int material_hour_selection +okhttp3.HttpUrl$Builder: int schemeDelimiterOffset(java.lang.String,int,int) +androidx.preference.R$id: int info +wangdaye.com.geometricweather.R$string: int transition_activity_search_bar +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_motionProgress +androidx.lifecycle.SavedStateHandle: java.util.Set keys() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX +com.google.android.material.R$layout: int material_clock_display_divider +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_text_padding_left +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +androidx.loader.R$id: int right_side +androidx.appcompat.R$styleable: int MenuGroup_android_id +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonPhaseDescription(java.lang.String) +androidx.hilt.work.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: AccuCurrentResult$Wind() +james.adaptiveicon.R$styleable: int AppCompatTheme_windowMinWidthMajor +wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_default_alpha +androidx.appcompat.R$drawable: R$drawable() +android.didikee.donate.R$attr: int panelMenuListWidth +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_horizontal_material +okhttp3.Response: okhttp3.CacheControl cacheControl() +androidx.appcompat.R$styleable: int AppCompatTextView_drawableBottomCompat +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_toBottomOf +retrofit2.HttpException: int code +wangdaye.com.geometricweather.R$attr: int circularInset +wangdaye.com.geometricweather.R$attr: int textAppearanceSearchResultSubtitle +com.google.android.material.R$style: int Base_TextAppearance_AppCompat +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.Object clone() +androidx.preference.R$style: int Theme_AppCompat_Dialog +androidx.legacy.coreutils.R$attr +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.Date pubTime +androidx.constraintlayout.widget.R$color: int secondary_text_disabled_material_light +retrofit2.ParameterHandler$2 +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection connection() +com.bumptech.glide.load.HttpException: int getStatusCode() +androidx.core.app.ComponentActivity: ComponentActivity() +com.google.android.material.R$styleable: int KeyCycle_transitionEasing +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarStyle +android.didikee.donate.R$styleable: int[] AppCompatImageView +okhttp3.internal.http2.Http2Connection: boolean client +androidx.constraintlayout.widget.R$string: int abc_menu_sym_shortcut_label +com.google.android.material.R$styleable: int KeyCycle_waveShape +androidx.constraintlayout.utils.widget.ImageFilterView: float getSaturation() +androidx.customview.R$dimen: int notification_media_narrow_margin +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Inverse +wangdaye.com.geometricweather.R$color: R$color() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow6h +androidx.preference.R$styleable: int Preference_android_defaultValue +wangdaye.com.geometricweather.R$layout: int item_weather_daily_line +com.google.android.material.R$attr: int dividerVertical +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_width_overflow_material +com.google.android.material.R$attr: int ttcIndex +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.String dailyWeatherDescription +com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_simple_overlay_action_mode +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_android_windowAnimationStyle +androidx.preference.R$style: int Theme_AppCompat_DayNight_DarkActionBar +androidx.dynamicanimation.R$style: R$style() +okhttp3.internal.cache.DiskLruCache$Editor: boolean done +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Medium +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getGrassIndex() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setDistrict(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +cyanogenmod.weather.CMWeatherManager$1$1: cyanogenmod.weather.CMWeatherManager$1 this$1 +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: ChineseCityEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_font +androidx.preference.R$styleable: int MenuItem_android_titleCondensed +cyanogenmod.weather.ICMWeatherManager: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) +okhttp3.RequestBody$1 +com.bumptech.glide.Priority: com.bumptech.glide.Priority IMMEDIATE +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String moldDescription +com.google.android.material.R$attr: int theme +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow24h +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String co +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: java.lang.String toString() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_117 +okhttp3.internal.io.FileSystem$1: okio.Sink appendingSink(java.io.File) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FREEZING_RAIN +james.adaptiveicon.R$attr: int alpha +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar +androidx.work.impl.WorkDatabase_Impl +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int ISOLATED_THUNDERSTORMS +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +com.google.android.material.datepicker.MaterialCalendar +androidx.activity.ComponentActivity$3 +okhttp3.internal.cache.DiskLruCache: java.util.LinkedHashMap lruEntries +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerX +james.adaptiveicon.R$styleable: int ActionMode_height +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableBottom +james.adaptiveicon.R$color: int primary_dark_material_dark +wangdaye.com.geometricweather.R$string: int key_item_animation_switch +retrofit2.Platform: java.lang.reflect.Constructor lookupConstructor +androidx.swiperefreshlayout.R$id: int notification_main_column +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean getHumidity() +androidx.appcompat.widget.SwitchCompat: int getThumbTextPadding() +wangdaye.com.geometricweather.R$color: int abc_tint_switch_track +io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper valueOf(java.lang.String) +io.reactivex.internal.util.VolatileSizeArrayList: int indexOf(java.lang.Object) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean isDisposed() +androidx.lifecycle.LiveData: java.lang.Object getValue() +com.jaredrummler.android.colorpicker.R$dimen: int abc_control_inset_material +androidx.appcompat.R$dimen: int tooltip_vertical_padding +cyanogenmod.app.IProfileManager$Stub +androidx.appcompat.R$attr: int titleMargin +com.google.android.material.R$attr: int hideOnContentScroll +wangdaye.com.geometricweather.R$attr: int thumbTint +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_creator +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_touch_to_seek +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotationX +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_SYNC +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: int capacityHint +androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context) +okio.GzipSource: void close() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String icon +android.didikee.donate.R$dimen: int abc_text_size_body_1_material +androidx.customview.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$styleable: int OnClick_targetId +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String direction +com.google.gson.JsonIOException: JsonIOException(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void cancelSources() +com.bumptech.glide.R$styleable: int ColorStateListItem_alpha +cyanogenmod.weather.WeatherLocation$Builder +com.google.gson.FieldNamingPolicy: java.lang.String upperCaseFirstLetter(java.lang.String) +androidx.lifecycle.Transformations$2$1: Transformations$2$1(androidx.lifecycle.Transformations$2) +cyanogenmod.app.Profile: cyanogenmod.profiles.ConnectionSettings getSettingsForConnection(int) +com.github.rahatarmanahmed.cpv.R$attr: int cpv_thickness +androidx.constraintlayout.widget.R$attr: int nestedScrollFlags +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void access$700(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: int UnitType +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_trackTint +wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog +androidx.activity.R$id: int forever +wangdaye.com.geometricweather.R$styleable: int[] ConstraintLayout_Layout +com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat james.adaptiveicon.R$dimen: int abc_text_size_title_material -com.turingtechnologies.materialscrollbar.R$color: int design_bottom_navigation_shadow_color -com.jaredrummler.android.colorpicker.R$attr: int actionProviderClass -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COMPONENT_ID -androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getNo2Desc() -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_hideMotionSpec -androidx.coordinatorlayout.R$id: int tag_accessibility_heading -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorTextAppearance -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchTouchEvent(android.view.MotionEvent) -io.reactivex.internal.observers.BasicIntQueueDisposable: int requestFusion(int) -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode SUPPRESS -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar -james.adaptiveicon.R$color: int abc_btn_colored_borderless_text_material -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void onChanged(java.lang.Object) -wangdaye.com.geometricweather.R$id: int navigation_header_container -com.google.android.material.bottomnavigation.BottomNavigationView: void setLabelVisibilityMode(int) -okhttp3.Address: okhttp3.Authenticator proxyAuthenticator -android.didikee.donate.R$styleable: int ActionBar_elevation -android.didikee.donate.R$attr: int windowFixedHeightMinor -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontStyle -com.google.android.material.tabs.TabLayout$TabView: void setSelected(boolean) -androidx.lifecycle.SavedStateHandle: java.util.Map mLiveDatas -okhttp3.internal.Util: java.util.concurrent.ThreadFactory threadFactory(java.lang.String,boolean) +io.reactivex.internal.util.HashMapSupplier: java.lang.Object call() +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Insert +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_popupTheme +androidx.preference.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +androidx.constraintlayout.widget.R$id: int textSpacerNoTitle +okio.RealBufferedSink$1: okio.RealBufferedSink this$0 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction +okhttp3.internal.http2.Http2Codec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String x +wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newDevSession(android.content.Context,java.lang.String) +androidx.hilt.work.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.R$drawable: int ic_uv +androidx.loader.content.Loader: void registerOnLoadCanceledListener(androidx.loader.content.Loader$OnLoadCanceledListener) +wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_xml +com.xw.repo.bubbleseekbar.R$attr: int colorControlActivated +android.didikee.donate.R$drawable: int abc_ratingbar_indicator_material +wangdaye.com.geometricweather.search.Hilt_SearchActivity: Hilt_SearchActivity() +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_CANCEL_REQUEST +com.google.android.material.R$styleable: int Layout_minWidth +com.google.android.material.slider.Slider: float getStepSize() +androidx.preference.R$dimen: int abc_text_size_small_material +android.didikee.donate.R$layout: int abc_search_view +cyanogenmod.providers.CMSettings$1 +okio.GzipSink: java.util.zip.Deflater deflater() +androidx.preference.R$dimen: int abc_text_size_display_4_material +wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_xml +james.adaptiveicon.R$id: int up +wangdaye.com.geometricweather.R$drawable: int abc_switch_track_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$color: int primary_dark_material_dark +james.adaptiveicon.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf +androidx.lifecycle.extensions.R$color: int secondary_text_default_material_light +androidx.fragment.app.FragmentManager: void removeOnBackStackChangedListener(androidx.fragment.app.FragmentManager$OnBackStackChangedListener) +androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontStyle +androidx.preference.R$attr: int colorButtonNormal +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: java.lang.Object value +com.bumptech.glide.R$drawable: R$drawable() +androidx.hilt.R$id: int accessibility_custom_action_23 +androidx.preference.R$dimen: int abc_disabled_alpha_material_dark +android.didikee.donate.R$styleable: int[] PopupWindowBackgroundState +androidx.constraintlayout.widget.R$attr: int trackTint +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDefaultSmsSub(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: java.lang.String Unit +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.WeatherEntity) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary PrecipitationSummary +wangdaye.com.geometricweather.R$string: int settings_summary_background_free_off +android.didikee.donate.R$integer: int cancel_button_image_alpha +cyanogenmod.profiles.StreamSettings: void setOverride(boolean) +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getNumGammaControls() +wangdaye.com.geometricweather.background.polling.work.worker.AsyncWorker: AsyncWorker(android.content.Context,androidx.work.WorkerParameters) +com.google.android.material.R$color: int ripple_material_dark +okhttp3.internal.Internal: java.net.Socket deduplicate(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float o3 +org.greenrobot.greendao.AbstractDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +com.google.android.material.R$color: int background_floating_material_light +androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context) +com.google.android.material.R$dimen: int mtrl_calendar_year_corner +wangdaye.com.geometricweather.R$string: int settings_title_forecast_tomorrow +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_collapseNotificationPanel_2 +wangdaye.com.geometricweather.R$id: int accelerate +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_min +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd +androidx.vectordrawable.R$id: int icon_group +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_keyline +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: CNWeatherResult$Pm25() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +androidx.preference.R$anim: int abc_slide_in_bottom +android.didikee.donate.R$attr: int drawableSize +androidx.appcompat.resources.R$id +com.turingtechnologies.materialscrollbar.R$layout: int support_simple_spinner_dropdown_item +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: void setType(java.lang.String) +androidx.appcompat.resources.R$id: R$id() +com.turingtechnologies.materialscrollbar.R$attr: int alertDialogTheme +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_APP_SWITCH_ACTION +androidx.lifecycle.LifecycleRegistry: boolean isSynced() +androidx.appcompat.widget.SearchView$SearchAutoComplete: void setImeVisibility(boolean) +wangdaye.com.geometricweather.R$drawable: int notif_temp_27 +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ListPopupWindow +wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$integer: int status_bar_notification_info_maxnum +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardPreventCornerOverlap +com.turingtechnologies.materialscrollbar.R$styleable: int RecycleListView_paddingTopNoTitle +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintEnd_toStartOf +wangdaye.com.geometricweather.R$color: int design_fab_stroke_top_inner_color +com.google.android.material.R$styleable: int AppCompatTheme_dialogCornerRadius +cyanogenmod.weather.WeatherLocation: java.lang.String access$602(cyanogenmod.weather.WeatherLocation,java.lang.String) +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getErrorContentDescription() +com.google.android.material.R$attr: int arrowShaftLength +cyanogenmod.app.ICMStatusBarManager: void registerListener(cyanogenmod.app.ICustomTileListener,android.content.ComponentName,int) +cyanogenmod.app.CustomTile$1: CustomTile$1() +androidx.legacy.coreutils.R$id: int text +android.didikee.donate.R$attr: int textAppearanceSearchResultSubtitle +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: void onResponse(retrofit2.Call,retrofit2.Response) +retrofit2.Response: retrofit2.Response success(java.lang.Object) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SearchView +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderDivider +androidx.activity.R$styleable: int FontFamily_fontProviderQuery +cyanogenmod.externalviews.KeyguardExternalView: android.content.ServiceConnection access$500(cyanogenmod.externalviews.KeyguardExternalView) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.UV uv +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit[] values() +io.reactivex.Observable: io.reactivex.Single all(io.reactivex.functions.Predicate) +wangdaye.com.geometricweather.R$array: int duration_units +wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_ripple_color +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_14 +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit valueOf(java.lang.String) +androidx.appcompat.R$color: int abc_background_cache_hint_selector_material_light +com.google.android.material.slider.RangeSlider: float getThumbStrokeWidth() +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_light +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatElevation(float) +okhttp3.Interceptor +com.jaredrummler.android.colorpicker.R$attr: int windowMinWidthMajor +wangdaye.com.geometricweather.R$attr: int msb_lightOnTouch +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontWeight +com.turingtechnologies.materialscrollbar.R$attr: int fabCustomSize +cyanogenmod.os.Concierge: cyanogenmod.os.Concierge$ParcelInfo prepareParcel(android.os.Parcel) +androidx.appcompat.widget.LinearLayoutCompat: int getVirtualChildCount() +com.turingtechnologies.materialscrollbar.R$color: int notification_icon_bg_color +androidx.core.R$id: int accessibility_custom_action_2 +com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_text_size_2line +com.jaredrummler.android.colorpicker.R$id: int cpv_preference_preview_color_panel +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_width +com.google.android.material.R$styleable: int SnackbarLayout_actionTextColorAlpha +cyanogenmod.weather.IRequestInfoListener$Stub: IRequestInfoListener$Stub() +androidx.constraintlayout.widget.R$attr: int buttonIconDimen +com.google.android.material.R$dimen: int mtrl_calendar_text_input_padding_top +androidx.preference.R$styleable: int AppCompatTheme_spinnerStyle +androidx.swiperefreshlayout.R$styleable: int[] ColorStateListItem +androidx.appcompat.widget.AppCompatAutoCompleteTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +okhttp3.EventListener: void connectEnd(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol) +okhttp3.internal.http2.Http2Writer: okio.BufferedSink sink +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +androidx.preference.R$attr: int titleTextAppearance +androidx.preference.R$styleable: int MenuView_preserveIconSpacing +okio.RealBufferedSink$1: RealBufferedSink$1(okio.RealBufferedSink) +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer relativeHumidity +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathStart() +wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_android_maxWidth +androidx.vectordrawable.R$id: int tag_transition_group +com.google.android.material.R$attr: int listChoiceIndicatorMultipleAnimated +androidx.fragment.R$id: int accessibility_custom_action_4 +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_OVERLAYS +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTintMode +okhttp3.CertificatePinner: int hashCode() +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy +androidx.preference.R$dimen: int abc_dialog_min_width_major +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: io.reactivex.disposables.Disposable upstream +androidx.cardview.R$styleable: int CardView_contentPaddingRight +com.google.android.material.button.MaterialButton: void setChecked(boolean) +com.turingtechnologies.materialscrollbar.R$string: int abc_search_hint +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_NoActionBar +wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_day +com.jaredrummler.android.colorpicker.R$id: int home +androidx.viewpager2.R$color: int notification_icon_bg_color +androidx.swiperefreshlayout.R$drawable: int notification_template_icon_bg +androidx.preference.R$styleable: int Preference_widgetLayout +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: int UnitType +androidx.appcompat.R$id: int accessibility_custom_action_24 +androidx.constraintlayout.widget.R$attr: int arcMode +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer getDbz() +com.google.android.material.R$attr: int layout_constraintGuide_begin +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_PopupMenu +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType valueOf(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeCloudCover(java.lang.Integer) +wangdaye.com.geometricweather.R$string: int status_bar_notification_info_overflow +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar +androidx.recyclerview.R$id: int accessibility_custom_action_30 +cyanogenmod.app.Profile: java.util.ArrayList mSecondaryUuids +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: boolean isDisposed() +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_CIRCLE +james.adaptiveicon.R$styleable: int RecycleListView_paddingBottomNoButtons +wangdaye.com.geometricweather.R$styleable: int MenuView_android_horizontalDivider +androidx.preference.R$attr: int checkedTextViewStyle +okhttp3.Dispatcher: void enqueue(okhttp3.RealCall$AsyncCall) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +cyanogenmod.weather.CMWeatherManager$2$2: int val$status +androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMarkTintMode +com.google.android.material.circularreveal.CircularRevealRelativeLayout: int getCircularRevealScrimColor() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicReference actual +okhttp3.internal.ws.WebSocketReader: void readHeader() +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +wangdaye.com.geometricweather.R$string: int settings_title_unit +android.didikee.donate.R$dimen: int abc_button_padding_vertical_material +okio.SegmentedByteString: java.lang.Object writeReplace() +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getWindChillTemperature() +james.adaptiveicon.R$id: int chronometer +okhttp3.ResponseBody$BomAwareReader: int read(char[],int,int) +androidx.appcompat.widget.AppCompatCheckBox: android.content.res.ColorStateList getSupportBackgroundTintList() +com.jaredrummler.android.colorpicker.R$layout: int cpv_dialog_color_picker +com.xw.repo.bubbleseekbar.R$color: int primary_dark_material_dark +wangdaye.com.geometricweather.R$color: int mtrl_outlined_icon_tint +android.didikee.donate.R$id: int notification_main_column +com.google.gson.stream.JsonWriter: boolean getSerializeNulls() +androidx.constraintlayout.widget.R$styleable: int SearchView_iconifiedByDefault +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver +cyanogenmod.providers.CMSettings$Secure: java.lang.String POWER_MENU_ACTIONS +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat +wangdaye.com.geometricweather.R$attr: int thumbTextPadding +com.jaredrummler.android.colorpicker.R$attr: int contentInsetStartWithNavigation +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRealFeelTemperature(java.lang.Integer) +androidx.appcompat.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +androidx.loader.R$styleable: int GradientColor_android_centerX +androidx.appcompat.R$color: int material_deep_teal_200 +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$array: int temperature_units +androidx.hilt.work.R$id: int accessibility_custom_action_28 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String getUnit() +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_numericShortcut +com.google.android.material.R$styleable: int KeyAttribute_framePosition +androidx.customview.R$integer +com.google.android.material.R$color: int design_default_color_background +com.jaredrummler.android.colorpicker.R$color: int primary_dark_material_light +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +wangdaye.com.geometricweather.R$attr: int dotGap +wangdaye.com.geometricweather.R$dimen: int design_navigation_item_icon_padding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String weatherEnd +okhttp3.internal.cache.DiskLruCache$Editor: okio.Source newSource(int) +retrofit2.RequestBuilder: okhttp3.FormBody$Builder formBuilder +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_chainStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dividerHorizontal +io.reactivex.internal.queue.SpscArrayQueue: int lookAheadStep +androidx.lifecycle.extensions.R$drawable: int notification_bg_low +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean disposed +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder cookieJar(okhttp3.CookieJar) +android.support.v4.os.ResultReceiver$1: android.support.v4.os.ResultReceiver[] newArray(int) +wangdaye.com.geometricweather.R$id: int widget_clock_day_title +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$id: int action_bar_root +james.adaptiveicon.R$styleable: int FontFamily_fontProviderFetchTimeout +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxPlain +androidx.appcompat.R$attr: int listPreferredItemPaddingStart +androidx.appcompat.R$drawable: int abc_cab_background_internal_bg +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int aqi +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SLOVENIAN +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial Imperial +androidx.core.R$styleable: int GradientColor_android_centerX +android.didikee.donate.R$attr: int dropDownListViewStyle +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onComplete() +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.R$string: int key_ui_style +androidx.hilt.R$styleable: int FontFamilyFont_ttcIndex +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedWidthMajor +cyanogenmod.app.CustomTile$ExpandedItem: android.graphics.Bitmap itemBitmapResource +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType USER_REQUEST +wangdaye.com.geometricweather.R$color: int abc_tint_btn_checkable +wangdaye.com.geometricweather.R$string: int key_weather_source +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +com.google.gson.FieldNamingPolicy$5 +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +androidx.preference.R$dimen: int highlight_alpha_material_dark +androidx.vectordrawable.animated.R$dimen: int notification_top_pad_large_text +androidx.appcompat.R$styleable: int[] MenuItem +retrofit2.Utils: java.lang.reflect.Type getGenericSupertype(java.lang.reflect.Type,java.lang.Class,java.lang.Class) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.internal.util.AtomicThrowable errors +androidx.coordinatorlayout.R$styleable: int[] GradientColorItem +com.google.android.material.R$id: int parent_matrix +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.google.android.material.R$color: int mtrl_filled_stroke_color +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_normal_material_light +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Body2 +androidx.hilt.R$id: int action_text +cyanogenmod.app.ICustomTileListener$Stub: cyanogenmod.app.ICustomTileListener asInterface(android.os.IBinder) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display2 +okio.ForwardingTimeout: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) +com.google.android.material.R$id: int accessibility_custom_action_29 +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.appcompat.resources.R$drawable: int notification_bg_low_normal +androidx.appcompat.widget.AppCompatTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +wangdaye.com.geometricweather.R$color: int material_grey_900 +com.google.android.material.R$id: int largeLabel +cyanogenmod.alarmclock.ClockContract$CitiesColumns: android.net.Uri CONTENT_URI +androidx.appcompat.widget.LinearLayoutCompat: android.graphics.drawable.Drawable getDividerDrawable() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: FlowableOnBackpressureDrop$BackpressureDropSubscriber(org.reactivestreams.Subscriber,io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button +cyanogenmod.app.ProfileManager: ProfileManager(android.content.Context) +android.didikee.donate.R$id: int tabMode +com.google.android.material.R$attr: int layout_constraintHorizontal_chainStyle +okhttp3.Address: javax.net.SocketFactory socketFactory() +okhttp3.Cache$CacheRequestImpl: okio.Sink body() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +android.didikee.donate.R$styleable: int ButtonBarLayout_allowStacking +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: int getStatus() +wangdaye.com.geometricweather.R$id: int barrier androidx.appcompat.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -com.jaredrummler.android.colorpicker.R$styleable: int PopupWindowBackgroundState_state_above_anchor -wangdaye.com.geometricweather.R$drawable: int ic_star -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Subhead -com.bumptech.glide.Registry$NoResultEncoderAvailableException -com.google.android.material.slider.Slider: float getStepSize() -wangdaye.com.geometricweather.R$attr: int chipMinTouchTargetSize -com.google.android.material.R$styleable: int GradientColor_android_type -com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored -com.xw.repo.BubbleSeekBar: void setOnProgressChangedListener(com.xw.repo.BubbleSeekBar$OnProgressChangedListener) -androidx.appcompat.widget.ActionBarOverlayLayout: void setOverlayMode(boolean) -okhttp3.Headers: java.util.List values(java.lang.String) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver inner -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -com.turingtechnologies.materialscrollbar.R$dimen -wangdaye.com.geometricweather.R$color: int radiobutton_themeable_attribute_color -androidx.appcompat.view.menu.ListMenuItemView: void setForceShowIcon(boolean) -wangdaye.com.geometricweather.R$drawable: int btn_radio_off_to_on_mtrl_animation -cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(android.os.Parcel) -com.xw.repo.bubbleseekbar.R$attr: int keylines -okhttp3.internal.platform.Platform: byte[] concatLengthPrefixed(java.util.List) -io.reactivex.Observable: io.reactivex.Observable mergeArrayDelayError(int,int,io.reactivex.ObservableSource[]) -androidx.drawerlayout.R$id: int notification_main_column_container -androidx.appcompat.widget.FitWindowsLinearLayout: FitWindowsLinearLayout(android.content.Context,android.util.AttributeSet) -androidx.lifecycle.extensions.R$color: int ripple_material_light -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY -androidx.appcompat.R$drawable: int abc_edit_text_material -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void dispose() -wangdaye.com.geometricweather.common.basic.models.weather.Alert: long alertId -com.google.android.material.R$style: int Widget_MaterialComponents_BottomSheet -wangdaye.com.geometricweather.R$id: int widget_week_temp_4 -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runBackfused() -androidx.viewpager.widget.ViewPager: ViewPager(android.content.Context) -androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyle -android.didikee.donate.R$id: int textSpacerNoTitle -androidx.activity.R$styleable: int[] FontFamily -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_stroke_width_focused -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -androidx.hilt.work.R$styleable: int[] GradientColor -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_11 -wangdaye.com.geometricweather.common.basic.models.weather.Astro: Astro(java.util.Date,java.util.Date) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_toTopOf -wangdaye.com.geometricweather.R$color: int mtrl_filled_background_color -wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -androidx.lifecycle.extensions.R$drawable: int notification_bg_normal -okhttp3.Dns$1: Dns$1() -wangdaye.com.geometricweather.db.entities.DaoMaster: DaoMaster(org.greenrobot.greendao.database.Database) -androidx.appcompat.widget.SearchView: void setSearchableInfo(android.app.SearchableInfo) -androidx.hilt.R$id: int accessibility_custom_action_6 -retrofit2.converter.gson.GsonConverterFactory: retrofit2.converter.gson.GsonConverterFactory create(com.google.gson.Gson) -wangdaye.com.geometricweather.R$string: int settings_category_basic -com.bumptech.glide.R$dimen: int compat_button_padding_vertical_material -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintStart_toStartOf -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer rainHazard6h -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getPrefixTextColor() -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$attr: int actionBarTheme -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String Type -com.xw.repo.bubbleseekbar.R$dimen: int notification_action_text_size -androidx.appcompat.widget.LinearLayoutCompat: float getWeightSum() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime realtime -com.jaredrummler.android.colorpicker.R$id: int action_mode_bar_stub -com.google.android.material.chip.ChipGroup: void setFlexWrap(int) -com.xw.repo.bubbleseekbar.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -com.google.gson.stream.JsonWriter: boolean htmlSafe -okhttp3.OkHttpClient: int readTimeout -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitationProbability() -androidx.activity.R$id: int accessibility_custom_action_30 -okhttp3.internal.ws.WebSocketWriter: void writeControlFrame(int,okio.ByteString) -wangdaye.com.geometricweather.R$styleable: int ListPreference_android_entryValues -androidx.transition.R$layout: int notification_action_tombstone -androidx.preference.R$id: int blocking -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_overflow_padding_start_material -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.concurrent.atomic.AtomicInteger active -wangdaye.com.geometricweather.R$animator: int weather_thunder_2 -androidx.activity.R$integer: R$integer() -cyanogenmod.app.CustomTile$Builder: android.content.Context mContext -wangdaye.com.geometricweather.R$drawable: int abc_seekbar_thumb_material -androidx.transition.R$styleable: R$styleable() -androidx.lifecycle.MutableLiveData: void postValue(java.lang.Object) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void refresh() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: void requestLocation(android.content.Context,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) -okhttp3.internal.connection.ConnectInterceptor: ConnectInterceptor(okhttp3.OkHttpClient) -com.google.android.material.R$dimen: int mtrl_slider_thumb_radius -com.turingtechnologies.materialscrollbar.R$color: int secondary_text_disabled_material_light +androidx.appcompat.R$string: int abc_shareactionprovider_share_with +com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_android_entryValues +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_overflow_padding_end_material +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_subtitleTextStyle +okhttp3.internal.http1.Http1Codec$AbstractSource: okio.ForwardingTimeout timeout +androidx.appcompat.widget.Toolbar: android.content.Context getPopupContext() +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_collapsed +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.util.List getIndices() +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.PushObserver pushObserver +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_textAppearance +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int PrecipitationProbability +androidx.preference.R$attr: int windowMinWidthMinor +com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusTopStart +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type BASELINE +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart +com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_padding_vertical_material +com.google.gson.JsonParseException: JsonParseException(java.lang.String) +com.xw.repo.bubbleseekbar.R$id: int action_image +cyanogenmod.profiles.BrightnessSettings: int describeContents() +wangdaye.com.geometricweather.R$drawable: int notif_temp_82 +com.google.android.material.R$dimen: int mtrl_btn_hovered_z +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_AutoCompleteTextView +com.google.android.material.R$color: int mtrl_chip_text_color +wangdaye.com.geometricweather.R$style: int Platform_Widget_AppCompat_Spinner +okhttp3.internal.Util: okhttp3.Headers toHeaders(java.util.List) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWindLevel +com.google.android.material.R$styleable: int AppCompatTheme_tooltipFrameBackground +com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingRight +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: AccuMinuteResult$IntervalsBean() +okhttp3.internal.http2.Http2Stream: boolean isLocallyInitiated() +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_popupBackground +androidx.work.R$styleable: int FontFamily_fontProviderAuthority +androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int pm25 +com.turingtechnologies.materialscrollbar.R$color: int button_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderTextAppearance +android.didikee.donate.R$attr: int homeAsUpIndicator +androidx.constraintlayout.widget.R$attr: int popupMenuStyle +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: ObservableFlatMap$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver,long) +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontStyle +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String INSTALL_STATE +androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.Lifecycle mLifecycle +androidx.vectordrawable.animated.R$dimen: int compat_button_padding_vertical_material +cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_PROFILES +com.jaredrummler.android.colorpicker.R$attr: int actionBarTheme +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_borderless_material +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode valueOf(java.lang.String) +com.google.android.material.R$styleable: int Toolbar_logo +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_7 +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalGap +com.google.android.material.slider.Slider: android.content.res.ColorStateList getThumbTintList() +cyanogenmod.providers.CMSettings$System: java.lang.String SWAP_VOLUME_KEYS_ON_ROTATION +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motion_triggerOnCollision +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ImageButton +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabTextStyle +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.Observer downstream +com.google.android.material.R$dimen: int mtrl_slider_track_side_padding +com.google.android.material.R$styleable: int[] SwitchMaterial +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display3 +androidx.lifecycle.R: R() +androidx.work.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: double Value +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Switch +com.github.rahatarmanahmed.cpv.CircularProgressView: float actualProgress +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer altitude +com.xw.repo.bubbleseekbar.R$id: int topPanel +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setCurrentIndicatorColor(int) +com.xw.repo.bubbleseekbar.R$layout: int abc_select_dialog_material +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Medium_Inverse +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Menu +okhttp3.internal.http1.Http1Codec: okio.Sink createRequestBody(okhttp3.Request,long) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_creator +wangdaye.com.geometricweather.R$dimen: int abc_text_size_headline_material +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +okio.ByteString: okio.ByteString toAsciiUppercase() +com.google.android.material.R$styleable: int Constraint_android_translationZ +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String chief +com.google.android.material.R$styleable: int NavigationView_itemShapeAppearanceOverlay +androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_height_minor +androidx.hilt.work.R$styleable: int Fragment_android_id +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +okio.RealBufferedSink: okio.BufferedSink writeUtf8(java.lang.String) +androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context,android.util.AttributeSet) +okio.InflaterSource: okio.BufferedSource source +android.didikee.donate.R$attr: int submitBackground +wangdaye.com.geometricweather.R$attr: int collapseIcon +androidx.preference.R$color: int abc_secondary_text_material_dark +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +com.turingtechnologies.materialscrollbar.R$id: int scrollView +cyanogenmod.app.CustomTile$ExpandedItem$1: cyanogenmod.app.CustomTile$ExpandedItem[] newArray(int) +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_NoActionBar +androidx.preference.R$style: int Base_V23_Theme_AppCompat_Light +cyanogenmod.app.ICustomTileListener$Stub: android.os.IBinder asBinder() +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat +com.xw.repo.bubbleseekbar.R$style: int Base_AlertDialog_AppCompat_Light +okhttp3.internal.http2.Http2Connection$2: long val$unacknowledgedBytesRead +wangdaye.com.geometricweather.R$dimen: int little_weather_icon_size +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textSize +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemHorizontalPadding +androidx.loader.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.remoteviews.config.Hilt_TextWidgetConfigActivity: Hilt_TextWidgetConfigActivity() +androidx.lifecycle.LifecycleDispatcher +okio.SegmentPool +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.internal.fuseable.SimpleQueue queue +androidx.constraintlayout.widget.R$layout: int abc_action_mode_bar +okhttp3.internal.ws.RealWebSocket$CancelRunnable: RealWebSocket$CancelRunnable(okhttp3.internal.ws.RealWebSocket) +wangdaye.com.geometricweather.R$layout: int spinner_text +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_singleLineTitle +okhttp3.internal.ws.RealWebSocket: long CANCEL_AFTER_CLOSE_MILLIS +io.reactivex.Observable: io.reactivex.Observable retryWhen(io.reactivex.functions.Function) +okhttp3.internal.http1.Http1Codec: okhttp3.OkHttpClient client +com.google.android.material.R$layout: int abc_action_mode_close_item_material +com.google.android.material.R$dimen: int mtrl_calendar_navigation_bottom_padding +james.adaptiveicon.R$styleable: int Toolbar_android_gravity +androidx.hilt.work.R$dimen: R$dimen() +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_hide_motion_spec +com.google.android.material.card.MaterialCardView: void setStrokeWidth(int) +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void dispose() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial Imperial +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_elevation +wangdaye.com.geometricweather.R$id: int moldTitle +androidx.lifecycle.ProcessLifecycleOwnerInitializer +wangdaye.com.geometricweather.R$attr: int touchAnchorSide +wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWeekWidgetConfigActivity: Hilt_DayWeekWidgetConfigActivity() +wangdaye.com.geometricweather.R$drawable: int notif_temp_48 +wangdaye.com.geometricweather.R$attr: int settingsActivity +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayInvalidStyle +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastHorizontalBias +wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_4_material +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCutDrawable +com.jaredrummler.android.colorpicker.R$id: int screen +androidx.recyclerview.R$id: int actions +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onMenuItemSelected(int,android.view.MenuItem) +com.google.gson.internal.JsonReaderInternalAccess: void promoteNameToValue(com.google.gson.stream.JsonReader) +io.reactivex.internal.util.NotificationLite: java.lang.Object getValue(java.lang.Object) +okio.ForwardingSink: java.lang.String toString() +wangdaye.com.geometricweather.R$attr: int chipIconEnabled +android.didikee.donate.R$attr: int searchHintIcon +androidx.core.R$attr: int fontProviderPackage +androidx.preference.R$string: int abc_shareactionprovider_share_with_application +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_ChipGroup +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain24h +com.turingtechnologies.materialscrollbar.R$id: int bottom +retrofit2.Response: java.lang.String message() +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_weightSum +james.adaptiveicon.R$bool: int abc_allow_stacked_button_bar +androidx.appcompat.R$attr: int editTextStyle +io.reactivex.internal.util.NotificationLite$DisposableNotification: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$attr: int prefixTextAppearance +wangdaye.com.geometricweather.R$styleable: int Chip_chipMinHeight +androidx.viewpager.R$style: R$style() +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_DIALOG_THEME +com.google.android.material.R$dimen: int design_tab_text_size_2line +wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_dark +com.google.android.material.R$style: int Widget_AppCompat_SeekBar_Discrete +com.xw.repo.bubbleseekbar.R$id: int action_bar +wangdaye.com.geometricweather.R$styleable: int Preference_iconSpaceReserved +com.google.android.material.textfield.TextInputLayout: void setStartIconTintList(android.content.res.ColorStateList) +okhttp3.FormBody: java.lang.String name(int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWetBulbTemperature +androidx.work.R$styleable: int FontFamilyFont_ttcIndex +io.reactivex.internal.observers.BlockingObserver: void onComplete() +androidx.constraintlayout.widget.R$integer: int abc_config_activityDefaultDur +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_disabled_material_light +android.didikee.donate.R$id: int withText +com.xw.repo.bubbleseekbar.R$attr: int fontProviderPackage +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_popupWindowStyle +com.google.android.material.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +wangdaye.com.geometricweather.R$attr: int percentX +androidx.preference.R$styleable: int Preference_fragment +androidx.appcompat.resources.R$id: int chronometer +androidx.core.R$id: int accessibility_custom_action_22 +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontStyle +androidx.appcompat.R$drawable: int abc_btn_check_to_on_mtrl_015 +androidx.hilt.lifecycle.R$id: int info +com.google.android.material.circularreveal.CircularRevealRelativeLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +androidx.appcompat.widget.Toolbar: void setTitleMarginBottom(int) +wangdaye.com.geometricweather.R$style: int TestStyleWithoutLineHeight +retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: long read(okio.Buffer,long) +androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginEnd(int) +androidx.swiperefreshlayout.R$dimen: int notification_large_icon_width +io.reactivex.internal.disposables.SequentialDisposable +com.jaredrummler.android.colorpicker.R$attr: int textAllCaps +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModelProvider$NewInstanceFactory getInstance() +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_second_track_color +androidx.loader.R$layout: int notification_template_part_time +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat[] values() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: java.lang.String Unit james.adaptiveicon.R$style: int Widget_AppCompat_ActivityChooserView -androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_Switch -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: int phenomenonId -androidx.appcompat.R$attr: int maxButtonHeight -wangdaye.com.geometricweather.R$animator: int mtrl_btn_unelevated_state_list_anim -cyanogenmod.hardware.CMHardwareManager: int[] getDisplayColorCalibrationArray() -androidx.lifecycle.extensions.R$attr: int fontVariationSettings -com.turingtechnologies.materialscrollbar.TouchScrollBar: float getHandleOffset() -androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_Alert -cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder access$200(cyanogenmod.externalviews.KeyguardExternalView) -com.turingtechnologies.materialscrollbar.R$attr: int textColorAlertDialogListItem -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String type -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display4 -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation -wangdaye.com.geometricweather.R$color: int material_grey_850 -wangdaye.com.geometricweather.R$drawable: int notif_temp_26 -androidx.drawerlayout.R$styleable: int GradientColor_android_startColor -com.xw.repo.bubbleseekbar.R$attr: int font -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -cyanogenmod.app.LiveLockScreenInfo: int priority -james.adaptiveicon.R$styleable: int Toolbar_popupTheme -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain1h -androidx.appcompat.widget.AppCompatSpinner: void setPrompt(java.lang.CharSequence) -com.bumptech.glide.R$styleable: int GradientColor_android_endX -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$id: int home -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder pingInterval(long,java.util.concurrent.TimeUnit) -com.google.android.material.R$color: int abc_search_url_text_normal -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: void setOnFitSystemBarListener(wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout$OnFitSystemBarListener) -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: java.lang.Object value -wangdaye.com.geometricweather.R$string: int material_timepicker_select_time -cyanogenmod.hardware.CMHardwareManager: boolean isSunlightEnhancementSelfManaged() -com.google.android.material.R$style: int Widget_MaterialComponents_Tooltip -com.google.android.material.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(android.os.Parcel,cyanogenmod.app.suggest.ApplicationSuggestion$1) -com.google.android.material.textfield.TextInputLayout: void removeOnEditTextAttachedListener(com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener) -androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor INSTANCE -androidx.preference.R$attr: int actionBarSplitStyle -androidx.appcompat.R$attr: int listPreferredItemHeight -androidx.work.R$id: int icon -com.google.android.material.R$styleable: int RecyclerView_android_descendantFocusability -androidx.constraintlayout.widget.R$styleable: int KeyPosition_transitionEasing -io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,int) -androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit[] values() -com.google.android.material.R$attr: int layout_constrainedHeight -cyanogenmod.themes.ThemeManager$2$1: java.lang.String val$pkgName -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration precipitationDuration -androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.google.android.material.R$attr: int buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.R$id: int normal -wangdaye.com.geometricweather.R$string: int material_hour_selection -androidx.appcompat.R$id: int scrollIndicatorUp -androidx.appcompat.widget.SearchView: int getPreferredWidth() -okio.Options: java.lang.Object get(int) -androidx.legacy.coreutils.R$layout +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_3DES_EDE_CBC_SHA +cyanogenmod.themes.ThemeChangeRequest$Builder: ThemeChangeRequest$Builder() +androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveOffset +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button +io.reactivex.Observable: io.reactivex.Observable switchMapDelayError(io.reactivex.functions.Function,int) +okhttp3.OkHttpClient: okhttp3.Authenticator authenticator +android.didikee.donate.R$color: int abc_search_url_text_selected +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedTextWithoutUnit(float) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: int status +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeApparentTemperature +androidx.preference.R$color: int background_floating_material_dark +james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$dimen: int abc_dropdownitem_text_padding_left +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String value +okhttp3.internal.http2.Http2Connection: void writeData(int,boolean,okio.Buffer,long) +retrofit2.Platform: Platform(boolean) +wangdaye.com.geometricweather.R$styleable: int KeyPosition_keyPositionType +androidx.recyclerview.R$id: int accessibility_custom_action_2 +android.didikee.donate.R$attr: int commitIcon +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetEnd +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMargins +androidx.recyclerview.widget.RecyclerView: void addOnItemTouchListener(androidx.recyclerview.widget.RecyclerView$OnItemTouchListener) +androidx.preference.R$attr: int drawableRightCompat +com.turingtechnologies.materialscrollbar.R$dimen: int notification_big_circle_margin +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_applyDefaultTheme +com.google.android.material.R$dimen: int abc_text_size_small_material +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType UpdateInTxIterable +wangdaye.com.geometricweather.R$style: int AlertDialog_AppCompat +wangdaye.com.geometricweather.R$layout: int material_clock_period_toggle_land +com.google.android.material.internal.ForegroundLinearLayout +androidx.hilt.R$color: int ripple_material_light +androidx.viewpager.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$styleable: int MotionLayout_currentState +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display1 +androidx.hilt.lifecycle.R$id: int tag_unhandled_key_listeners +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_TEXT +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windDircStart +androidx.work.R$attr: int fontWeight +james.adaptiveicon.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$styleable: int[] BubbleSeekBar +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$id: int action_container +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$styleable: int Layout_barrierDirection +okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: Http2Connection$IntervalPingRunnable(okhttp3.internal.http2.Http2Connection) +com.github.rahatarmanahmed.cpv.CircularProgressView: int thickness +okhttp3.internal.http.HttpHeaders: HttpHeaders() +androidx.preference.R$attr: int textAllCaps +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +com.jaredrummler.android.colorpicker.R$attr: int textColorAlertDialogListItem +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int sourceMode +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.String aqiText +androidx.coordinatorlayout.R$color: int notification_icon_bg_color +com.google.android.material.R$dimen: int material_clock_display_padding +com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +retrofit2.RequestBuilder: okhttp3.HttpUrl baseUrl +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_orderInCategory +wangdaye.com.geometricweather.R$color: int mtrl_card_view_ripple +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_start_padding_icon +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_search +com.xw.repo.bubbleseekbar.R$styleable: int[] StateListDrawableItem +cyanogenmod.profiles.LockSettings$1: LockSettings$1() +com.turingtechnologies.materialscrollbar.R$color: int ripple_material_dark +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +wangdaye.com.geometricweather.R$layout: int container_main_hourly_trend_card +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation +com.google.android.material.chip.Chip: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +cyanogenmod.weatherservice.WeatherProviderService$1: cyanogenmod.weatherservice.WeatherProviderService this$0 +com.xw.repo.bubbleseekbar.R$attr: int titleTextStyle +org.greenrobot.greendao.AbstractDaoSession: void deleteAll(java.lang.Class) +cyanogenmod.app.ProfileGroup: java.lang.String TAG +com.google.android.material.chip.Chip +cyanogenmod.providers.CMSettings$Global: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) +androidx.preference.R$attr: int layout_behavior +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +okio.ByteString: okio.ByteString EMPTY +android.didikee.donate.R$attr: int splitTrack +androidx.legacy.coreutils.R$id: int action_divider +wangdaye.com.geometricweather.R$id: int pin +com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_linear_out_slow_in +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +androidx.customview.R$id: int normal +androidx.recyclerview.widget.RecyclerView: void setOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +com.xw.repo.bubbleseekbar.R$dimen: int compat_button_padding_horizontal_material +android.didikee.donate.R$styleable: int ActionBar_backgroundSplit +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getSummary(android.content.Context,java.util.List) +androidx.preference.R$color: int error_color_material_light +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowRadius +androidx.coordinatorlayout.widget.CoordinatorLayout: void setFitsSystemWindows(boolean) +cyanogenmod.hardware.CMHardwareManager: int FEATURE_VIBRATOR +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_RC4_128_SHA +com.google.android.material.R$animator: int design_fab_hide_motion_spec +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Refresh +cyanogenmod.externalviews.ExternalView$1: cyanogenmod.externalviews.ExternalView this$0 +cyanogenmod.hardware.CMHardwareManager: java.lang.String getLtoSource() +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_singleChoiceItemLayout +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void dispose() +org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Object[]) +okhttp3.HttpUrl: int port +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: java.lang.String DESCRIPTOR +com.turingtechnologies.materialscrollbar.R$layout: int notification_action_tombstone +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onNext(java.lang.Object) +androidx.preference.R$color: int secondary_text_default_material_dark +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ProgressBar +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getDistanceText(android.content.Context,float) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void request(long) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void close(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver,long) +androidx.fragment.R$styleable: int GradientColor_android_startY wangdaye.com.geometricweather.R$styleable: int MenuItem_android_menuCategory -androidx.constraintlayout.widget.R$styleable: int SearchView_voiceIcon -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: long serialVersionUID -wangdaye.com.geometricweather.R$attr: int motionTarget -wangdaye.com.geometricweather.R$string: int settings_title_service_provider -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: java.lang.Object invoke(java.lang.Object) -androidx.appcompat.R$drawable: int abc_seekbar_thumb_material -androidx.coordinatorlayout.R$attr -cyanogenmod.themes.ThemeManager: java.util.Set mChangeListeners -james.adaptiveicon.R$styleable: int MenuGroup_android_visible -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_pixel -androidx.customview.R$id: int italic -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: java.lang.Object get() -androidx.preference.R$attr: int contentInsetEndWithActions +okhttp3.RealCall: okio.AsyncTimeout timeout +androidx.lifecycle.Lifecycling$1: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_DEFAULT_INDEX +okhttp3.internal.http1.Http1Codec: int HEADER_LIMIT +com.xw.repo.bubbleseekbar.R$attr: int windowMinWidthMajor +james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_CheckBox +androidx.coordinatorlayout.R$id: int accessibility_custom_action_19 +cyanogenmod.themes.IThemeProcessingListener$Stub: int TRANSACTION_onFinishedProcessing_0 +com.google.android.material.R$layout: int test_toolbar +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$000() +androidx.constraintlayout.widget.R$color: int accent_material_light +wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_dividerHeight +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionBar +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_stacked_max_height +androidx.constraintlayout.widget.R$styleable: int GradientColorItem_android_offset +cyanogenmod.util.ColorUtils$1: ColorUtils$1() +com.google.android.material.R$string: int abc_menu_delete_shortcut_label +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX) +wangdaye.com.geometricweather.R$id: int time +wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitle +androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +androidx.hilt.R$string: int status_bar_notification_info_overflow +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onSubscribe(io.reactivex.disposables.Disposable) +android.didikee.donate.R$drawable: int abc_ratingbar_material +com.google.android.material.button.MaterialButton: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +androidx.hilt.lifecycle.R$integer +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_INACTIVE +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: java.lang.String Unit +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void request(long) +wangdaye.com.geometricweather.R$drawable: int ic_star +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: io.reactivex.functions.BiFunction combiner +androidx.lifecycle.LiveData: void dispatchingValue(androidx.lifecycle.LiveData$ObserverWrapper) +com.google.android.material.R$styleable: int Constraint_motionStagger +androidx.viewpager2.R$id: int line1 +james.adaptiveicon.R$styleable: int MenuItem_iconTint +okhttp3.Headers: Headers(okhttp3.Headers$Builder) +com.google.android.material.R$id: int percent +androidx.appcompat.widget.SearchView: int getInputType() +androidx.coordinatorlayout.R$id: int accessibility_custom_action_1 +androidx.fragment.R$attr: int font +wangdaye.com.geometricweather.R$drawable: int ic_mold +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +james.adaptiveicon.R$drawable: int abc_list_selector_background_transition_holo_dark +com.google.android.material.slider.Slider: void setThumbElevationResource(int) +com.google.android.material.R$id: int filled +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetStartWithNavigation +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.IRequestInfoListener mRequestInfoListener +androidx.constraintlayout.widget.R$attr: int panelBackground +okhttp3.Call: okhttp3.Response execute() +cyanogenmod.library.R +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_height +com.google.android.material.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +cyanogenmod.themes.ThemeManager: void requestThemeChange(java.lang.String,java.util.List) +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_progressBarStyle +com.google.android.material.R$color: int material_timepicker_clockface +okhttp3.internal.http2.Settings: int MAX_HEADER_LIST_SIZE +com.google.android.material.R$drawable: int abc_text_select_handle_right_mtrl_light +okhttp3.internal.cache2.Relay$RelaySource: okio.Timeout timeout() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogCornerRadius +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean isDisposed() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +com.google.android.material.R$attr: int indicatorType +androidx.fragment.R$id: int accessibility_custom_action_18 +wangdaye.com.geometricweather.R$animator: int mtrl_btn_unelevated_state_list_anim +retrofit2.Response: okhttp3.ResponseBody errorBody() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias +cyanogenmod.app.ProfileManager: boolean profileExists(java.util.UUID) +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void dispose() +android.didikee.donate.R$attr: int actionBarSize +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.ChineseCityEntity,int) +wangdaye.com.geometricweather.R$attr: int customColorValue +com.google.android.material.R$style: int Base_Widget_AppCompat_ListMenuView +com.google.android.material.R$styleable: int ClockFaceView_valueTextColor +okhttp3.internal.ws.RealWebSocket +android.support.v4.app.INotificationSideChannel$Stub: boolean setDefaultImpl(android.support.v4.app.INotificationSideChannel) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.lifecycle.Lifecycle$Event: Lifecycle$Event(java.lang.String,int) +wangdaye.com.geometricweather.R$id: int visible +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_colored_material +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +okhttp3.internal.http2.Http2Connection: java.lang.String hostname +androidx.preference.R$drawable: int btn_checkbox_checked_mtrl +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_CompactMenu +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_ttcIndex +retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: retrofit2.Call call +com.bumptech.glide.load.engine.GlideException: void printStackTrace(java.io.PrintWriter) +okio.GzipSink: void write(okio.Buffer,long) +androidx.appcompat.R$drawable: int abc_switch_track_mtrl_alpha +okio.RealBufferedSink: java.lang.String toString() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String url +cyanogenmod.weather.CMWeatherManager$RequestStatus: int NO_MATCH_FOUND +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean isEmpty() +wangdaye.com.geometricweather.R$styleable: int TabItem_android_text +cyanogenmod.weather.WeatherInfo$1: cyanogenmod.weather.WeatherInfo[] newArray(int) +wangdaye.com.geometricweather.R$attr: int startIconContentDescription +androidx.vectordrawable.animated.R$drawable +okhttp3.internal.http.RealInterceptorChain: okhttp3.EventListener eventListener +com.google.android.material.internal.VisibilityAwareImageButton +wangdaye.com.geometricweather.R$animator: int weather_clear_night_1 +androidx.viewpager2.widget.ViewPager2 +com.google.android.material.textfield.TextInputLayout: void setHelperTextColor(android.content.res.ColorStateList) +androidx.appcompat.R$styleable: int[] CompoundButton +cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getProfile(java.util.UUID) +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar +androidx.viewpager2.R$id: int accessibility_custom_action_27 +wangdaye.com.geometricweather.R$xml: R$xml() +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_LAST_PROFILE_UUID +androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context,android.util.AttributeSet) +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] PREVAILING_RULE +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Hint +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeDegreeDayTemperature +androidx.appcompat.R$attr: int iconifiedByDefault +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton_CloseMode +androidx.lifecycle.ViewModelProvider$NewInstanceFactory +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setBackgroundColorStart(int) +com.google.android.material.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +androidx.constraintlayout.widget.R$id: int select_dialog_listview +androidx.preference.R$style: int Base_Widget_AppCompat_ButtonBar +wangdaye.com.geometricweather.R$id: int widget_day_sign +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_backgroundStacked +com.turingtechnologies.materialscrollbar.R$dimen: int abc_seekbar_track_progress_height_material +com.jaredrummler.android.colorpicker.R$string: int abc_menu_enter_shortcut_label +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_elevation +wangdaye.com.geometricweather.R$attr: int tabIndicatorFullWidth +com.google.android.material.slider.RangeSlider: void setHaloTintList(android.content.res.ColorStateList) +okhttp3.internal.Internal: void addLenient(okhttp3.Headers$Builder,java.lang.String) +io.reactivex.Observable: io.reactivex.Single reduce(java.lang.Object,io.reactivex.functions.BiFunction) +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_PING +cyanogenmod.providers.CMSettings: java.lang.String ACTION_DATA_USAGE +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_DayTextView +cyanogenmod.weatherservice.WeatherProviderService: void onDisconnected() +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_2_00 +com.jaredrummler.android.colorpicker.R$dimen: int notification_small_icon_size_as_large +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onPreparePanel(int,android.view.View,android.view.Menu) +cyanogenmod.providers.CMSettings$System: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_setNotificationGroupBtn +com.google.android.material.internal.NavigationMenuItemView: void setIconPadding(int) +wangdaye.com.geometricweather.R$id: int widget_day_week_card +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_headerLayout +cyanogenmod.externalviews.KeyguardExternalView$1 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: boolean done +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String getValue() +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getO3() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial +wangdaye.com.geometricweather.R$attr: int behavior_overlapTop +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.CustomTile getCustomTile() +androidx.recyclerview.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_colored_item_tint +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_black +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_elevation_material +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline1 +com.xw.repo.bubbleseekbar.R$attr: int actionModeCloseButtonStyle +wangdaye.com.geometricweather.R$id: int staticLayout +wangdaye.com.geometricweather.R$interpolator +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: long serialVersionUID +okhttp3.HttpUrl$Builder: java.lang.String encodedFragment +james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar_Small +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +wangdaye.com.geometricweather.R$drawable: int widget_card_light_0 +okhttp3.Dispatcher: java.util.Deque readyAsyncCalls +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() +cyanogenmod.app.LiveLockScreenInfo: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.appcompat.R$attr: int seekBarStyle +wangdaye.com.geometricweather.R$attr: int fontProviderPackage +androidx.appcompat.R$attr: int searchHintIcon +androidx.dynamicanimation.R$integer: R$integer() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +androidx.preference.R$styleable: int Toolbar_contentInsetStart +androidx.activity.R$id: int accessibility_action_clickable_span +okhttp3.RequestBody$1: okhttp3.MediaType val$contentType +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.internal.NavigationMenuItemView: void setNeedsEmptyIcon(boolean) +com.xw.repo.bubbleseekbar.R$string: int abc_menu_function_shortcut_label +okhttp3.internal.tls.OkHostnameVerifier: OkHostnameVerifier() +androidx.preference.R$layout: int abc_action_mode_bar +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginStart +com.google.android.material.R$styleable: int Transform_android_elevation +okhttp3.HttpUrl: java.util.List queryParameterValues(java.lang.String) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: java.lang.Float windChill +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu +com.xw.repo.bubbleseekbar.R$attr: int colorError +androidx.customview.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Link +com.google.android.material.R$styleable: int Constraint_flow_lastHorizontalStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_motionProgress +org.greenrobot.greendao.AbstractDao: java.lang.Object readEntity(android.database.Cursor,int) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DialogWhenLarge +androidx.customview.R$styleable: int FontFamily_fontProviderPackage +cyanogenmod.app.Profile$DozeMode +androidx.constraintlayout.widget.R$attr: int dropdownListPreferredItemHeight +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeightLarge +okhttp3.internal.http2.Http2Stream$StreamTimeout +com.turingtechnologies.materialscrollbar.R$styleable: int[] FloatingActionButton +androidx.vectordrawable.R$styleable: int[] FontFamilyFont +io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Thread runner +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric Metric +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWeatherStart(java.lang.String) +cyanogenmod.weather.RequestInfo: java.lang.String mKey +com.google.android.material.R$styleable: int Chip_chipSurfaceColor +com.google.android.material.R$attr: int chipIconVisible +wangdaye.com.geometricweather.R$attr: int showSeekBarValue +androidx.lifecycle.ReportFragment$LifecycleCallbacks: ReportFragment$LifecycleCallbacks() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixText +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getThumbStrokeColor() +cyanogenmod.externalviews.ExternalView$4: void run() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String getTo() +com.google.android.material.R$styleable: int Constraint_layout_constraintCircleAngle +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_android_textAppearance +androidx.lifecycle.extensions.R$dimen: int notification_main_column_padding_top +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node tail +wangdaye.com.geometricweather.R$drawable: int weather_hail_pixel +cyanogenmod.profiles.LockSettings$1: cyanogenmod.profiles.LockSettings[] newArray(int) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float rain +io.reactivex.internal.schedulers.AbstractDirectTask: java.util.concurrent.FutureTask FINISHED +retrofit2.BuiltInConverters$RequestBodyConverter: okhttp3.RequestBody convert(okhttp3.RequestBody) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: int hasRain +androidx.preference.R$drawable: int abc_text_select_handle_right_mtrl_light +com.google.android.material.R$styleable: int ConstraintSet_android_pivotX +james.adaptiveicon.R$attr: int spinBars +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMargins +com.google.android.material.R$style: int Widget_AppCompat_EditText +okio.BufferedSource: int readUtf8CodePoint() +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean done +androidx.constraintlayout.widget.R$dimen: int hint_alpha_material_light +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView_Menu +okio.BufferedSink: okio.BufferedSink writeInt(int) +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: long serialVersionUID +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: java.lang.String getWidgetWeekIconModeName(android.content.Context) +com.google.android.material.R$color: int primary_material_light +androidx.hilt.R$anim: int fragment_close_exit +com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onProgressUpdateEnd(float) +androidx.constraintlayout.widget.R$styleable: int MotionLayout_currentState com.google.android.material.transformation.TransformationChildCard -android.didikee.donate.R$styleable: int MenuItem_actionLayout -com.jaredrummler.android.colorpicker.R$styleable: int GradientColorItem_android_offset -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void complete() -wangdaye.com.geometricweather.R$attr: int recyclerViewStyle -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableBottom -androidx.lifecycle.Lifecycling: java.util.Map sClassToAdapters -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String province -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleTextAppearance -cyanogenmod.weather.WeatherLocation: java.lang.String access$602(cyanogenmod.weather.WeatherLocation,java.lang.String) -wangdaye.com.geometricweather.R$id: int action_manage -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -retrofit2.Utils$WildcardTypeImpl: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_curveFit -wangdaye.com.geometricweather.R$id: int toolbar -okhttp3.logging.HttpLoggingInterceptor: HttpLoggingInterceptor(okhttp3.logging.HttpLoggingInterceptor$Logger) -io.reactivex.internal.util.NotificationLite$SubscriptionNotification: java.lang.String toString() -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int FINISHED -androidx.appcompat.R$attr: int autoSizePresetSizes -androidx.viewpager.R$dimen: int notification_right_side_padding_top -androidx.viewpager2.R$id: int text2 -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter -retrofit2.RequestFactory: retrofit2.ParameterHandler[] parameterHandlers -com.google.android.material.R$attr: int actionBarTabBarStyle -james.adaptiveicon.R$drawable: int abc_ab_share_pack_mtrl_alpha -cyanogenmod.app.CustomTile: java.lang.String resourcesPackageName -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_16 -com.google.gson.stream.MalformedJsonException -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FOGGY -okio.RealBufferedSource: long read(okio.Buffer,long) -james.adaptiveicon.R$styleable: int LinearLayoutCompat_measureWithLargestChild -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_125 -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabBar -cyanogenmod.hardware.DisplayMode: DisplayMode(android.os.Parcel,cyanogenmod.hardware.DisplayMode$1) -retrofit2.http.Field -wangdaye.com.geometricweather.R$id: int activity_weather_daily_container -com.google.android.material.R$styleable: int AppCompatSeekBar_tickMarkTint -com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context) -androidx.appcompat.R$id: int search_close_btn -io.reactivex.internal.observers.BasicIntQueueDisposable: void dispose() -wangdaye.com.geometricweather.R$layout: int item_card_display -com.google.android.material.R$id: int cancel_button -cyanogenmod.profiles.ConnectionSettings: java.lang.String EXTRA_NETWORK_MODE -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription this$0 -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setEnabled(boolean) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_hide_bubble -com.turingtechnologies.materialscrollbar.R$style: int Base_DialogWindowTitle_AppCompat -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTint -okhttp3.Protocol: java.lang.String toString() -androidx.constraintlayout.widget.R$drawable: int abc_list_divider_mtrl_alpha -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getThunderstormPrecipitationProbability() -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_5 -com.xw.repo.bubbleseekbar.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.main.dialogs.LearnMoreAboutResidentLocationDialog -androidx.work.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$color: int darkPrimary_4 -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_material -okio.Buffer: void readFrom(java.io.InputStream,long,boolean) -wangdaye.com.geometricweather.R$attr: int actionModePasteDrawable -okhttp3.Protocol: okhttp3.Protocol QUIC -james.adaptiveicon.R$style: int Widget_AppCompat_ProgressBar -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitationDuration -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textSize -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean getDirection() -android.didikee.donate.R$styleable: int ActionBar_titleTextStyle -androidx.appcompat.widget.FitWindowsFrameLayout: FitWindowsFrameLayout(android.content.Context) -androidx.hilt.lifecycle.R$styleable: int[] FontFamily -com.turingtechnologies.materialscrollbar.R$attr: int editTextColor -wangdaye.com.geometricweather.R$id: int outline -okhttp3.internal.http2.Http2Stream$FramingSource: void updateConnectionFlowControl(long) -wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getLogo() -wangdaye.com.geometricweather.R$styleable: int Slider_android_valueTo -androidx.constraintlayout.widget.R$dimen: int abc_dialog_min_width_minor -com.google.android.material.R$color: int design_fab_stroke_top_outer_color -wangdaye.com.geometricweather.R$attr: int sliderStyle -james.adaptiveicon.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.disposables.Disposable upstream -retrofit2.adapter.rxjava2.RxJava2CallAdapter: RxJava2CallAdapter(java.lang.reflect.Type,io.reactivex.Scheduler,boolean,boolean,boolean,boolean,boolean,boolean,boolean) -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy valueOf(java.lang.String) -androidx.hilt.R$styleable: int GradientColor_android_type -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setContentDescription(java.lang.String) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_2_material -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.transition.R$dimen: int notification_action_text_size -androidx.lifecycle.LifecycleService: void onCreate() -androidx.constraintlayout.widget.R$attr: int lastBaselineToBottomHeight -wangdaye.com.geometricweather.R$styleable: int Variant_region_widthLessThan -okhttp3.internal.cache.DiskLruCache: void flush() -cyanogenmod.app.CustomTile$ExpandedItem: void writeToParcel(android.os.Parcel,int) -androidx.preference.R$color: int bright_foreground_material_light -com.jaredrummler.android.colorpicker.R$attr: int measureWithLargestChild -okio.Okio: okio.Sink sink(java.io.OutputStream,okio.Timeout) -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_voiceIcon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getO3() -com.google.android.material.R$id: int view_offset_helper -wangdaye.com.geometricweather.R$id: int disablePostScroll -cyanogenmod.themes.IThemeProcessingListener$Stub: cyanogenmod.themes.IThemeProcessingListener asInterface(android.os.IBinder) -james.adaptiveicon.R$id: int normal -com.google.android.material.R$styleable: int Constraint_layout_constraintRight_toRightOf -cyanogenmod.app.IProfileManager: boolean notificationGroupExistsByName(java.lang.String) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_Underlined -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage RESOURCE_CACHE -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String EXTRA_ENABLED -androidx.customview.R$styleable: int GradientColor_android_type -androidx.preference.R$styleable: int MenuItem_android_alphabeticShortcut -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_caption_material -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy MISSING -androidx.appcompat.R$styleable: int[] SwitchCompat -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int HIGH_NOTIFICATION_STATE -okhttp3.internal.http2.Hpack$Reader: int headerCount -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableStart -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String SECONDARY_COLOR -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setBootanimation(java.lang.String) -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework -androidx.hilt.R$styleable: int FontFamilyFont_android_fontStyle -io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit) -androidx.preference.R$id: int seekbar -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$string: int degree_day_temperature -wangdaye.com.geometricweather.db.entities.LocationEntity: java.util.TimeZone timeZone -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation -androidx.lifecycle.GeneratedAdapter: void callMethods(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,boolean,androidx.lifecycle.MethodCallsLogger) -cyanogenmod.weatherservice.IWeatherProviderService$Stub -com.google.android.material.R$styleable: int[] KeyPosition -com.google.android.material.R$dimen: int abc_list_item_height_large_material -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource[] values() -com.jaredrummler.android.colorpicker.R$attr: int dialogPreferredPadding -james.adaptiveicon.R$id: int action_bar_title -okhttp3.Address -androidx.appcompat.widget.AppCompatSpinner: android.content.res.ColorStateList getSupportBackgroundTintList() -androidx.preference.R$styleable: int SearchView_voiceIcon -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onScreenTurnedOn() -com.xw.repo.bubbleseekbar.R$drawable: int abc_action_bar_item_background_material -androidx.constraintlayout.widget.R$attr: int titleMarginTop -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: float unitFactor -androidx.constraintlayout.widget.R$id: int tag_accessibility_pane_title -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -com.turingtechnologies.materialscrollbar.R$id: int title_template -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabView -cyanogenmod.weather.WeatherLocation: java.lang.String getCity() -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy -cyanogenmod.app.CMContextConstants: java.lang.String CM_PERFORMANCE_SERVICE -okhttp3.ConnectionPool -com.google.android.material.R$styleable: int Transition_pathMotionArc -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTitle(java.lang.CharSequence) -wangdaye.com.geometricweather.R$string: int settings_title_dark_mode -wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_scrollView -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: MfEphemerisResult$Properties$Ephemeris() -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.R$attr: int textAppearanceHeadline1 -io.reactivex.Observable: io.reactivex.Observable repeat() -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_26 -androidx.appcompat.R$style: int Base_V22_Theme_AppCompat_Light -com.google.android.material.R$string -androidx.lifecycle.SavedStateHandle: void set(java.lang.String,java.lang.Object) -cyanogenmod.hardware.CMHardwareManager: int[] getVibratorIntensityArray() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setAqiIndex(java.lang.Integer) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_21 -androidx.work.R$id: int accessibility_custom_action_2 -com.xw.repo.bubbleseekbar.R$style: int AlertDialog_AppCompat -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Light_ActionBar_Solid -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setIconTintList(android.content.res.ColorStateList) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle -okhttp3.CacheControl: okhttp3.CacheControl parse(okhttp3.Headers) -androidx.legacy.coreutils.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.db.entities.HistoryEntity: long getTime() +androidx.appcompat.widget.Toolbar: void setTitle(java.lang.CharSequence) +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginEnd +retrofit2.ParameterHandler$PartMap: int p +com.google.android.material.R$styleable: int ConstraintSet_chainUseRtl +androidx.swiperefreshlayout.R$style: R$style() +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: $Gson$Types$ParameterizedTypeImpl(java.lang.reflect.Type,java.lang.reflect.Type,java.lang.reflect.Type[]) +com.google.android.material.R$color: int material_on_surface_stroke +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent WALLPAPER +android.didikee.donate.R$dimen: int abc_action_bar_default_padding_start_material +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody build() +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +okhttp3.internal.http2.Http2Reader: void readPriority(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +com.turingtechnologies.materialscrollbar.R$attr: int track +cyanogenmod.weather.WeatherLocation: WeatherLocation(cyanogenmod.weather.WeatherLocation$1) +androidx.hilt.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$attr: int passwordToggleTintMode +androidx.preference.R$attr: int colorControlNormal +androidx.recyclerview.widget.StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$layout: int abc_activity_chooser_view +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Title +androidx.core.R$dimen: int notification_large_icon_height +okhttp3.internal.ws.RealWebSocket: boolean processNextFrame() +wangdaye.com.geometricweather.R$styleable: int Transition_autoTransition +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textStyle +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String street +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_HOURLY_OVERVIEW +cyanogenmod.weather.RequestInfo: int getTemperatureUnit() +androidx.preference.R$id: int accessibility_custom_action_8 +androidx.appcompat.resources.R$styleable: int FontFamilyFont_ttcIndex +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification +com.turingtechnologies.materialscrollbar.R$bool: int abc_action_bar_embed_tabs +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxDao +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature RealFeelTemperature +androidx.preference.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +com.turingtechnologies.materialscrollbar.R$attr: int background +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Inverse +android.didikee.donate.R$attr: int colorSwitchThumbNormal +wangdaye.com.geometricweather.R$dimen: int tooltip_vertical_padding +androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonTint +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyleSmall +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_checkedTextViewStyle +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean done +wangdaye.com.geometricweather.db.entities.AlertEntityDao: org.greenrobot.greendao.query.Query weatherEntity_AlertEntityListQuery +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar +androidx.recyclerview.widget.StaggeredGridLayoutManager$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int TabItem_android_layout +wangdaye.com.geometricweather.R$styleable: int Preference_singleLineTitle +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundTintMode +androidx.preference.R$styleable: int AppCompatTextView_autoSizePresetSizes +wangdaye.com.geometricweather.R$string: int key_notification_custom_color +com.google.android.material.R$attr: int textAppearanceHeadline6 +okhttp3.internal.http1.Http1Codec: boolean isClosed() +androidx.constraintlayout.widget.R$styleable: int MenuItem_actionViewClass +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_SHOW_WEATHER_VALIDATOR +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_RECENT_BUTTON +androidx.appcompat.R$styleable: int MenuGroup_android_enabled +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +wangdaye.com.geometricweather.R$string: int thanks +okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot removeSnapshot +cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getActiveProfile() +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_Cut +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum Minimum +androidx.legacy.coreutils.R$drawable: int notification_template_icon_bg +androidx.constraintlayout.helper.widget.Flow: void setPaddingLeft(int) +com.jaredrummler.android.colorpicker.R$id: int scrollView +wangdaye.com.geometricweather.R$dimen: int material_clock_number_text_size +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconTint +com.google.android.material.R$attr: int buttonGravity +android.didikee.donate.R$attr: int toolbarNavigationButtonStyle +wangdaye.com.geometricweather.R$attr: int autoSizeStepGranularity +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_activityChooserViewStyle +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: io.reactivex.Observer downstream +com.google.android.material.R$id: int search_badge +wangdaye.com.geometricweather.R$id: int activity_preview_icon_container +cyanogenmod.app.PartnerInterface: void setAirplaneModeEnabled(boolean) +wangdaye.com.geometricweather.db.entities.HourlyEntity: int temperature +com.jaredrummler.android.colorpicker.R$attr: int arrowShaftLength +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: java.lang.String unitAbbreviation +okhttp3.Cache$Entry: int code +wangdaye.com.geometricweather.R$string: int material_minute_suffix +androidx.lifecycle.extensions.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$styleable: int Toolbar_maxButtonHeight +wangdaye.com.geometricweather.location.services.LocationService: void requestLocation(android.content.Context,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) +okhttp3.HttpUrl: java.lang.String password() +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void subscribeNext() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: int phenomenonId +androidx.constraintlayout.widget.R$styleable: int ActionBar_homeAsUpIndicator +okio.RealBufferedSource: long indexOfElement(okio.ByteString,long) +wangdaye.com.geometricweather.common.ui.activities.AwakeUpdateActivity +cyanogenmod.externalviews.KeyguardExternalView$10: void run() +okhttp3.internal.http2.Http2Writer: void applyAndAckSettings(okhttp3.internal.http2.Settings) +com.jaredrummler.android.colorpicker.R$color: int accent_material_light +androidx.loader.R$dimen: int notification_small_icon_size_as_large +android.didikee.donate.R$id: int submenuarrow +okhttp3.internal.cache2.Relay +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_arrowShaftLength +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +okhttp3.internal.http2.Http2Connection: int lastGoodStreamId +android.didikee.donate.R$styleable: int AppCompatImageView_tint +com.google.gson.stream.JsonReader: int PEEKED_BEGIN_ARRAY +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog +androidx.hilt.R$dimen: int notification_action_text_size +okio.RealBufferedSource: void readFully(byte[]) +androidx.constraintlayout.widget.R$color: int material_grey_600 +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: void dispose() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +okhttp3.HttpUrl: java.lang.String encodedPath() +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() +com.google.android.material.R$attr: int triggerReceiver +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_spinBars +cyanogenmod.profiles.ConnectionSettings +wangdaye.com.geometricweather.R$styleable: int MaterialButton_elevation +retrofit2.Retrofit$1: java.lang.Class val$service +wangdaye.com.geometricweather.R$string: int time +io.reactivex.Observable: io.reactivex.Observable dematerialize(io.reactivex.functions.Function) +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object ASYNC_DISPOSED +wangdaye.com.geometricweather.R$id: int material_timepicker_mode_button +com.google.android.material.R$styleable: int FontFamily_fontProviderQuery +cyanogenmod.weatherservice.WeatherProviderService: android.os.IBinder onBind(android.content.Intent) +okhttp3.internal.http2.Hpack$Writer: void writeHeaders(java.util.List) +androidx.vectordrawable.animated.R$string: int status_bar_notification_info_overflow +androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton +wangdaye.com.geometricweather.R$id: int action_divider +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric Metric +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_maxProgress +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_registerListener +androidx.constraintlayout.widget.R$id: int customPanel +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display4 +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView_Menu +cyanogenmod.app.CustomTile$Builder: android.content.Intent mOnSettingsClick +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean terminated +wangdaye.com.geometricweather.R$id: int async +androidx.recyclerview.R$dimen: int notification_action_text_size +okio.Buffer: okio.Buffer readFrom(java.io.InputStream) +okio.SegmentedByteString: java.lang.String hex() +james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_baselineAligned +com.google.android.material.R$attr: int flow_verticalGap +cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weatherservice.ServiceRequest$Status mStatus +cyanogenmod.externalviews.ExternalView$8: ExternalView$8(cyanogenmod.externalviews.ExternalView) +androidx.coordinatorlayout.R$styleable: int GradientColor_android_endY +com.google.android.material.R$styleable: int MaterialButton_elevation +com.turingtechnologies.materialscrollbar.R$styleable: int[] ScrollingViewBehavior_Layout +cyanogenmod.app.CMTelephonyManager: void setSubState(int,boolean) +com.google.android.material.appbar.MaterialToolbar: void setElevation(float) +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getChina() +com.google.android.material.R$drawable: int abc_text_select_handle_middle_mtrl_light +james.adaptiveicon.R$attr: int displayOptions +androidx.dynamicanimation.R$id: int blocking +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String level +com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) +com.bumptech.glide.integration.okhttp.R$id: int tag_transition_group +androidx.recyclerview.widget.RecyclerView$LayoutManager$Properties: RecyclerView$LayoutManager$Properties() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_menu_material +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterEnabled +androidx.appcompat.R$attr: int srcCompat +wangdaye.com.geometricweather.R$attr: int materialCalendarFullscreenTheme +androidx.appcompat.R$dimen: int tooltip_margin +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_barLength +com.google.android.material.R$styleable: int[] ActionBarLayout +com.turingtechnologies.materialscrollbar.R$attr: int preserveIconSpacing +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable,int) +cyanogenmod.os.Build$CM_VERSION_CODES: int APRICOT +wangdaye.com.geometricweather.R$attr: int cpv_animDuration +androidx.lifecycle.extensions.R$drawable: int notify_panel_notification_icon_bg +com.google.android.material.R$dimen: int design_bottom_sheet_modal_elevation +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_ADJUST_SOUNDS_ENABLED_VALIDATOR +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Title +androidx.preference.R$attr: int listChoiceIndicatorMultipleAnimated +androidx.constraintlayout.widget.R$styleable: int KeyCycle_framePosition +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_DarkActionBar +androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStoreOwner,androidx.lifecycle.ViewModelProvider$Factory) +okhttp3.internal.Internal: okhttp3.internal.Internal instance +com.google.android.material.R$styleable: int AppCompatTheme_windowFixedWidthMinor +com.google.gson.JsonIOException +androidx.preference.R$styleable: int Preference_android_shouldDisableView +androidx.constraintlayout.widget.R$attr: int colorControlActivated +androidx.constraintlayout.widget.R$attr: int titleMarginEnd +androidx.lifecycle.extensions.R$dimen: int notification_small_icon_size_as_large +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupMenu +cyanogenmod.weather.CMWeatherManager$2$2: CMWeatherManager$2$2(cyanogenmod.weather.CMWeatherManager$2,cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener,int,java.util.List) +androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$styleable: int Layout_maxWidth +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getRealFeelTemperature() +com.turingtechnologies.materialscrollbar.R$attr: int buttonIconDimen wangdaye.com.geometricweather.R$id: int dialog_location_help_manageTitle -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginRight -androidx.appcompat.R$attr: int ratingBarStyle -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: OkHttpCall$ExceptionCatchingResponseBody(okhttp3.ResponseBody) -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIconTint -wangdaye.com.geometricweather.R$styleable: int Preference_iconSpaceReserved -androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_backgroundTint -androidx.appcompat.R$attr: int dialogPreferredPadding -okhttp3.MediaType: java.util.regex.Pattern PARAMETER -androidx.preference.PreferenceCategory -com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.settings.activities.DailyTrendDisplayManageActivity: DailyTrendDisplayManageActivity() -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatHoveredFocusedTranslationZ(float) -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Connection getConnection() -com.jaredrummler.android.colorpicker.R$color: int abc_tint_btn_checkable -wangdaye.com.geometricweather.R$attr: int animationDuration -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_lifted -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_light -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostResumed(android.app.Activity) -com.google.android.material.R$styleable: int MaterialCalendar_android_windowFullscreen -androidx.vectordrawable.R$styleable: int[] FontFamily -okhttp3.internal.http1.Http1Codec: okio.Source newFixedLengthSource(long) -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode PROTOCOL_ERROR -wangdaye.com.geometricweather.R$attr: int number -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Headline -wangdaye.com.geometricweather.R$attr: int borderlessButtonStyle -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: FlowableOnBackpressureDrop$BackpressureDropSubscriber(org.reactivestreams.Subscriber,io.reactivex.functions.Consumer) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -androidx.appcompat.R$attr: int actionModeBackground -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9 -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Borderless -okhttp3.CacheControl$Builder: okhttp3.CacheControl build() -com.bumptech.glide.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_container -io.reactivex.subjects.PublishSubject$PublishDisposable: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int materialAlertDialogTheme -androidx.constraintlayout.widget.R$attr: int listPreferredItemHeight -androidx.preference.R$id: int accessibility_custom_action_12 -com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Dialog -com.jaredrummler.android.colorpicker.R$layout: int abc_activity_chooser_view_list_item -james.adaptiveicon.R$style: int Theme_AppCompat_CompactMenu -james.adaptiveicon.R$attr: int suggestionRowLayout -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: DefaultCallAdapterFactory$ExecutorCallbackCall(java.util.concurrent.Executor,retrofit2.Call) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPrefixText() -okhttp3.internal.connection.ConnectInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: int hasSeaBulletin -wangdaye.com.geometricweather.R$string: int about_page_indicator -androidx.appcompat.widget.LinearLayoutCompat: void setMeasureWithLargestChildEnabled(boolean) -androidx.preference.R$dimen: int notification_small_icon_background_padding -cyanogenmod.profiles.AirplaneModeSettings: void readFromParcel(android.os.Parcel) -androidx.loader.R$dimen: int compat_notification_large_icon_max_width -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarPopupTheme -androidx.dynamicanimation.R$drawable: int notification_bg_normal_pressed -androidx.viewpager.R$styleable: int ColorStateListItem_android_color -com.google.android.material.R$attr: int maxWidth -okhttp3.internal.http2.Http2Connection$Builder: int pingIntervalMillis -wangdaye.com.geometricweather.R$attr: int cpv_animSwoopDuration -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingTop -androidx.constraintlayout.widget.R$style: int Platform_V25_AppCompat_Light -com.google.android.material.R$styleable: int KeyTrigger_triggerReceiver -androidx.vectordrawable.animated.R$id: int blocking -cyanogenmod.weather.WeatherInfo: boolean isValidWeatherCode(int) -com.google.android.material.floatingactionbutton.FloatingActionButton: int getCustomSize() -androidx.appcompat.R$dimen: int abc_text_size_display_3_material -james.adaptiveicon.R$drawable: int abc_ic_menu_cut_mtrl_alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean temperature -wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_title -androidx.preference.R$attr: int fontWeight -androidx.constraintlayout.widget.R$attr: int alertDialogTheme -android.didikee.donate.R$styleable: int ViewBackgroundHelper_android_background -wangdaye.com.geometricweather.R$string: int action_manage -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean delayError -com.jaredrummler.android.colorpicker.R$attr: int fontVariationSettings -com.google.android.material.R$attr: int indicatorCornerRadius -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: AccuCurrentResult$Precip1hr() -com.google.android.material.R$attr: int listPreferredItemPaddingEnd -io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: io.reactivex.internal.disposables.DisposableContainer tasks -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_picker_background_inset -james.adaptiveicon.R$attr: int colorButtonNormal -com.google.android.material.R$drawable: int abc_seekbar_tick_mark_material -james.adaptiveicon.R$attr: int titleMarginEnd -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button -androidx.appcompat.widget.AppCompatRadioButton: android.content.res.ColorStateList getSupportButtonTintList() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_searchViewStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored -io.reactivex.observers.TestObserver$EmptyObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.R$color: int abc_search_url_text_normal -okio.Buffer: long indexOf(okio.ByteString,long) -okio.GzipSink: void writeHeader() -wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardContainer -com.google.android.material.R$attr: int showMotionSpec -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.lang.String getPubTime() -okhttp3.internal.http2.Http2Reader: void readConnectionPreface(okhttp3.internal.http2.Http2Reader$Handler) -com.turingtechnologies.materialscrollbar.R$id: int design_bottom_sheet -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String getNotice() -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.Number) -androidx.appcompat.R$drawable: int abc_cab_background_top_material -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableBottom -androidx.appcompat.R$attr: int spinnerStyle -wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean isEntityUpdateable() -wangdaye.com.geometricweather.R$styleable: int Preference_android_enabled -wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_2 -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar -com.google.android.material.R$styleable: int AppCompatTextView_autoSizeMinTextSize -androidx.preference.R$attr: int colorError -com.turingtechnologies.materialscrollbar.R$styleable: int[] TouchScrollBar -cyanogenmod.externalviews.ExternalViewProperties: android.graphics.Rect mHitRect -wangdaye.com.geometricweather.R$attr: int itemShapeInsetEnd -androidx.preference.EditTextPreference$SavedState -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: AccuLocationResult$GeoPosition$Elevation() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: java.lang.String desc -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -wangdaye.com.geometricweather.R$string: int content_desc_check_details -cyanogenmod.hardware.ICMHardwareService: java.lang.String getUniqueDeviceId() -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickInactiveTintList() -androidx.constraintlayout.widget.R$attr: int layout -androidx.loader.R$attr: int fontProviderAuthority -james.adaptiveicon.R$style: int Theme_AppCompat_Light_DarkActionBar -androidx.appcompat.R$attr: int alertDialogButtonGroupStyle -com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingTop -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_CBC_SHA -retrofit2.SkipCallbackExecutorImpl: retrofit2.SkipCallbackExecutor INSTANCE -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,int) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: AtmoAuraQAResult$Advice() -androidx.hilt.work.R$id: int accessibility_custom_action_28 -android.didikee.donate.R$styleable: int View_theme -wangdaye.com.geometricweather.R$string: int key_widget_clock_day_horizontal -wangdaye.com.geometricweather.R$attr: int bsb_bubble_text_color -com.google.android.material.textfield.TextInputLayout: void setDefaultHintTextColor(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom -com.google.android.material.R$color: int material_slider_active_track_color -com.google.android.material.R$styleable: int TextInputLayout_counterOverflowTextColor -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_APP_SWITCH_LONG_PRESS_ACTION_VALIDATOR -wangdaye.com.geometricweather.R$id: int ragweedValue -androidx.customview.R$dimen: int notification_large_icon_height -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Headline -android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -androidx.preference.R$styleable: int ActionMode_titleTextStyle -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadMessage(okio.ByteString) -androidx.preference.R$drawable: int btn_radio_on_mtrl -james.adaptiveicon.R$id: int alertTitle -androidx.appcompat.R$styleable: int Toolbar_collapseContentDescription -com.google.android.material.timepicker.RadialViewGroup: RadialViewGroup(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$id: int end -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int CountMinute -com.google.android.material.R$styleable: int TabLayout_tabUnboundedRipple -cyanogenmod.app.LiveLockScreenInfo$1: cyanogenmod.app.LiveLockScreenInfo[] newArray(int) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitation -androidx.coordinatorlayout.R$id: int tag_screen_reader_focusable -james.adaptiveicon.R$attr: int actionModeCloseDrawable -wangdaye.com.geometricweather.R$layout: int cpv_preference_circle_large -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerComplete() -androidx.recyclerview.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_tailScale -wangdaye.com.geometricweather.R$id: int withText -androidx.dynamicanimation.R$styleable: int[] GradientColor -androidx.preference.EditTextPreferenceDialogFragmentCompat -okhttp3.Authenticator: okhttp3.Request authenticate(okhttp3.Route,okhttp3.Response) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_AutoCompleteTextView -android.didikee.donate.R$dimen: int abc_text_size_display_1_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.List AirAndPollen -io.reactivex.Observable: io.reactivex.Observable timeout0(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.ObservableSource) -com.bumptech.glide.R$id: int tag_unhandled_key_listeners -com.google.android.material.R$styleable: int Constraint_android_layout_marginLeft -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderFetchStrategy -com.google.android.material.R$styleable: int Constraint_layout_constraintRight_creator -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_to_on_mtrl_015 -wangdaye.com.geometricweather.R$drawable: int ic_tag_off +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_Chip +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone TimeZone +wangdaye.com.geometricweather.R$attr: int checkedIcon +wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout +james.adaptiveicon.R$attr: int windowNoTitle +androidx.constraintlayout.widget.R$styleable: int Layout_constraint_referenced_ids +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: CaiYunMainlyResult$AqiBeanXX() +james.adaptiveicon.R$style: int Widget_AppCompat_Light_SearchView +androidx.work.R$id: int tag_accessibility_clickable_spans +cyanogenmod.hardware.CMHardwareManager: int FEATURE_THERMAL_MONITOR +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.WeatherEntity) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float totalPrecipitation +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderCancelButton +wangdaye.com.geometricweather.common.basic.models.weather.UV: int getUVColor(android.content.Context) +androidx.appcompat.resources.R$drawable: int notification_action_background +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: int getWindowType() +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean done +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconTintMode +wangdaye.com.geometricweather.R$id: int easeIn +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String CountryID +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_submitBackground +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer degreeDayTemperature +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_24 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getWindChillTemperature() +androidx.appcompat.R$dimen: int abc_dialog_min_width_major +cyanogenmod.themes.ThemeManager: void removeClient(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +com.jaredrummler.android.colorpicker.R$layout: int abc_search_dropdown_item_icons_2line +androidx.appcompat.widget.AppCompatImageButton: void setImageResource(int) +com.xw.repo.bubbleseekbar.R$style: int Platform_AppCompat_Light +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onKeyguardShowing(boolean) +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityStarted(android.app.Activity) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Tooltip +androidx.appcompat.R$style: int Base_Widget_AppCompat_EditText +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: java.util.List getDeviceComponentVersions() +com.google.android.material.navigation.NavigationView: void setItemTextAppearance(int) +wangdaye.com.geometricweather.R$string: int resident_location +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +com.google.android.material.R$styleable: int MockView_mock_labelColor +androidx.constraintlayout.widget.R$id: int spacer +okio.Segment: okio.Segment push(okio.Segment) +com.google.android.material.R$styleable: int ViewStubCompat_android_inflatedId +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontStyle +com.turingtechnologies.materialscrollbar.R$id: int labeled +cyanogenmod.weather.RequestInfo$Builder: android.location.Location mLocation +wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_light +okhttp3.internal.cache.DiskLruCache: okio.BufferedSink journalWriter +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImpl +androidx.customview.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.R$id: int item_icon_provider_clearIcon +wangdaye.com.geometricweather.R$styleable: int MaterialButton_strokeColor +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void setInteractivity(boolean) +cyanogenmod.app.PartnerInterface: PartnerInterface(android.content.Context) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_27 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ShapeableImageView +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_ON_NEW_REQUEST +cyanogenmod.hardware.CMHardwareManager: int getThermalState() +com.google.android.material.R$styleable: int MotionScene_defaultDuration +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +com.jaredrummler.android.colorpicker.R$layout: int preference_list_fragment +okhttp3.OkHttpClient: javax.net.SocketFactory socketFactory +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_OVERLAYS +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void dispose() +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Info +androidx.hilt.R$color: int notification_action_color_filter +androidx.constraintlayout.widget.R$attr: int circleRadius +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +com.google.android.material.transformation.ExpandableTransformationBehavior: ExpandableTransformationBehavior(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +wangdaye.com.geometricweather.R$drawable: int notif_temp_108 +cyanogenmod.library.R$id: int event +com.google.android.material.R$style: int Base_Animation_AppCompat_Dialog +androidx.appcompat.R$styleable: int Toolbar_maxButtonHeight +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintTextColor +james.adaptiveicon.R$style: int Platform_V25_AppCompat_Light +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Snackbar +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void request(long) +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item +android.didikee.donate.R$string: int search_menu_title +androidx.appcompat.R$attr: int titleTextAppearance +androidx.viewpager2.R$attr: int fontStyle +android.didikee.donate.R$anim: int abc_shrink_fade_out_from_bottom +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: int Rank +cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder mService +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit +wangdaye.com.geometricweather.R$styleable: int[] AppCompatTheme +androidx.preference.R$color: int abc_background_cache_hint_selector_material_light +wangdaye.com.geometricweather.R$layout: int widget_day_symmetry +androidx.viewpager.widget.PagerTabStrip: void setBackgroundResource(int) +com.turingtechnologies.materialscrollbar.R$attr: int materialButtonStyle +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: android.graphics.Rect getWindowInsets() +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Large +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColor +androidx.constraintlayout.widget.R$attr: int clickAction +wangdaye.com.geometricweather.R$color: int colorTextLight +wangdaye.com.geometricweather.R$drawable: int flag_ru +okhttp3.internal.http2.Http2Reader$Handler +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_round +com.google.android.material.R$styleable: int TabLayout_tabTextAppearance +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerValue(boolean,java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: int UnitType +android.didikee.donate.R$id: int src_over +androidx.constraintlayout.widget.R$attr: int layout_constraintEnd_toEndOf +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setUpdateTime(long) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.jaredrummler.android.colorpicker.R$style: int Preference_CheckBoxPreference +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void dispose() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain12h +wangdaye.com.geometricweather.R$attr: int flow_lastHorizontalBias +androidx.coordinatorlayout.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWeatherText() +androidx.fragment.R$dimen: int notification_big_circle_margin +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setVibratorIntensity(int) +androidx.loader.R$id: int title +com.xw.repo.bubbleseekbar.R$attr: int showDividers +androidx.hilt.work.R$id: int tag_accessibility_actions +james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMark +io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite COMPLETE +wangdaye.com.geometricweather.R$id: int widget_day_week_week_2 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_76 +com.google.android.material.R$attr: int materialCalendarHeaderToggleButton +wangdaye.com.geometricweather.R$id: int item_weather_daily_uv_title +okhttp3.internal.connection.RealConnection: okhttp3.Route route +okhttp3.internal.http2.Http2Codec: void writeRequestHeaders(okhttp3.Request) +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeBottomLeft +com.google.android.material.R$id: int mtrl_internal_children_alpha_tag +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation TOP +com.google.android.material.button.MaterialButton: int getIconSize() +com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorColors(int[]) +okhttp3.EventListener: void requestHeadersEnd(okhttp3.Call,okhttp3.Request) +com.google.android.material.R$color: int foreground_material_light +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableStart +james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country Country +androidx.legacy.coreutils.R$id +com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColorStateList(android.content.res.ColorStateList) +com.google.android.material.chip.ChipGroup: void setShowDividerVertical(int) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_minWidth +androidx.appcompat.resources.R$styleable: int GradientColor_android_endColor +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: long serialVersionUID +androidx.hilt.R$anim: int fragment_fade_exit +wangdaye.com.geometricweather.R$id: int material_clock_face +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_anchor +androidx.preference.R$drawable: int abc_ic_arrow_drop_right_black_24dp +com.bumptech.glide.integration.okhttp.R$attr: int font +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean delayErrors +androidx.preference.R$styleable: int MenuItem_showAsAction +androidx.work.ArrayCreatingInputMerger +com.google.android.material.R$style: int Base_V28_Theme_AppCompat +androidx.viewpager2.R$dimen: int notification_large_icon_width +retrofit2.ParameterHandler$Part: java.lang.reflect.Method method +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalAlign +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours Past18Hours +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Bridge +com.google.android.material.R$dimen: int mtrl_fab_translation_z_hovered_focused +androidx.preference.R$attr: int paddingEnd +io.reactivex.Observable: io.reactivex.Observable delay(io.reactivex.functions.Function) +androidx.appcompat.R$styleable: int AppCompatTextView_drawableLeftCompat +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windSpeedEnd james.adaptiveicon.R$styleable: int SearchView_queryHint -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber -wangdaye.com.geometricweather.R$attr: int unchecked_background_color -cyanogenmod.providers.DataUsageContract: java.lang.String FAST_AVG +com.google.android.material.R$styleable: int KeyTimeCycle_android_translationZ +wangdaye.com.geometricweather.R$attr: int colorSecondary +wangdaye.com.geometricweather.R$attr: int divider +io.reactivex.internal.disposables.SequentialDisposable: SequentialDisposable(io.reactivex.disposables.Disposable) +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.OkHttpClient client +com.google.android.material.transformation.ExpandableBehavior: ExpandableBehavior(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$font: int product_sans_bold +android.didikee.donate.R$styleable: int SwitchCompat_track +androidx.recyclerview.R$id: int italic +android.didikee.donate.R$style: int TextAppearance_AppCompat_Small_Inverse +okhttp3.logging.LoggingEventListener: void connectionReleased(okhttp3.Call,okhttp3.Connection) +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_isSunlightEnhancementSelfManaged +androidx.swiperefreshlayout.R$attr: int font +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +com.google.android.material.chip.Chip: void setChipIcon(android.graphics.drawable.Drawable) +cyanogenmod.hardware.CMHardwareManager: int FEATURE_LONG_TERM_ORBITS +androidx.appcompat.R$id: int off +androidx.preference.R$styleable: int[] SwitchCompat +com.google.android.material.timepicker.ClockHandView: void setOnActionUpListener(com.google.android.material.timepicker.ClockHandView$OnActionUpListener) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX() +cyanogenmod.externalviews.IExternalViewProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +io.reactivex.internal.observers.ForEachWhileObserver: boolean done +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating() +androidx.appcompat.widget.Toolbar: void setNavigationContentDescription(java.lang.CharSequence) +okhttp3.internal.ws.RealWebSocket: boolean send(okio.ByteString,int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_75 +com.xw.repo.bubbleseekbar.R$styleable: int[] ViewBackgroundHelper +com.google.android.material.R$dimen: int design_bottom_navigation_elevation +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: double HoursOfSun +james.adaptiveicon.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +androidx.preference.R$attr: int tooltipText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean getAqi() +com.google.android.material.internal.NavigationMenuItemView: void setHorizontalPadding(int) +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: void writeTo(okio.BufferedSink) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Small +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTag +wangdaye.com.geometricweather.R$attr: int startIconCheckable +cyanogenmod.app.ProfileManager: void setActiveProfile(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: int UnitType +wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity +cyanogenmod.themes.ThemeManager: void logThemeServiceException(java.lang.Exception) +androidx.constraintlayout.widget.R$styleable: int AlertDialog_showTitle +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getSupportBackgroundTintList() +wangdaye.com.geometricweather.R$styleable: int Constraint_android_id +androidx.preference.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$attr: int layout_anchor +androidx.hilt.lifecycle.R$styleable: int FragmentContainerView_android_tag +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingEnd +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_transparent_bg_color +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_trackTint +androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Line2 +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomNavigationView +com.google.android.material.transformation.ExpandableTransformationBehavior +wangdaye.com.geometricweather.R$styleable: int Preference_isPreferenceVisible +androidx.appcompat.R$anim: int abc_popup_exit +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTintMode +wangdaye.com.geometricweather.R$drawable: int notif_temp_60 +wangdaye.com.geometricweather.db.entities.AlertEntity: int priority +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeightLarge +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String getWeatherText() +android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.os.IBinder mRemote +androidx.swiperefreshlayout.R$id: int text2 +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: void setParent(io.reactivex.internal.operators.observable.ObservablePublish$PublishObserver) +com.google.android.material.chip.ChipGroup: void setSingleLine(int) +com.google.android.material.R$styleable: int ConstraintSet_android_transformPivotX +androidx.loader.R$id: int actions +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton_CloseMode +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_altSrc +io.reactivex.Observable: io.reactivex.Observable throttleWithTimeout(long,java.util.concurrent.TimeUnit) +cyanogenmod.app.CMContextConstants +com.xw.repo.bubbleseekbar.R$styleable: int[] StateListDrawable +androidx.hilt.lifecycle.R$id: int icon +androidx.preference.R$style: int TextAppearance_AppCompat_Small_Inverse +androidx.hilt.R$id: int tag_accessibility_pane_title +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: CaiYunMainlyResult$BrandInfoBeanXX() +androidx.constraintlayout.widget.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long readKey(android.database.Cursor,int) +androidx.lifecycle.SavedStateHandle: boolean contains(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customColorDrawableValue +com.turingtechnologies.materialscrollbar.R$id: int search_mag_icon +androidx.hilt.R$attr: int fontStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_liftOnScrollTargetViewId +james.adaptiveicon.R$dimen: int notification_large_icon_height +androidx.preference.R$attr: int selectableItemBackgroundBorderless +androidx.constraintlayout.widget.R$attr: int layout_constraintBaseline_creator +okhttp3.internal.http2.Http2Connection$3: okhttp3.internal.http2.Http2Connection this$0 +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: android.os.IBinder mRemote +com.google.android.material.R$attr: int checkedIcon +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableBottom +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getDensityVoice(android.content.Context,float) +com.google.android.material.R$styleable: int KeyCycle_wavePeriod +com.turingtechnologies.materialscrollbar.R$attr: int navigationMode +androidx.fragment.R$dimen: int notification_action_icon_size +com.turingtechnologies.materialscrollbar.R$id: int fixed +com.turingtechnologies.materialscrollbar.R$attr: int actionOverflowMenuStyle +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleTintMode +wangdaye.com.geometricweather.R$string: int forecast +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetBottom +okhttp3.internal.ws.RealWebSocket$2: okhttp3.internal.ws.RealWebSocket this$0 +androidx.lifecycle.LiveData: boolean hasObservers() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_126 +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status REJECTED +androidx.viewpager.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.R$drawable: int notif_temp_57 +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.util.Date date +wangdaye.com.geometricweather.R$interpolator: int mtrl_fast_out_linear_in +okhttp3.internal.connection.RouteSelector: java.util.List proxies +okhttp3.CacheControl: boolean mustRevalidate +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingBottom +androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +com.google.android.material.R$styleable: int FloatingActionButton_rippleColor +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.String getAqiText() +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int requestFusion(int) +cyanogenmod.externalviews.ExternalView$8: void run() +androidx.hilt.R$id: int tag_accessibility_heading +com.google.android.material.R$styleable: int MaterialRadioButton_buttonTint wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: boolean isChinese() -com.google.android.material.R$style: int Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: double Value -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_creator -okio.RealBufferedSink: okio.BufferedSink write(byte[]) -androidx.recyclerview.R$styleable: int GradientColorItem_android_color -com.jaredrummler.android.colorpicker.R$attr: int titleMarginBottom -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -com.google.android.material.R$string: int abc_searchview_description_query -com.jaredrummler.android.colorpicker.R$drawable: int abc_tab_indicator_material -wangdaye.com.geometricweather.R$attr: int collapseContentDescription -okhttp3.CipherSuite$1: CipherSuite$1() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ab_share_pack_mtrl_alpha -cyanogenmod.platform.R$bool -com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getHelperText() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setWeather(java.lang.String) -wangdaye.com.geometricweather.background.receiver.widget.WidgetDayProvider -wangdaye.com.geometricweather.R$attr: int maxActionInlineWidth -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_visible -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_textAppearance -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents -com.google.android.material.R$dimen: int mtrl_extended_fab_elevation -com.google.android.material.textfield.TextInputEditText -androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Tooltip -androidx.constraintlayout.motion.widget.MotionLayout: void setInterpolatedProgress(float) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_51 -james.adaptiveicon.R$styleable: int ColorStateListItem_android_color -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.functions.Function mapper -cyanogenmod.weather.CMWeatherManager$2$2: cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener val$listener -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tMax -io.reactivex.internal.util.VolatileSizeArrayList: VolatileSizeArrayList() -androidx.work.R$bool -wangdaye.com.geometricweather.R$attr: int itemRippleColor -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableRightCompat -wangdaye.com.geometricweather.R$attr: int msb_recyclerView -com.google.android.material.R$drawable: int abc_ic_arrow_drop_right_black_24dp -com.bumptech.glide.R$id: int end -androidx.appcompat.R$integer: int config_tooltipAnimTime -androidx.preference.R$styleable: int DrawerArrowToggle_color -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.util.List getValue() -androidx.preference.R$styleable: int MenuItem_iconTintMode -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog -androidx.customview.R$styleable: int GradientColorItem_android_color -androidx.hilt.work.R$layout: int notification_action -cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(cyanogenmod.app.CustomTile$1) -okhttp3.Response$Builder: okhttp3.Response$Builder body(okhttp3.ResponseBody) -androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean() -com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderVisible(boolean) -androidx.preference.R$color: int secondary_text_disabled_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionButtonStyle -com.xw.repo.bubbleseekbar.R$styleable: int[] LinearLayoutCompat_Layout -wangdaye.com.geometricweather.R$integer: int mtrl_btn_anim_duration_ms -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: void run() -okhttp3.Response: java.lang.String toString() -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItemSecondary -androidx.appcompat.resources.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.R$drawable: int notif_temp_92 -com.google.android.material.R$styleable: int Transform_android_scaleY -androidx.customview.R$color: int notification_icon_bg_color -james.adaptiveicon.R$string: int abc_searchview_description_clear -com.google.android.material.appbar.CollapsingToolbarLayout: int getCollapsedTitleGravity() -androidx.constraintlayout.widget.R$color: int abc_background_cache_hint_selector_material_dark -androidx.lifecycle.extensions.R$id: int right_icon -wangdaye.com.geometricweather.R$drawable: int notif_temp_59 -com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_simple_overlay_action_mode -cyanogenmod.weatherservice.WeatherProviderService$1: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) -com.google.android.material.bottomnavigation.BottomNavigationView: android.graphics.drawable.Drawable getItemBackground() -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer dewPoint -com.google.android.material.R$styleable: int SwitchCompat_thumbTextPadding -okhttp3.internal.http2.Http2Connection$1: Http2Connection$1(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okhttp3.internal.http2.ErrorCode) -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_transitionEasing -androidx.lifecycle.extensions.R$styleable: int Fragment_android_tag -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$layout: int support_simple_spinner_dropdown_item -com.xw.repo.bubbleseekbar.R$color: int primary_text_default_material_light -androidx.appcompat.R$attr: int drawerArrowStyle -cyanogenmod.app.CustomTile$ExpandedStyle -okhttp3.internal.http.HttpCodec: okio.Sink createRequestBody(okhttp3.Request,long) -androidx.customview.R$id: int text2 -com.google.android.material.R$id: int dragDown -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleTint -androidx.coordinatorlayout.widget.CoordinatorLayout: androidx.core.view.WindowInsetsCompat getLastWindowInsets() -cyanogenmod.externalviews.KeyguardExternalView$10: cyanogenmod.externalviews.KeyguardExternalView this$0 -cyanogenmod.weather.CMWeatherManager$1: cyanogenmod.weather.CMWeatherManager this$0 -androidx.fragment.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$attr: int waveOffset -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.Integer alti -androidx.viewpager.R$dimen: int notification_top_pad_large_text -okhttp3.internal.http2.Http2Connection$7: Http2Connection$7(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okhttp3.internal.http2.ErrorCode) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_47 -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.util.ErrorMode errorMode -androidx.constraintlayout.motion.widget.MotionLayout: void setProgress(float) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ProgressBar_Horizontal -okio.BufferedSource: long readAll(okio.Sink) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getPivotY() -wangdaye.com.geometricweather.R$attr: int mock_showDiagonals -wangdaye.com.geometricweather.R$attr: int panelMenuListWidth -wangdaye.com.geometricweather.db.entities.AlertEntity: long getTime() -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Bridge -androidx.lifecycle.Transformations$2: androidx.arch.core.util.Function val$switchMapFunction -com.jaredrummler.android.colorpicker.R$attr: int expandActivityOverflowButtonDrawable -com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_action_area -okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory sslSocketFactory() -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_background -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -com.bumptech.glide.integration.okhttp.R$id: int line1 -androidx.recyclerview.R$attr: int font -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_PLAY_QUEUE_VALIDATOR -com.jaredrummler.android.colorpicker.R$layout: int abc_search_view -com.turingtechnologies.materialscrollbar.R$attr: int keylines -androidx.appcompat.R$attr: int actionModeCloseDrawable -wangdaye.com.geometricweather.db.entities.LocationEntityDao -androidx.fragment.R$id: int tag_accessibility_pane_title -com.turingtechnologies.materialscrollbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -androidx.hilt.work.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$color: int abc_tint_default -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_cpuBoost_0 -okio.HashingSink: okio.HashingSink hmacSha1(okio.Sink,okio.ByteString) -james.adaptiveicon.R$attr: int state_above_anchor -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder hasSensitiveData(boolean) -androidx.recyclerview.R$drawable -wangdaye.com.geometricweather.R$attr: int subtitle -wangdaye.com.geometricweather.R$style: int Preference_DropDown_Material -com.google.android.material.R$attr: int panelMenuListWidth -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorGravity(int) -androidx.swiperefreshlayout.R$dimen: int notification_top_pad_large_text -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -okio.BufferedSink: okio.BufferedSink write(okio.Source,long) -com.google.android.material.R$dimen: int mtrl_calendar_pre_l_text_clip_padding -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.TimeUnit unit -androidx.appcompat.R$anim -com.google.android.material.R$attr: int currentState -com.jaredrummler.android.colorpicker.R$dimen: int abc_alert_dialog_button_bar_height -androidx.appcompat.resources.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$string: int settings_title_appearance -com.google.android.material.R$attr: int expandActivityOverflowButtonDrawable -com.bumptech.glide.integration.okhttp.R$dimen: int notification_large_icon_height -james.adaptiveicon.R$attr: int trackTintMode -io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$attr: int buttonBarStyle -wangdaye.com.geometricweather.common.basic.models.weather.Base: long publishTime -cyanogenmod.platform.Manifest$permission: java.lang.String READ_WEATHER -wangdaye.com.geometricweather.db.entities.WeatherEntity: long getUpdateTime() -com.google.android.material.R$styleable: int ViewStubCompat_android_id -wangdaye.com.geometricweather.R$drawable: int notif_temp_96 -wangdaye.com.geometricweather.R$attr: int dropdownPreferenceStyle -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -cyanogenmod.themes.ThemeManager: void onClientResumed(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +com.jaredrummler.android.colorpicker.R$attr: int cpv_colorShape +com.google.android.material.R$string: int character_counter_content_description +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getAqiIndex() +wangdaye.com.geometricweather.R$array: int precipitation_units +com.google.android.material.R$attr: int layout_anchorGravity +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: androidx.lifecycle.LiveData mLiveData +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_middle_mtrl_dark +androidx.appcompat.R$color: int tooltip_background_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String level +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_android_textAppearance +james.adaptiveicon.R$style: int Widget_AppCompat_ButtonBar +io.reactivex.internal.queue.SpscArrayQueue: int mask +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgress(float) +com.google.android.material.R$drawable: int design_bottom_navigation_item_background +com.google.android.material.R$drawable: int design_fab_background +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String TypeID +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfPrecipitation +androidx.core.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotationY +com.jaredrummler.android.colorpicker.R$attr: int cpv_showDialog +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature +io.reactivex.Observable: io.reactivex.Maybe lastElement() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset +androidx.viewpager2.R$styleable: int GradientColor_android_centerY +cyanogenmod.hardware.CMHardwareManager: int[] getVibratorIntensityArray() +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: float getMax() +cyanogenmod.app.Profile$1: cyanogenmod.app.Profile createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: MfHistoryResult$History$Snow() +com.google.android.material.R$style: int Widget_MaterialComponents_CollapsingToolbar +okio.BufferedSink: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemBackground +com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonTint +com.google.android.material.R$string: int path_password_eye_mask_strike_through +wangdaye.com.geometricweather.R$attr: int applyMotionScene +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +androidx.appcompat.R$dimen: int abc_action_bar_stacked_max_height +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath +wangdaye.com.geometricweather.background.polling.work.worker.NormalUpdateWorker: NormalUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) +com.google.android.material.R$id: int material_clock_hand +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitationProbability +wangdaye.com.geometricweather.R$color: int notification_background_o +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: android.os.IBinder mRemote +androidx.constraintlayout.widget.R$styleable: int ActionMode_backgroundSplit +com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String VERSION_NAME +retrofit2.Utils$GenericArrayTypeImpl: java.lang.reflect.Type componentType +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_PopupMenu +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String district +okhttp3.internal.http2.Http2Connection: boolean isHealthy(long) +wangdaye.com.geometricweather.R$string: int key_distance_unit +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: ObservableGroupBy$GroupByObserver(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,int,boolean) +wangdaye.com.geometricweather.R$dimen: int widget_aa_text_size +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +androidx.loader.R$id: int tag_unhandled_key_listeners +okhttp3.RequestBody$2: okhttp3.MediaType contentType() +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult +com.jaredrummler.android.colorpicker.R$attr: int submitBackground +com.google.android.material.R$styleable: int MaterialCardView_checkedIconMargin +james.adaptiveicon.R$attr: int textAppearanceLargePopupMenu +androidx.preference.R$attr: int textAppearanceListItemSecondary +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +androidx.preference.R$styleable: int AppCompatTheme_dialogTheme +com.google.android.material.R$color: int switch_thumb_normal_material_light +com.google.android.material.R$plurals +com.turingtechnologies.materialscrollbar.R$attr: int barLength +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX speed +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation valueOf(java.lang.String) +com.google.android.material.R$attr: int expandedTitleMargin +wangdaye.com.geometricweather.R$attr: int homeAsUpIndicator +android.didikee.donate.R$dimen: int abc_edit_text_inset_top_material +cyanogenmod.app.ThemeComponent +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TabLayout +com.google.android.material.R$attr: int dialogPreferredPadding +cyanogenmod.hardware.CMHardwareManager: int FEATURE_TOUCH_HOVERING +james.adaptiveicon.R$id: int expanded_menu +io.reactivex.disposables.RunnableDisposable: void onDisposed(java.lang.Runnable) +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.R$anim: int fragment_manange_pop_exit +james.adaptiveicon.R$attr: int textAppearanceListItem +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_SearchView +com.xw.repo.bubbleseekbar.R$attr: int alertDialogButtonGroupStyle +cyanogenmod.weather.CMWeatherManager$RequestStatus: int SUBMITTED_TOO_SOON +retrofit2.Call: okhttp3.Request request() +cyanogenmod.profiles.StreamSettings: StreamSettings(int) +wangdaye.com.geometricweather.R$attr: int dayTodayStyle +cyanogenmod.app.ThemeVersion$ComponentVersion +okio.Okio: Okio() +cyanogenmod.power.IPerformanceManager: int getPowerProfile() +okhttp3.internal.cache.DiskLruCache$Entry: java.io.File[] cleanFiles +androidx.lifecycle.SavedStateHandle$1: androidx.lifecycle.SavedStateHandle this$0 +wangdaye.com.geometricweather.R$styleable: int Preference_enableCopying +com.google.android.material.R$id: int month_navigation_fragment_toggle +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getResidentPosition() +com.google.android.material.R$animator: int mtrl_fab_show_motion_spec +io.reactivex.Observable: io.reactivex.Observable throttleLast(long,java.util.concurrent.TimeUnit) +cyanogenmod.profiles.StreamSettings: StreamSettings(android.os.Parcel) +okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String key +com.google.android.material.R$attr: int recyclerViewStyle +androidx.appcompat.R$attr: int tickMark +com.bumptech.glide.R$id: int start +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_RC4_128_SHA +androidx.preference.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Snackbar_FullWidth +james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_RadioButton +androidx.preference.R$color: int button_material_dark +cyanogenmod.app.CustomTile$Builder: CustomTile$Builder(android.content.Context) +com.google.android.material.circularreveal.cardview.CircularRevealCardView +com.google.android.material.R$styleable: int Chip_checkedIcon +androidx.viewpager2.R$dimen: int item_touch_helper_swipe_escape_max_velocity +androidx.viewpager.R$dimen: int compat_notification_large_icon_max_height +androidx.fragment.R$id: int notification_main_column_container +cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings(int,boolean) +cyanogenmod.themes.ThemeManager: java.lang.String access$100() +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.Class serverProviderClass +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean delayErrors +androidx.constraintlayout.widget.R$attr: int mock_label +androidx.appcompat.widget.ActivityChooserView: void setExpandActivityOverflowButtonContentDescription(int) +okhttp3.internal.Util$1: int compare(java.lang.Object,java.lang.Object) +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onSuccess(java.lang.Object) +com.jaredrummler.android.colorpicker.R$attr: int logo +cyanogenmod.util.ColorUtils: double calculateDeltaE(double,double,double,double,double,double) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSubtitle1 +androidx.preference.R$id: int src_in +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void dispose() +okhttp3.internal.http2.Http2Connection: int maxConcurrentStreams() +wangdaye.com.geometricweather.R$attr: int textAppearanceBody1 +androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_android_color +androidx.constraintlayout.widget.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +com.google.android.material.R$color: int mtrl_navigation_item_text_color +wangdaye.com.geometricweather.R$attr: int statusBarForeground +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior: ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior() +wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Light_Dialog +androidx.preference.R$style: int TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.R$dimen: int mtrl_card_spacing +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_8 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedHeightMajor +cyanogenmod.app.CustomTile$RemoteExpandedStyle +androidx.constraintlayout.widget.R$styleable: int Constraint_android_elevation +wangdaye.com.geometricweather.R$drawable: int clock_dial_dark +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontStyle +androidx.customview.R$dimen: int compat_button_inset_vertical_material +androidx.lifecycle.extensions.R$id: int text +wangdaye.com.geometricweather.R$styleable: int MenuView_preserveIconSpacing +androidx.activity.R$color: int secondary_text_default_material_light +okio.Pipe$PipeSource +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius +androidx.work.R$dimen: int notification_small_icon_size_as_large +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_CONDITION +com.google.gson.stream.JsonReader: int PEEKED_UNQUOTED_NAME +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_change_size_expand_motion_spec +io.reactivex.internal.util.NotificationLite: java.lang.Throwable getError(java.lang.Object) +androidx.lifecycle.LifecycleRegistry$ObserverWithState: LifecycleRegistry$ObserverWithState(androidx.lifecycle.LifecycleObserver,androidx.lifecycle.Lifecycle$State) +androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setO3(java.lang.String) +com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_end +io.reactivex.Observable: io.reactivex.Observable timer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxySelector(java.net.ProxySelector) +james.adaptiveicon.R$styleable: int AlertDialog_android_layout +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +androidx.preference.R$styleable: int AppCompatImageView_tintMode +androidx.constraintlayout.widget.R$id: int text2 +com.google.android.material.R$styleable: int RecycleListView_paddingBottomNoButtons +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_BottomSheet +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: double Value +com.jaredrummler.android.colorpicker.R$layout: int select_dialog_singlechoice_material +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +com.bumptech.glide.integration.okhttp.R$styleable: int[] FontFamilyFont +okhttp3.OkHttpClient: okhttp3.ConnectionPool connectionPool() +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type[] getUpperBounds() +androidx.preference.R$styleable: int PreferenceGroup_initialExpandedChildrenCount +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric +io.reactivex.Observable: io.reactivex.Observable sorted(java.util.Comparator) +retrofit2.KotlinExtensions: java.lang.Object suspendAndThrow(java.lang.Exception,kotlin.coroutines.Continuation) +androidx.swiperefreshlayout.R$id: int tag_accessibility_clickable_spans +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeShareDrawable +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_LOW_COLOR_VALIDATOR +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.bumptech.glide.R$dimen: int compat_control_corner_material +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl +wangdaye.com.geometricweather.R$id: int notification_background +com.jaredrummler.android.colorpicker.R$styleable: int[] FontFamily +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int[] MaterialShape +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource CN +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult +androidx.work.R$bool: R$bool() +androidx.lifecycle.SavedStateViewModelFactory +wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_layout +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY_DAY +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_disableDependentsState +io.reactivex.internal.subscriptions.DeferredScalarSubscription +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_width_material +wangdaye.com.geometricweather.R$attr: int boxStrokeErrorColor +james.adaptiveicon.R$styleable: int ActionBar_titleTextStyle +androidx.preference.R$styleable: int ActionBar_contentInsetEndWithActions +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyTopRight +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: java.lang.Object index +wangdaye.com.geometricweather.R$animator: int weather_hail_3 +androidx.lifecycle.ClassesInfoCache$CallbackInfo: void invokeMethodsForEvent(java.util.List,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) +com.google.android.material.R$attr: int itemTextAppearance +androidx.appcompat.R$attr: int textAppearancePopupMenuHeader +wangdaye.com.geometricweather.R$string: int done +androidx.hilt.R$id: int line3 +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Title +androidx.lifecycle.extensions.R$dimen: int compat_button_inset_vertical_material +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_max +com.google.android.material.R$attr: int contentPaddingTop +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_29 +okio.ByteString: int hashCode() +james.adaptiveicon.R$attr: int panelMenuListTheme +com.google.gson.LongSerializationPolicy$2: com.google.gson.JsonElement serialize(java.lang.Long) +okhttp3.internal.cache.DiskLruCache: void completeEdit(okhttp3.internal.cache.DiskLruCache$Editor,boolean) +com.xw.repo.bubbleseekbar.R$id: int uniform +androidx.constraintlayout.widget.R$attr: int checkboxStyle +android.didikee.donate.R$id: int chronometer +okio.ByteString: byte[] internalArray() +com.xw.repo.bubbleseekbar.R$color: int abc_color_highlight_material +androidx.preference.R$styleable: int SwitchCompat_thumbTint +androidx.lifecycle.extensions.R$drawable: int notification_icon_background +com.google.android.material.transformation.ExpandableBehavior +androidx.preference.R$style: int Platform_AppCompat +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_padding_left +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeWindSpeed() +okhttp3.Interceptor$Chain: int writeTimeoutMillis() +androidx.core.R$id: int action_text +com.jaredrummler.android.colorpicker.R$id: int group_divider +wangdaye.com.geometricweather.R$attr: int colorBackgroundFloating +james.adaptiveicon.R$styleable: int[] MenuGroup +androidx.swiperefreshlayout.R$color: int ripple_material_light +james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat +retrofit2.RequestFactory$Builder: boolean isMultipart +androidx.hilt.work.R$styleable: int[] FontFamily +android.support.v4.os.IResultReceiver$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float total +com.google.android.material.R$drawable: int ic_keyboard_black_24dp +androidx.preference.R$styleable: int AppCompatTheme_colorControlActivated +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onError(java.lang.Throwable) +james.adaptiveicon.R$attr: int thickness +wangdaye.com.geometricweather.R$styleable: int Preference_allowDividerAbove +androidx.transition.R$dimen +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleEnabled +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle valueOf(java.lang.String) +wangdaye.com.geometricweather.R$attr: int windowMinWidthMajor +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Tooltip +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onSubscribe(org.reactivestreams.Subscription) +androidx.constraintlayout.widget.R$id: int search_voice_btn +com.google.gson.internal.LinkedTreeMap: java.util.Set keySet() +wangdaye.com.geometricweather.R$attr: int summary +wangdaye.com.geometricweather.R$id: int decelerateAndComplete +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_padding_start_material +okhttp3.EventListener: void requestHeadersStart(okhttp3.Call) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onStop() +com.google.gson.stream.JsonReader: void setLenient(boolean) +androidx.appcompat.R$attr: int panelMenuListTheme +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: java.lang.String English +androidx.lifecycle.LiveData$AlwaysActiveObserver: androidx.lifecycle.LiveData this$0 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_55 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer grassIndex +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_second_track_size +wangdaye.com.geometricweather.R$drawable: int notif_temp_15 +androidx.dynamicanimation.R$style: int Widget_Compat_NotificationActionContainer +retrofit2.KotlinExtensions$await$2$2: void onResponse(retrofit2.Call,retrofit2.Response) +wangdaye.com.geometricweather.R$attr: int msb_handleColor +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constrainedWidth +androidx.preference.internal.PreferenceImageView: int getMaxHeight() +androidx.appcompat.R$dimen: int abc_edit_text_inset_top_material +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String description +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Caption +androidx.hilt.work.R$id: int accessibility_custom_action_13 +com.google.android.material.R$string: int abc_action_mode_done +wangdaye.com.geometricweather.R$drawable: int notif_temp_102 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String humidity +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getWetBulbTemperature() +cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7 +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegments(java.lang.String) +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Title +androidx.lifecycle.GeneratedAdapter +com.google.android.material.R$styleable: int KeyAttribute_android_rotationY +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Link +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_2 +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_alpha +androidx.preference.R$styleable: int LinearLayoutCompat_android_weightSum +okhttp3.internal.http.RealInterceptorChain: int calls +androidx.constraintlayout.widget.R$id: int dialog_button +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_NoActionBar +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display2 +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_hideMotionSpec +com.bumptech.glide.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$layout: int item_weather_icon +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTintMode +androidx.preference.R$attr: int layout_anchorGravity +androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context) +okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_text_size +wangdaye.com.geometricweather.R$color: int darkPrimary_3 +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Tooltip +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_dither +androidx.appcompat.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getPasswordVisibilityToggleDrawable() +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onNext(java.lang.Object) +cyanogenmod.platform.R$drawable: R$drawable() +com.google.android.material.R$attr: int roundPercent +androidx.hilt.R$dimen: int notification_small_icon_size_as_large +james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Light +okio.SegmentPool: long byteCount +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event BACKGROUND_UPDATE +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit PERCENT +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getTreeLevel() +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode DARK +androidx.preference.R$attr: int background +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property CloudCover +androidx.appcompat.R$id: int accessibility_custom_action_1 +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List minutelyForecast +com.turingtechnologies.materialscrollbar.R$attr: int tintMode +androidx.constraintlayout.widget.R$anim: int abc_grow_fade_in_from_bottom +wangdaye.com.geometricweather.R$id: int dialog_location_help_locationTitle +androidx.preference.R$attr: int alertDialogStyle +io.reactivex.Observable: io.reactivex.Observable switchMap(io.reactivex.functions.Function,int) +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_left_mtrl_dark +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DialogWhenLarge +androidx.hilt.work.R$dimen: int notification_small_icon_background_padding +okhttp3.FormBody: long writeOrCountBytes(okio.BufferedSink,boolean) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX +okhttp3.RealCall: okhttp3.EventListener eventListener +androidx.fragment.R$id: int accessibility_custom_action_1 +cyanogenmod.weather.WeatherInfo: double mTodaysLowTemp +com.bumptech.glide.R$attr: int fontProviderCerts +androidx.hilt.R$styleable: int GradientColor_android_startColor +androidx.vectordrawable.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.R$attr: int behavior_autoShrink +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LOCK_WALLPAPER_PREVIEW +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_DialogWhenLarge +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconSize +com.google.android.material.R$attr: int panelMenuListTheme +com.xw.repo.bubbleseekbar.R$style: int Base_V28_Theme_AppCompat +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar +com.google.android.material.R$attr: int colorOnSurface +com.google.android.material.R$attr: int checkedIconSize +wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_bottom_material +com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabStyle +retrofit2.RequestBuilder: okhttp3.HttpUrl$Builder urlBuilder +wangdaye.com.geometricweather.R$styleable: int ActionMenuItemView_android_minWidth +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu +wangdaye.com.geometricweather.R$string: int alipay +okhttp3.Cache: boolean isClosed() +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayDetailsProvider: WidgetClockDayDetailsProvider() +com.google.android.material.R$dimen: int material_clock_number_text_size +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCutDrawable +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SearchView +james.adaptiveicon.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.R$string: int widget_day_week +androidx.work.R$id: int accessibility_custom_action_18 +wangdaye.com.geometricweather.R$string: int material_timepicker_hour +com.google.android.material.R$styleable: int TabLayout_tabPaddingEnd +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_showTitle +james.adaptiveicon.R$attr: int actionModeFindDrawable +cyanogenmod.app.Profile$TriggerState: int DISABLED +wangdaye.com.geometricweather.R$drawable: int ic_forecast +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceCategoryStyle +com.turingtechnologies.materialscrollbar.R$color: int secondary_text_disabled_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setDate(java.lang.String) +com.turingtechnologies.materialscrollbar.R$id: int item_touch_helper_previous_elevation android.didikee.donate.R$attr: int customNavigationLayout -james.adaptiveicon.R$dimen: int notification_action_icon_size -retrofit2.ParameterHandler$RawPart: void apply(retrofit2.RequestBuilder,okhttp3.MultipartBody$Part) -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusBottomEnd() -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_elevation -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default -androidx.hilt.work.R$dimen: int notification_action_text_size -com.google.android.material.R$id: int deltaRelative -androidx.drawerlayout.R$id: int normal -wangdaye.com.geometricweather.R$id: int widget_week_icon_2 -wangdaye.com.geometricweather.R$attr: int itemStrokeWidth -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabStyle -androidx.appcompat.R$dimen: int abc_dialog_title_divider_material -com.google.android.material.R$styleable: int[] ActionBar -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_creator -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int lastIndex -androidx.preference.R$id: int default_activity_button -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnwd -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalStyle -androidx.loader.R$attr: int fontProviderCerts -com.turingtechnologies.materialscrollbar.R$styleable: int[] TextAppearance -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State min(androidx.lifecycle.Lifecycle$State,androidx.lifecycle.Lifecycle$State) -com.jaredrummler.android.colorpicker.R$attr: int dialogPreferenceStyle -com.google.android.material.R$dimen: int mtrl_progress_indicator_size -com.jaredrummler.android.colorpicker.R$styleable: int[] LinearLayoutCompat -androidx.legacy.coreutils.R$styleable: int ColorStateListItem_android_color -androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_percent -androidx.appcompat.resources.R$id: int accessibility_custom_action_6 -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_bottom -com.google.gson.stream.JsonReader: void skipToEndOfLine() -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int FUSED -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit -io.reactivex.Observable: io.reactivex.Observable unsubscribeOn(io.reactivex.Scheduler) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setUrl(java.lang.String) -androidx.preference.R$styleable: int[] ListPreference -cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,android.content.ComponentName) -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setBackgroundResource(int) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleTint -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_layout -wangdaye.com.geometricweather.main.fragments.ManagementFragment -wangdaye.com.geometricweather.R$id: int SHOW_PATH -androidx.constraintlayout.widget.R$dimen: int abc_control_inset_material -okhttp3.internal.http1.Http1Codec$FixedLengthSink -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setTranslateX(float) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: java.lang.String desc -com.google.android.material.R$styleable: int KeyCycle_android_translationZ -wangdaye.com.geometricweather.common.basic.models.weather.UV: boolean isValidIndex() -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void innerError(java.lang.Throwable) -androidx.constraintlayout.widget.R$id: int parentPanel -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: boolean isDisposed() -wangdaye.com.geometricweather.R$attr: int dialogPreferenceStyle -androidx.preference.R$attr: int actionModeWebSearchDrawable +james.adaptiveicon.R$styleable: int View_android_theme +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode DEFAULT +androidx.appcompat.widget.ButtonBarLayout: void setAllowStacking(boolean) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionDropDownStyle +com.google.android.material.R$style: int Base_V22_Theme_AppCompat +androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable mLastDispatchRunnable +okhttp3.OkHttpClient: javax.net.ssl.HostnameVerifier hostnameVerifier +androidx.preference.R$attr: int layout +com.google.android.material.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_5 +androidx.swiperefreshlayout.R$id: int actions +androidx.recyclerview.widget.RecyclerView: void setHasFixedSize(boolean) +com.google.android.material.R$styleable: int Constraint_flow_horizontalStyle +com.google.android.material.R$color: int abc_secondary_text_material_dark +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onNext(java.lang.Object) +cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(android.os.Parcel,cyanogenmod.weatherservice.ServiceRequestResult$1) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_itemPadding +androidx.constraintlayout.widget.R$attr: int colorButtonNormal +com.turingtechnologies.materialscrollbar.R$attr: int switchPadding +wangdaye.com.geometricweather.R$attr: int bottom_text_color +com.bumptech.glide.Registry$MissingComponentException: Registry$MissingComponentException(java.lang.String) +androidx.appcompat.R$color: int abc_primary_text_disable_only_material_dark +androidx.hilt.R$dimen: int compat_button_inset_vertical_material +com.google.gson.stream.JsonReader: int PEEKED_DOUBLE_QUOTED +androidx.appcompat.R$anim: int abc_slide_out_top +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$dimen: int abc_text_size_headline_material +com.bumptech.glide.integration.okhttp.R$style: int Widget_Compat_NotificationActionText +androidx.lifecycle.extensions.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.R$dimen: int abc_dialog_list_padding_top_no_title +com.google.android.material.R$styleable: int[] Constraint +com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_offset +androidx.appcompat.R$style: int Animation_AppCompat_Dialog +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult +okio.GzipSink: void writeHeader() +androidx.appcompat.R$attr: int tooltipForegroundColor +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onNext(java.lang.Object) +cyanogenmod.themes.ThemeManager$2: ThemeManager$2(cyanogenmod.themes.ThemeManager) +wangdaye.com.geometricweather.R$attr: int logo +androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$string: int abc_searchview_description_submit +androidx.appcompat.R$attr: int switchPadding +com.google.android.material.R$color: int mtrl_outlined_icon_tint +com.turingtechnologies.materialscrollbar.R$attr: int paddingEnd +io.reactivex.Observable: io.reactivex.Observable startWithArray(java.lang.Object[]) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void complete() +cyanogenmod.externalviews.KeyguardExternalView$3: void run() +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.Observer downstream +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.loader.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$id: int date_picker_actions +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: double Value +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_CBC_SHA256 +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setAppOverlay(java.lang.String,java.lang.String) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean isEmpty() +androidx.hilt.R$dimen: int compat_button_inset_horizontal_material +io.reactivex.Observable: java.lang.Object blockingFirst() +wangdaye.com.geometricweather.common.rxjava.BaseObserver: BaseObserver() +wangdaye.com.geometricweather.settings.dialogs.WechatDonateDialog +androidx.preference.R$style: int Widget_AppCompat_ActionBar +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPopupWindowStyle +okio.ByteString: okio.ByteString hmac(java.lang.String,okio.ByteString) +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_2 +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties +androidx.loader.R$dimen: int notification_subtext_size +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean profileExists(android.os.ParcelUuid) +com.turingtechnologies.materialscrollbar.R$attr: int lineHeight +android.didikee.donate.R$string: int abc_action_bar_home_description +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetLeft +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +com.xw.repo.bubbleseekbar.R$color: int tooltip_background_light +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.preference.R$dimen: int compat_button_padding_vertical_material +com.jaredrummler.android.colorpicker.R$drawable: int notification_template_icon_low_bg +cyanogenmod.weather.RequestInfo: int access$202(cyanogenmod.weather.RequestInfo,int) +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +io.reactivex.internal.operators.observable.ObservableReplay$Node: java.lang.Object value +wangdaye.com.geometricweather.R$styleable: int[] ListPopupWindow +com.google.android.material.R$drawable: int abc_tab_indicator_material +james.adaptiveicon.R$attr: int maxButtonHeight +com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Dialog +com.xw.repo.bubbleseekbar.R$string: int abc_capital_on +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.R$id: int widget_week_week_4 +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String moonPhaseDescription +okhttp3.internal.cache2.Relay: int SOURCE_FILE +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void removeCustomTileFromListener(cyanogenmod.app.ICustomTileListener,java.lang.String,java.lang.String,int) +cyanogenmod.providers.CMSettings$Secure: android.net.Uri CONTENT_URI +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_RESULT_VALUE +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_visible +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +com.jaredrummler.android.colorpicker.R$attr: int actionModeFindDrawable +retrofit2.ParameterHandler$1: retrofit2.ParameterHandler this$0 +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_Underlined +wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogLayout +wangdaye.com.geometricweather.R$drawable: int notif_temp_91 +retrofit2.BuiltInConverters$VoidResponseBodyConverter: BuiltInConverters$VoidResponseBodyConverter() +com.google.android.material.R$id: int dragUp +cyanogenmod.themes.IThemeService$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getSnowPrecipitationProbability() +wangdaye.com.geometricweather.R$id: int cancel_button +okhttp3.internal.http2.Hpack: okio.ByteString checkLowercase(okio.ByteString) +com.google.gson.stream.JsonReader: java.lang.String getPath() +okhttp3.internal.platform.Platform: boolean isCleartextTrafficPermitted(java.lang.String) +androidx.fragment.R$attr: int ttcIndex +androidx.preference.R$layout: int notification_template_part_time +androidx.work.R$bool: int enable_system_job_service_default +retrofit2.HttpServiceMethod: retrofit2.HttpServiceMethod parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method,retrofit2.RequestFactory) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf +cyanogenmod.themes.ThemeChangeRequest$1 +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListMenuView +androidx.preference.R$styleable: int AppCompatTheme_checkboxStyle +androidx.constraintlayout.widget.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +okhttp3.internal.cache2.Relay: void writeMetadata(long) +com.google.android.material.R$animator: int mtrl_btn_unelevated_state_list_anim +androidx.appcompat.R$id: int search_plate +okio.Buffer: okio.BufferedSink writeShortLe(int) +androidx.constraintlayout.widget.R$id: int scrollIndicatorDown +wangdaye.com.geometricweather.R$drawable: int material_ic_edit_black_24dp +com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.AnimatorSet createIndeterminateAnimator(float) +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric Metric +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity +wangdaye.com.geometricweather.R$id: int item_card_display_deleteBtn +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +androidx.preference.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index o3 +androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Light +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea AdministrativeArea +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_0 +androidx.lifecycle.extensions.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.Date getPubTime() +okhttp3.internal.http2.Http2Reader$ContinuationSource: void readContinuationHeader() +com.google.android.material.card.MaterialCardView: android.graphics.RectF getBoundsAsRectF() +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method removeMethod +io.reactivex.Observable: io.reactivex.Observable buffer(int,int,java.util.concurrent.Callable) +androidx.preference.R$string: int abc_menu_function_shortcut_label +com.google.android.material.R$id: int textSpacerNoButtons +com.turingtechnologies.materialscrollbar.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_icon +james.adaptiveicon.R$attr: int icon +androidx.constraintlayout.widget.R$attr: int actionModePasteDrawable +androidx.appcompat.R$dimen: int abc_text_size_display_1_material +android.didikee.donate.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.R$attr: int switchTextAppearance +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_switchTextOff +com.xw.repo.bubbleseekbar.R$attr: int itemPadding +androidx.preference.R$integer: R$integer() +wangdaye.com.geometricweather.R$attr: int cornerSizeBottomLeft +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent +androidx.appcompat.R$integer: int cancel_button_image_alpha +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String ragweedDescription +com.google.android.material.R$drawable: int mtrl_ic_arrow_drop_up +okio.RealBufferedSource: java.lang.String readString(java.nio.charset.Charset) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: java.util.Date Rise +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_off_mtrl_alpha +com.google.android.material.R$style: int Widget_AppCompat_RatingBar +com.google.gson.stream.JsonReader: java.lang.String[] pathNames +io.reactivex.internal.subscriptions.BasicQueueSubscription: void cancel() +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_MAX +com.google.android.material.R$dimen: int abc_switch_padding +com.google.android.material.tabs.TabLayout: void setScrollAnimatorListener(android.animation.Animator$AnimatorListener) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_COMPONENT_ID +cyanogenmod.providers.CMSettings$Secure: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +androidx.constraintlayout.widget.R$styleable: int[] StateListDrawableItem +com.google.android.material.R$string: int abc_menu_sym_shortcut_label +wangdaye.com.geometricweather.R$styleable: int[] CardView +okhttp3.internal.cache.CacheInterceptor: okhttp3.Response stripBody(okhttp3.Response) +androidx.core.R$id: int icon_group +com.google.android.material.R$style: int Widget_AppCompat_ActivityChooserView +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void drain() +okhttp3.internal.connection.RouteSelector: RouteSelector(okhttp3.Address,okhttp3.internal.connection.RouteDatabase,okhttp3.Call,okhttp3.EventListener) +com.github.rahatarmanahmed.cpv.R$attr: int cpv_startAngle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherPhase(java.lang.String) +com.google.android.material.R$styleable: int Constraint_flow_verticalStyle +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabText +wangdaye.com.geometricweather.R$id: int circular +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getEn_US() +androidx.work.R$styleable: int FontFamily_fontProviderFetchTimeout +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +android.didikee.donate.R$id: int beginning +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PRIMARY_COLOR +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabText +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status FAILED +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_background_corner_radius +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +wangdaye.com.geometricweather.R$styleable: int Transform_android_rotation +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionBar +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode CLEAR +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: io.reactivex.Scheduler$Worker worker +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul12H +androidx.constraintlayout.widget.R$color: int material_deep_teal_200 +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +com.google.android.material.R$attr: int wavePeriod +android.didikee.donate.R$id: int split_action_bar +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okio.BufferedSource delegateSource +cyanogenmod.providers.CMSettings$Global: boolean putFloat(android.content.ContentResolver,java.lang.String,float) +com.jaredrummler.android.colorpicker.R$styleable: int View_paddingStart +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum +wangdaye.com.geometricweather.R$attr: int barrierDirection +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListMenuView +wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonCompat +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getDegreeDayTemperature() +androidx.lifecycle.MediatorLiveData: androidx.arch.core.internal.SafeIterableMap mSources +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_stacked_tab_max_width +com.google.android.material.R$attr: int limitBoundsTo +com.google.android.material.R$dimen: int abc_action_button_min_width_overflow_material +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingStart +com.jaredrummler.android.colorpicker.R$attr: int backgroundTint +com.xw.repo.bubbleseekbar.R$attr: int bsb_show_progress_in_float +androidx.viewpager2.R$dimen: int notification_content_margin_start +com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_layout +androidx.preference.R$style: int TextAppearance_AppCompat_Small +retrofit2.RequestFactory$Builder: java.util.regex.Pattern PARAM_NAME_REGEX +wangdaye.com.geometricweather.R$attr: int tabStyle +wangdaye.com.geometricweather.R$id: int notification_big_week_3 +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton +com.google.android.material.R$styleable: int SwitchCompat_thumbTextPadding +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +com.google.android.material.R$attr: int indicatorSize +androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerColor +androidx.appcompat.R$attr: int textAppearanceLargePopupMenu +wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_unselected +cyanogenmod.externalviews.KeyguardExternalView: java.lang.String CATEGORY_KEYGUARD_GRANT_PERMISSION +com.google.android.material.R$styleable: int MaterialCalendarItem_itemTextColor +com.jaredrummler.android.colorpicker.ColorPickerView: int getSliderTrackerColor() +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogIcon +com.google.android.material.chip.Chip: void setChipCornerRadiusResource(int) +androidx.constraintlayout.widget.R$styleable: int ActionBar_customNavigationLayout +wangdaye.com.geometricweather.db.entities.LocationEntity: void setTimeZone(java.util.TimeZone) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_inset +james.adaptiveicon.R$drawable: int abc_list_selector_disabled_holo_dark +retrofit2.Response: int code() +okhttp3.Handshake: java.util.List peerCertificates() +com.turingtechnologies.materialscrollbar.R$attr: int queryHint +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$styleable: int SearchView_submitBackground +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_29 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionButtonStyle +wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedWidthMajor +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_disableDependentsState +androidx.versionedparcelable.CustomVersionedParcelable +android.didikee.donate.R$string: int abc_action_bar_up_description +okio.Segment: boolean shared +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer cloudCover +com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_Surface +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: int Id +wangdaye.com.geometricweather.R$styleable: int[] ClockHandView +androidx.loader.R$id: int notification_background +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_onClick +android.didikee.donate.R$attr: int layout +org.greenrobot.greendao.AbstractDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +androidx.appcompat.widget.AppCompatRatingBar +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean mShouldShow +com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextView +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getDisplayGammaCalibration(int) +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_gravity +androidx.fragment.R$id: int accessibility_custom_action_13 +okhttp3.internal.http1.Http1Codec$ChunkedSource: boolean hasMoreChunks +com.google.android.material.tabs.TabItem +cyanogenmod.app.ILiveLockScreenManagerProvider: void cancelLiveLockScreen(java.lang.String,int,int) +james.adaptiveicon.R$drawable: int abc_btn_radio_material +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupMenu +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean,int,int) +androidx.core.graphics.drawable.IconCompatParcelizer: void write(androidx.core.graphics.drawable.IconCompat,androidx.versionedparcelable.VersionedParcel) +okio.Buffer: okio.BufferedSink writeHexadecimalUnsignedLong(long) +androidx.swiperefreshlayout.R$id: int tag_accessibility_actions +com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_android_entries +okhttp3.internal.http2.Hpack$Reader: okhttp3.internal.http2.Header[] dynamicTable +cyanogenmod.content.Intent: java.lang.String ACTION_SCREEN_CAMERA_GESTURE +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_TabLayout +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) +james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +wangdaye.com.geometricweather.R$attr: int bsb_hide_bubble +wangdaye.com.geometricweather.R$styleable: int Insets_paddingRightSystemWindowInsets +androidx.preference.R$styleable: int StateListDrawableItem_android_drawable +com.google.android.material.R$styleable: int RecyclerView_android_clipToPadding +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Level +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: IThermalListenerCallback$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemShapeAppearance +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle[] values() +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType LoadAll +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX getNames() +com.google.android.material.bottomnavigation.BottomNavigationMenuView: BottomNavigationMenuView(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_hideOnScroll +wangdaye.com.geometricweather.R$id: int notification_big_temp_5 +com.turingtechnologies.materialscrollbar.R$styleable: int[] TextInputLayout +android.didikee.donate.R$drawable: int abc_list_pressed_holo_dark +androidx.preference.R$attr: int adjustable +com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +okhttp3.internal.connection.RealConnection: boolean supportsUrl(okhttp3.HttpUrl) +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type valueOf(java.lang.String) +io.reactivex.internal.observers.DeferredScalarObserver: void onNext(java.lang.Object) +com.github.rahatarmanahmed.cpv.R$styleable: int[] CircularProgressView +androidx.appcompat.widget.AppCompatEditText: android.content.res.ColorStateList getSupportBackgroundTintList() +com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextEnabled(boolean) +okio.Segment: int pos +androidx.preference.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice +wangdaye.com.geometricweather.R$array: int weather_sources +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderAuthority +androidx.fragment.R$id: int actions +com.turingtechnologies.materialscrollbar.R$attr: int alertDialogButtonGroupStyle +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: int Version +androidx.appcompat.resources.R$id: int action_image +com.google.android.material.R$styleable: int[] Spinner +androidx.preference.R$attr: int logo +com.xw.repo.BubbleSeekBar: float getMin() +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_textAllCaps +com.google.android.material.R$attr: int indeterminateProgressStyle +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void dispose() +com.google.android.material.R$attr: int chipStartPadding +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingEnd +androidx.hilt.work.R$drawable: int notification_bg_low +com.google.android.material.chip.Chip: void setIconEndPadding(float) +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +okio.ByteString: int lastIndexOf(okio.ByteString) +androidx.activity.R$dimen: int notification_large_icon_height +com.google.android.material.slider.BaseSlider: int getTrackSidePadding() +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getRealFeelTemperature() +androidx.lifecycle.Transformations$2$1 +cyanogenmod.externalviews.ExternalView$2 +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_start_angle +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf +com.google.android.material.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getWetBulbTemperature() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date startDate +com.google.android.material.R$id: int accessibility_custom_action_19 +androidx.swiperefreshlayout.R$id: int time +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 +android.didikee.donate.R$style: int Base_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Current current +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintTextColor +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen +io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicLong requested com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Alert_Bridge -okhttp3.internal.http2.Http2Connection: long unacknowledgedBytesRead -com.turingtechnologies.materialscrollbar.R$drawable: int abc_switch_thumb_material -james.adaptiveicon.R$styleable: int Toolbar_subtitleTextColor -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String getValue() -android.didikee.donate.R$attr: int showText -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onComplete() -com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$attr: R$attr() -com.google.android.material.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon -wangdaye.com.geometricweather.R$drawable: int clock_hour_dark -androidx.appcompat.widget.ActionMenuPresenter$SavedState: android.os.Parcelable$Creator CREATOR -okhttp3.internal.cache.DiskLruCache$Editor: boolean[] written -wangdaye.com.geometricweather.R$drawable: int widget_card_light_60 -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_AutoCompleteTextView -cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.ICMStatusBarManager getStatusBarInterface() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: long serialVersionUID -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getUnitId() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Determinate +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: double Value +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.R$id: int action_text +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int describeContents() +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String getCode() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton_Overflow +androidx.swiperefreshlayout.R$id: int normal +com.google.android.material.R$styleable: int Layout_layout_constraintRight_creator +wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity: ClockDayDetailsWidgetConfigActivity() +wangdaye.com.geometricweather.R$id: int notification_big_temp_3 +com.google.android.material.R$string: int material_minute_suffix +androidx.vectordrawable.R$dimen: int notification_top_pad +android.didikee.donate.R$styleable: int Toolbar_navigationContentDescription +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconVisible +retrofit2.http.HTTP: java.lang.String method() +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.R$string: int mtrl_picker_day_of_week_column_header +cyanogenmod.weather.WeatherInfo: boolean access$000(int) +com.turingtechnologies.materialscrollbar.R$attr: int bottomNavigationStyle +wangdaye.com.geometricweather.R$id: int fill_vertical +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_textOn +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +io.reactivex.observers.DisposableObserver: java.util.concurrent.atomic.AtomicReference upstream +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableRightCompat +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontStyle +androidx.lifecycle.SavedStateViewModelFactory: SavedStateViewModelFactory(android.app.Application,androidx.savedstate.SavedStateRegistryOwner,android.os.Bundle) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setRootColor(int) +com.xw.repo.bubbleseekbar.R$color: int abc_tint_edittext +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog +androidx.preference.R$id: int custom +okhttp3.Response$Builder: okhttp3.Response$Builder cacheResponse(okhttp3.Response) +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver +cyanogenmod.weather.WeatherInfo: int access$902(cyanogenmod.weather.WeatherInfo,int) +com.google.android.material.R$styleable: int ActionBar_indeterminateProgressStyle +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_color +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setAqiText(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixTextColor +androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontWeight +okhttp3.Cache: int requestCount +okhttp3.internal.ws.RealWebSocket: boolean pong(okio.ByteString) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display4 +androidx.lifecycle.extensions.R$styleable: int[] GradientColor +com.google.android.material.R$styleable: int ConstraintSet_transitionPathRotate +cyanogenmod.app.Profile: android.os.Parcelable$Creator CREATOR +androidx.cardview.R$color: R$color() +com.jaredrummler.android.colorpicker.R$bool +cyanogenmod.app.CMContextConstants$Features: java.lang.String THEMES +androidx.constraintlayout.widget.R$layout: R$layout() +androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_android_color +okhttp3.internal.cache.DiskLruCache: boolean mostRecentTrimFailed +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_left_mtrl_dark +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +androidx.coordinatorlayout.R$styleable: int ColorStateListItem_android_alpha +com.google.gson.stream.JsonReader: void endArray() +io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String LongPhrase +com.google.android.material.R$attr: int defaultQueryHint +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_vertical_padding +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +com.google.android.material.R$dimen: int mtrl_extended_fab_icon_text_spacing +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String NO_RINGTONE +cyanogenmod.profiles.RingModeSettings: void setOverride(boolean) +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver +com.google.android.material.R$layout: int mtrl_picker_text_input_date_range +com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.textfield.TextInputLayout: void setSuffixTextAppearance(int) +android.didikee.donate.R$attr: int trackTint +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +wangdaye.com.geometricweather.R$attr: int deriveConstraintsFrom +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection +retrofit2.ParameterHandler$Query +org.greenrobot.greendao.DaoException: DaoException(java.lang.Throwable) +androidx.appcompat.R$id: int search_bar +androidx.appcompat.R$attr: int suggestionRowLayout +wangdaye.com.geometricweather.R$string: int key_appearance +com.bumptech.glide.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean +androidx.preference.R$dimen: int abc_control_padding_material +android.didikee.donate.R$styleable: int DrawerArrowToggle_spinBars +com.turingtechnologies.materialscrollbar.R$string: int abc_activity_chooser_view_see_all +androidx.vectordrawable.R$dimen: int notification_action_icon_size +com.google.android.material.textfield.TextInputLayout: void setTextInputAccessibilityDelegate(com.google.android.material.textfield.TextInputLayout$AccessibilityDelegate) +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_exitFadeDuration +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_elevation +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: long serialVersionUID +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STYLE_THUMBNAIL +androidx.preference.R$styleable: int SearchView_android_imeOptions +retrofit2.SkipCallbackExecutorImpl: java.lang.String toString() +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionLayout +wangdaye.com.geometricweather.R$animator: int weather_thunder_2 +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_5 +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +androidx.constraintlayout.widget.R$dimen: int hint_pressed_alpha_material_dark +okhttp3.internal.cache.DiskLruCache$Entry: long[] lengths +wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity: DayWeekWidgetConfigActivity() +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginStart +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorAnimationDuration +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$attr: int bsb_second_track_size +wangdaye.com.geometricweather.R$id: int dialog_button +wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_grey +io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer) +wangdaye.com.geometricweather.R$attr: int textAllCaps +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node header +android.didikee.donate.R$color: int material_blue_grey_950 +com.google.android.material.R$string: int material_timepicker_clock_mode_description +io.reactivex.internal.util.NotificationLite$DisposableNotification +wangdaye.com.geometricweather.background.service.TileService +wangdaye.com.geometricweather.R$attr: int triggerReceiver +okhttp3.internal.ws.RealWebSocket$Streams: okio.BufferedSource source +androidx.constraintlayout.widget.R$dimen +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_baselineAligned +wangdaye.com.geometricweather.R$id: int widget_day_week_week_1 +okhttp3.CacheControl: boolean mustRevalidate() +cyanogenmod.power.IPerformanceManager: void cpuBoost(int) +wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_max +androidx.preference.R$drawable: int abc_text_cursor_material +com.turingtechnologies.materialscrollbar.R$id: int home +androidx.preference.R$styleable: int ActionBar_backgroundSplit +okhttp3.HttpUrl: okhttp3.HttpUrl resolve(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: int getStatus() +androidx.loader.R$id: int time +androidx.hilt.lifecycle.R$id: int right_icon +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_animate_relativeTo +wangdaye.com.geometricweather.R$animator: int weather_thunder_1 +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +cyanogenmod.profiles.AirplaneModeSettings$1: java.lang.Object[] newArray(int) +com.google.android.material.R$styleable: int TabLayout_tabSelectedTextColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency +androidx.appcompat.widget.DialogTitle +android.didikee.donate.R$styleable: int MenuGroup_android_id +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogPreferredPadding +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetStart +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: void run() +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +androidx.core.R$id: int accessibility_custom_action_4 +com.google.android.material.R$styleable: int ConstraintSet_barrierDirection +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage RESOURCE_CACHE +okhttp3.ConnectionSpec: boolean supportsTlsExtensions +com.google.android.material.chip.ChipGroup: java.util.List getCheckedChipIds() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: boolean requestDismiss() +androidx.viewpager2.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.settings.activities.SelectProviderActivity: SelectProviderActivity() +okio.ByteString: java.lang.String hex() +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getCheckedIcon() +com.xw.repo.bubbleseekbar.R$layout: int abc_action_bar_up_container +androidx.viewpager.R$id: int notification_main_column +wangdaye.com.geometricweather.db.entities.LocationEntity: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource getWeatherSource() +wangdaye.com.geometricweather.R$string: int live +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void cancel(io.reactivex.internal.queue.SpscLinkedArrayQueue,io.reactivex.internal.queue.SpscLinkedArrayQueue) +james.adaptiveicon.R$styleable: R$styleable() +com.google.android.material.R$id: int parent +wangdaye.com.geometricweather.R$xml: int widget_clock_day_horizontal +wangdaye.com.geometricweather.R$attr: int boxCornerRadiusTopStart +wangdaye.com.geometricweather.R$layout: int preference_information +androidx.constraintlayout.widget.R$attr: int colorPrimaryDark +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endY +okhttp3.HttpUrl: int port() +wangdaye.com.geometricweather.R$styleable: int Slider_trackHeight +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth +com.google.android.material.R$id: int accessibility_custom_action_5 +okhttp3.internal.ws.RealWebSocket: void connect(okhttp3.OkHttpClient) +okio.RealBufferedSource: okio.ByteString readByteString() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_deriveConstraintsFrom +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitleTextAppearance +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRealFeelTemperature +com.jaredrummler.android.colorpicker.R$styleable: int GradientColorItem_android_color +com.xw.repo.bubbleseekbar.R$attr: int listDividerAlertDialog +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabText +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationY +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayColorCalibration +wangdaye.com.geometricweather.R$layout: int item_about_title +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +wangdaye.com.geometricweather.R$id: int decelerate +wangdaye.com.geometricweather.R$styleable: int AnimatableIconView_inner_margins +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +cyanogenmod.hardware.CMHardwareManager: CMHardwareManager(android.content.Context) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult +androidx.preference.R$dimen: int notification_action_text_size +com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$dimen: int action_bar_size +androidx.core.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_11 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX getWind() +androidx.vectordrawable.animated.R$attr +androidx.constraintlayout.widget.R$attr: int tintMode +androidx.viewpager2.R$id: int action_divider +okhttp3.internal.http2.Http2Connection$5: void execute() +cyanogenmod.app.Profile: int mExpandedDesktopMode +androidx.appcompat.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +wangdaye.com.geometricweather.R$color: int design_fab_shadow_mid_color +wangdaye.com.geometricweather.R$drawable: int abc_tab_indicator_material +wangdaye.com.geometricweather.R$id: int cpv_color_panel_view +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetEnd +androidx.appcompat.R$attr: int fontProviderFetchTimeout +okhttp3.HttpUrl: java.lang.String FORM_ENCODE_SET +androidx.constraintlayout.widget.R$drawable: int abc_tab_indicator_material +okhttp3.HttpUrl: boolean isHttps() +com.xw.repo.bubbleseekbar.R$attr: int dropdownListPreferredItemHeight +james.adaptiveicon.R$style: int Base_Animation_AppCompat_Dialog +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_android_layout +okhttp3.internal.http2.Http2Codec: okhttp3.internal.http2.Http2Stream stream +com.google.android.material.R$dimen: int mtrl_calendar_day_corner +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_COOL +cyanogenmod.app.Profile$ProfileTrigger: cyanogenmod.app.Profile$ProfileTrigger fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +com.jaredrummler.android.colorpicker.R$dimen: int abc_alert_dialog_button_dimen +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_searchViewStyle +androidx.appcompat.R$attr: int fontFamily +okhttp3.OkHttpClient$1: okhttp3.internal.connection.RealConnection get(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) +okhttp3.internal.http2.Header: java.lang.String toString() +com.jaredrummler.android.colorpicker.ColorPreference: void setOnShowDialogListener(com.jaredrummler.android.colorpicker.ColorPreference$OnShowDialogListener) +com.google.android.material.R$attr: int windowActionModeOverlay +wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_singleSelection +cyanogenmod.hardware.DisplayMode: int id +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_91 +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_ab_back_material +com.xw.repo.bubbleseekbar.R$layout: int abc_screen_simple_overlay_action_mode +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_79 +androidx.lifecycle.ViewModelProviders +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer RIGHT_CLOSE +wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_iconResEnd +okio.Pipe: long maxBufferSize +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackInactiveTintList() +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIcon +androidx.preference.R$styleable: int MenuItem_iconTintMode +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_begin +okhttp3.FormBody$Builder: java.util.List names +androidx.swiperefreshlayout.R$id: int line3 +retrofit2.http.Tag +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 +okhttp3.internal.http2.Header: java.lang.String RESPONSE_STATUS_UTF8 +android.support.v4.graphics.drawable.IconCompatParcelizer +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +androidx.hilt.work.R$id: int accessibility_custom_action_26 +com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_end +cyanogenmod.themes.IThemeService: long getLastThemeChangeTime() +james.adaptiveicon.R$integer +com.jaredrummler.android.colorpicker.R$layout: int abc_activity_chooser_view +com.google.android.material.R$dimen: int tooltip_margin +wangdaye.com.geometricweather.R$styleable: int Layout_minWidth +androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_min +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX +android.didikee.donate.R$styleable: int MenuItem_android_id +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_3 +com.google.android.material.R$styleable: int AnimatedStateListDrawableItem_android_id +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerSlack +com.google.android.material.R$id: int withinBounds +androidx.constraintlayout.widget.R$id: int position +androidx.constraintlayout.widget.R$attr: int textAppearanceSearchResultSubtitle +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_UPDATED +androidx.appcompat.resources.R$styleable: int GradientColor_android_centerColor +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +androidx.appcompat.R$id: int dialog_button +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: float getDistance(float) +wangdaye.com.geometricweather.R$attr: int errorContentDescription +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_8 +wangdaye.com.geometricweather.R$layout: int widget_day_pixel +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_button_material +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline1 +androidx.drawerlayout.R$id: int icon +com.google.android.material.R$styleable: int ProgressIndicator_showDelay +androidx.fragment.R$attr: int fontStyle +com.bumptech.glide.integration.okhttp.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.String TABLENAME +com.google.android.material.R$drawable: int tooltip_frame_dark +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: void run() +com.jaredrummler.android.colorpicker.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +okhttp3.internal.cache.CacheInterceptor$1: okio.BufferedSink val$cacheBody +cyanogenmod.library.R$attr: int settingsActivity +wangdaye.com.geometricweather.R$styleable: int Preference_android_key +cyanogenmod.weather.WeatherLocation: int describeContents() +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: java.util.concurrent.atomic.AtomicReference inner +com.google.android.material.R$id: int transition_current_scene +androidx.preference.R$styleable: int[] AppCompatSeekBar +wangdaye.com.geometricweather.R$attr: int badgeStyle +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_icon_width +wangdaye.com.geometricweather.R$id: int notification_big_icon_3 +androidx.constraintlayout.widget.R$drawable: int abc_control_background_material +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorHeight(int) +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_title +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_4_00 +androidx.constraintlayout.widget.R$attr: int actionModeWebSearchDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: AccuCurrentResult$Pressure$Metric() +cyanogenmod.app.ICMTelephonyManager$Stub +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Toolbar +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox +com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_small_material +okhttp3.internal.connection.RouteSelector$Selection: RouteSelector$Selection(java.util.List) +androidx.appcompat.R$attr: int editTextBackground +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeStyle +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_showText +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorHeight +android.didikee.donate.R$dimen: int abc_text_size_subtitle_material_toolbar +com.google.android.material.R$dimen: int design_bottom_navigation_label_padding +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_divider +cyanogenmod.providers.CMSettings$Global: CMSettings$Global() +okhttp3.internal.publicsuffix.PublicSuffixDatabase: okhttp3.internal.publicsuffix.PublicSuffixDatabase get() +cyanogenmod.app.ICustomTileListener +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_selectable +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date riseDate +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: boolean isDisposed() +androidx.coordinatorlayout.R$id: int accessibility_custom_action_6 +io.reactivex.Observable: io.reactivex.Observable concatMapIterable(io.reactivex.functions.Function) +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1 +android.didikee.donate.R$attr: int searchIcon +com.google.android.material.R$styleable: int[] CollapsingToolbarLayout_Layout +com.google.android.material.R$attr: int chipStrokeColor +okhttp3.internal.http2.Huffman: void encode(okio.ByteString,okio.BufferedSink) +androidx.constraintlayout.widget.R$attr: int closeItemLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String date +okhttp3.internal.http2.Http2Stream$FramingSource +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierDirection +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollEnabled +com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_corner_material +androidx.constraintlayout.widget.R$layout: int abc_action_menu_item_layout +cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup[] getProfileGroups() +cyanogenmod.externalviews.ExternalViewProviderService$1: ExternalViewProviderService$1(cyanogenmod.externalviews.ExternalViewProviderService) +com.jaredrummler.android.colorpicker.R$id: int title +com.jaredrummler.android.colorpicker.R$color: int secondary_text_disabled_material_dark +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date publishDate +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.R$string: int settings_title_widget_config +androidx.recyclerview.R$styleable: int ColorStateListItem_alpha +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_alt_shortcut_label +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String tag +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int SNOOZE_STATE +androidx.preference.R$style: int Base_Widget_AppCompat_SearchView +androidx.hilt.R$dimen: int notification_right_side_padding_top +androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModel get(java.lang.String,java.lang.Class) +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customPixelDimension +androidx.preference.R$color: int material_deep_teal_200 +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder callTimeout(java.time.Duration) +retrofit2.RequestFactory$Builder: okhttp3.MediaType contentType +androidx.appcompat.resources.R$color: int notification_icon_bg_color +androidx.constraintlayout.widget.R$dimen: int abc_alert_dialog_button_bar_height +com.google.android.material.R$style: int Widget_MaterialComponents_CheckedTextView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: double Value +wangdaye.com.geometricweather.R$layout: R$layout() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +androidx.cardview.R$styleable: int CardView_contentPaddingBottom +wangdaye.com.geometricweather.R$id: int item_details_icon +com.jaredrummler.android.colorpicker.R$layout: int abc_select_dialog_material +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView +okhttp3.RealCall: okhttp3.Response execute() +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_suggestionRowLayout +com.jaredrummler.android.colorpicker.R$attr: int autoSizeTextType +android.didikee.donate.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherText +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder validateEagerly(boolean) +androidx.coordinatorlayout.R$styleable: int ColorStateListItem_alpha +io.reactivex.disposables.RunnableDisposable: java.lang.String toString() +android.didikee.donate.R$id: int src_in +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILES_STATE +com.google.android.material.R$styleable: int Chip_shapeAppearance +com.google.android.material.R$dimen: int mtrl_textinput_counter_margin_start +io.reactivex.Observable: io.reactivex.Observable timeInterval(java.util.concurrent.TimeUnit) +androidx.appcompat.R$anim: int abc_popup_enter +android.didikee.donate.R$styleable: int DrawerArrowToggle_arrowShaftLength +okhttp3.internal.http2.Http2Connection$7: int val$streamId +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_orientation +androidx.hilt.lifecycle.R$id: int notification_main_column_container +okhttp3.Headers: okhttp3.Headers of(java.lang.String[]) +androidx.viewpager2.R$layout: R$layout() +androidx.appcompat.R$styleable: int StateListDrawable_android_dither +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeErrorColor +james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +androidx.appcompat.R$dimen: int abc_action_bar_overflow_padding_start_material +okio.ForwardingTimeout: okio.Timeout clearTimeout() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: void setDirection(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX) +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.util.List toCardDisplayList(java.lang.String) +com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetStart +androidx.hilt.work.R$dimen: int notification_right_icon_size +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean done +wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_content +com.turingtechnologies.materialscrollbar.R$integer: int design_tab_indicator_anim_duration_ms +com.google.gson.stream.MalformedJsonException +androidx.core.R$layout: int notification_action +androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$layout: int abc_search_view +androidx.activity.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$string: int character_counter_pattern +androidx.lifecycle.MediatorLiveData$Source: void plug() +androidx.activity.R$drawable: int notification_bg_normal +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar_Small +wangdaye.com.geometricweather.R$attr: int text +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object readKey(android.database.Cursor,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setBrandId(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvDescription +androidx.appcompat.R$anim: int abc_fade_in +androidx.customview.R$layout: int notification_action +androidx.constraintlayout.widget.R$string: int abc_searchview_description_query +com.google.android.material.R$dimen: int mtrl_snackbar_background_overlay_color_alpha androidx.appcompat.R$id: int notification_background -wangdaye.com.geometricweather.R$id: int home -androidx.swiperefreshlayout.R$styleable: int[] SwipeRefreshLayout -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -wangdaye.com.geometricweather.R$styleable: int ClockFaceView_valueTextColor -com.google.android.material.R$layout: int mtrl_picker_actions -wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem -com.google.android.material.appbar.AppBarLayout: void setStatusBarForeground(android.graphics.drawable.Drawable) -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: boolean requestDismissAndStartActivity(android.content.Intent) -androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontVariationSettings -com.jaredrummler.android.colorpicker.R$dimen: int cpv_required_padding -com.google.android.material.slider.BaseSlider: int getFocusedThumbIndex() -androidx.constraintlayout.widget.R$attr: int deriveConstraintsFrom -androidx.fragment.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setCo(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotationX -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDaylight(boolean) -cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_NORMAL -androidx.viewpager2.R$layout: int notification_action_tombstone -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onComplete() -androidx.appcompat.R$id: int action_bar_container -com.google.android.material.R$styleable: int MaterialButton_rippleColor -okhttp3.internal.http2.Hpack$Writer: boolean useCompression +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Medium_Inverse +androidx.appcompat.R$attr: int buttonBarPositiveButtonStyle +androidx.appcompat.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +cyanogenmod.externalviews.ExternalView$2: ExternalView$2(cyanogenmod.externalviews.ExternalView,int,int,int,int,boolean,android.graphics.Rect) +androidx.appcompat.widget.ActionBarOverlayLayout: void setIcon(int) +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_dropDownWidth +androidx.preference.SeekBarPreference$SavedState +cyanogenmod.hardware.ICMHardwareService: int[] getVibratorIntensity() +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onError(java.lang.Throwable) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +androidx.lifecycle.extensions.R$anim: int fragment_fade_enter +wangdaye.com.geometricweather.R$string: int settings_category_widget +wangdaye.com.geometricweather.R$styleable: int Variant_constraints +com.google.android.material.R$attr: int scrimBackground +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.R$drawable: int notif_temp_0 +androidx.customview.R$id: int action_text +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalBias +androidx.appcompat.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: void setTextColors(int) +androidx.constraintlayout.widget.R$dimen: int abc_search_view_preferred_width +com.google.android.material.R$style: int Theme_MaterialComponents_Light_BarSize +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LIVE_LOCK_SCREEN_THUMBNAIL +androidx.swiperefreshlayout.R$attr: int fontProviderPackage +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemIconSize(int) +android.didikee.donate.R$styleable: int DrawerArrowToggle_gapBetweenBars +okhttp3.internal.http.HttpCodec: void flushRequest() +okhttp3.internal.connection.RouteException: java.io.IOException lastException +com.google.android.material.R$color: int notification_icon_bg_color +com.google.android.material.textfield.TextInputLayout: void setPrefixText(java.lang.CharSequence) +cyanogenmod.themes.ThemeManager$1$2: void run() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button +okhttp3.internal.http2.Http2Connection: long degradedPongsReceived +androidx.dynamicanimation.R$dimen: int compat_button_padding_horizontal_material +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable +android.didikee.donate.R$layout: int abc_action_bar_up_container +androidx.lifecycle.Lifecycling: int GENERATED_CALLBACK +com.google.android.material.R$attr: int dropdownListPreferredItemHeight +wangdaye.com.geometricweather.R$dimen: int test_mtrl_calendar_day_cornerSize +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteSelector$Selection routeSelection +cyanogenmod.providers.CMSettings$Secure: java.lang.String VIBRATOR_INTENSITY +com.google.gson.stream.JsonReader: int PEEKED_DOUBLE_QUOTED_NAME +cyanogenmod.weather.RequestInfo: RequestInfo() +androidx.appcompat.R$id: int action_bar_spinner +james.adaptiveicon.R$id: int image +androidx.preference.R$attr: int subtitleTextAppearance +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_maxElementsWrap +com.google.android.material.R$styleable: int KeyTrigger_onNegativeCross +wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_checked_black +androidx.lifecycle.ComputableLiveData: androidx.lifecycle.LiveData mLiveData +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.ICMStatusBarManager sService +okio.HashingSource: HashingSource(okio.Source,java.lang.String) +io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable[] values() +com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_layout +okio.Buffer: okio.Buffer writeIntLe(int) +android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +androidx.hilt.lifecycle.R$drawable: int notification_bg_low_normal +okhttp3.internal.http1.Http1Codec$FixedLengthSink: Http1Codec$FixedLengthSink(okhttp3.internal.http1.Http1Codec,long) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: java.lang.String[] getPermissions() +cyanogenmod.weather.ICMWeatherManager +com.google.android.material.R$style: int Base_Widget_MaterialComponents_AutoCompleteTextView +cyanogenmod.power.IPerformanceManager$Stub$Proxy: android.os.IBinder asBinder() +james.adaptiveicon.R$drawable: int abc_cab_background_top_material +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather weather +com.turingtechnologies.materialscrollbar.R$color: int background_material_dark +okio.Buffer: boolean isOpen() +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickActiveTintList() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial Imperial +wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_Toolbar +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +com.google.android.material.R$styleable: int AppCompatTheme_windowActionBar +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_currentPageIndicatorColor +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_NavigationView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial +com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$attr: int actionModeBackground +retrofit2.OkHttpCall: OkHttpCall(retrofit2.RequestFactory,java.lang.Object[],okhttp3.Call$Factory,retrofit2.Converter) +com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_creator +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean access$602(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) +com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Dialog +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean outputFused +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +androidx.preference.R$styleable: int DrawerArrowToggle_drawableSize +androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.Long id +com.xw.repo.bubbleseekbar.R$attr: int backgroundTintMode +okhttp3.CacheControl$Builder +okhttp3.CacheControl: boolean onlyIfCached +com.xw.repo.bubbleseekbar.R$attr: int popupWindowStyle +retrofit2.adapter.rxjava2.BodyObservable: BodyObservable(io.reactivex.Observable) +okhttp3.internal.cache.DiskLruCache: java.util.concurrent.Executor executor +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection connection +okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallbackPossible(javax.net.ssl.SSLSocket) +androidx.constraintlayout.helper.widget.Flow +androidx.appcompat.R$styleable: int ActionBar_indeterminateProgressStyle +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontVariationSettings +io.reactivex.internal.subscriptions.EmptySubscription: java.lang.Object poll() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties properties +androidx.preference.R$anim: int abc_popup_exit +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +androidx.dynamicanimation.R$id: int line3 +com.jaredrummler.android.colorpicker.R$layout: int select_dialog_item_material +androidx.appcompat.widget.AppCompatButton: void setAutoSizeTextTypeWithDefaults(int) +com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$id: int dialog_location_help_locationContainer +androidx.lifecycle.extensions.R$anim: int fragment_close_exit +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: AccuAqiResult() +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onNext(java.lang.Object) +android.didikee.donate.R$styleable: int AppCompatTheme_seekBarStyle +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_min_width +com.google.android.material.R$styleable: int[] MaterialAlertDialog +wangdaye.com.geometricweather.R$plurals: R$plurals() +okhttp3.internal.cache.DiskLruCache: boolean mostRecentRebuildFailed +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_vertical_setting +com.xw.repo.bubbleseekbar.R$attr: int statusBarBackground +androidx.legacy.coreutils.R$attr: int fontProviderPackage +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_warmth +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType[] values() +androidx.lifecycle.FullLifecycleObserver: void onStart(androidx.lifecycle.LifecycleOwner) +androidx.viewpager.R$styleable +wangdaye.com.geometricweather.R$styleable: int[] ViewStubCompat +com.google.android.material.R$styleable: int TextAppearance_fontVariationSettings +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderAuthority +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView +wangdaye.com.geometricweather.R$style: int TestStyleWithThemeLineHeightAttribute +androidx.appcompat.R$styleable: int PopupWindow_android_popupBackground +androidx.hilt.work.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getType() +androidx.fragment.R$styleable: int Fragment_android_id +retrofit2.CallAdapter$Factory: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) +com.google.android.material.textfield.TextInputEditText: com.google.android.material.textfield.TextInputLayout getTextInputLayout() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_text_color +androidx.preference.R$id: int action_bar_subtitle +androidx.preference.R$attr: int actionProviderClass +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeStepGranularity +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit F +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_useCompatPadding +androidx.hilt.work.R$attr: int fontProviderFetchTimeout +com.google.android.material.R$styleable: int AppCompatTextView_lineHeight +james.adaptiveicon.R$styleable: int MenuItem_android_enabled +androidx.constraintlayout.widget.R$styleable: int SearchView_submitBackground +com.google.android.material.R$plurals: R$plurals() +com.google.android.material.R$styleable: int AppCompatTheme_viewInflaterClass +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String PrimaryPostalCode +com.google.gson.stream.JsonReader: int nextNonWhitespace(boolean) +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean getLiveLockScreenEnabled() +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customDimension +com.google.android.material.R$attr: int numericModifiers +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: void spValue(java.lang.Object) +com.google.android.material.textfield.TextInputLayout: void setStartIconOnClickListener(android.view.View$OnClickListener) +cyanogenmod.media.MediaRecorder: MediaRecorder() +com.google.android.material.bottomnavigation.BottomNavigationView: int getLabelVisibilityMode() +retrofit2.ParameterHandler$HeaderMap: void apply(retrofit2.RequestBuilder,java.lang.Object) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_AutoCompleteTextView +androidx.preference.R$attr: int logoDescription +androidx.customview.R$styleable: int FontFamilyFont_ttcIndex +com.xw.repo.bubbleseekbar.R$dimen: int abc_control_corner_material +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +androidx.recyclerview.R$attr: int fastScrollHorizontalThumbDrawable +com.xw.repo.bubbleseekbar.R$styleable: int[] MenuView +com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabStyle +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCityId() cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY_NIGHT -androidx.preference.R$attr: int fontProviderPackage -cyanogenmod.providers.DataUsageContract -androidx.preference.R$styleable: int Preference_allowDividerBelow -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: void run() -androidx.constraintlayout.widget.R$attr: int borderlessButtonStyle -io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver[] values() -androidx.preference.R$drawable: int abc_ic_menu_overflow_material -androidx.constraintlayout.widget.R$styleable: int ActionBar_progressBarPadding -com.turingtechnologies.materialscrollbar.R$attr: int actionDropDownStyle -com.google.android.material.R$styleable: int AlertDialog_singleChoiceItemLayout -android.support.v4.os.IResultReceiver$Stub: int TRANSACTION_send -com.google.android.material.textfield.TextInputLayout: int getCounterMaxLength() -io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.android.material.R$id: int startVertical -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button -okhttp3.Credentials -wangdaye.com.geometricweather.R$attr: int perpendicularPath_percent -com.xw.repo.bubbleseekbar.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_OFF -androidx.appcompat.R$style: int Theme_AppCompat_Dialog -androidx.legacy.coreutils.R$attr: R$attr() -androidx.appcompat.R$styleable: int MenuGroup_android_menuCategory -androidx.appcompat.R$string: int abc_capital_off -retrofit2.OkHttpCall: java.lang.Object[] args -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_strokeWidth -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_disabled_holo_dark -cyanogenmod.weather.WeatherInfo: int access$502(cyanogenmod.weather.WeatherInfo,int) -james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -james.adaptiveicon.R$attr: int tickMarkTintMode -wangdaye.com.geometricweather.R$id: int dialog_donate_wechat_img -com.jaredrummler.android.colorpicker.R$string: int expand_button_title -androidx.appcompat.R$attr: int selectableItemBackgroundBorderless -com.google.android.material.transformation.TransformationChildLayout: TransformationChildLayout(android.content.Context) -androidx.recyclerview.R$dimen: int notification_small_icon_size_as_large -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FAIR_DAY -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_stroke_width_default -com.google.android.material.R$attr: int titleTextStyle -androidx.customview.R$color: R$color() -com.google.android.material.R$string: int abc_activitychooserview_choose_application -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperText -com.bumptech.glide.R$drawable: int notification_template_icon_bg -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.preference.R$attr: int actionOverflowMenuStyle -androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontWeight -cyanogenmod.profiles.ConnectionSettings$1: cyanogenmod.profiles.ConnectionSettings createFromParcel(android.os.Parcel) -androidx.legacy.coreutils.R$styleable: int ColorStateListItem_android_alpha -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.google.android.material.R$attr: int multiChoiceItemLayout -androidx.appcompat.resources.R$dimen: int notification_top_pad_large_text -androidx.appcompat.widget.Toolbar: int getTitleMarginTop() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: int UnitType -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeDegreeDayTemperature() -com.google.android.material.R$attr: int barLength -androidx.preference.R$dimen: int hint_pressed_alpha_material_light -androidx.constraintlayout.widget.R$dimen: int abc_text_size_medium_material -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_adjustable -androidx.coordinatorlayout.R$id: int icon -com.xw.repo.bubbleseekbar.R$id: int titleDividerNoCustom -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_growMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String coDesc -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_normal -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight -com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Display -cyanogenmod.app.BaseLiveLockManagerService$1: boolean getLiveLockScreenEnabled() -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_APP_SWITCH_LONG_PRESS_ACTION -androidx.legacy.coreutils.R$id: int title -wangdaye.com.geometricweather.R$dimen: int abc_text_size_headline_material -com.google.android.material.R$styleable: int Layout_layout_constraintGuide_begin -com.bumptech.glide.integration.okhttp.R$attr -wangdaye.com.geometricweather.common.basic.models.weather.Alert: Alert(android.os.Parcel) -io.reactivex.Observable: io.reactivex.Observable scanWith(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX() -wangdaye.com.geometricweather.R$color: int mtrl_calendar_item_stroke_color +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean isDisposed() +com.google.android.material.R$attr: int tickMarkTint +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: void setUnit(java.lang.String) +com.google.android.material.chip.ChipGroup: void setSingleLine(boolean) +cyanogenmod.profiles.RingModeSettings: void processOverride(android.content.Context) +androidx.appcompat.R$styleable: int SwitchCompat_thumbTint +cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_MWI_NOTIFICATION +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_DESTROY +com.jaredrummler.android.colorpicker.R$attr: int buttonStyleSmall +androidx.loader.R$attr: int fontProviderQuery +com.jaredrummler.android.colorpicker.R$attr: int controlBackground +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status PENDING +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeMinTextSize +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListPopupWindow +androidx.vectordrawable.R$drawable: int notification_action_background +androidx.appcompat.resources.R$drawable: int notification_bg +com.google.android.material.switchmaterial.SwitchMaterial +com.google.android.material.button.MaterialButton: void setInternalBackground(android.graphics.drawable.Drawable) +okio.BufferedSource: int readIntLe() +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getUnitId() +androidx.appcompat.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$styleable: int TabLayout_tabIconTint +androidx.preference.R$color: int abc_search_url_text +androidx.lifecycle.ClassesInfoCache: java.util.Map mHasLifecycleMethods +com.turingtechnologies.materialscrollbar.R$attr: int colorControlActivated +androidx.preference.R$style: int Theme_AppCompat_NoActionBar +com.google.android.material.R$attr: int alertDialogTheme +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitation +cyanogenmod.externalviews.ExternalViewProviderService: android.os.Handler access$100(cyanogenmod.externalviews.ExternalViewProviderService) +androidx.constraintlayout.widget.R$attr: int flow_lastVerticalBias +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int bufferSize +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: int UnitType +androidx.appcompat.widget.AppCompatEditText: void setTextClassifier(android.view.textclassifier.TextClassifier) +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel +androidx.lifecycle.ProcessLifecycleOwner +com.turingtechnologies.materialscrollbar.R$attr: int boxBackgroundColor +androidx.appcompat.R$id: int accessibility_custom_action_16 +androidx.preference.R$attr: int layoutManager +com.google.android.material.R$attr: int tickVisible +okhttp3.internal.ws.RealWebSocket: void initReaderAndWriter(java.lang.String,okhttp3.internal.ws.RealWebSocket$Streams) +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_iconifiedByDefault +wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentY +com.google.android.material.R$styleable: int KeyPosition_pathMotionArc +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onComplete() +androidx.fragment.R$drawable: int notification_template_icon_bg +androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int CustomAttribute_customPixelDimension +android.didikee.donate.R$id: int shortcut +cyanogenmod.app.CMTelephonyManager: boolean localLOGD +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: int complete +androidx.appcompat.widget.AppCompatRadioButton: int getCompoundPaddingLeft() +com.xw.repo.bubbleseekbar.R$styleable: int GradientColorItem_android_offset +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onSubscribe(org.reactivestreams.Subscription) +androidx.constraintlayout.widget.ConstraintLayout: void setConstraintSet(androidx.constraintlayout.widget.ConstraintSet) +com.xw.repo.bubbleseekbar.R$attr: int color +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: double Value +androidx.preference.R$id: int checkbox +androidx.core.R$id: int text +androidx.lifecycle.ReflectiveGenericLifecycleObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +com.turingtechnologies.materialscrollbar.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.R$dimen +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActivityChooserView +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +okhttp3.Headers: int hashCode() +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$attr: int backgroundColor +wangdaye.com.geometricweather.R$color: int abc_secondary_text_material_dark +com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusTopStart +com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_title_material +androidx.vectordrawable.animated.R$styleable: int[] ColorStateListItem +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerError(java.lang.Throwable) +wangdaye.com.geometricweather.R$string: int air_quality +androidx.preference.PreferenceFragmentCompat +android.didikee.donate.R$styleable: int AppCompatTheme_dividerVertical +com.jaredrummler.android.colorpicker.R$dimen: int abc_button_padding_vertical_material +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void registerListener(cyanogenmod.app.ICustomTileListener,android.content.ComponentName,int) +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +androidx.preference.R$attr: int actionMenuTextColor +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_hideOnContentScroll +okhttp3.internal.http2.Http2: byte TYPE_SETTINGS +androidx.constraintlayout.widget.R$attr: int windowMinWidthMajor +androidx.swiperefreshlayout.R$id: int action_text +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void drain() +com.jaredrummler.android.colorpicker.R$id: int notification_main_column +com.google.android.material.R$id: int startHorizontal +com.google.android.material.R$styleable: int ConstraintSet_flow_firstVerticalStyle +androidx.legacy.coreutils.R$id: int action_text +wangdaye.com.geometricweather.R$id: int notification_base_titleContainer +wangdaye.com.geometricweather.R$attr: int cardPreventCornerOverlap +com.google.android.material.button.MaterialButton: void setIconGravity(int) +wangdaye.com.geometricweather.R$attr: int fabAlignmentMode +com.xw.repo.bubbleseekbar.R$id: int spacer +androidx.activity.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_37 +com.google.android.material.R$styleable: int Chip_chipIconTint +androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver +androidx.appcompat.widget.SearchView$SearchAutoComplete: int getSearchViewTextMinWidthDp() +wangdaye.com.geometricweather.R$layout: int widget_week_3 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_textLocale +io.reactivex.Observable: io.reactivex.Observable distinct(io.reactivex.functions.Function) +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeight +james.adaptiveicon.R$styleable: int Toolbar_subtitle +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long end +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_62 +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: java.lang.String getAddress() +wangdaye.com.geometricweather.R$styleable: int Preference_android_fragment +okhttp3.internal.Util: java.nio.charset.Charset UTF_16_BE +androidx.viewpager2.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context,android.util.AttributeSet,int) +io.reactivex.subjects.PublishSubject$PublishDisposable: void dispose() +androidx.viewpager.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.R$bool: int cpv_default_is_indeterminate +com.google.android.material.circularreveal.CircularRevealLinearLayout: CircularRevealLinearLayout(android.content.Context,android.util.AttributeSet) +androidx.preference.R$styleable: int ActionBar_indeterminateProgressStyle +wangdaye.com.geometricweather.R$string: int sp_widget_day_setting +okio.ByteString: okio.ByteString decodeHex(java.lang.String) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.graphics.drawable.Drawable getItemBackground() +cyanogenmod.app.ProfileGroup$Mode +wangdaye.com.geometricweather.R$id: int source +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_67 +retrofit2.adapter.rxjava2.BodyObservable +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String LAST_UPDATE_TIME +okhttp3.OkHttpClient$Builder: okhttp3.CertificatePinner certificatePinner +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize +okhttp3.internal.http2.Hpack$Reader: int maxDynamicTableByteCount() wangdaye.com.geometricweather.R$array: int location_service_values -androidx.constraintlayout.widget.R$attr: int actionBarDivider -okhttp3.internal.http2.Http2: int INITIAL_MAX_FRAME_SIZE -wangdaye.com.geometricweather.R$style: R$style() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlActivated -com.google.android.material.R$attr: int cornerSize -com.jaredrummler.android.colorpicker.R$id: int action_bar_spinner -androidx.preference.R$style: int Base_V7_Widget_AppCompat_Toolbar -james.adaptiveicon.R$anim: int abc_popup_exit -wangdaye.com.geometricweather.R$drawable: int weather_cloudy -okhttp3.logging.LoggingEventListener: void requestBodyEnd(okhttp3.Call,long) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_hide_bubble -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean) -com.google.android.material.card.MaterialCardView: int getCheckedIconSize() -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_16dp -wangdaye.com.geometricweather.R$styleable: int[] StateListDrawable -androidx.hilt.lifecycle.R$id: int time -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: int phenomenoMaxColorId -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void setResource(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_creator -okhttp3.internal.Util: java.util.Map immutableMap(java.util.Map) -com.google.android.material.R$style: int Base_Widget_MaterialComponents_CheckedTextView -androidx.appcompat.R$dimen: int abc_alert_dialog_button_dimen -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_tintMode -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: android.os.IBinder createExternalView(android.os.Bundle) -com.google.android.material.R$dimen: int design_snackbar_padding_vertical_2lines -androidx.constraintlayout.widget.R$styleable: int Motion_animate_relativeTo -androidx.appcompat.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColorSchemeResource(int) +wangdaye.com.geometricweather.R$drawable: int abc_btn_check_to_on_mtrl_015 +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Caption +wangdaye.com.geometricweather.R$id: int activity_alert_container +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf +com.jaredrummler.android.colorpicker.R$bool: int abc_allow_stacked_button_bar +wangdaye.com.geometricweather.R$attr: int onNegativeCross +okio.Timeout: okio.Timeout NONE +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust WindGust +wangdaye.com.geometricweather.R$id: int widget_clock_day_week +wangdaye.com.geometricweather.R$drawable: int flag_nl +androidx.viewpager2.adapter.FragmentStateAdapter$FragmentMaxLifecycleEnforcer$3 +io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler) +com.google.android.material.R$styleable: int AppCompatTheme_actionModeSplitBackground +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarStyle +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(java.net.URL) +androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_layout +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_1 +com.jaredrummler.android.colorpicker.R$attr: int tintMode +androidx.constraintlayout.widget.R$dimen: int abc_control_corner_material +com.google.android.material.R$attr: int materialAlertDialogTheme +com.google.android.material.R$styleable: int MotionLayout_applyMotionScene +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSearchResultTitle +com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$id: int META +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) +com.turingtechnologies.materialscrollbar.R$attr: int hoveredFocusedTranslationZ +androidx.preference.R$styleable: int Preference_android_iconSpaceReserved +james.adaptiveicon.R$id: int radio +com.google.android.material.R$attr: int layout_constraintBaseline_creator +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_max +okio.AsyncTimeout: okio.AsyncTimeout head +androidx.preference.R$color: int material_grey_300 +androidx.constraintlayout.widget.R$styleable: int Constraint_android_minWidth +com.google.android.material.R$style: int Test_Theme_MaterialComponents_MaterialCalendar +com.google.android.material.R$animator: int design_fab_show_motion_spec +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSearchResultSubtitle +androidx.vectordrawable.animated.R$styleable: int[] GradientColorItem +androidx.appcompat.widget.Toolbar: void setSubtitleTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconTint +com.google.android.material.R$style: int Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_keylines +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: android.os.IBinder call() +okhttp3.internal.http.HttpHeaders: java.lang.String readToken(okio.Buffer) +com.xw.repo.bubbleseekbar.R$id: int decor_content_parent +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy[] values() +wangdaye.com.geometricweather.R$id: int action_bar_subtitle +retrofit2.KotlinExtensions$awaitResponse$2$2: KotlinExtensions$awaitResponse$2$2(kotlinx.coroutines.CancellableContinuation) +com.google.gson.stream.JsonReader: void nextNull() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getSerialNumber +com.google.android.material.R$attr: int layout_constraintEnd_toStartOf +io.reactivex.internal.util.NotificationLite: java.lang.Object complete() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +james.adaptiveicon.R$dimen: int abc_button_padding_horizontal_material +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.constraintlayout.widget.R$attr: int layout +androidx.hilt.work.R$dimen: int notification_media_narrow_margin +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo build() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean content +wangdaye.com.geometricweather.R$attr: int customColorDrawableValue +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String tempMin +com.google.android.material.chip.Chip: void setCloseIconSize(float) +com.jaredrummler.android.colorpicker.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) +androidx.appcompat.R$attr: int track +james.adaptiveicon.R$anim: R$anim() +com.google.android.material.R$styleable: int TabItem_android_text +okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_ENCODE_SET +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textSize +com.google.android.material.R$id: int tag_accessibility_heading +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_search +cyanogenmod.profiles.RingModeSettings +androidx.appcompat.widget.Toolbar: int getCurrentContentInsetEnd() +james.adaptiveicon.R$styleable: int TextAppearance_fontFamily +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoldLevel() +androidx.appcompat.R$styleable: int AppCompatSeekBar_android_thumb +wangdaye.com.geometricweather.R$attr: int msb_barColor +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Subhead +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_86 +okio.ByteString: void readObject(java.io.ObjectInputStream) +com.google.android.material.R$styleable: int Slider_android_enabled +wangdaye.com.geometricweather.R$styleable: int[] ActionBar +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.util.List Area +android.didikee.donate.R$layout: int abc_select_dialog_material +androidx.hilt.lifecycle.R$integer: R$integer() +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeBackground +androidx.appcompat.R$layout: int abc_list_menu_item_icon +okhttp3.Response: okhttp3.CacheControl cacheControl +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: boolean requestDismiss() +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void drain() +com.jaredrummler.android.colorpicker.R$dimen: int disabled_alpha_material_dark +okio.Timeout: okio.Timeout clearTimeout() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int pm10 +com.xw.repo.bubbleseekbar.R$attr: int customNavigationLayout +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: int UnitType +androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context) +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String weatherText +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig hourlyEntityDaoConfig +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_backgroundTint +wangdaye.com.geometricweather.R$attr: int gestureInsetBottomIgnored +okhttp3.internal.http2.Header +okhttp3.Address: java.net.Proxy proxy() +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: double lon +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: boolean cancelled +wangdaye.com.geometricweather.R$color: int design_fab_shadow_start_color +com.google.android.material.R$attr: int dayTodayStyle +androidx.constraintlayout.motion.widget.MotionLayout: int[] getConstraintSetIds() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean getYesterday() +androidx.work.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$anim: int popup_show_top_left +retrofit2.ParameterHandler: retrofit2.ParameterHandler array() +androidx.coordinatorlayout.R$layout: R$layout() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.fragment.R$styleable +com.xw.repo.bubbleseekbar.R$attr: int switchMinWidth +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchMinWidth +androidx.appcompat.R$color: int button_material_light +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_titleEnabled +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_setBtn +androidx.appcompat.R$color: int primary_text_disabled_material_light +androidx.viewpager.R$id: int action_text +androidx.appcompat.R$drawable: int abc_popup_background_mtrl_mult +androidx.appcompat.widget.LinearLayoutCompat: int getBaselineAlignedChildIndex() +io.reactivex.Observable: io.reactivex.Observable throttleFirst(long,java.util.concurrent.TimeUnit) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: long serialVersionUID +james.adaptiveicon.R$attr: int windowFixedWidthMinor +com.google.android.material.R$styleable: int Slider_trackHeight +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_delete_shortcut_label +com.turingtechnologies.materialscrollbar.R$attr: int msb_handleColor +androidx.appcompat.R$dimen: int abc_action_bar_default_padding_end_material +com.turingtechnologies.materialscrollbar.R$styleable: int[] CoordinatorLayout_Layout +androidx.lifecycle.ComputableLiveData$1: androidx.lifecycle.ComputableLiveData this$0 +com.google.android.material.R$attr: int tabIndicatorGravity +androidx.viewpager2.R$dimen: int notification_right_side_padding_top +android.didikee.donate.R$anim: int abc_popup_enter +io.reactivex.internal.util.ExceptionHelper$Termination: ExceptionHelper$Termination() +com.google.android.material.R$styleable: int SwitchCompat_android_textOff +androidx.activity.R$id: int right_icon +com.turingtechnologies.materialscrollbar.R$color: int accent_material_dark +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.internal.operators.observable.ObservableZip$ZipObserver[] observers +com.google.android.material.chip.Chip: com.google.android.material.resources.TextAppearance getTextAppearance() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: ObservableFlatMapCompletable$FlatMapCompletableMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setAirplaneModeEnabled_0 +androidx.core.widget.ContentLoadingProgressBar +james.adaptiveicon.R$styleable: int[] ActionMode +okhttp3.Route: java.lang.String toString() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_readPersistentBytes +okio.ByteString: okio.ByteString of(byte[]) +cyanogenmod.app.IProfileManager: void removeNotificationGroup(android.app.NotificationGroup) +com.google.android.material.appbar.MaterialToolbar: void setNavigationIcon(android.graphics.drawable.Drawable) +androidx.hilt.lifecycle.R$id: int text +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: double Value +wangdaye.com.geometricweather.R$attr: int onShow +com.jaredrummler.android.colorpicker.R$attr: int textColorSearchUrl +androidx.appcompat.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_text_padding_right +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +androidx.drawerlayout.R$dimen: int compat_notification_large_icon_max_width +androidx.constraintlayout.utils.widget.ImageFilterButton: float getRoundPercent() +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: boolean handles(android.content.Intent) +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_light +com.google.android.material.R$color: int material_grey_50 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String hour +androidx.preference.R$attr: int thickness +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_default +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.disposables.Disposable upstream +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: ObservableRepeatUntil$RepeatUntilObserver(io.reactivex.Observer,io.reactivex.functions.BooleanSupplier,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$drawable: int abc_edit_text_material +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3 +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer treeIndex +james.adaptiveicon.R$dimen: int notification_big_circle_margin +okhttp3.internal.connection.RealConnection: okhttp3.internal.http2.Http2Connection http2Connection +wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMark +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) +wangdaye.com.geometricweather.R$style: int Preference_Material +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.Observer downstream +retrofit2.ParameterHandler$QueryMap: retrofit2.Converter valueConverter +cyanogenmod.providers.CMSettings$System$1: CMSettings$System$1() +com.bumptech.glide.R$dimen: int notification_media_narrow_margin +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontWeight +androidx.appcompat.R$drawable: int abc_item_background_holo_dark +wangdaye.com.geometricweather.R$color: int colorLevel_4 +wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format +wangdaye.com.geometricweather.R$attr: int editTextBackground +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +com.xw.repo.bubbleseekbar.R$layout: int abc_popup_menu_header_item_layout +wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_large_material +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$drawable: int weather_snow +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_Primary +okhttp3.Interceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +wangdaye.com.geometricweather.R$attr: int actionLayout +io.reactivex.internal.operators.observable.ObservableReplay$Node +androidx.dynamicanimation.R$dimen: R$dimen() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRelativeHumidity(java.lang.Float) +cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_ACCESS +androidx.constraintlayout.widget.R$color: int primary_text_default_material_light +androidx.appcompat.widget.SwitchCompat: int getSwitchPadding() +androidx.preference.R$styleable: int AppCompatTheme_windowActionBar +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_icon_vertical_padding_material +com.google.android.material.circularreveal.CircularRevealGridLayout +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: long serialVersionUID +okio.BufferedSource: okio.ByteString readByteString() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void delete() +androidx.preference.R$dimen: int compat_button_inset_horizontal_material +com.xw.repo.bubbleseekbar.R$color: int error_color_material_light +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyTitle +androidx.constraintlayout.widget.R$dimen: int hint_alpha_material_dark +androidx.appcompat.resources.R$drawable: int notify_panel_notification_icon_bg +com.xw.repo.bubbleseekbar.R$style: int Platform_V21_AppCompat_Light +androidx.coordinatorlayout.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer grassLevel +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +com.jaredrummler.android.colorpicker.R$drawable: int notify_panel_notification_icon_bg +androidx.lifecycle.MethodCallsLogger: java.util.Map mCalledMethods +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_focusable +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +androidx.activity.R$string: R$string() +com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyle +android.didikee.donate.R$id: int edit_query +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Text +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: void setValue(java.lang.String) +androidx.fragment.app.Fragment$InstantiationException +androidx.hilt.work.R$id: int dialog_button +com.google.android.material.R$styleable: int TextAppearance_fontFamily +okio.Options +androidx.constraintlayout.widget.R$attr: int submitBackground +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_transformPivotX +okhttp3.TlsVersion: okhttp3.TlsVersion[] $VALUES +androidx.preference.R$styleable: int AppCompatTheme_actionModeShareDrawable +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onError(java.lang.Throwable) +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: long requested() +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setState(java.lang.String) com.jaredrummler.android.colorpicker.R$dimen: int notification_media_narrow_margin -cyanogenmod.app.Profile: void readTriggersFromXml(org.xmlpull.v1.XmlPullParser,android.content.Context,cyanogenmod.app.Profile) -android.didikee.donate.R$style: int Platform_V25_AppCompat -com.google.android.material.R$id: int home -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitleTextColor -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: long EpochDate -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_thickness -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_FixedSize -wangdaye.com.geometricweather.R$string: int feedback_background_location_title -com.jaredrummler.android.colorpicker.R$attr: int showSeekBarValue -wangdaye.com.geometricweather.R$array: int weather_source_voices -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog -com.google.android.material.R$attr: int listPreferredItemPaddingRight -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomSheet -wangdaye.com.geometricweather.background.polling.permanent.observer.TimeObserverService: TimeObserverService() -androidx.lifecycle.extensions.R$id: int tag_transition_group -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_fontFamily -com.turingtechnologies.materialscrollbar.R$dimen: int abc_alert_dialog_button_bar_height -androidx.appcompat.R$bool: int abc_allow_stacked_button_bar -wangdaye.com.geometricweather.R$string: int precipitation_middle -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startX -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -com.google.android.material.R$styleable: int TextAppearance_android_textColorLink -android.didikee.donate.R$layout: int abc_select_dialog_material -james.adaptiveicon.R$attr: int logo -android.didikee.donate.R$attr: int elevation -wangdaye.com.geometricweather.R$layout: int cpv_preference_square -com.bumptech.glide.R$id: int title -retrofit2.Response: okhttp3.ResponseBody errorBody() -androidx.vectordrawable.animated.R$id: int tag_accessibility_pane_title -cyanogenmod.externalviews.ExternalView: void onActivityPaused(android.app.Activity) -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage SOURCE -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button -wangdaye.com.geometricweather.R$styleable: int ArcProgress_background_color -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String sourceUrl -com.google.android.material.R$attr: int textLocale -androidx.hilt.work.R$style: int Widget_Compat_NotificationActionContainer -androidx.appcompat.R$id: int dialog_button -android.didikee.donate.R$color: int bright_foreground_material_dark -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_behavior -com.google.android.material.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -okhttp3.Call$Factory -com.turingtechnologies.materialscrollbar.R$attr: int msb_rightToLeft -wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_large_component -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide -com.bumptech.glide.integration.okhttp.R$dimen: int notification_action_text_size -com.google.android.material.R$style: int Widget_AppCompat_PopupMenu_Overflow -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar -androidx.preference.R$dimen: int abc_edit_text_inset_bottom_material -androidx.preference.R$style: int Preference_DialogPreference -androidx.constraintlayout.widget.R$dimen: int abc_text_size_body_1_material -com.google.android.material.R$styleable: int KeyPosition_percentY -io.reactivex.internal.util.AtomicThrowable: AtomicThrowable() -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_closeItemLayout -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setContentDescription(int) -wangdaye.com.geometricweather.R$string: int feedback_cannot_start_live_wallpaper_activity -androidx.preference.R$styleable: int[] AppCompatTextView -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.R$id: int material_timepicker_mode_button -com.google.android.material.floatingactionbutton.FloatingActionButton: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -okhttp3.Response$Builder: Response$Builder(okhttp3.Response) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_NoActionBar_Bridge -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabStyle -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat -androidx.preference.R$style: int PreferenceFragmentList -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA -androidx.appcompat.widget.AppCompatTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) -okhttp3.Headers$Builder: Headers$Builder() -com.google.android.material.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textColorSearchUrl -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitationDuration() -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer realFeelShaderTemperature -com.xw.repo.bubbleseekbar.R$attr: int overlapAnchor -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPopupWindowStyle -androidx.recyclerview.R$id: int accessibility_custom_action_15 -cyanogenmod.hardware.CMHardwareManager: boolean requireAdaptiveBacklightForSunlightEnhancement() -com.google.android.material.R$color: int switch_thumb_disabled_material_dark -com.bumptech.glide.integration.okhttp.R$id: int time -okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot nextSnapshot +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherText(java.lang.String) +androidx.lifecycle.SavedStateHandleController: void tryToAddRecreator(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_track_size +com.google.android.material.R$layout: int abc_activity_chooser_view +io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Action onComplete +wangdaye.com.geometricweather.R$id: int sawtooth +com.google.android.material.R$id: int navigation_header_container +androidx.preference.R$styleable: int AppCompatTheme_android_windowIsFloating +com.google.android.material.R$layout: int abc_action_bar_title_item +androidx.hilt.R$id: R$id() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: java.lang.String Name +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Medium_Inverse +okhttp3.internal.connection.RealConnection: void connect(int,int,int,int,boolean,okhttp3.Call,okhttp3.EventListener) +androidx.constraintlayout.widget.R$attr: int splitTrack +androidx.transition.R$dimen: int notification_small_icon_size_as_large +org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.database.Database getDatabase() +android.didikee.donate.R$id: int search_bar +okhttp3.internal.http2.Http2Connection$ReaderRunnable: okhttp3.internal.http2.Http2Connection this$0 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionButtonStyle +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindSpeed +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary DegreeDaySummary +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_bottomRecyclerView +androidx.preference.R$styleable: int AppCompatTheme_colorAccent +androidx.legacy.coreutils.R$dimen: int compat_control_corner_material +androidx.core.R$integer: R$integer() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +androidx.appcompat.view.menu.CascadingMenuPopup +com.jaredrummler.android.colorpicker.R$style: int Platform_V21_AppCompat_Light +androidx.preference.R$attr: int colorPrimary +com.google.android.material.slider.BaseSlider +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HURRICANE +cyanogenmod.profiles.BrightnessSettings: BrightnessSettings() +android.didikee.donate.R$styleable: int MenuGroup_android_menuCategory +james.adaptiveicon.R$drawable: int abc_ic_star_black_16dp +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle +androidx.appcompat.R$style: int Widget_AppCompat_ActionMode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial +androidx.appcompat.R$attr: int fontProviderAuthority +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextStyle +james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$array: int language_values +android.didikee.donate.R$styleable: int AppCompatTheme_editTextBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setZh_CN(java.lang.String) +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_keylines +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_base +androidx.appcompat.R$attr: int searchIcon +androidx.lifecycle.CompositeGeneratedAdaptersObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: java.lang.Float value +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.R$styleable: int MotionHelper_onHide +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,long,boolean) +androidx.appcompat.widget.Toolbar: void setNavigationOnClickListener(android.view.View$OnClickListener) +androidx.appcompat.R$styleable: int MenuView_android_verticalDivider +androidx.fragment.R$attr: int fontProviderAuthority +androidx.transition.R$dimen: int notification_large_icon_width +com.bumptech.glide.module.LibraryGlideModule: LibraryGlideModule() +wangdaye.com.geometricweather.R$styleable: int[] ConstraintLayout_placeholder +androidx.preference.R$styleable: int StateListDrawable_android_variablePadding +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_shapeAppearanceOverlay +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: java.lang.String Unit +com.google.android.material.datepicker.SingleDateSelector: android.os.Parcelable$Creator CREATOR +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String BOOTANIMATION_THUMBNAIL +androidx.preference.R$attr: int tooltipFrameBackground +cyanogenmod.providers.CMSettings$System: int getIntForUser(android.content.ContentResolver,java.lang.String,int) +wangdaye.com.geometricweather.R$style: int spinner_item +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_DropDownItem_Spinner +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +androidx.fragment.app.SuperNotCalledException +com.google.android.material.timepicker.ClockHandView: void addOnRotateListener(com.google.android.material.timepicker.ClockHandView$OnRotateListener) +com.google.android.material.chip.Chip: java.lang.CharSequence getChipText() +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_NIGHT +androidx.constraintlayout.widget.R$color: int androidx_core_ripple_material_light +androidx.preference.R$styleable: int AppCompatTheme_actionBarTabBarStyle +androidx.constraintlayout.widget.R$styleable: int[] MotionTelltales +androidx.preference.R$attr: int textAppearancePopupMenuHeader +android.didikee.donate.R$id: int contentPanel +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Button +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getProfileHasAppProfiles +androidx.constraintlayout.widget.R$id: int accelerate +com.google.android.material.R$styleable: int KeyCycle_framePosition +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int consumed +okhttp3.internal.http2.Http2Stream$FramingSink: void flush() +cyanogenmod.app.Profile: void setTrigger(cyanogenmod.app.Profile$ProfileTrigger) com.google.android.material.bottomappbar.BottomAppBar: void setBackgroundTint(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_checkbox -okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String access$000(okhttp3.internal.cache.DiskLruCache$Snapshot) -okio.ForwardingTimeout: okio.Timeout clearTimeout() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.disposables.Disposable upstream -com.xw.repo.bubbleseekbar.R$id: int italic -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$attr: int yearTodayStyle -androidx.hilt.lifecycle.R$dimen: int notification_action_text_size -com.google.android.material.R$styleable: int BottomAppBar_fabAlignmentMode -cyanogenmod.weather.RequestInfo: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial Imperial -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason DECODE_DATA -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_alphabeticModifiers -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindChillTemperature -com.google.android.material.R$integer: int app_bar_elevation_anim_duration -android.didikee.donate.R$attr: int homeLayout -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Dialog_Bridge -wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity -wangdaye.com.geometricweather.R$attr: int counterOverflowTextColor -com.google.android.material.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -androidx.appcompat.widget.AppCompatButton: void setSupportCompoundDrawablesTintList(android.content.res.ColorStateList) -com.google.android.material.R$style: int Theme_AppCompat_Light_NoActionBar -wangdaye.com.geometricweather.R$attr: int cpv_thickness -com.google.android.material.button.MaterialButton: void setShouldDrawSurfaceColorStroke(boolean) -wangdaye.com.geometricweather.R$attr: int checkedIconTint -cyanogenmod.app.CustomTile$GridExpandedStyle: CustomTile$GridExpandedStyle() -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog -androidx.appcompat.widget.AppCompatEditText -cyanogenmod.app.ProfileGroup: void setSoundMode(cyanogenmod.app.ProfileGroup$Mode) -android.didikee.donate.R$styleable: int PopupWindow_android_popupBackground -android.didikee.donate.R$styleable: int SwitchCompat_trackTint -androidx.work.impl.background.systemjob.SystemJobService -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position position -com.google.android.material.R$style: int Animation_MaterialComponents_BottomSheetDialog -androidx.appcompat.R$drawable: int abc_ic_menu_share_mtrl_alpha -james.adaptiveicon.R$layout: int abc_list_menu_item_icon -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Large_Inverse -android.support.v4.app.INotificationSideChannel: void cancelAll(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_maxHeight -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -androidx.recyclerview.R$id: int normal -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_begin -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.internal.util.AtomicThrowable errors -androidx.customview.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$attr: int badgeTextColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX getTemperature() -okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date expires -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: int hasRain -androidx.preference.R$attr: int selectableItemBackground -com.google.android.material.R$attr: int imageButtonStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.Date pubTime -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Menu -androidx.coordinatorlayout.R$drawable: int notification_bg_low -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void replay(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerError(java.lang.Throwable) -retrofit2.adapter.rxjava2.HttpException -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableRight -com.google.android.material.R$attr: int commitIcon -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) -androidx.transition.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$attr: int tabMode -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_CBC_SHA256 -com.jaredrummler.android.colorpicker.R$id: int multiply -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeight -androidx.appcompat.R$id: int action_mode_close_button -wangdaye.com.geometricweather.R$dimen: int cardview_default_radius -androidx.constraintlayout.widget.R$attr: int layout_goneMarginBottom -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position position -io.reactivex.internal.observers.DeferredScalarDisposable: io.reactivex.Observer downstream -androidx.appcompat.R$styleable: int MenuItem_android_title -wangdaye.com.geometricweather.R$styleable: int Chip_android_textAppearance -androidx.appcompat.R$attr: int trackTintMode +android.didikee.donate.R$layout: int abc_action_menu_layout +com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_material_dark +androidx.core.app.ComponentActivity +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onKeyguardShowing(boolean) +androidx.lifecycle.extensions.R$attr: int fontWeight +wangdaye.com.geometricweather.R$attr: int textAppearanceSubtitle1 +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_padding_top_material +androidx.recyclerview.R$styleable: int FontFamilyFont_font +androidx.customview.R$integer: R$integer() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ButtonBar +androidx.preference.R$styleable: int AppCompatTheme_buttonBarButtonStyle +androidx.hilt.work.R$anim: int fragment_close_enter +androidx.preference.R$anim: int btn_checkbox_to_checked_icon_null_animation +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Type +androidx.core.widget.NestedScrollView: void setFillViewport(boolean) +com.google.android.material.R$styleable: int[] State +okhttp3.Cache: java.util.Iterator urls() +androidx.constraintlayout.widget.R$color: int material_blue_grey_800 +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SeekBar +androidx.preference.R$id: int accessibility_custom_action_5 +wangdaye.com.geometricweather.R$style: int Theme_Design +com.google.android.material.R$styleable: int MenuItem_android_checked +cyanogenmod.app.CustomTile$GridExpandedStyle +androidx.lifecycle.ViewModelStore: void clear() +androidx.recyclerview.widget.RecyclerView: void setViewCacheExtension(androidx.recyclerview.widget.RecyclerView$ViewCacheExtension) +wangdaye.com.geometricweather.R$styleable: int ActionBar_homeLayout +android.didikee.donate.R$color: int primary_text_disabled_material_light +wangdaye.com.geometricweather.R$string: int key_view_type +retrofit2.ServiceMethod: java.lang.Object invoke(java.lang.Object[]) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabBar +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Caption +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight +com.turingtechnologies.materialscrollbar.R$id: int radio +com.google.android.material.R$attr: int errorContentDescription +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipSurfaceColor +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setSnowPrecipitation(java.lang.Float) +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_material_dark +android.didikee.donate.R$layout: int abc_popup_menu_item_layout +com.google.android.material.button.MaterialButton: void setIconTintMode(android.graphics.PorterDuff$Mode) +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +okhttp3.internal.http2.Http2Writer: void ping(boolean,int,int) +com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.String,java.lang.Throwable) +james.adaptiveicon.R$styleable: int SearchView_closeIcon +androidx.work.R$styleable: int ColorStateListItem_android_color +androidx.preference.R$id: int search_go_btn +james.adaptiveicon.R$dimen: int abc_text_size_display_4_material +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,boolean) +io.reactivex.Observable: io.reactivex.Observable skip(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$styleable +android.didikee.donate.R$style: int Widget_AppCompat_Light_SearchView +retrofit2.Response: java.lang.String toString() +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onDetach() +com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Button +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onSubscribe(org.reactivestreams.Subscription) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: int uv +android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +james.adaptiveicon.R$styleable: int SearchView_android_inputType +wangdaye.com.geometricweather.R$string: int daily_overview +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties +androidx.viewpager2.R$attr: int fontProviderPackage +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$drawable: int notif_temp_98 +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void clear() +com.google.android.material.R$styleable: int Constraint_layout_goneMarginStart +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_layout +okhttp3.internal.http2.Http2: java.lang.IllegalArgumentException illegalArgument(java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWeatherText +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: long serialVersionUID +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Small +wangdaye.com.geometricweather.R$drawable: int test_custom_background +wangdaye.com.geometricweather.R$dimen: int widget_subtitle_text_size +androidx.dynamicanimation.R$dimen: int notification_large_icon_height +androidx.appcompat.R$styleable: int Spinner_android_entries +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type[] getActualTypeArguments() +wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendHourlyProvider: WidgetTrendHourlyProvider() +com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingBottom +androidx.viewpager.R$id: int chronometer +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +com.google.android.material.R$bool: int abc_config_actionMenuItemAllCaps +androidx.lifecycle.Transformations$2: androidx.lifecycle.MediatorLiveData val$result +androidx.activity.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String to +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_height_major +james.adaptiveicon.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitationProbability +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_rippleColor +com.google.android.material.R$styleable: int MaterialButton_strokeColor +okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV3 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String feelslike_c +wangdaye.com.geometricweather.location.services.LocationService: android.app.NotificationChannel getLocationNotificationChannel(android.content.Context) +androidx.preference.R$dimen: int abc_edit_text_inset_bottom_material +com.google.android.material.R$drawable: int abc_ratingbar_indicator_material +cyanogenmod.app.ProfileGroup$1 +com.google.android.material.R$styleable: int KeyTimeCycle_curveFit +androidx.lifecycle.extensions.R$dimen: int compat_notification_large_icon_max_height +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_FALLBACK_SCSV +androidx.constraintlayout.widget.R$layout: int abc_tooltip +com.google.android.material.R$styleable: int MenuItem_android_orderInCategory +androidx.hilt.lifecycle.R$color: int ripple_material_light +com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_backgroundTintMode +cyanogenmod.app.Profile: java.util.Map profileGroups +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: java.util.Date StartDateTime +androidx.appcompat.R$drawable: int abc_ratingbar_material +wangdaye.com.geometricweather.R$id: int widget_clock_day_time +androidx.transition.R$style: int Widget_Compat_NotificationActionContainer +com.jaredrummler.android.colorpicker.R$attr: int lastBaselineToBottomHeight +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog +android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalBias +android.didikee.donate.R$id: int info +retrofit2.adapter.rxjava2.Result: retrofit2.Response response() +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +androidx.preference.R$color: R$color() +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: double mHigh +androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setO3Desc(java.lang.String) +com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +wangdaye.com.geometricweather.R$id: int month_grid +wangdaye.com.geometricweather.R$attr: int hideOnScroll +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +androidx.appcompat.R$styleable: int MenuItem_android_titleCondensed +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: AccuCurrentResult$PrecipitationSummary$Past18Hours() +androidx.appcompat.R$id: int search_close_btn +com.google.android.material.R$dimen: int tooltip_y_offset_touch +wangdaye.com.geometricweather.R$string: int cpv_custom +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionBarOverlay +androidx.transition.R$dimen: int notification_top_pad_large_text +io.reactivex.Observable: io.reactivex.Single singleOrError() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: java.lang.String Unit +androidx.work.R$style +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextAppearanceInactive(int) +androidx.work.R$styleable: int FontFamilyFont_android_fontStyle +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_padding_right +androidx.preference.R$color: int switch_thumb_disabled_material_dark +com.jaredrummler.android.colorpicker.R$attr: int buttonTintMode +com.google.android.material.R$dimen: int mtrl_chip_pressed_translation_z +cyanogenmod.profiles.StreamSettings +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableEndCompat +okhttp3.Authenticator$1: okhttp3.Request authenticate(okhttp3.Route,okhttp3.Response) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_minHeight +androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$attr: int paddingBottomNoButtons +android.didikee.donate.R$styleable: int AppCompatTheme_editTextStyle +okhttp3.internal.http2.Http2Connection$5: Http2Connection$5(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,java.util.List,boolean) +androidx.legacy.coreutils.R$dimen: int compat_notification_large_icon_max_width +okhttp3.internal.tls.DistinguishedNameParser: int beg +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_top +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean unbounded +wangdaye.com.geometricweather.R$drawable: int design_fab_background +okhttp3.CacheControl$Builder: boolean onlyIfCached +androidx.recyclerview.R$id: int icon +wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line1_head_interpolator +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert +androidx.activity.R$styleable: int GradientColorItem_android_color +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_navigationMode +okhttp3.internal.cache.CacheStrategy$Factory: long receivedResponseMillis +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getShortUVDescription() +android.didikee.donate.R$style: int Base_Widget_AppCompat_SeekBar +androidx.appcompat.R$styleable: int ViewStubCompat_android_id +android.didikee.donate.R$styleable: int MenuGroup_android_visible +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconTint +wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemBackground +androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_chainStyle +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.lang.Object leaveTransform(java.lang.Object) +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod getAlpnSelectedProtocol +androidx.preference.R$attr: int listPopupWindowStyle +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_translation_z_pressed +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_pressed_holo_dark +com.google.android.material.R$styleable: int TextInputLayout_counterOverflowTextAppearance +androidx.appcompat.R$id: int tag_accessibility_pane_title +androidx.constraintlayout.widget.R$id: int parentRelative +com.xw.repo.bubbleseekbar.R$layout: int notification_template_part_chronometer +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: void truncateFinal() +com.bumptech.glide.R$attr: int layout_keyline +wangdaye.com.geometricweather.R$drawable: int flag_fr +androidx.preference.R$styleable: int AlertDialog_listLayout +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onError(java.lang.Throwable) +com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior +com.google.android.material.R$styleable: int AppCompatTheme_panelMenuListTheme +com.google.android.material.R$id: int barrier +cyanogenmod.providers.CMSettings$Global: android.net.Uri getUriFor(java.lang.String) +androidx.fragment.R$attr: int alpha +retrofit2.http.Query +androidx.constraintlayout.widget.R$dimen: int notification_big_circle_margin +cyanogenmod.providers.CMSettings$CMSettingNotFoundException: CMSettings$CMSettingNotFoundException(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int notif_temp_1 +retrofit2.Retrofit$Builder: java.util.List converterFactories +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Title_Inverse +wangdaye.com.geometricweather.R$id: int notification_multi_city_2 +io.reactivex.subjects.PublishSubject$PublishDisposable: boolean isDisposed() +com.jaredrummler.android.colorpicker.R$attr: int layout_anchor +retrofit2.RequestFactory: okhttp3.Request create(java.lang.Object[]) +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: long serialVersionUID +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.functions.Function mapper +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginBottom +androidx.constraintlayout.widget.R$styleable: int[] AppCompatSeekBar +retrofit2.Invocation +androidx.appcompat.R$drawable: int abc_ic_menu_overflow_material +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeColor(int) +james.adaptiveicon.R$dimen: int abc_disabled_alpha_material_dark +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator +com.google.android.material.R$styleable: int Slider_android_valueFrom +androidx.appcompat.R$dimen: int abc_alert_dialog_button_dimen +android.didikee.donate.R$styleable: int MenuItem_contentDescription +james.adaptiveicon.R$styleable: int Toolbar_navigationIcon +com.github.rahatarmanahmed.cpv.CircularProgressView$5: void onAnimationEnd(android.animation.Animator) +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_LEGACY_THEME +androidx.work.R$styleable: int GradientColor_android_centerX +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionMenuTextColor +wangdaye.com.geometricweather.R$id: int material_timepicker_view +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +android.didikee.donate.R$styleable: int MenuItem_android_title +androidx.constraintlayout.widget.R$styleable: int SearchView_android_inputType +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver +android.didikee.donate.R$id: int expanded_menu +androidx.transition.R$id: int blocking +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_256_GCM_SHA384 +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline1 +com.google.android.material.R$styleable: int FloatingActionButton_android_enabled +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeChangeListener mThemeChangeListener +com.google.android.material.switchmaterial.SwitchMaterial: void setUseMaterialThemeColors(boolean) +wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_small_component +okhttp3.internal.cache.DiskLruCache: void flush() +com.google.android.material.R$dimen: int mtrl_calendar_day_horizontal_padding +com.google.android.material.textfield.TextInputLayout: void setEndIconMode(int) +cyanogenmod.providers.CMSettings$Secure: java.lang.String RECENTS_LONG_PRESS_ACTIVITY +androidx.lifecycle.LiveData: int getVersion() +com.xw.repo.bubbleseekbar.R$attr: int dividerHorizontal +androidx.loader.R$styleable: int[] FontFamilyFont +androidx.appcompat.widget.AbsActionBarView: void setVisibility(int) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton_CloseMode +androidx.constraintlayout.widget.R$styleable: int Layout_barrierAllowsGoneWidgets +wangdaye.com.geometricweather.R$color: int design_dark_default_color_secondary_variant +wangdaye.com.geometricweather.R$string: int widget_clock_day_horizontal +androidx.transition.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.R$id: int action_settings +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorAccent +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: void setDrawable(boolean) +james.adaptiveicon.R$styleable: int MenuGroup_android_visible +com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_android_textAppearance +androidx.constraintlayout.widget.R$attr: int motionInterpolator +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void cancelLiveLockScreen(java.lang.String,int,int) +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startColor +com.xw.repo.bubbleseekbar.R$attr: int actionBarTabTextStyle +androidx.appcompat.R$dimen: int highlight_alpha_material_light +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout +androidx.preference.R$attr: int colorSwitchThumbNormal +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalAlign +wangdaye.com.geometricweather.R$animator +androidx.preference.R$style: int Widget_AppCompat_DropDownItem_Spinner +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_Solid +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_divider +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float rain +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.String toString() +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_unregisterListener +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +com.xw.repo.bubbleseekbar.R$attr: int borderlessButtonStyle +cyanogenmod.app.CMContextConstants: java.lang.String CM_THEME_SERVICE +okhttp3.internal.http2.Http2Connection: void writeSynReset(int,okhttp3.internal.http2.ErrorCode) +androidx.core.app.RemoteActionCompatParcelizer +io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +androidx.appcompat.widget.AppCompatImageView: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setCityId(java.lang.String) +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Time +com.google.android.material.R$styleable: int Chip_closeIconVisible +com.google.android.material.R$styleable: int Transform_android_translationX +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: android.os.IBinder asBinder() +androidx.appcompat.R$style: int TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitation +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextInputLayout +androidx.transition.R$dimen: int notification_small_icon_background_padding +okhttp3.internal.cache.CacheStrategy$Factory: CacheStrategy$Factory(long,okhttp3.Request,okhttp3.Response) +wangdaye.com.geometricweather.R$id: int search_plate +androidx.coordinatorlayout.R$layout: int notification_template_part_chronometer +retrofit2.DefaultCallAdapterFactory$1 +com.google.android.material.R$dimen: int abc_text_size_subtitle_material_toolbar +com.google.android.material.R$string: int abc_searchview_description_query +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver CANCELLED +cyanogenmod.providers.CMSettings$Secure: boolean putFloat(android.content.ContentResolver,java.lang.String,float) +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder protocols(java.util.List) +com.turingtechnologies.materialscrollbar.R$styleable: int[] Spinner +cyanogenmod.weatherservice.IWeatherProviderService: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) +androidx.appcompat.R$styleable: int AppCompatTextView_android_textAppearance +androidx.activity.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$styleable: int MenuView_android_verticalDivider +com.bumptech.glide.integration.okhttp.R$id: int async +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: long serialVersionUID +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: ObservableObserveOn$ObserveOnObserver(io.reactivex.Observer,io.reactivex.Scheduler$Worker,boolean,int) +androidx.vectordrawable.animated.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.main.dialogs.HourlyWeatherDialog +android.didikee.donate.R$attr: int titleMarginTop +com.jaredrummler.android.colorpicker.R$attr: int actionMenuTextColor +androidx.appcompat.R$layout: int select_dialog_singlechoice_material +com.google.android.material.R$color: int design_fab_stroke_end_outer_color +wangdaye.com.geometricweather.background.receiver.widget.WidgetTextProvider: WidgetTextProvider() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: java.lang.String Unit +androidx.coordinatorlayout.R$id: int notification_main_column +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_android_entryValues +androidx.customview.R$id: int notification_main_column_container +com.jaredrummler.android.colorpicker.R$styleable: int Preference_key +androidx.appcompat.R$styleable: int AppCompatTheme_colorButtonNormal +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf +io.reactivex.internal.observers.DeferredScalarDisposable: void error(java.lang.Throwable) +wangdaye.com.geometricweather.R$color: int design_default_color_on_surface +james.adaptiveicon.R$style: int Base_V22_Theme_AppCompat_Light +com.google.android.material.R$id: int autoComplete androidx.appcompat.resources.R$id: int normal -androidx.appcompat.widget.AppCompatRadioButton: android.content.res.ColorStateList getSupportBackgroundTintList() -cyanogenmod.weather.WeatherLocation$Builder -com.google.android.material.R$attr: int state_collapsible -wangdaye.com.geometricweather.R$array: int widget_text_color_values -androidx.hilt.lifecycle.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice -androidx.versionedparcelable.CustomVersionedParcelable: CustomVersionedParcelable() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric -androidx.swiperefreshlayout.R$drawable: int notification_bg_low_normal -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.ErrorCode getErrorCode() -androidx.core.R$layout: int notification_template_icon_group -okhttp3.internal.http.HttpDate: java.lang.ThreadLocal STANDARD_DATE_FORMAT -retrofit2.Utils: Utils() -com.xw.repo.bubbleseekbar.R$attr: int bsb_is_float_type -wangdaye.com.geometricweather.R$string: int week_5 -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_iconifiedByDefault -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableRight -wangdaye.com.geometricweather.R$attr: int layout_goneMarginTop -wangdaye.com.geometricweather.R$layout: int dialog_running_in_background -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_divider -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getAlarmThemePackageName() -com.google.android.material.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List kongtiao -wangdaye.com.geometricweather.R$styleable: int Chip_android_maxWidth -androidx.preference.R$id: int action_bar_activity_content -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification -androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_height_material -retrofit2.BuiltInConverters$VoidResponseBodyConverter -wangdaye.com.geometricweather.R$styleable: int[] TouchScrollBar -com.google.android.material.navigation.NavigationView: void setItemMaxLines(int) -androidx.loader.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$style: int CardView_Dark -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: PrecipitationDuration(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Caption -com.jaredrummler.android.colorpicker.R$attr: int actionModePopupWindowStyle -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean emitLast -com.jaredrummler.android.colorpicker.R$styleable: int Preference_enabled -james.adaptiveicon.R$dimen -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -retrofit2.ParameterHandler$Query: retrofit2.Converter valueConverter -com.turingtechnologies.materialscrollbar.R$integer: int hide_password_duration -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog_Alert -retrofit2.RequestFactory$Builder: boolean isKotlinSuspendFunction -com.google.android.material.R$id: int shortcut -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -androidx.appcompat.R$id: int info -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Counter -okhttp3.internal.http2.Http2Writer: void settings(okhttp3.internal.http2.Settings) -retrofit2.OptionalConverterFactory$OptionalConverter: java.util.Optional convert(okhttp3.ResponseBody) -androidx.viewpager.R$drawable: int notification_action_background -androidx.customview.R$attr: R$attr() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_EditText -cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,int,int) -androidx.appcompat.R$styleable: int Toolbar_titleTextAppearance -okhttp3.internal.platform.Jdk9Platform: Jdk9Platform(java.lang.reflect.Method,java.lang.reflect.Method) -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetEndWithActions -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void subscribe(io.reactivex.ObservableSource[]) -wangdaye.com.geometricweather.db.entities.DaoSession: DaoSession(org.greenrobot.greendao.database.Database,org.greenrobot.greendao.identityscope.IdentityScopeType,java.util.Map) -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_orientation -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_0 -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -androidx.preference.R$id: int scrollIndicatorUp -com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_swipe_escape_max_velocity -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type RIGHT -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_iconifiedByDefault -retrofit2.RequestFactory$Builder: boolean isMultipart -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_android_textAppearance -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STYLE_THUMBNAIL -com.google.android.material.R$styleable: int Layout_layout_constraintVertical_bias -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ButtonBar -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation -okio.RealBufferedSource: long indexOfElement(okio.ByteString,long) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -androidx.constraintlayout.widget.R$attr: int state_above_anchor -wangdaye.com.geometricweather.R$string: int mtrl_picker_a11y_prev_month -cyanogenmod.app.StatusBarPanelCustomTile: int initialPid -androidx.constraintlayout.widget.R$drawable: int abc_spinner_mtrl_am_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_recyclerView -com.google.android.material.appbar.CollapsingToolbarLayout: java.lang.CharSequence getTitle() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$styleable: int ActionBarLayout_android_layout_gravity -androidx.work.R$id: int time -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -androidx.constraintlayout.widget.R$attr: int buttonStyleSmall -okio.AsyncTimeout$1: void flush() -cyanogenmod.app.CustomTile$Builder: boolean mSensitiveData -com.google.android.material.R$attr: int contentScrim -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_summaryOff -android.didikee.donate.R$attr: int paddingBottomNoButtons -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$300() -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTextPadding -com.google.android.material.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -androidx.fragment.R$id: int accessibility_action_clickable_span -androidx.constraintlayout.widget.R$styleable: int Toolbar_collapseContentDescription -androidx.preference.R$dimen: int hint_pressed_alpha_material_dark -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: double Value -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_disabled_elevation -com.google.android.material.R$attr: int yearStyle -james.adaptiveicon.R$id: int title_template -com.turingtechnologies.materialscrollbar.R$attr: int msb_hideDelayInMilliseconds -james.adaptiveicon.R$drawable: int abc_btn_radio_to_on_mtrl_015 -james.adaptiveicon.R$styleable: int AppCompatTheme_editTextStyle -androidx.appcompat.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderTextColor -com.google.android.material.R$layout: int mtrl_calendar_days_of_week -androidx.preference.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -com.google.android.material.R$styleable: int OnSwipe_touchRegionId -cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.view.View onCreateView() -androidx.preference.R$styleable: int CoordinatorLayout_statusBarBackground -wangdaye.com.geometricweather.R$id: int checked -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: int UnitType -wangdaye.com.geometricweather.R$styleable: int ActionBar_hideOnContentScroll -wangdaye.com.geometricweather.R$color: int abc_secondary_text_material_dark -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HOME_WAKE_SCREEN_VALIDATOR -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: boolean done -io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Runnable runnable -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DialogWhenLarge -androidx.appcompat.R$dimen: int notification_action_text_size -com.turingtechnologies.materialscrollbar.R$color: int mtrl_fab_ripple_color -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onComplete() -com.google.android.material.R$styleable: int[] AppCompatImageView -com.jaredrummler.android.colorpicker.R$layout: int expand_button -com.google.android.material.R$attr: int layout_constraintStart_toStartOf -com.google.android.material.R$color: int mtrl_calendar_selected_range -android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedHeightMinor -androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf -androidx.appcompat.R$anim: int abc_fade_out -androidx.appcompat.R$attr: int windowMinWidthMinor -okhttp3.internal.NamedRunnable -wangdaye.com.geometricweather.db.entities.ChineseCityEntity -androidx.swiperefreshlayout.R$styleable: int[] FontFamily -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object getAndNullValue() -androidx.transition.R$id: int time -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -androidx.hilt.R$id: int accessibility_custom_action_10 -androidx.swiperefreshlayout.R$layout -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_HelperText -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDefaultSmsSub -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_line -wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_android_alpha -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dividerHorizontal -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial() -androidx.preference.R$styleable: int Toolbar_titleMarginBottom -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: long read(okio.Buffer,long) -com.turingtechnologies.materialscrollbar.R$style: int Base_CardView -okhttp3.internal.ws.RealWebSocket: boolean writeOneFrame() -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status[] values() -android.didikee.donate.R$drawable: int abc_ab_share_pack_mtrl_alpha -com.xw.repo.bubbleseekbar.R$attr: int switchStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial() -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_contentDescription -androidx.coordinatorlayout.R$attr: int layout_behavior -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) +wangdaye.com.geometricweather.R$drawable: int notif_temp_20 +com.google.android.material.R$string: int mtrl_picker_text_input_month_abbr +com.google.android.material.R$styleable: int MaterialCardView_checkedIconTint +com.google.android.material.R$styleable: int Tooltip_android_padding +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String weatherText +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour MATCH_PARENT +androidx.core.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$styleable: int[] FontFamily +androidx.appcompat.R$style: int ThemeOverlay_AppCompat +androidx.appcompat.widget.ActionBarOverlayLayout: void setShowingForActionMode(boolean) +androidx.vectordrawable.animated.R$id: int title +com.google.android.material.chip.Chip: void setChipCornerRadius(float) +androidx.appcompat.R$styleable: int SwitchCompat_android_textOn +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitationProbability +com.bumptech.glide.load.engine.GlideException: java.lang.String detailMessage +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonStyleSmall +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_backgroundStacked +com.xw.repo.bubbleseekbar.R$style: int Platform_V25_AppCompat +wangdaye.com.geometricweather.R$styleable: int[] OnClick +cyanogenmod.app.Profile$ProfileTrigger$1: Profile$ProfileTrigger$1() +androidx.appcompat.R$attr: int drawableTintMode +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setIcePrecipitation(java.lang.Float) +com.google.android.material.R$attr: int titleTextStyle +android.didikee.donate.R$styleable: int SearchView_closeIcon +com.google.android.material.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +okhttp3.internal.NamedRunnable: void run() +androidx.lifecycle.Lifecycling +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getUnitId() +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.Observer downstream +androidx.constraintlayout.widget.R$styleable: int Layout_layout_editor_absoluteX +androidx.appcompat.widget.SearchView: SearchView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_extendMotionSpec +com.xw.repo.bubbleseekbar.R$layout: int notification_template_part_time +com.google.android.material.bottomappbar.BottomAppBar: float getFabTranslationX() +com.google.gson.FieldNamingPolicy$3: FieldNamingPolicy$3(java.lang.String,int) +wangdaye.com.geometricweather.R$dimen: int abc_disabled_alpha_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial +cyanogenmod.weather.CMWeatherManager$2$1 +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay +wangdaye.com.geometricweather.R$id: int widget_week_week_5 +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +wangdaye.com.geometricweather.db.entities.AlertEntity: void setAlertId(long) +james.adaptiveicon.R$attr: int colorControlActivated +okhttp3.internal.Util: javax.net.ssl.X509TrustManager platformTrustManager() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_Underlined +androidx.appcompat.R$attr: int listPreferredItemPaddingEnd +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List dailyForecast +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPublishDate(java.util.Date) +wangdaye.com.geometricweather.R$attr: int behavior_hideable +com.xw.repo.bubbleseekbar.R$style: int Base_V26_Widget_AppCompat_Toolbar +james.adaptiveicon.R$style: int Widget_Compat_NotificationActionContainer +androidx.hilt.R$styleable: int FragmentContainerView_android_name +wangdaye.com.geometricweather.R$transition: int search_activity_shared_return +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Subtitle1 +wangdaye.com.geometricweather.R$styleable: int[] AppBarLayout_Layout +com.jaredrummler.android.colorpicker.R$styleable +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onComplete() +james.adaptiveicon.R$styleable: int MenuItem_actionLayout +com.turingtechnologies.materialscrollbar.R$dimen: int design_textinput_caption_translate_y +wangdaye.com.geometricweather.R$attr: int contentPadding +androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context) +androidx.constraintlayout.widget.R$string: int abc_menu_meta_shortcut_label +androidx.recyclerview.widget.RecyclerView: void addOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_android_maxHeight +wangdaye.com.geometricweather.R$drawable: int abc_seekbar_thumb_material +androidx.vectordrawable.R$styleable: int FontFamilyFont_fontStyle +androidx.appcompat.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dark +androidx.cardview.R$attr: int cardPreventCornerOverlap +james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context,android.util.AttributeSet,int) +android.didikee.donate.R$style: int Base_V23_Theme_AppCompat +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_toLeftOf +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi: io.reactivex.Observable getLocation(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property SunRiseDate +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_cut_mtrl_alpha +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginStart(int) +com.turingtechnologies.materialscrollbar.R$attr: int cardBackgroundColor +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +com.github.rahatarmanahmed.cpv.CircularProgressView$6: void onAnimationUpdate(android.animation.ValueAnimator) +okhttp3.internal.http2.Http2Reader: void readData(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_100 +cyanogenmod.app.Profile: void setTrigger(int,java.lang.String,int,java.lang.String) +androidx.preference.SeekBarPreference: SeekBarPreference(android.content.Context,android.util.AttributeSet) +cyanogenmod.app.LiveLockScreenManager +com.google.android.material.R$id: int action_context_bar +androidx.lifecycle.Transformations$3: androidx.lifecycle.MediatorLiveData val$outputLiveData +com.google.gson.stream.JsonReader: boolean fillBuffer(int) +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analogContainer_light +wangdaye.com.geometricweather.R$attr: int expandedTitleMarginStart +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode fromHttp2(int) +okhttp3.internal.http1.Http1Codec$ChunkedSink: void close() +io.reactivex.Observable: io.reactivex.Observable fromArray(java.lang.Object[]) +wangdaye.com.geometricweather.R$dimen: int material_font_2_0_box_collapsed_padding_top +cyanogenmod.profiles.ConnectionSettings$1: java.lang.Object[] newArray(int) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int OTHER_STATE_CONSUMED_OR_EMPTY +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_caption_material +com.google.android.material.slider.BaseSlider: void setThumbRadiusResource(int) +com.google.android.material.R$styleable: int Chip_checkedIconEnabled +wangdaye.com.geometricweather.R$attr: int drawable_res_on +wangdaye.com.geometricweather.R$id: int item_about_translator_flag +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_percent +cyanogenmod.app.ILiveLockScreenManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +okio.Buffer: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) +androidx.appcompat.R$interpolator +com.turingtechnologies.materialscrollbar.R$attr: int hintTextAppearance +james.adaptiveicon.R$attr: int listPopupWindowStyle +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundResource(int) +cyanogenmod.platform.Manifest$permission: java.lang.String BIND_CUSTOM_TILE_LISTENER_SERVICE +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean set(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_AM_PM_VALIDATOR +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +androidx.loader.R$attr: int fontProviderFetchStrategy +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer uvIndex +androidx.preference.R$styleable: int Toolbar_collapseContentDescription +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitation(java.lang.Float) +android.didikee.donate.R$dimen: int abc_text_size_body_2_material +wangdaye.com.geometricweather.R$animator: int mtrl_btn_state_list_anim +androidx.appcompat.resources.R$dimen: int compat_button_inset_vertical_material +com.google.gson.stream.JsonReader: java.lang.String locationString() +com.google.android.material.R$attr: int mock_diagonalsColor +cyanogenmod.themes.ThemeManager$2 +wangdaye.com.geometricweather.R$animator: int search_container_in +com.google.android.material.slider.BaseSlider: void setEnabled(boolean) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.R$styleable: int KeyPosition_pathMotionArc +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: java.lang.String Unit +androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackgroundResource(int) +okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE_BACKUP +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_summaryOn +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Slider +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial Imperial +com.turingtechnologies.materialscrollbar.R$attr: int layout_anchorGravity +wangdaye.com.geometricweather.R$string: int tag_temperature +androidx.activity.R$style +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onResume() +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setAlertId(java.lang.String) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float totalPrecipitation24h +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_40 +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean isEmpty() +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_blackContainer +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableLeftCompat +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.R$dimen: int touch_rise_z +wangdaye.com.geometricweather.R$attr: int flow_firstHorizontalBias +wangdaye.com.geometricweather.R$drawable: int ic_state_uncheck +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_1 +androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_width_material +androidx.hilt.work.R$id: int tag_unhandled_key_listeners +androidx.constraintlayout.widget.R$layout: int abc_select_dialog_material +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object[] toArray() +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: SavedStateHandle$SavingStateLiveData(androidx.lifecycle.SavedStateHandle,java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX +com.bumptech.glide.R$styleable: int GradientColor_android_centerY +androidx.constraintlayout.widget.R$styleable: int OnSwipe_onTouchUp +wangdaye.com.geometricweather.remoteviews.config.Hilt_TextWidgetConfigActivity +androidx.appcompat.widget.SwitchCompat: void setTrackResource(int) +androidx.viewpager.R$id +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_android_minHeight +androidx.preference.R$drawable: int abc_item_background_holo_dark +com.google.android.material.R$dimen: int mtrl_extended_fab_min_height +androidx.preference.R$styleable: int AppCompatTheme_searchViewStyle +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver +com.google.android.material.R$styleable: int Snackbar_snackbarStyle +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getName() +okhttp3.internal.cache.CacheStrategy +cyanogenmod.weather.IRequestInfoListener$Stub +androidx.preference.R$styleable: int PreferenceFragment_android_layout +com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() +androidx.appcompat.R$style: int Theme_AppCompat_Light_NoActionBar +wangdaye.com.geometricweather.R$drawable: int notif_temp_99 +androidx.preference.R$styleable: int AppCompatTheme_actionModeBackground +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeSplitBackground +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_42 +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onKeyguardShowing(boolean) +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginEnd +com.google.android.material.R$styleable: int CollapsingToolbarLayout_contentScrim +wangdaye.com.geometricweather.R$string: int date_format_long +androidx.appcompat.R$style: int Theme_AppCompat_DialogWhenLarge +retrofit2.RequestBuilder: okhttp3.MultipartBody$Builder multipartBuilder +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_vertical_2lines +androidx.vectordrawable.R$attr +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void dispose() +androidx.preference.R$dimen: int abc_search_view_preferred_width +androidx.lifecycle.extensions.R$color: int notification_icon_bg_color +cyanogenmod.app.ILiveLockScreenManagerProvider: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindChillTemperature +androidx.preference.R$style: int Widget_AppCompat_SeekBar_Discrete +okhttp3.internal.ws.RealWebSocket: void tearDown() +com.google.android.material.R$id: int split_action_bar +com.google.android.material.R$color: int mtrl_btn_text_btn_bg_color_selector +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: ObservableInterval$IntervalObserver(io.reactivex.Observer) +wangdaye.com.geometricweather.R$drawable: int ic_launcher_round +wangdaye.com.geometricweather.R$color: int ripple_material_dark +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +com.google.android.material.R$styleable: int AppCompatTheme_actionButtonStyle +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_track +com.turingtechnologies.materialscrollbar.R$color: int error_color_material_light +com.turingtechnologies.materialscrollbar.R$drawable: int notification_tile_bg +cyanogenmod.externalviews.KeyguardExternalView$1: KeyguardExternalView$1(cyanogenmod.externalviews.KeyguardExternalView) +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService +com.google.android.material.R$attr: int textStartPadding +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onBouncerShowing(boolean) +com.google.android.material.R$attr: int itemTextColor +androidx.appcompat.R$drawable: int abc_list_selector_background_transition_holo_dark +okhttp3.internal.connection.RouteDatabase: void failed(okhttp3.Route) +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_title +com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: FloatingActionButton$BaseBehavior(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfRain +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.internal.operators.observable.ObservableCache$Node node +androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_velocityMode +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ButtonBar +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endY +com.google.android.material.slider.Slider: void setHaloRadiusResource(int) +io.reactivex.internal.util.VolatileSizeArrayList: java.util.ArrayList list +retrofit2.OkHttpCall$NoContentResponseBody: long contentLength() +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean notificationGroupExistsByName(java.lang.String) +cyanogenmod.app.suggest.AppSuggestManager: android.graphics.drawable.Drawable loadIcon(cyanogenmod.app.suggest.ApplicationSuggestion) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +com.google.android.material.R$id +com.google.android.material.slider.BaseSlider: void setThumbStrokeWidthResource(int) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTextPadding com.turingtechnologies.materialscrollbar.R$attr: int defaultQueryHint -okio.BufferedSink: okio.BufferedSink writeByte(int) -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_indeterminateProgressStyle -android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.os.IBinder mRemote -com.xw.repo.bubbleseekbar.R$attr: int fontProviderAuthority -androidx.recyclerview.R$layout: int notification_template_part_time -androidx.constraintlayout.widget.R$dimen: int abc_search_view_preferred_width -james.adaptiveicon.R$styleable: int Toolbar_subtitleTextAppearance -androidx.appcompat.widget.AppCompatSpinner: androidx.appcompat.widget.AppCompatSpinner$SpinnerPopup getInternalPopup() -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context) -androidx.appcompat.R$color: int dim_foreground_material_dark -com.jaredrummler.android.colorpicker.R$styleable: int Preference_persistent -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView_DropDown -androidx.preference.R$layout: int abc_search_dropdown_item_icons_2line -androidx.preference.R$styleable: int AppCompatTheme_colorPrimaryDark -io.reactivex.internal.util.NotificationLite$DisposableNotification: long serialVersionUID -okhttp3.internal.http1.Http1Codec$AbstractSource: void endOfInput(boolean,java.io.IOException) -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onNext(java.lang.Object) -com.google.android.material.R$attr: int minWidth -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button -com.google.android.material.R$attr: int ratingBarStyle -io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_NoActionBar -androidx.transition.ChangeBounds$7 -com.google.android.material.card.MaterialCardView: void setCheckedIconMargin(int) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5 -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_item_min_width -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_count -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_trackTintMode -androidx.recyclerview.widget.RecyclerView: boolean isLayoutSuppressed() -wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableItem -io.reactivex.exceptions.MissingBackpressureException: MissingBackpressureException(java.lang.String) -android.didikee.donate.R$attr: int ratingBarStyleIndicator -com.jaredrummler.android.colorpicker.R$id: int transparency_text -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfIce -james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizePresetSizes -androidx.preference.R$id: int icon_group -io.reactivex.Observable: io.reactivex.Observable concatMap(io.reactivex.functions.Function) -com.turingtechnologies.materialscrollbar.R$attr: int chipStrokeWidth -com.google.android.material.R$dimen: int abc_action_bar_content_inset_with_nav -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String url -androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableItem -com.google.android.material.R$anim: int design_snackbar_in -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_ICONS -androidx.hilt.work.R$styleable: int GradientColorItem_android_offset -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -okhttp3.EventListener: void secureConnectStart(okhttp3.Call) -okhttp3.internal.http2.Hpack$Reader: int maxDynamicTableByteCount -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listMenuViewStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: AccuDailyResult$DailyForecasts$Night() -retrofit2.ParameterHandler$Path: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: boolean isNoDirection() -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: MfCurrentResult() -androidx.appcompat.R$attr: int font -androidx.work.R$id: int accessibility_custom_action_12 -androidx.appcompat.R$color: int bright_foreground_inverse_material_dark -com.google.android.material.R$layout: R$layout() -cyanogenmod.providers.ThemesContract$MixnMatchColumns: android.net.Uri CONTENT_URI -james.adaptiveicon.R$drawable: int abc_edit_text_material -wangdaye.com.geometricweather.R$color: int colorTextContent -wangdaye.com.geometricweather.R$id: int spacer -androidx.preference.R$style: int Theme_AppCompat_Dialog_MinWidth -com.google.android.material.R$id: int item_touch_helper_previous_elevation -android.didikee.donate.R$styleable: int ActionBar_popupTheme -io.reactivex.internal.util.NotificationLite$ErrorNotification: boolean equals(java.lang.Object) -androidx.preference.R$styleable: int AppCompatTheme_actionModeSplitBackground -okhttp3.Cookie: java.lang.String name() -retrofit2.Platform: java.lang.Object invokeDefaultMethod(java.lang.reflect.Method,java.lang.Class,java.lang.Object,java.lang.Object[]) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_17 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_srcCompat -okhttp3.Cookie: boolean secure() -wangdaye.com.geometricweather.R$string: int week_4 -okhttp3.HttpUrl$Builder: void pop() -androidx.hilt.R$styleable: int GradientColor_android_startX -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -androidx.transition.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$attr: int selectableItemBackgroundBorderless -okhttp3.internal.http2.Header: java.lang.String TARGET_METHOD_UTF8 -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Object,java.util.List) -androidx.appcompat.resources.R$drawable -androidx.work.R$styleable: int GradientColor_android_endColor -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: java.lang.String Unit -com.bumptech.glide.integration.okhttp.R$attr: int layout_anchorGravity -com.turingtechnologies.materialscrollbar.R$drawable: int tooltip_frame_dark -androidx.hilt.work.R$string: int status_bar_notification_info_overflow -androidx.appcompat.R$id: int action_bar_spinner -com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.String,java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogLayout -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_search_api_material -androidx.constraintlayout.widget.R$styleable: int ActionMode_backgroundSplit -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type BASELINE -com.google.android.material.R$attr: int helperTextTextAppearance -cyanogenmod.app.ProfileGroup$1 -com.turingtechnologies.materialscrollbar.R$color: int material_grey_850 -androidx.preference.R$drawable: int abc_list_longpressed_holo -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void slideLockscreenIn() -cyanogenmod.themes.IThemeService$Stub: IThemeService$Stub() -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -com.google.android.material.R$drawable: int notification_bg_low_pressed -okio.ByteString: okio.ByteString md5() -com.xw.repo.bubbleseekbar.R$drawable -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BEGIN_ARRAY -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver -okhttp3.internal.cache.FaultHidingSink: void flush() -okhttp3.internal.ws.WebSocketReader: okhttp3.internal.ws.WebSocketReader$FrameCallback frameCallback -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitationDuration(java.lang.Float) -androidx.appcompat.R$attr: int contentInsetEnd -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node getHead() -com.jaredrummler.android.colorpicker.R$color: int ripple_material_dark -cyanogenmod.themes.ThemeChangeRequest$RequestType: ThemeChangeRequest$RequestType(java.lang.String,int) -james.adaptiveicon.R$attr: int buttonBarNeutralButtonStyle -android.didikee.donate.R$id: int search_button -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetRight -wangdaye.com.geometricweather.R$styleable: int[] ExtendedFloatingActionButton_Behavior_Layout -com.google.android.material.R$drawable: int abc_ic_menu_overflow_material -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalStyle -com.turingtechnologies.materialscrollbar.R$id: int mtrl_child_content_container -james.adaptiveicon.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonText -wangdaye.com.geometricweather.R$id: int scroll -androidx.appcompat.widget.Toolbar: void setTitleMarginBottom(int) -wangdaye.com.geometricweather.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean getWind() +cyanogenmod.providers.CMSettings$System: boolean putInt(android.content.ContentResolver,java.lang.String,int) +okhttp3.Cache$CacheResponseBody: okhttp3.MediaType contentType() +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onError(java.lang.Throwable) +cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_RINGTONE +com.google.android.material.R$styleable: int TextAppearance_android_fontFamily +com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +com.jaredrummler.android.colorpicker.R$attr: int titleMarginEnd +com.google.android.material.R$string: int abc_toolbar_collapse_description +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.disposables.Disposable upstream +james.adaptiveicon.R$id: int search_button +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorViewAlpha(int) +androidx.recyclerview.R$color +com.github.rahatarmanahmed.cpv.CircularProgressView$9: void onAnimationUpdate(android.animation.ValueAnimator) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded +com.google.android.material.R$drawable: int test_custom_background +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter +cyanogenmod.hardware.DisplayMode$1: cyanogenmod.hardware.DisplayMode[] newArray(int) +com.turingtechnologies.materialscrollbar.R$dimen: int disabled_alpha_material_dark +okhttp3.internal.connection.RealConnection$1: void close() +androidx.fragment.R$layout: int custom_dialog +com.google.android.material.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_1 +com.google.android.material.R$drawable: int btn_checkbox_checked_mtrl +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: java.lang.String Unit +androidx.lifecycle.ProcessLifecycleOwnerInitializer: boolean onCreate() +okio.Segment: void writeTo(okio.Segment,int) +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_toolbarId +wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeight +com.github.rahatarmanahmed.cpv.CircularProgressView$4: void onAnimationUpdate(android.animation.ValueAnimator) +com.google.gson.stream.JsonReader: boolean hasNext() +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getRagweedDescription() +wangdaye.com.geometricweather.R$attr: int bsb_is_float_type +com.github.rahatarmanahmed.cpv.CircularProgressView$9 +io.reactivex.Observable: io.reactivex.Observable serialize() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: io.reactivex.internal.fuseable.SimplePlainQueue queue +androidx.legacy.coreutils.R$layout: int notification_template_custom_big +com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.String) +cyanogenmod.app.CustomTile$Builder: java.lang.String mLabel +androidx.coordinatorlayout.R$id: int accessibility_custom_action_15 +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_default_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias +androidx.appcompat.R$styleable: int[] RecycleListView +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitationDuration +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_30 +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +com.xw.repo.bubbleseekbar.R$color: int material_grey_50 +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +androidx.coordinatorlayout.R$id: int accessibility_action_clickable_span +android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupMenu +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.subjects.Subject signaller +com.turingtechnologies.materialscrollbar.R$attr: int itemIconPadding +com.google.android.material.datepicker.CompositeDateValidator +com.google.android.material.tabs.TabLayout: int getTabCount() +okhttp3.internal.connection.RealConnection: java.net.Socket rawSocket +io.reactivex.internal.observers.InnerQueuedObserver: int fusionMode +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LAUNCHER +com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomNavigationView +okhttp3.internal.http2.Http2Connection$2 +androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_max +okhttp3.internal.ws.WebSocketWriter$FrameSink: void close() +wangdaye.com.geometricweather.R$attr: int layout_scrollFlags +wangdaye.com.geometricweather.R$color: int test_mtrl_calendar_day_selected +androidx.core.R$id: int accessibility_custom_action_12 +io.reactivex.exceptions.CompositeException: CompositeException(java.lang.Throwable[]) +android.didikee.donate.R$color: int primary_dark_material_dark +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetTop +wangdaye.com.geometricweather.R$styleable: int KeyCycle_curveFit +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: java.lang.String Unit +androidx.constraintlayout.widget.R$id: int dragUp +okhttp3.Response: okhttp3.ResponseBody body() +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_default +com.jaredrummler.android.colorpicker.R$attr: int alpha +com.xw.repo.bubbleseekbar.R$attr: int layout_dodgeInsetEdges +com.google.android.material.R$id: int submit_area +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_disabled_holo_light +com.google.android.material.R$string: int fab_transformation_sheet_behavior +androidx.constraintlayout.widget.R$styleable: int MenuItem_iconTint +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_tint +androidx.fragment.R$id: int accessibility_custom_action_21 +com.jaredrummler.android.colorpicker.R$attr: int height +wangdaye.com.geometricweather.R$dimen: int mtrl_progress_indicator_full_rounded_corner_radius +okhttp3.internal.ws.WebSocketWriter: okhttp3.internal.ws.WebSocketWriter$FrameSink frameSink +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setType(java.lang.String) +androidx.loader.R$attr: int fontStyle +com.xw.repo.bubbleseekbar.R$id: int buttonPanel +wangdaye.com.geometricweather.R$color: int material_timepicker_modebutton_tint +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_persistent +com.jaredrummler.android.colorpicker.R$attr: int dividerPadding +com.turingtechnologies.materialscrollbar.R$bool: int abc_allow_stacked_button_bar +okhttp3.Cache: Cache(java.io.File,long,okhttp3.internal.io.FileSystem) +wangdaye.com.geometricweather.R$attr: int seekBarStyle +android.didikee.donate.R$styleable: int AppCompatTheme_checkboxStyle +wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_default_mtrl_alpha +com.google.android.material.R$layout: int abc_search_dropdown_item_icons_2line +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: android.os.IBinder asBinder() +io.reactivex.internal.subscriptions.SubscriptionHelper: void cancel() +com.turingtechnologies.materialscrollbar.R$color: int design_snackbar_background_color +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeDegreeDayTemperature +james.adaptiveicon.R$color: int material_deep_teal_500 +androidx.constraintlayout.widget.R$styleable: int Transform_android_scaleX +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setAdaptiveWidthEnabled(boolean) +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_alpha +james.adaptiveicon.R$id: int screen +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric +com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_material +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +com.jaredrummler.android.colorpicker.R$dimen: int compat_control_corner_material +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int NO_REQUEST_NO_VALUE +cyanogenmod.app.CustomTile +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitationDuration(java.lang.Float) +okhttp3.Cache: int readInt(okio.BufferedSource) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator RECENTS_SHOW_SEARCH_BAR_VALIDATOR +wangdaye.com.geometricweather.R$id: int action_bar_activity_content +okio.BufferedSource +com.google.android.material.textfield.TextInputLayout: void setStartIconContentDescription(java.lang.CharSequence) +com.google.android.material.R$drawable: int btn_radio_on_to_off_mtrl_animation +okhttp3.RequestBody$2: int val$byteCount +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: ObservableWithLatestFrom$WithLatestFromObserver(io.reactivex.Observer,io.reactivex.functions.BiFunction) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onComplete() +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean cancelled +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void subscribeNext() +com.xw.repo.bubbleseekbar.R$dimen: int compat_control_corner_material +io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean isCancelled() +io.reactivex.Observable: io.reactivex.Observable doOnNext(io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitle_inputLayout +androidx.lifecycle.SingleGeneratedAdapterObserver: SingleGeneratedAdapterObserver(androidx.lifecycle.GeneratedAdapter) +cyanogenmod.profiles.ConnectionSettings$1: cyanogenmod.profiles.ConnectionSettings[] newArray(int) +androidx.lifecycle.SavedStateHandle: androidx.savedstate.SavedStateRegistry$SavedStateProvider savedStateProvider() +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_2 +androidx.lifecycle.MediatorLiveData: void addSource(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) +wangdaye.com.geometricweather.R$layout: int notification_base_big +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_type +androidx.appcompat.R$styleable: int AppCompatTheme_editTextBackground +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String _ID +androidx.vectordrawable.R$styleable: int GradientColor_android_centerY +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void dispose() +androidx.dynamicanimation.R$styleable: int ColorStateListItem_android_alpha +androidx.constraintlayout.widget.R$anim: int abc_fade_in +com.jaredrummler.android.colorpicker.R$style: int Preference_SeekBarPreference +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setMobileDataEnabled_1 +com.jaredrummler.android.colorpicker.R$styleable: int RecycleListView_paddingBottomNoButtons +android.didikee.donate.R$styleable: int AppCompatSeekBar_android_thumb +androidx.legacy.coreutils.R$string +com.google.android.material.R$id: int tag_accessibility_clickable_spans +androidx.hilt.work.R$styleable: int FontFamily_fontProviderCerts +androidx.appcompat.R$attr: int itemPadding +com.google.android.material.chip.Chip: void setLayoutDirection(int) +retrofit2.Utils: int indexOf(java.lang.Object[],java.lang.Object) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String cityId +okio.Options: int size() +com.turingtechnologies.materialscrollbar.Indicator: int getTextSize() +com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button +okhttp3.OkHttpClient: boolean followSslRedirects() +io.reactivex.internal.util.NotificationLite: boolean isSubscription(java.lang.Object) +com.google.android.material.bottomappbar.BottomAppBar: void setFabAnimationMode(int) +wangdaye.com.geometricweather.R$string: int key_widget_day_week +androidx.preference.R$attr: int spinnerDropDownItemStyle +android.didikee.donate.R$id: int none +androidx.activity.R$id: int icon +androidx.hilt.R$styleable: int GradientColorItem_android_color +androidx.legacy.coreutils.R$attr: int font +androidx.preference.Preference$BaseSavedState +com.google.android.material.R$styleable: int CompoundButton_android_button +com.jaredrummler.android.colorpicker.ColorPanelView: int getShape() +com.google.android.material.navigation.NavigationView: android.graphics.drawable.Drawable getItemBackground() +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_listLayout +androidx.appcompat.widget.AppCompatSpinner: void setPopupBackgroundResource(int) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Caption +androidx.activity.R$id: int accessibility_custom_action_16 +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_shapeAppearanceOverlay +androidx.hilt.lifecycle.R$dimen: int compat_button_inset_vertical_material +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupWindow +androidx.appcompat.widget.AppCompatButton: int getAutoSizeStepGranularity() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter emitter +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow snow +com.google.android.material.R$attr: int waveDecay +androidx.appcompat.widget.ActionMenuView +androidx.fragment.R$styleable: R$styleable() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback,int) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetRight +androidx.loader.R$styleable: int GradientColor_android_centerColor +cyanogenmod.app.CustomTileListenerService: void onCustomTilePosted(cyanogenmod.app.StatusBarPanelCustomTile) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setVisibility(int) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_customNavigationLayout +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_12 +cyanogenmod.providers.DataUsageContract: android.net.Uri BASE_CONTENT_URI +androidx.constraintlayout.widget.R$styleable: int[] Layout +cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(android.os.Parcel) +androidx.fragment.R$styleable: int FontFamilyFont_fontStyle +com.google.android.material.R$styleable: int Constraint_android_visibility +androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityCreated(android.app.Activity,android.os.Bundle) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getTempMin() +com.xw.repo.bubbleseekbar.R$attr: int dividerPadding +androidx.recyclerview.R$layout: int custom_dialog +james.adaptiveicon.R$styleable: int SearchView_searchIcon +androidx.lifecycle.LiveData$1 +com.xw.repo.bubbleseekbar.R$attr: int textColorAlertDialogListItem +wangdaye.com.geometricweather.R$dimen: int little_weather_icon_container_size +cyanogenmod.hardware.CMHardwareManager: boolean unRegisterThermalListener(cyanogenmod.hardware.ThermalListenerCallback) +com.jaredrummler.android.colorpicker.R$attr: int thumbTintMode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary TemperatureSummary +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +androidx.appcompat.view.menu.ActionMenuItemView: void setTitle(java.lang.CharSequence) +cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_TILES +androidx.preference.R$dimen: int abc_action_button_min_height_material +androidx.preference.R$styleable: int MenuItem_contentDescription +androidx.appcompat.R$attr: int backgroundTintMode +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipMinHeight +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_3 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int CloudCover +android.didikee.donate.R$style: int TextAppearance_AppCompat_Display4 +okhttp3.internal.cache.InternalCache: void remove(okhttp3.Request) +androidx.lifecycle.AndroidViewModel +androidx.appcompat.R$id: R$id() +android.support.v4.app.INotificationSideChannel$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$attr: int checkboxStyle +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: void invoke(java.lang.Throwable) +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setStatusBar(java.lang.String) +com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getSupportBackgroundTintList() +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$attr: int cardViewStyle +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VClipPath +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_setPowerProfile +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory create(javax.inject.Provider,javax.inject.Provider) +com.jaredrummler.android.colorpicker.R$styleable: int[] FontFamilyFont +okhttp3.internal.connection.StreamAllocation: java.net.Socket deallocate(boolean,boolean,boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition GeoPosition +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onComplete() +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver +androidx.appcompat.R$anim: int abc_slide_out_bottom +cyanogenmod.app.ICMTelephonyManager: boolean isDataConnectionEnabled() +androidx.lifecycle.MutableLiveData: void setValue(java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource CN +android.didikee.donate.R$attr: int goIcon +io.reactivex.Observable: void blockingSubscribe(io.reactivex.Observer) +wangdaye.com.geometricweather.R$attr: int cpv_showAlphaSlider +com.bumptech.glide.R$layout: int notification_template_part_time +com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getStartIconDrawable() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogStyle +androidx.appcompat.R$drawable +androidx.viewpager.widget.ViewPager: void setAdapter(androidx.viewpager.widget.PagerAdapter) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: AccuCurrentResult$Past24HourTemperatureDeparture$Imperial() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRainPrecipitation() +com.google.android.material.R$styleable: int MenuView_preserveIconSpacing +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_switchTextOff +james.adaptiveicon.R$dimen: int notification_media_narrow_margin +com.google.android.material.R$dimen: int mtrl_calendar_header_height_fullscreen +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +com.jaredrummler.android.colorpicker.R$attr: int layoutManager +androidx.preference.R$layout: int select_dialog_multichoice_material +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleTextAppearance +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListMenuView +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionMode +androidx.viewpager.R$layout: int notification_action_tombstone +androidx.lifecycle.LiveData$LifecycleBoundObserver: androidx.lifecycle.LiveData this$0 +okhttp3.RealCall: boolean isExecuted() +cyanogenmod.app.ProfileManager: cyanogenmod.app.IProfileManager getService() +james.adaptiveicon.R$styleable: int SwitchCompat_trackTintMode +james.adaptiveicon.R$styleable: int MenuView_android_itemBackground +androidx.lifecycle.SavedStateHandle: void validateValue(java.lang.Object) +androidx.transition.R$layout: int notification_action +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +androidx.viewpager2.R$drawable: int notification_bg +com.google.android.material.R$id: int ignore +com.google.android.material.R$attr: int barLength +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_margin +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: long produced +androidx.work.R$styleable: R$styleable() +android.didikee.donate.R$drawable: int abc_btn_default_mtrl_shape +okhttp3.internal.http1.Http1Codec: int STATE_OPEN_REQUEST_BODY +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onPause() +okhttp3.HttpUrl: int hashCode() +com.google.android.material.transformation.TransformationChildLayout: TransformationChildLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Button +com.github.rahatarmanahmed.cpv.CircularProgressView$2: float val$currentProgress +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.AlertEntity,long) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: double Value +com.google.android.material.R$id: int confirm_button +androidx.viewpager2.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_android_windowAnimationStyle +okhttp3.internal.platform.ConscryptPlatform: okhttp3.internal.platform.ConscryptPlatform buildIfSupported() +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void drain() +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub +wangdaye.com.geometricweather.R$id: int linear +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_DES_CBC_MD5 +cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(int) +androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.preference.R$styleable: int Preference_title +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean isDisposed() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: HourlyEntityDao(org.greenrobot.greendao.internal.DaoConfig) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: java.lang.String Unit +androidx.hilt.lifecycle.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$string: int material_minute_selection +okhttp3.HttpUrl: java.lang.String query() +com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context) +cyanogenmod.app.Profile$ProfileTrigger: void getXmlString(java.lang.StringBuilder,android.content.Context) +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_FloatingActionButton +com.google.android.material.appbar.AppBarLayout: void setOrientation(int) +wangdaye.com.geometricweather.R$color: int primary_material_light +com.google.android.material.R$styleable: int FontFamilyFont_android_font +james.adaptiveicon.R$styleable: int CompoundButton_buttonTint +androidx.preference.R$dimen: int abc_list_item_padding_horizontal_material +androidx.hilt.R$id: int right_side +wangdaye.com.geometricweather.R$color: int weather_source_accu +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dark +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_share_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$attr: int spinBars +okhttp3.internal.http2.Header: okio.ByteString name +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +androidx.appcompat.R$attr: int drawableTint +okio.ByteString: boolean rangeEquals(int,byte[],int,int) +wangdaye.com.geometricweather.R$id: int item_pollen_daily +androidx.constraintlayout.widget.R$styleable: int MotionLayout_showPaths +wangdaye.com.geometricweather.R$drawable: int notif_temp_109 +androidx.fragment.R$anim: int fragment_close_enter +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_creator +android.didikee.donate.R$styleable: int MenuItem_numericModifiers +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableRightCompat +androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$attr: int flow_firstVerticalBias +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: java.lang.Object poll() +com.google.android.material.R$color: int abc_tint_btn_checkable +androidx.appcompat.R$attr: int measureWithLargestChild +james.adaptiveicon.R$drawable: int abc_scrubber_control_off_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$id: int ghost_view +wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity: DailyTrendWidgetConfigActivity() +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_19 +androidx.lifecycle.ClassesInfoCache$MethodReference: void invokeCallback(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) +com.turingtechnologies.materialscrollbar.Indicator: void setRTL(boolean) +androidx.drawerlayout.R$style +androidx.preference.R$attr: int navigationIcon +io.reactivex.internal.schedulers.AbstractDirectTask: boolean isDisposed() +com.turingtechnologies.materialscrollbar.R$attr: int windowFixedWidthMinor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String tempMax +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$attr: int buttonTintMode +james.adaptiveicon.R$drawable: int abc_list_selector_holo_dark +com.google.android.material.R$dimen: int mtrl_calendar_header_divider_thickness +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: WeatherContract$WeatherColumns$WeatherCode() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: java.lang.Integer proba3H +androidx.hilt.lifecycle.R$dimen: int compat_control_corner_material +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_backgroundSplit +androidx.constraintlayout.widget.R$styleable: int Transition_android_id +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_alphabeticModifiers +androidx.constraintlayout.widget.Guideline: void setVisibility(int) +cyanogenmod.app.ICMStatusBarManager$Stub: ICMStatusBarManager$Stub() +androidx.drawerlayout.R$attr: int fontProviderFetchStrategy +android.didikee.donate.R$styleable: int ActionBar_displayOptions +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_android_layout +androidx.transition.R$attr: int fontProviderPackage +com.turingtechnologies.materialscrollbar.R$attr: int actionBarSplitStyle +androidx.viewpager.widget.PagerTabStrip: void setBackgroundColor(int) +androidx.appcompat.R$attr: int allowStacking +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setHourText(java.lang.String) +wangdaye.com.geometricweather.R$attr: int progressBarPadding +android.didikee.donate.R$attr: int selectableItemBackgroundBorderless +retrofit2.ParameterHandler$RawPart: ParameterHandler$RawPart() +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: int limit +com.xw.repo.bubbleseekbar.R$id: int search_bar +wangdaye.com.geometricweather.R$attr: int state_liftable +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_track +androidx.appcompat.R$styleable: int Toolbar_contentInsetEndWithActions +retrofit2.OkHttpCall$NoContentResponseBody: okhttp3.MediaType contentType() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_progress_bar_height_material +androidx.hilt.work.R$styleable: int FontFamilyFont_fontVariationSettings +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void dispose() +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dark +androidx.appcompat.R$attr: int buttonBarStyle +okhttp3.Cache$CacheRequestImpl: okio.Sink cacheOut +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayWeekWidgetConfigActivity +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_2 +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayHorizontalProvider +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: int bufferSize +androidx.lifecycle.extensions.R$id: int italic +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_backgroundTintMode +androidx.preference.R$layout: int preference_widget_switch_compat +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +com.google.android.material.R$dimen: int mtrl_slider_label_radius +okhttp3.Headers: long byteCount() +androidx.hilt.R$styleable: int[] GradientColor +com.turingtechnologies.materialscrollbar.R$id: int image +androidx.appcompat.R$id: int expanded_menu +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_Solid +com.google.gson.internal.LinkedTreeMap: int size +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dropDownListViewStyle +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_track_material +okhttp3.Credentials: Credentials() +com.google.android.material.bottomappbar.BottomAppBar$Behavior +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_shapeAppearanceOverlay +wangdaye.com.geometricweather.R$drawable: int widget_clock_day_week +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.TimeUnit unit +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dark +okhttp3.HttpUrl: void percentDecode(okio.Buffer,java.lang.String,int,int,boolean) +androidx.dynamicanimation.R$styleable: int FontFamilyFont_font +androidx.drawerlayout.widget.DrawerLayout: android.graphics.drawable.Drawable getStatusBarBackgroundDrawable() +wangdaye.com.geometricweather.R$styleable: int[] Tooltip +androidx.lifecycle.ViewModelProvider$KeyedFactory +com.jaredrummler.android.colorpicker.R$styleable: int GradientColorItem_android_offset +okhttp3.internal.ws.WebSocketProtocol: int B1_FLAG_MASK +cyanogenmod.providers.CMSettings$Global: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) +cyanogenmod.providers.CMSettings$Secure: boolean putInt(android.content.ContentResolver,java.lang.String,int) +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_elevation +androidx.constraintlayout.widget.R$attr: int dividerHorizontal +okhttp3.Response$Builder: okhttp3.Protocol protocol +androidx.constraintlayout.widget.R$id: int action_bar_subtitle +okhttp3.internal.cache.InternalCache: void trackConditionalCacheHit() +okhttp3.internal.http2.Http2Stream: void setHeadersListener(okhttp3.internal.http2.Header$Listener) +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: ILiveLockScreenManagerProvider$Stub() +androidx.preference.R$attr: int searchIcon +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: java.lang.String Unit +androidx.constraintlayout.widget.R$id: int text +james.adaptiveicon.R$id: int line3 +com.google.android.material.R$attr: int lineSpacing +wangdaye.com.geometricweather.R$dimen: int mtrl_switch_thumb_elevation +wangdaye.com.geometricweather.R$styleable: int Variant_region_heightLessThan +okhttp3.CertificatePinner$Pin: java.lang.String hashAlgorithm +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +com.jaredrummler.android.colorpicker.R$color: int tooltip_background_light +wangdaye.com.geometricweather.R$string: int character_counter_overflowed_content_description +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String getProviderId() +wangdaye.com.geometricweather.R$attr: int tabPaddingStart +okio.Segment: int limit +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_18 +com.google.android.material.R$bool: int abc_action_bar_embed_tabs +okhttp3.HttpUrl: java.lang.String password +androidx.legacy.coreutils.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeRealFeelTemperature +androidx.preference.R$dimen: int preference_icon_minWidth +androidx.preference.R$styleable: int Preference_android_title +james.adaptiveicon.R$styleable: int[] MenuItem +wangdaye.com.geometricweather.R$styleable: int EditTextPreference_useSimpleSummaryProvider +cyanogenmod.profiles.LockSettings: LockSettings(android.os.Parcel) +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setSunRise(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int listLayout +androidx.transition.R$styleable: int[] FontFamilyFont +okhttp3.internal.platform.Platform +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat PREFER_RGB_565 +wangdaye.com.geometricweather.R$attr +wangdaye.com.geometricweather.R$string: int about_app +com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getBackgroundTintMode() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean forecastDaily +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.util.List getValue() +io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier INSTANCE +wangdaye.com.geometricweather.R$id: int masked +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +cyanogenmod.providers.CMSettings$System: java.lang.String NAVIGATION_BAR_MENU_ARROW_KEYS +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getDirection() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.appcompat.widget.AppCompatSpinner: void setAdapter(android.widget.SpinnerAdapter) +androidx.appcompat.R$attr: int drawableEndCompat +wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_light +com.google.android.material.chip.Chip: void setChipStartPadding(float) +wangdaye.com.geometricweather.R$id: int resident_icon +androidx.hilt.lifecycle.R$styleable: int[] GradientColor +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_textColorHint +com.jaredrummler.android.colorpicker.R$color: int background_material_dark +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String type +wangdaye.com.geometricweather.R$attr: int itemTextAppearanceInactive +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setSubState +android.didikee.donate.R$color: int primary_text_default_material_light +wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat_Light +okio.Buffer$2: int read(byte[],int,int) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_confirm_button_min_width +wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_summary +wangdaye.com.geometricweather.R$string: int key_card_display +com.google.android.material.R$attr: int defaultDuration +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void cancel() +wangdaye.com.geometricweather.R$styleable: int MaterialShape_shapeAppearanceOverlay +okhttp3.internal.cache.CacheInterceptor: CacheInterceptor(okhttp3.internal.cache.InternalCache) +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItem +com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_material +com.jaredrummler.android.colorpicker.R$drawable: int tooltip_frame_light +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COMPONENT_ID +okio.AsyncTimeout$Watchdog: void run() +android.didikee.donate.R$styleable: int AppCompatTextView_drawableTint +com.jaredrummler.android.colorpicker.R$attr: int actionMenuTextAppearance +cyanogenmod.app.ILiveLockScreenManagerProvider: boolean getLiveLockScreenEnabled() +com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode[] values() +androidx.dynamicanimation.R$id: int text +james.adaptiveicon.R$drawable: int abc_ic_menu_overflow_material +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onComplete() +cyanogenmod.providers.ThemesContract$PreviewColumns: ThemesContract$PreviewColumns() +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_secondary +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionBar +com.turingtechnologies.materialscrollbar.R$drawable: int design_ic_visibility +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getRelativeHumidity() +androidx.appcompat.R$styleable: int CompoundButton_buttonCompat +com.github.rahatarmanahmed.cpv.R$dimen: R$dimen() +androidx.constraintlayout.helper.widget.Layer: void setPivotY(float) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textColorSearchUrl +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder queryOnly() +androidx.appcompat.R$attr: int actionModeBackground +wangdaye.com.geometricweather.R$drawable: int shortcuts_cloudy_foreground +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_1 +wangdaye.com.geometricweather.R$drawable: int notif_temp_24 +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onComplete() +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_radius +androidx.dynamicanimation.R$styleable: int[] GradientColorItem +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onKeyguardDismissed() +james.adaptiveicon.R$styleable: int AppCompatTheme_seekBarStyle +okhttp3.logging.LoggingEventListener$Factory: LoggingEventListener$Factory() +androidx.viewpager.R$styleable: int FontFamilyFont_fontStyle +cyanogenmod.profiles.BrightnessSettings$1: java.lang.Object[] newArray(int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowNoTitle +com.google.android.material.R$color: int dim_foreground_disabled_material_light +androidx.dynamicanimation.R$dimen: int compat_notification_large_icon_max_height +okhttp3.internal.http.HttpCodec: okio.Sink createRequestBody(okhttp3.Request,long) +com.bumptech.glide.load.engine.CallbackException +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSmallPopupMenu +com.google.android.material.R$styleable: int Layout_layout_constraintBottom_creator +androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context,android.util.AttributeSet) +io.reactivex.disposables.RunnableDisposable: RunnableDisposable(java.lang.Runnable) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Small +androidx.preference.R$id: int on +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer treeLevel +androidx.legacy.coreutils.R$dimen: int notification_top_pad_large_text +com.google.android.material.R$styleable: int MenuItem_numericModifiers +androidx.constraintlayout.widget.R$layout: int support_simple_spinner_dropdown_item +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_NOTIFICATIONS +com.google.android.material.R$attr: int path_percent +com.google.android.material.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_sym_shortcut_label +wangdaye.com.geometricweather.R$attr: int perpendicularPath_percent +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Subhead +wangdaye.com.geometricweather.R$dimen: int design_title_text_size +androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonCompat +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_activated_mtrl_alpha +androidx.hilt.R$id: int accessibility_custom_action_4 +cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationMax() +androidx.dynamicanimation.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long readKey(android.database.Cursor,int) +androidx.appcompat.widget.AppCompatButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$styleable: int KeyCycle_wavePeriod +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature ApparentTemperature +androidx.drawerlayout.R$styleable: int GradientColorItem_android_offset +androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontVariationSettings +okhttp3.internal.tls.BasicTrustRootIndex: BasicTrustRootIndex(java.security.cert.X509Certificate[]) +androidx.hilt.work.R$id: R$id() +com.google.android.material.R$animator: int mtrl_fab_hide_motion_spec +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: java.util.List day +androidx.hilt.work.R$id: int accessibility_custom_action_24 +james.adaptiveicon.R$dimen: int abc_control_inset_material +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorGravity +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Colored io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onComplete() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial Imperial -com.google.android.material.R$id: int auto -android.didikee.donate.R$dimen: int abc_action_bar_content_inset_material -com.google.android.material.R$layout: int test_toolbar_surface +androidx.fragment.R$color: int secondary_text_default_material_light +okhttp3.internal.connection.RealConnection: okhttp3.ConnectionPool connectionPool +wangdaye.com.geometricweather.R$attr: int touchRegionId +androidx.core.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: double Value +androidx.vectordrawable.animated.R$id: int action_container +com.google.android.material.R$drawable: int abc_text_select_handle_middle_mtrl_dark +cyanogenmod.weather.WeatherInfo$DayForecast: java.lang.String mKey +com.google.android.material.R$id: int screen +com.jaredrummler.android.colorpicker.R$id: int action_bar_spinner +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastVerticalStyle +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy +wangdaye.com.geometricweather.R$attr: int liftOnScrollTargetViewId +androidx.appcompat.R$styleable: int[] MenuView +com.turingtechnologies.materialscrollbar.R$dimen: int abc_floating_window_z +wangdaye.com.geometricweather.R$attr: int background +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_label_cutout_padding +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicator +androidx.preference.R$string: int v7_preference_on +okio.Pipe$PipeSource: long read(okio.Buffer,long) +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: long serialVersionUID +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicLong index +io.reactivex.internal.util.ArrayListSupplier: java.util.List apply(java.lang.Object) +androidx.multidex.MultiDexExtractor$ExtractedDex: MultiDexExtractor$ExtractedDex(java.io.File,java.lang.String) +com.google.android.material.R$attr: int itemIconSize +cyanogenmod.media.MediaRecorder +androidx.transition.R$id: int tag_unhandled_key_listeners +androidx.versionedparcelable.ParcelImpl: android.os.Parcelable$Creator CREATOR +com.google.android.material.tabs.TabLayout: int getTabScrollRange() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 +wangdaye.com.geometricweather.R$string: int content_desc_powered_by +com.google.android.material.R$anim: int design_bottom_sheet_slide_in +androidx.preference.R$style: int TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.R$color: int mtrl_btn_text_color_selector +androidx.constraintlayout.widget.R$dimen: int compat_button_inset_vertical_material +com.github.rahatarmanahmed.cpv.CircularProgressView$3: void onAnimationUpdate(android.animation.ValueAnimator) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog +androidx.core.R$drawable: R$drawable() +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startX +cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String META_DATA +com.google.android.material.R$layout: int abc_list_menu_item_radio +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.util.List Intervals +io.reactivex.internal.disposables.EmptyDisposable: boolean isDisposed() +wangdaye.com.geometricweather.R$attr: int flow_wrapMode +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_item_icon_padding +androidx.appcompat.R$styleable: int AnimatedStateListDrawableItem_android_id +wangdaye.com.geometricweather.R$color: int material_timepicker_clockface +wangdaye.com.geometricweather.R$styleable: int Constraint_android_orientation +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Info +cyanogenmod.app.ThemeVersion$ComponentVersion: java.lang.String name +retrofit2.http.QueryMap: boolean encoded() +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$drawable: int weather_wind +com.google.android.material.R$anim: int abc_tooltip_enter +com.google.android.material.R$attr: int telltales_velocityMode +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ImageButton +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: android.os.IBinder mRemote +androidx.constraintlayout.widget.R$styleable: int MockView_mock_labelColor +cyanogenmod.app.BaseLiveLockManagerService$1: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +com.google.android.material.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +com.google.android.material.R$attr: int layout_insetEdge +wangdaye.com.geometricweather.R$drawable: int notif_temp_97 +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_scaleY +com.google.android.material.R$id: int zero_corner_chip +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginBottom +com.xw.repo.bubbleseekbar.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.common.basic.models.weather.Wind: Wind(java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String) +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_shape_vertical_margin +wangdaye.com.geometricweather.R$string: int settings_title_daily_trend_display +io.reactivex.Observable: io.reactivex.Observable concatArrayEager(int,int,io.reactivex.ObservableSource[]) +okhttp3.internal.ws.WebSocketWriter: okio.BufferedSink sink +okhttp3.Request: okhttp3.RequestBody body() +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.Scheduler$Worker worker +androidx.hilt.lifecycle.R$id: int line1 +com.google.android.material.R$id: int accessibility_custom_action_18 +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context) +com.google.android.material.R$layout: int material_radial_view_group +james.adaptiveicon.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +androidx.constraintlayout.widget.R$id: int ignoreRequest +androidx.vectordrawable.R$id: int accessibility_custom_action_6 +androidx.drawerlayout.R$styleable: int ColorStateListItem_android_alpha +androidx.recyclerview.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_105 +androidx.appcompat.R$styleable: int ActionMode_subtitleTextStyle +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_padding_start_material +androidx.customview.R$string: int status_bar_notification_info_overflow +androidx.hilt.lifecycle.R$id: int notification_background +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_checkboxStyle +wangdaye.com.geometricweather.R$string: int week_1 +cyanogenmod.weather.WeatherInfo: java.lang.String getCity() +wangdaye.com.geometricweather.R$attr: int bsb_track_color +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String description +okhttp3.HttpUrl: java.lang.String FRAGMENT_ENCODE_SET_URI +wangdaye.com.geometricweather.R$string: int maxi_temp +androidx.appcompat.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginEnd() +androidx.constraintlayout.widget.R$color: int material_grey_850 +com.google.android.material.R$attr: int cornerFamilyBottomLeft +com.turingtechnologies.materialscrollbar.R$style: R$style() +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_2 +androidx.constraintlayout.widget.Group: Group(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_logo +com.google.android.material.R$style: int Widget_AppCompat_AutoCompleteTextView +cyanogenmod.app.ICMTelephonyManager$Stub: cyanogenmod.app.ICMTelephonyManager asInterface(android.os.IBinder) +wangdaye.com.geometricweather.R$id: int container_main_sun_moon +wangdaye.com.geometricweather.R$dimen: int mtrl_progress_circular_inset +james.adaptiveicon.R$attr: int drawableSize +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +androidx.appcompat.R$styleable: int TextAppearance_android_shadowDx +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_background_transition_holo_dark +okhttp3.internal.http.RealInterceptorChain: okhttp3.Response proceed(okhttp3.Request,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http.HttpCodec,okhttp3.internal.connection.RealConnection) +android.didikee.donate.R$styleable: int ActionBar_icon +wangdaye.com.geometricweather.R$drawable: int selectable_ripple +androidx.appcompat.resources.R$styleable: int[] StateListDrawableItem +wangdaye.com.geometricweather.R$drawable: int widget_card_light_20 +androidx.preference.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.drawerlayout.R$id: int info +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display1 +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$dimen: int design_snackbar_padding_vertical_2lines +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_2 +cyanogenmod.themes.IThemeChangeListener$Stub: android.os.IBinder asBinder() +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.reflect.Type responseType -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean active -androidx.viewpager2.R$id: int accessibility_action_clickable_span -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int itemFillColor -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_14 -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginEnd -retrofit2.Utils: java.lang.RuntimeException methodError(java.lang.reflect.Method,java.lang.Throwable,java.lang.String,java.lang.Object[]) -com.google.android.material.R$styleable: int MaterialCardView_android_checkable -com.google.android.material.R$dimen: int mtrl_card_spacing -androidx.constraintlayout.motion.widget.MotionLayout: void setOnHide(float) -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language getInstance(java.lang.String) -io.reactivex.Observable: io.reactivex.Observable timestamp(io.reactivex.Scheduler) -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderLayout -androidx.viewpager.R$dimen: int compat_control_corner_material -androidx.appcompat.widget.SearchView$SavedState: android.os.Parcelable$Creator CREATOR -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getDistrict() -wangdaye.com.geometricweather.R$attr: int paddingEnd -com.bumptech.glide.load.HttpException: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_default_thickness -com.jaredrummler.android.colorpicker.R$style: int Base_AlertDialog_AppCompat_Light -cyanogenmod.themes.ThemeManager$2$1: void run() -androidx.vectordrawable.R$drawable: int notification_bg_low -okhttp3.internal.platform.JdkWithJettyBootPlatform: okhttp3.internal.platform.Platform buildIfSupported() -com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: void setDirection(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_27 -okio.ForwardingTimeout: ForwardingTimeout(okio.Timeout) -cyanogenmod.app.ICMStatusBarManager$Stub: cyanogenmod.app.ICMStatusBarManager asInterface(android.os.IBinder) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPopupWindowStyle -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_width -com.google.android.material.R$drawable: int abc_btn_default_mtrl_shape -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitation() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX getAqi() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_card_spacing -okhttp3.internal.http2.Hpack$Reader: int readByte() -cyanogenmod.providers.CMSettings$Secure$2: CMSettings$Secure$2() -cyanogenmod.providers.CMSettings$Secure: java.lang.String LIVE_DISPLAY_COLOR_MATRIX -androidx.appcompat.R$id: int split_action_bar -okhttp3.internal.http2.Http2Connection$6 -james.adaptiveicon.R$attr: int commitIcon -android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -androidx.preference.R$style: int Widget_AppCompat_RatingBar -androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int PrecipitationProbability -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onLockscreenSlideOffsetChanged(float) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: double Value -com.google.gson.stream.JsonReader: JsonReader(java.io.Reader) -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -androidx.constraintlayout.widget.R$id: int title -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver parent -cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_REVERSE_LOOKUP -com.google.android.material.R$dimen: int abc_action_bar_icon_vertical_padding_material -com.google.android.material.R$attr: int iconStartPadding -androidx.appcompat.R$styleable: int AppCompatImageView_tintMode -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: MfForecastResult$Forecast$Rain() -wangdaye.com.geometricweather.R$xml: int widget_trend_hourly -androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$animator: int design_fab_hide_motion_spec -androidx.preference.R$attr: int buttonTintMode -james.adaptiveicon.R$dimen: int abc_edit_text_inset_bottom_material -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: android.graphics.Rect getWindowInsets() -androidx.hilt.work.R$id: int forever -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation BOTTOM -com.turingtechnologies.materialscrollbar.R$layout: int abc_popup_menu_header_item_layout -com.turingtechnologies.materialscrollbar.R$id: int action_mode_bar_stub -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage[] values() -androidx.appcompat.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -com.google.android.material.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleDrawable -androidx.viewpager2.R$styleable: int FontFamilyFont_fontVariationSettings -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: long serialVersionUID -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setRefreshing(boolean) -com.google.android.material.R$styleable: int Constraint_flow_wrapMode -androidx.activity.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$layout: int mtrl_picker_fullscreen -androidx.constraintlayout.widget.R$dimen: int abc_dialog_title_divider_material -androidx.loader.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$style: int Animation_AppCompat_DropDownUp -androidx.swiperefreshlayout.R$dimen -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getIce() -james.adaptiveicon.R$styleable: int AppCompatTheme_popupWindowStyle -james.adaptiveicon.R$styleable: int AppCompatTheme_checkboxStyle -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginRight -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_default_box_stroke_color -androidx.viewpager2.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$id: int parent -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus -androidx.appcompat.widget.SearchView: int getSuggestionCommitIconResId() -androidx.constraintlayout.widget.R$attr: int windowActionBarOverlay -cyanogenmod.providers.CMSettings$DelimitedListValidator: java.lang.String mDelimiter -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: java.util.List getBrands() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String key() -okhttp3.Call: void cancel() -okhttp3.internal.http1.Http1Codec$FixedLengthSource: long bytesRemaining -com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: double Value -androidx.constraintlayout.widget.R$color: int highlighted_text_material_light -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.String TABLENAME -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService listenerExecutor -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int THUNDERSTORMS -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long uniqueId -com.xw.repo.bubbleseekbar.R$id: int uniform -okhttp3.Request: java.lang.String method -wangdaye.com.geometricweather.R$string: int cloud_cover -com.google.android.material.R$styleable: int MenuItem_android_id -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getUrl() -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startY -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_hide_motion_spec -androidx.vectordrawable.animated.R$drawable: int notification_bg_normal_pressed -com.github.rahatarmanahmed.cpv.BuildConfig: BuildConfig() -com.xw.repo.bubbleseekbar.R$attr: int customNavigationLayout -james.adaptiveicon.R$attr: int listLayout -com.google.android.material.R$dimen: int mtrl_calendar_header_height -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object ASYNC_DISPOSED -cyanogenmod.themes.ThemeManager: void registerProcessingListener(cyanogenmod.themes.ThemeManager$ThemeProcessingListener) -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabStyle -androidx.preference.R$color: int abc_btn_colored_text_material -com.jaredrummler.android.colorpicker.R$attr: int order -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderQuery -androidx.swiperefreshlayout.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.R$id: int deltaRelative -com.google.android.material.R$dimen: int abc_text_size_display_4_material -io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function,boolean) -wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationX -james.adaptiveicon.R$styleable: int DrawerArrowToggle_barLength -android.didikee.donate.R$styleable: int MenuItem_android_id -okhttp3.internal.http2.Http2Reader: java.util.List readHeaderBlock(int,short,byte,int) -com.google.android.material.R$attr: int textAppearanceSubtitle1 -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog_Alert -androidx.constraintlayout.widget.R$layout: int abc_activity_chooser_view -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_deriveConstraintsFrom -wangdaye.com.geometricweather.R$layout: int abc_action_menu_item_layout -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LIVE_LOCK_SCREEN_PREVIEW -cyanogenmod.providers.CMSettings$System: long getLongForUser(android.content.ContentResolver,java.lang.String,int) -androidx.appcompat.R$styleable: int AppCompatTheme_homeAsUpIndicator -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge -androidx.hilt.lifecycle.R$dimen -com.turingtechnologies.materialscrollbar.Handle: void setBackgroundColor(int) -io.reactivex.internal.util.VolatileSizeArrayList: boolean addAll(int,java.util.Collection) -com.jaredrummler.android.colorpicker.R$attr: int divider -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_26 -androidx.appcompat.R$styleable: int AppCompatTextView_drawableLeftCompat -cyanogenmod.hardware.CMHardwareManager: java.util.List BOOLEAN_FEATURES -androidx.constraintlayout.widget.R$attr: int submitBackground -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: long serialVersionUID -retrofit2.Retrofit$Builder: Retrofit$Builder() -com.google.android.material.R$styleable: int ProgressIndicator_trackColor -androidx.constraintlayout.widget.R$attr: int textAppearanceListItem -okhttp3.internal.Util: java.nio.charset.Charset UTF_16_LE -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HIGH_TOUCH_SENSITIVITY_ENABLE_VALIDATOR -android.didikee.donate.R$styleable: int AlertDialog_listLayout -james.adaptiveicon.R$id: int forever -com.turingtechnologies.materialscrollbar.R$id: int masked -com.xw.repo.bubbleseekbar.R$attr: int actionBarStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableTop -androidx.recyclerview.R$id: int accessibility_custom_action_0 +android.didikee.donate.R$drawable: int abc_tab_indicator_material +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setDistanceToTriggerSync(int) +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetEndWithActions +com.google.android.material.slider.BaseSlider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int WeatherIcon +wangdaye.com.geometricweather.R$layout: int design_text_input_start_icon +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_pressed_holo_dark +androidx.core.R$dimen: int notification_large_icon_width +com.google.android.material.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +androidx.loader.R$styleable: int GradientColor_android_tileMode +androidx.recyclerview.widget.RecyclerView$SavedState +james.adaptiveicon.R$styleable: int Toolbar_android_minHeight +cyanogenmod.app.IPartnerInterface$Stub: android.os.IBinder asBinder() +okhttp3.internal.ws.WebSocketProtocol: java.lang.String acceptHeader(java.lang.String) +io.reactivex.internal.schedulers.ScheduledRunnable: void dispose() +okhttp3.internal.platform.OptionalMethod +com.google.android.material.R$id: int textinput_suffix_text +com.google.android.material.slider.RangeSlider$RangeSliderState: android.os.Parcelable$Creator CREATOR +james.adaptiveicon.R$id: int decor_content_parent +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Entry +androidx.core.R$id +io.reactivex.Observable: io.reactivex.Observable groupJoin(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +androidx.appcompat.R$attr: int arrowShaftLength +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconDrawable +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerColor +com.turingtechnologies.materialscrollbar.R$dimen: int notification_small_icon_size_as_large +wangdaye.com.geometricweather.R$styleable: int CardView_cardUseCompatPadding +com.google.android.material.R$color: int switch_thumb_normal_material_dark +com.google.android.material.R$style: int Animation_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: long serialVersionUID +okhttp3.internal.http2.StreamResetException: StreamResetException(okhttp3.internal.http2.ErrorCode) +androidx.lifecycle.process.R +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getWindDescription(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit) +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_SYSTEM +wangdaye.com.geometricweather.R$string: int fab_transformation_scrim_behavior +androidx.preference.R$string: int status_bar_notification_info_overflow +com.jaredrummler.android.colorpicker.R$layout: int preference_recyclerview +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_FloatingActionButton +com.xw.repo.bubbleseekbar.R$style: int Base_V26_Theme_AppCompat_Light +androidx.lifecycle.LiveData: void setValue(java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.weather.UV: boolean isValid() +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String Link +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotation +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_13 +com.google.android.material.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.R$attr: int liftOnScroll +com.jaredrummler.android.colorpicker.ColorPreferenceCompat +androidx.preference.R$drawable: int abc_scrubber_track_mtrl_alpha +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Dialog +androidx.preference.R$styleable: int RecyclerView_android_clipToPadding +androidx.core.R$drawable: int notification_bg_low_pressed +cyanogenmod.profiles.ConnectionSettings: boolean isOverride() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type UNKNOWN +androidx.constraintlayout.widget.R$styleable: int TextAppearance_textLocale wangdaye.com.geometricweather.R$drawable: int abc_control_background_material -androidx.transition.R$drawable: int notification_bg_normal -james.adaptiveicon.R$styleable: int MenuView_android_verticalDivider -com.google.android.material.R$styleable: int OnSwipe_limitBoundsTo -com.jaredrummler.android.colorpicker.R$attr: int tintMode -wangdaye.com.geometricweather.common.basic.models.weather.Alert: long getAlertId() -wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_large_material -com.google.android.material.R$dimen: int mtrl_btn_padding_bottom -okio.AsyncTimeout: long IDLE_TIMEOUT_NANOS -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: int status -wangdaye.com.geometricweather.R$id: int center_vertical -okhttp3.internal.cache.DiskLruCache: java.lang.String CLEAN -androidx.vectordrawable.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day -com.jaredrummler.android.colorpicker.R$dimen: int abc_floating_window_z -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_79 -com.google.android.material.R$drawable: int abc_btn_radio_to_on_mtrl_015 -androidx.core.R$id: int accessibility_action_clickable_span -okhttp3.OkHttpClient: okhttp3.ConnectionPool connectionPool() -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void run() -androidx.preference.R$style: int Widget_AppCompat_Light_PopupMenu -okhttp3.internal.http2.Http2: byte FLAG_END_STREAM -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onResume() -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getDurationVoice(android.content.Context,float) -com.turingtechnologies.materialscrollbar.R$color: int notification_action_color_filter -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textFontWeight -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: java.lang.String timezone -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginStart -wangdaye.com.geometricweather.R$styleable: int Toolbar_logoDescription -com.google.android.material.R$attr: int applyMotionScene -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_card_elevation -androidx.preference.R$style: int ThemeOverlay_AppCompat_ActionBar -wangdaye.com.geometricweather.R$array: int week_icon_modes -androidx.recyclerview.R$id: int line1 -com.google.android.material.slider.BaseSlider: float getStepSize() -okio.RealBufferedSource: okio.Timeout timeout() -com.jaredrummler.android.colorpicker.R$attr: int colorControlHighlight -com.google.android.material.R$color: int mtrl_textinput_filled_box_default_background_color -androidx.preference.R$attr: int isLightTheme -androidx.coordinatorlayout.R$id: int time -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult -io.reactivex.Observable: io.reactivex.Observable zipIterable(java.lang.Iterable,io.reactivex.functions.Function,boolean,int) -wangdaye.com.geometricweather.R$attr: int snackbarButtonStyle -wangdaye.com.geometricweather.R$string: int aqi_1 -com.google.android.material.R$attr: int useMaterialThemeColors -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onNext(java.lang.Object) -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType valueOf(java.lang.String) -androidx.constraintlayout.widget.R$string: int abc_activity_chooser_view_see_all -com.google.android.material.R$styleable: int LinearLayoutCompat_divider -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: java.util.concurrent.atomic.AtomicReference other -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Action -com.jaredrummler.android.colorpicker.R$id: int submit_area -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: java.lang.String[] population -androidx.constraintlayout.widget.R$attr: int visibilityMode -androidx.fragment.R$id: int italic -android.didikee.donate.R$attr: int alertDialogButtonGroupStyle -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_4_material -com.google.android.material.R$drawable: int abc_btn_check_to_on_mtrl_015 -wangdaye.com.geometricweather.R$styleable: int Transition_layoutDuringTransition -io.reactivex.internal.util.VolatileSizeArrayList: java.util.List subList(int,int) -androidx.lifecycle.AbstractSavedStateViewModelFactory: android.os.Bundle mDefaultArgs -androidx.preference.R$styleable: int[] ActionMode -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_orientation -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationY -com.turingtechnologies.materialscrollbar.R$attr: int itemHorizontalPadding -wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_small_material -okhttp3.internal.io.FileSystem -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object getKey(java.lang.Object) -com.google.android.material.R$drawable: int material_ic_calendar_black_24dp -retrofit2.adapter.rxjava2.ResultObservable: ResultObservable(io.reactivex.Observable) -androidx.appcompat.R$attr: int suggestionRowLayout -okio.GzipSink: java.util.zip.Deflater deflater -androidx.appcompat.R$id: int src_over -wangdaye.com.geometricweather.R$array: int subtitle_data_values -cyanogenmod.app.LiveLockScreenInfo$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetRight -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_pressed_holo_dark -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_minHeight -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeWidth(float) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_10 -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.constraintlayout.widget.R$id: int customPanel -com.google.android.material.R$attr: int textColorAlertDialogListItem -okhttp3.EventListener: void callFailed(okhttp3.Call,java.io.IOException) -androidx.hilt.lifecycle.R$id: int tag_accessibility_actions -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderFetchStrategy -okhttp3.ConnectionSpec: java.lang.String toString() -androidx.hilt.R$id: int accessibility_custom_action_15 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_LED_ON_VALIDATOR -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_creator -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemStrokeWidth -cyanogenmod.app.CustomTile$ExpandedStyle: int styleId -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.internal.util.AtomicThrowable errors -james.adaptiveicon.R$id: int parentPanel -androidx.coordinatorlayout.R$attr: int layout_keyline -wangdaye.com.geometricweather.R$xml: int icon_provider_shortcut_filter -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status COMPLETED -com.jaredrummler.android.colorpicker.R$id: int large -androidx.activity.R$id: int accessibility_custom_action_14 -com.google.android.material.R$dimen: int design_bottom_navigation_item_min_width -androidx.dynamicanimation.R$attr: int font -okio.Timeout: void waitUntilNotified(java.lang.Object) -com.google.android.material.tabs.TabLayout: int getTabMode() -com.google.android.material.R$styleable: int ConstraintSet_android_id -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabBarStyle -androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontWeight -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_popupBackground -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable -com.bumptech.glide.load.engine.GlideException: com.bumptech.glide.load.DataSource dataSource -com.google.android.material.R$styleable: int AppCompatTextView_drawableRightCompat -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getPm25Color(android.content.Context) -com.google.android.material.snackbar.SnackbarContentLayout: void setMaxInlineActionWidth(int) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.Window access$300(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -androidx.preference.R$layout: int abc_action_mode_bar -okio.AsyncTimeout: java.io.IOException exit(java.io.IOException) -androidx.preference.R$styleable: int AppCompatTheme_windowFixedWidthMinor -wangdaye.com.geometricweather.R$string: int action_search -wangdaye.com.geometricweather.R$string: int cpv_presets -androidx.coordinatorlayout.R$styleable: int GradientColor_android_endY -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_DrawerArrowToggle -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -com.google.android.material.R$attr: int trackTintMode -androidx.hilt.R$id: int actions -com.google.android.material.R$styleable: int Layout_layout_constraintHeight_max -androidx.core.R$id: int accessibility_custom_action_20 -wangdaye.com.geometricweather.R$styleable: int NavigationView_headerLayout -androidx.constraintlayout.widget.R$attr: int tickMark -com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColorStateList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.db.entities.HistoryEntity: long time -com.google.android.material.navigation.NavigationView: void setItemIconTintList(android.content.res.ColorStateList) -com.jaredrummler.android.colorpicker.R$attr: int widgetLayout -androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language CZECH -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -com.google.android.material.R$attr: int customIntegerValue -com.jaredrummler.android.colorpicker.R$dimen: int cpv_dialog_preview_height -okio.Okio$3: void flush() -com.jaredrummler.android.colorpicker.R$dimen: int abc_disabled_alpha_material_light -com.google.android.material.floatingactionbutton.FloatingActionButton -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowColor -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: AccuDailyResult$DailyForecasts$Day() -cyanogenmod.themes.ThemeChangeRequest: long getWallpaperId() -androidx.appcompat.R$dimen: int abc_text_size_caption_material -androidx.preference.R$styleable: int AppCompatTheme_popupMenuStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Bridge -okhttp3.internal.cache.DiskLruCache$2: boolean $assertionsDisabled -com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabTextStyle -androidx.preference.R$styleable: int AppCompatTextView_drawableTint -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps -androidx.preference.R$color: int switch_thumb_disabled_material_dark -android.didikee.donate.R$dimen: int abc_dropdownitem_icon_width -androidx.hilt.work.R$id: int notification_main_column -com.xw.repo.bubbleseekbar.R$attr: int popupWindowStyle -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedDescription -androidx.appcompat.R$styleable: int DrawerArrowToggle_spinBars -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_title -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_1_30 -androidx.appcompat.R$styleable: int AppCompatTheme_panelBackground -okio.Buffer: okio.BufferedSink writeLong(long) -androidx.preference.R$styleable: int AppCompatTheme_colorControlHighlight -androidx.appcompat.R$dimen: int abc_seekbar_track_progress_height_material -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.database.Database db -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmTp1 -androidx.appcompat.R$color: int error_color_material_dark -wangdaye.com.geometricweather.R$attr: int layout_constraintRight_creator -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: java.lang.String Localized -wangdaye.com.geometricweather.R$animator: int weather_sleet_2 -wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_1 -androidx.preference.R$styleable: int Preference_singleLineTitle -androidx.appcompat.R$id: int accessibility_custom_action_7 -io.reactivex.Observable: io.reactivex.Observable cacheWithInitialCapacity(int) -androidx.lifecycle.ViewModelProvider -james.adaptiveicon.R$dimen: int hint_pressed_alpha_material_light -androidx.appcompat.R$style: int Animation_AppCompat_DropDownUp -android.didikee.donate.R$styleable: int AppCompatTheme_editTextStyle -androidx.viewpager2.R$id: int tag_accessibility_pane_title -androidx.swiperefreshlayout.R$layout: int notification_action -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_enterFadeDuration -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_stroke_color_selector -cyanogenmod.weatherservice.ServiceRequestResult$1: cyanogenmod.weatherservice.ServiceRequestResult[] newArray(int) -wangdaye.com.geometricweather.R$id: int searchContainer -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_96 -okhttp3.MultipartBody: void writeTo(okio.BufferedSink) -androidx.appcompat.widget.ActionBarOverlayLayout: int getNestedScrollAxes() -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_1 -androidx.lifecycle.ProcessLifecycleOwnerInitializer: android.database.Cursor query(android.net.Uri,java.lang.String[],java.lang.String,java.lang.String[],java.lang.String) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean cancelled -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: java.lang.String Unit -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.appcompat.widget.AppCompatCheckBox: void setSupportButtonTintList(android.content.res.ColorStateList) -com.jaredrummler.android.colorpicker.R$attr: int colorControlActivated -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderFetchTimeout -okio.RealBufferedSink: RealBufferedSink(okio.Sink) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindLevel(java.lang.String) -androidx.coordinatorlayout.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.chip.Chip: java.lang.CharSequence getCloseIconContentDescription() -james.adaptiveicon.R$styleable: int SwitchCompat_thumbTextPadding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: java.util.List getAlerts() -androidx.viewpager2.R$id: int accessibility_custom_action_6 -androidx.appcompat.resources.R$color: int notification_action_color_filter -cyanogenmod.os.Build: java.lang.String getString(java.lang.String) -androidx.swiperefreshlayout.R$dimen: int compat_control_corner_material -okhttp3.RequestBody$2: okhttp3.MediaType contentType() -androidx.appcompat.R$attr: int hideOnContentScroll -com.jaredrummler.android.colorpicker.R$styleable: int[] ButtonBarLayout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: long EpochTime -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_Solid -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: Http2Codec$StreamFinishingSource(okhttp3.internal.http2.Http2Codec,okio.Source) -androidx.appcompat.R$attr: int alertDialogStyle -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$attr: int checkedButton -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleDrawable -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_3 -okio.RealBufferedSource: byte[] readByteArray(long) -com.xw.repo.bubbleseekbar.R$drawable: int abc_switch_thumb_material -androidx.viewpager2.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setId(java.lang.Long) -com.bumptech.glide.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$drawable: int abc_tab_indicator_material -james.adaptiveicon.R$styleable: int Toolbar_buttonGravity -com.jaredrummler.android.colorpicker.R$attr: int persistent -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Light -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ButtonBar -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.util.Date getDate() -cyanogenmod.app.Profile$ProfileTrigger$1: java.lang.Object[] newArray(int) -androidx.preference.R$attr: int maxWidth -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -androidx.constraintlayout.widget.Barrier: void setType(int) -cyanogenmod.profiles.BrightnessSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$drawable: int notif_temp_62 -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void dispose() -james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontStyle -com.turingtechnologies.materialscrollbar.R$attr: int fontWeight -com.jaredrummler.android.colorpicker.R$id: int action_image -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ButtonBar -com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat_Light -androidx.appcompat.R$dimen: int abc_list_item_height_material -androidx.activity.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean hasKey(java.lang.Object) -com.bumptech.glide.integration.okhttp.R$id: int tag_unhandled_key_event_manager -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver -com.turingtechnologies.materialscrollbar.R$attr: int textStartPadding -androidx.preference.R$style: int Platform_AppCompat -androidx.constraintlayout.widget.R$bool: int abc_config_actionMenuItemAllCaps -androidx.fragment.R$styleable: int Fragment_android_name -com.google.android.material.R$attr: int tabPaddingTop -okhttp3.HttpUrl: void pathSegmentsToString(java.lang.StringBuilder,java.util.List) -wangdaye.com.geometricweather.R$layout: int material_clock_period_toggle_land -com.turingtechnologies.materialscrollbar.R$layout: int abc_activity_chooser_view_list_item -wangdaye.com.geometricweather.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Body_Text -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial -com.google.android.material.R$styleable: int SearchView_android_inputType -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.lang.Throwable error -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error -com.google.android.material.R$color: int abc_search_url_text_selected -com.google.android.material.R$style: int Widget_MaterialComponents_NavigationView -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX brandInfo -retrofit2.RequestFactory: okhttp3.Request create(java.lang.Object[]) -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_11 -wangdaye.com.geometricweather.R$dimen: int standard_weather_icon_size -androidx.preference.R$attr: int thickness -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_FAST_SAMPLES -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -com.turingtechnologies.materialscrollbar.R$styleable: int TouchScrollBar_msb_autoHide -androidx.constraintlayout.widget.R$attr: int buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_showDividers -okhttp3.CacheControl: boolean noTransform -androidx.core.widget.NestedScrollView: int getMaxScrollAmount() -androidx.recyclerview.R$id: int forever -com.bumptech.glide.integration.okhttp.R$drawable: R$drawable() -androidx.hilt.lifecycle.R$dimen: int compat_button_inset_vertical_material -androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_creator -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean get(int) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeColor(int) -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$array: int notification_styles -wangdaye.com.geometricweather.R$styleable: int[] ColorPreference -androidx.loader.R$attr -james.adaptiveicon.R$color: int material_blue_grey_800 -io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean isEmpty() -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: io.reactivex.Observer observer -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_default_mtrl_alpha -androidx.appcompat.R$style: int Widget_AppCompat_ActionButton_CloseMode -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Button -androidx.preference.R$styleable: int ViewStubCompat_android_id -androidx.preference.R$styleable: int SearchView_searchIcon -cyanogenmod.profiles.StreamSettings: StreamSettings(int,int,boolean) -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getCardValue() -okhttp3.Cookie$Builder: java.lang.String value -james.adaptiveicon.R$dimen: int abc_alert_dialog_button_bar_height -okhttp3.EventListener: void responseBodyEnd(okhttp3.Call,long) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean getPoint() -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_suggestionRowLayout -androidx.vectordrawable.R$dimen: int compat_control_corner_material -androidx.appcompat.R$styleable: int ActionBar_icon -com.xw.repo.bubbleseekbar.R$attr: int actionModeWebSearchDrawable -androidx.loader.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$attr: int useCompatPadding -wangdaye.com.geometricweather.R$styleable: int ActionMode_subtitleTextStyle -androidx.vectordrawable.R$attr: int fontWeight -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Source -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_orientation -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable NEVER -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_0 -androidx.coordinatorlayout.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.R$attr: int arcMode -com.bumptech.glide.integration.okhttp.R$id: int tag_transition_group -com.xw.repo.bubbleseekbar.R$style: int Base_V26_Widget_AppCompat_Toolbar -androidx.transition.R$id: int text2 -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver) -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService: ForegroundNormalUpdateService() -androidx.coordinatorlayout.R$id: int notification_main_column_container -androidx.fragment.app.BackStackState: android.os.Parcelable$Creator CREATOR -com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrim(android.graphics.drawable.Drawable) -com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_disable_only_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -com.xw.repo.bubbleseekbar.R$color: int material_grey_850 -okhttp3.internal.http.HttpCodec: void writeRequestHeaders(okhttp3.Request) -androidx.lifecycle.LifecycleRegistryOwner -androidx.preference.R$styleable: int Toolbar_titleMarginTop -com.jaredrummler.android.colorpicker.ColorPanelView: int getShape() -com.google.android.material.R$styleable: int Constraint_flow_lastVerticalBias -com.google.android.material.R$integer: int mtrl_card_anim_delay_ms +wangdaye.com.geometricweather.R$attr: int bsb_section_text_position +com.xw.repo.bubbleseekbar.R$id: int progress_circular +wangdaye.com.geometricweather.R$style: int Theme_Design_Light_BottomSheetDialog +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: int unitArrayIndex +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: ScheduledDirectPeriodicTask(java.lang.Runnable) +com.google.android.material.R$style: int Base_Widget_AppCompat_ListPopupWindow +io.reactivex.observers.DisposableObserver: DisposableObserver() +androidx.vectordrawable.R$layout +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_fontVariationSettings +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: boolean equals(java.lang.Object) +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_fontFamily +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: java.lang.Object enterTransform(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: int getStatus() +com.xw.repo.bubbleseekbar.R$attr: int layout_insetEdge +james.adaptiveicon.R$attr: int subtitleTextStyle +wangdaye.com.geometricweather.R$styleable: int PopupWindow_android_popupBackground +com.jaredrummler.android.colorpicker.R$attr: int trackTint +retrofit2.HttpServiceMethod$SuspendForBody: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) +okhttp3.RequestBody$2: long contentLength() +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean isDisposed() +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation BOTTOM +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments comments +com.google.android.material.R$attr: int shapeAppearanceLargeComponent +io.reactivex.Observable: io.reactivex.Observable concatMapMaybe(io.reactivex.functions.Function) +androidx.hilt.work.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.appcompat.R$dimen: int tooltip_y_offset_non_touch +okhttp3.MediaType: java.lang.String mediaType +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: int Degrees +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: androidx.core.graphics.PathParser$PathDataNode[] getPathData() +james.adaptiveicon.R$dimen: int disabled_alpha_material_dark +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getRippleColor() +james.adaptiveicon.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +com.google.android.material.R$attr: int minWidth +androidx.constraintlayout.widget.R$drawable: int btn_checkbox_unchecked_mtrl +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_circularRadius +wangdaye.com.geometricweather.R$anim: int fragment_main_pop_enter +james.adaptiveicon.R$color: int abc_search_url_text_normal +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getCo() +com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyle +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_round +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy +wangdaye.com.geometricweather.R$id: int transition_transform +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_framePosition +com.jaredrummler.android.colorpicker.R$id: int parentPanel +okhttp3.internal.http1.Http1Codec$FixedLengthSink: void close() +androidx.preference.R$id: int multiply +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizePresetSizes +retrofit2.RequestFactory$Builder: void validateResolvableType(int,java.lang.reflect.Type) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ProgressBar +cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(cyanogenmod.weather.WeatherInfo$1) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String weathercn +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionMenuTextAppearance +com.google.android.material.progressindicator.ProgressIndicator: int[] getIndicatorColors() +com.turingtechnologies.materialscrollbar.R$attr: int showText +wangdaye.com.geometricweather.R$attr: int cpv_color +androidx.preference.R$styleable: int AppCompatSeekBar_tickMarkTintMode +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdtd +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: CaiYunMainlyResult$ForecastHourlyBean() +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_buttonIconDimen +com.turingtechnologies.materialscrollbar.R$attr: int trackTintMode +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight +wangdaye.com.geometricweather.R$id: int transition_scene_layoutid_cache +cyanogenmod.externalviews.IExternalViewProvider$Stub: cyanogenmod.externalviews.IExternalViewProvider asInterface(android.os.IBinder) +androidx.preference.R$dimen: int notification_small_icon_size_as_large +com.google.android.material.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +wangdaye.com.geometricweather.R$animator: int weather_fog_3 +retrofit2.adapter.rxjava2.Result: Result(retrofit2.Response,java.lang.Throwable) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setScaleY(float) +androidx.lifecycle.livedata.R: R() +androidx.constraintlayout.widget.R$string: int abc_menu_alt_shortcut_label +com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_in_top +com.turingtechnologies.materialscrollbar.R$style: int Platform_V21_AppCompat +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_indeterminateProgressStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +cyanogenmod.weather.CMWeatherManager$1$1 +wangdaye.com.geometricweather.common.basic.models.weather.Weather: boolean isValid(float) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours Past3Hours +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onComplete() +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$styleable: int[] ViewBackgroundHelper +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver +com.google.android.material.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset +wangdaye.com.geometricweather.R$attr: int icon +androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_lightIcon +androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void dispose() +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: android.os.IBinder mRemote +com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_material +james.adaptiveicon.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +com.google.android.material.R$dimen: int compat_button_padding_horizontal_material +james.adaptiveicon.R$id: int scrollView +com.google.android.material.R$attr: int iconifiedByDefault +cyanogenmod.externalviews.ExternalViewProviderService$1$1: android.os.IBinder call() +androidx.appcompat.R$styleable: int AppCompatTextView_drawableTint +androidx.lifecycle.LiveData$ObserverWrapper +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm25Desc(java.lang.String) +androidx.core.R$id: int accessibility_custom_action_23 +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver +androidx.hilt.work.R$id: int tag_accessibility_clickable_spans +wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_offset +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: double lon +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.util.AtomicThrowable errors +com.jaredrummler.android.colorpicker.R$attr: int icon +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver parent +androidx.appcompat.resources.R$id: int forever +okhttp3.CertificatePinner$Builder +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_3_30 +androidx.constraintlayout.widget.ConstraintLayout: void setOnConstraintsChanged(androidx.constraintlayout.widget.ConstraintsChangedListener) +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: io.reactivex.Observer downstream +androidx.constraintlayout.widget.R$attr: int singleChoiceItemLayout +androidx.dynamicanimation.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$attr: int materialThemeOverlay +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_minHeight +com.google.android.material.R$styleable: int ConstraintLayout_Layout_chainUseRtl +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_SCREEN_ON_VALIDATOR +androidx.appcompat.widget.Toolbar: void setContentInsetEndWithActions(int) +androidx.appcompat.widget.ListPopupWindow: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +wangdaye.com.geometricweather.R$attr: int hintTextAppearance +androidx.lifecycle.extensions.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$string: int aqi_4 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitation +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: boolean isLeft +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getContent() +wangdaye.com.geometricweather.R$id: int shades_divider +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircleAngle +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +james.adaptiveicon.R$attr: int actionModeShareDrawable +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_24 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogPreferredPadding +retrofit2.HttpServiceMethod$SuspendForBody +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_AutoCompleteTextView +com.google.android.material.slider.BaseSlider: void setThumbRadius(int) +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode SNOW +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String comment +androidx.preference.R$attr: int thumbTintMode +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial Imperial +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveVariesBy +wangdaye.com.geometricweather.R$styleable: int[] LinearLayoutCompat_Layout +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayout_Layout +androidx.preference.R$string: int abc_menu_alt_shortcut_label +androidx.lifecycle.ViewModelProvider$Factory +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_disabled_holo_dark +com.google.android.material.R$color: int abc_primary_text_material_dark +androidx.appcompat.R$attr: int colorError +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_elevation +okhttp3.MultipartBody: java.lang.StringBuilder appendQuotedString(java.lang.StringBuilder,java.lang.String) +android.didikee.donate.R$attr: int colorPrimaryDark +androidx.constraintlayout.widget.R$id: int buttonPanel +androidx.viewpager.R$style +cyanogenmod.themes.IThemeService$Stub$Proxy: void registerThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) +wangdaye.com.geometricweather.R$styleable: int Constraint_barrierMargin +wangdaye.com.geometricweather.R$string: int key_unit +com.google.android.material.R$attr: int linearSeamless +wangdaye.com.geometricweather.R$dimen: int abc_alert_dialog_button_bar_height +androidx.appcompat.resources.R$styleable: int GradientColor_android_startColor +okhttp3.internal.ws.WebSocketWriter$FrameSink: void write(okio.Buffer,long) +okhttp3.internal.http1.Http1Codec: int STATE_CLOSED +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream getStream(int) +wangdaye.com.geometricweather.R$style: int Base_V22_Theme_AppCompat +androidx.recyclerview.widget.StaggeredGridLayoutManager: StaggeredGridLayoutManager(android.content.Context,android.util.AttributeSet,int,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind +android.didikee.donate.R$styleable: int ActionMode_subtitleTextStyle +androidx.hilt.work.R$styleable: int GradientColor_android_endY +androidx.preference.R$styleable: int[] SearchView +androidx.hilt.lifecycle.R$id: int action_divider +com.turingtechnologies.materialscrollbar.R$attr: int bottomSheetStyle +retrofit2.adapter.rxjava2.Result: retrofit2.adapter.rxjava2.Result error(java.lang.Throwable) +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int getPriority() +wangdaye.com.geometricweather.R$attr: int chipMinHeight +com.google.android.material.R$styleable: int[] Variant +okhttp3.Response$Builder: int code +retrofit2.RequestBuilder +wangdaye.com.geometricweather.R$attr: int tabBackground +okhttp3.internal.platform.Platform: byte[] concatLengthPrefixed(java.util.List) +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.R$dimen: int widget_time_text_size +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog +com.google.android.material.appbar.AppBarLayout: void setStatusBarForegroundColor(int) +androidx.appcompat.R$id: int action_divider +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: java.util.concurrent.atomic.AtomicReference inner +android.didikee.donate.R$styleable: int ActionBarLayout_android_layout_gravity +androidx.lifecycle.extensions.R$id: int action_text +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,byte[]) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight +retrofit2.ParameterHandler$Part: void apply(retrofit2.RequestBuilder,java.lang.Object) +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: int limit +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_summaryOn +com.jaredrummler.android.colorpicker.R$id: int search_mag_icon +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void cancel(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int switchStyle +wangdaye.com.geometricweather.R$styleable: int[] SwipeRefreshLayout +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetEnd +androidx.preference.R$styleable: int DialogPreference_android_positiveButtonText +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: io.reactivex.disposables.Disposable upstream +okhttp3.internal.http2.Hpack$Writer: void insertIntoDynamicTable(okhttp3.internal.http2.Header) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_iconSpaceReserved +com.google.android.material.R$color: int mtrl_bottom_nav_colored_item_tint +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer realFeelTemperature +android.didikee.donate.R$attr: int actionModeBackground +androidx.activity.ImmLeaksCleaner +androidx.constraintlayout.widget.R$attr: int layout_constraintEnd_toStartOf +com.google.android.material.R$styleable: int KeyTimeCycle_android_translationX +cyanogenmod.weatherservice.WeatherProviderService: java.lang.String SERVICE_INTERFACE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String to +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_NoActionBar +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat +okhttp3.HttpUrl: okhttp3.HttpUrl get(java.lang.String) +androidx.loader.R$styleable +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_middle_mtrl_dark +okhttp3.OkHttpClient: int readTimeout +androidx.customview.R$style: R$style() +androidx.hilt.lifecycle.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust +androidx.constraintlayout.widget.R$attr: int progressBarStyle +james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Light +androidx.constraintlayout.widget.R$attr: int telltales_tailColor +retrofit2.ParameterHandler$HeaderMap +wangdaye.com.geometricweather.R$attr: int itemHorizontalTranslationEnabled +com.google.android.material.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabUnboundedRipple +wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaContainer +androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Title +androidx.customview.R$attr: int fontProviderAuthority +androidx.hilt.R$id: int tag_screen_reader_focusable +com.xw.repo.bubbleseekbar.R$style: int Platform_V21_AppCompat +androidx.constraintlayout.widget.R$attr: int windowFixedHeightMajor +okhttp3.RealCall: java.lang.String toLoggableString() +androidx.loader.R$style: int Widget_Compat_NotificationActionText +okhttp3.internal.http2.Http2Connection: long access$208(okhttp3.internal.http2.Http2Connection) +com.google.android.material.R$styleable: int ConstraintSet_deriveConstraintsFrom +wangdaye.com.geometricweather.R$attr: int switchMinWidth +wangdaye.com.geometricweather.R$id: int square +com.jaredrummler.android.colorpicker.R$attr: int popupWindowStyle +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_LargeComponent +androidx.hilt.R$dimen: int compat_notification_large_icon_max_height +cyanogenmod.themes.ThemeManager$1$2: cyanogenmod.themes.ThemeManager$1 this$1 +com.google.android.material.R$dimen: int tooltip_horizontal_padding +androidx.legacy.coreutils.R$styleable: int GradientColor_android_startY +androidx.constraintlayout.widget.R$color: int switch_thumb_normal_material_light +androidx.constraintlayout.widget.R$color: int background_material_light +com.turingtechnologies.materialscrollbar.R$color: int cardview_light_background +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Dialog +com.bumptech.glide.integration.okhttp.R$dimen: int notification_right_icon_size +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_listItemLayout +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_layout +wangdaye.com.geometricweather.R$dimen: int abc_text_size_small_material +okhttp3.internal.http.HttpCodec +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_homeAsUpIndicator +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: double Value +james.adaptiveicon.R$style: int Theme_AppCompat_Light_NoActionBar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: AccuCurrentResult$WindChillTemperature$Imperial() +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_normal_pressed +com.turingtechnologies.materialscrollbar.R$integer: int hide_password_duration +androidx.constraintlayout.widget.R$id: int tag_accessibility_pane_title +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather weather +james.adaptiveicon.R$styleable: int ActionBar_homeAsUpIndicator +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.DailyEntityDao getDailyEntityDao() +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +wangdaye.com.geometricweather.R$attr: int behavior_peekHeight +androidx.constraintlayout.widget.R$attr: int flow_firstVerticalStyle +android.didikee.donate.R$styleable: int AppCompatTheme_checkedTextViewStyle +com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.AnimatorSet indeterminateAnimator +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$string: int abc_menu_ctrl_shortcut_label +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Body2 +androidx.appcompat.widget.ButtonBarLayout: int getMinimumHeight() +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.view.WindowManager mWindowManager +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_growMode +com.bumptech.glide.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$attr: int layout_goneMarginTop +androidx.constraintlayout.widget.R$id: int staticLayout +com.xw.repo.bubbleseekbar.R$drawable: int notification_icon_background +androidx.constraintlayout.widget.R$color: int material_grey_300 +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfileByName +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour FIXED +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver this$0 +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerCloseError(java.lang.Throwable) +james.adaptiveicon.R$style: int Theme_AppCompat_Dialog_Alert +com.google.android.material.R$attr: int height +androidx.constraintlayout.widget.R$id: int action_text +okhttp3.Address: okhttp3.CertificatePinner certificatePinner() +james.adaptiveicon.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: int city_code +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean isDisposed() +android.didikee.donate.R$color: int abc_secondary_text_material_dark +cyanogenmod.hardware.CMHardwareManager: int getSupportedFeatures() +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_NAME +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: MfForecastResult$DailyForecast$Humidity() +com.google.android.material.R$styleable: int MaterialTextAppearance_android_letterSpacing +androidx.customview.R$drawable: int notification_bg_normal_pressed +com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColor(int) +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: int active +james.adaptiveicon.R$styleable: int ActionBar_contentInsetLeft +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_multiChoiceItemLayout +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.TableStatements getStatements() +com.google.gson.stream.JsonReader: char readEscapeCharacter() +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder readTimeout(java.time.Duration) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: CaiYunMainlyResult() +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_default +com.jaredrummler.android.colorpicker.R$dimen: int notification_action_icon_size +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView_DropDown +androidx.constraintlayout.widget.R$attr: int tooltipText +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize +androidx.appcompat.R$integer +androidx.work.R$dimen: int notification_large_icon_height +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +wangdaye.com.geometricweather.R$attr: int allowDividerAfterLastItem +cyanogenmod.weatherservice.IWeatherProviderService: void cancelOngoingRequests() +cyanogenmod.power.PerformanceManager: void cpuBoost(int) +cyanogenmod.app.Profile$1: java.lang.Object createFromParcel(android.os.Parcel) +com.google.android.material.R$color: int material_grey_850 +androidx.hilt.R$id: int action_divider +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeTextType +androidx.appcompat.widget.ViewStubCompat: void setLayoutResource(int) +wangdaye.com.geometricweather.R$id: int labeled +androidx.work.R$id: int accessibility_custom_action_9 +androidx.dynamicanimation.R$drawable: int notification_icon_background +androidx.legacy.coreutils.R$dimen: int compat_button_inset_vertical_material +androidx.core.R$id: R$id() +com.google.gson.stream.JsonWriter: java.io.Writer out +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void cancel() +okio.Buffer: long read(okio.Buffer,long) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_toRightOf +com.google.android.material.R$id: int mtrl_calendar_day_selector_frame +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status[] $VALUES +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_get +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getPressureText(android.content.Context,float) +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback +com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar +io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit) +android.didikee.donate.R$styleable: int TextAppearance_android_textColor +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_menu_material +com.turingtechnologies.materialscrollbar.R$attr: int actionProviderClass +androidx.loader.R$id: int icon +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollEnabled +james.adaptiveicon.R$styleable: int AppCompatTheme_panelMenuListWidth +com.google.android.material.R$dimen: int mtrl_btn_elevation +com.google.android.material.R$styleable: int CollapsingToolbarLayout_titleEnabled +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onComplete() +com.jaredrummler.android.colorpicker.ColorPickerView: int getPreferredWidth() +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void cancelRequest(int) +wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_layout +io.reactivex.internal.util.NotificationLite: io.reactivex.disposables.Disposable getDisposable(java.lang.Object) +com.google.android.material.R$styleable: int[] Snackbar +wangdaye.com.geometricweather.R$style: int Widget_Design_FloatingActionButton +com.google.android.material.R$drawable: int material_cursor_drawable +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_directionValue +androidx.preference.R$styleable: int FontFamilyFont_android_fontStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_transformPivotY +androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,java.lang.String) +androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionDuration(int) +james.adaptiveicon.R$string: int abc_shareactionprovider_share_with_application +james.adaptiveicon.R$attr: int actionProviderClass +cyanogenmod.externalviews.KeyguardExternalView: void executeQueue() +okio.Pipe$PipeSink: okio.Timeout timeout +com.google.android.material.textfield.TextInputLayout: void setStartIconTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: void run() +com.jaredrummler.android.colorpicker.R$id: int default_activity_button +wangdaye.com.geometricweather.R$dimen: int material_clock_size +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_backgroundTint +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void collapseNotificationPanel() +wangdaye.com.geometricweather.R$attr: int elevationOverlayEnabled +androidx.viewpager2.R$styleable: int GradientColorItem_android_offset +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorType +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.R$drawable: int weather_rain_2 +okhttp3.internal.http1.Http1Codec$ChunkedSource: long NO_CHUNK_YET +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void clear() +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay +com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$dimen: int mtrl_extended_fab_min_width +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPm25(java.lang.Float) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_EditText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String value +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String getValue() +com.xw.repo.bubbleseekbar.R$attr: int actionLayout +androidx.hilt.lifecycle.R$style +okhttp3.internal.http2.Http2Writer: void headers(boolean,int,java.util.List) +wangdaye.com.geometricweather.R$attr: int contentInsetLeft +androidx.preference.R$anim: int fragment_open_exit +okhttp3.HttpUrl: java.util.List pathSegments() +androidx.cardview.R$color +androidx.activity.R$attr: int fontProviderAuthority +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +cyanogenmod.platform.R$integer +androidx.recyclerview.R$attr: int fontVariationSettings +com.google.gson.stream.JsonReader: java.io.IOException syntaxError(java.lang.String) +okhttp3.ResponseBody: java.nio.charset.Charset charset() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: ExternalViewProviderService$Provider$ProviderImpl$3(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +cyanogenmod.app.Profile: void setStreamSettings(cyanogenmod.profiles.StreamSettings) +com.jaredrummler.android.colorpicker.R$attr: int fontFamily +androidx.hilt.work.R$drawable: int notification_tile_bg +android.didikee.donate.R$attr: R$attr() +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchPadding +okhttp3.internal.http2.Http2Stream$FramingSource: void receive(okio.BufferedSource,long) +com.google.android.material.chip.Chip: void setCloseIconEndPadding(float) +cyanogenmod.externalviews.ExternalViewProviderService$Provider +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_pressed_holo_light +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_maxButtonHeight +wangdaye.com.geometricweather.R$attr: int maxActionInlineWidth +com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth com.google.android.material.tabs.TabLayout: void setElevation(float) -android.didikee.donate.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$string: int phase_waxing_crescent -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_Solid -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -androidx.preference.R$styleable: int GradientColor_android_centerY -androidx.drawerlayout.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginRight -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +okhttp3.internal.cache2.Relay: java.lang.Thread upstreamReader +cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient access$202(cyanogenmod.weatherservice.WeatherProviderService,cyanogenmod.weatherservice.IWeatherProviderServiceClient) +wangdaye.com.geometricweather.common.basic.models.weather.Alert: Alert(long,java.util.Date,long,java.lang.String,java.lang.String,java.lang.String,int,int) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +androidx.coordinatorlayout.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$dimen: int cardview_default_radius +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicator(android.graphics.drawable.Drawable) +android.didikee.donate.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_lunar +androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context) +cyanogenmod.content.Intent: java.lang.String ACTION_OPEN_LIVE_LOCKSCREEN_SETTINGS +okhttp3.internal.http2.Http2Writer: java.util.logging.Logger logger +androidx.appcompat.widget.AppCompatImageView: android.graphics.PorterDuff$Mode getSupportImageTintMode() +io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable INSTANCE +com.google.android.material.textfield.TextInputLayout: void setHintAnimationEnabled(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: long EpochStartTime +com.jaredrummler.android.colorpicker.ColorPickerView: void setColor(int) +androidx.appcompat.R$drawable: int abc_spinner_mtrl_am_alpha +androidx.hilt.R$id: int accessibility_custom_action_26 +james.adaptiveicon.R$styleable: int ActionBar_customNavigationLayout +androidx.loader.R$styleable: int FontFamily_fontProviderCerts +androidx.preference.R$styleable: int DialogPreference_dialogLayout +androidx.constraintlayout.widget.R$attr: int constraintSet +androidx.appcompat.R$attr: int colorPrimary +cyanogenmod.providers.DataUsageContract: java.lang.String[] PROJECTION_ALL +io.reactivex.internal.util.VolatileSizeArrayList: long serialVersionUID +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Info +com.turingtechnologies.materialscrollbar.R$bool: R$bool() +com.google.android.material.textfield.TextInputLayout: void setErrorIconTintList(android.content.res.ColorStateList) +com.bumptech.glide.R$drawable: int notification_bg_low_normal +cyanogenmod.themes.ThemeManager$ThemeProcessingListener +cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet) +com.google.android.material.internal.NavigationMenuItemView: void setActionView(android.view.View) +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: int fusionMode +com.google.android.material.R$bool +com.google.android.material.R$styleable: int BottomNavigationView_itemTextColor +wangdaye.com.geometricweather.R$attr: int goIcon +cyanogenmod.app.IProfileManager: boolean profileExistsByName(java.lang.String) +com.google.android.material.R$styleable: int CollapsingToolbarLayout_toolbarId +android.didikee.donate.R$color: int primary_material_dark +com.google.android.material.R$style: int Widget_Design_TabLayout +com.google.android.material.R$styleable: int AppCompatTextView_android_textAppearance +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Button +com.google.android.material.R$styleable: int AppCompatTheme_actionModeCopyDrawable +androidx.appcompat.R$color: int primary_material_dark +wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_light +androidx.appcompat.widget.FitWindowsViewGroup: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) +com.jaredrummler.android.colorpicker.R$dimen: int abc_seekbar_track_background_height_material +androidx.preference.R$anim: int fragment_open_enter +okio.RealBufferedSink: okio.BufferedSink writeShort(int) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_PopupMenu +androidx.appcompat.widget.ActionBarOverlayLayout: int getActionBarHideOffset() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupMenu_Overflow +androidx.preference.R$styleable: int[] ActionBarLayout +wangdaye.com.geometricweather.R$attr: int values +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherText +androidx.work.R$id: int accessibility_custom_action_22 +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_constantSize +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_middle_mtrl_dark +androidx.appcompat.widget.SwitchCompat: void setTrackDrawable(android.graphics.drawable.Drawable) +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_min_width_major +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type LEFT +retrofit2.ParameterHandler$Tag: java.lang.Class cls +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableItem_android_id +com.jaredrummler.android.colorpicker.R$layout: int abc_expanded_menu_layout +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitationProbability +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling Ceiling +com.google.android.material.R$attr: int flow_padding +com.google.android.material.R$styleable: int MenuGroup_android_id +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemBackground +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.lang.String title +androidx.transition.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$attr: int defaultDuration +android.didikee.donate.R$dimen: int abc_dialog_fixed_width_minor +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void removeSome(int) +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage ENCODE +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTypeface(android.graphics.Typeface) +androidx.preference.R$styleable: int AppCompatTheme_tooltipForegroundColor +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleTextAppearance +okhttp3.ConnectionPool: int maxIdleConnections +okhttp3.EventListener: void secureConnectEnd(okhttp3.Call,okhttp3.Handshake) +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: java.lang.Object invoke(java.lang.Object) +androidx.customview.R$dimen: int notification_top_pad +okhttp3.internal.cache2.Relay: okhttp3.internal.cache2.Relay read(java.io.File) +androidx.lifecycle.extensions.R$dimen: int notification_right_icon_size +androidx.customview.R$id: R$id() +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +cyanogenmod.weather.WeatherLocation: java.lang.String getPostalCode() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_111 +com.google.android.material.textfield.TextInputLayout: int getEndIconMode() +okhttp3.internal.http2.Http2Connection: void writePing() +androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context,android.util.AttributeSet) +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: void execute() +okhttp3.HttpUrl: java.lang.String PASSWORD_ENCODE_SET +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_tooltipFrameBackground +androidx.preference.R$styleable: int AppCompatTheme_dialogCornerRadius +androidx.appcompat.R$attr: int collapseContentDescription +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light_BottomSheetDialog +com.google.gson.stream.JsonReader$1: JsonReader$1() +com.jaredrummler.android.colorpicker.R$styleable: int[] CoordinatorLayout +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ACTIVE +com.google.android.material.R$id: int snackbar_action +androidx.viewpager.R$color: int notification_action_color_filter +okhttp3.internal.Util: void addSuppressedIfPossible(java.lang.Throwable,java.lang.Throwable) +androidx.constraintlayout.widget.R$attr: int touchRegionId +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_color +com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle +androidx.appcompat.R$attr: int preserveIconSpacing +androidx.preference.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +com.google.android.material.R$styleable: int KeyCycle_android_rotation +com.google.android.material.internal.BaselineLayout: int getBaseline() +androidx.preference.R$styleable: int FontFamilyFont_android_fontWeight +androidx.appcompat.R$color: int dim_foreground_material_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: CaiYunMainlyResult$CurrentBean$PressureBean() +wangdaye.com.geometricweather.GeometricWeather +com.google.android.material.slider.RangeSlider: void setHaloRadiusResource(int) +cyanogenmod.externalviews.ExternalViewProperties: int getX() +com.bumptech.glide.R$integer +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_switchTextOn +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_logo +okhttp3.internal.publicsuffix.PublicSuffixDatabase: void readTheListUninterruptibly() +android.didikee.donate.R$id: int end +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_7 +com.google.android.material.R$dimen: int abc_config_prefDialogWidth +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView +wangdaye.com.geometricweather.R$id: int ragweedTitle +okhttp3.ConnectionSpec: boolean tls +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: int UnitType +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemHorizontalTranslationEnabled(boolean) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitationProbability +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar +com.xw.repo.bubbleseekbar.R$id: int add +james.adaptiveicon.R$styleable: int TextAppearance_android_textColorHint +androidx.preference.R$style: int Widget_AppCompat_SearchView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setStatus(int) +androidx.appcompat.resources.R$integer: R$integer() +cyanogenmod.weather.WeatherInfo: double getWindDirection() +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean hasKey(java.lang.Object) +com.google.android.material.R$styleable: int Toolbar_titleTextColor +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle HOURLY +androidx.preference.R$attr: int dropdownPreferenceStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling() +androidx.legacy.coreutils.R$attr: int fontProviderFetchStrategy +androidx.dynamicanimation.R$dimen: int compat_notification_large_icon_max_width +androidx.customview.R$styleable: int[] ColorStateListItem +com.google.android.material.R$attr: int alertDialogCenterButtons +james.adaptiveicon.R$layout: int support_simple_spinner_dropdown_item +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber,java.util.concurrent.atomic.AtomicReference) +com.google.android.material.bottomappbar.BottomAppBar: float getCradleVerticalOffset() +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_middle_mtrl_dark +wangdaye.com.geometricweather.R$attr: int progressBarStyle +wangdaye.com.geometricweather.R$font: int google_sans +androidx.transition.R$styleable: R$styleable() +androidx.preference.R$color: int accent_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_numericModifiers +wangdaye.com.geometricweather.R$dimen: int progress_view_size +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification +androidx.viewpager2.R$dimen: int notification_action_text_size +android.didikee.donate.R$attr: int title +androidx.appcompat.R$layout: int notification_template_icon_group +com.turingtechnologies.materialscrollbar.R$id: int save_non_transition_alpha +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void replay(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +androidx.work.impl.foreground.SystemForegroundService +wangdaye.com.geometricweather.R$id: int SYM +okhttp3.internal.connection.RouteSelector: int nextProxyIndex +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Switch +com.google.gson.FieldNamingPolicy$5: FieldNamingPolicy$5(java.lang.String,int) +wangdaye.com.geometricweather.R$attr: int colorSecondaryVariant +cyanogenmod.weatherservice.WeatherProviderService$1 +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: int getStatus() +androidx.appcompat.resources.R$styleable: int GradientColor_android_startX +androidx.preference.R$styleable: int Toolbar_contentInsetEndWithActions +okhttp3.CertificatePinner$Pin: java.lang.String toString() +com.xw.repo.bubbleseekbar.R$color: int foreground_material_light +androidx.appcompat.resources.R$string: int status_bar_notification_info_overflow +androidx.constraintlayout.widget.R$anim: R$anim() +androidx.preference.R$string: int abc_search_hint +com.turingtechnologies.materialscrollbar.R$attr: int boxStrokeColor +com.google.android.material.R$anim: int design_snackbar_in +com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextColor +com.google.android.material.R$attr: int contentInsetLeft +androidx.preference.R$styleable: int DialogPreference_dialogIcon +androidx.lifecycle.extensions.R$drawable: int notification_tile_bg +androidx.customview.R$styleable: int GradientColor_android_startX +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_alphabeticShortcut +androidx.viewpager2.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.R$styleable: int ActionBar_popupTheme +com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonCompat +androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_z +wangdaye.com.geometricweather.R$attr: int adjustable +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabBarStyle +androidx.cardview.R$color: int cardview_dark_background +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void emit() +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver +cyanogenmod.providers.CMSettings$Secure: long getLong(android.content.ContentResolver,java.lang.String,long) +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.functions.Function zipper +androidx.lifecycle.ViewModelStoreOwner +okhttp3.EventListener: void connectionReleased(okhttp3.Call,okhttp3.Connection) +com.github.rahatarmanahmed.cpv.CircularProgressView: void setMaxProgress(float) +androidx.hilt.R$id: int visible_removing_fragment_view_tag +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language CHINESE +com.google.android.material.R$styleable: int AppCompatTheme_actionBarTheme +android.didikee.donate.R$layout: int abc_list_menu_item_icon +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_switchStyle +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_dialogPreferenceStyle +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_MODE +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_translation_z_hovered_focused +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: double speed +androidx.hilt.R$style: R$style() +cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CONTENT_URI +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierMargin +wangdaye.com.geometricweather.R$color: int mtrl_btn_text_btn_bg_color_selector +com.google.android.material.R$dimen: int abc_list_item_height_material +cyanogenmod.app.CMStatusBarManager: CMStatusBarManager(android.content.Context) +cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_NETWORK_SETTINGS +android.didikee.donate.R$styleable: int AlertDialog_multiChoiceItemLayout +androidx.activity.R$drawable: int notification_bg_low_pressed +okhttp3.internal.http2.Http2Stream$StreamTimeout: okhttp3.internal.http2.Http2Stream this$0 +androidx.constraintlayout.widget.R$id: int notification_main_column +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: ObservableConcatMap$ConcatMapDelayErrorObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) +okhttp3.RealCall +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.ObservableSource source +wangdaye.com.geometricweather.common.basic.models.weather.Current: Current(java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability,wangdaye.com.geometricweather.common.basic.models.weather.Wind,wangdaye.com.geometricweather.common.basic.models.weather.UV,wangdaye.com.geometricweather.common.basic.models.weather.AirQuality,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.String,java.lang.String) +wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity: WeekWidgetConfigActivity() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$width +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$layout: int activity_settings +androidx.core.R$attr: int fontStyle +com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Determinate +com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontStyle +androidx.preference.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +wangdaye.com.geometricweather.R$color: int accent_material_dark +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator +androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentY +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: ObservableTimeoutTimed$TimeoutObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker) +androidx.appcompat.R$drawable: int notification_template_icon_low_bg +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +io.reactivex.internal.subscriptions.EmptySubscription: void cancel() +androidx.preference.R$styleable: int FontFamilyFont_fontWeight +androidx.appcompat.widget.AppCompatImageButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_dark +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Medium +okhttp3.internal.http2.Hpack: java.util.Map nameToFirstIndex() +retrofit2.OkHttpCall$NoContentResponseBody: okio.BufferedSource source() +android.support.v4.app.INotificationSideChannel$Stub: android.support.v4.app.INotificationSideChannel asInterface(android.os.IBinder) +com.google.android.material.R$id: int search_voice_btn +androidx.constraintlayout.widget.R$attr: int alertDialogStyle +wangdaye.com.geometricweather.R$id: int pathRelative +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setIcePrecipitationProbability(java.lang.Float) +wangdaye.com.geometricweather.R$drawable: int notif_temp_86 +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance +android.didikee.donate.R$drawable: int abc_ic_star_black_16dp +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_pivotAnchor +james.adaptiveicon.R$style: int Base_Animation_AppCompat_DropDownUp +androidx.transition.R$id: int right_icon +androidx.constraintlayout.helper.widget.Flow: void setPaddingTop(int) +com.google.android.material.R$dimen: int abc_button_padding_horizontal_material +cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_ANSWER +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constrainedWidth +com.xw.repo.bubbleseekbar.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String IconPhrase +com.google.android.material.R$drawable: int abc_btn_radio_to_on_mtrl_015 +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemSummary(java.lang.String) +com.google.android.material.R$animator: int mtrl_btn_state_list_anim +com.google.android.material.progressindicator.ProgressIndicator: void setGrowMode(int) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarSplitStyle +androidx.work.R$drawable: int notification_bg_low_normal +com.turingtechnologies.materialscrollbar.R$id: int outline +com.turingtechnologies.materialscrollbar.R$drawable: int abc_action_bar_item_background_material +androidx.preference.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setSunSet(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int[] MaterialCardView +com.google.android.material.R$attr: int fontProviderAuthority +com.google.android.material.textfield.TextInputLayout: void setHint(int) +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setTopIconDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_Test +okhttp3.internal.http2.Http2Connection: boolean access$302(okhttp3.internal.http2.Http2Connection,boolean) +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_alterWindow +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_width_major +com.google.android.material.R$attr: int state_liftable +james.adaptiveicon.R$styleable: int SearchView_android_maxWidth +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onCross +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory LOW +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property DegreeDayTemperature +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_COLOR +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getTotalPrecipitationProbability() +wangdaye.com.geometricweather.R$drawable: int ic_state_checked +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode valueOf(java.lang.String) +wangdaye.com.geometricweather.R$string: int feedback_collect_failed +com.google.android.material.circularreveal.CircularRevealLinearLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind wind +wangdaye.com.geometricweather.R$style: int Widget_Compat_NotificationActionText +okhttp3.internal.http2.Huffman: void addCode(int,int,byte) +okhttp3.CacheControl: boolean immutable +okhttp3.Request$Builder: okhttp3.Request$Builder header(java.lang.String,java.lang.String) +com.google.android.material.floatingactionbutton.FloatingActionButton: int getRippleColor() +android.didikee.donate.R$attr: int actionModeCopyDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_textLocale +okio.Buffer: okio.Buffer writeDecimalLong(long) +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_anchor +wangdaye.com.geometricweather.R$anim: int design_snackbar_out +wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaSeekBar +okhttp3.Headers: java.lang.String get(java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription +cyanogenmod.weatherservice.ServiceRequestResult$Builder: java.util.List mLocationLookupList +io.reactivex.internal.util.EmptyComponent: void onComplete() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findAndroidPlatform() +com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Choice +androidx.recyclerview.widget.RecyclerView: androidx.core.view.NestedScrollingChildHelper getScrollingChildHelper() +androidx.preference.R$style: R$style() +okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithIncrementalIndexingIndexedName(int) +androidx.appcompat.R$color: int tooltip_background_light +androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerColor +okhttp3.Cache: int VERSION +androidx.preference.R$styleable: int SwitchPreferenceCompat_summaryOn +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_min +io.reactivex.internal.disposables.ArrayCompositeDisposable: long serialVersionUID +androidx.appcompat.widget.AppCompatTextView: void setSupportCompoundDrawablesTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.R$attr: int tabIndicatorColor +androidx.work.R$color: int notification_icon_bg_color +androidx.recyclerview.widget.RecyclerView +wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_material +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstHorizontalStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonStyle +androidx.customview.R$id: int text +wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeSeekBar +com.google.android.material.R$styleable: int[] BottomAppBar +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_5 +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_height_material +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_1 +androidx.loader.R$drawable: R$drawable() +cyanogenmod.app.Profile$ExpandedDesktopMode +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_height +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial +com.bumptech.glide.load.engine.GlideException +com.google.android.material.R$layout: int text_view_with_line_height_from_appearance +android.didikee.donate.R$attr: int textAppearanceListItem +okhttp3.internal.ws.WebSocketWriter: WebSocketWriter(boolean,okio.BufferedSink,java.util.Random) +wangdaye.com.geometricweather.R$string +cyanogenmod.app.ThemeComponent: ThemeComponent(java.lang.String,int,int) +androidx.appcompat.resources.R$id: int notification_main_column +android.didikee.donate.R$attr: int collapseContentDescription +cyanogenmod.app.BaseLiveLockManagerService$1: void cancelLiveLockScreen(java.lang.String,int,int) +androidx.preference.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_elevation +wangdaye.com.geometricweather.R$id: int expand_activities_button +com.google.android.material.R$attr: int materialCardViewStyle +com.google.android.material.R$styleable: int Layout_layout_constraintLeft_toLeftOf +androidx.constraintlayout.widget.R$color: int material_blue_grey_950 +com.turingtechnologies.materialscrollbar.R$string: int fab_transformation_sheet_behavior +com.google.android.material.internal.FlowLayout: void setSingleLine(boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_entries +com.bumptech.glide.load.engine.CallbackException: CallbackException(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$styleable: int ActionMenuItemView_android_minWidth +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_vertical_padding +com.google.android.material.chip.Chip: android.graphics.RectF getCloseIconTouchBounds() +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.R$dimen: int notification_content_margin_start +androidx.preference.R$styleable: int MenuItem_android_id +androidx.lifecycle.SavedStateHandle: java.lang.String VALUES +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$LayoutManager getLayoutManager() +cyanogenmod.themes.ThemeChangeRequest$Builder +cyanogenmod.hardware.CMHardwareManager: int FEATURE_ADAPTIVE_BACKLIGHT +androidx.vectordrawable.R$style: R$style() +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyStartText +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeStyle +com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialCardView +okhttp3.internal.cache.DiskLruCache$Snapshot +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric Metric +wangdaye.com.geometricweather.R$id: int searchIcon +com.google.android.material.navigation.NavigationView$SavedState: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_maxButtonHeight +okhttp3.logging.LoggingEventListener$1 +androidx.preference.R$style: int TextAppearance_AppCompat_Menu +com.google.android.material.R$styleable: int Layout_layout_goneMarginRight +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionBarLayout +androidx.preference.R$styleable: int MenuItem_iconTint +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +androidx.hilt.lifecycle.R$style: R$style() +androidx.vectordrawable.R$integer +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_SET_CLIENT +com.google.android.material.R$attr: int contentPaddingBottom +com.google.android.material.R$styleable: int KeyPosition_framePosition +com.turingtechnologies.materialscrollbar.MaterialScrollBar: int getMode() +com.google.android.material.R$styleable: int ConstraintSet_flow_verticalStyle +okhttp3.CacheControl$Builder: int minFreshSeconds +androidx.appcompat.R$style: int TextAppearance_AppCompat +com.xw.repo.bubbleseekbar.R$color: int abc_btn_colored_text_material +com.google.android.material.R$styleable: int MaterialButton_strokeWidth +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: long timeout +wangdaye.com.geometricweather.R$font +com.google.android.material.slider.BaseSlider: void setThumbElevation(float) +wangdaye.com.geometricweather.R$attr: int backgroundTintMode +com.google.android.material.R$styleable: int ActionMode_titleTextStyle +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.R$style: int widget_text_clock +cyanogenmod.weather.CMWeatherManager$2: cyanogenmod.weather.CMWeatherManager this$0 +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: void onResponse(retrofit2.Call,retrofit2.Response) wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullException: ResourceUtils$NullException() -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status[] values() -cyanogenmod.app.ProfileManager: java.lang.String PROFILES_STATE_CHANGED_ACTION -wangdaye.com.geometricweather.R$attr: int motionPathRotate -com.google.android.material.tabs.TabLayout: int getTabScrollRange() -com.turingtechnologies.materialscrollbar.CustomIndicator: int getIndicatorHeight() -androidx.preference.R$styleable: int[] LinearLayoutCompat -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_selectionRequired -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetStartWithNavigation -com.google.android.material.chip.Chip: void setGravity(int) -com.jaredrummler.android.colorpicker.R$dimen: int hint_pressed_alpha_material_light -wangdaye.com.geometricweather.R$xml: int standalone_badge_offset -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber(androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData) -androidx.loader.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$string: int feedback_location_permissions_statement -com.jaredrummler.android.colorpicker.R$attr: int spanCount -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_tooltipForegroundColor -io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,io.reactivex.functions.Function,int) -okhttp3.internal.cache.CacheStrategy: boolean isCacheable(okhttp3.Response,okhttp3.Request) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: int Id -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_weightSum -okhttp3.Request$Builder: okhttp3.Request$Builder addHeader(java.lang.String,java.lang.String) -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_left_mtrl_light -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceLargePopupMenu -androidx.hilt.work.R$style -androidx.dynamicanimation.R$styleable: int GradientColor_android_endY -androidx.viewpager2.R$id: int notification_background -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: java.util.Date StartDateTime -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.util.concurrent.atomic.AtomicReference latest -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setLabelVisibilityMode(int) -com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatHoveredFocusedTranslationZ() -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void drain() -okhttp3.MultipartBody: okhttp3.MediaType originalType -androidx.recyclerview.R$attr: R$attr() -cyanogenmod.externalviews.IExternalViewProvider: void onDetach() -wangdaye.com.geometricweather.R$styleable: int MotionLayout_motionProgress -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.R$styleable: int KeyCycle_motionProgress -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver -wangdaye.com.geometricweather.R$drawable: int notif_temp_131 -androidx.preference.R$dimen: int fastscroll_default_thickness -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_lineHeight -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_icon_text_spacing -androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context) -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startY -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listMenuViewStyle -androidx.preference.R$styleable: int MenuView_android_itemTextAppearance -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_8 -okhttp3.internal.cache2.Relay: java.io.RandomAccessFile file -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionMenuTextColor -wangdaye.com.geometricweather.R$animator: R$animator() -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getStrokeColor() -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_keylines -com.google.android.material.R$attr: int tabMode -io.reactivex.internal.util.NotificationLite: java.lang.Throwable getError(java.lang.Object) -androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -androidx.customview.R$styleable: int FontFamilyFont_android_fontWeight -cyanogenmod.profiles.AirplaneModeSettings$1: cyanogenmod.profiles.AirplaneModeSettings[] newArray(int) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.turingtechnologies.materialscrollbar.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.R$styleable: int[] FloatingActionButton_Behavior_Layout -androidx.preference.R$style: int TextAppearance_AppCompat_Medium_Inverse -android.didikee.donate.R$styleable: int MenuItem_numericModifiers -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tSea -androidx.hilt.work.R$styleable: int GradientColor_android_centerY -okhttp3.internal.http.HttpCodec: void finishRequest() -cyanogenmod.hardware.IThermalListenerCallback$Stub -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial() -okhttp3.internal.cache2.Relay: okio.ByteString PREFIX_DIRTY -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderTextAppearance -androidx.preference.R$styleable: int AnimatedStateListDrawableItem_android_id -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_popupTheme -wangdaye.com.geometricweather.R$string: int publish_at -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.R$attr: int dividerVertical +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date moonriseTime +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitation() +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +com.google.android.material.R$styleable: int CompoundButton_buttonCompat +androidx.constraintlayout.widget.R$styleable: int Constraint_chainUseRtl +com.xw.repo.bubbleseekbar.R$attr: int thumbTint +androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +androidx.appcompat.R$styleable: int[] PopupWindowBackgroundState +io.reactivex.Observable: io.reactivex.Observable concatMapEagerDelayError(io.reactivex.functions.Function,int,int,boolean) +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleContentDescription +wangdaye.com.geometricweather.settings.fragments.AppearanceSettingsFragment +com.google.android.material.R$styleable: int MaterialCalendar_dayTodayStyle +okhttp3.internal.connection.RealConnection: okhttp3.Handshake handshake() +okhttp3.internal.http2.Http2Reader: void readConnectionPreface(okhttp3.internal.http2.Http2Reader$Handler) +wangdaye.com.geometricweather.R$animator: int mtrl_fab_transformation_sheet_collapse_spec +androidx.appcompat.R$bool: int abc_config_actionMenuItemAllCaps +androidx.preference.R$styleable: int AppCompatTheme_actionBarPopupTheme +androidx.preference.R$styleable: int[] AnimatedStateListDrawableCompat +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginBottom +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void run() +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean cancelled +androidx.lifecycle.LifecycleRegistry: void forwardPass(androidx.lifecycle.LifecycleOwner) +androidx.preference.ExpandButton +okio.HashingSink: okio.HashingSink hmacSha256(okio.Sink,okio.ByteString) +com.google.android.material.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$font: int product_sans_medium_italic +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status[] values() +com.google.android.material.appbar.AppBarLayout: android.graphics.drawable.Drawable getStatusBarForeground() +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int expandActivityOverflowButtonDrawable +com.turingtechnologies.materialscrollbar.R$attr: int isLightTheme +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTintMode +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarStyle +wangdaye.com.geometricweather.R$styleable: int[] SlidingItemContainerLayout +androidx.lifecycle.ClassesInfoCache$MethodReference +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.R$layout: int activity_alert +com.jaredrummler.android.colorpicker.R$styleable: int[] BackgroundStyle +wangdaye.com.geometricweather.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +androidx.viewpager2.R$styleable: int GradientColor_android_type +androidx.appcompat.resources.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getMinutelyForecast() +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String insee +androidx.drawerlayout.widget.DrawerLayout: void setDrawerElevation(float) +com.google.android.material.R$styleable: int Constraint_transitionPathRotate +androidx.constraintlayout.widget.R$attr: int colorControlNormal +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_36dp +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: void handleMessage(android.os.Message) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorPrimary +wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_backgroundColorEnd +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_day_abbr +com.google.android.material.R$drawable: int abc_textfield_search_default_mtrl_alpha +androidx.viewpager2.R$drawable: int notification_bg_low +androidx.appcompat.R$styleable: int SearchView_suggestionRowLayout +okhttp3.Headers: okhttp3.Headers of(java.util.Map) +androidx.vectordrawable.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: MfForecastResult$Forecast$Wind() +okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache this$0 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitation() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Small +com.turingtechnologies.materialscrollbar.R$drawable: int abc_popup_background_mtrl_mult +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: int minuteInterval +com.google.android.material.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +com.google.android.material.R$styleable: int MaterialCheckBox_useMaterialThemeColors +com.bumptech.glide.load.HttpException: long serialVersionUID +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getRagweedIndex() +androidx.vectordrawable.R$id: int notification_main_column +androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$attr: int bsb_always_show_bubble_delay +okhttp3.Call$Factory +com.google.gson.stream.JsonWriter: void writeDeferredName() +com.google.android.material.R$dimen: int abc_button_inset_vertical_material +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_contrast +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +retrofit2.Retrofit: java.util.concurrent.Executor callbackExecutor +cyanogenmod.externalviews.ExternalViewProviderService: android.os.IBinder onBind(android.content.Intent) +cyanogenmod.app.ICMTelephonyManager: boolean isDataConnectionSelectedOnSub(int) +com.jaredrummler.android.colorpicker.R$color: int notification_action_color_filter +james.adaptiveicon.R$styleable: int AppCompatTheme_panelBackground +com.google.android.material.button.MaterialButton: void setInsetTop(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setUnit(java.lang.String) +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: long serialVersionUID +okio.RealBufferedSink: okio.BufferedSink write(byte[],int,int) +androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy[] values() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: long EpochSet +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: int UnitType +james.adaptiveicon.R$style: int Theme_AppCompat +com.google.android.material.R$id: int default_activity_button +io.reactivex.Observable: io.reactivex.Observable amb(java.lang.Iterable) +com.google.android.material.R$layout: int abc_list_menu_item_icon +com.turingtechnologies.materialscrollbar.R$attr: int chipStrokeWidth +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PRESENT_AS_THEME +android.didikee.donate.R$styleable: int Toolbar_buttonGravity +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: int retries +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_textAllCaps +wangdaye.com.geometricweather.R$layout: int test_design_radiobutton +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_queryHint +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean getPressure() +android.didikee.donate.R$styleable: int[] LinearLayoutCompat +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status RUNNING +com.google.android.material.R$layout: int mtrl_calendar_day +androidx.constraintlayout.widget.R$drawable: int abc_btn_borderless_material +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onError(java.lang.Throwable) +androidx.appcompat.R$attr: int autoSizeStepGranularity +com.jaredrummler.android.colorpicker.R$layout: int abc_cascading_menu_item_layout +cyanogenmod.app.LiveLockScreenManager: boolean getLiveLockScreenEnabled() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setCoDesc(java.lang.String) +com.google.android.material.R$styleable: int MaterialButton_android_insetLeft +com.xw.repo.bubbleseekbar.R$attr: int editTextColor +wangdaye.com.geometricweather.R$color: int radiobutton_themeable_attribute_color +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: boolean done +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetStart +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver +com.google.android.material.textfield.TextInputLayout: void setPrefixTextAppearance(int) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_seek_step_section +androidx.lifecycle.service.R +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float so2 +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: Hourly(java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitationProbability() +cyanogenmod.providers.CMSettings$DiscreteValueValidator: boolean validate(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: long getTime() +android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_CheckBox +okhttp3.internal.http2.Http2Connection$ReaderRunnable: okhttp3.internal.http2.Http2Reader reader +okhttp3.Response: long sentRequestAtMillis() +cyanogenmod.weather.WeatherInfo$DayForecast +wangdaye.com.geometricweather.R$layout: int dialog_animatable_icon +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstHorizontalBias +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void drain() +androidx.preference.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +james.adaptiveicon.R$drawable: int abc_ic_star_half_black_48dp +com.google.android.material.R$style: int TestStyleWithLineHeight +androidx.drawerlayout.R$id: int tag_unhandled_key_listeners +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_switch +androidx.preference.R$anim: int fragment_fade_enter +com.google.android.material.slider.BaseSlider: int getThumbRadius() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Medium +cyanogenmod.providers.CMSettings$System$1 +wangdaye.com.geometricweather.R$id: int dragEnd +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabAlignmentMode +androidx.appcompat.widget.SwitchCompat: void setTrackTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$anim: int abc_shrink_fade_out_from_bottom +com.jaredrummler.android.colorpicker.ColorPanelView: void setColor(int) +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onError(java.lang.Throwable) +androidx.vectordrawable.R$id: int blocking +androidx.constraintlayout.widget.R$styleable: int ActionBar_popupTheme +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: void setValue(java.util.List) +okhttp3.Response$Builder: Response$Builder(okhttp3.Response) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setBadgeIfNeeded(com.google.android.material.bottomnavigation.BottomNavigationItemView) android.support.v4.app.INotificationSideChannel$Stub: android.support.v4.app.INotificationSideChannel getDefaultImpl() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: AlertEntityDao(org.greenrobot.greendao.internal.DaoConfig) -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -okhttp3.internal.connection.ConnectionSpecSelector: boolean connectionFailed(java.io.IOException) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_percent -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: boolean val$visible -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.PushObserver pushObserver -cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weather.RequestInfo getRequestInfo() -com.google.android.material.R$styleable: int TabLayout_tabIndicatorColor -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense -com.google.android.material.R$styleable: int TextInputLayout_errorContentDescription -android.didikee.donate.R$id: int progress_horizontal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.lang.String getUnit() -wangdaye.com.geometricweather.main.MainActivity: void onSearchBarClicked(android.view.View) -androidx.constraintlayout.widget.R$styleable: int Transition_staggered -androidx.appcompat.R$attr: int buttonStyleSmall -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconPadding -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver -androidx.appcompat.R$id: int topPanel -wangdaye.com.geometricweather.R$attr: int overlay -com.google.android.material.R$styleable: int Chip_android_text -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_title -okhttp3.Cache$CacheResponseBody: okhttp3.MediaType contentType() -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver parent -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_android_layout -com.turingtechnologies.materialscrollbar.R$color: int abc_color_highlight_material -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void addLast(io.reactivex.internal.operators.observable.ObservableReplay$Node) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_toRightOf -wangdaye.com.geometricweather.R$attr: int cardMaxElevation -wangdaye.com.geometricweather.R$dimen: int cardview_compat_inset_shadow -wangdaye.com.geometricweather.R$styleable: int ClockHandView_selectorSize -androidx.preference.R$dimen: int preference_seekbar_value_minWidth -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constrainedHeight -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean isDisposed() -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language RUSSIAN -okhttp3.CacheControl: boolean noCache() -androidx.preference.R$styleable: int CompoundButton_android_button -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -com.github.rahatarmanahmed.cpv.CircularProgressView$1: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +androidx.preference.R$styleable: int FragmentContainerView_android_name +james.adaptiveicon.R$id: int search_bar +wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +androidx.activity.R$dimen: int notification_action_text_size +cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.os.Parcel) +com.google.android.material.R$attr: int materialCalendarHeaderSelection +wangdaye.com.geometricweather.R$styleable: int[] ImageFilterView +io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function) +okhttp3.OkHttpClient: java.net.Proxy proxy +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onDetach() +james.adaptiveicon.R$attr: int tooltipText +com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabTextStyle +cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorButtonNormal +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_ActionBar +androidx.appcompat.widget.ListPopupWindow +androidx.appcompat.R$color: int accent_material_dark +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$attr: int sliderStyle +com.google.android.material.R$styleable: int GradientColor_android_centerX +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox +com.google.android.material.R$style: int TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.R$attr: int textAppearanceCaption +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableLeftCompat +okio.Buffer: boolean rangeEquals(long,okio.ByteString) +cyanogenmod.profiles.ConnectionSettings: int getValue() +androidx.hilt.lifecycle.R$integer: int status_bar_notification_info_maxnum +io.reactivex.Observable: io.reactivex.Single toSortedList(java.util.Comparator,int) +androidx.vectordrawable.R$id: int accessibility_custom_action_11 +androidx.appcompat.widget.AppCompatSpinner$SavedState +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display2 +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_MIGRATE_SETTINGS_FOR_USER +okhttp3.internal.http2.Hpack$Writer: Hpack$Writer(int,boolean,okio.Buffer) +cyanogenmod.app.CMContextConstants: java.lang.String CM_ICON_CACHE_SERVICE +androidx.preference.R$attr: int actionBarSize +okhttp3.ConnectionPool: java.util.Deque connections +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_android_orderingFromXml +androidx.constraintlayout.widget.R$styleable: int[] OnSwipe +wangdaye.com.geometricweather.R$font: int product_sans_thin +androidx.viewpager2.R$dimen: int notification_top_pad_large_text +cyanogenmod.weather.WeatherInfo$DayForecast: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: AccuCurrentResult$Visibility$Imperial() +androidx.lifecycle.extensions.R$dimen: int notification_large_icon_width +cyanogenmod.weather.WeatherInfo: double access$602(cyanogenmod.weather.WeatherInfo,double) +androidx.constraintlayout.widget.R$styleable: int View_paddingEnd +com.xw.repo.bubbleseekbar.R$attr: int panelMenuListWidth +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State RUNNING +wangdaye.com.geometricweather.R$layout: int cpv_preference_circle_large +wangdaye.com.geometricweather.R$id: int activity_preview_icon_recyclerView +androidx.lifecycle.MutableLiveData: void postValue(java.lang.Object) +androidx.preference.R$attr: int enabled +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: boolean isValidIndex() +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_elevation +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean timerRunning +androidx.lifecycle.ClassesInfoCache$MethodReference: int hashCode() +wangdaye.com.geometricweather.R$attr: int cpv_animAutostart +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipBackgroundColor +cyanogenmod.weather.RequestInfo +wangdaye.com.geometricweather.R$dimen: int material_helper_text_font_1_3_padding_horizontal +com.google.android.material.textfield.TextInputLayout: int getBoxStrokeColor() +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_title +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIcon +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: boolean isLeft +com.jaredrummler.android.colorpicker.R$id: int scrollIndicatorDown +androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat +cyanogenmod.app.PartnerInterface: boolean setZenMode(int) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlNormal +cyanogenmod.weather.WeatherLocation$Builder: WeatherLocation$Builder(java.lang.String,java.lang.String) +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +okhttp3.internal.http.HttpHeaders: java.util.Set varyFields(okhttp3.Headers) +com.github.rahatarmanahmed.cpv.CircularProgressView$6 +androidx.appcompat.R$dimen: int abc_dialog_title_divider_material +com.google.android.material.R$id: int accessibility_custom_action_25 +com.google.android.material.R$attr: int actionViewClass +com.google.android.material.chip.Chip: float getCloseIconSize() +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_dotDiameter +james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver,java.lang.Throwable) +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTheme +com.turingtechnologies.materialscrollbar.R$attr: int layout_behavior +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX brandInfo +com.bumptech.glide.R$attr: int fontProviderPackage +com.google.android.material.R$dimen: int mtrl_extended_fab_start_padding_icon +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: void setFrom(java.lang.String) +james.adaptiveicon.R$attr: int multiChoiceItemLayout +androidx.appcompat.R$styleable: int TextAppearance_textAllCaps +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: retrofit2.Call $this_await$inlined +wangdaye.com.geometricweather.R$id: int beginOnFirstDraw +com.turingtechnologies.materialscrollbar.R$id: int search_button +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX) +com.google.android.material.R$style: int Theme_Design_Light_BottomSheetDialog +com.bumptech.glide.GeneratedAppGlideModule +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge +com.google.android.material.R$styleable: int Constraint_android_orientation +com.google.android.material.R$style: int Widget_AppCompat_Button_Small +wangdaye.com.geometricweather.R$string: int about_retrofit +androidx.fragment.R$dimen: int notification_top_pad_large_text +com.google.android.material.R$drawable: int avd_show_password +android.didikee.donate.R$styleable: int MenuItem_android_visible +androidx.preference.R$styleable: int Toolbar_logoDescription +com.google.android.material.R$styleable: int ViewStubCompat_android_id +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType UNKNOWN +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_transitionPathRotate +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance +okhttp3.Cache$Entry: okhttp3.Response response(okhttp3.internal.cache.DiskLruCache$Snapshot) +wangdaye.com.geometricweather.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onError(java.lang.Throwable) +androidx.preference.R$styleable: int ActionMenuItemView_android_minWidth +retrofit2.Retrofit$Builder: java.util.List converterFactories() +com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_radio +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void dispose() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Medium +com.google.android.material.internal.VisibilityAwareImageButton: int getUserSetVisibility() +com.google.android.material.R$styleable: int Badge_backgroundColor +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_90 +androidx.cardview.R$styleable: int CardView_cardCornerRadius +cyanogenmod.hardware.CMHardwareManager: boolean isSunlightEnhancementSelfManaged() +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void dispose() +wangdaye.com.geometricweather.R$drawable: int ic_alipay +okio.ForwardingSource +okhttp3.internal.platform.ConscryptPlatform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) +wangdaye.com.geometricweather.R$string: int key_service_provider +james.adaptiveicon.R$styleable: int AppCompatTheme_android_windowAnimationStyle +wangdaye.com.geometricweather.R$animator: int weather_rain_2 +wangdaye.com.geometricweather.R$drawable: int notif_temp_43 +cyanogenmod.weather.CMWeatherManager$2: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) +androidx.drawerlayout.R$drawable: int notification_icon_background +com.google.android.material.R$color: int material_slider_active_track_color +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.functions.Function mapper +com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getIndeterminateDrawable() +androidx.appcompat.app.AppCompatActivity +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_entries +androidx.vectordrawable.R$dimen: int notification_action_text_size +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_seekbar +androidx.appcompat.R$styleable: int MenuGroup_android_visible +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_corner_radius_small +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_ttcIndex +com.jaredrummler.android.colorpicker.R$styleable: int Preference_layout +okhttp3.Dispatcher: void finished(java.util.Deque,java.lang.Object) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$layout: int container_main_aqi +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: ObservableDoFinally$DoFinallyObserver(io.reactivex.Observer,io.reactivex.functions.Action) +wangdaye.com.geometricweather.R$string: int feedback_click_to_get_more +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken STRING +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenManager sInstance +com.turingtechnologies.materialscrollbar.R$attr: int contentPadding +com.google.android.material.R$attr: int maxLines +androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet,int,int) +okhttp3.TlsVersion +cyanogenmod.externalviews.KeyguardExternalView: void onAttachedToWindow() +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationVoice(android.content.Context,float) +android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_Layout_layout_scrollFlags +com.xw.repo.bubbleseekbar.R$attr: int listLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String weatherStart +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getCo() +androidx.appcompat.resources.R$id: int accessibility_custom_action_1 +com.turingtechnologies.materialscrollbar.R$attr: int toolbarId +com.google.gson.stream.JsonReader: void skipUnquotedValue() +androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveShape +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void drainLoop() +com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_pressed +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: java.lang.String getProbabilityText(android.content.Context,float) +okio.Okio$1: void flush() +com.xw.repo.bubbleseekbar.R$layout: int abc_screen_simple +com.google.android.material.R$attr: int maxVelocity +okio.ForwardingSource: okio.Source delegate +james.adaptiveicon.R$color: int abc_btn_colored_borderless_text_material +com.turingtechnologies.materialscrollbar.R$attr: int alertDialogCenterButtons +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_1 +okhttp3.internal.http.RetryAndFollowUpInterceptor: void cancel() +androidx.preference.MultiSelectListPreference: MultiSelectListPreference(android.content.Context,android.util.AttributeSet) +com.bumptech.glide.R$styleable: int GradientColor_android_endColor +androidx.appcompat.R$style: int Base_V28_Theme_AppCompat +androidx.lifecycle.SavedStateHandleController$1: androidx.savedstate.SavedStateRegistry val$registry +com.google.android.material.timepicker.ClockHandView: ClockHandView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$layout: int mtrl_calendar_year +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String street_number +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationZ +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTimeStamp(long) +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getRain() +com.google.android.material.R$dimen: int abc_edit_text_inset_horizontal_material +com.turingtechnologies.materialscrollbar.R$dimen: int abc_alert_dialog_button_bar_height +androidx.preference.R$layout: int abc_screen_content_include +wangdaye.com.geometricweather.R$styleable: int OnSwipe_maxVelocity +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast build() +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemPaddingRight +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_thumb +androidx.loader.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.R$color: int mtrl_chip_close_icon_tint +okhttp3.MultipartBody: okhttp3.MediaType DIGEST +com.jaredrummler.android.colorpicker.R$attr: int actionLayout +com.jaredrummler.android.colorpicker.R$attr: int actionModeSelectAllDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: int UnitType +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: BaseTransientBottomBar$SnackbarBaseLayout(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$attr: int goIcon +com.google.android.material.R$attr: int altSrc +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Subhead +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +cyanogenmod.hardware.CMHardwareManager: boolean checkService() +okhttp3.OkHttpClient$Builder: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner +androidx.constraintlayout.widget.R$dimen: int abc_text_size_body_1_material +wangdaye.com.geometricweather.R$styleable: int Chip_android_text +androidx.appcompat.widget.ActionBarOverlayLayout: void setIcon(android.graphics.drawable.Drawable) +james.adaptiveicon.R$attr: int backgroundStacked +wangdaye.com.geometricweather.R$attr: int bottomNavigationStyle +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_entryValues +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: BaiduIPLocationResult$ContentBean() +wangdaye.com.geometricweather.R$attr: int buttonTintMode +com.google.android.material.R$styleable: int FlowLayout_lineSpacing +com.google.android.material.R$color: int background_floating_material_dark +cyanogenmod.app.Profile: void setBrightness(cyanogenmod.profiles.BrightnessSettings) +androidx.appcompat.R$styleable: int MenuItem_android_title +androidx.preference.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +androidx.recyclerview.widget.RecyclerView: void setClipToPadding(boolean) +com.google.gson.FieldNamingPolicy$6: FieldNamingPolicy$6(java.lang.String,int) +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: io.reactivex.Observer child +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme_Dark +com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setCircularRevealScrimColor(int) wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeTextType -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorError -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String formattedId -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property HoursOfSun -androidx.customview.R$id: int chronometer -wangdaye.com.geometricweather.R$styleable: int[] MaterialCalendar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setUnit(java.lang.String) -androidx.constraintlayout.widget.R$id: int bottom -android.didikee.donate.R$styleable: int AppCompatTheme_buttonStyleSmall -retrofit2.http.QueryName -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endY -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_android_thumb -okhttp3.internal.http2.Http2Connection$7 -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setRequestType(cyanogenmod.themes.ThemeChangeRequest$RequestType) -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void replayFinal() -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_Main -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetEnd -wangdaye.com.geometricweather.R$drawable: int notif_temp_103 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsRainOrSnow(int) -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: io.reactivex.Scheduler$Worker worker -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedHeightMajor -com.turingtechnologies.materialscrollbar.R$attr: int layout_scrollFlags -wangdaye.com.geometricweather.R$styleable: int KeyCycle_transitionEasing -com.google.android.material.slider.BaseSlider: int getTrackSidePadding() -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isSnow() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_barColor -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_subMenuArrow -androidx.coordinatorlayout.R$id: int accessibility_custom_action_1 -io.reactivex.exceptions.MissingBackpressureException: long serialVersionUID -androidx.appcompat.resources.R$drawable: int notification_bg_normal_pressed -com.google.android.material.R$attr: int singleSelection -wangdaye.com.geometricweather.R$string: int exposed_dropdown_menu_content_description -okhttp3.MultipartBody: long contentLength() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap -okhttp3.logging.LoggingEventListener: void responseHeadersStart(okhttp3.Call) -androidx.fragment.app.FragmentActivity -androidx.recyclerview.R$id: int text2 -androidx.swiperefreshlayout.R$id: int actions -retrofit2.Utils: void checkNotPrimitive(java.lang.reflect.Type) -androidx.constraintlayout.widget.R$dimen: int abc_disabled_alpha_material_light -com.jaredrummler.android.colorpicker.R$attr: int cpv_allowCustom -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_switchStyle -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_measureWithLargestChild -cyanogenmod.externalviews.KeyguardExternalView: void binderDied() -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_handleOffColor -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setCurrent(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean) -wangdaye.com.geometricweather.R$id: int chip -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$id: int dragStart -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String sourceId -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onNext(java.lang.Object) -okhttp3.EventListener: void connectStart(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_curveFit -okhttp3.Response$Builder: okhttp3.Response$Builder request(okhttp3.Request) -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: UnicastSubject$UnicastQueueDisposable(io.reactivex.subjects.UnicastSubject) -okio.RealBufferedSource: boolean exhausted() -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_searchIcon -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -android.didikee.donate.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date updateDate -androidx.preference.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -com.google.android.material.chip.ChipGroup: void setSingleLine(int) -wangdaye.com.geometricweather.R$style: int Platform_V21_AppCompat -com.google.android.material.navigation.NavigationView: void setItemIconPaddingResource(int) -androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.coordinatorlayout.widget.CoordinatorLayout: void setVisibility(int) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierMargin -androidx.drawerlayout.R$attr: int font -androidx.lifecycle.ComputableLiveData: androidx.lifecycle.LiveData getLiveData() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_ACTIVE -com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearanceInactive -james.adaptiveicon.R$color: int foreground_material_dark -com.google.android.material.R$layout: int design_layout_tab_icon -wangdaye.com.geometricweather.R$attr: int shouldDisableView -androidx.preference.R$attr: int checkedTextViewStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: AccuDailyResult$DailyForecasts$Day$Wind$Speed() -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline2 -cyanogenmod.profiles.BrightnessSettings: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -wangdaye.com.geometricweather.common.basic.models.weather.Alert: Alert(long,java.util.Date,long,java.lang.String,java.lang.String,java.lang.String,int,int) -androidx.transition.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.common.ui.transitions.RoundCornerTransition: RoundCornerTransition(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: io.reactivex.Observer downstream -okio.RealBufferedSource: okio.Buffer buffer() -androidx.coordinatorlayout.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.R$dimen: int notification_main_column_padding_top -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMark -androidx.preference.R$styleable: int[] SearchView -androidx.swiperefreshlayout.R$styleable: int[] GradientColor -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase moonPhase -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isPrecipitation() -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason INITIALIZE -okhttp3.internal.http2.Http2: byte TYPE_DATA -com.google.android.material.R$anim: int abc_fade_in -okhttp3.OkHttpClient$Builder: okhttp3.CookieJar cookieJar -com.google.android.material.slider.Slider: float getThumbElevation() -com.jaredrummler.android.colorpicker.R$attr: int alertDialogTheme -okhttp3.internal.http2.Http2Connection$1: okhttp3.internal.http2.ErrorCode val$errorCode -androidx.drawerlayout.R$dimen: int notification_small_icon_background_padding -james.adaptiveicon.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -wangdaye.com.geometricweather.R$layout: int abc_screen_simple -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: io.reactivex.Observer observer -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display3 -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setPathSegment(int,java.lang.String) -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtendMotionSpecResource(int) -androidx.preference.R$dimen: int preference_seekbar_padding_horizontal -androidx.loader.R$dimen: int notification_top_pad -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner -androidx.preference.R$styleable: int AppCompatTheme_selectableItemBackground -com.google.android.material.R$styleable: int MenuView_preserveIconSpacing -wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_xml -com.xw.repo.bubbleseekbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -okhttp3.Route: boolean requiresTunnel() -androidx.hilt.work.R$bool: int enable_system_foreground_service_default -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long serialVersionUID -cyanogenmod.externalviews.ExternalView: android.content.ServiceConnection mServiceConnection -wangdaye.com.geometricweather.R$styleable: int[] KeyPosition -wangdaye.com.geometricweather.R$attr: int percentHeight -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_padding_left -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: long serialVersionUID -com.jaredrummler.android.colorpicker.R$dimen: int cpv_column_width -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelMenuListWidth -androidx.transition.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -com.google.android.material.R$attr: int errorEnabled -cyanogenmod.profiles.RingModeSettings$1: cyanogenmod.profiles.RingModeSettings createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_chainStyle -android.didikee.donate.R$dimen: int highlight_alpha_material_colored -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_background +okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot next() +io.reactivex.Observable: io.reactivex.Observable concatMap(io.reactivex.functions.Function,int) +io.reactivex.disposables.ReferenceDisposable: void dispose() +com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderVisible(boolean) +androidx.preference.R$drawable: int notify_panel_notification_icon_bg +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColor +cyanogenmod.weather.CMWeatherManager$1 +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean done +james.adaptiveicon.R$styleable: int MenuItem_showAsAction +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationZ +androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.disposables.Disposable upstream +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int LOW_NOTIFICATION_STATE +cyanogenmod.weatherservice.ServiceRequestResult: java.lang.String mKey +james.adaptiveicon.R$string: int abc_searchview_description_voice +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_subtitleTextStyle +okhttp3.internal.http1.Http1Codec: void detachTimeout(okio.ForwardingTimeout) +androidx.constraintlayout.widget.R$attr: int flow_verticalAlign +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_FAST_AVG +okhttp3.internal.tls.OkHostnameVerifier: java.util.List allSubjectAltNames(java.security.cert.X509Certificate) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_seekBarPreferenceStyle +androidx.appcompat.widget.Toolbar$SavedState +wangdaye.com.geometricweather.R$integer: int show_password_duration +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarSplitStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum() +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String cityId com.jaredrummler.android.colorpicker.R$layout: int notification_template_part_time -androidx.constraintlayout.widget.R$attr: int listChoiceIndicatorMultipleAnimated -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_2 -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Hint -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.Class clientProviderClass -android.didikee.donate.R$styleable: int MenuItem_android_menuCategory -com.turingtechnologies.materialscrollbar.R$id: int async -com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$id: int tag_accessibility_pane_title -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$attr: int contentInsetStart -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: void dispose() -androidx.constraintlayout.widget.R$layout: int select_dialog_multichoice_material -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean active -cyanogenmod.weather.RequestInfo: java.lang.String mKey -cyanogenmod.providers.CMSettings$Secure: java.lang.String PRIVACY_GUARD_DEFAULT -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchTextAppearance -androidx.core.app.NotificationCompatSideChannelService -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setNavBar(java.lang.String) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar -okhttp3.internal.cache.CacheStrategy: okhttp3.Response cacheResponse -com.google.android.material.R$styleable: int ConstraintSet_android_layout_height -okhttp3.Dns -com.google.android.material.R$attr: int tooltipText -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getStrokeColorStateList() -okhttp3.Cookie$Builder: boolean httpOnly -androidx.lifecycle.LiveData$ObserverWrapper: int mLastVersion -james.adaptiveicon.R$styleable: int MenuGroup_android_menuCategory -com.google.android.material.R$styleable: int Chip_android_maxWidth -androidx.appcompat.resources.R$drawable: R$drawable() -com.jaredrummler.android.colorpicker.R$styleable: int[] MenuItem -androidx.core.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_toolbarId -androidx.viewpager.R$style: R$style() -james.adaptiveicon.R$attr: int displayOptions -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status COMPLETE -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: AccuCurrentResult$DewPoint() -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_item_icon_padding -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: int status -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionBar -okhttp3.internal.platform.Platform: boolean isCleartextTrafficPermitted(java.lang.String) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicInteger windows -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastHorizontalBias -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_l -androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_android_color -okhttp3.internal.cache.DiskLruCache$3: java.lang.Object next() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: AccuDailyResult() +com.jaredrummler.android.colorpicker.R$attr: int colorPrimaryDark +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorColor(int) +wangdaye.com.geometricweather.R$styleable: int ActionMode_height +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language FRENCH +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setDayIndicatorRotation(float) +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme_Light +retrofit2.CallAdapter$Factory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +androidx.dynamicanimation.R$id: int notification_main_column_container +okhttp3.Callback +com.google.android.material.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +androidx.preference.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: okhttp3.internal.http2.Http2Stream val$newStream +com.xw.repo.bubbleseekbar.R$attr: int hideOnContentScroll +com.google.android.material.R$attr: int contentInsetEndWithActions +androidx.appcompat.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +com.google.android.material.R$styleable: int FloatingActionButton_fabCustomSize +com.xw.repo.bubbleseekbar.R$dimen: int abc_disabled_alpha_material_dark +cyanogenmod.providers.CMSettings$Global: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) +io.reactivex.Observable: io.reactivex.Single single(java.lang.Object) +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TIMESTAMP +com.google.android.material.R$xml: int standalone_badge_gravity_bottom_end +com.google.android.material.R$styleable: int KeyCycle_transitionPathRotate +wangdaye.com.geometricweather.R$id: int notification_big_temp_2 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: void setUnit(java.lang.String) +com.google.android.material.R$color: int mtrl_popupmenu_overlay_color +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.lang.Object NEXT_WINDOW +okhttp3.internal.Internal +androidx.appcompat.widget.AppCompatTextView: android.view.textclassifier.TextClassifier getTextClassifier() +org.greenrobot.greendao.database.DatabaseOpenHelper: android.content.Context context +androidx.appcompat.R$attr: int textLocale +androidx.preference.R$layout: int abc_action_menu_layout +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: java.lang.Float temperature +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType QueryUnique +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String FONT_URI +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: java.lang.String Unit +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMargin +androidx.preference.R$id: int icon_group +androidx.preference.R$styleable: int DrawerArrowToggle_gapBetweenBars +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_levelValue +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setPosition(int) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_fontVariationSettings +androidx.preference.R$attr: int collapseContentDescription +wangdaye.com.geometricweather.R$styleable: int[] FloatingActionButton +wangdaye.com.geometricweather.R$dimen: int mtrl_card_checked_icon_margin +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView_DropDown +cyanogenmod.app.CMContextConstants$Features: CMContextConstants$Features() +com.google.android.material.R$styleable: int MaterialCalendarItem_itemShapeAppearance +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_73 +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_navigationMode +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeWindSpeed +androidx.recyclerview.R$attr: R$attr() +okhttp3.internal.http1.Http1Codec$FixedLengthSource: void close() +android.didikee.donate.R$attr: int thumbTextPadding +wangdaye.com.geometricweather.R$drawable: int tooltip_frame_light +androidx.appcompat.widget.AppCompatSpinner: android.content.Context getPopupContext() +wangdaye.com.geometricweather.R$id: int textSpacerNoButtons +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX() +androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.viewpager2.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource access$000(wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource) +okio.HashingSink: HashingSink(okio.Sink,okio.ByteString,java.lang.String) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Bridge +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean getWeather() +androidx.appcompat.widget.Toolbar: void setNavigationIcon(int) +okio.Buffer: okio.Buffer writeLongLe(long) +cyanogenmod.providers.CMSettings$Secure: java.lang.String[] LEGACY_SECURE_SETTINGS +androidx.constraintlayout.widget.R$attr: int flow_lastHorizontalBias +okhttp3.internal.cache2.Relay: okio.ByteString PREFIX_DIRTY +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: int capacityHint +androidx.appcompat.R$styleable: int TextAppearance_android_shadowColor +androidx.appcompat.R$style: int Base_Theme_AppCompat +wangdaye.com.geometricweather.R$string: int transition_activity_search_txt +androidx.swiperefreshlayout.widget.SwipeRefreshLayout$SavedState +com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyleIndicator +com.google.android.material.R$attr: int track +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: MfWarningsResult$PhenomenonMaxColor() +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String cityId +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeBackground +androidx.core.R$style: int Widget_Compat_NotificationActionText +androidx.lifecycle.MediatorLiveData$Source +cyanogenmod.hardware.CMHardwareManager: int[] getDisplayGammaCalibrationArray(int) +com.jaredrummler.android.colorpicker.R$style: int Preference_PreferenceScreen_Material +james.adaptiveicon.R$id: int parentPanel +com.turingtechnologies.materialscrollbar.R$attr: int chipSpacing +androidx.preference.R$attr: int buttonBarNegativeButtonStyle +androidx.hilt.R$dimen: int notification_large_icon_width +androidx.preference.R$id: int accessibility_custom_action_31 +androidx.appcompat.widget.AppCompatRadioButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar +androidx.preference.R$attr: int preferenceCategoryTitleTextAppearance +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarButtonStyle +androidx.preference.R$styleable: int[] TextAppearance +com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +com.google.gson.FieldNamingPolicy$3 +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable publish() +androidx.constraintlayout.widget.R$drawable: int abc_list_focused_holo +wangdaye.com.geometricweather.R$string: int abc_shareactionprovider_share_with +retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler parseParameterAnnotation(int,java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation) +androidx.appcompat.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer gust +retrofit2.RequestFactory$Builder: java.lang.String relativeUrl +okio.Buffer: boolean exhausted() +com.google.android.material.R$drawable: int abc_textfield_search_activated_mtrl_alpha +cyanogenmod.app.StatusBarPanelCustomTile: long getPostTime() +com.turingtechnologies.materialscrollbar.R$styleable: int[] SwitchCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial +com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_icon_width +cyanogenmod.media.MediaRecorder: java.lang.String ACTION_HOTWORD_INPUT_CHANGED +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String moldDescription +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Body2 +androidx.preference.PreferenceGroup: PreferenceGroup(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf +com.google.android.material.R$color: int design_dark_default_color_on_surface +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_shapeAppearance +wangdaye.com.geometricweather.R$id: int tag_unhandled_key_event_manager +androidx.loader.R$drawable: int notification_template_icon_bg +okhttp3.internal.connection.ConnectInterceptor: ConnectInterceptor(okhttp3.OkHttpClient) +com.jaredrummler.android.colorpicker.R$attr: int cpv_showOldColor +com.google.android.material.R$attr: int alpha +androidx.hilt.R$drawable +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation: java.lang.Float cumul24H +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: long serialVersionUID +cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.CustomTile customTile +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List ziwaixian +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getRainPrecipitationProbability() +com.jaredrummler.android.colorpicker.R$attr: int progressBarPadding +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_negativeButtonText +com.google.android.material.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$styleable: int SearchView_android_maxWidth +org.greenrobot.greendao.AbstractDaoSession: void refresh(java.lang.Object) +com.google.android.material.textfield.TextInputLayout: void setHelperText(java.lang.CharSequence) +okhttp3.internal.http2.Http2Stream$FramingSink: boolean finished +okhttp3.internal.http.HttpCodec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) +androidx.work.OverwritingInputMerger +io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.Observer) +androidx.hilt.lifecycle.R$id: int visible_removing_fragment_view_tag +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed Speed +androidx.appcompat.widget.ActionBarOverlayLayout: int getNestedScrollAxes() +okhttp3.internal.platform.AndroidPlatform$CloseGuard: boolean warnIfOpen(java.lang.Object) +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter +androidx.constraintlayout.widget.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$id: int regular +com.google.android.material.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +retrofit2.OkHttpCall: retrofit2.Call clone() +com.google.android.material.R$dimen: int mtrl_calendar_maximum_default_fullscreen_minor_axis +androidx.swiperefreshlayout.R$attr +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitation(java.lang.Float) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean() +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_8 +com.bumptech.glide.integration.okhttp.R$id: int line3 +cyanogenmod.providers.CMSettings$System: java.lang.String BACK_WAKE_SCREEN +wangdaye.com.geometricweather.R$animator: int weather_sleet_3 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String brandId +wangdaye.com.geometricweather.R$layout: int widget_multi_city_horizontal +androidx.appcompat.R$string: int abc_menu_function_shortcut_label +com.google.android.material.snackbar.SnackbarContentLayout +android.didikee.donate.R$id: int text +wangdaye.com.geometricweather.R$animator: int weather_cloudy_2 +com.google.android.material.R$styleable: int NavigationView_itemMaxLines +androidx.constraintlayout.widget.R$attr: int color +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingStart +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleDrawable +cyanogenmod.themes.IThemeProcessingListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.util.List _queryWeatherEntity_AlertEntityList(java.lang.String,java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int state_liftable +android.didikee.donate.R$styleable: int[] ViewStubCompat +androidx.preference.internal.PreferenceImageView +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long readKey(android.database.Cursor,int) +android.didikee.donate.R$dimen: int notification_main_column_padding_top +okhttp3.WebSocket: long queueSize() +com.jaredrummler.android.colorpicker.R$styleable: int[] ListPopupWindow +com.google.android.material.card.MaterialCardView: void setCardElevation(float) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void collapseNotificationPanel() +wangdaye.com.geometricweather.R$style: int Platform_V21_AppCompat +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionMenuTextColor +wangdaye.com.geometricweather.R$string: int tag_uv +com.google.android.material.R$dimen: int abc_text_size_display_4_material +okio.Buffer: long completeSegmentByteCount() +androidx.appcompat.R$style: int Platform_V21_AppCompat_Light +wangdaye.com.geometricweather.R$string: int sp_widget_text_setting +androidx.recyclerview.R$layout: int notification_action +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataTitle +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: WindDegree(float,boolean) +com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +com.google.android.material.R$style: int Widget_AppCompat_Light_ActivityChooserView +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean gate -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onComplete() -com.google.android.material.R$styleable: int AppCompatTheme_alertDialogTheme -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelMenuListWidth -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRealFeelTemperature(java.lang.Integer) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.MinutelyEntity) -androidx.constraintlayout.widget.R$attr: int fontProviderQuery -com.google.android.material.R$styleable: int ActionBar_popupTheme -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupWindow -okio.SegmentedByteString: boolean equals(java.lang.Object) -com.google.android.material.R$style: int Theme_AppCompat_NoActionBar -cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemTitle(java.lang.String) -cyanogenmod.app.CustomTile$1 -androidx.appcompat.R$styleable: int ActionBar_indeterminateProgressStyle -androidx.appcompat.resources.R$id: int action_divider -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -okhttp3.Dispatcher: void cancelAll() -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: MfCurrentResult$Observation$Weather() -androidx.hilt.work.R$styleable: int FontFamilyFont_android_ttcIndex -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_dependency -cyanogenmod.themes.ThemeChangeRequest$1: cyanogenmod.themes.ThemeChangeRequest createFromParcel(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_positiveButtonText -james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontWeight -okhttp3.internal.http2.Http2Stream$FramingSource: boolean $assertionsDisabled -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.R$attr: int shapeAppearanceOverlay -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_phaseView -androidx.preference.R$styleable: int SwitchCompat_thumbTintMode -com.turingtechnologies.materialscrollbar.R$attr: int icon -com.jaredrummler.android.colorpicker.R$attr: int editTextBackground -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setPubTime(java.lang.String) -okio.ByteString: byte getByte(int) -cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri COMPONENTS_URI -androidx.cardview.R$styleable: int CardView_contentPadding -okhttp3.Cache: okhttp3.Response get(okhttp3.Request) -okhttp3.HttpUrl: java.lang.String fragment -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_maxWidth -cyanogenmod.providers.CMSettings$Global: android.net.Uri CONTENT_URI -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_COLOR -android.didikee.donate.R$styleable: int SearchView_submitBackground -wangdaye.com.geometricweather.R$id: int notification_multi_city_1 -cyanogenmod.weatherservice.WeatherProviderService$1: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) -com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_selected -okhttp3.internal.ws.WebSocketWriter: java.util.Random random -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX -com.xw.repo.bubbleseekbar.R$attr: int actionBarTheme -wangdaye.com.geometricweather.R$styleable: int[] AppBarLayout_Layout -com.google.android.material.slider.Slider: void setStepSize(float) -com.jaredrummler.android.colorpicker.R$styleable: int[] CompoundButton -androidx.preference.R$color: int material_blue_grey_900 -okio.Buffer: java.io.InputStream inputStream() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: MfForecastResult$ProbabilityForecast() -androidx.lifecycle.extensions.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: AccuCurrentResult$WetBulbTemperature$Metric() -wangdaye.com.geometricweather.R$font: int product_sans_black_italic -wangdaye.com.geometricweather.R$styleable: int[] Tooltip -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCopyDrawable -com.google.android.material.R$dimen: int mtrl_tooltip_minWidth -okhttp3.Call: okhttp3.Response execute() -wangdaye.com.geometricweather.R$attr: int buttonCompat -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -okhttp3.internal.cache.CacheStrategy$Factory: boolean hasConditions(okhttp3.Request) -org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Iterable) -okhttp3.logging.HttpLoggingInterceptor: void logHeader(okhttp3.Headers,int) -okio.Segment: okio.Segment sharedCopy() -io.reactivex.internal.subscribers.StrictSubscriber: void cancel() -androidx.preference.R$styleable: int ActionBar_backgroundSplit -io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicLong missedRequested -com.google.android.material.R$styleable: int AppBarLayout_statusBarForeground -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean delayErrors -com.google.android.material.R$attr: int maxCharacterCount -androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_android_alpha -cyanogenmod.externalviews.ExternalView$1: ExternalView$1(cyanogenmod.externalviews.ExternalView) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow6h -wangdaye.com.geometricweather.R$drawable: int ic_location -com.google.android.material.R$styleable: int Toolbar_contentInsetEndWithActions -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarStyle -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean isEmpty() -wangdaye.com.geometricweather.main.dialogs.HourlyWeatherDialog: HourlyWeatherDialog() -com.google.android.material.transformation.ExpandableBehavior: ExpandableBehavior(android.content.Context,android.util.AttributeSet) -androidx.drawerlayout.R$drawable: int notify_panel_notification_icon_bg -androidx.vectordrawable.R$id: int icon_group -android.didikee.donate.R$styleable: int SwitchCompat_track -androidx.lifecycle.extensions.R$id: int forever -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setApparentTemperature(java.lang.Integer) -james.adaptiveicon.R$dimen: int abc_control_padding_material -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_EditText -james.adaptiveicon.R$styleable: int ActionBar_subtitle -androidx.appcompat.R$attr: int navigationContentDescription -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetRight -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void setResource(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void replay() -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -james.adaptiveicon.R$style: int Base_Widget_AppCompat_SearchView -android.didikee.donate.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -com.jaredrummler.android.colorpicker.R$attr: int suggestionRowLayout -androidx.constraintlayout.widget.Barrier: void setMargin(int) -androidx.constraintlayout.widget.R$dimen: int abc_dialog_min_width_major -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_PICKED_UUID -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.CMWeatherManager getInstance(android.content.Context) -androidx.coordinatorlayout.R$string: int status_bar_notification_info_overflow -james.adaptiveicon.R$dimen: int highlight_alpha_material_dark +okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date lastModified +cyanogenmod.themes.IThemeService$Stub$Proxy: boolean isThemeApplying() +cyanogenmod.externalviews.ExternalView: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) +com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog_Alert +androidx.hilt.work.R$drawable: int notification_bg_normal_pressed +androidx.constraintlayout.widget.R$color: int bright_foreground_disabled_material_light +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index +james.adaptiveicon.R$dimen: int abc_text_size_caption_material +androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +wangdaye.com.geometricweather.R$string: int phase_waxing_gibbous +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity +androidx.hilt.R$color: int notification_icon_bg_color +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_buttonIconDimen +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_arrow_drop_right_black_24dp +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder pingInterval(long,java.util.concurrent.TimeUnit) +io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable,io.reactivex.functions.Function) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarStyle +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onLockscreenSlideOffsetChanged +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onComplete() +cyanogenmod.app.ThemeVersion$ComponentVersion: int id +android.didikee.donate.R$attr: int icon +wangdaye.com.geometricweather.R$string: int settings_title_ui_style +okhttp3.internal.ws.RealWebSocket: boolean close(int,java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: int status +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_NoActionBar +com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context) +okhttp3.internal.ws.WebSocketProtocol: java.lang.String closeCodeExceptionMessage(int) +okio.AsyncTimeout$1: AsyncTimeout$1(okio.AsyncTimeout,okio.Sink) +wangdaye.com.geometricweather.R$color: int darkPrimary_5 +io.reactivex.Observable: io.reactivex.Observable window(long,long) +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findJvmPlatform() +androidx.appcompat.R$attr: int iconTint +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void dispose() +androidx.hilt.lifecycle.R$id: int action_container +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintDimensionRatio +androidx.loader.R$style: int TextAppearance_Compat_Notification +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean isDisposed() +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder callbackExecutor(java.util.concurrent.Executor) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.common.ui.widgets.DonateImageView: DonateImageView(android.content.Context,android.util.AttributeSet) +com.bumptech.glide.R$drawable: int notification_bg +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_setLiveLockScreenEnabled +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder addNetworkInterceptor(okhttp3.Interceptor) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.View onCreatePanelView(int) +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter endObject() +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.functions.Function mapper +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle NATIVE +android.didikee.donate.R$style: int Base_Theme_AppCompat_DialogWhenLarge +com.google.android.material.R$style: int Base_Theme_AppCompat_DialogWhenLarge +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,io.reactivex.functions.Function,java.util.concurrent.Callable) +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat_Dark +androidx.recyclerview.R$color: int notification_action_color_filter +android.didikee.donate.R$style: int Theme_AppCompat_DayNight +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.preference.R$styleable: int Toolbar_titleMarginStart +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: MfForecastResult$Forecast$Weather() +com.google.android.material.R$styleable: int Constraint_layout_constraintRight_toLeftOf +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_visible +okhttp3.Headers$Builder: okhttp3.Headers$Builder addUnsafeNonAscii(java.lang.String,java.lang.String) +androidx.preference.R$id: int dialog_button +okhttp3.internal.http2.Http2Connection: long degradedPongDeadlineNs +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitationProbability +wangdaye.com.geometricweather.R$id: int dialog_time_setter_cancel +okio.Buffer$UnsafeCursor: long expandBuffer(int) +okhttp3.internal.http.HttpHeaders: int parseSeconds(java.lang.String,int) +com.github.rahatarmanahmed.cpv.R$attr: int cpv_progress +wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog_title +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.lang.Object poll() +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleTitle +com.google.android.material.R$styleable: int[] MaterialTextAppearance +androidx.recyclerview.R$id: int right_icon +cyanogenmod.providers.CMSettings$System: android.net.Uri getUriFor(java.lang.String) +androidx.appcompat.R$attr: int actionBarDivider +com.google.android.material.R$styleable: int ConstraintSet_flow_verticalGap +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_2 +com.turingtechnologies.materialscrollbar.R$styleable: int[] StateListDrawable +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_body_1_material +wangdaye.com.geometricweather.R$id: int widget_clock_day_subtitle +okhttp3.internal.http2.Http2Connection: void close() +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void remove() +android.didikee.donate.R$styleable: int AppCompatTextView_drawableStartCompat +androidx.viewpager.widget.ViewPager: ViewPager(android.content.Context,android.util.AttributeSet) +cyanogenmod.externalviews.KeyguardExternalView: android.graphics.Point mDisplaySize +james.adaptiveicon.R$style: int Widget_AppCompat_Button +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_toolbar +cyanogenmod.app.ICMStatusBarManager$Stub: cyanogenmod.app.ICMStatusBarManager asInterface(android.os.IBinder) +okhttp3.internal.http2.Http2Stream$FramingSink: okio.Timeout timeout() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ButtonBar +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction Direction +com.google.android.material.R$id: int mtrl_picker_header_toggle +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemIconTint +androidx.transition.ChangeBounds$7 +com.google.android.material.R$color: int primary_material_dark +androidx.coordinatorlayout.R$dimen: int notification_action_icon_size +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnClickUri(android.net.Uri) +androidx.hilt.work.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.R$drawable: int ic_toolbar_close +androidx.preference.R$color: int abc_search_url_text_pressed +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType[] values() +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder eventListenerFactory(okhttp3.EventListener$Factory) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA +android.didikee.donate.R$attr: int ratingBarStyle +androidx.preference.R$id: int line3 +com.turingtechnologies.materialscrollbar.R$attr: int closeIconEndPadding +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BLUETOOTH_ICON +james.adaptiveicon.R$drawable: int abc_btn_check_to_on_mtrl_000 +com.jaredrummler.android.colorpicker.R$id: int split_action_bar +androidx.activity.R$drawable: int notification_template_icon_bg +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_focused_z +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onScreenTurnedOff() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain6h +com.jaredrummler.android.colorpicker.R$attr: int commitIcon +com.turingtechnologies.materialscrollbar.R$attr: int singleLine +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_id +wangdaye.com.geometricweather.R$color: int switch_thumb_normal_material_dark +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xss +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogTheme +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconEnabled +wangdaye.com.geometricweather.remoteviews.config.Hilt_DailyTrendWidgetConfigActivity +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer aqiIndex +androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +james.adaptiveicon.R$attr: int actionBarSize +com.jaredrummler.android.colorpicker.R$dimen: int disabled_alpha_material_light +okhttp3.internal.http.RealInterceptorChain: int index +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +wangdaye.com.geometricweather.background.receiver.widget.WidgetMultiCityProvider: WidgetMultiCityProvider() +wangdaye.com.geometricweather.R$array: int air_quality_unit_voices +androidx.core.widget.NestedScrollView: float getVerticalScrollFactorCompat() +okhttp3.internal.tls.BasicCertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) +androidx.preference.R$color: int abc_primary_text_material_light +android.didikee.donate.R$style: int Platform_V21_AppCompat +androidx.appcompat.R$attr: int actionBarWidgetTheme +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void execute() +androidx.core.R$id: int right_icon +wangdaye.com.geometricweather.R$string: int real_feel_shade_temperature +androidx.preference.R$attr: int dialogMessage +wangdaye.com.geometricweather.R$attr: int labelBehavior +okio.RealBufferedSource: byte[] readByteArray() +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_disabled_holo_light +com.google.android.material.R$dimen: int abc_alert_dialog_button_bar_height +wangdaye.com.geometricweather.R$styleable: int OnSwipe_limitBoundsTo +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_anchor +androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerY +com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_PrimarySurface +androidx.hilt.lifecycle.R$attr: int fontProviderPackage +james.adaptiveicon.R$attr: int windowActionBar +android.didikee.donate.R$dimen: int hint_alpha_material_dark +androidx.constraintlayout.widget.R$id: int none +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_android_src +cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(android.os.Parcel) +wangdaye.com.geometricweather.common.basic.models.weather.Weather: void setYesterday(wangdaye.com.geometricweather.common.basic.models.weather.History) +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf +androidx.transition.R$color: int notification_action_color_filter +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconGravity +wangdaye.com.geometricweather.R$dimen: int abc_text_size_menu_header_material +com.jaredrummler.android.colorpicker.R$drawable: int abc_item_background_holo_light +androidx.core.R$drawable +cyanogenmod.power.IPerformanceManager$Stub$Proxy: boolean getProfileHasAppProfiles(int) +androidx.constraintlayout.widget.R$id: int on +com.jaredrummler.android.colorpicker.R$style +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_hovered_z +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.ICMWeatherManager getService() +wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingLeft +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_maxHeight +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_FONTS +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextColor +okhttp3.internal.ws.WebSocketReader: boolean closed +okhttp3.OkHttpClient$1: void put(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableBottom +androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +androidx.lifecycle.viewmodel.R: R() +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_Solid +android.didikee.donate.R$style: int Theme_AppCompat_CompactMenu +androidx.appcompat.R$styleable: int DrawerArrowToggle_spinBars +cyanogenmod.weatherservice.WeatherProviderService: java.util.Set mWeakRequestsSet +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SPANISH +androidx.lifecycle.SavedStateHandle: java.util.Map mLiveDatas +james.adaptiveicon.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +com.jaredrummler.android.colorpicker.R$attr: int preferenceTheme +androidx.appcompat.widget.AppCompatTextView: void setAutoSizeTextTypeWithDefaults(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String getUnit() +cyanogenmod.providers.CMSettings$System: java.lang.String LIVE_DISPLAY_HINTED +cyanogenmod.app.Profile: void setConditionalType() +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCollapsedPaddingTop +wangdaye.com.geometricweather.R$style: int Widget_Compat_NotificationActionContainer +okhttp3.ConnectionPool: long cleanup(long) +com.xw.repo.bubbleseekbar.R$id: int notification_main_column_container +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_textAppearance +cyanogenmod.themes.IThemeService: boolean isThemeApplying() +cyanogenmod.app.Profile$ProfileTrigger$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.common.basic.models.weather.Temperature +androidx.appcompat.R$styleable +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconTint +com.xw.repo.bubbleseekbar.R$attr: int actionMenuTextAppearance +androidx.appcompat.R$style: int TextAppearance_AppCompat_Display2 +okhttp3.internal.Util$1 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getAlertEntityList() +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property City +wangdaye.com.geometricweather.R$attr: int bsb_show_section_text +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: int getAnimationMode() +androidx.viewpager.R$styleable: int[] ColorStateListItem +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.lang.Object key +cyanogenmod.app.CustomTile: boolean collapsePanel +wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView +androidx.constraintlayout.widget.R$styleable: int Constraint_transitionEasing +com.google.android.material.R$xml: R$xml() +retrofit2.Invocation: Invocation(java.lang.reflect.Method,java.util.List) +androidx.preference.R$attr: int dividerVertical +androidx.constraintlayout.widget.R$attr: int state_above_anchor +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_summaryOff +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry geometry +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_change_size_collapse_motion_spec +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_normal +androidx.preference.R$styleable: int Toolbar_titleMarginBottom +org.greenrobot.greendao.AbstractDao: void save(java.lang.Object) +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline2 +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.Headers,okhttp3.RequestBody) +com.xw.repo.bubbleseekbar.R$styleable: int RecycleListView_paddingBottomNoButtons +wangdaye.com.geometricweather.R$id: int material_timepicker_cancel_button +androidx.loader.R$attr: R$attr() +androidx.preference.R$attr: int navigationContentDescription +wangdaye.com.geometricweather.R$color: int switch_thumb_material_dark +androidx.preference.R$styleable: int DialogPreference_negativeButtonText +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +okhttp3.internal.http2.Http2Stream: void cancelStreamIfNecessary() +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_subtitle +androidx.lifecycle.extensions.R$styleable: int FragmentContainerView_android_tag +wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: java.lang.String Unit +james.adaptiveicon.R$dimen: int abc_action_bar_content_inset_material +wangdaye.com.geometricweather.R$dimen: int tooltip_y_offset_touch +com.google.android.material.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +androidx.appcompat.R$style: int Base_Widget_AppCompat_SeekBar +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: ObservableReplay$ReplayObserver(io.reactivex.internal.operators.observable.ObservableReplay$ReplayBuffer) +androidx.lifecycle.ReportFragment: void dispatchResume(androidx.lifecycle.ReportFragment$ActivityInitializationListener) +com.google.android.material.R$styleable: int[] MaterialCheckBox +androidx.appcompat.R$attr: int textAppearanceSearchResultSubtitle +wangdaye.com.geometricweather.R$string: int key_daily_trend_display +retrofit2.RequestFactory: java.lang.String relativeUrl +androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context) +androidx.preference.R$id: int accessibility_custom_action_3 +io.reactivex.internal.schedulers.RxThreadFactory: boolean nonBlocking +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder minFresh(int,java.util.concurrent.TimeUnit) +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.DailyEntityDao dailyEntityDao +wangdaye.com.geometricweather.R$id: int image +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_orientation +android.didikee.donate.R$styleable: int SearchView_voiceIcon +androidx.fragment.R$color: int notification_action_color_filter +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabText +androidx.recyclerview.R$styleable: int[] RecyclerView +io.reactivex.exceptions.CompositeException: java.lang.Throwable cause +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginTop +cyanogenmod.content.Intent: java.lang.String ACTION_INITIALIZE_CM_HARDWARE +androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionState(android.os.Bundle) +androidx.loader.R$styleable: int GradientColorItem_android_color +okhttp3.internal.http2.Http2Connection$Builder: java.lang.String hostname +com.google.android.material.slider.BaseSlider: void addOnChangeListener(com.google.android.material.slider.BaseOnChangeListener) +io.reactivex.Observable: io.reactivex.Observable switchMapSingle(io.reactivex.functions.Function) +com.google.android.material.button.MaterialButton: java.lang.String getA11yClassName() +wangdaye.com.geometricweather.R$layout: int activity_allergen +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.github.rahatarmanahmed.cpv.CircularProgressView$5: CircularProgressView$5(com.github.rahatarmanahmed.cpv.CircularProgressView) +androidx.fragment.R$id: int italic +com.google.android.material.internal.NavigationMenuItemView: void setMaxLines(int) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setMinuteInterval(int) +com.google.android.material.R$styleable: int MenuItem_actionProviderClass +wangdaye.com.geometricweather.R$styleable: int KeyPosition_drawPath +com.xw.repo.bubbleseekbar.R$color: int material_grey_100 +okhttp3.HttpUrl: char[] HEX_DIGITS +androidx.hilt.R$id: int time +cyanogenmod.profiles.BrightnessSettings: int mValue +androidx.constraintlayout.utils.widget.ImageFilterView: void setWarmth(float) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_16 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: void setUnit(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int behavior_skipCollapsed +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: int Level +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String getValue() +cyanogenmod.platform.R +androidx.constraintlayout.widget.R$id: int autoComplete +cyanogenmod.app.LiveLockScreenInfo: android.content.ComponentName component +okhttp3.internal.http2.Http2Stream: void close(okhttp3.internal.http2.ErrorCode) +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_backgroundTint +androidx.appcompat.R$styleable: int[] TextAppearance +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtendMotionSpec(com.google.android.material.animation.MotionSpec) +cyanogenmod.app.Profile$ExpandedDesktopMode: int DEFAULT +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginTop +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout_PrimarySurface +android.didikee.donate.R$layout: int abc_activity_chooser_view +cyanogenmod.externalviews.ExternalView$7: void run() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: int UnitType +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow +com.google.android.material.R$styleable: int[] MaterialTextView +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void cancelTimer() +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul24H +androidx.hilt.lifecycle.R$dimen: int notification_main_column_padding_top +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onComplete() +androidx.preference.R$style: int Base_Widget_AppCompat_ActionMode +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moonPhaseAngle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature +com.google.android.material.R$attr: int triggerSlack +wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingTop +com.google.android.material.chip.Chip: void setMinLines(int) +com.google.android.material.R$styleable: int MotionTelltales_telltales_tailScale +wangdaye.com.geometricweather.R$dimen: int abc_control_corner_material +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder username(java.lang.String) +wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language GERMAN +com.google.android.material.R$attr: int switchTextAppearance +androidx.recyclerview.R$attr: int fontStyle +cyanogenmod.app.Profile$NotificationLightMode: int ENABLE +androidx.recyclerview.widget.RecyclerView$LayoutManager: RecyclerView$LayoutManager() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.util.Date pubTime +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: long serialVersionUID +io.reactivex.internal.subscriptions.EmptySubscription +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: java.util.List night +androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$styleable: int SearchView_searchHintIcon +com.jaredrummler.android.colorpicker.R$layout: int cpv_dialog_presets +okhttp3.internal.connection.RealConnection: int allocationLimit +wangdaye.com.geometricweather.R$styleable: int Constraint_android_minHeight +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onNext(java.lang.Object) +cyanogenmod.providers.CMSettings$Secure: java.lang.String ADVANCED_MODE +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$id: int textinput_counter +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy MISSING +androidx.appcompat.widget.SwitchCompat: android.content.res.ColorStateList getTrackTintList() +com.bumptech.glide.integration.okhttp.R$id: int none +com.google.android.material.R$style: int Theme_MaterialComponents_BottomSheetDialog +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleTint +androidx.appcompat.R$dimen: int abc_seekbar_track_progress_height_material +wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundDialog: RunningInBackgroundDialog() +com.turingtechnologies.materialscrollbar.R$color: int highlighted_text_material_dark +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +android.didikee.donate.R$style: int TextAppearance_AppCompat +com.google.android.material.R$styleable: int TabLayout_tabPaddingBottom +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: AccuCurrentResult$Wind$Speed$Imperial() +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object readKey(android.database.Cursor,int) +com.google.android.material.R$id: int accessibility_action_clickable_span +com.google.android.material.R$attr: int itemRippleColor +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$attr: int chipSurfaceColor +wangdaye.com.geometricweather.R$array: int air_quality_co_units +androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotationY +androidx.appcompat.R$color: int abc_search_url_text_selected +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +wangdaye.com.geometricweather.R$styleable: int ActionBar_progressBarStyle +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.util.List DataSets +okhttp3.internal.http2.PushObserver +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER_Y +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.CMWeatherManager sInstance +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_selectionRequired +okio.BufferedSource: java.lang.String readString(long,java.nio.charset.Charset) +retrofit2.http.Field +cyanogenmod.weather.WeatherInfo$Builder: WeatherInfo$Builder(java.lang.String,double,int) +android.didikee.donate.R$attr: int listPreferredItemPaddingLeft +com.jaredrummler.android.colorpicker.R$attr: int actionBarDivider +io.reactivex.internal.util.VolatileSizeArrayList: VolatileSizeArrayList() +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +wangdaye.com.geometricweather.R$style: int Base_V28_Theme_AppCompat +cyanogenmod.providers.CMSettings$Global: java.lang.String ZEN_DISABLE_DUCKING_DURING_MEDIA_PLAYBACK +com.google.android.material.R$styleable: int Motion_motionPathRotate +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitationProbability() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getPm25() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_139 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf +androidx.appcompat.R$dimen: int abc_dropdownitem_icon_width +androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyle +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Body1 +androidx.fragment.R$dimen: int notification_top_pad +okhttp3.internal.io.FileSystem$1: boolean exists(java.io.File) +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.lang.Object x509TrustManagerExtensions +io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiFunction,io.reactivex.functions.Consumer) +com.turingtechnologies.materialscrollbar.R$attr: int alertDialogStyle +androidx.transition.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: android.graphics.Rect getWindowInsets() +okhttp3.internal.cache.FaultHidingSink: void flush() +wangdaye.com.geometricweather.R$attr: int state_collapsible +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityResumed(android.app.Activity) +wangdaye.com.geometricweather.R$drawable: int ic_launcher +android.didikee.donate.R$attr: int switchMinWidth +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_DarkActionBar +androidx.preference.R$styleable: int ActionBar_background +androidx.preference.R$styleable: int DialogPreference_positiveButtonText +androidx.constraintlayout.widget.R$attr: int onHide +androidx.lifecycle.ComputableLiveData$3: ComputableLiveData$3(androidx.lifecycle.ComputableLiveData) +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_MAX_INDEX +androidx.preference.R$style: int Widget_AppCompat_Button +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign +androidx.constraintlayout.widget.R$styleable: int[] PopupWindowBackgroundState +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_btn_checkable +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Small +okhttp3.internal.connection.ConnectInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_inverse_material_dark +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallbackPossible +wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconVisible +androidx.activity.R$id: int title +androidx.hilt.work.R$id: int accessibility_custom_action_1 +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.google.gson.FieldNamingPolicy$5: java.lang.String translateName(java.lang.reflect.Field) +wangdaye.com.geometricweather.R$attr: int windowFixedHeightMajor +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night Night +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionBarLayout +androidx.appcompat.R$color: int abc_search_url_text_pressed +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +okhttp3.RealCall$AsyncCall: boolean $assertionsDisabled +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator APP_SWITCH_WAKE_SCREEN_VALIDATOR +com.google.android.material.R$attr: int strokeColor +wangdaye.com.geometricweather.R$string: int widget_clock_day_vertical +okhttp3.internal.Util: int indexOf(java.util.Comparator,java.lang.String[],java.lang.String) +com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getIndicatorWidth() +wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_night +android.support.v4.app.INotificationSideChannel$Stub$Proxy: INotificationSideChannel$Stub$Proxy(android.os.IBinder) +androidx.core.R$layout: int notification_template_part_time +com.google.android.material.R$color: int material_slider_halo_color +android.didikee.donate.R$id: int title_template +androidx.core.R$style: int Widget_Compat_NotificationActionContainer +androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Info +androidx.constraintlayout.widget.R$attr: int mock_labelColor +io.reactivex.internal.operators.observable.ObservableGroupBy$State: long serialVersionUID +com.jaredrummler.android.colorpicker.R$attr: int panelMenuListWidth +io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate) +com.bumptech.glide.R$styleable: int GradientColor_android_centerColor +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +androidx.hilt.work.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$styleable: int Badge_badgeTextColor +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_1 +androidx.appcompat.widget.AppCompatButton: void setSupportCompoundDrawablesTintMode(android.graphics.PorterDuff$Mode) +android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Dialog +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_creator +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_IME_SWITCHER +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_min +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SLEET +okio.ByteString: boolean startsWith(okio.ByteString) +androidx.recyclerview.widget.RecyclerView: int getItemDecorationCount() +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setLiveLockScreen(java.lang.String) +androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy: ConstraintProxy$BatteryNotLowProxy() +james.adaptiveicon.R$drawable: int abc_textfield_search_material +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetStart +com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_bias +cyanogenmod.app.PartnerInterface: cyanogenmod.app.IPartnerInterface sService +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +com.google.android.material.R$styleable: int MockView_mock_labelBackgroundColor +cyanogenmod.providers.DataUsageContract: java.lang.String FAST_SAMPLES +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_counter_margin_start +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SEVERE_THUNDERSTORMS com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf -wangdaye.com.geometricweather.R$drawable: int notif_temp_133 -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTextPadding -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontStyle -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderPackage -com.bumptech.glide.MemoryCategory: float multiplier -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SHOW_ALARM_ICON_VALIDATOR -cyanogenmod.app.Profile$ProfileTrigger: int access$200(cyanogenmod.app.Profile$ProfileTrigger) -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_showMotionSpec -james.adaptiveicon.R$color: int abc_primary_text_material_light -androidx.appcompat.widget.ActivityChooserView: void setExpandActivityOverflowButtonDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$dimen -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean cancelled -wangdaye.com.geometricweather.R$string: int daytime -com.google.android.material.textfield.TextInputLayout: void setErrorIconVisible(boolean) -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Time -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type LEFT -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setRotation(float) -androidx.drawerlayout.R$attr -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property AlertId -androidx.recyclerview.R$styleable: int GradientColor_android_startX -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontStyle -androidx.coordinatorlayout.R$dimen: int notification_top_pad_large_text -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void close(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver,long) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.util.List Intervals -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getUvDescription() -com.jaredrummler.android.colorpicker.R$id: int square -okhttp3.HttpUrl: boolean equals(java.lang.Object) -com.google.android.material.R$id: int titleDividerNoCustom -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.queue.MpscLinkedQueue queue -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitationDuration() -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setSnowPrecipitation(java.lang.Float) -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: IWeatherServiceProviderChangeListener$Stub$Proxy(android.os.IBinder) -androidx.constraintlayout.widget.R$attr: int autoSizeMaxTextSize -wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_borderColor -wangdaye.com.geometricweather.R$drawable: int notif_temp_130 -com.google.android.material.circularreveal.cardview.CircularRevealCardView -androidx.appcompat.R$styleable: int Toolbar_collapseIcon -wangdaye.com.geometricweather.R$id: int item_about_link_icon -androidx.hilt.R$dimen: int compat_button_inset_horizontal_material -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error -com.google.android.material.R$layout: int mtrl_picker_header_selection_text -wangdaye.com.geometricweather.R$array: int notification_background_colors -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult -androidx.preference.R$styleable: int Preference_title -com.turingtechnologies.materialscrollbar.R$attr: int cardMaxElevation -androidx.drawerlayout.R$dimen: int notification_large_icon_width -androidx.appcompat.R$styleable: int MenuItem_android_numericShortcut -com.google.android.material.R$styleable: int ActionMode_background -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_checked -io.reactivex.Observable: io.reactivex.Observable flatMapIterable(io.reactivex.functions.Function) -com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetLeft -com.google.android.material.R$styleable: int[] TextAppearance -okio.Buffer: void readFully(okio.Buffer,long) -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardCornerRadius -com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_disable_only_material_light -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -wangdaye.com.geometricweather.R$dimen: int compat_button_padding_vertical_material -androidx.activity.R$styleable: int GradientColor_android_centerX -androidx.coordinatorlayout.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moon_icon -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_alphabeticModifiers -androidx.cardview.R$color: int cardview_shadow_end_color -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float t +com.google.android.material.R$id: int material_hour_tv +cyanogenmod.externalviews.KeyguardExternalView: android.content.ServiceConnection mServiceConnection +okio.RealBufferedSink: okio.BufferedSink writeLong(long) +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.internal.disposables.SequentialDisposable task +cyanogenmod.app.Profile: cyanogenmod.profiles.StreamSettings getSettingsForStream(int) +androidx.transition.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day Day +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +wangdaye.com.geometricweather.R$styleable: int SearchView_suggestionRowLayout +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_splitTrack +androidx.core.R$attr: int ttcIndex +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth +androidx.appcompat.R$dimen: int notification_subtext_size +okhttp3.Dispatcher: int getMaxRequestsPerHost() +androidx.activity.R$attr +androidx.preference.R$dimen: int abc_select_dialog_padding_start_material +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language POLISH +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_right +androidx.lifecycle.LifecycleRegistry: void removeObserver(androidx.lifecycle.LifecycleObserver) +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_overlay +okhttp3.Route: Route(okhttp3.Address,java.net.Proxy,java.net.InetSocketAddress) +okhttp3.Response: okhttp3.Response cacheResponse +cyanogenmod.app.ProfileGroup$1: ProfileGroup$1() +com.google.android.material.R$attr: int appBarLayoutStyle +okhttp3.HttpUrl: java.lang.String username +io.reactivex.internal.util.EmptyComponent: io.reactivex.Observer asObserver() +cyanogenmod.themes.ThemeManager: ThemeManager(android.content.Context) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_DarkActionBar +androidx.preference.R$attr: int preserveIconSpacing +com.google.android.material.R$attr: int layout_constraintLeft_toLeftOf +okhttp3.internal.http.RealResponseBody: java.lang.String contentTypeString +cyanogenmod.profiles.AirplaneModeSettings: boolean mDirty +cyanogenmod.app.ILiveLockScreenChangeListener: void onLiveLockScreenChanged(cyanogenmod.app.LiveLockScreenInfo) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_PLAY_QUEUE_VALIDATOR +cyanogenmod.hardware.ICMHardwareService: boolean setDisplayColorCalibration(int[]) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnw +com.google.android.material.R$drawable: int abc_btn_colored_material +cyanogenmod.util.ColorUtils: ColorUtils() +wangdaye.com.geometricweather.R$styleable: int Chip_hideMotionSpec +androidx.preference.R$styleable: int AppCompatTheme_alertDialogStyle +androidx.constraintlayout.widget.R$attr: int spinBars +com.turingtechnologies.materialscrollbar.R$dimen: int compat_control_corner_material +com.google.android.material.R$drawable: int abc_ic_arrow_drop_right_black_24dp +androidx.appcompat.R$id: int progress_horizontal +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Bridge +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_21 +com.xw.repo.bubbleseekbar.R$dimen +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton +androidx.constraintlayout.widget.ConstraintLayout +androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableItem +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String ragweedDescription +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX() +wangdaye.com.geometricweather.R$id: int item_aqi_title +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position position +com.google.android.material.R$styleable: int LinearLayoutCompat_measureWithLargestChild +androidx.preference.R$color: int abc_tint_spinner +android.didikee.donate.R$id: int progress_horizontal +androidx.viewpager.R$integer: R$integer() +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context,android.util.AttributeSet) +androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$drawable: int abc_popup_background_mtrl_mult +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_removeNotificationGroup +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult +com.google.android.material.card.MaterialCardView: void setBackgroundInternal(android.graphics.drawable.Drawable) +james.adaptiveicon.R$dimen: int abc_dialog_padding_material +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getError() +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_HEAVY +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: java.util.List timelapsItems +androidx.constraintlayout.widget.R$attr: int actionModeStyle +wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacing +androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_material +com.google.android.material.R$attr: int itemBackground +io.reactivex.Observable: io.reactivex.Observable retryUntil(io.reactivex.functions.BooleanSupplier) +wangdaye.com.geometricweather.R$string: int cpv_presets +cyanogenmod.profiles.AirplaneModeSettings: void setValue(int) +androidx.preference.R$drawable: int abc_ic_star_black_48dp +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String level +com.google.android.material.R$id: int SHOW_ALL +androidx.preference.R$style: int Widget_AppCompat_ActionMode +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableItem_android_id +androidx.hilt.lifecycle.R$drawable: int notification_icon_background +okhttp3.internal.http2.Http2Connection: void sendDegradedPingLater() +androidx.appcompat.R$layout: int abc_screen_content_include +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +com.google.android.material.R$styleable: int NavigationView_itemShapeInsetEnd +cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_USE_MAIN_TILES +com.xw.repo.bubbleseekbar.R$attr: int paddingTopNoTitle +wangdaye.com.geometricweather.R$drawable: int notification_bg_low_pressed +androidx.cardview.R$attr: int contentPaddingRight +android.didikee.donate.R$style: int Theme_AppCompat_NoActionBar +okhttp3.internal.http1.Http1Codec$ChunkedSink: void write(okio.Buffer,long) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Spinner_Underlined +android.didikee.donate.R$styleable: int AppCompatTheme_listMenuViewStyle +androidx.constraintlayout.widget.R$styleable: int[] MenuGroup +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_expandedHintEnabled +wangdaye.com.geometricweather.R$string: int v7_preference_off +okio.HashingSource: okio.HashingSource sha256(okio.Source) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +okhttp3.CertificatePinner$Pin: boolean matches(java.lang.String) +androidx.preference.R$style: int Widget_Support_CoordinatorLayout +okhttp3.Request$Builder: okhttp3.HttpUrl url +cyanogenmod.profiles.AirplaneModeSettings$1: AirplaneModeSettings$1() +cyanogenmod.profiles.StreamSettings: int describeContents() +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom +com.google.android.material.R$styleable: int TextInputLayout_prefixTextColor +android.didikee.donate.R$styleable: int AppCompatTheme_actionButtonStyle +cyanogenmod.externalviews.ExternalView: void onActivityStarted(android.app.Activity) +cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weather.RequestInfo getRequestInfo() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_default +androidx.lifecycle.extensions.R$styleable: int GradientColorItem_android_offset +com.google.android.material.R$attr: int motionPathRotate +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_backgroundTint +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_CONDITION_CODE +androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet) +cyanogenmod.weather.CMWeatherManager$1$1: java.lang.String val$providerName +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_unRegisterThermalListener +com.bumptech.glide.R$id: int action_divider +okhttp3.internal.Internal: boolean isInvalidHttpUrlHost(java.lang.IllegalArgumentException) +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteDatabase routeDatabase() +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.constraintlayout.widget.R$attr: int windowActionModeOverlay +androidx.work.R$id: int italic +cyanogenmod.hardware.ICMHardwareService +wangdaye.com.geometricweather.R$drawable: int flag_ja +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipEndPadding +com.google.android.material.R$layout: int mtrl_calendar_days_of_week +retrofit2.Retrofit: retrofit2.Converter stringConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) +com.turingtechnologies.materialscrollbar.R$attr: R$attr() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onPanelClosed(int,android.view.Menu) +wangdaye.com.geometricweather.R$color: int secondary_text_disabled_material_light +androidx.constraintlayout.widget.R$attr: int title +cyanogenmod.profiles.ConnectionSettings: boolean mDirty +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_DialogWhenLarge +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: boolean cancelled +com.google.android.material.R$styleable: int[] AppBarLayout_Layout +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_ttcIndex +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintEnabled +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl +android.didikee.donate.R$attr: int borderlessButtonStyle +wangdaye.com.geometricweather.R$attr: int chipStyle +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_max +com.google.android.material.textfield.TextInputLayout: void setStartIconCheckable(boolean) +androidx.appcompat.R$drawable: int abc_ic_ab_back_material +james.adaptiveicon.R$id: int action_container +androidx.work.R$string: int status_bar_notification_info_overflow +cyanogenmod.providers.CMSettings$Secure: java.lang.String getString(android.content.ContentResolver,java.lang.String) +androidx.constraintlayout.widget.R$styleable: int AlertDialog_listLayout +com.google.android.material.R$layout: int abc_cascading_menu_item_layout +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Id +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_switchTextOff +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance +wangdaye.com.geometricweather.common.basic.models.weather.History +com.google.android.material.R$animator: int mtrl_chip_state_list_anim +james.adaptiveicon.R$layout: int notification_template_part_time +com.google.android.material.R$styleable: int CustomAttribute_customFloatValue +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColorItem_android_offset +androidx.appcompat.R$attr: int panelBackground +androidx.appcompat.widget.AppCompatCheckedTextView +androidx.lifecycle.Lifecycling: androidx.lifecycle.GenericLifecycleObserver getCallback(java.lang.Object) +wangdaye.com.geometricweather.R$array: int languages +android.didikee.donate.R$layout: int notification_template_custom_big +androidx.viewpager.R$attr +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeTextType +cyanogenmod.app.ThemeVersion$ComponentVersion: java.lang.String getName() +androidx.fragment.app.FragmentTabHost +com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_tick_mark_material +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_backgroundTint +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setText(java.lang.String) +com.google.android.material.R$styleable: int[] MenuItem +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +okhttp3.internal.http2.Http2Writer: void writeContinuationFrames(int,long) +retrofit2.Response: boolean isSuccessful() +wangdaye.com.geometricweather.R$attr: int onHide +androidx.lifecycle.extensions.R$style: int Widget_Compat_NotificationActionText +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Update +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer RIGHT_VALUE +cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo$Builder setPriority(int) +wangdaye.com.geometricweather.common.ui.activities.AlertActivity: AlertActivity() +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_verticalDivider +com.google.android.material.R$attr: int badgeTextColor +com.google.android.material.R$attr: int autoSizeMinTextSize +androidx.recyclerview.widget.RecyclerView: void setScrollState(int) +com.google.android.material.slider.Slider: void setTickInactiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer relativeHumidityMin +androidx.constraintlayout.widget.R$id: int tabMode +com.google.android.material.R$attr: int materialCalendarFullscreenTheme +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onComplete() +com.google.android.material.R$attr: int hintTextColor +okhttp3.OkHttpClient: okhttp3.WebSocket newWebSocket(okhttp3.Request,okhttp3.WebSocketListener) +wangdaye.com.geometricweather.R$string: int ice +android.didikee.donate.R$style: int TextAppearance_AppCompat_Inverse +androidx.preference.R$styleable: int Preference_android_key +com.google.android.material.R$attr: int lastBaselineToBottomHeight +wangdaye.com.geometricweather.R$id: int staticPostLayout +cyanogenmod.app.LiveLockScreenInfo$1 +androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context,android.util.AttributeSet,int) +okhttp3.ConnectionSpec: java.lang.String[] cipherSuites +retrofit2.ParameterHandler$QueryMap: void apply(retrofit2.RequestBuilder,java.lang.Object) +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendLayoutManager +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_statusBarBackground +wangdaye.com.geometricweather.R$styleable: int Chip_android_textAppearance +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit valueOf(java.lang.String) +com.google.android.material.snackbar.Snackbar$SnackbarLayout +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onComplete() +androidx.appcompat.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +androidx.preference.R$styleable: int ActionBar_contentInsetEnd +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getBrandId() +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconMargin +wangdaye.com.geometricweather.R$integer: int mtrl_card_anim_duration_ms +com.jaredrummler.android.colorpicker.R$attr: int drawerArrowStyle +androidx.activity.R$integer: R$integer() +androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_tailColor +wangdaye.com.geometricweather.R$id: int tag_icon_bottom +okhttp3.internal.http2.Http2Connection: okhttp3.Protocol getProtocol() +wangdaye.com.geometricweather.R$attr: int onTouchUp +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button +wangdaye.com.geometricweather.R$layout: int mtrl_picker_dialog +com.google.android.material.R$layout: int abc_alert_dialog_button_bar_material +wangdaye.com.geometricweather.R$attr: int actionModeCopyDrawable +com.xw.repo.bubbleseekbar.R$attr: int autoSizeMaxTextSize +androidx.constraintlayout.widget.R$dimen: int abc_control_inset_material +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.Observer downstream +okio.Buffer: okio.Buffer$UnsafeCursor readAndWriteUnsafe() +wangdaye.com.geometricweather.R$attr: int fastScrollHorizontalTrackDrawable +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_checkable +wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_percent +wangdaye.com.geometricweather.R$styleable: int MotionLayout_motionProgress +okio.BufferedSource: long readLongLe() +retrofit2.BuiltInConverters$ToStringConverter +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.util.Date date +wangdaye.com.geometricweather.R$string: int feedback_restart +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +cyanogenmod.app.ProfileGroup: int mNameResId +androidx.hilt.work.R$id: int accessibility_custom_action_20 +cyanogenmod.app.ThemeVersion: int getMinSupportedVersion() +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getSnow() +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void run() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display3 +androidx.constraintlayout.widget.R$drawable: int abc_ic_ab_back_material +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +james.adaptiveicon.R$attr: int buttonGravity +android.didikee.donate.R$color: int accent_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableTop +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_shapeAppearance +com.jaredrummler.android.colorpicker.R$id: int uniform +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int INSTALLED +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onNext(java.lang.Object) +androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen +androidx.lifecycle.OnLifecycleEvent: androidx.lifecycle.Lifecycle$Event value() +com.jaredrummler.android.colorpicker.R$attr: int buttonBarStyle +androidx.appcompat.widget.ActionBarOverlayLayout: void setActionBarVisibilityCallback(androidx.appcompat.widget.ActionBarOverlayLayout$ActionBarVisibilityCallback) +android.didikee.donate.R$styleable: int AppCompatTheme_selectableItemBackground +retrofit2.Platform: retrofit2.Platform PLATFORM +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode[] values() +androidx.recyclerview.R$dimen: int notification_big_circle_margin +com.turingtechnologies.materialscrollbar.R$id: int submit_area +james.adaptiveicon.R$color: int primary_material_dark +androidx.preference.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +com.google.android.material.R$styleable: int OnSwipe_limitBoundsTo +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemIconSize +android.didikee.donate.R$drawable: int notification_bg +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_imeOptions +wangdaye.com.geometricweather.R$styleable: int MaterialRadioButton_useMaterialThemeColors +com.google.android.material.R$bool: int abc_allow_stacked_button_bar +androidx.core.R$style +com.google.android.material.R$styleable: int TextInputLayout_startIconTintMode +cyanogenmod.hardware.CMHardwareManager: java.util.List BOOLEAN_FEATURES +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.preference.R$styleable: int PreferenceFragmentCompat_android_dividerHeight +androidx.constraintlayout.widget.R$attr: int textColorSearchUrl +wangdaye.com.geometricweather.common.ui.widgets.DonateImageView: DonateImageView(android.content.Context) +okhttp3.internal.tls.BasicCertificateChainCleaner: boolean equals(java.lang.Object) +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPreStopped(android.app.Activity) +androidx.hilt.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.R$attr: int layout_constraintRight_toRightOf +cyanogenmod.app.ProfileGroup$2: int[] $SwitchMap$cyanogenmod$app$ProfileGroup$Mode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setLogo(java.lang.String) +androidx.appcompat.R$attr: int buttonBarNegativeButtonStyle +androidx.viewpager.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogPreferredPadding +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: AccuLocationResult$GeoPosition$Elevation$Imperial() +androidx.dynamicanimation.R$id: int text2 +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customColorDrawableValue +okhttp3.internal.http.CallServerInterceptor$CountingSink: void write(okio.Buffer,long) +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_right_mtrl_light +androidx.preference.R$styleable: int AppCompatImageView_srcCompat +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String getDefenseIcon() +androidx.vectordrawable.animated.R$id: R$id() +james.adaptiveicon.R$drawable: int abc_ic_clear_material +wangdaye.com.geometricweather.R$style: int Base_V23_Theme_AppCompat +androidx.appcompat.R$styleable: int AppCompatTheme_actionModePasteDrawable +wangdaye.com.geometricweather.db.entities.AlertEntity: AlertEntity() +com.turingtechnologies.materialscrollbar.R$drawable: int indicator_ltr +androidx.appcompat.resources.R$dimen: int compat_control_corner_material +com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String BUILD_TYPE +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onResume() +cyanogenmod.providers.DataUsageContract: java.lang.String EXTRA +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionDropDownStyle +retrofit2.Retrofit: okhttp3.Call$Factory callFactory() +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void ping(boolean,int,int) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_elevation_material +androidx.drawerlayout.R$attr: int alpha +cyanogenmod.externalviews.ExternalView: android.content.ServiceConnection mServiceConnection +androidx.preference.R$attr: int splitTrack +android.didikee.donate.R$styleable: int ActionBar_background +com.google.android.material.R$attr: int titleMargin +com.google.android.material.R$layout: int design_text_input_end_icon +androidx.preference.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_animationMode +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_Alert +androidx.coordinatorlayout.R$id: int accessibility_custom_action_28 +wangdaye.com.geometricweather.R$drawable: int ic_back +androidx.coordinatorlayout.R$dimen: int notification_large_icon_height +com.bumptech.glide.R$id: int icon_group +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_default_mtrl_alpha +com.google.android.material.R$styleable: int KeyCycle_android_translationX +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView_Menu +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontVariationSettings +com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode FIRST_VISIBLE +wangdaye.com.geometricweather.R$styleable: int[] PreferenceFragment +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +androidx.preference.R$attr: int singleChoiceItemLayout +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.BiFunction resultSelector +com.google.android.material.appbar.MaterialToolbar +androidx.coordinatorlayout.R$integer: R$integer() +james.adaptiveicon.R$styleable: int MenuItem_android_orderInCategory +james.adaptiveicon.R$id: int action_mode_bar_stub +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean emitLast +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableStart +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_83 +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: float val$swipeProgress +com.xw.repo.bubbleseekbar.R$attr: int spinBars +wangdaye.com.geometricweather.background.polling.work.worker.NormalUpdateWorker +androidx.viewpager2.R$id: int right_side +com.google.android.material.button.MaterialButton: void setPressed(boolean) +cyanogenmod.profiles.LockSettings: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingStart +androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getCollapseIcon() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeCloudCover() +androidx.appcompat.widget.SwitchCompat: int getThumbOffset() +androidx.hilt.work.R$layout: int notification_action +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: boolean cancelled +androidx.appcompat.resources.R$id: int accessibility_custom_action_29 +androidx.preference.R$styleable: int ActionBarLayout_android_layout_gravity +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver parent +wangdaye.com.geometricweather.R$styleable: int Preference_android_selectable +io.reactivex.internal.subscriptions.EmptySubscription: int requestFusion(int) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setPoint(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean) +com.google.android.material.R$id: int material_minute_text_input +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_8 +androidx.preference.R$style: int Widget_AppCompat_RatingBar_Indicator +androidx.preference.R$string: int abc_menu_delete_shortcut_label +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalBias +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_track_mtrl_alpha +androidx.preference.R$styleable: int[] View +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: MfEphemerisResult() +androidx.recyclerview.R$id: int accessibility_custom_action_12 +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_measureWithLargestChild +okhttp3.internal.connection.RealConnection: okhttp3.Request createTunnel(int,int,okhttp3.Request,okhttp3.HttpUrl) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListMenuView +androidx.legacy.coreutils.R$id: R$id() +wangdaye.com.geometricweather.R$attr: int bsb_section_text_color +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog +androidx.loader.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property China +com.google.android.material.R$attr: int lineHeight okhttp3.internal.http2.Http2: java.lang.String formatFlags(byte,byte) -org.greenrobot.greendao.AbstractDao: void deleteInTxInternal(java.lang.Iterable,java.lang.Iterable) -androidx.appcompat.R$style: int Theme_AppCompat_Empty -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_SNOW_SHOWERS -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: void run() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWeatherPhase() -com.jaredrummler.android.colorpicker.R$color: int error_color_material_dark -androidx.viewpager2.R$string -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_borderlessButtonStyle -androidx.coordinatorlayout.R$drawable: int notification_tile_bg -io.reactivex.internal.subscriptions.EmptySubscription: java.lang.Object poll() -wangdaye.com.geometricweather.R$array: int speed_units -wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity: MultiCityWidgetConfigActivity() -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean delayError -androidx.appcompat.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -androidx.appcompat.R$style: int Widget_AppCompat_Light_SearchView -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator -com.google.android.material.R$attr: int closeIconVisible -androidx.vectordrawable.animated.R$dimen: int notification_small_icon_size_as_large -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.MinutelyEntityDao minutelyEntityDao -androidx.hilt.lifecycle.R$styleable: int GradientColorItem_android_offset -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Bridge -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: KeyguardExternalViewProviderService$Provider$ProviderImpl(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider,cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_popupWindowStyle -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showDialog -okhttp3.internal.connection.RealConnection: java.lang.String NPE_THROW_WITH_NULL -cyanogenmod.app.Profile: java.util.Map profileGroups -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveShape -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixTextAppearance -okhttp3.internal.http1.Http1Codec: void writeRequest(okhttp3.Headers,java.lang.String) -androidx.hilt.work.R$id: int accessibility_action_clickable_span -androidx.activity.R$id: int accessibility_custom_action_11 -cyanogenmod.app.CMContextConstants: CMContextConstants() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitation() -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: HalfDay(java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration,wangdaye.com.geometricweather.common.basic.models.weather.Wind,java.lang.Integer) -cyanogenmod.themes.IThemeService$Stub: cyanogenmod.themes.IThemeService asInterface(android.os.IBinder) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean sunRiseSet -retrofit2.adapter.rxjava2.Result: Result(retrofit2.Response,java.lang.Throwable) -androidx.lifecycle.SavedStateViewModelFactory: void onRequery(androidx.lifecycle.ViewModel) -com.jaredrummler.android.colorpicker.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -androidx.appcompat.R$attr: int layout -com.google.android.material.R$style: int TextAppearance_Design_Suffix -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_disabled_material_light -android.didikee.donate.R$id: int submenuarrow -wangdaye.com.geometricweather.common.basic.models.weather.Current: Current(java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability,wangdaye.com.geometricweather.common.basic.models.weather.Wind,wangdaye.com.geometricweather.common.basic.models.weather.UV,wangdaye.com.geometricweather.common.basic.models.weather.AirQuality,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.String,java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_liftable -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String providerId -com.xw.repo.bubbleseekbar.R$color: int abc_tint_switch_track -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_variablePadding -wangdaye.com.geometricweather.R$styleable: int Tooltip_backgroundTint -io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer) -androidx.core.R$color: int androidx_core_ripple_material_light -com.turingtechnologies.materialscrollbar.R$attr: int spinBars -wangdaye.com.geometricweather.R$styleable: int Preference_singleLineTitle -androidx.legacy.coreutils.R$drawable: int notification_bg_normal -androidx.appcompat.R$layout: int abc_list_menu_item_radio -cyanogenmod.app.Profile$ProfileTrigger: void writeToParcel(android.os.Parcel,int) -androidx.hilt.R$string: R$string() -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lc -okhttp3.Protocol: okhttp3.Protocol HTTP_1_1 -com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_disabled_color -wangdaye.com.geometricweather.R$drawable: int weather_hail_1 -okhttp3.internal.http2.Hpack$Writer: int headerTableSizeSetting -okhttp3.internal.platform.Platform: okhttp3.internal.tls.TrustRootIndex buildTrustRootIndex(javax.net.ssl.X509TrustManager) -com.google.android.material.R$string: int material_slider_range_start -wangdaye.com.geometricweather.R$string: int material_slider_range_start -androidx.lifecycle.extensions.R$style -okhttp3.internal.http2.Hpack$Reader: int headerTableSizeSetting -org.greenrobot.greendao.AbstractDao: android.database.CursorWindow moveToNextUnlocked(android.database.Cursor) -androidx.viewpager.R$styleable: int FontFamilyFont_ttcIndex -com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_color -com.turingtechnologies.materialscrollbar.R$drawable: int abc_tab_indicator_mtrl_alpha -wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_bottom_end -androidx.appcompat.R$styleable: int Toolbar_menu -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonPhaseAngle -wangdaye.com.geometricweather.R$layout: int widget_day_week_rectangle -androidx.appcompat.widget.LinearLayoutCompat: void setShowDividers(int) -com.google.android.material.R$id: int search_badge -androidx.lifecycle.LiveData: java.lang.Object getValue() -androidx.constraintlayout.widget.R$attr: int customBoolean -wangdaye.com.geometricweather.R$styleable: int MotionScene_defaultDuration -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_UV_INDEX -android.didikee.donate.R$attr: int actionBarWidgetTheme -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_type -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver) -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_4 -wangdaye.com.geometricweather.search.Hilt_SearchActivity -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_clear -androidx.preference.R$attr: int ttcIndex -james.adaptiveicon.R$attr: int switchStyle -james.adaptiveicon.R$attr: int subMenuArrow -android.didikee.donate.R$id: int buttonPanel -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_to_on_mtrl_000 -com.google.android.material.R$attr: int snackbarTextViewStyle -wangdaye.com.geometricweather.R$color: int design_fab_stroke_end_outer_color -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void dispose() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean -retrofit2.Platform$Android$MainThreadExecutor: android.os.Handler handler -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments -com.google.android.material.R$attr: int selectorSize -okhttp3.HttpUrl: java.util.List encodedPathSegments() -com.github.rahatarmanahmed.cpv.CircularProgressView: java.util.List access$100(com.github.rahatarmanahmed.cpv.CircularProgressView) -james.adaptiveicon.R$color: int abc_color_highlight_material -wangdaye.com.geometricweather.R$string: int key_notification_text_color -androidx.activity.R$id: int accessibility_custom_action_16 -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isFlowable -wangdaye.com.geometricweather.R$layout: int widget_clock_day_mini -androidx.appcompat.R$styleable: R$styleable() -androidx.appcompat.R$drawable: int abc_text_select_handle_left_mtrl_light -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String weatherSource -wangdaye.com.geometricweather.R$style: int Widget_Design_TextInputLayout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: java.lang.String Unit -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: ObservableSwitchMap$SwitchMapObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) -androidx.lifecycle.FullLifecycleObserverAdapter: androidx.lifecycle.FullLifecycleObserver mFullLifecycleObserver -com.google.android.material.snackbar.SnackbarContentLayout: android.widget.TextView getMessageView() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum() -james.adaptiveicon.R$attr: int windowActionBarOverlay -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Time -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy UPPER_CAMEL_CASE_WITH_SPACES -androidx.constraintlayout.widget.R$attr: int activityChooserViewStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitationProbability(java.lang.Float) -james.adaptiveicon.R$drawable: int abc_list_longpressed_holo -okhttp3.internal.http2.Http2Stream: int getId() -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$id: int textSpacerNoTitle -androidx.coordinatorlayout.R$id: int accessibility_custom_action_10 -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setNestedScrollingEnabled(boolean) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_dropdownPreferenceStyle -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_DropDownItem_Spinner -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorBackgroundFloating -io.reactivex.Observable: io.reactivex.observers.TestObserver test() -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: ObservableRepeatWhen$RepeatWhenObserver(io.reactivex.Observer,io.reactivex.subjects.Subject,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_is_float_type -androidx.coordinatorlayout.R$drawable: R$drawable() -com.google.android.material.R$color: int design_dark_default_color_secondary_variant -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Light -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Editor edit(java.lang.String) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -androidx.preference.R$attr: int textAppearanceListItemSmall -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getWeatherText() -com.google.android.material.R$id: int contentPanel -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_percent -james.adaptiveicon.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$id: int progress_horizontal -com.google.android.material.floatingactionbutton.FloatingActionButton: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String humidity -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_PopupMenu -com.google.android.material.slider.Slider: void setThumbElevation(float) -wangdaye.com.geometricweather.R$drawable: int abc_list_focused_holo -androidx.appcompat.widget.AbsActionBarView: int getContentHeight() -com.google.android.material.R$attr: int thumbTint -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: CaiYunMainlyResult$CurrentBean$PressureBean() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlActivated -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter daytimeWeatherCodeConverter -com.google.android.material.R$styleable: int SearchView_queryBackground -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Overline -androidx.appcompat.widget.ActionBarContainer: void setPrimaryBackground(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$dimen: int mtrl_switch_thumb_elevation -okhttp3.internal.http2.Settings: int INITIAL_WINDOW_SIZE -wangdaye.com.geometricweather.R$id: int fragment_container_view_tag -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemStrokeColor -com.jaredrummler.android.colorpicker.R$anim: int abc_slide_in_bottom -wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_backgroundTintMode -io.reactivex.Observable: io.reactivex.Observable cast(java.lang.Class) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf -androidx.appcompat.R$attr: int drawableEndCompat -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean disposed -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -james.adaptiveicon.R$id: int action_mode_bar -androidx.preference.R$attr: int preferenceScreenStyle -wangdaye.com.geometricweather.R$attr: int bsb_track_color -wangdaye.com.geometricweather.R$string: int abc_capital_on -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: WeatherEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -androidx.appcompat.widget.AppCompatButton: android.content.res.ColorStateList getSupportCompoundDrawablesTintList() -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationY -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Object rainSnowLimitRaw -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_button_material -androidx.constraintlayout.widget.R$styleable: int Constraint_constraint_referenced_ids -androidx.constraintlayout.widget.R$styleable: int[] Layout -androidx.lifecycle.ViewModel: java.util.Map mBagOfTags -cyanogenmod.providers.CMSettings$NameValueCache: CMSettings$NameValueCache(java.lang.String,android.net.Uri,java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$drawable: int abc_popup_background_mtrl_mult -android.didikee.donate.R$dimen: int abc_action_bar_content_inset_with_nav -wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_grey -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String to -androidx.lifecycle.Transformations$3: boolean mFirstTime -com.google.android.material.R$id: int italic -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Placeholder -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_enqueueLiveLockScreen -okhttp3.ConnectionPool: int idleConnectionCount() -com.google.android.material.circularreveal.CircularRevealLinearLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource[] values() -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline6 -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadPing(okio.ByteString) -com.google.android.material.R$attr: int verticalOffset -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextColor -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -com.turingtechnologies.materialscrollbar.R$styleable: int[] CardView -okhttp3.CacheControl: int minFreshSeconds() -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_orderInCategory -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onPause() -com.jaredrummler.android.colorpicker.R$id: int text2 -androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_to_on_mtrl_015 -com.google.android.material.slider.Slider: void setTrackHeight(int) -cyanogenmod.externalviews.ExternalView$8: cyanogenmod.externalviews.ExternalView this$0 -com.google.android.material.R$styleable: int TextInputLayout_counterTextColor -androidx.transition.R$id: int transition_scene_layoutid_cache -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIconTint -com.google.android.material.card.MaterialCardView: void setCardBackgroundColor(android.content.res.ColorStateList) -androidx.appcompat.R$style: int Base_V26_Theme_AppCompat_Light -james.adaptiveicon.R$styleable: int AppCompatImageView_tintMode -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_content_include -androidx.constraintlayout.widget.R$attr: int mock_label -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: void slideLockscreenIn() -okio.Buffer$2: int read() -wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_xml -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_textAppearance -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder path(java.lang.String) -com.google.android.material.R$styleable: int ConstraintSet_pathMotionArc -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalBias -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void dispose() -androidx.hilt.work.R$id: int accessibility_custom_action_9 -io.reactivex.Observable: io.reactivex.Observable skip(long) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ImageButton -com.github.rahatarmanahmed.cpv.CircularProgressView$3: CircularProgressView$3(com.github.rahatarmanahmed.cpv.CircularProgressView) -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_borderWidth -androidx.appcompat.R$bool: int abc_config_actionMenuItemAllCaps -io.reactivex.internal.subscriptions.BasicQueueSubscription: int requestFusion(int) -retrofit2.DefaultCallAdapterFactory$1: java.lang.reflect.Type val$responseType -com.google.android.material.R$styleable: int Layout_layout_constraintTop_toBottomOf -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String DELETE_AFTER_USE -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getFormattedId() -io.reactivex.internal.schedulers.ScheduledRunnable: int THREAD_INDEX -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeCloudCover(java.lang.Integer) -wangdaye.com.geometricweather.common.basic.models.weather.History: int getNighttimeTemperature() -com.turingtechnologies.materialscrollbar.R$attr: int actionViewClass -com.jaredrummler.android.colorpicker.R$bool: R$bool() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Today -androidx.appcompat.R$styleable: int AppCompatSeekBar_android_thumb -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_transformation_sheet_collapse_spec -cyanogenmod.providers.CMSettings$DelimitedListValidator: android.util.ArraySet mValidValueSet -androidx.preference.R$styleable: int ListPreference_entryValues -wangdaye.com.geometricweather.R$drawable: int notif_temp_122 -retrofit2.HttpServiceMethod: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) -com.turingtechnologies.materialscrollbar.R$string: int abc_action_menu_overflow_description -cyanogenmod.weather.WeatherLocation: WeatherLocation(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetRight -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Subhead -com.turingtechnologies.materialscrollbar.R$attr: int actionModeCloseButtonStyle -androidx.appcompat.R$style: int TextAppearance_AppCompat_Body2 -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowDy -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListMenuView -androidx.activity.R$styleable: int GradientColor_android_centerColor -androidx.preference.R$styleable: int MultiSelectListPreference_entryValues -androidx.preference.R$styleable: int FontFamilyFont_android_fontWeight -androidx.drawerlayout.widget.DrawerLayout: android.graphics.drawable.Drawable getStatusBarBackgroundDrawable() -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemIconTint -io.reactivex.internal.util.VolatileSizeArrayList: boolean equals(java.lang.Object) -com.xw.repo.bubbleseekbar.R$attr: int colorBackgroundFloating -android.didikee.donate.R$attr: int actionLayout -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$styleable: int[] BackgroundStyle -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dialog -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_MOBILEDATA -io.reactivex.Observable: io.reactivex.Observable serialize() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_Switch -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver inner -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Integer aqiIndex -androidx.dynamicanimation.R$id: int chronometer -wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_1_material -io.reactivex.internal.subscriptions.SubscriptionArbiter: SubscriptionArbiter(boolean) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onComplete() -androidx.appcompat.R$layout: int notification_template_custom_big -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: long serialVersionUID -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean mShouldShow -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginEnd -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int INSTALLING -com.jaredrummler.android.colorpicker.R$id: int transparency_seekbar -com.google.android.material.R$styleable: int ActionBar_height -cyanogenmod.weather.WeatherInfo$DayForecast: double getHigh() -androidx.legacy.coreutils.R$attr: int font -com.jaredrummler.android.colorpicker.R$string: int cpv_default_title -okhttp3.internal.http2.Http2Connection$IntervalPingRunnable -com.turingtechnologies.materialscrollbar.R$layout: int abc_popup_menu_item_layout -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchMinWidth -android.support.v4.app.INotificationSideChannel$Stub: android.support.v4.app.INotificationSideChannel asInterface(android.os.IBinder) -androidx.constraintlayout.widget.R$styleable: int MenuView_android_verticalDivider -okio.Buffer: okio.BufferedSink writeDecimalLong(long) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object getKey(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int[] ScrollingViewBehavior_Layout -com.google.android.material.R$drawable: int tooltip_frame_light +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature Temperature +com.google.android.material.R$color: int mtrl_choice_chip_ripple_color +com.google.gson.FieldNamingPolicy$4: FieldNamingPolicy$4(java.lang.String,int) +com.turingtechnologies.materialscrollbar.R$attr: int actionModeShareDrawable +com.bumptech.glide.R$dimen: int compat_button_padding_horizontal_material +cyanogenmod.profiles.BrightnessSettings$1 +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getId() +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_progress_in_float +com.bumptech.glide.load.engine.GlideException: void setOrigin(java.lang.Exception) +androidx.appcompat.resources.R$layout: int notification_action_tombstone +retrofit2.converter.gson.GsonRequestBodyConverter: okhttp3.MediaType MEDIA_TYPE +com.google.android.material.tabs.TabLayout: void setOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +com.google.android.material.R$styleable: int ConstraintSet_animate_relativeTo +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_pixel +com.google.android.material.theme.MaterialComponentsViewInflater +james.adaptiveicon.R$style: int Widget_AppCompat_Toolbar +com.google.android.material.R$animator: int mtrl_extended_fab_change_size_collapse_motion_spec +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void otherComplete() +wangdaye.com.geometricweather.db.entities.DaoMaster: void dropAllTables(org.greenrobot.greendao.database.Database,boolean) +wangdaye.com.geometricweather.R$attr: int bottom_text_size +wangdaye.com.geometricweather.R$xml: int widget_trend_daily +cyanogenmod.weather.WeatherInfo: double access$802(cyanogenmod.weather.WeatherInfo,double) +james.adaptiveicon.R$styleable: int ViewStubCompat_android_layout +wangdaye.com.geometricweather.R$string: int material_hour_suffix +androidx.preference.R$attr: int coordinatorLayoutStyle +com.google.android.material.appbar.AppBarLayout: void setStatusBarForegroundResource(int) +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object PARENT_DISPOSED +androidx.work.R$id: int accessibility_custom_action_20 +androidx.legacy.coreutils.R$dimen: int notification_small_icon_background_padding +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge +retrofit2.RequestFactory$Builder: boolean isKotlinSuspendFunction +androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.lifecycle.LiveData$LifecycleBoundObserver: boolean shouldBeActive() +wangdaye.com.geometricweather.R$drawable: int notif_temp_113 +androidx.preference.R$attr: int actionBarItemBackground +androidx.preference.R$styleable: int AppCompatTheme_dropDownListViewStyle +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean disposed +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable +com.google.android.material.R$styleable: int[] RecycleListView +androidx.viewpager.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitationProbability +okhttp3.OkHttpClient$Builder: int readTimeout +androidx.activity.R$style: R$style() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBaseline_creator +okhttp3.internal.connection.RealConnection: okio.BufferedSource source +androidx.constraintlayout.widget.R$attr: int preserveIconSpacing +androidx.vectordrawable.R$styleable: int GradientColor_android_startColor +com.jaredrummler.android.colorpicker.R$styleable: int Preference_fragment +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_activated_mtrl_alpha +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void clear() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String caiyun +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_27 +io.reactivex.Observable: io.reactivex.Observable timestamp(io.reactivex.Scheduler) +org.greenrobot.greendao.DaoException: DaoException() +androidx.recyclerview.R$drawable: int notification_icon_background +androidx.appcompat.R$dimen: int notification_action_text_size +com.google.gson.stream.JsonWriter: boolean htmlSafe +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: java.util.List getBrands() +okhttp3.Headers$Builder: okhttp3.Headers$Builder addLenient(java.lang.String) +com.google.android.material.R$drawable: int abc_ic_ab_back_material +james.adaptiveicon.R$styleable: int SearchView_suggestionRowLayout +james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontStyle +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: java.util.ArrayList cVersions +com.google.android.material.R$color: int design_default_color_primary +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +androidx.loader.R$drawable: int notify_panel_notification_icon_bg +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.CMHardwareManager sCMHardwareManagerInstance +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: io.reactivex.Scheduler scheduler +wangdaye.com.geometricweather.R$attr: int titleMarginEnd +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onSuccess(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void innerComplete() +james.adaptiveicon.R$styleable: int CompoundButton_buttonCompat +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: java.lang.String getActiveWeatherServiceProviderLabel() +cyanogenmod.externalviews.KeyguardExternalView$1: cyanogenmod.externalviews.KeyguardExternalView this$0 +retrofit2.Retrofit +okhttp3.OkHttpClient$Builder: java.util.List networkInterceptors +com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$styleable: int Badge_maxCharacterCount +okio.AsyncTimeout: void timedOut() +okio.Okio: okio.Sink sink(java.io.File) +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder addCallAdapterFactory(retrofit2.CallAdapter$Factory) +com.google.android.material.bottomnavigation.BottomNavigationView +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_18 +com.turingtechnologies.materialscrollbar.R$attr: int statusBarBackground +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 +androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context) +androidx.appcompat.resources.R$styleable: int StateListDrawableItem_android_drawable +wangdaye.com.geometricweather.R$styleable: int Constraint_chainUseRtl +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +io.reactivex.internal.util.HashMapSupplier +com.google.android.material.R$string: int exposed_dropdown_menu_content_description +androidx.drawerlayout.R$dimen: int notification_top_pad +com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +androidx.preference.R$styleable: int PreferenceFragment_android_dividerHeight +com.bumptech.glide.MemoryCategory: float multiplier +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX getNames() +com.jaredrummler.android.colorpicker.R$drawable: int abc_ab_share_pack_mtrl_alpha +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias +okhttp3.internal.http2.Http2Stream: void closeLater(okhttp3.internal.http2.ErrorCode) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIcon +wangdaye.com.geometricweather.R$attr: int flow_verticalStyle +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeDegreeDayTemperature +androidx.vectordrawable.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitationDuration +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action) +com.google.android.material.slider.Slider: Slider(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_overflow_padding_start_material +androidx.constraintlayout.widget.R$attr: int contentInsetStartWithNavigation +androidx.appcompat.R$dimen: int abc_list_item_height_small_material +androidx.constraintlayout.widget.R$attr: int titleMarginBottom +androidx.appcompat.resources.R$id: int text2 +androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +android.didikee.donate.R$styleable: int PopupWindow_android_popupAnimationStyle +androidx.core.R$id: int action_container +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTemperature(int) +androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView: void setSelector(android.graphics.drawable.Drawable) +cyanogenmod.weather.ICMWeatherManager: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.R$attr: int collapsingToolbarLayoutStyle +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onError(java.lang.Throwable) +androidx.appcompat.widget.SearchView: int getPreferredWidth() +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTextPadding +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void run() +cyanogenmod.app.Profile: cyanogenmod.profiles.AirplaneModeSettings mAirplaneMode +wangdaye.com.geometricweather.R$id: int chip2 +androidx.lifecycle.Lifecycle$State: boolean isAtLeast(androidx.lifecycle.Lifecycle$State) +androidx.constraintlayout.widget.ConstraintLayout: int getOptimizationLevel() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum() +com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_toId +com.xw.repo.bubbleseekbar.R$layout: int notification_action +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_textAppearance +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_hint +wangdaye.com.geometricweather.R$attr: int contentInsetEnd +androidx.lifecycle.MethodCallsLogger: MethodCallsLogger() +com.google.android.material.R$styleable: int ImageFilterView_altSrc +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar +james.adaptiveicon.R$attr: int goIcon +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean cancelled +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.String TABLENAME +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.subjects.Subject signaller +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getDistrict() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +com.google.android.material.R$id: int parentRelative +com.google.android.material.R$styleable: int Slider_thumbColor +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String getWeatherPhase() +com.turingtechnologies.materialscrollbar.R$anim: R$anim() +wangdaye.com.geometricweather.R$string: int key_trend_horizontal_line_switch +com.google.gson.internal.LazilyParsedNumber: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitation(java.lang.Float) +com.google.android.material.R$id: int action_image +android.didikee.donate.R$color: int notification_action_color_filter +com.google.android.material.R$styleable: int[] ImageFilterView +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display3 +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rx() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setScaleX(float) +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +wangdaye.com.geometricweather.R$string: int settings_title_notification_style +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_horizontal_edge_offset +wangdaye.com.geometricweather.R$attr: int dialogMessage +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: long time +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endX +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_fontFamily +okio.AsyncTimeout$1: void flush() +cyanogenmod.power.PerformanceManager: int PROFILE_BALANCED +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_NAVIGATION_BAR +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +james.adaptiveicon.R$layout: int notification_template_part_chronometer +org.greenrobot.greendao.database.DatabaseOpenHelper: int version +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +androidx.swiperefreshlayout.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: AccuCurrentResult$Temperature$Imperial() +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstHorizontalStyle +com.turingtechnologies.materialscrollbar.R$styleable: int[] FlowLayout +okhttp3.OkHttpClient$Builder: boolean followSslRedirects +cyanogenmod.os.Build$CM_VERSION: int SDK_INT +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_1 +wangdaye.com.geometricweather.common.basic.models.weather.Daily: long time +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: AccuDailyResult$DailyForecasts$Sun() +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Surface +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_max +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +com.jaredrummler.android.colorpicker.R$id: int cpv_color_picker_view +androidx.coordinatorlayout.R$id: R$id() +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$layout: int item_location +com.bumptech.glide.integration.okhttp.R$drawable: int notification_action_background +io.reactivex.internal.subscriptions.DeferredScalarSubscription: java.lang.Object value +androidx.appcompat.R$color: int abc_tint_switch_track +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory createWithScheduler(io.reactivex.Scheduler) +wangdaye.com.geometricweather.R$layout: int item_details +com.google.android.material.internal.FlowLayout: int getItemSpacing() +androidx.preference.R$attr: int fontWeight +androidx.appcompat.R$style: int Theme_AppCompat_NoActionBar +cyanogenmod.app.ProfileGroup: ProfileGroup(java.lang.String,java.util.UUID,boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindSpeedEnd(java.lang.String) +androidx.lifecycle.LiveDataReactiveStreams: org.reactivestreams.Publisher toPublisher(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) +wangdaye.com.geometricweather.R$attr: int color +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +com.google.android.material.internal.NavigationMenuItemView: void setIconTintList(android.content.res.ColorStateList) +james.adaptiveicon.R$styleable: int TextAppearance_android_shadowDy +androidx.constraintlayout.widget.R$dimen: int abc_config_prefDialogWidth +com.google.android.material.R$attr: int tooltipStyle +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Runnable actual +androidx.loader.R$layout: int notification_template_part_chronometer +androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_4_material +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: void run() +okio.HashingSink: okio.HashingSink sha512(okio.Sink) +okhttp3.OkHttpClient: okhttp3.internal.cache.InternalCache internalCache() +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedPathSegment(java.lang.String) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +cyanogenmod.weather.WeatherInfo$DayForecast$1: cyanogenmod.weather.WeatherInfo$DayForecast[] newArray(int) +wangdaye.com.geometricweather.R$anim: int design_snackbar_in +wangdaye.com.geometricweather.db.entities.DaoMaster: DaoMaster(android.database.sqlite.SQLiteDatabase) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum Minimum +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_icon_size +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long skip +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchMinWidth +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Address createAddress(okhttp3.HttpUrl) +wangdaye.com.geometricweather.R$id: int design_bottom_sheet +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dark +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitation() +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView +wangdaye.com.geometricweather.R$layout: int cpv_preference_square_large +com.google.android.material.textfield.TextInputLayout: void setErrorEnabled(boolean) +okhttp3.internal.cache.CacheInterceptor$1: okhttp3.internal.cache.CacheInterceptor this$0 +com.google.android.material.R$attr: int itemFillColor +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_switchPreferenceStyle +wangdaye.com.geometricweather.R$string: int degree_day_temperature +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixTextAppearance +cyanogenmod.weather.WeatherLocation: java.lang.String toString() +androidx.legacy.coreutils.R$dimen +wangdaye.com.geometricweather.R$id: int mini +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_to_on_mtrl_000 +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_month_vertical_padding +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onNext(java.lang.Object) +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Body1 +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextAppearanceActive(int) +androidx.drawerlayout.R$id: int time +androidx.loader.R$dimen: int notification_big_circle_margin +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPreDestroyed(android.app.Activity) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_Overflow +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int StartMinute +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property CloudCover +cyanogenmod.app.Profile: void setSecondaryUuids(java.util.List) +cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onError(java.lang.Throwable) +cyanogenmod.profiles.BrightnessSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: AccuCurrentResult$WindGust$Speed$Imperial() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTemperature +james.adaptiveicon.R$dimen: int hint_pressed_alpha_material_dark +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItem +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: double lat +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabView +androidx.appcompat.widget.SearchView: void setQuery(java.lang.CharSequence) +wangdaye.com.geometricweather.R$dimen: int abc_button_padding_horizontal_material +okio.Buffer: long readLongLe() +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: java.util.Date Date +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: void setTo(java.lang.String) +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.util.concurrent.locks.Condition condition +wangdaye.com.geometricweather.R$drawable: int notif_temp_52 +com.xw.repo.bubbleseekbar.R$attr: int logo +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_progressBarStyle +android.didikee.donate.R$styleable: int[] ActionMenuView +androidx.constraintlayout.widget.R$id: int custom +androidx.appcompat.R$color wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_135 -okhttp3.internal.http2.Http2Reader$ContinuationSource: byte flags -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather -com.xw.repo.bubbleseekbar.R$color: int background_floating_material_dark -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -com.google.android.material.floatingactionbutton.FloatingActionButton: void setScaleY(float) -androidx.vectordrawable.animated.R$style: R$style() -okio.HashingSink: HashingSink(okio.Sink,java.lang.String) -android.didikee.donate.R$id: int wrap_content -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_checkbox -android.support.v4.os.IResultReceiver$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.google.android.material.R$styleable: int[] Spinner -androidx.recyclerview.R$id: int accessibility_custom_action_1 -com.google.android.material.R$styleable: int CardView_cardUseCompatPadding -okhttp3.internal.http2.ConnectionShutdownException -cyanogenmod.providers.CMSettings$System: java.lang.String PEOPLE_LOOKUP_PROVIDER -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX -com.turingtechnologies.materialscrollbar.R$layout: int design_layout_tab_icon -androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context) -androidx.appcompat.resources.R$drawable: int notification_action_background -com.bumptech.glide.R$attr: R$attr() -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize -wangdaye.com.geometricweather.db.entities.LocationEntity: java.util.TimeZone getTimeZone() -okhttp3.Address: okhttp3.Dns dns() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constrainedHeight -com.google.android.material.R$styleable: int Layout_layout_constraintLeft_toLeftOf -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_AES_256_CBC_SHA -android.didikee.donate.R$id: int action_mode_bar -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_hint -com.google.android.material.datepicker.DateValidatorPointBackward: android.os.Parcelable$Creator CREATOR -cyanogenmod.weather.CMWeatherManager$2$2: java.util.List val$weatherLocations -wangdaye.com.geometricweather.R$color: int mtrl_filled_icon_tint -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_chainUseRtl -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String weatherText -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getVisibility() -cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder mService -okio.Okio: java.util.logging.Logger logger -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: long endValidityTime -wangdaye.com.geometricweather.R$layout: int widget_day_nano -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_default -okhttp3.internal.http1.Http1Codec$AbstractSource: okhttp3.internal.http1.Http1Codec this$0 -androidx.appcompat.R$styleable: int SwitchCompat_splitTrack -io.reactivex.Observable: io.reactivex.Observable delay(io.reactivex.ObservableSource,io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -androidx.constraintlayout.widget.R$drawable: int abc_btn_default_mtrl_shape -com.google.android.material.R$styleable: int FontFamilyFont_font -androidx.constraintlayout.widget.R$attr: int brightness -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1(androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber,java.lang.Throwable) -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout -cyanogenmod.externalviews.KeyguardExternalView: boolean mIsInteractive -com.jaredrummler.android.colorpicker.R$styleable: int[] SeekBarPreference -androidx.lifecycle.extensions.R$styleable: int[] FontFamilyFont -com.google.android.material.R$styleable: int MaterialButton_iconTint -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Subtitle1 -com.google.android.material.button.MaterialButton: void setCheckable(boolean) -com.google.android.material.R$attr: int layout_anchor -wangdaye.com.geometricweather.R$styleable: int[] ActionBar -androidx.constraintlayout.widget.R$dimen: int abc_search_view_preferred_height -com.jaredrummler.android.colorpicker.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_item_min_width -com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService -com.turingtechnologies.materialscrollbar.R$dimen: int disabled_alpha_material_dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: java.lang.String Unit -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.R$color: int mtrl_calendar_selected_range -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean precipitation -android.didikee.donate.R$attr: int toolbarNavigationButtonStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_66 -androidx.appcompat.R$drawable: int abc_list_pressed_holo_light -com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onPause -wangdaye.com.geometricweather.R$attr: int content -wangdaye.com.geometricweather.R$attr: int itemTextAppearance -okhttp3.MultipartBody: long contentLength -com.google.android.material.R$attr: int drawableTint -androidx.preference.R$drawable: int notification_bg -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_disabled_holo_dark -com.bumptech.glide.R$id: int chronometer -wangdaye.com.geometricweather.R$drawable: int flag_ru -androidx.appcompat.R$styleable: int Spinner_android_dropDownWidth -cyanogenmod.externalviews.ExternalView: void performAction(java.lang.Runnable) -com.google.android.material.R$drawable: int ic_mtrl_chip_close_circle -com.google.android.material.R$style: int Widget_Design_ScrimInsetsFrameLayout -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_clipToPadding -android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -androidx.legacy.coreutils.R$drawable: int notification_template_icon_low_bg -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -wangdaye.com.geometricweather.R$attr: int drawable_res_off -androidx.swiperefreshlayout.R$color: R$color() -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Snackbar -com.google.android.material.R$styleable: int Slider_trackHeight -com.google.android.material.R$attr: int endIconMode -com.google.android.material.R$attr: int errorIconTintMode -androidx.constraintlayout.widget.R$id: int uniform -com.google.android.material.R$style: int Base_V22_Theme_AppCompat -okhttp3.internal.ws.WebSocketWriter$FrameSink: boolean closed -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.constraintlayout.widget.R$attr: int titleTextColor -com.google.android.material.card.MaterialCardView: int getContentPaddingRight() -androidx.appcompat.R$style: int Widget_AppCompat_ProgressBar_Horizontal -androidx.preference.R$string: int abc_action_menu_overflow_description -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_SET_CLIENT -androidx.fragment.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.R$attr: int percentWidth -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void dispose() -cyanogenmod.hardware.IThermalListenerCallback: void onThermalChanged(int) -james.adaptiveicon.AdaptiveIconView: void setPath(int) -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemDrawable(int) -com.google.android.material.R$attr: int motionDebug -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean mAskedShow -wangdaye.com.geometricweather.R$drawable: int ic_navigation -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: android.os.IBinder asBinder() -okhttp3.internal.connection.RealConnection: okhttp3.Protocol protocol -cyanogenmod.hardware.ICMHardwareService: byte[] readPersistentBytes(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_72 -james.adaptiveicon.R$drawable: int abc_ratingbar_small_material -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_scaleX -androidx.appcompat.R$dimen: int abc_edit_text_inset_top_material -com.google.android.material.slider.BaseSlider: int getLabelBehavior() -wangdaye.com.geometricweather.R$styleable: int Preference_enabled -com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_singlechoice_material -com.xw.repo.bubbleseekbar.R$dimen: int abc_search_view_preferred_width -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isIsModify() -androidx.constraintlayout.widget.R$color: int primary_material_dark -androidx.appcompat.resources.R$id: int accessibility_custom_action_7 -com.google.android.material.bottomsheet.BottomSheetBehavior$SavedState -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_transitionEasing -retrofit2.ParameterHandler$Part: int p -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_default_mtrl_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float Lead -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderPackage -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: java.util.concurrent.atomic.AtomicReference mSubscriber -androidx.appcompat.resources.R$id: int tag_transition_group -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthResource(int) -wangdaye.com.geometricweather.R$styleable: int[] TagView -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListPopupWindow -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Long getId() -james.adaptiveicon.R$dimen: int abc_search_view_preferred_height -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -com.turingtechnologies.materialscrollbar.R$animator: R$animator() -android.didikee.donate.R$attr: int windowMinWidthMajor -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean recover(java.io.IOException,okhttp3.internal.connection.StreamAllocation,boolean,okhttp3.Request) -androidx.appcompat.R$style: int Base_Widget_AppCompat_ButtonBar -wangdaye.com.geometricweather.db.entities.DailyEntity: float getHoursOfSun() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierMargin -cyanogenmod.externalviews.ExternalView$1 -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onError(java.lang.Throwable) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAV_BUTTONS_VALIDATOR -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display4 -com.google.android.material.R$styleable: int ConstraintSet_flow_lastHorizontalStyle -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UpdateDate -com.google.android.material.R$id: int add -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTag -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_setBtn -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceTheme -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: int getStatus() -retrofit2.ParameterHandler$PartMap -wangdaye.com.geometricweather.R$color: int colorRoot_dark -androidx.viewpager.R$id: int italic -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: java.util.concurrent.TimeUnit unit -androidx.lifecycle.viewmodel.savedstate.R: R() -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -okhttp3.OkHttpClient: okhttp3.CookieJar cookieJar() -com.google.android.material.R$color: int mtrl_choice_chip_background_color -androidx.customview.R$drawable: int notification_bg_normal_pressed -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onScreenTurnedOn -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: int index -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup -james.adaptiveicon.R$color: int primary_dark_material_dark -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -androidx.legacy.coreutils.R$id: int right_icon -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -com.google.android.material.R$styleable: int AppCompatTheme_actionModeCopyDrawable -com.google.android.material.R$attr: int arrowShaftLength -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer confidence -org.greenrobot.greendao.AbstractDao: java.lang.String getTablename() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onSucceed(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_133 -com.google.android.material.R$styleable: int KeyTrigger_framePosition -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setComponent(java.lang.String,java.lang.String) -com.google.android.material.button.MaterialButton: void setInsetTop(int) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabView -androidx.work.R$styleable: int[] GradientColor -com.turingtechnologies.materialscrollbar.R$styleable: int RecycleListView_paddingTopNoTitle -com.xw.repo.bubbleseekbar.R$attr: int titleTextColor -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue getOrCreateQueue() -wangdaye.com.geometricweather.R$string: int visibility -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State CANCELLED -androidx.appcompat.R$styleable: int[] ActionMenuItemView -com.google.android.material.R$styleable: int Layout_minHeight -com.google.android.material.R$drawable: int abc_scrubber_primary_mtrl_alpha -androidx.coordinatorlayout.R$layout: int notification_action_tombstone -com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cw -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: int UnitType -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Line2 -okhttp3.internal.cache.DiskLruCache$Snapshot: okio.Source getSource(int) -com.xw.repo.bubbleseekbar.R$id: int below_section_mark -cyanogenmod.app.CMTelephonyManager: void setDataConnectionState(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_trackTintMode -james.adaptiveicon.R$styleable: int Spinner_android_prompt -com.google.android.material.textfield.TextInputLayout: void setErrorIconOnClickListener(android.view.View$OnClickListener) -com.google.android.material.R$attr: int colorPrimarySurface -com.github.rahatarmanahmed.cpv.CircularProgressView$9: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton -com.google.android.material.R$id: int action_container -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Red -androidx.constraintlayout.motion.widget.MotionLayout: long getTransitionTimeMs() -android.didikee.donate.R$styleable: int[] LinearLayoutCompat -androidx.lifecycle.ViewModel: boolean mCleared -okhttp3.OkHttpClient: okhttp3.EventListener$Factory eventListenerFactory() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_width_major -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customColorValue -james.adaptiveicon.R$attr: int actionModeShareDrawable -retrofit2.Retrofit: retrofit2.CallAdapter nextCallAdapter(retrofit2.CallAdapter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[]) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_23 -wangdaye.com.geometricweather.R$attr: int drawableTopCompat -wangdaye.com.geometricweather.db.entities.DailyEntity: float hoursOfSun -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context) -com.bumptech.glide.integration.okhttp.R$id: int action_image -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial() -wangdaye.com.geometricweather.R$attr: int textAppearanceSmallPopupMenu -io.reactivex.Observable: io.reactivex.Observable startWith(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int[] Spinner -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_Solid -james.adaptiveicon.R$attr: int editTextColor -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetEndWithActions -wangdaye.com.geometricweather.R$color: int material_timepicker_modebutton_tint -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type UNRESTRICTED -wangdaye.com.geometricweather.R$attr: int msb_lightOnTouch -okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withConnectTimeout(int,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String name -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setId(java.lang.Long) -james.adaptiveicon.R$styleable: int[] RecycleListView -okhttp3.internal.cache.DiskLruCache$3: boolean hasNext() -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_menu -wangdaye.com.geometricweather.R$drawable: int shortcuts_thunder_foreground -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog_Alert -okio.HashingSource: HashingSource(okio.Source,java.lang.String) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: KeyguardExternalViewProviderService$Provider$ProviderImpl$4(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void fail(java.lang.Throwable,io.reactivex.Observer,io.reactivex.internal.queue.SpscLinkedArrayQueue) -androidx.appcompat.resources.R$id: int notification_main_column_container -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getSnowPrecipitation() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstVerticalBias -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_timeText -com.google.android.material.R$styleable: int Constraint_layout_editor_absoluteX -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -cyanogenmod.providers.CMSettings$System: java.lang.String __MAGICAL_TEST_PASSING_ENABLER -com.google.android.material.R$styleable: int ChipGroup_chipSpacing -wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_height_minor -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_container -james.adaptiveicon.R$style: int Platform_V21_AppCompat -com.google.android.material.textfield.TextInputLayout: void setHintTextColor(android.content.res.ColorStateList) -com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipIconTint() -cyanogenmod.app.CustomTile$ExpandedListItem: CustomTile$ExpandedListItem() -android.didikee.donate.R$attr: int dropdownListPreferredItemHeight -com.google.android.material.R$styleable: int ConstraintSet_flow_firstHorizontalStyle -androidx.appcompat.R$style: int Widget_AppCompat_RatingBar_Small -wangdaye.com.geometricweather.R$drawable: int notif_temp_91 -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_showAsAction -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void dispose() -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_titleTextStyle -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_summaryOff -retrofit2.RequestFactory$Builder: boolean gotQuery -com.google.android.material.R$styleable: int TextInputLayout_boxStrokeErrorColor -androidx.lifecycle.extensions.R$dimen: int notification_subtext_size -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -wangdaye.com.geometricweather.R$string: int content_des_drag_flag -androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogTheme -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabStyle -androidx.preference.R$id: int right -androidx.constraintlayout.widget.R$styleable: int ActionBar_indeterminateProgressStyle -com.jaredrummler.android.colorpicker.R$attr: int iconTint -wangdaye.com.geometricweather.background.receiver.widget.WidgetMultiCityProvider: WidgetMultiCityProvider() -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.ILiveLockScreenManager getService() -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LOCK_WALLPAPER_THUMBNAIL -cyanogenmod.hardware.CMHardwareManager: CMHardwareManager(android.content.Context) -okhttp3.Cache: int networkCount -wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_xml -cyanogenmod.weather.WeatherLocation$1: cyanogenmod.weather.WeatherLocation[] newArray(int) -wangdaye.com.geometricweather.R$attr: int layout_constraintTop_toBottomOf -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_reboot -com.google.android.material.R$styleable: int FloatingActionButton_fabSize -wangdaye.com.geometricweather.R$attr: int colorSwitchThumbNormal -androidx.appcompat.widget.AppCompatButton: void setBackgroundResource(int) -androidx.constraintlayout.widget.R$styleable: int Constraint_drawPath -cyanogenmod.weather.WeatherInfo: double getHumidity() -cyanogenmod.app.CMContextConstants$Features: java.lang.String STATUSBAR +com.google.android.material.R$attr: int titleTextColor +androidx.lifecycle.LiveDataReactiveStreams +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: void dispose() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String alertId +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getSuffixTextColor() +cyanogenmod.profiles.StreamSettings: int mValue +androidx.hilt.lifecycle.R$drawable: int notification_bg_low_pressed +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: ObservableSwitchMap$SwitchMapInnerObserver(io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver,long,int) +retrofit2.Retrofit$1: retrofit2.Retrofit this$0 +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getScaleX() +androidx.coordinatorlayout.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize +com.turingtechnologies.materialscrollbar.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$attr: int spinBars +androidx.constraintlayout.widget.R$attr: int animate_relativeTo +com.jaredrummler.android.colorpicker.R$dimen: int notification_top_pad_large_text +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_wavePeriod +androidx.viewpager2.R$styleable: int GradientColorItem_android_color +org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType Session +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.lang.String unit +android.didikee.donate.R$styleable: int TextAppearance_fontFamily +androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_4 +com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_circle +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.CMHardwareManager getInstance(android.content.Context) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableEnd +okhttp3.Headers$Builder +okhttp3.ConnectionSpec: java.util.List tlsVersions() +com.google.android.material.R$id: int text +wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_Tooltip +cyanogenmod.hardware.ICMHardwareService: int getNumGammaControls() +cyanogenmod.weather.WeatherLocation: boolean equals(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: long serialVersionUID +androidx.preference.MultiSelectListPreferenceDialogFragmentCompat +androidx.preference.R$styleable: int CheckBoxPreference_disableDependentsState +cyanogenmod.externalviews.KeyguardExternalView: void onScreenTurnedOff() +com.google.android.material.R$styleable: int KeyCycle_android_alpha +cyanogenmod.weather.CMWeatherManager: java.lang.String TAG +com.google.android.material.R$attr: int errorTextColor +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CITY +wangdaye.com.geometricweather.db.entities.DailyEntity: long time +com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_android_button +com.google.android.material.R$id: int mtrl_calendar_frame +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable,int) +com.google.android.material.R$attr: int labelBehavior +cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(cyanogenmod.app.CustomTile$1) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_128 +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onDrop(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long end +com.google.android.material.R$styleable: int ConstraintSet_flow_maxElementsWrap +james.adaptiveicon.R$styleable: int Toolbar_buttonGravity +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_MediumComponent +com.google.android.material.R$dimen: int abc_dialog_fixed_height_major +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction +com.bumptech.glide.R$styleable: int CoordinatorLayout_keylines +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver[] EMPTY +androidx.preference.R$attr: int fastScrollVerticalTrackDrawable +androidx.viewpager2.R$id: int accessibility_custom_action_24 +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabView +androidx.constraintlayout.widget.R$attr: int maxVelocity +retrofit2.BuiltInConverters$BufferingResponseBodyConverter +android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +com.xw.repo.bubbleseekbar.R$attr: int windowActionBar +androidx.constraintlayout.utils.widget.ImageFilterView: float getContrast() +wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_enforceMaterialTheme +android.didikee.donate.R$styleable: int AppCompatImageView_tintMode +androidx.constraintlayout.widget.R$id: int search_go_btn +androidx.appcompat.R$id: int accessibility_custom_action_22 +com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_out_top +okhttp3.OkHttpClient$Builder: java.util.List interceptors +com.google.android.material.R$style: int Widget_AppCompat_ListView_DropDown +androidx.constraintlayout.widget.R$id: int tag_unhandled_key_listeners +androidx.hilt.lifecycle.R$id: int tag_accessibility_pane_title +okhttp3.internal.http2.Http2Reader: java.util.List readHeaderBlock(int,short,byte,int) +androidx.core.widget.NestedScrollView: float getTopFadingEdgeStrength() +androidx.preference.R$color: int material_grey_900 +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +androidx.coordinatorlayout.R$dimen: int compat_button_inset_horizontal_material +com.google.android.material.timepicker.TimePickerView: TimePickerView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: java.lang.String Unit +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_bar_up_container +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_elevation +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_maxHeight +okio.ForwardingTimeout: okio.Timeout delegate() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 +okhttp3.ConnectionSpec: void apply(javax.net.ssl.SSLSocket,boolean) +androidx.preference.R$styleable: int Toolbar_titleMarginTop +androidx.appcompat.widget.AppCompatSpinner: void setAdapter(android.widget.Adapter) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context) +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_corner_radius_material +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void dispose() +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderPackage +okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV2 +com.xw.repo.bubbleseekbar.R$attr: int dropDownListViewStyle +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_material +cyanogenmod.externalviews.ExternalView$1: void onServiceDisconnected(android.content.ComponentName) +androidx.appcompat.widget.Toolbar: int getCurrentContentInsetLeft() +androidx.coordinatorlayout.R$id: int info +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_seek_by_section +wangdaye.com.geometricweather.R$attr: int bsb_thumb_radius_on_dragging +wangdaye.com.geometricweather.R$drawable: int notif_temp_122 +com.google.android.material.R$styleable: int ConstraintSet_android_alpha +wangdaye.com.geometricweather.R$bool: int config_materialPreferenceIconSpaceReserved +cyanogenmod.profiles.BrightnessSettings: boolean isOverride() +androidx.hilt.work.R$drawable: int notification_bg_normal +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_padding_material +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_srcCompat +wangdaye.com.geometricweather.R$style: int Widget_Design_TextInputLayout +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textFontWeight +androidx.preference.R$attr: int fontStyle +androidx.appcompat.R$styleable: int SwitchCompat_trackTintMode +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isBody +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: ObservableSequenceEqual$EqualCoordinator(io.reactivex.Observer,int,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) +androidx.constraintlayout.widget.R$attr: int flow_padding +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean tillTheEnd +com.google.android.material.textfield.TextInputLayout: int getBoxBackgroundMode() +androidx.appcompat.R$attr: int alphabeticModifiers +android.didikee.donate.R$styleable: int[] ColorStateListItem +okhttp3.CipherSuite: java.util.Comparator ORDER_BY_NAME +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$Event upEvent(androidx.lifecycle.Lifecycle$State) +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_NoActionBar +wangdaye.com.geometricweather.R$drawable: int weather_wind_pixel +com.jaredrummler.android.colorpicker.R$attr: int widgetLayout +com.google.android.material.progressindicator.ProgressIndicator: int getCircularRadius() +wangdaye.com.geometricweather.R$attr: int overlapAnchor +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int RainProbability +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_disableDependentsState +androidx.constraintlayout.widget.R$styleable: int[] StateSet +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: boolean completed +wangdaye.com.geometricweather.R$attr: int checkedIconSize +james.adaptiveicon.R$styleable: int SwitchCompat_splitTrack +com.google.android.material.R$styleable: int Constraint_android_maxWidth +james.adaptiveicon.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.subjects.UnicastSubject window +cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.ICMStatusBarManager mStatusBarService +com.google.android.material.R$attr: int actionMenuTextAppearance +androidx.preference.EditTextPreferenceDialogFragmentCompat +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: long serialVersionUID +androidx.lifecycle.extensions.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.R$attr: int buttonBarPositiveButtonStyle +com.jaredrummler.android.colorpicker.R$layout: int notification_template_icon_group +cyanogenmod.app.StatusBarPanelCustomTile: android.os.UserHandle getUser() +androidx.appcompat.resources.R$id: int icon +okhttp3.internal.http1.Http1Codec: okio.BufferedSource source +com.google.android.material.R$string: int abc_menu_space_shortcut_label +android.didikee.donate.R$attr: int selectableItemBackground +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.functions.BooleanSupplier stop +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_text_size +androidx.appcompat.R$id: int image +com.google.android.material.R$style: int Widget_Compat_NotificationActionContainer +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startY +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean disposed +okio.Buffer: boolean rangeEquals(long,okio.ByteString,int,int) +android.didikee.donate.R$id: int search_plate +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum +wangdaye.com.geometricweather.R$attr: int buttonPanelSideLayout +wangdaye.com.geometricweather.R$color: int colorTextGrey2nd +androidx.constraintlayout.widget.R$styleable: int OnSwipe_moveWhenScrollAtTop +com.turingtechnologies.materialscrollbar.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +androidx.preference.R$attr: int min +wangdaye.com.geometricweather.R$id: int search_go_btn +okio.Buffer$2: int read() +cyanogenmod.weatherservice.ServiceRequestResult: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +com.google.android.material.R$styleable: int Toolbar_contentInsetEnd +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +com.google.android.material.R$anim: int abc_popup_enter +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_mode_bar +com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding valueOf(java.lang.String) +com.google.android.material.R$drawable: int abc_action_bar_item_background_material +wangdaye.com.geometricweather.R$layout: int design_text_input_end_icon +com.google.android.material.R$id: int view_offset_helper +androidx.hilt.R$drawable: int notify_panel_notification_icon_bg +androidx.constraintlayout.widget.R$style: int Platform_AppCompat_Light +com.xw.repo.bubbleseekbar.R$attr: int titleMarginBottom +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: $Gson$Types$WildcardTypeImpl(java.lang.reflect.Type[],java.lang.reflect.Type[]) +okhttp3.HttpUrl: java.lang.String PATH_SEGMENT_ENCODE_SET +cyanogenmod.profiles.AirplaneModeSettings$1: cyanogenmod.profiles.AirplaneModeSettings[] newArray(int) +cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper access$100(cyanogenmod.app.CustomTileListenerService) +wangdaye.com.geometricweather.R$attr: int hideMotionSpec +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default +okhttp3.internal.platform.Platform: int INFO +com.xw.repo.bubbleseekbar.R$attr: int toolbarStyle +okhttp3.internal.Internal: void put(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) +cyanogenmod.app.IPartnerInterface$Stub$Proxy: void setAirplaneModeEnabled(boolean) +androidx.preference.R$styleable: int SwitchPreference_android_disableDependentsState +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean point +com.google.android.material.R$styleable: int AppCompatSeekBar_android_thumb +androidx.viewpager.R$dimen: int compat_button_padding_vertical_material +okhttp3.internal.cache.CacheInterceptor: okhttp3.Headers combine(okhttp3.Headers,okhttp3.Headers) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalStyle +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_11 +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode +cyanogenmod.weather.WeatherInfo: int hashCode() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Body2 +james.adaptiveicon.R$attr: int barLength +androidx.viewpager2.R$attr: int fontProviderQuery +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_precise_anchor_threshold +okhttp3.internal.Internal: void initializeInstanceForTests() +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: MfRainResult() +androidx.appcompat.R$styleable: int AppCompatTheme_searchViewStyle +com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat_Dark +james.adaptiveicon.R$styleable: int TextAppearance_textLocale +cyanogenmod.hardware.ICMHardwareService: boolean get(int) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_TextView +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_2_30 +androidx.appcompat.widget.SwitchCompat: int getSwitchMinWidth() +androidx.lifecycle.LiveData: int mActiveCount +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_title +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String weatherText +androidx.activity.R$dimen: int notification_small_icon_background_padding +com.jaredrummler.android.colorpicker.R$id: int action_mode_bar +androidx.dynamicanimation.R$dimen: int notification_right_side_padding_top +com.turingtechnologies.materialscrollbar.R$attr: int cardMaxElevation +androidx.lifecycle.Lifecycling: androidx.lifecycle.LifecycleEventObserver lifecycleEventObserver(java.lang.Object) +cyanogenmod.providers.CMSettings$Secure: java.lang.String STATS_COLLECTION_REPORTED +androidx.constraintlayout.widget.R$styleable: int Toolbar_navigationIcon +com.google.android.material.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +com.xw.repo.bubbleseekbar.R$id: int edit_query +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_scrollContainer +io.reactivex.internal.disposables.ArrayCompositeDisposable: io.reactivex.disposables.Disposable replaceResource(int,io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +androidx.appcompat.widget.SwitchCompat: boolean getSplitTrack() +androidx.preference.R$attr: int drawableSize +org.greenrobot.greendao.AbstractDaoSession: AbstractDaoSession(org.greenrobot.greendao.database.Database) +androidx.constraintlayout.utils.widget.ImageFilterButton: void setRoundPercent(float) +androidx.constraintlayout.widget.R$attr: int actionMenuTextColor +okio.RealBufferedSource: void skip(long) +wangdaye.com.geometricweather.R$animator: int weather_haze_3 +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_ActionBar +androidx.constraintlayout.widget.R$attr: int alpha +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.ICMHardwareService sService +com.google.android.material.datepicker.MaterialTextInputPicker: MaterialTextInputPicker() +com.google.android.material.slider.BaseSlider: float getValueOfTouchPositionAbsolute() +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String RINGTONE +wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconEnabled +wangdaye.com.geometricweather.R$color: int switch_thumb_normal_material_light +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +androidx.work.impl.background.systemalarm.SystemAlarmService: SystemAlarmService() +com.google.gson.FieldNamingPolicy$2: FieldNamingPolicy$2(java.lang.String,int) +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_textOff +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: long getUpdateTime() +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleTint +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionModeOverlay +androidx.hilt.R$styleable: int Fragment_android_name +com.google.android.material.R$styleable: int MenuItem_actionLayout +com.bumptech.glide.integration.okhttp.R$dimen: int notification_small_icon_background_padding +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleEnabled(boolean) +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: void providerDied() +com.google.android.material.R$dimen: int mtrl_shape_corner_size_small_component +cyanogenmod.app.ProfileManager: android.app.NotificationGroup getNotificationGroup(java.util.UUID) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_right_mtrl_light +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date sunsetTime +okhttp3.internal.http1.Http1Codec: long headerLimit +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: io.reactivex.Observer downstream +com.bumptech.glide.integration.okhttp.R$drawable: R$drawable() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling Cooling +com.google.android.material.slider.RangeSlider: float getValueFrom() +com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$drawable: int abc_btn_check_material +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: JdkWithJettyBootPlatform$JettyNegoProvider(java.util.List) io.reactivex.internal.functions.Functions$HashSetCallable: java.lang.Object call() -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onComplete() -james.adaptiveicon.R$dimen: int abc_dialog_fixed_width_major -com.google.android.material.R$style: int TextAppearance_AppCompat_Title_Inverse -androidx.preference.R$drawable: int abc_scrubber_control_off_mtrl_alpha -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_18 -com.turingtechnologies.materialscrollbar.R$layout: int design_layout_snackbar -com.google.android.material.R$styleable: int LinearLayoutCompat_android_weightSum -james.adaptiveicon.R$anim: int abc_slide_out_top -okhttp3.Cache$Entry: java.lang.String RECEIVED_MILLIS -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setAlarm(java.lang.String) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: IKeyguardExternalViewProvider$Stub() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String zh_TW -wangdaye.com.geometricweather.R$id: int tag_unhandled_key_event_manager -com.google.android.material.R$attr: int layout_constraintBaseline_toBaselineOf -james.adaptiveicon.R$styleable: int AppCompatTheme_dialogCornerRadius -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_fontVariationSettings -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_toggle_margin_top -com.google.android.material.R$id: int mtrl_view_tag_bottom_padding -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_checkable -com.bumptech.glide.integration.okhttp.R$attr: int layout_insetEdge -android.didikee.donate.R$styleable: int AppCompatTheme_toolbarStyle -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String[] ROWS -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_hovered_z -com.xw.repo.bubbleseekbar.R$attr: int color -com.google.android.material.R$attr: int maxLines -com.xw.repo.bubbleseekbar.R$style: int Base_V26_Theme_AppCompat -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_BLUETOOTH -james.adaptiveicon.R$id: int right_icon -androidx.vectordrawable.animated.R$dimen: int compat_notification_large_icon_max_width -androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context,android.util.AttributeSet) -androidx.drawerlayout.R$styleable: int GradientColor_android_gradientRadius -james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_percent -retrofit2.http.HTTP: java.lang.String path() -cyanogenmod.externalviews.ExternalView$5 -cyanogenmod.profiles.RingModeSettings: java.lang.String mValue -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.R$attr: int bsb_always_show_bubble_delay -okio.Pipe$PipeSink -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startY -com.jaredrummler.android.colorpicker.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -okhttp3.Cache: int writeSuccessCount -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -androidx.lifecycle.MethodCallsLogger: boolean approveCall(java.lang.String,int) -wangdaye.com.geometricweather.R$styleable: int CardView_contentPadding -androidx.viewpager2.widget.ViewPager2: int getOffscreenPageLimit() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_46 -com.jaredrummler.android.colorpicker.R$styleable: int[] MenuGroup -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -cyanogenmod.externalviews.KeyguardExternalView$1: void onServiceConnected(android.content.ComponentName,android.os.IBinder) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_activityChooserViewStyle -wangdaye.com.geometricweather.R$styleable: int DrawerLayout_unfold -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Small -com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_toBottomOf -okhttp3.internal.connection.RealConnection$1: okhttp3.internal.connection.RealConnection this$0 +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginEnd +androidx.activity.R$styleable: int GradientColorItem_android_offset +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_focused_holo +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void cancel() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_searchViewStyle +cyanogenmod.themes.IThemeService$Stub$Proxy: int getLastThemeChangeRequestType() +com.jaredrummler.android.colorpicker.R$styleable: int[] ViewStubCompat +retrofit2.RequestFactory: boolean isKotlinSuspendFunction +com.github.rahatarmanahmed.cpv.CircularProgressView: void onDraw(android.graphics.Canvas) +androidx.transition.R$drawable +okio.HashingSource: okio.HashingSource md5(okio.Source) +androidx.appcompat.R$dimen +okio.Buffer: byte[] DIGITS +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: java.lang.String getInterfaceDescriptor() +cyanogenmod.weather.CMWeatherManager$2$2: cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener val$listener +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.ChineseCityEntity) +android.didikee.donate.R$styleable: int SwitchCompat_switchTextAppearance +androidx.lifecycle.ReportFragment: void onStop() +com.xw.repo.bubbleseekbar.R$attr: int dialogTheme +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SearchView +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getNighttimeWindDegree() +androidx.coordinatorlayout.R$attr: int layout_behavior +wangdaye.com.geometricweather.R$array: int clock_font +androidx.appcompat.R$attr: int buttonPanelSideLayout +com.google.android.material.R$styleable: int PropertySet_android_alpha +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$styleable: int Chip_shapeAppearanceOverlay +androidx.recyclerview.R$integer: R$integer() +androidx.lifecycle.ClassesInfoCache: java.lang.reflect.Method[] getDeclaredMethods(java.lang.Class) +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String country +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial Imperial +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Body1 +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_card_spacing +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCutDrawable +retrofit2.RequestBuilder: RequestBuilder(java.lang.String,okhttp3.HttpUrl,java.lang.String,okhttp3.Headers,okhttp3.MediaType,boolean,boolean,boolean) +okhttp3.internal.cache.CacheInterceptor$1 +androidx.preference.R$style: int Base_V22_Theme_AppCompat +cyanogenmod.themes.IThemeService: void unregisterThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) +androidx.customview.R$drawable +com.google.android.material.circularreveal.CircularRevealFrameLayout: CircularRevealFrameLayout(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: java.util.List getValue() +com.google.android.material.R$styleable: int StateListDrawable_android_visible +androidx.activity.R$id: int action_divider +okhttp3.internal.http2.Hpack$Reader: int maxDynamicTableByteCount +androidx.constraintlayout.widget.R$styleable: int MotionHelper_onHide +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelMenuListWidth +wangdaye.com.geometricweather.R$attr: int toolbarStyle +androidx.viewpager.widget.ViewPager: void setOffscreenPageLimit(int) +okio.Pipe$PipeSink: void close() +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitationDuration() +wangdaye.com.geometricweather.remoteviews.config.Hilt_DailyTrendWidgetConfigActivity: Hilt_DailyTrendWidgetConfigActivity() +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_headline_material +androidx.activity.R$dimen: R$dimen() +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setDaytimeTemperature(int) +com.xw.repo.bubbleseekbar.R$color: int abc_background_cache_hint_selector_material_dark +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource[],io.reactivex.functions.Function) +okhttp3.internal.cache.CacheStrategy: CacheStrategy(okhttp3.Request,okhttp3.Response) +com.xw.repo.bubbleseekbar.R$attr: int buttonTintMode +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_left_mtrl_light +com.google.android.material.R$color: int material_on_surface_disabled +androidx.appcompat.R$dimen: int abc_action_bar_content_inset_with_nav +com.xw.repo.bubbleseekbar.R$attr: int backgroundTint +okhttp3.Dispatcher: void executed(okhttp3.RealCall) +com.google.android.material.R$attr: int brightness +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.preference.R$string: int abc_action_bar_up_description +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onDetach() +com.xw.repo.bubbleseekbar.R$color: int abc_tint_btn_checkable +com.github.rahatarmanahmed.cpv.CircularProgressView$8: float val$maxSweep +com.google.android.material.R$attr: int minHeight +android.didikee.donate.R$attr: int actionOverflowMenuStyle +androidx.lifecycle.extensions.R$drawable: int notification_action_background +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionMode +androidx.vectordrawable.R$drawable: R$drawable() +android.didikee.donate.R$style: int Widget_AppCompat_ProgressBar +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void dispose() +android.didikee.donate.R$styleable: int AppCompatTheme_activityChooserViewStyle +com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_top +okhttp3.Cache$CacheRequestImpl$1: okhttp3.internal.cache.DiskLruCache$Editor val$editor +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: boolean isDisposed() +com.google.android.material.R$color: int androidx_core_secondary_text_default_material_light +cyanogenmod.weather.WeatherInfo: int describeContents() +androidx.constraintlayout.widget.R$styleable: int Transform_android_transformPivotY +wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_weight +androidx.lifecycle.LifecycleService: void onDestroy() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar_Small +androidx.recyclerview.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndSwitch +androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +okhttp3.internal.cache.DiskLruCache: int redundantOpCount +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_AM_PM +android.didikee.donate.R$styleable: int Spinner_android_dropDownWidth +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$xml: int widget_clock_day_week +androidx.cardview.widget.CardView: float getMaxCardElevation() +android.didikee.donate.R$styleable: int Spinner_android_prompt +james.adaptiveicon.R$layout: int abc_list_menu_item_layout +wangdaye.com.geometricweather.R$font: int product_sans_light +wangdaye.com.geometricweather.R$dimen: int material_emphasis_medium +james.adaptiveicon.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +com.turingtechnologies.materialscrollbar.R$id: int scrollIndicatorUp +com.turingtechnologies.materialscrollbar.R$attr: int labelVisibilityMode +com.google.android.material.R$styleable: int KeyAttribute_android_translationZ +com.google.android.material.R$layout: int select_dialog_item_material +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxBackgroundMode +androidx.dynamicanimation.R$id: int icon +androidx.constraintlayout.widget.R$layout: int select_dialog_multichoice_material +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_21 +com.google.android.material.R$attr: int preserveIconSpacing +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: int maxColor +androidx.appcompat.widget.AppCompatImageButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter daytimeWindDegreeConverter +androidx.preference.R$styleable: int FontFamilyFont_font +com.google.android.material.R$style: int TextAppearance_AppCompat_Small +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_showSeekBarValue +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +wangdaye.com.geometricweather.R$string: int feedback_background_location_summary +com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_elevation +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float snow +androidx.preference.R$color: int material_grey_50 +wangdaye.com.geometricweather.R$drawable: int weather_haze_3 +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isDataConnectionSelectedOnSub +androidx.preference.R$styleable: int TextAppearance_android_textColorLink +androidx.vectordrawable.animated.R$id: int accessibility_action_clickable_span +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_logo +androidx.appcompat.R$attr: int contentInsetStart +androidx.appcompat.R$style: int TextAppearance_AppCompat_Large +android.didikee.donate.R$layout: int abc_dialog_title_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean +wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_chainStyle +androidx.appcompat.app.AppCompatViewInflater: AppCompatViewInflater() +wangdaye.com.geometricweather.R$attr: int singleChoiceItemLayout +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Borderless +com.google.android.material.R$layout: int abc_dialog_title_material +wangdaye.com.geometricweather.common.basic.models.weather.History: int getDaytimeTemperature() +wangdaye.com.geometricweather.R$dimen: int design_snackbar_max_width +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCloseDrawable +okio.AsyncTimeout: void enter() +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: java.util.concurrent.atomic.AtomicReference upstream +androidx.preference.R$attr: int icon +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: HistoryEntityDao$Properties() +androidx.preference.R$styleable: int RecyclerView_android_descendantFocusability +androidx.lifecycle.LifecycleRegistry: androidx.arch.core.internal.FastSafeIterableMap mObserverMap +androidx.hilt.work.R$id: int accessibility_custom_action_6 +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconTintMode +cyanogenmod.profiles.RingModeSettings$1: java.lang.Object[] newArray(int) +com.bumptech.glide.R$styleable: int GradientColor_android_centerX +androidx.activity.R$id: int accessibility_custom_action_21 +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft +james.adaptiveicon.R$color: int bright_foreground_material_light +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_48dp +com.google.android.material.R$attr: int actionModePopupWindowStyle +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +androidx.recyclerview.R$id: int accessibility_custom_action_10 +androidx.appcompat.R$id: int action_container +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +io.reactivex.exceptions.MissingBackpressureException: MissingBackpressureException() +androidx.appcompat.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +com.google.android.material.R$style: int Widget_Design_TextInputLayout +james.adaptiveicon.R$id: int actions +cyanogenmod.weather.WeatherInfo$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getRagweedIndex() +com.google.android.material.chip.Chip: void setCloseIconVisible(boolean) +okhttp3.RealCall$1 +wangdaye.com.geometricweather.R$drawable: int flag_pl +cyanogenmod.hardware.CMHardwareManager: int FEATURE_TAP_TO_WAKE +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode FOG +okhttp3.internal.connection.RealConnection: RealConnection(okhttp3.ConnectionPool,okhttp3.Route) +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: void dispose() +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_menu_item +androidx.lifecycle.extensions.R$drawable: int notification_bg +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean done +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder eventListener(okhttp3.EventListener) +cyanogenmod.weather.WeatherInfo$DayForecast: int mConditionCode +retrofit2.http.DELETE +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void dispose() +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onSuccess(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: java.lang.String desc +com.google.android.material.R$styleable: int ImageFilterView_overlay +james.adaptiveicon.R$attr: int paddingBottomNoButtons +wangdaye.com.geometricweather.R$string: int feedback_resident_location +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawableItem_android_drawable +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_enabled +com.google.android.material.R$drawable: int material_ic_keyboard_arrow_right_black_24dp +androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_bottom_material +james.adaptiveicon.R$styleable: int FontFamily_fontProviderAuthority +androidx.viewpager.widget.PagerTabStrip: void setTabIndicatorColor(int) +cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getProfileByName(java.lang.String) +james.adaptiveicon.R$styleable: int TextAppearance_android_shadowDx +okio.Segment: int SHARE_MINIMUM +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRainPrecipitation(java.lang.Float) +androidx.preference.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.vectordrawable.animated.R$attr: R$attr() +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$color: int colorLine_dark +com.jaredrummler.android.colorpicker.R$attr: int alertDialogStyle +okhttp3.HttpUrl: java.lang.String PATH_SEGMENT_ENCODE_SET_URI +com.jaredrummler.android.colorpicker.R$id: int large +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_top_padding +com.google.android.material.R$styleable: int[] CustomAttribute +cyanogenmod.themes.IThemeService$Stub$Proxy: boolean isThemeBeingProcessed(java.lang.String) +androidx.recyclerview.R$styleable: int FontFamily_fontProviderAuthority +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_backgroundTint +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Tooltip +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String _ID +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationX +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver parent +wangdaye.com.geometricweather.R$id: int mtrl_picker_title_text +cyanogenmod.profiles.StreamSettings: boolean mOverride +wangdaye.com.geometricweather.R$layout: int preference_widget_checkbox +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +james.adaptiveicon.R$string: int search_menu_title +androidx.work.R$id: int accessibility_custom_action_25 +com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Headline6 +android.didikee.donate.R$attr: int windowNoTitle +wangdaye.com.geometricweather.R$drawable: int weather_sleet_2 +android.didikee.donate.R$attr: int actionBarTabTextStyle +james.adaptiveicon.R$drawable: int abc_ic_star_half_black_16dp +cyanogenmod.util.ColorUtils: float[] convertRGBtoLAB(int) +androidx.viewpager2.R$styleable: int RecyclerView_reverseLayout +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_icon +cyanogenmod.providers.CMSettings$Secure: java.lang.String CM_SETUP_WIZARD_COMPLETED +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: CaiYunMainlyResult$CurrentBean$FeelsLikeBean() +android.didikee.donate.R$styleable: int ActionBar_contentInsetRight +com.turingtechnologies.materialscrollbar.R$attr: int thickness +androidx.appcompat.widget.ScrollingTabContainerView: void setTabSelected(int) +wangdaye.com.geometricweather.R$id: int largeLabel +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getWindowAnimations() +androidx.constraintlayout.widget.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date getFrom() +com.bumptech.glide.R$id: int italic +okio.Okio: okio.Sink appendingSink(java.io.File) +androidx.constraintlayout.widget.R$styleable: int Transition_transitionDisable +retrofit2.http.QueryMap +cyanogenmod.hardware.CMHardwareManager: boolean setDisplayColorCalibration(int[]) +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_left_mtrl_dark +android.didikee.donate.R$attr: int color +com.google.android.material.R$id: int ghost_view +okhttp3.internal.http2.Http2Codec: java.lang.String PROXY_CONNECTION +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: long EpochTime +wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_bias +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_dark +com.google.android.material.R$attr: int shrinkMotionSpec +com.turingtechnologies.materialscrollbar.R$id: int reservedNamedId +androidx.activity.R$attr: int fontProviderQuery +com.turingtechnologies.materialscrollbar.R$style: int Base_CardView +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginTop +com.google.android.material.R$dimen: int mtrl_badge_with_text_radius +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean done +com.turingtechnologies.materialscrollbar.R$attr: int logoDescription +wangdaye.com.geometricweather.R$anim: int abc_slide_in_top +com.google.android.material.chip.Chip: void setHideMotionSpecResource(int) +okhttp3.Request: okhttp3.Request$Builder newBuilder() +cyanogenmod.providers.CMSettings$Global: java.lang.String getString(android.content.ContentResolver,java.lang.String) +okhttp3.internal.http.HttpHeaders: int skipWhitespace(java.lang.String,int) +com.google.android.material.R$id: int spline +android.didikee.donate.R$attr: int actionModeSplitBackground +androidx.constraintlayout.widget.R$attr: int dropDownListViewStyle +cyanogenmod.app.ILiveLockScreenManager: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +james.adaptiveicon.R$dimen: int notification_action_text_size +com.github.rahatarmanahmed.cpv.CircularProgressView$1: void onAnimationUpdate(android.animation.ValueAnimator) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX getSpeed() +com.google.android.material.bottomappbar.BottomAppBar: void setFabAlignmentMode(int) +wangdaye.com.geometricweather.R$styleable: int[] AppCompatImageView +android.didikee.donate.R$dimen: int abc_action_bar_overflow_padding_end_material +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetStartWithNavigation +androidx.constraintlayout.widget.R$attr: int drawableStartCompat +io.reactivex.internal.operators.observable.ObservableReplay$Node: ObservableReplay$Node(java.lang.Object) +androidx.hilt.R$dimen +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onNext(java.lang.Object) +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode[] values() +androidx.preference.R$id: int action_text +androidx.preference.R$styleable: int PreferenceImageView_android_maxWidth +androidx.fragment.R$attr: int fontWeight +cyanogenmod.app.LiveLockScreenInfo: int describeContents() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginTop +com.google.android.material.R$attr: int onNegativeCross +cyanogenmod.os.Concierge$ParcelInfo: int mSizePosition +io.reactivex.Observable: io.reactivex.Observable switchOnNextDelayError(io.reactivex.ObservableSource) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String getValue() +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean isDisposed() +cyanogenmod.app.IProfileManager: boolean addProfile(cyanogenmod.app.Profile) +com.xw.repo.bubbleseekbar.R$id: int titleDividerNoCustom +james.adaptiveicon.R$attr: int actionModeSelectAllDrawable +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float thunderstorm +androidx.appcompat.R$id: int expand_activities_button +androidx.core.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$array: int week_icon_mode_values +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCopyDrawable +androidx.preference.R$layout: int preference_list_fragment +okio.Buffer: okio.ByteString snapshot(int) +wangdaye.com.geometricweather.R$string: int circular_progress_view +io.reactivex.Observable: io.reactivex.Single first(java.lang.Object) +androidx.core.R$id: int actions +com.bumptech.glide.integration.okhttp.R$dimen +androidx.appcompat.R$style: int AlertDialog_AppCompat +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline5 +android.didikee.donate.R$layout: int abc_screen_content_include +io.reactivex.Observable: io.reactivex.Observable interval(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_SECURE_SETTINGS +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int IconCode +cyanogenmod.profiles.StreamSettings$1: cyanogenmod.profiles.StreamSettings createFromParcel(android.os.Parcel) +com.google.android.material.slider.RangeSlider: void setTickInactiveTintList(android.content.res.ColorStateList) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight +cyanogenmod.weather.ICMWeatherManager$Stub: java.lang.String DESCRIPTOR +androidx.constraintlayout.widget.Guideline: void setGuidelineEnd(int) +com.google.android.material.R$id: int buttonPanel +com.google.android.material.R$dimen: int hint_pressed_alpha_material_light +com.google.android.material.R$dimen: int mtrl_calendar_header_selection_line_height +androidx.hilt.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean getVisibility() +okio.Buffer: int read(byte[],int,int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_13 +com.google.android.material.R$styleable: int KeyTrigger_motion_triggerOnCollision +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatImageView +com.google.android.material.R$style: int Theme_MaterialComponents_Light +androidx.appcompat.R$style: int Widget_AppCompat_Button_Colored +com.github.rahatarmanahmed.cpv.CircularProgressView: void removeListener(com.github.rahatarmanahmed.cpv.CircularProgressViewListener) +okhttp3.Cache$2: java.lang.Object next() +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getLevel() +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_rebuildResourceCache +com.google.android.material.tabs.TabLayout: void removeOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) +wangdaye.com.geometricweather.R$layout: int item_line +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.Observer downstream +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +okhttp3.internal.http.RealInterceptorChain: okhttp3.EventListener eventListener() +androidx.viewpager2.R$drawable: int notify_panel_notification_icon_bg +com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +com.turingtechnologies.materialscrollbar.R$id: int search_src_text +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_icon_btn_padding_left +wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_pressed_alpha +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit getInstance(java.lang.String) +androidx.preference.R$styleable: int PreferenceTheme_seekBarPreferenceStyle +com.google.android.material.R$styleable: int Layout_layout_constraintVertical_bias +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge +cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onCustomTileRemoved +androidx.preference.R$attr: int paddingTopNoTitle +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_iconTintMode +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_20 +com.google.android.material.R$id: int scrollView +wangdaye.com.geometricweather.R$layout: int item_about_library +androidx.lifecycle.LiveData: LiveData(java.lang.Object) +androidx.recyclerview.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.common.ui.widgets.TagView: void setChecked(boolean) +org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession() +androidx.constraintlayout.widget.R$drawable: int abc_seekbar_thumb_material +okhttp3.internal.http1.Http1Codec$FixedLengthSource +android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedWidthMajor +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPrefixText() +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor +okio.SegmentedByteString: byte[] toByteArray() +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: io.reactivex.processors.FlowableProcessor processor +com.turingtechnologies.materialscrollbar.R$attr: int actionModeCutDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.google.android.material.R$attr: int autoSizePresetSizes +android.didikee.donate.R$attr: int windowFixedHeightMajor +com.google.android.material.R$styleable: int AppCompatTheme_popupMenuStyle +james.adaptiveicon.R$id: int custom +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +androidx.viewpager2.R$integer +io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okhttp3.Interceptor$Chain: int connectTimeoutMillis() +okhttp3.HttpUrl: java.lang.String fragment +com.jaredrummler.android.colorpicker.R$attr: int selectableItemBackground +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionMode +okio.RealBufferedSink: okio.BufferedSink writeLongLe(long) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: void setWeathercn(java.lang.String) +cyanogenmod.app.CustomTile$ExpandedItem$1: CustomTile$ExpandedItem$1() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_SearchResult_Title +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_font +androidx.preference.R$styleable: int Preference_android_persistent +androidx.preference.R$styleable: int TextAppearance_android_textFontWeight +okhttp3.RequestBody$2 +androidx.coordinatorlayout.R$dimen: int notification_content_margin_start +cyanogenmod.os.Build: java.lang.String getNameForSDKInt(int) +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_alphabeticModifiers +com.google.android.material.R$styleable: int SearchView_searchIcon +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Medium_Inverse +androidx.fragment.app.FragmentContainerView: void setLayoutTransition(android.animation.LayoutTransition) +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: boolean isDisposed() +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: int getChartTop() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.coordinatorlayout.widget.CoordinatorLayout$SavedState: android.os.Parcelable$Creator CREATOR +okhttp3.internal.connection.RouteSelector: java.util.List inetSocketAddresses +com.google.android.material.R$dimen: int mtrl_slider_thumb_elevation +com.google.gson.stream.JsonReader: java.lang.String nextString() +io.reactivex.Observable: io.reactivex.Observable sample(io.reactivex.ObservableSource,boolean) +androidx.loader.R$color: int ripple_material_light +retrofit2.ParameterHandler$QueryMap +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode +wangdaye.com.geometricweather.R$styleable: int MaterialButton_cornerRadius +com.turingtechnologies.materialscrollbar.R$style: int Platform_AppCompat +cyanogenmod.power.IPerformanceManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +okio.InflaterSource: InflaterSource(okio.BufferedSource,java.util.zip.Inflater) +com.google.android.material.R$drawable: int notification_icon_background +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderTitle +io.reactivex.Observable: io.reactivex.Maybe reduce(io.reactivex.functions.BiFunction) +androidx.lifecycle.LiveData: java.lang.Object NOT_SET +androidx.viewpager.R$drawable: int notification_bg_low +okio.BufferedSink: okio.BufferedSink write(okio.ByteString) +androidx.viewpager2.R$id: int accessibility_custom_action_1 +com.google.android.material.button.MaterialButton: int getIconPadding() +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog +androidx.core.R$id: int tag_accessibility_clickable_spans +android.didikee.donate.R$attr: int itemPadding +wangdaye.com.geometricweather.R$attr: int daySelectedStyle +androidx.preference.R$attr: int isPreferenceVisible +com.google.android.material.transformation.ExpandableBehavior: ExpandableBehavior() +james.adaptiveicon.R$drawable +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status IN_PROGRESS +com.xw.repo.bubbleseekbar.R$id: int action_text +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial Imperial +androidx.dynamicanimation.R$drawable: int notification_bg +okhttp3.Challenge: Challenge(java.lang.String,java.lang.String) +cyanogenmod.weatherservice.ServiceRequestResult: int describeContents() +wangdaye.com.geometricweather.R$attr: int bottomAppBarStyle +com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding MEMORY +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature temperature +com.jaredrummler.android.colorpicker.R$attr: int autoSizeMinTextSize +okhttp3.internal.http2.Http2Connection$1 +okhttp3.FormBody: okhttp3.MediaType contentType() +wangdaye.com.geometricweather.R$string: int week_5 +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginTop +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_orientation +com.turingtechnologies.materialscrollbar.R$attr: int expanded +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String zh_CN +com.google.android.material.R$dimen: int abc_action_button_min_height_material +com.google.gson.stream.JsonReader: int NUMBER_CHAR_FRACTION_DIGIT +wangdaye.com.geometricweather.R$styleable: int Transform_android_transformPivotX +androidx.work.R$id: R$id() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean +androidx.appcompat.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +io.reactivex.internal.util.NotificationLite: boolean isComplete(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int[] FontFamilyFont +com.google.android.material.R$styleable: int Chip_chipMinHeight +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Subhead +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_fullscreen +wangdaye.com.geometricweather.R$id: int grassValue +com.google.android.material.textfield.TextInputLayout: void setErrorIconDrawable(android.graphics.drawable.Drawable) +androidx.hilt.R$id: int accessibility_custom_action_10 +retrofit2.CallAdapter: java.lang.Object adapt(retrofit2.Call) +wangdaye.com.geometricweather.R$string: int night +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onStop +com.google.android.material.R$styleable: int Chip_android_ellipsize +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRealFeelShaderTemperature(java.lang.Integer) +james.adaptiveicon.R$dimen: int notification_right_icon_size +android.didikee.donate.R$styleable: int SearchView_commitIcon +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_1 +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_THEME_MANAGER +okhttp3.internal.http2.Hpack: int PREFIX_5_BITS +wangdaye.com.geometricweather.R$id: int center_horizontal +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle +androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnBind() +androidx.appcompat.R$attr: int title +wangdaye.com.geometricweather.R$attr: int contrast +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int RUNNING +wangdaye.com.geometricweather.R$color: int mtrl_fab_icon_text_color_selector +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_5 +com.turingtechnologies.materialscrollbar.R$attr: int selectableItemBackground +androidx.preference.R$attr: int popupMenuStyle +androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_android_alpha +com.google.android.material.R$styleable: int OnSwipe_touchAnchorSide +wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Dialog +androidx.preference.R$style: int TextAppearance_AppCompat_Caption +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ListView_DropDown +androidx.constraintlayout.widget.R$attr: int deltaPolarRadius +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setApparentTemperature(java.lang.Integer) +androidx.appcompat.widget.SwitchCompat: void setSwitchMinWidth(int) +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: void soNext(io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode) +com.google.android.material.R$styleable: int[] FontFamilyFont +androidx.transition.R$id: int async +wangdaye.com.geometricweather.R$interpolator: R$interpolator() +com.google.gson.stream.JsonReader: int PEEKED_EOF +wangdaye.com.geometricweather.R$id: int transitionToEnd +com.google.gson.stream.JsonReader: int stackSize +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: FlowableCreate$BaseEmitter(org.reactivestreams.Subscriber) +com.turingtechnologies.materialscrollbar.TouchScrollBar: float getHandleOffset() +com.google.android.material.R$drawable: int design_ic_visibility cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onScreenTurnedOff() -com.google.android.material.R$styleable: int Constraint_android_scaleY -wangdaye.com.geometricweather.R$attr: int state_liftable -com.jaredrummler.android.colorpicker.R$style: int Base_V26_Widget_AppCompat_Toolbar -androidx.cardview.R$attr: int cardUseCompatPadding -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void pushPromise(int,int,java.util.List) -androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$attr: int fabAnimationMode -com.google.android.material.R$styleable: int KeyTimeCycle_motionProgress -androidx.appcompat.R$dimen: int abc_action_bar_default_padding_end_material -androidx.appcompat.R$style: int Widget_AppCompat_Button_Small -androidx.constraintlayout.widget.R$string: int abc_menu_alt_shortcut_label -wangdaye.com.geometricweather.R$id: int spinner -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeTopRight -wangdaye.com.geometricweather.R$anim: int popup_show_top_right -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_buttonGravity -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startColor -com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextAppearance(int) -com.google.android.material.R$id: int up -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitationProbability -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline5 -okhttp3.EventListener: okhttp3.EventListener$Factory factory(okhttp3.EventListener) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String getDefenseText() -androidx.preference.R$dimen: int highlight_alpha_material_colored -androidx.activity.R$id: int right_side -android.didikee.donate.R$id: int scrollView -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstHorizontalBias -androidx.recyclerview.R$drawable: int notification_tile_bg -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_28 -androidx.appcompat.R$color: int abc_background_cache_hint_selector_material_light -android.didikee.donate.R$integer: int cancel_button_image_alpha -okio.Buffer: okio.Buffer writeHexadecimalUnsignedLong(long) -androidx.preference.internal.PreferenceImageView: void setMaxWidth(int) -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void run() -james.adaptiveicon.R$dimen: int abc_dropdownitem_text_padding_left -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -androidx.lifecycle.MethodCallsLogger: java.util.Map mCalledMethods -wangdaye.com.geometricweather.R$string: int content_desc_search_filter_on -com.google.android.material.R$attr: int logo -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit MI -androidx.preference.R$styleable: int MenuItem_android_titleCondensed -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isBody -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean isEntityUpdateable() -wangdaye.com.geometricweather.R$dimen: int hourly_trend_item_height -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextColor -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeBottomRight -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationX -wangdaye.com.geometricweather.R$id: int activity_weather_daily_indicator -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setQueryParameter(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display4 -cyanogenmod.weather.CMWeatherManager$2 -com.turingtechnologies.materialscrollbar.R$color: int primary_text_disabled_material_dark -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Tooltip -androidx.viewpager.R$dimen -wangdaye.com.geometricweather.R$attr: int tabTextAppearance -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: java.lang.String Unit -com.google.android.material.R$drawable: int abc_spinner_textfield_background_material -com.google.android.material.R$styleable: int Layout_layout_constraintVertical_chainStyle -com.google.gson.FieldNamingPolicy$1: java.lang.String translateName(java.lang.reflect.Field) -wangdaye.com.geometricweather.R$style: int Theme_Design_Light_BottomSheetDialog -androidx.vectordrawable.R$dimen: int notification_large_icon_height -androidx.preference.R$attr: int ratingBarStyleSmall -com.bumptech.glide.integration.okhttp.R$integer -androidx.preference.R$dimen: int abc_button_inset_horizontal_material -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Small -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -cyanogenmod.app.Profile$Type: int TOGGLE -com.google.android.material.R$layout: int abc_screen_content_include -com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert -com.google.android.material.R$styleable: int[] Constraint -com.google.android.material.R$styleable: int ProgressIndicator_indicatorColor -cyanogenmod.app.BaseLiveLockManagerService$1: void cancelLiveLockScreen(java.lang.String,int,int) -wangdaye.com.geometricweather.R$styleable: int SearchView_closeIcon -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_popupTheme -cyanogenmod.content.Intent: java.lang.String EXTRA_PROTECTED_STATE -com.turingtechnologies.materialscrollbar.R$id: int action_bar_container -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: org.reactivestreams.Subscriber downstream -wangdaye.com.geometricweather.R$styleable: int AlertDialog_singleChoiceItemLayout -james.adaptiveicon.R$drawable: int abc_textfield_search_material -wangdaye.com.geometricweather.db.entities.MinutelyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -androidx.swiperefreshlayout.R$id: int notification_main_column_container -io.reactivex.Observable: io.reactivex.Single collectInto(java.lang.Object,io.reactivex.functions.BiConsumer) -com.bumptech.glide.R$drawable: int notify_panel_notification_icon_bg -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedQuery(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_9 -com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyleIndicator -com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_light -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String getY() -wangdaye.com.geometricweather.R$string: int wind -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_titleTextStyle -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NULL -androidx.fragment.R$anim: int fragment_close_enter -android.didikee.donate.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_Icon -james.adaptiveicon.R$styleable: int ColorStateListItem_android_alpha -retrofit2.Utils: java.lang.reflect.Type[] EMPTY_TYPE_ARRAY +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$attr: int navigationMode +wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_2_material +wangdaye.com.geometricweather.R$color: int secondary_text_default_material_dark +androidx.appcompat.R$color: int primary_text_disabled_material_dark +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: AccuDailyResult$DailyForecasts() +androidx.constraintlayout.widget.R$dimen: int abc_progress_bar_height_material +com.google.android.material.R$attr: int checkedIconTint +androidx.fragment.app.Fragment: Fragment() +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: boolean inMaybe +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_hint +android.didikee.donate.R$color: int foreground_material_dark +com.google.android.material.R$style: int TextAppearance_AppCompat_Large_Inverse +androidx.work.R$dimen: int notification_action_text_size +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_homeLayout +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder client(okhttp3.OkHttpClient) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ProgressBar_Horizontal +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_hd +wangdaye.com.geometricweather.R$layout: int item_icon_provider +wangdaye.com.geometricweather.R$attr: int actionBarPopupTheme +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_Underlined +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$height +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture Past24HourTemperatureDeparture +androidx.preference.R$styleable: int SwitchPreference_android_switchTextOn +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_2 +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig chineseCityEntityDaoConfig +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_AutoCompleteTextView +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animDuration +androidx.lifecycle.LiveData: LiveData() +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_enabled +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerColor +androidx.appcompat.widget.AbsActionBarView: int getAnimatedVisibility() +okhttp3.logging.LoggingEventListener: void callFailed(okhttp3.Call,java.io.IOException) +com.google.android.material.R$dimen: int abc_action_bar_stacked_tab_max_width +io.reactivex.Observable: io.reactivex.Observable debounce(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +okhttp3.ConnectionSpec$Builder: java.lang.String[] cipherSuites +androidx.appcompat.R$id: int checkbox +androidx.hilt.R$id: int text +android.didikee.donate.R$dimen: int abc_text_size_display_1_material +retrofit2.HttpException: java.lang.String message +androidx.loader.R$id: int italic +okhttp3.RealCall: okhttp3.EventListener access$000(okhttp3.RealCall) +cyanogenmod.themes.ThemeChangeRequest: int getNumChangesRequested() +androidx.appcompat.R$attr: int queryHint +james.adaptiveicon.R$styleable: int AppCompatTheme_toolbarStyle +wangdaye.com.geometricweather.R$styleable: int DialogPreference_positiveButtonText +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_checkableBehavior +androidx.preference.R$id: int text2 +com.github.rahatarmanahmed.cpv.R$attr: int cpv_maxProgress +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_23 +com.bumptech.glide.integration.okhttp.R$string: R$string() +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.HistoryEntity) +wangdaye.com.geometricweather.R$attr: int customStringValue +com.google.android.material.progressindicator.ProgressIndicator: void setCircularInset(int) +wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_1_3_padding_bottom +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: java.lang.String getRelativeHumidityText(float) +androidx.vectordrawable.animated.R$attr: int ttcIndex +retrofit2.CallAdapter: java.lang.reflect.Type responseType() +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox +com.jaredrummler.android.colorpicker.R$anim: int abc_slide_in_bottom +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_imageButtonStyle +retrofit2.Utils: java.lang.reflect.Type resolveTypeVariable(java.lang.reflect.Type,java.lang.Class,java.lang.reflect.TypeVariable) +com.google.android.material.circularreveal.CircularRevealFrameLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +com.google.android.material.R$style: int TestThemeWithLineHeight +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: int UnitType +com.google.android.material.R$styleable: int AppCompatTheme_listPopupWindowStyle +com.jaredrummler.android.colorpicker.R$attr: int dialogMessage +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDate(java.util.Date) +okhttp3.internal.ws.WebSocketReader: boolean isClient +cyanogenmod.app.ILiveLockScreenManager$Stub: ILiveLockScreenManager$Stub() +retrofit2.ParameterHandler$Body +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.Date Date +okio.ForwardingSource: ForwardingSource(okio.Source) +wangdaye.com.geometricweather.R$id: int fragment_container_view_tag +androidx.appcompat.widget.LinearLayoutCompat: void setHorizontalGravity(int) +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeSplitBackground +androidx.appcompat.R$styleable: int Spinner_android_prompt +androidx.preference.R$id: int accessibility_action_clickable_span +com.turingtechnologies.materialscrollbar.Handle: void setRightToLeft(boolean) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_2 com.google.android.material.R$styleable: int MenuView_android_itemIconDisabledAlpha -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollEnabled -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconCheckable -io.reactivex.internal.disposables.DisposableHelper: boolean dispose(java.util.concurrent.atomic.AtomicReference) -androidx.appcompat.widget.ActivityChooserView$InnerLayout -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams mParams -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode -androidx.constraintlayout.widget.R$styleable: int MenuItem_actionViewClass -cyanogenmod.externalviews.ExternalView: void executeQueue() -androidx.appcompat.R$styleable: int SearchView_goIcon -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_toId -cyanogenmod.os.Build: java.lang.String CYANOGENMOD_VERSION -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.http.HttpCodec httpStream() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.turingtechnologies.materialscrollbar.R$drawable: int design_password_eye -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setFont(java.lang.String) -androidx.transition.R$styleable: int FontFamilyFont_android_ttcIndex -okhttp3.Request: okhttp3.RequestBody body -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$LayoutManager getLayoutManager() +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type[] typeArguments +cyanogenmod.app.CustomTileListenerService: int mCurrentUser +androidx.customview.R$color: int secondary_text_default_material_light +james.adaptiveicon.R$attr: int textColorAlertDialogListItem +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorError +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableStartCompat +cyanogenmod.weather.WeatherInfo: double access$1202(cyanogenmod.weather.WeatherInfo,double) +androidx.preference.R$styleable: int ActionBar_progressBarPadding +com.jaredrummler.android.colorpicker.R$drawable: int cpv_ic_arrow_right_black_24dp +com.google.android.material.R$drawable: int abc_btn_borderless_material +cyanogenmod.weather.RequestInfo$Builder: RequestInfo$Builder(cyanogenmod.weather.IRequestInfoListener) +androidx.appcompat.R$styleable: int SearchView_closeIcon +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_framePosition +androidx.appcompat.R$drawable: int abc_textfield_search_default_mtrl_alpha +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getRotation() +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_11 +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int NOT_AVAILABLE +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ApparentTemperature +com.google.android.material.R$style: int Theme_AppCompat_Light_NoActionBar +androidx.constraintlayout.widget.R$dimen: int abc_text_size_subtitle_material_toolbar +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: double lat +okhttp3.OkHttpClient$Builder: okhttp3.Authenticator authenticator +com.google.gson.stream.JsonWriter: boolean serializeNulls +androidx.appcompat.widget.SearchView$SavedState +wangdaye.com.geometricweather.R$styleable: int MenuItem_showAsAction +androidx.constraintlayout.widget.R$drawable: int notification_bg_normal_pressed +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean isDisposed() +james.adaptiveicon.R$attr: int windowMinWidthMajor +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTheme +com.turingtechnologies.materialscrollbar.R$id: int decor_content_parent +com.jaredrummler.android.colorpicker.R$string: int cpv_presets +androidx.lifecycle.extensions.R$integer: int status_bar_notification_info_maxnum +androidx.hilt.work.R$id: int info +com.jaredrummler.android.colorpicker.R$layout: int abc_activity_chooser_view_list_item +cyanogenmod.app.ILiveLockScreenManager: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +androidx.lifecycle.ProcessLifecycleOwnerInitializer: android.database.Cursor query(android.net.Uri,java.lang.String[],java.lang.String,java.lang.String[],java.lang.String) +okhttp3.internal.ws.RealWebSocket$Close: okio.ByteString reason wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_stroke_width_focused -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: wangdaye.com.geometricweather.db.entities.ChineseCityEntity readEntity(android.database.Cursor,int) -com.google.android.material.R$style: int TextAppearance_AppCompat_Subhead_Inverse -okhttp3.internal.cache.CacheStrategy$Factory: CacheStrategy$Factory(long,okhttp3.Request,okhttp3.Response) -wangdaye.com.geometricweather.R$id: int action_bar -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_disabled_material_light -com.google.android.material.R$dimen: int abc_text_size_menu_header_material -retrofit2.RequestFactory$Builder: boolean gotField -okhttp3.internal.cache.DiskLruCache$Entry: void writeLengths(okio.BufferedSink) -android.didikee.donate.R$attr: int contentInsetEnd -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver) -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_ttcIndex -com.google.android.material.R$styleable: int Layout_maxHeight -com.google.android.material.R$color: int design_fab_shadow_end_color -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.appcompat.resources.R$dimen -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void collapseNotificationPanel() -androidx.preference.R$styleable: int Preference_android_order -androidx.preference.R$style: int Base_Widget_AppCompat_Spinner -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog_Alert -androidx.recyclerview.widget.RecyclerView: androidx.core.view.NestedScrollingChildHelper getScrollingChildHelper() -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: AccuCurrentResult$TemperatureSummary() -androidx.coordinatorlayout.R$id: int chronometer -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onStop() -androidx.preference.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -com.jaredrummler.android.colorpicker.R$string: int abc_action_menu_overflow_description -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActivityChooserView -androidx.preference.R$id: int content -com.google.android.material.R$id: int clear_text +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: java.lang.Object v1 +com.google.android.material.R$attr: int behavior_hideable +androidx.appcompat.widget.AppCompatSpinner: int getDropDownWidth() +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotation +org.greenrobot.greendao.database.DatabaseOpenHelper: boolean loadSQLCipherNativeLibs +com.google.android.material.chip.Chip: void setMaxWidth(int) +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX() +com.google.android.material.R$color: int secondary_text_disabled_material_light +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_3 +wangdaye.com.geometricweather.R$color: int colorLevel_3 +wangdaye.com.geometricweather.db.entities.AlertEntity: void setColor(int) +okhttp3.internal.cache.DiskLruCache$Snapshot: okhttp3.internal.cache.DiskLruCache this$0 +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +wangdaye.com.geometricweather.R$id: int action_menu_divider +com.google.android.material.R$attr: int ratingBarStyleSmall +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide +com.xw.repo.bubbleseekbar.R$id: int src_atop +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation precipitation com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onProgressUpdate(float) -androidx.fragment.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.common.ui.widgets.TagView: int getCheckedBackgroundColor() -com.google.android.material.R$attr: int thumbTextPadding -androidx.constraintlayout.widget.R$drawable: int abc_list_longpressed_holo -androidx.appcompat.R$dimen: int abc_search_view_preferred_width -wangdaye.com.geometricweather.common.basic.models.weather.Current -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_body_2_material -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_tint -com.xw.repo.bubbleseekbar.R$id: int action_text -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_horizontal -androidx.preference.R$style: int PreferenceThemeOverlay_v14 -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderAuthority -android.didikee.donate.R$style: int Animation_AppCompat_DropDownUp -com.google.android.material.R$color: int design_dark_default_color_secondary -com.google.android.material.R$attr: int thumbStrokeColor -wangdaye.com.geometricweather.R$color: int abc_hint_foreground_material_dark -retrofit2.Retrofit: retrofit2.Converter nextRequestBodyConverter(retrofit2.Converter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[]) -cyanogenmod.weather.WeatherInfo$1: java.lang.Object[] newArray(int) -androidx.preference.SeekBarPreference$SavedState -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMenuItemView -androidx.preference.R$styleable: int SearchView_android_focusable -android.didikee.donate.R$styleable: int CompoundButton_buttonTintMode -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_arrowShaftLength -android.didikee.donate.R$attr: int alertDialogCenterButtons -cyanogenmod.weather.WeatherInfo: double mTodaysHighTemp -com.jaredrummler.android.colorpicker.R$id: int cpv_hex -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalAlign -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int SnowProbability -androidx.appcompat.R$styleable: int TextAppearance_android_textColorHint -androidx.constraintlayout.motion.widget.MotionLayout -james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_textAppearance -com.google.android.material.R$styleable: int MenuItem_tooltipText -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontStyle -androidx.appcompat.R$color: int tooltip_background_dark -android.didikee.donate.R$styleable: int TextAppearance_android_shadowColor -cyanogenmod.app.ICMTelephonyManager$Stub: android.os.IBinder asBinder() -androidx.transition.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_widget_height -androidx.hilt.R$attr: int fontProviderAuthority -androidx.coordinatorlayout.R$styleable: int[] CoordinatorLayout_Layout -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_117 -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult -com.google.android.material.floatingactionbutton.FloatingActionButton: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_36dp -wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundODialog: RunningInBackgroundODialog() -com.turingtechnologies.materialscrollbar.R$attr: int popupMenuStyle -wangdaye.com.geometricweather.R$id: int dropdown_menu -io.reactivex.Observable: io.reactivex.Maybe singleElement() -android.didikee.donate.R$id: int search_plate -wangdaye.com.geometricweather.R$color: int colorPrimaryDark -okio.ForwardingSource: ForwardingSource(okio.Source) -cyanogenmod.profiles.StreamSettings: boolean mOverride -androidx.multidex.MultiDexApplication: MultiDexApplication() -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: MfWarningsResult$WarningComments() -androidx.lifecycle.ProcessLifecycleOwner$1: androidx.lifecycle.ProcessLifecycleOwner this$0 -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endColor -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -androidx.constraintlayout.widget.R$attr: int staggered -okhttp3.internal.Util$1 -com.turingtechnologies.materialscrollbar.R$id: int contentPanel -androidx.viewpager2.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.appcompat.view.menu.ListMenuItemView: android.view.LayoutInflater getInflater() -com.google.android.material.R$id: int material_hour_tv -com.turingtechnologies.materialscrollbar.DateAndTimeIndicator -androidx.constraintlayout.helper.widget.Layer: void setRotation(float) -androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableItem -wangdaye.com.geometricweather.R$layout: int dialog_learn_more_about_geocoder -com.jaredrummler.android.colorpicker.R$attr: int contentInsetLeft -androidx.constraintlayout.widget.R$attr: int showPaths -com.google.android.material.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.R$anim: int abc_popup_exit -androidx.core.R$id: int accessibility_custom_action_16 -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: boolean won -androidx.appcompat.R$attr: int contentInsetStart -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintTextAppearance -androidx.viewpager2.R$attr: int spanCount -androidx.vectordrawable.R$styleable: int GradientColorItem_android_offset -okhttp3.ConnectionPool: java.util.concurrent.Executor executor -com.google.gson.FieldNamingPolicy: java.lang.String upperCaseFirstLetter(java.lang.String) -io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.MaybeObserver) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer aqiIndex -wangdaye.com.geometricweather.R$attr: int backgroundInsetTop -com.google.android.material.R$attr: int telltales_velocityMode -android.didikee.donate.R$attr: int alertDialogTheme -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_COLOR -wangdaye.com.geometricweather.R$menu: int activity_preview_icon -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long end -wangdaye.com.geometricweather.common.basic.models.weather.History: long getTime() -androidx.lifecycle.Transformations$3: androidx.lifecycle.MediatorLiveData val$outputLiveData -okio.Buffer: okio.BufferedSink writeUtf8(java.lang.String) -cyanogenmod.platform.R$drawable: R$drawable() -androidx.coordinatorlayout.R$color -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth -androidx.constraintlayout.widget.R$attr: int contentInsetEnd -androidx.recyclerview.R$id: int accessibility_custom_action_10 -androidx.constraintlayout.widget.R$attr: int windowNoTitle -okhttp3.CacheControl: java.lang.String headerValue -cyanogenmod.app.ProfileGroup: boolean mDefaultGroup -androidx.constraintlayout.widget.R$styleable: int Toolbar_menu -androidx.preference.R$style: int TextAppearance_AppCompat_Display4 -androidx.preference.R$styleable: int AppCompatTheme_actionMenuTextColor -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light_NoActionBar -androidx.activity.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.R$font: int product_sans_regular -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WINDY -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low_normal -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_RC4_128_SHA -androidx.preference.R$styleable: int SeekBarPreference_seekBarIncrement -androidx.hilt.lifecycle.R$dimen: int notification_right_icon_size -com.google.android.material.R$styleable: int Constraint_barrierAllowsGoneWidgets -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getHourlyEntityList() -okio.ByteString: boolean rangeEquals(int,byte[],int,int) -androidx.constraintlayout.widget.R$styleable: int Transition_motionInterpolator -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircleAngle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String sunSet -androidx.constraintlayout.widget.R$attr: int autoTransition -com.xw.repo.bubbleseekbar.R$string: int abc_action_bar_up_description -androidx.constraintlayout.widget.R$color: int secondary_text_default_material_dark -wangdaye.com.geometricweather.R$attr: int max -com.google.android.material.R$dimen: int mtrl_navigation_item_shape_vertical_margin -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: java.lang.String newX -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitation -androidx.appcompat.R$integer: int abc_config_activityShortDur -james.adaptiveicon.R$drawable: int abc_btn_borderless_material -androidx.hilt.work.R$id: int time -com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorSize(int) -androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_tint -androidx.legacy.coreutils.R$attr: int fontStyle -androidx.viewpager2.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$mipmap: int ic_launcher_round -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderPackage -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void drain() -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType[] values() -okhttp3.OkHttpClient$1: boolean isInvalidHttpUrlHost(java.lang.IllegalArgumentException) -com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextView -com.google.android.material.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -okhttp3.internal.http1.Http1Codec$FixedLengthSink: okhttp3.internal.http1.Http1Codec this$0 -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean cancelled -wangdaye.com.geometricweather.R$attr: int inner_margins -okhttp3.Request: okhttp3.CacheControl cacheControl -com.jaredrummler.android.colorpicker.R$color: int notification_icon_bg_color -com.xw.repo.bubbleseekbar.R$layout: int abc_action_menu_layout -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherText -wangdaye.com.geometricweather.R$color: int secondary_text_disabled_material_light -okhttp3.internal.Util$1: int compare(java.lang.Object,java.lang.Object) -retrofit2.RequestFactory: okhttp3.HttpUrl baseUrl -wangdaye.com.geometricweather.R$layout: int fragment_management -androidx.appcompat.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -com.google.android.material.R$drawable: int abc_item_background_holo_dark -androidx.constraintlayout.utils.widget.ImageFilterButton: void setBrightness(float) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWindDirection() -wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_elevation -com.google.android.material.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -james.adaptiveicon.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -androidx.customview.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$drawable: int abc_tab_indicator_mtrl_alpha -androidx.preference.R$attr: int spinBars -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.Scheduler$Worker worker -androidx.constraintlayout.widget.R$styleable: int ActionBar_popupTheme -com.jaredrummler.android.colorpicker.R$layout: int abc_activity_chooser_view -androidx.legacy.coreutils.R$layout: int notification_template_part_time -james.adaptiveicon.R$style: int Widget_AppCompat_PopupMenu -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelBackground -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.UV getUV() -androidx.preference.R$attr: int preferenceTheme -wangdaye.com.geometricweather.R$attr: int framePosition -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String datetime -androidx.preference.R$style: int TextAppearance_AppCompat_Medium -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: CaiYunMainlyResult$IndicesBeanX() -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_middle_mtrl_light -com.google.android.material.R$styleable: int Constraint_layout_constraintStart_toEndOf -com.google.android.material.R$drawable: int abc_ic_star_half_black_48dp -wangdaye.com.geometricweather.R$styleable: int Variant_region_heightLessThan -com.google.android.material.R$styleable: int TextInputLayout_startIconCheckable -com.bumptech.glide.integration.okhttp.R$style: R$style() -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat -wangdaye.com.geometricweather.R$id: int search_plate -wangdaye.com.geometricweather.R$string: int feedback_get_weather_failed -androidx.lifecycle.extensions.R$id -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial Imperial -com.turingtechnologies.materialscrollbar.R$dimen: int abc_select_dialog_padding_start_material -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_background_transition_holo_dark -com.google.android.material.R$styleable: int AlertDialog_buttonPanelSideLayout -androidx.constraintlayout.widget.R$attr: int icon -com.google.android.material.R$styleable: int[] Toolbar -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight -wangdaye.com.geometricweather.R$string: int content_des_pm10 -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -cyanogenmod.providers.CMSettings$Secure: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) -james.adaptiveicon.R$attr: int autoSizePresetSizes -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_rightToLeft -androidx.core.R$styleable: int FontFamilyFont_fontStyle -com.google.android.material.R$color: int mtrl_on_primary_text_btn_text_color_selector -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColorLink -okhttp3.internal.platform.OptionalMethod: java.lang.Object invoke(java.lang.Object,java.lang.Object[]) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Long getId() -wangdaye.com.geometricweather.R$drawable: int notif_temp_45 -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_hide_motion_spec -wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay_v14_Material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String getUnit() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: java.lang.Object poll() -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy -wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout -com.google.android.material.internal.NavigationMenuItemView: void setTitle(java.lang.CharSequence) -androidx.swiperefreshlayout.R$id: int chronometer -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textStyle -androidx.preference.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -com.xw.repo.bubbleseekbar.R$layout: int notification_action -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconTint -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart -com.google.android.material.R$attr: int layout_constraintStart_toEndOf -androidx.appcompat.widget.AppCompatButton: android.graphics.PorterDuff$Mode getSupportCompoundDrawablesTintMode() -androidx.activity.R$drawable: int notification_tile_bg -com.google.android.material.R$styleable: int[] AnimatedStateListDrawableCompat -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void dispose() -wangdaye.com.geometricweather.R$styleable: int MaterialButton_strokeWidth -android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -io.reactivex.internal.subscribers.StrictSubscriber: io.reactivex.internal.util.AtomicThrowable error -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: CNWeatherResult$Realtime() -com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context,android.util.AttributeSet) -com.google.android.material.slider.BaseSlider: void setTrackHeight(int) -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onError(java.lang.Throwable) -james.adaptiveicon.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_GCM_SHA384 -androidx.swiperefreshlayout.R$id: int action_divider -wangdaye.com.geometricweather.R$drawable: int mtrl_dialog_background -com.google.android.material.slider.RangeSlider: void setFocusedThumbIndex(int) -james.adaptiveicon.R$dimen: int abc_floating_window_z -wangdaye.com.geometricweather.R$drawable: int weather_thunder_pixel -androidx.hilt.work.R$id: int accessibility_custom_action_17 -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void dispose() -cyanogenmod.providers.CMSettings$Global: java.lang.String WAKE_WHEN_PLUGGED_OR_UNPLUGGED -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder createExternalView(android.os.Bundle) -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_subtitle_top_margin_material -com.google.android.material.R$styleable: int Chip_chipIconVisible -com.google.android.material.R$styleable: int SearchView_queryHint -com.turingtechnologies.materialscrollbar.R$color: int cardview_dark_background -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardBackgroundColor -androidx.customview.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.R$color: int colorLine_dark -com.google.android.material.R$id: int linear -retrofit2.Utils: java.lang.reflect.Type getParameterLowerBound(int,java.lang.reflect.ParameterizedType) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_text_color -androidx.viewpager2.R$drawable: int notification_bg_normal -james.adaptiveicon.R$style: int Widget_AppCompat_ImageButton -com.google.android.material.R$layout: int abc_screen_simple -androidx.constraintlayout.motion.widget.MotionHelper -androidx.appcompat.R$drawable: int abc_btn_check_to_on_mtrl_000 -wangdaye.com.geometricweather.R$layout: int item_weather_daily_title_large -com.google.android.material.R$styleable: int SwitchCompat_trackTintMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setPubTime(java.util.Date) -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginBottom -androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getOverflowIcon() -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_spinBars -com.github.rahatarmanahmed.cpv.CircularProgressView: float currentProgress -androidx.constraintlayout.widget.R$anim: int abc_fade_in -com.google.android.material.R$styleable: int Constraint_flow_horizontalStyle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf -com.turingtechnologies.materialscrollbar.R$id: int select_dialog_listview -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_SearchResult_Title -okhttp3.internal.ws.WebSocketReader: int opcode -okhttp3.Cache$2: okhttp3.Cache this$0 -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: ObservableConcatMap$ConcatMapDelayErrorObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) -androidx.appcompat.R$id: int submit_area -com.google.android.material.R$style: int Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherText(java.lang.String) -com.jaredrummler.android.colorpicker.R$color: int abc_tint_default -androidx.preference.R$attr: int seekBarPreferenceStyle -androidx.legacy.coreutils.R$dimen -androidx.swiperefreshlayout.R$drawable: int notification_tile_bg -com.google.android.material.R$id: int parentRelative -cyanogenmod.weather.ICMWeatherManager -androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_alpha -cyanogenmod.app.IPartnerInterface$Stub$Proxy: void setMobileDataEnabled(boolean) -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getTagName(android.content.Context) -james.adaptiveicon.R$styleable: int AlertDialog_singleChoiceItemLayout -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context,android.util.AttributeSet,int) -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.util.Date getPubTime() -androidx.coordinatorlayout.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String aqi -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontWeight -androidx.cardview.widget.CardView: boolean getUseCompatPadding() -com.bumptech.glide.R$dimen: int notification_media_narrow_margin -androidx.appcompat.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$string: int feedback_ignore_battery_optimizations_content -cyanogenmod.app.suggest.AppSuggestManager: boolean DEBUG -wangdaye.com.geometricweather.settings.activities.SettingsActivity: SettingsActivity() -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setBadgeIfNeeded(com.google.android.material.bottomnavigation.BottomNavigationItemView) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String BOOTANIMATION_THUMBNAIL -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -com.google.android.material.R$id: int action_bar_subtitle -androidx.swiperefreshlayout.R$drawable: int notification_action_background -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat -cyanogenmod.app.CustomTile$1: cyanogenmod.app.CustomTile[] newArray(int) -retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: long read(okio.Buffer,long) -io.reactivex.internal.observers.BlockingObserver: java.util.Queue queue -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setShortDescription(java.lang.String) -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.Observer downstream -com.google.android.material.R$drawable: int material_ic_keyboard_arrow_left_black_24dp -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMargin -wangdaye.com.geometricweather.R$styleable: int[] FitSystemBarRecyclerView -com.google.android.material.R$layout: int material_clock_display_divider -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorPrimary -okio.Buffer$2: int available() -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowDy -com.jaredrummler.android.colorpicker.R$string: int abc_menu_sym_shortcut_label -androidx.viewpager2.widget.ViewPager2: androidx.recyclerview.widget.RecyclerView$Adapter getAdapter() -com.turingtechnologies.materialscrollbar.R$color: R$color() -androidx.constraintlayout.widget.R$attr: int editTextStyle -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int consumed -james.adaptiveicon.R$styleable: int SwitchCompat_thumbTint -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customDimension -com.google.android.material.R$dimen: int material_cursor_width -com.google.android.material.button.MaterialButton: void setIconTint(android.content.res.ColorStateList) -okio.BufferedSource: boolean exhausted() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dividerVertical -retrofit2.HttpServiceMethod$CallAdapted: HttpServiceMethod$CallAdapted(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter) -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_material_light -com.google.android.material.R$styleable: int ConstraintSet_android_transformPivotX -com.turingtechnologies.materialscrollbar.R$styleable: int[] FontFamilyFont -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State CREATED -androidx.constraintlayout.widget.R$drawable: int abc_tab_indicator_material -com.google.android.material.R$attr: int actionBarItemBackground -cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_PEOPLE_LOOKUP -androidx.hilt.R$color: int notification_icon_bg_color -com.turingtechnologies.materialscrollbar.R$attr: int behavior_fitToContents -androidx.constraintlayout.widget.R$styleable: int Spinner_android_popupBackground -androidx.preference.R$attr: int preferenceInformationStyle -androidx.work.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.R$drawable: int notif_temp_89 -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_id -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setSubState -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Light_Dialog -com.google.android.material.R$attr: int actionProviderClass -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTimeStamp(long) -cyanogenmod.library.R$styleable: int LiveLockScreen_type -androidx.vectordrawable.R$id: int accessibility_custom_action_7 -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginBottom() -androidx.preference.R$attr: int titleMarginTop -wangdaye.com.geometricweather.R$dimen: int widget_grid_2 -wangdaye.com.geometricweather.R$attr: int cpv_borderColor -androidx.appcompat.widget.SwitchCompat: int getCompoundPaddingRight() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getO3() -androidx.fragment.R$styleable: int FontFamilyFont_font -androidx.fragment.R$layout -wangdaye.com.geometricweather.R$array: int clock_font_values -wangdaye.com.geometricweather.R$animator: int weather_haze_1 -okhttp3.internal.http2.Hpack$Writer: boolean emitDynamicTableSizeUpdate -okhttp3.OkHttpClient: okhttp3.CertificatePinner certificatePinner() -james.adaptiveicon.R$attr: int ratingBarStyleSmall +wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_android_alpha +androidx.preference.R$styleable: int AppCompatTheme_windowNoTitle +androidx.appcompat.widget.AppCompatImageButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.google.android.material.R$attr: int chipSpacingHorizontal +androidx.fragment.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_icon_size +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeTitle +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getLockWallpaperThemePackageName() +com.google.android.material.R$styleable: int StateListDrawable_android_enterFadeDuration +com.jaredrummler.android.colorpicker.R$attr: int backgroundTintMode +com.google.android.material.R$integer: int mtrl_tab_indicator_anim_duration_ms +wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableCompat +androidx.legacy.coreutils.R$styleable: int GradientColor_android_startColor +androidx.lifecycle.extensions.R$drawable: int notification_bg_low_normal +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_behavior +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: boolean requestDismiss() +james.adaptiveicon.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int ThunderstormProbability +wangdaye.com.geometricweather.R$string: int settings_title_background_free +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +wangdaye.com.geometricweather.R$attr: int saturation +com.google.android.material.R$style: int ShapeAppearanceOverlay_BottomRightCut +com.google.android.material.R$string: int abc_search_hint +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_Underlined +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onDetach() +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_toRightOf +androidx.preference.R$drawable: int abc_popup_background_mtrl_mult +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String getWeather() +okhttp3.CipherSuite: okhttp3.CipherSuite init(java.lang.String,int) +com.google.android.material.progressindicator.ProgressIndicator: void setProgressDrawable(android.graphics.drawable.Drawable) +androidx.viewpager2.R$id: int right_icon +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setForecast(java.util.List) +wangdaye.com.geometricweather.R$color: int abc_tint_spinner +wangdaye.com.geometricweather.main.MainActivityViewModel +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +androidx.constraintlayout.widget.R$drawable: int tooltip_frame_light +androidx.hilt.lifecycle.R$attr: int alpha +wangdaye.com.geometricweather.R$animator: int mtrl_fab_transformation_sheet_expand_spec +okhttp3.internal.ws.RealWebSocket: java.util.concurrent.ScheduledExecutorService executor +com.google.android.material.R$id: int uniform +wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_min +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial Imperial +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_radioButtonStyle +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.Scheduler$Worker worker +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setLegacyRequestDisallowInterceptTouchEventEnabled(boolean) +com.turingtechnologies.materialscrollbar.R$color: int background_floating_material_light +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_night_2 +com.xw.repo.bubbleseekbar.R$layout: int abc_action_menu_item_layout +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_5 +com.google.android.material.R$styleable: int Toolbar_titleMarginEnd +wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_dark +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dark +com.google.android.material.R$styleable: int[] MaterialButtonToggleGroup +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_chainStyle +androidx.hilt.R$id: int title +androidx.work.R$style: int TextAppearance_Compat_Notification +androidx.constraintlayout.widget.R$color: int abc_color_highlight_material +wangdaye.com.geometricweather.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +androidx.appcompat.R$dimen: int hint_alpha_material_light +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification +com.google.android.material.R$drawable: int abc_ic_star_black_48dp +wangdaye.com.geometricweather.R$attr: int indicatorCornerRadius +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Spinner_Underlined +com.google.android.material.R$attr: int fabAlignmentMode +com.xw.repo.bubbleseekbar.R$id: int search_voice_btn +wangdaye.com.geometricweather.R$drawable: int widget_card_light_60 +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: MfHistoryResult$History$Wind() +wangdaye.com.geometricweather.R$string: int abc_action_menu_overflow_description +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onNext(java.lang.Object) +androidx.loader.R$dimen: int compat_button_inset_vertical_material +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: ObservableTakeLast$TakeLastObserver(io.reactivex.Observer,int) +android.didikee.donate.R$attr: int buttonBarPositiveButtonStyle +cyanogenmod.app.Profile: java.util.ArrayList getTriggersFromType(int) +io.reactivex.exceptions.CompositeException: java.lang.Throwable getCause() +android.didikee.donate.R$color: int abc_btn_colored_borderless_text_material +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowDx +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: void dispose() +io.reactivex.internal.observers.BasicIntQueueDisposable +cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(android.os.Parcel) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherText(java.lang.String) +androidx.viewpager.R$attr: int fontProviderFetchStrategy +james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar_Indicator +android.didikee.donate.R$dimen: int notification_small_icon_size_as_large +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMargin +cyanogenmod.platform.Manifest$permission: java.lang.String HARDWARE_ABSTRACTION_ACCESS +android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCloudCover(java.lang.Integer) +com.google.android.material.R$id: int snackbar_text +wangdaye.com.geometricweather.R$color: int colorTextContent_dark +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onNext(java.lang.Object) +androidx.lifecycle.LiveData$AlwaysActiveObserver: LiveData$AlwaysActiveObserver(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) +androidx.customview.R$layout: int notification_template_part_chronometer +com.google.gson.stream.JsonReader: int PEEKED_FALSE +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_keyline +com.xw.repo.bubbleseekbar.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherText +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_id +james.adaptiveicon.R$color: int material_grey_900 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +retrofit2.CallAdapter +androidx.preference.R$color: int secondary_text_disabled_material_dark +androidx.constraintlayout.widget.R$dimen: int abc_text_size_caption_material +james.adaptiveicon.R$drawable: int abc_cab_background_top_mtrl_alpha +androidx.preference.R$dimen: int abc_alert_dialog_button_bar_height +androidx.preference.R$style: int PreferenceThemeOverlay_v14_Material +androidx.appcompat.R$styleable: int AppCompatTheme_controlBackground +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor LIGHT +com.jaredrummler.android.colorpicker.R$styleable: int[] ButtonBarLayout +androidx.vectordrawable.animated.R$drawable: int notification_bg_low_normal +androidx.legacy.coreutils.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.R$attr: int itemRippleColor +androidx.viewpager2.R$styleable: int RecyclerView_stackFromEnd +cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo$Builder setComponent(android.content.ComponentName) +androidx.appcompat.R$attr: int dividerVertical +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_summaryOn +com.bumptech.glide.integration.okhttp.R$layout: int notification_template_part_time +com.xw.repo.bubbleseekbar.R$id: int shortcut +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable +com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar_Small +androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onCreate() +wangdaye.com.geometricweather.R$color: int mtrl_btn_text_btn_ripple_color +com.google.android.material.R$attr: int mock_showDiagonals +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: void dispose() +android.didikee.donate.R$styleable: int TextAppearance_textAllCaps +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_MENU_LONG_PRESS_ACTION +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: ObservableWindow$WindowExactObserver(io.reactivex.Observer,long,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitation +wangdaye.com.geometricweather.R$string: int cpv_transparency +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Body1 +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_min +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onComplete() +androidx.preference.R$styleable: int Preference_isPreferenceVisible +com.google.android.material.R$attr: int listPreferredItemHeightSmall +com.xw.repo.bubbleseekbar.R$id +io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action) +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: java.lang.String Unit +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: int rain +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: java.lang.String Localized +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.hilt.work.R$id: int chronometer +com.jaredrummler.android.colorpicker.ColorPickerView: void setSliderTrackerColor(int) +wangdaye.com.geometricweather.R$id: int motion_base +wangdaye.com.geometricweather.R$attr: int colorOnPrimary +wangdaye.com.geometricweather.R$string: int week_4 +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int) +com.turingtechnologies.materialscrollbar.R$dimen: int hint_pressed_alpha_material_dark +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.observers.InnerQueuedObserverSupport parent +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean residentPosition +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context) +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.BiFunction resultSelector +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_1 +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowDx +okhttp3.CacheControl: java.lang.String headerValue +androidx.recyclerview.R$dimen: int notification_content_margin_start +androidx.appcompat.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_toLeftOf +androidx.viewpager.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int o3 +com.turingtechnologies.materialscrollbar.R$attr: int scrimBackground +wangdaye.com.geometricweather.R$styleable: int KeyPosition_framePosition +retrofit2.OkHttpCall$1: retrofit2.OkHttpCall this$0 +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderCerts +james.adaptiveicon.R$attr: int contentDescription +wangdaye.com.geometricweather.R$drawable: int shortcuts_thunder_foreground +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_showTitle +androidx.constraintlayout.widget.R$dimen: int notification_right_side_padding_top +com.google.android.material.R$attr: int barrierAllowsGoneWidgets +com.google.android.material.R$styleable: int TextInputLayout_shapeAppearanceOverlay +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +com.google.android.material.R$attr: int layout_keyline +androidx.core.app.NotificationCompatSideChannelService: NotificationCompatSideChannelService() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.xw.repo.bubbleseekbar.R$string: int abc_menu_alt_shortcut_label +androidx.constraintlayout.widget.R$id: int progress_circular +com.jaredrummler.android.colorpicker.R$attr: int fontWeight +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeWindChillTemperature +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalStyle +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onNext(java.lang.Object) +com.google.android.material.R$style: int Base_Theme_AppCompat +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean feelsLike +androidx.preference.R$styleable: int MenuItem_tooltipText +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: long read(okio.Buffer,long) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicReference upstream +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode DAY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: int getStatus() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setHeadIconType(java.lang.String) +com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Display +cyanogenmod.app.Profile$Type: int CONDITIONAL +androidx.lifecycle.extensions.R$styleable: int Fragment_android_tag +com.xw.repo.bubbleseekbar.R$string: int abc_menu_meta_shortcut_label +james.adaptiveicon.R$color: int abc_hint_foreground_material_light +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginTop +com.google.android.material.R$layout: int notification_template_part_time +androidx.core.R$layout: int notification_action_tombstone +james.adaptiveicon.R$id: int add +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_width +okhttp3.Dispatcher: int getMaxRequests() +james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton +cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: int FAHRENHEIT +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animAutostart +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeRealFeelShaderTemperature +android.didikee.donate.R$styleable: int Toolbar_titleMarginEnd +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX +wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_container +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabTextAppearance +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Inverse +wangdaye.com.geometricweather.db.entities.LocationEntity: float latitude +wangdaye.com.geometricweather.weather.apis.AtmoAuraIqaApi +androidx.preference.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +com.google.android.material.navigation.NavigationView: android.content.res.ColorStateList getItemIconTintList() +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox +com.google.android.material.R$styleable: int Layout_layout_constraintBottom_toBottomOf +androidx.preference.R$id: int accessibility_custom_action_17 +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicInteger wip +androidx.lifecycle.ServiceLifecycleDispatcher: ServiceLifecycleDispatcher(androidx.lifecycle.LifecycleOwner) +james.adaptiveicon.R$styleable: int ButtonBarLayout_allowStacking +androidx.recyclerview.R$styleable: int[] FontFamilyFont +retrofit2.RequestBuilder: void setRelativeUrl(java.lang.Object) +com.google.android.material.progressindicator.ProgressIndicator: void setInverse(boolean) +okio.ByteString: int compareTo(java.lang.Object) +com.google.android.material.R$dimen: int abc_text_size_display_2_material +com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyleSmall +androidx.preference.R$dimen: int tooltip_vertical_padding +okhttp3.internal.http2.Http2Codec +androidx.constraintlayout.widget.R$style: int Platform_V21_AppCompat +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +com.google.android.material.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.recyclerview.widget.RecyclerView: void setEdgeEffectFactory(androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory) +androidx.lifecycle.extensions.R$drawable: int notification_bg_normal_pressed +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService access$400() +androidx.preference.R$attr: int subtitleTextColor +android.didikee.donate.R$style: int Base_Widget_AppCompat_ImageButton +com.xw.repo.bubbleseekbar.R$color: int accent_material_light +androidx.fragment.R$attr: int fontVariationSettings +androidx.appcompat.R$color: int error_color_material_dark +androidx.core.R$id: int action_image +android.didikee.donate.R$styleable: int TextAppearance_android_shadowColor +wangdaye.com.geometricweather.R$string: int phase_waning_gibbous +androidx.recyclerview.R$id: R$id() +wangdaye.com.geometricweather.R$id: int unlabeled +cyanogenmod.externalviews.ExternalView: void onActivityStopped(android.app.Activity) +cyanogenmod.app.CMContextConstants$Features: java.lang.String STATUSBAR +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain +io.reactivex.internal.util.ArrayListSupplier: java.util.concurrent.Callable asCallable() +com.google.android.material.R$styleable: int TextAppearance_android_textFontWeight +cyanogenmod.profiles.ConnectionSettings: void setSubId(int) +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.Boolean) +android.didikee.donate.R$attr: int textAppearanceListItemSmall androidx.loader.R$styleable: int FontFamilyFont_font -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onNext(java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int[] ViewBackgroundHelper -androidx.recyclerview.R$dimen -androidx.appcompat.resources.R$attr: int ttcIndex -okhttp3.Response$Builder: int code -androidx.fragment.R$string -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_horizontal_padding -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void dispose() -androidx.appcompat.R$styleable: int Toolbar_contentInsetStart -com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchPreferenceCompat -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: WeatherContract$WeatherColumns$WeatherCode() -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_arrow_drop_right_black_24dp -wangdaye.com.geometricweather.R$attr: int bsb_show_progress_in_float -james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog -okhttp3.internal.cache.DiskLruCache$2 -cyanogenmod.weather.CMWeatherManager$RequestStatus: int ALREADY_IN_PROGRESS -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_toTopOf -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_wrapMode -cyanogenmod.weather.CMWeatherManager$2$2: int val$status -wangdaye.com.geometricweather.R$styleable: int[] SearchView -retrofit2.Platform: retrofit2.Platform get() -cyanogenmod.hardware.ICMHardwareService: boolean get(int) -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchMinWidth -androidx.fragment.R$style: int TextAppearance_Compat_Notification -com.turingtechnologies.materialscrollbar.R$attr: int tickMark -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner -okhttp3.MediaType: java.nio.charset.Charset charset() -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: void handleMessage(android.os.Message) -androidx.dynamicanimation.R$drawable -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analog_dark -androidx.constraintlayout.widget.R$id: int autoComplete -com.jaredrummler.android.colorpicker.R$attr: int fontProviderFetchStrategy -com.jaredrummler.android.colorpicker.R$id: int search_close_btn -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerError(java.lang.Throwable) -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.Class serverProviderClass -androidx.appcompat.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -androidx.vectordrawable.R$dimen: int notification_action_icon_size -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_radioButtonStyle -androidx.constraintlayout.widget.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation RIGHT -james.adaptiveicon.R$color: int secondary_text_default_material_light -androidx.hilt.lifecycle.R$string: R$string() -androidx.preference.R$styleable: int AnimatedStateListDrawableItem_android_drawable -wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_icon_width -android.didikee.donate.R$color: int abc_primary_text_material_light -okhttp3.Interceptor$Chain: okhttp3.Request request() -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality airQuality -wangdaye.com.geometricweather.R$color: int mtrl_tabs_colored_ripple_color -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String ALARM_ID -retrofit2.adapter.rxjava2.ResultObservable: void subscribeActual(io.reactivex.Observer) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Menu -com.google.android.material.R$styleable: int TabLayout_tabPaddingEnd -androidx.preference.R$styleable: int AppCompatTheme_viewInflaterClass -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRealFeelShaderTemperature(java.lang.Integer) -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int RelativeHumidity -com.google.android.material.floatingactionbutton.FloatingActionButton: void setScaleX(float) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean images -com.google.android.material.R$animator: int design_fab_hide_motion_spec -com.turingtechnologies.materialscrollbar.R$attr: int fontStyle -com.google.android.material.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextEnabled -androidx.swiperefreshlayout.R$drawable -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void onAttachedToWindow() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_16 -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplaceInTxArray -com.google.android.material.R$dimen: int tooltip_vertical_padding -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Time -cyanogenmod.providers.CMSettings$Secure -com.google.android.material.R$layout: int abc_cascading_menu_item_layout -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Entry -okhttp3.internal.http2.Http2Writer: void synReply(boolean,int,java.util.List) -com.google.android.material.textfield.TextInputLayout: void setStartIconContentDescription(int) -wangdaye.com.geometricweather.R$id: int notification_main_column -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: double Value -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_12 -androidx.viewpager2.R$id: int accessibility_custom_action_2 -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: long serialVersionUID -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabText -com.google.android.material.R$string: int abc_toolbar_collapse_description -androidx.vectordrawable.R$id: int accessibility_custom_action_3 -com.google.android.material.R$attr: int windowMinWidthMajor -com.google.android.material.tabs.TabLayout: void addOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) -androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Text -com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context,android.util.AttributeSet,int) -com.xw.repo.bubbleseekbar.R$attr: int bsb_anim_duration -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_radius -com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$id: int packed -wangdaye.com.geometricweather.R$string: int settings_language -androidx.constraintlayout.widget.R$styleable: int Constraint_android_id -com.bumptech.glide.module.LibraryGlideModule: LibraryGlideModule() -androidx.preference.R$attr: int drawerArrowStyle -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Id -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_iconTintMode -com.xw.repo.bubbleseekbar.R$attr: int colorAccent -androidx.preference.R$drawable: int tooltip_frame_light -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setSnowPrecipitationProbability(java.lang.Float) -com.google.android.material.R$styleable: int MaterialCalendarItem_itemTextColor -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionDropDownStyle -androidx.customview.R$color -com.google.android.material.circularreveal.cardview.CircularRevealCardView: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_vertical +android.didikee.donate.R$attr: int popupMenuStyle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_NULL_SHA +com.turingtechnologies.materialscrollbar.R$attr: int iconPadding +com.google.android.material.R$layout: int notification_template_part_chronometer +james.adaptiveicon.R$styleable: int AppCompatTheme_activityChooserViewStyle +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textAppearance +wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_button_bar_material +wangdaye.com.geometricweather.main.dialogs.LocationHelpDialog +com.bumptech.glide.R$attr: int keylines +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_light +android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMark +androidx.hilt.R$styleable: int[] GradientColorItem +androidx.preference.R$style: int TextAppearance_AppCompat_Subhead_Inverse +androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar +androidx.vectordrawable.R$id: int accessibility_custom_action_7 +com.google.android.material.R$attr: int contrast +james.adaptiveicon.R$styleable: int ActionBar_hideOnContentScroll +android.didikee.donate.R$color: int material_grey_800 +io.reactivex.internal.subscriptions.BasicQueueSubscription: long serialVersionUID +com.xw.repo.bubbleseekbar.R$attr: int fontProviderQuery +okhttp3.internal.cache.CacheStrategy$Factory +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date updateDate +com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: void setInternalAutoHideListener(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) +cyanogenmod.profiles.RingModeSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +wangdaye.com.geometricweather.R$attr: int titleMargins +androidx.preference.R$attr: int listPreferredItemPaddingRight +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabView +cyanogenmod.profiles.RingModeSettings: boolean mOverride +cyanogenmod.weather.WeatherInfo: double mHumidity +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalGap +androidx.constraintlayout.helper.widget.Flow: void setPadding(int) +com.google.android.material.R$styleable: int OnSwipe_maxVelocity +androidx.hilt.R$attr: R$attr() +wangdaye.com.geometricweather.R$layout: int material_chip_input_combo +com.google.android.material.R$styleable: int Constraint_flow_lastHorizontalBias +wangdaye.com.geometricweather.R$drawable: int mtrl_popupmenu_background_dark +okhttp3.internal.connection.RouteSelector$Selection: boolean hasNext() +wangdaye.com.geometricweather.db.entities.LocationEntity: void setCity(java.lang.String) +com.google.android.material.R$dimen: int mtrl_progress_circular_radius +cyanogenmod.weatherservice.ServiceRequestResult$Builder +wangdaye.com.geometricweather.R$attr: int seekBarPreferenceStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_top +androidx.appcompat.R$bool +androidx.lifecycle.LifecycleRegistry: void popParentState() +com.xw.repo.bubbleseekbar.R$attr: int queryBackground +retrofit2.ParameterHandler$Body: int p +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport parent +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int boxBackgroundColor +wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitleIconStyle +wangdaye.com.geometricweather.R$attr: int unchecked_background_color +android.didikee.donate.R$styleable: int ActionBar_progressBarStyle +okhttp3.internal.http1.Http1Codec: okio.Source newChunkedSource(okhttp3.HttpUrl) +wangdaye.com.geometricweather.R$integer: int mtrl_calendar_selection_text_lines +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.disposables.Disposable upstream +com.turingtechnologies.materialscrollbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +androidx.fragment.R$style: int TextAppearance_Compat_Notification_Title +androidx.constraintlayout.widget.R$styleable: R$styleable() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String temperature +cyanogenmod.weather.WeatherInfo$Builder: double mHumidity +androidx.vectordrawable.R$layout: int notification_template_custom_big +android.didikee.donate.R$style: int Base_DialogWindowTitleBackground_AppCompat +com.google.android.material.R$attr: int actionModeCutDrawable +androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat_Dark +okhttp3.Cookie: boolean secure() +com.xw.repo.bubbleseekbar.R$attr: int closeItemLayout +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.preference.R$styleable: int SeekBarPreference_android_max +cyanogenmod.themes.ThemeManager: void onClientPaused(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi mApi +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent +com.google.android.material.R$dimen: int mtrl_calendar_pre_l_text_clip_padding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX) +okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_REENCODE_SET +wangdaye.com.geometricweather.R$id: int test_radiobutton_android_button_tint +okhttp3.Cookie$Builder: boolean persistent +okhttp3.internal.connection.RouteDatabase: boolean shouldPostpone(okhttp3.Route) +androidx.appcompat.R$styleable: int[] View +retrofit2.ParameterHandler$Query: retrofit2.Converter valueConverter +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedWidthMinor +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Large_Inverse +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +com.turingtechnologies.materialscrollbar.R$attr: int titleMarginBottom +wangdaye.com.geometricweather.R$color: int colorSearchBarBackground_light +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceInformationStyle +wangdaye.com.geometricweather.R$id: int widget_week_icon_5 +cyanogenmod.themes.IThemeService$Stub$Proxy: void unregisterThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) +androidx.dynamicanimation.R$styleable: int GradientColor_android_endY +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Borderless +androidx.constraintlayout.widget.R$style: R$style() +okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.R$attr: int percentWidth +android.didikee.donate.R$styleable: int TextAppearance_android_textColorHint +androidx.hilt.work.R$id: int icon_group +wangdaye.com.geometricweather.R$id: int checked +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context,android.util.AttributeSet) +okio.Buffer: int read(java.nio.ByteBuffer) +wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_descendantFocusability +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerId +com.jaredrummler.android.colorpicker.R$attr: int actionModeStyle +okio.Pipe$PipeSink: Pipe$PipeSink(okio.Pipe) +wangdaye.com.geometricweather.R$styleable: int Transition_transitionDisable +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onError(java.lang.Throwable) +com.google.android.material.R$drawable: int abc_seekbar_tick_mark_material +retrofit2.ParameterHandler$PartMap: retrofit2.Converter valueConverter +com.jaredrummler.android.colorpicker.R$layout: int abc_popup_menu_item_layout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX indices +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.ChineseCityEntity) +androidx.constraintlayout.widget.R$dimen: int abc_list_item_padding_horizontal_material +okhttp3.WebSocketListener: void onMessage(okhttp3.WebSocket,okio.ByteString) +com.google.android.material.R$attr: int chipStandaloneStyle +com.xw.repo.bubbleseekbar.R$style: int AlertDialog_AppCompat_Light +okio.Buffer$1 +com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationY(float) +androidx.preference.R$color: int dim_foreground_disabled_material_light +androidx.appcompat.resources.R$styleable: int GradientColor_android_centerY +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingEnd +com.google.android.material.R$attr: int colorControlHighlight +wangdaye.com.geometricweather.R$attr: int flow_lastVerticalStyle +androidx.recyclerview.R$styleable: int GradientColor_android_endX +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_to_on_mtrl_015 +wangdaye.com.geometricweather.R$attr: int spanCount +com.google.gson.stream.JsonScope: int NONEMPTY_DOCUMENT +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SearchView +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean disposed +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date getTo() +wangdaye.com.geometricweather.remoteviews.config.AbstractWidgetConfigActivity: AbstractWidgetConfigActivity() +androidx.appcompat.widget.FitWindowsFrameLayout: FitWindowsFrameLayout(android.content.Context) +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_unregisterChangeListener +com.google.gson.LongSerializationPolicy$1 +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_shutdown +androidx.preference.R$styleable: int BackgroundStyle_android_selectableItemBackground +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String PUBLIC_SUFFIX_RESOURCE +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ListView_DropDown +androidx.appcompat.R$style: int Widget_AppCompat_ListPopupWindow +cyanogenmod.app.IProfileManager: boolean removeProfile(cyanogenmod.app.Profile) +okhttp3.internal.http2.Hpack$Writer: int dynamicTableByteCount +com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_DropDownUp +com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_toLeftOf +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder authenticator(okhttp3.Authenticator) +androidx.coordinatorlayout.R$attr: int layout_anchor +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_OutlinedButton +com.google.android.material.R$styleable: int Layout_layout_constraintCircleAngle +androidx.lifecycle.Transformations: androidx.lifecycle.LiveData map(androidx.lifecycle.LiveData,androidx.arch.core.util.Function) +com.google.android.material.slider.BaseSlider: void setValues(java.util.List) +android.didikee.donate.R$id: int progress_circular +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_registerThemeProcessingListener +androidx.vectordrawable.animated.R$integer: R$integer() +com.google.android.material.R$styleable: int AppCompatTheme_windowFixedHeightMinor +retrofit2.Response +androidx.lifecycle.SavedStateHandleController$1: androidx.lifecycle.Lifecycle val$lifecycle +androidx.constraintlayout.widget.R$attr: int layoutDuringTransition +com.google.android.material.appbar.CollapsingToolbarLayout: int getMaxLines() +android.didikee.donate.R$attr: int showAsAction +wangdaye.com.geometricweather.R$id: int add +androidx.coordinatorlayout.R$drawable: int notification_bg_normal_pressed io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void attachEntity(wangdaye.com.geometricweather.db.entities.WeatherEntity) -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_2 -androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver: ForceStopRunnable$BroadcastReceiver() -com.turingtechnologies.materialscrollbar.R$attr: int fabCustomSize -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: java.lang.String Unit -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onComplete() -wangdaye.com.geometricweather.R$styleable: int ActionBar_displayOptions -james.adaptiveicon.R$styleable: int FontFamilyFont_android_ttcIndex -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.Window mWindow -com.google.android.material.datepicker.SingleDateSelector -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type rawType -wangdaye.com.geometricweather.R$styleable: int MaterialButton_rippleColor -androidx.work.R$dimen: int compat_notification_large_icon_max_width -androidx.preference.R$styleable: int[] MenuItem -wangdaye.com.geometricweather.R$drawable: int abc_btn_check_material_anim -androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_3_material -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -okhttp3.internal.platform.Android10Platform: void enableSessionTickets(javax.net.ssl.SSLSocket) -com.xw.repo.bubbleseekbar.R$styleable: int[] ActivityChooserView -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4 -androidx.preference.ListPreferenceDialogFragmentCompat: ListPreferenceDialogFragmentCompat() -androidx.core.graphics.drawable.IconCompatParcelizer -com.google.android.material.R$dimen: int mtrl_btn_letter_spacing -androidx.preference.R$id: int line3 -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type getOwnerType() -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetEnd -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setTargetOffsetTopAndBottom(int) -androidx.constraintlayout.widget.R$attr: int windowMinWidthMinor -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.R$integer: int mtrl_tab_indicator_anim_duration_ms -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean cancelled -com.google.android.material.R$styleable: int AppCompatTheme_viewInflaterClass -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: MfForecastResult$Forecast$Wind() -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ScheduledExecutorService access$500(okhttp3.internal.http2.Http2Connection) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean outputFused -androidx.hilt.lifecycle.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow12h -wangdaye.com.geometricweather.R$id: int beginning -androidx.viewpager.R$style: int Widget_Compat_NotificationActionText -androidx.hilt.R$drawable: int notification_template_icon_bg -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Body1 -androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_backgroundTintMode -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_creator -androidx.constraintlayout.widget.R$attr: int selectableItemBackground -com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String FLAVOR -james.adaptiveicon.R$styleable: int Toolbar_contentInsetStartWithNavigation -okhttp3.internal.connection.StreamAllocation: void noNewStreams() -cyanogenmod.providers.CMSettings$Secure: java.lang.String RECENTS_LONG_PRESS_ACTIVITY -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String mslp -androidx.preference.R$styleable: int View_theme -androidx.preference.R$id: int left -androidx.activity.R$color: int ripple_material_light -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void complete(java.lang.Object) -androidx.transition.R$styleable: int GradientColor_android_centerX -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextStyle -androidx.preference.R$styleable: int Toolbar_android_gravity +androidx.constraintlayout.widget.R$styleable: int ActionMenuItemView_android_minWidth +cyanogenmod.app.LiveLockScreenInfo$Builder: LiveLockScreenInfo$Builder() +wangdaye.com.geometricweather.R$styleable: int MotionScene_layoutDuringTransition +com.google.android.material.R$styleable: int TabLayout_tabPadding +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endY +androidx.constraintlayout.widget.R$attr: int switchPadding +wangdaye.com.geometricweather.R$id: int mtrl_picker_header_title_and_selection +cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_WAKE_SCREEN +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_color +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_titleCondensed +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +androidx.appcompat.widget.AppCompatTextView: void setSupportCompoundDrawablesTintList(android.content.res.ColorStateList) +androidx.constraintlayout.widget.ConstraintLayout: void setOptimizationLevel(int) +com.google.android.material.R$styleable: int AppCompatTheme_checkedTextViewStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeDegreeDayTemperature() +wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionIcon +retrofit2.RequestBuilder: void addPart(okhttp3.MultipartBody$Part) +androidx.appcompat.R$attr: int dropDownListViewStyle +com.google.android.material.R$drawable: int abc_textfield_default_mtrl_alpha +com.google.android.material.R$styleable: int ActionMenuItemView_android_minWidth +com.google.android.material.R$xml: int standalone_badge_gravity_top_start +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Subhead +com.google.android.material.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: io.reactivex.Scheduler$Worker worker +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Title +com.jaredrummler.android.colorpicker.R$id: int shades_layout +com.xw.repo.bubbleseekbar.R$dimen: int notification_subtext_size +androidx.appcompat.widget.AppCompatTextView: int getAutoSizeMinTextSize() +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.PushObserver pushObserver +okhttp3.HttpUrl$Builder: java.lang.String INVALID_HOST +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer grassLevel +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat +cyanogenmod.weather.WeatherInfo: WeatherInfo() +wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.converters.TimeZoneConverter timeZoneConverter +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_android_layout +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DIALER_OPENCNAM_ACCOUNT_SID_VALIDATOR +wangdaye.com.geometricweather.R$attr: int endIconDrawable +androidx.constraintlayout.widget.R$color: int abc_tint_switch_track +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarContainer +com.google.gson.stream.JsonWriter: void newline() +androidx.appcompat.R$id: int async +androidx.preference.R$string: int abc_searchview_description_search +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias +com.google.android.material.R$color: int material_grey_100 +androidx.transition.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$attr: int min +james.adaptiveicon.R$styleable: int SwitchCompat_switchMinWidth +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.google.android.material.appbar.AppBarLayout$BaseBehavior: AppBarLayout$BaseBehavior() +com.xw.repo.bubbleseekbar.R$string: int abc_activitychooserview_choose_application +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onAttach(android.os.IBinder) +androidx.preference.R$attr: int textAppearanceSmallPopupMenu +com.turingtechnologies.materialscrollbar.R$integer: int show_password_duration +androidx.preference.R$id: int screen +cyanogenmod.app.CMContextConstants$Features: java.lang.String PERFORMANCE +wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundTomorrowForecastUpdateService: Hilt_ForegroundTomorrowForecastUpdateService() +james.adaptiveicon.R$styleable: int ActionBar_backgroundSplit +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_normal_material_dark +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +wangdaye.com.geometricweather.R$dimen: int compat_notification_large_icon_max_width +okhttp3.internal.http.HttpDate$1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX +com.google.android.material.R$color: int androidx_core_ripple_material_light +androidx.preference.R$attr: int tickMarkTint +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_8 +androidx.preference.R$styleable: int MenuView_android_horizontalDivider +com.google.android.material.R$integer: int cancel_button_image_alpha +wangdaye.com.geometricweather.R$drawable: int ic_alert +com.google.android.material.R$styleable: int FloatingActionButton_maxImageSize +com.google.android.material.slider.BaseSlider: java.lang.CharSequence getAccessibilityClassName() +androidx.appcompat.R$attr: int buttonIconDimen +wangdaye.com.geometricweather.R$anim +androidx.appcompat.widget.ActionMenuView: void setPopupTheme(int) +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification +okhttp3.internal.platform.OptionalMethod: boolean isSupported(java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_light +com.google.android.material.R$attr: int constraints +androidx.constraintlayout.widget.R$string: int abc_activitychooserview_choose_application +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarSplitStyle +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontStyle +androidx.dynamicanimation.R$drawable: int notification_bg_low +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +androidx.appcompat.R$id: int tag_transition_group +com.google.android.material.R$styleable: int Layout_layout_constraintTop_toBottomOf +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.appcompat.widget.ViewStubCompat: android.view.LayoutInflater getLayoutInflater() +androidx.legacy.coreutils.R$dimen: int notification_content_margin_start +cyanogenmod.app.CustomTileListenerService: java.lang.String SERVICE_INTERFACE +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void dispose() +com.xw.repo.bubbleseekbar.R$dimen: int hint_alpha_material_dark +cyanogenmod.app.BaseLiveLockManagerService: void enforcePrivateAccessPermission() +retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler parseParameter(int,java.lang.reflect.Type,java.lang.annotation.Annotation[],boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: java.util.List value +cyanogenmod.profiles.ConnectionSettings: int describeContents() +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: boolean isValid() +com.google.android.material.R$id: int layout +androidx.coordinatorlayout.R$integer: int status_bar_notification_info_maxnum +com.turingtechnologies.materialscrollbar.R$bool: int abc_config_actionMenuItemAllCaps +androidx.vectordrawable.animated.R$id: int tag_unhandled_key_event_manager +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +com.jaredrummler.android.colorpicker.R$attr: int title +com.turingtechnologies.materialscrollbar.R$attr: int checkedIconEnabled +io.reactivex.internal.util.VolatileSizeArrayList: int lastIndexOf(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String shortDescription +com.google.gson.stream.JsonWriter: void close() +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherSource(java.lang.String) +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: boolean isDisposed() +com.google.android.material.chip.Chip: float getIconEndPadding() +wangdaye.com.geometricweather.R$string: int abc_searchview_description_query +cyanogenmod.profiles.RingModeSettings: RingModeSettings() +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_CompactMenu +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalAlign +com.jaredrummler.android.colorpicker.R$style: int Base_V26_Theme_AppCompat +androidx.core.R$id: int info +com.google.android.material.R$styleable: int MenuItem_android_checkable +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeBackground +cyanogenmod.weather.RequestInfo: RequestInfo(android.os.Parcel,cyanogenmod.weather.RequestInfo$1) +wangdaye.com.geometricweather.R$dimen: int notification_top_pad_large_text +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.util.Map groups +okio.RealBufferedSource: long readAll(okio.Sink) +wangdaye.com.geometricweather.R$color: int mtrl_tabs_legacy_text_color_selector +com.google.android.material.R$styleable: int TabLayout_tabIndicatorGravity +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_104 +wangdaye.com.geometricweather.R$drawable: int abc_cab_background_internal_bg +androidx.appcompat.widget.AppCompatTextView: androidx.core.text.PrecomputedTextCompat$Params getTextMetricsParamsCompat() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange +okhttp3.OkHttpClient: okhttp3.Dispatcher dispatcher +androidx.dynamicanimation.R$drawable: int notification_template_icon_bg +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_small_material +com.bumptech.glide.manager.SupportRequestManagerFragment: SupportRequestManagerFragment() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator PEOPLE_LOOKUP_PROVIDER_VALIDATOR +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Hint +wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullResourceIdException: ResourceUtils$NullResourceIdException() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer treeIndex +com.google.android.material.R$id: int dialog_button +com.google.android.material.R$style: int Animation_MaterialComponents_BottomSheetDialog +okhttp3.internal.ws.RealWebSocket$PingRunnable: RealWebSocket$PingRunnable(okhttp3.internal.ws.RealWebSocket) +wangdaye.com.geometricweather.R$string: int precipitation_overview +wangdaye.com.geometricweather.R$string: int wind_11 +androidx.hilt.lifecycle.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.HistoryEntity) +wangdaye.com.geometricweather.R$styleable: int StateListDrawableItem_android_drawable +androidx.appcompat.widget.AppCompatSpinner$DropdownPopup +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableCompatState +wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_icon +wangdaye.com.geometricweather.R$styleable: int CardView_cardBackgroundColor +wangdaye.com.geometricweather.R$attr: int autoSizeMinTextSize +com.google.android.material.R$color: int mtrl_on_primary_text_btn_text_color_selector +com.xw.repo.bubbleseekbar.R$attr: int colorControlNormal +com.jaredrummler.android.colorpicker.R$id: int action_menu_presenter +wangdaye.com.geometricweather.R$string: int feedback_interpret_notification_group_title +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: java.util.concurrent.TimeUnit unit +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object getKey(java.lang.Object) +com.google.android.material.R$attr: int maxActionInlineWidth +io.reactivex.internal.observers.BlockingObserver +androidx.constraintlayout.widget.R$dimen: int tooltip_y_offset_non_touch +com.google.android.material.R$style: int Base_Theme_AppCompat_Light +android.didikee.donate.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean disposed +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onComplete() +com.google.android.material.R$styleable: int BottomNavigationView_backgroundTint +com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationX(float) +com.google.android.material.R$styleable: int Layout_android_layout_width +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +androidx.preference.R$attr: int drawableTintMode +com.google.android.material.R$style: int Widget_AppCompat_Button +androidx.appcompat.R$dimen: int abc_button_padding_vertical_material +cyanogenmod.weather.WeatherLocation: java.lang.String getCity() +androidx.transition.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status SUCCESS +james.adaptiveicon.R$color: int abc_tint_spinner +com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreferenceCompat_Material +androidx.core.R$color: int notification_icon_bg_color +androidx.legacy.coreutils.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$layout: int material_time_chip +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void alternateService(int,java.lang.String,okio.ByteString,java.lang.String,int,long) +androidx.appcompat.widget.SearchView: int getImeOptions() +com.google.android.material.R$style: int Base_V7_Theme_AppCompat +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getRequiredWidth() +okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithoutIndexingNewName() +com.xw.repo.bubbleseekbar.R$id: R$id() +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTint +com.github.rahatarmanahmed.cpv.CircularProgressView: void onDetachedFromWindow() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: MfForecastV2Result$Geometry() +androidx.preference.R$attr: int selectableItemBackground +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_Solid +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTag +com.google.android.material.R$attr: int cornerFamilyTopLeft +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_titleTextStyle +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: android.os.IBinder asBinder() +com.github.rahatarmanahmed.cpv.CircularProgressView: int animDuration +okhttp3.internal.ws.RealWebSocket$2: void onResponse(okhttp3.Call,okhttp3.Response) +io.reactivex.internal.queue.SpscArrayQueue: void soProducerIndex(long) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display4 +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver +androidx.activity.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.R$id: int container +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: long subscriberCount +androidx.appcompat.R$attr: int subtitleTextAppearance +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerColor +io.reactivex.Observable: io.reactivex.Observable zipWith(java.lang.Iterable,io.reactivex.functions.BiFunction) +wangdaye.com.geometricweather.R$integer: int cpv_default_anim_duration +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostResumed(android.app.Activity) +androidx.hilt.R$styleable: int FontFamilyFont_android_font +cyanogenmod.weatherservice.IWeatherProviderService$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$layout: int container_main_details +wangdaye.com.geometricweather.R$id: int cut +wangdaye.com.geometricweather.R$dimen: int abc_select_dialog_padding_start_material +okhttp3.ResponseBody: okio.BufferedSource source() +com.google.android.material.R$styleable: int Toolbar_titleMarginBottom +androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$id: int autoCompleteToStart +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object readKey(android.database.Cursor,int) +wangdaye.com.geometricweather.R$attr: int windowActionModeOverlay +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerError(io.reactivex.internal.observers.InnerQueuedObserver,java.lang.Throwable) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean delayErrors +com.google.android.material.R$styleable: int ConstraintSet_android_rotationY +james.adaptiveicon.R$attr: int customNavigationLayout +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_NoActionBar +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_height_fullscreen +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setAnimationProgress(float) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_disabled_elevation +com.xw.repo.bubbleseekbar.R$color: int abc_hint_foreground_material_light +wangdaye.com.geometricweather.R$attr: int subtitle +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerX +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void complete() +android.didikee.donate.R$id: int disableHome +okhttp3.internal.http.BridgeInterceptor: okhttp3.CookieJar cookieJar +com.turingtechnologies.materialscrollbar.R$attr: int borderlessButtonStyle +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_curveFit +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int isRainOrSnow +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.internal.util.AtomicThrowable errors +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +android.didikee.donate.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider access$000(cyanogenmod.externalviews.KeyguardExternalView) +com.google.android.material.R$id: int chip1 +james.adaptiveicon.R$attr: int closeItemLayout +wangdaye.com.geometricweather.R$id: int widget_week +com.turingtechnologies.materialscrollbar.TouchScrollBar: float getHideRatio() +com.google.android.material.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_SHA +androidx.recyclerview.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric() +com.google.android.material.R$styleable: int PropertySet_visibilityMode +wangdaye.com.geometricweather.R$color: int primary_dark_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_viewInflaterClass +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_checkableBehavior +androidx.hilt.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_visible +james.adaptiveicon.R$style: int Widget_AppCompat_ImageButton +okhttp3.internal.http.HttpHeaders: long stringToLong(java.lang.String) +okio.BufferedSource: okio.Buffer buffer() +android.didikee.donate.R$dimen: int abc_dialog_fixed_height_major +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_1 +cyanogenmod.weather.IRequestInfoListener +okhttp3.Cookie: int hashCode() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.preference.R$id: int accessibility_custom_action_1 +androidx.work.R$id: int time +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextView +cyanogenmod.app.ProfileManager: java.lang.String ACTION_PROFILE_PICKER +androidx.preference.R$color: int background_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean +androidx.preference.R$dimen: int abc_text_size_medium_material +com.google.gson.stream.JsonReader: int limit +cyanogenmod.themes.IThemeService: void removeUpdates(cyanogenmod.themes.IThemeChangeListener) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnwd +androidx.appcompat.R$drawable: int abc_btn_radio_to_on_mtrl_000 +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris +com.turingtechnologies.materialscrollbar.R$attr: int tabUnboundedRipple +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onError(java.lang.Throwable) +androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView: void setHoverListener(androidx.appcompat.widget.MenuItemHoverListener) +wangdaye.com.geometricweather.R$string: int settings_title_notification_temp_icon +com.google.android.material.R$id: int listMode +cyanogenmod.externalviews.KeyguardExternalView$3: int val$x +cyanogenmod.weather.WeatherInfo: java.lang.String access$202(cyanogenmod.weather.WeatherInfo,java.lang.String) +com.google.android.material.R$animator: int linear_indeterminate_line2_tail_interpolator +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String src +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void innerError(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver,java.lang.Throwable) +com.bumptech.glide.integration.okhttp.R$styleable: int[] CoordinatorLayout_Layout +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation +androidx.swiperefreshlayout.R$dimen: int notification_content_margin_start +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: ObservableWindowBoundary$WindowBoundaryMainObserver(io.reactivex.Observer,int) +androidx.customview.R$styleable: int GradientColor_android_centerY +androidx.viewpager2.widget.ViewPager2: int getPageSize() +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_DarkActionBar +com.jaredrummler.android.colorpicker.R$styleable: int Preference_icon +android.didikee.donate.R$attr: int maxButtonHeight +com.xw.repo.bubbleseekbar.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$id: int wrap_content +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_MWI_NOTIFICATION_VALIDATOR +com.google.android.material.slider.Slider: float getThumbStrokeWidth() +cyanogenmod.weather.WeatherLocation: java.lang.String getCountry() +androidx.appcompat.R$style: int Platform_AppCompat +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.google.android.material.R$layout: int design_navigation_item_subheader +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer +com.google.android.material.R$attr: int errorEnabled +androidx.lifecycle.ComputableLiveData: ComputableLiveData() +androidx.work.R$id: int dialog_button +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.internal.util.AtomicThrowable error +wangdaye.com.geometricweather.R$attr: int itemTextAppearance +androidx.appcompat.widget.Toolbar: void setLogoDescription(int) +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItem +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: double Value +james.adaptiveicon.R$styleable: int FontFamily_fontProviderQuery +androidx.constraintlayout.widget.R$styleable: int OnSwipe_maxVelocity +com.jaredrummler.android.colorpicker.R$styleable: int[] PopupWindow +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView_DropDown +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String hexAV() +android.didikee.donate.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColorItem_android_offset +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView_Menu +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_textLocale +com.google.android.material.R$styleable: int Transform_android_transformPivotX +androidx.lifecycle.LifecycleRegistry: void markState(androidx.lifecycle.Lifecycle$State) +wangdaye.com.geometricweather.R$string: int wind_7 +com.turingtechnologies.materialscrollbar.R$styleable: int[] TabItem androidx.appcompat.R$styleable: int AppCompatTheme_actionButtonStyle -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA -wangdaye.com.geometricweather.R$styleable: int MaterialToolbar_navigationIconColor -androidx.appcompat.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -androidx.core.R$dimen: int notification_content_margin_start -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -androidx.vectordrawable.R$styleable: int ColorStateListItem_android_alpha -com.turingtechnologies.materialscrollbar.R$attr: int progressBarStyle -android.didikee.donate.R$id: int chronometer -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_track_mtrl_alpha -androidx.dynamicanimation.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.R$styleable: int Preference_android_summary -okhttp3.Challenge: Challenge(java.lang.String,java.lang.String) -com.google.android.material.R$dimen: int mtrl_extended_fab_end_padding -androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackground(android.graphics.drawable.Drawable) -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawableItem_android_drawable -androidx.constraintlayout.widget.R$color: int error_color_material_light -androidx.preference.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_NoActionBar -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type upperBound -com.jaredrummler.android.colorpicker.R$color: int dim_foreground_disabled_material_dark -com.google.android.material.chip.Chip: void setRippleColorResource(int) -cyanogenmod.app.Profile$Type -cyanogenmod.weather.WeatherInfo$DayForecast: double getLow() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float rainPrecipitation -androidx.lifecycle.SavedStateHandleController$OnRecreation: void onRecreated(androidx.savedstate.SavedStateRegistryOwner) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: FlowableOnBackpressureError$BackpressureErrorSubscriber(org.reactivestreams.Subscriber) -com.google.android.material.R$layout: int abc_screen_simple_overlay_action_mode -wangdaye.com.geometricweather.R$layout: int widget_clock_day_temp -wangdaye.com.geometricweather.R$dimen: int abc_disabled_alpha_material_dark -wangdaye.com.geometricweather.R$attr: int drawableEndCompat -com.google.android.material.R$styleable: int StateListDrawable_android_variablePadding -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_drawableSize -android.didikee.donate.R$attr: int titleTextAppearance -androidx.cardview.R$styleable: int CardView_contentPaddingRight -com.google.android.material.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -com.turingtechnologies.materialscrollbar.R$string: R$string() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: java.lang.String English -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean isEmpty() -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.R$style: int widget_text_clock_aa -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: void onActive() +cyanogenmod.app.Profile$TriggerType +cyanogenmod.app.Profile$ProfileTrigger$1: cyanogenmod.app.Profile$ProfileTrigger createFromParcel(android.os.Parcel) +androidx.preference.R$attr: int subMenuArrow +androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$style: int Base_V28_Theme_AppCompat +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: MfForecastResult$Forecast$Temperature() +cyanogenmod.app.BaseLiveLockManagerService: void cancelLiveLockScreen(java.lang.String,int,int) +cyanogenmod.weather.WeatherInfo: long access$1002(cyanogenmod.weather.WeatherInfo,long) +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1(kotlin.coroutines.Continuation,java.lang.Exception) +james.adaptiveicon.R$styleable: int MenuItem_android_visible +cyanogenmod.os.Concierge: Concierge() +io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper CANCELLED +androidx.appcompat.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemIconDisabledAlpha +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderPackage +androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMarkTint +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noTransform() +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$RecycledViewPool getRecycledViewPool() +androidx.swiperefreshlayout.R$id: int accessibility_action_clickable_span +okhttp3.internal.platform.Android10Platform +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Colored +cyanogenmod.app.IProfileManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: long serialVersionUID +androidx.core.R$id: int time +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvLevel +wangdaye.com.geometricweather.R$id: int uniform +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemBackground +androidx.appcompat.R$attr: int windowMinWidthMajor +com.bumptech.glide.integration.okhttp3.OkHttpGlideModule +cyanogenmod.weather.WeatherInfo: int access$502(cyanogenmod.weather.WeatherInfo,int) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: org.reactivestreams.Subscriber downstream +android.didikee.donate.R$style: int Widget_AppCompat_PopupWindow +cyanogenmod.providers.CMSettings$System$3: CMSettings$System$3() +wangdaye.com.geometricweather.R$color: int colorRoot_dark +androidx.appcompat.R$dimen: int abc_action_bar_default_height_material +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_16 +cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.CMStatusBarManager getInstance(android.content.Context) +okhttp3.internal.Util: boolean isAndroidGetsocknameError(java.lang.AssertionError) +com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_weight +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_133 +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType valueOf(java.lang.String) +wangdaye.com.geometricweather.R$id: int spacer +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +androidx.appcompat.R$styleable: int SearchView_android_focusable +androidx.viewpager2.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$attr: int recyclerViewStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: double Value +okhttp3.MultipartBody: byte[] DASHDASH +android.didikee.donate.R$styleable: int RecycleListView_paddingTopNoTitle +androidx.preference.R$string: int abc_menu_enter_shortcut_label +com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_Dialog +james.adaptiveicon.R$drawable: int abc_btn_radio_to_on_mtrl_015 +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +androidx.transition.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.R$style: int widget_background_card +okio.ByteString: int indexOf(okio.ByteString,int) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlHighlight +androidx.activity.R$id: int accessibility_custom_action_19 +io.reactivex.internal.schedulers.ScheduledRunnable: int FUTURE_INDEX +androidx.lifecycle.SavedStateHandleController: java.lang.String mKey +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_percent +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionModeOverlay +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$style: int Preference_CheckBoxPreference +androidx.lifecycle.extensions.R$dimen: int notification_small_icon_background_padding +cyanogenmod.themes.ThemeManager: int getProgress() +androidx.hilt.R$style: int TextAppearance_Compat_Notification_Line2 +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$id: int star_2 +retrofit2.Retrofit: boolean validateEagerly +wangdaye.com.geometricweather.R$color: int colorLine_light +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +com.bumptech.glide.R$id: int action_container +cyanogenmod.providers.CMSettings$Secure: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) +androidx.constraintlayout.widget.R$attr: int drawerArrowStyle +android.didikee.donate.R$style: int Platform_Widget_AppCompat_Spinner +okhttp3.Cache$CacheResponseBody: okio.BufferedSource source() +com.google.android.material.R$drawable: int abc_list_selector_disabled_holo_light +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_gradientRadius +androidx.hilt.work.R$id: int accessibility_custom_action_23 +androidx.viewpager2.R$dimen +androidx.drawerlayout.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$drawable: int ic_drag +com.google.android.material.card.MaterialCardView: void setStrokeColor(android.content.res.ColorStateList) +com.xw.repo.bubbleseekbar.R$dimen: int notification_small_icon_size_as_large wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginStart -com.google.android.material.R$styleable: int TextAppearance_android_shadowDx -com.google.android.material.R$id: int expanded_menu -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_corner_radius_material -android.didikee.donate.R$attr: int titleMarginEnd -com.turingtechnologies.materialscrollbar.R$attr: int switchMinWidth -androidx.core.app.RemoteActionCompatParcelizer -androidx.appcompat.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -okhttp3.Cookie$Builder: Cookie$Builder() -okio.RealBufferedSource: long indexOf(okio.ByteString,long) -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void otherComplete() -com.google.android.material.R$styleable: int TabLayout_tabIndicatorGravity -androidx.appcompat.widget.AppCompatImageButton: void setBackgroundResource(int) -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_minHeight -androidx.preference.R$dimen: int abc_seekbar_track_background_height_material -wangdaye.com.geometricweather.R$string: int key_card_alpha -androidx.appcompat.R$attr: int progressBarStyle -androidx.constraintlayout.widget.R$styleable: int MotionLayout_motionDebug +androidx.appcompat.widget.AppCompatImageButton: android.content.res.ColorStateList getSupportBackgroundTintList() +com.google.android.material.R$dimen: int abc_button_inset_horizontal_material +okhttp3.MultipartBody +androidx.preference.R$drawable: int abc_scrubber_primary_mtrl_alpha +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_PopupMenu +com.google.android.material.R$attr: int showText +okio.AsyncTimeout: okio.AsyncTimeout awaitTimeout() +com.google.android.material.chip.Chip: float getCloseIconStartPadding() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX() +okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: okhttp3.internal.http2.Http2Connection this$0 +com.turingtechnologies.materialscrollbar.R$styleable: int[] ListPopupWindow +com.turingtechnologies.materialscrollbar.R$attr: int dividerVertical +androidx.appcompat.widget.SwitchCompat: int getCompoundPaddingRight() +okhttp3.internal.Internal: boolean connectionBecameIdle(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) +com.google.android.material.R$attr: int extendMotionSpec +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTopCompat +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial() +androidx.fragment.R$id: int time +com.jaredrummler.android.colorpicker.R$attr: int imageButtonStyle +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBaseline_creator +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +android.didikee.donate.R$styleable: int ViewStubCompat_android_inflatedId +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemStrokeWidth +androidx.viewpager.R$dimen +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_margin +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric +wangdaye.com.geometricweather.R$layout: int notification_multi_city +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: int PrecipitationProbability +androidx.vectordrawable.animated.R$id: int actions +android.didikee.donate.R$attr: int spinnerDropDownItemStyle +wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status LOADING +androidx.appcompat.widget.AppCompatRadioButton: android.graphics.PorterDuff$Mode getSupportButtonTintMode() +com.google.android.material.R$styleable: int AppCompatTheme_colorAccent +androidx.recyclerview.widget.RecyclerView: int getBaseline() +com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuView +androidx.appcompat.R$dimen: int abc_edit_text_inset_bottom_material +androidx.fragment.R$layout: int notification_template_part_chronometer +androidx.vectordrawable.R$id: int italic +androidx.preference.R$color: int bright_foreground_disabled_material_light +androidx.viewpager.R$string +wangdaye.com.geometricweather.R$attr: int cpv_showColorShades +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: ObservableMergeWithCompletable$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView_DropDown +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextColor(android.content.res.ColorStateList) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.preference.R$styleable: int Fragment_android_id +androidx.preference.R$styleable: int SwitchPreference_android_summaryOn +wangdaye.com.geometricweather.R$attr: int counterTextColor +com.google.android.material.R$string: int mtrl_picker_text_input_date_range_start_hint +com.turingtechnologies.materialscrollbar.R$id: R$id() +android.didikee.donate.R$attr: int actionViewClass +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: void setSurfaceAngle(float) +james.adaptiveicon.R$attr: int numericModifiers +cyanogenmod.app.suggest.IAppSuggestManager$Stub: int TRANSACTION_handles_0 +wangdaye.com.geometricweather.R$id: int widget_day_week +androidx.appcompat.view.menu.ListMenuItemView: void setChecked(boolean) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_QUICK_QS_PULLDOWN_VALIDATOR +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.util.Date date +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float total +wangdaye.com.geometricweather.R$array: int speed_unit_values +com.google.android.material.R$attr: int boxStrokeColor +com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context) +com.google.android.material.chip.Chip: void setIconStartPadding(float) +cyanogenmod.hardware.CMHardwareManager: int getDisplayGammaCalibrationMin() +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setLabel(int) +androidx.viewpager.R$attr: int fontProviderCerts +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature +com.bumptech.glide.R$id: int actions +cyanogenmod.themes.ThemeChangeRequest: android.os.Parcelable$Creator CREATOR +com.jaredrummler.android.colorpicker.R$attr: int contentInsetLeft +androidx.work.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.R$attr: int touchAnchorId +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_weightSum +com.google.android.material.R$styleable: int Layout_layout_constraintEnd_toStartOf +okhttp3.internal.tls.OkHostnameVerifier: boolean verifyIpAddress(java.lang.String,java.security.cert.X509Certificate) +androidx.appcompat.R$attr: int colorBackgroundFloating +okhttp3.internal.ws.RealWebSocket: void runWriter() +com.google.android.material.R$styleable: int ConstraintSet_android_minWidth +com.google.android.material.R$color: int primary_text_default_material_light +android.didikee.donate.R$drawable: int abc_item_background_holo_light +android.didikee.donate.R$style: int Base_Animation_AppCompat_DropDownUp +com.google.android.material.R$styleable: int BottomNavigationView_labelVisibilityMode +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +androidx.viewpager.R$styleable: int FontFamilyFont_android_ttcIndex +retrofit2.RequestBuilder: boolean hasBody +wangdaye.com.geometricweather.settings.dialogs.ProvidersPreviewerDialog: ProvidersPreviewerDialog() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice +wangdaye.com.geometricweather.db.entities.MinutelyEntity: long time +wangdaye.com.geometricweather.R$attr: int toolbarId +androidx.preference.R$styleable: int AppCompatTheme_windowMinWidthMajor +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_queryHint +retrofit2.RequestFactory$Builder: boolean gotField +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets +androidx.preference.R$styleable: int MenuItem_android_checkable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric() +androidx.constraintlayout.widget.R$attr: int colorAccent +com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_Material +james.adaptiveicon.R$style: int Widget_AppCompat_SearchView +okhttp3.internal.http2.Hpack: int PREFIX_7_BITS +org.greenrobot.greendao.AbstractDao: AbstractDao(org.greenrobot.greendao.internal.DaoConfig,org.greenrobot.greendao.AbstractDaoSession) +androidx.lifecycle.FullLifecycleObserverAdapter +com.google.android.material.R$styleable: int MenuView_subMenuArrow +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_enterFadeDuration +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: long requested() +com.google.android.material.R$styleable: int AppCompatTheme_dialogTheme +okhttp3.CookieJar: void saveFromResponse(okhttp3.HttpUrl,java.util.List) +io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource) +androidx.constraintlayout.widget.R$string: int abc_menu_enter_shortcut_label +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.internal.disposables.ArrayCompositeDisposable resources +james.adaptiveicon.R$attr: int measureWithLargestChild +com.bumptech.glide.integration.okhttp.R$id: int bottom +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_disabled_holo_dark +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_10 +com.google.android.material.R$style: int ThemeOverlay_Design_TextInputEditText +wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_container +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsModify(boolean) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_disabled_alpha_material_dark +com.google.android.material.R$attr: int nestedScrollFlags +androidx.appcompat.R$styleable: int MenuItem_android_visible +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_android_src +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Line2 +okhttp3.internal.connection.ConnectionSpecSelector: int nextModeIndex +android.didikee.donate.R$styleable: int ColorStateListItem_android_color +androidx.constraintlayout.widget.R$layout: int abc_action_bar_title_item +com.jaredrummler.android.colorpicker.R$id: int search_button +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatSeekBar +androidx.appcompat.R$color: int abc_background_cache_hint_selector_material_dark +wangdaye.com.geometricweather.R$layout: int item_weather_daily_pollen +androidx.hilt.lifecycle.R$id: int tag_accessibility_actions +androidx.customview.widget.ExploreByTouchHelper: int mHoveredVirtualViewId +android.didikee.donate.R$attr: int paddingTopNoTitle +okhttp3.internal.platform.OptionalMethod: OptionalMethod(java.lang.Class,java.lang.String,java.lang.Class[]) +cyanogenmod.app.IProfileManager$Stub: android.os.IBinder asBinder() +androidx.swiperefreshlayout.R$attr: int fontProviderQuery +androidx.preference.R$id: int forever +com.turingtechnologies.materialscrollbar.R$attr: int listChoiceBackgroundIndicator +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableEnd +cyanogenmod.profiles.AirplaneModeSettings: android.os.Parcelable$Creator CREATOR +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode PROTOCOL_ERROR +androidx.preference.R$style: int Base_Widget_AppCompat_ActivityChooserView +androidx.constraintlayout.widget.R$styleable: int Toolbar_buttonGravity +androidx.constraintlayout.widget.R$attr: int listChoiceIndicatorSingleAnimated +wangdaye.com.geometricweather.R$styleable: int View_paddingStart +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ARABIC +com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getErrorIconDrawable() +com.turingtechnologies.materialscrollbar.R$id: int progress_circular +com.google.android.material.R$id: int action_bar_activity_content +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status[] values() +com.google.gson.internal.LinkedTreeMap: void removeInternal(com.google.gson.internal.LinkedTreeMap$Node,boolean) +androidx.appcompat.R$drawable: int abc_edit_text_material +androidx.viewpager.R$dimen: int notification_large_icon_height +com.google.android.material.R$id: int item_touch_helper_previous_elevation +cyanogenmod.weatherservice.ServiceRequestResult: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$dimen: int clock_face_margin_start +okhttp3.Address: java.util.List protocols() +okhttp3.internal.http2.Hpack +com.google.android.material.datepicker.MaterialCalendarGridView: MaterialCalendarGridView(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.entities.WeatherEntity readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.R$color: int bright_foreground_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableTransition +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_background_transition_holo_light +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingRight +com.jaredrummler.android.colorpicker.R$attr: int summaryOn +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void innerSuccess(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver,java.lang.Object) +com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_dark +android.didikee.donate.R$styleable: int LinearLayoutCompat_measureWithLargestChild +androidx.viewpager.widget.ViewPager: int getCurrentItem() +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Line2 +com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_internal_bg +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_maxElementsWrap +okhttp3.Cache$1: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) +org.greenrobot.greendao.DaoException +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PKG_NAME +wangdaye.com.geometricweather.R$drawable: int cpv_btn_background +androidx.preference.R$color: int abc_btn_colored_borderless_text_material +james.adaptiveicon.R$attr: int showTitle +com.jaredrummler.android.colorpicker.R$integer: int abc_config_activityDefaultDur +okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,okio.ByteString) +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat +okhttp3.HttpUrl$Builder: int slashCount(java.lang.String,int,int) +wangdaye.com.geometricweather.R$styleable: int KeyPosition_motionTarget +james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlActivated +retrofit2.ParameterHandler$Query: ParameterHandler$Query(java.lang.String,retrofit2.Converter,boolean) +io.reactivex.subjects.PublishSubject$PublishDisposable: io.reactivex.Observer downstream +cyanogenmod.weather.RequestInfo: boolean access$702(cyanogenmod.weather.RequestInfo,boolean) +com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderText(java.lang.String) +wangdaye.com.geometricweather.R$attr: int chipIconSize +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_menuCategory +androidx.appcompat.R$string: int abc_capital_off +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setStatus(int) +com.google.android.material.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeDegreeDayTemperature() +com.google.android.material.R$layout: int text_view_without_line_height +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_min_width_major +androidx.preference.R$style: int Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_pressedTranslationZ +androidx.constraintlayout.widget.ConstraintHelper: void setReferencedIds(int[]) +com.google.android.material.R$attr: int singleLine +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: int TRANSACTION_onLiveLockScreenChanged_0 +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupMenu +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitationProbability(java.lang.Float) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_default +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_FULL +com.jaredrummler.android.colorpicker.R$anim: int abc_slide_out_top +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_voice_search_api_material +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: ObservableSampleTimed$SampleTimedNoLast(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircleAngle +io.reactivex.Observable: io.reactivex.Observable combineLatest(java.lang.Iterable,io.reactivex.functions.Function) +androidx.viewpager.R$attr: int font +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getTotal() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean) +wangdaye.com.geometricweather.R$attr: int motionStagger +androidx.preference.R$styleable: int AppCompatTextView_drawableBottomCompat +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onSubscribe(org.reactivestreams.Subscription) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getUvDescription() +okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) +okio.Timeout: void waitUntilNotified(java.lang.Object) +com.google.android.material.R$styleable: int Slider_tickColorActive +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setBrandId(java.lang.String) +com.google.android.material.R$string: int abc_menu_function_shortcut_label +android.didikee.donate.R$styleable: int TextAppearance_android_shadowDx +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.Integer alti +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: android.os.IBinder mRemote +com.turingtechnologies.materialscrollbar.R$attr: int strokeWidth +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver +androidx.transition.R$style: R$style() +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: android.os.IBinder asBinder() +james.adaptiveicon.R$attr: int colorControlNormal +androidx.lifecycle.SavedStateHandleController$OnRecreation: SavedStateHandleController$OnRecreation() +androidx.preference.R$styleable: int[] CompoundButton okhttp3.internal.http2.Http2Connection: long intervalPongsReceived -com.google.android.material.textfield.TextInputLayout: void setCounterEnabled(boolean) -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalStyle -androidx.preference.R$attr: int toolbarStyle -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Caption -io.reactivex.internal.observers.InnerQueuedObserver: long serialVersionUID -com.google.android.material.R$attr: int flow_padding -com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearanceActive -com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Light -androidx.appcompat.R$attr: int iconifiedByDefault -androidx.constraintlayout.widget.R$color: int abc_tint_spinner -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: int UnitType -androidx.preference.R$attr: int drawableTint -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getMoldLevel() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeBackground -wangdaye.com.geometricweather.R$color: int switch_thumb_material_light +android.didikee.donate.R$styleable: int AlertDialog_showTitle +androidx.appcompat.R$id: int chronometer +cyanogenmod.externalviews.KeyguardExternalView$8 +com.google.android.material.R$styleable: int Toolbar_buttonGravity +androidx.fragment.R$styleable: int FontFamily_fontProviderFetchStrategy +com.jaredrummler.android.colorpicker.NestedGridView +wangdaye.com.geometricweather.R$attr: int behavior_expandedOffset +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +androidx.vectordrawable.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.R$id: int textinput_placeholder +androidx.preference.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +androidx.fragment.R$styleable: int Fragment_android_name +okhttp3.internal.http2.Http2Stream: boolean isOpen() +com.jaredrummler.android.colorpicker.R$styleable: int[] TextAppearance +james.adaptiveicon.R$color: int abc_search_url_text_pressed +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String[] ROWS +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: int UnitType +com.google.android.material.R$styleable: int AlertDialog_listLayout +androidx.customview.R$styleable: int GradientColor_android_endX +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: android.os.IBinder mRemote +androidx.lifecycle.LifecycleEventObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setHideMotionSpecResource(int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_viewInflaterClass +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_getCurrentHotwordPackageName +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void dispose() +com.google.android.material.R$attr: int checkedButton +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class,androidx.lifecycle.SavedStateHandle) +com.google.android.material.R$layout: int mtrl_calendar_horizontal +androidx.lifecycle.extensions.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$attr: int tabSelectedTextColor +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableStartCompat +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTextPadding +androidx.appcompat.widget.SearchView: void setOnSearchClickListener(android.view.View$OnClickListener) +androidx.vectordrawable.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_minWidth +wangdaye.com.geometricweather.common.basic.GeoViewModel: GeoViewModel(android.app.Application) +io.reactivex.Observable: io.reactivex.Observable doAfterTerminate(io.reactivex.functions.Action) +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addFormDataPart(java.lang.String,java.lang.String) +com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabTextStyle +okhttp3.internal.http2.Header: Header(okio.ByteString,java.lang.String) +androidx.viewpager2.R$styleable: int FontFamily_fontProviderPackage +james.adaptiveicon.R$styleable: int DrawerArrowToggle_barLength +androidx.lifecycle.LiveData$LifecycleBoundObserver +okhttp3.Cache$Entry: Cache$Entry(okio.Source) +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onComplete() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonPhaseAngle(java.lang.Integer) +androidx.preference.R$attr: int menu +androidx.appcompat.resources.R$id: int accessibility_custom_action_23 +com.google.android.material.textfield.TextInputLayout: void setErrorIconDrawable(int) +androidx.vectordrawable.R$id: int accessibility_custom_action_25 +androidx.loader.R$color: int secondary_text_default_material_light +com.google.android.material.R$attr: int headerLayout +androidx.appcompat.widget.LinearLayoutCompat: void setDividerDrawable(android.graphics.drawable.Drawable) +androidx.appcompat.R$id: int src_atop +com.google.android.material.R$styleable: int MenuItem_android_id +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getLogo() +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_activated_mtrl_alpha +androidx.transition.R$drawable: int notification_bg_low_normal +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontWeight +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_createCustomTileWithTag +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: FitSystemBarSwipeRefreshLayout(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetEnd +androidx.appcompat.R$styleable: int Toolbar_subtitleTextColor +okhttp3.OkHttpClient: boolean followSslRedirects +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void complete() +com.google.android.material.R$attr: int chipGroupStyle +androidx.preference.R$style: int TextAppearance_AppCompat_Tooltip +androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_rangeFillColor +androidx.appcompat.widget.AppCompatTextView: android.graphics.PorterDuff$Mode getSupportCompoundDrawablesTintMode() +androidx.constraintlayout.widget.R$id: int action_mode_bar_stub +android.didikee.donate.R$color: int abc_hint_foreground_material_light +androidx.appcompat.R$color: int dim_foreground_disabled_material_light +james.adaptiveicon.R$attr: int subtitle +com.bumptech.glide.integration.okhttp.R$color: int notification_icon_bg_color +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_popupMenuStyle +james.adaptiveicon.R$anim: int abc_slide_in_bottom +wangdaye.com.geometricweather.R$styleable: int[] CompoundButton +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.xw.repo.bubbleseekbar.R$id: int search_close_btn +androidx.preference.R$attr: int iconifiedByDefault +wangdaye.com.geometricweather.R$styleable: int Constraint_transitionEasing +okhttp3.internal.platform.Platform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.SSLSocketFactory) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_DES_CBC_SHA +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Borderless +androidx.preference.R$styleable: int Fragment_android_name +com.bumptech.glide.integration.okhttp.R$dimen: int notification_action_icon_size +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: ViewModelProvider$AndroidViewModelFactory(android.app.Application) +james.adaptiveicon.R$color +androidx.preference.R$attr: int actionModeSplitBackground +androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_2 +androidx.preference.R$style: int Base_Theme_AppCompat_Light +androidx.constraintlayout.widget.R$string: int abc_action_menu_overflow_description +androidx.recyclerview.R$integer: int status_bar_notification_info_maxnum +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_GCM_SHA256 +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String zh_TW +androidx.preference.R$style: int Base_V7_Theme_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void dispose() +android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMarkTint +androidx.appcompat.R$attr: int colorControlActivated +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircleRadius +androidx.appcompat.R$id: int scrollView +androidx.activity.R$id: int line3 +wangdaye.com.geometricweather.R$id: int bidirectional +com.xw.repo.bubbleseekbar.R$string: int abc_toolbar_collapse_description +wangdaye.com.geometricweather.R$styleable: int Chip_textEndPadding +androidx.appcompat.R$id: int uniform +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver +okio.Pipe: boolean sinkClosed +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.Integer index +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_tileMode +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Large +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_cut_mtrl_alpha +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.database.Database db +cyanogenmod.hardware.ICMHardwareService: boolean writePersistentBytes(java.lang.String,byte[]) +androidx.constraintlayout.widget.R$anim: int abc_slide_out_top +androidx.appcompat.R$styleable: int Toolbar_titleMargin +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$attr: int endIconTintMode +okhttp3.OkHttpClient$Builder: okhttp3.Cache cache +okhttp3.Cache$CacheRequestImpl$1 +androidx.hilt.work.R$id: int italic +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvIndex(java.lang.Integer) +androidx.transition.R$drawable: int notification_tile_bg +androidx.preference.R$attr: int defaultQueryHint +com.xw.repo.bubbleseekbar.R$styleable: int View_theme +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Description +com.google.android.material.bottomnavigation.BottomNavigationView: android.graphics.drawable.Drawable getItemBackground() +okhttp3.internal.cache.CacheStrategy$Factory: long cacheResponseAge() +okhttp3.internal.ws.WebSocketWriter: void writeClose(int,okio.ByteString) +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_DialogWhenLarge +com.jaredrummler.android.colorpicker.R$id: int src_atop +com.xw.repo.bubbleseekbar.R$string: int abc_menu_delete_shortcut_label +com.xw.repo.bubbleseekbar.R$anim: int abc_shrink_fade_out_from_bottom +com.google.gson.stream.JsonWriter: void setLenient(boolean) +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder hostOnlyDomain(java.lang.String) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_5 +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Large +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeMinTextSize +com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.DailyEntity,long) +retrofit2.Invocation: retrofit2.Invocation of(java.lang.reflect.Method,java.util.List) +okhttp3.internal.tls.DistinguishedNameParser: int length +androidx.constraintlayout.widget.R$attr: int autoSizeStepGranularity +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginBottom +android.didikee.donate.R$id: int action_divider +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.LocationEntity,long) +okio.InflaterSource: java.util.zip.Inflater inflater +android.didikee.donate.R$styleable: int AppCompatTheme_colorBackgroundFloating +wangdaye.com.geometricweather.db.entities.DailyEntity: void setCityId(java.lang.String) +androidx.transition.R$styleable: int GradientColor_android_endColor +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_hint +com.google.android.material.R$attr: int snackbarStyle +wangdaye.com.geometricweather.R$drawable: int dialog_background +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String y +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.google.android.material.R$styleable: int Chip_shapeAppearanceOverlay +com.google.android.material.textfield.TextInputLayout: void setStartIconVisible(boolean) +wangdaye.com.geometricweather.R$dimen: int material_clock_display_padding +androidx.preference.R$styleable: int DialogPreference_android_dialogLayout +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void complete(java.lang.Object) +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_CompactMenu +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderTextAppearance +cyanogenmod.app.IPartnerInterface +com.google.android.material.textfield.TextInputLayout: int getBoxStrokeWidthFocused() +androidx.preference.R$styleable: int LinearLayoutCompat_android_gravity +com.google.android.material.appbar.AppBarLayout: void removeOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void dispose() +com.google.android.material.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginBottom +androidx.swiperefreshlayout.R$attr: int fontWeight +androidx.hilt.lifecycle.R$attr: int fontStyle +androidx.hilt.lifecycle.R$drawable: int notification_tile_bg +cyanogenmod.weather.util.WeatherUtils: boolean isValidTempUnit(int) +com.google.android.material.R$drawable: int avd_hide_password +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onError(java.lang.Throwable) +com.google.android.material.R$attr: int tabPadding +okhttp3.internal.cache.DiskLruCache$Editor: boolean[] written +androidx.constraintlayout.widget.R$id: int scrollIndicatorUp +okhttp3.HttpUrl: java.lang.String encodedPassword() +okhttp3.Dispatcher: void finished(okhttp3.RealCall) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: void complete() +wangdaye.com.geometricweather.R$dimen: int mtrl_progress_circular_radius +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconSize +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Small +androidx.viewpager.R$drawable: int notify_panel_notification_icon_bg +androidx.cardview.widget.CardView: int getContentPaddingBottom() +androidx.constraintlayout.widget.R$styleable: int Constraint_motionStagger +com.turingtechnologies.materialscrollbar.R$attr: int actionDropDownStyle +com.google.android.material.navigation.NavigationView: android.view.MenuInflater getMenuInflater() +androidx.transition.R$id: int notification_main_column +cyanogenmod.weather.ICMWeatherManager: void cancelRequest(int) +wangdaye.com.geometricweather.R$styleable: int Chip_android_textColor +wangdaye.com.geometricweather.R$anim: R$anim() +androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationX +retrofit2.ParameterHandler$RawPart +com.google.gson.internal.LinkedTreeMap: LinkedTreeMap() +androidx.appcompat.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +cyanogenmod.profiles.LockSettings: int getValue() +androidx.dynamicanimation.R$attr: int fontWeight +com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean names +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder hasSensitiveData(boolean) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_96 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsRainOrSnow(int) +james.adaptiveicon.R$drawable: int notification_bg_normal_pressed +androidx.appcompat.R$string: int abc_action_mode_done +okhttp3.RequestBody$3 +androidx.viewpager2.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constrainedWidth +okhttp3.Dns$1 +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getRingerMode() +androidx.drawerlayout.R$dimen: int notification_action_icon_size +androidx.constraintlayout.widget.R$styleable: int View_android_theme +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.entities.DaoSession daoSession +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Theme_AppCompat +okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache$Snapshot snapshot() +androidx.transition.R$id: int chronometer +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPubTime(java.lang.String) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTemperature +com.google.android.material.R$style: int TextAppearance_AppCompat_Display1 +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPasswordVisibilityToggleContentDescription() +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean daylight +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long produced +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: ObservableJoin$JoinDisposable(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int) +com.turingtechnologies.materialscrollbar.R$drawable: R$drawable() +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.lang.Object poll() +com.google.android.material.R$styleable: int ImageFilterView_warmth +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getDistrict() +androidx.appcompat.resources.R$id: int accessibility_custom_action_14 +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setSlingshotDistance(int) +androidx.preference.R$style: int Widget_AppCompat_ActionBar_Solid +com.jaredrummler.android.colorpicker.R$attr: int maxButtonHeight +cyanogenmod.providers.CMSettings$Secure: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) +androidx.legacy.coreutils.R$id: int blocking +wangdaye.com.geometricweather.R$styleable: int Preference_selectable +androidx.appcompat.R$dimen: int notification_small_icon_size_as_large +okhttp3.MultipartBody: okhttp3.MediaType PARALLEL +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String Phrase +com.google.android.material.R$attr: int iconTint +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_registerCallback +james.adaptiveicon.R$id: int multiply +com.jaredrummler.android.colorpicker.R$attr: int switchTextOn +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getShortDescription() +wangdaye.com.geometricweather.R$attr: int colorControlActivated +wangdaye.com.geometricweather.background.service.TileService: TileService() +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: boolean setOther(io.reactivex.disposables.Disposable) +androidx.core.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline2 +wangdaye.com.geometricweather.R$integer: int mtrl_card_anim_delay_ms +androidx.core.R$id: int accessibility_custom_action_25 +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_3_material +wangdaye.com.geometricweather.R$dimen: int material_emphasis_high_type +androidx.constraintlayout.widget.R$anim: int abc_fade_out +androidx.vectordrawable.animated.R$attr: int fontProviderAuthority +androidx.appcompat.R$styleable: int ActionBar_divider +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_android_src +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: int Id +com.google.android.material.R$styleable: int[] MaterialAutoCompleteTextView +androidx.hilt.R$layout: int notification_action +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius +androidx.appcompat.view.menu.ListMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() +android.didikee.donate.R$attr: int windowActionBar +com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_weight +com.google.android.material.R$integer: int mtrl_card_anim_delay_ms +wangdaye.com.geometricweather.R$id: int title +androidx.constraintlayout.widget.R$attr: int font +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void run() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_tintMode +com.xw.repo.bubbleseekbar.R$attr: int tooltipFrameBackground +androidx.loader.R$dimen: int notification_right_icon_size +com.google.android.material.R$attr: int onHide +wangdaye.com.geometricweather.R$drawable: int ic_time +androidx.constraintlayout.widget.ConstraintLayout: int getPaddingWidth() +androidx.appcompat.resources.R$id: int info +wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Text +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void request(long) +james.adaptiveicon.R$dimen: int abc_seekbar_track_progress_height_material +com.xw.repo.bubbleseekbar.R$id: int message +com.google.android.material.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.db.entities.LocationEntity: void setLatitude(float) +wangdaye.com.geometricweather.R$drawable: int weather_snow_1 +androidx.constraintlayout.widget.R$dimen: int tooltip_horizontal_padding +io.reactivex.Observable: io.reactivex.Observable interval(long,java.util.concurrent.TimeUnit) +okhttp3.Response: okhttp3.Response cacheResponse() +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: boolean isDisposed() +androidx.legacy.coreutils.R$id: int async +wangdaye.com.geometricweather.R$attr: int contentInsetRight +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_xml +cyanogenmod.weather.WeatherLocation: java.lang.String mPostal +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constrainedHeight +wangdaye.com.geometricweather.R$styleable: int Slider_trackColorActive +okio.Okio$1: java.io.OutputStream val$out +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void setCancellable(io.reactivex.functions.Cancellable) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context) +androidx.preference.R$style: int Widget_AppCompat_ButtonBar +androidx.constraintlayout.widget.R$attr: int motionProgress +retrofit2.HttpServiceMethod$CallAdapted: retrofit2.CallAdapter callAdapter +wangdaye.com.geometricweather.common.ui.widgets.TagView: void setCheckedBackgroundColor(int) +retrofit2.converter.gson.GsonConverterFactory +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonSetDate(java.util.Date) +okhttp3.Response: java.util.List challenges() +androidx.preference.R$style: int Preference_Material +okhttp3.Response$Builder +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node removeInternalByKey(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_elevation +com.jaredrummler.android.colorpicker.R$dimen: int abc_button_padding_horizontal_material +io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer) +com.github.rahatarmanahmed.cpv.CircularProgressView: float indeterminateSweep +androidx.drawerlayout.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.R$attr: int iconTint +wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService: AwakeForegroundUpdateService() +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context) +androidx.appcompat.R$id: int action_bar_root +okio.RealBufferedSink: okio.BufferedSink emitCompleteSegments() +androidx.core.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.R$drawable: int shortcuts_hail_foreground +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintAnimationEnabled +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabBarStyle +androidx.preference.R$styleable: int TextAppearance_android_textColorHint +androidx.constraintlayout.widget.R$dimen: int abc_seekbar_track_progress_height_material +com.google.android.material.R$attr: int spinBars +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_18 +androidx.drawerlayout.R$attr: int fontProviderQuery +androidx.appcompat.R$dimen: int abc_text_size_menu_header_material +okio.Options: int intCount(okio.Buffer) +okio.RealBufferedSource: int readUtf8CodePoint() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WetBulbTemperature +androidx.fragment.R$drawable: int notification_bg_normal +androidx.dynamicanimation.R$style +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_RAMP_UP_TIME_VALIDATOR +com.jaredrummler.android.colorpicker.R$dimen: int abc_switch_padding +io.reactivex.internal.util.NotificationLite$DisposableNotification: long serialVersionUID +androidx.constraintlayout.widget.R$attr: int fontVariationSettings +androidx.hilt.R$id: int action_container +com.google.android.material.R$styleable: int ChipGroup_chipSpacingHorizontal +okhttp3.internal.cache.FaultHidingSink: boolean hasErrors +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionProviderClass +okhttp3.Response: long receivedResponseAtMillis +okio.ByteString: okio.ByteString of(java.nio.ByteBuffer) +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: ObservableRefCount$RefConnection(io.reactivex.internal.operators.observable.ObservableRefCount) +com.google.android.material.R$layout: int design_navigation_item_separator +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_handleOffColor +com.bumptech.glide.request.RequestCoordinator$RequestState: boolean isComplete() +com.google.android.material.R$styleable: int AppCompatTheme_windowFixedHeightMajor +androidx.core.R$dimen: R$dimen() +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean setDisposable(io.reactivex.disposables.Disposable,int) +com.xw.repo.bubbleseekbar.R$attr: int layout_keyline +okhttp3.internal.ws.RealWebSocket: java.lang.Runnable writerRunnable +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Info +okio.Buffer: boolean rangeEquals(okio.Segment,int,okio.ByteString,int,int) +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) +com.google.android.material.R$attr: int color +wangdaye.com.geometricweather.R$layout: int widget_text +com.google.android.material.transformation.FabTransformationBehavior: FabTransformationBehavior() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: AccuAlertResult() +androidx.appcompat.R$styleable: int AppCompatTheme_dialogTheme +android.didikee.donate.R$styleable: int SearchView_layout +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_DarkActionBar +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onPause() +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: int getMarginBottom() +androidx.preference.R$drawable: int abc_btn_radio_material_anim +com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_percent +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: AccuDailyResult$DailyForecasts$Day$WindGust$Speed() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitationProbability +androidx.legacy.coreutils.R$dimen: int compat_button_padding_vertical_material +androidx.preference.DialogPreference: DialogPreference(android.content.Context,android.util.AttributeSet) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void access$600(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +cyanogenmod.providers.DataUsageContract: java.lang.String DATAUSAGE_TABLE +androidx.constraintlayout.utils.widget.ImageFilterButton: float getContrast() +androidx.lifecycle.ComputableLiveData$3 +com.google.android.material.chip.Chip: android.content.res.ColorStateList getCheckedIconTint() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setStatus(int) +wangdaye.com.geometricweather.R$style: int my_switch +com.google.android.material.R$styleable: int Layout_layout_constraintGuide_percent +wangdaye.com.geometricweather.R$id: int flip +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Small +cyanogenmod.providers.CMSettings$System: java.lang.String NAVBAR_LEFT_IN_LANDSCAPE +wangdaye.com.geometricweather.R$styleable: int RecyclerView_reverseLayout +james.adaptiveicon.R$attr: int arrowHeadLength +androidx.vectordrawable.animated.R$color: R$color() +androidx.viewpager2.R$id: int accessibility_custom_action_19 +com.jaredrummler.android.colorpicker.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay +android.didikee.donate.R$color: int bright_foreground_inverse_material_dark +okio.Okio$3: okio.Timeout timeout() +com.turingtechnologies.materialscrollbar.R$attr: int showAsAction +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Indeterminate +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isIsModify() +androidx.lifecycle.LiveData: void observeForever(androidx.lifecycle.Observer) +com.google.android.material.R$style: int AndroidThemeColorAccentYellow +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_19 +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DeterminateDrawable getProgressDrawable() +androidx.preference.R$styleable: int Toolbar_android_minHeight +com.google.android.material.R$styleable: int ViewBackgroundHelper_android_background +cyanogenmod.app.PartnerInterface: int ZEN_MODE_IMPORTANT_INTERRUPTIONS +wangdaye.com.geometricweather.R$styleable: int[] DrawerLayout +retrofit2.KotlinExtensions$suspendAndThrow$1 +com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_padding_horizontal_material +okhttp3.Response: okhttp3.Headers headers() +androidx.preference.R$drawable: int abc_dialog_material_background +okio.ByteString: java.lang.String base64() +android.didikee.donate.R$id: int search_mag_icon +wangdaye.com.geometricweather.R$string: int feedback_request_permission +com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetRight +okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method warnIfOpenMethod +com.google.android.material.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_height +cyanogenmod.profiles.AirplaneModeSettings: cyanogenmod.profiles.AirplaneModeSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemBackgroundResource(int) +androidx.recyclerview.R$drawable: R$drawable() androidx.recyclerview.R$drawable: int notification_action_background -com.jaredrummler.android.colorpicker.R$layout: int preference_information_material -okhttp3.Cache$Entry: java.lang.String SENT_MILLIS -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: java.lang.String Unit -androidx.viewpager.R$drawable: int notify_panel_notification_icon_bg -com.jaredrummler.android.colorpicker.R$attr: int closeIcon -cyanogenmod.app.Profile: java.util.Map streams -com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_top_material -wangdaye.com.geometricweather.R$layout: int widget_clock_day_tile -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver parent -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf -okhttp3.internal.http2.Http2Connection$Builder: java.net.Socket socket -com.xw.repo.bubbleseekbar.R$attr: int theme -androidx.work.R$attr: int fontProviderCerts -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeStyle -com.bumptech.glide.R$id: R$id() -cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_PROFILES -androidx.viewpager2.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.lang.String MobileLink -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$attr: int liftOnScrollTargetViewId -com.jaredrummler.android.colorpicker.R$id: int none -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric Metric -wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: DaoMaster$OpenHelper(android.content.Context,java.lang.String) -com.jaredrummler.android.colorpicker.R$id: int right -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: long bytesRead -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getIcePrecipitationProbability() -android.didikee.donate.R$dimen: int abc_dialog_fixed_width_major -okhttp3.internal.http2.Http2Stream: okio.Timeout writeTimeout() -com.google.android.material.R$color: int mtrl_tabs_colored_ripple_color -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String unitId -cyanogenmod.weather.WeatherInfo$DayForecast: int hashCode() -android.didikee.donate.R$style: int Widget_AppCompat_Button_Small -com.google.android.material.R$attr: int cardCornerRadius -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_52 -androidx.constraintlayout.widget.R$attr: int actionBarSize -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarSize -io.reactivex.Observable: io.reactivex.Observable interval(long,java.util.concurrent.TimeUnit) -io.reactivex.internal.disposables.DisposableHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getCounterTextColor() -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult -androidx.recyclerview.widget.RecyclerView: void addOnChildAttachStateChangeListener(androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener) -wangdaye.com.geometricweather.R$dimen: int little_weather_icon_size -wangdaye.com.geometricweather.R$attr: int checkedTextViewStyle -androidx.legacy.coreutils.R$id: int action_image -android.didikee.donate.R$layout: int notification_action_tombstone -androidx.appcompat.widget.AppCompatSpinner: void setSupportBackgroundTintList(android.content.res.ColorStateList) -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.functions.Action onFinally -androidx.transition.R$id: int transition_transform -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getShortAbbreviation(android.content.Context) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String uvLevel -okhttp3.HttpUrl: int querySize() -androidx.constraintlayout.widget.R$color: int tooltip_background_light -androidx.preference.R$styleable: int AppCompatTextView_lineHeight -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeShareDrawable -androidx.constraintlayout.helper.widget.Flow: void setVerticalBias(float) -okio.RealBufferedSource: boolean closed -androidx.preference.R$id: int wrap_content -androidx.constraintlayout.widget.R$attr: int wavePeriod -wangdaye.com.geometricweather.R$attr: int drawableStartCompat -com.google.android.material.R$color: int material_blue_grey_900 +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_divider_mtrl_alpha +okhttp3.Response$Builder: okhttp3.Response$Builder code(int) +wangdaye.com.geometricweather.R$styleable: int[] MaterialTextView +wangdaye.com.geometricweather.R$string: int feedback_refresh_notification_after_back +james.adaptiveicon.R$styleable: int SearchView_searchHintIcon +androidx.hilt.lifecycle.R$drawable: int notification_template_icon_bg +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onComplete() +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit[] values() +james.adaptiveicon.R$styleable: int ViewBackgroundHelper_backgroundTint +androidx.preference.EditTextPreference$SavedState +wangdaye.com.geometricweather.R$styleable: int MenuView_subMenuArrow +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: java.lang.Object poll() +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void dispose() +com.turingtechnologies.materialscrollbar.R$attr: int itemSpacing +androidx.preference.R$attr: int useSimpleSummaryProvider +androidx.viewpager2.R$styleable: int GradientColor_android_startColor +com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ListPopupWindow +com.google.android.material.R$dimen: int mtrl_snackbar_action_text_color_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_fontFamily +com.google.gson.stream.JsonReader: java.lang.String peekedString +android.didikee.donate.R$styleable: int AppCompatTheme_actionDropDownStyle +okhttp3.logging.HttpLoggingInterceptor +wangdaye.com.geometricweather.R$color: int colorAccent +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_voice +androidx.lifecycle.ProcessLifecycleOwner$3$1: void onActivityPostResumed(android.app.Activity) +io.reactivex.Observable: java.lang.Object blockingLast(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$attr: int state_collapsed +com.google.android.material.R$styleable: int MaterialCalendar_daySelectedStyle +okio.ByteString: int lastIndexOf(byte[]) +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node root +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_3 +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.R$styleable: int Chip_chipStrokeWidth +androidx.hilt.work.R$id: int icon +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_background +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: void run() +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +com.google.android.material.datepicker.SingleDateSelector +cyanogenmod.themes.ThemeManager$1: cyanogenmod.themes.ThemeManager this$0 +androidx.appcompat.widget.LinearLayoutCompat +wangdaye.com.geometricweather.R$styleable: int Chip_android_textSize +androidx.viewpager2.R$color: int ripple_material_light +com.google.android.material.bottomappbar.BottomAppBar +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit LPSQM +androidx.loader.R$dimen: int notification_large_icon_width +androidx.hilt.work.R$attr: int font +android.support.v4.os.ResultReceiver +wangdaye.com.geometricweather.R$attr: int reverseLayout +com.turingtechnologies.materialscrollbar.R$attr: int allowStacking +android.support.v4.os.ResultReceiver: void send(int,android.os.Bundle) +android.didikee.donate.R$color: int dim_foreground_material_dark +okhttp3.Protocol: okhttp3.Protocol get(java.lang.String) +cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_DEFAULT +androidx.preference.R$style: int Base_V28_Theme_AppCompat_Light +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type ownerType +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: long serialVersionUID +com.google.android.material.R$dimen: int mtrl_textinput_box_stroke_width_default +io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean offer(java.lang.Object) +wangdaye.com.geometricweather.R$layout: int design_navigation_item_header +wangdaye.com.geometricweather.R$dimen: int notification_right_side_padding_top +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection findHealthyConnection(int,int,int,int,boolean,boolean) +androidx.preference.R$layout: int abc_select_dialog_material +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moonContainer +james.adaptiveicon.R$attr: int actionModeWebSearchDrawable +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setIconResEnd(int) +androidx.activity.OnBackPressedDispatcher$LifecycleOnBackPressedCancellable +com.google.android.material.R$styleable: int TextInputLayout_startIconDrawable +androidx.preference.R$color: int accent_material_light +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedWidthMinor +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_measureWithLargestChild +com.google.android.material.R$attr: int extendedFloatingActionButtonStyle +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int prefetch +retrofit2.Platform: boolean isDefaultMethod(java.lang.reflect.Method) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitationProbability +com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeBottomLeft +androidx.activity.R$drawable: int notification_icon_background +io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean offer(java.lang.Object,java.lang.Object) +androidx.constraintlayout.widget.R$attr: int contentDescription +wangdaye.com.geometricweather.R$id: int mtrl_calendar_text_input_frame +cyanogenmod.library.R$styleable: int LiveLockScreen_settingsActivity +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_percent +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_transformPivotY +androidx.constraintlayout.widget.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.R$id: int mtrl_calendar_frame +okhttp3.internal.platform.AndroidPlatform: javax.net.ssl.SSLContext getSSLContext() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogCenterButtons +okhttp3.RealCall$1: RealCall$1(okhttp3.RealCall) +androidx.activity.R$dimen: int compat_control_corner_material +androidx.constraintlayout.widget.R$attr: int drawableTint +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle +com.google.android.material.R$styleable: int TextAppearance_android_typeface +cyanogenmod.providers.CMSettings$Secure$1: CMSettings$Secure$1() +wangdaye.com.geometricweather.background.polling.permanent.observer.FakeForegroundService: FakeForegroundService() +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String getLanguageName(android.content.Context) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom +android.didikee.donate.R$style: int Base_AlertDialog_AppCompat +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver +androidx.appcompat.R$styleable: int GradientColor_android_endX +androidx.preference.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance +com.turingtechnologies.materialscrollbar.R$layout: int design_layout_snackbar_include +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) +com.turingtechnologies.materialscrollbar.R$attr: int paddingTopNoTitle +james.adaptiveicon.R$color: int abc_tint_btn_checkable +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_fontVariationSettings +wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar +wangdaye.com.geometricweather.R$attr: int tickMark +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection findConnection(int,int,int,int,boolean) +okhttp3.internal.http2.Http2Connection$5: boolean val$inFinished +wangdaye.com.geometricweather.R$id: int item_touch_helper_previous_elevation +okhttp3.internal.http2.Http2Stream: int id +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow snow +com.jaredrummler.android.colorpicker.R$drawable: int tooltip_frame_dark +james.adaptiveicon.R$id: int scrollIndicatorDown +com.google.android.material.R$attr: int iconPadding +androidx.legacy.content.WakefulBroadcastReceiver: WakefulBroadcastReceiver() +androidx.preference.R$dimen: int abc_search_view_preferred_height +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty12H +androidx.preference.R$attr: int panelMenuListWidth +com.google.android.material.imageview.ShapeableImageView: void setStrokeWidth(float) +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +wangdaye.com.geometricweather.R$attr: int cardUseCompatPadding +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitle +okhttp3.ResponseBody: java.lang.String string() +wangdaye.com.geometricweather.R$attr: int cardCornerRadius +androidx.preference.R$attr: int thumbTextPadding +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_creator +com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context) +cyanogenmod.externalviews.KeyguardExternalView: boolean mIsInteractive +james.adaptiveicon.R$styleable: int[] ButtonBarLayout +wangdaye.com.geometricweather.R$id: int FUNCTION +com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_overlapAnchor +androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_BottomSheetDialog +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_normal +androidx.vectordrawable.animated.R$id: int blocking +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer RIGHT_CLOSE +android.didikee.donate.R$drawable: int abc_item_background_holo_dark +okio.Buffer$UnsafeCursor: byte[] data +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_labelVisibilityMode +com.google.android.material.chip.Chip: float getIconStartPadding() +wangdaye.com.geometricweather.common.basic.GeoActivity: GeoActivity() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_DropDownItem_Spinner +androidx.constraintlayout.widget.R$attr: int selectableItemBackground +androidx.viewpager.widget.PagerTabStrip: void setTextSpacing(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: AccuCurrentResult$PressureTendency() +androidx.constraintlayout.widget.R$attr: int divider +wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_material +wangdaye.com.geometricweather.R$drawable: int mtrl_popupmenu_background +com.jaredrummler.android.colorpicker.R$layout: int abc_tooltip +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_pressed_z +androidx.fragment.R$id: int blocking +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_clear +cyanogenmod.profiles.ConnectionSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +cyanogenmod.providers.DataUsageContract: java.lang.String LABEL +com.turingtechnologies.materialscrollbar.R$dimen: int abc_seekbar_track_background_height_material +wangdaye.com.geometricweather.R$id: int container_main_first_daily_card_container +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy +com.jaredrummler.android.colorpicker.R$string: int abc_menu_meta_shortcut_label +androidx.preference.R$styleable: int[] FontFamilyFont +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layoutDescription +wangdaye.com.geometricweather.R$string: int path_password_strike_through +cyanogenmod.app.IProfileManager$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +com.jaredrummler.android.colorpicker.R$color: int error_color_material_dark +okhttp3.internal.http2.Header: okio.ByteString TARGET_PATH +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionMenuTextAppearance +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_inset +cyanogenmod.externalviews.ExternalView$8: cyanogenmod.externalviews.ExternalView this$0 +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit H +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerY +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft +androidx.appcompat.R$styleable: int SearchView_iconifiedByDefault +android.didikee.donate.R$styleable: int AppCompatTextView_drawableRightCompat +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_selectableItemBackground +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.database.Database getDatabase() +androidx.dynamicanimation.R$id: int italic +wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_icon +androidx.recyclerview.R$styleable: int GradientColor_android_startColor +androidx.preference.R$styleable: int PreferenceImageView_maxWidth +okio.Segment: okio.Segment pop() +wangdaye.com.geometricweather.R$dimen: int widget_grid_4 +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String LongPhrase +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Toolbar +james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +com.turingtechnologies.materialscrollbar.R$styleable: int[] CompoundButton +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontWeight +androidx.appcompat.widget.ActionBarOverlayLayout: void setLogo(int) +retrofit2.ParameterHandler$QueryMap: ParameterHandler$QueryMap(java.lang.reflect.Method,int,retrofit2.Converter,boolean) +com.google.android.material.R$styleable: int[] CompoundButton +wangdaye.com.geometricweather.R$array: int widget_styles +com.google.android.material.R$layout: int mtrl_picker_header_toggle +okhttp3.internal.http2.Http2Writer: void goAway(int,okhttp3.internal.http2.ErrorCode,byte[]) +androidx.constraintlayout.widget.R$id: int title +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex tomorrow +com.jaredrummler.android.colorpicker.R$id: int start +com.google.android.material.R$color: int material_grey_600 +wangdaye.com.geometricweather.R$id: int scrollIndicatorDown +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyBottomLeft +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_content_padding_fullscreen +androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +com.google.android.material.R$styleable: int TextInputLayout_endIconDrawable +com.bumptech.glide.R$drawable +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderQuery +okhttp3.internal.cache.DiskLruCache: void evictAll() +com.google.android.material.R$styleable: int Transform_android_transformPivotY +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarButtonStyle +androidx.viewpager2.R$id: int accessibility_custom_action_11 +io.reactivex.Observable: io.reactivex.Observable throttleFirst(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_collapseIcon +com.turingtechnologies.materialscrollbar.R$attr: int chipStartPadding +io.reactivex.internal.disposables.ArrayCompositeDisposable: void dispose() +androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: CaiYunMainlyResult$ForecastDailyBean$WeatherBean() +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getSnowPrecipitation() +androidx.preference.R$styleable: int PreferenceTheme_dropdownPreferenceStyle +wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarTextViewStyle +com.google.android.material.chip.Chip: void setChipStrokeColorResource(int) +wangdaye.com.geometricweather.R$drawable: int flag_el +com.google.android.material.R$drawable: int material_ic_keyboard_arrow_previous_black_24dp +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_MENU_ACTION +com.jaredrummler.android.colorpicker.R$layout: int preference_material +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int abc_cab_background_top_mtrl_alpha +wangdaye.com.geometricweather.R$id: int notification_big_temp_4 +com.bumptech.glide.Registry$NoResultEncoderAvailableException: Registry$NoResultEncoderAvailableException(java.lang.Class) +retrofit2.RequestFactory: boolean isFormEncoded +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_stroke_color_selector +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedWritableDb(char[]) +android.didikee.donate.R$attr: int colorControlNormal +wangdaye.com.geometricweather.R$id: int textSpacerNoTitle +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: java.lang.String address +wangdaye.com.geometricweather.R$drawable: int notif_temp_119 +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RelativeHumidity +james.adaptiveicon.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +james.adaptiveicon.R$id: int action_divider +androidx.constraintlayout.widget.R$styleable: int[] AppCompatTheme +com.turingtechnologies.materialscrollbar.R$attr: int font +androidx.preference.R$attr: int iconTint +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +okhttp3.ConnectionPool: ConnectionPool(int,long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: AccuHourlyResult() +androidx.hilt.R$id: int accessibility_custom_action_24 +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.util.List Summaries +wangdaye.com.geometricweather.R$styleable: int Chip_chipIconSize +wangdaye.com.geometricweather.R$attr: int listChoiceBackgroundIndicator +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_text_size +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentListStyle +androidx.vectordrawable.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.constraintlayout.widget.R$styleable: int Constraint_constraint_referenced_ids +retrofit2.RequestFactory$Builder: boolean gotPart +com.google.android.material.R$dimen: int mtrl_tooltip_arrowSize +com.google.gson.stream.JsonReader: boolean skipTo(java.lang.String) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property PublishTime +okhttp3.internal.http2.Http2Reader$Handler: void windowUpdate(int,long) +com.bumptech.glide.R$id: int notification_main_column +com.google.android.material.R$attr: int fastScrollVerticalThumbDrawable +com.jaredrummler.android.colorpicker.R$integer: int abc_config_activityShortDur +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportImageTintList(android.content.res.ColorStateList) +com.google.gson.stream.JsonScope: int EMPTY_OBJECT +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_elevation +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintStart_toStartOf +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemTextAppearance +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.lang.Throwable error +androidx.legacy.coreutils.R$id: int icon +com.jaredrummler.android.colorpicker.R$style: int Preference_Category_Material +com.google.gson.internal.LinkedTreeMap: java.lang.Object remove(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelBackground +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: int count +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +androidx.hilt.lifecycle.R$id: int chronometer +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_bottom_padding +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +android.didikee.donate.R$styleable: int AppCompatTheme_colorButtonNormal +okhttp3.OkHttpClient$1: boolean connectionBecameIdle(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) +james.adaptiveicon.R$attr: int tickMarkTint +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean temperature +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_reboot +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_peek_height_min +wangdaye.com.geometricweather.R$id: int widget_week_temp_5 +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTint +cyanogenmod.os.Concierge$ParcelInfo: Concierge$ParcelInfo(android.os.Parcel) +wangdaye.com.geometricweather.R$string: int settings_title_week_icon_mode +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.Object adapt(retrofit2.Call) +androidx.swiperefreshlayout.R$dimen: int notification_top_pad_large_text +androidx.lifecycle.ClassesInfoCache$MethodReference: boolean equals(java.lang.Object) +androidx.appcompat.R$dimen: int tooltip_precise_anchor_threshold +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeApparentTemperature() +wangdaye.com.geometricweather.R$dimen: int title_text_size +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object SYNC_DISPOSED +androidx.appcompat.widget.FitWindowsLinearLayout +com.google.android.material.R$id: int circle_center +android.didikee.donate.R$id: int customPanel +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_left +com.google.android.material.R$attr: int chipIconEnabled +com.google.android.material.R$anim: int abc_fade_out +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +io.reactivex.Observable: io.reactivex.Single isEmpty() +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: android.graphics.Path getRetreatingJoinPath() +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long serialVersionUID +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_widget_height +androidx.loader.R$integer: R$integer() +okhttp3.internal.http2.Header$Listener +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality +androidx.recyclerview.R$id: int time +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_dark +com.google.android.material.R$dimen: int mtrl_calendar_year_horizontal_padding +androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy +cyanogenmod.providers.CMSettings$Global: long getLong(android.content.ContentResolver,java.lang.String) +androidx.preference.R$layout: int abc_expanded_menu_layout +com.google.android.material.R$styleable: int Constraint_layout_goneMarginRight +okio.InflaterSource: boolean closed +okhttp3.internal.cache.DiskLruCache: boolean journalRebuildRequired() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String getNotice() +androidx.preference.R$color: int material_deep_teal_500 +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: void run() +cyanogenmod.profiles.ConnectionSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.util.List getValue() +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_corner_radius_medium +androidx.appcompat.R$attr: int ratingBarStyleSmall +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getIdType(int) +androidx.constraintlayout.widget.R$attr: int telltales_velocityMode +wangdaye.com.geometricweather.R$attr: int expandedTitleGravity +androidx.customview.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context,android.util.AttributeSet) +com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.drawable.Drawable getStatusBarScrim() +androidx.lifecycle.LiveData: void removeObservers(androidx.lifecycle.LifecycleOwner) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +com.turingtechnologies.materialscrollbar.R$attr: int collapsedTitleTextAppearance +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +wangdaye.com.geometricweather.R$string: int date_format_short +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_xml +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_localTimeText +io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable valueOf(java.lang.String) +com.google.android.material.R$styleable: int ProgressIndicator_inverse +androidx.appcompat.R$dimen: int abc_switch_padding +wangdaye.com.geometricweather.R$color: int notification_background_rootDark +james.adaptiveicon.R$styleable: int ActionBar_progressBarStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize +retrofit2.converter.gson.GsonConverterFactory: retrofit2.converter.gson.GsonConverterFactory create() +com.google.android.material.R$drawable: int abc_cab_background_internal_bg +androidx.fragment.app.FragmentManager +james.adaptiveicon.R$style: int Base_V23_Theme_AppCompat +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String WidgetPhrase +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: double Value +com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_text_padding_left +androidx.appcompat.R$styleable: int FontFamilyFont_fontStyle +okhttp3.internal.platform.Platform: boolean isConscryptPreferred() +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_buttonGravity +com.xw.repo.bubbleseekbar.R$attr: int actionBarPopupTheme +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void dispose() +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_padding_end_material +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicReference upstream +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItem +com.turingtechnologies.materialscrollbar.R$styleable: int[] SearchView +okhttp3.internal.http.HttpHeaders: java.util.Set varyFields(okhttp3.Response) +androidx.appcompat.widget.AppCompatImageButton: android.content.res.ColorStateList getSupportImageTintList() +androidx.swiperefreshlayout.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyTopLeft +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Chip +james.adaptiveicon.R$layout: int abc_screen_simple +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_26 +com.google.android.material.R$styleable: int[] ClockHandView +com.google.android.material.R$styleable: int AppCompatTheme_listMenuViewStyle +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCity() +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontStyle +okio.Okio$2: long read(okio.Buffer,long) +androidx.activity.R$id: int accessibility_custom_action_30 +androidx.appcompat.widget.AppCompatEditText: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +androidx.preference.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.R$string: int precipitation +androidx.preference.R$styleable: int ActionBar_popupTheme +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +com.jaredrummler.android.colorpicker.R$id: int titleDividerNoCustom +com.google.gson.stream.JsonReader: void close() +com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.R$string: int widget_multi_city +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags +com.google.android.material.R$styleable: int MaterialTextView_android_textAppearance +com.google.android.material.bottomnavigation.BottomNavigationView: android.view.MenuInflater getMenuInflater() +com.xw.repo.bubbleseekbar.R$attr: int actionMenuTextColor +com.xw.repo.bubbleseekbar.R$dimen: int hint_alpha_material_light +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: boolean requestDismissAndStartActivity(android.content.Intent) +wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_light +com.google.gson.FieldNamingPolicy$2 +wangdaye.com.geometricweather.R$id: int buttonPanel +androidx.constraintlayout.widget.R$attr: int currentState +com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_android_button +wangdaye.com.geometricweather.R$id: int notification_base_icon +androidx.core.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomSheet +androidx.constraintlayout.widget.R$attr: int triggerId +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation LEFT +com.google.android.material.R$styleable: int AppCompatTheme_colorControlNormal +androidx.constraintlayout.widget.R$string: int abc_menu_shift_shortcut_label +androidx.appcompat.widget.ActionBarOverlayLayout: void setWindowTitle(java.lang.CharSequence) +androidx.appcompat.R$id: int select_dialog_listview +james.adaptiveicon.R$styleable: int AppCompatTheme_imageButtonStyle +com.xw.repo.bubbleseekbar.R$attr: int titleTextAppearance +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_36dp +androidx.recyclerview.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.R$attr: int contentPaddingRight +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onComplete() +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature +com.google.android.material.textfield.MaterialAutoCompleteTextView +wangdaye.com.geometricweather.R$attr: int colorOnSurface +com.google.android.material.R$style: int TextAppearance_Design_Suffix +androidx.dynamicanimation.R$id: int action_image +androidx.appcompat.R$styleable: int ActionBar_customNavigationLayout +androidx.preference.R$styleable: int Toolbar_android_gravity +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_getActiveWeatherServiceProviderLabel +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable[] TERMINATED +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_baselineAligned +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +com.google.android.material.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$styleable: int Spinner_android_dropDownWidth +com.google.android.material.R$id: int month_title +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.subjects.UnicastSubject window +com.bumptech.glide.R$attr: int fontProviderFetchTimeout +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_colorPresets +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_corner_radius +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +androidx.lifecycle.LiveData$1: LiveData$1(androidx.lifecycle.LiveData) +com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Indeterminate +androidx.preference.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +androidx.lifecycle.MediatorLiveData$Source: androidx.lifecycle.Observer mObserver +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_toolbarStyle +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX +androidx.appcompat.resources.R$drawable: int notification_tile_bg +android.didikee.donate.R$attr +android.didikee.donate.R$id: int parentPanel +androidx.preference.R$styleable: int ActionMode_closeItemLayout +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerClose(boolean,io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver) +cyanogenmod.weather.WeatherInfo: android.os.Parcelable$Creator CREATOR +okhttp3.MultipartBody$Part: okhttp3.Headers headers() +org.greenrobot.greendao.AbstractDao: java.lang.Object loadUnique(android.database.Cursor) +okhttp3.logging.HttpLoggingInterceptor: HttpLoggingInterceptor(okhttp3.logging.HttpLoggingInterceptor$Logger) +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType PNG +wangdaye.com.geometricweather.R$mipmap: int ic_launcher_round +android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$styleable: int SearchView_searchHintIcon +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: void run() +androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onResume() +com.xw.repo.bubbleseekbar.R$dimen: int abc_progress_bar_height_material +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +com.google.android.material.R$dimen: int notification_action_text_size +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_singleChoiceItemLayout +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_icon +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xmr +androidx.preference.R$dimen: int compat_button_inset_vertical_material +com.turingtechnologies.materialscrollbar.R$style: int Base_V22_Theme_AppCompat +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionMode +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification +androidx.preference.R$attr: int listPreferredItemPaddingLeft +androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.chip.Chip: void setShowMotionSpecResource(int) +wangdaye.com.geometricweather.R$id: int large +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_divider_mtrl_alpha +androidx.preference.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: java.lang.Thread thread -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: java.lang.String Localized -wangdaye.com.geometricweather.R$id: int item_trend_daily -okhttp3.Connection: okhttp3.Route route() -cyanogenmod.providers.CMSettings$System: boolean putFloat(android.content.ContentResolver,java.lang.String,float) -okhttp3.internal.platform.AndroidPlatform: AndroidPlatform(java.lang.Class,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod) -wangdaye.com.geometricweather.R$attr: int scrimBackground -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItemSecondary -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Small -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox -com.xw.repo.bubbleseekbar.R$attr: int logo -androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Dialog +androidx.lifecycle.LifecycleRegistry$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$State +androidx.preference.R$style: int Preference_SwitchPreferenceCompat_Material +wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String treeDescription +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_alert +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String level +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_80 +com.google.android.material.R$string: int abc_menu_shift_shortcut_label +retrofit2.ParameterHandler$Path: retrofit2.Converter valueConverter +androidx.preference.R$attr: int controlBackground +com.google.android.material.R$styleable: int Spinner_android_prompt +okio.Util: short reverseBytesShort(short) +wangdaye.com.geometricweather.R$attr: int constraintSet +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_placeholder_content +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.IndeterminateDrawable getIndeterminateDrawable() +cyanogenmod.app.CMContextConstants: java.lang.String CM_PROFILE_SERVICE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: void setBrands(java.util.List) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: AccuDailyResult$DailyForecasts$RealFeelTemperature() +com.google.android.material.R$drawable: int abc_switch_thumb_material +james.adaptiveicon.R$attr: int windowMinWidthMinor +com.bumptech.glide.load.engine.GlideException: void setLoggingDetails(com.bumptech.glide.load.Key,com.bumptech.glide.load.DataSource) +com.xw.repo.bubbleseekbar.R$attr: int numericModifiers +okhttp3.CookieJar$1: java.util.List loadForRequest(okhttp3.HttpUrl) +androidx.constraintlayout.widget.R$dimen: int tooltip_precise_anchor_extra_offset +com.google.android.material.R$attr: int tabIndicatorHeight +wangdaye.com.geometricweather.R$xml: int standalone_badge_offset +retrofit2.http.POST: java.lang.String value() +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.ObservableSource fallback +com.google.android.material.R$styleable: int Layout_android_layout_marginEnd +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_52 +androidx.preference.R$styleable: int TextAppearance_fontFamily +wangdaye.com.geometricweather.R$string: int feedback_hide_lunar +okhttp3.internal.ws.RealWebSocket: int sentPingCount +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setId(java.lang.Long) +wangdaye.com.geometricweather.R$string: int cloud_cover +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.HourlyEntity) +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorFullWidth +wangdaye.com.geometricweather.R$id: int dialog_location_help_title +com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Display_TextInputEditText +androidx.dynamicanimation.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$styleable: int NavigationView_android_background +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarStyle +androidx.preference.R$style: int PreferenceFragmentList_Material +androidx.preference.R$styleable: int DrawerArrowToggle_thickness +com.google.android.material.R$styleable: int State_constraints +okhttp3.internal.ws.WebSocketReader: boolean isControlFrame +androidx.dynamicanimation.R$layout: int notification_template_icon_group +androidx.loader.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getCurrentPosition() +io.reactivex.internal.observers.InnerQueuedObserver: void onError(java.lang.Throwable) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onDetach() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int EndMinute +androidx.viewpager2.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertInTxIterable +wangdaye.com.geometricweather.background.polling.work.worker.AsyncUpdateWorker +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemRippleColor +androidx.viewpager.R$string: int status_bar_notification_info_overflow +androidx.appcompat.R$color: int secondary_text_disabled_material_light +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String img +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX +okio.RealBufferedSink: okio.BufferedSink writeIntLe(int) +james.adaptiveicon.R$color: int bright_foreground_material_dark +android.didikee.donate.R$attr: int actionModeFindDrawable +wangdaye.com.geometricweather.R$drawable: int notif_temp_110 +com.turingtechnologies.materialscrollbar.R$attr: int customNavigationLayout +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_imeOptions +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: int bufferSize +com.bumptech.glide.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: long serialVersionUID +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Time +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorBackgroundFloating +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_font +com.google.android.material.R$styleable: int ActionBar_progressBarStyle +cyanogenmod.app.Profile$TriggerState: Profile$TriggerState() +com.google.android.material.R$layout: int mtrl_calendar_months +wangdaye.com.geometricweather.R$drawable: int shortcuts_thunder +cyanogenmod.providers.CMSettings$Validator: boolean validate(java.lang.String) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void fail(java.lang.Throwable,io.reactivex.Observer,io.reactivex.internal.queue.SpscLinkedArrayQueue) +com.jaredrummler.android.colorpicker.R$id: int wrap_content +okhttp3.internal.http.HttpHeaders: boolean hasBody(okhttp3.Response) +cyanogenmod.providers.CMSettings$System: java.lang.String HOME_WAKE_SCREEN +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void run() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getVisibility() +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.functions.Function,int,io.reactivex.ObservableSource[]) +retrofit2.Utils$WildcardTypeImpl: java.lang.String toString() +com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode LAST_ELEMENT +okio.ByteString: java.lang.String utf8() +cyanogenmod.profiles.RingModeSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.constraintlayout.widget.R$dimen: R$dimen() +james.adaptiveicon.R$styleable: int MenuItem_numericModifiers +com.google.android.material.R$attr: int bottomNavigationStyle +androidx.hilt.work.R$anim: int fragment_open_exit +androidx.constraintlayout.widget.R$id: int top +com.google.android.material.R$drawable: int mtrl_ic_error +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String EXTRA_ALARM_ID +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor DARK +okhttp3.Protocol: okhttp3.Protocol QUIC +com.xw.repo.bubbleseekbar.R$attr: int allowStacking +androidx.preference.R$style: int Base_Widget_AppCompat_ImageButton +cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup getDefaultGroup() +wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper +android.support.v4.os.IResultReceiver$Stub: android.os.IBinder asBinder() +com.google.android.material.R$id: int save_non_transition_alpha +io.reactivex.internal.schedulers.RxThreadFactory: java.lang.String prefix +com.google.android.material.R$attr: int buttonBarNeutralButtonStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight +androidx.hilt.R$styleable: int GradientColor_android_endY +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type CONSTANT +androidx.preference.R$attr: int panelBackground +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Small +wangdaye.com.geometricweather.R$id: int dialog_location_help_providerIcon okhttp3.logging.package-info -okhttp3.internal.http2.Http2Reader: Http2Reader(okio.BufferedSource,boolean) -com.jaredrummler.android.colorpicker.R$attr: int spinnerStyle -okhttp3.internal.http2.Header: okio.ByteString name -cyanogenmod.profiles.AirplaneModeSettings$BooleanState: int STATE_ENABLED -com.google.android.material.R$styleable: int ImageFilterView_round -wangdaye.com.geometricweather.R$integer: int show_password_duration -androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -androidx.appcompat.R$layout: int abc_cascading_menu_item_layout -wangdaye.com.geometricweather.R$xml: int widget_week -com.google.android.material.R$color: int material_slider_halo_color -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_editor_absoluteX -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: Http2Connection$ReaderRunnable$2(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[],boolean,okhttp3.internal.http2.Settings) -cyanogenmod.media.MediaRecorder$AudioSource -wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress_width -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customPixelDimension -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: int Id -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_barColor -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_bottomRecyclerView -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: void run() -james.adaptiveicon.R$styleable: int MenuView_android_windowAnimationStyle -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void unregisterListener(cyanogenmod.app.ICustomTileListener,int) -wangdaye.com.geometricweather.R$string: int mtrl_picker_out_of_range -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setUrl(java.lang.String) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COL_KEY -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List probabilityForecast -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void dispose() -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Prefix -wangdaye.com.geometricweather.R$string: int forecast -okhttp3.internal.platform.Platform: java.lang.String getPrefix() -cyanogenmod.weather.WeatherInfo: double getTodaysHigh() -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.constraintlayout.widget.R$styleable: int Toolbar_title -cyanogenmod.app.Profile$TriggerState: int DISABLED -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type[] getLowerBounds() -android.didikee.donate.R$drawable: int notification_bg_low_normal -com.google.android.material.R$attr: int listItemLayout -com.xw.repo.bubbleseekbar.R$color: int accent_material_light -wangdaye.com.geometricweather.R$layout: int abc_search_view -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -com.google.android.material.chip.Chip: void setChipMinHeightResource(int) -james.adaptiveicon.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.db.entities.AlertEntityDao -com.google.android.material.R$attr: int itemHorizontalPadding -cyanogenmod.app.BaseLiveLockManagerService: void cancelLiveLockScreen(java.lang.String,int,int) -com.turingtechnologies.materialscrollbar.R$attr: int backgroundSplit -androidx.hilt.R$styleable: int Fragment_android_id -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_iconEndPadding -androidx.constraintlayout.widget.R$drawable: int notification_bg_low_normal -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_descendantFocusability -com.google.gson.stream.JsonWriter: void setLenient(boolean) -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetStart -com.google.android.material.timepicker.ClockFaceView: ClockFaceView(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$id: int list_item -james.adaptiveicon.R$attr: int windowFixedHeightMinor -okhttp3.Dns: java.util.List lookup(java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSnowPrecipitation() -wangdaye.com.geometricweather.R$attr: int hideOnContentScroll -androidx.swiperefreshlayout.R$attr: int fontStyle -cyanogenmod.content.Intent: java.lang.String ACTION_PROTECTED_CHANGED -wangdaye.com.geometricweather.R$styleable: int LiveLockScreen_type -cyanogenmod.profiles.StreamSettings: android.os.Parcelable$Creator CREATOR -androidx.appcompat.R$styleable: int AppCompatTheme_listMenuViewStyle -com.google.android.material.R$id: int design_menu_item_action_area -wangdaye.com.geometricweather.R$drawable: int ic_precipitation -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: void setFrom(java.lang.String) -com.google.android.material.R$styleable: int Toolbar_buttonGravity -wangdaye.com.geometricweather.R$styleable: int Slider_android_enabled -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit valueOf(java.lang.String) -james.adaptiveicon.R$color: int notification_icon_bg_color -androidx.appcompat.R$attr: int actionModeCopyDrawable -com.google.android.material.R$style: int Test_Theme_MaterialComponents_MaterialCalendar -androidx.customview.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric -retrofit2.ParameterHandler$2: retrofit2.ParameterHandler this$0 -com.turingtechnologies.materialscrollbar.R$attr: int actionBarPopupTheme -wangdaye.com.geometricweather.R$layout: int dialog_location_help -androidx.hilt.lifecycle.R$attr: R$attr() -com.google.android.material.R$styleable: int Constraint_android_scaleX -okio.Buffer: okio.Buffer readFrom(java.io.InputStream,long) -okhttp3.WebSocketListener: void onOpen(okhttp3.WebSocket,okhttp3.Response) -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitle_inputLayout -androidx.vectordrawable.animated.R$layout: int notification_template_icon_group -com.google.android.material.R$attr: int contentInsetEnd -james.adaptiveicon.R$layout: int notification_template_icon_group -androidx.work.R$id: int accessibility_custom_action_15 -okhttp3.internal.http2.Hpack$Writer: int smallestHeaderTableSizeSetting -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: int getStatus() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: java.util.List brands -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_strokeColor -androidx.customview.R$attr: int alpha -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_bottom -androidx.vectordrawable.animated.R$id: int notification_main_column -com.google.android.material.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onContentChanged() -james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMarkTint -androidx.constraintlayout.widget.R$attr: int closeItemLayout -cyanogenmod.app.BaseLiveLockManagerService: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getChina() -androidx.preference.R$drawable: int abc_btn_radio_material -com.google.android.material.R$attr: int snackbarButtonStyle -com.google.android.material.R$styleable: int AppCompatTextView_drawableStartCompat -androidx.preference.R$style: int Preference_PreferenceScreen -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf -io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat_Dark -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver -okhttp3.Cache$CacheRequestImpl: okio.Sink cacheOut -wangdaye.com.geometricweather.R$style: int ThemeOverlayColorAccentRed -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX -com.jaredrummler.android.colorpicker.R$id: int message -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Title_Inverse +androidx.viewpager2.R$styleable: int ViewPager2_android_orientation +com.google.android.material.R$styleable: int MotionHelper_onShow +androidx.preference.R$styleable: int ActionBar_contentInsetStart +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_grey +com.google.android.material.R$color: int mtrl_chip_background_color +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.util.Date getDate() +com.jaredrummler.android.colorpicker.R$attr: int fontProviderPackage +com.jaredrummler.android.colorpicker.R$id: int checkbox +wangdaye.com.geometricweather.R$color: int bright_foreground_inverse_material_light +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat +androidx.preference.R$color: int abc_color_highlight_material +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTintMode +okhttp3.ResponseBody$1: okio.BufferedSource source() +androidx.hilt.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getUvLevel() +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder host(java.lang.String) +androidx.hilt.work.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$attr: int colorPrimaryVariant +wangdaye.com.geometricweather.R$id: int text +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.WeatherEntity) +com.bumptech.glide.R$id: int line3 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_size +cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(android.os.Parcel) +okhttp3.internal.http2.Http2 +cyanogenmod.themes.ThemeManager: void applyDefaultTheme() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: boolean val$showing +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void dispose() +wangdaye.com.geometricweather.R$attr: int controlBackground +com.google.android.material.internal.NavigationMenuItemView: void setIconSize(int) +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat +androidx.appcompat.R$color: int button_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_queryBackground +androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context,android.util.AttributeSet) +okio.RealBufferedSink$1: void write(int) +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Editor edit(java.lang.String,long) +androidx.appcompat.R$color: int abc_hint_foreground_material_light +com.google.android.material.R$attr: int layout_collapseMode +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.internal.util.AtomicThrowable errors +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_DropDown +wangdaye.com.geometricweather.common.basic.models.weather.Weather +james.adaptiveicon.R$string: int abc_searchview_description_search +okhttp3.CookieJar$1 +wangdaye.com.geometricweather.R$string: int settings_title_notification_custom_color +cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder onBind(android.content.Intent) +com.google.android.material.tabs.TabLayout: void addOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager +retrofit2.BuiltInConverters$ToStringConverter: java.lang.String convert(java.lang.Object) +wangdaye.com.geometricweather.R$array: int air_quality_co_unit_voices +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context) +com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog +wangdaye.com.geometricweather.R$layout: int item_about_header +android.support.v4.os.IResultReceiver$Stub: android.support.v4.os.IResultReceiver getDefaultImpl() +androidx.drawerlayout.R$dimen: int notification_large_icon_width +androidx.appcompat.R$id: int action_image +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitationDuration(java.lang.Float) +androidx.appcompat.widget.LinearLayoutCompat: void setBaselineAlignedChildIndex(int) +okhttp3.Route: java.net.Proxy proxy +cyanogenmod.providers.CMSettings$System: boolean putFloat(android.content.ContentResolver,java.lang.String,float) +androidx.constraintlayout.widget.R$color: int material_grey_50 +androidx.constraintlayout.widget.R$attr: int layout_constrainedWidth +androidx.viewpager.R$dimen: int notification_action_icon_size +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int moveWhenScrollAtTop +com.turingtechnologies.materialscrollbar.R$drawable: int abc_edit_text_material +james.adaptiveicon.R$dimen: int notification_small_icon_background_padding +okio.Buffer: okio.Buffer writeInt(int) +com.google.android.material.R$attr: int layout_constraintHeight_min +wangdaye.com.geometricweather.R$layout: int preference_category +androidx.preference.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_UK +wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_xml +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: android.os.IBinder asBinder() +com.google.android.material.R$dimen: int notification_right_side_padding_top +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter beginArray() +okhttp3.Cache$Entry: Cache$Entry(okhttp3.Response) +org.greenrobot.greendao.AbstractDaoSession: long insertOrReplace(java.lang.Object) +cyanogenmod.app.CustomTile$ExpandedItem: android.os.Parcelable$Creator CREATOR +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onError(java.lang.Throwable) +com.google.android.material.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.lang.String getPubTime() +retrofit2.BuiltInConverters$UnitResponseBodyConverter: java.lang.Object convert(java.lang.Object) +okhttp3.Cache$CacheRequestImpl$1: okhttp3.Cache$CacheRequestImpl this$1 +com.jaredrummler.android.colorpicker.R$style: int Base_AlertDialog_AppCompat +cyanogenmod.themes.ThemeChangeRequest$RequestType: ThemeChangeRequest$RequestType(java.lang.String,int) +com.xw.repo.bubbleseekbar.R$color: int primary_dark_material_light +com.google.android.material.R$styleable: int SnackbarLayout_maxActionInlineWidth +cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_LOCATION_ADVANCED +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$OnFlingListener getOnFlingListener() +wangdaye.com.geometricweather.R$color: int design_default_color_on_secondary +okhttp3.Headers$Builder: okhttp3.Headers$Builder addLenient(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ActionBar_icon +androidx.appcompat.resources.R$styleable: int[] ColorStateListItem +androidx.preference.R$attr: int windowActionBarOverlay +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float visibility +com.turingtechnologies.materialscrollbar.R$id: int design_bottom_sheet +androidx.appcompat.widget.SwitchCompat: java.lang.CharSequence getTextOn() +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setSize(int) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.R$layout: int material_timepicker +com.google.android.material.R$styleable: int[] ViewPager2 +androidx.appcompat.R$dimen: int abc_action_bar_content_inset_material +com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_toolbar +com.xw.repo.bubbleseekbar.R$attr: int showText +androidx.appcompat.R$dimen: int abc_panel_menu_list_width +androidx.appcompat.widget.AppCompatSpinner: int getDropDownHorizontalOffset() +com.google.gson.JsonParseException: long serialVersionUID +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Spinner +wangdaye.com.geometricweather.R$drawable: int notif_temp_131 +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer LEFT_VALUE +androidx.preference.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +com.xw.repo.bubbleseekbar.R$layout: int abc_action_mode_close_item_material +androidx.constraintlayout.widget.R$id: int jumpToEnd +okio.Buffer$1: void write(byte[],int,int) +okio.RealBufferedSource: java.io.InputStream inputStream() +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSubtitle2 +com.google.android.material.R$styleable: int MaterialButton_iconTintMode +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.util.concurrent.atomic.AtomicReference current +androidx.drawerlayout.R$id: int action_container +com.google.android.material.R$attr: int titleMarginEnd +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: double Value +wangdaye.com.geometricweather.R$layout: int preference_recyclerview +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_android_windowIsFloating +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback +cyanogenmod.providers.CMSettings$Secure: int getInt(android.content.ContentResolver,java.lang.String,int) +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onError(java.lang.Throwable) +androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Time +androidx.preference.R$style: int Base_V7_Widget_AppCompat_EditText +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_36dp +com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicLong missedRequested +james.adaptiveicon.R$attr: int textAppearanceSearchResultTitle +com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Light +com.google.android.material.R$color: int background_material_light +com.google.android.material.R$dimen: int material_font_1_3_box_collapsed_padding_top +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRealFeelTemperature(java.lang.Integer) +com.turingtechnologies.materialscrollbar.R$attr: int navigationContentDescription +android.didikee.donate.R$bool +com.xw.repo.bubbleseekbar.R$id: int below_section_mark +james.adaptiveicon.R$styleable: int LinearLayoutCompat_measureWithLargestChild +androidx.core.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: io.reactivex.internal.disposables.SequentialDisposable direct +androidx.hilt.work.R$styleable: int[] GradientColorItem +com.google.android.material.R$styleable: int MotionHelper_onHide +androidx.appcompat.R$style: int Widget_AppCompat_PopupWindow +androidx.appcompat.R$styleable: int Toolbar_contentInsetStart +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: int UnitType +james.adaptiveicon.R$dimen: int abc_dialog_padding_top_material +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver +android.didikee.donate.R$styleable: int[] ActionMode +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_113 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX names +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +cyanogenmod.app.PartnerInterface: cyanogenmod.app.PartnerInterface getInstance(android.content.Context) +okhttp3.internal.http.HttpHeaders +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackTintList() +wangdaye.com.geometricweather.R$style: int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date updateDate +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,int) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_maxHeight +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_LED_ON_VALIDATOR +com.turingtechnologies.materialscrollbar.R$attr: int lineSpacing +androidx.preference.R$styleable: int SwitchPreference_summaryOn +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: java.util.concurrent.atomic.AtomicReference observers +com.google.android.material.R$styleable: int ChipGroup_singleLine +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onTimeout(long) +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_DarkActionBar +com.google.android.material.internal.NavigationMenuItemView +com.turingtechnologies.materialscrollbar.R$id: int transition_scene_layoutid_cache +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA +io.reactivex.Observable: io.reactivex.Observable repeat(long) +cyanogenmod.power.PerformanceManager: int PROFILE_HIGH_PERFORMANCE +james.adaptiveicon.R$color: int abc_search_url_text_selected +androidx.constraintlayout.helper.widget.Flow: void setVerticalStyle(int) +io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_text_padding_left +com.turingtechnologies.materialscrollbar.R$integer: int app_bar_elevation_anim_duration +wangdaye.com.geometricweather.R$styleable: int Slider_haloRadius +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type WIND +wangdaye.com.geometricweather.R$drawable: int widget_clock_day_horizontal +androidx.appcompat.R$id: int search_voice_btn +wangdaye.com.geometricweather.R$attr: int iconTintMode +com.google.android.material.circularreveal.CircularRevealLinearLayout: void setCircularRevealScrimColor(int) +wangdaye.com.geometricweather.R$xml: int live_wallpaper +okio.Buffer +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin +androidx.cardview.R$styleable: int CardView_cardMaxElevation +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function8) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_PULSE_VALIDATOR +com.google.android.material.R$string: int mtrl_picker_range_header_title +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams mParams +com.google.android.material.R$drawable: int notification_template_icon_low_bg +okhttp3.Response$Builder: void checkSupportResponse(java.lang.String,okhttp3.Response) +wangdaye.com.geometricweather.R$styleable: int Preference_android_widgetLayout +com.google.android.material.R$color: int switch_thumb_material_light +androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentStyle +android.didikee.donate.R$styleable: int SearchView_searchIcon +com.google.android.material.R$attr: int textAppearanceBody1 +androidx.dynamicanimation.R$id +androidx.hilt.R$drawable: int notification_template_icon_low_bg +androidx.drawerlayout.R$drawable: int notification_bg_normal_pressed +androidx.preference.SwitchPreferenceCompat: SwitchPreferenceCompat(android.content.Context,android.util.AttributeSet) +james.adaptiveicon.R$color: int abc_primary_text_material_dark +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.ChineseCityEntity) +retrofit2.Utils: java.lang.reflect.Type getSupertype(java.lang.reflect.Type,java.lang.Class,java.lang.Class) +androidx.lifecycle.extensions.R$dimen: int notification_media_narrow_margin +org.greenrobot.greendao.AbstractDao: void readEntity(android.database.Cursor,java.lang.Object,int) +okhttp3.Request: okhttp3.HttpUrl url +com.google.gson.internal.LazilyParsedNumber: java.lang.String toString() +wangdaye.com.geometricweather.R$color: int colorTextSubtitle_light +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.MinutelyEntity) +androidx.swiperefreshlayout.R$dimen: int compat_button_inset_horizontal_material +cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: WeatherContract$WeatherColumns$TempUnit() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight +com.google.android.material.slider.Slider: void setTickVisible(boolean) +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.themes.ThemeManager: void unregisterThemeChangeListener(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context) +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: java.util.concurrent.TimeUnit unit +com.google.android.material.slider.Slider: void setHaloTintList(android.content.res.ColorStateList) +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickTintList() +androidx.loader.R$string: R$string() +androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_percent +androidx.viewpager2.R$id: int blocking +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed +wangdaye.com.geometricweather.R$id: int transition_position +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderCerts +retrofit2.Retrofit: okhttp3.Call$Factory callFactory +com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +androidx.work.R$id: int action_text +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +androidx.work.impl.background.systemalarm.SystemAlarmService +wangdaye.com.geometricweather.R$string: int abc_searchview_description_clear +com.google.android.material.R$string: int abc_menu_ctrl_shortcut_label +com.google.android.material.R$id: int action_mode_close_button +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_138 +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Tooltip +androidx.viewpager.widget.ViewPager: int getPageMargin() +androidx.preference.R$attr: int actionLayout +okhttp3.Challenge: java.util.Map authParams() +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +cyanogenmod.power.PerformanceManager: boolean setPowerProfile(int) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: long serialVersionUID +androidx.preference.R$styleable: int[] AnimatedStateListDrawableItem +androidx.vectordrawable.R$layout: int notification_action_tombstone +com.jaredrummler.android.colorpicker.R$attr: int colorControlNormal +wangdaye.com.geometricweather.R$string: int abc_searchview_description_search +androidx.preference.R$styleable: int[] AppCompatImageView +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.hilt.lifecycle.R$dimen: int notification_big_circle_margin +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_colored_ripple_color +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_dither +wangdaye.com.geometricweather.R$drawable: int notif_temp_129 +wangdaye.com.geometricweather.R$styleable: int Toolbar_android_gravity +androidx.appcompat.widget.Toolbar: void setTitleMarginStart(int) +cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,android.content.ComponentName) +androidx.constraintlayout.widget.R$dimen: int abc_alert_dialog_button_dimen +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status[] values() +com.google.android.material.R$styleable: int MenuItem_android_title +androidx.hilt.R$id: int notification_main_column +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region Region +wangdaye.com.geometricweather.db.entities.DailyEntity: int getDaytimeTemperature() +androidx.preference.R$layout: R$layout() +wangdaye.com.geometricweather.R$styleable: int View_android_theme +okhttp3.internal.http2.Http2Stream: boolean closeInternal(okhttp3.internal.http2.ErrorCode) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_content_inset_material +com.turingtechnologies.materialscrollbar.R$string: int abc_capital_on +androidx.activity.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitation() +androidx.appcompat.widget.ActionBarContextView: int getContentHeight() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: java.lang.String Unit +androidx.cardview.R$styleable: int[] CardView +androidx.loader.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.preference.R$styleable: int SwitchCompat_trackTintMode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial() +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder sslSocketFactory(javax.net.ssl.SSLSocketFactory,javax.net.ssl.X509TrustManager) +retrofit2.RequestFactory$Builder +wangdaye.com.geometricweather.R$id: int custom +androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$attr: int drawableStartCompat +james.adaptiveicon.R$styleable: int[] Toolbar +com.google.android.material.R$styleable: int TextInputLayout_startIconTint +wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_2_0_padding_bottom +androidx.recyclerview.R$styleable: int GradientColor_android_gradientRadius +retrofit2.KotlinExtensions$awaitResponse$2$2 +cyanogenmod.weather.RequestInfo: java.lang.String access$802(cyanogenmod.weather.RequestInfo,java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingLeft +wangdaye.com.geometricweather.R$id: int scale +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconPadding +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$RequestType mRequestType +androidx.work.NetworkType: androidx.work.NetworkType valueOf(java.lang.String) +com.google.android.material.chip.Chip: void setCheckableResource(int) +com.google.android.material.R$dimen: int design_bottom_navigation_height +wangdaye.com.geometricweather.R$layout: int preference +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties +com.turingtechnologies.materialscrollbar.R$attr: int layout_dodgeInsetEdges +wangdaye.com.geometricweather.db.entities.LocationEntity: void setFormattedId(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintEnd_toStartOf +com.google.android.material.chip.Chip: void setChipStrokeWidth(float) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List probabilityForecast +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments textAvalanche +androidx.appcompat.R$dimen: int abc_text_size_small_material +wangdaye.com.geometricweather.R$layout: int mtrl_picker_actions +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSnowPrecipitationProbability(java.lang.Float) +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy SOURCE +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderAuthority +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: boolean delayError +wangdaye.com.geometricweather.R$string: int wind_2 +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_popupTheme +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: MfRainResult$RainForecast() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextTextAppearance +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String ALARM_STATE +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_popupWindowStyle +androidx.preference.R$attr: int state_above_anchor +okhttp3.Handshake: okhttp3.Handshake get(javax.net.ssl.SSLSession) +cyanogenmod.app.ProfileManager: void setActiveProfile(java.util.UUID) +io.reactivex.internal.observers.LambdaObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle +james.adaptiveicon.R$dimen: int abc_panel_menu_list_width +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_title +com.google.android.material.R$id: int month_navigation_previous +com.google.android.material.R$color: int abc_tint_switch_track +wangdaye.com.geometricweather.R$styleable: int KeyCycle_transitionPathRotate +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: boolean isDisposed() +com.google.android.material.tabs.TabLayout: int getDefaultHeight() +androidx.work.R$drawable: int notify_panel_notification_icon_bg +okhttp3.OkHttpClient: int pingInterval +com.google.android.material.R$id: int accessibility_custom_action_24 +wangdaye.com.geometricweather.R$attr: int subtitleTextAppearance +retrofit2.RequestBuilder: void addHeader(java.lang.String,java.lang.String) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_elevation +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEVELOPMENT_SHORTCUT +retrofit2.Utils$GenericArrayTypeImpl: java.lang.String toString() +androidx.customview.R$attr: int font +cyanogenmod.weather.ICMWeatherManager: void updateWeather(cyanogenmod.weather.RequestInfo) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeApparentTemperature(java.lang.Integer) +com.google.gson.internal.LinkedTreeMap: void clear() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Large +wangdaye.com.geometricweather.R$drawable: int weather_rain_3 +com.turingtechnologies.materialscrollbar.R$attr: int foregroundInsidePadding +androidx.preference.R$attr: int singleLineTitle +com.turingtechnologies.materialscrollbar.R$id: int auto +androidx.work.R$dimen: int compat_notification_large_icon_max_width +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_PAUSE +androidx.transition.R$styleable: int GradientColor_android_tileMode +androidx.appcompat.R$styleable: int AppCompatTheme_windowActionBarOverlay +okhttp3.Headers: java.util.Date getDate(java.lang.String) +okhttp3.OkHttpClient$Builder: java.util.List protocols +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_borderless_material +com.google.android.material.R$styleable: int Toolbar_maxButtonHeight +com.google.android.material.R$dimen: int mtrl_calendar_month_horizontal_padding +wangdaye.com.geometricweather.R$attr: int layout_constraintTop_toBottomOf +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontStyle +james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog_Alert +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowColor +com.google.android.material.R$attr: int fastScrollVerticalTrackDrawable +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: boolean done +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getMinWidthMinor() +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.R$style: int Preference_SwitchPreference_Material +cyanogenmod.app.Profile: boolean mDirty +androidx.appcompat.widget.Toolbar: void setTitleMarginEnd(int) +androidx.preference.R$styleable: int AppCompatTheme_alertDialogTheme +okio.BufferedSource: boolean rangeEquals(long,okio.ByteString,int,int) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.content.res.ColorStateList getIconTintList() +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void priority(int,int,int,boolean) +wangdaye.com.geometricweather.R$attr: int maxButtonHeight +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: android.os.IBinder mRemote +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean,int) +com.google.android.material.R$attr: int itemShapeAppearance +wangdaye.com.geometricweather.R$attr: int buttonStyle +com.bumptech.glide.integration.okhttp.R$dimen: int notification_small_icon_size_as_large +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_scaleY +androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy: ConstraintProxy$NetworkStateProxy() +okio.Okio$4: java.io.IOException newTimeoutException(java.io.IOException) +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getSuffixText() +okhttp3.Response: okhttp3.Protocol protocol() +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetTop +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: int UnitType +wangdaye.com.geometricweather.R$attr: int rippleColor +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String getX() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon +androidx.appcompat.R$attr: int listPreferredItemHeight +androidx.lifecycle.DefaultLifecycleObserver: void onStop(androidx.lifecycle.LifecycleOwner) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionButtonStyle +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: int getCity_code() +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +james.adaptiveicon.R$styleable: int ActionBar_contentInsetRight +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog +com.google.android.material.R$attr: int alertDialogStyle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_CBC_SHA +com.google.android.material.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +io.reactivex.Observable: io.reactivex.Observable doOnTerminate(io.reactivex.functions.Action) +com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_scrollable_min_width +wangdaye.com.geometricweather.R$array: int pressure_unit_voices +androidx.appcompat.R$style: int Widget_AppCompat_DropDownItem_Spinner +okhttp3.Response$Builder: okhttp3.Response$Builder networkResponse(okhttp3.Response) +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: int getStatus() +com.turingtechnologies.materialscrollbar.R$id: int title +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric Metric +okhttp3.internal.Util: boolean equal(java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +androidx.preference.R$color: int abc_primary_text_material_dark +com.jaredrummler.android.colorpicker.R$dimen: int hint_pressed_alpha_material_light +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_9 +james.adaptiveicon.R$attr: int actionBarTabBarStyle +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: MfCurrentResult$Position() +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog +androidx.appcompat.R$id: int icon_group +okhttp3.ConnectionSpec: okhttp3.CipherSuite[] APPROVED_CIPHER_SUITES +androidx.preference.R$style: int Preference_SwitchPreference +okhttp3.internal.http1.Http1Codec$ChunkedSink: Http1Codec$ChunkedSink(okhttp3.internal.http1.Http1Codec) +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver parent +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode WRITE_AHEAD_LOGGING +androidx.preference.EditTextPreferenceDialogFragmentCompat: EditTextPreferenceDialogFragmentCompat() +okhttp3.Handshake: okhttp3.TlsVersion tlsVersion() +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetEnd +okio.BufferedSource: long indexOf(okio.ByteString,long) +androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight +com.jaredrummler.android.colorpicker.R$attr: int switchStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_tooltipForegroundColor +cyanogenmod.providers.CMSettings$Secure: java.lang.String __MAGICAL_TEST_PASSING_ENABLER +com.turingtechnologies.materialscrollbar.R$attr: int behavior_fitToContents +wangdaye.com.geometricweather.R$layout: int notification_base +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX) +androidx.preference.R$id: int action_bar +androidx.appcompat.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +okhttp3.HttpUrl$Builder: void removeAllCanonicalQueryParameters(java.lang.String) +com.google.android.material.R$styleable: int Layout_layout_constraintHeight_default +com.turingtechnologies.materialscrollbar.R$id: int src_atop +com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_material_light +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_light +okhttp3.internal.http2.Http2Reader: void readRstStream(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +okhttp3.OkHttpClient: int readTimeoutMillis() +com.jaredrummler.android.colorpicker.R$string: int abc_menu_space_shortcut_label +androidx.vectordrawable.R$integer: int status_bar_notification_info_maxnum +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getDefaultHintTextColor() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button +androidx.preference.R$styleable: int SeekBarPreference_updatesContinuously +wangdaye.com.geometricweather.R$style: int widget_progress +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Title_Inverse +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircle +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: long serialVersionUID +james.adaptiveicon.R$style: int Widget_AppCompat_SearchView_ActionBar +androidx.appcompat.R$attr: int actionModeSplitBackground +androidx.preference.R$style: int Preference +androidx.preference.R$styleable: int Spinner_android_entries +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int sourceMode +wangdaye.com.geometricweather.db.entities.LocationEntity: void setProvince(java.lang.String) +androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnCreate() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getSo2() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: double Value +wangdaye.com.geometricweather.R$id: int touch_outside +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginEnd +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintDimensionRatio +androidx.lifecycle.ProcessLifecycleOwner$3$1: void onActivityPostStarted(android.app.Activity) +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter nighttimeWeatherCodeConverter +androidx.constraintlayout.widget.R$attr: int round +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginStart +androidx.appcompat.widget.AppCompatCheckBox: void setButtonDrawable(android.graphics.drawable.Drawable) +james.adaptiveicon.R$integer: int status_bar_notification_info_maxnum +android.didikee.donate.R$styleable: int ViewBackgroundHelper_android_background +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onComplete() +androidx.appcompat.resources.R$id: int tag_accessibility_clickable_spans +com.turingtechnologies.materialscrollbar.R$id: int default_activity_button +android.support.v4.os.IResultReceiver$Stub$Proxy +com.jaredrummler.android.colorpicker.R$color: int dim_foreground_material_dark +okhttp3.ConnectionPool: okhttp3.internal.connection.RouteDatabase routeDatabase +wangdaye.com.geometricweather.R$id: int container_alert_display_view_indicator +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: AirQuality(java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason valueOf(java.lang.String) +androidx.appcompat.resources.R$id: int accessibility_custom_action_10 +okhttp3.internal.http2.Http2Connection: void writeWindowUpdateLater(int,long) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int SourceId +okhttp3.Response: okhttp3.Response$Builder newBuilder() +android.didikee.donate.R$layout: int abc_alert_dialog_material +okhttp3.internal.http2.Settings: okhttp3.internal.http2.Settings set(int,int) +com.bumptech.glide.integration.okhttp.R$integer: int status_bar_notification_info_maxnum +android.didikee.donate.R$attr: int paddingBottomNoButtons +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_keyboardNavigationCluster +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink +androidx.constraintlayout.widget.R$drawable: int abc_ic_voice_search_api_material +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvDescription(java.lang.String) +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +cyanogenmod.app.LiveLockScreenInfo$1: cyanogenmod.app.LiveLockScreenInfo[] newArray(int) +androidx.appcompat.R$dimen: int abc_list_item_height_material +cyanogenmod.weatherservice.WeatherProviderService: void onRequestSubmitted(cyanogenmod.weatherservice.ServiceRequest) +androidx.appcompat.R$id: int right_side +com.google.android.material.R$color: int mtrl_btn_ripple_color +com.github.rahatarmanahmed.cpv.CircularProgressView$8: float val$start +androidx.preference.R$color: int abc_tint_default +androidx.constraintlayout.widget.R$style: int Platform_V25_AppCompat_Light +androidx.transition.R$dimen: int compat_button_padding_vertical_material +cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder access$202(cyanogenmod.externalviews.KeyguardExternalView,android.os.IBinder) +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder callTimeout(long,java.util.concurrent.TimeUnit) +com.google.android.material.R$style: int Widget_AppCompat_ActionButton +androidx.appcompat.widget.ActionBarContextView: java.lang.CharSequence getSubtitle() +androidx.loader.R$drawable: int notification_tile_bg +com.google.android.material.progressindicator.ProgressIndicator: int getGrowMode() +cyanogenmod.app.Profile: void addProfileGroup(cyanogenmod.app.ProfileGroup) +com.google.android.material.textview.MaterialTextView +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_80 +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: ObservableWindowBoundarySupplier$WindowBoundaryMainObserver(io.reactivex.Observer,int,java.util.concurrent.Callable) +androidx.swiperefreshlayout.R$id: int text +androidx.activity.R$layout: int notification_template_icon_group +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Headline +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int THUNDERSHOWER +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType valueOf(java.lang.String) +james.adaptiveicon.R$styleable: int SwitchCompat_switchTextAppearance +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,io.reactivex.functions.Function) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: AccuCurrentResult$PrecipitationSummary$PastHour$Metric() +cyanogenmod.app.BaseLiveLockManagerService$1: BaseLiveLockManagerService$1(cyanogenmod.app.BaseLiveLockManagerService) +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitleTextColor +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.String toString() +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getLevel() +android.didikee.donate.R$id: int action_image +cyanogenmod.externalviews.KeyguardExternalView: java.lang.String access$400() +wangdaye.com.geometricweather.R$styleable: int[] FlowLayout +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +androidx.viewpager2.R$styleable: int[] GradientColor +okio.GzipSource: byte FHCRC +androidx.lifecycle.ClassesInfoCache: boolean hasLifecycleMethods(java.lang.Class) cyanogenmod.providers.CMSettings$Global: java.lang.String WIFI_AUTO_PRIORITIES_CONFIGURATION -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_6 -retrofit2.KotlinExtensions$suspendAndThrow$1: int label -wangdaye.com.geometricweather.R$drawable: int notif_temp_99 -androidx.lifecycle.LifecycleRegistry: boolean mHandlingEvent -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_85 -androidx.constraintlayout.widget.R$attr: int perpendicularPath_percent -com.jaredrummler.android.colorpicker.R$attr: int contentInsetStartWithNavigation -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider BAIDU_IP -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode NO_ERROR -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_negativeButtonText -androidx.preference.R$styleable: int ColorStateListItem_android_color -com.turingtechnologies.materialscrollbar.R$string: int abc_shareactionprovider_share_with_application -com.google.android.material.R$attr: int checkedIconEnabled -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: int Degrees -androidx.viewpager2.widget.ViewPager2: int getCurrentItem() -okhttp3.logging.HttpLoggingInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -io.reactivex.Observable: io.reactivex.Completable concatMapCompletable(io.reactivex.functions.Function,int) -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_elevation -com.google.android.material.R$styleable: int ProgressIndicator_indicatorCornerRadius -com.google.android.material.R$dimen: int material_helper_text_font_1_3_padding_horizontal -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getWeatherText() -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: long serialVersionUID -cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl mImpl -james.adaptiveicon.R$color: int background_material_dark -wangdaye.com.geometricweather.R$dimen: int material_text_view_test_line_height -androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableCompat -wangdaye.com.geometricweather.R$attr: int flow_padding -wangdaye.com.geometricweather.R$attr: int mock_diagonalsColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: java.lang.String Unit -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Line2 -com.xw.repo.bubbleseekbar.R$id: int action_bar_root -com.google.android.material.R$styleable: int KeyAttribute_framePosition -com.google.android.material.R$attr: int buttonTint -com.google.android.material.R$style: int Theme_AppCompat_DayNight -com.jaredrummler.android.colorpicker.R$id: int title_template -androidx.preference.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_2 -com.turingtechnologies.materialscrollbar.R$attr: int searchHintIcon -okhttp3.internal.connection.RouteDatabase: boolean shouldPostpone(okhttp3.Route) -android.didikee.donate.R$attr: int actionModeCloseDrawable -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitation -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_left_mtrl_dark -com.google.android.material.bottomappbar.BottomAppBar: float getFabCradleMargin() -com.google.android.material.internal.FlowLayout: void setItemSpacing(int) -androidx.activity.R$color: int secondary_text_default_material_light -com.bumptech.glide.integration.okhttp.R$attr: int fontVariationSettings -androidx.constraintlayout.widget.R$styleable: int KeyPosition_sizePercent -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean disposed -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$Adapter getAdapter() -androidx.viewpager.R$styleable: int[] GradientColorItem -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextAppearanceInactive(int) -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -wangdaye.com.geometricweather.R$attr: int saturation -okhttp3.internal.http2.Http2: byte TYPE_HEADERS -cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String TIMEZONE_OFFSET -androidx.preference.R$styleable: int MenuItem_iconTint -com.google.android.material.R$attr: int itemBackground -com.turingtechnologies.materialscrollbar.R$drawable: int design_bottom_navigation_item_background -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult -org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType valueOf(java.lang.String) -android.didikee.donate.R$style: int Base_Widget_AppCompat_ButtonBar -okhttp3.internal.cache.CacheStrategy$Factory: boolean isFreshnessLifetimeHeuristic() -wangdaye.com.geometricweather.R$drawable: int notification_icon_background -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator __MAGICAL_TEST_PASSING_ENABLER_VALIDATOR -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability -com.turingtechnologies.materialscrollbar.R$styleable: int View_android_focusable -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$height -com.google.android.material.slider.RangeSlider: int getActiveThumbIndex() -com.jaredrummler.android.colorpicker.R$attr: int selectableItemBackground -com.google.android.material.R$styleable: int MaterialButton_backgroundTintMode -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property CityId -androidx.vectordrawable.R$id: int accessibility_custom_action_26 -wangdaye.com.geometricweather.R$attr: int counterOverflowTextAppearance -wangdaye.com.geometricweather.R$attr: int minTouchTargetSize -okhttp3.Cache$2: Cache$2(okhttp3.Cache) -android.didikee.donate.R$dimen: int notification_large_icon_width -james.adaptiveicon.R$style: int Theme_AppCompat_Light_NoActionBar -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.R$styleable: int State_android_id -androidx.vectordrawable.R$id: int tag_unhandled_key_event_manager -com.google.android.material.R$styleable: int NavigationView_shapeAppearance -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindDegree -okhttp3.HttpUrl: java.util.Set queryParameterNames() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getTreeIndex() -androidx.appcompat.R$color: int abc_hint_foreground_material_light -com.google.android.material.R$color: int primary_text_default_material_dark -wangdaye.com.geometricweather.R$styleable: int[] AppBarLayoutStates -androidx.hilt.R$layout: int notification_template_custom_big -com.google.gson.stream.JsonWriter: java.lang.String separator -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconTintMode -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabText -android.didikee.donate.R$color: int abc_search_url_text -okhttp3.internal.ws.WebSocketProtocol: int B0_MASK_OPCODE -androidx.preference.R$styleable: int MenuItem_alphabeticModifiers -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_sheet_modal_elevation -wangdaye.com.geometricweather.R$id: int activity_preview_icon_recyclerView -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours -wangdaye.com.geometricweather.R$id: int container_main_pollen_pager -wangdaye.com.geometricweather.R$styleable: int[] ListPopupWindow -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_toTopOf -com.google.android.material.R$styleable: int Chip_closeIconVisible -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_searchHintIcon -wangdaye.com.geometricweather.R$id: int controller -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter close(int,int,java.lang.String) -android.support.v4.os.ResultReceiver$1: ResultReceiver$1() -io.reactivex.Observable: io.reactivex.Observable flatMapMaybe(io.reactivex.functions.Function) -com.turingtechnologies.materialscrollbar.R$attr: int errorEnabled -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: java.lang.String Name -okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot removeSnapshot -com.google.android.material.R$drawable: int abc_btn_check_to_on_mtrl_000 -com.github.rahatarmanahmed.cpv.CircularProgressView: int color -com.bumptech.glide.load.engine.CallbackException -androidx.preference.R$string: int abc_searchview_description_submit -cyanogenmod.providers.CMSettings$Secure: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) -com.google.android.material.R$attr: int bottomSheetStyle -okio.Timeout$1: Timeout$1() +com.turingtechnologies.materialscrollbar.R$color: int highlighted_text_material_light +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startColor +androidx.appcompat.R$styleable: int Toolbar_subtitle +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchMinWidth +com.turingtechnologies.materialscrollbar.R$attr: int layout_keyline +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startX +cyanogenmod.providers.CMSettings$NameValueCache: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.util.List getValue() +androidx.activity.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$string: int content_des_minutely_precipitation +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_queryBackground +wangdaye.com.geometricweather.R$attr: int closeIconVisible +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_vertical_padding +cyanogenmod.app.suggest.ApplicationSuggestion$1: java.lang.Object[] newArray(int) +com.google.android.material.R$styleable: int Toolbar_collapseContentDescription +com.turingtechnologies.materialscrollbar.R$id: int search_go_btn +com.google.android.material.slider.Slider: void setThumbRadiusResource(int) +com.google.android.material.R$attr: int startIconTintMode +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onCreatePanelMenu(int,android.view.Menu) +io.reactivex.exceptions.CompositeException: java.lang.Throwable getRootCause(java.lang.Throwable) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onScreenTurnedOn() +wangdaye.com.geometricweather.R$xml: int perference_service_provider +com.xw.repo.bubbleseekbar.R$attr: int listPopupWindowStyle +wangdaye.com.geometricweather.R$color: int design_icon_tint +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowMinWidthMajor +wangdaye.com.geometricweather.R$layout: int dialog_background_location +com.jaredrummler.android.colorpicker.R$attr: int checkboxStyle +androidx.appcompat.resources.R$id: int accessibility_custom_action_3 +androidx.appcompat.widget.SearchView: int getSuggestionRowLayout() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +androidx.appcompat.resources.R$dimen: int compat_notification_large_icon_max_height +androidx.vectordrawable.animated.R$styleable +androidx.preference.R$styleable: int ActionBar_itemPadding +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_FixedSize +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: MfWarningsResult$WarningMaxCountItems() +com.google.android.material.R$id: int NO_DEBUG +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer LEFT_VALUE +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupMenu +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIFI +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String messageLong +androidx.appcompat.widget.SwitchCompat: void setTextOff(java.lang.CharSequence) +androidx.viewpager2.R$dimen: int fastscroll_margin +com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatPressedTranslationZ() +io.reactivex.Observable: io.reactivex.Observable startWith(java.lang.Object) +androidx.appcompat.R$style: int Platform_V25_AppCompat_Light +com.jaredrummler.android.colorpicker.R$attr: int dialogPreferenceStyle +androidx.appcompat.R$styleable: int ActionBar_displayOptions +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customColorValue +com.bumptech.glide.load.HttpException: int statusCode +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_menu_header_material +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: int quality +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric +android.didikee.donate.R$dimen: int abc_button_padding_horizontal_material +androidx.hilt.work.R$styleable: int FontFamily_fontProviderAuthority +com.google.android.material.R$dimen: int design_snackbar_action_text_color_alpha +wangdaye.com.geometricweather.R$styleable: int Layout_maxHeight +okio.Buffer: okio.BufferedSink writeUtf8(java.lang.String) +io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Action) +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +androidx.swiperefreshlayout.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event INITIALIZE +com.google.android.material.bottomnavigation.BottomNavigationItemView +android.didikee.donate.R$attr: int searchViewStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_130 +androidx.appcompat.resources.R$id: int accessibility_custom_action_31 +com.xw.repo.bubbleseekbar.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowNoTitle +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.LocationEntityDao getLocationEntityDao() +cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CURRENT_WEATHER_URI +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean timerFired +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed Speed +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy valueOf(java.lang.String) +com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$style: int PreferenceFragment_Material +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_toLeftOf +androidx.preference.R$style: int Preference_CheckBoxPreference_Material +retrofit2.http.Path: boolean encoded() +wangdaye.com.geometricweather.R$attr: int itemIconPadding +com.google.android.material.button.MaterialButtonToggleGroup +cyanogenmod.themes.IThemeService$Stub$Proxy: void applyDefaultTheme() +wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragDirection +androidx.hilt.R$id: int accessibility_custom_action_22 +cyanogenmod.app.Profile$ExpandedDesktopMode: int ENABLE +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchKeyShortcutEvent(android.view.KeyEvent) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_left +androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionListener(androidx.constraintlayout.motion.widget.MotionLayout$TransitionListener) +cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemBitmap(android.graphics.Bitmap) +okhttp3.internal.http1.Http1Codec$ChunkedSource: Http1Codec$ChunkedSource(okhttp3.internal.http1.Http1Codec,okhttp3.HttpUrl) +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_circularInset +retrofit2.Platform: boolean hasJava8Types +okhttp3.ConnectionPool: int pruneAndGetAllocationCount(okhttp3.internal.connection.RealConnection,long) +androidx.preference.R$styleable: int Preference_summary +com.google.android.material.R$anim: int abc_fade_in +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onKeyguardShowing(boolean) +wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingEnd james.adaptiveicon.R$dimen: int compat_button_inset_horizontal_material -androidx.recyclerview.R$id: int tag_screen_reader_focusable -com.google.android.material.slider.Slider: void setTickActiveTintList(android.content.res.ColorStateList) -androidx.transition.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: AccuDailyResult$Headline() -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_orderInCategory -com.bumptech.glide.load.ImageHeaderParser$ImageType: boolean hasAlpha -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_icon_size -androidx.constraintlayout.widget.R$dimen: int tooltip_precise_anchor_threshold -io.reactivex.Observable: int bufferSize() -com.xw.repo.bubbleseekbar.R$attr: int dividerVertical -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_5 -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SeekBar -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_weight -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: void run() -com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context,android.util.AttributeSet) -okhttp3.Interceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -android.didikee.donate.R$drawable: int notification_tile_bg -com.turingtechnologies.materialscrollbar.R$string: int mtrl_chip_close_icon_content_description -androidx.lifecycle.SavedStateHandleController: boolean isAttached() -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMargin -okhttp3.internal.http2.Http2Writer: okio.Buffer hpackBuffer -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum() -okhttp3.CertificatePinner$Pin -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMarkTintMode -com.google.android.material.bottomnavigation.BottomNavigationView -android.didikee.donate.R$drawable: int abc_ic_star_black_48dp -androidx.hilt.work.R$styleable: int GradientColor_android_startY -james.adaptiveicon.R$attr: int thumbTint -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Bridge -wangdaye.com.geometricweather.R$id: int widget_week_card -androidx.preference.R$layout -com.turingtechnologies.materialscrollbar.R$id: int reservedNamedId -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getProvince() -io.reactivex.internal.schedulers.ScheduledRunnable: void dispose() -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -androidx.fragment.R$id: int tag_accessibility_actions -androidx.appcompat.resources.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.R$string: int feedback_show_widget_card_alpha -androidx.appcompat.resources.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$attr: int customDimension -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_collapseContentDescription -wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_enforceTextAppearance -androidx.core.R$styleable: int GradientColor_android_centerColor -cyanogenmod.hardware.CMHardwareManager: int FEATURE_THERMAL_MONITOR -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchTrackballEvent(android.view.MotionEvent) -okhttp3.internal.http2.Http2Stream: long unacknowledgedBytesRead -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial Imperial -wangdaye.com.geometricweather.R$id: int cpv_hex -androidx.core.R$attr: int fontVariationSettings -com.google.android.material.R$styleable: int Chip_chipEndPadding -wangdaye.com.geometricweather.R$drawable: int ic_email -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_spinnerStyle -okhttp3.Request$Builder: okhttp3.Request$Builder tag(java.lang.Object) -okhttp3.CacheControl$Builder: boolean noCache -cyanogenmod.weather.IRequestInfoListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColor(int) -okhttp3.internal.http2.Http2Reader$Handler: void ackSettings() -okhttp3.Handshake: okhttp3.CipherSuite cipherSuite() -cyanogenmod.providers.CMSettings$Validator: boolean validate(java.lang.String) -okhttp3.ConnectionSpec$Builder: boolean supportsTlsExtensions -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onComplete() -androidx.lifecycle.extensions.R$string: R$string() -com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_material_dark -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -androidx.work.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language TURKISH -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level[] $VALUES -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.util.Date date -wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_orientation -okhttp3.TlsVersion: okhttp3.TlsVersion valueOf(java.lang.String) -wangdaye.com.geometricweather.settings.dialogs.ProvidersPreviewerDialog -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String ACTION_SET_ALARM_ENABLED -okio.ForwardingSource: long read(okio.Buffer,long) -com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusTopStart -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String aqiText -com.google.android.material.R$styleable: int SearchView_commitIcon -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemPosition(int) -wangdaye.com.geometricweather.R$drawable: int ic_launcher_foreground -okhttp3.HttpUrl$Builder: java.lang.String INVALID_HOST -androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onCreate() -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DialogWhenLarge -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onComplete() -com.google.android.material.R$style: int Widget_MaterialComponents_Button_OutlinedButton -com.google.android.material.R$styleable: int MotionLayout_motionProgress -wangdaye.com.geometricweather.R$string: int feedback_view_style -android.didikee.donate.R$color: int primary_material_light -androidx.hilt.work.R$attr: int fontStyle -okio.RealBufferedSink -com.google.gson.FieldNamingPolicy$5: FieldNamingPolicy$5(java.lang.String,int) -com.google.android.material.R$color: int mtrl_btn_text_color_disabled -okhttp3.internal.http.RetryAndFollowUpInterceptor: java.lang.Object callStackTrace -wangdaye.com.geometricweather.R$id: int material_timepicker_view -com.google.android.material.R$styleable: int Constraint_flow_lastVerticalStyle -androidx.appcompat.R$styleable: int AppCompatTheme_imageButtonStyle -androidx.viewpager.widget.ViewPager: void setOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerError(io.reactivex.internal.observers.InnerQueuedObserver,java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: int count -android.didikee.donate.R$string: int abc_shareactionprovider_share_with -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX getBrandInfo() -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$attr: int titleMargin -wangdaye.com.geometricweather.R$color: int colorLevel_6 -wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_seekBarPreferenceStyle -androidx.preference.R$id: int parentPanel -wangdaye.com.geometricweather.R$string: int feedback_initializing -cyanogenmod.power.IPerformanceManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertInTxArray -androidx.hilt.R$styleable: int[] FragmentContainerView -androidx.hilt.work.R$color: int secondary_text_default_material_light -james.adaptiveicon.R$styleable: int Toolbar_contentInsetEndWithActions -wangdaye.com.geometricweather.R$attr: int colorPrimarySurface -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -okhttp3.internal.cache.DiskLruCache: boolean removeEntry(okhttp3.internal.cache.DiskLruCache$Entry) -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit MM -cyanogenmod.app.Profile: java.util.Collection getStreamSettings() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String windspeed -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityResumed(android.app.Activity) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_NULL_SHA -cyanogenmod.profiles.StreamSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio -android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog_Alert -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: int UnitType -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight -com.google.android.material.appbar.ViewOffsetBehavior: ViewOffsetBehavior() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_SLEEP_ON_RELEASE_VALIDATOR -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2(androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription) -androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_alpha -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_RadioButton -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_13 -com.google.android.material.chip.ChipGroup: int getChipSpacingVertical() -com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_900 -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather -androidx.viewpager.R$styleable: int GradientColor_android_gradientRadius -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -android.didikee.donate.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -com.google.android.material.R$style: int Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Surface -androidx.activity.R$styleable: int FontFamilyFont_android_fontVariationSettings -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: ObservableConcatMapSingle$ConcatMapSingleMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,io.reactivex.internal.util.ErrorMode) -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_navigationContentDescription -androidx.preference.R$styleable: int[] CheckBoxPreference -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX -wangdaye.com.geometricweather.R$id: int activity_allergen_recyclerView -james.adaptiveicon.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -androidx.constraintlayout.widget.ConstraintHelper: void setReferencedIds(int[]) -com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.AnimatorSet indeterminateAnimator -okhttp3.Cache: void abortQuietly(okhttp3.internal.cache.DiskLruCache$Editor) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void dispose() -com.xw.repo.bubbleseekbar.R$color: int primary_material_light -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu -okhttp3.internal.http.RealResponseBody: java.lang.String contentTypeString -wangdaye.com.geometricweather.R$string: int settings_title_gravity_sensor_switch -cyanogenmod.profiles.BrightnessSettings: BrightnessSettings(android.os.Parcel) -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.PushObserver pushObserver -android.didikee.donate.R$styleable: int AppCompatTextView_drawableEndCompat -androidx.appcompat.widget.Toolbar: void setSubtitleTextColor(int) -com.google.android.material.progressindicator.ProgressIndicator: void setCircularRadius(int) -androidx.preference.R$style: int Widget_AppCompat_PopupMenu_Overflow -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver observer -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedWidthMajor -androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_NO_ARG -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeCloudCover -androidx.preference.R$style: int Widget_AppCompat_ActionBar -cyanogenmod.providers.CMSettings$Secure: java.lang.String VIBRATOR_INTENSITY -androidx.preference.R$dimen: int abc_dropdownitem_text_padding_left -okhttp3.RequestBody$3 -androidx.constraintlayout.widget.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -com.google.gson.stream.JsonScope: int EMPTY_ARRAY -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void clear() -androidx.appcompat.R$styleable: int ActionBar_contentInsetLeft -androidx.appcompat.widget.AppCompatImageView: void setImageResource(int) -com.xw.repo.bubbleseekbar.R$attr: int windowMinWidthMajor -wangdaye.com.geometricweather.R$attr: int drawPath -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void createCustomTileWithTag(java.lang.String,java.lang.String,java.lang.String,int,cyanogenmod.app.CustomTile,int[],int) -cyanogenmod.app.ProfileGroup: boolean isDefaultGroup() -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: FitSystemBarViewPager(android.content.Context) -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Bridge -androidx.appcompat.resources.R$id: int action_container -android.didikee.donate.R$styleable: int DrawerArrowToggle_barLength -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.util.concurrent.atomic.AtomicLong requested -com.google.android.material.R$dimen: int highlight_alpha_material_colored -com.turingtechnologies.materialscrollbar.R$attr: int buttonStyleSmall -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean disposed -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableBottom -androidx.core.R$id: int async -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long count -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_EditText -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer getDewPoint() -com.turingtechnologies.materialscrollbar.R$attr: int chipCornerRadius -androidx.loader.R$id: int title -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator -com.turingtechnologies.materialscrollbar.R$id: int image -androidx.preference.R$attr: int spinnerDropDownItemStyle -androidx.constraintlayout.widget.R$drawable: int abc_ic_go_search_api_material -io.reactivex.Observable: io.reactivex.Single toSortedList(java.util.Comparator,int) -okhttp3.internal.ws.RealWebSocket$PingRunnable: void run() -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context) -com.google.android.material.R$style: int Widget_MaterialComponents_Button_UnelevatedButton -retrofit2.DefaultCallAdapterFactory$1 -cyanogenmod.app.IPartnerInterface$Stub$Proxy: boolean setZenModeWithDuration(int,long) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float rainPrecipitationProbability -androidx.preference.R$color: int abc_secondary_text_material_light -com.google.android.material.R$styleable: int TextInputLayout_endIconMode -okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,byte[]) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_checkboxStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_corner -com.google.android.material.floatingactionbutton.FloatingActionButton: void setShadowPaddingEnabled(boolean) -androidx.recyclerview.R$dimen: int notification_main_column_padding_top -androidx.appcompat.widget.SwitchCompat: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -okhttp3.MultipartBody$Builder: java.util.List parts -wangdaye.com.geometricweather.R$id: int chip1 +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabAnimationMode +com.google.android.material.R$style: int Base_Widget_MaterialComponents_Snackbar +androidx.legacy.coreutils.R$drawable: int notification_template_icon_low_bg +okhttp3.internal.cache.DiskLruCache$Editor: okio.Sink newSink(int) +com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_top_mtrl_alpha +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_4 +androidx.preference.R$style: int PreferenceThemeOverlay +wangdaye.com.geometricweather.R$id: int widget_day +wangdaye.com.geometricweather.R$attr: int endIconTint +androidx.preference.R$styleable: int AppCompatTextView_autoSizeStepGranularity +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable +okhttp3.internal.http2.Http2Connection$1: int val$streamId +androidx.recyclerview.R$styleable: int GradientColor_android_startY +androidx.preference.R$dimen: int notification_large_icon_width +okhttp3.internal.platform.Platform: java.lang.Object readFieldOrNull(java.lang.Object,java.lang.Class,java.lang.String) +com.google.android.material.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +androidx.constraintlayout.widget.R$attr: int windowFixedHeightMinor +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlHighlight +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenVoice(android.content.Context,int) +com.google.android.material.R$dimen: int compat_button_inset_vertical_material +com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat_Dark +com.google.android.material.timepicker.TimePickerView: void setOnPeriodChangeListener(com.google.android.material.timepicker.TimePickerView$OnPeriodChangeListener) +androidx.fragment.R$id: int line3 +androidx.viewpager.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_grey +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +james.adaptiveicon.R$drawable: int abc_list_selector_holo_light +wangdaye.com.geometricweather.R$id: int fill_horizontal +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginLeft +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_visible +okio.Buffer: okio.Buffer writeHexadecimalUnsignedLong(long) +cyanogenmod.themes.ThemeChangeRequest: int DEFAULT_WALLPAPER_ID +james.adaptiveicon.R$string: int abc_search_hint +io.reactivex.Observable: io.reactivex.Observable empty() +androidx.hilt.work.R$id: int accessibility_custom_action_30 +okhttp3.OkHttpClient: java.net.Proxy proxy() +androidx.appcompat.resources.R$id: int action_divider +com.google.android.material.R$attr: int content +cyanogenmod.weather.WeatherInfo$DayForecast: int describeContents() +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: void detach() +james.adaptiveicon.R$string: int abc_searchview_description_clear +cyanogenmod.providers.CMSettings$System: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul6H +wangdaye.com.geometricweather.R$id: int container_main_footer_editButton +wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_EditText +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontStyle +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Primary +wangdaye.com.geometricweather.common.basic.GeoActivity +com.bumptech.glide.R$dimen: int compat_button_inset_vertical_material +androidx.coordinatorlayout.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: AccuCurrentResult$PrecipitationSummary() +androidx.appcompat.widget.SearchView: void setMaxWidth(int) +wangdaye.com.geometricweather.R$array: int clock_font_values +androidx.constraintlayout.widget.R$drawable: int abc_edit_text_material +com.google.android.material.R$styleable: int MenuItem_contentDescription +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SeekBar +androidx.constraintlayout.widget.R$layout: int notification_action_tombstone +androidx.customview.R$dimen: int notification_large_icon_width +cyanogenmod.providers.CMSettings$2: CMSettings$2() +com.google.android.material.R$attr: int editTextColor +cyanogenmod.providers.CMSettings$DelimitedListValidator +wangdaye.com.geometricweather.common.basic.models.weather.Current +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType RAW +james.adaptiveicon.R$id: int search_close_btn +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionBar +org.greenrobot.greendao.database.DatabaseOpenHelper: void onCreate(org.greenrobot.greendao.database.Database) +androidx.appcompat.resources.R$dimen: int notification_content_margin_start +com.google.android.material.R$attr: int contentPaddingRight +okhttp3.internal.cache.DiskLruCache: okio.BufferedSink newJournalWriter() +okhttp3.internal.connection.StreamAllocation: okhttp3.EventListener eventListener +android.didikee.donate.R$style: int TextAppearance_AppCompat_Body1 +okhttp3.internal.http2.Http2Connection$Listener +wangdaye.com.geometricweather.R$id: int SHOW_PROGRESS +com.turingtechnologies.materialscrollbar.R$style: int Platform_V25_AppCompat_Light +okhttp3.internal.cache.DiskLruCache$Entry: long sequenceNumber +io.reactivex.internal.util.ExceptionHelper$Termination +androidx.transition.R$dimen: R$dimen() +james.adaptiveicon.R$styleable: int[] AlertDialog +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginTop +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogPreferredPadding +com.google.android.material.R$style: int Base_Widget_AppCompat_Spinner +androidx.appcompat.R$attr: int textAppearanceSearchResultTitle +com.jaredrummler.android.colorpicker.R$attr: int fastScrollVerticalTrackDrawable +okhttp3.Headers: int size() +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowDy +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherText +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: double Value +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.ObservableEmitter serialize() +androidx.appcompat.R$attr: int colorAccent +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void clear() +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: AccuCurrentResult$WetBulbTemperature$Imperial() +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: long serialVersionUID +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_ttcIndex +cyanogenmod.app.LiveLockScreenManager: void logServiceException(java.lang.Exception) +androidx.appcompat.R$style: int Theme_AppCompat_Light_DarkActionBar +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onComplete() +androidx.preference.R$attr: int seekBarPreferenceStyle +com.turingtechnologies.materialscrollbar.R$attr: int closeIconEnabled +com.xw.repo.bubbleseekbar.R$attr: int dialogCornerRadius +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: int getMinuteInterval() +cyanogenmod.hardware.DisplayMode: java.lang.String name +com.google.android.material.R$id: int labeled +wangdaye.com.geometricweather.R$attr: int titleMarginTop +com.google.android.material.R$styleable: int RecyclerView_reverseLayout +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: ObservableIntervalRange$IntervalRangeObserver(io.reactivex.Observer,long,long) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_singleLineTitle +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void dispose() +retrofit2.ParameterHandler$RelativeUrl: ParameterHandler$RelativeUrl(java.lang.reflect.Method,int) +cyanogenmod.themes.ThemeManager$1$1 +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_horizontal_padding +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnSettingsClickIntent(android.content.Intent) +wangdaye.com.geometricweather.db.entities.DailyEntity: int getNighttimeTemperature() +androidx.recyclerview.widget.RecyclerView: void setLayoutFrozen(boolean) +wangdaye.com.geometricweather.R$id: int selection_type +androidx.preference.R$string: int abc_searchview_description_submit +androidx.appcompat.R$styleable: int AppCompatTextView_drawableTintMode +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getCollapseContentDescription() +cyanogenmod.providers.CMSettings$System: java.lang.String REVERSE_LOOKUP_PROVIDER +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onTimeoutError(long,java.lang.Throwable) +com.google.android.material.R$styleable: int BottomNavigationView_itemIconTint +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: int UnitType +android.didikee.donate.R$attr: int drawerArrowStyle +wangdaye.com.geometricweather.R$id: int event +com.turingtechnologies.materialscrollbar.R$styleable: int View_android_theme +com.google.android.material.R$styleable: int KeyTimeCycle_framePosition +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_4 +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog +com.google.android.material.R$id: int message +androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context) +androidx.appcompat.widget.SearchView: void setImeOptions(int) +com.jaredrummler.android.colorpicker.R$drawable: int abc_edit_text_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: void setValue(java.util.List) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_tint +com.google.android.material.R$attr: int buttonTintMode +io.reactivex.internal.observers.InnerQueuedObserver: void setDone() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: CNWeatherResult$Alert() +androidx.lifecycle.SavedStateHandleController +androidx.appcompat.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyle +androidx.preference.R$id: int accessibility_custom_action_29 +androidx.constraintlayout.widget.R$color: int foreground_material_dark +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$attr: int textInputLayoutFocusedRectEnabled +com.google.android.material.R$attr: int layout_constraintDimensionRatio +androidx.hilt.work.R$id: int tag_accessibility_pane_title +okhttp3.internal.http2.Http2Stream$FramingSink: okio.Buffer sendBuffer +io.reactivex.internal.util.NotificationLite: boolean isError(java.lang.Object) +okhttp3.CipherSuite: okhttp3.CipherSuite forJavaName(java.lang.String) +cyanogenmod.externalviews.ExternalView: void performAction(java.lang.Runnable) +io.reactivex.internal.subscriptions.SubscriptionArbiter: void setSubscription(org.reactivestreams.Subscription) +com.google.android.material.R$attr: int maxCharacterCount +james.adaptiveicon.R$dimen: int abc_alert_dialog_button_bar_height +android.didikee.donate.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +androidx.constraintlayout.widget.R$attr: int showPaths +wangdaye.com.geometricweather.R$styleable: int NavigationView_elevation +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_checkable +com.google.android.material.R$attr: int tickMark +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogMessage +androidx.preference.R$drawable: int abc_ic_search_api_material +androidx.constraintlayout.widget.R$color: int bright_foreground_material_dark +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: long serialVersionUID +james.adaptiveicon.R$drawable: int notification_template_icon_low_bg +android.didikee.donate.R$anim: R$anim() +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_subhead_material +androidx.appcompat.R$drawable: int abc_seekbar_tick_mark_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String getType() +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_android_max +com.google.android.material.R$attr: int curveFit +wangdaye.com.geometricweather.R$integer: int cancel_button_image_alpha +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String zh_CN +okhttp3.Cookie: java.util.regex.Pattern MONTH_PATTERN +androidx.preference.R$attr: int actionBarPopupTheme +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_TabLayoutTheme +com.google.android.material.R$attr: int yearSelectedStyle +okhttp3.internal.cache.InternalCache: okhttp3.Response get(okhttp3.Request) +cyanogenmod.util.ColorUtils: com.android.internal.util.cm.palette.Palette$Swatch getDominantSwatch(com.android.internal.util.cm.palette.Palette) +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemIconDisabledAlpha +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Item +com.xw.repo.bubbleseekbar.R$attr: int bsb_touch_to_seek +wangdaye.com.geometricweather.R$string: int feedback_no_data +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: ObservableThrottleLatest$ThrottleLatestObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker,boolean) +androidx.viewpager2.R$styleable: int FontFamilyFont_font +com.jaredrummler.android.colorpicker.R$drawable: int abc_action_bar_item_background_material +com.jaredrummler.android.colorpicker.R$drawable: int notification_icon_background +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarPopupTheme +retrofit2.Utils: void checkNotPrimitive(java.lang.reflect.Type) +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.StreamAllocation streamAllocation +okhttp3.internal.cache.DiskLruCache$3: java.util.Iterator delegate +com.xw.repo.bubbleseekbar.R$attr: int actionModeStyle +okhttp3.internal.cache.DiskLruCache$Editor: okhttp3.internal.cache.DiskLruCache this$0 +cyanogenmod.weather.ICMWeatherManager$Stub: cyanogenmod.weather.ICMWeatherManager asInterface(android.os.IBinder) +cyanogenmod.app.LiveLockScreenManager: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +androidx.constraintlayout.widget.R$attr: int viewInflaterClass +wangdaye.com.geometricweather.R$styleable: int Constraint_barrierDirection +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean isPrecipitation() +james.adaptiveicon.R$color: int switch_thumb_normal_material_dark +io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onError +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSearchResultTitle +wangdaye.com.geometricweather.R$attr: int cpv_colorShape +wangdaye.com.geometricweather.R$attr: int region_widthLessThan +androidx.viewpager2.widget.ViewPager2: void setOffscreenPageLimit(int) +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_closeIcon +androidx.constraintlayout.widget.R$styleable: int[] StateListDrawable +cyanogenmod.weatherservice.WeatherProviderService$1: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) +okhttp3.internal.http.HttpMethod: HttpMethod() +wangdaye.com.geometricweather.R$attr: int dropdownListPreferredItemHeight +androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle +androidx.constraintlayout.widget.R$attr: int transitionPathRotate +com.google.android.material.card.MaterialCardView: void setChecked(boolean) +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getNumberOfProfiles +com.google.android.material.R$styleable: int Constraint_layout_constraintTop_creator +james.adaptiveicon.R$color: int switch_thumb_disabled_material_dark +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$attr: int attributeName +okio.RealBufferedSource: java.lang.String readUtf8LineStrict() +com.google.android.material.R$styleable: int Layout_layout_constraintTop_creator +androidx.activity.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +james.adaptiveicon.R$styleable: int AppCompatImageView_srcCompat +com.bumptech.glide.Priority: com.bumptech.glide.Priority valueOf(java.lang.String) +wangdaye.com.geometricweather.R$id: int graph_wrap +okhttp3.internal.http.HttpHeaders: okio.ByteString QUOTED_STRING_DELIMITERS +androidx.core.R$id: int tag_unhandled_key_listeners +androidx.hilt.work.R$id: int accessibility_custom_action_19 +com.google.android.material.R$attr: int layout_constraintHorizontal_weight +android.didikee.donate.R$drawable: int abc_ic_arrow_drop_right_black_24dp +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_LED_ON_VALIDATOR +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: long serialVersionUID +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onComplete() +cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile[] getProfiles() +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design +com.google.android.material.R$id: int material_clock_period_toggle +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: io.reactivex.Observer child +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: io.reactivex.CompletableSource other +android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedWidthMinor +wangdaye.com.geometricweather.R$dimen: int daily_trend_item_height +cyanogenmod.os.Concierge$ParcelInfo: void complete() +com.xw.repo.bubbleseekbar.R$id: int tag_unhandled_key_listeners +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog +com.jaredrummler.android.colorpicker.R$drawable: int abc_dialog_material_background +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_BINARY +androidx.customview.R$styleable: int GradientColor_android_type +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Snapshot get(java.lang.String) +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.Handler access$100(cyanogenmod.externalviews.KeyguardExternalViewProviderService) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_dropdownPreferenceStyle +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog +android.didikee.donate.R$anim: int abc_fade_in +android.didikee.donate.R$styleable: int AppCompatTheme_android_windowAnimationStyle +wangdaye.com.geometricweather.R$attr: int materialButtonToggleGroupStyle +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderDivider +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Switch +androidx.drawerlayout.R$styleable: int GradientColor_android_endY +androidx.recyclerview.R$styleable: int GradientColor_android_tileMode +androidx.transition.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.R$string: int preference_copied +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +androidx.fragment.R$id +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int SILENT_STATE +io.reactivex.internal.subscribers.StrictSubscriber: io.reactivex.internal.util.AtomicThrowable error +com.google.android.material.R$styleable: int ActionBar_contentInsetEndWithActions +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean sunRiseSet +androidx.preference.R$style: int Base_Animation_AppCompat_DropDownUp +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver +androidx.recyclerview.R$id: int action_divider +io.reactivex.internal.observers.DeferredScalarDisposable: void clear() +com.google.android.material.R$string: int bottom_sheet_behavior +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +james.adaptiveicon.R$styleable: int SwitchCompat_track +com.google.android.material.R$drawable: int abc_cab_background_top_material +wangdaye.com.geometricweather.R$id: int currentLocationButton +wangdaye.com.geometricweather.R$styleable: int[] ExtendedFloatingActionButton +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: int hashCode() +androidx.lifecycle.Transformations: androidx.lifecycle.LiveData distinctUntilChanged(androidx.lifecycle.LiveData) +android.didikee.donate.R$styleable: int MenuGroup_android_checkableBehavior +wangdaye.com.geometricweather.R$style: int large_title_text +com.google.android.material.R$styleable: int[] MaterialShape +cyanogenmod.weather.CMWeatherManager +com.xw.repo.bubbleseekbar.R$id: int none +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService listenerExecutor +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animAutostart +androidx.appcompat.R$attr: int windowFixedWidthMinor +androidx.constraintlayout.widget.R$id: int normal +androidx.appcompat.view.menu.ListMenuItemView: void setIcon(android.graphics.drawable.Drawable) +android.didikee.donate.R$styleable: int AppCompatTextView_fontFamily +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_summaryOn +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type TEMPERATURE +androidx.preference.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation getWeatherLocation() +wangdaye.com.geometricweather.R$styleable: int[] KeyFrame +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +com.turingtechnologies.materialscrollbar.R$styleable: int FlowLayout_lineSpacing +com.google.android.material.R$styleable: int ThemeEnforcement_android_textAppearance +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +wangdaye.com.geometricweather.R$attr: int cpv_showDialog +okhttp3.internal.http1.Http1Codec$ChunkedSource: long bytesRemainingInChunk +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource[],io.reactivex.functions.Function,int) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerComplete() +cyanogenmod.profiles.LockSettings: void writeXmlString(java.lang.StringBuilder,android.content.Context) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit valueOf(java.lang.String) +androidx.hilt.R$styleable: int ColorStateListItem_android_alpha +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg com.google.android.material.R$attr: int colorSwitchThumbNormal -com.jaredrummler.android.colorpicker.R$layout: int preference_material -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getGrassIndex() -wangdaye.com.geometricweather.R$id: int item_weather_daily_overview_text -james.adaptiveicon.R$attr: int colorPrimary +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTag +okhttp3.internal.http2.Hpack$Writer: int smallestHeaderTableSizeSetting +androidx.loader.R$drawable +wangdaye.com.geometricweather.R$id: int widget_clock_day_icon +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_startAngle +androidx.constraintlayout.widget.R$id: int parentPanel +androidx.lifecycle.livedata.R +cyanogenmod.externalviews.IExternalViewProvider: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabView +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: FlowableOnBackpressureBuffer$BackpressureBufferSubscriber(org.reactivestreams.Subscriber,int,boolean,boolean,io.reactivex.functions.Action) +com.google.android.material.textfield.TextInputLayout: void setErrorIconTintMode(android.graphics.PorterDuff$Mode) +cyanogenmod.providers.CMSettings$Secure$2 +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_translation_z_hovered_focused +androidx.preference.R$style: int Widget_AppCompat_SearchView_ActionBar +androidx.preference.R$dimen: int abc_progress_bar_height_material +wangdaye.com.geometricweather.R$interpolator: int mtrl_fast_out_slow_in +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_SECURE +com.google.android.material.R$styleable: int ImageFilterView_contrast +androidx.preference.R$drawable: int btn_radio_off_mtrl +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setAlarm(java.lang.String) +com.bumptech.glide.R$styleable: int[] CoordinatorLayout +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderQuery +androidx.lifecycle.ProcessLifecycleOwner$3$1: ProcessLifecycleOwner$3$1(androidx.lifecycle.ProcessLifecycleOwner$3) +cyanogenmod.os.Concierge$ParcelInfo: int mStartPosition +wangdaye.com.geometricweather.R$id: int item_aqi_content +wangdaye.com.geometricweather.R$attr: int strokeColor +androidx.swiperefreshlayout.R$color +cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_FORWARD_LOOKUP +wangdaye.com.geometricweather.R$attr: int waveShape +androidx.lifecycle.ProcessLifecycleOwner$3$1: androidx.lifecycle.ProcessLifecycleOwner$3 this$1 +cyanogenmod.weatherservice.ServiceRequestResult$1: cyanogenmod.weatherservice.ServiceRequestResult createFromParcel(android.os.Parcel) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constrainedHeight +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_controlView +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type upperBound +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableLeft +com.google.android.material.R$color: int secondary_text_default_material_light +com.google.gson.stream.JsonReader: int nextInt() +androidx.preference.R$integer: int cancel_button_image_alpha +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_material +androidx.recyclerview.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: io.reactivex.disposables.CompositeDisposable compositeDisposable +com.google.android.material.R$attr: int dragDirection +wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWidgetConfigActivity +androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_toRightOf +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDate(java.util.Date) +com.google.android.material.R$styleable: int AppCompatTheme_editTextBackground +androidx.preference.R$style: int Widget_AppCompat_RatingBar +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_outline_box_expanded_padding +androidx.vectordrawable.R$attr: int fontProviderCerts +com.google.android.material.R$attr: int cardBackgroundColor +com.google.android.material.R$dimen: int disabled_alpha_material_light +androidx.lifecycle.ProcessLifecycleOwner$3 +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit +wangdaye.com.geometricweather.R$styleable: int MaterialShape_shapeAppearance +com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_disable_only_material_dark +wangdaye.com.geometricweather.R$attr: int buttonBarNegativeButtonStyle +com.google.android.material.R$style: int TextAppearance_AppCompat_Tooltip +com.google.android.material.R$attr: int insetForeground +james.adaptiveicon.R$layout: int abc_activity_chooser_view +okhttp3.RealCall$AsyncCall: okhttp3.Callback responseCallback +cyanogenmod.app.CustomTile$ExpandedItem$1: java.lang.Object createFromParcel(android.os.Parcel) +james.adaptiveicon.R$drawable: int abc_ic_search_api_material +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_logo +android.didikee.donate.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +com.google.android.material.transformation.FabTransformationScrimBehavior: FabTransformationScrimBehavior(android.content.Context,android.util.AttributeSet) +androidx.preference.R$attr: int fastScrollVerticalThumbDrawable +com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior +com.google.android.material.R$attr: int actionBarItemBackground +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_xmlIcon +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability +james.adaptiveicon.R$drawable: int abc_list_selector_background_transition_holo_light +james.adaptiveicon.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onError(java.lang.Throwable) +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_type +androidx.constraintlayout.widget.R$styleable: int ActionBar_backgroundStacked +james.adaptiveicon.R$color: int primary_text_disabled_material_dark +wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_backgroundTint +androidx.core.R$id: int icon +james.adaptiveicon.R$layout: int abc_alert_dialog_material +com.google.android.material.R$attr: int applyMotionScene +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCutDrawable +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context) +retrofit2.http.Query: boolean encoded() +wangdaye.com.geometricweather.R$attr: int colorPrimarySurface +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.util.AtomicThrowable error +com.turingtechnologies.materialscrollbar.R$id: int blocking +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean delayErrors +androidx.preference.R$dimen: int tooltip_horizontal_padding +androidx.constraintlayout.widget.R$style: int Animation_AppCompat_DropDownUp +com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String APPLICATION_ID +wangdaye.com.geometricweather.R$styleable: int Preference_fragment +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerComplete() +androidx.drawerlayout.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$drawable: int notif_temp_2 +androidx.vectordrawable.animated.R$id: int tag_accessibility_pane_title +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial Imperial +com.jaredrummler.android.colorpicker.R$attr: int statusBarBackground +wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_bias +com.google.android.material.R$styleable: int ConstraintSet_android_translationZ +com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_id +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_15 +com.google.android.material.R$dimen: int design_fab_translation_z_hovered_focused +com.jaredrummler.android.colorpicker.R$dimen: int cpv_color_preference_normal +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_DOTS +androidx.preference.CheckBoxPreference +com.jaredrummler.android.colorpicker.R$attr: int borderlessButtonStyle +androidx.activity.R$id: int accessibility_custom_action_0 +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService pushExecutor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfPrecipitation +androidx.cardview.widget.CardView: void setPreventCornerOverlap(boolean) +com.google.android.material.R$styleable: int ActionBarLayout_android_layout_gravity +com.google.android.material.R$animator: int mtrl_fab_transformation_sheet_collapse_spec +wangdaye.com.geometricweather.R$id: int actions +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: java.lang.String ShortPhrase +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_BLUE_INDEX +android.didikee.donate.R$layout: int abc_popup_menu_header_item_layout +com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace[] values() +com.google.android.material.R$id: int dragEnd +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setStatus(int) +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Current getCurrent() +wangdaye.com.geometricweather.R$attr: int tabInlineLabel +com.google.android.material.R$attr: int layout_constraintEnd_toEndOf +wangdaye.com.geometricweather.R$string: int wind_6 +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMode +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource MEMORY_CACHE +com.jaredrummler.android.colorpicker.R$attr: int autoSizeStepGranularity +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: FlowableRepeatWhen$WhenSourceSubscriber(org.reactivestreams.Subscriber,io.reactivex.processors.FlowableProcessor,org.reactivestreams.Subscription) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getNo2Color(android.content.Context) +com.google.android.material.R$styleable: int AppCompatTheme_actionBarSize +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: CaiYunMainlyResult$CurrentBean$WindBean() +android.didikee.donate.R$color: int material_grey_100 +com.google.android.material.R$id: int action_bar +wangdaye.com.geometricweather.R$color: int colorRootDark_light +james.adaptiveicon.R$anim: int abc_popup_exit +com.google.android.material.R$attr: int textAllCaps +okhttp3.logging.HttpLoggingInterceptor$Logger +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +com.google.android.material.R$styleable: int AppCompatTextView_autoSizeMinTextSize +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Long id +okhttp3.internal.ws.WebSocketWriter$FrameSink: okhttp3.internal.ws.WebSocketWriter this$0 +wangdaye.com.geometricweather.R$styleable: int[] PreferenceTheme +androidx.hilt.R$id: int notification_background +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_2 +com.google.android.material.R$color: int abc_color_highlight_material +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_MIGRATE_SETTINGS +retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: OkHttpCall$ExceptionCatchingResponseBody$1(retrofit2.OkHttpCall$ExceptionCatchingResponseBody,okio.Source) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display4 +cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$Validator PROTECTED_COMPONENTS_MANAGER_VALIDATOR +retrofit2.ParameterHandler$Field: void apply(retrofit2.RequestBuilder,java.lang.Object) +retrofit2.Call: void enqueue(retrofit2.Callback) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List dailyForecasts +com.google.android.material.R$attr: int navigationIcon +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getWindChillTemperature() +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1(retrofit2.Call) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String value +com.google.android.material.R$string: int mtrl_picker_save +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setUrl(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color Color +androidx.vectordrawable.R$attr: int font +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator +androidx.appcompat.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.R$style: int Base_DialogWindowTitleBackground_AppCompat +cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri getDownloadUri() +androidx.lifecycle.MutableLiveData: MutableLiveData() +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_iconTint +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_body_2_material +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason DECODE_DATA +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String city +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdwd +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_maxProgress +androidx.preference.R$integer +androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_Toolbar +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onTimeout(long) +com.google.android.material.R$style: int Widget_AppCompat_ListPopupWindow +com.google.android.material.R$id: int stretch +androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +androidx.appcompat.R$attr: int actionOverflowButtonStyle +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_material_dark +com.google.android.material.R$styleable: int Chip_iconStartPadding +wangdaye.com.geometricweather.R$styleable: int[] AnimatableIconView +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$100() +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String key +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmTp1 +com.turingtechnologies.materialscrollbar.R$styleable: int[] AlertDialog +wangdaye.com.geometricweather.R$anim: int popup_show_top_right +androidx.drawerlayout.R$drawable +wangdaye.com.geometricweather.R$attr: int shapeAppearance +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer iso0 +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_creator +cyanogenmod.platform.Manifest$permission: java.lang.String OBSERVE_AUDIO_SESSIONS +com.google.android.material.R$styleable: int Transition_transitionFlags +androidx.appcompat.resources.R$id: int accessibility_custom_action_30 +androidx.customview.R$color: R$color() +android.didikee.donate.R$color: int primary_material_light +androidx.work.R$attr: int fontProviderFetchTimeout +com.google.gson.stream.JsonReader: int PEEKED_BEGIN_OBJECT +wangdaye.com.geometricweather.R$color: int dim_foreground_material_dark +wangdaye.com.geometricweather.R$string: int feedback_live_wallpaper_weather_kind +androidx.constraintlayout.widget.R$styleable: int MenuItem_iconTintMode +james.adaptiveicon.R$style: int AlertDialog_AppCompat_Light +com.google.android.material.R$styleable: int ShapeableImageView_strokeColor +androidx.drawerlayout.R$drawable: int notification_bg_low_normal +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.android.material.R$styleable: int MaterialButton_android_checkable +androidx.recyclerview.R$drawable: int notification_bg_low_pressed +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_inverse_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource LocalSource +androidx.constraintlayout.widget.R$attr: int titleTextColor +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_year +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_NoActionBar_Bridge +android.didikee.donate.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getZh_TW() +androidx.appcompat.R$attr: int selectableItemBackgroundBorderless +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_enabled +io.reactivex.internal.observers.InnerQueuedObserver: int prefetch +com.google.android.material.R$attr: int hoveredFocusedTranslationZ +androidx.constraintlayout.widget.R$color: int abc_tint_btn_checkable +androidx.preference.R$styleable: int PopupWindow_android_popupAnimationStyle +androidx.appcompat.R$styleable: int PopupWindow_android_popupAnimationStyle +com.github.rahatarmanahmed.cpv.CircularProgressView: void setVisibility(int) +org.greenrobot.greendao.AbstractDao: java.lang.Object loadCurrent(android.database.Cursor,int,boolean) +wangdaye.com.geometricweather.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.R$string: int wind_9 +james.adaptiveicon.R$styleable: int ActionMenuItemView_android_minWidth +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void setDisposable(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: CaiYunMainlyResult$ForecastDailyBean() +okio.Okio$4: java.net.Socket val$socket +wangdaye.com.geometricweather.R$layout: int cpv_dialog_color_picker +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeCloudCover +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void dispose() +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getDesiredWidth() +com.google.android.material.R$attr: int statusBarScrim +okio.Buffer: okio.Timeout timeout() +androidx.constraintlayout.widget.R$color: int bright_foreground_inverse_material_dark +com.google.android.material.R$attr: int showDividers +androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context) +androidx.appcompat.resources.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.R$array: int distance_unit_values +androidx.constraintlayout.widget.R$styleable: int ActionBar_elevation +com.google.android.material.R$styleable: int Transition_autoTransition +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: java.lang.String Unit +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfSnow +androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_width_minor +okhttp3.internal.http.StatusLine: int code +androidx.customview.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.R$string: int character_counter_content_description +com.google.android.material.slider.RangeSlider: void setLabelBehavior(int) +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$attr: int radius_to +com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.R$string: int settings_title_weather_source +com.turingtechnologies.materialscrollbar.R$styleable: int[] TabLayout +okhttp3.internal.ws.WebSocketWriter$FrameSink: okio.Timeout timeout() +wangdaye.com.geometricweather.R$id: int invisible +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_setInteractivity +james.adaptiveicon.R$attr: int collapseIcon +cyanogenmod.app.ILiveLockScreenManager: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_ALARM +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial Imperial +androidx.preference.R$attr: int popupTheme +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getWindSpeed() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionModeOverlay +androidx.appcompat.R$style: int Base_Animation_AppCompat_Tooltip +okhttp3.EventListener$Factory +wangdaye.com.geometricweather.R$style: int notification_content_text +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_percent +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_requestThemeChange +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets +com.google.android.material.R$styleable: int ShapeableImageView_shapeAppearance +androidx.preference.R$id: int submenuarrow +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_toTopOf +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton_Overflow +androidx.constraintlayout.widget.R$attr: int toolbarStyle +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onComplete() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: org.reactivestreams.Subscriber downstream +androidx.vectordrawable.animated.R$drawable: int notification_bg +com.turingtechnologies.materialscrollbar.R$attr: int borderWidth +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_CompactMenu +androidx.appcompat.R$attr: int queryBackground +androidx.coordinatorlayout.widget.CoordinatorLayout$SavedState +androidx.preference.R$dimen: int abc_control_inset_material +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +com.google.android.material.R$style: int TextAppearance_AppCompat_Headline +androidx.constraintlayout.widget.R$styleable: int MenuItem_contentDescription +android.didikee.donate.R$styleable: int MenuItem_android_checked +com.xw.repo.bubbleseekbar.R$color: int button_material_light +com.jaredrummler.android.colorpicker.R$attr: int cpv_showColorShades +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max +retrofit2.RequestFactory$Builder: retrofit2.Retrofit retrofit +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_showAsAction +android.didikee.donate.R$attr: int controlBackground +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1 +wangdaye.com.geometricweather.R$drawable: int weather_thunder +androidx.constraintlayout.widget.R$attr: int actionModeCopyDrawable +android.didikee.donate.R$attr: int alertDialogButtonGroupStyle +android.support.v4.app.INotificationSideChannel$Default: void cancelAll(java.lang.String) +wangdaye.com.geometricweather.settings.fragments.AbstractSettingsFragment +com.turingtechnologies.materialscrollbar.R$color: int ripple_material_light +androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_begin +com.xw.repo.bubbleseekbar.R$attr: int layout_behavior +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +androidx.appcompat.R$attr: int listMenuViewStyle +wangdaye.com.geometricweather.R$styleable: int Transform_android_translationZ +james.adaptiveicon.R$dimen: int abc_action_bar_content_inset_with_nav +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean +cyanogenmod.content.Intent: java.lang.String EXTRA_PROTECTED_STATE +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_icon_vertical_padding_material +com.turingtechnologies.materialscrollbar.R$attr: int colorSwitchThumbNormal +androidx.preference.R$dimen: int preference_seekbar_value_minWidth +androidx.lifecycle.extensions.R$integer: R$integer() +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setFitSide(int) +androidx.work.impl.diagnostics.DiagnosticsReceiver +james.adaptiveicon.R$color: int abc_search_url_text +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +io.reactivex.internal.observers.DeferredScalarObserver: void onError(java.lang.Throwable) +android.didikee.donate.R$styleable: int ViewStubCompat_android_layout +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarWidgetTheme +com.google.android.material.R$styleable: int Chip_chipCornerRadius +com.google.android.material.R$styleable: int Transform_android_translationY +cyanogenmod.app.BaseLiveLockManagerService$1 +android.didikee.donate.R$id: int ifRoom +wangdaye.com.geometricweather.db.entities.DaoSession: DaoSession(org.greenrobot.greendao.database.Database,org.greenrobot.greendao.identityscope.IdentityScopeType,java.util.Map) +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerX +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration +androidx.appcompat.app.AppCompatDelegateImpl$PanelFeatureState$SavedState: android.os.Parcelable$Creator CREATOR +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeService sService +com.google.android.material.R$styleable: int TextInputLayout_placeholderTextAppearance +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemDrawable(int) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconEndPadding +androidx.viewpager2.R$id: int accessibility_custom_action_9 +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfile +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event[] $VALUES +androidx.constraintlayout.widget.R$dimen: int notification_top_pad_large_text +cyanogenmod.app.ThemeVersion: ThemeVersion() +androidx.preference.R$style: int ThemeOverlay_AppCompat_DayNight +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: ObservableGroupJoin$LeftRightEndObserver(io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport,boolean,int) +com.turingtechnologies.materialscrollbar.R$attr: int windowNoTitle +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onError(java.lang.Throwable) +androidx.viewpager.R$dimen: int notification_content_margin_start +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State DESTROYED +james.adaptiveicon.R$styleable: int DrawerArrowToggle_arrowShaftLength +androidx.core.R$id: int tag_accessibility_pane_title +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Placeholder +com.google.android.material.R$styleable: int SearchView_voiceIcon +wangdaye.com.geometricweather.db.entities.HistoryEntity +wangdaye.com.geometricweather.R$dimen: int mtrl_card_checked_icon_size +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$styleable: int ConstraintSet_flow_lastVerticalBias +androidx.constraintlayout.widget.R$styleable: int Motion_drawPath +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +com.google.android.material.R$animator: int mtrl_extended_fab_change_size_expand_motion_spec +retrofit2.ParameterHandler$Path +com.jaredrummler.android.colorpicker.R$id: int line3 +io.reactivex.disposables.RunnableDisposable: long serialVersionUID +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldDescription(java.lang.String) +okhttp3.Cache$Entry: okhttp3.Protocol protocol +androidx.recyclerview.widget.RecyclerView: void setRecycledViewPool(androidx.recyclerview.widget.RecyclerView$RecycledViewPool) +com.google.android.material.tabs.TabLayout: int getTabMinWidth() +androidx.preference.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +okhttp3.internal.http2.Hpack$Writer: void adjustDynamicTableByteCount() +com.github.rahatarmanahmed.cpv.R$bool: int cpv_default_is_indeterminate +androidx.dynamicanimation.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationZ +wangdaye.com.geometricweather.R$layout: int design_menu_item_action_area +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial Imperial +cyanogenmod.hardware.CMHardwareManager: int FEATURE_PERSISTENT_STORAGE +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: long serialVersionUID +androidx.drawerlayout.R$layout: int notification_template_part_time +com.jaredrummler.android.colorpicker.R$attr: int buttonBarPositiveButtonStyle +android.didikee.donate.R$drawable: int abc_ic_star_half_black_16dp +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeShareDrawable +cyanogenmod.weather.IRequestInfoListener$Stub: int TRANSACTION_onLookupCityRequestCompleted +com.google.android.material.circularreveal.CircularRevealLinearLayout: CircularRevealLinearLayout(android.content.Context) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Time +androidx.appcompat.widget.SwitchCompat: void setShowText(boolean) +wangdaye.com.geometricweather.R$string: int phase_full +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_wrapMode +androidx.activity.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: boolean isNoDirection() +james.adaptiveicon.R$styleable: int AppCompatTextView_lineHeight +james.adaptiveicon.R$styleable: int[] PopupWindowBackgroundState +com.google.android.material.R$attr: int logo +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float rainPrecipitation +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +androidx.preference.R$styleable: R$styleable() +io.reactivex.internal.disposables.EmptyDisposable +com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentCompatStyle +io.reactivex.internal.subscriptions.EmptySubscription: void clear() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: int status +wangdaye.com.geometricweather.db.entities.LocationEntityDao: LocationEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +android.didikee.donate.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +com.google.android.material.R$attr: int allowStacking +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setWind(double,double,int) +androidx.appcompat.widget.ScrollingTabContainerView: void setAllowCollapse(boolean) +androidx.lifecycle.extensions.R$dimen: int compat_button_padding_vertical_material +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_position +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: io.reactivex.disposables.Disposable upstream +androidx.constraintlayout.widget.R$id: int submit_area +android.didikee.donate.R$id: int custom +com.jaredrummler.android.colorpicker.R$attr: int homeLayout +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_requestThemeChangeUpdates +androidx.coordinatorlayout.R$dimen: int compat_control_corner_material +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_track_color +wangdaye.com.geometricweather.R$styleable: int Chip_chipStartPadding +com.turingtechnologies.materialscrollbar.R$styleable: int[] Chip +wangdaye.com.geometricweather.R$attr: int triggerId +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: int status +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.google.android.material.R$styleable: int Constraint_flow_firstVerticalBias +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_transformation_sheet_expand_spec +okhttp3.ConnectionPool$1 +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: ObservableScalarXMap$ScalarDisposable(io.reactivex.Observer,java.lang.Object) +androidx.preference.R$layout: int preference_widget_checkbox +com.turingtechnologies.materialscrollbar.R$attr: int textColorSearchUrl +wangdaye.com.geometricweather.R$string: int material_clock_display_divider +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Medium +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display4 +androidx.appcompat.R$styleable: int SearchView_queryHint +com.google.android.material.R$styleable: int AppCompatTheme_windowNoTitle +okio.Base64: java.lang.String encodeUrl(byte[]) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: long serialVersionUID +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_layout +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: FlowableObserveOn$BaseObserveOnSubscriber(io.reactivex.Scheduler$Worker,boolean,int) +wangdaye.com.geometricweather.R$id: int container_main_pollen_subtitle +com.jaredrummler.android.colorpicker.R$id: int right +com.google.android.material.R$dimen: int design_fab_image_size +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setLogo(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchAnchorId +androidx.constraintlayout.widget.R$id: int edit_query +androidx.dynamicanimation.R$dimen: int notification_main_column_padding_top +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyTopRight +com.google.gson.FieldNamingPolicy$1: FieldNamingPolicy$1(java.lang.String,int) +james.adaptiveicon.R$styleable: int FontFamilyFont_fontStyle +androidx.appcompat.widget.SearchView: int getSuggestionCommitIconResId() +androidx.preference.R$id: int search_voice_btn +androidx.fragment.R$id: int accessibility_custom_action_14 +androidx.constraintlayout.widget.R$id: int dragLeft +okhttp3.internal.Util: boolean verifyAsIpAddress(java.lang.String) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getRealFeelTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +wangdaye.com.geometricweather.R$attr: int closeIconTint +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_background +com.xw.repo.bubbleseekbar.R$color: int highlighted_text_material_light +okio.HashingSink: okio.HashingSink sha1(okio.Sink) +androidx.hilt.R$id: int accessibility_custom_action_8 +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +android.didikee.donate.R$styleable: int TextAppearance_android_textFontWeight +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_BottomSheetDialog +james.adaptiveicon.R$id: int notification_main_column_container +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_14 +okhttp3.Cache$CacheResponseBody +wangdaye.com.geometricweather.common.basic.models.weather.History: History(java.util.Date,long,int,int) +wangdaye.com.geometricweather.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean cancelled +androidx.constraintlayout.widget.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +androidx.vectordrawable.R$id: int line1 +okio.ByteString: int compareTo(okio.ByteString) +androidx.viewpager.R$id: int line1 +wangdaye.com.geometricweather.R$styleable: int[] KeyAttribute +okio.Pipe$PipeSink: okio.Pipe this$0 +okhttp3.internal.Internal: Internal() +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_tileMode +androidx.appcompat.widget.AppCompatButton: android.graphics.PorterDuff$Mode getSupportCompoundDrawablesTintMode() +androidx.vectordrawable.animated.R$color +androidx.constraintlayout.widget.R$attr: int dragScale +com.google.android.material.R$string: int mtrl_picker_announce_current_selection +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_elevation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String logo +com.google.android.material.R$dimen: int mtrl_calendar_navigation_top_padding +com.xw.repo.bubbleseekbar.R$attr: int controlBackground +androidx.multidex.MultiDexExtractor$ExtractedDex +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setWeather(java.lang.String) +wangdaye.com.geometricweather.remoteviews.config.Hilt_HourlyTrendWidgetConfigActivity: Hilt_HourlyTrendWidgetConfigActivity() +androidx.appcompat.R$dimen: int abc_text_size_display_3_material +com.google.android.material.R$styleable: int TextInputLayout_android_hint +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean currentPosition +androidx.drawerlayout.R$styleable: int GradientColor_android_type +com.google.android.material.chip.Chip: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String getCaiyun() +com.bumptech.glide.R$attr: int font +androidx.coordinatorlayout.R$id: int accessibility_custom_action_29 +androidx.constraintlayout.widget.R$dimen: int notification_media_narrow_margin +androidx.coordinatorlayout.R$id: int accessibility_custom_action_12 +com.google.android.material.R$style: int Base_Widget_AppCompat_Spinner_Underlined +okhttp3.internal.Util: boolean containsInvalidHostnameAsciiCodes(java.lang.String) +wangdaye.com.geometricweather.R$id: int scrollBar +wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchAnchorId +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int INSTALLING +androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context) +okio.RealBufferedSource: java.lang.String readString(long,java.nio.charset.Charset) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_SearchView +androidx.coordinatorlayout.R$id: int accessibility_custom_action_21 +com.turingtechnologies.materialscrollbar.R$attr: int titleMarginEnd +androidx.constraintlayout.widget.ConstraintLayout: int getMinWidth() +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource MF +cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder access$200(cyanogenmod.externalviews.KeyguardExternalView) +androidx.vectordrawable.animated.R$id: int text +com.google.android.material.R$color: int switch_thumb_material_dark +androidx.preference.R$id: int split_action_bar +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderFetchTimeout +okhttp3.internal.http2.Header: okio.ByteString value +androidx.legacy.coreutils.R$id: int line3 +com.google.android.material.button.MaterialButtonToggleGroup: int getCheckedButtonId() +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginTop +cyanogenmod.themes.ThemeChangeRequest$1: ThemeChangeRequest$1() +com.google.android.material.R$styleable: int KeyCycle_motionProgress +james.adaptiveicon.R$styleable: int[] PopupWindow +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstVerticalStyle +com.google.android.material.progressindicator.ProgressIndicator: void setVisibilityAfterHide(int) +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getStatusBarThemePackageName() +androidx.coordinatorlayout.R$string +com.google.android.material.R$layout: int mtrl_alert_dialog_actions +wangdaye.com.geometricweather.R$styleable: int[] ThemeEnforcement +androidx.constraintlayout.widget.R$attr: int autoSizeMaxTextSize +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModePasteDrawable +androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.resources.R$styleable: int GradientColor_android_gradientRadius +androidx.core.R$id: int accessibility_custom_action_27 +com.google.android.material.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_thumb_elevation +okhttp3.Handshake: java.security.Principal localPrincipal() +okhttp3.internal.ws.WebSocketProtocol: long PAYLOAD_BYTE_MAX +androidx.constraintlayout.widget.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +androidx.lifecycle.extensions.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String CountryCode +androidx.customview.R$drawable: int notification_template_icon_low_bg +io.reactivex.Observable: io.reactivex.Observable join(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display4 +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onNext(java.lang.Object) +com.google.android.material.R$attr: int errorIconTintMode +james.adaptiveicon.R$id: int titleDividerNoCustom +okhttp3.internal.connection.RealConnection: void startHttp2(int) +androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +retrofit2.ParameterHandler$Headers: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.turingtechnologies.materialscrollbar.R$attr: int cornerRadius +android.didikee.donate.R$dimen: int notification_right_icon_size +androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date time +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +com.google.android.material.R$attr: int pathMotionArc +wangdaye.com.geometricweather.R$style: int Preference +com.jaredrummler.android.colorpicker.R$string: int abc_action_mode_done +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.Observer downstream +com.google.android.material.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +cyanogenmod.providers.CMSettings$Secure: java.lang.String DISPLAY_GAMMA_CALIBRATION_PREFIX +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceTimedObserver parent +androidx.activity.R$drawable: int notification_template_icon_low_bg +okhttp3.internal.ws.RealWebSocket$Message: int formatOpcode +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dividerVertical +com.xw.repo.bubbleseekbar.R$styleable: int[] MenuGroup +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +james.adaptiveicon.R$attr: int tintMode +okio.Okio: okio.Source source(java.io.InputStream) +androidx.work.R$id: int notification_main_column +androidx.hilt.work.R$layout: int custom_dialog +androidx.appcompat.R$drawable: int tooltip_frame_dark +androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.Fragment,androidx.lifecycle.ViewModelProvider$Factory) +wangdaye.com.geometricweather.R$string: int nighttime +com.google.android.material.R$styleable: int AppCompatTextView_autoSizeStepGranularity +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +okhttp3.internal.Util: java.lang.String[] concat(java.lang.String[],java.lang.String) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Title +com.google.android.material.R$drawable: int ic_mtrl_chip_close_circle +androidx.constraintlayout.widget.R$attr: int subtitleTextAppearance +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay +androidx.dynamicanimation.R$styleable: int GradientColor_android_endX +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onStart() +android.support.v4.os.ResultReceiver$MyRunnable: ResultReceiver$MyRunnable(android.support.v4.os.ResultReceiver,int,android.os.Bundle) +android.support.v4.os.IResultReceiver$Default +androidx.appcompat.resources.R$id: int blocking +androidx.vectordrawable.R$dimen: int compat_notification_large_icon_max_width +com.turingtechnologies.materialscrollbar.R$color: int cardview_shadow_end_color +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeBackground +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode AUTOMATIC +com.google.android.material.R$styleable: int Chip_closeIconStartPadding androidx.appcompat.R$styleable: int ActionBar_contentInsetStart -okhttp3.internal.http2.Http2Connection$7: okhttp3.internal.http2.ErrorCode val$errorCode -com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_material_light -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_subtitle -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIFI -wangdaye.com.geometricweather.db.entities.DailyEntity: void setCityId(java.lang.String) -io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean tryCancel() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date publishDate -cyanogenmod.platform.Manifest$permission: java.lang.String PERFORMANCE_ACCESS -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: double Value -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List advices -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_hideMotionSpec -com.google.android.material.R$string: int abc_menu_delete_shortcut_label -wangdaye.com.geometricweather.R$attr: int cpv_color -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: ObservableSkipLastTimed$SkipLastTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,boolean) -com.google.android.material.R$attr: int collapseContentDescription -com.google.android.material.R$attr: int enforceTextAppearance -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX -android.didikee.donate.R$dimen: int notification_action_text_size -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_switch_compat -androidx.lifecycle.SavedStateHandle$1: android.os.Bundle saveState() -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onError(java.lang.Throwable) -androidx.preference.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -com.google.android.material.R$styleable: int ConstraintSet_android_rotationY -james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Dialog -com.google.android.material.button.MaterialButtonToggleGroup -com.google.android.material.R$id: int normal -androidx.constraintlayout.widget.R$styleable: int ActionMode_background -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath -com.google.android.material.R$color: int material_deep_teal_200 -androidx.preference.R$color: int material_blue_grey_800 -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String opPkg -com.github.rahatarmanahmed.cpv.CircularProgressView: boolean autostartAnimation -android.didikee.donate.R$dimen: int notification_content_margin_start -androidx.preference.R$attr: int title -james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar -james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar_Small -com.google.android.material.slider.RangeSlider: void setEnabled(boolean) -cyanogenmod.profiles.AirplaneModeSettings: int describeContents() -com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_inset_vertical_material -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSteps -okhttp3.Headers: java.lang.String toString() -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node tail -wangdaye.com.geometricweather.R$anim: int popup_show_bottom_right -androidx.viewpager2.R$dimen: int fastscroll_default_thickness -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindDegree -retrofit2.Invocation: java.util.List arguments -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_MIGRATE_SETTINGS -james.adaptiveicon.R$styleable: int AppCompatTheme_tooltipForegroundColor -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTotalPrecipitationProbability(java.lang.Float) -android.didikee.donate.R$attr: int gapBetweenBars -wangdaye.com.geometricweather.R$attr: int iconSize -com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.R$styleable: int MockView_mock_diagonalsColor -androidx.appcompat.R$drawable: int abc_btn_colored_material -androidx.appcompat.R$drawable: int notification_bg -james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.db.entities.AlertEntity: long getAlertId() -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorAnimationDuration -james.adaptiveicon.R$attr: int actionButtonStyle -com.bumptech.glide.integration.okhttp3.OkHttpGlideModule -com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.concurrent.atomic.AtomicReference upstream -com.google.android.material.R$drawable: int abc_switch_thumb_material -com.turingtechnologies.materialscrollbar.R$style: int Base_V23_Theme_AppCompat -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_SECURE -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.db.entities.WeatherEntityDao myDao -com.turingtechnologies.materialscrollbar.R$string: int abc_shareactionprovider_share_with -cyanogenmod.weather.RequestInfo: int TYPE_WEATHER_BY_GEO_LOCATION_REQ -androidx.preference.R$color: int abc_tint_spinner -wangdaye.com.geometricweather.R$id: int cos -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginTop -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_textAllCaps -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getThunderstorm() -cyanogenmod.providers.CMSettings$2 -com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_colored -com.jaredrummler.android.colorpicker.R$color: int button_material_dark -androidx.loader.R$drawable: int notification_template_icon_bg -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_voice_search_api_material -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean delayErrors -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: CaiYunMainlyResult$CurrentBean$VisibilityBean() -androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitationProbability +wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_tint +androidx.recyclerview.R$id: int accessibility_custom_action_25 +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Time +cyanogenmod.app.Profile: cyanogenmod.profiles.RingModeSettings mRingMode +androidx.appcompat.widget.LinearLayoutCompat: void setGravity(int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_88 +androidx.activity.R$id: int chronometer +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_handleOffColor +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonRiseDate(java.util.Date) +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetEndWithActions +com.google.android.material.R$attr: int snackbarTextViewStyle +okhttp3.internal.http.RetryAndFollowUpInterceptor +wangdaye.com.geometricweather.R$styleable: int[] MaterialRadioButton +com.google.android.material.R$styleable: int Toolbar_contentInsetLeft +com.google.android.material.R$styleable: int Constraint_layout_constraintEnd_toStartOf +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.preference.R$styleable: int AppCompatSeekBar_tickMark +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_width_minor +androidx.constraintlayout.widget.R$styleable: int PopupWindowBackgroundState_state_above_anchor +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_visible +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_second_track_size +com.google.android.material.R$attr: int windowFixedHeightMinor +com.google.android.material.R$attr: int chipSpacingVertical +androidx.core.R$layout: R$layout() +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_anchor +com.google.android.material.R$dimen: int mtrl_calendar_action_padding +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle DAILY +wangdaye.com.geometricweather.R$attr: int preferenceFragmentStyle +wangdaye.com.geometricweather.db.entities.LocationEntity: java.util.TimeZone getTimeZone() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX() +androidx.preference.R$id: int action_bar_activity_content +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String DATE_CREATED +okhttp3.HttpUrl: void namesAndValuesToQueryString(java.lang.StringBuilder,java.util.List) +com.google.android.material.R$attr: int percentY +androidx.fragment.R$anim: int fragment_open_exit +androidx.preference.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +com.google.android.material.R$styleable: int TextAppearance_textLocale +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$attr: int flow_lastVerticalBias +com.google.android.material.progressindicator.ProgressIndicator: int getTrackColor() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver +androidx.viewpager2.R$attr: int alpha +androidx.constraintlayout.widget.VirtualLayout: void setElevation(float) +com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_Tooltip +org.greenrobot.greendao.AbstractDao: void updateInTx(java.lang.Object[]) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property CityId +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance +okio.Okio$1: okio.Timeout timeout() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HEADSET_CONNECT_PLAYER_VALIDATOR +com.jaredrummler.android.colorpicker.R$color: int dim_foreground_disabled_material_dark +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TimeStamp +okhttp3.internal.http2.Http2Stream$FramingSink: void write(okio.Buffer,long) +wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_max +james.adaptiveicon.R$attr: int textAppearanceSmallPopupMenu +androidx.hilt.R$drawable: int notification_template_icon_bg +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_titleCondensed +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: long time +androidx.appcompat.widget.AppCompatButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$anim: int mtrl_card_lowers_interpolator +androidx.recyclerview.R$attr: int alpha +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_TextView +com.google.android.material.R$attr: int maxAcceleration +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onAttach(android.os.IBinder) +wangdaye.com.geometricweather.R$string: int key_notification_text_color +androidx.appcompat.widget.AppCompatSpinner: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +james.adaptiveicon.R$style: int Platform_V21_AppCompat_Light +wangdaye.com.geometricweather.R$attr: int panelMenuListWidth +com.google.android.material.tabs.TabLayout: android.graphics.drawable.Drawable getTabSelectedIndicator() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.R$styleable: int[] MotionTelltales +androidx.appcompat.widget.Toolbar +cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri mThumbnailUri +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: io.reactivex.internal.operators.observable.ObservableRefCount parent +androidx.viewpager2.R$dimen: int compat_control_corner_material +com.turingtechnologies.materialscrollbar.R$attr: int actionBarDivider +wangdaye.com.geometricweather.R$styleable: int AlertDialog_android_layout +okhttp3.internal.tls.OkHostnameVerifier: okhttp3.internal.tls.OkHostnameVerifier INSTANCE +cyanogenmod.app.CustomTile$ExpandedStyle: void internalSetExpandedItems(java.util.ArrayList) +com.xw.repo.bubbleseekbar.R$attr: int alpha +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTint +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.internal.connection.StreamAllocation streamAllocation() +okio.Buffer: int REPLACEMENT_CHARACTER +androidx.fragment.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$style: int Platform_AppCompat +androidx.constraintlayout.widget.R$styleable: int AlertDialog_singleChoiceItemLayout +io.reactivex.Observable: io.reactivex.Observable repeatWhen(io.reactivex.functions.Function) +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Province +james.adaptiveicon.R$color: int material_deep_teal_200 +androidx.constraintlayout.widget.R$dimen: int abc_text_size_subhead_material +okhttp3.internal.io.FileSystem$1: void rename(java.io.File,java.io.File) +androidx.constraintlayout.widget.R$attr: int contentInsetStart +androidx.preference.R$attr: int elevation +wangdaye.com.geometricweather.R$id: int widget_clock_day_aqiHumidity +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: int getChartBottom() +androidx.hilt.lifecycle.R$styleable: int Fragment_android_id +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_setDefaultLiveLockScreen +androidx.cardview.R$styleable: R$styleable() +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_collapsible +cyanogenmod.app.CMTelephonyManager: boolean isSubActive(int) +androidx.fragment.R$styleable: int FontFamilyFont_fontVariationSettings +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_displayOptions +androidx.constraintlayout.widget.R$attr: int mock_diagonalsColor +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_elevation +androidx.appcompat.R$style: int Widget_AppCompat_Spinner +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_visible +androidx.preference.R$styleable: int Preference_persistent +cyanogenmod.themes.ThemeManager: void addClient(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTime(long) +androidx.appcompat.R$anim +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Small +wangdaye.com.geometricweather.R$drawable: int notif_temp_11 +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_writePersistentBytes +androidx.constraintlayout.widget.R$id: int asConfigured +wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_activated_mtrl_alpha +androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogTheme +okhttp3.Callback: void onResponse(okhttp3.Call,okhttp3.Response) +androidx.preference.R$dimen: int disabled_alpha_material_dark +com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_min +com.github.rahatarmanahmed.cpv.CircularProgressView: void stopAnimation() +cyanogenmod.weather.WeatherInfo$DayForecast$1 +wangdaye.com.geometricweather.R$drawable: int ic_cloud +okhttp3.RealCall$AsyncCall: okhttp3.RealCall this$0 +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollVerticalThumbDrawable +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableStart +cyanogenmod.hardware.ThermalListenerCallback$State +com.bumptech.glide.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.R$dimen: int design_fab_elevation +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_2 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: CNWeatherResult$Life$Info() +wangdaye.com.geometricweather.R$drawable: int material_ic_menu_arrow_up_black_24dp +okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallback +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode RAIN +androidx.lifecycle.extensions.R$id: int fragment_container_view_tag +okhttp3.internal.http2.Hpack$Reader: boolean isStaticHeader(int) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display1 +com.google.android.material.R$id: int shortcut +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver +androidx.preference.R$dimen: int abc_dropdownitem_text_padding_left +wangdaye.com.geometricweather.R$string: int abc_prepend_shortcut_label +androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_small_material +wangdaye.com.geometricweather.R$attr: int textAppearanceSearchResultTitle +wangdaye.com.geometricweather.R$styleable: int[] LiveLockScreen +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.R$styleable: int[] Variant +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_disabled_material_dark +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar +cyanogenmod.weather.CMWeatherManager$2: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) +androidx.appcompat.app.AlertController$RecycleListView +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitationDuration +com.google.android.material.R$styleable: int CustomAttribute_customColorValue +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerComplete() +com.xw.repo.bubbleseekbar.R$styleable: int View_android_theme +com.google.android.material.R$color: int abc_search_url_text_selected android.didikee.donate.R$style: int Base_V22_Theme_AppCompat_Light -okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withWriteTimeout(int,java.util.concurrent.TimeUnit) -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Line2 -android.didikee.donate.R$id: int progress_circular -com.google.android.material.R$styleable: int[] AnimatedStateListDrawableTransition -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent UNKNOWN -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf -androidx.preference.R$styleable: int Preference_android_key -okhttp3.OkHttpClient: okhttp3.CookieJar cookieJar -com.turingtechnologies.materialscrollbar.R$id: int src_in -wangdaye.com.geometricweather.R$xml: int widget_multi_city -cyanogenmod.profiles.RingModeSettings -com.google.android.material.R$drawable: int notification_bg_low_normal -androidx.hilt.R$attr: int fontVariationSettings -androidx.vectordrawable.R$id: int accessibility_custom_action_1 -okhttp3.TlsVersion: okhttp3.TlsVersion SSL_3_0 -wangdaye.com.geometricweather.common.ui.widgets.TagView: void setUncheckedBackgroundColor(int) -okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] publicSuffixExceptionListBytes -androidx.appcompat.R$style: int Widget_AppCompat_ActionButton_Overflow -androidx.viewpager2.widget.ViewPager2: void setCurrentItem(int) -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemTextAppearance -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light -androidx.work.R$id: int accessibility_custom_action_30 -androidx.fragment.R$dimen: int notification_media_narrow_margin -com.google.android.material.R$color: int dim_foreground_material_light -androidx.legacy.coreutils.R$styleable: int GradientColor_android_tileMode -androidx.hilt.lifecycle.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: boolean daylight -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton -okhttp3.Request$Builder: okhttp3.Request$Builder cacheControl(okhttp3.CacheControl) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String postCode +com.jaredrummler.android.colorpicker.R$attr: int goIcon +com.google.android.material.R$id: int title +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endX +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_alpha +wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_light +androidx.hilt.work.R$id: int tag_unhandled_key_event_manager +com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +com.bumptech.glide.R$id: int chronometer +com.google.android.material.R$styleable: int AppCompatTheme_spinnerStyle +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_caption_material +com.google.android.material.R$color: int material_slider_inactive_tick_marks_color +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_end +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +okhttp3.internal.ws.WebSocketWriter$FrameSink: boolean isFirstFrame +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderFetchStrategy +james.adaptiveicon.R$attr: int thumbTint +wangdaye.com.geometricweather.R$attr: int layout_behavior +androidx.vectordrawable.R$drawable: int notification_template_icon_low_bg +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarStyle +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_y_offset_non_touch +androidx.activity.R$id: int notification_main_column +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getBoxStrokeErrorColor() +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart +okhttp3.internal.cache2.FileOperator: void read(long,okio.Buffer,long) +androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context) +cyanogenmod.providers.CMSettings$Secure: boolean putLong(android.content.ContentResolver,java.lang.String,long) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_32 +com.google.android.material.internal.VisibilityAwareImageButton: void setVisibility(int) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_activated_mtrl_alpha +com.google.android.material.R$styleable: int ConstraintSet_flow_lastHorizontalStyle +wangdaye.com.geometricweather.R$style: int Theme_AppCompat +androidx.appcompat.widget.AppCompatButton: void setBackgroundResource(int) +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +com.google.android.material.R$attr: int textAppearanceHeadline4 +com.xw.repo.bubbleseekbar.R$id: int multiply +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_light +com.google.android.material.R$color: int mtrl_btn_text_color_selector +com.google.android.material.R$attr: int layout_goneMarginBottom +com.google.android.material.R$styleable: int TextInputLayout_counterTextColor +retrofit2.BuiltInConverters: boolean checkForKotlinUnit +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: int UnitType +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float no2 +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_WAKE_SCREEN +com.turingtechnologies.materialscrollbar.R$attr: int windowMinWidthMinor +android.support.v4.graphics.drawable.IconCompatParcelizer: IconCompatParcelizer() +androidx.appcompat.R$attr: int actionBarStyle +com.google.android.material.R$drawable: int notification_bg_normal_pressed +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.util.AtomicThrowable errors +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void addLast(io.reactivex.internal.operators.observable.ObservableReplay$Node) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: int getStatus() +wangdaye.com.geometricweather.R$styleable: int Toolbar_title +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: PrecipitationProbability(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_min +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterEnabled +com.google.android.material.R$id: int clear_text +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_title_text +androidx.fragment.R$layout: int notification_template_custom_big +androidx.core.R$id: int accessibility_custom_action_20 +com.google.android.material.R$style: int Widget_AppCompat_SearchView +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable +cyanogenmod.profiles.StreamSettings: int getStreamId() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Pm10 +androidx.recyclerview.R$id: int accessibility_custom_action_31 +androidx.fragment.R$dimen: int notification_large_icon_width +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$styleable: int[] MaterialCalendar +wangdaye.com.geometricweather.R$attr: int chipIconTint +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: double Value +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.hilt.work.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: java.lang.String Unit +com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.ICMTelephonyManager sService +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: void requestLocation(android.content.Context,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) +com.github.rahatarmanahmed.cpv.R$color +okhttp3.internal.cache.CacheInterceptor$1: okio.BufferedSource val$source +retrofit2.Utils$ParameterizedTypeImpl: java.lang.String toString() +androidx.constraintlayout.widget.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.constraintlayout.widget.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +com.jaredrummler.android.colorpicker.R$color: int button_material_light +com.google.android.material.R$styleable: int CoordinatorLayout_keylines +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_barLength +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_ContextMenu +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver) +james.adaptiveicon.R$style: int Animation_AppCompat_DropDownUp +io.reactivex.internal.subscriptions.EmptySubscription: void error(java.lang.Throwable,org.reactivestreams.Subscriber) +wangdaye.com.geometricweather.R$layout: int container_main_footer +androidx.appcompat.resources.R$id: int accessibility_custom_action_2 +androidx.constraintlayout.widget.R$attr: int listItemLayout +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: int sourceMode +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarStyle +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: AccuAlertResult$Description() +androidx.constraintlayout.widget.R$attr: int triggerReceiver +com.jaredrummler.android.colorpicker.R$id: int add +com.google.android.material.R$styleable: int[] RangeSlider +androidx.customview.R$attr: int fontProviderFetchStrategy +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean isDisposed() wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_3 -androidx.lifecycle.LiveData$AlwaysActiveObserver: LiveData$AlwaysActiveObserver(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_disabled_material_dark -androidx.preference.R$dimen: int abc_text_size_headline_material -androidx.appcompat.R$styleable: int ActionBar_backgroundSplit -okio.ForwardingSink: void write(okio.Buffer,long) -okhttp3.internal.ws.RealWebSocket: void onReadClose(int,java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int windowFixedWidthMinor -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation mWeatherLocation -com.jaredrummler.android.colorpicker.R$attr: int cpv_showAlphaSlider -com.google.android.material.R$dimen: int design_bottom_navigation_shadow_height -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void startFirstTimeout(io.reactivex.ObservableSource) -androidx.preference.R$id: int action_mode_bar_stub -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionMenuTextAppearance -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int NO_REQUEST_HAS_VALUE -com.xw.repo.bubbleseekbar.R$attr: int paddingTopNoTitle -wangdaye.com.geometricweather.common.basic.models.weather.Weather -androidx.constraintlayout.widget.VirtualLayout: void setElevation(float) -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setFitSide(int) -androidx.activity.R$dimen: int notification_media_narrow_margin -androidx.preference.R$styleable: int SwitchPreference_disableDependentsState -com.google.android.material.R$styleable: int[] MaterialButton -android.didikee.donate.R$style: int TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.R$id: int grassValue -androidx.preference.R$layout: int abc_popup_menu_item_layout -okio.Source: long read(okio.Buffer,long) -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1 -wangdaye.com.geometricweather.R$attr: int divider -androidx.hilt.work.R$id: int accessibility_custom_action_12 -com.google.android.material.R$attr: int deltaPolarAngle -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: ObservableTakeLastTimed$TakeLastTimedObserver(io.reactivex.Observer,long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,boolean) -androidx.work.NetworkType: androidx.work.NetworkType METERED -androidx.appcompat.widget.Toolbar: void setTitle(int) -android.didikee.donate.R$styleable: int AlertDialog_android_layout -com.xw.repo.bubbleseekbar.R$attr: int actionOverflowButtonStyle -androidx.appcompat.widget.LinearLayoutCompat: int getBaseline() -com.google.android.material.R$string: int mtrl_picker_text_input_day_abbr -wangdaye.com.geometricweather.R$dimen: int cpv_default_thickness -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutSelectorSupport parent -io.reactivex.internal.observers.DeferredScalarObserver: void onNext(java.lang.Object) -retrofit2.ParameterHandler$Query: java.lang.String name -com.google.android.material.R$attr: int chipIconTint -androidx.preference.R$style: int Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather -android.didikee.donate.R$drawable: int abc_list_selector_disabled_holo_light -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: long serialVersionUID -androidx.preference.R$attr: int seekBarStyle -okhttp3.Cache$2: void remove() -cyanogenmod.app.StatusBarPanelCustomTile: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX aqi -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Daylight -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontWeight -android.didikee.donate.R$drawable: int abc_action_bar_item_background_material -android.support.v4.os.ResultReceiver$MyRunnable: android.os.Bundle mResultData -androidx.preference.R$layout: int abc_search_view -org.greenrobot.greendao.AbstractDao: java.lang.Object readEntity(android.database.Cursor,int) -androidx.appcompat.R$styleable: int SearchView_defaultQueryHint -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListMenuView -androidx.appcompat.R$drawable: int notification_icon_background -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEVELOPMENT_SHORTCUT -com.xw.repo.bubbleseekbar.R$id: int search_plate -wangdaye.com.geometricweather.R$attr: int customPixelDimension -io.reactivex.Observable: io.reactivex.Observable startWith(java.lang.Iterable) -androidx.preference.R$attr: int actionProviderClass -androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_text_padding_right -wangdaye.com.geometricweather.R$styleable: int ActionMode_backgroundSplit -com.google.android.material.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_base -androidx.constraintlayout.widget.R$styleable: int[] SearchView -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setLogo(java.lang.String) -cyanogenmod.themes.ThemeManager: int getProgress() -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -com.jaredrummler.android.colorpicker.R$attr: int trackTint -wangdaye.com.geometricweather.R$styleable: int Slider_thumbElevation -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startColor -okio.ByteString: okio.ByteString substring(int,int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarWidgetTheme -com.google.android.material.bottomnavigation.BottomNavigationItemView: com.google.android.material.badge.BadgeDrawable getBadge() -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Time -com.xw.repo.bubbleseekbar.R$color: int tooltip_background_light -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindLevel(java.lang.String) -com.google.android.material.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean hasNext() -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String HOUR -cyanogenmod.externalviews.KeyguardExternalView$11: float val$swipeProgress -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_percent -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver -com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_titleTextStyle -com.google.android.material.R$styleable: int TabLayout_tabBackground -androidx.preference.R$drawable: int notification_bg_normal_pressed -com.google.android.material.textfield.TextInputLayout: void setEndIconCheckable(boolean) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Small -com.google.android.material.R$attr: int colorOnPrimarySurface -cyanogenmod.app.StatusBarPanelCustomTile$1: cyanogenmod.app.StatusBarPanelCustomTile createFromParcel(android.os.Parcel) -okhttp3.internal.http2.Http2Connection: void access$000(okhttp3.internal.http2.Http2Connection) -cyanogenmod.weather.WeatherLocation: java.lang.String mCityId -james.adaptiveicon.R$drawable: int abc_ratingbar_material -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_padding_horizontal -cyanogenmod.profiles.ConnectionSettings: boolean isDirty() -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: long serialVersionUID -wangdaye.com.geometricweather.R$id: int item_weather_daily_overview_icon -com.turingtechnologies.materialscrollbar.R$attr: int windowNoTitle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_59 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitationProbability() -androidx.constraintlayout.widget.Placeholder: int getEmptyVisibility() -io.reactivex.internal.observers.DeferredScalarDisposable: java.lang.Object value -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: int capacityHint -retrofit2.BuiltInConverters$StreamingResponseBodyConverter: okhttp3.ResponseBody convert(okhttp3.ResponseBody) -wangdaye.com.geometricweather.R$attr: int chipIconSize -wangdaye.com.geometricweather.R$styleable: int MaterialAutoCompleteTextView_android_inputType -com.xw.repo.bubbleseekbar.R$attr: int thumbTextPadding -com.google.android.material.R$styleable: int PropertySet_layout_constraintTag -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: IAppSuggestProvider$Stub() -androidx.constraintlayout.widget.R$styleable: int MockView_mock_labelBackgroundColor -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -android.didikee.donate.R$style: int TextAppearance_AppCompat_Caption -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalGap -cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String mPackage -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context,android.util.AttributeSet) -com.google.android.material.textfield.TextInputLayout: void setCounterOverflowTextAppearance(int) -okhttp3.internal.http2.Http2Connection$3: okhttp3.internal.http2.Http2Connection this$0 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Co -com.google.android.material.R$styleable: int TextInputLayout_errorTextAppearance -james.adaptiveicon.R$style: int Widget_AppCompat_DrawerArrowToggle -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_wavePeriod -cyanogenmod.providers.CMSettings$System: java.util.Map VALIDATORS -androidx.preference.R$color: int error_color_material_light -com.bumptech.glide.load.engine.CallbackException: CallbackException(java.lang.Throwable) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_14 -com.google.android.material.navigation.NavigationView: void setItemBackgroundResource(int) -com.google.android.material.R$styleable: int SnackbarLayout_android_maxWidth -com.google.android.material.R$attr: int elevationOverlayColor -io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Void call() -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_tooltipText -wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentY -okhttp3.internal.http2.Http2Connection$1: okhttp3.internal.http2.Http2Connection this$0 -com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityStarted(android.app.Activity) -com.google.android.material.R$styleable: int MenuItem_iconTintMode -com.turingtechnologies.materialscrollbar.R$color: int primary_dark_material_dark -wangdaye.com.geometricweather.db.entities.DailyEntity: void setAqiText(java.lang.String) -wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_multichoice -com.google.android.material.R$styleable: int KeyAttribute_android_alpha -androidx.appcompat.resources.R$integer -okhttp3.MediaType: java.lang.String type -okhttp3.Callback -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_bias -okhttp3.internal.platform.AndroidPlatform: java.lang.Object getStackTraceForCloseable(java.lang.String) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: void setAlpha(float) -wangdaye.com.geometricweather.R$styleable: int Layout_minWidth -okhttp3.Headers -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_CLOCK_VALIDATOR -androidx.preference.R$integer: int status_bar_notification_info_maxnum -android.didikee.donate.R$styleable: int[] AppCompatTheme -androidx.activity.R$styleable: int[] GradientColorItem -okio.RealBufferedSink: okio.BufferedSink writeHexadecimalUnsignedLong(long) -com.turingtechnologies.materialscrollbar.R$dimen: int notification_right_side_padding_top -com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$color: int colorTextTitle_dark -io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function,boolean,int) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String url +james.adaptiveicon.R$attr: int closeIcon +com.xw.repo.bubbleseekbar.R$attr: int switchTextAppearance +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableRight +okhttp3.internal.http2.Settings: int set +cyanogenmod.app.CustomTile$ExpandedStyle$1: cyanogenmod.app.CustomTile$ExpandedStyle createFromParcel(android.os.Parcel) +okhttp3.internal.http.RealResponseBody: long contentLength() +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy +com.google.android.material.R$styleable: int CustomAttribute_customBoolean +cyanogenmod.externalviews.IExternalViewProviderFactory: android.os.IBinder createExternalView(android.os.Bundle) +okhttp3.internal.Util: java.nio.charset.Charset UTF_32_LE +androidx.vectordrawable.R$attr: int fontProviderFetchTimeout +androidx.viewpager2.R$layout: int notification_template_custom_big +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onComplete() +james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +com.google.android.material.R$attr: int touchAnchorSide +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String headIconType +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_picker_background_inset +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: AccuDailyResult$DailyForecasts$Day$LocalSource() +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_CardView +okhttp3.EventListener: EventListener() +wangdaye.com.geometricweather.R$dimen: int normal_margin +androidx.transition.R$id: int parent_matrix +james.adaptiveicon.R$drawable: int abc_ratingbar_indicator_material +com.xw.repo.bubbleseekbar.R$id: int line3 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_controlBackground +wangdaye.com.geometricweather.R$styleable: int SearchView_commitIcon +cyanogenmod.power.IPerformanceManager$Stub$Proxy: int getNumberOfProfiles() +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeBackground +com.turingtechnologies.materialscrollbar.R$drawable: int notification_icon_background +okio.GzipSink: GzipSink(okio.Sink) +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu +androidx.cardview.R$attr: int contentPaddingTop +wangdaye.com.geometricweather.R$string: int mtrl_picker_a11y_prev_month +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.String toString() +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type UV_INDEX +com.google.android.material.R$styleable: int Transition_constraintSetStart +cyanogenmod.externalviews.IExternalViewProvider$Stub: java.lang.String DESCRIPTOR +androidx.vectordrawable.animated.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.common.basic.models.weather.History: long time +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView_Menu +android.didikee.donate.R$styleable: int[] SearchView +okio.Buffer: void flush() +androidx.coordinatorlayout.R$style +androidx.constraintlayout.widget.R$attr: int layout_editor_absoluteX +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_left_mtrl_light +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: java.lang.String getWindArrow() +android.didikee.donate.R$styleable: int[] ListPopupWindow +com.google.android.material.R$style: int Theme_MaterialComponents_Light_NoActionBar +okio.AsyncTimeout$1: void write(okio.Buffer,long) +com.google.android.material.R$styleable: int NavigationView_itemIconSize +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onError(java.lang.Throwable) +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endX +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView_Menu +wangdaye.com.geometricweather.R$drawable: int abc_ic_voice_search_api_material +androidx.recyclerview.R$attr: int fontProviderCerts +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy APPEND_OR_REPLACE +wangdaye.com.geometricweather.R$drawable: int ic_aqi +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(java.lang.Iterable,io.reactivex.functions.Function,int) +androidx.appcompat.R$styleable: int MenuItem_actionLayout +wangdaye.com.geometricweather.R$attr: int materialCalendarDay +com.google.android.material.slider.RangeSlider: void setTickVisible(boolean) +cyanogenmod.power.PerformanceManager: int PROFILE_POWER_SAVE +androidx.work.NetworkType: androidx.work.NetworkType CONNECTED +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void cancel() +com.google.android.material.R$id: int text_input_start_icon +okio.Buffer: okio.Buffer$UnsafeCursor readUnsafe() +james.adaptiveicon.R$color: int material_blue_grey_900 +okhttp3.internal.http2.Http2Reader: void readPushPromise(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial +androidx.constraintlayout.widget.R$styleable: int ActionBar_backgroundSplit +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getCity() +com.google.android.material.R$styleable: int[] SnackbarLayout +wangdaye.com.geometricweather.R$dimen: int material_clock_hand_padding +wangdaye.com.geometricweather.R$attr: int thumbStrokeWidth +james.adaptiveicon.R$attr: int hideOnContentScroll +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_2_material +okhttp3.internal.platform.Jdk9Platform +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getWindDegree() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String coDesc +androidx.lifecycle.ViewModelStores: androidx.lifecycle.ViewModelStore of(androidx.fragment.app.Fragment) +androidx.work.R$drawable: int notification_action_background +cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem(cyanogenmod.app.CustomTile$1) +cyanogenmod.externalviews.KeyguardExternalView$10: KeyguardExternalView$10(cyanogenmod.externalviews.KeyguardExternalView) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: void setValue(java.util.List) +com.google.android.material.slider.RangeSlider: void setValues(java.util.List) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +okhttp3.internal.connection.StreamAllocation: java.net.Socket releaseIfNoNewStreams() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: java.lang.Float min +okio.Buffer: java.lang.String readUtf8Line() +com.xw.repo.bubbleseekbar.R$attr: int actionDropDownStyle +com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_action_area_stub +wangdaye.com.geometricweather.R$attr: int searchHintIcon +androidx.appcompat.R$attr: int selectableItemBackground +com.google.android.material.internal.CheckableImageButton: void setChecked(boolean) +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_logoDescription +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetStart +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityCreated(android.app.Activity,android.os.Bundle) +com.google.android.material.R$id: int accessibility_custom_action_9 +com.turingtechnologies.materialscrollbar.R$attr: int tabSelectedTextColor +androidx.legacy.coreutils.R$styleable: R$styleable() +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String grassDescription +com.google.android.material.R$attr: int layout_constraintLeft_creator +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SeekBar +androidx.recyclerview.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String weatherPhase +com.google.android.material.R$attr: int actionModeSplitBackground +androidx.swiperefreshlayout.R$dimen: int notification_action_text_size +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_scaleY +androidx.preference.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.R$id: int showCustom +cyanogenmod.weather.IRequestInfoListener$Stub: android.os.IBinder asBinder() +com.google.android.material.R$styleable: int ActionBar_contentInsetEnd androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -cyanogenmod.app.Profile: void setName(java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getCeiling() -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginRight -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startY -okhttp3.internal.ws.WebSocketWriter: void writeMessageFrame(int,long,boolean,boolean) -androidx.transition.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setCityId(java.lang.String) -com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_material_light -cyanogenmod.externalviews.ExternalViewProviderService$Provider: int getWindowType() -androidx.appcompat.widget.SearchView: void setImeOptions(int) -okhttp3.internal.cache.DiskLruCache: void checkNotClosed() -james.adaptiveicon.R$color: int background_material_light -cyanogenmod.externalviews.IKeyguardExternalViewProvider -wangdaye.com.geometricweather.R$dimen: int abc_progress_bar_height_material -androidx.appcompat.R$style: int Widget_AppCompat_ActionMode -androidx.preference.R$dimen: int abc_control_inset_material -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String ICON_URI -cyanogenmod.weather.WeatherInfo$DayForecast$1 -androidx.preference.R$drawable: int abc_vector_test -com.google.android.material.R$attr: int scrimAnimationDuration -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -com.google.android.material.R$drawable: int abc_list_selector_disabled_holo_dark -com.google.android.material.R$id: int triangle -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_icon_padding -com.bumptech.glide.R$id: int action_container -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getSunRise() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_stroke_width_default -androidx.hilt.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.R$attr: int colorControlNormal -com.xw.repo.bubbleseekbar.R$attr: int titleMargins -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig locationEntityDaoConfig -wangdaye.com.geometricweather.background.receiver.MainReceiver -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.google.android.material.textfield.TextInputLayout: void setEndIconTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataSpinner -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: void setServiceRequestState(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.ServiceRequestResult,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial -com.jaredrummler.android.colorpicker.R$id: int tabMode -wangdaye.com.geometricweather.R$styleable: int Preference_allowDividerAbove -wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_inflatedId -cyanogenmod.externalviews.ExternalView$7 -androidx.constraintlayout.widget.R$style: int Base_V28_Theme_AppCompat -com.google.android.material.R$id: int month_navigation_fragment_toggle -wangdaye.com.geometricweather.R$attr: int behavior_skipCollapsed +com.jaredrummler.android.colorpicker.R$id: int src_in +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Date +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton +com.google.android.material.R$drawable: int abc_list_longpressed_holo +james.adaptiveicon.R$attr: int alertDialogStyle +wangdaye.com.geometricweather.R$string: int content_des_m3 +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.util.ErrorMode errorMode +wangdaye.com.geometricweather.R$layout: int material_time_input +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getAqiText() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setCo(java.lang.Float) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationY +androidx.coordinatorlayout.R$string: int status_bar_notification_info_overflow +androidx.appcompat.R$layout: int abc_activity_chooser_view +cyanogenmod.weather.RequestInfo: int getRequestType() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.disposables.CompositeDisposable set +com.google.android.material.R$attr: int showPaths +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: IWeatherProviderServiceClient$Stub$Proxy(android.os.IBinder) +retrofit2.BuiltInConverters$RequestBodyConverter: java.lang.Object convert(java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderCerts +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: ExecutorScheduler$ExecutorWorker$BooleanRunnable(java.lang.Runnable) +androidx.constraintlayout.widget.R$attr: int buttonStyle +com.google.android.material.R$attr: int cornerFamily +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +retrofit2.HttpServiceMethod: retrofit2.CallAdapter createCallAdapter(retrofit2.Retrofit,java.lang.reflect.Method,java.lang.reflect.Type,java.lang.annotation.Annotation[]) +com.jaredrummler.android.colorpicker.R$id: int action_mode_bar_stub +com.xw.repo.bubbleseekbar.R$attr: int backgroundStacked +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2(retrofit2.Call) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: void clear() +com.google.android.material.R$layout: int support_simple_spinner_dropdown_item +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver +com.google.android.material.circularreveal.CircularRevealFrameLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +wangdaye.com.geometricweather.R$attr: int enforceTextAppearance +androidx.loader.R$style: int TextAppearance_Compat_Notification_Line2 +cyanogenmod.app.IProfileManager: void updateNotificationGroup(android.app.NotificationGroup) +com.google.android.material.R$drawable: int abc_btn_default_mtrl_shape +com.google.android.material.R$styleable: int[] LinearLayoutCompat_Layout +com.google.android.material.R$styleable: int[] SearchView +android.didikee.donate.R$attr: int backgroundSplit +androidx.appcompat.resources.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.chip.Chip: void setChipStartPaddingResource(int) +james.adaptiveicon.R$drawable: int abc_list_longpressed_holo +wangdaye.com.geometricweather.R$attr: int singleSelection +james.adaptiveicon.R$style: int Base_V26_Theme_AppCompat +androidx.appcompat.R$attr: R$attr() +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean isDisposed() +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation LEFT +androidx.constraintlayout.widget.R$color: int abc_tint_edittext +wangdaye.com.geometricweather.R$attr: int transitionShapeAppearance +com.google.android.material.R$id: int fixed +okhttp3.internal.ws.RealWebSocket: void onReadMessage(okio.ByteString) +wangdaye.com.geometricweather.R$id: int item_trend_daily +androidx.lifecycle.SavedStateHandleController$OnRecreation: void onRecreated(androidx.savedstate.SavedStateRegistryOwner) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean() +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType COLOR_TYPE +cyanogenmod.themes.IThemeChangeListener: void onFinish(boolean) +james.adaptiveicon.R$color: int highlighted_text_material_light +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: java.lang.Runnable getWrappedRunnable() +androidx.coordinatorlayout.R$id: int accessibility_custom_action_7 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlHighlight +com.jaredrummler.android.colorpicker.R$dimen: R$dimen() +androidx.preference.R$style: int TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.R$attr: int boxCornerRadiusTopEnd +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: cyanogenmod.app.ThemeVersion$ComponentVersion getDeviceComponentVersion(cyanogenmod.app.ThemeComponent) +androidx.preference.R$dimen: int abc_action_button_min_width_material +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +android.didikee.donate.R$color: int switch_thumb_disabled_material_dark +androidx.vectordrawable.animated.R$style: int Widget_Compat_NotificationActionText +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: java.util.ArrayDeque observers +okio.Buffer: java.lang.String readUtf8(long) +androidx.legacy.coreutils.R$attr: int fontProviderQuery +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_showTitle +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathOffset(float) +com.google.android.material.button.MaterialButton: void setShouldDrawSurfaceColorStroke(boolean) +okhttp3.Connection: java.net.Socket socket() +androidx.constraintlayout.widget.R$styleable: int Variant_constraints +com.google.android.material.chip.Chip: float getTextStartPadding() +com.jaredrummler.android.colorpicker.R$attr: int tickMarkTint +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: io.reactivex.internal.fuseable.SimpleQueue queue +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather +com.turingtechnologies.materialscrollbar.R$attr: int counterMaxLength +com.google.android.material.R$styleable: int TextInputLayout_errorIconTintMode +james.adaptiveicon.R$styleable: int AppCompatTheme_listPopupWindowStyle +com.xw.repo.bubbleseekbar.R$drawable: int abc_edit_text_material +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeRealFeelTemperature +com.google.android.material.R$style: int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItem +com.google.android.material.R$color: int material_deep_teal_200 +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowRadius +androidx.legacy.coreutils.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$id: int baseline +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Inverse +androidx.preference.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Title_Inverse +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_toId +com.turingtechnologies.materialscrollbar.R$attr: int bottomAppBarStyle +com.google.android.material.R$dimen: int mtrl_badge_horizontal_edge_offset +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_motionTarget +androidx.appcompat.widget.SearchView$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$string: int settings_title_list_animation_switch +cyanogenmod.providers.CMSettings$Secure: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) +com.google.android.material.R$id: int pathRelative +android.didikee.donate.R$id: int time +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_checked_black +james.adaptiveicon.R$styleable: int AppCompatTheme_android_windowIsFloating +io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean isEmpty() +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: io.reactivex.Observer downstream +com.google.android.material.R$dimen: int abc_dropdownitem_text_padding_left +james.adaptiveicon.R$styleable: int AppCompatTheme_colorError +androidx.activity.R$id: int accessibility_custom_action_17 +okhttp3.internal.http2.Settings: void clear() +android.didikee.donate.R$drawable: int abc_btn_radio_to_on_mtrl_000 +wangdaye.com.geometricweather.R$id: int search_button +androidx.appcompat.R$string: R$string() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 +androidx.appcompat.R$color: int error_color_material_light +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_LOW_POWER_VALIDATOR +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer ragweedIndex +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Tab +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endColor +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endY +james.adaptiveicon.R$attr: int overlapAnchor +com.google.android.material.R$styleable: int[] KeyTimeCycle +androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_tailScale +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: java.lang.String Name +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_visible +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +james.adaptiveicon.R$styleable: int Toolbar_navigationContentDescription +androidx.recyclerview.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean weather +com.google.android.material.navigation.NavigationView: int getItemHorizontalPadding() +androidx.appcompat.R$styleable: int AppCompatImageView_tintMode +okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte EXCEPTION_MARKER +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_Chip +james.adaptiveicon.R$attr: int arrowShaftLength +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onError(java.lang.Throwable) +okhttp3.EventListener$1 +androidx.appcompat.R$styleable: int[] MenuGroup +io.reactivex.exceptions.MissingBackpressureException: long serialVersionUID +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: void setTo(java.util.Date) +wangdaye.com.geometricweather.R$id: int design_menu_item_action_area +com.xw.repo.bubbleseekbar.R$color: int colorPrimary +androidx.recyclerview.R$drawable: int notification_bg +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startY +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.R$anim: int x2_accelerate_interpolator +androidx.fragment.R$dimen: int notification_right_icon_size +com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_button_bar_material +com.turingtechnologies.materialscrollbar.R$style: int Base_V22_Theme_AppCompat_Light +cyanogenmod.power.IPerformanceManager$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature +com.google.android.material.R$id: int mtrl_picker_header_title_and_selection +james.adaptiveicon.R$styleable: int MenuView_android_itemIconDisabledAlpha +com.turingtechnologies.materialscrollbar.R$drawable: int abc_tab_indicator_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end +com.xw.repo.bubbleseekbar.R$layout: int abc_search_view +android.didikee.donate.R$styleable: int AppCompatTextView_textAllCaps +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type[] getActualTypeArguments() +androidx.preference.R$interpolator +retrofit2.HttpServiceMethod: retrofit2.Converter responseConverter +androidx.appcompat.R$attr: int collapseIcon +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_clipToPadding +com.google.android.material.R$styleable: int AppCompatTheme_actionModeShareDrawable +androidx.coordinatorlayout.R$styleable +androidx.vectordrawable.R$id: int notification_background +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: int getTemperature() +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$string: int settings_title_precipitation_unit +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_font +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: SinglePostCompleteSubscriber(org.reactivestreams.Subscriber) +com.google.android.material.bottomappbar.BottomAppBar: int getLeftInset() +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: ObservableWindow$WindowSkipObserver(io.reactivex.Observer,long,long,int) +com.google.android.material.R$id: int mtrl_picker_header +wangdaye.com.geometricweather.R$attr: int bottomSheetDialogTheme +androidx.core.R$styleable: int GradientColor_android_endX +androidx.preference.R$style: int Base_V23_Theme_AppCompat +com.google.android.material.R$id: int transition_scene_layoutid_cache +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Title_Inverse +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconTint +androidx.recyclerview.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: double Value +androidx.constraintlayout.widget.R$id: int scrollView +james.adaptiveicon.R$styleable: int SwitchCompat_thumbTint +androidx.lifecycle.SavedStateHandleController: void attachHandleIfNeeded(androidx.lifecycle.ViewModel,androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getWeatherText() +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_spinner +android.didikee.donate.R$styleable: int Spinner_popupTheme +androidx.preference.R$id: int action_context_bar +com.google.android.material.R$attr: int expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency PressureTendency +android.didikee.donate.R$attr: int editTextBackground +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setTranslateY(float) +android.didikee.donate.R$dimen: int notification_top_pad_large_text +com.google.android.material.R$styleable: int Slider_trackColorInactive +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getZh_TW() +androidx.constraintlayout.widget.R$attr: int minWidth +james.adaptiveicon.R$id: int search_src_text +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String MinuteText +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar +okio.BufferedSink: okio.BufferedSink writeShortLe(int) +okio.Okio$2: java.lang.String toString() +com.jaredrummler.android.colorpicker.R$dimen: int cpv_column_width +androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_android_color +james.adaptiveicon.R$attr: int switchStyle +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_visible +james.adaptiveicon.R$attr: int editTextBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getUrl() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getLongDate(android.content.Context) +james.adaptiveicon.R$styleable: int AppCompatTheme_dividerVertical +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void next(java.lang.Object) +wangdaye.com.geometricweather.R$id: int widget_week_temp_4 +com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar_FullWidth +androidx.swiperefreshlayout.R$id: int action_container +com.google.android.material.R$drawable: int abc_ic_menu_cut_mtrl_alpha +android.didikee.donate.R$styleable: int View_android_theme +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Base getBase() +wangdaye.com.geometricweather.R$styleable: int[] KeyPosition +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String weatherIcon +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +androidx.swiperefreshlayout.R$attr: int alpha +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration +androidx.customview.R$dimen: int notification_subtext_size +com.google.android.material.R$attr: int textAppearanceSubtitle1 +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao getChineseCityEntityDao() +wangdaye.com.geometricweather.R$attr: int brightness +com.google.android.material.R$attr: int cornerSize +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setLocation(android.location.Location) +wangdaye.com.geometricweather.R$array: int live_wallpaper_day_night_type_values +androidx.hilt.lifecycle.R$styleable: int FragmentContainerView_android_name +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSearchResultSubtitle +com.google.android.material.slider.RangeSlider: float getStepSize() +com.google.android.material.appbar.AppBarLayout: void setVisibility(int) +com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_inflatedId +com.jaredrummler.android.colorpicker.R$color: int button_material_dark +com.google.android.material.R$styleable: int MaterialTextView_android_lineHeight +androidx.appcompat.R$interpolator: int fast_out_slow_in +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: java.lang.String Unit +cyanogenmod.providers.CMSettings$System: java.lang.String HEADSET_CONNECT_PLAYER +androidx.appcompat.widget.ActionBarOverlayLayout: java.lang.CharSequence getTitle() +androidx.preference.R$attr: int panelMenuListTheme +io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.CompletableSource) +com.google.android.material.R$style: int Widget_AppCompat_ActionButton_Overflow +androidx.preference.R$drawable: int abc_btn_check_to_on_mtrl_000 +com.google.android.material.R$interpolator: int mtrl_linear_out_slow_in +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node getHead() +cyanogenmod.os.Build$CM_VERSION_CODES: int DRAGON_FRUIT +com.google.android.material.R$id: int home +james.adaptiveicon.R$styleable: int Toolbar_title +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +androidx.appcompat.R$id: int decor_content_parent +android.didikee.donate.R$id: int search_go_btn +wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity +com.google.android.material.R$styleable: int AppCompatTextView_autoSizeTextType +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollHorizontalThumbDrawable +com.jaredrummler.android.colorpicker.R$attr: int dividerHorizontal +androidx.appcompat.R$dimen: int abc_button_padding_horizontal_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSuggest() +com.google.android.material.R$attr: int fontFamily +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableStart +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max +androidx.appcompat.widget.AppCompatImageButton: void setSupportImageTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String getDescription() +wangdaye.com.geometricweather.R$drawable: int weather_thunder_1 +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties properties +com.google.android.material.R$styleable: int MaterialButton_iconPadding +androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context) +okhttp3.Address: javax.net.ssl.SSLSocketFactory sslSocketFactory +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void dispose() +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_light +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +james.adaptiveicon.R$attr: int imageButtonStyle +com.google.android.material.chip.ChipGroup: void setShowDividerHorizontal(int) +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +com.google.android.material.R$attr: int layout_constraintHorizontal_bias +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +wangdaye.com.geometricweather.R$drawable: int notif_temp_70 +wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_title +wangdaye.com.geometricweather.R$styleable: int Preference_android_order +androidx.hilt.work.R$styleable: int GradientColor_android_centerY +androidx.preference.R$dimen: int abc_text_size_caption_material +androidx.coordinatorlayout.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Surface +androidx.preference.R$styleable: int[] RecycleListView +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmPic2 +androidx.constraintlayout.widget.R$styleable: int Motion_animate_relativeTo +cyanogenmod.app.ProfileManager: java.lang.String TAG wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderPackage -com.xw.repo.bubbleseekbar.R$dimen: int notification_content_margin_start -james.adaptiveicon.R$drawable: int abc_tab_indicator_mtrl_alpha -androidx.preference.R$styleable: int PreferenceFragment_android_layout -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_cut_mtrl_alpha -androidx.appcompat.widget.AppCompatSpinner: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -wangdaye.com.geometricweather.R$string: int key_service_provider -okhttp3.Address: boolean equals(java.lang.Object) -androidx.preference.R$attr: int closeItemLayout -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.R$id: int seekbar_value -wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_2 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitationDuration() -com.google.android.material.R$id: int src_in -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupMenu -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: java.util.ArrayDeque windows -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_DES_CBC_SHA -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type getRawType() -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: int getChartBottom() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ProgressBar -com.google.android.material.R$style: int Widget_MaterialComponents_ShapeableImageView -com.bumptech.glide.integration.okhttp.R$dimen: int notification_content_margin_start -com.turingtechnologies.materialscrollbar.R$color: int highlighted_text_material_dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: java.lang.String Unit -okhttp3.internal.http2.Hpack$Writer: int headerCount -okhttp3.internal.cache2.FileOperator -com.xw.repo.bubbleseekbar.R$id: int checkbox -androidx.work.impl.WorkDatabase_Impl: WorkDatabase_Impl() -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerColor -androidx.appcompat.R$dimen -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_enabled -cyanogenmod.app.ProfileManager: java.lang.String[] getProfileNames() -com.google.android.material.slider.RangeSlider: java.util.List getValues() -james.adaptiveicon.R$styleable: int Toolbar_logo -androidx.lifecycle.ComputableLiveData: java.util.concurrent.atomic.AtomicBoolean mComputing -com.google.android.material.imageview.ShapeableImageView: void setStrokeColorResource(int) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ApparentTemperature -com.google.android.material.R$styleable: int Toolbar_contentInsetEnd -com.google.android.material.R$styleable: int Slider_trackColorActive -androidx.viewpager.R$attr: int fontProviderFetchTimeout -cyanogenmod.profiles.AirplaneModeSettings: boolean mOverride -cyanogenmod.app.LiveLockScreenInfo$Builder: android.content.ComponentName mComponent -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_navigationIcon -androidx.appcompat.R$attr: int progressBarPadding -retrofit2.ParameterHandler$PartMap: retrofit2.Converter valueConverter -androidx.lifecycle.Transformations: androidx.lifecycle.LiveData map(androidx.lifecycle.LiveData,androidx.arch.core.util.Function) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language KOREAN -io.reactivex.internal.disposables.EmptyDisposable -com.google.android.material.R$dimen: int material_filled_edittext_font_2_0_padding_top -androidx.appcompat.app.AlertController$RecycleListView: AlertController$RecycleListView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_framePosition -com.google.android.material.R$attr: int queryBackground -okhttp3.internal.ws.RealWebSocket$Message: okio.ByteString data -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: double Value -androidx.constraintlayout.widget.R$attr: int trackTint -cyanogenmod.externalviews.KeyguardExternalView$1: cyanogenmod.externalviews.KeyguardExternalView this$0 -androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(android.os.Parcel,cyanogenmod.weatherservice.ServiceRequestResult$1) -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItem -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstHorizontalStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setZh_TW(java.lang.String) -wangdaye.com.geometricweather.R$attr: int iconGravity +okio.ForwardingSource: long read(okio.Buffer,long) +androidx.vectordrawable.R$id: int forever +androidx.appcompat.R$color: int material_grey_100 +wangdaye.com.geometricweather.R$color: int notification_background_m +okhttp3.CertificatePinner$Builder: okhttp3.CertificatePinner$Builder add(java.lang.String,java.lang.String[]) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_seekBarStyle +android.support.v4.app.INotificationSideChannel$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.google.android.material.R$id: int easeOut +okhttp3.internal.http2.Http2Connection$3: Http2Connection$3(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.R$integer: int mtrl_calendar_year_selector_span +okio.ByteString: ByteString(byte[]) +androidx.lifecycle.extensions.R$attr: int fontProviderQuery +androidx.recyclerview.R$dimen +android.support.v4.os.ResultReceiver$MyResultReceiver: void send(int,android.os.Bundle) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_homeAsUpIndicator +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FOGGY +androidx.appcompat.widget.Toolbar: void setTitleMarginTop(int) +okhttp3.internal.ws.RealWebSocket$Close +io.reactivex.internal.observers.BasicIntQueueDisposable: java.lang.Object poll() +com.google.android.material.R$style: int TextAppearance_AppCompat_Inverse +androidx.legacy.coreutils.R$styleable: int GradientColor_android_gradientRadius +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void error(java.lang.Throwable) +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit +androidx.coordinatorlayout.widget.CoordinatorLayout: void setVisibility(int) +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.R$attr: int buttonStyle +okhttp3.Cache$CacheRequestImpl$1: void close() +com.google.android.material.R$styleable: int KeyTrigger_triggerReceiver +cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: int CELSIUS +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_7 +okhttp3.internal.http2.Http2Reader: void readGoAway(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +androidx.vectordrawable.R$id: int tag_unhandled_key_event_manager +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_12 +android.didikee.donate.R$attr: int backgroundTintMode +james.adaptiveicon.R$styleable: int MenuItem_android_checked +androidx.constraintlayout.widget.R$id: int forever +androidx.core.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_dialog_btn_min_width +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeSplitBackground +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_right_mtrl_dark +wangdaye.com.geometricweather.R$drawable: int btn_checkbox_checked_mtrl +okhttp3.RealCall: java.lang.Object clone() +retrofit2.ParameterHandler$Path: ParameterHandler$Path(java.lang.reflect.Method,int,java.lang.String,retrofit2.Converter,boolean) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf +androidx.core.R$style: R$style() +android.support.v4.os.ResultReceiver$MyRunnable: void run() +james.adaptiveicon.R$drawable: int abc_text_select_handle_left_mtrl_light +okio.BufferedSink: okio.BufferedSink writeHexadecimalUnsignedLong(long) +wangdaye.com.geometricweather.R$drawable: int notif_temp_14 +androidx.constraintlayout.widget.R$attr: int iconifiedByDefault +wangdaye.com.geometricweather.R$attr: int collapsedSize +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchPadding +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dividerHorizontal +androidx.activity.R$id: int normal +androidx.fragment.app.Fragment$2 +com.google.android.material.datepicker.CalendarConstraints: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.common.basic.models.weather.History: int getNighttimeTemperature() +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat DEFAULT +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomSheetDialog +com.google.android.material.chip.Chip: void setTextStartPaddingResource(int) +okio.RealBufferedSource: java.lang.String readUtf8LineStrict(long) +wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_EXCESSIVE +android.didikee.donate.R$id: int title +wangdaye.com.geometricweather.R$integer: int hide_password_duration +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindDirection +com.jaredrummler.android.colorpicker.R$id: int action_container +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: java.lang.String textConsequence +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: long dt +androidx.constraintlayout.widget.R$attr: int overlay +wangdaye.com.geometricweather.R$id: int chip3 +wangdaye.com.geometricweather.R$dimen: int mtrl_progress_indicator_size +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius +com.google.android.material.chip.Chip: void setChipIconTint(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$id: int subtitle +io.reactivex.internal.schedulers.AbstractDirectTask: long serialVersionUID +androidx.vectordrawable.R$id: int accessibility_custom_action_26 +androidx.preference.R$style: int Base_V26_Theme_AppCompat +wangdaye.com.geometricweather.R$attr: int behavior_saveFlags +okio.Buffer: java.io.OutputStream outputStream() +retrofit2.http.HEAD +wangdaye.com.geometricweather.R$layout: int abc_action_menu_item_layout +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyEndText +com.google.android.material.R$attr: int paddingLeftSystemWindowInsets +james.adaptiveicon.R$style: int Widget_AppCompat_Spinner +androidx.transition.R$id: int action_image +androidx.lifecycle.LifecycleService +wangdaye.com.geometricweather.R$string: int default_location +androidx.coordinatorlayout.R$id: int accessibility_custom_action_2 +androidx.appcompat.widget.SwitchCompat: android.graphics.drawable.Drawable getThumbDrawable() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListPopupWindow +okhttp3.internal.http2.Http2Stream$FramingSink: Http2Stream$FramingSink(okhttp3.internal.http2.Http2Stream) +com.google.android.material.floatingactionbutton.FloatingActionButton: int getSize() +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: int count +cyanogenmod.profiles.LockSettings: void setValue(int) +androidx.appcompat.R$attr: int actionModeStyle +com.google.android.material.R$styleable: int MenuView_android_headerBackground +wangdaye.com.geometricweather.R$string: int week_2 +com.jaredrummler.android.colorpicker.R$attr: int allowDividerAfterLastItem +wangdaye.com.geometricweather.R$id: int widget_remote_progress +androidx.lifecycle.SavedStateHandle$1: SavedStateHandle$1(androidx.lifecycle.SavedStateHandle) +wangdaye.com.geometricweather.R$id: int forever +com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_950 +com.google.android.material.R$attr: int trackColor +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIconSize(int) +androidx.constraintlayout.widget.Group: void setElevation(float) +com.google.android.material.R$styleable: int KeyCycle_android_translationY +cyanogenmod.providers.CMSettings$Secure: java.lang.String ADB_PORT +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.util.List SupplementalAdminAreas +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +androidx.hilt.work.R$attr: R$attr() +wangdaye.com.geometricweather.R$id: int showHome +wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Top_Right +wangdaye.com.geometricweather.common.basic.models.Location: android.os.Parcelable$Creator CREATOR +io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicReference upstream +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.Observer downstream +james.adaptiveicon.R$id: int spacer +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onComplete() +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_left_mtrl_dark +androidx.dynamicanimation.R$attr: int fontVariationSettings +android.didikee.donate.R$drawable: int abc_text_select_handle_right_mtrl_light +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitation +com.bumptech.glide.integration.okhttp.R$string +android.didikee.donate.R$attr: int subtitleTextAppearance +com.google.android.material.appbar.CollapsingToolbarLayout: void setVisibility(int) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int NO_REQUEST_HAS_VALUE +com.github.rahatarmanahmed.cpv.CircularProgressView: void addListener(com.github.rahatarmanahmed.cpv.CircularProgressViewListener) +james.adaptiveicon.R$attr: int switchMinWidth +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getCityId() +wangdaye.com.geometricweather.R$drawable: int notif_temp_93 +androidx.preference.R$drawable: int abc_ic_star_half_black_36dp +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_height_minor +androidx.preference.R$id: int async +james.adaptiveicon.R$style: int Widget_AppCompat_SeekBar +androidx.appcompat.R$styleable: int FontFamilyFont_font +okhttp3.Address: okhttp3.Dns dns() +io.reactivex.subjects.PublishSubject$PublishDisposable: void onError(java.lang.Throwable) +cyanogenmod.app.BaseLiveLockManagerService: android.os.RemoteCallbackList mChangeListeners +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_icon +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_title_baseline_to_top +okio.Buffer: okio.ByteString hmacSha256(okio.ByteString) +cyanogenmod.externalviews.ExternalViewProviderService: android.view.WindowManager mWindowManager +com.turingtechnologies.materialscrollbar.R$attr: int behavior_hideable +com.google.android.material.R$styleable: int ActionMode_height +com.turingtechnologies.materialscrollbar.R$attr: int icon +james.adaptiveicon.R$styleable: int MenuView_android_horizontalDivider +wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullException +androidx.preference.R$style: int TextAppearance_AppCompat_Body1 +com.google.android.material.R$drawable: int abc_scrubber_control_off_mtrl_alpha +androidx.appcompat.R$styleable: int AppCompatTextView_fontFamily +androidx.swiperefreshlayout.R$styleable: int GradientColorItem_android_color +okhttp3.Cache$CacheRequestImpl: okhttp3.internal.cache.DiskLruCache$Editor editor +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTotalPrecipitation(java.lang.Float) +android.didikee.donate.R$dimen: int abc_action_bar_elevation_material +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_descendantFocusability +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void error(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int Badge_number +com.turingtechnologies.materialscrollbar.R$attr: int seekBarStyle +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.R$dimen: int widget_grid_3 +okhttp3.internal.http1.Http1Codec: void writeRequestHeaders(okhttp3.Request) +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_title +androidx.constraintlayout.widget.R$styleable: int ActionBar_subtitle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableRight +com.google.android.material.R$styleable: int TextInputLayout_boxStrokeWidthFocused +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: int hasSeaBulletin +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintStart_toEndOf +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State[] $VALUES +com.turingtechnologies.materialscrollbar.R$dimen: int abc_config_prefDialogWidth +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar +com.google.android.material.R$styleable +androidx.lifecycle.ReportFragment +androidx.vectordrawable.animated.R$styleable: R$styleable() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setCheckable(boolean) +wangdaye.com.geometricweather.wallpaper.LiveWallpaperConfigActivity +wangdaye.com.geometricweather.R$array: int dark_modes +wangdaye.com.geometricweather.R$color: int tooltip_background_dark okhttp3.Cache$Entry: void writeCertList(okio.BufferedSink,java.util.List) -com.google.android.material.R$dimen: int mtrl_extended_fab_min_height -androidx.viewpager2.R$attr: int ttcIndex -com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatElevation() -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.disposables.Disposable upstream -okio.Buffer: okio.ByteString snapshot() -cyanogenmod.externalviews.ExternalView$2: int val$y -com.google.android.material.R$drawable: int abc_spinner_mtrl_am_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconSize -okhttp3.internal.ws.WebSocketReader: void readMessageFrame() -androidx.preference.R$attr: int spinnerStyle -android.didikee.donate.R$attr: int displayOptions -androidx.constraintlayout.widget.R$style: int Base_AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance -wangdaye.com.geometricweather.R$id: int cpv_color_panel_old -android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -com.jaredrummler.android.colorpicker.ColorPickerView: int getPreferredWidth() -cyanogenmod.weather.WeatherInfo$DayForecast: int getConditionCode() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight -androidx.preference.R$style: int Platform_Widget_AppCompat_Spinner -com.google.android.material.R$styleable: int MaterialCheckBox_useMaterialThemeColors -wangdaye.com.geometricweather.db.entities.AlertEntity: int getColor() -wangdaye.com.geometricweather.R$id: int widget_text_weather -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customColorDrawableValue -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property CityId -com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_chainStyle -okhttp3.Handshake: boolean equals(java.lang.Object) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_29 -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginLeft +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String WALLPAPER_URI +okhttp3.internal.http1.Http1Codec$FixedLengthSink: boolean closed +androidx.preference.R$id: int alertTitle +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: android.os.IBinder asBinder() +androidx.preference.R$styleable: int View_theme +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: int type +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarSize +androidx.transition.R$dimen: int notification_right_icon_size +cyanogenmod.externalviews.ExternalView$2: int val$x +wangdaye.com.geometricweather.R$color: int darkPrimary_2 +androidx.appcompat.R$style: int TextAppearance_Compat_Notification +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType INT_TYPE +okhttp3.internal.http2.Http2Stream: int getId() +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixText +com.google.android.material.chip.Chip: void setOnCheckedChangeListenerInternal(android.widget.CompoundButton$OnCheckedChangeListener) +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_thickness +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status CANCELLED +com.xw.repo.bubbleseekbar.R$string: int abc_menu_ctrl_shortcut_label +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: org.reactivestreams.Subscription upstream +io.reactivex.internal.disposables.SequentialDisposable: boolean update(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$id: int submenuarrow +okhttp3.internal.http2.Http2Codec: okhttp3.Interceptor$Chain chain +androidx.hilt.R$id: int icon +com.google.gson.stream.JsonReader +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Body1 +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivityCreated(android.app.Activity,android.os.Bundle) +androidx.coordinatorlayout.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.R$styleable: int Transition_pathMotionArc +com.google.android.material.card.MaterialCardView: int getContentPaddingLeft() +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_orientation +com.xw.repo.bubbleseekbar.R$integer: R$integer() +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit[] values() +wangdaye.com.geometricweather.R$id: int textinput_helper_text +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: java.lang.String Unit +com.google.android.material.R$anim +androidx.activity.R$styleable: int GradientColor_android_endY +cyanogenmod.os.Build$CM_VERSION_CODES: Build$CM_VERSION_CODES() +cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit +okhttp3.internal.http2.Http2: byte FLAG_END_STREAM +com.jaredrummler.android.colorpicker.R$id: int tag_unhandled_key_event_manager +android.didikee.donate.R$attr: int panelMenuListTheme +wangdaye.com.geometricweather.R$id: int activity_weather_daily_container +com.bumptech.glide.R$integer: int status_bar_notification_info_maxnum +com.google.android.material.R$styleable: int Toolbar_subtitleTextAppearance +cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService this$0 +wangdaye.com.geometricweather.db.entities.LocationEntity: void setCityId(java.lang.String) +com.jaredrummler.android.colorpicker.R$string: int v7_preference_off +android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.google.android.material.R$id: int chip_group +androidx.appcompat.resources.R$id: int accessibility_custom_action_22 +wangdaye.com.geometricweather.R$string: int feedback_request_location_permission_success +com.google.android.material.textfield.TextInputEditText +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric() +androidx.preference.R$attr: int borderlessButtonStyle +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_height_major +androidx.preference.R$attr: int selectable +com.xw.repo.bubbleseekbar.R$attr: int bsb_second_track_color +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: long serialVersionUID +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitationDuration +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +androidx.appcompat.R$style: int Base_Animation_AppCompat_DropDownUp +com.google.android.material.textfield.TextInputLayout: void setEndIconDrawable(int) +wangdaye.com.geometricweather.R$attr: int actionBarItemBackground +okhttp3.HttpUrl: java.lang.String percentDecode(java.lang.String,int,int,boolean) +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_16dp +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext +androidx.core.R$id: int accessibility_custom_action_9 +android.didikee.donate.R$drawable: int abc_text_select_handle_left_mtrl_light +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getTreeDescription() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_content_inset_with_nav +androidx.appcompat.R$styleable: int MenuView_android_itemBackground +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_fontVariationSettings +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.constraintlayout.widget.R$id: int info +com.google.android.material.R$styleable: int[] GradientColorItem +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_default_box_stroke_color +androidx.lifecycle.LifecycleDispatcher: LifecycleDispatcher() +com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderText(int) +androidx.vectordrawable.animated.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_checkboxStyle +com.turingtechnologies.materialscrollbar.R$anim: int abc_fade_in +wangdaye.com.geometricweather.background.polling.work.worker.TodayForecastUpdateWorker +com.google.android.material.R$styleable: int NavigationView_itemShapeFillColor +androidx.appcompat.widget.DropDownListView: void setSelector(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$attr: int itemShapeInsetStart +okio.RealBufferedSink: okio.BufferedSink writeShortLe(int) +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String getEffectiveTldPlusOne(java.lang.String) +okhttp3.internal.ws.RealWebSocket: void loopReader() +com.jaredrummler.android.colorpicker.R$attr: int switchTextOff +cyanogenmod.profiles.RingModeSettings: void readFromParcel(android.os.Parcel) +androidx.preference.R$id: int italic +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingBottom +com.google.gson.JsonParseException: JsonParseException(java.lang.String,java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$layout: int abc_search_view +wangdaye.com.geometricweather.R$attr: int layout_constraintBaseline_creator +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintEnd_toStartOf +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +androidx.appcompat.widget.AppCompatSpinner: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +androidx.coordinatorlayout.R$dimen: int notification_top_pad_large_text +com.turingtechnologies.materialscrollbar.R$attr: int colorPrimaryDark +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: long serialVersionUID +androidx.vectordrawable.R$id: int action_image +androidx.multidex.MultiDexExtractor$ExtractedDex: long crc +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeWidth +wangdaye.com.geometricweather.R$layout: int activity_daily_trend_display_manage +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostCreated(android.app.Activity,android.os.Bundle) +com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context,android.util.AttributeSet,int) +retrofit2.http.HTTP: boolean hasBody() +androidx.fragment.R$dimen: int notification_action_text_size +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontWeight +cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl mImpl +com.google.android.material.R$styleable: int ActionBar_subtitleTextStyle +cyanogenmod.weather.util.WeatherUtils: double fahrenheitToCelsius(double) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: double Value +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: java.util.concurrent.atomic.AtomicReference upstream +james.adaptiveicon.R$styleable: int Spinner_popupTheme +com.google.android.material.R$drawable: int material_ic_edit_black_24dp +androidx.cardview.R$styleable +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_clear_material +androidx.drawerlayout.R$attr: int fontProviderFetchTimeout +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$bool: int enable_system_job_service_default +okhttp3.OkHttpClient: java.util.List DEFAULT_CONNECTION_SPECS +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableTop +com.jaredrummler.android.colorpicker.R$color: int primary_material_light +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LOCK_WALLPAPER_THUMBNAIL +okhttp3.internal.cache.CacheInterceptor +androidx.preference.R$styleable: int TextAppearance_fontVariationSettings +wangdaye.com.geometricweather.db.entities.DaoMaster +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List alertList +wangdaye.com.geometricweather.R$xml: int perference_unit +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setIcon(int) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_visible +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void dispose() +wangdaye.com.geometricweather.R$styleable: int Spinner_android_entries +io.reactivex.Observable: io.reactivex.Observable zipIterable(java.lang.Iterable,io.reactivex.functions.Function,boolean,int) +cyanogenmod.weather.WeatherInfo: java.util.List access$1102(cyanogenmod.weather.WeatherInfo,java.util.List) +cyanogenmod.externalviews.KeyguardExternalView: void performAction(java.lang.Runnable) +androidx.appcompat.R$drawable: int abc_item_background_holo_light +cyanogenmod.app.ProfileGroup: java.lang.String mName +com.google.android.material.R$id: int aligned +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +com.bumptech.glide.R$styleable: int FontFamily_fontProviderFetchTimeout +com.google.android.material.R$styleable: int Constraint_android_transformPivotX +wangdaye.com.geometricweather.R$attr: int alertDialogButtonGroupStyle +cyanogenmod.providers.ThemesContract$MixnMatchColumns: ThemesContract$MixnMatchColumns() +androidx.constraintlayout.widget.R$attr: int touchAnchorId +androidx.appcompat.R$attr: int dividerHorizontal +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderFetchStrategy +james.adaptiveicon.R$attr: int homeLayout +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog_Alert +okhttp3.internal.connection.RouteException: RouteException(java.io.IOException) +androidx.loader.app.LoaderManagerImpl$LoaderViewModel +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_overflow_padding_start_material +wangdaye.com.geometricweather.R$styleable: int ListPreference_useSimpleSummaryProvider +com.google.android.material.R$dimen: int mtrl_edittext_rectangle_top_offset +com.google.android.material.R$styleable: int ProgressIndicator_circularInset +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Icon +android.didikee.donate.R$drawable: int abc_ab_share_pack_mtrl_alpha +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MOSTLY_CLOUDY_DAY +james.adaptiveicon.R$style: int Base_V23_Theme_AppCompat_Light +androidx.transition.R$drawable: int notify_panel_notification_icon_bg +androidx.viewpager2.R$id: int accessibility_custom_action_31 +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: java.lang.String getInterfaceDescriptor() +cyanogenmod.weather.WeatherLocation: java.lang.String getState() +com.google.android.material.R$attr: int boxCornerRadiusBottomStart +okhttp3.Cache$CacheRequestImpl: Cache$CacheRequestImpl(okhttp3.Cache,okhttp3.internal.cache.DiskLruCache$Editor) +android.didikee.donate.R$dimen: int abc_seekbar_track_background_height_material +okio.Util: java.nio.charset.Charset UTF_8 +com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherPhase +androidx.appcompat.R$layout: int notification_action +wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_list +androidx.preference.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_summary +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorHeight +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayWeekProvider +retrofit2.ParameterHandler: ParameterHandler() +androidx.appcompat.resources.R$styleable: int ColorStateListItem_alpha +okhttp3.internal.http1.Http1Codec$1 +wangdaye.com.geometricweather.R$drawable: int notif_temp_67 +com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout_Colored +com.google.android.material.R$integer: int mtrl_btn_anim_duration_ms +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_MULTIPLE_LEDS_ENABLE_VALIDATOR +okhttp3.internal.http2.Http2Connection: void flush() +james.adaptiveicon.R$color: int primary_text_default_material_dark +com.google.android.material.R$drawable: int abc_ratingbar_material +com.xw.repo.bubbleseekbar.R$dimen: int notification_media_narrow_margin james.adaptiveicon.R$color: int primary_dark_material_light -androidx.constraintlayout.widget.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -james.adaptiveicon.R$id: int search_src_text -androidx.constraintlayout.widget.R$attr: int flow_maxElementsWrap -okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withWriteTimeout(int,java.util.concurrent.TimeUnit) -android.didikee.donate.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_26 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX() -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_submitBackground -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW -okhttp3.internal.http2.Hpack$Reader: okio.ByteString readByteString() -androidx.constraintlayout.widget.R$styleable: int Constraint_android_alpha -com.google.android.material.R$attr: int autoSizeMinTextSize -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String zone -cyanogenmod.themes.ThemeManager$1$2: cyanogenmod.themes.ThemeManager$1 this$1 -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean done -james.adaptiveicon.R$drawable: int abc_ic_star_half_black_36dp -androidx.cardview.R$dimen: R$dimen() -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.MediaType contentType() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float thunderstormPrecipitation -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_overlapAnchor -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void dispose() -androidx.lifecycle.ViewModelProvider$KeyedFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: boolean active -com.google.android.material.chip.Chip: Chip(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() -com.google.android.material.R$style: int AlertDialog_AppCompat -androidx.appcompat.R$attr: int colorControlHighlight -wangdaye.com.geometricweather.R$attr: int tabSelectedTextColor -james.adaptiveicon.R$attr: int arrowShaftLength -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_item_horizontal_padding -androidx.hilt.lifecycle.R$id: int italic -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextAppearanceActive(int) -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorFullWidth -androidx.constraintlayout.widget.R$attr: int actionButtonStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_48 -androidx.constraintlayout.widget.R$styleable: int OnSwipe_moveWhenScrollAtTop -cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_FORWARD_LOOKUP -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HOT -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.util.AtomicThrowable error -com.google.gson.internal.LinkedTreeMap: boolean containsKey(java.lang.Object) -com.google.android.material.R$style: int TextAppearance_Design_HelperText -androidx.preference.R$dimen: int disabled_alpha_material_light -com.jaredrummler.android.colorpicker.R$id: int spacer -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_rippleColor -androidx.customview.R$drawable: int notification_bg -com.turingtechnologies.materialscrollbar.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPrimary() -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder immutable() -retrofit2.HttpServiceMethod$SuspendForBody: retrofit2.CallAdapter callAdapter -com.google.android.material.R$xml: int standalone_badge -androidx.work.R$string -cyanogenmod.externalviews.IExternalViewProvider: void onResume() -wangdaye.com.geometricweather.R$styleable: int[] MotionHelper -com.google.android.material.snackbar.BaseTransientBottomBar$Behavior -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation[] values() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.common.basic.models.weather.Minutely -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isDataConnectionSelectedOnSub -com.google.android.material.R$styleable: int DrawerArrowToggle_color -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setEnabled(boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int[] ListPopupWindow -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: boolean tryOnError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: int getStatus() +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: long index +com.google.android.material.R$integer: R$integer() +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleTintList(android.content.res.ColorStateList) +androidx.core.widget.NestedScrollView: int getScrollRange() +okio.AsyncTimeout +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_seekBarStyle +okhttp3.internal.connection.RouteSelector: boolean hasNext() +com.turingtechnologies.materialscrollbar.R$attr: int itemPadding +androidx.appcompat.R$attr: int textAppearanceListItem +androidx.transition.R$id: int transition_scene_layoutid_cache +cyanogenmod.app.Profile$DozeMode: int DISABLE +com.google.android.material.chip.Chip: void setChipIconResource(int) +androidx.drawerlayout.R$dimen +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult +wangdaye.com.geometricweather.R$bool: int cpv_default_anim_autostart +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionMode +androidx.preference.R$attr: int fontProviderFetchStrategy +com.google.android.material.R$string: int mtrl_picker_text_input_year_abbr +androidx.lifecycle.extensions.R$id: int forever +androidx.appcompat.R$layout: int abc_list_menu_item_radio +james.adaptiveicon.R$attr: int textAppearanceListItemSmall +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_MinWidth +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderCerts +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_height +androidx.preference.R$color: int bright_foreground_material_light +cyanogenmod.externalviews.KeyguardExternalView$11 +wangdaye.com.geometricweather.R$styleable: int MockView_mock_showDiagonals +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DOUBLE_TAP_SLEEP_GESTURE_VALIDATOR +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderPackage +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_collapseContentDescription +james.adaptiveicon.R$attr: int textAppearancePopupMenuHeader +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm25Desc +androidx.constraintlayout.widget.R$styleable: int OnSwipe_nestedScrollFlags +androidx.preference.R$id: int bottom +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_gravity +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motion_postLayoutCollision +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindSpeed +com.google.android.material.slider.Slider: void setTrackHeight(int) +wangdaye.com.geometricweather.R$style: int TestThemeWithLineHeight +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorHeight +com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.tabs.TabLayout$Tab getTab() +com.google.android.material.R$dimen: int abc_list_item_height_small_material +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_curveFit +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: FlowableConcatMap$BaseConcatMapSubscriber(io.reactivex.functions.Function,int) +cyanogenmod.providers.CMSettings$Global: java.lang.String[] LEGACY_GLOBAL_SETTINGS +androidx.appcompat.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$color: int primary_text_disabled_material_light +androidx.preference.R$dimen: int abc_button_padding_horizontal_material +com.turingtechnologies.materialscrollbar.R$bool: int mtrl_btn_textappearance_all_caps +androidx.recyclerview.R$dimen: int compat_button_padding_horizontal_material +androidx.preference.R$styleable: int ActionBar_logo +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_material_dark +com.google.android.material.R$attr: int layout_constraintWidth_min +wangdaye.com.geometricweather.R$styleable: int Preference_widgetLayout +com.jaredrummler.android.colorpicker.R$layout: int cpv_color_item_square +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String ID +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_COLOR_ENHANCE +cyanogenmod.power.PerformanceManager: int PROFILE_BIAS_POWER_SAVE +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean isCancelled() +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_switchTextOff +androidx.vectordrawable.R$styleable: int[] GradientColor +retrofit2.ParameterHandler$Part: retrofit2.Converter converter +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginBottom +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_background_corner_radius +androidx.appcompat.resources.R$drawable +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float getMilliMeters(float) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_SNOW +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean checkTerminated(boolean,boolean,io.reactivex.Observer,boolean,io.reactivex.internal.operators.observable.ObservableZip$ZipObserver) +androidx.preference.R$styleable: int PopupWindow_android_popupBackground +okio.RealBufferedSource: long indexOf(byte) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarSplitStyle +androidx.lifecycle.LifecycleRegistry: void moveToState(androidx.lifecycle.Lifecycle$State) +androidx.appcompat.widget.SearchView: SearchView(android.content.Context,android.util.AttributeSet) +okhttp3.RealCall: okhttp3.RealCall newRealCall(okhttp3.OkHttpClient,okhttp3.Request,boolean) +com.google.android.material.internal.NavigationMenuView +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_COLOR_ENHANCE_VALIDATOR +okhttp3.internal.http.HttpDate: java.lang.ThreadLocal STANDARD_DATE_FORMAT +com.xw.repo.bubbleseekbar.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.R$style: int Widget_Design_Snackbar +com.bumptech.glide.R$id: int async +wangdaye.com.geometricweather.R$attr: int windowMinWidthMinor +androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver: ConstraintProxyUpdateReceiver() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getTotalPrecipitationProbability() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setAqi(java.lang.String) +cyanogenmod.power.PerformanceManagerInternal: void activityResumed(android.content.Intent) +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: io.reactivex.Observer downstream +android.didikee.donate.R$attr: int textColorSearchUrl +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_cut_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPadding +com.google.android.material.R$style: int Base_Widget_MaterialComponents_Slider +cyanogenmod.platform.R$string: R$string() +com.turingtechnologies.materialscrollbar.R$id: int snackbar_text +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_percent +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Button +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_edittext +androidx.constraintlayout.widget.R$layout: int abc_popup_menu_header_item_layout +com.google.android.material.R$string: int material_slider_range_end +wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_alphaChannelText +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_pixel +com.google.android.material.R$attr: int layout_constraintVertical_weight +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Line2 +okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV1 +retrofit2.OkHttpCall: boolean canceled +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain rain +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: void close() +cyanogenmod.themes.IThemeService$Stub: android.os.IBinder asBinder() +com.google.android.material.slider.BaseSlider: float getThumbElevation() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: double val +com.xw.repo.bubbleseekbar.R$attr: int bsb_seek_by_section +androidx.legacy.coreutils.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setAqi(java.lang.String) +io.reactivex.internal.disposables.SequentialDisposable: boolean replace(io.reactivex.disposables.Disposable) +androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +androidx.hilt.lifecycle.R$drawable: R$drawable() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableBottomCompat +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_background_transition_holo_dark +wangdaye.com.geometricweather.R$drawable: int abc_ic_go_search_api_material +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setComponent(java.lang.String,java.lang.String) +androidx.preference.R$attr: int fontProviderAuthority +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +androidx.hilt.work.R$bool: int workmanager_test_configuration +androidx.lifecycle.ViewModelProvider$NewInstanceFactory: ViewModelProvider$NewInstanceFactory() +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_track +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: int UnitType +okhttp3.internal.http.CallServerInterceptor: boolean forWebSocket +androidx.fragment.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$string: int item_view_role_description +com.xw.repo.bubbleseekbar.R$attr: int buttonTint +com.google.android.material.R$attr: int cardMaxElevation +androidx.viewpager.R$dimen: int notification_small_icon_size_as_large +com.google.android.material.R$styleable: int ActionBar_progressBarPadding +androidx.customview.R$dimen: int notification_big_circle_margin +com.google.android.material.R$color: int material_blue_grey_900 +wangdaye.com.geometricweather.R$string: int wind_8 +com.turingtechnologies.materialscrollbar.R$attr: int queryBackground +wangdaye.com.geometricweather.R$attr: int checkedChip +com.google.android.material.R$styleable: int SearchView_suggestionRowLayout +androidx.preference.R$attr: int actionBarWidgetTheme +androidx.preference.R$dimen: int hint_pressed_alpha_material_light +androidx.appcompat.R$styleable: int[] GradientColorItem +androidx.viewpager2.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.lifecycle.SavedStateHandleController: void attachToLifecycle(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) +wangdaye.com.geometricweather.R$styleable: int FragmentContainerView_android_name +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(double) +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceTheme +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature temperature +cyanogenmod.weather.CMWeatherManager$2$2: cyanogenmod.weather.CMWeatherManager$2 this$1 +androidx.lifecycle.extensions.R$id: int notification_main_column_container +androidx.vectordrawable.animated.R$drawable: int notification_icon_background +com.google.android.material.R$styleable: int Toolbar_subtitleTextColor +androidx.preference.R$color: int secondary_text_default_material_light +com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonTint +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: CMSettings$InclusiveIntegerRangeValidator(int,int) +retrofit2.RequestFactory$Builder: retrofit2.RequestFactory build() +cyanogenmod.hardware.CMHardwareManager: int FEATURE_COLOR_ENHANCEMENT +wangdaye.com.geometricweather.R$id: int mtrl_view_tag_bottom_padding +androidx.appcompat.R$styleable: int StateListDrawableItem_android_drawable +com.google.android.material.R$drawable: int mtrl_dialog_background +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableRight +androidx.constraintlayout.widget.R$id: int wrap_content +wangdaye.com.geometricweather.R$array: int pollen_unit_voices +androidx.preference.R$styleable: int PreferenceGroup_android_orderingFromXml +androidx.appcompat.R$id: int tag_unhandled_key_listeners +com.google.android.material.R$attr: int toolbarStyle +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: ICMWeatherManager$Stub$Proxy(android.os.IBinder) +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_getLiveLockScreenEnabled +androidx.lifecycle.extensions.R$styleable: int FragmentContainerView_android_name +androidx.recyclerview.widget.RecyclerView: void setItemAnimator(androidx.recyclerview.widget.RecyclerView$ItemAnimator) +androidx.preference.R$drawable: int abc_list_selector_background_transition_holo_light +com.google.android.material.R$id: int select_dialog_listview +com.github.rahatarmanahmed.cpv.CircularProgressView$2 +wangdaye.com.geometricweather.R$drawable: int notif_temp_83 +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setIndicatorPosition(int) +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onNext(retrofit2.Response) +james.adaptiveicon.R$styleable: int MenuItem_contentDescription +io.reactivex.internal.disposables.ArrayCompositeDisposable +io.reactivex.Observable: io.reactivex.Observable fromPublisher(org.reactivestreams.Publisher) +androidx.recyclerview.widget.RecyclerView: int getMinFlingVelocity() +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemIconSize() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetEnd +com.google.android.material.R$dimen: int mtrl_tooltip_minWidth +cyanogenmod.platform.Manifest$permission +wangdaye.com.geometricweather.R$attr: int chipIconVisible +androidx.appcompat.widget.AppCompatEditText: android.view.textclassifier.TextClassifier getTextClassifier() +cyanogenmod.platform.Manifest$permission: java.lang.String PERFORMANCE_ACCESS +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton +james.adaptiveicon.R$color: int tooltip_background_light +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_shift_shortcut_label +retrofit2.Response: java.lang.Object body() +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_shrinkMotionSpec +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_removeUpdates +com.google.android.material.R$id: int accessibility_custom_action_8 +wangdaye.com.geometricweather.R$string: int settings_category_basic +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_padding +okhttp3.Cookie: Cookie(java.lang.String,java.lang.String,long,java.lang.String,java.lang.String,boolean,boolean,boolean,boolean) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_NULL_SHA android.didikee.donate.R$drawable: int abc_btn_check_to_on_mtrl_015 -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicator -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_TopRightDifferentCornerSize -com.google.gson.stream.JsonReader: java.lang.String toString() -com.google.android.material.R$color: int design_dark_default_color_on_background -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSwoopDuration -io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) -wangdaye.com.geometricweather.R$attr: int triggerSlack -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_PULSE -androidx.viewpager.R$drawable: int notification_bg_low -com.xw.repo.bubbleseekbar.R$string: int abc_action_mode_done -androidx.hilt.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleTintMode -com.google.android.material.navigation.NavigationView: void setItemIconPadding(int) -wangdaye.com.geometricweather.R$id: int transition_position -androidx.preference.R$style: int Widget_AppCompat_RatingBar_Indicator -io.reactivex.Observable: io.reactivex.Observable fromArray(java.lang.Object[]) -james.adaptiveicon.R$attr: int buttonPanelSideLayout -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginBottom -wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_2_0_padding_bottom -cyanogenmod.providers.CMSettings$System: java.lang.String USE_EDGE_SERVICE_FOR_GESTURES -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: int getChartTop() -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: void setValue(java.lang.Object) -wangdaye.com.geometricweather.R$string: int abc_menu_shift_shortcut_label -com.google.android.material.R$styleable: int TextInputLayout_startIconDrawable -com.google.android.material.R$dimen: int notification_main_column_padding_top -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$drawable: int notif_temp_1 -androidx.appcompat.resources.R$dimen: int notification_main_column_padding_top -com.google.android.material.R$drawable: int abc_switch_track_mtrl_alpha -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Caption -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentStyle -android.didikee.donate.R$style: int TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: MfWarningsResult$WarningComments$WarningTextBlocItem() -okhttp3.internal.tls.BasicTrustRootIndex: boolean equals(java.lang.Object) -cyanogenmod.externalviews.ExternalView: void onActivityDestroyed(android.app.Activity) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onComplete() -android.support.v4.app.INotificationSideChannel$Stub$Proxy: INotificationSideChannel$Stub$Proxy(android.os.IBinder) -androidx.vectordrawable.R$id: int normal -com.google.android.material.R$attr: int barrierAllowsGoneWidgets -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit -wangdaye.com.geometricweather.R$styleable: int Transform_android_rotation -wangdaye.com.geometricweather.R$string: int wind_3 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindLevel -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6 -wangdaye.com.geometricweather.R$styleable: int ArcProgress_text_size -com.google.android.material.R$attr: int popupTheme -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton -james.adaptiveicon.R$attr: int dividerHorizontal -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int ISOLATED_THUNDERSTORMS -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_3 -androidx.fragment.R$dimen: R$dimen() -androidx.transition.R$drawable: int notification_bg_low -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontWeight -androidx.preference.R$drawable: int btn_checkbox_unchecked_mtrl -com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_toId -okhttp3.internal.http2.Http2Connection$PingRunnable -wangdaye.com.geometricweather.R$id: int container_main_first_daily_card_container -retrofit2.http.Part: java.lang.String encoding() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableStartCompat -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() -wangdaye.com.geometricweather.settings.dialogs.AdaptiveIconDialog -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: double Value -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Fullscreen -cyanogenmod.weatherservice.IWeatherProviderService -androidx.hilt.work.R$styleable: int GradientColor_android_endColor -androidx.loader.R$attr: int fontProviderPackage -androidx.activity.R$id: int accessibility_custom_action_4 -okhttp3.internal.http2.Http2Reader: void readHeaders(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -androidx.lifecycle.extensions.R$attr -androidx.preference.R$id: int tag_accessibility_clickable_spans -com.google.android.material.R$attr: int iconTintMode -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -cyanogenmod.app.ICustomTileListener$Stub: java.lang.String DESCRIPTOR -com.xw.repo.bubbleseekbar.R$id: int action_bar_subtitle -com.jaredrummler.android.colorpicker.R$color: int button_material_light -com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_text_padding_left -com.google.android.material.R$attr: int tooltipForegroundColor -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeTextType -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -com.google.android.material.R$id: int easeIn -androidx.recyclerview.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String content -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String province -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeStyle -com.turingtechnologies.materialscrollbar.R$layout: int abc_search_view -androidx.appcompat.R$style: int TextAppearance_AppCompat_Inverse -androidx.constraintlayout.widget.R$attr: int flow_verticalStyle -com.google.android.material.R$attr: int flow_verticalBias -com.google.android.material.navigation.NavigationView: int getHeaderCount() -androidx.constraintlayout.widget.R$attr: int maxAcceleration -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconDrawable -wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_tint -android.didikee.donate.R$attr: int textColorAlertDialogListItem -androidx.appcompat.widget.Toolbar: int getCurrentContentInsetStart() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer totalCloudCover -wangdaye.com.geometricweather.R$string: int get_more +androidx.legacy.coreutils.R$dimen: int notification_main_column_padding_top +cyanogenmod.profiles.AirplaneModeSettings: boolean isDirty() +com.xw.repo.bubbleseekbar.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$color: int primary_text_default_material_light +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_Design_TabLayout +io.reactivex.subjects.PublishSubject$PublishDisposable: PublishSubject$PublishDisposable(io.reactivex.Observer,io.reactivex.subjects.PublishSubject) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Ceiling +okhttp3.internal.ws.RealWebSocket: boolean send(java.lang.String) +androidx.constraintlayout.widget.R$attr: int constraintSetStart +androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +okhttp3.Call: boolean isExecuted() +wangdaye.com.geometricweather.R$layout: int material_clock_display_divider +com.google.android.material.R$dimen: int mtrl_calendar_header_content_padding_fullscreen +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX() +james.adaptiveicon.R$attr: int searchIcon +android.didikee.donate.R$color: int abc_secondary_text_material_light +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconSize +wangdaye.com.geometricweather.R$layout: int test_action_chip +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: long maxAge +wangdaye.com.geometricweather.R$color: int colorRipple +wangdaye.com.geometricweather.R$drawable: int ic_keyboard_black_24dp +cyanogenmod.profiles.ConnectionSettings: void setOverride(boolean) +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: java.lang.String Unit +com.jaredrummler.android.colorpicker.R$dimen: int notification_right_icon_size +com.google.android.material.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.R$drawable: int weather_hail_3 +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.lang.String pubTime +wangdaye.com.geometricweather.R$attr: int bottom_text +android.didikee.donate.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +androidx.work.ArrayCreatingInputMerger: ArrayCreatingInputMerger() +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver this$0 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_default +androidx.transition.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$styleable: int Fragment_android_tag +androidx.appcompat.R$styleable: int AppCompatTheme_colorPrimaryDark +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeStyle +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context) +okhttp3.Cache: int writeSuccessCount() +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean isDisposed() +cyanogenmod.app.StatusBarPanelCustomTile: int initialPid +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX() +cyanogenmod.os.Concierge$ParcelInfo: Concierge$ParcelInfo(android.os.Parcel,int) +androidx.appcompat.R$dimen: int notification_content_margin_start +androidx.swiperefreshlayout.R$layout +cyanogenmod.providers.DataUsageContract +com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_android_popupBackground +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getMoonPhaseDescription() +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_3 +wangdaye.com.geometricweather.R$string: int feedback_subtitle_data +com.xw.repo.bubbleseekbar.R$attr: int actionBarTheme +androidx.viewpager2.R$styleable +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listDividerAlertDialog +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_tooltipForegroundColor +wangdaye.com.geometricweather.R$attr: int scrimVisibleHeightTrigger +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CollapsingToolbar +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks mKeyguardExternalViewCallbacks +com.turingtechnologies.materialscrollbar.R$id: int search_edit_frame +androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_3_material +com.google.android.material.R$attr: int actionModeWebSearchDrawable +com.turingtechnologies.materialscrollbar.R$attr: int drawerArrowStyle +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +retrofit2.Platform: java.lang.Object invokeDefaultMethod(java.lang.reflect.Method,java.lang.Class,java.lang.Object,java.lang.Object[]) +com.google.android.material.badge.BadgeDrawable$SavedState: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +okhttp3.internal.http2.Hpack$Reader: int dynamicTableIndex(int) +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_color_selector +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_negativeButtonText +okhttp3.internal.platform.AndroidPlatform$CloseGuard: AndroidPlatform$CloseGuard(java.lang.reflect.Method,java.lang.reflect.Method,java.lang.reflect.Method) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.work.R$color: int notification_action_color_filter +cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(android.os.Parcel) +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HistoryEntityDao getHistoryEntityDao() +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setExpandedStyle(cyanogenmod.app.CustomTile$ExpandedStyle) +androidx.customview.R$dimen: int notification_right_icon_size +androidx.preference.PreferenceManager: void setOnPreferenceTreeClickListener(androidx.preference.PreferenceManager$OnPreferenceTreeClickListener) +androidx.recyclerview.R$id: int chronometer +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Empty +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_dark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: long EpochRise +androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_material +androidx.hilt.R$id: int accessibility_custom_action_3 +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isPrecipitation() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: java.util.List value +androidx.appcompat.R$string: int abc_shareactionprovider_share_with_application +androidx.customview.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation BOTTOM +androidx.viewpager.R$color: int ripple_material_light +com.google.android.material.R$styleable: int AppCompatTheme_windowFixedWidthMajor +wangdaye.com.geometricweather.R$id: int progress_circular +cyanogenmod.app.ILiveLockScreenChangeListener +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupMenu_Overflow +retrofit2.Response: Response(okhttp3.Response,java.lang.Object,okhttp3.ResponseBody) +wangdaye.com.geometricweather.R$styleable: int Transition_motionInterpolator +com.google.android.material.tabs.TabLayout: int getSelectedTabPosition() +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: java.lang.Object invoke(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int MaterialButton_shapeAppearance +cyanogenmod.platform.R$integer: R$integer() +com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_950 +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_11 +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String type +wangdaye.com.geometricweather.R$string: int feedback_black_text +android.didikee.donate.R$styleable: int AppCompatTheme_switchStyle +androidx.hilt.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_29 +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String getTime(android.content.Context,java.util.Date) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeWetBulbTemperature() +androidx.appcompat.R$styleable: int AppCompatTheme_panelMenuListWidth +wangdaye.com.geometricweather.R$attr: int collapseContentDescription +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_splitTrack +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_requireAdaptiveBacklightForSunlightEnhancement +com.google.android.material.appbar.CollapsingToolbarLayout: java.lang.CharSequence getTitle() +wangdaye.com.geometricweather.R$drawable: int ic_tag_off +androidx.preference.R$styleable: int Spinner_android_prompt +com.google.android.material.R$layout: int abc_select_dialog_material +com.turingtechnologies.materialscrollbar.R$style: int Base_V28_Theme_AppCompat_Light +com.google.android.material.R$attr: int layout_constraintBottom_toTopOf +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getHeaderHeight() +com.google.android.material.R$style: int TextAppearance_AppCompat_Title +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int prefetch +wangdaye.com.geometricweather.R$attr: int iconStartPadding +wangdaye.com.geometricweather.R$attr: int negativeButtonText +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListPopupWindow +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_corner_radius +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout +cyanogenmod.externalviews.IExternalViewProvider$Stub +androidx.activity.R$id: int text +wangdaye.com.geometricweather.R$id: int cpv_color_picker_view +androidx.hilt.work.R$dimen: int notification_main_column_padding_top +androidx.preference.R$styleable: int AppCompatTheme_windowFixedWidthMinor +cyanogenmod.weather.WeatherLocation$1: cyanogenmod.weather.WeatherLocation createFromParcel(android.os.Parcel) +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns +wangdaye.com.geometricweather.R$styleable: int MockView_mock_label +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_shapeAppearanceOverlay +androidx.viewpager.R$style: int Widget_Compat_NotificationActionText +io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: void setDefenseIcon(java.lang.String) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_orientation +okhttp3.RequestBody: void writeTo(okio.BufferedSink) +wangdaye.com.geometricweather.R$styleable: int ActionBar_titleTextStyle +androidx.appcompat.R$dimen: int abc_action_bar_overflow_padding_end_material +james.adaptiveicon.R$styleable: int MenuView_subMenuArrow +okhttp3.WebSocket: boolean send(java.lang.String) +androidx.appcompat.resources.R$integer: int status_bar_notification_info_maxnum +com.jaredrummler.android.colorpicker.ColorPanelView: int getColor() +androidx.preference.R$attr: int switchTextOn +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder supportsTlsExtensions(boolean) +cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(android.os.Parcel) +james.adaptiveicon.R$styleable: int ActionBar_contentInsetEnd +androidx.preference.R$drawable: int abc_list_focused_holo +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_CBC_SHA +com.google.android.material.progressindicator.ProgressIndicator: void setProgress(int) +androidx.preference.R$style: int Widget_AppCompat_Spinner_DropDown +wangdaye.com.geometricweather.R$attr: int switchPadding +cyanogenmod.externalviews.KeyguardExternalView$2: boolean requestDismiss() +com.google.gson.stream.JsonReader: int[] stack +com.google.android.material.R$id: int material_minute_tv +com.google.android.material.R$string: int material_timepicker_minute +androidx.preference.R$layout: int abc_activity_chooser_view +com.google.android.material.R$styleable: int[] MotionScene +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setThunderstormPrecipitation(java.lang.Float) +androidx.appcompat.R$styleable: int Toolbar_titleMarginEnd +com.google.android.material.R$dimen: int tooltip_precise_anchor_extra_offset +com.turingtechnologies.materialscrollbar.R$attr: int insetForeground +wangdaye.com.geometricweather.R$id: int titleDividerNoCustom +androidx.appcompat.R$drawable: int notification_bg_low_normal +com.google.android.material.R$layout: int abc_list_menu_item_layout +wangdaye.com.geometricweather.R$attr: int allowStacking +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +io.reactivex.internal.operators.observable.ObservableGroupBy$State +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawableItem_android_drawable +android.didikee.donate.R$id: int action_bar_activity_content +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog +okhttp3.Cookie: java.lang.String name +androidx.constraintlayout.widget.R$attr: int colorPrimary +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginBottom +android.didikee.donate.R$drawable: int notification_bg_normal +okhttp3.internal.http2.Http2Connection: void access$000(okhttp3.internal.http2.Http2Connection) +androidx.lifecycle.extensions.R$anim: int fragment_fade_exit +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackground(android.graphics.drawable.Drawable) okio.ByteString: boolean rangeEquals(int,okio.ByteString,int,int) -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.turingtechnologies.materialscrollbar.R$id: int center -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_textOn -james.adaptiveicon.R$id: int list_item -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_popupMenuStyle -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void dispose() -wangdaye.com.geometricweather.R$id: int accessibility_action_clickable_span -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_arrowShaftLength -androidx.constraintlayout.widget.R$attr: int actionBarWidgetTheme -com.jaredrummler.android.colorpicker.R$attr: int navigationMode -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: boolean isExecuted() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_8 -androidx.swiperefreshlayout.R$dimen: int notification_right_icon_size -android.didikee.donate.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -androidx.constraintlayout.widget.R$styleable: int SearchView_commitIcon -com.bumptech.glide.integration.okhttp.R$dimen: int compat_notification_large_icon_max_width -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter nighttimeWeatherCodeConverter -com.google.android.material.R$styleable: int Constraint_layout_constraintCircleAngle -androidx.preference.R$layout: int abc_dialog_title_material -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalAlign -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int NO_REQUEST_NO_VALUE -com.turingtechnologies.materialscrollbar.R$attr: int title -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderFetchTimeout -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_width_overflow_material -android.didikee.donate.R$dimen: int abc_edit_text_inset_bottom_material -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_maxActionInlineWidth -com.google.android.material.R$attr: int behavior_halfExpandedRatio -androidx.viewpager.R$id -cyanogenmod.weather.RequestInfo$Builder: RequestInfo$Builder(cyanogenmod.weather.IRequestInfoListener) -androidx.preference.R$styleable: int PreferenceImageView_android_maxHeight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric Metric -com.google.android.material.chip.Chip: void setRippleColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconTint -androidx.legacy.coreutils.R$id: int text -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_DEFAULT -wangdaye.com.geometricweather.R$id: int labeled -com.google.android.material.R$id: int spline -androidx.appcompat.widget.Toolbar: void setCollapsible(boolean) -wangdaye.com.geometricweather.R$id: int jumpToEnd -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void subscribe() -james.adaptiveicon.R$styleable: int AppCompatTheme_android_windowIsFloating -wangdaye.com.geometricweather.R$dimen: int tooltip_precise_anchor_threshold -cyanogenmod.themes.IThemeService$Stub$Proxy: void removeUpdates(cyanogenmod.themes.IThemeChangeListener) -wangdaye.com.geometricweather.R$id: int moldValue -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: ObservableFlatMapSingle$FlatMapSingleObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -com.google.android.material.R$attr: int layout_constraintCircleAngle -android.didikee.donate.R$styleable: int CompoundButton_buttonCompat -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircleAngle -com.google.android.material.internal.NavigationMenuItemView: void setIconPadding(int) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Medium -android.didikee.donate.R$styleable: int AppCompatTheme_radioButtonStyle -wangdaye.com.geometricweather.R$id: int activity_widget_config_viewStyleTitle -androidx.drawerlayout.R$id: int text2 -wangdaye.com.geometricweather.R$drawable: int design_ic_visibility_off -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl -wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context,android.util.AttributeSet,int) -android.didikee.donate.R$style: int Widget_AppCompat_Spinner -okhttp3.Dispatcher: void setMaxRequestsPerHost(int) -androidx.appcompat.R$attr: int fontProviderPackage -android.didikee.donate.R$styleable: int ActionBar_backgroundStacked -com.google.android.material.R$attr: int duration -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingLeft -cyanogenmod.app.suggest.ApplicationSuggestion: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.util.List text -androidx.legacy.coreutils.R$id: int tag_transition_group -androidx.constraintlayout.widget.R$attr: int textColorAlertDialogListItem -com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: FloatingActionButton$Behavior(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$attr: int actionBarSize -com.turingtechnologies.materialscrollbar.R$style: int Platform_AppCompat -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.HourlyEntity,int) -wangdaye.com.geometricweather.R$string: int tag_aqi -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void dispose() -com.google.android.material.R$interpolator: int mtrl_linear_out_slow_in -androidx.fragment.R$attr: int fontProviderPackage -com.xw.repo.bubbleseekbar.R$attr: int trackTint -okio.Buffer: okio.Buffer readFrom(java.io.InputStream) -androidx.lifecycle.extensions.R$drawable: R$drawable() -com.xw.repo.bubbleseekbar.R$attr: int actionModeSplitBackground -wangdaye.com.geometricweather.common.rxjava.BaseObserver: BaseObserver() -io.reactivex.internal.schedulers.AbstractDirectTask: void dispose() -com.turingtechnologies.materialscrollbar.R$attr: int cornerRadius -james.adaptiveicon.R$dimen: int tooltip_precise_anchor_threshold -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getNumGammaControls -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorFullWidth -androidx.work.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_black -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_23 -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_gradientRadius -androidx.lifecycle.extensions.R$drawable: int notification_bg_low -androidx.vectordrawable.R$id: int accessibility_custom_action_28 -androidx.appcompat.widget.ActionMenuView -okio.Pipe$PipeSource: long read(okio.Buffer,long) -okhttp3.HttpUrl: java.lang.String password -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int otherState -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setStatus(int) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_20 -androidx.constraintlayout.widget.R$id: int custom -org.greenrobot.greendao.AbstractDaoSession: long insert(java.lang.Object) -androidx.hilt.R$anim -androidx.fragment.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.R$id: int chain -wangdaye.com.geometricweather.R$id: int all -androidx.lifecycle.SavedStateHandleController: boolean mIsAttached -androidx.work.R$id: int line1 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_128 -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Body2 -com.xw.repo.bubbleseekbar.R$attr: int editTextColor -wangdaye.com.geometricweather.R$attr: int cpv_colorShape -com.google.android.material.R$attr: int passwordToggleContentDescription -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: ObservableReplay$InnerDisposable(io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver,io.reactivex.Observer) -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemTextColor -com.google.android.material.R$attr: int onCross -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_disabled_z -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_14 -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float totalPrecipitation -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircleRadius -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.R$styleable: int MotionLayout_applyMotionScene -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_ENABLED -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getRealFeelShaderTemperature() -androidx.constraintlayout.widget.R$id: int pathRelative -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityStopped(android.app.Activity) -wangdaye.com.geometricweather.R$styleable: int SwitchImageButton_drawable_res_on -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState valueOf(java.lang.String) -androidx.activity.OnBackPressedDispatcher$LifecycleOnBackPressedCancellable -cyanogenmod.providers.CMSettings$3: boolean validate(java.lang.String) -cyanogenmod.util.ColorUtils$1: int compare(java.lang.Object,java.lang.Object) -okio.RealBufferedSource: int read(byte[]) -com.xw.repo.bubbleseekbar.R$styleable: int[] CoordinatorLayout_Layout -androidx.appcompat.widget.AppCompatImageView: android.content.res.ColorStateList getSupportImageTintList() -com.google.android.material.R$attr: int lineHeight -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -james.adaptiveicon.R$styleable: int Toolbar_titleMarginBottom -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onSuccess(java.lang.Object) -james.adaptiveicon.R$styleable: int FontFamilyFont_fontStyle -cyanogenmod.providers.WeatherContract: android.net.Uri AUTHORITY_URI -androidx.preference.R$styleable: int AppCompatTextView_autoSizePresetSizes -androidx.vectordrawable.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: javax.inject.Provider disposableProvider -cyanogenmod.app.ILiveLockScreenManagerProvider: void cancelLiveLockScreen(java.lang.String,int,int) -james.adaptiveicon.R$dimen: int abc_text_size_display_4_material -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_25 -com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_min -com.google.android.material.snackbar.SnackbarContentLayout: SnackbarContentLayout(android.content.Context) -com.google.android.material.R$xml -com.google.android.material.R$attr: int isMaterialTheme -wangdaye.com.geometricweather.R$attr: int text_size -wangdaye.com.geometricweather.R$style -androidx.coordinatorlayout.R$attr: int fontProviderCerts -cyanogenmod.app.BaseLiveLockManagerService -com.google.android.material.slider.RangeSlider: float getThumbStrokeWidth() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: AccuDailyResult$DailyForecasts$Night$Snow() +androidx.appcompat.R$style: int Widget_AppCompat_Button_Borderless_Colored +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_height_material +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Subhead +wangdaye.com.geometricweather.R$drawable: int widget_trend_hourly +androidx.activity.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_textColor +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +androidx.activity.R$id: int time +com.google.android.material.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +androidx.appcompat.R$styleable: int AppCompatTheme_checkboxStyle +wangdaye.com.geometricweather.R$animator: int weather_sleet_1 +wangdaye.com.geometricweather.R$dimen: int notification_action_text_size +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat +okhttp3.EventListener +androidx.core.R$dimen: int notification_media_narrow_margin +androidx.appcompat.R$attr: int listPreferredItemPaddingRight +android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_Switch +android.didikee.donate.R$layout: int abc_expanded_menu_layout +wangdaye.com.geometricweather.R$attr: int layout_collapseMode +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_28 +cyanogenmod.platform.R: R() +james.adaptiveicon.R$styleable: int FontFamily_fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_22 +com.google.android.material.R$styleable: int Chip_android_textColor +android.didikee.donate.R$style: int Base_Widget_AppCompat_ProgressBar +io.reactivex.Observable: io.reactivex.Observable distinct() androidx.appcompat.resources.R$id: int text -androidx.appcompat.R$styleable: int AppCompatTextView_fontFamily -androidx.viewpager2.widget.ViewPager2: int getPageSize() -com.jaredrummler.android.colorpicker.R$attr: int state_above_anchor -com.bumptech.glide.R$id: int info -android.didikee.donate.R$dimen: int abc_action_bar_default_height_material -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled -okhttp3.Route: java.net.InetSocketAddress socketAddress() -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks mKeyguardExternalViewCallbacks -androidx.appcompat.R$attr: int ratingBarStyleIndicator -androidx.constraintlayout.widget.R$drawable: int abc_btn_colored_material -androidx.constraintlayout.widget.R$id: int italic -okhttp3.MultipartBody$Builder: okio.ByteString boundary -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: CaiYunMainlyResult$AlertsBean() -androidx.lifecycle.extensions.R$integer -cyanogenmod.weatherservice.ServiceRequestResult: java.lang.String access$402(cyanogenmod.weatherservice.ServiceRequestResult,java.lang.String) -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks access$100(cyanogenmod.externalviews.KeyguardExternalView) -okhttp3.Cookie: okhttp3.Cookie parse(long,okhttp3.HttpUrl,java.lang.String) -android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_cancelAll -androidx.recyclerview.R$id: int accessibility_custom_action_29 -com.google.android.material.R$color: int abc_btn_colored_borderless_text_material -wangdaye.com.geometricweather.R$drawable: int ic_about -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: ObservableConcatMap$SourceObserver$InnerObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver) -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -com.google.android.material.R$attr: int shrinkMotionSpec -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Caption -wangdaye.com.geometricweather.R$attr: int showPaths -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: long serialVersionUID -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_dividerPadding -cyanogenmod.weather.WeatherInfo$1: java.lang.Object createFromParcel(android.os.Parcel) -android.didikee.donate.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_checkableBehavior -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.R$styleable: int AppCompatTheme_actionBarPopupTheme -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_UNDERSCORES +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_snackbar_margin +james.adaptiveicon.R$attr: int titleTextAppearance +james.adaptiveicon.R$layout: int abc_screen_toolbar +androidx.room.RoomDatabase$JournalMode +androidx.appcompat.widget.SwitchCompat: void setThumbResource(int) +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: DefaultCallAdapterFactory$ExecutorCallbackCall(java.util.concurrent.Executor,retrofit2.Call) +com.turingtechnologies.materialscrollbar.R$attr: int actionModeCloseDrawable +androidx.preference.R$style: int TextAppearance_Compat_Notification_Info +com.google.android.material.R$styleable: int Layout_barrierMargin +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_inverse_material_light +androidx.appcompat.R$string: int abc_capital_on +androidx.lifecycle.ReflectiveGenericLifecycleObserver: ReflectiveGenericLifecycleObserver(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingLeft +retrofit2.Retrofit: void validateServiceInterface(java.lang.Class) +androidx.loader.R$style +cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder mService +com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_android_color +com.google.android.material.R$attr: int gestureInsetBottomIgnored +androidx.customview.R$dimen +android.didikee.donate.R$styleable: int MenuItem_alphabeticModifiers +wangdaye.com.geometricweather.main.fragments.MainFragment: MainFragment() +wangdaye.com.geometricweather.R$style: int Widget_Design_AppBarLayout +androidx.swiperefreshlayout.R$dimen: int notification_main_column_padding_top +okio.ByteString: int indexOf(byte[]) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification +androidx.constraintlayout.widget.R$styleable: int Transition_constraintSetEnd +cyanogenmod.externalviews.ExternalViewProviderService$1: cyanogenmod.externalviews.ExternalViewProviderService this$0 +com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_android_background +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type RIGHT +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedWidthMajor +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableTop +android.didikee.donate.R$attr: int titleMargins +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setPubTime(java.util.Date) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.Observer downstream +james.adaptiveicon.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endColor +com.google.android.material.R$attr: int paddingBottomSystemWindowInsets +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: int Value +com.google.android.material.R$layout: int mtrl_alert_select_dialog_singlechoice +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: AccuDailyResult$DailyForecasts$Night$Wind$Speed() +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_gapBetweenBars +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.List defense +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_progressBarPadding +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver) +androidx.appcompat.R$attr: int popupTheme +androidx.coordinatorlayout.R$id: int left +okhttp3.internal.platform.Platform: Platform() +james.adaptiveicon.R$attr: int suggestionRowLayout +cyanogenmod.app.suggest.AppSuggestManager: boolean DEBUG +wangdaye.com.geometricweather.settings.fragments.SettingsFragment +androidx.constraintlayout.widget.R$id: int home +androidx.dynamicanimation.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$styleable: int Slider_thumbElevation +cyanogenmod.app.BaseLiveLockManagerService: BaseLiveLockManagerService() +com.google.android.material.R$attr: int startIconCheckable +com.google.gson.stream.JsonWriter: void beforeValue() +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int POWER_OFF_ALARM_STATE +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_anchor +androidx.appcompat.R$dimen: int abc_text_size_medium_material +androidx.constraintlayout.widget.R$id: int action_image +retrofit2.ParameterHandler$FieldMap: retrofit2.Converter valueConverter +androidx.core.R$styleable +james.adaptiveicon.R$styleable: int AppCompatTheme_viewInflaterClass +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_only_start_selected +com.turingtechnologies.materialscrollbar.R$attr: int radioButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_logo +androidx.preference.R$style: int Base_V21_Theme_AppCompat +androidx.hilt.work.R$dimen: int notification_right_side_padding_top +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +com.google.android.material.R$string: int bottomsheet_action_expand_halfway +cyanogenmod.app.LiveLockScreenManager: android.content.Context mContext +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_layout +wangdaye.com.geometricweather.R$dimen: int hint_alpha_material_light +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService +com.xw.repo.bubbleseekbar.R$attr: int tooltipText +okhttp3.CacheControl: boolean noTransform +com.google.android.material.R$color: int material_slider_inactive_track_color +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_108 +retrofit2.RequestFactory$Builder: RequestFactory$Builder(retrofit2.Retrofit,java.lang.reflect.Method) +io.reactivex.internal.observers.BasicIntQueueDisposable: BasicIntQueueDisposable() +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: kotlin.coroutines.Continuation $continuation +androidx.constraintlayout.widget.R$dimen: int abc_control_padding_material +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken[] values() +androidx.appcompat.R$attr: int spinnerDropDownItemStyle +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_showMotionSpec +com.xw.repo.bubbleseekbar.R$drawable: int abc_tab_indicator_mtrl_alpha +androidx.appcompat.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +cyanogenmod.app.ThemeVersion$ComponentVersion: int getMinVersion() +com.google.android.material.R$id: int async +com.jaredrummler.android.colorpicker.R$drawable: int cpv_alpha +androidx.appcompat.R$style: int Widget_AppCompat_SeekBar_Discrete +com.google.android.material.R$styleable: int BottomNavigationView_itemRippleColor +androidx.swiperefreshlayout.R$attr: int fontStyle +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +cyanogenmod.app.IProfileManager$Stub$Proxy +androidx.preference.R$style: int TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon Moon +androidx.swiperefreshlayout.R$styleable: int GradientColorItem_android_offset +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperText +wangdaye.com.geometricweather.R$attr: int scrimAnimationDuration +com.google.android.material.R$styleable: int MenuView_android_verticalDivider +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int START +okhttp3.internal.connection.ConnectionSpecSelector: boolean connectionFailed(java.io.IOException) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_toLeftOf +cyanogenmod.app.CustomTile$ExpandedStyle: java.lang.String toString() +androidx.transition.R$drawable: int notification_template_icon_low_bg +okhttp3.Protocol: okhttp3.Protocol[] $VALUES +androidx.constraintlayout.widget.R$styleable: int Transform_android_elevation +com.turingtechnologies.materialscrollbar.R$attr: int colorButtonNormal +com.xw.repo.bubbleseekbar.R$attr: int titleMargins +wangdaye.com.geometricweather.R$id: int notification_multi_city_3 +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_hideOnScroll +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCutDrawable +okhttp3.internal.connection.StreamAllocation: void acquire(okhttp3.internal.connection.RealConnection,boolean) +androidx.preference.R$style: int Animation_AppCompat_DropDownUp +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setNestedScrollingEnabled(boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textStyle +com.google.android.material.R$attr: int constraintSet +androidx.appcompat.R$styleable: int AlertDialog_multiChoiceItemLayout +com.github.rahatarmanahmed.cpv.CircularProgressView$3: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: android.app.Application mApplication +androidx.constraintlayout.widget.R$attr: int colorControlHighlight +james.adaptiveicon.R$attr: int ratingBarStyleIndicator +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_subtitle_top_margin_material +androidx.constraintlayout.widget.R$attr: int flow_lastVerticalStyle +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startColor +androidx.preference.R$dimen: int abc_switch_padding +com.google.android.material.R$styleable: int AppCompatTextView_textAllCaps +androidx.preference.R$color: int material_blue_grey_800 +com.jaredrummler.android.colorpicker.R$attr: int disableDependentsState +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean fused +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias +com.google.android.material.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.turingtechnologies.materialscrollbar.R$attr: int fabCradleMargin +wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendDailyProvider +com.google.android.material.chip.Chip: void setCloseIconVisible(int) +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean) +wangdaye.com.geometricweather.R$string: int pressure +com.bumptech.glide.R$layout +androidx.preference.R$style: int PreferenceFragment +com.google.android.material.R$color: int foreground_material_dark +cyanogenmod.app.LiveLockScreenInfo +com.github.rahatarmanahmed.cpv.CircularProgressView$7: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +com.google.android.material.slider.Slider: java.lang.CharSequence getAccessibilityClassName() +androidx.appcompat.R$id: int accessibility_custom_action_10 +okhttp3.internal.http2.Http2Stream: void addBytesToWriteWindow(long) +androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: void setServiceRequestState(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.ServiceRequestResult,int) +okhttp3.internal.Util: int decodeHexDigit(char) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeApparentTemperature +androidx.vectordrawable.R$dimen: int compat_control_corner_material +androidx.constraintlayout.widget.R$string: int abc_capital_off +android.didikee.donate.R$dimen: int notification_media_narrow_margin +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: ObservableSkipLastTimed$SkipLastTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,boolean) +wangdaye.com.geometricweather.R$attr: int tabIconTint +io.reactivex.internal.observers.LambdaObserver: boolean hasCustomOnError() +com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Primary +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_BottomSheetDialog +androidx.viewpager.widget.ViewPager: void removeOnAdapterChangeListener(androidx.viewpager.widget.ViewPager$OnAdapterChangeListener) +androidx.lifecycle.extensions.R$styleable: int[] Fragment +android.didikee.donate.R$color: int abc_search_url_text_pressed +androidx.recyclerview.R$attr: int fontProviderQuery +com.google.android.material.chip.Chip: float getChipCornerRadius() +wangdaye.com.geometricweather.R$attr: int rv_side +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int[] KeyFramesAcceleration +wangdaye.com.geometricweather.R$attr: int lastBaselineToBottomHeight +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_dither +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_left_mtrl_dark +okhttp3.internal.http.HttpHeaders: long contentLength(okhttp3.Response) +android.didikee.donate.R$styleable: int AppCompatTextView_drawableTintMode +james.adaptiveicon.R$attr: int navigationMode +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginTop +okhttp3.internal.http2.Http2Connection: long intervalPingsSent +com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_bottom_material +com.google.android.material.R$drawable: int abc_control_background_material +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: MfWarningsResult$WarningTimelaps$WarningTimelapsItem() +cyanogenmod.app.ICustomTileListener: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +androidx.appcompat.R$attr: int divider +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSyncDuration +james.adaptiveicon.R$attr: int buttonPanelSideLayout +wangdaye.com.geometricweather.R$animator: int design_fab_show_motion_spec +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ImageButton +com.google.android.material.R$dimen: int abc_text_size_button_material +wangdaye.com.geometricweather.R$drawable: int abc_ic_search_api_material +com.google.android.material.R$layout: int design_layout_tab_icon +okhttp3.internal.ws.WebSocketWriter: boolean activeWriter +androidx.viewpager.widget.ViewPager$SavedState +wangdaye.com.geometricweather.R$integer: R$integer() +okhttp3.Request: java.lang.String method() +cyanogenmod.weather.WeatherInfo$Builder: java.util.List mForecastList +cyanogenmod.providers.CMSettings$Secure: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) +cyanogenmod.app.Profile$1: Profile$1() +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: retrofit2.Call call +io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_CONSUMED +cyanogenmod.profiles.LockSettings: void processOverride(android.content.Context,com.android.internal.policy.IKeyguardService) +cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem(android.os.Parcel) +androidx.fragment.R$id: int accessibility_custom_action_23 +androidx.customview.R$dimen: int compat_notification_large_icon_max_width +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeMinTextSize +james.adaptiveicon.R$attr: R$attr() +james.adaptiveicon.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_31 +android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +androidx.lifecycle.ComputableLiveData$1: ComputableLiveData$1(androidx.lifecycle.ComputableLiveData) +okhttp3.Cache$2: okhttp3.Cache this$0 +androidx.constraintlayout.widget.R$color: int abc_primary_text_material_dark +com.google.android.material.R$dimen: int material_clock_size +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean +androidx.appcompat.R$styleable: int TextAppearance_android_textColorHint +com.jaredrummler.android.colorpicker.R$dimen: int abc_panel_menu_list_width +cyanogenmod.app.ICMTelephonyManager: void setDataConnectionSelectedOnSub(int) +com.google.android.material.R$styleable: int Chip_chipIconVisible +james.adaptiveicon.R$dimen: int abc_button_padding_vertical_material +wangdaye.com.geometricweather.R$attr: int layout_constrainedHeight +wangdaye.com.geometricweather.R$anim: int x2_decelerate_interpolator +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +okhttp3.MultipartBody: okhttp3.MediaType contentType() +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_HOMESCREEN +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_summaryOff +wangdaye.com.geometricweather.R$id: int clear_text +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingEnd +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitation +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginBottom +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: int nameId +androidx.fragment.R$drawable: int notification_bg +cyanogenmod.hardware.ICMHardwareService: int[] getDisplayGammaCalibration(int) +james.adaptiveicon.R$string: int abc_action_bar_home_description +com.google.android.material.R$dimen: int abc_action_bar_overflow_padding_end_material +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Medium +com.google.android.material.R$color: int mtrl_textinput_default_box_stroke_color +androidx.appcompat.R$styleable: int TextAppearance_android_typeface +com.google.android.material.R$styleable: int KeyCycle_android_translationZ +com.google.android.material.R$attr: int closeIconEnabled +james.adaptiveicon.R$styleable: int MenuView_android_headerBackground +com.google.android.material.slider.BaseSlider: void setHaloRadiusResource(int) +com.google.android.material.R$id: int accessibility_custom_action_26 +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_switchTextOff +androidx.preference.R$styleable: int MenuItem_alphabeticModifiers +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontStyle +androidx.appcompat.R$layout: int abc_alert_dialog_material +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_switchTextOff +cyanogenmod.providers.CMSettings$System: java.lang.String PROXIMITY_ON_WAKE +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX wind +com.bumptech.glide.load.HttpException: HttpException(java.lang.String,int,java.lang.Throwable) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_NoActionBar +android.didikee.donate.R$drawable: int abc_cab_background_internal_bg +androidx.work.R$id: int forever +okhttp3.internal.connection.RealConnection: void establishProtocol(okhttp3.internal.connection.ConnectionSpecSelector,int,okhttp3.Call,okhttp3.EventListener) +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_holo_dark +com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_radio +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_verticalDivider +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEV_FORCE_SHOW_NAVBAR +wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +okio.Util: boolean arrayRangeEquals(byte[],int,byte[],int,int) +android.support.v4.app.RemoteActionCompatParcelizer +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf +james.adaptiveicon.R$styleable: int FontFamily_fontProviderPackage +androidx.hilt.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setUrl(java.lang.String) +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: long bytesRead +wangdaye.com.geometricweather.R$styleable: int Preference_android_persistent +wangdaye.com.geometricweather.R$styleable: int[] MaterialAlertDialog +okhttp3.OkHttpClient: okhttp3.EventListener$Factory eventListenerFactory +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_text_padding_right +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_9 +cyanogenmod.externalviews.ExternalView: void executeQueue() +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_typeface +james.adaptiveicon.R$dimen: int abc_text_size_subtitle_material_toolbar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: CaiYunMainlyResult$YesterdayBean() +okhttp3.CacheControl: int maxAgeSeconds +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: void setStatus(int) +androidx.loader.R$styleable: int FontFamily_fontProviderAuthority +androidx.appcompat.resources.R$layout: int notification_template_part_time +com.turingtechnologies.materialscrollbar.R$attr: int autoCompleteTextViewStyle +okio.RealBufferedSource: long readHexadecimalUnsignedLong() +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.constraintlayout.widget.R$integer +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_right_mtrl_dark +androidx.appcompat.R$layout: int abc_screen_simple_overlay_action_mode +androidx.drawerlayout.R$color: int notification_icon_bg_color +com.google.android.material.R$attr: int cornerSizeBottomRight +androidx.coordinatorlayout.R$dimen: int notification_small_icon_size_as_large +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String zh_TW +com.google.android.material.R$styleable: int Chip_chipEndPadding +wangdaye.com.geometricweather.R$styleable: int ActionBar_elevation +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runSync() +com.google.android.material.R$styleable: int DrawerArrowToggle_barLength +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Subhead_Inverse +androidx.core.R$style: int TextAppearance_Compat_Notification_Title +androidx.appcompat.R$style: int Base_Widget_AppCompat_Spinner +androidx.vectordrawable.R$id: int right_side +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_arrowShaftLength +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getCurrentLiveLockScreen +io.reactivex.internal.util.AtomicThrowable: java.lang.Throwable terminate() +androidx.viewpager2.R$attr: int fontVariationSettings +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_borderlessButtonStyle +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float unitFactor +com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_E +androidx.appcompat.R$attr: int tooltipText +com.turingtechnologies.materialscrollbar.R$attr: int colorError +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Chip +james.adaptiveicon.R$dimen: int compat_control_corner_material +androidx.appcompat.R$color: int abc_hint_foreground_material_dark +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_RINGTONES +wangdaye.com.geometricweather.R$attr: int counterTextAppearance +wangdaye.com.geometricweather.R$attr: int yearStyle com.xw.repo.bubbleseekbar.R$attr: int bsb_show_section_mark -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconTint -okhttp3.Dispatcher: java.util.List queuedCalls() -com.google.gson.stream.JsonReader: int lineNumber +androidx.appcompat.R$styleable: int TextAppearance_fontVariationSettings +com.google.android.material.R$attr: int thumbStrokeWidth +androidx.loader.R$id: int info +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickActiveTintList() +androidx.hilt.work.R$anim +wangdaye.com.geometricweather.R$attr: int chainUseRtl +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: void setOnWeatherIconChangingListener(wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView$OnWeatherIconChangingListener) +wangdaye.com.geometricweather.R$styleable: int ListPreference_android_entries +okio.Pipe$PipeSource: void close() +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_5 +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_exitFadeDuration +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_trackTint +androidx.loader.R$dimen: int compat_button_padding_vertical_material +io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver valueOf(java.lang.String) +com.google.android.material.R$id: int time +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onComplete() +cyanogenmod.profiles.LockSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$attr: int preferenceTheme +wangdaye.com.geometricweather.R$id: int action_mode_bar_stub +okhttp3.internal.http1.Http1Codec$AbstractSource: long bytesRead +retrofit2.DefaultCallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerError(int,java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index() +james.adaptiveicon.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String dept +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours Past6Hours +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: void run() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_controlBackground +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_weight +com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyleSmall +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle +wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_top_material +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: ObservableFlatMap$MergeObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean,int,int) +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_textAppearance +okhttp3.internal.cache.DiskLruCache$Editor: void abort() +okhttp3.internal.Internal: java.io.IOException timeoutExit(okhttp3.Call,java.io.IOException) +androidx.core.app.RemoteActionCompat: RemoteActionCompat() +com.google.android.material.chip.ChipGroup: void setSelectionRequired(boolean) +com.google.android.material.R$attr: int chipSpacing +com.google.android.material.R$id: int search_button +androidx.lifecycle.extensions.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_switchTextOn +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle[] values() +androidx.transition.R$id: int tag_unhandled_key_event_manager +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.util.List indices +android.didikee.donate.R$dimen: int hint_pressed_alpha_material_dark +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingStart +androidx.work.R$attr: int ttcIndex +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_percent +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyleIndicator wangdaye.com.geometricweather.R$id: int multiply -com.google.android.material.R$style: int Animation_AppCompat_DropDownUp -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionBarOverlay -com.google.android.material.R$id: int accessibility_custom_action_6 -com.google.android.material.R$style: int Base_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List alertList -com.google.android.material.R$styleable: int TextInputLayout_placeholderText -wangdaye.com.geometricweather.R$styleable: int Preference_android_dependency -androidx.appcompat.widget.AppCompatImageView: void setSupportBackgroundTintList(android.content.res.ColorStateList) -androidx.appcompat.R$styleable: int AppCompatTheme_colorError -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: AccuCurrentResult$WindGust$Speed$Imperial() -com.google.gson.stream.JsonReader: void nextNull() -androidx.constraintlayout.widget.R$attr: int tintMode -androidx.appcompat.R$styleable: int Toolbar_subtitleTextAppearance -androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context) -androidx.vectordrawable.R$id: int accessibility_custom_action_9 -android.didikee.donate.R$id: int scrollIndicatorUp -com.turingtechnologies.materialscrollbar.R$bool: R$bool() -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_BottomSheetDialog -com.turingtechnologies.materialscrollbar.R$attr: int chipStartPadding -androidx.constraintlayout.widget.R$color: int abc_btn_colored_text_material -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_maxHeight -okhttp3.internal.http2.Header: java.lang.String toString() -androidx.constraintlayout.widget.R$id: int sawtooth -com.jaredrummler.android.colorpicker.R$attr: int autoSizeMinTextSize -com.google.android.material.R$dimen: int abc_list_item_height_small_material -cyanogenmod.externalviews.IExternalViewProvider: void onPause() -wangdaye.com.geometricweather.R$attr: int fontFamily -cyanogenmod.app.ProfileGroup: boolean matches(android.app.NotificationGroup,boolean) -androidx.preference.R$id: int seekbar_value -wangdaye.com.geometricweather.R$layout: int container_main_details -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedReadableDb(java.lang.String) -androidx.fragment.R$id: int action_container -okio.Pipe$PipeSink: okio.Timeout timeout -androidx.lifecycle.SavedStateViewModelFactory: java.lang.Class[] VIEWMODEL_SIGNATURE -com.github.rahatarmanahmed.cpv.CircularProgressViewListener -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: int UnitType -android.didikee.donate.R$attr: int subtitle -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: android.os.IBinder asBinder() -androidx.hilt.work.R$styleable -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_icon_size -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_alphabeticShortcut -com.jaredrummler.android.colorpicker.R$styleable: int Preference_isPreferenceVisible -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX getSpeed() -wangdaye.com.geometricweather.R$color: int colorAccent_dark -androidx.appcompat.widget.AppCompatImageView: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) -com.google.android.material.circularreveal.CircularRevealLinearLayout: void setCircularRevealScrimColor(int) -okhttp3.internal.platform.AndroidPlatform$CloseGuard -androidx.preference.R$styleable: int SwitchCompat_splitTrack -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.Scheduler scheduler -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: long requested() -com.xw.repo.bubbleseekbar.R$color: int tooltip_background_dark -okhttp3.internal.connection.RouteSelector: void resetNextInetSocketAddress(java.net.Proxy) -com.jaredrummler.android.colorpicker.R$layout -wangdaye.com.geometricweather.R$attr: int scrimVisibleHeightTrigger -androidx.constraintlayout.widget.R$styleable: int ActionMode_closeItemLayout -cyanogenmod.app.ProfileManager: int PROFILES_STATE_DISABLED -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_1_material -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder writeTimeout(java.time.Duration) -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit H -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setLatitude(java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_viewInflaterClass -okio.ByteString: void readObject(java.io.ObjectInputStream) -com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_radio -com.google.android.material.R$id: int container -androidx.appcompat.R$styleable: int DrawerArrowToggle_gapBetweenBars -cyanogenmod.alarmclock.ClockContract -retrofit2.Utils: java.lang.reflect.Type resolveTypeVariable(java.lang.reflect.Type,java.lang.Class,java.lang.reflect.TypeVariable) -okhttp3.HttpUrl: okhttp3.HttpUrl resolve(java.lang.String) -androidx.core.R$styleable: int FontFamilyFont_android_fontVariationSettings -james.adaptiveicon.R$styleable: int AppCompatTheme_searchViewStyle -androidx.work.R$id: int info -wangdaye.com.geometricweather.R$attr: int actionBarWidgetTheme -androidx.work.impl.utils.futures.AbstractFuture$Waiter: java.lang.Thread thread -androidx.appcompat.R$styleable: int Toolbar_contentInsetEndWithActions -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform PLATFORM -wangdaye.com.geometricweather.R$color: int mtrl_btn_bg_color_selector -okhttp3.Address: okhttp3.HttpUrl url() -androidx.recyclerview.R$styleable: int[] FontFamilyFont -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_constraintSet -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display4 -androidx.dynamicanimation.R$id: int text2 -wangdaye.com.geometricweather.R$styleable: int[] ActionMode -androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context) -com.google.android.material.slider.Slider: void setThumbRadius(int) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen -androidx.customview.R$style: int TextAppearance_Compat_Notification_Time -androidx.preference.R$style: int AlertDialog_AppCompat_Light -com.google.android.material.R$attr: int ensureMinTouchTargetSize -androidx.preference.R$drawable: int abc_ic_star_half_black_16dp -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeight -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -androidx.customview.R$dimen: int compat_control_corner_material -com.bumptech.glide.R$styleable: int GradientColor_android_type -androidx.vectordrawable.R$drawable: int notification_bg_low_normal -androidx.preference.R$styleable: int Toolbar_titleTextAppearance -com.google.android.material.R$styleable: int[] ForegroundLinearLayout -com.google.android.material.card.MaterialCardView: void setChecked(boolean) -androidx.appcompat.R$style: int Widget_AppCompat_ImageButton -okio.BufferedSource: long readLongLe() -androidx.work.R$attr: int fontWeight -james.adaptiveicon.R$id: int action_bar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: int getStatus() -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: java.lang.String getCloudCoverText(int) -wangdaye.com.geometricweather.R$attr: int flow_maxElementsWrap -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWeatherPhase -androidx.preference.R$dimen: int abc_alert_dialog_button_bar_height -com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonCompat -okhttp3.internal.ws.WebSocketReader: void readControlFrame() -androidx.preference.R$attr: int titleMarginBottom -androidx.appcompat.R$attr: int actionBarTabTextStyle -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_headline_material -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_Icon -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onComplete() -okhttp3.internal.ws.WebSocketWriter$FrameSink -com.google.android.material.R$style: int TextAppearance_AppCompat_Display4 -androidx.lifecycle.extensions.R$attr: int fontProviderCerts -com.turingtechnologies.materialscrollbar.R$color: int design_snackbar_background_color -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: ICMHardwareService$Stub$Proxy(android.os.IBinder) -com.google.android.material.R$dimen: int mtrl_extended_fab_disabled_translation_z -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: ObservableUsing$UsingObserver(io.reactivex.Observer,java.lang.Object,io.reactivex.functions.Consumer,boolean) -wangdaye.com.geometricweather.R$attr: int contentInsetEnd -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent[] $VALUES -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -okhttp3.TlsVersion: okhttp3.TlsVersion[] $VALUES -androidx.hilt.work.R$dimen: int notification_content_margin_start -retrofit2.http.FieldMap: boolean encoded() -androidx.appcompat.R$styleable: int View_paddingStart -okio.Buffer$UnsafeCursor: boolean readWrite -okio.Buffer: okio.BufferedSink write(okio.Source,long) -cyanogenmod.app.CMContextConstants$Features: java.lang.String PERFORMANCE -com.bumptech.glide.integration.okhttp.R$id: int async -com.google.android.material.R$id: int chip -androidx.appcompat.R$styleable: int LinearLayoutCompat_measureWithLargestChild +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIMAX +androidx.appcompat.widget.AppCompatImageView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Primary +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_text_color +androidx.preference.R$layout: int notification_template_icon_group +cyanogenmod.weather.WeatherLocation: java.lang.String getCityId() +cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_SOUND_SETTINGS +androidx.recyclerview.R$id: int notification_main_column +retrofit2.adapter.rxjava2.RxJava2CallAdapter: RxJava2CallAdapter(java.lang.reflect.Type,io.reactivex.Scheduler,boolean,boolean,boolean,boolean,boolean,boolean,boolean) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +cyanogenmod.app.suggest.ApplicationSuggestion: int describeContents() +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_material +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit[] values() +androidx.preference.R$id: int submit_area +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_18 +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_recyclerView +com.google.android.material.R$id: int progress_horizontal +wangdaye.com.geometricweather.R$id: int dialog_background_location_summary +wangdaye.com.geometricweather.R$id: int scrollView +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_8 +com.google.android.material.R$styleable: int MaterialCardView_android_checkable +com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context,android.util.AttributeSet) +androidx.preference.R$style: int Widget_AppCompat_Toolbar +com.jaredrummler.android.colorpicker.R$attr: int showSeekBarValue +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX() +com.jaredrummler.android.colorpicker.R$layout: int notification_action_tombstone +android.didikee.donate.R$color: int bright_foreground_disabled_material_dark +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dialog +cyanogenmod.app.CMTelephonyManager: int ASK_FOR_SUBSCRIPTION_ID +androidx.hilt.work.R$anim: int fragment_fade_exit +android.didikee.donate.R$drawable: int abc_list_pressed_holo_light +androidx.hilt.work.R$layout: int notification_template_custom_big +androidx.appcompat.R$color: int foreground_material_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getTempMax() +wangdaye.com.geometricweather.R$style: int widget_text_clock_analog +com.bumptech.glide.integration.okhttp.R$style +com.google.android.material.R$attr: int motion_triggerOnCollision +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode AUTO +androidx.vectordrawable.animated.R$dimen: int notification_small_icon_background_padding +androidx.transition.R$drawable: int notification_bg_normal_pressed +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +androidx.preference.R$color: int abc_tint_seek_thumb +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_TextView_SpinnerItem +okhttp3.Cache$CacheResponseBody$1: okhttp3.Cache$CacheResponseBody this$0 +com.jaredrummler.android.colorpicker.R$attr: int iconTintMode +androidx.vectordrawable.R$attr: int fontProviderQuery +androidx.appcompat.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: AccuCurrentResult$Ceiling() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +androidx.preference.R$color: int background_floating_material_light +wangdaye.com.geometricweather.R$styleable: int CardView_cardPreventCornerOverlap +com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context) +okio.DeflaterSink: java.lang.String toString() +com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +android.didikee.donate.R$color: int material_blue_grey_900 +wangdaye.com.geometricweather.R$color: int mtrl_popupmenu_overlay_color +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource CAIYUN +androidx.preference.R$styleable: int AppCompatTheme_selectableItemBackground +com.google.gson.internal.LazilyParsedNumber: java.lang.String value +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +okio.Okio +androidx.preference.R$color: int abc_tint_switch_track +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline5 +wangdaye.com.geometricweather.R$id: int activity_settings_container +wangdaye.com.geometricweather.R$attr: int thumbStrokeColor +com.google.android.material.R$anim: int abc_slide_in_top +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.String Name +io.reactivex.Observable: io.reactivex.Observable concatArrayEagerDelayError(io.reactivex.ObservableSource[]) +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +androidx.transition.R$attr +androidx.preference.R$dimen: int hint_alpha_material_dark +androidx.vectordrawable.R$styleable: int ColorStateListItem_android_color +com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_android_popupAnimationStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_44 +android.didikee.donate.R$color: int foreground_material_light +androidx.preference.R$styleable: int DialogPreference_android_dialogTitle +androidx.viewpager.R$color: R$color() +com.google.android.material.R$layout: int mtrl_picker_header_fullscreen +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_normal_material_dark +wangdaye.com.geometricweather.R$string: int week_6 +com.google.android.material.R$attr: int isMaterialTheme +io.reactivex.Observable: io.reactivex.Observable retry() +androidx.preference.R$color: int switch_thumb_normal_material_dark +androidx.transition.R$dimen: int notification_media_narrow_margin +retrofit2.HttpServiceMethod: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) +com.jaredrummler.android.colorpicker.R$attr: int fontProviderAuthority +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +wangdaye.com.geometricweather.R$styleable: int[] FitSystemBarRecyclerView +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconMode +androidx.constraintlayout.widget.R$styleable: int PopupWindow_overlapAnchor +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle +james.adaptiveicon.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +android.didikee.donate.R$id: int select_dialog_listview +io.reactivex.disposables.ReferenceDisposable +androidx.preference.R$attr: int overlapAnchor +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_background_transition_holo_light +okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory sslSocketFactory +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: void run() +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_layoutManager +com.google.android.material.R$layout: int test_chip_zero_corner_radius +okhttp3.CipherSuite: java.util.List forJavaNames(java.lang.String[]) +androidx.work.R$styleable: int GradientColor_android_startY +androidx.viewpager.R$attr: int fontProviderAuthority +androidx.vectordrawable.R$id: int chronometer +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +com.google.android.material.R$color: int design_default_color_on_primary +com.turingtechnologies.materialscrollbar.R$id: int top +james.adaptiveicon.R$drawable: int abc_seekbar_tick_mark_material +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: void onWeatherServiceProviderChanged(java.lang.String) +com.jaredrummler.android.colorpicker.R$dimen: int notification_action_text_size +com.google.android.material.slider.Slider: Slider(android.content.Context) +com.turingtechnologies.materialscrollbar.R$color: int abc_background_cache_hint_selector_material_dark +io.reactivex.internal.observers.LambdaObserver: boolean isDisposed() +android.didikee.donate.R$attr: int height +androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModelStore mViewModelStore +androidx.recyclerview.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$dimen: int abc_button_inset_vertical_material +androidx.constraintlayout.widget.R$integer: int status_bar_notification_info_maxnum +com.turingtechnologies.materialscrollbar.R$attr: int listItemLayout +okhttp3.internal.cache.DiskLruCache: java.io.File journalFileTmp +wangdaye.com.geometricweather.search.SearchActivity +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +com.google.android.material.R$id: int mtrl_view_tag_bottom_padding +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelMenuListTheme +cyanogenmod.providers.CMSettings$System: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) +androidx.appcompat.widget.AppCompatTextView: void setFirstBaselineToTopHeight(int) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.os.RemoteCallbackList mCallbacks +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemDrawable(int) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean done +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorAnimationDuration +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: io.reactivex.Observer downstream +com.google.android.material.timepicker.TimeModel +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: boolean isDisposed() +com.turingtechnologies.materialscrollbar.R$dimen: int hint_alpha_material_dark +android.didikee.donate.R$string: R$string() +io.reactivex.internal.util.NotificationLite: org.reactivestreams.Subscription getSubscription(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$animator +com.google.android.material.R$attr: int toolbarNavigationButtonStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTopCompat +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void headers(boolean,int,int,java.util.List) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle +androidx.preference.R$dimen: int abc_dialog_list_padding_top_no_title +androidx.appcompat.R$styleable: int FontFamilyFont_android_ttcIndex +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function7) +wangdaye.com.geometricweather.R$styleable: int MenuItem_alphabeticModifiers +androidx.appcompat.R$id: int title_template +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed Speed +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter +james.adaptiveicon.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.R$styleable: int TextInputLayout_boxBackgroundMode +cyanogenmod.externalviews.ExternalView: cyanogenmod.externalviews.ExternalViewProperties mExternalViewProperties +com.jaredrummler.android.colorpicker.R$attr: int showText +com.google.android.material.R$attr: int layout_constraintTop_toBottomOf +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_LOW_COLOR +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_COLOR_VALIDATOR +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemTextAppearance +com.turingtechnologies.materialscrollbar.R$id: int time +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +android.support.v4.app.INotificationSideChannel$Default: void notify(java.lang.String,int,java.lang.String,android.app.Notification) +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Light_Dialog +okio.Buffer: long indexOf(okio.ByteString,long) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +wangdaye.com.geometricweather.R$attr: int closeIconEnabled android.didikee.donate.R$styleable: int Toolbar_subtitleTextColor -okhttp3.internal.cache.DiskLruCache: java.lang.String MAGIC -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayHorizontalWidgetConfigActivity: Hilt_ClockDayHorizontalWidgetConfigActivity() -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_dark -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogStyle -wangdaye.com.geometricweather.settings.fragments.AppearanceSettingsFragment -com.turingtechnologies.materialscrollbar.R$attr: int closeIconEndPadding -androidx.appcompat.R$styleable: int[] MenuItem -cyanogenmod.weather.WeatherInfo$DayForecast: int mConditionCode -androidx.loader.R$styleable: int[] FontFamilyFont -cyanogenmod.weather.CMWeatherManager$1: CMWeatherManager$1(cyanogenmod.weather.CMWeatherManager) -wangdaye.com.geometricweather.R$attr: int contentInsetEndWithActions -androidx.appcompat.widget.SwitchCompat: void setThumbTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontSpinner -okio.InflaterSource: InflaterSource(okio.BufferedSource,java.util.zip.Inflater) -cyanogenmod.app.BaseLiveLockManagerService: void enforceSamePackageOrSystem(java.lang.String,cyanogenmod.app.LiveLockScreenInfo) -cyanogenmod.weather.RequestInfo$Builder: int mRequestType -androidx.constraintlayout.widget.R$attr: int subMenuArrow -androidx.hilt.R$id: int accessibility_custom_action_30 -okio.RealBufferedSource: java.lang.String readUtf8Line() -wangdaye.com.geometricweather.R$dimen: int mtrl_card_dragged_z -android.didikee.donate.R$styleable: int MenuItem_android_checkable -com.google.android.material.R$style: int Widget_AppCompat_ListView_DropDown -androidx.constraintlayout.utils.widget.ImageFilterButton: void setSaturation(float) -androidx.viewpager.R$styleable: int GradientColor_android_centerX -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Subhead -com.google.android.material.R$attr: int textInputStyle -androidx.hilt.lifecycle.R$attr: int fontProviderFetchStrategy -com.google.android.material.R$attr: int flow_firstHorizontalBias -wangdaye.com.geometricweather.R$color: int colorRipple -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.util.concurrent.CountDownLatch readCompleteLatch -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginStart -androidx.customview.R$id: int info -com.google.android.material.R$color: int foreground_material_light -retrofit2.ParameterHandler$RelativeUrl: ParameterHandler$RelativeUrl(java.lang.reflect.Method,int) -okhttp3.internal.ws.RealWebSocket: java.lang.Runnable writerRunnable -androidx.appcompat.widget.ActivityChooserModel: void setOnChooseActivityListener(androidx.appcompat.widget.ActivityChooserModel$OnChooseActivityListener) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener -com.google.android.material.R$style: int Theme_Design_NoActionBar -androidx.core.R$dimen: int notification_top_pad_large_text -com.google.android.material.tabs.TabLayout: void setTabIndicatorFullWidth(boolean) -android.didikee.donate.R$drawable: int abc_textfield_search_activated_mtrl_alpha -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_dither -wangdaye.com.geometricweather.R$styleable: int Slider_android_value -com.turingtechnologies.materialscrollbar.R$attr: int hideMotionSpec -androidx.drawerlayout.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation precipitation -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_visibility -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.internal.connection.StreamAllocation streamAllocation -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode LIGHT -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow Snow -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$StreamTimeout writeTimeout -okio.Timeout: okio.Timeout clearDeadline() -io.reactivex.internal.disposables.SequentialDisposable -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer bulletinCote -wangdaye.com.geometricweather.R$id: int widget_clock_day_subtitle -okio.GzipSource: GzipSource(okio.Source) -androidx.vectordrawable.animated.R$style -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: android.os.IBinder mRemote -androidx.preference.R$id: int accessibility_custom_action_24 -com.google.android.material.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity -androidx.appcompat.R$attr: int drawableSize -io.reactivex.internal.queue.SpscArrayQueue: long serialVersionUID -cyanogenmod.externalviews.ExternalViewProviderService: android.view.WindowManager access$400(cyanogenmod.externalviews.ExternalViewProviderService) -wangdaye.com.geometricweather.R$id: int enterAlwaysCollapsed -androidx.work.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Surface -androidx.appcompat.R$styleable: int MenuItem_android_onClick -cyanogenmod.externalviews.KeyguardExternalView$3: int val$y +com.google.gson.stream.JsonWriter: boolean isHtmlSafe() +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_middle_mtrl_light +androidx.constraintlayout.widget.R$drawable: int notification_bg_low +okhttp3.internal.http1.Http1Codec: okhttp3.Headers readHeaders() +androidx.appcompat.R$layout: int abc_screen_simple +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu +com.jaredrummler.android.colorpicker.R$attr: int seekBarStyle +com.google.android.material.R$dimen: int abc_action_bar_default_padding_start_material +io.reactivex.internal.util.EmptyComponent: void onError(java.lang.Throwable) +com.google.android.material.R$styleable: int Toolbar_subtitle +com.turingtechnologies.materialscrollbar.R$dimen: int notification_small_icon_background_padding +com.google.gson.stream.JsonReader: java.lang.String nextQuotedValue(char) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: CaiYunMainlyResult$AlertsBean$DefenseBean() +com.google.android.material.R$color +com.google.android.material.R$styleable: int[] ProgressIndicator +cyanogenmod.app.Profile: void readTriggersFromXml(org.xmlpull.v1.XmlPullParser,android.content.Context,cyanogenmod.app.Profile) +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_contentDescription +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver +com.bumptech.glide.R$id: int none +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String IconPhrase +com.bumptech.glide.R$styleable: int FontFamilyFont_fontWeight +androidx.preference.R$attr: int contentInsetStartWithNavigation +androidx.customview.R$id: int tag_unhandled_key_listeners +james.adaptiveicon.R$string: int abc_action_menu_overflow_description +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType UpdateInTxArray +androidx.drawerlayout.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$attr: int endIconContentDescription +androidx.appcompat.R$styleable: int DrawerArrowToggle_drawableSize +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginStart +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +wangdaye.com.geometricweather.R$string: int week_3 +androidx.core.R$color: int notification_action_color_filter +com.google.android.material.R$color: R$color() +androidx.vectordrawable.animated.R$layout: int custom_dialog +wangdaye.com.geometricweather.common.basic.models.weather.Base: long timeStamp +androidx.constraintlayout.widget.R$string: int abc_menu_delete_shortcut_label +com.google.android.material.R$color: int design_fab_stroke_top_inner_color +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableLeft +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder maxAge(int,java.util.concurrent.TimeUnit) +cyanogenmod.weather.IRequestInfoListener$Stub: int TRANSACTION_onWeatherRequestCompleted +wangdaye.com.geometricweather.R$attr: int shapeAppearanceMediumComponent +androidx.hilt.lifecycle.R$styleable: int Fragment_android_name +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +com.turingtechnologies.materialscrollbar.R$styleable +okhttp3.internal.Util: okio.ByteString UTF_16_BE_BOM +com.google.android.material.R$styleable: int Transition_motionInterpolator +james.adaptiveicon.R$color: int switch_thumb_material_dark +wangdaye.com.geometricweather.R$attr: int content +androidx.preference.R$styleable: int Toolbar_logo +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String sourceUrl +androidx.constraintlayout.widget.R$layout: int abc_screen_simple_overlay_action_mode +wangdaye.com.geometricweather.R$drawable: int notification_icon_background +androidx.constraintlayout.widget.R$attr: int colorError +james.adaptiveicon.R$styleable: int AppCompatTheme_checkedTextViewStyle +okhttp3.internal.http2.Http2Writer: void writeMedium(okio.BufferedSink,int) +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customFloatValue +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: AccuDailyResult$DailyForecasts$Day$Rain() +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_DEFAULT_THEME +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerColor +androidx.preference.R$drawable: int abc_action_bar_item_background_material +cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemOnClickIntent(android.app.PendingIntent) +androidx.appcompat.R$attr: int autoSizeMaxTextSize +okhttp3.internal.platform.AndroidPlatform: int getSdkInt() +com.google.android.material.R$attr: int behavior_draggable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: int UnitType +okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part createFormData(java.lang.String,java.lang.String) +androidx.customview.R$styleable: int[] FontFamily +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_backgroundSplit +wangdaye.com.geometricweather.R$string: int feedback_search_nothing +wangdaye.com.geometricweather.R$layout: int abc_popup_menu_header_item_layout +androidx.preference.R$color: int tooltip_background_light +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.ObservableSource second +com.google.android.material.R$id: int selection_type +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.disposables.Disposable upstream +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar_Small +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorEnabled +androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior: CoordinatorLayout$Behavior() +com.google.android.material.R$styleable: int Constraint_android_layout_marginTop +com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_percent +androidx.appcompat.R$dimen: int notification_right_icon_size +androidx.viewpager2.R$dimen: int notification_media_narrow_margin +io.reactivex.internal.queue.SpscArrayQueue: void soElement(int,java.lang.Object) +androidx.customview.R$styleable: int GradientColor_android_startY +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_GLOBAL +com.google.android.material.button.MaterialButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +androidx.appcompat.R$style: int Widget_AppCompat_RatingBar +com.xw.repo.bubbleseekbar.R$attr: int subtitleTextColor +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List area +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder readTimeout(long,java.util.concurrent.TimeUnit) +androidx.hilt.R$styleable: int FontFamily_fontProviderCerts +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_submit +androidx.preference.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +com.google.android.material.R$drawable: int abc_list_pressed_holo_light +com.jaredrummler.android.colorpicker.R$drawable: int cpv_preset_checked +com.turingtechnologies.materialscrollbar.R$color: int abc_hint_foreground_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_dither +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_height +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: cyanogenmod.weatherservice.IWeatherProviderServiceClient asInterface(android.os.IBinder) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +androidx.lifecycle.OnLifecycleEvent +android.didikee.donate.R$styleable: int SwitchCompat_android_textOn +com.turingtechnologies.materialscrollbar.R$id: int up +okhttp3.OkHttpClient: boolean followRedirects() +okio.AsyncTimeout: boolean inQueue +com.google.android.material.R$styleable: int Constraint_android_layout_marginStart +wangdaye.com.geometricweather.R$styleable: int[] TextInputLayout +james.adaptiveicon.R$color: int abc_tint_switch_track +com.google.android.material.R$dimen: int mtrl_calendar_year_width +okio.Timeout: boolean hasDeadline() +com.google.android.material.R$attr: int motionTarget +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_toTopOf +com.google.android.material.R$styleable: int CardView_cardMaxElevation +retrofit2.Utils: java.lang.RuntimeException methodError(java.lang.reflect.Method,java.lang.String,java.lang.Object[]) +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int DISMISSED_STATE +wangdaye.com.geometricweather.R$attr: int defaultQueryHint +androidx.vectordrawable.R$styleable: int[] ColorStateListItem +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int state +com.google.android.material.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +com.google.android.material.chip.Chip: void setCheckedIconTintResource(int) +com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_labelVisibilityMode +androidx.loader.R$dimen: int notification_right_side_padding_top +androidx.hilt.lifecycle.R$dimen: int notification_large_icon_width +okhttp3.Cache$CacheRequestImpl: okhttp3.Cache this$0 wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer treeLevel -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month_navigation -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: long serialVersionUID -io.reactivex.Observable: Observable() -wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress_color -com.google.android.material.R$color: int abc_tint_switch_track -wangdaye.com.geometricweather.R$attr: int drawableLeftCompat -androidx.viewpager.widget.PagerTabStrip -wangdaye.com.geometricweather.db.entities.AlertEntity: void setWeatherSource(java.lang.String) -com.google.android.material.card.MaterialCardView: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -androidx.appcompat.widget.SearchView: int getInputType() -wangdaye.com.geometricweather.remoteviews.config.Hilt_MultiCityWidgetConfigActivity -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_min -james.adaptiveicon.R$attr: int titleMarginStart -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_dialogTitle -wangdaye.com.geometricweather.R$drawable: int ic_toolbar_back -com.google.android.material.bottomappbar.BottomAppBar: float getFabTranslationY() -android.didikee.donate.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -androidx.drawerlayout.widget.DrawerLayout$SavedState -com.jaredrummler.android.colorpicker.R$drawable: int notification_template_icon_low_bg -cyanogenmod.weather.CMWeatherManager: java.util.Map mLookupNameRequestListeners -com.bumptech.glide.R$styleable -androidx.activity.R$dimen: int notification_right_icon_size -androidx.hilt.lifecycle.R$id: int fragment_container_view_tag -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moldIndex -retrofit2.OptionalConverterFactory$OptionalConverter: retrofit2.Converter delegate -com.google.android.material.R$dimen: int abc_switch_padding -okhttp3.Handshake: okhttp3.Handshake get(okhttp3.TlsVersion,okhttp3.CipherSuite,java.util.List,java.util.List) -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatPressedTranslationZ(float) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onError(java.lang.Throwable) -com.google.android.material.R$attr: int titleMarginTop -wangdaye.com.geometricweather.settings.fragments.AbstractSettingsFragment -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowMinWidthMinor -androidx.fragment.R$drawable: R$drawable() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_transformPivotX -androidx.appcompat.R$id: int accessibility_custom_action_20 -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -wangdaye.com.geometricweather.R$attr: int chipSpacingHorizontal +james.adaptiveicon.R$drawable: int notification_template_icon_bg +androidx.core.app.CoreComponentFactory +wangdaye.com.geometricweather.R$color: int foreground_material_light +okhttp3.RequestBody$3: java.io.File val$file +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$id: int textinput_counter +androidx.hilt.R$id: int tag_transition_group +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_disabled_z +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: boolean done +android.didikee.donate.R$styleable: int AppCompatTheme_windowMinWidthMajor +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_MediumComponent +wangdaye.com.geometricweather.R$id: int widget_clock_day_date +androidx.constraintlayout.widget.R$id: int easeOut +wangdaye.com.geometricweather.R$attr: int thumbElevation +wangdaye.com.geometricweather.R$animator: int start_shine_2 +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getStreet_number() +androidx.hilt.R$dimen: int notification_right_icon_size +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_ActionBar +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_48dp +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ListPopupWindow +androidx.constraintlayout.motion.widget.MotionLayout: int getCurrentState() +wangdaye.com.geometricweather.R$attr: int type +com.google.android.material.R$attr: int layout_constraintRight_toLeftOf +com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextColor(android.content.res.ColorStateList) +retrofit2.OkHttpCall: java.lang.Throwable creationFailure +okio.Okio$1 +okhttp3.internal.http2.Hpack$Reader: java.util.List getAndResetHeaderList() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onWindowAttributesChanged(android.view.WindowManager$LayoutParams) +io.reactivex.Observable: io.reactivex.Observable mergeArray(io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.R$color: int colorAccent_light +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onSubscribe(org.reactivestreams.Subscription) +cyanogenmod.providers.CMSettings$System +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: RequestBuilder$ContentTypeOverridingRequestBody(okhttp3.RequestBody,okhttp3.MediaType) +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_android_enabled +com.google.android.material.R$style: int TextAppearance_Design_Tab +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String to +com.google.gson.FieldNamingPolicy$6: java.lang.String translateName(java.lang.reflect.Field) +com.github.rahatarmanahmed.cpv.CircularProgressView: void setColor(int) +wangdaye.com.geometricweather.R$styleable: int ArcProgress_background_color +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation build() +cyanogenmod.app.Profile$LockMode: int INSECURE +android.didikee.donate.R$styleable: int Toolbar_subtitleTextAppearance +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Spinner_Underlined +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Overline +com.google.android.material.appbar.ViewOffsetBehavior: ViewOffsetBehavior() +wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity +com.google.android.material.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton +com.bumptech.glide.integration.okhttp.R$id: int time +wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_xml +com.google.android.material.R$attr: int trackHeight +okio.Buffer: int select(okio.Options) +com.xw.repo.bubbleseekbar.R$attr: int keylines +com.google.android.material.card.MaterialCardView: void setCheckedIconMarginResource(int) +androidx.fragment.R$style: int Widget_Compat_NotificationActionText +androidx.lifecycle.FullLifecycleObserverAdapter$1 +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColor(int) +androidx.preference.R$style: int Base_Widget_AppCompat_ListView_Menu +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelMenuListTheme +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_HOME_LONG_PRESS_ACTION +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HAIL +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,long,java.util.concurrent.TimeUnit) +androidx.appcompat.R$style: int Widget_AppCompat_Light_ListView_DropDown +androidx.constraintlayout.widget.R$id: int right +androidx.preference.R$styleable: int AppCompatTheme_actionModeSplitBackground +wangdaye.com.geometricweather.R$id: int widget_day_center +com.google.android.material.R$attr: int popupMenuStyle +com.google.android.material.R$attr: int splitTrack +androidx.lifecycle.ProcessLifecycleOwner: long TIMEOUT_MS +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean getPrecipitation() +wangdaye.com.geometricweather.R$drawable: int notif_temp_7 +wangdaye.com.geometricweather.R$drawable: int notification_bg_low +cyanogenmod.os.Build$CM_VERSION_CODES: int BOYSENBERRY +com.google.android.material.R$attr: int tooltipForegroundColor +androidx.fragment.R$id: int accessibility_custom_action_29 +retrofit2.SkipCallbackExecutorImpl: int hashCode() +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity: ClockDayWeekWidgetConfigActivity() +androidx.lifecycle.ProcessLifecycleOwnerInitializer: android.net.Uri insert(android.net.Uri,android.content.ContentValues) +android.didikee.donate.R$styleable: int AppCompatTextView_drawableEndCompat +com.xw.repo.bubbleseekbar.R$attr: int dialogPreferredPadding +com.google.android.material.R$style: int TextAppearance_AppCompat_Body1 +com.google.android.material.R$attr: int buttonIconDimen +wangdaye.com.geometricweather.R$layout: int activity_card_display_manage +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange Past24HourRange +wangdaye.com.geometricweather.R$color: int material_on_background_disabled +androidx.constraintlayout.widget.R$attr: int layout_constraintBaseline_toBaselineOf +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: java.util.concurrent.atomic.AtomicReference active +cyanogenmod.profiles.StreamSettings: void setValue(int) +androidx.recyclerview.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: AlertEntityDao$Properties() +com.google.android.material.slider.BaseSlider: void setHaloRadius(int) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge +com.turingtechnologies.materialscrollbar.R$color: int design_default_color_primary +wangdaye.com.geometricweather.R$attr: int multiChoiceItemLayout +com.google.android.material.datepicker.MaterialCalendar: MaterialCalendar() +wangdaye.com.geometricweather.R$string: int sp_widget_week_setting +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle getInstance(java.lang.String) +androidx.cardview.R$color: int cardview_shadow_start_color +wangdaye.com.geometricweather.R$layout: int dialog_time_setter +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: MpscLinkedQueue$LinkedQueueNode() +androidx.appcompat.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getCounterOverflowDescription() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: double Value +wangdaye.com.geometricweather.R$menu: R$menu() +androidx.preference.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayVerticalProvider: WidgetClockDayVerticalProvider() +androidx.preference.R$styleable: int AppCompatTheme_actionBarTheme +okhttp3.internal.http2.Hpack$Reader: okio.BufferedSource source +io.reactivex.internal.subscriptions.SubscriptionArbiter: SubscriptionArbiter(boolean) +androidx.constraintlayout.widget.R$id: int wrap +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ProgressBar +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +androidx.appcompat.R$color: int material_grey_850 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_middle_mtrl_light +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitation +com.google.android.material.floatingactionbutton.FloatingActionButton: void setImageResource(int) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.util.SparseArray getBadgeDrawables() +com.google.android.material.R$styleable: int[] CoordinatorLayout +com.google.android.material.R$styleable: int ImageFilterView_brightness +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String key() +android.didikee.donate.R$color: int background_floating_material_dark +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog +james.adaptiveicon.R$styleable: int TextAppearance_textAllCaps +androidx.preference.R$styleable: int EditTextPreference_useSimpleSummaryProvider +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onKeyguardDismissed() +androidx.coordinatorlayout.R$layout: int notification_template_icon_group +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void setDisposable(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$string: int key_notification_style +james.adaptiveicon.R$style: int Widget_AppCompat_AutoCompleteTextView +com.turingtechnologies.materialscrollbar.R$attr: int counterOverflowTextAppearance +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar +com.xw.repo.bubbleseekbar.R$style: int Base_V26_Theme_AppCompat +wangdaye.com.geometricweather.R$styleable: int Layout_layout_editor_absoluteX +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_shapeAppearanceOverlay +wangdaye.com.geometricweather.R$attr: int colorOnPrimarySurface +androidx.appcompat.R$styleable: int Toolbar_titleMarginBottom +okio.RealBufferedSink: okio.BufferedSink writeHexadecimalUnsignedLong(long) +androidx.preference.PreferenceScreen +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedText(android.content.Context,float) +cyanogenmod.weather.WeatherInfo$DayForecast: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float thunderstorm +androidx.preference.R$styleable: int[] AppCompatTextView +com.google.android.material.R$styleable: int ConstraintSet_pivotAnchor +com.xw.repo.bubbleseekbar.R$anim: int abc_popup_enter +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_constraint_referenced_ids +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_selection_line_height +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: int UnitType +androidx.preference.R$styleable: int AppCompatTheme_colorPrimary +wangdaye.com.geometricweather.R$styleable: int TouchScrollBar_msb_autoHide +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_material +okhttp3.Cookie$Builder: java.lang.String value +com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabBarStyle +androidx.preference.R$style: int Platform_V25_AppCompat +okhttp3.internal.http2.Http2Stream: java.util.Deque access$000(okhttp3.internal.http2.Http2Stream) +com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableCompat +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_curveFit +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.R$string: int key_click_widget_to_refresh +com.google.gson.stream.JsonReader: void consumeNonExecutePrefix() +james.adaptiveicon.R$anim: int abc_slide_out_bottom +okhttp3.EventListener: void responseBodyStart(okhttp3.Call) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: MfForecastResult$Position() +androidx.fragment.app.FragmentActivity: FragmentActivity() +wangdaye.com.geometricweather.R$attr: int alertDialogCenterButtons +com.google.android.material.R$dimen: int mtrl_calendar_header_content_padding +com.jaredrummler.android.colorpicker.R$drawable: int abc_switch_track_mtrl_alpha +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionDropDownStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_icon_padding +wangdaye.com.geometricweather.db.entities.AlertEntity: void setId(java.lang.Long) +com.google.android.material.R$attr: int tabBackground +retrofit2.http.PATCH: java.lang.String value() +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_3 +wangdaye.com.geometricweather.R$styleable: int MenuItem_actionViewClass +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_body_1_material +androidx.appcompat.resources.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.R$styleable: int AlertDialog_showTitle +com.google.android.material.R$attr: int alertDialogButtonGroupStyle +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showDialog +androidx.hilt.lifecycle.R$dimen: int compat_button_padding_horizontal_material +androidx.activity.R$dimen: int compat_button_padding_vertical_material +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_HOME_DOUBLE_TAP_ACTION +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_saturation +androidx.appcompat.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableEndCompat +com.google.android.material.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: int UnitType +com.google.android.material.R$styleable: int Layout_layout_editor_absoluteX +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: AtmoAuraQAResult() +com.google.android.material.button.MaterialButton: void setInsetBottom(int) +wangdaye.com.geometricweather.R$dimen: int design_fab_image_size +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: MfWarningsResult$WarningAdvice() +androidx.appcompat.widget.AppCompatTextView: void setTextClassifier(android.view.textclassifier.TextClassifier) +wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_12 +com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_ContextMenu +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder secure() +io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$id: int search_voice_btn +com.google.android.material.R$attr: int maxHeight +com.google.android.material.R$attr: int state_dragged +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: java.util.List rainForecasts +com.google.android.material.timepicker.TimePickerView +com.google.android.material.R$layout: int abc_popup_menu_item_layout +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int READY +wangdaye.com.geometricweather.R$attr: int materialCalendarTheme +com.google.android.material.R$layout: int text_view_with_theme_line_height +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_activityChooserViewStyle +james.adaptiveicon.R$styleable: int[] AppCompatTextView +wangdaye.com.geometricweather.R$styleable: int[] KeyTrigger +com.jaredrummler.android.colorpicker.R$color: int background_material_light +james.adaptiveicon.R$dimen: int abc_disabled_alpha_material_light +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_transitionPathRotate +wangdaye.com.geometricweather.R$styleable: int Slider_thumbStrokeWidth +androidx.drawerlayout.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$id: int sides +com.google.android.material.R$style: int Base_V23_Theme_AppCompat +com.google.android.material.slider.Slider: void setTickTintList(android.content.res.ColorStateList) +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type[] values() +androidx.constraintlayout.widget.R$id: int default_activity_button +wangdaye.com.geometricweather.R$attr: int badgeGravity +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_y_offset_touch +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle +androidx.constraintlayout.widget.R$attr: int layout_constraintCircleRadius +retrofit2.Retrofit$Builder: Retrofit$Builder(retrofit2.Platform) +androidx.drawerlayout.R$styleable: int GradientColor_android_centerX +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_btn_ripple_color +cyanogenmod.app.CustomTile: int describeContents() +com.jaredrummler.android.colorpicker.R$styleable: int BackgroundStyle_selectableItemBackground +wangdaye.com.geometricweather.R$styleable: int KeyPosition_transitionEasing +android.didikee.donate.R$attr: int multiChoiceItemLayout +com.google.android.material.R$styleable: int Spinner_android_popupBackground +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String cityId +james.adaptiveicon.R$style: int Base_AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.R$layout: int activity_main +com.turingtechnologies.materialscrollbar.R$id: int action_context_bar +androidx.constraintlayout.widget.R$id: int blocking +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitationDuration(java.lang.Float) +wangdaye.com.geometricweather.R$attr: int errorIconTint +com.google.android.material.R$styleable: int Constraint_transitionEasing +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: java.lang.Throwable val$ex +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context,android.util.AttributeSet) +cyanogenmod.app.CustomTile: android.graphics.Bitmap remoteIcon +android.didikee.donate.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: int getMarginTop() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Large_Inverse +com.jaredrummler.android.colorpicker.R$layout: int notification_template_part_chronometer +okhttp3.Response: boolean isSuccessful() +androidx.constraintlayout.widget.R$styleable: int Layout_maxWidth +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource) +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerX +cyanogenmod.app.ILiveLockScreenManager +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.Map buffers +wangdaye.com.geometricweather.R$drawable: int ic_filter_off +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicator +com.turingtechnologies.materialscrollbar.R$integer: int abc_config_activityShortDur +com.xw.repo.bubbleseekbar.R$attr: int textAllCaps +com.xw.repo.bubbleseekbar.R$styleable: int[] TextAppearance +androidx.constraintlayout.widget.R$styleable: int Constraint_pivotAnchor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String brandId +androidx.core.R$attr: R$attr() +androidx.lifecycle.ViewModelStoreOwner: androidx.lifecycle.ViewModelStore getViewModelStore() +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableStart +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindChillTemperature +androidx.constraintlayout.motion.widget.MotionLayout: androidx.constraintlayout.motion.widget.DesignTool getDesignTool() +androidx.preference.R$styleable: int[] RecyclerView +wangdaye.com.geometricweather.R$layout: int dialog_running_in_background +androidx.constraintlayout.widget.R$styleable: int[] Toolbar +com.google.android.material.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.R$id: int dialog_donate_wechat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature +com.google.android.material.R$styleable: int ConstraintSet_android_pivotY +androidx.appcompat.R$attr: int listChoiceIndicatorMultipleAnimated +cyanogenmod.externalviews.KeyguardExternalView$6 +james.adaptiveicon.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$attr: int drawableSize +okio.HashingSink: okio.HashingSink md5(okio.Sink) +androidx.appcompat.widget.AppCompatTextView +wangdaye.com.geometricweather.R$attr: int cornerFamilyBottomRight +androidx.preference.R$styleable: int Preference_layout +androidx.constraintlayout.widget.Group +retrofit2.RequestFactory$Builder: java.lang.reflect.Type[] parameterTypes +cyanogenmod.app.IPartnerInterface$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode[] values() +com.bumptech.glide.integration.okhttp.R$layout: int notification_action +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: java.lang.String getUIStyleName(android.content.Context) +okio.GzipSink +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference upstream +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm10Desc() +okhttp3.internal.http1.Http1Codec$ChunkedSink: boolean closed +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_DES_CBC_SHA +okhttp3.CacheControl: int maxAgeSeconds() +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_22 +androidx.appcompat.R$style: int Base_V21_Theme_AppCompat +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_Solid +androidx.lifecycle.ReportFragment: void setProcessListener(androidx.lifecycle.ReportFragment$ActivityInitializationListener) +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: java.lang.String colorId +android.didikee.donate.R$attr: int listPreferredItemHeight +androidx.preference.R$attr: int listDividerAlertDialog +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Borderless +androidx.transition.R$styleable: int FontFamilyFont_font +com.jaredrummler.android.colorpicker.R$styleable: int BackgroundStyle_android_selectableItemBackground +cyanogenmod.app.ICustomTileListener$Stub$Proxy: ICustomTileListener$Stub$Proxy(android.os.IBinder) +androidx.viewpager.widget.ViewPager: int getClientWidth() +androidx.constraintlayout.widget.R$id: int activity_chooser_view_content +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_drawableSize +okhttp3.Callback: void onFailure(okhttp3.Call,java.io.IOException) +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onComplete() +android.didikee.donate.R$integer +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_submitBackground +cyanogenmod.app.suggest.IAppSuggestProvider: boolean handles(android.content.Intent) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat +com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColorResource(int) +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setBackgroundColor(int) +wangdaye.com.geometricweather.R$drawable: int ic_plus +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.fuseable.SimpleQueue queue +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeShareDrawable +cyanogenmod.profiles.RingModeSettings: boolean mDirty +com.jaredrummler.android.colorpicker.R$attr: int tint +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_imageButtonStyle +com.jaredrummler.android.colorpicker.R$attr: int panelBackground +com.jaredrummler.android.colorpicker.R$dimen: int notification_subtext_size +com.xw.repo.bubbleseekbar.R$id: int bottom_sides +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemBackground +com.google.android.material.R$styleable: int ConstraintSet_android_maxWidth +wangdaye.com.geometricweather.R$id: int tag_accessibility_clickable_spans +com.google.android.material.R$style: int Base_Theme_MaterialComponents +androidx.preference.R$styleable: int[] ActivityChooserView +com.turingtechnologies.materialscrollbar.R$string: int mtrl_chip_close_icon_content_description +androidx.appcompat.resources.R$id: int line3 +wangdaye.com.geometricweather.R$style: int Base_DialogWindowTitle_AppCompat +com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy[] values() +wangdaye.com.geometricweather.R$styleable: int[] CollapsingToolbarLayout_Layout +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleMargin +wangdaye.com.geometricweather.R$attr: int showDelay +androidx.hilt.work.R$id: int accessibility_custom_action_25 +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onAttach(android.os.IBinder) +wangdaye.com.geometricweather.R$styleable: int SwitchImageButton_drawable_res_on +androidx.preference.R$id: int scrollView +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Title +io.reactivex.internal.util.VolatileSizeArrayList: boolean add(java.lang.Object) +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabView +cyanogenmod.app.Profile: Profile(android.os.Parcel,cyanogenmod.app.Profile$1) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +androidx.recyclerview.R$style +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Time +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: int offset +androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_default +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_116 +android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.os.IBinder asBinder() +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Small +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getHaloTintList() +androidx.preference.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarButtonStyle +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_btn_state_list_anim +wangdaye.com.geometricweather.R$mipmap: R$mipmap() +androidx.vectordrawable.R$id: int info +androidx.transition.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.google.android.material.slider.RangeSlider: void setStepSize(float) +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low_normal +androidx.lifecycle.ServiceLifecycleDispatcher +com.google.android.material.R$id: int mtrl_calendar_year_selector_frame +okio.Source: long read(okio.Buffer,long) +com.xw.repo.bubbleseekbar.R$drawable: int abc_action_bar_item_background_material +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory +androidx.cardview.R$attr +com.google.android.material.R$styleable: int SwitchCompat_showText +cyanogenmod.themes.IThemeChangeListener +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabView +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_minWidth +androidx.constraintlayout.widget.ConstraintLayout: void setMinWidth(int) +androidx.cardview.R$styleable: int CardView_contentPaddingTop +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: void setStatus(int) +com.xw.repo.bubbleseekbar.R$drawable: int abc_spinner_textfield_background_material +wangdaye.com.geometricweather.R$color: int colorTextDark +androidx.vectordrawable.R$styleable: int GradientColor_android_centerX +androidx.preference.R$styleable: int[] MenuItem +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer clouds +com.google.android.material.R$attr: int flow_firstVerticalBias +wangdaye.com.geometricweather.R$id: int below_section_mark +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List dailyForecast +androidx.coordinatorlayout.R$id: int accessibility_custom_action_23 +androidx.recyclerview.R$string: R$string() +com.bumptech.glide.R$styleable: int ColorStateListItem_android_alpha +com.google.android.material.R$attr: int thickness +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.R$color: int colorSearchBarBackground_dark +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light +androidx.fragment.R$id: int accessibility_custom_action_26 +com.google.android.material.button.MaterialButton: void setCornerRadius(int) +com.google.android.material.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceFragmentCompat +cyanogenmod.app.IPartnerInterface: void setMobileDataEnabled(boolean) +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: long serialVersionUID +com.xw.repo.bubbleseekbar.R$color: int material_grey_900 +okhttp3.internal.tls.BasicCertificateChainCleaner: BasicCertificateChainCleaner(okhttp3.internal.tls.TrustRootIndex) +androidx.drawerlayout.R$color: int secondary_text_default_material_light +io.reactivex.exceptions.CompositeException: void printStackTrace(java.io.PrintWriter) +okhttp3.internal.connection.RouteDatabase: java.util.Set failedRoutes +io.reactivex.Observable: io.reactivex.Observable concatMapMaybe(io.reactivex.functions.Function,int) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_128_CCM_SHA256 +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onError(java.lang.Throwable) +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mPostal +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setDetail(java.lang.String) +androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +androidx.appcompat.R$style: int Theme_AppCompat_Light_DialogWhenLarge +androidx.constraintlayout.widget.R$attr: int placeholder_emptyVisibility +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_Solid +androidx.viewpager.widget.PagerTabStrip: PagerTabStrip(android.content.Context) +com.google.android.material.R$styleable: int MenuItem_android_enabled +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_background +com.jaredrummler.android.colorpicker.R$color: int material_grey_600 +cyanogenmod.weatherservice.ServiceRequest +androidx.constraintlayout.widget.R$attr: int fontProviderCerts +okhttp3.internal.ws.RealWebSocket: void onReadMessage(java.lang.String) +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void run() +androidx.preference.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +wangdaye.com.geometricweather.R$attr: int popupMenuBackground +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationY +wangdaye.com.geometricweather.R$id: int item_about_link_text +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: AccuDailyResult$DailyForecasts$Night$Wind$Direction() +androidx.constraintlayout.widget.R$attr: int dragThreshold +com.google.android.material.R$dimen: int mtrl_calendar_selection_baseline_to_top_fullscreen +cyanogenmod.hardware.IThermalListenerCallback$Stub +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getSunRise() +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter beginObject() +cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderService$Stub mBinder +com.jaredrummler.android.colorpicker.R$attr: int actionModeBackground +androidx.viewpager2.widget.ViewPager2$SavedState +okhttp3.internal.http1.Http1Codec$FixedLengthSink: okio.ForwardingTimeout timeout +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String cityId +wangdaye.com.geometricweather.R$string: int content_desc_search_filter_on +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitation(java.lang.Float) +wangdaye.com.geometricweather.db.entities.AlertEntityDao: AlertEntityDao(org.greenrobot.greendao.internal.DaoConfig) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +androidx.preference.R$styleable: int SwitchPreferenceCompat_switchTextOff +androidx.preference.R$styleable: int AppCompatTheme_colorPrimaryDark +wangdaye.com.geometricweather.R$color: int design_default_color_surface +androidx.preference.UnPressableLinearLayout: UnPressableLinearLayout(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$attr: int titleTextStyle +androidx.appcompat.resources.R$attr: int fontProviderFetchTimeout +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection build() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: double Value +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer rainHazard6h +com.google.gson.FieldNamingPolicy$4 +androidx.dynamicanimation.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric() +cyanogenmod.externalviews.KeyguardExternalView$11: cyanogenmod.externalviews.KeyguardExternalView this$0 +wangdaye.com.geometricweather.R$id: int activity_widget_config_viewStyleTitle +okhttp3.internal.http1.Http1Codec$UnknownLengthSource +androidx.preference.R$style: int Base_Widget_AppCompat_Button +wangdaye.com.geometricweather.R$attr: int submitBackground +androidx.dynamicanimation.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.R$id: int activity_weather_daily_pager +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight +androidx.recyclerview.R$dimen: int compat_button_inset_vertical_material +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign +okio.DeflaterSink: void close() +com.google.android.material.R$style: int Platform_AppCompat_Light +james.adaptiveicon.R$integer: int abc_config_activityShortDur +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver parent +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog +wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvIndex(java.lang.Integer) +androidx.constraintlayout.widget.R$attr: int barrierMargin +androidx.viewpager2.R$dimen: int compat_button_inset_horizontal_material +com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$color: int material_grey_900 +androidx.transition.R$integer: R$integer() +com.bumptech.glide.integration.okhttp.R$attr: int layout_insetEdge +wangdaye.com.geometricweather.R$styleable: int ActionBar_height +androidx.coordinatorlayout.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.R$styleable: int TagView_checked +androidx.coordinatorlayout.R$id: int tag_accessibility_heading +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_unregisterChangeListener +com.google.android.material.circularreveal.CircularRevealLinearLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +james.adaptiveicon.R$color: int accent_material_dark +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleTextAppearance +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder certificatePinner(okhttp3.CertificatePinner) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Large_Inverse +okhttp3.internal.http2.Hpack$Reader: int nextHeaderIndex +io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.fuseable.SimpleQueue queue() +com.turingtechnologies.materialscrollbar.R$attr: int tabBackground +androidx.appcompat.R$dimen: int abc_disabled_alpha_material_light +com.google.android.material.R$styleable: int Slider_haloRadius +wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +wangdaye.com.geometricweather.R$style: int Base_CardView +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColorLink +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: double Value +com.turingtechnologies.materialscrollbar.R$layout: int abc_popup_menu_header_item_layout +okhttp3.internal.http1.Http1Codec$ChunkedSource: void readChunkSize() +okhttp3.internal.ws.WebSocketWriter: okio.Buffer sinkBuffer +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_ContextMenu +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeight +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long COMPLETE_MASK +androidx.constraintlayout.utils.widget.ImageFilterView: void setRoundPercent(float) +cyanogenmod.app.ProfileGroup: boolean mDirty +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int activeCount +james.adaptiveicon.R$drawable: int abc_ratingbar_small_material +androidx.swiperefreshlayout.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.db.entities.LocationEntity: void setDistrict(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRealFeelTemperature(java.lang.Integer) +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object readKey(android.database.Cursor,int) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DewPoint +com.google.android.material.R$id: int accessibility_custom_action_22 +io.reactivex.internal.util.VolatileSizeArrayList: VolatileSizeArrayList(int) +androidx.constraintlayout.widget.R$attr: int homeAsUpIndicator +cyanogenmod.externalviews.KeyguardExternalView$2: cyanogenmod.externalviews.KeyguardExternalView this$0 +com.google.android.material.R$id: int smallLabel +wangdaye.com.geometricweather.R$layout: int widget_day_mini +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Id +wangdaye.com.geometricweather.R$string: int clear_text_end_icon_content_description +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int insetForeground +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionMode +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_3 +james.adaptiveicon.R$style: int Widget_AppCompat_ListView +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: int bufferSize +androidx.recyclerview.R$string +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.DailyEntity,int) +androidx.preference.R$styleable: int AppCompatTextView_drawableLeftCompat +androidx.appcompat.R$color: int switch_thumb_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonTintMode +com.google.android.material.R$attr: int maxImageSize +androidx.swiperefreshlayout.R$drawable: int notification_bg +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_CLOSE +androidx.lifecycle.GeneratedAdapter: void callMethods(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,boolean,androidx.lifecycle.MethodCallsLogger) +wangdaye.com.geometricweather.R$layout: int container_circular_sky_view +cyanogenmod.app.ProfileManager: boolean profileExists(java.lang.String) +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDefaultDisplayMode +com.google.gson.stream.JsonReader: void endObject() +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable +com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException: long serialVersionUID +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItem +retrofit2.http.HEAD: java.lang.String value() +com.google.android.material.R$style: int Widget_Design_BottomNavigationView +com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +com.jaredrummler.android.colorpicker.R$integer: int config_tooltipAnimTime +james.adaptiveicon.R$drawable: int abc_ic_arrow_drop_right_black_24dp +androidx.transition.R$styleable: int[] ColorStateListItem +androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_RadioButton +com.google.android.material.R$attr: int region_heightMoreThan +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$attr: int iconSpaceReserved +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_default_mtrl_alpha +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_APP_SWITCH_ACTION_VALIDATOR +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog +com.google.android.material.R$layout: int test_action_chip +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource ACCU +androidx.preference.R$styleable: int ViewBackgroundHelper_android_background +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_orientation +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_checkboxStyle +okhttp3.Dispatcher: boolean promoteAndExecute() +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorCornerRadius +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableTop +androidx.hilt.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.vectordrawable.animated.R$layout +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_bias +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle +com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_padding +com.google.android.material.textfield.TextInputLayout: int getErrorCurrentTextColors() +com.jaredrummler.android.colorpicker.R$styleable: int ActionBarLayout_android_layout_gravity +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +com.bumptech.glide.integration.okhttp.R$attr: int coordinatorLayoutStyle +com.google.android.material.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.R$id: int month_navigation_next +okhttp3.OkHttpClient$1: java.io.IOException timeoutExit(okhttp3.Call,java.io.IOException) +androidx.lifecycle.ProcessLifecycleOwner$3: ProcessLifecycleOwner$3(androidx.lifecycle.ProcessLifecycleOwner) +androidx.coordinatorlayout.R$attr: int statusBarBackground +cyanogenmod.app.BaseLiveLockManagerService: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Entry +retrofit2.ParameterHandler$Tag +androidx.appcompat.R$attr: int height +cyanogenmod.providers.CMSettings$Global: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: boolean isDisposed() +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_unselected +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_isEnabled +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.bumptech.glide.integration.okhttp.R$dimen: int notification_main_column_padding_top +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void cancel() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindDirection(java.lang.String) +androidx.preference.R$drawable: int abc_edit_text_material +io.reactivex.internal.functions.Functions$HashSetCallable +androidx.appcompat.R$styleable: int ViewStubCompat_android_layout +com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar_Indicator +com.xw.repo.bubbleseekbar.R$dimen: int compat_notification_large_icon_max_width +androidx.fragment.R$id: int accessibility_custom_action_16 +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: MfWarningsResult() +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer dbz +androidx.appcompat.R$id: int actions +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: void run() +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_DarkActionBar +okhttp3.HttpUrl: java.lang.String url +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean set(int,boolean) +io.reactivex.internal.util.NotificationLite: boolean acceptFull(java.lang.Object,io.reactivex.Observer) +com.jaredrummler.android.colorpicker.R$attr: int buttonGravity +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: ObservableTimeoutTimed$TimeoutFallbackObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker,io.reactivex.ObservableSource) +io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function,boolean,int) +cyanogenmod.externalviews.IExternalViewProvider: void onStart() +androidx.customview.R$color +androidx.customview.R$attr: int alpha +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginStart +okhttp3.internal.cache.DiskLruCache: long nextSequenceNumber +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyTopLeft +com.google.android.material.R$attr: int behavior_autoShrink +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +android.didikee.donate.R$style: int Widget_AppCompat_ListView_Menu +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode daytimeWeatherCode +com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_id +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_large_material +retrofit2.http.GET +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_PROVIDER +android.didikee.donate.R$attr: int alertDialogStyle +androidx.viewpager2.R$id: int accessibility_custom_action_12 +cyanogenmod.app.PartnerInterface: void rebootDevice() +androidx.drawerlayout.R$styleable: int FontFamilyFont_ttcIndex +androidx.appcompat.R$dimen: int highlight_alpha_material_dark +wangdaye.com.geometricweather.R$attr: int motionPathRotate +wangdaye.com.geometricweather.R$styleable: int CompoundButton_android_button +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizePresetSizes +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_3_material +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_enter +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks mCallback +okhttp3.internal.http2.Http2Stream$FramingSource: void close() +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorAnimationDuration +wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_radio +okhttp3.Address: javax.net.ssl.HostnameVerifier hostnameVerifier() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String ObstructionsToVisibility +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_statusBarBackground +androidx.appcompat.resources.R$style: int Widget_Compat_NotificationActionContainer +androidx.appcompat.R$color: int androidx_core_secondary_text_default_material_light +androidx.appcompat.R$attr: int windowActionBarOverlay +com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Light +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxIo +com.bumptech.glide.R$styleable: int[] FontFamilyFont +com.jaredrummler.android.colorpicker.R$style: int Base_AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility +androidx.activity.R$color: R$color() +wangdaye.com.geometricweather.R$dimen: int hint_pressed_alpha_material_dark +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_36dp +okhttp3.RealCall$AsyncCall: java.lang.String host() +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_20 +androidx.hilt.lifecycle.R$attr +com.xw.repo.bubbleseekbar.R$attr: int subtitleTextAppearance +com.jaredrummler.android.colorpicker.R$attr: int actionModeWebSearchDrawable +androidx.preference.R$attr: int preferenceFragmentListStyle +com.google.android.material.R$styleable: int TextInputLayout_android_enabled +com.google.android.material.R$styleable: int[] ViewBackgroundHelper +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit FT +cyanogenmod.app.Profile: java.util.List readSecondaryUuidsFromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isModify +androidx.constraintlayout.widget.R$attr: int layout_constraintDimensionRatio +com.google.android.material.R$attr: int barrierDirection +com.google.android.material.R$dimen: int abc_edit_text_inset_top_material +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +androidx.coordinatorlayout.R$color +androidx.appcompat.R$styleable: int View_android_focusable +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_popupTheme +cyanogenmod.profiles.BrightnessSettings: boolean mOverride +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit INHG +androidx.activity.R$dimen: int notification_top_pad +androidx.preference.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit[] values() +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickInactiveTintList() +wangdaye.com.geometricweather.R$dimen: int notification_small_icon_background_padding +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_switch_compat +androidx.drawerlayout.R$layout: R$layout() +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_right +com.jaredrummler.android.colorpicker.R$attr: int colorBackgroundFloating +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCopyDrawable +wangdaye.com.geometricweather.R$id: int direct +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String defenseIcon +android.didikee.donate.R$attr: int checkboxStyle +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetBottom +wangdaye.com.geometricweather.R$array: int pressure_unit_values +wangdaye.com.geometricweather.R$id: int widget_clock_day_wind +cyanogenmod.providers.CMSettings$3 +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_DAY +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_default_mtrl_shape +androidx.preference.R$style: int Widget_AppCompat_Light_ListView_DropDown +androidx.core.graphics.drawable.IconCompatParcelizer +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode WIND +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeight +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_inputType +retrofit2.http.Part +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemTextAppearance +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarSplitStyle +androidx.lifecycle.extensions.R$anim: int fragment_fast_out_extra_slow_in +okhttp3.internal.http2.Settings: int MAX_CONCURRENT_STREAMS +com.google.android.material.R$styleable: int ImageFilterView_roundPercent +wangdaye.com.geometricweather.R$attr: int flow_verticalBias +androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_SHOWERS +com.bumptech.glide.integration.okhttp.R$attr: int fontWeight +wangdaye.com.geometricweather.R$id: int container_main_aqi_title +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List diaoyu +androidx.lifecycle.extensions.R$id: int title +com.google.android.material.R$dimen: int design_bottom_navigation_item_min_width +wangdaye.com.geometricweather.R$attr: int textAppearanceSmallPopupMenu +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +com.google.android.material.R$styleable: int[] CoordinatorLayout_Layout +okhttp3.internal.http.BridgeInterceptor: BridgeInterceptor(okhttp3.CookieJar) +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_PULSE +com.turingtechnologies.materialscrollbar.R$drawable: int abc_dialog_material_background +androidx.appcompat.R$drawable: int abc_text_select_handle_right_mtrl_light +james.adaptiveicon.R$attr: int panelMenuListWidth +com.jaredrummler.android.colorpicker.R$anim: R$anim() +androidx.preference.R$attr: int actionModeWebSearchDrawable +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert +wangdaye.com.geometricweather.R$attr: int closeIconStartPadding +okio.GzipSource: int section +wangdaye.com.geometricweather.R$attr: int titleTextStyle +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicReference upstream +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onNext(java.lang.Object) +org.greenrobot.greendao.database.DatabaseOpenHelper: void onCreate(android.database.sqlite.SQLiteDatabase) +wangdaye.com.geometricweather.R$drawable: int weather_haze_2 +wangdaye.com.geometricweather.R$id: int activity_weather_daily_subtitle +wangdaye.com.geometricweather.R$id: int widget_day_icon +androidx.preference.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_fragment +androidx.appcompat.R$attr: int showText +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.util.concurrent.atomic.AtomicLong requested +androidx.appcompat.R$attr: int toolbarNavigationButtonStyle +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig minutelyEntityDaoConfig +com.google.android.material.internal.ParcelableSparseArray +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_stacked_tab_max_width +com.turingtechnologies.materialscrollbar.R$id: int action_bar_spinner +okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Level level +android.didikee.donate.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_Overflow +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Blue +cyanogenmod.externalviews.ExternalViewProperties: int mHeight +com.turingtechnologies.materialscrollbar.R$id: int search_plate +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +androidx.appcompat.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitationDuration +com.google.android.material.R$dimen: int abc_text_size_display_1_material +wangdaye.com.geometricweather.R$font: int product_sans_thin_italic +com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_900 +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_colorShape +androidx.constraintlayout.widget.R$attr: int dividerPadding +com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace SRGB +com.xw.repo.bubbleseekbar.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +wangdaye.com.geometricweather.R$styleable: int[] CoordinatorLayout +wangdaye.com.geometricweather.R$drawable: int cpv_btn_background_pressed +wangdaye.com.geometricweather.R$layout: int item_about_link +com.turingtechnologies.materialscrollbar.R$attr: int enforceTextAppearance +cyanogenmod.weatherservice.WeatherProviderService$1: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) +wangdaye.com.geometricweather.R$attr: int boxStrokeWidthFocused +com.google.android.material.R$dimen: int design_navigation_elevation +androidx.preference.R$attr: int spinnerStyle +james.adaptiveicon.R$styleable: int ActionBar_navigationMode +androidx.drawerlayout.R$dimen: int notification_main_column_padding_top +androidx.core.app.RemoteActionCompat +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode[] values() +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +com.google.android.material.R$attr: int fabAnimationMode +wangdaye.com.geometricweather.R$xml: int icon_provider_shortcut_filter +wangdaye.com.geometricweather.R$attr: int suffixTextColor +com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_Alert +com.google.android.material.R$attr: int dayStyle +okhttp3.internal.http2.Huffman: int encodedLength(okio.ByteString) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Medium +com.google.android.material.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled +wangdaye.com.geometricweather.R$attr: int checkedIconTint +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String getUnit() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableEndCompat +io.reactivex.Observable: void subscribe(io.reactivex.Observer) +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: ObservableTimer$TimerObserver(io.reactivex.Observer) +androidx.hilt.work.R$dimen: int compat_notification_large_icon_max_height +cyanogenmod.providers.CMSettings$System: long getLongForUser(android.content.ContentResolver,java.lang.String,int) +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$color: int secondary_text_disabled_material_dark +androidx.constraintlayout.widget.R$styleable: int TextAppearance_fontVariationSettings +androidx.appcompat.R$dimen: int abc_text_size_large_material +wangdaye.com.geometricweather.R$color: int mtrl_chip_text_color +androidx.appcompat.R$drawable: int abc_scrubber_control_off_mtrl_alpha +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SeekBar +com.xw.repo.bubbleseekbar.R$attr: int contentInsetStartWithNavigation +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_popupMenuStyle +androidx.lifecycle.ReportFragment: androidx.lifecycle.ReportFragment$ActivityInitializationListener mProcessListener +okhttp3.logging.HttpLoggingInterceptor: boolean bodyHasUnknownEncoding(okhttp3.Headers) +com.google.android.material.R$id: int group_divider +androidx.viewpager2.R$attr: int fontProviderAuthority +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CURRENT_AND_FORECAST_WEATHER_URI +androidx.preference.R$styleable: int Preference_singleLineTitle +cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onListenerConnected_0 +androidx.preference.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.R$anim: int popup_show_bottom_left +androidx.work.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: HistoryEntityDao(org.greenrobot.greendao.internal.DaoConfig) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginStart +com.bumptech.glide.R$id: int end +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder socket(java.net.Socket) +com.google.android.material.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge +android.didikee.donate.R$color: int ripple_material_light +com.google.android.material.slider.RangeSlider: int getLabelBehavior() +wangdaye.com.geometricweather.R$style: int Preference_CheckBoxPreference_Material +android.didikee.donate.R$styleable: int AppCompatTheme_imageButtonStyle wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listMenuViewStyle -androidx.preference.PreferenceManager: void setOnDisplayPreferenceDialogListener(androidx.preference.PreferenceManager$OnDisplayPreferenceDialogListener) -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: long serialVersionUID -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeTitle -com.bumptech.glide.R$id: int icon_group -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSteps -com.google.android.material.R$color: int androidx_core_ripple_material_light -androidx.constraintlayout.widget.R$id: int postLayout -android.support.v4.app.INotificationSideChannel$Stub: INotificationSideChannel$Stub() -androidx.coordinatorlayout.R$layout: R$layout() -james.adaptiveicon.R$id: int action_container -wangdaye.com.geometricweather.R$color: int mtrl_btn_text_btn_ripple_color -androidx.hilt.work.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_backgroundTint -james.adaptiveicon.R$attr: int subtitleTextAppearance -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleTextAppearance -com.google.gson.internal.LinkedTreeMap: LinkedTreeMap(java.util.Comparator) -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteDatabase routeDatabase() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_maxWidth -cyanogenmod.profiles.ConnectionSettings: int getValue() -james.adaptiveicon.R$attr: int subtitle -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: DailyEntityDao$Properties() -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.util.Date date -androidx.preference.R$id: int search_edit_frame -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property City -com.jaredrummler.android.colorpicker.R$drawable: R$drawable() -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CITY -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State STARTED -wangdaye.com.geometricweather.R$drawable: int notif_temp_32 -com.google.android.material.chip.Chip: void setCheckedIconEnabled(boolean) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -androidx.constraintlayout.widget.R$id: int asConfigured -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_scaleX -androidx.preference.R$attr: int buttonPanelSideLayout -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_5_30 -androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getCollapseIcon() -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation access$402(cyanogenmod.weather.RequestInfo,cyanogenmod.weather.WeatherLocation) -okhttp3.internal.cache.DiskLruCache$Snapshot: DiskLruCache$Snapshot(okhttp3.internal.cache.DiskLruCache,java.lang.String,long,okio.Source[],long[]) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitation(java.lang.Float) -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -cyanogenmod.app.CustomTile$ExpandedStyle$1: cyanogenmod.app.CustomTile$ExpandedStyle[] newArray(int) -com.google.android.material.R$styleable: int AppCompatTheme_popupWindowStyle -okhttp3.internal.http2.Http2Reader: void readData(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView_DropDown -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -androidx.constraintlayout.widget.R$styleable: int TextAppearance_textLocale -com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_android_background -androidx.swiperefreshlayout.R$attr: int fontProviderCerts -io.reactivex.Observable: io.reactivex.Observable unsafeCreate(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setZh_TW(java.lang.String) -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableBottom -retrofit2.HttpException: int code -androidx.activity.R$id: int accessibility_custom_action_6 -com.google.android.material.R$styleable: int ConstraintSet_flow_verticalAlign -wangdaye.com.geometricweather.R$drawable: int ic_router -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection connection() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setStatus(int) -okhttp3.OkHttpClient: java.util.List interceptors() -com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: FloatingActionButton$BaseBehavior(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long index -james.adaptiveicon.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -androidx.vectordrawable.animated.R$id: int action_text -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer cloudCover -james.adaptiveicon.R$dimen: int abc_control_inset_material -cyanogenmod.profiles.ConnectionSettings: boolean mOverride -james.adaptiveicon.R$string: int abc_action_menu_overflow_description -android.didikee.donate.R$attr: int actionBarSplitStyle -io.reactivex.Observable: io.reactivex.Observable switchMapMaybe(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day -com.github.rahatarmanahmed.cpv.R$bool: R$bool() -okhttp3.internal.cache.DiskLruCache$1 -com.turingtechnologies.materialscrollbar.R$attr: int layout -com.turingtechnologies.materialscrollbar.R$id: int search_voice_btn -cyanogenmod.library.R: R() -cyanogenmod.app.IPartnerInterface$Stub$Proxy: android.os.IBinder mRemote -androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_dark -androidx.appcompat.R$styleable: int ActionMode_background -androidx.hilt.work.R$styleable: int GradientColor_android_type -james.adaptiveicon.R$id: int action_menu_presenter -okhttp3.internal.cache2.Relay: int sourceCount -com.jaredrummler.android.colorpicker.R$attr: int progressBarStyle -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void complete() -cyanogenmod.app.CustomTileListenerService: int mCurrentUser -com.google.android.material.R$styleable: int Constraint_android_alpha -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_MIGRATE_SETTINGS_FOR_USER -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onLockscreenSlideOffsetChanged(float) -io.reactivex.Observable: io.reactivex.Observable create(io.reactivex.ObservableOnSubscribe) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCutDrawable -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableTop -com.google.android.material.R$styleable: int Constraint_motionProgress -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Small -androidx.appcompat.R$style: int Base_V28_Theme_AppCompat_Light -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: ObservableTimeout$TimeoutObserver(io.reactivex.Observer,io.reactivex.functions.Function) -com.turingtechnologies.materialscrollbar.R$id: int titleDividerNoCustom -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_trendRecyclerView -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max -io.reactivex.internal.operators.observable.ObservableGroupBy$State: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.Observer downstream -okio.Buffer: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_48 -com.google.android.material.R$id: int accessibility_custom_action_12 -okhttp3.internal.http.HttpHeaders: java.lang.String readToken(okio.Buffer) -androidx.hilt.work.R$id: int accessibility_custom_action_21 -james.adaptiveicon.R$string: int abc_activitychooserview_choose_application -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleGravity() -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: long serialVersionUID -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: double Value -wangdaye.com.geometricweather.R$styleable: int MenuView_android_windowAnimationStyle -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_BRIGHTNESS_CONTROL_VALIDATOR -com.google.android.material.R$styleable: int ImageFilterView_altSrc -com.google.android.material.slider.BaseSlider: void setThumbStrokeColor(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_min -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Caption -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView -james.adaptiveicon.R$attr: int buttonBarButtonStyle -wangdaye.com.geometricweather.R$id: int widget_week_temp_2 -com.google.android.material.R$styleable: int LinearLayoutCompat_dividerPadding -okio.Segment: Segment(byte[],int,int,boolean,boolean) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_enter -wangdaye.com.geometricweather.main.utils.MainPalette: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_placeholder_content -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_COLOR_VALIDATOR -cyanogenmod.weather.WeatherLocation: java.lang.String access$102(cyanogenmod.weather.WeatherLocation,java.lang.String) -com.google.android.material.R$id: int dragStart -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog -cyanogenmod.providers.CMSettings$Secure: boolean putInt(android.content.ContentResolver,java.lang.String,int) -wangdaye.com.geometricweather.R$string: int about_gson -cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem(android.os.Parcel) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_end -androidx.legacy.coreutils.R$attr: int ttcIndex -wangdaye.com.geometricweather.main.MainActivityViewModel -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -wangdaye.com.geometricweather.R$id: int item_weather_daily_title_icon -wangdaye.com.geometricweather.R$color: int design_icon_tint -androidx.coordinatorlayout.R$attr: int coordinatorLayoutStyle -wangdaye.com.geometricweather.R$color: int colorTextGrey2nd -com.jaredrummler.android.colorpicker.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.R$layout: int select_dialog_item_material -androidx.preference.R$attr: int dialogPreferredPadding -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -android.didikee.donate.R$styleable: int ActionBar_hideOnContentScroll -io.reactivex.Observable: io.reactivex.Observable concatMapIterable(io.reactivex.functions.Function,int) -com.xw.repo.bubbleseekbar.R$attr: int queryBackground -androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -com.bumptech.glide.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$layout: int material_clock_display -androidx.recyclerview.R$attr: int ttcIndex -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: int getStatus() -com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_iconifiedByDefault -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColor -android.didikee.donate.R$layout: int abc_list_menu_item_checkbox -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPublishDate(java.util.Date) -android.didikee.donate.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_text_padding_right -androidx.legacy.coreutils.R$dimen: int compat_button_padding_horizontal_material -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.TableStatements getStatements() -wangdaye.com.geometricweather.R$id: int contentPanel -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(java.lang.Iterable,io.reactivex.functions.Function) -com.google.android.material.slider.Slider: float getValueFrom() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_EditText -com.turingtechnologies.materialscrollbar.R$drawable: int indicator_ltr -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.functions.Function mapper -com.google.android.material.R$attr: int icon -wangdaye.com.geometricweather.common.basic.models.weather.Pollen -androidx.lifecycle.ProcessLifecycleOwner: long TIMEOUT_MS -androidx.transition.R$id: int italic -com.google.android.material.progressindicator.ProgressIndicator: void setLinearSeamless(boolean) -com.google.android.material.circularreveal.CircularRevealGridLayout: CircularRevealGridLayout(android.content.Context) -org.greenrobot.greendao.AbstractDao: java.util.List loadAll() -okhttp3.internal.http2.Http2Stream$FramingSource: boolean finished -wangdaye.com.geometricweather.R$styleable: int Preference_android_icon -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton -androidx.constraintlayout.widget.R$attr: int percentHeight -androidx.constraintlayout.widget.R$attr: int divider -android.didikee.donate.R$layout: int support_simple_spinner_dropdown_item -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float total -androidx.appcompat.R$drawable -com.turingtechnologies.materialscrollbar.R$drawable: int notification_template_icon_low_bg -androidx.coordinatorlayout.R$layout: int notification_action -com.google.android.material.appbar.MaterialToolbar -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_focusable -androidx.fragment.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.R$style: int PreferenceFragmentList -com.google.android.material.R$dimen: int tooltip_margin -com.google.android.material.R$attr: int displayOptions -androidx.viewpager.R$styleable: int FontFamilyFont_android_font -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextColor(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_transitionPathRotate -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabView -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Alert_Bridge -com.google.android.material.R$dimen: int mtrl_bottomappbar_height -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton -androidx.constraintlayout.widget.R$string: int abc_searchview_description_submit -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int aqi -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_checkable -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_backgroundTint -com.jaredrummler.android.colorpicker.R$attr: int listPopupWindowStyle -com.xw.repo.bubbleseekbar.R$dimen: int compat_notification_large_icon_max_height -com.turingtechnologies.materialscrollbar.R$styleable: int[] PopupWindow -com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_android_popupAnimationStyle -wangdaye.com.geometricweather.common.basic.models.weather.History -androidx.dynamicanimation.R$dimen: int notification_big_circle_margin -retrofit2.DefaultCallAdapterFactory$1: java.lang.reflect.Type responseType() -com.google.android.material.chip.Chip: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -com.google.android.material.R$dimen: int mtrl_chip_text_size -androidx.constraintlayout.widget.R$attr: int moveWhenScrollAtTop -cyanogenmod.app.CMStatusBarManager: boolean localLOGV -com.turingtechnologies.materialscrollbar.R$attr: int overlapAnchor -com.google.android.material.R$styleable: int AppCompatTextView_autoSizeTextType -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView_Menu -android.didikee.donate.R$styleable: int TextAppearance_android_shadowDx -okhttp3.internal.http.RealResponseBody: long contentLength() -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeService getService() -androidx.transition.R$dimen: int compat_button_inset_vertical_material -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotationX -wangdaye.com.geometricweather.R$styleable: int MaterialTextView_android_lineHeight -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_inverse_material_dark -androidx.appcompat.R$style: int Theme_AppCompat_Light -com.jaredrummler.android.colorpicker.R$color: int ripple_material_light -androidx.constraintlayout.widget.R$attr: int constraintSetEnd -androidx.constraintlayout.widget.R$attr: int switchStyle -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMargins -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_is_float_type -androidx.preference.R$color: int dim_foreground_disabled_material_light -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxySelector(java.net.ProxySelector) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingBottom -com.google.android.material.R$styleable: int KeyCycle_android_translationX -androidx.appcompat.R$color: int button_material_light -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onComplete() -wangdaye.com.geometricweather.R$styleable: int Preference_android_layout -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_colored_material -wangdaye.com.geometricweather.R$attr: int keyPositionType -androidx.drawerlayout.R$drawable: int notification_bg_low_pressed -android.didikee.donate.R$id: int split_action_bar -com.google.android.material.R$styleable: int ConstraintSet_layout_constrainedWidth -androidx.customview.R$styleable: int FontFamily_fontProviderPackage -androidx.constraintlayout.widget.R$attr: int track -com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius -cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: int CELSIUS -androidx.hilt.lifecycle.R$id: int action_container -com.jaredrummler.android.colorpicker.R$attr: int entryValues -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_keyline -androidx.customview.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitation() -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_warmth -com.google.android.material.R$styleable: int[] ActionMode -retrofit2.Response: retrofit2.Response success(int,java.lang.Object) -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleContentDescription -com.google.android.material.R$styleable: int MotionTelltales_telltales_tailScale -androidx.legacy.coreutils.R$drawable: int notify_panel_notification_icon_bg -retrofit2.RequestFactory$Builder: RequestFactory$Builder(retrofit2.Retrofit,java.lang.reflect.Method) -androidx.activity.R$styleable: int FontFamilyFont_fontWeight -okio.Buffer: okio.Buffer writeByte(int) -james.adaptiveicon.R$attr: int allowStacking -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void otherSuccess(java.lang.Object) -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: CompletableFutureCallAdapterFactory$BodyCallAdapter(java.lang.reflect.Type) -wangdaye.com.geometricweather.R$attr: int tabIconTint -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_TextView -wangdaye.com.geometricweather.R$string: int mtrl_exceed_max_badge_number_content_description -com.jaredrummler.android.colorpicker.R$attr: int backgroundSplit -androidx.activity.R$id: int accessibility_custom_action_12 -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW_SHOWERS -androidx.viewpager2.R$styleable: int RecyclerView_android_orientation -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setIndicatorPosition(int) -cyanogenmod.profiles.LockSettings: java.lang.String TAG -cyanogenmod.providers.CMSettings$1: boolean validate(java.lang.String) -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.Observer downstream -com.google.android.material.R$styleable: int CustomAttribute_customBoolean -okhttp3.RealCall -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.R$style: int Preference_SwitchPreferenceCompat_Material -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: int getChartTop() -com.google.android.material.R$styleable: int AppCompatTheme_actionBarWidgetTheme -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -com.xw.repo.bubbleseekbar.R$attr: int title -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_136 -retrofit2.adapter.rxjava2.CallEnqueueObservable: retrofit2.Call originalCall -androidx.appcompat.resources.R$id: int accessibility_custom_action_1 -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: void enqueue(retrofit2.Callback) -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_ALLERGEN -android.didikee.donate.R$color: int background_floating_material_dark -com.google.android.material.R$styleable: int CardView_contentPaddingRight -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: io.reactivex.Scheduler scheduler -androidx.viewpager2.R$id: R$id() -androidx.preference.R$attr: int height -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_CompactMenu -com.google.android.material.slider.BaseSlider$SliderState -androidx.appcompat.resources.R$id: int chronometer -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_background -androidx.loader.R$attr: int fontWeight -androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.internal.CheckableImageButton -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onComplete() -com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPanelView -james.adaptiveicon.R$id: int radio -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: long serialVersionUID -com.github.rahatarmanahmed.cpv.CircularProgressView: void init(android.util.AttributeSet,int) -androidx.legacy.coreutils.R$style: int Widget_Compat_NotificationActionText -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_visible -androidx.viewpager.widget.ViewPager: int getPageMargin() -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_seekBarIncrement -wangdaye.com.geometricweather.R$id: int item_details_icon -wangdaye.com.geometricweather.R$id: int mtrl_picker_header_selection_text -androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_material -okhttp3.internal.publicsuffix.PublicSuffixDatabase -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_HAIL -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingLeft -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams access$300(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.weather.apis.CNWeatherApi -okhttp3.internal.http2.Settings: int size() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.WeatherEntity) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.disposables.Disposable upstream -androidx.preference.R$color: int ripple_material_light -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -com.google.android.material.R$attr: int checkedIconVisible -okhttp3.OkHttpClient$Builder: javax.net.ssl.HostnameVerifier hostnameVerifier -androidx.constraintlayout.widget.R$attr: int actionModeCloseDrawable -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRealFeelTemperature(java.lang.Integer) -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_middle_mtrl_light -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -androidx.appcompat.widget.LinearLayoutCompat: void setOrientation(int) -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_label_cutout_padding -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$styleable: int Slider_haloRadius -retrofit2.DefaultCallAdapterFactory$1: retrofit2.DefaultCallAdapterFactory this$0 -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -okhttp3.internal.cache.CacheInterceptor: boolean isEndToEnd(java.lang.String) -androidx.vectordrawable.R$drawable -com.google.android.material.bottomnavigation.BottomNavigationView$SavedState -wangdaye.com.geometricweather.R$attr: int radius_to -com.google.android.material.R$layout: int mtrl_picker_fullscreen -androidx.appcompat.R$color: int dim_foreground_disabled_material_light -androidx.appcompat.R$style: int Platform_V21_AppCompat_Light -okhttp3.ResponseBody$BomAwareReader: void close() -androidx.work.R$styleable: int ColorStateListItem_android_alpha -androidx.appcompat.R$styleable: int ViewBackgroundHelper_android_background -androidx.appcompat.R$color: int abc_color_highlight_material -androidx.constraintlayout.widget.R$styleable: int AlertDialog_buttonIconDimen -wangdaye.com.geometricweather.R$styleable: int[] Insets -okhttp3.internal.http.HttpHeaders: okio.ByteString TOKEN_DELIMITERS -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: ObservableReplay$ReplayObserver(io.reactivex.internal.operators.observable.ObservableReplay$ReplayBuffer) -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_dark -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_dotDiameter -com.google.android.material.R$styleable: int AppCompatTextHelper_android_textAppearance -com.google.android.material.R$styleable: int[] FloatingActionButton -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() -wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_android_entries -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onComplete() -cyanogenmod.providers.CMSettings$Secure: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) -android.support.v4.os.ResultReceiver$MyResultReceiver: android.support.v4.os.ResultReceiver this$0 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: double Value -com.google.android.material.R$attr: int tabInlineLabel -cyanogenmod.app.suggest.AppSuggestManager: android.graphics.drawable.Drawable loadIcon(cyanogenmod.app.suggest.ApplicationSuggestion) -com.google.android.material.R$styleable: int ActionBar_homeLayout -wangdaye.com.geometricweather.R$drawable: int mtrl_popupmenu_background_dark -cyanogenmod.profiles.LockSettings: void processOverride(android.content.Context,com.android.internal.policy.IKeyguardService) -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.lang.Object next() -okhttp3.Cache: void remove(okhttp3.Request) -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_FAST_AVG -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginTop -wangdaye.com.geometricweather.R$id: int widget_week_temp_1 -io.reactivex.internal.observers.BlockingObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_background_transition_holo_dark -android.didikee.donate.R$string: int app_name -wangdaye.com.geometricweather.R$anim: int abc_tooltip_enter -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalBias -wangdaye.com.geometricweather.R$string: int about_greenDAO -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation Elevation -androidx.appcompat.R$styleable: int MenuView_android_windowAnimationStyle -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.db.entities.LocationEntity: float getLatitude() -androidx.preference.R$styleable: int AppCompatTheme_listPopupWindowStyle -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: java.lang.String Unit -james.adaptiveicon.R$attr: int track -androidx.constraintlayout.widget.R$attr: int layout_constraintEnd_toEndOf -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterOverflowTextColor -cyanogenmod.externalviews.ExternalView$3: void run() -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Long id -androidx.appcompat.widget.Toolbar: void setContentInsetEndWithActions(int) -androidx.preference.R$styleable: int MenuGroup_android_id -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.Scheduler$Worker worker -com.google.android.material.appbar.AppBarLayout: float getTargetElevation() -okio.RealBufferedSink: long writeAll(okio.Source) -wangdaye.com.geometricweather.R$styleable: int Constraint_motionStagger -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer cloudCover -androidx.preference.R$style: int Base_AlertDialog_AppCompat_Light -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_7 -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean cancel(java.util.concurrent.atomic.AtomicReference) -com.xw.repo.bubbleseekbar.R$attr: int checkedTextViewStyle -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$drawable: int abc_dialog_material_background -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date -okhttp3.internal.http2.Http2Connection$5: java.util.List val$requestHeaders -wangdaye.com.geometricweather.R$attr: int actionLayout -com.turingtechnologies.materialscrollbar.R$attr: int titleMargins -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -com.turingtechnologies.materialscrollbar.R$string: int abc_search_hint -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean -okhttp3.CertificatePinner$Pin: CertificatePinner$Pin(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String district -androidx.appcompat.R$style: int Widget_AppCompat_ListView_Menu -com.google.android.material.bottomnavigation.BottomNavigationView$SavedState: android.os.Parcelable$Creator CREATOR -androidx.swiperefreshlayout.R$dimen: int notification_content_margin_start -com.xw.repo.bubbleseekbar.R$color: int abc_tint_btn_checkable -com.google.android.material.R$attr: int foregroundInsidePadding -okhttp3.Call: void enqueue(okhttp3.Callback) -cyanogenmod.app.StatusBarPanelCustomTile: int getUid() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionMenuTextColor -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginTop -okhttp3.internal.http2.Http2Stream$FramingSink: long EMIT_BUFFER_SIZE -androidx.preference.R$attr: int panelBackground -com.google.android.material.R$anim: int mtrl_bottom_sheet_slide_in -james.adaptiveicon.R$id: int action_bar_spinner -androidx.dynamicanimation.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$layout: int item_icon_provider_get_more -com.google.gson.JsonParseException -androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy REPLACE -android.didikee.donate.R$attr: int titleMargins -androidx.viewpager2.R$styleable: int GradientColor_android_startColor -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_MAX_INDEX -androidx.preference.R$id: int edit_query -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean done -okhttp3.internal.connection.RealConnection: void connect(int,int,int,int,boolean,okhttp3.Call,okhttp3.EventListener) -com.google.android.material.chip.Chip: void setCloseIconEndPadding(float) -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.R$dimen: int design_navigation_item_icon_padding -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeTitle -okhttp3.internal.http.BridgeInterceptor: java.lang.String cookieHeader(java.util.List) -androidx.appcompat.resources.R$layout: R$layout() -androidx.swiperefreshlayout.R$id: int tag_unhandled_key_event_manager -okhttp3.Handshake: java.security.Principal localPrincipal() -com.google.android.material.R$styleable: int Layout_layout_constraintHeight_percent -com.google.android.material.R$attr: int itemTextAppearanceInactive -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX -com.google.android.material.R$styleable: int Chip_textStartPadding -okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method openMethod -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias -cyanogenmod.themes.IThemeProcessingListener$Stub: IThemeProcessingListener$Stub() -com.google.android.material.chip.ChipGroup: void setChipSpacingVerticalResource(int) +cyanogenmod.hardware.CMHardwareManager: android.content.Context mContext +wangdaye.com.geometricweather.common.basic.models.weather.Base: long getTimeStamp() +com.github.rahatarmanahmed.cpv.CircularProgressView: int animSteps +okhttp3.MultipartBody$Part: okhttp3.RequestBody body() +cyanogenmod.themes.IThemeChangeListener$Stub: cyanogenmod.themes.IThemeChangeListener asInterface(android.os.IBinder) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: int UnitType +com.google.android.material.R$styleable: int SearchView_android_inputType +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_CRITICAL +androidx.core.R$styleable: int GradientColor_android_startColor +cyanogenmod.app.StatusBarPanelCustomTile: int getUserId() +wangdaye.com.geometricweather.R$attr: int statusBarBackground +james.adaptiveicon.R$attr: int windowFixedHeightMinor +androidx.appcompat.R$drawable: int abc_ic_clear_material +android.didikee.donate.R$styleable: int PopupWindow_android_popupBackground +com.google.android.material.R$styleable: int Layout_layout_constraintBottom_toTopOf +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast +com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_text_size +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver) +okio.Buffer: long indexOf(byte,long) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: void setPathData(androidx.core.graphics.PathParser$PathDataNode[]) +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +androidx.appcompat.R$attr: int hideOnContentScroll +wangdaye.com.geometricweather.R$id: int action_container +android.support.v4.app.INotificationSideChannel$Stub: java.lang.String DESCRIPTOR +android.didikee.donate.R$attr: int activityChooserViewStyle +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Response execute() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintStart_toEndOf +cyanogenmod.app.BaseLiveLockManagerService$1: boolean getLiveLockScreenEnabled() +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status IMPLICIT_INITIALIZING +androidx.viewpager.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_15 +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: boolean isValid() +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginEnd +cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder asBinder() +james.adaptiveicon.R$styleable: int SwitchCompat_android_textOff +wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_range_start +retrofit2.adapter.rxjava2.Result: retrofit2.Response response +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +wangdaye.com.geometricweather.R$id: int item_weather_icon_title +com.turingtechnologies.materialscrollbar.R$anim: int design_bottom_sheet_slide_in +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_summaryOn +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro sun() +wangdaye.com.geometricweather.common.ui.activities.AllergenActivity +okhttp3.RequestBody: okhttp3.MediaType contentType() +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_clipToPadding +androidx.preference.R$styleable: int AlertDialog_buttonIconDimen +androidx.viewpager2.R$id: int async +okhttp3.Address: int hashCode() +okhttp3.CipherSuite: java.lang.String javaName +com.google.android.material.R$string: int mtrl_picker_range_header_unselected +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionLayout +androidx.lifecycle.ProcessLifecycleOwner: void attach(android.content.Context) +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_item_min_width +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getStartIconContentDescription() +wangdaye.com.geometricweather.R$color: int mtrl_filled_icon_tint +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +android.didikee.donate.R$style: int Widget_AppCompat_Toolbar +androidx.appcompat.R$style: int TextAppearance_AppCompat_Title +io.reactivex.internal.util.VolatileSizeArrayList: java.util.ListIterator listIterator(int) +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: boolean val$clearPrevious +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void innerSuccess(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_background +wangdaye.com.geometricweather.R$styleable: int Badge_backgroundColor +wangdaye.com.geometricweather.R$attr: int thumbTintMode +androidx.preference.R$attr: int voiceIcon +androidx.preference.R$color: int material_blue_grey_900 +com.google.android.material.slider.BaseSlider: int getTrackHeight() +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void dispose() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeStepGranularity +wangdaye.com.geometricweather.R$styleable: int TextInputEditText_textInputLayoutFocusedRectEnabled +androidx.fragment.R$styleable: int GradientColor_android_tileMode +androidx.preference.R$styleable: int ButtonBarLayout_allowStacking +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerValue(boolean,java.lang.Object) +androidx.constraintlayout.widget.Group: void setVisibility(int) +james.adaptiveicon.R$styleable: int AppCompatTheme_selectableItemBackground +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitationDuration(java.lang.Float) +okhttp3.internal.http2.Http2Connection$Builder: okio.BufferedSink sink +cyanogenmod.app.Profile: boolean mStatusBarIndicator +android.didikee.donate.R$attr: int iconifiedByDefault +okhttp3.internal.tls.DistinguishedNameParser +cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,int) +androidx.viewpager.widget.PagerTabStrip +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitationDuration +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +com.google.android.material.R$styleable: int AppCompatTheme_colorButtonNormal +cyanogenmod.app.IProfileManager: boolean profileExists(android.os.ParcelUuid) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onContentChanged() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default +cyanogenmod.weatherservice.IWeatherProviderService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.drawable.Drawable getContentBackground() +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onStart() +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_weather +okhttp3.FormBody$Builder: okhttp3.FormBody build() +androidx.constraintlayout.utils.widget.ImageFilterView: float getRoundPercent() +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_PRECIPITATION +wangdaye.com.geometricweather.R$drawable: int notif_temp_104 +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: java.util.concurrent.atomic.AtomicReference mSubscriber +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_PREVIEW +androidx.appcompat.R$styleable: int[] ViewStubCompat +androidx.appcompat.widget.AppCompatSpinner: void setDropDownHorizontalOffset(int) +androidx.appcompat.R$styleable: int AppCompatTheme_dividerVertical +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.xw.repo.bubbleseekbar.R$layout: int abc_dialog_title_material +androidx.preference.R$color: int material_grey_800 +cyanogenmod.weatherservice.ServiceRequestResult: java.util.List getLocationLookupList() +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_ttcIndex +androidx.appcompat.widget.ActionMenuView: int getPopupTheme() +cyanogenmod.hardware.CMHardwareManager: boolean writePersistentString(java.lang.String,java.lang.String) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: CNWeatherResult$WeatherX() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.Disposable upstream +okhttp3.internal.http2.Http2Connection$6: boolean val$inFinished +okhttp3.Cookie$Builder: java.lang.String domain +james.adaptiveicon.R$attr: int borderlessButtonStyle +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void setResource(io.reactivex.disposables.Disposable) +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: android.os.IBinder asBinder() +androidx.coordinatorlayout.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.R$color: int design_default_color_primary_variant +com.turingtechnologies.materialscrollbar.R$color: int secondary_text_disabled_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetStart +com.turingtechnologies.materialscrollbar.R$attr: int popupMenuStyle +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorPrimaryDark +wangdaye.com.geometricweather.R$attr: int materialCalendarStyle +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_alterWindow +com.google.android.material.R$styleable: int[] AlertDialog +com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context,android.util.AttributeSet) +androidx.preference.R$styleable: int AppCompatTextView_autoSizeMinTextSize +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionBarOverlay +androidx.core.R$attr +androidx.preference.R$color: int bright_foreground_material_dark +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_verticalDivider +androidx.preference.R$styleable: int MenuItem_android_title +wangdaye.com.geometricweather.R$layout: int mtrl_picker_text_input_date_range +androidx.appcompat.resources.R$id: int accessibility_custom_action_13 +androidx.preference.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +androidx.vectordrawable.animated.R$styleable: int GradientColorItem_android_color +okio.Pipe$PipeSource: Pipe$PipeSource(okio.Pipe) +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_disableDependentsState +androidx.customview.R$attr: int fontProviderFetchTimeout +androidx.vectordrawable.R$id: int accessibility_custom_action_28 +com.jaredrummler.android.colorpicker.R$attr: int customNavigationLayout +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: ObservableSkipLast$SkipLastObserver(io.reactivex.Observer,int) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_textColorHint +androidx.appcompat.R$style: int Theme_AppCompat_CompactMenu +okhttp3.internal.ws.WebSocketWriter: okio.Buffer buffer +retrofit2.KotlinExtensions$await$2$2: KotlinExtensions$await$2$2(kotlinx.coroutines.CancellableContinuation) +androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +androidx.appcompat.R$layout: int abc_search_dropdown_item_icons_2line +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getDailyForecast() +cyanogenmod.app.CMContextConstants$Features: java.lang.String PROFILES +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onComplete() +wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress +android.didikee.donate.R$styleable: int Toolbar_title +android.didikee.donate.R$attr: int windowActionBarOverlay +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1 +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Button +com.google.android.material.R$styleable: int KeyAttribute_android_transformPivotX +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: boolean val$visible +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: IThemeProcessingListener$Stub$Proxy(android.os.IBinder) +com.google.android.material.chip.ChipGroup: int getCheckedChipId() +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void cancel() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleEnabled +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeSpinner +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: androidx.lifecycle.Lifecycle$Event mEvent +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.Observer downstream +com.google.android.material.card.MaterialCardView: float getCardViewRadius() +com.jaredrummler.android.colorpicker.R$styleable: int View_paddingEnd +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: int status +com.turingtechnologies.materialscrollbar.R$attr: int liftOnScroll +wangdaye.com.geometricweather.R$id: int action_bar +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest build() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX() +com.google.android.material.R$id: int material_timepicker_mode_button +james.adaptiveicon.R$attr: int autoCompleteTextViewStyle +androidx.transition.R$dimen: int notification_subtext_size +okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman INSTANCE +retrofit2.KotlinExtensions$awaitResponse$2$2: void onResponse(retrofit2.Call,retrofit2.Response) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ws +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_1 +com.google.android.material.R$styleable: int OnSwipe_touchAnchorId +com.google.android.material.R$styleable: int TabLayout_tabIndicator +okhttp3.internal.http2.StreamResetException: okhttp3.internal.http2.ErrorCode errorCode +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void dispose() +androidx.viewpager.R$layout: int notification_action +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_toLeftOf +org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,int) +androidx.constraintlayout.widget.Barrier: void setDpMargin(int) +androidx.dynamicanimation.R$styleable: int[] FontFamilyFont +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 +com.google.gson.stream.JsonReader$1: void promoteNameToValue(com.google.gson.stream.JsonReader) +androidx.dynamicanimation.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX getWind() +wangdaye.com.geometricweather.R$string: int precipitation_rainstorm +androidx.work.R$id: int line3 +androidx.appcompat.R$attr: int drawableTopCompat +wangdaye.com.geometricweather.R$color: int mtrl_tabs_ripple_color +cyanogenmod.profiles.RingModeSettings: boolean isDirty() +cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem() +androidx.core.app.RemoteActionCompatParcelizer: void write(androidx.core.app.RemoteActionCompat,androidx.versionedparcelable.VersionedParcel) +wangdaye.com.geometricweather.R$id: int showTitle +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +androidx.appcompat.widget.Toolbar: int getTitleMarginEnd() +com.jaredrummler.android.colorpicker.R$color: int dim_foreground_material_light +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastHorizontalBias +retrofit2.DefaultCallAdapterFactory$1: java.lang.reflect.Type val$responseType +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMargins +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DIALER_OPENCNAM_AUTH_TOKEN_VALIDATOR +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_statusBarScrim +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_divider_material +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$styleable: int ActionBar_customNavigationLayout +androidx.lifecycle.extensions.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$attr: int placeholderTextColor +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.google.android.material.R$id: int visible +wangdaye.com.geometricweather.R$layout: int test_toolbar_elevation +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: IExternalViewProvider$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostStarted(android.app.Activity) +wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_lineHeight +wangdaye.com.geometricweather.R$styleable: int NavigationView_menu +com.google.android.material.R$string: int status_bar_notification_info_overflow +com.jaredrummler.android.colorpicker.R$attr: int activityChooserViewStyle +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay +james.adaptiveicon.R$attr: int color +cyanogenmod.externalviews.ExternalView$3: cyanogenmod.externalviews.ExternalView this$0 +com.google.android.material.R$color: int mtrl_navigation_item_icon_tint +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_LargeComponent +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) +com.google.android.material.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ +android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +okhttp3.Cookie$Builder: long expiresAt +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean isCancelled() +cyanogenmod.power.IPerformanceManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.recyclerview.R$id: int accessibility_custom_action_9 +james.adaptiveicon.R$styleable: int[] ViewStubCompat +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status IDLE +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogCenterButtons +androidx.work.R$dimen: int notification_media_narrow_margin +androidx.constraintlayout.widget.R$id: int autoCompleteToEnd +com.google.android.material.button.MaterialButtonToggleGroup: void setupButtonChild(com.google.android.material.button.MaterialButton) +androidx.preference.R$style: int Theme_AppCompat_Dialog_Alert +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int HIDE_NOTIFICATION_STATE +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeTextType +androidx.constraintlayout.widget.R$styleable: int[] CustomAttribute +okhttp3.internal.connection.RouteSelector +cyanogenmod.app.CustomTile$ExpandedListItem: CustomTile$ExpandedListItem() +androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Dialog +com.google.android.material.R$integer: int bottom_sheet_slide_duration +okhttp3.internal.http.HttpCodec: void finishRequest() +androidx.constraintlayout.widget.R$attr: int icon +com.google.android.material.R$string: int material_timepicker_am +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +com.turingtechnologies.materialscrollbar.R$layout: int notification_template_part_time +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int ON_COMPLETE +androidx.legacy.coreutils.R$styleable: int GradientColor_android_tileMode +james.adaptiveicon.R$styleable: int MenuItem_actionProviderClass +com.xw.repo.bubbleseekbar.R$attr: int backgroundSplit +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitation +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabStyle +com.google.android.material.R$string: int fab_transformation_scrim_behavior +okhttp3.internal.http2.Header: java.lang.String TARGET_SCHEME_UTF8 +james.adaptiveicon.R$attr: int splitTrack +androidx.preference.R$styleable: int SeekBarPreference_showSeekBarValue +com.google.android.material.R$attr: int tabPaddingEnd +io.reactivex.Observable: io.reactivex.Observable cacheWithInitialCapacity(int) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layoutDescription +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int HIGH_NOTIFICATION_STATE +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: java.lang.String mKey +androidx.lifecycle.DefaultLifecycleObserver: void onResume(androidx.lifecycle.LifecycleOwner) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout +androidx.transition.R$id: int italic +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: AccuCurrentResult$RealFeelTemperature() +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xsr +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_REMOVED +com.bumptech.glide.R$id: int text +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration precipitationDuration +androidx.constraintlayout.widget.R$attr: int actionModeSplitBackground +com.turingtechnologies.materialscrollbar.R$attr: int reverseLayout +com.google.android.material.R$color: int mtrl_choice_chip_background_color +com.google.android.material.slider.Slider: void setThumbStrokeWidthResource(int) +wangdaye.com.geometricweather.R$animator: int mtrl_fab_show_motion_spec +okio.Buffer: okio.BufferedSink writeUtf8CodePoint(int) +com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_top_material +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_8 +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_summaryOff +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.util.List toDailyTrendDisplayList(java.lang.String) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Menu +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$string: int off +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginRight +com.google.android.material.R$id: int selected +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginStart() +wangdaye.com.geometricweather.R$string: int key_forecast_tomorrow_time +androidx.lifecycle.ProcessLifecycleOwner$2: void onStart() +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_maxElementsWrap +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getHeaderHeight() +james.adaptiveicon.R$attr: int alphabeticModifiers wangdaye.com.geometricweather.R$dimen: int abc_list_item_padding_horizontal_material -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_checkboxStyle -wangdaye.com.geometricweather.R$id: int up -com.turingtechnologies.materialscrollbar.R$layout: int abc_search_dropdown_item_icons_2line -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.google.android.material.R$styleable: int TextInputLayout_endIconCheckable -com.google.android.material.R$attr: int closeIconSize -androidx.appcompat.R$drawable: int abc_ratingbar_small_material -androidx.preference.R$attr: int colorControlHighlight -androidx.hilt.R$layout: int notification_template_part_chronometer -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean done -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarItemBackground -wangdaye.com.geometricweather.R$drawable: int abc_list_divider_mtrl_alpha -cyanogenmod.content.Intent: java.lang.String ACTION_THEME_UPDATED -wangdaye.com.geometricweather.R$id: int accelerate -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_1_00 -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Small -com.google.android.material.R$style: int Base_V23_Theme_AppCompat -androidx.preference.R$styleable: int TextAppearance_android_shadowColor -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceButton -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -wangdaye.com.geometricweather.R$id: int widget_clock_day_lunar -wangdaye.com.geometricweather.R$id: int transparency_seekbar -okhttp3.internal.connection.RouteSelector$Selection: boolean hasNext() -com.bumptech.glide.R$id: int right_side -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMode -okio.RealBufferedSink: okio.BufferedSink writeLong(long) -androidx.fragment.R$drawable: int notification_icon_background -com.google.android.material.R$style: int Widget_MaterialComponents_CardView -james.adaptiveicon.R$id: int search_mag_icon -androidx.cardview.R$styleable: int CardView_cardCornerRadius -com.turingtechnologies.materialscrollbar.R$string: int abc_capital_on -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType PNG_A -james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedWidthMajor -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderDivider -androidx.appcompat.widget.AppCompatButton: void setSupportCompoundDrawablesTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Button -androidx.legacy.coreutils.R$styleable: int GradientColor_android_startY -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean isDisposed() -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Integer getAqiIndex() -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitationProbability -com.bumptech.glide.R$id: int none -androidx.viewpager.widget.PagerTabStrip: void setTabIndicatorColorResource(int) +com.google.android.material.R$styleable: int[] MaterialToolbar +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActivityChooserView +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_CBC_SHA256 +androidx.constraintlayout.widget.R$styleable: int PropertySet_android_visibility +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +retrofit2.Retrofit: retrofit2.Retrofit$Builder newBuilder() +com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_bias +wangdaye.com.geometricweather.R$color: int design_default_color_background +androidx.appcompat.R$string: int abc_activitychooserview_choose_application +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_indeterminateProgressStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_57 +okhttp3.internal.http2.Http2Writer: Http2Writer(okio.BufferedSink,boolean) +io.reactivex.internal.subscriptions.EmptySubscription: void request(long) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_Surface +okio.RealBufferedSink: okio.Buffer buffer() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property PublishDate +androidx.appcompat.R$dimen: int abc_text_size_caption_material +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_cardForegroundColor +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: AtmoAuraQAResult$MultiDaysIndexs() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginTop +androidx.drawerlayout.R$dimen: int notification_subtext_size +androidx.core.R$styleable: int GradientColor_android_centerColor +androidx.drawerlayout.R$id: int notification_main_column +androidx.appcompat.widget.AppCompatCheckBox: void setBackgroundDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setFitSide(int) +com.google.android.material.R$styleable: int Slider_trackColor +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd +com.google.android.material.R$dimen: int design_navigation_padding_bottom +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.util.AtomicThrowable errors +com.google.android.material.R$dimen: int design_bottom_navigation_active_text_size +android.didikee.donate.R$styleable: int MenuView_android_itemBackground +androidx.drawerlayout.R$attr: int fontProviderCerts +io.reactivex.internal.queue.SpscArrayQueue: SpscArrayQueue(int) +wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_checked_circle +androidx.appcompat.R$attr: int state_above_anchor +android.didikee.donate.R$styleable: int Toolbar_popupTheme +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_creator +androidx.vectordrawable.animated.R$id: int normal +com.turingtechnologies.materialscrollbar.R$id: int right_icon +okhttp3.internal.cache2.Relay: void writeHeader(okio.ByteString,long,long) +cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getProfile(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.Pollen +cyanogenmod.app.IPartnerInterface$Stub$Proxy: IPartnerInterface$Stub$Proxy(android.os.IBinder) +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_enterFadeDuration +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.R$attr: int text_color +androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: java.lang.String Unit +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dialog +okio.Okio: okio.Source source(java.io.InputStream,okio.Timeout) +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.String TABLENAME +wangdaye.com.geometricweather.R$string: int hourly_overview +androidx.preference.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowDx +com.google.android.material.R$attr: int endIconTintMode +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: ICMHardwareService$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: void onUpgrade(org.greenrobot.greendao.database.Database,int,int) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List xiche +androidx.lifecycle.Lifecycle +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.constraintlayout.widget.R$styleable: int OnClick_targetId +com.google.android.material.R$style: int Theme_MaterialComponents +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleSwitch +wangdaye.com.geometricweather.R$string: int feedback_refresh_ui_after_refresh +com.google.android.material.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger +androidx.preference.R$styleable: int GradientColorItem_android_color +com.turingtechnologies.materialscrollbar.R$layout: int abc_popup_menu_item_layout +wangdaye.com.geometricweather.R$layout: int design_layout_tab_text +androidx.loader.R$dimen +okio.Utf8: long size(java.lang.String,int,int) +okhttp3.OkHttpClient: int connectTimeout +cyanogenmod.weatherservice.ServiceRequest: void cancel() +wangdaye.com.geometricweather.R$drawable: int notif_temp_66 +cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(int,cyanogenmod.app.ThemeComponent,int) +cyanogenmod.app.ICustomTileListener: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay_v14_Material +okhttp3.logging.HttpLoggingInterceptor: void redactHeader(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_checkedTextViewStyle +androidx.vectordrawable.animated.R$id: int notification_main_column_container +okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Level getLevel() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: java.lang.String getDesc() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: KeyguardExternalViewProviderService$Provider$ProviderImpl$6(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_text_size -wangdaye.com.geometricweather.R$id: int center_horizontal -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xmr -com.jaredrummler.android.colorpicker.R$id: int action_text -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_submitBackground -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.R$animator: int weather_snow_2 -androidx.lifecycle.ProcessLifecycleOwner$1: ProcessLifecycleOwner$1(androidx.lifecycle.ProcessLifecycleOwner) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircle -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$styleable: int[] CheckBoxPreference -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int getIsRainOrSnow() -androidx.legacy.coreutils.R$styleable: int GradientColor_android_endX -com.google.android.material.R$styleable: int MaterialButton_android_insetBottom -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMarkTintMode -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableCompatState -androidx.constraintlayout.widget.R$attr: int iconifiedByDefault -androidx.preference.R$layout: int notification_action_tombstone -io.reactivex.Observable: io.reactivex.Single single(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowRadius -cyanogenmod.providers.CMSettings$System: boolean putInt(android.content.ContentResolver,java.lang.String,int) -com.google.android.material.R$styleable: int RecyclerView_fastScrollEnabled -wangdaye.com.geometricweather.R$attr: int insetForeground -wangdaye.com.geometricweather.R$attr: int deriveConstraintsFrom -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onKeyguardShowing(boolean) -okhttp3.internal.tls.OkHostnameVerifier: boolean verifyIpAddress(java.lang.String,java.security.cert.X509Certificate) -okhttp3.internal.http2.Http2Reader$Handler: void alternateService(int,java.lang.String,okio.ByteString,java.lang.String,int,long) -wangdaye.com.geometricweather.R$string: int app_name -cyanogenmod.content.Intent: java.lang.String ACTION_RECENTS_LONG_PRESS -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: long index -androidx.appcompat.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -james.adaptiveicon.R$dimen: int notification_large_icon_width -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec COMPATIBLE_TLS -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowMinWidthMajor -androidx.preference.R$styleable: int Fragment_android_name -com.google.android.material.R$layout: int design_bottom_sheet_dialog -androidx.constraintlayout.widget.R$styleable: int KeyPosition_framePosition -com.google.android.material.R$id: int accessibility_custom_action_3 -com.google.android.material.R$anim: int abc_shrink_fade_out_from_bottom -androidx.viewpager.R$id: int text -com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_tick_mark_material -james.adaptiveicon.R$styleable: int ActionBar_progressBarStyle -androidx.coordinatorlayout.R$id: int async -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_EditText -okhttp3.Cache$1 -com.google.android.material.R$attr: int chipMinTouchTargetSize -androidx.constraintlayout.widget.R$styleable: int Toolbar_popupTheme -wangdaye.com.geometricweather.R$color: int design_fab_shadow_end_color -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayDetailsWidgetConfigActivity -wangdaye.com.geometricweather.R$dimen: int abc_alert_dialog_button_bar_height -androidx.viewpager2.R$attr: int reverseLayout -cyanogenmod.weatherservice.ServiceRequestResult -cyanogenmod.profiles.ConnectionSettings$1 -com.xw.repo.bubbleseekbar.R$attr: int gapBetweenBars -androidx.constraintlayout.widget.R$attr: int initialActivityCount -android.didikee.donate.R$dimen: int abc_search_view_preferred_width -androidx.work.R$color: int notification_action_color_filter -com.turingtechnologies.materialscrollbar.DragScrollBar: float getHandleOffset() -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -okhttp3.internal.http2.Hpack$Writer: int nextHeaderIndex -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL -androidx.constraintlayout.widget.R$attr: int subtitleTextColor -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: long serialVersionUID -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: MfWarningsResult$WarningConsequence() -cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_COLOR_CALIBRATION -com.google.android.material.R$layout: int mtrl_layout_snackbar_include -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onSuccess(java.lang.Object) -com.google.android.material.slider.Slider: void setValueFrom(float) -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_CompactMenu -androidx.constraintlayout.widget.R$attr: int maxHeight -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Medium -androidx.appcompat.widget.Toolbar: void setNavigationIcon(int) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: int requestFusion(int) -cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(int,java.lang.String,int,java.lang.String) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.lang.Object NEXT_WINDOW -androidx.constraintlayout.widget.R$attr: int transitionDisable -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Tooltip -com.jaredrummler.android.colorpicker.R$string: int abc_menu_enter_shortcut_label -retrofit2.HttpServiceMethod$SuspendForResponse -androidx.work.NetworkType: androidx.work.NetworkType UNMETERED -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: int getTemperature(int) -androidx.viewpager2.R$drawable -wangdaye.com.geometricweather.R$drawable: int notif_temp_90 -androidx.appcompat.widget.AppCompatTextView: android.graphics.PorterDuff$Mode getSupportCompoundDrawablesTintMode() -cyanogenmod.library.R$styleable: int[] LiveLockScreen -okhttp3.internal.cache.CacheStrategy$Factory: long cacheResponseAge() -okhttp3.internal.tls.CertificateChainCleaner +wangdaye.com.geometricweather.R$drawable: int ic_launcher_background +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.util.Date date +androidx.constraintlayout.widget.R$styleable: int Motion_pathMotionArc +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayGammaCalibration(int,int[]) +okhttp3.internal.http2.Http2Stream: okhttp3.Headers takeHeaders() +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_DarkActionBar +androidx.constraintlayout.widget.R$attr: int paddingBottomNoButtons +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver this$0 +wangdaye.com.geometricweather.R$drawable: int notif_temp_44 +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_30 +okhttp3.internal.http.UnrepeatableRequestBody +android.didikee.donate.R$styleable: int TextAppearance_android_textSize +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: ObservableRetryBiPredicate$RetryBiObserver(io.reactivex.Observer,io.reactivex.functions.BiPredicate,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) +com.turingtechnologies.materialscrollbar.R$dimen: int disabled_alpha_material_light +james.adaptiveicon.R$dimen: int abc_cascading_menus_min_smallest_width +wangdaye.com.geometricweather.R$string: int cpv_default_title +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +wangdaye.com.geometricweather.R$string: int password_toggle_content_description +com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector[] values() +com.xw.repo.bubbleseekbar.R$attr: int activityChooserViewStyle +androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Light +com.google.android.material.R$attr: int autoSizeMaxTextSize +androidx.lifecycle.extensions.R$style: R$style() +com.google.android.material.R$styleable: int KeyAttribute_android_rotation +okhttp3.WebSocketListener: void onClosed(okhttp3.WebSocket,int,java.lang.String) +androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +androidx.hilt.work.R$id: int action_text +com.google.android.material.R$styleable: int SnackbarLayout_backgroundTint +wangdaye.com.geometricweather.R$dimen: int abc_text_size_subtitle_material_toolbar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String getUnit() +wangdaye.com.geometricweather.R$layout: int material_clock_period_toggle +androidx.hilt.lifecycle.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetStart +com.google.android.material.tabs.TabLayout: void setTabIndicatorFullWidth(boolean) +androidx.coordinatorlayout.R$attr: R$attr() +androidx.viewpager2.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit MUGPCUM +okhttp3.internal.http.RealInterceptorChain: RealInterceptorChain(java.util.List,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http.HttpCodec,okhttp3.internal.connection.RealConnection,int,okhttp3.Request,okhttp3.Call,okhttp3.EventListener,int,int,int) +com.xw.repo.BubbleSeekBar: void setTrackColor(int) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getScaleY() +com.xw.repo.bubbleseekbar.R$attr: int divider +wangdaye.com.geometricweather.R$styleable: int PopupWindow_overlapAnchor +com.github.rahatarmanahmed.cpv.R$color: R$color() +androidx.appcompat.widget.ActionBarOverlayLayout: void setActionBarHideOffset(int) +cyanogenmod.providers.CMSettings$1: CMSettings$1() +wangdaye.com.geometricweather.R$drawable: int notif_temp_36 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +androidx.appcompat.R$styleable: int FontFamily_fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$attr: int numericModifiers +wangdaye.com.geometricweather.db.entities.HistoryEntity: HistoryEntity() +com.google.android.material.R$attr: int errorTextAppearance +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Content +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: java.lang.String Localized +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onSuccess(java.lang.Object) +retrofit2.Retrofit: retrofit2.Converter nextRequestBodyConverter(retrofit2.Converter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[]) +cyanogenmod.app.IProfileManager$Stub: cyanogenmod.app.IProfileManager asInterface(android.os.IBinder) +com.google.android.material.tabs.TabLayout: void addOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) +androidx.appcompat.widget.ScrollingTabContainerView +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_elevation +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_summaryOff +cyanogenmod.app.ILiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getO3() +android.didikee.donate.R$drawable: int abc_btn_radio_material +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setCityId(java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +com.turingtechnologies.materialscrollbar.R$attr: int actionModePopupWindowStyle +com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_layout +james.adaptiveicon.R$dimen: int disabled_alpha_material_light +cyanogenmod.app.Profile: void getXmlString(java.lang.StringBuilder,android.content.Context) +com.google.android.material.R$attr: int useCompatPadding +com.xw.repo.bubbleseekbar.R$layout: int support_simple_spinner_dropdown_item +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position position +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotationX +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableItem_android_id +com.jaredrummler.android.colorpicker.R$layout: int preference_information +cyanogenmod.externalviews.IExternalViewProvider +com.jaredrummler.android.colorpicker.R$id: int action_context_bar +com.google.android.material.R$style: int Widget_AppCompat_Spinner_Underlined +androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontStyle +androidx.preference.R$drawable: int abc_textfield_search_material +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String weatherText +com.google.android.material.appbar.AppBarLayout$Behavior: AppBarLayout$Behavior(android.content.Context,android.util.AttributeSet) +androidx.coordinatorlayout.R$id: int notification_background +androidx.coordinatorlayout.R$attr: int fontProviderQuery +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingTop +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener mWindowAttachmentListener +androidx.hilt.work.R$styleable: int FontFamily_fontProviderFetchStrategy +okhttp3.internal.http.RealInterceptorChain: int connectTimeoutMillis() +okhttp3.OkHttpClient$1: void addLenient(okhttp3.Headers$Builder,java.lang.String) +androidx.customview.R$styleable: int ColorStateListItem_android_color +com.google.android.material.R$id: int line1 +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderPackage +androidx.core.R$drawable: int notification_tile_bg +com.xw.repo.bubbleseekbar.R$drawable: int abc_item_background_holo_dark +james.adaptiveicon.R$dimen: int abc_dialog_fixed_width_major +okhttp3.ConnectionPool: boolean cleanupRunning +wangdaye.com.geometricweather.R$style: int PreferenceFragmentList_Material +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onActionModeFinished(android.view.ActionMode) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: AccuDailyResult$DailyForecasts$Day$WindGust() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getEn_US() +androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver: ForceStopRunnable$BroadcastReceiver() +androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingRight +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_title +android.didikee.donate.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +okhttp3.internal.cache.DiskLruCache$Snapshot: okio.Source[] sources +com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat_Light +io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable,int,int) +com.google.android.material.appbar.AppBarLayout: int getLiftOnScrollTargetViewId() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCopyDrawable +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Button +com.google.android.material.R$style: int Base_Widget_AppCompat_SeekBar +androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackground(int) +com.google.android.material.R$color: int design_fab_shadow_end_color +androidx.preference.R$attr: int iconSpaceReserved +wangdaye.com.geometricweather.R$attr: int passwordToggleContentDescription +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String THEME_ID +android.didikee.donate.R$attr: int thumbTintMode +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: java.lang.Object leaveTransform(java.lang.Object) +okhttp3.logging.HttpLoggingInterceptor$Level +androidx.customview.R$styleable: int[] GradientColor +androidx.legacy.coreutils.R$id: int forever +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_DarkActionBar +com.google.android.material.R$color: int abc_tint_spinner +com.turingtechnologies.materialscrollbar.R$color: int material_deep_teal_200 +androidx.activity.R$color: int notification_action_color_filter +com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_selected +okio.Timeout: long timeoutNanos() +wangdaye.com.geometricweather.R$dimen: int design_navigation_elevation +okhttp3.OkHttpClient$Builder: okhttp3.Dns dns +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String cityId +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addQueryParameter(java.lang.String,java.lang.String) +com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getIndicatorOffset() +androidx.swiperefreshlayout.R$styleable: int[] FontFamilyFont +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status valueOf(java.lang.String) +androidx.lifecycle.AbstractSavedStateViewModelFactory: AbstractSavedStateViewModelFactory(androidx.savedstate.SavedStateRegistryOwner,android.os.Bundle) +retrofit2.RequestFactory$Builder: okhttp3.Headers headers +androidx.core.view.GestureDetectorCompat: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_to_on_mtrl_015 +io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Runnable getWrappedRunnable() +com.jaredrummler.android.colorpicker.R$attr: int preferenceInformationStyle +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +com.xw.repo.bubbleseekbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_0 +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: okhttp3.Request request() +androidx.appcompat.R$style: int TextAppearance_AppCompat_Caption +androidx.fragment.R$id: int accessibility_custom_action_5 +com.xw.repo.bubbleseekbar.R$attr: int showAsAction +okhttp3.ResponseBody$1: okio.BufferedSource val$content +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_Solid +okhttp3.internal.http.RetryAndFollowUpInterceptor: java.lang.Object callStackTrace +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextTextColor +androidx.constraintlayout.widget.Placeholder +com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +androidx.appcompat.widget.AbsActionBarView: void setContentHeight(int) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +cyanogenmod.externalviews.IExternalViewProvider: void onStop() +io.reactivex.internal.disposables.DisposableHelper: boolean trySet(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) +androidx.hilt.R$anim: R$anim() +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getPm10Color(android.content.Context) +com.google.android.material.R$dimen: int abc_text_size_menu_header_material +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderPackage +androidx.constraintlayout.widget.R$attr: int layout_goneMarginLeft +androidx.appcompat.R$styleable: int[] SearchView +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode valueOf(java.lang.String) +androidx.viewpager.widget.ViewPager: ViewPager(android.content.Context) +com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Light +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Primary +wangdaye.com.geometricweather.R$layout: int abc_action_mode_bar +com.turingtechnologies.materialscrollbar.R$id: int fill +com.google.gson.internal.LazilyParsedNumber +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat valueOf(java.lang.String) +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator$SavedState: android.os.Parcelable$Creator CREATOR +okhttp3.CertificatePinner +com.google.android.material.R$attr: int actionBarSize +okhttp3.internal.http2.Hpack$Writer: void writeInt(int,int,int) +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onNext(java.lang.Object) +androidx.drawerlayout.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$styleable: int[] NavigationView +james.adaptiveicon.R$styleable: int AppCompatImageView_tintMode +okhttp3.internal.platform.AndroidPlatform$CloseGuard: okhttp3.internal.platform.AndroidPlatform$CloseGuard get() +wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.lang.String titleHtml +androidx.work.R$dimen: int notification_action_icon_size +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_SYSTEM +cyanogenmod.hardware.ICMHardwareService: long getLtoDownloadInterval() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_radioButtonStyle +com.xw.repo.bubbleseekbar.R$attr: int overlapAnchor +cyanogenmod.app.IProfileManager: boolean isEnabled() +wangdaye.com.geometricweather.R$drawable: int ic_github +wangdaye.com.geometricweather.R$attr: int sizePercent +androidx.appcompat.R$styleable: int AppCompatTheme_colorAccent +com.google.android.material.R$dimen: int mtrl_btn_text_btn_icon_padding +retrofit2.SkipCallbackExecutorImpl: retrofit2.SkipCallbackExecutor INSTANCE +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: boolean equals(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableItem_android_drawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: java.lang.String newX +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +okhttp3.logging.HttpLoggingInterceptor: java.nio.charset.Charset UTF8 +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabView +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetLeft +androidx.constraintlayout.widget.R$attr: int flow_verticalBias +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getSupportedFeatures() +androidx.drawerlayout.R$dimen: int notification_top_pad_large_text +androidx.lifecycle.CompositeGeneratedAdaptersObserver: androidx.lifecycle.GeneratedAdapter[] mGeneratedAdapters +com.jaredrummler.android.colorpicker.R$attr: int colorControlHighlight +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDataConnectionState +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +okio.Okio: okio.BufferedSource buffer(okio.Source) +wangdaye.com.geometricweather.R$style: int PreferenceFragment_Material +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean isEntityUpdateable() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_RC4_40_MD5 +androidx.vectordrawable.animated.R$style +wangdaye.com.geometricweather.R$dimen: int abc_control_inset_material +retrofit2.BuiltInConverters$StreamingResponseBodyConverter: okhttp3.ResponseBody convert(okhttp3.ResponseBody) +cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(java.util.Map,java.util.Map,cyanogenmod.themes.ThemeChangeRequest$RequestType,long) +com.google.android.material.R$styleable: int MaterialButton_backgroundTintMode +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_27 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPm25() +androidx.preference.R$id: int titleDividerNoCustom +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.concurrent.Callable bufferSupplier +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_startAngle +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void boundaryError(io.reactivex.disposables.Disposable,java.lang.Throwable) +okhttp3.internal.http2.Header: Header(java.lang.String,java.lang.String) +okhttp3.Cookie: java.lang.String toString(boolean) +com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: java.lang.String quali wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTemperature -com.turingtechnologies.materialscrollbar.R$color: int abc_background_cache_hint_selector_material_light -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type valueOf(java.lang.String) -wangdaye.com.geometricweather.R$array: int temperature_units -org.greenrobot.greendao.AbstractDao: void detachAll() -wangdaye.com.geometricweather.R$attr: int listPreferredItemHeight -com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_pressed -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListPopupWindow -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeFindDrawable -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context,android.util.AttributeSet) -androidx.viewpager.widget.ViewPager -org.greenrobot.greendao.AbstractDaoSession: java.util.Collection getAllDaos() -okhttp3.Cookie: boolean hostOnly -wangdaye.com.geometricweather.R$layout: int material_textinput_timepicker -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginTop -retrofit2.converter.gson.GsonRequestBodyConverter: okhttp3.RequestBody convert(java.lang.Object) -androidx.preference.R$id: int progress_horizontal -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode valueOf(java.lang.String) -cyanogenmod.hardware.CMHardwareManager: int FEATURE_VIBRATOR -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation RIGHT -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: HistoryEntityDao$Properties() -com.google.android.material.R$dimen: int mtrl_low_ripple_hovered_alpha -com.google.android.material.R$dimen: int abc_text_size_headline_material -androidx.appcompat.R$styleable: int TextAppearance_android_shadowDy -androidx.preference.R$anim: int fragment_open_enter -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCutDrawable -android.didikee.donate.R$styleable: int Toolbar_titleMarginBottom -wangdaye.com.geometricweather.R$id: int startHorizontal -androidx.appcompat.R$layout: int abc_search_view -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_font -com.google.android.material.R$attr: int layout_constraintHorizontal_weight -androidx.viewpager.R$id: R$id() -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem -com.jaredrummler.android.colorpicker.R$anim: int abc_slide_out_top -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: double Value -wangdaye.com.geometricweather.R$attr: int iconSpaceReserved -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part createFormData(java.lang.String,java.lang.String) -cyanogenmod.weatherservice.WeatherProviderService: java.lang.String SERVICE_INTERFACE -androidx.preference.R$attr: int listPreferredItemPaddingStart -cyanogenmod.weather.WeatherLocation$1 -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -io.reactivex.internal.operators.observable.ObserverResourceWrapper: ObserverResourceWrapper(io.reactivex.Observer) -com.bumptech.glide.R$drawable: int notification_bg -com.google.android.material.R$dimen: int mtrl_calendar_day_corner -wangdaye.com.geometricweather.R$dimen: int cpv_color_preference_normal -com.google.android.material.R$dimen: int material_timepicker_dialog_buttons_margin_top -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.fuseable.SimpleQueue queue -okhttp3.internal.cache.InternalCache: void trackResponse(okhttp3.internal.cache.CacheStrategy) -androidx.vectordrawable.R$id: int text -androidx.hilt.lifecycle.R$styleable: R$styleable() -com.xw.repo.bubbleseekbar.R$dimen: int abc_control_padding_material -wangdaye.com.geometricweather.R$integer: int design_tab_indicator_anim_duration_ms -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginBottom -com.google.android.material.floatingactionbutton.FloatingActionButton: boolean getUseCompatPadding() -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderAuthority -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.R$id: int glide_custom_view_target_tag -wangdaye.com.geometricweather.R$string: int feedback_request_location -com.jaredrummler.android.colorpicker.R$color: int material_grey_300 -android.didikee.donate.R$style: int Widget_AppCompat_Button_Borderless -com.google.android.material.R$attr: int drawableTintMode -retrofit2.Invocation: Invocation(java.lang.reflect.Method,java.util.List) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: MfForecastResult$Forecast$Temperature() -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Badge -okhttp3.Address: java.net.Proxy proxy -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizePresetSizes -wangdaye.com.geometricweather.R$attr: int transitionFlags -com.bumptech.glide.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitationProbability() -com.google.android.material.R$string: int abc_menu_function_shortcut_label -wangdaye.com.geometricweather.R$styleable: int KeyCycle_wavePeriod -cyanogenmod.themes.ThemeManager: android.os.Handler mHandler -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_NoActionBar -cyanogenmod.themes.ThemeManager$1$1: ThemeManager$1$1(cyanogenmod.themes.ThemeManager$1,int) -com.google.android.material.R$drawable: int abc_btn_radio_to_on_mtrl_000 -com.turingtechnologies.materialscrollbar.R$attr: int tabContentStart -okhttp3.Cache$Entry: okhttp3.Headers responseHeaders -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_label_cutout_padding -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_min -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetEndWithActions -androidx.constraintlayout.widget.R$color: int androidx_core_secondary_text_default_material_light -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress -wangdaye.com.geometricweather.R$styleable: int SwitchMaterial_useMaterialThemeColors -androidx.fragment.R$attr: int fontProviderQuery -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String WRITE_ALARMS_PERMISSION -com.google.android.material.R$attr: int layout_collapseMode -okhttp3.RealCall$1: okhttp3.RealCall this$0 -androidx.preference.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -com.jaredrummler.android.colorpicker.R$id: int end -androidx.preference.R$color: int primary_text_disabled_material_light -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconContentDescription -com.google.android.material.R$attr: int flow_verticalGap -androidx.preference.R$dimen: int compat_notification_large_icon_max_height -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type[] getActualTypeArguments() -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_font -androidx.constraintlayout.widget.R$id: int wrap_content -com.xw.repo.bubbleseekbar.R$attr: int borderlessButtonStyle -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_48dp -retrofit2.ParameterHandler$Headers: ParameterHandler$Headers(java.lang.reflect.Method,int) -wangdaye.com.geometricweather.R$integer: int cpv_default_start_angle -com.turingtechnologies.materialscrollbar.R$attr: int hideOnScroll -com.google.android.material.R$id: int staticLayout -james.adaptiveicon.R$attr: int iconTint -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotationX -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense -com.xw.repo.bubbleseekbar.R$attr: int windowFixedWidthMinor -wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_toRightOf -com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context) -okhttp3.internal.http1.Http1Codec: int state -cyanogenmod.themes.ThemeChangeRequest$1 -com.google.android.material.R$styleable: int Layout_layout_goneMarginLeft -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_CIRCLE -androidx.preference.R$attr: int preferenceCategoryStyle -okio.RealBufferedSink$1: void close() -com.jaredrummler.android.colorpicker.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.R$id: int chip3 -androidx.constraintlayout.utils.widget.ImageFilterView: void setBrightness(float) -cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_GAMMA_CALIBRATION -androidx.appcompat.R$style: int Base_V23_Theme_AppCompat -com.jaredrummler.android.colorpicker.R$attr: int fastScrollVerticalThumbDrawable -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionButtonStyle -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getBackgroundColorEnd() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int status -androidx.activity.R$attr -okio.HashingSource -androidx.appcompat.R$id: int unchecked -wangdaye.com.geometricweather.R$id: int beginOnFirstDraw -com.google.android.material.button.MaterialButton: void setStrokeColor(android.content.res.ColorStateList) -okhttp3.internal.ws.RealWebSocket: java.util.ArrayDeque pongQueue -cyanogenmod.weather.WeatherInfo$Builder: double mTodaysLowTemp -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void dispose() -androidx.preference.R$id: int action_bar_subtitle -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintDimensionRatio -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_holo_dark -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_DifferentCornerSize -androidx.hilt.lifecycle.R$id: int async -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: AccuCurrentResult$WindChillTemperature$Metric() -com.google.android.material.R$drawable: int abc_text_cursor_material -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_switchTextOff -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxBackgroundMode -com.google.android.material.R$id: int rounded -com.jaredrummler.android.colorpicker.R$color: int primary_text_disabled_material_dark -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_15 -com.google.android.material.R$attr: int touchAnchorSide -okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman INSTANCE -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator -com.bumptech.glide.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: AccuDailyResult$DailyForecasts$Day$Ice() -androidx.appcompat.widget.AppCompatTextView: int getLastBaselineToBottomHeight() -com.google.android.material.internal.ScrimInsetsFrameLayout: void setDrawTopInsetForeground(boolean) -androidx.recyclerview.R$attr: int fastScrollHorizontalTrackDrawable -okio.BufferedSink: void flush() -com.google.android.material.R$attr: int errorIconTint -com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context,android.util.AttributeSet,int) -androidx.hilt.lifecycle.R$styleable: int Fragment_android_id -wangdaye.com.geometricweather.R$styleable: int Preference_widgetLayout -androidx.hilt.R$id: int accessibility_action_clickable_span -com.google.android.material.R$dimen: int tooltip_precise_anchor_threshold -android.didikee.donate.R$attr: int actionModeSplitBackground -cyanogenmod.weather.WeatherLocation: java.lang.String access$702(cyanogenmod.weather.WeatherLocation,java.lang.String) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitation -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_variablePadding -wangdaye.com.geometricweather.R$dimen: int design_fab_translation_z_pressed -com.xw.repo.bubbleseekbar.R$attr: int iconTint -wangdaye.com.geometricweather.R$styleable: int[] DrawerLayout -androidx.constraintlayout.widget.R$styleable: int Constraint_barrierMargin -okio.GzipSource: okio.InflaterSource inflaterSource -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub -androidx.core.app.RemoteActionCompat: RemoteActionCompat() -wangdaye.com.geometricweather.R$styleable: int[] ActionMenuItemView -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: androidx.core.graphics.PathParser$PathDataNode[] getPathData() -com.turingtechnologies.materialscrollbar.TouchScrollBar: TouchScrollBar(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: double seaLevel -okio.AsyncTimeout$2: okio.Timeout timeout() -androidx.drawerlayout.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$styleable: int EditTextPreference_useSimpleSummaryProvider -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: int UnitType -android.didikee.donate.R$color: int foreground_material_light -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionBarOverlay -com.google.android.material.R$attr: int layout_constraintBaseline_creator -android.didikee.donate.R$attr: int logo -cyanogenmod.app.ProfileGroup: ProfileGroup(java.lang.String,java.util.UUID,boolean) -android.didikee.donate.R$attr: int listLayout -james.adaptiveicon.R$drawable: int abc_switch_thumb_material -com.bumptech.glide.R$dimen: int notification_small_icon_background_padding -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_middle_mtrl_dark -wangdaye.com.geometricweather.R$id: int fitToContents -cyanogenmod.weather.WeatherInfo: double mHumidity -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_padding -com.google.android.material.R$styleable: int MenuItem_android_numericShortcut -cyanogenmod.app.CustomTile: android.graphics.Bitmap remoteIcon -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_backgroundTintMode -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver -androidx.swiperefreshlayout.R$drawable: int notification_bg_normal_pressed -okio.RealBufferedSink$1: java.lang.String toString() -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSize -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitationDuration(java.lang.Float) -androidx.preference.R$styleable: int ListPreference_entries -com.google.gson.stream.JsonReader: int PEEKED_NUMBER -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void subscribeNext() -cyanogenmod.profiles.StreamSettings: int describeContents() -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setIndicatorColor(int) -retrofit2.KotlinExtensions$await$4$2 -com.google.android.material.R$anim: int abc_popup_enter -com.google.android.material.circularreveal.CircularRevealGridLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_button_bar_material -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: android.os.IBinder mRemote -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState[] values() -android.didikee.donate.R$dimen: int abc_action_bar_default_padding_end_material -androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView: void setHoverListener(androidx.appcompat.widget.MenuItemHoverListener) -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalAlign -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.util.ErrorMode errorMode -com.turingtechnologies.materialscrollbar.R$id: int radio -com.xw.repo.bubbleseekbar.R$id: int list_item -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: int unitArrayIndex -com.turingtechnologies.materialscrollbar.R$attr: int state_lifted -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onNext(java.lang.Object) -okhttp3.internal.cache.DiskLruCache$3: java.util.Iterator delegate -wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedIndex(java.lang.Integer) -androidx.hilt.lifecycle.R$id: int icon_group -io.reactivex.Observable: java.lang.Iterable blockingMostRecent(java.lang.Object) -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginTop(int) -wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_EditText -androidx.work.BackoffPolicy: androidx.work.BackoffPolicy valueOf(java.lang.String) +wangdaye.com.geometricweather.R$style: int Animation_AppCompat_DropDownUp +androidx.appcompat.R$style: int Base_V26_Theme_AppCompat_Light +com.jaredrummler.android.colorpicker.R$attr: int negativeButtonText +com.jaredrummler.android.colorpicker.R$attr: int contentDescription +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onStart() +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode[] values() +james.adaptiveicon.R$dimen: int abc_dialog_title_divider_material +com.google.android.material.R$styleable: int AppCompatTextView_fontFamily +androidx.lifecycle.ReportFragment: void onDestroy() +androidx.preference.R$styleable: int PreferenceTheme_preferenceScreenStyle +okio.Segment: int SIZE +wangdaye.com.geometricweather.settings.fragments.AbstractSettingsFragment: AbstractSettingsFragment() +wangdaye.com.geometricweather.weather.json.mf.MfRainResult +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets +android.didikee.donate.R$layout: int select_dialog_singlechoice_material +okhttp3.internal.http2.Header$Listener: void onHeaders(okhttp3.Headers) +wangdaye.com.geometricweather.R$styleable: int Transform_android_rotationY +androidx.appcompat.R$id: int action_mode_bar_stub +okhttp3.internal.cache2.Relay$RelaySource: okio.Timeout timeout +com.turingtechnologies.materialscrollbar.R$id: int action_image +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getLongDate(android.content.Context) +okhttp3.internal.http2.PushObserver$1: PushObserver$1() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner +com.turingtechnologies.materialscrollbar.R$attr: int tabMaxWidth +wangdaye.com.geometricweather.R$attr: int floatingActionButtonStyle +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMode +cyanogenmod.themes.ThemeManager$1 +okhttp3.Response: void close() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String primary +wangdaye.com.geometricweather.R$styleable: int[] OnSwipe +wangdaye.com.geometricweather.R$id: int TOP_START +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setCo(java.lang.String) +androidx.work.R$styleable: int FontFamily_fontProviderPackage +androidx.constraintlayout.widget.R$attr: int tickMarkTintMode +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver +okhttp3.OkHttpClient: okhttp3.Cache cache +cyanogenmod.providers.CMSettings$Global: java.lang.String WAKE_WHEN_PLUGGED_OR_UNPLUGGED +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: long serialVersionUID +okhttp3.Cookie: boolean persistent +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 +androidx.viewpager.R$drawable: int notification_template_icon_bg +com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_max +wangdaye.com.geometricweather.R$attr: int layout_constraintCircleRadius +androidx.fragment.R$style: int TextAppearance_Compat_Notification_Time +android.didikee.donate.R$id: int actions +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_transformPivotY +android.didikee.donate.R$styleable: int ActionBar_titleTextStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Toolbar +cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl access$000(cyanogenmod.externalviews.ExternalViewProviderService$Provider) +wangdaye.com.geometricweather.R$string: int mtrl_picker_a11y_next_month +androidx.appcompat.R$dimen: int tooltip_y_offset_touch +com.google.android.material.R$id: int mtrl_calendar_months +okhttp3.internal.http2.Http2Stream: okio.Timeout writeTimeout() +com.google.android.material.R$id: int accessibility_custom_action_7 +androidx.viewpager2.R$attr: int font +com.google.android.material.R$styleable: int CardView_contentPaddingLeft +androidx.constraintlayout.motion.widget.MotionLayout: void setState(androidx.constraintlayout.motion.widget.MotionLayout$TransitionState) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_size +android.didikee.donate.R$styleable: int LinearLayoutCompat_dividerPadding +wangdaye.com.geometricweather.GeometricWeather: GeometricWeather() +androidx.constraintlayout.widget.R$dimen: int compat_notification_large_icon_max_width +androidx.customview.R$styleable: int FontFamily_fontProviderFetchTimeout +com.google.android.material.button.MaterialButtonToggleGroup: java.lang.CharSequence getAccessibilityClassName() +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +androidx.dynamicanimation.R$drawable +com.google.android.material.R$attr: int selectionRequired +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setMinutelyList(java.util.List) +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onError(java.lang.Throwable) +androidx.lifecycle.extensions.R$attr: int fontStyle +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_searchHintIcon +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListPopupWindow +androidx.constraintlayout.widget.R$attr: int windowActionBarOverlay +androidx.appcompat.R$layout: int abc_action_bar_up_container +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_end +wangdaye.com.geometricweather.R$id: int start +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: int unitArrayIndex +wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.TouchScrollBar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: java.lang.String Unit +com.google.android.material.R$styleable: int Constraint_android_scaleX +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthFocusedResource(int) +com.google.android.material.R$styleable: int[] StateListDrawable +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetRight +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CUSTOM_ENABLE +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar_Small +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$xml: int standalone_badge +androidx.constraintlayout.widget.R$string: int abc_shareactionprovider_share_with +android.didikee.donate.R$attr: int switchStyle +io.reactivex.Observable: io.reactivex.Single toSortedList() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableBottom +androidx.preference.R$id: int action_menu_presenter +androidx.appcompat.R$dimen: int abc_button_inset_horizontal_material +wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_dark +androidx.hilt.work.R$dimen: int compat_button_inset_vertical_material +com.jaredrummler.android.colorpicker.R$attr: int fragment +wangdaye.com.geometricweather.R$attr: int background_color +com.google.android.material.card.MaterialCardView: void setPreventCornerOverlap(boolean) +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode BOUNDARY androidx.appcompat.R$styleable: int ActionBar_logo -com.google.android.material.R$string: int mtrl_picker_date_header_title -androidx.core.R$integer -com.google.android.material.R$id -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.vectordrawable.R$color: int ripple_material_light -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -okio.Okio$1: okio.Timeout val$timeout -cyanogenmod.profiles.ConnectionSettings: void readFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit ATM -com.google.android.material.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: void soNext(io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode) -cyanogenmod.profiles.RingModeSettings: cyanogenmod.profiles.RingModeSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -wangdaye.com.geometricweather.R$attr: int activityChooserViewStyle -wangdaye.com.geometricweather.R$id: int showTitle -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int POWER_OFF_ALARM_STATE -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: long serialVersionUID -cyanogenmod.weatherservice.ServiceRequest$Status -okhttp3.internal.ws.RealWebSocket$Streams: okio.BufferedSource source -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: long maxAge -com.xw.repo.bubbleseekbar.R$id: int action_context_bar -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator REVERSE_LOOKUP_PROVIDER_VALIDATOR -androidx.coordinatorlayout.R$styleable: int GradientColor_android_endColor -androidx.viewpager.R$id: int icon_group -androidx.appcompat.R$id: int text -android.support.v4.os.ResultReceiver: void onReceiveResult(int,android.os.Bundle) -com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding valueOf(java.lang.String) -okhttp3.Dispatcher: void setMaxRequests(int) -com.turingtechnologies.materialscrollbar.R$attr: int labelVisibilityMode -android.didikee.donate.R$dimen: int abc_action_button_min_width_overflow_material -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Dialog_Bridge -wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_text_color -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String key -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_enabled -james.adaptiveicon.R$layout: int abc_action_bar_up_container -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_48dp -com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_950 -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_visible -cyanogenmod.app.Profile: int getDozeMode() -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -androidx.appcompat.widget.AppCompatSpinner: int getDropDownHorizontalOffset() -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float relativeHumidity -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void execute() -androidx.constraintlayout.widget.R$styleable: int State_constraints -com.jaredrummler.android.colorpicker.R$color: int tooltip_background_light -cyanogenmod.app.ICustomTileListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$layout: int abc_action_mode_bar -cyanogenmod.weather.ICMWeatherManager: void lookupCity(cyanogenmod.weather.RequestInfo) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode -androidx.appcompat.R$dimen: int abc_dropdownitem_text_padding_left -androidx.cardview.R$styleable: int CardView_cardPreventCornerOverlap -wangdaye.com.geometricweather.R$string: int maxi_temp -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_xml -james.adaptiveicon.R$styleable: int TextAppearance_textLocale -androidx.appcompat.R$dimen: int abc_dialog_fixed_width_minor -cyanogenmod.app.CustomTileListenerService: boolean isBound() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Long id -androidx.preference.R$styleable: int Toolbar_android_minHeight -okhttp3.Response$Builder: okhttp3.Response$Builder headers(okhttp3.Headers) -okhttp3.internal.connection.ConnectionSpecSelector -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode FOG -androidx.constraintlayout.widget.R$dimen: int abc_button_padding_horizontal_material -androidx.appcompat.R$styleable: int ViewBackgroundHelper_backgroundTint -com.google.android.material.R$attr: int layout_constraintBottom_toBottomOf -com.google.android.material.R$styleable: int Toolbar_contentInsetRight -com.xw.repo.bubbleseekbar.R$style: int Platform_AppCompat_Light -cyanogenmod.util.ColorUtils$1 -wangdaye.com.geometricweather.R$attr: int brightness -wangdaye.com.geometricweather.R$attr: int duration -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -james.adaptiveicon.R$dimen: int highlight_alpha_material_colored -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.internal.cache.CacheStrategy get() -androidx.swiperefreshlayout.R$color -android.didikee.donate.R$style: int TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.R$xml: int perference_unit -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric Metric -com.google.android.material.slider.BaseSlider: void setHaloTintList(android.content.res.ColorStateList) -okhttp3.Call -okhttp3.internal.http2.Http2Connection: void pushDataLater(int,okio.BufferedSource,int,boolean) -wangdaye.com.geometricweather.R$drawable: int weather_thunder_1 -wangdaye.com.geometricweather.R$styleable: int AlertDialog_multiChoiceItemLayout -io.reactivex.Observable: io.reactivex.Completable flatMapCompletable(io.reactivex.functions.Function,boolean) -cyanogenmod.weather.CMWeatherManager$2: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) -com.google.android.material.R$layout: int abc_popup_menu_header_item_layout -com.google.android.material.bottomappbar.BottomAppBar: androidx.appcompat.widget.ActionMenuView getActionMenuView() -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -io.reactivex.exceptions.MissingBackpressureException: MissingBackpressureException() -androidx.activity.R$id: int async -com.google.android.material.R$id: int line1 -androidx.drawerlayout.R$id: int action_image -james.adaptiveicon.R$attr: int actionOverflowButtonStyle +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_5 +androidx.appcompat.R$attr: int closeItemLayout +androidx.hilt.R$attr: int alpha +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean offer(java.lang.Object,java.lang.Object) +cyanogenmod.app.Profile: int mNotificationLightMode +androidx.preference.R$id: int accessibility_custom_action_13 wangdaye.com.geometricweather.settings.dialogs.TimeSetterDialog: TimeSetterDialog() -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginEnd -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowNoTitle -james.adaptiveicon.R$styleable: int MenuItem_iconTintMode -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getUniqueDeviceId -androidx.preference.R$attr: int switchMinWidth -james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyle -wangdaye.com.geometricweather.R$styleable: int PopupWindow_overlapAnchor -com.turingtechnologies.materialscrollbar.R$dimen: int hint_pressed_alpha_material_dark -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCutDrawable -androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getNavigationIcon() -wangdaye.com.geometricweather.R$styleable: int[] SwitchMaterial -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWindDirection -cyanogenmod.hardware.ICMHardwareService: int getThermalState() -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.Long getId() -androidx.preference.R$styleable: int SeekBarPreference_android_max -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.util.List getIndices() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$dimen: int abc_text_size_caption_material -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String country -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.R$style: int material_image_button -androidx.viewpager.widget.PagerTabStrip: void setDrawFullUnderline(boolean) -cyanogenmod.externalviews.KeyguardExternalViewProviderService: void onCreate() -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -com.xw.repo.bubbleseekbar.R$attr: int buttonBarStyle -james.adaptiveicon.R$dimen: int abc_text_size_large_material -com.google.android.material.slider.BaseSlider: void setThumbElevationResource(int) -androidx.preference.R$styleable: int ActionBar_backgroundStacked -com.jaredrummler.android.colorpicker.R$id: int action_bar -com.google.android.material.R$color: int mtrl_choice_chip_ripple_color -com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context) -androidx.room.RoomDatabase: RoomDatabase() -androidx.appcompat.app.AppCompatActivity -james.adaptiveicon.R$styleable: int ActionBar_title -wangdaye.com.geometricweather.R$attr: int fontProviderFetchTimeout -james.adaptiveicon.R$color: int bright_foreground_material_dark -androidx.constraintlayout.widget.R$dimen: int abc_alert_dialog_button_bar_height -com.google.android.material.R$dimen: int design_navigation_item_icon_padding -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleContentDescription -android.didikee.donate.R$style: int TextAppearance_AppCompat_Inverse -com.jaredrummler.android.colorpicker.R$anim: int abc_fade_out -james.adaptiveicon.R$style: int Base_V23_Theme_AppCompat_Light -com.google.android.material.R$styleable: int Constraint_layout_constraintEnd_toStartOf -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onComplete() -wangdaye.com.geometricweather.R$layout: int item_weather_daily_astro -cyanogenmod.library.R$styleable -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveDecay -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter name(java.lang.String) -okhttp3.WebSocketListener: void onMessage(okhttp3.WebSocket,java.lang.String) -io.reactivex.internal.subscriptions.DeferredScalarSubscription: void request(long) -com.github.rahatarmanahmed.cpv.CircularProgressView: int animDuration -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: int getStatus() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum() -james.adaptiveicon.R$color: int primary_material_dark -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: long index -androidx.constraintlayout.widget.R$styleable: int PropertySet_android_visibility -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setAirplaneModeEnabled_0 -com.xw.repo.bubbleseekbar.R$attr: int paddingStart -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -com.google.android.material.R$styleable: int AppCompatTheme_seekBarStyle -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul24H -androidx.constraintlayout.widget.R$dimen: int notification_right_icon_size -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_RESUME -com.google.android.material.slider.Slider: int getHaloRadius() -com.jaredrummler.android.colorpicker.R$attr: int background -com.google.android.material.R$styleable: int MenuItem_showAsAction -com.google.android.material.R$dimen: int default_dimension -cyanogenmod.themes.ThemeChangeRequest$Builder: void buildChangeRequestFromThemeConfig(android.content.res.ThemeConfig) -wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_min +android.didikee.donate.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getSelectedItemId() +com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context,android.util.AttributeSet,int) +okhttp3.internal.Util: java.util.Comparator NATURAL_ORDER +okhttp3.internal.http1.Http1Codec: Http1Codec(okhttp3.OkHttpClient,okhttp3.internal.connection.StreamAllocation,okio.BufferedSource,okio.BufferedSink) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable +james.adaptiveicon.R$attr: int thumbTintMode +androidx.appcompat.R$dimen: int abc_seekbar_track_background_height_material +cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.os.Bundle mOptions +wangdaye.com.geometricweather.R$string: int settings_title_notification_background +io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.functions.Function) +android.didikee.donate.R$styleable: int MenuItem_android_icon +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.functions.Function mapper +androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +cyanogenmod.profiles.AirplaneModeSettings$BooleanState: int STATE_ENABLED +com.google.android.material.chip.Chip: void setCheckedIconEnabledResource(int) +wangdaye.com.geometricweather.R$styleable: int[] ListPreference +retrofit2.http.Path +okhttp3.internal.Util: int skipLeadingAsciiWhitespace(java.lang.String,int,int) +androidx.lifecycle.SingleGeneratedAdapterObserver +retrofit2.ParameterHandler$1: ParameterHandler$1(retrofit2.ParameterHandler) +okhttp3.internal.http1.Http1Codec$FixedLengthSource: long read(okio.Buffer,long) +androidx.transition.R$id: int title +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode INADEQUATE_SECURITY +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.internal.operators.observable.ObservableCache parent +androidx.appcompat.R$attr: int subtitle +androidx.preference.R$style: int AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getRealFeelShaderTemperature() +com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_end_outer_color +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline2 +cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onCustomTilePosted +androidx.appcompat.R$drawable: int abc_btn_radio_to_on_mtrl_015 +androidx.preference.R$layout: int notification_action +androidx.preference.R$style: int Base_Widget_AppCompat_SeekBar +com.google.android.material.bottomnavigation.BottomNavigationMenuView: BottomNavigationMenuView(android.content.Context,android.util.AttributeSet) +com.bumptech.glide.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$animator: int start_shine_1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult +com.github.rahatarmanahmed.cpv.R$dimen: int cpv_default_thickness +wangdaye.com.geometricweather.R$color: int dim_foreground_material_light +wangdaye.com.geometricweather.R$drawable: int star_2 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +okhttp3.internal.io.FileSystem: okio.Source source(java.io.File) +androidx.appcompat.widget.LinearLayoutCompat: void setWeightSum(float) +cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_MSIM_PHONE_STATE +wangdaye.com.geometricweather.R$string: int briefings +cyanogenmod.power.PerformanceManagerInternal: void cpuBoost(int) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationY +wangdaye.com.geometricweather.R$color: int material_on_surface_emphasis_high_type +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_collapseIcon +android.didikee.donate.R$color: int switch_thumb_normal_material_light +com.google.android.material.bottomappbar.BottomAppBar: void setSubtitle(java.lang.CharSequence) +com.jaredrummler.android.colorpicker.R$attr: int numericModifiers +androidx.preference.R$attr: int titleMarginStart +androidx.dynamicanimation.R$color: int ripple_material_light +androidx.constraintlayout.widget.R$attr: int seekBarStyle +com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.HistoryEntity) +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener mListener +androidx.preference.R$drawable: int abc_text_select_handle_right_mtrl_dark +androidx.appcompat.R$color: int ripple_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconTint +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_CBC_SHA +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: boolean isDisposed() +androidx.dynamicanimation.R$styleable: int[] ColorStateListItem +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NULL +com.google.android.material.R$attr: int labelStyle +wangdaye.com.geometricweather.R$id: int item_details_content +com.jaredrummler.android.colorpicker.R$attr: int actionBarTabStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String value +com.turingtechnologies.materialscrollbar.R$id: int action_menu_divider +com.google.android.material.textfield.TextInputLayout: void setHintEnabled(boolean) +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean isRecoverable(java.io.IOException,boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuItem +com.google.gson.stream.MalformedJsonException: long serialVersionUID +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display3 +android.support.v4.os.ResultReceiver: int describeContents() +com.bumptech.glide.R$attr: int ttcIndex +androidx.constraintlayout.widget.R$styleable: int[] MenuView +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_trackTint +androidx.hilt.R$dimen: int notification_top_pad_large_text +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +okhttp3.CipherSuite$1: int compare(java.lang.String,java.lang.String) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.concurrent.atomic.AtomicInteger active +com.google.android.material.R$attr: int flow_firstHorizontalStyle +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_visible +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindDirection(java.lang.String) +com.google.android.material.R$id: int content +com.google.android.material.R$dimen: int notification_main_column_padding_top +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 +com.google.android.material.R$dimen: int material_clock_period_toggle_margin_left +com.google.android.material.R$string: int appbar_scrolling_view_behavior +com.google.android.material.R$dimen: int mtrl_fab_elevation +com.turingtechnologies.materialscrollbar.R$attr: int autoSizeStepGranularity +android.didikee.donate.R$attr: int backgroundTint +com.jaredrummler.android.colorpicker.R$styleable: int[] RecycleListView +okhttp3.logging.LoggingEventListener$Factory +wangdaye.com.geometricweather.R$dimen: int preference_dropdown_padding_start +com.turingtechnologies.materialscrollbar.R$attr: int trackTint +android.didikee.donate.R$drawable: int abc_seekbar_thumb_material +com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_material +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.appcompat.R$styleable: int AppCompatTheme_buttonStyle +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.internal.util.AtomicThrowable error +james.adaptiveicon.R$drawable: int tooltip_frame_dark +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.R$drawable: int notif_temp_6 +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: AccuAlertResult$Area$LastAction() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconDrawable +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Item +com.github.rahatarmanahmed.cpv.CircularProgressView: int animSyncDuration +com.xw.repo.bubbleseekbar.R$styleable: int[] RecycleListView +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dividerVertical +androidx.hilt.lifecycle.R$layout: int notification_action_tombstone +james.adaptiveicon.R$dimen: int abc_action_bar_default_padding_start_material +com.google.android.material.R$styleable: int Transition_layoutDuringTransition +androidx.appcompat.view.menu.StandardMenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode HAZE +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void dispose() +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +com.google.android.material.R$styleable: int AppCompatTheme_windowMinWidthMinor +wangdaye.com.geometricweather.R$layout: int design_navigation_menu +retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object L$0 +androidx.legacy.coreutils.R$id: int action_image +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableStartCompat +com.google.android.material.R$attr: int enforceMaterialTheme +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: android.os.IBinder mRemote +androidx.hilt.work.R$dimen: int notification_top_pad_large_text +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_STATUS_BAR +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleContainer +com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_DropDownUp +okhttp3.internal.cache.DiskLruCache: java.io.File getDirectory() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getSupportedFeatures_0 +com.google.android.material.floatingactionbutton.FloatingActionButton: void setShadowPaddingEnabled(boolean) +com.turingtechnologies.materialscrollbar.R$id: int screen +cyanogenmod.app.CustomTile$ExpandedGridItem: CustomTile$ExpandedGridItem() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String unit +okhttp3.internal.http2.Hpack$Writer: int headerTableSizeSetting +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7 +okhttp3.internal.platform.ConscryptPlatform: void configureSslSocketFactory(javax.net.ssl.SSLSocketFactory) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.R$string: int precipitation_duration +wangdaye.com.geometricweather.R$attr: int actionModeBackground +james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedHeightMajor +com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.app.Profile: cyanogenmod.profiles.LockSettings mScreenLockMode +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_item_max_width +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onNext(java.lang.Object) +android.didikee.donate.R$attr: int editTextStyle +james.adaptiveicon.R$id: int uniform +wangdaye.com.geometricweather.R$drawable: int material_cursor_drawable +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabText +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleDrawable(int) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getStrokeAlpha() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver,java.lang.Throwable) +okhttp3.internal.http2.Http2Stream: okio.Timeout readTimeout() +wangdaye.com.geometricweather.R$id: int widget_day_symbol +com.turingtechnologies.materialscrollbar.R$attr: int actionModeFindDrawable +androidx.preference.R$attr: int backgroundStacked +androidx.preference.R$styleable: int[] PreferenceImageView +androidx.work.R$layout: int notification_template_part_time +androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectTimeout(java.time.Duration) +com.google.android.material.R$color: int design_default_color_on_error +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Title +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_5 +cyanogenmod.externalviews.ExternalView: void access$000(cyanogenmod.externalviews.ExternalView) +cyanogenmod.power.IPerformanceManager$Stub: IPerformanceManager$Stub() +wangdaye.com.geometricweather.R$id: int all +androidx.recyclerview.R$id: int accessibility_custom_action_8 +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_4 +androidx.appcompat.R$layout: int abc_action_mode_close_item_material +androidx.fragment.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$style: int Widget_AppCompat_Button_Borderless +com.google.android.material.R$id: int material_clock_period_am_button +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts +androidx.hilt.R$dimen: R$dimen() +androidx.constraintlayout.widget.R$drawable: int abc_vector_test +wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_EditTextPreference_Material +wangdaye.com.geometricweather.R$dimen: int material_emphasis_disabled +cyanogenmod.content.Intent: java.lang.String CATEGORY_THEME_PACKAGE_INSTALLED_STATE_CHANGE +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button +com.google.android.material.R$styleable: int FlowLayout_itemSpacing +okhttp3.ResponseBody: java.io.InputStream byteStream() +androidx.dynamicanimation.R$id: int async +androidx.preference.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.google.android.material.R$color: int design_snackbar_background_color +androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitleTextColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric Metric +androidx.work.R$styleable: int FontFamilyFont_android_fontVariationSettings +okhttp3.Cache$CacheRequestImpl: boolean done +androidx.appcompat.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$id: int noScroll +androidx.constraintlayout.widget.R$drawable: int notification_template_icon_low_bg +com.google.android.material.button.MaterialButton: void setStrokeWidthResource(int) +okhttp3.internal.connection.StreamAllocation: void streamFailed(java.io.IOException) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Long id +com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_backgroundTint +com.jaredrummler.android.colorpicker.R$attr: int fontProviderFetchStrategy +james.adaptiveicon.R$color: int abc_tint_edittext +androidx.fragment.R$id: int tag_accessibility_actions +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle +okio.Okio: okio.Sink sink(java.io.OutputStream,okio.Timeout) +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetStart +com.google.android.material.R$attr: int listPreferredItemHeightLarge +androidx.appcompat.R$anim: int abc_tooltip_enter +okio.RealBufferedSink: java.io.OutputStream outputStream() +retrofit2.Response: retrofit2.Response error(okhttp3.ResponseBody,okhttp3.Response) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_36dp +androidx.constraintlayout.widget.R$styleable: int MockView_mock_labelBackgroundColor +com.turingtechnologies.materialscrollbar.R$attr: int popupWindowStyle +com.xw.repo.bubbleseekbar.R$id: int up +wangdaye.com.geometricweather.R$style: int Preference_SeekBarPreference_Material +androidx.constraintlayout.widget.R$styleable: int Spinner_android_dropDownWidth +okhttp3.internal.ws.RealWebSocket$Message +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: boolean isDisposed() +androidx.legacy.coreutils.R$drawable: int notification_bg +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_barLength +james.adaptiveicon.R$id: int action_mode_bar +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid +wangdaye.com.geometricweather.R$id: int item_about_header_appVersion +com.google.android.material.chip.Chip: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_collapsedSize +com.google.android.material.R$integer: int mtrl_btn_anim_delay_ms +com.jaredrummler.android.colorpicker.R$dimen: int compat_notification_large_icon_max_width +android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void setFirst(io.reactivex.internal.operators.observable.ObservableReplay$Node) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean +androidx.appcompat.R$style: int Widget_AppCompat_ActivityChooserView +wangdaye.com.geometricweather.R$drawable: int shortcuts_wind_foreground +androidx.preference.R$id: int image +androidx.preference.MultiSelectListPreference$SavedState +james.adaptiveicon.R$styleable: int ViewBackgroundHelper_backgroundTintMode +com.bumptech.glide.R$color: R$color() +androidx.appcompat.R$styleable: int AppCompatTheme_dialogPreferredPadding +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonStyleSmall +androidx.appcompat.R$id: int right_icon +cyanogenmod.themes.IThemeProcessingListener$Stub +androidx.appcompat.R$styleable: int ActionBar_contentInsetStartWithNavigation +androidx.fragment.app.Fragment +com.xw.repo.bubbleseekbar.R$id: int notification_main_column +james.adaptiveicon.R$dimen: int notification_content_margin_start +android.didikee.donate.R$attr: int actionOverflowButtonStyle +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer moldLevel +com.turingtechnologies.materialscrollbar.R$attr: int editTextBackground +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_SHOW_BATTERY_PERCENT_VALIDATOR +retrofit2.Retrofit: java.util.List converterFactories() +cyanogenmod.externalviews.KeyguardExternalView: void onKeyguardShowing(boolean) +cyanogenmod.app.LiveLockScreenInfo: void cloneInto(cyanogenmod.app.LiveLockScreenInfo) +android.didikee.donate.R$id: int multiply +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +com.google.android.material.R$attr: int expandedTitleGravity +org.greenrobot.greendao.AbstractDao: java.util.List loadAll() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_maxWidth +androidx.constraintlayout.widget.R$styleable: int Constraint_animate_relativeTo +androidx.constraintlayout.widget.R$attr: int itemPadding +androidx.appcompat.resources.R$dimen: int notification_right_side_padding_top +com.google.android.material.R$style: int TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean hasKey(java.lang.Object) +okhttp3.OkHttpClient$Builder: okhttp3.CookieJar cookieJar +io.reactivex.Observable: io.reactivex.Observable hide() +wangdaye.com.geometricweather.db.entities.DailyEntity: long getTime() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarSize +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setOnClickListener(android.view.View$OnClickListener) +wangdaye.com.geometricweather.R$string: int refresh +cyanogenmod.app.Profile: cyanogenmod.profiles.RingModeSettings getRingMode() +androidx.constraintlayout.widget.R$attr: int maxHeight +androidx.appcompat.R$styleable: int DrawerArrowToggle_arrowShaftLength +wangdaye.com.geometricweather.R$color: int notification_action_color_filter +androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackgroundColor(int) com.google.android.material.R$style: int Widget_AppCompat_ProgressBar_Horizontal -com.jaredrummler.android.colorpicker.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitationProbability(java.lang.Float) -com.google.android.material.R$drawable: int btn_radio_on_to_off_mtrl_animation -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date moonriseTime -android.didikee.donate.R$drawable: int abc_seekbar_track_material -com.google.android.material.R$attr: int chipStyle -androidx.appcompat.widget.ViewStubCompat: void setVisibility(int) -okhttp3.internal.ws.RealWebSocket: int receivedPongCount() -com.google.android.material.R$color: int mtrl_fab_ripple_color -com.google.android.material.R$styleable: int Layout_layout_constrainedWidth +androidx.preference.R$attr: int textAppearanceSearchResultSubtitle +androidx.appcompat.R$attr: int switchTextAppearance +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: void setValue(java.lang.String) +wangdaye.com.geometricweather.R$id: int startVertical +wangdaye.com.geometricweather.common.basic.models.weather.Base +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void drainLoop() +cyanogenmod.externalviews.KeyguardExternalViewProviderService: boolean DEBUG +com.xw.repo.bubbleseekbar.R$attr: int buttonBarPositiveButtonStyle +cyanogenmod.themes.ThemeChangeRequest$Builder: long mWallpaperId +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_summaryOn +androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.google.android.material.R$styleable: int[] KeyAttribute +okhttp3.Request$Builder: okhttp3.Request$Builder method(java.lang.String,okhttp3.RequestBody) +com.xw.repo.bubbleseekbar.R$attr: int bsb_seek_step_section +okhttp3.Response: okhttp3.Handshake handshake +android.didikee.donate.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer uvIndex +retrofit2.ParameterHandler$QueryName: ParameterHandler$QueryName(retrofit2.Converter,boolean) +androidx.recyclerview.R$attr: int fontWeight +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +wangdaye.com.geometricweather.R$id: int widget_clock_day_card +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onNext(java.lang.Object) androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_gravity -androidx.appcompat.R$styleable: int ActionBar_progressBarStyle -okhttp3.HttpUrl$Builder: java.lang.String encodedUsername -wangdaye.com.geometricweather.R$drawable: int abc_btn_colored_material -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_Solid -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream pushStream(int,java.util.List,boolean) -androidx.appcompat.app.ActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.internal.disposables.SequentialDisposable task -androidx.recyclerview.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$color: int mtrl_card_view_foreground -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar -android.didikee.donate.R$id: int normal -wangdaye.com.geometricweather.R$id: int widget_clock_day_icon -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String Link -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: int uv -androidx.lifecycle.LifecycleRegistry: LifecycleRegistry(androidx.lifecycle.LifecycleOwner) -androidx.vectordrawable.R$id: int time -okhttp3.Address: java.util.List protocols -androidx.drawerlayout.widget.DrawerLayout: void setDrawerListener(androidx.drawerlayout.widget.DrawerLayout$DrawerListener) -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Header$Listener access$100(okhttp3.internal.http2.Http2Stream) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -cyanogenmod.app.IPartnerInterface$Stub: cyanogenmod.app.IPartnerInterface asInterface(android.os.IBinder) -com.google.android.material.R$layout: int mtrl_calendar_month_labeled -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String alertId -androidx.preference.R$color: int bright_foreground_disabled_material_dark -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean -androidx.legacy.coreutils.R$dimen: int compat_control_corner_material -androidx.constraintlayout.widget.R$attr: int contentInsetRight -wangdaye.com.geometricweather.R$string: int feedback_click_to_get_more -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: java.lang.Object poll() -androidx.vectordrawable.animated.R$attr: int fontVariationSettings -org.greenrobot.greendao.database.DatabaseOpenHelper: void onUpgrade(android.database.sqlite.SQLiteDatabase,int,int) -android.didikee.donate.R$attr: int colorButtonNormal -wangdaye.com.geometricweather.R$attr: int searchHintIcon -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: ServiceLifecycleDispatcher$DispatchRunnable(androidx.lifecycle.LifecycleRegistry,androidx.lifecycle.Lifecycle$Event) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -androidx.legacy.coreutils.R$styleable: int GradientColor_android_endY -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean getPressure() -com.google.android.material.appbar.AppBarLayout: int getTopInset() -androidx.fragment.R$id: int text -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_divider -com.turingtechnologies.materialscrollbar.R$attr: int colorAccent -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_checkboxStyle -wangdaye.com.geometricweather.R$drawable: int abc_switch_track_mtrl_alpha -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long time -androidx.constraintlayout.widget.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: AccuCurrentResult$TemperatureSummary$Past24HourRange() -wangdaye.com.geometricweather.R$drawable: int notif_temp_72 -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTintMode -androidx.constraintlayout.widget.R$styleable: int[] MotionLayout -wangdaye.com.geometricweather.db.entities.MinutelyEntity: int minuteInterval -cyanogenmod.util.ColorUtils$1: ColorUtils$1() -com.turingtechnologies.materialscrollbar.R$attr: int expanded -androidx.appcompat.R$layout: int abc_screen_content_include -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay -androidx.appcompat.resources.R$id: int accessibility_custom_action_25 -com.google.android.material.R$layout: int abc_search_view -wangdaye.com.geometricweather.R$attr: int cpv_animAutostart -androidx.fragment.app.Fragment$InstantiationException: Fragment$InstantiationException(java.lang.String,java.lang.Exception) -androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$id: int blocking -wangdaye.com.geometricweather.R$attr: int textAppearanceSubtitle2 -androidx.viewpager.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric -com.xw.repo.bubbleseekbar.R$attr: int layout_insetEdge -androidx.vectordrawable.R$dimen: int notification_content_margin_start -android.didikee.donate.R$attr: int state_above_anchor -cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String TAG -androidx.hilt.work.R$id: int tag_unhandled_key_event_manager -androidx.drawerlayout.R$drawable: int notification_template_icon_low_bg -androidx.constraintlayout.widget.R$styleable: int Motion_transitionEasing -androidx.constraintlayout.widget.R$color: int abc_tint_seek_thumb -android.didikee.donate.R$attr: int thickness -wangdaye.com.geometricweather.R$attr: int collapsedSize -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_36dp -cyanogenmod.weather.WeatherInfo$Builder: int mWindSpeedUnit -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: void run() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setWeatherSource(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int abc_dialog_padding_top_material -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float totalPrecipitation24h -io.reactivex.internal.queue.SpscArrayQueue: void soProducerIndex(long) -okio.Sink: void close() -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_barThickness -androidx.appcompat.R$styleable: int Toolbar_navigationIcon -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -okhttp3.ConnectionSpec -androidx.appcompat.widget.ButtonBarLayout: int getMinimumHeight() -okhttp3.internal.cache.DiskLruCache$Entry: java.io.File[] cleanFiles -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_90 -androidx.appcompat.R$dimen: int abc_list_item_padding_horizontal_material -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_android_thumb -androidx.appcompat.R$styleable: int DrawerArrowToggle_drawableSize -james.adaptiveicon.R$color: int material_deep_teal_500 -wangdaye.com.geometricweather.R$attr: int swipeRefreshLayoutProgressSpinnerBackgroundColor -androidx.appcompat.resources.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Source +android.didikee.donate.R$color: int abc_background_cache_hint_selector_material_dark +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_summaryOff +com.jaredrummler.android.colorpicker.R$styleable: int Preference_enableCopying +okhttp3.Handshake: okhttp3.TlsVersion tlsVersion +android.didikee.donate.R$styleable: int AppCompatTextView_drawableBottomCompat +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +android.didikee.donate.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +androidx.constraintlayout.widget.R$attr: int flow_horizontalStyle +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +com.jaredrummler.android.colorpicker.R$styleable: int[] AlertDialog +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_xml +androidx.constraintlayout.widget.R$string: int abc_menu_space_shortcut_label +cyanogenmod.hardware.ICMHardwareService$Stub: ICMHardwareService$Stub() +androidx.customview.R$styleable: int[] GradientColorItem +com.google.android.material.R$id: int chain +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalAlign +okhttp3.internal.http1.Http1Codec: void cancel() +okio.ForwardingTimeout: okio.ForwardingTimeout setDelegate(okio.Timeout) +com.google.android.material.R$attr: int textAppearancePopupMenuHeader +com.google.gson.stream.JsonReader: int PEEKED_UNQUOTED +androidx.constraintlayout.widget.R$drawable: int abc_tab_indicator_mtrl_alpha +com.google.android.material.chip.Chip: float getChipIconSize() +androidx.preference.R$integer: int config_tooltipAnimTime +wangdaye.com.geometricweather.R$id: int center_vertical +wangdaye.com.geometricweather.R$array: int widget_card_styles +android.didikee.donate.R$style: int TextAppearance_AppCompat_Body2 +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_height +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +wangdaye.com.geometricweather.R$styleable: int Transform_android_scaleY +com.turingtechnologies.materialscrollbar.R$styleable: int[] View +androidx.appcompat.R$style: int Widget_AppCompat_SeekBar +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginTop +okhttp3.internal.cache2.Relay: boolean complete +androidx.preference.R$drawable: int notification_tile_bg +androidx.customview.R$id: int info +wangdaye.com.geometricweather.R$attr: int visibilityMode +wangdaye.com.geometricweather.R$string: int key_notification_hide_big_view +cyanogenmod.weatherservice.IWeatherProviderServiceClient: void setServiceRequestState(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.ServiceRequestResult,int) +james.adaptiveicon.R$attr: int dividerPadding +com.xw.repo.bubbleseekbar.R$anim: int abc_fade_in +cyanogenmod.providers.CMSettings$Secure: java.lang.String LIVE_LOCK_SCREEN_ENABLED +okhttp3.internal.Util: okio.ByteString UTF_32_LE_BOM +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayout +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconSize +androidx.preference.R$style: int Widget_AppCompat_ListView_Menu +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent +com.xw.repo.bubbleseekbar.R$attr: int track +androidx.preference.R$color: int material_blue_grey_950 +androidx.preference.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_menuCategory +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_crossfade +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_129 +wangdaye.com.geometricweather.R$id: int widget_text_temperature +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog_MinWidth +okhttp3.internal.http2.Http2Reader: boolean client +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onLockscreenSlideOffsetChanged(float) +androidx.appcompat.R$styleable: int MenuItem_actionProviderClass +com.google.android.material.R$styleable: int TextInputLayout_hintTextAppearance +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingStart +cyanogenmod.providers.DataUsageContract: java.lang.String SLOW_AVG +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showColorShades +androidx.swiperefreshlayout.R$id: int title +com.google.android.material.R$style: int Widget_MaterialComponents_Button +androidx.appcompat.R$color: int material_grey_300 +james.adaptiveicon.R$style: int Base_V26_Theme_AppCompat_Light com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_swipe_escape_velocity -com.bumptech.glide.manager.SupportRequestManagerFragment -wangdaye.com.geometricweather.remoteviews.config.Hilt_HourlyTrendWidgetConfigActivity: Hilt_HourlyTrendWidgetConfigActivity() -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_subtitle_top_margin_material -com.google.android.material.R$bool: int abc_allow_stacked_button_bar -okio.GzipSource: byte SECTION_TRAILER -com.google.android.material.datepicker.MaterialCalendarGridView -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Subtitle1 -io.reactivex.internal.subscriptions.SubscriptionArbiter: void drain() -okhttp3.internal.cache.DiskLruCache: boolean hasJournalErrors -com.google.android.material.circularreveal.CircularRevealLinearLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -androidx.drawerlayout.R$dimen: int compat_button_inset_horizontal_material -io.reactivex.internal.schedulers.ScheduledDirectTask: long serialVersionUID -okhttp3.OkHttpClient: OkHttpClient(okhttp3.OkHttpClient$Builder) -androidx.constraintlayout.widget.R$color: int material_blue_grey_900 -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeColor -com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_ContextMenu -com.google.android.material.R$attr: int shapeAppearanceOverlay -com.jaredrummler.android.colorpicker.R$attr: int radioButtonStyle -androidx.vectordrawable.animated.R$id: int tag_unhandled_key_listeners -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter this$0 -androidx.appcompat.R$drawable: int abc_ic_star_black_48dp -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardElevation -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Circular -androidx.constraintlayout.widget.R$attr: int dropdownListPreferredItemHeight -androidx.preference.SeekBarPreference: SeekBarPreference(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$attr: int fabSize -com.google.android.material.slider.BaseSlider: void setThumbElevation(float) -wangdaye.com.geometricweather.R$styleable: int SearchView_searchIcon -okhttp3.EventListener: void connectFailed(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol,java.io.IOException) -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Time -cyanogenmod.app.ProfileGroup$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.constraintlayout.widget.Group: void setElevation(float) -james.adaptiveicon.R$styleable: int AppCompatTheme_colorPrimary -retrofit2.OptionalConverterFactory -wangdaye.com.geometricweather.common.basic.models.weather.Wind: Wind(java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_SIGNAL_ICON -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$attr: int flow_horizontalAlign -okhttp3.OkHttpClient$Builder: okhttp3.Authenticator authenticator -io.reactivex.internal.observers.InnerQueuedObserver -com.github.rahatarmanahmed.cpv.CircularProgressView: float indeterminateRotateOffset -com.jaredrummler.android.colorpicker.R$drawable: int cpv_btn_background -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_COLOR_ENHANCE_VALIDATOR -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Light -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_stacked_max_height -androidx.appcompat.R$attr: int listPreferredItemPaddingLeft -android.didikee.donate.R$styleable: int RecycleListView_paddingTopNoTitle -androidx.constraintlayout.widget.R$styleable: int[] View -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderTextAppearance -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Time -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -com.google.android.material.R$style: int TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial Imperial +com.xw.repo.bubbleseekbar.R$attr: int colorSwitchThumbNormal +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9 +androidx.constraintlayout.widget.R$drawable: int abc_list_divider_material +androidx.preference.R$drawable: int abc_seekbar_tick_mark_material +androidx.constraintlayout.utils.widget.ImageFilterButton: void setBrightness(float) +com.google.android.material.R$id: int textSpacerNoTitle +androidx.constraintlayout.widget.R$styleable: int Layout_layout_editor_absoluteY +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindContainer +com.bumptech.glide.integration.okhttp.R$id: int info +androidx.constraintlayout.widget.R$dimen: int notification_large_icon_width +io.reactivex.internal.observers.DeferredScalarObserver: long serialVersionUID +android.didikee.donate.R$id: int list_item +com.google.android.material.R$id: int month_navigation_bar +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_width_overflow_material +com.turingtechnologies.materialscrollbar.R$attr: int iconSize +androidx.appcompat.R$style: int Widget_AppCompat_SearchView_ActionBar +androidx.legacy.coreutils.R$dimen: int notification_media_narrow_margin +com.jaredrummler.android.colorpicker.R$style: int PreferenceFragment +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onComplete() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Large +okhttp3.EventListener: void secureConnectStart(okhttp3.Call) +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionMode +com.google.android.material.R$color: int abc_search_url_text +cyanogenmod.profiles.ConnectionSettings$1: ConnectionSettings$1() +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type PRECIPITATION +wangdaye.com.geometricweather.R$styleable: int[] Snackbar +okhttp3.Request +androidx.constraintlayout.widget.R$attr: int titleMarginTop +androidx.appcompat.widget.SearchView: void setSearchableInfo(android.app.SearchableInfo) +androidx.appcompat.widget.SwitchCompat: void setSwitchTypeface(android.graphics.Typeface) +com.turingtechnologies.materialscrollbar.R$string +androidx.work.R$dimen +wangdaye.com.geometricweather.R$string: int path_password_eye_mask_strike_through +okio.DeflaterSink: boolean closed +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index no2 +wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_horizontal_setting +okhttp3.Dispatcher: boolean $assertionsDisabled +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean mainDone +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_holo_dark +androidx.hilt.work.R$styleable: int[] FragmentContainerView +androidx.preference.R$styleable: int ActionBar_height +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog +androidx.coordinatorlayout.R$styleable: int GradientColorItem_android_offset +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_variablePadding +cyanogenmod.weatherservice.WeatherProviderService: android.os.Handler mHandler +com.google.android.material.R$styleable: int KeyTimeCycle_transitionPathRotate +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.core.widget.NestedScrollView: float getBottomFadingEdgeStrength() +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_bias +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_ellipsize +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +wangdaye.com.geometricweather.db.entities.DailyEntityDao +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void drain() +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_list_padding_top_no_title +io.reactivex.Observable: io.reactivex.Single last(java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int shortcuts_sleet_foreground +androidx.preference.R$attr: int radioButtonStyle +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitation +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: AccuLocationResult$AdministrativeArea() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvDescription(java.lang.String) +io.reactivex.observers.DisposableObserver: void onStart() +androidx.hilt.work.R$id: int accessibility_custom_action_29 +com.turingtechnologies.materialscrollbar.R$attr: int actionBarStyle +com.turingtechnologies.materialscrollbar.R$attr: int itemBackground +com.google.android.material.R$styleable: int OnSwipe_dragDirection +wangdaye.com.geometricweather.R$id: int activity_widget_config +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceGroup +okhttp3.RealCall: boolean isCanceled() +wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitleTextStyle +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_36dp +com.google.android.material.R$dimen: int mtrl_calendar_year_vertical_padding +com.xw.repo.bubbleseekbar.R$attr: int bsb_always_show_bubble +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.google.android.material.R$attr: int sliderStyle +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getProvince() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar_PrimarySurface +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType BOOLEAN_TYPE +com.google.android.material.R$styleable: int ViewBackgroundHelper_backgroundTintMode +com.xw.repo.BubbleSeekBar: float getMax() +okhttp3.Request: okhttp3.HttpUrl url() +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: HalfDay(java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration,wangdaye.com.geometricweather.common.basic.models.weather.Wind,java.lang.Integer) +androidx.loader.R$id: int notification_main_column +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() +wangdaye.com.geometricweather.R$styleable: int Preference_dependency +com.google.android.material.R$styleable: int[] AppBarLayout +com.google.android.material.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +okhttp3.internal.http2.Http2Reader +androidx.viewpager2.R$color: int notification_action_color_filter +androidx.appcompat.R$dimen: int abc_action_button_min_width_overflow_material +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 +com.google.android.material.R$styleable: int AppCompatTheme_textColorSearchUrl +com.google.android.material.R$id: int outline +androidx.drawerlayout.R$attr +cyanogenmod.externalviews.ExternalView$2: int val$y +androidx.loader.R$dimen: int compat_control_corner_material +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontWeight +cyanogenmod.providers.CMSettings$System: java.lang.String TOUCHSCREEN_GESTURE_HAPTIC_FEEDBACK +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Tooltip +wangdaye.com.geometricweather.R$drawable: int notif_temp_54 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_elevation +okhttp3.ConnectionSpec$Builder: java.lang.String[] tlsVersions +com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context,android.util.AttributeSet) +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.DaoConfig config +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object getKey(java.lang.Object) +org.greenrobot.greendao.AbstractDao: void loadAllUnlockOnWindowBounds(android.database.Cursor,android.database.CursorWindow,java.util.List) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: MinutelyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer) +io.reactivex.Observable: java.lang.Iterable blockingNext() +retrofit2.ParameterHandler$FieldMap: int p +com.jaredrummler.android.colorpicker.R$attr: int expandActivityOverflowButtonDrawable +androidx.appcompat.R$id: int action_menu_divider +com.jaredrummler.android.colorpicker.R$anim +james.adaptiveicon.R$string: int abc_capital_off +androidx.swiperefreshlayout.R$id: int chronometer +com.google.android.material.slider.RangeSlider: int getTrackHeight() +androidx.core.R$styleable: int[] ColorStateListItem +com.xw.repo.bubbleseekbar.R$attr: int bsb_auto_adjust_section_mark +androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_ICONS +wangdaye.com.geometricweather.R$id: int BOTTOM_START +wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress_color +cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String itemTitle +io.reactivex.exceptions.MissingBackpressureException: MissingBackpressureException(java.lang.String) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button +androidx.constraintlayout.widget.R$string: int abc_action_bar_up_description +androidx.vectordrawable.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource[] values() +james.adaptiveicon.R$drawable: R$drawable() +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onComplete() +cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property ResidentPosition +androidx.vectordrawable.animated.R$attr: int fontStyle +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality() wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getDailyEntityList() -android.didikee.donate.R$styleable: int ActionBar_progressBarStyle -wangdaye.com.geometricweather.R$dimen: int hint_pressed_alpha_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_switchStyle -okhttp3.internal.connection.StreamAllocation: void acquire(okhttp3.internal.connection.RealConnection,boolean) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicBoolean stopWindows -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_min -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float rainPrecipitation -james.adaptiveicon.R$id: int wrap_content -androidx.core.app.JobIntentService: JobIntentService() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Tooltip -wangdaye.com.geometricweather.R$styleable: int OnSwipe_maxVelocity -androidx.preference.R$id: int action_bar_spinner -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen -androidx.appcompat.view.menu.ExpandedMenuView: int getWindowAnimations() -wangdaye.com.geometricweather.R$dimen: int compat_button_padding_horizontal_material -okio.Buffer: okio.Buffer writeLong(long) -wangdaye.com.geometricweather.R$styleable: int[] NavigationView -com.google.android.material.datepicker.DateValidatorPointForward -androidx.constraintlayout.widget.R$styleable: int Spinner_popupTheme -com.google.android.material.chip.Chip: float getChipCornerRadius() -cyanogenmod.weather.WeatherInfo$DayForecast$1: cyanogenmod.weather.WeatherInfo$DayForecast[] newArray(int) -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_size_mini -wangdaye.com.geometricweather.R$attr: int flow_lastHorizontalBias -android.didikee.donate.R$attr: int windowActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconDrawable -androidx.appcompat.R$color: int androidx_core_ripple_material_light -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: java.lang.Integer fresh -wangdaye.com.geometricweather.R$styleable: int Slider_trackColor -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: IAppSuggestProvider$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_rippleColor -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginStart -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onError(java.lang.Throwable) -com.google.android.material.R$styleable: int AppBarLayout_elevation -wangdaye.com.geometricweather.R$drawable: R$drawable() -com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getIndicatorOffset() -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_motionTarget -com.google.android.material.R$styleable: int[] MaterialCalendarItem -androidx.preference.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mSoundMode -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_fontFamily -retrofit2.ParameterHandler$QueryMap: ParameterHandler$QueryMap(java.lang.reflect.Method,int,retrofit2.Converter,boolean) -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDbz(java.lang.Integer) -androidx.appcompat.widget.AppCompatTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.github.rahatarmanahmed.cpv.CircularProgressView: void updateBounds() -wangdaye.com.geometricweather.R$drawable: int selectable_item_background_borderless -androidx.legacy.content.WakefulBroadcastReceiver -androidx.appcompat.widget.Toolbar: int getContentInsetEndWithActions() -wangdaye.com.geometricweather.R$styleable: int Toolbar_logo -james.adaptiveicon.R$attr: int actionBarDivider -androidx.lifecycle.ViewModel: void onCleared() -com.google.android.material.R$styleable: int View_theme -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() -com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context,android.util.AttributeSet) -androidx.drawerlayout.R$drawable: int notification_bg_normal_pressed -io.reactivex.Observable: io.reactivex.Observable flatMapSingle(io.reactivex.functions.Function,boolean) -androidx.appcompat.R$id: int accessibility_custom_action_26 -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: ObservableDebounceTimed$DebounceEmitter(java.lang.Object,long,io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceTimedObserver) -androidx.appcompat.widget.AppCompatImageButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$style: int cpv_ColorPickerViewStyle -androidx.core.R$id: int accessibility_custom_action_2 -androidx.appcompat.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -androidx.preference.R$attr: int itemPadding -com.google.android.material.R$color: int mtrl_btn_ripple_color -wangdaye.com.geometricweather.R$styleable: int[] ForegroundLinearLayout -cyanogenmod.weather.CMWeatherManager$1 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_subtitle_top_margin_material -androidx.activity.R$id: int notification_background -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_keylines -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status valueOf(java.lang.String) -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_height_major -androidx.preference.R$string: int abc_menu_space_shortcut_label -androidx.appcompat.R$drawable: int abc_ratingbar_material -okio.HashingSink: java.security.MessageDigest messageDigest -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent FONT -androidx.preference.R$style: int Base_V21_Theme_AppCompat_Light -com.google.android.material.R$style: int Widget_MaterialComponents_Badge -androidx.appcompat.R$layout: int abc_activity_chooser_view -okhttp3.RealCall$AsyncCall: okhttp3.Request request() -androidx.preference.R$anim: int abc_slide_out_bottom -androidx.lifecycle.LiveData: void onActive() -androidx.swiperefreshlayout.R$id: int normal -androidx.constraintlayout.widget.R$color: int dim_foreground_material_dark -com.jaredrummler.android.colorpicker.R$dimen: int abc_panel_menu_list_width -androidx.appcompat.widget.AppCompatButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_margin -androidx.lifecycle.MediatorLiveData$Source: androidx.lifecycle.Observer mObserver -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_small_material -okhttp3.internal.http1.Http1Codec$FixedLengthSink: void write(okio.Buffer,long) -androidx.appcompat.R$styleable: int[] ActionMode -androidx.preference.R$drawable: int notification_icon_background -androidx.appcompat.view.menu.ActionMenuItemView: void setIcon(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$string: int feedback_short_term_precipitation_alert -wangdaye.com.geometricweather.R$id: int SHOW_PROGRESS -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.R$attr: int drawableTintMode -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: io.reactivex.internal.fuseable.SimpleQueue queue -james.adaptiveicon.R$color: int abc_tint_spinner +androidx.appcompat.R$attr: int backgroundTint +android.support.v4.os.ResultReceiver$MyRunnable: android.support.v4.os.ResultReceiver this$0 +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +androidx.activity.R$drawable: int notification_bg_low +androidx.preference.R$id: int buttonPanel +okhttp3.internal.http1.Http1Codec: int STATE_WRITING_REQUEST_BODY +com.google.android.material.R$style: int Theme_Design_NoActionBar +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: BaiduIPLocationService(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi,io.reactivex.disposables.CompositeDisposable) +androidx.preference.R$color: int abc_tint_btn_checkable +androidx.constraintlayout.widget.R$attr: int thickness +androidx.viewpager2.R$id: int accessibility_custom_action_13 +androidx.constraintlayout.widget.R$drawable: int abc_cab_background_top_mtrl_alpha +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object value +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum Minimum +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_15 +wangdaye.com.geometricweather.R$drawable: int notif_temp_29 +cyanogenmod.app.BaseLiveLockManagerService: void enforceSamePackageOrSystem(java.lang.String,cyanogenmod.app.LiveLockScreenInfo) +retrofit2.BuiltInConverters: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) +com.google.android.material.R$layout: int material_clock_period_toggle_land +com.turingtechnologies.materialscrollbar.R$attr: int statusBarScrim +androidx.lifecycle.livedata.core.R +com.xw.repo.bubbleseekbar.R$attr: int background +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: java.lang.String Localized +okhttp3.internal.connection.StreamAllocation: int refusedStreamCount +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_profileExists +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf +wangdaye.com.geometricweather.R$attr: int msb_handleOffColor +wangdaye.com.geometricweather.R$attr: int circleRadius +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_indicator_material +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitationDuration() +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: ObservableSampleTimed$SampleTimedEmitLast(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$id: int blocking +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_FONT +io.reactivex.internal.schedulers.AbstractDirectTask +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_cut_mtrl_alpha +wangdaye.com.geometricweather.R$string: int cancel +cyanogenmod.app.LiveLockScreenInfo$Builder +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_popupBackground +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean done +androidx.customview.R$dimen: int compat_notification_large_icon_max_height +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: long date +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Info +com.bumptech.glide.R$dimen: int notification_small_icon_background_padding +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_title +androidx.loader.R$dimen: R$dimen() +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleTintMode +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_longpressed_holo +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog_MinWidth +james.adaptiveicon.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +androidx.hilt.work.R$drawable: int notify_panel_notification_icon_bg +james.adaptiveicon.R$styleable: int MenuItem_alphabeticModifiers +com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabIconTint() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property O3 +wangdaye.com.geometricweather.R$styleable: int[] AppBarLayoutStates +androidx.constraintlayout.widget.R$id: int action_bar_spinner +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_36dp +android.didikee.donate.R$styleable: int[] MenuView +wangdaye.com.geometricweather.R$styleable: int[] CollapsingToolbarLayout +com.jaredrummler.android.colorpicker.R$id: int action_menu_divider +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_23 +okhttp3.RealCall: java.io.IOException timeoutExit(java.io.IOException) +android.support.v4.app.INotificationSideChannel$Default: INotificationSideChannel$Default() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_xml +okhttp3.ConnectionPool$1: void run() +androidx.swiperefreshlayout.R$layout: R$layout() +androidx.appcompat.R$styleable: int AppCompatTextView_lineHeight +android.didikee.donate.R$dimen: int abc_action_button_min_width_overflow_material +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_content_inset_with_nav +com.jaredrummler.android.colorpicker.R$attr: int windowFixedHeightMinor +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_type +androidx.preference.R$dimen: int abc_dialog_fixed_height_major +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_summaryOff +com.google.android.material.circularreveal.CircularRevealFrameLayout: CircularRevealFrameLayout(android.content.Context,android.util.AttributeSet) +cyanogenmod.util.ColorUtils: int findPerceptuallyNearestColor(int,int[]) +androidx.viewpager.R$id: int action_container +androidx.viewpager2.R$styleable: int RecyclerView_layoutManager +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void cancelAll() +androidx.core.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.R$dimen: int tooltip_margin +androidx.constraintlayout.widget.R$styleable: int[] Transform +okhttp3.internal.http2.Http2Connection: void pushDataLater(int,okio.BufferedSource,int,boolean) +androidx.preference.R$string: int abc_capital_off +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getDetail() +com.xw.repo.bubbleseekbar.R$attr: int tintMode +okhttp3.internal.cache.FaultHidingSink: void onException(java.io.IOException) +androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableCompat +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter wangdaye.com.geometricweather.R$attr: int trackColor -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void emit() -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date getRiseDate() -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_divider -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf -com.turingtechnologies.materialscrollbar.CustomIndicator: CustomIndicator(android.content.Context) -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: cyanogenmod.app.ThemeVersion$ComponentVersion fwCompVersionToSdkVersion(android.content.ThemeVersion$ComponentVersion) -com.bumptech.glide.integration.okhttp.R$id: int title -cyanogenmod.providers.DataUsageContract: java.lang.String DATAUSAGE_TABLE -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_strokeWidth -okhttp3.Request$Builder: okhttp3.Request$Builder delete(okhttp3.RequestBody) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_content_padding -androidx.constraintlayout.widget.R$dimen: int compat_button_inset_horizontal_material -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_fabSize -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onNext(java.lang.Object) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onAttach(android.os.IBinder) -androidx.preference.R$id: R$id() -androidx.preference.R$id: int accessibility_custom_action_7 -wangdaye.com.geometricweather.R$id: int mtrl_calendar_frame -cyanogenmod.hardware.ThermalListenerCallback: ThermalListenerCallback() -io.reactivex.exceptions.CompositeException: CompositeException(java.lang.Iterable) -wangdaye.com.geometricweather.R$styleable: int Layout_maxHeight -androidx.preference.R$string: R$string() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert -androidx.appcompat.R$id: int action_bar_activity_content -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.db.entities.DailyEntity: int getNighttimeTemperature() -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_LEGACY_THEME -okhttp3.internal.cache2.Relay: long FILE_HEADER_SIZE -androidx.coordinatorlayout.R$attr: int keylines -androidx.appcompat.R$drawable: int abc_ic_star_black_36dp -com.google.android.material.R$dimen: int notification_large_icon_width -com.jaredrummler.android.colorpicker.R$string: int abc_menu_meta_shortcut_label -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeMinTextSize -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder callbackExecutor(java.util.concurrent.Executor) -androidx.viewpager2.R$drawable: int notification_template_icon_bg -com.google.android.material.R$layout: int material_textinput_timepicker -androidx.preference.R$style: int Base_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_editor_absoluteY -okhttp3.internal.tls.BasicCertificateChainCleaner: int MAX_SIGNERS -cyanogenmod.externalviews.ExternalView$3 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_animate_relativeTo -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float icePrecipitationProbability -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_android_windowIsFloating -wangdaye.com.geometricweather.common.basic.models.weather.Hourly -com.github.rahatarmanahmed.cpv.CircularProgressView$4: void onAnimationUpdate(android.animation.ValueAnimator) -com.google.android.material.navigation.NavigationView: void setElevation(float) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getIcePrecipitation() -okhttp3.internal.cache.DiskLruCache$Editor: void commit() -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin -com.google.android.material.R$styleable: int MaterialTextView_lineHeight -android.didikee.donate.R$string: int abc_action_mode_done -androidx.vectordrawable.animated.R$id: int tag_accessibility_actions -androidx.hilt.work.R$id: int visible_removing_fragment_view_tag -androidx.work.R$dimen -com.google.android.material.floatingactionbutton.FloatingActionButton: void setEnsureMinTouchTargetSize(boolean) -androidx.constraintlayout.motion.widget.MotionLayout: void setState(androidx.constraintlayout.motion.widget.MotionLayout$TransitionState) -androidx.appcompat.R$styleable: int SwitchCompat_thumbTextPadding -com.google.android.material.appbar.AppBarLayout: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo build() -androidx.appcompat.widget.ViewStubCompat: void setOnInflateListener(androidx.appcompat.widget.ViewStubCompat$OnInflateListener) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String name -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date getSetDate() -wangdaye.com.geometricweather.R$styleable: int[] StateListDrawableItem -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeSplitBackground -com.google.android.material.R$id: int accessibility_custom_action_13 -androidx.viewpager.R$layout: int notification_action -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstHorizontalBias -cyanogenmod.app.BaseLiveLockManagerService: java.lang.String TAG -wangdaye.com.geometricweather.R$id: int treeIcon -com.google.android.material.internal.ScrimInsetsFrameLayout: void setDrawBottomInsetForeground(boolean) -androidx.core.R$dimen: int notification_right_icon_size +cyanogenmod.profiles.StreamSettings: cyanogenmod.profiles.StreamSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +androidx.work.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.R$color: int material_blue_grey_800 +androidx.fragment.R$styleable: int[] ColorStateListItem +com.google.android.material.R$styleable: int TextInputLayout_errorTextColor +wangdaye.com.geometricweather.R$id: int container_alert_display_view_title +wangdaye.com.geometricweather.R$color: int design_dark_default_color_background +androidx.lifecycle.ViewModelProviders$DefaultFactory: ViewModelProviders$DefaultFactory(android.app.Application) +com.google.android.material.R$layout: int abc_tooltip +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_material_light +androidx.constraintlayout.widget.R$styleable: int[] ActionMenuItemView +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String weatherSource +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: CMSettings$InclusiveFloatRangeValidator(float,float) +androidx.constraintlayout.widget.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +wangdaye.com.geometricweather.R$string: int widget_trend_hourly +cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(android.os.Parcel,cyanogenmod.themes.ThemeChangeRequest$1) +okhttp3.RequestBody$3: okhttp3.MediaType contentType() +com.google.android.material.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +wangdaye.com.geometricweather.R$drawable: int widget_text +androidx.preference.R$attr: int colorControlHighlight +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_end +okhttp3.Protocol: okhttp3.Protocol SPDY_3 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlNormal +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_anchor +androidx.vectordrawable.animated.R$id: int action_divider +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +androidx.activity.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$style: int AndroidThemeColorAccentYellow +wangdaye.com.geometricweather.common.basic.models.Location +com.google.android.material.R$style: R$style() +androidx.core.widget.ContentLoadingProgressBar: ContentLoadingProgressBar(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$array: int automatic_refresh_rate_values +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable +okhttp3.internal.http.StatusLine: okhttp3.internal.http.StatusLine parse(java.lang.String) +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: java.util.concurrent.CompletableFuture future +okhttp3.internal.cache2.Relay: okio.Buffer upstreamBuffer +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getRagweedLevel() +okhttp3.internal.http2.Header: int hashCode() +wangdaye.com.geometricweather.R$drawable: int abc_btn_borderless_material +cyanogenmod.app.StatusBarPanelCustomTile: void writeToParcel(android.os.Parcel,int) +androidx.dynamicanimation.R$styleable: int ColorStateListItem_android_color +androidx.coordinatorlayout.R$attr: int fontVariationSettings +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onNext(java.lang.Object) +com.xw.repo.bubbleseekbar.R$attr: int colorAccent +wangdaye.com.geometricweather.common.basic.models.weather.Alert: Alert(android.os.Parcel) +io.reactivex.Observable: io.reactivex.Observable concatDelayError(java.lang.Iterable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean getBrandInfo() +com.google.android.material.R$anim: int btn_checkbox_to_checked_icon_null_animation +wangdaye.com.geometricweather.R$id: int text_input_end_icon +cyanogenmod.content.Intent: Intent() +com.bumptech.glide.R$styleable: int CoordinatorLayout_statusBarBackground +com.bumptech.glide.R$style: int Widget_Support_CoordinatorLayout +com.bumptech.glide.R$drawable: int notification_bg_normal +retrofit2.CompletableFutureCallAdapterFactory: retrofit2.CallAdapter$Factory INSTANCE +okhttp3.internal.http1.Http1Codec$FixedLengthSource: long bytesRemaining +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX aqi +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder scheme(java.lang.String) +wangdaye.com.geometricweather.R$attr: int helperTextTextColor +com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat_Dark +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentStyle +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_13 +io.reactivex.subjects.PublishSubject$PublishDisposable +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver INNER_DISPOSED +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Province +androidx.lifecycle.extensions.R$integer +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +okio.DeflaterSink: void finishDeflate() +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_checked +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: AccuDailyResult$DailyForecasts$AirAndPollen() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BLUETOOTH_ACCEPT_ALL_FILES_VALIDATOR +androidx.appcompat.widget.SwitchCompat: android.graphics.PorterDuff$Mode getThumbTintMode() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: int rightIndex +androidx.vectordrawable.animated.R$id: int dialog_button +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream pushStream(int,java.util.List,boolean) +io.reactivex.Observable: io.reactivex.Observable takeUntil(io.reactivex.functions.Predicate) +wangdaye.com.geometricweather.R$layout: int item_card_display +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity +io.reactivex.internal.schedulers.RxThreadFactory +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind +com.google.android.material.R$dimen: int abc_seekbar_track_progress_height_material +android.didikee.donate.R$styleable: int MenuItem_actionViewClass +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Borderless_Colored +io.reactivex.internal.observers.DeferredScalarDisposable: void complete(java.lang.Object) +androidx.vectordrawable.animated.R$color: int notification_action_color_filter +com.github.rahatarmanahmed.cpv.R$dimen +com.xw.repo.bubbleseekbar.R$id: int start +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_thumb +okhttp3.internal.http2.Http2Reader: void readWindowUpdate(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endY +james.adaptiveicon.R$styleable: int ActionMode_closeItemLayout +androidx.appcompat.widget.FitWindowsFrameLayout: FitWindowsFrameLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int Slider_tickColorInactive +com.google.android.material.R$drawable: int abc_btn_radio_material +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableItem_android_drawable +james.adaptiveicon.R$id: int line1 +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mState +com.jaredrummler.android.colorpicker.R$color: int primary_dark_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: AccuLocationResult$Region() +androidx.preference.R$styleable: int ActionBar_navigationMode +wangdaye.com.geometricweather.R$dimen: int tooltip_corner_radius +androidx.appcompat.widget.AppCompatTextView: int[] getAutoSizeTextAvailableSizes() +androidx.hilt.work.R$dimen: int notification_large_icon_height +james.adaptiveicon.R$id: int action_text +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_21 +androidx.hilt.work.R$id: int blocking +okhttp3.internal.ws.WebSocketWriter$FrameSink: boolean closed +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getDate() +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_logoDescription +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_percent +androidx.constraintlayout.widget.R$dimen: int abc_floating_window_z +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias +cyanogenmod.app.CustomTileListenerService: boolean isBound() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: java.util.concurrent.atomic.AtomicInteger active +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setDesc(java.lang.String) +android.didikee.donate.R$drawable: int abc_switch_thumb_material +com.google.android.material.R$styleable: int TextInputLayout_android_textColorHint +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean isEmpty() +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextAppearanceInactive +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SeekBar +wangdaye.com.geometricweather.R$style: int Platform_AppCompat_Light +androidx.appcompat.R$id: int edit_query +okhttp3.internal.http1.Http1Codec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) +androidx.appcompat.resources.R$color: R$color() +androidx.preference.R$styleable: int AppCompatTheme_actionBarWidgetTheme +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SeekBar_Discrete +com.google.gson.stream.JsonReader: int PEEKED_SINGLE_QUOTED_NAME +android.didikee.donate.R$dimen: int abc_search_view_preferred_width +com.google.android.material.R$style: int Widget_AppCompat_RatingBar_Indicator +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial +android.didikee.donate.R$styleable: int ActionBar_elevation +androidx.appcompat.R$id: int accessibility_custom_action_18 +android.didikee.donate.R$styleable: int[] ActionBarLayout +com.google.android.material.R$styleable: int AppBarLayoutStates_state_liftable +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: io.reactivex.Observer observer +wangdaye.com.geometricweather.R$id: int dimensions +wangdaye.com.geometricweather.R$attr: int itemIconSize +com.turingtechnologies.materialscrollbar.R$dimen: int abc_search_view_preferred_width +androidx.preference.R$dimen: int abc_action_bar_content_inset_material +com.turingtechnologies.materialscrollbar.R$color: int abc_secondary_text_material_dark +com.google.android.material.R$string: int material_clock_display_divider +androidx.appcompat.R$styleable: int GradientColor_android_centerColor +androidx.core.R$attr: int fontProviderFetchTimeout +com.google.android.material.chip.Chip: void setRippleColorResource(int) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCollapsedPaddingTop +androidx.work.R$id: int accessibility_custom_action_28 +wangdaye.com.geometricweather.R$id: int activity_widget_config_viewStyleContainer +androidx.constraintlayout.widget.R$attr: int fontFamily +com.google.android.material.R$styleable: int AppCompatTheme_dialogPreferredPadding +com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float thunderstorm +com.turingtechnologies.materialscrollbar.R$styleable: int FlowLayout_itemSpacing +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Caption +androidx.preference.R$styleable: int DrawerArrowToggle_barLength +retrofit2.http.PATCH +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,io.reactivex.Scheduler) +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +com.google.android.material.slider.BaseSlider: int getLabelBehavior() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingRight +wangdaye.com.geometricweather.db.entities.WeatherEntity: int temperature +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: int UnitType +wangdaye.com.geometricweather.R$drawable: int design_password_eye +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator FORWARD_LOOKUP_PROVIDER_VALIDATOR +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree daytimeWindDegree +androidx.preference.SeekBarPreference +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void subscribe(io.reactivex.ObservableSource[],int) +com.jaredrummler.android.colorpicker.R$styleable: int ButtonBarLayout_allowStacking +okhttp3.internal.tls.BasicCertificateChainCleaner: okhttp3.internal.tls.TrustRootIndex trustRootIndex +android.didikee.donate.R$drawable: int abc_btn_borderless_material +androidx.loader.R$attr: int font +okio.ByteString: int decodeHexDigit(char) +okhttp3.Call$Factory: okhttp3.Call newCall(okhttp3.Request) +com.turingtechnologies.materialscrollbar.R$attr: int itemIconTint +androidx.recyclerview.R$id: int item_touch_helper_previous_elevation +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatHoveredFocusedTranslationZ(float) +wangdaye.com.geometricweather.R$attr: int colorButtonNormal +com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_max_width +com.jaredrummler.android.colorpicker.R$attr: int paddingEnd +okhttp3.Request$Builder: okhttp3.Request$Builder removeHeader(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_icon +com.google.android.material.slider.Slider: void setValue(float) +wangdaye.com.geometricweather.R$anim: int mtrl_bottom_sheet_slide_in +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language TURKISH +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: CNWeatherResult() +cyanogenmod.externalviews.KeyguardExternalView: void setProviderComponent(android.content.ComponentName) +com.turingtechnologies.materialscrollbar.R$string: int bottom_sheet_behavior +cyanogenmod.profiles.BrightnessSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +androidx.lifecycle.LiveDataReactiveStreams: LiveDataReactiveStreams() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: int UnitType +com.google.android.material.R$attr: int contentInsetStart +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onComplete() +androidx.preference.R$styleable: int PreferenceTheme_preferenceInformationStyle +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_GPS +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult +androidx.preference.R$string: int v7_preference_off +com.google.android.material.appbar.AppBarLayout: int getPendingAction() +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(long,java.util.concurrent.TimeUnit) +com.google.gson.internal.LazilyParsedNumber: LazilyParsedNumber(java.lang.String) +androidx.appcompat.R$drawable: int abc_text_select_handle_left_mtrl_dark +androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context) +androidx.lifecycle.ReportFragment: androidx.lifecycle.ReportFragment get(android.app.Activity) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem +com.google.android.material.R$layout: int mtrl_picker_fullscreen +cyanogenmod.app.CustomTile$ListExpandedStyle: CustomTile$ListExpandedStyle() +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitle +com.xw.repo.bubbleseekbar.R$attr: int contentDescription +wangdaye.com.geometricweather.R$styleable: int[] TabItem +wangdaye.com.geometricweather.R$attr: int rangeFillColor +androidx.recyclerview.R$id: int accessibility_custom_action_24 +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textSize +com.google.android.material.R$attr: int rippleColor +wangdaye.com.geometricweather.background.receiver.widget.WidgetTextProvider +androidx.viewpager.R$styleable: int FontFamilyFont_android_fontWeight +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_liftOnScroll +androidx.preference.R$color: int switch_thumb_material_dark +android.didikee.donate.R$color: int abc_primary_text_disable_only_material_dark +io.reactivex.Observable: io.reactivex.Observable delaySubscription(long,java.util.concurrent.TimeUnit) +androidx.coordinatorlayout.R$drawable: R$drawable() +okhttp3.internal.connection.RouteDatabase: RouteDatabase() +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long serialVersionUID +com.bumptech.glide.R$id: int line1 +com.google.android.material.R$styleable: int MaterialButton_icon +com.xw.repo.bubbleseekbar.R$layout: int abc_action_menu_layout +wangdaye.com.geometricweather.R$attr: int tabIndicatorGravity +cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo access$202(cyanogenmod.weatherservice.ServiceRequestResult,cyanogenmod.weather.WeatherInfo) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void drainLoop() +wangdaye.com.geometricweather.R$string: int phase_waxing_crescent +androidx.swiperefreshlayout.widget.SwipeRefreshLayout$SavedState: android.os.Parcelable$Creator CREATOR +androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackground(android.graphics.drawable.Drawable) +retrofit2.Utils: okhttp3.ResponseBody buffer(okhttp3.ResponseBody) +cyanogenmod.app.suggest.IAppSuggestManager$Stub: cyanogenmod.app.suggest.IAppSuggestManager asInterface(android.os.IBinder) +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_font +androidx.customview.R$dimen: int notification_right_side_padding_top +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderFetchStrategy +james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_Underlined +io.reactivex.internal.subscriptions.SubscriptionHelper +wangdaye.com.geometricweather.R$drawable: int ic_circle_white +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_16dp +wangdaye.com.geometricweather.R$color: int mtrl_indicator_text_color +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge +androidx.legacy.coreutils.R$id: int text2 +androidx.hilt.lifecycle.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getCOColor(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontVariationSettings +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onNext(retrofit2.Response) +androidx.recyclerview.R$attr: int fontProviderFetchStrategy +james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionModeOverlay +androidx.swiperefreshlayout.R$drawable: int notification_action_background +androidx.vectordrawable.animated.R$id: int async +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_padding_left +wangdaye.com.geometricweather.R$drawable: int abc_textfield_activated_mtrl_alpha +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void dispose() +cyanogenmod.externalviews.ExternalView: void onAttachedToWindow() +androidx.coordinatorlayout.R$dimen: R$dimen() +com.google.android.material.R$attr: int expandedTitleMarginBottom +android.didikee.donate.R$attr: int popupTheme +com.google.android.material.R$id: int add +android.didikee.donate.R$id: int top +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents +okhttp3.internal.cache.CacheStrategy: okhttp3.Response cacheResponse +androidx.vectordrawable.R$string: R$string() +androidx.constraintlayout.widget.R$bool: R$bool() +wangdaye.com.geometricweather.R$attr: int telltales_velocityMode +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getShowMotionSpec() +androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void otherError(java.lang.Throwable) +androidx.appcompat.resources.R$id: int line1 +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,okio.ByteString) +androidx.appcompat.R$id: int checked +androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() +cyanogenmod.externalviews.KeyguardExternalView$9: void run() +androidx.cardview.R$attr: int contentPaddingLeft +cyanogenmod.profiles.AirplaneModeSettings: void setOverride(boolean) +androidx.constraintlayout.widget.R$id: int bounce +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.constraintlayout.widget.R$dimen: int abc_text_size_menu_material +com.xw.repo.bubbleseekbar.R$attr: int checkboxStyle +james.adaptiveicon.R$layout: int select_dialog_item_material +com.jaredrummler.android.colorpicker.R$attr: int buttonIconDimen +com.google.android.material.R$styleable: int FloatingActionButton_backgroundTint +com.github.rahatarmanahmed.cpv.CircularProgressView$3: CircularProgressView$3(com.github.rahatarmanahmed.cpv.CircularProgressView) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Primary +wangdaye.com.geometricweather.R$attr: int trackColorActive +wangdaye.com.geometricweather.R$id: int widget_clock_day +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_maxHeight +wangdaye.com.geometricweather.R$drawable: int notif_temp_33 +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTextHelper +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconTintMode +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Borderless +androidx.hilt.lifecycle.R$string +com.bumptech.glide.Priority: com.bumptech.glide.Priority LOW +james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_enabled +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored +androidx.work.impl.workers.CombineContinuationsWorker +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_weight +okhttp3.internal.http2.Http2Stream$FramingSink +okhttp3.internal.http2.Huffman$Node +com.google.android.material.R$attr: int drawableEndCompat +wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_xml +androidx.vectordrawable.R$id: int accessibility_custom_action_9 +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: KeyguardExternalViewProviderService$Provider$ProviderImpl$4(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String,int) +com.xw.repo.bubbleseekbar.R$attr: int progressBarPadding +androidx.preference.R$attr: int showAsAction +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: void onFinishedProcessing(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_commitIcon +com.google.android.material.R$anim: int design_bottom_sheet_slide_out +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_SearchResult_Title +com.google.android.material.R$dimen: int design_snackbar_max_width +androidx.constraintlayout.widget.R$attr: int homeLayout +androidx.constraintlayout.widget.R$attr: int closeIcon +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource source +james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context) +com.turingtechnologies.materialscrollbar.R$color: int abc_background_cache_hint_selector_material_light +androidx.hilt.lifecycle.R$color: int notification_action_color_filter +androidx.preference.R$dimen: int abc_text_size_display_2_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum() +wangdaye.com.geometricweather.db.entities.LocationEntity +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context,android.util.AttributeSet) +org.greenrobot.greendao.AbstractDao: java.lang.String[] getNonPkColumns() +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_font +com.xw.repo.bubbleseekbar.R$attr: int titleMarginStart +com.xw.repo.bubbleseekbar.R$id: int search_mag_icon +androidx.appcompat.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +com.google.android.material.R$style: int Widget_AppCompat_SearchView_ActionBar +cyanogenmod.app.CustomTile$ExpandedStyle: void setBuilder(cyanogenmod.app.CustomTile$Builder) +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context,android.util.AttributeSet) +com.bumptech.glide.Registry$NoImageHeaderParserException +androidx.appcompat.widget.AppCompatEditText +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: void run() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPressure(java.lang.Float) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.activity.R$styleable: int GradientColor_android_startColor +androidx.appcompat.resources.R$id: int actions +wangdaye.com.geometricweather.R$drawable: int shortcuts_thunderstorm_foreground +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar_Colored +com.google.android.material.R$dimen: int mtrl_calendar_title_baseline_to_top_fullscreen +retrofit2.Retrofit: java.util.Map serviceMethodCache +wangdaye.com.geometricweather.main.dialogs.BackgroundLocationDialog +org.greenrobot.greendao.AbstractDao: void attachEntity(java.lang.Object,java.lang.Object,boolean) +com.xw.repo.bubbleseekbar.R$attr: int actionModeShareDrawable +wangdaye.com.geometricweather.R$color: int abc_tint_default +okhttp3.internal.ws.WebSocketProtocol: int PAYLOAD_SHORT +io.reactivex.internal.observers.LambdaObserver +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onSubscribe(io.reactivex.disposables.Disposable) +retrofit2.adapter.rxjava2.BodyObservable: void subscribeActual(io.reactivex.Observer) +wangdaye.com.geometricweather.R$drawable: int widget_multi_city +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: long idx +com.google.android.material.R$attr: int actionProviderClass +james.adaptiveicon.R$dimen: int tooltip_precise_anchor_threshold +com.google.android.material.R$attr: int telltales_tailColor +cyanogenmod.themes.IThemeService$Stub$Proxy: void removeUpdates(cyanogenmod.themes.IThemeChangeListener) +androidx.coordinatorlayout.R$attr: int layout_dodgeInsetEdges +com.jaredrummler.android.colorpicker.R$styleable: int[] CheckBoxPreference +cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weatherservice.IWeatherProviderServiceClient mClient +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColor +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String pubTime +com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat_Light +james.adaptiveicon.R$styleable: int AppCompatTheme_editTextColor +com.google.android.material.card.MaterialCardView: void setCheckedIconSize(int) +androidx.constraintlayout.widget.R$id: int decelerate +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.preference.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Bridge +androidx.swiperefreshlayout.widget.SwipeRefreshLayout +androidx.activity.R$id: int italic +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getPm25Color(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: void setUnit(java.lang.String) +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onError(java.lang.Throwable) +android.didikee.donate.R$id: int icon_group +androidx.viewpager.widget.PagerTitleStrip: int getTextSpacing() +androidx.constraintlayout.widget.R$attr: int actionBarStyle +androidx.appcompat.widget.ViewStubCompat: int getInflatedId() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_focused_z +com.google.android.material.R$style: int Widget_AppCompat_Spinner_DropDown +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul24H +james.adaptiveicon.R$styleable: int Toolbar_collapseIcon +androidx.constraintlayout.widget.R$attr: int titleMarginStart +wangdaye.com.geometricweather.R$string: int material_timepicker_select_time +androidx.constraintlayout.widget.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Iterable,boolean) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display4 +androidx.customview.R$id: int notification_background +wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line1_tail_interpolator +androidx.preference.R$attr: int actionBarTabTextStyle +androidx.core.R$dimen: int compat_notification_large_icon_max_height +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: ObservableRepeat$RepeatObserver(io.reactivex.Observer,long,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableCompatState: int getChangingConfigurations() +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial Imperial com.google.android.material.R$attr: int windowActionBar -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.Boolean) -android.didikee.donate.R$string: int abc_capital_on -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List area -androidx.constraintlayout.widget.R$drawable: int abc_list_pressed_holo_light -retrofit2.RequestFactory: boolean isFormEncoded -androidx.preference.R$attr: int thumbTextPadding -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableLeft -androidx.hilt.R$style -androidx.dynamicanimation.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String value -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.util.List value -wangdaye.com.geometricweather.R$styleable: int Constraint_android_alpha -wangdaye.com.geometricweather.R$attr: int fastScrollHorizontalThumbDrawable -androidx.lifecycle.ComputableLiveData: androidx.lifecycle.LiveData mLiveData -androidx.constraintlayout.widget.R$styleable: int Transform_android_scaleX -wangdaye.com.geometricweather.R$attr: int switchPreferenceStyle -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: IAppSuggestManager$Stub$Proxy(android.os.IBinder) -okio.Buffer: okio.Segment writableSegment(int) -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_alphabeticShortcut -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_tileMode -androidx.preference.R$styleable: int MenuView_android_itemIconDisabledAlpha -androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedWidthMinor -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int UNKNOWN -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String INSTALL_STATE -androidx.work.R$styleable: int FontFamilyFont_android_fontStyle -okhttp3.CipherSuite: CipherSuite(java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntity: WeatherEntity() +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.Observer downstream +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +wangdaye.com.geometricweather.R$layout: int widget_clock_day_temp +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider mExternalViewProvider +androidx.preference.R$style: int Theme_AppCompat_Light_NoActionBar +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemHorizontalTranslationEnabled(boolean) +androidx.preference.R$attr: int contentDescription +androidx.work.R$integer: int status_bar_notification_info_maxnum +com.google.android.material.R$drawable: int tooltip_frame_light +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State mState +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf +com.jaredrummler.android.colorpicker.R$attr: int cpv_dialogTitle +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontWeight +androidx.hilt.lifecycle.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: void setTo(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxBackgroundColor +androidx.legacy.coreutils.R$layout: int notification_action +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display4 +okhttp3.internal.http2.Http2Reader: okhttp3.internal.http2.Http2Reader$ContinuationSource continuation +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationY +wangdaye.com.geometricweather.R$id: int action_bar_container +androidx.lifecycle.LiveData$AlwaysActiveObserver: boolean shouldBeActive() +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_13 +com.google.gson.stream.JsonReader: char[] NON_EXECUTE_PREFIX +androidx.coordinatorlayout.R$color: int ripple_material_light +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeTextType +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button +android.didikee.donate.R$dimen: int abc_dialog_list_padding_top_no_title +wangdaye.com.geometricweather.R$id: int widget_remote_card +com.google.android.material.R$attr: int itemSpacing +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver parent +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX getTemperature() +com.google.android.material.slider.RangeSlider: void setThumbRadiusResource(int) +wangdaye.com.geometricweather.R$styleable: int Chip_checkedIcon +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarSize +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_DialogWhenLarge +com.google.android.material.R$styleable: int ProgressIndicator_indicatorType +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_creator +androidx.lifecycle.extensions.R$attr: int fontProviderPackage +androidx.lifecycle.extensions.R$attr: int fontProviderAuthority +james.adaptiveicon.R$styleable: int AppCompatTheme_windowNoTitle +androidx.constraintlayout.widget.R$id: int autoCompleteToStart +com.jaredrummler.android.colorpicker.R$attr: int spanCount +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec supportedSpec(javax.net.ssl.SSLSocket,boolean) +okhttp3.internal.http2.Settings: Settings() +com.google.android.material.bottomappbar.BottomAppBar: float getFabCradleRoundedCornerRadius() +wangdaye.com.geometricweather.R$string: int settings_title_card_order +okhttp3.internal.connection.StreamAllocation: void noNewStreams() +wangdaye.com.geometricweather.R$attr: int drawPath +androidx.activity.R$id: int accessibility_custom_action_29 +androidx.recyclerview.widget.RecyclerView: void setAdapter(androidx.recyclerview.widget.RecyclerView$Adapter) +com.google.android.material.R$styleable: int[] KeyPosition +android.didikee.donate.R$styleable: int TextAppearance_android_textColorLink +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void clear() +androidx.preference.R$attr: int arrowHeadLength +james.adaptiveicon.R$attr: int colorControlHighlight +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_48dp +james.adaptiveicon.R$color: int secondary_text_default_material_light +okhttp3.internal.ws.RealWebSocket$1: void run() +okhttp3.HttpUrl: java.lang.String topPrivateDomain() +okio.Buffer: okio.ByteString readByteString(long) +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type BOTTOM +androidx.appcompat.resources.R$styleable: int GradientColor_android_centerX +androidx.legacy.coreutils.R$id: int normal +androidx.constraintlayout.widget.R$color: int switch_thumb_normal_material_dark +com.google.android.material.circularreveal.cardview.CircularRevealCardView: CircularRevealCardView(android.content.Context) +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: MinutelyEntityDao(org.greenrobot.greendao.internal.DaoConfig) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: java.lang.String Localized +james.adaptiveicon.R$attr: int buttonTint +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_showText +james.adaptiveicon.R$drawable: int abc_item_background_holo_light +james.adaptiveicon.R$drawable: int abc_ratingbar_material +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryInnerObserver boundaryObserver +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_search +androidx.appcompat.R$styleable: int SwitchCompat_splitTrack +androidx.constraintlayout.widget.R$id: int action_context_bar +okhttp3.Request: java.lang.String header(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_primary_mtrl_alpha +androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_material +wangdaye.com.geometricweather.R$id: int grassIcon +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$attr: int searchIcon +com.google.android.material.R$dimen: int abc_text_size_large_material +androidx.appcompat.R$styleable: int ActionBar_navigationMode +okhttp3.internal.http2.Http2Writer: void data(boolean,int,okio.Buffer,int) +wangdaye.com.geometricweather.R$styleable: int Preference_defaultValue +androidx.appcompat.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String moonPhaseDescription +com.xw.repo.bubbleseekbar.R$attr: int actionModePasteDrawable +androidx.cardview.R$styleable: int CardView_android_minWidth +com.xw.repo.BubbleSeekBar: void setSecondTrackColor(int) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCloseDrawable +androidx.hilt.work.R$id: int accessibility_custom_action_22 +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar +james.adaptiveicon.R$attr: int titleTextStyle io.reactivex.Observable: io.reactivex.Observable switchOnNext(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.Long getId() -com.jaredrummler.android.colorpicker.R$attr: int dialogTitle -io.reactivex.Observable: io.reactivex.Observable delaySubscription(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$style: int Widget_Support_CoordinatorLayout -androidx.preference.R$drawable: int abc_edit_text_material -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText -androidx.constraintlayout.motion.widget.MotionHelper: void setProgress(float) -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleContentDescription(int) -james.adaptiveicon.R$attr: int dialogPreferredPadding -wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaContainer -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: java.lang.Throwable error -james.adaptiveicon.R$attr: int background -androidx.preference.R$style: int Base_Widget_AppCompat_ListView_Menu -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial() -androidx.vectordrawable.R$id: int accessibility_custom_action_27 -com.google.android.material.snackbar.SnackbarContentLayout: SnackbarContentLayout(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -cyanogenmod.app.BaseLiveLockManagerService: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -androidx.recyclerview.R$string: int status_bar_notification_info_overflow -android.didikee.donate.R$attr: int checkedTextViewStyle -wangdaye.com.geometricweather.R$drawable: int weather_sleet_3 -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,byte[],int,int) -cyanogenmod.app.Profile: int describeContents() -com.turingtechnologies.materialscrollbar.R$animator: int design_appbar_state_list_animator -androidx.work.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.R$attr: int disableDependentsState -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -android.didikee.donate.R$style: int ThemeOverlay_AppCompat -com.turingtechnologies.materialscrollbar.R$attr: int chipIconEnabled -wangdaye.com.geometricweather.R$color: int notification_background_o -wangdaye.com.geometricweather.R$styleable: int Constraint_transitionEasing -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_weight -wangdaye.com.geometricweather.R$integer: int mtrl_calendar_year_selector_span -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -com.xw.repo.BubbleSeekBar: void setThumbColor(int) -android.didikee.donate.R$layout -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_alert -cyanogenmod.providers.CMSettings$System: boolean shouldInterceptSystemProvider(java.lang.String) -okhttp3.OkHttpClient: java.util.List DEFAULT_PROTOCOLS -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPreDestroyed(android.app.Activity) -com.google.android.material.R$style: int Widget_AppCompat_Light_ActivityChooserView -james.adaptiveicon.R$id: int italic -com.xw.repo.bubbleseekbar.R$attr: int colorControlHighlight -com.jaredrummler.android.colorpicker.R$integer -wangdaye.com.geometricweather.R$styleable: int[] Spinner -com.google.android.material.R$styleable: int[] AppCompatTextHelper -okhttp3.internal.http2.Http2Stream$FramingSink: boolean $assertionsDisabled -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListPopupWindow -androidx.preference.R$styleable: int MenuItem_tooltipText -wangdaye.com.geometricweather.R$string: int settings_title_notification -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias -okhttp3.Cache$CacheResponseBody$1: void close() -wangdaye.com.geometricweather.R$color: int abc_hint_foreground_material_light -androidx.constraintlayout.widget.R$styleable: int Constraint_android_scaleY -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Pm25 -androidx.constraintlayout.widget.R$dimen: int hint_alpha_material_light -wangdaye.com.geometricweather.common.basic.GeoDialog: GeoDialog() -com.google.android.material.R$attr: int layout_constraintEnd_toEndOf -cyanogenmod.app.Profile$ProfileTrigger$1: cyanogenmod.app.Profile$ProfileTrigger[] newArray(int) -com.google.gson.stream.JsonWriter: void writeDeferredName() -okhttp3.internal.http2.Http2Connection$Builder: boolean client -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_MENU_LONG_PRESS_ACTION_VALIDATOR -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_IME_SWITCHER -androidx.customview.R$drawable: int notification_bg_normal -com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreference_Material -wangdaye.com.geometricweather.R$xml: int perference_appearance -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String from -com.google.android.material.R$id: int path -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_Solid -androidx.coordinatorlayout.R$dimen: int notification_big_circle_margin -com.google.android.material.R$attr: int fabAlignmentMode -androidx.constraintlayout.widget.R$id: int spread_inside -com.google.android.material.R$attr: int textAppearanceSearchResultSubtitle -retrofit2.Retrofit: retrofit2.Converter stringConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) -io.reactivex.internal.util.NotificationLite$DisposableNotification: java.lang.String toString() -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: long serialVersionUID -cyanogenmod.hardware.CMHardwareManager: java.lang.String getUniqueDeviceId() -cyanogenmod.app.ICMTelephonyManager: void setSubState(int,boolean) -cyanogenmod.weatherservice.IWeatherProviderService$Stub: IWeatherProviderService$Stub() -cyanogenmod.themes.IThemeProcessingListener -androidx.constraintlayout.widget.R$layout: int abc_activity_chooser_view_list_item -androidx.recyclerview.R$attr: int fontWeight -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: java.util.concurrent.Callable bufferSupplier -com.xw.repo.bubbleseekbar.R$attr: int listItemLayout -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain -androidx.hilt.R$anim: int fragment_close_exit -com.google.android.material.R$attr: int colorOnSurface -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_ADJUST_SOUNDS_ENABLED_VALIDATOR -androidx.fragment.app.BackStackRecord -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_EditText -com.google.android.material.R$styleable: int ConstraintSet_chainUseRtl -wangdaye.com.geometricweather.R$attr: int triggerReceiver -cyanogenmod.externalviews.KeyguardExternalView: void unregisterKeyguardExternalViewCallback(cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks) -io.reactivex.internal.util.VolatileSizeArrayList: boolean addAll(java.util.Collection) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: org.reactivestreams.Subscription upstream -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_corner_radius -okhttp3.RequestBody: RequestBody() -okio.Timeout: void throwIfReached() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_homeAsUpIndicator -cyanogenmod.hardware.CMHardwareManager: boolean setVibratorIntensity(int) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: java.lang.String getAddress() -androidx.swiperefreshlayout.R$id: int tag_accessibility_actions -androidx.appcompat.R$styleable: int MenuItem_android_id -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -androidx.preference.R$drawable: int abc_list_focused_holo -androidx.transition.R$id: R$id() -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void setInteractivity(boolean) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String season -wangdaye.com.geometricweather.R$drawable: int notif_temp_23 -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean isPrecipitation() -androidx.lifecycle.LifecycleRegistry -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: void run() -androidx.appcompat.widget.FitWindowsLinearLayout: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_height -cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String getPackageName() -cyanogenmod.app.suggest.IAppSuggestManager$Stub: int TRANSACTION_handles_0 -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Title -james.adaptiveicon.R$attr: int showTitle -androidx.constraintlayout.widget.R$id: int line3 -wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvLevel(java.lang.String) -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_overflow_material -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.R$attr: int currentState -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: BaiduIPLocationResult$ContentBean() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_android_textAppearance -androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_top_material -androidx.preference.R$id: int off -androidx.appcompat.R$attr: int textLocale -com.google.android.material.R$styleable: int FloatingActionButton_rippleColor -com.google.android.material.R$attr: int headerLayout +androidx.preference.R$attr: int windowNoTitle +com.google.android.material.R$styleable: int[] Layout +cyanogenmod.app.CustomTile$ExpandedStyle: int REMOTE_STYLE +wangdaye.com.geometricweather.R$attr: int ensureMinTouchTargetSize +androidx.preference.R$dimen: int item_touch_helper_swipe_escape_max_velocity +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +cyanogenmod.app.BaseLiveLockManagerService$1: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +com.google.android.material.R$styleable: int CustomAttribute_customStringValue +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_backgroundSplit +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogIcon +okhttp3.internal.cache.DiskLruCache$1 +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog_Alert +okio.HashingSource: okio.ByteString hash() +com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: void setStatus(int) +androidx.preference.R$drawable: int preference_list_divider_material +io.reactivex.internal.subscriptions.SubscriptionHelper: void reportMoreProduced(long) +okio.Buffer: okio.Buffer buffer() +androidx.hilt.lifecycle.R$attr: int fontWeight +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeight +com.google.android.material.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus +androidx.preference.R$styleable: int SwitchCompat_showText +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_DES_CBC_SHA +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sunrise_sunset +com.xw.repo.bubbleseekbar.R$id: int bottom +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_width +okhttp3.TlsVersion: okhttp3.TlsVersion SSL_3_0 +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_stacked_tab_max_width +cyanogenmod.profiles.AirplaneModeSettings$BooleanState +androidx.preference.R$attr: int alphabeticModifiers +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +cyanogenmod.externalviews.ExternalViewProperties: int getHeight() +androidx.appcompat.R$style: int Widget_AppCompat_ProgressBar +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_clear_material +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: boolean mObserving +androidx.hilt.work.R$id: int title +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LIVE_LOCK_SCREEN_PREVIEW +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer LEFT_CLOSE +androidx.appcompat.R$drawable: int abc_list_selector_disabled_holo_dark +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle +com.google.android.material.button.MaterialButton: int getIconGravity() +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItem +wangdaye.com.geometricweather.R$style: int title_text +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation access$402(cyanogenmod.weather.RequestInfo,cyanogenmod.weather.WeatherLocation) +wangdaye.com.geometricweather.main.dialogs.BackgroundLocationDialog: BackgroundLocationDialog() +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: boolean mCanceled +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginRight +com.google.android.material.R$styleable: int[] MaterialCalendarItem +retrofit2.RequestFactory$Builder: boolean gotPath +com.google.android.material.R$color: int material_on_surface_emphasis_high_type +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver +io.reactivex.internal.subscribers.DeferredScalarSubscriber: long serialVersionUID +cyanogenmod.util.ColorUtils: double[] sColorTable +wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_details_setting +com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_layout +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +wangdaye.com.geometricweather.R$dimen: int material_timepicker_dialog_buttons_margin_top +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: int hashCode() +com.xw.repo.bubbleseekbar.R$attr: int buttonStyleSmall +com.turingtechnologies.materialscrollbar.R$attr: int navigationViewStyle +wangdaye.com.geometricweather.remoteviews.config.Hilt_MultiCityWidgetConfigActivity +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_strokeColor +com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$drawable: int abc_list_divider_mtrl_alpha +io.reactivex.Observable: io.reactivex.Observable zipArray(io.reactivex.functions.Function,boolean,int,io.reactivex.ObservableSource[]) +androidx.appcompat.R$styleable: int ActionMode_backgroundSplit +androidx.preference.R$style: int Base_DialogWindowTitleBackground_AppCompat +com.google.android.material.R$layout: int abc_popup_menu_header_item_layout +android.support.v4.os.IResultReceiver$Stub$Proxy: android.os.IBinder mRemote +androidx.constraintlayout.widget.R$attr: int crossfade +androidx.appcompat.R$color: int bright_foreground_inverse_material_light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableBottom +com.xw.repo.bubbleseekbar.R$styleable: int View_android_focusable +com.google.android.material.R$styleable: int ConstraintSet_flow_lastVerticalStyle +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: long endValidityTime +okio.SegmentPool: SegmentPool() +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light +wangdaye.com.geometricweather.R$drawable: int widget_card_light_100 +com.google.android.material.R$style: int Base_AlertDialog_AppCompat +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: boolean isCanceled() +io.reactivex.internal.disposables.DisposableHelper: boolean set(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial Imperial +com.google.android.material.snackbar.SnackbarContentLayout: void setMaxInlineActionWidth(int) +okhttp3.internal.cache2.Relay: boolean isClosed() +okhttp3.Request$Builder: okhttp3.Request$Builder url(java.net.URL) +androidx.constraintlayout.motion.widget.MotionHelper +androidx.vectordrawable.R$id: int accessibility_custom_action_14 +james.adaptiveicon.R$styleable: int[] SearchView +wangdaye.com.geometricweather.R$attr: int persistent +wangdaye.com.geometricweather.R$attr: int msb_textColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean wind +wangdaye.com.geometricweather.R$string: int settings_summary_appearance +androidx.appcompat.R$style: int TextAppearance_AppCompat_Display1 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPopupWindowStyle +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextAppearanceInactive(int) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_Icon +wangdaye.com.geometricweather.R$attr: int minTouchTargetSize +com.turingtechnologies.materialscrollbar.R$attr: int backgroundTint +okio.GzipSource: byte FNAME +wangdaye.com.geometricweather.R$string: int mtrl_exceed_max_badge_number_suffix +androidx.recyclerview.R$dimen: int notification_top_pad_large_text +androidx.appcompat.R$styleable: int Toolbar_titleTextColor +androidx.appcompat.R$attr: int listPreferredItemPaddingLeft +androidx.constraintlayout.motion.widget.MotionLayout: int getEndState() +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit PPCM +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_1_material +com.xw.repo.bubbleseekbar.R$attr: int arrowHeadLength +com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_default +wangdaye.com.geometricweather.R$transition: int search_activity_enter +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.R$dimen: int abc_alert_dialog_button_dimen +androidx.hilt.R$style +james.adaptiveicon.R$styleable: int MenuView_android_itemTextAppearance +com.google.android.material.slider.RangeSlider: int getThumbRadius() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitationDuration +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pm25 +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardMaxElevation +androidx.vectordrawable.animated.R$id: int right_side +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayColorCalibration(int[]) +com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getBackgroundTintMode() +wangdaye.com.geometricweather.R$styleable: int Motion_drawPath +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupWindow +okio.ForwardingTimeout: long timeoutNanos() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_SeekBar +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarWidgetTheme +com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetBottom +androidx.constraintlayout.widget.R$attr: int actionModePopupWindowStyle +wangdaye.com.geometricweather.R$styleable: int[] MotionLayout +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getTotalPrecipitation() +com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_android_button +com.google.android.material.R$attr: int tickColorInactive +retrofit2.OkHttpCall: void cancel() +cyanogenmod.weather.WeatherInfo: int mTempUnit +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotationX +wangdaye.com.geometricweather.R$attr: int expandedTitleMarginEnd +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.database.Database db +androidx.lifecycle.Observer: void onChanged(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX +com.google.android.material.R$styleable: int ActionBar_elevation +wangdaye.com.geometricweather.common.basic.models.weather.Alert +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemTextColor +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +androidx.work.R$color: int secondary_text_default_material_light +com.google.android.material.R$styleable: int MaterialButton_shapeAppearanceOverlay +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonStyleSmall +okhttp3.internal.connection.StreamAllocation: okhttp3.Address address +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +james.adaptiveicon.R$style: int Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.R$anim: int fragment_close_enter +com.google.android.material.R$id: int material_label +android.didikee.donate.R$styleable: int TextAppearance_android_shadowRadius +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar_Small +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int INTERRUPTED +androidx.customview.R$id: int right_side +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_thumb_text +com.google.android.material.R$color: int abc_secondary_text_material_light +androidx.customview.R$id: int right_icon +okio.Buffer: void readFrom(java.io.InputStream,long,boolean) +androidx.constraintlayout.widget.R$styleable: int[] Variant +com.jaredrummler.android.colorpicker.R$id: int radio +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.util.Date getDate() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: DailyEntityDao$Properties() +wangdaye.com.geometricweather.R$string: int wind_1 +com.jaredrummler.android.colorpicker.R$dimen: int abc_control_corner_material +androidx.transition.R$drawable: int notification_bg_low_pressed +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: AccuCurrentResult$Wind$Speed$Metric() +wangdaye.com.geometricweather.search.SearchActivityViewModel +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Switch +james.adaptiveicon.R$attr: int progressBarPadding +androidx.preference.R$styleable: int[] StateListDrawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setNo2Desc(java.lang.String) +androidx.appcompat.R$drawable: int abc_text_select_handle_middle_mtrl_light +com.turingtechnologies.materialscrollbar.R$id: int notification_main_column +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX) +com.jaredrummler.android.colorpicker.R$string: int abc_activity_chooser_view_see_all +androidx.constraintlayout.widget.R$drawable: int abc_text_cursor_material +wangdaye.com.geometricweather.R$attr: int buttonCompat +okhttp3.internal.http2.Settings: void merge(okhttp3.internal.http2.Settings) +wangdaye.com.geometricweather.R$style: int TestThemeWithLineHeightDisabled +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) +androidx.work.R$attr: int font +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner +androidx.preference.R$drawable: int abc_text_select_handle_middle_mtrl_light +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: ObservableFlatMapSingle$FlatMapSingleObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int FIRED_STATE +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeTopLeft +cyanogenmod.weatherservice.IWeatherProviderService: void cancelRequest(int) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: double gust +androidx.lifecycle.LiveData: int mVersion +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActivityChooserView +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.fuseable.SimpleQueue queue +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Large_Inverse +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getLogoDescription() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitationDuration(java.lang.Float) +androidx.activity.R$id: int notification_background +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarWidgetTheme +com.google.android.material.R$attr: int motion_postLayoutCollision +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitationDuration() +androidx.constraintlayout.widget.R$attr: int actionBarWidgetTheme +com.jaredrummler.android.colorpicker.R$color: int abc_tint_seek_thumb +retrofit2.BuiltInConverters$RequestBodyConverter +retrofit2.OptionalConverterFactory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +androidx.preference.R$anim: int abc_popup_enter +androidx.lifecycle.ViewModel: void onCleared() +androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr +okhttp3.internal.cache.DiskLruCache$Editor: DiskLruCache$Editor(okhttp3.internal.cache.DiskLruCache,okhttp3.internal.cache.DiskLruCache$Entry) +com.google.android.material.R$styleable: int Layout_layout_constraintBaseline_creator +wangdaye.com.geometricweather.R$attr: int contentInsetStart +wangdaye.com.geometricweather.R$string: int key_dark_mode +androidx.core.R$drawable: int notification_template_icon_low_bg +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_INTENSITY_INDEX +james.adaptiveicon.R$styleable: int Toolbar_contentInsetStartWithNavigation +androidx.appcompat.R$styleable: int FontFamilyFont_android_fontVariationSettings +cyanogenmod.providers.CMSettings$Secure: java.lang.String KILL_APP_LONGPRESS_BACK +com.google.android.material.navigation.NavigationView$SavedState +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getLevel() +androidx.vectordrawable.animated.R$layout: int notification_action_tombstone +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemPaddingLeft +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue getOrCreateQueue() +androidx.preference.R$styleable: int MenuItem_actionLayout +androidx.cardview.R$attr: int cardElevation +wangdaye.com.geometricweather.R$drawable: int design_bottom_navigation_item_background +cyanogenmod.app.ProfileManager: void updateProfile(cyanogenmod.app.Profile) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_bias +okhttp3.Route: boolean requiresTunnel() +com.jaredrummler.android.colorpicker.R$id: int notification_background +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.appcompat.R$style: int Widget_AppCompat_ActionButton +androidx.lifecycle.ProcessLifecycleOwner$2: void onResume() +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableEnd +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xntd +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date sunSetDate +io.reactivex.Observable: io.reactivex.Observable concatArrayEagerDelayError(int,int,io.reactivex.ObservableSource[]) +cyanogenmod.app.CustomTile$ExpandedStyle: int NO_STYLE +retrofit2.ParameterHandler$Field: ParameterHandler$Field(java.lang.String,retrofit2.Converter,boolean) +com.jaredrummler.android.colorpicker.R$attr: int windowActionBarOverlay +androidx.appcompat.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.R$attr: int tint +wangdaye.com.geometricweather.R$attr: int yearTodayStyle +wangdaye.com.geometricweather.R$attr: int counterOverflowTextColor +okhttp3.internal.cache.CacheInterceptor$1: boolean cacheRequestClosed +androidx.drawerlayout.widget.DrawerLayout: float getDrawerElevation() +com.google.android.material.R$anim: int abc_slide_out_top +com.bumptech.glide.integration.okhttp.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.DailyEntity) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onComplete() +io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future) +androidx.lifecycle.MediatorLiveData: MediatorLiveData() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService get() +androidx.preference.ListPreferenceDialogFragmentCompat: ListPreferenceDialogFragmentCompat() +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textFontWeight +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getCounterTextColor() +androidx.appcompat.R$dimen: int compat_button_padding_horizontal_material +androidx.appcompat.resources.R$attr: int fontProviderCerts +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +com.google.android.material.R$attr: int background +com.google.android.material.R$style: int ShapeAppearanceOverlay_TopLeftCut +okhttp3.logging.LoggingEventListener: void callEnd(okhttp3.Call) +wangdaye.com.geometricweather.R$id: int notification_big_temp_1 +james.adaptiveicon.R$layout: int abc_list_menu_item_icon +androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_checkbox +androidx.constraintlayout.widget.R$color: int material_grey_100 +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onAttach_0 +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void dispose() +androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginBottom +okhttp3.internal.http2.Http2: byte TYPE_PRIORITY +okhttp3.ConnectionPool: void put(okhttp3.internal.connection.RealConnection) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String getFrom() +okhttp3.internal.ws.RealWebSocket: RealWebSocket(okhttp3.Request,okhttp3.WebSocketListener,java.util.Random,long) +com.xw.repo.bubbleseekbar.R$string: int abc_prepend_shortcut_label +cyanogenmod.content.Intent: java.lang.String ACTION_APP_FAILURE +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: java.util.concurrent.atomic.AtomicReference other +wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_begin +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderFetchStrategy +com.google.android.material.R$styleable: int Toolbar_title +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_listLayout +cyanogenmod.app.IPartnerInterface$Stub: cyanogenmod.app.IPartnerInterface asInterface(android.os.IBinder) +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowColor +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +com.xw.repo.bubbleseekbar.R$dimen: int notification_small_icon_background_padding +com.google.android.material.R$styleable: int MaterialButton_iconSize +androidx.appcompat.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String zone +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMode +okio.RealBufferedSource$1: int read() +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableEnd +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getApparentTemperature() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +james.adaptiveicon.R$id: int italic +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) +com.turingtechnologies.materialscrollbar.R$attr: int measureWithLargestChild +com.jaredrummler.android.colorpicker.R$anim: int abc_slide_in_top +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitationProbability +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_item_horizontal_padding +io.reactivex.Observable: io.reactivex.Single count() +okio.Okio: boolean isAndroidGetsocknameError(java.lang.AssertionError) +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setWeatherSource(java.lang.String) +wangdaye.com.geometricweather.R$attr: int chipMinTouchTargetSize +com.google.android.material.R$styleable: int Constraint_android_layout_marginLeft +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline4 +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: boolean isDisposed() +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_padding_end_material +androidx.activity.R$id: int text2 +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level[] values() +cyanogenmod.externalviews.KeyguardExternalView$3: boolean val$visible +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: IAppSuggestManager$Stub$Proxy(android.os.IBinder) +androidx.appcompat.R$color: int abc_btn_colored_text_material +androidx.preference.R$attr: int initialActivityCount +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date getSetDate() +cyanogenmod.app.ProfileManager: java.lang.String[] getProfileNames() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setZh_CN(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedHeightMinor +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTheme +james.adaptiveicon.R$color: int background_floating_material_dark retrofit2.OkHttpCall$ExceptionCatchingResponseBody -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_67 -com.google.android.material.chip.Chip: void setCheckedIconTintResource(int) -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: long serialVersionUID -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: int status -okio.RealBufferedSink: okio.BufferedSink writeUtf8(java.lang.String,int,int) -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_elevation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean yesterday -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_122 -androidx.constraintlayout.widget.R$attr: int actionModeCopyDrawable -cyanogenmod.themes.IThemeService: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleTextColor -wangdaye.com.geometricweather.R$string: int key_precipitation_notification_switch -okhttp3.internal.http2.Http2Connection: void start() -wangdaye.com.geometricweather.R$drawable: int weather_hail_3 -wangdaye.com.geometricweather.R$dimen: int widget_grid_4 -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analogContainer_light -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider access$002(cyanogenmod.externalviews.KeyguardExternalView,cyanogenmod.externalviews.IKeyguardExternalViewProvider) -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_android_indeterminate -android.didikee.donate.R$style: int Widget_AppCompat_SearchView -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitationProbability -com.jaredrummler.android.colorpicker.R$attr: int tickMarkTint -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -androidx.viewpager2.R$id: int accessibility_custom_action_10 -androidx.work.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIcon -org.greenrobot.greendao.AbstractDao: java.lang.Object getKeyVerified(java.lang.Object) -androidx.constraintlayout.widget.R$attr: int ratingBarStyle -androidx.fragment.R$dimen: int notification_main_column_padding_top -cyanogenmod.hardware.CMHardwareManager: int[] getDisplayGammaCalibrationArray(int) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_chip_text_size -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_dither -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout -androidx.loader.R$layout: int notification_action -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onSucceed(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$attr: int panelBackground -androidx.transition.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.R$attr: int imageButtonStyle -androidx.recyclerview.R$dimen: int compat_notification_large_icon_max_height -androidx.preference.R$style: int Base_Widget_AppCompat_Light_PopupMenu -io.reactivex.Observable: io.reactivex.Observable using(java.util.concurrent.Callable,io.reactivex.functions.Function,io.reactivex.functions.Consumer) -androidx.appcompat.resources.R$id: int accessibility_custom_action_29 -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_text_size -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogIcon -com.turingtechnologies.materialscrollbar.TouchScrollBar: TouchScrollBar(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday() -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: boolean inCompletable -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_negativeButtonText +androidx.constraintlayout.widget.R$drawable: int abc_action_bar_item_background_material +com.google.android.material.R$id: int unlabeled +androidx.constraintlayout.widget.R$attr: int commitIcon +android.didikee.donate.R$styleable: int TextAppearance_fontVariationSettings +androidx.constraintlayout.widget.R$color: int dim_foreground_material_light +com.google.android.material.R$dimen: int mtrl_calendar_navigation_height +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit MPS +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onComplete() +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_dividerHeight +james.adaptiveicon.R$id: int notification_background +cyanogenmod.providers.CMSettings$Secure: java.lang.String ADVANCED_REBOOT +com.google.android.material.R$styleable: int ChipGroup_checkedChip +okhttp3.Cache +okhttp3.internal.http2.Http2Connection: void shutdown(okhttp3.internal.http2.ErrorCode) +cyanogenmod.app.CMStatusBarManager: void removeTile(java.lang.String,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum +androidx.cardview.R$attr: int contentPaddingBottom +com.google.android.material.R$styleable: int AppBarLayoutStates_state_collapsed +androidx.preference.R$attr: int summaryOff +com.google.android.material.chip.ChipGroup: void setChipSpacingResource(int) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.R$styleable: int[] Motion +okio.AsyncTimeout$1 +com.google.android.material.chip.ChipGroup: void setCheckedId(int) +okhttp3.internal.http2.Http2Reader$ContinuationSource: void close() +com.google.android.material.R$attr: int circleRadius +com.google.android.material.R$attr: int autoTransition +okhttp3.RealCall: void cancel() +james.adaptiveicon.R$styleable: int MenuItem_android_title +androidx.work.R$styleable: int ColorStateListItem_android_alpha +com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +androidx.viewpager.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Light_ActionBar_Solid +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_Test +com.turingtechnologies.materialscrollbar.R$attr: int layout +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_menu +com.google.android.material.R$styleable: int Layout_chainUseRtl +android.didikee.donate.R$styleable: int Toolbar_titleMargin +cyanogenmod.app.suggest.IAppSuggestManager$Stub: android.os.IBinder asBinder() +com.google.android.material.R$id: R$id() +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog +james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +android.didikee.donate.R$styleable: int ActionBar_subtitle +com.google.android.material.R$id: int mtrl_calendar_text_input_frame +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +wangdaye.com.geometricweather.R$attr: int autoSizeTextType +com.google.android.material.R$attr: int materialButtonToggleGroupStyle +com.jaredrummler.android.colorpicker.R$attr: int colorAccent +androidx.preference.R$attr: int drawableTopCompat +cyanogenmod.app.ICustomTileListener: void onListenerConnected() +com.google.android.material.R$string: int abc_menu_meta_shortcut_label +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: io.reactivex.subjects.UnicastSubject this$0 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: AccuCurrentResult$DewPoint$Imperial() +androidx.constraintlayout.widget.R$bool: int abc_config_actionMenuItemAllCaps +androidx.appcompat.app.AppCompatDelegateImpl$PanelFeatureState$SavedState +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event valueOf(java.lang.String) +androidx.preference.R$attr: int colorBackgroundFloating +com.google.android.material.R$styleable: int ScrimInsetsFrameLayout_insetForeground +androidx.appcompat.R$attr: int actionModeSelectAllDrawable +com.jaredrummler.android.colorpicker.R$style: int Platform_AppCompat_Light +androidx.swiperefreshlayout.R$styleable: R$styleable() +androidx.preference.R$id: int search_button +io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onError(java.lang.Throwable) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.content.res.ColorStateList getItemTextColor() +io.reactivex.Observable: io.reactivex.Observable lift(io.reactivex.ObservableOperator) +androidx.preference.R$attr: int actionBarTabStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_35 +okhttp3.internal.io.FileSystem: long size(java.io.File) +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_3 +cyanogenmod.externalviews.IExternalViewProvider: void onAttach(android.os.IBinder) +com.google.android.material.R$color: int design_fab_shadow_mid_color +okhttp3.internal.http2.PushObserver$1: void onReset(int,okhttp3.internal.http2.ErrorCode) +james.adaptiveicon.R$drawable: int abc_ic_ab_back_material +androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_NO_ARG +cyanogenmod.app.IProfileManager +com.bumptech.glide.R$id: int tag_unhandled_key_event_manager +androidx.viewpager2.R$styleable: int[] GradientColorItem +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_checkableBehavior +com.google.android.material.R$dimen: int mtrl_calendar_day_vertical_padding +com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout_PrimarySurface +james.adaptiveicon.R$dimen: int compat_button_inset_vertical_material +com.jaredrummler.android.colorpicker.R$id: int async +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +androidx.constraintlayout.widget.R$attr: int duration +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_light +com.jaredrummler.android.colorpicker.R$id: int line1 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Fullscreen +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceBody1 +wangdaye.com.geometricweather.R$attr: int mock_label +cyanogenmod.hardware.ThermalListenerCallback$State: java.lang.String toString(int) +com.turingtechnologies.materialscrollbar.R$dimen: int design_appbar_elevation +cyanogenmod.profiles.BrightnessSettings: boolean mDirty +com.xw.repo.bubbleseekbar.R$id: int action_bar_root +androidx.constraintlayout.widget.R$attr: int imageButtonStyle +james.adaptiveicon.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +androidx.constraintlayout.widget.R$styleable: int Transition_pathMotionArc +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getDirection() +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemPaddingRight +androidx.appcompat.widget.ActivityChooserView: void setInitialActivityCount(int) +wangdaye.com.geometricweather.R$styleable: int[] SnackbarLayout +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.internal.disposables.SequentialDisposable task +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver parent +cyanogenmod.app.Profile$Type: int TOGGLE +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: AccuCurrentResult$LocalSource() +com.google.android.material.R$layout: int mtrl_picker_header_selection_text +androidx.constraintlayout.widget.R$attr: int listDividerAlertDialog +androidx.appcompat.R$styleable: int MenuGroup_android_menuCategory +okhttp3.MediaType: okhttp3.MediaType parse(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_focused_alpha +james.adaptiveicon.R$dimen: int hint_alpha_material_dark +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State FAILED +james.adaptiveicon.R$drawable: int abc_text_select_handle_right_mtrl_dark +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.util.ErrorMode errorMode +wangdaye.com.geometricweather.R$styleable: int SwitchImageButton_drawable_res_off +retrofit2.ParameterHandler$Headers: int p +androidx.work.NetworkType: androidx.work.NetworkType NOT_ROAMING +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onError(java.lang.Throwable) +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: long serialVersionUID +androidx.appcompat.app.AlertController$RecycleListView: AlertController$RecycleListView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setSubtitleText(java.lang.String) +androidx.appcompat.R$integer: int status_bar_notification_info_maxnum +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_percent +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float CarbonMonoxide +com.google.android.material.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.main.Hilt_MainActivity: Hilt_MainActivity() +com.google.android.material.R$styleable: int TextAppearance_android_textColor +com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: long serialVersionUID +wangdaye.com.geometricweather.R$attr: int alertDialogStyle +androidx.preference.R$styleable: int[] StateListDrawableItem +cyanogenmod.weather.WeatherInfo$DayForecast$Builder +androidx.appcompat.R$styleable: int Toolbar_android_minHeight +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setUseSessionTickets +android.didikee.donate.R$id: int action_mode_bar +okio.Buffer$2: java.lang.String toString() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeErrorColor +wangdaye.com.geometricweather.R$dimen: int abc_text_size_title_material_toolbar +androidx.constraintlayout.helper.widget.Layer: void setRotation(float) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingRight +androidx.preference.R$dimen: int hint_alpha_material_light +androidx.lifecycle.ComputableLiveData$1: void onActive() +androidx.cardview.widget.CardView: android.content.res.ColorStateList getCardBackgroundColor() +wangdaye.com.geometricweather.R$styleable: int Transition_constraintSetEnd +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton +okhttp3.Response$Builder: Response$Builder() +androidx.work.R$bool: int enable_system_foreground_service_default +com.turingtechnologies.materialscrollbar.R$attr: int itemIconSize +com.google.android.material.R$layout: int text_view_with_line_height_from_style +james.adaptiveicon.R$style: int Platform_V21_AppCompat +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_scrollMode +androidx.fragment.R$anim: int fragment_fast_out_extra_slow_in +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconMargin +android.didikee.donate.R$anim: int abc_popup_exit +com.turingtechnologies.materialscrollbar.R$drawable: int mtrl_tabs_default_indicator +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: int colorId +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWetBulbTemperature(java.lang.Integer) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.appcompat.R$styleable: int[] ColorStateListItem +okhttp3.CertificatePinner: java.util.List findMatchingPins(java.lang.String) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +cyanogenmod.os.Build +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd +com.google.android.material.R$color: int switch_thumb_disabled_material_dark +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int CountMinute +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_toTopOf +androidx.constraintlayout.widget.ConstraintHelper +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$attr: int flow_verticalStyle +androidx.preference.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +cyanogenmod.providers.DataUsageContract: java.lang.String ACTIVE +wangdaye.com.geometricweather.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature Temperature +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: AccuCurrentResult$DewPoint() +com.google.android.material.R$styleable: int Transform_android_scaleY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindDircEnd(java.lang.String) +androidx.preference.R$styleable: int Toolbar_menu +okio.ForwardingTimeout: long deadlineNanoTime() +androidx.recyclerview.R$attr: int reverseLayout +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customStringValue +wangdaye.com.geometricweather.R$styleable: int Preference_android_icon +com.google.android.material.R$color: int design_fab_stroke_top_outer_color +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory +com.xw.repo.bubbleseekbar.R$id: int screen +wangdaye.com.geometricweather.R$styleable: int[] MaterialTextAppearance +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_light +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul1H +cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getProfileByName(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display4 +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_stroke_size +wangdaye.com.geometricweather.common.basic.models.weather.Alert: long alertId +com.jaredrummler.android.colorpicker.R$color: int accent_material_dark +okio.GzipSource: byte SECTION_DONE +com.turingtechnologies.materialscrollbar.R$id: int parallax +wangdaye.com.geometricweather.R$dimen: int tooltip_precise_anchor_extra_offset +androidx.appcompat.R$drawable: int abc_textfield_default_mtrl_alpha +androidx.work.impl.utils.futures.AbstractFuture$Failure$1 +james.adaptiveicon.R$styleable: int AppCompatTheme_editTextBackground +cyanogenmod.providers.CMSettings$Secure: java.lang.String[] NAVIGATION_RING_TARGETS +wangdaye.com.geometricweather.db.entities.HourlyEntity: int getTemperature() +androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotation +androidx.appcompat.R$styleable: int FontFamily_fontProviderQuery +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_THUNDERSTORMS +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String unitId +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd +retrofit2.ParameterHandler$Field: retrofit2.Converter valueConverter +wangdaye.com.geometricweather.R$layout: int test_toolbar_surface +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +androidx.preference.R$drawable: int abc_tab_indicator_mtrl_alpha +com.google.android.material.R$id: int checked +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry geometry +retrofit2.RequestBuilder: okhttp3.RequestBody body +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float snow +wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context) +androidx.appcompat.R$attr: int contentInsetEnd +com.google.android.material.tabs.TabLayout: int getTabIndicatorGravity() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_max +com.google.android.material.R$dimen: int fastscroll_margin +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.R$color: int material_slider_inactive_tick_marks_color +android.didikee.donate.R$dimen: int abc_text_size_headline_material +wangdaye.com.geometricweather.R$styleable: int Preference_layout +okhttp3.internal.http2.Http2Stream$FramingSink: void emitFrame(boolean) +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: boolean inputExhausted +androidx.constraintlayout.motion.widget.MotionLayout: void setOnShow(float) +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchTextAppearance +wangdaye.com.geometricweather.R$dimen: int mtrl_fab_translation_z_pressed +com.jaredrummler.android.colorpicker.R$id: int search_go_btn +wangdaye.com.geometricweather.R$id: int activity_settings_toolbar +org.greenrobot.greendao.AbstractDao: java.lang.Object load(java.lang.Object) +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_WARM_RISING +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$styleable: int MaterialButton_rippleColor +wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontContainer +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue getOrCreateQueue() +wangdaye.com.geometricweather.R$id: int fade +androidx.lifecycle.Lifecycling: int resolveObserverCallbackType(java.lang.Class) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String logo +androidx.preference.R$id: int message +com.jaredrummler.android.colorpicker.R$styleable: int[] CompoundButton +wangdaye.com.geometricweather.R$layout: int dialog_providers_previewer +androidx.appcompat.R$attr: int tooltipFrameBackground +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorError +wangdaye.com.geometricweather.R$string: int sensible_temp +com.xw.repo.bubbleseekbar.R$bool: R$bool() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginEnd +androidx.constraintlayout.widget.R$id: int time +androidx.preference.R$styleable: int Toolbar_navigationContentDescription +androidx.preference.R$styleable: int FontFamily_fontProviderPackage +cyanogenmod.themes.ThemeManager$2$1: java.lang.String val$pkgName +james.adaptiveicon.R$id: int search_mag_icon +wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_collapsed +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitation() +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: float mMax +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherCode +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_EditText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.util.List getValue() +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDefaultPhoneSub +com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException: RecyclableBufferedInputStream$InvalidMarkException(java.lang.String) +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder dns(okhttp3.Dns) +com.google.android.material.R$attr: int iconGravity +okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory sslSocketFactory() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight +com.google.android.material.R$attr: int badgeStyle +okhttp3.internal.tls.DistinguishedNameParser: char getEscaped() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_seekBarStyle +androidx.preference.R$dimen: int abc_text_size_subtitle_material_toolbar +wangdaye.com.geometricweather.R$layout: int abc_search_dropdown_item_icons_2line +androidx.coordinatorlayout.R$styleable: int ColorStateListItem_android_color +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_PEOPLE_LOOKUP_VALIDATOR +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogTheme +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat +cyanogenmod.app.Profile: cyanogenmod.profiles.AirplaneModeSettings getAirplaneMode() +cyanogenmod.profiles.AirplaneModeSettings +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize +okhttp3.RequestBody$1: RequestBody$1(okhttp3.MediaType,okio.ByteString) +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_ttcIndex +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableRight +com.google.android.material.R$attr: int liftOnScroll +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_android_checkable +com.google.android.material.R$dimen: int mtrl_btn_icon_padding +androidx.constraintlayout.widget.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +androidx.cardview.widget.CardView: int getContentPaddingRight() +okhttp3.OkHttpClient: okhttp3.Dispatcher dispatcher() +io.reactivex.internal.observers.BasicIntQueueDisposable: void clear() +wangdaye.com.geometricweather.R$id: int action_image +com.google.android.material.R$color: int error_color_material_light +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: MfForecastResult$ProbabilityForecast$ProbabilityRain() +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$attr: int minSeparation +androidx.constraintlayout.widget.R$attr: int barLength +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SearchView_ActionBar +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: android.os.IBinder asBinder() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_CheckBox +androidx.preference.R$style: int Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customIntegerValue +wangdaye.com.geometricweather.R$color: int design_default_color_secondary +androidx.appcompat.widget.AppCompatButton: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: retrofit2.Call $this_awaitResponse$inlined +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog +androidx.loader.R$attr: int alpha +okhttp3.OkHttpClient$1: void apply(okhttp3.ConnectionSpec,javax.net.ssl.SSLSocket,boolean) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onComplete() +androidx.appcompat.R$dimen: int abc_control_inset_material +io.reactivex.internal.subscriptions.EmptySubscription: void complete(org.reactivestreams.Subscriber) +androidx.legacy.coreutils.R$styleable +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getDate() +androidx.hilt.R$color +com.google.android.material.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Wind wind +android.didikee.donate.R$integer: R$integer() +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_tooltipText +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.WeatherEntity) +okio.RealBufferedSource: void close() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_MODE_VALIDATOR +androidx.constraintlayout.widget.R$layout: int abc_screen_toolbar +com.google.android.material.R$dimen: int design_tab_max_width +com.google.android.material.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +wangdaye.com.geometricweather.R$drawable: int notif_temp_63 +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_buttonGravity +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Line2 +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_NoActionBar_Bridge +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_114 +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionProviderClass +androidx.vectordrawable.R$dimen: R$dimen() +androidx.appcompat.R$attr: int actionDropDownStyle +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_navigationIcon +androidx.constraintlayout.widget.R$attr: int actionOverflowButtonStyle +androidx.appcompat.R$styleable: int ActionBar_progressBarStyle +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_dither +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +okhttp3.Handshake: okhttp3.CipherSuite cipherSuite() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModePasteDrawable +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: ObservableBufferBoundary$BufferCloseObserver(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver,long) +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_overflow_material +androidx.appcompat.widget.AppCompatSpinner: void setBackgroundResource(int) +cyanogenmod.providers.CMSettings$Secure: java.lang.String PROTECTED_COMPONENT_MANAGERS +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode SLEET +retrofit2.RequestBuilder: java.lang.String canonicalizeForPath(java.lang.String,boolean) +androidx.appcompat.R$styleable: int ActionMode_closeItemLayout +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +com.bumptech.glide.R$id: int blocking +androidx.appcompat.widget.AppCompatSpinner: android.graphics.drawable.Drawable getPopupBackground() +androidx.preference.R$styleable: int AppCompatTheme_actionModeCutDrawable +wangdaye.com.geometricweather.R$layout: int dialog_running_in_background_o +wangdaye.com.geometricweather.R$dimen: int abc_progress_bar_height_material +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: ObservableSequenceEqualSingle$EqualCoordinator(io.reactivex.SingleObserver,int,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) +com.jaredrummler.android.colorpicker.R$attr: int buttonPanelSideLayout +com.google.android.material.R$style: int Theme_MaterialComponents_CompactMenu +androidx.preference.R$id: int blocking +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_thickness +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SeekBar +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeWindSpeed +androidx.customview.R$styleable +com.google.android.material.R$style: int Base_Widget_AppCompat_SearchView +com.google.android.material.R$styleable: int[] FlowLayout +androidx.vectordrawable.R$dimen: int notification_large_icon_height +com.google.android.material.R$dimen: int mtrl_calendar_dialog_background_inset +androidx.fragment.R$drawable: int notification_action_background +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitation +wangdaye.com.geometricweather.db.entities.HourlyEntityDao +com.turingtechnologies.materialscrollbar.R$attr: int closeItemLayout +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +androidx.appcompat.widget.AppCompatEditText: java.lang.CharSequence getText() +androidx.fragment.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust WindGust +android.didikee.donate.R$styleable: int AppCompatTheme_panelBackground +cyanogenmod.app.IProfileManager$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: double Value +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: BaiduIPLocationService$1(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) +androidx.transition.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarSize +com.google.android.material.R$styleable: int MotionTelltales_telltales_tailColor +com.google.android.material.chip.Chip: void setCloseIconStartPaddingResource(int) +com.google.android.material.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +android.didikee.donate.R$attr: int textAppearancePopupMenuHeader +james.adaptiveicon.R$attr: int autoSizeTextType +com.google.android.material.R$attr: int chipEndPadding +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +retrofit2.Retrofit$1: java.lang.Object[] emptyArgs +androidx.preference.R$style: int Preference_DialogPreference_EditTextPreference_Material +okio.GzipSource: byte SECTION_HEADER +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +androidx.lifecycle.extensions.R$anim: int fragment_close_enter +com.google.android.material.R$styleable: int Constraint_android_layout_height +cyanogenmod.hardware.CMHardwareManager: int FEATURE_SUNLIGHT_ENHANCEMENT +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActivityChooserView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial() +androidx.vectordrawable.R$id: int normal +androidx.lifecycle.Lifecycle$State: Lifecycle$State(java.lang.String,int) +james.adaptiveicon.R$attr: int actionModeSplitBackground +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_editor_absoluteY +cyanogenmod.weather.IRequestInfoListener: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) +okhttp3.internal.http.RealResponseBody +okhttp3.OkHttpClient: okhttp3.CertificatePinner certificatePinner() +com.google.android.material.R$attr: int deltaPolarAngle +com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy DEFAULT +wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_dividerHeight wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Wind wind -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Medium -com.jaredrummler.android.colorpicker.R$string: int abc_prepend_shortcut_label -androidx.work.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastHorizontalStyle -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setStatus(int) -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderQuery -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar_Small -com.google.android.material.R$styleable: int AppCompatTheme_homeAsUpIndicator -okio.Util: int reverseBytesInt(int) -androidx.hilt.work.R$anim: int fragment_close_exit -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean url -cyanogenmod.themes.ThemeManager: java.util.Set access$000(cyanogenmod.themes.ThemeManager) -android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMarkTintMode -james.adaptiveicon.R$color: int switch_thumb_disabled_material_dark -com.xw.repo.bubbleseekbar.R$attr: int drawableSize -androidx.constraintlayout.widget.R$id: R$id() -com.google.android.material.R$styleable: int TextInputLayout_suffixText -androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor valueOf(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_grey -james.adaptiveicon.R$layout: int abc_list_menu_item_radio -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: java.lang.String desc -com.jaredrummler.android.colorpicker.R$drawable: int abc_spinner_textfield_background_material -com.google.android.material.R$styleable: int RecyclerView_android_clipToPadding -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_toRightOf -androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_2_material -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_48dp -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth -wangdaye.com.geometricweather.R$layout: int widget_clock_day_horizontal -androidx.appcompat.R$drawable: int abc_dialog_material_background -com.xw.repo.bubbleseekbar.R$id: int home -androidx.preference.R$layout: int preference_category -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.database.Database getDatabase() -androidx.constraintlayout.widget.R$layout: int abc_action_menu_layout -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: int Index -okhttp3.internal.http2.StreamResetException: okhttp3.internal.http2.ErrorCode errorCode -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onSuccess(java.lang.Object) -androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableTransition -com.jaredrummler.android.colorpicker.R$layout: int abc_screen_simple -okhttp3.Response: okhttp3.Response priorResponse -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconContentDescription -com.xw.repo.bubbleseekbar.R$color: int material_deep_teal_500 -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Empty -androidx.preference.R$id: int accessibility_custom_action_27 -androidx.lifecycle.LiveData: void considerNotify(androidx.lifecycle.LiveData$ObserverWrapper) -com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor GREY -wangdaye.com.geometricweather.R$color: int mtrl_filled_stroke_color -io.reactivex.observers.DisposableObserver: java.util.concurrent.atomic.AtomicReference upstream -okhttp3.Request: java.lang.String toString() -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_previewSize -androidx.work.R$drawable: int notification_template_icon_bg -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void error(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -androidx.lifecycle.extensions.R$id: int chronometer -com.turingtechnologies.materialscrollbar.R$integer: int mtrl_btn_anim_duration_ms -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderQuery -com.google.android.material.R$attr: int chipStartPadding -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: boolean IsDaylight -androidx.coordinatorlayout.R$styleable: int[] CoordinatorLayout -androidx.lifecycle.SavedStateViewModelFactory: SavedStateViewModelFactory(android.app.Application,androidx.savedstate.SavedStateRegistryOwner) -androidx.appcompat.R$attr: int actionModeShareDrawable -androidx.constraintlayout.widget.R$attr: int drawableTint -com.google.android.material.R$style: int Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar -com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_inflatedId -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isIsShow() -wangdaye.com.geometricweather.R$id: int dialog_location_help_manageIcon -android.didikee.donate.R$styleable: int ActivityChooserView_initialActivityCount -androidx.appcompat.R$styleable: int SearchView_android_imeOptions -retrofit2.OkHttpCall: retrofit2.RequestFactory requestFactory -wangdaye.com.geometricweather.R$id: int expanded_menu -cyanogenmod.app.Profile: void readFromParcel(android.os.Parcel) -androidx.preference.R$styleable: int[] StateListDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: int UnitType -wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonTint -wangdaye.com.geometricweather.R$attr: int yearSelectedStyle -okhttp3.internal.http2.Http2Connection$ReaderRunnable: okhttp3.internal.http2.Http2Connection this$0 -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endY -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.CompositeDisposable set -androidx.multidex.MultiDexExtractor$ExtractedDex: long crc -com.google.android.material.R$animator -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setIcePrecipitation(java.lang.Float) -wangdaye.com.geometricweather.R$attr: int mock_showLabel -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_THUMBNAIL -com.google.android.material.R$styleable: int KeyTimeCycle_android_translationZ -com.google.android.material.R$attr: int alpha -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: android.os.IBinder asBinder() -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec build() -cyanogenmod.providers.CMSettings$1 -wangdaye.com.geometricweather.R$string: int settings_title_precipitation_unit -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ct -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Small_Inverse -cyanogenmod.platform.Manifest$permission: java.lang.String BIND_CUSTOM_TILE_LISTENER_SERVICE -okhttp3.Response: Response(okhttp3.Response$Builder) -cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onListenerConnected() -wangdaye.com.geometricweather.R$string: int feedback_text_size -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.View onCreatePanelView(int) -com.google.android.material.R$styleable: int[] ActivityChooserView -androidx.activity.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar -androidx.fragment.R$styleable: int FontFamily_fontProviderQuery -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_GREEN_INDEX -android.didikee.donate.R$style: int Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$id: int design_menu_item_text -cyanogenmod.app.CustomTile: android.net.Uri onClickUri -com.google.android.material.R$style: int Base_Widget_MaterialComponents_AutoCompleteTextView -okio.AsyncTimeout: int TIMEOUT_WRITE_SIZE -com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderText(int) -androidx.transition.R$id: int transition_position -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: long EpochStartTime -androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_bias -okio.BufferedSource: long indexOf(okio.ByteString) -androidx.preference.R$styleable: int[] BackgroundStyle -cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri mDownloadUri -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconMode -wangdaye.com.geometricweather.R$attr: int helperTextTextAppearance -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_checkable -wangdaye.com.geometricweather.R$attr: int cornerFamilyTopLeft -androidx.preference.R$attr: int persistent -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_height -com.google.gson.FieldNamingPolicy$6: FieldNamingPolicy$6(java.lang.String,int) -com.turingtechnologies.materialscrollbar.R$id: int search_bar -com.google.android.material.R$id: int textSpacerNoTitle -com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeBottomRight -io.reactivex.internal.observers.DeferredScalarDisposable: int DISPOSED -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitationProbability -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setDeleteIntent(android.app.PendingIntent) -androidx.hilt.lifecycle.R$attr: int alpha -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_toBottomOf -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Body2 -com.turingtechnologies.materialscrollbar.R$attr: int backgroundTintMode -com.google.android.material.R$styleable: int[] BottomNavigationView -com.xw.repo.bubbleseekbar.R$attr: int actionBarSize -androidx.appcompat.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$string: int settings_category_forecast -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean speed -io.reactivex.Observable: io.reactivex.Observable doOnLifecycle(io.reactivex.functions.Consumer,io.reactivex.functions.Action) -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int OTHER_STATE_HAS_VALUE -wangdaye.com.geometricweather.R$attr: int allowStacking -okhttp3.internal.http2.Http2: java.io.IOException ioException(java.lang.String,java.lang.Object[]) -com.google.android.material.R$styleable: int MaterialCalendar_dayInvalidStyle -com.google.android.material.R$styleable: int Insets_paddingRightSystemWindowInsets -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String TODAYS_HIGH_TEMPERATURE -com.bumptech.glide.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -cyanogenmod.app.StatusBarPanelCustomTile$1: StatusBarPanelCustomTile$1() -okhttp3.internal.Util: okio.ByteString UTF_32_LE_BOM -wangdaye.com.geometricweather.R$attr: int switchMinWidth -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: java.util.ArrayDeque observers -wangdaye.com.geometricweather.R$id: int cpv_arrow_right -androidx.preference.R$dimen: int fastscroll_minimum_range -com.google.android.material.bottomnavigation.BottomNavigationView: int getLabelVisibilityMode() -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_color -androidx.preference.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink -wangdaye.com.geometricweather.R$string: int feedback_running_in_background -com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalStyle -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status[] values() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getBrandId() -com.turingtechnologies.materialscrollbar.R$color: int design_error -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String cityId -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void drain() -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: boolean isDisposed() -okio.Buffer: okio.ByteString snapshot(int) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2 -okhttp3.internal.cache.DiskLruCache: void validateKey(java.lang.String) -okhttp3.internal.platform.Platform: void configureSslSocketFactory(javax.net.ssl.SSLSocketFactory) -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Consumer) -wangdaye.com.geometricweather.background.polling.work.worker.TodayForecastUpdateWorker: TodayForecastUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) -cyanogenmod.weather.CMWeatherManager$1: void onWeatherServiceProviderChanged(java.lang.String) -com.google.android.material.button.MaterialButtonToggleGroup: void addOnButtonCheckedListener(com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener) -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$KeySet keySet -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver -com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_multichoice_material -com.jaredrummler.android.colorpicker.R$id: int transparency_layout -okhttp3.internal.connection.RealConnection: boolean supportsUrl(okhttp3.HttpUrl) -cyanogenmod.providers.CMSettings$Global: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) -retrofit2.HttpServiceMethod$SuspendForBody: HttpServiceMethod$SuspendForBody(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter,boolean) -cyanogenmod.providers.CMSettings$System: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_alterWindow -cyanogenmod.externalviews.ExternalViewProviderService$1 -androidx.constraintlayout.widget.R$layout: R$layout() -james.adaptiveicon.R$styleable: int ActionMode_subtitleTextStyle -androidx.appcompat.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -wangdaye.com.geometricweather.R$attr: int tint -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored -androidx.constraintlayout.widget.R$id: int tag_screen_reader_focusable -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: boolean completed -androidx.preference.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$styleable: int[] PreferenceImageView -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Menu -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: java.lang.String quali -androidx.hilt.work.R$layout: int notification_template_icon_group -okhttp3.HttpUrl: java.lang.String scheme() -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_TEXT -androidx.preference.R$styleable: int ListPreference_useSimpleSummaryProvider -james.adaptiveicon.R$attr: int buttonBarNegativeButtonStyle -android.didikee.donate.R$id: int always -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean isDisposed() -com.google.android.material.R$styleable: int[] ViewBackgroundHelper -wangdaye.com.geometricweather.R$attr: int mock_labelColor -androidx.preference.R$styleable: int[] Toolbar -okhttp3.Response$Builder: void checkSupportResponse(java.lang.String,okhttp3.Response) -io.reactivex.internal.util.AtomicThrowable: long serialVersionUID -android.didikee.donate.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -androidx.preference.R$styleable: int PreferenceGroup_orderingFromXml -wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_android_orderingFromXml -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_showSeekBarValue -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColor -com.google.gson.stream.JsonWriter: boolean isLenient() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogTheme -androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.providers.CMSettings$System: android.net.Uri getUriFor(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String getTime(android.content.Context,java.util.Date) -wangdaye.com.geometricweather.R$id: int groups -wangdaye.com.geometricweather.background.polling.PollingUpdateHelper -androidx.activity.R$styleable: int FontFamilyFont_android_font -androidx.appcompat.app.AppCompatActivity: AppCompatActivity() -androidx.constraintlayout.widget.R$style: int Platform_V21_AppCompat_Light -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_dark -com.xw.repo.bubbleseekbar.R$dimen: int abc_disabled_alpha_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency -okhttp3.Dispatcher: void enqueue(okhttp3.RealCall$AsyncCall) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_DropDown -androidx.transition.R$styleable: int GradientColor_android_startY -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth -androidx.legacy.coreutils.R$drawable: int notification_template_icon_bg -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void setFirst(io.reactivex.internal.operators.observable.ObservableReplay$Node) -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_2 -androidx.appcompat.R$style: int Widget_AppCompat_RatingBar_Indicator -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Icon -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: boolean isValid() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter -androidx.appcompat.R$styleable: int GradientColor_android_endX -androidx.vectordrawable.R$dimen -androidx.appcompat.R$styleable: int SearchView_submitBackground -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCopyDrawable -androidx.preference.R$attr: int actionModeBackground -wangdaye.com.geometricweather.R$attr: int buttonBarStyle -com.google.android.material.R$attr: int materialCardViewStyle -okio.AsyncTimeout: long remainingNanos(long) -retrofit2.Response -okhttp3.internal.http1.Http1Codec$1 -androidx.fragment.R$id: int icon -com.bumptech.glide.R$styleable: int CoordinatorLayout_statusBarBackground -org.greenrobot.greendao.DaoException: long serialVersionUID -wangdaye.com.geometricweather.R$color: int design_dark_default_color_surface -wangdaye.com.geometricweather.settings.dialogs.AnimatableIconDialog -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCollapsedPaddingTop -com.google.android.material.R$styleable: int KeyTrigger_onNegativeCross -androidx.recyclerview.R$styleable: int GradientColor_android_endY -androidx.appcompat.widget.SearchView: void setOnQueryTextFocusChangeListener(android.view.View$OnFocusChangeListener) -androidx.vectordrawable.animated.R$id: int dialog_button -androidx.hilt.work.R$anim: int fragment_close_enter -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_imeOptions -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_weight -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_drawableSize -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMargins -com.jaredrummler.android.colorpicker.R$id: int actions -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: long serialVersionUID -com.google.android.material.R$id: int accessibility_custom_action_19 -androidx.constraintlayout.widget.R$color: int abc_background_cache_hint_selector_material_light -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$Event downEvent(androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.R$styleable: int Transform_android_transformPivotY -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf -com.google.android.material.R$attr: int transitionPathRotate -androidx.loader.R$drawable: int notification_tile_bg -com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_text_color -androidx.appcompat.R$dimen: int tooltip_margin +wangdaye.com.geometricweather.R$dimen: int mtrl_card_dragged_z +com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +com.google.android.material.R$dimen: int abc_dialog_fixed_width_minor +okio.Buffer: java.io.InputStream inputStream() +androidx.coordinatorlayout.R$id: int none +cyanogenmod.app.Profile$ProfileTrigger$1: java.lang.Object[] newArray(int) +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy BUFFER +wangdaye.com.geometricweather.R$id: int action_manage +wangdaye.com.geometricweather.R$string: int feedback_live_wallpaper_day_night_type +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$200() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.util.Date date +com.google.android.material.slider.BaseSlider: void removeOnSliderTouchListener(com.google.android.material.slider.BaseOnSliderTouchListener) +com.google.android.material.R$styleable: int ViewBackgroundHelper_backgroundTint com.google.android.material.internal.CheckableImageButton: void setPressed(boolean) -wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day -io.reactivex.internal.subscriptions.EmptySubscription: boolean offer(java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int ActionMode_titleTextStyle -com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_bottom_material -com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Choice -androidx.preference.R$styleable: int SwitchCompat_track -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onSubscribe(io.reactivex.disposables.Disposable) -james.adaptiveicon.R$dimen: int abc_text_size_body_2_material -androidx.preference.R$attr: int windowFixedWidthMajor -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableItem_android_id -android.didikee.donate.R$id: int search_bar -com.google.android.material.R$dimen: int compat_control_corner_material -androidx.vectordrawable.animated.R$layout -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function) -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_spinBars -androidx.constraintlayout.widget.R$dimen: int notification_small_icon_size_as_large -androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Body1 -com.jaredrummler.android.colorpicker.R$dimen -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference other -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getTempMin() -wangdaye.com.geometricweather.R$attr: int contentPaddingBottom -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -androidx.recyclerview.R$attr: int recyclerViewStyle -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassLevel(java.lang.Integer) -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMenuView -androidx.constraintlayout.widget.R$styleable: int MockView_mock_label -wangdaye.com.geometricweather.R$integer: int cpv_default_anim_steps -cyanogenmod.power.IPerformanceManager$Stub$Proxy: void cpuBoost(int) -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDefaultDisplayMode -androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_bias -cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper access$100(cyanogenmod.app.CustomTileListenerService) -androidx.appcompat.R$attr: int actionDropDownStyle -okhttp3.internal.platform.AndroidPlatform: void log(int,java.lang.String,java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWeatherText() -com.google.android.material.textfield.MaterialAutoCompleteTextView: java.lang.CharSequence getHint() -okhttp3.internal.cache2.FileOperator: void read(long,okio.Buffer,long) -com.google.android.material.R$attr: int navigationIconColor -com.google.android.material.R$style: int TextAppearance_Compat_Notification_Line2 -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_navigationContentDescription +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_textOff +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableRight +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_padding_material +wangdaye.com.geometricweather.R$attr: int behavior_skipCollapsed +androidx.preference.R$styleable: int AppCompatTheme_buttonStyleSmall +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory +wangdaye.com.geometricweather.R$attr: int layout_constraintStart_toStartOf +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onListenerConnected() +okhttp3.internal.cache.InternalCache: void update(okhttp3.Response,okhttp3.Response) +androidx.appcompat.R$id: int text +com.google.android.material.transformation.FabTransformationSheetBehavior +com.turingtechnologies.materialscrollbar.R$attr: int textColorAlertDialogListItem +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric +okio.Buffer$UnsafeCursor: okio.Buffer buffer +okhttp3.internal.cache.DiskLruCache$Editor$1: void onException(java.io.IOException) +com.google.android.material.R$dimen: int design_bottom_sheet_peek_height_min +io.reactivex.internal.subscribers.StrictSubscriber: void onComplete() +wangdaye.com.geometricweather.R$attr: int bsb_track_size +wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity: HourlyTrendWidgetConfigActivity() +com.xw.repo.bubbleseekbar.R$id: int alertTitle +com.jaredrummler.android.colorpicker.R$color: int primary_text_disabled_material_light +androidx.activity.R$id: int accessibility_custom_action_20 +cyanogenmod.app.ILiveLockScreenManager: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_android_popupAnimationStyle +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontWeight +androidx.appcompat.widget.FitWindowsLinearLayout: FitWindowsLinearLayout(android.content.Context) +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type valueOf(java.lang.String) +androidx.preference.R$layout: int preference_dialog_edittext +io.reactivex.Observable: io.reactivex.Observable doFinally(io.reactivex.functions.Action) +cyanogenmod.weather.WeatherInfo: int getConditionCode() +androidx.lifecycle.LifecycleRegistryOwner: androidx.lifecycle.LifecycleRegistry getLifecycle() +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks access$700(cyanogenmod.externalviews.KeyguardExternalView) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_logoDescription +cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.ICMStatusBarManager getService() +androidx.preference.R$styleable: int MenuView_android_verticalDivider +com.google.android.material.R$id: int search_go_btn +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void run() +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_summaryOn +wangdaye.com.geometricweather.R$styleable: int MotionLayout_applyMotionScene +com.turingtechnologies.materialscrollbar.R$drawable: int abc_control_background_material +androidx.coordinatorlayout.R$dimen: int notification_small_icon_background_padding +androidx.appcompat.widget.Toolbar: void setCollapseContentDescription(java.lang.CharSequence) +androidx.work.R$styleable: int FontFamilyFont_font +androidx.appcompat.R$style: int Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$id: int mtrl_calendar_days_of_week +androidx.appcompat.widget.SwitchCompat: void setThumbTextPadding(int) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.lang.String Link +wangdaye.com.geometricweather.R$style: int Preference_Category +okio.ByteString: okio.ByteString digest(java.lang.String) +com.google.android.material.R$dimen: int material_filled_edittext_font_1_3_padding_bottom +androidx.constraintlayout.widget.R$attr: int drawableTopCompat +wangdaye.com.geometricweather.R$attr: int tintMode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: CaiYunMainlyResult$AlertsBean() +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceCategoryStyle +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDefaultSmsSub +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_checked +androidx.constraintlayout.widget.R$id: int unchecked +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.util.concurrent.atomic.AtomicLong requested +androidx.transition.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: java.util.List alerts +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property CityId +androidx.preference.R$attr: int toolbarStyle +com.google.android.material.R$dimen: int mtrl_textinput_box_corner_radius_small +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: java.util.concurrent.atomic.AtomicBoolean shouldConnect +wangdaye.com.geometricweather.R$styleable: int FlowLayout_itemSpacing +cyanogenmod.hardware.IThermalListenerCallback$Stub: IThermalListenerCallback$Stub() +com.jaredrummler.android.colorpicker.R$id: int spacer +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPopupWindowStyle +androidx.fragment.R$string: R$string() +com.github.rahatarmanahmed.cpv.R: R() +okhttp3.internal.http.StatusLine: StatusLine(okhttp3.Protocol,int,java.lang.String) +wangdaye.com.geometricweather.R$drawable: int flag_ro +androidx.vectordrawable.R$drawable: int notification_bg_normal_pressed +com.xw.repo.bubbleseekbar.R$id: int time +wangdaye.com.geometricweather.R$attr: int preferenceInformationStyle +wangdaye.com.geometricweather.R$style: int Widget_Design_TabLayout +cyanogenmod.platform.Manifest$permission: java.lang.String BIND_WEATHER_PROVIDER_SERVICE +com.google.android.material.appbar.AppBarLayout: void setLiftOnScroll(boolean) +com.google.android.material.R$dimen: int mtrl_slider_widget_height +androidx.fragment.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.R$color: int design_default_color_on_background +cyanogenmod.externalviews.ExternalViewProviderService$1$1: android.os.Bundle val$options +okhttp3.internal.ws.WebSocketWriter +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.Observer downstream +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: ObservableThrottleFirstTimed$DebounceTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker) +android.didikee.donate.R$drawable: int abc_spinner_textfield_background_material +androidx.coordinatorlayout.R$id: int accessibility_custom_action_3 +com.google.android.material.R$id: int radio +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: java.lang.String Unit +androidx.core.widget.NestedScrollView: void setSmoothScrollingEnabled(boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getUrl() +okhttp3.internal.http2.Http2Connection$7 +wangdaye.com.geometricweather.R$attr: int cpv_maxProgress +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setWallpaper(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalBias +wangdaye.com.geometricweather.R$dimen: int widget_grid_2 +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog +okio.Source +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX() +android.didikee.donate.R$style: int TextAppearance_AppCompat_Subhead_Inverse +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: org.reactivestreams.Subscription upstream +androidx.lifecycle.ViewModelStore: java.util.Set keys() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_HourlyEntityListQuery +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: AccuCurrentResult$RealFeelTemperatureShade() +com.xw.repo.bubbleseekbar.R$attr: int splitTrack +okhttp3.logging.HttpLoggingInterceptor: HttpLoggingInterceptor() +com.google.android.material.slider.RangeSlider: int getFocusedThumbIndex() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +cyanogenmod.externalviews.ExternalViewProviderService$Provider: int getWindowFlags() +io.reactivex.internal.observers.ForEachWhileObserver: ForEachWhileObserver(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer,io.reactivex.functions.Action) +wangdaye.com.geometricweather.R$string: int help +com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_bias +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +com.jaredrummler.android.colorpicker.R$attr: int progressBarStyle +androidx.preference.R$id: int accessibility_custom_action_26 +com.google.android.material.R$style: int Base_Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Light +androidx.preference.R$id: int scrollIndicatorDown +wangdaye.com.geometricweather.R$id: int widget_clock_day_weather +androidx.appcompat.resources.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_pre_l_text_clip_padding +cyanogenmod.hardware.IThermalListenerCallback$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_padding_end_material +retrofit2.BuiltInConverters$VoidResponseBodyConverter: java.lang.Void convert(okhttp3.ResponseBody) +okhttp3.internal.Util: boolean discard(okio.Source,int,java.util.concurrent.TimeUnit) +com.google.android.material.R$styleable: int CustomAttribute_attributeName +androidx.recyclerview.R$id: int dialog_button +androidx.constraintlayout.widget.R$attr: int barrierDirection +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.util.Date time +android.didikee.donate.R$drawable: int abc_text_select_handle_middle_mtrl_light +okhttp3.internal.cache.DiskLruCache$3: java.lang.Object next() +androidx.dynamicanimation.R$id: int action_container +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +androidx.constraintlayout.widget.R$attr: int layout_goneMarginTop +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean mShouldShow +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.disposables.Disposable upstream +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMargin +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_CREATE +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: AccuLocationResult$GeoPosition$Elevation() +com.bumptech.glide.R$id: int action_text +io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper[] values() +androidx.appcompat.R$color: int background_floating_material_light +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event[] values() +retrofit2.Retrofit: retrofit2.CallAdapter nextCallAdapter(retrofit2.CallAdapter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[]) +com.google.android.material.R$dimen: int fastscroll_minimum_range +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_checkbox +wangdaye.com.geometricweather.R$string: int feedback_get_weather_failed +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_lifted +okhttp3.internal.http1.Http1Codec$AbstractSource: boolean closed +androidx.constraintlayout.widget.R$styleable: int Layout_maxHeight +android.didikee.donate.R$attr: int toolbarStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCopyDrawable +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Small +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteInTxIterable +james.adaptiveicon.R$styleable: int[] ActionMenuItemView +com.google.android.material.tabs.TabLayout: int getTabMode() +com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context,android.util.AttributeSet,int) +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_type +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowDx +retrofit2.ParameterHandler$Query: java.lang.String name +androidx.preference.R$attr: int seekBarStyle +wangdaye.com.geometricweather.R$anim: int fragment_fade_enter +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_content_inset_material +io.reactivex.internal.observers.InnerQueuedObserver: InnerQueuedObserver(io.reactivex.internal.observers.InnerQueuedObserverSupport,int) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: androidx.lifecycle.LiveData mLiveData +wangdaye.com.geometricweather.R$drawable: int notif_temp_107 +cyanogenmod.themes.ThemeManager: void unregisterProcessingListener(cyanogenmod.themes.ThemeManager$ThemeProcessingListener) +androidx.recyclerview.R$id +wangdaye.com.geometricweather.R$attr: int trackColorInactive +androidx.preference.R$id: int notification_background +com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_swipe_escape_velocity +james.adaptiveicon.R$dimen: int abc_action_bar_stacked_tab_max_width +wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.AlertEntity) +androidx.preference.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_out_bottom +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean delayError +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void accept(java.lang.Object) +cyanogenmod.themes.IThemeProcessingListener$Stub: IThemeProcessingListener$Stub() +androidx.constraintlayout.widget.R$attr: int percentX +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_21 +androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackgroundColor(int) +com.google.android.material.R$attr: int prefixText +androidx.constraintlayout.widget.R$attr: int actionBarSplitStyle +com.google.android.material.R$attr: int triggerId +androidx.core.view.GestureDetectorCompat +wangdaye.com.geometricweather.R$attr: int dividerHorizontal +androidx.fragment.R$style: int TextAppearance_Compat_Notification_Info +com.google.android.material.slider.BaseSlider: void setValues(java.lang.Float[]) +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: long serialVersionUID +io.reactivex.internal.util.ArrayListSupplier: java.util.List call() +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_voiceIcon +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowMinWidthMinor +wangdaye.com.geometricweather.R$styleable: int SearchView_voiceIcon +androidx.appcompat.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.appcompat.R$anim: int abc_fade_out +okhttp3.Address: okhttp3.HttpUrl url +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign +com.turingtechnologies.materialscrollbar.R$attr: int commitIcon +com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Theme_AppCompat_Light +okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String access$000(okhttp3.internal.cache.DiskLruCache$Snapshot) +androidx.preference.R$attr: int listPreferredItemPaddingStart +androidx.appcompat.resources.R$dimen: int compat_button_padding_horizontal_material +okhttp3.internal.http2.Http2: byte TYPE_CONTINUATION +com.google.android.material.R$attr: int searchViewStyle +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State[] values() +com.google.android.material.R$attr: int tabIconTint +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_DropDown +com.google.android.material.R$color: int abc_btn_colored_borderless_text_material +james.adaptiveicon.R$style: int Theme_AppCompat_Dialog +androidx.work.R$style: int TextAppearance_Compat_Notification_Title +androidx.constraintlayout.motion.widget.MotionLayout: float getProgress() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed +com.google.android.material.R$id: int accessibility_custom_action_16 +androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context) wangdaye.com.geometricweather.R$styleable: int[] MenuItem -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode[] getDisplayModes() -cyanogenmod.power.IPerformanceManager: boolean getProfileHasAppProfiles(int) -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode valueOf(java.lang.String) -com.xw.repo.bubbleseekbar.R$dimen: int abc_button_padding_horizontal_material -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -james.adaptiveicon.R$attr: int autoCompleteTextViewStyle -com.github.rahatarmanahmed.cpv.CircularProgressView$5: CircularProgressView$5(com.github.rahatarmanahmed.cpv.CircularProgressView) -androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$attr: int title -com.google.android.material.floatingactionbutton.FloatingActionButton: void setImageResource(int) -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderPackage -com.google.android.material.R$attr: int listChoiceIndicatorSingleAnimated -androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Light -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getIce() -android.didikee.donate.R$id: int disableHome -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontStyle -androidx.lifecycle.LiveData$1 -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: WeatherInfo$DayForecast$Builder(int) -com.turingtechnologies.materialscrollbar.R$dimen: int notification_action_icon_size -com.google.android.material.R$styleable: int TextInputLayout_prefixText -retrofit2.OkHttpCall: boolean executed -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_switchTextOff -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -com.google.android.material.R$style: int ShapeAppearanceOverlay -wangdaye.com.geometricweather.R$layout: int design_menu_item_action_area -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_grey -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$id: int scrollIndicatorDown -wangdaye.com.geometricweather.R$id: int item_details_content -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: void run() -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_horizontal_padding -okio.AsyncTimeout: void enter() -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType NONE -com.google.android.material.R$string: int path_password_eye_mask_strike_through -wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_gitHub -wangdaye.com.geometricweather.R$drawable: int ic_thx -com.jaredrummler.android.colorpicker.R$attr: int fastScrollEnabled -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.turingtechnologies.materialscrollbar.DragScrollBar: int getMode() -androidx.appcompat.widget.AppCompatSpinner: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingTop() -androidx.preference.R$style: int Theme_AppCompat_NoActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int ThunderstormProbability -androidx.appcompat.R$attr: int seekBarStyle -androidx.preference.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_Primary -androidx.viewpager2.R$id: int accessibility_custom_action_26 -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findPlatform() -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type[] values() -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.util.concurrent.locks.Condition condition -com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context,android.util.AttributeSet) -androidx.loader.R$id: int notification_background -androidx.preference.R$attr: int showTitle -androidx.preference.R$attr: int switchStyle -android.support.v4.os.ResultReceiver: android.os.Parcelable$Creator CREATOR -androidx.lifecycle.LiveData: int getVersion() -okhttp3.internal.http2.Http2Connection$5: Http2Connection$5(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,java.util.List,boolean) -com.google.android.material.appbar.CollapsingToolbarLayout: void setTitleEnabled(boolean) -com.google.android.material.R$attr: int tabIconTintMode -com.jaredrummler.android.colorpicker.R$id: int titleDividerNoCustom -cyanogenmod.app.LiveLockScreenInfo: cyanogenmod.app.LiveLockScreenInfo clone() -com.google.gson.FieldNamingPolicy$5: java.lang.String translateName(java.lang.reflect.Field) -androidx.preference.R$styleable: int SwitchPreference_summaryOff -okhttp3.internal.connection.RealConnection: long idleAtNanos -androidx.hilt.R$id: int text -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: int UnitType -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: java.util.concurrent.atomic.AtomicReference observers -com.turingtechnologies.materialscrollbar.R$integer: int abc_config_activityDefaultDur -okhttp3.Response: void close() -androidx.preference.R$color: int abc_tint_default -androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_end -james.adaptiveicon.R$styleable: int SearchView_layout -com.google.android.material.R$attr: int searchHintIcon -okhttp3.internal.http2.Http2Writer: void writeMedium(okio.BufferedSink,int) -cyanogenmod.externalviews.ExternalView$6 -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_statusBarBackground -com.xw.repo.bubbleseekbar.R$styleable: int[] Spinner -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type[] values() -com.google.android.material.R$attr: int divider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPubTime(java.lang.String) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getThunderstormPrecipitation() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: AccuCurrentResult$PrecipitationSummary$PastHour$Imperial() -wangdaye.com.geometricweather.R$string: int content_des_minutely_precipitation -androidx.lifecycle.extensions.R$style: R$style() -androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_to_on_mtrl_000 -androidx.viewpager2.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setPrecipitationProbability(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean) -androidx.appcompat.resources.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_icon -cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: int KPH -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: ObservableGroupJoin$LeftRightEndObserver(io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport,boolean,int) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: ObservableTimeout$TimeoutConsumer(long,io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutSelectorSupport) -okhttp3.internal.cache.CacheStrategy -retrofit2.Utils$WildcardTypeImpl: int hashCode() -wangdaye.com.geometricweather.R$array: int pressure_unit_voices -com.bumptech.glide.integration.okhttp.R$id: int actions -androidx.appcompat.widget.AppCompatTextView: android.content.res.ColorStateList getSupportCompoundDrawablesTintList() -okhttp3.internal.cache.DiskLruCache: void setMaxSize(long) -okhttp3.internal.http2.Hpack$Writer: void insertIntoDynamicTable(okhttp3.internal.http2.Header) -wangdaye.com.geometricweather.R$layout: int design_navigation_item -okhttp3.internal.platform.Jdk9Platform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) -cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CURRENT_WEATHER_URI -james.adaptiveicon.R$styleable: int AppCompatTheme_windowMinWidthMajor -com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1 -okio.Okio$4: Okio$4(java.net.Socket) -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconEndPadding -androidx.preference.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -io.reactivex.internal.subscriptions.DeferredScalarSubscription: java.lang.Object value -androidx.customview.R$dimen: int notification_small_icon_background_padding -com.google.android.material.tabs.TabLayout: void setScrollAnimatorListener(android.animation.Animator$AnimatorListener) -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.Map lefts -wangdaye.com.geometricweather.R$string: int settings_summary_unit -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_10 -androidx.preference.R$attr: int buttonBarPositiveButtonStyle -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onModeChanged(boolean) -com.xw.repo.bubbleseekbar.R$style: int Platform_V25_AppCompat -cyanogenmod.weather.WeatherLocation$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense -androidx.core.R$styleable: int[] GradientColorItem -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog -cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(android.os.Parcel) -com.turingtechnologies.materialscrollbar.DragScrollBar: DragScrollBar(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3 -wangdaye.com.geometricweather.R$drawable: int shortcuts_refresh -wangdaye.com.geometricweather.R$styleable: int ListPreference_entries -androidx.fragment.R$drawable: int notification_action_background -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Button -com.google.android.material.R$string: int material_timepicker_minute -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTintMode -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_colorPresets -cyanogenmod.weather.WeatherInfo: double access$602(cyanogenmod.weather.WeatherInfo,double) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onActionModeStarted(android.view.ActionMode) -com.xw.repo.bubbleseekbar.R$styleable: int[] FontFamily -androidx.lifecycle.ReportFragment: void setProcessListener(androidx.lifecycle.ReportFragment$ActivityInitializationListener) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRealFeelShaderTemperature(java.lang.Integer) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SeekBar_Discrete -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerComplete(int,boolean) -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setPubTime(java.util.Date) -androidx.viewpager.widget.ViewPager: void setCurrentItem(int) -com.google.android.material.R$styleable: int Constraint_layout_constraintStart_toStartOf -okhttp3.EventListener: void responseHeadersEnd(okhttp3.Call,okhttp3.Response) -com.google.android.material.progressindicator.ProgressIndicator: void setAnimatorDurationScaleProvider(com.google.android.material.progressindicator.AnimatorDurationScaleProvider) -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getRippleColor() -james.adaptiveicon.R$dimen: int abc_action_bar_content_inset_material -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.AlertEntity) -androidx.constraintlayout.widget.R$dimen: R$dimen() -androidx.work.R$id: int accessibility_custom_action_20 -com.google.android.material.R$styleable: int Transform_android_translationY +androidx.constraintlayout.widget.R$id: int search_badge +androidx.appcompat.R$styleable: int ActionBarLayout_android_layout_gravity +androidx.hilt.lifecycle.R$style: int Widget_Compat_NotificationActionContainer +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +androidx.preference.R$id: int expand_activities_button +okhttp3.Address: okhttp3.HttpUrl url() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRealFeelShaderTemperature +com.google.android.material.R$style: int Theme_AppCompat_DayNight_NoActionBar +okhttp3.Cache: void update(okhttp3.Response,okhttp3.Response) +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_showMotionSpec +com.google.android.material.R$dimen: int mtrl_slider_track_top +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBarLayout_android_layout_gravity +com.google.android.material.R$drawable: int abc_seekbar_track_material +androidx.appcompat.resources.R$styleable: int ColorStateListItem_android_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Large +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription,long) +wangdaye.com.geometricweather.R$dimen: int abc_text_size_caption_material +androidx.appcompat.R$attr: int actionBarItemBackground +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +androidx.vectordrawable.animated.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_shapeAppearance +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_LIVE_LOCK_SCREEN +wangdaye.com.geometricweather.R$styleable: int KeyCycle_motionTarget +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginStart +com.google.android.material.R$id: int on +androidx.lifecycle.SavedStateViewModelFactory: android.os.Bundle mDefaultArgs +okhttp3.OkHttpClient$Builder: java.util.List interceptors() +wangdaye.com.geometricweather.R$dimen: int fastscroll_default_thickness +okhttp3.OkHttpClient$Builder: int callTimeout +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: int capacityHint +cyanogenmod.library.R$id: R$id() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlActivated +okhttp3.logging.HttpLoggingInterceptor$Logger$1: HttpLoggingInterceptor$Logger$1() +com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onNext(java.lang.Object) +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackActiveTintList() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: float hoursOfSun +cyanogenmod.app.CustomTile$ExpandedStyle: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tMin +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +androidx.fragment.R$styleable: int GradientColor_android_startColor +okhttp3.internal.http2.Hpack$Writer: void clearDynamicTable() +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: io.reactivex.SingleSource other +wangdaye.com.geometricweather.db.entities.DaoMaster: int SCHEMA_VERSION +com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String FLAVOR +cyanogenmod.app.suggest.ApplicationSuggestion: void writeToParcel(android.os.Parcel,int) +com.google.android.material.R$integer: int mtrl_badge_max_character_count +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: MfCurrentResult$Observation() +wangdaye.com.geometricweather.R$string: int key_notification_background_color +androidx.appcompat.R$drawable: int abc_switch_thumb_material +com.turingtechnologies.materialscrollbar.R$styleable: int[] PopupWindow +okhttp3.Protocol: Protocol(java.lang.String,int,java.lang.String) +okhttp3.HttpUrl$Builder: java.lang.String toString() +io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function) +james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +androidx.vectordrawable.R$id: int tag_accessibility_pane_title +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_stacked_max_height +androidx.preference.R$style: int Platform_AppCompat_Light +androidx.constraintlayout.widget.R$color: int secondary_text_default_material_light +androidx.appcompat.R$drawable: int notification_icon_background +james.adaptiveicon.R$styleable: int ViewStubCompat_android_id +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf +com.xw.repo.bubbleseekbar.R$attr: int defaultQueryHint +james.adaptiveicon.R$dimen: int notification_small_icon_size_as_large +okio.Buffer: okio.Buffer writeUtf8(java.lang.String,int,int) +okio.Buffer: okio.ByteString hmacSha1(okio.ByteString) +okhttp3.MultipartBody: okhttp3.MediaType FORM +com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_alpha +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean setActiveProfile(android.os.ParcelUuid) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: AccuCurrentResult$RealFeelTemperature$Metric() +okhttp3.OkHttpClient$Builder: okhttp3.Dispatcher dispatcher +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldDescription +wangdaye.com.geometricweather.R$string: int ragweed +retrofit2.SkipCallbackExecutor +com.jaredrummler.android.colorpicker.R$color: int error_color_material_light +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String unitId +androidx.constraintlayout.widget.R$style: int Widget_Compat_NotificationActionText +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundTintList(android.content.res.ColorStateList) +james.adaptiveicon.R$attr: int searchViewStyle +com.google.android.material.R$dimen: int mtrl_extended_fab_top_padding +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: Http1Codec$UnknownLengthSource(okhttp3.internal.http1.Http1Codec) +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +android.didikee.donate.R$styleable: int Toolbar_menu +okhttp3.OkHttpClient: int callTimeoutMillis() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap +android.didikee.donate.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String formattedId +com.google.android.material.R$anim: int abc_grow_fade_in_from_bottom +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onProgressUpdate(float) +com.google.android.material.button.MaterialButton: void setRippleColor(android.content.res.ColorStateList) +okhttp3.internal.http.RealInterceptorChain: int readTimeout +cyanogenmod.app.IPartnerInterface: void setAirplaneModeEnabled(boolean) +com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeTopRight +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int Preference_icon +androidx.constraintlayout.widget.R$attr: int actionLayout +cyanogenmod.app.suggest.IAppSuggestProvider +com.turingtechnologies.materialscrollbar.R$attr: int actionBarSize +androidx.preference.R$drawable: int btn_radio_off_to_on_mtrl_animation +okhttp3.internal.cache.DiskLruCache: boolean $assertionsDisabled +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorScheme(int[]) +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getLongTemperatureText(android.content.Context,int) +androidx.annotation.Keep +wangdaye.com.geometricweather.R$styleable: int RadialViewGroup_materialCircleRadius +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_Bridge +androidx.appcompat.R$styleable: int AppCompatTheme_colorControlNormal +cyanogenmod.app.ProfileGroup: int describeContents() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getMoldLevel() +com.google.android.material.R$id: int autoCompleteToStart +retrofit2.KotlinExtensions$await$4$2: void onResponse(retrofit2.Call,retrofit2.Response) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult +wangdaye.com.geometricweather.R$attr: int errorTextColor +james.adaptiveicon.R$style: int Widget_AppCompat_Button_Borderless +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport parent +com.jaredrummler.android.colorpicker.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +com.google.android.material.R$style: int Theme_MaterialComponents_DialogWhenLarge +retrofit2.converter.gson.GsonResponseBodyConverter: java.lang.Object convert(okhttp3.ResponseBody) +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType TransactionRunnable +cyanogenmod.providers.CMSettings$Secure: java.lang.String ADB_NOTIFY +com.google.android.material.R$styleable: int AppCompatTheme_buttonStyle +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List alert +androidx.appcompat.resources.R$id: int tag_unhandled_key_listeners +androidx.lifecycle.ClassesInfoCache$CallbackInfo: void invokeCallbacks(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) +com.google.android.material.R$id: int src_in +com.google.android.material.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +androidx.coordinatorlayout.R$attr: int layout_keyline +cyanogenmod.app.BaseLiveLockManagerService: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.xw.repo.bubbleseekbar.R$styleable: int[] SwitchCompat +cyanogenmod.power.PerformanceManager: java.lang.String POWER_PROFILE_CHANGED +androidx.lifecycle.FullLifecycleObserverAdapter: androidx.lifecycle.LifecycleEventObserver mLifecycleEventObserver +android.didikee.donate.R$styleable: int AppCompatTheme_dialogTheme +okio.AsyncTimeout: okio.AsyncTimeout next +androidx.preference.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.R$id: int ragweedValue +cyanogenmod.weatherservice.IWeatherProviderService$Stub: IWeatherProviderService$Stub() +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder domain(java.lang.String) +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollEnabled +james.adaptiveicon.AdaptiveIconView: james.adaptiveicon.AdaptiveIcon getIcon() +com.google.android.material.chip.Chip: void setTextEndPaddingResource(int) +androidx.loader.R$id: int action_divider +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_normal_material_light +okhttp3.internal.tls.BasicTrustRootIndex: int hashCode() +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void request(long) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionMode +okhttp3.internal.http1.Http1Codec +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric +com.google.android.material.R$attr: int fontProviderCerts +com.google.android.material.R$styleable: int MenuView_android_itemTextAppearance +android.didikee.donate.R$color: int primary_text_disabled_material_dark +android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindDirection(java.lang.String) +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: android.os.IBinder mRemote +com.google.android.material.navigation.NavigationView: android.view.Menu getMenu() +androidx.coordinatorlayout.R$id: int time +cyanogenmod.app.CMStatusBarManager: void publishTileAsUser(java.lang.String,int,cyanogenmod.app.CustomTile,android.os.UserHandle) +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_card +com.xw.repo.bubbleseekbar.R$anim: int abc_slide_out_bottom +wangdaye.com.geometricweather.R$color: int cardview_light_background +wangdaye.com.geometricweather.R$drawable: int btn_radio_off_mtrl +com.google.android.material.R$styleable: int NavigationView_itemTextAppearance +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +androidx.appcompat.R$attr: int colorButtonNormal +androidx.viewpager.R$drawable: int notification_bg +james.adaptiveicon.R$id: int notification_main_column +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver +androidx.preference.R$attr: int ttcIndex +androidx.viewpager.R$integer +androidx.appcompat.R$attr: int multiChoiceItemLayout +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry: java.lang.String type +retrofit2.Retrofit$Builder: retrofit2.Retrofit build() +androidx.hilt.work.R$styleable: int Fragment_android_name +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomAppBar +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderAuthority +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String HOMESCREEN_URI +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_pixel +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.Observer downstream +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setWallpaperId(long) +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontVariationSettings +com.google.android.material.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow12h +com.google.android.material.R$style: int Widget_AppCompat_PopupWindow +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_subtitle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: double Value +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setStatus(int) +androidx.fragment.R$attr: int fontProviderFetchTimeout +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setPathSegment(int,java.lang.String) +com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.vectordrawable.animated.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.R$attr: int cpv_alphaChannelText +com.bumptech.glide.R$drawable: int notification_icon_background +cyanogenmod.providers.CMSettings$Secure: int getIntForUser(android.content.ContentResolver,java.lang.String,int) +androidx.constraintlayout.widget.R$style: int Base_DialogWindowTitle_AppCompat +okio.Options: void buildTrieRecursive(long,okio.Buffer,int,java.util.List,int,int,java.util.List) +okio.Buffer$UnsafeCursor: long offset +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.bumptech.glide.integration.okhttp.R$id: int italic +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_maxHeight +androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontStyle +android.didikee.donate.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_android_alpha +androidx.vectordrawable.R$id: int accessibility_custom_action_12 +com.bumptech.glide.integration.okhttp.R$layout: R$layout() +androidx.appcompat.R$styleable: int AppCompatTextView_drawableTopCompat +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource[],io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +retrofit2.OkHttpCall: retrofit2.Response execute() +androidx.constraintlayout.motion.widget.MotionLayout: float getVelocity() +cyanogenmod.app.ThemeVersion: int CM12_PRE_VERSIONING +com.google.android.material.textfield.TextInputLayout: void removeOnEndIconChangedListener(com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onSubscribe(io.reactivex.disposables.Disposable) +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Editor edit(java.lang.String) +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getUnitId() +android.didikee.donate.R$attr: int navigationContentDescription +androidx.appcompat.R$style: int Animation_AppCompat_Tooltip +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer apparentTemperature +com.google.android.material.R$styleable: int AppCompatTextView_autoSizePresetSizes +androidx.vectordrawable.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSnowPrecipitation() +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableEnd +wangdaye.com.geometricweather.R$attr: int textStartPadding +android.didikee.donate.R$styleable: int Toolbar_titleMarginTop +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object getKey(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +okhttp3.Cookie$Builder: java.lang.String path +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarButtonStyle +androidx.constraintlayout.widget.R$id: int checked +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_bias +wangdaye.com.geometricweather.R$style: int Base_V28_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int MaterialCheckBox_buttonTint +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String wind_speed +com.google.android.material.R$styleable: int Tooltip_android_layout_margin +wangdaye.com.geometricweather.R$attr: int duration +com.google.android.material.slider.BaseSlider: void setTrackInactiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$id: int startHorizontal +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner inner +com.google.android.material.R$styleable: int[] TextInputLayout +androidx.customview.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.R$layout: int notification_big +com.google.android.material.R$styleable: int KeyTimeCycle_motionProgress +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardCornerRadius +com.google.android.material.R$attr: int deriveConstraintsFrom +androidx.hilt.work.R$string: int status_bar_notification_info_overflow +androidx.viewpager.R$styleable: int ColorStateListItem_alpha +cyanogenmod.profiles.ConnectionSettings: int getConnectionId() +com.turingtechnologies.materialscrollbar.R$id: int start +androidx.legacy.coreutils.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getDurationVoice(android.content.Context,float) +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_hideMotionSpec +cyanogenmod.app.CustomTile$1 +wangdaye.com.geometricweather.R$color: int colorRootDark +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String providerId +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_material +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_dither +wangdaye.com.geometricweather.R$string: int settings_title_speed_unit +wangdaye.com.geometricweather.R$attr: int stackFromEnd +wangdaye.com.geometricweather.R$attr: int navigationContentDescription +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float co +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: float unitFactor +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItem +james.adaptiveicon.R$styleable: int[] AppCompatTextHelper +com.google.android.material.R$attr: int reverseLayout +cyanogenmod.app.CustomTile$ListExpandedStyle: void setListItems(java.util.ArrayList) +okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman get() +cyanogenmod.externalviews.KeyguardExternalViewProviderService +com.turingtechnologies.materialscrollbar.R$attr: int chipEndPadding +com.google.android.material.R$styleable: int Transition_android_id +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.R$color: int material_grey_600 +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleTintMode(android.graphics.PorterDuff$Mode) +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType WEBP +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +okhttp3.internal.http1.Http1Codec: void writeRequest(okhttp3.Headers,java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +androidx.swiperefreshlayout.R$dimen +com.google.android.material.R$attr: int minTouchTargetSize +androidx.recyclerview.R$dimen: int notification_action_icon_size +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean offer(java.lang.Object) +okhttp3.internal.http2.Http2Connection$5: java.util.List val$requestHeaders +com.google.android.material.R$id: int material_timepicker_ok_button +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode +com.google.android.material.R$attr: int imageButtonStyle +com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_simple +com.google.android.material.appbar.AppBarLayout$Behavior: AppBarLayout$Behavior() +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemHorizontalPadding +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode HTTP_1_1_REQUIRED +androidx.appcompat.R$color: int abc_secondary_text_material_dark +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable +wangdaye.com.geometricweather.R$attr: int selectable +com.xw.repo.bubbleseekbar.R$color: int material_grey_850 +com.xw.repo.bubbleseekbar.R$attr: int editTextStyle +wangdaye.com.geometricweather.R$styleable: int[] PreferenceImageView +wangdaye.com.geometricweather.R$string: int content_des_pm25 +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Colored +com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getHandleOffset() +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startX +cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String CITY_ID +wangdaye.com.geometricweather.R$attr: int colorAccent +wangdaye.com.geometricweather.R$drawable: int notif_temp_125 +com.xw.repo.bubbleseekbar.R$attr: int autoSizeStepGranularity +com.google.android.material.textfield.TextInputLayout: float getHintCollapsedTextHeight() +android.didikee.donate.R$styleable: int ActionBar_logo com.google.android.material.R$styleable: int ProgressIndicator_android_indeterminate -cyanogenmod.app.ICustomTileListener: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -android.didikee.donate.R$drawable: int notification_bg_normal_pressed -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.android.material.R$style: int Theme_AppCompat_Dialog -io.reactivex.Observable: io.reactivex.Observable switchMap(io.reactivex.functions.Function) -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startColor -com.google.android.material.R$styleable: int MenuItem_android_alphabeticShortcut -wangdaye.com.geometricweather.R$attr: int paddingBottomSystemWindowInsets -wangdaye.com.geometricweather.R$layout: int notification_action -com.google.android.material.R$styleable: int Badge_number -com.google.android.material.R$style: int TestStyleWithThemeLineHeightAttribute -androidx.preference.R$style: int Widget_AppCompat_Light_ListPopupWindow -cyanogenmod.weatherservice.IWeatherProviderService: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) -james.adaptiveicon.R$style: int Widget_Compat_NotificationActionText -james.adaptiveicon.R$styleable: int ActionBar_hideOnContentScroll -com.jaredrummler.android.colorpicker.R$styleable: int[] GradientColorItem -okio.Buffer: void write(okio.Buffer,long) -wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_ripple_color -androidx.loader.content.Loader: void unregisterOnLoadCanceledListener(androidx.loader.content.Loader$OnLoadCanceledListener) -okio.ForwardingSink: void flush() -okhttp3.OkHttpClient: okhttp3.Authenticator proxyAuthenticator() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_visibility -androidx.appcompat.R$attr: int contentInsetRight -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias -wangdaye.com.geometricweather.R$layout: int item_weather_daily_line -retrofit2.BuiltInConverters$UnitResponseBodyConverter: kotlin.Unit convert(okhttp3.ResponseBody) -androidx.transition.R$dimen: int notification_subtext_size -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration -androidx.hilt.R$id: int title -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_ALARM -androidx.constraintlayout.widget.R$color: int ripple_material_light -com.google.android.material.R$styleable: int[] ProgressIndicator -wangdaye.com.geometricweather.R$color: int colorTextAlert -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginStart -com.google.android.material.R$id: int accessibility_custom_action_20 -okhttp3.internal.http.RealInterceptorChain: int readTimeout -wangdaye.com.geometricweather.R$attr: int windowActionModeOverlay -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: int UnitType -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.xw.repo.bubbleseekbar.R$attr: int coordinatorLayoutStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String unit -com.google.android.material.R$id: int ignoreRequest -androidx.preference.R$attr: int actionMenuTextAppearance -android.didikee.donate.R$id: int notification_main_column_container -com.google.android.material.chip.Chip: void setTextEndPaddingResource(int) -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalBias -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode ENHANCE_YOUR_CALM -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: AccuCurrentResult$PrecipitationSummary$PastHour() -wangdaye.com.geometricweather.R$attr: int contentInsetLeft -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle -com.google.android.material.R$color: int mtrl_fab_icon_text_color_selector -androidx.appcompat.R$color: int bright_foreground_material_light -com.google.android.material.R$attr: int track -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState UNDEFINED -com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context) -okhttp3.internal.connection.RealConnection: okhttp3.Route route -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType INT_TYPE -com.bumptech.glide.R$styleable: int[] GradientColorItem -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onNext(java.lang.Object) -androidx.recyclerview.R$id: int action_container -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao chineseCityEntityDao -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitationProbability -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_SPEED_UNIT -androidx.lifecycle.ProcessLifecycleOwner$1: void run() -com.google.android.material.circularreveal.CircularRevealGridLayout -io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future) -androidx.customview.R$attr: int fontProviderFetchStrategy -androidx.appcompat.R$dimen: int compat_button_inset_vertical_material -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getHintTextColor() -androidx.lifecycle.ViewModelProviders: ViewModelProviders() -wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_to_on_mtrl_000 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_popup_background_mtrl_mult -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_interval -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_horizontal_padding -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: java.util.concurrent.TimeUnit unit -com.google.android.material.R$attr: int tabStyle -androidx.constraintlayout.widget.R$attr: int textAppearanceListItemSmall -cyanogenmod.util.ColorUtils: com.android.internal.util.cm.palette.Palette$Swatch getDominantSwatch(com.android.internal.util.cm.palette.Palette) -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getLastThemeChangeTime -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPlaceholderText() -androidx.appcompat.widget.LinearLayoutCompat: void setDividerDrawable(android.graphics.drawable.Drawable) -android.didikee.donate.R$id: int action_mode_bar_stub -com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_fast_out_linear_in -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onNext(java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -cyanogenmod.app.ILiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_margin -okhttp3.Cookie: java.lang.String value -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_landscape_header_width -cyanogenmod.hardware.ThermalListenerCallback$State: java.lang.String toString(int) -okio.Pipe$PipeSource: void close() -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void onAttachedToWindow() -wangdaye.com.geometricweather.R$attr: int autoCompleteTextViewStyle -okhttp3.internal.ws.RealWebSocket: boolean processNextFrame() -androidx.multidex.MultiDexExtractor$ExtractedDex: MultiDexExtractor$ExtractedDex(java.io.File,java.lang.String) -com.google.android.material.R$layout: int notification_template_part_chronometer -androidx.constraintlayout.widget.R$id: int tag_accessibility_clickable_spans -cyanogenmod.app.Profile$TriggerType: int BLUETOOTH -com.google.android.material.R$animator: R$animator() -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingBottom -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_2_material -cyanogenmod.os.Build: java.lang.String UNKNOWN -androidx.appcompat.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Large -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog_Alert -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_WEATHER -androidx.vectordrawable.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$id: int on -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_showDividers -com.google.android.material.R$attr: int layout_constraintCircle -androidx.fragment.app.Fragment -com.google.android.material.slider.RangeSlider: void setThumbStrokeColorResource(int) +com.google.android.material.R$styleable: int Tooltip_android_minWidth +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_rippleColor +androidx.hilt.work.R$id: int accessibility_custom_action_3 +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance +android.didikee.donate.R$dimen: int abc_text_size_small_material +androidx.legacy.coreutils.R$layout: int notification_action_tombstone +androidx.hilt.work.R$integer +io.reactivex.internal.util.ArrayListSupplier +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: SwipeRefreshLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$attr: int cardElevation +android.didikee.donate.R$id: int search_button +james.adaptiveicon.R$dimen: int abc_search_view_preferred_width +androidx.coordinatorlayout.R$id: int accessibility_custom_action_30 +com.xw.repo.bubbleseekbar.R$attr: int bsb_hide_bubble +androidx.preference.R$color: int switch_thumb_disabled_material_light +com.turingtechnologies.materialscrollbar.R$style: int Widget_Compat_NotificationActionContainer +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.AbstractDaoSession getSession() +androidx.appcompat.R$attr: int actionBarTabBarStyle +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String STYLE_URI +com.google.android.material.chip.Chip: void setBackground(android.graphics.drawable.Drawable) +androidx.appcompat.view.menu.StandardMenuPopup +com.jaredrummler.android.colorpicker.R$attr: int buttonBarNeutralButtonStyle +androidx.preference.R$id: int listMode +com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: void setInternalAutoHideListener(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) +okhttp3.Dispatcher: java.util.List queuedCalls() +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.AlertEntity,int) +androidx.appcompat.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamily +androidx.coordinatorlayout.R$dimen: int notification_main_column_padding_top +io.reactivex.internal.subscriptions.SubscriptionArbiter: void cancel() +androidx.preference.R$id: int shortcut +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_always_show_bubble +okio.SegmentPool: okio.Segment take() +com.jaredrummler.android.colorpicker.R$attr: int colorPrimary +retrofit2.http.DELETE: java.lang.String value() +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_actionTextColorAlpha +androidx.lifecycle.SavedStateViewModelFactory: androidx.savedstate.SavedStateRegistry mSavedStateRegistry +cyanogenmod.app.IPartnerInterface$Stub$Proxy: boolean setZenModeWithDuration(int,long) +androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +com.google.android.material.R$attr: int drawPath +okio.Pipe$PipeSource: okio.Timeout timeout() +cyanogenmod.power.IPerformanceManager$Stub$Proxy: IPerformanceManager$Stub$Proxy(android.os.IBinder) +androidx.core.R$id: int accessibility_custom_action_5 +androidx.constraintlayout.widget.R$attr: int activityChooserViewStyle +androidx.appcompat.R$string: int abc_menu_space_shortcut_label +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: int UnitType +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTopCompat +okio.Segment: Segment() +androidx.preference.R$color: int abc_primary_text_disable_only_material_light +com.google.android.material.R$styleable: int MenuItem_alphabeticModifiers +wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_material_anim +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: boolean isDisposed() com.google.android.material.R$color: int ripple_material_light -com.google.android.material.R$styleable: int ConstraintSet_android_elevation -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle MATERIAL -androidx.hilt.work.R$id: int tag_accessibility_clickable_spans -androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$color: int design_default_color_on_surface -androidx.preference.R$id: int accessibility_custom_action_26 -wangdaye.com.geometricweather.R$string: int abc_searchview_description_voice -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Category -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelMenuListTheme -james.adaptiveicon.R$style: int Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -com.turingtechnologies.materialscrollbar.TouchScrollBar: int getMode() -androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -androidx.preference.R$layout: int abc_alert_dialog_material -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableItem_android_id -com.google.android.material.R$color: int design_icon_tint -com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_weight -androidx.appcompat.R$styleable: int[] AppCompatImageView -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.lang.String MobileLink -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_4 -com.google.android.material.button.MaterialButton: void setIconGravity(int) -com.turingtechnologies.materialscrollbar.R$color: int ripple_material_light -cyanogenmod.app.Profile: cyanogenmod.profiles.RingModeSettings mRingMode -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy UPPER_CAMEL_CASE -io.reactivex.internal.util.EmptyComponent: void onNext(java.lang.Object) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_confirm_button_min_width -com.xw.repo.bubbleseekbar.R$styleable: int[] MenuView -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: double Value -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_registerThermalListener -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: long serialVersionUID -androidx.work.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.R$attr: int toolbarStyle -androidx.recyclerview.R$styleable: int RecyclerView_android_orientation -com.xw.repo.bubbleseekbar.R$styleable: int ActionMenuItemView_android_minWidth -okhttp3.internal.ws.RealWebSocket -androidx.constraintlayout.widget.R$attr: int actionViewClass -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec codec() -androidx.vectordrawable.animated.R$styleable: R$styleable() -androidx.preference.R$id: int search_go_btn -androidx.hilt.lifecycle.R$id: int text2 -androidx.preference.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -james.adaptiveicon.R$styleable: int[] ViewBackgroundHelper -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: void setValue(java.util.List) -androidx.fragment.R$layout: int custom_dialog -com.google.android.material.R$styleable: int Toolbar_title -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitationDuration -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_91 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableBottomCompat -androidx.preference.R$styleable: int Toolbar_collapseIcon -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -retrofit2.OkHttpCall: okhttp3.Request request() -com.google.android.material.R$id: int pathRelative -wangdaye.com.geometricweather.R$drawable: int abc_dialog_material_background -androidx.preference.R$attr: int panelMenuListTheme -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: int UnitType -androidx.vectordrawable.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.preference.R$style: int PreferenceFragmentList_Material -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf -okio.SegmentPool: okio.Segment next +android.didikee.donate.R$attr: int actionModePopupWindowStyle +com.turingtechnologies.materialscrollbar.R$id: int parentPanel +com.google.android.material.R$attr: int singleSelection +okhttp3.Cookie: java.util.regex.Pattern DAY_OF_MONTH_PATTERN +com.google.android.material.navigation.NavigationView: void setItemMaxLines(int) +wangdaye.com.geometricweather.R$transition: int search_activity_return +androidx.preference.R$attr: int negativeButtonText +androidx.appcompat.R$layout: int abc_select_dialog_material +okhttp3.internal.http2.Http2Writer: void connectionPreface() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed Speed +androidx.appcompat.R$id: int accessibility_custom_action_0 +cyanogenmod.themes.IThemeProcessingListener$Stub: java.lang.String DESCRIPTOR +com.google.android.material.R$style: int Animation_AppCompat_Tooltip +com.xw.repo.bubbleseekbar.R$attr: int searchViewStyle +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTextPadding +james.adaptiveicon.R$color: int background_floating_material_light +james.adaptiveicon.R$attr: int itemPadding +com.google.android.material.R$id: int material_clock_period_pm_button +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTag +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: cyanogenmod.weather.IWeatherServiceProviderChangeListener asInterface(android.os.IBinder) +com.google.android.material.textfield.TextInputLayout: android.widget.TextView getSuffixTextView() +androidx.appcompat.R$id: int on +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +androidx.recyclerview.R$id: int accessibility_custom_action_27 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getCoDesc() +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: void onActive() +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTextView +wangdaye.com.geometricweather.R$style: int CardView +com.google.android.material.R$styleable: int Layout_layout_constraintGuide_begin +com.google.android.material.R$attr: int selectableItemBackground +com.google.gson.JsonIOException: JsonIOException(java.lang.String) +wangdaye.com.geometricweather.R$style: int Preference_PreferenceScreen_Material +androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTemperature +com.google.android.material.R$styleable: int Constraint_layout_constraintRight_toRightOf +cyanogenmod.os.Concierge$ParcelInfo: int mParcelableSize +com.google.gson.stream.JsonReader: int NUMBER_CHAR_DECIMAL +james.adaptiveicon.R$attr: int colorError +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert +wangdaye.com.geometricweather.R$id: int none +androidx.work.R$bool: int workmanager_test_configuration +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String aqiText +com.google.android.material.R$dimen: int material_filled_edittext_font_1_3_padding_top +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalBias +com.xw.repo.bubbleseekbar.R$attr: int textAppearancePopupMenuHeader +cyanogenmod.hardware.CMHardwareManager: java.lang.String getSerialNumber() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2 +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_begin +androidx.constraintlayout.widget.R$color: int abc_search_url_text_normal +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchPadding +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleTextColor +androidx.transition.R$id: int actions +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String unitId +okio.GzipSource: void updateCrc(okio.Buffer,long,long) +androidx.preference.R$styleable: int SearchView_layout +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dividerVertical +androidx.preference.R$dimen: int tooltip_corner_radius +androidx.appcompat.R$styleable: int[] StateListDrawableItem +okhttp3.internal.http2.Http2: byte FLAG_END_HEADERS +io.reactivex.Observable: io.reactivex.Observable throttleLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type RIGHT +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_timeText +wangdaye.com.geometricweather.R$styleable: int Transform_android_transformPivotY +androidx.appcompat.resources.R$id: int accessibility_custom_action_15 +com.google.android.material.R$attr: int firstBaselineToTopHeight +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: LifecycleDispatcher$DispatcherActivityCallback() +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setIconTintList(android.content.res.ColorStateList) +androidx.activity.R$dimen: int notification_small_icon_size_as_large +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean,int) +james.adaptiveicon.R$attr: int actionBarTabTextStyle +android.didikee.donate.R$attr: int subtitle +wangdaye.com.geometricweather.R$layout: int preference_category_material +james.adaptiveicon.R$attr: int actionModeCopyDrawable +okhttp3.internal.connection.StreamAllocation: okhttp3.ConnectionPool connectionPool +androidx.work.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_shapeAppearance +androidx.activity.R$drawable: int notification_bg_normal_pressed +com.google.android.material.chip.Chip: void setChipText(java.lang.CharSequence) +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onComplete() +androidx.lifecycle.Lifecycle: void addObserver(androidx.lifecycle.LifecycleObserver) +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: long EpochDateTime +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_allowCustom +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial +com.bumptech.glide.R$color: int ripple_material_light +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TEMPERATURE_UNIT +wangdaye.com.geometricweather.R$string: int feedback_interpret_background_notification_content +androidx.vectordrawable.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor[] values() +cyanogenmod.externalviews.ExternalViewProviderService: java.lang.String TAG +wangdaye.com.geometricweather.R$color: int background_material_light +io.reactivex.Observable: java.lang.Object to(io.reactivex.functions.Function) +com.google.android.material.R$styleable: int NavigationView_itemShapeAppearance +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$styleable: int Variant_region_heightMoreThan +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dividerHorizontal +androidx.preference.R$attr: int fragment +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void setResource(io.reactivex.disposables.Disposable) +androidx.preference.R$bool: int abc_config_actionMenuItemAllCaps +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: long serialVersionUID +james.adaptiveicon.R$attr: int actionBarPopupTheme +com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_behavior +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarItemBackground +wangdaye.com.geometricweather.common.basic.models.weather.Astro +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Bridge +cyanogenmod.app.CMContextConstants$Features: java.lang.String LIVE_LOCK_SCREEN +io.reactivex.internal.util.VolatileSizeArrayList: boolean isEmpty() +androidx.appcompat.R$attr: int windowActionBar +com.google.android.material.R$styleable: int RecyclerView_layoutManager androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -wangdaye.com.geometricweather.R$attr: int backgroundColorStart -com.jaredrummler.android.colorpicker.R$styleable: int[] MultiSelectListPreference -com.google.android.material.R$dimen: int abc_config_prefDialogWidth -com.google.android.material.R$color: int bright_foreground_material_light -androidx.customview.R$styleable: int FontFamilyFont_android_fontVariationSettings -io.reactivex.internal.util.EmptyComponent: void onComplete() -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.UV uv -android.didikee.donate.R$attr: int alpha -androidx.fragment.app.Fragment$SavedState -cyanogenmod.themes.ThemeManager: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_Alert +androidx.lifecycle.ViewModelStore: void put(java.lang.String,androidx.lifecycle.ViewModel) +wangdaye.com.geometricweather.R$attr: int valueTextColor +androidx.preference.R$attr: int maxWidth +com.google.android.material.R$styleable: int Layout_barrierAllowsGoneWidgets +com.google.android.material.progressindicator.ProgressIndicator: void setIndeterminateDrawable(android.graphics.drawable.Drawable) +com.google.android.material.R$attr: int dialogTheme +wangdaye.com.geometricweather.R$string: int today +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Medium +wangdaye.com.geometricweather.R$drawable: int ic_cold +wangdaye.com.geometricweather.R$string: int widget_week +wangdaye.com.geometricweather.common.ui.behaviors.InkPageIndicatorBehavior: InkPageIndicatorBehavior(android.content.Context,android.util.AttributeSet) +com.bumptech.glide.R$id: int notification_main_column_container +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type valueOf(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableCompat +androidx.constraintlayout.widget.R$style: int Animation_AppCompat_Dialog +james.adaptiveicon.R$integer: int config_tooltipAnimTime +androidx.recyclerview.R$id: int tag_unhandled_key_listeners +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: long serialVersionUID +androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState FINISHED +androidx.preference.R$drawable: int abc_vector_test +androidx.constraintlayout.widget.Barrier +androidx.preference.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +okhttp3.internal.http2.Http2: Http2() +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: android.os.IBinder asBinder() +android.didikee.donate.R$style: int Widget_AppCompat_SearchView_ActionBar +com.google.android.material.R$attr: int haloColor +androidx.constraintlayout.widget.R$anim: int abc_popup_enter +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearSelectedStyle +androidx.viewpager2.R$id: int tag_unhandled_key_listeners +cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_MUTE +androidx.work.R$dimen: R$dimen() +wangdaye.com.geometricweather.R$string: int settings_title_location_service +okhttp3.internal.Util: int skipTrailingAsciiWhitespace(java.lang.String,int,int) +cyanogenmod.providers.CMSettings$Global: boolean isLegacySetting(java.lang.String) +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.functions.Function itemTimeoutIndicator +james.adaptiveicon.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String lastModifiedString +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_ab_back_material +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchPadding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isIsShow() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginRight +androidx.dynamicanimation.R$integer: int status_bar_notification_info_maxnum +com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_800 +com.xw.repo.bubbleseekbar.R$string: int abc_action_bar_up_description +wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status[] values() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionModeOverlay +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon +com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_hovered_focused +com.xw.repo.bubbleseekbar.R$dimen: int hint_pressed_alpha_material_dark +com.turingtechnologies.materialscrollbar.R$attr: int paddingStart +androidx.appcompat.R$style: int Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.R$styleable: int NavigationView_headerLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean) +wangdaye.com.geometricweather.R$attr: int order +com.turingtechnologies.materialscrollbar.R$style: int CardView +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_popupTheme +com.turingtechnologies.materialscrollbar.R$anim: int abc_shrink_fade_out_from_bottom +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int RelativeHumidity +com.turingtechnologies.materialscrollbar.Indicator: void setTextColor(int) +androidx.preference.R$styleable: int TextAppearance_textLocale +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.queue.MpscLinkedQueue queue +okhttp3.internal.platform.OptionalMethod: java.lang.Class returnType +com.google.android.material.R$styleable: int ChipGroup_chipSpacingVertical +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogMessage +com.google.android.material.R$attr: int listDividerAlertDialog +androidx.work.R$styleable: int GradientColor_android_type +androidx.preference.R$id: int add +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setMax(float) +wangdaye.com.geometricweather.R$attr: int alpha +cyanogenmod.weatherservice.ServiceRequestResult: java.lang.String access$402(cyanogenmod.weatherservice.ServiceRequestResult,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSwoopDuration +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.disposables.Disposable upstream +androidx.work.BackoffPolicy: androidx.work.BackoffPolicy EXPONENTIAL +retrofit2.HttpException: HttpException(retrofit2.Response) +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String type +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_id +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String advice +james.adaptiveicon.R$dimen: int abc_action_bar_default_height_material +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginLeft +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer getDewPoint() +io.reactivex.internal.observers.BasicIntQueueDisposable: long serialVersionUID +androidx.savedstate.SavedStateRegistry$1 +androidx.appcompat.R$id: int listMode +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_menu_header_material +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode getInstance(java.lang.String) +com.google.android.material.R$style: int Base_CardView +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_SCREEN_ON +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: long serialVersionUID +androidx.hilt.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabInlineLabel +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setBrandId(java.lang.String) +com.google.android.material.internal.NavigationMenuItemView: void setChecked(boolean) +com.turingtechnologies.materialscrollbar.R$layout: int abc_search_dropdown_item_icons_2line +androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context) +wangdaye.com.geometricweather.R$string: int content_desc_check_details +com.google.android.material.R$attr: int textAppearanceListItemSecondary +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_duration +androidx.preference.R$attr: int dialogPreferenceStyle +androidx.appcompat.resources.R$id: int accessibility_custom_action_4 +androidx.drawerlayout.R$id: int notification_background +com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context,android.util.AttributeSet) +cyanogenmod.util.ColorUtils$1: int compare(com.android.internal.util.cm.palette.Palette$Swatch,com.android.internal.util.cm.palette.Palette$Swatch) +okio.AsyncTimeout: boolean cancelScheduledTimeout(okio.AsyncTimeout) +androidx.appcompat.R$layout: int support_simple_spinner_dropdown_item +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingRight +wangdaye.com.geometricweather.R$id: int widget_day_week_week_5 +com.google.android.material.R$styleable: int[] MotionLayout +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void truncateFinal() +com.github.rahatarmanahmed.cpv.CircularProgressView: void resetAnimation() +com.xw.repo.bubbleseekbar.R$color: int abc_secondary_text_material_dark +androidx.preference.R$dimen: int abc_dialog_corner_radius_material +com.google.android.material.R$styleable: int AppCompatImageView_srcCompat +androidx.hilt.R$id: int normal +retrofit2.ParameterHandler$QueryMap: void apply(retrofit2.RequestBuilder,java.util.Map) +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: io.reactivex.Observer downstream +androidx.core.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.R$attr: int checkBoxPreferenceStyle +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicLong index +wangdaye.com.geometricweather.R$attr: int drawable_res_off +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_color +androidx.lifecycle.MediatorLiveData: void onActive() com.xw.repo.bubbleseekbar.R$attr: int tickMarkTint -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_exitFadeDuration -com.google.android.material.R$attr: int navigationViewStyle -androidx.constraintlayout.widget.R$styleable: int Variant_region_widthLessThan -okio.Segment: okio.Segment pop() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setPubTime(java.lang.String) -androidx.appcompat.view.menu.ListMenuItemView: void setGroupDividerEnabled(boolean) -androidx.constraintlayout.widget.R$style: int Base_V22_Theme_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$attr: int msb_recyclerView -com.jaredrummler.android.colorpicker.R$styleable: int BackgroundStyle_selectableItemBackground -androidx.preference.R$styleable: int Toolbar_titleTextColor -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_corner_radius -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric() -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_checkableBehavior -okhttp3.MultipartBody: java.util.List parts -com.google.android.material.R$style: int ShapeAppearanceOverlay_TopLeftCut -androidx.appcompat.R$id: int up -androidx.hilt.work.R$id: int tag_accessibility_pane_title -com.google.android.material.R$styleable: int Constraint_layout_goneMarginBottom -com.google.android.material.R$attr: int colorControlNormal -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_list_padding_top_no_title -com.xw.repo.bubbleseekbar.R$styleable: int ActivityChooserView_initialActivityCount -com.google.android.material.timepicker.ClockHandView: void addOnRotateListener(com.google.android.material.timepicker.ClockHandView$OnRotateListener) -com.jaredrummler.android.colorpicker.R$id: int shades_divider -androidx.activity.R$id: int line3 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: java.lang.String Unit -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUpdateDate(java.util.Date) -cyanogenmod.externalviews.KeyguardExternalView: java.util.LinkedList mQueue -android.didikee.donate.R$attr: int actionProviderClass -androidx.constraintlayout.widget.R$dimen: int hint_pressed_alpha_material_dark -androidx.preference.R$dimen: int abc_cascading_menus_min_smallest_width -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getCurrentDisplayMode -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.R$id: int tag_icon_day -com.google.android.material.R$styleable: int TextInputLayout_counterOverflowTextAppearance -androidx.core.R$id: int text -wangdaye.com.geometricweather.R$layout: int abc_search_dropdown_item_icons_2line -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Button -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleEnabled -com.xw.repo.bubbleseekbar.R$color: int primary_text_disabled_material_light -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Small +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void dispose() +androidx.constraintlayout.motion.widget.MotionHelper: float getProgress() +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderPackage +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_21 +androidx.preference.R$styleable: int PopupWindow_overlapAnchor +android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +cyanogenmod.weather.WeatherInfo$Builder: double mTodaysHighTemp +retrofit2.HttpServiceMethod: java.lang.Object invoke(java.lang.Object[]) +wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding +androidx.appcompat.R$styleable: int Toolbar_contentInsetStartWithNavigation +com.google.android.material.R$attr: int iconSize +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_right_mtrl_light +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country +androidx.preference.R$styleable: int Preference_key +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_5 +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Subtitle1 +com.google.android.material.R$color: int design_dark_default_color_surface +wangdaye.com.geometricweather.R$id: int activity_widget_config_wall +com.google.android.material.R$styleable: int ConstraintSet_constraint_referenced_ids +retrofit2.Retrofit: java.util.concurrent.Executor callbackExecutor() +wangdaye.com.geometricweather.R$attr: int enableCopying +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.util.Date EndDate +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchPopulateAccessibilityEvent(android.view.accessibility.AccessibilityEvent) +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Time +cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCK_PASS_TO_SECURITY_VIEW +com.google.android.material.slider.RangeSlider: float getValueTo() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionMenuTextColor +androidx.preference.R$style: int Preference_DialogPreference_EditTextPreference +okhttp3.internal.http2.Http2Codec: java.lang.String TRANSFER_ENCODING +wangdaye.com.geometricweather.R$attr: int bsb_always_show_bubble_delay +cyanogenmod.profiles.BrightnessSettings: cyanogenmod.profiles.BrightnessSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog_MinWidth +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition BELOW_LINE +wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_backgroundColorStart +okio.SegmentedByteString: boolean rangeEquals(int,byte[],int,int) +okhttp3.internal.connection.StreamAllocation: void streamFinished(boolean,okhttp3.internal.http.HttpCodec,long,java.io.IOException) +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$styleable: int ActionBar_hideOnContentScroll +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty24H +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWetBulbTemperature(java.lang.Integer) +androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_chainStyle +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_showMotionSpec +cyanogenmod.weather.WeatherInfo$Builder: int mTempUnit +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String getUnit() +wangdaye.com.geometricweather.R$drawable: int abc_action_bar_item_background_material +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: float getProgress() +okhttp3.RealCall: okhttp3.internal.http.RetryAndFollowUpInterceptor retryAndFollowUpInterceptor +androidx.preference.R$styleable: int TextAppearance_android_textSize +okhttp3.internal.Util: okio.ByteString UTF_32_BE_BOM +androidx.swiperefreshlayout.R$id: int right_side +james.adaptiveicon.R$color: int dim_foreground_material_dark +androidx.preference.R$attr: int switchPadding +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth +com.bumptech.glide.load.engine.GlideException: com.bumptech.glide.load.Key key +androidx.appcompat.widget.AppCompatImageView +androidx.core.R$dimen: int compat_button_padding_vertical_material +wangdaye.com.geometricweather.R$id: int widget_week_temp_2 +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +androidx.preference.R$drawable: int abc_textfield_activated_mtrl_alpha +org.greenrobot.greendao.AbstractDao: java.lang.Object getKey(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabBar +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_minWidth +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_titleTextStyle +cyanogenmod.profiles.ConnectionSettings: int mConnectionId +androidx.viewpager.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Title +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setEncodedQueryParameter(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.util.Date Rise +androidx.appcompat.view.menu.ActionMenuItemView: void setChecked(boolean) +androidx.fragment.R$id: int action_divider +androidx.vectordrawable.R$drawable: int notification_icon_background +com.google.android.material.R$styleable: int MockView_mock_showDiagonals +androidx.lifecycle.ReportFragment: void onResume() +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String MONTH +androidx.lifecycle.LifecycleRegistry: void pushParentState(androidx.lifecycle.Lifecycle$State) +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalBias +androidx.constraintlayout.widget.R$dimen: int abc_select_dialog_padding_start_material +androidx.appcompat.widget.ScrollingTabContainerView: void setContentHeight(int) +com.google.android.material.R$attr: int actionBarPopupTheme +androidx.vectordrawable.animated.R$attr: int fontWeight +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long readKey(android.database.Cursor,int) +wangdaye.com.geometricweather.R$attr: int seekBarIncrement +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_framePosition +androidx.core.R$styleable: int FontFamilyFont_font +androidx.vectordrawable.animated.R$attr: int fontProviderCerts +retrofit2.converter.gson.GsonRequestBodyConverter +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay valueOf(java.lang.String) +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState valueOf(java.lang.String) +androidx.loader.R$attr: int fontProviderFetchTimeout +androidx.appcompat.R$attr: int backgroundStacked +wangdaye.com.geometricweather.R$style: int Theme_Design_Light +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.Scheduler scheduler +androidx.constraintlayout.widget.R$id: int animateToStart +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_CLOCK +okhttp3.internal.ws.RealWebSocket$2: RealWebSocket$2(okhttp3.internal.ws.RealWebSocket,okhttp3.Request) +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okhttp3.MediaType contentType() +androidx.lifecycle.LiveData: void onActive() +androidx.core.R$dimen: int notification_content_margin_start +com.jaredrummler.android.colorpicker.R$id: int scrollIndicatorUp +wangdaye.com.geometricweather.R$attr: int actionViewClass +wangdaye.com.geometricweather.common.basic.models.weather.Alert: long getAlertId() +okio.ByteString: java.lang.String toString() +androidx.constraintlayout.widget.R$styleable: int[] GradientColorItem +androidx.constraintlayout.helper.widget.Layer: void setScaleY(float) +com.xw.repo.bubbleseekbar.R$attr: int logoDescription +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_arrow_drop_right_black_24dp +okhttp3.internal.ws.RealWebSocket$Close: int code +okhttp3.internal.cache.DiskLruCache$2: boolean $assertionsDisabled +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onNext(java.lang.Object) +com.google.android.material.R$attr: int hideMotionSpec +retrofit2.ParameterHandler$QueryName: void apply(retrofit2.RequestBuilder,java.lang.Object) +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: CustomTileListenerService$ICustomTileListenerWrapper(cyanogenmod.app.CustomTileListenerService,cyanogenmod.app.CustomTileListenerService$1) +androidx.appcompat.R$styleable: int TextAppearance_fontFamily +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingTop +androidx.loader.R$id +androidx.swiperefreshlayout.R$drawable: int notification_bg_normal_pressed +android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_cancel +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onNext(java.lang.Object) +androidx.appcompat.resources.R$id: int tag_accessibility_actions +okio.Options: okio.ByteString[] byteStrings +com.bumptech.glide.integration.okhttp.R$id: int start +okhttp3.Response: okhttp3.Handshake handshake() +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_showDividers +okio.ByteString: okio.ByteString sha512() +androidx.cardview.widget.CardView: void setCardElevation(float) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onError(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void clear() +androidx.viewpager2.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitationDuration +com.jaredrummler.android.colorpicker.R$id: int edit_query +androidx.work.R$id: int line1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean modifyInHour +retrofit2.converter.gson.GsonRequestBodyConverter: java.nio.charset.Charset UTF_8 +com.google.android.material.R$styleable: int Layout_layout_constraintRight_toRightOf +retrofit2.RequestFactory$Builder: boolean gotUrl +com.google.android.material.R$dimen: int mtrl_navigation_item_horizontal_padding +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_82 +com.xw.repo.bubbleseekbar.R$string: int search_menu_title +wangdaye.com.geometricweather.R$id: int widget_text_date +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getIconResStart() +androidx.preference.R$styleable: int CheckBoxPreference_android_summaryOn +androidx.recyclerview.widget.RecyclerView$SavedState: android.os.Parcelable$Creator CREATOR +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabBarStyle +okhttp3.internal.cache.DiskLruCache: long size +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +com.github.rahatarmanahmed.cpv.CircularProgressView$9: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +io.reactivex.internal.util.NotificationLite: java.lang.Object disposable(io.reactivex.disposables.Disposable) +android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Light +com.google.android.material.R$styleable: int[] AppCompatImageView +androidx.preference.R$styleable: int[] ActionMode +com.google.android.material.R$layout: int material_clockface_view +io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,io.reactivex.functions.Function) +okhttp3.ConnectionSpec: java.lang.String[] tlsVersions +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setSwitchView(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout) +com.xw.repo.bubbleseekbar.R$string: int abc_menu_enter_shortcut_label +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_16 +cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationDefault() +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date getRiseDate() +wangdaye.com.geometricweather.R$drawable: int weather_hail_2 +com.turingtechnologies.materialscrollbar.R$id: int tag_unhandled_key_event_manager +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,long) +james.adaptiveicon.R$styleable: int SearchView_android_focusable +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 +androidx.preference.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +wangdaye.com.geometricweather.common.basic.models.weather.Wind +androidx.appcompat.R$dimen: int hint_pressed_alpha_material_dark +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void dispose() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: int Age +com.google.android.material.R$styleable: int Constraint_layout_constraintTop_toTopOf +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText +androidx.appcompat.R$styleable: int AppCompatTheme_actionMenuTextColor +retrofit2.Utils$GenericArrayTypeImpl: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int colorError +com.google.android.material.textfield.TextInputLayout: void setCounterMaxLength(int) +androidx.recyclerview.R$attr: int fastScrollVerticalThumbDrawable +com.google.android.material.R$styleable: int SearchView_queryHint +androidx.core.R$dimen: int compat_button_inset_vertical_material +androidx.preference.R$id: int checked +cyanogenmod.app.ICMTelephonyManager: boolean isSubActive(int) +wangdaye.com.geometricweather.R$styleable: int Toolbar_logo +wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_vertical +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode TRUNCATE +wangdaye.com.geometricweather.R$string: int content_des_sunset +cyanogenmod.externalviews.ExternalView: void setProviderComponent(android.content.ComponentName) +androidx.constraintlayout.widget.R$attr: int maxWidth +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setModifyInHour(boolean) +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$string: int abc_activity_chooser_view_see_all +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,int) +wangdaye.com.geometricweather.R$style: int Theme_Design_BottomSheetDialog +androidx.constraintlayout.widget.R$attr: int layout_constraintTop_toBottomOf +android.didikee.donate.R$drawable: int abc_ic_star_black_48dp +io.reactivex.Observable: io.reactivex.Observable timer(long,java.util.concurrent.TimeUnit) +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +androidx.preference.R$attr: int fontVariationSettings +com.google.android.material.R$styleable: int Layout_layout_constraintTop_toTopOf +com.jaredrummler.android.colorpicker.R$id: int alertTitle +cyanogenmod.externalviews.ExternalViewProperties: boolean hasChanged() +okio.GzipSource: okio.Timeout timeout() +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_auto_adjust_section_mark +androidx.constraintlayout.widget.R$dimen: int notification_small_icon_size_as_large +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleTextAppearance +retrofit2.RequestFactory$Builder: okhttp3.Headers parseHeaders(java.lang.String[]) +androidx.lifecycle.FullLifecycleObserverAdapter: FullLifecycleObserverAdapter(androidx.lifecycle.FullLifecycleObserver,androidx.lifecycle.LifecycleEventObserver) +androidx.appcompat.R$drawable: int abc_text_cursor_material +james.adaptiveicon.R$styleable: int AppCompatTheme_editTextStyle +wangdaye.com.geometricweather.R$attr: int subtitleTextStyle +android.didikee.donate.R$id: int search_close_btn +wangdaye.com.geometricweather.R$drawable: int notif_temp_37 +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitleTextColor +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_25 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_item_background_holo_dark +com.google.android.material.R$styleable: int SwitchCompat_trackTint +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_titleTextStyle +okio.Util: int reverseBytesInt(int) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.R$string: int sp_widget_hourly_trend_setting +androidx.appcompat.R$dimen: int abc_text_size_body_1_material +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Subhead +io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier[] values() +wangdaye.com.geometricweather.R$styleable: int Layout_minHeight +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List timelaps +com.google.android.material.R$attr: int materialCalendarMonthNavigationButton +android.support.v4.os.ResultReceiver$MyResultReceiver: ResultReceiver$MyResultReceiver(android.support.v4.os.ResultReceiver) +androidx.preference.R$styleable: int[] Spinner +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_onClick +androidx.appcompat.R$styleable: int[] AppCompatSeekBar +androidx.preference.R$attr: int actionModePasteDrawable +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_doneButton +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dividerVertical +okhttp3.internal.platform.Platform: javax.net.ssl.SSLContext getSSLContext() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeFindDrawable +android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_RadioButton +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure measure +com.jaredrummler.android.colorpicker.R$id: int square +cyanogenmod.weather.ICMWeatherManager$Stub: android.os.IBinder asBinder() +james.adaptiveicon.R$styleable: int ActionBar_subtitleTextStyle +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getCloseIcon() +androidx.viewpager2.R$id: int action_image +com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_top_outer_color +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_section_mark +androidx.preference.R$style: int Base_Animation_AppCompat_Dialog +androidx.constraintlayout.widget.R$styleable: int[] KeyCycle +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Headline +com.google.android.material.R$styleable: int AppBarLayout_liftOnScrollTargetViewId +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_notificationGroupExistsByName +androidx.viewpager.R$drawable: int notification_bg_normal_pressed +androidx.customview.R$id: int blocking +com.xw.repo.bubbleseekbar.R$id: int list_item +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +wangdaye.com.geometricweather.R$id: int material_value_index +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitationProbability() +com.jaredrummler.android.colorpicker.R$attr: int coordinatorLayoutStyle wangdaye.com.geometricweather.R$dimen: int cpv_required_padding -androidx.appcompat.resources.R$styleable: int[] StateListDrawableItem -com.google.android.material.R$styleable: int AppCompatTheme_checkboxStyle -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onComplete() -com.google.android.material.R$attr: int borderlessButtonStyle -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: org.reactivestreams.Subscriber downstream -androidx.dynamicanimation.R$id: int icon_group -okio.Buffer: okio.Buffer copyTo(java.io.OutputStream,long,long) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset -com.google.android.material.datepicker.MaterialTextInputPicker: MaterialTextInputPicker() -wangdaye.com.geometricweather.R$attr: int isPreferenceVisible -cyanogenmod.weather.CMWeatherManager: java.util.Set mProviderChangedListeners -okhttp3.internal.http2.Http2Reader$ContinuationSource: int streamId -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder name(java.lang.String) -androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_width_major -com.google.android.material.R$color: int abc_tint_default -androidx.constraintlayout.widget.R$styleable: int MotionScene_defaultDuration -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_windowAnimationStyle -io.reactivex.Observable: io.reactivex.Observable concatArrayDelayError(io.reactivex.ObservableSource[]) -com.google.android.material.R$dimen: int notification_action_text_size -com.turingtechnologies.materialscrollbar.R$attr: int height -android.didikee.donate.R$id: int end -wangdaye.com.geometricweather.R$attr: int foregroundInsidePadding -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_wrapMode -okhttp3.Cache$Entry: okhttp3.Response response(okhttp3.internal.cache.DiskLruCache$Snapshot) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Headline -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: ICMWeatherManager$Stub$Proxy(android.os.IBinder) -androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy: ConstraintProxy$BatteryChargingProxy() -okhttp3.internal.Internal: boolean equalsNonHost(okhttp3.Address,okhttp3.Address) -cyanogenmod.themes.ThemeChangeRequest: int getNumChangesRequested() -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.constraintlayout.widget.R$drawable: int abc_seekbar_thumb_material -android.didikee.donate.R$id: int middle -com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_title_material -com.google.android.material.R$style: int Base_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.R$attr: int bsb_section_text_interval -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog -android.didikee.donate.R$dimen: int abc_progress_bar_height_material -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.constraintlayout.widget.R$styleable: int[] PopupWindowBackgroundState -com.google.android.material.R$styleable: int Toolbar_collapseContentDescription -james.adaptiveicon.R$styleable: int LinearLayoutCompat_showDividers -com.google.android.material.R$styleable: int ViewStubCompat_android_inflatedId -cyanogenmod.providers.DataUsageContract: java.lang.String SLOW_SAMPLES -com.google.android.material.R$attr: int layout_constraintRight_creator -wangdaye.com.geometricweather.R$styleable: int[] MaterialCardView -androidx.appcompat.R$styleable: int MenuItem_tooltipText -okio.RealBufferedSource: int readIntLe() -com.google.android.material.R$id: int search_plate -okhttp3.OkHttpClient$Builder: int connectTimeout -okio.ByteString: java.lang.String base64Url() -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: AccuCurrentResult$RealFeelTemperature$Imperial() -com.bumptech.glide.integration.okhttp.R$id: int text -androidx.constraintlayout.widget.R$layout: int abc_screen_simple_overlay_action_mode -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String resPkg -androidx.drawerlayout.R$id: int text -org.greenrobot.greendao.AbstractDao: boolean hasKey(java.lang.Object) -android.didikee.donate.R$styleable: int[] PopupWindowBackgroundState -cyanogenmod.app.ILiveLockScreenManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -okio.Util: boolean arrayRangeEquals(byte[],int,byte[],int,int) -wangdaye.com.geometricweather.R$attr: int navigationIconColor -androidx.viewpager2.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -okhttp3.internal.http2.Http2Connection: int OKHTTP_CLIENT_WINDOW_SIZE -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: int getStrokeColor() -com.google.android.material.R$attr: int tickMarkTintMode -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void cancel() -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackTintList() -wangdaye.com.geometricweather.R$color: int mtrl_textinput_focused_box_stroke_color -androidx.core.widget.NestedScrollView: void setSmoothScrollingEnabled(boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_itemPadding -com.google.android.material.R$styleable: int KeyAttribute_motionTarget -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design -com.google.android.material.R$styleable: int Spinner_android_popupBackground -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_selectable -james.adaptiveicon.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -android.didikee.donate.R$id: int withText -okhttp3.internal.http2.Http2Stream: okio.Timeout readTimeout() -okhttp3.Response: int code -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void dispose() -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification -androidx.constraintlayout.widget.R$styleable: int AlertDialog_listItemLayout -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getNestedScrollAxes() -androidx.core.R$styleable: int FontFamily_fontProviderQuery -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage DATA_CACHE -okhttp3.internal.http2.Http2Reader$ContinuationSource: int length -androidx.preference.R$attr: int actionBarSize -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_labelVisibilityMode -com.google.android.material.R$dimen: int mtrl_textinput_box_corner_radius_small -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_shrinkMotionSpec -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_menuCategory -androidx.drawerlayout.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.R$id: int stop -androidx.hilt.work.R$dimen: int compat_control_corner_material -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CUSTOM_VALUES -com.jaredrummler.android.colorpicker.R$attr: int borderlessButtonStyle -com.google.android.material.R$attr: int indicatorColors -androidx.hilt.work.R$integer -james.adaptiveicon.R$dimen: int tooltip_margin -androidx.vectordrawable.R$id: int right_side -com.turingtechnologies.materialscrollbar.R$style: int Base_V28_Theme_AppCompat -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_drawPath -com.google.android.material.textfield.TextInputLayout: void setHelperText(java.lang.CharSequence) -okhttp3.HttpUrl: okhttp3.HttpUrl$Builder newBuilder() -wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionTitle -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeStepGranularity -retrofit2.Retrofit$Builder: okhttp3.HttpUrl baseUrl -com.xw.repo.bubbleseekbar.R$styleable: int[] MenuGroup -wangdaye.com.geometricweather.R$dimen: int design_tab_text_size -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: void setStatus(int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_54 -wangdaye.com.geometricweather.R$styleable: int OnClick_clickAction -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.util.Date getDate() -androidx.preference.R$attr: int autoSizePresetSizes -james.adaptiveicon.R$attr: int popupWindowStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_80 -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_searchHintIcon -com.github.rahatarmanahmed.cpv.BuildConfig -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial Imperial -androidx.work.R$dimen: int notification_content_margin_start -retrofit2.Response: retrofit2.Response success(java.lang.Object,okhttp3.Response) -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -com.google.android.material.R$styleable: int TextAppearance_android_shadowDy -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_thickness -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter this$0 -androidx.coordinatorlayout.widget.CoordinatorLayout -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain rain -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_queryHint -androidx.dynamicanimation.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderConfirmButton -wangdaye.com.geometricweather.db.entities.LocationEntity: void setCountry(java.lang.String) -wangdaye.com.geometricweather.R$color: int cardview_light_background -okhttp3.internal.connection.RouteDatabase: void failed(okhttp3.Route) -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_Layout_layout_scrollFlags -androidx.vectordrawable.R$styleable: int FontFamilyFont_font -androidx.preference.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -wangdaye.com.geometricweather.R$mipmap -wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundDialog: RunningInBackgroundDialog() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: boolean isDisposed() -okio.AsyncTimeout$2: java.lang.String toString() -androidx.preference.R$style: int TextAppearance_AppCompat_Button -androidx.preference.R$layout: int preference_category_material -com.google.android.material.R$id: int SHOW_ALL -androidx.appcompat.R$id: int action_container -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error -okio.AsyncTimeout$1: java.lang.String toString() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_inset_horizontal_material -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -cyanogenmod.app.ILiveLockScreenManager: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: org.reactivestreams.Subscriber downstream -io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.fuseable.SimpleQueue queue -james.adaptiveicon.R$id: int action_bar_root -com.google.android.material.R$attr: int expandedTitleMargin -com.google.android.material.R$styleable: int Constraint_android_layout_marginRight -androidx.savedstate.Recreator -com.github.rahatarmanahmed.cpv.CircularProgressView: int animSteps -androidx.transition.R$styleable: int[] ColorStateListItem -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_arrowShaftLength -androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_keyline -retrofit2.ParameterHandler: retrofit2.ParameterHandler array() -androidx.appcompat.R$anim: int abc_tooltip_exit -androidx.hilt.work.R$attr: int fontVariationSettings -james.adaptiveicon.R$styleable: int CompoundButton_buttonTint -androidx.preference.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.R$string: int precipitation_duration -androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String o3Desc +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setRefreshing(boolean) +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +androidx.preference.R$interpolator: int fast_out_slow_in +wangdaye.com.geometricweather.R$id: int confirm_button +cyanogenmod.app.CustomTile: android.app.PendingIntent onLongClick +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTemperature(android.content.Context,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: void setBrands(java.util.List) +org.greenrobot.greendao.AbstractDao: java.util.List loadAllAndCloseCursor(android.database.Cursor) +androidx.lifecycle.extensions.R$id +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +wangdaye.com.geometricweather.R$id: int line3 +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) +android.didikee.donate.R$drawable: int abc_btn_check_material +okhttp3.internal.platform.Platform: java.lang.Object getStackTraceForCloseable(java.lang.String) +androidx.fragment.app.FragmentState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_ripple_color +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_seek_thumb +android.didikee.donate.R$id: int showCustom +wangdaye.com.geometricweather.R$string: int publish_at +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Colored +com.google.android.material.R$attr: int colorOnPrimarySurface +com.google.android.material.datepicker.DateValidatorPointBackward: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$attr: int flow_lastHorizontalStyle +okhttp3.internal.http1.Http1Codec$FixedLengthSink: void write(okio.Buffer,long) +cyanogenmod.hardware.IThermalListenerCallback$Stub: cyanogenmod.hardware.IThermalListenerCallback asInterface(android.os.IBinder) +com.google.android.material.R$drawable: int abc_ratingbar_small_material +io.reactivex.internal.util.NotificationLite: boolean accept(java.lang.Object,io.reactivex.Observer) +com.turingtechnologies.materialscrollbar.R$string: int hide_bottom_view_on_scroll_behavior +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object getKey(java.lang.Object) +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setCountryId(java.lang.String) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundColor(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWeatherEnd(java.lang.String) +com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_800 +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_background +wangdaye.com.geometricweather.R$id: R$id() +androidx.preference.R$styleable: int AppCompatTheme_viewInflaterClass +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast +androidx.constraintlayout.widget.R$attr: int showDividers +okio.GzipSource: java.util.zip.CRC32 crc +james.adaptiveicon.R$dimen: int abc_edit_text_inset_horizontal_material +androidx.preference.R$style: int Preference_SeekBarPreference +androidx.appcompat.resources.R$id: int accessibility_custom_action_21 +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: ObservableSampleTimed$SampleTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: java.lang.Integer max +androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconTint +androidx.lifecycle.ClassesInfoCache: java.util.Map mCallbackMap +com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_light +com.google.gson.stream.JsonReader: int PEEKED_NONE +android.didikee.donate.R$dimen: int abc_progress_bar_height_material +com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPickerView +androidx.viewpager.R$drawable: int notification_bg_low_pressed +androidx.preference.R$styleable: int[] GradientColorItem +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListPopupWindow +com.jaredrummler.android.colorpicker.R$id: int shortcut +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setEnableAnim(boolean) +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: int getIconSize() +androidx.lifecycle.SavedStateHandle +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Title +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalStyle +com.jaredrummler.android.colorpicker.R$dimen: int abc_config_prefDialogWidth +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Bridge +okio.DeflaterSink: void deflate(boolean) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy +cyanogenmod.app.LiveLockScreenManager: boolean show(int,cyanogenmod.app.LiveLockScreenInfo) +io.reactivex.internal.disposables.CancellableDisposable: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf +androidx.drawerlayout.R$attr: int fontProviderPackage +androidx.viewpager.widget.PagerTabStrip: void setDrawFullUnderline(boolean) +okio.Options: okio.ByteString get(int) +androidx.dynamicanimation.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode getInstance(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int Priority +wangdaye.com.geometricweather.R$styleable: int MaterialButton_backgroundTintMode +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_background +cyanogenmod.hardware.IThermalListenerCallback: void onThermalChanged(int) +cyanogenmod.providers.CMSettings$System: CMSettings$System() +androidx.legacy.coreutils.R$dimen: int notification_large_icon_width +retrofit2.Utils$GenericArrayTypeImpl: int hashCode() +com.google.android.material.bottomnavigation.BottomNavigationView: int getMaxItemCount() +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_showSeekBarValue +androidx.appcompat.R$attr: int thumbTintMode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date to +android.didikee.donate.R$styleable: int[] ActionBar +com.google.android.material.R$id: int material_clock_display +cyanogenmod.weather.WeatherLocation$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.appcompat.R$styleable: int AppCompatTheme_colorPrimary +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize +com.google.android.material.textfield.TextInputLayout: void setDefaultHintTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature WetBulbTemperature +androidx.appcompat.R$styleable: int AppCompatTheme_editTextStyle +com.google.android.material.R$attr: int flow_lastVerticalStyle +com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode valueOf(java.lang.String) +io.reactivex.Observable: io.reactivex.Flowable toFlowable(io.reactivex.BackpressureStrategy) +com.bumptech.glide.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginTop +androidx.preference.R$style: int Widget_AppCompat_TextView_SpinnerItem +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean validate(org.reactivestreams.Subscription,org.reactivestreams.Subscription) +wangdaye.com.geometricweather.db.entities.LocationEntity: void setWeatherSource(wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource) +android.didikee.donate.R$id: int topPanel +com.google.android.material.R$styleable: int FontFamilyFont_android_fontStyle +androidx.vectordrawable.animated.R$attr: int fontProviderQuery +com.google.android.material.floatingactionbutton.FloatingActionButton: void setRippleColor(android.content.res.ColorStateList) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupWindow +androidx.transition.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView +james.adaptiveicon.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetRight +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource DATA_DISK_CACHE +com.google.android.material.R$color: int primary_text_disabled_material_dark +okhttp3.Response$Builder: okhttp3.Response$Builder handshake(okhttp3.Handshake) +okhttp3.HttpUrl: java.lang.String queryParameterName(int) com.google.android.material.R$styleable: int KeyTimeCycle_android_scaleY -androidx.constraintlayout.widget.R$string: int abc_shareactionprovider_share_with -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.util.Date DateTime -androidx.preference.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -wangdaye.com.geometricweather.settings.dialogs.MinimalIconDialog: MinimalIconDialog() -wangdaye.com.geometricweather.R$string: int background_information -com.bumptech.glide.load.resource.gif.GifFrameLoader -com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -com.google.android.material.R$styleable: int AppCompatTheme_popupMenuStyle -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setOnSwitchListener(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout$OnSwitchListener) -wangdaye.com.geometricweather.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -androidx.appcompat.R$layout: int notification_action_tombstone -androidx.lifecycle.extensions.R$id: int text2 -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginEnd -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_ActionBar -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onComplete() -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: AccuAqiResult() -james.adaptiveicon.R$string: int abc_capital_on +io.reactivex.internal.observers.BasicIntQueueDisposable: boolean isEmpty() +wangdaye.com.geometricweather.R$drawable: int weather_clear_night +androidx.customview.R$dimen: int notification_small_icon_size_as_large +com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int[] ActionMenuItemView +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int IceProbability +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_editTextPreferenceStyle +com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_top_material +james.adaptiveicon.R$attr: int buttonBarPositiveButtonStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: double Value +com.bumptech.glide.integration.okhttp.R$id: int notification_background +com.google.android.material.R$styleable: int SwitchCompat_splitTrack +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Large +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description Description +com.google.android.material.button.MaterialButton: void setBackgroundResource(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric Metric +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void otherError(java.lang.Throwable) +io.reactivex.internal.util.NotificationLite$SubscriptionNotification: long serialVersionUID +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display1 +okio.AsyncTimeout: long IDLE_TIMEOUT_MILLIS +james.adaptiveicon.R$styleable: int[] RecycleListView +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer wetBulbTemperature +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_defaultValue +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_contentScrim +okhttp3.MediaType: java.nio.charset.Charset charset(java.nio.charset.Charset) +wangdaye.com.geometricweather.R$id: int submit_area +wangdaye.com.geometricweather.R$string: int settings_notification_hide_big_view_on +androidx.appcompat.R$styleable: int FontFamily_fontProviderFetchTimeout +com.xw.repo.bubbleseekbar.R$color: int colorAccent +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float snowPrecipitationProbability +android.support.v4.os.ResultReceiver: android.os.Parcelable$Creator CREATOR +android.didikee.donate.R$styleable: int AppCompatTheme_buttonStyleSmall +wangdaye.com.geometricweather.R$id: int BOTTOM_END +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_go_search_api_material +androidx.viewpager2.R$id: int normal +androidx.preference.R$attr: int buttonStyleSmall +wangdaye.com.geometricweather.R$attr: int state_collapsed +wangdaye.com.geometricweather.R$string: int apparent_temperature +androidx.viewpager2.R$id: int title +com.jaredrummler.android.colorpicker.R$string: int abc_menu_alt_shortcut_label +com.google.android.material.R$style: int TextAppearance_AppCompat_Button +androidx.hilt.lifecycle.R$dimen: int notification_small_icon_size_as_large +androidx.preference.R$attr: int indeterminateProgressStyle +androidx.transition.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy valueOf(java.lang.String) +androidx.dynamicanimation.R$id: int right_side +com.google.android.material.floatingactionbutton.FloatingActionButton: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() +james.adaptiveicon.R$styleable: int TextAppearance_android_typeface +com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: FloatingActionButton$Behavior(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveOffset +com.turingtechnologies.materialscrollbar.R$string: int path_password_eye +com.jaredrummler.android.colorpicker.ColorPickerDialog: ColorPickerDialog() +wangdaye.com.geometricweather.R$id: int src_in +androidx.hilt.lifecycle.R$dimen: R$dimen() +james.adaptiveicon.R$styleable: int PopupWindowBackgroundState_state_above_anchor +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$width +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isDataConnectionEnabled() +com.jaredrummler.android.colorpicker.R$id: int textSpacerNoTitle +com.jaredrummler.android.colorpicker.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getAqiColor(android.content.Context) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableRight +com.google.android.material.R$id: int up +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Temperature +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text +retrofit2.BuiltInConverters$BufferingResponseBodyConverter: okhttp3.ResponseBody convert(okhttp3.ResponseBody) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: androidx.lifecycle.LifecycleOwner mLifecycle +com.google.android.material.R$dimen: int compat_notification_large_icon_max_width +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabText +androidx.recyclerview.widget.RecyclerView: boolean getClipToPadding() +retrofit2.HttpException +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setTitle(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_dependency +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getSpeed() +androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +androidx.appcompat.R$styleable: int StateListDrawable_android_variablePadding +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setDeleteIntent(android.app.PendingIntent) +okhttp3.HttpUrl: HttpUrl(okhttp3.HttpUrl$Builder) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextBackground +cyanogenmod.weather.CMWeatherManager: int lookupCity(java.lang.String,cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener) +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$id: int container_main_pollen_indicator +androidx.appcompat.R$string: int abc_menu_shift_shortcut_label +com.google.android.material.R$attr: int snackbarButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleTextColor +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getChipDrawable() +com.google.android.material.slider.RangeSlider: void setMinSeparation(float) +com.jaredrummler.android.colorpicker.R$style: int PreferenceFragmentList_Material +androidx.viewpager2.R$dimen: int item_touch_helper_swipe_escape_velocity +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean cancelled +wangdaye.com.geometricweather.R$string: int key_text_size +androidx.fragment.R$id: int accessibility_custom_action_22 +androidx.viewpager.R$drawable: int notification_template_icon_low_bg +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalGap +okhttp3.Headers$Builder: java.util.List namesAndValues +androidx.coordinatorlayout.R$styleable: int GradientColor_android_type +okio.GzipSink: void flush() +io.reactivex.internal.observers.DeferredScalarDisposable: int DISPOSED +com.github.rahatarmanahmed.cpv.CircularProgressViewListener +androidx.constraintlayout.widget.R$id: int percent +okhttp3.Dns$1: java.util.List lookup(java.lang.String) +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: int TRANSACTION_getSuggestions +cyanogenmod.profiles.RingModeSettings: java.lang.String mValue +androidx.recyclerview.R$id: int action_container +okhttp3.ConnectionPool: boolean $assertionsDisabled +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: int unitArrayIndex +androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragDirection +androidx.appcompat.widget.AppCompatTextView: void setLineHeight(int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: double Value +wangdaye.com.geometricweather.R$layout: int widget_trend_hourly +com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: java.lang.String Unit +android.didikee.donate.R$layout +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: cyanogenmod.externalviews.ExternalViewProviderService$Provider this$1 +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight +com.google.android.material.R$style: int Base_Theme_AppCompat_CompactMenu +com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_fast_out_slow_in +androidx.hilt.R$layout: int notification_template_part_time +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicReference upstream +okhttp3.internal.tls.TrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onComplete() +androidx.hilt.R$styleable +okio.ForwardingSink: okio.Timeout timeout() +cyanogenmod.externalviews.ExternalViewProperties: android.view.View mDecorView +james.adaptiveicon.R$styleable: int ActionBar_logo +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onAttach(android.os.IBinder) +okio.DeflaterSink +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryInnerObserver BOUNDARY_DISPOSED +wangdaye.com.geometricweather.R$color: int design_box_stroke_color +james.adaptiveicon.R$styleable: int AppCompatTheme_homeAsUpIndicator +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_ttcIndex +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: ObservableMergeWithSingle$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver) +androidx.coordinatorlayout.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.R$attr: int chipCornerRadius +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$id: int slide +androidx.hilt.lifecycle.R$dimen: int compat_notification_large_icon_max_height +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type BOTTOM +wangdaye.com.geometricweather.common.basic.models.weather.Base: long publishTime +com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherPhase(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int notif_temp_22 +okhttp3.RequestBody$1: long contentLength() +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) +com.google.android.material.button.MaterialButtonToggleGroup: void setGeneratedIdIfNeeded(com.google.android.material.button.MaterialButton) +wangdaye.com.geometricweather.R$id: int top +wangdaye.com.geometricweather.R$id: int item_aqi +cyanogenmod.weather.WeatherLocation +android.didikee.donate.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_surface +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_orderInCategory +androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor INSTANCE +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +wangdaye.com.geometricweather.R$id: int select_dialog_listview +androidx.customview.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer windChillTemperature +okhttp3.EventListener: void requestBodyStart(okhttp3.Call) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_creator +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_title +wangdaye.com.geometricweather.R$id: int packed +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_color +androidx.appcompat.app.WindowDecorActionBar +okhttp3.Response: okhttp3.Protocol protocol +android.didikee.donate.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +james.adaptiveicon.R$style: int Base_V26_Widget_AppCompat_Toolbar +androidx.appcompat.R$attr: int drawerArrowStyle +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property TimeZone +com.google.android.material.R$layout: int test_reflow_chipgroup +androidx.hilt.work.R$bool: R$bool() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String aqiText +com.github.rahatarmanahmed.cpv.CircularProgressView: int animSwoopDuration +android.didikee.donate.R$attr: int homeLayout +wangdaye.com.geometricweather.R$id: int gone +cyanogenmod.providers.CMSettings$System: java.lang.String MENU_WAKE_SCREEN +androidx.appcompat.widget.ActionBarContextView: void setCustomView(android.view.View) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_padding_right +okio.ByteString: byte getByte(int) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_search_view_preferred_height wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Counter_Overflow -androidx.constraintlayout.widget.R$attr: int multiChoiceItemLayout -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_Bridge -com.google.android.material.R$styleable: int[] ExtendedFloatingActionButton -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: java.lang.String colorId -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: java.lang.String toString() -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_start_padding_icon -com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.String) -okhttp3.internal.http2.Http2Reader: void readGoAway(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -com.google.android.material.R$attr: int numericModifiers -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer windChillTemperature -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindChillTemperature(java.lang.Integer) -com.google.android.material.R$color: int switch_thumb_disabled_material_light -okio.GzipSource: byte FCOMMENT -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar_PrimarySurface -wangdaye.com.geometricweather.R$string: int mtrl_exceed_max_badge_number_suffix -retrofit2.KotlinExtensions$await$2$2: KotlinExtensions$await$2$2(kotlinx.coroutines.CancellableContinuation) -io.reactivex.internal.queue.SpscArrayQueue: int calcElementOffset(long,int) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_START_VOLUME_VALIDATOR -com.google.android.material.R$id: int dragLeft -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RealFeelTemperature -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ButtonBar -androidx.appcompat.widget.SwitchCompat: void setTrackTintList(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextBackground -cyanogenmod.app.ILiveLockScreenManagerProvider: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShrinkMotionSpec(com.google.android.material.animation.MotionSpec) -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: int getMarginBottom() -okhttp3.RealCall: java.lang.Object clone() -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,boolean) -androidx.constraintlayout.widget.R$id: int tag_accessibility_actions -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: int getSourceColor() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitation(java.lang.Float) -androidx.customview.R$dimen: int notification_top_pad -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endX -androidx.hilt.R$color: R$color() -wangdaye.com.geometricweather.R$styleable: int Chip_chipIconVisible -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void slideLockscreenIn() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property O3 -androidx.constraintlayout.widget.R$integer: int cancel_button_image_alpha -wangdaye.com.geometricweather.R$style: int widget_week_icon -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_homeAsUpIndicator -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: java.lang.String Unit -com.xw.repo.bubbleseekbar.R$attr: int editTextStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarItemBackground -androidx.hilt.work.R$id: int accessibility_custom_action_19 -okio.Pipe: Pipe(long) -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void run() -android.didikee.donate.R$color: int abc_color_highlight_material -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog -androidx.appcompat.R$integer: int cancel_button_image_alpha -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List diaoyu -androidx.appcompat.resources.R$id: int accessibility_custom_action_8 -okio.Buffer: long indexOf(byte,long) -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceId() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void open(java.lang.Object) -androidx.drawerlayout.R$id -cyanogenmod.themes.ThemeManager: android.os.Handler access$200() -android.didikee.donate.R$style: int Base_V21_Theme_AppCompat -wangdaye.com.geometricweather.R$string: int key_align_end -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object[] toArray(java.lang.Object[]) -androidx.coordinatorlayout.R$drawable: int notification_template_icon_bg -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int otherState -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayMode -okhttp3.RealCall: boolean forWebSocket -androidx.constraintlayout.widget.R$drawable: int abc_list_pressed_holo_dark -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -androidx.preference.R$styleable -androidx.appcompat.widget.AppCompatSpinner: int getDropDownWidth() -com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrim(android.graphics.drawable.Drawable) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Medium -com.google.android.material.R$id: int accessibility_custom_action_22 -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: DefaultCallAdapterFactory$ExecutorCallbackCall$1(retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall,retrofit2.Callback) -androidx.drawerlayout.R$color: int notification_icon_bg_color -com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_Surface -com.google.android.material.R$integer: int mtrl_badge_max_character_count -wangdaye.com.geometricweather.R$attr: int layout_constraintEnd_toStartOf -com.google.android.material.R$attr: int selectableItemBackgroundBorderless -wangdaye.com.geometricweather.R$attr: int showTitle -com.github.rahatarmanahmed.cpv.CircularProgressView: void initAttributes(android.util.AttributeSet,int) -wangdaye.com.geometricweather.db.entities.AlertEntity: void setAlertId(long) -androidx.appcompat.resources.R$id: int accessibility_custom_action_15 -androidx.loader.R$styleable: int FontFamily_fontProviderQuery -androidx.appcompat.resources.R$attr: int fontStyle -cyanogenmod.power.IPerformanceManager$Stub -androidx.appcompat.R$drawable: int abc_vector_test -androidx.constraintlayout.widget.R$attr: int waveVariesBy -okhttp3.internal.http2.Http2Connection: boolean access$302(okhttp3.internal.http2.Http2Connection,boolean) -androidx.lifecycle.LifecycleRegistry$ObserverWithState: androidx.lifecycle.Lifecycle$State mState -androidx.dynamicanimation.R$dimen: R$dimen() -io.reactivex.Observable: io.reactivex.Single reduce(java.lang.Object,io.reactivex.functions.BiFunction) -androidx.preference.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_currentPageIndicatorColor -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -androidx.appcompat.widget.AppCompatEditText: android.content.res.ColorStateList getSupportBackgroundTintList() -androidx.hilt.lifecycle.R$id: int chronometer -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.AlertEntity,int) -androidx.appcompat.R$styleable: int Toolbar_contentInsetLeft -com.google.android.material.R$attr: int flow_horizontalStyle +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen +okhttp3.internal.http.CallServerInterceptor$CountingSink: CallServerInterceptor$CountingSink(okio.Sink) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_ACTIVE +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: long EpochRise +com.jaredrummler.android.colorpicker.R$string: int abc_search_hint +cyanogenmod.weather.IRequestInfoListener: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_progress +androidx.preference.R$styleable: int[] DrawerArrowToggle +androidx.core.R$styleable: int FontFamilyFont_fontVariationSettings +io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) +androidx.activity.ComponentActivity +androidx.appcompat.R$styleable: int Toolbar_contentInsetEnd +wangdaye.com.geometricweather.R$id: int notification_big +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +wangdaye.com.geometricweather.db.entities.AlertEntity: void setCityId(java.lang.String) +androidx.appcompat.widget.SearchView$SearchAutoComplete +com.jaredrummler.android.colorpicker.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.R$attr: int listLayout +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: int requestFusion(int) +com.jaredrummler.android.colorpicker.R$attr: int enabled +retrofit2.Converter$Factory: retrofit2.Converter stringConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean done +wangdaye.com.geometricweather.R$string: int key_forecast_tomorrow +androidx.coordinatorlayout.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$layout: int item_alert +androidx.constraintlayout.widget.R$dimen: int abc_button_padding_vertical_material +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.disposables.CompositeDisposable disposables +com.turingtechnologies.materialscrollbar.R$string: int abc_action_mode_done +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_textLocale +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: void setOnFitSystemBarListener(wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout$OnFitSystemBarListener) +cyanogenmod.weather.WeatherInfo$Builder: double mWindDirection +wangdaye.com.geometricweather.R$anim: int fragment_fast_out_extra_slow_in +james.adaptiveicon.R$dimen: int abc_select_dialog_padding_start_material +cyanogenmod.app.CustomTile$Builder: android.content.Context mContext +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display4 +cyanogenmod.externalviews.ExternalView$2: cyanogenmod.externalviews.ExternalView this$0 +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver +androidx.constraintlayout.widget.R$attr: int actionBarPopupTheme +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onNext(java.lang.Object) +james.adaptiveicon.R$styleable: int[] DrawerArrowToggle +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String Type +com.google.android.material.card.MaterialCardView: void setCheckedIconSizeResource(int) +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: MpscLinkedQueue$LinkedQueueNode(java.lang.Object) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty3H +androidx.preference.R$attr: int checkBoxPreferenceStyle +wangdaye.com.geometricweather.R$attr: int suffixTextAppearance +cyanogenmod.weatherservice.ServiceRequestResult +cyanogenmod.power.IPerformanceManager$Stub$Proxy +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_5_30 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean +androidx.constraintlayout.widget.R$attr: int layout_optimizationLevel +cyanogenmod.providers.CMSettings$Secure: long getLongForUser(android.content.ContentResolver,java.lang.String,int) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionMode +james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context) +androidx.preference.R$styleable: int ActionBar_elevation +cyanogenmod.weather.WeatherInfo$1: WeatherInfo$1() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: long serialVersionUID +wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_dark +wangdaye.com.geometricweather.R$drawable: int notif_temp_106 +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer realFeelShaderTemperature +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: int UnitType +cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri mDownloadUri +cyanogenmod.profiles.LockSettings: void readFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: int UnitType +com.google.android.material.R$styleable: int ChipGroup_selectionRequired +com.google.android.material.R$styleable: int FloatingActionButton_shapeAppearance +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextAppearance(int) +com.google.android.material.R$attr: int actionTextColorAlpha +james.adaptiveicon.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +androidx.core.R$styleable: int GradientColor_android_tileMode +androidx.preference.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +cyanogenmod.providers.CMSettings$Global: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) +com.google.android.material.R$attr: int behavior_halfExpandedRatio +cyanogenmod.app.ProfileGroup: android.net.Uri mRingerOverride +androidx.recyclerview.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.R$color: int colorLevel_6 +androidx.constraintlayout.widget.R$layout: int abc_search_dropdown_item_icons_2line +okhttp3.internal.ws.RealWebSocket$Message: okio.ByteString data +android.didikee.donate.R$color: int primary_text_default_material_dark +wangdaye.com.geometricweather.R$attr: int backgroundStacked +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: LiveDataReactiveStreams$LiveDataPublisher(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) +androidx.preference.R$styleable: int ListPreference_entryValues +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleGravity() +com.jaredrummler.android.colorpicker.R$attr: int actionModePasteDrawable +androidx.hilt.R$id: int accessibility_custom_action_16 +io.reactivex.Observable: io.reactivex.Observable timeInterval() +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_BRIGHTNESS_CONTROL_VALIDATOR +james.adaptiveicon.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$attr: int behavior_halfExpandedRatio +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator +cyanogenmod.themes.IThemeService: void rebuildResourceCache() +james.adaptiveicon.R$drawable: int tooltip_frame_light +okhttp3.internal.cache2.Relay: int sourceCount +androidx.preference.EditTextPreference: EditTextPreference(android.content.Context,android.util.AttributeSet) +cyanogenmod.profiles.BrightnessSettings$1: cyanogenmod.profiles.BrightnessSettings createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getZh_CN() +androidx.preference.R$attr: int layout_anchor +com.google.android.material.R$dimen: int mtrl_low_ripple_pressed_alpha +com.google.android.material.R$styleable: int ForegroundLinearLayout_android_foregroundGravity +androidx.appcompat.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode[] values() +wangdaye.com.geometricweather.R$string: int chip_text +wangdaye.com.geometricweather.R$styleable: int OnSwipe_moveWhenScrollAtTop +com.google.android.material.R$id: int titleDividerNoCustom +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf +com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_Switch +cyanogenmod.providers.CMSettings$System: java.lang.String T9_SEARCH_INPUT_LOCALE +wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_entryValues +cyanogenmod.weather.CMWeatherManager$2 +androidx.lifecycle.ProcessLifecycleOwner$2: void onCreate() +wangdaye.com.geometricweather.R$string: int content_des_drag_flag +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeightSmall +com.google.android.material.R$dimen: int design_fab_border_width +james.adaptiveicon.R$dimen: int abc_edit_text_inset_bottom_material +io.reactivex.internal.observers.ForEachWhileObserver: boolean isDisposed() +androidx.constraintlayout.widget.R$anim +wangdaye.com.geometricweather.R$styleable: int NavigationView_headerLayout +androidx.recyclerview.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$styleable: int Layout_layout_constraintHeight_max +com.google.android.material.R$styleable: int ActionMode_background +androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context,android.util.AttributeSet,int) +com.google.gson.stream.JsonReader: long nextLong() +androidx.fragment.app.FragmentManager: void addOnBackStackChangedListener(androidx.fragment.app.FragmentManager$OnBackStackChangedListener) +com.google.android.material.R$dimen: int abc_action_bar_content_inset_with_nav +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveVariesBy +androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Info androidx.constraintlayout.widget.R$styleable: int ActionBar_logo -com.google.android.material.switchmaterial.SwitchMaterial: void setUseMaterialThemeColors(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String notice -com.xw.repo.bubbleseekbar.R$dimen: int abc_floating_window_z -com.xw.repo.bubbleseekbar.R$attr: int autoSizeMinTextSize -okio.Buffer: void readFully(byte[]) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display3 -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleSwitch -james.adaptiveicon.R$attr: int homeLayout -wangdaye.com.geometricweather.R$style: int widget_text_clock_analog_Dark -androidx.preference.R$anim: R$anim() -androidx.activity.R$styleable: int ColorStateListItem_android_alpha -io.reactivex.internal.subscriptions.DeferredScalarSubscription: long serialVersionUID -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -com.turingtechnologies.materialscrollbar.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_switchTextOn -org.greenrobot.greendao.database.DatabaseOpenHelper: android.content.Context context -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter beginObject() -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeColorStateList(android.content.res.ColorStateList) -com.google.android.material.R$dimen: int mtrl_snackbar_margin -androidx.appcompat.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -wangdaye.com.geometricweather.R$styleable: int ListPreference_android_entries -wangdaye.com.geometricweather.R$styleable: int Slider_android_valueFrom -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle -wangdaye.com.geometricweather.R$dimen: int abc_button_inset_horizontal_material -android.didikee.donate.R$color: int highlighted_text_material_light -cyanogenmod.app.suggest.AppSuggestManager: java.lang.String TAG -androidx.hilt.R$drawable: int notification_bg_low_pressed -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setPostalCode(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_animationDuration -retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: OkHttpCall$ExceptionCatchingResponseBody$1(retrofit2.OkHttpCall$ExceptionCatchingResponseBody,okio.Source) -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit PPCM -androidx.appcompat.R$attr: int colorControlActivated -android.didikee.donate.R$attr: int listItemLayout -okhttp3.internal.connection.StreamAllocation: okhttp3.ConnectionPool connectionPool -androidx.appcompat.resources.R$styleable: int GradientColor_android_gradientRadius -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_alpha -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline2 -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Bridge -androidx.lifecycle.DefaultLifecycleObserver: void onResume(androidx.lifecycle.LifecycleOwner) -com.google.android.material.slider.Slider: void setThumbElevationResource(int) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ListPopupWindow -androidx.hilt.R$id: int accessibility_custom_action_27 -android.didikee.donate.R$attr: int srcCompat -androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_colored -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: void setValue(java.util.List) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windDircStart -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig alertEntityDaoConfig -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setTime(long) -com.google.android.material.R$styleable: int TextInputLayout_placeholderTextAppearance -androidx.constraintlayout.widget.R$attr: int lineHeight -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableItem_android_drawable -androidx.work.R$attr -cyanogenmod.externalviews.IExternalViewProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -cyanogenmod.providers.CMSettings$System: int getIntForUser(android.content.ContentResolver,java.lang.String,int) -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_wrapMode -androidx.work.OverwritingInputMerger: OverwritingInputMerger() -com.turingtechnologies.materialscrollbar.R$attr: int materialCardViewStyle -androidx.appcompat.R$style: int TextAppearance_AppCompat_Title_Inverse -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerValue(boolean,java.lang.Object) -james.adaptiveicon.R$style: int Base_V26_Widget_AppCompat_Toolbar -com.google.android.material.R$dimen: int design_fab_translation_z_hovered_focused -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver -wangdaye.com.geometricweather.R$id: int container_main_aqi_title -com.google.android.material.R$styleable: int Constraint_layout_constraintCircleRadius -okio.ForwardingTimeout: boolean hasDeadline() -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_tileMode -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteInTxArray -james.adaptiveicon.R$styleable: int AppCompatTheme_spinnerStyle -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Toolbar -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior: ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior() -androidx.constraintlayout.widget.R$attr: int actionOverflowButtonStyle -androidx.constraintlayout.widget.ConstraintLayout: int getPaddingWidth() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float relativeHumidity -wangdaye.com.geometricweather.R$anim: int abc_slide_in_bottom -androidx.transition.R$layout: R$layout() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.R$dimen: int widget_standard_weather_icon_size -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setCityName(java.lang.String) -androidx.lifecycle.LiveData: LiveData(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean() -com.turingtechnologies.materialscrollbar.R$attr: int viewInflaterClass -androidx.recyclerview.R$integer: int status_bar_notification_info_maxnum -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_MENU_ACTION_VALIDATOR -wangdaye.com.geometricweather.R$attr: int itemShapeInsetStart -com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonTint -wangdaye.com.geometricweather.R$layout: int preference_information -com.google.android.material.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotationY -com.turingtechnologies.materialscrollbar.R$dimen: int abc_disabled_alpha_material_light -cyanogenmod.themes.ThemeChangeRequest$1: cyanogenmod.themes.ThemeChangeRequest[] newArray(int) -androidx.constraintlayout.widget.R$dimen: int abc_text_size_headline_material -james.adaptiveicon.R$id: R$id() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String originUrl -cyanogenmod.profiles.ConnectionSettings: java.lang.String ACTION_MODIFY_NETWORK_MODE -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,boolean) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeDescription -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_meta_shortcut_label -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_22 -com.google.android.material.R$styleable: int Layout_layout_constraintCircle -androidx.appcompat.R$attr: int panelMenuListWidth +wangdaye.com.geometricweather.R$attr: int tabIndicatorHeight +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderFetchTimeout +com.google.android.material.R$attr: int iconEndPadding +androidx.lifecycle.ProcessLifecycleOwner: void activityStarted() +com.turingtechnologies.materialscrollbar.R$id: int message +okio.Okio$4 +james.adaptiveicon.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginEnd +james.adaptiveicon.R$styleable: int SearchView_defaultQueryHint +com.google.android.material.progressindicator.ProgressIndicator: void setCircularRadius(int) +android.didikee.donate.R$styleable: int MenuItem_actionLayout +wangdaye.com.geometricweather.R$attr: int buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.R$string: int snow +androidx.viewpager.widget.PagerTitleStrip: int getMinHeight() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 +cyanogenmod.weather.ICMWeatherManager: java.lang.String getActiveWeatherServiceProviderLabel() +okhttp3.internal.http2.Http2Connection$PingRunnable: void execute() +com.google.android.material.R$styleable: int Layout_layout_constraintRight_toLeftOf +androidx.core.R$styleable: int FontFamilyFont_ttcIndex +okhttp3.internal.ws.WebSocketReader: void processNextFrame() +androidx.preference.R$attr: int widgetLayout +com.jaredrummler.android.colorpicker.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator +com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.Typeface getCollapsedTitleTypeface() +androidx.constraintlayout.widget.R$styleable: int[] TextAppearance +com.google.android.material.R$dimen: int design_navigation_icon_padding +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide +wangdaye.com.geometricweather.R$styleable: int[] AppCompatSeekBar +android.didikee.donate.R$style: int Base_Theme_AppCompat_CompactMenu +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.WeatherLocation mWeatherLocation com.google.android.material.R$attr: int drawableStartCompat -cyanogenmod.app.CustomTile: android.os.Parcelable$Creator CREATOR -io.reactivex.Observable: io.reactivex.Observable concatEager(io.reactivex.ObservableSource) -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_processCityNameLookupRequest -wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_toLeftOf -androidx.vectordrawable.R$dimen: int compat_button_padding_horizontal_material -okhttp3.internal.ws.WebSocketWriter: boolean isClient -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCountry() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitationDuration(java.lang.Float) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: void setStatus(int) -io.reactivex.disposables.RunnableDisposable: void onDisposed(java.lang.Runnable) -androidx.lifecycle.Lifecycle: Lifecycle() -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorGravity -okhttp3.internal.http2.Settings: int getInitialWindowSize() -androidx.work.R$id: int accessibility_custom_action_1 -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -android.didikee.donate.R$id: int search_badge -wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_icon_tint -android.didikee.donate.R$string: int abc_searchview_description_submit -com.google.android.material.R$styleable: int KeyAttribute_android_transformPivotY -androidx.core.R$id: int accessibility_custom_action_25 -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -android.didikee.donate.R$attr: int colorPrimaryDark -okhttp3.internal.cache.FaultHidingSink: void close() -androidx.appcompat.R$styleable: int Toolbar_subtitleTextColor -cyanogenmod.providers.CMSettings$Global: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -james.adaptiveicon.R$layout: int abc_activity_chooser_view -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_EXPORT_WITH_RC4_40_MD5 -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.activity.R$id: int accessibility_custom_action_10 -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_indeterminate -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Inverse -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onNext(java.lang.Object) -androidx.coordinatorlayout.R$color: int notification_icon_bg_color -androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -com.google.android.material.R$styleable: int SwitchCompat_android_textOn -com.google.android.material.chip.Chip: void setCheckedIconTint(android.content.res.ColorStateList) -okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithIncrementalIndexingNewName() -james.adaptiveicon.R$styleable: int FontFamily_fontProviderPackage -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: java.util.List getDeviceComponentVersions() -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cp -wangdaye.com.geometricweather.R$layout: int abc_popup_menu_item_layout -androidx.recyclerview.R$styleable -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: void setUnit(java.lang.String) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String FONT_URI -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog -com.xw.repo.bubbleseekbar.R$id -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_transformPivotX -okhttp3.internal.Internal: okhttp3.Call newWebSocketCall(okhttp3.OkHttpClient,okhttp3.Request) -androidx.constraintlayout.widget.R$styleable: int PropertySet_visibilityMode -androidx.preference.R$style: int Base_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.R$string: int go_to_set -com.google.android.material.R$attr: int textAppearanceHeadline6 -okhttp3.internal.ws.RealWebSocket: java.util.List ONLY_HTTP1 -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder domain(java.lang.String,boolean) -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit MGPCUM -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconTint -androidx.appcompat.R$attr: int panelMenuListTheme -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_textLocale -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Icon -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_off_mtrl_alpha -wangdaye.com.geometricweather.R$layout: int activity_main -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeCloudCover() -androidx.recyclerview.R$id: int icon -wangdaye.com.geometricweather.R$string: int key_weather_source -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_right_mtrl_light -wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_CLOSE -com.google.android.material.transformation.FabTransformationBehavior: FabTransformationBehavior(android.content.Context,android.util.AttributeSet) -androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_toId -androidx.constraintlayout.widget.R$attr: int searchIcon -com.google.gson.stream.JsonReader: java.lang.String nextUnquotedValue() -com.google.android.material.chip.Chip: void setChipIconVisible(int) -com.google.android.material.R$styleable: int FloatingActionButton_shapeAppearance -cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_VIBRATE -okhttp3.Headers: java.util.Date getDate(java.lang.String) -io.reactivex.Observable: io.reactivex.Observable switchMapMaybeDelayError(io.reactivex.functions.Function) -com.jaredrummler.android.colorpicker.ColorPanelView -androidx.viewpager2.widget.ViewPager2: void setLayoutDirection(int) -com.google.android.material.R$attr: int flow_verticalAlign -androidx.customview.R$id: int tag_unhandled_key_listeners -okhttp3.Cache: boolean isClosed() -com.google.android.material.R$styleable: int KeyTimeCycle_android_rotationY +wangdaye.com.geometricweather.R$styleable: int[] BottomNavigationView +wangdaye.com.geometricweather.R$color: int material_timepicker_button_stroke +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void dispose() +android.didikee.donate.R$id: int activity_chooser_view_content +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: long remaining +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_summaryOn +androidx.lifecycle.extensions.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$id: int refresh_layout +com.google.android.material.R$id: int accessibility_custom_action_2 +androidx.appcompat.R$id: int up +okhttp3.internal.ws.RealWebSocket$Close: RealWebSocket$Close(int,okio.ByteString,long) +james.adaptiveicon.R$drawable: int abc_btn_borderless_material +wangdaye.com.geometricweather.R$layout: int dialog_location_permission_statement +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: byte[] readPersistentBytes(java.lang.String) +com.google.android.material.R$id: int square +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +james.adaptiveicon.R$attr: int actionMenuTextColor +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvIndex +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_AppBarLayout +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List weather +wangdaye.com.geometricweather.R$id: int on +android.didikee.donate.R$styleable: int MenuItem_android_alphabeticShortcut +james.adaptiveicon.R$attr: int initialActivityCount +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf +androidx.preference.R$style: int Theme_AppCompat_Light_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$string: int path_password_eye_mask_strike_through +okhttp3.CipherSuite$1: int compare(java.lang.Object,java.lang.Object) +com.google.android.material.R$style: int TextAppearance_AppCompat_Title_Inverse +wangdaye.com.geometricweather.R$color: int button_material_light +androidx.lifecycle.extensions.R: R() +androidx.vectordrawable.animated.R$id: int action_text +com.google.android.material.R$styleable: int Constraint_flow_lastVerticalStyle james.adaptiveicon.R$drawable: int abc_cab_background_internal_bg -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runSync() -com.google.android.material.slider.BaseSlider: void setSeparationUnit(int) -com.google.android.material.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_size -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundTint -okio.Okio: okio.Sink blackhole() -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetRight -wangdaye.com.geometricweather.R$animator: int mtrl_card_state_list_anim -wangdaye.com.geometricweather.R$style: int ThemeOverlay_Design_TextInputEditText -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTag -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.internal.connection.StreamAllocation streamAllocation() -io.reactivex.internal.subscribers.DeferredScalarSubscriber: DeferredScalarSubscriber(org.reactivestreams.Subscriber) -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoDestination -wangdaye.com.geometricweather.R$id: int activity_weather_daily_toolbar -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_brightness -com.google.android.material.R$dimen: int abc_dialog_title_divider_material -retrofit2.RequestFactory: java.lang.reflect.Method method -com.jaredrummler.android.colorpicker.R$attr: int windowActionBar -okhttp3.internal.http.RealResponseBody: RealResponseBody(java.lang.String,long,okio.BufferedSource) -wangdaye.com.geometricweather.R$attr: int colorPrimary -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int IceProbability -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_DayNight -com.jaredrummler.android.colorpicker.R$attr: int listItemLayout -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_divider_mtrl_alpha -okhttp3.internal.http2.Http2Connection: void pushExecutorExecute(okhttp3.internal.NamedRunnable) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar -androidx.hilt.work.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.R$drawable: int abc_seekbar_track_material -androidx.preference.R$style: int Base_TextAppearance_AppCompat -android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Light -androidx.hilt.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_86 -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void updateWeather(cyanogenmod.weather.RequestInfo) -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog -cyanogenmod.providers.CMSettings$NameValueCache: android.content.IContentProvider mContentProvider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.util.List value -com.turingtechnologies.materialscrollbar.R$dimen: int design_appbar_elevation -retrofit2.ParameterHandler$Field: void apply(retrofit2.RequestBuilder,java.lang.Object) -cyanogenmod.themes.ThemeChangeRequest: java.util.Map mThemeComponents -cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.AppSuggestManager sInstance -cyanogenmod.app.IProfileManager$Stub$Proxy: void updateProfile(cyanogenmod.app.Profile) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_progress_in_float -wangdaye.com.geometricweather.R$string: int mtrl_badge_numberless_content_description -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.String icon -androidx.constraintlayout.widget.R$styleable: int AlertDialog_listLayout -androidx.appcompat.widget.ActionMenuPresenter$OverflowPopup -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_1 +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeight +androidx.transition.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.constraintlayout.widget.R$style: int Base_V22_Theme_AppCompat +wangdaye.com.geometricweather.R$bool +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: CompositeException$CompositeExceptionCausalChain() +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_overflow_padding_end_material +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +james.adaptiveicon.R$style: int Widget_AppCompat_Light_PopupMenu +android.didikee.donate.R$layout: int abc_list_menu_item_radio +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialButtonToggleGroup +androidx.fragment.R$color +androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +retrofit2.HttpServiceMethod: retrofit2.RequestFactory requestFactory +com.turingtechnologies.materialscrollbar.R$drawable: int notification_template_icon_bg +androidx.preference.R$attr: int maxHeight +com.github.rahatarmanahmed.cpv.CircularProgressView$8: void onAnimationUpdate(android.animation.ValueAnimator) +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextColor(android.content.res.ColorStateList) +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String unitId +wangdaye.com.geometricweather.R$attr: int itemStrokeWidth +cyanogenmod.providers.CMSettings$System$2: CMSettings$System$2() +james.adaptiveicon.R$styleable: int MenuGroup_android_id +androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_CheckBox +james.adaptiveicon.R$style: int Widget_AppCompat_DrawerArrowToggle +james.adaptiveicon.R$layout: int select_dialog_multichoice_material +com.google.android.material.R$attr: int sizePercent +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTheme +androidx.appcompat.widget.AppCompatImageView: void setImageResource(int) +com.jaredrummler.android.colorpicker.R$styleable: int ActionMenuItemView_android_minWidth +com.bumptech.glide.integration.okhttp.R$id: int text +james.adaptiveicon.R$id: int home +okhttp3.internal.http2.Http2Stream$StreamTimeout: java.io.IOException newTimeoutException(java.io.IOException) +okio.GzipSink: java.util.zip.CRC32 crc +io.reactivex.Observable: io.reactivex.Observable skipUntil(io.reactivex.ObservableSource) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String dept +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: double Value +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getChipIcon() +cyanogenmod.weather.IRequestInfoListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.R$styleable: int Motion_pathMotionArc +wangdaye.com.geometricweather.R$attr: int queryBackground +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.turingtechnologies.materialscrollbar.R$attr: int tickMark +androidx.preference.R$id: int action_mode_bar +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +androidx.dynamicanimation.R$styleable: int GradientColor_android_tileMode +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: AccuCurrentResult$PrecipitationSummary$Past6Hours() +com.xw.repo.bubbleseekbar.R$attr: int theme +com.xw.repo.bubbleseekbar.R$dimen: int notification_right_side_padding_top +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight +cyanogenmod.app.IPartnerInterface$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +james.adaptiveicon.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +wangdaye.com.geometricweather.R$id: int toggle +com.google.android.material.R$layout: int mtrl_picker_actions +androidx.constraintlayout.widget.R$id: int center +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderQuery +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textStyle +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +androidx.vectordrawable.R$string +com.bumptech.glide.R$attr: R$attr() +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner +android.didikee.donate.R$drawable: int abc_control_background_material +com.xw.repo.bubbleseekbar.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +okio.DeflaterSink: DeflaterSink(okio.Sink,java.util.zip.Deflater) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_49 +androidx.drawerlayout.R$id: int actions +androidx.preference.R$dimen: int abc_button_inset_vertical_material +androidx.recyclerview.widget.StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem +androidx.constraintlayout.widget.R$string: int abc_prepend_shortcut_label +androidx.constraintlayout.widget.R$styleable: int Spinner_popupTheme +wangdaye.com.geometricweather.R$drawable: int notif_temp_35 +cyanogenmod.profiles.BrightnessSettings: void setOverride(boolean) +android.didikee.donate.R$anim: int abc_grow_fade_in_from_bottom +androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonTintMode +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginLeft +com.google.android.material.R$integer: int hide_password_duration +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixText +wangdaye.com.geometricweather.R$color: int colorRoot_light +wangdaye.com.geometricweather.R$id: int disablePostScroll +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableStartCompat +okhttp3.internal.ws.RealWebSocket$PingRunnable: okhttp3.internal.ws.RealWebSocket this$0 +com.jaredrummler.android.colorpicker.R$id: int textSpacerNoButtons +retrofit2.KotlinExtensions$await$4$2 +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_barColor +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_gradientRadius +androidx.dynamicanimation.R$string: int status_bar_notification_info_overflow +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_rippleColor +com.turingtechnologies.materialscrollbar.DragScrollBar: boolean getHide() +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_elevation_material +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarSwitch +androidx.appcompat.R$styleable: int Toolbar_logo +okhttp3.internal.cache.DiskLruCache$Snapshot: void close() +cyanogenmod.weather.CMWeatherManager: CMWeatherManager(android.content.Context) +okio.AsyncTimeout: java.io.IOException exit(java.io.IOException) +com.google.android.material.R$styleable: int Constraint_layout_constrainedHeight +wangdaye.com.geometricweather.R$dimen: int notification_media_narrow_margin +james.adaptiveicon.R$styleable: int AppCompatTheme_controlBackground +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int SnowProbability +com.google.android.material.R$string: int mtrl_picker_cancel +androidx.fragment.R$id: int text +okhttp3.Dispatcher: int runningCallsForHost(okhttp3.RealCall$AsyncCall) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult +androidx.coordinatorlayout.R$styleable: int[] CoordinatorLayout +androidx.swiperefreshlayout.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$color: int bright_foreground_disabled_material_dark +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void collapseNotificationPanel() +androidx.work.WorkInfo$State: boolean isFinished() +cyanogenmod.themes.IThemeService: int getLastThemeChangeRequestType() +wangdaye.com.geometricweather.db.entities.LocationEntity: LocationEntity() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +com.jaredrummler.android.colorpicker.R$dimen: int abc_button_inset_horizontal_material +cyanogenmod.profiles.AirplaneModeSettings: void readFromParcel(android.os.Parcel) +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_1_00 +com.google.android.material.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +androidx.lifecycle.DefaultLifecycleObserver +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ZEN_PRIORITY_ALLOW_LIGHTS_VALIDATOR +com.google.android.material.R$integer: int app_bar_elevation_anim_duration +androidx.appcompat.R$styleable: int DrawerArrowToggle_color +androidx.preference.R$attr: int editTextColor +com.google.android.material.card.MaterialCardView: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +androidx.recyclerview.R$drawable: int notification_tile_bg +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchTextAppearance +com.google.android.material.imageview.ShapeableImageView: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +androidx.preference.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void setResource(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$styleable: int Toolbar_collapseIcon +james.adaptiveicon.R$attr: int iconTint +okhttp3.Cache$CacheResponseBody: okio.BufferedSource bodySource +cyanogenmod.alarmclock.CyanogenModAlarmClock +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +wangdaye.com.geometricweather.R$id: int widget_week_icon_4 +androidx.swiperefreshlayout.R$id: int dialog_button +androidx.viewpager.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.slider.BaseSlider$SliderState +android.didikee.donate.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_percent +androidx.appcompat.widget.AppCompatToggleButton +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderText +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getFillAlpha() +james.adaptiveicon.R$style: int Widget_AppCompat_ListPopupWindow +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Longitude +androidx.drawerlayout.widget.DrawerLayout$SavedState: android.os.Parcelable$Creator CREATOR +androidx.appcompat.widget.AppCompatImageView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_divider +io.reactivex.exceptions.OnErrorNotImplementedException: OnErrorNotImplementedException(java.lang.Throwable) +androidx.preference.R$string: int search_menu_title +com.turingtechnologies.materialscrollbar.R$attr: int actionModeStyle +wangdaye.com.geometricweather.R$attr: int arrowShaftLength +com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context,android.util.AttributeSet,int) +okio.BufferedSource: short readShortLe() +androidx.constraintlayout.widget.R$attr: int pathMotionArc +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property HoursOfSun +androidx.appcompat.app.AppCompatDelegateImpl$ListMenuDecorView +androidx.constraintlayout.widget.R$attr: int dividerVertical +androidx.preference.R$styleable: int StateListDrawable_android_visible +androidx.preference.R$id: int accessibility_custom_action_20 +com.turingtechnologies.materialscrollbar.R$layout: int design_layout_tab_icon +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void applyAndAckSettings(boolean,okhttp3.internal.http2.Settings) +io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.ObservableSource) +com.jaredrummler.android.colorpicker.R$dimen: int notification_content_margin_start +androidx.dynamicanimation.R$styleable +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_voiceIcon +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: java.util.concurrent.atomic.AtomicInteger wip +james.adaptiveicon.R$styleable: int MenuGroup_android_enabled +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixTextColor +wangdaye.com.geometricweather.R$dimen: int default_dimension +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerNext(io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryInnerObserver) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean cancelled +androidx.hilt.work.R$attr: int fontWeight +androidx.lifecycle.ProcessLifecycleOwner: void activityResumed() +androidx.constraintlayout.widget.R$id: int alertTitle +okhttp3.internal.http2.Http2Reader$Handler: void data(boolean,int,okio.BufferedSource,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getBrandId() +com.google.android.material.R$dimen: int notification_big_circle_margin +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setBrandId(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_dividerPadding +androidx.dynamicanimation.R$layout: int notification_template_part_time +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_overflow_padding_start_material +io.reactivex.internal.util.VolatileSizeArrayList: boolean addAll(int,java.util.Collection) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: int phenomenonId +androidx.preference.R$styleable: int SwitchPreferenceCompat_summaryOff +wangdaye.com.geometricweather.settings.activities.SettingsActivity: SettingsActivity() +wangdaye.com.geometricweather.R$drawable: int shortcuts_cloudy +retrofit2.Retrofit$Builder: retrofit2.Platform platform +cyanogenmod.providers.CMSettings$DiscreteValueValidator: java.lang.String[] mValues +com.google.android.material.R$styleable: int Constraint_layout_goneMarginTop +androidx.fragment.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial() +androidx.preference.R$styleable: int AppCompatTextView_textLocale +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizePresetSizes +wangdaye.com.geometricweather.R$color: int notification_background_primary +androidx.core.R$attr: int fontProviderFetchStrategy +androidx.appcompat.R$style: int TextAppearance_AppCompat_Body1 +cyanogenmod.weather.RequestInfo: boolean mIsQueryOnly +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_layoutManager +androidx.preference.R$attr: int actionButtonStyle +okhttp3.CookieJar +okhttp3.EventListener: void responseBodyEnd(okhttp3.Call,long) +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xmp +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemTitle(java.lang.String) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List yundong +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_disabled_holo_light +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onNext(java.lang.Object) +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_widgetLayout +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.http.HttpCodec httpStream() +com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.MinutelyEntity +androidx.appcompat.widget.SearchView: void setOnQueryTextFocusChangeListener(android.view.View$OnFocusChangeListener) +cyanogenmod.themes.ThemeChangeRequest: java.util.Map mPerAppOverlays +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_Toolbar +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_NoActionBar_Bridge +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_icon_size +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: IKeyguardExternalViewCallbacks$Stub$Proxy(android.os.IBinder) +james.adaptiveicon.R$dimen: int abc_text_size_body_2_material +android.didikee.donate.R$attr: int defaultQueryHint +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$xml: int widget_multi_city +com.google.android.material.bottomappbar.BottomAppBar: void setCradleVerticalOffset(float) +com.google.android.material.chip.Chip: void setChipIconEnabledResource(int) +androidx.fragment.R$string: int status_bar_notification_info_overflow +androidx.transition.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.R$layout: int mtrl_picker_fullscreen +com.jaredrummler.android.colorpicker.R$attr: int titleTextAppearance +okhttp3.internal.Util: int checkDuration(java.lang.String,long,java.util.concurrent.TimeUnit) +androidx.appcompat.widget.AppCompatEditText: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.hilt.work.R$dimen: int compat_button_padding_horizontal_material +androidx.preference.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_colored +androidx.preference.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.R$dimen: int share_view_height +com.google.android.material.chip.Chip: android.text.TextUtils$TruncateAt getEllipsize() +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DarkActionBar +com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusBottomStart() +okhttp3.Handshake: Handshake(okhttp3.TlsVersion,okhttp3.CipherSuite,java.util.List,java.util.List) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_switchStyle +okio.Buffer: okio.Buffer writeTo(java.io.OutputStream) +com.turingtechnologies.materialscrollbar.R$attr: int maxImageSize +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String nextAT() +com.google.android.material.R$style: int Widget_MaterialComponents_BottomSheet_Modal +wangdaye.com.geometricweather.R$color: int bright_foreground_disabled_material_light +wangdaye.com.geometricweather.R$drawable: int clock_minute_dark +androidx.constraintlayout.helper.widget.Flow: void setPaddingBottom(int) +androidx.constraintlayout.widget.R$dimen: int abc_text_size_title_material_toolbar +com.google.android.material.R$dimen: int highlight_alpha_material_dark +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void drainLoop() +okhttp3.internal.cache2.Relay: okio.Buffer buffer +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_gradientRadius +androidx.coordinatorlayout.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconTintMode +androidx.constraintlayout.widget.R$id: int off +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: IWeatherProviderServiceClient$Stub() +retrofit2.RequestFactory: boolean isMultipart +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox +androidx.lifecycle.LifecycleEventObserver +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_26 +com.xw.repo.bubbleseekbar.R$attr: int colorPrimaryDark +com.google.android.material.snackbar.SnackbarContentLayout: android.widget.TextView getMessageView() +androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationZ +androidx.appcompat.R$attr: int buttonStyleSmall +androidx.constraintlayout.widget.VirtualLayout +wangdaye.com.geometricweather.R$animator: int mtrl_chip_state_list_anim +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.R$dimen: int material_cursor_inset_bottom +okhttp3.Address: java.net.Proxy proxy +androidx.appcompat.R$anim: int abc_slide_in_bottom +okhttp3.ConnectionSpec$Builder: ConnectionSpec$Builder(okhttp3.ConnectionSpec) okio.HashingSource: okio.HashingSource hmacSha1(okio.Source,okio.ByteString) -com.google.android.material.R$styleable: int Slider_thumbRadius -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterTextColor -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver -okhttp3.internal.http2.Http2Stream$FramingSource: okio.Buffer readBuffer -wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_list -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cuv -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.lifecycle.MediatorLiveData: androidx.arch.core.internal.SafeIterableMap mSources -androidx.hilt.lifecycle.R$drawable: int notification_bg_low_pressed -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_count -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_orientation -cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem(cyanogenmod.app.CustomTile$1) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf -com.google.android.material.R$layout: int test_toolbar -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void cancel() -com.turingtechnologies.materialscrollbar.R$anim: R$anim() -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Today -okhttp3.internal.http1.Http1Codec$AbstractSource: Http1Codec$AbstractSource(okhttp3.internal.http1.Http1Codec,okhttp3.internal.http1.Http1Codec$1) -cyanogenmod.externalviews.KeyguardExternalView: boolean onPreDraw() -androidx.loader.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_97 -wangdaye.com.geometricweather.R$styleable: int Motion_motionPathRotate -androidx.appcompat.widget.AppCompatImageButton: android.graphics.PorterDuff$Mode getSupportImageTintMode() -android.didikee.donate.R$dimen: int abc_text_size_caption_material -retrofit2.adapter.rxjava2.Result: java.lang.Throwable error -com.google.android.material.R$attr: int tabIndicator -okhttp3.internal.Util: boolean containsInvalidHostnameAsciiCodes(java.lang.String) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog -okio.Pipe$PipeSink: okio.Pipe this$0 -cyanogenmod.hardware.ThermalListenerCallback$State: ThermalListenerCallback$State() -wangdaye.com.geometricweather.db.entities.WeatherEntity: int temperature -wangdaye.com.geometricweather.R$attr: int materialCalendarStyle -wangdaye.com.geometricweather.R$xml: int icon_provider_drawable_filter -com.google.android.material.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableTop -androidx.preference.R$styleable: int[] PreferenceTheme -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintEnabled -androidx.appcompat.widget.Toolbar: void setOnMenuItemClickListener(androidx.appcompat.widget.Toolbar$OnMenuItemClickListener) -androidx.fragment.R$style: int TextAppearance_Compat_Notification_Title -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.internal.util.AtomicThrowable errors -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_text_padding_right -com.turingtechnologies.materialscrollbar.R$id: int action_bar -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_rippleColor -wangdaye.com.geometricweather.R$styleable: int Transition_constraintSetStart -androidx.legacy.coreutils.R$attr: int fontProviderFetchTimeout -androidx.appcompat.R$drawable: int abc_ic_voice_search_api_material -android.didikee.donate.R$id: int action_bar_activity_content -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetStart -androidx.hilt.R$id: int accessibility_custom_action_2 -com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding MEMORY -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: void execute() -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Type -wangdaye.com.geometricweather.R$styleable: int[] StateSet -io.reactivex.Observable: io.reactivex.Observable concatArrayEagerDelayError(int,int,io.reactivex.ObservableSource[]) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.functions.Function itemTimeoutIndicator -androidx.drawerlayout.R$drawable: int notification_bg -androidx.customview.R$dimen: int compat_notification_large_icon_max_width -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabText -androidx.constraintlayout.widget.R$layout: int notification_template_part_chronometer -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_Solid -okhttp3.internal.http2.Hpack$Reader: java.util.List getAndResetHeaderList() -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void trySchedule() -wangdaye.com.geometricweather.R$font: int product_sans_thin -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -com.jaredrummler.android.colorpicker.R$dimen: int abc_control_corner_material -wangdaye.com.geometricweather.R$dimen: int design_tab_max_width -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tMin -androidx.lifecycle.extensions.R$color: R$color() -com.google.android.material.R$styleable: int Constraint_layout_constraintTop_toBottomOf -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextTextAppearance -com.google.android.material.R$id: int percent -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor LIGHT -com.google.android.material.R$styleable: int GradientColor_android_centerColor -com.google.android.material.chip.Chip: void setTextStartPaddingResource(int) -androidx.constraintlayout.widget.R$color: int background_material_light -com.google.android.material.R$style: int Widget_AppCompat_ListView -wangdaye.com.geometricweather.R$integer: int mtrl_chip_anim_duration -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void dispose() -androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory mFactory -james.adaptiveicon.R$color: int abc_search_url_text_normal -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_black -cyanogenmod.weather.RequestInfo$1: cyanogenmod.weather.RequestInfo createFromParcel(android.os.Parcel) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -okhttp3.Protocol: okhttp3.Protocol[] values() -wangdaye.com.geometricweather.R$id: int item_alert_subtitle -retrofit2.http.FieldMap -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getBackgroundColor() -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_height_material -okio.SegmentedByteString: java.nio.ByteBuffer asByteBuffer() -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService -com.google.android.material.R$id: int alertTitle -androidx.appcompat.widget.LinearLayoutCompat: int getDividerPadding() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusTopStart -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isCompletable -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver -wangdaye.com.geometricweather.R$id: int switchWidget -james.adaptiveicon.R$styleable: int SwitchCompat_splitTrack -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_MAX_INDEX -com.xw.repo.bubbleseekbar.R$dimen: int abc_seekbar_track_background_height_material -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActivityChooserView -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$id: int sides -com.google.android.material.R$attr: int listChoiceBackgroundIndicator -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: boolean isDisposed() -com.google.android.material.button.MaterialButtonToggleGroup: void removeOnButtonCheckedListener(com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener) -com.google.android.material.R$dimen: int mtrl_slider_label_radius -android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar_Small -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$string: int snow -androidx.viewpager.R$dimen: R$dimen() -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BLUETOOTH_ICON -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Title -james.adaptiveicon.R$dimen: int abc_action_bar_default_height_material -okhttp3.logging.HttpLoggingInterceptor: java.util.Set headersToRedact -cyanogenmod.weatherservice.ServiceRequestResult: java.util.List getLocationLookupList() -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_to_on_mtrl_015 -com.turingtechnologies.materialscrollbar.CustomIndicator: int getTextSize() -cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService this$0 -wangdaye.com.geometricweather.R$styleable: int NavigationView_android_fitsSystemWindows -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitleTextColor -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer getDbz() -james.adaptiveicon.R$color: int abc_tint_default -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum() -com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_max -okhttp3.CertificatePinner$Pin: java.lang.String WILDCARD -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: ThemeVersion$ThemeVersionImpl2() -okhttp3.internal.http2.Http2: byte TYPE_CONTINUATION -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_dither -androidx.constraintlayout.widget.R$drawable: int abc_action_bar_item_background_material -wangdaye.com.geometricweather.R$id: int notification_big_temp_2 -james.adaptiveicon.R$id: int time -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Info -androidx.appcompat.R$style: int Base_Widget_AppCompat_ProgressBar -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int state -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy -com.google.android.material.R$attr: int color -okhttp3.internal.http2.Http2Stream$FramingSink -com.jaredrummler.android.colorpicker.R$anim: int abc_grow_fade_in_from_bottom -com.google.android.material.R$id: int selection_type -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: AtmoAuraQAResult$MultiDaysIndexs$MultiIndex() -wangdaye.com.geometricweather.R$styleable: int[] TextInputLayout -androidx.legacy.coreutils.R$id: int forever -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_max -okhttp3.Cookie: boolean httpOnly -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_pressed_z -wangdaye.com.geometricweather.db.entities.DailyEntity -com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$id: int gone -com.google.android.material.R$style: int Widget_Design_Snackbar -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_18 -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -wangdaye.com.geometricweather.R$string: int circular_progress_view -okhttp3.internal.ws.RealWebSocket$2: RealWebSocket$2(okhttp3.internal.ws.RealWebSocket,okhttp3.Request) -androidx.preference.R$attr: int logo -wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context) -com.turingtechnologies.materialscrollbar.R$string: int fab_transformation_scrim_behavior -okhttp3.internal.connection.RouteException: RouteException(java.io.IOException) -com.google.android.material.R$layout: int material_clock_display -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: void run() -okhttp3.Address: okhttp3.CertificatePinner certificatePinner -james.adaptiveicon.R$attr: int borderlessButtonStyle -androidx.hilt.lifecycle.R$drawable: R$drawable() -com.google.android.material.R$id: int transition_scene_layoutid_cache -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsShow(boolean) -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: io.reactivex.internal.disposables.SequentialDisposable timed -com.turingtechnologies.materialscrollbar.R$attr: int insetForeground -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_addProfile -cyanogenmod.weather.IRequestInfoListener$Stub -androidx.constraintlayout.widget.R$string: int abc_capital_on -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okhttp3.MediaType contentType() -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_15 -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: ObservablePublish$InnerDisposable(io.reactivex.Observer) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: MfHistoryResult$History$Weather() -com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_percent -cyanogenmod.os.Concierge$ParcelInfo: Concierge$ParcelInfo(android.os.Parcel,int) -androidx.appcompat.R$attr: int buttonCompat -com.google.gson.stream.JsonReader: char readEscapeCharacter() -androidx.constraintlayout.widget.Barrier -okhttp3.internal.platform.AndroidPlatform$CloseGuard: okhttp3.internal.platform.AndroidPlatform$CloseGuard get() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int TORNADO -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow snow -com.google.android.material.internal.ParcelableSparseIntArray: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemTextAppearance -androidx.preference.R$styleable: int[] Spinner -androidx.appcompat.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: java.lang.String LocalizedText -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitation -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onSuccess(java.lang.Object) -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableLeft -wangdaye.com.geometricweather.R$styleable: int[] Chip -androidx.activity.R$layout -com.jaredrummler.android.colorpicker.R$attr: int titleMargins -com.google.android.material.R$dimen: int tooltip_y_offset_non_touch -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_4 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: double Value -androidx.lifecycle.ProcessLifecycleOwner: ProcessLifecycleOwner() -com.google.android.material.R$drawable: int ic_mtrl_checked_circle -com.google.android.material.R$styleable: int Toolbar_navigationIcon -wangdaye.com.geometricweather.R$attr: int dependency -androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy[] values() -androidx.appcompat.R$attr: int textAppearanceListItem -androidx.hilt.lifecycle.R$drawable: int notification_bg -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Counter -androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_small_material -androidx.recyclerview.R$id: int accessibility_custom_action_19 -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_min -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String brandId -com.google.android.material.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Alert -wangdaye.com.geometricweather.R$layout: int design_layout_snackbar -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -wangdaye.com.geometricweather.R$id: int backBtn -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteInTxIterable -wangdaye.com.geometricweather.R$styleable: int Constraint_android_visibility -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul3H -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -androidx.loader.R$styleable: int GradientColor_android_centerY -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -com.google.android.material.R$dimen: int abc_action_bar_stacked_max_height -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColor -com.jaredrummler.android.colorpicker.R$drawable: int notification_action_background -androidx.appcompat.R$dimen: int abc_action_bar_default_height_material -okhttp3.internal.cache2.Relay: Relay(java.io.RandomAccessFile,okio.Source,long,okio.ByteString,long) -okio.BufferedSource: boolean rangeEquals(long,okio.ByteString) -androidx.hilt.work.R$id: int accessibility_custom_action_3 -androidx.preference.R$styleable: int SwitchPreference_android_switchTextOff -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint DewPoint -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -cyanogenmod.weather.CMWeatherManager: int requestWeatherUpdate(cyanogenmod.weather.WeatherLocation,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener) -okhttp3.OkHttpClient$1 -androidx.preference.R$style: int TextAppearance_AppCompat_Small_Inverse -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.DatabaseOpenHelper$EncryptedHelper encryptedHelper +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: int status +androidx.vectordrawable.R$id: int action_text +com.google.android.material.bottomnavigation.BottomNavigationView: int getItemTextAppearanceInactive() +com.turingtechnologies.materialscrollbar.R$id: int add +com.bumptech.glide.R$id: int time +cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,int,int) +james.adaptiveicon.R$dimen: int abc_dialog_fixed_height_major +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_navigationIcon +cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileGroup getActiveProfileGroup(java.lang.String) +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onError(java.lang.Throwable) +retrofit2.RequestBuilder: void canonicalizeForPath(okio.Buffer,java.lang.String,int,int,boolean) +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteAll +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_extra_spacing_horizontal +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getUnitId() +cyanogenmod.app.LiveLockScreenInfo: cyanogenmod.app.LiveLockScreenInfo clone() +androidx.preference.R$anim: int fragment_close_exit +wangdaye.com.geometricweather.location.services.LocationService: void cancel() +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Connection getConnection() +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTopCompat +com.turingtechnologies.materialscrollbar.R$attr: int scrimVisibleHeightTrigger +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: long getTime() +androidx.appcompat.R$attr: int toolbarStyle +androidx.constraintlayout.widget.R$id: int line1 +androidx.appcompat.R$styleable: int MenuItem_android_checkable +cyanogenmod.hardware.CMHardwareManager: int FEATURE_AUTO_CONTRAST +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +com.google.android.material.R$color: int mtrl_calendar_selected_range +com.google.android.material.R$style: int Widget_Design_TextInputEditText +com.google.android.material.R$styleable: int[] CollapsingToolbarLayout okhttp3.internal.http2.Hpack$Writer: okhttp3.internal.http2.Header[] dynamicTable -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: int hashCode() -com.jaredrummler.android.colorpicker.R$attr: int titleMarginTop -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry geometry -androidx.preference.R$attr: int textAppearanceLargePopupMenu -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String STYLE_URI -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWeatherText -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int AlertID -androidx.preference.R$dimen: int abc_text_size_caption_material -okhttp3.internal.platform.ConscryptPlatform: ConscryptPlatform() -wangdaye.com.geometricweather.R$attr: int tickVisible -okhttp3.CacheControl: java.lang.String toString() -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status LOADING -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void collapseNotificationPanel() -com.google.android.material.R$styleable: int OnClick_targetId -com.google.android.material.slider.BaseSlider: void setStepSize(float) -okio.ByteString: okio.ByteString digest(java.lang.String) -com.google.android.material.R$attr: int iconSize -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String power -com.xw.repo.bubbleseekbar.R$attr: int tooltipForegroundColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String brandId -android.didikee.donate.R$styleable: int AlertDialog_showTitle -com.turingtechnologies.materialscrollbar.R$style: int Platform_V21_AppCompat_Light -james.adaptiveicon.R$color: int primary_text_default_material_dark -wangdaye.com.geometricweather.R$string: int key_notification_custom_color -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level BASIC -james.adaptiveicon.R$id: int search_voice_btn -androidx.constraintlayout.widget.R$layout -androidx.appcompat.R$style: int Theme_AppCompat_Dialog_MinWidth -androidx.activity.R$id: int accessibility_custom_action_29 -james.adaptiveicon.R$attr: int buttonBarStyle -okhttp3.RealCall: okhttp3.Response getResponseWithInterceptorChain() -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void cancelRequest(int) -com.google.android.material.R$styleable: int[] SnackbarLayout -androidx.lifecycle.extensions.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorColor -okio.Okio: Okio() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SearchView -com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.hardware.ICMHardwareService: boolean isSunlightEnhancementSelfManaged() -wangdaye.com.geometricweather.R$attr: int prefixText -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit -com.google.android.material.R$layout: int mtrl_picker_header_dialog -android.didikee.donate.R$color: int material_blue_grey_800 -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_registerChangeListener -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxPlain -android.didikee.donate.R$color: int switch_thumb_normal_material_light -androidx.constraintlayout.widget.R$color: int primary_material_light -androidx.hilt.lifecycle.R$dimen: int compat_button_padding_horizontal_material -androidx.appcompat.R$anim: int btn_checkbox_to_checked_icon_null_animation -okio.ForwardingTimeout: long deadlineNanoTime() -com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_toTopOf -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_orientation -io.reactivex.Observable: io.reactivex.Completable flatMapCompletable(io.reactivex.functions.Function) -com.google.android.material.R$dimen: int mtrl_textinput_start_icon_margin_end -io.reactivex.Observable: io.reactivex.Observable skip(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.xw.repo.bubbleseekbar.R$attr: int actionBarWidgetTheme -okhttp3.Request: java.lang.String method() -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetStart -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getWeatherKind() -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceGroup -androidx.loader.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event UPDATE -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedWidthMinor -okio.HashingSink: javax.crypto.Mac mac -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_title_material -okhttp3.Cookie: java.lang.String domain -cyanogenmod.weatherservice.IWeatherProviderService$Stub: cyanogenmod.weatherservice.IWeatherProviderService asInterface(android.os.IBinder) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream getStream(int) -wangdaye.com.geometricweather.R$array: int live_wallpaper_day_night_type_values -wangdaye.com.geometricweather.R$array: int subtitle_data -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMenuView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getBrandId() +com.jaredrummler.android.colorpicker.R$layout: int abc_popup_menu_header_item_layout +com.google.android.material.slider.BaseSlider: void setSeparationUnit(int) +com.google.android.material.R$attr: int materialAlertDialogTitleTextStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +io.reactivex.Observable: io.reactivex.Observable publish(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentWidth +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemTextColor +wangdaye.com.geometricweather.R$color: int mtrl_outlined_stroke_color +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_item_max_width +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.utils.widget.ImageFilterView: void setCrossfade(float) +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$attr: int actionModePasteDrawable +com.jaredrummler.android.colorpicker.R$string: int abc_menu_delete_shortcut_label +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sAlwaysTrueValidator +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status valueOf(java.lang.String) +okhttp3.ResponseBody$BomAwareReader: void close() +wangdaye.com.geometricweather.R$styleable: int MenuItem_tooltipText +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: long beginTime +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.internal.util.AtomicThrowable errors +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColorLink +wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogTitle +io.reactivex.Observable: io.reactivex.Observable flatMapIterable(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$style: int PreferenceCategoryTitleTextStyle +com.jaredrummler.android.colorpicker.R$attr: int radioButtonStyle +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean isDisposed() +com.google.android.material.R$dimen: int notification_media_narrow_margin +androidx.appcompat.R$style: int Base_Widget_AppCompat_ButtonBar +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.Function leftEnd +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean delayError +wangdaye.com.geometricweather.main.utils.MainPalette +wangdaye.com.geometricweather.R$attr: int bsb_anim_duration +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyleSmall +androidx.constraintlayout.widget.R$layout: int notification_action +cyanogenmod.externalviews.ExternalView$7: cyanogenmod.externalviews.ExternalView this$0 +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.background.receiver.MainReceiver: MainReceiver() +okhttp3.Handshake: java.security.Principal peerPrincipal() +okhttp3.internal.http2.Http2Connection$Builder: okio.BufferedSource source +androidx.transition.R$attr: int ttcIndex +androidx.viewpager2.R$attr: int fontWeight +wangdaye.com.geometricweather.R$styleable: int[] ActivityChooserView +androidx.preference.R$styleable: int Preference_android_selectable +com.google.android.material.appbar.CollapsingToolbarLayout: void setTitle(java.lang.CharSequence) +com.xw.repo.bubbleseekbar.R$style: int Platform_V25_AppCompat_Light +com.google.android.material.R$dimen: int mtrl_low_ripple_hovered_alpha +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties +com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatHoveredFocusedTranslationZ() +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onNext(java.lang.Object) +com.google.android.material.R$style: int Widget_MaterialComponents_Button_OutlinedButton +okio.Buffer: int readIntLe() +androidx.appcompat.R$id: int accessibility_custom_action_21 +okhttp3.Response$Builder: okhttp3.Response$Builder priorResponse(okhttp3.Response) +com.google.gson.stream.JsonReader: int NUMBER_CHAR_NONE +androidx.preference.R$drawable: int notification_icon_background +com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Id +androidx.work.R$id: int accessibility_custom_action_19 +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacingVertical +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA +androidx.appcompat.R$drawable: int abc_btn_radio_material +wangdaye.com.geometricweather.R$string: int get_more_github +wangdaye.com.geometricweather.R$drawable: int notif_temp_117 +androidx.constraintlayout.widget.R$styleable: int[] MotionHelper +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit K +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean delayErrors +wangdaye.com.geometricweather.R$attr: int layoutDescription +com.google.android.material.R$string: int mtrl_picker_range_header_only_start_selected +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_16 +androidx.preference.R$drawable: int abc_text_select_handle_left_mtrl_light +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginStart +androidx.appcompat.widget.AppCompatCheckedTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +okhttp3.internal.http2.Http2Writer: boolean client +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_toLeftOf +com.turingtechnologies.materialscrollbar.R$attr: int popupTheme +androidx.hilt.lifecycle.R$styleable: int[] FontFamilyFont +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver +androidx.preference.R$styleable: int AppCompatTheme_windowFixedHeightMajor +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float rainPrecipitationProbability +wangdaye.com.geometricweather.R$dimen: int design_tab_max_width +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$styleable: int AppCompatTextView_lineHeight +com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierMargin +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerNext() +androidx.appcompat.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +wangdaye.com.geometricweather.R$integer: int mtrl_btn_anim_delay_ms +james.adaptiveicon.R$drawable: int abc_text_select_handle_left_mtrl_dark +wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_toBottomOf +wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +androidx.loader.R$id: int forever +androidx.dynamicanimation.R$layout: R$layout() +org.greenrobot.greendao.database.DatabaseOpenHelper: void onUpgrade(org.greenrobot.greendao.database.Database,int,int) +androidx.legacy.coreutils.R$drawable: int notification_tile_bg +com.xw.repo.bubbleseekbar.R$color: int button_material_dark +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd +com.google.android.material.R$color: int material_blue_grey_950 +com.google.android.material.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +com.google.android.material.R$styleable: int Constraint_android_rotationX +cyanogenmod.app.Profile$ProfileTrigger +com.google.android.material.R$styleable: int Constraint_layout_constraintBaseline_creator +wangdaye.com.geometricweather.R$styleable: int[] SwitchMaterial +androidx.constraintlayout.widget.R$styleable: int Constraint_motionProgress +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType[] $VALUES +cyanogenmod.profiles.BrightnessSettings: void processOverride(android.content.Context) +androidx.appcompat.R$styleable: int Toolbar_collapseContentDescription +androidx.preference.R$id: int line1 +com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorType() +wangdaye.com.geometricweather.db.entities.DailyEntity +retrofit2.OptionalConverterFactory$OptionalConverter: OptionalConverterFactory$OptionalConverter(retrofit2.Converter) +wangdaye.com.geometricweather.R$id: int notification_big_week_4 +okio.Timeout: okio.Timeout deadline(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetDailyEntityList() +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +cyanogenmod.app.IProfileManager: void resetAll() +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle MATERIAL +cyanogenmod.os.Build: java.lang.String CYANOGENMOD_VERSION +cyanogenmod.providers.CMSettings$Secure: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) +okhttp3.Headers +com.google.android.material.R$styleable: int Spinner_android_entries +okio.BufferedSink: okio.BufferedSink write(byte[]) +okhttp3.internal.ws.RealWebSocket: void failWebSocket(java.lang.Exception,okhttp3.Response) +retrofit2.BuiltInConverters$BufferingResponseBodyConverter: java.lang.Object convert(java.lang.Object) +com.xw.repo.bubbleseekbar.R$layout: int abc_action_mode_bar +com.bumptech.glide.R$attr: int alpha +androidx.preference.R$attr: int textAppearanceListItemSmall +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabText +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade +androidx.hilt.R$dimen: int notification_big_circle_margin +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_popupMenuStyle +androidx.appcompat.R$styleable: int MenuItem_iconTint +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTheme +com.turingtechnologies.materialscrollbar.R$attr: int divider +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_order okhttp3.internal.http2.Http2Connection$Listener: okhttp3.internal.http2.Http2Connection$Listener REFUSE_INCOMING_STREAMS -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_toBottomOf -retrofit2.RequestFactory: boolean isKotlinSuspendFunction -com.google.android.material.R$attr: int state_above_anchor -cyanogenmod.util.ColorUtils: float[] temperatureToRGB(int) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_LED_OFF_VALIDATOR -okio.HashingSink: okio.HashingSink md5(okio.Sink) -james.adaptiveicon.R$attr: int activityChooserViewStyle -io.reactivex.internal.observers.BlockingObserver: BlockingObserver(java.util.Queue) -androidx.viewpager2.R$style: R$style() -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void dispose() -io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function,boolean,int) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: boolean requestDismissAndStartActivity(android.content.Intent) -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_FloatingActionButton -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: int getWindowType() -com.google.android.material.R$layout: int text_view_with_line_height_from_appearance -androidx.appcompat.widget.AppCompatSpinner: android.graphics.drawable.Drawable getPopupBackground() -androidx.preference.R$dimen: int abc_dropdownitem_text_padding_right -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_WIND -com.google.gson.LongSerializationPolicy: com.google.gson.JsonElement serialize(java.lang.Long) -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -wangdaye.com.geometricweather.R$drawable: int notif_temp_13 -wangdaye.com.geometricweather.R$id: int widget_week_icon_5 -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceUrl() -wangdaye.com.geometricweather.R$drawable: int abc_ic_arrow_drop_right_black_24dp -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int color -androidx.hilt.work.R$bool: int workmanager_test_configuration -com.google.android.material.chip.Chip: void setChipMinHeight(float) -wangdaye.com.geometricweather.R$color: int switch_thumb_material_dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: int UnitType -james.adaptiveicon.R$styleable: int SearchView_android_imeOptions -com.google.android.material.R$styleable: int ActionMode_backgroundSplit -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: boolean done -okhttp3.ConnectionSpec: boolean supportsTlsExtensions -okhttp3.internal.Internal: boolean connectionBecameIdle(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) -com.google.android.material.R$styleable: int[] MaterialTextView -cyanogenmod.profiles.LockSettings: void readFromParcel(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$attr: int searchViewStyle -cyanogenmod.themes.ThemeManager$2 -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayWeekProvider -androidx.preference.R$dimen: int abc_search_view_preferred_width -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitationProbability(java.lang.Float) -androidx.appcompat.R$attr: int actionBarTabStyle -cyanogenmod.hardware.CMHardwareManager: boolean writePersistentBytes(java.lang.String,byte[]) -com.google.android.material.R$styleable: int MaterialButton_strokeColor -com.google.android.material.R$styleable: int DrawerArrowToggle_thickness -wangdaye.com.geometricweather.R$dimen: int abc_switch_padding -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextColor -com.google.android.material.textfield.TextInputEditText: java.lang.CharSequence getHintFromLayout() -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setLegacyRequestDisallowInterceptTouchEventEnabled(boolean) -androidx.fragment.R$id: int accessibility_custom_action_2 -okhttp3.RealCall: okhttp3.Request request() -androidx.appcompat.R$styleable: int CompoundButton_buttonTint -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.preference.R$style: int Widget_AppCompat_Light_ListView_DropDown -wangdaye.com.geometricweather.R$styleable -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabText -androidx.preference.R$integer: int cancel_button_image_alpha -james.adaptiveicon.R$attr: int collapseIcon -okhttp3.logging.LoggingEventListener: void callFailed(okhttp3.Call,java.io.IOException) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_28 -com.turingtechnologies.materialscrollbar.R$id: int unlabeled -androidx.appcompat.R$styleable: int MenuView_subMenuArrow -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getTextSize() -james.adaptiveicon.R$styleable: int ActionBar_customNavigationLayout -androidx.preference.R$dimen: int preference_icon_minWidth -wangdaye.com.geometricweather.settings.fragments.UnitSettingsFragment -androidx.transition.R$styleable: int FontFamily_fontProviderCerts -androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_android_thumb -com.jaredrummler.android.colorpicker.R$dimen: int abc_search_view_preferred_height -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL_VALIDATOR -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setCity(java.lang.String) -wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format_use -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTheme -androidx.appcompat.widget.ActivityChooserView -android.didikee.donate.R$color: int primary_text_disabled_material_dark -okhttp3.internal.http2.StreamResetException -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox -wangdaye.com.geometricweather.R$xml: int live_wallpaper -androidx.appcompat.resources.R$drawable: int notification_bg_normal -com.google.android.material.R$drawable: int ic_clock_black_24dp -com.google.android.material.R$styleable: int TextInputLayout_helperTextEnabled -androidx.appcompat.R$layout: int abc_screen_simple -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.ObservableSource source -android.didikee.donate.R$style: int Platform_AppCompat -okhttp3.internal.ws.WebSocketReader: okio.Buffer$UnsafeCursor maskCursor -androidx.activity.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_tagView -wangdaye.com.geometricweather.R$color: int cardview_shadow_end_color -androidx.appcompat.R$styleable: int Toolbar_subtitle -okio.GzipSink: java.util.zip.Deflater deflater() -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_getCurrentLiveLockScreen -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.String TABLENAME -cyanogenmod.profiles.StreamSettings$1: cyanogenmod.profiles.StreamSettings createFromParcel(android.os.Parcel) -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int bufferSize -wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_container -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_checked -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -android.didikee.donate.R$dimen: int abc_action_bar_stacked_tab_max_width -wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_peek_height_min -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: int UnitType -okio.ForwardingTimeout: okio.Timeout delegate() -com.turingtechnologies.materialscrollbar.R$dimen: int hint_alpha_material_dark -com.jaredrummler.android.colorpicker.R$dimen: int abc_config_prefDialogWidth -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_left -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnClickIntent(android.app.PendingIntent) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_percent -android.didikee.donate.R$id: int src_atop -androidx.viewpager2.R$id: int text -wangdaye.com.geometricweather.R$color: int tooltip_background_light -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void dispose() -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline4 -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String type -androidx.preference.R$drawable: int abc_textfield_activated_mtrl_alpha -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: void run() -androidx.appcompat.widget.AppCompatRadioButton: void setSupportButtonTintMode(android.graphics.PorterDuff$Mode) -okhttp3.internal.http1.Http1Codec: okio.BufferedSource source -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit valueOf(java.lang.String) -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: void writeTo(okio.BufferedSink) -james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$id: int notification_big -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory sInstance -james.adaptiveicon.R$attr: int windowActionModeOverlay -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: BaiduIPLocationService(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi,io.reactivex.disposables.CompositeDisposable) -android.didikee.donate.R$layout: int notification_action -androidx.loader.R$attr: int font -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: AccuCurrentResult$WindGust$Speed() -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mRingerMode -okhttp3.ConnectionPool: ConnectionPool() -okhttp3.internal.http2.Settings: int get(int) -com.google.android.material.R$dimen: int material_text_view_test_line_height -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_stacked_max_height -okhttp3.internal.http2.Http2Reader$Handler: void priority(int,int,int,boolean) -androidx.hilt.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$styleable: int[] ScrimInsetsFrameLayout -wangdaye.com.geometricweather.R$color: int notification_background_primary -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -com.google.android.material.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -android.didikee.donate.R$styleable: int AppCompatTheme_actionMenuTextColor -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_color -com.google.android.material.R$styleable: int Layout_layout_editor_absoluteY -wangdaye.com.geometricweather.R$style: int Platform_AppCompat_Light -androidx.preference.R$id: int accessibility_custom_action_11 -com.google.android.material.appbar.ViewOffsetBehavior: ViewOffsetBehavior(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit MUGPCUM -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_DarkActionBar -okhttp3.internal.cache.DiskLruCache$Editor$1 -wangdaye.com.geometricweather.R$attr: int shapeAppearanceSmallComponent -wangdaye.com.geometricweather.R$drawable: int ic_state_checked -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_color -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_typeface -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundResource(int) -com.google.android.material.R$id: int text_input_start_icon -okhttp3.internal.connection.StreamAllocation: boolean reportedAcquired -androidx.appcompat.R$dimen: int hint_alpha_material_dark -androidx.viewpager2.R$styleable: int RecyclerView_reverseLayout -androidx.transition.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog -retrofit2.HttpServiceMethod$CallAdapted: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) -com.google.android.material.textfield.TextInputLayout$SavedState: android.os.Parcelable$Creator CREATOR -cyanogenmod.providers.CMSettings$System: java.lang.String NAVIGATION_BAR_MENU_ARROW_KEYS -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerX -okhttp3.internal.http2.Http2Connection: int AWAIT_PING -com.bumptech.glide.R$style: int Widget_Support_CoordinatorLayout -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: MfCurrentResult$Observation$Wind() -androidx.activity.R$styleable: int[] GradientColor -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_arrow_drop_right_black_24dp -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.CompositeDisposable set -wangdaye.com.geometricweather.R$id: int activity_alert_container -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: java.lang.Long poll() -androidx.appcompat.widget.AppCompatRadioButton: void setButtonDrawable(android.graphics.drawable.Drawable) -cyanogenmod.weather.WeatherLocation: java.lang.String mState -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfSnow -com.google.android.material.R$id: int submenuarrow -androidx.appcompat.widget.Toolbar: void setCollapseIcon(int) -androidx.constraintlayout.widget.R$attr: int layout_optimizationLevel -android.didikee.donate.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.FragmentActivity) -com.google.android.material.R$anim: int abc_tooltip_exit -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float ParticulateMatter10 -com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String VERSION_NAME -okhttp3.internal.Util: boolean decodeIpv4Suffix(java.lang.String,int,int,byte[],int) -androidx.legacy.coreutils.R$id: int right_side -androidx.constraintlayout.widget.R$attr: int flow_lastVerticalBias -androidx.preference.R$attr: int state_above_anchor -retrofit2.Utils$GenericArrayTypeImpl: java.lang.String toString() -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean outputFused -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SeekBar_Discrete -androidx.viewpager2.R$style -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: AccuHourlyResult() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf -androidx.preference.R$id: int accessibility_custom_action_23 -androidx.viewpager.R$styleable: int GradientColor_android_startX -james.adaptiveicon.R$attr: int navigationMode -android.didikee.donate.R$attr: int paddingTopNoTitle -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer apparentTemperature -com.turingtechnologies.materialscrollbar.R$attr: int paddingBottomNoButtons -com.google.android.material.chip.Chip: float getCloseIconSize() -androidx.work.OverwritingInputMerger -com.google.android.material.R$color: int design_dark_default_color_primary -wangdaye.com.geometricweather.R$drawable: int mtrl_ic_arrow_drop_up -androidx.hilt.R$styleable: int[] Fragment -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void accept(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$attr: int boxStrokeColor -com.google.android.material.R$id: int tag_unhandled_key_listeners -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context) -androidx.vectordrawable.R$styleable: R$styleable() -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetEnd -wangdaye.com.geometricweather.R$dimen: int tooltip_precise_anchor_extra_offset -androidx.lifecycle.extensions.R$attr: int fontProviderAuthority -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.LifecycleRegistry mRegistry -wangdaye.com.geometricweather.R$styleable: int[] BubbleSeekBar -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_fontFamily -com.turingtechnologies.materialscrollbar.R$id: int ghost_view -androidx.preference.R$styleable: int SwitchPreference_android_switchTextOn -cyanogenmod.weather.WeatherInfo: double mTemperature -com.google.android.material.textfield.TextInputLayout: void setCounterTextAppearance(int) +androidx.constraintlayout.helper.widget.Flow: void setFirstHorizontalStyle(int) +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_lightContainer +androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_backgroundTint +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: ObservableBuffer$BufferSkipObserver(io.reactivex.Observer,int,int,java.util.concurrent.Callable) +androidx.appcompat.R$dimen: int abc_text_size_body_2_material +com.jaredrummler.android.colorpicker.R$attr: int actionBarWidgetTheme +androidx.constraintlayout.widget.R$styleable: int[] PopupWindow +wangdaye.com.geometricweather.R$styleable: int Insets_paddingLeftSystemWindowInsets +com.google.android.material.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_background +cyanogenmod.externalviews.KeyguardExternalView: void onLockscreenSlideOffsetChanged(float) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ListView_DropDown +com.google.android.material.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +androidx.constraintlayout.widget.R$id: int baseline +com.google.android.material.slider.Slider: void setTickActiveTintList(android.content.res.ColorStateList) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.Observer downstream +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarSplitStyle +com.jaredrummler.android.colorpicker.R$id: int seekbar_value +wangdaye.com.geometricweather.R$id: int dragUp +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.turingtechnologies.materialscrollbar.R$attr: int hintEnabled +cyanogenmod.weather.CMWeatherManager: java.lang.String getActiveWeatherServiceProviderLabel() +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onComplete() +com.turingtechnologies.materialscrollbar.DragScrollBar: float getHandleOffset() +okhttp3.Cache: void initialize() +androidx.preference.R$id: int action_bar_title +androidx.viewpager2.R$attr: int recyclerViewStyle +com.turingtechnologies.materialscrollbar.R$id: int action_bar_subtitle +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +androidx.preference.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language JAPANESE +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition[] values() +wangdaye.com.geometricweather.R$attr: int dividerVertical +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableBottom +androidx.coordinatorlayout.R$id: int italic +androidx.preference.R$styleable: int SwitchPreference_android_switchTextOff +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Body1 +okhttp3.CipherSuite$1 +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_alphabeticShortcut +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX +com.google.android.material.R$styleable: int CardView_contentPaddingBottom +wangdaye.com.geometricweather.R$drawable: int shortcuts_snow +wangdaye.com.geometricweather.R$color: int colorAccent_dark +wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_indicator_material +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowMinWidthMinor +com.google.android.material.R$id: int parallax +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +wangdaye.com.geometricweather.R$string: int visibility +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.MinutelyEntity,long) +com.turingtechnologies.materialscrollbar.R$color: int button_material_light +androidx.viewpager.widget.PagerTitleStrip: PagerTitleStrip(android.content.Context) +com.github.rahatarmanahmed.cpv.CircularProgressView$8: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +com.google.android.material.R$dimen: int abc_button_padding_vertical_material +androidx.preference.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonSetDate +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSyncDuration +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge +wangdaye.com.geometricweather.R$array: int temperature_unit_values +okhttp3.Challenge +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeRealFeelShaderTemperature() +androidx.lifecycle.AndroidViewModel: AndroidViewModel(android.app.Application) androidx.lifecycle.ReportFragment: void onPause() -androidx.core.R$dimen: int notification_subtext_size -okhttp3.Request: okhttp3.HttpUrl url -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context,android.util.AttributeSet) -androidx.loader.R$styleable: int[] ColorStateListItem -com.turingtechnologies.materialscrollbar.R$integer: int config_tooltipAnimTime -androidx.dynamicanimation.R$id -wangdaye.com.geometricweather.R$attr: int deltaPolarAngle -com.google.android.material.R$styleable: int Toolbar_maxButtonHeight -androidx.appcompat.R$styleable: int AppCompatImageView_srcCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getHeadIconType() -androidx.dynamicanimation.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Linear -com.turingtechnologies.materialscrollbar.R$style: int Base_V28_Theme_AppCompat_Light +cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: WeatherContract$WeatherColumns$WindSpeedUnit() +com.google.android.material.R$styleable: int TextInputLayout_counterTextAppearance +androidx.lifecycle.extensions.R$dimen: int compat_button_inset_horizontal_material +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Today +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent ICON +com.turingtechnologies.materialscrollbar.R$attr: int singleSelection +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenText(android.content.Context,java.lang.Integer) +androidx.activity.R$id: int tag_accessibility_clickable_spans +wangdaye.com.geometricweather.R$styleable: int Slider_android_valueTo +com.google.android.material.chip.Chip: void setIconStartPaddingResource(int) +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_barThickness +androidx.viewpager.R$dimen: int notification_top_pad_large_text +com.turingtechnologies.materialscrollbar.R$layout: int abc_tooltip +android.didikee.donate.R$dimen: int abc_action_bar_content_inset_material +com.google.android.material.R$style: int Base_Widget_AppCompat_ButtonBar +wangdaye.com.geometricweather.R$style: int Test_Theme_MaterialComponents_MaterialCalendar +androidx.preference.R$styleable: int[] ActionMenuItemView +io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$string: int wind_3 +okhttp3.internal.http1.Http1Codec: int STATE_IDLE +androidx.preference.R$styleable: int GradientColor_android_tileMode +okhttp3.internal.ws.RealWebSocket: java.util.ArrayDeque messageAndCloseQueue +com.google.android.material.R$styleable: int RecyclerView_fastScrollEnabled +wangdaye.com.geometricweather.R$drawable: int notif_temp_111 +james.adaptiveicon.R$dimen: int abc_text_size_title_material_toolbar +wangdaye.com.geometricweather.R$attr: int textAppearanceLargePopupMenu +com.xw.repo.bubbleseekbar.R$id: int wrap_content +com.google.android.material.bottomappbar.BottomAppBar: void setHideOnScroll(boolean) +cyanogenmod.weather.RequestInfo: int mTempUnit +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink +com.xw.repo.bubbleseekbar.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_framePosition +okhttp3.internal.cache2.Relay$RelaySource: Relay$RelaySource(okhttp3.internal.cache2.Relay) +com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_top +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String READ_ALARMS_PERMISSION +com.google.android.material.datepicker.DateValidatorPointBackward +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind wind +androidx.hilt.work.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.R$id: int tag_accessibility_heading +androidx.appcompat.R$id: int accessibility_custom_action_6 +com.xw.repo.bubbleseekbar.R$bool: int abc_action_bar_embed_tabs +retrofit2.RequestFactory$Builder: java.lang.Class boxIfPrimitive(java.lang.Class) +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property AlertId +cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener +androidx.appcompat.R$drawable: int notification_template_icon_bg +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_font +com.google.android.material.R$attr: int tabMode +android.didikee.donate.R$styleable: int ActionBar_hideOnContentScroll +androidx.lifecycle.ProcessLifecycleOwner$1: androidx.lifecycle.ProcessLifecycleOwner this$0 +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +okio.DeflaterSink: okio.Timeout timeout() +androidx.viewpager.widget.PagerTabStrip: boolean getDrawFullUnderline() +com.google.android.material.R$style: int ThemeOverlay_AppCompat +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowColor +androidx.preference.R$string: int abc_menu_sym_shortcut_label +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: java.lang.Throwable error +androidx.appcompat.R$id: int time +androidx.legacy.coreutils.R$color: R$color() +androidx.fragment.R$string +wangdaye.com.geometricweather.db.entities.LocationEntity: void setChina(boolean) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getAqiText() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_item_icon_padding +com.google.android.material.R$style: int Base_V21_Theme_AppCompat +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver parent +com.xw.repo.bubbleseekbar.R$attr: int autoCompleteTextViewStyle +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory NORMAL +wangdaye.com.geometricweather.db.entities.WeatherEntity: void update() +com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onAnimationReset() +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setAnimationMode(int) +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getTreeIndex() +okhttp3.Dns: java.util.List lookup(java.lang.String) +androidx.customview.R$attr: int ttcIndex wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitation -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.R$id: int topPanel -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: void run() -androidx.viewpager.widget.PagerTitleStrip: void setGravity(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Link -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_text_size -okhttp3.internal.Internal: void put(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) -james.adaptiveicon.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -androidx.transition.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.R$color: int design_default_color_on_background -cyanogenmod.app.suggest.ApplicationSuggestion: int describeContents() -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void setInteractivity(boolean) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerComplete(io.reactivex.internal.observers.InnerQueuedObserver) -com.google.android.material.R$string: int mtrl_picker_toggle_to_day_selection -wangdaye.com.geometricweather.R$styleable: int ActionBar_indeterminateProgressStyle -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: long serialVersionUID -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night Night -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void innerComplete() -com.turingtechnologies.materialscrollbar.R$id: int firstVisible -androidx.lifecycle.FullLifecycleObserverAdapter: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents -com.google.android.material.R$attr: int prefixTextAppearance -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorContentDescription -androidx.constraintlayout.widget.R$id: int left -androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeRealFeelShaderTemperature +androidx.preference.R$drawable: int abc_list_divider_material +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_background_transition_holo_light +androidx.recyclerview.R$dimen: int item_touch_helper_swipe_escape_velocity +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDaylight(boolean) +wangdaye.com.geometricweather.R$id: int experience +com.google.android.material.R$id: int material_value_index +androidx.work.R$layout: R$layout() +com.google.android.material.R$color: int abc_btn_colored_text_material +com.bumptech.glide.integration.okhttp.R$dimen: int notification_action_text_size +androidx.constraintlayout.widget.R$styleable: int Spinner_android_prompt +com.google.android.material.internal.ParcelableSparseIntArray +wangdaye.com.geometricweather.R$id: int item_about_library_title +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_suggestionRowLayout +com.xw.repo.bubbleseekbar.R$color: int dim_foreground_material_dark +wangdaye.com.geometricweather.R$drawable: int notification_action_background +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_MIN_INDEX +com.google.android.material.R$styleable: int KeyTimeCycle_waveShape +wangdaye.com.geometricweather.R$dimen: int abc_search_view_preferred_height +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW +androidx.preference.R$style: int Theme_AppCompat_CompactMenu +com.turingtechnologies.materialscrollbar.R$attr: int layout_insetEdge +wangdaye.com.geometricweather.R$dimen: int hint_pressed_alpha_material_light +wangdaye.com.geometricweather.R$drawable: int flag_sr +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeMinTextSize +androidx.preference.R$styleable: int LinearLayoutCompat_android_baselineAligned +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_elevation +androidx.fragment.R$dimen: int compat_button_inset_vertical_material +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias +androidx.cardview.R$style: int CardView_Dark +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline3 +wangdaye.com.geometricweather.R$styleable: int[] ScrollingViewBehavior_Layout +retrofit2.converter.gson.GsonRequestBodyConverter: com.google.gson.TypeAdapter adapter +androidx.constraintlayout.widget.R$styleable: int PropertySet_android_alpha +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type SLACK +wangdaye.com.geometricweather.R$attr: int actionModePopupWindowStyle +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onComplete() +com.google.android.material.R$id: int floating +com.google.android.material.R$dimen: int mtrl_btn_corner_radius +android.didikee.donate.R$id: int right_side +wangdaye.com.geometricweather.R$styleable: int Constraint_visibilityMode +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function6) +wangdaye.com.geometricweather.background.service.CMWeatherProviderService +wangdaye.com.geometricweather.R$drawable: int ic_eye +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_trackColor +wangdaye.com.geometricweather.R$id: int tag_accessibility_actions +com.google.android.material.R$dimen: int abc_search_view_preferred_height +retrofit2.http.Field: java.lang.String value() +com.google.android.material.R$styleable: int Chip_hideMotionSpec +com.google.android.material.R$dimen: int design_bottom_navigation_active_item_min_width +androidx.swiperefreshlayout.R$styleable: int[] FontFamily +androidx.work.R$dimen: int notification_top_pad +com.jaredrummler.android.colorpicker.R$attr: int tooltipText +james.adaptiveicon.R$style: int Widget_AppCompat_TextView_SpinnerItem +cyanogenmod.providers.DataUsageContract: java.lang.String CONTENT_TYPE +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: SwipeRefreshLayout(android.content.Context) +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast$Builder setHigh(double) +wangdaye.com.geometricweather.R$array: int distance_unit_voices +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_holo_light +cyanogenmod.externalviews.KeyguardExternalView +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonStyleSmall +com.google.android.material.R$styleable: int ActionBar_titleTextStyle +okhttp3.Request$Builder: okhttp3.Request$Builder put(okhttp3.RequestBody) +androidx.appcompat.widget.ActionBarOverlayLayout: void setUiOptions(int) +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabText +com.google.android.material.card.MaterialCardView: int getContentPaddingTop() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display4 +androidx.lifecycle.ViewModel: java.lang.Object getTag(java.lang.String) +androidx.lifecycle.ViewModelStore +com.google.android.material.R$styleable: int ImageFilterView_round +io.reactivex.subjects.PublishSubject$PublishDisposable: io.reactivex.subjects.PublishSubject parent +com.jaredrummler.android.colorpicker.ColorPickerDialog +androidx.recyclerview.R$dimen: R$dimen() +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_16 +com.google.android.material.R$styleable: int TabItem_android_layout +okhttp3.internal.http2.ConnectionShutdownException +androidx.appcompat.widget.ActionBarContextView: void setVisibility(int) +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: android.os.IBinder asBinder() +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCardBackgroundColor() +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Spinner +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: CallExecuteObservable$CallDisposable(retrofit2.Call) +androidx.preference.R$color: int bright_foreground_inverse_material_light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial Imperial +io.reactivex.exceptions.CompositeException: int size() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitation(java.lang.Float) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Large +wangdaye.com.geometricweather.R$string: int key_notification_temp_icon +okhttp3.Protocol +android.didikee.donate.R$styleable: int AppCompatTheme_dividerHorizontal +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void disposeInner() +androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModel get(java.lang.Class) +wangdaye.com.geometricweather.R$id: int info +androidx.dynamicanimation.R$dimen: int compat_button_padding_vertical_material +okhttp3.internal.http.RequestLine: boolean includeAuthorityInRequestLine(okhttp3.Request,java.net.Proxy$Type) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver this$0 +com.google.android.material.R$dimen: int abc_action_bar_overflow_padding_start_material +com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context) +okio.Segment: boolean owner +com.google.android.material.floatingactionbutton.FloatingActionButton: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) +retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.Object adapt(retrofit2.Call) +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_type +com.turingtechnologies.materialscrollbar.R$attr: int buttonPanelSideLayout +com.google.android.material.R$style: int Base_V7_Widget_AppCompat_EditText +okhttp3.internal.ws.RealWebSocket$2: okhttp3.Request val$request +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void dispose() +com.google.android.material.bottomappbar.BottomAppBar$SavedState +androidx.swiperefreshlayout.R$id: int tag_screen_reader_focusable +androidx.constraintlayout.widget.R$id: int screen +androidx.preference.R$styleable: int AppCompatTheme_colorControlNormal +okhttp3.internal.ws.RealWebSocket$Message: RealWebSocket$Message(int,okio.ByteString) +james.adaptiveicon.R$attr: int listLayout +retrofit2.converter.gson.GsonResponseBodyConverter: com.google.gson.TypeAdapter adapter +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_toTopOf +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_dialogTitle +androidx.appcompat.R$attr: int logo +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_4 +com.jaredrummler.android.colorpicker.R$attr: int homeAsUpIndicator +cyanogenmod.app.Profile$1 +com.bumptech.glide.integration.okhttp.R$styleable: int[] CoordinatorLayout +androidx.constraintlayout.widget.R$styleable: int[] ActionBarLayout +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_days_of_week_height +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_CheckBox +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.http.HttpCodec httpCodec +com.jaredrummler.android.colorpicker.R$color: int material_grey_850 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum Minimum +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setUrl(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean) +androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveData(java.lang.String) +androidx.activity.R$styleable: int FontFamilyFont_fontVariationSettings +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_CollapsingToolbar +com.google.android.material.R$dimen: int mtrl_btn_text_btn_padding_left +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_switchTextOn +cyanogenmod.hardware.CMHardwareManager: boolean registerThermalListener(cyanogenmod.hardware.ThermalListenerCallback) +wangdaye.com.geometricweather.R$attr: int actionModeSplitBackground +wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format_example +com.turingtechnologies.materialscrollbar.R$style: int Base_DialogWindowTitle_AppCompat +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder cipherSuites(java.lang.String[]) +org.greenrobot.greendao.AbstractDao: void deleteByKeyInTx(java.lang.Object[]) +androidx.transition.R$attr: int fontProviderCerts +com.google.android.material.R$attr: int moveWhenScrollAtTop +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: androidx.lifecycle.LifecycleOwner mLifecycle +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView +com.turingtechnologies.materialscrollbar.R$attr: int alphabeticModifiers +com.google.android.material.R$attr: int textAppearanceLineHeightEnabled +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabText +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: java.util.concurrent.atomic.AtomicLong requested +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeightLarge +androidx.recyclerview.R$id: int text +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: java.lang.reflect.Method findByIssuerAndSignatureMethod +cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weather.RequestInfo mInfo +wangdaye.com.geometricweather.R$string: int feedback_hide_subtitle +cyanogenmod.alarmclock.CyanogenModAlarmClock: android.content.Intent createAlarmIntent(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.util.List getValue() +wangdaye.com.geometricweather.background.receiver.widget.AbstractWidgetProvider: AbstractWidgetProvider() +cyanogenmod.platform.R$array: R$array() +com.google.android.material.R$id: int mtrl_picker_title_text +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onComplete() +wangdaye.com.geometricweather.R$styleable: int Transform_android_rotationX +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: float getDensity(float) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DarkActionBar +androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_Tooltip +com.google.android.material.chip.Chip: void setLines(int) +wangdaye.com.geometricweather.R$id: int material_clock_hand +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onScreenTurnedOff() +cyanogenmod.providers.CMSettings$System: java.lang.String HIGH_TOUCH_SENSITIVITY_ENABLE +okhttp3.internal.io.FileSystem$1: okio.Source source(java.io.File) +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableDelegateState: int getChangingConfigurations() +androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context) +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_UNDERSCORES +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents +com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_padding_material +com.google.android.material.R$attr: int hintAnimationEnabled +android.support.v4.os.IResultReceiver$Stub: int TRANSACTION_send +com.github.rahatarmanahmed.cpv.CircularProgressView: float INDETERMINANT_MIN_SWEEP +com.turingtechnologies.materialscrollbar.R$id: int tabMode +retrofit2.http.Multipart +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String ShortPhrase +com.turingtechnologies.materialscrollbar.R$dimen: int abc_disabled_alpha_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String url +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA +androidx.swiperefreshlayout.R$dimen: int notification_action_icon_size +james.adaptiveicon.R$drawable: int abc_ic_star_black_48dp +com.turingtechnologies.materialscrollbar.R$attr: int hideMotionSpec +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemTextAppearanceActive() +androidx.core.R$id: int tag_accessibility_actions +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void drainAndDispose() +okio.GzipSink: void writeFooter() +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec codec() +androidx.preference.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +android.didikee.donate.R$style +james.adaptiveicon.R$id: int right_side +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$FramingSource source +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.R$attr: int buttonBarStyle +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabText +com.bumptech.glide.integration.okhttp.R$attr +android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedHeightMinor +androidx.constraintlayout.widget.R$color: int abc_search_url_text +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIconTintList(android.content.res.ColorStateList) +okhttp3.internal.http2.Header: okio.ByteString RESPONSE_STATUS +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_4 +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getTranslateX() +wangdaye.com.geometricweather.R$styleable: int Slider_tickColorActive +com.bumptech.glide.R$styleable: int FontFamilyFont_font +androidx.activity.R$id: int accessibility_custom_action_5 +wangdaye.com.geometricweather.R$attr: int bsb_bubble_text_size +androidx.appcompat.R$attr +cyanogenmod.hardware.CMHardwareManager: int getDisplayGammaCalibrationMax() +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onError(java.lang.Throwable) +okio.Buffer: okio.Buffer write(okio.ByteString) +wangdaye.com.geometricweather.R$styleable: int Chip_rippleColor +wangdaye.com.geometricweather.R$style: int Widget_Design_NavigationView +okhttp3.Headers$Builder: okhttp3.Headers build() +cyanogenmod.app.ProfileManager: java.util.UUID NO_PROFILE +wangdaye.com.geometricweather.R$string: int phase_third +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectTimeout(long,java.util.concurrent.TimeUnit) +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_to_on_mtrl_000 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_107 +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +james.adaptiveicon.R$layout: int abc_expanded_menu_layout +com.jaredrummler.android.colorpicker.R$id: int info +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +androidx.preference.PreferenceScreen: PreferenceScreen(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_reverseLayout +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: long serialVersionUID +wangdaye.com.geometricweather.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Counter +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyBottomLeft +wangdaye.com.geometricweather.R$string: int get_more +androidx.preference.R$styleable: int AppCompatTheme_listPopupWindowStyle +com.google.android.material.R$style: int AlertDialog_AppCompat +com.turingtechnologies.materialscrollbar.R$color: int material_grey_600 +io.reactivex.Observable: io.reactivex.Observable ofType(java.lang.Class) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: int rightIndex +cyanogenmod.app.BaseLiveLockManagerService: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +com.jaredrummler.android.colorpicker.R$color: int material_grey_50 +com.google.android.material.R$attr: int dropDownListViewStyle +androidx.preference.R$dimen: int abc_text_size_body_2_material +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderAuthority +com.jaredrummler.android.colorpicker.R$attr: int cpv_allowPresets +com.google.gson.stream.JsonReader: boolean isLenient() +com.turingtechnologies.materialscrollbar.R$attr: int thumbTintMode +com.turingtechnologies.materialscrollbar.R$attr: int strokeColor +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_icon_null_animation +androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandle getHandle() +androidx.appcompat.R$styleable: int AppCompatTheme_dividerHorizontal +androidx.appcompat.R$attr: int actionBarTabTextStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric Metric +com.jaredrummler.android.colorpicker.R$attr: int preferenceCategoryStyle +androidx.customview.R$style +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Title +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy +wangdaye.com.geometricweather.R$attr: int layout_goneMarginLeft +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_imeOptions +wangdaye.com.geometricweather.R$attr: int max +com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierDirection +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotation +okhttp3.HttpUrl: java.lang.String FRAGMENT_ENCODE_SET +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setStatus(int) +androidx.constraintlayout.widget.R$style +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver +wangdaye.com.geometricweather.R$dimen: int design_snackbar_elevation +androidx.preference.R$attr: int seekBarIncrement +androidx.core.R$id: int notification_background +androidx.preference.R$drawable: int abc_cab_background_internal_bg +androidx.transition.R$attr: int fontProviderAuthority +androidx.preference.R$style: int Base_V21_Theme_AppCompat_Light +com.google.android.material.R$color: int test_mtrl_calendar_day +com.turingtechnologies.materialscrollbar.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop +okhttp3.internal.http2.Hpack$Reader: int dynamicTableByteCount +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: void setFrom(java.util.Date) +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: IKeyguardExternalViewProvider$Stub$Proxy(android.os.IBinder) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast +androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context,android.util.AttributeSet) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int THUNDERSTORMS +androidx.appcompat.R$styleable: int SwitchCompat_thumbTextPadding +com.google.android.material.R$dimen: int abc_list_item_padding_horizontal_material +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBaseline_creator +com.xw.repo.bubbleseekbar.R$attr: int fontWeight +androidx.preference.R$anim: int fragment_close_enter +james.adaptiveicon.R$styleable: int AppCompatTheme_actionDropDownStyle +androidx.preference.R$styleable: int MenuItem_android_onClick +io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer) +com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_linear +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceUrl() +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode valueOf(java.lang.String) +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline4 +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void cancel() +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_dividerPadding +android.didikee.donate.R$dimen: int hint_alpha_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionBar +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List hourly_forecast +androidx.preference.R$attr: int track +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ButtonBar +wangdaye.com.geometricweather.R$styleable: int[] PreferenceGroup +wangdaye.com.geometricweather.R$dimen: int tooltip_y_offset_non_touch +cyanogenmod.profiles.LockSettings: java.lang.String TAG +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: boolean handles(android.content.Intent) +com.google.android.material.R$attr: int itemIconTint +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_toRightOf +androidx.drawerlayout.R$integer: int status_bar_notification_info_maxnum +androidx.appcompat.R$dimen: int abc_action_bar_elevation_material +com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu +okhttp3.Dispatcher: java.util.Deque runningAsyncCalls +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Subhead_Inverse +okio.BufferedSource: byte[] readByteArray() +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindDircStart(java.lang.String) +androidx.appcompat.R$styleable: int[] ActionBarLayout +okhttp3.internal.http.HttpDate$1: java.lang.Object initialValue() +android.didikee.donate.R$styleable: int AppCompatTheme_viewInflaterClass +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginStart +androidx.viewpager2.widget.ViewPager2: void setUserInputEnabled(boolean) +wangdaye.com.geometricweather.settings.activities.AboutActivity: AboutActivity() +com.google.android.material.R$dimen: int material_helper_text_font_1_3_padding_horizontal +com.jaredrummler.android.colorpicker.R$id: int action_mode_close_button +androidx.constraintlayout.helper.widget.Flow: void setVerticalGap(int) +wangdaye.com.geometricweather.R$id: int notification_base_time +okhttp3.Request$Builder: okhttp3.Request$Builder post(okhttp3.RequestBody) +androidx.viewpager.R$id: int blocking +com.google.android.material.R$styleable: int Slider_trackColorActive +androidx.appcompat.R$id: int multiply +com.google.android.material.R$dimen: int mtrl_navigation_elevation +james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontWeight +cyanogenmod.hardware.CMHardwareManager: int[] getDisplayColorCalibration() +okio.RealBufferedSource: void readFully(okio.Buffer,long) +wangdaye.com.geometricweather.R$dimen: int item_touch_helper_swipe_escape_velocity +cyanogenmod.app.suggest.IAppSuggestManager$Stub: IAppSuggestManager$Stub() +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_vertical +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: long serialVersionUID +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.functions.Function itemTimeoutIndicator +androidx.fragment.R$dimen: int notification_media_narrow_margin +com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_layout +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_item_min_width +androidx.legacy.coreutils.R$drawable: R$drawable() +androidx.appcompat.R$layout: int abc_tooltip +androidx.constraintlayout.widget.R$attr: int buttonBarButtonStyle +androidx.appcompat.R$drawable: int abc_textfield_search_material +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_framePosition +com.google.android.material.R$styleable: int KeyTimeCycle_waveOffset +wangdaye.com.geometricweather.R$string: int key_precipitation_notification_switch +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric Metric +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayGammaCalibration +androidx.core.R$dimen: int notification_action_icon_size +androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy +androidx.lifecycle.DefaultLifecycleObserver: void onDestroy(androidx.lifecycle.LifecycleOwner) +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: void throwIfCaught() +androidx.preference.R$style: int PreferenceSummaryTextStyle +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorTextAppearance +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +androidx.viewpager2.R$attr: int fastScrollVerticalThumbDrawable +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +okhttp3.internal.http2.Http2Reader: okio.BufferedSource source +com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException +cyanogenmod.themes.ThemeManager$2$1: cyanogenmod.themes.ThemeManager$2 this$1 +com.google.android.material.R$dimen: int highlight_alpha_material_colored +cyanogenmod.externalviews.ExternalView$6: void run() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassLevel +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontStyle +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State[] values() +com.google.android.material.R$attr: int navigationViewStyle +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: boolean isValid() +com.turingtechnologies.materialscrollbar.R$attr: int buttonStyle +okhttp3.internal.http2.Http2Connection$Builder +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy LATEST +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.Callable other +com.turingtechnologies.materialscrollbar.R$attr: int arrowShaftLength +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX +okio.Okio$3: void flush() +wangdaye.com.geometricweather.R$attr: int actionButtonStyle +okhttp3.OkHttpClient: okhttp3.Authenticator authenticator() +retrofit2.http.Streaming +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +com.turingtechnologies.materialscrollbar.R$id: int masked +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +com.google.android.material.floatingactionbutton.FloatingActionButton +androidx.preference.R$string: R$string() +wangdaye.com.geometricweather.R$layout: int cpv_preference_square +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: java.util.List getSuggestions(android.content.Intent) +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: int size +wangdaye.com.geometricweather.R$attr: int iconPadding +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: boolean isDisposed() +cyanogenmod.app.IProfileManager$Stub$Proxy: void updateNotificationGroup(android.app.NotificationGroup) +wangdaye.com.geometricweather.R$array: int precipitation_unit_values +androidx.preference.R$styleable: int SwitchCompat_switchPadding +io.reactivex.internal.subscribers.StrictSubscriber: void cancel() +androidx.lifecycle.ViewModel: ViewModel() +com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text +com.jaredrummler.android.colorpicker.R$dimen: int abc_search_view_preferred_width +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ApparentTemperature +com.google.android.material.R$style: int TextAppearance_Design_Prefix +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_editor_absoluteX +okhttp3.internal.platform.Jdk9Platform: Jdk9Platform(java.lang.reflect.Method,java.lang.reflect.Method) +io.reactivex.Observable: io.reactivex.Single reduceWith(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) +androidx.appcompat.R$attr: int paddingBottomNoButtons +android.didikee.donate.R$styleable: int Toolbar_maxButtonHeight +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorBackgroundFloating +com.google.android.material.R$drawable: int abc_cab_background_top_mtrl_alpha +androidx.hilt.R$id: int actions +okio.Buffer: okio.BufferedSink emitCompleteSegments() +wangdaye.com.geometricweather.R$attr: int materialButtonStyle +okhttp3.CacheControl: boolean onlyIfCached() +com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReferenceArray values +wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_next_black_24dp +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator __MAGICAL_TEST_PASSING_ENABLER_VALIDATOR +com.bumptech.glide.R$id: int normal +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActivityChooserView +cyanogenmod.media.MediaRecorder: java.lang.String EXTRA_HOTWORD_INPUT_STATE +androidx.preference.ListPreferenceDialogFragmentCompat +wangdaye.com.geometricweather.R$attr: int cardViewStyle +androidx.constraintlayout.widget.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +androidx.appcompat.R$styleable: int AppCompatTheme_windowActionBar +com.google.android.material.timepicker.ClockHandView +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetRight +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabBar +androidx.appcompat.R$color: int notification_action_color_filter +com.xw.repo.bubbleseekbar.R$attr: int actionModePopupWindowStyle +com.github.rahatarmanahmed.cpv.CircularProgressView$8: CircularProgressView$8(com.github.rahatarmanahmed.cpv.CircularProgressView,float,float) +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingBottom +io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription INSTANCE +org.greenrobot.greendao.AbstractDao: void deleteByKeyInTx(java.lang.Iterable) +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Light +com.github.rahatarmanahmed.cpv.CircularProgressView: void startAnimation() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX() +wangdaye.com.geometricweather.R$string: int key_notification +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_searchIcon +androidx.recyclerview.R$styleable: int RecyclerView_android_orientation +androidx.customview.R$id: int action_container +wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_year_selection +androidx.constraintlayout.widget.R$id: int action_divider +androidx.constraintlayout.widget.R$attr: int actionProviderClass +com.google.android.material.R$dimen: int mtrl_calendar_action_height +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchRegionId +wangdaye.com.geometricweather.R$color: int abc_tint_edittext +wangdaye.com.geometricweather.R$styleable: int Insets_paddingBottomSystemWindowInsets +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String getTo() +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: okhttp3.internal.http2.Settings val$settings +com.google.android.material.R$style: int Widget_AppCompat_Button_Borderless_Colored +androidx.fragment.R$styleable: int FontFamily_fontProviderQuery +com.xw.repo.bubbleseekbar.R$attr: int bsb_max +androidx.appcompat.widget.AppCompatCheckBox: int getCompoundPaddingLeft() +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void dispose() +com.google.android.material.R$styleable: int Motion_drawPath +androidx.appcompat.R$color: int switch_thumb_normal_material_dark +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type TOP +androidx.preference.R$id: int end +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer RIGHT_VALUE +com.google.android.material.slider.Slider: android.content.res.ColorStateList getThumbStrokeColor() +androidx.viewpager2.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_bottom_margin +james.adaptiveicon.R$style: int Widget_AppCompat_ListView_Menu +androidx.dynamicanimation.R$id: int notification_background +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +androidx.appcompat.R$styleable: int ActionBar_background +com.jaredrummler.android.colorpicker.R$attr: int searchIcon +okhttp3.internal.http2.Http2Codec: java.lang.String CONNECTION +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: java.lang.Runnable actual +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight +android.didikee.donate.R$color: int highlighted_text_material_dark +com.turingtechnologies.materialscrollbar.R$color: int abc_secondary_text_material_light +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView +androidx.appcompat.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String zh_CN +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMarkTintMode +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderConfirmButton +androidx.preference.R$style: int Widget_AppCompat_Light_ActivityChooserView +com.turingtechnologies.materialscrollbar.R$interpolator: R$interpolator() +cyanogenmod.app.CMContextConstants: java.lang.String CM_APP_SUGGEST_SERVICE +wangdaye.com.geometricweather.R$attr: int cornerFamilyTopRight +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerSuccess(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver,java.lang.Object) +androidx.preference.R$style: int Theme_AppCompat_Dialog_MinWidth +okhttp3.EventListener: void callStart(okhttp3.Call) +com.google.android.material.R$attr: int popupWindowStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_69 +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_arrowHeadLength +android.didikee.donate.R$style: int Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_progress_in_float +wangdaye.com.geometricweather.R$string: int settings_notification_hide_icon_off +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionButtonStyle +okhttp3.internal.ws.WebSocketWriter: boolean writerClosed +androidx.preference.R$attr: int autoSizeTextType +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getTemperatureText(android.content.Context,int) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: long serialVersionUID +retrofit2.Utils$GenericArrayTypeImpl: java.lang.reflect.Type getGenericComponentType() +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +okhttp3.OkHttpClient$Builder: java.net.ProxySelector proxySelector +okio.Buffer: void readFully(byte[]) +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderFetchTimeout +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SeekBar +okio.BufferedSink: okio.BufferedSink emit() +androidx.preference.R$id: int list_item +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX) +androidx.constraintlayout.widget.R$id: int notification_main_column_container +androidx.coordinatorlayout.R$id: int accessibility_custom_action_0 +wangdaye.com.geometricweather.R$attr: int flow_padding +androidx.appcompat.resources.R$attr: int alpha +com.google.android.material.R$attr: int crossfade +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorAccent +james.adaptiveicon.AdaptiveIconView: void setIcon(james.adaptiveicon.AdaptiveIcon) +james.adaptiveicon.R$string: int abc_searchview_description_query +com.turingtechnologies.materialscrollbar.R$dimen +okhttp3.Dispatcher: java.util.concurrent.ExecutorService executorService() +com.google.android.material.appbar.AppBarLayout: void removeOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$BaseOnOffsetChangedListener) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription this$0 +androidx.appcompat.R$attr: int tickMarkTintMode +androidx.preference.R$attr: int windowFixedWidthMinor +android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar_Small +androidx.preference.R$style: int Widget_AppCompat_AutoCompleteTextView +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetEnd +wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_tintMode +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationTextWithoutUnit(float) +androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_height_major +com.google.android.material.R$string: int mtrl_picker_date_header_unselected +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode INTERNAL_ERROR +com.xw.repo.bubbleseekbar.R$attr: int maxButtonHeight +android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +androidx.constraintlayout.widget.R$attr: int wavePeriod +com.google.android.material.R$style: int TextAppearance_AppCompat +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_popupMenuStyle +com.google.gson.stream.JsonWriter: int peek() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterMaxLength +com.turingtechnologies.materialscrollbar.R$style: int Base_V23_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$attr: int wavePeriod +androidx.constraintlayout.widget.Barrier: void setType(int) +com.xw.repo.bubbleseekbar.R$drawable: int abc_item_background_holo_light +retrofit2.HttpServiceMethod: HttpServiceMethod(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter) +com.google.android.material.R$attr: int titleMarginStart +androidx.appcompat.resources.R$dimen: int notification_right_icon_size +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +retrofit2.Retrofit: java.lang.Object create(java.lang.Class) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: java.lang.String Unit +okhttp3.Cookie: java.lang.String name() +wangdaye.com.geometricweather.R$drawable: int notif_temp_78 +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object remove(int) +com.google.android.material.R$style: int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_lightContainer +androidx.preference.R$style: int Theme_AppCompat_DayNight +androidx.lifecycle.extensions.R$dimen: int notification_big_circle_margin +com.google.android.material.chip.Chip: void setCloseIconTintResource(int) +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +com.bumptech.glide.integration.okhttp.R$attr: int fontVariationSettings +okhttp3.Address: java.net.ProxySelector proxySelector +com.xw.repo.bubbleseekbar.R$attr: int singleChoiceItemLayout +androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean visibility +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +androidx.vectordrawable.R$id: int accessibility_custom_action_22 +com.jaredrummler.android.colorpicker.R$attr: int entryValues +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTodaysLow(double) +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroup +wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_default +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerX +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +org.greenrobot.greendao.AbstractDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItemSmall +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindSpinner +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_alphabeticModifiers +com.google.android.material.R$attr: int expandedTitleMarginTop +androidx.viewpager2.R$id: int notification_main_column_container +com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context) +com.google.android.material.chip.ChipGroup: int getChipSpacingHorizontal() +okio.RealBufferedSource: okio.Buffer buffer +android.support.v4.os.ResultReceiver$MyResultReceiver: android.support.v4.os.ResultReceiver this$0 +wangdaye.com.geometricweather.R$layout: int preference_widget_seekbar_material +androidx.constraintlayout.widget.R$attr: int layout_constraintCircleAngle +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginRight +androidx.fragment.R$anim: int fragment_fade_exit +wangdaye.com.geometricweather.R$drawable: int ic_building +com.bumptech.glide.R$styleable: int[] ColorStateListItem +cyanogenmod.profiles.RingModeSettings$1 +com.google.android.material.R$attr: int boxStrokeWidthFocused +androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache$CallbackInfo createInfo(java.lang.Class,java.lang.reflect.Method[]) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_109 +com.jaredrummler.android.colorpicker.R$layout: int abc_screen_simple +android.didikee.donate.R$styleable: int SwitchCompat_android_textOff +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) +androidx.appcompat.R$id: int accessibility_custom_action_25 +com.xw.repo.bubbleseekbar.R$id: int parentPanel +wangdaye.com.geometricweather.R$drawable: int ic_router +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.R$layout: int container_main_daily_trend_card +androidx.constraintlayout.widget.R$attr: int region_widthLessThan +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SeekBar_Discrete +androidx.hilt.work.R$styleable: int GradientColor_android_gradientRadius +com.google.android.material.R$attr: int fabSize +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getShortAbbreviation(android.content.Context) +com.xw.repo.bubbleseekbar.R$attr: int switchStyle +android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.recyclerview.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$attr: int summaryOn +okhttp3.internal.cache.DiskLruCache: boolean remove(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_alpha +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +androidx.transition.R$id: int normal +io.reactivex.Observable: io.reactivex.Observable concatArray(io.reactivex.ObservableSource[]) +androidx.appcompat.R$anim: int abc_tooltip_exit +com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_disabled_material_dark +com.jaredrummler.android.colorpicker.R$attr: int key +com.google.android.material.timepicker.ChipTextInputComboView: ChipTextInputComboView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemStrokeColor +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_image_size +okhttp3.internal.http.HttpCodec: void cancel() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator LOCKSCREEN_PIN_SCRAMBLE_LAYOUT_VALIDATOR +com.xw.repo.bubbleseekbar.R$attr: int imageButtonStyle +james.adaptiveicon.R$color: int abc_color_highlight_material +androidx.constraintlayout.widget.R$styleable: int Constraint_android_visibility +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_top +wangdaye.com.geometricweather.R$color: int material_blue_grey_900 +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_CompactMenu +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle +androidx.transition.R$styleable: int GradientColor_android_centerY +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.appcompat.R$id: int action_bar_title +wangdaye.com.geometricweather.R$color: int design_default_color_on_error +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$id: int view_offset_helper +com.google.android.material.textfield.TextInputLayout$SavedState +wangdaye.com.geometricweather.R$drawable: int notif_temp_69 +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask +androidx.core.R$styleable: int ColorStateListItem_android_alpha +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_width_material +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: java.lang.String Unit +james.adaptiveicon.R$attr: int checkboxStyle +wangdaye.com.geometricweather.common.basic.models.weather.Alert: android.os.Parcelable$Creator CREATOR +androidx.legacy.coreutils.R$id: int tag_transition_group +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableStartCompat +androidx.preference.internal.PreferenceImageView: int getMaxWidth() +android.didikee.donate.R$styleable: int AppCompatTheme_windowNoTitle +okhttp3.HttpUrl$Builder: java.util.List encodedQueryNamesAndValues +cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_GAMMA_CALIBRATION +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String LOCKSCREEN_URI +androidx.constraintlayout.widget.R$id: int textSpacerNoButtons +com.turingtechnologies.materialscrollbar.R$styleable: int View_paddingEnd +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_AES_128_CBC_SHA +wangdaye.com.geometricweather.main.fragments.MainFragment +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon +james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX +retrofit2.BuiltInConverters$ToStringConverter: BuiltInConverters$ToStringConverter() +okio.BufferedSource: int read(byte[]) +com.google.gson.stream.JsonReader: int lineNumber +com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_PrimarySurface +androidx.work.R$id: int accessibility_custom_action_24 +android.didikee.donate.R$drawable: int abc_text_cursor_material +com.google.android.material.appbar.CollapsingToolbarLayout: int getScrimVisibleHeightTrigger() +com.google.android.material.R$drawable: int abc_scrubber_track_mtrl_alpha +james.adaptiveicon.R$attr: int actionModePasteDrawable +androidx.preference.R$styleable: int AppCompatTheme_dividerHorizontal +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconDrawable +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: CNWeatherResult$Realtime$Weather() +androidx.drawerlayout.R$id: int right_icon +com.turingtechnologies.materialscrollbar.R$styleable: int[] ViewBackgroundHelper +androidx.core.R$id: int accessibility_custom_action_6 +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Connection$Listener listener +org.greenrobot.greendao.AbstractDao: boolean isEntityUpdateable() +com.google.android.material.R$layout: int mtrl_calendar_day_of_week +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getFontThemePackageName() +com.xw.repo.bubbleseekbar.R$color: int material_grey_600 +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: org.reactivestreams.Subscriber mSubscriber +androidx.lifecycle.FullLifecycleObserver: void onStop(androidx.lifecycle.LifecycleOwner) +androidx.lifecycle.extensions.R$anim: R$anim() +com.jaredrummler.android.colorpicker.R$drawable: int ic_arrow_down_24dp +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox +com.google.android.material.R$styleable: int Layout_android_orientation +androidx.lifecycle.AbstractSavedStateViewModelFactory +com.xw.repo.bubbleseekbar.R$attr: int contentInsetEnd +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial Imperial +androidx.lifecycle.SavedStateHandleController: SavedStateHandleController(java.lang.String,androidx.lifecycle.SavedStateHandle) +androidx.preference.R$styleable: int Preference_android_summary +com.turingtechnologies.materialscrollbar.R$attr: int chipIconEnabled +com.google.android.material.button.MaterialButton: void setBackground(android.graphics.drawable.Drawable) +androidx.constraintlayout.widget.R$drawable: int abc_cab_background_top_material +io.reactivex.internal.schedulers.ScheduledDirectTask: long serialVersionUID +androidx.appcompat.R$style: int Theme_AppCompat_Dialog_MinWidth +androidx.preference.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HourlyEntityDao hourlyEntityDao +cyanogenmod.profiles.StreamSettings: int mStreamId +com.google.android.material.R$styleable: int ConstraintSet_android_scaleX +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingEnd +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database wrap(android.database.sqlite.SQLiteDatabase) +wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveOffset +wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_maxHeight +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory[] values() +james.adaptiveicon.R$attr: int listPreferredItemHeightSmall +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_THEME_PACKAGE +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: org.reactivestreams.Subscription upstream +james.adaptiveicon.R$dimen: int abc_list_item_padding_horizontal_material +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: FitSystemBarViewPager(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListPopupWindow +retrofit2.DefaultCallAdapterFactory$1: java.lang.reflect.Type responseType() +retrofit2.DefaultCallAdapterFactory$1: java.util.concurrent.Executor val$executor +androidx.preference.R$attr: int height +com.google.android.material.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +okio.Pipe: okio.Sink sink +cyanogenmod.profiles.ConnectionSettings: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay_v14 +wangdaye.com.geometricweather.R$id: int customPanel +wangdaye.com.geometricweather.R$layout: int abc_search_view +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs indexs +okhttp3.internal.http2.Http2Codec: java.lang.String TE +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_SEED_CBC_SHA +androidx.preference.R$drawable: int abc_ic_star_black_16dp +com.google.android.material.R$animator: int mtrl_extended_fab_state_list_animator +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +androidx.preference.R$id: int spinner +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_default +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder asBinder() +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String DAYS_OF_WEEK +wangdaye.com.geometricweather.R$attr: int transitionDisable +com.google.android.material.R$attr: int showAsAction +wangdaye.com.geometricweather.db.entities.AlertEntity: void setWeatherSource(java.lang.String) +androidx.dynamicanimation.R$id: int normal +wangdaye.com.geometricweather.R$xml: int widget_clock_day_vertical +androidx.hilt.R$styleable: int[] ColorStateListItem +androidx.constraintlayout.widget.R$attr: int collapseContentDescription +androidx.preference.R$dimen: int highlight_alpha_material_light +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onPositiveCross +wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_iconResStart +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback(retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter,java.util.concurrent.CompletableFuture) +com.google.android.material.R$drawable +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstVerticalBias +androidx.transition.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.R$array: int distance_units +wangdaye.com.geometricweather.R$dimen: int mtrl_fab_elevation +androidx.constraintlayout.widget.R$attr: int fontProviderFetchStrategy +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void dispose() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText wangdaye.com.geometricweather.R$dimen: int material_clock_hand_stroke_width -androidx.appcompat.R$drawable: int abc_list_selector_background_transition_holo_dark -com.turingtechnologies.materialscrollbar.R$attr: int indeterminateProgressStyle -com.google.android.material.R$styleable: int MenuItem_contentDescription -androidx.preference.R$styleable: int SwitchCompat_switchMinWidth -cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(android.os.Parcel) -androidx.appcompat.R$styleable: int ActionBar_backgroundStacked -wangdaye.com.geometricweather.R$attr: int height -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: ResultObservable$ResultObserver(io.reactivex.Observer) -okhttp3.MultipartBody: okhttp3.MediaType type() -com.bumptech.glide.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_arrowShaftLength -android.didikee.donate.R$id: R$id() -cyanogenmod.platform.Manifest$permission: java.lang.String READ_MSIM_PHONE_STATE -androidx.hilt.work.R$styleable: int FontFamily_fontProviderQuery -android.didikee.donate.R$styleable: int SearchView_closeIcon -com.google.android.material.R$style: int Widget_Design_AppBarLayout -com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentListStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker -com.google.android.material.R$color: int material_timepicker_clockface -com.turingtechnologies.materialscrollbar.R$attr: int fabCradleVerticalOffset -com.bumptech.glide.integration.okhttp.R$dimen: int notification_small_icon_size_as_large -androidx.viewpager2.R$attr: int layoutManager -androidx.lifecycle.ProcessLifecycleOwner$2 -androidx.hilt.R$attr: int alpha -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: android.os.IBinder mRemote -cyanogenmod.weatherservice.ServiceRequestResult$1: cyanogenmod.weatherservice.ServiceRequestResult createFromParcel(android.os.Parcel) -com.google.android.material.appbar.AppBarLayout$Behavior -james.adaptiveicon.R$color: int foreground_material_light -com.google.android.material.R$styleable: int AppCompatTheme_alertDialogStyle -okhttp3.internal.http1.Http1Codec$ChunkedSink: okio.ForwardingTimeout timeout -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$string: int mtrl_picker_announce_current_selection -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -androidx.drawerlayout.R$styleable: int GradientColor_android_endColor -james.adaptiveicon.R$drawable: int abc_spinner_textfield_background_material -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setEncodedQueryParameter(java.lang.String,java.lang.String) -cyanogenmod.providers.DataUsageContract: java.lang.String _ID -android.didikee.donate.R$drawable: int abc_ratingbar_small_material -com.turingtechnologies.materialscrollbar.R$dimen: int disabled_alpha_material_light -androidx.lifecycle.LifecycleRegistry: void addObserver(androidx.lifecycle.LifecycleObserver) -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setRootColor(int) -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endColor -cyanogenmod.app.ProfileManager: java.lang.String INTENT_ACTION_PROFILE_UPDATED -androidx.lifecycle.extensions.R$drawable: int notification_bg -com.jaredrummler.android.colorpicker.R$id: int action_bar_container -androidx.constraintlayout.utils.widget.ImageFilterView: float getSaturation() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModePasteDrawable -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterOverflowTextAppearance -androidx.appcompat.R$styleable: int DrawerArrowToggle_color -okhttp3.CacheControl: boolean mustRevalidate -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean isDisposed() -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() -androidx.appcompat.R$dimen: int abc_dialog_min_width_minor -cyanogenmod.hardware.ICMHardwareService$Stub: cyanogenmod.hardware.ICMHardwareService asInterface(android.os.IBinder) -okhttp3.HttpUrl$Builder: int effectivePort() -androidx.viewpager.widget.ViewPager: void setPageMargin(int) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixTextAppearance -androidx.appcompat.R$attr: int fontVariationSettings -com.google.android.material.R$dimen: int material_cursor_inset_top -com.jaredrummler.android.colorpicker.R$styleable: int View_android_theme -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_CONDITION_CODE -androidx.preference.R$styleable: int[] RecycleListView -cyanogenmod.weather.RequestInfo: RequestInfo() -androidx.preference.R$styleable: int GradientColor_android_startY -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionMode -com.google.gson.internal.LazilyParsedNumber: long longValue() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -androidx.vectordrawable.R$styleable: int ColorStateListItem_android_color -okio.Timeout$1: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) -okhttp3.Request: okhttp3.CacheControl cacheControl() -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Time -com.google.android.material.bottomappbar.BottomAppBar -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder onlyIfCached() -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.R$id: int activity_widget_config_doneButton -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_49 -androidx.preference.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.preference.R$styleable: int Toolbar_contentInsetStart -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_widgetLayout -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Count -androidx.preference.R$id: int dialog_button -androidx.core.R$drawable: int notification_bg_low -james.adaptiveicon.R$styleable: int[] ActionMenuItemView -com.google.android.material.R$styleable: int SearchView_closeIcon -wangdaye.com.geometricweather.R$drawable: int notif_temp_87 -com.google.android.material.R$style: int Widget_MaterialComponents_Slider -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -okhttp3.internal.http2.Hpack$Reader: int nextHeaderIndex -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider[] values() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Menu -com.xw.repo.bubbleseekbar.R$color: int material_deep_teal_200 -com.jaredrummler.android.colorpicker.R$styleable: int Preference_selectable -androidx.appcompat.R$dimen: int abc_floating_window_z -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onError(java.lang.Throwable) -cyanogenmod.app.BaseLiveLockManagerService$1: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State valueOf(java.lang.String) -wangdaye.com.geometricweather.R$attr: int behavior_halfExpandedRatio -wangdaye.com.geometricweather.R$id: int widget_day_week_week_3 -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.ObservableSource second +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextTextColor +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +androidx.hilt.work.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$drawable: int clock_dial_light +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_container +com.google.gson.FieldNamingPolicy$4: java.lang.String translateName(java.lang.reflect.Field) +io.reactivex.internal.subscribers.DeferredScalarSubscriber: DeferredScalarSubscriber(org.reactivestreams.Subscriber) +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontVariationSettings +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber +cyanogenmod.providers.CMSettings$DelimitedListValidator: boolean mAllowEmptyList +io.reactivex.internal.util.VolatileSizeArrayList: boolean removeAll(java.util.Collection) +androidx.core.R$styleable: int GradientColorItem_android_color +io.reactivex.internal.util.VolatileSizeArrayList: boolean addAll(java.util.Collection) +androidx.appcompat.R$attr: int splitTrack +cyanogenmod.app.ProfileGroup: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_61 +androidx.preference.R$id: int accessibility_custom_action_22 +com.google.android.material.R$styleable: int Constraint_layout_constraintDimensionRatio +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getThunderstormPrecipitation() +androidx.customview.R$string +androidx.constraintlayout.widget.R$color: int androidx_core_secondary_text_default_material_light +com.google.android.material.R$color: int abc_primary_text_disable_only_material_dark +android.didikee.donate.R$attr: int paddingStart +com.turingtechnologies.materialscrollbar.R$attr: int cardUseCompatPadding +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +wangdaye.com.geometricweather.R$attr: int bsb_section_text_interval +cyanogenmod.hardware.DisplayMode +cyanogenmod.weather.WeatherInfo: double getTemperature() +com.google.android.material.textfield.TextInputLayout: void setStartIconOnLongClickListener(android.view.View$OnLongClickListener) +androidx.constraintlayout.helper.widget.Layer: void setTranslationY(float) +androidx.hilt.lifecycle.R$attr: int fontProviderCerts +android.didikee.donate.R$drawable: int abc_ic_menu_share_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int Slider_android_value +okio.SegmentedByteString: okio.ByteString sha256() +okhttp3.MultipartBody: void writeTo(okio.BufferedSink) +wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundODialog +okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeWithoutCheckedException(java.lang.Object,java.lang.Object[]) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.util.List getValue() +androidx.preference.R$attr: int dialogCornerRadius +okhttp3.FormBody: void writeTo(okio.BufferedSink) +androidx.constraintlayout.widget.R$attr: int altSrc +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitation +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: ObservableConcatMapMaybe$ConcatMapMaybeMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,io.reactivex.internal.util.ErrorMode) +wangdaye.com.geometricweather.R$attr: int itemShapeInsetTop +com.jaredrummler.android.colorpicker.R$anim: int abc_popup_exit +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_showDividers +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: AccuCurrentResult() +wangdaye.com.geometricweather.R$attr: int itemStrokeColor +james.adaptiveicon.R$style: int Widget_AppCompat_EditText +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: boolean isDisposed() +retrofit2.Utils +retrofit2.OptionalConverterFactory: retrofit2.Converter$Factory INSTANCE +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_Solid +com.google.android.material.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIFIAP +androidx.viewpager2.R$dimen: int fastscroll_minimum_range +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setSelectedPage(int) +wangdaye.com.geometricweather.R$color: int material_on_background_emphasis_high_type +androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_android_color +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonStyle +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_content_inset_material +wangdaye.com.geometricweather.R$id: int chain +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Badge +okhttp3.internal.cache.CacheStrategy: okhttp3.Request networkRequest +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder name(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_menuCategory +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setValue(java.util.List) +okhttp3.internal.cache.DiskLruCache$Entry: java.io.IOException invalidLengths(java.lang.String[]) +io.reactivex.exceptions.CompositeException: java.util.List getExceptions() +android.didikee.donate.R$styleable: int Toolbar_logoDescription +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isIce() +androidx.appcompat.R$styleable: int AppCompatTextView_textAllCaps +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_visibility +androidx.vectordrawable.animated.R$drawable: int notification_template_icon_bg +com.google.android.material.R$color: int tooltip_background_dark +com.google.android.material.R$styleable: int ConstraintSet_android_visibility +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_prompt +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void collect(java.util.Collection) +wangdaye.com.geometricweather.R$drawable: int notif_temp_118 +androidx.drawerlayout.R$dimen: int notification_small_icon_size_as_large +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: boolean setOther(io.reactivex.disposables.Disposable) +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +okio.ByteString: okio.ByteString toAsciiLowercase() +androidx.fragment.R$id: int dialog_button +com.google.android.material.R$dimen: int abc_select_dialog_padding_start_material +okhttp3.internal.http2.Http2Reader: int lengthWithoutPadding(int,byte,short) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ProgressBar +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void drain() +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer degreeDayTemperature +androidx.vectordrawable.animated.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.main.layouts.MainLayoutManager: MainLayoutManager() +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: void endOfInput(java.io.IOException) +wangdaye.com.geometricweather.R$styleable: int Preference_android_dependency +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_headerBackground +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver inner +okio.Okio$3 +wangdaye.com.geometricweather.R$id: int item_details +com.google.android.material.chip.Chip: Chip(android.content.Context) +com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle +wangdaye.com.geometricweather.R$layout: int abc_action_mode_close_item_material +com.bumptech.glide.R$attr: int fontWeight +androidx.lifecycle.ViewModelProvider$OnRequeryFactory: ViewModelProvider$OnRequeryFactory() +com.xw.repo.bubbleseekbar.R$id: int default_activity_button +androidx.appcompat.R$drawable: int notification_bg_normal +okhttp3.internal.http2.Http2Connection +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteInTxArray +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_trackTintMode +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItem +okhttp3.internal.http1.Http1Codec$FixedLengthSink: okhttp3.internal.http1.Http1Codec this$0 +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupMenu +james.adaptiveicon.R$attr: int tooltipForegroundColor +androidx.drawerlayout.R$id: int forever +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +androidx.appcompat.widget.AppCompatCheckBox: void setButtonDrawable(int) +com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableItem +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_creator +androidx.coordinatorlayout.R$id: int end +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Co +android.didikee.donate.R$drawable: int abc_scrubber_track_mtrl_alpha +com.google.android.material.R$styleable: int Snackbar_snackbarButtonStyle +okio.GzipSource +okhttp3.Response: java.lang.String header(java.lang.String) +wangdaye.com.geometricweather.R$id: int search_voice_btn +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_transformPivotX +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_buttonIconDimen +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_show_motion_spec +androidx.constraintlayout.utils.widget.ImageFilterView: void setBrightness(float) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.preference.R$id: int search_mag_icon +com.google.android.material.R$attr: int chipBackgroundColor +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Title +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_track_color +wangdaye.com.geometricweather.R$styleable: int[] CoordinatorLayout_Layout +android.didikee.donate.R$string: int abc_searchview_description_query +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layoutDescription +com.turingtechnologies.materialscrollbar.R$color: int primary_material_light +com.google.android.material.card.MaterialCardView +androidx.drawerlayout.R$styleable: int GradientColor_android_startY +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarStyle +androidx.lifecycle.Lifecycle: java.util.concurrent.atomic.AtomicReference mInternalScopeRef +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: long upDateTime +com.google.android.material.R$styleable: int Transition_pathMotionArc +wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity +com.google.android.material.navigation.NavigationView: void setNavigationItemSelectedListener(com.google.android.material.navigation.NavigationView$OnNavigationItemSelectedListener) +android.didikee.donate.R$layout: int notification_template_icon_group +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMark +wangdaye.com.geometricweather.R$string: int settings_notification_hide_in_lockScreen_off +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void drain() +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSearchResultSubtitle +okhttp3.MultipartBody: long contentLength +com.google.android.material.R$attr: int contentPaddingLeft +retrofit2.ParameterHandler$Body: ParameterHandler$Body(java.lang.reflect.Method,int,retrofit2.Converter) +cyanogenmod.profiles.ConnectionSettings: void readFromParcel(android.os.Parcel) +androidx.coordinatorlayout.R$styleable: int GradientColor_android_startY +okhttp3.Cache: java.lang.String key(okhttp3.HttpUrl) +wangdaye.com.geometricweather.R$drawable: int ic_pm +okhttp3.Response$Builder: okhttp3.Response networkResponse +androidx.constraintlayout.widget.R$attr: int actionBarTabTextStyle +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitleTextAppearance +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult +androidx.preference.R$id: int edit_query +androidx.preference.R$styleable: int Toolbar_subtitle +wangdaye.com.geometricweather.R$animator: int weather_fog_1 +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_chip_pressed_translation_z +androidx.recyclerview.R$id: int forever +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ListView_DropDown +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Settings okHttpSettings +cyanogenmod.weather.WeatherInfo$DayForecast: int hashCode() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: double Value +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_Tooltip +wangdaye.com.geometricweather.R$attr: int isMaterialTheme +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_android_windowFullscreen +wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_default_alpha +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_seekBarIncrement +james.adaptiveicon.R$string: R$string() +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeAppearanceOverlay +androidx.transition.R$attr: int fontVariationSettings +okio.Base64: byte[] URL_MAP +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabView +com.jaredrummler.android.colorpicker.R$bool: int abc_action_bar_embed_tabs +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_1 +retrofit2.KotlinExtensions$await$4$2: kotlinx.coroutines.CancellableContinuation $continuation +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.R$drawable: int mtrl_ic_arrow_drop_up +retrofit2.RequestFactory$Builder: void parseHttpMethodAndPath(java.lang.String,java.lang.String,boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.lang.String pubTime +androidx.appcompat.R$attr: int listChoiceIndicatorSingleAnimated +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +wangdaye.com.geometricweather.R$attr: int tabPadding +com.google.android.material.R$styleable: int[] SwitchCompat +wangdaye.com.geometricweather.R$styleable: int[] State +io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.SingleObserver) +okio.Okio: okio.AsyncTimeout timeout(java.net.Socket) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +androidx.vectordrawable.R$id: int action_container +com.google.android.material.R$styleable: int Slider_thumbElevation +com.google.android.material.R$attr: int thumbStrokeColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setLogo(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textColorSearchUrl +cyanogenmod.providers.CMSettings$2 +wangdaye.com.geometricweather.R$id: int widget_remote +wangdaye.com.geometricweather.R$styleable: int SwitchMaterial_useMaterialThemeColors +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean getAddress_detail() +james.adaptiveicon.R$styleable: int View_paddingEnd +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogTheme +androidx.preference.R$styleable: int LinearLayoutCompat_measureWithLargestChild +androidx.lifecycle.ViewModelProviders: ViewModelProviders() +com.google.android.material.R$id: int labelGroup +com.xw.repo.bubbleseekbar.R$string +com.turingtechnologies.materialscrollbar.R$dimen: int hint_alpha_material_light +wangdaye.com.geometricweather.R$styleable: int[] StateListDrawableItem +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.lang.String unit +cyanogenmod.hardware.CMHardwareManager: boolean setVibratorIntensity(int) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int CLOUDY +android.didikee.donate.R$id: int bottom +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: boolean isDisposed() +com.google.android.material.R$attr: int textAppearanceHeadline3 +wangdaye.com.geometricweather.R$attr: int alphabeticModifiers +com.google.android.material.R$styleable: int Toolbar_titleMarginTop +wangdaye.com.geometricweather.R$attr: int barLength +android.didikee.donate.R$styleable: int AppCompatTheme_windowActionBarOverlay +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: boolean requestDismissAndStartActivity(android.content.Intent) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getWeatherSource() +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_orientation +androidx.activity.R$styleable: int GradientColor_android_startY +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void dispose() +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_shrinkMotionSpec +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox +com.google.android.material.R$styleable: int AppCompatTheme_actionModeBackground +okhttp3.internal.tls.BasicCertificateChainCleaner: int MAX_SIGNERS +androidx.appcompat.widget.AppCompatEditText: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +androidx.preference.R$drawable: int abc_btn_radio_to_on_mtrl_015 +androidx.transition.R$style: int TextAppearance_Compat_Notification_Time +androidx.lifecycle.MediatorLiveData$Source: void onChanged(java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_29 +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconTint +wangdaye.com.geometricweather.R$id: int dialog_time_setter_done +cyanogenmod.app.ICMTelephonyManager: void setSubState(int,boolean) +okhttp3.internal.connection.RouteSelector: void resetNextProxy(okhttp3.HttpUrl,java.net.Proxy) +wangdaye.com.geometricweather.R$attr: int layout_constraintCircle +androidx.viewpager.R$styleable: int GradientColor_android_type +io.reactivex.Observable: io.reactivex.Observable retry(long) +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_BATTERY_STYLE +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: CustomTileListenerService$ICustomTileListenerWrapper(cyanogenmod.app.CustomTileListenerService) +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTodaysHigh(double) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: CaiYunMainlyResult$UrlBean() +io.reactivex.internal.util.ArrayListSupplier: io.reactivex.functions.Function asFunction() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableStart +io.reactivex.internal.disposables.EmptyDisposable: void dispose() +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +androidx.lifecycle.extensions.R$dimen +com.bumptech.glide.load.resource.gif.GifFrameLoader +androidx.preference.R$styleable: int[] PreferenceGroup +android.didikee.donate.R$style: int Animation_AppCompat_DropDownUp +com.google.android.material.R$styleable: int TextInputLayout_endIconTintMode +wangdaye.com.geometricweather.R$string: int feedback_request_location +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit getInstance(java.lang.String) +com.google.android.material.R$id: int linear +org.greenrobot.greendao.database.DatabaseOpenHelper: void onOpen(android.database.sqlite.SQLiteDatabase) +androidx.lifecycle.ClassesInfoCache$MethodReference: java.lang.reflect.Method mMethod +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayVerticalWidgetConfigActivity +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_thickness +androidx.constraintlayout.widget.R$id: int multiply +com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_creator +wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMarkTint +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: int unitArrayIndex +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String name +james.adaptiveicon.R$attr: int expandActivityOverflowButtonDrawable +com.google.android.material.R$styleable: int ActionBar_popupTheme +wangdaye.com.geometricweather.R$id: int widget_day_week_center +androidx.preference.R$styleable: int View_paddingStart +io.reactivex.observers.DisposableObserver: boolean isDisposed() +com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonTintMode +com.google.android.material.R$styleable: int TextInputLayout_placeholderTextColor +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +okhttp3.OkHttpClient: int callTimeout +android.didikee.donate.R$style: int Base_Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$string: int feedback_select_location_provider +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemPaddingRight +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleVerticalOffset +com.google.android.material.R$style: int Base_Animation_AppCompat_DropDownUp +androidx.customview.R$style: int TextAppearance_Compat_Notification_Line2 +com.google.android.material.appbar.AppBarLayout: int getDownNestedScrollRange() +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +androidx.preference.R$styleable: int[] LinearLayoutCompat_Layout +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: boolean isDisposed() +cyanogenmod.app.ThemeVersion$ComponentVersion: cyanogenmod.app.ThemeComponent component +cyanogenmod.weatherservice.ServiceRequest: ServiceRequest(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.IWeatherProviderServiceClient) +com.google.android.material.R$id: int dropdown_menu +androidx.preference.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.R$string: int feedback_click_again_to_exit +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnLongClickIntent(android.app.PendingIntent) +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.Query queryRawCreate(java.lang.String,java.lang.Object[]) +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetRight +androidx.viewpager.R$styleable: int FontFamilyFont_android_fontStyle +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_inverse_material_light +com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextAppearance +wangdaye.com.geometricweather.R$string: int feedback_show_widget_card +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_Solid +com.google.android.material.R$layout: int abc_screen_content_include +okhttp3.Response: java.util.List headers(java.lang.String) +io.reactivex.Observable: java.util.concurrent.Future toFuture() +com.google.android.material.R$attr: int selectableItemBackgroundBorderless +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_SearchView +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object set(int,java.lang.Object) +androidx.vectordrawable.animated.R$drawable: int notify_panel_notification_icon_bg +androidx.lifecycle.Transformations$2: androidx.arch.core.util.Function val$switchMapFunction +com.xw.repo.bubbleseekbar.R$bool +okhttp3.internal.cache.DiskLruCache$Entry +io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String) +com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.ValueAnimator progressAnimator +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_end +androidx.lifecycle.extensions.R$dimen: int compat_control_corner_material +com.google.android.material.R$styleable: int MaterialShape_shapeAppearanceOverlay +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 +androidx.hilt.lifecycle.R$id: int line3 +com.google.android.material.R$color: int mtrl_fab_ripple_color +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionMenuTextAppearance +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onNext(java.lang.Object) +androidx.preference.R$attr: int switchStyle +com.google.android.material.appbar.AppBarLayout +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Co +com.xw.repo.bubbleseekbar.R$attr: int measureWithLargestChild +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean setDisposable(io.reactivex.disposables.Disposable,int) +com.turingtechnologies.materialscrollbar.R$color: int design_default_color_primary_dark +androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMarkTint +wangdaye.com.geometricweather.R$drawable: int design_ic_visibility_off +okhttp3.internal.cache.DiskLruCache: java.lang.String MAGIC +okhttp3.Response$Builder: long receivedResponseAtMillis +cyanogenmod.profiles.BrightnessSettings: void setValue(int) +cyanogenmod.hardware.ICMHardwareService$Stub: android.os.IBinder asBinder() +com.google.android.material.R$color: int mtrl_btn_stroke_color_selector +wangdaye.com.geometricweather.R$xml: int widget_day +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton_Overflow +com.google.android.material.R$dimen: int abc_text_size_body_2_material +com.google.android.material.R$layout: int mtrl_calendar_month_navigation +wangdaye.com.geometricweather.db.entities.MinutelyEntity: boolean daylight +com.google.android.material.chip.Chip: void setMaxLines(int) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WEATHER_CODE_MIN +androidx.coordinatorlayout.R$id: int accessibility_custom_action_25 +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream newStream(java.util.List,boolean) +androidx.constraintlayout.widget.R$styleable: int[] SwitchCompat +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getTag() +androidx.appcompat.R$style: int Platform_V25_AppCompat +com.jaredrummler.android.colorpicker.R$string +okhttp3.HttpUrl: java.lang.String scheme() +com.turingtechnologies.materialscrollbar.R$layout: int notification_template_icon_group +com.xw.repo.bubbleseekbar.R$attr: int alertDialogCenterButtons +androidx.preference.R$styleable: int Toolbar_title +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +wangdaye.com.geometricweather.R$attr: int swipeRefreshLayoutProgressSpinnerBackgroundColor +james.adaptiveicon.R$integer: R$integer() +okhttp3.internal.connection.RealConnection: int MAX_TUNNEL_ATTEMPTS +wangdaye.com.geometricweather.R$drawable: int flag_hu +okhttp3.FormBody$Builder: java.nio.charset.Charset charset +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: ObservableSampleWithObservable$SampleMainEmitLast(io.reactivex.Observer,io.reactivex.ObservableSource) +com.google.android.material.button.MaterialButtonToggleGroup: void setSelectionRequired(boolean) +androidx.constraintlayout.widget.R$attr: int multiChoiceItemLayout +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_134 +com.google.android.material.R$styleable: int AppCompatTheme_actionBarWidgetTheme +wangdaye.com.geometricweather.R$string: int feedback_short_term_precipitation_alert +io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Action onComplete +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_size_mini +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property So2 +io.reactivex.internal.observers.InnerQueuedObserver: int fusionMode() +com.turingtechnologies.materialscrollbar.R$attr: int navigationIcon +retrofit2.BuiltInConverters: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +okio.Buffer: java.lang.String readUtf8LineStrict() +cyanogenmod.providers.CMSettings$Secure: boolean shouldInterceptSystemProvider(java.lang.String) +androidx.lifecycle.LifecycleRegistry: void sync() +com.google.android.material.textfield.TextInputLayout: void setErrorIconOnClickListener(android.view.View$OnClickListener) +androidx.appcompat.R$styleable: int ViewBackgroundHelper_android_background +okhttp3.internal.connection.RealConnection: boolean isEligible(okhttp3.Address,okhttp3.Route) +com.google.android.material.R$attr: int cardCornerRadius +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean getLiveLockScreenEnabled() +io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicBoolean once +com.google.android.material.R$animator: int linear_indeterminate_line1_tail_interpolator +androidx.preference.R$color: int primary_text_default_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_checkedTextViewStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItem +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: void setValue(java.lang.Object) +androidx.preference.R$attr: int windowFixedHeightMinor +com.google.android.material.R$attr: int textAppearanceButton +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_right_mtrl_light +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_menuCategory +okio.Buffer: void close() +okhttp3.internal.cache2.Relay$RelaySource: void close() +com.google.android.material.R$attr: int spinnerDropDownItemStyle +com.google.android.material.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton +androidx.work.impl.background.systemjob.SystemJobService +androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +wangdaye.com.geometricweather.R$drawable: int clock_hour_light +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf +okio.Buffer: okio.Segment head +cyanogenmod.hardware.CMHardwareManager: int getArrayValue(int[],int,int) +androidx.appcompat.R$id: int radio +androidx.constraintlayout.widget.R$attr: int applyMotionScene +androidx.preference.PreferenceFragmentCompat: PreferenceFragmentCompat() +com.google.android.material.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +com.google.android.material.internal.CheckableImageButton: void setCheckable(boolean) +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: int getStatus() +androidx.appcompat.resources.R$id: int accessibility_custom_action_12 +androidx.constraintlayout.helper.widget.Flow: void setHorizontalBias(float) +android.didikee.donate.R$styleable: int ViewStubCompat_android_id +androidx.appcompat.widget.AppCompatTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.google.gson.FieldNamingPolicy +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayColorCalibration +com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_swipe_escape_max_velocity +androidx.appcompat.R$style: int Widget_AppCompat_ListView_Menu +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_content_padding +com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_enforceTextAppearance +james.adaptiveicon.R$attr: int defaultQueryHint +androidx.activity.R$dimen: int notification_top_pad_large_text +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixTextAppearance +wangdaye.com.geometricweather.R$styleable: int Slider_android_stepSize +androidx.constraintlayout.widget.R$attr: int actionModeFindDrawable +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton +james.adaptiveicon.R$attr: int spinnerDropDownItemStyle +com.xw.repo.BubbleSeekBar: int getProgress() androidx.preference.R$layout: int preference_information_material -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActivityChooserView -androidx.customview.R$attr: int fontProviderAuthority -androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_arrowHeadLength -james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -okhttp3.internal.http2.Http2Connection$7: int val$streamId -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: java.lang.Long rise -okhttp3.internal.ws.WebSocketReader: boolean isControlFrame -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onScreenTurnedOn() -android.didikee.donate.R$style: int Widget_AppCompat_DrawerArrowToggle -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.subjects.UnicastSubject window -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ut -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_LAUNCH_VALIDATOR -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.google.android.material.R$color: int mtrl_tabs_ripple_color -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: java.lang.Object clone() -androidx.constraintlayout.widget.ConstraintLayout: void setConstraintSet(androidx.constraintlayout.widget.ConstraintSet) -androidx.preference.R$dimen: int abc_control_padding_material -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_ActionBar -android.didikee.donate.R$style: int Base_V22_Theme_AppCompat -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_to_on_mtrl_015 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getMoonSetDate() -com.google.android.material.bottomsheet.BottomSheetBehavior: BottomSheetBehavior(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_separator -wangdaye.com.geometricweather.R$id: int activity_weather_daily_title -okhttp3.internal.cache.DiskLruCache: void evictAll() -wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_LOW -wangdaye.com.geometricweather.R$attr: int text -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_44 -com.google.android.material.R$styleable: int Constraint_android_transformPivotY -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Indeterminate -okio.DeflaterSink: void write(okio.Buffer,long) -cyanogenmod.providers.CMSettings$System: java.lang.String DOUBLE_TAP_SLEEP_GESTURE -james.adaptiveicon.R$styleable: int AppCompatTheme_dividerHorizontal -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentListStyle -androidx.appcompat.R$id: int buttonPanel -com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_tick_mark_material -com.google.android.material.slider.Slider: int getTrackHeight() -com.github.rahatarmanahmed.cpv.CircularProgressView: int getColor() -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource) -cyanogenmod.weather.RequestInfo$1 -androidx.constraintlayout.widget.R$attr: int fontWeight -com.google.gson.stream.JsonWriter: java.io.Writer out -androidx.coordinatorlayout.R$id: R$id() -androidx.appcompat.resources.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getO3Desc() -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_text_size -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationX -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LOCK_WALLPAPER_PREVIEW -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getWindowAnimations() -androidx.constraintlayout.widget.R$layout: int select_dialog_singlechoice_material -android.didikee.donate.R$color: int dim_foreground_disabled_material_light -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarSplitStyle -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void request(long) -androidx.appcompat.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -com.xw.repo.bubbleseekbar.R$id: int async -com.jaredrummler.android.colorpicker.R$attr: int buttonBarButtonStyle -okhttp3.Cache$2 -com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_dark -com.google.android.material.R$styleable: int KeyTimeCycle_android_scaleX -androidx.appcompat.widget.ActionBarOverlayLayout: void setWindowCallback(android.view.Window$Callback) -androidx.recyclerview.widget.RecyclerView: void setAdapter(androidx.recyclerview.widget.RecyclerView$Adapter) -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset -androidx.constraintlayout.widget.R$styleable: int Layout_layout_editor_absoluteY -okio.Segment: okio.Segment unsharedCopy() -okio.Pipe$PipeSource -com.google.android.material.R$attr: int expanded -james.adaptiveicon.R$attr: int ratingBarStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -cyanogenmod.app.ICMTelephonyManager: boolean isDataConnectionSelectedOnSub(int) -com.xw.repo.bubbleseekbar.R$id: int alertTitle -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_title_text -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: int size -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_max -retrofit2.RequestBuilder: okhttp3.Headers$Builder headersBuilder -com.google.android.material.R$attr: int dialogCornerRadius -okhttp3.internal.http2.Settings: Settings() -wangdaye.com.geometricweather.common.basic.models.weather.Base -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_GCM_SHA256 -okio.RealBufferedSource: long indexOf(okio.ByteString) -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_RED_INDEX -wangdaye.com.geometricweather.R$color: int colorTextDark2nd -com.google.android.material.R$layout: int notification_template_part_time -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_tileMode -com.turingtechnologies.materialscrollbar.R$string: int abc_activitychooserview_choose_application -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache create(okhttp3.internal.io.FileSystem,java.io.File,int,int,long) -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature -androidx.constraintlayout.widget.R$id: int none -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_rippleColor -androidx.preference.R$styleable: int AppCompatTheme_colorButtonNormal -retrofit2.RequestBuilder: void addPathParam(java.lang.String,java.lang.String,boolean) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -com.google.android.material.R$animator: int mtrl_card_state_list_anim -com.bumptech.glide.integration.okhttp.R$style: int Widget_Compat_NotificationActionText -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_margin -androidx.constraintlayout.widget.R$styleable: int Constraint_chainUseRtl -okio.Timeout: Timeout() -okhttp3.ResponseBody$BomAwareReader: java.nio.charset.Charset charset -cyanogenmod.app.ILiveLockScreenManager: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_3 -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: java.lang.String unitAbbreviation -com.google.android.material.R$attr: int materialAlertDialogTheme -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle DAILY -io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onNext -androidx.vectordrawable.animated.R$color: int notification_icon_bg_color -androidx.preference.R$styleable: int Preference_isPreferenceVisible -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: java.lang.String Unit -okhttp3.WebSocket$Factory: okhttp3.WebSocket newWebSocket(okhttp3.Request,okhttp3.WebSocketListener) -james.adaptiveicon.R$dimen: int hint_alpha_material_light -okhttp3.CertificatePinner$Pin: java.lang.String toString() -cyanogenmod.providers.CMSettings$System: java.lang.String HOME_WAKE_SCREEN -androidx.appcompat.view.menu.ListMenuItemView: void setTitle(java.lang.CharSequence) -cyanogenmod.providers.CMSettings$System: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String logo -androidx.viewpager.R$styleable: int[] ColorStateListItem -com.google.android.material.R$style: int TestThemeWithLineHeightDisabled -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: int type -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog -okhttp3.Request: okhttp3.Headers headers -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter jsonValue(java.lang.String) -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sun_icon -com.google.android.material.R$dimen: int mtrl_calendar_title_baseline_to_top -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum Maximum -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyTopRight -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_backgroundSplit -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: ObservableConcatWithCompletable$ConcatWithObserver(io.reactivex.Observer,io.reactivex.CompletableSource) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleTextAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextColor -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState FAILED -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_percent -io.reactivex.exceptions.OnErrorNotImplementedException: OnErrorNotImplementedException(java.lang.String,java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_text_color -androidx.constraintlayout.widget.R$attr: int spinnerDropDownItemStyle -io.reactivex.internal.observers.InnerQueuedObserver: void dispose() -androidx.cardview.widget.CardView: void setMinimumHeight(int) -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.LocationEntity) -androidx.loader.R$dimen -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Category -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerColor -androidx.fragment.R$style: int Widget_Compat_NotificationActionText -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CALL_RECORDING_FORMAT_VALIDATOR -wangdaye.com.geometricweather.R$attr: int bottom_text_color -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_menu -james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -james.adaptiveicon.R$style: int Animation_AppCompat_Tooltip -com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_close_icon_tint -com.google.android.material.R$layout: int material_time_chip -com.google.android.material.button.MaterialButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean isDisposed() -androidx.vectordrawable.animated.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean hasKey(java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_AM_PM_VALIDATOR -com.google.gson.FieldNamingPolicy$3: java.lang.String translateName(java.lang.reflect.Field) -com.google.android.material.R$attr: int cornerFamily -com.bumptech.glide.R$string -io.reactivex.Observable: io.reactivex.Observable subscribeOn(io.reactivex.Scheduler) -com.google.android.material.chip.Chip: void setCloseIconEnabledResource(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay -com.jaredrummler.android.colorpicker.R$attr: int actionBarTabStyle -wangdaye.com.geometricweather.R$id: int scrollable -com.turingtechnologies.materialscrollbar.R$styleable: int[] ButtonBarLayout -james.adaptiveicon.R$styleable: int AppCompatTextView_android_textAppearance -androidx.preference.R$styleable: int Toolbar_titleMargins -androidx.viewpager2.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.R$string: int abc_action_bar_up_description -androidx.transition.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.db.entities.WeatherEntity: long getPublishTime() -androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.google.android.material.R$styleable: int MotionTelltales_telltales_velocityMode -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_default_mtrl_shape -com.google.android.material.R$attr: int fontVariationSettings -com.google.android.material.R$styleable: int AppCompatTheme_actionBarItemBackground -cyanogenmod.os.Concierge$ParcelInfo: Concierge$ParcelInfo(android.os.Parcel) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: int hasRain -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: int hasSeaBulletin -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: java.util.concurrent.atomic.AtomicLong requested -androidx.preference.R$attr: int initialExpandedChildrenCount -okhttp3.internal.http.RealInterceptorChain: java.util.List interceptors -okhttp3.Request -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight -com.google.android.material.R$style: int Base_Widget_MaterialComponents_Snackbar -com.google.android.material.R$drawable: int material_ic_clear_black_24dp -androidx.customview.R$id: int line1 -wangdaye.com.geometricweather.R$attr: int materialButtonToggleGroupStyle -androidx.lifecycle.ReflectiveGenericLifecycleObserver -james.adaptiveicon.R$id: int decor_content_parent -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.R$attr: int chipStartPadding -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener access$102(cyanogenmod.weather.RequestInfo,cyanogenmod.weather.IRequestInfoListener) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardUseCompatPadding -wangdaye.com.geometricweather.R$attr: int cpv_alphaChannelText -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getWritableDb() -androidx.appcompat.R$drawable: int notification_bg_low_normal -androidx.lifecycle.LiveData: boolean mDispatchingValue -com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getErrorIconDrawable() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: LocationEntityDao(org.greenrobot.greendao.internal.DaoConfig) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer relativeHumidity -androidx.hilt.R$id: int fragment_container_view_tag -wangdaye.com.geometricweather.R$array: int speed_unit_values -cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(android.os.Parcel,cyanogenmod.weather.WeatherInfo$1) -androidx.legacy.coreutils.R$style: int Widget_Compat_NotificationActionContainer -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_height -wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$styleable: int PreferenceFragmentCompat_android_dividerHeight -com.jaredrummler.android.colorpicker.R$attr: int autoSizePresetSizes -okio.Source: void close() -com.google.android.material.R$drawable: int material_ic_menu_arrow_up_black_24dp -androidx.preference.R$styleable: int ActionBar_background -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setValue(java.util.List) -com.google.android.material.R$style: int Base_V28_Theme_AppCompat -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPreStopped(android.app.Activity) -wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_style -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_SearchResult_Title -cyanogenmod.providers.ThemesContract: ThemesContract() -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation build() -android.didikee.donate.R$styleable: int AppCompatTextView_textAllCaps -wangdaye.com.geometricweather.R$attr: int borderWidth -androidx.viewpager.R$style: int Widget_Compat_NotificationActionContainer -com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index -james.adaptiveicon.R$color: int tooltip_background_dark -androidx.appcompat.R$styleable -cyanogenmod.providers.CMSettings$Global: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) -androidx.appcompat.view.menu.ActionMenuItemView: void setCheckable(boolean) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: ObservableConcatMap$SourceObserver(io.reactivex.Observer,io.reactivex.functions.Function,int) -com.xw.repo.bubbleseekbar.R$dimen: int notification_action_icon_size -androidx.constraintlayout.widget.R$styleable: int Layout_constraint_referenced_ids -androidx.preference.R$style: int Preference_DialogPreference_EditTextPreference_Material -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setScaleX(float) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.coordinatorlayout.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode getInstance(java.lang.String) -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_getLiveLockScreenEnabled -androidx.preference.R$attr: int background -androidx.appcompat.resources.R$drawable: int abc_vector_test -com.google.android.material.R$attr: int tabSelectedTextColor -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhaseText -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_US -wangdaye.com.geometricweather.R$attr: int tabPaddingBottom -wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassIndex(java.lang.Integer) -com.google.android.material.timepicker.ClockFaceView -wangdaye.com.geometricweather.R$color: int mtrl_btn_text_btn_bg_color_selector -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_track_mtrl_alpha -wangdaye.com.geometricweather.R$id: int src_over -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_queryBackground -android.didikee.donate.R$style: int Base_Animation_AppCompat_Dialog -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage FINISHED -com.bumptech.glide.integration.okhttp.R$attr: int statusBarBackground -cyanogenmod.weather.WeatherInfo: java.lang.String access$1402(cyanogenmod.weather.WeatherInfo,java.lang.String) -com.github.rahatarmanahmed.cpv.CircularProgressView$6: CircularProgressView$6(com.github.rahatarmanahmed.cpv.CircularProgressView) -androidx.viewpager2.R$id: int accessibility_custom_action_23 -com.turingtechnologies.materialscrollbar.R$style: int Base_AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.R$attr: int transitionEasing -com.google.android.material.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets -com.google.android.material.R$styleable: int Layout_layout_constraintBaseline_creator -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_appBar -com.jaredrummler.android.colorpicker.R$color: int primary_material_dark -wangdaye.com.geometricweather.settings.fragments.NotificationColorSettingsFragment -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollEnabled -org.greenrobot.greendao.AbstractDaoMaster: int schemaVersion -okio.ByteString: okio.ByteString of(java.nio.ByteBuffer) -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_dialogPreferenceStyle -cyanogenmod.app.Profile$ExpandedDesktopMode: int DEFAULT -com.xw.repo.bubbleseekbar.R$dimen: int notification_top_pad_large_text -androidx.appcompat.widget.SwitchCompat: boolean getTargetCheckedState() -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_NoActionBar -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_at -com.turingtechnologies.materialscrollbar.R$id: int action_bar_title -wangdaye.com.geometricweather.R$styleable: int Preference_icon -wangdaye.com.geometricweather.R$attr: int bsb_show_section_text -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardMaxElevation -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver -james.adaptiveicon.R$style: int Widget_Compat_NotificationActionContainer -android.support.v4.os.ResultReceiver: ResultReceiver(android.os.Handler) -com.google.android.material.R$drawable: int abc_text_select_handle_middle_mtrl_dark +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Colored +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_trendRecyclerView +james.adaptiveicon.R$id: int src_atop +androidx.appcompat.R$styleable: int SearchView_goIcon +com.google.android.material.R$layout: int custom_dialog +okhttp3.Cache$Entry: java.util.List readCertificateList(okio.BufferedSource) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetTop +com.google.android.material.R$styleable: int GradientColorItem_android_color +androidx.appcompat.R$color: int switch_thumb_normal_material_light +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_splitTrack +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constrainedWidth +androidx.hilt.work.R$styleable +wangdaye.com.geometricweather.R$attr: int singleLine +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean isEmpty() +retrofit2.adapter.rxjava2.Result: boolean isError() +com.google.android.material.R$id: int accessibility_custom_action_31 +com.google.android.material.circularreveal.CircularRevealFrameLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function7) +androidx.recyclerview.widget.RecyclerView: void setScrollingTouchSlop(int) +wangdaye.com.geometricweather.R$attr: int extendedFloatingActionButtonStyle +androidx.constraintlayout.widget.R$styleable: int Transform_android_translationX +com.xw.repo.bubbleseekbar.R$id: int search_edit_frame +com.google.android.material.R$dimen: int abc_dialog_corner_radius_material +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: int bufferSize +com.jaredrummler.android.colorpicker.R$dimen: int notification_top_pad +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +retrofit2.HttpServiceMethod$CallAdapted +cyanogenmod.weather.CMWeatherManager: java.util.Map mLookupNameRequestListeners +james.adaptiveicon.R$drawable: int abc_popup_background_mtrl_mult +androidx.appcompat.R$styleable: int AlertDialog_buttonPanelSideLayout +wangdaye.com.geometricweather.R$dimen: int preference_icon_minWidth +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerReceiver +androidx.hilt.lifecycle.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.R$layout: int widget_trend_daily +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.MediaType contentType() +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.internal.fuseable.QueueDisposable qd +wangdaye.com.geometricweather.R$styleable: int ActionBar_backgroundSplit +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabSelectedTextColor +cyanogenmod.providers.WeatherContract: java.lang.String AUTHORITY +androidx.preference.R$drawable: int abc_ratingbar_indicator_material +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getAqiIndex() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: AccuCurrentResult$Temperature() +android.support.v4.os.IResultReceiver +android.didikee.donate.R$attr: int subtitleTextColor +androidx.appcompat.view.menu.MenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +wangdaye.com.geometricweather.R$attr: int verticalOffset +wangdaye.com.geometricweather.R$style: int content_text +retrofit2.Utils$WildcardTypeImpl: Utils$WildcardTypeImpl(java.lang.reflect.Type[],java.lang.reflect.Type[]) +android.didikee.donate.R$string: int abc_searchview_description_submit +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight +com.google.android.material.R$id: int tag_unhandled_key_event_manager +androidx.appcompat.R$styleable: int AppCompatTheme_dropDownListViewStyle +com.google.android.material.R$attr: int materialCalendarYearNavigationButton +com.google.android.material.R$attr: int colorControlNormal +wangdaye.com.geometricweather.R$id: int widget_trend_daily +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dialog +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.Platform buildIfSupported() +io.reactivex.internal.util.AtomicThrowable +com.google.android.material.slider.Slider: int getTrackHeight() +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_horizontalDivider +androidx.preference.R$styleable: int AppCompatTheme_tooltipFrameBackground +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_height +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum Maximum +com.google.android.material.R$attr: int trackColorInactive +com.xw.repo.bubbleseekbar.R$attr: int bsb_progress +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_ttcIndex +androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableTransition +retrofit2.HttpServiceMethod$SuspendForBody: boolean isNullable +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low_pressed +android.didikee.donate.R$drawable: int abc_list_selector_holo_light +com.google.android.material.R$attr: int indicatorColor +androidx.coordinatorlayout.R$styleable: int GradientColor_android_startColor +james.adaptiveicon.R$styleable: int ColorStateListItem_android_alpha +com.google.android.material.R$drawable: int ic_mtrl_chip_checked_black +com.google.android.material.R$attr: int overlay +okio.DeflaterSink: java.util.zip.Deflater deflater +okio.Timeout: void throwIfReached() +okio.AsyncTimeout: void scheduleTimeout(okio.AsyncTimeout,long,boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: int IconCode +com.google.android.material.R$styleable: int Layout_layout_constraintWidth_max +com.google.android.material.R$drawable: int abc_ab_share_pack_mtrl_alpha +wangdaye.com.geometricweather.R$xml: int widget_week +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitationDuration +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_LOW +androidx.constraintlayout.widget.R$id: int search_src_text +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setRingtone(java.lang.String) +wangdaye.com.geometricweather.R$bool: int abc_config_actionMenuItemAllCaps +okhttp3.internal.http2.Http2: byte FLAG_NONE +android.didikee.donate.R$color: int abc_tint_btn_checkable +com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Dialog +cyanogenmod.providers.CMSettings$Secure: java.lang.String PROTECTED_COMPONENTS +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_corner_radius_material +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String getUpdateIntervalName(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: AccuMinuteResult() +com.google.android.material.R$styleable: int KeyPosition_sizePercent +android.didikee.donate.R$styleable: int AppCompatTheme_colorControlHighlight +org.greenrobot.greendao.AbstractDao: void saveInTx(java.lang.Iterable) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: AccuDailyResult$DailyForecasts$Night$WindGust$Speed() +wangdaye.com.geometricweather.R$id: int snapMargins +com.google.android.material.R$styleable: int MaterialButtonToggleGroup_singleSelection +com.xw.repo.bubbleseekbar.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton +cyanogenmod.externalviews.ExternalView$5: ExternalView$5(cyanogenmod.externalviews.ExternalView) +james.adaptiveicon.R$styleable: int AlertDialog_buttonIconDimen +androidx.recyclerview.R$attr: int spanCount +com.google.android.material.R$dimen: int mtrl_fab_translation_z_pressed +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerCloseError(java.lang.Throwable) +androidx.work.impl.utils.futures.AbstractFuture: androidx.work.impl.utils.futures.AbstractFuture$Listener listeners +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +com.turingtechnologies.materialscrollbar.R$attr: int snackbarStyle +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintTextAppearance +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable +okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.WebSocketWriter writer +com.turingtechnologies.materialscrollbar.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$attr: int textAppearancePopupMenuHeader +cyanogenmod.hardware.ICMHardwareService: java.lang.String getUniqueDeviceId() +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: void onThermalChanged(int) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String weatherSource +wangdaye.com.geometricweather.R$drawable: int live_wallpaper_thumbnail +com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd +okhttp3.internal.http2.Hpack: int PREFIX_4_BITS +com.bumptech.glide.R$attr: int layout_dodgeInsetEdges +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +androidx.constraintlayout.widget.R$color: int error_color_material_light +android.didikee.donate.R$id: int line3 +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_min +android.support.v4.os.IResultReceiver$Stub +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ImageButton +com.xw.repo.bubbleseekbar.R$styleable: int PopupWindowBackgroundState_state_above_anchor +com.jaredrummler.android.colorpicker.R$color: int highlighted_text_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.Date getPubTime() +wangdaye.com.geometricweather.R$color: int material_slider_active_track_color +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +cyanogenmod.app.ProfileGroup: void setRingerOverride(android.net.Uri) +okhttp3.internal.http.RealResponseBody: RealResponseBody(java.lang.String,long,okio.BufferedSource) +androidx.viewpager2.R$drawable: int notification_template_icon_bg +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void dispose() +androidx.fragment.app.FragmentManagerViewModel +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: double Value +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean getSpeed() +com.xw.repo.bubbleseekbar.R$attr: int autoSizePresetSizes +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableBottomCompat +androidx.preference.R$styleable: int AppCompatTheme_actionButtonStyle +wangdaye.com.geometricweather.R$id: int notification_multi_city_text_2 +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabBarStyle +android.didikee.donate.R$styleable: int MenuView_subMenuArrow +androidx.appcompat.widget.LinearLayoutCompat: void setVerticalGravity(int) +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig locationEntityDaoConfig +okhttp3.ConnectionSpec: ConnectionSpec(okhttp3.ConnectionSpec$Builder) +com.bumptech.glide.load.engine.GlideException: java.util.List causes +androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy REPLACE +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherSource(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconPadding +android.didikee.donate.R$style: int TextAppearance_AppCompat_Title +androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context) +androidx.constraintlayout.widget.R$attr: int fontStyle +wangdaye.com.geometricweather.R$attr: int actionTextColorAlpha +androidx.hilt.work.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$id: int text2 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: int UnitType +okhttp3.Route: int hashCode() +com.github.rahatarmanahmed.cpv.CircularProgressView: float getProgress() +com.google.android.material.R$styleable: int MaterialCardView_shapeAppearance +okhttp3.internal.cache.DiskLruCache: java.util.Iterator snapshots() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +okhttp3.internal.connection.RealConnection: boolean isHealthy(boolean) +androidx.lifecycle.Lifecycling: Lifecycling() +androidx.drawerlayout.R$integer +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_background +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +androidx.transition.R$color: int notification_icon_bg_color +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void cancelLiveLockScreen(java.lang.String,int,int) +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTextView +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitationDuration +wangdaye.com.geometricweather.R$attr: int maxLines +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: AccuDailyResult$DailyForecasts$Temperature() +wangdaye.com.geometricweather.R$layout: int item_icon_provider_get_more +com.turingtechnologies.materialscrollbar.R$dimen: int notification_content_margin_start +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +retrofit2.Retrofit: Retrofit(okhttp3.Call$Factory,okhttp3.HttpUrl,java.util.List,java.util.List,java.util.concurrent.Executor,boolean) +okhttp3.Request$Builder: okhttp3.Request$Builder delete(okhttp3.RequestBody) +cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener: void onDetachedFromWindow() +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: ObservableTakeUntil$TakeUntilMainObserver(io.reactivex.Observer) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_chainStyle +com.google.android.material.R$styleable: int CardView_cardElevation +okio.Buffer: java.lang.String readUtf8LineStrict(long) +retrofit2.ParameterHandler$QueryName: retrofit2.Converter nameConverter +com.google.android.material.R$integer: int mtrl_calendar_header_orientation +androidx.activity.R$attr: int ttcIndex +io.reactivex.Observable: io.reactivex.Observable filter(io.reactivex.functions.Predicate) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.lang.String getUnit() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void dispose() +androidx.legacy.coreutils.R$id: int icon_group +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Subhead +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_NoActionBar +retrofit2.BuiltInConverters: BuiltInConverters() +com.google.android.material.chip.Chip: void setChipEndPaddingResource(int) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Body2 +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: long count +com.jaredrummler.android.colorpicker.R$dimen: int abc_alert_dialog_button_bar_height +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver +wangdaye.com.geometricweather.background.polling.permanent.observer.TimeObserverService +cyanogenmod.os.Concierge$ParcelInfo: int mParcelableVersion +cyanogenmod.util.ColorUtils +com.google.android.material.chip.Chip: void setChipDrawable(com.google.android.material.chip.ChipDrawable) +androidx.viewpager2.R$id: int notification_background +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCopyDrawable +wangdaye.com.geometricweather.R$styleable: int Spinner_android_prompt +wangdaye.com.geometricweather.R$styleable: int Slider_labelStyle +wangdaye.com.geometricweather.R$color: int colorTextTitle +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorEnabled +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_spinBars +com.google.android.material.R$id: int tag_unhandled_key_listeners +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +com.google.android.material.R$drawable: int abc_dialog_material_background +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.coordinatorlayout.R$id: int blocking +androidx.dynamicanimation.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$string: int bottomsheet_action_expand_halfway +androidx.preference.R$styleable: int[] LinearLayoutCompat +androidx.constraintlayout.widget.R$styleable: int[] AppCompatImageView +io.reactivex.internal.util.NotificationLite: boolean acceptFull(java.lang.Object,org.reactivestreams.Subscriber) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removePathSegment(int) +androidx.appcompat.R$id: int search_edit_frame +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isSubActive(int) +com.google.android.material.R$styleable: int[] TextInputEditText +com.jaredrummler.android.colorpicker.R$attr: int dropdownListPreferredItemHeight +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderTitle +wangdaye.com.geometricweather.R$string: int settings_notification_hide_big_view_off +wangdaye.com.geometricweather.R$color: int abc_primary_text_material_dark +com.jaredrummler.android.colorpicker.R$styleable: int[] StateListDrawable +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setVibratorIntensity +wangdaye.com.geometricweather.R$styleable: int ActionBarLayout_android_layout_gravity +com.google.android.material.R$id: int mtrl_calendar_main_pane +com.turingtechnologies.materialscrollbar.R$styleable: int View_theme +retrofit2.Call: boolean isCanceled() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: java.util.Date updateTime +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) +io.reactivex.internal.subscriptions.BasicIntQueueSubscription +androidx.appcompat.R$drawable: int abc_btn_default_mtrl_shape +okhttp3.internal.http.RetryAndFollowUpInterceptor: void setCallStackTrace(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setStatus(int) +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String binarySearchBytes(byte[],byte[][],int) +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_android_maxWidth +androidx.work.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeApparentTemperature +androidx.constraintlayout.widget.R$attr: int motionDebug +com.jaredrummler.android.colorpicker.R$attr: int tickMarkTintMode +wangdaye.com.geometricweather.R$attr: int voiceIcon +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: int UnitType +androidx.appcompat.widget.Toolbar: int getContentInsetLeft() +androidx.appcompat.R$id: int italic +cyanogenmod.weather.RequestInfo: android.location.Location access$502(cyanogenmod.weather.RequestInfo,android.location.Location) +wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_colored_ripple_color +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleTextColor +okhttp3.CacheControl$Builder: boolean noStore +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.internal.util.AtomicThrowable errors +com.google.android.material.chip.ChipGroup: void setSingleSelection(int) +androidx.appcompat.R$style: int Widget_AppCompat_Button +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain Rain +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_subtitle +androidx.work.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$attr: int indicatorColors +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorColor +wangdaye.com.geometricweather.R$attr: int cpv_animSyncDuration +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean,int) +okhttp3.internal.connection.RealConnection: java.net.Socket socket() +com.turingtechnologies.materialscrollbar.R$id: int action_mode_bar_stub +cyanogenmod.externalviews.KeyguardExternalView: boolean onPreDraw() +androidx.dynamicanimation.R$drawable: int notification_template_icon_low_bg +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxPlain() +com.google.android.material.R$styleable: int[] PropertySet +okhttp3.Cookie: okhttp3.Cookie parse(long,okhttp3.HttpUrl,java.lang.String) +wangdaye.com.geometricweather.R$color: int cardview_dark_background +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display3 +androidx.constraintlayout.widget.R$attr: int showAsAction +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float snowPrecipitationProbability +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onSubscribe(org.reactivestreams.Subscription) +android.didikee.donate.R$style: int Widget_AppCompat_TextView_SpinnerItem +cyanogenmod.weather.WeatherInfo$DayForecast: double mHigh +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: void setStatus(int) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +com.google.android.material.R$id: int top +wangdaye.com.geometricweather.R$styleable: int RecyclerView_layoutManager +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getWallpaperThemePackageName() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.hilt.R$styleable: int GradientColor_android_tileMode +com.xw.repo.bubbleseekbar.R$styleable +androidx.preference.R$style: int TextAppearance_AppCompat_Headline +cyanogenmod.themes.IThemeService$Stub$Proxy: int getProgress() +io.reactivex.observers.DisposableObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.preference.R$drawable: int abc_list_longpressed_holo +androidx.appcompat.R$styleable: int MenuItem_contentDescription +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info info +com.google.android.material.R$attr: int counterMaxLength +retrofit2.ParameterHandler$Path: java.lang.String name +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language valueOf(java.lang.String) +com.xw.repo.bubbleseekbar.R$color: int primary_text_default_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_textStartPadding +cyanogenmod.themes.ThemeManager: void requestThemeChange(java.lang.String,java.util.List,boolean) +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type[] values() +okhttp3.internal.connection.StreamAllocation$StreamAllocationReference +retrofit2.Utils: Utils() +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.ObservableSource first +okhttp3.internal.http2.Http2Connection$6: okhttp3.internal.http2.Http2Connection this$0 +androidx.preference.R$styleable: int AppCompatTheme_windowFixedWidthMajor +com.jaredrummler.android.colorpicker.R$id: int action_divider +wangdaye.com.geometricweather.R$attr: int selectorSize +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_alpha +cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(android.os.Parcel,cyanogenmod.app.suggest.ApplicationSuggestion$1) +okio.GzipSource: void consumeHeader() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindDircEnd() +com.xw.repo.bubbleseekbar.R$id: int group_divider +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_position +com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_color +androidx.drawerlayout.R$id: int text +james.adaptiveicon.R$attr: int actionModeStyle +androidx.appcompat.R$attr: int ratingBarStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float tWindchill +androidx.work.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setStatus(int) +androidx.preference.R$id: int start +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +okhttp3.internal.ws.RealWebSocket: boolean awaitingPong +okhttp3.internal.io.FileSystem$1: void delete(java.io.File) +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motion_triggerOnCollision +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherSource(java.lang.String) +androidx.appcompat.widget.AppCompatImageButton: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) +okhttp3.internal.cache.DiskLruCache: boolean closed +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getPivotX() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton +wangdaye.com.geometricweather.R$attr: int textAppearanceButton +okio.RealBufferedSource$1: int read(byte[],int,int) +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit[] values() +androidx.constraintlayout.widget.R$attr: int percentY +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float totalPrecipitationProbability +com.xw.repo.bubbleseekbar.R$dimen: int disabled_alpha_material_light +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotationY +wangdaye.com.geometricweather.R$id: int chip +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SeekBar_Discrete +androidx.hilt.work.R$layout: R$layout() +androidx.recyclerview.R$id: int accessibility_custom_action_21 +wangdaye.com.geometricweather.R$id: int save_overlay_view +com.google.android.material.bottomappbar.BottomAppBar: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() +wangdaye.com.geometricweather.R$color: int mtrl_btn_bg_color_selector +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_BLUETOOTH +androidx.coordinatorlayout.R$attr +androidx.appcompat.widget.AlertDialogLayout: AlertDialogLayout(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$attr: int displayOptions +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: MoonPhase(java.lang.Integer,java.lang.String) +androidx.lifecycle.AbstractSavedStateViewModelFactory: java.lang.String TAG_SAVED_STATE_HANDLE_CONTROLLER +androidx.preference.R$anim: int fragment_fast_out_extra_slow_in +cyanogenmod.providers.CMSettings$CMSettingNotFoundException +com.google.android.material.R$styleable: int TextInputLayout_boxStrokeColor +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float t +okio.SegmentedByteString: SegmentedByteString(okio.Buffer,int) +com.google.android.material.R$id: int mtrl_child_content_container +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void setResource(io.reactivex.disposables.Disposable) +androidx.appcompat.widget.AppCompatTextView: android.content.res.ColorStateList getSupportBackgroundTintList() +androidx.lifecycle.SavedStateHandleController: boolean isAttached() +com.google.android.material.slider.BaseSlider: float getValueOfTouchPosition() +wangdaye.com.geometricweather.R$drawable: int shortcuts_fog +com.xw.repo.bubbleseekbar.R$dimen: int abc_search_view_preferred_height +android.didikee.donate.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: double speed +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec RESTRICTED_TLS +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf +androidx.appcompat.R$id: int shortcut +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.util.Date getDate() +com.bumptech.glide.integration.okhttp.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitationProbability(java.lang.Float) +okio.GzipSource: void checkEqual(java.lang.String,int,int) +okhttp3.Cookie: java.lang.String domain +com.xw.repo.bubbleseekbar.R$attr: int selectableItemBackgroundBorderless +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sNonNegativeIntegerValidator +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean isEmpty() +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.util.AtomicThrowable error +androidx.core.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree nighttimeWindDegree +io.reactivex.internal.subscriptions.SubscriptionArbiter: void produced(long) +wangdaye.com.geometricweather.common.basic.GeoViewModel +androidx.lifecycle.LiveData$LifecycleBoundObserver: LiveData$LifecycleBoundObserver(androidx.lifecycle.LiveData,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Observer) +io.reactivex.subjects.PublishSubject$PublishDisposable: void onNext(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void cancelAll() +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void replay(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) +com.google.android.material.slider.BaseSlider: float getValueFrom() +com.github.rahatarmanahmed.cpv.CircularProgressView$8 +james.adaptiveicon.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +androidx.constraintlayout.widget.R$styleable: int ActionMode_background +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorPrimary +com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_android_popupAnimationStyle +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance +com.google.android.material.R$string: int abc_searchview_description_voice +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onSearchRequested(android.view.SearchEvent) +com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_checkbox +okhttp3.Request: java.util.Map tags +androidx.preference.R$style: int Widget_AppCompat_Button_Borderless +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline3 +androidx.constraintlayout.widget.R$attr: int switchTextAppearance +androidx.preference.R$color: int primary_material_dark +androidx.legacy.coreutils.R$dimen: int notification_right_side_padding_top +james.adaptiveicon.R$styleable: int PopupWindow_android_popupBackground +androidx.preference.R$layout: int abc_screen_toolbar +androidx.constraintlayout.widget.R$interpolator: R$interpolator() +com.google.android.material.R$attr: int layout_constraintGuide_percent +wangdaye.com.geometricweather.common.ui.activities.AwakeUpdateActivity: AwakeUpdateActivity() +androidx.core.R$string +androidx.constraintlayout.widget.R$styleable: int[] Transition +android.didikee.donate.R$id: int scrollIndicatorDown +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getUvDescription() +androidx.appcompat.R$dimen: R$dimen() +com.github.rahatarmanahmed.cpv.R$styleable +okhttp3.internal.http.HttpHeaders: okhttp3.Headers varyHeaders(okhttp3.Response) +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void startTimeout(long) +androidx.viewpager.R$styleable: int GradientColor_android_endX +com.turingtechnologies.materialscrollbar.R$attr: int msb_autoHide +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean done +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginStart +androidx.appcompat.R$drawable: int abc_action_bar_item_background_material +com.google.android.material.R$dimen: int mtrl_tooltip_minHeight +androidx.recyclerview.R$id: int accessibility_custom_action_16 +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_placeholder_content +james.adaptiveicon.R$styleable: int TextAppearance_android_shadowRadius +okhttp3.internal.Util: java.util.Map immutableMap(java.util.Map) +com.google.android.material.R$styleable: int Constraint_layout_editor_absoluteX +com.google.android.material.R$dimen: int notification_small_icon_background_padding +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetEndWithActions +com.google.android.material.R$styleable: int Slider_android_value +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_lineHeight +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.background.receiver.widget.WidgetWeekProvider +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date moonsetTime +com.turingtechnologies.materialscrollbar.R$attr: int dividerPadding +androidx.appcompat.view.menu.ExpandedMenuView: ExpandedMenuView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitlePanelStyle +com.google.android.material.R$anim: int mtrl_bottom_sheet_slide_out +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low_pressed +retrofit2.converter.gson.GsonResponseBodyConverter: com.google.gson.Gson gson +retrofit2.http.PUT +com.xw.repo.bubbleseekbar.R$dimen: int abc_button_inset_horizontal_material +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_119 +cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_MODES +cyanogenmod.profiles.BrightnessSettings: android.os.Parcelable$Creator CREATOR +androidx.preference.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +com.google.android.material.R$styleable: int OnSwipe_nestedScrollFlags +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_cursor_material +okhttp3.HttpUrl: java.lang.String percentDecode(java.lang.String,boolean) +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: java.lang.String toString() +retrofit2.http.Header: java.lang.String value() +androidx.constraintlayout.motion.widget.MotionLayout: void setOnHide(float) +com.xw.repo.bubbleseekbar.R$attr: int queryHint +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial +com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacingVertical +androidx.hilt.work.R$dimen: int notification_large_icon_width +com.jaredrummler.android.colorpicker.R$color: int material_grey_300 +io.reactivex.internal.schedulers.AbstractDirectTask: java.util.concurrent.FutureTask DISPOSED +wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_strokeColor +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_DASHES +androidx.constraintlayout.widget.R$id: int dragStart +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_keyline +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed +androidx.preference.R$attr: int contentInsetLeft +wangdaye.com.geometricweather.R$id: int withText +com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_text_color +androidx.legacy.coreutils.R$attr: int fontVariationSettings +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Small_Inverse +com.turingtechnologies.materialscrollbar.R$attr: int switchStyle +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getMilliMetersTextWithoutUnit(float) +wangdaye.com.geometricweather.R$color: int darkPrimary_1 +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onScreenTurnedOn +com.google.android.material.R$styleable: int Toolbar_logoDescription +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_SHOW_WEATHER +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_clipToPadding +androidx.appcompat.R$attr: int voiceIcon +androidx.preference.R$styleable: int CoordinatorLayout_statusBarBackground +androidx.recyclerview.R$id: int accessibility_custom_action_0 +io.reactivex.internal.util.NotificationLite$SubscriptionNotification: NotificationLite$SubscriptionNotification(org.reactivestreams.Subscription) +wangdaye.com.geometricweather.R$drawable: int weather_snow_3 +wangdaye.com.geometricweather.R$styleable: int[] ColorPickerView +androidx.preference.R$attr: int actionOverflowMenuStyle +io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite[] values() +androidx.viewpager2.R$styleable: int[] FontFamily +androidx.constraintlayout.widget.R$styleable: int PropertySet_layout_constraintTag +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Time +androidx.constraintlayout.widget.R$attr: int tint +androidx.preference.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.google.android.material.R$drawable: int btn_radio_off_mtrl +james.adaptiveicon.R$styleable: int SearchView_goIcon +okio.ForwardingSink: okio.Sink delegate +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setAdaptiveWidthEnabled(boolean) +androidx.vectordrawable.animated.R$id: int line1 +android.didikee.donate.R$attr: int listMenuViewStyle +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase getMoonPhase() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_1_material +com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_pressed +cyanogenmod.app.Profile: int getNotificationLightMode() +androidx.preference.R$layout: int select_dialog_item_material +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +com.google.android.material.R$styleable: int[] KeyCycle +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_toBottomOf +androidx.activity.R$style: int Widget_Compat_NotificationActionContainer +androidx.hilt.work.R$bool +androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontStyle +okhttp3.internal.http2.Http2Reader$Handler: void ackSettings() +okio.Segment +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startX +com.google.gson.stream.JsonScope: int NONEMPTY_OBJECT +wangdaye.com.geometricweather.R$string: int key_hide_subtitle +com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_android_foreground +com.google.android.material.R$style: int TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_seekBarIncrement +androidx.appcompat.R$dimen: int abc_control_padding_material +com.jaredrummler.android.colorpicker.R$attr: int color +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatPressedTranslationZResource(int) +androidx.customview.R$id +okhttp3.internal.cache.DiskLruCache$Snapshot: DiskLruCache$Snapshot(okhttp3.internal.cache.DiskLruCache,java.lang.String,long,okio.Source[],long[]) +com.google.android.material.R$dimen: int material_clock_period_toggle_width +androidx.lifecycle.extensions.R$style: int Widget_Compat_NotificationActionContainer +androidx.appcompat.R$attr: int alertDialogButtonGroupStyle +wangdaye.com.geometricweather.R$styleable: int ActionMode_titleTextStyle +okhttp3.OkHttpClient$1: void addLenient(okhttp3.Headers$Builder,java.lang.String,java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_NoActionBar +okio.ByteString: okio.ByteString substring(int,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric Metric +androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_large_material +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_orientation +okhttp3.internal.tls.OkHostnameVerifier: int ALT_IPA_NAME +com.google.android.material.R$attr: int toolbarId +james.adaptiveicon.R$attr: int contentInsetStartWithNavigation +retrofit2.ServiceMethod +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: java.util.List getDeviceComponentVersions() +androidx.recyclerview.widget.RecyclerView: void removeOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstHorizontalBias +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onError(java.lang.Throwable) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean access$502(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,boolean) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit KPA +wangdaye.com.geometricweather.R$id: int container_main_header_aqiOrWindTxt +com.google.android.material.R$styleable: int TabLayout_tabIndicatorFullWidth +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onDetach() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_wrapMode +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +androidx.recyclerview.widget.RecyclerView: void setLayoutManager(androidx.recyclerview.widget.RecyclerView$LayoutManager) +james.adaptiveicon.R$style: int Theme_AppCompat_CompactMenu +com.jaredrummler.android.colorpicker.R$color: int background_floating_material_dark +androidx.loader.R$style: R$style() +okio.Util: Util() +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getLightsMode() +cyanogenmod.providers.CMSettings$Secure: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) +okio.RealBufferedSink: okio.Buffer buffer +androidx.activity.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cuv +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: java.lang.Object singleItem +com.google.android.material.R$attr: int transitionDisable +androidx.preference.EditTextPreference +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: float degree +com.google.android.material.R$styleable: int DrawerArrowToggle_drawableSize +wangdaye.com.geometricweather.R$attr: int fontProviderCerts +com.google.android.material.R$id: int blocking +wangdaye.com.geometricweather.R$id: int cpv_color_panel_old +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: boolean cancelled +cyanogenmod.externalviews.KeyguardExternalView$9: KeyguardExternalView$9(cyanogenmod.externalviews.KeyguardExternalView) +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean isUnbounded() +android.didikee.donate.R$id: int search_edit_frame +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.functions.Function mapper +wangdaye.com.geometricweather.R$string: int action_about +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Chip +androidx.preference.R$attr: int colorError +wangdaye.com.geometricweather.R$id: int widget_clock_day_todayTemp +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableEnd +wangdaye.com.geometricweather.R$id: int parallax +com.google.android.material.floatingactionbutton.FloatingActionButton: int getExpandedComponentIdHint() +james.adaptiveicon.R$attr: int height +okio.Buffer$UnsafeCursor: void close() +com.google.android.material.R$attr: int windowFixedWidthMajor +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.StreamAllocation streamAllocation() +org.greenrobot.greendao.AbstractDao: void updateKeyAfterInsertAndAttach(java.lang.Object,long,boolean) +androidx.preference.R$attr: int summaryOn +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_summaryOn +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit KM +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +wangdaye.com.geometricweather.R$interpolator: int mtrl_linear +androidx.activity.R$dimen: int notification_right_side_padding_top +okio.Buffer: long size +cyanogenmod.providers.CMSettings$Global: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) +androidx.hilt.lifecycle.R$styleable: R$styleable() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_creator +wangdaye.com.geometricweather.R$attr: int titleMarginStart +wangdaye.com.geometricweather.R$string: int feedback_location_permissions_statement +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode REFUSED_STREAM +wangdaye.com.geometricweather.R$styleable: int Preference_android_summary +cyanogenmod.providers.CMSettings$Global +wangdaye.com.geometricweather.R$id: int fragment_main +android.didikee.donate.R$style: int Theme_AppCompat_Dialog_Alert +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener access$102(cyanogenmod.weather.RequestInfo,cyanogenmod.weather.IRequestInfoListener) +android.didikee.donate.R$styleable: int ActionBar_progressBarPadding +com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy valueOf(java.lang.String) +wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_icon +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: java.lang.String getNewX() +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderFetchStrategy +cyanogenmod.app.Profile$1: cyanogenmod.app.Profile[] newArray(int) +androidx.preference.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_subtitle_material_toolbar +com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_margin +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassIndex +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken[] $VALUES +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: void setDefenseText(java.lang.String) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_atd +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getCeiling() +cyanogenmod.providers.CMSettings$Secure$1: boolean validate(java.lang.String) +android.didikee.donate.R$bool: int abc_allow_stacked_button_bar +com.google.android.material.transformation.FabTransformationBehavior +james.adaptiveicon.R$styleable: int AlertDialog_showTitle +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startX +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceLargePopupMenu +james.adaptiveicon.R$styleable: int Toolbar_titleMarginBottom +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CONDITION_CODE +androidx.appcompat.widget.AppCompatSpinner: void setSupportBackgroundTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDaylight(boolean) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton_CloseMode +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: AccuDailyResult$DailyForecasts$Day$Ice() +androidx.preference.R$attr: int queryHint +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dark +androidx.dynamicanimation.R$dimen: int compat_control_corner_material +android.didikee.donate.R$styleable: int[] DrawerArrowToggle +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSwoopDuration +com.google.android.material.R$color: int error_color_material_dark +androidx.appcompat.R$styleable: int FontFamily_fontProviderAuthority +androidx.customview.R$attr: int fontWeight +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startY +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: android.os.IBinder mRemote +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +wangdaye.com.geometricweather.R$attr: int layout_constraintRight_toLeftOf +androidx.appcompat.R$attr: int showAsAction +androidx.activity.R$drawable: int notification_action_background +androidx.hilt.work.R$color: int secondary_text_default_material_light +com.google.android.material.card.MaterialCardView: void setCheckedIconMargin(int) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Toolbar_Button_Navigation cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent OVERLAY -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: MfWarningsResult$WarningMaxCountItems() -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_1 -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: java.lang.String DESCRIPTOR -androidx.preference.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -okhttp3.internal.cache.DiskLruCache$Snapshot: long getLength(int) -androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveDataInternal(java.lang.String,boolean,java.lang.Object) -okio.BufferedSource: int readIntLe() -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: ObservableTimer$TimerObserver(io.reactivex.Observer) -com.jaredrummler.android.colorpicker.R$style: int Preference_Category_Material -wangdaye.com.geometricweather.R$styleable: int ArcProgress_text -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextAppearanceInactive(int) -retrofit2.http.PUT: java.lang.String value() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_BATTERY_STYLE_VALIDATOR -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String moonPhaseDescription -androidx.appcompat.R$attr: int iconTint -android.didikee.donate.R$styleable: int AppCompatTheme_activityChooserViewStyle -android.didikee.donate.R$attr: int title -wangdaye.com.geometricweather.R$attr: int flow_lastHorizontalStyle -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onError(java.lang.Throwable) -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean profileExists(android.os.ParcelUuid) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean getPrecipitationProbability() -androidx.preference.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.R$array: int duration_units -androidx.hilt.work.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemBackground -cyanogenmod.profiles.RingModeSettings: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.R$attr: int arrowShaftLength -com.google.android.material.R$attr: int layout_constraintGuide_begin -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRealFeelTemperature -androidx.constraintlayout.widget.R$id: int search_go_btn -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicInteger wip -androidx.constraintlayout.widget.R$attr: int onTouchUp -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getZh_TW() -okhttp3.internal.connection.RouteSelector: java.util.List proxies -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_activityChooserViewStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ProgressBar -androidx.hilt.R$color: int secondary_text_default_material_light -com.google.android.material.R$layout: int design_text_input_start_icon -cyanogenmod.app.CustomTile: java.lang.String contentDescription -com.google.android.material.R$id: int slide -wangdaye.com.geometricweather.R$layout: int activity_allergen -androidx.constraintlayout.widget.R$id: int search_button -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void cancelAll() -androidx.constraintlayout.widget.R$styleable: int PopupWindow_overlapAnchor -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onError(java.lang.Throwable) -cyanogenmod.externalviews.KeyguardExternalView: void onLockscreenSlideOffsetChanged(float) -james.adaptiveicon.R$styleable: int Toolbar_android_minHeight -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_maxWidth -james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog_Alert -james.adaptiveicon.R$attr: int backgroundTint -com.google.android.material.R$styleable: int MaterialTextView_android_lineHeight -com.bumptech.glide.R$styleable: int GradientColor_android_centerX -android.didikee.donate.R$styleable: int LinearLayoutCompat_dividerPadding -james.adaptiveicon.R$attr: int dropdownListPreferredItemHeight -androidx.swiperefreshlayout.R$styleable: int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor -com.google.android.material.R$dimen: int abc_action_bar_content_inset_material -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginRight -io.reactivex.internal.queue.SpscArrayQueue: java.util.concurrent.atomic.AtomicLong consumerIndex -androidx.preference.R$attr: int colorPrimaryDark -com.google.android.material.card.MaterialCardView: int getContentPaddingBottom() -com.google.android.material.R$styleable: int AppCompatTheme_windowFixedHeightMinor -com.google.android.material.R$dimen: int cardview_default_elevation -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -james.adaptiveicon.R$attr: int colorError -androidx.constraintlayout.widget.R$id: int content -androidx.appcompat.R$id: int accessibility_custom_action_3 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_98 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItem -com.google.android.material.R$styleable: int AppCompatTheme_textColorSearchUrl -com.google.android.material.R$styleable: int StateListDrawableItem_android_drawable -james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -okhttp3.logging.HttpLoggingInterceptor: boolean isPlaintext(okio.Buffer) -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$style: int AlertDialog_AppCompat -com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_CheckBox -wangdaye.com.geometricweather.R$string: int phase_waxing_gibbous -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -com.google.android.material.R$styleable: int PropertySet_motionProgress -james.adaptiveicon.R$styleable: int ViewStubCompat_android_inflatedId -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult -com.xw.repo.bubbleseekbar.R$id: int search_src_text -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int pm10 -com.google.android.material.R$attr: int materialCalendarHeaderDivider -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getPressure() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_radioButtonStyle -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter endObject() -com.jaredrummler.android.colorpicker.R$attr: int actionBarWidgetTheme -androidx.appcompat.resources.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.R$string: int settings_notification_can_be_cleared_off -okhttp3.internal.cache.InternalCache -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain -com.turingtechnologies.materialscrollbar.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -cyanogenmod.weather.CMWeatherManager$1$1: java.lang.String val$providerName -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_addNotificationGroup -io.reactivex.Observable: io.reactivex.Observable window(long,long,int) -retrofit2.ParameterHandler$1: ParameterHandler$1(retrofit2.ParameterHandler) -androidx.appcompat.resources.R$id: int accessibility_custom_action_26 -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.R$dimen: int little_weather_icon_container_size -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_81 -okhttp3.internal.http1.Http1Codec: Http1Codec(okhttp3.OkHttpClient,okhttp3.internal.connection.StreamAllocation,okio.BufferedSource,okio.BufferedSink) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer relativeHumidityMax -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: java.lang.Throwable error -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_padding -okhttp3.internal.http2.Settings: boolean isSet(int) -com.google.android.material.R$string: int mtrl_picker_date_header_unselected -retrofit2.RequestBuilder: void setRelativeUrl(java.lang.Object) -androidx.appcompat.R$attr: int editTextColor -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display2 -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: void run() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar -james.adaptiveicon.R$drawable: int abc_tab_indicator_material -cyanogenmod.app.Profile$TriggerState: int ON_CONNECT -com.google.android.material.R$styleable: int View_paddingStart -com.xw.repo.bubbleseekbar.R$attr: int bsb_track_color -wangdaye.com.geometricweather.R$layout: int widget_clock_day_symmetry -wangdaye.com.geometricweather.R$attr: int progressBarStyle -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_android_maxHeight -com.google.android.material.R$attr: int counterEnabled -okhttp3.Authenticator$1 -com.google.android.material.R$attr: int percentY -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$string: int bottom_sheet_behavior -android.didikee.donate.R$attr: int splitTrack -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_48dp -androidx.appcompat.R$id: int expand_activities_button -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_selection_text -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.String Code -android.didikee.donate.R$style: int Widget_AppCompat_Button_Borderless_Colored -com.google.android.material.button.MaterialButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -androidx.lifecycle.SavedStateHandleController: SavedStateHandleController(java.lang.String,androidx.lifecycle.SavedStateHandle) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionMenuTextAppearance -androidx.core.R$style -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Alert_Bridge -com.google.android.material.R$styleable: int MaterialTextAppearance_android_lineHeight -androidx.hilt.R$drawable: int notification_bg_low_normal -okhttp3.internal.cache.CacheStrategy$Factory: long receivedResponseMillis -androidx.appcompat.R$attr: int fontStyle -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onComplete() -androidx.lifecycle.extensions.R$dimen: int compat_button_padding_vertical_material -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Menu -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_fontFamily -wangdaye.com.geometricweather.R$anim: int fragment_open_enter -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Headline -androidx.constraintlayout.widget.R$string: R$string() -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge -androidx.work.R$dimen: int notification_top_pad -cyanogenmod.app.CustomTile$GridExpandedStyle: void setGridItems(java.util.ArrayList) -wangdaye.com.geometricweather.R$attr: int windowFixedHeightMajor -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWeatherSource() -wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_shapeAppearanceOverlay -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_disableDependentsState -com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorCornerRadius(int) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$array: int air_quality_unit_values -androidx.viewpager2.R$dimen: int notification_small_icon_size_as_large -okhttp3.internal.http2.Huffman$Node: int terminalBits -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: WeatherProviderService$ServiceHandler(cyanogenmod.weatherservice.WeatherProviderService,android.os.Looper) -androidx.vectordrawable.animated.R$dimen: int compat_notification_large_icon_max_height -okhttp3.internal.cache.DiskLruCache$3: DiskLruCache$3(okhttp3.internal.cache.DiskLruCache) -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getDescription() -com.google.android.material.tabs.TabLayout: void removeOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_entries -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeBottomLeft -wangdaye.com.geometricweather.R$id: int confirm_button -io.reactivex.internal.disposables.DisposableHelper: void reportDisposableSet() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +okhttp3.internal.connection.ConnectionSpecSelector: java.util.List connectionSpecs +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode LIGHT +cyanogenmod.themes.ThemeManager: boolean processThemeResources(java.lang.String) +androidx.recyclerview.R$dimen: int compat_control_corner_material +com.google.android.material.R$id: int motion_base +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.disposables.Disposable upstream +okio.BufferedSink: okio.BufferedSink writeIntLe(int) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String LocalizedName +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_16 +cyanogenmod.externalviews.KeyguardExternalView$3: int val$width +com.xw.repo.bubbleseekbar.R$string: int abc_action_mode_done +com.xw.repo.bubbleseekbar.R$id: int activity_chooser_view_content +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_shadow_height +cyanogenmod.weatherservice.IWeatherProviderService$Stub: cyanogenmod.weatherservice.IWeatherProviderService asInterface(android.os.IBinder) +androidx.hilt.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeWindChillTemperature +wangdaye.com.geometricweather.R$string: int settings_title_dark_mode +wangdaye.com.geometricweather.R$string: int sp_widget_multi_city +com.turingtechnologies.materialscrollbar.R$attr: int layout_collapseParallaxMultiplier +androidx.vectordrawable.R$id: int tag_accessibility_heading +androidx.work.R$id: int info +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_ASSIST_LONG_PRESS_ACTION_VALIDATOR +com.xw.repo.bubbleseekbar.R$drawable +androidx.fragment.R$styleable: int GradientColor_android_centerY +androidx.preference.R$styleable: int PreferenceTheme_switchPreferenceStyle +wangdaye.com.geometricweather.R$string: int material_timepicker_am +androidx.preference.R$attr: int layout_dodgeInsetEdges +androidx.preference.R$string: int abc_toolbar_collapse_description +okhttp3.Response$Builder: okhttp3.Request request +com.google.android.material.R$attr: int thumbTextPadding +androidx.fragment.R$styleable: int GradientColor_android_centerColor +com.google.android.material.R$color: int mtrl_bottom_nav_colored_ripple_color +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_color +androidx.appcompat.widget.AppCompatButton: int getAutoSizeMaxTextSize() +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void replay() +androidx.lifecycle.extensions.R$id: int chronometer +com.google.android.material.R$styleable: int MenuItem_tooltipText +okhttp3.MultipartBody: okhttp3.MediaType contentType +android.didikee.donate.R$styleable: int MenuItem_iconTint +okio.Segment: void compact() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSo2() +com.google.android.material.imageview.ShapeableImageView: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +com.turingtechnologies.materialscrollbar.R$id: int titleDividerNoCustom +com.google.android.material.R$styleable: int Layout_layout_editor_absoluteY +cyanogenmod.app.Profile$ProfileTrigger: int access$200(cyanogenmod.app.Profile$ProfileTrigger) +com.turingtechnologies.materialscrollbar.R$attr: int chipCornerRadius +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: BasicIntQueueSubscription() +cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener: void onAttachedToWindow() +androidx.core.R$dimen: int notification_big_circle_margin +androidx.preference.R$bool +wangdaye.com.geometricweather.R$styleable: int OnSwipe_onTouchUp +cyanogenmod.util.ColorUtils: int[] SOLID_COLORS +androidx.activity.R$styleable: int FontFamily_fontProviderFetchStrategy +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder allEnabledTlsVersions() +androidx.preference.R$styleable: int DialogPreference_android_negativeButtonText +androidx.drawerlayout.R$attr: int fontVariationSettings +androidx.constraintlayout.widget.R$attr: int paddingStart +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataContainer +com.google.android.material.slider.Slider: int getHaloRadius() +wangdaye.com.geometricweather.R$attr: int backgroundInsetBottom +com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_android_popupBackground +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_9 +cyanogenmod.power.PerformanceManager: int[] POSSIBLE_POWER_PROFILES +com.jaredrummler.android.colorpicker.R$id: int normal +wangdaye.com.geometricweather.R$id: int container_main_footer_title +com.google.android.material.circularreveal.CircularRevealRelativeLayout: CircularRevealRelativeLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$id: int withinBounds +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_CLOCK_TEXT_COLOR +com.google.android.material.R$styleable: int SwitchCompat_android_textOn +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_navigationMode +androidx.viewpager2.R$id: int accessibility_custom_action_3 +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.HourlyEntity,long) +com.jaredrummler.android.colorpicker.R$attr: int listLayout +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_MIN_INDEX +com.google.android.material.circularreveal.CircularRevealGridLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +com.google.android.material.R$attr: int buttonTint +cyanogenmod.os.Build: Build() +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_title +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCutDrawable +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogTitle +androidx.hilt.lifecycle.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric +androidx.fragment.R$id: int accessibility_custom_action_12 +androidx.dynamicanimation.R$id: int tag_unhandled_key_listeners +io.reactivex.internal.observers.LambdaObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceInformationStyle +okhttp3.FormBody$Builder +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_Solid +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: long serialVersionUID +com.google.android.material.R$id: int staticPostLayout +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: boolean inCompletable +james.adaptiveicon.R$styleable: int Toolbar_titleMargin +wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_showOldColor +android.didikee.donate.R$dimen: int abc_control_inset_material +james.adaptiveicon.R$styleable: int[] Spinner +com.jaredrummler.android.colorpicker.R$id: int icon +androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_tint +cyanogenmod.externalviews.KeyguardExternalView$4: KeyguardExternalView$4(cyanogenmod.externalviews.KeyguardExternalView) +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode +androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_70 +io.reactivex.internal.util.NotificationLite$ErrorNotification: java.lang.String toString() +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginStart +android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +cyanogenmod.externalviews.ExternalViewProviderService$1$1 +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String VIBRATE +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterOverflowTextAppearance +wangdaye.com.geometricweather.R$attr: int trackTintMode +android.didikee.donate.R$layout: int abc_alert_dialog_title_material +okhttp3.CertificatePinner: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner +okhttp3.ConnectionSpec$Builder: boolean supportsTlsExtensions +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableItem_android_drawable +androidx.hilt.work.R$string +androidx.fragment.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getDensityText(android.content.Context,float) +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.R$attr: int waveDecay +com.xw.repo.bubbleseekbar.R$style: int Base_V23_Theme_AppCompat +com.jaredrummler.android.colorpicker.R$id: int cpv_color_image_view +io.reactivex.internal.operators.observable.ObserverResourceWrapper: io.reactivex.Observer downstream +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_percent +android.didikee.donate.R$anim +androidx.preference.R$layout: int custom_dialog +androidx.constraintlayout.widget.R$styleable: int[] KeyTimeCycle +com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_layout +androidx.appcompat.R$layout: int select_dialog_item_material +okio.Options: Options(okio.ByteString[],int[]) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_7 +androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedWidthMinor +cyanogenmod.hardware.CMHardwareManager: java.lang.String getUniqueDeviceId() +okhttp3.internal.connection.RealConnection: void onStream(okhttp3.internal.http2.Http2Stream) +android.didikee.donate.R$color: int material_grey_600 +androidx.activity.R$id: int icon_group +androidx.constraintlayout.widget.R$attr: int dialogTheme +okhttp3.Response$Builder: okhttp3.ResponseBody body +android.support.v4.app.INotificationSideChannel$Stub$Proxy +com.google.android.material.R$styleable: int AppCompatTheme_colorPrimaryDark +androidx.hilt.work.R$id: int line1 +androidx.preference.R$styleable: int ActionBar_title +com.google.android.material.R$attr: int endIconContentDescription +com.github.rahatarmanahmed.cpv.BuildConfig: boolean DEBUG +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind +androidx.constraintlayout.widget.R$interpolator: int fast_out_slow_in +com.google.android.material.R$style: int Base_DialogWindowTitleBackground_AppCompat +okhttp3.internal.http2.Http2Connection: void start(boolean) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$color: int button_material_dark +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetRight +james.adaptiveicon.R$styleable: int ActionBar_subtitle +okhttp3.internal.connection.StreamAllocation: void cancel() +androidx.viewpager2.R$dimen: int notification_main_column_padding_top +androidx.preference.R$layout: int preference_widget_seekbar_material +com.google.android.material.R$styleable: int MaterialButton_android_insetRight +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_0_30 +androidx.constraintlayout.widget.R$id: int spread +com.google.android.material.R$attr: int constraint_referenced_ids +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_padding_top_material +androidx.constraintlayout.widget.R$styleable: int MenuView_subMenuArrow +com.google.android.material.chip.Chip: void setChipEndPadding(float) +android.didikee.donate.R$string: int abc_searchview_description_search +com.google.android.material.R$attr: int constraintSetEnd +androidx.constraintlayout.widget.R$attr: int buttonPanelSideLayout +androidx.preference.R$attr: int editTextPreferenceStyle +okhttp3.WebSocket: void cancel() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: int status +androidx.hilt.R$attr +com.xw.repo.bubbleseekbar.R$styleable: R$styleable() +com.turingtechnologies.materialscrollbar.R$string: int abc_shareactionprovider_share_with +com.google.android.material.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.R$id: int navigation_header_container +androidx.hilt.R$dimen: int notification_large_icon_height +androidx.dynamicanimation.R$integer +androidx.appcompat.widget.AppCompatImageButton: void setBackgroundResource(int) +androidx.hilt.lifecycle.R$id: int icon_group +androidx.appcompat.R$interpolator: R$interpolator() +james.adaptiveicon.R$attr: int fontStyle +io.reactivex.Observable: io.reactivex.Observable using(java.util.concurrent.Callable,io.reactivex.functions.Function,io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.R$animator: int weather_haze_2 +com.google.android.material.R$attr: int navigationContentDescription +androidx.preference.R$style: int Preference_PreferenceScreen +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCutDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric Metric +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum Maximum +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayVerticalProvider +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Borderless +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitationDuration +android.didikee.donate.R$attr: int tickMarkTint +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIcon +cyanogenmod.externalviews.KeyguardExternalView: void unregisterOnWindowAttachmentChangedListener(cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BEGIN_OBJECT +com.google.android.material.R$styleable: int Transform_android_rotationX +androidx.appcompat.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +com.jaredrummler.android.colorpicker.R$attr: int closeItemLayout +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_homeAsUpIndicator +androidx.preference.R$styleable: int Preference_android_fragment +androidx.appcompat.R$styleable: int AlertDialog_showTitle +wangdaye.com.geometricweather.R$attr: int msb_scrollMode +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: boolean isDisposed() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: ObservableTimeout$TimeoutConsumer(long,io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutSelectorSupport) +com.jaredrummler.android.colorpicker.R$attr: int voiceIcon +androidx.appcompat.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +com.google.android.material.R$styleable: int Layout_layout_constraintHeight_min +com.google.android.material.chip.ChipGroup: void setFlexWrap(int) +androidx.lifecycle.extensions.R$id: int text2 +com.google.android.material.R$color: int mtrl_textinput_focused_box_stroke_color +androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat_Light +io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable[] values() +androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +com.google.android.material.R$attr: int behavior_expandedOffset +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.activity.R$dimen: int compat_notification_large_icon_max_width +cyanogenmod.app.ProfileManager: void resetAll() +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.settings.activities.SelectProviderActivity +okio.Buffer$2: void close() +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lc +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_id +com.bumptech.glide.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.R$color: int switch_thumb_disabled_material_light +com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_chainStyle +cyanogenmod.app.ThemeComponent: int id +org.greenrobot.greendao.AbstractDao: java.lang.String[] getAllColumns() +wangdaye.com.geometricweather.R$styleable: int ChipGroup_singleLine +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Tooltip +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object readKey(android.database.Cursor,int) +androidx.preference.R$string: int abc_capital_on +com.google.android.material.R$styleable: int MaterialCardView_cardForegroundColor +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_arrowShaftLength +wangdaye.com.geometricweather.R$id: int widget_text_weather +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.preference.R$id: int time +com.jaredrummler.android.colorpicker.R$attr: int layout_behavior +wangdaye.com.geometricweather.R$attr: int indicatorType +io.reactivex.internal.disposables.DisposableHelper: void dispose() +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: java.lang.String styleId +androidx.swiperefreshlayout.R$integer +androidx.constraintlayout.widget.R$id: int honorRequest +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogCornerRadius +wangdaye.com.geometricweather.R$styleable: int ViewPager2_android_orientation +com.google.gson.LongSerializationPolicy: com.google.gson.JsonElement serialize(java.lang.Long) +cyanogenmod.externalviews.KeyguardExternalView$7: KeyguardExternalView$7(cyanogenmod.externalviews.KeyguardExternalView) +androidx.lifecycle.SavedStateHandle$1: android.os.Bundle saveState() +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: ObservableSampleWithObservable$SampleMainNoLast(io.reactivex.Observer,io.reactivex.ObservableSource) +com.google.android.material.R$styleable: int TextInputLayout_suffixTextColor +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void drain() +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_material_light +com.google.android.material.R$dimen: int design_snackbar_padding_vertical +wangdaye.com.geometricweather.R$attr: int titleTextAppearance +androidx.vectordrawable.animated.R$dimen: int notification_large_icon_height +com.google.android.material.R$styleable: int SwitchCompat_switchTextAppearance +android.didikee.donate.R$styleable: int ActionMenuItemView_android_minWidth +wangdaye.com.geometricweather.R$attr: int splitTrack +androidx.preference.R$integer: int status_bar_notification_info_maxnum +com.github.rahatarmanahmed.cpv.CircularProgressView: int size +okhttp3.internal.http1.Http1Codec$AbstractSource: Http1Codec$AbstractSource(okhttp3.internal.http1.Http1Codec,okhttp3.internal.http1.Http1Codec$1) +androidx.hilt.R$id: int tag_accessibility_actions +androidx.appcompat.R$color: int primary_dark_material_light +androidx.viewpager.widget.PagerTabStrip: void setTabIndicatorColorResource(int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer totalCloudCover +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 +androidx.legacy.coreutils.R$color: int secondary_text_default_material_light +cyanogenmod.profiles.ConnectionSettings: boolean mOverride +com.turingtechnologies.materialscrollbar.R$id: int group_divider +com.google.android.material.R$styleable: int Toolbar_android_minHeight +com.turingtechnologies.materialscrollbar.R$color: int primary_text_disabled_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.lang.String getPubTime() +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar +com.turingtechnologies.materialscrollbar.R$anim: int design_snackbar_in +androidx.loader.R$string: int status_bar_notification_info_overflow +com.jaredrummler.android.colorpicker.R$id: int tabMode +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginTop +wangdaye.com.geometricweather.Hilt_GeometricWeather: Hilt_GeometricWeather() +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setWeatherLocation(cyanogenmod.weather.WeatherLocation) +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_6_00 +okhttp3.internal.http2.Http2Connection$Builder: Http2Connection$Builder(boolean) +retrofit2.ParameterHandler$HeaderMap: java.lang.reflect.Method method +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: long serialVersionUID +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void otherSuccess(java.lang.Object) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getUvIndex() +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customDimension +com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: FloatingActionButton$BaseBehavior() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.List value +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Alert +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +cyanogenmod.app.ILiveLockScreenManager$Stub: java.lang.String DESCRIPTOR +androidx.preference.R$color: int secondary_text_disabled_material_light +androidx.work.impl.workers.ConstraintTrackingWorker: ConstraintTrackingWorker(android.content.Context,androidx.work.WorkerParameters) +android.didikee.donate.R$attr: int actionModeStyle +com.xw.repo.bubbleseekbar.R$attr: int alphabeticModifiers +okio.RealBufferedSource: java.lang.String readUtf8Line() +android.didikee.donate.R$style: int Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.R$attr: int editTextBackground +androidx.customview.R$styleable: int ColorStateListItem_android_alpha +androidx.drawerlayout.R$dimen: int compat_button_inset_vertical_material +okio.ByteString: char[] HEX_DIGITS +androidx.core.R$color +androidx.hilt.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dividerHorizontal +androidx.preference.R$attr: int autoCompleteTextViewStyle +com.google.android.material.R$attr: int tabTextColor +retrofit2.SkipCallbackExecutorImpl +com.turingtechnologies.materialscrollbar.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.R$styleable: int AlertDialog_listItemLayout +androidx.appcompat.resources.R$id: int accessibility_custom_action_28 +androidx.lifecycle.ReportFragment: java.lang.String REPORT_FRAGMENT_TAG +wangdaye.com.geometricweather.R$id: int dialog_location_help_manageIcon +wangdaye.com.geometricweather.R$layout: int design_navigation_item_separator +androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_material +okhttp3.internal.cache.DiskLruCache: boolean removeEntry(okhttp3.internal.cache.DiskLruCache$Entry) +okhttp3.internal.connection.RealConnection: long idleAtNanos +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type valueOf(java.lang.String) +wangdaye.com.geometricweather.R$id: int left +okhttp3.HttpUrl: okhttp3.HttpUrl$Builder newBuilder(java.lang.String) +retrofit2.Retrofit$Builder: okhttp3.Call$Factory callFactory +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: int UnitType +okhttp3.internal.http.HttpMethod: boolean permitsRequestBody(java.lang.String) +james.adaptiveicon.R$styleable: int SearchView_android_imeOptions +androidx.appcompat.R$attr: int windowMinWidthMinor +com.google.android.material.R$styleable: int ConstraintSet_motionProgress james.adaptiveicon.R$style: int Base_Widget_AppCompat_EditText -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastVerticalBias -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_searchViewStyle -com.google.android.material.internal.NavigationMenuItemView: void setChecked(boolean) -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void dispose() -okhttp3.internal.http2.Settings: int getMaxConcurrentStreams(int) -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_DAILY_OVERVIEW -androidx.appcompat.resources.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean modifyInHour -cyanogenmod.themes.IThemeChangeListener: void onFinish(boolean) -android.support.v4.os.ResultReceiver: android.os.Handler mHandler +androidx.fragment.R$styleable: int FontFamilyFont_android_fontWeight +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +com.jaredrummler.android.colorpicker.R$drawable: int abc_popup_background_mtrl_mult +com.xw.repo.bubbleseekbar.R$style: int Base_V28_Theme_AppCompat_Light +com.jaredrummler.android.colorpicker.R$id: int topPanel +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupWindow +androidx.constraintlayout.widget.R$attr: int firstBaselineToTopHeight +androidx.appcompat.widget.LinearLayoutCompat: int getBaseline() +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: void invoke(java.lang.Throwable) +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderPackage +com.google.android.material.R$layout: int material_clockface_textview +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constrainedHeight +android.didikee.donate.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +com.turingtechnologies.materialscrollbar.R$string: R$string() +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_default +androidx.coordinatorlayout.R$id: int title +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_dither +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: int Index +androidx.preference.R$style: int Base_Widget_AppCompat_Spinner +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_exitFadeDuration +androidx.appcompat.R$drawable: int abc_ic_star_half_black_48dp +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Button +androidx.transition.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.transition.R$layout: R$layout() +androidx.constraintlayout.widget.R$styleable: int Variant_region_widthLessThan +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean done +com.google.android.material.R$styleable: int Slider_thumbStrokeWidth +com.google.android.material.R$color: int primary_dark_material_dark +com.google.android.material.R$styleable: int Constraint_barrierMargin +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_TextView_SpinnerItem +cyanogenmod.weather.CMWeatherManager$1: CMWeatherManager$1(cyanogenmod.weather.CMWeatherManager) +com.google.gson.stream.JsonReader: int peekNumber() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: AccuCurrentResult$PrecipitationSummary$PastHour() +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onComplete() +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_color +okhttp3.internal.http.HttpHeaders: okhttp3.Headers varyHeaders(okhttp3.Headers,okhttp3.Headers) +com.google.android.material.R$id: int cancel_button +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator$SavedState +cyanogenmod.hardware.CMHardwareManager: int getVibratorMinIntensity() +android.didikee.donate.R$attr: int contentInsetRight +wangdaye.com.geometricweather.R$attr: int suggestionRowLayout +androidx.viewpager2.R$id: int accessibility_custom_action_7 +androidx.coordinatorlayout.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String getValue() +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context,android.util.AttributeSet) +androidx.dynamicanimation.R$color +androidx.constraintlayout.widget.R$attr: int spinnerDropDownItemStyle +androidx.constraintlayout.widget.R$styleable: int KeyPosition_pathMotionArc +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableEnd +okio.Buffer: okio.ByteString sha256() +androidx.hilt.R$id: int accessibility_custom_action_25 +androidx.constraintlayout.widget.R$styleable: int GradientColorItem_android_color +androidx.appcompat.R$attr: int listLayout +okhttp3.internal.Util: int delimiterOffset(java.lang.String,int,int,char) +com.bumptech.glide.integration.okhttp.R$id: int title +com.jaredrummler.android.colorpicker.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_progress +com.turingtechnologies.materialscrollbar.R$id: int transition_transform +com.google.android.material.imageview.ShapeableImageView: float getStrokeWidth() +androidx.preference.R$attr: int dialogTitle +androidx.constraintlayout.widget.R$string: int abc_shareactionprovider_share_with_application +com.turingtechnologies.materialscrollbar.R$attr: int autoSizeMinTextSize +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean isDisposed() +cyanogenmod.externalviews.KeyguardExternalView: android.content.Context access$600(cyanogenmod.externalviews.KeyguardExternalView) +okio.BufferedSource: java.lang.String readUtf8Line() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +okhttp3.CacheControl: boolean immutable() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_searchViewStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_item_min_width +cyanogenmod.externalviews.KeyguardExternalView$5: void run() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property AqiText +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onError(java.lang.Throwable) +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTheme +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: int nameId +retrofit2.Retrofit$1 +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: int phenomenonId +androidx.swiperefreshlayout.R$id: int tag_unhandled_key_listeners +com.google.android.material.R$style: int Widget_Design_BottomSheet_Modal +cyanogenmod.themes.IThemeService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar +com.google.android.material.R$attr: int popupTheme +okhttp3.internal.cache2.Relay: Relay(java.io.RandomAccessFile,okio.Source,long,okio.ByteString,long) +okio.BufferedSink: okio.Buffer buffer() +android.didikee.donate.R$style: int Widget_AppCompat_ListPopupWindow +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_54 +androidx.preference.R$id: int action_bar_container +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_Solid +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: void onResponse(retrofit2.Call,retrofit2.Response) +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String opPkg +com.google.android.material.R$styleable: int AppCompatTheme_windowMinWidthMajor +android.didikee.donate.R$color: int abc_primary_text_material_light +androidx.appcompat.resources.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +androidx.appcompat.R$styleable: int AppCompatTextView_fontVariationSettings +wangdaye.com.geometricweather.R$string: int humidity +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconTint +wangdaye.com.geometricweather.R$drawable: int btn_checkbox_unchecked_mtrl +okhttp3.HttpUrl: void canonicalize(okio.Buffer,java.lang.String,int,int,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_transitionPathRotate +wangdaye.com.geometricweather.R$color: int design_default_color_secondary_variant +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_CLOCK_VALIDATOR +androidx.appcompat.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTemperature(int) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton +androidx.preference.R$styleable: int AppCompatTextView_drawableTopCompat +wangdaye.com.geometricweather.R$string: int settings_summary_live_wallpaper +com.google.android.material.R$color: int abc_decor_view_status_guard +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout +james.adaptiveicon.R$drawable: int abc_btn_default_mtrl_shape +androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_height +cyanogenmod.weather.RequestInfo$1: cyanogenmod.weather.RequestInfo createFromParcel(android.os.Parcel) +com.google.android.material.R$styleable: int[] ActionBar +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String quotedAV() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: AccuDailyResult$DailyForecasts$Day() +android.didikee.donate.R$styleable: int TextAppearance_android_typeface +james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar_Small +io.reactivex.Observable: io.reactivex.Observable rangeLong(long,long) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle +okio.ByteString: boolean startsWith(byte[]) +com.turingtechnologies.materialscrollbar.R$attr: int dividerHorizontal +cyanogenmod.app.CustomTile: java.lang.String access$302(cyanogenmod.app.CustomTile,java.lang.String) +androidx.appcompat.R$style: int Theme_AppCompat +com.google.android.material.chip.Chip: void setChipIconVisible(int) +wangdaye.com.geometricweather.R$color: int abc_hint_foreground_material_light +com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitation() +androidx.recyclerview.R$attr: int layoutManager +com.google.android.material.R$styleable: int AppCompatTextView_drawableStartCompat +wangdaye.com.geometricweather.R$string: int current_location +james.adaptiveicon.R$layout: int abc_action_mode_close_item_material +okio.Buffer$UnsafeCursor: int next() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator T9_SEARCH_INPUT_LOCALE_VALIDATOR +wangdaye.com.geometricweather.R$anim: int abc_popup_enter +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackTintList() +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_section_text +wangdaye.com.geometricweather.R$drawable: int abc_list_pressed_holo_dark +io.reactivex.Observable: io.reactivex.Observable create(io.reactivex.ObservableOnSubscribe) +cyanogenmod.hardware.ICMHardwareService: boolean set(int,boolean) +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low_normal +com.google.android.material.R$styleable: int View_android_focusable +retrofit2.Retrofit$Builder: okhttp3.HttpUrl baseUrl +androidx.constraintlayout.widget.R$styleable: int KeyPosition_sizePercent +com.xw.repo.bubbleseekbar.R$attr: int windowNoTitle +androidx.appcompat.R$attr: int dialogCornerRadius +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_start_icon_margin_end +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() +okhttp3.internal.cache.CacheInterceptor: okhttp3.Response cacheWritingResponse(okhttp3.internal.cache.CacheRequest,okhttp3.Response) +cyanogenmod.app.CustomTileListenerService: void unregisterAsSystemService() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.MinutelyEntity) +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_trackTintMode +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getStrokeWidth() +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_GCM_SHA384 +com.google.android.material.datepicker.MaterialTextInputPicker +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer cloudCover +com.google.android.material.R$attr: int backgroundInsetStart +androidx.appcompat.app.AppCompatActivity: AppCompatActivity() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$bool: int enable_system_foreground_service_default +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored +com.google.android.material.R$attr: int actionDropDownStyle +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_CompactMenu +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean cancelled +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_103 +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.util.List _queryWeatherEntity_DailyEntityList(java.lang.String,java.lang.String) +okio.Buffer: okio.Buffer writeUtf8(java.lang.String) +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int FINISHED +retrofit2.Converter: java.lang.Object convert(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_Primary +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_BottomSheet +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.google.android.material.R$attr: int customColorDrawableValue +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowMinWidthMajor +cyanogenmod.providers.CMSettings$Secure: java.lang.String KEYBOARD_BRIGHTNESS +androidx.constraintlayout.widget.R$color: int material_deep_teal_500 +com.google.android.material.R$styleable: int DrawerArrowToggle_thickness +wangdaye.com.geometricweather.R$id: int progress_horizontal +com.github.rahatarmanahmed.cpv.CircularProgressView$7: void onAnimationUpdate(android.animation.ValueAnimator) +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setArcBackgroundColor(int) +androidx.appcompat.R$dimen: int abc_dropdownitem_text_padding_right +wangdaye.com.geometricweather.R$dimen: int cpv_dialog_preview_width +com.jaredrummler.android.colorpicker.R$attr: R$attr() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius +com.jaredrummler.android.colorpicker.R$styleable: int[] CoordinatorLayout_Layout +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetTop +androidx.appcompat.R$styleable: int GradientColor_android_centerX +cyanogenmod.platform.Manifest$permission: java.lang.String MANAGE_PERSISTENT_STORAGE +io.reactivex.Observable: io.reactivex.observers.TestObserver test() +androidx.appcompat.widget.ButtonBarLayout: ButtonBarLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitationProbability +com.google.android.material.R$id: int expanded_menu +androidx.transition.R$id: int text2 +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onError(java.lang.Throwable) +androidx.viewpager2.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.navigation.NavigationView: void setItemIconPaddingResource(int) +okhttp3.Handshake: okhttp3.Handshake get(okhttp3.TlsVersion,okhttp3.CipherSuite,java.util.List,java.util.List) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator +wangdaye.com.geometricweather.R$attr: int itemMaxLines +wangdaye.com.geometricweather.R$styleable: int PopupWindowBackgroundState_state_above_anchor +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_precise_anchor_extra_offset +okio.RealBufferedSource: short readShortLe() +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonStyle +androidx.swiperefreshlayout.R$id: int notification_background +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setUrl(java.lang.String) +com.google.android.material.R$styleable: int ViewPager2_android_orientation +androidx.appcompat.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +wangdaye.com.geometricweather.R$dimen: int abc_dialog_padding_material +com.google.android.material.R$styleable: int ActionBar_contentInsetLeft +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: int getCollapsedPadding() +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: android.os.IBinder asBinder() +com.google.android.material.R$attr: int behavior_peekHeight +okhttp3.internal.http1.Http1Codec$ChunkedSource: okhttp3.internal.http1.Http1Codec this$0 +androidx.appcompat.R$style: int Widget_AppCompat_PopupMenu_Overflow +cyanogenmod.app.StatusBarPanelCustomTile$1: cyanogenmod.app.StatusBarPanelCustomTile[] newArray(int) +wangdaye.com.geometricweather.R$array: int ui_style_values +okhttp3.internal.http2.Http2Reader: Http2Reader(okio.BufferedSource,boolean) +cyanogenmod.externalviews.KeyguardExternalViewProviderService: void onCreate() +androidx.appcompat.widget.SearchView$SearchAutoComplete: void setThreshold(int) +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.X509TrustManager) +wangdaye.com.geometricweather.R$attr: int region_heightMoreThan +androidx.appcompat.R$styleable: int ActionMenuItemView_android_minWidth +wangdaye.com.geometricweather.R$drawable: int ic_google_play +com.google.android.material.slider.RangeSlider: void setTrackActiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$attr: int linearSeamless +com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_material +okhttp3.EventListener$Factory: okhttp3.EventListener create(okhttp3.Call) +com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Light +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin +wangdaye.com.geometricweather.R$id: int transparency_title +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_seek_step_section +com.xw.repo.bubbleseekbar.R$id: int progress_horizontal +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: AccuCurrentResult$RealFeelTemperature$Imperial() +com.google.android.material.R$style: int Base_Theme_MaterialComponents_CompactMenu +okhttp3.internal.http2.Http2Stream$FramingSink: boolean closed +wangdaye.com.geometricweather.R$attr: int backgroundOverlayColorAlpha +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber +androidx.preference.R$styleable: int[] GradientColor +com.turingtechnologies.materialscrollbar.R$animator: int design_fab_hide_motion_spec +wangdaye.com.geometricweather.R$drawable: int design_ic_visibility +com.xw.repo.bubbleseekbar.R$id: int scrollIndicatorDown +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: java.util.List brands +okhttp3.internal.http.HttpDate: java.util.Date parse(java.lang.String) +com.jaredrummler.android.colorpicker.R$attr: int drawableSize +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +com.xw.repo.bubbleseekbar.R$attr: int homeLayout +cyanogenmod.app.ICMTelephonyManager: void setDataConnectionState(boolean) +com.google.android.material.R$attr: int switchStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: int UnitType +com.github.rahatarmanahmed.cpv.CircularProgressView$7 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Flush +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility Visibility +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean cancelled +com.jaredrummler.android.colorpicker.R$attr: int layout_keyline +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_DES_CBC_SHA +cyanogenmod.weather.util.WeatherUtils: java.lang.String formatTemperature(double,int) +wangdaye.com.geometricweather.R$string: int content_des_no2 +com.google.android.material.R$styleable: int GradientColor_android_centerY +android.didikee.donate.R$styleable: int View_paddingEnd +wangdaye.com.geometricweather.R$styleable: int[] SwitchPreferenceCompat +androidx.appcompat.R$layout: R$layout() +com.google.android.material.R$dimen: int abc_text_size_medium_material +okio.GzipSource: byte SECTION_TRAILER +com.google.android.material.R$attr: int layout_constraintRight_creator +androidx.appcompat.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +androidx.constraintlayout.widget.R$styleable: int MenuItem_actionLayout +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_CheckBox +com.xw.repo.bubbleseekbar.R$dimen: int abc_disabled_alpha_material_light +james.adaptiveicon.R$attr: int actionModeBackground +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_1 +androidx.constraintlayout.widget.Barrier: int getType() +okhttp3.internal.http2.Http2Stream: long unacknowledgedBytesRead +com.google.android.material.R$style: int Widget_AppCompat_Light_ListPopupWindow +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String aqi +android.didikee.donate.R$attr: int titleMargin +androidx.lifecycle.MethodCallsLogger +cyanogenmod.providers.CMSettings$System: float getFloat(android.content.ContentResolver,java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: AccuCurrentResult$Ceiling$Metric() +wangdaye.com.geometricweather.background.service.CMWeatherProviderService: CMWeatherProviderService() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_animationDuration +io.reactivex.internal.disposables.ArrayCompositeDisposable: boolean setResource(int,io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer getCloudCover() +okhttp3.internal.Util: java.nio.charset.Charset bomAwareCharset(okio.BufferedSource,java.nio.charset.Charset) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconContentDescription +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: boolean disposed +wangdaye.com.geometricweather.R$string: int material_slider_range_end +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_enabled +androidx.work.R$layout: int notification_template_custom_big +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.IWeatherServiceProviderChangeListener mProviderChangeListener +android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Light +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.Integer cloudCover +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.R$attr: int cpv_animSwoopDuration +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_disabled_holo_light +okhttp3.internal.ws.RealWebSocket: int receivedPongCount +okhttp3.internal.connection.RealConnection: okio.BufferedSink sink +wangdaye.com.geometricweather.R$attr: int materialCalendarMonth +com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context) +androidx.appcompat.R$styleable: int SwitchCompat_android_textOff +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: int Severity +androidx.legacy.coreutils.R$drawable: int notification_bg_low +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_max +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3 +com.google.android.material.R$style: int ThemeOverlay_AppCompat_ActionBar +wangdaye.com.geometricweather.R$id: int SHIFT +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_gravity +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +androidx.appcompat.R$dimen: int abc_text_size_display_4_material +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +okhttp3.OkHttpClient$1: boolean isInvalidHttpUrlHost(java.lang.IllegalArgumentException) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String country +okio.Buffer: int readUtf8CodePoint() +android.didikee.donate.R$string: int abc_action_menu_overflow_description +wangdaye.com.geometricweather.R$attr: int cpv_progress +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getRealFeelShaderTemperature() +wangdaye.com.geometricweather.R$styleable: int[] PopupWindow +james.adaptiveicon.R$id: int action_image +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitationProbability +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onNext(java.lang.Object) +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isSingle +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +io.reactivex.internal.observers.DeferredScalarDisposable: int requestFusion(int) +cyanogenmod.externalviews.ExternalView$5 +okhttp3.MediaType: java.nio.charset.Charset charset() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ButtonBar +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_id +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getDurationText(android.content.Context,float) +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableBottomCompat +androidx.coordinatorlayout.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: ObservableCombineLatest$CombinerObserver(io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial Imperial +android.didikee.donate.R$layout: int support_simple_spinner_dropdown_item +wangdaye.com.geometricweather.R$id: int mtrl_card_checked_layer_id +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar_FullWidth +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_DES_CBC_SHA +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void dispose() +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_baselineAligned +androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_navigationContentDescription +io.reactivex.internal.subscriptions.BasicQueueSubscription: java.lang.Object poll() +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getTitle() +wangdaye.com.geometricweather.R$string: int settings_title_minimal_icon +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_36dp +cyanogenmod.profiles.BrightnessSettings +androidx.preference.R$styleable: int DialogPreference_android_dialogIcon +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListMenuView +com.google.android.material.R$color: int abc_hint_foreground_material_light +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstVerticalStyle +wangdaye.com.geometricweather.R$id: int screen +james.adaptiveicon.R$anim: int abc_shrink_fade_out_from_bottom +retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: retrofit2.OkHttpCall$ExceptionCatchingResponseBody this$0 +io.reactivex.internal.disposables.DisposableHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) +androidx.hilt.work.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$string: int feedback_ignore_battery_optimizations_content +com.turingtechnologies.materialscrollbar.R$style +wangdaye.com.geometricweather.R$attr: int itemSpacing +com.turingtechnologies.materialscrollbar.R$attr: int iconEndPadding +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicBoolean stopWindows +james.adaptiveicon.R$drawable: int abc_text_select_handle_middle_mtrl_light +androidx.vectordrawable.animated.R$drawable: int notification_bg_low +com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$dimen: int mtrl_btn_text_size +com.google.android.material.R$id: int action_menu_divider +android.didikee.donate.R$attr: int actionModeSelectAllDrawable +okhttp3.Request: java.lang.String method +androidx.appcompat.R$attr: int subMenuArrow +androidx.fragment.R$id: int forever +androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache sInstance +okio.Buffer: okio.Buffer copyTo(java.io.OutputStream) +androidx.recyclerview.R$drawable +com.google.android.material.R$attr: int materialCalendarHeaderLayout +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_numericShortcut +androidx.constraintlayout.widget.R$styleable: int SearchView_suggestionRowLayout +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: int getTemperature(int) +androidx.coordinatorlayout.R$id: int tag_accessibility_clickable_spans +androidx.preference.R$attr: int colorAccent +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_CBC_SHA +wangdaye.com.geometricweather.R$array: int location_services +io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit) +cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_PROVIDER +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_width +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +androidx.preference.R$style: int ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: int unitArrayIndex +androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context,android.util.AttributeSet) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +androidx.fragment.R$id: int accessibility_custom_action_2 +androidx.activity.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.R$id: int right_icon +androidx.preference.R$styleable: int[] PopupWindow +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textColorSearchUrl +wangdaye.com.geometricweather.R$string: int tag_precipitation +androidx.preference.Preference +android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +android.didikee.donate.R$styleable: int[] SwitchCompat +okio.Buffer: Buffer() +io.reactivex.Observable: io.reactivex.Observable concatMapDelayError(io.reactivex.functions.Function,int,boolean) +com.google.android.material.R$color: int material_on_background_emphasis_medium +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollEnabled +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastVerticalBias +cyanogenmod.app.IProfileManager: boolean setActiveProfile(android.os.ParcelUuid) +androidx.coordinatorlayout.R$attr: int layout_anchorGravity +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setNo2(java.lang.String) +org.greenrobot.greendao.AbstractDao: java.lang.Object readKey(android.database.Cursor,int) +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String resPkg +com.turingtechnologies.materialscrollbar.R$id: int textSpacerNoButtons +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +james.adaptiveicon.R$dimen: int tooltip_y_offset_touch +androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyleSmall +androidx.viewpager.R$attr: int ttcIndex +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorPrimary +io.reactivex.Observable: io.reactivex.Observable onTerminateDetach() +io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit) +com.google.android.material.R$attr: int layout_constraintBaseline_toBaselineOf +com.google.android.material.button.MaterialButtonToggleGroup: void addOnButtonCheckedListener(com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener) +androidx.preference.R$id: int right_side +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getPivotY() +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_checkable +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +com.google.android.material.R$attr: int hintEnabled +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification io.reactivex.Observable: io.reactivex.Observable take(long) -org.greenrobot.greendao.AbstractDao: long insertInsideTx(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement) -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTemperature(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setDirection(java.lang.String) -retrofit2.OptionalConverterFactory$OptionalConverter: java.lang.Object convert(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int flag_ro -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense -com.google.android.material.R$styleable: int Constraint_layout_constraintEnd_toEndOf -wangdaye.com.geometricweather.R$attr: int layout_goneMarginBottom -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginLeft -com.google.android.material.R$attr: int itemTextColor -androidx.lifecycle.Lifecycling$1: androidx.lifecycle.LifecycleEventObserver val$observer -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String RINGTONE -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView_DropDown -android.didikee.donate.R$styleable: int ViewStubCompat_android_id -androidx.fragment.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.R$dimen: int tooltip_y_offset_touch -com.turingtechnologies.materialscrollbar.R$attr: int autoSizePresetSizes -wangdaye.com.geometricweather.R$id: int widget_day_week_icon -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -okhttp3.internal.http2.Http2Codec: okhttp3.Interceptor$Chain chain -wangdaye.com.geometricweather.R$attr: int layout_editor_absoluteX -wangdaye.com.geometricweather.R$color: int mtrl_textinput_filled_box_default_background_color -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -wangdaye.com.geometricweather.R$id: int textinput_counter -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getDensityVoice(android.content.Context,float) -okhttp3.internal.http2.Settings: int getHeaderTableSize() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: boolean setOther(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean -com.jaredrummler.android.colorpicker.R$attr: int actionModeShareDrawable -okhttp3.internal.ws.WebSocketReader: boolean isClient -wangdaye.com.geometricweather.R$styleable: int KeyPosition_curveFit -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display4 -com.xw.repo.bubbleseekbar.R$dimen: int abc_progress_bar_height_material -android.didikee.donate.R$drawable: int abc_ic_ab_back_material -wangdaye.com.geometricweather.R$style: int spinner_item -wangdaye.com.geometricweather.R$dimen: int preference_seekbar_padding_vertical -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree daytimeWindDegree -androidx.appcompat.R$styleable: int AppCompatTextView_drawableTint -androidx.preference.R$style: int Widget_AppCompat_SearchView_ActionBar -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteByKey -androidx.preference.R$styleable: int Preference_order -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_statusBarScrim -okio.Buffer: okio.Buffer write(byte[]) -com.google.android.material.R$styleable: int Chip_android_textAppearance -okhttp3.CacheControl$Builder: boolean noStore -okhttp3.internal.http2.Http2Writer: java.util.logging.Logger logger -cyanogenmod.hardware.IThermalListenerCallback$Stub: int TRANSACTION_onThermalChanged_0 -androidx.appcompat.R$id: int spacer -androidx.preference.R$attr: int titleMargins -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_NOTIF_COUNT -okio.ByteString: int compareTo(okio.ByteString) -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendLayoutManager -com.google.gson.internal.LinkedTreeMap: java.util.Set keySet() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: void setUnit(java.lang.String) -com.xw.repo.bubbleseekbar.R$id: int message -okio.BufferedSource: boolean rangeEquals(long,okio.ByteString,int,int) -com.google.android.material.R$layout: int text_view_with_theme_line_height -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean cancelled -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: CircularRevealCoordinatorLayout(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$attr: int layout_insetEdge -com.turingtechnologies.materialscrollbar.R$dimen: int cardview_default_elevation -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object getKey(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int maxImageSize -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure -wangdaye.com.geometricweather.R$id: int clip_horizontal -androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontStyle -com.google.android.material.R$string: int abc_activity_chooser_view_see_all -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode OVERRIDE -james.adaptiveicon.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -james.adaptiveicon.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -com.google.android.material.R$styleable: int SearchView_searchHintIcon -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemTitle(java.lang.String) -androidx.lifecycle.ProcessLifecycleOwner$3$1: void onActivityPostStarted(android.app.Activity) -wangdaye.com.geometricweather.R$styleable: int[] DialogPreference -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_40 -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: io.reactivex.Observer observer -androidx.appcompat.widget.AppCompatTextView: void setTextClassifier(android.view.textclassifier.TextClassifier) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_SearchView -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy REPLACE -cyanogenmod.providers.CMSettings$Global: int getInt(android.content.ContentResolver,java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int activityChooserViewStyle -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -wangdaye.com.geometricweather.R$string: int precipitation -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_2 -androidx.preference.R$dimen: int abc_panel_menu_list_width -okio.AsyncTimeout: okio.AsyncTimeout next -android.didikee.donate.R$color: R$color() -android.didikee.donate.R$id: int action_image -com.google.android.material.R$dimen: int abc_text_size_small_material -wangdaye.com.geometricweather.R$styleable: int[] LinearLayoutCompat_Layout -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_bias -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean china -com.google.android.material.R$styleable: int CollapsingToolbarLayout_title -wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_backgroundColorEnd -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvIndex -wangdaye.com.geometricweather.db.entities.DailyEntity: void setTime(long) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetEndWithActions -com.google.android.material.switchmaterial.SwitchMaterial -androidx.appcompat.app.AlertController$RecycleListView -androidx.appcompat.R$styleable: int AppCompatTheme_dropDownListViewStyle -wangdaye.com.geometricweather.main.fragments.ManagementFragment: ManagementFragment() -okio.ByteString: okio.ByteString hmacSha256(okio.ByteString) -wangdaye.com.geometricweather.R$styleable: int OnSwipe_maxAcceleration -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String so2 -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -com.jaredrummler.android.colorpicker.R$attr: int colorPrimaryDark -androidx.vectordrawable.R$color -android.didikee.donate.R$styleable: int AppCompatTheme_actionModePasteDrawable -com.google.android.material.R$styleable: int AppCompatTheme_switchStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial -wangdaye.com.geometricweather.R$attr: int boxBackgroundColor -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_max_width -retrofit2.ParameterHandler$RawPart -wangdaye.com.geometricweather.R$drawable: int notif_temp_93 -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfile -androidx.hilt.R$attr: int fontProviderPackage -com.google.android.material.R$string: int mtrl_picker_range_header_only_end_selected -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange Past24HourRange -wangdaye.com.geometricweather.R$id: int item -androidx.core.view.GestureDetectorCompat: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Small -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_year -wangdaye.com.geometricweather.R$id: int experience -com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_checkbox -wangdaye.com.geometricweather.R$id: int never -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableLeftCompat -okhttp3.Cookie: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.weather.Weather: Weather(wangdaye.com.geometricweather.common.basic.models.weather.Base,wangdaye.com.geometricweather.common.basic.models.weather.Current,wangdaye.com.geometricweather.common.basic.models.weather.History,java.util.List,java.util.List,java.util.List,java.util.List) -cyanogenmod.weather.CMWeatherManager: android.content.Context mContext -okhttp3.internal.http2.Http2Writer: void headers(boolean,int,java.util.List) -androidx.appcompat.R$color: int abc_tint_default -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_subtitleTextStyle -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setProvince(java.lang.String) -io.reactivex.internal.util.EmptyComponent -com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_900 -androidx.appcompat.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -androidx.constraintlayout.widget.R$styleable: int[] RecycleListView -cyanogenmod.app.CustomTile$ExpandedStyle$1: CustomTile$ExpandedStyle$1() -androidx.fragment.app.FragmentManagerState: android.os.Parcelable$Creator CREATOR -okhttp3.internal.http1.Http1Codec: void cancel() -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -com.bumptech.glide.Registry$MissingComponentException -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_toRightOf -james.adaptiveicon.R$color: int bright_foreground_material_light -io.reactivex.Observable: io.reactivex.Observable concatArrayEager(int,int,io.reactivex.ObservableSource[]) -androidx.appcompat.R$styleable: int FontFamily_fontProviderPackage -androidx.constraintlayout.widget.R$id: int action_bar -com.google.android.material.R$attr: int drawableLeftCompat -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -androidx.vectordrawable.R$drawable: int notification_bg_low_pressed -androidx.core.R$color -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_gradientRadius -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: long index -com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_20 -com.google.android.material.R$styleable: int ConstraintSet_android_pivotX -androidx.work.InputMerger: InputMerger() -wangdaye.com.geometricweather.R$attr: int hintEnabled -androidx.loader.R$drawable: int notification_bg_low_normal -com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$attr: int cpv_alphaChannelVisible -wangdaye.com.geometricweather.R$id: int container_main_first_card_header -wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_focused_alpha -androidx.preference.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_ICONS -androidx.preference.R$drawable: int abc_btn_borderless_material -androidx.viewpager.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings() -com.bumptech.glide.integration.okhttp.R$id: int line3 -androidx.appcompat.view.menu.CascadingMenuPopup -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: double Value -androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionDuration(int) -com.google.gson.internal.LazilyParsedNumber: java.lang.String toString() -wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog_title -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setAqiText(java.lang.String) -android.didikee.donate.R$drawable: int notification_template_icon_low_bg -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.turingtechnologies.materialscrollbar.R$attr: int tabGravity -retrofit2.BuiltInConverters$VoidResponseBodyConverter: BuiltInConverters$VoidResponseBodyConverter() -com.google.android.material.R$dimen: int mtrl_calendar_year_vertical_padding -androidx.activity.R$dimen: int compat_control_corner_material -androidx.preference.R$style: int Widget_AppCompat_TextView -androidx.preference.R$style: int Base_Widget_AppCompat_Spinner_Underlined -cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setPosition(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: AccuCurrentResult$WindGust$Speed$Metric() -wangdaye.com.geometricweather.R$attr: int layout_constraintCircle -com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getEndIconDrawable() -wangdaye.com.geometricweather.db.entities.HourlyEntity: int getTemperature() -androidx.appcompat.R$attr: int ttcIndex -com.bumptech.glide.integration.okhttp.R$string: R$string() -com.google.android.material.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String unitId -com.jaredrummler.android.colorpicker.R$id: int wrap_content -wangdaye.com.geometricweather.R$attr: int dialogCornerRadius -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -androidx.preference.R$attr: int textAppearanceListItemSecondary -com.google.android.material.R$style: int Theme_MaterialComponents_NoActionBar -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.StreamAllocation streamAllocation -androidx.appcompat.widget.AppCompatEditText: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -androidx.preference.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -io.reactivex.internal.util.VolatileSizeArrayList: int size() -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory LOW -androidx.work.NetworkType: androidx.work.NetworkType valueOf(java.lang.String) -android.didikee.donate.R$styleable: int AppCompatTheme_colorAccent -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_black -androidx.recyclerview.R$attr: int stackFromEnd -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: double lat -cyanogenmod.profiles.ConnectionSettings: int getConnectionId() -com.turingtechnologies.materialscrollbar.R$dimen: int notification_top_pad -com.google.android.material.timepicker.TimeModel: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void dispose() -cyanogenmod.themes.IThemeService$Stub: android.os.IBinder asBinder() -io.reactivex.internal.operators.observable.ObservableReplay$Node: java.lang.Object value -wangdaye.com.geometricweather.R$id: int icon_group -james.adaptiveicon.R$color: int material_grey_600 -wangdaye.com.geometricweather.R$id: int material_value_index -androidx.appcompat.view.menu.ListMenuItemView: ListMenuItemView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context) -james.adaptiveicon.R$styleable: int PopupWindow_android_popupBackground -okio.Timeout: okio.Timeout deadline(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$attr: int extendMotionSpec -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState SETUP -androidx.lifecycle.ViewModel -okio.RealBufferedSink: okio.BufferedSink writeShort(int) -androidx.appcompat.R$color: int abc_decor_view_status_guard_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_70 -james.adaptiveicon.R$attr: int textAppearanceListItemSecondary -com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_android_background -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Title -okhttp3.Headers: Headers(okhttp3.Headers$Builder) -wangdaye.com.geometricweather.db.entities.HourlyEntity: long time -com.google.android.material.R$styleable: int Slider_android_value -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginEnd -wangdaye.com.geometricweather.R$color: int darkPrimary_3 -com.google.android.material.R$styleable: int[] TextInputEditText -wangdaye.com.geometricweather.R$color: int lightPrimary_3 -wangdaye.com.geometricweather.R$color: int material_slider_thumb_color -wangdaye.com.geometricweather.R$attr: int tabPadding -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_transitionEasing -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatImageView -wangdaye.com.geometricweather.R$color: int material_timepicker_button_stroke -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult -wangdaye.com.geometricweather.R$drawable: int notif_temp_37 -wangdaye.com.geometricweather.R$styleable: int MaterialButton_cornerRadius -com.turingtechnologies.materialscrollbar.CustomIndicator: int getIndicatorWidth() -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: long serialVersionUID -wangdaye.com.geometricweather.R$layout: int preference_widget_switch_compat -okhttp3.Protocol: okhttp3.Protocol H2_PRIOR_KNOWLEDGE -wangdaye.com.geometricweather.R$layout: int design_bottom_navigation_item -androidx.preference.R$layout: int abc_action_menu_layout -cyanogenmod.app.StatusBarPanelCustomTile$1: java.lang.Object[] newArray(int) -com.xw.repo.bubbleseekbar.R$attr: int buttonStyle -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.appcompat.R$dimen: int tooltip_vertical_padding -com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuView -androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context) -androidx.lifecycle.ClassesInfoCache$CallbackInfo: void invokeMethodsForEvent(java.util.List,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int ActionBar_logo -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Co -com.google.android.material.R$color: int abc_background_cache_hint_selector_material_dark -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$id: int unlabeled -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec codec -com.jaredrummler.android.colorpicker.R$dimen: int hint_alpha_material_light -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableStart -androidx.core.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_default -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModePasteDrawable -androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_begin -retrofit2.CompletableFutureCallAdapterFactory: retrofit2.CallAdapter$Factory INSTANCE -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitation -com.google.android.material.R$style: int Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator TOUCHSCREEN_GESTURE_HAPTIC_FEEDBACK_VALIDATOR -wangdaye.com.geometricweather.R$drawable: int notif_temp_7 -androidx.lifecycle.ComputableLiveData$3: void run() -com.google.android.material.R$styleable: int FontFamilyFont_android_ttcIndex -com.google.android.material.R$styleable: int LinearLayoutCompat_android_baselineAligned -cyanogenmod.themes.ThemeManager: java.util.Set mProcessingListeners -com.google.android.material.bottomappbar.BottomAppBar: void setFabAnimationMode(int) -androidx.drawerlayout.R$id: int notification_main_column -androidx.core.R$id: int accessibility_custom_action_7 -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabInlineLabel -androidx.viewpager2.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.db.entities.MinutelyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_PULSE_VALIDATOR -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date moonsetTime -io.reactivex.disposables.RunnableDisposable -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.util.ErrorMode errorMode -androidx.appcompat.widget.AppCompatImageView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -androidx.appcompat.R$style: int Widget_AppCompat_TextView -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ListView_DropDown -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Title -com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_margin -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView_DropDown -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Settings peerSettings -androidx.coordinatorlayout.R$id: int italic -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_height -com.xw.repo.bubbleseekbar.R$attr: int windowFixedHeightMajor -android.didikee.donate.R$dimen: int abc_dialog_title_divider_material -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object getKey(java.lang.Object) -com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeTopLeft -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display4 -cyanogenmod.weather.CMWeatherManager: int lookupCity(java.lang.String,cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener) -androidx.constraintlayout.widget.R$id: int easeInOut -retrofit2.RequestFactory: RequestFactory(retrofit2.RequestFactory$Builder) -wangdaye.com.geometricweather.R$layout: int preference_category -androidx.drawerlayout.R$id: int info -retrofit2.Retrofit: java.util.List converterFactories -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Spinner -androidx.preference.R$id: int search_bar -androidx.vectordrawable.animated.R$id: int text -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -cyanogenmod.providers.CMSettings$Secure: java.lang.String LIVE_LOCK_SCREEN_ENABLED -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Menu -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: ChineseCityEntityDao(org.greenrobot.greendao.internal.DaoConfig) -cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderService$Stub mBinder -com.google.android.material.R$styleable: int[] StateListDrawable -com.xw.repo.bubbleseekbar.R$color: int secondary_text_default_material_light -androidx.vectordrawable.R$styleable: int GradientColor_android_startColor -com.xw.repo.BubbleSeekBar: void setCustomSectionTextArray(com.xw.repo.BubbleSeekBar$CustomSectionTextArray) -androidx.hilt.work.R$id: int notification_main_column_container -android.didikee.donate.R$style: int Widget_AppCompat_SeekBar_Discrete -james.adaptiveicon.R$styleable: int AppCompatTheme_imageButtonStyle -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundTintMode -cyanogenmod.app.Profile$ExpandedDesktopMode: int ENABLE -com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.util.SparseArray getBadgeDrawables() -androidx.appcompat.R$id: int uniform -wangdaye.com.geometricweather.R$attr: int region_heightLessThan -wangdaye.com.geometricweather.R$string: int wind_1 -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -com.xw.repo.bubbleseekbar.R$attr: int thumbTint -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_max -com.google.android.material.R$dimen: int material_clock_hand_center_dot_radius -com.turingtechnologies.materialscrollbar.R$id: int text -androidx.cardview.R$styleable: int CardView_cardUseCompatPadding -com.google.android.material.R$attr: int maxVelocity -io.reactivex.internal.util.NotificationLite$SubscriptionNotification: long serialVersionUID -androidx.appcompat.widget.Toolbar: int getTitleMarginEnd() -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Snackbar_FullWidth -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintAnimationEnabled -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_selected -com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_android_entryValues -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.disposables.Disposable upstream -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_134 -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getDefaultHintTextColor() -wangdaye.com.geometricweather.R$styleable: int ListPreference_useSimpleSummaryProvider -retrofit2.OkHttpCall: boolean isCanceled() -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_PopupMenu -retrofit2.converter.gson.GsonRequestBodyConverter: okhttp3.MediaType MEDIA_TYPE -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String dept -org.greenrobot.greendao.AbstractDao: java.lang.Object loadUniqueAndCloseCursor(android.database.Cursor) -wangdaye.com.geometricweather.R$styleable: int[] ColorPickerView -androidx.appcompat.resources.R$id: int icon -androidx.appcompat.R$style: int Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric Metric -com.xw.repo.bubbleseekbar.R$attr: int actionModeStyle -cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getProfile(java.util.UUID) -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -androidx.preference.R$interpolator -androidx.lifecycle.Lifecycling: java.lang.String getAdapterName(java.lang.String) -com.google.android.material.button.MaterialButtonToggleGroup: int getLastVisibleChildIndex() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setDesc(java.lang.String) -androidx.preference.R$attr: int subtitleTextColor -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ListPopupWindow -com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_layout -okio.Buffer: java.lang.String readUtf8(long) -wangdaye.com.geometricweather.R$attr: int helperTextEnabled -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getVibrateMode() -com.google.android.material.R$styleable: int Chip_chipIconSize -okhttp3.internal.http2.Hpack: int PREFIX_6_BITS -com.google.android.material.R$id: int notification_main_column -android.didikee.donate.R$attr: int listDividerAlertDialog -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() -okio.GzipSource: void close() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_selectableItemBackground -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource CN -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_SHOW_BATTERY_PERCENT -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getDensityText(android.content.Context,float) -androidx.preference.R$dimen: int abc_search_view_preferred_height -androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Light -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_27 -com.google.android.material.R$layout: int abc_action_mode_bar -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_translation_z_pressed -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_title -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconPadding -com.jaredrummler.android.colorpicker.R$attr: int srcCompat -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplBase: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_64 -wangdaye.com.geometricweather.R$dimen: int widget_design_title_text_size -com.google.android.material.R$attr: int defaultQueryHint -com.google.android.material.R$color: int cardview_light_background -androidx.appcompat.R$styleable: int SearchView_queryBackground -io.reactivex.internal.util.NotificationLite$SubscriptionNotification: org.reactivestreams.Subscription upstream -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableEndCompat -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet,int) -androidx.lifecycle.extensions.R$dimen -wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -androidx.constraintlayout.widget.R$attr: int windowMinWidthMajor -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getShortDate(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_menuCategory -androidx.appcompat.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$attr: int toolbarNavigationButtonStyle -androidx.preference.R$layout: int select_dialog_singlechoice_material -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableTop -com.jaredrummler.android.colorpicker.R$styleable: int[] RecyclerView -james.adaptiveicon.R$style: int Widget_AppCompat_Button_Borderless -com.google.android.material.textfield.TextInputLayout: void setHintInternal(java.lang.CharSequence) -com.turingtechnologies.materialscrollbar.R$attr: int titleTextStyle -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: long beginTime -okhttp3.internal.http.HttpHeaders: boolean varyMatches(okhttp3.Response,okhttp3.Headers,okhttp3.Request) -okio.RealBufferedSink: void write(okio.Buffer,long) -androidx.work.R$id: int accessibility_custom_action_11 -com.google.android.material.appbar.CollapsingToolbarLayout: int getMaxLines() -wangdaye.com.geometricweather.R$layout: int widget_clock_day_vertical -com.google.android.material.R$style: int ShapeAppearanceOverlay_DifferentCornerSize -com.bumptech.glide.R$styleable: int FontFamilyFont_font -android.didikee.donate.R$drawable: int abc_btn_check_to_on_mtrl_000 -android.didikee.donate.R$attr: int actionOverflowMenuStyle -android.didikee.donate.R$layout: int abc_list_menu_item_radio -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver parent -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginTop -androidx.coordinatorlayout.widget.CoordinatorLayout: int getSuggestedMinimumHeight() -okhttp3.internal.http.BridgeInterceptor: okhttp3.CookieJar cookieJar -androidx.work.impl.background.systemalarm.RescheduleReceiver -androidx.preference.R$attr: int colorControlNormal +com.google.android.material.R$color: int design_dark_default_color_on_secondary +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onSubscribe(io.reactivex.disposables.Disposable) +okhttp3.internal.connection.RouteSelector$Selection: java.util.List getAll() +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_medium_material +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listMenuViewStyle +com.google.android.material.R$attr: int actionBarDivider +io.reactivex.internal.util.AtomicThrowable: long serialVersionUID +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean delayErrors +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_2 +com.jaredrummler.android.colorpicker.R$layout: R$layout() +james.adaptiveicon.R$attr: int tickMarkTintMode +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context,android.util.AttributeSet,int) +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +com.google.android.material.R$dimen: int cardview_compat_inset_shadow +com.google.android.material.R$attr: int displayOptions +okhttp3.internal.http2.Http2Connection$7: okhttp3.internal.http2.Http2Connection this$0 +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver(io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver) +com.google.android.material.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +androidx.lifecycle.Transformations$1 +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder fragment(java.lang.String) +com.google.android.material.R$styleable: int MenuItem_android_onClick +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_12 +io.reactivex.internal.subscribers.StrictSubscriber: StrictSubscriber(org.reactivestreams.Subscriber) +okhttp3.HttpUrl$Builder: java.lang.String scheme +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric +okhttp3.internal.ws.RealWebSocket: okhttp3.WebSocketListener listener +com.bumptech.glide.load.engine.CallbackException: long serialVersionUID +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindDegree +androidx.preference.R$styleable: int AlertDialog_singleChoiceItemLayout +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_divider +androidx.recyclerview.R$id: int action_text +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric +okhttp3.internal.http2.Http2Stream: java.util.Deque headersQueue +retrofit2.ParameterHandler$Part +androidx.preference.R$attr: int actionModeCloseDrawable +james.adaptiveicon.R$layout: int abc_list_menu_item_radio +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_commitIcon +com.jaredrummler.android.colorpicker.ColorPanelView: void setBorderColor(int) +androidx.viewpager2.R$attr: int spanCount +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTint +okhttp3.internal.Util: okhttp3.ResponseBody EMPTY_RESPONSE +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeAppearance +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setPrecipitation(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean) +com.google.android.material.R$color: int design_default_color_secondary +wangdaye.com.geometricweather.R$attr: int startIconTintMode +androidx.viewpager.R$id: int italic +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle CIRCULAR +io.reactivex.Observable: io.reactivex.Observable doOnLifecycle(io.reactivex.functions.Consumer,io.reactivex.functions.Action) +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onComplete() +cyanogenmod.app.IPartnerInterface$Stub: IPartnerInterface$Stub() +com.google.android.material.datepicker.PickerFragment +okio.Buffer$1: void close() +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_horizontal_padding +com.google.android.material.tabs.TabLayout: void setTabRippleColorResource(int) +com.google.android.material.R$styleable: int KeyAttribute_android_rotationX +com.google.android.material.R$color: int secondary_text_disabled_material_dark +com.google.android.material.R$dimen: int design_bottom_navigation_text_size +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder dispatcher(okhttp3.Dispatcher) +com.google.android.material.R$dimen: int abc_search_view_preferred_width +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List minutelyEntityList +com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getProgressDrawable() +wangdaye.com.geometricweather.R$attr: int checkedIconEnabled +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String co +com.google.android.material.R$attr: int colorPrimary +androidx.vectordrawable.animated.R$dimen: int notification_small_icon_size_as_large +wangdaye.com.geometricweather.R$styleable: int Constraint_pivotAnchor +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.internal.disposables.ArrayCompositeDisposable resources +wangdaye.com.geometricweather.R$layout: int container_alert_display_view +androidx.preference.R$styleable: int Toolbar_buttonGravity +com.xw.repo.bubbleseekbar.R$color: int colorPrimaryDark +androidx.drawerlayout.R$integer: R$integer() +androidx.preference.R$style: int Widget_AppCompat_ProgressBar +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollVerticalTrackDrawable +com.google.android.material.R$string: int material_clock_toggle_content_description +androidx.preference.R$id: int tag_screen_reader_focusable +okhttp3.ConnectionPool$1: ConnectionPool$1(okhttp3.ConnectionPool) +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor GREY +android.didikee.donate.R$styleable: int ActionBar_height +wangdaye.com.geometricweather.R$style: int Widget_Design_BottomNavigationView +com.jaredrummler.android.colorpicker.R$attr: int defaultQueryHint +wangdaye.com.geometricweather.settings.activities.DailyTrendDisplayManageActivity +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonRiseDate +com.turingtechnologies.materialscrollbar.R$integer: int mtrl_btn_anim_delay_ms +androidx.constraintlayout.widget.R$styleable: int Toolbar_popupTheme +okhttp3.RequestBody$1: okhttp3.MediaType contentType() +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginEnd +cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri APPLIED_URI +androidx.preference.R$style: int Base_Widget_AppCompat_ProgressBar +androidx.activity.R$styleable: int GradientColor_android_centerY +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableTop +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Body2 +androidx.recyclerview.widget.GridLayoutManager: GridLayoutManager(android.content.Context,android.util.AttributeSet,int,int) +com.bumptech.glide.load.ImageHeaderParser$ImageType +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_searchHintIcon +androidx.appcompat.R$attr: int actionMenuTextColor +androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_android_alpha +androidx.swiperefreshlayout.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getProvince() +androidx.hilt.lifecycle.R$dimen +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: ObservableRepeatWhen$RepeatWhenObserver(io.reactivex.Observer,io.reactivex.subjects.Subject,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String datetime +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +cyanogenmod.weather.RequestInfo: java.lang.String toString() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_gradientRadius +androidx.constraintlayout.widget.R$color: int primary_material_dark +wangdaye.com.geometricweather.R$id: int item_card_display_container +androidx.viewpager2.R$id: R$id() +cyanogenmod.providers.CMSettings$DiscreteValueValidator +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCountryId +com.turingtechnologies.materialscrollbar.R$attr: int showMotionSpec +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver otherObserver +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +androidx.viewpager2.R$id: int line3 +com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context) +james.adaptiveicon.R$styleable: int TextAppearance_android_shadowColor +wangdaye.com.geometricweather.R$color: int design_dark_default_color_surface +wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_night_foreground +androidx.appcompat.R$styleable: int View_paddingStart +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void removeCustomTileWithTag(java.lang.String,java.lang.String,int,int) +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer windChillTemperature +wangdaye.com.geometricweather.db.entities.HourlyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int ISOLATED_THUNDERSHOWERS +wangdaye.com.geometricweather.R$styleable: int Chip_chipSurfaceColor +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Tooltip +wangdaye.com.geometricweather.db.entities.DailyEntity: void setSo2(java.lang.Float) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial Imperial +com.google.android.material.R$id: int checkbox +androidx.swiperefreshlayout.R$id: int action_divider +wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_right_black_24dp +okhttp3.ResponseBody$1: ResponseBody$1(okhttp3.MediaType,long,okio.BufferedSource) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorButtonNormal +com.google.android.material.R$attr: int progressBarStyle +okhttp3.Dispatcher: int maxRequestsPerHost +wangdaye.com.geometricweather.R$style: int Platform_V25_AppCompat +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_28 +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onNext(java.lang.Object) +androidx.legacy.coreutils.R$id: int actions +cyanogenmod.externalviews.IExternalViewProvider$Stub: android.os.IBinder asBinder() +androidx.lifecycle.extensions.R$id: int tag_accessibility_pane_title +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.functions.Consumer disposer +com.google.android.material.card.MaterialCardView: void setMaxCardElevation(float) +com.google.android.material.R$attr: int startIconDrawable +wangdaye.com.geometricweather.R$string: int mold +androidx.preference.R$anim: int abc_fade_out +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarWidgetTheme +androidx.preference.R$id: int text +com.google.gson.stream.JsonReader$1 +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position +org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType None +okhttp3.internal.cache.DiskLruCache$Entry: java.io.File[] dirtyFiles +okhttp3.HttpUrl: java.lang.String scheme +org.greenrobot.greendao.AbstractDao: long insertOrReplace(java.lang.Object) +androidx.drawerlayout.R$id: int right_side +wangdaye.com.geometricweather.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +io.reactivex.Observable: io.reactivex.Observable defaultIfEmpty(java.lang.Object) +cyanogenmod.app.suggest.IAppSuggestManager$Stub: java.lang.String DESCRIPTOR +com.google.android.material.R$attr: int buttonBarStyle +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Title_Inverse +androidx.constraintlayout.widget.R$styleable: int Constraint_android_orientation +androidx.appcompat.widget.ActivityChooserView$InnerLayout +io.reactivex.Observable: io.reactivex.Observable window(long) +android.didikee.donate.R$id: int scrollIndicatorUp +okhttp3.internal.http.HttpHeaders: boolean hasVaryAll(okhttp3.Response) +android.didikee.donate.R$attr: int tickMark +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_SIGNAL_ICON +androidx.appcompat.R$styleable: int ActionMode_background +androidx.appcompat.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: void setNotice(java.lang.String) +cyanogenmod.externalviews.KeyguardExternalView$9: cyanogenmod.externalviews.KeyguardExternalView this$0 +com.turingtechnologies.materialscrollbar.R$attr: int tooltipText +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_left_mtrl_light +wangdaye.com.geometricweather.R$attr: int chipSpacingHorizontal +okhttp3.CertificatePinner$Pin: java.lang.String canonicalHostname +androidx.lifecycle.LiveData$LifecycleBoundObserver: boolean isAttachedTo(androidx.lifecycle.LifecycleOwner) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: void run() +wangdaye.com.geometricweather.R$integer: int mtrl_chip_anim_duration +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: retrofit2.Call call +com.google.android.material.R$integer +androidx.cardview.R$styleable: int CardView_cardElevation +okio.ByteString: byte[] toByteArray() +androidx.lifecycle.EmptyActivityLifecycleCallbacks: EmptyActivityLifecycleCallbacks() +wangdaye.com.geometricweather.R$attr: int tickColorActive +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean isCancelled() +com.google.android.material.R$drawable: int abc_ic_voice_search_api_material +android.didikee.donate.R$layout: int select_dialog_multichoice_material +androidx.cardview.widget.CardView: int getContentPaddingTop() +com.google.android.material.chip.Chip: void setChecked(boolean) +okio.InflaterSource: long read(okio.Buffer,long) +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.lang.reflect.Method checkServerTrusted +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +okio.Timeout +com.google.android.material.R$attr: int elevationOverlayColor +com.bumptech.glide.request.RequestCoordinator$RequestState +okio.BufferedSource: byte[] readByteArray(long) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_0 +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder pingInterval(java.time.Duration) +com.google.android.material.slider.RangeSlider: float getMinSeparation() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onActionModeStarted(android.view.ActionMode) +com.bumptech.glide.integration.okhttp.R$color: int secondary_text_default_material_light +okio.Buffer: long indexOf(byte) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String description +wangdaye.com.geometricweather.R$attr: int backgroundInsetTop +com.jaredrummler.android.colorpicker.R$layout: int abc_search_view +androidx.constraintlayout.widget.R$attr: int content +androidx.appcompat.R$drawable: int btn_radio_on_mtrl +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon +okhttp3.internal.http2.Http2Codec: java.lang.String ENCODING +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: int phenomenonId +androidx.appcompat.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.jaredrummler.android.colorpicker.R$id: int progress_horizontal +androidx.customview.R$attr: int fontStyle +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property SunSetDate +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String brandId +wangdaye.com.geometricweather.R$attr: int actionBarTabTextStyle +androidx.recyclerview.R$attr: int ttcIndex +androidx.constraintlayout.widget.R$dimen: int notification_main_column_padding_top +androidx.constraintlayout.widget.R$attr: int warmth +androidx.core.R$styleable: int ColorStateListItem_alpha com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_imageButtonStyle -androidx.lifecycle.MediatorLiveData$Source: MediatorLiveData$Source(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextColor(android.content.res.ColorStateList) -androidx.lifecycle.extensions.R$styleable -com.turingtechnologies.materialscrollbar.R$id: int chronometer -androidx.appcompat.R$styleable: int SwitchCompat_switchMinWidth -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void boundaryError(io.reactivex.disposables.Disposable,java.lang.Throwable) -com.bumptech.glide.R$dimen: int notification_subtext_size -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType COLOR_TYPE -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean addInner(io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) -cyanogenmod.hardware.CMHardwareManager: java.lang.String readPersistentString(java.lang.String) -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getCityId() -wangdaye.com.geometricweather.R$dimen: int widget_subtitle_text_size -com.jaredrummler.android.colorpicker.R$attr: int reverseLayout -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_RC4_128_MD5 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: long EpochSet -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeSplitBackground -androidx.preference.R$drawable: int abc_dialog_material_background -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderFetchTimeout -cyanogenmod.app.ICMTelephonyManager: void setDataConnectionSelectedOnSub(int) -com.google.android.material.R$styleable: int SearchView_android_maxWidth -com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context) -androidx.appcompat.R$id: int select_dialog_listview -com.jaredrummler.android.colorpicker.R$attr: int fastScrollHorizontalThumbDrawable -cyanogenmod.power.PerformanceManager: cyanogenmod.power.PerformanceManager getInstance(android.content.Context) -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Light -com.google.android.material.textfield.TextInputLayout: void setStartIconTintList(android.content.res.ColorStateList) -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onError(java.lang.Throwable) -androidx.hilt.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.preference.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -okhttp3.internal.connection.RealConnection$1: void close() +com.google.gson.stream.JsonReader: int peekKeyword() +androidx.constraintlayout.widget.R$color: int primary_text_disabled_material_dark +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderFetchStrategy +androidx.fragment.R$id: int accessibility_custom_action_19 +androidx.recyclerview.R$dimen: int notification_small_icon_size_as_large +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.Observer downstream +androidx.preference.R$id: int normal +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onError(java.lang.Throwable) +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +androidx.preference.R$color: int switch_thumb_material_light +androidx.swiperefreshlayout.R$id: int tag_transition_group +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String getFrom() +androidx.appcompat.R$styleable: int Spinner_android_popupBackground +com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Light_Dialog +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String MinutesText +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: boolean active +androidx.preference.R$attr: int dividerPadding +okhttp3.logging.LoggingEventListener: void callStart(okhttp3.Call) +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_closeIcon +com.turingtechnologies.materialscrollbar.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$drawable: int notif_temp_139 +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_descendantFocusability +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER +androidx.activity.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_140 +io.reactivex.Observable: io.reactivex.Observable concatArrayDelayError(io.reactivex.ObservableSource[]) +androidx.work.R$id: int accessibility_action_clickable_span +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState +cyanogenmod.profiles.AirplaneModeSettings: boolean mOverride +okio.RealBufferedSink: okio.BufferedSink write(byte[]) +com.github.rahatarmanahmed.cpv.CircularProgressView: android.graphics.Paint paint +okhttp3.internal.cache.DiskLruCache$3: boolean hasNext() +androidx.appcompat.widget.SearchView: void setInputType(int) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconContentDescription +cyanogenmod.weatherservice.WeatherProviderService: void onConnected() +okio.ByteString: byte[] data +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem +com.google.android.material.slider.BaseSlider: void setActiveThumbIndex(int) +cyanogenmod.app.ProfileGroup$1: cyanogenmod.app.ProfileGroup createFromParcel(android.os.Parcel) +okhttp3.OkHttpClient$Builder: int pingInterval +com.google.android.material.R$attr: int backgroundTintMode +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: float intervalInHour +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: long serialVersionUID +wangdaye.com.geometricweather.R$attr: int tickColor +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_cardForegroundColor +wangdaye.com.geometricweather.R$string: int key_text_color +wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_y_offset_non_touch +okhttp3.internal.Version: Version() +wangdaye.com.geometricweather.R$string: int feedback_not_yet_location +okio.ByteString: okio.ByteString hmacSha1(okio.ByteString) +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundTint +androidx.appcompat.R$layout: int abc_dialog_title_material +okhttp3.ConnectionSpec: okhttp3.CipherSuite[] RESTRICTED_CIPHER_SUITES +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShowMotionSpecResource(int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_android_windowIsFloating +androidx.appcompat.widget.AppCompatAutoCompleteTextView +okhttp3.internal.cache.CacheRequest: okio.Sink body() +okhttp3.Response$Builder: okhttp3.Response$Builder body(okhttp3.ResponseBody) +androidx.drawerlayout.R$id: int italic +wangdaye.com.geometricweather.R$id: int dialog_location_help_locationIcon +io.reactivex.internal.observers.DeferredScalarDisposable +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_transformPivotY +wangdaye.com.geometricweather.R$string: int icon_content_description +com.turingtechnologies.materialscrollbar.R$string: int appbar_scrolling_view_behavior +androidx.constraintlayout.widget.R$attr: int layout_constraintRight_toLeftOf +com.jaredrummler.android.colorpicker.R$attr: int tooltipFrameBackground +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_today_stroke +android.didikee.donate.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_51 +james.adaptiveicon.R$attr: int dropdownListPreferredItemHeight +com.google.android.material.radiobutton.MaterialRadioButton: android.content.res.ColorStateList getMaterialThemeColorsTintList() +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderFetchStrategy +com.google.android.material.R$drawable: int abc_vector_test +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton +cyanogenmod.externalviews.KeyguardExternalView$2: void onDetachedFromWindow() +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_UV_INDEX +cyanogenmod.app.CustomTileListenerService: java.lang.String TAG +james.adaptiveicon.R$style: int Platform_Widget_AppCompat_Spinner +com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context) +androidx.preference.R$attr: int actionBarStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void cancelRequest(int) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SearchView +com.jaredrummler.android.colorpicker.R$attr: int fontProviderFetchTimeout +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_USER_KEY +androidx.appcompat.R$styleable: int ActionBar_backgroundStacked +okhttp3.internal.Util: java.nio.charset.Charset UTF_32_BE +wangdaye.com.geometricweather.R$attr: int flow_horizontalStyle +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: boolean eager +wangdaye.com.geometricweather.R$attr: int actionModeShareDrawable +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +okhttp3.internal.http2.Http2Connection$PingRunnable: int payload1 +com.turingtechnologies.materialscrollbar.DragScrollBar: DragScrollBar(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$attr: int helperTextEnabled +retrofit2.RequestBuilder: okhttp3.MediaType contentType +androidx.customview.R$dimen: int notification_small_icon_background_padding +androidx.appcompat.widget.LinearLayoutCompat: void setShowDividers(int) +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCloseDrawable +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +com.xw.repo.bubbleseekbar.R$dimen: int abc_control_inset_material +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Menu +androidx.preference.R$drawable: int abc_ab_share_pack_mtrl_alpha +com.google.android.material.R$id: int alertTitle +androidx.preference.R$anim: int abc_slide_out_bottom +androidx.vectordrawable.animated.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setSnowPrecipitationProbability(java.lang.Float) +com.google.android.material.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_min +wangdaye.com.geometricweather.R$drawable: int ic_about +okhttp3.internal.ws.RealWebSocket$Streams: okio.BufferedSink sink +retrofit2.DefaultCallAdapterFactory +com.google.android.material.R$styleable: int AppCompatTextView_drawableEndCompat +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type getRawType() +com.google.android.material.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity +com.google.android.material.R$styleable: int KeyTimeCycle_android_scaleX +com.google.android.material.appbar.ViewOffsetBehavior: ViewOffsetBehavior(android.content.Context,android.util.AttributeSet) +androidx.hilt.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_corner +cyanogenmod.app.IProfileManager: boolean setActiveProfileByName(java.lang.String) +androidx.recyclerview.R$attr: int fontProviderAuthority +androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotationY +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.String Code +okhttp3.ConnectionSpec$Builder +androidx.constraintlayout.widget.R$attr: int textAppearanceListItemSmall +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_BottomSheetDialog +androidx.hilt.R$id: int accessibility_custom_action_29 +com.turingtechnologies.materialscrollbar.DragScrollBar: DragScrollBar(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$string: int settings_notification_hide_icon_on +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.CMStatusBarManager sCMStatusBarManagerInstance +com.google.android.material.slider.Slider: Slider(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$dimen: int large_title_text_size +androidx.hilt.R$anim: int fragment_fade_enter +androidx.recyclerview.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +androidx.dynamicanimation.R$attr: int ttcIndex +okhttp3.internal.http2.Http2Connection: boolean $assertionsDisabled +james.adaptiveicon.R$style +wangdaye.com.geometricweather.R$id: int item_card_display_title +androidx.vectordrawable.R$styleable: R$styleable() +wangdaye.com.geometricweather.settings.dialogs.AnimatableIconDialog +com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_text_padding_right +com.google.android.material.R$styleable: int Constraint_layout_constraintStart_toEndOf +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void setDisposable(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: int phenomenoMaxColorId +okhttp3.internal.http2.Http2Writer: void close() +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setZenModeWithDuration +com.xw.repo.bubbleseekbar.R$drawable: int tooltip_frame_dark +com.jaredrummler.android.colorpicker.R$attr: int spinBars +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SUNNY +android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +com.turingtechnologies.materialscrollbar.R$id: int activity_chooser_view_content +androidx.legacy.coreutils.R$id: int notification_main_column +okhttp3.RealCall$AsyncCall: void executeOn(java.util.concurrent.ExecutorService) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabBackground +com.google.android.material.R$string: int mtrl_picker_day_of_week_column_header +okhttp3.logging.LoggingEventListener: void connectEnd(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol) +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_normal +okio.Pipe: okio.Source source() +okhttp3.internal.http2.Http2Reader$ContinuationSource: okio.BufferedSource source +androidx.constraintlayout.widget.R$id: int add +androidx.appcompat.widget.FitWindowsFrameLayout: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) +androidx.appcompat.view.menu.MenuPopupHelper +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String from +android.didikee.donate.R$attr: int barLength +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableBottom +com.google.android.material.R$attr: int subtitleTextAppearance +androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context,android.util.AttributeSet,int) +com.bumptech.glide.Priority: com.bumptech.glide.Priority NORMAL +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cw +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: float getProgress() +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_disabled_material_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setStatus(int) +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: void onLiveLockScreenChanged(cyanogenmod.app.LiveLockScreenInfo) +androidx.constraintlayout.widget.R$color: int bright_foreground_disabled_material_dark +androidx.preference.R$dimen: int notification_action_icon_size +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +com.google.android.material.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +androidx.core.os.CancellationSignal +wangdaye.com.geometricweather.R$string: int feedback_check_location_permission +androidx.constraintlayout.widget.R$styleable: int[] OnClick +android.didikee.donate.R$styleable: int MenuItem_tooltipText +androidx.preference.R$dimen: int abc_action_bar_elevation_material +wangdaye.com.geometricweather.R$drawable: int notif_temp_49 +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Call clone() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List probabilityForecast +androidx.fragment.R$attr +androidx.constraintlayout.widget.R$attr: int saturation +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog +com.jaredrummler.android.colorpicker.R$integer +com.google.android.material.R$styleable: int Chip_chipMinTouchTargetSize +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_transitionEasing +james.adaptiveicon.R$styleable: int Toolbar_titleTextAppearance +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onPause +androidx.fragment.R$id: int accessibility_custom_action_3 +androidx.constraintlayout.widget.R$attr: int region_heightLessThan +com.google.android.material.R$attr: int fabCradleRoundedCornerRadius +com.google.android.material.R$style: int TextAppearance_Compat_Notification_Title +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void drain() +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onComplete() +com.turingtechnologies.materialscrollbar.R$styleable: int[] Toolbar +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType COLOR_DRAWABLE_TYPE +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.Integer getAngle() +androidx.appcompat.R$style: int Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.util.Date date +cyanogenmod.app.ProfileGroup: ProfileGroup(java.util.UUID,boolean) +wangdaye.com.geometricweather.R$color: int background_material_dark +androidx.drawerlayout.R$dimen: int notification_right_icon_size +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getBackgroundDrawable() +androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentWidth +james.adaptiveicon.R$id: int submit_area +okhttp3.internal.connection.RealConnection: java.net.Socket socket +wangdaye.com.geometricweather.settings.dialogs.MinimalIconDialog +james.adaptiveicon.R$drawable: int abc_scrubber_track_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int Slider_thumbColor +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver +okhttp3.MultipartBody: okio.ByteString boundary +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_121 +wangdaye.com.geometricweather.R$id: int item_tag +cyanogenmod.providers.CMSettings$System$3: boolean validate(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Title +cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: java.lang.Integer proba6H +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance +androidx.constraintlayout.widget.R$attr: int editTextColor +james.adaptiveicon.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +wangdaye.com.geometricweather.R$drawable: int widget_day +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.google.android.material.R$id: int month_navigation_next +wangdaye.com.geometricweather.R$integer: int abc_config_activityShortDur +wangdaye.com.geometricweather.R$string: int settings_title_temperature_unit +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_PopupMenu +com.google.android.material.R$drawable: int abc_item_background_holo_dark +com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabBarStyle +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_radius_on_dragging +com.bumptech.glide.R$drawable: int notification_template_icon_low_bg +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo build() +com.google.android.material.R$attr: int bottomSheetDialogTheme +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul12H +wangdaye.com.geometricweather.R$layout: int widget_clock_day_tile +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String EnglishName +com.google.android.material.R$styleable: int ConstraintSet_android_maxHeight +androidx.preference.R$id: int uniform +androidx.coordinatorlayout.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.R$attr: int crossfade +wangdaye.com.geometricweather.R$drawable: int notif_temp_95 +android.didikee.donate.R$styleable: int MenuView_android_verticalDivider +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf +okhttp3.Cookie: boolean equals(java.lang.Object) +androidx.preference.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_SearchView +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActivityChooserView +androidx.appcompat.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$color: int abc_background_cache_hint_selector_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int[] DrawerArrowToggle +wangdaye.com.geometricweather.R$id: int chip_group +androidx.preference.R$styleable: int GradientColor_android_endColor +retrofit2.KotlinExtensions: java.lang.Object awaitResponse(retrofit2.Call,kotlin.coroutines.Continuation) +cyanogenmod.platform.Manifest$permission: java.lang.String READ_DATAUSAGE +com.google.android.material.R$styleable: int KeyPosition_drawPath +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: AccuCurrentResult$Precip1hr$Metric() +com.google.android.material.R$styleable: int TextInputLayout_counterEnabled +android.didikee.donate.R$drawable: int notification_bg_low +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: boolean validate(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.R$color: int primary_material_dark +james.adaptiveicon.R$styleable: int View_android_focusable +androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$layout: int design_navigation_menu_item +wangdaye.com.geometricweather.R$dimen: int cpv_item_size +okhttp3.internal.http1.Http1Codec$ChunkedSource: okhttp3.HttpUrl url +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.lang.Object invoke(java.lang.Object,java.lang.reflect.Method,java.lang.Object[]) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWindLevel +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.Observer downstream +com.google.android.material.R$id: int topPanel +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle +wangdaye.com.geometricweather.R$layout: int material_textinput_timepicker +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_NOTIF_COUNT +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: AccuCurrentResult$PrecipitationSummary$Past9Hours() +wangdaye.com.geometricweather.R$string: int settings_category_notification +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getShrinkMotionSpec() +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarPopupTheme +com.google.android.material.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeBottomRight +cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String CITY_NAME +com.google.android.material.R$styleable: int ProgressIndicator_linearSeamless +androidx.preference.R$style: int Theme_AppCompat_Light_Dialog_Alert +io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String,int,boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setPubTime(java.util.Date) +androidx.fragment.R$styleable: int[] FontFamily +androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMarkTintMode +wangdaye.com.geometricweather.main.dialogs.LocationPermissionStatementDialog +androidx.appcompat.R$attr: int autoSizeTextType +androidx.hilt.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.UV getUV() +androidx.hilt.R$styleable: int Fragment_android_tag +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setZenMode +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDataConnectionState(boolean) +wangdaye.com.geometricweather.R$string: int follow_system +james.adaptiveicon.R$attr: int activityChooserViewStyle +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void again(java.lang.Object) +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type VERTICAL_DIMENSION +androidx.appcompat.R$styleable: int PopupWindowBackgroundState_state_above_anchor +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +cyanogenmod.weather.CMWeatherManager$RequestStatus: CMWeatherManager$RequestStatus() +com.google.android.material.R$style: int TestStyleWithLineHeightAppearance +wangdaye.com.geometricweather.R$styleable: int[] ActionMenuView +wangdaye.com.geometricweather.R$color: int abc_primary_text_material_light +okio.Timeout: long deadlineNanoTime +androidx.appcompat.view.menu.CascadingMenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +wangdaye.com.geometricweather.R$styleable: int Preference_android_layout +wangdaye.com.geometricweather.R$styleable: int SearchView_queryBackground +com.google.android.material.textfield.TextInputLayout: void setHintTextColor(android.content.res.ColorStateList) +androidx.preference.R$styleable: int SearchView_searchHintIcon +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_y_offset_touch +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void errorAll(io.reactivex.Observer) +com.turingtechnologies.materialscrollbar.R$attr: int subtitle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_99 +cyanogenmod.app.Profile$LockMode +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getDensityVoice(android.content.Context,float) +okio.Buffer: okio.Buffer$UnsafeCursor readAndWriteUnsafe(okio.Buffer$UnsafeCursor) +androidx.activity.R$id: int accessibility_custom_action_1 +androidx.legacy.coreutils.R$styleable: int GradientColorItem_android_offset +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_AUTO_OUTDOOR_MODE +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_barColor +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginTop +androidx.legacy.coreutils.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_47 +android.didikee.donate.R$id: int screen +androidx.appcompat.R$attr: int homeAsUpIndicator +wangdaye.com.geometricweather.R$dimen: R$dimen() +okhttp3.internal.http2.Http2: byte FLAG_COMPRESSED +okhttp3.internal.http2.Http2Stream: void receiveFin() +androidx.constraintlayout.widget.R$attr: int actionOverflowMenuStyle +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean isDaylight() +wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status valueOf(java.lang.String) +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Today +com.xw.repo.bubbleseekbar.R$id: int notification_background +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX() +com.google.android.material.chip.Chip: android.content.res.ColorStateList getRippleColor() +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean delayError +okio.AsyncTimeout$Watchdog: AsyncTimeout$Watchdog() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: android.os.Bundle val$options +wangdaye.com.geometricweather.R$string: int settings_notification_can_be_cleared_on +androidx.appcompat.R$styleable: int[] ActivityChooserView +cyanogenmod.weather.CMWeatherManager$1: void onWeatherServiceProviderChanged(java.lang.String) +com.google.android.material.R$styleable: int AnimatedStateListDrawableItem_android_drawable +okhttp3.internal.ws.WebSocketWriter$FrameSink: int formatOpcode +androidx.lifecycle.extensions.R$layout +com.turingtechnologies.materialscrollbar.R$attr: int iconifiedByDefault +androidx.appcompat.R$styleable: int SwitchCompat_trackTint +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_off_mtrl_alpha +com.turingtechnologies.materialscrollbar.Indicator: void setSizeCustom(int) +wangdaye.com.geometricweather.R$string: int yesterday +wangdaye.com.geometricweather.R$drawable: int ic_gauge +com.jaredrummler.android.colorpicker.R$attr: int fontProviderCerts +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: int TRANSACTION_handles_0 +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_6 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.lang.String pubTime +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +androidx.work.R$id: int accessibility_custom_action_15 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitationProbability +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setCloudCover(java.lang.Integer) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: java.lang.String Hex +cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper mWrapper +wangdaye.com.geometricweather.R$attr: int cornerFamilyBottomLeft +com.jaredrummler.android.colorpicker.R$attr: int windowFixedHeightMajor +okio.Buffer$UnsafeCursor: long resizeBuffer(long) +wangdaye.com.geometricweather.R$id: int scroll +wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetAlertEntityList() +wangdaye.com.geometricweather.R$id: int notification_base +androidx.viewpager2.widget.ViewPager2: androidx.recyclerview.widget.RecyclerView$Adapter getAdapter() +androidx.viewpager.widget.ViewPager: void removeOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_dialogPreferenceStyle +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabText +androidx.fragment.R$styleable: int FragmentContainerView_android_name +cyanogenmod.profiles.ConnectionSettings: java.lang.String EXTRA_NETWORK_MODE +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_weightSum +retrofit2.Retrofit$Builder: java.util.concurrent.Executor callbackExecutor +cyanogenmod.app.Profile: cyanogenmod.profiles.ConnectionSettings getConnectionSettingWithSubId(int) +wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_gitHub +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearStyle +wangdaye.com.geometricweather.R$drawable: int ic_check_circle_green +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient build() +com.google.android.material.badge.BadgeDrawable$SavedState +androidx.appcompat.resources.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String color +com.google.android.material.R$styleable: int MaterialButtonToggleGroup_selectionRequired +james.adaptiveicon.R$id: int text2 +com.jaredrummler.android.colorpicker.R$string: int cpv_custom wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_bottom_padding -com.jaredrummler.android.colorpicker.ColorPreferenceCompat: ColorPreferenceCompat(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_padding_end_material -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState MOVING -com.bumptech.glide.R$string: int status_bar_notification_info_overflow -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme_Dark -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon -com.xw.repo.bubbleseekbar.R$id: int progress_horizontal -wangdaye.com.geometricweather.R$id: int widget_clock_day_time -androidx.constraintlayout.widget.R$dimen: int compat_button_padding_horizontal_material -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.preference.R$styleable: int Preference_enabled -com.google.android.material.R$anim: int design_bottom_sheet_slide_out -okhttp3.internal.http.HttpHeaders: okhttp3.Headers varyHeaders(okhttp3.Headers,okhttp3.Headers) -okhttp3.MultipartBody: byte[] DASHDASH -io.reactivex.Observable: io.reactivex.Observable onTerminateDetach() -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -androidx.preference.R$attr: int fontStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeWetBulbTemperature -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_percent -androidx.activity.R$color: R$color() -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onNext(java.lang.Object) -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState RUNNING -androidx.appcompat.R$styleable: int ActionMode_subtitleTextStyle -androidx.appcompat.resources.R$id: int line1 -okhttp3.internal.http2.Http2Connection$4 -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Connection connection -okhttp3.internal.Util: void closeQuietly(java.net.ServerSocket) -com.xw.repo.bubbleseekbar.R$id: int right_side -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchTextAppearance -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectionSpecs(java.util.List) -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -com.google.android.material.circularreveal.CircularRevealGridLayout: CircularRevealGridLayout(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_header -com.xw.repo.bubbleseekbar.R$attr: int iconTintMode -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary -com.google.android.material.R$attr: int endIconCheckable -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacing -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer degreeDayTemperature -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontStyle -cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mOnClick -androidx.lifecycle.Observer -com.xw.repo.bubbleseekbar.R$id: int icon -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER_X -retrofit2.http.OPTIONS: java.lang.String value() -com.turingtechnologies.materialscrollbar.R$attr: int logoDescription -james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dialog -james.adaptiveicon.R$bool: R$bool() -androidx.vectordrawable.animated.R$dimen -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -androidx.preference.R$id: int notification_background -okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,int,int,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) -cyanogenmod.hardware.ICMHardwareService: boolean registerThermalListener(cyanogenmod.hardware.IThermalListenerCallback) -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle -wangdaye.com.geometricweather.R$color: int abc_decor_view_status_guard -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SPANISH -okhttp3.internal.http2.Http2Reader: okhttp3.internal.http2.Http2Reader$ContinuationSource continuation -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: long getTime() -okhttp3.internal.connection.StreamAllocation$StreamAllocationReference: java.lang.Object callStackTrace -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_text_size -wangdaye.com.geometricweather.R$dimen: int action_bar_size -cyanogenmod.providers.CMSettings$Secure: java.lang.String FEATURE_TOUCH_HOVERING -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_height_material -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.ICMHardwareService getService() -cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri mThumbnailUri -com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_Dialog -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: LocationEntityDao$Properties() -android.didikee.donate.R$attr: int iconifiedByDefault -com.turingtechnologies.materialscrollbar.R$attr: int commitIcon -com.google.android.material.textfield.TextInputLayout: float getHintCollapsedTextHeight() -androidx.preference.R$styleable: int AppCompatTheme_actionButtonStyle -wangdaye.com.geometricweather.R$attr: int negativeButtonText -com.xw.repo.bubbleseekbar.R$attr: int showTitle -okhttp3.internal.http1.Http1Codec$FixedLengthSink: okio.Timeout timeout() -androidx.viewpager.R$drawable: int notification_template_icon_low_bg -androidx.preference.R$anim: int abc_shrink_fade_out_from_bottom -wangdaye.com.geometricweather.R$string: int donate -com.jaredrummler.android.colorpicker.R$attr: int numericModifiers -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: io.reactivex.ObservableEmitter serialize() -james.adaptiveicon.R$style: int Widget_AppCompat_ActionMode -com.google.android.material.R$styleable: int ClockFaceView_valueTextColor -androidx.appcompat.R$attr: int panelBackground -androidx.preference.R$drawable: int abc_switch_thumb_material -androidx.appcompat.widget.AppCompatImageButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -androidx.constraintlayout.widget.R$styleable: int MenuItem_actionProviderClass -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setSpeed(java.lang.String) -com.jaredrummler.android.colorpicker.R$id: int topPanel -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textFontWeight -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setHostname -retrofit2.BuiltInConverters$RequestBodyConverter: retrofit2.BuiltInConverters$RequestBodyConverter INSTANCE -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver -okhttp3.internal.platform.Android10Platform: okhttp3.internal.platform.Platform buildIfSupported() -android.didikee.donate.R$drawable: int abc_ic_star_black_16dp -wangdaye.com.geometricweather.R$color: int darkPrimary_5 -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float SulfurDioxide -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String getTo() -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemIconDisabledAlpha -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_transitionPathRotate -androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context,android.util.AttributeSet,int) -james.adaptiveicon.R$styleable: int Toolbar_logoDescription -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Headline -androidx.activity.ComponentActivity -wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_grey -android.didikee.donate.R$style: int Widget_AppCompat_ListView_DropDown -androidx.appcompat.widget.AppCompatImageView: void setImageURI(android.net.Uri) -okhttp3.internal.http2.Hpack$Reader: void clearDynamicTable() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingTop -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec newStream(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,boolean) -androidx.preference.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.R$dimen: int abc_button_inset_vertical_material -cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_ANSWER -wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_begin -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontWeight -androidx.dynamicanimation.R$string: R$string() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource LocalSource +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Time +androidx.legacy.coreutils.R$styleable: int GradientColor_android_type +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetEnd +androidx.vectordrawable.animated.R$style: R$style() +androidx.constraintlayout.widget.R$styleable: int[] MotionLayout +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onSucceed(java.lang.Object) +androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +com.google.android.material.R$color: int switch_thumb_disabled_material_light +wangdaye.com.geometricweather.background.receiver.widget.WidgetDayProvider: WidgetDayProvider() +wangdaye.com.geometricweather.main.dialogs.LearnMoreAboutResidentLocationDialog +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: int UnitType +androidx.preference.R$layout: int abc_screen_simple_overlay_action_mode +com.google.android.material.R$style: int Base_Widget_MaterialComponents_CheckedTextView +com.google.android.material.R$styleable: int[] ActionMenuView +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog +com.google.android.material.R$dimen: int mtrl_calendar_content_padding +androidx.loader.R$styleable: int FontFamilyFont_android_fontWeight +com.google.gson.stream.JsonReader: java.lang.String toString() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +wangdaye.com.geometricweather.R$string: int v7_preference_on +wangdaye.com.geometricweather.R$attr: int closeIcon +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +okhttp3.internal.http.HttpDate$1: HttpDate$1() +io.reactivex.internal.disposables.EmptyDisposable: boolean offer(java.lang.Object,java.lang.Object) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_22 +com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialButton +james.adaptiveicon.R$styleable: int Toolbar_titleMargins +wangdaye.com.geometricweather.R$attr: int layout_constraintDimensionRatio +androidx.versionedparcelable.ParcelImpl +cyanogenmod.app.LiveLockScreenInfo: java.lang.Object clone() +androidx.vectordrawable.R$dimen: int compat_button_inset_horizontal_material +androidx.viewpager2.R$styleable: int RecyclerView_android_orientation +com.google.android.material.button.MaterialButton: void setElevation(float) +wangdaye.com.geometricweather.R$drawable: int tooltip_frame_dark +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$color: int design_dark_default_color_secondary +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: int phenomenoMaxColorId +cyanogenmod.app.Profile: java.util.Map mTriggers +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long end +androidx.lifecycle.ProcessLifecycleOwner$3: androidx.lifecycle.ProcessLifecycleOwner this$0 +androidx.preference.R$styleable: int PreferenceFragment_allowDividerAfterLastItem +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: float getMax() +android.didikee.donate.R$drawable: int abc_text_select_handle_middle_mtrl_dark +androidx.preference.R$styleable: int FontFamily_fontProviderFetchTimeout +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_behavior +cyanogenmod.app.Profile: cyanogenmod.profiles.BrightnessSettings mBrightness +androidx.legacy.coreutils.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setLatitude(java.lang.String) +androidx.work.R$id: int right_icon +androidx.activity.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircleAngle +androidx.appcompat.R$styleable: int AppCompatTheme_listMenuViewStyle +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$ReplayBuffer buffer +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_Alert +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActivityChooserView +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_NoActionBar +androidx.appcompat.widget.SwitchCompat: int getCompoundPaddingLeft() +com.google.android.material.R$dimen: int mtrl_btn_stroke_size +wangdaye.com.geometricweather.common.basic.models.weather.Alert: void deduplication(java.util.List) +io.reactivex.internal.util.EmptyComponent: org.reactivestreams.Subscriber asSubscriber() +androidx.viewpager.R$id: int time +com.google.android.material.R$id: int jumpToEnd +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary +com.google.android.material.R$color: int design_dark_default_color_error +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean tryOnError(java.lang.Throwable) +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType USER_REQUEST_MIXNMATCH +cyanogenmod.hardware.DisplayMode$1: cyanogenmod.hardware.DisplayMode createFromParcel(android.os.Parcel) +androidx.coordinatorlayout.R$drawable: int notification_bg_normal +androidx.core.R$styleable: int FontFamily_fontProviderQuery +androidx.preference.R$styleable: int AppCompatTheme_actionBarItemBackground +android.didikee.donate.R$style: int TextAppearance_AppCompat_Medium +cyanogenmod.app.StatusBarPanelCustomTile: int describeContents() +com.turingtechnologies.materialscrollbar.CustomIndicator: int getIndicatorWidth() +retrofit2.ParameterHandler$FieldMap +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getWeatherText() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Switch +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$drawable: int widget_card_light_40 +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCheckedIconTint() +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +james.adaptiveicon.R$dimen: int abc_text_size_menu_material +wangdaye.com.geometricweather.R$id: int widget_clock_day_sensibleTemp +wangdaye.com.geometricweather.R$drawable: int avd_show_password +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_statusBarBackground +james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogTheme +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizePresetSizes +com.github.rahatarmanahmed.cpv.CircularProgressView: int color +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object[] toArray(java.lang.Object[]) +android.didikee.donate.R$id: int middle +com.turingtechnologies.materialscrollbar.R$attr: int itemHorizontalTranslationEnabled +android.didikee.donate.R$string: int abc_action_mode_done +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice advice +wangdaye.com.geometricweather.R$attr: int colorSurface +com.google.android.material.R$styleable: int ChipGroup_chipSpacing +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_max +androidx.preference.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +wangdaye.com.geometricweather.R$drawable: int weather_snow_2 +wangdaye.com.geometricweather.R$attr: int appBarLayoutStyle +okhttp3.internal.tls.OkHostnameVerifier: boolean verify(java.lang.String,java.security.cert.X509Certificate) +okhttp3.internal.http2.Http2Connection: void pushHeadersLater(int,java.util.List,boolean) +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +james.adaptiveicon.R$color: int bright_foreground_inverse_material_light +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_UUID +com.google.android.material.R$color: int highlighted_text_material_light +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.appcompat.R$styleable: int RecycleListView_paddingTopNoTitle +wangdaye.com.geometricweather.R$drawable: int notif_temp_30 +okhttp3.MultipartBody: java.lang.String boundary() +james.adaptiveicon.R$styleable: int Toolbar_contentInsetRight +okhttp3.internal.ws.WebSocketWriter: boolean isClient +com.google.android.material.R$style: int Base_V7_Widget_AppCompat_Toolbar +androidx.constraintlayout.widget.R$styleable: int Toolbar_maxButtonHeight +okhttp3.CacheControl$Builder: boolean noCache +retrofit2.Utils: java.lang.Class getRawType(java.lang.reflect.Type) +cyanogenmod.os.Build$CM_VERSION: Build$CM_VERSION() +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_66 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric Metric +wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_android_letterSpacing +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean getDirection() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Long getId() +james.adaptiveicon.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_motionStagger +cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING_RAMP_UP_TIME +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_min +androidx.preference.R$dimen: int abc_text_size_display_1_material com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String uvLevel -androidx.fragment.R$attr: int fontVariationSettings -androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_36dp -com.google.android.material.R$styleable: int KeyTimeCycle_waveShape -androidx.work.R$id: int accessibility_custom_action_5 -androidx.activity.R$id: int accessibility_custom_action_26 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_Underlined -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_140 -androidx.recyclerview.widget.RecyclerView: void setOnFlingListener(androidx.recyclerview.widget.RecyclerView$OnFlingListener) -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String level -com.google.android.material.R$dimen: int mtrl_progress_circular_inset -com.google.android.material.R$attr: int shapeAppearanceLargeComponent -androidx.hilt.work.R$drawable: int notification_template_icon_low_bg -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_backgroundStacked -com.xw.repo.bubbleseekbar.R$layout: int notification_action_tombstone -androidx.preference.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_wavePeriod -okhttp3.Response$Builder: okhttp3.Response cacheResponse -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelBackground -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox -androidx.constraintlayout.widget.R$id: int src_over -com.google.android.material.circularreveal.CircularRevealRelativeLayout: CircularRevealRelativeLayout(android.content.Context) -com.google.android.material.R$string: int mtrl_picker_range_header_only_start_selected -com.turingtechnologies.materialscrollbar.R$drawable: int avd_show_password -androidx.vectordrawable.animated.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -com.jaredrummler.android.colorpicker.R$style: int Preference_PreferenceScreen -wangdaye.com.geometricweather.db.entities.AlertEntity: void setPriority(int) -com.google.android.material.R$dimen: int material_clock_hand_stroke_width -androidx.lifecycle.extensions.R$anim: int fragment_close_enter -android.didikee.donate.R$attr -androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_max -com.google.android.material.R$attr: int defaultState -cyanogenmod.externalviews.KeyguardExternalView$2: KeyguardExternalView$2(cyanogenmod.externalviews.KeyguardExternalView) -wangdaye.com.geometricweather.R$drawable: int notif_temp_40 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedWidthMajor -com.google.android.material.R$styleable: int[] TabLayout -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_0 -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: java.io.IOException thrownException -androidx.hilt.lifecycle.R$color -wangdaye.com.geometricweather.R$styleable: int Constraint_visibilityMode -com.turingtechnologies.materialscrollbar.R$integer: int abc_config_activityShortDur +com.jaredrummler.android.colorpicker.R$attr: int subtitleTextAppearance +com.xw.repo.bubbleseekbar.R$attr: int toolbarNavigationButtonStyle +com.google.android.material.R$dimen: int material_filled_edittext_font_2_0_padding_top +com.google.android.material.R$dimen: int hint_alpha_material_dark +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_customNavigationLayout +cyanogenmod.providers.ThemesContract$MixnMatchColumns: android.net.Uri CONTENT_URI +com.jaredrummler.android.colorpicker.R$id: int select_dialog_listview +cyanogenmod.providers.CMSettings: java.lang.String TAG +com.github.rahatarmanahmed.cpv.CircularProgressView: void init(android.util.AttributeSet,int) +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform get() +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_NoActionBar +wangdaye.com.geometricweather.R$string: int key_alert_notification_switch +com.google.android.material.R$id: int customPanel +wangdaye.com.geometricweather.R$id: int item_weather_daily_air_title +androidx.vectordrawable.R$dimen: int notification_right_icon_size +com.google.android.material.R$styleable: int Toolbar_menu +com.google.android.material.R$drawable: int material_ic_keyboard_arrow_left_black_24dp +androidx.appcompat.R$attr: int dialogPreferredPadding +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderPackage +cyanogenmod.app.CustomTile$Builder: android.graphics.Bitmap mRemoteIcon +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType END +com.google.android.material.R$styleable: int TabLayout_tabPaddingStart +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int AlertID +com.google.android.material.R$attr: int layout_anchor +wangdaye.com.geometricweather.R$attr: int textAppearanceSubtitle2 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeShareDrawable +com.google.android.material.R$style: int TestThemeWithLineHeightDisabled +com.google.android.material.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetStartWithNavigation +com.jaredrummler.android.colorpicker.R$attr: int arrowHeadLength +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_SNOW_SHOWERS +com.google.android.material.R$style: int Widget_AppCompat_ActionMode +com.turingtechnologies.materialscrollbar.R$styleable: int[] PopupWindowBackgroundState +androidx.lifecycle.viewmodel.R +wangdaye.com.geometricweather.R$attr: int indicatorSize +com.google.android.material.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +androidx.hilt.R$attr: int fontWeight +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life +com.google.android.material.R$styleable: int TabLayout_tabIndicatorAnimationDuration +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cwd +wangdaye.com.geometricweather.R$styleable: int ActionMode_subtitleTextStyle +com.google.android.material.R$styleable: int CardView_contentPaddingRight +androidx.appcompat.widget.AppCompatRadioButton: void setBackgroundResource(int) +androidx.appcompat.R$id: int accessibility_custom_action_15 +com.google.gson.stream.JsonToken +com.google.android.material.R$color: int mtrl_card_view_ripple +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: java.lang.Runnable getWrappedRunnable() +io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.google.android.material.R$styleable: int MaterialCalendar_yearStyle +james.adaptiveicon.R$style: int Platform_V25_AppCompat +okhttp3.Request$Builder: okhttp3.Request$Builder get() +com.google.android.material.R$attr: int flow_wrapMode +okhttp3.TlsVersion: java.lang.String javaName +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String name +okhttp3.Interceptor$Chain +android.didikee.donate.R$color: int switch_thumb_material_dark +com.turingtechnologies.materialscrollbar.R$attr: int actionBarTheme +androidx.lifecycle.ComputableLiveData$1 +androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +okio.BufferedSource: long indexOf(byte) +wangdaye.com.geometricweather.R$drawable: int notif_temp_89 +androidx.fragment.R$layout: int notification_action_tombstone +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_percent +com.turingtechnologies.materialscrollbar.R$layout: int abc_select_dialog_material +wangdaye.com.geometricweather.R$dimen: int mtrl_chip_pressed_translation_z +androidx.lifecycle.extensions.R$dimen: int compat_notification_large_icon_max_width +androidx.constraintlayout.widget.R$id: int sin +okhttp3.internal.http2.Http2: byte FLAG_PRIORITY +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind Wind +com.xw.repo.bubbleseekbar.R$attr: int bsb_show_section_text +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long readKey(android.database.Cursor,int) +wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_EditTextPreference +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean isDisposed() +androidx.appcompat.R$attr: int homeLayout +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginBottom +com.google.android.material.R$styleable: int Constraint_flow_horizontalGap +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Title +james.adaptiveicon.R$bool: int abc_config_actionMenuItemAllCaps +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float relativeHumidity +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_progress +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconDrawable +wangdaye.com.geometricweather.R$id: int recyclerView +androidx.hilt.lifecycle.R$id +android.didikee.donate.R$dimen: int notification_large_icon_height +com.google.android.material.card.MaterialCardView: void setCheckedIconResource(int) +wangdaye.com.geometricweather.R$attr: int alertDialogTheme +okhttp3.internal.http2.PushObserver$1 +cyanogenmod.hardware.ICMHardwareService$Stub +wangdaye.com.geometricweather.R$attr: int colorOnBackground +com.jaredrummler.android.colorpicker.R$attr: int shouldDisableView +androidx.work.R$id: int accessibility_custom_action_31 +com.google.android.material.R$styleable: int MenuGroup_android_orderInCategory +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String name +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_7 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX names +wangdaye.com.geometricweather.R$attr: int cpv_sliderColor +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconSize +org.greenrobot.greendao.AbstractDaoSession: java.util.Collection getAllDaos() +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_content_padding +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginTop +androidx.vectordrawable.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.util.Date date +com.xw.repo.bubbleseekbar.R$id: int action_bar_container +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitationProbability() +wangdaye.com.geometricweather.R$string: int widget_trend_daily +wangdaye.com.geometricweather.R$styleable: int[] Spinner +wangdaye.com.geometricweather.R$styleable: int TextAppearance_textAllCaps +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void dispose() +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_divider +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void innerComplete() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf +com.bumptech.glide.load.engine.GlideException: java.lang.Exception getOrigin() +cyanogenmod.externalviews.KeyguardExternalView$3: int val$y +wangdaye.com.geometricweather.R$attr: int hideOnContentScroll +wangdaye.com.geometricweather.R$string: int next +cyanogenmod.app.Profile: java.util.Map connections +androidx.preference.R$id: int seekbar_value +io.reactivex.internal.subscriptions.DeferredScalarSubscription: void complete(java.lang.Object) +james.adaptiveicon.R$attr: int dialogTheme +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Name +wangdaye.com.geometricweather.R$attr: int fontStyle +com.google.android.material.R$attr: int listPreferredItemPaddingEnd +wangdaye.com.geometricweather.settings.fragments.NotificationColorSettingsFragment: NotificationColorSettingsFragment() +androidx.appcompat.resources.R$dimen: int notification_small_icon_background_padding +androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_material_anim +androidx.core.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.R$color: int design_fab_stroke_end_outer_color +androidx.appcompat.widget.Toolbar: android.view.Menu getMenu() +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox +androidx.appcompat.widget.ActionBarContextView: void setContentHeight(int) +androidx.preference.R$id: int action_menu_divider +com.google.android.material.R$layout: int abc_alert_dialog_material +com.google.android.material.textfield.TextInputLayout: void setCounterTextAppearance(int) +androidx.preference.R$style: int Theme_AppCompat_Light_DarkActionBar +com.google.android.material.R$attr: int constraintSetStart +okhttp3.Address: java.util.List connectionSpecs() +androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String MobileLink +com.google.android.material.card.MaterialCardView: void setStrokeColor(int) +com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$styleable: int NavigationView_itemShapeInsetTop +wangdaye.com.geometricweather.R$id: int off +androidx.appcompat.R$id: int forever +okhttp3.internal.http2.Http2Connection: void writePingAndAwaitPong() +androidx.core.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoldIndex() +cyanogenmod.profiles.LockSettings +androidx.lifecycle.extensions.R$id: int accessibility_action_clickable_span +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: AccuCurrentResult$PrecipitationSummary$Past12Hours() +com.google.android.material.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric Metric +androidx.constraintlayout.widget.R$styleable: int MotionScene_layoutDuringTransition +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_drawableSize +wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_hovered_alpha +com.turingtechnologies.materialscrollbar.R$color: int mtrl_bottom_nav_item_tint +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void cancelAllBut(int) +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +cyanogenmod.app.ProfileManager: void addProfile(cyanogenmod.app.Profile) +androidx.hilt.work.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.util.List textHtml +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage INITIALIZE +wangdaye.com.geometricweather.R$color: int androidx_core_ripple_material_light +com.jaredrummler.android.colorpicker.R$attr: int navigationIcon +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItemSecondary +androidx.preference.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener val$listener +wangdaye.com.geometricweather.R$anim: int fragment_manange_enter +androidx.hilt.work.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.R$string: int content_desc_back +cyanogenmod.themes.IThemeChangeListener$Stub: java.lang.String DESCRIPTOR +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DialogWhenLarge +cyanogenmod.providers.CMSettings$NameValueCache: CMSettings$NameValueCache(java.lang.String,android.net.Uri,java.lang.String,java.lang.String) +androidx.coordinatorlayout.R$id: int action_container +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) +cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.ICMStatusBarManager getStatusBarInterface() +androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mCallSetCommand +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void innerError(io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver,java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: java.lang.String desc +wangdaye.com.geometricweather.R$style: int Theme_Design_Light_NoActionBar +com.google.android.material.internal.StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException: StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException(java.lang.Throwable) +androidx.vectordrawable.animated.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.R$dimen: int cpv_color_preference_normal +wangdaye.com.geometricweather.R$style: int AlertDialog_AppCompat_Light +androidx.appcompat.resources.R$dimen: int notification_action_text_size +android.didikee.donate.R$id: int spacer +wangdaye.com.geometricweather.R$layout: int test_chip_zero_corner_radius +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_numericShortcut +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +james.adaptiveicon.R$styleable: int ActionBar_divider +okhttp3.internal.ws.WebSocketWriter$FrameSink: void flush() +androidx.hilt.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getAbbreviation(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.util.Date getPubTime() +androidx.appcompat.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getTreeLevel() +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage valueOf(java.lang.String) +james.adaptiveicon.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display2 +james.adaptiveicon.R$styleable: int MenuView_android_windowAnimationStyle +james.adaptiveicon.R$id: int tabMode +androidx.swiperefreshlayout.R$drawable: int notification_icon_background +com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_indicator_material +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean getPoint() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: int Degrees +androidx.preference.R$layout: int abc_action_bar_title_item +androidx.constraintlayout.widget.R$layout: int notification_template_custom_big +com.google.android.material.R$attr: int layout_goneMarginTop +com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorCornerRadius(int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer confidence +androidx.lifecycle.SavedStateHandleController$OnRecreation +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber +okio.Buffer$UnsafeCursor: Buffer$UnsafeCursor() +androidx.appcompat.R$attr: int arrowHeadLength +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_off_mtrl_alpha +android.didikee.donate.R$styleable: int MenuGroup_android_enabled +wangdaye.com.geometricweather.R$integer: int design_snackbar_text_max_lines +androidx.constraintlayout.widget.R$styleable: int MenuItem_tooltipText +wangdaye.com.geometricweather.R$drawable: int ic_ragweed +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_ACCESS_PRIVATE +okhttp3.internal.Util$2: java.lang.Thread newThread(java.lang.Runnable) +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_container +okhttp3.FormBody: long contentLength() +com.google.android.material.R$attr: int drawableSize +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_icon_vertical_padding_material +com.jaredrummler.android.colorpicker.R$id: int action_text +android.didikee.donate.R$styleable: int SearchView_android_maxWidth +androidx.appcompat.resources.R$styleable: int[] StateListDrawable +okhttp3.Cache$Entry: java.lang.String requestMethod +okhttp3.CacheControl: boolean noStore() +com.google.android.material.R$id: int left +okhttp3.internal.http.RealInterceptorChain: okhttp3.Request request +wangdaye.com.geometricweather.R$attr: int msb_rightToLeft +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_2 +wangdaye.com.geometricweather.common.basic.GeoDialog +james.adaptiveicon.R$id: int checkbox +com.google.android.material.R$color: int dim_foreground_material_light +com.google.android.material.tabs.TabLayout: void setTabGravity(int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int RainProbability +wangdaye.com.geometricweather.R$styleable: int Motion_motionStagger +com.google.android.material.R$styleable: int ConstraintSet_flow_firstHorizontalBias +cyanogenmod.app.LiveLockScreenInfo$Builder: android.content.ComponentName mComponent +com.google.android.material.R$styleable: int TabLayout_tabTextColor +retrofit2.HttpServiceMethod +com.google.android.material.R$id: int info +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout_Colored +androidx.customview.R$drawable: int notification_bg_low_normal +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean disposed +wangdaye.com.geometricweather.R$dimen: int notification_big_circle_margin +androidx.appcompat.R$style: int Base_Widget_AppCompat_ImageButton +okio.RealBufferedSource$1: int available() +wangdaye.com.geometricweather.R$string: int key_forecast_today_time +james.adaptiveicon.R$styleable: int AppCompatTextView_fontVariationSettings +androidx.preference.R$string: int abc_activity_chooser_view_see_all +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String DESKCLOCK_PACKAGE +androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_dark +com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar_PrimarySurface +com.jaredrummler.android.colorpicker.R$attr: int windowFixedWidthMajor +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: void truncate() +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: java.lang.Throwable error +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitleTextAppearance +wangdaye.com.geometricweather.R$string: int feedback_enable_location_information +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_TextView_SpinnerItem +okhttp3.ConnectionPool: java.util.concurrent.Executor executor +cyanogenmod.weather.WeatherInfo: boolean equals(java.lang.Object) +androidx.appcompat.R$string: int abc_searchview_description_submit +androidx.lifecycle.extensions.R$layout: R$layout() +com.google.android.material.R$styleable: int ActionBar_homeAsUpIndicator +wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Light +cyanogenmod.externalviews.KeyguardExternalView$5: KeyguardExternalView$5(cyanogenmod.externalviews.KeyguardExternalView) +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_1_material +okio.RealBufferedSource: int read(java.nio.ByteBuffer) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: AccuCurrentResult$DewPoint$Metric() +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_MOBILEDATA +com.google.android.material.R$style: int Platform_MaterialComponents_Dialog +com.google.android.material.R$styleable: int TextInputLayout_prefixText +wangdaye.com.geometricweather.R$attr: int trackTint +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_bias +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceButton +androidx.viewpager.R$attr: R$attr() +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_transformation_sheet_collapse_spec +io.reactivex.Observable: io.reactivex.Observable error(java.util.concurrent.Callable) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: long serialVersionUID +okio.RealBufferedSink: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) +androidx.dynamicanimation.R$id: int info +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline3 +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low_normal +com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$string: int settings_title_forecast_today +okhttp3.internal.http.BridgeInterceptor: java.lang.String cookieHeader(java.util.List) +cyanogenmod.themes.ThemeManager$1$2: boolean val$isSuccess +retrofit2.HttpServiceMethod$CallAdapted: HttpServiceMethod$CallAdapted(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter) +retrofit2.http.Header +com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_percent +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type AIR_QUALITY +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceCaption +androidx.lifecycle.LifecycleRegistry$ObserverWithState: androidx.lifecycle.Lifecycle$State mState +wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.appcompat.R$attr: int windowNoTitle +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_Solid +com.google.android.material.R$styleable: int KeyTimeCycle_transitionEasing +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_icon +com.google.android.material.R$styleable: int OnSwipe_moveWhenScrollAtTop +android.didikee.donate.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$string: int expand_button_title +wangdaye.com.geometricweather.db.entities.DailyEntity: int daytimeTemperature +okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_FIN +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: AccuCurrentResult$RealFeelTemperatureShade$Imperial() +androidx.fragment.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$attr: int inner_margins +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean,int,int) +okhttp3.Cache$1: void update(okhttp3.Response,okhttp3.Response) +com.google.android.material.R$styleable: int MotionLayout_motionDebug +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: long serialVersionUID +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Tooltip +androidx.preference.R$drawable: int notification_bg +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_DialogWhenLarge +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onComplete() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List dailyEntityList +androidx.preference.R$anim: int abc_tooltip_exit +com.jaredrummler.android.colorpicker.R$string: int abc_menu_shift_shortcut_label +androidx.transition.R$layout: int notification_action_tombstone +james.adaptiveicon.R$attr: int titleTextColor +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +james.adaptiveicon.R$style: int Base_Theme_AppCompat_CompactMenu +com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingRight() +cyanogenmod.weather.ICMWeatherManager: void lookupCity(cyanogenmod.weather.RequestInfo) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Small +androidx.preference.R$style: int TextAppearance_AppCompat_Title +androidx.appcompat.resources.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu +com.google.android.material.R$attr: int fontProviderFetchTimeout +androidx.loader.R$id: int line3 +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +androidx.viewpager2.R$layout: int notification_action_tombstone +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: android.os.IBinder asBinder() +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: boolean isDisposed() +android.didikee.donate.R$styleable: int AppCompatTheme_toolbarStyle +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int OTHER_STATE_CONSUMED_OR_EMPTY +com.google.android.material.R$styleable: int KeyPosition_percentWidth +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int maxConcurrency +androidx.coordinatorlayout.R$id: int tag_accessibility_pane_title +com.jaredrummler.android.colorpicker.R$attr: int dialogLayout +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWindLevel() +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int ActionMode_backgroundSplit +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_AES_256_CBC_SHA +androidx.preference.R$style: int TextAppearance_Compat_Notification +androidx.swiperefreshlayout.R$style +android.didikee.donate.R$dimen: int abc_disabled_alpha_material_dark +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_disabled_material_light +cyanogenmod.hardware.ICMHardwareService: java.lang.String getLtoSource() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum +androidx.appcompat.widget.Toolbar: void setLogo(android.graphics.drawable.Drawable) +androidx.preference.R$attr: int listPreferredItemHeight +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart +androidx.legacy.coreutils.R$dimen: int compat_button_padding_horizontal_material +okhttp3.CacheControl: okhttp3.CacheControl FORCE_NETWORK +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String windDirection +androidx.constraintlayout.widget.R$drawable: int abc_ic_clear_material +wangdaye.com.geometricweather.R$styleable: int ActionBar_divider +wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_grey +wangdaye.com.geometricweather.R$animator: int touch_raise +androidx.swiperefreshlayout.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +androidx.preference.R$attr: int autoSizeMinTextSize +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontStyle +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: FlowableOnBackpressureLatest$BackpressureLatestSubscriber(org.reactivestreams.Subscriber) +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: java.lang.Object poll() +wangdaye.com.geometricweather.R$attr: int bottomSheetStyle +com.google.android.material.chip.ChipGroup: void setChipSpacingHorizontal(int) +androidx.hilt.lifecycle.R$dimen: int compat_button_padding_vertical_material +okhttp3.internal.Util: okio.ByteString UTF_16_LE_BOM +androidx.preference.R$id +retrofit2.RequestFactory$Builder: java.lang.String httpMethod +wangdaye.com.geometricweather.R$color: int primary_text_default_material_dark +androidx.preference.R$attr: int listChoiceBackgroundIndicator +com.google.android.material.slider.RangeSlider$RangeSliderState +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Consumer) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_SearchResult_Title +androidx.viewpager2.R$styleable: int[] RecyclerView +cyanogenmod.weather.RequestInfo: int mRequestType +com.google.android.material.R$id: int action_bar_subtitle +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetRight +com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog +wangdaye.com.geometricweather.R$color: int notification_background_rootLight +androidx.preference.R$style: int TextAppearance_AppCompat_Large +androidx.legacy.coreutils.R$integer: int status_bar_notification_info_maxnum +androidx.constraintlayout.widget.R$attr: int flow_verticalGap +com.google.android.material.R$id: int search_edit_frame +com.google.android.material.R$string: int chip_text +okhttp3.internal.http2.Http2Connection$3 +androidx.constraintlayout.widget.R$attr: int actionModeCutDrawable +james.adaptiveicon.R$id: int search_edit_frame +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicBoolean cancelled +okhttp3.Headers: java.util.Map toMultimap() +androidx.constraintlayout.widget.R$attr: int drawableEndCompat +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +wangdaye.com.geometricweather.R$string: int content_des_sunrise +cyanogenmod.app.CustomTile$1: java.lang.Object[] newArray(int) +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void complete() +okio.SegmentedByteString: okio.ByteString substring(int) +io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean checkTerminated(boolean,boolean,io.reactivex.Observer,boolean) +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: MfForecastResult() +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: java.util.List getSubInformation() +androidx.recyclerview.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$layout: int preference_category +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: int getMarginBottom() +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation TOP +io.reactivex.internal.observers.InnerQueuedObserver: boolean isDisposed() +androidx.constraintlayout.widget.R$attr: int mock_showLabel +cyanogenmod.app.PartnerInterface: java.lang.String MODIFY_SOUND_SETTINGS_PERMISSION wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: DaoMaster$OpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -android.support.v4.app.INotificationSideChannel$Default: INotificationSideChannel$Default() -android.didikee.donate.R$styleable: int SwitchCompat_trackTintMode -com.google.android.material.R$style: int Theme_AppCompat -androidx.preference.R$style: int Base_V21_Theme_AppCompat -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: void setParent(io.reactivex.internal.operators.observable.ObservablePublish$PublishObserver) -wangdaye.com.geometricweather.R$attr: int layout_constraintTop_toTopOf -com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorType(int) -cyanogenmod.profiles.AirplaneModeSettings$BooleanState: AirplaneModeSettings$BooleanState() -com.jaredrummler.android.colorpicker.R$styleable: int Preference_allowDividerBelow -androidx.recyclerview.widget.RecyclerView: void addOnItemTouchListener(androidx.recyclerview.widget.RecyclerView$OnItemTouchListener) -retrofit2.DefaultCallAdapterFactory$1: retrofit2.Call adapt(retrofit2.Call) -androidx.activity.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -com.xw.repo.bubbleseekbar.R$attr: int buttonBarPositiveButtonStyle -com.google.android.material.R$styleable: int FloatingActionButton_backgroundTintMode -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabText -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments comments -wangdaye.com.geometricweather.R$styleable: int Preference_android_widgetLayout -com.google.android.material.R$attr: int layout_constraintHorizontal_bias -retrofit2.KotlinExtensions$await$4$2: KotlinExtensions$await$4$2(kotlinx.coroutines.CancellableContinuation) -retrofit2.Response: java.lang.String message() -androidx.constraintlayout.widget.R$attr: int telltales_velocityMode -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.lang.Throwable error -androidx.transition.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$bool: int enable_system_alarm_service_default -wangdaye.com.geometricweather.R$attr: int bsb_seek_by_section -retrofit2.ParameterHandler$QueryMap: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionBar -androidx.work.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.R$attr: int statusBarForeground -androidx.fragment.R$styleable: int[] Fragment -androidx.core.R$id: int accessibility_custom_action_14 -james.adaptiveicon.R$id: int default_activity_button -androidx.fragment.R$styleable: int GradientColor_android_centerColor -androidx.vectordrawable.animated.R$style: int Widget_Compat_NotificationActionText -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ButtonBar -androidx.viewpager2.R$attr: int fastScrollVerticalThumbDrawable -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_content_padding_fullscreen -wangdaye.com.geometricweather.R$id: int tag_accessibility_heading -com.google.android.material.R$color: int design_default_color_error -cyanogenmod.externalviews.ExternalViewProviderService: java.lang.String TAG -com.google.android.material.R$attr: int closeIconTint -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginLeft -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context,android.util.AttributeSet,int) -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_16dp -androidx.preference.R$styleable: int AppCompatTheme_buttonStyle -okhttp3.HttpUrl: java.lang.String encodedQuery() -com.google.android.material.R$color: int mtrl_scrim_color -com.turingtechnologies.materialscrollbar.R$dimen: int notification_small_icon_size_as_large -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.disposables.Disposable upstream -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_RESULT_VALUE -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 -com.google.android.material.R$dimen: int design_snackbar_extra_spacing_horizontal -okhttp3.CipherSuite: java.util.Comparator ORDER_BY_NAME -wangdaye.com.geometricweather.R$styleable: int Transform_android_scaleY -wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_top_material -wangdaye.com.geometricweather.R$anim: int fragment_fade_enter -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String weatherText -cyanogenmod.app.Profile$1: Profile$1() -okhttp3.MediaType: boolean equals(java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ListView_DropDown -android.didikee.donate.R$styleable: int AppCompatTheme_textColorSearchUrl -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.BiFunction resultSelector -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String parent -androidx.appcompat.R$layout: int abc_search_dropdown_item_icons_2line -androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerY -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animAutostart -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth -androidx.preference.R$dimen: int abc_text_size_body_1_material -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox -android.didikee.donate.R$style: int Widget_AppCompat_ListPopupWindow -okhttp3.Cache: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_numericModifiers -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: java.lang.String icon -com.google.android.material.R$attr: int errorTextAppearance -androidx.lifecycle.LifecycleRegistry: void sync() -androidx.hilt.lifecycle.R$id: int line3 -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void dispose() -androidx.loader.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.preference.R$attr: int layout_insetEdge -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX +com.google.android.material.R$attr: int autoSizeStepGranularity +androidx.hilt.R$attr: int fontProviderCerts +com.xw.repo.bubbleseekbar.R$attr: int collapseIcon +androidx.appcompat.widget.SearchView: void setSubmitButtonEnabled(boolean) +androidx.customview.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$attr: int ratingBarStyleSmall +android.didikee.donate.R$dimen: int abc_dropdownitem_text_padding_left +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatHoveredFocusedTranslationZResource(int) +okio.Okio: okio.Sink sink(java.net.Socket) +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour MATCH_CONSTRAINT +retrofit2.Retrofit$Builder: boolean validateEagerly +wangdaye.com.geometricweather.R$id: int src_over +androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Alert_Bridge +com.turingtechnologies.materialscrollbar.R$attr: int spinnerStyle +okhttp3.internal.http.StatusLine: java.lang.String toString() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String threshold +james.adaptiveicon.R$attr: int listDividerAlertDialog +wangdaye.com.geometricweather.R$id: int filterBtn +okio.BufferedSink +wangdaye.com.geometricweather.R$layout: int widget_day_week_rectangle +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getKey() +wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_title +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context) +androidx.lifecycle.extensions.R$id: int notification_background +com.google.gson.FieldNamingPolicy: java.lang.String separateCamelCase(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getDescription() +androidx.vectordrawable.R$id: int accessibility_custom_action_5 +androidx.appcompat.app.WindowDecorActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +androidx.appcompat.R$attr: int progressBarStyle +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property AqiIndex +okio.Buffer: java.lang.String readString(long,java.nio.charset.Charset) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.disposables.Disposable upstream +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String PROFILE +com.google.android.material.R$attr: int title +androidx.coordinatorlayout.R$id: int start +wangdaye.com.geometricweather.R$attr: int paddingTopNoTitle +androidx.transition.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu +okhttp3.internal.ws.RealWebSocket$1: okhttp3.internal.ws.RealWebSocket this$0 +wangdaye.com.geometricweather.R$styleable: int Preference_android_iconSpaceReserved +com.xw.repo.bubbleseekbar.R$integer: int cancel_button_image_alpha +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.ILiveLockScreenManager getService() +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startX +androidx.preference.R$color: int ripple_material_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: CaiYunMainlyResult$IndicesBeanX() +wangdaye.com.geometricweather.R$attr: int cornerSizeTopLeft +androidx.constraintlayout.widget.R$color: int ripple_material_light +androidx.preference.R$styleable: int AppCompatTheme_controlBackground +androidx.vectordrawable.animated.R$integer +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String defenseText +androidx.appcompat.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +androidx.preference.R$layout: int notification_template_custom_big +com.jaredrummler.android.colorpicker.R$anim: int abc_popup_enter +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: double Value +androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitle +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_text +com.xw.repo.bubbleseekbar.R$attr: int contentInsetEndWithActions +okhttp3.internal.cache.CacheInterceptor$1: okio.Timeout timeout() +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen +com.github.rahatarmanahmed.cpv.R$string: int app_name +com.turingtechnologies.materialscrollbar.R$id: int contentPanel +androidx.recyclerview.R$id: int accessibility_custom_action_5 +cyanogenmod.themes.ThemeManager$2$1 +cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener: void onWeatherRequestCompleted(int,cyanogenmod.weather.WeatherInfo) +okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String,java.util.Date) +com.bumptech.glide.load.HttpException: int UNKNOWN +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle +com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean Summary +android.didikee.donate.R$styleable: int[] ViewBackgroundHelper +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_font +com.xw.repo.bubbleseekbar.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.R$styleable: int Chip_chipStrokeColor +okhttp3.EventListener$2: okhttp3.EventListener create(okhttp3.Call) +com.google.android.material.appbar.AppBarLayout: void addOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener) +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: ExecutorScheduler$ExecutorWorker$InterruptibleRunnable(java.lang.Runnable,io.reactivex.internal.disposables.DisposableContainer) +androidx.viewpager.R$id: int action_divider +androidx.appcompat.R$dimen: int abc_list_item_padding_horizontal_material +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableLeft +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CheckedTextView +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_normal +wangdaye.com.geometricweather.R$integer: int design_tab_indicator_anim_duration_ms +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.util.List contextList +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetEndWithActions +androidx.core.R$dimen: int compat_notification_large_icon_max_width +androidx.appcompat.R$style: int Animation_AppCompat_DropDownUp +com.google.android.material.R$attr: int textAppearanceLargePopupMenu +com.google.android.material.R$styleable: int MaterialCardView_strokeColor +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedWidthMajor +com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_padding_horizontal_material +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: double Value +com.xw.repo.bubbleseekbar.R$styleable: int[] PopupWindow +com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView +wangdaye.com.geometricweather.R$attr: int listPreferredItemHeightSmall +androidx.transition.R$attr: int fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$styleable: int[] FontFamilyFont +james.adaptiveicon.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.db.entities.LocationEntity: float getLongitude() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_android_windowIsFloating +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder followRedirects(boolean) +com.google.android.material.R$styleable: int TabLayout_tabIconTintMode +okhttp3.FormBody: java.util.List encodedNames +io.reactivex.Observable: io.reactivex.Observable switchMapMaybe(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$dimen: int mtrl_min_touch_target_size +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundTintMode +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean done +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_type +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_LED_OFF_VALIDATOR +com.google.android.material.R$style: int Widget_AppCompat_PopupMenu +com.turingtechnologies.materialscrollbar.R$color: int notification_action_color_filter +androidx.viewpager2.R$styleable: int GradientColor_android_startY +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_stacked_max_height +james.adaptiveicon.R$style: int Widget_AppCompat_ProgressBar_Horizontal +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_height +androidx.preference.R$styleable: int[] CheckBoxPreference +androidx.hilt.work.R$styleable: int ColorStateListItem_android_alpha +com.google.android.material.R$string: int abc_activity_chooser_view_see_all +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onNext(java.lang.Object) +androidx.appcompat.resources.R$drawable: int notification_bg_normal +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okio.BufferedSource: long readHexadecimalUnsignedLong() +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerError(java.lang.Throwable) +cyanogenmod.content.Intent: java.lang.String ACTION_THEME_REMOVED +androidx.loader.R$dimen: int notification_action_icon_size +io.reactivex.Observable: io.reactivex.Observable takeWhile(io.reactivex.functions.Predicate) +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_DarkActionBar +androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +androidx.preference.R$styleable: int StateListDrawable_android_exitFadeDuration +android.didikee.donate.R$color: int button_material_dark +androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +com.xw.repo.bubbleseekbar.R$attr: int closeIcon +com.google.android.material.tabs.TabLayout: void setTabMode(int) +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayHorizontalProvider: WidgetClockDayHorizontalProvider() +androidx.work.OverwritingInputMerger: OverwritingInputMerger() +wangdaye.com.geometricweather.R$id: int action_bar_title +wangdaye.com.geometricweather.R$string: int key_language +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColorHint +com.turingtechnologies.materialscrollbar.Indicator: int getIndicatorWidth() +androidx.constraintlayout.widget.R$style: int Base_V23_Theme_AppCompat +com.google.android.material.R$styleable: int Slider_tickColor +androidx.preference.UnPressableLinearLayout +wangdaye.com.geometricweather.R$id: int item_weather_daily_overview_icon +androidx.preference.R$style: int Platform_V21_AppCompat_Light +com.jaredrummler.android.colorpicker.R$attr: int collapseIcon +com.turingtechnologies.materialscrollbar.R$styleable: int TouchScrollBar_msb_hideDelayInMilliseconds +androidx.constraintlayout.widget.R$dimen: int abc_disabled_alpha_material_light +wangdaye.com.geometricweather.remoteviews.config.Hilt_HourlyTrendWidgetConfigActivity +wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem +wangdaye.com.geometricweather.R$styleable: int[] MotionHelper +com.google.android.material.R$attr: int behavior_skipCollapsed +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_unregisterThemeProcessingListener +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCeiling(java.lang.Float) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: AccuDailyResult$DailyForecasts$Temperature$Maximum() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: ObservableGroupJoin$GroupJoinDisposable(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_colorShape +androidx.preference.SwitchPreferenceCompat +com.xw.repo.bubbleseekbar.R$id: int action_bar_spinner +com.google.gson.stream.JsonReader: void beginArray() +james.adaptiveicon.R$style: int Theme_AppCompat_DialogWhenLarge +okhttp3.OkHttpClient$Builder: okhttp3.Authenticator proxyAuthenticator +okhttp3.internal.http.RealInterceptorChain: int writeTimeout +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderCerts +androidx.appcompat.R$id: int scrollIndicatorDown +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Object rainSnowLimitRaw +com.google.android.material.chip.Chip: void setCloseIconEnabled(boolean) +androidx.hilt.lifecycle.R$styleable: int GradientColorItem_android_offset +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1(androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber,java.lang.Throwable) cyanogenmod.externalviews.ExternalView: void onActivityCreated(android.app.Activity,android.os.Bundle) -com.google.android.material.R$dimen: int abc_dropdownitem_text_padding_left -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_iconSpaceReserved -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_pivotY -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode HAZE -androidx.core.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.R$drawable: int abc_btn_check_material -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_height -retrofit2.Retrofit$1: java.lang.Class val$service -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: java.lang.String Unit -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onComplete() -com.google.android.material.R$attr: int appBarLayoutStyle -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircleAngle -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets -cyanogenmod.providers.CMSettings$System$1 -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_NavigationView -james.adaptiveicon.R$drawable: int abc_ic_ab_back_material -wangdaye.com.geometricweather.R$string: int feedback_delete_succeed -androidx.dynamicanimation.R$id: int right_side -androidx.appcompat.widget.Toolbar: void setSubtitleTextColor(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_contentDescription -androidx.loader.R$id: int async -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -com.xw.repo.bubbleseekbar.R$attr: int contentInsetStart -cyanogenmod.app.CustomTile$ExpandedStyle: int REMOTE_STYLE -wangdaye.com.geometricweather.R$attr: int chipStyle -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onSuccess(java.lang.Object) -retrofit2.Call: void enqueue(retrofit2.Callback) -cyanogenmod.app.CustomTileListenerService -wangdaye.com.geometricweather.R$drawable: int ic_plus -androidx.preference.R$styleable: int ActionBar_contentInsetEnd -io.reactivex.internal.subscriptions.EmptySubscription: void cancel() -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_lightContainer -cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings(android.os.Parcel) -androidx.constraintlayout.widget.R$styleable: int[] MotionTelltales -wangdaye.com.geometricweather.R$id: int smallLabel -com.google.android.material.slider.BaseSlider: void setThumbStrokeWidthResource(int) -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -androidx.constraintlayout.widget.R$attr: int navigationIcon -androidx.constraintlayout.widget.R$attr: int colorControlActivated -androidx.vectordrawable.R$styleable: int GradientColor_android_startY -com.google.android.material.R$attr: int moveWhenScrollAtTop -okhttp3.internal.cache.CacheInterceptor$1: okio.BufferedSink val$cacheBody -com.google.android.material.R$drawable: int notify_panel_notification_icon_bg -androidx.transition.R$layout: int notification_template_part_time -androidx.constraintlayout.widget.R$styleable: int Motion_pathMotionArc -androidx.appcompat.R$attr: int popupMenuStyle -james.adaptiveicon.R$drawable: int abc_text_select_handle_left_mtrl_light -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -io.reactivex.internal.disposables.SequentialDisposable: long serialVersionUID -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX brandInfo -com.jaredrummler.android.colorpicker.R$style: R$style() -androidx.lifecycle.ClassesInfoCache$CallbackInfo: java.util.Map mEventToHandlers -com.google.android.material.R$dimen: int abc_action_bar_overflow_padding_end_material -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$Adapter getAdapter() +androidx.loader.R$styleable: int[] FontFamily +james.adaptiveicon.R$attr: int toolbarStyle +android.didikee.donate.R$styleable: int ActionBar_homeAsUpIndicator +okhttp3.internal.Util: java.lang.String canonicalizeHost(java.lang.String) +okhttp3.internal.io.FileSystem: void deleteContents(java.io.File) +okhttp3.Cache: void delete() +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: double Value +wangdaye.com.geometricweather.R$style: int PreferenceFragment +com.turingtechnologies.materialscrollbar.R$attr: int checkedTextViewStyle +androidx.constraintlayout.widget.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float pSea +wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacingHorizontal +androidx.preference.R$style: int Preference_Category_Material +com.google.android.material.R$attr: int itemHorizontalPadding +androidx.activity.R$styleable: int FontFamilyFont_android_fontStyle +com.google.android.material.R$styleable: int Constraint_flow_verticalAlign +cyanogenmod.app.CustomTile$Builder: int mIcon +wangdaye.com.geometricweather.R$attr: int customDimension +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeFillColor +com.google.android.material.button.MaterialButton: void setIconSize(int) +org.greenrobot.greendao.AbstractDao: void assertSinglePk() +wangdaye.com.geometricweather.R$styleable: int ActionMode_closeItemLayout +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Small +wangdaye.com.geometricweather.R$attr: int backgroundInsetStart +com.google.android.material.R$dimen: int abc_dialog_list_padding_top_no_title +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayVerticalWidgetConfigActivity: Hilt_ClockDayVerticalWidgetConfigActivity() +okhttp3.internal.http2.PushObserver: void onReset(int,okhttp3.internal.http2.ErrorCode) +okio.GzipSource: byte FEXTRA +com.google.android.material.R$styleable: int AppCompatTheme_popupWindowStyle +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton +androidx.preference.R$attr: int srcCompat +androidx.appcompat.R$styleable: int MenuView_subMenuArrow +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: int getSuggestedMinimumWidth() +com.google.android.material.R$style: int Platform_AppCompat +com.google.android.material.R$styleable: int[] ConstraintSet +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.ObservableSource first +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTintMode +wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardContainer +wangdaye.com.geometricweather.R$color: int colorTextLight2nd +androidx.appcompat.R$color: int accent_material_light +androidx.appcompat.R$id: int accessibility_custom_action_4 +androidx.preference.R$styleable: int AppCompatTheme_radioButtonStyle +okhttp3.internal.ws.RealWebSocket: int receivedPingCount() +wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity: TextWidgetConfigActivity() +androidx.transition.ChangeBounds$7: androidx.transition.ChangeBounds$ViewBounds mViewBounds +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setMax(float) +okhttp3.internal.ws.RealWebSocket: okhttp3.Request request() +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_icon_size +androidx.vectordrawable.R$styleable +wangdaye.com.geometricweather.R$attr: int layout_constraintBaseline_toBaselineOf +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.coordinatorlayout.R$drawable +cyanogenmod.weather.RequestInfo: java.lang.String getCityName() +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.R$styleable: int ActionBar_navigationMode +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: java.util.concurrent.atomic.AtomicBoolean once +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPopupWindowStyle +androidx.hilt.work.R$dimen: int notification_small_icon_size_as_large +cyanogenmod.app.CustomTile: android.app.PendingIntent deleteIntent +wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary_variant +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List forecast +okhttp3.Headers$Builder: okhttp3.Headers$Builder removeAll(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int iconStartPadding +com.google.android.material.transformation.TransformationChildLayout: TransformationChildLayout(android.content.Context) +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_Alert +androidx.appcompat.R$id: int scrollIndicatorUp +com.google.android.material.R$attr: int tooltipText +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItem +cyanogenmod.app.ICustomTileListener$Stub: java.lang.String DESCRIPTOR +androidx.appcompat.R$dimen: int abc_dialog_padding_material +cyanogenmod.themes.IThemeService$Stub$Proxy: long getLastThemeChangeTime() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: int UnitType +com.google.android.material.R$styleable: int AlertDialog_android_layout +wangdaye.com.geometricweather.R$styleable: int Badge_badgeGravity +androidx.constraintlayout.widget.R$attr: int waveVariesBy +wangdaye.com.geometricweather.R$id: int end +wangdaye.com.geometricweather.R$color: int mtrl_tabs_icon_color_selector +androidx.preference.R$drawable: int abc_switch_track_mtrl_alpha +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$styleable: int ActionBar_itemPadding +androidx.constraintlayout.widget.R$attr: int customColorValue +com.jaredrummler.android.colorpicker.R$id: int regular +androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 +com.turingtechnologies.materialscrollbar.R$attr: int progressBarStyle +androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_width_overflow_material +androidx.lifecycle.ViewModelProvider$OnRequeryFactory +james.adaptiveicon.R$attr: int font +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Primary +okhttp3.internal.http2.Hpack$Reader: Hpack$Reader(int,okio.Source) +james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMarkTint +wangdaye.com.geometricweather.R$drawable: int shortcuts_sleet +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX) +com.xw.repo.bubbleseekbar.R$styleable: int[] FontFamilyFont +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_overflow_padding_start_material +com.google.android.material.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +com.xw.repo.bubbleseekbar.R$attr: int colorPrimary +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +androidx.constraintlayout.widget.R$dimen: int abc_button_padding_horizontal_material +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.MediaType contentType +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPadding +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onNext(java.lang.Object) +androidx.appcompat.widget.Toolbar: void setPopupTheme(int) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setLineColor(int) +james.adaptiveicon.R$id: int default_activity_button +com.xw.repo.bubbleseekbar.R$anim: int abc_fade_out +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void dispose() +com.google.android.material.R$styleable: int AppCompatTextView_drawableTopCompat +androidx.swiperefreshlayout.R$attr: int fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$attr: int chipBackgroundColor +androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.functions.Function mapper +com.turingtechnologies.materialscrollbar.R$styleable: int View_paddingStart +androidx.appcompat.R$styleable: int AppCompatTheme_viewInflaterClass +cyanogenmod.platform.R$xml: R$xml() +com.google.android.material.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide +androidx.appcompat.R$drawable: int abc_vector_test +wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_material +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.functions.Function mapper +okhttp3.TlsVersion: java.lang.String javaName() +wangdaye.com.geometricweather.weather.apis.MfWeatherApi +androidx.appcompat.widget.AppCompatButton: void setSupportCompoundDrawablesTintList(android.content.res.ColorStateList) +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_3 +cyanogenmod.profiles.LockSettings: int describeContents() +okhttp3.internal.tls.OkHostnameVerifier: boolean verifyHostname(java.lang.String,java.lang.String) +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getLastThemeChangeRequestType +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onNegativeCross +wangdaye.com.geometricweather.R$id: int item_trend_hourly +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitationDuration +io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper DISPOSED +com.google.android.material.slider.BaseSlider: float getThumbStrokeWidth() +cyanogenmod.providers.CMSettings$Global: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: ObservableTimeout$TimeoutObserver(io.reactivex.Observer,io.reactivex.functions.Function) +com.google.android.material.R$id: int test_checkbox_app_button_tint +androidx.constraintlayout.widget.R$id: int SHOW_PROGRESS cyanogenmod.app.ProfileGroup: void setSoundOverride(android.net.Uri) -com.google.android.material.R$styleable: int ClockHandView_materialCircleRadius -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void dispose() -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_3_30 -androidx.cardview.R$color: int cardview_dark_background -com.google.android.material.R$color: int design_default_color_primary -android.didikee.donate.R$attr: int thumbTintMode -cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.ICMTelephonyManager getService() -android.didikee.donate.R$styleable: int Toolbar_contentInsetEndWithActions -androidx.constraintlayout.widget.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -androidx.appcompat.R$styleable: int ActionBar_title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.lang.String unit -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motionTarget -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree windDegree +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_fontFamily +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startY +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light +androidx.work.R$id: int actions +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_drawableSize +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String weatherSource +androidx.constraintlayout.widget.R$styleable: int ActionBar_indeterminateProgressStyle +wangdaye.com.geometricweather.R$attr: int lineHeight +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property CurrentPosition +androidx.vectordrawable.animated.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.R$dimen: int material_clock_hand_center_dot_radius +wangdaye.com.geometricweather.R$layout: int mtrl_picker_text_input_date +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_DialogWhenLarge +com.xw.repo.bubbleseekbar.R$drawable: int abc_control_background_material +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMargin +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.Function rightEnd +androidx.swiperefreshlayout.R$layout: int notification_template_custom_big +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleDrawable +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator +androidx.constraintlayout.widget.R$id: int easeIn +androidx.preference.R$styleable: int SeekBarPreference_adjustable +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_default +wangdaye.com.geometricweather.R$color: int material_blue_grey_800 +androidx.preference.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.R$animator: int weather_snow_3 +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderSelection +androidx.appcompat.R$style: int Widget_AppCompat_ActionButton_Overflow +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customPixelDimension +okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeOptionalWithoutCheckedException(java.lang.Object,java.lang.Object[]) +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_motionProgress +james.adaptiveicon.R$attr: int controlBackground +android.didikee.donate.R$attr: int buttonBarStyle +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver inner +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State calculateTargetState(androidx.lifecycle.LifecycleObserver) +com.google.android.material.R$attr: int cornerSizeBottomLeft +androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +cyanogenmod.platform.R$attr +com.google.android.material.R$color: int mtrl_outlined_stroke_color +com.google.android.material.R$attr: int overlapAnchor +okhttp3.internal.cache2.Relay$RelaySource: long read(okio.Buffer,long) +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Slider +okio.AsyncTimeout$2: okio.Timeout timeout() +wangdaye.com.geometricweather.R$string: int grass +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int CANCELLED +androidx.preference.R$color: int primary_dark_material_dark +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelBackground +io.reactivex.internal.disposables.SequentialDisposable: void dispose() +androidx.preference.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable +com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_top_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String MobileLink +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +cyanogenmod.weather.CMWeatherManager$2$2: void run() +android.didikee.donate.R$anim: int abc_slide_in_top +okhttp3.internal.http2.PushObserver: boolean onData(int,okio.BufferedSource,int,boolean) +io.reactivex.disposables.RunnableDisposable: void onDisposed(java.lang.Object) +io.reactivex.internal.util.VolatileSizeArrayList: boolean retainAll(java.util.Collection) +wangdaye.com.geometricweather.R$string: int key_gravity_sensor_switch +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Settings peerSettings +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +android.didikee.donate.R$styleable: int LinearLayoutCompat_divider +com.bumptech.glide.R$id: int left +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogMessage +androidx.swiperefreshlayout.R$style: int Widget_Compat_NotificationActionText +io.reactivex.exceptions.CompositeException: java.lang.String message +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_content_inset_with_nav +androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context) +androidx.appcompat.R$id: int content +cyanogenmod.weather.RequestInfo: java.lang.String access$302(cyanogenmod.weather.RequestInfo,java.lang.String) +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: java.lang.Throwable error +james.adaptiveicon.R$layout: int abc_screen_content_include +com.xw.repo.bubbleseekbar.R$color: int dim_foreground_disabled_material_light +io.reactivex.Observable: io.reactivex.Observable concatEager(io.reactivex.ObservableSource) +com.google.android.material.R$styleable: int Chip_android_checkable +androidx.viewpager.R$styleable: R$styleable() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: CNWeatherResult$Life() +cyanogenmod.weather.RequestInfo: int describeContents() +com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +cyanogenmod.app.StatusBarPanelCustomTile: int getId() +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: cyanogenmod.app.ThemeVersion$ComponentVersion fwCompVersionToSdkVersion(android.content.ThemeVersion$ComponentVersion) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long serialVersionUID +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Inverse +androidx.preference.R$styleable: int MenuGroup_android_enabled +androidx.appcompat.widget.AppCompatTextView: void setPrecomputedText(androidx.core.text.PrecomputedTextCompat) +cyanogenmod.themes.IThemeService: boolean isThemeBeingProcessed(java.lang.String) +androidx.appcompat.R$styleable: int RecycleListView_paddingBottomNoButtons +io.reactivex.internal.schedulers.ScheduledRunnable: void setFuture(java.util.concurrent.Future) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_requestDismiss_0 +okhttp3.internal.connection.StreamAllocation: java.lang.String toString() +com.google.android.material.R$color: int dim_foreground_disabled_material_dark +com.google.android.material.R$styleable: int MenuItem_iconTintMode +james.adaptiveicon.R$attr: int editTextColor +com.google.android.material.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_shapeAppearanceOverlay +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void cancel() +wangdaye.com.geometricweather.R$id: int grassTitle +com.jaredrummler.android.colorpicker.R$style: int Widget_Compat_NotificationActionText +androidx.customview.R$dimen: int notification_content_margin_start +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_shapeAppearance +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dialog +okhttp3.internal.connection.RealConnection: java.lang.String toString() +androidx.preference.R$styleable: int MenuGroup_android_menuCategory +wangdaye.com.geometricweather.R$attr: int titleEnabled +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_overflow_padding_end_material +androidx.preference.R$attr: int fontFamily +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_selectableItemBackground +wangdaye.com.geometricweather.common.basic.models.weather.Weather: boolean isDaylight(java.util.TimeZone) +com.google.android.material.R$id: int accessibility_custom_action_1 +okhttp3.WebSocket: boolean close(int,java.lang.String) +androidx.hilt.lifecycle.R$styleable +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ProgressBar +wangdaye.com.geometricweather.R$attr: int actionBarDivider +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +androidx.hilt.R$id +com.google.android.material.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets +com.bumptech.glide.load.engine.GlideException: void printStackTrace() +androidx.appcompat.R$style: int Base_V28_Theme_AppCompat_Light +okhttp3.internal.ws.WebSocketReader$FrameCallback +androidx.preference.R$attr: int gapBetweenBars +androidx.preference.R$styleable: int Toolbar_titleTextColor +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ID +com.google.android.material.R$color: int design_default_color_on_background +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: int UnitType +androidx.preference.R$styleable: int ActionBar_homeAsUpIndicator +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter name(java.lang.String) +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.LocationEntity) +wangdaye.com.geometricweather.R$color: int darkPrimary_4 +cyanogenmod.app.IProfileManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status LOADING +androidx.transition.R$dimen: int compat_control_corner_material +androidx.lifecycle.extensions.R$styleable: int Fragment_android_name +okhttp3.internal.http2.Header: java.lang.String TARGET_METHOD_UTF8 +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop +androidx.fragment.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +wangdaye.com.geometricweather.R$drawable: int weather_thunder_2 +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar_Small +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_action_inline_max_width +com.google.android.material.chip.Chip: Chip(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_alphaChannelVisible +okio.HashingSource +androidx.cardview.widget.CardView: void setMaxCardElevation(float) +james.adaptiveicon.R$styleable: int Spinner_android_popupBackground +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_pressedTranslationZ +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: int UnitType +androidx.lifecycle.Transformations$2$1: void onChanged(java.lang.Object) +androidx.constraintlayout.widget.R$dimen: int abc_panel_menu_list_width +okhttp3.CertificatePinner: void check(java.lang.String,java.security.cert.Certificate[]) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getWeatherText() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionMenuTextColor +androidx.swiperefreshlayout.R$layout: int notification_template_part_time +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber +androidx.hilt.lifecycle.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$styleable: int[] TagView +androidx.preference.R$styleable: int Toolbar_titleTextAppearance +androidx.constraintlayout.widget.R$dimen: int abc_disabled_alpha_material_dark +androidx.lifecycle.CompositeGeneratedAdaptersObserver +com.google.android.material.R$styleable: int Slider_android_valueTo +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_25 +wangdaye.com.geometricweather.R$layout: int abc_activity_chooser_view +cyanogenmod.app.StatusBarPanelCustomTile$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getO3() +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Title +com.google.android.material.R$drawable: int navigation_empty_icon +androidx.preference.PreferenceCategory: PreferenceCategory(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderAuthority +androidx.viewpager.R$styleable: int FontFamily_fontProviderPackage +com.bumptech.glide.MemoryCategory +okhttp3.internal.connection.StreamAllocation$StreamAllocationReference: java.lang.Object callStackTrace +io.reactivex.internal.queue.SpscArrayQueue: void soConsumerIndex(long) +androidx.loader.R$layout: int notification_template_icon_group +androidx.appcompat.R$styleable: int TextAppearance_android_textColorLink +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerX +cyanogenmod.themes.ThemeManager: java.util.Set mChangeListeners +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$ExpandedStyle mExpandedStyle +androidx.appcompat.resources.R$styleable: int[] FontFamilyFont +androidx.work.R$id: int tag_accessibility_pane_title +androidx.appcompat.R$color: int abc_secondary_text_material_light +androidx.appcompat.widget.SwitchCompat: void setThumbTintList(android.content.res.ColorStateList) +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification +cyanogenmod.power.PerformanceManager: boolean checkService() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA +com.turingtechnologies.materialscrollbar.R$layout: int design_bottom_navigation_item +androidx.constraintlayout.widget.R$color: int abc_search_url_text_selected +androidx.activity.R$id: int accessibility_custom_action_15 +cyanogenmod.app.ProfileGroup +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: ExecutorScheduler$DelayedRunnable(java.lang.Runnable) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index pm10 +com.google.android.material.R$styleable: int OnSwipe_maxAcceleration +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_color +okhttp3.CertificatePinner$Pin: java.lang.String pattern +com.google.android.material.R$styleable: int ProgressIndicator_growMode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX getBrandInfo() +com.google.android.material.R$styleable: int ConstraintSet_pathMotionArc +wangdaye.com.geometricweather.R$id: int peekHeight +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UpdateDate +retrofit2.OkHttpCall$NoContentResponseBody +androidx.work.impl.utils.futures.AbstractFuture$Waiter: java.lang.Thread thread +okhttp3.internal.http1.Http1Codec$FixedLengthSink: void flush() +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconGravity +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: long timeout +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Info +com.jaredrummler.android.colorpicker.R$styleable: int[] ListPreference +okhttp3.internal.tls.OkHostnameVerifier: int ALT_DNS_NAME +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int otherState +cyanogenmod.weather.IWeatherServiceProviderChangeListener +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMaxWidth +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: void setBrands(java.util.List) +okhttp3.internal.http2.Settings: int INITIAL_WINDOW_SIZE +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWindDirection +com.google.android.material.R$styleable: int[] MockView +com.google.android.material.R$layout: int select_dialog_singlechoice_material +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierDirection +com.google.android.material.bottomsheet.BottomSheetBehavior: BottomSheetBehavior(android.content.Context,android.util.AttributeSet) +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_EXISTING_UUID +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setHideMotionSpecResource(int) +androidx.vectordrawable.R$id: R$id() +okhttp3.internal.platform.AndroidPlatform: void logCloseableLeak(java.lang.String,java.lang.Object) +androidx.coordinatorlayout.R$id: int bottom +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_chainUseRtl +androidx.transition.R$dimen: int compat_notification_large_icon_max_width +james.adaptiveicon.R$string: int abc_activity_chooser_view_see_all +okhttp3.internal.http2.Huffman$Node: Huffman$Node() +com.google.android.material.chip.Chip: void setCloseIconPressed(boolean) +wangdaye.com.geometricweather.R$color: int preference_fallback_accent_color +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabText +cyanogenmod.hardware.DisplayMode$1 +com.google.android.material.R$attr: int suffixText +androidx.fragment.R$layout: R$layout() +com.google.android.material.R$style: int Base_V26_Theme_AppCompat_Light +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonPhaseDescription +android.didikee.donate.R$styleable: int[] AppCompatSeekBar +androidx.viewpager.R$id: int normal +androidx.work.R$bool: int enable_system_alarm_service_default +androidx.preference.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +okhttp3.Connection +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_landscape_header_width +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +io.reactivex.internal.observers.DeferredScalarDisposable: void dispose() +com.bumptech.glide.R$id: int info +okhttp3.internal.platform.AndroidPlatform: boolean api23IsCleartextTrafficPermitted(java.lang.String,java.lang.Class,java.lang.Object) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSo2() +retrofit2.ParameterHandler$Path: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDbz(java.lang.Integer) +android.didikee.donate.R$styleable: int TextAppearance_textLocale +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableLeft +okhttp3.internal.cache.DiskLruCache: void initialize() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: int Degrees +com.google.android.material.R$styleable: int Chip_chipIconSize +wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_container +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView +com.google.android.material.circularreveal.CircularRevealFrameLayout: int getCircularRevealScrimColor() +retrofit2.KotlinExtensions: java.lang.Object create(retrofit2.Retrofit) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: AccuCurrentResult$PrecipitationSummary$Past3Hours() +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_popupTheme +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorGravity +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_wavePeriod +okhttp3.internal.connection.RealConnection: void connectTunnel(int,int,int,okhttp3.Call,okhttp3.EventListener) +com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_ListPopupWindow +okhttp3.logging.LoggingEventListener: okhttp3.logging.HttpLoggingInterceptor$Logger logger +com.google.android.material.R$attr: int daySelectedStyle +androidx.preference.R$attr: int showTitle +androidx.constraintlayout.widget.R$attr: int textColorAlertDialogListItem +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: long dt +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_3DES_EDE_CBC_MD5 +cyanogenmod.externalviews.KeyguardExternalView$1: void onServiceDisconnected(android.content.ComponentName) +james.adaptiveicon.R$id: int search_go_btn +androidx.appcompat.R$color: int background_material_light +okhttp3.HttpUrl: java.lang.String toString() +androidx.appcompat.R$attr: int contentInsetLeft +io.reactivex.Observable: io.reactivex.Maybe elementAt(long) +androidx.constraintlayout.widget.R$dimen: int abc_text_size_title_material +com.jaredrummler.android.colorpicker.R$attr: int actionBarTabBarStyle +com.google.android.material.R$dimen: int mtrl_badge_text_horizontal_edge_offset +androidx.vectordrawable.animated.R$id: int info +androidx.constraintlayout.widget.R$attr: int thumbTint +cyanogenmod.library.R$styleable: R$styleable() cyanogenmod.media.MediaRecorder: java.lang.String CAPTURE_AUDIO_HOTWORD_PERMISSION -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderFetchStrategy -com.google.android.material.R$attr: int expandedTitleMarginBottom -com.jaredrummler.android.colorpicker.R$style: int Base_DialogWindowTitle_AppCompat -androidx.constraintlayout.widget.R$styleable: int Transition_constraintSetEnd -androidx.appcompat.R$attr: int subtitleTextStyle -wangdaye.com.geometricweather.R$attr: int waveDecay -com.google.android.material.R$id: int NO_DEBUG -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabText -com.google.android.material.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -androidx.appcompat.R$attr: int backgroundTintMode -wangdaye.com.geometricweather.R$string: int feedback_click_toggle -retrofit2.converter.gson.GsonConverterFactory: GsonConverterFactory(com.google.gson.Gson) -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void otherComplete() -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_DEFAULT_INDEX -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: void run() -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getHideMotionSpec() -wangdaye.com.geometricweather.R$string: int bottom_sheet_behavior -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow3h -cyanogenmod.profiles.StreamSettings: void readFromParcel(android.os.Parcel) -com.jaredrummler.android.colorpicker.ColorPreferenceCompat -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener getRequestListener() -com.google.android.material.transformation.FabTransformationScrimBehavior: FabTransformationScrimBehavior() -androidx.hilt.R$id: int accessibility_custom_action_4 -com.google.android.material.R$styleable: int ConstraintSet_deriveConstraintsFrom -androidx.preference.R$string -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -androidx.appcompat.R$styleable: int[] AlertDialog -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -okhttp3.internal.http2.Http2Connection$6: int val$byteCount -okhttp3.internal.ws.RealWebSocket: long CANCEL_AFTER_CLOSE_MILLIS -com.google.android.material.progressindicator.ProgressIndicator: void setProgressDrawable(android.graphics.drawable.Drawable) -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_min -james.adaptiveicon.R$attr: int actionModeSelectAllDrawable -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_transitionPathRotate -androidx.constraintlayout.utils.widget.ImageFilterButton: void setRound(float) -android.didikee.donate.R$style: int Base_DialogWindowTitleBackground_AppCompat -cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String TIMEZONE_NAME -android.didikee.donate.R$layout: int abc_screen_content_include -com.google.android.material.button.MaterialButtonToggleGroup: int getFirstVisibleChildIndex() -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat -wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_big_view -wangdaye.com.geometricweather.R$color: int colorSearchBarBackground -android.didikee.donate.R$attr: int actionViewClass -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver this$0 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeFindDrawable -wangdaye.com.geometricweather.R$string: int key_icon_provider -com.google.android.material.R$styleable: int Toolbar_subtitleTextColor -wangdaye.com.geometricweather.R$layout: int design_layout_snackbar_include -okio.Options: okio.ByteString[] byteStrings -com.google.android.material.chip.Chip: void setOnCheckedChangeListenerInternal(android.widget.CompoundButton$OnCheckedChangeListener) -androidx.constraintlayout.widget.R$color: int androidx_core_ripple_material_light -okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,java.lang.String,boolean,boolean,boolean,boolean) -wangdaye.com.geometricweather.R$id: int scale -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton_Overflow -androidx.constraintlayout.widget.R$styleable: int[] KeyCycle -okio.BufferedSource: long indexOf(byte) -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DarkActionBar -io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.SingleSource) -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String getKey(wangdaye.com.geometricweather.db.entities.LocationEntity) -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_menu -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_go_search_api_material -cyanogenmod.app.IProfileManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupMenu -androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_indicator_material -androidx.appcompat.R$dimen: int abc_dropdownitem_icon_width -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitation() -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void dispose() -james.adaptiveicon.R$styleable: int[] MenuGroup -io.reactivex.internal.observers.DeferredScalarDisposable: void clear() -androidx.work.R$dimen: int notification_top_pad_large_text +android.didikee.donate.R$attr: int titleMarginBottom +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_28 +androidx.appcompat.R$styleable: int[] AppCompatTextHelper +com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar +androidx.constraintlayout.widget.R$attr: int thumbTextPadding +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void dispose() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_width +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_horizontal_padding +retrofit2.Platform$Android$MainThreadExecutor +io.reactivex.Observable: io.reactivex.Single toSortedList(java.util.Comparator) +okhttp3.WebSocketListener: void onFailure(okhttp3.WebSocket,java.lang.Throwable,okhttp3.Response) +com.xw.repo.bubbleseekbar.R$attr: int windowFixedHeightMajor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int CloudCover +cyanogenmod.externalviews.ExternalViewProviderService: boolean DEBUG +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: void run() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float co +james.adaptiveicon.R$drawable: int abc_item_background_holo_dark +org.greenrobot.greendao.AbstractDao: long executeInsert(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement,boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_elevation +android.didikee.donate.R$attr: int colorPrimary +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_TextView_SpinnerItem +wangdaye.com.geometricweather.R$string: int feedback_refresh_notification_now +okhttp3.logging.LoggingEventListener: void connectFailed(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol,java.io.IOException) +cyanogenmod.hardware.CMHardwareManager: boolean get(int) +com.google.android.material.circularreveal.CircularRevealRelativeLayout: CircularRevealRelativeLayout(android.content.Context) +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: ObservableReplay$SizeAndTimeBoundReplayBuffer(int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextColor +wangdaye.com.geometricweather.R$layout: int preference_information_material +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context,android.util.AttributeSet) +androidx.drawerlayout.R$styleable: int GradientColor_android_endX +com.google.android.material.R$style: int Widget_AppCompat_Light_PopupMenu +wangdaye.com.geometricweather.R$xml: int widget_text +com.turingtechnologies.materialscrollbar.R$attr: int materialCardViewStyle +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String EnglishName +wangdaye.com.geometricweather.R$attr: int layout_goneMarginRight +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize +com.google.gson.FieldNamingPolicy$3: java.lang.String translateName(java.lang.reflect.Field) +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconTint +androidx.constraintlayout.widget.R$attr: int gapBetweenBars +androidx.constraintlayout.widget.R$attr: int actionButtonStyle +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean isEnabled() +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric Metric +androidx.appcompat.R$dimen: int hint_alpha_material_dark +androidx.preference.R$styleable: int Preference_allowDividerAbove +com.google.android.material.R$styleable: int Chip_chipStrokeWidth +wangdaye.com.geometricweather.R$color: int mtrl_filled_stroke_color +androidx.constraintlayout.widget.R$color: int accent_material_dark +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_default_thickness +androidx.preference.R$color: int material_grey_100 +wangdaye.com.geometricweather.R$attr: int chipSpacing +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.util.Date getDate() +com.jaredrummler.android.colorpicker.ColorPanelView: void setOriginalColor(int) +androidx.core.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.R$attr: int tooltipStyle +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_stroke_size +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_pixel +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +com.google.android.material.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.preference.R$dimen: int notification_small_icon_background_padding +cyanogenmod.app.ICMTelephonyManager: void setDefaultSmsSub(int) +okhttp3.Cache$CacheRequestImpl$1: okhttp3.Cache val$this$0 +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_orderInCategory +androidx.preference.R$styleable: int GradientColor_android_gradientRadius +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Title +retrofit2.Retrofit$Builder +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String timezone +com.jaredrummler.android.colorpicker.R$id: int transparency_layout +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitationProbability() +android.didikee.donate.R$drawable: int abc_ratingbar_small_material +cyanogenmod.app.Profile$NotificationLightMode: int DEFAULT +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String windIcon +wangdaye.com.geometricweather.R$layout: int dialog_learn_more_about_geocoder +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$StreamTimeout readTimeout +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void removeFirst() +io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator valueOf(java.lang.String) +wangdaye.com.geometricweather.R$string: int error_icon_content_description +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_switchStyle +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_15 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActivityChooserView +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalBias +androidx.lifecycle.SavedStateHandle$SavingStateLiveData +com.google.android.material.R$dimen: int material_clock_period_toggle_height +okio.Buffer: long readDecimalLong() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupMenu +com.turingtechnologies.materialscrollbar.R$color: int cardview_dark_background +okio.BufferedSink: okio.BufferedSink writeLong(long) +androidx.constraintlayout.helper.widget.Flow: void setMaxElementsWrap(int) +androidx.preference.R$dimen: int abc_list_item_height_material +com.google.android.material.textfield.TextInputLayout: com.google.android.material.internal.CheckableImageButton getEndIconToUpdateDummyDrawable() +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderAuthority +androidx.constraintlayout.widget.R$layout: int notification_template_part_time +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function) +androidx.preference.R$drawable: int notification_action_background +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +androidx.viewpager.R$styleable: int FontFamily_fontProviderCerts +okhttp3.MediaType: boolean equals(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$id: int action_bar +android.support.v4.os.IResultReceiver$Stub: android.support.v4.os.IResultReceiver asInterface(android.os.IBinder) +okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_1 +wangdaye.com.geometricweather.db.entities.DailyEntity: void setAqiText(java.lang.String) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: DeferredScalarSubscription(org.reactivestreams.Subscriber) +wangdaye.com.geometricweather.R$styleable: int RoundCornerTransition_radius_from +okio.Utf8: Utf8() +androidx.hilt.work.R$id: int tag_transition_group +com.google.android.material.R$id: int path +androidx.cardview.R$attr: int cardCornerRadius +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView_Menu +okhttp3.OkHttpClient$Builder: boolean followRedirects +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Medium +wangdaye.com.geometricweather.R$id: int activity_preview_icon_toolbar +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_borderlessButtonStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: float getHoursOfSun() +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogTitle +wangdaye.com.geometricweather.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +androidx.recyclerview.R$styleable: int GradientColor_android_centerX +io.reactivex.Observable: io.reactivex.Single lastOrError() +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeManager sInstance +androidx.constraintlayout.widget.R$id: int search_button +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_updatesContinuously +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onError(java.lang.Throwable) +android.didikee.donate.R$style: int Widget_AppCompat_PopupMenu_Overflow +androidx.constraintlayout.widget.R$id: int bottom +wangdaye.com.geometricweather.R$animator: int weather_clear_day_1 +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListPopupWindow +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean cancel(java.util.concurrent.atomic.AtomicReference) +com.turingtechnologies.materialscrollbar.R$id: int alertTitle +wangdaye.com.geometricweather.R$styleable: int Spinner_popupTheme +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean isDisposed() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextView +wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundTodayForecastUpdateService: Hilt_ForegroundTodayForecastUpdateService() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_corner_radius_medium +androidx.constraintlayout.widget.R$styleable: int View_android_focusable +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: cyanogenmod.app.CustomTileListenerService this$0 +com.google.android.material.checkbox.MaterialCheckBox: android.content.res.ColorStateList getMaterialThemeColorsTintList() +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String getProviderName(android.content.Context) +wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_horizontal +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_content_inset_with_nav +com.turingtechnologies.materialscrollbar.R$attr: int overlapAnchor +com.google.android.material.textfield.TextInputLayout +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void dispose() +com.bumptech.glide.integration.okhttp.R$dimen: int notification_top_pad_large_text +com.google.android.material.R$id: int icon_group +com.turingtechnologies.materialscrollbar.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.R$dimen: int widget_current_weather_icon_size +james.adaptiveicon.R$style: int Platform_AppCompat_Light +androidx.appcompat.R$id: int contentPanel +androidx.constraintlayout.widget.R$styleable: int[] ViewBackgroundHelper +cyanogenmod.providers.ThemesContract: ThemesContract() +androidx.hilt.R$id: int accessibility_custom_action_6 +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onNext(java.lang.Object) +com.google.gson.stream.JsonWriter: void flush() +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_switchTextOn +com.jaredrummler.android.colorpicker.R$drawable: int abc_tab_indicator_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_editor_absoluteY +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: java.util.concurrent.atomic.AtomicReference observers +cyanogenmod.app.CustomTile$ExpandedItem: void writeToParcel(android.os.Parcel,int) +androidx.appcompat.resources.R$id: int accessibility_custom_action_7 +james.adaptiveicon.R$id: int activity_chooser_view_content +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int BLUSTERY +androidx.appcompat.R$attr: int lineHeight +wangdaye.com.geometricweather.R$drawable: int notif_temp_120 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind +androidx.hilt.lifecycle.R$attr: R$attr() +androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveDataInternal(java.lang.String,boolean,java.lang.Object) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long serialVersionUID +wangdaye.com.geometricweather.main.MainActivity +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconMode +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) +android.didikee.donate.R$attr: int dialogPreferredPadding +androidx.appcompat.R$style: int Base_V26_Widget_AppCompat_Toolbar +androidx.core.R$id: int accessibility_custom_action_17 +okhttp3.internal.http2.Hpack$Reader: void insertIntoDynamicTable(int,okhttp3.internal.http2.Header) +com.google.android.material.R$layout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX names +androidx.appcompat.widget.AbsActionBarView: int getContentHeight() +okio.ForwardingTimeout: ForwardingTimeout(okio.Timeout) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: double Value +com.google.android.material.R$styleable: int[] OnClick +com.google.android.material.R$styleable: int LinearLayoutCompat_android_weightSum +wangdaye.com.geometricweather.R$attr: int dragThreshold +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_icon +wangdaye.com.geometricweather.R$layout: int abc_cascading_menu_item_layout +okhttp3.OkHttpClient: int writeTimeoutMillis() +androidx.dynamicanimation.R$drawable: R$drawable() +okhttp3.internal.http2.Http2Connection$1: okhttp3.internal.http2.ErrorCode val$errorCode +androidx.constraintlayout.widget.R$dimen: int abc_seekbar_track_background_height_material +wangdaye.com.geometricweather.R$id: int textEnd +androidx.preference.R$attr: int contentInsetRight +com.jaredrummler.android.colorpicker.R$dimen: int hint_pressed_alpha_material_dark +com.google.android.material.R$string: int mtrl_picker_text_input_date_range_end_hint +androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_activated_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$anim: int abc_popup_exit +androidx.constraintlayout.widget.R$attr: int selectableItemBackgroundBorderless +io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) +okhttp3.Response: okhttp3.Response priorResponse() +cyanogenmod.media.MediaRecorder$AudioSource +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult +androidx.hilt.R$id: int accessibility_custom_action_27 +wangdaye.com.geometricweather.R$plurals: int mtrl_badge_content_description +androidx.vectordrawable.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$drawable: int notif_temp_18 +cyanogenmod.weather.WeatherInfo: void writeToParcel(android.os.Parcel,int) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +cyanogenmod.weather.WeatherLocation: java.lang.String access$402(cyanogenmod.weather.WeatherLocation,java.lang.String) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_1 +androidx.viewpager2.R$color: R$color() +com.google.android.material.R$styleable: int ImageFilterView_saturation +cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_VIBRATE +androidx.transition.R$attr: int font +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_text_padding +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_min_width_minor +retrofit2.OkHttpCall: okhttp3.Call rawCall +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeCloudCover +androidx.appcompat.R$id: int action_context_bar +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder socketFactory(javax.net.SocketFactory) +io.reactivex.internal.observers.DeferredScalarDisposable: io.reactivex.Observer downstream +com.google.gson.stream.JsonReader: int lineStart +okhttp3.internal.http2.Http2Writer: void synStream(boolean,int,int,java.util.List) +com.turingtechnologies.materialscrollbar.R$styleable: R$styleable() +com.google.android.material.internal.FlowLayout: void setLineSpacing(int) +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.R$attr: int elevation +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SHOWERS +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.preference.R$styleable: int TextAppearance_android_textStyle +com.google.android.material.R$style: int Theme_AppCompat_DayNight_DarkActionBar +com.jaredrummler.android.colorpicker.R$attr: int fastScrollHorizontalThumbDrawable +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +wangdaye.com.geometricweather.R$styleable: int[] MaterialAutoCompleteTextView +androidx.lifecycle.LiveDataReactiveStreams: androidx.lifecycle.LiveData fromPublisher(org.reactivestreams.Publisher) +wangdaye.com.geometricweather.R$styleable: int ActionBar_subtitle +com.github.rahatarmanahmed.cpv.R$bool +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathEnd() +androidx.appcompat.R$id: int line1 +cyanogenmod.app.ILiveLockScreenManager$Stub +wangdaye.com.geometricweather.R$attr: int selectionRequired +androidx.fragment.R$dimen: int compat_button_inset_horizontal_material +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_behavior +james.adaptiveicon.AdaptiveIconView: android.graphics.Path getPath() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeShareDrawable +androidx.loader.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_to_on_mtrl_015 +wangdaye.com.geometricweather.background.service.Hilt_CMWeatherProviderService: Hilt_CMWeatherProviderService() +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State min(androidx.lifecycle.Lifecycle$State,androidx.lifecycle.Lifecycle$State) +com.google.gson.internal.JsonReaderInternalAccess: com.google.gson.internal.JsonReaderInternalAccess INSTANCE +org.greenrobot.greendao.AbstractDao: java.lang.Object loadUniqueAndCloseCursor(android.database.Cursor) +wangdaye.com.geometricweather.R$style: int notification_title_text +com.google.android.material.R$styleable: int KeyTimeCycle_android_translationY +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_4_material +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +retrofit2.Invocation: java.lang.String toString() +okhttp3.Headers$Builder: Headers$Builder() +wangdaye.com.geometricweather.R$attr: int hintEnabled +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float Lead +cyanogenmod.weather.WeatherInfo: double access$702(cyanogenmod.weather.WeatherInfo,double) +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay[] values() +androidx.preference.R$styleable: int SearchView_iconifiedByDefault +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMenuItemView +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_arrow +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 +androidx.lifecycle.MediatorLiveData$Source: MediatorLiveData$Source(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) +cyanogenmod.app.CMStatusBarManager: void removeTileAsUser(java.lang.String,int,android.os.UserHandle) +wangdaye.com.geometricweather.R$layout: int text_view_with_theme_line_height +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.HistoryEntity,int) +okhttp3.internal.ws.WebSocketWriter$FrameSink +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onNext(java.lang.Object) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarSize +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchPadding +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_22 +james.adaptiveicon.R$attr: int actionBarItemBackground +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Spinner_Underlined +james.adaptiveicon.R$attr: int actionModeCutDrawable +okhttp3.internal.http2.Http2Connection$2: Http2Connection$2(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,long) +com.google.android.material.R$style: int Widget_AppCompat_ButtonBar +com.jaredrummler.android.colorpicker.R$attr: int navigationContentDescription +androidx.coordinatorlayout.R$id: int action_image +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_HUMIDITY +wangdaye.com.geometricweather.R$attr: int layout_constrainedWidth +wangdaye.com.geometricweather.R$array: int weather_source_values +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_toBottomOf +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder value(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_brightness +androidx.viewpager.R$id: int text2 +androidx.dynamicanimation.R$dimen: int notification_media_narrow_margin +cyanogenmod.providers.CMSettings$System: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Borderless +com.google.android.material.R$drawable: int btn_checkbox_unchecked_mtrl +com.jaredrummler.android.colorpicker.R$style: int Preference_Material +androidx.preference.R$attr: int tintMode +androidx.lifecycle.extensions.R$anim: int fragment_open_exit +com.turingtechnologies.materialscrollbar.R$attr: int state_lifted +com.google.android.material.R$styleable: int MenuView_android_itemBackground +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_dither +org.greenrobot.greendao.DaoException: long serialVersionUID +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean delayErrors +com.xw.repo.bubbleseekbar.R$id: int scrollView +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_searchViewStyle +james.adaptiveicon.R$dimen: int abc_dialog_fixed_width_minor +androidx.lifecycle.LifecycleRegistry: int getObserverCount() +androidx.constraintlayout.widget.R$color: int ripple_material_dark +wangdaye.com.geometricweather.R$id: int hideable +com.google.android.material.R$attr: int percentHeight +okhttp3.ConnectionPool: int connectionCount() +okhttp3.MultipartBody$Part: okhttp3.Headers headers +androidx.constraintlayout.widget.R$attr: int height +com.google.android.material.R$id: int circular +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_BottomNavigationView +wangdaye.com.geometricweather.R$attr: int dialogLayout +okhttp3.internal.connection.StreamAllocation$StreamAllocationReference: StreamAllocation$StreamAllocationReference(okhttp3.internal.connection.StreamAllocation,java.lang.Object) +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_radius +com.google.android.material.R$layout: int material_time_chip +com.google.android.material.R$attr: int colorOnPrimary +android.didikee.donate.R$drawable: int abc_seekbar_track_material +android.didikee.donate.R$attr: int colorBackgroundFloating +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontSpinner +wangdaye.com.geometricweather.R$styleable: int[] Preference +androidx.viewpager2.R$id: int accessibility_custom_action_6 +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onComplete() +androidx.loader.R$drawable: int notification_bg_normal_pressed +com.github.rahatarmanahmed.cpv.CircularProgressView: boolean isIndeterminate() +com.google.android.material.R$attr: int boxCollapsedPaddingTop +com.jaredrummler.android.colorpicker.R$color: int secondary_text_disabled_material_light +com.google.android.material.textfield.TextInputLayout: void setEditText(android.widget.EditText) +com.google.android.material.slider.RangeSlider: void setHaloRadius(int) +androidx.viewpager2.R$attr: int fontProviderCerts +androidx.appcompat.view.menu.ExpandedMenuView: ExpandedMenuView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$layout: int select_dialog_singlechoice_material +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius +com.xw.repo.bubbleseekbar.R$color: int tooltip_background_dark +androidx.preference.R$id: int search_close_btn +okhttp3.OkHttpClient$Builder: java.net.Proxy proxy +androidx.customview.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String longitude +androidx.preference.R$styleable: int PopupWindowBackgroundState_state_above_anchor +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_textAppearance +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getAlarmThemePackageName() +com.jaredrummler.android.colorpicker.R$attr: int queryHint +okio.RealBufferedSource$1: okio.RealBufferedSource this$0 +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginStart +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginBottom +androidx.appcompat.R$attr: int submitBackground +com.google.android.material.R$dimen: int mtrl_slider_label_square_side +wangdaye.com.geometricweather.R$drawable: int ic_location +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void goAway(int,okhttp3.internal.http2.ErrorCode,okio.ByteString) +android.didikee.donate.R$id: int action_bar_title +okhttp3.Response$Builder: okhttp3.Response$Builder request(okhttp3.Request) +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotationY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX() +androidx.appcompat.R$style: int Widget_AppCompat_Light_PopupMenu +james.adaptiveicon.R$dimen: int abc_dialog_min_width_major +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeStepGranularity +androidx.appcompat.R$attr: int actionBarSize +wangdaye.com.geometricweather.R$attr: int targetId +okhttp3.Dns$1: Dns$1() +androidx.appcompat.resources.R$dimen: int compat_notification_large_icon_max_width +com.bumptech.glide.GeneratedAppGlideModule: GeneratedAppGlideModule() +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_29 +com.google.android.material.R$attr: int expandedTitleMarginEnd +androidx.fragment.app.FragmentTabHost: void setOnTabChangedListener(android.widget.TabHost$OnTabChangeListener) +wangdaye.com.geometricweather.R$string: int content_des_add_current_location +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: org.reactivestreams.Subscription upstream +android.support.v4.os.ResultReceiver: ResultReceiver(android.os.Parcel) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_5 +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_onDetachedFromWindow +androidx.recyclerview.widget.RecyclerView: void setOnFlingListener(androidx.recyclerview.widget.RecyclerView$OnFlingListener) +androidx.constraintlayout.widget.R$styleable: int MotionHelper_onShow +androidx.preference.R$styleable: int MultiSelectListPreference_entries +cyanogenmod.themes.ThemeChangeRequest$1: cyanogenmod.themes.ThemeChangeRequest[] newArray(int) +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_timeIcon +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_text_size +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Longitude +com.jaredrummler.android.colorpicker.R$dimen: int abc_search_view_preferred_height +com.google.android.material.radiobutton.MaterialRadioButton +androidx.appcompat.resources.R$id: int accessibility_custom_action_9 +com.google.android.material.R$style: int Widget_MaterialComponents_TextView +androidx.appcompat.R$dimen: int abc_text_size_menu_material +okhttp3.RealCall$AsyncCall: RealCall$AsyncCall(okhttp3.RealCall,okhttp3.Callback) +androidx.coordinatorlayout.R$dimen: int notification_big_circle_margin +cyanogenmod.externalviews.KeyguardExternalView$2: boolean requestDismissAndStartActivity(android.content.Intent) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getMoonSetDate() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl mImpl +android.didikee.donate.R$style: int Theme_AppCompat_Light +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_body_1_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial +androidx.fragment.R$id: int accessibility_custom_action_10 +cyanogenmod.app.CMContextConstants: java.lang.String CM_PERFORMANCE_SERVICE +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void dispose() +cyanogenmod.weather.WeatherLocation: void writeToParcel(android.os.Parcel,int) +com.google.android.material.R$attr: int expandedHintEnabled +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_dither +com.google.android.material.R$styleable: int StateListDrawable_android_dither +androidx.recyclerview.widget.LinearLayoutManager +androidx.constraintlayout.widget.R$styleable: int[] SearchView +androidx.lifecycle.ViewModelProvider$KeyedFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +com.jaredrummler.android.colorpicker.R$attr: int buttonBarNegativeButtonStyle +androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet) +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectionSpecs(java.util.List) +com.google.android.material.R$dimen: int mtrl_extended_fab_elevation +com.google.android.material.R$dimen: int design_bottom_navigation_active_item_max_width +androidx.constraintlayout.widget.R$attr: int limitBoundsTo +com.google.android.material.R$attr: int customStringValue +cyanogenmod.weather.WeatherLocation: java.lang.String mCountry +com.turingtechnologies.materialscrollbar.R$attr: int contentScrim +wangdaye.com.geometricweather.R$id: int text_input_error_icon +cyanogenmod.weather.RequestInfo: RequestInfo(android.os.Parcel) +com.google.android.material.R$styleable: int Constraint_flow_verticalBias +retrofit2.ParameterHandler$Path: int p +com.google.android.material.R$styleable: int MaterialCalendarItem_itemShapeAppearanceOverlay +okhttp3.CertificatePinner$Pin +android.didikee.donate.R$drawable: int abc_scrubber_primary_mtrl_alpha +androidx.preference.R$styleable: int PreferenceTheme_editTextPreferenceStyle +androidx.preference.R$id: int action_bar_spinner +retrofit2.ParameterHandler$FieldMap: ParameterHandler$FieldMap(java.lang.reflect.Method,int,retrofit2.Converter,boolean) +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorGravity(int) +androidx.coordinatorlayout.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPubTime() +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.Lifecycle getLifecycle() +com.google.gson.stream.JsonWriter: int[] stack +cyanogenmod.profiles.LockSettings: int mValue +okhttp3.CipherSuite: java.lang.String javaName() +james.adaptiveicon.R$styleable: int SearchView_submitBackground +wangdaye.com.geometricweather.R$id: int rounded +androidx.constraintlayout.widget.R$dimen: int tooltip_margin +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: IExternalViewProviderFactory$Stub() +com.google.android.material.R$layout: int material_timepicker_dialog +wangdaye.com.geometricweather.R$color: int abc_search_url_text +retrofit2.Utils: java.lang.reflect.Type resolve(java.lang.reflect.Type,java.lang.Class,java.lang.reflect.Type) +wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line2_head_interpolator +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1 +wangdaye.com.geometricweather.R$dimen: int abc_button_padding_vertical_material +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_enabled +wangdaye.com.geometricweather.R$layout: int item_aqi +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_interval +android.didikee.donate.R$layout: int abc_action_mode_bar +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_inputType +wangdaye.com.geometricweather.R$string: int content_des_pm10 +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginStart +androidx.constraintlayout.widget.R$attr: int layout_goneMarginBottom +retrofit2.BuiltInConverters +wangdaye.com.geometricweather.R$id: int save_non_transition_alpha +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory HIGH +androidx.hilt.work.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality airQuality +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: long timeout +com.google.android.material.R$style: int Platform_V25_AppCompat_Light +wangdaye.com.geometricweather.R$attr: int overlay +com.turingtechnologies.materialscrollbar.R$id: int parent_matrix +androidx.constraintlayout.widget.R$id: int src_in +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemMaxLines +androidx.viewpager.R$attr: int alpha +io.reactivex.internal.observers.BasicIntQueueDisposable: boolean offer(java.lang.Object,java.lang.Object) +com.xw.repo.bubbleseekbar.R$attr: int titleMarginEnd +retrofit2.RequestFactory$Builder: java.lang.reflect.Method method +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator +okhttp3.EventListener: void connectStart(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy) +androidx.viewpager.R$drawable +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$drawable: int notif_temp_12 +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable +wangdaye.com.geometricweather.R$id: int item_alert_subtitle +io.reactivex.internal.observers.LambdaObserver: void dispose() +wangdaye.com.geometricweather.R$dimen: int design_navigation_icon_padding +androidx.preference.R$drawable: int notification_template_icon_low_bg +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacing +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +com.google.android.material.R$styleable: int[] AnimatedStateListDrawableTransition +wangdaye.com.geometricweather.R$color: int colorPrimary +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: java.lang.Object[] latest +android.didikee.donate.R$drawable: int abc_ic_voice_search_api_material +androidx.preference.R$styleable: int Toolbar_contentInsetStartWithNavigation +james.adaptiveicon.R$attr: int listPreferredItemPaddingRight +androidx.drawerlayout.R$id: int async +com.jaredrummler.android.colorpicker.R$dimen: int notification_big_circle_margin +okhttp3.internal.http.StatusLine: okhttp3.internal.http.StatusLine get(okhttp3.Response) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRealFeelTemperature +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_toId +com.google.android.material.R$dimen: int mtrl_low_ripple_default_alpha +wangdaye.com.geometricweather.weather.apis.CNWeatherApi +com.google.android.material.R$attr: int drawableLeftCompat +androidx.core.R$styleable: int[] FontFamilyFont +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackInactiveTintList() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: java.lang.String Unit +cyanogenmod.externalviews.KeyguardExternalView$6: void run() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +androidx.lifecycle.LiveData$ObserverWrapper: boolean shouldBeActive() +com.google.android.material.textfield.TextInputLayout: void setEndIconOnLongClickListener(android.view.View$OnLongClickListener) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias +wangdaye.com.geometricweather.R$color: int error_color_material_dark +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceStyle +androidx.preference.R$attr: int actionModeCloseButtonStyle +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setEnabled(boolean) +androidx.appcompat.widget.SearchView +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupMenu +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelMenuListWidth +wangdaye.com.geometricweather.R$string: int mtrl_picker_save +androidx.loader.R$drawable: int notification_action_background +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextContainer +androidx.appcompat.R$drawable: int abc_ic_star_half_black_16dp +cyanogenmod.app.CMContextConstants: java.lang.String CM_TELEPHONY_MANAGER_SERVICE +wangdaye.com.geometricweather.R$drawable: int widget_clock_day_details +androidx.loader.R$layout: int notification_template_custom_big +okhttp3.Cache: void trackConditionalCacheHit() +okhttp3.internal.http2.Http2Reader$ContinuationSource: okio.Timeout timeout() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setPostalCode(java.lang.String) +androidx.appcompat.R$drawable: int abc_btn_radio_material_anim +james.adaptiveicon.R$attr: int showDividers +com.google.android.material.R$styleable: int SnackbarLayout_animationMode +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Primary +cyanogenmod.providers.CMSettings: boolean LOCAL_LOGV +wangdaye.com.geometricweather.R$styleable: int Chip_chipEndPadding +james.adaptiveicon.R$styleable: int[] ActionBarLayout +com.xw.repo.bubbleseekbar.R$attr: int subMenuArrow +james.adaptiveicon.R$attr: int actionViewClass +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String so2Desc +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_toRightOf +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric +androidx.core.widget.ContentLoadingProgressBar: ContentLoadingProgressBar(android.content.Context) +wangdaye.com.geometricweather.R$attr: int keylines +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextTextAppearance +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_ttcIndex +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_focusable +okio.AsyncTimeout: AsyncTimeout() +okhttp3.HttpUrl: java.lang.String encodedQuery() +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Suffix +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.R$id: int wrap +androidx.preference.R$drawable: int abc_btn_radio_material +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_cancelLiveLockScreen +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig dailyEntityDaoConfig +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSmallPopupMenu +io.reactivex.internal.util.ArrayListSupplier: java.lang.Object call() +android.support.v4.os.ResultReceiver$MyResultReceiver +com.google.android.material.R$attr: int placeholder_emptyVisibility +androidx.hilt.lifecycle.R$styleable: int[] Fragment +io.reactivex.internal.schedulers.ScheduledDirectTask: ScheduledDirectTask(java.lang.Runnable) +com.google.android.material.R$attr: int colorControlActivated +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedHeightMinor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: java.lang.String English +androidx.constraintlayout.widget.R$styleable: int Constraint_android_transformPivotX +wangdaye.com.geometricweather.R$styleable: int Preference_title +retrofit2.ParameterHandler$RawPart: retrofit2.ParameterHandler$RawPart INSTANCE +androidx.recyclerview.widget.RecyclerView: boolean isLayoutSuppressed() +com.turingtechnologies.materialscrollbar.R$id: int action_bar_title +okio.BufferedSource: okio.ByteString readByteString(long) +okhttp3.internal.ws.WebSocketWriter: void writeMessageFrame(int,long,boolean,boolean) +com.xw.repo.bubbleseekbar.R$styleable: int[] CompoundButton io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void disposeBoundary() -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_dividerPadding -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: int leftIndex -wangdaye.com.geometricweather.Hilt_GeometricWeather: Hilt_GeometricWeather() -androidx.lifecycle.LiveData: boolean hasObservers() -wangdaye.com.geometricweather.R$styleable: int ArcProgress_max -okhttp3.internal.ws.WebSocketReader: okio.Buffer messageFrameBuffer -androidx.appcompat.R$attr: int switchStyle -androidx.activity.R$drawable: R$drawable() -com.turingtechnologies.materialscrollbar.R$styleable: int[] FloatingActionButton_Behavior_Layout -androidx.appcompat.R$styleable: int SwitchCompat_thumbTint -wangdaye.com.geometricweather.R$drawable: int ic_sunset -com.turingtechnologies.materialscrollbar.R$string: int path_password_strike_through -james.adaptiveicon.R$attr: int actionOverflowMenuStyle -okhttp3.CipherSuite: java.lang.String toString() -androidx.preference.R$dimen: int abc_text_size_large_material -androidx.appcompat.R$id: int title_template -wangdaye.com.geometricweather.R$drawable: int notif_temp_14 -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: java.lang.String textCount -androidx.appcompat.widget.AppCompatSpinner: void setAdapter(android.widget.Adapter) -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_id -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$styleable: int FlowLayout_itemSpacing -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListMenuView -com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_barLength -com.google.android.material.R$id: int touch_outside -wangdaye.com.geometricweather.R$drawable: int notif_temp_38 -androidx.appcompat.R$id: int accessibility_custom_action_31 -androidx.viewpager.R$styleable: int FontFamilyFont_fontWeight -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData -okio.SegmentedByteString: byte[][] segments -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int SearchView_queryHint -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean removeProfile(cyanogenmod.app.Profile) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: int rightIndex -com.google.android.material.R$string: int mtrl_picker_confirm -com.google.android.material.R$styleable: int[] PopupWindow -androidx.preference.R$attr: int buttonTint -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_fontVariationSettings -androidx.activity.R$id: int accessibility_custom_action_24 -androidx.preference.R$styleable: int PreferenceFragment_android_dividerHeight -com.google.android.material.R$dimen: int design_navigation_elevation -com.bumptech.glide.integration.okhttp.R$layout: int notification_template_custom_big +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_outline_box_expanded_padding +androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +okhttp3.internal.http2.StreamResetException +retrofit2.HttpException: java.lang.String getMessage(retrofit2.Response) +com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getIconTintMode() +okhttp3.internal.http.HttpHeaders: boolean hasVaryAll(okhttp3.Headers) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getWeatherSource() +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void onResponse(retrofit2.Call,retrofit2.Response) +androidx.recyclerview.widget.RecyclerView: void setPreserveFocusAfterLayout(boolean) +wangdaye.com.geometricweather.R$attr: int listPreferredItemHeightLarge +com.google.android.material.R$styleable: int Constraint_chainUseRtl +androidx.activity.R$layout: int notification_template_custom_big +okhttp3.ResponseBody$1: long contentLength() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler,boolean) +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Light +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean offer(java.lang.Object) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int TORNADO +wangdaye.com.geometricweather.R$styleable: int Tooltip_backgroundTint +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onSubscribe(org.reactivestreams.Subscription) +androidx.appcompat.R$attr: int spinBars +androidx.lifecycle.ClassesInfoCache$MethodReference: int mCallType +wangdaye.com.geometricweather.R$id: int smallLabel +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int requestFusion(int) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_Solid +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogStyle +com.jaredrummler.android.colorpicker.R$attr: int toolbarNavigationButtonStyle +wangdaye.com.geometricweather.R$layout: int widget_remote +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean) +io.reactivex.Observable: io.reactivex.Observable skipLast(int) +retrofit2.adapter.rxjava2.HttpException: HttpException(retrofit2.Response) +com.jaredrummler.android.colorpicker.R$attr: int spinnerStyle +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +okio.Okio$2: okio.Timeout val$timeout +androidx.appcompat.R$styleable: int Toolbar_titleMargins +androidx.fragment.R$styleable: int GradientColor_android_endColor +com.google.android.material.datepicker.Month: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$string: int phase_waning_crescent +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void drain() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean aqi +androidx.lifecycle.ProcessLifecycleOwner$1: ProcessLifecycleOwner$1(androidx.lifecycle.ProcessLifecycleOwner) +com.google.android.material.textfield.TextInputLayout: void setEndIconContentDescription(int) +wangdaye.com.geometricweather.R$color: int primary_text_disabled_material_dark +wangdaye.com.geometricweather.R$layout: int activity_weather_daily +com.jaredrummler.android.colorpicker.R$attr: int thickness +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: boolean val$screenOn +com.turingtechnologies.materialscrollbar.R$attr: int panelBackground +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Red +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableItem_android_id +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void cancel() +wangdaye.com.geometricweather.R$id: int widget_week_icon_2 +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setBottomTextColor(int) +androidx.hilt.R$dimen: int notification_main_column_padding_top +com.google.android.material.R$layout: int mtrl_picker_header_title_text +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColorLink +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State getStateAfter(androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.R$color: int mtrl_chip_ripple_color +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType PNG_A +com.google.android.material.R$styleable: int TextInputLayout_expandedHintEnabled +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Call delegate +wangdaye.com.geometricweather.R$string: int abc_menu_alt_shortcut_label +wangdaye.com.geometricweather.R$id: int message +retrofit2.ParameterHandler$Part: okhttp3.Headers headers +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String pkg +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_brightness +james.adaptiveicon.R$color: int tooltip_background_dark +androidx.hilt.work.R$id: int accessibility_custom_action_17 +okio.BufferedSource: int read(byte[],int,int) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconCheckable +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean cancelled +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +okio.Buffer: okio.Buffer writeString(java.lang.String,int,int,java.nio.charset.Charset) +wangdaye.com.geometricweather.R$id: int material_timepicker_container +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.lang.String getUnit() +com.jaredrummler.android.colorpicker.R$style: int cpv_ColorPickerViewStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfSnow com.xw.repo.bubbleseekbar.R$id: int action_menu_divider -androidx.preference.R$attr: int drawableRightCompat -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: MfWarningsResult$WarningTimelaps() -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long produced -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline4 -com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context,android.util.AttributeSet,int) -com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_android_popupAnimationStyle -com.google.android.material.chip.Chip: void setCloseIconContentDescription(java.lang.CharSequence) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_checkableBehavior -androidx.preference.MultiSelectListPreference$SavedState +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldIndex(java.lang.Integer) +com.turingtechnologies.materialscrollbar.R$attr: int boxCollapsedPaddingTop +wangdaye.com.geometricweather.R$string: int feedback_delete_succeed +wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.R$string: int key_widget_trend_daily +com.jaredrummler.android.colorpicker.R$attr: int reverseLayout +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_message_margin_horizontal +james.adaptiveicon.R$dimen: int abc_edit_text_inset_top_material +cyanogenmod.externalviews.ExternalViewProviderService$1$1: ExternalViewProviderService$1$1(cyanogenmod.externalviews.ExternalViewProviderService$1,android.os.Bundle) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintStart_toStartOf +com.turingtechnologies.materialscrollbar.R$attr: int titleEnabled +androidx.coordinatorlayout.R$layout: int custom_dialog +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type[] values() +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge +androidx.appcompat.widget.AppCompatRadioButton +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_NOTIF_COUNT_VALIDATOR +androidx.viewpager.R$id: int forever +okhttp3.OkHttpClient: boolean retryOnConnectionFailure +androidx.core.R$id: int forever +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void subscribeNext() +wangdaye.com.geometricweather.R$styleable: int[] ScrimInsetsFrameLayout +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object getAndNullValue() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: java.lang.String date +com.google.android.material.R$color: int material_on_primary_emphasis_high_type +okhttp3.internal.http2.Http2Connection$1: Http2Connection$1(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okhttp3.internal.http2.ErrorCode) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitationDuration(java.lang.Float) +james.adaptiveicon.R$dimen: int abc_action_bar_overflow_padding_start_material +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_summaryOff +okio.package-info +androidx.constraintlayout.widget.R$attr: int defaultQueryHint +cyanogenmod.externalviews.ExternalViewProviderService$Provider: int DEFAULT_WINDOW_TYPE +cyanogenmod.app.Profile$LockMode: int DEFAULT +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void completion() +james.adaptiveicon.R$dimen +androidx.drawerlayout.R$id: int tag_unhandled_key_event_manager +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionMenuTextAppearance +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetStart +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX) +androidx.fragment.R$attr: R$attr() +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderFetchTimeout +cyanogenmod.hardware.CMHardwareManager: long getLtoDownloadInterval() +androidx.constraintlayout.widget.R$bool: int abc_action_bar_embed_tabs +android.didikee.donate.R$styleable: int AppCompatTheme_textColorSearchUrl +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.Long id +io.reactivex.internal.observers.ForEachWhileObserver: long serialVersionUID +okhttp3.internal.platform.JdkWithJettyBootPlatform: JdkWithJettyBootPlatform(java.lang.reflect.Method,java.lang.reflect.Method,java.lang.reflect.Method,java.lang.Class,java.lang.Class) +android.didikee.donate.R$attr: int actionBarStyle +androidx.activity.R$drawable +com.google.android.material.R$color: int design_default_color_on_surface +com.google.android.material.R$attr: int trackColorActive io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: long idx -org.greenrobot.greendao.AbstractDao: AbstractDao(org.greenrobot.greendao.internal.DaoConfig) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onAttach() -okio.ByteString: java.lang.String utf8() -wangdaye.com.geometricweather.R$attr: int counterEnabled -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMark -wangdaye.com.geometricweather.R$drawable: int shortcuts_cloudy -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: AccuCurrentResult$Pressure$Imperial() -cyanogenmod.app.Profile: void setTrigger(cyanogenmod.app.Profile$ProfileTrigger) -androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -com.google.android.material.card.MaterialCardView: int getStrokeWidth() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_DrawerArrowToggle -okio.Buffer$UnsafeCursor: int end -cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_RINGTONE -androidx.viewpager2.R$dimen -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingRight -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver -com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context) -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTint -com.google.android.material.R$styleable: int MockView_mock_labelBackgroundColor -james.adaptiveicon.R$styleable: int AppCompatTheme_colorPrimaryDark -cyanogenmod.providers.CMSettings$System: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginLeft -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixText -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.util.AtomicThrowable errors -okhttp3.internal.cache.DiskLruCache$1: void run() -com.google.android.material.radiobutton.MaterialRadioButton -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_trackTint -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: AccuCurrentResult$Visibility$Metric() -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_10 -androidx.appcompat.app.AlertController$RecycleListView: AlertController$RecycleListView(android.content.Context) -androidx.preference.R$attr: int switchTextOff -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_overflow_padding_end_material -okio.DeflaterSink -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_year_abbr -wangdaye.com.geometricweather.R$id: int largeLabel -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getWallpaperThemePackageName() -wangdaye.com.geometricweather.R$id: int widget_remote_drawable -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_typeface -james.adaptiveicon.R$id: int async -cyanogenmod.providers.CMSettings$Secure: long getLong(android.content.ContentResolver,java.lang.String) -com.google.android.material.R$styleable: int MotionHelper_onHide -com.jaredrummler.android.colorpicker.R$color -com.jaredrummler.android.colorpicker.R$color: int primary_text_disabled_material_light -wangdaye.com.geometricweather.R$string: int minutely_overview -org.greenrobot.greendao.AbstractDaoSession: void delete(java.lang.Object) -cyanogenmod.platform.R$drawable -wangdaye.com.geometricweather.R$styleable: int Preference_android_persistent -com.jaredrummler.android.colorpicker.R$dimen: int cpv_color_preference_large -okhttp3.internal.http2.Http2Connection$6: void execute() -androidx.appcompat.widget.ButtonBarLayout: void setStacked(boolean) -androidx.core.R$id: int accessibility_custom_action_30 -androidx.constraintlayout.widget.R$attr: int region_widthLessThan -wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_checked_circle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_41 -android.didikee.donate.R$attr: int theme -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: android.os.IBinder asBinder() -com.xw.repo.bubbleseekbar.R$layout: int select_dialog_singlechoice_material -cyanogenmod.profiles.ConnectionSettings: boolean isOverride() -androidx.preference.R$layout: int abc_select_dialog_material -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.String weatherText -android.didikee.donate.R$styleable: int Toolbar_android_gravity -okhttp3.WebSocket: boolean close(int,java.lang.String) -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context,android.util.AttributeSet,int) -androidx.hilt.lifecycle.R$id: int action_divider -android.didikee.donate.R$id: int scrollIndicatorDown -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderQuery -com.bumptech.glide.R$dimen: int notification_right_side_padding_top -com.jaredrummler.android.colorpicker.R$attr: int navigationContentDescription -okhttp3.Dispatcher: void executed(okhttp3.RealCall) -com.xw.repo.bubbleseekbar.R$dimen: int hint_pressed_alpha_material_dark -com.jaredrummler.android.colorpicker.R$attr: int spinBars -cyanogenmod.weatherservice.ServiceRequestResult$Builder -androidx.lifecycle.AndroidViewModel: AndroidViewModel(android.app.Application) -com.xw.repo.bubbleseekbar.R$attr: int backgroundStacked -com.google.android.material.R$styleable: int MaterialCardView_rippleColor -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap -okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE -com.google.android.material.R$styleable: int CustomAttribute_attributeName -retrofit2.CallAdapter$Factory -com.google.android.material.R$styleable: int Chip_checkedIconVisible -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$id: int parentPanel -com.google.android.material.chip.Chip: void setChipEndPadding(float) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Small +androidx.preference.R$drawable: int abc_btn_check_material_anim +androidx.preference.R$id: int tag_accessibility_pane_title +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_key +com.turingtechnologies.materialscrollbar.R$dimen: int abc_cascading_menus_min_smallest_width +com.google.android.material.R$styleable: int ActionBar_customNavigationLayout +wangdaye.com.geometricweather.R$layout: int material_timepicker_textinput_display +android.support.v4.app.INotificationSideChannel$Stub$Proxy: void cancelAll(java.lang.String) +com.bumptech.glide.module.AppGlideModule: AppGlideModule() +androidx.appcompat.widget.AlertDialogLayout: AlertDialogLayout(android.content.Context) +com.google.android.material.button.MaterialButton: int getTextWidth() +com.google.android.material.R$string: int abc_capital_on +okhttp3.internal.io.FileSystem: boolean exists(java.io.File) +android.didikee.donate.R$drawable: int abc_tab_indicator_mtrl_alpha +androidx.work.R$layout +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalStyle +com.turingtechnologies.materialscrollbar.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$id: int indicator +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_android_minHeight +okhttp3.internal.platform.AndroidPlatform$CloseGuard +wangdaye.com.geometricweather.R$layout: int design_navigation_item +okhttp3.ConnectionPool: java.lang.Runnable cleanupRunnable +com.google.android.material.button.MaterialButton: int getStrokeWidth() +okio.DeflaterSink: okio.BufferedSink sink +okhttp3.internal.connection.RealConnection: okhttp3.Route route() +androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$styleable: int ConstraintSet_flow_lastHorizontalBias +cyanogenmod.providers.CMSettings$System$2: boolean validate(java.lang.String) +com.google.android.material.R$styleable: int Constraint_barrierAllowsGoneWidgets +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void run() +com.google.android.material.R$style: int Widget_Compat_NotificationActionText +cyanogenmod.themes.IThemeProcessingListener$Stub: cyanogenmod.themes.IThemeProcessingListener asInterface(android.os.IBinder) +okhttp3.internal.http2.Hpack$Reader: int readInt(int,int) +wangdaye.com.geometricweather.R$styleable: int Constraint_android_maxHeight +androidx.constraintlayout.widget.R$id: int spline +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPaused(android.app.Activity) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircleAngle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCopyDrawable +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_switchTextOff +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode END +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.lang.Throwable error +androidx.preference.R$attr: int listPreferredItemHeightLarge +androidx.hilt.R$id: int accessibility_custom_action_11 +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTheme +androidx.vectordrawable.animated.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: java.lang.String icon +androidx.appcompat.widget.AppCompatImageView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +okio.RealBufferedSource: byte readByte() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.R$dimen: int tooltip_horizontal_padding +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualObserver[] observers +androidx.constraintlayout.widget.R$style: int Base_DialogWindowTitleBackground_AppCompat +androidx.work.R$id: int icon_group +cyanogenmod.weather.WeatherInfo +com.google.android.material.R$attr: int multiChoiceItemLayout +cyanogenmod.hardware.ICMHardwareService: boolean registerThermalListener(cyanogenmod.hardware.IThermalListenerCallback) +androidx.fragment.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$id: int useLogo +com.google.android.material.R$attr: int waveShape +okhttp3.internal.io.FileSystem: okio.Sink appendingSink(java.io.File) +okio.AsyncTimeout$2: long read(okio.Buffer,long) +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,byte[],int,int) +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_SLOW_AVG +androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragScale +androidx.appcompat.resources.R$dimen: int notification_main_column_padding_top +android.support.v4.os.IResultReceiver$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_arrowShaftLength +okhttp3.internal.http.RealInterceptorChain: okhttp3.Call call +androidx.lifecycle.LifecycleRegistry$1 +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$id: int search_src_text +androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_default +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour valueOf(java.lang.String) +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat PREFER_ARGB_8888 +cyanogenmod.externalviews.ExternalViewProviderService: ExternalViewProviderService() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableEnd +cyanogenmod.externalviews.KeyguardExternalView: java.util.LinkedList mQueue +com.google.android.material.slider.RangeSlider: void setEnabled(boolean) +okhttp3.HttpUrl: java.util.Set queryParameterNames() +io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper valueOf(java.lang.String) +androidx.preference.R$style: int Preference_SwitchPreferenceCompat +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_toolbarStyle +androidx.constraintlayout.widget.R$attr: int actionBarTabStyle +wangdaye.com.geometricweather.R$interpolator: int mtrl_linear_out_slow_in +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder sslSocketFactory(javax.net.ssl.SSLSocketFactory) +com.google.android.material.R$styleable: int FloatingActionButton_fabSize +okio.BufferedSource: byte readByte() +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day +io.reactivex.internal.observers.DeferredScalarDisposable: java.lang.Object poll() +com.jaredrummler.android.colorpicker.R$attr: int alertDialogButtonGroupStyle +androidx.activity.R$id: int accessibility_custom_action_6 +cyanogenmod.themes.ThemeManager +okhttp3.Cache$CacheResponseBody: java.lang.String contentLength +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeightSmall +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderFetchTimeout +android.didikee.donate.R$attr: int actionModeCutDrawable +io.reactivex.Observable: io.reactivex.Completable flatMapCompletable(io.reactivex.functions.Function,boolean) +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: void onFailure(retrofit2.Call,java.lang.Throwable) +androidx.constraintlayout.widget.R$drawable: int notification_icon_background +androidx.preference.R$styleable: int SwitchCompat_thumbTintMode +wangdaye.com.geometricweather.R$id: int item_alert_title +wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedDescription(java.lang.String) +android.didikee.donate.R$styleable: int ActionMode_background +cyanogenmod.hardware.ICMHardwareService: boolean unRegisterThermalListener(cyanogenmod.hardware.IThermalListenerCallback) +androidx.viewpager2.R$dimen: int compat_button_padding_vertical_material +androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +androidx.preference.R$styleable: int[] Fragment +androidx.appcompat.R$drawable: int abc_text_select_handle_middle_mtrl_dark +com.google.android.material.R$styleable: int ConstraintSet_flow_wrapMode +android.support.v4.app.INotificationSideChannel$Stub$Proxy: void cancel(java.lang.String,int,java.lang.String) +com.google.android.material.R$id: int scrollIndicatorUp +com.turingtechnologies.materialscrollbar.R$attr: int textInputStyle +androidx.loader.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$string: int content_desc_search_filter_off +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean profileExistsByName(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_title +com.google.android.material.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +okhttp3.Cache$Entry: okhttp3.Headers responseHeaders +com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int getIsRainOrSnow() +wangdaye.com.geometricweather.R$dimen: int widget_title_text_size +androidx.preference.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +okhttp3.TlsVersion: okhttp3.TlsVersion valueOf(java.lang.String) +androidx.appcompat.widget.AppCompatCheckBox: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +androidx.constraintlayout.widget.R$drawable +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_textAppearance +retrofit2.RequestBuilder: okhttp3.Headers$Builder headersBuilder +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +androidx.preference.R$id: int search_badge +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_title_baseline_to_top_fullscreen +com.google.android.material.R$attr: int backgroundInsetBottom +wangdaye.com.geometricweather.R$color: int material_slider_active_tick_marks_color +androidx.work.R$styleable: int GradientColor_android_gradientRadius +androidx.appcompat.resources.R$dimen: int notification_large_icon_width +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_height_material +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextAppearanceActive(int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String ShortPhrase +androidx.hilt.R$color: int secondary_text_default_material_light +androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog +androidx.transition.R$style: int Widget_Compat_NotificationActionText +com.jaredrummler.android.colorpicker.R$attr: int showAsAction +androidx.viewpager.R$attr: int fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Inverse +cyanogenmod.app.ProfileGroup: void setVibrateMode(cyanogenmod.app.ProfileGroup$Mode) +androidx.preference.R$attr: int iconTintMode +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: ObservableBufferBoundary$BufferBoundaryObserver(io.reactivex.Observer,io.reactivex.ObservableSource,io.reactivex.functions.Function,java.util.concurrent.Callable) +wangdaye.com.geometricweather.R$styleable: int[] StateListDrawable +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int Toolbar_title +wangdaye.com.geometricweather.R$attr: int tabMode +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver +com.google.android.material.R$styleable: int Variant_region_heightMoreThan +android.didikee.donate.R$id: int default_activity_button +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean isEntityUpdateable() +com.bumptech.glide.load.ImageHeaderParser$ImageType: boolean hasAlpha +cyanogenmod.externalviews.ExternalView$1: void onServiceConnected(android.content.ComponentName,android.os.IBinder) +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.R$drawable: int abc_ab_share_pack_mtrl_alpha +wangdaye.com.geometricweather.R$id: int activity_widget_config_styleSpinner +io.reactivex.internal.subscriptions.SubscriptionArbiter +androidx.constraintlayout.widget.ConstraintLayout: void setMaxWidth(int) +com.google.android.material.slider.Slider: android.content.res.ColorStateList getHaloTintList() +androidx.fragment.R$styleable: int ColorStateListItem_alpha +com.google.android.material.R$id: int startVertical +wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetMinutelyEntityList() +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleTint +com.google.android.material.R$dimen: int mtrl_navigation_item_shape_horizontal_margin +james.adaptiveicon.R$attr: int fontWeight +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMenuView +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: MfForecastV2Result$ForecastProperties$ForecastV2() +com.google.android.material.R$styleable: int TextAppearance_android_textColorLink okio.InflaterSource -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginStart -androidx.constraintlayout.helper.widget.Layer: void setPivotX(float) -wangdaye.com.geometricweather.R$color: int bright_foreground_disabled_material_dark -com.google.android.material.R$id: int month_title -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy -androidx.customview.R$id: int blocking -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SearchView_ActionBar -androidx.preference.R$styleable: int AppCompatTheme_windowActionBarOverlay -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$styleable: int Chip_iconEndPadding -androidx.appcompat.R$styleable: int ActionBar_contentInsetEndWithActions -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: boolean isDisposed() -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.preference.R$drawable: int abc_list_selector_background_transition_holo_light -wangdaye.com.geometricweather.R$string: int widget_clock_day_horizontal -androidx.appcompat.R$color: int material_grey_100 -com.google.android.material.R$styleable: int Layout_layout_constraintGuide_end -wangdaye.com.geometricweather.R$id: int action_bar_container -wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_creator -wangdaye.com.geometricweather.R$string: int grass -com.google.android.material.R$styleable: int KeyTrigger_triggerSlack -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -androidx.lifecycle.SavedStateHandle: boolean contains(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalAlign -io.reactivex.Observable: io.reactivex.Observable zipWith(java.lang.Iterable,io.reactivex.functions.BiFunction) -com.xw.repo.bubbleseekbar.R$dimen: int abc_button_inset_horizontal_material -android.didikee.donate.R$styleable: int AppCompatTheme_colorPrimaryDark -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.List Sources -cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getActiveProfile() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum -cyanogenmod.profiles.LockSettings$1: cyanogenmod.profiles.LockSettings createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: int getStatus() -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeChangeRequest$RequestType getLastThemeChangeRequestType() -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickActiveTintList() -wangdaye.com.geometricweather.R$drawable: int donate_wechat -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemBackground -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_message_margin_horizontal -com.google.android.material.progressindicator.ProgressIndicator: void setIndeterminate(boolean) -com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_bottom_material -com.google.android.material.R$dimen: int compat_button_inset_horizontal_material -okio.DeflaterSink: java.lang.String toString() -com.google.android.material.R$styleable: int AppCompatTheme_dialogTheme -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar -androidx.appcompat.resources.R$styleable: R$styleable() -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onDetach() -com.google.android.material.R$attr: int materialAlertDialogTitlePanelStyle -androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_shapeAppearanceOverlay -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language CHINESE -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getThumbTintList() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Menu -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_2 -james.adaptiveicon.R$attr: int ratingBarStyleIndicator -com.jaredrummler.android.colorpicker.R$string: int cpv_transparency -com.google.android.material.datepicker.CompositeDateValidator -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ZEN_ALLOW_LIGHTS_VALIDATOR -wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_default_alpha -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: io.reactivex.processors.FlowableProcessor processor -com.turingtechnologies.materialscrollbar.R$attr: int isLightTheme -androidx.lifecycle.extensions.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService: ForegroundTomorrowForecastUpdateService() -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter -androidx.dynamicanimation.R$attr: int fontProviderQuery -com.google.android.material.R$styleable: int Constraint_android_id -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource LocalSource -com.turingtechnologies.materialscrollbar.R$style: int Platform_Widget_AppCompat_Spinner -com.google.gson.stream.JsonReader: double nextDouble() -com.xw.repo.bubbleseekbar.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDataConnectionSelectedOnSub -wangdaye.com.geometricweather.R$id: int notification_base_icon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String aqi -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTint -io.reactivex.Observable: io.reactivex.Observable onErrorResumeNext(io.reactivex.ObservableSource) -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable) -com.xw.repo.bubbleseekbar.R$id: int group_divider -com.google.android.material.R$style: int Base_Widget_AppCompat_ListView_Menu -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.OkHttpClient client -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: void setFrom(java.lang.String) -james.adaptiveicon.R$dimen: int abc_text_size_menu_material -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_daySelectedStyle -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_arrowShaftLength -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -okio.SegmentedByteString: boolean rangeEquals(int,okio.ByteString,int,int) -wangdaye.com.geometricweather.R$attr: int searchViewStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_borderlessButtonStyle -com.bumptech.glide.R$dimen: int notification_right_icon_size -com.google.android.material.slider.BaseSlider: void setTickInactiveTintList(android.content.res.ColorStateList) -com.google.android.material.R$styleable: int KeyCycle_android_alpha -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: android.os.IBinder asBinder() -com.jaredrummler.android.colorpicker.R$attr: int seekBarStyle -okhttp3.internal.http2.Http2Connection: void close() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -androidx.constraintlayout.widget.R$drawable: int abc_textfield_default_mtrl_alpha -cyanogenmod.app.ProfileManager: android.app.NotificationGroup getNotificationGroup(java.util.UUID) -okhttp3.OkHttpClient: java.util.List interceptors -androidx.appcompat.resources.R$id: int accessibility_custom_action_5 -wangdaye.com.geometricweather.R$drawable: int mtrl_ic_cancel -okhttp3.internal.ws.RealWebSocket: void runWriter() -com.bumptech.glide.R$dimen: int compat_notification_large_icon_max_height -cyanogenmod.weather.CMWeatherManager$2$2: CMWeatherManager$2$2(cyanogenmod.weather.CMWeatherManager$2,cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener,int,java.util.List) -androidx.constraintlayout.helper.widget.Flow: void setPaddingRight(int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind wind -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getUVDescription() -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_ttcIndex -com.xw.repo.bubbleseekbar.R$attr: int paddingBottomNoButtons -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver -androidx.preference.R$style: int Widget_AppCompat_ListMenuView -okhttp3.internal.http1.Http1Codec$AbstractSource: Http1Codec$AbstractSource(okhttp3.internal.http1.Http1Codec) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String level -com.google.gson.LongSerializationPolicy -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_2 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String ID -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_COMPONENT_ID -com.google.android.material.R$attr: int cornerFamilyTopRight -io.reactivex.Observable: io.reactivex.Observable flatMapMaybe(io.reactivex.functions.Function,boolean) -com.google.android.material.R$styleable: int AppCompatTheme_selectableItemBackground -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_menuCategory -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_cornerRadius -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean -cyanogenmod.providers.WeatherContract: WeatherContract() -com.google.android.material.R$styleable: int MaterialAutoCompleteTextView_android_inputType -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_level -cyanogenmod.themes.IThemeService$Stub$Proxy: boolean isThemeBeingProcessed(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String src -android.didikee.donate.R$styleable: int TextAppearance_android_textColor -android.support.v4.os.IResultReceiver: void send(int,android.os.Bundle) -androidx.appcompat.R$attr: int viewInflaterClass -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderText -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onError(java.lang.Throwable) -androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy KEEP -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onError(java.lang.Throwable) -androidx.work.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.internal.NavigationMenuView: int getWindowAnimations() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_srcCompat -okhttp3.Response: long receivedResponseAtMillis -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SearchView -wangdaye.com.geometricweather.R$animator: int design_fab_hide_motion_spec -wangdaye.com.geometricweather.R$styleable: int View_android_focusable -wangdaye.com.geometricweather.R$drawable: int notif_temp_24 -androidx.preference.R$style: int Base_Widget_AppCompat_ProgressBar +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_weight +androidx.preference.R$dimen: int tooltip_precise_anchor_threshold +androidx.loader.R$drawable: int notification_bg +androidx.preference.R$anim: int fragment_fade_exit +cyanogenmod.platform.R$array +wangdaye.com.geometricweather.R$attr: int cornerSize +androidx.swiperefreshlayout.R$dimen: R$dimen() +androidx.preference.SwitchPreference: SwitchPreference(android.content.Context,android.util.AttributeSet) +com.google.android.material.chip.Chip: void setTextStartPadding(float) +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dialog +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.R$color: int design_bottom_navigation_shadow_color +com.xw.repo.bubbleseekbar.R$id: int image +androidx.appcompat.widget.AppCompatSeekBar +wangdaye.com.geometricweather.R$array: int notification_styles +androidx.legacy.coreutils.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$attr: int itemTextAppearanceActive +okio.Buffer: byte[] readByteArray(long) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum Minimum +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar +com.google.android.material.R$styleable: int ActionBar_itemPadding +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runAsync() +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void replayFinal() +com.google.android.material.R$attr: int flow_verticalBias +androidx.preference.R$styleable: int Toolbar_popupTheme +androidx.work.R$style: int TextAppearance_Compat_Notification_Info +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +cyanogenmod.externalviews.ExternalViewProperties: android.view.View mView +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long readKey(android.database.Cursor,int) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerComplete() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SearchView +wangdaye.com.geometricweather.R$dimen: int standard_weather_icon_container_size +com.turingtechnologies.materialscrollbar.R$integer +androidx.lifecycle.DefaultLifecycleObserver: void onStart(androidx.lifecycle.LifecycleOwner) +okio.RealBufferedSource: int readInt() +okhttp3.internal.http2.Http2Stream$FramingSink: boolean $assertionsDisabled +wangdaye.com.geometricweather.R$attr: int mock_labelColor +androidx.lifecycle.ReportFragment: void onActivityCreated(android.os.Bundle) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onResume() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$string: int path_password_eye_mask_visible +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: ChineseCityEntityDao$Properties() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_DropDown +com.turingtechnologies.materialscrollbar.R$layout: int design_bottom_sheet_dialog +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitationProbability +androidx.appcompat.R$attr: int isLightTheme +com.xw.repo.bubbleseekbar.R$id: int search_badge +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display1 +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_orderInCategory +androidx.constraintlayout.widget.R$attr: int transitionDisable +wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_elevation +okhttp3.internal.cache.DiskLruCache: long maxSize +okhttp3.internal.connection.RouteSelector: okhttp3.internal.connection.RouteSelector$Selection next() +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(okhttp3.HttpUrl) +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$300() +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +wangdaye.com.geometricweather.background.polling.permanent.observer.FakeForegroundService +com.google.android.material.R$drawable: int ic_mtrl_checked_circle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windDircEnd +okhttp3.Interceptor$Chain: okhttp3.Response proceed(okhttp3.Request) +wangdaye.com.geometricweather.R$drawable: int notif_temp_84 +androidx.appcompat.widget.AppCompatSpinner: androidx.appcompat.widget.AppCompatSpinner$SpinnerPopup getInternalPopup() +okio.Util: void checkOffsetAndCount(long,long,long) +wangdaye.com.geometricweather.R$attr: int menu +androidx.vectordrawable.R$styleable: int ColorStateListItem_alpha +okhttp3.internal.http2.Http2Writer: void pushPromise(int,int,java.util.List) okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_3DES_EDE_CBC_SHA -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver -com.google.android.material.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton -com.xw.repo.bubbleseekbar.R$id: int right -com.turingtechnologies.materialscrollbar.R$styleable: int[] CoordinatorLayout -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_dither -okhttp3.internal.http2.ConnectionShutdownException: ConnectionShutdownException() -androidx.appcompat.resources.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating() -okio.BufferedSource: byte[] readByteArray(long) -com.google.android.material.bottomappbar.BottomAppBar$SavedState -cyanogenmod.app.IProfileManager$Stub$Proxy: void updateNotificationGroup(android.app.NotificationGroup) -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.ObservableSource source -wangdaye.com.geometricweather.R$attr: int dialogTitle -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorHeight(int) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_numericShortcut -io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper valueOf(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -com.google.android.material.R$color: int design_default_color_on_secondary -wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingLeft -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyBottomRight -androidx.preference.R$styleable: int Preference_enableCopying -com.google.android.material.slider.BaseSlider: void setHaloRadius(int) -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String hexAV() -wangdaye.com.geometricweather.R$id: int item_icon_provider_clearIcon -androidx.appcompat.R$styleable: int GradientColorItem_android_offset -androidx.lifecycle.ClassesInfoCache -com.google.gson.stream.JsonReader: int PEEKED_UNQUOTED_NAME -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShowMotionSpecResource(int) -androidx.appcompat.R$styleable: int Toolbar_android_minHeight -wangdaye.com.geometricweather.R$drawable: int ic_drag -wangdaye.com.geometricweather.R$string: int settings_notification_background_off -james.adaptiveicon.R$style: int Base_DialogWindowTitle_AppCompat -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_defaultQueryHint -wangdaye.com.geometricweather.R$attr: int colorOnSurface -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean getSunRiseSet() -wangdaye.com.geometricweather.R$styleable: int Fragment_android_id -wangdaye.com.geometricweather.db.entities.DailyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_DailyEntityListQuery -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_right_mtrl_dark -androidx.vectordrawable.R$id: int notification_main_column_container -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setShifting(boolean) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginStart -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerClose(boolean,io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Medium -wangdaye.com.geometricweather.R$styleable: int ActionMenuItemView_android_minWidth -androidx.dynamicanimation.R$dimen: int notification_action_icon_size -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks mCallback -wangdaye.com.geometricweather.R$id: int activity_about_toolbar -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial Imperial -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_NoActionBar -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: IThemeProcessingListener$Stub$Proxy(android.os.IBinder) -com.google.gson.stream.JsonScope: int DANGLING_NAME -androidx.constraintlayout.widget.R$attr: int background -okhttp3.internal.cache.DiskLruCache$Snapshot: okhttp3.internal.cache.DiskLruCache this$0 -cyanogenmod.externalviews.ExternalView$1: void onServiceConnected(android.content.ComponentName,android.os.IBinder) -com.turingtechnologies.materialscrollbar.R$attr: int dividerHorizontal -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_SHA -androidx.preference.R$styleable: int FontFamilyFont_ttcIndex -cyanogenmod.os.Build$CM_VERSION: int SDK_INT -com.turingtechnologies.materialscrollbar.R$string: int abc_prepend_shortcut_label -androidx.appcompat.widget.SearchView: androidx.cursoradapter.widget.CursorAdapter getSuggestionsAdapter() -androidx.viewpager2.R$string: int status_bar_notification_info_overflow -james.adaptiveicon.R$attr: int fontProviderAuthority -okhttp3.internal.http1.Http1Codec$FixedLengthSource: long read(okio.Buffer,long) -wangdaye.com.geometricweather.R$dimen: int widget_time_text_size -okhttp3.CertificatePinner: okhttp3.CertificatePinner withCertificateChainCleaner(okhttp3.internal.tls.CertificateChainCleaner) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView -io.reactivex.Observable: io.reactivex.Observable switchOnNextDelayError(io.reactivex.ObservableSource,int) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListMenuView -androidx.recyclerview.R$styleable: int ColorStateListItem_android_alpha -com.google.android.material.button.MaterialButton: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -androidx.hilt.lifecycle.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$id: int item_weather_daily_value_title -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) -androidx.work.impl.workers.DiagnosticsWorker -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode TRUNCATE -okhttp3.internal.cache.DiskLruCache: long nextSequenceNumber -androidx.constraintlayout.widget.R$id: int radio -androidx.viewpager2.R$id: int notification_main_column_container -com.google.android.material.R$style: int TestThemeWithLineHeight -wangdaye.com.geometricweather.R$drawable: int weather_rain_2 -com.google.android.material.R$dimen: int material_emphasis_medium -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_min_width -okio.RealBufferedSource$1: int read(byte[],int,int) -okio.SegmentedByteString: SegmentedByteString(okio.Buffer,int) -androidx.appcompat.R$dimen: int tooltip_horizontal_padding -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onComplete() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button -james.adaptiveicon.R$color: int material_grey_850 -com.google.android.material.R$attr: int colorOnSecondary -com.turingtechnologies.materialscrollbar.R$attr: int msb_textColor -wangdaye.com.geometricweather.R$string: int abc_menu_meta_shortcut_label -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setNo2Desc(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchRegionId -androidx.vectordrawable.R$dimen: int notification_media_narrow_margin -com.google.android.material.R$attr: int ttcIndex -com.jaredrummler.android.colorpicker.R$styleable: int[] View -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitation() -androidx.constraintlayout.widget.R$attr: int tickMarkTint -androidx.constraintlayout.widget.R$styleable: int Layout_barrierDirection -okio.Segment: void writeTo(okio.Segment,int) -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy -androidx.transition.R$attr: int fontProviderFetchTimeout -androidx.constraintlayout.widget.R$style: int Animation_AppCompat_Dialog -com.google.android.material.R$styleable: int[] MaterialShape -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogTheme -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_visible -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_behavior -wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity -wangdaye.com.geometricweather.R$styleable: int MockView_mock_showDiagonals -androidx.appcompat.R$color: int abc_tint_edittext -okhttp3.logging.LoggingEventListener: void logWithTime(java.lang.String) -cyanogenmod.app.CMTelephonyManager: void setDefaultPhoneSub(int) -okhttp3.internal.Internal: okhttp3.internal.Internal instance -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge -androidx.preference.R$styleable: int ViewBackgroundHelper_android_background -androidx.appcompat.widget.AppCompatTextView: int getAutoSizeMinTextSize() -okio.Timeout: okio.Timeout NONE -com.turingtechnologies.materialscrollbar.R$color: int design_default_color_primary -com.google.android.material.progressindicator.ProgressIndicator -android.didikee.donate.R$attr: int voiceIcon -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableStartCompat -com.xw.repo.bubbleseekbar.R$styleable: int[] LinearLayoutCompat -okio.InflaterSource: void releaseInflatedBytes() -androidx.constraintlayout.widget.R$styleable: int Layout_maxWidth -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextStyle -com.google.android.material.R$layout: int abc_list_menu_item_icon -okhttp3.internal.tls.DistinguishedNameParser: int pos -androidx.transition.R$drawable: int notification_template_icon_low_bg -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver +com.turingtechnologies.materialscrollbar.R$id: int src_in +androidx.appcompat.R$style: int Theme_AppCompat_DayNight +io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onNext +com.jaredrummler.android.colorpicker.R$id: int right_icon +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarPositiveButtonStyle +androidx.preference.R$color: int abc_btn_colored_text_material +androidx.preference.R$style: int Theme_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_headline_material +androidx.fragment.R$id: int right_side +androidx.constraintlayout.widget.R$style: int Base_V26_Theme_AppCompat_Light +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +androidx.constraintlayout.widget.R$styleable: int MenuItem_alphabeticModifiers +io.reactivex.internal.util.ExceptionHelper$Termination: long serialVersionUID +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Long getId() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getMoldDescription() +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +androidx.preference.R$id: int accessibility_custom_action_21 +androidx.constraintlayout.utils.widget.ImageFilterButton: void setContrast(float) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean active +okhttp3.internal.ws.RealWebSocket: okhttp3.Request originalRequest +okhttp3.internal.http2.Hpack$Writer: int nextHeaderIndex +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabUnboundedRipple +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onError(java.lang.Throwable) +androidx.appcompat.R$attr: int titleMarginEnd +androidx.appcompat.resources.R$layout: int notification_template_custom_big +com.jaredrummler.android.colorpicker.R$attr: int colorError +retrofit2.DefaultCallAdapterFactory: DefaultCallAdapterFactory(java.util.concurrent.Executor) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX +com.google.android.material.R$id: int month_grid +androidx.coordinatorlayout.R$id: int action_text +androidx.core.R$id: int line1 +androidx.constraintlayout.widget.R$styleable: int ActionBar_progressBarStyle +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.ErrorCode getErrorCode() +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.lang.Object NULL_KEY +wangdaye.com.geometricweather.R$id: int bottomRecyclerView +com.google.android.material.slider.BaseSlider: void setThumbStrokeColorResource(int) +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_default +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_elevation +androidx.vectordrawable.animated.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer windChillTemperature +wangdaye.com.geometricweather.R$styleable: int[] BottomAppBar +androidx.swiperefreshlayout.R$string: R$string() +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_dialog_background_inset +cyanogenmod.providers.CMSettings$NameValueCache: android.net.Uri mUri +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +org.greenrobot.greendao.AbstractDao: void detachAll() +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void updateWeather(cyanogenmod.weather.RequestInfo) +wangdaye.com.geometricweather.R$styleable: int RangeSlider_minSeparation +com.google.android.material.slider.BaseSlider: void setValueTo(float) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView +com.google.android.material.R$string: int abc_menu_alt_shortcut_label +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabTextStyle +androidx.constraintlayout.widget.R$drawable: int abc_seekbar_tick_mark_material +androidx.constraintlayout.widget.R$dimen: int abc_dialog_corner_radius_material +androidx.hilt.R$drawable: int notification_bg_low_normal +retrofit2.Utils: void throwIfFatal(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableTop +okhttp3.internal.cache.DiskLruCache: boolean initialized +com.google.android.material.R$styleable: int TextInputLayout_placeholderText +com.google.android.material.R$color: int bright_foreground_material_dark +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.bumptech.glide.R$id +androidx.appcompat.R$dimen: int abc_search_view_preferred_width +io.reactivex.internal.util.NotificationLite$SubscriptionNotification: java.lang.String toString() +androidx.hilt.R$styleable: int FragmentContainerView_android_tag +androidx.legacy.coreutils.R$drawable: int notification_bg_normal_pressed +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +io.reactivex.Observable: io.reactivex.Observable window(java.util.concurrent.Callable) +wangdaye.com.geometricweather.R$layout: int preference_widget_switch_compat +com.xw.repo.bubbleseekbar.R$id: int search_go_btn +androidx.lifecycle.extensions.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_minWidth +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_material_light +cyanogenmod.app.IProfileManager$Stub$Proxy: void addNotificationGroup(android.app.NotificationGroup) +androidx.appcompat.R$styleable: int LinearLayoutCompat_dividerPadding +androidx.appcompat.widget.AppCompatImageView: void setImageBitmap(android.graphics.Bitmap) +androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: boolean isDisposed() +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Large +androidx.preference.R$string +android.didikee.donate.R$attr: int listLayout +okhttp3.RealCall: okhttp3.OkHttpClient client +androidx.constraintlayout.widget.R$id: int tag_transition_group +androidx.fragment.R$id: R$id() +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] EMPTY_RULE +androidx.appcompat.R$attr: int barLength +com.google.android.material.R$attr: int transitionFlags +androidx.preference.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +androidx.viewpager2.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintEnabled +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_Solid +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max +okhttp3.CertificatePinner: void check(java.lang.String,java.util.List) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.R$id: int notification_base_aqiAndWind +okio.Timeout$1: okio.Timeout deadlineNanoTime(long) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarButtonStyle +android.didikee.donate.R$styleable: int AppCompatTheme_editTextColor +com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context) +wangdaye.com.geometricweather.R$id: int dialog_location_help_providerTitle +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhaseText +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Light +androidx.preference.R$styleable: int MenuItem_android_alphabeticShortcut +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorFullWidth +wangdaye.com.geometricweather.R$dimen: int design_fab_size_normal +cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_DO_NOTHING +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TEMPERATURE +com.google.android.material.R$attr: int materialThemeOverlay +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: ObservableFlatMapMaybe$FlatMapMaybeObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$attr: int bsb_thumb_color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric Metric +android.didikee.donate.R$color: int abc_primary_text_disable_only_material_light +com.google.android.material.R$attr: int onPositiveCross +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_activated_mtrl_alpha +wangdaye.com.geometricweather.R$layout: int design_layout_tab_icon +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startColor +okhttp3.ConnectionPool wangdaye.com.geometricweather.R$id: int material_clock_period_pm_button -androidx.preference.R$id: int info -androidx.lifecycle.ViewModelProvider$OnRequeryFactory -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit[] values() -cyanogenmod.app.ProfileGroup: ProfileGroup(java.util.UUID,boolean) -androidx.swiperefreshlayout.R$attr: int fontWeight -com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX() -wangdaye.com.geometricweather.R$string: int feedback_updating_weather_data -androidx.constraintlayout.widget.R$attr: int ttcIndex -wangdaye.com.geometricweather.R$id: int split_action_bar -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onError(java.lang.Throwable) -androidx.constraintlayout.motion.widget.MotionLayout: void setOnShow(float) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$width -androidx.appcompat.R$styleable: int ActionMode_backgroundSplit -androidx.hilt.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property So2 +com.google.android.material.R$drawable: int material_ic_calendar_black_24dp +androidx.preference.R$id: int right_icon +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver +androidx.work.R$id: int tag_accessibility_heading +james.adaptiveicon.R$styleable: int[] ActionBar +wangdaye.com.geometricweather.R$layout: int item_about_line +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runBackfused() +androidx.constraintlayout.widget.R$id: int chain +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +com.google.android.material.R$attr: int region_heightLessThan +wangdaye.com.geometricweather.R$attr: int firstBaselineToTopHeight +wangdaye.com.geometricweather.R$string: int app_name +androidx.viewpager2.R$styleable: int GradientColor_android_tileMode +android.support.v4.app.INotificationSideChannel +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean done +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.Observer downstream +androidx.preference.R$attr: int actionBarDivider +android.didikee.donate.R$attr: int actionBarTabStyle +wangdaye.com.geometricweather.R$attr: int textAppearanceListItemSecondary +wangdaye.com.geometricweather.R$styleable: int Toolbar_android_minHeight +okhttp3.internal.ws.WebSocketReader: okhttp3.internal.ws.WebSocketReader$FrameCallback frameCallback +wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_HIGH +android.didikee.donate.R$attr: int arrowShaftLength +com.turingtechnologies.materialscrollbar.R$id: int mtrl_internal_children_alpha_tag +wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_2_0_padding_top +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_subtitleTextStyle +cyanogenmod.profiles.RingModeSettings$1: cyanogenmod.profiles.RingModeSettings createFromParcel(android.os.Parcel) +android.didikee.donate.R$style: int Widget_AppCompat_RatingBar +androidx.lifecycle.MutableLiveData +androidx.constraintlayout.widget.R$drawable: int btn_radio_on_to_off_mtrl_animation +wangdaye.com.geometricweather.R$id: int widget_text_container +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_enqueueLiveLockScreen +androidx.fragment.R$id: int text2 +androidx.hilt.R$styleable: int Fragment_android_id +cyanogenmod.app.ProfileGroup: android.net.Uri getSoundOverride() +james.adaptiveicon.R$drawable: int abc_btn_check_to_on_mtrl_015 +okhttp3.CacheControl: boolean noCache +okhttp3.internal.http.BridgeInterceptor +james.adaptiveicon.R$dimen: int notification_action_icon_size +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$id: int visible +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: int UnitType +android.didikee.donate.R$drawable: int abc_cab_background_top_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_backgroundTintMode +androidx.lifecycle.extensions.R$attr: R$attr() +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +androidx.preference.R$drawable: int abc_ic_ab_back_material +androidx.appcompat.resources.R$drawable: int notification_template_icon_low_bg +android.didikee.donate.R$styleable: int SwitchCompat_showText +com.bumptech.glide.R$string +cyanogenmod.weather.RequestInfo: boolean isQueryOnlyWeatherRequest() +wangdaye.com.geometricweather.R$dimen: int preference_seekbar_value_minWidth +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: long serialVersionUID +com.google.android.material.R$styleable: int NavigationView_itemShapeInsetBottom +wangdaye.com.geometricweather.R$attr: int tabIndicatorAnimationDuration +android.didikee.donate.R$attr: int actionBarWidgetTheme +com.google.android.material.R$styleable: int AppCompatTheme_toolbarStyle +com.google.android.material.button.MaterialButtonToggleGroup: void setSingleSelection(boolean) +com.jaredrummler.android.colorpicker.R$attr: int editTextStyle +cyanogenmod.providers.CMSettings$System: java.lang.String DIALER_OPENCNAM_AUTH_TOKEN +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: KeyguardExternalViewProviderService$Provider$ProviderImpl$2(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String unit +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String[] SELECT_VALUE +com.google.android.material.appbar.AppBarLayout: int getMinimumHeightForVisibleOverlappingContent() +androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyle +androidx.hilt.work.R$id: int action_image +com.google.android.material.R$styleable: int Transition_constraintSetEnd +wangdaye.com.geometricweather.R$drawable: int notif_temp_53 +androidx.constraintlayout.widget.R$color: int dim_foreground_disabled_material_light +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Time +android.didikee.donate.R$styleable: int SearchView_android_focusable +wangdaye.com.geometricweather.R$drawable: int notif_temp_100 +com.google.android.material.R$styleable: int KeyTimeCycle_android_rotation +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_voice_search_api_material +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +com.jaredrummler.android.colorpicker.R$string: int abc_capital_on +android.didikee.donate.R$styleable: int AppCompatTheme_dropDownListViewStyle +wangdaye.com.geometricweather.R$layout: int item_weather_daily_wind +androidx.constraintlayout.widget.R$drawable: int abc_dialog_material_background +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: CircularRevealCoordinatorLayout(android.content.Context) +com.google.android.material.R$attr: int actionModeShareDrawable +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Bridge +androidx.preference.R$style: int Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin +com.google.android.material.R$dimen: int abc_dialog_padding_top_material +androidx.constraintlayout.widget.R$attr: int layout_goneMarginEnd +com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_normal +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: boolean isDaylight() +okhttp3.internal.http2.Http2Connection$4: Http2Connection$4(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,java.util.List) +com.google.android.material.R$dimen: int material_text_view_test_line_height +com.google.android.material.navigation.NavigationView: void setItemHorizontalPadding(int) +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +com.turingtechnologies.materialscrollbar.R$color: int abc_btn_colored_borderless_text_material +androidx.preference.R$styleable: int SwitchCompat_android_textOn +com.xw.repo.bubbleseekbar.R$anim: int abc_popup_exit +okhttp3.internal.platform.AndroidPlatform: AndroidPlatform(java.lang.Class,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Toolbar +android.didikee.donate.R$styleable: int[] TextAppearance +okhttp3.internal.http2.Http2Connection$4: void execute() +com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String,java.lang.Throwable) +com.google.android.material.appbar.AppBarLayout: void setStatusBarForeground(android.graphics.drawable.Drawable) +okhttp3.internal.platform.Platform: java.util.List alpnProtocolNames(java.util.List) +com.turingtechnologies.materialscrollbar.R$attr: int helperTextEnabled +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_visible +james.adaptiveicon.R$dimen: int abc_button_inset_vertical_material +okhttp3.internal.http2.Hpack$Writer: int headerCount +androidx.lifecycle.EmptyActivityLifecycleCallbacks +okio.RealBufferedSource +com.google.android.material.R$attr: int tabIndicatorFullWidth +james.adaptiveicon.R$attr: int indeterminateProgressStyle +com.google.android.material.R$styleable: int Constraint_pivotAnchor +android.didikee.donate.R$styleable: int[] AlertDialog +wangdaye.com.geometricweather.R$drawable: int ic_wechat_pay +androidx.viewpager.widget.ViewPager: void addOnAdapterChangeListener(androidx.viewpager.widget.ViewPager$OnAdapterChangeListener) +androidx.preference.R$dimen: int tooltip_y_offset_non_touch com.jaredrummler.android.colorpicker.R$attr: int subtitleTextColor -com.turingtechnologies.materialscrollbar.R$bool: int abc_action_bar_embed_tabs -okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String key -wangdaye.com.geometricweather.R$attr: int layout_dodgeInsetEdges -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: double Longitude -androidx.preference.R$style: int Base_Widget_AppCompat_ButtonBar -wangdaye.com.geometricweather.R$drawable -androidx.constraintlayout.widget.R$styleable: int Constraint_android_elevation -androidx.constraintlayout.widget.R$styleable: int Transition_pathMotionArc -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_holo_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_9 -com.turingtechnologies.materialscrollbar.Indicator: void setRTL(boolean) -wangdaye.com.geometricweather.R$xml: int widget_clock_day_details -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Load -james.adaptiveicon.R$styleable: int AppCompatTheme_textColorSearchUrl -androidx.preference.R$styleable: int Preference_android_summary -com.google.gson.stream.JsonReader: void skipQuotedValue(char) -androidx.preference.R$bool: R$bool() -wangdaye.com.geometricweather.common.basic.models.weather.Alert -cyanogenmod.providers.CMSettings$Secure: CMSettings$Secure() -androidx.appcompat.R$dimen: int abc_text_size_display_2_material -android.didikee.donate.R$attr: int listPreferredItemPaddingLeft -androidx.appcompat.widget.SearchView: int getImeOptions() -androidx.appcompat.R$string: int abc_menu_function_shortcut_label -androidx.viewpager.R$dimen: int notification_main_column_padding_top -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean isEmpty() -com.google.android.material.R$id: int text2 -james.adaptiveicon.R$styleable: int AppCompatTheme_actionDropDownStyle -com.turingtechnologies.materialscrollbar.R$dimen: int compat_notification_large_icon_max_width -okhttp3.internal.http2.Http2Connection: void close(okhttp3.internal.http2.ErrorCode,okhttp3.internal.http2.ErrorCode) -androidx.appcompat.R$styleable: int GradientColor_android_gradientRadius -com.bumptech.glide.R$styleable: int FontFamily_fontProviderQuery -androidx.appcompat.R$layout: int support_simple_spinner_dropdown_item -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog_Alert -com.xw.repo.bubbleseekbar.R$attr: int dividerHorizontal -wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Light_Dialog -com.google.android.material.R$attr: int brightness -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_auto_adjust_section_mark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric Metric -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabUnboundedRipple -wangdaye.com.geometricweather.background.receiver.widget.WidgetDayWeekProvider: WidgetDayWeekProvider() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_116 -androidx.appcompat.R$attr: int buttonTint -androidx.viewpager2.R$id: int accessibility_custom_action_14 -cyanogenmod.providers.CMSettings$System$2: CMSettings$System$2() -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_ACTIVE +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat +retrofit2.ParameterHandler$PartMap: void apply(retrofit2.RequestBuilder,java.lang.Object) +james.adaptiveicon.R$drawable: int abc_control_background_material +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_EditText +com.xw.repo.bubbleseekbar.R$layout: int abc_activity_chooser_view +com.google.android.material.R$drawable: int abc_edit_text_material +androidx.hilt.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$attr: int passwordToggleTint +okhttp3.internal.Util$2: Util$2(java.lang.String,boolean) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index aggregatedIndex +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setCircularRevealScrimColor(int) +com.google.gson.JsonParseException: JsonParseException(java.lang.Throwable) +com.bumptech.glide.R$styleable: int FontFamilyFont_android_font +com.google.android.material.timepicker.ClockFaceView: ClockFaceView(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$id: int buttonPanel +okhttp3.OkHttpClient: java.util.List protocols +androidx.preference.R$styleable: int Toolbar_titleMargins +cyanogenmod.app.IPartnerInterface$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: java.lang.String LocalizedText +androidx.constraintlayout.widget.R$color: int foreground_material_light +wangdaye.com.geometricweather.R$attr: int transitionEasing +wangdaye.com.geometricweather.R$anim: int popup_show_bottom_right +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2 +cyanogenmod.weather.WeatherInfo$DayForecast$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String getValue() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_tooltipForegroundColor +com.turingtechnologies.materialscrollbar.R$style: int AlertDialog_AppCompat +com.google.android.material.R$color: int design_dark_default_color_primary_variant +android.didikee.donate.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWindChillTemperature(java.lang.Integer) +wangdaye.com.geometricweather.R$dimen: int content_text_size +androidx.lifecycle.LiveData$ObserverWrapper: void detachObserver() +com.xw.repo.bubbleseekbar.R$dimen: int abc_button_padding_vertical_material +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.tls.TrustRootIndex buildTrustRootIndex(javax.net.ssl.X509TrustManager) +androidx.preference.R$styleable: int MenuItem_android_checked +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_16dp +androidx.constraintlayout.widget.R$styleable: int Constraint_barrierMargin +com.jaredrummler.android.colorpicker.R$attr: int cpv_alphaChannelText +androidx.constraintlayout.widget.R$styleable: int MotionLayout_motionDebug +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_Solid +com.google.android.material.bottomappbar.BottomAppBar$Behavior: BottomAppBar$Behavior() +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_clear +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean +cyanogenmod.os.Build: android.util.SparseArray sdkMap +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_font +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void dispose() +wangdaye.com.geometricweather.R$color: int button_material_dark +wangdaye.com.geometricweather.R$attr: int cpv_allowCustom +androidx.lifecycle.Transformations$1: androidx.arch.core.util.Function val$mapFunction +androidx.vectordrawable.R$id: int notification_main_column_container +io.reactivex.internal.util.EmptyComponent +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getUnitId() +androidx.lifecycle.Lifecycle$Event +com.google.android.material.R$color: int material_on_primary_emphasis_medium +com.google.android.material.R$styleable: int ConstraintSet_drawPath +androidx.constraintlayout.widget.R$id: int uniform +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: long index +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Button +okhttp3.HttpUrl +wangdaye.com.geometricweather.R$attr: int helperTextTextAppearance +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State valueOf(java.lang.String) +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context) +androidx.constraintlayout.widget.R$attr: int telltales_tailScale +com.google.android.material.R$styleable: int[] Transition +com.bumptech.glide.load.engine.GlideException: void setLoggingDetails(com.bumptech.glide.load.Key,com.bumptech.glide.load.DataSource,java.lang.Class) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight +com.google.android.material.textfield.TextInputLayout: void setErrorIconOnLongClickListener(android.view.View$OnLongClickListener) +com.google.gson.stream.JsonReader: java.lang.String nextName() +wangdaye.com.geometricweather.R$drawable: int notif_temp_124 +com.turingtechnologies.materialscrollbar.R$layout: int notification_action +androidx.work.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moon +wangdaye.com.geometricweather.R$drawable: int ic_donate +com.turingtechnologies.materialscrollbar.R$attr: int dropdownListPreferredItemHeight +okhttp3.internal.connection.RouteSelector$Selection +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onProgressUpdateEnd(float) +cyanogenmod.weatherservice.WeatherProviderService: android.os.Handler access$000(cyanogenmod.weatherservice.WeatherProviderService) +com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_track_material +com.turingtechnologies.materialscrollbar.R$attr: int actionModeWebSearchDrawable +retrofit2.adapter.rxjava2.CallEnqueueObservable: retrofit2.Call originalCall +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour +wangdaye.com.geometricweather.R$styleable: int[] Badge +com.jaredrummler.android.colorpicker.R$id: int custom +androidx.constraintlayout.widget.R$styleable: int SearchView_android_focusable +okhttp3.CertificatePinner: java.lang.String pin(java.security.cert.Certificate) +androidx.appcompat.resources.R$styleable: int GradientColor_android_tileMode wangdaye.com.geometricweather.R$style: int EmptyTheme -com.jaredrummler.android.colorpicker.R$color: int material_grey_850 -james.adaptiveicon.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -com.google.android.material.R$string: int character_counter_pattern -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTheme -james.adaptiveicon.R$dimen: int notification_top_pad_large_text -cyanogenmod.weather.CMWeatherManager$1$1: CMWeatherManager$1$1(cyanogenmod.weather.CMWeatherManager$1,java.lang.String) -com.google.android.material.tabs.TabLayout: void setTabIconTintResource(int) -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView_Menu -androidx.fragment.R$dimen: int notification_subtext_size +android.didikee.donate.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.util.Date DateTime +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Small +androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context) +wangdaye.com.geometricweather.R$id: int toolbar +okhttp3.internal.http.HttpDate: HttpDate() +com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$attr: int windowActionBar +wangdaye.com.geometricweather.R$layout: int fragment_main +okio.Okio$1: void write(okio.Buffer,long) +cyanogenmod.app.ThemeVersion: int getVersion() +androidx.appcompat.R$drawable: int abc_btn_check_to_on_mtrl_000 +io.reactivex.Observable: io.reactivex.Observable timeout0(long,java.util.concurrent.TimeUnit,io.reactivex.ObservableSource,io.reactivex.Scheduler) +androidx.work.impl.utils.futures.AbstractFuture: androidx.work.impl.utils.futures.AbstractFuture$Waiter waiters +com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +cyanogenmod.app.ProfileGroup: void setRingerMode(cyanogenmod.app.ProfileGroup$Mode) +androidx.appcompat.R$attr: int drawableLeftCompat +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_sheet_modal_elevation +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_dither +james.adaptiveicon.R$dimen: int abc_action_bar_icon_vertical_padding_material +wangdaye.com.geometricweather.R$attr: int actionOverflowButtonStyle +okio.SegmentedByteString: int indexOf(byte[],int) +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel +okio.ByteString: java.lang.String utf8 +com.google.android.material.card.MaterialCardView: void setOnCheckedChangeListener(com.google.android.material.card.MaterialCardView$OnCheckedChangeListener) +okhttp3.Call cyanogenmod.app.suggest.AppSuggestManager: java.util.List getSuggestions(android.content.Intent) -androidx.constraintlayout.widget.Group: Group(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragDirection -androidx.preference.R$attr: int hideOnContentScroll -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind wind -wangdaye.com.geometricweather.R$animator: int weather_rain_2 -io.reactivex.internal.observers.DeferredScalarObserver: io.reactivex.disposables.Disposable upstream -okhttp3.internal.Util: java.lang.String trimSubstring(java.lang.String,int,int) -okhttp3.internal.http2.Http2Codec$StreamFinishingSource -okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory newSslSocketFactory(javax.net.ssl.X509TrustManager) -com.xw.repo.bubbleseekbar.R$attr: int buttonPanelSideLayout -androidx.constraintlayout.widget.R$attr: int editTextColor -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder socket(java.net.Socket,java.lang.String,okio.BufferedSource,okio.BufferedSink) -wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMark -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBaseline_creator -com.xw.repo.bubbleseekbar.R$color: int primary_text_disabled_material_dark -okhttp3.HttpUrl$Builder: java.lang.String scheme -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 -androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Subtitle1 -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String weatherSource -wangdaye.com.geometricweather.R$styleable: int SearchView_goIcon -androidx.appcompat.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_small_material -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver parent -com.google.android.material.appbar.AppBarLayout: void addOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener) -com.google.android.material.R$attr: int pressedTranslationZ -wangdaye.com.geometricweather.R$styleable: int Transform_android_rotationY -com.jaredrummler.android.colorpicker.R$color: int dim_foreground_material_light -androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context) -com.google.android.material.timepicker.TimeModel -retrofit2.http.Streaming +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: AccuCurrentResult$Temperature$Metric() +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context) +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.slider.BaseSlider: void setFocusedThumbIndex(int) +androidx.appcompat.R$dimen: int abc_action_button_min_height_material +androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat_Light +org.greenrobot.greendao.AbstractDaoSession: long insert(java.lang.Object) +wangdaye.com.geometricweather.R$string: int key_widget_clock_day_week +android.didikee.donate.R$drawable: int abc_btn_radio_to_on_mtrl_015 +cyanogenmod.weather.WeatherInfo: java.util.List mForecastList +androidx.constraintlayout.widget.R$id: int left +wangdaye.com.geometricweather.R$dimen: int mtrl_card_elevation +james.adaptiveicon.R$drawable: int abc_seekbar_thumb_material +wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean isEntityUpdateable() +androidx.lifecycle.CompositeGeneratedAdaptersObserver: CompositeGeneratedAdaptersObserver(androidx.lifecycle.GeneratedAdapter[]) +cyanogenmod.hardware.ICMHardwareService: int getSupportedFeatures() +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginRight +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,int) +com.google.android.material.R$dimen: int design_fab_elevation +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_DayTextView +com.google.android.material.R$styleable: int AppCompatTheme_actionMenuTextColor +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Priority +wangdaye.com.geometricweather.R$styleable: int SearchView_layout +cyanogenmod.externalviews.KeyguardExternalView$8: cyanogenmod.externalviews.KeyguardExternalView this$0 +androidx.hilt.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +android.didikee.donate.R$style: int Widget_AppCompat_AutoCompleteTextView +com.google.android.material.R$styleable: int ActionBar_logo +com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +wangdaye.com.geometricweather.R$string: int tag_aqi +com.jaredrummler.android.colorpicker.R$attr: int iconTint +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean isDisposed() +com.jaredrummler.android.colorpicker.R$attr: int contentInsetEnd +wangdaye.com.geometricweather.R$id: int widget_week_icon_1 +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction LastAction +com.google.android.material.R$layout: int mtrl_alert_select_dialog_item +androidx.hilt.work.R$integer: R$integer() +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_defaultQueryHint +androidx.preference.R$drawable: int notification_bg_low_pressed +com.google.android.material.R$id: int dragLeft +okhttp3.Challenge: java.util.Map authParams +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathOffset() +androidx.core.R$dimen: int compat_button_inset_horizontal_material +androidx.customview.view.AbsSavedState: android.os.Parcelable$Creator CREATOR +androidx.legacy.coreutils.R$layout: int notification_template_icon_group +okhttp3.CacheControl: CacheControl(okhttp3.CacheControl$Builder) +com.jaredrummler.android.colorpicker.R$id: int search_src_text +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Bridge +cyanogenmod.app.CMTelephonyManager: android.content.Context mContext +com.google.android.material.R$attr: int contentInsetRight +com.jaredrummler.android.colorpicker.R$attr: int alertDialogCenterButtons +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: CompletableFutureCallAdapterFactory$ResponseCallAdapter(java.lang.reflect.Type) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_weight +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.Property[] getProperties() +androidx.appcompat.R$style: int Widget_AppCompat_SearchView +androidx.vectordrawable.R$id: int accessibility_custom_action_16 +wangdaye.com.geometricweather.R$id: int notification_main_column_container +androidx.drawerlayout.R$color +okhttp3.Protocol: okhttp3.Protocol HTTP_1_0 +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setAddress(java.lang.String) +androidx.appcompat.widget.SearchView: void setQueryHint(java.lang.CharSequence) +com.google.android.material.R$attr: int actionMenuTextColor +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableStartCompat +com.google.android.material.R$styleable: int FontFamilyFont_android_fontWeight +okhttp3.OkHttpClient$1: okhttp3.internal.connection.RouteDatabase routeDatabase(okhttp3.ConnectionPool) +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type getOwnerType() +androidx.viewpager.R$id: int line3 +com.google.android.material.R$attr: int layout_constraintTag +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder allEnabledCipherSuites() +com.turingtechnologies.materialscrollbar.R$attr: int viewInflaterClass +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min +androidx.preference.R$attr: int contentInsetStart +androidx.constraintlayout.widget.R$attr: int motion_triggerOnCollision +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindDegree +androidx.preference.R$id: int accessibility_custom_action_6 +androidx.viewpager2.R$id: int accessibility_custom_action_5 +com.google.android.material.R$attr: int cornerSizeTopRight +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_begin +androidx.cardview.R$attr: int cardUseCompatPadding +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_textEndPadding +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetRight +cyanogenmod.externalviews.KeyguardExternalView$11: KeyguardExternalView$11(cyanogenmod.externalviews.KeyguardExternalView,float) +wangdaye.com.geometricweather.R$attr: int chipEndPadding +wangdaye.com.geometricweather.R$id: int postLayout +cyanogenmod.providers.CMSettings$Global: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +androidx.fragment.R$id: int fragment_container_view_tag +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_preserveIconSpacing +androidx.appcompat.R$attr: int actionModeShareDrawable +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.preference.R$styleable: int MultiSelectListPreference_android_entries +okhttp3.Response$Builder: okhttp3.Response$Builder message(java.lang.String) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.circularreveal.CircularRevealGridLayout: CircularRevealGridLayout(android.content.Context) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver(io.reactivex.CompletableObserver,io.reactivex.functions.Function,boolean) +com.google.android.material.R$styleable: int TabLayout_tabMode +com.google.android.material.card.MaterialCardView: void setCardForegroundColor(android.content.res.ColorStateList) +cyanogenmod.themes.IThemeService +androidx.constraintlayout.widget.R$id +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemBackground +com.xw.repo.bubbleseekbar.R$attr: int actionModeCutDrawable +androidx.activity.R$string +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation Precipitation +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_85 +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView_Menu +james.adaptiveicon.R$attr: int navigationIcon +wangdaye.com.geometricweather.R$attr: int indicatorColor +com.xw.repo.bubbleseekbar.R$attr: int selectableItemBackground +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +james.adaptiveicon.R$styleable: int View_paddingStart +androidx.recyclerview.R$string: int status_bar_notification_info_overflow +androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String TIMEZONE_NAME +com.google.android.material.R$styleable: int Chip_rippleColor +cyanogenmod.hardware.CMHardwareManager: boolean writePersistentInt(java.lang.String,int) +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder setType(okhttp3.MediaType) +cyanogenmod.app.StatusBarPanelCustomTile: int getUid() +cyanogenmod.app.CustomTileListenerService: CustomTileListenerService() +retrofit2.HttpException: java.lang.String message() +androidx.coordinatorlayout.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.common.basic.models.options.DarkMode +wangdaye.com.geometricweather.R$dimen: int design_navigation_item_horizontal_padding +james.adaptiveicon.R$attr: int collapseContentDescription +androidx.appcompat.R$styleable: int MenuGroup_android_orderInCategory +androidx.constraintlayout.widget.R$styleable: int MotionLayout_motionProgress +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled +com.turingtechnologies.materialscrollbar.R$id: int snackbar_action +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: java.lang.Long poll() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWeatherPhase +com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets +androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$styleable: int Toolbar_contentInsetLeft +wangdaye.com.geometricweather.db.entities.DailyEntityDao: DailyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter +wangdaye.com.geometricweather.R$animator: int weather_rain_1 +androidx.lifecycle.extensions.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$styleable: int AlertDialog_multiChoiceItemLayout +com.jaredrummler.android.colorpicker.R$id: int activity_chooser_view_content +androidx.appcompat.R$style: int TextAppearance_AppCompat_Menu +okhttp3.internal.ws.RealWebSocket: long queueSize +android.didikee.donate.R$styleable: int TextAppearance_android_fontFamily +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase +com.google.android.material.R$dimen: int abc_panel_menu_list_width +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: UnicastSubject$UnicastQueueDisposable(io.reactivex.subjects.UnicastSubject) +cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.ICMTelephonyManager getService() +androidx.customview.R$styleable: int FontFamilyFont_android_ttcIndex +cyanogenmod.app.CustomTile: int PSEUDO_GRID_ITEM_MAX_COUNT +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +james.adaptiveicon.R$attr: int fontFamily +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundTintList(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$attr: int contrast +androidx.appcompat.R$id: int search_mag_icon +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_padding +wangdaye.com.geometricweather.R$attr: int yearSelectedStyle +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_appBar +androidx.preference.R$color: int button_material_light +com.google.android.material.R$string: int mtrl_picker_invalid_range +androidx.appcompat.R$layout: int abc_search_view +okhttp3.internal.http2.Http2Writer: int maxDataLength() +james.adaptiveicon.R$color: int background_material_dark +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setCity(java.lang.String) +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: java.lang.String MESSAGE +androidx.room.MultiInstanceInvalidationService +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation precipitation +wangdaye.com.geometricweather.R$styleable: int ActionBar_indeterminateProgressStyle +androidx.preference.R$attr: int paddingStart +androidx.coordinatorlayout.R$drawable: int notify_panel_notification_icon_bg +okhttp3.Response: java.lang.String message() +com.google.gson.internal.$Gson$Types$WildcardTypeImpl +androidx.constraintlayout.widget.R$attr: int actionBarDivider +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_space_shortcut_label +com.turingtechnologies.materialscrollbar.R$attr: int boxStrokeWidth +com.google.android.material.chip.Chip: void setCloseIconResource(int) +com.xw.repo.bubbleseekbar.R$id: int action_menu_presenter +com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_inflatedId +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_text +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback(retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter,java.util.concurrent.CompletableFuture) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitationDuration +wangdaye.com.geometricweather.main.fragments.ManagementFragment +wangdaye.com.geometricweather.R$attr: int itemShapeInsetEnd +okio.ByteString: java.lang.String string(java.nio.charset.Charset) +com.turingtechnologies.materialscrollbar.R$id: int unlabeled +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: boolean requestDismissAndStartActivity(android.content.Intent) +cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getProfile(android.os.ParcelUuid) +androidx.preference.R$color: int foreground_material_light +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarSize +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle +wangdaye.com.geometricweather.R$styleable: int Transform_android_scaleX +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setRotation(float) +wangdaye.com.geometricweather.R$color: int striking_red +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetStartWithNavigation +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTheme +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_typeface +com.turingtechnologies.materialscrollbar.R$attr: int snackbarButtonStyle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: long serialVersionUID +androidx.recyclerview.R$styleable: int GradientColor_android_endY +com.google.android.material.R$attr: int materialCalendarDay +okhttp3.internal.http2.Hpack: okhttp3.internal.http2.Header[] STATIC_HEADER_TABLE +com.jaredrummler.android.colorpicker.R$id: int circle +androidx.dynamicanimation.R$attr: int fontProviderAuthority +okhttp3.internal.tls.OkHostnameVerifier: boolean verifyHostname(java.lang.String,java.security.cert.X509Certificate) +okio.AsyncTimeout$2: AsyncTimeout$2(okio.AsyncTimeout,okio.Source) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Tooltip +androidx.core.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.R$styleable: int PropertySet_layout_constraintTag +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +com.google.android.material.R$dimen: int mtrl_tooltip_cornerSize +com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_light +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog +retrofit2.OkHttpCall +wangdaye.com.geometricweather.R$attr: int bsb_bubble_color +okhttp3.internal.http.RealInterceptorChain: int connectTimeout +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +androidx.vectordrawable.R$id: int dialog_button +androidx.drawerlayout.R$layout: int notification_action_tombstone +androidx.preference.R$style: int Base_V28_Theme_AppCompat +wangdaye.com.geometricweather.R$styleable: R$styleable() +okhttp3.CacheControl$Builder: int maxStaleSeconds +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_menu +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getBootanimationThemePackageName() +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdw +com.github.rahatarmanahmed.cpv.CircularProgressView$5 okhttp3.internal.http2.Http2Connection$7: void execute() -androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$string: int mtrl_chip_close_icon_content_description -androidx.constraintlayout.widget.R$attr: int elevation -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: int count -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode DARK -wangdaye.com.geometricweather.main.dialogs.LocationHelpDialog: LocationHelpDialog() -wangdaye.com.geometricweather.R$styleable: int Chip_rippleColor -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: boolean mObserving -androidx.loader.R$id: int time -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.R$attr: int itemBackground -io.reactivex.internal.util.NotificationLite: boolean accept(java.lang.Object,io.reactivex.Observer) -okio.Okio$1: void flush() -okhttp3.internal.connection.RouteSelector$Selection: java.util.List routes -androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackground(int) -okhttp3.internal.Util: java.nio.charset.Charset ISO_8859_1 -androidx.viewpager.R$id: int title -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_pressedTranslationZ -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_editTextPreferenceStyle -cyanogenmod.profiles.BrightnessSettings$1: BrightnessSettings$1() -wangdaye.com.geometricweather.R$attr: int layout_constraintBaseline_creator -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener mListener -wangdaye.com.geometricweather.R$styleable: int RangeSlider_minSeparation -androidx.appcompat.R$attr: int actionModePopupWindowStyle -androidx.preference.R$styleable: int GradientColor_android_centerX -androidx.lifecycle.ReportFragment: void dispatchStart(androidx.lifecycle.ReportFragment$ActivityInitializationListener) -james.adaptiveicon.R$id: int search_badge -wangdaye.com.geometricweather.R$drawable: int notif_temp_17 -com.turingtechnologies.materialscrollbar.R$attr: int behavior_skipCollapsed -androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -com.google.android.material.chip.ChipGroup: void setChipSpacingVertical(int) -com.xw.repo.bubbleseekbar.R$id: int action_bar_activity_content -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionMenuTextAppearance -okio.ByteString: java.lang.String utf8 -retrofit2.http.QueryName: boolean encoded() -okhttp3.OkHttpClient$Builder: boolean retryOnConnectionFailure -retrofit2.ParameterHandler$Field: java.lang.String name -com.google.android.material.R$drawable: int abc_ic_star_black_48dp -androidx.constraintlayout.widget.R$styleable: int Toolbar_android_minHeight -wangdaye.com.geometricweather.R$attr: int bsb_max -androidx.appcompat.R$dimen: int notification_top_pad -android.didikee.donate.R$style: int Base_Widget_AppCompat_SearchView -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String temperature -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder maxStale(int,java.util.concurrent.TimeUnit) -android.didikee.donate.R$layout: R$layout() -okhttp3.internal.http2.Http2Connection$4: int val$streamId -cyanogenmod.weather.IRequestInfoListener$Stub: int TRANSACTION_onWeatherRequestCompleted -okio.BufferedSource: void readFully(byte[]) -com.google.android.material.R$id: int action_text -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -com.turingtechnologies.materialscrollbar.R$color: int material_grey_900 -okhttp3.Headers$Builder: okhttp3.Headers build() -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_height -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontWeight -android.didikee.donate.R$color: int bright_foreground_material_light -androidx.appcompat.view.menu.ExpandedMenuView: ExpandedMenuView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -cyanogenmod.platform.R$array -wangdaye.com.geometricweather.R$styleable: int Slider_thumbStrokeWidth -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_ttcIndex -okhttp3.OkHttpClient$1: java.net.Socket deduplicate(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation) -wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMarkTintMode -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.util.List DataSets -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver -androidx.transition.R$style: int TextAppearance_Compat_Notification_Time -androidx.viewpager2.R$integer: int status_bar_notification_info_maxnum -io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Runnable getWrappedRunnable() -com.google.android.material.R$style: int TextAppearance_Design_Snackbar_Message -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetEndWithActions -androidx.appcompat.R$drawable: int abc_control_background_material -com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_toLeftOf -androidx.preference.R$id: int action_image -androidx.customview.view.AbsSavedState -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setForecast(java.util.List) -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegments(java.lang.String) -cyanogenmod.themes.IThemeService$Stub$Proxy: int getLastThemeChangeRequestType() -com.google.android.material.button.MaterialButton: void setRippleColorResource(int) -wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper -com.xw.repo.bubbleseekbar.R$id: int select_dialog_listview -wangdaye.com.geometricweather.R$id: int widget_week_icon_4 -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderCerts -retrofit2.Retrofit$Builder: retrofit2.Platform platform -cyanogenmod.app.Profile: int mProfileType -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_title -androidx.preference.R$styleable: int MenuGroup_android_menuCategory -com.jaredrummler.android.colorpicker.R$id: int listMode -androidx.appcompat.app.WindowDecorActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_126 -androidx.constraintlayout.widget.R$attr: int clickAction -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableBottomCompat -com.turingtechnologies.materialscrollbar.R$id: int lastElement -cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener: void onWeatherRequestCompleted(int,cyanogenmod.weather.WeatherInfo) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf -okhttp3.internal.connection.RealConnection: okhttp3.Protocol protocol() -com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_new -com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.resources.R$id: int line3 -com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_950 -wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_background_color -com.google.android.material.R$attr: int layout_behavior -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast -com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColorResource(int) -wangdaye.com.geometricweather.R$layout: int item_about_title -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$x -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_summaryOff -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void dispose() -com.turingtechnologies.materialscrollbar.R$dimen: int cardview_default_radius -androidx.core.app.NotificationCompatSideChannelService: NotificationCompatSideChannelService() -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$id: int accelerate -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void dispose() -com.google.android.material.R$attr: int actionButtonStyle -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindSpinner -com.google.android.material.R$styleable: int AppCompatTextView_autoSizeStepGranularity -com.bumptech.glide.R$attr: int fontProviderCerts -androidx.preference.R$id: int notification_main_column_container -androidx.constraintlayout.widget.R$drawable: int notification_action_background -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor getInstance(java.lang.String) -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean unbounded +androidx.legacy.coreutils.R$attr: int fontStyle +cyanogenmod.app.ThemeVersion: java.lang.String THEME_VERSION_FIELD_NAME +androidx.preference.R$styleable: int Preference_enableCopying +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int MaterialButton_shapeAppearanceOverlay +cyanogenmod.weather.WeatherInfo: int access$302(cyanogenmod.weather.WeatherInfo,int) +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_900 +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderQuery +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadMessage(okio.ByteString) +com.google.android.material.R$color: int design_fab_shadow_start_color +cyanogenmod.profiles.AirplaneModeSettings: int describeContents() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.lang.String getPubTime() +androidx.preference.R$dimen: int item_touch_helper_swipe_escape_velocity +wangdaye.com.geometricweather.R$attr: int dialogCornerRadius +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat +com.google.android.material.R$attr: int targetId +wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean hasKey(java.lang.Object) +android.didikee.donate.R$styleable: int SwitchCompat_trackTint +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMenuView +cyanogenmod.app.ILiveLockScreenManagerProvider: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +com.google.android.material.R$attr: int fontProviderPackage +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noStore() +okhttp3.internal.ws.RealWebSocket: void onReadPing(okio.ByteString) +okhttp3.Response$Builder: okhttp3.Handshake handshake +androidx.lifecycle.extensions.R$id: int tag_transition_group +okhttp3.OkHttpClient$1: void setCache(okhttp3.OkHttpClient$Builder,okhttp3.internal.cache.InternalCache) +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableItem_android_drawable +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: int getSuggestedMinimumHeight() +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar +com.google.android.material.R$dimen: int design_snackbar_elevation +com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusTopEnd +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator TOUCHSCREEN_GESTURE_HAPTIC_FEEDBACK_VALIDATOR +com.google.android.material.chip.Chip: void setEnsureMinTouchTargetSize(boolean) wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: AccuLocationResult$Country() -androidx.legacy.coreutils.R$styleable: int GradientColor_android_type -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startX -androidx.lifecycle.MutableLiveData: MutableLiveData(java.lang.Object) -com.google.android.material.slider.BaseSlider: void setActiveThumbIndex(int) -androidx.work.R$attr: int ttcIndex -com.google.android.material.R$styleable: int KeyPosition_drawPath -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Surface -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickInactiveTintList() -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayDetailsProvider: WidgetClockDayDetailsProvider() -androidx.appcompat.widget.LinearLayoutCompat: int getShowDividers() -james.adaptiveicon.R$dimen: int hint_alpha_material_dark -com.google.gson.internal.JsonReaderInternalAccess: com.google.gson.internal.JsonReaderInternalAccess INSTANCE -com.jaredrummler.android.colorpicker.R$attr: int cpv_allowPresets -com.google.android.material.R$style: int CardView_Dark -androidx.preference.R$styleable: int AppCompatTheme_tooltipFrameBackground -androidx.appcompat.R$attr: int contentInsetStartWithNavigation -androidx.constraintlayout.widget.R$id -james.adaptiveicon.R$attr: int actionBarSize -androidx.hilt.lifecycle.R$style: R$style() -okhttp3.internal.platform.ConscryptPlatform: java.security.Provider getProvider() -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.reflect.Type responseType -wangdaye.com.geometricweather.R$styleable: int CardView_android_minHeight -cyanogenmod.themes.IThemeService: int getProgress() -org.greenrobot.greendao.AbstractDao: void executeInsertInTx(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Iterable,boolean) -com.jaredrummler.android.colorpicker.ColorPanelView: void setBorderColor(int) -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog_MinWidth -com.xw.repo.bubbleseekbar.R$anim: int abc_slide_out_top -androidx.drawerlayout.R$styleable: int GradientColorItem_android_color -cyanogenmod.providers.DataUsageContract: java.lang.String CONTENT_TYPE -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$dimen: int normal_margin -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onKeyguardDismissed() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBaseline_creator -wangdaye.com.geometricweather.R$dimen: int design_tab_text_size_2line -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceScreenStyle -okhttp3.internal.http2.Http2Connection: void writePingAndAwaitPong() -io.reactivex.Observable: io.reactivex.Observable flatMapSingle(io.reactivex.functions.Function) -cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileManager getInstance(android.content.Context) -james.adaptiveicon.R$attr: int backgroundTintMode -cyanogenmod.providers.CMSettings$Secure: java.lang.String __MAGICAL_TEST_PASSING_ENABLER -wangdaye.com.geometricweather.R$dimen: int abc_dialog_min_width_major -androidx.transition.R$styleable: int GradientColor_android_endColor -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_RadioButton -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -okio.AsyncTimeout: boolean cancelScheduledTimeout(okio.AsyncTimeout) -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean getLiveLockScreenEnabled() -io.reactivex.internal.util.VolatileSizeArrayList: void clear() -com.google.android.material.slider.Slider: int getLabelBehavior() -com.google.gson.FieldNamingPolicy$6: java.lang.String translateName(java.lang.reflect.Field) -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_CLOCK -androidx.preference.R$attr: int viewInflaterClass -wangdaye.com.geometricweather.R$dimen: int abc_text_size_body_2_material -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: io.reactivex.internal.fuseable.SimpleQueue queue -com.google.android.material.R$styleable: int[] FlowLayout -james.adaptiveicon.R$styleable: int[] ActivityChooserView -com.xw.repo.bubbleseekbar.R$integer: int abc_config_activityDefaultDur -james.adaptiveicon.R$attr: int textColorSearchUrl -androidx.work.R$dimen: int compat_button_inset_horizontal_material -cyanogenmod.app.ProfileGroup: void setLightsMode(cyanogenmod.app.ProfileGroup$Mode) -androidx.vectordrawable.animated.R$id: int chronometer -androidx.work.R$styleable: int[] ColorStateListItem -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginStart -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -retrofit2.OkHttpCall$NoContentResponseBody -androidx.hilt.R$styleable: int FragmentContainerView_android_name -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getRealFeelTemperature() -com.google.android.material.chip.ChipGroup: void setSingleSelection(int) -james.adaptiveicon.AdaptiveIconView: void setIcon(james.adaptiveicon.AdaptiveIcon) -com.turingtechnologies.materialscrollbar.R$attr: int helperTextEnabled -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.Headers,okhttp3.RequestBody) -com.google.android.material.R$styleable: int MenuItem_android_checked -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionMode -com.google.gson.stream.JsonReader: int PEEKED_BEGIN_ARRAY -com.google.android.material.R$style: int Theme_Design -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_exitFadeDuration -wangdaye.com.geometricweather.R$layout: int container_main_footer -cyanogenmod.weather.IRequestInfoListener: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) -retrofit2.Retrofit$Builder -io.reactivex.disposables.ReferenceDisposable: void onDisposed(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int tabIndicator -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture Past24HourTemperatureDeparture -okhttp3.internal.Internal: void apply(okhttp3.ConnectionSpec,javax.net.ssl.SSLSocket,boolean) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_default -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getIconsThemePackageName() -com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator -com.turingtechnologies.materialscrollbar.R$attr: int actionOverflowMenuStyle -com.google.android.material.R$drawable: int material_ic_keyboard_arrow_previous_black_24dp -com.google.android.material.R$styleable: int KeyTimeCycle_wavePeriod -com.google.android.material.R$color: int notification_icon_bg_color -james.adaptiveicon.R$attr: int tooltipForegroundColor -retrofit2.ParameterHandler$Header: retrofit2.Converter valueConverter -com.xw.repo.bubbleseekbar.R$attr: int autoCompleteTextViewStyle -wangdaye.com.geometricweather.R$styleable: int Motion_motionStagger -androidx.lifecycle.ReportFragment: ReportFragment() -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State valueOf(java.lang.String) -com.google.android.material.R$styleable: int FontFamilyFont_fontVariationSettings -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA -com.google.android.material.R$style: int Base_AlertDialog_AppCompat -com.google.android.material.R$id: int spacer -wangdaye.com.geometricweather.R$drawable: int notification_action_background -cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_MSIM_PHONE_STATE -cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.os.Bundle getOptions() -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_vertical_padding -com.jaredrummler.android.colorpicker.R$attr: int trackTintMode -com.bumptech.glide.R$id: int normal -wangdaye.com.geometricweather.R$drawable: int flag_ar -io.reactivex.Observable: io.reactivex.Observable doOnSubscribe(io.reactivex.functions.Consumer) -cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_PROVIDER -wangdaye.com.geometricweather.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -com.google.android.material.R$id: int chip_group -android.support.v4.app.INotificationSideChannel$Stub: java.lang.String DESCRIPTOR -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMenuItemView -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_anchor -wangdaye.com.geometricweather.R$string: int day -androidx.transition.R$integer: int status_bar_notification_info_maxnum -okhttp3.internal.ws.RealWebSocket: boolean enqueuedClose -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_android_textAppearance -cyanogenmod.providers.CMSettings$Secure: boolean shouldInterceptSystemProvider(java.lang.String) -james.adaptiveicon.R$string: int abc_capital_off -io.reactivex.internal.subscriptions.DeferredScalarSubscription: void clear() -androidx.appcompat.widget.AppCompatRatingBar -wangdaye.com.geometricweather.R$id: int activity_alert_recyclerView -com.google.android.material.R$attr: int stackFromEnd -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents -okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,okio.ByteString) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$attr: int buttonStyle -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cdp -james.adaptiveicon.R$attr: int colorSwitchThumbNormal -com.google.gson.stream.JsonReader: java.lang.String locationString() -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_icon -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String wind_direct -androidx.recyclerview.R$id: int accessibility_custom_action_22 -okio.RealBufferedSink$1: void write(int) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_subhead_material -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context) -retrofit2.RequestBuilder: okhttp3.Request$Builder get() -okhttp3.Response: okhttp3.Request request() -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_id -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_15 -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_Solid -com.google.android.material.R$string: int clear_text_end_icon_content_description -okhttp3.internal.http1.Http1Codec$FixedLengthSource: Http1Codec$FixedLengthSource(okhttp3.internal.http1.Http1Codec,long) -okio.ByteString: okio.ByteString EMPTY -retrofit2.BuiltInConverters$VoidResponseBodyConverter: java.lang.Object convert(java.lang.Object) -okhttp3.internal.http1.Http1Codec$FixedLengthSink: void close() -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_enabled -okhttp3.internal.http.HttpHeaders: int skipWhitespace(java.lang.String,int) -androidx.appcompat.R$attr: int actionModeSplitBackground -androidx.appcompat.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain6h -okhttp3.internal.platform.Platform: void logCloseableLeak(java.lang.String,java.lang.Object) -androidx.preference.R$styleable: int GradientColorItem_android_color -okhttp3.internal.http2.Http2Connection$2: long val$unacknowledgedBytesRead -wangdaye.com.geometricweather.R$styleable: int[] SeekBarPreference -com.google.android.material.R$styleable: int Constraint_android_layout_marginStart -wangdaye.com.geometricweather.R$drawable: int ic_launcher -wangdaye.com.geometricweather.R$string: int key_notification_hide_in_lockScreen -wangdaye.com.geometricweather.R$attr: int indicatorCornerRadius -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -wangdaye.com.geometricweather.R$attr: int buttonStyleSmall -retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler[] parameterHandlers -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: AccuCurrentResult$RealFeelTemperatureShade() -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onError(java.lang.Throwable) -androidx.hilt.work.R$dimen: int compat_notification_large_icon_max_width -android.didikee.donate.R$color: int primary_material_dark -androidx.core.R$styleable: int FontFamily_fontProviderCerts -androidx.appcompat.R$drawable: int abc_list_divider_material -cyanogenmod.themes.ThemeManager: void unregisterProcessingListener(cyanogenmod.themes.ThemeManager$ThemeProcessingListener) -com.bumptech.glide.R$id: int right_icon -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_MinWidth_Bridge -androidx.activity.R$layout: int notification_template_icon_group -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_inverse_material_light -androidx.fragment.R$styleable: int GradientColor_android_startColor -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_srcCompat -okhttp3.Cache$CacheResponseBody: okio.BufferedSource bodySource -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setAqi(java.lang.String) -james.adaptiveicon.R$color: int secondary_text_disabled_material_light -com.turingtechnologies.materialscrollbar.R$drawable: int design_snackbar_background -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder readTimeout(long,java.util.concurrent.TimeUnit) -androidx.vectordrawable.animated.R$string: R$string() -android.didikee.donate.R$attr: int allowStacking -android.didikee.donate.R$style: int AlertDialog_AppCompat -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitationProbability() -com.xw.repo.bubbleseekbar.R$id: int decor_content_parent -wangdaye.com.geometricweather.R$dimen: int mtrl_fab_elevation -com.google.android.material.R$attr: int region_heightMoreThan -okhttp3.OkHttpClient$1: void addLenient(okhttp3.Headers$Builder,java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getSo2Color(android.content.Context) -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable -androidx.cardview.R$dimen: int cardview_compat_inset_shadow -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_weatherContainer -wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_light -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedHeightMinor -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarWidgetTheme -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_toBottomOf -wangdaye.com.geometricweather.R$id: int dialog_location_help_providerIcon -okhttp3.Address: okhttp3.HttpUrl url -androidx.fragment.R$styleable: int FontFamily_fontProviderFetchStrategy -com.turingtechnologies.materialscrollbar.R$attr: int materialButtonStyle -retrofit2.Call: okhttp3.Request request() -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: void providerDied() -james.adaptiveicon.R$styleable: int AppCompatTextView_fontFamily -androidx.hilt.R$id: int accessibility_custom_action_19 -okhttp3.internal.http2.Settings: int DEFAULT_INITIAL_WINDOW_SIZE -androidx.appcompat.widget.AppCompatAutoCompleteTextView -cyanogenmod.providers.DataUsageContract: java.lang.String SLOW_AVG -wangdaye.com.geometricweather.common.basic.GeoActivity: GeoActivity() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherSource(java.lang.String) -com.google.android.material.R$styleable: int FloatingActionButton_borderWidth -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_text_size -androidx.recyclerview.widget.LinearLayoutManager$SavedState -androidx.appcompat.R$layout: int abc_expanded_menu_layout -wangdaye.com.geometricweather.R$attr: int minSeparation -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: double lon -james.adaptiveicon.R$attr: int tintMode -androidx.preference.R$attr: int listPreferredItemPaddingEnd -okhttp3.internal.connection.RouteException: java.io.IOException getFirstConnectException() -okhttp3.Cache$Entry: java.util.List readCertificateList(okio.BufferedSource) -okhttp3.Response: int code() +androidx.preference.R$id: int up +androidx.customview.R$dimen: int notification_action_icon_size +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_dividerPadding +androidx.lifecycle.extensions.R +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBaseline_creator +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer rainHazard3h +wangdaye.com.geometricweather.R$color: int lightPrimary_2 +com.google.android.material.R$styleable: int SearchView_android_focusable +wangdaye.com.geometricweather.R$attr: int expandedHintEnabled +com.jaredrummler.android.colorpicker.R$layout: int support_simple_spinner_dropdown_item +cyanogenmod.providers.CMSettings$Secure: java.lang.String THEME_PREV_BOOT_API_LEVEL +wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_layout +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontVariationSettings +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_spinnerStyle +james.adaptiveicon.R$dimen: int hint_alpha_material_light +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver +androidx.hilt.R$style: int Widget_Compat_NotificationActionText +androidx.lifecycle.SavedStateViewModelFactory: SavedStateViewModelFactory(android.app.Application,androidx.savedstate.SavedStateRegistryOwner) +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: long serialVersionUID +androidx.work.R$dimen: int compat_button_inset_vertical_material +androidx.appcompat.R$id: int split_action_bar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: AccuCurrentResult$WindChillTemperature() +androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_weight +cyanogenmod.hardware.ICMHardwareService: byte[] readPersistentBytes(java.lang.String) +okhttp3.Cookie$Builder: java.lang.String name +com.google.android.material.R$attr: int materialCalendarStyle +wangdaye.com.geometricweather.R$attr: int tabMaxWidth +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintTextAppearance +cyanogenmod.providers.CMSettings$System: java.lang.String SYSTEM_PROFILES_ENABLED +com.google.android.material.R$styleable: int FloatingActionButton_hideMotionSpec +okhttp3.internal.io.FileSystem +com.turingtechnologies.materialscrollbar.R$attr: int dropDownListViewStyle +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_weight +com.xw.repo.bubbleseekbar.R$id: int textSpacerNoButtons +james.adaptiveicon.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +com.google.android.material.R$styleable: int CardView_android_minWidth +androidx.preference.R$style: int Widget_AppCompat_Button_Small +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitationProbability() +okio.Buffer$1: void flush() +wangdaye.com.geometricweather.R$attr: int fontProviderAuthority +cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String itemSummary +okio.RealBufferedSink: okio.BufferedSink writeDecimalLong(long) +com.google.android.material.R$attr: int drawableTintMode +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_112 +androidx.work.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.R$layout: int design_layout_snackbar_include +com.jaredrummler.android.colorpicker.R$style: int Preference_CheckBoxPreference_Material +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar +androidx.core.R$dimen: int notification_right_side_padding_top +androidx.appcompat.R$dimen: int abc_action_button_min_width_material +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginStart +cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,cyanogenmod.app.CustomTile,android.os.UserHandle) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarDivider +io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: int UnitType +com.google.android.material.R$id: int mtrl_picker_text_input_date +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +wangdaye.com.geometricweather.R$id: int transparency_layout +androidx.preference.R$styleable: int[] MenuGroup +androidx.transition.R$style +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.MultipartBody$Part) +okhttp3.internal.http.BridgeInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +wangdaye.com.geometricweather.R$id: int enterAlways +com.google.android.material.R$styleable: int PopupWindow_android_popupBackground +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.Function rightEnd +james.adaptiveicon.R$string: int status_bar_notification_info_overflow +androidx.constraintlayout.utils.widget.ImageFilterView: float getBrightness() +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_submitBackground +com.google.android.material.slider.BaseSlider: void setThumbStrokeWidth(float) +okhttp3.OkHttpClient$Builder: int writeTimeout +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +wangdaye.com.geometricweather.background.polling.work.worker.TomorrowForecastUpdateWorker +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_20 +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +com.google.android.material.R$xml: int standalone_badge_gravity_bottom_start +io.reactivex.Observable: io.reactivex.Observable delaySubscription(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.R$dimen: int abc_search_view_preferred_width +cyanogenmod.app.IProfileManager$Stub$Proxy: void resetAll() +okhttp3.internal.http2.Http2Connection$Builder: boolean client +cyanogenmod.externalviews.IExternalViewProvider: void onResume() +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay valueOf(java.lang.String) +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityResumed(android.app.Activity) +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom +okhttp3.CacheControl$Builder: CacheControl$Builder() +androidx.activity.R$drawable: int notification_tile_bg +cyanogenmod.hardware.CMHardwareManager: boolean requireAdaptiveBacklightForSunlightEnhancement() +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour[] values() +com.google.android.material.R$styleable: int Badge_horizontalOffset +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_at +okhttp3.internal.http2.Http2: java.lang.String frameLog(boolean,int,int,byte,byte) +androidx.dynamicanimation.R$drawable: int notification_bg_low_normal +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabTextAppearance +com.xw.repo.bubbleseekbar.R$attr: int paddingEnd +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_RC4_128_MD5 +com.google.android.material.radiobutton.MaterialRadioButton: void setUseMaterialThemeColors(boolean) +androidx.appcompat.view.menu.ListMenuItemView: void setGroupDividerEnabled(boolean) +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: boolean hasCompleted() +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getMoldIndex() +wangdaye.com.geometricweather.R$drawable: int ic_flower +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onComplete() +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +com.bumptech.glide.R$id: R$id() +com.google.android.material.R$styleable: int Slider_haloColor +wangdaye.com.geometricweather.R$string: int settings_title_gravity_sensor_switch +androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStoreOwner) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +com.google.android.material.R$id: int triangle +android.didikee.donate.R$styleable: int MenuItem_showAsAction +com.google.android.material.R$styleable: int[] MaterialRadioButton +wangdaye.com.geometricweather.R$id: int container_main_pollen_title +io.reactivex.internal.disposables.EmptyDisposable: boolean offer(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: java.lang.Object index() +androidx.fragment.R$anim: int fragment_open_enter +wangdaye.com.geometricweather.R$integer: int bottom_sheet_slide_duration +wangdaye.com.geometricweather.db.entities.LocationEntity: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource weatherSource +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +okhttp3.Cache: long maxSize() +com.jaredrummler.android.colorpicker.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +io.reactivex.internal.schedulers.ScheduledRunnable: long serialVersionUID +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_shadow_height +android.didikee.donate.R$attr: int spinBars +android.didikee.donate.R$styleable: int AppCompatTheme_windowActionBar +androidx.constraintlayout.widget.R$attr: int waveOffset +okhttp3.internal.http.RequestLine: java.lang.String get(okhttp3.Request,java.net.Proxy$Type) +okhttp3.Protocol: okhttp3.Protocol valueOf(java.lang.String) +com.google.android.material.R$styleable: int Slider_thumbStrokeColor +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RealFeelTemperature +okhttp3.internal.platform.ConscryptPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +androidx.lifecycle.extensions.R$styleable +io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit) +com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearanceInactive +com.google.android.material.textfield.TextInputEditText: java.lang.CharSequence getHintFromLayout() +cyanogenmod.weather.RequestInfo$1: RequestInfo$1() +com.google.android.material.R$attr: int divider +androidx.loader.R$color: int notification_icon_bg_color +com.bumptech.glide.Priority: com.bumptech.glide.Priority[] values() +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogLayout +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_trackTintMode +androidx.preference.R$styleable: int ActionMode_background +androidx.activity.R$style: int Widget_Compat_NotificationActionText +okio.BufferedSource: long readDecimalLong() +com.google.android.material.R$attr: int pivotAnchor +okio.Okio$2: java.io.InputStream val$in +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderToggleButton +android.didikee.donate.R$dimen: int abc_list_item_padding_horizontal_material +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemBackground(android.graphics.drawable.Drawable) +com.xw.repo.bubbleseekbar.R$attr: int windowFixedWidthMajor +com.xw.repo.bubbleseekbar.R$attr: int thumbTintMode +wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Icon +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_alpha +androidx.preference.R$attr: int customNavigationLayout +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: int UnitType +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Bridge +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.ChineseCityEntity,long) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindSpeed(java.lang.Float) +okio.SegmentedByteString: java.lang.String utf8() +androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.LifecycleRegistry mRegistry +okhttp3.internal.http2.Http2Connection: void writeSynReply(int,boolean,java.util.List) +androidx.hilt.work.R$id: int notification_main_column_container +android.support.v4.os.IResultReceiver$Stub: IResultReceiver$Stub() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMarkTint +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeight +wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_margin_left +android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_cancelAll +com.google.android.material.R$styleable: int AppCompatTheme_switchStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_tooltipFrameBackground +wangdaye.com.geometricweather.R$drawable: int ic_star_outline +androidx.customview.R$styleable: int GradientColorItem_android_offset +io.reactivex.Observable: io.reactivex.Observable doOnComplete(io.reactivex.functions.Action) +wangdaye.com.geometricweather.R$attr: int headerLayout +androidx.constraintlayout.motion.widget.MotionLayout: void setScene(androidx.constraintlayout.motion.widget.MotionScene) +retrofit2.Call: okio.Timeout timeout() +wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_alpha +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTitle(java.lang.CharSequence) +androidx.hilt.work.R$anim: int fragment_open_enter +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: boolean done +com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$id: int item_weather_daily_title_icon +android.didikee.donate.R$styleable: int AppCompatTheme_colorPrimaryDark +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder pushObserver(okhttp3.internal.http2.PushObserver) +androidx.lifecycle.extensions.R$color +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Surface +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipMinTouchTargetSize +wangdaye.com.geometricweather.R$attr: int borderlessButtonStyle +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +androidx.lifecycle.LifecycleRegistry: int mAddingObserverCounter +okio.SegmentedByteString: okio.ByteString substring(int,int) +android.didikee.donate.R$styleable: int Toolbar_titleMargins +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$attr: int singleChoiceItemLayout +james.adaptiveicon.R$styleable: int Toolbar_titleTextColor +james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Light +com.google.android.material.R$attr: int textAppearanceListItem androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory getEdgeEffectFactory() -androidx.viewpager2.R$styleable: int GradientColor_android_startX -james.adaptiveicon.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -okhttp3.ResponseBody -androidx.preference.R$anim: int btn_checkbox_to_checked_icon_null_animation -androidx.hilt.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$color: int bright_foreground_inverse_material_light -cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Tooltip -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -okhttp3.logging.LoggingEventListener: void responseHeadersEnd(okhttp3.Call,okhttp3.Response) -com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Circular -cyanogenmod.app.Profile: void addSecondaryUuid(java.util.UUID) -okhttp3.Response: okhttp3.Response cacheResponse() -wangdaye.com.geometricweather.R$drawable: int notif_temp_4 -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -androidx.appcompat.R$dimen: int abc_dialog_fixed_height_minor -io.reactivex.internal.util.NotificationLite$ErrorNotification: java.lang.Throwable e -androidx.lifecycle.extensions.R$attr: int font -androidx.constraintlayout.widget.R$drawable: int notify_panel_notification_icon_bg -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionMode -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onComplete() -okio.ForwardingTimeout: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Body1 -androidx.appcompat.R$id: int parentPanel -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: java.lang.Object v2 -android.didikee.donate.R$styleable: int AppCompatTheme_checkedTextViewStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_corner_radius_small -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart -androidx.preference.R$id: int search_mag_icon -androidx.lifecycle.LifecycleService: void onDestroy() -wangdaye.com.geometricweather.R$id: int save_overlay_view -wangdaye.com.geometricweather.R$styleable: int ActionBar_backgroundStacked -com.jaredrummler.android.colorpicker.R$id -wangdaye.com.geometricweather.R$attr: int itemMaxLines -com.google.android.material.R$styleable: int[] State -com.google.android.material.slider.BaseSlider$SliderState: android.os.Parcelable$Creator CREATOR -retrofit2.CompletableFutureCallAdapterFactory: CompletableFutureCallAdapterFactory() -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton -androidx.constraintlayout.widget.R$attr: int colorPrimaryDark -com.github.rahatarmanahmed.cpv.CircularProgressView: void onMeasure(int,int) -james.adaptiveicon.R$drawable: int abc_text_select_handle_left_mtrl_dark -androidx.coordinatorlayout.R$id: int actions -androidx.appcompat.R$drawable: int abc_textfield_default_mtrl_alpha -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.functions.Function mapper -com.google.android.material.R$id: int accessibility_custom_action_16 -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_23 -retrofit2.Retrofit$Builder: boolean validateEagerly -com.jaredrummler.android.colorpicker.R$bool: int abc_config_actionMenuItemAllCaps -android.didikee.donate.R$style: int Theme_AppCompat_CompactMenu -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: long val$n -wangdaye.com.geometricweather.R$attr: int seekBarIncrement +okio.RealBufferedSink: okio.BufferedSink writeInt(int) +androidx.appcompat.view.menu.ExpandedMenuView: int getWindowAnimations() +okhttp3.internal.cache.CacheInterceptor$1: void close() +androidx.swiperefreshlayout.R$id: int tag_accessibility_heading +okhttp3.RealCall: okhttp3.Request request() +androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerX +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_setServiceClient +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onKeyguardDismissed +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: wangdaye.com.geometricweather.db.entities.MinutelyEntity readEntity(android.database.Cursor,int) +cyanogenmod.weather.WeatherInfo: java.lang.String mCity +com.turingtechnologies.materialscrollbar.R$attr: int msb_recyclerView +com.bumptech.glide.integration.okhttp.R$id: int right_side +com.google.android.material.R$animator: int mtrl_fab_transformation_sheet_expand_spec +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode[] $VALUES +com.turingtechnologies.materialscrollbar.R$dimen: int cardview_default_radius +okhttp3.internal.ws.RealWebSocket$1 +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +android.didikee.donate.R$attr: int buttonStyleSmall +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_GCM_SHA256 +android.didikee.donate.R$attr: int trackTintMode +wangdaye.com.geometricweather.R$array: int pollen_units +cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast() +james.adaptiveicon.R$style: int Base_AlertDialog_AppCompat +com.google.android.material.R$id: int material_timepicker_view +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: java.lang.String Unit +com.jaredrummler.android.colorpicker.R$drawable: R$drawable() +androidx.appcompat.R$styleable: int Toolbar_collapseIcon +androidx.preference.R$color: int abc_primary_text_disable_only_material_dark +com.bumptech.glide.Registry$NoImageHeaderParserException: Registry$NoImageHeaderParserException() +com.google.android.material.R$style: int Widget_Design_ScrimInsetsFrameLayout +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_font +com.google.android.material.R$id: int start +android.didikee.donate.R$style: int Widget_AppCompat_ListView +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogTheme +androidx.appcompat.R$color: int material_grey_800 +com.google.android.material.bottomsheet.BottomSheetBehavior +cyanogenmod.providers.CMSettings$1: boolean validate(java.lang.String) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: java.util.concurrent.atomic.AtomicReference queue +androidx.appcompat.R$id: int topPanel +com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonTint +com.github.rahatarmanahmed.cpv.R$string: R$string() +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_backgroundSplit +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_z +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorTextAppearance +com.google.android.material.R$styleable: int AppCompatTheme_actionModeCloseDrawable +com.xw.repo.bubbleseekbar.R$string: int abc_activity_chooser_view_see_all +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.lang.String type +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_toLeftOf +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Badge +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setHumidity(double) +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_numericModifiers +android.didikee.donate.R$drawable: int abc_cab_background_top_material +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_padding_end_material +androidx.preference.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +androidx.appcompat.widget.ActionBarContainer: ActionBarContainer(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +wangdaye.com.geometricweather.R$id: int activity_widget_config_scrollContainer +okhttp3.internal.http2.Http2Connection: void pushRequestLater(int,java.util.List) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitationProbability +okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] WILDCARD_LABEL +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: long serialVersionUID +cyanogenmod.profiles.ConnectionSettings$1 +wangdaye.com.geometricweather.R$color: int mtrl_calendar_item_stroke_color +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState MOVING +androidx.lifecycle.LifecycleService: void onStart(android.content.Intent,int) +android.didikee.donate.R$attr: int actionMenuTextColor +com.xw.repo.bubbleseekbar.R$id: int actions +okhttp3.Address: okhttp3.CertificatePinner certificatePinner +androidx.coordinatorlayout.R$attr: int fontProviderFetchTimeout +com.google.android.material.R$style: int TextAppearance_Design_Hint +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +okio.BufferedSink: okio.BufferedSink writeUtf8CodePoint(int) +com.turingtechnologies.materialscrollbar.R$id: int transition_position +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemIconTint +androidx.constraintlayout.utils.widget.ImageFilterView: void setRound(float) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_android_elevation +androidx.appcompat.widget.AppCompatSpinner: android.content.res.ColorStateList getSupportBackgroundTintList() +android.didikee.donate.R$layout: int abc_activity_chooser_view_list_item +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setCityId(java.lang.String) +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_margin +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_progressBarStyle +cyanogenmod.themes.ThemeManager: java.util.Set access$300(cyanogenmod.themes.ThemeManager) +okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeOptional(java.lang.Object,java.lang.Object[]) +retrofit2.KotlinExtensions: java.lang.Object awaitNullable(retrofit2.Call,kotlin.coroutines.Continuation) +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalAlign +androidx.work.R$id: int normal +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: AccuDailyResult$Headline() +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Time +cyanogenmod.profiles.AirplaneModeSettings: int mValue +androidx.customview.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_38 +com.jaredrummler.android.colorpicker.R$string: int abc_menu_sym_shortcut_label +androidx.preference.R$attr: int backgroundTint +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: cyanogenmod.app.ThemeVersion$ComponentVersion getDeviceComponentVersion(cyanogenmod.app.ThemeComponent) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$drawable: int ic_temperature_fahrenheit +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_inverse_material_light +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_127 +androidx.core.R$styleable: int GradientColor_android_type +okhttp3.internal.http2.Http2Stream$FramingSource: boolean finished +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Info +okhttp3.internal.ws.RealWebSocket$Streams +androidx.appcompat.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +wangdaye.com.geometricweather.R$color: int material_on_primary_emphasis_medium +wangdaye.com.geometricweather.R$drawable: int ic_sunrise +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +wangdaye.com.geometricweather.R$attr: int searchIcon +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType valueOf(java.lang.String) +wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_3 +wangdaye.com.geometricweather.R$array: int subtitle_data +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_2 +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_ANY +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_toBottomOf +com.google.android.material.R$attr: int searchIcon +androidx.fragment.app.FragmentState +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackInactiveTintList() +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_31 +okhttp3.HttpUrl: void pathSegmentsToString(java.lang.StringBuilder,java.util.List) +okio.BufferedSource: void readFully(byte[]) +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +wangdaye.com.geometricweather.R$style: int Widget_Design_TextInputEditText +cyanogenmod.weather.CMWeatherManager$2$1: int val$status +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_card_elevation +androidx.constraintlayout.widget.Barrier: void setMargin(int) +androidx.appcompat.R$color: int material_grey_900 +androidx.preference.R$styleable: int[] SwitchPreferenceCompat +com.google.android.material.R$styleable: int Transition_duration +androidx.fragment.R$dimen: int notification_subtext_size +okhttp3.Address: java.util.List connectionSpecs +com.google.android.material.bottomnavigation.BottomNavigationPresenter$SavedState +androidx.coordinatorlayout.R$id: int dialog_button +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeStepGranularity +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_percent +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType STRING_TYPE +cyanogenmod.externalviews.ExternalView: cyanogenmod.externalviews.IExternalViewProvider mExternalViewProvider +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: double Value +androidx.preference.R$styleable: int AppCompatTheme_checkedTextViewStyle +retrofit2.OptionalConverterFactory$OptionalConverter: java.lang.Object convert(java.lang.Object) +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light +wangdaye.com.geometricweather.R$id: int ignore +androidx.viewpager.R$drawable: int notification_icon_background +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertInTxArray +androidx.constraintlayout.widget.R$id: int startVertical +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void collapseNotificationPanel() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: android.graphics.Rect val$clipRect +okio.SegmentedByteString: int segment(int) +androidx.activity.R$id: int tag_screen_reader_focusable +com.google.android.material.R$style: int TextAppearance_AppCompat_SearchResult_Title +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$id: int line3 +com.google.android.material.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: AccuCurrentResult$Past24HourTemperatureDeparture() +com.google.android.material.bottomappbar.BottomAppBar$SavedState: android.os.Parcelable$Creator CREATOR +androidx.coordinatorlayout.R$attr: int keylines +io.reactivex.Observable: io.reactivex.Observable flatMapMaybe(io.reactivex.functions.Function,boolean) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void drain() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_65 +androidx.work.R$attr: int fontVariationSettings +androidx.lifecycle.SavedStateHandleController$1: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.R$dimen: int compat_button_inset_horizontal_material +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupMenu_Overflow +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_1 +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: android.os.IBinder mRemote +androidx.coordinatorlayout.R$id: int accessibility_custom_action_8 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String getUvIndex() +androidx.preference.R$attr: int closeItemLayout +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_is_float_type +wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_EditTextPreference_Material +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.Observer downstream +androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableTransition +com.google.android.material.R$attr: int dragScale +com.google.android.material.R$id: int spread +wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_colorShape +james.adaptiveicon.R$attr: int titleMarginEnd +com.xw.repo.bubbleseekbar.R$layout: int abc_screen_toolbar +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +retrofit2.http.HeaderMap +okio.HashingSource: long read(okio.Buffer,long) +androidx.appcompat.resources.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$string: int abc_action_bar_up_description +wangdaye.com.geometricweather.R$string: int content_des_so2 +okio.Buffer$UnsafeCursor: boolean readWrite +androidx.constraintlayout.widget.R$attr: int colorBackgroundFloating +okhttp3.internal.connection.RealConnection: okhttp3.internal.http.HttpCodec newCodec(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,okhttp3.internal.connection.StreamAllocation) +wangdaye.com.geometricweather.R$styleable: int CardView_android_minWidth +james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupWindow +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator parent +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: AccuCurrentResult$Precip1hr$Imperial() +wangdaye.com.geometricweather.R$dimen: int abc_button_inset_horizontal_material +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +wangdaye.com.geometricweather.R$attr: int layout_constraintTag +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_android_windowAnimationStyle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animDuration +wangdaye.com.geometricweather.background.polling.basic.UpdateService +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean +wangdaye.com.geometricweather.R$attr: int cpv_dialogType +wangdaye.com.geometricweather.R$color: int primary_dark_material_dark +androidx.hilt.work.R$layout: int notification_template_part_chronometer +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabTextStyle +okhttp3.internal.http2.Http2Stream: boolean $assertionsDisabled +io.reactivex.internal.util.NotificationLite$ErrorNotification +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_showDividers +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableRight +androidx.viewpager2.R$id: int info +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_BRIGHTNESS_CONTROL +androidx.constraintlayout.widget.R$attr: int autoTransition +androidx.appcompat.R$dimen: int abc_select_dialog_padding_start_material +android.didikee.donate.R$id: int decor_content_parent +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String country +android.didikee.donate.R$styleable: int LinearLayoutCompat_showDividers +androidx.appcompat.R$layout: int abc_screen_toolbar +com.google.android.material.R$id: int packed +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getAbbreviation(android.content.Context) +com.bumptech.glide.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.main.utils.MainPalette: android.os.Parcelable$Creator CREATOR +androidx.fragment.R$id: int icon_group +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_25 +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme_Dark +james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.google.android.material.R$styleable: int PopupWindow_overlapAnchor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: int UnitType +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric() +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.lang.Object enterTransform(java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_2 +androidx.lifecycle.ReflectiveGenericLifecycleObserver: androidx.lifecycle.ClassesInfoCache$CallbackInfo mInfo +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_28 +cyanogenmod.app.Profile: Profile(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric() +wangdaye.com.geometricweather.R$attr: int motionDebug +com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context) +okhttp3.internal.connection.StreamAllocation: StreamAllocation(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.Call,okhttp3.EventListener,java.lang.Object) +android.didikee.donate.R$attr: int actionLayout +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_shapeAppearanceOverlay +androidx.appcompat.R$dimen: int highlight_alpha_material_colored +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec codec +wangdaye.com.geometricweather.R$string: int settings_title_forecast_today_time +androidx.constraintlayout.widget.R$styleable: int View_paddingStart +cyanogenmod.providers.CMSettings$Global: int getInt(android.content.ContentResolver,java.lang.String,int) +james.adaptiveicon.R$styleable: int AppCompatTheme_borderlessButtonStyle +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_dividerPadding +androidx.recyclerview.R$styleable: int FontFamilyFont_fontWeight +androidx.constraintlayout.widget.R$attr: int textAllCaps +androidx.preference.R$attr: int allowDividerAfterLastItem +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Headline6 +io.reactivex.exceptions.OnErrorNotImplementedException +com.google.android.material.R$id: int jumpToStart +wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchAnchorSide +com.google.android.material.R$styleable: int DrawerArrowToggle_gapBetweenBars +androidx.preference.R$styleable: int RecyclerView_stackFromEnd +cyanogenmod.app.Profile$1: java.lang.Object[] newArray(int) +androidx.lifecycle.ProcessLifecycleOwner: ProcessLifecycleOwner() +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_textOn +androidx.hilt.lifecycle.R$id: int async +com.google.android.material.R$layout: int design_text_input_start_icon +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_holo_dark +cyanogenmod.externalviews.ExternalViewProviderService$1 +com.turingtechnologies.materialscrollbar.R$attr: int windowMinWidthMajor +com.google.android.material.R$styleable: int Toolbar_navigationIcon +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: void run() +com.google.android.material.R$styleable: int MaterialCalendar_yearTodayStyle +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadPong(okio.ByteString) +androidx.vectordrawable.R$styleable: int GradientColor_android_endX +okhttp3.internal.http2.Http2Writer: void flush() +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontStyle +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableEnd +com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getRippleColorStateList() +cyanogenmod.profiles.RingModeSettings: RingModeSettings(android.os.Parcel) +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_orderInCategory +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindChillTemperature(java.lang.Integer) +androidx.preference.R$id: int chronometer +okhttp3.Response: java.lang.String header(java.lang.String,java.lang.String) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.ObservableSource sampler +com.google.android.material.R$styleable: int MenuItem_showAsAction +com.xw.repo.bubbleseekbar.R$id: int title +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.google.android.material.R$attr: int autoCompleteTextViewStyle +wangdaye.com.geometricweather.R$string: int mtrl_picker_confirm +androidx.appcompat.R$style: int Base_V26_Theme_AppCompat +com.google.android.material.textfield.TextInputLayout: void setStartIconDrawable(int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonPhaseAngle +io.reactivex.internal.observers.BlockingObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.providers.WeatherContract: android.net.Uri AUTHORITY_URI +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.Map rights +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar +androidx.preference.R$dimen: int preference_seekbar_padding_horizontal +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.MinutelyEntity) +retrofit2.OkHttpCall: java.lang.Object clone() +retrofit2.ParameterHandler: retrofit2.ParameterHandler iterable() +androidx.drawerlayout.R$styleable: int GradientColor_android_startX +retrofit2.converter.gson.GsonConverterFactory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +android.didikee.donate.R$attr: int theme +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_summaryOn +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int getSubTextColorResId() +cyanogenmod.providers.CMSettings$System: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) +okhttp3.internal.connection.StreamAllocation: boolean hasMoreRoutes() +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.R$drawable: int ic_github_dark +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy UPPER_CAMEL_CASE +com.jaredrummler.android.colorpicker.R$attr: int actionModeShareDrawable +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: long endTime +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarDivider +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) +androidx.core.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSuggest(java.lang.String) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_bottom_material +io.reactivex.Observable: java.lang.Object as(io.reactivex.ObservableConverter) +com.google.android.material.chip.Chip: float getChipStartPadding() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.lang.String pubTime +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$x +androidx.lifecycle.ProcessLifecycleOwner: void activityPaused() +wangdaye.com.geometricweather.R$styleable: int Spinner_android_popupBackground +retrofit2.Platform$Android$MainThreadExecutor: android.os.Handler handler +android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_MEDIUM_COLOR +androidx.appcompat.R$drawable: int abc_spinner_textfield_background_material +wangdaye.com.geometricweather.R$id: int item_weather_daily_pollen +wangdaye.com.geometricweather.R$color: int mtrl_card_view_foreground +com.jaredrummler.android.colorpicker.R$drawable: int abc_item_background_holo_dark +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline2 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setValue(java.util.List) +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: ILiveLockScreenChangeListener$Stub$Proxy(android.os.IBinder) +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void dispose() +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconPadding +androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableTransition +wangdaye.com.geometricweather.R$string: int settings_title_click_widget_to_refresh +cyanogenmod.weather.WeatherInfo$DayForecast: int getConditionCode() +cyanogenmod.weather.CMWeatherManager: java.util.Set access$000(cyanogenmod.weather.CMWeatherManager) +io.reactivex.internal.observers.InnerQueuedObserver: long serialVersionUID +cyanogenmod.app.CMTelephonyManager: void setDefaultPhoneSub(int) +android.didikee.donate.R$style: int ThemeOverlay_AppCompat +androidx.hilt.R$anim: int fragment_open_enter +com.google.android.material.R$styleable: int TextInputLayout_startIconCheckable +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Overline +cyanogenmod.app.CustomTile$ExpandedStyle$1 +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +com.google.android.material.slider.RangeSlider: void setValueTo(float) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver otherObserver +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +retrofit2.adapter.rxjava2.CallExecuteObservable: CallExecuteObservable(retrofit2.Call) +android.didikee.donate.R$style: int Widget_AppCompat_PopupMenu +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: java.lang.String Unit +okhttp3.CertificatePinner: okio.ByteString sha256(java.security.cert.X509Certificate) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getHourlyEntityList() +wangdaye.com.geometricweather.R$dimen: int notification_top_pad +cyanogenmod.weatherservice.ServiceRequestResult: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Category +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_motionProgress +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_PrimarySurface +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_handleColor +com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding[] values() +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int INTERRUPTING +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindLevel(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textColorSearchUrl +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.functions.Function,int,io.reactivex.ObservableSource[]) +androidx.constraintlayout.widget.R$color: int abc_primary_text_disable_only_material_light +com.xw.repo.bubbleseekbar.R$color: int abc_tint_spinner +com.google.android.material.R$styleable: int[] AppBarLayoutStates +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_53 +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: javax.inject.Provider apiProvider +wangdaye.com.geometricweather.R$color: int design_default_color_error +okio.Buffer: okio.ByteString sha1() +com.google.android.material.R$id: int invisible +androidx.constraintlayout.widget.R$color: int highlighted_text_material_dark +cyanogenmod.app.CustomTile$ExpandedStyle: cyanogenmod.app.CustomTile$ExpandedItem[] expandedItems +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: wangdaye.com.geometricweather.location.services.LocationService$LocationCallback val$callback +wangdaye.com.geometricweather.R$array: int speed_units +androidx.constraintlayout.widget.R$id: int right_side +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: androidx.lifecycle.SavedStateHandle mHandle +android.didikee.donate.R$string: int abc_searchview_description_voice +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context,android.util.AttributeSet,int) +androidx.hilt.work.R$dimen: int compat_notification_large_icon_max_width +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintDimensionRatio +com.google.android.material.R$attr: int tooltipFrameBackground +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents +wangdaye.com.geometricweather.R$style: int widget_text_clock_analog_Light +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getCeiling() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Button +io.reactivex.internal.util.AtomicThrowable: boolean addThrowable(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: java.lang.String WeatherCode +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Light +com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_title_material +com.google.android.material.R$dimen: int abc_dialog_min_width_minor +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,io.reactivex.Scheduler) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerNext(io.reactivex.internal.observers.InnerQueuedObserver,java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int shortcuts_rain +wangdaye.com.geometricweather.R$string: int fab_transformation_sheet_behavior +androidx.coordinatorlayout.R$attr: int coordinatorLayoutStyle +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float totalPrecipitation +com.google.android.material.R$style: int Theme_Design_Light +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixTextColor +androidx.appcompat.widget.Toolbar: android.view.MenuInflater getMenuInflater() +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_23 +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.util.List protocols +androidx.appcompat.R$style: int Widget_AppCompat_ListView +androidx.viewpager2.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String value +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: AccuDailyResult$DailyForecasts$Day$Wind$Speed() +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_ActionBar +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +androidx.core.graphics.drawable.IconCompat: IconCompat() +okio.Timeout: long timeoutNanos +com.bumptech.glide.integration.okhttp.R$id: R$id() +androidx.preference.R$id: int fragment_container_view_tag +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: org.reactivestreams.Publisher mPublisher +com.google.android.material.card.MaterialCardView: void setCheckedIconTint(android.content.res.ColorStateList) +androidx.preference.R$style: int Base_V21_Theme_AppCompat_Dialog +androidx.fragment.R$id: int accessibility_custom_action_11 +wangdaye.com.geometricweather.R$attr: int radioButtonStyle +okio.BufferedSource: java.lang.String readUtf8() +com.google.android.material.R$id: int action_bar_spinner +okio.DeflaterSink: void write(okio.Buffer,long) +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onAttach(android.os.IBinder) +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarDivider +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +androidx.appcompat.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_20 +james.adaptiveicon.R$attr: int allowStacking +androidx.appcompat.widget.ActionBarContainer +cyanogenmod.weather.WeatherInfo: double mWindDirection +androidx.core.R$id: int accessibility_custom_action_18 +james.adaptiveicon.R$attr: int editTextStyle +com.google.android.material.R$styleable: int AppCompatTheme_windowActionBarOverlay +com.google.android.material.R$styleable: int SearchView_defaultQueryHint +com.google.android.material.R$styleable: int Layout_android_layout_marginTop +android.didikee.donate.R$attr: int buttonTintMode +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String getPackageName() +androidx.hilt.work.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String ShortPhrase +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Title +okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.Request request +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnClickListener(android.view.View$OnClickListener) +androidx.work.R$id: int icon +james.adaptiveicon.R$dimen: int abc_dropdownitem_icon_width +androidx.hilt.work.R$styleable: int FontFamilyFont_ttcIndex +androidx.vectordrawable.animated.R$styleable: int[] FontFamily +com.google.gson.stream.JsonWriter +androidx.activity.R$id: int accessibility_custom_action_18 +androidx.lifecycle.SavedStateHandle: SavedStateHandle(java.util.Map) +androidx.customview.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity: ClockDayVerticalWidgetConfigActivity() +androidx.preference.R$styleable: int[] MenuView +androidx.appcompat.R$drawable: int abc_text_select_handle_right_mtrl_dark +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long lastId +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Caption +okhttp3.internal.cache.DiskLruCache: long getMaxSize() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level HEADERS +okhttp3.HttpUrl: java.lang.String username() +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_0 +cyanogenmod.externalviews.KeyguardExternalView: void onScreenTurnedOn() +okhttp3.Cookie: java.lang.String domain() +retrofit2.ParameterHandler$PartMap: ParameterHandler$PartMap(java.lang.reflect.Method,int,retrofit2.Converter,java.lang.String) +com.google.android.material.tabs.TabLayout: void setTabTextColors(android.content.res.ColorStateList) +com.google.android.material.card.MaterialCardView: int getCheckedIconMargin() +okio.HashingSource: okio.HashingSource hmacSha256(okio.Source,okio.ByteString) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Title +com.google.android.material.bottomappbar.BottomAppBar: boolean getHideOnScroll() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedWidthMinor +okhttp3.internal.platform.ConscryptPlatform: javax.net.ssl.SSLContext getSSLContext() +wangdaye.com.geometricweather.R$styleable: int Preference_android_enabled +io.reactivex.Observable: int bufferSize() +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_switchTextOn +com.google.android.material.R$style: int TextAppearance_AppCompat_Large +wangdaye.com.geometricweather.R$id: int notification_big_icon_5 +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_EXTRA +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao +james.adaptiveicon.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$id: int widget_week_weather +wangdaye.com.geometricweather.R$animator: int mtrl_fab_hide_motion_spec +androidx.core.R$attr: int font +androidx.preference.R$attr: int barLength +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Body_Text +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_night_1 +okhttp3.internal.cache2.Relay: int SOURCE_UPSTREAM +com.bumptech.glide.load.engine.GlideException: java.util.List getRootCauses() +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean isCanceled() +androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontWeight +cyanogenmod.app.CMContextConstants$Features: java.lang.String WEATHER_SERVICES +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button +com.jaredrummler.android.colorpicker.R$attr: int subMenuArrow +androidx.appcompat.resources.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode AUTO +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onComplete() +androidx.hilt.work.R$attr: int fontProviderPackage +android.didikee.donate.R$dimen: int abc_dropdownitem_text_padding_right +android.didikee.donate.R$styleable: int MenuView_android_windowAnimationStyle +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_3 +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.DailyEntity) +android.didikee.donate.R$style: int Platform_AppCompat_Light +androidx.appcompat.R$color: int abc_tint_default +androidx.vectordrawable.R$id: int tag_screen_reader_focusable +androidx.fragment.R$layout: int notification_template_icon_group +androidx.hilt.work.R$id: int text2 +okio.RealBufferedSource: boolean rangeEquals(long,okio.ByteString) +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_title +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getDescription() +wangdaye.com.geometricweather.R$id: int item_about_library_content +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_STATUS_BAR +androidx.viewpager.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$color: int mtrl_btn_ripple_color +wangdaye.com.geometricweather.R$drawable: int ic_temperature_kelvin +com.google.android.material.R$color: int primary_dark_material_light +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: void truncate() +okio.RealBufferedSink$1: void flush() +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_LED_OFF +androidx.preference.R$attr: int layout_keyline +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setQueryParameter(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_android_orderingFromXml +okhttp3.logging.HttpLoggingInterceptor$Logger: void log(java.lang.String) +androidx.preference.R$id: int tag_unhandled_key_event_manager +androidx.recyclerview.widget.RecyclerView: int getMaxFlingVelocity() +okhttp3.logging.LoggingEventListener: void requestBodyEnd(okhttp3.Call,long) +com.google.android.material.R$styleable: int Constraint_android_minHeight +android.didikee.donate.R$styleable: int View_theme +retrofit2.converter.gson.GsonRequestBodyConverter: okhttp3.RequestBody convert(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int textAppearanceOverline +com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Light +androidx.appcompat.R$id: int wrap_content +okhttp3.internal.platform.AndroidPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +androidx.appcompat.app.ToolbarActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver +androidx.appcompat.R$styleable: int[] StateListDrawable +wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$drawable: int ic_sunset +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$styleable: int Constraint_drawPath +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_AES_256_CBC_SHA +james.adaptiveicon.R$id: int blocking +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindLevel(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeColor +wangdaye.com.geometricweather.R$attr: int region_heightLessThan +android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_notify +androidx.recyclerview.R$id: int accessibility_custom_action_7 +okio.Buffer: okio.BufferedSink writeByte(int) +wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingBottom +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintDimensionRatio +androidx.fragment.R$integer +cyanogenmod.weatherservice.ServiceRequestResult$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_NoActionBar +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DegreeDayTemperature +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getBackgroundColor() +wangdaye.com.geometricweather.R$attr: int roundPercent +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindDegree +androidx.constraintlayout.widget.R$styleable: int OnClick_clickAction +wangdaye.com.geometricweather.R$string: int key_subtitle_data +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getZh_TW() +android.didikee.donate.R$styleable: int Toolbar_titleMarginStart +androidx.constraintlayout.widget.R$style: int Platform_V25_AppCompat +cyanogenmod.providers.CMSettings$System: java.lang.String BLUETOOTH_ACCEPT_ALL_FILES +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_title_material +androidx.activity.R$id: int accessibility_custom_action_25 +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabView +androidx.preference.R$styleable: int[] AppCompatTheme +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: FitSystemBarViewPager(android.content.Context) +james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog +com.google.android.material.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.R$attr: int unfold +wangdaye.com.geometricweather.R$string: int abc_menu_delete_shortcut_label +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setPubTime(java.lang.String) +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeStyle +android.didikee.donate.R$attr: int windowActionModeOverlay +cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(android.os.Parcel,cyanogenmod.weather.WeatherInfo$1) +com.google.android.material.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +okhttp3.internal.http2.Http2: byte TYPE_PING +io.reactivex.internal.observers.ForEachWhileObserver: void dispose() +com.google.android.material.R$attr: int region_widthLessThan +com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_close_circle +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_COLOR_AUTO +com.xw.repo.bubbleseekbar.R$string: int abc_shareactionprovider_share_with_application +retrofit2.ParameterHandler$FieldMap: boolean encoded +james.adaptiveicon.R$attr: int ratingBarStyle +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarWidgetTheme +com.google.android.material.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_36dp +cyanogenmod.themes.IThemeService$Stub: cyanogenmod.themes.IThemeService asInterface(android.os.IBinder) +cyanogenmod.externalviews.ExternalView$7 +wangdaye.com.geometricweather.R$drawable: int notif_temp_135 +wangdaye.com.geometricweather.R$styleable: int Constraint_android_scaleX +okhttp3.internal.http2.Http2Reader$ContinuationSource: Http2Reader$ContinuationSource(okio.BufferedSource) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_5 +com.google.android.material.R$styleable: int CardView_cardBackgroundColor +com.google.android.material.R$attr: int counterEnabled +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_adjustable +com.google.android.material.slider.RangeSlider: java.lang.CharSequence getAccessibilityClassName() +cyanogenmod.providers.CMSettings$System$1: boolean validate(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_android_maxWidth +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: ServiceLifecycleDispatcher$DispatchRunnable(androidx.lifecycle.LifecycleRegistry,androidx.lifecycle.Lifecycle$Event) +androidx.lifecycle.ProcessLifecycleOwner: void dispatchStopIfNeeded() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionButtonStyle +com.xw.repo.bubbleseekbar.R$color: int material_deep_teal_200 +james.adaptiveicon.R$styleable: int SwitchCompat_android_thumb +com.google.android.material.R$attr: int itemShapeFillColor +androidx.appcompat.resources.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterTextAppearance +com.xw.repo.bubbleseekbar.R$attr: int searchHintIcon +wangdaye.com.geometricweather.R$attr: int motionTarget +james.adaptiveicon.R$id: int search_voice_btn +com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +androidx.appcompat.widget.SwitchCompat: void setTextOn(java.lang.CharSequence) +com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_default +com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_showOldColor +okhttp3.internal.cache.DiskLruCache$3: void remove() +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_navigationContentDescription +androidx.vectordrawable.animated.R$drawable: int notification_bg_normal_pressed +com.google.android.material.R$color: int mtrl_card_view_foreground +okhttp3.internal.platform.AndroidPlatform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) +wangdaye.com.geometricweather.R$string: int wind_level +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.internal.FlowLayout: int getRowCount() +androidx.vectordrawable.animated.R$id: int icon +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: AtmoAuraQAResult$Measure() +androidx.activity.R$styleable: int FontFamily_fontProviderPackage +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String EXTRA_ENABLED +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.lang.String domain +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_count +cyanogenmod.app.IPartnerInterface$Stub +wangdaye.com.geometricweather.R$integer: int cpv_default_start_angle +com.turingtechnologies.materialscrollbar.R$anim: int abc_grow_fade_in_from_bottom +androidx.fragment.R$id: int title +com.turingtechnologies.materialscrollbar.R$attr: int hintAnimationEnabled +androidx.viewpager.R$id: int right_side +cyanogenmod.hardware.IThermalListenerCallback$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_3 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String originUrl +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory createAsync() +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean get(int) +com.google.android.material.R$attr: int shapeAppearance +okhttp3.internal.http2.Huffman: byte[] decode(byte[]) +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_ttcIndex +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FAIR_NIGHT +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$id: int material_minute_text_input +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setDropDownBackgroundResource(int) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_strokeWidth +cyanogenmod.hardware.CMHardwareManager: java.lang.String readPersistentString(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitation() +okio.Buffer: int hashCode() +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: boolean requestDismissAndStartActivity(android.content.Intent) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber +com.google.android.material.R$layout: int abc_action_mode_bar +androidx.viewpager2.R$attr: int reverseLayout +wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_width +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float relativeHumidity +androidx.vectordrawable.animated.R$dimen: int compat_button_padding_horizontal_material +cyanogenmod.app.CMTelephonyManager: CMTelephonyManager(android.content.Context) +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_FLAG_CONTROL +androidx.constraintlayout.widget.R$color: int abc_background_cache_hint_selector_material_light +androidx.core.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeMinTextSize +com.jaredrummler.android.colorpicker.R$attr: int state_above_anchor +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircleAngle +cyanogenmod.app.suggest.ApplicationSuggestion$1 +wangdaye.com.geometricweather.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lon +com.bumptech.glide.R$layout: int notification_template_part_chronometer +androidx.fragment.R$id: int tag_screen_reader_focusable +okhttp3.internal.http1.Http1Codec$ChunkedSink: okio.Timeout timeout() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorBackgroundFloating +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int requestFusion(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_94 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void addScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +com.google.gson.FieldNamingPolicy$1: java.lang.String translateName(java.lang.reflect.Field) +okhttp3.internal.ws.RealWebSocket: int receivedCloseCode +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +com.google.android.material.R$string: int mtrl_picker_navigate_to_year_description +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemBackground(int) +okhttp3.Headers: java.lang.String value(int) +wangdaye.com.geometricweather.R$id: int transparency_text +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSteps +james.adaptiveicon.R$drawable: int abc_vector_test +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIconTint +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.ReportFragment$ActivityInitializationListener mInitializationListener +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_toId +wangdaye.com.geometricweather.R$attr: int layout_constraintStart_toEndOf +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline4 +cyanogenmod.externalviews.ExternalViewProperties: android.graphics.Rect getHitRect() +wangdaye.com.geometricweather.R$styleable: int[] ButtonBarLayout +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: CNWeatherResult$HourlyForecast() +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TabLayout_Colored +androidx.lifecycle.LiveData$ObserverWrapper: LiveData$ObserverWrapper(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_focusable +james.adaptiveicon.R$layout: int notification_template_icon_group +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_creator +androidx.core.view.ViewCompat$1 +com.google.android.material.R$attr: int customIntegerValue +okhttp3.Cache: int hitCount +com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetEnd +okhttp3.internal.http2.Hpack$Reader: int evictToRecoverBytes(int) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onFailed() +james.adaptiveicon.AdaptiveIconView: void setPath(int) +com.jaredrummler.android.colorpicker.R$color: int abc_btn_colored_text_material +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenVoice(android.content.Context,java.lang.Integer) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetStart +wangdaye.com.geometricweather.R$attr: int layout_insetEdge +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getVisibility() +androidx.lifecycle.ReportFragment: void dispatchCreate(androidx.lifecycle.ReportFragment$ActivityInitializationListener) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String no2Desc +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_searchViewStyle +android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogCenterButtons +com.google.gson.stream.JsonWriter: java.lang.String[] HTML_SAFE_REPLACEMENT_CHARS +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Switch +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: android.os.IBinder asBinder() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeStepGranularity +com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context) +james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat_Dark +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_RadioButton +androidx.constraintlayout.widget.R$styleable: int[] ConstraintLayout_Layout +okhttp3.internal.cache.DiskLruCache: java.lang.Runnable cleanupRunnable +io.reactivex.internal.util.VolatileSizeArrayList: java.util.List subList(int,int) +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_maxImageSize +androidx.preference.R$style: int Widget_AppCompat_DrawerArrowToggle +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.util.concurrent.CountDownLatch readCompleteLatch +com.google.android.material.R$attr: int fabCustomSize +androidx.constraintlayout.widget.R$styleable: int PopupWindow_android_popupBackground +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginEnd +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder writeTimeout(java.time.Duration) +androidx.preference.R$attr: int drawableStartCompat +cyanogenmod.app.Profile$TriggerType: Profile$TriggerType() +androidx.lifecycle.ClassesInfoCache: void verifyAndPutHandler(java.util.Map,androidx.lifecycle.ClassesInfoCache$MethodReference,androidx.lifecycle.Lifecycle$Event,java.lang.Class) +androidx.preference.R$layout: int abc_list_menu_item_layout +androidx.appcompat.R$drawable: int notification_action_background +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindSpeedStart() +retrofit2.BuiltInConverters$BufferingResponseBodyConverter: BuiltInConverters$BufferingResponseBodyConverter() +okhttp3.CacheControl: int maxStaleSeconds +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_size_normal +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setForecastHourly(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean) +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: AccuHourlyResult$Temperature() +james.adaptiveicon.R$styleable: int ActionBar_contentInsetEndWithActions +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode CONNECT_ERROR +com.turingtechnologies.materialscrollbar.R$integer: int mtrl_tab_indicator_anim_duration_ms +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +androidx.appcompat.R$attr: int textAppearanceListItemSmall +james.adaptiveicon.R$attr: int actionOverflowMenuStyle +com.google.android.material.R$styleable: int Badge_badgeTextColor +com.google.gson.stream.JsonReader: void skipToEndOfLine() +androidx.appcompat.resources.R$layout: int custom_dialog +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableTop +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedHeightMajor +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: java.lang.Integer fresh +androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial() +androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BACKGROUND +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDewPoint(java.lang.Integer) +android.support.v4.os.ResultReceiver: ResultReceiver(android.os.Handler) +wangdaye.com.geometricweather.R$drawable: int snackbar_background +okhttp3.internal.Util: okio.ByteString UTF_8_BOM +androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context) +com.xw.repo.bubbleseekbar.R$color +androidx.appcompat.widget.Toolbar: void setCollapseIcon(android.graphics.drawable.Drawable) +androidx.fragment.R$dimen: int compat_control_corner_material +android.didikee.donate.R$styleable: int ColorStateListItem_android_alpha +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_elevation +cyanogenmod.app.CustomTile$Builder: boolean mSensitiveData +androidx.appcompat.R$style: int TextAppearance_AppCompat_Display4 +cyanogenmod.providers.CMSettings$System: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_android_thumb +org.greenrobot.greendao.AbstractDaoMaster: int getSchemaVersion() +wangdaye.com.geometricweather.R$attr: int cpv_previewSize +com.google.android.material.textfield.MaterialAutoCompleteTextView: java.lang.CharSequence getHint() +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: org.reactivestreams.Subscriber downstream +io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicReference missedSubscription +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_27 +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleTintMode +okhttp3.internal.http.HttpDate: long MAX_DATE +androidx.constraintlayout.widget.R$id: int up +com.google.android.material.R$styleable: int Transform_android_rotation +wangdaye.com.geometricweather.R$id: int activity_allergen_toolbar +wangdaye.com.geometricweather.R$color: int colorSearchBarBackground +androidx.appcompat.widget.AbsActionBarView: AbsActionBarView(android.content.Context,android.util.AttributeSet) +androidx.appcompat.resources.R$styleable: int[] GradientColorItem +com.google.android.material.R$attr: int attributeName +okhttp3.OkHttpClient$Builder: okhttp3.EventListener$Factory eventListenerFactory +com.google.android.material.textfield.TextInputLayout: void addOnEndIconChangedListener(com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener) +retrofit2.Retrofit$Builder: java.util.List callAdapterFactories +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconSize(int) +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderQuery +androidx.preference.R$styleable: int ActionBar_customNavigationLayout +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean +androidx.hilt.R$id: int accessibility_action_clickable_span +androidx.customview.R$id: int text2 +com.google.android.material.R$color: int design_default_color_secondary_variant androidx.preference.R$color: int foreground_material_dark -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver -com.xw.repo.bubbleseekbar.R$styleable: int[] GradientColorItem -james.adaptiveicon.R$color: int bright_foreground_inverse_material_dark -com.turingtechnologies.materialscrollbar.R$attr: int chipIconVisible -com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getIndicatorWidth() -com.google.android.material.R$attr: int paddingStart -com.google.android.material.R$dimen: int notification_large_icon_height -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -androidx.preference.R$styleable: int Preference_icon +com.bumptech.glide.R$drawable: int notification_template_icon_bg +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_ripple_color +androidx.appcompat.R$styleable: int TextAppearance_android_textColor +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_DAY_VALIDATOR +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_previewSize +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.appcompat.R$attr: int ratingBarStyleIndicator +androidx.swiperefreshlayout.R$dimen: int compat_button_padding_vertical_material +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: void run() +wangdaye.com.geometricweather.R$string: int wind_chill_temperature +androidx.appcompat.resources.R$integer +androidx.customview.R$dimen: int notification_action_text_size +androidx.appcompat.resources.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationText(android.content.Context,float) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void drainFused() +wangdaye.com.geometricweather.R$id: int circular_sky +androidx.preference.R$styleable: int PreferenceTheme_preferenceTheme +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_buttonPanelSideLayout +com.google.android.material.bottomnavigation.BottomNavigationMenuView +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +retrofit2.KotlinExtensions$suspendAndThrow$1: int label +cyanogenmod.profiles.ConnectionSettings: void writeToParcel(android.os.Parcel,int) +android.didikee.donate.R$bool: int abc_config_actionMenuItemAllCaps +com.google.android.material.R$attr: int ratingBarStyleIndicator +com.turingtechnologies.materialscrollbar.R$id: int none +android.didikee.donate.R$styleable: int AppCompatTheme_windowMinWidthMinor +androidx.appcompat.R$style: int Base_V7_Theme_AppCompat +io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function,boolean,int) +com.google.android.material.R$drawable: int abc_ic_star_half_black_16dp +wangdaye.com.geometricweather.R$id: int outline +okhttp3.internal.cache.DiskLruCache: void close() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CardView +cyanogenmod.themes.ThemeManager: long getLastThemeChangeTime() +androidx.preference.R$styleable: int AppCompatTheme_actionModeCloseDrawable +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node getHead() +androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet,int) +okio.Okio$1: void close() +com.google.android.material.checkbox.MaterialCheckBox: void setUseMaterialThemeColors(boolean) +androidx.core.R$styleable: int FontFamily_fontProviderAuthority +androidx.preference.R$attr: int autoSizeMaxTextSize +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long index +androidx.preference.R$string: int abc_action_menu_overflow_description +com.turingtechnologies.materialscrollbar.R$id: int search_bar +wangdaye.com.geometricweather.R$id: int content +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Selected +androidx.preference.R$styleable: int GradientColor_android_centerColor +androidx.constraintlayout.widget.R$color: int primary_dark_material_light +com.google.android.material.R$attr: int iconStartPadding +android.didikee.donate.R$drawable: int abc_seekbar_tick_mark_material +androidx.preference.R$layout: int abc_cascading_menu_item_layout +androidx.appcompat.R$style: int Platform_V21_AppCompat +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void drain() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_maxWidth +androidx.appcompat.widget.Toolbar: void setLogo(int) +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: boolean IsDaylight +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval[] values() +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(io.reactivex.Scheduler) +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: BlockingObservableIterable$BlockingObservableIterator(int) +com.google.gson.stream.JsonWriter: void replaceTop(int) +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setEnabled(boolean) +wangdaye.com.geometricweather.R$id: int clip_horizontal +androidx.lifecycle.Transformations$2$1: androidx.lifecycle.Transformations$2 this$0 +com.google.android.material.R$dimen: int mtrl_progress_indicator_size +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +androidx.appcompat.widget.LinearLayoutCompat: void setDividerPadding(int) +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: ThemesContract$ThemesColumns$InstallState() +android.didikee.donate.R$styleable: int AppCompatTheme_controlBackground +androidx.constraintlayout.widget.R$attr: int alertDialogButtonGroupStyle +wangdaye.com.geometricweather.R$id: int activity_widget_config_widgetContainer +james.adaptiveicon.R$styleable: int DrawerArrowToggle_arrowHeadLength +cyanogenmod.weather.RequestInfo$1: java.lang.Object[] newArray(int) +com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextInputLayout +androidx.preference.R$style: int Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetEnd +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_disabled_holo_dark +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void drain() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource LocalSource +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_pathMotionArc +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerComplete() +com.turingtechnologies.materialscrollbar.R$id: int normal +androidx.vectordrawable.R$attr: int fontProviderFetchStrategy +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupMenu +com.google.android.material.R$styleable: int Constraint_android_elevation +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Caption +androidx.activity.R$styleable: int FontFamilyFont_fontStyle +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener access$900(cyanogenmod.externalviews.KeyguardExternalView) +androidx.appcompat.R$color: int secondary_text_disabled_material_dark +com.bumptech.glide.load.engine.GlideException: java.lang.Class dataClass +androidx.legacy.coreutils.R$styleable: int ColorStateListItem_alpha +com.google.android.material.R$attr: int fabCradleMargin +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean requireAdaptiveBacklightForSunlightEnhancement() +androidx.customview.view.AbsSavedState$1 +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_range_end_hint +androidx.viewpager2.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$layout: int item_weather_daily_margin +retrofit2.OkHttpCall$1 +wangdaye.com.geometricweather.R$attr: int flow_verticalGap +androidx.appcompat.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +androidx.appcompat.widget.SwitchCompat: void setChecked(boolean) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language PORTUGUESE cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.view.View onCreateView() -retrofit2.adapter.rxjava2.ResultObservable: io.reactivex.Observable upstream -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: int UnitType -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onError(java.lang.Throwable) -androidx.viewpager2.R$dimen: int notification_subtext_size -androidx.preference.R$id: int action_mode_close_button -org.greenrobot.greendao.AbstractDaoSession: void refresh(java.lang.Object) -okhttp3.internal.cache.DiskLruCache: java.io.File journalFileTmp -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_pivotX -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_elevation -cyanogenmod.externalviews.KeyguardExternalView: void onKeyguardDismissed() -com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException: RecyclableBufferedInputStream$InvalidMarkException(java.lang.String) -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_SECURE_SETTINGS -com.github.rahatarmanahmed.cpv.CircularProgressView$7 -retrofit2.ParameterHandler -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer rainHazard3h -android.didikee.donate.R$style: int Widget_AppCompat_ListMenuView -androidx.appcompat.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -okhttp3.HttpUrl: int pathSize() -okhttp3.HttpUrl: java.lang.String FRAGMENT_ENCODE_SET -com.github.rahatarmanahmed.cpv.R$attr: int cpv_color -com.jaredrummler.android.colorpicker.R$color: int secondary_text_disabled_material_dark -androidx.appcompat.widget.SwitchCompat: void setSwitchPadding(int) -com.google.android.material.R$styleable: int[] Transform -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType RAW -okhttp3.internal.tls.DistinguishedNameParser: int length -cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo access$202(cyanogenmod.weatherservice.ServiceRequestResult,cyanogenmod.weather.WeatherInfo) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_max -com.turingtechnologies.materialscrollbar.R$attr: int iconGravity -android.didikee.donate.R$attr: int collapseContentDescription -androidx.fragment.app.BackStackRecord: void setOnStartPostponedListener(androidx.fragment.app.Fragment$OnStartEnterTransitionListener) -okhttp3.CacheControl: int maxAgeSeconds -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -com.google.android.material.chip.ChipGroup -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_DAY -cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_MODES -retrofit2.http.Path -androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.bottomappbar.BottomAppBar: void setHideOnScroll(boolean) -com.google.android.material.R$dimen: int mtrl_calendar_month_horizontal_padding +com.google.android.material.button.MaterialButton: void addOnCheckedChangeListener(com.google.android.material.button.MaterialButton$OnCheckedChangeListener) +android.didikee.donate.R$dimen: int abc_dropdownitem_icon_width +android.didikee.donate.R$drawable: int abc_textfield_activated_mtrl_alpha +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_subtitle_top_margin_material +wangdaye.com.geometricweather.R$drawable: int flag_it +retrofit2.OkHttpCall: retrofit2.RequestFactory requestFactory +androidx.activity.R$id: int info +cyanogenmod.app.Profile: java.util.Map streams +com.xw.repo.bubbleseekbar.R$attr: int trackTintMode +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String country +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +androidx.appcompat.R$dimen: int abc_action_bar_default_padding_start_material +com.xw.repo.bubbleseekbar.R$dimen: int abc_button_padding_horizontal_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean getTemperature() +wangdaye.com.geometricweather.R$drawable: int widget_card_light_80 +wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotation +cyanogenmod.profiles.LockSettings: void writeToParcel(android.os.Parcel,int) +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onNext(java.lang.Object) +com.xw.repo.bubbleseekbar.R$attr: int bsb_rtl +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: long serialVersionUID +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetBottom +okhttp3.CacheControl: int minFreshSeconds +wangdaye.com.geometricweather.R$attr: int layoutManager +com.google.android.material.R$styleable: int MotionTelltales_telltales_velocityMode +androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitleTextAppearance +okhttp3.MediaType: MediaType(java.lang.String,java.lang.String,java.lang.String,java.lang.String) +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.hilt.lifecycle.R$id: int dialog_button +androidx.hilt.R$styleable: int FontFamily_fontProviderQuery +androidx.lifecycle.extensions.R$id: int tag_unhandled_key_event_manager +com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyleIndicator +com.google.android.material.R$styleable: int[] ShapeAppearance +okhttp3.internal.cache.DiskLruCache: void trimToSize() +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setDropDownBackgroundResource(int) +okio.AsyncTimeout: okio.Sink sink(okio.Sink) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarPopupTheme +androidx.core.R$styleable: int GradientColorItem_android_offset +cyanogenmod.externalviews.IKeyguardExternalViewProvider +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setTempMin(java.lang.String) +androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.location.services.LocationService: LocationService() +com.google.android.material.R$styleable: int ConstraintSet_flow_firstHorizontalStyle +com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$styleable: int MenuItem_android_orderInCategory +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_content_inset_material +cyanogenmod.externalviews.ExternalView: java.util.LinkedList mQueue +wangdaye.com.geometricweather.R$string: int aqi_5 +wangdaye.com.geometricweather.R$drawable: int notification_template_icon_bg +okhttp3.internal.platform.ConscryptPlatform +com.google.android.material.R$drawable: int abc_ic_go_search_api_material +com.xw.repo.bubbleseekbar.R$attr: int buttonGravity +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA +okhttp3.internal.publicsuffix.PublicSuffixDatabase: okhttp3.internal.publicsuffix.PublicSuffixDatabase instance +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button +okhttp3.HttpUrl: java.util.List percentDecode(java.util.List,boolean) +androidx.appcompat.widget.Toolbar: void setCollapseIcon(int) +okhttp3.Dispatcher: int maxRequests +com.google.android.material.floatingactionbutton.FloatingActionButton: void setElevation(float) +androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_weight +com.xw.repo.bubbleseekbar.R$id: int right_side +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getLabelVisibilityMode() +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dialog +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderPackage +com.xw.repo.bubbleseekbar.R$attr: int actionOverflowMenuStyle +wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_material +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText +android.didikee.donate.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_percent +android.didikee.donate.R$color: int ripple_material_dark +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotationX +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroupForPackage +wangdaye.com.geometricweather.R$drawable: int notif_temp_40 +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max +james.adaptiveicon.R$attr: int actionBarTheme +james.adaptiveicon.R$attr: int singleChoiceItemLayout +james.adaptiveicon.R$anim: int abc_slide_out_top +cyanogenmod.hardware.DisplayMode$1: DisplayMode$1() +cyanogenmod.providers.CMSettings$3: CMSettings$3() +com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_base +com.jaredrummler.android.colorpicker.ColorPanelView: void setShape(int) +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +androidx.preference.R$id: int action_bar_root +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Color +androidx.appcompat.R$styleable: int[] ActionMenuItemView +androidx.preference.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +com.google.android.material.appbar.AppBarLayout: void setExpanded(boolean) +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +androidx.preference.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.R$string: int key_hide_lunar +wangdaye.com.geometricweather.R$attr: int itemTextColor +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DailyForecast +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_SNOW_AND_SLEET +com.turingtechnologies.materialscrollbar.R$id: int tag_transition_group +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowColor +wangdaye.com.geometricweather.R$drawable: int weather_rain_1 +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: java.lang.String desc +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String o3 +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: int status +wangdaye.com.geometricweather.R$style: int Preference_Information +com.xw.repo.bubbleseekbar.R$attr: int listItemLayout +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: long serialVersionUID +androidx.appcompat.R$attr: int commitIcon +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setPivotX(float) +com.xw.repo.bubbleseekbar.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_5 +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight +wangdaye.com.geometricweather.R$attr: int animationDuration +com.google.android.material.R$styleable: int Constraint_visibilityMode +com.google.android.material.R$attr: int behavior_saveFlags +com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector valueOf(java.lang.String) +wangdaye.com.geometricweather.R$layout: int container_snackbar_card +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +wangdaye.com.geometricweather.common.basic.models.weather.History: java.util.Date getDate() +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card +wangdaye.com.geometricweather.R$id: int parentRelative +wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_bottom_start +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickInactiveTintList() +com.google.android.material.R$attr: R$attr() +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_24 +com.google.android.material.slider.RangeSlider: float getThumbElevation() +androidx.dynamicanimation.R$dimen: int compat_button_inset_vertical_material +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +retrofit2.KotlinExtensions$await$2$2 +com.turingtechnologies.materialscrollbar.R$dimen: int notification_right_icon_size +androidx.appcompat.resources.R$dimen: R$dimen() +androidx.appcompat.widget.SearchView: androidx.cursoradapter.widget.CursorAdapter getSuggestionsAdapter() +com.google.android.material.R$styleable: int AppCompatTheme_colorControlActivated +com.turingtechnologies.materialscrollbar.R$id: int submenuarrow +com.google.android.material.R$styleable: int MenuItem_android_titleCondensed +james.adaptiveicon.R$dimen: int abc_control_padding_material +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarButtonStyle +androidx.viewpager.R$styleable: int FontFamily_fontProviderFetchTimeout +android.didikee.donate.R$id: int src_atop +wangdaye.com.geometricweather.R$id: int widget_day_week_week_4 +wangdaye.com.geometricweather.R$dimen: int design_textinput_caption_translate_y +wangdaye.com.geometricweather.R$id: int expanded_menu +androidx.fragment.R$dimen: R$dimen() +com.google.android.material.R$drawable: int design_ic_visibility_off +com.jaredrummler.android.colorpicker.R$layout: int preference_dropdown +androidx.constraintlayout.widget.R$attr: int textAppearancePopupMenuHeader +androidx.appcompat.R$string: int abc_menu_enter_shortcut_label +wangdaye.com.geometricweather.R$drawable: int ic_close +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionViewClass +com.google.android.material.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$color: int cpv_default_color +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startX +cyanogenmod.providers.ThemesContract +wangdaye.com.geometricweather.R$attr: int contentPaddingBottom +androidx.constraintlayout.widget.R$id: int title_template +com.jaredrummler.android.colorpicker.R$attr: int singleChoiceItemLayout +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit[] values() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.Function leftEnd +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$styleable: int TextAppearance_fontFamily +android.didikee.donate.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2 +androidx.hilt.lifecycle.R$id: int text2 +com.google.android.material.R$color: int design_default_color_on_secondary +androidx.dynamicanimation.R$style: int Widget_Compat_NotificationActionText +androidx.constraintlayout.widget.R$color: int bright_foreground_material_light +wangdaye.com.geometricweather.R$color: int mtrl_textinput_focused_box_stroke_color +com.turingtechnologies.materialscrollbar.R$attr: int titleTextAppearance +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemBitmap(android.graphics.Bitmap) +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteSelector routeSelector +james.adaptiveicon.R$id: int textSpacerNoButtons +okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,java.lang.String) +retrofit2.HttpServiceMethod$CallAdapted: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) +cyanogenmod.providers.CMSettings$Global: boolean putInt(android.content.ContentResolver,java.lang.String,int) +wangdaye.com.geometricweather.R$style: int Base_V26_Theme_AppCompat +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_subtitle_top_margin_material +androidx.transition.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$string: int key_widget_week +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetLeft +io.reactivex.internal.observers.ForEachWhileObserver +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SeekBar_Discrete +okhttp3.internal.http2.Http2Connection$4 +cyanogenmod.alarmclock.ClockContract: java.lang.String AUTHORITY +androidx.hilt.work.R$attr: int alpha +com.xw.repo.bubbleseekbar.R$id: int italic +android.didikee.donate.R$drawable: int abc_list_longpressed_holo +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService: MaterialLiveWallpaperService() +com.google.android.material.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: java.lang.Object v1 +cyanogenmod.library.R$attr: int type +cyanogenmod.app.CustomTile$1: cyanogenmod.app.CustomTile createFromParcel(android.os.Parcel) +james.adaptiveicon.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.google.android.material.R$styleable: int AppCompatTheme_android_windowIsFloating +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +retrofit2.OptionalConverterFactory$OptionalConverter: retrofit2.Converter delegate +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderLayout +androidx.appcompat.R$style: int AlertDialog_AppCompat_Light +androidx.constraintlayout.widget.R$attr: int voiceIcon +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState FAILED +android.didikee.donate.R$styleable: int SearchView_android_inputType +okhttp3.internal.cache.DiskLruCache: java.io.File journalFileBackup +wangdaye.com.geometricweather.R$drawable: int notif_temp_23 +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCountry +wangdaye.com.geometricweather.R$styleable: int Chip_textStartPadding +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView +androidx.appcompat.resources.R$id: int time +com.jaredrummler.android.colorpicker.R$drawable: int cpv_btn_background +wangdaye.com.geometricweather.R$dimen: int compat_button_inset_vertical_material +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +okhttp3.OkHttpClient$1 +androidx.constraintlayout.widget.R$layout: int abc_expanded_menu_layout +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: long time +wangdaye.com.geometricweather.R$drawable: int notif_temp_16 +androidx.appcompat.widget.Toolbar: void setNavigationIcon(android.graphics.drawable.Drawable) +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontWeight +com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_singlechoice_material +com.google.android.material.R$plurals: int mtrl_badge_content_description +androidx.appcompat.R$drawable: int abc_list_selector_holo_dark +com.google.android.material.R$styleable: int TabLayout_tabRippleColor +androidx.hilt.work.R$string: R$string() +okio.AsyncTimeout: long timeoutAt +com.turingtechnologies.materialscrollbar.R$styleable: int ActivityChooserView_initialActivityCount +androidx.constraintlayout.widget.R$id: int invisible +wangdaye.com.geometricweather.R$id: int dropdown_menu +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_constraintSet +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked +androidx.constraintlayout.widget.R$layout: int select_dialog_item_material +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.activity.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModePasteDrawable +com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_ripple_color +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_dropDownWidth +wangdaye.com.geometricweather.R$string: int aqi_6 +wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeTitle +androidx.recyclerview.R$styleable: R$styleable() +com.turingtechnologies.materialscrollbar.R$attr: int backgroundTintMode +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderCerts +androidx.cardview.R$styleable: int CardView_contentPadding +com.turingtechnologies.materialscrollbar.R$attr: int selectableItemBackgroundBorderless +androidx.appcompat.resources.R$styleable: int GradientColor_android_endY +james.adaptiveicon.R$dimen: int highlight_alpha_material_colored +retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_height +androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableItem +com.google.android.material.R$styleable: int MotionScene_layoutDuringTransition +wangdaye.com.geometricweather.R$color: int colorTextAlert +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_LIVE_LOCK_SCREEN_COMPONENT +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_separator +com.jaredrummler.android.colorpicker.R$color: int primary_text_default_material_light +com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_text_padding_left +cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.IAppSuggestManager sImpl +james.adaptiveicon.R$attr: int contentInsetEndWithActions +wangdaye.com.geometricweather.R$id: int container_main_header_tempTxt +androidx.hilt.work.R$dimen: int compat_button_padding_vertical_material +okhttp3.internal.cache.DiskLruCache$Entry: void writeLengths(okio.BufferedSink) +com.google.android.material.R$attr: int logoDescription +androidx.constraintlayout.widget.R$id: int ignore +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$attr: int itemShapeAppearance +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endX +james.adaptiveicon.R$styleable: int AppCompatTheme_colorPrimaryDark +com.google.android.material.circularreveal.CircularRevealGridLayout: int getCircularRevealScrimColor() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_padding_vertical_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setEn_US(java.lang.String) +androidx.customview.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$id: int material_timepicker_edit_text +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: void slideLockscreenIn() +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: boolean hasError() +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config +wangdaye.com.geometricweather.R$id: int textStart +com.google.android.material.navigation.NavigationView: void setItemIconPadding(int) +androidx.appcompat.R$styleable: int AppCompatTextView_drawableEndCompat +wangdaye.com.geometricweather.db.entities.LocationEntity: void setCurrentPosition(boolean) +androidx.constraintlayout.widget.R$styleable: int KeyPosition_framePosition +james.adaptiveicon.R$attr: int dividerHorizontal +wangdaye.com.geometricweather.R$drawable: int shortcuts_refresh +androidx.lifecycle.reactivestreams.R +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_to_on_mtrl_000 +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeBackground +com.bumptech.glide.R$color: int notification_action_color_filter +com.google.android.material.card.MaterialCardView: void setUseCompatPadding(boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean yesterday +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_GCM_SHA256 +androidx.preference.R$styleable: int SearchView_queryBackground +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: KeyguardExternalViewProviderService$Provider$ProviderImpl$5(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) +org.greenrobot.greendao.AbstractDao: android.database.CursorWindow moveToNextUnlocked(android.database.Cursor) +androidx.customview.R$id: int icon +okio.BufferedSource: void skip(long) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_default +com.google.android.material.R$dimen: int mtrl_slider_label_padding +androidx.preference.R$attr: int drawableBottomCompat +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconVisible +okhttp3.internal.connection.StreamAllocation: okhttp3.Route route() +io.reactivex.exceptions.CompositeException: long serialVersionUID +com.google.android.material.R$styleable: int ConstraintSet_android_rotationX +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage SOURCE +okio.RealBufferedSource: boolean rangeEquals(long,okio.ByteString,int,int) +androidx.appcompat.widget.Toolbar: int getTitleMarginTop() +com.google.android.material.R$attr: int closeIconStartPadding +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_height_minor +com.google.android.material.R$styleable: int AppCompatTheme_alertDialogTheme +cyanogenmod.providers.ThemesContract: android.net.Uri AUTHORITY_URI +com.google.android.material.R$styleable: int ConstraintSet_flow_verticalBias +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_THUMBNAIL +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPrePaused(android.app.Activity) +androidx.preference.R$drawable: int abc_ic_menu_overflow_material +com.google.android.material.R$drawable: int btn_radio_off_to_on_mtrl_animation +wangdaye.com.geometricweather.R$dimen: int material_text_view_test_line_height_override +com.turingtechnologies.materialscrollbar.R$attr: int actionMenuTextColor +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableBottom +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,int) +androidx.work.impl.workers.DiagnosticsWorker +okhttp3.internal.platform.Jdk9Platform: java.lang.reflect.Method setProtocolMethod +android.support.v4.app.RemoteActionCompatParcelizer: androidx.core.app.RemoteActionCompat read(androidx.versionedparcelable.VersionedParcel) +com.google.android.material.R$style: int Widget_MaterialComponents_NavigationView +com.google.android.material.R$styleable: int NavigationView_android_background +wangdaye.com.geometricweather.R$style: int Preference_Category_Material +com.google.android.material.R$styleable: int[] CardView +androidx.hilt.R$attr: int fontProviderPackage +android.didikee.donate.R$anim: int abc_slide_in_bottom +james.adaptiveicon.R$color: int abc_background_cache_hint_selector_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean getCurrent() +android.didikee.donate.R$color: int abc_search_url_text_normal +androidx.hilt.work.R$id: int accessibility_custom_action_21 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getAqi() +wangdaye.com.geometricweather.R$attr: int fabCradleMargin +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf +wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_id +wangdaye.com.geometricweather.R$styleable: int[] PreferenceFragmentCompat +android.didikee.donate.R$dimen: int highlight_alpha_material_colored +wangdaye.com.geometricweather.R$color: int mtrl_error +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColorItem_android_color +androidx.constraintlayout.motion.widget.MotionLayout: float getTargetPosition() +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: IThemeChangeListener$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_RadioButton +okhttp3.internal.cache.DiskLruCache$2: DiskLruCache$2(okhttp3.internal.cache.DiskLruCache,okio.Sink) +com.google.android.material.R$color: int mtrl_error +cyanogenmod.providers.DataUsageContract: java.lang.String DATAUSAGE_AUTHORITY +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_title +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +com.xw.repo.bubbleseekbar.R$dimen: int compat_notification_large_icon_max_height +com.turingtechnologies.materialscrollbar.R$color: int material_grey_850 +wangdaye.com.geometricweather.R$string: int week +cyanogenmod.profiles.BrightnessSettings: BrightnessSettings(int,boolean) +com.google.android.material.R$color: int mtrl_btn_bg_color_selector +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_SmallComponent +okhttp3.OkHttpClient$Builder: void setInternalCache(okhttp3.internal.cache.InternalCache) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_6 +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(boolean) +org.greenrobot.greendao.AbstractDao: boolean detach(java.lang.Object) +com.google.android.material.slider.BaseSlider: void setThumbStrokeColor(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_showDividers +wangdaye.com.geometricweather.R$styleable: int[] ClockFaceView +io.reactivex.Observable: io.reactivex.Observable buffer(java.util.concurrent.Callable) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Surface +com.github.rahatarmanahmed.cpv.R$bool: int cpv_default_anim_autostart +wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_Material +com.github.rahatarmanahmed.cpv.CircularProgressView: boolean autostartAnimation +com.google.android.material.R$styleable: int Tooltip_android_text +androidx.loader.R$id: int tag_transition_group +androidx.viewpager.R$layout: int notification_template_part_chronometer +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_begin +androidx.fragment.app.FragmentManagerState: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY +android.didikee.donate.R$style: int TextAppearance_AppCompat_SearchResult_Title +com.jaredrummler.android.colorpicker.R$attr: int actionOverflowMenuStyle +wangdaye.com.geometricweather.R$attr: int materialCircleRadius +androidx.recyclerview.R$attr: int fastScrollVerticalTrackDrawable +androidx.preference.R$id: int action_mode_close_button +android.didikee.donate.R$styleable: int SwitchCompat_android_thumb +com.google.android.material.slider.RangeSlider: java.util.List getValues() +androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemTextAppearance +com.google.android.material.R$attr: int counterTextAppearance +androidx.preference.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: AccuDailyResult$DailyForecasts$Night$TotalLiquid() +androidx.constraintlayout.widget.R$attr: int menu +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickTintList() +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.RequestBody delegate +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX +retrofit2.Utils$GenericArrayTypeImpl +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_1 +androidx.preference.R$id: int visible_removing_fragment_view_tag +okhttp3.internal.ws.RealWebSocket$CancelRunnable +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void subscribe() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.appcompat.R$attr: int font +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_EditText +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder writeTimeout(long,java.util.concurrent.TimeUnit) +okio.RealBufferedSource: void require(long) +okhttp3.internal.http2.Hpack$Writer: okio.Buffer out +okhttp3.HttpUrl$Builder: java.lang.String canonicalizeHost(java.lang.String,int,int) +retrofit2.Utils$GenericArrayTypeImpl: Utils$GenericArrayTypeImpl(java.lang.reflect.Type) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: ObservableMergeWithSingle$MergeWithObserver(io.reactivex.Observer) +wangdaye.com.geometricweather.R$attr: int cpv_borderColor +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain3h +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: io.reactivex.FlowableEmitter serialize() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_toLeftOf +androidx.work.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: int UnitType +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startY +androidx.preference.R$styleable: int AppCompatTextView_autoSizeTextType +com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.bottomappbar.BottomAppBar: com.google.android.material.bottomappbar.BottomAppBarTopEdgeTreatment getTopEdgeTreatment() +androidx.viewpager2.R$id: int text2 +androidx.appcompat.R$styleable: int ActionBar_homeLayout +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_daySelectedStyle +com.google.android.material.R$styleable: int[] LinearLayoutCompat +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_checkable +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +androidx.viewpager2.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_5 +okhttp3.Cache: int hitCount() +android.didikee.donate.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +okhttp3.internal.http2.Hpack$Reader: int readByte() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_medium_material +androidx.appcompat.R$attr: int gapBetweenBars +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveOffset +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SWAP_VOLUME_KEYS_ON_ROTATION_VALIDATOR +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade +cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String getName() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.UV getUV() +retrofit2.Utils: java.lang.String typeToString(java.lang.reflect.Type) +android.didikee.donate.R$styleable: int ActionBar_divider +com.jaredrummler.android.colorpicker.R$dimen: int hint_alpha_material_light +androidx.preference.R$attr: int navigationMode +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_updateDefaultLiveLockScreen +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +androidx.appcompat.R$anim: int abc_grow_fade_in_from_bottom +androidx.constraintlayout.widget.R$id: int jumpToStart +androidx.appcompat.R$bool: R$bool() +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: int hashCode() +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +wangdaye.com.geometricweather.R$styleable: int ActionBar_homeAsUpIndicator +cyanogenmod.profiles.AirplaneModeSettings$BooleanState: int STATE_DISALED +androidx.preference.R$attr: int autoSizeStepGranularity +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder parse(okhttp3.HttpUrl,java.lang.String) +com.google.android.material.R$styleable: int KeyCycle_motionTarget +com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_EditTextPreference +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_icon_padding +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig weatherEntityDaoConfig +cyanogenmod.app.ProfileManager: int PROFILES_STATE_ENABLED +androidx.constraintlayout.widget.R$attr: int numericModifiers +com.bumptech.glide.R$styleable +com.google.android.material.R$id: int activity_chooser_view_content +wangdaye.com.geometricweather.R$attr: int materialAlertDialogBodyTextStyle +wangdaye.com.geometricweather.R$attr: int preferenceCategoryStyle +com.turingtechnologies.materialscrollbar.R$attr: int closeIconVisible +okhttp3.internal.platform.Android10Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +okhttp3.Cache$Entry: okhttp3.Headers varyHeaders +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean done +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_DarkActionBar +wangdaye.com.geometricweather.R$string: int restart +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex yesterday +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerError(java.lang.Throwable) +okio.BufferedSink: okio.BufferedSink emitCompleteSegments() +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_measureWithLargestChild +androidx.preference.R$style: int TextAppearance_AppCompat_Title_Inverse +james.adaptiveicon.R$styleable: int ActionMode_background +com.google.android.material.floatingactionbutton.FloatingActionButton: int getCustomSize() +wangdaye.com.geometricweather.R$styleable: int Chip_chipCornerRadius +okhttp3.internal.connection.RealConnection: boolean isMultiplexed() +androidx.core.R$layout: int custom_dialog +wangdaye.com.geometricweather.R$attr: int bsb_thumb_radius +cyanogenmod.weather.CMWeatherManager$1$1: void run() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onComplete() +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getOpPkg() +com.google.android.material.R$id: int test_checkbox_android_button_tint +com.google.android.material.R$attr: int colorError +com.jaredrummler.android.colorpicker.R$attr: int listChoiceBackgroundIndicator +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_118 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SHOW_ALARM_ICON_VALIDATOR +wangdaye.com.geometricweather.R$styleable: int Slider_tickColor +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onComplete() +com.google.android.material.R$color: int design_dark_default_color_on_error +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode SUPPRESS +wangdaye.com.geometricweather.R$dimen: int design_navigation_icon_size +androidx.hilt.R$id: int accessibility_custom_action_28 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: int UnitType +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String quality +retrofit2.http.GET: java.lang.String value() +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String admin2 +com.google.android.material.R$dimen: int abc_text_size_headline_material +wangdaye.com.geometricweather.R$drawable: int mtrl_tabs_default_indicator +androidx.lifecycle.ClassesInfoCache$CallbackInfo +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +retrofit2.Platform$Android: java.lang.Object invokeDefaultMethod(java.lang.reflect.Method,java.lang.Class,java.lang.Object,java.lang.Object[]) +androidx.appcompat.R$attr: int showTitle +com.jaredrummler.android.colorpicker.R$attr: int autoSizePresetSizes +wangdaye.com.geometricweather.R$layout: int abc_screen_simple +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontVariationSettings +okio.GzipSink: okio.DeflaterSink deflaterSink +io.reactivex.Observable: io.reactivex.Observable onErrorResumeNext(io.reactivex.functions.Function) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver,java.lang.Throwable) +android.didikee.donate.R$styleable: int MenuItem_actionProviderClass +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: CaiYunMainlyResult$CurrentBean$TemperatureBean() +androidx.constraintlayout.widget.R$color: int secondary_text_default_material_dark +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: KeyguardExternalViewProviderService$Provider$ProviderImpl(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider,cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean isDisposed() +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onError(java.lang.Throwable) +okhttp3.RequestBody: long contentLength() +com.google.android.material.R$dimen: int mtrl_slider_track_height +com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabRippleColor() +com.turingtechnologies.materialscrollbar.R$attr: int homeAsUpIndicator +com.google.android.material.R$anim: int abc_tooltip_exit +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +com.github.rahatarmanahmed.cpv.CircularProgressView: float startAngle +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dark +android.didikee.donate.R$drawable: int abc_list_selector_background_transition_holo_light +cyanogenmod.app.BaseLiveLockManagerService$1: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +androidx.activity.R$id: int accessibility_custom_action_11 +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getVibratorIntensity() +okio.ByteString: int lastIndexOf(okio.ByteString,int) +com.google.android.material.R$style: int Base_Widget_AppCompat_PopupMenu +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: boolean isDisposed() com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -androidx.preference.R$attr: int layout -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon -okhttp3.internal.http2.Http2Writer: void windowUpdate(int,long) -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgress(float) -wangdaye.com.geometricweather.R$id: int fade -com.google.android.material.R$id: int accessibility_custom_action_17 -cyanogenmod.themes.IThemeService: void unregisterThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) -com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException: DefaultImageHeaderParser$Reader$EndOfFileException() -wangdaye.com.geometricweather.R$string: int abc_menu_delete_shortcut_label -wangdaye.com.geometricweather.R$animator: int weather_clear_night_1 -wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity: TextWidgetConfigActivity() -james.adaptiveicon.R$attr: int contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemRippleColor -james.adaptiveicon.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -androidx.appcompat.R$styleable: int Toolbar_title -androidx.appcompat.R$attr: int listChoiceBackgroundIndicator -wangdaye.com.geometricweather.R$id: int notification_base -com.jaredrummler.android.colorpicker.R$drawable: int tooltip_frame_dark -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTemperature -com.google.android.material.R$attr: int measureWithLargestChild -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindSpeedEnd() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWeatherText -wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendDailyProvider -androidx.appcompat.R$styleable: int AppCompatTextView_drawableTopCompat -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_elevation -wangdaye.com.geometricweather.R$style: int CardView -androidx.preference.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -androidx.appcompat.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -androidx.legacy.coreutils.R$drawable: int notification_bg_low_pressed -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Surface -android.didikee.donate.R$attr: int panelBackground -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayStyle -androidx.constraintlayout.widget.R$id: int add -androidx.preference.R$attr: int textColorSearchUrl -androidx.appcompat.R$styleable: int MenuItem_iconTint -wangdaye.com.geometricweather.R$array: int distance_unit_voices -retrofit2.ParameterHandler$Header -io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite COMPLETE -james.adaptiveicon.R$dimen: int abc_action_bar_default_padding_start_material -androidx.vectordrawable.animated.R$id: int line3 -androidx.lifecycle.LiveData$LifecycleBoundObserver: boolean shouldBeActive() -androidx.appcompat.R$id: int edit_query -com.google.android.material.R$color: int error_color_material_light -wangdaye.com.geometricweather.R$id: int dialog_donate_wechat -com.google.android.material.chip.Chip: void setCloseIconPressed(boolean) -wangdaye.com.geometricweather.R$attr: int bsb_min -androidx.preference.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -androidx.drawerlayout.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_padding -cyanogenmod.content.Intent: java.lang.String ACTION_INITIALIZE_CM_HARDWARE -cyanogenmod.alarmclock.ClockContract: ClockContract() -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display1 -androidx.constraintlayout.widget.R$id: int baseline -androidx.constraintlayout.widget.R$attr: int subtitleTextAppearance -androidx.appcompat.widget.AppCompatTextView: android.content.res.ColorStateList getSupportBackgroundTintList() -androidx.appcompat.widget.SearchView: int getPreferredHeight() -wangdaye.com.geometricweather.R$font: int product_sans_italic -wangdaye.com.geometricweather.R$attr: int font -androidx.transition.R$dimen: int notification_right_icon_size -androidx.appcompat.app.ActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -wangdaye.com.geometricweather.R$layout -com.google.android.material.R$attr: int itemShapeInsetTop -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_primary_mtrl_alpha -androidx.preference.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -com.xw.repo.bubbleseekbar.R$attr: int bsb_progress -cyanogenmod.weather.RequestInfo$Builder: java.lang.String mCityName -cyanogenmod.app.ThemeVersion: int getVersion() -wangdaye.com.geometricweather.db.entities.MinutelyEntity: long getTime() -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconTintMode -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getLtoSource() -okhttp3.internal.connection.RealConnection: void cancel() -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String componentToImageColName(java.lang.String) -com.google.android.material.R$styleable: int[] AppCompatTheme -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: wangdaye.com.geometricweather.db.entities.MinutelyEntity readEntity(android.database.Cursor,int) -wangdaye.com.geometricweather.R$id: int material_minute_tv -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_3_material -wangdaye.com.geometricweather.R$drawable: int widget_week -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView -com.google.android.material.R$attr: int warmth -android.didikee.donate.R$attr: int textAppearanceSearchResultSubtitle -androidx.appcompat.widget.AppCompatAutoCompleteTextView: android.content.res.ColorStateList getSupportBackgroundTintList() -wangdaye.com.geometricweather.R$string: int action_about -james.adaptiveicon.R$dimen: int abc_edit_text_inset_horizontal_material -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method getMethod -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_gradientRadius -com.google.android.material.slider.Slider: float getValue() -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_padding_start_material -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: long serialVersionUID -io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable,io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$drawable: int ic_keyboard_black_24dp +com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_indicator_material +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onSuccess(java.lang.Object) +com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context) +com.google.android.material.R$styleable: int MaterialShape_shapeAppearance +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum Maximum +androidx.preference.R$dimen: int abc_dialog_min_width_minor +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService: ForegroundTodayForecastUpdateService() +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDate(java.util.Date) +com.turingtechnologies.materialscrollbar.R$id: int checkbox +com.google.android.material.R$drawable: int abc_btn_check_to_on_mtrl_000 +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginRight +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position +androidx.transition.R$id: int notification_main_column_container +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_y_offset_non_touch +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_background_transition_holo_dark +com.turingtechnologies.materialscrollbar.R$attr: int buttonTint +wangdaye.com.geometricweather.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +androidx.hilt.work.R$styleable: int GradientColor_android_endX +androidx.preference.R$styleable: int[] ActionMenuView +okhttp3.internal.connection.RealConnection$1: okhttp3.internal.connection.RealConnection this$0 +cyanogenmod.app.ILiveLockScreenManagerProvider +cyanogenmod.weatherservice.IWeatherProviderService$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$style: int Base_AlertDialog_AppCompat +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setChecked(boolean) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: ExternalViewProviderService$Provider$ProviderImpl$5(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +androidx.fragment.R$dimen: int compat_notification_large_icon_max_width +android.didikee.donate.R$styleable: int AppCompatTheme_actionModePasteDrawable +wangdaye.com.geometricweather.R$attr: int paddingLeftSystemWindowInsets +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endY +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listMenuViewStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitationProbability(java.lang.Float) +androidx.constraintlayout.widget.R$dimen: int notification_content_margin_start +androidx.appcompat.R$styleable: int ActionBar_contentInsetRight +james.adaptiveicon.R$color: int abc_tint_seek_thumb +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator PROXIMITY_ON_WAKE_VALIDATOR +androidx.lifecycle.LiveData$ObserverWrapper: boolean mActive +okhttp3.Response$Builder: okhttp3.Response$Builder protocol(okhttp3.Protocol) +okio.BufferedSource: void readFully(okio.Buffer,long) +wangdaye.com.geometricweather.R$color: int material_on_surface_emphasis_medium +androidx.drawerlayout.widget.DrawerLayout +androidx.appcompat.R$styleable: int AppCompatTheme_android_windowIsFloating +com.google.android.material.R$id: int center +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder pingIntervalMillis(int) +androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$styleable: int StateSet_defaultState +com.google.android.material.R$dimen: int abc_action_bar_content_inset_material +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf +com.google.android.material.R$string: int abc_prepend_shortcut_label +androidx.viewpager.R$id: int icon +androidx.lifecycle.ClassesInfoCache$CallbackInfo: ClassesInfoCache$CallbackInfo(java.util.Map) +com.google.android.material.internal.ParcelableSparseIntArray: android.os.Parcelable$Creator CREATOR +androidx.appcompat.resources.R$layout: int notification_action +com.google.android.material.textfield.TextInputLayout: int getBoxStrokeWidth() +androidx.legacy.coreutils.R$styleable: int ColorStateListItem_android_alpha +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_requestDismissAndStartActivity_1 +androidx.appcompat.widget.AppCompatEditText: android.text.Editable getText() +com.github.rahatarmanahmed.cpv.CircularProgressView: float indeterminateRotateOffset +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabBar +androidx.viewpager.R$attr: int fontVariationSettings com.jaredrummler.android.colorpicker.R$dimen: int abc_disabled_alpha_material_dark -androidx.preference.R$attr: int textAppearanceSearchResultSubtitle -com.google.android.material.R$drawable: int notification_tile_bg -com.google.android.material.R$dimen: int mtrl_high_ripple_hovered_alpha -okhttp3.internal.http2.Http2Stream: void receiveHeaders(java.util.List) -com.bumptech.glide.integration.okhttp.R$id: int blocking -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver,java.lang.Throwable) -james.adaptiveicon.R$styleable: int[] CompoundButton -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: CNWeatherResult$Life() -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline3 -com.xw.repo.bubbleseekbar.R$attr: int progressBarStyle -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showAlphaSlider -com.google.android.material.chip.ChipGroup: void setCheckedId(int) -androidx.constraintlayout.utils.widget.MotionTelltales: void setText(java.lang.CharSequence) -wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_android_maxHeight -com.turingtechnologies.materialscrollbar.R$id: int action_mode_bar -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onComplete() -androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_requireAdaptiveBacklightForSunlightEnhancement -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_73 -androidx.hilt.R$styleable: int GradientColor_android_centerColor -com.xw.repo.bubbleseekbar.R$attr: int singleChoiceItemLayout -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_creator -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_HIGH -wangdaye.com.geometricweather.R$attr: int chipSurfaceColor -com.google.android.material.R$color: int design_dark_default_color_on_secondary -androidx.coordinatorlayout.R$dimen: int notification_main_column_padding_top -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableItem_android_id -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast$Builder setHigh(double) -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderFetchStrategy -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void drain() -com.google.android.material.R$styleable: int KeyCycle_motionTarget -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType QueryList -com.google.android.material.R$styleable: int Insets_paddingLeftSystemWindowInsets -cyanogenmod.util.ColorUtils: double calculateDeltaE(double,double,double,double,double,double) -androidx.transition.R$id -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderQuery -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_3_material -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -androidx.hilt.R$id: int accessibility_custom_action_14 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_width_overflow_material -androidx.fragment.R$styleable: int GradientColorItem_android_offset -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_margin -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getNavigationContentDescription() -wangdaye.com.geometricweather.R$dimen: int fastscroll_default_thickness -com.turingtechnologies.materialscrollbar.R$id: int auto -com.google.android.material.R$styleable: int ActionBar_titleTextStyle -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle -com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getIconTintMode() -retrofit2.http.HEAD -com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_mid_color -androidx.constraintlayout.widget.R$dimen -wangdaye.com.geometricweather.R$id: int activity_about_container -androidx.preference.R$styleable: int CheckBoxPreference_android_disableDependentsState -wangdaye.com.geometricweather.R$string: int material_slider_range_end -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.coordinatorlayout.R$dimen -james.adaptiveicon.R$attr: R$attr() -androidx.appcompat.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.R$string: int abc_menu_sym_shortcut_label -wangdaye.com.geometricweather.R$attr: int bsb_is_float_type -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -cyanogenmod.app.LiveLockScreenManager: void cancel(int) -retrofit2.http.Part -wangdaye.com.geometricweather.R$drawable: int shortcuts_thunderstorm_foreground -androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.R$styleable: int Slider_thumbStrokeColor -wangdaye.com.geometricweather.R$attr: int buttonBarPositiveButtonStyle -androidx.preference.R$styleable: int ActionBar_logo -android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogStyle -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton_CloseMode -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String dataUptime -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void complete() -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingEnd -androidx.preference.MultiSelectListPreferenceDialogFragmentCompat: MultiSelectListPreferenceDialogFragmentCompat() -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_left -com.google.android.material.R$attr: int horizontalOffset -androidx.core.R$dimen: int compat_button_inset_horizontal_material -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -okhttp3.internal.http2.Http2Reader$Handler: void ping(boolean,int,int) -cyanogenmod.app.CustomTile$ExpandedListItem -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupMenu -androidx.preference.R$drawable: int abc_ic_voice_search_api_material -wangdaye.com.geometricweather.R$styleable: int[] SnackbarLayout -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_precise_anchor_extra_offset -androidx.constraintlayout.widget.R$styleable: int SearchView_closeIcon -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotation -androidx.appcompat.widget.ViewStubCompat: int getLayoutResource() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX wind -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: int colorId -androidx.appcompat.resources.R$attr: R$attr() -com.xw.repo.bubbleseekbar.R$layout: int notification_template_icon_group -com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endY -com.google.android.material.button.MaterialButton: void setInsetBottom(int) -androidx.swiperefreshlayout.R$dimen: int compat_notification_large_icon_max_width -james.adaptiveicon.R$id: int right_side -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_android_windowAnimationStyle -wangdaye.com.geometricweather.R$string: int content_des_so2 -io.reactivex.Observable: io.reactivex.Observable skip(long,java.util.concurrent.TimeUnit) -androidx.vectordrawable.R$id: int accessibility_custom_action_5 -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView -com.bumptech.glide.load.engine.GlideException: java.lang.Class dataClass -com.jaredrummler.android.colorpicker.R$styleable: int[] ListPreference -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onComplete() -james.adaptiveicon.R$styleable: int SearchView_searchIcon -james.adaptiveicon.R$drawable: int abc_ic_clear_material -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Bridge -com.google.gson.LongSerializationPolicy$2 -com.google.android.material.textfield.TextInputLayout: void setErrorEnabled(boolean) -cyanogenmod.weather.util.WeatherUtils: double fahrenheitToCelsius(double) -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long,boolean,int) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: int getFillColor() -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -okhttp3.internal.http2.Settings: okhttp3.internal.http2.Settings set(int,int) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_onClick -com.turingtechnologies.materialscrollbar.R$id: int action_divider -wangdaye.com.geometricweather.R$string: int key_notification_hide_icon -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollEnabled -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter daytimeWindDegreeConverter -androidx.viewpager.widget.PagerTitleStrip: int getMinHeight() -androidx.appcompat.resources.R$styleable: int ColorStateListItem_alpha -okio.Buffer: okio.Buffer$UnsafeCursor readAndWriteUnsafe(okio.Buffer$UnsafeCursor) -cyanogenmod.app.ProfileManager: java.lang.String INTENT_ACTION_PROFILE_SELECTED -wangdaye.com.geometricweather.R$attr: int startIconDrawable -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setVisibility(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean) -com.google.android.material.R$styleable: int MaterialCalendarItem_itemStrokeColor -wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullResourceIdException -okhttp3.MediaType: java.lang.String type() -okhttp3.Address: int hashCode() -androidx.hilt.work.R$integer: R$integer() -androidx.hilt.work.R$attr: int fontProviderQuery -androidx.preference.R$styleable: int SearchView_goIcon -androidx.recyclerview.R$attr: int fontVariationSettings -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Button -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -androidx.customview.R$id: int icon_group -com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context) -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Longitude -okhttp3.Protocol: okhttp3.Protocol valueOf(java.lang.String) -android.didikee.donate.R$style: int Widget_AppCompat_RatingBar_Indicator -androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnBind() -com.google.android.material.R$dimen: int abc_search_view_preferred_height -wangdaye.com.geometricweather.R$id: int content -androidx.lifecycle.ViewModel: void closeWithRuntimeException(java.lang.Object) -androidx.appcompat.R$style: int Base_Theme_AppCompat -androidx.core.R$styleable: int FontFamily_fontProviderAuthority -com.google.android.material.bottomappbar.BottomAppBar: com.google.android.material.bottomappbar.BottomAppBarTopEdgeTreatment getTopEdgeTreatment() -okio.ByteString: boolean endsWith(byte[]) -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onError(java.lang.Throwable) -androidx.preference.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_icon_padding -com.google.android.material.R$styleable: int[] FontFamilyFont -androidx.constraintlayout.widget.R$attr: int fontProviderPackage -androidx.preference.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +androidx.constraintlayout.widget.R$styleable: int[] State +androidx.swiperefreshlayout.R$dimen: int notification_media_narrow_margin +com.jaredrummler.android.colorpicker.R$attr: int suggestionRowLayout +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$styleable: int AlertDialog_buttonPanelSideLayout +android.didikee.donate.R$styleable: int MenuView_preserveIconSpacing +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason SWITCH_TO_SOURCE_SERVICE +wangdaye.com.geometricweather.R$attr: int enabled +okhttp3.internal.http2.Http2Stream$FramingSource: okio.Buffer readBuffer +okhttp3.internal.cache.CacheInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withConnectTimeout(int,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$string: int feedback_text_size +com.google.android.material.floatingactionbutton.FloatingActionButton: void setRippleColor(int) +wangdaye.com.geometricweather.R$attr: int iconSize +wangdaye.com.geometricweather.R$string: int glide +com.google.android.material.slider.RangeSlider: void setTrackHeight(int) +androidx.constraintlayout.widget.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_top_padding +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_RC4_128_SHA +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer degreeDayTemperature +wangdaye.com.geometricweather.R$id: int transitionToStart +com.xw.repo.bubbleseekbar.R$dimen: int notification_content_margin_start +okhttp3.HttpUrl: okhttp3.HttpUrl parse(java.lang.String) +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver +okhttp3.logging.HttpLoggingInterceptor$Logger: okhttp3.logging.HttpLoggingInterceptor$Logger DEFAULT +okhttp3.HttpUrl: java.util.List queryStringToNamesAndValues(java.lang.String) +cyanogenmod.externalviews.KeyguardExternalView: void registerKeyguardExternalViewCallback(cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks) +okhttp3.internal.http.HttpMethod: boolean redirectsToGet(java.lang.String) +androidx.preference.R$id: int search_plate wangdaye.com.geometricweather.R$layout: int widget_day_rectangle -androidx.appcompat.R$styleable: int AlertDialog_buttonPanelSideLayout -androidx.preference.R$styleable: int[] DialogPreference -wangdaye.com.geometricweather.R$color: int dim_foreground_disabled_material_light -androidx.vectordrawable.R$id: int chronometer -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_weight +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherSuccess(java.lang.Object) +james.adaptiveicon.R$color: int button_material_dark +wangdaye.com.geometricweather.R$id: int fitToContents +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarDivider +androidx.preference.R$attr: int textAppearanceListItem +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setDayIconDrawable(android.graphics.drawable.Drawable) +android.didikee.donate.R$id: int checkbox +okhttp3.internal.proxy.NullProxySelector +wangdaye.com.geometricweather.R$id: int container_main_pollen_pager +io.reactivex.Observable: java.lang.Object blockingSingle() +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_Alert +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.disposables.Disposable upstream +androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_android_src +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: org.reactivestreams.Subscriber downstream +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +wangdaye.com.geometricweather.R$id: int tag_accessibility_pane_title +io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper[] values() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +com.google.android.material.R$id: int custom +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +james.adaptiveicon.R$drawable: int abc_edit_text_material +com.xw.repo.bubbleseekbar.R$id: int customPanel +com.jaredrummler.android.colorpicker.R$color: int secondary_text_default_material_dark +androidx.recyclerview.R$styleable: int FontFamily_fontProviderPackage +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void dispose() +androidx.preference.R$drawable: int abc_text_select_handle_middle_mtrl_dark +com.xw.repo.bubbleseekbar.R$attr: int voiceIcon +androidx.appcompat.R$styleable: int Toolbar_contentInsetLeft +androidx.swiperefreshlayout.R$dimen: int notification_subtext_size +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton +com.google.android.material.textfield.TextInputLayout: android.widget.EditText getEditText() +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: boolean unsupported +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int Fragment_android_id +androidx.constraintlayout.widget.R$dimen: int abc_dialog_padding_top_material +com.google.android.material.R$attr: int cardForegroundColor +com.google.android.material.appbar.AppBarLayout: int getTotalScrollRange() +wangdaye.com.geometricweather.R$dimen: int abc_switch_padding +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_type +okio.HashingSink: okio.HashingSink hmacSha512(okio.Sink,okio.ByteString) +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_normal_pressed +androidx.lifecycle.AbstractSavedStateViewModelFactory: void onRequery(androidx.lifecycle.ViewModel) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias +com.google.android.material.R$styleable: int TextInputLayout_errorIconDrawable +wangdaye.com.geometricweather.R$string: int abc_menu_ctrl_shortcut_label +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ProgressBar +okhttp3.Challenge: boolean equals(java.lang.Object) +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_middle_mtrl_light +okhttp3.internal.platform.AndroidPlatform: int MAX_LOG_LENGTH +okhttp3.internal.Util: boolean skipAll(okio.Source,int,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationX +okhttp3.internal.http2.Http2Connection: long access$608(okhttp3.internal.http2.Http2Connection) +com.bumptech.glide.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_width_material +androidx.appcompat.R$dimen: int abc_text_size_headline_material +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_small_material +okhttp3.internal.io.FileSystem: okhttp3.internal.io.FileSystem SYSTEM +androidx.recyclerview.R$integer +android.didikee.donate.R$dimen: int abc_disabled_alpha_material_light +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void dispose() +retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type[] getUpperBounds() +androidx.drawerlayout.R$attr: int fontStyle +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ScheduledExecutorService access$500(okhttp3.internal.http2.Http2Connection) +okhttp3.HttpUrl$Builder +retrofit2.converter.gson.GsonConverterFactory: GsonConverterFactory(com.google.gson.Gson) +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: android.os.IBinder asBinder() +com.google.android.material.R$string: int mtrl_picker_invalid_format_example +wangdaye.com.geometricweather.R$drawable: int notification_template_icon_low_bg +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_titleCondensed +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatImageView +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onNext(java.lang.Object) +androidx.preference.R$styleable: int View_android_theme +okio.ByteString: java.lang.String base64Url() +wangdaye.com.geometricweather.R$styleable: int[] ProgressIndicator +com.jaredrummler.android.colorpicker.R$id: int buttonPanel +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceImageView +com.google.android.material.card.MaterialCardView: void setCheckedIcon(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_padding_start_material +wangdaye.com.geometricweather.R$id: int container_main_first_card_header +com.jaredrummler.android.colorpicker.R$id: int submit_area +androidx.constraintlayout.widget.R$drawable: int btn_radio_off_to_on_mtrl_animation +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.R$drawable: int abc_btn_colored_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: void setSpeed(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: int Id +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_letter_spacing +com.google.android.material.R$id: int password_toggle +com.google.android.material.slider.Slider: void setLabelBehavior(int) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind wind +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean sameConnection(okhttp3.Response,okhttp3.HttpUrl) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_corner_radius +com.jaredrummler.android.colorpicker.R$id: int decor_content_parent +androidx.appcompat.widget.ContentFrameLayout +com.google.android.material.R$styleable: int KeyTrigger_triggerSlack +androidx.constraintlayout.widget.R$layout: int abc_cascading_menu_item_layout +james.adaptiveicon.R$attr: int homeAsUpIndicator +wangdaye.com.geometricweather.R$string: int donate +retrofit2.BuiltInConverters$UnitResponseBodyConverter +com.google.android.material.R$dimen: int mtrl_extended_fab_disabled_elevation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setWeather(java.lang.String) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_track_mtrl_alpha +com.google.android.material.R$dimen: int notification_top_pad_large_text +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +androidx.constraintlayout.widget.R$styleable: int MenuView_android_horizontalDivider +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_textAllCaps +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeWindChillTemperature() +androidx.work.R$id: int accessibility_custom_action_11 +androidx.appcompat.R$styleable: int TextAppearance_android_shadowDy +com.turingtechnologies.materialscrollbar.R$attr: int ttcIndex +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_min_width_minor +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar +androidx.constraintlayout.widget.R$drawable: int abc_btn_colored_material +wangdaye.com.geometricweather.R$styleable: int Slider_android_enabled +okhttp3.internal.cache2.Relay$RelaySource: okhttp3.internal.cache2.Relay this$0 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextStyle +com.google.android.material.navigation.NavigationView: void setCheckedItem(android.view.MenuItem) +androidx.lifecycle.LiveData: boolean mDispatchInvalidated +androidx.constraintlayout.widget.R$attr: int drawableBottomCompat +retrofit2.adapter.rxjava2.Result: java.lang.Throwable error() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float so2 +androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_GREEN_INDEX +cyanogenmod.weather.CMWeatherManager: android.os.Handler mHandler +com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +com.google.android.material.navigation.NavigationView: android.content.res.ColorStateList getItemTextColor() +james.adaptiveicon.R$layout: int abc_popup_menu_item_layout +wangdaye.com.geometricweather.R$color: int lightPrimary_4 +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean isDisposed() +com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_statusBarBackground +wangdaye.com.geometricweather.R$string: int wind_direction +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotation +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER_X +androidx.activity.R$styleable: int[] GradientColorItem +com.turingtechnologies.materialscrollbar.R$attr: int helperText +wangdaye.com.geometricweather.R$attr: int homeLayout +cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup getNotificationGroup(android.os.ParcelUuid) +wangdaye.com.geometricweather.R$string: int feedback_request_location_permission_failed +james.adaptiveicon.R$styleable: int SwitchCompat_showText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX() +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Bridge +android.didikee.donate.R$style: int Base_Widget_AppCompat_SearchView +cyanogenmod.weatherservice.ServiceRequest: void complete(cyanogenmod.weatherservice.ServiceRequestResult) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor +com.turingtechnologies.materialscrollbar.R$attr: int tooltipForegroundColor +wangdaye.com.geometricweather.R$bool: int enable_system_alarm_service_default +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer LEFT_CLOSE +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontWeight +androidx.appcompat.R$layout: int abc_action_bar_title_item +androidx.hilt.lifecycle.R$id: int right_side +okhttp3.Interceptor$Chain: okhttp3.Request request() +androidx.preference.R$styleable: int SwitchCompat_android_thumb android.didikee.donate.R$attr: int textAppearanceSearchResultTitle -wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_vertical -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_to_on_mtrl_015 -okhttp3.internal.cache2.Relay: okhttp3.internal.cache2.Relay edit(java.io.File,okio.Source,okio.ByteString,long) -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitation -androidx.hilt.R$layout: int custom_dialog -james.adaptiveicon.R$drawable: int abc_ic_menu_overflow_material -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) -androidx.transition.R$styleable: int[] GradientColor -cyanogenmod.app.ThemeVersion$ComponentVersion: int getId() -com.google.android.material.R$styleable: int MenuGroup_android_enabled -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: KeyguardExternalViewProviderService$Provider$ProviderImpl$7(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +com.google.android.material.R$styleable: int BottomNavigationView_elevation +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_13 +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_bg_color_selector +wangdaye.com.geometricweather.R$styleable: int MenuItem_actionProviderClass +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,long,java.util.concurrent.TimeUnit) +androidx.constraintlayout.widget.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$id: int widget_day_card +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getEn_US() +wangdaye.com.geometricweather.R$attr: int cpv_indeterminate +wangdaye.com.geometricweather.R$attr: int fabAnimationMode +androidx.preference.R$color: int preference_fallback_accent_color +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: boolean isDisposed() +androidx.loader.R$color: int notification_action_color_filter +androidx.hilt.R$styleable: int GradientColor_android_centerColor +android.support.v4.os.IResultReceiver$Stub$Proxy: IResultReceiver$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String country +wangdaye.com.geometricweather.R$drawable: int weather_sleet_1 +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemBackgroundRes() +wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_liftable +androidx.constraintlayout.widget.R$id: int packed +androidx.appcompat.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: java.lang.String Unit +com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay_v14_Material +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_LAUNCH_VALIDATOR +androidx.preference.R$attr: int expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_bottom +wangdaye.com.geometricweather.R$animator: int weather_snow_2 +okhttp3.FormBody: okhttp3.MediaType CONTENT_TYPE +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_iconEndPadding +com.jaredrummler.android.colorpicker.R$attr: int measureWithLargestChild +androidx.hilt.lifecycle.R$id: int action_text +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +androidx.work.R$id: int blocking +androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context,android.util.AttributeSet) +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle +android.didikee.donate.R$attr: int imageButtonStyle +com.jaredrummler.android.colorpicker.R$dimen: int notification_large_icon_width +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_VALIDATOR +cyanogenmod.profiles.RingModeSettings: void writeToParcel(android.os.Parcel,int) +androidx.appcompat.R$attr: int alertDialogCenterButtons +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherComplete() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMinWidth +androidx.constraintlayout.widget.R$color +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: AccuLocationResult() +wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationY +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Listener listener +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_light +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar +com.jaredrummler.android.colorpicker.R$layout: int preference +com.turingtechnologies.materialscrollbar.R$color: int foreground_material_dark +androidx.appcompat.widget.AppCompatTextView: android.content.res.ColorStateList getSupportCompoundDrawablesTintList() +cyanogenmod.app.CustomTileListenerService +com.turingtechnologies.materialscrollbar.Indicator: void setScroll(float) +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayDetailsWidgetConfigActivity: Hilt_ClockDayDetailsWidgetConfigActivity() +com.jaredrummler.android.colorpicker.R$attr: int cpv_alphaChannelVisible +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_default_mtrl_alpha +com.jaredrummler.android.colorpicker.R$attr: int actionDropDownStyle +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Integer aqiIndex +cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_NORMAL +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getNO2() +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_id +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_constantSize +android.didikee.donate.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +io.reactivex.Observable: io.reactivex.Observable switchMap(io.reactivex.functions.Function) +androidx.transition.R$attr: R$attr() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWetBulbTemperature(java.lang.Integer) +okio.Base64 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float rainPrecipitationProbability +androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int RecycleListView_paddingBottomNoButtons +androidx.legacy.coreutils.R$style: R$style() +androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_Dialog +androidx.constraintlayout.widget.R$attr: int windowNoTitle +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String uvDescription +android.didikee.donate.R$attr: int subMenuArrow +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean url +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CUSTOM_VALUES_VALIDATOR +com.google.android.material.R$attr: int materialButtonStyle +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setTextColor(int) +android.didikee.donate.R$styleable: int[] AppCompatTextView +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +wangdaye.com.geometricweather.R$color: int material_on_surface_disabled +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_middle_mtrl_light +com.jaredrummler.android.colorpicker.R$layout: int abc_action_menu_item_layout +okio.SegmentedByteString: void write(okio.Buffer) +wangdaye.com.geometricweather.R$drawable: int ic_github_light +androidx.work.impl.utils.futures.DirectExecutor: java.lang.String toString() +com.google.android.material.R$id: int mtrl_picker_text_input_range_end +android.didikee.donate.R$color: int button_material_light +okhttp3.FormBody$Builder: okhttp3.FormBody$Builder addEncoded(java.lang.String,java.lang.String) +okhttp3.Dispatcher: void setMaxRequestsPerHost(int) +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CONDITION +com.google.android.material.R$attr: int endIconMode +cyanogenmod.providers.CMSettings$Secure: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.io.FileSystem fileSystem +cyanogenmod.app.LiveLockScreenInfo$Builder: int mPriority +wangdaye.com.geometricweather.R$dimen: int widget_design_title_text_size +com.google.android.material.R$attr: int motionStagger +cyanogenmod.app.PartnerInterface: java.lang.String MODIFY_NETWORK_SETTINGS_PERMISSION +androidx.constraintlayout.widget.R$styleable: int ActionMode_height +com.jaredrummler.android.colorpicker.R$anim: int abc_shrink_fade_out_from_bottom +androidx.room.MultiInstanceInvalidationService: MultiInstanceInvalidationService() +cyanogenmod.app.BaseLiveLockManagerService: void enforceAccessPermission() androidx.appcompat.widget.AppCompatCheckBox -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontStyle -com.bumptech.glide.integration.okhttp.R$dimen: int notification_big_circle_margin -com.google.android.material.R$styleable: int MenuView_android_windowAnimationStyle -com.google.gson.stream.JsonReader: int PEEKED_UNQUOTED -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int CLOUDY -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindLevel(java.lang.String) -cyanogenmod.app.CustomTile: java.lang.String access$302(cyanogenmod.app.CustomTile,java.lang.String) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: void dispose() -com.google.android.material.R$style: int Widget_Compat_NotificationActionText -com.google.android.material.R$styleable: int MaterialCardView_cardForegroundColor -james.adaptiveicon.R$attr: int buttonTint -wangdaye.com.geometricweather.R$string: int cpv_custom -okhttp3.logging.LoggingEventListener: void dnsEnd(okhttp3.Call,java.lang.String,java.util.List) -androidx.appcompat.R$attr: int navigationIcon -retrofit2.ParameterHandler$QueryMap: int p -james.adaptiveicon.R$styleable: int[] ActionMode -androidx.appcompat.widget.AppCompatRadioButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.internal.operators.observable.ObservableRefCount parent -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String MobileLink -com.xw.repo.bubbleseekbar.R$attr: int contentInsetLeft -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorColor -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: long serialVersionUID -androidx.constraintlayout.motion.widget.MotionLayout: float getTargetPosition() -com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextStyle -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: BaiduIPLocationResult$ContentBean$PointBean() -com.google.android.material.R$styleable: int CardView_android_minHeight -com.google.android.material.R$color: int primary_text_default_material_light -androidx.constraintlayout.widget.R$string: int search_menu_title -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float no2 -wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_selected -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -com.google.android.material.chip.ChipGroup: void setSelectionRequired(boolean) -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_5_00 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline -androidx.recyclerview.R$attr: int fastScrollVerticalThumbDrawable -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean,int) -com.google.android.material.R$integer: int config_tooltipAnimTime -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.entities.DaoSession daoSession -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.MinutelyEntityDao getMinutelyEntityDao() -com.xw.repo.bubbleseekbar.R$attr: int drawerArrowStyle -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: int getMarginTop() -androidx.constraintlayout.widget.R$styleable: int OnClick_clickAction -okhttp3.internal.cache.DiskLruCache$Editor: okhttp3.internal.cache.DiskLruCache$Entry entry -wangdaye.com.geometricweather.R$styleable: int Slider_tickVisible +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure +wangdaye.com.geometricweather.R$array: int week_widget_style_values +com.google.android.material.slider.Slider: void setValueTo(float) +com.turingtechnologies.materialscrollbar.R$color: int background_floating_material_dark +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay[] halfDays +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.Window mWindow +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: long EpochDate +wangdaye.com.geometricweather.R$layout: int widget_clock_day_rectangle +androidx.appcompat.widget.AppCompatButton: android.content.res.ColorStateList getSupportBackgroundTintList() +androidx.constraintlayout.widget.R$string: int abc_action_mode_done +cyanogenmod.externalviews.ExternalView$4: ExternalView$4(cyanogenmod.externalviews.ExternalView) +wangdaye.com.geometricweather.R$integer: int mtrl_btn_anim_duration_ms +okhttp3.logging.LoggingEventListener: void responseHeadersStart(okhttp3.Call) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date publishDate +androidx.preference.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +cyanogenmod.themes.ThemeManager: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$id: int container_main_header +okio.ForwardingTimeout: void throwIfReached() +com.jaredrummler.android.colorpicker.R$id: int image +com.xw.repo.bubbleseekbar.R$attr: int windowFixedWidthMinor +androidx.cardview.widget.CardView: void setUseCompatPadding(boolean) +androidx.appcompat.R$styleable: int ActionBar_icon +android.didikee.donate.R$styleable: int Spinner_android_popupBackground +wangdaye.com.geometricweather.R$dimen: int notification_large_icon_width +com.google.android.material.R$attr: int region_widthMoreThan +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig historyEntityDaoConfig +androidx.dynamicanimation.R$attr +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorButtonNormal +com.google.android.material.R$attr: int homeLayout +com.jaredrummler.android.colorpicker.R$attr: int navigationMode +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onComplete() +androidx.hilt.work.R$id: int line3 +androidx.preference.R$styleable: int TextAppearance_android_textColor +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_menu_material +com.google.android.material.R$dimen: int mtrl_transition_shared_axis_slide_distance +wangdaye.com.geometricweather.R$drawable: int notif_temp_96 +com.google.android.material.R$styleable: int[] ButtonBarLayout +wangdaye.com.geometricweather.R$drawable: int abc_popup_background_mtrl_mult +okio.Buffer: java.lang.Object clone() +com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_android_alpha +androidx.work.impl.workers.CombineContinuationsWorker: CombineContinuationsWorker(android.content.Context,androidx.work.WorkerParameters) +james.adaptiveicon.R$dimen: int abc_text_size_display_1_material +wangdaye.com.geometricweather.R$drawable: int clock_hour_dark +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_normal +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceOverline +cyanogenmod.app.PartnerInterface: void setMobileDataEnabled(boolean) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +com.turingtechnologies.materialscrollbar.R$animator: int design_appbar_state_list_animator +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Wind getWind() +james.adaptiveicon.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge +com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_selected +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ct +androidx.preference.R$layout: int preference_widget_seekbar +com.turingtechnologies.materialscrollbar.R$styleable: int[] CardView androidx.appcompat.R$drawable: int abc_list_focused_holo -okhttp3.internal.ws.WebSocketReader: WebSocketReader(boolean,okio.BufferedSource,okhttp3.internal.ws.WebSocketReader$FrameCallback) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -wangdaye.com.geometricweather.R$drawable: int notif_temp_55 -com.google.android.material.button.MaterialButton: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_creator -wangdaye.com.geometricweather.R$attr: int buttonBarButtonStyle -androidx.cardview.R$attr: int cardPreventCornerOverlap -wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity -wangdaye.com.geometricweather.R$string: int key_ui_style -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_118 -com.jaredrummler.android.colorpicker.R$styleable: int Preference_fragment -io.reactivex.disposables.RunnableDisposable: long serialVersionUID -androidx.recyclerview.widget.RecyclerView: long getNanoTime() -androidx.viewpager2.R$id: int action_container -androidx.appcompat.R$style: int Platform_Widget_AppCompat_Spinner -com.google.android.material.R$dimen: int mtrl_btn_dialog_btn_min_width -androidx.appcompat.R$attr: int collapseContentDescription -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_lightIcon -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.reflect.Type responseType() -com.google.android.material.R$styleable: int ActionBar_subtitle -android.didikee.donate.R$styleable: int AppCompatTheme_listPopupWindowStyle -androidx.constraintlayout.widget.R$attr: int contentInsetEndWithActions -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_CompactMenu -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String CountryCode -androidx.preference.R$id: int accessibility_custom_action_29 -okhttp3.internal.http2.Http2Connection: long degradedPingsSent -androidx.lifecycle.ViewModel: java.lang.Object getTag(java.lang.String) -androidx.appcompat.resources.R$color: int secondary_text_default_material_light -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_viewInflaterClass -io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer) -wangdaye.com.geometricweather.R$id: int SHIFT -okhttp3.internal.cache2.Relay: java.lang.Thread upstreamReader -androidx.constraintlayout.widget.R$styleable: int SearchView_searchIcon -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingEnd -cyanogenmod.weather.WeatherInfo: long getTimestamp() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_cascading_menus_min_smallest_width -wangdaye.com.geometricweather.R$attr: int dialogPreferredPadding -okhttp3.internal.cache.CacheInterceptor: CacheInterceptor(okhttp3.internal.cache.InternalCache) -androidx.dynamicanimation.R$styleable: int GradientColorItem_android_color -androidx.preference.R$attr: int actionDropDownStyle -androidx.appcompat.R$layout: int abc_select_dialog_material -androidx.hilt.lifecycle.R$id: int forever -androidx.viewpager.R$layout: int notification_template_custom_big -james.adaptiveicon.R$integer -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getTreeLevel() -cyanogenmod.profiles.BrightnessSettings$1 -wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_day_foreground -androidx.appcompat.widget.ActivityChooserView: void setProvider(androidx.core.view.ActionProvider) -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_switchTextOn -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_visible -wangdaye.com.geometricweather.R$string: int fab_transformation_scrim_behavior -com.google.android.material.progressindicator.ProgressIndicator: void setVisibilityAfterHide(int) -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +io.reactivex.internal.util.NotificationLite$SubscriptionNotification +wangdaye.com.geometricweather.R$styleable: int Constraint_barrierAllowsGoneWidgets +androidx.transition.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +james.adaptiveicon.R$layout: int abc_action_menu_layout +android.didikee.donate.R$drawable: int abc_list_selector_background_transition_holo_dark +wangdaye.com.geometricweather.R$string: int date_format_widget_oreo_style +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: double Value +wangdaye.com.geometricweather.db.entities.LocationEntity: void setLongitude(float) +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_elevation +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +cyanogenmod.externalviews.ExternalViewProviderService$1: android.os.IBinder createExternalView(android.os.Bundle) +androidx.appcompat.widget.Toolbar: int getContentInsetStart() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setEn_US(java.lang.String) +okhttp3.internal.Util: java.lang.String[] EMPTY_STRING_ARRAY +wangdaye.com.geometricweather.R$id: int dialog_location_help_providerContainer +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintEnd_toStartOf +androidx.lifecycle.ComputableLiveData: java.util.concurrent.atomic.AtomicBoolean mComputing +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassDescription +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_handleColor +james.adaptiveicon.R$id: int action_bar +wangdaye.com.geometricweather.R$string: int day +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial +androidx.recyclerview.R$id: int info +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf +com.xw.repo.bubbleseekbar.R$styleable: int[] LinearLayoutCompat_Layout +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onDetach +io.reactivex.internal.schedulers.AbstractDirectTask: void dispose() +io.reactivex.internal.disposables.EmptyDisposable: java.lang.Object poll() +org.greenrobot.greendao.AbstractDao: void deleteByKeyInsideSynchronized(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement) +com.google.android.material.R$styleable: int[] AppCompatTextHelper +com.bumptech.glide.manager.SupportRequestManagerFragment +com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_inset_vertical_material +james.adaptiveicon.R$styleable: int AppCompatTheme_switchStyle +com.google.android.material.chip.Chip: void setGravity(int) +androidx.preference.R$style: int Widget_AppCompat_TextView +io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_keyline +com.bumptech.glide.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.common.basic.models.weather.Daily: boolean isToday(java.util.TimeZone) +cyanogenmod.app.ICMTelephonyManager$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$style: int Preference_DropDown +com.xw.repo.bubbleseekbar.R$color: int primary_material_light +wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context,android.util.AttributeSet) +androidx.preference.R$drawable: int abc_btn_check_material +com.google.android.material.R$attr: int itemHorizontalTranslationEnabled +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +com.jaredrummler.android.colorpicker.R$attr: int adjustable +com.google.android.material.R$attr: int defaultState +wangdaye.com.geometricweather.R$styleable: int Transition_staggered +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: double Value +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionBarLayout +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.util.Date time +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light +com.google.android.material.R$styleable: int KeyTimeCycle_waveDecay +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_grey +james.adaptiveicon.R$dimen: int abc_control_corner_material +androidx.appcompat.widget.SwitchCompat: android.content.res.ColorStateList getThumbTintList() +androidx.dynamicanimation.R$styleable: int GradientColor_android_centerX +cyanogenmod.app.CustomTile$ExpandedStyle: android.widget.RemoteViews getContentViews() +com.jaredrummler.android.colorpicker.R$style: int Widget_Compat_NotificationActionContainer +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void otherComplete() +androidx.appcompat.resources.R$drawable: int abc_vector_test +androidx.appcompat.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.ObservableSource) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegment(java.lang.String) +wangdaye.com.geometricweather.R$id: int activity_widget_config_doneButton +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setPresenter(com.google.android.material.bottomnavigation.BottomNavigationPresenter) +androidx.preference.R$styleable: int SearchView_queryHint +wangdaye.com.geometricweather.R$id: int autoCompleteToEnd +androidx.appcompat.resources.R$id: int icon_group +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf +androidx.transition.R$attr: int fontStyle +com.google.android.material.R$styleable: int SearchView_layout +com.turingtechnologies.materialscrollbar.R$string: int abc_action_bar_home_description +androidx.appcompat.R$id: int search_button +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayMode +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void open(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: ObservableTimeout$TimeoutFallbackObserver(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.ObservableSource) +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: IRequestInfoListener$Stub$Proxy(android.os.IBinder) +okio.RealBufferedSink: okio.Timeout timeout() +com.google.android.material.R$attr: int colorSurface +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_maxLines +androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$id: int transparency_seekbar +wangdaye.com.geometricweather.R$dimen: int design_snackbar_text_size +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldLevel(java.lang.Integer) +wangdaye.com.geometricweather.R$id: int treeTitle +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotationY +androidx.preference.R$attr: int switchMinWidth +androidx.constraintlayout.widget.R$styleable: int State_android_id +androidx.preference.R$drawable +androidx.constraintlayout.widget.R$styleable: int ButtonBarLayout_allowStacking +wangdaye.com.geometricweather.R$attr: int displayOptions +wangdaye.com.geometricweather.R$attr: int subMenuArrow +okio.Buffer$2: Buffer$2(okio.Buffer) +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_NoActionBar +androidx.appcompat.widget.SwitchCompat: android.graphics.PorterDuff$Mode getTrackTintMode() +wangdaye.com.geometricweather.R$styleable: int Motion_motionPathRotate +androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_id +androidx.constraintlayout.widget.R$attr: int customBoolean +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogTitle +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: long val$n +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +okhttp3.Cookie$Builder: boolean httpOnly +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setCity(java.lang.String) +androidx.constraintlayout.widget.R$style: int Platform_V21_AppCompat_Light +com.google.android.material.R$dimen: int tooltip_corner_radius +androidx.vectordrawable.R$attr: int fontStyle +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ut +androidx.lifecycle.extensions.R$id: int notification_main_column +androidx.activity.R$id: int tag_accessibility_heading +androidx.work.R$integer: R$integer() +com.google.android.material.R$layout: int abc_screen_simple +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean isDisposed() +com.google.android.material.R$dimen: int abc_dropdownitem_text_padding_right +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen +androidx.preference.R$dimen: int abc_panel_menu_list_width +cyanogenmod.app.ThemeVersion$ComponentVersion: int getCurrentVersion() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar_Small +com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingStart +androidx.preference.R$style: int Base_Widget_AppCompat_Spinner_Underlined +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_selected +androidx.constraintlayout.widget.R$styleable: int KeyPosition_transitionEasing +wangdaye.com.geometricweather.R$attr: int limitBoundsTo +wangdaye.com.geometricweather.R$drawable: int shortcuts_thunderstorm +android.didikee.donate.R$dimen: int abc_dialog_min_width_major +com.xw.repo.bubbleseekbar.R$attr: int panelMenuListTheme +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: int getStatus() +cyanogenmod.hardware.ICMHardwareService$Stub: cyanogenmod.hardware.ICMHardwareService asInterface(android.os.IBinder) +io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.functions.Consumer) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ProgressBar_Horizontal +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_registerThermalListener +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Icon +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Large +com.turingtechnologies.materialscrollbar.R$color: int material_grey_50 +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_toTopOf +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +android.didikee.donate.R$attr: int allowStacking +io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate,int) +okhttp3.internal.http.HttpHeaders: java.util.List parseChallenges(okhttp3.Headers,java.lang.String) +wangdaye.com.geometricweather.main.layouts.MainLayoutManager +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.appcompat.R$style: int Widget_AppCompat_Spinner_DropDown +cyanogenmod.app.IProfileManager$Stub: IProfileManager$Stub() +com.bumptech.glide.integration.okhttp.R$color +androidx.constraintlayout.widget.R$attr: int spinnerStyle +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_normal +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_background_transition_holo_light +wangdaye.com.geometricweather.R$attr: int navigationMode +okhttp3.Cache$CacheResponseBody$1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date from +io.reactivex.internal.observers.BlockingObserver: BlockingObserver(java.util.Queue) +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy IDENTITY +com.google.android.material.R$color: int background_material_dark +androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$layout: int design_layout_snackbar +com.google.android.material.R$styleable: int SwitchCompat_switchPadding +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType NONE +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Subtitle1 +okhttp3.CertificatePinner$Builder: CertificatePinner$Builder() +androidx.appcompat.R$string: int abc_searchview_description_query +androidx.activity.R$attr: R$attr() +okhttp3.Dns: okhttp3.Dns SYSTEM +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: int index +androidx.appcompat.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +androidx.hilt.lifecycle.R$dimen: int notification_large_icon_height +androidx.appcompat.resources.R$id: int accessibility_custom_action_16 +com.google.gson.stream.JsonReader: int PEEKED_BUFFERED +androidx.vectordrawable.R$drawable: int notification_bg +cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup[] getNotificationGroups() +com.google.android.material.R$attr: int indicatorColors +androidx.work.impl.background.systemjob.SystemJobService: SystemJobService() +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setTime(long) +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setOnClickListener(android.view.View$OnClickListener) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: void run() +com.google.android.material.R$layout: int abc_screen_simple_overlay_action_mode +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintStart_toEndOf +androidx.appcompat.resources.R$layout: R$layout() +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.util.ErrorMode errorMode +wangdaye.com.geometricweather.R$string: int allergen +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerY +james.adaptiveicon.R$color: int dim_foreground_material_light +androidx.lifecycle.Lifecycle: androidx.lifecycle.Lifecycle$State getCurrentState() +androidx.appcompat.R$integer: R$integer() +okhttp3.FormBody$Builder: FormBody$Builder(java.nio.charset.Charset) +wangdaye.com.geometricweather.R$id: int item_weather_icon okhttp3.Cache$2: boolean hasNext() -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Call delegate -io.reactivex.internal.observers.DeferredScalarObserver: long serialVersionUID -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: java.lang.String Unit -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_EditText -androidx.constraintlayout.widget.R$id: int end -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle -com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.functions.Predicate predicate -cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener -androidx.fragment.R$id: int info -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemBackground(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_text_input_mode -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +androidx.hilt.work.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$dimen: int abc_seekbar_track_progress_height_material +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_1 +com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Action +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_VALUE +com.google.android.material.R$styleable: int MenuItem_android_visible +androidx.preference.R$styleable: int AppCompatTheme_actionModeFindDrawable +james.adaptiveicon.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setLongitude(java.lang.String) +com.google.android.material.appbar.AppBarLayout: int getTopInset() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedHeightMajor +okio.RealBufferedSource: int read(byte[]) +io.reactivex.internal.subscriptions.EmptySubscription: java.lang.String toString() +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: IAppSuggestProvider$Stub$Proxy(android.os.IBinder) +android.didikee.donate.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +io.reactivex.internal.functions.Functions$NaturalComparator +com.turingtechnologies.materialscrollbar.R$attr: int listPopupWindowStyle +wangdaye.com.geometricweather.db.entities.WeatherEntity: long getPublishTime() +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onComplete() +androidx.appcompat.R$attr: int singleChoiceItemLayout +com.jaredrummler.android.colorpicker.R$style: int Platform_V21_AppCompat +androidx.constraintlayout.widget.R$attr: int listPreferredItemHeightLarge +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_AUTO_OUTDOOR_MODE_VALIDATOR +com.google.android.material.slider.BaseSlider: int getAccessibilityFocusedVirtualViewId() +wangdaye.com.geometricweather.R$integer: int cpv_default_anim_swoop_duration +wangdaye.com.geometricweather.R$styleable: int MenuItem_iconTintMode +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setScrollBarHidden(boolean) +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Linear +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String Phrase_60 +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowColor +cyanogenmod.providers.CMSettings$System: java.util.Map VALIDATORS +okio.SegmentedByteString: okio.ByteString hmacSha1(okio.ByteString) +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: ObservableSampleWithObservable$SampleMainObserver(io.reactivex.Observer,io.reactivex.ObservableSource) +androidx.appcompat.R$styleable: int MenuGroup_android_checkableBehavior +cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(android.os.Parcel,cyanogenmod.app.Profile$1) +androidx.coordinatorlayout.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_selected +james.adaptiveicon.R$color: int switch_thumb_normal_material_light +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder addConverterFactory(retrofit2.Converter$Factory) +androidx.fragment.R$layout +com.jaredrummler.android.colorpicker.R$string: int summary_collapsed_preference_list +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_titleTextStyle +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView_DropDown +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onError(java.lang.Throwable) +com.google.android.material.R$id: int accessibility_custom_action_21 +com.google.android.material.slider.BaseSlider: void setTickActiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$color: int abc_primary_text_disable_only_material_dark +james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlHighlight +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void dispose() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setZh_TW(java.lang.String) +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSteps +androidx.appcompat.app.ActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +androidx.loader.content.Loader: void unregisterOnLoadCanceledListener(androidx.loader.content.Loader$OnLoadCanceledListener) +wangdaye.com.geometricweather.R$attr: int thickness +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_textAllCaps +okhttp3.CookieJar: java.util.List loadForRequest(okhttp3.HttpUrl) +androidx.lifecycle.Lifecycling$1: Lifecycling$1(androidx.lifecycle.LifecycleEventObserver) +com.google.android.material.R$styleable: int ConstraintSet_layout_editor_absoluteX +cyanogenmod.platform.Manifest$permission: java.lang.String THIRD_PARTY_KEYGUARD +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogCornerRadius +io.reactivex.Observable: io.reactivex.Observable scanWith(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String readKey(android.database.Cursor,int) +com.xw.repo.bubbleseekbar.R$color: int secondary_text_disabled_material_light +androidx.preference.R$attr: int tickMark +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_summaryOn +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setBootanimation(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: java.util.List brands +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_textOn +okio.Buffer: java.util.List segmentSizes() +androidx.appcompat.R$id: int accessibility_custom_action_13 +com.google.android.material.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +okio.Buffer: long readAll(okio.Sink) +com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyle +james.adaptiveicon.R$attr: int textAppearanceSearchResultSubtitle +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteByKey +cyanogenmod.providers.CMSettings$System: java.lang.String NAV_BUTTONS +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String weatherSource +wangdaye.com.geometricweather.R$styleable: int MenuItem_iconTint +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getThunderstorm() +com.google.android.material.datepicker.RangeDateSelector: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +james.adaptiveicon.R$drawable: int abc_tab_indicator_material +com.jaredrummler.android.colorpicker.R$color: int background_floating_material_light +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_addNotificationGroup +androidx.preference.R$styleable: int ActionBar_subtitleTextStyle +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemRippleColor +cyanogenmod.providers.CMSettings$Secure: java.lang.String SYS_PROP_CM_SETTING_VERSION +com.google.android.material.bottomnavigation.BottomNavigationView: void setLabelVisibilityMode(int) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$layout: int expand_button +wangdaye.com.geometricweather.background.receiver.widget.WidgetWeekProvider: WidgetWeekProvider() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView_DropDown +retrofit2.OkHttpCall: okhttp3.Call getRawCall() +com.turingtechnologies.materialscrollbar.R$attr: int windowFixedHeightMinor +androidx.appcompat.R$attr: int contentInsetEndWithActions +okhttp3.internal.cache.DiskLruCache: int valueCount +wangdaye.com.geometricweather.R$layout: int material_radial_view_group +com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_top_inner_color +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean isEntityUpdateable() +androidx.constraintlayout.widget.Constraints +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onError(java.lang.Throwable) +androidx.viewpager2.R$id: int tag_transition_group +androidx.lifecycle.ComputableLiveData$3: void run() +androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +androidx.drawerlayout.R$styleable: int[] GradientColor +androidx.fragment.app.FragmentTabHost$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$bool: int mtrl_btn_textappearance_all_caps +androidx.constraintlayout.widget.R$layout: int abc_screen_simple +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onError(java.lang.Throwable) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void innerError(java.lang.Throwable) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_RINGTONE +androidx.preference.R$id: int accessibility_custom_action_16 +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +com.jaredrummler.android.colorpicker.R$bool: int abc_config_actionMenuItemAllCaps +androidx.constraintlayout.widget.R$styleable: int Constraint_android_minHeight +com.turingtechnologies.materialscrollbar.R$attr: int fabCradleRoundedCornerRadius +com.xw.repo.bubbleseekbar.R$attr: int bsb_show_thumb_text +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Menu +com.google.gson.FieldNamingPolicy$2: java.lang.String translateName(java.lang.reflect.Field) +io.reactivex.Observable: io.reactivex.Observable concatMapSingle(io.reactivex.functions.Function,int) +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_registerChangeListener +androidx.constraintlayout.widget.R$drawable: int notification_bg +wangdaye.com.geometricweather.db.entities.WeatherEntity: long getTimeStamp() +androidx.preference.R$style: int Base_V7_Widget_AppCompat_Toolbar +com.google.android.material.R$string: int mtrl_picker_date_header_selected +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver[] observers +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_shapeAppearanceOverlay +androidx.activity.R$attr: int fontWeight +com.google.android.material.R$id: int edit_query +com.google.android.material.R$attr: int borderlessButtonStyle +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_pressed_z +retrofit2.BuiltInConverters$StreamingResponseBodyConverter: java.lang.Object convert(java.lang.Object) +org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType valueOf(java.lang.String) +androidx.hilt.R$id: int italic +com.google.android.material.R$styleable: int PopupWindow_android_popupAnimationStyle +okio.RealBufferedSink: long writeAll(okio.Source) +androidx.constraintlayout.widget.R$attr: int onCross +androidx.viewpager.R$dimen: int notification_big_circle_margin +androidx.preference.R$attr: int stackFromEnd +com.jaredrummler.android.colorpicker.R$attr: int alertDialogTheme +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_height_material +com.google.android.material.R$styleable: int[] Tooltip +okhttp3.internal.Util: void checkOffsetAndCount(long,long,long) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSnowPrecipitationProbability() +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabAlignmentMode +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Spinner +okhttp3.OkHttpClient$1: okhttp3.internal.connection.StreamAllocation streamAllocation(okhttp3.Call) +wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Dialog +cyanogenmod.platform.R$bool: R$bool() +com.google.gson.internal.LinkedTreeMap: int size() +androidx.appcompat.widget.SearchView: void setOnSuggestionListener(androidx.appcompat.widget.SearchView$OnSuggestionListener) +androidx.viewpager.widget.PagerTitleStrip: void setGravity(int) +android.didikee.donate.R$style: int Widget_AppCompat_RatingBar_Indicator +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeCloudCover(java.lang.Integer) +androidx.appcompat.widget.AppCompatImageButton +com.jaredrummler.android.colorpicker.R$attr: int backgroundStacked +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitationProbability +com.xw.repo.bubbleseekbar.R$anim +androidx.constraintlayout.widget.ConstraintLayout: void setMaxHeight(int) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar +androidx.recyclerview.widget.RecyclerView: void setRecyclerListener(androidx.recyclerview.widget.RecyclerView$RecyclerListener) +android.didikee.donate.R$color: int material_grey_900 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_chainUseRtl +cyanogenmod.app.CMContextConstants$Features: java.lang.String PARTNER +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Line2 +james.adaptiveicon.R$dimen: int abc_text_size_button_material +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerNext() +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int sourceMode +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindDirection +okhttp3.internal.http2.Http2Connection: long bytesLeftInWriteWindow +androidx.lifecycle.ReportFragment: void dispatch(android.app.Activity,androidx.lifecycle.Lifecycle$Event) +androidx.appcompat.R$attr: int controlBackground +com.google.android.material.R$color: int design_default_color_error +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxBackgroundMode +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView_DropDown +androidx.constraintlayout.widget.R$id: int aligned +com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +androidx.preference.R$styleable: int ViewBackgroundHelper_backgroundTint +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_editTextPreferenceStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm25(java.lang.String) +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$id: int asConfigured +okhttp3.internal.http2.Http2: java.lang.String[] FLAGS +androidx.preference.R$styleable: int AppCompatTheme_switchStyle +androidx.constraintlayout.widget.R$styleable: int ActionBar_title +okhttp3.internal.http2.Huffman$Node: int terminalBits +com.google.android.material.button.MaterialButtonToggleGroup: void removeOnButtonCheckedListener(com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer wetBulbTemperature +androidx.recyclerview.R$attr: int fontProviderFetchTimeout +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingRight +cyanogenmod.externalviews.KeyguardExternalView$5: cyanogenmod.externalviews.KeyguardExternalView this$0 +com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_normal +com.turingtechnologies.materialscrollbar.R$id: int smallLabel +androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +com.jaredrummler.android.colorpicker.R$id: int actions +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_divider_material +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +retrofit2.converter.gson.GsonResponseBodyConverter: java.lang.Object convert(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: int UnitType +com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_android_textAppearance +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_search_api_material +androidx.core.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$id: int tag_icon_top +okhttp3.Request: okhttp3.Headers headers +com.github.rahatarmanahmed.cpv.CircularProgressView$1 +cyanogenmod.providers.CMSettings$Secure: java.lang.String RING_HOME_BUTTON_BEHAVIOR +com.turingtechnologies.materialscrollbar.R$id: int container +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPopupWindowStyle +retrofit2.ParameterHandler$Body: java.lang.reflect.Method method +com.google.gson.JsonParseException +com.xw.repo.bubbleseekbar.R$color: int abc_tint_switch_track +wangdaye.com.geometricweather.R$color: int background_floating_material_dark +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_slideLockscreenIn +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button +androidx.viewpager2.widget.ViewPager2: int getCurrentItem() +android.didikee.donate.R$attr: int divider +com.google.android.material.R$styleable: int AppCompatImageView_tint +androidx.hilt.R$id: int accessibility_custom_action_20 +androidx.appcompat.widget.ActionMenuView: ActionMenuView(android.content.Context,android.util.AttributeSet) +org.greenrobot.greendao.AbstractDao: java.lang.String getTablename() +com.google.android.material.textfield.TextInputLayout: void setSuffixTextColor(android.content.res.ColorStateList) +androidx.preference.R$styleable: int PreferenceTheme_dialogPreferenceStyle +androidx.constraintlayout.widget.R$dimen: int abc_dialog_padding_material +com.google.android.material.R$attr: int layout_scrollInterpolator +wangdaye.com.geometricweather.R$attr: int editTextPreferenceStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: java.lang.Float value +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction +wangdaye.com.geometricweather.R$attr: int cpv_startAngle +androidx.appcompat.R$color: int abc_btn_colored_borderless_text_material +james.adaptiveicon.R$styleable: int AppCompatTextView_fontFamily +androidx.swiperefreshlayout.R$id: int notification_main_column_container +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather weather +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_enqueueLiveLockScreen +androidx.appcompat.widget.AppCompatRadioButton: void setButtonDrawable(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: double Value +androidx.lifecycle.SavedStateViewModelFactory: java.lang.Class[] ANDROID_VIEWMODEL_SIGNATURE +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +okhttp3.MultipartBody: MultipartBody(okio.ByteString,okhttp3.MediaType,java.util.List) +com.jaredrummler.android.colorpicker.R$dimen: int compat_button_padding_horizontal_material +androidx.lifecycle.extensions.R$id: int right_icon +james.adaptiveicon.R$attr: int windowFixedWidthMajor +wangdaye.com.geometricweather.R$id: int item_details_title +androidx.preference.R$styleable: int AppCompatTheme_imageButtonStyle +android.didikee.donate.R$dimen: int notification_big_circle_margin +cyanogenmod.themes.IThemeService$Stub$Proxy +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onModeChanged(boolean) +androidx.activity.R$dimen: int compat_button_padding_horizontal_material +androidx.hilt.work.R$styleable: int FontFamily_fontProviderPackage +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarStyle +cyanogenmod.app.IPartnerInterface: boolean setZenMode(int) +androidx.appcompat.R$styleable: int Toolbar_menu +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX brandInfo +retrofit2.OkHttpCall$1: OkHttpCall$1(retrofit2.OkHttpCall,retrofit2.Callback) +androidx.drawerlayout.R$string: R$string() +androidx.lifecycle.HasDefaultViewModelProviderFactory: androidx.lifecycle.ViewModelProvider$Factory getDefaultViewModelProviderFactory() +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_seekbar_material +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: void setUnit(java.lang.String) +android.didikee.donate.R$styleable: int MenuItem_android_enabled +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getUniqueDeviceId() +retrofit2.RequestFactory: retrofit2.ParameterHandler[] parameterHandlers +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: okio.Timeout timeout() +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_fontFamily +james.adaptiveicon.R$attr: int commitIcon +com.google.android.material.R$styleable: int[] ViewStubCompat +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void run() +com.github.rahatarmanahmed.cpv.R$string +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontWeight +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_transitionPathRotate +wangdaye.com.geometricweather.R$styleable: int[] MaterialButton +androidx.lifecycle.SavedStateHandleController$1: SavedStateHandleController$1(androidx.lifecycle.Lifecycle,androidx.savedstate.SavedStateRegistry) +android.didikee.donate.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language KOREAN +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onSearchRequested() +com.bumptech.glide.load.engine.GlideException: java.lang.String getMessage() +com.google.android.material.R$dimen: int design_tab_scrollable_min_width +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String LocalizedName +androidx.lifecycle.LifecycleRegistry: void addObserver(androidx.lifecycle.LifecycleObserver) +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_liftable +androidx.customview.R$dimen: int compat_button_padding_vertical_material +androidx.preference.R$dimen: int abc_edit_text_inset_top_material +androidx.constraintlayout.widget.R$attr: int goIcon +com.google.android.material.R$attr: int backgroundTint +androidx.constraintlayout.widget.R$id: int message +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setNighttimeTemperature(int) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_windowAnimationStyle +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver +wangdaye.com.geometricweather.R$attr: int flow_horizontalGap +androidx.preference.R$styleable: int AlertDialog_multiChoiceItemLayout +com.jaredrummler.android.colorpicker.R$attr: int splitTrack +com.xw.repo.bubbleseekbar.R$string: R$string() +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX aqi +wangdaye.com.geometricweather.R$color: int material_on_background_emphasis_medium +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display2 +androidx.core.content.FileProvider +androidx.appcompat.R$id: int screen +okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,long,okio.BufferedSource) +cyanogenmod.externalviews.KeyguardExternalView: void onKeyguardDismissed() +android.didikee.donate.R$attr: int radioButtonStyle +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date getPublishDate() +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onComplete() +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason INITIALIZE +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Icon +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String admin +retrofit2.OkHttpCall: okhttp3.Call$Factory callFactory +okhttp3.RealCall: boolean executed +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.util.Date getDate() +com.turingtechnologies.materialscrollbar.R$id: int list_item +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer cloudCover +james.adaptiveicon.R$attr: int actionModeCloseButtonStyle +okhttp3.internal.http2.Http2Connection$Listener$1: Http2Connection$Listener$1() +com.turingtechnologies.materialscrollbar.R$attr: int contentDescription +cyanogenmod.providers.DataUsageContract: java.lang.String CONTENT_ITEM_TYPE +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTag +com.google.android.material.R$styleable: int MenuGroup_android_visible +android.didikee.donate.R$style: int Widget_AppCompat_SearchView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindSpeedStart(java.lang.String) +androidx.lifecycle.ClassesInfoCache$MethodReference: ClassesInfoCache$MethodReference(int,java.lang.reflect.Method) +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_contrast +wangdaye.com.geometricweather.R$attr: int staggered +androidx.hilt.lifecycle.R$styleable: int GradientColorItem_android_color +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_track_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$attr: int gapBetweenBars +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWeatherText +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void dispose() +androidx.dynamicanimation.R$id: int icon_group +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments +wangdaye.com.geometricweather.R$string: int feedback_location_failed +org.greenrobot.greendao.DaoException: DaoException(java.lang.String) +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1 +okhttp3.CertificatePinner$Pin: CertificatePinner$Pin(java.lang.String,java.lang.String) +com.xw.repo.bubbleseekbar.R$id: int checkbox +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_toggle_margin_bottom +androidx.constraintlayout.widget.R$attr: int buttonGravity +androidx.lifecycle.Transformations +cyanogenmod.app.Profile: int compareTo(java.lang.Object) +org.greenrobot.greendao.AbstractDaoSession: java.lang.Object load(java.lang.Class,java.lang.Object) +wangdaye.com.geometricweather.main.layouts.TrendHorizontalLinearLayoutManager +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_selectableItemBackground +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25 pm25 +androidx.appcompat.R$attr: int popupWindowStyle +androidx.work.R$id: int accessibility_custom_action_2 +androidx.transition.R$drawable: int notification_template_icon_bg +androidx.preference.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$string: int settings_title_permanent_service +com.google.android.material.R$attr: int drawableTopCompat +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) +androidx.lifecycle.Transformations$1: Transformations$1(androidx.lifecycle.MediatorLiveData,androidx.arch.core.util.Function) +retrofit2.ParameterHandler$FieldMap: java.lang.reflect.Method method +androidx.lifecycle.MediatorLiveData +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String LocalizedType +android.didikee.donate.R$attr: int textAllCaps +android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog_Alert +androidx.work.WorkInfo$State +androidx.appcompat.R$styleable: int[] PopupWindow +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Tab +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +io.reactivex.internal.disposables.DisposableHelper: void reportDisposableSet() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_PopupMenu +com.google.android.material.textfield.TextInputLayout: void setEndIconContentDescription(java.lang.CharSequence) +androidx.recyclerview.widget.RecyclerView: boolean getPreserveFocusAfterLayout() +retrofit2.RequestBuilder: void addPart(okhttp3.Headers,okhttp3.RequestBody) +wangdaye.com.geometricweather.R$attr: int actionMenuTextAppearance +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean cancelled +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline1 +android.didikee.donate.R$styleable: int AlertDialog_listLayout +com.google.android.material.slider.RangeSlider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_PopupMenu +androidx.appcompat.R$style: int Widget_AppCompat_PopupMenu wangdaye.com.geometricweather.db.entities.WeatherEntity: void setVisibility(java.lang.Float) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean visibility -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowDy -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_AU -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String toValue(java.util.List) -wangdaye.com.geometricweather.R$layout: int item_pollen_daily -com.google.android.material.R$layout: int material_chip_input_combo -android.didikee.donate.R$id: int none -okio.ByteString: okio.ByteString substring(int) -okhttp3.ConnectionPool: int pruneAndGetAllocationCount(okhttp3.internal.connection.RealConnection,long) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_iconTint -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -com.bumptech.glide.integration.okhttp.R$attr: int fontWeight -android.didikee.donate.R$drawable: int abc_list_selector_background_transition_holo_light -james.adaptiveicon.R$styleable: int TextAppearance_android_textColorHint -wangdaye.com.geometricweather.R$attr: int constraints -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: void setFrom(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCopyDrawable -android.didikee.donate.R$string -cyanogenmod.profiles.BrightnessSettings: boolean mDirty -androidx.activity.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.R$id: int custom -io.reactivex.internal.observers.DeferredScalarObserver: void onError(java.lang.Throwable) -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line1_tail_interpolator -androidx.lifecycle.extensions.R$layout: int notification_action -com.google.android.material.R$styleable: int Constraint_flow_firstHorizontalStyle -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: boolean isDisposed() -wangdaye.com.geometricweather.R$attr: int labelVisibilityMode -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: AccuDailyResult$DailyForecasts() -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getBackgroundDrawable() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_controlBackground -retrofit2.Platform$Android: java.util.concurrent.Executor defaultCallbackExecutor() -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBarLayout_android_layout_gravity -android.didikee.donate.R$attr: int spinBars -com.google.android.material.R$attr: int contentInsetLeft -wangdaye.com.geometricweather.R$id: int widget_week_week_2 -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onAnimationReset() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: AccuDailyResult$DailyForecasts$Temperature$Maximum() -okio.Buffer: long readDecimalLong() -androidx.constraintlayout.motion.widget.MotionLayout: void setInteractionEnabled(boolean) -wangdaye.com.geometricweather.R$attr: int chipCornerRadius -androidx.fragment.R$dimen: int notification_right_side_padding_top -androidx.hilt.R$dimen: int notification_media_narrow_margin -androidx.preference.R$style: int Widget_AppCompat_Light_ActivityChooserView -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex -androidx.appcompat.widget.AppCompatCheckedTextView: void setCheckMarkDrawable(int) -james.adaptiveicon.R$attr: int windowMinWidthMinor -com.google.android.material.slider.RangeSlider: float getValueTo() -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.R$styleable: int DialogPreference_negativeButtonText -androidx.constraintlayout.widget.R$color: int abc_primary_text_material_dark -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -com.turingtechnologies.materialscrollbar.R$style: int Platform_V25_AppCompat_Light -cyanogenmod.profiles.RingModeSettings: RingModeSettings() -androidx.preference.R$styleable: int View_android_theme -androidx.transition.R$dimen: int compat_notification_large_icon_max_height -androidx.preference.R$attr: int drawableLeftCompat -androidx.constraintlayout.widget.R$id: int right -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable -androidx.appcompat.widget.ActionBarOverlayLayout: void setWindowTitle(java.lang.CharSequence) -com.bumptech.glide.R$drawable: int notification_template_icon_low_bg -android.didikee.donate.R$style: int Base_Widget_AppCompat_SeekBar -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onNext(java.lang.Object) -com.google.android.material.button.MaterialButton: void setPressed(boolean) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_holo_dark -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_pivotAnchor -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display4 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String icon -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCustomSize(int) -androidx.appcompat.widget.AppCompatImageView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -androidx.fragment.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$layout: int widget_day_symmetry -androidx.work.R$attr: int fontStyle -wangdaye.com.geometricweather.R$dimen: int abc_cascading_menus_min_smallest_width -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_minWidth -androidx.core.R$id: int chronometer -androidx.fragment.R$id: int accessibility_custom_action_0 -androidx.drawerlayout.R$id: int chronometer -okio.Buffer$2 -com.google.android.material.R$styleable: int[] KeyTimeCycle -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory[] values() -com.github.rahatarmanahmed.cpv.R$color: R$color() -wangdaye.com.geometricweather.R$drawable: int abc_btn_default_mtrl_shape -com.google.android.material.R$dimen: int fastscroll_default_thickness -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog -com.google.android.material.button.MaterialButton: void setIconTintResource(int) -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean isCanceled() -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeManager sInstance -android.didikee.donate.R$dimen: int abc_action_bar_overflow_padding_end_material -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onError(java.lang.Throwable) -androidx.customview.R$styleable: int GradientColor_android_startX -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.chip.Chip: void setChipBackgroundColor(android.content.res.ColorStateList) -com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getBackgroundTintMode() -okhttp3.OkHttpClient$Builder -com.xw.repo.bubbleseekbar.R$color: int ripple_material_dark -com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorColors(int[]) -james.adaptiveicon.R$dimen: int abc_text_size_headline_material -wangdaye.com.geometricweather.R$anim: int fragment_open_exit -androidx.constraintlayout.widget.R$attr: int colorControlHighlight -com.xw.repo.bubbleseekbar.R$dimen: int notification_right_icon_size -androidx.lifecycle.ReportFragment: void dispatchResume(androidx.lifecycle.ReportFragment$ActivityInitializationListener) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_logo -androidx.lifecycle.LiveData$ObserverWrapper: LiveData$ObserverWrapper(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) -com.google.android.material.R$attr: int chipIconVisible -wangdaye.com.geometricweather.R$id: int ragweedIcon -com.google.android.material.R$dimen: int mtrl_card_checked_icon_size -okhttp3.Response$Builder: okhttp3.Response$Builder sentRequestAtMillis(long) -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_LOW -com.google.android.material.R$dimen: int mtrl_calendar_header_divider_thickness -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalGap -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean getWeather() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setSunSetDate(java.util.Date) -androidx.viewpager2.R$id: int notification_main_column -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationX -com.jaredrummler.android.colorpicker.R$attr: int buttonTintMode -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -com.google.android.material.R$layout: int design_navigation_item -com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetTop -com.bumptech.glide.R$attr: int fontVariationSettings -io.reactivex.internal.util.ExceptionHelper$Termination: long serialVersionUID -com.google.android.material.slider.Slider: void setTickVisible(boolean) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setCo(java.lang.Float) -com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabBarStyle -androidx.lifecycle.LiveData$ObserverWrapper: boolean isAttachedTo(androidx.lifecycle.LifecycleOwner) -com.google.android.material.R$styleable: int Slider_haloColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: java.util.List getValue() -wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -com.jaredrummler.android.colorpicker.R$id: int switchWidget -androidx.viewpager2.R$styleable: int[] GradientColorItem -com.turingtechnologies.materialscrollbar.R$attr: int windowFixedWidthMajor -androidx.coordinatorlayout.R$color: R$color() -wangdaye.com.geometricweather.R$drawable: int abc_textfield_default_mtrl_alpha -james.adaptiveicon.R$id: int activity_chooser_view_content -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_NoActionBar_Bridge -androidx.constraintlayout.widget.R$attr: int queryHint +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String description +androidx.appcompat.R$attr: int thickness +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_ttcIndex +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +com.google.android.material.R$styleable: int Spinner_android_dropDownWidth +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night +wangdaye.com.geometricweather.R$array: int duration_unit_voices +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_hide_bubble +android.didikee.donate.R$layout: int notification_action +androidx.loader.R$color +okhttp3.Request$Builder: okhttp3.Headers$Builder headers +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.Window access$200(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean current +androidx.constraintlayout.widget.R$styleable: int ActionBar_icon +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light +okhttp3.internal.cache.DiskLruCache: boolean isClosed() +cyanogenmod.externalviews.KeyguardExternalView$3: KeyguardExternalView$3(cyanogenmod.externalviews.KeyguardExternalView,int,int,int,int,boolean,android.graphics.Rect) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: AccuAlertResult$Color() +android.didikee.donate.R$color: int secondary_text_default_material_dark +androidx.preference.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.activity.R$id: int tag_transition_group +cyanogenmod.themes.IThemeService$Stub +com.jaredrummler.android.colorpicker.R$anim: int abc_tooltip_exit +androidx.preference.R$styleable: int ActionMode_subtitleTextStyle +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setO3(java.lang.Float) +androidx.viewpager2.R$id: int tag_accessibility_actions +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onError(java.lang.Throwable) +androidx.appcompat.widget.AppCompatRadioButton: void setSupportButtonTintMode(android.graphics.PorterDuff$Mode) +androidx.dynamicanimation.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.db.entities.HistoryEntity: int daytimeTemperature +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams access$300(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.R$styleable: int PropertySet_android_visibility +androidx.lifecycle.Transformations$3: Transformations$3(androidx.lifecycle.MediatorLiveData) +okhttp3.Response: java.lang.String toString() +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomSheet_Modal +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_GLOBAL +cyanogenmod.providers.CMSettings$2: boolean validate(java.lang.String) +android.didikee.donate.R$style: int Base_DialogWindowTitle_AppCompat +androidx.dynamicanimation.R$styleable: int GradientColorItem_android_offset +cyanogenmod.profiles.RingModeSettings: java.lang.String getValue() +android.didikee.donate.R$styleable: int MenuGroup_android_orderInCategory +okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: Http2Connection$ReaderRunnable$3(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval getInstance(java.lang.String) +com.jaredrummler.android.colorpicker.R$layout: int abc_screen_content_include +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar_Indicator +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context) +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: java.util.concurrent.Callable bufferSupplier +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX getTemperature() +androidx.preference.internal.PreferenceImageView: void setMaxWidth(int) +androidx.preference.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionDropDownStyle +androidx.cardview.R$dimen: int cardview_default_elevation +com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_title_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isShow +androidx.coordinatorlayout.R$styleable: int[] CoordinatorLayout_Layout +wangdaye.com.geometricweather.R$layout: int item_weather_daily_uv +com.google.android.material.R$attr: int tabTextAppearance +com.google.android.material.R$styleable: int MaterialButton_iconTint +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: int status +cyanogenmod.externalviews.KeyguardExternalView$4 +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_headerBackground +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation Elevation +com.google.android.material.R$styleable: int GradientColor_android_endX +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean tryOnError(java.lang.Throwable) +james.adaptiveicon.R$styleable: int ActionMode_backgroundSplit +cyanogenmod.app.CMContextConstants: java.lang.String CM_STATUS_BAR_SERVICE +androidx.lifecycle.Lifecycling: androidx.lifecycle.GeneratedAdapter createGeneratedAdapter(java.lang.reflect.Constructor,java.lang.Object) +com.google.android.material.R$styleable: int LinearLayoutCompat_android_baselineAligned +com.google.android.material.R$dimen: int design_fab_size_mini +okio.RealBufferedSink +com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Dialog +com.google.android.material.R$styleable: int TextAppearance_android_textColorHint +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_background +com.google.android.material.R$dimen: int material_text_view_test_line_height_override +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_adjustable +androidx.constraintlayout.widget.R$layout: int abc_screen_content_include +retrofit2.RequestFactory: java.lang.String httpMethod +android.didikee.donate.R$styleable: int AppCompatTheme_listPopupWindowStyle +com.google.android.material.R$styleable: int Layout_layout_constraintStart_toEndOf +com.turingtechnologies.materialscrollbar.R$attr: int enforceMaterialTheme +okio.RealBufferedSource: byte[] readByteArray(long) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextStyle +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.util.concurrent.CompletableFuture adapt(retrofit2.Call) +cyanogenmod.app.CustomTile: java.lang.String toString() +android.didikee.donate.R$attr: int initialActivityCount +androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$dimen: int design_fab_translation_z_pressed +com.google.android.material.chip.Chip: void setChipMinHeightResource(int) +androidx.lifecycle.extensions.R$styleable: int[] GradientColorItem +com.turingtechnologies.materialscrollbar.R$attr: int chipSpacingHorizontal +com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreference io.reactivex.internal.disposables.DisposableHelper: boolean replace(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) -androidx.appcompat.R$styleable: int[] CompoundButton -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_elevation -androidx.dynamicanimation.R$color -okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String lastModifiedString -androidx.hilt.work.R$color: int notification_icon_bg_color -okio.DeflaterSink: okio.Timeout timeout() -io.reactivex.internal.util.EmptyComponent: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderTitle -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_popupTheme -cyanogenmod.app.suggest.IAppSuggestProvider$Stub -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -wangdaye.com.geometricweather.R$drawable: int shortcuts_rain -io.reactivex.internal.observers.BlockingObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver) -com.google.android.material.R$id: int textSpacerNoButtons -wangdaye.com.geometricweather.R$integer: int app_bar_elevation_anim_duration -com.google.android.material.R$style: int Base_AlertDialog_AppCompat_Light -androidx.loader.R$styleable: int GradientColor_android_type -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_rebuildResourceCache -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -com.xw.repo.bubbleseekbar.R$attr: int textColorSearchUrl -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_CREATE -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: AccuDailyResult$DailyForecasts$DegreeDaySummary() -androidx.appcompat.R$attr: int expandActivityOverflowButtonDrawable -wangdaye.com.geometricweather.R$attr: int region_widthMoreThan -okhttp3.internal.platform.AndroidPlatform: void logCloseableLeak(java.lang.String,java.lang.Object) -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_background_transition_holo_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: double Value -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean -com.google.android.material.R$id: int unchecked -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$color: int error_color_material_light -androidx.preference.R$styleable: int ActionMode_background -james.adaptiveicon.R$styleable: int AppCompatTheme_dialogTheme -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_22 -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar -okio.BufferedSink: okio.BufferedSink write(byte[],int,int) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW_FLURRIES -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Line2 -com.jaredrummler.android.colorpicker.R$drawable: int notification_template_icon_bg -com.google.android.material.R$dimen: int mtrl_fab_min_touch_target -okhttp3.internal.tls.OkHostnameVerifier: java.util.List getSubjectAltNames(java.security.cert.X509Certificate,int) -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_curveFit -android.didikee.donate.R$color: int ripple_material_light -androidx.constraintlayout.helper.widget.Layer: void setScaleX(float) -com.turingtechnologies.materialscrollbar.R$drawable: int mtrl_tabs_default_indicator -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DialogWhenLarge -androidx.coordinatorlayout.R$layout: int notification_template_part_time -com.jaredrummler.android.colorpicker.R$styleable: int[] RecycleListView -wangdaye.com.geometricweather.R$styleable: int PropertySet_motionProgress -androidx.constraintlayout.widget.R$attr: int flow_padding -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.http.HttpCodec httpCodec -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Menu -cyanogenmod.weatherservice.ServiceRequestResult$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.appcompat.R$drawable: int abc_ic_ab_back_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: void setIcon(java.lang.String) -wangdaye.com.geometricweather.R$integer: R$integer() -android.didikee.donate.R$styleable: int ActionMode_subtitleTextStyle -com.google.android.material.chip.Chip: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.functions.Function mapper -com.google.android.material.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ -com.turingtechnologies.materialscrollbar.R$attr: int chipStandaloneStyle -com.google.android.material.R$attr: int thumbRadius -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_switchTextOff -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast build() -cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileManager sProfileManagerInstance -james.adaptiveicon.R$styleable: int[] TextAppearance -androidx.swiperefreshlayout.R$drawable: int notification_bg_normal -androidx.appcompat.R$dimen: int abc_action_bar_content_inset_material -okhttp3.internal.platform.Jdk9Platform: java.lang.reflect.Method setProtocolMethod -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getAlertList() -wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Bottom_Left -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setCloudCover(java.lang.Integer) -androidx.appcompat.widget.AppCompatTextView: void setAutoSizeTextTypeWithDefaults(int) -wangdaye.com.geometricweather.R$drawable: int abc_ic_voice_search_api_material -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_subtitle -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void request(long) -com.xw.repo.bubbleseekbar.R$id: int expand_activities_button -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: int IconCode -androidx.fragment.R$drawable: int notify_panel_notification_icon_bg -com.xw.repo.bubbleseekbar.R$attr: int background -com.google.android.material.R$styleable: int ActionBar_displayOptions -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderToggleButton -android.didikee.donate.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -com.google.android.material.R$styleable: int Constraint_layout_constrainedHeight -com.turingtechnologies.materialscrollbar.R$attr: int chipBackgroundColor -retrofit2.http.HTTP: java.lang.String method() -androidx.loader.R$styleable: int GradientColor_android_gradientRadius -androidx.constraintlayout.widget.R$dimen: int abc_control_corner_material -wangdaye.com.geometricweather.R$styleable: int[] CollapsingToolbarLayout_Layout -androidx.viewpager.R$id: int action_image -wangdaye.com.geometricweather.R$id: int moldTitle -androidx.fragment.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.R$dimen: int design_fab_border_width -androidx.appcompat.R$string: int abc_menu_alt_shortcut_label -james.adaptiveicon.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -androidx.appcompat.R$color: int background_floating_material_dark -wangdaye.com.geometricweather.R$string: int hide_bottom_view_on_scroll_behavior -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int sourceMode -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy DROP -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SearchView_ActionBar -com.xw.repo.bubbleseekbar.R$attr: int bsb_seek_by_section -wangdaye.com.geometricweather.R$attr: int reverseLayout -com.bumptech.glide.load.HttpException: HttpException(java.lang.String,int,java.lang.Throwable) -okhttp3.internal.http.HttpDate$1: java.lang.Object initialValue() -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Title -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetRight -okhttp3.EventListener$Factory -androidx.transition.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$string: int done -androidx.swiperefreshlayout.R$id: int text -com.google.android.material.textfield.TextInputEditText: com.google.android.material.textfield.TextInputLayout getTextInputLayout() -androidx.activity.R$id: int action_divider -android.didikee.donate.R$drawable: int abc_ic_menu_share_mtrl_alpha -com.google.android.material.R$styleable: int AppBarLayoutStates_state_collapsible -wangdaye.com.geometricweather.R$drawable: int ic_github_light -android.didikee.donate.R$styleable: int[] SearchView -android.didikee.donate.R$attr: int suggestionRowLayout -androidx.recyclerview.R$id: int action_image -okhttp3.internal.http2.Http2Connection: void pushHeadersLater(int,java.util.List,boolean) -androidx.lifecycle.Lifecycling: int resolveObserverCallbackType(java.lang.Class) -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_material_light -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle -james.adaptiveicon.R$id: int icon_group -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_framePosition -androidx.legacy.coreutils.R$styleable: int[] GradientColorItem -okio.ByteString: void write(okio.Buffer) -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_visible -com.jaredrummler.android.colorpicker.R$attr: int switchStyle -com.google.android.material.R$styleable: int AppCompatTheme_listPopupWindowStyle -retrofit2.ParameterHandler$PartMap: java.lang.String transferEncoding -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature RealFeelTemperature -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_30 -com.bumptech.glide.R$id: int action_divider -cyanogenmod.hardware.DisplayMode: int describeContents() -wangdaye.com.geometricweather.R$string: int key_precipitation_unit -okhttp3.ConnectionSpec$Builder: boolean tls -androidx.preference.R$color: int abc_btn_colored_borderless_text_material -james.adaptiveicon.R$dimen: int abc_switch_padding -android.support.v4.os.ResultReceiver$1: android.support.v4.os.ResultReceiver[] newArray(int) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixTextAppearance -wangdaye.com.geometricweather.R$attr: int layout_collapseMode -io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper DISPOSED -com.turingtechnologies.materialscrollbar.R$id: int submit_area -cyanogenmod.providers.ThemesContract -androidx.appcompat.R$attr: int fontProviderQuery -com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_enforceMaterialTheme -androidx.appcompat.R$styleable: int MenuItem_actionLayout -com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableCompat -okhttp3.internal.platform.Platform: int INFO -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle -androidx.preference.R$attr: int lineHeight -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeAppearanceOverlay -androidx.preference.R$dimen: int tooltip_corner_radius -okio.Buffer: okio.Buffer copyTo(okio.Buffer,long,long) -androidx.lifecycle.LiveData: void onInactive() -com.turingtechnologies.materialscrollbar.R$drawable: int design_ic_visibility -okhttp3.CertificatePinner: okio.ByteString sha1(java.security.cert.X509Certificate) -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_linearSeamless -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Body2 -com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getCurrentDrawable() -androidx.coordinatorlayout.R$styleable: int GradientColor_android_startY -com.google.android.material.R$styleable: int Transform_android_transformPivotX -cyanogenmod.profiles.ConnectionSettings: boolean mDirty -androidx.preference.R$attr: int actionModeStyle -com.google.android.material.R$attr: int strokeWidth -androidx.loader.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getWindChillTemperature() -com.xw.repo.bubbleseekbar.R$attr: int actionModeSelectAllDrawable -androidx.vectordrawable.R$styleable: int GradientColor_android_centerY -cyanogenmod.weatherservice.WeatherProviderService: void onRequestSubmitted(cyanogenmod.weatherservice.ServiceRequest) -wangdaye.com.geometricweather.R$styleable: int Transition_autoTransition -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Time -androidx.recyclerview.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -james.adaptiveicon.R$attr: int listDividerAlertDialog -io.reactivex.internal.util.EmptyComponent: void onSuccess(java.lang.Object) -androidx.constraintlayout.widget.R$anim: int abc_shrink_fade_out_from_bottom -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarSplitStyle -wangdaye.com.geometricweather.R$attr: int dragThreshold -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode -james.adaptiveicon.R$styleable: int TextAppearance_textAllCaps -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleTintMode -com.google.gson.stream.JsonReader: java.lang.String getPath() -androidx.appcompat.R$attr: int buttonPanelSideLayout -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_THEME_PACKAGE -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: AccuDailyResult$DailyForecasts$Day$WindGust$Speed() -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_top_inner_color -androidx.hilt.work.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String ID -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -com.google.android.material.slider.BaseSlider: int getTrackWidth() -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void drain() +androidx.vectordrawable.R$drawable: int notify_panel_notification_icon_bg +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setTemperatureUnit(int) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language PORTUGUESE_BR +okio.Okio: okio.BufferedSink buffer(okio.Sink) +androidx.appcompat.widget.AppCompatRadioButton: void setButtonDrawable(android.graphics.drawable.Drawable) +androidx.recyclerview.R$styleable: int RecyclerView_layoutManager +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: ThemeVersion$ThemeVersionImpl3() +com.google.android.material.R$style: int Widget_Design_CollapsingToolbar +wangdaye.com.geometricweather.common.basic.models.weather.Daily +androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.R$styleable: int MaterialTextView_android_textAppearance +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: boolean cancelled +cyanogenmod.weather.RequestInfo$Builder: java.lang.String mCityName +io.reactivex.internal.queue.SpscArrayQueue: int calcElementOffset(long,int) +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_TopLeftCut +androidx.preference.R$attr: int arrowShaftLength +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeWidth(float) +wangdaye.com.geometricweather.R$attr: int layout_editor_absoluteX +wangdaye.com.geometricweather.R$attr: int animationMode +android.didikee.donate.R$color: int switch_thumb_normal_material_dark +wangdaye.com.geometricweather.R$drawable: int abc_seekbar_tick_mark_material +com.google.android.material.R$dimen: int abc_action_bar_icon_vertical_padding_material +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_EXPORT_WITH_DES40_CBC_SHA +androidx.lifecycle.extensions.R$id: R$id() +wangdaye.com.geometricweather.R$color: int colorTextSubtitle_dark +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchTextAppearance +com.jaredrummler.android.colorpicker.R$id: int left +wangdaye.com.geometricweather.R$array: int week_widget_styles +wangdaye.com.geometricweather.R$id: int search_edit_frame +okhttp3.internal.http2.Http2Connection$4: int val$streamId +com.turingtechnologies.materialscrollbar.R$attr: int tickMarkTintMode +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +cyanogenmod.weather.CMWeatherManager: void cancelRequest(int) +com.google.android.material.R$attr: int itemMaxLines +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign +androidx.vectordrawable.animated.R$dimen: R$dimen() +com.google.android.material.textfield.TextInputLayout: void setCounterEnabled(boolean) +okhttp3.internal.http1.Http1Codec: okhttp3.Response$Builder readResponseHeaders(boolean) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: java.lang.Float max +androidx.work.R$dimen: int notification_big_circle_margin +cyanogenmod.hardware.CMHardwareManager: int FEATURE_SERIAL_NUMBER +okio.BufferedSink: okio.BufferedSink writeUtf8(java.lang.String,int,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum +androidx.constraintlayout.widget.R$id: int motion_base +androidx.constraintlayout.widget.R$attr: int pivotAnchor +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_numericShortcut +cyanogenmod.themes.ThemeChangeRequest: long mWallpaperId +android.didikee.donate.R$styleable: int ActionMode_titleTextStyle +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_backgroundTint +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderCerts +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListMenuView +androidx.constraintlayout.widget.R$styleable: int ActionMode_closeItemLayout +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float icePrecipitationProbability +com.google.android.material.R$color: int dim_foreground_material_dark +wangdaye.com.geometricweather.R$id: int tag_screen_reader_focusable +wangdaye.com.geometricweather.R$color: int abc_tint_seek_thumb +wangdaye.com.geometricweather.R$drawable: int abc_switch_thumb_material +com.turingtechnologies.materialscrollbar.R$attr: int counterTextAppearance +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean isDisposed() +com.turingtechnologies.materialscrollbar.R$styleable: int[] FontFamily +okhttp3.internal.http.StatusLine: int HTTP_CONTINUE +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterMaxLength +cyanogenmod.profiles.RingModeSettings: int describeContents() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogStyle +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float getPrecipitation(float) +androidx.preference.R$style: int Base_V26_Theme_AppCompat_Light +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer cloudCover +wangdaye.com.geometricweather.common.ui.activities.AlertActivity +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: MfWarningsResult$WarningTimelaps() +androidx.appcompat.widget.ActionBarOverlayLayout: void setOverlayMode(boolean) +android.didikee.donate.R$color: int bright_foreground_inverse_material_light +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +com.github.rahatarmanahmed.cpv.BuildConfig: int VERSION_CODE +okhttp3.Route: boolean equals(java.lang.Object) +james.adaptiveicon.R$id: int expand_activities_button +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginLeft +androidx.constraintlayout.widget.R$id: int flip +com.turingtechnologies.materialscrollbar.R$styleable: int[] StateListDrawableItem +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +james.adaptiveicon.R$attr: int navigationContentDescription +wangdaye.com.geometricweather.R$styleable: int Chip_chipIconEnabled +androidx.fragment.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.R$color: int abc_decor_view_status_guard_light +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_TextView +com.google.android.material.R$styleable: int AppCompatSeekBar_tickMark +androidx.preference.R$attr: int allowDividerBelow +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource +androidx.constraintlayout.widget.R$styleable: int Transform_android_translationZ +okhttp3.internal.http2.Http2Stream$FramingSink: void close() +okhttp3.internal.platform.Platform: void afterHandshake(javax.net.ssl.SSLSocket) +wangdaye.com.geometricweather.R$drawable: int abc_list_divider_mtrl_alpha +okhttp3.WebSocketListener: void onOpen(okhttp3.WebSocket,okhttp3.Response) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.functions.Function mapper +androidx.constraintlayout.widget.R$attr: int layout_constraintStart_toEndOf +com.google.android.material.R$styleable: int TextInputLayout_endIconTint +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type ownerType +androidx.appcompat.widget.Toolbar: int getContentInsetRight() +okhttp3.MultipartBody: int size() +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.R$id: int animateToEnd +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_deriveConstraintsFrom +wangdaye.com.geometricweather.R$id: int action_bar_root +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleGravity(int) +okhttp3.internal.ws.WebSocketProtocol: java.lang.String ACCEPT_MAGIC +androidx.vectordrawable.animated.R$attr: int fontProviderPackage +io.reactivex.Observable: java.lang.Object blockingLast() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer dewPoint +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_ttcIndex +cyanogenmod.weather.WeatherInfo$Builder: boolean isValidWindSpeedUnit(int) +james.adaptiveicon.R$styleable: int LinearLayoutCompat_showDividers +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.Observer downstream +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getActiveProfile +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarButtonStyle +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableLeft +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String getY() +androidx.coordinatorlayout.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed +io.reactivex.internal.util.AtomicThrowable: AtomicThrowable() +androidx.vectordrawable.R$id: int accessibility_custom_action_2 +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconPadding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String type +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_132 +androidx.constraintlayout.widget.R$styleable: int CompoundButton_android_button +james.adaptiveicon.R$attr: int titleMarginBottom +androidx.constraintlayout.widget.R$attr: int buttonStyleSmall +okhttp3.CacheControl: int minFreshSeconds() +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: IAppSuggestProvider$Stub() +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +com.google.android.material.R$id: int deltaRelative +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog +androidx.legacy.coreutils.R$attr: int alpha +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_title_material +com.google.android.material.circularreveal.cardview.CircularRevealCardView: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +org.greenrobot.greendao.AbstractDao: void attachEntity(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_scaleX +retrofit2.OkHttpCall: java.lang.Object[] args +com.xw.repo.bubbleseekbar.R$attr: int listChoiceBackgroundIndicator +com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_disable_only_material_dark +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMargins +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +com.jaredrummler.android.colorpicker.R$id: int chronometer +androidx.drawerlayout.widget.DrawerLayout$SavedState +cyanogenmod.app.IProfileManager$Stub$Proxy: IProfileManager$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +okhttp3.Cache: okhttp3.internal.cache.DiskLruCache cache +com.google.android.material.R$styleable: int Toolbar_titleMargins +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +wangdaye.com.geometricweather.R$dimen: int abc_text_size_large_material +okhttp3.Route: okhttp3.Address address +com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_android_alpha +com.xw.repo.bubbleseekbar.R$layout: int abc_cascading_menu_item_layout +james.adaptiveicon.R$id: int info +wangdaye.com.geometricweather.R$drawable: int notif_temp_87 +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontVariationSettings +cyanogenmod.library.R$attr +com.xw.repo.bubbleseekbar.R$attr: int spinnerStyle +androidx.lifecycle.HasDefaultViewModelProviderFactory +com.google.android.material.R$style: int Theme_MaterialComponents_Light_LargeTouch +com.google.android.material.chip.Chip: android.content.res.ColorStateList getCloseIconTint() +io.reactivex.Observable: Observable() +com.turingtechnologies.materialscrollbar.R$styleable: int[] ViewStubCompat +androidx.customview.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$styleable: int MaterialTextView_android_lineHeight +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type rawType +wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_entries +wangdaye.com.geometricweather.R$styleable: int CardView_cardElevation +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_indeterminateProgressStyle +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getLtoDestination() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: java.lang.String Unit +okhttp3.MultipartBody: okhttp3.MediaType originalType +retrofit2.http.OPTIONS: java.lang.String value() +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_margin +io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.ObservableSource,io.reactivex.functions.Function) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitation(java.lang.Float) +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: SavedStateHandle$SavingStateLiveData(androidx.lifecycle.SavedStateHandle,java.lang.String,java.lang.Object) +okhttp3.internal.cache.DiskLruCache$Snapshot: okhttp3.internal.cache.DiskLruCache$Editor edit() +cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.AppSuggestManager getInstance(android.content.Context) +androidx.preference.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$styleable: int[] ColorPanelView +com.bumptech.glide.integration.okhttp.R$attr: int statusBarBackground +okhttp3.internal.http2.Http2Connection: int openStreamCount() +com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialScrollBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX() +androidx.recyclerview.R$id: int line3 +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void onFailure(retrofit2.Call,java.lang.Throwable) +io.reactivex.internal.disposables.ArrayCompositeDisposable: ArrayCompositeDisposable(int) +james.adaptiveicon.R$drawable: int abc_spinner_textfield_background_material +com.google.android.material.R$style: int TextAppearance_Design_Placeholder +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String cityId +okhttp3.ResponseBody$BomAwareReader: java.io.Reader delegate +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.lang.String getSetTime(android.content.Context) +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizePresetSizes +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_text_size +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: double Value +androidx.vectordrawable.R$id: int accessibility_custom_action_21 +retrofit2.adapter.rxjava2.CallExecuteObservable: void subscribeActual(io.reactivex.Observer) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean delayError +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_Solid +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm10(java.lang.String) +cyanogenmod.weather.WeatherInfo$Builder: double mTodaysLowTemp +androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontWeight +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_voice_search_api_material +com.google.android.material.R$styleable: int Layout_layout_goneMarginStart +org.greenrobot.greendao.AbstractDao: int pkOrdinal +androidx.appcompat.R$attr: int layout +com.google.android.material.tabs.TabLayout: void setTabIconTint(android.content.res.ColorStateList) +androidx.coordinatorlayout.R$id: int right +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_FixedSize_Bridge +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String name +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +okio.InflaterSource: boolean refill() +com.turingtechnologies.materialscrollbar.R$style: int Base_V28_Theme_AppCompat +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low_pressed +androidx.lifecycle.Lifecycling: java.util.Map sCallbackCache +com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset +wangdaye.com.geometricweather.R$drawable: int flag_ar +com.jaredrummler.android.colorpicker.R$attr: int entries +androidx.hilt.R$id: int tag_unhandled_key_listeners +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getLiveLockScreenEnabled +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_DayNight +androidx.lifecycle.LiveData: void postValue(java.lang.Object) +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMarkTint +cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$Validator PROTECTED_COMPONENTS_VALIDATOR +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: CNWeatherResult$Realtime$Wind() +androidx.appcompat.R$color: int abc_primary_text_material_light +androidx.fragment.R$id: int accessibility_custom_action_0 +retrofit2.BuiltInConverters$RequestBodyConverter: BuiltInConverters$RequestBodyConverter() +androidx.constraintlayout.utils.widget.ImageFilterButton: float getRound() +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIconTintMode +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getThunderstormPrecipitation() +okio.Buffer: void readFully(okio.Buffer,long) +retrofit2.ParameterHandler$Body: retrofit2.Converter converter +androidx.preference.R$styleable: int ViewStubCompat_android_id +okhttp3.internal.Util: java.lang.String inet6AddressToAscii(byte[]) +androidx.appcompat.R$styleable: int AppCompatTheme_colorBackgroundFloating +com.google.android.material.textfield.TextInputLayout: void setEndIconOnClickListener(android.view.View$OnClickListener) +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_selection_text +com.google.android.material.R$attr: int scrimAnimationDuration +androidx.dynamicanimation.R$dimen: int notification_subtext_size +okhttp3.internal.http.RealInterceptorChain: okhttp3.Response proceed(okhttp3.Request) +androidx.preference.R$style +okhttp3.internal.http2.Http2Connection$Listener$1 +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void drain() +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerColor +androidx.constraintlayout.widget.R$attr: int actionMenuTextAppearance +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: javax.net.ssl.X509TrustManager trustManager +com.xw.repo.bubbleseekbar.R$dimen: int compat_button_inset_vertical_material +androidx.viewpager.R$layout: int notification_template_part_time +androidx.lifecycle.ReportFragment$ActivityInitializationListener +com.google.android.material.R$attr: int maxWidth +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_checkboxStyle +okhttp3.OkHttpClient: okhttp3.EventListener$Factory eventListenerFactory() +android.didikee.donate.R$style: int Widget_AppCompat_ListMenuView +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getWeatherKind() +androidx.appcompat.widget.ViewStubCompat: void setVisibility(int) +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getThumbTintList() +okio.Buffer: okio.BufferedSink writeIntLe(int) +wangdaye.com.geometricweather.R$layout: int item_trend_daily +okhttp3.EventListener: okhttp3.EventListener$Factory factory(okhttp3.EventListener) +okhttp3.Cookie: long expiresAt() +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +androidx.constraintlayout.widget.R$attr: int drawableSize +wangdaye.com.geometricweather.R$id: int home +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayStyle +com.google.android.material.R$style: int Widget_AppCompat_Light_ListView_DropDown +android.didikee.donate.R$attr: int listChoiceBackgroundIndicator +okhttp3.Cookie: long expiresAt +android.didikee.donate.R$styleable: int AppCompatTheme_searchViewStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextBackground +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: io.reactivex.Scheduler scheduler +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy KEEP +androidx.hilt.R$anim: int fragment_open_exit +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context,android.util.AttributeSet,int) +android.didikee.donate.R$drawable: int notification_template_icon_bg +androidx.core.R$id: int accessibility_custom_action_10 +com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_tick_mark_material +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: android.content.res.ColorStateList getSupportBackgroundTintList() +androidx.preference.R$drawable: int abc_item_background_holo_light +cyanogenmod.app.suggest.IAppSuggestManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.R$attr: int barrierMargin +androidx.constraintlayout.widget.R$styleable: int SearchView_closeIcon +androidx.viewpager.R$styleable: int FontFamilyFont_fontWeight +okhttp3.internal.ws.RealWebSocket: java.lang.String key +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf +com.google.android.material.bottomnavigation.BottomNavigationItemView: int getItemPosition() +wangdaye.com.geometricweather.R$attr: int textAppearanceListItem +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getThermalState() +io.reactivex.internal.disposables.SequentialDisposable: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer snowHazard6h +james.adaptiveicon.R$styleable: int AppCompatTheme_colorBackgroundFloating +androidx.preference.SwitchPreference +com.jaredrummler.android.colorpicker.R$attr: int actionModeCopyDrawable +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_subtitle +com.jaredrummler.android.colorpicker.R$styleable: int Preference_defaultValue +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: AccuDailyResult$DailyForecasts$Night$WindGust() +com.google.android.material.R$style: int TextAppearance_Design_Counter +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTheme +retrofit2.Utils$ParameterizedTypeImpl +wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_appearance +androidx.appcompat.R$attr: int actionBarTabStyle +retrofit2.OkHttpCall$1: void callFailure(java.lang.Throwable) wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_shapeAppearance -james.adaptiveicon.R$attr: int actionBarTabBarStyle -wangdaye.com.geometricweather.R$color: int mtrl_outlined_stroke_color -wangdaye.com.geometricweather.R$string: int email -com.xw.repo.bubbleseekbar.R$dimen: int notification_right_side_padding_top -okio.GzipSink: void updateCrc(okio.Buffer,long) -retrofit2.http.PUT -androidx.appcompat.widget.AppCompatEditText: void setSupportBackgroundTintList(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -com.jaredrummler.android.colorpicker.R$attr: int actionMenuTextColor -android.didikee.donate.R$dimen: int abc_text_size_display_3_material -androidx.lifecycle.extensions.R$layout: int notification_template_part_chronometer -com.xw.repo.bubbleseekbar.R$id: int add -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ProgressBar_Horizontal -com.google.android.material.R$styleable: int Layout_layout_constraintStart_toEndOf -androidx.preference.R$anim -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_gapBetweenBars -com.jaredrummler.android.colorpicker.R$id: int seekbar -androidx.appcompat.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setTextColor(int) -cyanogenmod.app.LiveLockScreenInfo$Builder: LiveLockScreenInfo$Builder() -com.bumptech.glide.integration.okhttp.R$styleable: int[] ColorStateListItem -com.github.rahatarmanahmed.cpv.CircularProgressView: float INDETERMINANT_MIN_SWEEP -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: ObservableGroupBy$GroupByObserver(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,int,boolean) -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -wangdaye.com.geometricweather.R$id: int material_timepicker_ok_button -androidx.swiperefreshlayout.R$dimen: R$dimen() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeLevel -androidx.lifecycle.ViewModelStore: void put(java.lang.String,androidx.lifecycle.ViewModel) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: boolean val$screenOn -com.google.gson.internal.LazilyParsedNumber: float floatValue() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction -androidx.viewpager.R$styleable: int GradientColor_android_endX -androidx.lifecycle.SavedStateHandle: java.lang.String VALUES -wangdaye.com.geometricweather.R$string: int settings_title_week_icon_mode -wangdaye.com.geometricweather.R$layout: int dialog_resident_location -okhttp3.CertificatePinner$Builder: okhttp3.CertificatePinner$Builder add(java.lang.String,java.lang.String[]) -android.didikee.donate.R$styleable: int CompoundButton_android_button -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void dispose() -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.internal.util.AtomicThrowable error -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircleAngle -androidx.vectordrawable.R$color: int notification_action_color_filter -com.google.android.material.R$dimen: int abc_action_button_min_width_material -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_ALL -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low_pressed -androidx.core.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.R$attr: int ratingBarStyleSmall -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling() -androidx.hilt.R$attr: int fontProviderCerts -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Entry -cyanogenmod.profiles.RingModeSettings: void setValue(java.lang.String) -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderCerts -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCutDrawable -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: java.lang.String address -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -androidx.appcompat.widget.ActionBarContextView: void setCustomView(android.view.View) -android.didikee.donate.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -okhttp3.internal.io.FileSystem$1: void deleteContents(java.io.File) -androidx.preference.R$attr: int key -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory createWithScheduler(io.reactivex.Scheduler) -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: ObservableConcatWithSingle$ConcatWithObserver(io.reactivex.Observer,io.reactivex.SingleSource) -wangdaye.com.geometricweather.R$styleable: int SwitchImageButton_drawable_res_off -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getName() -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeMinTextSize -com.google.android.material.R$dimen: int mtrl_btn_icon_btn_padding_left -io.reactivex.internal.operators.observable.ObserverResourceWrapper: java.util.concurrent.atomic.AtomicReference upstream -com.turingtechnologies.materialscrollbar.R$styleable: int[] CollapsingToolbarLayout -androidx.appcompat.R$styleable: int[] PopupWindow -com.google.android.material.R$layout: int abc_activity_chooser_view_list_item -com.google.android.material.R$drawable: int design_ic_visibility -okio.Buffer$1: void write(int) -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginBottom -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_splitTrack -androidx.vectordrawable.animated.R$id: int actions -androidx.appcompat.widget.LinearLayoutCompat: void setDividerPadding(int) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA -com.google.android.material.R$id: int material_label -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_139 -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorSchemeColors(int[]) -com.turingtechnologies.materialscrollbar.R$attr: int barLength -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView -androidx.preference.R$string: int abc_capital_on -com.google.android.material.R$styleable: int ViewBackgroundHelper_backgroundTint -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_48dp -wangdaye.com.geometricweather.R$attr: int bsb_track_size -okhttp3.HttpUrl: int defaultPort(java.lang.String) -com.turingtechnologies.materialscrollbar.R$id: int largeLabel -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$id: int fragment_main -com.jaredrummler.android.colorpicker.R$layout: int abc_action_menu_item_layout -okhttp3.CacheControl: boolean onlyIfCached() -cyanogenmod.providers.CMSettings$Global: java.lang.String SYS_PROP_CM_SETTING_VERSION -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog -cyanogenmod.weatherservice.WeatherProviderService: void onRequestCancelled(cyanogenmod.weatherservice.ServiceRequest) -androidx.drawerlayout.R$string -androidx.appcompat.R$id: int image -androidx.preference.R$color: int switch_thumb_normal_material_light -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_persistent -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property ResidentPosition -com.jaredrummler.android.colorpicker.R$dimen: int hint_alpha_material_dark -wangdaye.com.geometricweather.R$id: int container_main_pollen -androidx.hilt.R$styleable: int FontFamilyFont_ttcIndex -androidx.transition.R$id: int forever -james.adaptiveicon.R$attr: int customNavigationLayout -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_visible -com.jaredrummler.android.colorpicker.R$id: int contentPanel +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm10() +androidx.loader.content.Loader: void unregisterListener(androidx.loader.content.Loader$OnLoadCompleteListener) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial +james.adaptiveicon.R$styleable: int SearchView_queryBackground +cyanogenmod.app.CustomTile: cyanogenmod.app.CustomTile$ExpandedStyle expandedStyle +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_UPDATE_TIME +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_borderlessButtonStyle +androidx.preference.R$attr: int actionModeBackground +com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Light_Dialog +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusTopStart +androidx.appcompat.R$styleable: int Spinner_popupTheme +wangdaye.com.geometricweather.R$id: int switch_layout +androidx.work.R$styleable: int FontFamilyFont_android_font +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyBottomRight +com.jaredrummler.android.colorpicker.R$layout: int select_dialog_multichoice_material +com.xw.repo.bubbleseekbar.R$attr: int autoSizeMinTextSize +com.google.android.material.R$attr: int materialAlertDialogTitleIconStyle +androidx.vectordrawable.animated.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line2_tail_interpolator +android.didikee.donate.R$styleable: int[] AppCompatTextHelper +wangdaye.com.geometricweather.common.basic.models.weather.Wind: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree degree +androidx.appcompat.widget.LinearLayoutCompat: int getOrientation() +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getIcePrecipitationProbability() +com.bumptech.glide.load.HttpException +androidx.preference.R$attr: int disableDependentsState +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_listItemLayout +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void drain() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView_Menu +retrofit2.BuiltInConverters$RequestBodyConverter: retrofit2.BuiltInConverters$RequestBodyConverter INSTANCE +com.google.android.material.R$color: int abc_search_url_text_pressed +androidx.constraintlayout.widget.R$style: int Base_V26_Theme_AppCompat +androidx.appcompat.R$color: int dim_foreground_material_light +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void drainLoop() +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: void setProgress(float) +com.github.rahatarmanahmed.cpv.CircularProgressView: int getColor() +com.jaredrummler.android.colorpicker.R$attr: int actionBarPopupTheme +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Small +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer grassIndex +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_default_mtrl_alpha +com.google.android.material.R$attr: int passwordToggleContentDescription +wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_item_tint +com.google.android.material.R$drawable: int abc_list_pressed_holo_dark +io.reactivex.Observable: io.reactivex.Observable throttleWithTimeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okhttp3.internal.connection.RouteSelector$Selection: int nextRouteIndex +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotationY +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getRealFeelTemperature() +com.google.android.material.R$styleable: int KeyAttribute_motionProgress +wangdaye.com.geometricweather.R$styleable: int PropertySet_motionProgress +com.google.android.material.behavior.HideBottomViewOnScrollBehavior +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_showMotionSpec +com.google.android.material.R$styleable: int BottomNavigationView_itemTextAppearanceActive +androidx.constraintlayout.widget.Barrier: void setAllowsGoneWidget(boolean) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getMoonRiseDate() +com.xw.repo.bubbleseekbar.R$id: int title_template +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf +wangdaye.com.geometricweather.R$style: int Widget_Design_ScrimInsetsFrameLayout +androidx.preference.R$styleable: int Spinner_android_dropDownWidth +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display2 +cyanogenmod.app.IProfileManager: android.app.NotificationGroup getNotificationGroup(android.os.ParcelUuid) +okhttp3.internal.http1.Http1Codec: okio.Source newFixedLengthSource(long) +okhttp3.Response$Builder: java.lang.String message +androidx.hilt.R$id: int accessibility_custom_action_14 +androidx.lifecycle.AndroidViewModel: android.app.Application mApplication +androidx.constraintlayout.widget.R$styleable: int Toolbar_collapseContentDescription +com.google.android.material.R$dimen: int abc_action_bar_default_height_material +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeCloudCover +androidx.preference.ListPreference$SavedState: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +androidx.viewpager2.R$attr: int fastScrollHorizontalThumbDrawable +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_max +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_corner_radius_material +androidx.preference.R$styleable: int MenuItem_android_menuCategory +cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(cyanogenmod.weatherservice.ServiceRequestResult$1) +com.google.android.material.R$styleable: int CardView_cardUseCompatPadding +james.adaptiveicon.R$attr: int buttonBarButtonStyle +com.jaredrummler.android.colorpicker.R$drawable: int abc_switch_thumb_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX +wangdaye.com.geometricweather.R$dimen: int item_touch_helper_swipe_escape_max_velocity +android.didikee.donate.R$style: int TextAppearance_AppCompat_Button +android.didikee.donate.R$styleable: int ActionBar_contentInsetEnd +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +com.bumptech.glide.load.HttpException: HttpException(int) +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconVisible +com.google.android.material.R$attr: int actionModeBackground +wangdaye.com.geometricweather.R$id: int notification_multi_city_1 +james.adaptiveicon.R$dimen: int abc_search_view_preferred_height +wangdaye.com.geometricweather.R$attr: int listMenuViewStyle +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_keylines +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature Temperature +androidx.lifecycle.LifecycleDispatcher: void init(android.content.Context) +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Headline +com.xw.repo.BubbleSeekBar: float getProgressFloat() +james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_Toolbar +okio.BufferedSource: void require(long) +cyanogenmod.app.CustomTile$GridExpandedStyle: void setGridItems(java.util.ArrayList) +com.xw.repo.bubbleseekbar.R$attr: int collapseContentDescription +okhttp3.internal.http.HttpHeaders: java.lang.String readQuotedString(okio.Buffer) +com.bumptech.glide.R$style: int Widget_Compat_NotificationActionText +com.turingtechnologies.materialscrollbar.R$attr: int fabSize +james.adaptiveicon.R$styleable: int CompoundButton_android_button +james.adaptiveicon.R$attr: int logoDescription +wangdaye.com.geometricweather.R$color: int colorRoot +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleEnabled +androidx.constraintlayout.widget.R$id: int middle +com.google.android.material.snackbar.BaseTransientBottomBar$Behavior +com.google.android.material.R$styleable: int ActivityChooserView_initialActivityCount +androidx.preference.R$style: int ThemeOverlay_AppCompat_Light +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_26 +androidx.constraintlayout.widget.R$attr: int iconTint +okio.BufferedSink: okio.BufferedSink writeShort(int) +androidx.appcompat.R$style: int Base_Theme_AppCompat_DialogWhenLarge +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Header$Listener access$100(okhttp3.internal.http2.Http2Stream) +com.google.android.material.imageview.ShapeableImageView: void setStrokeColorResource(int) +androidx.appcompat.resources.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$dimen: int preference_seekbar_padding_horizontal +james.adaptiveicon.R$attr: int paddingEnd +cyanogenmod.app.suggest.IAppSuggestProvider$Stub +cyanogenmod.providers.CMSettings$System: java.lang.String DIALER_OPENCNAM_ACCOUNT_SID +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: AccuCurrentResult$PrecipitationSummary$Precipitation() +com.google.android.material.R$styleable: int AppBarLayout_elevation +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +androidx.recyclerview.R$id: int icon_group +androidx.appcompat.R$dimen: int disabled_alpha_material_dark +com.turingtechnologies.materialscrollbar.R$id: int mtrl_child_content_container +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +okhttp3.internal.platform.AndroidPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +androidx.appcompat.R$style: int Platform_Widget_AppCompat_Spinner +cyanogenmod.app.ProfileManager: java.lang.String INTENT_ACTION_PROFILE_UPDATED +androidx.preference.R$color: int bright_foreground_inverse_material_dark +com.google.android.material.R$attr: int actionBarTabBarStyle +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_WARNING_INDEX +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void dispose() +wangdaye.com.geometricweather.R$drawable: int notif_temp_28 +androidx.activity.R$id: int accessibility_custom_action_27 +androidx.work.R$styleable: int ColorStateListItem_alpha +androidx.constraintlayout.widget.R$id: int checkbox +com.turingtechnologies.materialscrollbar.AlphabetIndicator +retrofit2.CompletableFutureCallAdapterFactory: CompletableFutureCallAdapterFactory() +wangdaye.com.geometricweather.R$styleable: int[] CheckBoxPreference +cyanogenmod.externalviews.KeyguardExternalView$7: cyanogenmod.externalviews.KeyguardExternalView this$0 +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableLeftCompat +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: AndroidPlatform$AndroidTrustRootIndex(javax.net.ssl.X509TrustManager,java.lang.reflect.Method) +androidx.viewpager.R$styleable: int GradientColorItem_android_color +androidx.preference.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortRealFeeTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: java.lang.Long set +io.reactivex.internal.operators.observable.ObservableGroupBy$State: ObservableGroupBy$State(int,io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver,java.lang.Object,boolean) +com.google.android.material.R$attr: int coordinatorLayoutStyle +okio.Pipe$PipeSource: okio.Pipe this$0 +androidx.hilt.work.R$id: int accessibility_custom_action_12 +androidx.preference.R$attr: int textColorSearchUrl +okhttp3.internal.platform.AndroidPlatform +com.google.android.material.R$dimen: int material_timepicker_dialog_buttons_margin_top +androidx.constraintlayout.utils.widget.ImageFilterButton: void setOverlay(boolean) +com.turingtechnologies.materialscrollbar.R$attr: int elevation +com.google.android.material.R$styleable: int Constraint_flow_firstHorizontalStyle +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchTouchEvent(android.view.MotionEvent) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRainPrecipitation(java.lang.Float) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: ObservableSwitchMapSingle$SwitchMapSingleMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_icon_size +android.didikee.donate.R$attr: int logo +android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyle +okio.SegmentedByteString: int size() +androidx.preference.R$styleable: int AppCompatTheme_alertDialogCenterButtons +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_BOOT_ANIM +android.didikee.donate.R$drawable: int abc_popup_background_mtrl_mult +androidx.preference.R$dimen: int abc_action_bar_stacked_max_height +wangdaye.com.geometricweather.R$attr: int chipBackgroundColor +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.R$drawable: int weather_rain +cyanogenmod.app.suggest.ApplicationSuggestion$1: cyanogenmod.app.suggest.ApplicationSuggestion createFromParcel(android.os.Parcel) +androidx.preference.R$attr: int subtitleTextStyle +androidx.recyclerview.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_shapeAppearanceOverlay +com.google.android.material.R$styleable: int View_paddingStart +androidx.preference.R$attr: int titleTextColor +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_fabCustomSize +com.google.android.material.R$string: int hide_bottom_view_on_scroll_behavior +okio.HashingSink +androidx.preference.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +com.google.android.material.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +wangdaye.com.geometricweather.R$id: int container_main_header_weatherTxt +androidx.preference.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +androidx.loader.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Snackbar +com.xw.repo.bubbleseekbar.R$styleable: int[] DrawerArrowToggle +androidx.customview.R$layout: int notification_action_tombstone +com.google.android.material.R$string: int mtrl_picker_toggle_to_day_selection +com.google.android.material.R$attr: int fabCradleVerticalOffset +io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged(io.reactivex.functions.BiPredicate) +com.google.android.material.R$color: int mtrl_tabs_ripple_color +androidx.hilt.work.R$styleable: int GradientColor_android_type +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_gradientRadius com.google.android.material.R$id: int mtrl_picker_text_input_range_start -com.google.android.material.R$styleable: int FloatingActionButton_pressedTranslationZ -com.jaredrummler.android.colorpicker.ColorPanelView: int getColor() -androidx.appcompat.widget.ActivityChooserView: void setExpandActivityOverflowButtonContentDescription(int) -cyanogenmod.weather.CMWeatherManager$RequestStatus: int NO_MATCH_FOUND -com.turingtechnologies.materialscrollbar.R$attr: int editTextBackground -cyanogenmod.app.Profile: void setStatusBarIndicator(boolean) -io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function,boolean) -james.adaptiveicon.R$id: int edit_query -com.google.android.material.R$color: int radiobutton_themeable_attribute_color -okhttp3.internal.io.FileSystem$1: FileSystem$1() -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_LAST_PROFILE_UUID -com.turingtechnologies.materialscrollbar.R$id: int action_menu_divider -androidx.appcompat.R$anim: int abc_slide_out_bottom -com.google.android.material.R$styleable: int AppCompatTheme_alertDialogCenterButtons -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeMinTextSize -androidx.constraintlayout.widget.R$attr: int layoutDescription -okio.SegmentedByteString: int segment(int) -okhttp3.internal.http2.Http2Codec: java.lang.String TE -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver) -androidx.core.os.CancellationSignal: void setOnCancelListener(androidx.core.os.CancellationSignal$OnCancelListener) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd -okio.RealBufferedSource: boolean request(long) -androidx.lifecycle.ReportFragment: void onStop() -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_arrowHeadLength -wangdaye.com.geometricweather.R$dimen: int notification_top_pad -androidx.loader.R$id: int tag_transition_group -com.google.android.material.R$dimen: int mtrl_calendar_maximum_default_fullscreen_minor_axis -okio.GzipSource: byte SECTION_BODY -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Menu +androidx.hilt.work.R$styleable: int FontFamilyFont_fontStyle +cyanogenmod.providers.DataUsageContract: java.lang.String _ID +androidx.vectordrawable.R$id: int accessibility_custom_action_31 +android.didikee.donate.R$drawable: int abc_ic_menu_cut_mtrl_alpha +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleTextAppearance +androidx.appcompat.R$id: int home +wangdaye.com.geometricweather.R$styleable: int CardView_android_minHeight +androidx.appcompat.R$style: int Base_Theme_AppCompat_CompactMenu +wangdaye.com.geometricweather.R$styleable: int MaterialAutoCompleteTextView_android_inputType +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetLeft +okhttp3.internal.http2.Http2Reader: okhttp3.internal.http2.Hpack$Reader hpackReader +james.adaptiveicon.R$id: int action_bar_spinner +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_icon_color_selector_colored +cyanogenmod.app.CustomTile$ExpandedStyle: int describeContents() +cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(int,int,boolean) +okhttp3.internal.http2.Http2Reader: void readSettings(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +androidx.work.R$drawable: int notification_template_icon_bg +android.didikee.donate.R$id: int homeAsUp +androidx.preference.R$style: int TextAppearance_AppCompat_Large_Inverse +cyanogenmod.externalviews.ExternalView$2: int val$height +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored +cyanogenmod.externalviews.ExternalView$1: ExternalView$1(cyanogenmod.externalviews.ExternalView) +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +android.support.v4.os.ResultReceiver$1: ResultReceiver$1() +com.bumptech.glide.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_summaryOff +com.xw.repo.bubbleseekbar.R$style: int AlertDialog_AppCompat +wangdaye.com.geometricweather.R$integer: int cpv_default_anim_sync_duration +androidx.constraintlayout.widget.R$string: int abc_activity_chooser_view_see_all +com.bumptech.glide.R$id: int top +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_DarkActionBar +com.google.android.material.R$attr: int boxStrokeWidth +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: io.reactivex.Observer downstream +com.google.android.material.R$layout: int design_navigation_menu +androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.google.android.material.R$dimen: int mtrl_snackbar_padding_horizontal +androidx.preference.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) +androidx.preference.R$id: int title_template +okhttp3.CacheControl: java.lang.String headerValue() +cyanogenmod.themes.IThemeService$Stub$Proxy: android.os.IBinder asBinder() +james.adaptiveicon.R$styleable: int CompoundButton_buttonTintMode +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackActiveTintList() +cyanogenmod.providers.CMSettings$Global: float getFloat(android.content.ContentResolver,java.lang.String,float) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.appcompat.R$attr: int viewInflaterClass +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: android.graphics.Matrix getLocalMatrix() +wangdaye.com.geometricweather.R$styleable: int Chip_showMotionSpec +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +com.google.android.material.R$drawable: int notification_bg_low_normal +cyanogenmod.app.ProfileManager: java.lang.String INTENT_ACTION_PROFILE_SELECTED +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long count +androidx.lifecycle.extensions.R$styleable: int Fragment_android_id +com.google.android.material.progressindicator.ProgressIndicator: void setIndeterminate(boolean) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_item_background_holo_light +com.xw.repo.bubbleseekbar.R$attr: int actionOverflowButtonStyle +androidx.constraintlayout.widget.R$styleable: int MotionScene_defaultDuration +james.adaptiveicon.R$styleable: int MenuItem_tooltipText +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_87 +com.google.android.material.R$id: int spread_inside +com.google.android.material.R$styleable: int Badge_number +okhttp3.OkHttpClient$1: java.net.Socket deduplicate(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation) +com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_inflatedId +okio.Timeout: Timeout() +androidx.vectordrawable.animated.R$layout: int notification_template_custom_big +com.google.android.material.slider.RangeSlider: void setThumbStrokeWidthResource(int) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ab_share_pack_mtrl_alpha +com.google.android.material.R$attr: int tabSelectedTextColor +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer ragweedLevel +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2 +androidx.dynamicanimation.animation.DynamicAnimation: void removeEndListener(androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationEndListener) +com.turingtechnologies.materialscrollbar.R$style: int Platform_V25_AppCompat +com.google.android.material.R$layout: int design_menu_item_action_area +androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context,android.util.AttributeSet,int) +okhttp3.internal.ws.WebSocketReader: okio.Buffer controlFrameBuffer +wangdaye.com.geometricweather.R$string: int edit +com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_pressed +okhttp3.internal.cache2.Relay$RelaySource: long sourcePos +androidx.hilt.R$styleable: R$styleable() +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableLeft +android.didikee.donate.R$attr: int actionModePasteDrawable +cyanogenmod.app.CustomTile: android.content.Intent onSettingsClick +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Alert_Bridge +com.google.android.material.R$attr: int tickMarkTintMode +cyanogenmod.app.ICMStatusBarManager$Stub +androidx.lifecycle.extensions.R$layout: int custom_dialog +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: java.lang.String getPathName() +wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarStyle +com.google.android.material.slider.RangeSlider: int getActiveThumbIndex() +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.turingtechnologies.materialscrollbar.R$attr: int msb_lightOnTouch +james.adaptiveicon.R$dimen: int tooltip_vertical_padding +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +com.xw.repo.bubbleseekbar.R$attr: int expandActivityOverflowButtonDrawable +okhttp3.internal.ws.WebSocketWriter: okio.Buffer$UnsafeCursor maskCursor +wangdaye.com.geometricweather.db.entities.AlertEntity +cyanogenmod.app.ILiveLockScreenChangeListener$Stub +com.turingtechnologies.materialscrollbar.R$styleable: int[] ThemeEnforcement +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindChillTemperature(java.lang.Integer) +okhttp3.Dispatcher: Dispatcher(java.util.concurrent.ExecutorService) +okhttp3.Cookie: java.util.regex.Pattern YEAR_PATTERN +wangdaye.com.geometricweather.R$dimen: int mtrl_fab_min_touch_target +com.google.android.material.R$attr: int tintMode +androidx.loader.R$id: int notification_main_column_container +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: org.reactivestreams.Subscription receiver +com.google.android.material.R$dimen: int mtrl_card_elevation +androidx.preference.R$styleable: int Preference_dependency +androidx.preference.R$id: int action_divider +androidx.appcompat.R$style: int TextAppearance_AppCompat_Small +okio.BufferedSource: java.io.InputStream inputStream() +okhttp3.OkHttpClient: okhttp3.internal.cache.InternalCache internalCache +com.google.android.material.navigation.NavigationView: android.view.MenuItem getCheckedItem() +wangdaye.com.geometricweather.R$styleable: int Constraint_android_scaleY +com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_max +wangdaye.com.geometricweather.R$drawable: int notif_temp_105 +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity +com.google.android.material.R$dimen: int notification_subtext_size +androidx.constraintlayout.motion.widget.MotionLayout: long getTransitionTimeMs() +com.google.android.material.R$styleable: int MaterialButton_cornerRadius +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_2 +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge +retrofit2.Platform: int defaultCallAdapterFactoriesSize() +wangdaye.com.geometricweather.R$dimen: int material_font_1_3_box_collapsed_padding_top +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowMinWidthMinor +android.didikee.donate.R$styleable: int MenuView_android_headerBackground +androidx.preference.R$color: int material_grey_850 +com.jaredrummler.android.colorpicker.R$dimen: int abc_button_inset_vertical_material +cyanogenmod.externalviews.KeyguardExternalView$8: void run() +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int bsb_max +wangdaye.com.geometricweather.R$menu: int activity_settings +io.reactivex.Observable: io.reactivex.Observable buffer(int,java.util.concurrent.Callable) +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.disposables.Disposable upstream +com.google.android.material.R$styleable: int AppCompatTheme_tooltipForegroundColor +wangdaye.com.geometricweather.R$layout: int preference_widget_seekbar +wangdaye.com.geometricweather.common.basic.models.weather.UV: boolean isValidIndex() +cyanogenmod.app.CustomTile$ExpandedStyle: void internalStyleId(int) +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String saint +com.google.android.material.slider.BaseSlider: void setTrackHeight(int) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupWindow +androidx.customview.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_holo_light +android.didikee.donate.R$attr: int track +androidx.legacy.coreutils.R$dimen: int notification_right_icon_size +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: KeyguardExternalViewProviderService$Provider$ProviderImpl$8(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,float) +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy valueOf(java.lang.String) +androidx.activity.R$styleable: int GradientColor_android_centerColor +cyanogenmod.app.Profile$TriggerState: int ON_DISCONNECT +android.didikee.donate.R$id: int alertTitle +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_elevation +wangdaye.com.geometricweather.R$string: int content_des_o3 +io.reactivex.disposables.ReferenceDisposable: long serialVersionUID +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleGravity(int) com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_thumb -com.google.android.material.chip.ChipGroup: void setOnCheckedChangeListener(com.google.android.material.chip.ChipGroup$OnCheckedChangeListener) -com.jaredrummler.android.colorpicker.R$drawable: int abc_action_bar_item_background_material -okhttp3.internal.io.FileSystem: boolean exists(java.io.File) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: java.util.concurrent.atomic.AtomicReference queue -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_height -androidx.constraintlayout.widget.R$id: int select_dialog_listview +androidx.vectordrawable.R$id: int time +com.jaredrummler.android.colorpicker.R$attr: int elevation +wangdaye.com.geometricweather.R$dimen: int notification_small_icon_size_as_large +com.google.android.material.R$attr: int textLocale +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_REVERSE_LOOKUP_VALIDATOR +okhttp3.internal.http1.Http1Codec: void finishRequest() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getPm10() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf +androidx.appcompat.widget.AppCompatButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$attr: int windowActionBar +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Light +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback) +com.jaredrummler.android.colorpicker.R$id: int icon_group +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: int requestFusion(int) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitationProbability(java.lang.Float) +androidx.constraintlayout.widget.R$interpolator +cyanogenmod.app.ProfileGroup: ProfileGroup(android.os.Parcel,cyanogenmod.app.ProfileGroup$1) +com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_bottom +io.reactivex.internal.observers.LambdaObserver: LambdaObserver(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Consumer) +androidx.constraintlayout.widget.R$styleable: int ActionBar_displayOptions +io.reactivex.internal.util.VolatileSizeArrayList: void add(int,java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginLeft +okhttp3.internal.http2.Http2Stream: void receiveRstStream(okhttp3.internal.http2.ErrorCode) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX() +wangdaye.com.geometricweather.wallpaper.LiveWallpaperConfigActivity: LiveWallpaperConfigActivity() +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: WeatherInfo$DayForecast$Builder(int) +wangdaye.com.geometricweather.R$string: int mtrl_picker_navigate_to_year_description +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric() +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_maxWidth +okhttp3.internal.platform.Platform: okhttp3.internal.tls.TrustRootIndex buildTrustRootIndex(javax.net.ssl.X509TrustManager) +androidx.appcompat.R$drawable: int abc_control_background_material +android.didikee.donate.R$id: int showTitle +androidx.preference.PreferenceGroup: void setOnExpandButtonClickListener(androidx.preference.PreferenceGroup$OnExpandButtonClickListener) +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMenuView +wangdaye.com.geometricweather.R$attr: int panelBackground +wangdaye.com.geometricweather.db.entities.HourlyEntity: long getTime() +james.adaptiveicon.R$dimen: int abc_action_button_min_width_overflow_material +com.xw.repo.BubbleSeekBar: void setBubbleColor(int) +androidx.constraintlayout.widget.R$id: int SHOW_ALL +com.google.android.material.R$styleable: int KeyTrigger_onCross +androidx.preference.R$attr: int collapseIcon +androidx.preference.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +wangdaye.com.geometricweather.R$attr: int indeterminateProgressStyle +androidx.appcompat.widget.AppCompatImageView: android.content.res.ColorStateList getSupportImageTintList() +com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_android_background +androidx.preference.R$attr: int actionModeFindDrawable +com.google.android.material.textfield.TextInputLayout: com.google.android.material.shape.MaterialShapeDrawable getBoxBackground() +cyanogenmod.app.StatusBarPanelCustomTile$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_id +androidx.preference.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ButtonBar +com.google.android.material.R$styleable: int PropertySet_android_visibility +com.google.android.material.R$color: int bright_foreground_inverse_material_light +android.didikee.donate.R$styleable: int AppCompatTextView_drawableTopCompat +androidx.appcompat.resources.R$string: R$string() +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeBackground +com.jaredrummler.android.colorpicker.R$color: int primary_text_disabled_material_dark +wangdaye.com.geometricweather.R$drawable: int notif_temp_42 +com.google.android.material.internal.NavigationMenuItemView: void setTextAppearance(int) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered +android.didikee.donate.R$styleable: int Toolbar_subtitle +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_black +wangdaye.com.geometricweather.R$string: int settings_title_item_animation_switch +com.jaredrummler.android.colorpicker.R$attr: int switchPreferenceStyle +com.google.android.material.R$attr: int goIcon +okhttp3.RealCall$AsyncCall: void execute() +androidx.constraintlayout.widget.R$attr: int suggestionRowLayout +okhttp3.internal.ws.WebSocketProtocol: int B1_MASK_LENGTH +androidx.constraintlayout.widget.R$drawable: int abc_spinner_mtrl_am_alpha +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_tileMode +com.google.android.material.R$dimen: int mtrl_calendar_title_baseline_to_top +com.jaredrummler.android.colorpicker.R$attr: int titleMargins +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver +androidx.constraintlayout.widget.R$attr: int allowStacking +wangdaye.com.geometricweather.R$style: int Platform_V25_AppCompat_Light +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder listener(okhttp3.internal.http2.Http2Connection$Listener) +okhttp3.Cache$Entry: long receivedResponseMillis +com.jaredrummler.android.colorpicker.R$attr: int allowDividerAbove +androidx.fragment.R$attr: int fontProviderFetchStrategy +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: io.reactivex.Observer downstream +androidx.vectordrawable.R$styleable: int GradientColor_android_type +okhttp3.internal.cache.FaultHidingSink: void write(okio.Buffer,long) +com.google.android.material.R$attr: int materialCalendarHeaderCancelButton +com.google.android.material.R$styleable: int KeyAttribute_android_elevation +androidx.appcompat.R$styleable: int[] ListPopupWindow +com.google.android.material.R$styleable: int Constraint_android_rotationY +com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorSize() +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_dither +androidx.viewpager2.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$styleable: int Constraint_motionStagger +androidx.appcompat.R$drawable: int abc_list_selector_holo_light +retrofit2.Response: okhttp3.Headers headers() +retrofit2.ParameterHandler$Header: java.lang.String name +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getExtendMotionSpec() +androidx.drawerlayout.R$styleable: int[] GradientColorItem +com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.R$dimen: int notification_right_side_padding_top +okhttp3.ResponseBody$BomAwareReader: boolean closed +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleContentDescription(int) +androidx.vectordrawable.R$id: int icon +androidx.viewpager2.R$style: R$style() +okhttp3.Cookie: long parseExpires(java.lang.String,int,int) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_panel_menu_list_width +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_Switch +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupWindow +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierMargin +androidx.preference.R$styleable: int ActionBar_subtitle +wangdaye.com.geometricweather.R$styleable: int CardView_contentPadding +com.jaredrummler.android.colorpicker.R$attr: int titleTextColor +com.google.android.material.R$styleable: int Chip_closeIcon +androidx.lifecycle.extensions.R$attr +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabText +okhttp3.OkHttpClient: java.util.List interceptors() +androidx.swiperefreshlayout.R$dimen: int notification_small_icon_size_as_large +com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_checkbox +okhttp3.internal.platform.Jdk9Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +io.reactivex.internal.subscribers.StrictSubscriber: void onError(java.lang.Throwable) +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginLeft +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActivityChooserView +com.turingtechnologies.materialscrollbar.R$layout: int notification_template_custom_big +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_bias +android.didikee.donate.R$styleable: int AppCompatTheme_dialogPreferredPadding +androidx.constraintlayout.widget.R$attr: int titleMargins +okhttp3.EventListener$2: EventListener$2(okhttp3.EventListener) +cyanogenmod.app.Profile: void setScreenLockMode(cyanogenmod.profiles.LockSettings) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun sun +wangdaye.com.geometricweather.R$attr: int maxAcceleration +androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.appcompat.widget.AppCompatTextView: int getAutoSizeMaxTextSize() +androidx.appcompat.R$styleable: int AppCompatTextView_drawableRightCompat +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_16 +androidx.lifecycle.FullLifecycleObserver +wangdaye.com.geometricweather.R$styleable: int NavigationView_shapeAppearanceOverlay +io.reactivex.Observable: io.reactivex.Observable scan(io.reactivex.functions.BiFunction) +cyanogenmod.app.ProfileGroup: boolean isDirty() +androidx.appcompat.widget.MenuPopupWindow +androidx.lifecycle.extensions.R$attr: int ttcIndex +androidx.appcompat.R$styleable: int AppCompatImageView_android_src +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_16dp +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ImageButton +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindLevel +androidx.preference.R$anim: int abc_slide_in_top +androidx.viewpager2.R$dimen: int notification_small_icon_background_padding +androidx.lifecycle.LifecycleService: androidx.lifecycle.Lifecycle getLifecycle() +okio.Options: int[] trie +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_26 +cyanogenmod.app.IPartnerInterface$Stub$Proxy +okio.BufferedSource: long readAll(okio.Sink) +io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Predicate onNext +androidx.fragment.R$id: int action_container +com.xw.repo.bubbleseekbar.R$attr: int actionBarTabBarStyle +androidx.legacy.coreutils.R$dimen: R$dimen() +com.turingtechnologies.materialscrollbar.R$attr: int layout_collapseMode +wangdaye.com.geometricweather.R$attr: int dialogIcon +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionBar +com.turingtechnologies.materialscrollbar.Indicator: int getIndicatorHeight() +androidx.lifecycle.ReportFragment$LifecycleCallbacks +com.google.android.material.R$string: int mtrl_exceed_max_badge_number_content_description +androidx.constraintlayout.widget.R$styleable: int Transition_motionInterpolator +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_HAIL +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: int status +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_maxWidth +okhttp3.internal.ws.WebSocketProtocol: long CLOSE_MESSAGE_MAX +retrofit2.OkHttpCall$1: retrofit2.Callback val$callback +androidx.lifecycle.LifecycleRegistry +wangdaye.com.geometricweather.R$attr: int srcCompat +okhttp3.internal.http2.Http2Connection$6: int val$streamId +com.turingtechnologies.materialscrollbar.R$integer: int bottom_sheet_slide_duration +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemBackground +android.didikee.donate.R$layout: int abc_screen_toolbar +androidx.fragment.R$id: int accessibility_custom_action_17 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: io.reactivex.functions.Consumer onDrop +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_12 +okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,byte[]) +androidx.drawerlayout.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: int UnitType +wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean hasKey(java.lang.Object) +androidx.appcompat.widget.ActivityChooserView +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_17 +com.google.android.material.button.MaterialButton: void setBackgroundTintList(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Medium +okhttp3.internal.cache.CacheStrategy$Factory: long computeFreshnessLifetime() +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.ObservableSource[],io.reactivex.functions.Function) +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +androidx.swiperefreshlayout.R$integer: int status_bar_notification_info_maxnum +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_logo +androidx.fragment.R$layout: int notification_template_part_time +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_ab_back_material +androidx.hilt.lifecycle.R$styleable: int[] GradientColorItem +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.R$style: int Preference_DropDown_Material +com.google.android.material.textfield.TextInputLayout: void removeOnEditTextAttachedListener(com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onError(java.lang.Throwable) +com.google.android.material.tabs.TabLayout$TabView: void setTab(com.google.android.material.tabs.TabLayout$Tab) +com.google.android.material.R$styleable: int ThemeEnforcement_enforceTextAppearance +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.LocationEntity,int) +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemTextColor +wangdaye.com.geometricweather.R$string: int about_glide +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderFetchStrategy +android.didikee.donate.R$styleable: int[] ButtonBarLayout +androidx.appcompat.R$styleable: int Toolbar_titleTextAppearance +androidx.vectordrawable.animated.R$layout: int notification_action +wangdaye.com.geometricweather.R$style: int Animation_AppCompat_Dialog +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: int TRANSACTION_onWeatherServiceProviderChanged_0 +androidx.activity.R$id: int accessibility_custom_action_31 +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void cancel() +wangdaye.com.geometricweather.R$style: int material_image_button +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat +com.turingtechnologies.materialscrollbar.R$attr: int maxButtonHeight +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void request(long) +wangdaye.com.geometricweather.R$attr: int listChoiceIndicatorMultipleAnimated +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedWidthMinor() +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_previewSize +com.xw.repo.bubbleseekbar.R$dimen: int abc_button_inset_vertical_material +androidx.lifecycle.SavedStateHandleController: boolean mIsAttached +com.google.android.material.R$layout: int material_textinput_timepicker +james.adaptiveicon.R$attr: int popupTheme +androidx.constraintlayout.widget.R$id: int action_bar +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_MinWidth_Bridge +wangdaye.com.geometricweather.R$drawable: int widget_clock_day_vertical +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotationX +androidx.lifecycle.ClassesInfoCache$CallbackInfo: java.util.Map mHandlerToEvent +androidx.dynamicanimation.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_58 +com.google.android.material.R$style: int Platform_V21_AppCompat_Light +androidx.appcompat.R$attr: int contentInsetStartWithNavigation +cyanogenmod.providers.CMSettings$System: java.lang.String LOCKSCREEN_PIN_SCRAMBLE_LAYOUT +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) +cyanogenmod.profiles.ConnectionSettings: void setValue(int) +android.didikee.donate.R$styleable: int ViewBackgroundHelper_backgroundTint +android.didikee.donate.R$dimen: int notification_content_margin_start +com.turingtechnologies.materialscrollbar.R$style: int CardView_Light +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setShifting(boolean) +okhttp3.internal.cache.CacheInterceptor: boolean isEndToEnd(java.lang.String) +androidx.preference.R$style: int Base_Widget_AppCompat_EditText +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder callFactory(okhttp3.Call$Factory) +james.adaptiveicon.R$color: int primary_text_default_material_light +android.didikee.donate.R$string +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_GCM_SHA384 +androidx.appcompat.R$attr: int actionModeFindDrawable +cyanogenmod.themes.ThemeManager: void requestThemeChange(java.util.Map) +cyanogenmod.weather.RequestInfo$1: java.lang.Object createFromParcel(android.os.Parcel) +cyanogenmod.power.IPerformanceManager: boolean setPowerProfile(int) +wangdaye.com.geometricweather.settings.activities.CardDisplayManageActivity: CardDisplayManageActivity() +okhttp3.OkHttpClient: int writeTimeout +com.bumptech.glide.R$id: int forever +com.google.android.material.R$attr: int tabIndicator +okhttp3.Authenticator +com.xw.repo.bubbleseekbar.R$attr: int seekBarStyle +androidx.appcompat.R$styleable: int AlertDialog_buttonIconDimen +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric Metric +wangdaye.com.geometricweather.R$styleable: int Constraint_animate_relativeTo +androidx.viewpager.R$drawable: int notification_bg_normal +androidx.customview.R$drawable: R$drawable() +androidx.constraintlayout.widget.R$id: int decelerateAndComplete +com.google.android.material.R$id: int accessibility_custom_action_0 +com.jaredrummler.android.colorpicker.R$id: int notification_main_column_container +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableStart +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterOverflowTextColor +wangdaye.com.geometricweather.R$id: int widget_week_icon +okhttp3.internal.http1.Http1Codec$ChunkedSink +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex +androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedHeightMajor +androidx.preference.R$attr: int listPreferredItemPaddingEnd +androidx.constraintlayout.helper.widget.Layer: void setVisibility(int) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +androidx.preference.R$style: int Base_Widget_AppCompat_ListPopupWindow +com.bumptech.glide.integration.okhttp.R$dimen: int notification_large_icon_height +androidx.constraintlayout.widget.R$styleable: int Transform_android_rotationY +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onFailed() +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode +okhttp3.logging.HttpLoggingInterceptor$Level: HttpLoggingInterceptor$Level(java.lang.String,int) +com.google.android.material.R$style: int Widget_AppCompat_TextView_SpinnerItem +com.google.android.material.R$styleable: int AppCompatTheme_actionModePasteDrawable +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_Alert +com.google.android.material.R$styleable: int TextInputLayout_helperTextTextAppearance +okhttp3.Cache: okhttp3.Response get(okhttp3.Request) +io.reactivex.internal.subscriptions.SubscriptionArbiter: org.reactivestreams.Subscription actual +james.adaptiveicon.R$color: int dim_foreground_disabled_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_popupTheme +okhttp3.internal.http2.Hpack$Reader: Hpack$Reader(int,int,okio.Source) +com.google.android.material.tabs.TabLayout: void setupWithViewPager(androidx.viewpager.widget.ViewPager) +com.google.android.material.R$styleable: int AppCompatTheme_actionBarStyle +com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreferenceCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: java.lang.String Unit +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabText +com.google.android.material.R$id: int decelerateAndComplete +okhttp3.internal.cache.DiskLruCache: java.lang.String VERSION_1 +androidx.recyclerview.R$attr +okhttp3.internal.connection.RealConnection$1: okhttp3.internal.connection.StreamAllocation val$streamAllocation +com.google.android.material.transformation.TransformationChildCard: TransformationChildCard(android.content.Context) +okhttp3.internal.http.StatusLine +android.didikee.donate.R$style: int Base_V23_Theme_AppCompat_Light +androidx.viewpager2.R$id: int accessibility_custom_action_2 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_7 +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_alphabeticShortcut +com.google.android.material.R$dimen: int abc_text_size_menu_material +james.adaptiveicon.R$id: int title_template +okio.ForwardingSource: void close() +androidx.constraintlayout.widget.R$styleable: int[] ButtonBarLayout +androidx.appcompat.widget.Toolbar: void setOverflowIcon(android.graphics.drawable.Drawable) +okio.AsyncTimeout$2: okio.Source val$source +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windSpeedGust +okhttp3.ConnectionSpec: boolean isTls() +okio.GzipSource: okio.InflaterSource inflaterSource +okio.Buffer: okio.Buffer writeLong(long) +wangdaye.com.geometricweather.R$drawable: int cpv_ic_arrow_right_black_24dp +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Dialog +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +android.didikee.donate.R$dimen: int abc_action_bar_icon_vertical_padding_material +cyanogenmod.app.Profile: void removeProfileGroup(java.util.UUID) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void emit() +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +com.google.android.material.R$id: int accelerate +androidx.vectordrawable.R$string: int status_bar_notification_info_overflow +com.google.android.material.navigation.NavigationView: void setItemHorizontalPaddingResource(int) +androidx.constraintlayout.helper.widget.Layer +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation +androidx.constraintlayout.widget.R$id: int dragDown +wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format_use +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_toBottomOf +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_OutlinedButton +okio.ForwardingTimeout: boolean hasDeadline() +com.jaredrummler.android.colorpicker.R$id: int switchWidget +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource REMOTE +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_4G +androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_text_padding_right +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removeAllEncodedQueryParameters(java.lang.String) +james.adaptiveicon.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline5 -androidx.coordinatorlayout.widget.CoordinatorLayout: void setOnHierarchyChangeListener(android.view.ViewGroup$OnHierarchyChangeListener) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.functions.Function mapper -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_7 -androidx.constraintlayout.widget.R$id: int stop -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean -okhttp3.internal.http2.Http2Stream$FramingSource: long maxByteCount -androidx.viewpager.widget.PagerTabStrip: int getMinHeight() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: void setValue(java.lang.String) -androidx.drawerlayout.R$id: int italic -com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String APPLICATION_ID -cyanogenmod.app.ProfileGroup: android.net.Uri mSoundOverride -android.didikee.donate.R$styleable: int Toolbar_menu -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean feelsLike -androidx.preference.PreferenceDialogFragmentCompat: PreferenceDialogFragmentCompat() -wangdaye.com.geometricweather.R$attr: int bsb_thumb_color -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: int status -com.turingtechnologies.materialscrollbar.R$color: int primary_text_default_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: AccuDailyResult$DailyForecasts$Night$WindGust() -wangdaye.com.geometricweather.R$attr: int bsb_auto_adjust_section_mark -wangdaye.com.geometricweather.R$array: int duration_unit_values -androidx.preference.R$anim: int fragment_fade_enter -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_collapseContentDescription -com.google.android.material.R$styleable: int ConstraintSet_android_scaleX -com.google.android.material.R$id: int topPanel -wangdaye.com.geometricweather.R$id: int item_about_translator_flag -io.reactivex.Observable: java.lang.Object blockingFirst(java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_section_text -wangdaye.com.geometricweather.R$string: int nighttime -com.xw.repo.bubbleseekbar.R$attr: int alertDialogCenterButtons -androidx.appcompat.R$color: int abc_tint_switch_track -androidx.vectordrawable.animated.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -androidx.preference.CheckBoxPreference: CheckBoxPreference(android.content.Context,android.util.AttributeSet) -androidx.recyclerview.R$dimen: int item_touch_helper_swipe_escape_velocity -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.lang.String title -com.google.android.material.R$id: int design_menu_item_text -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.util.List _queryWeatherEntity_HourlyEntityList(java.lang.String,java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int windowActionBarOverlay -androidx.preference.R$styleable: int AppCompatTheme_checkboxStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: int unitArrayIndex -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List forecast -okhttp3.CacheControl: boolean immutable() +com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_layout +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCo(java.lang.Float) +androidx.preference.R$style: int Theme_AppCompat +com.bumptech.glide.R$layout: int notification_action +okhttp3.package-info +retrofit2.ParameterHandler$FieldMap: void apply(retrofit2.RequestBuilder,java.lang.Object) +wangdaye.com.geometricweather.R$color: int design_default_color_primary_variant +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listDividerAlertDialog +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityDestroyed(android.app.Activity) +androidx.transition.R$id: int action_text +com.google.android.material.R$styleable: int OnSwipe_dragScale +com.turingtechnologies.materialscrollbar.R$id: int navigation_header_container +com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_alpha +androidx.constraintlayout.widget.R$color: int abc_tint_default +cyanogenmod.platform.Manifest$permission: Manifest$permission() +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Latitude +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed +com.jaredrummler.android.colorpicker.R$styleable: int[] DrawerArrowToggle +androidx.preference.R$styleable: int Preference_android_order +androidx.constraintlayout.widget.R$string: int abc_toolbar_collapse_description +okio.RealBufferedSource: long readLong() +com.turingtechnologies.materialscrollbar.R$attr: int thumbTint +com.google.android.material.R$style: int Theme_AppCompat +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light +okio.RealBufferedSource$1: java.lang.String toString() +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemPaddingLeft +com.google.android.material.R$styleable: int Toolbar_contentInsetEndWithActions +wangdaye.com.geometricweather.R$attr: int msb_autoHide +okhttp3.internal.ws.WebSocketReader: okio.BufferedSource source +com.bumptech.glide.integration.okhttp.R$attr: int layout_anchor +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State CREATED +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_orientation +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getShortTemperatureText(android.content.Context,int) +com.google.android.material.R$dimen: int abc_list_item_height_large_material +retrofit2.CompletableFutureCallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +com.turingtechnologies.materialscrollbar.R$color: int mtrl_text_btn_text_color_selector +okhttp3.internal.platform.Android10Platform: okhttp3.internal.platform.Platform buildIfSupported() +com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingEnd +com.google.android.material.R$drawable: int notification_bg_normal +okhttp3.Response: java.lang.String message +wangdaye.com.geometricweather.R$attr: int showText +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeight +com.google.android.material.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_min +wangdaye.com.geometricweather.R$id: int dialog_location_help_manageContainer +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$002(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +android.didikee.donate.R$style: int Platform_AppCompat +androidx.work.impl.background.systemalarm.RescheduleReceiver: RescheduleReceiver() +androidx.legacy.coreutils.R$styleable: int ColorStateListItem_android_color +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.async.AsyncSession startAsyncSession() +com.google.android.material.R$styleable: int Constraint_drawPath +com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.R$string: int mtrl_picker_a11y_next_month +androidx.recyclerview.R$attr: int fastScrollEnabled +androidx.appcompat.R$dimen: int tooltip_precise_anchor_extra_offset +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String access$300(cyanogenmod.app.Profile$ProfileTrigger) +androidx.work.impl.utils.futures.AbstractFuture$Failure$1: AbstractFuture$Failure$1(java.lang.String) +io.reactivex.Observable: io.reactivex.Single toSortedList(int) +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoSource +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: MinutelyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +wangdaye.com.geometricweather.R$array: int weather_source_voices +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onStart_1 +okio.DeflaterSink: void flush() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_fontFamily +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: java.io.IOException thrownException +androidx.cardview.widget.CardView: void setCardBackgroundColor(int) +okio.AsyncTimeout$2: void close() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SearchView +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_scaleX +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabBar +androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableCompat +androidx.preference.R$styleable: int AppCompatTheme_colorButtonNormal +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +com.google.android.material.R$layout: int mtrl_picker_text_input_date +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_21 +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String sourceId +wangdaye.com.geometricweather.R$layout: int widget_day_week_tile +androidx.viewpager2.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$color: int abc_background_cache_hint_selector_material_dark +androidx.preference.R$attr: int goIcon +james.adaptiveicon.R$styleable: int DrawerArrowToggle_color +wangdaye.com.geometricweather.R$attr: int maxCharacterCount +androidx.appcompat.R$drawable: int abc_btn_check_material +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.reflect.Type responseType() +com.google.android.material.chip.Chip: void setBackgroundResource(int) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String LanguageCode +com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemRippleColor() +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_title +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_EMPTY_RENEGOTIATION_INFO_SCSV +wangdaye.com.geometricweather.remoteviews.config.Hilt_MultiCityWidgetConfigActivity: Hilt_MultiCityWidgetConfigActivity() +androidx.appcompat.R$attr: int indeterminateProgressStyle +android.didikee.donate.R$styleable: int[] LinearLayoutCompat_Layout cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_registerWeatherServiceProviderChangeListener -com.google.android.material.R$styleable: int AppCompatTheme_searchViewStyle -androidx.preference.R$attr: int statusBarBackground -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: AccuLocationResult$GeoPosition() -okhttp3.ConnectionPool: int connectionCount() -androidx.preference.R$styleable: int AppCompatTheme_actionBarItemBackground -com.jaredrummler.android.colorpicker.R$styleable: int ActionMenuItemView_android_minWidth -okhttp3.internal.ws.RealWebSocket: okhttp3.Call call -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int sourceMode -com.google.android.material.R$styleable: int FlowLayout_itemSpacing -androidx.preference.R$styleable: int PreferenceGroup_android_orderingFromXml -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: AccuMinuteResult$IntervalsBean() -cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemDrawable(int) -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean forecastDaily -androidx.constraintlayout.widget.R$attr: int currentState -androidx.constraintlayout.widget.R$styleable: int Constraint_android_transformPivotY -android.didikee.donate.R$drawable: int abc_textfield_default_mtrl_alpha -okhttp3.internal.Internal: void addLenient(okhttp3.Headers$Builder,java.lang.String) -wangdaye.com.geometricweather.R$string: int feedback_add_location_manually -com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.R$styleable: int Constraint_barrierDirection -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginBottom -okhttp3.internal.http2.Header: Header(java.lang.String,java.lang.String) -com.google.android.material.R$id: int accessibility_custom_action_30 -androidx.constraintlayout.widget.R$styleable: int Transform_android_rotation -androidx.lifecycle.viewmodel.R: R() -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_transparent_bg_color -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean validate(long) -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BOOLEAN -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: boolean isDisposed() -com.jaredrummler.android.colorpicker.R$attr: int layout_dodgeInsetEdges -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItem -androidx.appcompat.widget.Toolbar: void setNavigationOnClickListener(android.view.View$OnClickListener) -com.google.android.material.R$attr: int cardViewStyle -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: int humidity -com.google.android.material.R$attr: int menu -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_Overflow -androidx.appcompat.R$id: int chronometer -com.google.android.material.R$attr: int textInputLayoutFocusedRectEnabled -cyanogenmod.themes.ThemeManager: boolean processThemeResources(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: void setSpeed(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_progressBarStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature -androidx.appcompat.widget.AppCompatButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionLayout -okhttp3.internal.annotations.EverythingIsNonNull -android.didikee.donate.R$drawable: int abc_ic_star_half_black_16dp -com.turingtechnologies.materialscrollbar.R$attr: int actionModeCutDrawable -androidx.appcompat.widget.ActionBarContextView -wangdaye.com.geometricweather.R$styleable: int View_paddingEnd -androidx.appcompat.R$style: int Base_V22_Theme_AppCompat -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: io.reactivex.internal.queue.SpscArrayQueue queue -androidx.preference.R$dimen: int notification_right_icon_size -com.google.android.material.slider.RangeSlider: int getThumbRadius() -wangdaye.com.geometricweather.R$string: int search_menu_title -androidx.preference.R$string: int abc_menu_enter_shortcut_label -androidx.core.R$id: int forever -com.google.android.material.R$color: int mtrl_navigation_item_background_color -androidx.preference.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -com.google.gson.stream.JsonReader: int peeked -wangdaye.com.geometricweather.R$layout: int item_weather_daily_margin -androidx.appcompat.R$color: int background_material_light -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pm25 -androidx.constraintlayout.widget.R$dimen: int abc_cascading_menus_min_smallest_width -androidx.preference.R$style: int Widget_AppCompat_DropDownItem_Spinner -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: int UnitType -androidx.preference.R$styleable: int RecyclerView_fastScrollEnabled -com.google.android.material.button.MaterialButtonToggleGroup: void setupButtonChild(com.google.android.material.button.MaterialButton) -retrofit2.Converter$Factory -wangdaye.com.geometricweather.R$attr: int ratingBarStyle -wangdaye.com.geometricweather.R$dimen: int design_snackbar_elevation -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.lang.Throwable error -androidx.work.R$id: int icon_group -okhttp3.internal.connection.RouteDatabase: RouteDatabase() -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconMargin -androidx.appcompat.resources.R$dimen: int compat_button_inset_horizontal_material -okhttp3.internal.http1.Http1Codec: okio.Source newUnknownLengthSource() -androidx.core.R$id: int action_text -androidx.constraintlayout.widget.R$id: int icon -com.xw.repo.bubbleseekbar.R$attr: int colorPrimary -androidx.appcompat.widget.Toolbar: int getCurrentContentInsetEnd() -com.google.android.material.R$styleable: int Slider_thumbElevation -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableBottom -com.jaredrummler.android.colorpicker.R$color: int highlighted_text_material_light -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitation -com.google.gson.internal.$Gson$Types$WildcardTypeImpl -james.adaptiveicon.R$styleable: int DrawerArrowToggle_arrowHeadLength -com.turingtechnologies.materialscrollbar.R$attr: int textAppearancePopupMenuHeader -androidx.work.NetworkType: androidx.work.NetworkType CONNECTED -androidx.preference.R$styleable: int[] ListPopupWindow -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property AqiIndex -wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitlePanelStyle -androidx.preference.R$layout: int notification_template_custom_big -com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontWeight -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_icon_null_animation -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.ObservableSource fallback -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableTop -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dividerHorizontal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX() -android.didikee.donate.R$styleable: int MenuView_preserveIconSpacing -androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat_Dark -cyanogenmod.themes.IThemeService$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.work.impl.WorkDatabase: WorkDatabase() -androidx.constraintlayout.widget.R$styleable: int StateSet_defaultState -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_hideMotionSpec -wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogTitle -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_DES_CBC_SHA -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Button -cyanogenmod.externalviews.IExternalViewProvider: void onStop() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias -io.reactivex.internal.util.VolatileSizeArrayList: java.util.ListIterator listIterator(int) -androidx.lifecycle.ProcessLifecycleOwnerInitializer -androidx.constraintlayout.widget.R$id: int action_bar_container -james.adaptiveicon.R$styleable: int[] MenuView -androidx.legacy.coreutils.R$dimen: int compat_notification_large_icon_max_width +retrofit2.RequestFactory +okhttp3.Response: okhttp3.Request request +androidx.recyclerview.widget.StaggeredGridLayoutManager +androidx.lifecycle.ProcessLifecycleOwner: int mResumedCounter +james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setLabel(java.lang.String) +com.google.android.material.R$styleable: int Constraint_layout_goneMarginBottom +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onAttach() +io.reactivex.internal.observers.ForEachWhileObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.activity.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle +androidx.appcompat.R$drawable: int abc_ic_arrow_drop_right_black_24dp +wangdaye.com.geometricweather.R$drawable: int cpv_alpha +wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_divider +com.google.android.material.R$attr: int cornerFamilyBottomRight +retrofit2.Platform: retrofit2.Platform get() +cyanogenmod.themes.ThemeManager: boolean isThemeBeingProcessed(java.lang.String) +androidx.viewpager2.widget.ViewPager2: int getScrollState() +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: long serialVersionUID +com.google.android.material.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +com.google.android.material.R$color: int mtrl_chip_ripple_color +android.didikee.donate.R$attr: int listPreferredItemHeightLarge +com.google.android.material.R$styleable: int[] GradientColor +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActivityChooserView +com.jaredrummler.android.colorpicker.R$attr: int colorControlActivated +okhttp3.RealCall: boolean forWebSocket +wangdaye.com.geometricweather.R$color: int colorTextDark2nd +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: int requestFusion(int) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationZ +com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getBackgroundTintList() +com.google.android.material.R$attr: int onTouchUp +androidx.lifecycle.Transformations$2: androidx.lifecycle.LiveData mSource +androidx.preference.R$styleable: int AppCompatTheme_actionBarStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_24 +androidx.preference.R$styleable: int MenuItem_android_enabled +james.adaptiveicon.R$styleable: int AlertDialog_listItemLayout +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTheme +androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupMenu +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_RC4_128_MD5 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_android_windowAnimationStyle +com.google.android.material.stateful.ExtendableSavedState: android.os.Parcelable$Creator CREATOR +io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer,io.reactivex.functions.Action) +androidx.constraintlayout.widget.R$attr: int searchIcon +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: double Value +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display1 +okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String,java.lang.String) +okhttp3.Cache: void close() +okhttp3.internal.http2.Huffman: Huffman() +androidx.core.R$styleable: int FontFamilyFont_fontWeight +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +androidx.work.R$styleable +wangdaye.com.geometricweather.R$string: int abc_activitychooserview_choose_application +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListPopupWindow +com.bumptech.glide.integration.okhttp.R$dimen: int notification_subtext_size +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_checked +wangdaye.com.geometricweather.R$attr: int msb_hideDelayInMilliseconds +androidx.constraintlayout.widget.R$attr: int textLocale +com.google.android.material.R$id: int progress_circular +wangdaye.com.geometricweather.R$color: int lightPrimary_3 +wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_xml +androidx.constraintlayout.widget.R$color: int secondary_text_disabled_material_dark +androidx.preference.R$layout: int abc_dialog_title_material +james.adaptiveicon.R$attr: int colorPrimary +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void cancel() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +com.github.rahatarmanahmed.cpv.BuildConfig +androidx.lifecycle.FullLifecycleObserver: void onCreate(androidx.lifecycle.LifecycleOwner) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Subhead +cyanogenmod.externalviews.KeyguardExternalView$2: KeyguardExternalView$2(cyanogenmod.externalviews.KeyguardExternalView) +com.xw.repo.bubbleseekbar.R$attr: int layout +com.jaredrummler.android.colorpicker.R$attr: int stackFromEnd +okhttp3.internal.http2.Http2Connection: int AWAIT_PING +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +com.bumptech.glide.integration.okhttp.R$dimen: int notification_media_narrow_margin +androidx.appcompat.widget.SwitchCompat: boolean getTargetCheckedState() +com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextAppearance(int) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_DropDown +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListPopupWindow +com.turingtechnologies.materialscrollbar.R$attr: int windowFixedWidthMajor +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItem +androidx.work.R$styleable: int GradientColorItem_android_offset +com.google.android.material.R$attr: int dayInvalidStyle +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_speedValue +android.didikee.donate.R$attr: int buttonGravity +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight +com.google.android.material.R$attr: int layout_constraintHeight_max +com.google.android.material.R$attr: int measureWithLargestChild +okio.SegmentedByteString: void write(java.io.OutputStream) +androidx.appcompat.R$styleable: int FontFamilyFont_fontVariationSettings +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getEndIconContentDescription() +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_ttcIndex +cyanogenmod.hardware.CMHardwareManager: boolean set(int,boolean) +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: int skip +android.didikee.donate.R$attr: int queryBackground +com.xw.repo.bubbleseekbar.R$bool: int abc_allow_stacked_button_bar +androidx.preference.R$styleable: int TextAppearance_android_typeface +wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_layout +wangdaye.com.geometricweather.R$animator: int weather_fog_2 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +com.google.android.material.R$style: int ShapeAppearanceOverlay_Cut +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat +com.google.android.material.R$color: int design_fab_stroke_end_inner_color +wangdaye.com.geometricweather.R$color: int mtrl_tabs_icon_color_selector_colored +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.R$attr: int bsb_show_thumb_text +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.internal.operators.observable.ObservableRefCount parent +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: java.lang.Integer direction +androidx.work.R$drawable: int notification_icon_background +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_scaleX +wangdaye.com.geometricweather.settings.fragments.UnitSettingsFragment +okhttp3.Cookie: boolean hostOnly() +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_title +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActivityChooserView +wangdaye.com.geometricweather.R$dimen: int design_fab_size_mini +com.google.android.material.R$styleable: int AppCompatTheme_dividerVertical +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ctd +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_corner_radius_small +okhttp3.internal.cache.CacheStrategy$Factory: boolean hasConditions(okhttp3.Request) +cyanogenmod.app.StatusBarPanelCustomTile: int id +androidx.appcompat.resources.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean done +okhttp3.internal.Util: void closeQuietly(java.net.ServerSocket) +androidx.constraintlayout.widget.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearTodayStyle +wangdaye.com.geometricweather.R$drawable: int abc_ic_clear_material +com.xw.repo.bubbleseekbar.R$attr: int title +wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_dark +androidx.constraintlayout.widget.R$style: int AlertDialog_AppCompat +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitationProbability +android.didikee.donate.R$drawable: int abc_dialog_material_background +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginTop +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_minHeight +com.turingtechnologies.materialscrollbar.R$attr: int msb_scrollMode +wangdaye.com.geometricweather.R$id: int widget_day_week_icon +androidx.fragment.R$id: int accessibility_custom_action_8 +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginLeft +com.google.android.material.R$string: int clear_text_end_icon_content_description +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindLevel(java.lang.String) +okhttp3.internal.connection.StreamAllocation: okhttp3.Route route +james.adaptiveicon.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_lineHeight +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTint +com.xw.repo.bubbleseekbar.R$dimen: int abc_cascading_menus_min_smallest_width +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_popupBackground +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: long serialVersionUID +cyanogenmod.providers.CMSettings$System: java.lang.String FORWARD_LOOKUP_PROVIDER +com.turingtechnologies.materialscrollbar.R$dimen: int notification_subtext_size +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItemSmall +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarStyle +androidx.preference.R$id: int accessibility_custom_action_12 +wangdaye.com.geometricweather.R$layout: int mtrl_layout_snackbar_include +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter open(int,java.lang.String) +wangdaye.com.geometricweather.R$string: int content_des_no_precipitation +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String title +androidx.appcompat.R$dimen: int abc_button_inset_vertical_material +com.google.android.material.R$attr: int layout_constraintBottom_creator +androidx.appcompat.R$drawable: int abc_dialog_material_background +com.google.android.material.R$style: int Widget_AppCompat_ListView +james.adaptiveicon.R$styleable: int ActionBar_contentInsetStart +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceName(android.content.Context) +androidx.core.app.JobIntentService +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getEn_US() +android.didikee.donate.R$attr: int alertDialogCenterButtons +androidx.work.impl.workers.DiagnosticsWorker: DiagnosticsWorker(android.content.Context,androidx.work.WorkerParameters) +james.adaptiveicon.R$styleable: int SearchView_commitIcon +wangdaye.com.geometricweather.R$layout: int widget_week +androidx.vectordrawable.R$dimen: int notification_content_margin_start +android.didikee.donate.R$styleable: int CompoundButton_android_button +james.adaptiveicon.R$styleable: int[] View +androidx.swiperefreshlayout.R$string: int status_bar_notification_info_overflow +james.adaptiveicon.R$attr: int state_above_anchor +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.Observer downstream +cyanogenmod.weather.RequestInfo$1 +wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotationY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String getValue() +io.reactivex.internal.observers.BlockingObserver: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_hide_motion_spec +wangdaye.com.geometricweather.R$attr: int activityChooserViewStyle +wangdaye.com.geometricweather.R$string: int widget_clock_day_week +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_auto_adjust_section_mark +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial() +android.didikee.donate.R$style: int Base_Widget_AppCompat_Spinner_Underlined +okhttp3.Credentials +cyanogenmod.themes.ThemeChangeRequest$Builder: ThemeChangeRequest$Builder(android.content.res.ThemeConfig) +com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector YEAR +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: java.lang.String icon +com.google.android.material.slider.BaseSlider: java.util.List getValues() +retrofit2.ParameterHandler$1: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.xw.repo.bubbleseekbar.R$attr: int thickness +wangdaye.com.geometricweather.R$style: int TestStyleWithLineHeightAppearance +com.google.android.material.R$layout: int notification_action +okhttp3.internal.http2.Http2Connection$PingRunnable: int payload2 +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean requestDismissAndStartActivity(android.content.Intent) +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float NitrogenMonoxide +androidx.loader.R$styleable: int GradientColor_android_endY +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_SLEET +com.google.android.material.R$styleable: int[] Badge +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizePresetSizes +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_disabled_material_light +com.turingtechnologies.materialscrollbar.R$attr: int actionViewClass +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COL_VALUE +james.adaptiveicon.R$attr: int selectableItemBackground +james.adaptiveicon.R$styleable: int MenuGroup_android_orderInCategory +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceScreenStyle +com.google.android.material.button.MaterialButton: void setStrokeWidth(int) +wangdaye.com.geometricweather.R$attr: int windowFixedWidthMajor +com.google.android.material.R$attr: int hintTextAppearance +com.turingtechnologies.materialscrollbar.R$layout: int mtrl_layout_snackbar +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long REQUEST_MASK +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String EnglishName +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: int getStatus() +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getDailyForecast() +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit PERCENT +com.google.android.material.R$styleable: int AppCompatTheme_colorError +com.google.android.material.R$dimen: int mtrl_navigation_item_icon_size +wangdaye.com.geometricweather.R$dimen: int design_tab_scrollable_min_width +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport parent +wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_hovered_alpha +androidx.preference.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +androidx.loader.R$styleable: int GradientColor_android_type +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_font +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_material_dark +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +com.google.android.material.R$styleable: int ActionBar_navigationMode +wangdaye.com.geometricweather.R$string: int key_precipitation_unit +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +wangdaye.com.geometricweather.R$dimen: int notification_right_icon_size +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType[] values() +cyanogenmod.app.Profile: void setRingMode(cyanogenmod.profiles.RingModeSettings) +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_listLayout +wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary_dark +io.reactivex.internal.util.ExceptionHelper$Termination: java.lang.Throwable fillInStackTrace() +com.turingtechnologies.materialscrollbar.R$id: int src_over +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.Scheduler$Worker worker +io.reactivex.internal.util.AtomicThrowable: boolean isTerminated() +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_right_mtrl_dark +wangdaye.com.geometricweather.R$styleable: int Constraint_android_minWidth +wangdaye.com.geometricweather.R$attr: int contentInsetStartWithNavigation +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_CompactMenu +cyanogenmod.app.Profile$ProfileTrigger$1 +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function,boolean) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchGenericMotionEvent(android.view.MotionEvent) +cyanogenmod.providers.CMSettings$System: int getInt(android.content.ContentResolver,java.lang.String) +com.google.android.material.R$attr: int customPixelDimension +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling +okhttp3.internal.http1.Http1Codec: int STATE_READING_RESPONSE_BODY +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_fontFamily +cyanogenmod.externalviews.KeyguardExternalView$8: KeyguardExternalView$8(cyanogenmod.externalviews.KeyguardExternalView,boolean) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_COLOR_ADJUSTMENT_VALIDATOR +androidx.appcompat.resources.R$id: int tag_accessibility_pane_title +androidx.preference.R$attr: int backgroundSplit +wangdaye.com.geometricweather.R$drawable: int ic_mtrl_checked_circle +androidx.constraintlayout.widget.R$attr: int waveDecay +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotation +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean isDisposed() +okhttp3.Cookie: java.lang.String parseDomain(java.lang.String) +james.adaptiveicon.R$styleable: int MenuItem_android_menuCategory +cyanogenmod.app.CMStatusBarManager: void publishTile(int,cyanogenmod.app.CustomTile) +androidx.constraintlayout.widget.R$color: int notification_action_color_filter +androidx.work.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassDescription(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int layout_scrollInterpolator +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitation +io.reactivex.internal.util.VolatileSizeArrayList: boolean equals(java.lang.Object) +android.didikee.donate.R$styleable: int ActionBar_subtitleTextStyle +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: java.util.concurrent.TimeUnit unit +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableStart +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String en_US +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.lang.String accuracy +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_1_30 +io.reactivex.internal.subscriptions.BasicQueueSubscription: BasicQueueSubscription() +com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getZh_CN() +james.adaptiveicon.R$drawable: int abc_switch_thumb_material +com.google.android.material.R$dimen: int material_font_2_0_box_collapsed_padding_top +androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$styleable: int View_android_focusable +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstHorizontalBias +wangdaye.com.geometricweather.R$styleable: int SearchView_queryHint +androidx.preference.R$attr: int dialogTheme +okhttp3.Response: okhttp3.Response priorResponse +okhttp3.internal.http2.Http2: byte FLAG_ACK +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Button +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function,boolean,int) +androidx.fragment.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_pivotX +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_id +org.greenrobot.greendao.AbstractDao: long insertWithoutSettingPk(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$anim: int abc_tooltip_enter +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider getInstance(java.lang.String) +android.didikee.donate.R$style: int Platform_V25_AppCompat_Light +com.jaredrummler.android.colorpicker.R$id: int multiply +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: double Value +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.appcompat.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$attr: int dialogPreferenceStyle +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +okio.InflaterSource: okio.Timeout timeout() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.os.Bundle mOptions +retrofit2.http.PartMap +com.xw.repo.bubbleseekbar.R$attr: int buttonPanelSideLayout +com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_entryValues +cyanogenmod.weather.WeatherInfo: double access$1302(cyanogenmod.weather.WeatherInfo,double) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setPressure(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setId(java.lang.Long) +wangdaye.com.geometricweather.R$attr: int endIconMode +com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarTextViewStyle +cyanogenmod.app.IProfileManager$Stub$Proxy: void removeNotificationGroup(android.app.NotificationGroup) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_orderInCategory +androidx.viewpager2.R$id: int accessibility_custom_action_28 +wangdaye.com.geometricweather.R$id: int shades_layout +androidx.preference.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$attr: int deltaPolarAngle +cyanogenmod.weather.RequestInfo: int hashCode() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: boolean done +wangdaye.com.geometricweather.R$color: int mtrl_btn_text_color_disabled +wangdaye.com.geometricweather.settings.activities.DailyTrendDisplayManageActivity: DailyTrendDisplayManageActivity() +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver +android.didikee.donate.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +androidx.activity.R$dimen: int notification_main_column_padding_top +androidx.fragment.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +okio.ByteString: okio.ByteString md5() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: int UnitType +androidx.constraintlayout.widget.R$dimen: int notification_top_pad +cyanogenmod.app.ProfileManager: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) +retrofit2.ParameterHandler$QueryMap: boolean encoded +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: double Value +androidx.appcompat.R$dimen: int notification_media_narrow_margin +com.bumptech.glide.R$dimen: int compat_notification_large_icon_max_width +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult +androidx.core.R$id: int normal +com.google.android.material.R$styleable: int CompoundButton_buttonTint +androidx.preference.R$style: int Base_V22_Theme_AppCompat_Light +okhttp3.internal.http2.Http2Stream$FramingSink: long EMIT_BUFFER_SIZE +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: long serialVersionUID +okhttp3.internal.tls.DistinguishedNameParser: DistinguishedNameParser(javax.security.auth.x500.X500Principal) +android.didikee.donate.R$drawable: int abc_ic_ab_back_material +androidx.activity.R$styleable: int FontFamily_fontProviderCerts +androidx.core.R$styleable: R$styleable() +androidx.work.R$id: int accessibility_custom_action_0 +androidx.preference.R$dimen: int notification_main_column_padding_top +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_strokeWidth +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.ObservableSource source +wangdaye.com.geometricweather.R$drawable: int notif_temp_17 +androidx.fragment.app.BackStackState +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Title +com.google.android.material.appbar.CollapsingToolbarLayout: long getScrimAnimationDuration() +okio.Buffer: okio.Buffer write(byte[],int,int) +cyanogenmod.profiles.ConnectionSettings: int mValue +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$attr: int actionBarSize +io.reactivex.internal.queue.SpscArrayQueue: boolean isEmpty() +androidx.appcompat.R$attr: int listItemLayout +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.CMWeatherManager getInstance(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setFeelsLike(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean) +androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context) +androidx.preference.R$styleable: int TextAppearance_android_shadowDx +com.google.android.material.R$dimen: int design_appbar_elevation +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_font +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_dither +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String[] VALID_KEYS +wangdaye.com.geometricweather.common.basic.models.weather.UV +com.xw.repo.bubbleseekbar.R$attr: int fontProviderAuthority +com.google.android.material.R$styleable: int Constraint_constraint_referenced_ids +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean done +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_LABEL +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: long EndEpochDate +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_drawableSize +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_meta_shortcut_label +wangdaye.com.geometricweather.R$attr: int startIconTint +james.adaptiveicon.R$attr: int logo +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.internal.disposables.SequentialDisposable upstream +com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_thumb_material +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetLeft +androidx.constraintlayout.widget.R$attr: int buttonBarStyle +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pressure +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event valueOf(java.lang.String) +androidx.appcompat.widget.AppCompatImageButton: void setImageDrawable(android.graphics.drawable.Drawable) +okhttp3.internal.http2.Http2: byte FLAG_END_PUSH_PROMISE +androidx.vectordrawable.animated.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.AlertEntity) +androidx.lifecycle.LiveData: void assertMainThread(java.lang.String) +okhttp3.Cache$CacheResponseBody$1: Cache$CacheResponseBody$1(okhttp3.Cache$CacheResponseBody,okio.Source,okhttp3.internal.cache.DiskLruCache$Snapshot) +cyanogenmod.externalviews.KeyguardExternalView$8: boolean val$showing +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: void cancel() +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_hideOnContentScroll +androidx.recyclerview.widget.GridLayoutManager +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_disabled_elevation +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +okhttp3.internal.http.RealInterceptorChain +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.functions.BiPredicate predicate +okhttp3.MultipartBody$Part +androidx.preference.R$attr: int hideOnContentScroll +wangdaye.com.geometricweather.R$attr: int layout_anchorGravity +io.reactivex.internal.subscribers.StrictSubscriber: boolean done +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +com.jaredrummler.android.colorpicker.R$attr: int preferenceStyle +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onComplete() +cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(java.lang.String,java.lang.String,android.net.Uri,android.net.Uri) +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemTextAppearance +androidx.recyclerview.R$styleable: int GradientColor_android_type +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: CircularRevealCoordinatorLayout(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$drawable: int notify_panel_notification_icon_bg +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display2 +com.google.android.material.appbar.CollapsingToolbarLayout: int getScrimAlpha() +com.google.android.material.R$styleable: int TabLayout_tabInlineLabel +wangdaye.com.geometricweather.R$attr: int cpv_showOldColor +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_visible +cyanogenmod.app.CMTelephonyManager +androidx.preference.R$drawable: int abc_ic_voice_search_api_material +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void attachEntity(java.lang.Object) +androidx.preference.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: MfForecastResult$DailyForecast$Weather() +wangdaye.com.geometricweather.R$id: int cpv_color_image_view +okhttp3.RealCall$1: void timedOut() +com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context,android.util.AttributeSet) +androidx.preference.MultiSelectListPreference +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object DONE +okio.BufferedSink: okio.BufferedSink writeDecimalLong(long) +androidx.appcompat.R$id: int activity_chooser_view_content +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_padding_bottom +wangdaye.com.geometricweather.db.entities.AlertEntity: AlertEntity(java.lang.Long,java.lang.String,java.lang.String,long,java.util.Date,long,java.lang.String,java.lang.String,java.lang.String,int,int) +androidx.appcompat.widget.Toolbar: void setSubtitle(java.lang.CharSequence) +androidx.vectordrawable.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.R$id: int widget_week_temp_3 +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColorHint +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedReadableDb(java.lang.String) +androidx.work.R$id: int accessibility_custom_action_3 +com.google.android.material.R$styleable: int CardView_android_minHeight +androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_creator +android.didikee.donate.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.R$styleable: int MenuView_android_headerBackground +wangdaye.com.geometricweather.R$styleable: int Toolbar_logoDescription +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitationProbability +android.didikee.donate.R$styleable: int Toolbar_titleTextColor +com.google.android.material.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeAppearance +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_tileMode +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256 wangdaye.com.geometricweather.common.basic.models.weather.Pollen: int getPollenColor(android.content.Context,java.lang.Integer) -androidx.appcompat.R$attr: int windowNoTitle -okhttp3.internal.connection.RealConnection: void onStream(okhttp3.internal.http2.Http2Stream) -com.xw.repo.bubbleseekbar.R$layout -androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_android_alpha -androidx.appcompat.R$styleable: int MenuItem_android_checkable -com.google.android.material.floatingactionbutton.FloatingActionButton: int getExpandedComponentIdHint() -com.turingtechnologies.materialscrollbar.R$string -androidx.appcompat.resources.R$id: int italic -androidx.swiperefreshlayout.R$id: int line1 -android.didikee.donate.R$attr: int titleMarginTop -com.google.android.material.R$styleable: int[] ClockHandView -androidx.dynamicanimation.R$styleable: int GradientColor_android_endX -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -james.adaptiveicon.R$styleable: int SearchView_suggestionRowLayout -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$string: int abc_search_hint -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onCross -androidx.coordinatorlayout.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingTop -okhttp3.Challenge: java.util.Map authParams() -wangdaye.com.geometricweather.R$attr: int boxBackgroundMode -wangdaye.com.geometricweather.R$attr: int contentInsetRight -com.turingtechnologies.materialscrollbar.R$id: int filled -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -androidx.appcompat.app.ToolbarActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: org.reactivestreams.Subscription upstream -androidx.preference.R$styleable: int FontFamily_fontProviderFetchStrategy -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -okio.Okio$1: okio.Timeout timeout() -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void dispose() -androidx.hilt.R$color: int notification_action_color_filter -androidx.work.R$style -org.greenrobot.greendao.AbstractDao: void deleteByKeyInTx(java.lang.Object[]) -wangdaye.com.geometricweather.R$string: int key_temperature_unit -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HEADSET_CONNECT_PLAYER_VALIDATOR -cyanogenmod.providers.CMSettings$System: int getInt(android.content.ContentResolver,java.lang.String,int) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void dispose() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer realFeelTemperature -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listDividerAlertDialog -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mVersionSystemProperty -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getDate() -com.google.android.material.R$string: int mtrl_picker_invalid_format_use -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer altitude -okhttp3.Headers: Headers(java.lang.String[]) -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertInTxIterable -wangdaye.com.geometricweather.R$anim: int abc_tooltip_exit -com.google.android.material.navigation.NavigationView: android.view.Menu getMenu() -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void dispose() -cyanogenmod.app.ICMTelephonyManager: boolean isDataConnectionEnabled() -androidx.preference.R$style: int Widget_AppCompat_Spinner -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_seekbar -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void innerComplete() -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.db.entities.AlertEntity: int getPriority() -com.google.android.material.navigation.NavigationView: android.graphics.drawable.Drawable getItemBackground() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense -androidx.appcompat.R$color: int button_material_dark -com.google.android.material.transformation.FabTransformationSheetBehavior -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_toBottomOf +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +okhttp3.Request$Builder: okhttp3.Request$Builder addHeader(java.lang.String,java.lang.String) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_3 +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetStart +wangdaye.com.geometricweather.settings.activities.SettingsActivity +okhttp3.Cache: void evictAll() +okhttp3.OkHttpClient$1: int code(okhttp3.Response$Builder) +com.google.android.material.R$styleable: int RadialViewGroup_materialCircleRadius +wangdaye.com.geometricweather.R$styleable: int Transition_layoutDuringTransition +androidx.loader.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.R$styleable: int ArcProgress_arc_angle +androidx.hilt.lifecycle.R$drawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: double Value +androidx.preference.R$attr: int measureWithLargestChild +okhttp3.Cache$CacheResponseBody: Cache$CacheResponseBody(okhttp3.internal.cache.DiskLruCache$Snapshot,java.lang.String,java.lang.String) +androidx.preference.ListPreference: ListPreference(android.content.Context,android.util.AttributeSet) +io.reactivex.exceptions.MissingBackpressureException +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference upstream +com.google.android.material.R$attr: int backgroundStacked +com.jaredrummler.android.colorpicker.R$attr: int hideOnContentScroll +com.google.android.material.R$attr: int arrowHeadLength +com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$id: int search_close_btn +cyanogenmod.app.CustomTile$ExpandedStyle$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setUnit(java.lang.String) +james.adaptiveicon.R$styleable: int SwitchCompat_trackTint +com.google.android.material.R$style: int CardView +cyanogenmod.app.ICMTelephonyManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +android.didikee.donate.R$attr: int showTitle +com.google.android.material.bottomappbar.BottomAppBar: void setElevation(float) +androidx.constraintlayout.widget.R$style: int Base_AlertDialog_AppCompat_Light +androidx.preference.R$anim: R$anim() +androidx.constraintlayout.widget.R$attr: int percentHeight +androidx.core.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getIconResEnd() +androidx.loader.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: java.lang.String Localized +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String sunRise +androidx.legacy.coreutils.R$id: int italic +wangdaye.com.geometricweather.R$id: int glide_custom_view_target_tag +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean cancelled +com.google.android.material.R$styleable: int AppBarLayoutStates_state_lifted +wangdaye.com.geometricweather.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +androidx.preference.R$attr: int positiveButtonText +wangdaye.com.geometricweather.R$layout: int item_pollen_daily +androidx.hilt.lifecycle.R$id: R$id() +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isMaybe +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_UID +com.turingtechnologies.materialscrollbar.R$attr: int fontFamily +okio.ForwardingTimeout: okio.Timeout clearDeadline() +androidx.loader.R$id: int right_icon +com.turingtechnologies.materialscrollbar.R$drawable +wangdaye.com.geometricweather.R$integer: int app_bar_elevation_anim_duration +com.xw.repo.bubbleseekbar.R$id: int submit_area +com.google.android.material.bottomnavigation.BottomNavigationView: void setOnNavigationItemReselectedListener(com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemReselectedListener) +androidx.appcompat.R$styleable: int Toolbar_logoDescription +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.WeatherEntity,int) +com.google.android.material.slider.Slider: float getThumbElevation() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Button +okhttp3.internal.Util: boolean nonEmptyIntersection(java.util.Comparator,java.lang.String[],java.lang.String[]) +com.xw.repo.bubbleseekbar.R$id: int line1 +okio.Buffer: okio.ByteString readByteString() +io.reactivex.internal.util.VolatileSizeArrayList: boolean containsAll(java.util.Collection) +androidx.customview.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$styleable: int Chip_closeIconSize +wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_material +wangdaye.com.geometricweather.R$styleable: int ButtonBarLayout_allowStacking +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_statusBarBackground +okio.RealBufferedSource: java.lang.String toString() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_MEDIUM_COLOR_VALIDATOR +com.jaredrummler.android.colorpicker.R$id: int action_bar_container +com.google.android.material.R$attr: int passwordToggleTintMode +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_function_shortcut_label +wangdaye.com.geometricweather.R$styleable: int TagView_checked_background_color +androidx.transition.R$styleable: int FontFamilyFont_fontWeight +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: java.lang.String getInterfaceDescriptor() +android.didikee.donate.R$drawable: int abc_textfield_search_default_mtrl_alpha +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTINUATION +com.jaredrummler.android.colorpicker.R$color: int abc_background_cache_hint_selector_material_light +okhttp3.RealCall$1: okhttp3.RealCall this$0 com.google.android.material.R$styleable: int TextInputLayout_prefixTextAppearance -androidx.appcompat.R$styleable: int GradientColor_android_centerColor -com.jaredrummler.android.colorpicker.R$attr: int windowNoTitle -io.reactivex.internal.schedulers.AbstractDirectTask: boolean isDisposed() -com.google.android.material.button.MaterialButton: void setBackgroundResource(int) -okhttp3.Request$Builder: okhttp3.Request$Builder url(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetStartWithNavigation -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: MfForecastResult$Position() -retrofit2.adapter.rxjava2.BodyObservable: io.reactivex.Observable upstream -wangdaye.com.geometricweather.R$attr: int layout_constraintStart_toEndOf -androidx.vectordrawable.animated.R$id: int time -retrofit2.CallAdapter -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState CLEARED -com.turingtechnologies.materialscrollbar.R$attr: int actionBarSplitStyle -android.didikee.donate.R$color: int material_deep_teal_500 -wangdaye.com.geometricweather.R$styleable: int[] Fragment -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_disableDependentsState -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_3 -androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setFillColor(int) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_AutoCompleteTextView -androidx.viewpager2.R$drawable: int notification_template_icon_low_bg -okhttp3.internal.http2.Settings: int MAX_FRAME_SIZE -androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar_Small -androidx.appcompat.R$layout: int abc_action_mode_close_item_material -androidx.appcompat.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_android_background -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldIndex -cyanogenmod.themes.IThemeProcessingListener$Stub -androidx.transition.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary DegreeDaySummary -androidx.lifecycle.ProcessLifecycleOwner$3$1: androidx.lifecycle.ProcessLifecycleOwner$3 this$1 -androidx.preference.R$style: int Theme_AppCompat_DayNight -androidx.preference.R$styleable: int AppCompatTheme_actionBarWidgetTheme -androidx.hilt.lifecycle.R$id: int notification_main_column_container -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Large -androidx.constraintlayout.widget.R$attr: int viewInflaterClass -okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] WILDCARD_LABEL -com.github.rahatarmanahmed.cpv.R$dimen: R$dimen() -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Response execute() -android.support.v4.app.INotificationSideChannel$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.google.android.material.R$styleable: int Toolbar_titleTextAppearance -okhttp3.internal.http2.Http2Connection$4: java.util.List val$requestHeaders -wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity -com.jaredrummler.android.colorpicker.R$id: int cpv_preference_preview_color_panel -android.didikee.donate.R$attr: int dividerVertical -android.didikee.donate.R$dimen: int abc_control_padding_material -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_toTopOf -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric Metric -android.didikee.donate.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -com.xw.repo.bubbleseekbar.R$attr: int navigationMode -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabBarStyle -androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat_Light -cyanogenmod.app.LiveLockScreenManager: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -com.google.android.material.R$dimen: int mtrl_slider_track_height -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeSplitBackground -wangdaye.com.geometricweather.common.basic.models.weather.Daily -okio.Buffer: byte[] DIGITS -com.google.android.material.R$bool -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onScreenTurnedOff() -io.reactivex.internal.operators.observable.ObservableGroupBy$State -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animAutostart -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed Speed -androidx.preference.R$layout: int abc_action_bar_up_container -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Listener listener -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginStart -wangdaye.com.geometricweather.R$attr: int displayOptions -com.google.android.material.R$attr: int dragScale -androidx.lifecycle.extensions.R$attr: int ttcIndex -com.google.android.material.appbar.CollapsingToolbarLayout: int getScrimVisibleHeightTrigger() -com.jaredrummler.android.colorpicker.R$id: int action_container -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled -james.adaptiveicon.R$attr: int fontProviderFetchStrategy -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_material -okio.ByteString: boolean endsWith(okio.ByteString) -androidx.preference.R$styleable: int Preference_fragment -androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedHeightMajor -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: void onResponse(retrofit2.Call,retrofit2.Response) -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.remoteviews.config.AbstractWidgetConfigActivity -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableEndCompat -androidx.appcompat.R$id: int tag_screen_reader_focusable -android.didikee.donate.R$attr: int windowFixedWidthMajor -io.reactivex.internal.subscriptions.EmptySubscription: boolean isEmpty() -okhttp3.HttpUrl: okhttp3.HttpUrl get(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: java.lang.String getUIStyleName(android.content.Context) -androidx.constraintlayout.widget.R$color: int secondary_text_disabled_material_dark -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -androidx.cardview.widget.CardView: int getContentPaddingRight() -android.didikee.donate.R$dimen: int abc_text_size_menu_material -okhttp3.internal.NamedRunnable: java.lang.String name -com.google.android.material.R$attr: int autoCompleteTextViewStyle -cyanogenmod.hardware.CMHardwareManager: boolean isSupported(int) -com.google.android.material.R$styleable: int MockView_mock_label -androidx.appcompat.R$color: int primary_dark_material_dark -wangdaye.com.geometricweather.R$id: int notification_big_temp_3 -wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_small_component -android.didikee.donate.R$styleable: int MenuGroup_android_orderInCategory -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroups -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_NoActionBar +james.adaptiveicon.R$attr: int titleMargins +androidx.constraintlayout.widget.R$attr: int keyPositionType +android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider[] values() +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button +wangdaye.com.geometricweather.R$styleable: int[] KeyTimeCycle +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +android.didikee.donate.R$attr: int autoCompleteTextViewStyle +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getSnow() +androidx.preference.ListPreference$SavedState +wangdaye.com.geometricweather.R$styleable: int Toolbar_buttonGravity +android.didikee.donate.R$style: int AlertDialog_AppCompat +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: android.os.IBinder mRemote +com.google.android.material.R$id: int touch_outside +okhttp3.internal.io.FileSystem: void delete(java.io.File) +androidx.hilt.lifecycle.R$anim: int fragment_fast_out_extra_slow_in +cyanogenmod.app.ProfileGroup: boolean isDefaultGroup() +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: java.lang.Object value +com.google.android.material.R$styleable: int Constraint_flow_firstHorizontalBias +androidx.constraintlayout.widget.R$styleable: int SearchView_searchIcon +androidx.hilt.lifecycle.R$styleable: int[] ColorStateListItem +com.google.android.material.behavior.SwipeDismissBehavior: void setListener(com.google.android.material.behavior.SwipeDismissBehavior$OnDismissListener) +androidx.transition.R$id: int save_non_transition_alpha +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm25Desc() +com.google.android.material.R$attr: int state_above_anchor +com.google.android.material.R$attr: int layout_constraintVertical_chainStyle +okio.ByteString: void writeObject(java.io.ObjectOutputStream) +androidx.appcompat.R$attr: int expandActivityOverflowButtonDrawable +retrofit2.BuiltInConverters$ToStringConverter: java.lang.Object convert(java.lang.Object) +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int limit +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_60 +com.google.android.material.R$color: int material_grey_300 +com.turingtechnologies.materialscrollbar.R$color: R$color() +cyanogenmod.weatherservice.ServiceRequestResult$Builder: cyanogenmod.weather.WeatherInfo mWeatherInfo +com.turingtechnologies.materialscrollbar.R$attr: int textStartPadding +cyanogenmod.weather.RequestInfo: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$drawable: int abc_list_longpressed_holo +com.google.android.material.slider.BaseSlider: void setTickVisible(boolean) +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent valueOf(java.lang.String) +androidx.appcompat.R$attr: int icon +com.google.android.material.R$attr: int flow_horizontalAlign +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator +com.jaredrummler.android.colorpicker.R$id: int content +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver(io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.util.Date getDate() +com.google.android.material.R$styleable: int Chip_android_text +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_baselineAligned +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: AccuCurrentResult$TemperatureSummary$Past6HourRange() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.Window access$300(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +io.reactivex.observers.TestObserver$EmptyObserver: void onNext(java.lang.Object) +cyanogenmod.providers.CMSettings$System: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) +wangdaye.com.geometricweather.R$attr: int state_above_anchor +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.observers.InnerQueuedObserver current +okhttp3.internal.http2.Http2Stream$FramingSink: okhttp3.internal.http2.Http2Stream this$0 +cyanogenmod.providers.CMSettings$Secure$1 +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +wangdaye.com.geometricweather.R$style: int cpv_ColorPickerViewStyle +wangdaye.com.geometricweather.R$attr: int circularRadius +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode OVERRIDE +androidx.coordinatorlayout.R$color: int notification_action_color_filter +okhttp3.internal.http2.Hpack$Writer: Hpack$Writer(okio.Buffer) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_UnelevatedButton +okhttp3.MediaType: java.lang.String TOKEN +androidx.appcompat.R$attr: int paddingEnd +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul3H +com.google.android.material.R$attr: int materialButtonOutlinedStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum() +com.google.android.material.slider.BaseSlider: void setTickInactiveTintList(android.content.res.ColorStateList) +android.didikee.donate.R$id: int normal +com.jaredrummler.android.colorpicker.R$styleable: int[] ActivityChooserView +cyanogenmod.app.CMContextConstants$Features: java.lang.String HARDWARE_ABSTRACTION +wangdaye.com.geometricweather.R$attr: int popupTheme +okhttp3.HttpUrl: int defaultPort(java.lang.String) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: MfForecastResult$DailyForecast$DailyTemperature() +com.xw.repo.bubbleseekbar.R$style: int Base_V22_Theme_AppCompat +com.google.android.material.R$attr: int state_collapsed +wangdaye.com.geometricweather.R$styleable: int Chip_chipIconTint +androidx.constraintlayout.widget.R$layout: int abc_dialog_title_material +com.xw.repo.bubbleseekbar.R$color: int material_deep_teal_500 +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +com.google.android.material.R$string: int mtrl_picker_text_input_day_abbr +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy ERROR +androidx.preference.R$attr: int dropDownListViewStyle +androidx.appcompat.R$styleable: int MenuView_android_itemTextAppearance +io.reactivex.Observable: io.reactivex.Observable flatMapSingle(io.reactivex.functions.Function) +androidx.legacy.coreutils.R$id: int line1 +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.util.List _queryWeatherEntity_HourlyEntityList(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: long serialVersionUID +androidx.viewpager.R$layout: R$layout() +androidx.preference.R$attr: int preferenceFragmentStyle +okhttp3.Cache$CacheResponseBody: okhttp3.internal.cache.DiskLruCache$Snapshot snapshot +wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_initialExpandedChildrenCount +androidx.activity.R$layout: int notification_action +wangdaye.com.geometricweather.R$layout: int item_tag +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] findMatchingRule(java.lang.String[]) +com.jaredrummler.android.colorpicker.R$dimen: int cpv_item_horizontal_padding +wangdaye.com.geometricweather.R$styleable: int Layout_android_orientation +com.turingtechnologies.materialscrollbar.R$layout: int abc_activity_chooser_view_list_item +okhttp3.CertificatePinner$Builder: java.util.List pins +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +wangdaye.com.geometricweather.R$drawable: int notif_temp_9 +androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_bias +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_positiveButtonText +okhttp3.OkHttpClient: okhttp3.OkHttpClient$Builder newBuilder() +james.adaptiveicon.R$styleable: int RecycleListView_paddingTopNoTitle +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableEndCompat +okhttp3.HttpUrl: java.lang.String queryParameterValue(int) +com.google.android.material.behavior.HideBottomViewOnScrollBehavior: HideBottomViewOnScrollBehavior() +androidx.recyclerview.widget.RecyclerView: void setChildDrawingOrderCallback(androidx.recyclerview.widget.RecyclerView$ChildDrawingOrderCallback) +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_HelperText +okhttp3.logging.LoggingEventListener: void responseBodyStart(okhttp3.Call) +androidx.hilt.work.R$drawable: int notification_template_icon_bg +com.bumptech.glide.R$string: R$string() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Borderless +okio.Okio$2: Okio$2(okio.Timeout,java.io.InputStream) +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider BAIDU_IP +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setThunderstormPrecipitationProbability(java.lang.Float) +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_hideMotionSpec +okhttp3.RequestBody$3: long contentLength() +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +wangdaye.com.geometricweather.R$anim: int fragment_close_exit +com.jaredrummler.android.colorpicker.R$attr: int cpv_allowCustom +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +james.adaptiveicon.R$dimen: int abc_text_size_subhead_material +androidx.appcompat.R$string: int abc_activity_chooser_view_see_all +com.google.android.material.chip.Chip: void setTextAppearance(com.google.android.material.resources.TextAppearance) +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_letter_spacing +com.google.android.material.R$dimen: int design_snackbar_padding_horizontal +androidx.constraintlayout.widget.R$styleable: int MenuView_android_verticalDivider +androidx.appcompat.widget.DropDownListView: void setListSelectionHidden(boolean) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar +com.google.android.material.R$dimen: int mtrl_calendar_day_height +androidx.recyclerview.R$layout: int notification_template_part_time +com.jaredrummler.android.colorpicker.R$attr: int overlapAnchor +com.github.rahatarmanahmed.cpv.CircularProgressView$2: void onAnimationEnd(android.animation.Animator) +androidx.preference.MultiSelectListPreferenceDialogFragmentCompat: MultiSelectListPreferenceDialogFragmentCompat() +com.jaredrummler.android.colorpicker.R$styleable: int Preference_allowDividerAbove +com.google.android.material.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation mWeatherLocation +cyanogenmod.weather.CMWeatherManager$2: CMWeatherManager$2(cyanogenmod.weather.CMWeatherManager) +james.adaptiveicon.R$dimen: int abc_config_prefDialogWidth +androidx.constraintlayout.widget.R$drawable: int btn_checkbox_checked_mtrl +wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_borderColor +androidx.core.R$id: int accessibility_custom_action_15 +androidx.constraintlayout.widget.R$drawable: int abc_switch_thumb_material +io.reactivex.internal.disposables.DisposableHelper: boolean validate(io.reactivex.disposables.Disposable,io.reactivex.disposables.Disposable) +io.reactivex.internal.observers.DeferredScalarObserver: io.reactivex.disposables.Disposable upstream +androidx.activity.R$styleable: int FontFamily_fontProviderAuthority +retrofit2.OkHttpCall: retrofit2.Converter responseConverter +cyanogenmod.providers.CMSettings$System: boolean isLegacySetting(java.lang.String) +com.jaredrummler.android.colorpicker.R$id +com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentStyle +wangdaye.com.geometricweather.R$attr: int materialTimePickerTheme +androidx.constraintlayout.widget.R$attr: int attributeName +com.github.rahatarmanahmed.cpv.CircularProgressView: int getThickness() +androidx.recyclerview.widget.RecyclerView$LayoutManager$Properties +wangdaye.com.geometricweather.R$attr: int pivotAnchor +androidx.preference.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDefaultPhoneSub(int) +wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_xml +io.reactivex.Observable: java.lang.Iterable blockingMostRecent(java.lang.Object) +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_enabled +androidx.appcompat.widget.DropDownListView: void setSelectorEnabled(boolean) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: long serialVersionUID +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: int getMarginTop() +androidx.dynamicanimation.R$drawable: int notification_tile_bg +androidx.preference.R$attr: int windowFixedHeightMajor +com.google.android.material.R$style: int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton +com.google.android.material.R$styleable: int Toolbar_android_gravity +androidx.preference.R$style: int Base_Theme_AppCompat_DialogWhenLarge +cyanogenmod.app.Profile: java.lang.String TAG +androidx.coordinatorlayout.R$id: int text +com.google.android.material.R$dimen: int abc_dropdownitem_icon_width +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: long EpochEndTime +com.google.android.material.R$layout: int design_bottom_navigation_item +com.google.android.material.R$styleable: int ConstraintSet_barrierMargin +james.adaptiveicon.R$color: int foreground_material_light +wangdaye.com.geometricweather.R$array: int air_quality_units +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather +com.google.android.material.R$styleable: int MotionLayout_showPaths +com.google.android.material.R$id: int design_bottom_sheet +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ButtonBar +cyanogenmod.weather.WeatherInfo: java.lang.String toString() +androidx.appcompat.R$attr: int trackTint +cyanogenmod.providers.CMSettings$Secure: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) +cyanogenmod.externalviews.KeyguardExternalView: void registerOnWindowAttachmentChangedListener(cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener) +com.google.android.material.R$attr: int itemShapeInsetEnd +androidx.loader.R$styleable: int FontFamily_fontProviderQuery +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onScreenTurnedOff() +androidx.preference.R$id: int accessibility_custom_action_18 +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMode +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicBoolean stopWindows +androidx.preference.R$styleable: int[] FragmentContainerView +androidx.fragment.R$dimen: int notification_large_icon_height +com.turingtechnologies.materialscrollbar.R$styleable: int[] Snackbar +com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +androidx.activity.R$id: int dialog_button +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_25 +okio.ForwardingSink: okio.Sink delegate() +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_LargeTouch +androidx.recyclerview.R$styleable: int GradientColorItem_android_offset +com.google.android.material.R$attr: int materialCalendarHeaderTitle +io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable,int) +cyanogenmod.weather.RequestInfo: boolean equals(java.lang.Object) +james.adaptiveicon.R$anim: int abc_popup_enter +com.xw.repo.bubbleseekbar.R$attr: int bsb_min +okhttp3.CertificatePinner: okhttp3.CertificatePinner withCertificateChainCleaner(okhttp3.internal.tls.CertificateChainCleaner) +com.turingtechnologies.materialscrollbar.R$attr: int showDividers +androidx.lifecycle.ViewModelStores +wangdaye.com.geometricweather.R$id: int activity_about_recyclerView +com.google.android.material.R$id: int accessibility_custom_action_15 +wangdaye.com.geometricweather.R$id: int search_badge +okio.Buffer: okio.Buffer emitCompleteSegments() +androidx.preference.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +com.turingtechnologies.materialscrollbar.R$drawable: int abc_switch_thumb_material james.adaptiveicon.R$attr: int titleMarginTop -androidx.lifecycle.extensions.R$id: int notification_main_column -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_33 -androidx.preference.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.R$string: int of_clock -okhttp3.internal.http2.Http2Stream: void writeHeaders(java.util.List,boolean) -androidx.viewpager2.R$styleable: int FontFamily_fontProviderAuthority -james.adaptiveicon.R$attr: int showAsAction -com.google.android.material.R$drawable: int mtrl_popupmenu_background -androidx.vectordrawable.animated.R$id: int icon_group -androidx.viewpager.R$integer -com.google.android.material.R$styleable: int Toolbar_menu -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ASSIST_WAKE_SCREEN_VALIDATOR -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: double Value -androidx.lifecycle.livedata.R -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_end -okhttp3.HttpUrl: java.lang.String username() -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int describeContents() -androidx.preference.R$anim: int fragment_close_enter -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarDivider -cyanogenmod.app.PartnerInterface: int ZEN_MODE_NO_INTERRUPTIONS -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_HEAVY -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectTimeout(long,java.util.concurrent.TimeUnit) -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: long timeout -com.jaredrummler.android.colorpicker.R$layout: int notification_template_custom_big -cyanogenmod.weather.RequestInfo: boolean isQueryOnlyWeatherRequest() -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: long serialVersionUID -wangdaye.com.geometricweather.R$attr: int navigationMode -wangdaye.com.geometricweather.R$layout: int test_toolbar_surface -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: boolean isDisposed() -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button -androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentY -okhttp3.internal.http2.Http2Stream: void receiveRstStream(okhttp3.internal.http2.ErrorCode) -james.adaptiveicon.R$style: int Theme_AppCompat_NoActionBar -retrofit2.OkHttpCall: retrofit2.OkHttpCall clone() -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: java.lang.String Localized -androidx.core.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$styleable: int NavigationView_android_fitsSystemWindows -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: CaiYunMainlyResult$CurrentBean$WindBean() -androidx.preference.R$layout: int abc_expanded_menu_layout -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dialog -com.google.android.material.R$attr: int suffixText -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_saturation -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.Window mWindow -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onComplete() -androidx.constraintlayout.motion.widget.MotionLayout: int getStartState() -com.google.gson.internal.LinkedTreeMap: java.lang.Object writeReplace() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm25 -androidx.preference.R$dimen: int abc_dialog_fixed_height_major -androidx.dynamicanimation.R$id: int action_container -com.turingtechnologies.materialscrollbar.R$drawable: int notification_icon_background -com.google.android.material.R$styleable: int TextInputLayout_errorTextColor -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -com.google.gson.FieldNamingPolicy$4: FieldNamingPolicy$4(java.lang.String,int) -com.google.gson.internal.LazilyParsedNumber -com.google.android.material.R$styleable: int MaterialButton_backgroundTint +androidx.appcompat.R$attr: int lastBaselineToBottomHeight +android.didikee.donate.R$attr: int textAppearanceSmallPopupMenu +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Body2 +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type HORIZONTAL_DIMENSION +james.adaptiveicon.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String getFrom() +cyanogenmod.app.IPartnerInterface$Stub$Proxy: java.lang.String getCurrentHotwordPackageName() +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_scrollView +androidx.preference.R$drawable: int abc_tab_indicator_material +androidx.fragment.R$integer: R$integer() +okhttp3.internal.http2.Settings: boolean isSet(int) +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +com.turingtechnologies.materialscrollbar.R$attr +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_115 +androidx.preference.R$attr: int dialogLayout +android.didikee.donate.R$color: int notification_icon_bg_color +cyanogenmod.providers.CMSettings$System$3 +com.google.android.material.transformation.FabTransformationSheetBehavior: FabTransformationSheetBehavior(android.content.Context,android.util.AttributeSet) +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setBackgroundResource(int) +androidx.lifecycle.extensions.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dark +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean cancelled +com.google.android.material.tabs.TabLayout: int getTabMaxWidth() +androidx.constraintlayout.widget.R$styleable: int ActionBar_background +com.google.android.material.internal.NavigationMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() +wangdaye.com.geometricweather.R$styleable: int BackgroundStyle_selectableItemBackground +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_4 +retrofit2.RequestFactory$Builder: java.util.regex.Pattern PARAM_URL_REGEX +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String brandId +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: MfEphemerisResult$Properties$Ephemeris() +cyanogenmod.app.Profile$ProfileTrigger: int getType() +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String MINUTES +org.greenrobot.greendao.AbstractDao: AbstractDao(org.greenrobot.greendao.internal.DaoConfig) +wangdaye.com.geometricweather.R$style: int Widget_Support_CoordinatorLayout +okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.internal.cache.CacheStrategy get() +cyanogenmod.app.ICMTelephonyManager: void setDefaultPhoneSub(int) +wangdaye.com.geometricweather.R$drawable: int abc_ic_ab_back_material +io.reactivex.Observable: io.reactivex.Observable switchIfEmpty(io.reactivex.ObservableSource) +android.didikee.donate.R$dimen: int abc_edit_text_inset_horizontal_material +wangdaye.com.geometricweather.R$styleable: int[] ConstraintSet +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean isEntityUpdateable() +com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: boolean isDisposed() +androidx.hilt.R$integer: R$integer() +james.adaptiveicon.R$layout: int abc_select_dialog_material +com.bumptech.glide.R$styleable: int[] GradientColor +com.xw.repo.bubbleseekbar.R$color: int primary_material_dark +cyanogenmod.weather.CMWeatherManager$2$1: void run() +wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_nextButton +okio.RealBufferedSource: RealBufferedSource(okio.Source) +android.didikee.donate.R$attr: int windowFixedHeightMinor +androidx.hilt.lifecycle.R$drawable: int notification_bg_low +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_BottomSheet_Modal +androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_backgroundTintMode +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode SYSTEM +com.google.android.material.R$styleable: int ViewStubCompat_android_layout +androidx.dynamicanimation.R$attr: int alpha +cyanogenmod.app.Profile$Type +androidx.preference.R$styleable: int CoordinatorLayout_keylines +james.adaptiveicon.R$drawable: int abc_textfield_search_default_mtrl_alpha +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout +android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +okhttp3.FormBody: int size() +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light +wangdaye.com.geometricweather.R$drawable: int notif_temp_31 +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.R$dimen: int abc_dialog_corner_radius_material +androidx.fragment.R$id: int async +androidx.constraintlayout.widget.R$id: int tag_accessibility_clickable_spans +androidx.appcompat.widget.ViewStubCompat: void setOnInflateListener(androidx.appcompat.widget.ViewStubCompat$OnInflateListener) +androidx.appcompat.R$drawable: int abc_ic_voice_search_api_material +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_font +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlNormal +androidx.appcompat.widget.AppCompatSpinner: void setPopupBackgroundDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$drawable: int shortcuts_refresh_foreground +io.reactivex.exceptions.ProtocolViolationException +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +cyanogenmod.weather.WeatherLocation: java.lang.String mKey +androidx.recyclerview.R$dimen: int compat_notification_large_icon_max_height +androidx.recyclerview.R$color: int ripple_material_light +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: boolean isDisposed() +com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.badge.BadgeDrawable getBadge() +androidx.swiperefreshlayout.R$id +com.google.gson.stream.JsonReader: int doPeek() +android.didikee.donate.R$styleable: int[] MenuGroup +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType CENTER +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: BaiduIPLocationResult$ContentBean$PointBean() +androidx.activity.R$id: int notification_main_column_container +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableItem_android_drawable +android.didikee.donate.R$dimen: int abc_text_size_menu_header_material +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorButtonNormal +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +cyanogenmod.hardware.CMHardwareManager: boolean isSupported(int) +androidx.hilt.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.R$attr: int bsb_seek_step_section +androidx.preference.R$attr: int imageButtonStyle +wangdaye.com.geometricweather.R$string: int total +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver this$0 +okio.RealBufferedSource: boolean isOpen() +wangdaye.com.geometricweather.R$integer: int mtrl_calendar_header_orientation +com.google.android.material.R$styleable: int TextInputLayout_counterMaxLength +android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +android.didikee.donate.R$attr: int actionBarDivider +com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_pressed +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge +wangdaye.com.geometricweather.R$id: int line1 +androidx.preference.R$style: int Base_Theme_AppCompat_CompactMenu +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context,android.util.AttributeSet) +james.adaptiveicon.R$layout: int abc_alert_dialog_title_material +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Time +androidx.preference.R$styleable: int AppCompatSeekBar_tickMarkTint +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Daylight +wangdaye.com.geometricweather.R$styleable: int KeyCycle_motionProgress +androidx.appcompat.widget.SwitchCompat: void setThumbTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_17 +androidx.constraintlayout.widget.R$attr: int showTitle +com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Object,java.util.List) +james.adaptiveicon.R$attr: int buttonStyle +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String pressure +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginEnd +wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_backgroundTintMode +android.didikee.donate.R$drawable: int notification_bg_low_normal +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf +com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_toBottomOf +com.bumptech.glide.integration.okhttp.R$drawable: int notification_template_icon_bg +androidx.lifecycle.extensions.R$style +androidx.appcompat.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +james.adaptiveicon.R$attr: int actionModePopupWindowStyle +okio.Buffer: okio.Buffer$UnsafeCursor readUnsafe(okio.Buffer$UnsafeCursor) +com.jaredrummler.android.colorpicker.R$attr: int switchPadding +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status COMPLETE +okhttp3.OkHttpClient: OkHttpClient() +cyanogenmod.providers.CMSettings$System: java.lang.String getString(android.content.ContentResolver,java.lang.String) +com.google.android.material.R$layout: int design_bottom_sheet_dialog +wangdaye.com.geometricweather.R$styleable: int[] TextInputEditText +androidx.preference.R$style: int Base_AlertDialog_AppCompat +wangdaye.com.geometricweather.R$drawable: int ic_arrow_down_24dp +androidx.appcompat.R$styleable: int AlertDialog_listItemLayout +androidx.preference.R$style: int Widget_Compat_NotificationActionContainer +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop +com.google.android.material.R$attr: int flow_lastVerticalBias +james.adaptiveicon.R$styleable: int PopupWindow_overlapAnchor +cyanogenmod.themes.IThemeService: boolean processThemeResources(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_fabSize +com.turingtechnologies.materialscrollbar.R$attr: int toolbarStyle +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabText +androidx.constraintlayout.widget.R$id: int topPanel +androidx.work.impl.WorkDatabase: WorkDatabase() +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhase +com.google.android.material.R$attr: int gapBetweenBars +com.google.android.material.chip.Chip: void setCheckedIconVisible(boolean) +wangdaye.com.geometricweather.R$array: int automatic_refresh_rates +androidx.appcompat.R$attr: int textAppearanceSmallPopupMenu +androidx.appcompat.R$drawable: int abc_list_selector_background_transition_holo_light +okhttp3.internal.http1.Http1Codec: java.lang.String readHeaderLine() +androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory mFactory +com.google.android.material.R$attr: int layout_goneMarginLeft +retrofit2.RequestFactory$Builder: boolean gotQueryMap +com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_material_light +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingTop +androidx.preference.R$id: int textSpacerNoButtons +androidx.preference.R$attr: int progressBarStyle com.google.android.material.R$styleable: int KeyAttribute_android_scaleX -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleEnabled(boolean) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_PopupMenu -com.google.android.material.slider.RangeSlider: void setThumbRadiusResource(int) -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode BOUNDARY -com.turingtechnologies.materialscrollbar.R$attr: int searchViewStyle -androidx.appcompat.widget.AppCompatEditText: void setTextClassifier(android.view.textclassifier.TextClassifier) -cyanogenmod.externalviews.KeyguardExternalView$2: void onDetachedFromWindow() -james.adaptiveicon.R$styleable: int AppCompatTheme_selectableItemBackground -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver,java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_background -okhttp3.internal.http2.Http2Stream: void receiveData(okio.BufferedSource,int) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -okhttp3.internal.ws.RealWebSocket$2: void onResponse(okhttp3.Call,okhttp3.Response) -androidx.constraintlayout.widget.R$id: int bounce -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_android_enabled -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Title -com.google.android.material.R$dimen: int mtrl_calendar_action_height -androidx.lifecycle.extensions.R$dimen: int compat_button_inset_horizontal_material -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_elevation -com.turingtechnologies.materialscrollbar.R$color: int mtrl_text_btn_text_color_selector -cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,cyanogenmod.app.CustomTile,android.os.UserHandle) -com.bumptech.glide.R$id: int text2 -wangdaye.com.geometricweather.R$id: int aligned -cyanogenmod.app.ProfileManager: void addNotificationGroup(android.app.NotificationGroup) -wangdaye.com.geometricweather.R$attr: int progressBarPadding -com.google.android.material.R$styleable: int Layout_barrierDirection -okhttp3.RequestBody$1: okhttp3.MediaType contentType() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.viewpager.widget.ViewPager$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.db.entities.HourlyEntity: boolean daylight -com.bumptech.glide.load.engine.GlideException: java.util.List getRootCauses() -james.adaptiveicon.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$string: int abc_menu_enter_shortcut_label -com.google.android.material.chip.Chip: void setMaxLines(int) -androidx.preference.R$attr: int actionModeCutDrawable -androidx.appcompat.R$styleable: int SwitchCompat_switchPadding +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_RadioButton +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar +cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,android.content.ComponentName) +com.jaredrummler.android.colorpicker.R$attr: int allowDividerBelow +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.db.entities.DailyEntity: float hoursOfSun +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver +com.jaredrummler.android.colorpicker.R$attr: int persistent +androidx.preference.R$id: int tag_accessibility_actions +android.didikee.donate.R$drawable: int abc_vector_test +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_motionTarget +androidx.preference.R$id: int search_bar +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData +androidx.recyclerview.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$id: int decelerate +com.google.android.material.R$attr: int textAppearanceHeadline1 +cyanogenmod.externalviews.KeyguardExternalView$11: float val$swipeProgress +wangdaye.com.geometricweather.R$styleable: int Slider_thumbStrokeColor +io.reactivex.Observable: io.reactivex.Observable concatEager(java.lang.Iterable) +com.google.android.material.R$attr: int onCross +com.google.android.material.R$attr: int homeAsUpIndicator +james.adaptiveicon.R$id: int progress_horizontal +cyanogenmod.themes.IThemeChangeListener$Stub: int TRANSACTION_onFinish_1 +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getCity() +androidx.preference.R$styleable: int DialogPreference_dialogMessage +androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +com.google.android.material.R$attr: int placeholderText +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_count +com.google.android.material.chip.Chip: void setElevation(float) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: void subscribe(org.reactivestreams.Subscriber) +wangdaye.com.geometricweather.R$layout: int preference_widget_switch +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: int leftIndex +androidx.preference.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$attr: int bsb_show_section_mark +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: long serialVersionUID +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_addProfile +androidx.viewpager.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_scaleY +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$id: int bottom +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String name +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeRealFeelTemperature() +wangdaye.com.geometricweather.R$attr: int navigationViewStyle +com.jaredrummler.android.colorpicker.R$layout: int preference_dialog_edittext +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.concurrent.atomic.AtomicReference error +org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean() +wangdaye.com.geometricweather.R$attr: int titleMargin +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData this$0 +androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: java.lang.String type +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner +wangdaye.com.geometricweather.R$layout: int mtrl_layout_snackbar +androidx.vectordrawable.animated.R$id: int action_image +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: double Value +com.google.android.material.R$styleable: int MenuItem_actionViewClass +androidx.preference.R$style: int TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.String TABLENAME +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: long serialVersionUID +wangdaye.com.geometricweather.R$drawable: int notif_temp_123 +androidx.preference.R$anim: int abc_grow_fade_in_from_bottom +wangdaye.com.geometricweather.R$layout: int dialog_donate_wechat +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +wangdaye.com.geometricweather.R$layout: int item_weather_daily_title +cyanogenmod.app.ICMStatusBarManager +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout +com.google.android.material.R$styleable: int TabLayout_tabIndicatorColor +androidx.fragment.R$id: int accessibility_custom_action_24 +androidx.viewpager2.R$styleable: int FontFamilyFont_ttcIndex +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.DatabaseOpenHelper$EncryptedHelper encryptedHelper +okhttp3.logging.LoggingEventListener: void logWithTime(java.lang.String) +wangdaye.com.geometricweather.background.receiver.widget.WidgetMultiCityProvider +wangdaye.com.geometricweather.common.basic.models.weather.History: int nighttimeTemperature +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SeekBar +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_chainStyle +okhttp3.CipherSuite$1: CipherSuite$1() +cyanogenmod.hardware.DisplayMode: DisplayMode(android.os.Parcel) +android.didikee.donate.R$drawable: int abc_ic_star_half_black_48dp +androidx.transition.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$attr: int dayInvalidStyle +wangdaye.com.geometricweather.R$attr: int iconifiedByDefault +cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeight +androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontStyle +okhttp3.internal.ws.RealWebSocket$CancelRunnable: okhttp3.internal.ws.RealWebSocket this$0 +androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context,android.util.AttributeSet) +androidx.preference.R$dimen: int abc_list_item_height_small_material +androidx.appcompat.R$styleable: int FontFamily_fontProviderCerts +androidx.constraintlayout.widget.ConstraintLayout: int getMaxWidth() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_percent +cyanogenmod.providers.CMSettings$Secure: java.lang.String PERFORMANCE_PROFILE +wangdaye.com.geometricweather.R$attr: int shouldDisableView +wangdaye.com.geometricweather.R$styleable: int RecyclerView_stackFromEnd +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.functions.BiPredicate comparer +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_item_horizontal_padding +androidx.constraintlayout.widget.R$attr: int actionBarSize +com.google.android.material.internal.ScrimInsetsFrameLayout: void setScrimInsetForeground(android.graphics.drawable.Drawable) +com.google.android.material.R$dimen: int mtrl_calendar_action_confirm_button_min_width +okio.RealBufferedSource: long indexOf(okio.ByteString,long) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String getWeathercn() +androidx.preference.PreferenceManager: void setOnDisplayPreferenceDialogListener(androidx.preference.PreferenceManager$OnDisplayPreferenceDialogListener) +com.google.android.material.internal.FlowLayout: int getLineSpacing() +com.google.android.material.internal.ParcelableSparseBooleanArray +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +com.google.android.material.R$attr: int buttonStyleSmall +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit valueOf(java.lang.String) +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: ILiveLockScreenChangeListener$Stub() +com.google.android.material.R$id: int material_timepicker_edit_text +wangdaye.com.geometricweather.R$attr: int actionDropDownStyle +com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context,android.util.AttributeSet,int) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_section_text +com.xw.repo.bubbleseekbar.R$attr: int height +com.google.android.material.R$style: int TextAppearance_AppCompat_Small_Inverse +com.google.android.material.R$string: int abc_menu_enter_shortcut_label +wangdaye.com.geometricweather.R$layout: int widget_day_temp +wangdaye.com.geometricweather.db.entities.DailyEntity: int nighttimeTemperature +com.jaredrummler.android.colorpicker.R$attr: int listItemLayout +retrofit2.Retrofit: java.util.List callAdapterFactories() +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalBias +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: int UnitType +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Caption +androidx.preference.PreferenceManager +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_font +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_48dp +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getDate(java.lang.String) +okhttp3.Response$Builder: okhttp3.Response cacheResponse +androidx.coordinatorlayout.R$id: int tag_screen_reader_focusable +androidx.constraintlayout.widget.R$styleable: int ActionBar_height +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: long serialVersionUID +com.jaredrummler.android.colorpicker.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +androidx.preference.R$attr: int buttonTint +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_menuCategory +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onError(java.lang.Throwable) +androidx.preference.R$drawable: int abc_list_selector_holo_light +androidx.drawerlayout.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.R$layout: int item_weather_daily_air +androidx.constraintlayout.widget.R$styleable: int[] FontFamilyFont +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +wangdaye.com.geometricweather.R$styleable: int SearchView_android_inputType +wangdaye.com.geometricweather.R$bool: int abc_allow_stacked_button_bar +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_keylines +android.didikee.donate.R$color: int accent_material_light +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed +androidx.recyclerview.R$styleable: int FontFamilyFont_android_font +androidx.appcompat.R$styleable: int StateListDrawable_android_visible +cyanogenmod.power.PerformanceManager: int PROFILE_BIAS_PERFORMANCE +cyanogenmod.app.Profile: boolean getStatusBarIndicator() +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +com.google.android.material.R$styleable: int Layout_layout_constrainedHeight +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +com.xw.repo.bubbleseekbar.R$attr: int font +androidx.appcompat.widget.AppCompatImageView: android.content.res.ColorStateList getSupportBackgroundTintList() +wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_1_material +com.google.android.material.R$styleable: int Insets_paddingBottomSystemWindowInsets +okhttp3.internal.http1.Http1Codec$FixedLengthSink +androidx.viewpager2.widget.ViewPager2: void setCurrentItem(int) +okhttp3.internal.http2.Http2Reader$ContinuationSource: int streamId +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_checkedTextViewStyle +com.google.android.material.R$styleable: int ConstraintSet_layout_constrainedHeight +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean recover(java.io.IOException,okhttp3.internal.connection.StreamAllocation,boolean,okhttp3.Request) +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getApparentTemperature() +androidx.lifecycle.Transformations$2: Transformations$2(androidx.arch.core.util.Function,androidx.lifecycle.MediatorLiveData) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMarkTintMode +wangdaye.com.geometricweather.R$drawable: int weather_thunder_pixel +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setZh_TW(java.lang.String) +okhttp3.Response$Builder: okhttp3.Response$Builder receivedResponseAtMillis(long) +wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity: ClockDayHorizontalWidgetConfigActivity() +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight +retrofit2.Utils: java.lang.RuntimeException parameterError(java.lang.reflect.Method,int,java.lang.String,java.lang.Object[]) +com.google.android.material.R$styleable: int Constraint_layout_goneMarginEnd +cyanogenmod.themes.IThemeService: void applyDefaultTheme() +james.adaptiveicon.R$dimen: int abc_text_size_body_1_material +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf +okhttp3.Response: okhttp3.Response networkResponse +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_18 +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer direction +androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_Alert +com.bumptech.glide.integration.okhttp.R$id: int top +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type lowerBound +androidx.preference.R$style: int TextAppearance_AppCompat_Subhead +androidx.appcompat.R$style: int TextAppearance_AppCompat_Headline +cyanogenmod.content.Intent: java.lang.String EXTRA_RECENTS_LONG_PRESS_RELEASE +retrofit2.http.FieldMap: boolean encoded() +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.preference.R$id: int icon +okio.BufferedSource: boolean rangeEquals(long,okio.ByteString) +androidx.preference.R$styleable: int AppCompatTheme_toolbarStyle +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Alert +cyanogenmod.externalviews.ExternalView: void onActivityResumed(android.app.Activity) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_HelperText +androidx.fragment.R$style: int TextAppearance_Compat_Notification_Line2 +com.xw.repo.bubbleseekbar.R$attr: int gapBetweenBars +com.google.android.material.appbar.AppBarLayout: int getUpNestedPreScrollRange() +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetLeft +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: int UnitType +com.google.android.material.R$styleable: int ConstraintSet_android_id +com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableCompat +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean mAskedShow +androidx.constraintlayout.widget.R$styleable: int[] AlertDialog +com.google.android.material.R$styleable: int Badge_verticalOffset +com.turingtechnologies.materialscrollbar.R$attr: int titleTextColor +androidx.preference.R$dimen: int tooltip_y_offset_touch +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$attr: int actionModeCutDrawable +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: java.util.ArrayDeque buffers +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String getUnit() +androidx.hilt.work.R$id: int time +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomAppBar_Colored +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemIconDisabledAlpha +androidx.constraintlayout.widget.R$drawable: R$drawable() +okhttp3.OkHttpClient$Builder: boolean retryOnConnectionFailure +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableEnd +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRainPrecipitationProbability(java.lang.Float) +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_spanCount +james.adaptiveicon.R$style: int Theme_AppCompat_Dialog_MinWidth +io.reactivex.Observable: io.reactivex.Observable take(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.google.android.material.R$dimen: int mtrl_card_checked_icon_margin +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle CITIES +com.google.android.material.R$styleable: int ClockHandView_materialCircleRadius +wangdaye.com.geometricweather.R$layout: int design_navigation_item_subheader +okio.Buffer: byte[] readByteArray() +cyanogenmod.app.BaseLiveLockManagerService: void notifyChangeListeners(cyanogenmod.app.LiveLockScreenInfo) +com.google.android.material.R$id: int action_bar_title +okhttp3.Dns +com.google.android.material.R$drawable: int ic_mtrl_chip_checked_circle +com.google.android.material.R$id: int notification_background +wangdaye.com.geometricweather.R$dimen: int cpv_dialog_preview_height +com.google.android.material.textfield.TextInputLayout: void addOnEditTextAttachedListener(com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener) +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit getInstance(java.lang.String) +wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_date +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Inverse +androidx.hilt.lifecycle.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitation +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.concurrent.atomic.AtomicInteger active +androidx.appcompat.R$style: int Widget_AppCompat_AutoCompleteTextView +androidx.appcompat.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Date +io.reactivex.Observable: io.reactivex.Observable doOnDispose(io.reactivex.functions.Action) +androidx.appcompat.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setUvIndex(java.lang.String) +com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_DIGIT +wangdaye.com.geometricweather.R$dimen: int abc_disabled_alpha_material_light +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent[] values() +wangdaye.com.geometricweather.R$string: int action_preview +com.google.android.material.R$attr: int colorSecondaryVariant wangdaye.com.geometricweather.R$attr: int preferenceStyle -androidx.fragment.R$id: int action_image -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit[] values() -james.adaptiveicon.R$attr: int tooltipText -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_icon_vertical_padding_material -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -androidx.appcompat.widget.ActionBarOverlayLayout: java.lang.CharSequence getTitle() -androidx.core.R$styleable: int FontFamily_fontProviderFetchStrategy -cyanogenmod.externalviews.KeyguardExternalView$9: KeyguardExternalView$9(cyanogenmod.externalviews.KeyguardExternalView) -cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri getDownloadUri() -okhttp3.Headers: void checkName(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_onClick -wangdaye.com.geometricweather.R$attr: int elevation -androidx.constraintlayout.widget.R$styleable: int MotionLayout_currentState -org.greenrobot.greendao.database.DatabaseOpenHelper: java.lang.String name -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.subjects.Subject signaller -com.xw.repo.bubbleseekbar.R$attr: int textAllCaps -androidx.preference.R$styleable: int SearchView_searchHintIcon -com.google.android.material.R$id: int activity_chooser_view_content -androidx.coordinatorlayout.R$styleable: int[] GradientColor -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_COLOR_AUTO_VALIDATOR -wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context,android.util.AttributeSet) -androidx.preference.R$style: int Preference_CheckBoxPreference -androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context) -androidx.viewpager.widget.ViewPager: void removeOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) -androidx.activity.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.util.Date getDate() -android.didikee.donate.R$dimen: int abc_disabled_alpha_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_fitsSystemWindows -cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weatherservice.IWeatherProviderServiceClient mClient -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarPopupTheme -com.bumptech.glide.R$attr -com.jaredrummler.android.colorpicker.R$attr: int textAllCaps -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: int PrecipitationProbability -com.xw.repo.bubbleseekbar.R$dimen: int notification_large_icon_width -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: KeyguardExternalViewProviderService$Provider$ProviderImpl$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -androidx.work.impl.utils.futures.AbstractFuture: androidx.work.impl.utils.futures.AbstractFuture$Listener listeners -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer clouds -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_textAppearance -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory NORMAL -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSyncDuration -com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_hovered_box_stroke_color -io.reactivex.Observable: io.reactivex.Observable throttleLast(long,java.util.concurrent.TimeUnit) -androidx.appcompat.widget.Toolbar: void setSubtitle(java.lang.CharSequence) -android.didikee.donate.R$attr: int thumbTextPadding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date to -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum -com.xw.repo.bubbleseekbar.R$attr: int actionViewClass -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.R$styleable: int[] MaterialScrollBar -com.turingtechnologies.materialscrollbar.R$integer: int design_tab_indicator_anim_duration_ms -com.jaredrummler.android.colorpicker.R$id: int normal -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -androidx.appcompat.widget.ActionBarOverlayLayout: void setHideOnContentScrollEnabled(boolean) -androidx.appcompat.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_drawPath -androidx.hilt.work.R$id: int accessibility_custom_action_7 -com.google.android.material.R$dimen: int design_fab_image_size -cyanogenmod.themes.ThemeManager$1$1: cyanogenmod.themes.ThemeManager$1 this$1 -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.appbar.AppBarLayout: int getTotalScrollRange() -com.turingtechnologies.materialscrollbar.R$id: int tag_transition_group -androidx.preference.R$drawable: int abc_tab_indicator_mtrl_alpha -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -androidx.vectordrawable.R$id: R$id() -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onNext(java.lang.Object) -androidx.lifecycle.ViewModelStore: androidx.lifecycle.ViewModel get(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: double Value -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_ttcIndex -okhttp3.RealCall$AsyncCall: boolean $assertionsDisabled -io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: io.reactivex.disposables.CompositeDisposable compositeDisposable -com.github.rahatarmanahmed.cpv.CircularProgressView: void setIndeterminate(boolean) -james.adaptiveicon.R$drawable: int abc_cab_background_top_mtrl_alpha -androidx.appcompat.R$styleable: int AppCompatTheme_windowActionBarOverlay -com.turingtechnologies.materialscrollbar.R$color: int abc_secondary_text_material_light -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Borderless -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getMilliMetersTextWithoutUnit(float) -wangdaye.com.geometricweather.R$drawable: int notif_temp_51 -androidx.transition.R$id: int action_divider -okhttp3.internal.cache.DiskLruCache$2: okhttp3.internal.cache.DiskLruCache this$0 -cyanogenmod.weather.WeatherInfo: int mWindSpeedUnit -androidx.fragment.R$anim: R$anim() -com.google.android.material.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Title -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogStyle -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_elevation -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: long serialVersionUID -wangdaye.com.geometricweather.R$attr: int endIconTint -okhttp3.internal.http.StatusLine: StatusLine(okhttp3.Protocol,int,java.lang.String) -okhttp3.internal.Util: okhttp3.Headers toHeaders(java.util.List) -com.google.android.material.R$styleable: int Slider_android_valueFrom -androidx.viewpager2.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentStyle -com.google.android.material.R$styleable: int Constraint_animate_relativeTo -androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context,android.util.AttributeSet) -cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_INTERNALLY_ENABLED -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitation -wangdaye.com.geometricweather.R$color: int material_on_primary_emphasis_high_type -com.xw.repo.bubbleseekbar.R$attr: int actionBarTabTextStyle -com.google.android.material.R$styleable: int Constraint_android_transformPivotX -android.didikee.donate.R$drawable: int abc_ic_menu_cut_mtrl_alpha -androidx.preference.R$style: int Base_Widget_AppCompat_SearchView -okhttp3.internal.Util: byte[] EMPTY_BYTE_ARRAY -androidx.coordinatorlayout.R$dimen: int notification_content_margin_start -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.reflect.Type componentType -com.google.gson.JsonParseException: JsonParseException(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$attr: int commitIcon -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedLevel -wangdaye.com.geometricweather.R$attr: int chipMinHeight -com.google.android.material.R$dimen: int item_touch_helper_swipe_escape_max_velocity -androidx.drawerlayout.R$layout: int notification_template_part_time -androidx.appcompat.R$style: int Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$styleable: int SearchView_queryBackground -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_baselineAligned -com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: void setDirection(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean) -androidx.appcompat.widget.AppCompatEditText: void setBackgroundDrawable(android.graphics.drawable.Drawable) -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String DAYS_OF_WEEK -com.google.android.material.R$dimen: int tooltip_precise_anchor_extra_offset -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline4 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility Visibility -com.jaredrummler.android.colorpicker.R$id: int search_bar -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_summaryOn -androidx.constraintlayout.widget.R$styleable: int[] AppCompatTextHelper -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerComplete() -com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_material -androidx.appcompat.R$drawable: int abc_btn_radio_to_on_mtrl_015 -wangdaye.com.geometricweather.R$dimen: int abc_text_size_large_material -james.adaptiveicon.R$drawable: int abc_ic_voice_search_api_material -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getBackgroundColorStart() -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_android_maxWidth -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: double Value -androidx.viewpager2.R$drawable: int notification_action_background -wangdaye.com.geometricweather.R$anim: int fragment_manange_enter -james.adaptiveicon.R$styleable: int FontFamily_fontProviderFetchStrategy -cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weatherservice.ServiceRequest$Status mStatus -wangdaye.com.geometricweather.main.dialogs.BackgroundLocationDialog: BackgroundLocationDialog() -okhttp3.internal.cache.DiskLruCache: okio.BufferedSink newJournalWriter() -com.google.android.material.R$color: int design_dark_default_color_on_error -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_android_minWidth -androidx.work.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WetBulbTemperature +androidx.constraintlayout.widget.R$color: int abc_decor_view_status_guard +com.xw.repo.bubbleseekbar.R$attr: int alertDialogStyle +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: BaiduIPLocationService_Factory(javax.inject.Provider,javax.inject.Provider) +androidx.lifecycle.LiveData$ObserverWrapper: androidx.lifecycle.Observer mObserver +androidx.viewpager2.R$id: int icon +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_constraintSet +com.turingtechnologies.materialscrollbar.R$integer: int config_tooltipAnimTime +com.google.android.material.slider.BaseSlider: int getFocusedThumbIndex() +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: double Longitude +com.xw.repo.bubbleseekbar.R$attr: int firstBaselineToTopHeight +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: java.util.concurrent.atomic.AtomicInteger wip +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onError(java.lang.Throwable) +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_updateWeather_0 +androidx.constraintlayout.widget.R$id: int reverseSawtooth +com.google.android.material.appbar.HeaderBehavior: HeaderBehavior(android.content.Context,android.util.AttributeSet) +com.bumptech.glide.R$id: int text2 +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$y +com.google.android.material.R$styleable: int TextInputLayout_suffixTextAppearance +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRelativeHumidity() +com.jaredrummler.android.colorpicker.R$attr: int titleMarginStart +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: void run() +com.google.android.material.R$color: int accent_material_dark +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_LOCKSCREEN +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: long serialVersionUID +androidx.preference.R$styleable: int AppCompatTheme_activityChooserViewStyle +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_menu +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getDistanceVoice(android.content.Context,float) +androidx.dynamicanimation.R$dimen: int notification_small_icon_size_as_large +androidx.preference.R$attr: int persistent +androidx.preference.R$dimen: int abc_list_item_height_large_material +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarSize +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_goIcon +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginLeft +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onSubscribe(io.reactivex.disposables.Disposable) +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: void setValue(java.lang.String) +james.adaptiveicon.R$id: int customPanel +androidx.viewpager2.R$drawable: int notification_bg_low_normal +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void setCancellable(io.reactivex.functions.Cancellable) +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_entries +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setDirection(java.lang.String) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void attachEntity(wangdaye.com.geometricweather.db.entities.WeatherEntity) +android.didikee.donate.R$attr: int windowMinWidthMinor +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_corner_radius +com.jaredrummler.android.colorpicker.R$id: int bottom +wangdaye.com.geometricweather.R$attr: int autoTransition +com.google.android.material.R$styleable: int Motion_transitionEasing +retrofit2.Retrofit: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) +androidx.preference.R$styleable: int SeekBarPreference_min +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer stormHazard +wangdaye.com.geometricweather.R$drawable: int notif_temp_140 +androidx.hilt.work.R$attr +okhttp3.internal.ws.RealWebSocket$Streams: RealWebSocket$Streams(boolean,okio.BufferedSource,okio.BufferedSink) +cyanogenmod.app.CMContextConstants$Features: java.lang.String TELEPHONY +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +okhttp3.OkHttpClient$Builder: int connectTimeout +androidx.preference.R$drawable: int abc_btn_radio_to_on_mtrl_000 +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +cyanogenmod.app.CustomTileListenerService: void removeCustomTile(java.lang.String,java.lang.String,int) +com.google.android.material.card.MaterialCardView: void setCheckable(boolean) +com.google.android.material.R$attr: int behavior_fitToContents +cyanogenmod.app.ProfileManager: android.content.Context mContext +cyanogenmod.weather.CMWeatherManager: java.util.Set mProviderChangedListeners +cyanogenmod.externalviews.ExternalView$4: cyanogenmod.externalviews.ExternalView this$0 +com.google.gson.stream.JsonWriter: void push(int) +cyanogenmod.themes.ThemeManager$2: void onFinishedProcessing(java.lang.String) +okhttp3.internal.ws.WebSocketReader: void readControlFrame() +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit MM +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.util.concurrent.CompletableFuture adapt(retrofit2.Call) +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource) +com.google.android.material.floatingactionbutton.FloatingActionButton: void hide(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) +wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_dark +io.reactivex.internal.util.EmptyComponent: void request(long) +android.support.v4.os.ResultReceiver: void onReceiveResult(int,android.os.Bundle) +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_query +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth +com.google.android.material.R$style: int Widget_Design_NavigationView +android.didikee.donate.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_chainStyle +wangdaye.com.geometricweather.common.basic.models.weather.Daily: long getTime() +androidx.coordinatorlayout.R$styleable: int GradientColorItem_android_color +io.reactivex.Observable: java.lang.Object blockingSingle(java.lang.Object) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: double lat +com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.animation.MotionSpec getShowMotionSpec() +com.turingtechnologies.materialscrollbar.R$id: int edit_query +wangdaye.com.geometricweather.R$id: int activity_about_container +com.google.android.material.R$attr: int shapeAppearanceMediumComponent +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress_width +com.google.android.material.R$dimen: int material_clock_face_margin_top +okio.Buffer: okio.Buffer writeShortLe(int) +wangdaye.com.geometricweather.R$id: int seekbar_value +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_alphabeticShortcut +cyanogenmod.app.BaseLiveLockManagerService: boolean hasPrivatePermissions() +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton +androidx.appcompat.R$style +wangdaye.com.geometricweather.R$styleable: int ChipGroup_singleSelection +com.google.android.material.R$attr: int layout_constraintWidth_max +androidx.constraintlayout.widget.R$attr: int collapseIcon +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupWindow +cyanogenmod.app.CustomTile: android.app.PendingIntent onClick +cyanogenmod.app.ICMTelephonyManager +android.didikee.donate.R$attr: int suggestionRowLayout +wangdaye.com.geometricweather.R$attr: int hintAnimationEnabled +androidx.hilt.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView +androidx.legacy.coreutils.R$layout: int notification_template_part_chronometer +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_2 +okhttp3.Cache: int requestCount() +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxPlain() +james.adaptiveicon.R$color: int ripple_material_dark +wangdaye.com.geometricweather.R$attr: int bsb_second_track_color +androidx.preference.R$style: int Widget_AppCompat_SeekBar +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardUseCompatPadding +com.google.android.material.R$attr: int materialCircleRadius +com.google.android.material.R$dimen: int mtrl_textinput_box_stroke_width_focused +wangdaye.com.geometricweather.R$string: int hide_bottom_view_on_scroll_behavior +com.google.android.material.button.MaterialButton: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterOverflowTextAppearance +cyanogenmod.app.ProfileGroup: java.util.UUID getUuid() +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW_SHOWERS +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonStyleSmall +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) +james.adaptiveicon.R$attr: int popupWindowStyle +wangdaye.com.geometricweather.R$id: int skipCollapsed +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback diff --git a/release/3.001/mapping/fdroidRelease/usage.txt b/release/3.002/mapping/fdroidRelease/usage.txt similarity index 100% rename from release/3.001/mapping/fdroidRelease/usage.txt rename to release/3.002/mapping/fdroidRelease/usage.txt diff --git a/release/3.001/mapping/gplayRelease/configuration.txt b/release/3.002/mapping/gplayRelease/configuration.txt similarity index 100% rename from release/3.001/mapping/gplayRelease/configuration.txt rename to release/3.002/mapping/gplayRelease/configuration.txt diff --git a/release/3.001/mapping/gplayRelease/mapping.txt b/release/3.002/mapping/gplayRelease/mapping.txt similarity index 99% rename from release/3.001/mapping/gplayRelease/mapping.txt rename to release/3.002/mapping/gplayRelease/mapping.txt index a04ea470c..fa2d8ea5a 100644 --- a/release/3.001/mapping/gplayRelease/mapping.txt +++ b/release/3.002/mapping/gplayRelease/mapping.txt @@ -1,7 +1,7 @@ # compiler: R8 # compiler_version: 2.1.86 # min_api: 19 -# pg_map_id: cdfdbc0 +# pg_map_id: 0c9d706 # common_typos_disable android.didikee.donate.AlipayDonate -> android.didikee.donate.a: 1:1:boolean hasInstalledAlipayClient(android.content.Context):73:73 -> a @@ -93928,30 +93928,30 @@ wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC 1:1:wangdaye.com.geometricweather.main.utils.StatementManager getStatementManager():485:485 -> G 1:1:javax.inject.Provider getStatementManagerProvider():489:489 -> H 2:3:javax.inject.Provider getStatementManagerProvider():491:492 -> H - 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity injectClockDayDetailsWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity):650:650 -> I - 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity injectClockDayHorizontalWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity):656:656 -> J - 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity injectClockDayVerticalWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity):662:662 -> K - 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity injectClockDayWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity):668:668 -> L - 1:1:wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity injectDailyTrendWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity):674:674 -> M - 1:1:wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity injectDayWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity):680:680 -> N - 1:1:wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity injectDayWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity):686:686 -> O - 1:1:wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity injectHourlyTrendWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity):692:692 -> P - 1:1:wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity injectMultiCityWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity):698:698 -> Q - 1:1:wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity injectTextWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity):704:704 -> R - 1:1:wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity injectWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity):710:710 -> S - 1:1:void injectWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity):641:641 -> a - 1:1:void injectClockDayWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity):600:600 -> b - 1:1:void injectHourlyTrendWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity):623:623 -> c - 1:1:void injectDailyTrendWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity):606:606 -> d - 1:1:void injectDayWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity):612:612 -> e + 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity injectClockDayDetailsWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity):643:643 -> I + 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity injectClockDayHorizontalWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity):649:649 -> J + 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity injectClockDayVerticalWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity):655:655 -> K + 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity injectClockDayWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity):661:661 -> L + 1:1:wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity injectDailyTrendWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity):667:667 -> M + 1:1:wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity injectDayWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity):673:673 -> N + 1:1:wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity injectDayWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity):679:679 -> O + 1:1:wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity injectHourlyTrendWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity):685:685 -> P + 1:1:wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity injectMultiCityWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity):691:691 -> Q + 1:1:wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity injectTextWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity):697:697 -> R + 1:1:wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity injectWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity):703:703 -> S + 1:1:void injectWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity):634:634 -> a + 1:1:void injectClockDayWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity):599:599 -> b + 1:1:void injectHourlyTrendWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity):619:619 -> c + 1:1:void injectDailyTrendWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity):604:604 -> d + 1:1:void injectDayWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity):609:609 -> e void injectSearchActivity(wangdaye.com.geometricweather.search.SearchActivity) -> f 1:1:void injectClockDayDetailsWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity):582:582 -> g void injectMainActivity(wangdaye.com.geometricweather.main.MainActivity) -> h - 1:1:void injectTextWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity):635:635 -> i + 1:1:void injectTextWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity):629:629 -> i 1:1:java.util.Set getActivityViewModelFactory():562:562 -> j 1:1:void injectClockDayHorizontalWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity):588:588 -> k - 1:1:void injectMultiCityWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity):629:629 -> l - 1:1:void injectDayWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity):617:617 -> m + 1:1:void injectMultiCityWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity):624:624 -> l + 1:1:void injectDayWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity):614:614 -> m 1:1:void injectClockDayVerticalWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity):594:594 -> n 1:1:wangdaye.com.geometricweather.main.MainActivityViewModel_AssistedFactory access$1800(wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl):452:452 -> o 1:1:wangdaye.com.geometricweather.main.MainActivityRepository access$1900(wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl):452:452 -> p @@ -93971,15 +93971,15 @@ wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl$SwitchingProvider -> wangdaye.com.geometricweather.a$c$b$a: wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl this$2 -> b int id -> a - 1:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl,int):799:800 -> - 1:1:java.lang.Object get():806:806 -> get - 2:2:java.lang.Object get():823:823 -> get - 3:3:java.lang.Object get():825:825 -> get - 4:4:java.lang.Object get():820:820 -> get - 5:5:java.lang.Object get():817:817 -> get - 6:6:java.lang.Object get():814:814 -> get - 7:7:java.lang.Object get():811:811 -> get - 8:8:java.lang.Object get():808:808 -> get + 1:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl,int):792:793 -> + 1:1:java.lang.Object get():799:799 -> get + 2:2:java.lang.Object get():816:816 -> get + 3:3:java.lang.Object get():818:818 -> get + 4:4:java.lang.Object get():813:813 -> get + 5:5:java.lang.Object get():810:810 -> get + 6:6:java.lang.Object get():807:807 -> get + 7:7:java.lang.Object get():804:804 -> get + 8:8:java.lang.Object get():801:801 -> get wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$Builder -> wangdaye.com.geometricweather.a$d: wangdaye.com.geometricweather.location.di.ApiModule apiModule -> a wangdaye.com.geometricweather.weather.di.ApiModule apiModule2 -> b @@ -93997,38 +93997,38 @@ wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ServiceCBuilder -> wangdaye.com.geometricweather.a$e: wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC this$0 -> b android.app.Service service -> a - 1:1:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC):832:832 -> - 2:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$1):832:832 -> - 1:1:dagger.hilt.android.components.ServiceComponent build():832:832 -> a - 1:1:dagger.hilt.android.internal.builders.ServiceComponentBuilder service(android.app.Service):832:832 -> b - 1:2:wangdaye.com.geometricweather.GeometricWeather_HiltComponents$ServiceC build():843:844 -> c - 1:1:wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ServiceCBuilder service(android.app.Service):837:837 -> d + 1:1:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC):825:825 -> + 2:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$1):825:825 -> + 1:1:dagger.hilt.android.components.ServiceComponent build():825:825 -> a + 1:1:dagger.hilt.android.internal.builders.ServiceComponentBuilder service(android.app.Service):825:825 -> b + 1:2:wangdaye.com.geometricweather.GeometricWeather_HiltComponents$ServiceC build():836:837 -> c + 1:1:wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ServiceCBuilder service(android.app.Service):830:830 -> d wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ServiceCImpl -> wangdaye.com.geometricweather.a$f: wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC this$0 -> a - 1:1:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,android.app.Service,wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$1):848:848 -> - 2:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,android.app.Service):849:849 -> - 1:1:void injectForegroundTodayForecastUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService):868:868 -> a - 1:1:void injectForegroundNormalUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService):862:862 -> b - 1:1:void injectForegroundTomorrowForecastUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService):874:874 -> c - 1:1:void injectCMWeatherProviderService(wangdaye.com.geometricweather.background.service.CMWeatherProviderService):879:879 -> d - 1:1:void injectAwakeForegroundUpdateService(wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService):856:856 -> e - 1:2:wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService injectAwakeForegroundUpdateService2(wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService):884:885 -> f - 1:2:wangdaye.com.geometricweather.background.service.CMWeatherProviderService injectCMWeatherProviderService2(wangdaye.com.geometricweather.background.service.CMWeatherProviderService):912:913 -> g - 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService injectForegroundNormalUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService):891:892 -> h - 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService injectForegroundTodayForecastUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService):898:899 -> i - 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService injectForegroundTomorrowForecastUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService):905:906 -> j + 1:1:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,android.app.Service,wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$1):841:841 -> + 2:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,android.app.Service):842:842 -> + 1:1:void injectForegroundTodayForecastUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService):859:859 -> a + 1:1:void injectForegroundNormalUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService):853:853 -> b + 1:1:void injectForegroundTomorrowForecastUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService):865:865 -> c + 1:1:void injectCMWeatherProviderService(wangdaye.com.geometricweather.background.service.CMWeatherProviderService):870:870 -> d + 1:1:void injectAwakeForegroundUpdateService(wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService):848:848 -> e + 1:2:wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService injectAwakeForegroundUpdateService2(wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService):875:876 -> f + 1:2:wangdaye.com.geometricweather.background.service.CMWeatherProviderService injectCMWeatherProviderService2(wangdaye.com.geometricweather.background.service.CMWeatherProviderService):903:904 -> g + 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService injectForegroundNormalUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService):882:883 -> h + 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService injectForegroundTodayForecastUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService):889:890 -> i + 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService injectForegroundTomorrowForecastUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService):896:897 -> j wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$SwitchingProvider -> wangdaye.com.geometricweather.a$g: wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC this$0 -> b int id -> a - 1:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,int):921:922 -> - 1:1:java.lang.Object get():928:928 -> get - 2:2:java.lang.Object get():945:945 -> get - 3:3:java.lang.Object get():947:947 -> get - 4:4:java.lang.Object get():942:942 -> get - 5:5:java.lang.Object get():939:939 -> get - 6:6:java.lang.Object get():936:936 -> get - 7:7:java.lang.Object get():933:933 -> get - 8:8:java.lang.Object get():930:930 -> get + 1:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,int):912:913 -> + 1:1:java.lang.Object get():919:919 -> get + 2:2:java.lang.Object get():936:936 -> get + 3:3:java.lang.Object get():938:938 -> get + 4:4:java.lang.Object get():933:933 -> get + 5:5:java.lang.Object get():930:930 -> get + 6:6:java.lang.Object get():927:927 -> get + 7:7:java.lang.Object get():924:924 -> get + 8:8:java.lang.Object get():921:921 -> get wangdaye.com.geometricweather.GeometricWeather -> wangdaye.com.geometricweather.GeometricWeather: wangdaye.com.geometricweather.GeometricWeather sInstance -> f java.util.Set mActivitySet -> c @@ -95575,10 +95575,10 @@ wangdaye.com.geometricweather.common.retrofit.interceptors.GzipInterceptor -> wa wangdaye.com.geometricweather.common.retrofit.interceptors.ReportExceptionInterceptor -> wangdaye.com.geometricweather.j.b.b.b: 1:1:void ():9:9 -> wangdaye.com.geometricweather.common.rxjava.BaseObserver -> wangdaye.com.geometricweather.j.c.a: - 1:1:void ():5:5 -> - 1:1:void onError(java.lang.Throwable):22:22 -> onError - 1:1:void onNext(java.lang.Object):14:14 -> onNext - 2:2:void onNext(java.lang.Object):16:16 -> onNext + 1:1:void ():7:7 -> + 1:1:void onError(java.lang.Throwable):24:24 -> onError + 1:1:void onNext(java.lang.Object):16:16 -> onNext + 2:2:void onNext(java.lang.Object):18:18 -> onNext wangdaye.com.geometricweather.common.rxjava.ObserverContainer -> wangdaye.com.geometricweather.j.c.b: io.reactivex.disposables.CompositeDisposable compositeDisposable -> b io.reactivex.Observer observer -> c @@ -108335,299 +108335,305 @@ wangdaye.com.geometricweather.weather.apis.MfWeatherApi -> wangdaye.com.geometri io.reactivex.Observable getForecast(double,double,java.lang.String,java.lang.String) -> f io.reactivex.Observable getEphemeris(double,double,java.lang.String,java.lang.String) -> g wangdaye.com.geometricweather.weather.converters.AccuResultConverter -> wangdaye.com.geometricweather.q.f.a: - 1:5:java.lang.String arrayToString(java.lang.String[]):544:548 -> a - 6:6:java.lang.String arrayToString(java.lang.String[]):551:551 -> a - 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):55:58 -> b - 5:5:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):62:62 -> b - 6:8:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):64:66 -> b - 9:15:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):71:77 -> b - 16:16:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):80:80 -> b - 17:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):84:84 -> b - 18:24:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):93:99 -> b - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):113:113 -> c - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):115:116 -> c - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):120:120 -> c - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):124:124 -> c - 6:11:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):126:131 -> c - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):135:135 -> c - 13:14:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):151:152 -> c - 15:15:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):154:154 -> c - 16:23:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):159:166 -> c - 24:31:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):168:175 -> c - 32:33:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):180:181 -> c - 34:35:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):183:184 -> c - 36:37:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):186:187 -> c - 38:38:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):185:185 -> c - 39:39:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):190:190 -> c - 1:1:java.lang.String convertUnit(android.content.Context,java.lang.String):485:485 -> d - 2:2:java.lang.String convertUnit(android.content.Context,java.lang.String):490:490 -> d - 3:3:java.lang.String convertUnit(android.content.Context,java.lang.String):493:493 -> d - 4:4:java.lang.String convertUnit(android.content.Context,java.lang.String):496:496 -> d - 1:1:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):511:511 -> e - 2:3:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):513:514 -> e - 4:6:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):516:518 -> e - 7:9:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):520:520 -> e - 10:10:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):522:522 -> e - 11:14:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):524:527 -> e - 15:15:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):530:530 -> e - 16:17:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):533:534 -> e - 1:2:wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen getAirAndPollen(java.util.List,java.lang.String):357:358 -> f - 1:3:java.util.List getAlertList(java.util.List):428:430 -> g - 4:5:java.util.List getAlertList(java.util.List):433:434 -> g - 6:6:java.util.List getAlertList(java.util.List):436:436 -> g - 7:7:java.util.List getAlertList(java.util.List):439:439 -> g - 8:8:java.util.List getAlertList(java.util.List):430:430 -> g - 9:10:java.util.List getAlertList(java.util.List):443:444 -> g - 1:3:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.util.List):307:309 -> h - 4:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.util.List):312:313 -> h - 1:1:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):198:198 -> i - 2:3:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):200:201 -> i - 4:4:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):206:206 -> i - 5:5:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):208:208 -> i - 6:8:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):210:212 -> i - 9:9:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):216:216 -> i - 10:10:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):219:219 -> i - 11:13:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):221:223 -> i - 14:18:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):226:230 -> i - 19:19:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):233:233 -> i - 20:22:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):235:237 -> i - 23:24:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):242:243 -> i - 25:25:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):245:245 -> i - 26:26:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):248:248 -> i - 27:27:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):250:250 -> i - 28:30:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):252:254 -> i - 31:31:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):258:258 -> i - 32:32:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):261:261 -> i - 33:35:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):263:265 -> i - 36:40:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):268:272 -> i - 41:41:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):275:275 -> i - 42:44:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):277:279 -> i - 45:46:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):284:285 -> i - 47:47:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):287:287 -> i - 48:48:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):292:292 -> i - 49:51:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):295:297 -> i - 52:52:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):201:201 -> i - 1:7:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):325:331 -> j - 8:9:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):333:334 -> j - 10:11:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):336:337 -> j - 12:13:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):339:340 -> j - 1:3:wangdaye.com.geometricweather.common.basic.models.weather.UV getDailyUV(java.util.List):346:348 -> k - 1:3:java.util.List getHourlyList(java.util.List):366:368 -> l - 4:4:java.util.List getHourlyList(java.util.List):374:374 -> l - 5:5:java.util.List getHourlyList(java.util.List):376:376 -> l - 6:6:java.util.List getHourlyList(java.util.List):392:392 -> l - 7:7:java.util.List getHourlyList(java.util.List):368:368 -> l - 1:1:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):407:407 -> m - 2:4:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):409:411 -> m - 5:5:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):415:415 -> m - 6:6:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):417:417 -> m - 7:8:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):419:420 -> m - 9:9:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):411:411 -> m - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):462:462 -> n - 2:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):464:464 -> n - 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):474:474 -> n - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):478:478 -> n - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):480:480 -> n - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):476:476 -> n - 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):472:472 -> n - 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):469:469 -> n - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):467:467 -> n - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):460:460 -> n - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):458:458 -> n - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):455:455 -> n + 1:5:java.lang.String arrayToString(java.lang.String[]):548:552 -> a + 6:6:java.lang.String arrayToString(java.lang.String[]):555:555 -> a + 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):57:60 -> b + 5:5:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):64:64 -> b + 6:8:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):66:68 -> b + 9:15:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):73:79 -> b + 16:16:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):82:82 -> b + 17:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):86:86 -> b + 18:24:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):95:101 -> b + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):116:116 -> c + 2:3:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):118:119 -> c + 4:4:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):123:123 -> c + 5:5:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):127:127 -> c + 6:11:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):129:134 -> c + 12:12:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):138:138 -> c + 13:14:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):154:155 -> c + 15:15:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):157:157 -> c + 16:23:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):162:169 -> c + 24:31:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):171:178 -> c + 32:33:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):183:184 -> c + 34:35:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):186:187 -> c + 36:37:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):189:190 -> c + 38:38:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):188:188 -> c + 39:39:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):193:193 -> c + 40:40:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):195:195 -> c + 41:41:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):197:197 -> c + 1:1:java.lang.String convertUnit(android.content.Context,java.lang.String):489:489 -> d + 2:2:java.lang.String convertUnit(android.content.Context,java.lang.String):494:494 -> d + 3:3:java.lang.String convertUnit(android.content.Context,java.lang.String):497:497 -> d + 4:4:java.lang.String convertUnit(android.content.Context,java.lang.String):500:500 -> d + 1:1:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):515:515 -> e + 2:3:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):517:518 -> e + 4:6:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):520:522 -> e + 7:9:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):524:524 -> e + 10:10:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):526:526 -> e + 11:14:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):528:531 -> e + 15:15:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):534:534 -> e + 16:17:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):537:538 -> e + 1:2:wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen getAirAndPollen(java.util.List,java.lang.String):361:362 -> f + 1:3:java.util.List getAlertList(java.util.List):432:434 -> g + 4:5:java.util.List getAlertList(java.util.List):437:438 -> g + 6:6:java.util.List getAlertList(java.util.List):440:440 -> g + 7:7:java.util.List getAlertList(java.util.List):443:443 -> g + 8:8:java.util.List getAlertList(java.util.List):434:434 -> g + 9:10:java.util.List getAlertList(java.util.List):447:448 -> g + 1:3:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.util.List):311:313 -> h + 4:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.util.List):316:317 -> h + 1:1:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):202:202 -> i + 2:3:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):204:205 -> i + 4:4:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):210:210 -> i + 5:5:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):212:212 -> i + 6:8:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):214:216 -> i + 9:9:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):220:220 -> i + 10:10:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):223:223 -> i + 11:13:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):225:227 -> i + 14:18:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):230:234 -> i + 19:19:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):237:237 -> i + 20:22:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):239:241 -> i + 23:24:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):246:247 -> i + 25:25:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):249:249 -> i + 26:26:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):252:252 -> i + 27:27:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):254:254 -> i + 28:30:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):256:258 -> i + 31:31:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):262:262 -> i + 32:32:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):265:265 -> i + 33:35:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):267:269 -> i + 36:40:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):272:276 -> i + 41:41:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):279:279 -> i + 42:44:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):281:283 -> i + 45:46:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):288:289 -> i + 47:47:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):291:291 -> i + 48:48:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):296:296 -> i + 49:51:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):299:301 -> i + 52:52:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):205:205 -> i + 1:7:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):329:335 -> j + 8:9:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):337:338 -> j + 10:11:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):340:341 -> j + 12:13:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):343:344 -> j + 1:3:wangdaye.com.geometricweather.common.basic.models.weather.UV getDailyUV(java.util.List):350:352 -> k + 1:3:java.util.List getHourlyList(java.util.List):370:372 -> l + 4:4:java.util.List getHourlyList(java.util.List):378:378 -> l + 5:5:java.util.List getHourlyList(java.util.List):380:380 -> l + 6:6:java.util.List getHourlyList(java.util.List):396:396 -> l + 7:7:java.util.List getHourlyList(java.util.List):372:372 -> l + 1:1:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):411:411 -> m + 2:4:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):413:415 -> m + 5:5:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):419:419 -> m + 6:6:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):421:421 -> m + 7:8:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):423:424 -> m + 9:9:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):415:415 -> m + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):466:466 -> n + 2:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):468:468 -> n + 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):478:478 -> n + 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):482:482 -> n + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):484:484 -> n + 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):480:480 -> n + 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):476:476 -> n + 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):473:473 -> n + 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):471:471 -> n + 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):464:464 -> n + 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):462:462 -> n + 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):459:459 -> n int toInt(double) -> o wangdaye.com.geometricweather.weather.converters.CNResultConverter -> wangdaye.com.geometricweather.q.f.b: - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):51:51 -> a - 2:2:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):53:53 -> a - 3:4:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):56:57 -> a - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):59:59 -> a - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):61:61 -> a - 7:8:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):63:64 -> a - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):68:68 -> a - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):72:72 -> a - 11:12:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):74:75 -> a - 13:14:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):98:99 -> a - 15:16:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):104:105 -> a - 17:24:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):108:115 -> a - 25:26:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):117:118 -> a - 27:27:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):124:124 -> a - 28:28:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):127:127 -> a - 29:30:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):130:131 -> a - 31:31:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):128:128 -> a - 32:32:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):135:135 -> a - 33:33:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):138:138 -> a - 1:1:int getAlertColor(java.lang.String):556:556 -> b - 2:2:int getAlertColor(java.lang.String):559:559 -> b - 3:3:int getAlertColor(java.lang.String):566:566 -> b - 4:4:int getAlertColor(java.lang.String):562:562 -> b - 5:5:int getAlertColor(java.lang.String):578:578 -> b - 6:6:int getAlertColor(java.lang.String):574:574 -> b - 1:3:java.util.List getAlertList(java.util.List):359:361 -> c - 4:4:java.util.List getAlertList(java.util.List):363:363 -> c - 5:5:java.util.List getAlertList(java.util.List):365:365 -> c - 6:6:java.util.List getAlertList(java.util.List):368:368 -> c - 7:7:java.util.List getAlertList(java.util.List):370:370 -> c - 8:8:java.util.List getAlertList(java.util.List):372:372 -> c - 9:10:java.util.List getAlertList(java.util.List):376:377 -> c - 11:11:java.util.List getAlertList(java.util.List):368:368 -> c - 12:13:java.util.List getAlertList(java.util.List):382:383 -> c - 1:1:int getAlertPriority(java.lang.String):526:526 -> d - 2:2:int getAlertPriority(java.lang.String):529:529 -> d - 1:1:java.lang.Float getCO(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):466:466 -> e - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):274:274 -> f - 2:4:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):276:278 -> f - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):290:290 -> f - 1:4:java.util.List getDailyList(android.content.Context,java.util.List):146:149 -> g - 5:5:java.util.List getDailyList(android.content.Context,java.util.List):151:151 -> g - 6:6:java.util.List getDailyList(android.content.Context,java.util.List):153:153 -> g - 7:7:java.util.List getDailyList(android.content.Context,java.util.List):156:156 -> g - 8:10:java.util.List getDailyList(android.content.Context,java.util.List):158:160 -> g - 11:11:java.util.List getDailyList(android.content.Context,java.util.List):162:162 -> g - 12:13:java.util.List getDailyList(android.content.Context,java.util.List):192:193 -> g - 14:14:java.util.List getDailyList(android.content.Context,java.util.List):195:195 -> g - 15:17:java.util.List getDailyList(android.content.Context,java.util.List):200:202 -> g - 18:18:java.util.List getDailyList(android.content.Context,java.util.List):204:204 -> g - 19:20:java.util.List getDailyList(android.content.Context,java.util.List):234:235 -> g - 21:21:java.util.List getDailyList(android.content.Context,java.util.List):237:237 -> g - 22:23:java.util.List getDailyList(android.content.Context,java.util.List):242:243 -> g - 24:24:java.util.List getDailyList(android.content.Context,java.util.List):247:247 -> g - 25:26:java.util.List getDailyList(android.content.Context,java.util.List):264:265 -> g - 27:27:java.util.List getDailyList(android.content.Context,java.util.List):263:263 -> g - 28:28:java.util.List getDailyList(android.content.Context,java.util.List):153:153 -> g - 1:2:java.util.Date getDate(java.lang.String):474:475 -> h - 1:6:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):297:302 -> i - 7:8:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):304:305 -> i - 9:9:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):307:307 -> i - 10:11:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):318:319 -> i - 12:12:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):321:321 -> i - 13:14:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):324:325 -> i - 15:15:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):327:327 -> i - 16:16:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):329:329 -> i - 17:17:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):321:321 -> i - 1:1:float getHoursOfDay(java.util.Date,java.util.Date):480:480 -> j - 1:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):388:389 -> k - 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):392:392 -> k - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):460:460 -> k - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):457:457 -> k - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):451:451 -> k - 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):446:446 -> k - 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):440:440 -> k - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):430:430 -> k - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):425:425 -> k - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):421:421 -> k - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):417:417 -> k - 13:13:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):399:399 -> k - 14:14:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):395:395 -> k - 1:1:float getWindDegree(java.lang.String):488:488 -> l + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):50:50 -> a + 2:2:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):54:54 -> a + 3:3:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):56:56 -> a + 4:5:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):59:60 -> a + 6:6:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):62:62 -> a + 7:7:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):64:64 -> a + 8:9:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):66:67 -> a + 10:10:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):71:71 -> a + 11:11:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):75:75 -> a + 12:13:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):77:78 -> a + 14:15:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):101:102 -> a + 16:17:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):107:108 -> a + 18:25:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):111:118 -> a + 26:27:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):120:121 -> a + 28:28:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):127:127 -> a + 29:29:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):130:130 -> a + 30:31:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):133:134 -> a + 32:32:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):131:131 -> a + 33:33:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):138:138 -> a + 34:34:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):140:140 -> a + 35:36:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):142:143 -> a + 1:1:int getAlertColor(java.lang.String):560:560 -> b + 2:2:int getAlertColor(java.lang.String):563:563 -> b + 3:3:int getAlertColor(java.lang.String):570:570 -> b + 4:4:int getAlertColor(java.lang.String):566:566 -> b + 5:5:int getAlertColor(java.lang.String):582:582 -> b + 6:6:int getAlertColor(java.lang.String):578:578 -> b + 1:3:java.util.List getAlertList(java.util.List):363:365 -> c + 4:4:java.util.List getAlertList(java.util.List):367:367 -> c + 5:5:java.util.List getAlertList(java.util.List):369:369 -> c + 6:6:java.util.List getAlertList(java.util.List):372:372 -> c + 7:7:java.util.List getAlertList(java.util.List):374:374 -> c + 8:8:java.util.List getAlertList(java.util.List):376:376 -> c + 9:10:java.util.List getAlertList(java.util.List):380:381 -> c + 11:11:java.util.List getAlertList(java.util.List):372:372 -> c + 12:13:java.util.List getAlertList(java.util.List):386:387 -> c + 1:1:int getAlertPriority(java.lang.String):530:530 -> d + 2:2:int getAlertPriority(java.lang.String):533:533 -> d + 1:1:java.lang.Float getCO(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):470:470 -> e + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):278:278 -> f + 2:4:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):280:282 -> f + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):294:294 -> f + 1:4:java.util.List getDailyList(android.content.Context,java.util.List):150:153 -> g + 5:5:java.util.List getDailyList(android.content.Context,java.util.List):155:155 -> g + 6:6:java.util.List getDailyList(android.content.Context,java.util.List):157:157 -> g + 7:7:java.util.List getDailyList(android.content.Context,java.util.List):160:160 -> g + 8:10:java.util.List getDailyList(android.content.Context,java.util.List):162:164 -> g + 11:11:java.util.List getDailyList(android.content.Context,java.util.List):166:166 -> g + 12:13:java.util.List getDailyList(android.content.Context,java.util.List):196:197 -> g + 14:14:java.util.List getDailyList(android.content.Context,java.util.List):199:199 -> g + 15:17:java.util.List getDailyList(android.content.Context,java.util.List):204:206 -> g + 18:18:java.util.List getDailyList(android.content.Context,java.util.List):208:208 -> g + 19:20:java.util.List getDailyList(android.content.Context,java.util.List):238:239 -> g + 21:21:java.util.List getDailyList(android.content.Context,java.util.List):241:241 -> g + 22:23:java.util.List getDailyList(android.content.Context,java.util.List):246:247 -> g + 24:24:java.util.List getDailyList(android.content.Context,java.util.List):251:251 -> g + 25:26:java.util.List getDailyList(android.content.Context,java.util.List):268:269 -> g + 27:27:java.util.List getDailyList(android.content.Context,java.util.List):267:267 -> g + 28:28:java.util.List getDailyList(android.content.Context,java.util.List):157:157 -> g + 1:2:java.util.Date getDate(java.lang.String):478:479 -> h + 1:6:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):301:306 -> i + 7:8:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):308:309 -> i + 9:9:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):311:311 -> i + 10:11:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):322:323 -> i + 12:12:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):325:325 -> i + 13:14:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):328:329 -> i + 15:15:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):331:331 -> i + 16:16:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):333:333 -> i + 17:17:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):325:325 -> i + 1:1:float getHoursOfDay(java.util.Date,java.util.Date):484:484 -> j + 1:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):392:393 -> k + 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):396:396 -> k + 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):464:464 -> k + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):461:461 -> k + 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):455:455 -> k + 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):450:450 -> k + 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):444:444 -> k + 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):434:434 -> k + 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):429:429 -> k + 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):425:425 -> k + 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):421:421 -> k + 13:13:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):403:403 -> k + 14:14:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):399:399 -> k + 1:1:float getWindDegree(java.lang.String):492:492 -> l wangdaye.com.geometricweather.weather.converters.CaiyunResultConverter -> wangdaye.com.geometricweather.q.f.c: - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):47:47 -> a - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):49:50 -> a - 4:6:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):52:54 -> a - 7:8:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):57:58 -> a - 9:10:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):60:61 -> a - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):83:83 -> a - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):85:85 -> a - 13:13:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):88:88 -> a - 14:14:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):91:91 -> a - 15:15:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):89:89 -> a - 16:17:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):95:96 -> a - 18:20:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):99:101 -> a - 21:22:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):103:104 -> a - 23:24:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):106:107 -> a - 25:26:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):115:116 -> a - 27:28:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):119:120 -> a - 29:29:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):117:117 -> a - 30:33:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):124:127 -> a - 34:34:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):123:123 -> a - 35:35:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):130:130 -> a - 36:36:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):133:133 -> a - 1:3:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):139:139 -> b - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):144:144 -> b - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):151:151 -> b - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):158:158 -> b - 7:7:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):165:165 -> b - 8:8:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):172:172 -> b - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):179:179 -> b - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):186:186 -> b - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):191:191 -> b - 1:1:int getAlertColor(java.lang.String):804:804 -> c - 2:2:int getAlertColor(java.lang.String):807:807 -> c - 3:3:int getAlertColor(java.lang.String):814:814 -> c - 4:4:int getAlertColor(java.lang.String):810:810 -> c - 5:5:int getAlertColor(java.lang.String):826:826 -> c - 6:6:int getAlertColor(java.lang.String):822:822 -> c - 1:3:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):509:511 -> d - 4:4:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):513:513 -> d - 5:5:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):515:515 -> d - 6:7:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):519:520 -> d - 8:8:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):511:511 -> d - 9:10:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):524:525 -> d - 1:1:int getAlertPriority(java.lang.String):774:774 -> e - 2:2:int getAlertPriority(java.lang.String):777:777 -> e - 1:9:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):210:218 -> f - 10:10:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):220:220 -> f - 11:12:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):222:223 -> f - 13:15:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):225:227 -> f - 16:16:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):229:229 -> f - 17:17:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):245:245 -> f - 18:18:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):259:259 -> f - 19:19:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):261:261 -> f - 20:20:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):264:264 -> f - 21:21:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):267:267 -> f - 22:22:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):265:265 -> f - 23:25:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):273:275 -> f - 26:26:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):277:277 -> f - 27:27:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):293:293 -> f - 28:28:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):307:307 -> f - 29:29:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):309:309 -> f - 30:30:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):312:312 -> f - 31:31:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):315:315 -> f - 32:32:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):313:313 -> f - 33:34:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):321:322 -> f - 35:36:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):327:328 -> f - 37:38:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):356:357 -> f - 39:39:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):220:220 -> f - 1:8:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):383:390 -> g - 9:10:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):392:393 -> g - 11:14:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):396:399 -> g - 15:15:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):401:401 -> g - 16:16:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):393:393 -> g - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):486:486 -> h - 2:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):489:489 -> h - 3:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):492:493 -> h - 1:1:java.lang.String getMinuteWeatherText(double,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):469:469 -> i - 2:2:java.lang.String getMinuteWeatherText(double,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):475:475 -> i - 1:1:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):433:433 -> j - 2:7:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):435:440 -> j - 8:8:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):442:442 -> j - 9:11:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):444:446 -> j - 12:12:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):448:448 -> j - 13:13:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):447:447 -> j - 14:14:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):453:453 -> j - 15:15:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):452:452 -> j - 16:16:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):442:442 -> j - 1:2:java.lang.Float getPrecipitationProbability(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean,int):370:371 -> k - 1:1:java.lang.String getUVDescription(java.lang.String):754:754 -> l - 2:2:java.lang.String getUVDescription(java.lang.String):767:767 -> l - 1:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):653:654 -> m - 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):657:657 -> m - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):725:725 -> m - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):722:722 -> m - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):716:716 -> m - 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):711:711 -> m - 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):705:705 -> m - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):695:695 -> m - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):690:690 -> m - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):686:686 -> m - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):682:682 -> m - 13:13:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):664:664 -> m - 14:14:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):660:660 -> m - 1:1:java.lang.String getWeatherText(java.lang.String):530:530 -> n - 2:2:java.lang.String getWeatherText(java.lang.String):534:534 -> n + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):49:49 -> a + 2:3:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):51:52 -> a + 4:6:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):54:56 -> a + 7:8:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):59:60 -> a + 9:10:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):62:63 -> a + 11:11:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):85:85 -> a + 12:12:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):87:87 -> a + 13:13:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):90:90 -> a + 14:14:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):93:93 -> a + 15:15:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):91:91 -> a + 16:17:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):97:98 -> a + 18:20:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):101:103 -> a + 21:22:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):105:106 -> a + 23:24:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):108:109 -> a + 25:26:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):117:118 -> a + 27:28:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):121:122 -> a + 29:29:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):119:119 -> a + 30:33:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):126:129 -> a + 34:34:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):125:125 -> a + 35:35:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):132:132 -> a + 36:36:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):134:134 -> a + 37:38:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):136:137 -> a + 1:3:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):144:144 -> b + 4:4:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):152:152 -> b + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):159:159 -> b + 6:6:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):166:166 -> b + 7:7:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):173:173 -> b + 8:8:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):180:180 -> b + 9:9:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):187:187 -> b + 10:10:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):194:194 -> b + 11:11:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):199:199 -> b + 1:1:int getAlertColor(java.lang.String):816:816 -> c + 2:2:int getAlertColor(java.lang.String):819:819 -> c + 3:3:int getAlertColor(java.lang.String):826:826 -> c + 4:4:int getAlertColor(java.lang.String):822:822 -> c + 5:5:int getAlertColor(java.lang.String):838:838 -> c + 6:6:int getAlertColor(java.lang.String):834:834 -> c + 1:3:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):521:523 -> d + 4:4:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):525:525 -> d + 5:5:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):527:527 -> d + 6:7:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):531:532 -> d + 8:8:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):523:523 -> d + 9:10:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):536:537 -> d + 1:1:int getAlertPriority(java.lang.String):786:786 -> e + 2:2:int getAlertPriority(java.lang.String):789:789 -> e + 1:9:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):218:226 -> f + 10:10:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):228:228 -> f + 11:12:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):230:231 -> f + 13:15:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):233:235 -> f + 16:16:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):237:237 -> f + 17:17:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):253:253 -> f + 18:18:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):267:267 -> f + 19:19:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):269:269 -> f + 20:20:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):272:272 -> f + 21:21:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):275:275 -> f + 22:22:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):273:273 -> f + 23:25:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):281:283 -> f + 26:26:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):285:285 -> f + 27:27:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):301:301 -> f + 28:28:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):315:315 -> f + 29:29:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):317:317 -> f + 30:30:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):320:320 -> f + 31:31:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):323:323 -> f + 32:32:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):321:321 -> f + 33:34:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):329:330 -> f + 35:36:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):335:336 -> f + 37:38:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):338:339 -> f + 39:40:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):368:369 -> f + 41:41:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):228:228 -> f + 1:8:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):395:402 -> g + 9:10:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):404:405 -> g + 11:14:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):408:411 -> g + 15:15:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):413:413 -> g + 16:16:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):405:405 -> g + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):498:498 -> h + 2:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):501:501 -> h + 3:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):504:505 -> h + 1:1:java.lang.String getMinuteWeatherText(double,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):481:481 -> i + 2:2:java.lang.String getMinuteWeatherText(double,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):487:487 -> i + 1:1:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):445:445 -> j + 2:7:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):447:452 -> j + 8:8:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):454:454 -> j + 9:11:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):456:458 -> j + 12:12:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):460:460 -> j + 13:13:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):459:459 -> j + 14:14:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):465:465 -> j + 15:15:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):464:464 -> j + 16:16:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):454:454 -> j + 1:2:java.lang.Float getPrecipitationProbability(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean,int):382:383 -> k + 1:1:java.lang.String getUVDescription(java.lang.String):766:766 -> l + 2:2:java.lang.String getUVDescription(java.lang.String):779:779 -> l + 1:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):665:666 -> m + 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):669:669 -> m + 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):737:737 -> m + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):734:734 -> m + 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):728:728 -> m + 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):723:723 -> m + 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):717:717 -> m + 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):707:707 -> m + 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):702:702 -> m + 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):698:698 -> m + 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):694:694 -> m + 13:13:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):676:676 -> m + 14:14:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):672:672 -> m + 1:1:java.lang.String getWeatherText(java.lang.String):542:542 -> n + 2:2:java.lang.String getWeatherText(java.lang.String):546:546 -> n java.lang.String getWindDirection(float) -> o - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):197:197 -> p - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):200:201 -> p - 1:1:boolean isPrecipitation(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):501:501 -> q + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):205:205 -> p + 2:3:wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):208:209 -> p + 1:1:boolean isPrecipitation(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):513:513 -> q wangdaye.com.geometricweather.weather.converters.CommonConverter -> wangdaye.com.geometricweather.q.f.d: 1:1:java.lang.String getAqiQuality(android.content.Context,java.lang.Integer):49:49 -> a 2:11:java.lang.String getAqiQuality(android.content.Context,java.lang.Integer):51:60 -> a @@ -108660,90 +108666,92 @@ wangdaye.com.geometricweather.weather.converters.CommonConverter -> wangdaye.com 4:5:boolean isDaylight(java.util.Date,java.util.Date,java.util.Date):117:118 -> d 6:7:boolean isDaylight(java.util.Date,java.util.Date,java.util.Date):120:121 -> d wangdaye.com.geometricweather.weather.converters.MfResultConverter -> wangdaye.com.geometricweather.q.f.e: - 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):53:56 -> a - 5:7:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):58:60 -> a - 8:10:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):62:64 -> a - 11:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):69:75 -> a - 18:18:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):78:78 -> a - 19:21:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):80:82 -> a - 22:28:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):91:97 -> a - 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):105:108 -> b - 5:5:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):112:112 -> b - 6:8:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):114:116 -> b - 9:15:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):121:127 -> b - 16:16:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):130:130 -> b - 17:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):134:134 -> b - 18:24:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):143:149 -> b - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):163:163 -> c - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):165:166 -> c - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):170:170 -> c - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):174:174 -> c - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):176:176 -> c - 7:9:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):200:202 -> c - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):205:205 -> c - 11:12:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):218:219 -> c - 13:16:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):221:224 -> c - 17:19:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):227:229 -> c - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):238:238 -> d - 2:8:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):245:251 -> d - 9:14:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):253:258 -> d - 15:20:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):260:265 -> d - 21:26:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):267:272 -> d - 27:27:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):275:275 -> d - 1:1:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):286:286 -> e - 2:3:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):288:289 -> e - 4:4:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):296:296 -> e - 5:5:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):298:298 -> e - 6:6:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):338:338 -> e - 7:7:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):340:340 -> e - 8:8:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):377:377 -> e - 9:10:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):381:382 -> e - 11:12:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):384:385 -> e - 13:13:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):289:289 -> e - 1:3:java.util.List getHourlyList(java.util.List):393:395 -> f - 4:4:java.util.List getHourlyList(java.util.List):401:401 -> f - 5:5:java.util.List getHourlyList(java.util.List):403:403 -> f - 6:6:java.util.List getHourlyList(java.util.List):405:405 -> f - 7:7:java.util.List getHourlyList(java.util.List):409:409 -> f - 8:8:java.util.List getHourlyList(java.util.List):395:395 -> f - 1:1:float getHoursOfDay(java.util.Date,java.util.Date):580:580 -> g - 1:1:java.util.List getMinutelyList(long,long,wangdaye.com.geometricweather.weather.json.mf.MfRainResult):435:435 -> h - 1:1:int getWarningColor(int):521:521 -> i - 2:2:int getWarningColor(int):523:523 -> i - 3:3:int getWarningColor(int):525:525 -> i - 4:4:int getWarningColor(int):527:527 -> i + 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):56:59 -> a + 5:7:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):61:63 -> a + 8:10:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):65:67 -> a + 11:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):72:78 -> a + 18:18:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):81:81 -> a + 19:21:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):83:85 -> a + 22:28:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):94:100 -> a + 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):109:112 -> b + 5:5:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):116:116 -> b + 6:8:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):118:120 -> b + 9:15:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):125:131 -> b + 16:16:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):134:134 -> b + 17:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):138:138 -> b + 18:24:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):147:153 -> b + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):168:168 -> c + 2:3:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):170:171 -> c + 4:4:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):175:175 -> c + 5:5:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):179:179 -> c + 6:6:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):181:181 -> c + 7:9:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):205:207 -> c + 10:10:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):210:210 -> c + 11:12:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):223:224 -> c + 13:16:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):226:229 -> c + 17:17:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):231:231 -> c + 18:20:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):233:235 -> c + 21:21:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):237:237 -> c + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):244:244 -> d + 2:8:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):251:257 -> d + 9:14:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):259:264 -> d + 15:20:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):266:271 -> d + 21:26:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):273:278 -> d + 27:27:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):281:281 -> d + 1:1:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):292:292 -> e + 2:3:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):294:295 -> e + 4:4:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):302:302 -> e + 5:5:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):304:304 -> e + 6:6:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):344:344 -> e + 7:7:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):346:346 -> e + 8:8:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):383:383 -> e + 9:10:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):387:388 -> e + 11:12:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):390:391 -> e + 13:13:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):295:295 -> e + 1:3:java.util.List getHourlyList(java.util.List):399:401 -> f + 4:4:java.util.List getHourlyList(java.util.List):407:407 -> f + 5:5:java.util.List getHourlyList(java.util.List):409:409 -> f + 6:6:java.util.List getHourlyList(java.util.List):411:411 -> f + 7:7:java.util.List getHourlyList(java.util.List):415:415 -> f + 8:8:java.util.List getHourlyList(java.util.List):401:401 -> f + 1:1:float getHoursOfDay(java.util.Date,java.util.Date):586:586 -> g + 1:1:java.util.List getMinutelyList(long,long,wangdaye.com.geometricweather.weather.json.mf.MfRainResult):441:441 -> h + 1:1:int getWarningColor(int):527:527 -> i + 2:2:int getWarningColor(int):529:529 -> i + 3:3:int getWarningColor(int):531:531 -> i + 4:4:int getWarningColor(int):533:533 -> i java.lang.String getWarningText(int) -> j java.lang.String getWarningType(int) -> k - 1:5:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):456:460 -> l - 6:6:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):465:465 -> l - 7:7:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):467:467 -> l - 8:8:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):469:469 -> l - 9:9:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):460:460 -> l - 10:10:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):474:474 -> l - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):533:533 -> m - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):537:538 -> m - 4:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):540:541 -> m - 6:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):543:544 -> m - 8:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):546:548 -> m - 11:17:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):550:556 -> m - 18:20:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):558:560 -> m - 21:21:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):562:562 -> m - 22:22:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):564:564 -> m - 23:23:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):566:566 -> m - 24:24:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):568:568 -> m - 25:26:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):570:571 -> m - 27:27:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):574:574 -> m - 28:28:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):572:572 -> m - 29:29:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):569:569 -> m - 30:30:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):567:567 -> m - 31:31:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):565:565 -> m - 32:32:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):563:563 -> m - 33:33:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):561:561 -> m - 34:34:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):557:557 -> m - 35:35:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):549:549 -> m - 36:36:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):545:545 -> m - 37:37:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):542:542 -> m - 38:38:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):539:539 -> m + 1:5:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):462:466 -> l + 6:6:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):471:471 -> l + 7:7:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):473:473 -> l + 8:8:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):475:475 -> l + 9:9:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):466:466 -> l + 10:10:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):480:480 -> l + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):539:539 -> m + 2:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):543:544 -> m + 4:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):546:547 -> m + 6:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):549:550 -> m + 8:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):552:554 -> m + 11:17:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):556:562 -> m + 18:20:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):564:566 -> m + 21:21:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):568:568 -> m + 22:22:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):570:570 -> m + 23:23:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):572:572 -> m + 24:24:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):574:574 -> m + 25:26:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):576:577 -> m + 27:27:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):580:580 -> m + 28:28:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):578:578 -> m + 29:29:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):575:575 -> m + 30:30:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):573:573 -> m + 31:31:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):571:571 -> m + 32:32:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):569:569 -> m + 33:33:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):567:567 -> m + 34:34:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):563:563 -> m + 35:35:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):555:555 -> m + 36:36:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):551:551 -> m + 37:37:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):548:548 -> m + 38:38:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):545:545 -> m int toInt(double) -> n wangdaye.com.geometricweather.weather.di.ApiModule -> wangdaye.com.geometricweather.q.g.a: 1:1:void ():21:21 -> @@ -109714,7 +109722,7 @@ wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps - 1:1:void ():84:84 -> wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem -> wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: 1:1:void ():90:90 -> -wangdaye.com.geometricweather.weather.services.-$$Lambda$AccuWeatherService$cLkkMO61WGnVYpqncVN04FRg8V0 -> wangdaye.com.geometricweather.q.h.a: +wangdaye.com.geometricweather.weather.services.-$$Lambda$AccuWeatherService$hbwHChbrgkGgbN77MwoFgM-IZRY -> wangdaye.com.geometricweather.q.h.a: android.content.Context f$0 -> a wangdaye.com.geometricweather.common.basic.models.Location f$1 -> b java.lang.Object apply(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -> a @@ -109737,11 +109745,11 @@ wangdaye.com.geometricweather.weather.services.-$$Lambda$CNWeatherService$ze4Uyy wangdaye.com.geometricweather.weather.services.CNWeatherService f$0 -> a java.lang.String f$3 -> d void subscribe(io.reactivex.ObservableEmitter) -> a -wangdaye.com.geometricweather.weather.services.-$$Lambda$CaiYunWeatherService$dB5VocieteWWS5mEAUgJULrpUiI -> wangdaye.com.geometricweather.q.h.f: +wangdaye.com.geometricweather.weather.services.-$$Lambda$CaiYunWeatherService$ruGrHasJPsr9A3XYAYoXyiba9eo -> wangdaye.com.geometricweather.q.h.f: android.content.Context f$0 -> a wangdaye.com.geometricweather.common.basic.models.Location f$1 -> b java.lang.Object apply(java.lang.Object,java.lang.Object) -> a -wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$EFmSX82XGLyKAAfJ91z98fHnCzc -> wangdaye.com.geometricweather.q.h.g: +wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$30rS34ntymBSqayLEKMV5ea0z5w -> wangdaye.com.geometricweather.q.h.g: android.content.Context f$0 -> a wangdaye.com.geometricweather.common.basic.models.Location f$1 -> b java.lang.Object apply(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -> a @@ -109751,177 +109759,179 @@ wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$FhYpuN wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$IrTBydFX34ABG8enbJ5SHQhKB7U -> wangdaye.com.geometricweather.q.h.i: wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$IrTBydFX34ABG8enbJ5SHQhKB7U INSTANCE -> a void subscribe(io.reactivex.ObservableEmitter) -> a -wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$svFGHLJb3C3HZtwfE08FZrLJAHg -> wangdaye.com.geometricweather.q.h.j: +wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$ZFI9mhUNhuVzmceSANmkzEGtuVM -> wangdaye.com.geometricweather.q.h.j: + wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$ZFI9mhUNhuVzmceSANmkzEGtuVM INSTANCE -> a + void subscribe(io.reactivex.ObservableEmitter) -> a +wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$svFGHLJb3C3HZtwfE08FZrLJAHg -> wangdaye.com.geometricweather.q.h.k: wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$svFGHLJb3C3HZtwfE08FZrLJAHg INSTANCE -> a void subscribe(io.reactivex.ObservableEmitter) -> a -wangdaye.com.geometricweather.weather.services.AccuWeatherService -> wangdaye.com.geometricweather.q.h.k: +wangdaye.com.geometricweather.weather.services.AccuWeatherService -> wangdaye.com.geometricweather.q.h.l: wangdaye.com.geometricweather.weather.apis.AccuWeatherApi mApi -> a io.reactivex.disposables.CompositeDisposable mCompositeDisposable -> b - 1:3:void (wangdaye.com.geometricweather.weather.apis.AccuWeatherApi,io.reactivex.disposables.CompositeDisposable):90:92 -> - 1:1:void cancel():279:279 -> a - 1:1:java.util.List requestLocation(android.content.Context,java.lang.String):163:163 -> d - 2:2:java.util.List requestLocation(android.content.Context,java.lang.String):166:166 -> d - 3:3:java.util.List requestLocation(android.content.Context,java.lang.String):171:171 -> d - 4:4:java.util.List requestLocation(android.content.Context,java.lang.String):173:173 -> d - 5:5:java.util.List requestLocation(android.content.Context,java.lang.String):176:176 -> d - 6:9:java.util.List requestLocation(android.content.Context,java.lang.String):178:181 -> d - 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):190:190 -> e - 2:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):194:197 -> e - 6:14:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):199:207 -> e - 15:15:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):206:206 -> e - 16:20:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):213:217 -> e - 21:22:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):219:220 -> e - 23:23:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):222:222 -> e - 24:24:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):225:225 -> e - 25:25:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):222:222 -> e - 26:27:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):227:228 -> e - 1:1:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):97:97 -> f - 2:4:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):99:99 -> f - 5:7:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):102:102 -> f - 8:10:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):105:105 -> f - 11:11:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):108:108 -> f - 12:12:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):112:112 -> f - 13:13:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):108:108 -> f - 14:14:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):114:114 -> f - 15:15:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):113:113 -> f - 16:18:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):117:117 -> f - 19:21:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):120:120 -> f - 22:22:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):124:124 -> f - 23:23:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):123:123 -> f - 24:24:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):127:127 -> f - 25:26:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):141:142 -> f - 1:1:void lambda$requestWeather$0(io.reactivex.ObservableEmitter):114:114 -> g - 1:1:void lambda$requestWeather$1(io.reactivex.ObservableEmitter):124:124 -> h - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather lambda$requestWeather$2(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult):134:134 -> i - 2:2:wangdaye.com.geometricweather.common.basic.models.weather.Weather lambda$requestWeather$2(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult):131:131 -> i - 1:2:boolean queryEquals(java.lang.String,java.lang.String):283:284 -> j - 1:1:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):290:290 -> k - 2:3:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):293:294 -> k -wangdaye.com.geometricweather.weather.services.AccuWeatherService$1 -> wangdaye.com.geometricweather.q.h.k$a: + 1:3:void (wangdaye.com.geometricweather.weather.apis.AccuWeatherApi,io.reactivex.disposables.CompositeDisposable):89:91 -> + 1:1:void cancel():278:278 -> a + 1:1:java.util.List requestLocation(android.content.Context,java.lang.String):162:162 -> d + 2:2:java.util.List requestLocation(android.content.Context,java.lang.String):165:165 -> d + 3:3:java.util.List requestLocation(android.content.Context,java.lang.String):170:170 -> d + 4:4:java.util.List requestLocation(android.content.Context,java.lang.String):172:172 -> d + 5:5:java.util.List requestLocation(android.content.Context,java.lang.String):175:175 -> d + 6:9:java.util.List requestLocation(android.content.Context,java.lang.String):177:180 -> d + 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):189:189 -> e + 2:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):193:196 -> e + 6:14:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):198:206 -> e + 15:15:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):205:205 -> e + 16:20:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):212:216 -> e + 21:22:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):218:219 -> e + 23:23:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):221:221 -> e + 24:24:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):224:224 -> e + 25:25:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):221:221 -> e + 26:27:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):226:227 -> e + 1:1:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):96:96 -> f + 2:4:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):98:98 -> f + 5:7:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):101:101 -> f + 8:10:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):104:104 -> f + 11:11:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):107:107 -> f + 12:12:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):111:111 -> f + 13:13:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):107:107 -> f + 14:14:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):113:113 -> f + 15:15:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):112:112 -> f + 16:18:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):116:116 -> f + 19:21:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):119:119 -> f + 22:22:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):123:123 -> f + 23:23:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):122:122 -> f + 24:24:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):126:126 -> f + 25:26:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):140:141 -> f + 1:1:void lambda$requestWeather$0(io.reactivex.ObservableEmitter):113:113 -> g + 1:1:void lambda$requestWeather$1(io.reactivex.ObservableEmitter):123:123 -> h + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper lambda$requestWeather$2(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult):133:133 -> i + 2:2:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper lambda$requestWeather$2(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult):130:130 -> i + 1:2:boolean queryEquals(java.lang.String,java.lang.String):282:283 -> j + 1:1:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):289:289 -> k + 2:3:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):292:293 -> k +wangdaye.com.geometricweather.weather.services.AccuWeatherService$1 -> wangdaye.com.geometricweather.q.h.l$a: wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback val$callback -> c wangdaye.com.geometricweather.common.basic.models.Location val$location -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):142:142 -> - 1:2:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):146:147 -> a - 3:3:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):149:149 -> a - 1:1:void onFailed():155:155 -> onFailed - 1:1:void onSucceed(java.lang.Object):142:142 -> onSucceed -wangdaye.com.geometricweather.weather.services.AccuWeatherService$2 -> wangdaye.com.geometricweather.q.h.k$b: + 1:1:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):141:141 -> + 1:3:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):144:146 -> a + 4:4:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):148:148 -> a + 1:1:void onFailed():154:154 -> onFailed + 1:1:void onSucceed(java.lang.Object):141:141 -> onSucceed +wangdaye.com.geometricweather.weather.services.AccuWeatherService$2 -> wangdaye.com.geometricweather.q.h.l$b: wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback val$finalCallback -> c wangdaye.com.geometricweather.common.basic.models.Location val$location -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback):228:228 -> - 1:4:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):232:235 -> a - 5:5:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):234:234 -> a - 6:6:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):237:237 -> a - 1:3:void onFailed():243:243 -> onFailed - 1:1:void onSucceed(java.lang.Object):228:228 -> onSucceed -wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback -> wangdaye.com.geometricweather.q.h.k$c: + 1:1:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback):227:227 -> + 1:4:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):231:234 -> a + 5:5:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):233:233 -> a + 6:6:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):236:236 -> a + 1:3:void onFailed():242:242 -> onFailed + 1:1:void onSucceed(java.lang.Object):227:227 -> onSucceed +wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback -> wangdaye.com.geometricweather.q.h.l$c: android.content.Context mContext -> a wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback mCallback -> b - 1:3:void (android.content.Context,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):54:56 -> - 1:5:void requestLocationSuccess(java.lang.String,java.util.List):61:65 -> a - 6:6:void requestLocationSuccess(java.lang.String,java.util.List):67:67 -> a - 1:8:void requestLocationFailed(java.lang.String):72:79 -> b -wangdaye.com.geometricweather.weather.services.AccuWeatherService$EmptyAqiResult -> wangdaye.com.geometricweather.q.h.k$d: - 1:1:void ():86:86 -> - 2:2:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService$1):86:86 -> -wangdaye.com.geometricweather.weather.services.AccuWeatherService$EmptyMinuteResult -> wangdaye.com.geometricweather.q.h.k$e: - 1:1:void ():83:83 -> - 2:2:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService$1):83:83 -> -wangdaye.com.geometricweather.weather.services.CNWeatherService -> wangdaye.com.geometricweather.q.h.l: + 1:3:void (android.content.Context,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):53:55 -> + 1:5:void requestLocationSuccess(java.lang.String,java.util.List):60:64 -> a + 6:6:void requestLocationSuccess(java.lang.String,java.util.List):66:66 -> a + 1:8:void requestLocationFailed(java.lang.String):71:78 -> b +wangdaye.com.geometricweather.weather.services.AccuWeatherService$EmptyAqiResult -> wangdaye.com.geometricweather.q.h.l$d: + 1:1:void ():85:85 -> + 2:2:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService$1):85:85 -> +wangdaye.com.geometricweather.weather.services.AccuWeatherService$EmptyMinuteResult -> wangdaye.com.geometricweather.q.h.l$e: + 1:1:void ():82:82 -> + 2:2:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService$1):82:82 -> +wangdaye.com.geometricweather.weather.services.CNWeatherService -> wangdaye.com.geometricweather.q.h.m: io.reactivex.disposables.CompositeDisposable mCompositeDisposable -> b wangdaye.com.geometricweather.weather.apis.CNWeatherApi mApi -> a - 1:3:void (wangdaye.com.geometricweather.weather.apis.CNWeatherApi,io.reactivex.disposables.CompositeDisposable):37:39 -> - 1:1:void cancel():180:180 -> a - 1:2:java.util.List requestLocation(android.content.Context,java.lang.String):69:70 -> d - 3:3:java.util.List requestLocation(android.content.Context,java.lang.String):73:73 -> d - 4:7:java.util.List requestLocation(android.content.Context,java.lang.String):75:78 -> d - 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):86:86 -> e - 2:4:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):89:91 -> e - 5:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):87:87 -> e - 6:7:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):97:98 -> e - 8:8:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):95:95 -> e - 1:3:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):45:47 -> f - 1:1:wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource getSource():184:184 -> g - 1:1:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):116:116 -> h - 2:3:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):118:119 -> h - 4:4:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):122:122 -> h - 5:5:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):125:125 -> h + 1:3:void (wangdaye.com.geometricweather.weather.apis.CNWeatherApi,io.reactivex.disposables.CompositeDisposable):36:38 -> + 1:1:void cancel():179:179 -> a + 1:2:java.util.List requestLocation(android.content.Context,java.lang.String):68:69 -> d + 3:3:java.util.List requestLocation(android.content.Context,java.lang.String):72:72 -> d + 4:7:java.util.List requestLocation(android.content.Context,java.lang.String):74:77 -> d + 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):85:85 -> e + 2:4:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):88:90 -> e + 5:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):86:86 -> e + 6:7:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):96:97 -> e + 8:8:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):94:94 -> e + 1:3:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):44:46 -> f + 1:1:wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource getSource():183:183 -> g + 1:1:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):115:115 -> h + 2:3:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):117:118 -> h + 4:4:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):121:121 -> h + 5:5:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):124:124 -> h void lambda$searchLocationsInThread$0$CNWeatherService(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter) -> i - 1:1:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):151:151 -> j - 2:3:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):153:154 -> j - 4:4:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):156:156 -> j - 5:5:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):159:159 -> j + 1:1:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):150:150 -> j + 2:3:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):152:153 -> j + 4:4:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):155:155 -> j + 5:5:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):158:158 -> j void lambda$searchLocationsInThread$1$CNWeatherService(android.content.Context,float,float,io.reactivex.ObservableEmitter) -> k - 1:1:void searchLocationsInThread(android.content.Context,float,float,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):150:150 -> l - 2:3:void searchLocationsInThread(android.content.Context,float,float,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):160:161 -> l - 1:3:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):111:113 -> m - 4:4:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):115:115 -> m - 5:6:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):126:127 -> m -wangdaye.com.geometricweather.weather.services.CNWeatherService$1 -> wangdaye.com.geometricweather.q.h.l$a: + 1:1:void searchLocationsInThread(android.content.Context,float,float,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):149:149 -> l + 2:3:void searchLocationsInThread(android.content.Context,float,float,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):159:160 -> l + 1:3:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):110:112 -> m + 4:4:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):114:114 -> m + 5:6:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):125:126 -> m +wangdaye.com.geometricweather.weather.services.CNWeatherService$1 -> wangdaye.com.geometricweather.q.h.m$a: wangdaye.com.geometricweather.common.basic.models.Location val$location -> c android.content.Context val$context -> b wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback val$callback -> d - 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):47:47 -> - 1:1:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):50:50 -> a - 2:3:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):52:53 -> a - 4:4:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):55:55 -> a - 1:1:void onFailed():61:61 -> onFailed - 1:1:void onSucceed(java.lang.Object):47:47 -> onSucceed -wangdaye.com.geometricweather.weather.services.CNWeatherService$2 -> wangdaye.com.geometricweather.q.h.l$b: + 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):46:46 -> + 1:4:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):49:52 -> a + 5:5:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):54:54 -> a + 1:1:void onFailed():60:60 -> onFailed + 1:1:void onSucceed(java.lang.Object):46:46 -> onSucceed +wangdaye.com.geometricweather.weather.services.CNWeatherService$2 -> wangdaye.com.geometricweather.q.h.m$b: wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback val$callback -> b java.lang.String val$finalDistrict -> c - 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback,java.lang.String):127:127 -> - 1:2:void onSucceed(java.util.List):130:131 -> a - 3:3:void onSucceed(java.util.List):133:133 -> a - 1:1:void onFailed():139:139 -> onFailed - 1:1:void onSucceed(java.lang.Object):127:127 -> onSucceed -wangdaye.com.geometricweather.weather.services.CNWeatherService$3 -> wangdaye.com.geometricweather.q.h.l$c: + 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback,java.lang.String):126:126 -> + 1:2:void onSucceed(java.util.List):129:130 -> a + 3:3:void onSucceed(java.util.List):132:132 -> a + 1:1:void onFailed():138:138 -> onFailed + 1:1:void onSucceed(java.lang.Object):126:126 -> onSucceed +wangdaye.com.geometricweather.weather.services.CNWeatherService$3 -> wangdaye.com.geometricweather.q.h.m$c: wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback val$callback -> b float val$longitude -> d float val$latitude -> c - 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback,float,float):161:161 -> - 1:2:void onSucceed(java.util.List):164:165 -> a - 3:3:void onSucceed(java.util.List):167:167 -> a - 1:1:void onFailed():173:173 -> onFailed - 1:1:void onSucceed(java.lang.Object):161:161 -> onSucceed -wangdaye.com.geometricweather.weather.services.CaiYunWeatherService -> wangdaye.com.geometricweather.q.h.m: + 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback,float,float):160:160 -> + 1:2:void onSucceed(java.util.List):163:164 -> a + 3:3:void onSucceed(java.util.List):166:166 -> a + 1:1:void onFailed():172:172 -> onFailed + 1:1:void onSucceed(java.lang.Object):160:160 -> onSucceed +wangdaye.com.geometricweather.weather.services.CaiYunWeatherService -> wangdaye.com.geometricweather.q.h.n: io.reactivex.disposables.CompositeDisposable mCompositeDisposable -> d wangdaye.com.geometricweather.weather.apis.CaiYunApi mApi -> c - 1:3:void (wangdaye.com.geometricweather.weather.apis.CaiYunApi,wangdaye.com.geometricweather.weather.apis.CNWeatherApi,io.reactivex.disposables.CompositeDisposable):34:36 -> - 1:2:void cancel():91:92 -> a - 1:6:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):42:42 -> f - 7:9:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):58:60 -> f - 10:10:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):64:64 -> f - 11:11:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):58:58 -> f - 12:12:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):68:68 -> f - 13:14:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):70:71 -> f - 1:1:wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource getSource():97:97 -> g - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather lambda$requestWeather$0(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):69:69 -> n -wangdaye.com.geometricweather.weather.services.CaiYunWeatherService$1 -> wangdaye.com.geometricweather.q.h.m$a: + 1:3:void (wangdaye.com.geometricweather.weather.apis.CaiYunApi,wangdaye.com.geometricweather.weather.apis.CNWeatherApi,io.reactivex.disposables.CompositeDisposable):33:35 -> + 1:2:void cancel():90:91 -> a + 1:6:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):41:41 -> f + 7:9:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):57:59 -> f + 10:10:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):63:63 -> f + 11:11:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):57:57 -> f + 12:12:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):67:67 -> f + 13:14:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):69:70 -> f + 1:1:wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource getSource():96:96 -> g + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper lambda$requestWeather$0(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):68:68 -> n +wangdaye.com.geometricweather.weather.services.CaiYunWeatherService$1 -> wangdaye.com.geometricweather.q.h.n$a: wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback val$callback -> c wangdaye.com.geometricweather.common.basic.models.Location val$location -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.CaiYunWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):71:71 -> - 1:2:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):75:76 -> a - 3:3:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):78:78 -> a - 1:1:void onFailed():84:84 -> onFailed - 1:1:void onSucceed(java.lang.Object):71:71 -> onSucceed -wangdaye.com.geometricweather.weather.services.MfWeatherService -> wangdaye.com.geometricweather.q.h.n: + 1:1:void (wangdaye.com.geometricweather.weather.services.CaiYunWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):70:70 -> + 1:3:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):73:75 -> a + 4:4:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):77:77 -> a + 1:1:void onFailed():83:83 -> onFailed + 1:1:void onSucceed(java.lang.Object):70:70 -> onSucceed +wangdaye.com.geometricweather.weather.services.MfWeatherService -> wangdaye.com.geometricweather.q.h.o: wangdaye.com.geometricweather.weather.apis.AtmoAuraIqaApi mAtmoAuraApi -> b io.reactivex.disposables.CompositeDisposable mCompositeDisposable -> c wangdaye.com.geometricweather.weather.apis.MfWeatherApi mMfApi -> a 1:4:void (wangdaye.com.geometricweather.weather.apis.MfWeatherApi,wangdaye.com.geometricweather.weather.apis.AtmoAuraIqaApi,io.reactivex.disposables.CompositeDisposable):94:97 -> - 1:1:void cancel():293:293 -> a - 1:1:java.util.List requestLocation(android.content.Context,java.lang.String):182:182 -> d - 2:2:java.util.List requestLocation(android.content.Context,java.lang.String):184:184 -> d - 3:7:java.util.List requestLocation(android.content.Context,java.lang.String):187:191 -> d - 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):201:201 -> e - 2:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):205:208 -> e - 6:14:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):210:218 -> e - 15:15:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):217:217 -> e - 16:20:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):224:228 -> e - 21:22:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):230:231 -> e - 23:26:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):233:233 -> e - 27:28:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):238:239 -> e + 1:1:void cancel():295:295 -> a + 1:1:java.util.List requestLocation(android.content.Context,java.lang.String):184:184 -> d + 2:2:java.util.List requestLocation(android.content.Context,java.lang.String):186:186 -> d + 3:7:java.util.List requestLocation(android.content.Context,java.lang.String):189:193 -> d + 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):203:203 -> e + 2:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):207:210 -> e + 6:14:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):212:220 -> e + 15:15:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):219:219 -> e + 16:20:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):226:230 -> e + 21:22:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):232:233 -> e + 23:26:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):235:235 -> e + 27:28:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):240:241 -> e 1:1:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):102:102 -> f 2:4:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):104:104 -> f 5:7:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):107:107 -> f @@ -109930,82 +109940,86 @@ wangdaye.com.geometricweather.weather.services.MfWeatherService -> wangdaye.com. 14:16:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):121:121 -> f 17:17:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):125:125 -> f 18:18:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):123:123 -> f - 19:25:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):129:135 -> f - 26:26:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):144:144 -> f - 27:27:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):136:136 -> f - 28:29:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):138:139 -> f - 30:30:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):136:136 -> f - 31:31:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):141:141 -> f - 32:32:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):140:140 -> f - 33:33:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):147:147 -> f - 34:35:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):158:159 -> f + 19:27:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):129:137 -> f + 28:28:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):146:146 -> f + 29:29:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):138:138 -> f + 30:31:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):140:141 -> f + 32:32:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):138:138 -> f + 33:33:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):143:143 -> f + 34:34:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):142:142 -> f + 35:35:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):149:149 -> f + 36:37:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):160:161 -> f 1:1:void lambda$requestWeather$0(io.reactivex.ObservableEmitter):125:125 -> g - 1:1:void lambda$requestWeather$1(io.reactivex.ObservableEmitter):141:141 -> h - 1:1:void lambda$requestWeather$2(io.reactivex.ObservableEmitter):144:144 -> i - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather lambda$requestWeather$3(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):148:148 -> j - 1:2:boolean queryEquals(java.lang.String,java.lang.String):297:298 -> k - 1:1:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):304:304 -> l - 2:3:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):307:308 -> l -wangdaye.com.geometricweather.weather.services.MfWeatherService$1 -> wangdaye.com.geometricweather.q.h.n$a: + 1:1:void lambda$requestWeather$1(io.reactivex.ObservableEmitter):130:130 -> h + 1:1:void lambda$requestWeather$2(io.reactivex.ObservableEmitter):143:143 -> i + 1:1:void lambda$requestWeather$3(io.reactivex.ObservableEmitter):146:146 -> j + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper lambda$requestWeather$4(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):150:150 -> k + 1:2:boolean queryEquals(java.lang.String,java.lang.String):299:300 -> l + 1:1:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):306:306 -> m + 2:3:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):309:310 -> m +wangdaye.com.geometricweather.weather.services.MfWeatherService$1 -> wangdaye.com.geometricweather.q.h.o$a: wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback val$callback -> c wangdaye.com.geometricweather.common.basic.models.Location val$location -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.MfWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):159:159 -> - 1:2:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):163:164 -> a - 3:3:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):166:166 -> a - 1:1:void onFailed():172:172 -> onFailed - 1:1:void onSucceed(java.lang.Object):159:159 -> onSucceed -wangdaye.com.geometricweather.weather.services.MfWeatherService$2 -> wangdaye.com.geometricweather.q.h.n$b: + 1:1:void (wangdaye.com.geometricweather.weather.services.MfWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):161:161 -> + 1:3:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):164:166 -> a + 4:4:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):168:168 -> a + 1:1:void onFailed():174:174 -> onFailed + 1:1:void onSucceed(java.lang.Object):161:161 -> onSucceed +wangdaye.com.geometricweather.weather.services.MfWeatherService$2 -> wangdaye.com.geometricweather.q.h.o$b: wangdaye.com.geometricweather.common.basic.models.Location val$location -> c wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback val$finalCallback -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.MfWeatherService,wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback,wangdaye.com.geometricweather.common.basic.models.Location):239:239 -> - 1:3:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):243:245 -> a - 4:6:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):248:248 -> a - 7:7:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):251:251 -> a - 1:3:void onFailed():258:258 -> onFailed - 1:1:void onSucceed(java.lang.Object):239:239 -> onSucceed -wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback -> wangdaye.com.geometricweather.q.h.n$c: + 1:1:void (wangdaye.com.geometricweather.weather.services.MfWeatherService,wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback,wangdaye.com.geometricweather.common.basic.models.Location):241:241 -> + 1:3:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):245:247 -> a + 4:6:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):250:250 -> a + 7:7:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):253:253 -> a + 1:3:void onFailed():260:260 -> onFailed + 1:1:void onSucceed(java.lang.Object):241:241 -> onSucceed +wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback -> wangdaye.com.geometricweather.q.h.o$c: android.content.Context mContext -> a wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback mCallback -> b 1:3:void (android.content.Context,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):57:59 -> 1:5:void requestLocationSuccess(java.lang.String,java.util.List):64:68 -> a 6:6:void requestLocationSuccess(java.lang.String,java.util.List):70:70 -> a 1:8:void requestLocationFailed(java.lang.String):75:82 -> b -wangdaye.com.geometricweather.weather.services.MfWeatherService$EmptyAtmoAuraQAResult -> wangdaye.com.geometricweather.q.h.n$d: +wangdaye.com.geometricweather.weather.services.MfWeatherService$EmptyAtmoAuraQAResult -> wangdaye.com.geometricweather.q.h.o$d: 1:1:void ():86:86 -> 2:2:void (wangdaye.com.geometricweather.weather.services.MfWeatherService$1):86:86 -> -wangdaye.com.geometricweather.weather.services.MfWeatherService$EmptyWarningsResult -> wangdaye.com.geometricweather.q.h.n$e: +wangdaye.com.geometricweather.weather.services.MfWeatherService$EmptyWarningsResult -> wangdaye.com.geometricweather.q.h.o$e: 1:1:void ():89:89 -> 2:2:void (wangdaye.com.geometricweather.weather.services.MfWeatherService$1):89:89 -> -wangdaye.com.geometricweather.weather.services.WeatherService -> wangdaye.com.geometricweather.q.h.o: - 1:1:void ():18:18 -> +wangdaye.com.geometricweather.weather.services.WeatherService -> wangdaye.com.geometricweather.q.h.p: + 1:1:void ():20:20 -> void cancel() -> a - 1:1:java.lang.String convertChinese(java.lang.String):142:142 -> b - 1:1:java.lang.String formatLocationString(java.lang.String):43:43 -> c - 2:3:java.lang.String formatLocationString(java.lang.String):47:48 -> c - 4:11:java.lang.String formatLocationString(java.lang.String):50:57 -> c - 12:30:java.lang.String formatLocationString(java.lang.String):59:77 -> c - 31:38:java.lang.String formatLocationString(java.lang.String):80:87 -> c - 39:44:java.lang.String formatLocationString(java.lang.String):89:94 -> c - 45:48:java.lang.String formatLocationString(java.lang.String):97:100 -> c - 49:53:java.lang.String formatLocationString(java.lang.String):103:107 -> c - 54:59:java.lang.String formatLocationString(java.lang.String):110:115 -> c - 60:61:java.lang.String formatLocationString(java.lang.String):118:119 -> c - 62:63:java.lang.String formatLocationString(java.lang.String):122:123 -> c - 64:64:java.lang.String formatLocationString(java.lang.String):125:125 -> c - 65:66:java.lang.String formatLocationString(java.lang.String):128:129 -> c - 67:68:java.lang.String formatLocationString(java.lang.String):131:132 -> c - 69:70:java.lang.String formatLocationString(java.lang.String):134:135 -> c - 71:71:java.lang.String formatLocationString(java.lang.String):126:126 -> c - 72:72:java.lang.String formatLocationString(java.lang.String):116:116 -> c - 73:73:java.lang.String formatLocationString(java.lang.String):108:108 -> c - 74:74:java.lang.String formatLocationString(java.lang.String):101:101 -> c - 75:75:java.lang.String formatLocationString(java.lang.String):95:95 -> c + 1:1:java.lang.String convertChinese(java.lang.String):152:152 -> b + 1:1:java.lang.String formatLocationString(java.lang.String):53:53 -> c + 2:3:java.lang.String formatLocationString(java.lang.String):57:58 -> c + 4:11:java.lang.String formatLocationString(java.lang.String):60:67 -> c + 12:30:java.lang.String formatLocationString(java.lang.String):69:87 -> c + 31:38:java.lang.String formatLocationString(java.lang.String):90:97 -> c + 39:44:java.lang.String formatLocationString(java.lang.String):99:104 -> c + 45:48:java.lang.String formatLocationString(java.lang.String):107:110 -> c + 49:53:java.lang.String formatLocationString(java.lang.String):113:117 -> c + 54:59:java.lang.String formatLocationString(java.lang.String):120:125 -> c + 60:61:java.lang.String formatLocationString(java.lang.String):128:129 -> c + 62:63:java.lang.String formatLocationString(java.lang.String):132:133 -> c + 64:64:java.lang.String formatLocationString(java.lang.String):135:135 -> c + 65:66:java.lang.String formatLocationString(java.lang.String):138:139 -> c + 67:68:java.lang.String formatLocationString(java.lang.String):141:142 -> c + 69:70:java.lang.String formatLocationString(java.lang.String):144:145 -> c + 71:71:java.lang.String formatLocationString(java.lang.String):136:136 -> c + 72:72:java.lang.String formatLocationString(java.lang.String):126:126 -> c + 73:73:java.lang.String formatLocationString(java.lang.String):118:118 -> c + 74:74:java.lang.String formatLocationString(java.lang.String):111:111 -> c + 75:75:java.lang.String formatLocationString(java.lang.String):105:105 -> c java.util.List requestLocation(android.content.Context,java.lang.String) -> d void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback) -> e void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback) -> f -wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback -> wangdaye.com.geometricweather.q.h.o$a: +wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback -> wangdaye.com.geometricweather.q.h.p$a: void requestLocationSuccess(java.lang.String,java.util.List) -> a void requestLocationFailed(java.lang.String) -> b -wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback -> wangdaye.com.geometricweather.q.h.o$b: +wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback -> wangdaye.com.geometricweather.q.h.p$b: void requestWeatherFailed(wangdaye.com.geometricweather.common.basic.models.Location) -> a void requestWeatherSuccess(wangdaye.com.geometricweather.common.basic.models.Location) -> b +wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper -> wangdaye.com.geometricweather.q.h.p$c: + wangdaye.com.geometricweather.common.basic.models.weather.Weather result -> a + 1:2:void (wangdaye.com.geometricweather.common.basic.models.weather.Weather):25:26 -> diff --git a/release/3.001/mapping/gplayRelease/resources.txt b/release/3.002/mapping/gplayRelease/resources.txt similarity index 99% rename from release/3.001/mapping/gplayRelease/resources.txt rename to release/3.002/mapping/gplayRelease/resources.txt index f5b572d8b..a2e4d1d92 100644 --- a/release/3.001/mapping/gplayRelease/resources.txt +++ b/release/3.002/mapping/gplayRelease/resources.txt @@ -247,7 +247,7 @@ Referenced Strings: 2gcj 3 3.0 - 3.001_gplay + 3.002_gplay 30 300% 304 @@ -1080,6 +1080,7 @@ Referenced Strings: LOADING LOCAL LOCAL_PREFERENCE + LOCAL_PREFERENCE_MF LOCATION LOCATION_ENTITY LOCKSCREEN diff --git a/release/3.001/mapping/gplayRelease/seeds.txt b/release/3.002/mapping/gplayRelease/seeds.txt similarity index 100% rename from release/3.001/mapping/gplayRelease/seeds.txt rename to release/3.002/mapping/gplayRelease/seeds.txt index 797c058d5..4fd696bfe 100644 --- a/release/3.001/mapping/gplayRelease/seeds.txt +++ b/release/3.002/mapping/gplayRelease/seeds.txt @@ -1,52948 +1,52948 @@ -com.turingtechnologies.materialscrollbar.R$id: int action_bar -androidx.constraintlayout.widget.R$id: int search_voice_btn -androidx.constraintlayout.widget.R$attr: int listItemLayout -okhttp3.Address: java.util.List protocols() -wangdaye.com.geometricweather.R$id: int item_about_link -com.baidu.location.e.p: p(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) -com.google.android.gms.location.zzbd -com.xw.repo.bubbleseekbar.R$id: int search_plate -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -james.adaptiveicon.R$attr: int buttonBarStyle -androidx.drawerlayout.R$id: int text2 -androidx.preference.R$style: int Base_V22_Theme_AppCompat_Light -androidx.loader.R$dimen: R$dimen() -okhttp3.internal.http1.Http1Codec: long headerLimit -com.google.android.material.R$styleable: int ConstraintSet_drawPath -cyanogenmod.platform.R$array -android.didikee.donate.R$style: int Widget_AppCompat_Spinner_DropDown -androidx.appcompat.app.WindowDecorActionBar -wangdaye.com.geometricweather.R$styleable: int ChipGroup_singleLine -wangdaye.com.geometricweather.R$layout: int container_alert_display_view -com.google.android.material.R$styleable: int AppCompatSeekBar_tickMarkTintMode -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_NoActionBar -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -com.google.android.material.slider.RangeSlider: void setThumbStrokeColor(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$dimen: int hint_pressed_alpha_material_dark -androidx.constraintlayout.widget.R$styleable: int PropertySet_android_visibility -com.google.android.material.R$color -okhttp3.internal.tls.DistinguishedNameParser: char[] chars -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getEn_US() -okhttp3.OkHttpClient$Builder: okhttp3.Authenticator proxyAuthenticator -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -cyanogenmod.power.IPerformanceManager: int getNumberOfProfiles() -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getSupportBackgroundTintList() -androidx.loader.R$attr: int fontProviderCerts -retrofit2.HttpServiceMethod: retrofit2.HttpServiceMethod parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method,retrofit2.RequestFactory) -com.jaredrummler.android.colorpicker.R$integer: int abc_config_activityShortDur -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String getValue() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvIndex -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String getUnit() -retrofit2.ParameterHandler$PartMap: void apply(retrofit2.RequestBuilder,java.util.Map) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_chip_pressed_translation_z -androidx.coordinatorlayout.R$attr: int fontWeight -wangdaye.com.geometricweather.R$color: int material_slider_inactive_track_color -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean cancelled -retrofit2.http.OPTIONS: java.lang.String value() -androidx.constraintlayout.widget.R$dimen: int tooltip_y_offset_non_touch -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_summaryOn -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_content_padding -wangdaye.com.geometricweather.R$styleable: int Fragment_android_name -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -cyanogenmod.themes.ThemeChangeRequest: int getNumChangesRequested() -androidx.viewpager2.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeCloudCover() -com.google.gson.stream.JsonWriter: java.lang.String separator -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: long serialVersionUID -com.google.android.material.R$bool: int abc_action_bar_embed_tabs -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_shapeAppearance -androidx.preference.R$attr: int barLength -androidx.constraintlayout.widget.R$attr: int colorControlHighlight -com.xw.repo.bubbleseekbar.R$color: int abc_btn_colored_borderless_text_material -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_PopupMenu -androidx.customview.R$dimen -androidx.appcompat.R$dimen: int abc_dialog_fixed_height_major -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar_Small -androidx.constraintlayout.widget.R$styleable: int Toolbar_buttonGravity -androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Line2 -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: WeatherProviderService$ServiceHandler(cyanogenmod.weatherservice.WeatherProviderService,android.os.Looper) -james.adaptiveicon.R$styleable: int ActionBar_elevation -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginTop -james.adaptiveicon.R$color: int abc_tint_seek_thumb -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade RealFeelTemperatureShade -androidx.viewpager2.R$drawable -com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents -androidx.legacy.coreutils.R$styleable -com.google.android.material.R$styleable: int MenuGroup_android_orderInCategory -wangdaye.com.geometricweather.R$styleable: int Transform_android_translationY -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_height_minor -androidx.preference.R$dimen: int item_touch_helper_swipe_escape_velocity -androidx.constraintlayout.utils.widget.ImageFilterButton: void setWarmth(float) -com.google.android.material.R$dimen: int mtrl_progress_circular_radius -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Alert -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_30 -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon -androidx.dynamicanimation.R$dimen: R$dimen() -androidx.appcompat.widget.ButtonBarLayout: void setStacked(boolean) -cyanogenmod.externalviews.ExternalView: java.util.LinkedList mQueue -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Small -okio.ForwardingTimeout: long timeoutNanos() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: int UnitType -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_NoActionBar -cyanogenmod.themes.IThemeService: void requestThemeChangeUpdates(cyanogenmod.themes.IThemeChangeListener) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String IconPhrase -com.amap.api.fence.PoiItem: double f -com.jaredrummler.android.colorpicker.R$attr: int theme -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean -androidx.appcompat.R$style: R$style() -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.jaredrummler.android.colorpicker.R$color: int highlighted_text_material_light -androidx.constraintlayout.widget.R$attr: int maxHeight -james.adaptiveicon.R$styleable: int ActionBar_displayOptions -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_summaryOff -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: java.lang.String WeatherCode -com.jaredrummler.android.colorpicker.R$color: int dim_foreground_material_light -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_height -james.adaptiveicon.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -cyanogenmod.weatherservice.WeatherProviderService$1: cyanogenmod.weatherservice.WeatherProviderService this$0 -retrofit2.OkHttpCall: okhttp3.Call rawCall -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void dispose() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -retrofit2.Response: java.lang.Object body -androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum -cyanogenmod.externalviews.KeyguardExternalView: java.util.LinkedList mQueue -okhttp3.Challenge: java.nio.charset.Charset charset() -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) -james.adaptiveicon.R$drawable: int abc_list_focused_holo -wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundDialog: RunningInBackgroundDialog() -androidx.cardview.widget.CardView: int getContentPaddingRight() -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_itemPadding -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_text_size -androidx.preference.R$drawable: int abc_btn_radio_material_anim -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -retrofit2.DefaultCallAdapterFactory$1: java.lang.reflect.Type val$responseType -cyanogenmod.externalviews.KeyguardExternalView: void registerKeyguardExternalViewCallback(cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks) -com.google.android.material.R$dimen: int mtrl_high_ripple_hovered_alpha -androidx.preference.R$styleable: int Toolbar_collapseIcon -cyanogenmod.weather.WeatherInfo: double access$1302(cyanogenmod.weather.WeatherInfo,double) -retrofit2.Utils$GenericArrayTypeImpl: int hashCode() -cyanogenmod.os.Concierge$ParcelInfo: boolean mCreation -androidx.drawerlayout.R$color: int secondary_text_default_material_light -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int maxConcurrency -com.google.android.material.R$id: int labeled -com.google.android.material.button.MaterialButton: void setChecked(boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_collapseIcon -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_to_on_mtrl_015 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: int UnitType -androidx.appcompat.widget.ActionBarOverlayLayout: java.lang.CharSequence getTitle() -okio.ByteString: int indexOf(okio.ByteString) -com.google.android.gms.common.data.DataHolder -androidx.dynamicanimation.R$styleable: int[] GradientColorItem -okhttp3.internal.ws.RealWebSocket: boolean pong(okio.ByteString) -com.amap.api.fence.GeoFence: android.app.PendingIntent getPendingIntent() -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_NoActionBar -okhttp3.CertificatePinner: okio.ByteString sha256(java.security.cert.X509Certificate) -androidx.lifecycle.ProcessLifecycleOwner: int mStartedCounter -com.google.android.material.R$attr: int circularInset -com.google.android.material.R$dimen: int design_fab_translation_z_hovered_focused -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathEnd(float) -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -android.didikee.donate.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -com.google.android.material.R$style: int Base_Widget_Design_TabLayout -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_padding_start_material -com.google.android.material.R$attr: int actionBarWidgetTheme -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMode -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Small -androidx.preference.R$string: int summary_collapsed_preference_list -android.didikee.donate.R$styleable: int AppCompatTextView_drawableTopCompat -com.google.android.material.R$dimen: int clock_face_margin_start -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_100 -androidx.lifecycle.LifecycleRegistry: void sync() -androidx.core.R$styleable: int GradientColor_android_type -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemPaddingRight -com.google.android.gms.common.stats.StatsEvent -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_8 -io.reactivex.Observable: io.reactivex.Observable cacheWithInitialCapacity(int) -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -okhttp3.Cookie: long expiresAt() -james.adaptiveicon.R$attr: int subtitle -cyanogenmod.app.CustomTile$1: cyanogenmod.app.CustomTile[] newArray(int) -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: boolean eager -androidx.constraintlayout.widget.R$styleable: int[] AlertDialog -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String TARGET_API -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver -com.google.android.material.R$attr: int backgroundTintMode -wangdaye.com.geometricweather.R$style: int Widget_Design_BottomNavigationView -com.google.android.material.R$style: int TextAppearance_AppCompat_Medium -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_arrowShaftLength -com.xw.repo.bubbleseekbar.R$attr: int searchHintIcon -androidx.preference.R$styleable: int AppCompatTheme_tooltipFrameBackground -com.turingtechnologies.materialscrollbar.R$attr: int numericModifiers -com.jaredrummler.android.colorpicker.R$color: R$color() -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_material -androidx.preference.R$attr: int activityChooserViewStyle -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor -okhttp3.internal.http2.Http2Connection: boolean pushedStream(int) +james.adaptiveicon.R$anim: int abc_fade_out +wangdaye.com.geometricweather.R$attr: int drawableRightCompat +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginTop +cyanogenmod.externalviews.ExternalView$2 +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit[] values() +androidx.hilt.R$dimen: int notification_content_margin_start +androidx.constraintlayout.widget.R$attr: int suggestionRowLayout +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String unitId +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +androidx.viewpager2.R$dimen: int item_touch_helper_swipe_escape_max_velocity +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionMode +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$attr: int indeterminateProgressStyle +androidx.lifecycle.extensions.R$drawable: int notification_bg_low_pressed +com.turingtechnologies.materialscrollbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +androidx.preference.R$id: int action_container +com.google.android.material.R$string: int abc_action_mode_done +com.amap.api.fence.PoiItem: java.lang.String getPoiType() +wangdaye.com.geometricweather.R$drawable: int mtrl_tabs_default_indicator +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalAlign +okhttp3.internal.cache.DiskLruCache: DiskLruCache(okhttp3.internal.io.FileSystem,java.io.File,int,int,long,java.util.concurrent.Executor) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onAttach_0 +androidx.transition.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX getWeather() +com.google.android.material.R$color: int abc_primary_text_material_dark +android.didikee.donate.R$attr: int windowActionBar androidx.preference.R$attr: int layout_behavior -wangdaye.com.geometricweather.R$attr: int swipeRefreshLayoutProgressSpinnerBackgroundColor -com.google.android.material.R$dimen: int mtrl_tooltip_padding -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_titleCondensed -com.turingtechnologies.materialscrollbar.R$attr: int msb_scrollMode -com.google.android.material.slider.Slider: void setHaloRadius(int) -androidx.fragment.R$color: int notification_icon_bg_color -okhttp3.internal.cache.CacheStrategy$Factory: long nowMillis -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String url -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_liftOnScroll -okhttp3.ResponseBody$BomAwareReader: void close() -androidx.appcompat.widget.AppCompatImageView -androidx.drawerlayout.R$styleable: int GradientColor_android_endY -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter close(int,int,java.lang.String) -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long serialVersionUID -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getMoldDescription() -wangdaye.com.geometricweather.db.entities.AlertEntity: int priority -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMaxWidth -okhttp3.internal.ws.RealWebSocket: void tearDown() -wangdaye.com.geometricweather.R$drawable: int weather_wind_pixel -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_NoActionBar -androidx.constraintlayout.widget.R$styleable: int ActionBar_subtitle -cyanogenmod.themes.ThemeManager: java.lang.String access$100() -cyanogenmod.hardware.ICMHardwareService: long getLtoDownloadInterval() -cyanogenmod.app.Profile: void setDozeMode(int) -wangdaye.com.geometricweather.R$id: int notification_big_icon_3 -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.Integer getIndex() -com.google.android.material.R$color: int material_blue_grey_950 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Switch -androidx.preference.R$attr: int switchPreferenceStyle -com.google.android.material.R$attr: int itemShapeInsetStart -okhttp3.internal.connection.StreamAllocation: void streamFinished(boolean,okhttp3.internal.http.HttpCodec,long,java.io.IOException) -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout -com.google.android.material.R$style: int Theme_MaterialComponents_Light_LargeTouch +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetEndWithActions +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sun_icon +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicReference upstream +com.google.gson.FieldNamingPolicy$3: java.lang.String translateName(java.lang.reflect.Field) +androidx.appcompat.widget.Toolbar: void setNavigationOnClickListener(android.view.View$OnClickListener) +com.google.android.material.R$attr: int rippleColor +com.google.android.material.R$styleable: int GradientColor_android_centerX +androidx.loader.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListMenuView +android.didikee.donate.R$dimen: int abc_text_size_display_3_material +androidx.lifecycle.extensions.R$integer: int status_bar_notification_info_maxnum +androidx.preference.R$color: int material_grey_100 +com.xw.repo.bubbleseekbar.R$styleable: int[] RecycleListView +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_MinutelyEntityListQuery +wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_creator +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks access$100(cyanogenmod.externalviews.KeyguardExternalView) +androidx.preference.R$layout: int preference_widget_switch_compat +androidx.appcompat.widget.SwitchCompat: void setSwitchMinWidth(int) +wangdaye.com.geometricweather.settings.fragments.AbstractSettingsFragment: AbstractSettingsFragment() +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: java.lang.Runnable actual +retrofit2.Platform: retrofit2.Platform get() +wangdaye.com.geometricweather.settings.activities.CardDisplayManageActivity: CardDisplayManageActivity() +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_9 +androidx.constraintlayout.widget.R$styleable: int[] SearchView +androidx.preference.R$style: int Platform_Widget_AppCompat_Spinner +androidx.core.widget.NestedScrollView: void setFillViewport(boolean) +androidx.legacy.coreutils.R$layout: int notification_template_part_time +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginRight +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias +retrofit2.Converter: java.lang.Object convert(java.lang.Object) +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxPlain() +androidx.hilt.lifecycle.R$color: int notification_icon_bg_color +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listMenuViewStyle +androidx.hilt.R$styleable: int FontFamily_fontProviderQuery +com.google.android.material.R$anim: int btn_checkbox_to_checked_icon_null_animation +com.turingtechnologies.materialscrollbar.R$attr: int hoveredFocusedTranslationZ +wangdaye.com.geometricweather.R$attr: int trackColor +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_radioButtonStyle +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$id: int selected +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: LifecycleDispatcher$DispatcherActivityCallback() +okhttp3.HttpUrl: int port +com.bumptech.glide.R$styleable: int GradientColor_android_tileMode +com.jaredrummler.android.colorpicker.R$attr: int arrowHeadLength +android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +wangdaye.com.geometricweather.db.entities.AlertEntity: long getAlertId() +wangdaye.com.geometricweather.R$style: int Preference_CheckBoxPreference_Material +com.google.android.material.R$id: int list_item +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: java.lang.String getPathName() +wangdaye.com.geometricweather.R$layout: int preference_widget_switch +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.View onCreatePanelView(int) +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_toBottomOf +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getSO2() +james.adaptiveicon.R$style: int Base_V26_Widget_AppCompat_Toolbar +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_lineHeight +org.greenrobot.greendao.AbstractDao: long insertOrReplace(java.lang.Object) +android.didikee.donate.R$attr: int elevation +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Button +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalStyle +wangdaye.com.geometricweather.common.basic.models.Location +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerNext(io.reactivex.internal.observers.InnerQueuedObserver,java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeWidth +androidx.recyclerview.R$drawable: int notification_icon_background +android.didikee.donate.R$color: int primary_text_default_material_light +com.google.android.material.R$styleable: int FloatingActionButton_useCompatPadding +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context) +androidx.vectordrawable.animated.R$id: int tag_screen_reader_focusable +okio.Okio$4: java.io.IOException newTimeoutException(java.io.IOException) +androidx.appcompat.R$drawable: int abc_ic_menu_share_mtrl_alpha +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_25 +com.google.android.material.R$attr: int textAppearanceOverline +androidx.constraintlayout.widget.R$styleable: int ActionBar_indeterminateProgressStyle +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder password(java.lang.String) +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.lang.Object next() +com.google.android.material.R$id: int chronometer +com.google.android.material.R$id: int textinput_counter +androidx.appcompat.R$attr: int viewInflaterClass +io.reactivex.internal.queue.SpscArrayQueue: long producerLookAhead +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onComplete() +com.google.android.material.R$style: int Base_DialogWindowTitle_AppCompat +okhttp3.internal.ws.WebSocketProtocol: long PAYLOAD_BYTE_MAX +android.didikee.donate.R$attr: int colorControlActivated +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: java.util.Date Rise +wangdaye.com.geometricweather.R$id: int cancel_button +wangdaye.com.geometricweather.R$drawable: int btn_checkbox_checked_mtrl +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeService getService() +wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_3_material +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int otherState +okio.Source: long read(okio.Buffer,long) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_6 +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindDirection(java.lang.String) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +retrofit2.ParameterHandler: void apply(retrofit2.RequestBuilder,java.lang.Object) +cyanogenmod.app.IPartnerInterface$Stub: IPartnerInterface$Stub() +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver this$0 +com.xw.repo.bubbleseekbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$id: int appBar +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setSunDrawable(android.graphics.drawable.Drawable) +com.google.android.material.textfield.TextInputLayout: android.widget.EditText getEditText() +androidx.constraintlayout.widget.R$color: int notification_icon_bg_color +androidx.constraintlayout.widget.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitationProbability +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial() +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit valueOf(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf +com.google.android.gms.common.server.response.zak +com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Light_Dialog +com.google.gson.stream.JsonReader: boolean nextBoolean() +com.amap.api.location.UmidtokenInfo$a: void onLocationChanged(com.amap.api.location.AMapLocation) +androidx.preference.R$styleable: int TextAppearance_android_textColorLink +cyanogenmod.providers.CMSettings$Global: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) +androidx.preference.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.util.AtomicThrowable errors +com.xw.repo.bubbleseekbar.R$attr: int fontProviderAuthority +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorAnimationDuration +wangdaye.com.geometricweather.R$attr: int labelVisibilityMode +com.google.android.gms.common.internal.zau +okhttp3.internal.ws.RealWebSocket: okhttp3.Request request() +wangdaye.com.geometricweather.main.Hilt_MainActivity: Hilt_MainActivity() +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_LANDSCAPE +io.reactivex.internal.schedulers.ScheduledRunnable: void run() +okhttp3.internal.http2.Http2Codec: java.lang.String KEEP_ALIVE +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: io.reactivex.Observer downstream +okhttp3.internal.cache.DiskLruCache: long size +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String LABEL +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderFetchTimeout +com.google.android.material.R$id: int material_timepicker_edit_text +wangdaye.com.geometricweather.R$id: int fragment_main +androidx.drawerlayout.R$attr: int alpha +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setLevel(java.lang.String) +androidx.core.R$dimen: int notification_big_circle_margin +okhttp3.OkHttpClient$Builder: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: long serialVersionUID +okhttp3.EventListener: void callFailed(okhttp3.Call,java.io.IOException) +okhttp3.internal.Util: int indexOfControlOrNonAscii(java.lang.String) +wangdaye.com.geometricweather.R$attr: int textAppearanceSearchResultTitle +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_height_material +androidx.preference.R$attr: int collapseContentDescription +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeDegreeDayTemperature(java.lang.Integer) +okhttp3.internal.http.CallServerInterceptor: CallServerInterceptor(boolean) +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.Scheduler scheduler +androidx.appcompat.widget.SwitchCompat: android.graphics.PorterDuff$Mode getThumbTintMode() +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_title_divider_material +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getIconTint() +androidx.appcompat.R$style: int Theme_AppCompat_Light_NoActionBar +androidx.preference.R$style: int Widget_AppCompat_Button_Borderless_Colored +okio.Buffer$1: okio.Buffer this$0 +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: java.lang.String Name +androidx.lifecycle.ProcessLifecycleOwnerInitializer: int delete(android.net.Uri,java.lang.String,java.lang.String[]) +androidx.appcompat.widget.SearchView: void setAppSearchData(android.os.Bundle) +okhttp3.internal.http2.Http2Writer: okio.Buffer hpackBuffer +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.tls.TrustRootIndex buildTrustRootIndex(javax.net.ssl.X509TrustManager) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_OVERLAYS +io.reactivex.internal.subscribers.StrictSubscriber: StrictSubscriber(org.reactivestreams.Subscriber) +io.reactivex.internal.util.NotificationLite$SubscriptionNotification: java.lang.String toString() +androidx.work.R$bool: int workmanager_test_configuration +james.adaptiveicon.R$color: int primary_text_disabled_material_light +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +okhttp3.CertificatePinner: void check(java.lang.String,java.util.List) +cyanogenmod.app.IProfileManager$Stub$Proxy: void updateNotificationGroup(android.app.NotificationGroup) +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: boolean equals(java.lang.Object) +james.adaptiveicon.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String access$300(cyanogenmod.app.Profile$ProfileTrigger) +wangdaye.com.geometricweather.R$id: int scrollIndicatorUp +androidx.constraintlayout.widget.Barrier: int getMargin() +wangdaye.com.geometricweather.R$string: int wechat +wangdaye.com.geometricweather.R$id: int collapseActionView +com.jaredrummler.android.colorpicker.R$id: int right_side +cyanogenmod.providers.CMSettings$Secure: boolean isLegacySetting(java.lang.String) +cyanogenmod.externalviews.ExternalView$8: cyanogenmod.externalviews.ExternalView this$0 +com.google.android.material.R$layout: int abc_tooltip +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_navigationIcon +androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ProgressBar_Horizontal +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImpl: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: java.util.List brands wangdaye.com.geometricweather.R$id: int resident_icon -com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Theme_AppCompat -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_unRegisterThermalListener -androidx.customview.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$attr: int entries -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.R$string: int about_greenDAO -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickInactiveTintList() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Linear -okio.Pipe: okio.Sink sink -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean hasKey(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric -com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_ripple_color -androidx.preference.R$style: int Widget_AppCompat_Button_Borderless -androidx.preference.R$styleable: int Toolbar_titleMargins -androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge -james.adaptiveicon.R$layout: int abc_search_view -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -androidx.coordinatorlayout.R$dimen: int notification_large_icon_width -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FAIR_NIGHT -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void removeInner(io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) -wangdaye.com.geometricweather.R$styleable: int Chip_checkedIcon -androidx.constraintlayout.widget.R$attr: int minWidth -com.google.android.material.chip.Chip: void setCheckedIconTint(android.content.res.ColorStateList) -androidx.recyclerview.R$attr: int fontProviderAuthority -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_show_motion_spec -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_toId -okio.Buffer: void readFully(okio.Buffer,long) -wangdaye.com.geometricweather.R$drawable: int notif_temp_1 -com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$dimen: int mtrl_card_checked_icon_margin -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit[] values() -wangdaye.com.geometricweather.common.basic.models.weather.History: java.util.Date date -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonStyleSmall -androidx.appcompat.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: io.reactivex.Observer child -com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_title_material -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_height_material -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginLeft -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton -androidx.core.R$id: int accessibility_custom_action_20 -io.reactivex.Observable: io.reactivex.Observable concat(java.lang.Iterable) -com.google.android.material.R$attr: int state_lifted -com.google.android.material.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -wangdaye.com.geometricweather.R$string: int settings_title_background_free -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int BLOWING_SNOW -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getZh_CN() -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingRight -androidx.vectordrawable.animated.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: java.lang.String getNotificationTextColorName(android.content.Context) -com.google.android.material.R$styleable: int Chip_chipStartPadding -wangdaye.com.geometricweather.R$attr: int customNavigationLayout -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String HOUR -androidx.preference.R$id: int custom -androidx.lifecycle.ComputableLiveData$1: androidx.lifecycle.ComputableLiveData this$0 -okhttp3.MediaType: java.util.regex.Pattern PARAMETER -androidx.viewpager.R$integer: R$integer() -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_LOW -androidx.lifecycle.MediatorLiveData$Source: void plug() -android.didikee.donate.R$layout: int abc_list_menu_item_icon -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableBottom -com.google.android.material.R$id: int src_over -com.google.android.material.R$styleable: int AppCompatTheme_colorAccent -okhttp3.OkHttpClient: okhttp3.EventListener$Factory eventListenerFactory -androidx.preference.R$layout: int select_dialog_item_material -androidx.preference.R$styleable: int FontFamily_fontProviderCerts -com.google.android.material.R$styleable: int Layout_layout_constraintHeight_percent -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_pressed_holo_dark -io.reactivex.Observable: io.reactivex.Observable onErrorResumeNext(io.reactivex.ObservableSource) -androidx.constraintlayout.widget.R$id: int checked -wangdaye.com.geometricweather.R$styleable: int ClockHandView_materialCircleRadius -com.turingtechnologies.materialscrollbar.R$id: int search_go_btn -androidx.appcompat.resources.R$dimen: int notification_action_text_size -com.github.rahatarmanahmed.cpv.CircularProgressView$1: CircularProgressView$1(com.github.rahatarmanahmed.cpv.CircularProgressView) -androidx.appcompat.R$attr: int colorBackgroundFloating -com.xw.repo.bubbleseekbar.R$attr: int actionModePopupWindowStyle -james.adaptiveicon.R$styleable: int[] MenuView -com.google.android.material.R$dimen: int abc_edit_text_inset_bottom_material -androidx.dynamicanimation.R$dimen: int compat_notification_large_icon_max_width -okhttp3.internal.http2.Http2Reader$Handler: void ackSettings() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarStyle -com.jaredrummler.android.colorpicker.R$dimen: int hint_pressed_alpha_material_light -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float pm10 -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Button -androidx.hilt.work.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.db.entities.DailyEntity: void setTime(long) -com.xw.repo.bubbleseekbar.R$id: int action_image -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather weather -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight -wangdaye.com.geometricweather.R$layout: int item_weather_daily_title_large -android.didikee.donate.R$styleable: int AppCompatTextView_drawableStartCompat -james.adaptiveicon.R$id: int blocking -okhttp3.internal.cache.DiskLruCache: okio.BufferedSink journalWriter -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light -io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver valueOf(java.lang.String) -okio.Util: Util() -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth -androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_DropDownUp -com.amap.api.location.AMapLocationClientOption: float getDeviceModeDistanceFilter() -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getStrokeColorStateList() -okio.Utf8: Utf8() -com.amap.api.fence.PoiItem: java.lang.String getAdname() -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_title -com.google.android.material.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedWidthMajor -okhttp3.internal.ws.WebSocketWriter$FrameSink: void flush() -android.support.v4.os.ResultReceiver$MyRunnable: void run() -com.amap.api.location.AMapLocationQualityReport: void setNetUseTime(long) -androidx.vectordrawable.R$styleable: int FontFamilyFont_fontStyle -androidx.constraintlayout.widget.R$styleable: int SearchView_android_focusable -com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: int UnitType -androidx.fragment.app.Fragment$SavedState -cyanogenmod.app.ProfileGroup: void writeToParcel(android.os.Parcel,int) -androidx.activity.R$id: int accessibility_custom_action_5 -com.jaredrummler.android.colorpicker.R$styleable: int RecycleListView_paddingBottomNoButtons -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void cancelOngoingRequests() -com.google.android.gms.common.R$string -com.bumptech.glide.R$layout -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_font -okhttp3.internal.cache2.FileOperator: java.nio.channels.FileChannel fileChannel -androidx.preference.R$style: int Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit valueOf(java.lang.String) -androidx.customview.R$id: int tag_transition_group -com.google.android.material.R$attr: int foregroundInsidePadding -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_AES_128_CBC_SHA -androidx.viewpager2.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -com.google.android.material.R$id: int mini -com.google.android.material.R$styleable: int Layout_layout_constraintStart_toEndOf -androidx.appcompat.R$styleable: int[] RecycleListView -androidx.appcompat.widget.AppCompatRadioButton -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: java.lang.String Localized -cyanogenmod.app.Profile: Profile(java.lang.String) -com.xw.repo.bubbleseekbar.R$color: int primary_text_default_material_light -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_ActionBar -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_elevation_material -com.google.android.material.R$styleable: R$styleable() -androidx.appcompat.R$id: int search_voice_btn -com.bumptech.glide.R$id: int notification_background -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State valueOf(java.lang.String) -androidx.viewpager.R$dimen: int notification_small_icon_background_padding -androidx.preference.R$styleable: int Toolbar_contentInsetStartWithNavigation -android.didikee.donate.R$styleable: int SwitchCompat_android_thumb -wangdaye.com.geometricweather.db.entities.LocationEntity: void setCountry(java.lang.String) -wangdaye.com.geometricweather.R$id: int dialog_location_help_providerTitle -com.jaredrummler.android.colorpicker.R$attr: int actionModeBackground -okhttp3.internal.http2.Http2Connection$7: Http2Connection$7(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okhttp3.internal.http2.ErrorCode) -io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_search -okio.ByteString: okio.ByteString of(byte[],int,int) -androidx.preference.PreferenceManager -io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.CompletableObserver) -com.google.android.material.R$styleable: int ActionBar_homeLayout -com.google.android.material.R$styleable: int AppCompatTheme_actionModeCutDrawable -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle -com.google.android.material.R$attr: int panelBackground -androidx.appcompat.widget.SearchView: SearchView(android.content.Context,android.util.AttributeSet) -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -androidx.transition.R$attr: int fontProviderQuery -androidx.constraintlayout.widget.R$attr: int windowMinWidthMajor -cyanogenmod.app.CustomTile$ExpandedStyle: java.lang.String toString() -com.google.android.material.chip.Chip: void setIconEndPaddingResource(int) -com.google.android.material.R$integer: int mtrl_calendar_year_selector_span -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String LocalizedName -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String windLevel -com.xw.repo.BubbleSeekBar: void setThumbColor(int) -androidx.recyclerview.R$dimen: int fastscroll_default_thickness -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry: java.lang.String type -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_CELL -com.turingtechnologies.materialscrollbar.R$attr: int autoSizeMaxTextSize -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_title_material -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getId() -com.jaredrummler.android.colorpicker.R$attr: int titleMarginStart -com.xw.repo.bubbleseekbar.R$anim: int abc_slide_in_top -androidx.preference.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -androidx.preference.R$styleable: int AppCompatTheme_colorPrimaryDark -wangdaye.com.geometricweather.R$string: int wind_0 -com.baidu.location.e.m: java.util.List a(org.json.JSONObject,java.lang.String,int) -okhttp3.Cookie$Builder: long expiresAt -wangdaye.com.geometricweather.R$string: int key_notification_style -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_74 -cyanogenmod.providers.CMSettings$System: java.lang.String DIALER_OPENCNAM_ACCOUNT_SID -androidx.preference.R$styleable: int AppCompatTextView_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$attr: int itemIconPadding -androidx.constraintlayout.widget.R$attr: int state_above_anchor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String getIcon() -com.google.android.material.R$styleable: int FloatingActionButton_backgroundTint -cyanogenmod.weather.WeatherLocation -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_srcCompat -androidx.hilt.R$drawable: int notification_bg_low_normal -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowMinWidthMajor -androidx.lifecycle.ProcessLifecycleOwner: java.lang.Runnable mDelayedPauseRunnable -android.didikee.donate.R$layout: int abc_activity_chooser_view -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.R$attr: int layout_constrainedWidth -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.util.List _queryWeatherEntity_DailyEntityList(java.lang.String,java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int commitIcon -androidx.viewpager.R$id: R$id() -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceCategoryStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableEnd -androidx.drawerlayout.widget.DrawerLayout: float getDrawerElevation() -android.didikee.donate.R$layout: int abc_action_bar_up_container -com.google.android.material.R$dimen: int notification_content_margin_start -android.didikee.donate.R$attr: int selectableItemBackground -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.R$styleable: int ActionBar_divider -james.adaptiveicon.R$style: int Widget_AppCompat_Button_Small -james.adaptiveicon.R$styleable: int SearchView_queryHint -com.google.android.material.R$styleable: int AppCompatTextHelper_android_textAppearance -androidx.recyclerview.widget.RecyclerView: boolean getClipToPadding() -com.amap.api.location.AMapLocation: boolean a(com.amap.api.location.AMapLocation,boolean) -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_WEATHER -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okhttp3.internal.http2.ErrorCode: int httpCode -wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_default_alpha -com.google.android.material.slider.BaseSlider: float getValueTo() -androidx.constraintlayout.widget.R$styleable: int ActionMode_background -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_COMPONENT_ID -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tMax -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_android_entryValues -com.turingtechnologies.materialscrollbar.R$attr: int singleLine -okhttp3.internal.http2.Http2Connection: void pushRequestLater(int,java.util.List) -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String[] SELECT_VALUE -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean isEntityUpdateable() -wangdaye.com.geometricweather.R$attr: int titleMarginBottom -com.google.android.material.R$layout: int mtrl_calendar_day_of_week -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.R$styleable: int Preference_android_selectable -androidx.preference.R$drawable: int abc_btn_borderless_material -com.google.android.material.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ListPopupWindow -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_scaleX -wangdaye.com.geometricweather.R$bool: int abc_config_actionMenuItemAllCaps +androidx.appcompat.R$styleable: int AppCompatTheme_panelMenuListWidth +androidx.constraintlayout.widget.R$styleable: int MenuView_subMenuArrow +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain6h +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSearchResultSubtitle +androidx.hilt.R$id: int accessibility_custom_action_25 +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatElevation(float) +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_xmlIcon +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_3 +androidx.appcompat.widget.AppCompatTextView: void setLineHeight(int) +androidx.appcompat.R$styleable: int Toolbar_titleMargins +okhttp3.internal.ws.RealWebSocket$CancelRunnable +com.turingtechnologies.materialscrollbar.R$id: int line1 +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationZ +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableRightCompat +androidx.preference.R$style: int Animation_AppCompat_DropDownUp +androidx.recyclerview.R$drawable: int notification_bg_low +org.greenrobot.greendao.database.DatabaseOpenHelper: void onUpgrade(org.greenrobot.greendao.database.Database,int,int) +com.google.android.material.circularreveal.CircularRevealGridLayout: void setCircularRevealScrimColor(int) +okhttp3.ConnectionPool: boolean $assertionsDisabled +com.jaredrummler.android.colorpicker.R$attr: int disableDependentsState +com.google.android.material.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +com.google.android.material.R$styleable: int AppCompatTheme_buttonStyle +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnt +james.adaptiveicon.R$style: int Theme_AppCompat +androidx.preference.R$attr: int tooltipFrameBackground +wangdaye.com.geometricweather.R$attr: int boxBackgroundColor +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableBottom +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_SECURE +androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_android_color +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowMinWidthMinor +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode lvNext() +wangdaye.com.geometricweather.R$id: int dialog_background_location_title +androidx.preference.R$style: int Widget_AppCompat_CompoundButton_CheckBox +com.xw.repo.bubbleseekbar.R$layout: int abc_action_menu_item_layout +android.didikee.donate.R$color: int accent_material_light +wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_Material +wangdaye.com.geometricweather.R$animator: int design_fab_hide_motion_spec +io.reactivex.internal.observers.ForEachWhileObserver: void onComplete() +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BEGIN_ARRAY +okhttp3.internal.http2.Http2Connection$Listener +com.google.android.material.slider.Slider: void setThumbStrokeWidth(float) +com.google.android.material.R$id: int spread +wangdaye.com.geometricweather.R$id: int dialog_time_setter_time_picker +wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_android_textAppearance +wangdaye.com.geometricweather.R$attr: int textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarStyle +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_trackColor +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_93 +okio.ByteString: int lastIndexOf(byte[],int) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +com.turingtechnologies.materialscrollbar.R$attr: int editTextStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabBarStyle +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: boolean isDisposed() +okhttp3.internal.cache.CacheStrategy$Factory: boolean isFreshnessLifetimeHeuristic() +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: HistoryEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +retrofit2.OkHttpCall$NoContentResponseBody: long contentLength() +com.jaredrummler.android.colorpicker.R$attr: int paddingStart +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_android_alpha +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.viewpager2.R$id: int line3 +io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged(io.reactivex.functions.Function) +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderFetchStrategy +com.amap.api.fence.DistrictItem: java.util.List d +cyanogenmod.app.ProfileGroup: void setRingerOverride(android.net.Uri) +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Text +androidx.loader.R$styleable: int[] FontFamilyFont +androidx.preference.R$id: int search_mag_icon +wangdaye.com.geometricweather.R$dimen: int design_snackbar_extra_spacing_horizontal +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onError(java.lang.Throwable) +com.google.android.material.R$animator: int mtrl_extended_fab_hide_motion_spec +com.google.android.material.R$styleable: int AppCompatTheme_colorButtonNormal +cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener: void onAttachedToWindow() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String logo +androidx.fragment.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$dimen: int notification_small_icon_size_as_large +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer LEFT_CLOSE +cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.os.Bundle getOptions() +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setDayIndicatorRotation(float) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_STATUS_BAR +com.google.android.material.R$style: int Base_Widget_MaterialComponents_Slider +com.google.android.material.R$style: int TextAppearance_AppCompat_SearchResult_Title +cyanogenmod.providers.CMSettings$Global: android.net.Uri CONTENT_URI +retrofit2.Utils: Utils() +com.google.android.material.R$styleable: int NavigationView_elevation +androidx.preference.R$styleable: int Toolbar_menu +com.google.android.material.R$dimen: int mtrl_slider_track_top +com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_material_dark +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property AlertId +androidx.lifecycle.FullLifecycleObserver: void onStart(androidx.lifecycle.LifecycleOwner) +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setDaytimeTemperature(int) +wangdaye.com.geometricweather.R$string: int get_more_github +retrofit2.ParameterHandler$Path: ParameterHandler$Path(java.lang.reflect.Method,int,java.lang.String,retrofit2.Converter,boolean) +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int PREDISMISSED_STATE +com.jaredrummler.android.colorpicker.R$dimen: int preference_icon_minWidth +james.adaptiveicon.R$drawable: int abc_textfield_search_default_mtrl_alpha +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +cyanogenmod.providers.CMSettings$Global: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_117 +com.google.android.material.tabs.TabLayout: int getDefaultHeight() +androidx.drawerlayout.R$id: int title +io.reactivex.Observable: io.reactivex.Observable flatMapSingle(io.reactivex.functions.Function) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String district +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CUSTOM_ENABLE +wangdaye.com.geometricweather.R$string: int settings_title_notification_color +androidx.viewpager.R$styleable: int FontFamily_fontProviderPackage +okio.RealBufferedSink$1: void write(byte[],int,int) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +wangdaye.com.geometricweather.R$id: int preset +wangdaye.com.geometricweather.R$id: int up +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setProvince(java.lang.String) +androidx.appcompat.widget.AppCompatImageView: void setImageDrawable(android.graphics.drawable.Drawable) +james.adaptiveicon.R$attr +androidx.drawerlayout.R$dimen: int compat_button_inset_horizontal_material +io.reactivex.Observable: io.reactivex.Observable throttleWithTimeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.preference.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +cyanogenmod.weather.WeatherInfo$DayForecast: int describeContents() +androidx.customview.R$attr +okhttp3.Credentials: Credentials() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Switch +androidx.appcompat.resources.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: double Value +wangdaye.com.geometricweather.R$interpolator +wangdaye.com.geometricweather.R$layout +android.didikee.donate.R$style: int Widget_AppCompat_ProgressBar +com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Primary +androidx.constraintlayout.widget.R$style: int Animation_AppCompat_DropDownUp +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +wangdaye.com.geometricweather.R$id: int password_toggle +androidx.preference.R$styleable: int Toolbar_collapseIcon +okhttp3.internal.proxy.NullProxySelector: void connectFailed(java.net.URI,java.net.SocketAddress,java.io.IOException) +okhttp3.OkHttpClient$Builder: okhttp3.Authenticator authenticator +androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_indicator_material +com.jaredrummler.android.colorpicker.R$color: int abc_hint_foreground_material_light +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult +com.jaredrummler.android.colorpicker.R$layout: int preference_dropdown_material +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingBottom +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitationDuration() +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: BodyObservable$BodyObserver(io.reactivex.Observer) +android.didikee.donate.R$dimen: int abc_edit_text_inset_top_material +okhttp3.internal.http2.Http2Connection: int nextStreamId +android.didikee.donate.R$styleable: int SearchView_queryHint +cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup getProfileGroup(java.util.UUID) +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: java.lang.String mKey +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_STOP +wangdaye.com.geometricweather.R$id: int TOP_START +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Colored +com.jaredrummler.android.colorpicker.R$attr: int reverseLayout +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder socket(java.net.Socket) +com.xw.repo.bubbleseekbar.R$id: int up +wangdaye.com.geometricweather.R$array: int air_quality_co_units +androidx.preference.R$anim: int btn_checkbox_to_checked_icon_null_animation +wangdaye.com.geometricweather.R$dimen: int material_emphasis_medium +androidx.constraintlayout.widget.R$styleable: int Layout_barrierAllowsGoneWidgets +cyanogenmod.weatherservice.ServiceRequestResult$1: java.lang.Object createFromParcel(android.os.Parcel) +cyanogenmod.themes.IThemeService +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_11 +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom +cyanogenmod.weather.IRequestInfoListener$Stub: java.lang.String DESCRIPTOR +com.google.android.material.textfield.TextInputLayout: void setSuffixTextAppearance(int) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_5 +androidx.preference.R$dimen: int abc_action_button_min_width_overflow_material +com.turingtechnologies.materialscrollbar.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onComplete() +io.reactivex.disposables.RunnableDisposable: void onDisposed(java.lang.Object) com.google.android.material.R$layout: int mtrl_alert_dialog -com.google.android.material.bottomappbar.BottomAppBar: void setFabCradleMargin(float) -androidx.constraintlayout.widget.R$attr: int actionModeCutDrawable -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_LEGACY_ICONPACK -okhttp3.RealCall: okhttp3.OkHttpClient client -io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Runnable getWrappedRunnable() -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean done -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: java.lang.Integer fresh -androidx.appcompat.R$styleable: int FontFamilyFont_android_fontStyle -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_scrollMode -retrofit2.Response: int code() -wangdaye.com.geometricweather.R$anim: int fragment_open_exit -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: AccuCurrentResult$RealFeelTemperatureShade() -android.didikee.donate.R$attr: int actionBarTabTextStyle -com.bumptech.glide.integration.okhttp.R$style: int Widget_Compat_NotificationActionText -com.google.android.material.R$string: int mtrl_picker_text_input_date_range_end_hint -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String timezone -com.jaredrummler.android.colorpicker.R$color: int material_grey_900 -wangdaye.com.geometricweather.R$color: int abc_tint_seek_thumb -androidx.preference.R$styleable: int GradientColor_android_startY -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetRight -com.google.android.material.internal.ParcelableSparseBooleanArray: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_fontFamily -com.google.android.material.R$bool: R$bool() -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -okhttp3.internal.http2.Http2Connection$Listener: okhttp3.internal.http2.Http2Connection$Listener REFUSE_INCOMING_STREAMS -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String unitId -com.google.android.material.R$attr: int layout_constraintGuide_end -com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_max_width -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator PEOPLE_LOOKUP_PROVIDER_VALIDATOR -androidx.hilt.lifecycle.R$drawable: int notification_template_icon_low_bg -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_PARSER -androidx.constraintlayout.widget.R$layout: int notification_template_part_chronometer -android.didikee.donate.R$attr: int textAllCaps -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherCode -wangdaye.com.geometricweather.R$drawable: int ic_time -com.xw.repo.bubbleseekbar.R$styleable: int[] CompoundButton -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean isDisposed() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onComplete() -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_Bridge -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_android_thumb -androidx.coordinatorlayout.R$id: int dialog_button -androidx.hilt.work.R$styleable: int FontFamilyFont_android_ttcIndex -com.google.android.material.R$styleable: int AppCompatTheme_windowActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorError -com.google.android.material.card.MaterialCardView: int getStrokeWidth() -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 -com.jaredrummler.android.colorpicker.R$styleable: int Preference_persistent -james.adaptiveicon.R$id: int submit_area -com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference -com.turingtechnologies.materialscrollbar.R$attr: int editTextBackground -wangdaye.com.geometricweather.R$id: int notification_base_aqiAndWind -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCheckedIconTint() -com.turingtechnologies.materialscrollbar.R$id: int text -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_direction -androidx.activity.R$id: int accessibility_custom_action_12 -james.adaptiveicon.R$drawable: int notification_template_icon_low_bg -james.adaptiveicon.R$style: int Widget_AppCompat_ImageButton -androidx.constraintlayout.widget.R$attr: int transitionDisable -james.adaptiveicon.R$drawable: int abc_switch_track_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int[] PopupWindowBackgroundState -wangdaye.com.geometricweather.background.polling.work.worker.AsyncUpdateWorker -wangdaye.com.geometricweather.R$attr: int customDimension +androidx.viewpager2.R$id: int accessibility_custom_action_5 +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition +com.google.android.material.R$attr: int cornerFamilyTopRight +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$attr: int dropdownListPreferredItemHeight +com.google.android.material.navigation.NavigationView: void setCheckedItem(int) +retrofit2.ParameterHandler$Headers: ParameterHandler$Headers(java.lang.reflect.Method,int) +androidx.appcompat.R$attr: int overlapAnchor wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias -com.google.android.material.appbar.CollapsingToolbarLayout: int getScrimVisibleHeightTrigger() -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Count -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: int UnitType -androidx.preference.R$styleable: int[] Toolbar -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_71 -com.turingtechnologies.materialscrollbar.R$style: int Platform_AppCompat_Light -james.adaptiveicon.R$styleable: int AppCompatTheme_panelMenuListWidth -com.google.android.material.R$id: int password_toggle -androidx.activity.R$integer: R$integer() -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1(androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber,java.lang.Throwable) -com.google.android.material.textfield.TextInputLayout: void setHintTextColor(android.content.res.ColorStateList) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int wip -androidx.appcompat.R$string: int abc_action_mode_done -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PRESENT_AS_THEME -okhttp3.internal.http1.Http1Codec$1 -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamily -wangdaye.com.geometricweather.R$attr: int bsb_section_count -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_progress -androidx.constraintlayout.widget.R$attr: int showTitle -wangdaye.com.geometricweather.R$attr: int autoSizeMaxTextSize -com.google.android.material.slider.RangeSlider: java.lang.CharSequence getAccessibilityClassName() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List ziwaixian -androidx.preference.R$style: int Widget_AppCompat_Light_ListView_DropDown -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float rain -androidx.constraintlayout.widget.R$attr: int region_widthMoreThan -com.turingtechnologies.materialscrollbar.R$style: int Base_DialogWindowTitleBackground_AppCompat -androidx.preference.R$styleable: int AppCompatTheme_actionModeCopyDrawable -cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String CITY_ID -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.db.entities.DaoSession daoSession -com.amap.api.location.AMapLocation: android.os.Parcelable$Creator CREATOR -androidx.preference.R$drawable: int abc_ic_menu_overflow_material -com.amap.api.location.LocationManagerBase: com.amap.api.location.AMapLocation getLastKnownLocation() -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_GPS -androidx.appcompat.R$id: int src_atop -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerY -com.google.android.material.R$color: int design_default_color_primary -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.fuseable.SimpleQueue queue -com.google.android.material.R$styleable: int AppBarLayoutStates_state_lifted -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_title -okhttp3.internal.http2.Settings: int size() -wangdaye.com.geometricweather.R$attr: int bsb_section_text_color -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_toLeftOf -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String ALARM_STATE -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.util.Locale locale -wangdaye.com.geometricweather.R$style: int ThemeOverlayColorAccentRed -androidx.appcompat.R$attr: int thumbTintMode -com.google.android.material.R$attr: int contentScrim -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: int sourceColor -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorEnabled -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getError() -com.google.android.material.R$attr: int materialButtonOutlinedStyle -okhttp3.internal.Internal: void setCache(okhttp3.OkHttpClient$Builder,okhttp3.internal.cache.InternalCache) -james.adaptiveicon.R$styleable: int ActionBar_hideOnContentScroll -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingTop -cyanogenmod.util.ColorUtils$1: ColorUtils$1() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarPopupTheme -android.didikee.donate.R$dimen: int abc_dropdownitem_text_padding_left -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void setDisposable(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconTint -wangdaye.com.geometricweather.R$id: int widget_day_week_week_3 -com.turingtechnologies.materialscrollbar.R$attr: int actionButtonStyle -wangdaye.com.geometricweather.R$drawable: int ic_arrow_down_24dp -com.jaredrummler.android.colorpicker.R$attr: int layout_behavior -androidx.constraintlayout.widget.R$attr: int spinBars -cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CURRENT_WEATHER_URI -retrofit2.BuiltInConverters$UnitResponseBodyConverter: retrofit2.BuiltInConverters$UnitResponseBodyConverter INSTANCE -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$attr: int tickColorActive -wangdaye.com.geometricweather.R$color: int colorRoot_dark -retrofit2.CallAdapter$Factory -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_bias -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitationDuration(java.lang.Float) -com.github.rahatarmanahmed.cpv.R$attr -okhttp3.internal.connection.RouteException -com.google.gson.internal.LinkedTreeMap: java.lang.Object writeReplace() -com.jaredrummler.android.colorpicker.R$attr: int backgroundSplit -androidx.constraintlayout.widget.R$id: int asConfigured -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_divider -androidx.constraintlayout.widget.R$drawable: int abc_item_background_holo_light -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.internal.util.AtomicThrowable error -retrofit2.RequestFactory: RequestFactory(retrofit2.RequestFactory$Builder) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$x -io.reactivex.internal.util.EmptyComponent: void dispose() -androidx.viewpager.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.R$xml: int widget_week -wangdaye.com.geometricweather.R$dimen: int abc_search_view_preferred_height -com.amap.api.location.AMapLocation: int getGpsAccuracyStatus() -android.didikee.donate.R$id: int search_edit_frame -android.didikee.donate.R$dimen: int notification_media_narrow_margin -androidx.appcompat.R$style: int TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.R$styleable: int Chip_chipBackgroundColor -androidx.core.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setWeatherSource(java.lang.String) -io.reactivex.internal.queue.SpscArrayQueue: boolean offer(java.lang.Object,java.lang.Object) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.util.ErrorMode errorMode -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Borderless -androidx.preference.R$layout: int abc_action_bar_up_container -androidx.constraintlayout.widget.R$dimen: int abc_search_view_preferred_width -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabBackground -androidx.core.R$layout -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$id: int progress_circular -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_shapeAppearanceOverlay -com.xw.repo.bubbleseekbar.R$styleable: int[] CoordinatorLayout -com.google.android.material.R$attr: int itemIconSize -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: java.lang.String Unit -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String dailyForecast -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory getInstance(android.app.Application) -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setTime(long) -android.didikee.donate.R$styleable: int Toolbar_contentInsetStart -com.google.android.material.R$attr: int textInputStyle -io.reactivex.Observable: io.reactivex.Observable rangeLong(long,long) -androidx.lifecycle.LiveData$AlwaysActiveObserver -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 -wangdaye.com.geometricweather.R$id: int widget_clock_day_card -cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder asBinder() -androidx.constraintlayout.widget.R$attr: int layout_editor_absoluteX -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: int UnitType -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_pre_l_text_clip_padding -wangdaye.com.geometricweather.R$id: int withText -cyanogenmod.weather.WeatherInfo$DayForecast: int hashCode() -com.google.android.material.R$styleable: int OnClick_clickAction -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature -androidx.coordinatorlayout.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMarkTint -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getTreeDescription() -com.google.gson.internal.LazilyParsedNumber: float floatValue() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarSize -androidx.preference.R$attr: int buttonBarNeutralButtonStyle -com.google.android.material.R$drawable: int abc_action_bar_item_background_material -com.google.android.material.textfield.TextInputLayout: void setErrorEnabled(boolean) -com.amap.api.fence.GeoFence -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode CONNECT_ERROR -wangdaye.com.geometricweather.R$id: int parentRelative -com.google.android.material.R$drawable: int abc_list_selector_disabled_holo_light -androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableTransition -james.adaptiveicon.R$attr: int panelMenuListWidth -androidx.recyclerview.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean hasKey(java.lang.Object) -james.adaptiveicon.R$color: int abc_primary_text_material_dark -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver) -com.jaredrummler.android.colorpicker.R$attr: int cpv_showColorShades -com.google.android.material.R$attr: int counterOverflowTextColor -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline4 -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String l() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner -james.adaptiveicon.R$styleable: int AppCompatTheme_actionMenuTextAppearance -androidx.coordinatorlayout.R$dimen: int notification_subtext_size -com.google.android.material.chip.ChipGroup: void setChipSpacing(int) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property CloudCover -cyanogenmod.profiles.RingModeSettings -wangdaye.com.geometricweather.R$string: int content_des_sunset -androidx.core.R$drawable: int notification_bg_low -androidx.constraintlayout.widget.R$styleable: int Constraint_transitionEasing -okhttp3.Address: okhttp3.HttpUrl url -io.reactivex.Observable: io.reactivex.Observable distinct() -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicReference upstream -okhttp3.Request: java.lang.String method() -okhttp3.Cookie -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$attr: int preferenceScreenStyle -androidx.constraintlayout.widget.R$styleable: int Layout_minWidth -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display3 -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ct -com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context,android.util.AttributeSet) -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState RUNNING -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setUseSessionTickets -james.adaptiveicon.R$attr: int actionBarTabTextStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionButtonStyle -androidx.preference.R$styleable: int TextAppearance_android_shadowRadius -androidx.preference.R$id: int textSpacerNoTitle -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setDistrict(java.lang.String) -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void schedule() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_16 -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void drain() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTint -android.didikee.donate.R$color: int abc_tint_switch_track -androidx.hilt.R$id: int accessibility_custom_action_27 -androidx.appcompat.R$style: int TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String zh_TW -androidx.preference.R$styleable: int[] LinearLayoutCompat -androidx.preference.R$dimen: int abc_action_bar_elevation_material -wangdaye.com.geometricweather.R$attr: int checkboxStyle -com.google.android.material.R$dimen: int design_snackbar_text_size -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_adjustable -com.xw.repo.bubbleseekbar.R$attr: int borderlessButtonStyle -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_29 -wangdaye.com.geometricweather.R$styleable: int ArcProgress_background_color -com.turingtechnologies.materialscrollbar.R$attr: int actionOverflowButtonStyle -androidx.activity.R$style: int TextAppearance_Compat_Notification_Title -cyanogenmod.weatherservice.ServiceRequestResult: java.lang.String mKey -androidx.preference.R$drawable: int abc_control_background_material -wangdaye.com.geometricweather.R$drawable: int ic_google_play -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_Solid -com.turingtechnologies.materialscrollbar.R$attr: int msb_handleOffColor -com.jaredrummler.android.colorpicker.R$styleable: int[] ViewStubCompat -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_ActionBar -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -com.turingtechnologies.materialscrollbar.R$attr: int iconifiedByDefault -wangdaye.com.geometricweather.R$id: int spread_inside -androidx.preference.R$style: int Base_V7_Theme_AppCompat_Light -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform PLATFORM -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_switchTextOn -androidx.recyclerview.R$id: int accessibility_custom_action_3 -wangdaye.com.geometricweather.R$dimen: int widget_little_weather_icon_size -androidx.hilt.R$id: int time -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_AUTH -androidx.hilt.work.R$layout: int notification_action_tombstone -com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableCompat -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dark -androidx.work.R$attr: R$attr() -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getProgress -james.adaptiveicon.R$styleable: int AlertDialog_buttonPanelSideLayout -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColorHint -okhttp3.internal.http2.Hpack$Reader: okhttp3.internal.http2.Header[] dynamicTable -wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_title -com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_android_foregroundGravity -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial Imperial -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_setDefaultLiveLockScreen -com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_material -com.google.android.material.R$styleable: int CardView_contentPaddingLeft -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTag -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.internal.operators.observable.ObservableCache parent -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayColorCalibration -androidx.hilt.work.R$styleable: int FontFamily_fontProviderPackage -james.adaptiveicon.R$styleable: int SearchView_goIcon -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat -com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingBottom() -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthResource(int) -com.amap.api.fence.PoiItem: java.lang.String e -cyanogenmod.hardware.DisplayMode: void writeToParcel(android.os.Parcel,int) -androidx.viewpager.R$id: int line1 -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode PARTLY_CLOUDY -com.google.android.material.R$style: int TextAppearance_Design_Suffix -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX getWind() -androidx.coordinatorlayout.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$color: int abc_tint_switch_track -com.jaredrummler.android.colorpicker.R$color: int abc_secondary_text_material_dark -com.google.android.material.R$styleable: int MaterialCardView_checkedIconMargin -com.bumptech.glide.R$id -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.functions.Function mapper -androidx.viewpager2.R$layout: R$layout() -wangdaye.com.geometricweather.R$styleable: int SignInButton_buttonSize -androidx.appcompat.resources.R$drawable: int notification_action_background -com.google.android.material.R$id: int on -androidx.constraintlayout.widget.R$attr: int alertDialogTheme -com.google.android.material.R$dimen: int mtrl_calendar_bottom_padding -com.google.android.material.R$color: int design_dark_default_color_secondary -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_DES_CBC_SHA -io.reactivex.Observable: io.reactivex.Observable switchOnNext(io.reactivex.ObservableSource,int) -androidx.appcompat.widget.AbsActionBarView: void setVisibility(int) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object readKey(android.database.Cursor,int) -com.google.android.material.R$id: int autoCompleteToStart -com.amap.api.fence.PoiItem: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$color: int design_default_color_primary_dark -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void dispose() -com.xw.repo.bubbleseekbar.R$drawable: int abc_spinner_mtrl_am_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchPadding -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_Overflow -wangdaye.com.geometricweather.R$styleable: int MenuItem_alphabeticModifiers -androidx.preference.R$string: int v7_preference_off -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: CaiYunMainlyResult$AlertsBean$DefenseBean() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -wangdaye.com.geometricweather.R$attr: int badgeTextColor -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.work.R$layout: int notification_action -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_menu_header_material -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_PopupMenu -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setLiveLockScreen(java.lang.String) -okhttp3.internal.http2.Http2Connection: int nextStreamId -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: java.lang.Object poll() -io.reactivex.Observable: io.reactivex.Observable hide() -androidx.appcompat.resources.R$drawable: int notify_panel_notification_icon_bg -com.turingtechnologies.materialscrollbar.R$attr: int queryHint -androidx.preference.R$anim: int fragment_fade_enter -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: boolean isValid() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -androidx.preference.R$dimen: int highlight_alpha_material_light -okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman INSTANCE -androidx.appcompat.R$styleable: int ActionBar_titleTextStyle -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: boolean isDisposed() -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.DatabaseOpenHelper$EncryptedHelper encryptedHelper -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: int getChartBottom() -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSyncDuration -james.adaptiveicon.R$styleable: int TextAppearance_android_textColor -wangdaye.com.geometricweather.R$attr: int touchRegionId -com.xw.repo.bubbleseekbar.R$styleable: int[] SwitchCompat -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: long serialVersionUID -io.reactivex.internal.util.NotificationLite$DisposableNotification: java.lang.String toString() -wangdaye.com.geometricweather.R$styleable: int MenuView_subMenuArrow -androidx.appcompat.resources.R$attr: int fontProviderAuthority -cyanogenmod.hardware.CMHardwareManager -wangdaye.com.geometricweather.R$string: int expand_button_title -androidx.preference.R$styleable: int ListPreference_android_entryValues -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status[] values() -androidx.preference.R$styleable: int DialogPreference_android_positiveButtonText -androidx.appcompat.resources.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.R$color: int mtrl_chip_surface_color -wangdaye.com.geometricweather.R$styleable: int[] Snackbar -android.didikee.donate.R$style: int Widget_AppCompat_Spinner_Underlined -androidx.appcompat.R$attr: int controlBackground -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetBottom -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -okio.AsyncTimeout$Watchdog: void run() -retrofit2.Retrofit$Builder: okhttp3.Call$Factory callFactory -wangdaye.com.geometricweather.main.fragments.ManagementFragment -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: long serialVersionUID -androidx.dynamicanimation.R$style -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String humidity -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeCloudCover(java.lang.Integer) -wangdaye.com.geometricweather.R$attr: int listChoiceBackgroundIndicator -wangdaye.com.geometricweather.main.fragments.ManagementFragment: ManagementFragment() -com.google.android.material.R$styleable: int KeyTimeCycle_framePosition -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalGap -androidx.constraintlayout.helper.widget.Layer: void setTranslationX(float) -wangdaye.com.geometricweather.R$drawable: int notif_temp_43 -com.google.android.material.R$styleable: int Layout_layout_constraintWidth_max -wangdaye.com.geometricweather.R$id: int smallLabel -wangdaye.com.geometricweather.R$layout: int design_text_input_start_icon -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_CBC_SHA -okhttp3.Cache: void remove(okhttp3.Request) -okhttp3.internal.connection.StreamAllocation: boolean released -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean names -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getUvIndex() -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginStart(int) -wangdaye.com.geometricweather.R$drawable: int ic_exercise -android.didikee.donate.R$style: int Theme_AppCompat_Light_DialogWhenLarge -com.google.android.material.R$styleable: int FontFamily_fontProviderPackage -androidx.preference.R$id: int spinner -wangdaye.com.geometricweather.R$id: int dialog_background_location_setButton -androidx.preference.R$styleable: int PreferenceTheme_dropdownPreferenceStyle -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableRight -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogCornerRadius -androidx.appcompat.widget.Toolbar: void setOverflowIcon(android.graphics.drawable.Drawable) -com.amap.api.fence.GeoFenceClient: int GEOFENCE_IN -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_75 -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endColor -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter beginObject() -com.google.android.material.R$styleable: int Toolbar_contentInsetStart -okio.RealBufferedSource: java.lang.String toString() -com.bumptech.glide.load.HttpException: long serialVersionUID -android.didikee.donate.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: int getStatus() -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItem -okhttp3.internal.ws.WebSocketWriter: okio.BufferedSink sink -james.adaptiveicon.R$integer: int abc_config_activityDefaultDur -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String info -com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_Dialog -okio.ForwardingSource: okio.Source delegate() -com.jaredrummler.android.colorpicker.R$id: int search_src_text -com.google.android.material.R$id: int center -androidx.loader.R$attr: R$attr() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -androidx.appcompat.R$style: int Widget_AppCompat_DrawerArrowToggle -android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -androidx.appcompat.R$id: int custom -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isAsync -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -wangdaye.com.geometricweather.R$string: int status_bar_notification_info_overflow -cyanogenmod.hardware.CMHardwareManager: java.lang.String getSerialNumber() -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_to_on_mtrl_015 -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Headline -androidx.constraintlayout.widget.R$styleable: int KeyPosition_transitionEasing -james.adaptiveicon.R$dimen: int abc_edit_text_inset_bottom_material -okio.SegmentedByteString: okio.ByteString hmacSha256(okio.ByteString) -com.google.android.material.R$color: int abc_background_cache_hint_selector_material_dark -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -wangdaye.com.geometricweather.R$xml: int perference_notification_color -com.google.android.material.R$dimen -com.turingtechnologies.materialscrollbar.R$id: int action_menu_presenter -com.jaredrummler.android.colorpicker.R$style: int AlertDialog_AppCompat_Light -androidx.appcompat.R$id: int search_mag_icon -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Bridge -androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_layout -android.didikee.donate.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onMenuItemSelected(int,android.view.MenuItem) -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: io.reactivex.Observer observer -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_track_mtrl_alpha -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.concurrent.atomic.AtomicReference upstream -com.google.android.material.R$styleable: int MenuItem_android_id -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void dispose() -james.adaptiveicon.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality airQuality -androidx.loader.R$drawable: int notify_panel_notification_icon_bg -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -android.didikee.donate.R$styleable: int MenuItem_actionViewClass -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getWindChillTemperature() -androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy -androidx.fragment.R$dimen: int notification_top_pad_large_text -android.didikee.donate.R$color: int background_floating_material_dark -androidx.activity.R$dimen -androidx.appcompat.widget.Toolbar: void setSubtitleTextColor(int) -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type LEFT -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int activeCount -androidx.preference.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.ChineseCityEntity) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void setCancellable(io.reactivex.functions.Cancellable) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarStyle -androidx.preference.R$styleable: int PreferenceTheme_switchPreferenceStyle -wangdaye.com.geometricweather.R$attr: int enableCopying -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long count -com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindowBackgroundState_state_above_anchor -com.amap.api.location.CoordinateConverter: android.content.Context b -com.google.android.material.appbar.MaterialToolbar -androidx.loader.R$id: int action_container -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getIcePrecipitation() -com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar -com.google.android.material.progressindicator.ProgressIndicator: void setInverse(boolean) -retrofit2.OkHttpCall: okhttp3.Call createRawCall() -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.Observer downstream -androidx.appcompat.widget.Toolbar: int getContentInsetStart() -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathEnd() -com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context,android.util.AttributeSet) -okhttp3.internal.http2.Http2Connection$2: Http2Connection$2(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,long) -android.didikee.donate.R$attr: int submitBackground -okhttp3.Cache$1: void trackConditionalCacheHit() -wangdaye.com.geometricweather.R$styleable: int ActionBar_progressBarStyle -com.xw.repo.bubbleseekbar.R$attr: int alertDialogButtonGroupStyle -cyanogenmod.app.CustomTile$RemoteExpandedStyle -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit valueOf(java.lang.String) -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property AlertId -com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_light -com.baidu.location.e.l$b: int d(com.baidu.location.e.l$b) -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_2_00 -wangdaye.com.geometricweather.R$string: int abc_menu_function_shortcut_label -androidx.hilt.work.R$id: int accessibility_custom_action_24 -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackActiveTintList() -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemBackground(android.graphics.drawable.Drawable) -cyanogenmod.providers.DataUsageContract: java.lang.String _ID -okhttp3.Cache: okhttp3.internal.cache.InternalCache internalCache -com.turingtechnologies.materialscrollbar.R$attr: int spinBars -cyanogenmod.providers.CMSettings$Secure: java.lang.String[] LEGACY_SECURE_SETTINGS -androidx.drawerlayout.R$string: int status_bar_notification_info_overflow -com.jaredrummler.android.colorpicker.R$id: int list_item -com.google.android.gms.internal.location.zzbc: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int MotionHelper_onHide -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_logo -retrofit2.adapter.rxjava2.CallEnqueueObservable: CallEnqueueObservable(retrofit2.Call) -cyanogenmod.profiles.BrightnessSettings: cyanogenmod.profiles.BrightnessSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -androidx.lifecycle.SavedStateHandle: SavedStateHandle(java.util.Map) -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_arrowSize -com.bumptech.glide.integration.okhttp.R$layout -wangdaye.com.geometricweather.R$id: int weather_icon -com.amap.api.fence.GeoFenceManagerBase: void addPolygonGeoFence(java.util.List,java.lang.String) -cyanogenmod.hardware.ICMHardwareService$Stub -com.amap.api.location.AMapLocationClient: void setLocationOption(com.amap.api.location.AMapLocationClientOption) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: java.lang.String Unit -com.google.android.material.R$styleable: int TabLayout_tabIndicatorHeight -com.baidu.location.e.h$c: com.baidu.location.e.h$c[] values() -androidx.constraintlayout.widget.R$attr: int titleMarginEnd -com.google.android.material.R$attr: int flow_firstHorizontalStyle -com.google.android.material.textfield.TextInputLayout: android.widget.TextView getSuffixTextView() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_tooltipFrameBackground -wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean hasKey(java.lang.Object) -com.google.android.material.R$attr: int showMotionSpec -androidx.appcompat.R$dimen -com.bumptech.glide.R$drawable: int notification_bg_low_normal -com.amap.api.location.AMapLocationClient: com.amap.api.location.LocationManagerBase a(android.content.Context,android.content.Intent) -io.reactivex.Observable: io.reactivex.Observable sample(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setLogo(java.lang.String) -androidx.preference.R$attr: int spinnerStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -okhttp3.internal.http2.Http2Connection: long access$208(okhttp3.internal.http2.Http2Connection) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_checkboxStyle -com.amap.api.location.AMapLocation: void setRoad(java.lang.String) -retrofit2.HttpServiceMethod: retrofit2.Converter createResponseConverter(retrofit2.Retrofit,java.lang.reflect.Method,java.lang.reflect.Type) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: ICMHardwareService$Stub$Proxy(android.os.IBinder) -androidx.appcompat.R$styleable: int[] GradientColor -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: double Value -wangdaye.com.geometricweather.R$id: int container_main_footer_editButton -com.amap.api.location.APSService -com.google.android.material.textfield.TextInputLayout: void setPrefixTextAppearance(int) -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundTintList(android.content.res.ColorStateList) -io.reactivex.exceptions.CompositeException: java.lang.Throwable getRootCause(java.lang.Throwable) -com.google.gson.stream.JsonReader: int NUMBER_CHAR_SIGN -android.didikee.donate.R$layout: int abc_screen_simple -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moon -com.google.android.material.floatingactionbutton.FloatingActionButton: void setScaleY(float) -androidx.activity.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DewPoint -com.amap.api.location.AMapLocation: double getLongitude() -androidx.viewpager2.R$id: int tag_accessibility_heading -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.WeatherEntity,long) -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_LOCATION_PERMISSION -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$styleable: int Slider_android_enabled -cyanogenmod.weather.CMWeatherManager: java.util.Set mProviderChangedListeners -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: java.util.Date StartDateTime -com.google.android.material.R$attr: int itemTextAppearanceInactive -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void updateVisibility() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabText -androidx.constraintlayout.widget.R$styleable: int Layout_constraint_referenced_ids -james.adaptiveicon.AdaptiveIconView -com.bumptech.glide.integration.okhttp.R$id: int notification_background -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setFeelsLike(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean) -androidx.constraintlayout.widget.R$id: int add -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconTint -androidx.fragment.R$id: int line1 -com.google.android.material.R$styleable: int[] ActionBarLayout -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$styleable: int[] View -com.google.android.material.R$attr: int actionTextColorAlpha -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitationProbability -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean active -com.jaredrummler.android.colorpicker.R$attr: int showTitle -androidx.cardview.R$styleable: int CardView_contentPaddingRight -retrofit2.Callback -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_inverse_material_dark -james.adaptiveicon.R$drawable: int abc_textfield_search_material -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator USE_EDGE_SERVICE_FOR_GESTURES_VALIDATOR -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.disposables.CompositeDisposable observers -com.amap.api.fence.GeoFence: com.amap.api.location.DPoint n -androidx.constraintlayout.widget.R$id: int layout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean getNames() -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_title -com.turingtechnologies.materialscrollbar.R$attr: int collapseContentDescription -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX wind -androidx.appcompat.widget.Toolbar: void setTitleMarginStart(int) -androidx.vectordrawable.R$id: int accessibility_custom_action_22 -android.didikee.donate.R$dimen: int abc_floating_window_z -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.functions.Action onFinally -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_textAllCaps -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotationX -wangdaye.com.geometricweather.R$string: int settings_title_card_order -androidx.constraintlayout.widget.R$drawable: int abc_textfield_default_mtrl_alpha -com.google.android.material.R$styleable: int[] PropertySet -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider mExternalViewProvider -okhttp3.OkHttpClient: int readTimeout -io.reactivex.Observable: io.reactivex.Observable mergeArrayDelayError(int,int,io.reactivex.ObservableSource[]) -cyanogenmod.weather.CMWeatherManager$2: CMWeatherManager$2(cyanogenmod.weather.CMWeatherManager) -com.jaredrummler.android.colorpicker.R$attr: int closeIcon -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowNoTitle -androidx.preference.R$dimen: int abc_button_padding_horizontal_material -androidx.appcompat.R$dimen: int abc_select_dialog_padding_start_material -com.google.android.material.R$attr: int progressBarPadding -com.baidu.location.e.h$c: com.baidu.location.e.h$c d -com.google.android.material.R$styleable: int[] MaterialTextView -com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar_Colored -wangdaye.com.geometricweather.location.utils.LocationException: LocationException(int,java.lang.String) -com.google.android.material.R$styleable: int Chip_chipBackgroundColor +androidx.constraintlayout.widget.R$styleable: int View_android_theme +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_weight +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void dispose() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +androidx.viewpager2.R$attr: int fastScrollVerticalTrackDrawable +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_width +james.adaptiveicon.R$style: int Widget_AppCompat_ListView_Menu +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +androidx.appcompat.R$dimen: int abc_action_bar_overflow_padding_end_material +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.lang.Throwable error +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorHeight +cyanogenmod.app.Profile: void setSecondaryUuids(java.util.List) +com.amap.api.location.AMapLocationClientOption: boolean isOffset() +wangdaye.com.geometricweather.R$id: int widget_day_week +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String ObstructionsToVisibility +wangdaye.com.geometricweather.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex yesterday +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: java.lang.String Unit +com.turingtechnologies.materialscrollbar.R$attr: int autoCompleteTextViewStyle +okhttp3.internal.http2.Hpack$Reader +james.adaptiveicon.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +wangdaye.com.geometricweather.R$id: int item_card_display_deleteBtn +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_inverse_material_dark +com.jaredrummler.android.colorpicker.R$id: int search_plate +androidx.preference.R$color: int button_material_light +com.google.android.material.R$attr: int hoveredFocusedTranslationZ +com.google.android.material.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.R$styleable: int[] StateSet +com.google.android.material.imageview.ShapeableImageView +wangdaye.com.geometricweather.R$string: int settings_category_basic +com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_Tooltip +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index androidx.preference.R$attr: int actionOverflowMenuStyle -androidx.preference.R$color: int abc_tint_spinner -cyanogenmod.externalviews.ExternalView$7: cyanogenmod.externalviews.ExternalView this$0 -androidx.appcompat.R$styleable: int SearchView_suggestionRowLayout -wangdaye.com.geometricweather.R$style: int Platform_V25_AppCompat_Light -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation: java.lang.Float cumul24H -com.google.android.material.R$dimen: int mtrl_calendar_header_toggle_margin_top -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectionSpecs(java.util.List) -com.bumptech.glide.R$id: int line1 -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$attr: int tintMode -com.turingtechnologies.materialscrollbar.R$id: int search_bar -cyanogenmod.themes.ThemeChangeRequest$1: java.lang.Object[] newArray(int) -androidx.appcompat.resources.R$drawable: int notification_template_icon_bg -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedHeightMinor -wangdaye.com.geometricweather.R$color: int mtrl_card_view_ripple -com.google.android.material.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -wangdaye.com.geometricweather.R$id: int icon_only -androidx.activity.R$layout: int notification_action -okio.Okio$2: okio.Timeout timeout() -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_grey -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean getFeelsLike() -okhttp3.internal.http2.Http2Reader$ContinuationSource: void readContinuationHeader() -cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_LAUNCH -okhttp3.internal.http2.Header: int hpackSize -wangdaye.com.geometricweather.R$string: int content_desc_powered_by -com.google.android.material.R$styleable: int ActionMode_subtitleTextStyle -wangdaye.com.geometricweather.R$styleable: int[] PreferenceGroup -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconTintMode -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LIVE_LOCK_SCREEN_THUMBNAIL -cyanogenmod.hardware.CMHardwareManager: boolean unRegisterThermalListener(cyanogenmod.hardware.ThermalListenerCallback) -android.didikee.donate.R$styleable: int ViewBackgroundHelper_backgroundTint -androidx.hilt.R$attr: R$attr() -okio.Buffer: okio.BufferedSink writeUtf8(java.lang.String,int,int) -wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_vertical -com.turingtechnologies.materialscrollbar.R$styleable: int[] Snackbar -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.UV uv -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSo2(java.lang.Float) -cyanogenmod.app.IProfileManager$Stub$Proxy: void updateProfile(cyanogenmod.app.Profile) -com.baidu.location.f: f() -androidx.hilt.R$id: int accessibility_custom_action_18 -androidx.activity.R$dimen: int notification_small_icon_size_as_large -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_48dp -com.google.android.material.R$color: int mtrl_tabs_legacy_text_color_selector -okio.SegmentedByteString: void write(okio.Buffer) -androidx.appcompat.R$string: int abc_toolbar_collapse_description -com.google.android.material.R$dimen: int highlight_alpha_material_dark -james.adaptiveicon.R$styleable: int[] AppCompatSeekBar -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_body_1_material -androidx.appcompat.R$attr: int colorControlHighlight -com.google.android.material.R$styleable: int AppCompatTheme_panelBackground -androidx.vectordrawable.animated.R$id: int tag_unhandled_key_listeners -androidx.loader.content.Loader: void registerOnLoadCanceledListener(androidx.loader.content.Loader$OnLoadCanceledListener) -okhttp3.ConnectionSpec: boolean supportsTlsExtensions() -androidx.appcompat.widget.AppCompatButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$attr: int layout_constraintTop_toBottomOf -okhttp3.internal.publicsuffix.PublicSuffixDatabase: void readTheListUninterruptibly() -cyanogenmod.weather.WeatherLocation: WeatherLocation(android.os.Parcel) -androidx.appcompat.R$color: int secondary_text_default_material_light -com.google.android.material.R$color: int material_slider_inactive_tick_marks_color -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.R$string: int feedback_about_geocoder -wangdaye.com.geometricweather.R$string: int wet_bulb_temperature -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataTitle -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress -com.google.android.material.R$dimen: int material_clock_period_toggle_height -okhttp3.internal.http2.Http2Writer: void writeMedium(okio.BufferedSink,int) -androidx.recyclerview.R$id: int tag_accessibility_pane_title -androidx.appcompat.R$layout: int abc_tooltip -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.util.List _queryWeatherEntity_HourlyEntityList(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm10 -com.google.android.material.R$attr: int behavior_autoShrink -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean done -cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder mService -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial() -okio.BufferedSink: void flush() -okio.Buffer: java.lang.String readString(java.nio.charset.Charset) -wangdaye.com.geometricweather.R$attr: int tabIconTint -wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationY -io.reactivex.internal.subscriptions.EmptySubscription: void cancel() -okhttp3.internal.ws.RealWebSocket$Streams: okio.BufferedSink sink -retrofit2.Response: okhttp3.Response rawResponse -com.google.android.material.R$color: int design_dark_default_color_primary -com.google.android.material.R$styleable: int KeyAttribute_android_scaleX -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_BottomSheetDialog -androidx.preference.R$attr: int alphabeticModifiers -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: CaiYunMainlyResult$IndicesBeanX() -androidx.preference.R$dimen: int notification_subtext_size -com.turingtechnologies.materialscrollbar.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalGap -androidx.preference.R$styleable: int RecyclerView_stackFromEnd -android.didikee.donate.R$style: int Widget_AppCompat_ListView_Menu -okhttp3.Headers$Builder: okhttp3.Headers$Builder addLenient(java.lang.String,java.lang.String) -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback -cyanogenmod.weatherservice.ServiceRequest: void reject(int) -org.greenrobot.greendao.AbstractDao: void attachEntity(java.lang.Object) -io.reactivex.internal.subscriptions.SubscriptionHelper: void reportMoreProduced(long) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayGammaCalibration(int,int[]) -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_disabled_material_light -com.github.rahatarmanahmed.cpv.CircularProgressView: java.util.List listeners -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int LIGHT_SNOW_SHOWERS -wangdaye.com.geometricweather.R$attr: int fontFamily -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: ObservableSampleTimed$SampleTimedNoLast(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.hilt.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setSunRiseSet(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean) -androidx.constraintlayout.helper.widget.Layer: void setScaleY(float) -com.google.android.material.internal.FlowLayout -wangdaye.com.geometricweather.R$id: int item_about_header_appIcon -androidx.loader.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$styleable: int Transform_android_rotation -androidx.preference.R$id: int icon -com.autonavi.aps.amapapi.model.AMapLocationServer: void a(long) -com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_android_alpha -androidx.cardview.widget.CardView -wangdaye.com.geometricweather.R$id: int checked -androidx.fragment.app.BackStackState: android.os.Parcelable$Creator CREATOR -okhttp3.OkHttpClient: okhttp3.internal.cache.InternalCache internalCache -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit KM -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.internal.operators.observable.ObservableRefCount parent -wangdaye.com.geometricweather.R$id: int activity_about_toolbar -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleContentDescription -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial Imperial -androidx.preference.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -android.didikee.donate.R$style: int Widget_AppCompat_SearchView_ActionBar -com.xw.repo.bubbleseekbar.R$drawable: int abc_vector_test -com.baidu.location.e.l$b: com.baidu.location.e.l$b c -wangdaye.com.geometricweather.R$style: int Theme_Design_Light_BottomSheetDialog -androidx.preference.R$styleable: int MenuGroup_android_enabled -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_RadioButton -com.jaredrummler.android.colorpicker.R$attr: int showSeekBarValue -retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type lowerBound -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -wangdaye.com.geometricweather.R$color: int lightPrimary_4 -wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundDialog -wangdaye.com.geometricweather.R$array: int pollen_unit_values -com.baidu.location.e.l$b: java.lang.String g -com.turingtechnologies.materialscrollbar.Indicator: void setTextColor(int) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_toolbarStyle -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String power -com.google.android.material.chip.ChipGroup: void setOnCheckedChangeListener(com.google.android.material.chip.ChipGroup$OnCheckedChangeListener) -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_elevation -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onComplete() -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_removeUpdates -wangdaye.com.geometricweather.R$attr: int cpv_animSyncDuration -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: IKeyguardExternalViewCallbacks$Stub$Proxy(android.os.IBinder) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView_DropDown -wangdaye.com.geometricweather.R$id: int mtrl_card_checked_layer_id -com.bumptech.glide.integration.okhttp.R$id: int right -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_getCurrentHotwordPackageName -com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPickerView -androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -com.xw.repo.bubbleseekbar.R$drawable: int abc_switch_thumb_material -androidx.drawerlayout.R$attr: int fontVariationSettings -okio.InflaterSource: InflaterSource(okio.BufferedSource,java.util.zip.Inflater) -cyanogenmod.app.LiveLockScreenManager: void setLiveLockScreenEnabled(boolean) -wangdaye.com.geometricweather.R$color: int material_deep_teal_500 -okhttp3.OkHttpClient: int writeTimeout -okhttp3.internal.http.HttpHeaders: long contentLength(okhttp3.Headers) -james.adaptiveicon.R$attr: int spinnerStyle -androidx.appcompat.R$styleable: int SearchView_android_imeOptions -com.google.gson.stream.JsonScope: int NONEMPTY_ARRAY -androidx.fragment.R$anim: int fragment_open_exit -android.didikee.donate.R$attr: int editTextBackground -james.adaptiveicon.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void drain() -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertInTxArray -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display3 -androidx.vectordrawable.animated.R$id: int right_icon -com.google.android.gms.common.stats.WakeLockEvent: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$styleable: int OnSwipe_dragDirection -okhttp3.internal.http2.Http2Connection: boolean access$300(okhttp3.internal.http2.Http2Connection) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: double Value -com.xw.repo.bubbleseekbar.R$string: int abc_capital_off -com.jaredrummler.android.colorpicker.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$string: int content_desc_search_filter_off -androidx.loader.R$layout: R$layout() -com.google.android.material.R$attr: int tabPaddingEnd -androidx.preference.R$style: int Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$string: int settings_title_service_provider -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder followRedirects(boolean) -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge -wangdaye.com.geometricweather.R$id: int container_main_pollen_indicator -com.turingtechnologies.materialscrollbar.R$attr: int tabBackground -com.jaredrummler.android.colorpicker.R$id: int textSpacerNoButtons -com.google.android.material.R$drawable: int abc_list_longpressed_holo -okhttp3.Response: boolean isSuccessful() -james.adaptiveicon.R$styleable: int Toolbar_logo -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Button -android.didikee.donate.R$layout: R$layout() -com.google.android.material.button.MaterialButtonToggleGroup: int getFirstVisibleChildIndex() -com.bumptech.glide.MemoryCategory: float multiplier -wangdaye.com.geometricweather.R$dimen: int item_touch_helper_swipe_escape_max_velocity -okio.Segment: int pos -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: float getDensity(float) -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarStyle -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionBarLayout -cyanogenmod.app.CustomTile: java.lang.String access$302(cyanogenmod.app.CustomTile,java.lang.String) -androidx.appcompat.widget.SwitchCompat: void setSwitchPadding(int) -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Prefix -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onNext(java.lang.Object) -androidx.constraintlayout.widget.R$attr: int flow_firstHorizontalStyle -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginEnd -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Large -androidx.appcompat.R$attr: int textAppearanceSearchResultTitle -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias -io.reactivex.Observable: io.reactivex.Observable timer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -cyanogenmod.providers.CMSettings$System: java.lang.String[] LEGACY_SYSTEM_SETTINGS -androidx.appcompat.widget.ActivityChooserView: void setExpandActivityOverflowButtonContentDescription(int) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableEnd -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_dropDownWidth -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX aqi -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String ShortPhrase -okhttp3.HttpUrl$Builder: int parsePort(java.lang.String,int,int) -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.functions.Predicate predicate -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver -com.turingtechnologies.materialscrollbar.R$attr: int selectableItemBackground -com.google.android.material.R$attr: int endIconDrawable -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index no2 -wangdaye.com.geometricweather.db.entities.LocationEntity: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource weatherSource -okhttp3.internal.http2.Http2Connection: void start() -cyanogenmod.app.LiveLockScreenInfo: int priority -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceTheme -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorAccent -io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean delayError -retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler parseParameterAnnotation(int,java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense -androidx.lifecycle.SavedStateHandle: java.util.Map mLiveDatas -com.bumptech.glide.R$id: int action_image -com.google.android.material.R$styleable: int KeyTrigger_motionTarget -okhttp3.FormBody -com.google.android.material.R$styleable: int Motion_transitionEasing -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul12H -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: void onWeatherServiceProviderChanged(java.lang.String) -androidx.appcompat.R$attr: int backgroundStacked -androidx.hilt.R$dimen: int notification_small_icon_background_padding -androidx.lifecycle.LifecycleService: void onCreate() -com.google.android.material.slider.Slider: float getValueFrom() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours Past24Hours -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type getRawType() -wangdaye.com.geometricweather.R$styleable: int ListPreference_entries -okhttp3.internal.ws.WebSocketReader: void readHeader() -wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_pressed_alpha -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Light -androidx.loader.R$id: int action_image -com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context) -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onError(java.lang.Throwable) -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -android.didikee.donate.R$styleable: int Toolbar_titleMarginEnd -cyanogenmod.content.Intent: java.lang.String ACTION_OPEN_LIVE_LOCKSCREEN_SETTINGS -com.google.android.gms.location.zzbe: android.os.Parcelable$Creator CREATOR -androidx.preference.R$attr: int dialogCornerRadius -james.adaptiveicon.R$styleable: int AppCompatTheme_actionDropDownStyle -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,java.io.File) -wangdaye.com.geometricweather.R$string: int action_preview -james.adaptiveicon.R$styleable: int[] AppCompatImageView -androidx.preference.R$style: int Base_Widget_AppCompat_ListMenuView -androidx.constraintlayout.widget.R$dimen: int tooltip_precise_anchor_extra_offset -com.turingtechnologies.materialscrollbar.R$styleable: int[] LinearLayoutCompat -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.ObservableSource source -com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_tick_mark_material -com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_14 -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource REMOTE -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX) -wangdaye.com.geometricweather.R$dimen: int abc_floating_window_z -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -androidx.hilt.work.R$dimen: int notification_content_margin_start -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_RINGTONE -androidx.coordinatorlayout.R$id: int forever -androidx.constraintlayout.widget.R$color: int dim_foreground_material_light -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_6 -retrofit2.Converter$Factory -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupMenu_Overflow -okhttp3.Cookie$Builder -androidx.preference.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -retrofit2.converter.gson.GsonConverterFactory: GsonConverterFactory(com.google.gson.Gson) -com.google.android.material.R$style: int CardView -retrofit2.Utils: java.lang.String typeToString(java.lang.reflect.Type) -com.google.android.material.bottomnavigation.BottomNavigationView: void setElevation(float) -wangdaye.com.geometricweather.R$styleable: int Preference_android_key -com.google.android.material.R$styleable: int Layout_android_layout_marginTop -com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemTextColor() -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowDx -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: AccuDailyResult$DailyForecasts$Night$LocalSource() -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int prefetch -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animAutostart -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: java.lang.String Unit -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -com.google.android.material.R$attr: int trackTint -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder addInterceptor(okhttp3.Interceptor) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierMargin -wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_title_material -com.google.android.material.slider.Slider: void setValueFrom(float) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int[] CoordinatorLayout_Layout -cyanogenmod.app.ProfileManager: void removeProfile(cyanogenmod.app.Profile) -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_removeNotificationGroup -okhttp3.internal.http2.Http2Codec: java.lang.String PROXY_CONNECTION -james.adaptiveicon.R$attr: int singleChoiceItemLayout -com.bumptech.glide.R$styleable: int FontFamilyFont_android_ttcIndex -com.google.android.material.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onComplete() -androidx.appcompat.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerX -androidx.constraintlayout.widget.R$styleable: int KeyPosition_framePosition -okio.ForwardingSink -okhttp3.internal.Util: java.util.Comparator NATURAL_ORDER -com.amap.api.location.AMapLocationClientOption: boolean n -com.google.android.material.R$dimen: int material_clock_period_toggle_margin_left -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTemperature(int) -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: Http2Connection$ReaderRunnable$1(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[],okhttp3.internal.http2.Http2Stream) -wangdaye.com.geometricweather.R$drawable: int ic_alert -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetBottom -cyanogenmod.app.CMStatusBarManager: void publishTile(java.lang.String,int,cyanogenmod.app.CustomTile) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_maxWidth -io.reactivex.internal.observers.ForEachWhileObserver: boolean isDisposed() -james.adaptiveicon.R$styleable: int TextAppearance_android_shadowDy -androidx.constraintlayout.motion.widget.MotionLayout: void setTransition(androidx.constraintlayout.motion.widget.MotionScene$Transition) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_backgroundStacked -okio.RealBufferedSink: okio.BufferedSink writeByte(int) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HEAVY_SNOW -com.google.android.material.R$layout: int test_toolbar -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontStyle -com.github.rahatarmanahmed.cpv.CircularProgressView: float startAngle -com.google.android.material.R$styleable: int MotionLayout_layoutDescription -androidx.appcompat.R$style: int Base_Widget_AppCompat_SearchView -androidx.constraintlayout.widget.R$id: int dragDown -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: boolean hasError() -cyanogenmod.providers.DataUsageContract: java.lang.String LABEL -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer ragweedIndex -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentListStyle -wangdaye.com.geometricweather.R$id: int autoCompleteToEnd -com.amap.api.fence.DistrictItem: java.lang.String getCitycode() -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider getInstance(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: AccuCurrentResult$WindGust$Speed$Metric() -androidx.dynamicanimation.R$id: int action_text -androidx.constraintlayout.widget.R$styleable: int Toolbar_logo -wangdaye.com.geometricweather.R$attr: int tabPadding -okhttp3.internal.http2.Http2Stream: int id -androidx.constraintlayout.widget.R$attr: int ttcIndex -com.jaredrummler.android.colorpicker.R$attr: int checkBoxPreferenceStyle -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: long serialVersionUID -com.google.android.material.R$style: int Widget_AppCompat_Light_ListPopupWindow -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.app.LiveLockScreenInfo: void writeToParcel(android.os.Parcel,int) -android.didikee.donate.R$styleable: int SearchView_android_imeOptions -androidx.work.R$styleable: int GradientColor_android_gradientRadius -androidx.preference.R$color: int dim_foreground_material_dark -androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getOverflowIcon() -androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle -com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetEnd -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_CheckBox -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -retrofit2.RequestBuilder: okhttp3.RequestBody body -james.adaptiveicon.R$dimen: int abc_dialog_list_padding_top_no_title -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1(kotlin.coroutines.Continuation,java.lang.Exception) -io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicLong missedProduced -androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context,android.util.AttributeSet) -cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast() -wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_checked_black -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button -com.google.gson.stream.JsonReader: int PEEKED_SINGLE_QUOTED -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderCerts -james.adaptiveicon.R$styleable: int ActionBar_indeterminateProgressStyle -androidx.appcompat.widget.Toolbar: int getCurrentContentInsetRight() -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State mState -android.didikee.donate.R$styleable: int CompoundButton_buttonCompat -com.google.android.material.R$styleable: int KeyAttribute_android_transformPivotX -androidx.lifecycle.extensions.R$anim: R$anim() -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: float getDensity(float) -com.google.android.material.R$color: R$color() -androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context,android.util.AttributeSet) -androidx.preference.R$drawable: int abc_btn_check_to_on_mtrl_015 -com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context,android.util.AttributeSet) -com.bumptech.glide.R$styleable: int GradientColor_android_tileMode -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance -androidx.viewpager2.R$id: int notification_background -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius -wangdaye.com.geometricweather.R$styleable: int Motion_transitionEasing -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_DropDown -wangdaye.com.geometricweather.R$styleable: int Layout_barrierDirection -androidx.appcompat.R$drawable: int abc_ic_voice_search_api_material -wangdaye.com.geometricweather.R$id: int transition_position -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -com.bumptech.glide.integration.okhttp.R$id: int text2 -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_SYSTEM -james.adaptiveicon.R$attr: int customNavigationLayout -cyanogenmod.externalviews.ExternalViewProperties -androidx.coordinatorlayout.R$styleable: int[] ColorStateListItem -cyanogenmod.externalviews.ExternalView$2: android.graphics.Rect val$clipRect -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -androidx.appcompat.R$styleable: int FontFamily_fontProviderFetchTimeout -com.google.gson.stream.JsonScope: JsonScope() -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder name(java.lang.String) -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton -com.google.android.material.internal.NavigationMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() -cyanogenmod.app.LiveLockScreenManager: boolean show(int,cyanogenmod.app.LiveLockScreenInfo) -wangdaye.com.geometricweather.R$id: int test_checkbox_app_button_tint -cyanogenmod.app.suggest.IAppSuggestManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.activity.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: AccuMinuteResult$SummaryBean() -james.adaptiveicon.R$id: int select_dialog_listview -wangdaye.com.geometricweather.R$color: int mtrl_btn_text_color_disabled -androidx.constraintlayout.widget.R$dimen: int notification_action_icon_size -androidx.work.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$animator: int weather_clear_night_1 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorPrimary -com.xw.repo.bubbleseekbar.R$attr: int actionModeWebSearchDrawable -androidx.appcompat.widget.ActionMenuPresenter$SavedState -okhttp3.internal.http2.Http2Connection: void writePing() -com.google.gson.LongSerializationPolicy: LongSerializationPolicy(java.lang.String,int,com.google.gson.LongSerializationPolicy$1) -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit valueOf(java.lang.String) -com.google.android.material.R$layout: int test_design_checkbox -androidx.preference.R$attr: int expandActivityOverflowButtonDrawable -androidx.swiperefreshlayout.R$styleable: int[] SwipeRefreshLayout -wangdaye.com.geometricweather.R$id: int ragweedIcon -androidx.preference.R$styleable: int[] AppCompatTextHelper -com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_Dialog -wangdaye.com.geometricweather.R$string: int key_location_service -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_disableDependentsState -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_corner_radius_small -james.adaptiveicon.R$color: R$color() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: void run() -wangdaye.com.geometricweather.R$id: int toolbar -androidx.constraintlayout.widget.R$id: int SHOW_ALL -com.turingtechnologies.materialscrollbar.R$dimen: int hint_pressed_alpha_material_light -wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_previous_black_24dp -com.google.android.material.R$styleable: int AppCompatTheme_actionBarSplitStyle -io.reactivex.Observable: io.reactivex.Observable serialize() -retrofit2.Response: retrofit2.Response success(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupWindow -cyanogenmod.externalviews.ExternalViewProviderService$Provider -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindLevel(java.lang.String) -okhttp3.internal.http1.Http1Codec: int STATE_CLOSED -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitation -io.reactivex.Observable: io.reactivex.Single toList() -com.turingtechnologies.materialscrollbar.R$color: int design_error -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onBouncerShowing -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric -com.google.android.material.slider.Slider: void setTickInactiveTintList(android.content.res.ColorStateList) -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionMode -wangdaye.com.geometricweather.R$dimen: int title_text_size -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult -wangdaye.com.geometricweather.R$attr: int cpv_alphaChannelText -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: long serialVersionUID -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Header$Listener headersListener -com.google.android.gms.base.R$id: int icon_only -com.turingtechnologies.materialscrollbar.R$attr: int showTitle -androidx.preference.R$styleable: int AppCompatTheme_windowActionBarOverlay -james.adaptiveicon.R$attr: int listMenuViewStyle -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: io.reactivex.Observer downstream -com.amap.api.location.AMapLocationQualityReport: boolean g -io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.CompletableObserver) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property No2 -retrofit2.ParameterHandler$RawPart: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: java.lang.String Localized -james.adaptiveicon.R$color: int dim_foreground_material_dark -wangdaye.com.geometricweather.R$id: int action_bar_root -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer bulletinCote -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onError(java.lang.Throwable) -com.google.android.material.R$attr: int textAppearanceBody2 -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.R$attr: int initialActivityCount -android.didikee.donate.R$color: int material_blue_grey_900 -androidx.lifecycle.LiveData: void onInactive() -androidx.coordinatorlayout.R$id: int tag_accessibility_heading -com.amap.api.location.AMapLocationQualityReport: java.lang.String getAdviseMessage() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setPubTime(java.lang.String) -okio.BufferedSink: long writeAll(okio.Source) -androidx.coordinatorlayout.R$drawable: int notification_bg_normal_pressed -androidx.preference.R$styleable: int ActionBar_height -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,java.util.concurrent.Callable) -okhttp3.internal.cache.DiskLruCache$Editor: okio.Sink newSink(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String headDescription -androidx.vectordrawable.animated.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setArcBackgroundColor(int) -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean tryOnError(java.lang.Throwable) -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.R$styleable: int[] MenuGroup -androidx.fragment.R$styleable: int FontFamilyFont_font -com.google.android.material.R$styleable: int FontFamilyFont_fontStyle -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderLayout -com.turingtechnologies.materialscrollbar.R$attr: int trackTintMode -io.reactivex.exceptions.OnErrorNotImplementedException -androidx.coordinatorlayout.R$dimen: int notification_big_circle_margin -androidx.constraintlayout.utils.widget.ImageFilterButton: void setOverlay(boolean) -wangdaye.com.geometricweather.R$dimen: int abc_button_padding_vertical_material -com.turingtechnologies.materialscrollbar.R$styleable: int[] ForegroundLinearLayout -cyanogenmod.hardware.ICMHardwareService$Stub: ICMHardwareService$Stub() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String parent -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customDimension -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_31 -io.reactivex.Observable: io.reactivex.Single elementAt(long,java.lang.Object) -com.baidu.location.e.h$c: com.baidu.location.e.h$c valueOf(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSo2Desc() -androidx.constraintlayout.widget.R$anim: int abc_slide_in_top -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_backgroundTint -androidx.fragment.R$style -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit[] values() -androidx.appcompat.widget.Toolbar -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Button -androidx.appcompat.R$styleable: int MenuItem_android_visible -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription this$0 -okhttp3.internal.http.RealResponseBody: okio.BufferedSource source() -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State calculateTargetState(androidx.lifecycle.LifecycleObserver) -com.google.android.material.R$styleable: int AppCompatTheme_checkboxStyle -com.google.android.material.R$style: int Widget_AppCompat_ButtonBar -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -wangdaye.com.geometricweather.R$drawable: int notif_temp_109 -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay -io.reactivex.Observable: io.reactivex.Observable buffer(java.util.concurrent.Callable) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$attr: int radioButtonStyle -androidx.core.R$dimen: int compat_button_inset_vertical_material -androidx.swiperefreshlayout.R$drawable -com.google.android.material.R$styleable: int CollapsingToolbarLayout_statusBarScrim -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_131 -androidx.hilt.R$dimen: int compat_notification_large_icon_max_height -androidx.drawerlayout.R$drawable: int notification_icon_background -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void cancel() -com.jaredrummler.android.colorpicker.R$attr: int cpv_sliderColor -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setLabelVisibilityMode(int) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_numericShortcut -com.google.android.material.R$attr: int layout_constraintStart_toStartOf -okhttp3.FormBody$Builder: okhttp3.FormBody build() -com.xw.repo.bubbleseekbar.R$dimen: int compat_button_padding_vertical_material -androidx.recyclerview.widget.LinearLayoutManager$SavedState -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_NavigationView -androidx.viewpager2.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -wangdaye.com.geometricweather.R$attr: int arrowShaftLength -wangdaye.com.geometricweather.R$drawable: int ic_temperature_fahrenheit -wangdaye.com.geometricweather.R$styleable: int Constraint_android_scaleX -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.functions.Function mapper -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm10Desc -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: void setValue(java.lang.String) -cyanogenmod.weather.RequestInfo$Builder: boolean isValidTempUnit(int) -cyanogenmod.alarmclock.ClockContract: ClockContract() -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -androidx.customview.R$id: int action_divider -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchTrackballEvent(android.view.MotionEvent) -cyanogenmod.externalviews.KeyguardExternalView$10: KeyguardExternalView$10(cyanogenmod.externalviews.KeyguardExternalView) -com.google.android.material.R$styleable: int AppCompatImageView_srcCompat -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour valueOf(java.lang.String) -androidx.constraintlayout.widget.R$color: int primary_text_disabled_material_light -androidx.preference.R$style: int Widget_AppCompat_ActionButton_CloseMode -androidx.constraintlayout.widget.R$attr: int layout_editor_absoluteY -android.didikee.donate.R$attr: int backgroundStacked -com.google.android.material.R$styleable: int TabLayout_tabPaddingTop -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty6H -androidx.preference.R$attr: int actionBarTabTextStyle -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_DropDownItem_Spinner -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: android.os.IBinder asBinder() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties -com.jaredrummler.android.colorpicker.R$layout: int abc_tooltip -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_min -androidx.lifecycle.ClassesInfoCache$MethodReference -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.R$id: int container_main_details_title -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -com.google.android.material.R$attr: int overlapAnchor -androidx.swiperefreshlayout.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.main.utils.MainPalette -androidx.constraintlayout.widget.R$attr: int listPopupWindowStyle -com.jaredrummler.android.colorpicker.R$color: int abc_tint_default -okio.Okio: Okio() -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int FUSED -com.jaredrummler.android.colorpicker.R$attr: int actionBarPopupTheme -android.didikee.donate.R$dimen: int abc_select_dialog_padding_start_material -com.xw.repo.bubbleseekbar.R$attr: int windowFixedWidthMajor -androidx.lifecycle.ServiceLifecycleDispatcher: android.os.Handler mHandler -com.jaredrummler.android.colorpicker.R$id: int action_mode_close_button -androidx.appcompat.R$dimen: int abc_dialog_min_width_major -com.jaredrummler.android.colorpicker.R$dimen: int compat_button_inset_vertical_material -androidx.activity.R$styleable: int FontFamilyFont_android_ttcIndex -com.bumptech.glide.integration.okhttp.R$id: int start -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_3 -androidx.viewpager2.R$id: int italic -okhttp3.CacheControl: boolean noTransform -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_hideMotionSpec -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -cyanogenmod.app.ProfileGroup: void validateOverrideUris(android.content.Context) -okhttp3.internal.platform.ConscryptPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_weight -com.turingtechnologies.materialscrollbar.R$attr: int tabIconTintMode -androidx.preference.R$styleable: int AppCompatTextView_autoSizeTextType -okhttp3.Response$Builder: okhttp3.Response$Builder request(okhttp3.Request) -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: long serialVersionUID -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -cyanogenmod.profiles.ConnectionSettings: int describeContents() -androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onCreate() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_keylines -androidx.cardview.R$attr: R$attr() -androidx.preference.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_base -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_explanation -okio.RealBufferedSource: void skip(long) -cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_FORWARD_LOOKUP -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours Past18Hours -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getDescription() -androidx.constraintlayout.widget.R$color: int primary_dark_material_light -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean disposed -com.jaredrummler.android.colorpicker.R$bool -android.didikee.donate.R$styleable: int SearchView_submitBackground -androidx.lifecycle.ReportFragment: androidx.lifecycle.ReportFragment get(android.app.Activity) -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_elevation -com.turingtechnologies.materialscrollbar.R$id: int item_touch_helper_previous_elevation -okhttp3.internal.connection.StreamAllocation: void release(okhttp3.internal.connection.RealConnection) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomSheet -okio.Okio$3: okio.Timeout timeout() -androidx.dynamicanimation.R$styleable: int[] ColorStateListItem -androidx.constraintlayout.widget.R$attr: int drawableTintMode -wangdaye.com.geometricweather.R$attr: int chipCornerRadius -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region Region -com.turingtechnologies.materialscrollbar.R$drawable: int design_snackbar_background -com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Wind getWind() -cyanogenmod.providers.CMSettings$System: float getFloat(android.content.ContentResolver,java.lang.String) -com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getCurrentDrawable() -com.google.android.material.R$styleable: int SearchView_suggestionRowLayout -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDataConnectionState -androidx.appcompat.widget.Toolbar: int getTitleMarginStart() -wangdaye.com.geometricweather.R$drawable: int notif_temp_48 -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconSize -androidx.loader.R$drawable -com.turingtechnologies.materialscrollbar.R$attr: int insetForeground -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: void endOfInput(java.io.IOException) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LAUNCHER -okhttp3.MultipartBody$Builder: okio.ByteString boundary -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: AccuCurrentResult$Ceiling$Imperial() -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_dither -com.google.android.material.R$styleable: int TextAppearance_android_typeface -com.jaredrummler.android.colorpicker.R$attr: int dialogIcon -okhttp3.internal.http2.Http2Stream: void setHeadersListener(okhttp3.internal.http2.Header$Listener) -wangdaye.com.geometricweather.R$styleable: int ArcProgress_text_color -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: long updateTime -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: void setValue(java.lang.Object) -okhttp3.internal.Util: void checkOffsetAndCount(long,long,long) -cyanogenmod.externalviews.ExternalView$2: int val$y -okhttp3.internal.http1.Http1Codec: boolean isClosed() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.lang.String pubTime -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListMenuView -okhttp3.internal.http2.Http2Connection$PingRunnable: int payload1 -android.didikee.donate.R$attr: int selectableItemBackgroundBorderless -com.google.android.material.R$attr: int actionOverflowButtonStyle -com.xw.repo.bubbleseekbar.R$color: int material_grey_850 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -androidx.constraintlayout.widget.Group -com.xw.repo.bubbleseekbar.R$anim: int abc_fade_out -wangdaye.com.geometricweather.R$id: int transparency_seekbar -androidx.preference.R$dimen: int abc_panel_menu_list_width -retrofit2.Utils: java.lang.Class getRawType(java.lang.reflect.Type) -com.google.android.material.R$id: int accessibility_custom_action_10 -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver -androidx.core.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.Date pubTime -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.lang.String Link -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeRealFeelShaderTemperature() -androidx.transition.R$styleable: int FontFamilyFont_fontStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_android_windowIsFloating -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean done -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar -okhttp3.HttpUrl: java.lang.String url -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WindChillTemperature -com.google.android.material.R$styleable: int RecyclerView_fastScrollEnabled -okhttp3.HttpUrl$Builder: java.util.List encodedPathSegments -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitation(java.lang.Float) -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean cancel(java.util.concurrent.atomic.AtomicReference) -cyanogenmod.profiles.AirplaneModeSettings$BooleanState: AirplaneModeSettings$BooleanState() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button -org.greenrobot.greendao.AbstractDao: java.util.List loadAllFromCursor(android.database.Cursor) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_minHeight -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.MinutelyEntity) -com.google.android.material.R$attr: int wavePeriod -androidx.appcompat.R$styleable: int AppCompatTheme_spinnerStyle -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Surface -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Menu -androidx.appcompat.R$dimen: int abc_action_bar_default_padding_end_material -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Slider -wangdaye.com.geometricweather.R$string: int feedback_delete_succeed -cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_SHOW_BRIGHTNESS_SLIDER -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List probabilityForecast -androidx.appcompat.R$dimen: int abc_button_padding_horizontal_material -com.bumptech.glide.R$styleable: int FontFamily_fontProviderCerts -cyanogenmod.app.Profile: java.util.Collection getStreamSettings() -com.google.android.material.R$styleable: int PopupWindow_android_popupAnimationStyle -wangdaye.com.geometricweather.R$interpolator: int mtrl_linear_out_slow_in -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: boolean val$clearPrevious -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeWidth(float) -androidx.preference.R$drawable: int abc_seekbar_track_material -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconSize -com.google.android.material.R$styleable: int[] OnClick -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setTopIconDrawable(android.graphics.drawable.Drawable) -androidx.hilt.R$anim: int fragment_fade_exit -androidx.appcompat.R$drawable: R$drawable() -androidx.constraintlayout.widget.R$color: int ripple_material_light -com.google.android.material.R$styleable: int FontFamilyFont_fontWeight -com.amap.api.location.AMapLocation: org.json.JSONObject toJson(int) -okhttp3.CacheControl$Builder: boolean noStore -com.google.android.material.R$styleable: int DrawerArrowToggle_arrowShaftLength -wangdaye.com.geometricweather.remoteviews.config.Hilt_MultiCityWidgetConfigActivity: Hilt_MultiCityWidgetConfigActivity() -com.google.android.material.R$id: R$id() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyleSmall -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf -androidx.preference.R$style: int Widget_AppCompat_RatingBar_Indicator -cyanogenmod.profiles.LockSettings: int getValue() -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type LEFT -wangdaye.com.geometricweather.R$id: int line1 -android.didikee.donate.R$drawable: int abc_scrubber_track_mtrl_alpha -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableLeft -com.jaredrummler.android.colorpicker.R$attr: int trackTint -androidx.appcompat.R$styleable: int GradientColor_android_endColor -okhttp3.internal.http2.Hpack$Writer -wangdaye.com.geometricweather.R$attr: int transitionPathRotate -wangdaye.com.geometricweather.R$string: int feedback_search_location -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_checkableBehavior -com.google.android.material.R$drawable: int ic_clock_black_24dp -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property DegreeDayTemperature -com.google.android.material.R$attr: int maxCharacterCount -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_percent -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.util.Date EndTime -cyanogenmod.profiles.AirplaneModeSettings: boolean isDirty() -okio.SegmentedByteString: java.lang.String toString() -cyanogenmod.providers.CMSettings$Secure: java.lang.String PROTECTED_COMPONENT_MANAGERS -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.ErrorCode errorCode -androidx.appcompat.R$layout: int abc_list_menu_item_checkbox -androidx.appcompat.widget.Toolbar: void setLogoDescription(java.lang.CharSequence) -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void cancelSources() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setEn_US(java.lang.String) -okhttp3.OkHttpClient$1: okhttp3.internal.connection.RealConnection get(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) -wangdaye.com.geometricweather.R$drawable: int material_cursor_drawable -wangdaye.com.geometricweather.R$styleable: int[] MaterialTextView -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Small -com.amap.api.fence.GeoFenceClient -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.Map buffers -wangdaye.com.geometricweather.R$attr: int buttonCompat -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.appcompat.widget.AppCompatCheckBox: android.content.res.ColorStateList getSupportBackgroundTintList() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf -com.jaredrummler.android.colorpicker.R$styleable: int[] View -com.amap.api.location.AMapLocationClientOption$1: AMapLocationClientOption$1() -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button -com.amap.api.fence.PoiItem: java.lang.String getTel() -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_menu_header_material -com.google.android.material.button.MaterialButton: int getInsetTop() -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void setDisposable(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$attr: int titleMargins -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginEnd -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_PrimarySurface -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.lang.Object leaveTransform(java.lang.Object) -io.reactivex.Observable: io.reactivex.Observable fromArray(java.lang.Object[]) -androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton -androidx.coordinatorlayout.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.R$attr: int linearSeamless -android.didikee.donate.R$id: int wrap_content -androidx.coordinatorlayout.R$layout: int notification_template_part_time -androidx.drawerlayout.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.common.basic.GeoDialog: GeoDialog() -wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogMessage -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarDivider -wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchAnchorId -androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_max -androidx.appcompat.R$attr: int font -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow1h -androidx.constraintlayout.widget.R$styleable: int AlertDialog_listItemLayout -androidx.preference.R$attr: int dialogPreferenceStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Title -com.google.android.material.R$dimen: int design_snackbar_padding_vertical_2lines -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customColorValue -android.didikee.donate.R$styleable: int AppCompatTheme_buttonStyleSmall -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig historyEntityDaoConfig -androidx.work.impl.diagnostics.DiagnosticsReceiver: DiagnosticsReceiver() -androidx.lifecycle.LifecycleService: androidx.lifecycle.Lifecycle getLifecycle() -wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_dark -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService -com.google.android.material.R$dimen: int compat_button_padding_vertical_material -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.functions.Function mapper -com.google.android.material.chip.Chip: void setChipIconVisible(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: AccuDailyResult$DailyForecasts$Night() -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_item_min_width -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_AutoCompleteTextView -com.amap.api.fence.GeoFence: long getExpiration() -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void subscribeNext() -io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Void call() -okhttp3.logging.LoggingEventListener$1 -androidx.appcompat.app.ToolbarActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: boolean IsDaylightSaving -androidx.work.R$dimen: int notification_media_narrow_margin -androidx.appcompat.R$attr: int preserveIconSpacing -androidx.constraintlayout.widget.R$attr: int queryHint -wangdaye.com.geometricweather.R$id: int mini -retrofit2.adapter.rxjava2.CallExecuteObservable: retrofit2.Call originalCall -okhttp3.internal.platform.JdkWithJettyBootPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorButtonNormal -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_FULL_COLOR_VALIDATOR -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_textLocale -okhttp3.RealCall: okio.Timeout timeout() -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setPostalCode(java.lang.String) -androidx.appcompat.R$dimen: int abc_text_size_caption_material -androidx.appcompat.R$attr: int thumbTextPadding -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Integer aqiIndex -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$integer: int hide_password_duration -com.google.android.material.R$style: int TextAppearance_AppCompat_Display2 -androidx.appcompat.R$dimen: int abc_text_size_display_4_material -androidx.vectordrawable.R$id: int accessibility_custom_action_5 -androidx.appcompat.widget.AppCompatSpinner: int getDropDownWidth() -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_26 -cyanogenmod.providers.CMSettings$Global: boolean putLong(android.content.ContentResolver,java.lang.String,long) -wangdaye.com.geometricweather.R$styleable: int Transform_android_scaleY -wangdaye.com.geometricweather.R$styleable: int[] CheckBoxPreference -androidx.lifecycle.FullLifecycleObserverAdapter$1 -okio.SegmentedByteString: java.lang.String hex() -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_phaseText -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchKeyEvent(android.view.KeyEvent) -android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_CheckBox -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator T9_SEARCH_INPUT_LOCALE_VALIDATOR -com.xw.repo.bubbleseekbar.R$attr: int ttcIndex -androidx.constraintlayout.widget.R$attr: int panelBackground -com.turingtechnologies.materialscrollbar.R$id: int tag_transition_group -com.turingtechnologies.materialscrollbar.R$styleable: int[] FloatingActionButton -androidx.appcompat.resources.R$attr: int alpha -okhttp3.OkHttpClient: okhttp3.WebSocket newWebSocket(okhttp3.Request,okhttp3.WebSocketListener) -wangdaye.com.geometricweather.R$styleable: int MaterialButton_rippleColor -androidx.constraintlayout.utils.widget.ImageFilterButton: void setCrossfade(float) -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -okhttp3.Headers: java.util.Map toMultimap() -cyanogenmod.providers.CMSettings$System$2 -androidx.preference.R$dimen: int abc_list_item_padding_horizontal_material -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemDrawable(int) -cyanogenmod.weather.CMWeatherManager: java.util.Set access$000(cyanogenmod.weather.CMWeatherManager) -cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder mService -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_viewInflaterClass -okhttp3.internal.http2.Http2Stream$FramingSink: boolean $assertionsDisabled -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean validate(org.reactivestreams.Subscription,org.reactivestreams.Subscription) -androidx.hilt.R$id: int tag_accessibility_actions -androidx.constraintlayout.widget.R$color: int abc_tint_switch_track -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: double Value -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property PublishTime -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: int UnitType -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotationY -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getSerialNumber -com.google.android.gms.base.R$attr: int imageAspectRatio -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircleRadius -com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_pressed -androidx.constraintlayout.widget.R$color: int androidx_core_secondary_text_default_material_light -com.google.android.material.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.R$layout: int abc_search_dropdown_item_icons_2line -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: boolean inMaybe -androidx.appcompat.view.menu.ExpandedMenuView: int getWindowAnimations() -com.jaredrummler.android.colorpicker.R$dimen: int notification_subtext_size -androidx.preference.R$attr: int commitIcon -androidx.lifecycle.ViewModel: boolean mCleared -com.google.android.material.tabs.TabLayout: void setInlineLabel(boolean) -androidx.appcompat.widget.AppCompatEditText: java.lang.CharSequence getText() -wangdaye.com.geometricweather.R$string: int tag_uv -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Menu -io.reactivex.exceptions.CompositeException: java.util.List getExceptions() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_transformPivotY -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_textLocale -com.jaredrummler.android.colorpicker.R$dimen: int cpv_dialog_preview_height -androidx.appcompat.widget.AppCompatCheckBox: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean isEmpty() -wangdaye.com.geometricweather.R$color: int design_fab_stroke_top_outer_color -com.google.android.material.R$styleable: int Slider_android_stepSize -com.xw.repo.bubbleseekbar.R$color: int background_material_light -james.adaptiveicon.R$styleable: int TextAppearance_android_typeface -wangdaye.com.geometricweather.R$id: int animateToEnd -cyanogenmod.weather.CMWeatherManager$2: cyanogenmod.weather.CMWeatherManager this$0 -wangdaye.com.geometricweather.R$drawable: int notif_temp_26 -wangdaye.com.geometricweather.R$attr: int fontVariationSettings -androidx.appcompat.R$attr: int listLayout -androidx.hilt.work.R$id: int title -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver -androidx.constraintlayout.widget.R$attr: int dropdownListPreferredItemHeight -cyanogenmod.app.Profile$TriggerState: Profile$TriggerState() -wangdaye.com.geometricweather.R$id: int easeIn -com.xw.repo.bubbleseekbar.R$styleable: int[] ListPopupWindow -android.didikee.donate.R$color: int switch_thumb_material_light -james.adaptiveicon.R$color: int button_material_dark -com.google.android.material.R$styleable: int Spinner_popupTheme -io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer) -cyanogenmod.profiles.StreamSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -cyanogenmod.providers.CMSettings$System: java.lang.String HOME_WAKE_SCREEN -androidx.recyclerview.R$drawable: int notification_bg_low -cyanogenmod.weather.WeatherInfo$DayForecast: double getHigh() -wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_xml -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: long serialVersionUID -com.google.android.gms.common.internal.ReflectedParcelable -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_small_material -com.xw.repo.bubbleseekbar.R$styleable: int View_android_theme -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_light -com.jaredrummler.android.colorpicker.R$anim: int abc_tooltip_enter -com.turingtechnologies.materialscrollbar.R$id: int start -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_checkable -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeRealFeelTemperature() -okhttp3.internal.Util: int indexOf(java.util.Comparator,java.lang.String[],java.lang.String) -com.google.android.material.R$layout: int mtrl_picker_header_fullscreen -androidx.fragment.R$attr: int fontProviderPackage -com.google.android.material.R$styleable: int[] Tooltip -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_elevation -okhttp3.Protocol: okhttp3.Protocol[] values() -okhttp3.internal.platform.OptionalMethod -cyanogenmod.externalviews.ExternalViewProviderService$Provider: int getWindowFlags() -cyanogenmod.profiles.ConnectionSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_Alert -androidx.constraintlayout.widget.R$attr: int displayOptions -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric Metric -james.adaptiveicon.R$styleable: int AppCompatTheme_windowNoTitle -com.google.android.material.internal.ParcelableSparseBooleanArray -com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage valueOf(java.lang.String) -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_icon_vertical_padding_material -okio.RealBufferedSource: long readHexadecimalUnsignedLong() -androidx.hilt.lifecycle.R$anim: int fragment_close_exit -com.google.android.material.R$styleable: int Chip_chipStrokeColor -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -okhttp3.internal.cache.DiskLruCache$Editor: DiskLruCache$Editor(okhttp3.internal.cache.DiskLruCache,okhttp3.internal.cache.DiskLruCache$Entry) -james.adaptiveicon.R$attr: int trackTint -cyanogenmod.library.R$id: int event -okio.Buffer: long size -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.viewpager2.R$id: int accessibility_custom_action_3 -androidx.work.Worker -com.amap.api.location.AMapLocation: java.lang.String getDescription() -androidx.constraintlayout.widget.R$id: int parent -androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_android_thumb -com.jaredrummler.android.colorpicker.R$color: int primary_material_dark -com.amap.api.location.AMapLocation: java.lang.String toStr() -androidx.appcompat.R$string: int abc_prepend_shortcut_label -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25 -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int INTERRUPTED -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.R$attr: int fragment -com.xw.repo.bubbleseekbar.R$integer: int status_bar_notification_info_maxnum -androidx.hilt.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setNumberString(java.lang.String) -androidx.customview.R$layout: R$layout() -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onError(java.lang.Throwable) -james.adaptiveicon.R$dimen: int abc_action_bar_elevation_material -com.google.android.material.R$id: int action_divider -android.didikee.donate.R$id: int collapseActionView -androidx.swiperefreshlayout.R$layout: int notification_template_custom_big -cyanogenmod.platform.R$string -android.didikee.donate.R$id: int screen -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State FAILED -wangdaye.com.geometricweather.R$id: int month_grid -android.didikee.donate.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -james.adaptiveicon.R$attr: int switchMinWidth -com.google.android.material.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -androidx.appcompat.R$drawable: int abc_item_background_holo_light -androidx.work.R$id: int text -wangdaye.com.geometricweather.R$attr: int titleMarginTop -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.identityscope.IdentityScope identityScope -com.turingtechnologies.materialscrollbar.R$attr: int alpha -androidx.preference.R$id: int text -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node find(java.lang.Object,boolean) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getWeatherKind() -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizePresetSizes -com.turingtechnologies.materialscrollbar.R$style: int Platform_AppCompat -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -com.jaredrummler.android.colorpicker.R$attr: int disableDependentsState -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -okhttp3.internal.http2.Http2Stream$FramingSink: void flush() -androidx.swiperefreshlayout.R$layout: int custom_dialog -com.google.android.material.R$dimen: int mtrl_calendar_header_height -okhttp3.internal.connection.RealConnection: okhttp3.Handshake handshake -okhttp3.Response$Builder: okhttp3.ResponseBody body -com.turingtechnologies.materialscrollbar.R$attr: int chipIconVisible -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_HelperText -wangdaye.com.geometricweather.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.db.entities.LocationEntity: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource getWeatherSource() -wangdaye.com.geometricweather.R$id: int widget_week_icon_4 -androidx.constraintlayout.widget.R$layout: int abc_popup_menu_item_layout -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitationDuration -android.didikee.donate.R$id: int action_bar_container -com.google.android.gms.common.api.AvailabilityException: com.google.android.gms.common.ConnectionResult getConnectionResult(com.google.android.gms.common.api.HasApiKey) -james.adaptiveicon.R$attr: int maxButtonHeight -androidx.lifecycle.ProcessLifecycleOwner: int mResumedCounter -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconPadding -wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_container -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: void setOnFitSystemBarListener(wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout$OnFitSystemBarListener) -com.google.android.material.R$color: int design_dark_default_color_secondary_variant -cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(android.os.Parcel,cyanogenmod.app.Profile$1) -com.google.android.material.R$string: int material_clock_display_divider -cyanogenmod.library.R$styleable: int LiveLockScreen_type -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) -com.amap.api.location.AMapLocation: int LOCATION_TYPE_GPS -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -com.google.android.material.R$styleable: int MenuItem_numericModifiers -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getUrl() -com.google.android.material.internal.CheckableImageButton: void setPressed(boolean) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_toggle_margin_bottom -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric -com.google.android.material.chip.Chip: com.google.android.material.animation.MotionSpec getHideMotionSpec() -james.adaptiveicon.R$id: int shortcut -cyanogenmod.profiles.RingModeSettings: java.lang.String getValue() -io.reactivex.disposables.RunnableDisposable: RunnableDisposable(java.lang.Runnable) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String weatherDescription -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void onFailure(retrofit2.Call,java.lang.Throwable) -androidx.lifecycle.ClassesInfoCache: java.util.Map mHasLifecycleMethods -wangdaye.com.geometricweather.R$styleable: int[] FloatingActionButton -android.didikee.donate.R$attr: int voiceIcon -io.reactivex.Observable: java.lang.Iterable blockingIterable() -io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiFunction,io.reactivex.functions.Consumer) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginRight -android.didikee.donate.R$styleable: int ActivityChooserView_initialActivityCount -com.google.android.material.chip.Chip: void setMaxLines(int) -james.adaptiveicon.R$styleable: int SwitchCompat_trackTint -com.google.android.material.R$styleable: int FlowLayout_lineSpacing -android.didikee.donate.R$id: int search_go_btn -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.constraintlayout.utils.widget.ImageFilterButton: float getRound() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.LocationEntity) -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_right_mtrl_dark -androidx.preference.R$styleable: int ActionBar_title -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: void cancel() -androidx.activity.R$id: int accessibility_custom_action_11 -android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dark -com.google.android.material.R$id: int tag_accessibility_clickable_spans -io.reactivex.Observable: io.reactivex.observers.TestObserver test() -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd -androidx.hilt.work.R$styleable: int[] GradientColorItem -androidx.viewpager.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$color: int lightPrimary_1 -androidx.constraintlayout.widget.R$id: int startHorizontal -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_thickness -cyanogenmod.providers.DataUsageContract: java.lang.String[] PROJECTION_ALL -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginRight -androidx.appcompat.R$layout: int abc_action_mode_close_item_material -cyanogenmod.weather.WeatherInfo: int getConditionCode() -android.didikee.donate.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.R$color: int colorTextAlert -androidx.preference.R$layout: int preference_dropdown_material -androidx.viewpager.R$attr: int fontProviderFetchStrategy -android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_cancelAll -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float getPrecipitation(float) -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: float unitFactor -androidx.preference.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_entryValues -okhttp3.internal.http2.Http2Connection: void writeSynResetLater(int,okhttp3.internal.http2.ErrorCode) -com.xw.repo.bubbleseekbar.R$attr: int elevation -androidx.constraintlayout.widget.R$attr: int editTextStyle -io.reactivex.Observable: io.reactivex.Observable window(long,long,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: void setIcon(java.lang.String) -cyanogenmod.weather.WeatherInfo: long getTimestamp() -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_font -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int UPDATING -android.didikee.donate.R$styleable: int TextAppearance_android_textColorHint -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setPivotX(float) -com.google.android.material.R$attr: int windowActionBar -org.greenrobot.greendao.AbstractDao: long insert(java.lang.Object) -android.didikee.donate.R$drawable: int abc_btn_borderless_material -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit) -android.didikee.donate.R$id: int action_bar_subtitle -com.google.android.material.behavior.SwipeDismissBehavior -com.google.android.material.R$attr: int textInputLayoutFocusedRectEnabled -androidx.fragment.R$id: int tag_accessibility_pane_title -androidx.lifecycle.Lifecycling: java.util.Map sCallbackCache -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconSize -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: io.reactivex.disposables.Disposable timer -com.google.android.material.chip.ChipGroup: void setSingleLine(boolean) -com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemIconTintList() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String LongPhrase -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityStopped(android.app.Activity) -androidx.transition.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture Past24HourTemperatureDeparture -androidx.preference.R$string: int abc_shareactionprovider_share_with_application -cyanogenmod.power.PerformanceManagerInternal: void launchBoost() -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.internal.disposables.SequentialDisposable task -androidx.preference.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -cyanogenmod.app.CMContextConstants$Features: java.lang.String TELEPHONY -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SearchView -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean done -androidx.appcompat.R$id: int line1 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSuggest(java.lang.String) -androidx.hilt.work.R$styleable: int[] GradientColor -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: int capacityHint -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String originUrl -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_cancelLiveLockScreen -androidx.constraintlayout.widget.R$attr: int autoTransition -com.jaredrummler.android.colorpicker.R$layout: int preference_category_material -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTotalPrecipitation(java.lang.Float) -okhttp3.internal.http2.Hpack$Writer: void adjustDynamicTableByteCount() -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_30 -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver -androidx.lifecycle.SingleGeneratedAdapterObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -androidx.hilt.lifecycle.R$id: int action_container -wangdaye.com.geometricweather.R$id: int widget_clock_day_subtitle -cyanogenmod.app.CustomTile$ExpandedGridItem -cyanogenmod.app.CustomTile: void writeToParcel(android.os.Parcel,int) -androidx.lifecycle.extensions.R$dimen: int notification_large_icon_height -com.google.android.material.R$styleable: int NavigationView_menu -androidx.vectordrawable.animated.R$styleable: int[] GradientColor -com.google.android.material.R$attr: int windowFixedHeightMinor -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ScheduledExecutorService writerExecutor -com.google.android.material.R$attr: int boxStrokeColor -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyTopRight -androidx.activity.R$id: int tag_accessibility_heading -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setCityName(java.lang.String) -james.adaptiveicon.R$dimen: int disabled_alpha_material_light -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_ENABLED -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getBrandId() -wangdaye.com.geometricweather.R$attr: int radioButtonStyle -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_text -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat -com.jaredrummler.android.colorpicker.R$layout: int abc_dialog_title_material -androidx.preference.R$attr: int numericModifiers -androidx.constraintlayout.widget.R$id: int invisible -wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_subtitle -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_horizontal_padding -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: double Value -wangdaye.com.geometricweather.R$styleable: int ActionMode_height -okhttp3.Cache$Entry: java.lang.String SENT_MILLIS -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: void requestLocation(android.content.Context,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) -androidx.transition.R$layout: int notification_template_part_chronometer -james.adaptiveicon.R$id: int message -okhttp3.Cache: int VERSION -com.google.android.material.R$style: int TestThemeWithLineHeightDisabled -james.adaptiveicon.R$color: int background_material_light -cyanogenmod.hardware.DisplayMode: DisplayMode(int,java.lang.String) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_STATUS_BAR -androidx.appcompat.widget.SearchView: void setSubmitButtonEnabled(boolean) -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int getSubTextColorResId() -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setMinutelyList(java.util.List) -androidx.constraintlayout.widget.R$string: int abc_capital_off -androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void dispose() -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday() -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayVerticalProvider -com.xw.repo.bubbleseekbar.R$id: int action_menu_presenter -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: double Value -androidx.preference.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -com.xw.repo.bubbleseekbar.R$id: int message -androidx.preference.R$styleable: int GradientColor_android_gradientRadius -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedWidthMajor -cyanogenmod.providers.CMSettings$NameValueCache: android.content.IContentProvider lazyGetProvider(android.content.ContentResolver) -com.google.android.gms.base.R$string: int common_google_play_services_update_text -okio.RealBufferedSource: void readFully(okio.Buffer,long) -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue getOrCreateQueue() -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String resPkg -androidx.transition.R$id: int notification_main_column_container -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTag -cyanogenmod.app.ProfileGroup: java.lang.String TAG -com.amap.api.location.UmidtokenInfo$1: UmidtokenInfo$1() -com.google.android.material.R$color: int abc_tint_edittext -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -androidx.constraintlayout.widget.R$id: int normal -wangdaye.com.geometricweather.R$layout: int item_weather_daily_astro -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: long serialVersionUID -com.google.android.material.R$string: int abc_activitychooserview_choose_application -cyanogenmod.app.ILiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -wangdaye.com.geometricweather.R$drawable: int notif_temp_39 -android.didikee.donate.R$drawable: int abc_cab_background_internal_bg -androidx.preference.R$color: int abc_color_highlight_material -okhttp3.ResponseBody -com.xw.repo.bubbleseekbar.R$attr: int suggestionRowLayout -com.jaredrummler.android.colorpicker.R$id: int notification_main_column -wangdaye.com.geometricweather.R$layout: int widget_day_oreo -com.google.android.material.tabs.TabItem: TabItem(android.content.Context) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer -androidx.lifecycle.MediatorLiveData: void removeSource(androidx.lifecycle.LiveData) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_width_material -com.google.android.material.card.MaterialCardView: int getContentPaddingRight() -com.bumptech.glide.integration.okhttp.R$id: int icon_group -com.autonavi.aps.amapapi.model.AMapLocationServer: boolean i() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.util.List _queryWeatherEntity_AlertEntityList(java.lang.String,java.lang.String) -com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context) -androidx.appcompat.R$id: int tag_accessibility_actions -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: java.lang.String Unit -okio.Buffer: okio.ByteString md5() -androidx.hilt.R$styleable: int FontFamily_fontProviderFetchStrategy -cyanogenmod.app.Profile: java.lang.String mName -com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_950 -wangdaye.com.geometricweather.R$color: int notification_background_o -okhttp3.OkHttpClient$1: java.io.IOException timeoutExit(okhttp3.Call,java.io.IOException) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String value -cyanogenmod.util.ColorUtils: int findPerceptuallyNearestSolidColor(int) -androidx.recyclerview.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$styleable: int KeyPosition_drawPath -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemPaddingRight -androidx.hilt.lifecycle.R$layout: int notification_action_tombstone -james.adaptiveicon.R$drawable: int abc_ic_star_black_36dp -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_liftOnScrollTargetViewId -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginRight -wangdaye.com.geometricweather.R$attr: int buttonBarNeutralButtonStyle -androidx.preference.R$styleable: int[] LinearLayoutCompat_Layout -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_closeIcon -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language CHINESE -com.google.android.material.R$styleable: int[] Badge -com.bumptech.glide.manager.SupportRequestManagerFragment -android.didikee.donate.R$id: int titleDividerNoCustom -com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: void setInternalAutoHideListener(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) -android.support.v4.app.INotificationSideChannel$Stub: android.support.v4.app.INotificationSideChannel getDefaultImpl() -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void setLiveLockScreenEnabled(boolean) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void collect(java.util.Collection) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_creator -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startY -com.google.android.material.R$integer: int abc_config_activityDefaultDur -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason[] values() -androidx.constraintlayout.widget.R$color: int switch_thumb_normal_material_light -com.xw.repo.bubbleseekbar.R$attr: int firstBaselineToTopHeight -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_change_size_collapse_motion_spec -io.reactivex.internal.subscriptions.DeferredScalarSubscription: void cancel() -androidx.preference.R$drawable: int abc_vector_test -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.Observer downstream -com.google.android.material.R$styleable: int AppCompatTheme_popupWindowStyle -android.didikee.donate.R$styleable: int SearchView_android_inputType -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Caption -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: java.lang.Object value -androidx.appcompat.R$id: int search_badge -android.didikee.donate.R$styleable: int MenuGroup_android_checkableBehavior -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.os.Bundle getOptions() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display3 -wangdaye.com.geometricweather.R$styleable: int SearchView_voiceIcon -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris ephemeris -com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_Tooltip -okhttp3.ConnectionSpec$Builder: ConnectionSpec$Builder(okhttp3.ConnectionSpec) -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableEnd -cyanogenmod.profiles.LockSettings: boolean isDirty() -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_contrast -okio.ByteString: boolean endsWith(okio.ByteString) -retrofit2.Response: retrofit2.Response success(java.lang.Object,okhttp3.Response) -wangdaye.com.geometricweather.R$string: int feedback_request_permission -james.adaptiveicon.R$style: int Animation_AppCompat_DropDownUp -james.adaptiveicon.R$color: int abc_tint_btn_checkable -wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_light -androidx.recyclerview.R$id: int accessibility_custom_action_7 -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored -androidx.appcompat.R$dimen: int abc_dialog_fixed_width_minor -androidx.preference.R$styleable: int MenuView_subMenuArrow -wangdaye.com.geometricweather.R$id: int submit_area -cyanogenmod.app.CustomTile: cyanogenmod.app.CustomTile clone() -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_6 -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getDailyForecast() -androidx.preference.R$style: int Base_Animation_AppCompat_Tooltip -androidx.lifecycle.ComputableLiveData: java.util.concurrent.atomic.AtomicBoolean mInvalid -com.google.android.material.R$string: int mtrl_picker_date_header_selected -androidx.work.impl.background.systemalarm.SystemAlarmService -wangdaye.com.geometricweather.R$dimen: int progress_view_size -retrofit2.adapter.rxjava2.CallEnqueueObservable: retrofit2.Call originalCall -androidx.appcompat.widget.AppCompatImageView: void setBackgroundResource(int) -com.xw.repo.bubbleseekbar.R$color: int foreground_material_light -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowColor -androidx.customview.R$attr: int ttcIndex -androidx.constraintlayout.widget.R$attr: int subtitleTextAppearance -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_3DES_EDE_CBC_SHA -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets -com.google.android.material.R$style: int TextAppearance_AppCompat_Medium_Inverse -com.google.android.material.R$id: int SHOW_PATH -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_AES_256_CBC_SHA -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterTextColor -com.xw.repo.bubbleseekbar.R$attr: int bsb_always_show_bubble -retrofit2.Converter$Factory: Converter$Factory() -com.jaredrummler.android.colorpicker.R$attr: int showDividers -com.google.android.material.R$styleable: int ClockFaceView_valueTextColor -io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit) -cyanogenmod.app.StatusBarPanelCustomTile: void writeToParcel(android.os.Parcel,int) -androidx.constraintlayout.widget.R$drawable: int btn_checkbox_unchecked_mtrl -io.reactivex.internal.subscriptions.SubscriptionArbiter: long requested -androidx.preference.R$drawable: int abc_text_select_handle_left_mtrl_light -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconTintMode -okio.Okio$1: void write(okio.Buffer,long) -androidx.preference.R$styleable: int TextAppearance_android_shadowColor -com.jaredrummler.android.colorpicker.R$styleable: int[] FontFamilyFont -androidx.hilt.R$dimen: int compat_button_padding_horizontal_material -androidx.appcompat.widget.LinearLayoutCompat: void setGravity(int) -androidx.preference.R$attr: int windowFixedHeightMajor -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.util.List SupplementalAdminAreas -com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationY(float) -james.adaptiveicon.R$attr: int textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: MfWarningsResult$WarningTimelaps$WarningTimelapsItem() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_snackbar_margin -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: int UnitType -androidx.constraintlayout.widget.R$attr: int buttonGravity -retrofit2.BuiltInConverters$RequestBodyConverter -cyanogenmod.app.CustomTile$ExpandedStyle: int REMOTE_STYLE -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton_Overflow -com.xw.repo.bubbleseekbar.R$styleable: int[] CoordinatorLayout_Layout -com.turingtechnologies.materialscrollbar.R$layout: int mtrl_layout_snackbar_include -wangdaye.com.geometricweather.R$id: int widget_clock_day_icon -com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_disabled_material_dark -wangdaye.com.geometricweather.R$id: int container_main_header -androidx.activity.R$id: int line3 -wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: void onCreate(org.greenrobot.greendao.database.Database) -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_trackTint -wangdaye.com.geometricweather.R$attr: int allowDividerAbove -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar_TextView -com.google.android.material.textfield.TextInputLayout: void setStartIconTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_width_material -androidx.appcompat.resources.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.R$layout: int activity_daily_trend_display_manage -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: double lat -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeTextType -cyanogenmod.externalviews.ExternalViewProviderService: android.view.WindowManager access$400(cyanogenmod.externalviews.ExternalViewProviderService) -androidx.hilt.R$styleable: int GradientColor_android_gradientRadius -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_21 -james.adaptiveicon.R$style: int Base_Widget_AppCompat_SearchView -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.identityscope.IdentityScopeLong identityScopeLong -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver) -okhttp3.HttpUrl: void canonicalize(okio.Buffer,java.lang.String,int,int,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_checkbox -androidx.appcompat.R$styleable: int AppCompatTheme_windowActionBarOverlay -com.google.android.material.R$dimen: int design_navigation_item_icon_padding -com.google.android.material.R$dimen: int mtrl_extended_fab_corner_radius -cyanogenmod.providers.ThemesContract$MixnMatchColumns: ThemesContract$MixnMatchColumns() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: int getStatus() -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: void run() -cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING_RAMP_UP_TIME -wangdaye.com.geometricweather.R$string: int content_desc_wechat_payment_code -wangdaye.com.geometricweather.R$drawable: int notif_temp_51 -wangdaye.com.geometricweather.R$string: int abc_toolbar_collapse_description -androidx.appcompat.R$drawable: int abc_cab_background_top_material -wangdaye.com.geometricweather.R$string: int life_details -okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Level level -okhttp3.OkHttpClient: okhttp3.CertificatePinner certificatePinner -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: androidx.lifecycle.LifecycleRegistry mRegistry -com.turingtechnologies.materialscrollbar.R$id: int normal -okhttp3.Address: java.net.ProxySelector proxySelector() -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_bias -androidx.appcompat.R$style: int Platform_AppCompat_Light -okhttp3.Cache$Entry: okhttp3.Handshake handshake -com.google.android.material.R$attr: int spanCount -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf -james.adaptiveicon.R$drawable: int abc_text_select_handle_right_mtrl_light -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogTheme -cyanogenmod.power.IPerformanceManager$Stub: cyanogenmod.power.IPerformanceManager asInterface(android.os.IBinder) -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonRiseDate -com.turingtechnologies.materialscrollbar.R$attr: int iconTintMode -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: AtmoAuraQAResult$Advice() -wangdaye.com.geometricweather.common.basic.models.weather.Current -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_variablePadding -com.google.android.material.R$dimen: int material_timepicker_dialog_buttons_margin_top -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String value -com.xw.repo.bubbleseekbar.R$id: int action_mode_bar_stub -com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_percent -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context) -androidx.vectordrawable.R$id: int text2 -okhttp3.MultipartBody$Part: okhttp3.RequestBody body -androidx.preference.R$style: int Base_V23_Theme_AppCompat -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationZ -io.reactivex.internal.util.NotificationLite$ErrorNotification: NotificationLite$ErrorNotification(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: MfWarningsResult() -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context) -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -com.google.android.material.R$styleable: int SwitchCompat_switchTextAppearance -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getShrinkMotionSpec() -androidx.appcompat.widget.Toolbar: int getTitleMarginBottom() -androidx.cardview.widget.CardView: void setCardBackgroundColor(android.content.res.ColorStateList) -io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval getInstance(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial() -com.google.android.material.R$attr: int tabBackground -androidx.preference.R$styleable: int AppCompatTheme_actionDropDownStyle -androidx.appcompat.widget.AppCompatImageView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.google.android.material.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -com.turingtechnologies.materialscrollbar.R$attr: int helperText -okhttp3.internal.ws.WebSocketProtocol: WebSocketProtocol() -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Subhead -james.adaptiveicon.R$drawable: int abc_vector_test -retrofit2.http.HEAD -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.Observer downstream -james.adaptiveicon.R$dimen: int abc_text_size_display_4_material -androidx.drawerlayout.R$styleable: int GradientColor_android_tileMode -androidx.appcompat.R$style: int TextAppearance_AppCompat_Inverse -androidx.preference.PreferenceManager: void setOnPreferenceTreeClickListener(androidx.preference.PreferenceManager$OnPreferenceTreeClickListener) -androidx.lifecycle.Lifecycle$Event: Lifecycle$Event(java.lang.String,int) -james.adaptiveicon.R$style: int Animation_AppCompat_Tooltip -android.didikee.donate.R$id: int right_side -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_Overflow -android.didikee.donate.R$styleable: int AppCompatTheme_colorError -cyanogenmod.externalviews.IExternalViewProviderFactory: android.os.IBinder createExternalView(android.os.Bundle) -com.turingtechnologies.materialscrollbar.R$id: int search_plate -androidx.dynamicanimation.R$layout: R$layout() -com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreferenceCompat -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_transitionEasing -cyanogenmod.providers.CMSettings$Secure: java.lang.String ENABLED_EVENT_LIVE_LOCKS_KEY -cyanogenmod.app.ProfileManager: boolean profileExists(java.lang.String) -wangdaye.com.geometricweather.R$attr: int content -com.google.android.material.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum Minimum -okhttp3.internal.cache.FaultHidingSink: void close() -com.github.rahatarmanahmed.cpv.CircularProgressView$6: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotation -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Integer getAqiIndex() -com.xw.repo.bubbleseekbar.R$attr: int collapseIcon -androidx.lifecycle.ProcessLifecycleOwner$1: ProcessLifecycleOwner$1(androidx.lifecycle.ProcessLifecycleOwner) -androidx.constraintlayout.widget.R$attr: int alertDialogStyle -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments textAvalanche -wangdaye.com.geometricweather.R$styleable: int[] CoordinatorLayout -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeight -cyanogenmod.weather.WeatherLocation: java.lang.String mKey -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit valueOf(java.lang.String) -cyanogenmod.util.ColorUtils$1 -android.didikee.donate.R$drawable: int abc_list_focused_holo -okhttp3.Dispatcher: java.util.concurrent.ExecutorService executorService -wangdaye.com.geometricweather.R$attr: int colorControlHighlight -com.google.android.material.R$style: int Theme_AppCompat_NoActionBar -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Date -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem -androidx.appcompat.resources.R$attr: int ttcIndex -androidx.work.R$id: int accessibility_custom_action_11 -com.google.android.material.appbar.MaterialToolbar: void setNavigationIconColor(int) -okhttp3.logging.HttpLoggingInterceptor: HttpLoggingInterceptor() -com.turingtechnologies.materialscrollbar.R$attr: int alphabeticModifiers -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: int a -com.google.android.material.slider.Slider: void setTickActiveTintList(android.content.res.ColorStateList) -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType MAPABC -wangdaye.com.geometricweather.R$font: R$font() -okhttp3.ResponseBody$1: okhttp3.MediaType contentType() -androidx.preference.R$drawable: int abc_ic_star_black_16dp -okhttp3.internal.ws.WebSocketProtocol: void toggleMask(okio.Buffer$UnsafeCursor,byte[]) -com.google.android.material.R$dimen: int design_snackbar_action_text_color_alpha -androidx.constraintlayout.widget.R$attr: int transitionFlags -com.turingtechnologies.materialscrollbar.R$styleable: int[] ColorStateListItem -com.xw.repo.bubbleseekbar.R$attr: int actionButtonStyle -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void dispose() -com.google.android.material.R$dimen: int abc_seekbar_track_background_height_material -androidx.preference.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -retrofit2.Platform$Android: java.lang.Object invokeDefaultMethod(java.lang.reflect.Method,java.lang.Class,java.lang.Object,java.lang.Object[]) -wangdaye.com.geometricweather.R$attr: int tickMarkTintMode -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$styleable: int DrawerArrowToggle_thickness -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitation -com.turingtechnologies.materialscrollbar.R$color: int cardview_shadow_start_color -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_2 -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_android_gravity -com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_radio -androidx.vectordrawable.animated.R$drawable: int notification_tile_bg -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerY -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -okhttp3.RequestBody$2: RequestBody$2(okhttp3.MediaType,int,byte[],int) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.HourlyEntity) -androidx.vectordrawable.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode SNOW -wangdaye.com.geometricweather.R$attr: int indicatorColor -androidx.recyclerview.R$styleable: int ColorStateListItem_android_alpha -android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void tryEmit(java.lang.Object,io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animDuration -android.didikee.donate.R$styleable: int CompoundButton_buttonTint -wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_default -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent UNKNOWN -wangdaye.com.geometricweather.R$color: int design_snackbar_background_color -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_android_src -okio.Buffer$UnsafeCursor: Buffer$UnsafeCursor() -com.google.android.material.R$styleable: int Toolbar_subtitle -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_NoActionBar -wangdaye.com.geometricweather.R$attr: int statusBarForeground -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: double Value -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.lang.String getUnit() -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy[] values() -androidx.recyclerview.R$id: int action_divider -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerNext(int,java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin -androidx.constraintlayout.widget.R$attr: int actionBarPopupTheme -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_homeLayout -wangdaye.com.geometricweather.R$xml: int icon_provider_animator_filter -cyanogenmod.app.PartnerInterface: PartnerInterface(android.content.Context) -com.jaredrummler.android.colorpicker.R$attr: int statusBarBackground -com.amap.api.location.AMapLocationQualityReport: void setNetworkType(java.lang.String) -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_type -com.google.android.material.R$attr: int showDividers -okio.HashingSink: okio.ByteString hash() -android.didikee.donate.R$dimen: int abc_action_bar_content_inset_material -androidx.preference.R$styleable: int FragmentContainerView_android_tag -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_tooltipFrameBackground -com.jaredrummler.android.colorpicker.R$id: int topPanel -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowNoTitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: void setValue(java.util.List) -com.amap.api.fence.PoiItem: java.lang.String h -wangdaye.com.geometricweather.R$id: int sawtooth -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -retrofit2.RequestFactory$Builder: java.lang.String relativeUrl -androidx.preference.R$dimen: int notification_content_margin_start -com.google.android.material.bottomappbar.BottomAppBar: void setBackgroundTint(android.content.res.ColorStateList) -androidx.appcompat.widget.ActionMenuView: void setPresenter(androidx.appcompat.widget.ActionMenuPresenter) -androidx.preference.PreferenceDialogFragmentCompat: PreferenceDialogFragmentCompat() -wangdaye.com.geometricweather.R$styleable: int Constraint_barrierDirection -com.jaredrummler.android.colorpicker.R$id: int search_edit_frame -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginTop -com.xw.repo.bubbleseekbar.R$dimen: int notification_large_icon_height -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetRight -wangdaye.com.geometricweather.R$styleable: int MaterialAutoCompleteTextView_android_inputType -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_checkable -androidx.preference.R$drawable: int abc_tab_indicator_mtrl_alpha -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: int UnitType -androidx.appcompat.resources.R$id: int accessibility_custom_action_21 -com.google.android.material.R$id: int packed -android.didikee.donate.R$styleable: int[] DrawerArrowToggle -androidx.preference.R$attr: int voiceIcon -com.google.android.material.R$id: int chain -androidx.constraintlayout.widget.R$attr: int barrierDirection -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -wangdaye.com.geometricweather.R$attr: int maxAcceleration -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: ObservableInterval$IntervalObserver(io.reactivex.Observer) -cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String toString() -androidx.activity.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.R$dimen: int abc_text_size_headline_material -okhttp3.internal.ws.WebSocketProtocol: int PAYLOAD_SHORT -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust WindGust -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float visibility -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textAppearance -android.didikee.donate.R$styleable: int ActionMode_backgroundSplit -io.reactivex.internal.observers.DeferredScalarDisposable: boolean isEmpty() -androidx.appcompat.R$dimen: int tooltip_precise_anchor_threshold -okhttp3.HttpUrl: java.lang.String scheme() -okhttp3.internal.http2.Http2Stream: int getId() -okhttp3.Protocol: java.lang.String toString() -cyanogenmod.app.ProfileGroup: boolean isDefaultGroup() -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver[] observers -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: AccuCurrentResult$Visibility$Metric() -androidx.appcompat.widget.LinearLayoutCompat: void setBaselineAlignedChildIndex(int) -androidx.constraintlayout.widget.R$id: int staticPostLayout -androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.weather.RequestInfo: android.location.Location getLocation() -com.google.android.material.R$attr: int itemBackground -wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonTintMode -retrofit2.ParameterHandler$Body: retrofit2.Converter converter -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_horizontal_padding -androidx.vectordrawable.animated.R$attr: int fontProviderFetchStrategy -androidx.core.R$styleable: int FontFamilyFont_fontWeight -retrofit2.CompletableFutureCallAdapterFactory: CompletableFutureCallAdapterFactory() -android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat_Dark -cyanogenmod.app.CustomTile: boolean collapsePanel -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit valueOf(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_wavePeriod -androidx.drawerlayout.R$dimen: int compat_notification_large_icon_max_width -androidx.core.R$style -com.google.android.material.R$styleable: int KeyAttribute_transitionEasing -okhttp3.Call: okio.Timeout timeout() -com.baidu.location.indoor.mapversion.c.a$d: java.lang.String h -com.google.android.material.R$attr: int percentY -okhttp3.internal.http2.Http2Stream$FramingSource: boolean closed -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String getUnit() -okhttp3.RealCall: boolean forWebSocket -wangdaye.com.geometricweather.R$attr: int hoveredFocusedTranslationZ -androidx.preference.R$attr: int actionBarPopupTheme -james.adaptiveicon.R$color: int primary_dark_material_dark -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getCeiling() -wangdaye.com.geometricweather.R$layout: int notification_multi_city -io.reactivex.internal.util.ArrayListSupplier -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_card_elevation -okio.BufferedSink: okio.BufferedSink write(okio.ByteString) -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog -com.amap.api.location.AMapLocationClientOption$2 -com.google.android.material.R$string: int abc_capital_on -com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingEnd -com.google.android.material.R$interpolator: int mtrl_fast_out_linear_in -wangdaye.com.geometricweather.R$attr: int textEndPadding -com.google.android.material.navigation.NavigationView: android.view.MenuItem getCheckedItem() -james.adaptiveicon.R$layout: int notification_action -okhttp3.RealCall$AsyncCall: okhttp3.RealCall this$0 -james.adaptiveicon.R$layout: int abc_action_mode_close_item_material -androidx.appcompat.widget.AppCompatSpinner$SavedState -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableItem_android_id -androidx.hilt.R$styleable: int GradientColor_android_startX -okhttp3.OkHttpClient: boolean followSslRedirects() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -androidx.cardview.widget.CardView: void setMinimumWidth(int) -wangdaye.com.geometricweather.R$style: int Widget_Design_AppBarLayout -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_buttonGravity -okhttp3.internal.http.HttpDate: HttpDate() -androidx.lifecycle.LifecycleRegistry -android.didikee.donate.R$id: int textSpacerNoButtons -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_disabled_elevation -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -james.adaptiveicon.R$attr: int tickMark -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Caption -cyanogenmod.app.Profile$ProfileTrigger$1: Profile$ProfileTrigger$1() -com.xw.repo.bubbleseekbar.R$layout: int abc_popup_menu_item_layout -retrofit2.ParameterHandler$FieldMap: int p -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_max -wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentWidth -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okio.BufferedSource source() -wangdaye.com.geometricweather.R$array: int subtitle_data -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getDewPoint() -androidx.fragment.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarStyle -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getAqiColor(android.content.Context) -wangdaye.com.geometricweather.R$dimen: int material_clock_hand_stroke_width -com.amap.api.fence.GeoFence: int STATUS_OUT -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onComplete() -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: java.lang.String DESCRIPTOR -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_track_mtrl_alpha -androidx.work.R$dimen: int compat_button_inset_vertical_material -com.google.android.material.R$styleable: int[] AppBarLayout_Layout -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void truncateFinal() -cyanogenmod.app.Profile$TriggerType: int BLUETOOTH -wangdaye.com.geometricweather.R$animator: int mtrl_card_state_list_anim -androidx.preference.R$styleable: int ActionBar_subtitle -wangdaye.com.geometricweather.R$drawable: int flag_ru -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTheme -androidx.appcompat.R$drawable: int abc_spinner_textfield_background_material -wangdaye.com.geometricweather.R$styleable: int Preference_android_icon -com.jaredrummler.android.colorpicker.R$attr: int cpv_showDialog -cyanogenmod.providers.CMSettings$System: java.lang.String SYS_PROP_CM_SETTING_VERSION -com.jaredrummler.android.colorpicker.R$id: int search_badge -com.amap.api.fence.GeoFenceClient: java.util.List getAllGeoFence() -cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(cyanogenmod.app.ThemeVersion$ComponentVersion) -androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveShape -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onLockscreenSlideOffsetChanged(float) -com.google.gson.FieldNamingPolicy$4: FieldNamingPolicy$4(java.lang.String,int) -android.didikee.donate.R$attr: int thumbTint -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_translation_z_pressed -wangdaye.com.geometricweather.background.polling.basic.UpdateService: UpdateService() -androidx.appcompat.R$attr: R$attr() -androidx.viewpager.widget.PagerTitleStrip: PagerTitleStrip(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_stacked_max_height -cyanogenmod.externalviews.KeyguardExternalView$10 -com.xw.repo.bubbleseekbar.R$attr: int tooltipFrameBackground -androidx.activity.R$attr: int fontStyle -androidx.preference.R$styleable: int RecyclerView_android_orientation -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType[] values() -wangdaye.com.geometricweather.R$attr: int onShow -com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_ChipGroup -okio.ForwardingTimeout: okio.Timeout delegate -com.google.android.material.R$styleable: int FontFamilyFont_android_fontStyle -androidx.preference.R$style: int Widget_AppCompat_Light_ListPopupWindow -androidx.viewpager.R$styleable: int GradientColor_android_endX -androidx.recyclerview.R$drawable: int notification_tile_bg -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.StreamAllocation streamAllocation() -okhttp3.CookieJar$1: java.util.List loadForRequest(okhttp3.HttpUrl) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableBottomCompat -androidx.preference.R$style: int PreferenceFragmentList -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableDelegateState -androidx.appcompat.resources.R$string: int status_bar_notification_info_overflow -androidx.constraintlayout.widget.R$styleable: int[] ButtonBarLayout -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: android.os.IBinder asBinder() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -okhttp3.Cache$CacheRequestImpl$1: void close() -james.adaptiveicon.R$drawable -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_40 -cyanogenmod.app.BaseLiveLockManagerService: boolean hasPrivatePermissions() -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onComplete() -androidx.lifecycle.LifecycleRegistry: java.util.ArrayList mParentStates -androidx.appcompat.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$id: int dialog_background_location_summary -wangdaye.com.geometricweather.R$attr: int tooltipForegroundColor -androidx.recyclerview.widget.RecyclerView: void setViewCacheExtension(androidx.recyclerview.widget.RecyclerView$ViewCacheExtension) -com.google.android.material.R$attr: int textAppearanceHeadline6 -okhttp3.internal.ws.WebSocketWriter: void writeControlFrame(int,okio.ByteString) -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_DASHES -io.reactivex.exceptions.UndeliverableException: UndeliverableException(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: CaiYunMainlyResult$CurrentBean$FeelsLikeBean() -com.google.android.gms.location.ActivityTransitionResult: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$string: int v7_preference_off -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -wangdaye.com.geometricweather.R$bool: int enable_system_alarm_service_default -androidx.preference.R$dimen: int abc_text_size_display_3_material -android.didikee.donate.R$drawable: int abc_btn_radio_to_on_mtrl_015 -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: AccuLocationResult$GeoPosition$Elevation() -androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitle -androidx.constraintlayout.widget.R$color: int bright_foreground_inverse_material_light -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitationProbability() -okhttp3.internal.tls.TrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableRight -james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -androidx.constraintlayout.widget.R$dimen: int abc_select_dialog_padding_start_material -wangdaye.com.geometricweather.R$string: int settings_title_card_display -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long end -androidx.preference.R$styleable: int AppCompatTheme_buttonStyle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2 -android.didikee.donate.R$color: int ripple_material_light -okhttp3.OkHttpClient: OkHttpClient() -com.turingtechnologies.materialscrollbar.R$attr: int backgroundTint -wangdaye.com.geometricweather.R$attr: int textAppearanceCaption -com.google.android.material.R$id: int dragDown -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void startFirstTimeout(io.reactivex.ObservableSource) -androidx.customview.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: java.lang.String Unit -io.reactivex.internal.operators.observable.ObservableGroupBy$State: long serialVersionUID -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.background.polling.work.worker.AsyncWorker: AsyncWorker(android.content.Context,androidx.work.WorkerParameters) -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_Solid -androidx.lifecycle.service.R: R() -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ARABIC -androidx.preference.R$string: int abc_capital_off -com.google.android.material.R$styleable: int TabLayout_tabIconTint -com.turingtechnologies.materialscrollbar.R$drawable: int tooltip_frame_light -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_16dp -okio.BufferedSource: okio.ByteString readByteString() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeRealFeelShaderTemperature() -androidx.appcompat.widget.DropDownListView: void setSelectorEnabled(boolean) -james.adaptiveicon.R$color: int abc_search_url_text -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_maxHeight -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String type -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -com.google.android.material.slider.BaseSlider: void setStepSize(float) -com.turingtechnologies.materialscrollbar.R$attr: int titleMarginEnd -wangdaye.com.geometricweather.R$style: int Preference_SwitchPreference -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent -wangdaye.com.geometricweather.R$layout: int material_clock_period_toggle -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder asBinder() -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void dispose() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_textAllCaps -androidx.hilt.lifecycle.R$dimen: int notification_large_icon_width -james.adaptiveicon.R$attr: int font -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX() -cyanogenmod.weather.CMWeatherManager: java.util.Map access$200(cyanogenmod.weather.CMWeatherManager) -cyanogenmod.themes.ThemeManager: void addClient(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_REMOVED -android.didikee.donate.R$styleable: int LinearLayoutCompat_showDividers -com.google.android.material.R$styleable: int TextAppearance_android_textColorHint -com.jaredrummler.android.colorpicker.R$attr: int color -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_DarkActionBar -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMaxWidth -com.google.android.material.R$attr: int preserveIconSpacing -com.amap.api.location.DPoint: double getLatitude() -wangdaye.com.geometricweather.remoteviews.config.Hilt_MultiCityWidgetConfigActivity -wangdaye.com.geometricweather.R$layout: int item_line -com.google.android.material.R$drawable: int abc_cab_background_top_material -androidx.appcompat.R$attr: int iconifiedByDefault -androidx.core.app.RemoteActionCompat: RemoteActionCompat() -okhttp3.internal.platform.AndroidPlatform: java.lang.Object getStackTraceForCloseable(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int colorControlHighlight -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context) -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -james.adaptiveicon.R$styleable -com.google.android.material.R$drawable: int abc_ratingbar_indicator_material -com.google.android.material.R$attr: int motionTarget -wangdaye.com.geometricweather.R$id: int material_hour_tv -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Light -androidx.appcompat.R$string: int abc_capital_on -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dark -com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String) -androidx.vectordrawable.R$id: int blocking -androidx.preference.PreferenceGroup$SavedState -io.reactivex.internal.util.NotificationLite: boolean acceptFull(java.lang.Object,org.reactivestreams.Subscriber) -androidx.work.BackoffPolicy: androidx.work.BackoffPolicy valueOf(java.lang.String) -android.didikee.donate.R$style: int Widget_AppCompat_SeekBar -androidx.preference.R$color: int bright_foreground_disabled_material_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_111 -okhttp3.internal.ws.WebSocketWriter: okio.Sink newMessageSink(int,long) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Body1 -okhttp3.OkHttpClient$Builder: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner -okhttp3.internal.http1.Http1Codec$FixedLengthSink: boolean closed -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String level -com.amap.api.location.AMapLocation: int v -okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String key -android.support.v4.graphics.drawable.IconCompatParcelizer -wangdaye.com.geometricweather.R$id: int mtrl_calendar_day_selector_frame -androidx.core.R$dimen: int notification_small_icon_background_padding -cyanogenmod.platform.R$drawable -wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_android_background -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_divider -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void dispose() -wangdaye.com.geometricweather.R$styleable: int MenuView_android_windowAnimationStyle -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_iconTintMode -com.google.android.material.R$attr: int tabIndicatorAnimationDuration -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDate(java.util.Date) -io.reactivex.Observable: io.reactivex.Observable timeInterval() -wangdaye.com.geometricweather.R$attr: int haloColor -wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_strokeWidth -wangdaye.com.geometricweather.R$dimen: int cardview_default_radius -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: AccuCurrentResult$Pressure$Imperial() -com.google.android.gms.base.R$color: int common_google_signin_btn_tint -wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_subtitle_keywords -wangdaye.com.geometricweather.R$id: int transition_transform -androidx.constraintlayout.widget.R$attr: int fontProviderCerts -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec supportedSpec(javax.net.ssl.SSLSocket,boolean) -wangdaye.com.geometricweather.R$color: int test_mtrl_calendar_day -androidx.constraintlayout.widget.R$id: int src_over -wangdaye.com.geometricweather.R$color: int ripple_material_dark -okhttp3.ConnectionSpec$Builder: java.lang.String[] tlsVersions -com.turingtechnologies.materialscrollbar.R$attr: int indeterminateProgressStyle -com.jaredrummler.android.colorpicker.R$attr: int buttonBarStyle -okhttp3.internal.http2.Http2Reader: int lengthWithoutPadding(int,byte,short) -com.google.android.material.R$styleable: int GradientColor_android_endColor -james.adaptiveicon.AdaptiveIconView: void setPath(java.lang.String) -androidx.lifecycle.Transformations: androidx.lifecycle.LiveData map(androidx.lifecycle.LiveData,androidx.arch.core.util.Function) -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemTitle(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotationY -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.appcompat.R$styleable: int AppCompatTheme_colorButtonNormal -androidx.preference.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -okhttp3.internal.http.RequestLine: boolean includeAuthorityInRequestLine(okhttp3.Request,java.net.Proxy$Type) -androidx.lifecycle.extensions.R$string: int status_bar_notification_info_overflow -okhttp3.MultipartBody$Builder: MultipartBody$Builder() -com.google.android.material.R$style: int Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.jaredrummler.android.colorpicker.R$id: int time -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_statusBarForeground -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String ragweedDescription -androidx.preference.R$id: int action_bar -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver -androidx.constraintlayout.widget.R$styleable: int AlertDialog_android_layout -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language CZECH -com.turingtechnologies.materialscrollbar.R$attr: int bottomNavigationStyle -okhttp3.Protocol: java.lang.String protocol -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_width -androidx.lifecycle.ViewModelProvider$OnRequeryFactory: ViewModelProvider$OnRequeryFactory() -androidx.appcompat.widget.SearchView: void setIconifiedByDefault(boolean) -com.google.android.material.R$dimen: int design_snackbar_action_inline_max_width -androidx.preference.R$attr: int colorControlActivated -androidx.appcompat.R$dimen: int disabled_alpha_material_dark -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TimeStamp -androidx.hilt.work.R$id: int notification_main_column_container -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDefaultSmsSub -wangdaye.com.geometricweather.R$font: int product_sans_regular -com.google.android.material.R$id: int animateToStart -androidx.preference.R$attr: int listPreferredItemPaddingEnd -wangdaye.com.geometricweather.R$color: int material_blue_grey_950 -com.google.android.material.R$attr: int hintEnabled -androidx.appcompat.R$interpolator -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onResume() -androidx.preference.R$styleable: int DialogPreference_dialogIcon -wangdaye.com.geometricweather.R$attr: int customFloatValue -wangdaye.com.geometricweather.R$attr: int checkedTextViewStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf -androidx.preference.R$color: int foreground_material_dark -androidx.work.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean residentPosition -wangdaye.com.geometricweather.R$drawable: int abc_ic_ab_back_material -androidx.recyclerview.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.common.basic.models.weather.History: History(java.util.Date,long,int,int) -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.util.Date date -retrofit2.ParameterHandler$Body: void apply(retrofit2.RequestBuilder,java.lang.Object) -androidx.transition.R$id: int transition_transform -okhttp3.OkHttpClient$Builder: java.util.List interceptors -okhttp3.OkHttpClient: int pingInterval -wangdaye.com.geometricweather.R$layout: int mtrl_layout_snackbar -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabText -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: long StartEpochDateTime -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.R$attr: int preferenceCategoryTitleTextAppearance -android.support.v4.os.ResultReceiver$MyRunnable: int mResultCode -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotationY -com.google.android.material.R$dimen: int abc_dropdownitem_icon_width -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -com.google.android.material.R$drawable: int abc_list_divider_mtrl_alpha -wangdaye.com.geometricweather.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.R$string: int feedback_location_help_title -wangdaye.com.geometricweather.R$string: int default_location -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_activityChooserViewStyle -okhttp3.CacheControl: boolean noTransform() -androidx.activity.R$drawable: int notification_bg -androidx.core.R$id: int accessibility_custom_action_1 -james.adaptiveicon.R$dimen: int abc_floating_window_z -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceScreenStyle -androidx.constraintlayout.widget.R$styleable: int[] CompoundButton -com.amap.api.fence.PoiItem$1 -android.didikee.donate.R$styleable: int AppCompatTheme_viewInflaterClass -okhttp3.Response -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onScreenTurnedOff -io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator INSTANCE -com.google.android.material.R$styleable: int AppCompatSeekBar_tickMark -wangdaye.com.geometricweather.R$id: int dialog_location_help_manageContainer -wangdaye.com.geometricweather.R$string: int on -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Load -james.adaptiveicon.R$style: int Theme_AppCompat_Light -wangdaye.com.geometricweather.R$drawable: int widget_card_light_100 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: long getUpdateTime() -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onComplete() -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endX -androidx.appcompat.R$style: int Base_Animation_AppCompat_Tooltip -com.turingtechnologies.materialscrollbar.R$id: int transition_scene_layoutid_cache -com.google.android.material.floatingactionbutton.FloatingActionButton: void setRippleColor(int) -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotation -wangdaye.com.geometricweather.R$style: int Widget_Design_BottomSheet_Modal -com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_NOGPSPROVIDER -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean getWind() -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_unregisterListener -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$attr: int colorBackgroundFloating -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop -cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String CITY_NAME -android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_notify -cyanogenmod.themes.IThemeService$Stub$Proxy: boolean isThemeApplying() -wangdaye.com.geometricweather.R$attr: int boxCornerRadiusTopStart -androidx.drawerlayout.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.R$attr: int materialButtonToggleGroupStyle -wangdaye.com.geometricweather.R$attr: int bsb_progress -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onNext(java.lang.Object) -androidx.recyclerview.widget.RecyclerView: void removeOnChildAttachStateChangeListener(androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener) -wangdaye.com.geometricweather.R$attr: int defaultDuration -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -com.turingtechnologies.materialscrollbar.R$dimen: int design_appbar_elevation -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.R$id: int rectangles -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: MfEphemerisResult$Properties$Ephemeris() -com.google.android.material.R$animator -okhttp3.ConnectionSpec: boolean equals(java.lang.Object) -com.google.android.material.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec codec -com.bumptech.glide.R$drawable: int notify_panel_notification_icon_bg -com.google.android.material.floatingactionbutton.FloatingActionButton: void setShowMotionSpecResource(int) -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenText(android.content.Context,java.lang.Integer) -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextAppearanceActive(int) -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Overline -androidx.constraintlayout.widget.R$styleable: int Spinner_android_entries -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCutDrawable -androidx.appcompat.R$drawable: int notification_bg_normal_pressed -androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog -androidx.vectordrawable.animated.R$id: int tag_accessibility_clickable_spans -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTextPadding -cyanogenmod.app.ThemeVersion$ComponentVersion -com.google.android.material.R$style: int Widget_MaterialComponents_Badge -wangdaye.com.geometricweather.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: void setUnit(java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: java.lang.String type -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitationDuration -okhttp3.internal.io.FileSystem: long size(java.io.File) -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder immutable() -okhttp3.Cache: int ENTRY_METADATA -james.adaptiveicon.R$layout: int abc_select_dialog_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: void setValue(java.lang.String) -android.didikee.donate.R$id: int shortcut -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.appcompat.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -wangdaye.com.geometricweather.R$attr: int flow_verticalStyle -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer gust -wangdaye.com.geometricweather.R$array: int widget_styles -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_SearchView -androidx.constraintlayout.widget.R$id: int start -androidx.recyclerview.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$attr: int seekBarPreferenceStyle -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType GOOGLE -com.xw.repo.bubbleseekbar.R$attr: int titleTextAppearance -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.DailyEntity,int) -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage INITIALIZE -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial Imperial -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String getTo() -com.google.android.material.R$attr: int motionPathRotate -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onWindowAttributesChanged(android.view.WindowManager$LayoutParams) -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Line2 -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_background -androidx.appcompat.R$drawable: int btn_checkbox_checked_mtrl -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_13 -com.turingtechnologies.materialscrollbar.R$styleable: int ScrimInsetsFrameLayout_insetForeground -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalGap -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: void run() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.R$attr: int listPreferredItemHeightLarge -com.turingtechnologies.materialscrollbar.R$color: int mtrl_fab_ripple_color -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextColor(android.content.res.ColorStateList) -okhttp3.CertificatePinner: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_2 -james.adaptiveicon.R$id: int icon -androidx.drawerlayout.widget.DrawerLayout: void setScrimColor(int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_69 -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec newStream(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,boolean) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: void completion() -android.didikee.donate.R$styleable: int ActionBar_progressBarStyle -com.google.android.material.R$styleable: int MenuItem_android_title -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_4 -androidx.constraintlayout.widget.R$drawable: int btn_radio_on_to_off_mtrl_animation -androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_chainStyle -okhttp3.HttpUrl$Builder: boolean isDot(java.lang.String) -com.xw.repo.bubbleseekbar.R$anim: int abc_slide_in_bottom -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay[] values() -cyanogenmod.app.suggest.IAppSuggestManager: boolean handles(android.content.Intent) -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode CLOUDY -androidx.viewpager2.R$attr: int fontProviderFetchStrategy -com.google.android.material.R$layout: int test_toolbar_surface -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceLargePopupMenu -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_62 -okhttp3.Response$Builder: okhttp3.Handshake handshake -com.google.android.material.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Connection$Listener listener -androidx.appcompat.R$styleable: int AppCompatTextView_fontFamily -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void ackSettings() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_viewInflaterClass -androidx.preference.R$attr: int srcCompat -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: int getCircularRevealScrimColor() -androidx.preference.R$id: int on -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: int phenomenoMaxColorId -android.didikee.donate.R$styleable: int ActionBar_backgroundSplit -com.google.android.material.R$attr: int buttonTintMode -androidx.preference.R$drawable: int notification_bg_low_pressed -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Time -androidx.constraintlayout.widget.R$attr: int dividerPadding -android.didikee.donate.R$style: int Widget_AppCompat_ActionMode -android.didikee.donate.R$style: int Widget_AppCompat_Button_Borderless -cyanogenmod.themes.IThemeChangeListener$Stub: int TRANSACTION_onProgress_0 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction -wangdaye.com.geometricweather.R$dimen: int abc_dialog_min_width_minor -com.google.android.material.R$string: int material_timepicker_pm -androidx.preference.R$attr: int controlBackground -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: boolean isDisposed() -wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_velocityMode -wangdaye.com.geometricweather.R$attr: int showText -androidx.preference.R$dimen: int abc_list_item_height_large_material -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView -androidx.hilt.work.R$styleable: int FontFamilyFont_fontStyle -android.didikee.donate.R$styleable: int Toolbar_maxButtonHeight -androidx.constraintlayout.widget.R$style: int Widget_Compat_NotificationActionContainer -com.turingtechnologies.materialscrollbar.R$id: int right_side -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setCountryId(java.lang.String) -com.google.android.material.R$color: int dim_foreground_disabled_material_dark -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotationX -androidx.appcompat.R$drawable: int abc_dialog_material_background -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_state_dragged -com.google.android.material.button.MaterialButton: void setRippleColorResource(int) -wangdaye.com.geometricweather.R$layout: int mtrl_picker_fullscreen -cyanogenmod.externalviews.KeyguardExternalViewProviderService -com.xw.repo.bubbleseekbar.R$layout: int notification_template_icon_group -androidx.constraintlayout.widget.R$drawable: int notification_template_icon_low_bg -okhttp3.logging.LoggingEventListener: void callFailed(okhttp3.Call,java.io.IOException) -okhttp3.CacheControl: boolean noStore() -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startY -androidx.preference.ListPreference$SavedState: android.os.Parcelable$Creator CREATOR -com.google.android.material.chip.Chip: void setChipIconTint(android.content.res.ColorStateList) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context,android.util.AttributeSet,int) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableStart -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf -okhttp3.internal.connection.RealConnection: okhttp3.ConnectionPool connectionPool -io.reactivex.Observable: io.reactivex.Observable startWith(io.reactivex.ObservableSource) -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetLeft -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton_CloseMode -com.google.android.material.textfield.TextInputLayout: int getBoxBackgroundColor() -com.google.android.material.R$dimen: int mtrl_low_ripple_pressed_alpha -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: SwipeRefreshLayout(android.content.Context) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner -androidx.constraintlayout.widget.R$styleable: int Transform_android_elevation -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getContent() -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_normal_material_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String value -android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -com.google.android.material.R$attr: int lastBaselineToBottomHeight -com.google.android.material.progressindicator.ProgressIndicator: int getCircularRadius() -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dark -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: long serialVersionUID -org.greenrobot.greendao.AbstractDao: void saveInTx(java.lang.Iterable) -james.adaptiveicon.R$attr: int showText -wangdaye.com.geometricweather.R$attr: int itemShapeInsetBottom -com.turingtechnologies.materialscrollbar.R$attr: int itemHorizontalTranslationEnabled -wangdaye.com.geometricweather.R$attr: int tabInlineLabel -wangdaye.com.geometricweather.R$attr: int maxButtonHeight -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.appcompat.R$attr: int contentInsetRight -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.Observer downstream -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.DailyEntity) -androidx.appcompat.R$attr: int hideOnContentScroll -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: java.util.List coordinates -com.xw.repo.bubbleseekbar.R$attr: int lineHeight -com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_in_bottom -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display1 -androidx.constraintlayout.widget.R$attr: int buttonBarStyle -wangdaye.com.geometricweather.R$drawable: int weather_sleet_3 -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_visible -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getNO2() -com.xw.repo.bubbleseekbar.R$attr: int barLength -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -james.adaptiveicon.R$attr: int logoDescription -wangdaye.com.geometricweather.R$id: int item_weather_daily_value_title -wangdaye.com.geometricweather.R$dimen: int design_navigation_item_horizontal_padding -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassIndex -wangdaye.com.geometricweather.R$attr: int isLightTheme -okio.Okio$3 -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider -okhttp3.internal.cache.DiskLruCache$Editor$1: DiskLruCache$Editor$1(okhttp3.internal.cache.DiskLruCache$Editor,okio.Sink) -wangdaye.com.geometricweather.R$attr: int endIconCheckable -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_title -cyanogenmod.os.Concierge$ParcelInfo: android.os.Parcel mParcel -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onNext(java.lang.Object) -androidx.drawerlayout.widget.DrawerLayout$SavedState: android.os.Parcelable$Creator CREATOR -retrofit2.RequestFactory$Builder: boolean gotPart -okio.ByteString: int hashCode() -androidx.constraintlayout.widget.R$attr: int buttonBarButtonStyle -com.google.android.material.R$attr: int number -com.google.android.material.R$dimen: int notification_small_icon_size_as_large -cyanogenmod.app.Profile: void setBrightness(cyanogenmod.profiles.BrightnessSettings) -androidx.appcompat.widget.ActionBarOverlayLayout: void setHideOnContentScrollEnabled(boolean) -androidx.preference.R$style: int Base_V26_Widget_AppCompat_Toolbar -androidx.hilt.lifecycle.R$dimen: int notification_media_narrow_margin -com.turingtechnologies.materialscrollbar.R$drawable: int abc_action_bar_item_background_material -wangdaye.com.geometricweather.R$menu: int activity_preview_icon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String unit -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_applyDefaultTheme -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer grassIndex -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$attr: int arcMode -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context,android.util.AttributeSet,int) -okhttp3.internal.platform.JdkWithJettyBootPlatform -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: int temperature -com.github.rahatarmanahmed.cpv.CircularProgressView: float getMaxProgress() -androidx.appcompat.widget.AbsActionBarView: int getContentHeight() -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.R$style: int Theme_MaterialComponents_CompactMenu -android.didikee.donate.R$styleable: int View_paddingStart -androidx.appcompat.R$style: int TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.R$attr: int layout_goneMarginRight -com.jaredrummler.android.colorpicker.R$id: int top -androidx.work.R$id: R$id() -com.bumptech.glide.R$attr: int fontProviderFetchTimeout -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$styleable: int OnSwipe_limitBoundsTo -com.jaredrummler.android.colorpicker.R$styleable: int[] CoordinatorLayout -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorSchemeResources(int[]) -androidx.viewpager2.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.R$array: int air_quality_co_units -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather -com.google.android.material.R$attr: int behavior_fitToContents -com.google.android.gms.common.server.FavaDiagnosticsEntity: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleTint -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: ILiveLockScreenChangeListener$Stub() -androidx.core.R$id: int accessibility_custom_action_8 -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.externalviews.KeyguardExternalView: void onDetachedFromWindow() -androidx.appcompat.widget.LinearLayoutCompat: int getDividerWidth() -cyanogenmod.externalviews.KeyguardExternalView$2: boolean requestDismissAndStartActivity(android.content.Intent) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_progressBarPadding -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getHaloTintList() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void drainLoop() -james.adaptiveicon.R$id: int text -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context,android.util.AttributeSet) -cyanogenmod.weatherservice.WeatherProviderService$1: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) -com.google.android.material.R$styleable: int MenuItem_android_titleCondensed -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircleAngle -com.xw.repo.bubbleseekbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -androidx.preference.R$styleable: int AppCompatImageView_tint -androidx.preference.R$attr: int actionModeCloseButtonStyle -androidx.preference.R$styleable: int AppCompatTheme_actionBarTabStyle -com.google.android.material.R$dimen: int abc_action_bar_default_padding_start_material -wangdaye.com.geometricweather.R$style: int Widget_Compat_NotificationActionContainer -com.turingtechnologies.materialscrollbar.R$dimen: int abc_seekbar_track_background_height_material -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Action -okhttp3.Credentials: java.lang.String basic(java.lang.String,java.lang.String) -com.google.android.material.progressindicator.ProgressIndicator -androidx.viewpager2.R$integer -okio.BufferedSink: okio.BufferedSink write(byte[]) -okhttp3.Interceptor$Chain: int readTimeoutMillis() -cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getProfile(android.os.ParcelUuid) -androidx.appcompat.widget.SearchView$SearchAutoComplete: void setSearchView(androidx.appcompat.widget.SearchView) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.util.concurrent.atomic.AtomicLong requested -androidx.work.R$dimen: int notification_big_circle_margin -androidx.appcompat.widget.ActionBarContextView: void setTitleOptional(boolean) -androidx.constraintlayout.widget.R$attr: int paddingTopNoTitle -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: java.lang.String quali -android.didikee.donate.R$style: int Base_Widget_AppCompat_Spinner -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActivityChooserView -androidx.lifecycle.LiveData: void considerNotify(androidx.lifecycle.LiveData$ObserverWrapper) -com.google.android.material.R$attr -okio.ByteString: boolean endsWith(byte[]) -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_AM_PM -android.didikee.donate.R$drawable: int abc_item_background_holo_light -wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary_dark -cyanogenmod.hardware.CMHardwareManager: int FEATURE_HIGH_TOUCH_SENSITIVITY -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type RIGHT -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusTopEnd() -cyanogenmod.app.suggest.ApplicationSuggestion$1: cyanogenmod.app.suggest.ApplicationSuggestion createFromParcel(android.os.Parcel) -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onNext(java.lang.Object) -com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_padding_horizontal_material -androidx.hilt.lifecycle.R$attr: int fontWeight -com.google.android.material.R$attr: int dayTodayStyle -android.didikee.donate.R$attr: int color -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HAZE -com.xw.repo.bubbleseekbar.R$attr: int fontProviderQuery -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$xml: int widget_clock_day_week -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_pivotY -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setPivotY(float) -james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_Toolbar -androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Time -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimAnimationDuration(long) -androidx.lifecycle.extensions.R$layout: R$layout() -com.turingtechnologies.materialscrollbar.R$attr -com.amap.api.location.AMapLocation: void setConScenario(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getEn_US() -wangdaye.com.geometricweather.R$id: int activity_widget_config_styleSpinner -com.google.android.material.R$id: int test_checkbox_android_button_tint -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_background_color -com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context,android.util.AttributeSet) -com.google.android.material.slider.RangeSlider: int getActiveThumbIndex() -com.google.android.material.R$styleable: int Badge_backgroundColor -cyanogenmod.providers.WeatherContract: android.net.Uri AUTHORITY_URI -androidx.constraintlayout.widget.R$attr: int track -retrofit2.HttpServiceMethod$SuspendForBody: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) -james.adaptiveicon.R$string: int abc_searchview_description_search -com.turingtechnologies.materialscrollbar.R$attr: int dropDownListViewStyle -com.google.android.material.R$attr: int alphabeticModifiers -cyanogenmod.weather.util.WeatherUtils: double celsiusToFahrenheit(double) -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotation -okhttp3.internal.connection.StreamAllocation: void release() -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String unitId -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupMenu_Overflow -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -com.google.android.material.R$id: int none -com.google.android.material.R$attr: int closeItemLayout -android.didikee.donate.R$color: int switch_thumb_normal_material_light -com.google.android.material.textfield.TextInputLayout -androidx.preference.R$style: int Widget_AppCompat_Toolbar -okio.BufferedSource: int readInt() -com.google.android.material.R$anim: int design_bottom_sheet_slide_out -androidx.constraintlayout.widget.R$attr: int logoDescription -com.google.android.material.R$attr: int keyPositionType -wangdaye.com.geometricweather.R$attr: int buttonTintMode -androidx.preference.R$dimen: int preference_seekbar_padding_vertical -androidx.lifecycle.AbstractSavedStateViewModelFactory: java.lang.String TAG_SAVED_STATE_HANDLE_CONTROLLER -com.jaredrummler.android.colorpicker.R$id: int progress_horizontal -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType CENTER -androidx.customview.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry geometry -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult -com.xw.repo.bubbleseekbar.R$attr: int spinnerDropDownItemStyle -androidx.appcompat.R$styleable: int ActionMode_height -com.google.android.material.R$color: int design_default_color_secondary -androidx.appcompat.resources.R$id: int accessibility_custom_action_29 -androidx.appcompat.resources.R$id: int notification_main_column -com.google.android.material.R$style: int Base_V22_Theme_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton_Overflow -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.String) -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder domain(java.lang.String,boolean) -cyanogenmod.app.ILiveLockScreenManager: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void request(long) -com.google.android.material.appbar.AppBarLayout: void removeOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$BaseOnOffsetChangedListener) -androidx.constraintlayout.widget.R$id: int line1 -wangdaye.com.geometricweather.R$styleable: int Preference_android_persistent -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage[] values() -androidx.hilt.R$layout -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCopyDrawable -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_maxHeight -wangdaye.com.geometricweather.R$color: int design_fab_stroke_top_inner_color -androidx.swiperefreshlayout.R$drawable: int notification_bg_low -com.google.gson.stream.JsonWriter: java.lang.String deferredName -okhttp3.internal.cache.DiskLruCache$Entry: java.io.File[] dirtyFiles -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_summaryOff -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener mWindowAttachmentListener -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_sunText -retrofit2.ParameterHandler$QueryMap: boolean encoded -com.amap.api.fence.GeoFenceListener: void onGeoFenceCreateFinished(java.util.List,int,java.lang.String) -com.google.android.material.R$style: int Widget_MaterialComponents_BottomSheet -com.google.android.material.R$attr: int strokeColor -com.turingtechnologies.materialscrollbar.R$string: int abc_capital_on -wangdaye.com.geometricweather.R$styleable: int Spinner_popupTheme -androidx.appcompat.widget.SearchView: void setQueryRefinementEnabled(boolean) -cyanogenmod.hardware.CMHardwareManager: int getArrayValue(int[],int,int) -wangdaye.com.geometricweather.R$styleable: int ActionBar_backgroundSplit -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() -wangdaye.com.geometricweather.R$attr: int fontProviderAuthority -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderText -androidx.preference.SwitchPreference -com.turingtechnologies.materialscrollbar.R$style: int Base_AlertDialog_AppCompat_Light -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ProgressBar -com.xw.repo.bubbleseekbar.R$string: int abc_action_bar_up_description -com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$layout: int material_timepicker -wangdaye.com.geometricweather.R$attr: int dragDirection -androidx.core.R$color: int androidx_core_ripple_material_light -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderPackage -retrofit2.HttpServiceMethod$SuspendForBody -retrofit2.Utils: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) -androidx.recyclerview.R$attr: int fastScrollEnabled -retrofit2.ParameterHandler$Headers: void apply(retrofit2.RequestBuilder,okhttp3.Headers) -okio.Buffer$UnsafeCursor: int seek(long) -okhttp3.OkHttpClient$Builder: int readTimeout -com.turingtechnologies.materialscrollbar.R$attr: int drawerArrowStyle -androidx.preference.R$drawable: int btn_radio_off_to_on_mtrl_animation -cyanogenmod.externalviews.ExternalView$3: void run() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindLevel -androidx.vectordrawable.animated.R$dimen: int notification_big_circle_margin -james.adaptiveicon.R$color: int switch_thumb_disabled_material_light -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startY -cyanogenmod.externalviews.ExternalView: cyanogenmod.externalviews.IExternalViewProvider mExternalViewProvider -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_default -com.google.android.material.R$styleable: int ConstraintSet_android_rotationY -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3 -androidx.legacy.coreutils.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getType() -com.google.android.material.R$attr: int chipBackgroundColor -com.bumptech.glide.R$color: R$color() -androidx.preference.R$attr: int backgroundStacked -wangdaye.com.geometricweather.R$styleable: int Spinner_android_prompt -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_variablePadding -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getHeaderHeight() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date getTo() -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_d -okhttp3.internal.connection.RouteException: java.io.IOException firstException -androidx.preference.R$attr: int listItemLayout -com.amap.api.location.AMapLocation: java.lang.String getCity() -com.google.android.material.R$id: int title -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitation(java.lang.Float) -androidx.fragment.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: long EpochSet -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostStarted(android.app.Activity) -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: LiveDataReactiveStreams$LiveDataPublisher(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) -androidx.vectordrawable.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX -androidx.hilt.work.R$id: int accessibility_custom_action_21 -com.xw.repo.bubbleseekbar.R$styleable: R$styleable() -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode[] values() -wangdaye.com.geometricweather.R$string: int key_live_wallpaper -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose valueOf(java.lang.String) -com.google.android.gms.base.R$attr: int imageAspectRatioAdjust -androidx.lifecycle.extensions.R$anim: int fragment_close_enter -wangdaye.com.geometricweather.R$layout: int preference_list_fragment -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_text -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_alphabeticModifiers -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabView -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_summaryOff -wangdaye.com.geometricweather.R$styleable: int MenuItem_actionProviderClass -cyanogenmod.app.ICMStatusBarManager: void removeCustomTileFromListener(cyanogenmod.app.ICustomTileListener,java.lang.String,java.lang.String,int) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onAttach(android.os.IBinder) -androidx.work.R$bool: int enable_system_alarm_service_default -cyanogenmod.hardware.CMHardwareManager: int FEATURE_SUNLIGHT_ENHANCEMENT -cyanogenmod.externalviews.ExternalView$2: int val$width -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_trackColor -cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String getPackageName() -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_LEGACY_THEME -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow6h -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf -com.google.android.material.R$styleable: int FloatingActionButton_backgroundTintMode -okhttp3.CertificatePinner$Builder: okhttp3.CertificatePinner$Builder add(java.lang.String,java.lang.String[]) -okhttp3.internal.http2.Http2Reader$Handler: void alternateService(int,java.lang.String,okio.ByteString,java.lang.String,int,long) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getThermalState() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_share_mtrl_alpha -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_7 -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupWindow -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService$1 this$1 -okhttp3.internal.http2.Settings: int getHeaderTableSize() -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDate(java.util.Date) -okhttp3.RealCall: okhttp3.Request originalRequest -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float totalPrecipitationProbability -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeWetBulbTemperature -androidx.preference.R$attr: int subtitle -okhttp3.CacheControl$Builder: int maxAgeSeconds -com.amap.api.location.AMapLocationClientOption: long c -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar_Small -androidx.preference.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -androidx.transition.R$styleable: int GradientColor_android_centerY -com.google.android.material.R$attr: int paddingTopNoTitle -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_min -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getAlertId() -com.google.android.material.R$attr: int backgroundTint -wangdaye.com.geometricweather.R$attr: int progress_width -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -com.google.android.material.R$xml: int standalone_badge_gravity_bottom_end -androidx.viewpager.R$styleable: int FontFamily_fontProviderAuthority -androidx.appcompat.R$attr: int listItemLayout -okhttp3.internal.http.RetryAndFollowUpInterceptor: java.lang.Object callStackTrace -wangdaye.com.geometricweather.R$string: int key_notification_text_color -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnAttachStateChangeListener(com.google.android.material.snackbar.BaseTransientBottomBar$OnAttachStateChangeListener) -androidx.preference.Preference: void setOnPreferenceChangeInternalListener(androidx.preference.Preference$OnPreferenceChangeInternalListener) -androidx.constraintlayout.widget.R$anim: int abc_shrink_fade_out_from_bottom -wangdaye.com.geometricweather.R$styleable: int KeyPosition_framePosition -androidx.preference.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_3DES_EDE_CBC_SHA -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldIndex(java.lang.Integer) -com.google.android.material.R$styleable: int ConstraintSet_android_translationZ -com.google.android.material.R$color: int design_icon_tint -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_dropdownPreferenceStyle -androidx.constraintlayout.motion.widget.MotionLayout -com.xw.repo.bubbleseekbar.R$id: int normal -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionLayout -cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemOnClickIntent(android.app.PendingIntent) -com.google.android.material.R$styleable: int NavigationView_itemMaxLines -james.adaptiveicon.R$attr: int alphabeticModifiers -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX() -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator -okhttp3.HttpUrl: java.lang.String fragment -io.reactivex.internal.util.ArrayListSupplier: java.util.List call() -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode TRUNCATE -com.google.android.material.R$styleable: int Toolbar_title -wangdaye.com.geometricweather.R$drawable: int ic_navigation -cyanogenmod.weather.WeatherLocation: java.lang.String access$402(cyanogenmod.weather.WeatherLocation,java.lang.String) -com.google.android.material.textfield.TextInputLayout: float getHintCollapsedTextHeight() -androidx.loader.R$drawable: int notification_action_background -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void setInteractivity(boolean) -androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$styleable: int[] ActionBarLayout -androidx.appcompat.R$styleable: int AppCompatTheme_imageButtonStyle -retrofit2.RequestFactory: retrofit2.RequestFactory parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method) -cyanogenmod.providers.CMSettings$System: java.lang.String CALL_RECORDING_FORMAT -com.turingtechnologies.materialscrollbar.R$attr: int buttonTint -com.google.android.material.R$color: int mtrl_chip_ripple_color -androidx.appcompat.widget.AppCompatImageButton: android.content.res.ColorStateList getSupportBackgroundTintList() -okio.Buffer$UnsafeCursor: void close() -okio.Buffer: boolean rangeEquals(okio.Segment,int,okio.ByteString,int,int) -okhttp3.logging.LoggingEventListener: void callEnd(okhttp3.Call) -okhttp3.Response$Builder: okhttp3.Response$Builder removeHeader(java.lang.String) -io.reactivex.internal.observers.DeferredScalarDisposable: int DISPOSED -cyanogenmod.app.CustomTileListenerService: android.os.IBinder onBind(android.content.Intent) -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onComplete() -cyanogenmod.externalviews.ExternalViewProviderService: void onCreate() -okhttp3.internal.http2.Http2Reader$Handler: void goAway(int,okhttp3.internal.http2.ErrorCode,okio.ByteString) -androidx.preference.R$styleable: int CheckBoxPreference_summaryOn -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: long serialVersionUID -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: MfForecastResult$DailyForecast() -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void dispose() -retrofit2.RequestFactory$Builder: java.util.regex.Pattern PARAM_URL_REGEX -io.reactivex.internal.util.EmptyComponent: void onSuccess(java.lang.Object) -androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_activated_mtrl_alpha -androidx.appcompat.widget.LinearLayoutCompat: android.graphics.drawable.Drawable getDividerDrawable() -androidx.activity.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String advice -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActivityChooserView -androidx.transition.R$id: int normal -androidx.transition.R$styleable: int FontFamilyFont_android_fontWeight -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_WAKE_SCREEN_VALIDATOR -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_logo -androidx.vectordrawable.R$id: int chronometer -wangdaye.com.geometricweather.R$string: int path_password_strike_through -androidx.viewpager2.R$drawable: int notification_bg_low_pressed -com.google.android.material.R$dimen: int mtrl_slider_track_top -io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function,boolean,int) -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyTopRight -com.jaredrummler.android.colorpicker.R$styleable: int Preference_order -cyanogenmod.themes.ThemeChangeRequest$Builder: ThemeChangeRequest$Builder() -androidx.recyclerview.widget.RecyclerView: void addOnChildAttachStateChangeListener(androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onError(java.lang.Throwable) -okhttp3.internal.connection.RouteSelector$Selection -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource MEMORY_CACHE -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIFI -androidx.viewpager.R$drawable: R$drawable() -androidx.preference.R$id: int accessibility_custom_action_2 -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver -androidx.core.R$attr: int fontProviderCerts -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void dispose() -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void dispose() -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemBackground -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.lang.String MobileLink -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_132 -com.google.android.material.slider.BaseSlider: void setActiveThumbIndex(int) -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -cyanogenmod.profiles.LockSettings$1: cyanogenmod.profiles.LockSettings[] newArray(int) -androidx.fragment.R$id: int line3 -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setScaleX(float) -wangdaye.com.geometricweather.R$attr: int bsb_thumb_text_color -wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity -androidx.appcompat.R$styleable: int MenuItem_actionLayout -com.google.android.material.R$styleable: int TextInputLayout_hintTextColor -wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_item -wangdaye.com.geometricweather.R$attr: int buttonGravity -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_text_padding -okhttp3.internal.http2.Http2Reader$ContinuationSource: okio.BufferedSource source -wangdaye.com.geometricweather.R$xml: int widget_multi_city -androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$attr: int allowStacking -retrofit2.SkipCallbackExecutorImpl: java.lang.Class annotationType() -androidx.viewpager2.R$attr: int fastScrollVerticalThumbDrawable -android.didikee.donate.R$styleable: int AppCompatTheme_tooltipForegroundColor -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: int Level -cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_KEYS_CONTROL_RING_STREAM -wangdaye.com.geometricweather.R$attr: int materialThemeOverlay -com.google.android.material.button.MaterialButton: int getStrokeWidth() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView -androidx.constraintlayout.widget.R$id: int tag_accessibility_heading -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Medium -com.google.android.material.R$attr: int mock_showLabel -wangdaye.com.geometricweather.db.entities.HourlyEntity: long time -okio.AsyncTimeout: void scheduleTimeout(okio.AsyncTimeout,long,boolean) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedHeightMinor -io.reactivex.internal.observers.ForEachWhileObserver: void onComplete() -com.xw.repo.bubbleseekbar.R$attr: int contentInsetStart -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType END -wangdaye.com.geometricweather.db.entities.AlertEntity: void setWeatherSource(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterMaxLength -cyanogenmod.externalviews.ExternalViewProviderService$1$1: android.os.Bundle val$options -com.google.android.material.textfield.TextInputLayout: int getBaseline() -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: io.reactivex.Observer downstream -android.didikee.donate.R$color: int material_blue_grey_800 -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_legacy_text_color_selector -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitationProbability -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_AutoCompleteTextView -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$id: int transition_scene_layoutid_cache -com.loc.k: k(java.lang.String) -com.turingtechnologies.materialscrollbar.R$string: int search_menu_title -androidx.constraintlayout.widget.R$id: int src_atop -wangdaye.com.geometricweather.R$styleable: int Toolbar_collapseContentDescription -retrofit2.KotlinExtensions$await$4$2: kotlinx.coroutines.CancellableContinuation $continuation -androidx.appcompat.R$styleable: int Spinner_popupTheme -wangdaye.com.geometricweather.db.entities.MinutelyEntity: boolean getDaylight() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Title -okhttp3.Cookie: boolean httpOnly() -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setEnabled(boolean) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabBarStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX getBrandInfo() -okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman get() -androidx.work.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.MinutelyEntity) -android.didikee.donate.R$styleable: int[] Spinner -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.lifecycle.FullLifecycleObserver: void onResume(androidx.lifecycle.LifecycleOwner) -com.turingtechnologies.materialscrollbar.R$attr: int layout_insetEdge -android.didikee.donate.R$attr: int barLength -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableRightCompat -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_voiceIcon -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.util.List value -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabBarStyle -wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity -okhttp3.RequestBody$1: okhttp3.MediaType val$contentType -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setTranslateX(float) -android.didikee.donate.R$attr: int switchTextAppearance -wangdaye.com.geometricweather.R$id: int none -wangdaye.com.geometricweather.R$attr: int cornerSizeTopLeft -androidx.appcompat.widget.AppCompatSpinner: void setPopupBackgroundDrawable(android.graphics.drawable.Drawable) -android.didikee.donate.R$attr: int srcCompat -okhttp3.Response: okhttp3.Protocol protocol() -com.google.android.material.R$dimen: int mtrl_calendar_month_horizontal_padding -cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_DEFAULT -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_2 -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display1 -com.google.android.material.R$styleable: int[] AppCompatSeekBar -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginTop(int) -wangdaye.com.geometricweather.R$string: int key_refresh_rate -com.google.android.material.R$attr: int transitionPathRotate -wangdaye.com.geometricweather.R$id: int app_bar -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTag -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_overflow_padding_end_material -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onComplete() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents -com.amap.api.location.APSService: com.amap.api.location.APSServiceBase a -androidx.constraintlayout.widget.R$attr: int checkedTextViewStyle -com.google.android.material.R$styleable: int ActionBar_navigationMode -android.didikee.donate.R$dimen: int hint_pressed_alpha_material_light -com.google.android.material.appbar.AppBarLayout: void removeOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener) -com.google.android.material.R$styleable: int KeyCycle_motionProgress -okio.RealBufferedSource: boolean exhausted() -okhttp3.Dns$1: Dns$1() -james.adaptiveicon.R$attr: int actionMenuTextAppearance -com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy STRING -wangdaye.com.geometricweather.R$string: int feedback_ignore_battery_optimizations_content -androidx.lifecycle.Lifecycling: int GENERATED_CALLBACK -com.google.android.material.R$styleable: int Chip_android_maxWidth -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_track -cyanogenmod.app.CustomTile$Builder: java.lang.String mLabel -androidx.appcompat.R$styleable: int LinearLayoutCompat_divider -wangdaye.com.geometricweather.R$id: int circle -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Title -androidx.appcompat.R$layout: int custom_dialog -androidx.lifecycle.Transformations$3: void onChanged(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean done -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float snow -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String season -androidx.appcompat.R$styleable: int ActionBar_navigationMode -com.google.android.material.R$styleable: int CardView_cardElevation -cyanogenmod.providers.CMSettings$Global: java.lang.String SYS_PROP_CM_SETTING_VERSION -cyanogenmod.weather.RequestInfo: java.lang.String mKey -com.google.android.material.R$styleable: int MaterialButtonToggleGroup_singleSelection -androidx.preference.R$attr: int singleChoiceItemLayout -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert -androidx.hilt.R$styleable: int GradientColorItem_android_color -com.xw.repo.bubbleseekbar.R$id: int search_src_text -com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_disable_only_material_dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: double Value -androidx.viewpager.R$layout: int notification_action -androidx.recyclerview.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_maxElementsWrap -com.google.android.material.R$animator: int mtrl_card_state_list_anim -cyanogenmod.providers.CMSettings$System: long getLong(android.content.ContentResolver,java.lang.String,long) -androidx.preference.R$attr: int switchMinWidth -wangdaye.com.geometricweather.R$id: int widget_clock_day_title -com.google.android.material.R$animator: int linear_indeterminate_line2_tail_interpolator -androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingRight -okhttp3.internal.ws.WebSocketWriter: boolean activeWriter -com.xw.repo.bubbleseekbar.R$id: int action_context_bar -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: double Value -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: boolean isDisposed() -com.google.android.material.R$string: int mtrl_exceed_max_badge_number_suffix -wangdaye.com.geometricweather.R$layout: int abc_popup_menu_header_item_layout -wangdaye.com.geometricweather.R$styleable: int OnClick_clickAction -com.google.android.material.timepicker.ClockFaceView: ClockFaceView(android.content.Context,android.util.AttributeSet) -androidx.lifecycle.LiveData: androidx.arch.core.internal.SafeIterableMap mObservers -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: java.lang.String textAdvice -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags -wangdaye.com.geometricweather.R$attr: int actionBarTabBarStyle -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: cyanogenmod.app.ILiveLockScreenManagerProvider asInterface(android.os.IBinder) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableDelegateState: int getChangingConfigurations() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties -okio.SegmentedByteString: int size() -com.google.android.material.R$attr: int constraintSetEnd -com.google.android.material.R$dimen: int abc_list_item_height_large_material -okio.RealBufferedSink$1: java.lang.String toString() -com.bumptech.glide.R$styleable: int GradientColor_android_endY -james.adaptiveicon.R$attr: int actionLayout -androidx.recyclerview.R$layout: int notification_action -james.adaptiveicon.R$drawable: int notification_bg_low_normal -androidx.legacy.coreutils.R$id: int icon_group -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar -androidx.coordinatorlayout.R$id: int accessibility_custom_action_23 -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xms -cyanogenmod.weather.WeatherInfo$DayForecast: int describeContents() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -androidx.hilt.R$dimen: int notification_large_icon_height -androidx.vectordrawable.R$id: int tag_accessibility_actions -cyanogenmod.os.Build: android.util.SparseArray sdkMap -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: int UnitType -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context,android.util.AttributeSet) -okhttp3.internal.connection.RealConnection: okhttp3.Request createTunnel(int,int,okhttp3.Request,okhttp3.HttpUrl) -androidx.constraintlayout.widget.R$attr: int actionViewClass -okhttp3.internal.http.RealInterceptorChain: int calls -com.xw.repo.bubbleseekbar.R$attr: int dividerHorizontal -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String messageLong -wangdaye.com.geometricweather.R$string: int key_notification_custom_color -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Bridge -com.baidu.location.indoor.mapversion.c.c$b: java.lang.String b -androidx.appcompat.widget.AppCompatRadioButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$dimen: int abc_control_inset_material -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark_focused -com.google.android.material.R$styleable: int AppCompatTheme_windowFixedWidthMajor -com.google.android.material.R$styleable: int CardView_contentPadding -com.google.android.material.R$attr: int cornerRadius -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintDimensionRatio -com.jaredrummler.android.colorpicker.R$attr: int alertDialogButtonGroupStyle -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property FormattedId -wangdaye.com.geometricweather.R$styleable: int Slider_trackColorInactive -wangdaye.com.geometricweather.R$id: int NO_DEBUG -io.reactivex.Observable: io.reactivex.Observable switchIfEmpty(io.reactivex.ObservableSource) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: void run() -cyanogenmod.app.ProfileManager: java.lang.String INTENT_ACTION_PROFILE_UPDATED -wangdaye.com.geometricweather.R$id: int design_menu_item_text -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function,boolean,int) -cyanogenmod.app.CustomTile: java.lang.String toString() -androidx.preference.R$id: int progress_circular -wangdaye.com.geometricweather.R$styleable: int ArcProgress_text -okhttp3.internal.Util: void closeQuietly(java.io.Closeable) -com.google.gson.stream.JsonReader: int PEEKED_DOUBLE_QUOTED -com.google.android.material.R$styleable: int NavigationView_itemShapeInsetTop -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber -okhttp3.OkHttpClient$Builder: java.util.List networkInterceptors() -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeight -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: AMapLocationClientOption$AMapLocationProtocol(java.lang.String,int,int) -androidx.constraintlayout.widget.Barrier: void setDpMargin(int) -okhttp3.logging.LoggingEventListener: long startNs -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Connection$ReaderRunnable readerRunnable -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.functions.Function,int,io.reactivex.ObservableSource[]) -com.turingtechnologies.materialscrollbar.R$attr: int spanCount -com.jaredrummler.android.colorpicker.R$style: int Base_V28_Theme_AppCompat -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri getThumbailUri() -com.google.android.material.R$styleable: int AppCompatTheme_spinnerStyle -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity -androidx.preference.R$styleable: int SwitchCompat_android_thumb -androidx.hilt.R$integer: R$integer() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer iso0 -com.turingtechnologies.materialscrollbar.R$dimen: int hint_alpha_material_light -androidx.constraintlayout.widget.R$drawable: int btn_radio_off_to_on_mtrl_animation -android.didikee.donate.R$integer: int status_bar_notification_info_maxnum -okhttp3.internal.platform.ConscryptPlatform: okhttp3.internal.platform.ConscryptPlatform buildIfSupported() -androidx.hilt.work.R$id: int accessibility_custom_action_11 -okio.BufferedSource: boolean rangeEquals(long,okio.ByteString) -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TIMESTAMP -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: KeyguardExternalViewProviderService$Provider$ProviderImpl$3(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) -wangdaye.com.geometricweather.R$anim: int mtrl_card_lowers_interpolator -james.adaptiveicon.R$styleable: int[] AppCompatTextHelper -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode[] $VALUES -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitationProbability -androidx.work.R$id -com.amap.api.fence.GeoFence: int ERROR_CODE_FAILURE_PARSER -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: HistoryEntityDao$Properties() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Spinner_Underlined -androidx.constraintlayout.widget.R$attr: int constraintSetEnd -com.google.android.material.R$attr: int materialButtonStyle -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSwoopDuration -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cp -androidx.hilt.lifecycle.R$id: int italic -okhttp3.internal.http.HttpDate -cyanogenmod.power.IPerformanceManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.google.android.material.R$attr: int deltaPolarRadius -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LOCK_WALLPAPER_THUMBNAIL -okhttp3.internal.http1.Http1Codec: okio.Source newFixedLengthSource(long) -wangdaye.com.geometricweather.R$color: int preference_fallback_accent_color -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontWeight -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableLeft -james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingTop -com.google.android.material.R$attr: int flow_horizontalBias -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dialog -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: AccuLocationResult$GeoPosition$Elevation$Imperial() -wangdaye.com.geometricweather.R$styleable: int[] StateListDrawable -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason INITIALIZE -androidx.appcompat.R$styleable: int[] View -com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getIndicatorWidth() -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_orientation -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_24 -androidx.fragment.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitleTextAppearance -wangdaye.com.geometricweather.R$string: int wind_9 -com.google.android.material.R$dimen: int abc_text_size_body_1_material -androidx.constraintlayout.widget.R$styleable: int View_paddingStart -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_subMenuArrow -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_100 -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean isDisposed() -com.google.android.material.R$color: int mtrl_tabs_icon_color_selector_colored -android.didikee.donate.R$color: int abc_background_cache_hint_selector_material_dark -com.turingtechnologies.materialscrollbar.R$style: int Base_V28_Theme_AppCompat_Light -com.amap.api.fence.DistrictItem: java.lang.String c -androidx.dynamicanimation.R$id: int italic -wangdaye.com.geometricweather.R$attr: int shouldDisableView -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: IThemeChangeListener$Stub$Proxy(android.os.IBinder) -com.google.android.material.chip.Chip: void setTextEndPadding(float) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: double Value -wangdaye.com.geometricweather.R$attr: int textAppearanceSearchResultTitle -com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_indicator_material -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getTotal() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_7 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_113 -com.amap.api.location.APSService: int onStartCommand(android.content.Intent,int,int) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.R$id: int search_bar -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeightSmall -james.adaptiveicon.R$attr: int theme -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_gapBetweenBars -cyanogenmod.app.ProfileManager: boolean isProfilesEnabled() -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void createCustomTileWithTag(java.lang.String,java.lang.String,java.lang.String,int,cyanogenmod.app.CustomTile,int[],int) -androidx.constraintlayout.widget.R$attr: int buttonPanelSideLayout -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTextColor(android.content.res.ColorStateList) -okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_ENCODE_SET_URI -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_FAST_AVG -android.support.v4.os.ResultReceiver: android.os.Handler mHandler -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_hideMotionSpec -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_maxImageSize -androidx.preference.R$dimen: int item_touch_helper_swipe_escape_max_velocity -androidx.preference.R$color: int bright_foreground_material_dark -com.google.android.material.floatingactionbutton.FloatingActionButton: void setHideMotionSpecResource(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getSunSet() -wangdaye.com.geometricweather.R$styleable: int PopupWindow_android_popupAnimationStyle -retrofit2.adapter.rxjava2.BodyObservable: void subscribeActual(io.reactivex.Observer) -james.adaptiveicon.R$styleable: int MenuGroup_android_checkableBehavior -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -com.google.android.material.R$anim: int btn_checkbox_to_checked_icon_null_animation -cyanogenmod.app.CMContextConstants: java.lang.String CM_THEME_SERVICE -com.google.android.material.card.MaterialCardView: float getProgress() -androidx.appcompat.R$dimen: int disabled_alpha_material_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX brandInfo -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginEnd -com.bumptech.glide.R$dimen: int notification_small_icon_background_padding -cyanogenmod.weather.ICMWeatherManager$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_linearSeamless -androidx.vectordrawable.R$styleable: int GradientColor_android_centerColor -com.google.android.material.R$id: int standard -wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_right_black_24dp -wangdaye.com.geometricweather.R$string: int common_google_play_services_unsupported_text -wangdaye.com.geometricweather.R$attr: int tabTextColor -android.didikee.donate.R$attr: int thumbTextPadding -com.amap.api.location.AMapLocation$1: AMapLocation$1() -okhttp3.internal.ws.WebSocketReader: okio.Buffer controlFrameBuffer -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver -androidx.drawerlayout.R$dimen: int notification_large_icon_height -okio.Buffer: void require(long) -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -androidx.work.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.R$styleable: int[] ActionMenuItemView -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_is_float_type -cyanogenmod.app.Profile: cyanogenmod.profiles.AirplaneModeSettings mAirplaneMode -android.didikee.donate.R$styleable: int AppCompatTheme_colorPrimaryDark -retrofit2.HttpServiceMethod: HttpServiceMethod(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter) -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontWeight -androidx.preference.R$attr: int buttonTint -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Body1 -cyanogenmod.weather.RequestInfo$Builder: boolean mIsQueryOnly -wangdaye.com.geometricweather.background.polling.basic.ForegroundUpdateService: ForegroundUpdateService() -android.didikee.donate.R$styleable: int MenuItem_android_checked -com.xw.repo.bubbleseekbar.R$attr: int fontStyle -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type SLACK -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCo(java.lang.Float) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onWindowFocusChanged(boolean) -wangdaye.com.geometricweather.R$drawable: int notif_temp_80 -com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_swipe_escape_velocity -androidx.activity.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.R$string: int key_align_end -androidx.lifecycle.ClassesInfoCache$MethodReference: int hashCode() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizePresetSizes -com.google.gson.stream.JsonReader: int[] stack -android.didikee.donate.R$string: int search_menu_title -okhttp3.internal.http2.Http2Connection$PingRunnable: int payload2 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: AccuDailyResult$DailyForecasts$Night$Wind() -wangdaye.com.geometricweather.R$drawable: int notif_temp_126 -wangdaye.com.geometricweather.R$attr: int maxImageSize -cyanogenmod.app.ICMTelephonyManager: boolean isSubActive(int) -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(java.net.URL) -cyanogenmod.app.ILiveLockScreenManagerProvider: boolean getLiveLockScreenEnabled() -androidx.appcompat.R$id: int right_icon -wangdaye.com.geometricweather.R$drawable: int ic_launcher_background -okhttp3.Cache$CacheResponseBody$1: okhttp3.Cache$CacheResponseBody this$0 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_title_divider_material -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_toTopOf -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWindDirection -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_Search -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: JdkWithJettyBootPlatform$JettyNegoProvider(java.util.List) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfRain -androidx.appcompat.widget.SearchView$SearchAutoComplete -com.google.android.material.R$style: int TextAppearance_Design_Prefix -android.didikee.donate.R$color: int switch_thumb_material_dark -com.turingtechnologies.materialscrollbar.R$attr: int searchIcon -androidx.preference.R$styleable: int[] GradientColor -androidx.hilt.lifecycle.R$id: int notification_background -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: float mMin -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundTintMode -wangdaye.com.geometricweather.common.basic.models.weather.Minutely -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_spinnerStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setAqi(java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyleSmall -cyanogenmod.providers.CMSettings$System: boolean putLong(android.content.ContentResolver,java.lang.String,long) -com.turingtechnologies.materialscrollbar.R$attr: int subMenuArrow -androidx.swiperefreshlayout.R$dimen: int compat_notification_large_icon_max_height -androidx.preference.R$id: int home -com.google.android.material.R$attr: int appBarLayoutStyle -com.google.android.material.R$attr: int customColorDrawableValue -androidx.appcompat.R$layout: int abc_screen_simple -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.CMHardwareManager getInstance(android.content.Context) -james.adaptiveicon.R$style: int Base_AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.util.Date getDate() -com.turingtechnologies.materialscrollbar.R$color: int design_bottom_navigation_shadow_color -io.reactivex.internal.util.ExceptionHelper$Termination: long serialVersionUID -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: double Value -com.jaredrummler.android.colorpicker.R$id: int seekbar_value -okhttp3.Request: java.lang.Object tag() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -io.reactivex.Observable: io.reactivex.Single toSortedList(java.util.Comparator,int) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListPopupWindow -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperText -wangdaye.com.geometricweather.R$attr: int counterEnabled -com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_toTopOf -com.github.rahatarmanahmed.cpv.R$bool: int cpv_default_anim_autostart -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.String aqiText -androidx.preference.R$attr: int height -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_splitTrack -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Subhead -androidx.constraintlayout.widget.R$style: int Base_V28_Theme_AppCompat -wangdaye.com.geometricweather.R$attr: int chipStartPadding -com.google.android.material.appbar.AppBarLayout$BaseBehavior: AppBarLayout$BaseBehavior(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$dimen: int material_clock_hand_padding -wangdaye.com.geometricweather.R$dimen: int abc_text_size_subtitle_material_toolbar -com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: AccuDailyResult$DailyForecasts$Moon() -wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationZ -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintEnd_toEndOf -james.adaptiveicon.R$id: int home -wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_xml -androidx.appcompat.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -androidx.legacy.coreutils.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$string: int feedback_show_widget_card -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onStart_1 -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator -okhttp3.internal.http2.Http2Connection$1: okhttp3.internal.http2.Http2Connection this$0 -com.google.android.material.R$string: int abc_activity_chooser_view_see_all -okhttp3.internal.http2.Settings: int MAX_FRAME_SIZE -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -retrofit2.ParameterHandler$Headers: ParameterHandler$Headers(java.lang.reflect.Method,int) -androidx.hilt.R$id: int tag_transition_group -cyanogenmod.profiles.ConnectionSettings: void setSubId(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: double Value -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_Underlined -androidx.constraintlayout.widget.R$attr: int closeItemLayout -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder writeTimeout(java.time.Duration) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Headline -androidx.lifecycle.ProcessLifecycleOwner$3: androidx.lifecycle.ProcessLifecycleOwner this$0 -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: boolean done -android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -cyanogenmod.profiles.ConnectionSettings -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day -com.google.android.gms.common.internal.zag -com.google.android.material.slider.RangeSlider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWindChillTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextTextColor -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$bool: int abc_config_actionMenuItemAllCaps -androidx.viewpager2.R$id: int tag_screen_reader_focusable -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: org.reactivestreams.Subscriber downstream -okhttp3.RequestBody$3 -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setDistanceToTriggerSync(int) -androidx.lifecycle.extensions.R$layout: int custom_dialog -androidx.preference.R$id: int scrollIndicatorUp -com.jaredrummler.android.colorpicker.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.google.android.material.R$drawable: int material_ic_clear_black_24dp -com.xw.repo.bubbleseekbar.R$color: int primary_dark_material_dark -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitationDuration -cyanogenmod.externalviews.ExternalViewProperties: boolean mVisible -james.adaptiveicon.R$color: int secondary_text_default_material_dark -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceImageView -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onNext(java.lang.Object) -okio.RealBufferedSink: okio.BufferedSink write(okio.Source,long) -okhttp3.internal.http2.Header: okio.ByteString TARGET_PATH -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1 -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Inverse -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1 -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceInformationStyle -wangdaye.com.geometricweather.R$attr: int helperTextTextColor -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: OkHttpCall$ExceptionCatchingResponseBody(okhttp3.ResponseBody) -com.google.android.material.R$id: int textinput_helper_text -com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setDate(java.util.Date) -com.google.android.material.R$styleable: int AppCompatTheme_actionButtonStyle -com.jaredrummler.android.colorpicker.R$styleable: int[] AlertDialog -androidx.viewpager2.R$id: int chronometer -androidx.preference.R$styleable: int Preference_android_key -okio.ByteString: long serialVersionUID -okio.SegmentedByteString: okio.ByteString substring(int) -androidx.appcompat.R$layout: int abc_action_menu_layout -wangdaye.com.geometricweather.common.basic.models.weather.Daily: float getHoursOfSun() -androidx.lifecycle.SavedStateViewModelFactory: java.lang.Class[] VIEWMODEL_SIGNATURE -cyanogenmod.library.R$styleable: R$styleable() -com.jaredrummler.android.colorpicker.R$attr: int dialogPreferenceStyle -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: retrofit2.Call call -cyanogenmod.themes.ThemeManager$2$1: cyanogenmod.themes.ThemeManager$2 this$1 -okhttp3.internal.tls.BasicCertificateChainCleaner: int hashCode() -wangdaye.com.geometricweather.R$array -com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeBottomLeft -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean currentPosition -com.google.android.material.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator -androidx.viewpager2.R$id: int accessibility_custom_action_10 -androidx.appcompat.widget.AppCompatButton: void setAutoSizeTextTypeWithDefaults(int) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_constraint_referenced_ids -okhttp3.Headers: java.lang.String get(java.lang.String) -com.google.android.material.R$layout: int design_navigation_item_header -com.google.android.material.R$style: int Widget_AppCompat_ActionButton_Overflow -androidx.preference.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$dimen: int cpv_color_preference_normal -androidx.work.R$styleable: int GradientColor_android_type -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_iconifiedByDefault -com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getHandleOffset() -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getMinWidthMajor() -com.google.android.material.R$string: int character_counter_content_description -cyanogenmod.externalviews.ExternalViewProviderService: android.os.Handler mHandler -com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_pressed -com.bumptech.glide.R$id: int line3 -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressViewEndOffset() -androidx.lifecycle.ProcessLifecycleOwner: long TIMEOUT_MS -androidx.vectordrawable.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.R$attr: int cardForegroundColor -androidx.constraintlayout.widget.R$styleable: int ActionBar_icon -androidx.constraintlayout.widget.R$color: int ripple_material_dark -cyanogenmod.hardware.CMHardwareManager: int FEATURE_SERIAL_NUMBER -android.didikee.donate.R$attr: int searchIcon -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA -androidx.loader.R$dimen: int notification_right_side_padding_top -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SeekBar -okhttp3.internal.http2.Http2Connection: void sendDegradedPingLater() -wangdaye.com.geometricweather.R$attr: int prefixText -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void run() -cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemDrawable(int) -androidx.recyclerview.widget.RecyclerView: void setPreserveFocusAfterLayout(boolean) -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabView -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.R$attr: int panelMenuListWidth -androidx.constraintlayout.widget.R$layout: int select_dialog_singlechoice_material -okio.Buffer: okio.Buffer copyTo(java.io.OutputStream) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean done -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationVoice(android.content.Context,float) -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -com.turingtechnologies.materialscrollbar.R$string: int fab_transformation_scrim_behavior -androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -androidx.appcompat.R$drawable: int abc_ic_go_search_api_material -wangdaye.com.geometricweather.R$styleable: int View_theme -androidx.constraintlayout.helper.widget.Layer: void setVisibility(int) -james.adaptiveicon.R$styleable: int AppCompatImageView_tint -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String Phrase -androidx.lifecycle.MethodCallsLogger: boolean approveCall(java.lang.String,int) -cyanogenmod.app.BaseLiveLockManagerService: boolean getLiveLockScreenEnabled() -com.baidu.location.indoor.c -wangdaye.com.geometricweather.R$attr: int buttonBarButtonStyle -com.bumptech.glide.integration.okhttp.R$id: int tag_unhandled_key_event_manager -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_fitsSystemWindows -com.google.gson.FieldNamingPolicy$2: java.lang.String translateName(java.lang.reflect.Field) -com.google.android.material.transformation.TransformationChildCard: TransformationChildCard(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int AppCompatTheme_dialogCornerRadius -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleGravity(int) -cyanogenmod.externalviews.KeyguardExternalView$2: void onAttachedToWindow() -okhttp3.internal.ws.WebSocketReader: okio.Buffer messageFrameBuffer -wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_shapeAppearanceOverlay -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_PING -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody build() -cyanogenmod.app.ProfileGroup$1: ProfileGroup$1() -androidx.constraintlayout.widget.R$attr: int switchTextAppearance -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer snowHazard6h -com.turingtechnologies.materialscrollbar.R$styleable: int[] RecyclerView -androidx.coordinatorlayout.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$id: int screen -androidx.constraintlayout.widget.R$drawable: int notification_bg_low -com.jaredrummler.android.colorpicker.R$attr: int dialogTheme -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_padding -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: int UnitType -androidx.preference.R$layout: int preference_recyclerview -com.turingtechnologies.materialscrollbar.R$attr: int menu -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float ParticulateMatter2_5 -androidx.drawerlayout.R$drawable: int notification_bg_low -androidx.customview.R$id: int action_text -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: ObservableFlatMap$MergeObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean,int,int) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onComplete() -androidx.viewpager2.widget.ViewPager2: void setUserInputEnabled(boolean) -okio.Buffer: okio.BufferedSink writeShort(int) -com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetLeft -androidx.coordinatorlayout.R$id: int notification_main_column -androidx.appcompat.R$attr: int titleMarginEnd -com.google.android.material.R$style: int Base_V26_Theme_AppCompat_Light -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition[] values() -io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,int) -androidx.hilt.R$color: R$color() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: KeyguardExternalViewProviderService$Provider$ProviderImpl$2(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -androidx.viewpager2.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.R$id: int spacer -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSnowPrecipitationProbability() -wangdaye.com.geometricweather.R$layout: int mtrl_picker_text_input_date -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setStatus(int) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void innerComplete(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver) -wangdaye.com.geometricweather.R$attr: int flow_firstVerticalStyle -androidx.appcompat.R$styleable: int GradientColor_android_gradientRadius -com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingBottom -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_18 -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_off_mtrl_alpha -wangdaye.com.geometricweather.R$attr: int autoSizeMinTextSize -androidx.constraintlayout.widget.R$styleable: int MenuView_subMenuArrow -com.google.android.material.slider.RangeSlider: void setValueTo(float) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_3 -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy -com.jaredrummler.android.colorpicker.R$attr: int actionModeFindDrawable -cyanogenmod.app.suggest.IAppSuggestManager: java.util.List getSuggestions(android.content.Intent) -james.adaptiveicon.R$layout: int support_simple_spinner_dropdown_item -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function9) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void drain() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitationProbability -androidx.vectordrawable.R$dimen -com.google.android.material.R$style: int Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeight -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: long serialVersionUID -io.reactivex.internal.disposables.SequentialDisposable: SequentialDisposable(io.reactivex.disposables.Disposable) -com.google.android.material.R$styleable: int[] KeyCycle -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Small -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogCornerRadius -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_256_GCM_SHA384 -com.xw.repo.bubbleseekbar.R$id: int topPanel -okhttp3.internal.Version: java.lang.String userAgent() -androidx.constraintlayout.widget.R$attr: int customNavigationLayout -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTint -com.google.android.material.R$id: int action_menu_presenter -androidx.appcompat.R$attr: int goIcon -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric Metric -com.google.android.material.R$style: int Base_Widget_AppCompat_ListPopupWindow -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void cancel() -wangdaye.com.geometricweather.R$string: int abc_menu_delete_shortcut_label -androidx.work.R$dimen: int notification_subtext_size -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetEndWithActions -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String feelslike_c -james.adaptiveicon.R$dimen: int abc_control_padding_material -wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingRight -wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_descendantFocusability -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_disabled_z -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_bias -okhttp3.ConnectionPool: long keepAliveDurationNs -okhttp3.internal.http1.Http1Codec$FixedLengthSink: void close() -wangdaye.com.geometricweather.background.polling.PollingUpdateHelper: void setOnPollingUpdateListener(wangdaye.com.geometricweather.background.polling.PollingUpdateHelper$OnPollingUpdateListener) -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) -androidx.lifecycle.ViewModel: java.util.Map mBagOfTags -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_max -androidx.preference.R$styleable: int AppCompatTheme_textColorSearchUrl -androidx.core.R$attr: int alpha -com.google.android.material.R$attr: int visibilityMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.util.List value -android.didikee.donate.R$style: int Platform_V21_AppCompat -com.google.android.material.R$attr: int windowMinWidthMinor -androidx.work.R$styleable: int FontFamilyFont_fontWeight -com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_overlapAnchor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setZh_TW(java.lang.String) -androidx.lifecycle.ViewModelStore: void clear() -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_16dp -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalBias -wangdaye.com.geometricweather.R$id: int notification_big_temp_5 -androidx.appcompat.R$dimen: int abc_dialog_padding_top_material -retrofit2.BuiltInConverters$ToStringConverter: BuiltInConverters$ToStringConverter() -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceButton -wangdaye.com.geometricweather.R$attr: int waveOffset -wangdaye.com.geometricweather.R$id: int item_aqi_progress -retrofit2.ParameterHandler$RelativeUrl: java.lang.reflect.Method method -okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.internal.cache.CacheStrategy get() -wangdaye.com.geometricweather.R$string: int sp_widget_multi_city -wangdaye.com.geometricweather.R$styleable: int SignInButton_scopeUris -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder tlsVersions(okhttp3.TlsVersion[]) -androidx.constraintlayout.widget.R$id: int tag_unhandled_key_event_manager -com.google.android.material.R$color: int mtrl_chip_text_color -com.google.android.material.R$layout: int mtrl_alert_select_dialog_singlechoice -androidx.preference.R$attr: int textAppearanceSearchResultSubtitle -com.google.android.material.slider.RangeSlider: void setTrackInactiveTintList(android.content.res.ColorStateList) -androidx.preference.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -com.jaredrummler.android.colorpicker.R$attr: int subtitleTextStyle -androidx.constraintlayout.widget.R$dimen: int abc_text_size_title_material -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Borderless -androidx.customview.R$integer -androidx.constraintlayout.widget.R$styleable: int Toolbar_collapseContentDescription -androidx.loader.R$styleable: int GradientColor_android_centerColor -androidx.preference.R$styleable: int AppCompatTheme_activityChooserViewStyle -com.google.android.material.R$id: int BOTTOM_END -cyanogenmod.app.PartnerInterface: cyanogenmod.app.IPartnerInterface sService -androidx.viewpager.R$dimen: int notification_small_icon_size_as_large -com.jaredrummler.android.colorpicker.R$drawable: int abc_control_background_material -com.google.gson.internal.LazilyParsedNumber: java.lang.Object writeReplace() -androidx.core.R$string -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Small -com.google.android.material.R$attr: int showPaths -androidx.appcompat.resources.R$style: int Widget_Compat_NotificationActionContainer -androidx.preference.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setCheckable(boolean) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getWetBulbTemperature() -cyanogenmod.profiles.BrightnessSettings: int mValue -com.jaredrummler.android.colorpicker.R$styleable: int BackgroundStyle_android_selectableItemBackground -okio.ByteString: java.lang.String utf8() -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constrainedWidth -com.turingtechnologies.materialscrollbar.R$attr: int actionProviderClass -wangdaye.com.geometricweather.R$id: int item_weather_daily_pollen -com.google.android.material.R$styleable: int View_android_theme -androidx.constraintlayout.widget.R$color: int foreground_material_dark -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_container -androidx.fragment.R$styleable: int[] Fragment -androidx.hilt.work.R$styleable: int GradientColor_android_startY -james.adaptiveicon.R$dimen: int abc_text_size_body_1_material -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getPlaceholderTextColor() -okio.Buffer: okio.Buffer copyTo(okio.Buffer,long,long) -okhttp3.internal.http.StatusLine: int HTTP_PERM_REDIRECT -androidx.coordinatorlayout.R$id: int italic -cyanogenmod.providers.CMSettings$System: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) -cyanogenmod.providers.CMSettings$DelimitedListValidator: CMSettings$DelimitedListValidator(java.lang.String[],java.lang.String,boolean) -androidx.preference.R$styleable: int MenuView_android_windowAnimationStyle -com.jaredrummler.android.colorpicker.R$layout: int cpv_dialog_presets -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: boolean cancelled -androidx.constraintlayout.widget.R$id: int topPanel -com.google.android.material.R$attr: int chipStyle -com.xw.repo.bubbleseekbar.R$attr: int actionModeCloseButtonStyle -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onComplete() -retrofit2.RequestFactory$Builder: java.util.regex.Pattern PARAM_NAME_REGEX -androidx.preference.R$attr: int drawableTopCompat -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onNext(java.lang.Object) -androidx.constraintlayout.helper.widget.Flow: void setVerticalGap(int) -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setPageCount(int) -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_menu_item -james.adaptiveicon.R$styleable: int Toolbar_titleTextAppearance -androidx.preference.R$dimen: int abc_dialog_padding_top_material -androidx.appcompat.widget.AppCompatImageView: void setSupportBackgroundTintList(android.content.res.ColorStateList) -com.google.android.material.R$id: int search_go_btn -androidx.appcompat.R$attr: int icon -okhttp3.internal.http2.Http2Codec: void writeRequestHeaders(okhttp3.Request) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_anim_duration -io.reactivex.observers.TestObserver$EmptyObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int maxConcurrency -com.amap.api.location.AMapLocationQualityReport: AMapLocationQualityReport() -com.google.android.material.R$styleable: int Toolbar_titleMarginStart -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_content_inset_material -wangdaye.com.geometricweather.R$styleable: int CardView_cardCornerRadius -androidx.vectordrawable.R$styleable: int FontFamilyFont_android_font -androidx.appcompat.R$color: int tooltip_background_light -com.google.android.material.R$attr: int contentPaddingBottom -com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_Dialog -androidx.preference.R$style: int Widget_AppCompat_ActionMode -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_left_mtrl_light -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityStopped(android.app.Activity) -james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -wangdaye.com.geometricweather.R$integer: int google_play_services_version -cyanogenmod.weatherservice.WeatherProviderService: void onRequestSubmitted(cyanogenmod.weatherservice.ServiceRequest) -com.turingtechnologies.materialscrollbar.R$attr: int behavior_peekHeight -androidx.viewpager2.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: boolean isDisposed() -com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -okio.RealBufferedSink: okio.BufferedSink writeHexadecimalUnsignedLong(long) -com.google.android.material.R$styleable: int ConstraintSet_android_minHeight -james.adaptiveicon.R$dimen: int tooltip_y_offset_non_touch -androidx.preference.R$styleable: int ViewStubCompat_android_id -com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: java.lang.Integer proba3H -wangdaye.com.geometricweather.R$dimen: int material_cursor_inset_bottom -cyanogenmod.providers.CMSettings$Global: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -cyanogenmod.app.Profile$LockMode: int INSECURE -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeSplitBackground -androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context) -android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -okio.BufferedSource: int select(okio.Options) -androidx.appcompat.R$styleable: int AppCompatTheme_actionButtonStyle -com.baidu.location.e.h$b: com.baidu.location.e.h$b[] values() -androidx.appcompat.R$dimen: int abc_action_button_min_width_material -com.google.android.material.R$styleable: int[] ViewStubCompat -androidx.constraintlayout.widget.R$id: int jumpToEnd -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_updatesContinuously -com.google.android.material.R$attr: int minSeparation -cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_RINGTONE -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_icon -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: AccuDailyResult$DailyForecasts$Temperature$Minimum() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -androidx.hilt.R$styleable: int GradientColor_android_centerColor -com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_chainUseRtl -com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyle -androidx.vectordrawable.R$id: int notification_main_column -com.google.android.material.R$styleable: int[] TabLayout -james.adaptiveicon.R$dimen: int tooltip_margin -james.adaptiveicon.R$attr: int defaultQueryHint -android.didikee.donate.R$attr: int navigationMode -wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetMinutelyEntityList() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi: io.reactivex.Observable getLocation(java.lang.String,java.lang.String) -androidx.preference.R$dimen: int abc_text_size_small_material -cyanogenmod.app.Profile$LockMode: Profile$LockMode() -android.didikee.donate.R$styleable: int TextAppearance_android_textColor -androidx.recyclerview.R$styleable: int GradientColor_android_startX -com.google.android.material.R$integer: int mtrl_btn_anim_duration_ms -com.google.android.material.R$id: int action_bar_title -wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_alphaChannelVisible -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_logo -androidx.appcompat.R$style: int Widget_AppCompat_ActionMode -android.didikee.donate.R$style: int Widget_AppCompat_TextView_SpinnerItem -androidx.preference.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -androidx.cardview.R$attr: int contentPaddingTop -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconStartPadding -com.google.android.material.R$attr: int homeLayout -androidx.viewpager2.R$attr: int font -androidx.appcompat.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.R$xml: int widget_clock_day_vertical -androidx.preference.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWeatherStart() -wangdaye.com.geometricweather.R$string: int date_format_widget_oreo_style -com.google.android.material.R$attr: int popupTheme -wangdaye.com.geometricweather.R$string: int abc_searchview_description_query -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$attr: int drawableStartCompat -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_processCityNameLookupRequest -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_dividerPadding -cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_ACCESS_PRIVATE -okhttp3.internal.platform.Platform: java.lang.Object getStackTraceForCloseable(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_dependency -com.turingtechnologies.materialscrollbar.R$attr: int actionMenuTextColor -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listDividerAlertDialog -com.google.android.material.R$layout: int design_layout_tab_text -wangdaye.com.geometricweather.R$drawable: int notif_temp_44 -com.google.android.gms.common.server.response.zan: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_21 -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalAlign -androidx.lifecycle.LifecycleRegistry: boolean isSynced() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String BriefPhrase -androidx.appcompat.R$styleable: int SwitchCompat_android_textOff -com.turingtechnologies.materialscrollbar.R$attr: int enforceTextAppearance -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorTextColor -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -androidx.preference.R$style: int Widget_AppCompat_ButtonBar -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -com.jaredrummler.android.colorpicker.R$styleable: int[] ButtonBarLayout -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_getLiveLockScreenEnabled -com.jaredrummler.android.colorpicker.R$id: int tabMode -androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -wangdaye.com.geometricweather.R$attr: int itemShapeFillColor -com.google.android.material.R$styleable: int PropertySet_layout_constraintTag -io.reactivex.Observable: java.lang.Object blockingLast() -androidx.vectordrawable.animated.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchMinWidth -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_focused_z -wangdaye.com.geometricweather.R$drawable: int weather_snow_2 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: void setTo(java.lang.String) -com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_Dialog -cyanogenmod.themes.ThemeChangeRequest: cyanogenmod.themes.ThemeChangeRequest$RequestType mRequestType -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -cyanogenmod.app.PartnerInterface: boolean setZenMode(int) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: AccuAlertResult() -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: boolean setOther(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_focused -com.xw.repo.bubbleseekbar.R$color: int primary_text_default_material_dark -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setIndicatorPosition(int) -android.didikee.donate.R$attr: int actionModePasteDrawable -wangdaye.com.geometricweather.R$id: int activity_about_container -androidx.appcompat.R$attr: int singleChoiceItemLayout -okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.internal.cache.CacheStrategy getCandidate() -cyanogenmod.profiles.LockSettings -com.google.android.material.R$attr: int tintMode -com.bumptech.glide.load.ImageHeaderParser$ImageType -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline1 -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_queryHint -androidx.constraintlayout.widget.R$attr: int fontProviderQuery -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherText -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean delayError -com.google.gson.FieldNamingPolicy$6: java.lang.String translateName(java.lang.reflect.Field) -io.reactivex.internal.queue.SpscArrayQueue: java.lang.Object poll() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getPm25() -com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_text_size -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_margin -androidx.coordinatorlayout.R$id: int notification_main_column_container -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_track_mtrl_alpha -com.google.android.material.R$string: int mtrl_picker_announce_current_selection -com.turingtechnologies.materialscrollbar.R$integer: int abc_config_activityDefaultDur -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String description -com.google.android.material.R$dimen: int mtrl_textinput_box_corner_radius_medium -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_creator -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: long serialVersionUID -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -android.didikee.donate.R$attr: int actionBarTabBarStyle -com.google.android.material.R$dimen: int abc_alert_dialog_button_bar_height -wangdaye.com.geometricweather.R$drawable: int notif_temp_30 -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: long serialVersionUID -io.reactivex.internal.util.VolatileSizeArrayList: java.util.Iterator iterator() -com.google.android.material.R$attr: int materialTimePickerTheme -james.adaptiveicon.R$attr: int thumbTintMode -com.google.android.material.bottomappbar.BottomAppBar: int getFabAlignmentMode() -com.amap.api.location.AMapLocation: java.lang.String getFloor() -james.adaptiveicon.R$dimen: int abc_control_inset_material -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle getInstance(java.lang.String) -cyanogenmod.externalviews.ExternalView$6: cyanogenmod.externalviews.ExternalView this$0 -io.reactivex.Observable: io.reactivex.Observable flatMapIterable(io.reactivex.functions.Function) -androidx.preference.R$styleable: int Preference_key -com.jaredrummler.android.colorpicker.R$id: R$id() -android.didikee.donate.R$styleable: int AppCompatTextView_drawableRightCompat -cyanogenmod.hardware.CMHardwareManager: int[] getDisplayColorCalibration() -com.google.android.material.card.MaterialCardView: void setRippleColorResource(int) -com.google.android.material.R$drawable: int mtrl_popupmenu_background_dark -androidx.activity.OnBackPressedDispatcher$LifecycleOnBackPressedCancellable -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.StreamAllocation streamAllocation -com.google.android.material.R$style: int Widget_AppCompat_ListPopupWindow -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) -androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_android_color -android.didikee.donate.R$drawable: int abc_spinner_mtrl_am_alpha -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_2 -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveDecay -androidx.viewpager.widget.ViewPager: androidx.viewpager.widget.PagerAdapter getAdapter() -wangdaye.com.geometricweather.db.entities.HourlyEntity: int getTemperature() -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabText -com.google.android.material.R$attr: int selectableItemBackground -androidx.fragment.R$id: int accessibility_custom_action_12 -androidx.appcompat.R$attr: int contentInsetStart -androidx.constraintlayout.widget.R$id: int path -okhttp3.internal.http.CallServerInterceptor$CountingSink: void write(okio.Buffer,long) -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX temperature -wangdaye.com.geometricweather.R$id: int widget_day_week_title -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void cancel() -com.google.android.material.R$color: int abc_secondary_text_material_light -cyanogenmod.app.Profile: boolean getStatusBarIndicator() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierDirection -androidx.constraintlayout.widget.R$styleable: int ActionBar_height -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_vertical_padding -wangdaye.com.geometricweather.R$id: int item_card_display_title -wangdaye.com.geometricweather.R$styleable: int Toolbar_maxButtonHeight -com.google.android.material.R$dimen: int abc_text_size_display_2_material -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.Map rights -wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_big_view -cyanogenmod.weather.RequestInfo: int describeContents() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List guomin -okhttp3.CertificatePinner$Pin: boolean equals(java.lang.Object) -androidx.cardview.R$attr: int cardMaxElevation -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemFillColor -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalBias -io.reactivex.internal.disposables.DisposableHelper: boolean replace(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) -androidx.appcompat.widget.AppCompatSpinner$DropdownPopup -james.adaptiveicon.R$styleable: int ActionMode_titleTextStyle -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Info -androidx.hilt.work.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean -okio.RealBufferedSource: long indexOf(byte,long) -com.amap.api.fence.GeoFenceClient: int GEOFENCE_STAYED -androidx.constraintlayout.widget.R$id: int action_bar_root -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAV_BUTTONS_VALIDATOR -com.google.android.material.R$styleable: int Constraint_flow_lastHorizontalStyle -androidx.transition.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.R$id: int action_bar_subtitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean getWeather() -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer) -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endY -com.amap.api.location.AMapLocation: void setDistrict(java.lang.String) -androidx.lifecycle.Lifecycling: Lifecycling() -androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_material_light -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ENABLE -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: void setX(java.lang.String) -androidx.recyclerview.R$styleable: int GradientColor_android_startColor -androidx.appcompat.resources.R$attr: int font -androidx.appcompat.widget.SearchView: int getPreferredHeight() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: AccuCurrentResult$ApparentTemperature$Imperial() -androidx.viewpager2.R$id: int notification_main_column_container -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.util.Date StartTime -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_AIR_QUALITY -okhttp3.internal.http2.Http2Connection$5 -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_elevation -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.util.Date getDate() -com.autonavi.aps.amapapi.model.AMapLocationServer: void e(java.lang.String) -james.adaptiveicon.R$drawable: int notification_bg_normal -androidx.preference.R$drawable: int abc_text_select_handle_right_mtrl_light -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: cyanogenmod.app.ILiveLockScreenChangeListener asInterface(android.os.IBinder) -androidx.preference.R$style: int Widget_AppCompat_ProgressBar -com.google.android.material.chip.Chip: void setCheckedIcon(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.Observer downstream -com.google.android.material.R$attr: int defaultQueryHint -com.turingtechnologies.materialscrollbar.R$attr: int lastBaselineToBottomHeight -com.google.android.material.textfield.TextInputLayout: void setStartIconTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark_normal_background -wangdaye.com.geometricweather.R$attr: int defaultQueryHint -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature -androidx.customview.R$styleable -com.google.android.material.R$styleable: int Layout_constraint_referenced_ids -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_TextView -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display3 -wangdaye.com.geometricweather.R$string: int air_quality -okhttp3.internal.http.RealResponseBody: okio.BufferedSource source -com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingLeft() -okhttp3.internal.http2.Header: java.lang.String TARGET_METHOD_UTF8 -androidx.viewpager2.R$id: int accessibility_custom_action_8 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_to_on_mtrl_000 -androidx.constraintlayout.widget.R$styleable: int Constraint_android_maxHeight -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModePasteDrawable -androidx.vectordrawable.animated.R$integer: R$integer() -james.adaptiveicon.R$attr: int track -wangdaye.com.geometricweather.R$color: int material_on_surface_stroke -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.vectordrawable.animated.R$dimen: int notification_large_icon_width -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: java.lang.Object invoke(java.lang.Object) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherPhase(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_enforceTextAppearance -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -com.xw.repo.bubbleseekbar.R$attr: int alertDialogStyle -androidx.legacy.coreutils.R$dimen: int notification_small_icon_background_padding -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,boolean) -james.adaptiveicon.R$color: int background_material_dark -androidx.fragment.R$id: int accessibility_custom_action_3 -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_TabLayoutTheme -okio.ForwardingSource: okio.Timeout timeout() -com.google.android.material.slider.BaseSlider: int getActiveThumbIndex() -okhttp3.internal.connection.RealConnection: java.net.Socket socket -okhttp3.internal.connection.RouteSelector: java.util.List inetSocketAddresses -com.google.gson.internal.LinkedTreeMap: boolean $assertionsDisabled -wangdaye.com.geometricweather.R$string: int about_page_indicator -wangdaye.com.geometricweather.R$attr: int tabPaddingStart -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: MpscLinkedQueue$LinkedQueueNode(java.lang.Object) -com.google.android.material.navigation.NavigationView: void setItemBackground(android.graphics.drawable.Drawable) -androidx.vectordrawable.R$styleable: int ColorStateListItem_android_alpha -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean isEmpty() -wangdaye.com.geometricweather.R$attr: int bsb_seek_by_section -james.adaptiveicon.R$drawable: int abc_seekbar_thumb_material -com.bumptech.glide.integration.okhttp.R$dimen: int compat_notification_large_icon_max_height -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String PrimaryPostalCode -androidx.lifecycle.ReportFragment$LifecycleCallbacks: ReportFragment$LifecycleCallbacks() -androidx.viewpager2.adapter.FragmentStateAdapter$2 -wangdaye.com.geometricweather.R$attr: int layout_constraintStart_toEndOf -com.github.rahatarmanahmed.cpv.CircularProgressView$5: CircularProgressView$5(com.github.rahatarmanahmed.cpv.CircularProgressView) -com.google.android.material.textfield.TextInputLayout: void setErrorIconVisible(boolean) -com.google.android.material.R$id: int material_clock_period_pm_button -james.adaptiveicon.R$styleable: int[] LinearLayoutCompat -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentStyle -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginBottom -cyanogenmod.hardware.ICMHardwareService: int getThermalState() -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_hide_bubble -wangdaye.com.geometricweather.db.entities.WeatherEntity: long updateTime -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean isSunlightEnhancementSelfManaged() -io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.turingtechnologies.materialscrollbar.R$dimen: int design_textinput_caption_translate_y -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String to -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeStepGranularity -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather -androidx.swiperefreshlayout.R$id: int tag_accessibility_actions -wangdaye.com.geometricweather.R$drawable: int flag_ar -androidx.appcompat.widget.ViewStubCompat: void setInflatedId(int) -retrofit2.ParameterHandler$Query: void apply(retrofit2.RequestBuilder,java.lang.Object) -androidx.preference.R$dimen: int preference_icon_minWidth -androidx.preference.R$styleable: int TextAppearance_textLocale -wangdaye.com.geometricweather.R$layout: int preference_recyclerview -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTheme -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitation() -wangdaye.com.geometricweather.R$color: int mtrl_btn_ripple_color -com.xw.repo.bubbleseekbar.R$attr: int drawableSize -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivityCreated(android.app.Activity,android.os.Bundle) -wangdaye.com.geometricweather.R$layout: int abc_activity_chooser_view -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ListView_DropDown -com.google.android.material.R$styleable: int ViewBackgroundHelper_android_background -wangdaye.com.geometricweather.db.entities.AlertEntity: void setId(java.lang.Long) -com.amap.api.fence.GeoFence: long p -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_RC4_128_MD5 -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -retrofit2.DefaultCallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dark -androidx.viewpager2.R$styleable: int[] GradientColorItem -com.google.android.material.datepicker.PickerFragment -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -okio.RealBufferedSink$1: void flush() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter jsonValue(java.lang.String) -com.turingtechnologies.materialscrollbar.R$id: int listMode -com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Time -com.google.android.material.R$styleable: int ChipGroup_selectionRequired -com.google.android.material.R$id: int accessibility_custom_action_29 -com.baidu.location.e.l$b: int e -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_registerChangeListener -io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer,io.reactivex.functions.Action) -androidx.viewpager.R$id: int blocking -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getMinWidthMinor() -androidx.hilt.R$id: int async -cyanogenmod.app.IPartnerInterface$Stub$Proxy: IPartnerInterface$Stub$Proxy(android.os.IBinder) -androidx.work.R$attr: int font -wangdaye.com.geometricweather.R$id: int text_input_start_icon -androidx.work.R$styleable: int GradientColor_android_endY -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_dither -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: java.lang.Object poll() -androidx.activity.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric Metric -wangdaye.com.geometricweather.R$color: int primary_dark_material_light -cyanogenmod.app.CMContextConstants$Features: java.lang.String LIVE_LOCK_SCREEN -okhttp3.CacheControl$Builder: boolean immutable -org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_102 -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: java.lang.String toString() -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: void invoke(java.lang.Throwable) -androidx.constraintlayout.widget.R$layout: int abc_action_mode_close_item_material -cyanogenmod.app.CustomTile$ExpandedStyle -com.google.android.material.R$string: R$string() -androidx.constraintlayout.widget.R$dimen: int abc_progress_bar_height_material -com.google.android.material.R$attr: int triggerSlack -wangdaye.com.geometricweather.Hilt_GeometricWeather: Hilt_GeometricWeather() -retrofit2.adapter.rxjava2.CallExecuteObservable: CallExecuteObservable(retrofit2.Call) -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 -retrofit2.RequestFactory$Builder: void validatePathName(int,java.lang.String) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int aqi -com.google.android.material.R$styleable: int Transition_transitionFlags -james.adaptiveicon.R$styleable: int MenuItem_iconTint -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide -okhttp3.internal.http2.Hpack$Writer: int dynamicTableByteCount -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int DISMISSED_STATE -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float no2 -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircleRadius -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: int UnitType -com.google.android.material.R$styleable: int[] MenuView -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.functions.Function mapper -com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout -wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingStart -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -cyanogenmod.themes.ThemeManager$2$1: ThemeManager$2$1(cyanogenmod.themes.ThemeManager$2,java.lang.String) -com.baidu.location.indoor.mapversion.c.a$d: void b(java.lang.String) -androidx.recyclerview.widget.RecyclerView: void setLayoutFrozen(boolean) -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Light -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstHorizontalBias -com.jaredrummler.android.colorpicker.R$drawable: int preference_list_divider_material -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_elevation -androidx.preference.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -androidx.hilt.work.R$color: int notification_icon_bg_color -androidx.appcompat.widget.LinearLayoutCompat: int getOrientation() -okhttp3.internal.cache.FaultHidingSink -com.turingtechnologies.materialscrollbar.R$attr: int cardUseCompatPadding -com.jaredrummler.android.colorpicker.R$styleable: int[] Toolbar -androidx.lifecycle.extensions.R$attr: int fontProviderAuthority -com.amap.api.fence.DistrictItem: void setAdcode(java.lang.String) -androidx.preference.R$attr: int ratingBarStyleIndicator -com.google.android.material.R$style: int Theme_MaterialComponents -james.adaptiveicon.R$drawable: int abc_ic_menu_overflow_material -androidx.preference.R$id: int search_edit_frame -androidx.preference.R$attr: int textAppearanceListItemSmall -wangdaye.com.geometricweather.common.basic.models.weather.UV: UV(java.lang.Integer,java.lang.String,java.lang.String) -androidx.preference.R$style: int Widget_AppCompat_SearchView -androidx.appcompat.widget.ActionBarOverlayLayout: ActionBarOverlayLayout(android.content.Context) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: java.lang.String Name -com.google.android.material.appbar.CollapsingToolbarLayout: int getCollapsedTitleGravity() -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_NoActionBar -androidx.appcompat.view.menu.ActionMenuItemView: void setCheckable(boolean) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Title_Inverse -com.jaredrummler.android.colorpicker.R$id: int scrollIndicatorDown -androidx.customview.R$styleable: int FontFamily_fontProviderQuery -okhttp3.RealCall: okhttp3.internal.http.RetryAndFollowUpInterceptor retryAndFollowUpInterceptor -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder listener(okhttp3.internal.http2.Http2Connection$Listener) -com.google.android.material.navigation.NavigationView: android.view.MenuInflater getMenuInflater() -okhttp3.ResponseBody: java.io.InputStream byteStream() -okhttp3.internal.http2.Http2Stream$StreamTimeout: void exitAndThrowIfTimedOut() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: double Value -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setDropDownBackgroundResource(int) -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getIconsThemePackageName() -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: int limit -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -androidx.legacy.coreutils.R$dimen -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActivityChooserView -okhttp3.internal.tls.BasicCertificateChainCleaner: BasicCertificateChainCleaner(okhttp3.internal.tls.TrustRootIndex) -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabView -okhttp3.internal.connection.RouteSelector: boolean hasNext() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial() -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_progressBarPadding -james.adaptiveicon.R$style: int Widget_AppCompat_PopupMenu_Overflow -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_11 -com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.floatingactionbutton.FloatingActionButtonImpl getImpl() -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_android_orderingFromXml -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_reboot -com.jaredrummler.android.colorpicker.R$attr: int navigationMode -com.google.android.material.R$attr: int boxStrokeWidthFocused -wangdaye.com.geometricweather.R$attr: int editTextPreferenceStyle -com.google.android.material.slider.RangeSlider: float getMinSeparation() -com.google.android.material.R$styleable: int CardView_contentPaddingTop -okio.Buffer: long readDecimalLong() -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_lunar -com.google.android.material.R$styleable: int ProgressIndicator_circularInset -com.amap.api.fence.DistrictItem: int describeContents() -okhttp3.internal.http2.Http2Stream: okio.Timeout readTimeout() -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: int bufferSize -androidx.lifecycle.extensions.R$drawable: int notification_bg_low_normal -cyanogenmod.weatherservice.WeatherProviderService$1: void cancelOngoingRequests() -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_dither -androidx.legacy.coreutils.R$dimen: int compat_button_padding_horizontal_material -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeFindDrawable -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline1 -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf -androidx.activity.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult -cyanogenmod.externalviews.ExternalViewProviderService$1$1: android.os.IBinder call() -androidx.fragment.R$styleable: int[] FragmentContainerView -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String readKey(android.database.Cursor,int) -james.adaptiveicon.R$id: int action_context_bar -androidx.vectordrawable.animated.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.R$styleable: int[] Constraint -android.didikee.donate.R$style: int Platform_V21_AppCompat_Light -com.jaredrummler.android.colorpicker.R$layout: int preference_information -com.turingtechnologies.materialscrollbar.R$id: int progress_circular -androidx.hilt.work.R$id: int fragment_container_view_tag -com.google.android.gms.tasks.RuntimeExecutionException: RuntimeExecutionException(java.lang.Throwable) -com.amap.api.fence.DistrictItem: android.os.Parcelable$Creator getCreator() -org.greenrobot.greendao.database.DatabaseOpenHelper: void onOpen(org.greenrobot.greendao.database.Database) -androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior: CoordinatorLayout$Behavior(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$string: int abc_activitychooserview_choose_application -com.jaredrummler.android.colorpicker.R$color: int primary_text_disabled_material_dark -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level valueOf(java.lang.String) -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TEMPERATURE -androidx.work.R$id: int icon -com.jaredrummler.android.colorpicker.R$color -okhttp3.internal.platform.Platform: boolean isCleartextTrafficPermitted(java.lang.String) -androidx.preference.R$attr: int actionMenuTextAppearance -james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Light -androidx.constraintlayout.widget.R$attr: int region_heightMoreThan -com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_tick_mark_material -cyanogenmod.providers.CMSettings$Global: long getLong(android.content.ContentResolver,java.lang.String) -com.turingtechnologies.materialscrollbar.R$string: int password_toggle_content_description -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) -androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: void setDrawable(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX) -com.turingtechnologies.materialscrollbar.R$attr: int icon -wangdaye.com.geometricweather.R$color: int material_slider_inactive_tick_marks_color -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType WEBP_A -com.autonavi.aps.amapapi.model.AMapLocationServer: org.json.JSONObject f() -com.google.android.material.button.MaterialButton: void setInsetTop(int) -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void dispose() -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.async.AsyncSession startAsyncSession() -okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality() -com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.animation.MotionSpec getShowMotionSpec() -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_color_disabled -androidx.hilt.lifecycle.R$id -wangdaye.com.geometricweather.R$string: int feedback_location_permissions_title -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Entry -wangdaye.com.geometricweather.R$styleable: int AlertDialog_singleChoiceItemLayout -androidx.constraintlayout.widget.R$id: int top -okhttp3.internal.Util: boolean containsInvalidHostnameAsciiCodes(java.lang.String) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionMode -com.google.android.material.R$id: int material_timepicker_view -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult -com.google.android.material.R$layout: int abc_dialog_title_material -okio.AsyncTimeout$1: void flush() -com.google.android.material.chip.Chip: void setCloseIconEndPadding(float) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial() -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_barColor -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: RxJava2CallAdapterFactory(io.reactivex.Scheduler,boolean) -cyanogenmod.weather.WeatherInfo: double getWindSpeed() -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedQueryParameter(java.lang.String,java.lang.String) -com.google.android.material.R$styleable: int StateListDrawable_android_enterFadeDuration -com.turingtechnologies.materialscrollbar.R$string: int abc_activity_chooser_view_see_all -com.google.android.material.R$attr: int isLightTheme -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getSnow() -androidx.recyclerview.R$id: int accessibility_custom_action_24 -okhttp3.internal.Util: java.nio.charset.Charset bomAwareCharset(okio.BufferedSource,java.nio.charset.Charset) -com.google.android.material.R$id: int up -wangdaye.com.geometricweather.R$attr: int deriveConstraintsFrom -com.github.rahatarmanahmed.cpv.CircularProgressView: android.graphics.RectF bounds -okio.RealBufferedSource$1: okio.RealBufferedSource this$0 -com.google.android.material.chip.Chip: void setHideMotionSpecResource(int) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_dialog_material_background -com.bumptech.glide.R$dimen: int notification_large_icon_height -androidx.lifecycle.viewmodel.savedstate.R: R() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.turingtechnologies.materialscrollbar.R$attr: int backgroundTintMode -android.didikee.donate.R$attr: int windowFixedHeightMinor -cyanogenmod.externalviews.ExternalView$3: cyanogenmod.externalviews.ExternalView this$0 -com.google.android.material.R$color: int material_blue_grey_900 -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_12 -androidx.swiperefreshlayout.R$integer: R$integer() -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize -androidx.preference.R$styleable: int ActionBar_subtitleTextStyle -androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModel get(java.lang.Class) -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackActiveTintList() -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void drainLoop() -com.xw.repo.bubbleseekbar.R$id: int titleDividerNoCustom -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_baselineAligned -androidx.appcompat.widget.Toolbar: void setTitle(java.lang.CharSequence) -androidx.appcompat.widget.ListPopupWindow: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -com.bumptech.glide.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: java.util.List textBlocItems -io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void subscribeInner(io.reactivex.ObservableSource) -com.google.android.material.R$string: int abc_searchview_description_clear -com.jaredrummler.android.colorpicker.R$dimen: int abc_switch_padding -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String OVERLAYS_URI -androidx.drawerlayout.R$id: int chronometer -wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_MIDDLE -cyanogenmod.weather.RequestInfo: boolean mIsQueryOnly -com.google.android.material.R$attr: int layout_optimizationLevel -com.jaredrummler.android.colorpicker.R$id: int multiply -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast -androidx.preference.R$attr: int drawableStartCompat -okhttp3.internal.connection.RealConnection: void onSettings(okhttp3.internal.http2.Http2Connection) -com.jaredrummler.android.colorpicker.ColorPreferenceCompat: ColorPreferenceCompat(android.content.Context,android.util.AttributeSet) -androidx.preference.R$attr: int drawableEndCompat -wangdaye.com.geometricweather.R$styleable: int Preference_layout -com.turingtechnologies.materialscrollbar.R$attr: int showDividers -androidx.appcompat.R$id: int blocking -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorColor -io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onSubscribe -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(java.lang.Iterable,io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -cyanogenmod.app.CustomTile$ExpandedListItem -com.turingtechnologies.materialscrollbar.R$string: int abc_activitychooserview_choose_application -androidx.work.R$id: int accessibility_custom_action_8 -com.google.android.material.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ButtonBar -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: BaiduIPLocationResult() -okhttp3.internal.cache.FaultHidingSink: void flush() -androidx.core.app.CoreComponentFactory -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: long remaining -wangdaye.com.geometricweather.R$id: int view_offset_helper -cyanogenmod.providers.CMSettings$Global -androidx.vectordrawable.animated.R$id -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast$Builder setHigh(double) -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_container -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginRight -androidx.fragment.app.Fragment$InstantiationException: Fragment$InstantiationException(java.lang.String,java.lang.Exception) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.R$id: int month_navigation_previous -androidx.appcompat.view.menu.ListMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias -androidx.appcompat.R$styleable: int StateListDrawable_android_constantSize -com.google.android.material.R$id: int spread_inside -android.didikee.donate.R$id: int submit_area -androidx.appcompat.R$styleable: int ActionBar_homeAsUpIndicator -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_38 -retrofit2.http.Part: java.lang.String value() -androidx.hilt.work.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -androidx.constraintlayout.widget.R$styleable: int ActionBarLayout_android_layout_gravity -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView_DropDown -com.bumptech.glide.integration.okhttp.R$drawable: int notify_panel_notification_icon_bg -james.adaptiveicon.R$dimen: int abc_text_size_headline_material -okhttp3.Handshake: java.security.Principal localPrincipal() -cyanogenmod.app.CMStatusBarManager: boolean localLOGV -androidx.lifecycle.MutableLiveData -wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_gitHub -wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity -androidx.loader.R$dimen: int compat_button_inset_vertical_material -android.didikee.donate.R$styleable: int Toolbar_contentInsetEndWithActions -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dialog -androidx.constraintlayout.widget.R$dimen: int abc_dialog_corner_radius_material -okhttp3.RealCall: boolean isExecuted() -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onError(java.lang.Throwable) -androidx.appcompat.R$attr: int titleMarginTop -cyanogenmod.app.StatusBarPanelCustomTile: long postTime -james.adaptiveicon.R$styleable: int Toolbar_contentInsetStart -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabBar -io.reactivex.internal.observers.BlockingObserver: boolean isDisposed() -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_MAX -com.turingtechnologies.materialscrollbar.R$attr: int thumbTintMode -androidx.recyclerview.R$dimen: R$dimen() -androidx.constraintlayout.widget.R$styleable: int Transition_layoutDuringTransition -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void request(long) -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_16dp -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_caption_material -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Bridge -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: void setColor(boolean) -androidx.preference.R$attr: int colorControlNormal -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getShortWindDescription() -androidx.lifecycle.AbstractSavedStateViewModelFactory: AbstractSavedStateViewModelFactory(androidx.savedstate.SavedStateRegistryOwner,android.os.Bundle) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_25 -com.google.android.material.R$attr: int hoveredFocusedTranslationZ -androidx.coordinatorlayout.R$id: int accessibility_custom_action_4 -com.google.android.material.R$dimen: int design_navigation_icon_size -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: IExternalViewProvider$Stub$Proxy(android.os.IBinder) -okhttp3.OkHttpClient$1 -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean isEnabled() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getRealFeelTemperature() -com.amap.api.fence.PoiItem$1: PoiItem$1() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleDrawable -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_CIRCLE -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$drawable -androidx.fragment.R$styleable: int FontFamily_fontProviderPackage -io.reactivex.exceptions.CompositeException: java.lang.Throwable getCause() -cyanogenmod.externalviews.ExternalView$2: boolean val$visible -com.google.android.material.R$color: int abc_search_url_text -retrofit2.Retrofit$Builder: boolean validateEagerly -okhttp3.internal.http2.Http2Connection$7: void execute() -androidx.preference.R$styleable: int ViewStubCompat_android_layout -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: ObservableRetryWhen$RepeatWhenObserver(io.reactivex.Observer,io.reactivex.subjects.Subject,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$attr: int titleMarginEnd -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSwoopDuration -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerSlack -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_search_api_material -com.turingtechnologies.materialscrollbar.R$id: int fill -cyanogenmod.themes.ThemeManager: void requestThemeChange(java.util.Map,boolean) -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_visible -com.bumptech.glide.load.engine.GlideException: void printStackTrace(java.io.PrintWriter) -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber -com.jaredrummler.android.colorpicker.R$styleable: int PopupWindowBackgroundState_state_above_anchor -com.jaredrummler.android.colorpicker.R$layout: int notification_action -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -retrofit2.ParameterHandler$Query: retrofit2.Converter valueConverter -okhttp3.HttpUrl$Builder: java.util.List encodedQueryNamesAndValues -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: java.lang.String unitAbbreviation -com.turingtechnologies.materialscrollbar.R$attr: int strokeWidth -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable publish() -androidx.preference.R$attr: int titleTextAppearance -android.didikee.donate.R$layout: int abc_activity_chooser_view_list_item -androidx.vectordrawable.animated.R$layout: int notification_action -com.baidu.location.indoor.c: void clear() -com.amap.api.location.UmidtokenInfo$a: void onLocationChanged(com.amap.api.location.AMapLocation) -android.didikee.donate.R$color: int abc_hint_foreground_material_light -com.google.android.material.R$styleable: int BottomNavigationView_itemIconSize -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void next(java.lang.Object) -com.google.android.material.R$attr: int onNegativeCross -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: java.lang.String Unit -james.adaptiveicon.R$id -com.google.android.material.R$styleable: int MaterialCardView_checkedIcon -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_EXTRA -okhttp3.Headers$Builder: okhttp3.Headers$Builder removeAll(java.lang.String) -okhttp3.internal.connection.RealConnection: okhttp3.internal.connection.RealConnection testConnection(okhttp3.ConnectionPool,okhttp3.Route,java.net.Socket,long) -io.reactivex.internal.operators.observable.ObserverResourceWrapper: java.util.concurrent.atomic.AtomicReference upstream -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: int getSourceColor() -io.reactivex.internal.queue.SpscArrayQueue: SpscArrayQueue(int) -james.adaptiveicon.R$styleable: int TextAppearance_textAllCaps -com.google.android.material.circularreveal.CircularRevealLinearLayout -androidx.lifecycle.SavedStateHandle$1: android.os.Bundle saveState() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void errorAll(io.reactivex.Observer) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: MfForecastResult$DailyForecast$DailyTemperature() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_begin -com.google.android.material.R$styleable: int AlertDialog_buttonIconDimen -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -cyanogenmod.app.ICMTelephonyManager$Stub -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.R$color: int colorLevel_2 -com.xw.repo.bubbleseekbar.R$color: int foreground_material_dark -androidx.preference.R$attr: int titleMargin -androidx.appcompat.R$styleable: int MenuView_android_itemIconDisabledAlpha -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setSize(float) -androidx.preference.R$attr: int progressBarPadding -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom -androidx.appcompat.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMarkTintMode -okio.Segment: Segment() -com.bumptech.glide.integration.okhttp.R$id: R$id() -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind wind -com.google.android.material.R$attr: int backgroundInsetTop -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: retrofit2.Call $this_await$inlined -androidx.preference.R$styleable: int DialogPreference_android_negativeButtonText -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation valueOf(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: java.lang.String Unit -androidx.appcompat.R$attr: int titleTextColor -com.google.android.material.chip.Chip: void setChipBackgroundColor(android.content.res.ColorStateList) -androidx.drawerlayout.R$drawable: int notification_bg_low_pressed -androidx.constraintlayout.widget.R$styleable: int Variant_region_widthLessThan -androidx.appcompat.R$attr: int arrowHeadLength -com.google.android.material.R$id: int staticLayout -james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.xw.repo.bubbleseekbar.R$attr: int track -wangdaye.com.geometricweather.R$id: int touch_outside -wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_offset -okhttp3.Cookie: boolean persistent -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState[] values() -wangdaye.com.geometricweather.R$attr: int itemShapeInsetEnd -wangdaye.com.geometricweather.R$id: int month_navigation_fragment_toggle -okhttp3.CertificatePinner$Builder -androidx.appcompat.R$attr: int listPreferredItemHeightSmall -com.google.android.material.slider.Slider: void setValueTo(float) -wangdaye.com.geometricweather.R$id: int TOP_START -wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_singlechoice -androidx.viewpager2.R$styleable: int ViewPager2_android_orientation -androidx.constraintlayout.widget.R$anim: int abc_slide_out_bottom -okhttp3.internal.http2.Http2Connection$6: okhttp3.internal.http2.Http2Connection this$0 -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_holo_light -james.adaptiveicon.R$bool: int abc_config_actionMenuItemAllCaps -androidx.viewpager.R$id: int italic -io.reactivex.Observable: io.reactivex.Single reduceWith(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) -retrofit2.HttpServiceMethod$CallAdapted: retrofit2.CallAdapter callAdapter -androidx.preference.R$id: int uniform -cyanogenmod.app.StatusBarPanelCustomTile: int getId() -wangdaye.com.geometricweather.R$attr: int backgroundTint -okhttp3.internal.http2.Http2Connection: okhttp3.Protocol getProtocol() -wangdaye.com.geometricweather.R$styleable: int TextAppearance_textAllCaps -androidx.cardview.widget.CardView: float getMaxCardElevation() -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.view.WindowManager access$500(cyanogenmod.externalviews.KeyguardExternalViewProviderService) -androidx.constraintlayout.widget.R$styleable: int PopupWindow_android_popupBackground -com.turingtechnologies.materialscrollbar.R$attr: int hideOnContentScroll -cyanogenmod.hardware.CMHardwareManager: int FEATURE_PERSISTENT_STORAGE -com.google.android.material.progressindicator.ProgressIndicator: void setProgressDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: java.lang.String Unit -androidx.recyclerview.R$attr: int fontProviderCerts -androidx.appcompat.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean -wangdaye.com.geometricweather.R$array: int notification_text_color_values -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_query -androidx.appcompat.resources.R$dimen: int notification_big_circle_margin -com.google.android.material.R$dimen: int mtrl_textinput_box_corner_radius_small -cyanogenmod.app.CMTelephonyManager: void setSubState(int,boolean) -wangdaye.com.geometricweather.R$dimen: int notification_right_icon_size -com.google.android.material.R$dimen: int fastscroll_minimum_range -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric() -wangdaye.com.geometricweather.R$string: int transition_activity_search_bar -androidx.fragment.R$integer: int status_bar_notification_info_maxnum -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_BottomNavigationView -androidx.appcompat.R$color: int dim_foreground_material_light -androidx.appcompat.R$attr: int autoSizePresetSizes -retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: CompletableFutureCallAdapterFactory$CallCancelCompletableFuture(retrofit2.Call) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: java.util.concurrent.atomic.AtomicReference queue -androidx.hilt.lifecycle.R$id: int tag_accessibility_clickable_spans -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$dimen: int cpv_item_size -wangdaye.com.geometricweather.R$anim: int fragment_fade_exit -wangdaye.com.geometricweather.R$string: int content_des_so2 -wangdaye.com.geometricweather.background.receiver.widget.WidgetDayProvider -com.xw.repo.bubbleseekbar.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework -wangdaye.com.geometricweather.db.entities.HourlyEntityDao -cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener: void onWeatherServiceProviderChanged(java.lang.String) -wangdaye.com.geometricweather.R$id: int searchBar -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Tooltip -androidx.viewpager2.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_vertical_setting -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String getTime(android.content.Context,java.util.Date) -androidx.core.R$id: int dialog_button -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getDate(java.lang.String) -androidx.preference.R$style: int Base_Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode valueOf(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_140 -androidx.recyclerview.R$id: int accessibility_custom_action_10 -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorEnabled -com.google.android.material.R$styleable: int ChipGroup_checkedChip -com.google.android.material.R$string: int exposed_dropdown_menu_content_description -android.didikee.donate.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -wangdaye.com.geometricweather.R$layout: int design_navigation_menu -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_corner -com.xw.repo.bubbleseekbar.R$attr: int editTextColor -com.google.android.material.R$styleable: int Layout_layout_constraintTop_toTopOf -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_backgroundTint -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_min -androidx.customview.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: int getStatus() -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light -androidx.constraintlayout.widget.R$attr: int iconTintMode -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void emit() -okhttp3.Response$Builder: okhttp3.Response$Builder headers(okhttp3.Headers) -wangdaye.com.geometricweather.R$attr: int navigationIconColor -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStartPadding -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_keyline -org.greenrobot.greendao.AbstractDao: long insertWithoutSettingPk(java.lang.Object) -androidx.constraintlayout.helper.widget.Layer: void setScaleX(float) -androidx.hilt.work.R$styleable: int FragmentContainerView_android_tag -james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -okhttp3.internal.http2.Settings: int HEADER_TABLE_SIZE -androidx.lifecycle.Lifecycling: int REFLECTIVE_CALLBACK -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: IWeatherProviderService$Stub$Proxy(android.os.IBinder) -com.bumptech.glide.integration.okhttp.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property CityId -com.turingtechnologies.materialscrollbar.AlphabetIndicator -james.adaptiveicon.R$styleable: int FontFamily_fontProviderFetchStrategy -com.bumptech.glide.R$attr: int fontStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_landscape_header_width -okhttp3.MultipartBody$Part: okhttp3.RequestBody body() -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_id -com.xw.repo.bubbleseekbar.R$id: int action_bar_spinner -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_fabSize -androidx.appcompat.R$attr: int defaultQueryHint -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer realFeelTemperature -okhttp3.internal.http2.Http2Connection: long intervalPongsReceived -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial() -okhttp3.HttpUrl$Builder: int slashCount(java.lang.String,int,int) -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.R$string: int content_des_minutely_precipitation -wangdaye.com.geometricweather.R$string: int phase_waxing_crescent -com.google.android.material.R$styleable: int TextInputLayout_counterMaxLength -james.adaptiveicon.R$layout: int abc_screen_simple -com.google.android.material.tabs.TabLayout: void setInlineLabelResource(int) -androidx.appcompat.R$attr: int actionProviderClass -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2 -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActivityChooserView -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_LED_OFF -com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonCompat -wangdaye.com.geometricweather.location.services.LocationService: void cancel() -com.google.android.material.R$styleable: int MaterialCardView_checkedIconTint -wangdaye.com.geometricweather.R$id: int filled -androidx.preference.R$integer: int abc_config_activityDefaultDur -cyanogenmod.profiles.BrightnessSettings$1: cyanogenmod.profiles.BrightnessSettings[] newArray(int) -androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean offer(java.lang.Object) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setCity_code(int) -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onNext(java.lang.Object) -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode lvNext() -okhttp3.OkHttpClient: int callTimeout -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_NoActionBar_Bridge -com.jaredrummler.android.colorpicker.R$attr: int alertDialogTheme -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onNext(java.lang.Object) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_16 -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: long EpochRise -com.google.android.material.R$styleable: int ChipGroup_chipSpacingHorizontal -com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_bottom_material -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType COLOR_TYPE -com.google.android.material.R$styleable: int Chip_shapeAppearance -wangdaye.com.geometricweather.R$style: int Base_AlertDialog_AppCompat -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1 -android.didikee.donate.R$attr: int titleTextAppearance -com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_FENCE -okhttp3.Headers: int size() -io.reactivex.internal.operators.observable.ObservableGroupBy$State: io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver parent -com.amap.api.location.APSService: int b -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.AlertEntity) -androidx.vectordrawable.animated.R$dimen: int notification_action_text_size -androidx.preference.R$attr: int popupTheme -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float icePrecipitation -com.google.android.material.R$styleable: int ConstraintSet_layout_constrainedWidth -okhttp3.Interceptor$Chain: okhttp3.Request request() -okhttp3.Challenge: boolean equals(java.lang.Object) -com.google.android.material.R$id: int pathRelative -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float ice -james.adaptiveicon.R$drawable: int abc_list_selector_background_transition_holo_dark -cyanogenmod.app.ICustomTileListener: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -com.google.android.material.R$style: int Base_Widget_AppCompat_ListView_Menu -androidx.vectordrawable.animated.R$id: int blocking -androidx.constraintlayout.widget.R$styleable: int MenuItem_actionViewClass -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig chineseCityEntityDaoConfig -androidx.vectordrawable.R$styleable: int[] FontFamilyFont -com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_end_color -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_shapeAppearanceOverlay -io.reactivex.internal.util.ArrayListSupplier: java.lang.Object call() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: MfForecastV2Result$ForecastProperties$ProbabilityForecastV2() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_viewInflaterClass -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_stroke_width_focused -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: int status -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -androidx.customview.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setModifyInHour(boolean) -wangdaye.com.geometricweather.R$attr: int percentY -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() -androidx.viewpager2.R$dimen: int fastscroll_margin -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeTextType -wangdaye.com.geometricweather.common.ui.widgets.DonateImageView -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$attr: int suggestionRowLayout -wangdaye.com.geometricweather.R$layout: int abc_action_menu_item_layout -androidx.constraintlayout.widget.R$styleable: int Layout_barrierDirection -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: FlowableCreate$BaseEmitter(org.reactivestreams.Subscriber) -androidx.transition.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$styleable: int Chip_iconStartPadding -com.google.android.material.R$attr: int insetForeground -androidx.lifecycle.ReportFragment -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -com.google.android.material.R$anim: int design_snackbar_out -com.google.android.material.R$style: int Base_V22_Theme_AppCompat -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconTint -cyanogenmod.app.Profile: void addSecondaryUuid(java.util.UUID) -wangdaye.com.geometricweather.R$attr: int applyMotionScene -okhttp3.internal.annotations.EverythingIsNonNull -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_ttcIndex -io.reactivex.Observable: java.lang.Iterable blockingIterable(int) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: java.lang.String ShortPhrase -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_creator -androidx.core.R$id: int action_image -androidx.appcompat.R$styleable: int TextAppearance_android_textStyle -okhttp3.CacheControl: okhttp3.CacheControl FORCE_CACHE -cyanogenmod.externalviews.IExternalViewProvider: void onResume() -okio.Util: void sneakyRethrow(java.lang.Throwable) -com.google.android.material.R$dimen: int mtrl_extended_fab_start_padding_icon -cyanogenmod.profiles.LockSettings$1: LockSettings$1() -wangdaye.com.geometricweather.main.layouts.TrendHorizontalLinearLayoutManager -androidx.appcompat.R$attr: int backgroundSplit -wangdaye.com.geometricweather.R$attr: int searchViewStyle -androidx.preference.PreferenceScreen -com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -androidx.legacy.coreutils.R$color: int ripple_material_light -com.google.android.material.R$attr: int tabPaddingTop -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: AMapLocationClientOption$AMapLocationPurpose(java.lang.String,int) -androidx.activity.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.R$styleable: int[] Variant -androidx.constraintlayout.widget.R$dimen: int abc_text_size_body_1_material -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Title -io.reactivex.Observable: io.reactivex.Observable takeUntil(io.reactivex.ObservableSource) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_RadioButton -androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context) -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_precise_anchor_extra_offset -okio.Okio: okio.Source source(java.io.InputStream) -wangdaye.com.geometricweather.R$string: int content_des_pm10 -cyanogenmod.providers.CMSettings$Secure: boolean putLong(android.content.ContentResolver,java.lang.String,long) -androidx.appcompat.widget.AppCompatRadioButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerError(int,java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: java.util.List night -androidx.vectordrawable.R$dimen: int notification_media_narrow_margin -androidx.core.R$styleable: int GradientColor_android_gradientRadius -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleContentDescription -androidx.constraintlayout.widget.R$id: int animateToEnd -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableBottom -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -cyanogenmod.weatherservice.WeatherProviderService -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent -okhttp3.internal.http2.Http2Connection$2 -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onComplete() -androidx.constraintlayout.widget.R$string: int abc_menu_delete_shortcut_label -com.jaredrummler.android.colorpicker.R$color: int abc_hint_foreground_material_light -com.google.android.material.R$attr: int actionModeFindDrawable -androidx.appcompat.R$styleable: int MenuView_android_windowAnimationStyle -com.autonavi.aps.amapapi.model.AMapLocationServer: boolean e -androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_PROVIDER_WITH_EVENT -androidx.core.widget.NestedScrollView -com.amap.api.location.AMapLocation: java.lang.String getProvince() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: void setStatus(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String brandId -okhttp3.internal.connection.StreamAllocation: boolean canceled -okhttp3.internal.http2.Http2Stream: long unacknowledgedBytesRead -com.google.android.material.progressindicator.ProgressIndicator: void setTrackColor(int) -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: void run() -com.turingtechnologies.materialscrollbar.R$integer: int abc_config_activityShortDur -android.didikee.donate.R$id: int listMode -okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: Http2Connection$IntervalPingRunnable(okhttp3.internal.http2.Http2Connection) -androidx.work.R$styleable: int FontFamily_fontProviderQuery -com.amap.api.location.AMapLocation: void setMock(boolean) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void innerError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$id: int src_over -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void cancel() -com.google.android.material.R$drawable: int abc_list_pressed_holo_light -androidx.constraintlayout.widget.R$attr: int titleMarginBottom -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_container -wangdaye.com.geometricweather.R$color: int mtrl_fab_icon_text_color_selector -wangdaye.com.geometricweather.R$styleable: int[] AppCompatSeekBar -cyanogenmod.app.ICustomTileListener$Stub: ICustomTileListener$Stub() -wangdaye.com.geometricweather.R$dimen: int widget_standard_weather_icon_size -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dividerHorizontal -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_36dp -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver parent -cyanogenmod.app.ThemeVersion -androidx.appcompat.R$attr: int searchHintIcon -com.google.android.material.progressindicator.ProgressIndicator: int getCircularInset() -com.amap.api.location.AMapLocation: void setGpsAccuracyStatus(int) -james.adaptiveicon.R$styleable: int SwitchCompat_switchTextAppearance -androidx.vectordrawable.R$style -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setTemperatureUnit(int) -androidx.preference.Preference: void setOnPreferenceChangeListener(androidx.preference.Preference$OnPreferenceChangeListener) -androidx.preference.R$id: int accessibility_custom_action_25 -android.didikee.donate.R$styleable: int Toolbar_subtitleTextColor -androidx.core.R$dimen: int compat_button_padding_vertical_material -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver -cyanogenmod.themes.IThemeService$Stub$Proxy: void removeUpdates(cyanogenmod.themes.IThemeChangeListener) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_homeAsUpIndicator -com.jaredrummler.android.colorpicker.R$attr: int allowStacking -wangdaye.com.geometricweather.R$id: int fade -androidx.appcompat.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog -wangdaye.com.geometricweather.R$styleable: int Chip_android_textColor -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_EditText -androidx.viewpager2.widget.ViewPager2: int getPageSize() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_font -cyanogenmod.hardware.CMHardwareManager: int getSupportedFeatures() -com.xw.repo.bubbleseekbar.R$attr: int paddingEnd -com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_material_dark -james.adaptiveicon.R$attr: int ratingBarStyleSmall -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_weight -androidx.fragment.R$id: int blocking -io.reactivex.observers.DisposableObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.recyclerview.R$color: int notification_action_color_filter -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_BottomSheet_Modal -cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit -cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.CMStatusBarManager getInstance(android.content.Context) -com.xw.repo.bubbleseekbar.R$id: int tabMode -com.baidu.location.e.h$a: com.baidu.location.e.h$a b -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextEnabled -com.google.android.material.R$id: int postLayout -okio.Pipe: okio.Sink sink() -com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_12 -androidx.preference.R$styleable: int FontFamilyFont_fontWeight -androidx.constraintlayout.widget.R$dimen: int notification_right_side_padding_top -androidx.appcompat.R$style: int Base_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: int getStatus() -com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipBackgroundColor() -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.Observer downstream -androidx.customview.R$dimen: int notification_media_narrow_margin -com.turingtechnologies.materialscrollbar.R$dimen: int abc_seekbar_track_progress_height_material -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: android.os.IBinder mRemote -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_titleEnabled -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Level -io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite COMPLETE -androidx.transition.R$layout -com.google.android.material.slider.Slider: Slider(android.content.Context) -android.didikee.donate.R$id: int src_over -androidx.swiperefreshlayout.R$styleable: int GradientColorItem_android_color -androidx.dynamicanimation.R$integer: R$integer() -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onNext(java.lang.Object) -androidx.fragment.R$dimen: int compat_button_inset_vertical_material -android.didikee.donate.R$color: int material_grey_900 -android.didikee.donate.R$attr: int overlapAnchor -cyanogenmod.app.Profile: void addProfileGroup(cyanogenmod.app.ProfileGroup) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeFindDrawable -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: java.lang.Integer proba6H -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_android_thumb -wangdaye.com.geometricweather.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -com.amap.api.location.AMapLocationClientOption: long s -com.bumptech.glide.integration.okhttp.R$attr: int ttcIndex -com.google.android.material.floatingactionbutton.FloatingActionButton: int getSize() -okio.GzipSink -okhttp3.TlsVersion: java.lang.String javaName() -com.jaredrummler.android.colorpicker.R$attr: int drawableSize -com.google.android.gms.common.api.UnsupportedApiCallException -james.adaptiveicon.R$string -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: boolean mCanceled -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_COLOR_VALIDATOR -wangdaye.com.geometricweather.R$drawable: int abc_popup_background_mtrl_mult -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: int status -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String from -androidx.recyclerview.widget.RecyclerView: void setHasFixedSize(boolean) -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_background_transition_holo_light -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedHeightMajor() -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_toRightOf -android.didikee.donate.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -androidx.legacy.content.WakefulBroadcastReceiver: WakefulBroadcastReceiver() -androidx.lifecycle.extensions.R$styleable -com.jaredrummler.android.colorpicker.R$layout: int preference_list_fragment -com.jaredrummler.android.colorpicker.R$drawable: int cpv_preset_checked -androidx.preference.R$color: int abc_primary_text_material_light -wangdaye.com.geometricweather.R$drawable: int preference_list_divider_material -com.google.android.material.R$style: int TextAppearance_AppCompat_Small_Inverse -com.jaredrummler.android.colorpicker.R$attr: int isPreferenceVisible -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: java.lang.String Unit -okhttp3.Route: java.net.Proxy proxy() -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.Observer downstream -okio.RealBufferedSink: okio.BufferedSink writeUtf8(java.lang.String,int,int) -com.xw.repo.bubbleseekbar.R$string: int abc_shareactionprovider_share_with_application -wangdaye.com.geometricweather.R$attr: int backgroundStacked -wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_liftable -com.google.android.gms.base.R$color: R$color() -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_background -wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_Tooltip -com.jaredrummler.android.colorpicker.R$attr: int titleMargins -com.google.android.material.R$attr: int collapsedTitleTextAppearance -wangdaye.com.geometricweather.R$id: int notification_main_column -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Large -androidx.activity.R$styleable: int GradientColor_android_tileMode -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_popupBackground -wangdaye.com.geometricweather.R$attr: int constraint_referenced_ids -com.google.android.material.R$dimen: int mtrl_tooltip_minHeight -okhttp3.Response: java.lang.String header(java.lang.String,java.lang.String) -com.xw.repo.bubbleseekbar.R$color: int error_color_material_dark -com.xw.repo.bubbleseekbar.R$style -cyanogenmod.power.PerformanceManager: boolean setPowerProfile(int) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -android.didikee.donate.R$color: int button_material_dark -com.turingtechnologies.materialscrollbar.R$drawable: int design_fab_background -androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$id: int recycler_view -androidx.appcompat.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.recyclerview.R$id: int line1 -com.google.android.material.bottomnavigation.BottomNavigationView: android.view.MenuInflater getMenuInflater() -androidx.appcompat.widget.SwitchCompat: int getThumbOffset() -androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_width_minor -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMode -androidx.lifecycle.extensions.R$styleable: int[] FragmentContainerView -androidx.recyclerview.widget.LinearLayoutManager: LinearLayoutManager(android.content.Context,android.util.AttributeSet,int,int) -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_font -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorButtonNormal -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getDescription() -com.google.android.material.R$id: int snackbar_text -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -androidx.lifecycle.ProcessLifecycleOwner: void dispatchStopIfNeeded() -wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_collapsible -com.turingtechnologies.materialscrollbar.R$attr: int height -cyanogenmod.weatherservice.ServiceRequest$Status -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: MfCurrentResult$Position() -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.util.List Area -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_maxActionInlineWidth -androidx.recyclerview.R$attr: int fontProviderFetchTimeout -androidx.preference.R$styleable: int CoordinatorLayout_keylines -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: KeyguardExternalViewProviderService$Provider$ProviderImpl(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider,cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider) -okhttp3.internal.http2.Http2Stream$StreamTimeout: void timedOut() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: CaiYunMainlyResult() -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object DONE -com.google.android.material.slider.RangeSlider: void setTrackActiveTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxBackgroundColor -io.reactivex.Observable: io.reactivex.Single singleOrError() -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -com.google.android.material.R$styleable: int[] BottomAppBar -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog_Alert -cyanogenmod.externalviews.ExternalViewProperties: int getX() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade RealFeelTemperatureShade -wangdaye.com.geometricweather.R$attr: int mock_label -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_max -cyanogenmod.app.LiveLockScreenInfo$Builder -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvIndex -com.jaredrummler.android.colorpicker.R$id: int action_bar_root -wangdaye.com.geometricweather.settings.activities.DailyTrendDisplayManageActivity: DailyTrendDisplayManageActivity() -wangdaye.com.geometricweather.R$id: int activity_settings_container -androidx.constraintlayout.widget.R$styleable: int AlertDialog_buttonPanelSideLayout -com.google.android.material.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius -com.google.android.material.R$styleable: int ProgressIndicator_indicatorCornerRadius -com.amap.api.location.DPoint: DPoint(double,double) -androidx.viewpager2.R$attr: int alpha -wangdaye.com.geometricweather.R$attr: int flow_verticalBias -com.google.android.material.R$style: int Base_Widget_AppCompat_ProgressBar -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean checkTerminated(boolean,boolean,io.reactivex.Observer,boolean,io.reactivex.internal.operators.observable.ObservableZip$ZipObserver) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX names -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motion_triggerOnCollision -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: AccuCurrentResult$ApparentTemperature() -com.google.android.material.R$id: int ignoreRequest -org.greenrobot.greendao.AbstractDao: java.lang.Object getKeyVerified(java.lang.Object) -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableTop -okhttp3.Cookie$Builder: java.lang.String path -com.jaredrummler.android.colorpicker.R$dimen: int abc_disabled_alpha_material_light -androidx.viewpager2.R$id: int item_touch_helper_previous_elevation -android.didikee.donate.R$style: int Base_Theme_AppCompat -cyanogenmod.app.IProfileManager$Stub$Proxy: void addNotificationGroup(android.app.NotificationGroup) -wangdaye.com.geometricweather.R$string: int wind_4 -androidx.constraintlayout.widget.R$attr: int applyMotionScene -james.adaptiveicon.R$color: int bright_foreground_disabled_material_light -io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function,boolean) -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.disposables.Disposable upstream -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Small -com.google.android.material.R$color: int dim_foreground_disabled_material_light -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomSheetDialog -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: ObservableRefCount$RefCountObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableRefCount,io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.util.Date EffectiveDate -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -androidx.appcompat.R$styleable: int SwitchCompat_switchTextAppearance -com.google.android.material.R$dimen: int design_bottom_navigation_margin -androidx.loader.app.LoaderManagerImpl$LoaderViewModel: LoaderManagerImpl$LoaderViewModel() -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void cancelAll() -com.google.android.material.R$integer: int mtrl_tab_indicator_anim_duration_ms -androidx.appcompat.R$drawable: int abc_list_divider_mtrl_alpha -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue getOrCreateQueue() -androidx.coordinatorlayout.R$styleable: int GradientColor_android_startY -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: io.reactivex.internal.fuseable.SimpleQueue queue -okhttp3.internal.Internal: java.io.IOException timeoutExit(okhttp3.Call,java.io.IOException) -androidx.coordinatorlayout.R$id: int tag_unhandled_key_listeners -androidx.preference.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -com.turingtechnologies.materialscrollbar.R$attr: int actionModeCopyDrawable -androidx.constraintlayout.widget.R$styleable: int[] Transform -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean -androidx.preference.R$styleable: int AppCompatTheme_alertDialogStyle -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindContainer -wangdaye.com.geometricweather.R$string: int key_widget_text -cyanogenmod.weather.WeatherLocation: WeatherLocation(cyanogenmod.weather.WeatherLocation$1) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver) -wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected -cyanogenmod.app.CustomTile$ExpandedItem: android.graphics.Bitmap itemBitmapResource -androidx.recyclerview.R$attr: int fastScrollVerticalTrackDrawable -androidx.transition.R$id: int right_icon -io.reactivex.Observable: io.reactivex.Observable materialize() -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastHorizontalStyle -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMenuView -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int CountMinute -androidx.appcompat.R$dimen: int abc_dialog_fixed_width_major -okio.AsyncTimeout$2: java.lang.String toString() -io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.MaybeObserver) -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_dark -androidx.hilt.lifecycle.R$attr -james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogStyle -androidx.constraintlayout.widget.R$attr: int actionOverflowButtonStyle -wangdaye.com.geometricweather.R$id: int BOTTOM_START -androidx.preference.R$id: int accessibility_custom_action_4 -com.google.android.material.R$layout: int abc_screen_simple -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onSubscribe(org.reactivestreams.Subscription) -androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_tint -androidx.lifecycle.LiveData$LifecycleBoundObserver: androidx.lifecycle.LiveData this$0 -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void run() -androidx.appcompat.R$attr: int actionViewClass -com.turingtechnologies.materialscrollbar.R$color: int tooltip_background_dark -com.google.android.gms.common.stats.WakeLockEvent -io.reactivex.internal.observers.BasicIntQueueDisposable: boolean offer(java.lang.Object) -androidx.preference.R$attr: int allowDividerAfterLastItem -com.google.android.material.R$styleable: int KeyAttribute_android_transformPivotY -okhttp3.internal.connection.RealConnection: void connectTls(okhttp3.internal.connection.ConnectionSpecSelector) -wangdaye.com.geometricweather.R$string: int key_hide_lunar -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Request followUpRequest(okhttp3.Response,okhttp3.Route) -cyanogenmod.hardware.ICMHardwareService$Stub: java.lang.String DESCRIPTOR -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: ExternalViewProviderService$Provider$ProviderImpl$2(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -androidx.appcompat.view.menu.ExpandedMenuView: ExpandedMenuView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$style: int Widget_Design_ScrimInsetsFrameLayout -androidx.loader.R$dimen: int notification_top_pad -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceFragmentCompat -com.jaredrummler.android.colorpicker.R$id: int action_mode_bar -androidx.constraintlayout.widget.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -androidx.appcompat.R$styleable: int AppCompatTheme_colorPrimary -androidx.appcompat.R$styleable: int StateListDrawable_android_dither -com.google.android.material.chip.Chip: void setBackgroundDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty24H -wangdaye.com.geometricweather.R$color: int mtrl_textinput_default_box_stroke_color -okio.Pipe$PipeSink: okio.Timeout timeout -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,int) -cyanogenmod.app.ProfileGroup: java.util.UUID mUuid -androidx.appcompat.resources.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.R$attr: int layout_constraintVertical_bias -android.didikee.donate.R$drawable: int abc_text_select_handle_left_mtrl_dark -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Info -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar -cyanogenmod.app.IProfileManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_visible -james.adaptiveicon.R$style: int Base_Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$layout: int preference_information_material -io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean offer(java.lang.Object,java.lang.Object) -androidx.appcompat.R$drawable: int abc_textfield_default_mtrl_alpha -james.adaptiveicon.R$styleable: int FontFamily_fontProviderCerts -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY_DAY -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCardBackgroundColor() -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_black -cyanogenmod.app.CustomTile$ExpandedStyle: int styleId -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.functions.Function mapper -androidx.lifecycle.extensions.R$anim: int fragment_open_enter -wangdaye.com.geometricweather.R$id: int action_manage -com.google.android.material.internal.NavigationMenuItemView: void setMaxLines(int) -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingEnd -cyanogenmod.providers.CMSettings$Secure$2: CMSettings$Secure$2() -com.google.android.material.R$attr: int materialCalendarDay -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling Cooling -wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitleIconStyle -androidx.preference.R$style: int Preference_SwitchPreference_Material -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_to_on_mtrl_015 -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Borderless -okio.Buffer: okio.ByteString hmacSha256(okio.ByteString) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_height -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: retrofit2.Callback val$callback -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean cancelled -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -androidx.preference.R$layout: int abc_search_view -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -okhttp3.internal.connection.StreamAllocation: okhttp3.ConnectionPool connectionPool -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$GeoLanguage t -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setSensorEnable(boolean) -androidx.dynamicanimation.R$styleable: int GradientColor_android_type -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity: HourlyTrendWidgetConfigActivity() -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.xw.repo.bubbleseekbar.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$string: int precipitation_rainstorm -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService listenerExecutor -io.reactivex.Observable: io.reactivex.Observable error(java.util.concurrent.Callable) -androidx.viewpager2.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getAbbreviation(android.content.Context) -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float unitFactor -androidx.customview.R$id: int italic -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: ExternalViewProviderService$Provider$ProviderImpl$7(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,int,int,int,int,boolean,android.graphics.Rect) -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar -com.google.android.material.R$styleable: int MaterialButton_android_insetBottom -wangdaye.com.geometricweather.R$id: int widget_day -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_title_material -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode FLOW_CONTROL_ERROR -com.google.gson.JsonIOException: JsonIOException(java.lang.String) -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.BiFunction resultSelector -com.google.android.material.R$drawable: int tooltip_frame_light -androidx.constraintlayout.widget.R$attr: int visibilityMode -okhttp3.Dispatcher: void setIdleCallback(java.lang.Runnable) -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void drain() -androidx.customview.R$id: int async -com.bumptech.glide.R$drawable: int notification_tile_bg -com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_small_material -androidx.constraintlayout.widget.R$id: int notification_background -com.turingtechnologies.materialscrollbar.R$color: int material_grey_800 -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: long contentLength() -androidx.core.R$styleable: int ColorStateListItem_alpha -com.google.android.material.R$styleable: int[] AppBarLayout -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_icon -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: java.lang.String textCount -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_divider -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver parent -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean() -androidx.constraintlayout.widget.R$id: int src_in -wangdaye.com.geometricweather.R$styleable: int Variant_region_heightLessThan -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_title -wangdaye.com.geometricweather.R$attr: int moveWhenScrollAtTop -io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler) -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILES_STATE -okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.Object createAndOpen(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -com.amap.api.location.AMapLocation: java.lang.String toStr(int) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW_FLURRIES -com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_text_padding_right -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback,int) -androidx.loader.R$id: int actions -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_width -okhttp3.TlsVersion: okhttp3.TlsVersion forJavaName(java.lang.String) -wangdaye.com.geometricweather.R$id: int circular_sky -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cdp -androidx.coordinatorlayout.R$id: int accessibility_custom_action_5 -androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnDestroy() -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position position -cyanogenmod.platform.R$array: R$array() -androidx.transition.R$dimen: int compat_notification_large_icon_max_height -okhttp3.internal.http1.Http1Codec$ChunkedSource: void close() -retrofit2.CompletableFutureCallAdapterFactory -okhttp3.internal.connection.RealConnection: okhttp3.Route route() -androidx.preference.R$style: int Widget_AppCompat_Button_Small -androidx.constraintlayout.widget.R$style: int Base_V26_Theme_AppCompat -androidx.appcompat.R$color: int highlighted_text_material_light -wangdaye.com.geometricweather.R$styleable: int[] MotionLayout -androidx.appcompat.R$styleable: int SearchView_android_focusable -com.xw.repo.bubbleseekbar.R$id: int src_atop -cyanogenmod.providers.CMSettings$DelimitedListValidator: java.lang.String mDelimiter -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: boolean isDisposed() -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_DEFAULT_INDEX -okhttp3.OkHttpClient: okhttp3.EventListener$Factory eventListenerFactory() -com.google.android.material.R$dimen: int design_navigation_padding_bottom -wangdaye.com.geometricweather.R$dimen: int cpv_required_padding -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconContentDescription -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onError(java.lang.Throwable) -okhttp3.internal.cache.DiskLruCache: okio.BufferedSink newJournalWriter() -cyanogenmod.weather.WeatherInfo: java.lang.String access$202(cyanogenmod.weather.WeatherInfo,java.lang.String) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ShapeableImageView -wangdaye.com.geometricweather.R$xml: int perference_service_provider -com.google.android.gms.signin.internal.zam -wangdaye.com.geometricweather.R$layout: int design_bottom_sheet_dialog -wangdaye.com.geometricweather.R$string: int cloud_cover -androidx.preference.R$id: int dialog_button -wangdaye.com.geometricweather.R$id: int action_bar_spinner -com.jaredrummler.android.colorpicker.R$styleable: int[] Spinner -cyanogenmod.app.CustomTileListenerService: int mCurrentUser -james.adaptiveicon.R$styleable: int AppCompatImageView_android_src -com.jaredrummler.android.colorpicker.R$integer: R$integer() -android.didikee.donate.R$styleable: int MenuGroup_android_orderInCategory -androidx.recyclerview.R$dimen: int item_touch_helper_swipe_escape_max_velocity -androidx.preference.R$styleable: int Preference_selectable -okhttp3.OkHttpClient: boolean retryOnConnectionFailure -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getStrokeWidth() -com.google.android.material.R$attr: int suffixTextColor -com.google.android.material.R$attr: int autoSizeStepGranularity -androidx.recyclerview.R$drawable: int notification_bg_low_pressed -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_elevation -android.didikee.donate.R$dimen: int notification_action_text_size -org.greenrobot.greendao.AbstractDao: java.lang.Object load(java.lang.Object) -cyanogenmod.weatherservice.WeatherProviderService$1 -wangdaye.com.geometricweather.R$color: int abc_primary_text_disable_only_material_dark -okhttp3.internal.http2.Http2Writer: void dataFrame(int,byte,okio.Buffer,int) -retrofit2.RequestFactory$Builder: void parseHttpMethodAndPath(java.lang.String,java.lang.String,boolean) -androidx.appcompat.R$drawable: int abc_text_select_handle_right_mtrl_light -com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -androidx.preference.R$attr: int contentDescription -com.google.android.material.R$style: int Theme_Design -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_defaultQueryHint -wangdaye.com.geometricweather.R$string: int edit -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColorLink -androidx.hilt.R$anim -com.google.android.material.R$styleable: int ConstraintSet_android_transformPivotY -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize -com.google.android.material.R$drawable: int abc_btn_radio_material_anim -androidx.hilt.lifecycle.R$styleable: int GradientColorItem_android_color -com.jaredrummler.android.colorpicker.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getUvDescription() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_17 -com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_material -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onError(java.lang.Throwable) -com.google.android.material.R$styleable: int AppCompatTheme_toolbarStyle -wangdaye.com.geometricweather.R$xml -okhttp3.Request: java.util.List headers(java.lang.String) -wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -com.google.android.material.R$styleable: int GradientColor_android_startColor -androidx.dynamicanimation.R$styleable: int GradientColor_android_endY -okhttp3.internal.Internal: void addLenient(okhttp3.Headers$Builder,java.lang.String) -androidx.preference.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary PrecipitationSummary -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: int getChartBottom() -androidx.appcompat.R$styleable: int MenuItem_android_alphabeticShortcut -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.R$styleable: int MaterialButton_android_background -cyanogenmod.media.MediaRecorder: java.lang.String EXTRA_HOTWORD_INPUT_STATE -cyanogenmod.providers.CMSettings$System: java.lang.String __MAGICAL_TEST_PASSING_ENABLER -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_GREEN_INDEX -com.github.rahatarmanahmed.cpv.CircularProgressView$2: float val$currentProgress -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_CANCEL_REQUEST -retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler parseParameter(int,java.lang.reflect.Type,java.lang.annotation.Annotation[],boolean) -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType UpdateInTxArray -okhttp3.CertificatePinner: int hashCode() -androidx.legacy.coreutils.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String from -androidx.transition.R$styleable: R$styleable() -james.adaptiveicon.R$dimen: int notification_right_side_padding_top -androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabView -androidx.appcompat.resources.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Item -androidx.preference.R$styleable: int FontFamilyFont_font -com.google.android.material.R$dimen: int mtrl_extended_fab_icon_text_spacing -com.jaredrummler.android.colorpicker.R$string: int cpv_transparency -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_radius_on_dragging -com.google.gson.stream.JsonReader: int[] pathIndices -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWindDirection -okhttp3.package-info -okhttp3.internal.connection.RouteSelector: boolean hasNextProxy() -androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -wangdaye.com.geometricweather.R$attr: int textAppearanceListItem -android.didikee.donate.R$styleable: int MenuItem_android_alphabeticShortcut -wangdaye.com.geometricweather.common.basic.models.weather.History: int nighttimeTemperature -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_padding_end_material -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void request(long) -com.google.android.material.R$attr: int drawableTopCompat -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset -com.google.android.material.chip.Chip: void setChipStartPaddingResource(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric Metric -wangdaye.com.geometricweather.R$styleable: int Tooltip_backgroundTint -androidx.work.R$id: int accessibility_custom_action_25 -cyanogenmod.providers.CMSettings$Secure: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) -james.adaptiveicon.R$drawable: int abc_scrubber_control_off_mtrl_alpha -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_toRightOf -androidx.appcompat.R$style: int Widget_AppCompat_Spinner_Underlined -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: java.util.List value -androidx.appcompat.R$id: int listMode -com.jaredrummler.android.colorpicker.R$dimen: int notification_small_icon_background_padding -james.adaptiveicon.R$attr: int actionOverflowButtonStyle -io.reactivex.internal.queue.SpscArrayQueue: java.util.concurrent.atomic.AtomicLong producerIndex -androidx.constraintlayout.widget.R$style: int Base_V23_Theme_AppCompat -com.google.android.material.R$styleable: int Chip_android_checkable -androidx.activity.R$id: int notification_main_column_container -androidx.work.R$id: int accessibility_custom_action_18 -androidx.coordinatorlayout.R$id: int bottom -androidx.core.widget.ContentLoadingProgressBar -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelMenuListWidth -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_keylines -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixText -okhttp3.ResponseBody: java.io.Reader reader -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: android.os.IBinder asBinder() -cyanogenmod.platform.Manifest$permission: java.lang.String PERFORMANCE_ACCESS -androidx.preference.ListPreference$SavedState -okhttp3.EventListener: void secureConnectEnd(okhttp3.Call,okhttp3.Handshake) -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginBottom -com.google.gson.stream.JsonWriter: java.io.Writer out -com.google.gson.stream.JsonReader: java.lang.String[] pathNames -androidx.coordinatorlayout.R$attr: int coordinatorLayoutStyle -androidx.core.R$id: int accessibility_action_clickable_span -androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontStyle -androidx.constraintlayout.widget.R$styleable: int Toolbar_collapseIcon -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type rawType -android.didikee.donate.R$string: int abc_searchview_description_query -wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line2_head_interpolator -com.turingtechnologies.materialscrollbar.R$attr: int windowActionModeOverlay -androidx.drawerlayout.R$id: int italic -androidx.appcompat.widget.AppCompatTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void clear() -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_showSeekBarValue -androidx.fragment.R$dimen: int notification_main_column_padding_top -androidx.viewpager.R$id: int action_text -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: boolean isValid() -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: io.reactivex.internal.disposables.SequentialDisposable direct -james.adaptiveicon.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -com.amap.api.location.AMapLocation: int GPS_ACCURACY_GOOD -cyanogenmod.weatherservice.ServiceRequest: ServiceRequest(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.IWeatherProviderServiceClient) -androidx.constraintlayout.widget.R$attr: int switchMinWidth -retrofit2.RequestBuilder -com.google.android.material.R$layout: int abc_screen_content_include -android.didikee.donate.R$id: int action_divider -android.didikee.donate.R$attr: int ratingBarStyleIndicator -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$color: int material_on_surface_emphasis_medium -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setInterval(long) -wangdaye.com.geometricweather.R$attr: int layout_constraintRight_toRightOf -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setDeleteIntent(android.app.PendingIntent) -androidx.hilt.work.R$id: int action_image -okio.Buffer: okio.BufferedSink write(okio.ByteString) -androidx.preference.R$dimen: int abc_switch_padding -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: boolean isDisposed() -cyanogenmod.app.IProfileManager: boolean setActiveProfile(android.os.ParcelUuid) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -james.adaptiveicon.R$styleable: int FontFamily_fontProviderAuthority -androidx.appcompat.R$color: int abc_color_highlight_material -androidx.preference.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -androidx.legacy.coreutils.R$dimen: int notification_subtext_size -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dialog -okio.Buffer$1: okio.Buffer this$0 -okhttp3.Cache$CacheResponseBody: Cache$CacheResponseBody(okhttp3.internal.cache.DiskLruCache$Snapshot,java.lang.String,java.lang.String) -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthTextView -androidx.constraintlayout.widget.R$string: int abc_shareactionprovider_share_with -android.didikee.donate.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature -androidx.preference.R$styleable: int AppCompatTheme_checkboxStyle -android.didikee.donate.R$color: int switch_thumb_disabled_material_dark -androidx.lifecycle.extensions.R$attr: int fontProviderCerts -okio.HashingSource: okio.HashingSource md5(okio.Source) -androidx.appcompat.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_pressed_alpha -wangdaye.com.geometricweather.R$id: int item_about_title -com.google.android.material.button.MaterialButtonToggleGroup: void setSingleSelection(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windSpeedStart -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast build() -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Dialog_Bridge -androidx.constraintlayout.utils.widget.ImageFilterView: void setWarmth(float) -androidx.appcompat.R$attr: int colorPrimaryDark -com.google.android.material.R$dimen: int hint_pressed_alpha_material_dark -com.google.android.material.appbar.AppBarLayout: void setLiftOnScrollTargetViewId(int) -wangdaye.com.geometricweather.R$anim: int abc_grow_fade_in_from_bottom -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_23 -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec COMPATIBLE_TLS -androidx.dynamicanimation.R$drawable: int notification_template_icon_bg -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -com.google.android.material.R$style: int Platform_V25_AppCompat -wangdaye.com.geometricweather.R$attr: int haloRadius -androidx.fragment.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$layout: R$layout() -com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusBottomEnd() -wangdaye.com.geometricweather.R$layout: int mtrl_picker_actions -com.jaredrummler.android.colorpicker.R$attr -wangdaye.com.geometricweather.db.entities.LocationEntity: float getLongitude() -com.jaredrummler.android.colorpicker.R$id: int src_in -com.google.android.material.R$style: int TestThemeWithLineHeight -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_seekBarStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String unitId -com.google.android.material.R$string: int mtrl_picker_range_header_only_start_selected -com.google.android.material.R$id: int action_bar -wangdaye.com.geometricweather.R$styleable: int[] SlidingItemContainerLayout -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeight -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabView -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setLogo(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_trackTintMode -androidx.preference.R$styleable: int AlertDialog_multiChoiceItemLayout -androidx.preference.R$styleable: int AppCompatTextView_android_textAppearance -com.jaredrummler.android.colorpicker.R$color: int error_color_material_light -com.google.android.material.R$attr: int gestureInsetBottomIgnored -okhttp3.CipherSuite: CipherSuite(java.lang.String) -cyanogenmod.profiles.AirplaneModeSettings: boolean isOverride() -com.google.android.material.slider.RangeSlider: void setTickActiveTintList(android.content.res.ColorStateList) -cyanogenmod.hardware.CMHardwareManager: int FEATURE_AUTO_CONTRAST -io.reactivex.Observable: io.reactivex.Observable mergeArray(io.reactivex.ObservableSource[]) -androidx.lifecycle.FullLifecycleObserver: void onPause(androidx.lifecycle.LifecycleOwner) -wangdaye.com.geometricweather.R$string: int search_menu_title -wangdaye.com.geometricweather.R$styleable: int View_paddingEnd -com.baidu.location.e.l$b: java.lang.String f -wangdaye.com.geometricweather.R$string: int thunderstorm -io.reactivex.internal.util.VolatileSizeArrayList: boolean equals(java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int Layout_android_orientation -androidx.transition.R$styleable: int[] FontFamilyFont -com.google.android.material.R$attr: int placeholderText -wangdaye.com.geometricweather.R$anim: int fragment_main_exit -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Badge -okhttp3.Cache: boolean isClosed() -androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_text_padding_right -okhttp3.CertificatePinner: okhttp3.CertificatePinner DEFAULT -cyanogenmod.weather.CMWeatherManager$RequestStatus: CMWeatherManager$RequestStatus() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String zh_TW -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric() -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: boolean done -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.Observer downstream -com.google.android.material.R$attr: int flow_firstVerticalStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSnowPrecipitation() -com.google.android.material.R$styleable: int Toolbar_contentInsetEnd -com.google.android.material.textfield.TextInputLayout: int getBoxStrokeWidthFocused() -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol HTTPS -wangdaye.com.geometricweather.R$string: int mold -wangdaye.com.geometricweather.R$styleable: int[] ClockFaceView -androidx.work.impl.workers.CombineContinuationsWorker: CombineContinuationsWorker(android.content.Context,androidx.work.WorkerParameters) -wangdaye.com.geometricweather.R$attr: int dayStyle -androidx.preference.R$styleable: int StateListDrawable_android_dither -wangdaye.com.geometricweather.R$array: int precipitation_units -com.google.android.material.slider.BaseSlider: void setTrackTintList(android.content.res.ColorStateList) -okhttp3.HttpUrl$Builder: java.lang.String scheme -wangdaye.com.geometricweather.R$attr: int ensureMinTouchTargetSize -retrofit2.CallAdapter$Factory: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) -wangdaye.com.geometricweather.R$color: int design_default_color_on_surface -wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonCompat -androidx.constraintlayout.widget.R$id: int action_context_bar -com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getIndicatorHeight() -wangdaye.com.geometricweather.R$attr: int actionBarTabTextStyle -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_layoutManager -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_splitTrack -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator -okio.ByteString: int codePointIndexToCharIndex(java.lang.String,int) -okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_0 -androidx.appcompat.R$style: int Base_Animation_AppCompat_DropDownUp -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setLongitude(java.lang.String) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastVerticalStyle -com.jaredrummler.android.colorpicker.R$drawable: int notify_panel_notification_icon_bg -retrofit2.ParameterHandler$PartMap: int p -com.turingtechnologies.materialscrollbar.R$drawable: int abc_item_background_holo_light -wangdaye.com.geometricweather.R$color: int mtrl_tabs_colored_ripple_color -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer realFeelShaderTemperature -androidx.lifecycle.LifecycleRegistry: java.lang.ref.WeakReference mLifecycleOwner -wangdaye.com.geometricweather.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.common.basic.models.weather.Alert -androidx.constraintlayout.widget.R$styleable: int[] MenuView -androidx.constraintlayout.widget.R$attr: int clickAction -cyanogenmod.weather.CMWeatherManager$1$1: CMWeatherManager$1$1(cyanogenmod.weather.CMWeatherManager$1,java.lang.String) -androidx.preference.R$style: int Widget_AppCompat_Light_SearchView -androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.Date getPubTime() -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference other -android.didikee.donate.R$layout: int select_dialog_multichoice_material -okio.Pipe$PipeSink: Pipe$PipeSink(okio.Pipe) -androidx.appcompat.widget.SwitchCompat: android.graphics.PorterDuff$Mode getTrackTintMode() -androidx.viewpager.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_dialog_btn_min_width -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void dispose() -androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context,android.util.AttributeSet) -androidx.hilt.work.R$style: int Widget_Compat_NotificationActionText -androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragThreshold -androidx.hilt.R$id: int fragment_container_view_tag -android.didikee.donate.R$styleable: int AlertDialog_android_layout -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Button -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_LOW_POWER -wangdaye.com.geometricweather.R$styleable: int ListPreference_android_entries -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Name -wangdaye.com.geometricweather.R$attr: int passwordToggleDrawable -androidx.lifecycle.ViewModelProvider$KeyedFactory -androidx.viewpager.R$attr -androidx.preference.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_128 -com.google.android.material.R$attr: int layout_goneMarginTop -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_holo_dark -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Runnable actual -okhttp3.FormBody: okhttp3.MediaType contentType() -james.adaptiveicon.R$color: int primary_text_default_material_dark -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean isDisposed() -com.google.android.material.tabs.TabLayout: void addOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) -wangdaye.com.geometricweather.R$styleable: int[] BubbleSeekBar -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection build() -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_greyIcon -com.google.android.material.R$styleable: int Layout_layout_constraintGuide_end -com.google.android.material.R$attr: int multiChoiceItemLayout -okhttp3.internal.http1.Http1Codec: int STATE_OPEN_RESPONSE_BODY -com.google.android.material.R$attr: int itemStrokeColor -com.google.gson.stream.JsonReader: int PEEKED_LONG -cyanogenmod.themes.ThemeManager: void unregisterProcessingListener(cyanogenmod.themes.ThemeManager$ThemeProcessingListener) -androidx.appcompat.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeColorStateList(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$layout: int notification_action_tombstone -com.google.android.material.button.MaterialButton: int getTextWidth() -androidx.appcompat.R$attr: int borderlessButtonStyle -androidx.fragment.R$color: int ripple_material_light -com.jaredrummler.android.colorpicker.R$styleable: int[] MenuView -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_AppBarLayout -androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context) -com.google.gson.stream.JsonScope: int CLOSED -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe() -wangdaye.com.geometricweather.R$layout: int container_main_sun_moon -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarItemBackground -okhttp3.internal.http2.Hpack$Reader: int headerTableSizeSetting -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: cyanogenmod.app.ThemeVersion$ComponentVersion fwCompVersionToSdkVersion(android.content.ThemeVersion$ComponentVersion) -com.google.android.material.navigation.NavigationView: void setCheckedItem(int) -androidx.viewpager2.R$id: int accessibility_custom_action_1 -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable -wangdaye.com.geometricweather.R$styleable: int SearchView_queryHint -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -androidx.hilt.R$styleable: int ColorStateListItem_android_alpha -androidx.constraintlayout.widget.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$dimen: int design_navigation_item_icon_padding -androidx.preference.R$layout: int select_dialog_singlechoice_material -android.didikee.donate.R$dimen: int abc_control_inset_material -wangdaye.com.geometricweather.R$id: int design_menu_item_action_area -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataContainer -androidx.dynamicanimation.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$id: int item_weather_icon_image -androidx.coordinatorlayout.R$id: int right -wangdaye.com.geometricweather.R$attr: int chipIconTint -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_textLocale -okhttp3.ResponseBody$BomAwareReader: java.nio.charset.Charset charset -cyanogenmod.alarmclock.CyanogenModAlarmClock -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_NoActionBar -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ProgressBar -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.IRequestInfoListener mListener -james.adaptiveicon.R$styleable: int AppCompatTheme_windowMinWidthMajor -com.google.android.material.tabs.TabLayout: int getDefaultHeight() -androidx.fragment.R$attr: R$attr() -com.amap.api.fence.GeoFence: int TYPE_POLYGON -com.turingtechnologies.materialscrollbar.R$attr: int hintEnabled -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.Property[] getProperties() -androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_to_on_mtrl_000 -com.baidu.location.e.l$b: java.lang.String a(com.baidu.location.e.l$b,int,double,double) -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: ObservableMergeWithMaybe$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableEnd -androidx.appcompat.resources.R$id: int tag_unhandled_key_event_manager -com.jaredrummler.android.colorpicker.R$attr: int buttonBarNegativeButtonStyle -okhttp3.internal.cache.DiskLruCache$Entry: java.lang.String key -okhttp3.internal.http2.Http2Connection: long DEGRADED_PONG_TIMEOUT_NS -com.turingtechnologies.materialscrollbar.R$attr: int tabStyle -wangdaye.com.geometricweather.R$attr: int dialogPreferredPadding -com.amap.api.location.AMapLocation: void setAoiName(java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: MfForecastResult$Forecast$Weather() -androidx.preference.R$id: int end -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA -wangdaye.com.geometricweather.R$color: int notification_background_rootDark -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void openComplete(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver) -wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_backgroundTintMode -cyanogenmod.themes.ThemeManager$1$2: boolean val$isSuccess -wangdaye.com.geometricweather.R$attr: int tabIndicatorHeight -com.google.android.material.R$styleable: int BottomNavigationView_elevation -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_Solid -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.hilt.lifecycle.R$string -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextView -com.turingtechnologies.materialscrollbar.R$layout: int design_layout_tab_text -com.jaredrummler.android.colorpicker.R$attr: int entries -androidx.appcompat.R$styleable: int AlertDialog_showTitle -retrofit2.BuiltInConverters$StreamingResponseBodyConverter: java.lang.Object convert(java.lang.Object) -com.jaredrummler.android.colorpicker.R$attr: int actionModeCutDrawable -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityResumed(android.app.Activity) -wangdaye.com.geometricweather.R$id: int staticLayout -wangdaye.com.geometricweather.R$id: int fragment_main -androidx.constraintlayout.widget.R$style: int Platform_AppCompat_Light -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HourlyEntityDao getHourlyEntityDao() -okhttp3.internal.http2.Http2Writer: void goAway(int,okhttp3.internal.http2.ErrorCode,byte[]) -com.bumptech.glide.integration.okhttp.R$layout: int notification_template_icon_group -retrofit2.RequestBuilder: okhttp3.MultipartBody$Builder multipartBuilder -android.didikee.donate.R$styleable: int TextAppearance_android_shadowDy -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: CNWeatherResult$HourlyForecast() -wangdaye.com.geometricweather.R$style: int PreferenceFragmentList_Material -androidx.constraintlayout.widget.R$styleable: int[] ImageFilterView -wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line1_tail_interpolator -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle -wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemBackground -wangdaye.com.geometricweather.R$color: int bright_foreground_disabled_material_dark -okhttp3.internal.cache.CacheInterceptor$1 -androidx.viewpager2.R$id: int accessibility_custom_action_11 -androidx.recyclerview.R$styleable: int FontFamily_fontProviderAuthority -androidx.loader.R$styleable: int[] GradientColor -androidx.appcompat.R$layout: int notification_template_icon_group -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabView -com.google.android.material.R$styleable: int AppCompatTextView_drawableRightCompat -wangdaye.com.geometricweather.R$styleable: int AlertDialog_listItemLayout -okio.GzipSource: byte SECTION_DONE -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_fontVariationSettings -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: void onResponse(retrofit2.Call,retrofit2.Response) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Snackbar_Message -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarStyle -androidx.hilt.lifecycle.R$styleable: int[] ColorStateListItem -androidx.lifecycle.Transformations$2: void onChanged(java.lang.Object) -com.google.android.material.R$styleable: int Layout_layout_constraintCircle -cyanogenmod.app.CustomTile$Builder: android.graphics.Bitmap mRemoteIcon -com.google.android.material.R$attr: int clickAction -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Subhead_Inverse -androidx.preference.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullResourceIdException -com.google.android.material.switchmaterial.SwitchMaterial: void setUseMaterialThemeColors(boolean) -wangdaye.com.geometricweather.R$drawable: int ic_tree -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableEndCompat -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onError(java.lang.Throwable) -com.google.android.material.R$attr: int chipIcon -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String ragweedDescription -com.google.android.material.R$drawable: int notification_bg -androidx.appcompat.R$style: int Theme_AppCompat_NoActionBar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setLevel(java.lang.String) -androidx.appcompat.R$id: int line3 -com.amap.api.fence.GeoFence: void setPendingIntent(android.app.PendingIntent) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator PROXIMITY_ON_WAKE_VALIDATOR -cyanogenmod.weatherservice.WeatherProviderService: android.os.IBinder onBind(android.content.Intent) -com.github.rahatarmanahmed.cpv.CircularProgressView$7: void onAnimationUpdate(android.animation.ValueAnimator) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemTextAppearance -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: AtmoAuraQAResult$Advice$AdviceContext() -com.google.android.material.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSubtitle2 -com.turingtechnologies.materialscrollbar.R$id: int action_bar_container -okhttp3.Cache: int ENTRY_COUNT -retrofit2.RequestBuilder: RequestBuilder(java.lang.String,okhttp3.HttpUrl,java.lang.String,okhttp3.Headers,okhttp3.MediaType,boolean,boolean,boolean) -wangdaye.com.geometricweather.R$attr: int layout_goneMarginBottom -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemIconTint -com.google.android.gms.base.R$string: R$string() -okio.RealBufferedSource: java.lang.String readString(java.nio.charset.Charset) -android.didikee.donate.R$dimen: int abc_text_size_caption_material -wangdaye.com.geometricweather.R$array: int notification_background_colors -androidx.appcompat.resources.R$id -androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchAnchorId -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Medium_Inverse -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getContent() -wangdaye.com.geometricweather.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: long serialVersionUID -androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy: ConstraintProxy$NetworkStateProxy() -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_pixel -android.didikee.donate.R$drawable: int abc_seekbar_track_material -com.google.android.material.card.MaterialCardView: int getCheckedIconMargin() -androidx.constraintlayout.widget.R$styleable: int MockView_mock_labelBackgroundColor -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$id: int widget_clock_day_date -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight -androidx.preference.R$styleable: int TextAppearance_android_textFontWeight -okio.RealBufferedSource: byte[] readByteArray(long) -com.google.android.material.snackbar.Snackbar$SnackbarLayout -com.google.android.material.R$dimen: int abc_progress_bar_height_material -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: CNWeatherResult$WeatherX() -retrofit2.Utils$ParameterizedTypeImpl -okhttp3.Dispatcher: void setMaxRequestsPerHost(int) -wangdaye.com.geometricweather.R$attr: int cpv_showDialog -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: java.lang.String getAddress() -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetLeft -androidx.customview.R$id: int right_icon -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory getEdgeEffectFactory() -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalGap -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -wangdaye.com.geometricweather.R$styleable: int CardView_android_minWidth -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_material_light -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: java.lang.Thread thread -androidx.viewpager.R$id: int actions -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchPadding -com.google.android.material.R$style: int Theme_Design_BottomSheetDialog -androidx.appcompat.R$attr: int windowMinWidthMinor -wangdaye.com.geometricweather.R$color: int secondary_text_disabled_material_light -androidx.hilt.R$id -androidx.constraintlayout.widget.R$styleable: int ActionMode_backgroundSplit -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListPopupWindow -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind wind -cyanogenmod.externalviews.ExternalView: void onActivityStopped(android.app.Activity) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setScaleY(float) -androidx.constraintlayout.widget.R$attr: int windowFixedWidthMinor -wangdaye.com.geometricweather.R$attr: int textAppearancePopupMenuHeader -com.google.android.material.R$styleable: int Variant_region_heightMoreThan -wangdaye.com.geometricweather.R$id: int disableScroll -androidx.appcompat.R$styleable: int SearchView_closeIcon -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox -com.google.android.material.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -com.google.android.material.R$id: int mtrl_view_tag_bottom_padding -cyanogenmod.externalviews.KeyguardExternalView: boolean access$802(cyanogenmod.externalviews.KeyguardExternalView,boolean) -android.didikee.donate.R$attr: int closeItemLayout -okhttp3.Protocol: okhttp3.Protocol HTTP_2 -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.reflect.Type responseType() -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_creator -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Alert_Bridge -android.didikee.donate.R$style: int Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime -com.google.android.material.R$styleable: int KeyTrigger_framePosition -cyanogenmod.app.ProfileGroup: android.net.Uri mRingerOverride -com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextInputEditText -androidx.appcompat.R$style: int Base_Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: HourlyEntityDao$Properties() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixTextColor -androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context) -okhttp3.internal.http.StatusLine: int HTTP_CONTINUE -androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context,android.util.AttributeSet,int) -androidx.coordinatorlayout.R$attr: int ttcIndex -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_toLeftOf -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontVariationSettings -okhttp3.Cache$CacheRequestImpl: okio.Sink body -androidx.legacy.coreutils.R$drawable: int notification_bg_low_normal -androidx.activity.R$id: int accessibility_custom_action_16 -okhttp3.internal.http2.Http2Stream -wangdaye.com.geometricweather.R$mipmap: int ic_launcher -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -androidx.preference.R$styleable: int AppCompatTextView_textLocale -com.xw.repo.bubbleseekbar.R$id: int search_voice_btn -androidx.work.R$styleable: int FontFamily_fontProviderCerts -androidx.loader.R$color -wangdaye.com.geometricweather.R$id: int activity_weather_daily_indicator -com.jaredrummler.android.colorpicker.R$id: int action_menu_presenter -com.turingtechnologies.materialscrollbar.R$attr: int checkedIconEnabled -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -retrofit2.Retrofit: java.util.Map serviceMethodCache -okhttp3.OkHttpClient$1: void put(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) -com.bumptech.glide.R$dimen: int notification_small_icon_size_as_large -cyanogenmod.util.ColorUtils: int dropAlpha(int) -androidx.core.app.RemoteActionCompatParcelizer: androidx.core.app.RemoteActionCompat read(androidx.versionedparcelable.VersionedParcel) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_maxWidth -com.google.android.material.R$id: int selected -androidx.loader.R$layout -com.xw.repo.bubbleseekbar.R$color: int abc_tint_default -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: io.reactivex.disposables.Disposable upstream -cyanogenmod.weather.WeatherLocation: java.lang.String getPostalCode() -io.reactivex.Observable: io.reactivex.Observable doOnError(io.reactivex.functions.Consumer) -androidx.constraintlayout.widget.R$id: int easeIn -cyanogenmod.app.ILiveLockScreenChangeListener$Stub -cyanogenmod.providers.DataUsageContract: java.lang.String ENABLE -wangdaye.com.geometricweather.R$layout: int material_time_chip -wangdaye.com.geometricweather.R$color: int abc_primary_text_disable_only_material_light -wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_day -com.xw.repo.bubbleseekbar.R$attr: int paddingTopNoTitle -androidx.appcompat.widget.ActivityChooserView: void setDefaultActionButtonContentDescription(int) -com.turingtechnologies.materialscrollbar.R$id: int blocking -androidx.hilt.work.R$integer -org.greenrobot.greendao.database.DatabaseOpenHelper: void onOpen(android.database.sqlite.SQLiteDatabase) -cyanogenmod.weather.CMWeatherManager$1: cyanogenmod.weather.CMWeatherManager this$0 -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: double seaLevel -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int pm10 -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -androidx.constraintlayout.widget.R$id: int listMode -retrofit2.OkHttpCall: boolean canceled -io.reactivex.Observable: io.reactivex.Observable concatMap(io.reactivex.functions.Function,int) -androidx.constraintlayout.widget.R$id: int submenuarrow -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_stacked_tab_max_width -androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_height_material -android.didikee.donate.R$dimen: int abc_action_bar_icon_vertical_padding_material -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.viewpager.widget.PagerTabStrip: void setDrawFullUnderline(boolean) -androidx.appcompat.R$drawable: int notification_bg_low_normal -androidx.viewpager.R$dimen: int notification_action_text_size -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPadding -androidx.dynamicanimation.R$styleable: int FontFamilyFont_ttcIndex -com.google.android.material.R$dimen: int tooltip_precise_anchor_threshold -com.google.android.material.R$styleable: int PropertySet_android_alpha -wangdaye.com.geometricweather.R$styleable: int ActionMode_subtitleTextStyle -androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context,android.util.AttributeSet,int) -com.amap.api.fence.GeoFenceManagerBase: boolean isPause() -com.google.gson.stream.JsonWriter: int stackSize -cyanogenmod.themes.ThemeManager$1: ThemeManager$1(cyanogenmod.themes.ThemeManager) -androidx.legacy.coreutils.R$attr -android.didikee.donate.R$styleable: int SwitchCompat_switchTextAppearance -androidx.preference.R$id: int time -androidx.appcompat.R$attr: int dividerPadding -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTint -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarButtonStyle -com.google.android.material.R$style: int Widget_MaterialComponents_CollapsingToolbar -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String getCaiyun() -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_title_baseline_to_top -androidx.constraintlayout.widget.R$styleable: int Motion_drawPath -wangdaye.com.geometricweather.R$dimen: int cpv_dialog_preview_height -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void disposeAll() -okio.Buffer: okio.Buffer writeDecimalLong(long) -wangdaye.com.geometricweather.R$string: int key_notification_minimal_icon -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() -androidx.appcompat.R$attr: int colorError -cyanogenmod.content.Intent: java.lang.String EXTRA_PROTECTED_COMPONENTS -james.adaptiveicon.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_background -io.reactivex.internal.observers.LambdaObserver: boolean hasCustomOnError() -com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorType(int) -wangdaye.com.geometricweather.R$id: int activity_chooser_view_content -com.google.android.material.R$id: int month_title -com.jaredrummler.android.colorpicker.R$id: int action_divider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean() -androidx.drawerlayout.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: AccuCurrentResult$Precip1hr$Imperial() -androidx.constraintlayout.widget.R$bool: int abc_allow_stacked_button_bar -com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle -android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -androidx.constraintlayout.widget.R$styleable: int Transform_android_translationX -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeApparentTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$dimen: int design_navigation_separator_vertical_padding -com.google.android.material.R$styleable: int ConstraintSet_flow_firstHorizontalBias -wangdaye.com.geometricweather.common.basic.models.weather.Pollen -com.google.android.material.R$styleable: int Layout_layout_constraintTop_toBottomOf -wangdaye.com.geometricweather.db.entities.LocationEntityDao -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSyncDuration -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_1 -com.turingtechnologies.materialscrollbar.R$attr: int toolbarNavigationButtonStyle -io.reactivex.Observable: io.reactivex.Observable concatEager(io.reactivex.ObservableSource,int,int) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List consequences -com.google.android.material.R$styleable: int DrawerArrowToggle_color -com.xw.repo.bubbleseekbar.R$drawable: int tooltip_frame_dark -androidx.constraintlayout.widget.R$attr: int closeIcon -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -com.google.android.material.R$id: int reverseSawtooth -androidx.preference.R$style: int PreferenceThemeOverlay_v14_Material -androidx.constraintlayout.widget.R$styleable: int AlertDialog_multiChoiceItemLayout -wangdaye.com.geometricweather.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -androidx.legacy.coreutils.R$drawable: R$drawable() -okhttp3.internal.cache.DiskLruCache$Editor: void abortUnlessCommitted() -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: void spValue(java.lang.Object) -com.google.android.material.R$style: int Base_Widget_AppCompat_SeekBar -androidx.constraintlayout.widget.R$attr: int alpha -androidx.appcompat.R$attr: int fontProviderQuery -com.google.android.material.R$style: int ShapeAppearanceOverlay_BottomRightCut -androidx.hilt.R$styleable: int Fragment_android_name -androidx.preference.R$style: int Theme_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar_Small -android.didikee.donate.R$attr: R$attr() -com.google.android.material.R$styleable: int MaterialCalendar_android_windowFullscreen -wangdaye.com.geometricweather.R$attr: int height -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView -android.didikee.donate.R$drawable: int abc_ic_arrow_drop_right_black_24dp -cyanogenmod.themes.ThemeChangeRequest: int describeContents() -com.google.android.material.R$attr: int controlBackground -androidx.lifecycle.extensions.R: R() -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark_normal -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_visible -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitationDuration -com.google.android.material.R$dimen: int design_navigation_icon_padding -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_track_color -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_INACTIVE -androidx.drawerlayout.R$id: int text -com.google.android.material.R$dimen: int mtrl_progress_circular_inset -com.turingtechnologies.materialscrollbar.Handle -retrofit2.converter.gson.GsonRequestBodyConverter: com.google.gson.TypeAdapter adapter -com.google.android.material.R$attr: int thumbTintMode -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property MinuteInterval -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -cyanogenmod.power.IPerformanceManager -com.google.android.material.R$attr: int flow_horizontalStyle -android.didikee.donate.R$styleable: int[] SwitchCompat -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver parent -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motionTarget -cyanogenmod.themes.ThemeManager: void removeClient(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -cyanogenmod.app.Profile$TriggerState: int ON_DISCONNECT -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_Switch -androidx.lifecycle.SavedStateViewModelFactory: SavedStateViewModelFactory(android.app.Application,androidx.savedstate.SavedStateRegistryOwner,android.os.Bundle) -okhttp3.internal.http1.Http1Codec: void detachTimeout(okio.ForwardingTimeout) -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Title -com.google.android.material.R$drawable: int notification_bg_low_normal -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabView -androidx.recyclerview.widget.RecyclerView: int getMinFlingVelocity() -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder dns(okhttp3.Dns) -com.google.android.material.R$drawable: int abc_spinner_textfield_background_material -com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: FloatingActionButton$Behavior() -android.didikee.donate.R$dimen: int abc_action_bar_default_height_material -android.didikee.donate.R$drawable: int abc_ic_clear_material -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_5 -james.adaptiveicon.R$dimen: int abc_dropdownitem_text_padding_right -wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontSpinner -androidx.preference.R$styleable: int PreferenceTheme_preferenceTheme -wangdaye.com.geometricweather.R$attr: int msb_hideDelayInMilliseconds -androidx.viewpager.widget.PagerTabStrip: void setTabIndicatorColorResource(int) -james.adaptiveicon.R$style: int Theme_AppCompat_Light_NoActionBar -james.adaptiveicon.R$attr: int switchTextAppearance -io.reactivex.internal.observers.BasicIntQueueDisposable -james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Light -androidx.recyclerview.widget.RecyclerView: void removeOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -com.jaredrummler.android.colorpicker.R$dimen: int cpv_color_preference_normal -retrofit2.RequestFactory$Builder: RequestFactory$Builder(retrofit2.Retrofit,java.lang.reflect.Method) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: android.os.IBinder mRemote -cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileManager getInstance(android.content.Context) -androidx.constraintlayout.widget.R$color: int accent_material_light -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: ObservableRepeatUntil$RepeatUntilObserver(io.reactivex.Observer,io.reactivex.functions.BooleanSupplier,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) -com.google.android.material.bottomnavigation.BottomNavigationView: int getItemTextAppearanceActive() -james.adaptiveicon.R$dimen: int notification_right_icon_size -okhttp3.ConnectionSpec: boolean isTls() -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float ice -com.turingtechnologies.materialscrollbar.R$attr: int scrimAnimationDuration -androidx.constraintlayout.widget.R$color: int switch_thumb_material_dark -androidx.constraintlayout.widget.R$drawable: int abc_popup_background_mtrl_mult -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTemperature(android.content.Context,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: io.reactivex.disposables.Disposable upstream -androidx.loader.R$attr: int font -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_transformation_sheet_collapse_spec -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: java.util.concurrent.atomic.AtomicBoolean once -wangdaye.com.geometricweather.R$id: int layout -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias -androidx.appcompat.R$id: int textSpacerNoButtons -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.R$styleable: int Transition_motionInterpolator -androidx.preference.R$string: int abc_menu_meta_shortcut_label -com.google.android.material.R$attr: int layout_constraintLeft_toRightOf -androidx.appcompat.R$drawable: int btn_radio_on_mtrl -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$drawable: int notif_temp_19 -wangdaye.com.geometricweather.R$styleable: int ActionBar_itemPadding -okhttp3.internal.http2.Http2Connection$Builder: int pingIntervalMillis -okhttp3.internal.http2.Settings: int getMaxConcurrentStreams(int) -androidx.constraintlayout.widget.R$attr: int textAppearanceListItemSecondary -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int o3 -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowRadius -com.google.android.material.R$styleable: int TextInputLayout_errorEnabled -android.didikee.donate.R$anim: int abc_grow_fade_in_from_bottom -wangdaye.com.geometricweather.R$string: int fab_transformation_scrim_behavior -com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String comment -com.amap.api.location.AMapLocation: java.lang.String COORD_TYPE_GCJ02 -okhttp3.internal.http2.Http2Stream$FramingSink: boolean finished -james.adaptiveicon.R$attr: int dropdownListPreferredItemHeight -androidx.preference.R$styleable: int AppCompatTheme_colorBackgroundFloating -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getCeiling() -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: $Gson$Types$ParameterizedTypeImpl(java.lang.reflect.Type,java.lang.reflect.Type,java.lang.reflect.Type[]) -com.google.android.material.R$styleable: int Chip_ensureMinTouchTargetSize -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_textOn -androidx.constraintlayout.widget.R$id: int progress_horizontal -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric Metric -com.google.android.material.R$styleable: int MenuItem_iconTint -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: boolean noDirection -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Tooltip -androidx.appcompat.R$style: int Base_Animation_AppCompat_Dialog -com.google.android.material.R$anim: int abc_popup_exit -androidx.recyclerview.R$dimen: int notification_main_column_padding_top -androidx.preference.R$styleable: int AppCompatTheme_windowFixedHeightMajor -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Pollen pollen -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabTextColor -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BOOLEAN -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onNext(java.lang.Object) -androidx.work.BackoffPolicy: androidx.work.BackoffPolicy LINEAR -androidx.coordinatorlayout.R$id: int accessibility_custom_action_26 -android.didikee.donate.R$styleable: int[] SearchView -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onError(java.lang.Throwable) -androidx.preference.R$styleable: int ActionMode_backgroundSplit -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitationProbability(java.lang.Float) -com.turingtechnologies.materialscrollbar.R$id: int action_text -androidx.hilt.work.R$id: int icon -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat -com.xw.repo.bubbleseekbar.R$attr: int activityChooserViewStyle -cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl access$000(cyanogenmod.externalviews.ExternalViewProviderService$Provider) -com.google.android.material.R$attr: int divider -androidx.core.R$integer -okhttp3.internal.platform.Jdk9Platform -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Borderless -okhttp3.FormBody$Builder: FormBody$Builder() -com.google.android.material.R$layout: int abc_popup_menu_item_layout -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert -org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Iterable,boolean) -androidx.drawerlayout.R$attr: int ttcIndex -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassDescription -android.didikee.donate.R$attr: int goIcon -com.google.android.material.navigation.NavigationView: void setItemIconPaddingResource(int) -android.didikee.donate.R$id: int add -android.didikee.donate.R$drawable: int notification_icon_background -androidx.appcompat.R$styleable: int MenuGroup_android_id -okhttp3.CertificatePinner$Builder: okhttp3.CertificatePinner build() -wangdaye.com.geometricweather.R$style: int Preference_SwitchPreferenceCompat -com.jaredrummler.android.colorpicker.R$dimen: int hint_alpha_material_light -cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings(android.os.Parcel) -androidx.lifecycle.extensions.R$attr: int fontWeight -retrofit2.OkHttpCall$1: void onFailure(okhttp3.Call,java.io.IOException) -androidx.appcompat.R$styleable: int AlertDialog_listLayout -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: AccuCurrentResult$WindGust$Speed$Imperial() -wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentY -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_snackbar_background_corner_radius -cyanogenmod.profiles.ConnectionSettings: int mSubId -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date sunriseTime -androidx.constraintlayout.widget.R$id: int unchecked -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getThermalState -android.didikee.donate.R$drawable: int notification_bg_normal -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabTextAppearance -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitation -okhttp3.internal.Internal: int code(okhttp3.Response$Builder) -io.reactivex.exceptions.MissingBackpressureException -wangdaye.com.geometricweather.db.entities.LocationEntity: LocationEntity(java.lang.String,java.lang.String,float,float,java.util.TimeZone,java.lang.String,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource,boolean,boolean,boolean) -james.adaptiveicon.R$drawable: int abc_scrubber_primary_mtrl_alpha -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void accept(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$attr: int fontVariationSettings -cyanogenmod.providers.CMSettings$Secure: java.lang.String LIVE_LOCK_SCREEN_ENABLED -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyle -com.jaredrummler.android.colorpicker.R$attr: int widgetLayout -com.autonavi.aps.amapapi.model.AMapLocationServer: void g(java.lang.String) -james.adaptiveicon.R$anim: int abc_fade_in -cyanogenmod.externalviews.KeyguardExternalView$8: void run() -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -androidx.preference.R$styleable: int Toolbar_contentInsetStart -okio.Buffer$2: int read() -wangdaye.com.geometricweather.R$attr: int windowActionBarOverlay -wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_width_major -com.google.android.material.R$attr: int tabMode -com.turingtechnologies.materialscrollbar.R$attr: int checkedIcon -androidx.preference.R$style: int Widget_AppCompat_ListView_DropDown -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetEndWithActions -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeBottomLeft -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -okhttp3.Challenge: java.lang.String toString() -okio.Buffer: okio.ByteString readByteString() -wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment: void setOnWeatherSourceChangedListener(wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment$OnWeatherSourceChangedListener) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.util.Date time -org.greenrobot.greendao.AbstractDao: void readEntity(android.database.Cursor,java.lang.Object,int) -androidx.viewpager2.widget.ViewPager2: int getOffscreenPageLimit() -com.bumptech.glide.R$dimen: int compat_button_padding_horizontal_material -cyanogenmod.app.Profile: java.util.ArrayList getTriggersFromType(int) -androidx.swiperefreshlayout.R$dimen: int notification_small_icon_background_padding -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontStyle -okhttp3.Response$Builder: okhttp3.Request request -androidx.work.R$id: int line1 -wangdaye.com.geometricweather.R$array: int temperature_units_short -james.adaptiveicon.R$styleable: int TextAppearance_android_shadowRadius -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void drain() -com.google.android.material.R$style: int ThemeOverlay_AppCompat -james.adaptiveicon.R$style: int Widget_AppCompat_DrawerArrowToggle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust -com.google.android.material.textfield.TextInputLayout$SavedState -com.google.android.material.R$layout: int mtrl_calendar_vertical -cyanogenmod.profiles.StreamSettings: boolean mOverride -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_hint -com.google.android.material.R$attr: int iconGravity -androidx.constraintlayout.widget.R$styleable: int Layout_maxHeight -androidx.appcompat.R$id: int multiply -wangdaye.com.geometricweather.R$string: int settings_title_minimal_icon -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: double Value -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_imeOptions -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge -okhttp3.Call: boolean isCanceled() -androidx.constraintlayout.widget.R$style: int Base_AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX aqi -wangdaye.com.geometricweather.R$id: int search_voice_btn -wangdaye.com.geometricweather.R$dimen: int design_snackbar_extra_spacing_horizontal -androidx.appcompat.resources.R$styleable: int GradientColor_android_centerColor -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_textAllCaps -wangdaye.com.geometricweather.common.basic.models.weather.UV -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial Imperial -androidx.preference.R$attr: int textAppearanceSmallPopupMenu -james.adaptiveicon.R$styleable: int AppCompatTheme_borderlessButtonStyle -androidx.appcompat.R$attr: int drawableStartCompat -cyanogenmod.app.CustomTile$ExpandedStyle: android.os.Parcelable$Creator CREATOR -androidx.preference.R$style: int Widget_AppCompat_TextView -com.jaredrummler.android.colorpicker.R$drawable: int abc_tab_indicator_mtrl_alpha -androidx.customview.R$drawable: int notify_panel_notification_icon_bg -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_imageButtonStyle -androidx.constraintlayout.widget.R$attr: int actionModeShareDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial Imperial -com.bumptech.glide.load.HttpException: HttpException(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind Wind -wangdaye.com.geometricweather.R$attr: int actionModeFindDrawable -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeBottomRight -io.reactivex.internal.observers.InnerQueuedObserver: InnerQueuedObserver(io.reactivex.internal.observers.InnerQueuedObserverSupport,int) -io.reactivex.Observable: io.reactivex.Observable unsubscribeOn(io.reactivex.Scheduler) -androidx.preference.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -okhttp3.internal.ws.RealWebSocket$2: void onResponse(okhttp3.Call,okhttp3.Response) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_DEFAULT_THEME -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTintMode -okio.BufferedSink: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) -androidx.constraintlayout.widget.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_text_size -james.adaptiveicon.R$dimen: int abc_text_size_small_material -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_lifted -android.didikee.donate.R$style: int Base_V23_Theme_AppCompat_Light -androidx.appcompat.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -com.turingtechnologies.materialscrollbar.R$dimen: int abc_progress_bar_height_material -com.amap.api.fence.PoiItem: java.lang.String getCity() -com.google.android.material.R$attr: int windowNoTitle -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -androidx.appcompat.resources.R$id: int accessibility_custom_action_19 -james.adaptiveicon.R$layout: int abc_list_menu_item_checkbox -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonStyleSmall -androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context,android.util.AttributeSet) -okhttp3.internal.Internal: void addLenient(okhttp3.Headers$Builder,java.lang.String,java.lang.String) -com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_new -com.google.android.material.R$styleable: int Constraint_layout_constrainedWidth -com.amap.api.fence.GeoFence: int ADDGEOFENCE_SUCCESS -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: double Dbz -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -androidx.constraintlayout.widget.R$drawable: int abc_switch_thumb_material -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.Observer downstream -androidx.lifecycle.MediatorLiveData$Source: void unplug() -androidx.appcompat.R$attr: int tickMarkTintMode -androidx.work.NetworkType: androidx.work.NetworkType NOT_ROAMING -androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -com.google.android.material.R$attr: int actionModeCloseButtonStyle -androidx.recyclerview.widget.LinearLayoutManager -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX() -okio.AsyncTimeout -com.bumptech.glide.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: java.lang.String Source -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton -com.turingtechnologies.materialscrollbar.R$color: int abc_background_cache_hint_selector_material_dark -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_41 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableStartCompat -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_notificationGroupExistsByName -wangdaye.com.geometricweather.R$dimen: int notification_top_pad_large_text -com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setCircularRevealScrimColor(int) -wangdaye.com.geometricweather.R$attr: int circleRadius -wangdaye.com.geometricweather.R$layout: int widget_clock_day_temp -androidx.constraintlayout.widget.R$styleable: int ActionBar_titleTextStyle -android.didikee.donate.R$styleable: int[] Toolbar -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitle -wangdaye.com.geometricweather.R$id: int scrollIndicatorUp -com.google.android.material.R$styleable: int FloatingActionButton_android_enabled -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -com.google.android.material.R$attr: int flow_lastVerticalBias -wangdaye.com.geometricweather.R$id: int container_main_details -okhttp3.internal.http.StatusLine: okhttp3.internal.http.StatusLine get(okhttp3.Response) -okio.BufferedSink: okio.Buffer buffer() -okhttp3.internal.http2.Http2Connection: long access$200(okhttp3.internal.http2.Http2Connection) -android.didikee.donate.R$layout: int abc_popup_menu_header_item_layout -com.google.android.material.R$styleable: int AppCompatTheme_homeAsUpIndicator -com.bumptech.glide.R$layout: int notification_action_tombstone -com.google.android.material.R$dimen: int mtrl_extended_fab_end_padding -androidx.appcompat.R$attr: int titleTextAppearance -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: int getStatus() -androidx.preference.R$bool: int abc_allow_stacked_button_bar -androidx.preference.R$styleable: int ViewBackgroundHelper_android_background -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontVariationSettings -com.google.android.material.R$styleable: int KeyPosition_motionTarget -androidx.transition.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$drawable -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int pm25 -androidx.preference.R$style: int Base_Widget_AppCompat_TextView -androidx.preference.R$styleable: int PopupWindow_android_popupBackground -james.adaptiveicon.R$dimen: int abc_button_inset_vertical_material -com.turingtechnologies.materialscrollbar.R$attr: int windowActionBar -okhttp3.Route: Route(okhttp3.Address,java.net.Proxy,java.net.InetSocketAddress) -androidx.viewpager.widget.ViewPager: int getPageMargin() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode AUTO -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.util.concurrent.CompletableFuture adapt(retrofit2.Call) -androidx.viewpager2.R$dimen: int notification_large_icon_width -com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$layout: int abc_screen_simple_overlay_action_mode -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: ObservableCache$CacheDisposable(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableCache) -okhttp3.Dispatcher: java.util.List runningCalls() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu -androidx.constraintlayout.helper.widget.Layer: void setRotation(float) -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayModes -com.google.android.material.chip.ChipGroup: void setDividerDrawableHorizontal(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_maxHeight -okhttp3.internal.http1.Http1Codec: int state -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void cancel() -cyanogenmod.externalviews.KeyguardExternalView$7: void run() -androidx.swiperefreshlayout.R$layout: int notification_action -androidx.preference.R$styleable: int ListPreference_entries -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_NoActionBar -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Time -androidx.preference.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.google.android.material.internal.ForegroundLinearLayout -com.google.android.material.R$color: int abc_hint_foreground_material_light -androidx.appcompat.R$integer: int cancel_button_image_alpha -wangdaye.com.geometricweather.R$color: int design_default_color_primary -com.google.android.material.R$attr: int passwordToggleTintMode -cyanogenmod.providers.CMSettings$Secure: java.lang.String KEYBOARD_BRIGHTNESS -james.adaptiveicon.R$dimen: int abc_list_item_padding_horizontal_material -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: int hasRain -wangdaye.com.geometricweather.R$color: int design_default_color_on_secondary -com.google.android.material.R$layout: int material_timepicker_dialog -androidx.vectordrawable.animated.R$layout: int notification_template_icon_group -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_small_material -cyanogenmod.app.ProfileManager -com.google.android.material.R$styleable: int SwitchCompat_android_thumb -com.turingtechnologies.materialscrollbar.R$id: int none -androidx.hilt.lifecycle.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$drawable: int notif_temp_32 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: void setNotice(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int abc_dialog_title_divider_material -com.google.android.material.R$color: int design_default_color_background -wangdaye.com.geometricweather.R$styleable: int Layout_barrierMargin -cyanogenmod.app.BaseLiveLockManagerService: BaseLiveLockManagerService() -wangdaye.com.geometricweather.R$styleable: int Constraint_android_minHeight -wangdaye.com.geometricweather.R$interpolator: int mtrl_fast_out_slow_in -wangdaye.com.geometricweather.R$attr: int buttonIconDimen -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -androidx.appcompat.widget.ActionBarOverlayLayout: int getActionBarHideOffset() -androidx.lifecycle.LiveData$ObserverWrapper -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_attributeName -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void drain() -com.turingtechnologies.materialscrollbar.R$attr: int textAppearancePopupMenuHeader -com.xw.repo.bubbleseekbar.R$dimen: int abc_alert_dialog_button_bar_height -com.google.gson.stream.JsonReader: boolean nextBoolean() -androidx.recyclerview.R$id: int accessibility_custom_action_25 -com.google.android.material.R$dimen: int mtrl_btn_corner_radius -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void complete(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeErrorColor -androidx.preference.R$anim: int abc_fade_out -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature Temperature -wangdaye.com.geometricweather.background.service.TileService -androidx.recyclerview.R$styleable: int RecyclerView_reverseLayout -com.google.android.material.R$styleable: int MaterialButton_shapeAppearance -androidx.preference.R$styleable: int MenuItem_contentDescription -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -cyanogenmod.externalviews.ExternalViewProviderService$1$1: cyanogenmod.externalviews.ExternalViewProviderService$1 this$1 -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void run() -wangdaye.com.geometricweather.R$attr: int buttonPanelSideLayout -androidx.appcompat.widget.ActionMenuView: ActionMenuView(android.content.Context) -cyanogenmod.themes.IThemeService: void applyDefaultTheme() -androidx.appcompat.R$styleable: int TextAppearance_textAllCaps -cyanogenmod.providers.CMSettings$System: java.lang.String LIVE_DISPLAY_HINTED -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Body1 -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView_DropDown -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_icon_padding -androidx.vectordrawable.R$color: int ripple_material_light -cyanogenmod.app.ILiveLockScreenManager: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -androidx.appcompat.R$styleable: int SwitchCompat_showText -wangdaye.com.geometricweather.R$attr: int expanded -cyanogenmod.app.Profile$DozeMode: int ENABLE -com.google.android.material.R$styleable: int TextInputLayout_boxStrokeWidth -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification -okhttp3.internal.http2.Settings: int getMaxFrameSize(int) -androidx.hilt.R$id: int italic -androidx.constraintlayout.helper.widget.Flow: void setVerticalBias(float) -wangdaye.com.geometricweather.db.entities.LocationEntity: LocationEntity() -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setSubtitleText(java.lang.String) -androidx.hilt.R$dimen: int notification_right_side_padding_top -com.jaredrummler.android.colorpicker.R$id: int select_dialog_listview -androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor valueOf(java.lang.String) -okio.Base64: byte[] MAP -android.didikee.donate.R$dimen: int abc_dialog_fixed_height_major -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -okhttp3.internal.http2.Http2Reader$Handler: void data(boolean,int,okio.BufferedSource,int) -com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog_Alert -wangdaye.com.geometricweather.R$attr: int ratingBarStyle -com.turingtechnologies.materialscrollbar.R$attr: int materialCardViewStyle -wangdaye.com.geometricweather.R$bool: int mtrl_btn_textappearance_all_caps -wangdaye.com.geometricweather.R$styleable: int[] ViewStubCompat -okhttp3.internal.tls.DistinguishedNameParser: int cur -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation BOTTOM -wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity -wangdaye.com.geometricweather.R$attr: int flow_lastVerticalBias -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setZh_TW(java.lang.String) -androidx.drawerlayout.R$dimen: int notification_content_margin_start -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: ILiveLockScreenManagerProvider$Stub$Proxy(android.os.IBinder) -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_overflow_padding_start_material -androidx.transition.R$id: int transition_position -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: int hasSeaBulletin -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -androidx.recyclerview.R$id: int accessibility_custom_action_15 -cyanogenmod.externalviews.ExternalViewProviderService$1$1 -com.google.android.material.button.MaterialButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_displayOptions -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windSpeedGust -com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_focused -okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String servedDateString -androidx.preference.R$styleable: int ActionBarLayout_android_layout_gravity -okhttp3.Call: okhttp3.Response execute() -wangdaye.com.geometricweather.R$attr: int showPaths -com.github.rahatarmanahmed.cpv.BuildConfig -android.didikee.donate.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -com.amap.api.fence.GeoFenceManagerBase: void setActivateAction(int) -okhttp3.internal.http2.Hpack$Writer: void clearDynamicTable() -androidx.appcompat.view.menu.CascadingMenuPopup -androidx.constraintlayout.widget.Constraints -androidx.preference.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getSupportedFeatures() -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_icon_color_selector -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize -com.xw.repo.bubbleseekbar.R$attr: int editTextStyle -androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingStart -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX -com.google.android.material.R$color: int design_bottom_navigation_shadow_color -com.google.android.material.circularreveal.CircularRevealFrameLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -io.reactivex.internal.observers.BlockingObserver: java.lang.Object TERMINATED -com.amap.api.location.AMapLocationClient: void enableBackgroundLocation(int,android.app.Notification) -android.didikee.donate.R$attr: int colorButtonNormal -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language UNSIMPLIFIED_CHINESE -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int bufferSize -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.ObservableEmitter emitter -androidx.constraintlayout.widget.Placeholder: int getEmptyVisibility() -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Display1 -androidx.constraintlayout.widget.R$attr: int layout_goneMarginRight -com.turingtechnologies.materialscrollbar.R$id: int pin -androidx.core.R$layout: R$layout() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Caption -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setHostname -android.didikee.donate.R$styleable: int AppCompatTheme_checkedTextViewStyle -james.adaptiveicon.R$color: int abc_primary_text_material_light -wangdaye.com.geometricweather.R$style: int widget_text_clock -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder domain(java.lang.String) -wangdaye.com.geometricweather.R$array: int speed_unit_values -androidx.customview.R$style: int TextAppearance_Compat_Notification_Time -com.jaredrummler.android.colorpicker.R$attr: int iconTint -cyanogenmod.platform.Manifest$permission: java.lang.String READ_DATAUSAGE -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: Hourly(java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability) -okhttp3.Cache$CacheRequestImpl: okhttp3.internal.cache.DiskLruCache$Editor editor -io.reactivex.Observable: io.reactivex.Observable skipUntil(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_crossfade -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,okio.ByteString) -androidx.work.NetworkType: androidx.work.NetworkType UNMETERED -okio.Buffer: boolean isOpen() -com.google.android.material.R$layout: int material_clockface_textview -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_FONT -wangdaye.com.geometricweather.R$styleable: int MaterialButton_backgroundTintMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean) -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String binarySearchBytes(byte[],byte[][],int) -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetBottom -com.google.gson.internal.LinkedTreeMap: java.util.Set keySet() -cyanogenmod.content.Intent: Intent() -com.bumptech.glide.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: CNWeatherResult$Life() -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit PPCM -com.google.android.material.slider.BaseSlider: int getTrackSidePadding() -com.turingtechnologies.materialscrollbar.R$attr: int alertDialogButtonGroupStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_orientation -okhttp3.MediaType: java.lang.String TOKEN -android.didikee.donate.R$color: int notification_icon_bg_color -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_DialogWhenLarge -james.adaptiveicon.R$styleable: int RecycleListView_paddingTopNoTitle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: java.lang.String Unit -cyanogenmod.providers.CMSettings$Validator: boolean validate(java.lang.String) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onComplete() -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -retrofit2.ParameterHandler$HeaderMap: retrofit2.Converter valueConverter -com.turingtechnologies.materialscrollbar.R$style: int Platform_Widget_AppCompat_Spinner -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.multidex.MultiDexApplication: MultiDexApplication() -cyanogenmod.weather.WeatherInfo$DayForecast$1: cyanogenmod.weather.WeatherInfo$DayForecast createFromParcel(android.os.Parcel) -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -okhttp3.internal.cache.DiskLruCache$1: okhttp3.internal.cache.DiskLruCache this$0 -com.google.android.gms.location.ActivityTransitionEvent: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$id: int customPanel -androidx.constraintlayout.widget.R$id -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean -androidx.lifecycle.ComputableLiveData$3 -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_ttcIndex -james.adaptiveicon.R$styleable: int SwitchCompat_trackTintMode -androidx.preference.R$styleable: int RecyclerView_reverseLayout -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] WILDCARD_LABEL -com.google.android.material.R$attr: int autoTransition -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: java.util.concurrent.TimeUnit unit -wangdaye.com.geometricweather.R$layout: int dialog_donate_wechat -okhttp3.RealCall$AsyncCall: void execute() -androidx.preference.R$attr: int subMenuArrow -wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_android_src -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider NATIVE -androidx.lifecycle.SavedStateHandleController$OnRecreation -wangdaye.com.geometricweather.R$styleable: int MenuItem_tooltipText -androidx.hilt.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: double Value -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_interval -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: long serialVersionUID -wangdaye.com.geometricweather.R$color: int mtrl_fab_ripple_color -androidx.preference.R$styleable: int ActionBar_customNavigationLayout -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_hideOnContentScroll -androidx.appcompat.resources.R$id: int tag_accessibility_actions -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -retrofit2.internal.EverythingIsNonNull -okhttp3.internal.cache.DiskLruCache$Entry -androidx.swiperefreshlayout.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_top_start -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -com.google.android.material.chip.Chip: android.content.res.ColorStateList getRippleColor() -androidx.appcompat.R$style: int Base_V28_Theme_AppCompat -androidx.appcompat.R$attr: int drawableBottomCompat -androidx.preference.R$color: int dim_foreground_disabled_material_dark -androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context) -androidx.preference.R$styleable: int AppCompatTheme_actionMenuTextAppearance -cyanogenmod.themes.IThemeService$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDaylight(boolean) -androidx.appcompat.R$styleable: int SearchView_defaultQueryHint -androidx.preference.R$styleable: int RecyclerView_android_descendantFocusability -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionBarOverlay -com.google.android.material.R$attr: int chipStandaloneStyle -com.google.android.material.R$attr: int listChoiceIndicatorMultipleAnimated -androidx.loader.R$integer -androidx.viewpager.R$attr: int fontProviderPackage -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_elevation -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_2G -androidx.constraintlayout.widget.R$styleable: int ActionBar_progressBarPadding -androidx.viewpager2.R$id: int action_divider -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Body1 -com.google.android.material.R$id: int startHorizontal -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_27 -wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_min -com.google.android.material.R$attr: int colorOnPrimary -wangdaye.com.geometricweather.background.polling.work.worker.TomorrowForecastUpdateWorker -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setPoint(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean) -wangdaye.com.geometricweather.settings.fragments.SettingsFragment: SettingsFragment() -com.google.android.material.R$attr: int flow_verticalBias -com.google.android.material.switchmaterial.SwitchMaterial: android.content.res.ColorStateList getMaterialThemeColorsThumbTintList() -androidx.preference.R$attr: int selectableItemBackgroundBorderless -cyanogenmod.app.ICustomTileListener$Stub: cyanogenmod.app.ICustomTileListener asInterface(android.os.IBinder) -wangdaye.com.geometricweather.R$id: int item_aqi -android.didikee.donate.R$dimen: int abc_seekbar_track_background_height_material -androidx.constraintlayout.widget.R$attr: int drawerArrowStyle -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_color -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String unit -cyanogenmod.providers.CMSettings$System$2: boolean validate(java.lang.String) -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerComplete() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_radioButtonStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableLeftCompat -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int TROPICAL_STORM -com.google.android.material.R$attr: int curveFit -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial -okhttp3.internal.cache2.Relay: okio.ByteString metadata() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_switch_thumb_material -retrofit2.RequestBuilder: okhttp3.FormBody$Builder formBuilder -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.R$string: int settings_title_ui_style -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric Metric -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -okhttp3.internal.http2.Http2Connection$IntervalPingRunnable -cyanogenmod.hardware.CMHardwareManager: boolean setDisplayGammaCalibration(int,int[]) -cyanogenmod.media.MediaRecorder: MediaRecorder() -com.amap.api.fence.PoiItem$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.hilt.work.R$dimen: int notification_top_pad -james.adaptiveicon.R$color: int dim_foreground_disabled_material_light -okhttp3.Dispatcher: java.util.concurrent.ExecutorService executorService() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_textAppearance -androidx.vectordrawable.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.R$id: int tag_icon_top -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean isDisposed() -com.google.android.material.R$dimen: int mtrl_textinput_counter_margin_start -okio.Pipe$PipeSource: okio.Timeout timeout() -io.reactivex.internal.subscriptions.EmptySubscription: void error(java.lang.Throwable,org.reactivestreams.Subscriber) -io.reactivex.subjects.PublishSubject$PublishDisposable: io.reactivex.Observer downstream -androidx.hilt.work.R$attr: int fontStyle -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float snow -james.adaptiveicon.R$color: int foreground_material_light -androidx.appcompat.R$dimen: int notification_top_pad -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getThumbStrokeColor() -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy NONE -okio.ForwardingTimeout: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) -cyanogenmod.providers.CMSettings$NameValueCache: android.net.Uri mUri -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$animator: int mtrl_chip_state_list_anim -com.amap.api.fence.PoiItem: void setLatitude(double) -okhttp3.HttpUrl: java.lang.String host() -com.google.android.material.R$styleable: int CardView_android_minWidth -okhttp3.internal.http.RealInterceptorChain: java.util.List interceptors -wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_grey -com.jaredrummler.android.colorpicker.R$id: int action_bar -com.turingtechnologies.materialscrollbar.R$attr: int measureWithLargestChild -androidx.preference.R$id: int tag_accessibility_actions -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end -wangdaye.com.geometricweather.R$attr: int windowFixedHeightMajor -androidx.lifecycle.MediatorLiveData: void addSource(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) -wangdaye.com.geometricweather.R$attr: int layout_collapseParallaxMultiplier -wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_list -wangdaye.com.geometricweather.R$color: int abc_search_url_text_pressed -james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMarkTintMode -androidx.preference.R$styleable: int CompoundButton_buttonTintMode -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_searchIcon -com.google.android.material.R$attr: int thumbElevation -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_toTopOf -wangdaye.com.geometricweather.R$attr: int layout_behavior -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_dither -cyanogenmod.providers.CMSettings$System: java.lang.String ZEN_ALLOW_LIGHTS -androidx.coordinatorlayout.R$drawable: int notification_tile_bg -com.google.android.material.R$id: int mtrl_picker_title_text -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours Past3Hours -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_color -com.google.android.material.radiobutton.MaterialRadioButton: void setUseMaterialThemeColors(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int getStatus() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintEnd_toStartOf -wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity: DayWidgetConfigActivity() -androidx.constraintlayout.widget.R$color: int primary_dark_material_dark -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$attr: int cornerFamilyTopLeft -wangdaye.com.geometricweather.R$layout: int activity_alert -retrofit2.ParameterHandler$QueryName: retrofit2.Converter nameConverter -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState PAUSED -com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_Tooltip -com.google.android.material.slider.BaseSlider: void setThumbElevation(float) -wangdaye.com.geometricweather.R$layout: int item_weather_icon -cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache -androidx.swiperefreshlayout.R$attr: int fontProviderAuthority -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabText -cyanogenmod.weather.CMWeatherManager$1$1: cyanogenmod.weather.CMWeatherManager$1 this$1 -cyanogenmod.app.ICMTelephonyManager: void setSubState(int,boolean) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language JAPANESE -android.didikee.donate.R$attr: int toolbarNavigationButtonStyle -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onError(java.lang.Throwable) -com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.badge.BadgeDrawable getOrCreateBadge() -com.turingtechnologies.materialscrollbar.R$attr: int autoCompleteTextViewStyle -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -com.google.android.material.R$style: int ShapeAppearanceOverlay_TopRightDifferentCornerSize -com.google.android.material.R$style: int Widget_AppCompat_Light_PopupMenu -com.google.android.gms.location.LocationResult: android.os.Parcelable$Creator CREATOR -androidx.appcompat.widget.AppCompatTextView: int getAutoSizeMinTextSize() -com.google.android.material.R$styleable: int AppBarLayoutStates_state_collapsible -androidx.preference.R$styleable: int Spinner_android_dropDownWidth -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_reverseLayout -okhttp3.internal.http2.Hpack$Reader: okio.ByteString readByteString() -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_processThemeResources -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.util.Date getDate() -androidx.dynamicanimation.R$id: int text2 -io.reactivex.subjects.PublishSubject$PublishDisposable: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: int count -cyanogenmod.weather.util.WeatherUtils -com.jaredrummler.android.colorpicker.R$color: int material_grey_100 -com.google.android.material.R$id: int rectangles -com.xw.repo.bubbleseekbar.R$string: int abc_menu_alt_shortcut_label -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: AccuCurrentResult$Temperature$Imperial() -wangdaye.com.geometricweather.R$attr: int itemTextAppearance -com.google.android.material.R$style: int Base_V7_Widget_AppCompat_EditText -james.adaptiveicon.R$color: int notification_action_color_filter -james.adaptiveicon.R$layout: int abc_alert_dialog_material -com.google.gson.internal.LinkedTreeMap: java.lang.Object put(java.lang.Object,java.lang.Object) -com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$dimen: int abc_button_inset_vertical_material -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType UNKNOWN -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: void onUpgrade(org.greenrobot.greendao.database.Database,int,int) -com.google.android.material.R$layout: int abc_search_view -androidx.dynamicanimation.R$attr: R$attr() -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCloudCover(java.lang.Integer) -com.google.android.material.R$attr: int dividerHorizontal -cyanogenmod.themes.IThemeChangeListener$Stub: int TRANSACTION_onFinish_1 -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: BaiduIPLocationResult$ContentBean$PointBean() -wangdaye.com.geometricweather.R$string: int week_3 -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getDaytimeWindDegree() -androidx.preference.R$styleable: int ViewBackgroundHelper_backgroundTint -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean done -com.amap.api.location.AMapLocation: int getLocationType() -cyanogenmod.profiles.ConnectionSettings: int getValue() -okhttp3.internal.ws.WebSocketWriter$FrameSink: boolean isFirstFrame -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void updateVisibility() -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplaceInTxArray -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$attr: int textColorSearchUrl -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.R$styleable: int LiveLockScreen_type -androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_container -okhttp3.MediaType: java.lang.String type() -wangdaye.com.geometricweather.R$layout: int notification_template_part_chronometer -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorHeight -androidx.appcompat.R$styleable: int ViewStubCompat_android_layout -com.google.android.gms.internal.location.zzbg -wangdaye.com.geometricweather.R$styleable: int ArcProgress_arc_angle -androidx.preference.R$styleable: int GradientColor_android_centerX -androidx.lifecycle.LiveData$ObserverWrapper: int mLastVersion -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: retrofit2.Call $this_await$inlined -androidx.hilt.work.R$id: int tag_unhandled_key_event_manager -com.amap.api.location.AMapLocation: void setAdCode(java.lang.String) -wangdaye.com.geometricweather.R$color: int mtrl_textinput_filled_box_default_background_color -androidx.lifecycle.MediatorLiveData$Source: androidx.lifecycle.Observer mObserver -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$styleable: int[] AnimatableIconView -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: ExecutorScheduler$ExecutorWorker$InterruptibleRunnable(java.lang.Runnable,io.reactivex.internal.disposables.DisposableContainer) -androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_small_material -io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function) -cyanogenmod.app.suggest.IAppSuggestManager -james.adaptiveicon.R$styleable: int SearchView_searchHintIcon -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: long EpochSet -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Body2 -androidx.appcompat.R$bool: R$bool() -wangdaye.com.geometricweather.R$styleable: int TabItem_android_layout -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int HAS_REQUEST_NO_VALUE -androidx.appcompat.R$color: int switch_thumb_disabled_material_dark -com.amap.api.location.DPoint$1 -io.reactivex.internal.subscriptions.BasicQueueSubscription: BasicQueueSubscription() -okhttp3.Cookie$Builder: java.lang.String value -wangdaye.com.geometricweather.R$layout: int widget_text_end -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_tint -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_exitFadeDuration -wangdaye.com.geometricweather.R$drawable: int weather_haze_2 -com.amap.api.fence.DistrictItem: DistrictItem() -androidx.appcompat.widget.SwitchCompat: android.graphics.PorterDuff$Mode getThumbTintMode() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm25Desc -wangdaye.com.geometricweather.R$attr: int currentState -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_creator -androidx.drawerlayout.R$drawable: int notification_bg_normal -com.google.android.material.R$attr: int switchStyle -com.google.android.material.button.MaterialButton: void setCheckable(boolean) -com.xw.repo.bubbleseekbar.R$attr: int listLayout -com.amap.api.location.AMapLocationClientOption: long getGpsFirstTimeout() -android.didikee.donate.R$id: int action_mode_bar -com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabRippleColor() -wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_bottom_end -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetRight -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display4 -com.google.android.material.R$styleable: int MaterialCalendarItem_itemStrokeColor -androidx.preference.R$layout: int preference_category -androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -com.google.android.material.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory createWithScheduler(io.reactivex.Scheduler) -androidx.preference.R$styleable: int SeekBarPreference_updatesContinuously -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_switchTextOn -androidx.preference.R$styleable: int MenuItem_android_enabled -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_checkedTextViewStyle -androidx.preference.R$attr: int background -okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE_TEMP -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -com.google.android.material.R$dimen: int design_bottom_sheet_peek_height_min -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizePresetSizes -com.jaredrummler.android.colorpicker.R$attr: int seekBarStyle -androidx.fragment.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean active -com.google.android.material.R$styleable: int ClockHandView_materialCircleRadius -com.turingtechnologies.materialscrollbar.R$attr: int actionBarTheme -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -okhttp3.internal.http2.Settings -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: java.lang.String Hex -wangdaye.com.geometricweather.R$attr: int thumbTint -com.google.android.material.R$styleable: int ActionMenuItemView_android_minWidth -com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Light -cyanogenmod.weatherservice.WeatherProviderService: android.os.Handler mHandler -james.adaptiveicon.R$styleable: int Toolbar_titleMargin -okhttp3.internal.http2.Hpack$Reader: void readHeaders() -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.disposables.CompositeDisposable disposables -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: long serialVersionUID -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: void setBrands(java.util.List) -com.google.android.material.R$id: int icon -androidx.preference.R$styleable: int PreferenceTheme_editTextPreferenceStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_creator -com.turingtechnologies.materialscrollbar.R$attr: int queryBackground -wangdaye.com.geometricweather.R$attr: int prefixTextAppearance -com.amap.api.location.AMapLocationClientOption: boolean isOnceLocationLatest() -android.didikee.donate.R$styleable: int CompoundButton_android_button -com.amap.api.location.AMapLocation: com.amap.api.location.AMapLocationQualityReport getLocationQualityReport() -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.subjects.Subject signaller -okhttp3.internal.Internal: java.net.Socket deduplicate(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedWidthMajor -androidx.coordinatorlayout.R$styleable: int GradientColorItem_android_offset -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy BUFFER -androidx.hilt.R$drawable: int notification_tile_bg -retrofit2.RequestFactory: retrofit2.ParameterHandler[] parameterHandlers -androidx.constraintlayout.widget.R$id: int dragStart -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int[] State -androidx.appcompat.R$dimen: int abc_dialog_padding_material -com.google.android.gms.base.R$attr: int scopeUris -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: cyanogenmod.app.suggest.IAppSuggestProvider asInterface(android.os.IBinder) -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: int index -com.google.android.material.R$attr: int colorSecondaryVariant -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupWindow -androidx.appcompat.R$attr: int textColorAlertDialogListItem -androidx.cardview.R$attr: int cardViewStyle -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_ttcIndex -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop -com.jaredrummler.android.colorpicker.R$id: int shades_layout -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstVerticalBias -androidx.hilt.work.R$dimen: int notification_large_icon_width -android.didikee.donate.R$dimen: int abc_text_size_large_material -androidx.lifecycle.extensions.R$id: int tag_unhandled_key_event_manager -com.turingtechnologies.materialscrollbar.R$anim -androidx.activity.R$styleable -androidx.work.impl.utils.futures.AbstractFuture: androidx.work.impl.utils.futures.AbstractFuture$Waiter waiters -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingStart -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: boolean disconnectedEarly -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoonPhaseAngle() -okhttp3.Route: java.net.InetSocketAddress socketAddress() -wangdaye.com.geometricweather.R$styleable: int[] BottomAppBar -com.google.android.material.R$attr: int trackColorInactive -james.adaptiveicon.R$styleable: int MenuView_android_itemIconDisabledAlpha -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_subtitle_material_toolbar -com.google.android.material.R$color: int design_dark_default_color_surface -okhttp3.internal.platform.AndroidPlatform$CloseGuard: okhttp3.internal.platform.AndroidPlatform$CloseGuard get() -com.github.rahatarmanahmed.cpv.CircularProgressView$8: void onAnimationUpdate(android.animation.ValueAnimator) -okhttp3.CertificatePinner: void check(java.lang.String,java.security.cert.Certificate[]) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Spinner -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_MD5 -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: java.lang.Float min -com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_Primary -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setCityId(java.lang.String) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView_Menu -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dialog -androidx.swiperefreshlayout.widget.SwipeRefreshLayout -com.google.android.material.R$layout: int mtrl_calendar_horizontal -androidx.appcompat.R$color: int abc_tint_switch_track -androidx.work.R$id: int accessibility_custom_action_27 -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_height_major -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_51 -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_text_size -androidx.appcompat.R$string: int abc_searchview_description_clear -androidx.appcompat.widget.ScrollingTabContainerView -androidx.preference.R$id: int title_template -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_DES_CBC_SHA -android.didikee.donate.R$string: int abc_searchview_description_voice -wangdaye.com.geometricweather.R$id: int actions -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable -com.google.android.material.card.MaterialCardView: void setStrokeColor(int) -com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_overlapAnchor -androidx.fragment.R$id: int accessibility_custom_action_22 -android.didikee.donate.R$style: int Widget_AppCompat_ProgressBar -cyanogenmod.app.ICMTelephonyManager: void setDataConnectionSelectedOnSub(int) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.String TABLENAME -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_toTopOf -androidx.loader.R$id: int notification_main_column -androidx.vectordrawable.animated.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$dimen: int cpv_dialog_preview_width -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean delayErrors -androidx.constraintlayout.widget.R$id: int title_template -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_count -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderSelection -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_dark -androidx.constraintlayout.widget.R$layout: int abc_action_menu_layout -james.adaptiveicon.R$attr: int multiChoiceItemLayout -androidx.appcompat.R$style: int Base_V26_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.R$string: int settings_category_widget -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_precise_anchor_extra_offset -wangdaye.com.geometricweather.R$id: int labeled -com.google.android.material.R$styleable: int MockView_mock_showDiagonals -com.bumptech.glide.load.engine.GlideException: void printStackTrace(java.io.PrintStream) -com.google.android.material.R$dimen: int abc_action_bar_overflow_padding_end_material -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -com.jaredrummler.android.colorpicker.R$dimen: int notification_top_pad_large_text -com.google.android.material.R$styleable: int AppCompatTheme_dialogTheme -retrofit2.Retrofit$Builder: java.util.List converterFactories -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_alphabeticModifiers -com.google.android.material.R$attr: int boxCornerRadiusBottomEnd -com.google.android.material.chip.Chip: void setCloseIconVisible(boolean) -wangdaye.com.geometricweather.R$attr: int alertDialogButtonGroupStyle -com.google.android.material.R$styleable -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: int getSuggestedMinimumWidth() -com.baidu.location.e.l$b: java.util.List a(org.json.JSONObject,java.lang.String,int) -com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_out_top -androidx.lifecycle.extensions.R$dimen: int notification_media_narrow_margin -androidx.preference.R$id: int submenuarrow -com.google.android.material.R$string: int password_toggle_content_description -androidx.work.R$styleable: int GradientColor_android_startColor -com.google.android.material.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -androidx.hilt.work.R$layout -okio.Okio$1: void flush() -okio.Okio$2: Okio$2(okio.Timeout,java.io.InputStream) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: boolean isDisposed() -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: java.lang.Object poll() -androidx.loader.R$color: R$color() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void open(java.lang.Object) -androidx.constraintlayout.widget.R$attr: int motion_postLayoutCollision -androidx.constraintlayout.widget.R$attr: int icon -io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean,int) -androidx.preference.R$style: int TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_maxWidth -cyanogenmod.providers.CMSettings$CMSettingNotFoundException -retrofit2.http.Part: java.lang.String encoding() -com.jaredrummler.android.colorpicker.R$styleable: int View_paddingEnd -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver this$0 -androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getLongitude() -androidx.hilt.work.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableItem_android_drawable -wangdaye.com.geometricweather.R$id: int mtrl_calendar_year_selector_frame -com.turingtechnologies.materialscrollbar.R$style -retrofit2.HttpServiceMethod$CallAdapted: HttpServiceMethod$CallAdapted(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter) -android.didikee.donate.R$id: int alertTitle -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -cyanogenmod.app.ICustomTileListener$Stub: java.lang.String DESCRIPTOR -cyanogenmod.weather.WeatherLocation: java.lang.String access$702(cyanogenmod.weather.WeatherLocation,java.lang.String) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int READY -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode[] $VALUES -okhttp3.internal.http2.Hpack$Reader: int readInt(int,int) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathOffset(float) -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection connection -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getBackgroundColor() -wangdaye.com.geometricweather.R$string: int key_temperature_unit -cyanogenmod.themes.IThemeService: long getLastThemeChangeTime() -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context) -android.didikee.donate.R$styleable: int SwitchCompat_thumbTextPadding -androidx.appcompat.R$id: int off -androidx.preference.R$styleable: int AppCompatTheme_android_windowIsFloating -com.google.android.material.R$string: int abc_menu_function_shortcut_label -android.didikee.donate.R$styleable: int AppCompatTheme_panelMenuListWidth -com.google.android.material.R$styleable: int KeyPosition_framePosition -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SearchView -okio.Segment: okio.Segment split(int) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_cornerRadius -androidx.preference.R$attr: int suggestionRowLayout -androidx.appcompat.R$dimen: int notification_content_margin_start -com.amap.api.location.AMapLocation: java.lang.String b(com.amap.api.location.AMapLocation,java.lang.String) -cyanogenmod.providers.CMSettings$Secure: boolean isLegacySetting(java.lang.String) -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,int,int) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DOUBLE_TAP_SLEEP_GESTURE_VALIDATOR -android.didikee.donate.R$styleable: int ActionBar_logo -wangdaye.com.geometricweather.R$string: int tag_wind -com.turingtechnologies.materialscrollbar.Handle: void setRightToLeft(boolean) -wangdaye.com.geometricweather.R$attr: int iconifiedByDefault -cyanogenmod.providers.CMSettings$System: java.lang.String LOCKSCREEN_PIN_SCRAMBLE_LAYOUT -okhttp3.OkHttpClient: okhttp3.Cache cache() -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String moonPhase -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalStyle -wangdaye.com.geometricweather.R$styleable: int MenuItem_actionLayout -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar_Colored -com.google.android.material.R$layout: int test_reflow_chipgroup -com.google.android.material.R$attr: int waveVariesBy -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setIndices(java.util.List) -com.google.gson.stream.JsonReader: int PEEKED_NULL -cyanogenmod.weather.CMWeatherManager: java.util.Map mLookupNameRequestListeners -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: IExternalViewProviderFactory$Stub$Proxy(android.os.IBinder) -cyanogenmod.util.ColorUtils: float interp(int,float) -com.turingtechnologies.materialscrollbar.R$attr: int boxStrokeWidth -okhttp3.Request: okhttp3.RequestBody body -androidx.viewpager2.R$dimen: int notification_right_icon_size -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: boolean setOther(io.reactivex.disposables.Disposable) -com.google.android.material.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_primary -androidx.legacy.coreutils.R$id: int line3 -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage valueOf(java.lang.String) -com.google.android.material.R$color: int material_grey_800 -androidx.core.R$styleable: int[] ColorStateListItem -androidx.lifecycle.extensions.R$color: R$color() -androidx.appcompat.widget.AppCompatCheckBox: void setSupportButtonTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.R$color: int darkPrimary_1 -com.turingtechnologies.materialscrollbar.R$attr: int panelMenuListTheme -okio.Buffer: byte[] DIGITS -okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method getMethod -com.jaredrummler.android.colorpicker.R$attr: int fastScrollEnabled -wangdaye.com.geometricweather.R$layout: int dialog_animatable_icon -com.google.android.material.R$dimen: int mtrl_calendar_title_baseline_to_top -io.reactivex.exceptions.MissingBackpressureException: MissingBackpressureException(java.lang.String) -com.google.android.material.R$dimen: int abc_button_padding_vertical_material -com.google.android.material.card.MaterialCardView: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_is_float_type -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -wangdaye.com.geometricweather.R$menu: int activity_main -okhttp3.internal.http2.Http2Connection$6: Http2Connection$6(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okio.Buffer,int,boolean) -wangdaye.com.geometricweather.R$drawable: int ic_state_checked -wangdaye.com.geometricweather.R$drawable: int notif_temp_65 -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: okio.Timeout timeout() -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerComplete(int,boolean) -com.jaredrummler.android.colorpicker.R$color: int background_floating_material_light -com.google.android.material.R$drawable: int abc_btn_radio_to_on_mtrl_015 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingEnd -james.adaptiveicon.R$integer: int status_bar_notification_info_maxnum -com.google.gson.stream.JsonReader: boolean fillBuffer(int) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_MinWidth -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableBottom -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HOT -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.R$attr: int extendedFloatingActionButtonStyle -com.google.android.material.datepicker.DateValidatorPointBackward: android.os.Parcelable$Creator CREATOR -com.google.gson.stream.JsonReader: int PEEKED_BEGIN_OBJECT -retrofit2.http.Multipart -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabTextStyle -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: CircularRevealCoordinatorLayout(android.content.Context) -com.google.android.material.slider.BaseSlider: float getValueOfTouchPosition() -androidx.customview.R$layout: int notification_template_part_time -com.turingtechnologies.materialscrollbar.R$styleable: int ActivityChooserView_initialActivityCount -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton_CloseMode -cyanogenmod.app.suggest.IAppSuggestManager$Stub: int TRANSACTION_getSuggestions -androidx.appcompat.resources.R$drawable -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean tryOnError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$dimen: int abc_switch_padding -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginBottom -james.adaptiveicon.R$color: int abc_search_url_text_normal -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonStyleSmall -com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -androidx.constraintlayout.widget.R$dimen -androidx.viewpager2.R$dimen: int notification_action_text_size -com.google.android.material.R$styleable: int TextInputLayout_hintTextAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_android_minWidth -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -okhttp3.MultipartBody -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle -com.xw.repo.bubbleseekbar.R$color: int material_deep_teal_500 -com.google.android.material.R$styleable: int Transform_android_rotation -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.appcompat.widget.AppCompatImageView: void setImageURI(android.net.Uri) -wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_selectionRequired -com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Light -com.jaredrummler.android.colorpicker.R$attr: int actionModeCopyDrawable -james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableTransition -okhttp3.Protocol: okhttp3.Protocol get(java.lang.String) -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: io.reactivex.Observer downstream -androidx.hilt.work.R$id: int notification_main_column -wangdaye.com.geometricweather.R$styleable: int Slider_trackColorActive -okhttp3.Request$Builder -okhttp3.internal.cache.DiskLruCache$Snapshot: long getLength(int) -cyanogenmod.themes.ThemeManager$1$1: int val$progress -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setOnSwitchListener(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout$OnSwitchListener) -wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_tintMode -com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode valueOf(java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int StartMinute -com.xw.repo.bubbleseekbar.R$attr: int popupWindowStyle -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline2 -androidx.constraintlayout.widget.R$attr: int spinnerDropDownItemStyle -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1(retrofit2.Call) -com.google.android.material.card.MaterialCardView: void setCardForegroundColor(android.content.res.ColorStateList) -androidx.preference.R$styleable: int Preference_icon -cyanogenmod.app.Profile: void setExpandedDesktopMode(int) -wangdaye.com.geometricweather.R$style: int Base_V22_Theme_AppCompat_Light -androidx.appcompat.R$styleable: int AppCompatTheme_panelMenuListWidth -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol[] b -androidx.work.R$style: int TextAppearance_Compat_Notification_Title -io.reactivex.Observable: io.reactivex.Observable switchOnNext(io.reactivex.ObservableSource) -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_11 -wangdaye.com.geometricweather.R$id: int content -android.didikee.donate.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: DefaultCallAdapterFactory$ExecutorCallbackCall$1(retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall,retrofit2.Callback) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer -androidx.appcompat.R$style: int Widget_AppCompat_Button -james.adaptiveicon.R$style: int Base_V23_Theme_AppCompat -androidx.appcompat.widget.Toolbar: void setCollapseIcon(int) -com.google.android.material.R$color: int abc_search_url_text_pressed -androidx.appcompat.widget.SearchView: void setQuery(java.lang.CharSequence) -wangdaye.com.geometricweather.R$layout: int abc_cascading_menu_item_layout -retrofit2.OkHttpCall: boolean isCanceled() -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void removeScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -wangdaye.com.geometricweather.R$attr: int textInputStyle -androidx.recyclerview.R$styleable: int RecyclerView_layoutManager -com.xw.repo.bubbleseekbar.R$attr: int bsb_progress -androidx.appcompat.widget.AppCompatButton: int getAutoSizeTextType() -com.jaredrummler.android.colorpicker.R$attr: int contentInsetEndWithActions -com.turingtechnologies.materialscrollbar.R$animator: int design_fab_hide_motion_spec -com.google.android.material.R$drawable: int abc_ic_go_search_api_material -androidx.appcompat.R$drawable: int abc_ab_share_pack_mtrl_alpha -com.amap.api.location.AMapLocation: int c(com.amap.api.location.AMapLocation,int) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int no2 -androidx.lifecycle.viewmodel.R: R() -androidx.hilt.work.R$dimen: R$dimen() -wangdaye.com.geometricweather.R$id: int activity_widget_config_top -wangdaye.com.geometricweather.R$drawable: int ic_water_percent -cyanogenmod.providers.CMSettings$System: boolean isLegacySetting(java.lang.String) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListPopupWindow -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer apparentTemperature -androidx.constraintlayout.widget.R$anim: int abc_grow_fade_in_from_bottom -com.google.android.material.R$styleable: int AppCompatTheme_colorBackgroundFloating -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_padding_left -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -okhttp3.internal.http2.Hpack$Reader: boolean isStaticHeader(int) -androidx.preference.R$id: int seekbar_value -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -okhttp3.internal.Internal: void apply(okhttp3.ConnectionSpec,javax.net.ssl.SSLSocket,boolean) -org.greenrobot.greendao.DaoException: long serialVersionUID -androidx.coordinatorlayout.R$styleable: int GradientColor_android_startColor -io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver[] values() -retrofit2.ParameterHandler$Path: retrofit2.Converter valueConverter -androidx.lifecycle.extensions.R$style: int Widget_Compat_NotificationActionContainer -androidx.appcompat.R$id: int checkbox -cyanogenmod.app.Profile: int mProfileType -com.turingtechnologies.materialscrollbar.R$drawable: int design_bottom_navigation_item_background -com.google.android.material.R$color: int mtrl_card_view_foreground -androidx.appcompat.R$style: int TextAppearance_AppCompat_Display4 -androidx.viewpager2.R$id: int accessibility_custom_action_30 -io.reactivex.Observable: io.reactivex.Observable onExceptionResumeNext(io.reactivex.ObservableSource) -com.turingtechnologies.materialscrollbar.R$attr: int closeIconEndPadding -cyanogenmod.app.IPartnerInterface$Stub$Proxy -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_scrollView -okhttp3.internal.cache.DiskLruCache: long ANY_SEQUENCE_NUMBER -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX getIndices() -com.google.android.material.R$drawable: int mtrl_tabs_default_indicator -androidx.appcompat.R$drawable: int abc_cab_background_top_mtrl_alpha -androidx.vectordrawable.R$id: int line3 -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItemSmall -androidx.constraintlayout.widget.R$id: int scrollIndicatorDown -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Co -androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List alert -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator -androidx.appcompat.resources.R$id: int accessibility_custom_action_15 -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$styleable: int KeyCycle_curveFit -com.google.android.material.R$attr: int layout_constraintCircleRadius -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontWeight -androidx.work.R$color: int notification_action_color_filter -androidx.activity.R$styleable: int[] FontFamily -com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_inflatedId -com.jaredrummler.android.colorpicker.R$string: int v7_preference_on -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setId(java.lang.Long) -androidx.hilt.lifecycle.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: double gust -androidx.constraintlayout.widget.R$attr: int buttonIconDimen -androidx.core.R$attr: int fontVariationSettings -retrofit2.OkHttpCall: retrofit2.Converter responseConverter -com.google.android.material.R$styleable: int StateListDrawable_android_variablePadding -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Light -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogMessage -androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_tailScale -okio.BufferedSource: long readHexadecimalUnsignedLong() -com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a a() -james.adaptiveicon.AdaptiveIconView: void setPath(int) -cyanogenmod.providers.CMSettings$CMSettingNotFoundException: CMSettings$CMSettingNotFoundException(java.lang.String) -com.google.android.material.progressindicator.ProgressIndicator: void setIndeterminate(boolean) -androidx.lifecycle.ProcessLifecycleOwner$3 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int PrecipitationProbability -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_pixel -retrofit2.ParameterHandler$FieldMap: java.lang.reflect.Method method -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias -com.google.android.material.R$attr: int minTouchTargetSize -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.Integer alti -android.didikee.donate.R$styleable: int MenuItem_showAsAction -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Button -com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorSize() -com.google.android.gms.common.images.WebImage -io.reactivex.internal.util.ArrayListSupplier: java.util.concurrent.Callable asCallable() -androidx.lifecycle.ProcessLifecycleOwner$2: ProcessLifecycleOwner$2(androidx.lifecycle.ProcessLifecycleOwner) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Menu -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_item_max_width -androidx.activity.R$styleable: int GradientColor_android_centerY -androidx.legacy.coreutils.R$drawable: int notification_template_icon_low_bg -com.jaredrummler.android.colorpicker.R$attr: int track -wangdaye.com.geometricweather.R$attr: int actionLayout -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Summary -androidx.coordinatorlayout.R$style: R$style() -wangdaye.com.geometricweather.R$styleable: int Badge_horizontalOffset -com.jaredrummler.android.colorpicker.R$attr: int barLength -wangdaye.com.geometricweather.R$styleable: int[] InkPageIndicator -androidx.vectordrawable.R$attr: int fontProviderPackage -com.google.android.material.R$drawable: int abc_switch_thumb_material -androidx.appcompat.R$styleable: int[] Toolbar -com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode Hight_Accuracy -okhttp3.internal.http1.Http1Codec$FixedLengthSource: Http1Codec$FixedLengthSource(okhttp3.internal.http1.Http1Codec,long) -retrofit2.Retrofit: void validateServiceInterface(java.lang.Class) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language PORTUGUESE_BR -retrofit2.http.OPTIONS -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMarkTint -cyanogenmod.weather.WeatherLocation: int hashCode() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: int UnitType -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: long time -androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_textAppearance -io.reactivex.Observable: io.reactivex.Observable throttleLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.preference.R$styleable: int SwitchCompat_android_textOff -cyanogenmod.weather.IRequestInfoListener: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) -okio.Okio$2: long read(okio.Buffer,long) -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endColor -androidx.coordinatorlayout.R$attr: int layout_behavior -com.google.android.material.R$styleable: int StateListDrawable_android_exitFadeDuration -cyanogenmod.providers.CMSettings$System: boolean shouldInterceptSystemProvider(java.lang.String) -wangdaye.com.geometricweather.R$id: int item_pollen_daily -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: java.lang.Integer direction -okio.ForwardingTimeout: okio.Timeout clearDeadline() -com.turingtechnologies.materialscrollbar.R$color: int design_default_color_primary -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayout -com.xw.repo.bubbleseekbar.R$dimen: int compat_notification_large_icon_max_height -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.disposables.Disposable upstream -androidx.appcompat.resources.R$styleable: int GradientColor_android_startY -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setQueryParameter(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$style: int Preference_SwitchPreference_Material -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_hide_motion_spec -com.xw.repo.bubbleseekbar.R$attr: int colorPrimaryDark -com.google.android.material.R$attr: int indicatorCornerRadius -io.reactivex.Observable: io.reactivex.Observable interval(long,java.util.concurrent.TimeUnit) -com.google.android.material.tabs.TabLayout: void setScrollAnimatorListener(android.animation.Animator$AnimatorListener) -wangdaye.com.geometricweather.R$animator: int weather_fog_2 -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_HOME_BUTTON -cyanogenmod.platform.R$xml: R$xml() -com.xw.repo.bubbleseekbar.R$styleable: int[] ActivityChooserView -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeight -cyanogenmod.app.Profile: java.util.Map connections -androidx.constraintlayout.widget.Group: void setElevation(float) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_progress -okhttp3.CertificatePinner$Pin: boolean matches(java.lang.String) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabView -androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_toBottomOf -com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimAlpha(int) -okio.SegmentedByteString: okio.ByteString substring(int,int) -okhttp3.internal.cache.DiskLruCache$2: boolean $assertionsDisabled -com.google.android.material.textfield.TextInputLayout: void setErrorIconOnClickListener(android.view.View$OnClickListener) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver parent -io.reactivex.Observable: io.reactivex.Observable retry() -com.google.android.material.R$id: int left -com.google.android.material.slider.BaseSlider: float getStepSize() -james.adaptiveicon.R$styleable: int TextAppearance_android_shadowColor -okhttp3.logging.HttpLoggingInterceptor: java.nio.charset.Charset UTF8 -androidx.appcompat.R$color: int bright_foreground_material_light -androidx.lifecycle.viewmodel.R -androidx.swiperefreshlayout.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$styleable: int Preference_summary -androidx.preference.R$attr: int drawableBottomCompat -com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_inputType -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain6h -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType WEBP -james.adaptiveicon.R$styleable: int ActionBar_progressBarStyle -okhttp3.internal.http2.Http2Connection: long access$108(okhttp3.internal.http2.Http2Connection) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: android.os.IBinder asBinder() -androidx.preference.R$dimen: int preference_dropdown_padding_start -com.google.android.material.R$dimen: int test_mtrl_calendar_day_cornerSize -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView -james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelMenuListTheme -com.google.android.material.R$attr: int state_collapsible -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_ActionBar -com.google.gson.stream.JsonToken -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitation -android.didikee.donate.R$styleable: int ActionBar_homeLayout -android.didikee.donate.R$styleable: int AlertDialog_listLayout -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: Http2Connection$ReaderRunnable$2(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[],boolean,okhttp3.internal.http2.Settings) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_android_thumb -android.support.v4.os.ResultReceiver: void send(int,android.os.Bundle) -com.turingtechnologies.materialscrollbar.R$attr: int navigationContentDescription -android.didikee.donate.R$dimen: int abc_action_bar_stacked_tab_max_width -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCustomSize(int) -android.didikee.donate.R$style: int Widget_AppCompat_EditText -io.reactivex.Observable: io.reactivex.Observable retry(long,io.reactivex.functions.Predicate) -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: ICMStatusBarManager$Stub$Proxy(android.os.IBinder) -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_textLocale -okhttp3.internal.http.RealInterceptorChain: okhttp3.Response proceed(okhttp3.Request,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http.HttpCodec,okhttp3.internal.connection.RealConnection) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -androidx.appcompat.R$id: int forever -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_11 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean getForecastHourly() -android.didikee.donate.R$styleable: int ActionBar_indeterminateProgressStyle -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String city -android.didikee.donate.R$styleable: int AppCompatImageView_android_src -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_title_divider_material -wangdaye.com.geometricweather.R$styleable: int Constraint_barrierAllowsGoneWidgets -androidx.appcompat.R$dimen: int abc_floating_window_z -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: double Value -androidx.appcompat.widget.AppCompatCheckBox: void setBackgroundResource(int) -wangdaye.com.geometricweather.common.basic.models.weather.Alert: long getAlertId() -androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context,android.util.AttributeSet,int) -androidx.viewpager2.R$integer: int status_bar_notification_info_maxnum -androidx.constraintlayout.widget.R$attr: int triggerId -retrofit2.ParameterHandler$HeaderMap: void apply(retrofit2.RequestBuilder,java.util.Map) -androidx.preference.R$id: int src_over -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -androidx.viewpager.R$styleable -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -io.reactivex.internal.operators.observable.ObservableGroupBy$State: ObservableGroupBy$State(int,io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver,java.lang.Object,boolean) -retrofit2.Retrofit: retrofit2.CallAdapter nextCallAdapter(retrofit2.CallAdapter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[]) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onNext(java.lang.Object) -androidx.fragment.R$id: int accessibility_custom_action_20 -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -okhttp3.Interceptor -com.turingtechnologies.materialscrollbar.R$attr: int colorPrimaryDark -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowDx -androidx.viewpager2.R$drawable: int notification_tile_bg -androidx.constraintlayout.widget.R$styleable: int[] ActionMode -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay -com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabStyle -okio.ForwardingSink: void flush() -okhttp3.Cache: void close() -com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontStyle -cyanogenmod.app.StatusBarPanelCustomTile: android.os.UserHandle getUser() -com.turingtechnologies.materialscrollbar.R$attr: int boxStrokeColor -android.didikee.donate.R$attr: int initialActivityCount -androidx.lifecycle.Transformations -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: int unitArrayIndex -wangdaye.com.geometricweather.R$string: int feedback_enable_location_information -androidx.lifecycle.extensions.R$id: int right_icon -com.google.android.material.R$styleable: int KeyTimeCycle_android_rotation -wangdaye.com.geometricweather.R$attr: int fabCustomSize -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: java.lang.String LocalizedText -wangdaye.com.geometricweather.R$attr: int framePosition -com.google.android.material.R$attr: int fabAlignmentMode -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_3 -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_ttcIndex -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance -androidx.constraintlayout.widget.R$styleable: int MockView_mock_showLabel -io.reactivex.observers.TestObserver$EmptyObserver: void onNext(java.lang.Object) -com.amap.api.location.AMapLocation: java.lang.String e(com.amap.api.location.AMapLocation,java.lang.String) -com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel -androidx.appcompat.R$styleable: int PopupWindow_android_popupAnimationStyle -com.amap.api.location.AMapLocationClientOption: java.lang.String a -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String cityId -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,long,boolean) -com.turingtechnologies.materialscrollbar.R$attr: int hintAnimationEnabled -com.bumptech.glide.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$attr: int listDividerAlertDialog -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert -androidx.transition.R$string: int status_bar_notification_info_overflow -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_checkedTextViewStyle -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long uniqueId -androidx.hilt.R$id: int action_container -com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context,android.util.AttributeSet) -androidx.lifecycle.ViewModel: ViewModel() -androidx.appcompat.R$string: int abc_action_menu_overflow_description -okio.ByteString: okio.ByteString hmac(java.lang.String,okio.ByteString) -cyanogenmod.app.Profile: java.util.Map mTriggers -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setNo2Desc(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Tab -androidx.appcompat.R$attr: int commitIcon -com.turingtechnologies.materialscrollbar.R$drawable: int abc_spinner_textfield_background_material -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeStepGranularity -com.google.android.material.R$dimen: int design_snackbar_elevation -wangdaye.com.geometricweather.R$drawable: int abc_spinner_mtrl_am_alpha -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle -androidx.transition.R$dimen: int notification_action_text_size -james.adaptiveicon.R$color: int abc_primary_text_disable_only_material_dark -okhttp3.RequestBody: okhttp3.MediaType contentType() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: double Value -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyBottomLeft -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitleTextAppearance -com.google.android.material.R$color: int design_dark_default_color_on_secondary -com.google.gson.stream.JsonReader: int limit -cyanogenmod.app.suggest.IAppSuggestManager$Stub: java.lang.String DESCRIPTOR -com.google.android.material.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: int UnitType -androidx.viewpager2.R$dimen: int notification_content_margin_start -androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context) -james.adaptiveicon.R$dimen: int notification_action_icon_size -androidx.constraintlayout.widget.R$attr: int staggered -com.github.rahatarmanahmed.cpv.CircularProgressView$8 -androidx.vectordrawable.animated.R$dimen: int compat_button_padding_vertical_material -james.adaptiveicon.R$styleable: int AppCompatTheme_listPopupWindowStyle -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMargins -com.google.android.material.floatingactionbutton.FloatingActionButton: void setImageDrawable(android.graphics.drawable.Drawable) -androidx.constraintlayout.widget.R$styleable: int MenuItem_iconTint -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedPassword(java.lang.String) -androidx.customview.R$dimen: int notification_main_column_padding_top -com.google.android.material.R$styleable: int ConstraintSet_android_pivotY -wangdaye.com.geometricweather.R$color: int mtrl_textinput_hovered_box_stroke_color -androidx.appcompat.resources.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getSo2() -wangdaye.com.geometricweather.R$drawable: int notif_temp_34 -okhttp3.internal.ws.RealWebSocket: java.util.concurrent.ScheduledExecutorService executor -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_4 -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_motionTarget -com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabIconTint() -androidx.hilt.R$id: int visible_removing_fragment_view_tag -com.amap.api.fence.GeoFenceClient: android.content.Context a -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_typeface -wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextContainer -com.google.android.material.R$styleable: int Motion_motionPathRotate -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: java.util.List getAlerts() -wangdaye.com.geometricweather.R$string: int date_format_short -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: boolean requestDismiss() -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_unregisterThemeProcessingListener -wangdaye.com.geometricweather.R$id: int scale -android.didikee.donate.R$drawable: int abc_list_selector_background_transition_holo_light -androidx.coordinatorlayout.R$color: int notification_icon_bg_color -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: long serialVersionUID -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_cancelRequest -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.WeatherEntityDao weatherEntityDao -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_type -james.adaptiveicon.R$styleable: int AppCompatImageView_srcCompat -okhttp3.HttpUrl$Builder: java.lang.String toString() -android.didikee.donate.R$styleable: int MenuItem_android_enabled -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_padding_left -james.adaptiveicon.R$attr: int selectableItemBackgroundBorderless -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Tooltip -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -james.adaptiveicon.R$attr: int numericModifiers -androidx.hilt.R$style -androidx.dynamicanimation.R$color -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind wind -io.reactivex.internal.subscribers.StrictSubscriber: void onError(java.lang.Throwable) -androidx.transition.R$drawable: int notification_tile_bg -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedHeightMajor -cyanogenmod.externalviews.ExternalView: void performAction(java.lang.Runnable) -cyanogenmod.app.CustomTile: android.net.Uri onClickUri -wangdaye.com.geometricweather.R$drawable: int shortcuts_snow_foreground -wangdaye.com.geometricweather.R$color: int primary_text_default_material_dark -androidx.fragment.R$styleable: int GradientColorItem_android_offset -com.google.android.material.R$id: int textinput_placeholder -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeMinTextSize -androidx.constraintlayout.motion.widget.MotionLayout: java.util.ArrayList getDefinedTransitions() -com.amap.api.location.AMapLocation: java.lang.Object clone() -com.google.android.material.chip.Chip: void setMinLines(int) -com.bumptech.glide.integration.okhttp.R$id: int async -com.google.android.material.R$id: int visible -androidx.appcompat.R$styleable: int SwitchCompat_splitTrack -okio.ByteString: void write(okio.Buffer) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property CityId -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: boolean mWasExecuted -com.bumptech.glide.load.ImageHeaderParser$ImageType: boolean hasAlpha -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String cityId -androidx.core.app.JobIntentService -androidx.appcompat.R$style: int Widget_AppCompat_SearchView_ActionBar -com.amap.api.location.AMapLocationQualityReport: int getGPSSatellites() -androidx.legacy.coreutils.R$id: int text2 -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_4 -com.github.rahatarmanahmed.cpv.R$color: int cpv_default_color -android.didikee.donate.R$styleable: int TextAppearance_android_textFontWeight -com.google.android.material.R$styleable: int MenuView_subMenuArrow -androidx.recyclerview.R$id: int accessibility_custom_action_9 -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTextHelper -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.lifecycle.ClassesInfoCache -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onSucceed(java.lang.Object) -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_CompactMenu -androidx.activity.R$id: int title -com.google.android.material.R$styleable: int Badge_number -androidx.preference.R$styleable: int GradientColor_android_endX -android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_Switch -com.google.android.material.checkbox.MaterialCheckBox: void setUseMaterialThemeColors(boolean) -okio.BufferedSource: long indexOfElement(okio.ByteString,long) -io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.ObservableSource) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void dispose() -okio.ByteString: okio.ByteString of(byte[]) -com.google.android.material.R$color: int material_grey_600 -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindLevel(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_alpha -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.TimeUnit unit -androidx.constraintlayout.utils.widget.ImageFilterView: void setOverlay(boolean) -com.google.android.material.R$styleable: int KeyPosition_drawPath -okhttp3.RequestBody$2: long contentLength() -androidx.preference.R$layout: int abc_popup_menu_header_item_layout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setUvIndex(java.lang.String) -com.loc.h -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_creator -android.didikee.donate.R$id: int icon_group -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult -androidx.customview.widget.ExploreByTouchHelper: int mHoveredVirtualViewId -wangdaye.com.geometricweather.R$id: int widget_clock_day_week -androidx.constraintlayout.widget.R$attr: int progressBarPadding -com.google.android.gms.internal.location.zzl: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$dimen: int mtrl_tooltip_cornerSize -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_id -com.amap.api.location.AMapLocation: java.lang.String k -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onError(java.lang.Throwable) -androidx.preference.R$color: int primary_material_dark -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long) -com.google.android.material.button.MaterialButton: void setIconTintResource(int) -wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_end -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.R$layout: int preference_category_material -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_disabled_material_light -okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withReadTimeout(int,java.util.concurrent.TimeUnit) -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sBooleanValidator -androidx.lifecycle.LifecycleDispatcher: LifecycleDispatcher() -androidx.core.R$styleable: int GradientColorItem_android_offset -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitationProbability -com.google.android.material.R$interpolator: int mtrl_linear_out_slow_in -wangdaye.com.geometricweather.R$styleable: int[] NavigationView -android.didikee.donate.R$dimen: int abc_dialog_min_width_major -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ut -androidx.appcompat.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingTop -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: int UnitType -cyanogenmod.app.CMContextConstants$Features: java.lang.String HARDWARE_ABSTRACTION -retrofit2.HttpServiceMethod$SuspendForBody: boolean isNullable -androidx.constraintlayout.widget.R$color: int secondary_text_disabled_material_light -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableBottom -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.reflect.Type responseType -android.didikee.donate.R$drawable: int abc_text_select_handle_right_mtrl_dark -com.google.android.material.R$style: int Widget_AppCompat_Button_Borderless -wangdaye.com.geometricweather.R$drawable: int notif_temp_83 -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setForecast(java.util.List) -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource -retrofit2.SkipCallbackExecutorImpl: java.lang.String toString() -com.xw.repo.bubbleseekbar.R$attr: int progressBarPadding -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder readTimeout(java.time.Duration) -okhttp3.CertificatePinner$Pin: java.lang.String canonicalHostname -com.google.android.material.R$plurals: int mtrl_badge_content_description -com.google.android.material.R$color: int primary_dark_material_light -com.bumptech.glide.integration.okhttp.R$attr: int layout_dodgeInsetEdges -wangdaye.com.geometricweather.R$id: int widget_week -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_bias -androidx.preference.R$styleable: int StateListDrawable_android_enterFadeDuration -wangdaye.com.geometricweather.R$attr: int boxCornerRadiusTopEnd -wangdaye.com.geometricweather.db.entities.DailyEntity: int getNighttimeTemperature() -androidx.preference.R$attr: int radioButtonStyle -wangdaye.com.geometricweather.R$integer: int cpv_default_anim_steps -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getPrefixTextColor() -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeTextType -io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.fuseable.SimpleQueue queue() -android.didikee.donate.R$styleable: int ActionBar_subtitle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setProvince(java.lang.String) -androidx.preference.R$styleable: int DrawerArrowToggle_color -androidx.appcompat.R$attr: int actionBarTabBarStyle -james.adaptiveicon.R$attr: int windowFixedHeightMinor -okhttp3.internal.Util: boolean nonEmptyIntersection(java.util.Comparator,java.lang.String[],java.lang.String[]) -androidx.work.R$drawable: int notification_tile_bg -android.didikee.donate.R$id: int action_context_bar -com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemStrokeColor -com.amap.api.fence.DistrictItem: DistrictItem(android.os.Parcel) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String wind_direct -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_activated_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_margin -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationX -com.xw.repo.bubbleseekbar.R$drawable: int abc_control_background_material -com.jaredrummler.android.colorpicker.R$attr: int gapBetweenBars -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onError(java.lang.Throwable) -com.google.android.material.R$styleable: int TabLayout_tabContentStart -androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationY -com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dialog -androidx.coordinatorlayout.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: java.lang.String getDarkModeName(android.content.Context) -wangdaye.com.geometricweather.R$attr: int state_collapsible -okhttp3.EventListener: void responseHeadersEnd(okhttp3.Call,okhttp3.Response) -com.google.android.material.R$styleable: int AlertDialog_android_layout -com.google.android.material.tabs.TabLayout: void setElevation(float) -com.jaredrummler.android.colorpicker.R$styleable: int[] ViewBackgroundHelper -androidx.activity.R$styleable: int[] FontFamilyFont -androidx.constraintlayout.widget.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -com.bumptech.glide.Registry$NoResultEncoderAvailableException -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity -wangdaye.com.geometricweather.R$string: int precipitation_duration -com.google.android.material.R$styleable: int ActionMode_background -wangdaye.com.geometricweather.R$string: int common_google_play_services_update_button -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_Test -retrofit2.DefaultCallAdapterFactory$1: java.util.concurrent.Executor val$executor -com.google.android.material.button.MaterialButton: void setStrokeColor(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$id: int top -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_meta_shortcut_label -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: java.util.List value -okio.RealBufferedSource: void close() -okhttp3.internal.http2.Http2Reader: okhttp3.internal.http2.Hpack$Reader hpackReader -androidx.constraintlayout.widget.R$id: int alertTitle -androidx.appcompat.R$color: int primary_material_light -wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_layout -com.google.android.material.R$styleable: int Transition_pathMotionArc -androidx.constraintlayout.widget.R$styleable: int TextAppearance_textLocale -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -wangdaye.com.geometricweather.db.entities.AlertEntityDao: AlertEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_motionProgress -okhttp3.HttpUrl: java.lang.String FORM_ENCODE_SET -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchTouchEvent(android.view.MotionEvent) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void collapseNotificationPanel() -james.adaptiveicon.R$styleable: int SearchView_android_inputType -androidx.appcompat.widget.AppCompatSpinner: void setAdapter(android.widget.SpinnerAdapter) -androidx.lifecycle.DefaultLifecycleObserver: void onStop(androidx.lifecycle.LifecycleOwner) -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_rippleColor -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_ON_NEW_REQUEST -androidx.fragment.R$styleable: int GradientColor_android_endX -androidx.constraintlayout.widget.R$attr: int titleMarginStart -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: void run() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintTextAppearance -androidx.appcompat.R$styleable: int AlertDialog_singleChoiceItemLayout -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetOnClickPendingIntent(android.app.PendingIntent) -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: MfCurrentResult() -com.google.android.material.R$drawable: int abc_scrubber_track_mtrl_alpha -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display3 -androidx.hilt.work.R$attr: int fontProviderFetchStrategy -cyanogenmod.app.CustomTile$RemoteExpandedStyle: CustomTile$RemoteExpandedStyle() -wangdaye.com.geometricweather.R$string: int key_widget_week -androidx.drawerlayout.R$id: int notification_background -com.google.gson.stream.MalformedJsonException -com.google.gson.internal.LinkedTreeMap -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherSource(java.lang.String) -androidx.core.R$attr: int fontWeight -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconTintMode -androidx.drawerlayout.R$dimen: int notification_top_pad -com.google.android.gms.base.R$id: R$id() -wangdaye.com.geometricweather.R$drawable: int weather_wind -com.google.android.gms.internal.common.zzq: com.google.android.gms.internal.common.zzo zza -wangdaye.com.geometricweather.R$id: int item_weather_daily_overview_icon -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackTintList() -android.didikee.donate.R$id: int textSpacerNoTitle -wangdaye.com.geometricweather.R$string: int wind_chill_temperature -wangdaye.com.geometricweather.R$styleable -com.google.android.material.chip.Chip: Chip(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$drawable: int weather_haze_1 -androidx.swiperefreshlayout.R$id: int icon -androidx.dynamicanimation.R$styleable: int GradientColorItem_android_color -cyanogenmod.app.ThemeVersion$ComponentVersion: int id -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeAppearanceOverlay -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -androidx.constraintlayout.widget.R$styleable: int[] SwitchCompat -androidx.constraintlayout.widget.R$attr: int colorError -com.google.android.material.textfield.TextInputLayout: void setCounterOverflowTextColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ApparentTemperature -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: long serialVersionUID -io.reactivex.internal.observers.BlockingObserver -android.didikee.donate.R$style: int Widget_AppCompat_Button_Colored -com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.ValueAnimator progressAnimator -wangdaye.com.geometricweather.R$drawable: int ic_check_circle_green -androidx.constraintlayout.widget.R$attr: int initialActivityCount -androidx.preference.R$drawable -james.adaptiveicon.R$attr: int alpha -com.google.android.material.button.MaterialButton: android.graphics.drawable.Drawable getIcon() -com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.util.List getValue() -retrofit2.ParameterHandler$PartMap: ParameterHandler$PartMap(java.lang.reflect.Method,int,retrofit2.Converter,java.lang.String) -wangdaye.com.geometricweather.R$color: int design_default_color_surface -retrofit2.RequestFactory$Builder: java.lang.reflect.Method method -android.didikee.donate.R$color: int material_deep_teal_200 -com.jaredrummler.android.colorpicker.R$attr: int fontProviderQuery -okhttp3.internal.connection.RouteSelector: java.lang.String getHostString(java.net.InetSocketAddress) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windSpeed -cyanogenmod.app.IProfileManager$Stub: cyanogenmod.app.IProfileManager asInterface(android.os.IBinder) -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: int fusionMode -com.bumptech.glide.integration.okhttp.R$id: int glide_custom_view_target_tag -com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.animation.MotionSpec getHideMotionSpec() -androidx.appcompat.R$id: int none -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$anim -io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_EMPTY -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer clouds -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startX -androidx.appcompat.widget.ActionBarOverlayLayout: void setOverlayMode(boolean) -androidx.preference.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -com.google.android.material.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.R$color: int switch_thumb_material_light -com.google.android.material.R$styleable: int MenuItem_actionProviderClass -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_122 -com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableCompat -com.google.android.material.R$attr: int onTouchUp -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: int getChartTop() -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light -androidx.appcompat.app.ActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Spinner -com.google.android.material.R$styleable: int Constraint_android_layout_height -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean delayError -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display3 -okio.BufferedSink: okio.BufferedSink writeUtf8(java.lang.String,int,int) -com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -android.didikee.donate.R$styleable: int SearchView_goIcon -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_NoActionBar -androidx.appcompat.R$attr: int closeItemLayout -james.adaptiveicon.R$color: int abc_secondary_text_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle valueOf(java.lang.String) -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerValue(boolean,java.lang.Object) -wangdaye.com.geometricweather.R$attr: int barrierDirection -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat_Light -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationZ -androidx.fragment.R$id: int accessibility_custom_action_7 -androidx.appcompat.widget.ActionBarContainer: void setPrimaryBackground(android.graphics.drawable.Drawable) -okhttp3.ConnectionPool: okhttp3.internal.connection.RouteDatabase routeDatabase -okhttp3.Request$Builder: okhttp3.Request$Builder get() -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -androidx.preference.R$attr: int imageButtonStyle -io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer) -wangdaye.com.geometricweather.R$dimen: int abc_select_dialog_padding_start_material -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_toRightOf -wangdaye.com.geometricweather.R$drawable: int flag_si -androidx.activity.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.R$id: int sort_button -com.google.android.material.R$color: int accent_material_dark -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_baselineAligned -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_material -androidx.preference.R$style: int Widget_AppCompat_Button_Borderless_Colored -android.didikee.donate.R$id: int time -wangdaye.com.geometricweather.R$string: int real_feel_temperature -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow -com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$attr: int animate_relativeTo -com.amap.api.location.AMapLocation: boolean y -okhttp3.internal.Util$1: Util$1() -com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure -wangdaye.com.geometricweather.R$attr: int actionDropDownStyle -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: long index -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Medium -androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context,android.util.AttributeSet) -com.google.android.gms.auth.api.signin.GoogleSignInOptions: android.os.Parcelable$Creator CREATOR -okhttp3.Cache$Entry: Cache$Entry(okhttp3.Response) -com.bumptech.glide.integration.okhttp.R$attr: int keylines -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_26 -okhttp3.internal.http2.Http2Reader$Handler: void headers(boolean,int,int,java.util.List) -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_month_abbr -com.google.android.material.R$styleable: int[] ImageFilterView -com.jaredrummler.android.colorpicker.R$attr: int selectableItemBackground -com.jaredrummler.android.colorpicker.R$style: int PreferenceFragmentList -retrofit2.http.HTTP: java.lang.String method() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableEndCompat -com.google.android.material.R$attr: int extendMotionSpec -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -androidx.appcompat.R$attr: int titleMarginStart -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.google.android.material.card.MaterialCardView: void setCheckedIconSize(int) -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_enterFadeDuration -androidx.appcompat.resources.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1 -james.adaptiveicon.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void unregisterListener(cyanogenmod.app.ICustomTileListener,int) -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy -androidx.constraintlayout.widget.R$attr: int actionBarSize -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: android.net.Uri CONTENT_URI -com.turingtechnologies.materialscrollbar.R$id: int parent_matrix -androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context,android.util.AttributeSet) -cyanogenmod.app.Profile: void removeProfileGroup(java.util.UUID) -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType[] values() -androidx.vectordrawable.animated.R$styleable: int[] FontFamily -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -cyanogenmod.providers.CMSettings$Secure: android.net.Uri getUriFor(java.lang.String) -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: long remaining -james.adaptiveicon.R$layout: int abc_screen_toolbar -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotation -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressViewStartOffset() -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_NOENOUGHSATELLITES -androidx.appcompat.R$dimen: int abc_cascading_menus_min_smallest_width -androidx.preference.R$attr: int titleTextStyle -androidx.lifecycle.Lifecycle$State -com.google.android.material.R$styleable: int[] Variant -wangdaye.com.geometricweather.R$layout: int activity_weather_daily -com.turingtechnologies.materialscrollbar.R$style: int Platform_V21_AppCompat_Light -androidx.transition.R$dimen: int compat_button_inset_horizontal_material -com.turingtechnologies.materialscrollbar.R$dimen: int notification_large_icon_width -io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource) -androidx.core.widget.NestedScrollView$SavedState -com.google.android.material.R$id: int incoming -com.google.android.material.R$style: int Widget_AppCompat_SeekBar_Discrete -androidx.appcompat.R$styleable: int[] MenuView -com.turingtechnologies.materialscrollbar.R$attr: int tint -androidx.constraintlayout.widget.R$dimen: int abc_alert_dialog_button_bar_height -android.didikee.donate.R$attr: int title -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.ErrorCode getErrorCode() -com.google.android.gms.common.internal.ClientIdentity -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_backgroundSplit -james.adaptiveicon.R$styleable: int AppCompatTheme_tooltipForegroundColor -androidx.appcompat.widget.Toolbar: int getTitleMarginTop() -wangdaye.com.geometricweather.R$attr: int materialCalendarYearNavigationButton -com.google.android.material.textfield.TextInputLayout: void setCounterMaxLength(int) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -androidx.preference.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -okhttp3.Dispatcher: java.util.List queuedCalls() -androidx.customview.R$color -android.didikee.donate.R$style: int TextAppearance_AppCompat_Body2 -androidx.constraintlayout.widget.R$attr: int layout_constraintCircleAngle -android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -james.adaptiveicon.R$dimen: int notification_small_icon_background_padding -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_10 -com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextStyle -com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_950 -com.google.android.material.R$styleable: int TabLayout_tabTextColor -androidx.preference.R$attr: int dropdownListPreferredItemHeight -okhttp3.Response$Builder -android.didikee.donate.R$style: int Widget_AppCompat_ListPopupWindow -okio.Buffer$1: Buffer$1(okio.Buffer) -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_stroke_width_default -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabView -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask -androidx.constraintlayout.widget.R$drawable: int abc_list_pressed_holo_dark -com.baidu.location.e.l$b: com.baidu.location.e.l$b[] values() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: int status -androidx.viewpager2.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$attr: int behavior_skipCollapsed -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void dispose() -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro sun() -com.google.android.material.R$attr: int sizePercent -cyanogenmod.weather.WeatherInfo$Builder: int mWindSpeedUnit -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_disableDependentsState -wangdaye.com.geometricweather.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -androidx.appcompat.R$styleable: int SearchView_voiceIcon -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.Scheduler$Worker worker -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_ttcIndex -james.adaptiveicon.R$attr: int layout -androidx.preference.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status ERROR -androidx.constraintlayout.widget.R$color: int bright_foreground_material_dark -wangdaye.com.geometricweather.R$xml: int standalone_badge_offset -androidx.appcompat.widget.AppCompatSpinner: void setPopupBackgroundResource(int) -com.google.android.material.R$style: int TextAppearance_AppCompat_SearchResult_Title -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog_MinWidth -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Button -com.turingtechnologies.materialscrollbar.R$attr: int viewInflaterClass -androidx.preference.EditTextPreference -android.didikee.donate.R$styleable: int AppCompatTheme_colorAccent -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollEnabled -androidx.recyclerview.widget.RecyclerView: void addOnItemTouchListener(androidx.recyclerview.widget.RecyclerView$OnItemTouchListener) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setRotation(float) -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_constantSize -androidx.preference.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: AccuCurrentResult$Temperature() -okhttp3.OkHttpClient$Builder: java.util.List connectionSpecs -androidx.preference.R$attr: int colorPrimaryDark -com.google.android.material.bottomnavigation.BottomNavigationItemView: int getItemPosition() -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: int getCollapsedSize() -com.bumptech.glide.integration.okhttp.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.common.basic.models.weather.Daily: boolean isToday(java.util.TimeZone) -androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Time -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onNext(java.lang.Object) -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -androidx.lifecycle.FullLifecycleObserver: void onDestroy(androidx.lifecycle.LifecycleOwner) -wangdaye.com.geometricweather.R$id: int ifRoom -androidx.lifecycle.ProcessLifecycleOwner$2: void onResume() -okio.SegmentedByteString: byte getByte(int) -androidx.dynamicanimation.R$dimen: int notification_content_margin_start -com.amap.api.location.AMapLocationQualityReport: java.lang.String e -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_16 -androidx.appcompat.resources.R$style: int Widget_Compat_NotificationActionText -com.google.android.material.R$styleable: int ActionBar_contentInsetStart -wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingLeft -androidx.coordinatorlayout.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_range_end_hint -okhttp3.Request$Builder: okhttp3.Request$Builder removeHeader(java.lang.String) -retrofit2.CallAdapter: java.lang.Object adapt(retrofit2.Call) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: java.lang.String Unit -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionMode -wangdaye.com.geometricweather.R$attr: int tabIndicatorAnimationDuration -wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat -okhttp3.CookieJar$1 -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_vertical_padding -android.didikee.donate.R$styleable: int MenuView_android_itemIconDisabledAlpha -wangdaye.com.geometricweather.R$id: int item_alert_subtitle -com.turingtechnologies.materialscrollbar.R$attr: int actionBarItemBackground -okio.RealBufferedSource: java.lang.String readString(long,java.nio.charset.Charset) -androidx.appcompat.app.ToolbarActionBar -com.xw.repo.bubbleseekbar.R$string: int abc_activity_chooser_view_see_all -okio.Buffer$1: void write(byte[],int,int) -androidx.appcompat.widget.AppCompatTextView: int[] getAutoSizeTextAvailableSizes() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onKeyguardShowing(boolean) -androidx.swiperefreshlayout.R$id: int title -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: int rain -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTodaysHigh(double) -com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.drawable.Drawable getContentScrim() -wangdaye.com.geometricweather.R$layout: int test_design_radiobutton -com.google.android.material.R$attr: int fastScrollHorizontalTrackDrawable -com.google.android.material.R$style: int Theme_AppCompat_Empty -wangdaye.com.geometricweather.R$styleable: int SearchView_android_maxWidth -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf -com.google.android.material.R$styleable: int ProgressIndicator_indicatorType -com.google.gson.internal.LinkedTreeMap: java.lang.Object get(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: int UnitType -androidx.loader.R$styleable: int[] GradientColorItem -androidx.core.R$id: int tag_accessibility_heading -com.google.android.material.R$style: int TextAppearance_AppCompat_Inverse -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabText -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Title -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_DrawerArrowToggle -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: boolean isLeft -androidx.hilt.R$attr: int fontProviderQuery -cyanogenmod.app.CMTelephonyManager -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State RUNNING -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getTagName(android.content.Context) -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_spinBars -com.google.android.material.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -wangdaye.com.geometricweather.R$attr: int subtitle -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.HistoryEntity) -okio.HashingSource: HashingSource(okio.Source,java.lang.String) -androidx.lifecycle.MediatorLiveData: void onActive() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_homeAsUpIndicator -okhttp3.Cache$2: java.lang.String nextUrl -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver -androidx.constraintlayout.widget.R$attr: int textAppearanceSearchResultSubtitle -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -androidx.constraintlayout.widget.R$string: int abc_menu_meta_shortcut_label -com.google.android.material.R$color: int abc_background_cache_hint_selector_material_light -wangdaye.com.geometricweather.R$id: int wrap -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_enqueueLiveLockScreen -androidx.hilt.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.db.entities.LocationEntity: void setLongitude(float) -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onError(java.lang.Throwable) -james.adaptiveicon.R$layout: int abc_action_bar_title_item -wangdaye.com.geometricweather.R$drawable: int ic_alipay -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_chainStyle -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense -androidx.loader.R$dimen: int notification_action_icon_size -androidx.legacy.coreutils.R$id: int chronometer -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textColor -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Caption -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_MAX_INDEX -com.google.android.material.R$attr: int iconPadding -android.didikee.donate.R$id: int action_text -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void clear() -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: boolean isDaylight() -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -androidx.preference.R$style: int TextAppearance_AppCompat_Menu -com.google.android.material.R$id: int snackbar_action -wangdaye.com.geometricweather.R$drawable: int abc_textfield_default_mtrl_alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String zh_CN -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeMinTextSize -io.reactivex.Observable: io.reactivex.Observable concatMapMaybe(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollEnabled -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_1 -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_share_mtrl_alpha -io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent INSTANCE -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: java.lang.String colorId -com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context,android.util.AttributeSet) -androidx.appcompat.widget.ActionBarContainer -com.google.android.material.R$bool: int abc_allow_stacked_button_bar -com.google.android.material.R$style: int ThemeOverlay_AppCompat_DayNight -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton -wangdaye.com.geometricweather.R$id: int triangle -james.adaptiveicon.R$dimen: int notification_content_margin_start -okhttp3.internal.http2.Http2Stream: boolean isOpen() -cyanogenmod.app.CustomTile$ExpandedStyle: int describeContents() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getApparentTemperature() -com.google.android.material.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon -androidx.preference.R$dimen: int compat_notification_large_icon_max_height -com.amap.api.location.AMapLocation: int LOCATION_TYPE_CELL -okhttp3.internal.http2.Header: okio.ByteString PSEUDO_PREFIX -james.adaptiveicon.R$styleable: int View_paddingStart -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar -com.bumptech.glide.integration.okhttp.R$styleable: int[] GradientColorItem -com.turingtechnologies.materialscrollbar.R$layout: int abc_activity_chooser_view_list_item -com.amap.api.fence.GeoFence: int STATUS_IN -okhttp3.CacheControl$Builder: boolean onlyIfCached -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$002(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -androidx.preference.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$attr: int limitBoundsTo -james.adaptiveicon.R$styleable: int Toolbar_buttonGravity -androidx.appcompat.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.slider.Slider: void setValue(float) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -cyanogenmod.weather.WeatherInfo: java.lang.String toString() -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_SHOW_BATTERY_PERCENT -com.google.android.material.R$attr: int drawableTint -cyanogenmod.weather.WeatherInfo: double access$1202(cyanogenmod.weather.WeatherInfo,double) -cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.IAppSuggestManager sImpl -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String WidgetPhrase -android.support.v4.app.INotificationSideChannel$Stub$Proxy: void notify(java.lang.String,int,java.lang.String,android.app.Notification) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitationProbability(java.lang.Float) -com.xw.repo.bubbleseekbar.R$color: int secondary_text_default_material_light -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_ttcIndex -james.adaptiveicon.R$attr: int state_above_anchor -cyanogenmod.app.CMContextConstants$Features: java.lang.String THEMES -okhttp3.Cookie: boolean pathMatch(okhttp3.HttpUrl,java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription,long) -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String weatherText -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: io.reactivex.internal.fuseable.SimpleQueue queue -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_night_1 -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String cityId -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarPopupTheme -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_font -androidx.viewpager.R$styleable: int GradientColor_android_endColor -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: long serialVersionUID -cyanogenmod.hardware.CMHardwareManager: int getDisplayGammaCalibrationMax() -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableBottom -com.amap.api.location.AMapLocation: int LOCATION_TYPE_OFFLINE -androidx.constraintlayout.widget.R$id: int autoCompleteToEnd -com.google.android.material.R$id: int accessibility_custom_action_27 -androidx.appcompat.resources.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$id: int fragment -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_48dp -com.google.android.material.chip.Chip: void setIconEndPadding(float) -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_overflow_padding_start_material -okhttp3.internal.http2.Http2Codec: java.lang.String ENCODING -com.google.android.material.R$xml: int standalone_badge -androidx.appcompat.widget.AppCompatCheckedTextView: void setCheckMarkDrawable(int) -retrofit2.OkHttpCall: okhttp3.Call getRawCall() -okio.RealBufferedSource: byte readByte() -androidx.drawerlayout.R$layout: int notification_template_part_chronometer -okhttp3.internal.http2.Http2Connection: void close() -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: java.util.concurrent.atomic.AtomicLong requested -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_Solid -androidx.work.R$style: int Widget_Compat_NotificationActionText -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -com.google.android.material.card.MaterialCardView: void setPreventCornerOverlap(boolean) -androidx.appcompat.app.ActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onError(java.lang.Throwable) -com.google.android.material.R$attr: int cardUseCompatPadding -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver -okhttp3.OkHttpClient: java.util.List DEFAULT_PROTOCOLS -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String weatherSource -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableRight -okhttp3.logging.LoggingEventListener: void connectEnd(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol) -androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_percent -james.adaptiveicon.R$styleable: int AppCompatTheme_android_windowIsFloating -androidx.preference.R$styleable: int AppCompatTheme_dialogPreferredPadding -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_days_of_week_height -com.amap.api.fence.PoiItem: java.lang.String getAddress() -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_ttcIndex -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Today -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.customview.R$drawable: int notification_bg -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ButtonBar -wangdaye.com.geometricweather.R$attr: int thumbRadius -com.google.android.material.R$layout: int material_radial_view_group -wangdaye.com.geometricweather.R$attr: int layout_constraintEnd_toEndOf -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setEncodedPathSegment(int,java.lang.String) -androidx.vectordrawable.R$id: int accessibility_custom_action_10 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView_Menu -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int POWER_OFF_ALARM_STATE -androidx.vectordrawable.R$id: int icon -james.adaptiveicon.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -androidx.lifecycle.ViewModelStores: ViewModelStores() -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$drawable: int notif_temp_97 -com.google.android.gms.base.R$id -wangdaye.com.geometricweather.R$attr: int colorPrimaryDark -cyanogenmod.externalviews.ExternalView$4: void run() -cyanogenmod.providers.CMSettings$Secure: java.lang.String PROTECTED_COMPONENTS -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents -android.didikee.donate.R$style: int TextAppearance_AppCompat_SearchResult_Title -androidx.swiperefreshlayout.R$id: int tag_screen_reader_focusable -androidx.appcompat.widget.ActionBarOverlayLayout: void setWindowTitle(java.lang.CharSequence) -wangdaye.com.geometricweather.R$animator: int design_fab_hide_motion_spec -com.google.android.material.R$id: int accessibility_custom_action_6 -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification -cyanogenmod.app.ProfileGroup -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Borderless -james.adaptiveicon.R$color: int material_grey_900 -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconTint -androidx.preference.R$styleable: int Preference_android_iconSpaceReserved -com.google.android.material.R$styleable: int MenuGroup_android_checkableBehavior -androidx.preference.R$attr: int actionProviderClass -com.google.android.material.R$id: int dialog_button -com.turingtechnologies.materialscrollbar.R$attr: int cardBackgroundColor -androidx.core.app.RemoteActionCompatParcelizer: RemoteActionCompatParcelizer() -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -com.google.android.material.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_title -androidx.appcompat.widget.ActivityChooserView: void setInitialActivityCount(int) -androidx.appcompat.resources.R$styleable: int StateListDrawableItem_android_drawable -cyanogenmod.app.ILiveLockScreenManager$Stub: android.os.IBinder asBinder() -com.turingtechnologies.materialscrollbar.CustomIndicator: int getIndicatorWidth() -android.didikee.donate.R$styleable: int AppCompatTheme_windowActionBar -wangdaye.com.geometricweather.R$id: int radio -cyanogenmod.app.ProfileGroup: boolean isDirty() -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$drawable: int abc_edit_text_material -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getPM10() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_99 -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: void dispose() -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low_normal -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void dispose() -okhttp3.MultipartBody: okhttp3.MediaType originalType -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_5_00 -androidx.preference.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_entryValues -com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_Switch -okio.Util: void sneakyThrow2(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$attr: int contentInsetStartWithNavigation -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_RC4_128_SHA -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver -wangdaye.com.geometricweather.R$dimen: int material_font_2_0_box_collapsed_padding_top -android.didikee.donate.R$id: int search_mag_icon -android.didikee.donate.R$attr: int actionModeBackground -wangdaye.com.geometricweather.R$dimen: int tooltip_y_offset_non_touch -androidx.constraintlayout.widget.R$color: int dim_foreground_disabled_material_light -io.reactivex.Observable: io.reactivex.Observable defaultIfEmpty(java.lang.Object) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: java.lang.Float windChill -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: void setGravitySensorEnabled(boolean) -androidx.constraintlayout.widget.R$id: int accessibility_action_clickable_span -androidx.preference.R$id: int content -androidx.constraintlayout.widget.R$layout: int notification_template_part_time -io.reactivex.internal.util.VolatileSizeArrayList: boolean isEmpty() -android.didikee.donate.R$styleable: int AppCompatTheme_switchStyle -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -androidx.cardview.R$styleable: int CardView_android_minHeight -com.google.android.material.R$id: int circular -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_thumb_text -okhttp3.internal.ws.RealWebSocket$Close: okio.ByteString reason -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_RAINSTORM -com.jaredrummler.android.colorpicker.R$attr: int shouldDisableView -com.google.android.material.R$attr: int behavior_hideable -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CardView -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void cancel() -okhttp3.internal.http2.Http2Connection: void access$000(okhttp3.internal.http2.Http2Connection) -androidx.lifecycle.SavedStateHandleController$1: androidx.lifecycle.Lifecycle val$lifecycle -androidx.appcompat.widget.AppCompatCheckBox: android.content.res.ColorStateList getSupportButtonTintList() -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderCerts -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: ObservableRepeatWhen$RepeatWhenObserver(io.reactivex.Observer,io.reactivex.subjects.Subject,io.reactivex.ObservableSource) -com.xw.repo.bubbleseekbar.R$attr: int dividerPadding -okhttp3.Cache$CacheResponseBody: okhttp3.MediaType contentType() -android.didikee.donate.R$styleable: int[] MenuView -okhttp3.internal.platform.Platform: void afterHandshake(javax.net.ssl.SSLSocket) -okhttp3.Response: okhttp3.ResponseBody body -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle -androidx.vectordrawable.animated.R$dimen: int compat_button_inset_horizontal_material -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.AndroidPlatform$CloseGuard closeGuard -cyanogenmod.app.IProfileManager: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) -androidx.drawerlayout.R$drawable: int notification_bg_low_normal -com.xw.repo.bubbleseekbar.R$layout: int abc_cascading_menu_item_layout -wangdaye.com.geometricweather.R$string: int visibility -james.adaptiveicon.R$attr: int alertDialogTheme -com.google.android.material.R$styleable: int AppCompatTheme_searchViewStyle -io.reactivex.internal.subscriptions.EmptySubscription -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -com.jaredrummler.android.colorpicker.R$dimen: int hint_pressed_alpha_material_dark -wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_max -androidx.appcompat.R$color: int primary_dark_material_light -androidx.core.R$id: int notification_main_column -retrofit2.BuiltInConverters$VoidResponseBodyConverter: BuiltInConverters$VoidResponseBodyConverter() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SLOVENIAN -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindSpeed -android.support.v4.os.ResultReceiver -wangdaye.com.geometricweather.R$attr: int actionModeStyle -androidx.activity.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle CITIES -cyanogenmod.app.CustomTile$ListExpandedStyle: void setListItems(java.util.ArrayList) -androidx.hilt.R$styleable: int GradientColor_android_endX -com.jaredrummler.android.colorpicker.R$attr: int customNavigationLayout -androidx.appcompat.R$id: int radio -androidx.lifecycle.ReflectiveGenericLifecycleObserver: java.lang.Object mWrapped -androidx.preference.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$drawable: int clock_hour_dark -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getTotal() -com.google.android.material.R$styleable: int Transform_android_scaleY -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_SECURE -androidx.constraintlayout.motion.widget.MotionHelper -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle -wangdaye.com.geometricweather.R$attr: int boxBackgroundMode -androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -com.turingtechnologies.materialscrollbar.R$dimen: int abc_disabled_alpha_material_light -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button -io.reactivex.Observable: io.reactivex.Observable retry(io.reactivex.functions.BiPredicate) -com.google.android.material.R$attr: int triggerReceiver -android.didikee.donate.R$dimen: int abc_button_padding_horizontal_material -androidx.appcompat.widget.ActionMenuView: int getPopupTheme() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_96 -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType DIMENSION_TYPE -androidx.drawerlayout.R$drawable: int notification_template_icon_bg -james.adaptiveicon.R$style: int Widget_AppCompat_AutoCompleteTextView -com.google.gson.stream.JsonReader: void beginObject() -com.google.android.material.R$dimen: int mtrl_large_touch_target -james.adaptiveicon.R$styleable: int MenuItem_android_checked -wangdaye.com.geometricweather.R$string: int feedback_unusable_geocoder -wangdaye.com.geometricweather.R$string: int common_google_play_services_notification_ticker -com.google.gson.internal.JsonReaderInternalAccess: JsonReaderInternalAccess() -com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_disabled_material_light -cyanogenmod.externalviews.ExternalViewProviderService$Provider: int getWindowType() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconMargin -okhttp3.RequestBody$2: void writeTo(okio.BufferedSink) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Title -cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,android.content.ComponentName) -wangdaye.com.geometricweather.R$attr: int negativeButtonText -cyanogenmod.providers.CMSettings$Secure: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -androidx.preference.R$attr: int popupWindowStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: int Degrees -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_drawableSize -androidx.hilt.R$id: int line3 -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void dispose() -com.google.android.material.R$styleable: int NavigationView_elevation -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitationProbability -wangdaye.com.geometricweather.R$styleable: int[] AppBarLayout_Layout -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver) -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_icon_padding -okhttp3.Cache$CacheRequestImpl: Cache$CacheRequestImpl(okhttp3.Cache,okhttp3.internal.cache.DiskLruCache$Editor) -androidx.transition.R$id: int action_divider -wangdaye.com.geometricweather.R$attr: int rippleColor -androidx.appcompat.R$color: int dim_foreground_disabled_material_dark -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void request(long) -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String moonPhaseDescription -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: AccuLocationResult$GeoPosition() -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -okio.Buffer$UnsafeCursor: int start -com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_padding_vertical_material -cyanogenmod.app.ProfileGroup: void setVibrateMode(cyanogenmod.app.ProfileGroup$Mode) -androidx.appcompat.R$attr: int drawableTint -io.reactivex.Observable: io.reactivex.Observable concatMapIterable(io.reactivex.functions.Function,int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: AccuDailyResult$DailyForecasts$Day$WindGust() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void request(long) -androidx.drawerlayout.R$attr: R$attr() -com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context,android.util.AttributeSet) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_19 -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap -okhttp3.internal.cache.DiskLruCache: long maxSize -cyanogenmod.app.CustomTile$ExpandedItem$1: CustomTile$ExpandedItem$1() -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_MIN -okio.Buffer: okio.ByteString snapshot(int) -io.reactivex.internal.util.NotificationLite$DisposableNotification -androidx.hilt.lifecycle.R$drawable: int notification_bg_normal_pressed -androidx.preference.R$id: int default_activity_button -androidx.preference.R$attr: int alertDialogStyle -io.reactivex.Observable: void blockingSubscribe(io.reactivex.Observer) -retrofit2.ServiceMethod -androidx.coordinatorlayout.R$styleable: int ColorStateListItem_android_alpha -androidx.appcompat.R$attr: int showAsAction -android.didikee.donate.R$dimen: int notification_content_margin_start -androidx.dynamicanimation.R$id: int forever -okhttp3.internal.io.FileSystem: okio.Source source(java.io.File) -cyanogenmod.app.ICMStatusBarManager$Stub: java.lang.String DESCRIPTOR -androidx.lifecycle.extensions.R$dimen: int notification_big_circle_margin -androidx.drawerlayout.R$string -com.google.android.material.R$style: int Widget_AppCompat_SearchView_ActionBar -wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacing -androidx.appcompat.resources.R$layout -wangdaye.com.geometricweather.R$styleable: int Preference_android_title -com.google.android.material.R$styleable: int TextInputLayout_errorContentDescription -okio.GzipSource: java.util.zip.CRC32 crc -cyanogenmod.externalviews.KeyguardExternalView$8: KeyguardExternalView$8(cyanogenmod.externalviews.KeyguardExternalView,boolean) -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_size -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_popupTheme -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.legacy.coreutils.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelMenuListTheme -com.jaredrummler.android.colorpicker.R$style: int Preference_Category -cyanogenmod.util.ColorUtils$1: int compare(com.android.internal.util.cm.palette.Palette$Swatch,com.android.internal.util.cm.palette.Palette$Swatch) -com.turingtechnologies.materialscrollbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric() -androidx.recyclerview.R$id: int blocking -james.adaptiveicon.R$attr: int actionBarSize -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List minutelyEntityList -android.didikee.donate.R$attr: int alpha -android.didikee.donate.R$color: int abc_tint_seek_thumb -org.greenrobot.greendao.AbstractDao: void deleteInTx(java.lang.Iterable) -okhttp3.internal.http2.Http2Connection$ReaderRunnable -com.google.android.material.behavior.HideBottomViewOnScrollBehavior -wangdaye.com.geometricweather.common.basic.models.weather.History: long time -com.jaredrummler.android.colorpicker.R$drawable: int abc_popup_background_mtrl_mult -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_22 -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -cyanogenmod.providers.CMSettings$Secure: java.lang.String PERFORMANCE_PROFILE -wangdaye.com.geometricweather.R$drawable: int ic_mtrl_checked_circle -com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_thumb_material -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_maxProgress -okio.HashingSource: okio.HashingSource hmacSha256(okio.Source,okio.ByteString) -okhttp3.Response: long receivedResponseAtMillis() -io.reactivex.internal.util.VolatileSizeArrayList: boolean retainAll(java.util.Collection) -wangdaye.com.geometricweather.R$drawable: int mtrl_ic_arrow_drop_up -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogCenterButtons -androidx.appcompat.R$attr: int color -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_CRITICAL -okhttp3.internal.cache.DiskLruCache: int valueCount -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -android.didikee.donate.R$color: int abc_search_url_text_pressed -androidx.appcompat.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.R$color: int checkbox_themeable_attribute_color -com.google.android.material.R$id: int auto -com.jaredrummler.android.colorpicker.R$attr: int fontWeight -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: float unitFactor -com.turingtechnologies.materialscrollbar.R$attr: int state_lifted -com.google.android.material.R$drawable: int navigation_empty_icon -wangdaye.com.geometricweather.R$attr: int animationMode -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: AccuHourlyResult() -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.R$string: int key_notification -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: boolean isChinese() -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircleRadius -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar -androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnBind() -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runBackfused() -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.Long id -wangdaye.com.geometricweather.R$string: int settings_title_precipitation_notification_switch -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets -com.amap.api.fence.PoiItem: void setCity(java.lang.String) -androidx.hilt.work.R$anim: R$anim() -com.google.android.material.chip.Chip: void setCloseIconStartPaddingResource(int) -androidx.constraintlayout.utils.widget.MotionTelltales -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_hideMotionSpec -wangdaye.com.geometricweather.R$color: int mtrl_indicator_text_color -androidx.swiperefreshlayout.R$attr: int fontProviderQuery -cyanogenmod.profiles.StreamSettings: int mStreamId -androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Dialog -okhttp3.internal.platform.Platform: void log(int,java.lang.String,java.lang.Throwable) -cyanogenmod.app.StatusBarPanelCustomTile$1: cyanogenmod.app.StatusBarPanelCustomTile createFromParcel(android.os.Parcel) -cyanogenmod.app.LiveLockScreenManager: boolean getLiveLockScreenEnabled() -com.turingtechnologies.materialscrollbar.R$drawable: int mtrl_tabs_default_indicator -cyanogenmod.providers.CMSettings$DelimitedListValidator: boolean validate(java.lang.String) -okhttp3.internal.http2.Http2Reader: okio.BufferedSource source -com.jaredrummler.android.colorpicker.R$attr: int orderingFromXml -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String chief -okio.RealBufferedSource: byte[] readByteArray() -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_ttcIndex -retrofit2.Utils: java.lang.RuntimeException methodError(java.lang.reflect.Method,java.lang.String,java.lang.Object[]) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton -wangdaye.com.geometricweather.R$layout: int activity_live_wallpaper_config -io.reactivex.exceptions.ProtocolViolationException -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf -com.google.android.material.R$id: int TOP_START -okhttp3.Cache$CacheRequestImpl: okhttp3.Cache this$0 -wangdaye.com.geometricweather.db.entities.WeatherEntity: int temperature -com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu -retrofit2.DefaultCallAdapterFactory$1: java.lang.reflect.Type responseType() -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_gapBetweenBars -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date getUpdateDate() -com.google.android.material.R$attr: int indicatorColor -androidx.lifecycle.extensions.R$dimen: R$dimen() -androidx.preference.R$drawable: int btn_checkbox_unchecked_mtrl -okhttp3.internal.http2.Http2Writer: void synStream(boolean,int,int,java.util.List) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView -android.didikee.donate.R$color: int secondary_text_default_material_light -android.didikee.donate.R$styleable: int AppCompatTheme_windowActionModeOverlay -androidx.hilt.R$styleable: int Fragment_android_id -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf -com.google.android.material.R$id: int mtrl_calendar_day_selector_frame -wangdaye.com.geometricweather.R$color: int colorLine_light -james.adaptiveicon.R$styleable: int Spinner_android_prompt -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollVerticalTrackDrawable -cyanogenmod.externalviews.ExternalView$1: void onServiceDisconnected(android.content.ComponentName) -wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format -james.adaptiveicon.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -com.google.android.material.R$color: int mtrl_text_btn_text_color_selector -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -wangdaye.com.geometricweather.R$attr: int pressedTranslationZ -androidx.appcompat.R$styleable: int MenuItem_android_title -com.xw.repo.bubbleseekbar.R$id: int notification_main_column_container -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -androidx.appcompat.R$dimen: int abc_text_size_subhead_material -androidx.preference.R$styleable: int AppCompatSeekBar_tickMarkTintMode -okhttp3.internal.http2.Http2Connection: java.util.Map streams -androidx.appcompat.resources.R$id: int accessibility_custom_action_12 -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog -com.google.android.material.chip.Chip: void setCheckable(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setUrl(java.lang.String) -okhttp3.internal.http2.Settings: boolean getEnablePush(boolean) -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: cyanogenmod.app.CustomTileListenerService this$0 -com.jaredrummler.android.colorpicker.R$dimen: int compat_control_corner_material -com.google.android.material.R$attr: int textColorAlertDialogListItem -androidx.viewpager2.R$id: int action_text -okhttp3.internal.http2.ErrorCode -androidx.loader.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$style: int EmptyTheme -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -com.google.android.material.R$styleable: int Layout_layout_goneMarginLeft -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_android_maxWidth -androidx.lifecycle.Lifecycle: androidx.lifecycle.Lifecycle$State getCurrentState() -okhttp3.internal.Util: java.util.concurrent.ThreadFactory threadFactory(java.lang.String,boolean) -wangdaye.com.geometricweather.R$styleable: int Preference_key -com.google.android.material.R$attr: int switchMinWidth -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleSwitch -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeTextType -cyanogenmod.providers.CMSettings$Secure: int getIntForUser(android.content.ContentResolver,java.lang.String,int) -com.google.android.material.R$attr: int layout_behavior -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getO3() -wangdaye.com.geometricweather.R$layout: int widget_clock_day_tile -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getBackgroundColor() -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void setDisposable(io.reactivex.disposables.Disposable) -com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonTintMode -cyanogenmod.app.Profile$ProfileTrigger: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarSplitStyle -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getFillAlpha() -wangdaye.com.geometricweather.R$styleable: int SearchView_queryBackground -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String windspeed -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: CircularRevealCoordinatorLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setSunDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$styleable: int CustomAttribute_customIntegerValue -androidx.lifecycle.ProcessLifecycleOwner$3$1: void onActivityPostStarted(android.app.Activity) -wangdaye.com.geometricweather.R$attr: int flow_padding -wangdaye.com.geometricweather.R$attr: int iconGravity -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function6) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getPm25Color(android.content.Context) -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_LABEL -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.functions.Function mapper -androidx.loader.R$styleable: int FontFamilyFont_android_fontStyle -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int THUNDERSHOWER -retrofit2.HttpServiceMethod: retrofit2.Converter responseConverter -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_material_dark -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontStyle -james.adaptiveicon.R$attr: int windowNoTitle -okhttp3.internal.ws.WebSocketWriter: okio.Buffer$UnsafeCursor maskCursor -com.google.android.gms.common.server.FavaDiagnosticsEntity -okio.DeflaterSink: java.util.zip.Deflater deflater -james.adaptiveicon.R$style: int Platform_Widget_AppCompat_Spinner -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -okio.ByteString: java.lang.String string(java.nio.charset.Charset) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DIALER_OPENCNAM_AUTH_TOKEN_VALIDATOR -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_container -androidx.preference.R$attr: int logoDescription -com.google.android.material.R$attr: int textEndPadding -cyanogenmod.app.CustomTile: android.os.Parcelable$Creator CREATOR -androidx.preference.R$dimen: int abc_dialog_list_padding_top_no_title -wangdaye.com.geometricweather.R$attr: int lineHeight -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextColor -androidx.appcompat.resources.R$color: int notification_icon_bg_color -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionProviderClass -cyanogenmod.weather.IRequestInfoListener$Stub: int TRANSACTION_onWeatherRequestCompleted -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int bufferSize -android.didikee.donate.R$style: int TextAppearance_AppCompat_Large -com.google.android.material.R$drawable: int abc_tab_indicator_mtrl_alpha -cyanogenmod.providers.CMSettings$System: java.lang.String SHOW_ALARM_ICON -wangdaye.com.geometricweather.R$style: int Theme_Design_Light -com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset -com.amap.api.location.AMapLocation: double t -com.amap.api.location.AMapLocation: int getTrustedLevel() -com.jaredrummler.android.colorpicker.R$id: int cpv_color_picker_view -james.adaptiveicon.R$dimen: int hint_pressed_alpha_material_dark -android.didikee.donate.R$styleable: int[] ActionBarLayout -com.google.android.material.R$layout: int abc_tooltip -com.google.android.material.R$styleable: int MotionHelper_onShow -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayoutStates -okhttp3.MultipartBody$Builder: MultipartBody$Builder(java.lang.String) -com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_start -cyanogenmod.profiles.RingModeSettings: void processOverride(android.content.Context) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_at -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: int UnitType -com.google.android.material.R$styleable: int GradientColor_android_centerY -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginTop -retrofit2.ParameterHandler$Field: boolean encoded -androidx.coordinatorlayout.R$string: int status_bar_notification_info_overflow -androidx.viewpager2.R$style: int Widget_Compat_NotificationActionText -io.reactivex.internal.util.NotificationLite: java.lang.Object next(java.lang.Object) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: int phenomenoMaxColorId -androidx.appcompat.resources.R$dimen: int compat_notification_large_icon_max_height -com.amap.api.location.AMapLocation: int GPS_ACCURACY_UNKNOWN -org.greenrobot.greendao.AbstractDao: void deleteByKey(java.lang.Object) -android.didikee.donate.R$styleable: int Toolbar_collapseIcon -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_66 -androidx.appcompat.widget.AppCompatEditText: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -androidx.vectordrawable.animated.R$styleable: R$styleable() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -com.jaredrummler.android.colorpicker.R$id: int expand_activities_button -com.google.android.material.R$style: int Base_V28_Theme_AppCompat -okio.AsyncTimeout$2: void close() -wangdaye.com.geometricweather.R$id: int header_title -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService this$0 -retrofit2.adapter.rxjava2.Result: java.lang.Throwable error() -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,long,java.util.concurrent.TimeUnit) -okhttp3.internal.cache.DiskLruCache: java.util.concurrent.Executor executor -cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(android.os.Parcel) -wangdaye.com.geometricweather.R$array: int location_service_values -androidx.swiperefreshlayout.R$color: int notification_icon_bg_color -androidx.appcompat.R$id: int accessibility_custom_action_27 -io.reactivex.internal.subscriptions.DeferredScalarSubscription: java.lang.Object poll() -com.xw.repo.bubbleseekbar.R$dimen: int disabled_alpha_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_stackFromEnd -wangdaye.com.geometricweather.R$style: int Base_V28_Theme_AppCompat_Light -retrofit2.BuiltInConverters$ToStringConverter -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_PRECIPITATION -retrofit2.Platform$Android: java.util.concurrent.Executor defaultCallbackExecutor() -android.didikee.donate.R$attr: int navigationIcon -androidx.constraintlayout.widget.R$anim: int abc_popup_enter -wangdaye.com.geometricweather.R$attr: int colorOnPrimary -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -androidx.work.R$id: int accessibility_custom_action_20 -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter nighttimeWindDegreeConverter -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_Solid -james.adaptiveicon.R$string: int abc_searchview_description_query -retrofit2.RequestFactory$Builder: java.lang.String httpMethod -wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_item_tint -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_4 -wangdaye.com.geometricweather.R$attr: int cardMaxElevation -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: java.lang.String desc -wangdaye.com.geometricweather.R$id: int jumpToStart -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeStyle -android.didikee.donate.R$layout: int abc_select_dialog_material -com.jaredrummler.android.colorpicker.R$styleable: int Preference_selectable -androidx.preference.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setLockWallpaper(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemStrokeWidth -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_backgroundSplit -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: int UnitType -androidx.lifecycle.extensions.R$attr: int fontProviderPackage -androidx.preference.R$drawable: int notification_template_icon_bg -androidx.vectordrawable.animated.R$dimen: int notification_right_icon_size -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_4G -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.db.entities.DailyEntityDao -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd -cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_VISUALIZER_ENABLED -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: AccuCurrentResult$DewPoint$Metric() -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getHour(android.content.Context) -androidx.appcompat.R$styleable: int[] AppCompatTextView -wangdaye.com.geometricweather.db.entities.HistoryEntity: int getNighttimeTemperature() -android.didikee.donate.R$id: int list_item -wangdaye.com.geometricweather.R$styleable: int AlertDialog_multiChoiceItemLayout -wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_tailScale -wangdaye.com.geometricweather.R$styleable: int[] Spinner -wangdaye.com.geometricweather.R$id: int square -androidx.appcompat.R$style: int TextAppearance_AppCompat_Medium_Inverse -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxDao -okhttp3.internal.http2.Hpack$Reader: void insertIntoDynamicTable(int,okhttp3.internal.http2.Header) -androidx.activity.R$attr: int fontWeight -io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onError -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: io.reactivex.internal.fuseable.SimplePlainQueue queue -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorError -com.bumptech.glide.load.engine.GlideException: java.lang.Throwable fillInStackTrace() -androidx.work.NetworkType: androidx.work.NetworkType valueOf(java.lang.String) -wangdaye.com.geometricweather.R$attr: int appBarLayoutStyle -wangdaye.com.geometricweather.R$drawable: int clock_dial_dark -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_BOOT_ANIM -okhttp3.internal.http.RealInterceptorChain: okhttp3.EventListener eventListener -androidx.appcompat.R$styleable: int TextAppearance_android_fontFamily -com.xw.repo.bubbleseekbar.R$id: int notification_main_column -com.turingtechnologies.materialscrollbar.R$dimen: int notification_media_narrow_margin -cyanogenmod.app.Profile$Type: Profile$Type() -androidx.customview.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$color: int design_dark_default_color_background -androidx.constraintlayout.widget.R$styleable: int MenuView_android_headerBackground -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void dispose() -androidx.viewpager.widget.PagerTitleStrip: void setTextSpacing(int) -com.google.gson.FieldNamingPolicy: java.lang.String upperCaseFirstLetter(java.lang.String) -okhttp3.internal.platform.AndroidPlatform: int MAX_LOG_LENGTH -androidx.preference.PreferenceGroup$SavedState: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int NO_REQUEST_HAS_VALUE -androidx.appcompat.R$attr: int iconTint -cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String TIMEZONE_NAME -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf -okio.Buffer: java.io.OutputStream outputStream() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Long getId() -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter beginArray() -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onComplete() -androidx.room.RoomDatabase: RoomDatabase() -com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Flush -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Primary -okhttp3.internal.cache.DiskLruCache$Snapshot: okio.Source[] sources -androidx.preference.R$attr: int editTextColor -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_image_size -com.google.android.material.R$style: int Widget_AppCompat_Light_ActivityChooserView -com.google.android.gms.base.R$styleable: int LoadingImageView_imageAspectRatio -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: int UnitType -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_arrowHeadLength -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_MEDIUM_COLOR -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData this$0 -wangdaye.com.geometricweather.R$drawable: int notif_temp_79 -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String country -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_elevation -androidx.appcompat.R$styleable: int[] SearchView -cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getActiveProfile() -wangdaye.com.geometricweather.R$xml: int icon_provider_config -wangdaye.com.geometricweather.R$styleable: int Toolbar_logoDescription -androidx.work.impl.utils.futures.AbstractFuture: java.lang.Object value -okhttp3.Call$Factory: okhttp3.Call newCall(okhttp3.Request) -com.turingtechnologies.materialscrollbar.R$attr: int dropdownListPreferredItemHeight -android.didikee.donate.R$style: int Widget_AppCompat_DrawerArrowToggle -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy -wangdaye.com.geometricweather.R$string: int settings_title_gravity_sensor_switch -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchTextAppearance -androidx.vectordrawable.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.R$drawable: int widget_trend_daily -com.google.android.material.R$styleable: int KeyTrigger_onPositiveCross -wangdaye.com.geometricweather.R$styleable: int MotionLayout_applyMotionScene -androidx.constraintlayout.widget.R$styleable: int ActionMode_subtitleTextStyle -wangdaye.com.geometricweather.R$styleable: int MenuItem_showAsAction -com.google.android.material.R$styleable: int Constraint_android_minWidth -androidx.lifecycle.FullLifecycleObserver: void onCreate(androidx.lifecycle.LifecycleOwner) -androidx.recyclerview.R$layout: int notification_action_tombstone -androidx.viewpager2.R$layout: int notification_action -okhttp3.Cache$1: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) -okhttp3.CipherSuite: java.lang.String toString() -cyanogenmod.weather.IRequestInfoListener: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) -androidx.preference.R$style: int Base_Widget_AppCompat_ListView_DropDown -android.didikee.donate.R$styleable: int ColorStateListItem_android_alpha -androidx.appcompat.R$dimen: int abc_disabled_alpha_material_light -retrofit2.http.FormUrlEncoded -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -androidx.appcompat.R$attr: int switchTextAppearance -com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_action_area_stub -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle -com.google.android.material.appbar.AppBarLayout: float getTargetElevation() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItem -com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display1 -okio.RealBufferedSink: java.io.OutputStream outputStream() -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteByKey -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver -wangdaye.com.geometricweather.R$styleable: int[] Fragment -okhttp3.internal.http1.Http1Codec: okio.BufferedSink sink -androidx.swiperefreshlayout.R$dimen: int notification_big_circle_margin -com.google.android.material.R$id: int parentRelative -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_normal_material_light -wangdaye.com.geometricweather.R$styleable: int[] MaterialCalendarItem -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_summaryOff -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogTitle -wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassIndex(java.lang.Integer) -wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMarkTintMode -com.google.android.material.R$style: int Widget_AppCompat_ListMenuView -com.jaredrummler.android.colorpicker.ColorPanelView: int getShape() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconEndPadding -wangdaye.com.geometricweather.R$style: int Widget_Design_TabLayout -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierDirection -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onComplete() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean brandInfo -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindDirection(java.lang.String) -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onDetach() -androidx.preference.R$dimen: int hint_alpha_material_dark -android.support.v4.os.ResultReceiver: boolean mLocal -com.google.android.material.R$color: int switch_thumb_material_light -androidx.appcompat.widget.ActionBarContainer: void setVisibility(int) -androidx.viewpager.widget.PagerTabStrip: void setTabIndicatorColor(int) -androidx.constraintlayout.widget.R$styleable: int[] StateSet -wangdaye.com.geometricweather.R$attr: int buttonTint -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTheme -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void dispose() -com.turingtechnologies.materialscrollbar.R$bool: R$bool() -androidx.hilt.R$styleable: int ColorStateListItem_android_color -james.adaptiveicon.R$styleable: int MenuView_android_itemTextAppearance -androidx.hilt.R$styleable: int GradientColor_android_endY -com.google.android.material.R$styleable: int FloatingActionButton_rippleColor -cyanogenmod.providers.CMSettings$Secure: boolean putInt(android.content.ContentResolver,java.lang.String,int) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean done -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetEndWithActions -com.jaredrummler.android.colorpicker.R$dimen: int notification_small_icon_size_as_large -com.jaredrummler.android.colorpicker.R$style: int Base_V22_Theme_AppCompat_Light -com.jaredrummler.android.colorpicker.R$id: int image -androidx.constraintlayout.widget.R$drawable: int abc_btn_check_to_on_mtrl_015 -androidx.core.os.CancellationSignal: void setOnCancelListener(androidx.core.os.CancellationSignal$OnCancelListener) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Colored -com.google.android.material.R$styleable: int KeyTimeCycle_curveFit -androidx.legacy.coreutils.R$attr: int fontProviderCerts -com.turingtechnologies.materialscrollbar.R$styleable: int[] Toolbar -androidx.constraintlayout.widget.R$drawable: int notification_bg_normal -okio.Buffer: void clear() -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog_Alert -com.google.android.material.R$id: int chronometer -androidx.appcompat.R$color: int material_blue_grey_800 -wangdaye.com.geometricweather.R$dimen: int mtrl_toolbar_default_height -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$drawable: int shortcuts_haze_foreground -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FREEZING_DRIZZLE -com.amap.api.fence.GeoFence: boolean isAble() -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: long count -wangdaye.com.geometricweather.R$dimen: int mtrl_large_touch_target -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: io.reactivex.Observer observer -com.turingtechnologies.materialscrollbar.R$color: int material_deep_teal_500 -james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar_Small -okhttp3.internal.http2.Http2Writer: void settings(okhttp3.internal.http2.Settings) -cyanogenmod.themes.ThemeManager$1$2 -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_normal -okhttp3.internal.http.HttpHeaders: boolean skipWhitespaceAndCommas(okio.Buffer) -wangdaye.com.geometricweather.R$string: int abc_menu_shift_shortcut_label -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_LOW -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemTextAppearance -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property AqiText -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconTint -com.jaredrummler.android.colorpicker.R$id: int action_text -com.google.android.material.R$animator: int linear_indeterminate_line2_head_interpolator -androidx.vectordrawable.R$styleable: int GradientColor_android_centerX -cyanogenmod.themes.ThemeChangeRequest: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$styleable: int AppCompatTheme_radioButtonStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_92 -cyanogenmod.externalviews.KeyguardExternalView: android.content.ServiceConnection access$500(cyanogenmod.externalviews.KeyguardExternalView) -cyanogenmod.providers.CMSettings$Global: java.lang.String ZEN_DISABLE_DUCKING_DURING_MEDIA_PLAYBACK -androidx.core.R$dimen: int notification_right_icon_size -androidx.appcompat.R$drawable: int btn_radio_on_to_off_mtrl_animation -okhttp3.Cache$Entry: Cache$Entry(okio.Source) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdw -cyanogenmod.app.IProfileManager: void addNotificationGroup(android.app.NotificationGroup) -wangdaye.com.geometricweather.R$string: int feedback_click_again_to_exit -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.jaredrummler.android.colorpicker.R$styleable: int Preference_allowDividerAbove -james.adaptiveicon.R$style: int Widget_AppCompat_ListPopupWindow -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setIconResStart(int) -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter nighttimeWeatherCodeConverter -wangdaye.com.geometricweather.R$drawable: int notification_template_icon_bg -com.google.android.gms.common.SignInButton: void setScopes(com.google.android.gms.common.api.Scope[]) -cyanogenmod.profiles.BrightnessSettings -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_text_input_mode -com.google.android.material.R$styleable: int Chip_chipEndPadding -wangdaye.com.geometricweather.R$layout: int test_reflow_chipgroup -com.google.gson.stream.JsonReader: int doPeek() -wangdaye.com.geometricweather.common.basic.GeoViewModel -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 -com.google.android.material.R$layout: int mtrl_picker_header_title_text -androidx.transition.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$id: int notification_big_temp_1 -com.jaredrummler.android.colorpicker.R$color: int notification_action_color_filter -com.amap.api.location.AMapLocationClientOption: AMapLocationClientOption() -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: boolean handles(android.content.Intent) -wangdaye.com.geometricweather.R$attr: int windowFixedWidthMinor -com.bumptech.glide.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void drain() -androidx.preference.R$dimen: int abc_control_inset_material -com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_top -com.google.android.material.datepicker.CompositeDateValidator -wangdaye.com.geometricweather.R$color: int mtrl_on_primary_text_btn_text_color_selector -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_percent -com.jaredrummler.android.colorpicker.R$id: int info -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Body1 -com.google.android.material.R$attr: int actionModeCloseDrawable -com.xw.repo.bubbleseekbar.R$attr: int actionOverflowButtonStyle -com.jaredrummler.android.colorpicker.R$attr: int actionModeCloseButtonStyle -wangdaye.com.geometricweather.R$color: int background_material_light -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_thumb_radius -androidx.vectordrawable.animated.R$attr: int fontProviderPackage -com.google.android.material.R$dimen: int mtrl_calendar_day_vertical_padding -androidx.preference.R$styleable: int MenuItem_numericModifiers -com.turingtechnologies.materialscrollbar.R$layout: int notification_action_tombstone -okio.Sink: void close() -com.google.android.material.bottomappbar.BottomAppBar: boolean getHideOnScroll() -okio.BufferedSink: okio.BufferedSink writeInt(int) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.ChineseCityEntity,int) -com.google.android.material.R$styleable: int ViewBackgroundHelper_backgroundTint -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_RC4_128_SHA -androidx.appcompat.R$color: int abc_search_url_text_pressed -com.bumptech.glide.R$drawable: int notification_bg_normal_pressed -com.google.android.material.internal.NavigationMenuItemView -androidx.appcompat.widget.SwitchCompat: android.content.res.ColorStateList getThumbTintList() -androidx.viewpager2.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$styleable: int Preference_android_enabled -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_lightIcon -androidx.hilt.R$id: int title -com.google.android.gms.common.api.ApiException: com.google.android.gms.common.api.Status getStatus() -androidx.drawerlayout.R$styleable: int[] GradientColor -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.String toString() -wangdaye.com.geometricweather.R$attr: int minHeight -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean getDirection() -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_default -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA -androidx.constraintlayout.widget.R$attr: int actionLayout -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionBar -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_weightSum -okhttp3.internal.cache.CacheInterceptor: okhttp3.internal.cache.InternalCache cache -com.google.android.material.R$dimen: int abc_button_inset_vertical_material -wangdaye.com.geometricweather.R$attr: int transitionEasing -com.google.android.material.R$layout: int abc_expanded_menu_layout -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithoutIndexingNewName() -androidx.appcompat.widget.SwitchCompat: void setTextOff(java.lang.CharSequence) -wangdaye.com.geometricweather.R$styleable: int Motion_drawPath -com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -com.google.android.material.timepicker.ClockHandView: void addOnRotateListener(com.google.android.material.timepicker.ClockHandView$OnRotateListener) -com.xw.repo.bubbleseekbar.R$id: int action_container -wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_icon -android.didikee.donate.R$style: int Base_V7_Widget_AppCompat_EditText -com.jaredrummler.android.colorpicker.R$anim: R$anim() -com.google.android.material.button.MaterialButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void otherComplete() -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: java.lang.Throwable error -cyanogenmod.profiles.RingModeSettings: boolean mDirty -com.xw.repo.bubbleseekbar.R$drawable: int abc_dialog_material_background -okhttp3.Interceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -com.jaredrummler.android.colorpicker.R$attr: int editTextStyle -wangdaye.com.geometricweather.R$styleable: int NavigationView_android_maxWidth -com.turingtechnologies.materialscrollbar.R$style: int Base_V22_Theme_AppCompat -okhttp3.Cache$1 -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_icon_size -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.concurrent.atomic.AtomicInteger active -androidx.vectordrawable.animated.R$dimen: int compat_button_inset_vertical_material -james.adaptiveicon.R$attr: int height -cyanogenmod.app.Profile$LockMode: int DEFAULT -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation build() -cyanogenmod.hardware.ICMHardwareService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTintMode -james.adaptiveicon.R$id: int async -okhttp3.HttpUrl: java.lang.String encodedFragment() -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_orderInCategory -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List dailyForecasts -wangdaye.com.geometricweather.R$id: int material_textinput_timepicker -com.xw.repo.bubbleseekbar.R$attr: int itemPadding -io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged(io.reactivex.functions.BiPredicate) -wangdaye.com.geometricweather.R$layout: int test_action_chip -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.Callable other -com.jaredrummler.android.colorpicker.R$drawable: int abc_switch_thumb_material -androidx.work.R$drawable: int notification_action_background -com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_end -retrofit2.http.Headers -wangdaye.com.geometricweather.R$attr: int trackColorInactive -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Subhead_Inverse -com.jaredrummler.android.colorpicker.R$styleable: int[] SeekBarPreference -androidx.activity.R$id: int action_text -com.jaredrummler.android.colorpicker.R$attr: int arrowShaftLength -androidx.appcompat.R$styleable: int FontFamily_fontProviderPackage -androidx.fragment.R$id: int accessibility_custom_action_2 -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Wind getWind() -com.google.android.material.R$attr: int cornerFamilyTopRight -androidx.preference.R$id: int action_mode_bar -com.google.android.material.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -androidx.preference.R$styleable: int AppCompatTheme_editTextColor -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_progressBarStyle -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onSuccess(java.lang.Object) -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory sInstance -androidx.appcompat.R$id: int group_divider -androidx.constraintlayout.widget.R$styleable: int[] SearchView -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarItemBackground -com.bumptech.glide.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$drawable: int shortcuts_fog_foreground -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm25 -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.R$string: int mtrl_exceed_max_badge_number_content_description -okhttp3.WebSocket: boolean close(int,java.lang.String) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide -androidx.viewpager2.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.db.entities.DaoMaster: void dropAllTables(org.greenrobot.greendao.database.Database,boolean) -androidx.appcompat.R$attr: int textAppearancePopupMenuHeader -wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitleTextColor -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_item_icon_padding -androidx.preference.R$attr: int showTitle -com.turingtechnologies.materialscrollbar.R$attr: int barLength -wangdaye.com.geometricweather.R$id: int mtrl_picker_fullscreen -com.google.android.material.chip.ChipGroup: java.util.List getCheckedChipIds() -com.google.android.material.internal.NavigationMenuItemView: void setNeedsEmptyIcon(boolean) -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_body_2_material -cyanogenmod.externalviews.KeyguardExternalViewProviderService: KeyguardExternalViewProviderService() -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline2 -androidx.transition.R$attr: int fontProviderFetchTimeout -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_21 -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Item -androidx.preference.R$drawable: int abc_switch_track_mtrl_alpha -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabText -cyanogenmod.externalviews.ExternalViewProperties: int[] mScreenCoords -androidx.fragment.R$id: int notification_main_column_container -okhttp3.internal.platform.Platform: okhttp3.internal.tls.TrustRootIndex buildTrustRootIndex(javax.net.ssl.X509TrustManager) -james.adaptiveicon.R$style: int Base_Theme_AppCompat -wangdaye.com.geometricweather.R$animator: int weather_cloudy_1 -androidx.preference.R$styleable: int AppCompatTheme_listPopupWindowStyle -androidx.viewpager2.R$id: int info -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int RUNNING -androidx.constraintlayout.widget.R$styleable: int[] CustomAttribute -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: ObservableThrottleLatest$ThrottleLatestObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker,boolean) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xsr -com.google.android.material.datepicker.CompositeDateValidator: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog -android.didikee.donate.R$dimen: int abc_text_size_medium_material -cyanogenmod.app.ProfileGroup$2 -cyanogenmod.app.ProfileGroup: boolean matches(android.app.NotificationGroup,boolean) -androidx.constraintlayout.widget.R$styleable: int Constraint_pivotAnchor -androidx.constraintlayout.helper.widget.Flow: void setFirstVerticalBias(float) -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean tryOnError(java.lang.Throwable) -cyanogenmod.themes.ThemeManager: java.lang.String TAG -okhttp3.internal.cache.DiskLruCache$1: void run() -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Inverse -james.adaptiveicon.R$drawable: int abc_switch_thumb_material -androidx.coordinatorlayout.R$id: int accessibility_custom_action_31 -okhttp3.internal.cache2.Relay$RelaySource: long sourcePos -com.jaredrummler.android.colorpicker.R$style: R$style() -androidx.swiperefreshlayout.R$id: int actions -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_6 -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginLeft -com.google.android.material.R$attr: int checkedTextViewStyle -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_stacked_tab_max_width -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: android.os.IBinder asBinder() -com.google.android.material.R$color: int material_grey_100 -cyanogenmod.app.CMContextConstants$Features: java.lang.String PERFORMANCE -android.didikee.donate.R$styleable: int AppCompatTheme_popupMenuStyle -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_android_color -com.jaredrummler.android.colorpicker.R$style: int Platform_V25_AppCompat_Light -wangdaye.com.geometricweather.R$string: int settings_notification_can_be_cleared_off -com.google.android.gms.common.internal.zax: zax(android.content.Context) -androidx.appcompat.R$styleable: int ActionBar_itemPadding -com.google.android.material.R$attr: int statusBarBackground -okio.AsyncTimeout: int TIMEOUT_WRITE_SIZE -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol valueOf(java.lang.String) -io.reactivex.disposables.ReferenceDisposable -wangdaye.com.geometricweather.settings.fragments.AbstractSettingsFragment: AbstractSettingsFragment() -com.google.android.material.R$color: int mtrl_tabs_icon_color_selector -com.google.android.material.R$styleable: int ActionBar_homeAsUpIndicator -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setProgress(float) -com.google.android.material.R$attr: int materialButtonToggleGroupStyle -androidx.preference.R$layout: int custom_dialog -androidx.preference.R$style: int Widget_AppCompat_SearchView_ActionBar -retrofit2.Retrofit: retrofit2.Converter stringConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) -com.google.android.material.R$dimen: int mtrl_btn_disabled_elevation -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -wangdaye.com.geometricweather.R$attr: int motionTarget -wangdaye.com.geometricweather.R$id: R$id() -androidx.hilt.lifecycle.R$id: int tag_accessibility_pane_title -androidx.appcompat.widget.AppCompatTextView: android.view.textclassifier.TextClassifier getTextClassifier() -wangdaye.com.geometricweather.R$dimen: int material_clock_hand_center_dot_radius -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_iconifiedByDefault -okhttp3.internal.ws.RealWebSocket: java.util.concurrent.ScheduledFuture cancelFuture -wangdaye.com.geometricweather.R$string: int wind_speed -com.jaredrummler.android.colorpicker.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.R$string: int material_slider_range_end -androidx.appcompat.R$styleable: int ActionBar_customNavigationLayout -androidx.appcompat.R$dimen: int abc_action_button_min_height_material -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date publishDate -wangdaye.com.geometricweather.R$styleable: int[] PreferenceImageView -androidx.vectordrawable.R$attr: int fontStyle -androidx.coordinatorlayout.R$id: int accessibility_custom_action_12 -com.google.android.material.R$drawable: int material_ic_keyboard_arrow_previous_black_24dp -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button -androidx.constraintlayout.widget.R$attr: int ratingBarStyleSmall -wangdaye.com.geometricweather.R$layout: int notification_base_big -androidx.work.R$id: int time -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_width -wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_width_overflow_material -com.jaredrummler.android.colorpicker.ColorPickerDialog: ColorPickerDialog() -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status REJECTED -com.baidu.location.indoor.mapversion.c.c$b: double f -androidx.lifecycle.livedata.core.R -androidx.appcompat.R$styleable: int AppCompatTextView_drawableTopCompat -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type VERTICAL_DIMENSION -androidx.appcompat.R$style: int TextAppearance_AppCompat_Medium -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingLeft -okio.Segment: byte[] data -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_NoActionBar -com.google.android.material.slider.Slider: int getHaloRadius() -android.didikee.donate.R$dimen: int abc_button_padding_vertical_material -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: kotlin.coroutines.Continuation $continuation -androidx.work.impl.utils.futures.AbstractFuture$Waiter: androidx.work.impl.utils.futures.AbstractFuture$Waiter next -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Button -androidx.core.widget.NestedScrollView: float getVerticalScrollFactorCompat() -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: io.reactivex.Observer downstream -cyanogenmod.providers.CMSettings$Global: int getIntForUser(android.content.ContentResolver,java.lang.String,int) -com.google.android.material.R$id: int forever -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_EXPORT_WITH_RC4_40_MD5 -cyanogenmod.power.IPerformanceManager: void cpuBoost(int) -com.google.android.material.R$styleable: int NavigationView_itemIconTint -androidx.appcompat.R$color: int button_material_dark -com.turingtechnologies.materialscrollbar.R$attr: int chipStandaloneStyle -android.didikee.donate.R$style: int Platform_AppCompat_Light -com.google.android.material.R$attr: int submitBackground -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListMenuView -okhttp3.ConnectionSpec: java.lang.String[] tlsVersions -androidx.appcompat.resources.R$dimen: int notification_action_icon_size -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver parent -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.lifecycle.extensions.R$drawable: int notification_action_background -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: boolean IsAlias -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$dimen: int notification_action_text_size -okio.ByteString: boolean rangeEquals(int,byte[],int,int) -wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_dark -wangdaye.com.geometricweather.R$attr: int editTextStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_14 -wangdaye.com.geometricweather.R$animator: int start_shine_2 -androidx.viewpager2.R$styleable: int[] FontFamily -com.turingtechnologies.materialscrollbar.R$dimen: int notification_large_icon_height -androidx.appcompat.R$dimen: R$dimen() -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth -com.bumptech.glide.R$drawable: int notification_icon_background -io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable,io.reactivex.functions.Function) -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent[] values() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_height_major -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior: ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior(android.content.Context,android.util.AttributeSet) -com.amap.api.location.AMapLocation: java.lang.String e -okhttp3.Address -cyanogenmod.providers.CMSettings$NameValueCache: java.util.HashMap mValues -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property ResidentPosition -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_1 -com.google.android.material.datepicker.SingleDateSelector: android.os.Parcelable$Creator CREATOR -android.didikee.donate.R$id: int chronometer -com.google.android.material.R$style: int ShapeAppearanceOverlay_DifferentCornerSize -wangdaye.com.geometricweather.R$attr: int windowMinWidthMajor -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert -com.google.android.material.bottomappbar.BottomAppBar: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() -cyanogenmod.externalviews.KeyguardExternalView: void unregisterOnWindowAttachmentChangedListener(cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableLeft -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_off_mtrl_alpha -androidx.appcompat.widget.ActionBarContextView: void setSubtitle(java.lang.CharSequence) -com.turingtechnologies.materialscrollbar.R$styleable: int[] ViewStubCompat -io.reactivex.internal.observers.BasicIntQueueDisposable: boolean isEmpty() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_128_CCM_SHA256 -com.xw.repo.bubbleseekbar.R$styleable: int[] MenuView -com.google.android.gms.signin.internal.zag: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$dimen: int material_cursor_width -io.reactivex.exceptions.CompositeException: java.lang.String message -com.google.android.material.timepicker.TimePickerView: void setOnActionUpListener(com.google.android.material.timepicker.ClockHandView$OnActionUpListener) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Body1 -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getTitle() -androidx.appcompat.R$styleable: int View_android_theme -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float pm25 -androidx.constraintlayout.widget.R$attr: int arrowShaftLength -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSize(int) -com.google.android.material.R$attr: int hintTextAppearance -com.google.android.material.R$styleable: int TabLayout_tabMode -okhttp3.internal.http2.Http2Connection$2: int val$streamId -com.google.android.material.R$styleable: int OnClick_targetId -wangdaye.com.geometricweather.R$id: int notification_base_icon -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String value -androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableItem -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorError -com.google.android.material.R$id: int submenuarrow -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat -cyanogenmod.externalviews.KeyguardExternalView: java.lang.String TAG -wangdaye.com.geometricweather.R$attr: int bsb_touch_to_seek -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type lowerBound -androidx.constraintlayout.widget.R$styleable: int CompoundButton_android_button -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: void onFinish(boolean) -androidx.viewpager2.R$id: int right_side -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String momentDay -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: java.lang.String Unit -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: void setServiceRequestState(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.ServiceRequestResult,int) -android.didikee.donate.R$styleable: int AppCompatTheme_panelMenuListTheme -com.google.android.material.R$dimen: int hint_pressed_alpha_material_light -com.xw.repo.bubbleseekbar.R$attr: int windowActionBar -com.amap.api.location.LocationManagerBase: void stopAssistantLocation() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String aqi -com.google.android.material.chip.Chip: android.content.res.ColorStateList getCloseIconTint() -androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStore,androidx.lifecycle.ViewModelProvider$Factory) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String ACTION_SET_ALARM_ENABLED -cyanogenmod.providers.CMSettings$System$1: boolean validate(java.lang.String) -org.greenrobot.greendao.AbstractDao: java.util.List loadAll() -cyanogenmod.app.Profile$NotificationLightMode: int ENABLE -cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING -com.google.android.gms.base.R$string: int common_google_play_services_unsupported_text -androidx.core.graphics.drawable.IconCompat: IconCompat() -com.amap.api.location.LocationManagerBase: void unRegisterLocationListener(com.amap.api.location.AMapLocationListener) -com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay -okhttp3.internal.http2.Http2Stream: boolean isLocallyInitiated() -androidx.activity.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeRealFeelShaderTemperature -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.preference.R$attr: int summaryOn -james.adaptiveicon.R$styleable: int AppCompatTheme_colorBackgroundFloating -androidx.vectordrawable.animated.R$dimen: int notification_large_icon_height -androidx.work.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_bias -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_checkedTextViewStyle -cyanogenmod.app.CMStatusBarManager: void publishTile(int,cyanogenmod.app.CustomTile) -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String TABLENAME -com.google.android.material.R$styleable: int SwitchMaterial_useMaterialThemeColors -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource valueOf(java.lang.String) -okhttp3.CacheControl$Builder -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.appcompat.R$color: int bright_foreground_disabled_material_light -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -androidx.appcompat.widget.Toolbar: int getCurrentContentInsetEnd() -com.google.android.material.R$styleable: int KeyAttribute_motionTarget -androidx.fragment.R$id: int tag_accessibility_actions -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onBouncerShowing(boolean) -com.google.android.material.R$layout: int mtrl_picker_header_toggle -androidx.preference.R$styleable: int FragmentContainerView_android_name -com.google.android.material.R$styleable: int TextInputLayout_placeholderText -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_type -androidx.preference.R$styleable: int Preference_android_layout -com.google.android.material.R$attr: int chipSurfaceColor -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoDownloadInterval -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int SourceId -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.legacy.coreutils.R$id: int line1 -wangdaye.com.geometricweather.R$layout: int abc_tooltip -android.support.v4.os.IResultReceiver -com.google.android.material.R$attr: int textAppearanceHeadline3 -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory -wangdaye.com.geometricweather.R$color: int notification_background_rootLight -james.adaptiveicon.R$dimen: int abc_action_button_min_height_material -wangdaye.com.geometricweather.R$id: int item_about_library_title -wangdaye.com.geometricweather.R$string: int feedback_live_wallpaper_day_night_type -androidx.constraintlayout.widget.R$styleable: int Constraint_android_transformPivotY -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemHorizontalTranslationEnabled(boolean) -com.turingtechnologies.materialscrollbar.R$integer: int app_bar_elevation_anim_duration -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCopyDrawable -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_3 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dividerHorizontal -wangdaye.com.geometricweather.R$attr: int valueTextColor -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginEnd -cyanogenmod.app.LiveLockScreenManager: void logServiceException(java.lang.Exception) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_SearchResult_Title -androidx.hilt.work.R$attr: int fontProviderPackage -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onSuccess(java.lang.Object) -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_icon_size -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setCurrentIndicatorColor(int) -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_interval -com.google.android.material.bottomnavigation.BottomNavigationMenuView: BottomNavigationMenuView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$drawable: int weather_snow_pixel -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_fontVariationSettings -okhttp3.Headers$Builder: java.lang.String get(java.lang.String) -retrofit2.HttpException: HttpException(retrofit2.Response) -io.reactivex.internal.observers.BasicIntQueueDisposable: java.lang.Object poll() -androidx.preference.R$color: int button_material_dark -wangdaye.com.geometricweather.R$dimen: int abc_cascading_menus_min_smallest_width -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_1_00 -okhttp3.HttpUrl: java.lang.String scheme -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_tint -androidx.preference.R$styleable: int ActionMenuItemView_android_minWidth -wangdaye.com.geometricweather.R$string: int item_view_role_description -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getWindDegree() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_0_30 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPm25() -com.google.android.material.R$dimen: int mtrl_progress_indicator_size -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: int leftIndex -cyanogenmod.app.Profile: cyanogenmod.profiles.AirplaneModeSettings getAirplaneMode() -androidx.constraintlayout.widget.R$attr: int keyPositionType -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -androidx.lifecycle.extensions.R$dimen: int notification_right_side_padding_top -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.preference.R$attr: int initialActivityCount -androidx.preference.R$id: int accessibility_custom_action_16 -android.didikee.donate.R$styleable: int Toolbar_titleMarginStart -com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_text_padding_right -com.xw.repo.bubbleseekbar.R$attr: int alertDialogCenterButtons -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabStyle -com.google.android.material.R$dimen: int tooltip_margin -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: ObservableTakeUntil$TakeUntilMainObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver) -retrofit2.Invocation: Invocation(java.lang.reflect.Method,java.util.List) -androidx.vectordrawable.animated.R$drawable: int notification_bg_low -okhttp3.Request$Builder: okhttp3.Request$Builder post(okhttp3.RequestBody) -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackInactiveTintList() -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit[] values() -wangdaye.com.geometricweather.R$string: int feedback_location_failed -wangdaye.com.geometricweather.background.service.CMWeatherProviderService: CMWeatherProviderService() -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_today_stroke -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_minWidth -androidx.preference.R$attr: int menu -androidx.preference.R$style: int Theme_AppCompat_DayNight_DarkActionBar -org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType Session -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.Scheduler$Worker worker -com.google.android.material.R$styleable: int ConstraintSet_flow_wrapMode -wangdaye.com.geometricweather.R$id: int exitUntilCollapsed -com.xw.repo.bubbleseekbar.R$dimen: int hint_pressed_alpha_material_light -james.adaptiveicon.R$dimen: int abc_button_inset_horizontal_material -com.google.android.material.card.MaterialCardView: void setCheckedIconMargin(int) -wangdaye.com.geometricweather.R$id: int item_alert_content -androidx.preference.R$id: int title -wangdaye.com.geometricweather.R$drawable: int widget_day -com.google.android.material.R$styleable: int[] ButtonBarLayout -com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_EditTextPreference_Material -wangdaye.com.geometricweather.R$id: int container_main_aqi -wangdaye.com.geometricweather.R$styleable: int TextInputEditText_textInputLayoutFocusedRectEnabled -wangdaye.com.geometricweather.R$attr: int preferenceFragmentCompatStyle -com.google.android.material.R$attr: int actionBarSplitStyle -io.reactivex.Observable: io.reactivex.Observable distinct(io.reactivex.functions.Function) -androidx.coordinatorlayout.widget.CoordinatorLayout: void setFitsSystemWindows(boolean) -androidx.appcompat.widget.FitWindowsFrameLayout -james.adaptiveicon.R$dimen: int compat_button_padding_horizontal_material -androidx.preference.R$styleable: int PreferenceTheme_preferenceInformationStyle -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WetBulbTemperature -com.jaredrummler.android.colorpicker.R$attr: int measureWithLargestChild -wangdaye.com.geometricweather.R$drawable: int notif_temp_99 -androidx.appcompat.R$color -androidx.viewpager2.R$styleable: int RecyclerView_spanCount -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActivityChooserView -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets -com.google.android.material.slider.Slider: void setThumbStrokeWidthResource(int) -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontWeight -androidx.constraintlayout.widget.R$styleable: int Layout_barrierAllowsGoneWidgets -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor valueOf(java.lang.String) -io.reactivex.disposables.ReferenceDisposable: long serialVersionUID -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -com.google.android.material.R$styleable: int MaterialTextView_android_lineHeight -wangdaye.com.geometricweather.R$styleable: int StateSet_defaultState -androidx.preference.R$style: int Preference_SwitchPreferenceCompat -androidx.constraintlayout.widget.R$attr: int tickMark -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_TextView -okhttp3.OkHttpClient$1: int code(okhttp3.Response$Builder) -androidx.appcompat.widget.ActionBarOverlayLayout: void setLogo(int) -com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -com.bumptech.glide.R$dimen -androidx.hilt.lifecycle.R$layout: int notification_action -com.jaredrummler.android.colorpicker.R$attr: int subtitle -io.reactivex.internal.subscriptions.DeferredScalarSubscription: DeferredScalarSubscription(org.reactivestreams.Subscriber) -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String ENABLED -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setBadge(com.google.android.material.badge.BadgeDrawable) -androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -com.turingtechnologies.materialscrollbar.R$attr: int tabInlineLabel -com.jaredrummler.android.colorpicker.R$attr: int actionMenuTextAppearance -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabText -androidx.constraintlayout.widget.R$dimen: int abc_seekbar_track_background_height_material -com.google.android.material.R$styleable: int AppCompatTheme_selectableItemBackground -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Info -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog -androidx.swiperefreshlayout.R$string: R$string() -androidx.preference.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -james.adaptiveicon.R$id: int forever -androidx.lifecycle.viewmodel.savedstate.R -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2 -com.google.android.material.R$color: int abc_hint_foreground_material_dark -androidx.viewpager2.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.R$string: int about_glide -com.jaredrummler.android.colorpicker.R$attr: int dropdownPreferenceStyle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1 -com.google.android.gms.common.api.UnsupportedApiCallException: UnsupportedApiCallException(com.google.android.gms.common.Feature) -androidx.appcompat.R$attr: int windowFixedWidthMajor -okio.Buffer: okio.Buffer writeUtf8CodePoint(int) -androidx.activity.R$drawable: int notification_tile_bg -androidx.preference.Preference$BaseSavedState -org.greenrobot.greendao.AbstractDaoSession: void deleteAll(java.lang.Class) -wangdaye.com.geometricweather.R$drawable: int ic_running_in_background -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void startFirstTimeout(io.reactivex.ObservableSource) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIcon -com.google.android.material.R$layout: int abc_list_menu_item_icon -wangdaye.com.geometricweather.R$attr: int bottomSheetStyle -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.TableStatements statements -cyanogenmod.app.ProfileGroup: ProfileGroup(java.util.UUID,boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean -androidx.fragment.R$dimen: int notification_small_icon_size_as_large -com.google.android.material.R$interpolator: int fast_out_slow_in -cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationDefault() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_transformPivotX -androidx.constraintlayout.widget.R$styleable: int[] AppCompatTextHelper -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogPreferredPadding -android.didikee.donate.R$dimen: int notification_action_icon_size -com.google.android.gms.common.R$integer: R$integer() -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveShape -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstHorizontalStyle -androidx.appcompat.R$styleable: int View_paddingEnd -com.bumptech.glide.R$id: int blocking -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro moon() -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton -androidx.preference.R$string: int abc_action_bar_home_description -androidx.vectordrawable.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.R$attr: int drawableBottomCompat -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node root -com.google.android.gms.internal.location.zzj -wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_night -wangdaye.com.geometricweather.R$id: int scroll -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: int status -com.google.android.material.slider.RangeSlider: float getValueTo() -android.didikee.donate.R$attr: int divider -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String cityId -james.adaptiveicon.R$styleable: int FontFamilyFont_ttcIndex -com.google.android.material.R$styleable: int ImageFilterView_saturation -cyanogenmod.themes.ThemeChangeRequest: java.util.Map mPerAppOverlays -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_keyline -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onComplete() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean cancelled -com.google.android.material.R$attr: int checkedIconEnabled -androidx.work.R$id: int accessibility_custom_action_24 -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.internal.util.AtomicThrowable error -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -androidx.appcompat.R$color: int secondary_text_disabled_material_dark -okhttp3.internal.cache2.Relay: okio.ByteString PREFIX_CLEAN -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm10(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -cyanogenmod.providers.CMSettings$System: int getInt(android.content.ContentResolver,java.lang.String) -androidx.appcompat.R$id: int action_mode_bar_stub -androidx.appcompat.R$id: int checked -wangdaye.com.geometricweather.R$attr: int customIntegerValue -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_height -okio.RealBufferedSink$1: void write(byte[],int,int) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List area -androidx.constraintlayout.widget.R$id: int image -com.xw.repo.bubbleseekbar.R$attr: int searchIcon -com.google.android.material.R$styleable: int AlertDialog_listItemLayout -android.didikee.donate.R$layout: int abc_screen_simple_overlay_action_mode -okio.ByteString: okio.ByteString sha256() -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_5 -okhttp3.Callback: void onResponse(okhttp3.Call,okhttp3.Response) -androidx.lifecycle.ViewModel: void onCleared() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Medium -com.google.android.material.R$id: int save_non_transition_alpha -cyanogenmod.app.CustomTile$ExpandedItem$1: java.lang.Object createFromParcel(android.os.Parcel) -com.google.android.material.R$dimen: int abc_dialog_title_divider_material -androidx.constraintlayout.widget.R$attr: int drawableEndCompat -com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_layout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: java.lang.String Unit -com.google.android.material.R$styleable: int Slider_android_enabled -androidx.preference.R$dimen: int abc_text_size_body_1_material -com.amap.api.fence.PoiItem: PoiItem(android.os.Parcel) -androidx.vectordrawable.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$drawable: int notif_temp_105 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_popupWindowStyle -androidx.constraintlayout.widget.Guideline: void setGuidelineEnd(int) -wangdaye.com.geometricweather.R$array: int duration_unit_values -com.xw.repo.bubbleseekbar.R$drawable: int abc_item_background_holo_dark -okhttp3.internal.cache.CacheRequest -androidx.appcompat.R$attr: int colorControlActivated -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginStart -com.google.android.material.textfield.TextInputLayout: void setHelperTextEnabled(boolean) -com.turingtechnologies.materialscrollbar.R$string: int bottom_sheet_behavior -androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -com.turingtechnologies.materialscrollbar.R$id: int notification_main_column_container -com.google.android.material.R$drawable: int abc_list_selector_holo_dark -wangdaye.com.geometricweather.R$attr: int preferenceCategoryStyle -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -wangdaye.com.geometricweather.R$layout: int preference_widget_switch_compat -james.adaptiveicon.R$dimen: int abc_action_bar_default_height_material -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_keyline -okio.BufferedSource: java.lang.String readString(java.nio.charset.Charset) -androidx.appcompat.R$dimen: int abc_action_bar_elevation_material -cyanogenmod.app.StatusBarPanelCustomTile -okio.Timeout: void throwIfReached() -io.reactivex.internal.observers.LambdaObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.widget.ActionMenuPresenter$SavedState: android.os.Parcelable$Creator CREATOR -com.google.android.material.slider.BaseSlider: void setThumbRadiusResource(int) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -com.google.android.material.R$attr: int fabCradleVerticalOffset -retrofit2.RequestFactory$Builder: java.lang.annotation.Annotation[][] parameterAnnotationsArray -androidx.constraintlayout.widget.R$drawable: int abc_vector_test -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_android_enabled -com.google.android.material.R$dimen: int notification_big_circle_margin -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableRightCompat -okhttp3.logging.LoggingEventListener: LoggingEventListener(okhttp3.logging.HttpLoggingInterceptor$Logger,okhttp3.logging.LoggingEventListener$1) -com.turingtechnologies.materialscrollbar.R$style: int Base_V22_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Text -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_anim_duration -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_android_windowIsFloating -io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Action) -android.didikee.donate.R$id: int scrollIndicatorUp -wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: DaoMaster$DevOpenHelper(android.content.Context,java.lang.String) -androidx.preference.R$attr: int maxWidth -com.google.android.material.R$style -wangdaye.com.geometricweather.R$color: int switch_thumb_normal_material_dark -com.amap.api.location.CoordUtil: boolean isLoadedSo() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void access$700(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickTintList() -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light_normal -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton -wangdaye.com.geometricweather.R$attr: int growMode -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: ICMWeatherManager$Stub$Proxy(android.os.IBinder) -androidx.appcompat.widget.AppCompatButton: void setBackgroundResource(int) -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getWeatherSource() -com.baidu.location.e.h$b: com.baidu.location.e.h$b valueOf(java.lang.String) -androidx.activity.R$id: int italic -okio.BufferedSource -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: void complete() -androidx.fragment.R$style: int TextAppearance_Compat_Notification_Info -androidx.appcompat.view.menu.ActionMenuItemView -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -com.turingtechnologies.materialscrollbar.R$style: int Platform_V21_AppCompat -androidx.appcompat.R$style: int TextAppearance_AppCompat_Large_Inverse -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -androidx.customview.R$style: R$style() -com.bumptech.glide.integration.okhttp.R$style: int Widget_Compat_NotificationActionContainer -io.reactivex.Observable: Observable() -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_hide_bubble -wangdaye.com.geometricweather.R$layout: int dialog_location_help -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline1 -cyanogenmod.providers.WeatherContract$WeatherColumns -cyanogenmod.app.CustomTile$ExpandedStyle$1: cyanogenmod.app.CustomTile$ExpandedStyle createFromParcel(android.os.Parcel) -com.google.android.material.R$styleable: int ConstraintSet_flow_verticalGap -com.xw.repo.bubbleseekbar.R$dimen: R$dimen() -james.adaptiveicon.R$attr: int actionModePasteDrawable -com.amap.api.location.AMapLocation: void setCityCode(java.lang.String) -com.jaredrummler.android.colorpicker.R$attr: int preferenceTheme -wangdaye.com.geometricweather.R$string: int cpv_presets -com.google.android.material.navigation.NavigationView: android.content.res.ColorStateList getItemIconTintList() -androidx.constraintlayout.widget.R$styleable: int[] ListPopupWindow -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) -androidx.appcompat.R$attr: int backgroundTint -cyanogenmod.themes.ThemeManager: void onClientResumed(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -wangdaye.com.geometricweather.R$id: int accelerate -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: androidx.core.graphics.PathParser$PathDataNode[] getPathData() -androidx.hilt.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_light -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customColorDrawableValue -androidx.swiperefreshlayout.R$id: int notification_main_column -com.google.android.material.chip.Chip: android.graphics.Rect getCloseIconTouchBoundsInt() -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer RIGHT_CLOSE -wangdaye.com.geometricweather.R$styleable: int Slider_tickColorActive -androidx.hilt.work.R$drawable: int notify_panel_notification_icon_bg -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void setResource(io.reactivex.disposables.Disposable) -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizePresetSizes -com.google.android.material.R$style: int Platform_AppCompat_Light -android.didikee.donate.R$styleable: int AppCompatTextView_android_textAppearance -android.didikee.donate.R$id: int bottom -io.reactivex.Observable: io.reactivex.Observable filter(io.reactivex.functions.Predicate) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -okhttp3.internal.ws.WebSocketReader$FrameCallback -com.google.android.material.R$attr: int badgeStyle -com.google.gson.FieldNamingPolicy$3: FieldNamingPolicy$3(java.lang.String,int) -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getBackgroundTintList() -com.google.android.material.R$color: int error_color_material_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean() -okio.SegmentedByteString: int hashCode() -com.google.android.material.R$attr: int dialogCornerRadius -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber -android.didikee.donate.R$styleable: int MenuGroup_android_menuCategory -wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundTomorrowForecastUpdateService: Hilt_ForegroundTomorrowForecastUpdateService() -wangdaye.com.geometricweather.R$styleable: int MaterialButton_strokeWidth -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust WindGust -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconTint -com.jaredrummler.android.colorpicker.R$attr: int layout_dodgeInsetEdges -okhttp3.ConnectionPool: boolean $assertionsDisabled -cyanogenmod.hardware.CMHardwareManager: java.lang.String TAG -androidx.appcompat.widget.AppCompatEditText: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.google.android.material.R$styleable: int Chip_closeIconStartPadding -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean isEmpty() -com.jaredrummler.android.colorpicker.R$anim: int abc_slide_out_bottom -james.adaptiveicon.R$drawable: int abc_ratingbar_small_material -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_alphabeticShortcut -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getAbbreviation(android.content.Context) -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxIo -cyanogenmod.profiles.AirplaneModeSettings: boolean mOverride -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -androidx.work.R$dimen: int notification_small_icon_size_as_large -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_ACTIVE -com.amap.api.fence.GeoFenceClient: void setGeoFenceListener(com.amap.api.fence.GeoFenceListener) -com.google.android.material.R$style: int Widget_Design_AppBarLayout -androidx.constraintlayout.widget.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_title -androidx.constraintlayout.widget.R$attr: int waveDecay -cyanogenmod.os.Build$CM_VERSION -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -com.google.android.material.R$styleable: int ImageFilterView_altSrc -com.google.android.material.R$attr: int textAppearanceSearchResultTitle -com.google.android.material.R$attr: int chipIconTint -androidx.constraintlayout.widget.R$color: int background_material_light -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onCross -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Button -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_130 -androidx.constraintlayout.widget.R$color: int primary_material_light -com.amap.api.location.AMapLocationClient: void stopAssistantLocation() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getWeatherText() -com.google.android.gms.base.R$id: int adjust_height -androidx.legacy.coreutils.R$dimen: int compat_control_corner_material -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_Tooltip -androidx.lifecycle.SavedStateHandleController -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -com.google.android.material.R$dimen: int mtrl_navigation_item_shape_horizontal_margin -io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$id: int activity_preview_icon_container -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -okhttp3.Callback: void onFailure(okhttp3.Call,java.io.IOException) -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_goIcon -androidx.dynamicanimation.R$id: int text -okhttp3.CertificatePinner: CertificatePinner(java.util.Set,okhttp3.internal.tls.CertificateChainCleaner) -io.reactivex.internal.disposables.EmptyDisposable: int requestFusion(int) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: long serialVersionUID -okhttp3.TlsVersion: okhttp3.TlsVersion SSL_3_0 -com.turingtechnologies.materialscrollbar.R$id: int design_bottom_sheet -com.google.android.material.R$styleable: int NavigationView_shapeAppearance -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCeiling(java.lang.Float) -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -wangdaye.com.geometricweather.db.entities.WeatherEntity: long getTimeStamp() -com.google.android.material.button.MaterialButton: void setCornerRadius(int) -androidx.appcompat.R$styleable: int AppCompatTheme_actionModePasteDrawable -wangdaye.com.geometricweather.R$dimen: int mtrl_chip_text_size -androidx.constraintlayout.widget.R$string: R$string() -okhttp3.internal.http2.Http2Reader$ContinuationSource: Http2Reader$ContinuationSource(okio.BufferedSource) -com.google.android.material.R$style: int Theme_AppCompat_Light_DialogWhenLarge -androidx.loader.R$styleable: int FontFamilyFont_fontStyle -androidx.constraintlayout.widget.R$id: int on -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCloseDrawable -wangdaye.com.geometricweather.db.entities.LocationEntityDao: LocationEntityDao(org.greenrobot.greendao.internal.DaoConfig) -com.google.android.material.R$styleable: int TextInputLayout_counterTextAppearance -james.adaptiveicon.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -com.google.android.material.R$attr: int spinBars -wangdaye.com.geometricweather.R$styleable: int Slider_thumbStrokeColor -androidx.constraintlayout.widget.R$attr: int queryBackground -wangdaye.com.geometricweather.R$string: int key_card_style -com.google.android.material.R$attr: int defaultState -okhttp3.Response$Builder: void checkPriorResponse(okhttp3.Response) -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_EXISTING_UUID -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void subscribeNext() -james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMark -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_placeholder_content -wangdaye.com.geometricweather.background.receiver.widget.AbstractWidgetProvider: AbstractWidgetProvider() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_checkboxStyle -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_AES_128_CBC_SHA -okhttp3.RequestBody$1: okio.ByteString val$content -androidx.preference.R$drawable: int abc_list_selector_background_transition_holo_dark -cyanogenmod.app.Profile: boolean isDirty() -androidx.preference.R$anim: int abc_slide_in_top -io.reactivex.internal.observers.DeferredScalarDisposable: DeferredScalarDisposable(io.reactivex.Observer) -wangdaye.com.geometricweather.R$string: int abc_activitychooserview_choose_application -wangdaye.com.geometricweather.R$animator: int weather_snow_2 -com.bumptech.glide.R$attr: int fontProviderAuthority -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void headers(boolean,int,int,java.util.List) -okhttp3.internal.http1.Http1Codec$FixedLengthSink: void write(okio.Buffer,long) -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat -okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman$Node root -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean tillTheEnd -james.adaptiveicon.R$id: int activity_chooser_view_content -com.xw.repo.bubbleseekbar.R$attr: int bsb_anim_duration -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabUnboundedRipple -cyanogenmod.power.PerformanceManager: int getNumberOfProfiles() -androidx.preference.R$styleable: int RecyclerView_fastScrollEnabled -androidx.appcompat.R$id: int tabMode -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_36dp -okhttp3.OkHttpClient: java.net.Proxy proxy -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getFontThemePackageName() -wangdaye.com.geometricweather.R$attr: int clickAction -androidx.appcompat.R$style: int Base_Widget_AppCompat_EditText -com.bumptech.glide.Registry$NoImageHeaderParserException: Registry$NoImageHeaderParserException() -com.google.android.material.R$styleable: int Layout_layout_constraintCircleRadius -james.adaptiveicon.R$styleable: int AppCompatTheme_actionMenuTextColor -wangdaye.com.geometricweather.R$styleable: int ActionBar_subtitle -com.google.android.gms.common.api.AvailabilityException: com.google.android.gms.common.ConnectionResult getConnectionResult(com.google.android.gms.common.api.GoogleApi) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List weather -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date getUpdateDate() -wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours -androidx.preference.R$dimen: int disabled_alpha_material_light -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Inverse -com.turingtechnologies.materialscrollbar.R$string: int path_password_eye_mask_strike_through -androidx.lifecycle.MediatorLiveData: void onInactive() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior -cyanogenmod.weather.WeatherInfo$Builder -androidx.dynamicanimation.animation.DynamicAnimation: void removeUpdateListener(androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationUpdateListener) -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void otherError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: AtmoAuraQAResult() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onSucceed(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindDegree -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display4 -androidx.constraintlayout.widget.R$attr: int backgroundTintMode -wangdaye.com.geometricweather.R$drawable: int abc_dialog_material_background -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Line2 -com.github.rahatarmanahmed.cpv.CircularProgressView: float indeterminateRotateOffset -androidx.preference.R$styleable: int SwitchCompat_splitTrack -cyanogenmod.profiles.BrightnessSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -androidx.vectordrawable.R$integer: int status_bar_notification_info_maxnum -okio.RealBufferedSink: okio.BufferedSink emitCompleteSegments() -wangdaye.com.geometricweather.R$styleable: int[] FontFamily -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type valueOf(java.lang.String) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: java.lang.Object get() -okhttp3.internal.cache2.Relay: okhttp3.internal.cache2.Relay edit(java.io.File,okio.Source,okio.ByteString,long) -james.adaptiveicon.R$drawable: int abc_text_select_handle_right_mtrl_dark -com.jaredrummler.android.colorpicker.R$id: int action_mode_bar_stub -cyanogenmod.profiles.BrightnessSettings: boolean isOverride() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_radioButtonStyle -com.google.android.material.R$dimen: int material_cursor_width -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_titleTextStyle -okhttp3.CacheControl: boolean isPrivate -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: android.os.IBinder asBinder() -androidx.hilt.work.R$color -cyanogenmod.app.ICMStatusBarManager: void registerListener(cyanogenmod.app.ICustomTileListener,android.content.ComponentName,int) -com.google.android.material.R$style: int Theme_AppCompat_Light_NoActionBar -com.google.android.material.R$style: int Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.R$styleable: int SearchView_android_imeOptions -androidx.legacy.coreutils.R$layout: int notification_template_part_time -com.google.android.material.R$id: int confirm_button -wangdaye.com.geometricweather.R$attr: int tabStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitationProbability(java.lang.Float) -okhttp3.OkHttpClient: okhttp3.Call newCall(okhttp3.Request) -androidx.viewpager2.R$id: int accessibility_custom_action_9 -com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_normal -com.google.android.material.R$id: int material_clock_hand -okhttp3.internal.http.HttpHeaders: okhttp3.Headers varyHeaders(okhttp3.Headers,okhttp3.Headers) -james.adaptiveicon.R$attr: int windowActionModeOverlay -wangdaye.com.geometricweather.R$color: int primary_text_disabled_material_light -com.google.android.material.R$attr: int arrowShaftLength -com.google.android.material.R$color: int checkbox_themeable_attribute_color -wangdaye.com.geometricweather.R$styleable: int Transform_android_transformPivotY -okhttp3.internal.Util: boolean verifyAsIpAddress(java.lang.String) -james.adaptiveicon.R$color: int secondary_text_disabled_material_light -com.amap.api.location.DPoint: int describeContents() -okhttp3.internal.http2.Hpack: Hpack() -wangdaye.com.geometricweather.R$drawable: int shortcuts_refresh -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date setDate -james.adaptiveicon.R$bool -com.google.android.material.button.MaterialButton: void setBackgroundResource(int) -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner -com.amap.api.location.AMapLocation: java.lang.String p(com.amap.api.location.AMapLocation,java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_backgroundTint -androidx.preference.EditTextPreference$SavedState -okhttp3.internal.http2.Http2: int INITIAL_MAX_FRAME_SIZE -com.google.android.material.R$styleable: int TabLayout_tabPadding -androidx.appcompat.widget.ActivityChooserModel -io.reactivex.Observable: io.reactivex.Observable concatEager(java.lang.Iterable) -androidx.preference.R$styleable: int AppCompatImageView_tintMode -androidx.lifecycle.LifecycleRegistry$ObserverWithState -wangdaye.com.geometricweather.R$styleable: int ChipGroup_selectionRequired -androidx.viewpager2.R$id: int normal -androidx.swiperefreshlayout.R$drawable: int notification_template_icon_low_bg -com.jaredrummler.android.colorpicker.R$attr: int titleMarginEnd -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_cursor_material -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotationY -com.google.android.material.R$drawable: int abc_scrubber_primary_mtrl_alpha -androidx.drawerlayout.R$attr: int fontProviderQuery -com.baidu.location.e.o: o(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceInformationStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Determinate -wangdaye.com.geometricweather.R$id: int controller -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -androidx.customview.R$string -androidx.constraintlayout.motion.widget.MotionLayout: void setScene(androidx.constraintlayout.motion.widget.MotionScene) -androidx.appcompat.R$dimen: int abc_panel_menu_list_width -wangdaye.com.geometricweather.R$styleable: int StateListDrawableItem_android_drawable -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -androidx.viewpager.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$id: int item_card_display_sortButton -androidx.preference.R$styleable: int AppCompatTextView_lineHeight -androidx.preference.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -cyanogenmod.power.PerformanceManager: int PROFILE_BALANCED -com.turingtechnologies.materialscrollbar.DragScrollBar: float getIndicatorOffset() -androidx.constraintlayout.widget.R$id: int time -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar -androidx.appcompat.R$integer -androidx.fragment.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pm25 -okio.GzipSource: byte SECTION_HEADER -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -wangdaye.com.geometricweather.R$attr: int contentInsetLeft -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginBottom -com.github.rahatarmanahmed.cpv.CircularProgressView: void onDetachedFromWindow() -androidx.appcompat.R$attr: int lineHeight -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.functions.BiPredicate comparer -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void drainLoop() -androidx.hilt.R$drawable: int notification_bg_low_pressed -com.google.android.material.R$style: int Widget_MaterialComponents_NavigationView -com.google.android.gms.base.R$string: int common_signin_button_text -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getMoonRiseDate() -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardMaxElevation -com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Button -com.google.android.material.R$attr: int contentInsetLeft -wangdaye.com.geometricweather.R$id: int SHOW_PROGRESS -cyanogenmod.app.ThemeVersion$ComponentVersion: cyanogenmod.app.ThemeComponent component -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: long serialVersionUID -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_showDividers -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_Main -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_cardForegroundColor -com.google.android.material.R$styleable: int Toolbar_maxButtonHeight -wangdaye.com.geometricweather.R$string: int settings_title_notification -androidx.constraintlayout.widget.R$interpolator: int fast_out_slow_in -james.adaptiveicon.R$string: R$string() -com.google.android.material.R$style: int TextAppearance_Design_Counter_Overflow -com.jaredrummler.android.colorpicker.R$drawable: int tooltip_frame_dark -androidx.fragment.R$id: int time -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void dispose() -com.baidu.location.indoor.mapversion.c.a$d: java.lang.String b -com.bumptech.glide.R$color -wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_alphaChannelText -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: long idx -okio.AsyncTimeout: long timeoutAt -retrofit2.Utils: int indexOf(java.lang.Object[],java.lang.Object) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: ObservableFlatMapCompletable$FlatMapCompletableMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -wangdaye.com.geometricweather.R$id: int chip2 -androidx.cardview.R$styleable: int CardView_cardPreventCornerOverlap -wangdaye.com.geometricweather.R$attr: int minWidth -com.google.android.material.R$attr: int firstBaselineToTopHeight -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String defenseText -android.didikee.donate.R$color: int abc_primary_text_material_dark -androidx.swiperefreshlayout.R$id: int line1 -androidx.preference.R$id: int action_bar_subtitle -retrofit2.ParameterHandler$Tag -wangdaye.com.geometricweather.R$drawable: int ic_drag -com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_circle -androidx.hilt.work.R$id: int accessibility_custom_action_1 -androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_toId -com.turingtechnologies.materialscrollbar.R$attr: int tabPadding -com.turingtechnologies.materialscrollbar.R$attr: int dialogCornerRadius -com.google.android.material.R$styleable: int MaterialButton_icon -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActivityChooserView -com.google.android.material.R$attr: int alertDialogButtonGroupStyle -okhttp3.internal.http2.Http2Connection: long access$608(okhttp3.internal.http2.Http2Connection) -okhttp3.internal.http2.Settings: int MAX_CONCURRENT_STREAMS -james.adaptiveicon.R$styleable: int Toolbar_contentInsetRight -androidx.appcompat.R$attr: int indeterminateProgressStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean) -androidx.constraintlayout.widget.R$drawable: int abc_list_divider_material -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_count -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadMessage(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_handleOffColor -androidx.preference.R$styleable: int PreferenceImageView_maxHeight -androidx.coordinatorlayout.R$styleable: int GradientColor_android_startX -android.didikee.donate.R$id: int activity_chooser_view_content -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginStart -james.adaptiveicon.R$styleable: int AppCompatTheme_homeAsUpIndicator -androidx.activity.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.R$attr: int msb_handleOffColor -wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat_Dark -retrofit2.Utils$WildcardTypeImpl -wangdaye.com.geometricweather.R$id: int gridView -androidx.coordinatorlayout.R$id: int accessibility_custom_action_0 -james.adaptiveicon.R$attr: int windowMinWidthMajor -com.google.android.material.R$styleable: int Constraint_android_rotationX -wangdaye.com.geometricweather.R$string: int humidity -androidx.appcompat.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -com.turingtechnologies.materialscrollbar.R$integer: int cancel_button_image_alpha -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String escapedAV() -android.didikee.donate.R$attr: int actionBarTabStyle -com.jaredrummler.android.colorpicker.R$id: int item_touch_helper_previous_elevation -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_20 -com.google.android.material.R$styleable: int Chip_chipIconSize -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_black -com.bumptech.glide.integration.okhttp.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: java.util.List DailyForecasts -com.google.android.material.R$color: int material_deep_teal_500 -wangdaye.com.geometricweather.R$styleable: int Motion_pathMotionArc -android.didikee.donate.R$styleable: int ActionMode_height -james.adaptiveicon.R$attr: int textAppearanceListItemSmall -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastHorizontalStyle -wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_orientation -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: int UnitType -wangdaye.com.geometricweather.R$attr: int cardUseCompatPadding -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7 -com.turingtechnologies.materialscrollbar.R$attr: int backgroundStacked -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_logo -com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_800 -com.turingtechnologies.materialscrollbar.R$id: int italic -android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$id: int activity_weather_daily_subtitle -com.google.android.material.button.MaterialButtonToggleGroup: void addOnButtonCheckedListener(com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener) -com.google.android.material.R$styleable: int GradientColorItem_android_offset -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -androidx.preference.R$id: int off -com.google.android.material.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_toRightOf -com.google.android.material.R$string: int mtrl_picker_range_header_unselected -androidx.hilt.work.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Linear -android.didikee.donate.R$styleable: int AppCompatTheme_dividerHorizontal -cyanogenmod.weather.RequestInfo: int access$602(cyanogenmod.weather.RequestInfo,int) -androidx.vectordrawable.R$drawable: int notification_bg_normal -androidx.transition.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit H -com.google.android.material.R$id: int accessibility_custom_action_31 -com.google.android.material.R$attr: int snackbarStyle -androidx.preference.R$styleable: int DialogPreference_negativeButtonText -com.google.android.material.R$id: int accessibility_custom_action_23 -androidx.work.R$attr: int fontVariationSettings -okhttp3.internal.http2.Http2Connection: void writePing(boolean,int,int) -androidx.transition.R$styleable: int FontFamilyFont_android_fontStyle -androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$styleable: int ActionBar_background -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getDailyForecast() -okhttp3.internal.http.UnrepeatableRequestBody -cyanogenmod.hardware.ICMHardwareService: boolean requireAdaptiveBacklightForSunlightEnhancement() -androidx.vectordrawable.R$dimen: int notification_top_pad -okhttp3.RealCall$AsyncCall: boolean $assertionsDisabled -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: javax.net.ssl.X509TrustManager trustManager -androidx.constraintlayout.widget.R$styleable: int[] KeyTrigger -com.google.android.gms.base.R$styleable: int SignInButton_scopeUris -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_disabled_material_dark -android.didikee.donate.R$attr: int windowFixedWidthMinor -com.google.android.material.R$styleable: int Layout_layout_constraintGuide_begin -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$attr: int alpha -androidx.fragment.R$styleable: int FontFamilyFont_android_fontStyle -com.google.android.material.card.MaterialCardView: void setCheckable(boolean) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer stormHazard -okhttp3.Cache$CacheRequestImpl$1: okhttp3.Cache val$this$0 -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Colored -okhttp3.internal.http2.Http2Reader: void readPushPromise(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -cyanogenmod.weather.WeatherLocation$1: cyanogenmod.weather.WeatherLocation createFromParcel(android.os.Parcel) -com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabStyle -androidx.constraintlayout.widget.R$styleable: int Spinner_popupTheme -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getTemperatureText(android.content.Context,int) -androidx.preference.R$styleable: int AppCompatTheme_checkedTextViewStyle -okio.Buffer: okio.Buffer write(byte[]) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Large -androidx.hilt.lifecycle.R$string: int status_bar_notification_info_overflow -james.adaptiveicon.R$styleable: int MenuView_subMenuArrow -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_LIVE_LOCK_SCREEN -androidx.recyclerview.R$styleable -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum() -wangdaye.com.geometricweather.R$styleable: int Chip_chipMinHeight -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Body2 -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light -com.amap.api.location.AMapLocationClientOption -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getTotalPrecipitationProbability() -androidx.hilt.lifecycle.R$id: int notification_main_column -android.didikee.donate.R$styleable: int MenuItem_android_title -james.adaptiveicon.R$attr: int isLightTheme -wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_night_foreground -retrofit2.ParameterHandler$RelativeUrl: ParameterHandler$RelativeUrl(java.lang.reflect.Method,int) -androidx.viewpager2.R$attr: int fontStyle -androidx.preference.R$color: int secondary_text_default_material_dark -androidx.appcompat.widget.Toolbar: void setSubtitleTextColor(android.content.res.ColorStateList) -com.jaredrummler.android.colorpicker.R$dimen: int compat_notification_large_icon_max_width -cyanogenmod.providers.CMSettings$Secure: java.lang.String POWER_MENU_ACTIONS -wangdaye.com.geometricweather.R$styleable: int PropertySet_visibilityMode -retrofit2.BuiltInConverters$BufferingResponseBodyConverter: java.lang.Object convert(java.lang.Object) -com.google.android.material.tabs.TabLayout$TabView: void setTab(com.google.android.material.tabs.TabLayout$Tab) -com.bumptech.glide.load.HttpException: HttpException(java.lang.String,int) -androidx.lifecycle.extensions.R$layout: int notification_template_icon_group -io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable NEVER -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_ttcIndex -androidx.fragment.R$attr: int fontProviderAuthority -androidx.appcompat.app.AppCompatActivity -wangdaye.com.geometricweather.R$string: int settings_title_distance_unit -james.adaptiveicon.R$styleable: int ViewBackgroundHelper_android_background -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getBackgroundDrawable() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_START_VOLUME_VALIDATOR -wangdaye.com.geometricweather.R$dimen: int abc_text_size_small_material -androidx.appcompat.R$attr: int actionDropDownStyle -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Small -cyanogenmod.app.CustomTile$Builder: int mIcon -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getGrassDescription() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf -com.jaredrummler.android.colorpicker.R$styleable: int Preference_title -com.google.android.material.R$animator: int mtrl_extended_fab_show_motion_spec -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void setCancellable(io.reactivex.functions.Cancellable) -com.turingtechnologies.materialscrollbar.R$attr: int closeIconSize -com.google.android.material.R$dimen: int abc_switch_padding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: java.util.List getBrands() -retrofit2.http.FieldMap -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_subhead_material -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void cancel(io.reactivex.internal.queue.SpscLinkedArrayQueue,io.reactivex.internal.queue.SpscLinkedArrayQueue) -androidx.viewpager.widget.ViewPager: void setScrollState(int) -cyanogenmod.weather.WeatherInfo$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.lifecycle.SavedStateHandle -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_switchTextOn -androidx.lifecycle.LifecycleDispatcher: void init(android.content.Context) -com.google.android.material.R$style: int Widget_Design_TextInputLayout -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context) -wangdaye.com.geometricweather.R$id: int activity_alert_toolbar -wangdaye.com.geometricweather.R$color: int mtrl_btn_text_btn_ripple_color -androidx.appcompat.R$styleable: int AlertDialog_android_layout -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: long timeout -androidx.appcompat.R$drawable: int abc_ic_search_api_material -androidx.hilt.R$id: int text -cyanogenmod.app.Profile$ExpandedDesktopMode: int DISABLE -cyanogenmod.app.Profile: void setRingMode(cyanogenmod.profiles.RingModeSettings) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_17 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_DropDown -okhttp3.internal.ws.WebSocketWriter: boolean isClient -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: int mConditionCode -com.bumptech.glide.MemoryCategory -okio.SegmentedByteString: java.nio.ByteBuffer asByteBuffer() -androidx.work.impl.utils.futures.AbstractFuture$Failure$1: java.lang.Throwable fillInStackTrace() -com.turingtechnologies.materialscrollbar.R$attr: int alertDialogStyle -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_exitFadeDuration -com.google.android.material.R$styleable: int MenuGroup_android_menuCategory -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -com.bumptech.glide.R$color: int notification_action_color_filter -androidx.constraintlayout.widget.ConstraintHelper: void setReferencedIds(int[]) -androidx.work.WorkerParameters -wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_weight -io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent[] values() -androidx.fragment.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_79 -com.amap.api.fence.PoiItem: void setLongitude(double) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed Speed -com.jaredrummler.android.colorpicker.R$color: int dim_foreground_disabled_material_dark -androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context) -com.jaredrummler.android.colorpicker.R$style: int Preference_SeekBarPreference -wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_alpha -james.adaptiveicon.R$id: int chronometer -com.google.android.material.textfield.TextInputLayout: void setStartIconVisible(boolean) -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum() -android.support.v4.os.ResultReceiver$MyResultReceiver -cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.ICMStatusBarManager sService -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderToggleButton -androidx.customview.R$styleable: int GradientColor_android_endX -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void complete() -okhttp3.OkHttpClient$Builder: java.net.Proxy proxy -com.google.android.material.R$integer: int config_tooltipAnimTime -androidx.activity.R$id: int accessibility_custom_action_17 -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_default -com.jaredrummler.android.colorpicker.R$style: int Platform_V25_AppCompat -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SearchView -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_cut_mtrl_alpha -wangdaye.com.geometricweather.db.entities.DailyEntity: void setAqiText(java.lang.String) -okhttp3.OkHttpClient$Builder: okhttp3.CookieJar cookieJar -com.google.android.material.R$dimen: int mtrl_high_ripple_focused_alpha -retrofit2.RequestFactory$Builder: java.lang.String PARAM -androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SERBIAN -wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -wangdaye.com.geometricweather.R$color: int mtrl_chip_close_icon_tint -androidx.constraintlayout.widget.R$color: int highlighted_text_material_light -androidx.constraintlayout.widget.R$dimen: int notification_content_margin_start -okhttp3.internal.ws.RealWebSocket: long MAX_QUEUE_SIZE -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_outline_box_expanded_padding -androidx.appcompat.R$attr: int dropDownListViewStyle -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float total -androidx.activity.R$styleable: int FontFamilyFont_android_font -okhttp3.internal.cache.CacheInterceptor$1: long read(okio.Buffer,long) -wangdaye.com.geometricweather.R$styleable: int[] AppCompatTheme -androidx.preference.R$id: int decor_content_parent -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_grey -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_statusBarBackground -com.google.android.material.R$attr: int thickness -wangdaye.com.geometricweather.R$attr: int tooltipFrameBackground -androidx.coordinatorlayout.R$integer -wangdaye.com.geometricweather.R$attr: int chainUseRtl -androidx.constraintlayout.widget.R$attr: int transitionPathRotate -retrofit2.RequestFactory$Builder: java.util.Set relativeUrlParamNames -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.settings.dialogs.AnimatableIconDialog -android.didikee.donate.R$styleable: int MenuView_android_horizontalDivider -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg -com.bumptech.glide.request.RequestCoordinator$RequestState: boolean isComplete -androidx.appcompat.R$attr: int paddingStart -com.google.android.material.slider.Slider: void setTrackHeight(int) -wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_icon_width -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontVariationSettings -com.google.android.gms.common.internal.zas: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_creator -cyanogenmod.externalviews.KeyguardExternalView: void onLockscreenSlideOffsetChanged(float) -okhttp3.CertificatePinner: java.util.List findMatchingPins(java.lang.String) -androidx.coordinatorlayout.R$dimen: int compat_notification_large_icon_max_height -androidx.appcompat.R$styleable: int MenuItem_android_orderInCategory -okhttp3.Cache$CacheResponseBody$1: Cache$CacheResponseBody$1(okhttp3.Cache$CacheResponseBody,okio.Source,okhttp3.internal.cache.DiskLruCache$Snapshot) -com.google.android.material.R$layout: int mtrl_picker_text_input_date -okhttp3.CacheControl$Builder: CacheControl$Builder() -android.didikee.donate.R$anim: int abc_slide_out_bottom -james.adaptiveicon.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -androidx.appcompat.R$layout: int abc_popup_menu_item_layout -com.google.android.material.R$attr: int altSrc -com.google.android.material.R$color: int design_default_color_error -androidx.appcompat.R$anim: int abc_fade_out -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -cyanogenmod.app.ProfileGroup: int mNameResId -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX indices -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onComplete() -com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_normal -com.turingtechnologies.materialscrollbar.R$string: int hide_bottom_view_on_scroll_behavior -com.google.android.material.bottomnavigation.BottomNavigationView: int getItemBackgroundResource() -androidx.hilt.R$id: int blocking -cyanogenmod.profiles.ConnectionSettings$1: ConnectionSettings$1() -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge -androidx.fragment.R$drawable: int notify_panel_notification_icon_bg -com.turingtechnologies.materialscrollbar.R$attr: int dialogTheme -androidx.appcompat.widget.SwitchCompat: java.lang.CharSequence getTextOn() -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -androidx.preference.R$dimen: int abc_dialog_min_width_minor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility -com.jaredrummler.android.colorpicker.R$attr: int switchPadding -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -androidx.fragment.R$dimen: int notification_large_icon_width -androidx.hilt.R$styleable: int FontFamilyFont_android_fontVariationSettings -android.didikee.donate.R$styleable: int Toolbar_contentInsetEnd -androidx.constraintlayout.widget.R$layout: int notification_template_icon_group -androidx.recyclerview.R$styleable: int RecyclerView_android_orientation -com.google.android.material.card.MaterialCardView: void setProgress(float) -com.google.android.material.R$attr: int contentInsetRight -androidx.preference.R$style: int PreferenceThemeOverlay -wangdaye.com.geometricweather.R$id: int month_navigation_bar -com.bumptech.glide.integration.okhttp.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$layout: int abc_action_mode_bar -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int requestFusion(int) -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_padding_material -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onKeyguardShowing(boolean) -androidx.lifecycle.ViewModelStores -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -com.jaredrummler.android.colorpicker.R$string: int abc_activitychooserview_choose_application -android.didikee.donate.R$dimen: int notification_big_circle_margin -androidx.lifecycle.EmptyActivityLifecycleCallbacks -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onComplete() -androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_material -com.google.gson.stream.JsonReader: int NUMBER_CHAR_DIGIT -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_BRIGHTNESS_CONTROL_VALIDATOR -android.didikee.donate.R$style: int TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: int status -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableStartCompat -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean done -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver parent -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String EnglishType -james.adaptiveicon.R$style: int Theme_AppCompat_Dialog_MinWidth -com.google.android.material.R$styleable: int[] KeyTimeCycle -androidx.preference.R$styleable: int Preference_android_summary -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_17 -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_persistent -cyanogenmod.weather.WeatherInfo: android.os.Parcelable$Creator CREATOR -androidx.appcompat.R$layout: int notification_action_tombstone -com.jaredrummler.android.colorpicker.R$style: int Base_V22_Theme_AppCompat -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItemSmall -androidx.preference.R$attr: int switchTextOff -com.google.android.material.R$styleable: int MenuItem_tooltipText -okhttp3.internal.http.HttpDate$1: HttpDate$1() -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void clear() -retrofit2.adapter.rxjava2.ResultObservable: ResultObservable(io.reactivex.Observable) -com.bumptech.glide.Priority: com.bumptech.glide.Priority NORMAL -com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException: RecyclableBufferedInputStream$InvalidMarkException(java.lang.String) -androidx.viewpager2.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginBottom -james.adaptiveicon.R$string: int abc_action_bar_up_description -com.google.android.material.bottomappbar.BottomAppBar: void setFabAlignmentMode(int) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderTextColor -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_y_offset_non_touch -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode valueOf(java.lang.String) -com.google.android.material.circularreveal.CircularRevealGridLayout: int getCircularRevealScrimColor() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -com.google.android.material.R$attr: int perpendicularPath_percent -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_default_mtrl_shape -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onLockscreenSlideOffsetChanged(float) -wangdaye.com.geometricweather.R$anim: int popup_show_top_right -android.didikee.donate.R$color: int abc_tint_edittext -androidx.swiperefreshlayout.R$id: int action_divider -com.turingtechnologies.materialscrollbar.R$id: int touch_outside -wangdaye.com.geometricweather.R$anim: int design_snackbar_out -james.adaptiveicon.R$styleable: int AppCompatTheme_imageButtonStyle -com.google.android.material.R$id: int topPanel -com.google.android.material.R$attr: int percentWidth -com.google.android.material.R$dimen: int abc_floating_window_z -com.google.android.material.R$drawable: int abc_ratingbar_material -androidx.preference.R$styleable: int AlertDialog_listItemLayout -com.xw.repo.bubbleseekbar.R$color: int primary_material_dark -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_voice_search_api_material -com.google.android.material.R$styleable: int CardView_cardPreventCornerOverlap -wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardTitle -okio.Buffer: okio.Buffer readFrom(java.io.InputStream,long) -james.adaptiveicon.R$dimen: int abc_dialog_padding_top_material -com.google.android.material.R$layout: int mtrl_alert_select_dialog_multichoice -android.didikee.donate.R$attr: int listMenuViewStyle -androidx.appcompat.widget.AppCompatRadioButton: android.content.res.ColorStateList getSupportButtonTintList() -androidx.hilt.lifecycle.R$dimen: int notification_content_margin_start -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$array: int pollen_units -io.reactivex.internal.subscriptions.EmptySubscription: void complete(org.reactivestreams.Subscriber) -cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup[] getProfileGroups() -com.google.android.material.R$dimen: int abc_text_size_menu_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setStatus(int) -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setHumidity(double) -com.google.android.material.R$styleable: int AppCompatTheme_alertDialogTheme -androidx.loader.R$styleable: int FontFamily_fontProviderCerts -android.didikee.donate.R$style: int Base_Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_elevation -wangdaye.com.geometricweather.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.R$id: int backBtn -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_maxWidth -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_trackTint -wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Bottom_Right -androidx.constraintlayout.widget.R$attr: int textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -androidx.preference.R$anim: int abc_tooltip_exit -com.bumptech.glide.integration.okhttp.R$attr: int layout_anchor -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.lang.String getPubTime() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitationDuration(java.lang.Float) -james.adaptiveicon.R$id: int none -androidx.viewpager2.R$id: int tag_unhandled_key_event_manager -cyanogenmod.app.ICMStatusBarManager$Stub: ICMStatusBarManager$Stub() -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -androidx.hilt.R$anim: int fragment_fade_enter -androidx.constraintlayout.motion.widget.MotionLayout: void setOnShow(float) -androidx.core.R$id: int accessibility_custom_action_9 -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: void onResponse(retrofit2.Call,retrofit2.Response) -androidx.constraintlayout.widget.R$attr: int path_percent -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType UpdateInTxIterable -com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom -androidx.preference.R$attr: int autoSizeStepGranularity -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_64 -android.support.v4.app.INotificationSideChannel$Stub$Proxy: INotificationSideChannel$Stub$Proxy(android.os.IBinder) -androidx.constraintlayout.widget.R$drawable: int abc_cab_background_top_material -cyanogenmod.providers.DataUsageContract: java.lang.String UID -wangdaye.com.geometricweather.R$layout: int notification_big -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_disabled_translation_z -io.reactivex.Observable: io.reactivex.Observable concatArrayEagerDelayError(io.reactivex.ObservableSource[]) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign -cyanogenmod.profiles.LockSettings$1: java.lang.Object[] newArray(int) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver -com.google.android.material.R$attr: int popupMenuStyle -retrofit2.Utils: java.lang.Class declaringClassOf(java.lang.reflect.TypeVariable) -androidx.lifecycle.extensions.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Top_Right -wangdaye.com.geometricweather.R$string: int abc_action_bar_home_description -com.jaredrummler.android.colorpicker.R$string: int abc_activity_chooser_view_see_all -android.didikee.donate.R$integer -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.R$attr: int keylines -android.didikee.donate.R$id: int none -androidx.appcompat.R$style: int Theme_AppCompat_Empty -androidx.appcompat.widget.SwitchCompat: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -wangdaye.com.geometricweather.R$integer: int cpv_default_anim_swoop_duration -com.amap.api.fence.PoiItem: java.lang.String c -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_DayTextView -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: ObservableTimeout$TimeoutObserver(io.reactivex.Observer,io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$attr: int brightness -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onError(java.lang.Throwable) -com.google.android.material.R$integer: int design_snackbar_text_max_lines -com.google.android.material.R$styleable: int MaterialTextAppearance_android_letterSpacing -com.amap.api.location.AMapLocationClient: AMapLocationClient(android.content.Context,android.content.Intent) -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getTag() -com.turingtechnologies.materialscrollbar.R$styleable: int[] StateListDrawableItem -com.bumptech.glide.Registry$MissingComponentException: Registry$MissingComponentException(java.lang.String) -wangdaye.com.geometricweather.R$array: int air_quality_co_unit_voices -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String getFrom() -com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreferenceCompat_Material -android.didikee.donate.R$attr: int trackTint -androidx.appcompat.R$color: int abc_background_cache_hint_selector_material_dark -wangdaye.com.geometricweather.R$string: int settings_title_precipitation_unit -androidx.preference.internal.PreferenceImageView: void setMaxHeight(int) -wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_android_color -com.google.gson.internal.LinkedTreeMap: void clear() -cyanogenmod.providers.DataUsageContract: DataUsageContract() -com.google.android.material.R$drawable: int abc_btn_radio_to_on_mtrl_000 -com.jaredrummler.android.colorpicker.R$drawable: int cpv_alpha -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_extendMotionSpec -com.amap.api.fence.PoiItem: android.os.Parcelable$Creator getCreator() -okio.Buffer: long writeAll(okio.Source) -cyanogenmod.weather.WeatherInfo$Builder: boolean isValidWindSpeedUnit(int) -com.google.android.material.R$attr: int isMaterialTheme -com.google.android.material.R$styleable: int LinearLayoutCompat_dividerPadding -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItem -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy valueOf(java.lang.String) -androidx.lifecycle.extensions.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer apparentTemperature -wangdaye.com.geometricweather.db.entities.DailyEntity: int nighttimeTemperature -androidx.hilt.lifecycle.R$styleable: int[] FontFamilyFont -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,long,java.util.concurrent.TimeUnit) -androidx.constraintlayout.widget.R$id: int search_go_btn -cyanogenmod.media.MediaRecorder: java.lang.String EXTRA_CURRENT_PACKAGE_NAME -android.didikee.donate.R$styleable: int AppCompatTheme_listDividerAlertDialog -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon Moon -com.google.android.material.R$id: int notification_main_column_container -okhttp3.internal.http2.Http2Connection$4: Http2Connection$4(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,java.util.List) -io.reactivex.observers.DisposableObserver: DisposableObserver() -wangdaye.com.geometricweather.R$dimen: int disabled_alpha_material_light -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,io.reactivex.Scheduler) -com.turingtechnologies.materialscrollbar.R$attr: int closeIconTint -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HourlyEntityDao hourlyEntityDao -androidx.constraintlayout.widget.R$id: int position -androidx.constraintlayout.widget.R$bool: int abc_action_bar_embed_tabs -androidx.recyclerview.R$string: int status_bar_notification_info_overflow -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -com.google.android.material.R$dimen: int abc_text_size_large_material -wangdaye.com.geometricweather.R$attr: int contentInsetStart -androidx.preference.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -com.google.android.material.appbar.AppBarLayout$Behavior -androidx.hilt.R$styleable: int FontFamilyFont_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable -wangdaye.com.geometricweather.R$style: int Platform_V25_AppCompat -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_fabCustomSize -com.google.android.material.R$attr: int layout_goneMarginBottom -wangdaye.com.geometricweather.R$integer: int cpv_default_max_progress -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_icon_vertical_padding_material -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat -okhttp3.Cache: int writeAbortCount -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf -androidx.lifecycle.Lifecycling: androidx.lifecycle.GeneratedAdapter createGeneratedAdapter(java.lang.reflect.Constructor,java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_percent -com.turingtechnologies.materialscrollbar.R$id: int lastElement -androidx.appcompat.R$styleable: int ActionBar_contentInsetStartWithNavigation -com.google.android.material.R$attr: int colorAccent -james.adaptiveicon.R$styleable: int[] SearchView -io.reactivex.Observable: io.reactivex.Observable groupJoin(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onError(java.lang.Throwable) -androidx.customview.R$attr: int fontProviderQuery -androidx.viewpager.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.R$styleable: int MaterialButton_shapeAppearanceOverlay -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isIsShow() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Chip -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_5 -okio.Buffer$UnsafeCursor: boolean readWrite -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleContainer -android.didikee.donate.R$id: int contentPanel -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedHeightMajor -retrofit2.adapter.rxjava2.Result: boolean isError() -com.turingtechnologies.materialscrollbar.R$attr: int progressBarStyle -okhttp3.MultipartBody$Part: MultipartBody$Part(okhttp3.Headers,okhttp3.RequestBody) -com.google.android.material.tabs.TabLayout: void removeOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) -retrofit2.ParameterHandler$HeaderMap: java.lang.reflect.Method method -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter this$0 -android.didikee.donate.R$string: int abc_search_hint -com.amap.api.location.AMapLocationClientOption: boolean isLocationCacheEnable() -wangdaye.com.geometricweather.background.receiver.widget.WidgetTextProvider: WidgetTextProvider() -com.jaredrummler.android.colorpicker.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$styleable: int[] LoadingImageView -cyanogenmod.weather.WeatherInfo$Builder: double mTodaysLowTemp -com.turingtechnologies.materialscrollbar.R$styleable: int[] CollapsingToolbarLayout_Layout -io.reactivex.Observable: io.reactivex.Observable debounce(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$drawable: int notif_temp_94 -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemOnClickIntent(android.app.PendingIntent) -okhttp3.Cookie: java.lang.String parseDomain(java.lang.String) -wangdaye.com.geometricweather.R$string: int action_search -okhttp3.internal.http2.Hpack: int PREFIX_4_BITS -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_height -cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_PROVIDER -androidx.constraintlayout.widget.R$attr: int flow_verticalStyle -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: int hashCode() -com.xw.repo.bubbleseekbar.R$id: int action_bar -androidx.work.R$layout: int notification_action_tombstone -androidx.appcompat.R$styleable: int SearchView_submitBackground -androidx.transition.R$dimen: int compat_notification_large_icon_max_width -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void removeCustomTileFromListener(cyanogenmod.app.ICustomTileListener,java.lang.String,java.lang.String,int) -wangdaye.com.geometricweather.R$id: int navigation_header_container -com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableTransition -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: android.graphics.Rect getWindowInsets() -okio.RealBufferedSink: okio.BufferedSink writeInt(int) -com.baidu.location.e.l$b: int c(com.baidu.location.e.l$b) -androidx.constraintlayout.widget.R$styleable: int ActionBar_title -wangdaye.com.geometricweather.background.polling.permanent.observer.TimeObserverService: TimeObserverService() -wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentX -androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.google.android.material.R$dimen: int tooltip_vertical_padding -androidx.appcompat.resources.R$id: int line3 -wangdaye.com.geometricweather.R$string: int feedback_clock_font -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextAppearanceInactive -cyanogenmod.hardware.CMHardwareManager: boolean writePersistentBytes(java.lang.String,byte[]) -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.internal.operators.observable.ObservableZip$ZipObserver[] observers -com.turingtechnologies.materialscrollbar.R$dimen: R$dimen() -cyanogenmod.weather.WeatherInfo: double mWindSpeed -androidx.constraintlayout.widget.R$attr: int lineHeight -okhttp3.TlsVersion: java.lang.String javaName -org.greenrobot.greendao.AbstractDaoSession: void refresh(java.lang.Object) -com.google.android.material.textfield.TextInputLayout: int getErrorCurrentTextColors() -androidx.appcompat.widget.FitWindowsLinearLayout -androidx.appcompat.resources.R$id: int accessibility_custom_action_9 -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedWidthMajor() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_overflow_material -com.google.android.material.R$attr: int backgroundInsetStart -androidx.constraintlayout.widget.R$styleable: int ActionMenuItemView_android_minWidth -android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -androidx.lifecycle.ProcessLifecycleOwner$3$1: ProcessLifecycleOwner$3$1(androidx.lifecycle.ProcessLifecycleOwner$3) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_arrow_drop_right_black_24dp -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: long maxAge -com.jaredrummler.android.colorpicker.R$attr: int autoSizeTextType -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: float unitFactor -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState valueOf(java.lang.String) -androidx.hilt.R$styleable: int FontFamily_fontProviderCerts -androidx.preference.R$attr: int backgroundTintMode -androidx.appcompat.R$styleable: int ViewBackgroundHelper_backgroundTintMode -androidx.constraintlayout.widget.R$layout: int abc_activity_chooser_view_list_item -androidx.appcompat.widget.AppCompatTextView -com.google.android.material.R$attr: int subtitleTextAppearance -wangdaye.com.geometricweather.R$attr: int closeIconTint -com.google.android.material.R$attr: int cornerFamilyTopLeft -okio.SegmentedByteString: okio.ByteString toByteString() -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean daylight -cyanogenmod.app.Profile$ProfileTrigger: int mType -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorCornerRadius -androidx.appcompat.widget.AppCompatButton: android.content.res.ColorStateList getSupportBackgroundTintList() -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Alert_Bridge -com.google.android.material.R$styleable: int View_paddingStart -james.adaptiveicon.R$bool: int abc_action_bar_embed_tabs -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent WALLPAPER -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String getProviderName(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintEnd_toStartOf -com.baidu.location.indoor.mapversion.c.a$d -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerError(java.lang.Throwable) -wangdaye.com.geometricweather.R$dimen: int material_emphasis_high_type -wangdaye.com.geometricweather.R$array: int week_widget_style_values -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService -james.adaptiveicon.R$styleable: int SearchView_queryBackground -android.didikee.donate.R$dimen: int abc_alert_dialog_button_bar_height -wangdaye.com.geometricweather.R$drawable: int ic_precipitation -androidx.core.R$styleable: int FontFamilyFont_android_fontVariationSettings -cyanogenmod.app.ProfileGroup: void setRingerOverride(android.net.Uri) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -okio.ByteString: java.lang.String base64Url() -androidx.vectordrawable.animated.R$color: int secondary_text_default_material_light -james.adaptiveicon.R$attr: int tooltipFrameBackground -wangdaye.com.geometricweather.R$font: int product_sans_thin_italic -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -androidx.hilt.work.R$id: int accessibility_custom_action_7 -androidx.appcompat.R$styleable: int AppCompatTheme_panelBackground -com.google.android.material.R$string: int bottom_sheet_behavior -okio.Timeout$1: okio.Timeout deadlineNanoTime(long) -androidx.hilt.work.R$drawable -wangdaye.com.geometricweather.R$styleable: int Preference_android_order -androidx.constraintlayout.widget.ConstraintLayout: void setId(int) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SearchView -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_liftable -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: double lon -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_imeOptions -com.google.android.material.appbar.AppBarLayout$BaseBehavior$SavedState: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onComplete() -com.bumptech.glide.GeneratedAppGlideModule -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getResidentPosition() -androidx.vectordrawable.R$dimen: int notification_small_icon_background_padding -com.amap.api.location.UmidtokenInfo: UmidtokenInfo() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf -wangdaye.com.geometricweather.R$anim: R$anim() -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: void setAlpha(float) -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose getLocationPurpose() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator MENU_WAKE_SCREENN_VALIDATOR -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_titleTextStyle -androidx.appcompat.R$attr: int windowFixedHeightMajor -wangdaye.com.geometricweather.R$attr: int actionBarSplitStyle -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_Alert -androidx.core.R$string: int status_bar_notification_info_overflow -okhttp3.HttpUrl: java.lang.String username() -wangdaye.com.geometricweather.R$color: int bright_foreground_disabled_material_light -androidx.viewpager2.R$id: int accessibility_custom_action_29 -com.turingtechnologies.materialscrollbar.R$dimen: int notification_main_column_padding_top -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTime(long) -wangdaye.com.geometricweather.R$id: int startVertical -com.amap.api.fence.GeoFenceClient: boolean removeGeoFence(com.amap.api.fence.GeoFence) -androidx.appcompat.resources.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.R$style: int CardView -androidx.appcompat.R$styleable: int SwitchCompat_thumbTint -retrofit2.Utils: okhttp3.ResponseBody buffer(okhttp3.ResponseBody) -cyanogenmod.app.BaseLiveLockManagerService$1: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -androidx.hilt.work.R$string: R$string() -androidx.viewpager2.R$id: int icon -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitation -james.adaptiveicon.R$layout: int abc_action_menu_item_layout -okio.BufferedSink: okio.BufferedSink writeShortLe(int) -wangdaye.com.geometricweather.R$styleable: int MotionLayout_motionDebug -com.turingtechnologies.materialscrollbar.R$drawable: int indicator_ltr -cyanogenmod.profiles.ConnectionSettings$BooleanState: int STATE_ENABLED -androidx.appcompat.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_edittext -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: boolean isDisposed() -cyanogenmod.alarmclock.ClockContract$InstancesColumns -okhttp3.internal.http.RealInterceptorChain: okhttp3.Response proceed(okhttp3.Request) -wangdaye.com.geometricweather.common.basic.models.weather.Weather: void setYesterday(wangdaye.com.geometricweather.common.basic.models.weather.History) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvIndex(java.lang.Integer) -wangdaye.com.geometricweather.R$styleable: int Constraint_pivotAnchor -io.reactivex.Observable: io.reactivex.Observable retry(long) -androidx.constraintlayout.widget.R$integer: R$integer() -wangdaye.com.geometricweather.R$dimen: int default_drawer_width -okhttp3.internal.platform.Platform: int INFO -androidx.viewpager2.R$attr: int fontProviderCerts -androidx.preference.ExpandButton -com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_layout -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicInteger windows -androidx.coordinatorlayout.R$dimen: int notification_content_margin_start -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_orderingFromXml -androidx.appcompat.R$styleable: int[] AppCompatTextHelper -androidx.lifecycle.SavedStateHandleController: boolean isAttached() -android.didikee.donate.R$color: int foreground_material_light -retrofit2.ParameterHandler$Field -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: void run() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_menuCategory -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarWidgetTheme -androidx.fragment.R$dimen: int notification_large_icon_height -james.adaptiveicon.R$styleable: int MenuView_android_headerBackground -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low -com.google.android.material.R$attr: int checkedIconSize -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_NoActionBar -wangdaye.com.geometricweather.R$attr: int showDividers -okhttp3.RequestBody$3: long contentLength() -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low_normal -cyanogenmod.providers.CMSettings$Global: java.lang.String WAKE_WHEN_PLUGGED_OR_UNPLUGGED -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingTop -androidx.viewpager.R$drawable: int notification_action_background -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_0 -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean isDisposed() -com.google.android.material.R$styleable: int TextInputLayout_placeholderTextColor -com.google.android.material.R$attr: int layout_constraintRight_toLeftOf -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_GCM_SHA256 -wangdaye.com.geometricweather.R$string: int wechat -androidx.transition.R$integer -androidx.preference.R$styleable: int Preference_android_order -androidx.drawerlayout.R$styleable: int[] GradientColorItem -com.amap.api.location.AMapLocation: void setErrorInfo(java.lang.String) -androidx.preference.R$layout: int abc_action_mode_close_item_material -androidx.appcompat.widget.SearchView: int getImeOptions() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_toolbar_default_height -android.support.v4.app.INotificationSideChannel$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.google.android.material.checkbox.MaterialCheckBox: android.content.res.ColorStateList getMaterialThemeColorsTintList() -androidx.preference.R$styleable: int[] RecyclerView -com.google.android.material.R$styleable: int Constraint_flow_verticalAlign -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onDetach() -com.bumptech.glide.load.HttpException: int UNKNOWN -androidx.preference.R$drawable: int notification_bg_low_normal -com.google.android.material.R$anim: int abc_slide_in_top -cyanogenmod.app.LiveLockScreenInfo: int describeContents() -androidx.constraintlayout.widget.R$id: int easeInOut -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,int) -com.google.android.material.R$integer: int mtrl_card_anim_delay_ms -androidx.vectordrawable.R$id: int normal -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_1 -com.google.android.material.R$attr: int textAppearanceLineHeightEnabled -wangdaye.com.geometricweather.R$styleable: int NavigationView_headerLayout -okhttp3.internal.http1.Http1Codec$AbstractSource: long read(okio.Buffer,long) -com.google.android.material.R$styleable: int ActivityChooserView_initialActivityCount -okio.AsyncTimeout: void exit(boolean) -androidx.preference.R$string: int abc_searchview_description_clear -androidx.core.R$attr: int ttcIndex -androidx.activity.R$id: int tag_unhandled_key_listeners -cyanogenmod.app.IProfileManager$Stub$Proxy: void removeNotificationGroup(android.app.NotificationGroup) -androidx.coordinatorlayout.R$attr -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ListPopupWindow -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitation() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeStepGranularity -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -androidx.lifecycle.ViewModelStore: java.util.Set keys() -cyanogenmod.providers.CMSettings$DiscreteValueValidator -com.google.android.material.R$styleable: int BottomNavigationView_itemTextColor -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableStart -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min -com.jaredrummler.android.colorpicker.R$layout: int abc_search_dropdown_item_icons_2line -androidx.vectordrawable.animated.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogLayout -retrofit2.OkHttpCall: retrofit2.RequestFactory requestFactory -androidx.work.R$attr: int fontProviderCerts -com.turingtechnologies.materialscrollbar.R$string: int abc_shareactionprovider_share_with -androidx.constraintlayout.widget.R$attr: int iconTint -androidx.constraintlayout.widget.R$styleable: int Constraint_android_id -androidx.appcompat.R$style: int Widget_AppCompat_TextView -cyanogenmod.app.CMTelephonyManager: void setDataConnectionSelectedOnSub(int) -io.reactivex.Observable: io.reactivex.Observable share() -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.turingtechnologies.materialscrollbar.DateAndTimeIndicator -com.xw.repo.bubbleseekbar.R$attr: int windowActionBarOverlay -james.adaptiveicon.R$styleable: int[] View -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorColor -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.google.android.material.R$string: int material_timepicker_am -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -androidx.appcompat.R$layout: int abc_screen_simple_overlay_action_mode -wangdaye.com.geometricweather.R$anim: int popup_hide -androidx.lifecycle.extensions.R$id: int info -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: void onLiveLockScreenChanged(cyanogenmod.app.LiveLockScreenInfo) -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: MfRainResult$RainForecast() -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day -com.google.android.material.R$drawable: int abc_dialog_material_background -com.google.android.material.R$attr: int tooltipText -com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: int getPosition() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_srcCompat -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_height -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String MobileLink -okhttp3.OkHttpClient: int connectTimeoutMillis() -androidx.preference.R$styleable: int SwitchCompat_switchMinWidth -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -james.adaptiveicon.R$anim: int abc_fade_out -retrofit2.Response: java.lang.String toString() -androidx.appcompat.R$styleable: int SearchView_searchIcon -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_android_layout -androidx.preference.R$attr: int layout_keyline -com.turingtechnologies.materialscrollbar.R$drawable: int abc_popup_background_mtrl_mult -androidx.loader.R$styleable: R$styleable() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String img -wangdaye.com.geometricweather.R$id: int textinput_suffix_text -androidx.constraintlayout.widget.R$styleable: int Spinner_android_popupBackground -wangdaye.com.geometricweather.R$attr: int barLength -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback -okhttp3.OkHttpClient$1: okhttp3.internal.connection.StreamAllocation streamAllocation(okhttp3.Call) -cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService this$0 -com.xw.repo.bubbleseekbar.R$dimen: int notification_right_icon_size -androidx.dynamicanimation.R$id: int action_divider -wangdaye.com.geometricweather.R$color: int colorTextGrey2nd -android.didikee.donate.R$styleable: int AppCompatTheme_colorButtonNormal -androidx.constraintlayout.widget.R$attr: int flow_maxElementsWrap -wangdaye.com.geometricweather.R$string: int settings_summary_live_wallpaper -androidx.appcompat.widget.AppCompatTextView: android.content.res.ColorStateList getSupportCompoundDrawablesTintList() -okhttp3.Response: int code -okhttp3.internal.cache.DiskLruCache: void validateKey(java.lang.String) -com.google.android.material.R$attr: int colorError -retrofit2.Utils$WildcardTypeImpl: boolean equals(java.lang.Object) -androidx.lifecycle.ClassesInfoCache: ClassesInfoCache() -wangdaye.com.geometricweather.R$attr: int selectable -wangdaye.com.geometricweather.R$styleable: int[] ViewPager2 -okhttp3.internal.http.RequestLine: java.lang.String requestPath(okhttp3.HttpUrl) -com.amap.api.location.APSService: void onCreate() -com.google.android.material.R$dimen: int mtrl_slider_halo_radius -com.xw.repo.bubbleseekbar.R$attr: R$attr() -retrofit2.ParameterHandler$Part: retrofit2.Converter converter -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Green -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onSuccess(java.lang.Object) -com.jaredrummler.android.colorpicker.R$attr: int windowFixedWidthMinor -wangdaye.com.geometricweather.R$attr: int icon -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.preference.SeekBarPreference$SavedState -androidx.work.R$style: R$style() -androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackground(android.graphics.drawable.Drawable) -androidx.swiperefreshlayout.R$styleable -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: double speed -okhttp3.internal.cache.DiskLruCache$3: void remove() -com.jaredrummler.android.colorpicker.R$attr: int spinnerDropDownItemStyle -androidx.viewpager2.R$id: R$id() -com.google.android.material.R$styleable: int ConstraintSet_transitionEasing -androidx.viewpager2.R$id: int tag_accessibility_actions -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: boolean isDisposed() -com.google.gson.stream.JsonWriter: java.lang.String[] REPLACEMENT_CHARS -com.turingtechnologies.materialscrollbar.R$attr: int pressedTranslationZ -com.google.android.material.R$styleable: int MotionTelltales_telltales_tailColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: AccuCurrentResult$TemperatureSummary$Past12HourRange() -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -androidx.lifecycle.ComputableLiveData: void invalidate() -androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void cleanup() -androidx.constraintlayout.widget.R$styleable: int OnSwipe_onTouchUp -androidx.preference.R$id: int action_image -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$id: int action_image -com.google.android.material.R$attr: int tickMarkTint -android.didikee.donate.R$styleable: int MenuItem_actionProviderClass -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onNext(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$layout: int abc_dialog_title_material -okhttp3.internal.connection.StreamAllocation: boolean reportedAcquired -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial Imperial -cyanogenmod.themes.IThemeProcessingListener$Stub: IThemeProcessingListener$Stub() -wangdaye.com.geometricweather.R$id: int test_radiobutton_android_button_tint -retrofit2.DefaultCallAdapterFactory$1: retrofit2.DefaultCallAdapterFactory this$0 -androidx.constraintlayout.widget.R$styleable: int[] ColorStateListItem -androidx.constraintlayout.widget.R$id: int notification_main_column_container -androidx.recyclerview.widget.StaggeredGridLayoutManager -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation LEFT -wangdaye.com.geometricweather.R$styleable: int CompoundButton_android_button -wangdaye.com.geometricweather.R$anim: int abc_popup_exit -com.google.android.material.R$styleable: int AppCompatTheme_imageButtonStyle -androidx.appcompat.R$attr: int buttonCompat -okhttp3.internal.tls.DistinguishedNameParser: int end -androidx.recyclerview.widget.RecyclerView -androidx.legacy.coreutils.R$dimen: R$dimen() -com.google.android.material.R$id: int mtrl_calendar_months -androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_height -com.bumptech.glide.integration.okhttp.R$id: int end -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon -wangdaye.com.geometricweather.R$id: int material_clock_hand -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object readKey(android.database.Cursor,int) -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_INIT -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_29 -okhttp3.internal.tls.OkHostnameVerifier: okhttp3.internal.tls.OkHostnameVerifier INSTANCE -com.google.android.material.R$dimen: int mtrl_badge_text_size -cyanogenmod.providers.CMSettings$System -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -cyanogenmod.app.CMTelephonyManager: boolean isDataConnectionSelectedOnSub(int) -com.google.android.material.R$styleable: int TextInputLayout_placeholderTextAppearance -okio.RealBufferedSink: okio.BufferedSink writeLong(long) -com.google.gson.stream.JsonWriter: void flush() -com.turingtechnologies.materialscrollbar.R$attr: int popupWindowStyle -com.jaredrummler.android.colorpicker.R$id: int content -com.google.android.material.R$styleable: int TextAppearance_fontFamily -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: IAppSuggestManager$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.R$id: int bounce -androidx.appcompat.R$style: int Theme_AppCompat_DialogWhenLarge -okhttp3.internal.http2.Http2Connection: int maxConcurrentStreams() -androidx.coordinatorlayout.R$dimen: int notification_right_side_padding_top -androidx.transition.R$styleable: int FontFamilyFont_android_ttcIndex -com.jaredrummler.android.colorpicker.R$color: int button_material_light -androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onStart() -wangdaye.com.geometricweather.R$styleable: int[] CompoundButton -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindChillTemperature(java.lang.Integer) -androidx.preference.R$attr: int searchHintIcon -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.lang.String title -com.google.android.material.transformation.TransformationChildCard: TransformationChildCard(android.content.Context) -com.bumptech.glide.R$styleable: int[] ColorStateListItem -com.turingtechnologies.materialscrollbar.R$string: int abc_shareactionprovider_share_with_application -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_12 -wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableCompat -com.google.android.material.R$styleable: int AppCompatTheme_dividerVertical -androidx.appcompat.R$layout: int abc_dialog_title_material -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_UPDATED -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontStyle -okhttp3.Cookie: long parseMaxAge(java.lang.String) -androidx.loader.R$dimen: int notification_small_icon_size_as_large -cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_NORMAL -io.reactivex.internal.util.NotificationLite: boolean isError(java.lang.Object) -android.didikee.donate.R$attr: int actionButtonStyle -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark_focused -androidx.constraintlayout.widget.R$attr: int pivotAnchor -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyBottomRight -wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay_v14 -okhttp3.internal.cache.DiskLruCache: long getMaxSize() -okhttp3.internal.cache.DiskLruCache$Entry: long sequenceNumber -wangdaye.com.geometricweather.R$layout: int container_main_daily_trend_card -wangdaye.com.geometricweather.R$drawable: int notif_temp_113 -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_seek_step_section -wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_1_3_padding_top -com.bumptech.glide.R$styleable: int GradientColor_android_centerY -com.amap.api.location.AMapLocation: void setAddress(java.lang.String) -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: long serialVersionUID -io.reactivex.internal.subscribers.StrictSubscriber: void onSubscribe(org.reactivestreams.Subscription) -com.google.android.material.navigation.NavigationView: void setNavigationItemSelectedListener(com.google.android.material.navigation.NavigationView$OnNavigationItemSelectedListener) -wangdaye.com.geometricweather.R$id: int clip_vertical -com.google.android.material.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -okhttp3.internal.ws.WebSocketWriter$FrameSink: void close() -com.jaredrummler.android.colorpicker.R$attr: int autoSizeMaxTextSize -androidx.preference.R$styleable: int AppCompatTheme_homeAsUpIndicator -cyanogenmod.externalviews.KeyguardExternalView: void access$300(cyanogenmod.externalviews.KeyguardExternalView) -androidx.activity.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: AccuCurrentResult$Pressure() -com.amap.api.location.DPoint: void writeToParcel(android.os.Parcel,int) -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startColor -android.didikee.donate.R$drawable: int abc_scrubber_control_off_mtrl_alpha -okio.Segment: okio.Segment unsharedCopy() -androidx.lifecycle.DefaultLifecycleObserver: void onDestroy(androidx.lifecycle.LifecycleOwner) -com.google.android.gms.common.server.converter.zaa: android.os.Parcelable$Creator CREATOR -okhttp3.ResponseBody$1: long val$contentLength -okhttp3.ConnectionSpec: ConnectionSpec(okhttp3.ConnectionSpec$Builder) -org.greenrobot.greendao.AbstractDao: int pkOrdinal -com.jaredrummler.android.colorpicker.R$color: int primary_text_default_material_dark -com.google.android.material.R$dimen: int mtrl_extended_fab_min_width -androidx.constraintlayout.widget.R$id: int expand_activities_button -com.bumptech.glide.integration.okhttp.R$style -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float CarbonMonoxide -james.adaptiveicon.R$attr -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_focused -com.google.android.material.chip.Chip: void setEllipsize(android.text.TextUtils$TruncateAt) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String title -com.amap.api.location.AMapLocationClientOption: java.lang.String toString() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial Imperial -com.turingtechnologies.materialscrollbar.R$attr: int chipStrokeColor -androidx.appcompat.R$attr: int title -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button -wangdaye.com.geometricweather.R$id: int end -okhttp3.Cache$1: okhttp3.Cache this$0 -wangdaye.com.geometricweather.R$id: int transition_layout_save -androidx.core.R$style: int TextAppearance_Compat_Notification_Title -android.didikee.donate.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_corner_radius -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetStart -androidx.constraintlayout.widget.R$id: int decelerate -androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context) -androidx.appcompat.R$dimen: int abc_switch_padding -wangdaye.com.geometricweather.R$id: int selected -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type BASELINE -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onError(java.lang.Throwable) -okhttp3.internal.platform.Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -androidx.swiperefreshlayout.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void attachEntity(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$color: int ripple_material_dark -androidx.hilt.R$id: int accessibility_custom_action_12 -com.google.android.material.R$styleable: int Toolbar_titleMargins -android.didikee.donate.R$id: int action_container -androidx.recyclerview.R$styleable: int FontFamilyFont_font -okhttp3.internal.http2.Http2Connection: int DEGRADED_PING -io.reactivex.Observable: io.reactivex.Observable delaySubscription(io.reactivex.ObservableSource) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_18 -com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_pressed -cyanogenmod.profiles.StreamSettings: boolean isOverride() -androidx.preference.R$color: int primary_text_default_material_dark -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void cancelAll() -com.google.android.material.slider.BaseSlider: void addOnChangeListener(com.google.android.material.slider.BaseOnChangeListener) -wangdaye.com.geometricweather.R$attr: int gapBetweenBars -androidx.viewpager.widget.PagerTabStrip: int getMinHeight() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int CloudCover -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setAddress(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_max -com.google.android.material.R$attr: int minHeight -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_AutoCompleteTextView -okhttp3.RequestBody$2: okhttp3.MediaType val$contentType -wangdaye.com.geometricweather.R$drawable: int shortcuts_thunder_foreground -io.reactivex.Observable: io.reactivex.Observable distinct(io.reactivex.functions.Function,java.util.concurrent.Callable) -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode COMPRESSION_ERROR -androidx.preference.R$id: int wrap_content -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_16dp -androidx.viewpager.R$styleable: int FontFamilyFont_android_font -cyanogenmod.providers.CMSettings$NameValueCache -com.xw.repo.bubbleseekbar.R$id: int below_section_mark -com.google.android.material.R$layout: int mtrl_layout_snackbar -com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_material -com.baidu.location.e.l$b: java.lang.String a(com.baidu.location.e.l$b) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onSubscribe(org.reactivestreams.Subscription) -com.google.android.material.R$styleable: int ViewStubCompat_android_layout -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mCallGetCommand -james.adaptiveicon.R$color: int abc_secondary_text_material_dark -androidx.appcompat.R$id: int src_over -androidx.dynamicanimation.R$dimen: int notification_right_icon_size -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -androidx.constraintlayout.widget.R$attr: int drawableStartCompat -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: boolean inputExhausted -cyanogenmod.app.CustomTile$ExpandedStyle: void internalStyleId(int) -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: void onResponse(retrofit2.Call,retrofit2.Response) -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_enabled -com.google.android.material.R$styleable: int Layout_layout_constrainedHeight -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float o3 -com.google.android.material.R$styleable: int TextInputLayout_errorTextAppearance -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetStartWithNavigation -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -okhttp3.HttpUrl$Builder: void pop() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum Minimum -wangdaye.com.geometricweather.R$id: int widget_day_week_week_2 -wangdaye.com.geometricweather.R$color -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getLockWallpaperThemePackageName() -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: MoonPhase(java.lang.Integer,java.lang.String) -wangdaye.com.geometricweather.R$string: int aqi_4 -androidx.dynamicanimation.R$layout: int notification_action -androidx.appcompat.R$attr: int barLength -wangdaye.com.geometricweather.R$style: int Base_AlertDialog_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DarkActionBar -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -androidx.hilt.R$id: int accessibility_custom_action_19 -com.xw.repo.bubbleseekbar.R$attr: int srcCompat -com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_right_mtrl_dark -okhttp3.Request: okhttp3.CacheControl cacheControl() -com.google.android.material.R$style: R$style() -okhttp3.Handshake: okhttp3.TlsVersion tlsVersion() -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_UNKNOWN -androidx.viewpager.R$dimen: int notification_top_pad_large_text -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: AccuCurrentResult$RealFeelTemperature$Imperial() -androidx.drawerlayout.R$id -androidx.preference.R$style: int Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Large -androidx.constraintlayout.widget.R$attr: int hideOnContentScroll -android.didikee.donate.R$styleable: int ActionBar_contentInsetEndWithActions -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_secondary -com.turingtechnologies.materialscrollbar.R$color: int design_snackbar_background_color -okhttp3.OkHttpClient: boolean retryOnConnectionFailure() -okio.RealBufferedSink: okio.BufferedSink writeShortLe(int) -okio.Timeout: okio.Timeout NONE -androidx.appcompat.R$id: int screen -cyanogenmod.hardware.CMHardwareManager: java.lang.String getLtoDestination() -androidx.lifecycle.LiveData$LifecycleBoundObserver: boolean isAttachedTo(androidx.lifecycle.LifecycleOwner) -androidx.constraintlayout.widget.R$dimen: int compat_control_corner_material -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Small_Inverse -com.google.android.material.R$attr: int tickMark -james.adaptiveicon.R$anim: int abc_popup_exit -com.amap.api.location.UmidtokenInfo: android.os.Handler a -retrofit2.Retrofit: java.util.concurrent.Executor callbackExecutor() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_GCM_SHA384 -androidx.constraintlayout.widget.R$attr: int alertDialogCenterButtons -android.didikee.donate.R$string: int abc_action_bar_home_description -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter -wangdaye.com.geometricweather.R$integer: int design_snackbar_text_max_lines -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: int UnitType -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void drain() -wangdaye.com.geometricweather.R$dimen: int large_title_text_size -com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_thumb_material -okhttp3.internal.ws.RealWebSocket: int sentPingCount -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int state -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean() -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_FLAG_CONTROL -com.google.android.material.R$styleable: int LinearLayoutCompat_showDividers -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_singleLineTitle -androidx.appcompat.R$attr: int numericModifiers -wangdaye.com.geometricweather.R$attr: int backgroundSplit -cyanogenmod.hardware.ICMHardwareService: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalBias -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.R$id: int dropdown_menu -androidx.preference.R$attr: int fastScrollHorizontalTrackDrawable -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarPopupTheme -okhttp3.Response$Builder: okhttp3.Response networkResponse -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_borderlessButtonStyle -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_content_inset_with_nav -androidx.cardview.R$color -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean cancelled -com.bumptech.glide.Priority: com.bumptech.glide.Priority[] values() -okhttp3.Headers: okhttp3.Headers$Builder newBuilder() -com.google.android.material.R$id: int guideline -james.adaptiveicon.R$id: int list_item -com.google.android.material.R$styleable: int ThemeEnforcement_enforceMaterialTheme -james.adaptiveicon.R$styleable: int ActionBar_contentInsetEndWithActions -wangdaye.com.geometricweather.R$drawable: int notif_temp_11 -wangdaye.com.geometricweather.R$interpolator -androidx.activity.R$id: int dialog_button -com.bumptech.glide.integration.okhttp.R$dimen -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit -androidx.recyclerview.widget.RecyclerView: void setOnFlingListener(androidx.recyclerview.widget.RecyclerView$OnFlingListener) -androidx.preference.R$style: int Base_Widget_AppCompat_ButtonBar -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_removeProfile -cyanogenmod.weather.CMWeatherManager$2: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) -androidx.preference.R$styleable: int[] TextAppearance -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_seekBarPreferenceStyle -com.bumptech.glide.load.HttpException: HttpException(java.lang.String,int,java.lang.Throwable) -wangdaye.com.geometricweather.R$id: int dialog_location_help_providerIcon -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_HIGH -wangdaye.com.geometricweather.R$color: int weather_source_accu -androidx.constraintlayout.widget.R$attr: int isLightTheme -androidx.viewpager2.R$id: int actions -androidx.preference.R$id: int action_menu_divider -androidx.activity.R$id -okio.BufferedSource: short readShort() -retrofit2.Converter$Factory: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) -androidx.loader.R$styleable: int[] FontFamilyFont -io.reactivex.exceptions.CompositeException: int size() -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: long serialVersionUID -cyanogenmod.app.CMTelephonyManager: boolean localLOGD -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setCloudCover(java.lang.Integer) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain rain -wangdaye.com.geometricweather.R$id: int reverseSawtooth -okhttp3.HttpUrl: java.lang.String encodedPassword() -wangdaye.com.geometricweather.R$drawable: int notif_temp_82 -wangdaye.com.geometricweather.R$attr: int barrierMargin -com.google.android.gms.common.api.UnsupportedApiCallException: java.lang.String getMessage() -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onComplete() -wangdaye.com.geometricweather.R$string: int settings_title_weather_source -com.bumptech.glide.R$dimen: int notification_action_icon_size -james.adaptiveicon.R$attr: int actionModeStyle -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationMode getLocationMode() -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Bridge -androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.R$attr: int chipSpacingVertical -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: int capacityHint -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_weather -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_23 -androidx.appcompat.R$layout: int abc_screen_toolbar -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit MPS -androidx.appcompat.widget.AppCompatTextView: int getAutoSizeMaxTextSize() -wangdaye.com.geometricweather.R$styleable: int RecyclerView_layoutManager -androidx.preference.R$id: int forever -androidx.constraintlayout.widget.R$attr: int colorSwitchThumbNormal -wangdaye.com.geometricweather.db.entities.WeatherEntity: void delete() -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void run() -cyanogenmod.app.ICMStatusBarManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.recyclerview.widget.RecyclerView: int getScrollState() -cyanogenmod.weatherservice.IWeatherProviderService: void cancelOngoingRequests() -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_DialogWhenLarge -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColor -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver -com.google.android.gms.location.zzay -androidx.fragment.app.FragmentTabHost: FragmentTabHost(android.content.Context,android.util.AttributeSet) -okhttp3.internal.cache.DiskLruCache: void delete() -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit MB -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noStore() -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationY -androidx.appcompat.widget.AppCompatCheckBox: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_ListPopupWindow -com.google.android.material.R$styleable: int Chip_checkedIcon -retrofit2.BuiltInConverters$UnitResponseBodyConverter: java.lang.Object convert(java.lang.Object) -wangdaye.com.geometricweather.R$string: int common_signin_button_text_long -com.google.android.material.R$attr: int onShow -james.adaptiveicon.R$styleable: int MenuView_android_itemBackground -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_background_transition_holo_dark -androidx.loader.R$dimen: int notification_main_column_padding_top -androidx.viewpager.R$styleable: int FontFamily_fontProviderCerts -com.google.android.material.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets -com.turingtechnologies.materialscrollbar.R$attr: int actionModeWebSearchDrawable -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextInputLayout -com.google.android.material.slider.BaseSlider$SliderState: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -androidx.appcompat.R$styleable: int AppCompatTheme_actionDropDownStyle -androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerX -retrofit2.SkipCallbackExecutor -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_MODE -cyanogenmod.app.BaseLiveLockManagerService$1: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_backgroundSplit -com.google.gson.stream.JsonWriter: void setLenient(boolean) -cyanogenmod.weather.util.WeatherUtils: double fahrenheitToCelsius(double) -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.R$integer: int mtrl_tab_indicator_anim_duration_ms -okhttp3.internal.http.HttpHeaders: okio.ByteString QUOTED_STRING_DELIMITERS -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onMenuOpened(int,android.view.Menu) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float icePrecipitation -com.google.android.material.R$drawable: int abc_list_focused_holo -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabAlignmentMode -wangdaye.com.geometricweather.R$dimen: int abc_button_inset_vertical_material -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -androidx.preference.R$styleable: int AppCompatTheme_dropDownListViewStyle -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2 -wangdaye.com.geometricweather.R$id: int BOTTOM_END -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxyAuthenticator(okhttp3.Authenticator) -androidx.appcompat.widget.ActivityChooserView$InnerLayout -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: AccuDailyResult$DailyForecasts$Sun() -android.didikee.donate.R$styleable: int MenuItem_android_checkable -android.didikee.donate.R$styleable: int ActionBar_height -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String x -okio.BufferedSink: okio.BufferedSink writeLong(long) -okhttp3.internal.http2.Http2Reader -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: long serialVersionUID -com.google.android.material.bottomappbar.BottomAppBar: float getFabCradleMargin() -okhttp3.internal.cache2.Relay$RelaySource -androidx.lifecycle.LiveData: void observe(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Observer) -wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_indicator_material -androidx.hilt.work.R$bool: R$bool() -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabText -androidx.vectordrawable.R$dimen: int notification_small_icon_size_as_large -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean cancelled -androidx.preference.R$styleable: int[] DrawerArrowToggle -wangdaye.com.geometricweather.R$attr: int labelStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.List defense -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level[] values() -james.adaptiveicon.R$style: int Base_V26_Widget_AppCompat_Toolbar -androidx.viewpager.R$attr: R$attr() -androidx.core.R$dimen: int notification_main_column_padding_top -okhttp3.CacheControl: boolean isPublic -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderDivider -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: void truncate() -android.support.v4.app.INotificationSideChannel -androidx.lifecycle.ClassesInfoCache$MethodReference: boolean equals(java.lang.Object) -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level NONE -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyBottomLeft -com.turingtechnologies.materialscrollbar.R$id: int submenuarrow -androidx.preference.TwoStatePreference: TwoStatePreference(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.util.NotificationLite$SubscriptionNotification: org.reactivestreams.Subscription upstream -cyanogenmod.weather.RequestInfo: RequestInfo() -james.adaptiveicon.R$attr: int titleMarginBottom -androidx.transition.R$id: int text2 -com.xw.repo.bubbleseekbar.R$id: R$id() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBaseline_creator -com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabTextColors() -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColorLink -cyanogenmod.os.Concierge -com.jaredrummler.android.colorpicker.R$attr: int firstBaselineToTopHeight -com.xw.repo.bubbleseekbar.R$color: int abc_tint_switch_track -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout -com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorSize(int) -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: int requestFusion(int) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain Rain -com.github.rahatarmanahmed.cpv.R$styleable: int[] CircularProgressView -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextAppearanceInactive(int) -cyanogenmod.providers.CMSettings$Global: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) -okhttp3.Cache: int hitCount() -com.google.android.material.R$id: int pin -androidx.constraintlayout.widget.R$id: int action_bar_container -com.google.android.material.R$dimen: int mtrl_btn_focused_z -androidx.constraintlayout.widget.Placeholder: void setEmptyVisibility(int) -com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.xw.repo.bubbleseekbar.R$styleable: int ActionMenuItemView_android_minWidth -retrofit2.OkHttpCall: void cancel() -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.internal.fuseable.QueueDisposable qd -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul12H -okhttp3.ConnectionPool: java.util.concurrent.Executor executor -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActivityChooserView -com.jaredrummler.android.colorpicker.R$string: int expand_button_title -james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -androidx.lifecycle.CompositeGeneratedAdaptersObserver: androidx.lifecycle.GeneratedAdapter[] mGeneratedAdapters -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: boolean isDisposed() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: long serialVersionUID -com.google.android.material.R$string: int path_password_strike_through -androidx.preference.R$id: int accessibility_custom_action_6 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: AccuDailyResult$DailyForecasts$Day$Wind() -com.google.android.material.R$drawable: int btn_radio_off_mtrl -androidx.appcompat.R$layout: int select_dialog_multichoice_material -retrofit2.Platform: java.util.concurrent.Executor defaultCallbackExecutor() -cyanogenmod.themes.IThemeProcessingListener$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: java.lang.Long rise -androidx.preference.R$attr: int windowFixedWidthMinor -wangdaye.com.geometricweather.R$attr: int fontProviderFetchStrategy -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.util.concurrent.atomic.AtomicBoolean cancelled -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_creator -wangdaye.com.geometricweather.R$drawable: int abc_list_divider_mtrl_alpha -androidx.viewpager2.R$dimen: int notification_small_icon_background_padding -androidx.constraintlayout.widget.R$id: int chronometer -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_lineHeight -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.ObservableSource source -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature WetBulbTemperature -androidx.constraintlayout.widget.R$styleable: int Transition_transitionDisable -androidx.activity.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.R$attr: int fontProviderFetchTimeout -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter this$0 -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode WIND -androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_scaleY -com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_CUSTOMID -com.jaredrummler.android.colorpicker.R$attr: int dividerVertical -com.jaredrummler.android.colorpicker.R$id: int title -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenVoice(android.content.Context,int) -androidx.fragment.R$styleable: int FragmentContainerView_android_name -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_Solid -com.jaredrummler.android.colorpicker.R$styleable: int GradientColorItem_android_color -com.xw.repo.bubbleseekbar.R$style: int Platform_V25_AppCompat_Light -okhttp3.internal.http2.Http2Stream$FramingSink: boolean closed -james.adaptiveicon.R$styleable: int Toolbar_contentInsetStartWithNavigation -cyanogenmod.util.ColorUtils: float[] temperatureToRGB(int) -com.jaredrummler.android.colorpicker.R$styleable: R$styleable() -android.didikee.donate.R$attr: int queryBackground -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable -com.google.android.material.internal.NavigationMenuItemView: void setTitle(java.lang.CharSequence) -com.google.gson.internal.JsonReaderInternalAccess: com.google.gson.internal.JsonReaderInternalAccess INSTANCE -wangdaye.com.geometricweather.R$attr: int materialCircleRadius -com.google.android.material.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_get -okhttp3.internal.http2.Hpack$Reader: int dynamicTableIndex(int) -com.xw.repo.bubbleseekbar.R$drawable: int abc_ab_share_pack_mtrl_alpha -okio.GzipSource: void close() -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode NIGHT -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context) -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animDuration -androidx.recyclerview.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.R$id: int chain -androidx.lifecycle.extensions.R$id: int action_divider -androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackground(android.graphics.drawable.Drawable) -com.turingtechnologies.materialscrollbar.R$color: int primary_material_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setZenMode -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModePasteDrawable -io.reactivex.observers.DisposableObserver: java.util.concurrent.atomic.AtomicReference upstream -androidx.drawerlayout.R$id: int normal -wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_default_mtrl_alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String datetime -com.turingtechnologies.materialscrollbar.R$styleable: int[] CollapsingToolbarLayout -com.xw.repo.bubbleseekbar.R$attr: int overlapAnchor -androidx.appcompat.R$attr: int buttonBarPositiveButtonStyle -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg -okio.RealBufferedSource: void require(long) -io.reactivex.Observable: io.reactivex.disposables.Disposable forEach(io.reactivex.functions.Consumer) -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitleTextAppearance -androidx.appcompat.R$dimen: int notification_top_pad_large_text -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy valueOf(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -com.turingtechnologies.materialscrollbar.R$integer: int config_tooltipAnimTime -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void setResource(io.reactivex.disposables.Disposable) -androidx.appcompat.R$attr: int homeLayout -com.google.android.material.R$id: int notification_main_column -com.google.android.gms.common.internal.safeparcel.SafeParcelable -retrofit2.RequestBuilder: void addPart(okhttp3.Headers,okhttp3.RequestBody) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogTheme -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_chainUseRtl -wangdaye.com.geometricweather.R$style: int Widget_Design_NavigationView -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String nextAT() -com.google.android.material.R$id: int activity_chooser_view_content -wangdaye.com.geometricweather.R$string: int widget_clock_day_details -cyanogenmod.weather.WeatherLocation: java.lang.String getCityId() -androidx.constraintlayout.widget.R$styleable: int Motion_motionPathRotate -com.google.android.material.R$id: int accessibility_custom_action_17 -android.didikee.donate.R$layout: int abc_list_menu_item_checkbox -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getSupportedFeatures_0 -androidx.preference.R$dimen: int abc_seekbar_track_background_height_material -wangdaye.com.geometricweather.R$anim: int abc_slide_in_top -retrofit2.http.QueryName -androidx.loader.R$layout: int notification_template_icon_group -com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_LOCERRORCODE -james.adaptiveicon.R$id: int wrap_content -com.xw.repo.bubbleseekbar.R$attr: int fontVariationSettings -android.didikee.donate.R$style: int Theme_AppCompat -androidx.appcompat.app.AppCompatDelegateImpl$PanelFeatureState$SavedState: android.os.Parcelable$Creator CREATOR -okhttp3.Request$Builder: okhttp3.Request$Builder patch(okhttp3.RequestBody) -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: android.os.IBinder mRemote -com.google.android.material.R$id: int transition_scene_layoutid_cache -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: int Id -wangdaye.com.geometricweather.R$styleable: int RoundCornerTransition_radius_from -wangdaye.com.geometricweather.R$id: int shortcut -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose Sport -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: CaiYunMainlyResult$CurrentBean() -androidx.constraintlayout.widget.R$attr: int singleChoiceItemLayout -com.turingtechnologies.materialscrollbar.R$color: int material_grey_900 -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_disabled -androidx.drawerlayout.R$dimen: int notification_top_pad_large_text -android.didikee.donate.R$drawable: int notification_tile_bg -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onComplete() -wangdaye.com.geometricweather.R$styleable: int[] MaterialAlertDialogTheme -androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_icon -androidx.hilt.work.R$drawable: int notification_bg_normal_pressed -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_font -androidx.hilt.work.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$styleable: int[] AlertDialog -wangdaye.com.geometricweather.R$dimen: int widget_design_title_text_size -com.google.android.material.R$attr: int listChoiceBackgroundIndicator -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTINUATION -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean content -androidx.lifecycle.ComputableLiveData: androidx.lifecycle.LiveData mLiveData -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index aggregatedIndex -wangdaye.com.geometricweather.R$string: int feedback_refresh_notification_after_back -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -com.jaredrummler.android.colorpicker.R$anim: int abc_slide_in_bottom -android.didikee.donate.R$attr: int actionBarSize -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State INITIALIZED -okhttp3.internal.connection.RealConnection: void cancel() -androidx.lifecycle.ComputableLiveData$2: ComputableLiveData$2(androidx.lifecycle.ComputableLiveData) -okhttp3.Cache: int ENTRY_BODY -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvDescription -wangdaye.com.geometricweather.R$id: int container_main_aqi_progress -androidx.preference.R$attr: int paddingStart -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onTimeout(long) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_AutoCompleteTextView -okhttp3.internal.ws.WebSocketReader: okio.BufferedSource source -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX() -okhttp3.MultipartBody: byte[] DASHDASH -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_hideOnContentScroll -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void clear(io.reactivex.internal.queue.SpscLinkedArrayQueue) -james.adaptiveicon.R$dimen: int notification_main_column_padding_top -androidx.preference.R$style: int Widget_AppCompat_ListView_Menu -androidx.recyclerview.R$attr: int fontWeight -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean() -james.adaptiveicon.R$attr: int actionBarTabStyle -com.google.android.material.R$styleable: int Toolbar_titleMarginBottom -james.adaptiveicon.R$drawable: int notification_action_background -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton -wangdaye.com.geometricweather.R$string: int settings_title_widget_config -okhttp3.RequestBody$1: void writeTo(okio.BufferedSink) -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_overflow_material -com.jaredrummler.android.colorpicker.R$styleable: int View_paddingStart -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType GIF -androidx.dynamicanimation.R$id: int line3 -wangdaye.com.geometricweather.R$drawable: int flag_pl -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder cache(okhttp3.Cache) -androidx.core.R$attr: int fontProviderAuthority -com.google.android.material.R$styleable: int ForegroundLinearLayout_android_foregroundGravity -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorPrimaryDark -com.jaredrummler.android.colorpicker.R$layout: int preference_information_material -com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onModeChanged(boolean) -androidx.preference.R$style: int Theme_AppCompat -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_side_padding -com.google.android.material.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets -wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_style -com.jaredrummler.android.colorpicker.R$drawable: int ic_arrow_down_24dp -androidx.preference.R$styleable: int MenuItem_tooltipText -cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem(cyanogenmod.app.CustomTile$1) -com.google.android.material.R$styleable: int Transform_android_translationX -com.google.android.material.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Bridge -androidx.preference.R$dimen: int tooltip_y_offset_non_touch -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -androidx.viewpager.R$id: int text2 -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub -wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendHourlyProvider: WidgetTrendHourlyProvider() -androidx.preference.R$layout: int notification_action -cyanogenmod.platform.Manifest$permission: java.lang.String MANAGE_PERSISTENT_STORAGE -james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int Chip_chipIcon -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Surface -com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_disabled -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerComplete(io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver) -androidx.appcompat.widget.AppCompatTextView: void setFirstBaselineToTopHeight(int) -cyanogenmod.themes.ThemeChangeRequest: java.util.Map getThemeComponentsMap() -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_multiChoiceItemLayout -androidx.activity.R$id: int accessibility_custom_action_28 -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: int hashCode() -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder allEnabledCipherSuites() -wangdaye.com.geometricweather.R$attr: int tabIndicator -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType[] values() -androidx.legacy.coreutils.R$layout: int notification_action_tombstone -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean set(int,boolean) -okhttp3.internal.Util: okio.ByteString UTF_16_BE_BOM -okhttp3.internal.connection.StreamAllocation: okhttp3.Call call -androidx.viewpager2.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.R$styleable: int[] RoundCornerTransition -wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_shapeAppearance -com.xw.repo.bubbleseekbar.R$id: int image -com.google.android.material.R$style: int Base_DialogWindowTitleBackground_AppCompat -wangdaye.com.geometricweather.R$styleable: int CardView_cardMaxElevation -com.google.android.material.R$dimen: int highlight_alpha_material_light -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_enabled -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_trackTintMode -james.adaptiveicon.R$id: int default_activity_button -okhttp3.internal.cache.DiskLruCache: void readJournalLine(java.lang.String) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.lang.Object poll() -androidx.vectordrawable.animated.R$attr: int fontWeight -androidx.loader.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.R$string: int feedback_restart -com.google.android.material.R$id: int mtrl_picker_text_input_date -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_3_30 -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void remove(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) -androidx.hilt.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setThunderstormPrecipitation(java.lang.Float) -androidx.hilt.R$layout: int notification_action -wangdaye.com.geometricweather.R$attr: int ttcIndex -cyanogenmod.themes.IThemeProcessingListener$Stub: android.os.IBinder asBinder() -okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithIncrementalIndexingNewName() -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_disabled_material_dark -com.google.android.material.R$attr: int showText -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Alert -com.bumptech.glide.R$styleable: int FontFamilyFont_ttcIndex -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Snapshot get(java.lang.String) -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver) -cyanogenmod.externalviews.ExternalViewProperties: int getHeight() -james.adaptiveicon.R$attr: int textAppearanceListItemSecondary -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getNavBarThemePackageName() -okhttp3.internal.io.FileSystem: void deleteContents(java.io.File) -wangdaye.com.geometricweather.db.entities.LocationEntity: void setCurrentPosition(boolean) -com.google.android.gms.internal.location.zzbg: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -com.google.android.material.chip.Chip: void setCheckedIconTintResource(int) -james.adaptiveicon.R$dimen: int compat_control_corner_material -com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_DIGIT -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_text_color -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature temperature -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedHeightMinor -androidx.appcompat.R$style: int Platform_Widget_AppCompat_Spinner -com.google.android.material.R$styleable: int ConstraintLayout_placeholder_content -okhttp3.internal.http2.Hpack$Reader: okio.ByteString getName(int) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$attr: int msb_barThickness -com.xw.repo.bubbleseekbar.R$layout: int abc_action_menu_item_layout -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy -okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withConnectTimeout(int,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$attr: int endIconMode -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_PONG -androidx.preference.R$styleable: int RecyclerView_spanCount -com.turingtechnologies.materialscrollbar.R$styleable: int[] LinearLayoutCompat_Layout -android.didikee.donate.R$styleable: int AlertDialog_singleChoiceItemLayout -androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontWeight -androidx.preference.R$style: int Animation_AppCompat_DropDownUp -androidx.viewpager2.R$id: int icon_group -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.R$id: int decor_content_parent -com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context) -androidx.hilt.R$id: int accessibility_custom_action_4 -com.amap.api.location.AMapLocation: java.lang.String getStreet() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onPanelClosed(int,android.view.Menu) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dividerVertical -com.jaredrummler.android.colorpicker.R$attr: int drawerArrowStyle -androidx.constraintlayout.widget.R$styleable: int[] Layout -wangdaye.com.geometricweather.R$attr: int elevation -wangdaye.com.geometricweather.R$id: int add -com.amap.api.fence.GeoFenceClient: int GEOFENCE_OUT -retrofit2.Response: okhttp3.ResponseBody errorBody() -james.adaptiveicon.R$string: int abc_search_hint -cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: int CELSIUS -okio.Source: long read(okio.Buffer,long) -wangdaye.com.geometricweather.settings.fragments.UnitSettingsFragment: UnitSettingsFragment() -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: java.lang.Float windChill -android.didikee.donate.R$styleable: int TextAppearance_fontFamily -cyanogenmod.hardware.CMHardwareManager: android.content.Context mContext -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getDistanceText(android.content.Context,float) -com.turingtechnologies.materialscrollbar.R$attr: int tabTextAppearance -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_orientation -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer confidence -okio.SegmentedByteString: boolean equals(java.lang.Object) -cyanogenmod.weatherservice.WeatherProviderService: void onDisconnected() -androidx.preference.R$layout: int notification_template_part_chronometer -com.turingtechnologies.materialscrollbar.R$string: int abc_action_menu_overflow_description -android.didikee.donate.R$id: int search_plate -wangdaye.com.geometricweather.R$drawable: int notif_temp_58 -okhttp3.internal.platform.Platform -wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format_example -okhttp3.internal.http2.Header: java.lang.String toString() -com.google.android.material.snackbar.Snackbar$SnackbarLayout: Snackbar$SnackbarLayout(android.content.Context,android.util.AttributeSet) -com.bumptech.glide.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String color -androidx.legacy.coreutils.R$dimen: int notification_small_icon_size_as_large -okhttp3.internal.http.RealInterceptorChain: int writeTimeoutMillis() -com.xw.repo.bubbleseekbar.R$dimen: int abc_disabled_alpha_material_dark -androidx.core.R$id: int accessibility_custom_action_10 -retrofit2.KotlinExtensions$awaitResponse$2$2: void onFailure(retrofit2.Call,java.lang.Throwable) -wangdaye.com.geometricweather.R$color: int design_default_color_on_error -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_end -okhttp3.internal.http2.Http2Reader: void readPriority(okhttp3.internal.http2.Http2Reader$Handler,int) -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_switchTextOn -androidx.fragment.R$dimen: int notification_action_text_size -androidx.hilt.work.R$dimen: int compat_button_inset_vertical_material -io.reactivex.internal.util.NotificationLite$ErrorNotification: long serialVersionUID -com.google.android.material.R$attr: int thumbStrokeWidth -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_dither -androidx.preference.R$string: int abc_search_hint -okhttp3.logging.LoggingEventListener$Factory: LoggingEventListener$Factory() -com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar_PrimarySurface -james.adaptiveicon.R$attr: int fontProviderQuery -androidx.appcompat.resources.R$id: int accessibility_custom_action_2 -com.google.android.material.R$styleable: int ConstraintSet_android_orientation -com.jaredrummler.android.colorpicker.R$dimen: int abc_alert_dialog_button_dimen -wangdaye.com.geometricweather.R$string: int key_widget_minimal_icon -androidx.appcompat.R$styleable: int Toolbar_menu -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: android.os.IBinder asBinder() -com.google.android.gms.common.api.AvailabilityException: java.lang.String getMessage() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_PULSE_VALIDATOR -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton -androidx.preference.R$id: int customPanel -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getTreeIndex() -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRealFeelTemperature(java.lang.Integer) -com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy valueOf(java.lang.String) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.jaredrummler.android.colorpicker.ColorPanelView -androidx.customview.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$attr: int itemShapeAppearance -com.bumptech.glide.integration.okhttp.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$id: int expand_activities_button -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Solid -cyanogenmod.profiles.BrightnessSettings$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.R$attr: int iconEndPadding -androidx.viewpager2.R$styleable: int[] RecyclerView -wangdaye.com.geometricweather.R$drawable: int cpv_ic_arrow_right_black_24dp -com.google.android.material.R$styleable: int DrawerArrowToggle_drawableSize -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstHorizontalBias -androidx.preference.R$styleable: int GradientColor_android_endColor -com.google.android.material.R$attr: int endIconCheckable -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_clear -wangdaye.com.geometricweather.R$attr: int badgeGravity -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -androidx.appcompat.widget.AppCompatTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSearchResultTitle -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearSelectedStyle -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Large -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.lang.String unit -androidx.vectordrawable.R$attr: int ttcIndex -wangdaye.com.geometricweather.R$dimen: int design_snackbar_text_size -okhttp3.internal.platform.Android10Platform -com.google.android.material.R$styleable: int TextInputLayout_counterTextColor -wangdaye.com.geometricweather.R$string: int feedback_readd_location_after_changing_source -com.turingtechnologies.materialscrollbar.R$attr: int iconPadding -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.R$id: int time -com.google.android.material.R$attr: int voiceIcon -okhttp3.internal.Internal: boolean equalsNonHost(okhttp3.Address,okhttp3.Address) -cyanogenmod.providers.CMSettings$Global: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getRelativeHumidity() -com.jaredrummler.android.colorpicker.R$id: int blocking -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -okhttp3.WebSocket: void cancel() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: AccuLocationResult$Country() -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontVariationSettings -android.didikee.donate.R$styleable: int MenuItem_android_menuCategory -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_default -retrofit2.RequestBuilder: java.util.regex.Pattern PATH_TRAVERSAL -androidx.activity.R$string -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial() -androidx.viewpager2.R$styleable: int FontFamily_fontProviderAuthority -okhttp3.logging.HttpLoggingInterceptor: java.util.Set headersToRedact -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: int maxColor -wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_xml -retrofit2.Platform: int defaultConverterFactoriesSize() -androidx.constraintlayout.widget.R$attr: int actionBarTabStyle -okhttp3.internal.cache.InternalCache: void update(okhttp3.Response,okhttp3.Response) -androidx.preference.R$style: int Theme_AppCompat_Light_DialogWhenLarge -com.google.android.material.R$styleable: int RecyclerView_reverseLayout -wangdaye.com.geometricweather.R$attr: int dragThreshold -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeBackground -androidx.transition.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.constraintlayout.widget.R$attr: int dialogCornerRadius -android.didikee.donate.R$attr: int titleMarginStart -com.google.android.material.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.R$attr: int msb_autoHide -cyanogenmod.providers.ThemesContract$PreviewColumns -com.turingtechnologies.materialscrollbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -androidx.appcompat.R$style: int Base_Widget_AppCompat_Spinner_Underlined -androidx.appcompat.widget.ActionBarContextView: java.lang.CharSequence getTitle() -androidx.core.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: wangdaye.com.geometricweather.db.entities.MinutelyEntity readEntity(android.database.Cursor,int) -okhttp3.EventListener: EventListener() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_ContextMenu -androidx.hilt.work.R$id: int tag_accessibility_pane_title -androidx.constraintlayout.widget.R$dimen: int abc_panel_menu_list_width -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_searchViewStyle -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: long serialVersionUID -com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView -android.didikee.donate.R$styleable: int ActionMode_background -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemIconTint -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginBottom -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_headerBackground -okhttp3.internal.http.RealResponseBody: okhttp3.MediaType contentType() -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onSuccess(java.lang.Object) -androidx.lifecycle.ClassesInfoCache$CallbackInfo: java.util.Map mHandlerToEvent -com.turingtechnologies.materialscrollbar.R$id: int transition_position -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_variablePadding -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void replay(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceBody1 -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListMenuView -androidx.constraintlayout.widget.R$id: int message -cyanogenmod.alarmclock.ClockContract$AlarmsColumns -androidx.vectordrawable.R$id: int async -androidx.preference.R$styleable: int[] View -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: AccuMinuteResult$IntervalsBean() -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_32 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionButtonStyle -wangdaye.com.geometricweather.R$attr: int bsb_show_progress_in_float -okio.ForwardingSink: okio.Timeout timeout() -com.google.android.material.navigation.NavigationView: void setItemIconTintList(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_20 -androidx.preference.R$id: int image -cyanogenmod.app.ProfileManager: java.lang.String TAG -wangdaye.com.geometricweather.R$drawable: int weather_thunder -cyanogenmod.app.ProfileGroup: void applyOverridesToNotification(android.app.Notification) -wangdaye.com.geometricweather.db.entities.AlertEntity: int color -androidx.activity.R$styleable: int GradientColorItem_android_offset -com.google.android.material.R$dimen: int mtrl_btn_dialog_btn_min_width -androidx.appcompat.widget.ActionBarContextView: void setTitle(java.lang.CharSequence) -androidx.constraintlayout.widget.R$attr: int layout_goneMarginEnd -androidx.work.R$id: int accessibility_custom_action_2 -androidx.appcompat.R$dimen: int hint_alpha_material_dark -com.google.android.material.R$attr: int pivotAnchor -okhttp3.internal.http2.Hpack$Reader -com.google.android.material.R$color: int ripple_material_dark -androidx.preference.R$styleable: int SearchView_defaultQueryHint -androidx.work.R$id: int accessibility_custom_action_13 -okhttp3.Address: java.net.ProxySelector proxySelector -io.reactivex.internal.subscriptions.EmptySubscription: void request(long) -wangdaye.com.geometricweather.R$attr: int chipStandaloneStyle -androidx.recyclerview.R$id: int tag_accessibility_clickable_spans -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_overflow_padding_end_material -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_104 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView -androidx.appcompat.R$color: int abc_search_url_text_selected -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isShow -wangdaye.com.geometricweather.R$string: int tag_temperature -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstVerticalStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isModify -com.google.android.material.R$attr: int boxCollapsedPaddingTop -androidx.appcompat.widget.LinearLayoutCompat: void setShowDividers(int) -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startY -androidx.recyclerview.R$id: int tag_unhandled_key_listeners -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dropDownListViewStyle -androidx.legacy.coreutils.R$id: int icon -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft -androidx.appcompat.R$attr: int panelBackground -com.google.android.material.R$attr: int closeIconEnabled -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: void setUnit(java.lang.String) -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_4 -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.HourlyEntity) -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: void subscribe(org.reactivestreams.Subscriber) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeBackground -james.adaptiveicon.R$style: int Widget_AppCompat_ActionMode -retrofit2.RequestFactory$Builder: java.util.Set parsePathParameters(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarStyle -android.didikee.donate.R$styleable: int AppCompatTheme_seekBarStyle -com.xw.repo.bubbleseekbar.R$attr: int lastBaselineToBottomHeight -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setBadgeIfNeeded(com.google.android.material.bottomnavigation.BottomNavigationItemView) -wangdaye.com.geometricweather.R$dimen: int design_snackbar_elevation -com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace[] values() -androidx.preference.R$styleable: int AppCompatImageView_android_src -cyanogenmod.externalviews.KeyguardExternalView$7: KeyguardExternalView$7(cyanogenmod.externalviews.KeyguardExternalView) -retrofit2.OkHttpCall$NoContentResponseBody: long contentLength -io.reactivex.Observable: io.reactivex.Observable fromPublisher(org.reactivestreams.Publisher) -com.google.android.material.R$attr: int cornerSizeBottomRight -james.adaptiveicon.R$color: int material_grey_50 -androidx.recyclerview.widget.StaggeredGridLayoutManager$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_25 -androidx.constraintlayout.widget.R$color: int androidx_core_ripple_material_light -okhttp3.internal.ws.WebSocketWriter: okio.Buffer buffer -androidx.constraintlayout.widget.R$styleable: int PopupWindow_overlapAnchor -wangdaye.com.geometricweather.R$styleable: int[] GradientColorItem -androidx.preference.R$styleable: int SwitchPreferenceCompat_summaryOff -com.google.android.material.R$styleable: int BottomAppBar_elevation -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: java.lang.Float value -wangdaye.com.geometricweather.R$dimen: int abc_control_padding_material -com.amap.api.location.AMapLocation: int a(com.amap.api.location.AMapLocation,int) -androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_toRightOf -com.google.android.material.R$styleable: int OnSwipe_limitBoundsTo -androidx.appcompat.view.menu.StandardMenuPopup -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_135 -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -androidx.appcompat.R$style: int TextAppearance_AppCompat_Body2 -okhttp3.ConnectionSpec -okhttp3.internal.ws.RealWebSocket: void checkResponse(okhttp3.Response) -com.google.android.material.R$styleable: int Snackbar_snackbarStyle -wangdaye.com.geometricweather.R$attr: int bsb_section_text_position -androidx.appcompat.R$styleable: int DrawerArrowToggle_spinBars -wangdaye.com.geometricweather.R$drawable: int tooltip_frame_light -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState -okhttp3.Protocol: okhttp3.Protocol H2_PRIOR_KNOWLEDGE -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator -com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace valueOf(java.lang.String) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -androidx.transition.R$id: int right_side -android.didikee.donate.R$drawable: R$drawable() -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: ObservableCombineLatest$LatestCoordinator(io.reactivex.Observer,io.reactivex.functions.Function,int,int,boolean) -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent SOUND -androidx.activity.R$attr -androidx.preference.SeekBarPreference$SavedState: android.os.Parcelable$Creator CREATOR -androidx.appcompat.R$styleable: int AppCompatTheme_tooltipForegroundColor -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_RC4_128_SHA -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginTop -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void boundaryError(io.reactivex.disposables.Disposable,java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int dependency -wangdaye.com.geometricweather.R$drawable: int notif_temp_81 -androidx.appcompat.R$styleable: int SearchView_android_maxWidth -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_hd -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_android_textAppearance -com.google.android.material.R$styleable: int View_theme -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: IWeatherServiceProviderChangeListener$Stub$Proxy(android.os.IBinder) -android.didikee.donate.R$style: int Widget_AppCompat_ListView -wangdaye.com.geometricweather.common.basic.models.weather.Alert: void descByTime(java.util.List) -cyanogenmod.themes.IThemeService: boolean processThemeResources(java.lang.String) -com.jaredrummler.android.colorpicker.R$dimen: int compat_button_padding_horizontal_material -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_RC4_128_SHA -io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean isCancelled() -android.didikee.donate.R$styleable: int MenuItem_android_titleCondensed -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline3 -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorTextAppearance -androidx.preference.R$styleable: int FontFamily_fontProviderQuery -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getBoxStrokeErrorColor() -androidx.appcompat.R$color: int abc_primary_text_disable_only_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingTop -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeShareDrawable -com.google.android.material.slider.Slider: void setTrackTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$drawable: int ic_top -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.util.concurrent.locks.Condition condition -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ProgressBar -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date moonSetDate -com.google.android.material.R$styleable: int MaterialButton_iconTintMode -androidx.preference.R$layout: int abc_alert_dialog_material -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_FixedSize -wangdaye.com.geometricweather.R$attr: int shapeAppearance -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListMenuView -androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.R$id: int item_about_link_text -androidx.viewpager.widget.ViewPager: void setAdapter(androidx.viewpager.widget.PagerAdapter) -androidx.preference.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: double Value -retrofit2.OptionalConverterFactory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -wangdaye.com.geometricweather.R$drawable: int flag_br -android.didikee.donate.R$style: int AlertDialog_AppCompat -androidx.lifecycle.extensions.R$id: int icon_group -androidx.appcompat.R$drawable: int notify_panel_notification_icon_bg -com.google.android.material.R$styleable: int[] MaterialToolbar -com.turingtechnologies.materialscrollbar.R$color: int material_grey_300 -androidx.preference.R$styleable: int FontFamilyFont_android_font -androidx.preference.R$layout: int abc_activity_chooser_view -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_constantSize -com.google.android.material.R$animator: int design_fab_show_motion_spec -android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -wangdaye.com.geometricweather.R$id: int wide -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge -okhttp3.EventListener: void callFailed(okhttp3.Call,java.io.IOException) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_toRightOf -com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_inset_horizontal_material -cyanogenmod.app.PartnerInterface: cyanogenmod.app.IPartnerInterface getService() -wangdaye.com.geometricweather.R$string: int wind_10 -cyanogenmod.weather.WeatherInfo$DayForecast: double mLow -androidx.lifecycle.ReportFragment$LifecycleCallbacks -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int Preference_android_widgetLayout -com.bumptech.glide.R$attr: int fontProviderCerts -okhttp3.internal.http.RequestLine: java.lang.String get(okhttp3.Request,java.net.Proxy$Type) -cyanogenmod.hardware.CMHardwareManager: int FEATURE_COLOR_ENHANCEMENT -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.Float speed -androidx.preference.R$attr: int ratingBarStyle -androidx.constraintlayout.widget.R$drawable -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_TopRightDifferentCornerSize -com.xw.repo.bubbleseekbar.R$attr: int autoSizeMaxTextSize -wangdaye.com.geometricweather.R$string: int about_retrofit -androidx.viewpager2.widget.ViewPager2: androidx.recyclerview.widget.RecyclerView$Adapter getAdapter() -wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullException: ResourceUtils$NullException() -com.google.android.material.slider.Slider: android.content.res.ColorStateList getThumbTintList() -androidx.appcompat.resources.R$styleable: int GradientColor_android_centerX -com.github.rahatarmanahmed.cpv.CircularProgressView: boolean isIndeterminate -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_checked -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_framePosition -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String getX() -com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_text_color -cyanogenmod.externalviews.KeyguardExternalView$5 -cyanogenmod.providers.CMSettings$1: CMSettings$1() -cyanogenmod.app.suggest.ApplicationSuggestion$1: cyanogenmod.app.suggest.ApplicationSuggestion[] newArray(int) -wangdaye.com.geometricweather.R$attr: int titleMargin -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: int WeatherIcon -androidx.constraintlayout.widget.R$styleable: int Toolbar_logoDescription -androidx.core.R$drawable: int notification_bg_low_pressed -androidx.activity.R$dimen: int notification_large_icon_height -com.google.android.material.R$attr: int coordinatorLayoutStyle -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked -com.google.android.material.R$styleable: int CustomAttribute_customDimension -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveOffset -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pm25 -okhttp3.internal.http.RetryAndFollowUpInterceptor: int MAX_FOLLOW_UPS -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Colored -com.google.android.material.R$styleable: int AppCompatTheme_textColorSearchUrl -james.adaptiveicon.R$drawable: int abc_list_selector_background_transition_holo_light -androidx.appcompat.resources.R$color: R$color() -okio.Okio: okio.Source source(java.io.File) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motionTarget -com.google.android.material.R$anim: int abc_grow_fade_in_from_bottom -androidx.appcompat.R$color: int primary_text_default_material_light -androidx.preference.R$attr: int colorAccent -androidx.preference.R$color: int dim_foreground_disabled_material_light -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager -androidx.customview.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$styleable: int[] MenuItem -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver INNER_DISPOSED -android.didikee.donate.R$attr: int tickMarkTint -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mVibrateMode -com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.Typeface getCollapsedTitleTypeface() -com.google.android.material.slider.RangeSlider: void setValueFrom(float) -android.didikee.donate.R$styleable: int ViewBackgroundHelper_android_background -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_fontVariationSettings -cyanogenmod.app.ICustomTileListener$Stub$Proxy: ICustomTileListener$Stub$Proxy(android.os.IBinder) -androidx.hilt.work.R$id: int accessibility_custom_action_22 -androidx.cardview.R$dimen: R$dimen() -io.reactivex.Observable: io.reactivex.Observable amb(java.lang.Iterable) -androidx.hilt.lifecycle.R$styleable: int[] FragmentContainerView -androidx.viewpager.R$id: int info -com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context) -cyanogenmod.app.Profile: cyanogenmod.profiles.RingModeSettings getRingMode() -okhttp3.internal.http.CallServerInterceptor$CountingSink: CallServerInterceptor$CountingSink(okio.Sink) -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: java.lang.String Unit -androidx.appcompat.R$attr: int arrowShaftLength -androidx.appcompat.R$dimen: int highlight_alpha_material_colored -androidx.appcompat.R$attr: int background -com.google.android.material.R$styleable: int AppCompatTheme_actionModeCopyDrawable -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSrc(java.lang.String) -okhttp3.Interceptor$Chain: int writeTimeoutMillis() -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollEnabled -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours -wangdaye.com.geometricweather.R$styleable: R$styleable() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyleSmall -wangdaye.com.geometricweather.R$drawable: int mtrl_dialog_background -cyanogenmod.app.CustomTile$ExpandedStyle: android.widget.RemoteViews contentViews -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_RESULT_VALUE -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dialog -okhttp3.internal.Util: int delimiterOffset(java.lang.String,int,int,java.lang.String) -cyanogenmod.weather.WeatherInfo: WeatherInfo(cyanogenmod.weather.WeatherInfo$1) -androidx.appcompat.R$drawable: int abc_btn_check_to_on_mtrl_000 -james.adaptiveicon.R$styleable: int SearchView_android_maxWidth -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_large_material -james.adaptiveicon.R$drawable: int abc_ab_share_pack_mtrl_alpha -wangdaye.com.geometricweather.common.basic.models.weather.Current: Current(java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability,wangdaye.com.geometricweather.common.basic.models.weather.Wind,wangdaye.com.geometricweather.common.basic.models.weather.UV,wangdaye.com.geometricweather.common.basic.models.weather.AirQuality,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.String,java.lang.String) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_bias -androidx.appcompat.R$styleable: int AppCompatTheme_popupMenuStyle -androidx.preference.R$attr: int alertDialogButtonGroupStyle -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_id -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_shape_vertical_margin -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_3 -androidx.loader.R$id: R$id() -androidx.recyclerview.widget.RecyclerView: void setLayoutManager(androidx.recyclerview.widget.RecyclerView$LayoutManager) -io.reactivex.Observable: io.reactivex.Observable combineLatest(java.lang.Iterable,io.reactivex.functions.Function,int) -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -cyanogenmod.app.PartnerInterface: java.lang.String TAG -okhttp3.CertificatePinner: java.lang.String pin(java.security.cert.Certificate) -androidx.appcompat.R$styleable: int AppCompatImageView_tintMode -androidx.constraintlayout.widget.R$string: int abc_capital_on -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerComplete(io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver) -io.reactivex.Observable: io.reactivex.Observable concatMapDelayError(io.reactivex.functions.Function) -com.google.android.material.R$color: int cardview_shadow_end_color -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onScreenTurnedOn() -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getProvince() -com.google.android.material.R$color: int primary_text_disabled_material_light -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -com.google.android.material.R$color: int tooltip_background_dark -androidx.work.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$id: int dragUp -okhttp3.internal.cache2.Relay: void writeHeader(okio.ByteString,long,long) -okhttp3.internal.http2.Hpack$Reader: int readByte() -okhttp3.internal.http1.Http1Codec: void finishRequest() -cyanogenmod.weather.WeatherLocation$1: java.lang.Object[] newArray(int) -james.adaptiveicon.R$bool: int abc_allow_stacked_button_bar -android.didikee.donate.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -wangdaye.com.geometricweather.db.entities.LocationEntity: float getLatitude() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float co -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -androidx.appcompat.resources.R$styleable: int GradientColorItem_android_offset -androidx.constraintlayout.widget.R$dimen: int abc_text_size_caption_material -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void subscribeActual() -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorScheme(int[]) -com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_material_dark -wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextTitle -android.didikee.donate.R$attr: int titleTextStyle -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_1 -io.reactivex.Observable: io.reactivex.Observable zipIterable(java.lang.Iterable,io.reactivex.functions.Function,boolean,int) -cyanogenmod.os.Concierge$ParcelInfo: int getParcelVersion() -io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.MaybeSource) -androidx.hilt.R$id: R$id() -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void dispose() -wangdaye.com.geometricweather.R$attr: int font -androidx.constraintlayout.widget.R$string: int abc_shareactionprovider_share_with_application -com.google.android.material.R$styleable: int AppCompatTheme_switchStyle -com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetEnd -androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentWidth -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeWindSpeed -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_light -androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_Toolbar -james.adaptiveicon.R$styleable: int SearchView_layout -james.adaptiveicon.R$attr: int subtitleTextStyle -androidx.appcompat.R$attr: int actionButtonStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String en_US -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Toolbar -android.didikee.donate.R$drawable: int notification_action_background -androidx.appcompat.R$attr: int backgroundTintMode -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSearchResultSubtitle -okhttp3.RealCall: void cancel() -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType[] $VALUES -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_begin -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean china -androidx.viewpager2.adapter.FragmentStateAdapter$5 -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -com.jaredrummler.android.colorpicker.R$attr: int singleChoiceItemLayout -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_RED_INDEX -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.lang.String unit -wangdaye.com.geometricweather.R$id: int split_action_bar -wangdaye.com.geometricweather.R$color: int colorTextDark -james.adaptiveicon.R$id: int uniform -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.remoteviews.config.Hilt_DailyTrendWidgetConfigActivity -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: int UnitType -androidx.preference.R$color: int primary_text_disabled_material_dark -retrofit2.KotlinExtensions$await$4$2: void onFailure(retrofit2.Call,java.lang.Throwable) -com.amap.api.location.AMapLocation: java.lang.String getAdCode() -androidx.preference.R$drawable: int abc_ic_star_half_black_36dp -wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_dark -retrofit2.HttpServiceMethod$SuspendForBody: HttpServiceMethod$SuspendForBody(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter,boolean) -com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay_v14_Material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum -com.google.android.material.R$style: int Widget_Design_BottomSheet_Modal -androidx.appcompat.R$dimen: int notification_right_side_padding_top -android.didikee.donate.R$styleable: int TextAppearance_android_fontFamily -okhttp3.internal.http2.Hpack$Writer: int headerCount -io.reactivex.Observable: io.reactivex.Observable repeatUntil(io.reactivex.functions.BooleanSupplier) -com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_radio -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.Observer downstream -androidx.recyclerview.R$dimen: int fastscroll_minimum_range -cyanogenmod.app.IPartnerInterface$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_normal -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.WeatherEntity,int) -wangdaye.com.geometricweather.R$attr: int trackColorActive -com.google.android.material.R$attr: int fontFamily -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String type -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: java.lang.String newX -com.jaredrummler.android.colorpicker.R$dimen: int cpv_column_width -com.turingtechnologies.materialscrollbar.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar -com.google.android.material.R$dimen: int mtrl_navigation_item_icon_padding -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lat -com.amap.api.fence.GeoFence: int hashCode() -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textStyle -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar -wangdaye.com.geometricweather.R$drawable: int flag_ko -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_middle_mtrl_light -androidx.preference.R$style: int Base_Widget_AppCompat_PopupWindow -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar -android.didikee.donate.R$dimen: int abc_search_view_preferred_height -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationX -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.CompositeDisposable set -com.amap.api.location.AMapLocationClientOption: boolean l -okhttp3.internal.connection.RouteSelector: okhttp3.Address address -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: double Value -wangdaye.com.geometricweather.db.entities.HourlyEntity: long getTime() -androidx.appcompat.widget.AppCompatSpinner: void setPrompt(java.lang.CharSequence) -james.adaptiveicon.R$color: int foreground_material_dark -org.greenrobot.greendao.database.DatabaseOpenHelper: android.content.Context context -androidx.preference.R$style: int Preference_DropDown -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Base getBase() -androidx.constraintlayout.widget.R$anim: int abc_fade_in -androidx.loader.R$dimen -james.adaptiveicon.R$dimen: int compat_button_inset_horizontal_material -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView_DropDown -androidx.preference.R$styleable: int MenuItem_android_visible -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_visible -okhttp3.internal.connection.StreamAllocation: StreamAllocation(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.Call,okhttp3.EventListener,java.lang.Object) -com.amap.api.location.AMapLocationClient: java.lang.String getVersion() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontWeight -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getHideMotionSpec() -com.google.android.material.R$attr: int titleMarginBottom -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSize -android.didikee.donate.R$styleable: int[] ColorStateListItem -com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_Dialog -cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(int,int,boolean) -androidx.loader.R$style: int TextAppearance_Compat_Notification -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_thumb -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_MIDDLE -androidx.constraintlayout.widget.R$id: int action_menu_divider -com.google.android.material.R$attr: int valueTextColor -cyanogenmod.profiles.BrightnessSettings$1: cyanogenmod.profiles.BrightnessSettings createFromParcel(android.os.Parcel) -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -androidx.lifecycle.Transformations$2$1: androidx.lifecycle.Transformations$2 this$0 -androidx.constraintlayout.widget.R$attr: int fontStyle -cyanogenmod.hardware.DisplayMode: java.lang.String name -wangdaye.com.geometricweather.R$string: int key_notification_can_be_cleared -wangdaye.com.geometricweather.R$color: int colorSearchBarBackground_light -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen -okhttp3.ResponseBody$BomAwareReader: int read(char[],int,int) -okhttp3.OkHttpClient$Builder: boolean followSslRedirects -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -wangdaye.com.geometricweather.R$styleable: int Constraint_android_minWidth -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Placeholder -androidx.vectordrawable.R$styleable: int[] GradientColor -com.turingtechnologies.materialscrollbar.R$attr: int lineSpacing -wangdaye.com.geometricweather.R$drawable: int notif_temp_116 -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: android.os.IBinder mRemote -com.google.android.material.R$styleable: int ProgressIndicator_indicatorColor -wangdaye.com.geometricweather.R$drawable: int notif_temp_138 -wangdaye.com.geometricweather.R$style: int AndroidThemeColorAccentYellow -androidx.swiperefreshlayout.R$styleable: int[] GradientColor -com.amap.api.location.AMapLocation: void setLongitude(double) -james.adaptiveicon.R$attr: int contentInsetStart -wangdaye.com.geometricweather.R$color: int colorTextSubtitle_dark -com.amap.api.fence.PoiItem: void setAddress(java.lang.String) -com.google.android.material.transformation.FabTransformationScrimBehavior -com.google.android.material.button.MaterialButton -com.google.android.material.R$dimen: int design_bottom_navigation_icon_size -android.didikee.donate.R$id: int topPanel -wangdaye.com.geometricweather.R$string: int feedback_click_to_get_more -androidx.appcompat.widget.SearchView: SearchView(android.content.Context,android.util.AttributeSet,int) -okhttp3.internal.tls.OkHostnameVerifier: int ALT_DNS_NAME -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul1H -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_imageButtonStyle -okhttp3.internal.http.HttpHeaders: long stringToLong(java.lang.String) -com.amap.api.location.AMapLocationClientOption: long getScanWifiInterval() -okhttp3.internal.http2.Http2Reader$ContinuationSource -androidx.activity.R$id: int icon -wangdaye.com.geometricweather.R$id: int container_main_header_tempTxt -wangdaye.com.geometricweather.R$drawable: int flag_ja -com.amap.api.location.UmidtokenInfo$1: void run() -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle valueOf(java.lang.String) -androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -okhttp3.internal.http.HttpMethod: HttpMethod() -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom -com.google.android.material.R$color: int abc_decor_view_status_guard_light -androidx.constraintlayout.widget.R$styleable: int Toolbar_navigationContentDescription -okio.SegmentedByteString: okio.ByteString sha256() -cyanogenmod.platform.Manifest$permission: java.lang.String MANAGE_ALARMS -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityCreated(android.app.Activity,android.os.Bundle) -wangdaye.com.geometricweather.R$id: int activity_widget_config_viewStyleTitle -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_summaryOn -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.tabs.TabLayout: int getTabMinWidth() -androidx.viewpager2.R$attr: int layoutManager -james.adaptiveicon.R$id: int action_bar_activity_content -okio.Sink: okio.Timeout timeout() -cyanogenmod.util.ColorUtils: double[] sColorTable -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -androidx.transition.R$drawable: int notification_bg_low_pressed -com.google.android.material.appbar.AppBarLayout: int getUpNestedPreScrollRange() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getStreet_number() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -com.google.android.material.tabs.TabLayout: void setTabIconTintResource(int) -com.google.android.material.R$layout: int design_menu_item_action_area -androidx.dynamicanimation.R$styleable: int ColorStateListItem_android_color -io.reactivex.subjects.PublishSubject$PublishDisposable -com.google.android.material.chip.Chip: void setCloseIconEnabledResource(int) -com.google.android.material.chip.ChipGroup: int getChipSpacingHorizontal() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -cyanogenmod.app.PartnerInterface: int ZEN_MODE_IMPORTANT_INTERRUPTIONS -cyanogenmod.app.Profile: void setName(java.lang.String) -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_22 -com.jaredrummler.android.colorpicker.R$attr: int overlapAnchor -androidx.viewpager2.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: int Version -androidx.preference.R$dimen: int hint_pressed_alpha_material_light -androidx.hilt.work.R$layout: int notification_template_custom_big -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconTintList(android.content.res.ColorStateList) -com.google.android.material.R$styleable: int MenuItem_android_checked -com.turingtechnologies.materialscrollbar.R$drawable: int abc_tab_indicator_material -cyanogenmod.weatherservice.IWeatherProviderServiceClient: void setServiceRequestState(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.ServiceRequestResult,int) -wangdaye.com.geometricweather.R$array: int air_quality_co_unit_values -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabBarStyle -wangdaye.com.geometricweather.R$layout: int item_weather_daily_wind -com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$attr: int pressedTranslationZ -com.xw.repo.bubbleseekbar.R$drawable: int tooltip_frame_light -wangdaye.com.geometricweather.R$color: int dim_foreground_material_dark -androidx.preference.R$styleable: int PreferenceImageView_android_maxWidth -android.didikee.donate.R$style: int Widget_AppCompat_RatingBar -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long,boolean) -androidx.preference.R$attr: int buttonBarStyle -com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat_Dark -cyanogenmod.weatherservice.ServiceRequestResult: java.lang.String access$402(cyanogenmod.weatherservice.ServiceRequestResult,java.lang.String) -io.reactivex.subjects.PublishSubject$PublishDisposable: boolean isDisposed() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastHorizontalBias -com.github.rahatarmanahmed.cpv.CircularProgressView: void setIndeterminate(boolean) -androidx.viewpager2.R$id: int blocking -okhttp3.internal.http2.Http2Stream: void closeLater(okhttp3.internal.http2.ErrorCode) -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void drain() -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List advices -android.didikee.donate.R$styleable: int RecycleListView_paddingBottomNoButtons -com.google.android.material.R$styleable: int Constraint_flow_wrapMode -cyanogenmod.providers.CMSettings$Secure: java.lang.String RING_HOME_BUTTON_BEHAVIOR -cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String itemTitle -com.google.android.material.R$styleable: int KeyPosition_pathMotionArc -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: boolean val$visible -james.adaptiveicon.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -com.google.android.material.R$attr: int fontProviderCerts -okio.RealBufferedSource: long indexOfElement(okio.ByteString,long) -retrofit2.RequestBuilder: void setRelativeUrl(java.lang.Object) -cyanogenmod.app.StatusBarPanelCustomTile$1 -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.Scheduler$Worker worker -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean isRecoverable(java.io.IOException,boolean) -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit CM -wangdaye.com.geometricweather.R$attr: int badgeStyle -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ButtonBar -com.google.android.material.R$styleable: int AppCompatTextView_drawableTint -androidx.constraintlayout.widget.R$dimen: int compat_notification_large_icon_max_width -okio.ByteString: void write(java.io.OutputStream) -androidx.constraintlayout.widget.R$id: int uniform -wangdaye.com.geometricweather.R$animator: int weather_haze_2 -com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat_Light -com.amap.api.fence.GeoFenceClient: void setActivateAction(int) -androidx.constraintlayout.widget.R$dimen: int compat_button_inset_vertical_material -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: int sourceMode -wangdaye.com.geometricweather.R$attr: int dialogMessage -com.google.android.material.R$dimen: int mtrl_calendar_day_width -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.background.receiver.widget.WidgetDayWeekProvider -androidx.cardview.R$style: int CardView_Dark -com.turingtechnologies.materialscrollbar.R$styleable: int[] TabItem -com.google.gson.stream.JsonWriter: boolean htmlSafe -okhttp3.internal.connection.RealConnection: okhttp3.internal.http.HttpCodec newCodec(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,okhttp3.internal.connection.StreamAllocation) -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent valueOf(java.lang.String) -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream newStream(int,java.util.List,boolean) -androidx.viewpager.widget.ViewPager$SavedState -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset -cyanogenmod.app.ProfileGroup$1 -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void dispose() -androidx.appcompat.R$dimen: int hint_pressed_alpha_material_dark -androidx.constraintlayout.widget.R$styleable: int MenuItem_actionProviderClass -com.google.android.material.R$color: int ripple_material_light -androidx.appcompat.R$styleable: int CompoundButton_android_button -androidx.loader.R$id: int notification_background -androidx.customview.R$dimen: int compat_notification_large_icon_max_width -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showAlphaSlider -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_progress_in_float -wangdaye.com.geometricweather.main.dialogs.LocationPermissionStatementDialog -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setPrecipitationColor(int) -com.google.android.material.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense -com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getIndicatorOffset() -james.adaptiveicon.R$attr: int navigationMode -androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$string: int settings_notification_hide_icon_on -wangdaye.com.geometricweather.R$dimen: int disabled_alpha_material_dark -wangdaye.com.geometricweather.R$anim: int popup_show_bottom_right -retrofit2.BuiltInConverters$RequestBodyConverter: retrofit2.BuiltInConverters$RequestBodyConverter INSTANCE -androidx.fragment.app.Fragment -wangdaye.com.geometricweather.R$drawable: int ic_building -com.xw.repo.bubbleseekbar.R$attr: int textAppearancePopupMenuHeader -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_chainStyle -com.google.android.material.R$string: int mtrl_picker_invalid_format_example -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.RequestBody delegate -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_BLUE_INDEX -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onNext(java.lang.Object) -androidx.appcompat.R$styleable -com.google.android.material.R$attr: int path_percent -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderAuthority -com.turingtechnologies.materialscrollbar.R$styleable: int[] ScrimInsetsFrameLayout -wangdaye.com.geometricweather.R$string: int settings_title_speed_unit -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_BottomSheetDialog -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight -james.adaptiveicon.R$styleable: int ViewStubCompat_android_layout -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onError(java.lang.Throwable) -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabText -com.bumptech.glide.load.engine.GlideException: void printStackTrace() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum Maximum -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeDegreeDayTemperature(java.lang.Integer) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date updateDate -com.google.android.material.R$attr: int materialCardViewStyle -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy -androidx.preference.R$id: int buttonPanel -com.google.android.material.slider.BaseSlider: void setValuesInternal(java.util.ArrayList) -cyanogenmod.providers.CMSettings$System: java.lang.String FORWARD_LOOKUP_PROVIDER -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_LANDSCAPE -io.reactivex.internal.schedulers.RxThreadFactory -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onNext(java.lang.Object) -androidx.appcompat.widget.ActivityChooserView: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification -androidx.appcompat.R$layout: int abc_activity_chooser_view -androidx.customview.R$id -com.jaredrummler.android.colorpicker.R$attr: int tooltipFrameBackground -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_shapeAppearance -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean isDisposed() -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode[] values() -com.google.android.material.R$styleable: int SwitchCompat_android_textOff -okio.BufferedSource: java.lang.String readUtf8LineStrict() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country -androidx.lifecycle.extensions.R$id: int line1 -android.didikee.donate.R$attr: int toolbarStyle -wangdaye.com.geometricweather.R$attr: int drawableLeftCompat -androidx.preference.R$layout: int preference_information_material -wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_grey -androidx.constraintlayout.widget.R$color: int abc_secondary_text_material_dark -com.google.android.material.button.MaterialButtonToggleGroup: void setSingleSelection(int) -androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontStyle -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: ObservableGroupBy$GroupByObserver(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,int,boolean) -androidx.lifecycle.ViewModelProviders$DefaultFactory -com.jaredrummler.android.colorpicker.R$attr: int actionLayout -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedHeightMajor -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setAddress_detail(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean) -androidx.loader.R$styleable: int FontFamily_fontProviderAuthority -androidx.appcompat.resources.R$attr -okhttp3.internal.ws.RealWebSocket: boolean awaitingPong -com.turingtechnologies.materialscrollbar.R$id: int largeLabel -okhttp3.Response: okhttp3.Handshake handshake() -wangdaye.com.geometricweather.R$styleable: int Preference_isPreferenceVisible -cyanogenmod.power.PerformanceManager: int[] POSSIBLE_POWER_PROFILES -androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderAuthority -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView_Menu -com.google.android.material.R$dimen: int abc_seekbar_track_progress_height_material -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver -cyanogenmod.externalviews.KeyguardExternalView: void onAttachedToWindow() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogCenterButtons -wangdaye.com.geometricweather.R$style: int Preference_SeekBarPreference -com.xw.repo.bubbleseekbar.R$id: int parentPanel -wangdaye.com.geometricweather.R$attr: int flow_verticalGap -android.didikee.donate.R$dimen: int abc_dialog_padding_material -com.jaredrummler.android.colorpicker.R$color: int material_grey_850 -wangdaye.com.geometricweather.R$styleable: int Motion_animate_relativeTo -okhttp3.Cache$CacheResponseBody$1: okhttp3.internal.cache.DiskLruCache$Snapshot val$snapshot -com.turingtechnologies.materialscrollbar.R$layout: int support_simple_spinner_dropdown_item -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_showMotionSpec -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_text_size -androidx.lifecycle.GeneratedAdapter -io.reactivex.internal.observers.DeferredScalarDisposable: int requestFusion(int) -androidx.hilt.R$id: int normal -android.didikee.donate.R$attr: int queryHint -androidx.appcompat.R$styleable: int Toolbar_popupTheme -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float rain -cyanogenmod.weather.WeatherInfo$Builder: int mTempUnit -androidx.preference.R$style: int TextAppearance_AppCompat_Title_Inverse -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_font -okhttp3.Response$Builder: Response$Builder() -android.didikee.donate.R$styleable: int MenuItem_iconTint -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder dispatcher(okhttp3.Dispatcher) -com.google.android.material.R$drawable: int btn_radio_on_mtrl -androidx.hilt.R$id: int info -okhttp3.Protocol: okhttp3.Protocol valueOf(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginEnd -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status valueOf(java.lang.String) -androidx.lifecycle.SavedStateHandleController$OnRecreation: void onRecreated(androidx.savedstate.SavedStateRegistryOwner) -james.adaptiveicon.R$dimen: int abc_select_dialog_padding_start_material -com.google.android.material.R$color: int foreground_material_light -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ButtonBar -androidx.preference.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherText(java.lang.String) -androidx.fragment.R$drawable: int notification_bg_normal -okhttp3.MultipartBody$Part: okhttp3.Headers headers() -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLocationPurpose(com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose) -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: ObservableObserveOn$ObserveOnObserver(io.reactivex.Observer,io.reactivex.Scheduler$Worker,boolean,int) -androidx.preference.R$color: int switch_thumb_disabled_material_light -cyanogenmod.externalviews.ExternalViewProperties: android.graphics.Rect getHitRect() -androidx.appcompat.resources.R$styleable: int[] StateListDrawable -androidx.constraintlayout.widget.R$styleable: int[] LinearLayoutCompat_Layout -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarButtonStyle -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Menu -cyanogenmod.weatherservice.WeatherProviderService: void onConnected() -androidx.constraintlayout.widget.R$id: int screen -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_fontVariationSettings -wangdaye.com.geometricweather.R$id: int off -wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_xml -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: int status -okhttp3.MediaType: java.lang.String charset -androidx.drawerlayout.R$color: int notification_action_color_filter -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design -com.google.android.material.R$styleable: int TabLayout_tabMaxWidth -okhttp3.Dispatcher: java.util.Deque runningAsyncCalls -androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveDataInternal(java.lang.String,boolean,java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomNavigationView -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.Class serverProviderClass -com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$styleable: int LinearLayoutCompat_android_orientation -androidx.preference.R$anim: int fragment_open_exit -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupMenu -androidx.appcompat.widget.ActionMenuView: void setOnMenuItemClickListener(androidx.appcompat.widget.ActionMenuView$OnMenuItemClickListener) -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: void setValue(java.util.List) -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder expiresAt(long) -android.didikee.donate.R$color: int material_blue_grey_950 -com.google.android.material.R$styleable: int Layout_android_layout_marginRight -com.google.android.material.R$styleable: int Constraint_layout_constraintCircle -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle -androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragDirection -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar_Indicator -com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getErrorIconDrawable() -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.Headers,okhttp3.RequestBody) -okhttp3.internal.http2.Http2Connection$2: long val$unacknowledgedBytesRead -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge -androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -androidx.activity.R$id: int tag_accessibility_actions -androidx.constraintlayout.widget.R$styleable: int MotionLayout_layoutDescription -androidx.appcompat.R$color: int bright_foreground_inverse_material_dark -com.google.android.material.slider.RangeSlider: void setTrackTintList(android.content.res.ColorStateList) -okhttp3.internal.http2.StreamResetException: StreamResetException(okhttp3.internal.http2.ErrorCode) -com.google.android.material.R$attr: int actionMenuTextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: AccuCurrentResult$PrecipitationSummary$Precipitation$Metric() -androidx.dynamicanimation.R$attr: int fontStyle -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType valueOf(java.lang.String) -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date -okhttp3.internal.ws.WebSocketWriter: void writePing(okio.ByteString) -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_dropDownWidth -android.didikee.donate.R$id: int split_action_bar -com.bumptech.glide.R$styleable: int[] CoordinatorLayout -com.google.android.material.R$plurals: R$plurals() -okhttp3.internal.http2.Http2Stream$FramingSource: long read(okio.Buffer,long) -androidx.viewpager.R$id: int action_image -okhttp3.Response$Builder: okhttp3.Headers$Builder headers -androidx.appcompat.app.WindowDecorActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -james.adaptiveicon.R$id: int action_divider -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_transformPivotX -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_disableDependentsState -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String country -com.google.android.material.circularreveal.CircularRevealRelativeLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -androidx.preference.R$attr: int color -com.google.android.material.R$anim: int mtrl_bottom_sheet_slide_out -androidx.preference.R$anim: int abc_popup_exit -androidx.customview.R$attr: int font -androidx.lifecycle.LifecycleRegistry$ObserverWithState: LifecycleRegistry$ObserverWithState(androidx.lifecycle.LifecycleObserver,androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX() -james.adaptiveicon.R$style: int Widget_AppCompat_ProgressBar_Horizontal -io.reactivex.Observable: io.reactivex.Observable concatEager(io.reactivex.ObservableSource) -androidx.appcompat.resources.R$styleable: int GradientColor_android_gradientRadius -cyanogenmod.externalviews.KeyguardExternalView: android.content.ServiceConnection mServiceConnection -androidx.loader.R$style: int Widget_Compat_NotificationActionText -com.google.android.material.R$styleable: int CardView_cardMaxElevation -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_doneButton -com.google.android.material.R$animator: int design_fab_hide_motion_spec -wangdaye.com.geometricweather.R$attr: int itemStrokeWidth -androidx.lifecycle.LifecycleRegistry: void popParentState() -com.xw.repo.bubbleseekbar.R$anim: int abc_grow_fade_in_from_bottom -androidx.preference.R$styleable: int AppCompatTheme_listDividerAlertDialog -wangdaye.com.geometricweather.R$id: int tag_unhandled_key_listeners -io.reactivex.internal.disposables.DisposableHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) -okhttp3.internal.Internal: Internal() -cyanogenmod.app.Profile: int getNotificationLightMode() -androidx.appcompat.widget.ActivityChooserModel: void setOnChooseActivityListener(androidx.appcompat.widget.ActivityChooserModel$OnChooseActivityListener) -wangdaye.com.geometricweather.R$id: int forever -androidx.appcompat.R$drawable: int notification_template_icon_bg -androidx.vectordrawable.animated.R$id: int action_divider -com.turingtechnologies.materialscrollbar.R$string: int abc_prepend_shortcut_label -wangdaye.com.geometricweather.R$id: int notification_background -androidx.customview.R$color: int secondary_text_default_material_light -cyanogenmod.alarmclock.CyanogenModAlarmClock: android.content.Intent createAlarmIntent(android.content.Context) -androidx.loader.R$id: int info -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setStatus(int) -androidx.recyclerview.widget.RecyclerView$LayoutManager$Properties -androidx.viewpager.R$id: int notification_main_column -androidx.preference.R$id: int accessibility_custom_action_11 -okhttp3.internal.platform.Platform: Platform() -android.didikee.donate.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_toRightOf -androidx.appcompat.R$id: int action_bar_subtitle -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_stacked_max_height -cyanogenmod.app.LiveLockScreenInfo$1: cyanogenmod.app.LiveLockScreenInfo[] newArray(int) -io.reactivex.internal.util.EmptyComponent: io.reactivex.Observer asObserver() -com.turingtechnologies.materialscrollbar.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_baselineAligned -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ImageButton -okhttp3.internal.cache.DiskLruCache: java.io.File journalFile -android.didikee.donate.R$attr: int colorPrimaryDark -com.google.android.material.R$attr: R$attr() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionMenuTextAppearance -com.google.android.material.R$color: int mtrl_bottom_nav_colored_item_tint -com.google.android.material.slider.RangeSlider: void setThumbTintList(android.content.res.ColorStateList) -com.baidu.location.e.l$b: com.baidu.location.e.l$b a -wangdaye.com.geometricweather.R$drawable: int shortcuts_cloudy -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.lang.Object NEXT_WINDOW -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.util.List indices -com.jaredrummler.android.colorpicker.R$attr: int thumbTint -okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part createFormData(java.lang.String,java.lang.String,okhttp3.RequestBody) -io.reactivex.internal.util.NotificationLite: boolean accept(java.lang.Object,io.reactivex.Observer) -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_subtitle -com.google.android.material.textfield.TextInputLayout: void setStartIconOnClickListener(android.view.View$OnClickListener) -okhttp3.FormBody$Builder: okhttp3.FormBody$Builder add(java.lang.String,java.lang.String) -com.google.android.material.R$style: int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize -androidx.preference.R$id: int right -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Delete -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Chip -androidx.hilt.lifecycle.R$color: int ripple_material_light -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onError(java.lang.Throwable) -okhttp3.internal.ws.RealWebSocket: void initReaderAndWriter(java.lang.String,okhttp3.internal.ws.RealWebSocket$Streams) -wangdaye.com.geometricweather.R$attr: int backgroundInsetEnd -okhttp3.HttpUrl: java.util.List percentDecode(java.util.List,boolean) -wangdaye.com.geometricweather.R$color: int mtrl_calendar_selected_range -okhttp3.logging.LoggingEventListener: void logWithTime(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$layout: int abc_action_menu_layout -androidx.customview.R$dimen: int notification_action_text_size -com.google.android.material.R$attr: int buttonBarNeutralButtonStyle -okio.SegmentedByteString: java.lang.String base64Url() -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListMenuView -retrofit2.adapter.rxjava2.ResultObservable: io.reactivex.Observable upstream -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_INTENSITY_INDEX -com.xw.repo.BubbleSeekBar: void setBubbleColor(int) -androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitleTextColor -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: float getIntervalInHour() -io.reactivex.Observable: io.reactivex.Observable concatArrayEager(int,int,io.reactivex.ObservableSource[]) -androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnCreate() -wangdaye.com.geometricweather.R$id: int shades_layout -com.google.android.material.R$dimen: int abc_dialog_padding_top_material -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onComplete() -james.adaptiveicon.R$dimen: int tooltip_precise_anchor_threshold -com.google.android.material.R$color: int mtrl_chip_surface_color -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -retrofit2.adapter.rxjava2.CallExecuteObservable: void subscribeActual(io.reactivex.Observer) -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_setLiveLockScreenEnabled -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_default_mtrl_alpha -com.github.rahatarmanahmed.cpv.CircularProgressView$5: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -wangdaye.com.geometricweather.R$layout: int item_weather_daily_title -com.google.android.material.R$attr: int layout_scrollInterpolator -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String level -wangdaye.com.geometricweather.R$styleable: int TabItem_android_text -wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newDevSession(android.content.Context,java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_homeLayout -androidx.appcompat.widget.SearchView: void setOnQueryTextFocusChangeListener(android.view.View$OnFocusChangeListener) -cyanogenmod.platform.R$attr: R$attr() -wangdaye.com.geometricweather.R$attr: int maxActionInlineWidth -com.xw.repo.bubbleseekbar.R$color: int abc_background_cache_hint_selector_material_dark -wangdaye.com.geometricweather.R$attr: int layout_constraintTop_toTopOf -androidx.drawerlayout.R$attr: int fontWeight -com.google.android.material.R$dimen: int notification_action_text_size -james.adaptiveicon.R$drawable: int abc_ic_search_api_material -androidx.legacy.coreutils.R$id: int text -com.google.android.material.R$animator: int design_appbar_state_list_animator -wangdaye.com.geometricweather.R$attr: int drawableEndCompat -com.xw.repo.bubbleseekbar.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$id: int month_grid -androidx.constraintlayout.widget.R$attr: int layout_constraintTop_creator -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceTheme -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type[] typeArguments -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void setResource(io.reactivex.disposables.Disposable) -com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_circle_large -androidx.lifecycle.extensions.R$attr: int fontStyle -wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_android_foreground -com.xw.repo.bubbleseekbar.R$color: int secondary_text_default_material_dark -okhttp3.logging.LoggingEventListener: void connectStart(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy) -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void setDisposable(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvLevel -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void dispose() -androidx.swiperefreshlayout.R$id: int text2 -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -androidx.constraintlayout.widget.R$attr: int layout_goneMarginLeft -com.turingtechnologies.materialscrollbar.R$attr: int chipStrokeWidth -com.google.android.material.R$styleable: int KeyPosition_percentHeight -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Long id -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.util.Date date -androidx.constraintlayout.widget.R$attr: int flow_lastHorizontalStyle -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleMargin -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTextPadding -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchMinWidth -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMargins -com.google.android.material.R$color: int test_mtrl_calendar_day -com.google.android.material.R$color: int design_dark_default_color_on_error -cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mOnLongClick -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox -com.turingtechnologies.materialscrollbar.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$attr: int contentPaddingBottom -com.google.android.material.R$drawable: int abc_ic_ab_back_material -wangdaye.com.geometricweather.R$styleable: int SearchView_closeIcon -android.didikee.donate.R$attr: int actionModeSplitBackground -cyanogenmod.app.CustomTile$ExpandedStyle$1: cyanogenmod.app.CustomTile$ExpandedStyle[] newArray(int) -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -com.turingtechnologies.materialscrollbar.R$attr: int actionModeSelectAllDrawable -androidx.drawerlayout.R$styleable: int ColorStateListItem_alpha -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView -com.google.android.material.card.MaterialCardView: void setCheckedIconTint(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_arrowShaftLength -androidx.preference.R$styleable: int[] AnimatedStateListDrawableTransition -wangdaye.com.geometricweather.R$attr: int waveShape -androidx.preference.R$styleable: int PreferenceFragmentCompat_android_divider -wangdaye.com.geometricweather.R$attr: int endIconTintMode -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String LongPhrase -com.google.android.material.R$attr: int colorOnBackground -androidx.recyclerview.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: double val -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light -okio.RealBufferedSink: void write(okio.Buffer,long) -androidx.swiperefreshlayout.R$id: int right_icon -androidx.core.R$layout: int notification_template_custom_big -android.didikee.donate.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric() -james.adaptiveicon.R$styleable: int[] PopupWindowBackgroundState -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.AbstractDao getDao(java.lang.Class) -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeManager sInstance -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: long serialVersionUID -okhttp3.internal.http2.Http2Reader$Handler: void ping(boolean,int,int) -androidx.vectordrawable.animated.R$id: int tag_screen_reader_focusable -com.google.gson.JsonSyntaxException: long serialVersionUID -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: java.lang.Object call() -androidx.fragment.R$anim: int fragment_open_enter -androidx.lifecycle.ComputableLiveData: ComputableLiveData() -wangdaye.com.geometricweather.R$string: int cpv_default_title -com.google.android.material.tabs.TabItem: TabItem(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_Tooltip -okhttp3.Cookie: java.lang.String toString(boolean) -cyanogenmod.weather.RequestInfo: int hashCode() -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEVELOPMENT_SHORTCUT -cyanogenmod.weather.WeatherInfo$DayForecast: java.lang.String toString() -androidx.appcompat.R$attr: int titleTextStyle -android.didikee.donate.R$styleable: int TextAppearance_android_textStyle -androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.http.HttpCodec httpCodec -io.reactivex.Observable: io.reactivex.Maybe elementAt(long) -cyanogenmod.app.ICustomTileListener$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$color: int colorLevel_6 -cyanogenmod.profiles.AirplaneModeSettings: int mValue -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_divider -cyanogenmod.app.PartnerInterface: cyanogenmod.app.PartnerInterface sPartnerInterfaceInstance -com.google.android.material.R$color: int mtrl_popupmenu_overlay_color -com.turingtechnologies.materialscrollbar.R$id: int transition_current_scene -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_motionStagger -com.amap.api.location.CoordinateConverter: com.amap.api.location.DPoint d -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setValue(java.util.List) -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder sslSocketFactory(javax.net.ssl.SSLSocketFactory,javax.net.ssl.X509TrustManager) -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline6 -cyanogenmod.library.R$id: R$id() -com.bumptech.glide.R$string: R$string() -okhttp3.Cache: void initialize() -wangdaye.com.geometricweather.R$bool: int cpv_default_anim_autostart -io.reactivex.internal.observers.InnerQueuedObserver: void onError(java.lang.Throwable) -androidx.lifecycle.MediatorLiveData$Source: void onChanged(java.lang.Object) -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition BELOW_LINE -wangdaye.com.geometricweather.R$attr: int elevationOverlayEnabled -com.github.rahatarmanahmed.cpv.CircularProgressView: float INDETERMINANT_MIN_SWEEP -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Spinner -wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding -androidx.preference.R$id: int spacer -com.google.android.material.textfield.TextInputLayout: void setPrefixTextColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_level -com.google.android.material.R$style: int Widget_MaterialComponents_BottomSheet_Modal -androidx.constraintlayout.widget.R$attr: int motionInterpolator -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_CBC_SHA -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: cyanogenmod.weather.IWeatherServiceProviderChangeListener asInterface(android.os.IBinder) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: AccuDailyResult$DailyForecasts$Day$WindGust$Direction() -james.adaptiveicon.R$styleable: int SearchView_submitBackground -wangdaye.com.geometricweather.R$drawable: int material_ic_menu_arrow_down_black_24dp -wangdaye.com.geometricweather.R$layout: int item_weather_daily_value -androidx.swiperefreshlayout.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTheme -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month_navigation -okhttp3.TlsVersion: java.util.List forJavaNames(java.lang.String[]) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastVerticalStyle -wangdaye.com.geometricweather.R$color: int design_fab_shadow_end_color -androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_controlBackground -androidx.appcompat.R$style: int Platform_V21_AppCompat -androidx.constraintlayout.widget.R$id: int parentPanel -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_80 -com.google.android.material.R$styleable: int AppCompatImageView_tintMode -android.didikee.donate.R$id: int action_bar_root -com.google.android.material.slider.BaseSlider: int getHaloRadius() -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$string: int material_hour_suffix -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_tooltipFrameBackground -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawableItem_android_drawable -com.google.android.material.R$drawable: int abc_text_select_handle_middle_mtrl_light -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_icon_padding -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void dispose() -okio.AsyncTimeout$Watchdog -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Small -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.os.RemoteCallbackList mCallbacks -androidx.preference.DialogPreference: DialogPreference(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_editor_absoluteY -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl -androidx.appcompat.R$styleable: int FontFamily_fontProviderAuthority -okhttp3.internal.Util: okhttp3.ResponseBody EMPTY_RESPONSE -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date moonriseTime -retrofit2.converter.gson.GsonRequestBodyConverter: okhttp3.RequestBody convert(java.lang.Object) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_CBC_SHA256 -androidx.appcompat.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -wangdaye.com.geometricweather.R$layout: int dialog_minimal_icon -com.google.android.material.snackbar.SnackbarContentLayout -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_48dp -com.google.android.material.R$bool: int abc_config_actionMenuItemAllCaps -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String TypeID -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours -androidx.constraintlayout.widget.R$dimen: int abc_disabled_alpha_material_dark -androidx.legacy.coreutils.R$id: int forever -io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable,int) -cyanogenmod.alarmclock.CyanogenModAlarmClock: CyanogenModAlarmClock() -wangdaye.com.geometricweather.R$drawable: int ic_play_store -com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_selected -com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_start_color -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Pollen getPollen() -retrofit2.RequestFactory$Builder: boolean gotField -okhttp3.EventListener: void connectEnd(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather -com.github.rahatarmanahmed.cpv.R$attr: int cpv_maxProgress -androidx.lifecycle.process.R -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_height -androidx.vectordrawable.R$style: int Widget_Compat_NotificationActionContainer -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomSheet_Modal -com.google.android.material.R$attr: int customFloatValue -com.google.android.gms.base.R$id: int none -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierMargin -android.didikee.donate.R$anim: int abc_slide_out_top -androidx.appcompat.R$attr: int actionLayout -com.google.android.material.datepicker.DateSelector -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_subtitle -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: int unitArrayIndex -okhttp3.internal.http2.Hpack$Reader: Hpack$Reader(int,int,okio.Source) -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_middle_mtrl_dark -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemRippleColor -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign -cyanogenmod.providers.CMSettings$Secure: java.lang.String WEATHER_PROVIDER_SERVICE -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Red -com.google.android.material.R$color: int material_on_surface_emphasis_high_type -androidx.customview.R$id: int text -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton -android.didikee.donate.R$style: int Animation_AppCompat_DropDownUp -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -androidx.hilt.lifecycle.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -androidx.core.R$id: int tag_accessibility_pane_title -androidx.recyclerview.R$styleable: int GradientColor_android_tileMode -okio.Okio: okio.Sink sink(java.io.File) -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.Observer downstream -com.jaredrummler.android.colorpicker.R$styleable: int[] TextAppearance -wangdaye.com.geometricweather.R$layout: int item_weather_daily_overview -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_min_width_major -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_typeface -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setAdaptiveWidthEnabled(boolean) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: void run() -wangdaye.com.geometricweather.db.entities.MinutelyEntity -androidx.transition.R$id: int notification_main_column -com.google.android.material.R$attr: int hintTextColor -retrofit2.KotlinExtensions$await$2$2: KotlinExtensions$await$2$2(kotlinx.coroutines.CancellableContinuation) -okio.RealBufferedSource$1 -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isIce() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton_CloseMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String type -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents -com.google.android.material.R$styleable: int MenuItem_alphabeticModifiers -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogCenterButtons -androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SearchView_ActionBar -androidx.preference.R$dimen: int abc_alert_dialog_button_dimen -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -james.adaptiveicon.R$styleable: int[] SwitchCompat -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_EMPTY -androidx.preference.R$attr: int ratingBarStyleSmall -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void cancel(io.reactivex.internal.queue.SpscLinkedArrayQueue,io.reactivex.internal.queue.SpscLinkedArrayQueue) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver(io.reactivex.CompletableObserver,io.reactivex.functions.Function,boolean) -androidx.dynamicanimation.R$styleable: int GradientColorItem_android_offset -io.reactivex.internal.util.VolatileSizeArrayList -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_elevation -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.jaredrummler.android.colorpicker.R$dimen: int abc_control_corner_material -androidx.appcompat.R$id: int async -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getName() -androidx.activity.R$attr: int fontVariationSettings -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.IRequestInfoListener mRequestInfoListener -okhttp3.Cache$CacheRequestImpl$1: okhttp3.Cache$CacheRequestImpl this$1 -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_orientation -james.adaptiveicon.R$drawable: int abc_list_pressed_holo_light -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.HourlyEntity) -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_track_mtrl_alpha -wangdaye.com.geometricweather.common.basic.GeoViewModel: GeoViewModel(android.app.Application) -androidx.appcompat.R$drawable: int abc_popup_background_mtrl_mult -androidx.appcompat.R$styleable: int ActionBar_backgroundStacked -androidx.preference.R$styleable: int PreferenceFragment_allowDividerAfterLastItem -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlNormal -androidx.hilt.R$drawable -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginStart() -androidx.recyclerview.widget.RecyclerView: void setItemAnimator(androidx.recyclerview.widget.RecyclerView$ItemAnimator) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult -cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.content.ComponentName,int) -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconGravity -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy[] values() -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onComplete() -cyanogenmod.themes.ThemeManager: void requestThemeChange(java.lang.String,java.util.List) -com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.drawable.Drawable getContentBackground() -androidx.preference.R$attr: int layout_dodgeInsetEdges -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: int unitArrayIndex -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder callFactory(okhttp3.Call$Factory) -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -com.google.android.material.slider.BaseSlider: void setTickActiveTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: java.lang.String Unit -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationX -androidx.appcompat.R$id: int search_edit_frame -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int CANCELLED -com.google.gson.LongSerializationPolicy$1: LongSerializationPolicy$1(java.lang.String,int) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display2 -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean delayErrors -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents -james.adaptiveicon.R$attr: int alertDialogButtonGroupStyle -okio.RealBufferedSource: long readDecimalLong() -com.turingtechnologies.materialscrollbar.R$id: int action_container -com.google.android.material.R$styleable: int AppCompatTheme_windowNoTitle -androidx.appcompat.R$styleable: int AppCompatImageView_srcCompat -io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler,boolean,int) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue getOrCreateQueue() -wangdaye.com.geometricweather.common.ui.widgets.TagView: void setUncheckedBackgroundColor(int) -com.google.android.material.R$styleable: int Chip_shapeAppearanceOverlay -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_color -james.adaptiveicon.R$style: R$style() -androidx.preference.R$attr: int track -androidx.recyclerview.widget.RecyclerView$LayoutManager$Properties: RecyclerView$LayoutManager$Properties() -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundTintList(android.content.res.ColorStateList) -com.amap.api.location.AMapLocation: java.lang.String l(com.amap.api.location.AMapLocation,java.lang.String) -cyanogenmod.app.CustomTile$ExpandedItem$1 -cyanogenmod.themes.IThemeChangeListener$Stub: IThemeChangeListener$Stub() -androidx.lifecycle.ReportFragment: void dispatch(android.app.Activity,androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Temperature -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator -com.jaredrummler.android.colorpicker.R$color: int material_grey_50 -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator -james.adaptiveicon.R$styleable: int ActionMode_background -androidx.appcompat.widget.SearchView: java.lang.CharSequence getQueryHint() -androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getNavigationIcon() -androidx.appcompat.resources.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Daylight -okhttp3.internal.cache2.Relay: okio.Buffer upstreamBuffer -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.util.concurrent.atomic.AtomicLong requested -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String uvIndex -com.google.android.material.R$attr: int checkedIcon -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_cut_mtrl_alpha -cyanogenmod.app.Profile: java.util.Map profileGroups -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_25 -com.github.rahatarmanahmed.cpv.R$attr: R$attr() -okio.RealBufferedSource: short readShortLe() -com.turingtechnologies.materialscrollbar.R$id: int action_bar_subtitle -androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date sunSetDate -com.jaredrummler.android.colorpicker.R$attr: int contentInsetRight -okhttp3.ConnectionPool -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver -com.xw.repo.bubbleseekbar.R$bool: int abc_action_bar_embed_tabs -androidx.hilt.lifecycle.R$layout: R$layout() -wangdaye.com.geometricweather.R$id: int ratio -org.greenrobot.greendao.database.DatabaseOpenHelper: void setLoadSQLCipherNativeLibs(boolean) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void error(java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int themeLineHeight -com.google.android.gms.base.R$color -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setBackgroundResource(int) -android.didikee.donate.R$attr: int thickness -com.amap.api.location.LocationManagerBase: void enableBackgroundLocation(int,android.app.Notification) -wangdaye.com.geometricweather.R$attr: int tabMaxWidth -io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged() -wangdaye.com.geometricweather.R$id: int async -wangdaye.com.geometricweather.R$string: int wind_11 -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_homeAsUpIndicator -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String LocalizedName -james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -com.jaredrummler.android.colorpicker.R$style: int PreferenceFragment_Material -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$animator: int weather_haze_1 -cyanogenmod.weather.WeatherInfo: int mWindSpeedUnit -com.google.android.material.chip.Chip: android.graphics.RectF getCloseIconTouchBounds() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Body2 -com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.ConstraintLayout: void setMinWidth(int) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindSpeed -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: int TRANSACTION_handles_0 -com.google.android.material.R$dimen: int mtrl_btn_padding_left -com.google.android.material.R$styleable: int MaterialTextView_lineHeight -wangdaye.com.geometricweather.R$attr: int bsb_thumb_radius -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.DailyEntity,long) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf -cyanogenmod.app.ThemeVersion$ComponentVersion: int minVersion -io.reactivex.internal.observers.LambdaObserver: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_orderInCategory -androidx.preference.R$attr: int dropdownPreferenceStyle -androidx.appcompat.view.menu.ExpandedMenuView: ExpandedMenuView(android.content.Context,android.util.AttributeSet,int) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_21 -androidx.appcompat.R$attr: int srcCompat -androidx.swiperefreshlayout.R$styleable: int[] FontFamilyFont -okhttp3.internal.Internal: okhttp3.internal.Internal instance -androidx.appcompat.widget.SwitchCompat: boolean getTargetCheckedState() -com.jaredrummler.android.colorpicker.R$drawable: int notification_template_icon_low_bg -io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit) -retrofit2.RequestFactory$Builder: java.lang.annotation.Annotation[] methodAnnotations -androidx.legacy.coreutils.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$attr: int strokeWidth -okhttp3.ConnectionSpec$Builder: boolean tls -wangdaye.com.geometricweather.R$array: int clock_font_values -androidx.appcompat.view.menu.ListMenuItemView: ListMenuItemView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$color: int abc_primary_text_material_light -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_1 -james.adaptiveicon.R$string: int abc_searchview_description_voice -androidx.constraintlayout.widget.R$drawable: int abc_cab_background_internal_bg -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset -androidx.constraintlayout.widget.R$attr: int spinnerStyle -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: cyanogenmod.weatherservice.IWeatherProviderServiceClient asInterface(android.os.IBinder) -wangdaye.com.geometricweather.db.entities.LocationEntity: void setCityId(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int design_fab_size_mini -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_material -com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage DEFAULT -wangdaye.com.geometricweather.R$animator: int weather_wind_1 -wangdaye.com.geometricweather.R$styleable: int ActionBar_homeLayout -com.google.android.material.R$styleable: int MaterialTextAppearance_lineHeight -james.adaptiveicon.R$layout: int select_dialog_singlechoice_material -com.turingtechnologies.materialscrollbar.R$id: int search_voice_btn -com.google.android.material.R$attr: int singleChoiceItemLayout -com.amap.api.location.AMapLocationClientOption: boolean f -com.google.android.material.R$drawable: int notification_action_background -androidx.appcompat.widget.AppCompatImageButton: void setImageResource(int) -james.adaptiveicon.R$styleable: int[] ActionBar -okhttp3.internal.Util: java.nio.charset.Charset UTF_16_BE -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_15 -okhttp3.Cache$CacheResponseBody: java.lang.String contentType -cyanogenmod.profiles.RingModeSettings: void readFromParcel(android.os.Parcel) -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_windowAnimationStyle -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String getValue() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_maxHeight -io.reactivex.internal.util.EmptyComponent: void onSubscribe(org.reactivestreams.Subscription) -com.google.android.material.R$id: int search_plate -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_focusable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: boolean IsDayTime -wangdaye.com.geometricweather.R$attr: int daySelectedStyle -com.google.android.material.R$styleable: int TextInputLayout_boxCollapsedPaddingTop -com.google.android.material.R$id: int text2 -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: void run() -io.reactivex.internal.observers.DeferredScalarDisposable: void error(java.lang.Throwable) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getGrassLevel() -cyanogenmod.themes.ThemeManager: boolean processThemeResources(java.lang.String) -com.google.android.material.R$styleable: int[] RecycleListView -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: FlowableOnBackpressureLatest$BackpressureLatestSubscriber(org.reactivestreams.Subscriber) -com.google.android.material.R$id: int month_navigation_bar -androidx.loader.R$dimen: int notification_right_icon_size -androidx.constraintlayout.widget.R$attr: int layout_constraintCircleRadius -okhttp3.internal.http2.Http2Reader: void readRstStream(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void removeFirst() -com.google.android.material.R$id: int mtrl_calendar_text_input_frame -com.jaredrummler.android.colorpicker.R$attr: int windowActionBarOverlay -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: double Value -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer rainHazard3h -wangdaye.com.geometricweather.R$id: int notification_big_week_3 -wangdaye.com.geometricweather.R$animator: int weather_fog_1 -android.didikee.donate.R$style: int Widget_AppCompat_PopupMenu_Overflow -androidx.work.R$id: int action_text -james.adaptiveicon.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context,android.util.AttributeSet,int) -retrofit2.adapter.rxjava2.Result: retrofit2.adapter.rxjava2.Result response(retrofit2.Response) -com.google.android.material.R$attr: int actionBarTabTextStyle -androidx.constraintlayout.widget.R$drawable: int abc_list_longpressed_holo -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: ILiveLockScreenManager$Stub$Proxy(android.os.IBinder) -cyanogenmod.weather.WeatherInfo: WeatherInfo(android.os.Parcel,cyanogenmod.weather.WeatherInfo$1) -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_exitFadeDuration -okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withWriteTimeout(int,java.util.concurrent.TimeUnit) -okio.SegmentedByteString: SegmentedByteString(okio.Buffer,int) -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog_Alert -wangdaye.com.geometricweather.db.entities.MinutelyEntity: int minuteInterval -androidx.viewpager.R$id: int chronometer -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_weight -com.turingtechnologies.materialscrollbar.R$attr: int switchTextAppearance -androidx.legacy.coreutils.R$drawable: int notification_action_background -wangdaye.com.geometricweather.R$string: int settings_summary_unit -androidx.appcompat.widget.ActionBarContainer: void setTransitioning(boolean) -android.didikee.donate.R$dimen: int abc_dialog_list_padding_top_no_title -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat -okio.HashingSink: void write(okio.Buffer,long) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowMinWidthMajor -okhttp3.internal.http2.Huffman: byte[] decode(byte[]) -retrofit2.Invocation: java.lang.reflect.Method method() -cyanogenmod.externalviews.IExternalViewProvider: void onStop() -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String DELETE_AFTER_USE -wangdaye.com.geometricweather.R$attr: int layout_goneMarginEnd -androidx.constraintlayout.widget.R$attr: int maxAcceleration -okhttp3.CacheControl: java.lang.String headerValue -androidx.customview.R$styleable: int GradientColor_android_centerColor -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean delayErrors -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: MfHistoryResult$History$Precipitation() -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_disabled_holo_dark -wangdaye.com.geometricweather.R$string: int feedback_request_location_permission_failed -androidx.appcompat.R$layout: int abc_screen_content_include -wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_checkedButton -androidx.constraintlayout.widget.R$attr: int motionDebug -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_12 -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void drain() -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType TransactionCallable -wangdaye.com.geometricweather.R$attr: int summaryOff -androidx.vectordrawable.R$id: int accessibility_custom_action_6 -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Title -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void dispose() -android.didikee.donate.R$attr: int drawableSize -okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_ENCODE_SET -retrofit2.http.FieldMap: boolean encoded() -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_gradientRadius -io.reactivex.Observable: io.reactivex.Observable timeInterval(io.reactivex.Scheduler) -androidx.cardview.R$style: int Base_CardView -androidx.appcompat.R$id: int text -androidx.dynamicanimation.R$id: int async -com.google.android.material.textfield.TextInputEditText: java.lang.CharSequence getHintFromLayout() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SearchView -retrofit2.Utils$ParameterizedTypeImpl: java.lang.String toString() -wangdaye.com.geometricweather.R$color: int colorLine_dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial Imperial -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.viewpager2.R$id: int accessibility_custom_action_18 -androidx.customview.R$string: R$string() -com.google.android.material.R$attr: int constraint_referenced_ids -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_editor_absoluteX -androidx.hilt.work.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.button.MaterialButton: void setIconPadding(int) -androidx.hilt.work.R$styleable -com.turingtechnologies.materialscrollbar.R$id: int decor_content_parent -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -io.reactivex.Observable: java.lang.Iterable blockingMostRecent(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: double Value -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Temperature -androidx.work.R$bool: int enable_system_foreground_service_default -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_thumb_elevation -com.google.android.material.R$style: int TestStyleWithThemeLineHeightAttribute -cyanogenmod.power.PerformanceManager: cyanogenmod.power.IPerformanceManager getService() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalAlign -wangdaye.com.geometricweather.R$id: int star_container -wangdaye.com.geometricweather.R$string: int content_des_drag_flag -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextAppearanceInactive -androidx.appcompat.widget.ActionBarOverlayLayout: void setUiOptions(int) -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: AndroidPlatform$AndroidCertificateChainCleaner(java.lang.Object,java.lang.reflect.Method) -wangdaye.com.geometricweather.R$color: int colorTextSubtitle_light -wangdaye.com.geometricweather.R$id: int textSpacerNoButtons -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -james.adaptiveicon.R$attr: int closeIcon -james.adaptiveicon.R$color: int bright_foreground_material_dark -com.turingtechnologies.materialscrollbar.R$attr: int strokeColor -okhttp3.logging.LoggingEventListener$Factory: LoggingEventListener$Factory(okhttp3.logging.HttpLoggingInterceptor$Logger) -james.adaptiveicon.R$style: int Platform_V25_AppCompat -cyanogenmod.power.PerformanceManager: PerformanceManager(android.content.Context) -cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mDeleteIntent -androidx.viewpager2.R$string -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setRootColor(int) -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.internal.disposables.SequentialDisposable sd -androidx.constraintlayout.widget.R$drawable: int notification_action_background -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -wangdaye.com.geometricweather.R$attr: int itemShapeInsetTop -com.google.android.material.R$string: int mtrl_picker_text_input_year_abbr -wangdaye.com.geometricweather.common.basic.models.Location -io.reactivex.Observable: io.reactivex.Observable onErrorReturnItem(java.lang.Object) -okhttp3.ConnectionPool: ConnectionPool(int,long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom -james.adaptiveicon.R$drawable: int abc_text_select_handle_left_mtrl_dark -com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -wangdaye.com.geometricweather.R$attr: int paddingRightSystemWindowInsets -com.google.android.material.R$layout: int abc_action_bar_up_container -androidx.activity.R$id: int accessibility_custom_action_29 -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -cyanogenmod.profiles.ConnectionSettings: void setOverride(boolean) -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: io.reactivex.Observer downstream -android.didikee.donate.R$id: int action_image -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeIndex -com.google.android.material.R$styleable: int AppCompatTheme_editTextBackground -cyanogenmod.app.StatusBarPanelCustomTile$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.preference.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -okio.HashingSource: okio.HashingSource hmacSha1(okio.Source,okio.ByteString) -com.google.android.material.R$styleable: int TabLayout_tabIndicatorColor -wangdaye.com.geometricweather.R$styleable: int Chip_android_textAppearance -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: long serialVersionUID -com.google.android.material.R$attr: int useMaterialThemeColors -wangdaye.com.geometricweather.R$id: int material_timepicker_container -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$styleable: int Constraint_constraint_referenced_ids -com.google.android.material.R$styleable: int TabLayout_tabIconTintMode -wangdaye.com.geometricweather.R$styleable: int Chip_chipStrokeWidth -androidx.constraintlayout.widget.Barrier: void setAllowsGoneWidget(boolean) -androidx.preference.R$styleable: int GradientColor_android_startX -okhttp3.OkHttpClient: okhttp3.ConnectionPool connectionPool -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_registerThemeProcessingListener -com.google.android.material.R$dimen: int mtrl_extended_fab_elevation -wangdaye.com.geometricweather.R$styleable: int Slider_thumbStrokeWidth -androidx.appcompat.resources.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$id: int widget_remote_progress -wangdaye.com.geometricweather.R$attr: int titleMarginStart -james.adaptiveicon.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerNext(java.lang.Object) -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_baselineAligned -com.turingtechnologies.materialscrollbar.R$attr: int chipIconEnabled -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_SHA -retrofit2.HttpServiceMethod$SuspendForBody: retrofit2.CallAdapter callAdapter -cyanogenmod.externalviews.ExternalView: void onActivityDestroyed(android.app.Activity) -androidx.room.MultiInstanceInvalidationService: MultiInstanceInvalidationService() -androidx.preference.R$id: int search_go_btn -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline5 -androidx.hilt.R$styleable: int FontFamilyFont_fontWeight -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$GeoLanguage getGeoLanguage() -james.adaptiveicon.R$id: int search_mag_icon -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.preference.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CollapsingToolbar -androidx.appcompat.widget.ActionBarOverlayLayout: void setActionBarVisibilityCallback(androidx.appcompat.widget.ActionBarOverlayLayout$ActionBarVisibilityCallback) -okhttp3.internal.http1.Http1Codec: void writeRequest(okhttp3.Headers,java.lang.String) -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_ARRAY -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Light -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory NORMAL -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function) -androidx.preference.R$attr: int panelMenuListWidth -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean sunRiseSet -james.adaptiveicon.R$attr: int elevation -okhttp3.internal.http2.Http2Stream: void receiveHeaders(java.util.List) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: AccuCurrentResult() -androidx.activity.R$drawable: int notify_panel_notification_icon_bg -okio.Pipe$PipeSource: void close() -com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_max -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory create(javax.inject.Provider,javax.inject.Provider) -androidx.constraintlayout.widget.R$attr: R$attr() -android.didikee.donate.R$attr: int collapseContentDescription -com.google.android.material.internal.NavigationMenuItemView: void setChecked(boolean) -androidx.transition.R$style: int Widget_Compat_NotificationActionText -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType FLOAT_TYPE -com.bumptech.glide.Registry$NoSourceEncoderAvailableException -com.jaredrummler.android.colorpicker.R$drawable: int tooltip_frame_light -androidx.work.impl.background.systemjob.SystemJobService -cyanogenmod.app.IPartnerInterface$Stub: java.lang.String DESCRIPTOR -com.google.android.material.R$id: int action_menu_divider -androidx.constraintlayout.widget.R$color: int background_floating_material_dark -androidx.appcompat.R$drawable: int abc_list_focused_holo -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_dark -com.google.android.material.R$dimen: int design_bottom_navigation_active_text_size -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_padding_end_material -androidx.appcompat.R$style: int Base_V22_Theme_AppCompat_Light -androidx.appcompat.R$drawable: int abc_ic_menu_share_mtrl_alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean getForecastDaily() -cyanogenmod.app.ProfileGroup: void setRingerMode(cyanogenmod.app.ProfileGroup$Mode) -io.reactivex.Observable: io.reactivex.Observable ambWith(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getLogo() -com.google.android.material.R$styleable: int CardView_cardUseCompatPadding -wangdaye.com.geometricweather.R$drawable: int googleg_disabled_color_18 -cyanogenmod.app.CustomTile$RemoteExpandedStyle: void setRemoteViews(android.widget.RemoteViews) -androidx.transition.R$dimen: int notification_action_icon_size -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_3_material -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance -androidx.appcompat.R$dimen: int abc_config_prefDialogWidth -androidx.lifecycle.CompositeGeneratedAdaptersObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -cyanogenmod.app.CMContextConstants$Features -wangdaye.com.geometricweather.R$drawable: int notif_temp_100 -com.github.rahatarmanahmed.cpv.BuildConfig: boolean DEBUG -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_colorPresets -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: KeyguardExternalViewProviderService$Provider$ProviderImpl$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -androidx.preference.R$styleable: int GradientColorItem_android_color -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_button_material -com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPreference -okhttp3.internal.http2.Http2: okio.ByteString CONNECTION_PREFACE -androidx.appcompat.R$id: int action_menu_presenter -wangdaye.com.geometricweather.R$drawable: int notif_temp_66 -wangdaye.com.geometricweather.R$drawable: int notif_temp_60 -androidx.coordinatorlayout.R$id: int accessibility_custom_action_30 -androidx.preference.R$attr: int maxHeight -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int FIRED_STATE -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: java.lang.Object v1 -james.adaptiveicon.R$color: int abc_background_cache_hint_selector_material_dark -com.google.android.material.R$attr: int yearTodayStyle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign -com.google.android.material.slider.BaseSlider$SliderState -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_switchTextOff -cyanogenmod.providers.CMSettings$System: boolean putInt(android.content.ContentResolver,java.lang.String,int) -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.Scheduler scheduler -okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part create(okhttp3.Headers,okhttp3.RequestBody) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.xw.repo.bubbleseekbar.R$color: int material_grey_900 -io.reactivex.internal.util.AtomicThrowable: AtomicThrowable() -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer dewPoint -androidx.preference.R$style: int Base_Widget_AppCompat_SearchView -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarDivider -james.adaptiveicon.R$attr: int buttonStyle -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_entries -com.google.android.material.R$styleable: int KeyPosition_percentWidth -io.reactivex.internal.functions.Functions$HashSetCallable -androidx.constraintlayout.widget.R$dimen: int abc_text_size_medium_material -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleTint -wangdaye.com.geometricweather.R$drawable: int shortcuts_haze -com.google.android.material.textfield.TextInputLayout: void setError(java.lang.CharSequence) -com.github.rahatarmanahmed.cpv.CircularProgressView: float actualProgress -com.google.android.material.R$styleable: int Tooltip_android_padding -androidx.hilt.R$styleable: int Fragment_android_tag -wangdaye.com.geometricweather.R$style: int Animation_Design_BottomSheetDialog -james.adaptiveicon.R$layout: int abc_list_menu_item_layout -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListPopupWindow -com.turingtechnologies.materialscrollbar.R$attr: int maxImageSize -com.xw.repo.bubbleseekbar.R$attr: int autoSizeMinTextSize -androidx.work.impl.utils.futures.AbstractFuture$Failure$1: AbstractFuture$Failure$1(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int actionModeBackground -androidx.legacy.coreutils.R$layout: int notification_template_custom_big -androidx.appcompat.R$color: int material_grey_850 -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean access$602(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) -wangdaye.com.geometricweather.background.receiver.widget.WidgetWeekProvider -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Bridge -com.google.android.material.R$bool -wangdaye.com.geometricweather.R$attr: int orderingFromXml -androidx.appcompat.resources.R$id: int accessibility_custom_action_24 -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_elevation -okhttp3.internal.Internal -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_77 -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_activated_mtrl_alpha -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$style: int widget_progress -james.adaptiveicon.R$dimen: int abc_action_button_min_width_overflow_material -androidx.work.Worker: Worker(android.content.Context,androidx.work.WorkerParameters) -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.String TABLENAME -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderPackage -com.bumptech.glide.R$attr: int layout_anchor -com.amap.api.location.AMapLocation: int ERROR_CODE_SERVICE_FAIL -com.google.android.material.R$styleable: int AppCompatTheme_actionModeBackground -okhttp3.OkHttpClient: java.util.List protocols() -com.bumptech.glide.R$id: int start -android.didikee.donate.R$layout: int select_dialog_singlechoice_material -androidx.preference.R$attr: int drawableTint -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: int getIconSize() -wangdaye.com.geometricweather.R$font: int product_sans_medium_italic -androidx.constraintlayout.widget.R$styleable: int ActionBar_homeAsUpIndicator -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionMenuTextColor -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitationDuration() -com.amap.api.location.DPoint: void setLongitude(double) -cyanogenmod.content.Intent -okhttp3.Request -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: int getPrecipitationColor(android.content.Context) -androidx.appcompat.R$id: int add -androidx.preference.R$styleable: int AppCompatTheme_actionModeCutDrawable -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void goAway(int,okhttp3.internal.http2.ErrorCode,okio.ByteString) -com.xw.repo.bubbleseekbar.R$attr: int displayOptions -cyanogenmod.app.Profile$ExpandedDesktopMode: int DEFAULT -androidx.preference.R$dimen: int notification_right_icon_size -com.google.android.material.R$color: int abc_color_highlight_material -androidx.constraintlayout.widget.R$styleable: int MenuItem_showAsAction -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_109 -retrofit2.HttpServiceMethod$CallAdapted: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Date -com.google.android.material.R$style: int TextAppearance_Design_Tab -androidx.appcompat.R$styleable: int Toolbar_contentInsetEndWithActions -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_scaleX -androidx.customview.R$styleable: int GradientColor_android_centerY -androidx.vectordrawable.R$style: int Widget_Compat_NotificationActionText -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dialog -androidx.vectordrawable.R$styleable: int[] FontFamily -androidx.appcompat.resources.R$id: int dialog_button -wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_dividerHeight -com.xw.repo.bubbleseekbar.R$anim -com.google.android.material.R$attr: int titleTextColor -com.amap.api.location.AMapLocationClientOption: long getInterval() -androidx.preference.R$styleable: int MenuItem_android_checkable -wangdaye.com.geometricweather.R$attr: int maxHeight -wangdaye.com.geometricweather.R$string: int week_4 -wangdaye.com.geometricweather.R$drawable: int widget_card_light_60 -wangdaye.com.geometricweather.R$id: int standard -com.google.android.material.R$color: int primary_material_light -androidx.appcompat.R$attr: int layout -wangdaye.com.geometricweather.R$styleable: int[] ViewBackgroundHelper -com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_inflatedId -okio.Buffer: okio.Buffer write(byte[],int,int) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String cityId -androidx.appcompat.R$attr: int activityChooserViewStyle -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderCerts -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getRealFeelTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -androidx.appcompat.app.AppCompatDelegateImpl$ListMenuDecorView -androidx.vectordrawable.animated.R$id: int text -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean terminated -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: io.reactivex.Observer observer -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector DAY -okhttp3.internal.http.RealInterceptorChain: okhttp3.Request request() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogTheme -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.constraintlayout.widget.R$attr: int buttonBarNeutralButtonStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTheme -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_8 -com.xw.repo.bubbleseekbar.R$attr: int paddingBottomNoButtons -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.DatabaseOpenHelper$EncryptedHelper checkEncryptedHelper() -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.functions.Function) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display3 -androidx.recyclerview.R$id: int accessibility_custom_action_8 -io.reactivex.Observable: io.reactivex.Observable flatMapMaybe(io.reactivex.functions.Function,boolean) -com.turingtechnologies.materialscrollbar.R$attr: int msb_handleColor -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String DAYS_OF_WEEK -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -okio.Buffer: int REPLACEMENT_CHARACTER -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setTextColor(int) -com.google.android.material.R$styleable: int Toolbar_android_minHeight -okhttp3.internal.http2.Http2: Http2() -androidx.preference.R$styleable: int SwitchCompat_switchPadding -okhttp3.internal.publicsuffix.PublicSuffixDatabase: void setListBytes(byte[],byte[]) -androidx.dynamicanimation.R$dimen: int notification_large_icon_width -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_percent -com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorType() -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextAppearanceInactive(int) -androidx.fragment.R$id: int accessibility_custom_action_28 -okhttp3.internal.http2.Http2Stream$StreamTimeout: Http2Stream$StreamTimeout(okhttp3.internal.http2.Http2Stream) -io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper valueOf(java.lang.String) -androidx.work.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarContainer -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_enabled -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableLeft -wangdaye.com.geometricweather.R$string: int key_widget_clock_day_details -okhttp3.HttpUrl: java.lang.String password -com.google.android.material.R$attr: int behavior_saveFlags -retrofit2.ParameterHandler$Query: java.lang.String name -io.reactivex.internal.subscriptions.SubscriptionArbiter: void produced(long) -androidx.constraintlayout.widget.R$color: int material_blue_grey_900 -androidx.appcompat.R$attr: int actionBarPopupTheme -com.google.android.material.R$attr: int textAppearanceSubtitle2 -okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part create(okhttp3.RequestBody) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String weatherText -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorContentDescription -com.bumptech.glide.R$drawable: int notification_bg_normal -retrofit2.ParameterHandler$Field: retrofit2.Converter valueConverter -com.bumptech.glide.integration.okhttp.R$attr: int layout_behavior -cyanogenmod.providers.DataUsageContract: java.lang.String CONTENT_TYPE -wangdaye.com.geometricweather.R$id: int on -androidx.appcompat.resources.R$attr: int fontProviderPackage -okio.Buffer: okio.ByteString hmacSha1(okio.ByteString) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_alphabeticModifiers -com.google.android.material.R$id: int cos -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul6H -wangdaye.com.geometricweather.R$attr: int textAllCaps -okio.Source: okio.Timeout timeout() -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_updateProfile -james.adaptiveicon.R$anim: int abc_slide_in_top -com.google.android.material.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean isDisposed() -com.jaredrummler.android.colorpicker.R$attr: int layout_anchorGravity -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_111 -wangdaye.com.geometricweather.R$attr: int collapsedTitleGravity -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_height -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_pressedTranslationZ -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_2_30 -androidx.customview.R$styleable: int GradientColor_android_tileMode -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -androidx.hilt.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.util.Date getDate() -okhttp3.internal.ws.RealWebSocket: int receivedPongCount -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_bias -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setLabelVisibilityMode(int) -cyanogenmod.weather.WeatherInfo: boolean isValidWeatherCode(int) -androidx.lifecycle.process.R: R() -android.didikee.donate.R$attr: int dividerPadding -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_handleColor -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginBottom -androidx.drawerlayout.R$color: R$color() -wangdaye.com.geometricweather.R$attr: int behavior_skipCollapsed -androidx.viewpager.R$id: int async -com.google.android.material.R$styleable: int ImageFilterView_round -com.xw.repo.bubbleseekbar.R$attr: int actionBarDivider -wangdaye.com.geometricweather.R$styleable: int[] StateListDrawableItem -androidx.appcompat.R$style: int TextAppearance_AppCompat_Title_Inverse -androidx.constraintlayout.widget.R$drawable: int abc_btn_check_material_anim -okhttp3.Request$Builder: okhttp3.Request$Builder delete() -wangdaye.com.geometricweather.R$layout: int design_layout_snackbar_include -io.reactivex.Observable: io.reactivex.Single reduce(java.lang.Object,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.R$id: int seekbar_value -cyanogenmod.hardware.CMHardwareManager: int getVibratorWarningIntensity() -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree daytimeWindDegree -android.didikee.donate.R$color -okhttp3.internal.cache.DiskLruCache: int redundantOpCount -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void dispose() -com.google.android.material.R$dimen: int mtrl_progress_indicator_full_rounded_corner_radius -androidx.preference.R$color: int foreground_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -androidx.constraintlayout.widget.R$attr: int colorPrimary -cyanogenmod.app.BaseLiveLockManagerService: void enforceSamePackageOrSystem(java.lang.String,cyanogenmod.app.LiveLockScreenInfo) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitationProbability -androidx.preference.R$styleable: int ButtonBarLayout_allowStacking -wangdaye.com.geometricweather.R$styleable: int[] Motion -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontVariationSettings -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabTextStyle -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_textOff -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level BODY -com.google.android.material.R$attr: int backgroundStacked -com.google.android.material.internal.FlowLayout: int getItemSpacing() -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_singleSelection -okhttp3.Headers$Builder -androidx.activity.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.R$drawable: int selectable_item_background -james.adaptiveicon.R$drawable: int notification_bg_low_pressed -cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_THEME_MANAGER -okhttp3.HttpUrl$Builder -androidx.lifecycle.Transformations$2$1: void onChanged(java.lang.Object) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex yesterday -wangdaye.com.geometricweather.R$attr: int chipBackgroundColor -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveShape -androidx.hilt.work.R$id: int accessibility_custom_action_26 -com.turingtechnologies.materialscrollbar.R$id: int snackbar_action -com.google.gson.stream.JsonReader: com.google.gson.stream.JsonToken peek() -okio.GzipSource: void consumeHeader() -cyanogenmod.providers.CMSettings$System: java.lang.String NAVIGATION_BAR_MENU_ARROW_KEYS -androidx.dynamicanimation.R$dimen: int compat_control_corner_material -androidx.appcompat.R$styleable: int AppCompatTheme_windowActionBar -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onComplete() -com.google.android.material.R$styleable: int MenuItem_iconTintMode -androidx.constraintlayout.widget.R$dimen: int abc_dialog_min_width_major -androidx.dynamicanimation.R$id: int notification_main_column_container -james.adaptiveicon.R$styleable: int AppCompatTheme_actionButtonStyle -cyanogenmod.app.ProfileManager: void resetAll() -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: ParallelRunOn$BaseRunOnSubscriber(int,io.reactivex.internal.queue.SpscArrayQueue,io.reactivex.Scheduler$Worker) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets -androidx.transition.R$styleable: int[] ColorStateListItem -cyanogenmod.app.IProfileManager: void updateProfile(cyanogenmod.app.Profile) -wangdaye.com.geometricweather.R$styleable: int MenuView_android_horizontalDivider -okio.ByteString: boolean startsWith(okio.ByteString) -androidx.lifecycle.LifecycleRegistry: int mAddingObserverCounter -wangdaye.com.geometricweather.R$color: int darkPrimary_4 -androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$styleable: int ConstraintSet_android_visibility -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: int UnitType -com.google.android.material.bottomnavigation.BottomNavigationView -okhttp3.internal.cache.DiskLruCache: java.lang.Runnable cleanupRunnable -androidx.constraintlayout.widget.R$id: int bottom -com.google.android.material.R$attr: int itemStrokeWidth -com.jaredrummler.android.colorpicker.ColorPreference -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindLevel -com.google.gson.stream.JsonReader: void endArray() -com.xw.repo.bubbleseekbar.R$styleable: int[] FontFamily -cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup getProfileGroup(java.util.UUID) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setCoDesc(java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabBarStyle -wangdaye.com.geometricweather.R$color: int material_cursor_color -com.turingtechnologies.materialscrollbar.R$anim: int abc_popup_enter -androidx.appcompat.widget.ActionBarOverlayLayout: void setIcon(int) -okhttp3.logging.HttpLoggingInterceptor: HttpLoggingInterceptor(okhttp3.logging.HttpLoggingInterceptor$Logger) -android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.R$attr: int msb_barThickness -com.google.android.material.R$dimen: int mtrl_fab_min_touch_target -io.reactivex.exceptions.UndeliverableException -cyanogenmod.weather.CMWeatherManager$2$1 -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_behavior -cyanogenmod.profiles.LockSettings: LockSettings(android.os.Parcel) -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_disabled_holo_dark -com.google.android.material.R$color: int design_box_stroke_color -androidx.legacy.coreutils.R$drawable: int notification_bg -com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_HIGH -com.xw.repo.bubbleseekbar.R$attr: int tickMark -androidx.preference.R$color: int material_blue_grey_900 -androidx.core.R$drawable: R$drawable() -androidx.hilt.work.R$id: int blocking -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -cyanogenmod.providers.CMSettings$Global: long getLong(android.content.ContentResolver,java.lang.String,long) -androidx.preference.R$attr: int actionModeWebSearchDrawable -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listDividerAlertDialog -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int DUST -james.adaptiveicon.R$drawable: int abc_text_select_handle_middle_mtrl_dark -androidx.viewpager2.R$attr: int ttcIndex -androidx.appcompat.R$string: int status_bar_notification_info_overflow -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.reflect.Type responseType() -james.adaptiveicon.R$drawable: int notification_bg_normal_pressed -androidx.preference.R$id: int accessibility_custom_action_20 -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.util.List DataSets -retrofit2.SkipCallbackExecutorImpl: retrofit2.SkipCallbackExecutor INSTANCE -wangdaye.com.geometricweather.R$attr: int imageButtonStyle -androidx.lifecycle.LifecycleRegistryOwner: androidx.lifecycle.LifecycleRegistry getLifecycle() -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_19 -okhttp3.internal.platform.AndroidPlatform: java.lang.Class sslParametersClass -android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedHeightMinor -cyanogenmod.platform.R$attr -android.didikee.donate.R$styleable: int SearchView_commitIcon -com.xw.repo.bubbleseekbar.R$id: int action_bar_activity_content -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_backgroundSplit -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: ObservableFlatMapSingle$FlatMapSingleObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -wangdaye.com.geometricweather.R$drawable: int abc_item_background_holo_light -android.didikee.donate.R$style: int Widget_AppCompat_ListView_DropDown -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Country -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button -androidx.constraintlayout.widget.R$drawable: int notification_bg_low_pressed -okhttp3.internal.http2.Settings: boolean isSet(int) -com.google.android.material.chip.Chip: void setChipEndPadding(float) -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayVerticalWidgetConfigActivity -androidx.hilt.work.R$styleable: int FontFamilyFont_ttcIndex -androidx.appcompat.R$color: int accent_material_light -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_visible -com.google.android.gms.common.internal.zag: zag(com.google.android.gms.common.api.internal.OnConnectionFailedListener) -okhttp3.internal.http2.Http2Stream: void close(okhttp3.internal.http2.ErrorCode) -android.didikee.donate.R$dimen: int abc_text_size_title_material -wangdaye.com.geometricweather.R$id: int homeAsUp -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType QueryList -wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -androidx.viewpager2.R$layout: int notification_template_part_time -com.google.android.material.R$id: int design_navigation_view -wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_begin -androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_radio -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: java.lang.Object value -wangdaye.com.geometricweather.R$styleable: int Chip_chipSurfaceColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: AccuCurrentResult$DewPoint$Imperial() -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Long id -com.google.android.gms.location.LocationSettingsResult -androidx.preference.R$drawable: int abc_btn_radio_material -androidx.activity.R$id: int right_side -okhttp3.ResponseBody$1: okio.BufferedSource val$content -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteSelector$Selection routeSelection -com.google.android.material.chip.Chip: void setCloseIconResource(int) -cyanogenmod.app.ILiveLockScreenManager$Stub: java.lang.String DESCRIPTOR -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableLeftCompat -androidx.hilt.work.R$dimen: int notification_top_pad_large_text -android.didikee.donate.R$styleable: int MenuGroup_android_enabled -wangdaye.com.geometricweather.R$animator: int weather_sleet_1 -wangdaye.com.geometricweather.R$drawable: int notif_temp_54 -androidx.lifecycle.MediatorLiveData$Source -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) -com.google.android.material.R$attr: int actionBarItemBackground -androidx.hilt.work.R$styleable: int GradientColor_android_startX -androidx.activity.R$id: int accessibility_custom_action_23 -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstHorizontalStyle -com.google.android.material.R$id: int clear_text -com.google.android.material.R$drawable: int btn_checkbox_checked_mtrl -com.google.android.material.R$style: int Theme_AppCompat_DayNight_DarkActionBar -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastVerticalBias -okhttp3.logging.HttpLoggingInterceptor$Level -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: AccuAlertResult$Area$LastAction() -com.turingtechnologies.materialscrollbar.R$attr: int counterTextAppearance -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_NULL_SHA -okhttp3.Response$Builder: java.lang.String message -androidx.lifecycle.extensions.R$anim: int fragment_fade_enter -androidx.preference.R$id: int accessibility_custom_action_14 -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_28 -com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_year_selection -okhttp3.internal.Util: int decodeHexDigit(char) -androidx.constraintlayout.widget.R$attr: int textColorAlertDialogListItem -io.reactivex.Observable: io.reactivex.Single single(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.disposables.Disposable upstream -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat DEFAULT -androidx.legacy.coreutils.R$style: int Widget_Compat_NotificationActionText -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconSize -wangdaye.com.geometricweather.R$dimen: int abc_text_size_title_material -com.google.gson.stream.JsonReader$1: void promoteNameToValue(com.google.gson.stream.JsonReader) -com.xw.repo.bubbleseekbar.R$attr: int listItemLayout -okhttp3.internal.ws.WebSocketProtocol: long CLOSE_MESSAGE_MAX -com.google.android.material.R$styleable: int ActionBar_displayOptions -androidx.constraintlayout.widget.R$attr: int paddingBottomNoButtons -wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_bias -com.google.android.material.R$attr: int progressIndicatorStyle -com.google.android.material.R$dimen: R$dimen() -androidx.viewpager.R$styleable: int FontFamilyFont_fontWeight -io.reactivex.Observable: io.reactivex.Observable map(io.reactivex.functions.Function) -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void dispose() -cyanogenmod.externalviews.IExternalViewProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_orientation -androidx.lifecycle.Lifecycling: java.lang.reflect.Constructor generatedConstructor(java.lang.Class) -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_shapeAppearanceOverlay -com.google.android.material.R$styleable: int Transform_android_translationZ -com.jaredrummler.android.colorpicker.R$string: int abc_menu_shift_shortcut_label -com.bumptech.glide.integration.okhttp.R$attr: int fontWeight -androidx.work.impl.utils.futures.AbstractFuture: androidx.work.impl.utils.futures.AbstractFuture$Listener listeners -com.google.android.material.R$styleable: int[] Toolbar -com.xw.repo.bubbleseekbar.R$id: int screen -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void onDetachedFromWindow() -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_Solid -com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox -androidx.hilt.work.R$style: int Widget_Compat_NotificationActionContainer -androidx.preference.R$dimen: int abc_text_size_display_2_material -wangdaye.com.geometricweather.R$layout: int widget_day_vertical -okhttp3.internal.http.HttpHeaders: java.lang.String readToken(okio.Buffer) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$attr: int track -com.turingtechnologies.materialscrollbar.R$attr: int hideOnScroll -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.R$id: int container_alert_display_view_container -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_tagView -com.google.android.material.R$id: int view_offset_helper -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.jaredrummler.android.colorpicker.R$id: int message -androidx.appcompat.R$dimen: int abc_dialog_min_width_minor -cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo build() -androidx.constraintlayout.widget.R$dimen: int abc_control_corner_material -wangdaye.com.geometricweather.R$attr: int queryHint -androidx.constraintlayout.widget.R$styleable: int[] Variant -retrofit2.converter.gson.GsonRequestBodyConverter: okhttp3.MediaType MEDIA_TYPE -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowMinWidthMajor -com.google.android.material.R$dimen: int mtrl_textinput_outline_box_expanded_padding -androidx.loader.R$styleable: int ColorStateListItem_android_color -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_to_on_mtrl_015 -com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_android_button -wangdaye.com.geometricweather.R$layout: int spinner_text -android.didikee.donate.R$color: int background_material_light -james.adaptiveicon.R$drawable: int abc_ic_star_half_black_16dp -com.google.android.gms.common.server.response.zal: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$attr: int layout_goneMarginTop -com.amap.api.fence.GeoFence: float getMinDis2Center() -okio.GzipSource: byte SECTION_TRAILER -androidx.preference.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -androidx.appcompat.widget.Toolbar: void setNavigationContentDescription(int) -android.didikee.donate.R$styleable: int AppCompatTextView_drawableBottomCompat -wangdaye.com.geometricweather.R$layout: int widget_multi_city_horizontal -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_icon_size -com.google.android.gms.common.api.ResolvableApiException -com.google.android.gms.location.ActivityTransitionEvent -android.didikee.donate.R$drawable: int abc_vector_test -okhttp3.internal.http2.Http2Connection: long awaitPongsReceived -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_height -io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function,boolean,int) -android.didikee.donate.R$id: int actions -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_textColorHint -cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String itemSummary -wangdaye.com.geometricweather.R$styleable: int Preference_title -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.Observer downstream -androidx.appcompat.R$attr: int toolbarStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: void setValue(java.lang.String) -okio.HashingSource: HashingSource(okio.Source,okio.ByteString,java.lang.String) -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.R$layout: int material_timepicker_textinput_display -android.didikee.donate.R$styleable: int AppCompatTheme_android_windowIsFloating -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_alterWindow -com.google.android.material.R$attr: int titleEnabled -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_android_gravity -com.google.android.material.slider.RangeSlider: void setHaloTintList(android.content.res.ColorStateList) -okhttp3.Cache$Entry -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColorSchemeResource(int) -com.google.android.material.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_1_30 -com.google.android.material.R$styleable: int TextInputLayout_expandedHintEnabled -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SeekBar_Discrete -com.google.android.material.slider.Slider: float getStepSize() -com.turingtechnologies.materialscrollbar.R$id: int uniform -androidx.lifecycle.LiveData: void removeObserver(androidx.lifecycle.Observer) -com.xw.repo.bubbleseekbar.R$attr: int bsb_show_progress_in_float -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status LOADING -com.google.android.material.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode -retrofit2.RequestFactory$Builder: boolean gotQueryMap -com.google.android.material.R$attr: int itemHorizontalPadding -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void dispose() -wangdaye.com.geometricweather.R$dimen: int mtrl_switch_thumb_elevation -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_android_windowAnimationStyle -androidx.appcompat.app.AppCompatViewInflater: AppCompatViewInflater() -androidx.preference.R$dimen: int disabled_alpha_material_dark -androidx.constraintlayout.widget.R$styleable: int Transform_android_translationY -androidx.appcompat.R$layout: int abc_alert_dialog_material -androidx.lifecycle.Transformations$3: androidx.lifecycle.MediatorLiveData val$outputLiveData -androidx.lifecycle.MethodCallsLogger -androidx.fragment.R$styleable: int FontFamilyFont_android_fontWeight -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetRight -com.xw.repo.bubbleseekbar.R$dimen: int abc_button_inset_horizontal_material -androidx.lifecycle.LifecycleService: LifecycleService() -com.jaredrummler.android.colorpicker.R$id: int bottom -cyanogenmod.app.BaseLiveLockManagerService$1: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light -retrofit2.ParameterHandler$QueryMap: int p -androidx.constraintlayout.widget.R$id: int staticLayout -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_square_side -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$attr: int titleMarginTop -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: boolean isDisposed() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange -com.google.android.material.R$attr: int prefixText -com.google.android.material.R$dimen: int abc_action_bar_overflow_padding_start_material -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Body2 -com.turingtechnologies.materialscrollbar.R$attr: int behavior_overlapTop -com.google.android.material.R$color: int primary_text_default_material_light -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_item_icon_padding -androidx.transition.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float thunderstorm -com.google.android.material.R$attr: int imageButtonStyle -androidx.appcompat.R$color: int material_grey_300 -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Colored -james.adaptiveicon.R$style: int Widget_AppCompat_Toolbar -retrofit2.Callback: void onResponse(retrofit2.Call,retrofit2.Response) -okhttp3.OkHttpClient: javax.net.ssl.HostnameVerifier hostnameVerifier() -com.google.android.material.R$id: int accessibility_custom_action_7 -androidx.appcompat.widget.ActionMenuView: int getWindowAnimations() -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.google.android.material.R$styleable: int MaterialButton_cornerRadius -cyanogenmod.profiles.ConnectionSettings: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDewPoint(java.lang.Integer) -androidx.preference.R$styleable: int[] ActionBar -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void subscribe(io.reactivex.ObservableSource[],int) -androidx.appcompat.R$attr: int textAppearanceListItemSecondary -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_constraintSet -com.google.android.material.R$drawable: int mtrl_popupmenu_background -androidx.lifecycle.extensions.R$styleable: int[] GradientColor -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_SECURE -androidx.recyclerview.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX -com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat_Light -okhttp3.internal.http2.Http2Writer: void connectionPreface() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String CountryID -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetStart -androidx.work.impl.workers.ConstraintTrackingWorker -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display4 -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Caption -james.adaptiveicon.R$color: int abc_tint_default -wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_strokeColor -androidx.vectordrawable.animated.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_67 -androidx.recyclerview.R$id: int action_text -android.didikee.donate.R$styleable: int Toolbar_menu -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_setActiveProfileByName -com.google.android.material.R$styleable: int TabLayout_tabSelectedTextColor -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.R$color: int material_on_primary_emphasis_medium -james.adaptiveicon.R$attr: int displayOptions -androidx.preference.R$color: int dim_foreground_material_light -androidx.lifecycle.MediatorLiveData$Source: int mVersion -wangdaye.com.geometricweather.R$dimen: int design_fab_elevation -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endX -james.adaptiveicon.R$id: int notification_main_column_container -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_section_text -androidx.preference.R$styleable: int[] ViewStubCompat -android.didikee.donate.R$styleable: int AppCompatTheme_listMenuViewStyle -androidx.constraintlayout.widget.R$styleable: int Transform_android_scaleY -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constrainedHeight -android.support.v4.os.IResultReceiver$Default -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Bridge -okhttp3.internal.http2.Hpack$Reader: java.util.List headerList -com.jaredrummler.android.colorpicker.R$attr: int selectable -cyanogenmod.externalviews.KeyguardExternalViewProviderService: boolean DEBUG -cyanogenmod.weather.RequestInfo$1: cyanogenmod.weather.RequestInfo createFromParcel(android.os.Parcel) -androidx.hilt.work.R$styleable: int FragmentContainerView_android_name -androidx.legacy.coreutils.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$id: int SHOW_PATH -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean isEmpty() -wangdaye.com.geometricweather.R$string: int precipitation_light -androidx.customview.R$styleable: int FontFamilyFont_android_ttcIndex -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int limit -androidx.vectordrawable.R$id: int action_container -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemTextAppearanceInactive() -com.google.android.material.R$attr: int collapsedSize -androidx.preference.R$dimen: int abc_dialog_title_divider_material -cyanogenmod.externalviews.KeyguardExternalView$5: cyanogenmod.externalviews.KeyguardExternalView this$0 -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$attr: int cpv_showOldColor -james.adaptiveicon.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_default -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -retrofit2.Platform$Android$MainThreadExecutor: Platform$Android$MainThreadExecutor() -androidx.lifecycle.SavedStateViewModelFactory: java.lang.Class[] ANDROID_VIEWMODEL_SIGNATURE -androidx.appcompat.R$attr: int buttonBarStyle -james.adaptiveicon.R$drawable: int abc_ratingbar_material -okhttp3.internal.ws.RealWebSocket$Streams: RealWebSocket$Streams(boolean,okio.BufferedSource,okio.BufferedSink) -com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_checked_circle -androidx.core.graphics.drawable.IconCompatParcelizer: androidx.core.graphics.drawable.IconCompat read(androidx.versionedparcelable.VersionedParcel) -com.google.android.material.R$styleable: int Variant_region_heightLessThan -com.amap.api.location.AMapLocation: AMapLocation(java.lang.String) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: int getStrokeColor() -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification -okhttp3.FormBody: void writeTo(okio.BufferedSink) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_6 -com.google.android.material.R$style: int Platform_V21_AppCompat_Light -com.google.android.material.R$attr: int counterTextAppearance -androidx.viewpager2.R$attr: int recyclerViewStyle -androidx.appcompat.widget.AppCompatToggleButton -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop -androidx.hilt.work.R$dimen: int notification_large_icon_height -com.bumptech.glide.integration.okhttp.R$styleable: int[] CoordinatorLayout_Layout -androidx.constraintlayout.widget.R$attr: int windowActionBarOverlay -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$id: int container_main_first_daily_card_container -com.google.android.material.R$attr: int behavior_expandedOffset -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver) -wangdaye.com.geometricweather.R$color: int design_default_color_on_primary -wangdaye.com.geometricweather.R$attr: int state_dragged -com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeTopRight -androidx.preference.R$styleable: int RecyclerView_layoutManager -com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_track_material -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_icon_color_selector_colored -com.bumptech.glide.R$id: int tag_unhandled_key_event_manager -androidx.appcompat.resources.R$drawable: int notification_template_icon_low_bg -androidx.appcompat.R$id: int accessibility_custom_action_26 -cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.ICMStatusBarManager getStatusBarInterface() -wangdaye.com.geometricweather.R$attr: int layout_anchor -cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener: void onLookupCityRequestCompleted(int,java.util.List) -wangdaye.com.geometricweather.R$attr: int customColorDrawableValue -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCutDrawable -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: java.lang.Throwable error -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textSize -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_ignoreBatteryOptBtn -androidx.loader.R$style: int TextAppearance_Compat_Notification_Info -android.didikee.donate.R$attr: int textColorSearchUrl -android.didikee.donate.R$style: int TextAppearance_AppCompat_Display3 -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getWeatherSource() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties -androidx.vectordrawable.R$styleable: int[] GradientColorItem -retrofit2.RequestBuilder: java.lang.String method -wangdaye.com.geometricweather.R$styleable: int[] Insets -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_normal -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginBottom(int) -james.adaptiveicon.R$styleable: int ActionBar_logo -com.google.android.material.R$styleable: int FloatingActionButton_fabCustomSize -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: java.util.List alerts -com.google.android.material.R$styleable: int FloatingActionButton_useCompatPadding -androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endX -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_TITLE -androidx.hilt.lifecycle.R$drawable -com.bumptech.glide.load.HttpException -okhttp3.Cookie: java.lang.String path -james.adaptiveicon.R$styleable: int Toolbar_logoDescription -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextAppearanceActive(int) -com.bumptech.glide.integration.okhttp.R$id: int line3 -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_subtitle_material_toolbar -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$202(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -androidx.appcompat.R$styleable: int AppCompatTextView_textAllCaps -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver -cyanogenmod.power.PerformanceManager: int getPowerProfile() -james.adaptiveicon.R$styleable: int MenuItem_actionProviderClass -androidx.constraintlayout.widget.R$attr: int actionBarItemBackground -wangdaye.com.geometricweather.remoteviews.config.Hilt_DailyTrendWidgetConfigActivity: Hilt_DailyTrendWidgetConfigActivity() -android.didikee.donate.R$attr: int controlBackground -okhttp3.Response: okhttp3.Request request -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_ripple_color -wangdaye.com.geometricweather.R$id: int enterAlways -com.baidu.location.e.h$b: com.baidu.location.e.h$b b -androidx.appcompat.R$attr: int actionModeSplitBackground -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_2_0_padding_bottom -wangdaye.com.geometricweather.R$attr: int autoSizeTextType -com.turingtechnologies.materialscrollbar.R$drawable: int abc_edit_text_material -com.google.android.material.R$string: int clear_text_end_icon_content_description -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMinWidth -okhttp3.internal.http2.Huffman$Node: int symbol -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedVoice(android.content.Context,float) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onNext(java.lang.Object) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_queryHint -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.R$string: int settings_title_refresh_rate -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialButtonToggleGroup -com.google.android.material.chip.Chip: float getChipStrokeWidth() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -androidx.preference.R$attr: int colorPrimary -com.google.android.material.R$styleable: int ConstraintSet_flow_lastVerticalStyle -retrofit2.OkHttpCall$NoContentResponseBody: long contentLength() -androidx.preference.R$attr: int seekBarStyle -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean cancelled -androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache$CallbackInfo createInfo(java.lang.Class,java.lang.reflect.Method[]) -wangdaye.com.geometricweather.R$id: int notification_multi_city_text_2 -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onComplete() -okhttp3.internal.http2.Http2: java.lang.String[] FLAGS -androidx.appcompat.R$styleable: int Toolbar_titleMarginTop -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: java.lang.String Unit -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline3 -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchTextAppearance -com.xw.repo.bubbleseekbar.R$attr: int actionModeCopyDrawable -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontWeight -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getSuffixTextColor() -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken[] $VALUES -okio.RealBufferedSource: java.io.InputStream inputStream() -retrofit2.RequestFactory$Builder: boolean isKotlinSuspendFunction -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_radius -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noCache() -com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getIndeterminateDrawable() -okhttp3.internal.http2.Huffman: int encodedLength(okio.ByteString) -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge -com.google.android.material.R$styleable: int ColorStateListItem_alpha -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogMessage -james.adaptiveicon.R$attr: int arrowShaftLength -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_CompactMenu -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_longpressed_holo -androidx.viewpager.R$styleable: int GradientColor_android_centerColor -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_left_mtrl_light -okio.HashingSource: okio.HashingSource sha256(okio.Source) -cyanogenmod.hardware.IThermalListenerCallback$Stub: int TRANSACTION_onThermalChanged_0 -androidx.preference.internal.PreferenceImageView: int getMaxHeight() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String to -wangdaye.com.geometricweather.R$id: int switch_layout -wangdaye.com.geometricweather.main.Hilt_MainActivity -james.adaptiveicon.R$attr: int gapBetweenBars -com.google.android.material.R$styleable: int ConstraintSet_flow_lastHorizontalBias -cyanogenmod.externalviews.ExternalView$5: void run() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String url -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Hint -com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_android_popupBackground -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textSize -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_confirm_button_min_width -androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context,android.util.AttributeSet,int) -androidx.drawerlayout.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$styleable: int MaterialButton_shapeAppearance -okhttp3.Challenge: Challenge(java.lang.String,java.lang.String) -androidx.viewpager.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastVerticalStyle -android.didikee.donate.R$styleable: int[] LinearLayoutCompat_Layout -cyanogenmod.app.ProfileGroup: boolean mDefaultGroup -androidx.dynamicanimation.R$layout: int notification_action_tombstone -androidx.transition.R$attr: R$attr() -com.xw.repo.bubbleseekbar.R$integer -wangdaye.com.geometricweather.R$style: int Widget_Design_TextInputLayout -cyanogenmod.externalviews.KeyguardExternalView$5: void run() -com.bumptech.glide.R$id: int icon -com.turingtechnologies.materialscrollbar.R$id: int unlabeled -james.adaptiveicon.R$style: int Widget_AppCompat_DropDownItem_Spinner -com.google.android.material.R$id: int TOP_END -cyanogenmod.externalviews.KeyguardExternalView$2: void onDetachedFromWindow() -com.google.android.material.R$styleable: int RecycleListView_paddingTopNoTitle -androidx.lifecycle.LifecycleRegistryOwner -org.greenrobot.greendao.AbstractDao: void loadAllUnlockOnWindowBounds(android.database.Cursor,android.database.CursorWindow,java.util.List) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_percent -androidx.transition.R$styleable: int GradientColor_android_gradientRadius -james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_Underlined -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -androidx.preference.R$attr: int showDividers -com.google.android.material.R$id: int checked -androidx.hilt.R$id: int accessibility_custom_action_14 -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedHeightMinor -androidx.preference.R$color: int background_material_dark -com.google.android.material.R$attr: int linearSeamless -io.reactivex.internal.subscriptions.SubscriptionArbiter: long serialVersionUID -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ListPopupWindow -wangdaye.com.geometricweather.R$transition: int search_activity_enter -android.didikee.donate.R$style: int Theme_AppCompat_Dialog_Alert -com.google.android.material.R$attr: int showTitle -okhttp3.OkHttpClient: java.net.Proxy proxy() -androidx.recyclerview.R$attr: int fastScrollVerticalThumbDrawable -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge -okhttp3.internal.Util: okhttp3.Headers toHeaders(java.util.List) -android.didikee.donate.R$color: int secondary_text_disabled_material_light -android.didikee.donate.R$attr: int listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$styleable: int Constraint_android_transformPivotY -com.xw.repo.bubbleseekbar.R$attr: int fontProviderAuthority -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: androidx.lifecycle.LifecycleOwner mLifecycle -com.google.android.material.bottomappbar.BottomAppBar$SavedState -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status FAILED -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_positiveButtonText -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_toId -cyanogenmod.profiles.ConnectionSettings$BooleanState -com.jaredrummler.android.colorpicker.R$color: int tooltip_background_light -androidx.drawerlayout.R$attr: int fontProviderCerts -com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_scrollable_min_width -com.google.android.material.internal.ScrimInsetsFrameLayout: void setScrimInsetForeground(android.graphics.drawable.Drawable) -androidx.activity.R$id: int action_container -wangdaye.com.geometricweather.R$attr: int bsb_thumb_radius_on_dragging -androidx.appcompat.R$styleable: int[] AppCompatTheme -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitationProbability -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_9 -androidx.constraintlayout.widget.R$attr: int windowNoTitle -android.didikee.donate.R$dimen: int abc_action_bar_subtitle_top_margin_material -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_FULL -com.jaredrummler.android.colorpicker.R$attr: int preserveIconSpacing -cyanogenmod.app.ILiveLockScreenManagerProvider: void cancelLiveLockScreen(java.lang.String,int,int) -okhttp3.FormBody: java.lang.String value(int) -com.google.android.material.R$styleable: int MaterialCalendarItem_itemTextColor -okio.Buffer: java.lang.String readUtf8(long) -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_checkable -cyanogenmod.hardware.CMHardwareManager: boolean setVibratorIntensity(int) -androidx.preference.R$attr: int borderlessButtonStyle -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_voice_search_api_material -com.jaredrummler.android.colorpicker.R$attr: int paddingTopNoTitle -androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetTop -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_min -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.hardware.ThermalListenerCallback -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: long serialVersionUID -androidx.hilt.work.R$attr: R$attr() -okhttp3.internal.http2.Http2: byte FLAG_ACK -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance -androidx.constraintlayout.widget.R$styleable: int Transform_android_scaleX -com.google.android.material.circularreveal.CircularRevealRelativeLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -wangdaye.com.geometricweather.R$styleable: int Preference_android_shouldDisableView -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColorHint -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$OnFlingListener getOnFlingListener() -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_checkable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource LocalSource -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STYLE_PREVIEW -androidx.appcompat.R$style: int TextAppearance_AppCompat_Menu -androidx.transition.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastHorizontalStyle -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String hourlyForecast -cyanogenmod.app.ProfileGroup: void setSoundMode(cyanogenmod.app.ProfileGroup$Mode) -io.reactivex.Observable: io.reactivex.Observable scan(java.lang.Object,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: void setStatus(int) -io.reactivex.Observable: io.reactivex.Observable timestamp(io.reactivex.Scheduler) -com.turingtechnologies.materialscrollbar.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.R$styleable: int StateListDrawable_android_visible -androidx.preference.R$styleable: int[] ActivityChooserView -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.core.widget.NestedScrollView: void setOnScrollChangeListener(androidx.core.widget.NestedScrollView$OnScrollChangeListener) -com.bumptech.glide.load.HttpException: int statusCode -androidx.viewpager.R$id: int tag_transition_group -androidx.appcompat.widget.SearchView: void setQueryHint(java.lang.CharSequence) -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void registerListener(cyanogenmod.app.ICustomTileListener,android.content.ComponentName,int) -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_descendantFocusability -androidx.preference.R$style: int ThemeOverlay_AppCompat_DayNight -com.google.android.gms.common.api.ApiException: java.lang.String getStatusMessage() -android.didikee.donate.R$styleable: int SwitchCompat_switchPadding -androidx.hilt.work.R$id: int accessibility_custom_action_3 -okhttp3.internal.http2.Http2Stream: void writeHeaders(java.util.List,boolean) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_text_color -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_PopupMenu -okio.SegmentedByteString: boolean rangeEquals(int,okio.ByteString,int,int) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int OTHER_STATE_CONSUMED_OR_EMPTY -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Title -com.google.android.material.R$style: int Base_Widget_MaterialComponents_AutoCompleteTextView -io.reactivex.internal.observers.BlockingObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.util.AtomicThrowable errors -android.didikee.donate.R$attr: int paddingBottomNoButtons -com.jaredrummler.android.colorpicker.R$attr: int listItemLayout -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: java.util.concurrent.atomic.AtomicInteger wip -androidx.preference.R$id: int action_container -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: IKeyguardExternalViewProvider$Stub() -com.xw.repo.bubbleseekbar.R$attr: int preserveIconSpacing -okhttp3.HttpUrl$Builder: java.lang.String encodedFragment -androidx.loader.R$attr: int ttcIndex -androidx.appcompat.R$id: int actions -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeSplitBackground -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.appcompat.R$drawable: int abc_textfield_search_activated_mtrl_alpha -com.jaredrummler.android.colorpicker.R$id: int buttonPanel -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_NoActionBar -wangdaye.com.geometricweather.db.entities.DailyEntity: void setPm25(java.lang.Float) -androidx.preference.R$drawable: int abc_ic_ab_back_material -com.jaredrummler.android.colorpicker.R$drawable: int notification_tile_bg -com.google.android.material.R$styleable: int AppCompatTextView_drawableTintMode -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String mId -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: int status -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackActiveTintList() -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_normal_material_light -com.google.android.material.R$attr: int theme -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotation -wangdaye.com.geometricweather.R$layout: int widget_clock_day_details -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_LED_OFF_VALIDATOR -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_animationMode -com.google.android.material.R$dimen: int abc_dialog_corner_radius_material -com.google.android.material.R$id: int stop -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String value -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int ThunderstormProbability -androidx.appcompat.R$styleable: int AppCompatTheme_controlBackground -wangdaye.com.geometricweather.R$styleable: int TouchScrollBar_msb_autoHide -androidx.preference.R$styleable: int AppCompatTheme_actionBarStyle -wangdaye.com.geometricweather.R$color: int notification_background_l -james.adaptiveicon.R$dimen: int abc_dialog_padding_material -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: CaiYunMainlyResult$AlertsBean() -com.google.android.material.R$dimen: int mtrl_tooltip_arrowSize -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog -com.turingtechnologies.materialscrollbar.R$style: int Base_V28_Theme_AppCompat -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeProcessingListener mThemeProcessingListener -com.jaredrummler.android.colorpicker.R$id: int custom -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean -com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuView -cyanogenmod.app.ILiveLockScreenManager$Stub: ILiveLockScreenManager$Stub() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: void setValue(java.util.List) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -androidx.appcompat.widget.AppCompatSpinner: void setDropDownHorizontalOffset(int) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionMode -androidx.appcompat.R$style: int TextAppearance_AppCompat_Headline -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeFindDrawable -wangdaye.com.geometricweather.R$styleable: int[] ShapeableImageView -androidx.transition.R$styleable: int[] GradientColor -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderQuery -com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_DropDownUp -com.google.android.material.datepicker.MaterialCalendar -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_2 -wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_close_circle -com.google.android.material.R$dimen: int design_appbar_elevation -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date getSetDate() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display3 -android.didikee.donate.R$attr: int ratingBarStyleSmall -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat PREFER_RGB_565 -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType[] values() -wangdaye.com.geometricweather.R$string: int feedback_updating_weather_data -androidx.constraintlayout.widget.R$styleable: int AlertDialog_showTitle -androidx.preference.R$styleable: int LinearLayoutCompat_dividerPadding -com.google.android.material.R$color: int primary_material_dark -wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_margin_left -okio.Buffer: long size() -okhttp3.internal.http2.Http2Stream$FramingSink: okhttp3.internal.http2.Http2Stream this$0 -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_to_on_mtrl_000 -androidx.appcompat.widget.Toolbar: int getContentInsetRight() -com.google.android.material.R$style: int Base_Theme_MaterialComponents_CompactMenu -androidx.preference.R$layout: int support_simple_spinner_dropdown_item -wangdaye.com.geometricweather.R$dimen: int design_snackbar_background_corner_radius -wangdaye.com.geometricweather.R$id: int textStart -wangdaye.com.geometricweather.R$dimen: int mtrl_min_touch_target_size -com.google.android.material.R$dimen: int mtrl_calendar_content_padding -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_0 -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderAuthority -android.support.v4.graphics.drawable.IconCompatParcelizer: void write(androidx.core.graphics.drawable.IconCompat,androidx.versionedparcelable.VersionedParcel) -androidx.preference.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: AccuCurrentResult$PrecipitationSummary$PastHour$Imperial() -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_normal -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -com.google.android.material.tabs.TabLayout$TabView: int getContentWidth() -androidx.constraintlayout.widget.R$dimen: int abc_button_padding_vertical_material -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: java.lang.String DESCRIPTOR -androidx.constraintlayout.widget.R$attr: int searchViewStyle -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean disposeAll() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: double Value -com.google.android.material.R$styleable: int Layout_layout_constraintLeft_toLeftOf -androidx.preference.R$style: int Widget_AppCompat_ActionButton_Overflow -james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max -androidx.drawerlayout.R$id: int action_divider -okhttp3.Protocol: okhttp3.Protocol HTTP_1_1 -wangdaye.com.geometricweather.common.ui.widgets.TagView: void setChecked(boolean) -wangdaye.com.geometricweather.R$attr: int helperTextTextAppearance -androidx.fragment.R$styleable: int GradientColor_android_startX -androidx.recyclerview.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.R$styleable: int ActionBar_elevation -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_RC4_128_SHA -okhttp3.internal.http1.Http1Codec$ChunkedSink: void flush() -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Info -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_defaultValue -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endX -androidx.work.R$layout: int notification_template_icon_group -androidx.hilt.work.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.R$dimen: int abc_text_size_body_2_material -com.baidu.location.e.o: java.util.List a(org.json.JSONObject,java.lang.String,int) -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIconTintList(android.content.res.ColorStateList) -androidx.coordinatorlayout.R$layout: int notification_template_custom_big -androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void truncate() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_weight -wangdaye.com.geometricweather.R$styleable: int LoadingImageView_imageAspectRatioAdjust -com.google.android.material.R$color: int primary_dark_material_dark -wangdaye.com.geometricweather.R$drawable: int abc_btn_check_to_on_mtrl_000 -wangdaye.com.geometricweather.db.entities.WeatherEntity: void __setDaoSession(wangdaye.com.geometricweather.db.entities.DaoSession) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -okhttp3.internal.ws.RealWebSocket: int receivedCloseCode -wangdaye.com.geometricweather.R$string: int settings_notification_can_be_cleared_on -wangdaye.com.geometricweather.R$drawable: int weather_haze -androidx.preference.R$color: int primary_text_default_material_light -androidx.core.R$styleable: int FontFamilyFont_fontVariationSettings -com.google.android.material.R$id: int material_minute_text_input -androidx.viewpager.widget.ViewPager: void setCurrentItem(int) -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_trackTintMode -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_android_elevation -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCityId(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endY -androidx.appcompat.R$color: int androidx_core_ripple_material_light -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSrc() -androidx.preference.R$drawable: int abc_ic_menu_share_mtrl_alpha -cyanogenmod.themes.ThemeManager: void requestThemeChange(java.util.Map) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_7 -com.baidu.location.e.o -androidx.hilt.work.R$styleable: int[] ColorStateListItem -com.jaredrummler.android.colorpicker.R$styleable: int[] CompoundButton -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView_Menu -androidx.preference.R$drawable: int abc_btn_radio_to_on_mtrl_015 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_imageButtonStyle -androidx.appcompat.R$style: int Widget_AppCompat_Toolbar -retrofit2.KotlinExtensions$awaitResponse$2$2 -wangdaye.com.geometricweather.R$color: int material_grey_900 -okhttp3.internal.cache.DiskLruCache: boolean hasJournalErrors -wangdaye.com.geometricweather.R$anim: int mtrl_bottom_sheet_slide_in -androidx.hilt.work.R$id: int action_container -com.google.android.material.R$id: int dragStart -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf -com.bumptech.glide.R$dimen: int compat_button_inset_vertical_material -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean writePersistentBytes(java.lang.String,byte[]) -wangdaye.com.geometricweather.R$id: int sides -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView_Menu -okhttp3.internal.cache.DiskLruCache: java.util.Iterator snapshots() -androidx.preference.R$styleable: int StateListDrawable_android_variablePadding -com.google.android.material.R$plurals -com.turingtechnologies.materialscrollbar.R$attr: int allowStacking -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function9) -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_right_mtrl_light -com.google.android.material.R$attr: int staggered -androidx.core.R$attr: int fontProviderQuery -okhttp3.internal.Util$1 -com.google.android.material.circularreveal.CircularRevealGridLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$id: int smallLabel -com.amap.api.fence.GeoFence: int STATUS_STAYED -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit PERCENT -com.google.android.material.R$dimen: int compat_notification_large_icon_max_width -androidx.preference.R$drawable: int btn_radio_on_to_off_mtrl_animation -okhttp3.HttpUrl: boolean equals(java.lang.Object) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias -androidx.lifecycle.ViewModelProviders -cyanogenmod.os.Concierge: Concierge() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitationDuration -androidx.lifecycle.Transformations: androidx.lifecycle.LiveData switchMap(androidx.lifecycle.LiveData,androidx.arch.core.util.Function) -androidx.transition.R$integer: R$integer() -retrofit2.Platform$Android$MainThreadExecutor: void execute(java.lang.Runnable) -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Time -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_elevation -com.google.android.material.R$attr: int layout_constraintHorizontal_bias -james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(android.os.Parcel) -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_writePersistentBytes -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void run() -com.google.android.material.R$id: int withinBounds -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -wangdaye.com.geometricweather.R$dimen: int mtrl_card_spacing -androidx.hilt.lifecycle.R$layout: int notification_template_icon_group -androidx.constraintlayout.widget.R$color: int abc_btn_colored_borderless_text_material -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -com.jaredrummler.android.colorpicker.R$id: int preset -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_tintMode -androidx.constraintlayout.widget.R$integer: int config_tooltipAnimTime -androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context) -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_menu_material -wangdaye.com.geometricweather.R$animator: int touch_raise -wangdaye.com.geometricweather.R$styleable: int MenuView_preserveIconSpacing -wangdaye.com.geometricweather.R$string: int page_indicator -wangdaye.com.geometricweather.remoteviews.config.Hilt_HourlyTrendWidgetConfigActivity: Hilt_HourlyTrendWidgetConfigActivity() -cyanogenmod.externalviews.ExternalView -wangdaye.com.geometricweather.R$attr: int queryBackground -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWeatherPhase -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -androidx.lifecycle.ComputableLiveData$3: ComputableLiveData$3(androidx.lifecycle.ComputableLiveData) -com.amap.api.location.AMapLocationClientOption: void setScanWifiInterval(long) -io.reactivex.Observable: io.reactivex.Single last(java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int describeContents() -okhttp3.internal.http2.Http2Connection$Builder: okio.BufferedSink sink -com.google.android.material.R$drawable: int abc_ic_clear_material -james.adaptiveicon.R$styleable: int AppCompatTextView_fontVariationSettings -com.google.android.material.R$string: int abc_searchview_description_voice -com.google.android.material.R$attr: int arrowHeadLength -androidx.constraintlayout.widget.R$styleable: int Constraint_android_maxWidth -com.google.android.material.R$dimen: int mtrl_extended_fab_disabled_elevation -cyanogenmod.themes.IThemeService: int getLastThemeChangeRequestType() -com.google.android.material.button.MaterialButton: void setStrokeWidthResource(int) -retrofit2.adapter.rxjava2.BodyObservable: io.reactivex.Observable upstream -cyanogenmod.hardware.IThermalListenerCallback$Stub: android.os.IBinder asBinder() -com.google.android.material.navigation.NavigationView: int getItemIconPadding() -com.google.android.material.R$styleable: int ConstraintSet_barrierDirection -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onTimeoutError(long,java.lang.Throwable) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -androidx.hilt.lifecycle.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$attr: int checkedButton -androidx.hilt.R$id: int accessibility_custom_action_20 -com.google.android.material.R$style: int Theme_MaterialComponents_Light_DarkActionBar -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeTextType -okhttp3.Cache: void trackResponse(okhttp3.internal.cache.CacheStrategy) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onComplete() -wangdaye.com.geometricweather.R$layout: int cpv_preference_square_large -wangdaye.com.geometricweather.R$attr: int text_color -com.turingtechnologies.materialscrollbar.R$string: int abc_action_bar_home_description -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.internal.connection.StreamAllocation streamAllocation() -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: boolean isExecuted() -com.google.android.material.R$styleable: int TextAppearance_android_shadowColor -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -androidx.appcompat.widget.AppCompatTextView: void setTextClassifier(android.view.textclassifier.TextClassifier) -wangdaye.com.geometricweather.R$string: int feedback_select_location_provider -androidx.preference.R$styleable: int AppCompatTheme_editTextBackground -okhttp3.OkHttpClient: okhttp3.Authenticator proxyAuthenticator -com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getDurationVoice(android.content.Context,float) -io.reactivex.Observable: io.reactivex.Observable sorted(java.util.Comparator) -com.google.android.material.floatingactionbutton.FloatingActionButton: void hide(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) -wangdaye.com.geometricweather.R$attr: int actionBarDivider -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_FloatingActionButton -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_SNOW_SHOWERS -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: long bytesRead -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth -androidx.lifecycle.SavedStateHandleController: void tryToAddRecreator(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) -okhttp3.Request$Builder: okhttp3.Request$Builder head() -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okhttp3.internal.Util: java.nio.charset.Charset UTF_8 -androidx.viewpager2.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType BOOLEAN_TYPE -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Spinner -androidx.activity.R$styleable: int FontFamily_fontProviderQuery -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String opPkg -androidx.hilt.work.R$styleable: int[] Fragment -wangdaye.com.geometricweather.R$layout: int dialog_learn_more_about_geocoder -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeSplitBackground -com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomAppBar -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_id -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_elevation -com.google.android.material.R$color: int cardview_light_background -cyanogenmod.themes.IThemeChangeListener$Stub -wangdaye.com.geometricweather.R$attr: int iconResEnd -james.adaptiveicon.R$style: int Widget_AppCompat_PopupWindow -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String _ID -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: java.util.Date Set -com.google.android.material.R$color: int switch_thumb_normal_material_dark -james.adaptiveicon.R$attr: int textColorAlertDialogListItem -androidx.preference.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -com.bumptech.glide.R$id: int right_side -androidx.hilt.lifecycle.R$style -retrofit2.RequestFactory$Builder: retrofit2.Retrofit retrofit -com.google.android.material.R$id: int textinput_suffix_text -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode OVERRIDE -android.didikee.donate.R$attr: int listPopupWindowStyle -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.PushObserver pushObserver -com.google.android.material.datepicker.CalendarConstraints -org.greenrobot.greendao.AbstractDao: java.lang.String[] getNonPkColumns() -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -okhttp3.Headers: java.lang.String get(java.lang.String[],java.lang.String) -androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_light -wangdaye.com.geometricweather.R$attr: int colorSurface -okhttp3.Dispatcher: Dispatcher(java.util.concurrent.ExecutorService) -com.google.android.material.R$styleable: int[] ViewBackgroundHelper -androidx.work.R$dimen: int notification_small_icon_background_padding -com.google.android.material.slider.BaseSlider: void setValues(java.util.List) -androidx.appcompat.R$styleable: int Toolbar_subtitleTextColor -androidx.preference.R$attr: int textAppearanceListItem -androidx.preference.R$styleable: int Toolbar_popupTheme -cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.ICMTelephonyManager sService -com.jaredrummler.android.colorpicker.R$styleable: int RecycleListView_paddingTopNoTitle -com.google.android.material.R$style: int TestStyleWithoutLineHeight -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.queue.MpscLinkedQueue queue -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -cyanogenmod.themes.ThemeManager: long getLastThemeChangeTime() -android.didikee.donate.R$dimen: int notification_subtext_size -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void request(long) -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String admin -okio.ByteString: okio.ByteString encodeUtf8(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String getMoonPhase(android.content.Context) -com.amap.api.location.AMapLocation: java.lang.String i(com.amap.api.location.AMapLocation,java.lang.String) -wangdaye.com.geometricweather.R$dimen: int mtrl_progress_circular_inset -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTag -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: long serialVersionUID -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: int prefetch -wangdaye.com.geometricweather.weather.json.mf.MfRainResult -okhttp3.internal.http2.Http2Stream$FramingSink: void write(okio.Buffer,long) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: long EpochDate -cyanogenmod.app.suggest.ApplicationSuggestion$1: ApplicationSuggestion$1() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator -io.reactivex.Observable: io.reactivex.Single collectInto(java.lang.Object,io.reactivex.functions.BiConsumer) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.util.List value -wangdaye.com.geometricweather.R$styleable: int[] OnClick -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_textOn -android.didikee.donate.R$styleable: int ActionBar_displayOptions -androidx.appcompat.R$styleable: int Spinner_android_entries -wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_next_black_24dp -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String speed -okhttp3.internal.platform.AndroidPlatform: boolean isCleartextTrafficPermitted(java.lang.String) -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: MaybeToObservable$MaybeToObservableObserver(io.reactivex.Observer) -okhttp3.Response$Builder: okhttp3.Response$Builder receivedResponseAtMillis(long) -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dialog -com.google.android.material.textfield.TextInputLayout: com.google.android.material.internal.CheckableImageButton getEndIconToUpdateDummyDrawable() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.functions.Function bufferClose -io.reactivex.exceptions.OnErrorNotImplementedException: long serialVersionUID -org.greenrobot.greendao.AbstractDao: java.lang.Object loadCurrent(android.database.Cursor,int,boolean) -okhttp3.internal.Util$2: boolean val$daemon -okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte EXCEPTION_MARKER -androidx.lifecycle.ReflectiveGenericLifecycleObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -com.google.android.material.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -androidx.preference.R$style: int Base_AlertDialog_AppCompat_Light -androidx.appcompat.R$styleable: int MenuGroup_android_enabled -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -androidx.preference.R$styleable: int[] MenuView -androidx.vectordrawable.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.R$menu: int activity_settings -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float so2 -io.reactivex.internal.observers.DeferredScalarObserver: void onNext(java.lang.Object) -cyanogenmod.weatherservice.ServiceRequestResult$1: cyanogenmod.weatherservice.ServiceRequestResult createFromParcel(android.os.Parcel) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -com.google.android.material.R$layout: int notification_action -cyanogenmod.profiles.AirplaneModeSettings$BooleanState: int STATE_ENABLED -com.google.android.material.R$attr: int chipStrokeWidth -io.reactivex.Observable: io.reactivex.Single elementAtOrError(long) -wangdaye.com.geometricweather.db.entities.HistoryEntity -androidx.preference.R$drawable: int abc_list_selector_holo_light -androidx.constraintlayout.widget.R$attr: int measureWithLargestChild -androidx.constraintlayout.widget.R$attr: int buttonTint -androidx.viewpager2.R$dimen: int fastscroll_default_thickness -com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_backgroundTintMode -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: void detach() -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: int unitArrayIndex -cyanogenmod.app.Profile: int getExpandedDesktopMode() -com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_item_material -com.jaredrummler.android.colorpicker.R$style: int Preference_Information -androidx.work.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.R$id: int enterAlwaysCollapsed -com.jaredrummler.android.colorpicker.R$attr: int state_above_anchor -com.google.android.material.R$styleable: int[] DrawerArrowToggle -okio.RealBufferedSink: boolean closed -io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.CompletableSource) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_always_show_bubble -androidx.appcompat.widget.ActionBarContainer: ActionBarContainer(android.content.Context) -androidx.core.R$id: int tag_transition_group -androidx.legacy.coreutils.R$styleable: int GradientColor_android_endY -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean done -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial -com.amap.api.fence.PoiItem: void setPoiName(java.lang.String) -okhttp3.internal.http2.Http2Reader: void readData(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$styleable: int ActionBar_logo -androidx.appcompat.widget.ActionBarContainer: android.view.View getTabContainer() -cyanogenmod.app.CMTelephonyManager: CMTelephonyManager(android.content.Context) -com.turingtechnologies.materialscrollbar.R$attr: int msb_autoHide -wangdaye.com.geometricweather.R$id: int gone -androidx.appcompat.widget.AppCompatTextView: void setSupportCompoundDrawablesTintMode(android.graphics.PorterDuff$Mode) -androidx.hilt.work.R$id: int visible_removing_fragment_view_tag -com.google.android.material.R$id: int floating -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_iconTint -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Pm10 -james.adaptiveicon.R$color: int bright_foreground_inverse_material_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_84 -com.turingtechnologies.materialscrollbar.R$attr: int checkboxStyle -james.adaptiveicon.R$drawable: int notification_icon_background -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerError(java.lang.Throwable) -androidx.constraintlayout.widget.R$styleable: int Toolbar_android_gravity -androidx.hilt.work.R$id: int tag_transition_group -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: java.lang.String address -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_shapeAppearanceOverlay -androidx.appcompat.widget.SwitchCompat: android.content.res.ColorStateList getTrackTintList() -com.google.android.material.R$attr: int iconSize -retrofit2.BuiltInConverters$RequestBodyConverter: BuiltInConverters$RequestBodyConverter() -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_thickness -com.github.rahatarmanahmed.cpv.R$integer: R$integer() -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History -com.google.android.material.R$attr: int titleMargin -wangdaye.com.geometricweather.R$color: int dim_foreground_material_light -androidx.viewpager.widget.PagerTitleStrip: void setSingleLineAllCaps(android.widget.TextView) -androidx.preference.R$style: int Widget_AppCompat_Button -okhttp3.internal.platform.OptionalMethod: boolean isSupported(java.lang.Object) -com.google.android.material.R$styleable: int TextInputLayout_endIconMode -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelMenuListWidth -androidx.loader.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer dewPoint -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: long timeout -androidx.viewpager.widget.PagerTabStrip: PagerTabStrip(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_textAppearance -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth -wangdaye.com.geometricweather.R$style: int PreferenceFragmentList -com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextInputLayout -retrofit2.OkHttpCall$1: void onResponse(okhttp3.Call,okhttp3.Response) -com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark -okhttp3.internal.http2.Http2Connection: void pushResetLater(int,okhttp3.internal.http2.ErrorCode) -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadPong(okio.ByteString) -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_setActiveProfile_0 -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_actionTextColorAlpha -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: int UnitType -james.adaptiveicon.R$styleable: int MenuItem_numericModifiers -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_WIFI_ICON -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents -com.jaredrummler.android.colorpicker.R$id: int square -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onDetachedFromWindow() -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getIce() -okhttp3.Cookie: boolean persistent() -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: android.graphics.Rect getWindowInsets() -wangdaye.com.geometricweather.R$attr: int tickVisible -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_background_transition_holo_dark -androidx.viewpager.widget.ViewPager: void addOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) -androidx.constraintlayout.widget.R$attr: int toolbarStyle -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Colored -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Small_Inverse -com.google.android.material.R$styleable: int AppCompatTheme_alertDialogStyle -android.didikee.donate.R$attr: int subtitleTextStyle -okio.GzipSource: byte FEXTRA -androidx.preference.R$styleable: int Preference_android_title -okhttp3.OkHttpClient$1: boolean equalsNonHost(okhttp3.Address,okhttp3.Address) -okhttp3.RequestBody$3: okhttp3.MediaType contentType() -io.reactivex.Observable: io.reactivex.Observable dematerialize(io.reactivex.functions.Function) -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onError(java.lang.Throwable) -androidx.work.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.loader.R$attr: int fontStyle -cyanogenmod.app.IProfileManager$Stub: IProfileManager$Stub() -androidx.preference.R$style: int TextAppearance_AppCompat_Large_Inverse -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -okhttp3.EventListener$Factory -com.jaredrummler.android.colorpicker.R$attr: int buttonStyle -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceLargePopupMenu -com.amap.api.fence.GeoFence: int getType() -androidx.preference.R$drawable: int abc_cab_background_top_mtrl_alpha -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void subscribe(io.reactivex.Observer) -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endColor -com.amap.api.location.AMapLocation: java.lang.String l -androidx.loader.R$styleable: int FontFamilyFont_font -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State getStateAfter(androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -com.google.android.material.R$attr: int textAppearanceLargePopupMenu -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter emitter -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -android.didikee.donate.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -androidx.appcompat.resources.R$dimen: int notification_media_narrow_margin -com.google.android.gms.common.api.internal.zabi -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder onlyIfCached() -androidx.core.R$dimen: int notification_action_text_size -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onNext(java.lang.Object) -androidx.drawerlayout.R$layout: int notification_action_tombstone -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_onClick -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeColor -wangdaye.com.geometricweather.R$attr: int helperText -com.google.android.material.R$id: int line1 -okhttp3.internal.connection.StreamAllocation: void acquire(okhttp3.internal.connection.RealConnection,boolean) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi -james.adaptiveicon.R$styleable: int AppCompatTheme_dividerVertical -androidx.preference.R$id: int parentPanel -wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_xml -androidx.preference.R$styleable: int ActionBar_logo -androidx.preference.R$styleable: int LinearLayoutCompat_android_baselineAligned -okhttp3.internal.http1.Http1Codec$FixedLengthSource: void close() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_light -com.google.android.material.R$attr: int subtitle -cyanogenmod.providers.CMSettings$Global: int getInt(android.content.ContentResolver,java.lang.String,int) -android.didikee.donate.R$styleable: int MenuView_android_headerBackground -androidx.constraintlayout.widget.R$attr: int region_heightLessThan -okio.AsyncTimeout$1: java.lang.String toString() -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderCerts -com.google.android.material.R$styleable: int KeyAttribute_android_translationX -androidx.loader.R$styleable: int ColorStateListItem_alpha -androidx.legacy.coreutils.R$layout: R$layout() -com.turingtechnologies.materialscrollbar.R$id: int src_in -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addFormDataPart(java.lang.String,java.lang.String,okhttp3.RequestBody) -okhttp3.internal.http2.Http2Reader: void readWindowUpdate(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult -androidx.lifecycle.LifecycleRegistry: void handleLifecycleEvent(androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedLevel(java.lang.Integer) -okio.InflaterSource: InflaterSource(okio.Source,java.util.zip.Inflater) -com.turingtechnologies.materialscrollbar.R$attr: int buttonStyleSmall -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void innerSuccess(java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemTextAppearance -com.google.android.material.R$styleable: int KeyAttribute_android_alpha -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -okhttp3.internal.http2.Http2Codec: okhttp3.Response$Builder readHttp2HeadersList(okhttp3.Headers,okhttp3.Protocol) -cyanogenmod.weather.WeatherInfo: void writeToParcel(android.os.Parcel,int) -james.adaptiveicon.R$string: int abc_searchview_description_clear -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_rangeFillColor -io.reactivex.internal.schedulers.ScheduledRunnable: void setFuture(java.util.concurrent.Future) -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder secure() -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startX -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1(androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription,long) -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String value -com.google.android.material.navigation.NavigationView: int getItemMaxLines() -androidx.hilt.R$id: int accessibility_custom_action_8 -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String dn -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_GLOBAL -com.google.android.material.R$color: int bright_foreground_material_light -androidx.preference.R$string: R$string() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabStyle -com.google.android.material.R$drawable: int abc_seekbar_tick_mark_material -com.google.android.material.R$styleable: int ChipGroup_chipSpacingVertical -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCutDrawable -com.jaredrummler.android.colorpicker.R$attr: int actionBarTabTextStyle -com.jaredrummler.android.colorpicker.R$styleable: int Preference_fragment -cyanogenmod.app.ICMStatusBarManager: void unregisterListener(cyanogenmod.app.ICustomTileListener,int) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Id -com.xw.repo.bubbleseekbar.R$attr: int icon -com.amap.api.fence.GeoFence: void setCurrentLocation(com.amap.api.location.AMapLocation) -io.reactivex.internal.observers.InnerQueuedObserver: int fusionMode() -wangdaye.com.geometricweather.R$attr: int boxBackgroundColor -wangdaye.com.geometricweather.db.entities.MinutelyEntity: MinutelyEntity() -androidx.preference.R$style: int Widget_AppCompat_Light_ActivityChooserView -okio.Buffer: okio.ByteString sha512() -retrofit2.OkHttpCall: okhttp3.Call$Factory callFactory -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar -cyanogenmod.app.CMContextConstants: java.lang.String CM_PARTNER_INTERFACE -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_activityChooserViewStyle -com.xw.repo.bubbleseekbar.R$layout: int abc_screen_toolbar -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: ThemesContract$ThemesColumns$InstallState() -okhttp3.HttpUrl: okhttp3.HttpUrl parse(java.lang.String) -wangdaye.com.geometricweather.R$integer: int app_bar_elevation_anim_duration -androidx.appcompat.R$styleable: int View_theme -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getVibrateMode() -okhttp3.Response$Builder: okhttp3.Response$Builder addHeader(java.lang.String,java.lang.String) -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.internal.util.AtomicThrowable error -james.adaptiveicon.R$styleable: int Toolbar_maxButtonHeight -com.google.gson.stream.JsonWriter: void close() -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_small_material -cyanogenmod.weather.CMWeatherManager$1: CMWeatherManager$1(cyanogenmod.weather.CMWeatherManager) -com.xw.repo.bubbleseekbar.R$style: int Base_DialogWindowTitle_AppCompat -androidx.lifecycle.Observer: void onChanged(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: io.reactivex.Observer downstream -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelMenuListWidth -com.google.android.material.R$id: int design_menu_item_action_area -android.didikee.donate.R$color: int abc_primary_text_disable_only_material_light -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -androidx.preference.R$styleable: int Toolbar_subtitleTextColor -cyanogenmod.app.CustomTile$ExpandedItem -com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_disabled -wangdaye.com.geometricweather.R$id: int text -okhttp3.Challenge -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int WeatherIcon -com.google.android.material.R$id: int accessibility_custom_action_12 -wangdaye.com.geometricweather.R$anim: int fragment_fast_out_extra_slow_in -cyanogenmod.externalviews.KeyguardExternalView$2: void collapseNotificationPanel() -androidx.appcompat.R$drawable: int abc_tab_indicator_material -androidx.appcompat.R$style: int Widget_AppCompat_Button_Small -androidx.loader.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context) -wangdaye.com.geometricweather.R$dimen: int material_emphasis_disabled -cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING_START_VOLUME -com.google.android.material.R$attr: int telltales_tailScale -wangdaye.com.geometricweather.R$layout: int cpv_color_item_square -com.google.android.material.R$dimen: int mtrl_fab_translation_z_pressed -com.google.android.material.R$styleable: int AppCompatTheme_windowMinWidthMinor -com.google.android.material.R$styleable: int CompoundButton_buttonTint -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_FONTS -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: AccuCurrentResult$WindChillTemperature$Metric() -androidx.loader.R$attr: int fontProviderQuery -com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Filter -com.google.android.material.R$dimen: int mtrl_switch_thumb_elevation -wangdaye.com.geometricweather.R$drawable: int notif_temp_17 -okhttp3.internal.cache.DiskLruCache: void close() -com.google.android.material.R$attr: int flow_firstHorizontalBias -wangdaye.com.geometricweather.R$styleable: int Slider_trackHeight -com.google.android.material.internal.FlowLayout: int getLineSpacing() -androidx.preference.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -cyanogenmod.weatherservice.ServiceRequestResult$Builder: cyanogenmod.weather.WeatherInfo mWeatherInfo -androidx.preference.R$string: int abc_activity_chooser_view_see_all -wangdaye.com.geometricweather.R$id: int search_go_btn -com.google.android.material.chip.ChipGroup: int getChipCount() -com.turingtechnologies.materialscrollbar.R$color: int foreground_material_light -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void setFirst(io.reactivex.internal.operators.observable.ObservableReplay$Node) -wangdaye.com.geometricweather.R$attr: int tooltipStyle -okhttp3.internal.Util: java.util.regex.Pattern VERIFY_AS_IP_ADDRESS -com.xw.repo.bubbleseekbar.R$attr: int bsb_second_track_color -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetRight -cyanogenmod.externalviews.KeyguardExternalView$6: void run() -org.greenrobot.greendao.AbstractDao: void updateKeyAfterInsertAndAttach(java.lang.Object,long,boolean) -com.google.android.material.R$styleable: int TextInputLayout_prefixTextColor -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.coordinatorlayout.R$styleable: int[] CoordinatorLayout -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder eventListenerFactory(okhttp3.EventListener$Factory) -android.didikee.donate.R$style: int Theme_AppCompat_Light_NoActionBar -james.adaptiveicon.R$attr: int backgroundStacked -androidx.recyclerview.widget.RecyclerView: void setScrollingTouchSlop(int) -okhttp3.Cache$Entry: long receivedResponseMillis -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_android_windowAnimationStyle -androidx.coordinatorlayout.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation -com.turingtechnologies.materialscrollbar.R$id: int coordinator -androidx.viewpager.R$drawable: int notification_bg_normal -com.xw.repo.bubbleseekbar.R$attr: int actionModeShareDrawable -wangdaye.com.geometricweather.R$id: int material_timepicker_cancel_button -androidx.lifecycle.extensions.R$drawable: int notification_bg -com.google.android.material.R$string: int status_bar_notification_info_overflow -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_enterFadeDuration -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog -com.google.android.material.R$dimen: int abc_dialog_fixed_width_minor -com.amap.api.location.AMapLocationQualityReport: boolean isInstalledHighDangerMockApp() -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_creator -com.google.android.material.R$styleable: int Transform_android_transformPivotY -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.R$layout: int abc_screen_content_include -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onComplete() -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: long serialVersionUID -androidx.core.R$dimen: int compat_button_inset_horizontal_material -com.xw.repo.bubbleseekbar.R$id: int add -wangdaye.com.geometricweather.R$animator: int mtrl_btn_unelevated_state_list_anim -androidx.preference.R$style: int Base_Widget_AppCompat_Button_Colored -com.google.android.material.R$layout: int select_dialog_singlechoice_material -com.google.android.material.chip.ChipGroup: void setShowDividerVertical(int) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind -com.google.android.material.R$styleable: int ConstraintSet_android_minWidth -android.didikee.donate.R$style: int Base_Animation_AppCompat_DropDownUp -com.amap.api.location.AMapLocationClientOption: boolean o -com.amap.api.fence.GeoFence: com.amap.api.location.AMapLocation r -com.google.android.material.R$attr: int tabUnboundedRipple -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_1_material -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_anchor -okhttp3.internal.platform.Jdk9Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -com.google.android.material.bottomappbar.BottomAppBar: void setFabAnimationMode(int) -androidx.appcompat.widget.SwitchCompat -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_FloatingActionButton -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: long serialVersionUID -com.bumptech.glide.load.engine.GlideException -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void slideLockscreenIn() -android.didikee.donate.R$styleable: int[] ActionMenuView -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeAlpha(float) -androidx.appcompat.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX -wangdaye.com.geometricweather.R$attr: int errorIconTint -androidx.preference.R$drawable: int notify_panel_notification_icon_bg -com.jaredrummler.android.colorpicker.R$style: int Widget_Compat_NotificationActionContainer -com.google.gson.FieldNamingPolicy$5 -androidx.appcompat.R$style: int Theme_AppCompat_Light_NoActionBar -androidx.transition.R$id: int transition_scene_layoutid_cache -wangdaye.com.geometricweather.R$layout: int item_aqi -wangdaye.com.geometricweather.R$id: int spline -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_26 -io.reactivex.internal.observers.InnerQueuedObserver: int fusionMode -wangdaye.com.geometricweather.R$id: int notification_main_column_container -james.adaptiveicon.R$styleable: int AppCompatTheme_colorAccent -okhttp3.HttpUrl$Builder: java.lang.String canonicalizeHost(java.lang.String,int,int) -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver -androidx.viewpager2.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias -com.jaredrummler.android.colorpicker.R$attr: int cpv_colorShape -okio.Buffer$2: int available() -wangdaye.com.geometricweather.R$id: int autoComplete -okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeWithoutCheckedException(java.lang.Object,java.lang.Object[]) -com.google.android.material.appbar.ViewOffsetBehavior: ViewOffsetBehavior(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$attr: int maxHeight -androidx.appcompat.R$attr: int actionOverflowButtonStyle -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemShapeAppearanceOverlay -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: java.util.concurrent.atomic.AtomicBoolean shouldConnect -androidx.preference.R$drawable: int abc_btn_radio_to_on_mtrl_000 -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: boolean done -androidx.hilt.lifecycle.R$anim: R$anim() -com.google.android.material.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: AccuDailyResult$DailyForecasts() -wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_dark -com.google.gson.FieldNamingPolicy$5: FieldNamingPolicy$5(java.lang.String,int) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onSuccess(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_xml -com.jaredrummler.android.colorpicker.ColorPickerDialog -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_WARNING_INDEX -okhttp3.Request$Builder: okhttp3.Request$Builder header(java.lang.String,java.lang.String) -android.didikee.donate.R$styleable: int AppCompatTheme_panelBackground -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog -com.xw.repo.bubbleseekbar.R$style: int Base_V28_Theme_AppCompat_Light -androidx.appcompat.R$attr: int checkedTextViewStyle -com.turingtechnologies.materialscrollbar.R$attr: int textStartPadding -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.R$attr: int navigationIconColor -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutSelectorSupport parent -james.adaptiveicon.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -com.bumptech.glide.R$styleable: int[] GradientColorItem -android.didikee.donate.R$dimen: int abc_button_inset_horizontal_material -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getStatusBarThemePackageName() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -io.reactivex.Observable: io.reactivex.Single count() -cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_LOCATION_ADVANCED -androidx.hilt.work.R$dimen: int notification_media_narrow_margin -androidx.drawerlayout.R$styleable: int GradientColor_android_startY -okhttp3.internal.ws.RealWebSocket$PingRunnable -wangdaye.com.geometricweather.R$drawable: int weather_fog -com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$string: int feedback_show_widget_card_alpha -com.jaredrummler.android.colorpicker.R$color: int secondary_text_disabled_material_light -androidx.fragment.R$style: int TextAppearance_Compat_Notification -androidx.appcompat.R$dimen: int tooltip_y_offset_non_touch -wangdaye.com.geometricweather.R$styleable: int Chip_chipEndPadding -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setDayIndicatorRotation(float) -com.google.android.gms.location.LocationResult -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: long serialVersionUID -wangdaye.com.geometricweather.R$attr: int flow_lastVerticalStyle -com.google.android.material.R$styleable: int SnackbarLayout_maxActionInlineWidth -com.google.gson.stream.JsonReader: void consumeNonExecutePrefix() -wangdaye.com.geometricweather.R$styleable: int ActionBar_indeterminateProgressStyle -wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_container -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerError(java.lang.Throwable) -androidx.preference.R$attr: int font -com.bumptech.glide.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogMessage -com.turingtechnologies.materialscrollbar.R$attr: int iconStartPadding -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_useCompatPadding -wangdaye.com.geometricweather.R$color: int abc_decor_view_status_guard -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconTint -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPasswordVisibilityToggleContentDescription() -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog -okio.Timeout$1: void throwIfReached() -okhttp3.internal.connection.ConnectionSpecSelector -com.jaredrummler.android.colorpicker.R$id: int progress_circular -wangdaye.com.geometricweather.R$id: int mtrl_calendar_days_of_week -okhttp3.Address: okhttp3.Dns dns() -com.turingtechnologies.materialscrollbar.R$dimen: int notification_top_pad_large_text -androidx.preference.R$attr: int homeAsUpIndicator -james.adaptiveicon.R$styleable: int MenuItem_android_alphabeticShortcut -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_shadow_height -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnClickIntent(android.app.PendingIntent) -androidx.vectordrawable.R$id: int tag_accessibility_pane_title -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle -com.google.android.material.R$id: int home -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_padding -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DrawableWithAnimatedVisibilityChange getCurrentDrawable() -androidx.recyclerview.R$drawable: int notification_bg_normal -androidx.fragment.R$color: int notification_action_color_filter -android.didikee.donate.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -androidx.preference.R$styleable: int[] AppCompatImageView -wangdaye.com.geometricweather.R$styleable: int[] MotionScene -wangdaye.com.geometricweather.R$id: int never -androidx.constraintlayout.widget.Guideline -androidx.hilt.lifecycle.R$id: int visible_removing_fragment_view_tag -com.jaredrummler.android.colorpicker.R$id: int edit_query -androidx.legacy.coreutils.R$id: int actions -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton -com.google.android.material.R$attr: int contentDescription -james.adaptiveicon.R$attr: int fontProviderFetchTimeout -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dividerHorizontal -okhttp3.RequestBody$2: byte[] val$content -com.google.android.material.R$color: int abc_secondary_text_material_dark -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean address_detail -com.jaredrummler.android.colorpicker.R$id: int home -retrofit2.http.PATCH: java.lang.String value() -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$styleable: int Constraint_flow_firstVerticalStyle -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA -androidx.hilt.R$dimen: int notification_top_pad_large_text -io.reactivex.internal.util.ArrayListSupplier: io.reactivex.functions.Function asFunction() -androidx.drawerlayout.R$attr -androidx.core.R$id: int accessibility_custom_action_21 -com.jaredrummler.android.colorpicker.R$attr: int buttonPanelSideLayout -com.google.android.material.R$attr: int textAppearanceBody1 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActivityChooserView -androidx.appcompat.R$color: int primary_text_default_material_dark -androidx.lifecycle.SavedStateHandleController: java.lang.String TAG_SAVED_STATE_HANDLE_CONTROLLER -com.google.android.material.R$dimen: int mtrl_shape_corner_size_large_component -okio.SegmentedByteString: void write(java.io.OutputStream) -cyanogenmod.app.CustomTile$1: CustomTile$1() -com.google.android.material.R$attr: int contentInsetStartWithNavigation -cyanogenmod.externalviews.KeyguardExternalView$2: void slideLockscreenIn() -okhttp3.internal.Internal: okhttp3.internal.connection.RealConnection get(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) -wangdaye.com.geometricweather.R$drawable: int notif_temp_122 -com.google.android.material.R$string: int mtrl_picker_toggle_to_day_selection -wangdaye.com.geometricweather.R$layout: int preference_category -com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getEndIconDrawable() -okhttp3.Request: okhttp3.Headers headers() -james.adaptiveicon.R$styleable: int Toolbar_navigationIcon -cyanogenmod.app.LiveLockScreenManager: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius -com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintDimensionRatio -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_RINGTONES -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRealFeelTemperature -james.adaptiveicon.R$styleable: int MenuView_preserveIconSpacing -com.amap.api.fence.GeoFence: int ERROR_CODE_FAILURE_AUTH -androidx.preference.R$drawable: int abc_list_focused_holo -com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Indeterminate -android.didikee.donate.R$styleable: int[] PopupWindow -androidx.preference.R$styleable: int LinearLayoutCompat_measureWithLargestChild -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowRadius -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List hourlyForecast -androidx.work.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: java.util.List getBrands() -com.turingtechnologies.materialscrollbar.R$attr: int buttonTintMode -com.google.android.material.imageview.ShapeableImageView: void setStrokeColor(android.content.res.ColorStateList) -com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyle -androidx.appcompat.R$styleable: int AppCompatTheme_toolbarStyle -com.google.android.material.R$attr: int arcMode -com.turingtechnologies.materialscrollbar.MaterialScrollBar: MaterialScrollBar(android.content.Context,android.util.AttributeSet) -com.google.android.material.textfield.TextInputLayout: void setEndIconOnClickListener(android.view.View$OnClickListener) -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_arrow_drop_right_black_24dp -com.xw.repo.bubbleseekbar.R$attr: int showTitle -com.github.rahatarmanahmed.cpv.R$dimen: R$dimen() -james.adaptiveicon.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -androidx.appcompat.resources.R$id: int accessibility_custom_action_20 -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_layout -com.google.android.gms.common.api.internal.zaab: void unregisterConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_min -okhttp3.internal.http2.Http2: java.lang.String[] BINARY -androidx.preference.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getHaloTintList() -androidx.core.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.preference.R$styleable: int AnimatedStateListDrawableItem_android_drawable -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_inverse_material_light -com.amap.api.location.APSService: boolean c -android.didikee.donate.R$id: int info -androidx.constraintlayout.helper.widget.Layer: void setElevation(float) -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode AUTO -com.turingtechnologies.materialscrollbar.R$attr: int fabCustomSize -com.amap.api.location.AMapLocation: int e(com.amap.api.location.AMapLocation,int) -okio.ByteString: okio.ByteString read(java.io.InputStream,int) -androidx.drawerlayout.R$color: int notification_icon_bg_color -androidx.constraintlayout.widget.R$id: int baseline -com.amap.api.location.CoordinateConverter: com.amap.api.location.CoordinateConverter from(com.amap.api.location.CoordinateConverter$CoordType) -okhttp3.Headers: java.lang.String name(int) -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_enterFadeDuration -wangdaye.com.geometricweather.R$dimen: int widget_grid_4 -androidx.swiperefreshlayout.R$string -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float snowPrecipitation -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTag -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean cancelled -com.google.android.gms.common.SignInButton: void setOnClickListener(android.view.View$OnClickListener) -androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_dark -cyanogenmod.externalviews.KeyguardExternalView: void onBouncerShowing(boolean) -com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_ContextMenu -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitationDuration -io.reactivex.internal.subscriptions.SubscriptionArbiter -io.reactivex.internal.disposables.DisposableHelper: boolean dispose(java.util.concurrent.atomic.AtomicReference) -androidx.constraintlayout.widget.R$styleable: int Transition_pathMotionArc -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_onAttachedToWindow -com.google.android.material.card.MaterialCardView: void setMaxCardElevation(float) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.disposables.Disposable upstream -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog -com.google.android.material.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator -wangdaye.com.geometricweather.R$drawable: int notif_temp_46 -androidx.hilt.work.R$drawable: int notification_action_background -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.ObservableSource fallback -okhttp3.internal.tls.OkHostnameVerifier -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: double Latitude -androidx.appcompat.R$id: int accessibility_custom_action_16 -com.google.android.material.timepicker.TimeModel -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Large_Inverse -james.adaptiveicon.R$style: int Base_AlertDialog_AppCompat -android.didikee.donate.R$integer: R$integer() -wangdaye.com.geometricweather.R$id: int cpv_preference_preview_color_panel -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setDayIconDrawable(android.graphics.drawable.Drawable) -okhttp3.Challenge: java.util.Map authParams() -com.google.android.material.R$layout: int material_time_input -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_24 -james.adaptiveicon.R$attr: int colorButtonNormal -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleTintMode -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroup -wangdaye.com.geometricweather.R$string: int content_des_sunrise -james.adaptiveicon.R$id: int textSpacerNoTitle -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Connection connection -com.google.android.material.R$string: int material_minute_suffix -com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_EditTextPreference -cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(android.os.Parcel) -com.google.android.material.textfield.TextInputLayout: void setEndIconMode(int) -com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeShareDrawable -androidx.viewpager.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$attr: int mock_labelBackgroundColor -com.google.android.material.R$id: int navigation_header_container -com.google.android.material.slider.Slider: void setStepSize(float) -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -android.didikee.donate.R$styleable: int ActionBar_navigationMode -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_text_size -wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial -androidx.hilt.lifecycle.R$drawable: int notification_bg_low_pressed -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_isSunlightEnhancementSelfManaged -androidx.vectordrawable.animated.R$styleable: int[] ColorStateListItem -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format_use -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String dept -wangdaye.com.geometricweather.R$string: int key_notification_hide_in_lockScreen -com.google.android.material.switchmaterial.SwitchMaterial: android.content.res.ColorStateList getMaterialThemeColorsTrackTintList() -com.google.gson.stream.JsonScope: int EMPTY_DOCUMENT -okhttp3.internal.http2.Http2Connection$ReaderRunnable: okhttp3.internal.http2.Http2Connection this$0 -james.adaptiveicon.R$styleable: int ActionBar_progressBarPadding -androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -androidx.recyclerview.R$drawable: int notify_panel_notification_icon_bg -androidx.appcompat.resources.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.String icon -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -androidx.preference.R$attr: int textAllCaps -wangdaye.com.geometricweather.R$attr: int bsb_min -wangdaye.com.geometricweather.R$styleable: int OnSwipe_limitBoundsTo -wangdaye.com.geometricweather.R$dimen: int material_text_view_test_line_height -androidx.work.NetworkType: androidx.work.NetworkType METERED -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onComplete() -android.didikee.donate.R$color: int secondary_text_disabled_material_dark -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -wangdaye.com.geometricweather.R$drawable: int clock_minute_light -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetTop -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: double HoursOfSun -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPubTime(java.lang.String) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.lang.String type -com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode Battery_Saving -androidx.activity.R$attr: int fontProviderFetchStrategy -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_2 -androidx.preference.R$attr: int actionLayout -androidx.preference.R$styleable: int MenuView_android_itemBackground -org.greenrobot.greendao.AbstractDaoMaster: void registerDaoClass(java.lang.Class) -io.reactivex.internal.observers.LambdaObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setBottomTextColor(int) -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean done -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_title -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: ThemeVersion$ThemeVersionImpl2() -com.google.android.material.R$attr: int spinnerStyle -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int requestFusion(int) -okhttp3.internal.platform.Jdk9Platform: Jdk9Platform(java.lang.reflect.Method,java.lang.reflect.Method) -com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_android_popupAnimationStyle -androidx.preference.MultiSelectListPreference: MultiSelectListPreference(android.content.Context,android.util.AttributeSet) -androidx.core.R$styleable: int ColorStateListItem_android_alpha -androidx.constraintlayout.widget.R$attr: int percentY -androidx.constraintlayout.widget.R$styleable: int Transform_android_translationZ -io.reactivex.Observable: io.reactivex.Observable doFinally(io.reactivex.functions.Action) -com.google.android.material.chip.Chip: float getTextStartPadding() -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_toggle_margin_top -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderAuthority -cyanogenmod.app.CMTelephonyManager: int ASK_FOR_SUBSCRIPTION_ID -com.google.android.material.R$styleable: int MenuItem_actionLayout -james.adaptiveicon.R$attr: int textColorSearchUrl -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -androidx.hilt.R$anim: int fragment_fast_out_extra_slow_in -androidx.lifecycle.Lifecycling: java.util.Map sClassToAdapters -io.reactivex.Observable: io.reactivex.Observable concatMapEagerDelayError(io.reactivex.functions.Function,boolean) -wangdaye.com.geometricweather.R$attr: int tabMode -wangdaye.com.geometricweather.db.entities.MinutelyEntity: int getMinuteInterval() -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -okio.BufferedSink: okio.BufferedSink writeShort(int) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void dispose() -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.Function rightEnd -androidx.appcompat.R$dimen: int abc_action_bar_content_inset_with_nav -com.jaredrummler.android.colorpicker.R$string: int abc_prepend_shortcut_label -androidx.coordinatorlayout.R$dimen: int notification_main_column_padding_top -android.didikee.donate.R$dimen: int abc_text_size_menu_material -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline5 -com.google.android.gms.common.internal.zas -james.adaptiveicon.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -androidx.activity.R$layout: int notification_template_icon_group -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_Underlined -com.google.android.material.R$styleable: int TabLayout_tabIndicatorAnimationDuration -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_creator -wangdaye.com.geometricweather.R$styleable: int Preference_allowDividerBelow -wangdaye.com.geometricweather.common.ui.widgets.DonateImageView: DonateImageView(android.content.Context,android.util.AttributeSet) -androidx.preference.R$id: int tag_accessibility_heading -cyanogenmod.app.CustomTile: android.app.PendingIntent onLongClick -retrofit2.KotlinExtensions$await$4$2 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getDetail() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupMenu -androidx.legacy.coreutils.R$integer: R$integer() -wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_grey -io.reactivex.internal.operators.observable.ObservableReplay$Node: long serialVersionUID -com.google.android.material.R$string: int mtrl_exceed_max_badge_number_content_description -okhttp3.internal.http2.Header -androidx.hilt.R$styleable: int GradientColor_android_startY -androidx.preference.R$attr: int preferenceFragmentStyle -androidx.coordinatorlayout.R$id: int action_image -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getIce() -com.google.android.material.card.MaterialCardView: void setCardElevation(float) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: MfHistoryResult() -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void signalConsumer() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$y -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -androidx.constraintlayout.widget.R$attr: int autoSizePresetSizes -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float ceiling -com.xw.repo.bubbleseekbar.R$attr: int subtitleTextAppearance -wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_android_maxWidth -com.xw.repo.bubbleseekbar.R$attr: int buttonTintMode -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_searchViewStyle -android.didikee.donate.R$styleable: int CompoundButton_buttonTintMode -com.google.android.material.card.MaterialCardView: void setStrokeWidth(int) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.Observer downstream -androidx.appcompat.widget.SearchView: int getMaxWidth() -okhttp3.internal.ws.RealWebSocket: boolean $assertionsDisabled -com.google.android.material.R$styleable: int ActionBar_logo -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean isDisposed() -androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_backgroundTintMode -androidx.appcompat.R$attr: int imageButtonStyle -androidx.lifecycle.ComputableLiveData$2: androidx.lifecycle.ComputableLiveData this$0 -cyanogenmod.externalviews.ExternalViewProviderService: android.os.Handler access$100(cyanogenmod.externalviews.ExternalViewProviderService) -okhttp3.MediaType: java.util.regex.Pattern TYPE_SUBTYPE -androidx.work.impl.utils.futures.AbstractFuture$Failure$1 -com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColorResource(int) -com.google.android.material.R$styleable: int Layout_layout_constraintEnd_toEndOf -okhttp3.internal.Util: java.util.List immutableList(java.util.List) -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_checked -okhttp3.EventListener: void callStart(okhttp3.Call) -androidx.transition.R$attr: int font -com.xw.repo.bubbleseekbar.R$attr: int divider -james.adaptiveicon.R$styleable: int DrawerArrowToggle_arrowShaftLength -androidx.lifecycle.reactivestreams.R: R() -wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarTextViewStyle -androidx.hilt.work.R$id: int time -com.google.android.gms.internal.location.zzac: android.os.Parcelable$Creator CREATOR -androidx.preference.R$attr: int allowDividerAbove -androidx.constraintlayout.widget.R$id: int spread -cyanogenmod.app.Profile: int mExpandedDesktopMode -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_holo_dark -androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.providers.DataUsageContract: java.lang.String SLOW_AVG -cyanogenmod.themes.ThemeChangeRequest -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node getHead() -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit FT -okhttp3.RequestBody -com.google.android.material.slider.BaseSlider: void setTickVisible(boolean) -com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_background_color -com.turingtechnologies.materialscrollbar.R$attr: int colorPrimary -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getStrokeAlpha() -wangdaye.com.geometricweather.R$attr: int iconTintMode -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.util.Date getDate() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_bottom_material -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display1 -androidx.preference.R$styleable: int ActionBar_indeterminateProgressStyle -com.loc.k -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.preference.R$attr: int showAsAction -com.google.android.material.R$styleable: int AppCompatTextView_autoSizeStepGranularity -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeBackground -wangdaye.com.geometricweather.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean cancelled -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.R$drawable: int ic_star -okhttp3.internal.cache.FaultHidingSink: FaultHidingSink(okio.Sink) -com.google.android.material.R$attr: int itemShapeInsetEnd -com.google.android.material.R$color: int button_material_light -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.util.List contextList -androidx.hilt.work.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.R$id: int tag_accessibility_heading -com.turingtechnologies.materialscrollbar.R$attr: int helperTextTextAppearance -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon -com.google.android.material.progressindicator.ProgressIndicator: void setProgress(int) -androidx.core.R$id: int notification_main_column_container -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorPrimary -android.didikee.donate.R$attr: int alertDialogCenterButtons -wangdaye.com.geometricweather.R$attr: int dropdownListPreferredItemHeight -androidx.legacy.coreutils.R$dimen: int notification_action_text_size -com.turingtechnologies.materialscrollbar.R$attr: int msb_recyclerView -com.jaredrummler.android.colorpicker.R$attr: int dialogTitle -androidx.appcompat.R$drawable: int abc_spinner_mtrl_am_alpha -androidx.coordinatorlayout.R$id: int accessibility_custom_action_27 -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onNext(java.lang.Object) -james.adaptiveicon.R$attr: int switchPadding -com.google.android.material.R$styleable: int Chip_chipMinTouchTargetSize -androidx.preference.Preference: void setOnPreferenceClickListener(androidx.preference.Preference$OnPreferenceClickListener) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Id -android.didikee.donate.R$attr: int actionModeWebSearchDrawable -wangdaye.com.geometricweather.R$layout: int cpv_preference_circle_large -androidx.appcompat.R$layout: R$layout() -wangdaye.com.geometricweather.R$style: int Theme_Design_Light_NoActionBar -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String componentToImageColName(java.lang.String) -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontVariationSettings -com.google.android.material.button.MaterialButton: int getIconGravity() -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getCOColor(android.content.Context) -james.adaptiveicon.R$style: int Widget_AppCompat_SeekBar -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_list_padding_top_no_title -retrofit2.http.Streaming -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Body2 -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupMenu -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_LAST_PROFILE_UUID -cyanogenmod.weatherservice.ServiceRequestResult$1 -com.jaredrummler.android.colorpicker.R$layout: int abc_action_bar_up_container -okhttp3.internal.http1.Http1Codec$ChunkedSink: Http1Codec$ChunkedSink(okhttp3.internal.http1.Http1Codec) -com.turingtechnologies.materialscrollbar.R$attr: int maxActionInlineWidth -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -android.didikee.donate.R$dimen: int abc_text_size_button_material -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -com.turingtechnologies.materialscrollbar.R$dimen: int cardview_default_radius -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric -androidx.recyclerview.R$styleable: int GradientColor_android_endColor -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -james.adaptiveicon.R$drawable: int notification_tile_bg -com.google.android.material.R$attr: int cardElevation -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature WindChillTemperature -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void run() -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -wangdaye.com.geometricweather.R$styleable: int ActionBar_hideOnContentScroll -wangdaye.com.geometricweather.R$id: int widget_clock_day_sensibleTemp -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginStart -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemBackground -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMark -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec CLEARTEXT -wangdaye.com.geometricweather.R$array: int notification_style_values -io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.SingleSource) -cyanogenmod.providers.CMSettings: CMSettings() -androidx.preference.R$styleable: int ActionBar_homeAsUpIndicator -io.reactivex.internal.queue.SpscArrayQueue: int lookAheadStep -com.amap.api.fence.DistrictItem: android.os.Parcelable$Creator CREATOR -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.appcompat.R$styleable: int StateListDrawable_android_exitFadeDuration -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_maxHeight -com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusTopStart() -cyanogenmod.externalviews.ExternalView: boolean onPreDraw() -cyanogenmod.providers.DataUsageContract: java.lang.String EXTRA -androidx.constraintlayout.widget.R$styleable: int ActionBar_itemPadding -cyanogenmod.app.LiveLockScreenInfo: java.lang.Object clone() -androidx.loader.R$styleable: int GradientColorItem_android_color -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_elevation -com.xw.repo.bubbleseekbar.R$attr: int trackTint -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: int hashCode() -com.google.android.material.R$id: int decelerate -com.jaredrummler.android.colorpicker.R$attr: int enabled -okio.Segment: boolean shared -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SearchView -com.xw.repo.bubbleseekbar.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: MfForecastResult$DailyForecast$Weather() -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink -wangdaye.com.geometricweather.R$attr: int behavior_peekHeight -io.reactivex.internal.observers.LambdaObserver: boolean isDisposed() -android.didikee.donate.R$styleable: int AppCompatTheme_dialogPreferredPadding -okhttp3.Request: java.lang.String toString() -com.google.android.material.R$styleable: int Layout_layout_constraintTop_creator -androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -com.xw.repo.bubbleseekbar.R$attr: int textColorSearchUrl -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onComplete() -com.google.android.material.R$drawable: int material_ic_keyboard_arrow_right_black_24dp -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerY -androidx.core.R$drawable: int notification_action_background -com.google.android.material.R$attr: int thumbRadius -retrofit2.KotlinExtensions: java.lang.Object await(retrofit2.Call,kotlin.coroutines.Continuation) -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeStyle -retrofit2.ParameterHandler$Tag: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowRadius -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_4 -io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.MaybeSource) -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_RED_INDEX -okhttp3.CacheControl: boolean immutable -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver parent -androidx.lifecycle.LiveData$ObserverWrapper: boolean mActive -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_SearchView -okhttp3.internal.http.HttpDate: java.lang.String format(java.util.Date) -com.google.android.material.R$dimen: int design_bottom_navigation_elevation -androidx.hilt.work.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_weight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric Metric -okhttp3.internal.ws.RealWebSocket: java.util.ArrayDeque pongQueue -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void drain() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric() -androidx.appcompat.resources.R$dimen: int compat_button_inset_horizontal_material -okhttp3.internal.http2.Http2Connection$1: void execute() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getCo() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitationProbability -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getSnowPrecipitation() -cyanogenmod.weatherservice.IWeatherProviderService$Stub: android.os.IBinder asBinder() -androidx.constraintlayout.widget.R$id: int stop -androidx.fragment.app.FragmentActivity: FragmentActivity() -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String tag -com.jaredrummler.android.colorpicker.R$attr: int switchTextOn -okio.Okio$3: void write(okio.Buffer,long) -cyanogenmod.externalviews.KeyguardExternalView: boolean isInteractive() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver parent -com.jaredrummler.android.colorpicker.R$attr: int textColorAlertDialogListItem -cyanogenmod.weather.RequestInfo$Builder: RequestInfo$Builder(cyanogenmod.weather.IRequestInfoListener) -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -okio.AsyncTimeout$2 -okhttp3.CookieJar$1: void saveFromResponse(okhttp3.HttpUrl,java.util.List) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() -androidx.lifecycle.LiveDataReactiveStreams: androidx.lifecycle.LiveData fromPublisher(org.reactivestreams.Publisher) -com.turingtechnologies.materialscrollbar.R$attr: int editTextColor -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_showTitle -com.amap.api.location.UmidtokenInfo: java.lang.String b -androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Info -androidx.preference.R$styleable: int MenuItem_iconTintMode -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.internal.util.AtomicThrowable error -com.google.android.gms.base.R$string: int common_google_play_services_enable_title -cyanogenmod.providers.CMSettings$Global: boolean putInt(android.content.ContentResolver,java.lang.String,int) -androidx.lifecycle.extensions.R$layout: int notification_template_part_time -androidx.fragment.app.Fragment: void setOnStartEnterTransitionListener(androidx.fragment.app.Fragment$OnStartEnterTransitionListener) -wangdaye.com.geometricweather.R$attr: int layout_constraintStart_toStartOf -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_8 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabView -io.reactivex.internal.disposables.DisposableHelper: void dispose() -androidx.work.R$id: int async -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Current getCurrent() -com.google.android.material.R$color: int design_default_color_on_primary -james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedHeightMajor -com.turingtechnologies.materialscrollbar.R$attr: int actionModeCutDrawable -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver(io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver) -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float visibility -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_2_material -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setNightIconDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long lastId -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: MfForecastResult$DailyForecast$Sun() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: MfForecastV2Result$Geometry() -androidx.preference.CheckBoxPreference -android.didikee.donate.R$color: int primary_dark_material_light -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean isCancelled() -com.google.android.material.R$id: int right_side -wangdaye.com.geometricweather.R$dimen: int widget_large_title_text_size -com.google.android.material.bottomnavigation.BottomNavigationView: int getItemTextAppearanceInactive() -android.didikee.donate.R$styleable: int AppCompatTextView_drawableEndCompat -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_inputType -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_COOL -androidx.appcompat.resources.R$id: int accessibility_custom_action_13 -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupMenu_Overflow -androidx.preference.R$color: int material_deep_teal_500 -androidx.preference.R$attr: int listDividerAlertDialog -android.didikee.donate.R$color: int background_floating_material_light -okio.RealBufferedSource: int readIntLe() -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceScreenStyle -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox -cyanogenmod.app.CustomTile$ExpandedStyle: int getStyle() -com.jaredrummler.android.colorpicker.R$attr: int elevation -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -com.google.android.material.R$styleable: int ActionBar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$drawable: int notif_temp_139 -com.jaredrummler.android.colorpicker.R$attr: int popupTheme -androidx.constraintlayout.widget.R$attr: int arcMode -cyanogenmod.app.suggest.ApplicationSuggestion$1 -com.google.android.material.bottomsheet.BottomSheetBehavior: BottomSheetBehavior() -okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String lastModifiedString -com.google.android.material.R$drawable: int design_fab_background -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: ObservableGroupJoin$LeftRightEndObserver(io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport,boolean,int) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: MfHistoryResult$History$Wind() -com.github.rahatarmanahmed.cpv.R$color -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String name -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityStarted(android.app.Activity) -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog_Alert -okhttp3.Connection: okhttp3.Handshake handshake() -com.google.android.material.slider.BaseSlider: java.util.List getValues() -cyanogenmod.weather.WeatherInfo: double access$402(cyanogenmod.weather.WeatherInfo,double) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_allowDividerAfterLastItem -android.didikee.donate.R$styleable: int ActionMode_titleTextStyle -cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mOnClick -com.google.android.material.R$style: int Base_DialogWindowTitle_AppCompat -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_anchor -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_requireAdaptiveBacklightForSunlightEnhancement -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarStyle -okhttp3.internal.http2.Http2Connection: long degradedPongsReceived -okio.ByteString: okio.ByteString toAsciiLowercase() -androidx.constraintlayout.widget.R$attr: int ratingBarStyle -james.adaptiveicon.R$dimen: int abc_cascading_menus_min_smallest_width -com.google.android.material.R$attr: int gapBetweenBars -com.turingtechnologies.materialscrollbar.R$bool: int mtrl_btn_textappearance_all_caps -androidx.dynamicanimation.R$dimen: int notification_media_narrow_margin -io.reactivex.Observable: io.reactivex.Observable zipWith(java.lang.Iterable,io.reactivex.functions.BiFunction) -androidx.preference.R$styleable: int AppCompatTextHelper_android_textAppearance -androidx.recyclerview.R$dimen: int notification_right_side_padding_top -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: long serialVersionUID -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCountry() -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_ab_back_material -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.Object adapt(retrofit2.Call) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setAnimationProgress(float) -cyanogenmod.media.MediaRecorder: java.lang.String ACTION_HOTWORD_INPUT_CHANGED -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_KEY -com.amap.api.fence.GeoFenceClient: GeoFenceClient(android.content.Context) -com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String FONT_URI -androidx.work.impl.workers.DiagnosticsWorker: DiagnosticsWorker(android.content.Context,androidx.work.WorkerParameters) -androidx.appcompat.R$color: int tooltip_background_dark -android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_chip_text_size -com.google.android.material.chip.Chip: void setTextAppearance(int) -android.didikee.donate.R$drawable: int abc_ab_share_pack_mtrl_alpha -wangdaye.com.geometricweather.R$drawable: int widget_card_light_0 -okhttp3.internal.http2.Http2Reader: void readGoAway(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetStart -androidx.vectordrawable.animated.R$dimen: int notification_content_margin_start -com.google.android.material.R$styleable: int TabLayout_tabPaddingBottom -androidx.constraintlayout.widget.R$color: int material_grey_850 -androidx.hilt.lifecycle.R$attr: int fontProviderQuery -androidx.appcompat.widget.LinearLayoutCompat: void setWeightSum(float) -com.google.android.gms.base.R$color: int common_google_signin_btn_text_light -com.google.android.material.R$styleable: int Chip_textStartPadding -okhttp3.Request$Builder: okhttp3.Request$Builder put(okhttp3.RequestBody) -okhttp3.internal.cache.DiskLruCache: boolean initialized -io.reactivex.observers.DisposableObserver: void dispose() -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void request(long) -wangdaye.com.geometricweather.R$style: int Base_CardView -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String uvLevel -okhttp3.internal.http2.Http2Codec: java.lang.String TRANSFER_ENCODING -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: io.reactivex.ObservableEmitter serialize() -com.baidu.location.e.h$c: com.baidu.location.e.h$c b -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Borderless_Colored -com.google.android.material.R$color: int background_material_light -com.bumptech.glide.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_icon_null_animation -okio.Buffer$UnsafeCursor: int next() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherText -androidx.viewpager2.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$attr: int onCross -androidx.coordinatorlayout.R$drawable: int notification_bg_low_pressed -androidx.activity.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode HAZE -com.google.android.material.progressindicator.ProgressIndicator: void setAnimatorDurationScaleProvider(com.google.android.material.progressindicator.AnimatorDurationScaleProvider) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getZh_CN() -wangdaye.com.geometricweather.R$attr: int actionBarItemBackground -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy[] values() -androidx.drawerlayout.R$drawable: int notification_bg -okhttp3.OkHttpClient: okhttp3.Cache cache -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_holo_light -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -com.google.android.material.R$integer: int mtrl_chip_anim_duration -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_16dp -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_1 -androidx.appcompat.R$color: int material_grey_100 -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone TimeZone -androidx.vectordrawable.animated.R$styleable: int GradientColorItem_android_color -com.turingtechnologies.materialscrollbar.R$color: int primary_text_disabled_material_light -com.google.android.gms.common.zzj: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.main.dialogs.HourlyWeatherDialog -wangdaye.com.geometricweather.R$layout: int item_trend_daily -androidx.constraintlayout.widget.R$styleable: int ActionBar_indeterminateProgressStyle -wangdaye.com.geometricweather.R$xml: int perference_appearance -com.google.android.material.chip.Chip: void setEnsureMinTouchTargetSize(boolean) -okio.Options -okhttp3.CertificatePinner$Pin: java.lang.String toString() -com.google.android.material.R$dimen: int mtrl_badge_text_horizontal_edge_offset -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherSource(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_summaryOn -wangdaye.com.geometricweather.R$attr: int windowNoTitle -com.google.android.gms.internal.location.zzl -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconTint -androidx.preference.R$layout: int abc_expanded_menu_layout -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixTextAppearance -androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$styleable: int AppCompatTheme_tooltipFrameBackground -com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_material_dark -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -com.google.android.material.R$attr: int actionBarTabStyle -wangdaye.com.geometricweather.R$style: int PreferenceCategoryTitleTextStyle -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button -androidx.loader.R$id: int time -wangdaye.com.geometricweather.R$color: int weather_source_cn -androidx.constraintlayout.widget.R$styleable: int OnSwipe_nestedScrollFlags -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ProgressBar -okhttp3.internal.ws.RealWebSocket$2: okhttp3.Request val$request -com.google.android.material.R$styleable: int MaterialButton_elevation -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: int UnitType -okhttp3.HttpUrl: java.util.List queryNamesAndValues -wangdaye.com.geometricweather.R$color: int test_mtrl_calendar_day_selected -androidx.preference.R$color: int primary_material_light -io.reactivex.internal.disposables.SequentialDisposable: boolean update(io.reactivex.disposables.Disposable) -com.bumptech.glide.Registry$NoModelLoaderAvailableException -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_3 -wangdaye.com.geometricweather.R$style: int Preference -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_dropDownWidth -io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.ObservableSource,io.reactivex.functions.Function) -cyanogenmod.externalviews.IExternalViewProvider$Stub -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontStyle -james.adaptiveicon.R$attr: int actionModeCloseDrawable -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginTop -com.google.android.material.R$attr: int alertDialogTheme -com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Dialog -com.google.android.material.textfield.TextInputEditText: java.lang.CharSequence getHint() -androidx.constraintlayout.widget.R$attr: int listChoiceIndicatorMultipleAnimated -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerError(java.lang.Throwable) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircleRadius -okio.Buffer$UnsafeCursor: okio.Segment segment -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabSelectedTextColor -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.R$attr: int layout_dodgeInsetEdges -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean isEmpty() -wangdaye.com.geometricweather.R$animator: R$animator() -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void subscribeNext() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction -com.google.android.material.R$styleable: int Constraint_android_minHeight -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: long read(okio.Buffer,long) -com.google.android.material.R$dimen: int mtrl_extended_fab_top_padding -com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Surface -wangdaye.com.geometricweather.R$attr: int switchPreferenceStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric() -android.didikee.donate.R$styleable: int AppCompatTheme_popupWindowStyle -wangdaye.com.geometricweather.R$id: int material_timepicker_view -okhttp3.MultipartBody: java.util.List parts -com.turingtechnologies.materialscrollbar.R$attr: int collapsedTitleTextAppearance -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.disposables.Disposable upstream -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating() -cyanogenmod.power.PerformanceManager: void cpuBoost(int) -androidx.preference.R$attr: int textAppearanceLargePopupMenu -androidx.constraintlayout.widget.R$id: int aligned -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -com.jaredrummler.android.colorpicker.R$color: int ripple_material_light -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarSize -com.bumptech.glide.R$styleable: int FontFamilyFont_fontVariationSettings -james.adaptiveicon.R$color: int ripple_material_light -com.google.android.material.R$style: int Base_TextAppearance_AppCompat -androidx.lifecycle.extensions.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.chip.Chip: float getTextEndPadding() -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginBottom -androidx.dynamicanimation.R$styleable: int ColorStateListItem_alpha -androidx.constraintlayout.widget.R$dimen: int abc_cascading_menus_min_smallest_width -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean cancelled -cyanogenmod.app.PartnerInterface: int ZEN_MODE_NO_INTERRUPTIONS -androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_EditText -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_normal_pressed -com.amap.api.fence.PoiItem: double getLongitude() -wangdaye.com.geometricweather.R$id: int transitionToEnd -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType INT_TYPE -androidx.swiperefreshlayout.R$drawable: int notification_action_background -io.reactivex.internal.disposables.EmptyDisposable: boolean offer(java.lang.Object) -io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.Observer) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constrainedWidth -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_11 -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ProgressBar -cyanogenmod.os.Build$CM_VERSION: int SDK_INT -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_overflow_material -wangdaye.com.geometricweather.main.MainActivity: void onSearchBarClicked(android.view.View) -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectTimeout(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getLunar() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun -androidx.preference.R$dimen: int abc_disabled_alpha_material_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setHeadDescription(java.lang.String) -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderPackage -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_progress -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: boolean equals(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onSubscribe(io.reactivex.disposables.Disposable) -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTheme -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25 pm25 -cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper mWrapper -com.xw.repo.bubbleseekbar.R$attr: int multiChoiceItemLayout -androidx.hilt.R$id: int action_divider -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintStart_toStartOf -androidx.constraintlayout.widget.R$attr: int colorControlNormal -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPm10() -wangdaye.com.geometricweather.R$drawable: int ic_map_clock -wangdaye.com.geometricweather.R$string: int common_google_play_services_update_title -com.google.android.material.R$string: int material_timepicker_hour -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String hour -androidx.preference.R$attr: int fragment -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_toRightOf -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_TabLayout -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonSetDate -com.amap.api.location.APSServiceBase: void onDestroy() -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onError(java.lang.Throwable) -androidx.appcompat.R$drawable: int abc_text_select_handle_middle_mtrl_light -androidx.recyclerview.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Time -androidx.hilt.R$attr: int fontProviderAuthority -androidx.legacy.coreutils.R$drawable: int notification_bg_low -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_SEED_CBC_SHA -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: okhttp3.internal.http2.Http2Codec this$0 -okhttp3.Cache: int writeSuccessCount -james.adaptiveicon.R$styleable: int Toolbar_android_minHeight -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfPrecipitation -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button -com.turingtechnologies.materialscrollbar.R$string: int abc_action_mode_done -com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingTop() -okhttp3.Cache$CacheResponseBody: okio.BufferedSource bodySource -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: double Value -com.google.android.material.appbar.AppBarLayout$BaseBehavior: AppBarLayout$BaseBehavior() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean() -androidx.appcompat.R$attr: int switchMinWidth -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber -androidx.appcompat.R$attr: int editTextColor -wangdaye.com.geometricweather.R$anim: int fragment_open_enter -wangdaye.com.geometricweather.R$attr: int imageAspectRatio -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: AccuDailyResult$Headline() -cyanogenmod.app.ThemeVersion$ComponentVersion: cyanogenmod.app.ThemeComponent getComponent() -cyanogenmod.app.Profile: java.util.ArrayList mSecondaryUuids -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: cyanogenmod.externalviews.ExternalViewProviderService$Provider this$1 -com.google.android.material.R$dimen: int mtrl_btn_disabled_z -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf -com.google.gson.stream.JsonReader: int PEEKED_BEGIN_ARRAY -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_title -androidx.preference.R$dimen: int abc_dialog_min_width_major -james.adaptiveicon.R$dimen: int abc_dialog_fixed_height_minor -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerY -androidx.hilt.lifecycle.R$id: int text -androidx.recyclerview.widget.RecyclerView: int getItemDecorationCount() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_36dp -androidx.fragment.R$id: int actions -com.google.android.material.R$attr: int chipStartPadding -wangdaye.com.geometricweather.R$attr: int materialCalendarMonthNavigationButton -wangdaye.com.geometricweather.R$string: int wind_1 -com.google.android.material.R$styleable: int FloatingActionButton_hideMotionSpec -com.google.android.material.R$styleable: int ActionBar_contentInsetEndWithActions -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: java.lang.Runnable actual -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setPubTime(java.util.Date) -wangdaye.com.geometricweather.R$drawable: int notif_temp_63 -com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Action -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -com.amap.api.location.AMapLocation: java.lang.String a(com.amap.api.location.AMapLocation,java.lang.String) -wangdaye.com.geometricweather.R$attr: int summary -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean done -okhttp3.MultipartBody: okio.ByteString boundary -io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function,boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPubTime() -androidx.preference.R$dimen: int notification_big_circle_margin -androidx.recyclerview.R$id: int text -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRelativeHumidity(java.lang.Float) -wangdaye.com.geometricweather.R$attr: int path_percent -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_handleColor -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBaseline_creator -androidx.hilt.work.R$drawable: R$drawable() -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: int skip -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setUnit(java.lang.String) -com.google.android.material.R$styleable: int Constraint_layout_goneMarginBottom -com.google.android.material.timepicker.TimeModel: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_CheckBox -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -com.google.android.material.R$attr: int flow_verticalStyle -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_min_width_minor -okhttp3.CipherSuite -wangdaye.com.geometricweather.R$dimen: int tooltip_precise_anchor_extra_offset -androidx.appcompat.widget.SearchView: int getInputType() -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.http.HttpCodec httpStream() -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginEnd -wangdaye.com.geometricweather.R$id: int packed -wangdaye.com.geometricweather.R$id: int widget_week_temp -com.amap.api.location.AMapLocationListener -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense -com.turingtechnologies.materialscrollbar.R$layout: int abc_popup_menu_header_item_layout -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_layout_margin -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode -androidx.core.R$dimen: int notification_big_circle_margin -com.google.android.material.tabs.TabLayout: int getSelectedTabPosition() -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: int getChartTop() -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_shrinkMotionSpec -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerError(java.lang.Throwable) -com.google.android.material.navigation.NavigationView: void setElevation(float) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial() -androidx.lifecycle.ViewModelProvider -com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_min -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation access$402(cyanogenmod.weather.RequestInfo,cyanogenmod.weather.WeatherLocation) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onComplete() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow12h -com.google.android.material.R$color: int mtrl_choice_chip_ripple_color -androidx.appcompat.widget.Toolbar: android.view.MenuInflater getMenuInflater() -com.google.android.material.floatingactionbutton.FloatingActionButton: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) -wangdaye.com.geometricweather.R$attr: int updatesContinuously -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_13 -cyanogenmod.app.ICustomTileListener$Stub$Proxy: android.os.IBinder mRemote -okhttp3.HttpUrl: boolean isHttps() -com.xw.repo.bubbleseekbar.R$dimen: int abc_disabled_alpha_material_light -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: void complete() -com.jaredrummler.android.colorpicker.R$styleable: int Preference_layout -com.xw.repo.BubbleSeekBar: void setProgress(float) -wangdaye.com.geometricweather.R$layout: int preference_widget_seekbar -wangdaye.com.geometricweather.R$styleable: int Toolbar_logo -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_EditText -com.turingtechnologies.materialscrollbar.R$id: int up -io.reactivex.internal.observers.LambdaObserver: long serialVersionUID -android.didikee.donate.R$id: int decor_content_parent -wangdaye.com.geometricweather.R$drawable: int weather_hail -com.google.gson.LongSerializationPolicy$2 -wangdaye.com.geometricweather.R$attr: int allowStacking -androidx.fragment.R$layout: int notification_action -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayHorizontalWidgetConfigActivity: Hilt_ClockDayHorizontalWidgetConfigActivity() -com.google.android.material.R$attr: int layout_collapseParallaxMultiplier -com.google.android.material.R$drawable: int abc_list_selector_holo_light -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getThunderstorm() -com.jaredrummler.android.colorpicker.R$attr: int panelBackground -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_elevation -okhttp3.internal.http2.Http2Codec: void flushRequest() -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit NMI -androidx.constraintlayout.widget.R$id: int default_activity_button -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_padding_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary TemperatureSummary -androidx.viewpager2.R$id: int accessibility_custom_action_16 -com.google.android.material.R$dimen: int mtrl_btn_padding_bottom -androidx.hilt.R$styleable: int GradientColor_android_centerX -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleGravity(int) -cyanogenmod.app.Profile: int getTriggerState(int,java.lang.String) -okio.Timeout: okio.Timeout clearTimeout() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_editor_absoluteY -wangdaye.com.geometricweather.R$styleable: int[] ScrollingViewBehavior_Layout -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemHorizontalTranslationEnabled(boolean) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Time -androidx.hilt.work.R$id: int async -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs indexs -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_maxWidth -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginBottom -androidx.constraintlayout.widget.R$string: int abc_searchview_description_search -androidx.appcompat.R$styleable: int[] CompoundButton -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer getDbz() -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginLeft -com.google.android.material.appbar.AppBarLayout: void setTargetElevation(float) -cyanogenmod.weatherservice.WeatherProviderService: java.util.Set access$100(cyanogenmod.weatherservice.WeatherProviderService) -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.Float getSpeed() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: java.util.List getValue() -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Body2 -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int priority -com.xw.repo.bubbleseekbar.R$dimen: int abc_select_dialog_padding_start_material -com.xw.repo.bubbleseekbar.R$attr: int spinnerStyle -okhttp3.internal.Util$2: java.lang.String val$name -com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_multichoice_material -androidx.vectordrawable.R$attr: int alpha -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.String toString() -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void dispose() -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: java.lang.Object index -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWeatherEnd(java.lang.String) -org.greenrobot.greendao.AbstractDao: java.lang.String[] getPkColumns() -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_maxProgress -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat -okhttp3.FormBody$Builder: FormBody$Builder(java.nio.charset.Charset) -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$Validator PROTECTED_COMPONENTS_VALIDATOR -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded -androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModelProvider$Factory mFactory -androidx.work.ArrayCreatingInputMerger -android.didikee.donate.R$style: int TextAppearance_AppCompat -com.google.android.material.R$attr: int paddingRightSystemWindowInsets -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX() -io.reactivex.Observable: io.reactivex.Observable retryUntil(io.reactivex.functions.BooleanSupplier) -com.bumptech.glide.load.engine.GlideException: com.bumptech.glide.load.DataSource dataSource -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense -androidx.preference.R$attr: int viewInflaterClass -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date modificationDate -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: void setSpeed(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX) -androidx.hilt.R$layout: int notification_template_part_time -com.xw.repo.bubbleseekbar.R$styleable: int[] AlertDialog -com.google.android.material.R$styleable: int DrawerArrowToggle_arrowHeadLength -androidx.activity.R$drawable: int notification_bg_normal -com.google.android.material.R$styleable: int KeyCycle_android_elevation -com.google.android.material.chip.Chip: void setChipIconEnabled(boolean) -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetRight -androidx.constraintlayout.widget.R$id: int textSpacerNoButtons -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: boolean unsupported -com.google.gson.stream.JsonReader$1 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.String TABLENAME -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: io.reactivex.internal.queue.SpscArrayQueue queue -androidx.lifecycle.LifecycleRegistry: void addObserver(androidx.lifecycle.LifecycleObserver) -androidx.viewpager.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: int UnitType -androidx.appcompat.R$drawable: int abc_list_longpressed_holo -androidx.viewpager.R$styleable: int FontFamilyFont_android_fontStyle -okhttp3.Call: boolean isExecuted() -com.google.android.material.R$style: int Theme_MaterialComponents_BottomSheetDialog -com.turingtechnologies.materialscrollbar.R$id: int action_divider -cyanogenmod.themes.ThemeChangeRequest$1 -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_subtitleTextStyle -androidx.appcompat.widget.LinearLayoutCompat: int getBaselineAlignedChildIndex() -okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.Response cacheResponse -okhttp3.internal.http.RealInterceptorChain: okhttp3.EventListener eventListener() -wangdaye.com.geometricweather.R$style: int Base_V23_Theme_AppCompat -wangdaye.com.geometricweather.R$id: int star_1 -wangdaye.com.geometricweather.R$attr: int searchHintIcon -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWindDirection() -android.didikee.donate.R$style: int TextAppearance_AppCompat_Button -androidx.viewpager2.R$styleable: int GradientColor_android_gradientRadius -androidx.coordinatorlayout.R$dimen: R$dimen() -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_navigationContentDescription -androidx.cardview.R$style: R$style() -wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$color: int mtrl_fab_ripple_color -com.google.android.material.behavior.HideBottomViewOnScrollBehavior: HideBottomViewOnScrollBehavior(android.content.Context,android.util.AttributeSet) -androidx.viewpager.R$id: int normal -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: java.lang.String getRelativeHumidityText(float) -androidx.hilt.work.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$id: int text_input_error_icon -androidx.dynamicanimation.R$attr: int fontProviderPackage -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginBottom -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Title -james.adaptiveicon.R$styleable: int ButtonBarLayout_allowStacking -okhttp3.internal.connection.RealConnection: okhttp3.Route route -androidx.viewpager.R$style: int Widget_Compat_NotificationActionText -wangdaye.com.geometricweather.R$attr: int layout_anchorGravity -okhttp3.internal.io.FileSystem$1: okio.Sink appendingSink(java.io.File) -androidx.preference.R$dimen: int abc_action_bar_overflow_padding_start_material -okhttp3.internal.cache.DiskLruCache$Editor: boolean[] written -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_MinWidth_Bridge -wangdaye.com.geometricweather.R$drawable: int notif_temp_72 -com.amap.api.location.APSServiceBase: int onStartCommand(android.content.Intent,int,int) -wangdaye.com.geometricweather.R$styleable: int ActionBar_popupTheme -android.didikee.donate.R$string: int abc_activity_chooser_view_see_all -androidx.appcompat.widget.ActivityChooserView: void setProvider(androidx.core.view.ActionProvider) -com.google.gson.internal.LinkedTreeMap: int size -com.google.android.material.R$id: int text_input_end_icon -wangdaye.com.geometricweather.R$attr: int actionOverflowMenuStyle -wangdaye.com.geometricweather.R$drawable: int weather_rain_3 -com.xw.repo.bubbleseekbar.R$attr: int navigationContentDescription -wangdaye.com.geometricweather.R$string: int feedback_resident_location -androidx.viewpager2.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -androidx.lifecycle.LiveData: LiveData(java.lang.Object) -androidx.vectordrawable.animated.R$color: int notification_icon_bg_color -cyanogenmod.weather.WeatherInfo: java.lang.String access$1402(cyanogenmod.weather.WeatherInfo,java.lang.String) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -androidx.transition.R$color: int ripple_material_light -cyanogenmod.app.ProfileGroup: android.net.Uri mSoundOverride -androidx.appcompat.R$string: int abc_search_hint -wangdaye.com.geometricweather.remoteviews.config.AbstractWidgetConfigActivity -okhttp3.ConnectionSpec: boolean isCompatible(javax.net.ssl.SSLSocket) -androidx.dynamicanimation.animation.DynamicAnimation -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_ALARMS -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_FloatingActionButton -androidx.appcompat.R$dimen: int abc_disabled_alpha_material_dark -android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogTheme -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: ExternalViewProviderService$Provider$ProviderImpl$6(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -com.google.android.material.R$styleable: int ColorStateListItem_android_alpha -com.google.android.material.R$dimen: int abc_edit_text_inset_horizontal_material -androidx.constraintlayout.widget.R$color: int background_material_dark -okhttp3.internal.http2.PushObserver$1: void onReset(int,okhttp3.internal.http2.ErrorCode) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String weatherText -androidx.constraintlayout.widget.R$styleable: int[] ActivityChooserView -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_size_normal -com.jaredrummler.android.colorpicker.R$dimen: int abc_panel_menu_list_width -androidx.fragment.R$layout: int notification_template_part_chronometer -com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected -com.google.android.material.bottomnavigation.BottomNavigationMenuView: BottomNavigationMenuView(android.content.Context) -cyanogenmod.app.CMContextConstants: java.lang.String CM_PROFILE_SERVICE -james.adaptiveicon.R$styleable: int DrawerArrowToggle_color -wangdaye.com.geometricweather.common.basic.models.weather.Wind: int getWindColor(android.content.Context) -androidx.customview.R$styleable: int GradientColor_android_startColor -androidx.activity.R$dimen: int notification_action_text_size -com.google.android.material.R$dimen: int abc_button_padding_horizontal_material -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomSheetDialog -android.didikee.donate.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -com.google.android.material.imageview.ShapeableImageView: float getStrokeWidth() -androidx.coordinatorlayout.R$id: int icon -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart -okhttp3.internal.http1.Http1Codec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_3 -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_margin -androidx.preference.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -androidx.constraintlayout.widget.R$drawable: int abc_btn_check_material -com.google.android.gms.common.images.WebImage: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_ActionBar -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_ttcIndex -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean isDisposed() -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Toolbar -androidx.preference.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder client(okhttp3.OkHttpClient) -cyanogenmod.weatherservice.ServiceRequestResult: boolean equals(java.lang.Object) -com.google.android.material.R$integer: int mtrl_calendar_header_orientation -androidx.appcompat.widget.AppCompatEditText: void setSupportBackgroundTintList(android.content.res.ColorStateList) -com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -android.didikee.donate.R$attr: int titleMarginEnd -androidx.preference.R$layout: int preference_information -okhttp3.internal.http.HttpHeaders: boolean hasVaryAll(okhttp3.Response) -androidx.preference.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -com.jaredrummler.android.colorpicker.R$attr: int tint -androidx.coordinatorlayout.R$integer: R$integer() -wangdaye.com.geometricweather.background.receiver.widget.WidgetWeekProvider: WidgetWeekProvider() -wangdaye.com.geometricweather.R$attr: int listChoiceIndicatorMultipleAnimated -com.google.android.material.navigation.NavigationView: int getHeaderCount() -retrofit2.adapter.rxjava2.Result: java.lang.Throwable error -retrofit2.SkipCallbackExecutorImpl: java.lang.annotation.Annotation[] ensurePresent(java.lang.annotation.Annotation[]) -com.google.android.material.textfield.TextInputLayout: android.graphics.Typeface getTypeface() -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType BAIDU -androidx.preference.R$styleable: int Toolbar_navigationContentDescription -androidx.lifecycle.SavedStateHandle: SavedStateHandle() -androidx.appcompat.R$attr: int navigationIcon -androidx.hilt.lifecycle.R$id: int icon_group -com.google.android.material.card.MaterialCardView: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -com.jaredrummler.android.colorpicker.R$styleable: int[] GradientColorItem -com.turingtechnologies.materialscrollbar.R$attr: int tickMark -androidx.constraintlayout.widget.R$color: int abc_tint_default -android.didikee.donate.R$layout: int abc_list_menu_item_radio -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTheme -androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_android_background -okhttp3.Cache$CacheRequestImpl -androidx.coordinatorlayout.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTemperature -io.reactivex.disposables.RunnableDisposable: long serialVersionUID -androidx.hilt.R$dimen -cyanogenmod.power.PerformanceManager: boolean checkService() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean getYesterday() -androidx.preference.R$styleable: int Preference_dependency -androidx.appcompat.R$attr: int colorSwitchThumbNormal -androidx.preference.R$color: R$color() -com.google.android.material.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.google.android.material.R$dimen: int abc_control_corner_material -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_ttcIndex -androidx.viewpager.R$drawable: int notification_bg_low_pressed -cyanogenmod.hardware.CMHardwareManager: int FEATURE_TOUCH_HOVERING -org.greenrobot.greendao.AbstractDaoSession: void registerDao(java.lang.Class,org.greenrobot.greendao.AbstractDao) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CheckedTextView -wangdaye.com.geometricweather.R$attr: int actionTextColorAlpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setType(java.lang.String) -cyanogenmod.weatherservice.ServiceRequest$Status: ServiceRequest$Status(java.lang.String,int) -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -androidx.preference.R$dimen: int tooltip_precise_anchor_threshold -com.google.android.material.R$attr: int strokeWidth -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.amap.api.location.AMapLocationClientOption: boolean isMockEnable() -okhttp3.internal.connection.RealConnection: java.net.Socket socket() -com.google.android.material.R$attr: int motionInterpolator -cyanogenmod.app.ProfileGroup: boolean validateOverrideUri(android.content.Context,android.net.Uri) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int CLEAR_NIGHT -androidx.appcompat.widget.SwitchCompat: int getCompoundPaddingRight() -android.didikee.donate.R$attr: int actionBarItemBackground -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_VALUE -james.adaptiveicon.R$styleable: int ActionBar_divider -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_elevation -com.amap.api.location.AMapLocation: void setFixLastLocation(boolean) -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String DESKCLOCK_PACKAGE -com.turingtechnologies.materialscrollbar.R$drawable: int notification_action_background -io.reactivex.internal.disposables.EmptyDisposable: void clear() -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setEnabled(boolean) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog -androidx.work.R$styleable: int ColorStateListItem_android_alpha -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void onResponse(retrofit2.Call,retrofit2.Response) -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter endObject() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarDivider -androidx.preference.R$color: int tooltip_background_light -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: IThemeProcessingListener$Stub$Proxy(android.os.IBinder) -com.jaredrummler.android.colorpicker.R$drawable -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_barLength -com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_Overflow -com.google.android.material.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -com.xw.repo.bubbleseekbar.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_scaleY -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteDatabase routeDatabase() -com.amap.api.location.AMapLocationClientOption: int describeContents() -androidx.appcompat.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -wangdaye.com.geometricweather.R$id: int cancel_button -wangdaye.com.geometricweather.R$styleable: int[] CardView -androidx.lifecycle.extensions.R$id: int forever -wangdaye.com.geometricweather.R$id: int cpv_color_panel_old -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_onClick -cyanogenmod.hardware.IThermalListenerCallback -com.google.android.material.R$styleable: int ChipGroup_chipSpacing -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -com.google.android.material.R$styleable: int Layout_chainUseRtl -com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Determinate -com.google.android.material.R$styleable: int TabLayout_tabUnboundedRipple -okhttp3.internal.http.HttpHeaders: java.lang.String repeat(char,int) -com.google.android.material.R$styleable: int MaterialCalendar_daySelectedStyle -cyanogenmod.weather.RequestInfo: int mRequestType -com.google.android.material.R$styleable: int[] MaterialCheckBox -androidx.preference.R$styleable: int AppCompatTheme_buttonStyleSmall -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getVisibility() -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: long serialVersionUID -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar -okhttp3.internal.http2.Settings: int MAX_HEADER_LIST_SIZE -wangdaye.com.geometricweather.R$array: int widget_card_style_values -okhttp3.internal.http2.PushObserver: void onReset(int,okhttp3.internal.http2.ErrorCode) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_corner_radius_medium -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerX -androidx.lifecycle.ClassesInfoCache: void verifyAndPutHandler(java.util.Map,androidx.lifecycle.ClassesInfoCache$MethodReference,androidx.lifecycle.Lifecycle$Event,java.lang.Class) -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -com.google.android.material.R$styleable: int TextInputLayout_android_enabled -okhttp3.internal.connection.RealConnection: okhttp3.Handshake handshake() -cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_MODES -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -wangdaye.com.geometricweather.R$attr: int defaultState -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarDivider -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge -wangdaye.com.geometricweather.R$color: int colorLevel_5 -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_transformPivotY -android.support.v4.app.INotificationSideChannel$Stub: java.lang.String DESCRIPTOR -androidx.preference.R$anim: int fragment_fast_out_extra_slow_in -com.google.android.material.badge.BadgeDrawable$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_backgroundTint -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Type -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_height_minor -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeWindSpeed() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: AccuDailyResult$DailyForecasts$Night$WindGust$Direction() -wangdaye.com.geometricweather.db.entities.LocationEntity: float latitude -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_navigationMode -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationZ -retrofit2.Retrofit: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) -cyanogenmod.app.StatusBarPanelCustomTile: int getInitialPid() -com.google.android.material.R$id: int search_src_text -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherText -androidx.preference.R$style -androidx.drawerlayout.R$id: int action_image -cyanogenmod.power.IPerformanceManager$Stub$Proxy: int getPowerProfile() -james.adaptiveicon.R$styleable: int LinearLayoutCompat_showDividers -com.google.android.material.R$dimen: int mtrl_navigation_item_icon_size -androidx.appcompat.R$dimen: int abc_dialog_corner_radius_material -androidx.constraintlayout.widget.R$attr: int dividerVertical -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder scheme(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionModeOverlay -com.google.android.material.R$attr: int customIntegerValue -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatPressedTranslationZ(float) -com.amap.api.location.UmidtokenInfo: boolean c -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Title -com.xw.repo.bubbleseekbar.R$color: int error_color_material_light -androidx.viewpager2.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense -cyanogenmod.externalviews.KeyguardExternalView$11: void run() -android.didikee.donate.R$style: int Base_V23_Theme_AppCompat -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf -wangdaye.com.geometricweather.R$styleable: int[] PopupWindowBackgroundState -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getDaytimeWeatherCode() -james.adaptiveicon.R$styleable: int CompoundButton_android_button -androidx.appcompat.widget.AppCompatCheckBox -okhttp3.ConnectionPool$1 -androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionState(android.os.Bundle) -androidx.fragment.R$integer -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean delayErrors -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_ICONS -androidx.constraintlayout.widget.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$drawable: int shortcuts_thunderstorm_foreground -okhttp3.MultipartBody: int size() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: int IconCode -androidx.lifecycle.extensions.R$id: int time -retrofit2.RequestBuilder: okhttp3.Request$Builder requestBuilder -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: java.lang.String English -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Spinner_Underlined -james.adaptiveicon.R$attr: int spinnerDropDownItemStyle -androidx.recyclerview.R$drawable -wangdaye.com.geometricweather.R$id: int dialog_location_help_manageTitle -com.turingtechnologies.materialscrollbar.R$anim: int abc_tooltip_exit -okhttp3.FormBody: long writeOrCountBytes(okio.BufferedSink,boolean) -cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$Validator PROTECTED_COMPONENTS_MANAGER_VALIDATOR -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_setPowerProfile -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindDirection(java.lang.String) -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Bridge -cyanogenmod.externalviews.ExternalView$1: ExternalView$1(cyanogenmod.externalviews.ExternalView) -androidx.lifecycle.ReportFragment: void injectIfNeededIn(android.app.Activity) -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity: DailyTrendWidgetConfigActivity() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String headIconType -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void subscribe(io.reactivex.ObservableSource[]) -wangdaye.com.geometricweather.R$id: int incoming -androidx.dynamicanimation.animation.SpringAnimation -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: long endTime -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabView -wangdaye.com.geometricweather.db.entities.HourlyEntity: HourlyEntity() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric Metric -androidx.fragment.R$styleable: int ColorStateListItem_alpha -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean access$502(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,boolean) -com.google.android.material.radiobutton.MaterialRadioButton -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyTopLeft -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial Imperial -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_prompt -com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonTintMode -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -androidx.appcompat.R$styleable: int AppCompatTheme_windowActionModeOverlay -cyanogenmod.power.PerformanceManager: cyanogenmod.power.IPerformanceManager sService -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: float unitFactor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean getTemperature() -androidx.constraintlayout.widget.R$dimen: int compat_button_padding_horizontal_material -com.turingtechnologies.materialscrollbar.R$dimen: int notification_top_pad -com.google.android.material.slider.BaseSlider: int getTrackWidth() -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeApparentTemperature -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Body2 -okio.Buffer$UnsafeCursor -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DIALER_OPENCNAM_ACCOUNT_SID_VALIDATOR -retrofit2.OkHttpCall: java.lang.Object[] args -io.reactivex.internal.observers.BasicIntQueueDisposable: void dispose() -com.google.android.material.R$styleable: int Constraint_layout_goneMarginStart -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onNext(java.lang.Object) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -androidx.appcompat.widget.SwitchCompat: int getSwitchMinWidth() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_padding -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixText -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsShow(boolean) -androidx.transition.R$id -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitationProbability(java.lang.Float) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalBias -com.google.android.material.slider.RangeSlider: java.util.List getValues() -wangdaye.com.geometricweather.R$drawable: int abc_btn_borderless_material -james.adaptiveicon.R$attr: int toolbarNavigationButtonStyle -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_expandedHintEnabled -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableLeftCompat -com.amap.api.fence.PoiItem: void setPoiType(java.lang.String) -androidx.activity.R$dimen: int compat_button_inset_vertical_material -androidx.swiperefreshlayout.R$attr: int swipeRefreshLayoutProgressSpinnerBackgroundColor -androidx.transition.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.R$styleable: int Transition_pathMotionArc -wangdaye.com.geometricweather.R$id: int textinput_error -james.adaptiveicon.R$drawable: int abc_ic_voice_search_api_material -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.internal.fuseable.SimpleQueue queue -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onNext(java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int Transition_constraintSetEnd -com.google.android.material.R$attr: int iconTint -retrofit2.converter.gson.GsonRequestBodyConverter: com.google.gson.Gson gson -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_fontFamily -cyanogenmod.providers.CMSettings$System: java.lang.String T9_SEARCH_INPUT_LOCALE -wangdaye.com.geometricweather.db.entities.DailyEntity: void setAqiIndex(java.lang.Integer) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_disabled_alpha_material_dark -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getCounterOverflowTextColor() -androidx.appcompat.resources.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$dimen: int mtrl_chip_pressed_translation_z -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_motionProgress -com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_icon_width -com.turingtechnologies.materialscrollbar.R$attr: int layout_dodgeInsetEdges -cyanogenmod.weather.WeatherLocation$1: WeatherLocation$1() -com.google.android.material.R$drawable: int mtrl_ic_arrow_drop_down -cyanogenmod.externalviews.ExternalViewProperties: ExternalViewProperties(android.view.View,android.content.Context) -androidx.coordinatorlayout.R$id: int icon_group -wangdaye.com.geometricweather.R$layout: int support_simple_spinner_dropdown_item -androidx.appcompat.R$id: int accessibility_custom_action_8 -android.didikee.donate.R$string: int abc_toolbar_collapse_description -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: void run() -com.turingtechnologies.materialscrollbar.R$color: int primary_text_default_material_dark -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert -okhttp3.EventListener: void callEnd(okhttp3.Call) -retrofit2.BuiltInConverters$VoidResponseBodyConverter -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String insee -androidx.appcompat.R$dimen: int tooltip_corner_radius -wangdaye.com.geometricweather.R$drawable: int shortcuts_snow -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean cancelOnReplace -wangdaye.com.geometricweather.R$bool: int enable_system_foreground_service_default -okio.Options: int size() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: double Value -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String getCode() -androidx.appcompat.R$dimen: int tooltip_y_offset_touch -com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_button_bar_material -com.google.gson.internal.LinkedTreeMap: java.util.Set entrySet() -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeTitle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric Metric -com.google.android.material.R$styleable: int[] ViewPager2 -com.amap.api.location.AMapLocationClientOption: boolean isWifiScan() -okhttp3.Cache$Entry: java.lang.String url -com.xw.repo.bubbleseekbar.R$string: int abc_action_menu_overflow_description -james.adaptiveicon.R$color: int switch_thumb_normal_material_dark -com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextColor -com.xw.repo.bubbleseekbar.R$dimen: int notification_subtext_size -android.didikee.donate.R$style: int Widget_AppCompat_AutoCompleteTextView -com.google.android.material.R$attr: int materialCalendarHeaderDivider -com.google.android.material.R$dimen: int mtrl_slider_thumb_elevation -androidx.constraintlayout.helper.widget.Flow: void setMaxElementsWrap(int) -james.adaptiveicon.R$style: int Base_DialogWindowTitleBackground_AppCompat -android.didikee.donate.R$drawable: int abc_edit_text_material -androidx.constraintlayout.widget.R$attr: int barrierAllowsGoneWidgets -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemDrawable(int) -com.bumptech.glide.integration.okhttp.R$dimen: int notification_large_icon_width -androidx.appcompat.resources.R$string -com.xw.repo.bubbleseekbar.R$attr: int bsb_is_float_type -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconContentDescription -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_DayTextView -james.adaptiveicon.R$dimen: int abc_text_size_menu_material -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ProgressBar -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.util.concurrent.atomic.AtomicReference latest -com.jaredrummler.android.colorpicker.R$styleable: int Preference_allowDividerBelow -okio.RealBufferedSource: okio.ByteString readByteString() -com.google.android.material.internal.ParcelableSparseIntArray -com.google.android.material.R$attr: int indicatorType -wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionContainer -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Tooltip -cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int TORNADO -androidx.lifecycle.SavedStateViewModelFactory: SavedStateViewModelFactory(android.app.Application,androidx.savedstate.SavedStateRegistryOwner) -androidx.appcompat.R$color: int accent_material_dark -wangdaye.com.geometricweather.R$style: int TestStyleWithThemeLineHeightAttribute -com.google.android.material.R$id: int path -androidx.activity.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.appcompat.R$styleable: int RecycleListView_paddingBottomNoButtons -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginBottom -okhttp3.internal.connection.ConnectInterceptor -com.jaredrummler.android.colorpicker.R$attr: int actionBarTabStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar_FullWidth -com.xw.repo.bubbleseekbar.R$attr: int spinBars -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastHorizontalBias -androidx.viewpager2.R$styleable: R$styleable() -io.reactivex.internal.util.AtomicThrowable: boolean addThrowable(java.lang.Throwable) -com.google.android.gms.common.internal.safeparcel.SafeParcelReader$ParseException: SafeParcelReader$ParseException(java.lang.String,android.os.Parcel) -wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$attr: int drawPath -androidx.core.R$string: R$string() -retrofit2.DefaultCallAdapterFactory$1: retrofit2.Call adapt(retrofit2.Call) -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework -wangdaye.com.geometricweather.R$id: int activity_preview_icon_toolbar -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display4 -com.google.android.material.R$styleable: int Spinner_android_entries -cyanogenmod.weather.CMWeatherManager$2$2: void run() -okhttp3.internal.http.BridgeInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -androidx.constraintlayout.widget.R$attr: int barrierMargin -com.google.android.material.R$styleable: int[] ConstraintLayout_placeholder -okio.ByteString: java.lang.String utf8 -com.google.android.material.R$id: int month_navigation_previous -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onComplete() -cyanogenmod.app.StatusBarPanelCustomTile: int getUid() -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void dispose() -androidx.coordinatorlayout.widget.CoordinatorLayout: int getNestedScrollAxes() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_3 -okhttp3.Cache: Cache(java.io.File,long,okhttp3.internal.io.FileSystem) -androidx.preference.R$id: int src_in -wangdaye.com.geometricweather.R$string: int week_5 -androidx.appcompat.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -androidx.core.R$drawable: int notification_bg_normal_pressed -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DialogWhenLarge -android.didikee.donate.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -com.bumptech.glide.load.engine.GlideException: java.util.List getCauses() -retrofit2.http.Field: java.lang.String value() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_EditText -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean offer(java.lang.Object) -androidx.appcompat.R$styleable: int LinearLayoutCompat_showDividers -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Selected -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: org.reactivestreams.Subscriber downstream -androidx.preference.R$id: int accessibility_custom_action_26 -android.didikee.donate.R$anim: int abc_fade_out -com.xw.repo.bubbleseekbar.R$attr: int expandActivityOverflowButtonDrawable -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -wangdaye.com.geometricweather.R$color: int design_default_color_secondary -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_icon_vertical_padding_material -com.amap.api.location.AMapLocation: java.lang.String g(com.amap.api.location.AMapLocation,java.lang.String) -com.jaredrummler.android.colorpicker.R$attr: int indeterminateProgressStyle -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather -androidx.constraintlayout.widget.R$color: int dim_foreground_material_dark -androidx.lifecycle.LiveData$LifecycleBoundObserver: androidx.lifecycle.LifecycleOwner mOwner -androidx.appcompat.widget.LinearLayoutCompat -com.jaredrummler.android.colorpicker.R$string: int cpv_select -wangdaye.com.geometricweather.background.receiver.widget.WidgetMultiCityProvider: WidgetMultiCityProvider() -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -cyanogenmod.providers.CMSettings$System: int getInt(android.content.ContentResolver,java.lang.String,int) -wangdaye.com.geometricweather.R$array: int live_wallpaper_day_night_types -okhttp3.internal.cache2.Relay: okio.Source upstream -androidx.preference.R$style: int Theme_AppCompat_Light_NoActionBar -androidx.preference.MultiSelectListPreference -com.google.android.material.R$styleable: int KeyTimeCycle_android_alpha -wangdaye.com.geometricweather.R$drawable: int notif_temp_85 -androidx.appcompat.resources.R$drawable: int notification_bg_low_pressed -com.google.android.material.R$dimen: int mtrl_tooltip_minWidth -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void dispose() -com.xw.repo.bubbleseekbar.R$attr: int actionMenuTextColor -wangdaye.com.geometricweather.R$attr: int textAppearanceLineHeightEnabled -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max -com.bumptech.glide.integration.okhttp.R$dimen: int notification_subtext_size -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Small -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_material_light -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit) -androidx.vectordrawable.animated.R$styleable -cyanogenmod.themes.ThemeManager: boolean isThemeBeingProcessed(java.lang.String) -okio.Buffer: okio.Buffer writeByte(int) -cyanogenmod.profiles.ConnectionSettings$1: cyanogenmod.profiles.ConnectionSettings createFromParcel(android.os.Parcel) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias -com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: FloatingActionButton$BaseBehavior() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial Imperial -wangdaye.com.geometricweather.R$drawable: int notif_temp_15 -com.turingtechnologies.materialscrollbar.R$anim: int design_snackbar_out -wangdaye.com.geometricweather.R$styleable: int Slider_android_stepSize -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: float getProgress() -wangdaye.com.geometricweather.R$attr: R$attr() -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_subtitleTextStyle -com.google.android.material.R$attr: int motionStagger -com.google.gson.stream.JsonWriter: void replaceTop(int) -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_138 -com.google.android.material.R$styleable: int Toolbar_android_gravity -wangdaye.com.geometricweather.R$styleable: int[] MotionTelltales -com.google.android.material.R$styleable: int[] GradientColorItem -com.google.android.material.circularreveal.cardview.CircularRevealCardView: CircularRevealCardView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$drawable: int notif_temp_28 -com.google.android.material.R$styleable: int ConstraintSet_android_rotationX -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position -com.google.android.material.R$color: int bright_foreground_inverse_material_dark -androidx.constraintlayout.widget.R$color: int abc_primary_text_material_dark -wangdaye.com.geometricweather.R$attr: int sliderStyle -androidx.preference.R$styleable: int AppCompatTheme_actionBarTabTextStyle -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_height -com.google.android.material.internal.VisibilityAwareImageButton: void setVisibility(int) -com.xw.repo.bubbleseekbar.R$styleable: int[] TextAppearance -androidx.lifecycle.SavedStateHandleController: void attachToLifecycle(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) -androidx.appcompat.R$attr: int actionBarDivider -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_visible -com.google.android.material.R$styleable: int KeyCycle_android_alpha -com.amap.api.fence.GeoFenceClient: void setGeoFenceAble(java.lang.String,boolean) -com.loc.k: java.lang.String d -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Large -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type HORIZONTAL_DIMENSION -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onComplete() -wangdaye.com.geometricweather.R$styleable: int FitSystemBarNestedScrollView_sv_side -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean done -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStrokeWidth -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange Past6HourRange -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetStartWithNavigation -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -com.google.android.material.R$id: int slide -com.google.android.material.bottomnavigation.BottomNavigationItemView -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService: MaterialLiveWallpaperService() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: int status -com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_1 -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getThunderstormPrecipitation() -wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_day_foreground -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintTextAppearance -androidx.preference.R$styleable: int AppCompatTheme_actionBarPopupTheme -androidx.preference.R$id -okio.Buffer: void close() -android.didikee.donate.R$attr: int actionLayout -androidx.lifecycle.LifecycleRegistry$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$Event -com.google.android.material.R$attr: int startIconCheckable -androidx.constraintlayout.widget.VirtualLayout: void setElevation(float) -androidx.appcompat.R$color: int abc_decor_view_status_guard_light -androidx.vectordrawable.R$attr: int fontProviderCerts -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] findMatchingRule(java.lang.String[]) -okhttp3.internal.http2.Http2Connection: void writeWindowUpdateLater(int,long) -com.google.android.material.R$dimen: int mtrl_extended_fab_end_padding_icon -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_toolbarId -android.didikee.donate.R$attr: int progressBarPadding -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.lang.Object NEXT_WINDOW -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_right_mtrl_dark -com.google.android.material.R$color: int error_color_material_dark -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setBottomIconDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$drawable: int abc_btn_colored_material -androidx.coordinatorlayout.R$id: int top -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level BASIC -cyanogenmod.hardware.IThermalListenerCallback$Stub: IThermalListenerCallback$Stub() -androidx.constraintlayout.widget.R$styleable: int[] ActionBarLayout -com.google.android.material.R$styleable: int CustomAttribute_customBoolean -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object lpValue() -okhttp3.internal.http2.Http2Codec: java.util.List HTTP_2_SKIPPED_REQUEST_HEADERS -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_to_on_mtrl_000 -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.disposables.Disposable upstream -com.bumptech.glide.integration.okhttp.R$dimen: int notification_big_circle_margin -io.reactivex.internal.schedulers.ScheduledRunnable -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLocationCacheEnable(boolean) -androidx.constraintlayout.widget.R$styleable: int Layout_barrierMargin -com.google.android.material.appbar.CollapsingToolbarLayout -com.google.android.material.slider.RangeSlider: int getTrackSidePadding() -androidx.constraintlayout.widget.R$styleable: int[] ActionMenuItemView -okhttp3.internal.http1.Http1Codec: int STATE_OPEN_REQUEST_BODY -okhttp3.internal.http2.PushObserver$1 -okio.ByteString: byte[] toByteArray() -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_2 -com.jaredrummler.android.colorpicker.R$string: int abc_menu_space_shortcut_label -okhttp3.MultipartBody$Builder: java.util.List parts -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void drain() -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemIconDisabledAlpha -cyanogenmod.hardware.DisplayMode$1: cyanogenmod.hardware.DisplayMode[] newArray(int) -okhttp3.OkHttpClient: int readTimeoutMillis() -androidx.appcompat.widget.SwitchCompat: android.graphics.drawable.Drawable getThumbDrawable() -androidx.customview.R$color: R$color() -wangdaye.com.geometricweather.R$id: int ignoreRequest -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType LoadAll -androidx.lifecycle.extensions.R$id: int notification_background -okhttp3.internal.ws.RealWebSocket: java.lang.String receivedCloseReason -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Name -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.entities.DailyEntity readEntity(android.database.Cursor,int) -androidx.preference.R$attr: int closeIcon -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_127 -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status valueOf(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_text_size -com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onProgressUpdate(float) -cyanogenmod.app.IPartnerInterface$Stub$Proxy: boolean setZenMode(int) -io.reactivex.internal.disposables.CancellableDisposable: long serialVersionUID -io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean isEmpty() -wangdaye.com.geometricweather.R$attr: int bsb_bubble_text_color -okhttp3.ResponseBody$BomAwareReader -androidx.core.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$id: int both -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView_Menu -com.github.rahatarmanahmed.cpv.CircularProgressView: void onSizeChanged(int,int,int,int) -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowDy -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_height -wangdaye.com.geometricweather.R$styleable: int TagView_unchecked_background_color -androidx.lifecycle.SavedStateViewModelFactory: android.os.Bundle mDefaultArgs -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: java.lang.String Name -androidx.constraintlayout.widget.R$attr: int submitBackground -androidx.vectordrawable.R$styleable: int GradientColorItem_android_color -android.didikee.donate.R$drawable: int abc_seekbar_tick_mark_material -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView -com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String APPLICATION_ID -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActivityChooserView -james.adaptiveicon.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog_MinWidth -androidx.work.R$drawable: int notification_bg_normal_pressed -androidx.preference.R$id: int checkbox -okhttp3.HttpUrl$Builder: void resolvePath(java.lang.String,int,int) -androidx.legacy.coreutils.R$attr: R$attr() -android.didikee.donate.R$dimen: int hint_alpha_material_dark -com.turingtechnologies.materialscrollbar.R$color: int material_grey_100 -james.adaptiveicon.R$styleable: int MenuItem_contentDescription -com.google.android.material.R$styleable: int KeyAttribute_android_rotationY -com.xw.repo.bubbleseekbar.R$attr: int tooltipForegroundColor -androidx.appcompat.R$id: int spacer -androidx.appcompat.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.R$string: int get_more_store -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_CompactMenu -androidx.constraintlayout.widget.R$color: int tooltip_background_dark -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: android.graphics.Rect val$clipRect -androidx.cardview.widget.CardView: float getCardElevation() -androidx.appcompat.R$layout: int abc_action_mode_bar -androidx.hilt.work.R$styleable: int GradientColor_android_centerY -androidx.constraintlayout.widget.R$drawable: int abc_tab_indicator_mtrl_alpha -wangdaye.com.geometricweather.R$attr: int actionOverflowButtonStyle -okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot removeSnapshot -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type getOwnerType() -james.adaptiveicon.R$styleable: int[] Toolbar -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_padding_top_material -com.google.android.material.R$styleable: int SnackbarLayout_backgroundTint -androidx.fragment.R$id: int action_image -com.jaredrummler.android.colorpicker.R$id: int search_mag_icon -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_wrapMode -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_creator -androidx.appcompat.widget.SwitchCompat: void setThumbResource(int) -androidx.dynamicanimation.R$dimen: int notification_big_circle_margin -cyanogenmod.app.IPartnerInterface: void shutdown() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setStatus(int) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState[] values() -cyanogenmod.providers.CMSettings$Secure: java.lang.String SYS_PROP_CM_SETTING_VERSION -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_orderInCategory -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColor -androidx.appcompat.R$styleable: int ColorStateListItem_android_color -androidx.preference.R$attr: int autoSizePresetSizes -retrofit2.http.HEAD: java.lang.String value() -com.google.android.gms.common.server.response.zan -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setZh_CN(java.lang.String) -wangdaye.com.geometricweather.R$id: int activity_widget_config_doneButton -retrofit2.HttpServiceMethod$SuspendForResponse: HttpServiceMethod$SuspendForResponse(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter) -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemIconSize() -com.google.android.material.R$styleable: int ConstraintSet_android_maxWidth -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property City -com.google.android.material.R$layout: int design_layout_tab_icon -wangdaye.com.geometricweather.R$id: int always -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstHorizontalStyle -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onAttach(android.os.IBinder) -cyanogenmod.profiles.LockSettings: void readFromParcel(android.os.Parcel) -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.R$style: int large_title_text -androidx.preference.R$layout: int notification_template_part_time -com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Display_TextInputEditText -com.amap.api.fence.DistrictItem: void setPolyline(java.util.List) -okhttp3.internal.http2.Http2Connection$Listener: void onStream(okhttp3.internal.http2.Http2Stream) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain -com.xw.repo.bubbleseekbar.R$attr: int actionModeSelectAllDrawable -wangdaye.com.geometricweather.R$id: int cut -wangdaye.com.geometricweather.R$dimen: int material_cursor_inset_top -cyanogenmod.weather.WeatherInfo$DayForecast$1: cyanogenmod.weather.WeatherInfo$DayForecast[] newArray(int) -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_1 -io.reactivex.internal.subscriptions.EmptySubscription: void clear() -androidx.work.R$integer: R$integer() -com.google.android.material.slider.Slider: android.content.res.ColorStateList getThumbStrokeColor() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -retrofit2.RequestFactory: okhttp3.Headers headers -retrofit2.RequestFactory$Builder: okhttp3.Headers parseHeaders(java.lang.String[]) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction -wangdaye.com.geometricweather.R$style: int Animation_MaterialComponents_BottomSheetDialog -android.didikee.donate.R$color: int primary_text_disabled_material_dark -okhttp3.Dispatcher: int maxRequestsPerHost -wangdaye.com.geometricweather.R$dimen: int abc_seekbar_track_background_height_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String getUnit() -androidx.preference.R$styleable: int SwitchPreference_summaryOff -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -androidx.hilt.lifecycle.R$dimen: int compat_button_padding_vertical_material -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.ILiveLockScreenManager sService -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_68 -androidx.lifecycle.LifecycleService: void onStart(android.content.Intent,int) -com.jaredrummler.android.colorpicker.R$attr: int searchHintIcon -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setContentDescription(int) -okhttp3.internal.platform.AndroidPlatform: int getSdkInt() -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_trackTint -androidx.constraintlayout.widget.R$styleable: int KeyCycle_curveFit -androidx.coordinatorlayout.R$id: int right_side -com.xw.repo.bubbleseekbar.R$attr: int titleMarginStart -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.R$dimen: int widget_time_text_size -androidx.fragment.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarStyle -wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_1_material -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginTop -com.google.android.material.R$styleable: int FloatingActionButton_borderWidth -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum Minimum -com.google.android.material.R$attr: int materialCalendarMonth -com.turingtechnologies.materialscrollbar.R$styleable: int View_paddingEnd -okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV1 -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_thickness -com.google.android.gms.common.internal.zau: android.os.Parcelable$Creator CREATOR -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemSummary(java.lang.String) -com.google.android.material.R$styleable: int SearchView_layout -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error -wangdaye.com.geometricweather.R$styleable: int ActionMode_closeItemLayout -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.xw.repo.bubbleseekbar.R$style: int Base_V23_Theme_AppCompat_Light -androidx.appcompat.R$styleable: int SwitchCompat_android_textOn -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -wangdaye.com.geometricweather.location.services.LocationService: LocationService() -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle -com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_base -okhttp3.internal.ws.WebSocketReader: WebSocketReader(boolean,okio.BufferedSource,okhttp3.internal.ws.WebSocketReader$FrameCallback) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitation -com.google.android.material.R$drawable: R$drawable() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorHeight(int) -okhttp3.internal.cache.DiskLruCache: java.lang.String DIRTY -com.jaredrummler.android.colorpicker.R$anim: int abc_popup_enter -wangdaye.com.geometricweather.R$id: int drawerLayout -androidx.vectordrawable.R$drawable: int notification_template_icon_low_bg -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Medium -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_sheet_modal_elevation -androidx.preference.R$drawable: int abc_cab_background_internal_bg -com.jaredrummler.android.colorpicker.R$color: int ripple_material_dark -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -wangdaye.com.geometricweather.R$attr: int backgroundColor -androidx.dynamicanimation.R$string: R$string() -retrofit2.BuiltInConverters$BufferingResponseBodyConverter -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTextPadding -com.google.android.material.R$attr: int textStartPadding -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$color: int secondary_text_default_material_light -com.google.android.material.R$layout: int text_view_without_line_height -com.google.android.material.slider.Slider: float getThumbElevation() -okhttp3.internal.http2.PushObserver -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -androidx.appcompat.R$dimen: int abc_action_bar_default_padding_start_material -com.turingtechnologies.materialscrollbar.R$dimen: int abc_search_view_preferred_height -com.jaredrummler.android.colorpicker.R$style: int cpv_ColorPickerViewStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: java.lang.String Unit -com.xw.repo.bubbleseekbar.R$color: int colorPrimary -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense -androidx.constraintlayout.widget.R$id: int triangle -com.google.android.material.R$interpolator -com.turingtechnologies.materialscrollbar.R$id: int mini -com.turingtechnologies.materialscrollbar.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$id: int bottom -androidx.lifecycle.SavedStateHandle: java.lang.String KEYS -androidx.recyclerview.R$dimen: int notification_small_icon_size_as_large -androidx.preference.R$style: int Base_V28_Theme_AppCompat_Light -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String name -androidx.preference.R$attr: int logo -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarSplitStyle -com.jaredrummler.android.colorpicker.R$attr: int closeItemLayout -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: IKeyguardExternalViewProvider$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableLeftCompat -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: java.lang.String Unit -cyanogenmod.themes.ThemeManager$2 -androidx.vectordrawable.R$id: int accessibility_custom_action_12 -androidx.transition.R$id: int time -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyle -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_clear_material -wangdaye.com.geometricweather.R$dimen: int material_font_1_3_box_collapsed_padding_top -com.google.android.gms.base.R$styleable: int[] LoadingImageView -androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Line2 -okio.GzipSink: void updateCrc(okio.Buffer,long) -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemHorizontalPadding -androidx.legacy.coreutils.R$id -com.google.android.material.R$styleable: int[] ActivityChooserView -com.bumptech.glide.integration.okhttp.R$id: int chronometer -okhttp3.ConnectionSpec: java.util.List cipherSuites() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: long serialVersionUID -androidx.activity.R$id: int tag_screen_reader_focusable -com.google.android.material.R$attr: int fastScrollEnabled -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void slideLockscreenIn() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String content -james.adaptiveicon.R$attr: int actionModeBackground -com.google.android.material.R$string: int mtrl_picker_a11y_next_month -okhttp3.internal.http2.Http2Connection$Listener: Http2Connection$Listener() -okhttp3.internal.http2.Hpack$Reader: int dynamicTableByteCount -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_toolbarStyle -wangdaye.com.geometricweather.R$drawable: int shortcuts_hail -okio.Okio$4: void timedOut() -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$id: int item_about_translator -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: double lon -james.adaptiveicon.R$attr: int editTextColor -androidx.vectordrawable.R$styleable: int GradientColor_android_endX -com.google.android.material.R$attr: int actionBarPopupTheme -com.google.android.material.R$dimen: int mtrl_calendar_action_padding -androidx.appcompat.widget.AppCompatSpinner: void setDropDownWidth(int) -android.didikee.donate.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -cyanogenmod.profiles.StreamSettings: void readFromParcel(android.os.Parcel) -cyanogenmod.app.BaseLiveLockManagerService: void cancelLiveLockScreen(java.lang.String,int,int) -james.adaptiveicon.R$style: int Theme_AppCompat_DialogWhenLarge -wangdaye.com.geometricweather.R$attr: int windowActionModeOverlay -com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableCompat -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.viewpager2.R$styleable: int ColorStateListItem_android_alpha -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onNext(java.lang.Object) -androidx.transition.R$id: int action_text -com.amap.api.location.CoordUtil -androidx.preference.R$style: int TextAppearance_AppCompat_Button -com.jaredrummler.android.colorpicker.R$attr: int cpv_allowPresets -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_PREV_VALUE -com.google.android.material.R$styleable: int[] Layout -okio.SegmentPool: SegmentPool() -okio.Utf8 -androidx.transition.R$id: int text -retrofit2.converter.gson.GsonRequestBodyConverter: java.nio.charset.Charset UTF_8 -io.reactivex.internal.disposables.DisposableHelper: void reportDisposableSet() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean isEntityUpdateable() -james.adaptiveicon.R$style: int Widget_Compat_NotificationActionContainer -james.adaptiveicon.R$color: int accent_material_dark -com.xw.repo.bubbleseekbar.R$color: int abc_secondary_text_material_dark -james.adaptiveicon.R$attr: int actionBarTheme -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerY -androidx.appcompat.R$styleable: int ActionBar_contentInsetEnd -androidx.lifecycle.ViewModelStores: androidx.lifecycle.ViewModelStore of(androidx.fragment.app.Fragment) -androidx.appcompat.widget.ActionMenuView: ActionMenuView(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMinWidth -android.didikee.donate.R$attr: int actionBarTheme -com.google.android.material.R$styleable: int Chip_checkedIconVisible -okio.DeflaterSink: void write(okio.Buffer,long) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarSize -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: long serialVersionUID -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain12h -okio.GzipSource: byte FHCRC -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_y_offset_touch -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_ttcIndex -com.baidu.location.e.h$c: com.baidu.location.e.h$c a -io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable) -androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: ObservableConcatMapEager$ConcatMapEagerMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,int,io.reactivex.internal.util.ErrorMode) -androidx.preference.R$styleable -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_deriveConstraintsFrom -com.google.android.material.chip.ChipGroup: void setCheckedId(int) -androidx.hilt.work.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.R$attr: int entryValues -androidx.appcompat.R$attr: int subtitle -james.adaptiveicon.R$layout -com.google.android.material.R$attr: int attributeName -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction -james.adaptiveicon.R$styleable: int AppCompatTextView_textLocale -okio.BufferedSink: okio.BufferedSink writeDecimalLong(long) -androidx.lifecycle.LifecycleRegistry: void backwardPass(androidx.lifecycle.LifecycleOwner) -com.turingtechnologies.materialscrollbar.R$color: int mtrl_scrim_color -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_android_textAppearance -wangdaye.com.geometricweather.R$attr: int cornerSizeBottomLeft -androidx.constraintlayout.widget.R$attr: int layout_goneMarginBottom -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_queryBackground -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_baseline_to_top_fullscreen -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: android.graphics.Path getRetreatingJoinPath() -com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusTopStart -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_Switch -com.turingtechnologies.materialscrollbar.R$attr: int switchMinWidth -wangdaye.com.geometricweather.R$id: int CTRL -wangdaye.com.geometricweather.R$string: int mtrl_picker_cancel -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType PNG_A -androidx.preference.R$attr: int textColorAlertDialogListItem -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -retrofit2.RequestFactory$Builder: boolean gotQueryName -androidx.preference.R$color: int abc_secondary_text_material_light -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream removeStream(int) -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_scrollContainer -wangdaye.com.geometricweather.R$dimen: int design_fab_translation_z_hovered_focused -james.adaptiveicon.R$string: int abc_action_menu_overflow_description -okio.BufferedSink: okio.BufferedSink emit() -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionViewClass -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event[] values() -androidx.transition.R$id: int line1 -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification -com.google.android.material.R$attr: int layout_constraintWidth_percent -wangdaye.com.geometricweather.R$styleable: int[] KeyFramesAcceleration -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnLayoutChangeListener(com.google.android.material.snackbar.BaseTransientBottomBar$OnLayoutChangeListener) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listDividerAlertDialog -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int CloudCover -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_material -okhttp3.RealCall: java.lang.String toLoggableString() -com.xw.repo.bubbleseekbar.R$attr: int colorBackgroundFloating -cyanogenmod.weatherservice.ServiceRequestResult$Builder -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_MEDIUM_COLOR_VALIDATOR -androidx.hilt.work.R$id: int accessibility_custom_action_5 -com.google.android.material.R$styleable: int[] Insets -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_suggestionRowLayout -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMenuItemView -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_SNOW_AND_SLEET -androidx.lifecycle.LiveDataReactiveStreams: LiveDataReactiveStreams() -androidx.appcompat.R$styleable: int SwitchCompat_thumbTintMode -cyanogenmod.weatherservice.WeatherProviderService: void attachBaseContext(android.content.Context) -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_MIGRATE_SETTINGS -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast -androidx.cardview.R$styleable: int CardView_contentPaddingLeft -com.amap.api.location.AMapLocation: int getConScenario() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: int getStatus() -com.autonavi.aps.amapapi.model.AMapLocationServer: void f(java.lang.String) -com.google.android.material.textfield.TextInputLayout: void setExpandedHintEnabled(boolean) -okhttp3.internal.cache.DiskLruCache$3: DiskLruCache$3(okhttp3.internal.cache.DiskLruCache) -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String DAY -james.adaptiveicon.R$dimen: int abc_text_size_display_1_material -androidx.drawerlayout.R$layout: int notification_action -com.google.android.material.R$integer -com.google.android.material.button.MaterialButton: void setIconTint(android.content.res.ColorStateList) -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar -wangdaye.com.geometricweather.R$styleable: int Spinner_android_dropDownWidth -androidx.appcompat.widget.AppCompatButton: void setSupportAllCaps(boolean) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.preference.R$styleable: int ActionBar_itemPadding -okhttp3.internal.cache.DiskLruCache: boolean isClosed() -wangdaye.com.geometricweather.R$drawable: int ic_toolbar_back -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_margin -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX -okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_1 -cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri COMPONENTS_URI -cyanogenmod.themes.ThemeManager: java.util.Set access$000(cyanogenmod.themes.ThemeManager) -androidx.recyclerview.R$attr: int font -wangdaye.com.geometricweather.R$id: int icon -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_Underlined -retrofit2.ParameterHandler$Part: void apply(retrofit2.RequestBuilder,java.lang.Object) -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: int leftIndex -androidx.core.app.CoreComponentFactory: CoreComponentFactory() -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: java.util.concurrent.atomic.AtomicReference observers -com.google.android.material.R$style: int Base_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$id: int bottomRecyclerView -com.xw.repo.bubbleseekbar.R$attr: int titleTextStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.github.rahatarmanahmed.cpv.CircularProgressView -wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.LocationEntity) -okhttp3.logging.LoggingEventListener: void connectFailed(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol,java.io.IOException) -com.google.android.gms.base.R$styleable -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onComplete() -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.R$id: int expanded_menu -android.didikee.donate.R$id: int up -okhttp3.internal.Version -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark -wangdaye.com.geometricweather.R$id: int collapseActionView -com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableItem -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() -com.xw.repo.bubbleseekbar.R$attr: int paddingStart -androidx.appcompat.R$style: int Widget_AppCompat_ListMenuView -androidx.preference.R$attr: int fastScrollVerticalThumbDrawable -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf -com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_alpha -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -com.google.android.material.R$style: int Platform_AppCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean -wangdaye.com.geometricweather.R$id: int recyclerView -androidx.hilt.R$id: int right_side -com.turingtechnologies.materialscrollbar.R$attr: int actionLayout -okhttp3.internal.cache.CacheStrategy$Factory: boolean hasConditions(okhttp3.Request) -wangdaye.com.geometricweather.R$id: int design_bottom_sheet -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_useSimpleSummaryProvider -androidx.core.R$styleable: int FontFamilyFont_android_fontWeight -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_width_material -androidx.preference.R$styleable: int AppCompatImageView_srcCompat -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,int) -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String NO_RINGTONE -androidx.appcompat.R$drawable: int abc_btn_radio_to_on_mtrl_015 -james.adaptiveicon.R$styleable: R$styleable() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getIcePrecipitationProbability() -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$styleable: int Slider_thumbRadius -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: java.lang.String Unit -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_creator -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cps -wangdaye.com.geometricweather.R$id: int widget_week_week_3 -com.google.android.material.R$styleable: int BottomAppBar_fabAnimationMode -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,io.reactivex.functions.Function) -okhttp3.internal.ws.RealWebSocket: RealWebSocket(okhttp3.Request,okhttp3.WebSocketListener,java.util.Random,long) -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastHorizontalBias -com.jaredrummler.android.colorpicker.R$attr: int buttonStyleSmall -androidx.lifecycle.extensions.R$id: int right_side -androidx.lifecycle.ProcessLifecycleOwner: void attach(android.content.Context) -com.turingtechnologies.materialscrollbar.R$id: int forever -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: java.lang.Runnable getWrappedRunnable() -com.jaredrummler.android.colorpicker.R$id: int activity_chooser_view_content -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: WeatherContract$WeatherColumns$WeatherCode() -wangdaye.com.geometricweather.R$id: int submenuarrow -wangdaye.com.geometricweather.R$drawable: int abc_list_divider_material -okhttp3.Response$Builder: okhttp3.Response cacheResponse -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_creator -okhttp3.CacheControl: int sMaxAgeSeconds -com.amap.api.fence.GeoFence: float getRadius() -androidx.lifecycle.ComputableLiveData: java.lang.Object compute() -androidx.lifecycle.LifecycleOwner -com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_Primary -androidx.preference.R$styleable: int AlertDialog_showTitle -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type ownerType -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: ObservableIntervalRange$IntervalRangeObserver(io.reactivex.Observer,long,long) -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_weightSum -james.adaptiveicon.R$styleable: int AppCompatTheme_colorPrimaryDark -retrofit2.RequestBuilder: java.lang.String canonicalizeForPath(java.lang.String,boolean) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listMenuViewStyle -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean deferredSetOnce(java.util.concurrent.atomic.AtomicReference,java.util.concurrent.atomic.AtomicLong,org.reactivestreams.Subscription) -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_27 -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: ObservableSequenceEqualSingle$EqualCoordinator(io.reactivex.SingleObserver,int,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -cyanogenmod.themes.IThemeService$Stub: java.lang.String DESCRIPTOR -okhttp3.internal.ws.WebSocketWriter$FrameSink -androidx.preference.R$drawable: int abc_seekbar_tick_mark_material -com.google.android.material.R$styleable: int FontFamilyFont_fontVariationSettings -com.google.android.material.R$attr: int chipStrokeColor -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_fontFamily -cyanogenmod.providers.CMSettings$System$3: boolean validate(java.lang.String) -com.google.android.material.bottomnavigation.BottomNavigationView: void setOnNavigationItemSelectedListener(com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemSelectedListener) -com.google.android.material.R$attr: int thumbStrokeColor -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status PENDING -androidx.constraintlayout.widget.R$styleable: int MenuView_android_verticalDivider -james.adaptiveicon.R$dimen: int abc_action_bar_overflow_padding_end_material -android.didikee.donate.R$attr: int spinnerStyle -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endColor -com.google.android.material.R$drawable: int abc_ic_arrow_drop_right_black_24dp -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$200() -wangdaye.com.geometricweather.R$id: int design_navigation_view -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getDistanceVoice(android.content.Context,float) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowMinWidthMinor -okhttp3.internal.ws.WebSocketWriter: WebSocketWriter(boolean,okio.BufferedSink,java.util.Random) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintStart_toEndOf -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.Observer downstream -com.amap.api.fence.GeoFenceClient: void removeGeoFence() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: double Value -okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date servedDate -androidx.preference.R$attr: int toolbarNavigationButtonStyle -androidx.preference.R$style: int Base_Widget_AppCompat_PopupMenu -cyanogenmod.media.MediaRecorder: java.lang.String CAPTURE_AUDIO_HOTWORD_PERMISSION -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String SERVICE_INTERFACE -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_textOff -okio.Buffer: byte readByte() -androidx.transition.R$id: int icon_group -androidx.constraintlayout.widget.R$attr: int textAllCaps -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.util.ErrorMode errorMode -androidx.lifecycle.LiveData: java.lang.Object mData -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getUvIndex() -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2 -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabSelectedTextColor -androidx.lifecycle.LiveData: void onActive() -androidx.constraintlayout.widget.R$color: int button_material_light -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework -cyanogenmod.externalviews.ExternalView$7: void run() -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_BottomSheetDialog -androidx.lifecycle.extensions.R$drawable: int notification_bg_low -androidx.preference.R$attr: int stackFromEnd -wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeLevel(java.lang.Integer) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalBias -androidx.viewpager.R$id: int notification_main_column_container -androidx.preference.R$dimen: int abc_dialog_fixed_width_minor -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy valueOf(java.lang.String) -androidx.customview.R$styleable: int ColorStateListItem_android_alpha -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: ObservableCreate$SerializedEmitter(io.reactivex.ObservableEmitter) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_elevation -com.google.android.material.R$attr: int closeIconStartPadding -androidx.legacy.coreutils.R$attr: int fontProviderFetchStrategy -androidx.coordinatorlayout.R$id: int accessibility_action_clickable_span -okhttp3.internal.cache.DiskLruCache$3 -okhttp3.TlsVersion: TlsVersion(java.lang.String,int,java.lang.String) -androidx.appcompat.R$string: int abc_menu_meta_shortcut_label -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) -retrofit2.http.DELETE -androidx.preference.R$color: int highlighted_text_material_light -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_subhead_material -android.didikee.donate.R$color: int abc_search_url_text -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert -com.google.android.material.R$styleable: int ActionBar_popupTheme -androidx.preference.R$layout: int preference_widget_seekbar_material -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -wangdaye.com.geometricweather.R$attr: int singleChoiceItemLayout -com.turingtechnologies.materialscrollbar.R$color: int primary_dark_material_light -okhttp3.internal.cache.DiskLruCache$Snapshot: okhttp3.internal.cache.DiskLruCache$Editor edit() -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation LEFT -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$id: int scrollView -android.didikee.donate.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -com.google.gson.stream.JsonReader: int PEEKED_END_ARRAY -androidx.core.R$dimen: int notification_large_icon_width -com.amap.api.location.AMapLocationClientOption$GeoLanguage -android.didikee.donate.R$id: int never -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_steps -wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotationX -wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_title -androidx.constraintlayout.utils.widget.ImageFilterView: float getRoundPercent() -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_to_on_mtrl_000 -androidx.preference.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String primary -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_NIGHT_VALIDATOR -cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_WAKE_SCREEN -okhttp3.internal.connection.RouteSelector: okhttp3.internal.connection.RouteSelector$Selection next() -com.google.android.material.transformation.FabTransformationScrimBehavior: FabTransformationScrimBehavior(android.content.Context,android.util.AttributeSet) -cyanogenmod.weather.WeatherLocation$1 -androidx.preference.R$style: int Base_V7_Widget_AppCompat_Toolbar -androidx.viewpager2.R$styleable: int RecyclerView_reverseLayout -james.adaptiveicon.R$styleable: int[] RecycleListView -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMode -okhttp3.CipherSuite$1: int compare(java.lang.Object,java.lang.Object) -okhttp3.internal.cache.DiskLruCache: boolean mostRecentTrimFailed -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String mName -wangdaye.com.geometricweather.settings.activities.DailyTrendDisplayManageActivity -wangdaye.com.geometricweather.R$id: int widget_day_week_week_4 -wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_material -cyanogenmod.externalviews.KeyguardExternalView: java.lang.String CATEGORY_KEYGUARD_GRANT_PERMISSION -com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$styleable: int KeyCycle_transitionEasing -androidx.preference.R$string: int not_set -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRealFeelTemperature(java.lang.Integer) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.concurrent.atomic.AtomicReference error -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -james.adaptiveicon.R$id: int custom -wangdaye.com.geometricweather.R$styleable: int ActivityChooserView_initialActivityCount -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: java.lang.String address -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderPackage -james.adaptiveicon.R$color: int abc_search_url_text_selected -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isBody -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String zh_TW -james.adaptiveicon.R$styleable: int AppCompatTheme_listMenuViewStyle -androidx.appcompat.R$style: int Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: java.lang.String Unit -com.google.android.material.chip.ChipGroup: int getCheckedChipId() -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: float getMax() -wangdaye.com.geometricweather.R$styleable: int Slider_haloColor -com.google.android.material.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.R$id: int unchecked -com.google.android.material.circularreveal.CircularRevealRelativeLayout: int getCircularRevealScrimColor() -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_transformPivotY -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX -wangdaye.com.geometricweather.R$layout: int preference_dropdown_material -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnClickListener(android.view.View$OnClickListener) -okio.Okio$1: Okio$1(okio.Timeout,java.io.OutputStream) -cyanogenmod.hardware.CMHardwareManager: int getVibratorDefaultIntensity() -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_ASSIST_LONG_PRESS_ACTION -android.didikee.donate.R$styleable: int AppCompatTheme_borderlessButtonStyle -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: void run() -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_layout -wangdaye.com.geometricweather.R$drawable: int notif_temp_13 -com.jaredrummler.android.colorpicker.R$color: int accent_material_dark -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_textAppearance -cyanogenmod.app.ThemeVersion$ComponentVersion: int currentVersion -io.reactivex.Observable: io.reactivex.Observable buffer(java.util.concurrent.Callable,java.util.concurrent.Callable) -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -wangdaye.com.geometricweather.R$layout: int dialog_background_location -androidx.transition.R$dimen: int notification_top_pad -androidx.hilt.work.R$styleable: int GradientColor_android_endColor -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionMenuTextColor -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SeekBar -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.observers.InnerQueuedObserver: int prefetch -com.google.android.material.R$styleable: int[] CollapsingToolbarLayout -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setLineColor(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int status -com.google.android.material.R$style: int Base_Animation_AppCompat_Dialog -androidx.hilt.lifecycle.R$dimen: int notification_right_side_padding_top -androidx.appcompat.R$attr: int actionBarItemBackground -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_4_00 -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property CityId -androidx.preference.R$string: int abc_menu_alt_shortcut_label -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customColorValue -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: java.lang.Integer depth -wangdaye.com.geometricweather.R$style: int widget_text_clock_analog -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_sym_shortcut_label -androidx.hilt.R$id: int tag_accessibility_pane_title -com.google.android.material.chip.Chip: void setTextAppearance(com.google.android.material.resources.TextAppearance) -com.google.android.material.R$attr: int percentX -wangdaye.com.geometricweather.R$attr: int startIconTintMode -androidx.preference.R$styleable: int SwitchCompat_switchTextAppearance -androidx.preference.R$layout: int abc_list_menu_item_layout -androidx.preference.R$attr: int elevation -androidx.preference.R$dimen: int notification_large_icon_height -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.ReportFragment$ActivityInitializationListener mInitializationListener -okhttp3.internal.http2.Http2Stream: java.util.Deque access$000(okhttp3.internal.http2.Http2Stream) -wangdaye.com.geometricweather.R$id: int ragweedTitle -wangdaye.com.geometricweather.R$drawable: int widget_trend_hourly -okio.BufferedSource: java.io.InputStream inputStream() -androidx.appcompat.widget.MenuPopupWindow -androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.R$id: int title -androidx.constraintlayout.motion.widget.MotionHelper: float getProgress() -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTheme -okhttp3.Headers: java.util.Date getDate(java.lang.String) -android.didikee.donate.R$attr: int listChoiceBackgroundIndicator -okhttp3.OkHttpClient: boolean followSslRedirects -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder createExternalView(android.os.Bundle) -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontWeight -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: java.lang.String Localized -com.xw.repo.BubbleSeekBar: void setCustomSectionTextArray(com.xw.repo.BubbleSeekBar$CustomSectionTextArray) -wangdaye.com.geometricweather.R$attr: int drawerArrowStyle -com.google.android.gms.common.internal.zzv: android.os.Parcelable$Creator CREATOR -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: boolean completed -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: java.lang.String Unit -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: double Value -james.adaptiveicon.R$styleable: int[] ActionBarLayout -wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionTitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.Date getPubTime() -com.google.android.material.card.MaterialCardView: void setCardBackgroundColor(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleTint -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_disabled_elevation -com.google.android.material.R$styleable: int MaterialCardView_cardForegroundColor -wangdaye.com.geometricweather.R$styleable: int MaterialToolbar_navigationIconColor -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_round -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setLocation(android.location.Location) -cyanogenmod.weatherservice.WeatherProviderService$1: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) -com.xw.repo.bubbleseekbar.R$id: int action_bar_subtitle -androidx.coordinatorlayout.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.R$attr: int chipStrokeWidth -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer relativeHumidityMin -androidx.appcompat.R$attr: int actionBarSplitStyle -com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_CheckBox -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleTextColor -wangdaye.com.geometricweather.R$style: int CardView_Dark -androidx.work.R$styleable: int ColorStateListItem_android_color -com.turingtechnologies.materialscrollbar.R$id: int line1 -okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot nextSnapshot -cyanogenmod.externalviews.ExternalView$2: cyanogenmod.externalviews.ExternalView this$0 -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.R$attr: int thumbTintMode -wangdaye.com.geometricweather.R$attr: int fastScrollHorizontalThumbDrawable -com.google.android.material.R$attr: int fontVariationSettings -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTx() -androidx.appcompat.R$drawable: int abc_cab_background_internal_bg -com.google.android.material.R$style: int TextAppearance_Design_Counter -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarSplitStyle -wangdaye.com.geometricweather.R$drawable: int ic_wind -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -androidx.constraintlayout.widget.Placeholder -retrofit2.RequestFactory: java.lang.String relativeUrl -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_creator -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange Past12HourRange -okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallbackPossible -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRainPrecipitation(java.lang.Float) -wangdaye.com.geometricweather.R$id: int mtrl_calendar_frame -com.google.android.material.R$styleable: int ConstraintSet_android_scaleY -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -androidx.loader.R$color: int notification_icon_bg_color -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTopCompat -com.google.android.material.R$styleable: int CustomAttribute_customColorDrawableValue -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour -james.adaptiveicon.R$styleable: int CompoundButton_buttonCompat -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_fontFamily -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver,java.lang.Throwable) -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_DarkActionBar -com.amap.api.fence.PoiItem: void setProvince(java.lang.String) -cyanogenmod.externalviews.ExternalViewProviderService: cyanogenmod.externalviews.ExternalViewProviderService$Provider createExternalView(android.os.Bundle) -wangdaye.com.geometricweather.R$attr: int fastScrollVerticalThumbDrawable -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_1 -androidx.preference.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -wangdaye.com.geometricweather.R$dimen: int preference_seekbar_value_minWidth -com.xw.repo.bubbleseekbar.R$style: int Widget_Compat_NotificationActionText -io.reactivex.internal.util.NotificationLite$ErrorNotification: java.lang.String toString() -androidx.appcompat.widget.LinearLayoutCompat: void setVerticalGravity(int) -androidx.coordinatorlayout.R$string: R$string() -james.adaptiveicon.R$id: int edit_query -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_clipToPadding -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: java.util.concurrent.atomic.AtomicReference inner -androidx.appcompat.widget.Toolbar: androidx.appcompat.widget.DecorToolbar getWrapper() -com.google.android.material.slider.RangeSlider$RangeSliderState -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_padding_start_material -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_RC4_128_MD5 -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_width_overflow_material -com.turingtechnologies.materialscrollbar.R$string: int path_password_strike_through -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderFetchTimeout -com.google.android.material.R$id: int chip -androidx.preference.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -com.jaredrummler.android.colorpicker.R$styleable: int Preference_summary -wangdaye.com.geometricweather.R$styleable: int Transform_android_rotationY -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_barThickness -okhttp3.EventListener: void connectStart(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: java.lang.String Unit -com.google.android.material.R$attr: int itemShapeFillColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: java.lang.String Unit -com.xw.repo.bubbleseekbar.R$dimen: int abc_alert_dialog_button_dimen -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Medium -androidx.core.R$dimen: int notification_top_pad_large_text -androidx.fragment.R$id: int accessibility_custom_action_19 -androidx.appcompat.R$string: int abc_shareactionprovider_share_with -androidx.appcompat.R$attr: int toolbarNavigationButtonStyle -com.xw.repo.bubbleseekbar.R$drawable: int abc_item_background_holo_light -androidx.cardview.R$style -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String getType() -androidx.core.R$dimen: int notification_large_icon_height -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_THEME_PACKAGE -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle -okhttp3.internal.cache2.Relay$RelaySource: okhttp3.internal.cache2.FileOperator fileOperator -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_RC4_128_SHA -wangdaye.com.geometricweather.R$string: int settings_title_exchange_day_night_temp_switch -androidx.constraintlayout.widget.R$attr: int layout_constraintDimensionRatio -com.google.android.material.R$styleable: int[] MaterialCalendarItem -wangdaye.com.geometricweather.R$styleable: int MockView_mock_showDiagonals -wangdaye.com.geometricweather.R$id: int accessibility_action_clickable_span -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextAppearance(int) -wangdaye.com.geometricweather.R$styleable: int Fragment_android_id -androidx.cardview.widget.CardView: void setMaxCardElevation(float) -com.amap.api.location.AMapLocation: java.lang.String g -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Action -androidx.appcompat.widget.AppCompatButton: int getAutoSizeMinTextSize() -okio.RealBufferedSource: int read(java.nio.ByteBuffer) -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMenuItemView -wangdaye.com.geometricweather.R$id: int notification_big_temp_3 -androidx.constraintlayout.widget.R$id: int decelerateAndComplete -wangdaye.com.geometricweather.R$id: int notification_base_titleContainer -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default -androidx.preference.R$layout: int expand_button -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerColor -com.google.android.gms.base.R$string: int common_google_play_services_enable_text -com.google.android.material.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sunContainer -androidx.viewpager2.R$style: R$style() -okhttp3.internal.io.FileSystem$1: okio.Source source(java.io.File) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: double Value -androidx.appcompat.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.google.android.material.R$styleable: int TextAppearance_android_textColorLink -com.amap.api.location.CoordinateConverter: float calculateLineDistance(com.amap.api.location.DPoint,com.amap.api.location.DPoint) -androidx.appcompat.widget.AppCompatButton: int[] getAutoSizeTextAvailableSizes() -androidx.appcompat.widget.AppCompatRadioButton: void setSupportButtonTintMode(android.graphics.PorterDuff$Mode) -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_arrowShaftLength -androidx.lifecycle.LifecycleRegistry: void forwardPass(androidx.lifecycle.LifecycleOwner) -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_horizontal -androidx.fragment.R$id: R$id() -retrofit2.converter.gson.GsonConverterFactory -wangdaye.com.geometricweather.R$attr: int errorIconTintMode -wangdaye.com.geometricweather.R$dimen: int abc_dialog_min_width_major -io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer) -com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_radio -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_2 -wangdaye.com.geometricweather.R$attr: int actionModeCloseDrawable -com.google.android.material.R$id: int honorRequest -com.google.android.material.chip.Chip: void setCloseIconTint(android.content.res.ColorStateList) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_15 -com.google.android.material.R$styleable: int MaterialTextAppearance_android_lineHeight -com.jaredrummler.android.colorpicker.R$color: int material_deep_teal_200 -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult -com.google.android.material.R$attr: int transitionDisable -com.google.android.material.R$attr: int itemShapeAppearance -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String aqi -androidx.vectordrawable.R$styleable: R$styleable() -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: void run() -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_dialogType -wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line1_head_interpolator -androidx.preference.R$attr: int theme -androidx.constraintlayout.widget.R$attr: int progressBarStyle -androidx.appcompat.resources.R$color -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid -androidx.appcompat.R$drawable: int abc_textfield_search_material -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRainPrecipitation() -android.didikee.donate.R$drawable: int abc_btn_radio_to_on_mtrl_000 -com.jaredrummler.android.colorpicker.R$color: int abc_tint_spinner -androidx.constraintlayout.widget.R$id: int search_mag_icon -androidx.lifecycle.extensions.R$drawable: int notification_template_icon_low_bg -androidx.vectordrawable.R$id: int time -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: int Degrees -androidx.preference.R$style: int Widget_AppCompat_SeekBar_Discrete -com.autonavi.aps.amapapi.model.AMapLocationServer: void b(org.json.JSONObject) -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerNext() -wangdaye.com.geometricweather.R$styleable: int[] KeyPosition -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabTextColor -androidx.dynamicanimation.R$string -androidx.preference.R$drawable: int btn_radio_off_mtrl -android.didikee.donate.R$attr: int actionBarDivider -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_22 -io.reactivex.Observable: io.reactivex.Observable combineLatest(java.lang.Iterable,io.reactivex.functions.Function) -cyanogenmod.app.Profile$ProfileTrigger: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_119 -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CONDITION_CODE -com.google.android.material.R$id: int action_bar_root -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationY -com.amap.api.location.AMapLocation: java.lang.String d -wangdaye.com.geometricweather.R$layout: int item_tag -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation precipitation -com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_toBottomOf -com.jaredrummler.android.colorpicker.ColorPickerView: int getPreferredWidth() -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontStyle -com.jaredrummler.android.colorpicker.R$styleable: int[] ColorStateListItem -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean mAskedShow -androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_button_bar_material -wangdaye.com.geometricweather.R$attr: int boxCornerRadiusBottomStart -androidx.hilt.work.R$id: int accessibility_custom_action_27 -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatElevationResource(int) -com.google.android.material.appbar.CollapsingToolbarLayout: void setVisibility(int) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object getKey(java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableEnd -wangdaye.com.geometricweather.R$styleable: int KeyCycle_motionTarget -wangdaye.com.geometricweather.R$dimen: int abc_text_size_subhead_material -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: double visibility -androidx.activity.R$style: int Widget_Compat_NotificationActionText -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingRight -com.google.android.material.R$style: int Widget_AppCompat_Button_Small -com.jaredrummler.android.colorpicker.ColorPanelView: void setOriginalColor(int) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle -com.turingtechnologies.materialscrollbar.R$id: int selected -androidx.activity.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.R$styleable: int Chip_ensureMinTouchTargetSize -com.google.android.material.R$styleable: int View_android_focusable -androidx.swiperefreshlayout.R$dimen: int compat_control_corner_material -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_orientation -retrofit2.Utils$ParameterizedTypeImpl: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.R$string: int settings_title_location_service -androidx.preference.R$layout: int preference -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginTop -androidx.preference.R$attr: int layout -com.google.android.material.R$attr: int chipGroupStyle -androidx.vectordrawable.animated.R$id: int right_side -wangdaye.com.geometricweather.R$dimen: int abc_text_size_medium_material -androidx.constraintlayout.widget.R$attr: int selectableItemBackground -wangdaye.com.geometricweather.R$styleable: int Transform_android_translationZ -androidx.core.R$styleable: int FontFamilyFont_android_fontStyle -cyanogenmod.hardware.CMHardwareManager: int FEATURE_UNIQUE_DEVICE_ID -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status FAILED -com.google.gson.stream.JsonReader: char[] buffer -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type[] values() -androidx.recyclerview.R$id: int icon -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_NOTIF_COUNT_VALIDATOR -wangdaye.com.geometricweather.R$attr: int colorSecondaryVariant -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_atd -com.turingtechnologies.materialscrollbar.R$id: int time -androidx.appcompat.R$color: int abc_btn_colored_borderless_text_material -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginRight -okhttp3.internal.connection.RealConnection: int allocationLimit -androidx.constraintlayout.widget.R$attr: int contentInsetStartWithNavigation -androidx.preference.R$attr: int fastScrollVerticalTrackDrawable -wangdaye.com.geometricweather.R$array: int weather_source_values -wangdaye.com.geometricweather.R$array: int pressure_unit_voices -com.google.android.material.bottomappbar.BottomAppBar: int getBottomInset() -com.google.android.material.R$styleable: int AppCompatTheme_windowMinWidthMajor -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -androidx.preference.R$drawable: int abc_item_background_holo_light -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogPreferredPadding -com.google.android.material.R$string: int abc_menu_shift_shortcut_label -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean isDisposed() -androidx.preference.R$drawable: int abc_btn_default_mtrl_shape -com.jaredrummler.android.colorpicker.R$dimen: int hint_alpha_material_dark -okhttp3.internal.http2.Http2Reader$Handler: void priority(int,int,int,boolean) -androidx.coordinatorlayout.R$id: int async -androidx.preference.R$layout: int abc_dialog_title_material -androidx.constraintlayout.widget.R$drawable: int notify_panel_notification_icon_bg -androidx.fragment.R$styleable: int GradientColor_android_startColor -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintEnd_toEndOf -wangdaye.com.geometricweather.R$attr: int dropDownListViewStyle -androidx.constraintlayout.widget.R$id: int dragUp -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_max -james.adaptiveicon.R$layout: int abc_activity_chooser_view_list_item -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: ObservableSwitchMapSingle$SwitchMapSingleMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_button_material -com.google.android.material.R$attr: int expandActivityOverflowButtonDrawable -com.turingtechnologies.materialscrollbar.R$attr: int actionModeCloseDrawable -androidx.appcompat.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -wangdaye.com.geometricweather.R$styleable: int KeyCycle_wavePeriod -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial Imperial -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: SwipeRefreshLayout(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar_Small -com.google.android.material.R$id: int transition_transform -wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_tailColor -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingBottom -cyanogenmod.hardware.ICMHardwareService: boolean setVibratorIntensity(int) -james.adaptiveicon.R$attr: int actionModeSelectAllDrawable -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderConfirmButton -com.google.android.material.textfield.TextInputLayout: void setEndIconDrawable(int) -com.baidu.location.e.h$c: com.baidu.location.e.h$c e -androidx.coordinatorlayout.R$drawable: int notify_panel_notification_icon_bg -cyanogenmod.weather.CMWeatherManager: android.os.Handler access$100(cyanogenmod.weather.CMWeatherManager) -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit LPSQM -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_gapBetweenBars -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$id: int stretch -com.google.android.material.chip.Chip: void setCloseIconPressed(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listMenuViewStyle -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter name(java.lang.String) -okio.Segment: int SIZE -androidx.swiperefreshlayout.R$id: int accessibility_action_clickable_span -androidx.lifecycle.extensions.R$layout: int notification_action_tombstone -okhttp3.internal.ws.RealWebSocket: void loopReader() -wangdaye.com.geometricweather.R$layout: int dialog_running_in_background_o -androidx.constraintlayout.widget.R$styleable: int KeyPosition_pathMotionArc -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_visible -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object getKey(java.lang.Object) -androidx.preference.R$style: int Base_Theme_AppCompat_DialogWhenLarge -wangdaye.com.geometricweather.R$string: int feedback_request_location_permission_success -androidx.preference.R$id: int chronometer -androidx.preference.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableCompatState -okio.GzipSink: void writeHeader() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: int UnitType -androidx.appcompat.widget.AppCompatTextView: void setBackgroundResource(int) -androidx.constraintlayout.widget.R$id: int spline -androidx.vectordrawable.animated.R$styleable: int GradientColorItem_android_offset -androidx.lifecycle.ComputableLiveData: java.lang.Runnable mInvalidationRunnable -com.amap.api.location.AMapLocation: int ERROR_CODE_NOCGI_WIFIOFF -com.google.android.material.R$attr: int logo -james.adaptiveicon.R$color: int abc_tint_edittext -com.amap.api.fence.PoiItem: java.lang.String j -androidx.constraintlayout.widget.R$id: int NO_DEBUG -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: AccuCurrentResult$Temperature$Metric() -okio.GzipSource: java.util.zip.Inflater inflater -com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_corner_material -james.adaptiveicon.R$layout: int abc_action_bar_up_container -cyanogenmod.providers.CMSettings$Secure: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) -com.xw.repo.bubbleseekbar.R$attr: int progressBarStyle -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float icePrecipitationProbability -com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_borderColor -wangdaye.com.geometricweather.R$attr: int percentX -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTitle(java.lang.CharSequence) -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacingHorizontal -androidx.lifecycle.Lifecycling -okhttp3.internal.ws.RealWebSocket$Streams: okio.BufferedSource source -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onAttach(android.os.IBinder) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_bias -wangdaye.com.geometricweather.R$array: int automatic_refresh_rate_values -androidx.preference.R$styleable: int ViewBackgroundHelper_backgroundTintMode -cyanogenmod.weather.IRequestInfoListener$Stub -androidx.fragment.R$id: int tag_accessibility_clickable_spans -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int UNKNOWN -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogPreferredPadding -com.bumptech.glide.integration.okhttp.R$styleable: R$styleable() -james.adaptiveicon.R$styleable: int View_android_focusable -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.fragment.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.transition.R$layout: int notification_action -androidx.preference.R$attr: int tooltipForegroundColor -androidx.drawerlayout.R$styleable: int GradientColor_android_startColor -androidx.hilt.work.R$id: int notification_background -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_size -androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontVariationSettings -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String g() -okio.Okio: okio.BufferedSink buffer(okio.Sink) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Small -androidx.constraintlayout.widget.R$id: int accelerate -androidx.transition.R$color -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: ObservableWithLatestFrom$WithLatestFromObserver(io.reactivex.Observer,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_borderColor -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getIconResStart() -androidx.appcompat.R$styleable: int Toolbar_collapseContentDescription -androidx.dynamicanimation.R$attr: int fontProviderFetchTimeout -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.queue.MpscLinkedQueue queue -androidx.preference.R$styleable: int MenuItem_android_title -com.google.android.material.R$style: int Widget_MaterialComponents_Button -com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonCompat -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetLeft -androidx.preference.R$style: int Preference_Information -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderPackage -io.reactivex.Observable: io.reactivex.Observable doAfterTerminate(io.reactivex.functions.Action) -retrofit2.Retrofit$Builder -com.turingtechnologies.materialscrollbar.R$attr: int background -androidx.preference.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -com.bumptech.glide.integration.okhttp3.OkHttpGlideModule: OkHttpGlideModule() -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_DifferentCornerSize -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginStart -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setIndices(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX) -androidx.preference.R$layout: int abc_popup_menu_item_layout -com.google.android.material.floatingactionbutton.FloatingActionButton: void setImageResource(int) -okhttp3.OkHttpClient: okhttp3.internal.cache.InternalCache internalCache() -cyanogenmod.themes.ThemeManager$1$1: ThemeManager$1$1(cyanogenmod.themes.ThemeManager$1,int) -com.google.android.material.R$attr: int layout_constraintHorizontal_weight -cyanogenmod.externalviews.IExternalViewProvider$Stub: cyanogenmod.externalviews.IExternalViewProvider asInterface(android.os.IBinder) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitation(java.lang.Float) -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getCity() -com.bumptech.glide.integration.okhttp.R$layout: R$layout() -okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE_BACKUP -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.subjects.Subject signaller -wangdaye.com.geometricweather.R$id: int textSpacerNoTitle -com.turingtechnologies.materialscrollbar.R$id: int action_mode_bar_stub -com.jaredrummler.android.colorpicker.R$attr: int checkedTextViewStyle -android.didikee.donate.R$attr: int panelMenuListWidth -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: long index -io.reactivex.Observable: io.reactivex.Observable switchMapDelayError(io.reactivex.functions.Function) -cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onListenerConnected_0 -okhttp3.OkHttpClient: java.util.List protocols -androidx.appcompat.widget.AppCompatButton: int getAutoSizeMaxTextSize() -androidx.constraintlayout.utils.widget.ImageFilterButton: float getRoundPercent() -wangdaye.com.geometricweather.R$id: int activity_allergen_toolbar -james.adaptiveicon.R$styleable: int AlertDialog_listItemLayout -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_vertical_2lines -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -android.didikee.donate.R$id: int text -james.adaptiveicon.R$styleable: int AppCompatTheme_panelMenuListTheme -androidx.constraintlayout.widget.R$styleable: int[] PopupWindowBackgroundState -androidx.preference.R$drawable: int abc_scrubber_track_mtrl_alpha -com.xw.repo.bubbleseekbar.R$attr: int switchTextAppearance -cyanogenmod.weather.CMWeatherManager$RequestStatus: int FAILED -cyanogenmod.profiles.RingModeSettings: java.lang.String mValue -androidx.coordinatorlayout.R$id: int accessibility_custom_action_10 -androidx.vectordrawable.R$id: int tag_unhandled_key_event_manager -androidx.constraintlayout.widget.R$attr: int tooltipForegroundColor -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: boolean isValid() -com.turingtechnologies.materialscrollbar.R$attr: int drawableSize -androidx.activity.R$dimen: int notification_action_icon_size -com.google.android.material.R$styleable: int ActionBar_background -retrofit2.HttpException: int code() -com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_E -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier -androidx.preference.EditTextPreference: void setOnBindEditTextListener(androidx.preference.EditTextPreference$OnBindEditTextListener) -cyanogenmod.app.ThemeVersion: java.lang.String THEME_VERSION_CLASS_NAME -android.didikee.donate.R$drawable: int abc_btn_default_mtrl_shape -androidx.hilt.work.R$id: int line3 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: java.util.List value -wangdaye.com.geometricweather.R$string: int common_open_on_phone -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_circularInset -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: java.lang.reflect.Method findByIssuerAndSignatureMethod -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintEnabled -okio.RealBufferedSource: boolean rangeEquals(long,okio.ByteString) -cyanogenmod.app.StatusBarPanelCustomTile: int getUserId() -com.google.android.material.R$color: int mtrl_textinput_default_box_stroke_color -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense -com.google.android.material.R$dimen: int mtrl_navigation_item_horizontal_padding -androidx.appcompat.widget.ActionBarOverlayLayout: void setActionBarHideOffset(int) -androidx.appcompat.R$drawable: int abc_list_selector_background_transition_holo_dark -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: KeyguardExternalViewProviderService$Provider$ProviderImpl$7(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelBackground -wangdaye.com.geometricweather.R$dimen: int abc_dialog_list_padding_top_no_title -james.adaptiveicon.R$styleable: int SearchView_defaultQueryHint -androidx.appcompat.resources.R$dimen: int notification_right_icon_size -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_padding_bottom -androidx.viewpager2.R$attr: int fontProviderPackage -com.baidu.location.indoor.mapversion.c.a$d: double c(double) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String level -wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean isEntityUpdateable() -androidx.constraintlayout.widget.R$color: int switch_thumb_normal_material_dark -androidx.customview.R$integer: int status_bar_notification_info_maxnum -okhttp3.internal.http1.Http1Codec: okio.Sink newChunkedSink() -okio.AsyncTimeout$2: okio.Source val$source -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_disabled -wangdaye.com.geometricweather.db.entities.WeatherEntityDao -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionViewClass -okhttp3.internal.http2.Settings: Settings() -wangdaye.com.geometricweather.R$layout: int design_navigation_menu_item -com.google.android.material.R$attr: int itemIconPadding -androidx.constraintlayout.widget.R$attr: int radioButtonStyle -okhttp3.internal.cache2.Relay: boolean isClosed() -androidx.lifecycle.LiveData$ObserverWrapper: void activeStateChanged(boolean) -androidx.preference.R$styleable: int Toolbar_logo -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void dispose() -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationZ -james.adaptiveicon.R$attr: int indeterminateProgressStyle -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderQuery -androidx.appcompat.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -wangdaye.com.geometricweather.R$layout: int container_main_aqi -cyanogenmod.app.ILiveLockScreenManager: boolean getLiveLockScreenEnabled() -androidx.appcompat.R$id: int accessibility_custom_action_20 -com.google.android.material.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String notice -com.google.android.material.R$style: int Widget_AppCompat_Button -cyanogenmod.platform.Manifest$permission: java.lang.String BIND_CUSTOM_TILE_LISTENER_SERVICE -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String street_number -okhttp3.RealCall: boolean isCanceled() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: AccuDailyResult$DailyForecasts$AirAndPollen() -com.google.android.material.R$animator: int mtrl_btn_unelevated_state_list_anim -androidx.appcompat.R$style: int Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$layout: int dialog_time_setter -androidx.lifecycle.ViewModel -com.google.android.material.R$style: int TextAppearance_AppCompat_Small -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: void setProgress(float) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitationDuration -androidx.preference.R$string: int abc_menu_shift_shortcut_label -cyanogenmod.hardware.CMHardwareManager: boolean requireAdaptiveBacklightForSunlightEnhancement() -androidx.appcompat.R$attr: int voiceIcon -com.amap.api.fence.GeoFenceManagerBase: void addRoundGeoFence(com.amap.api.location.DPoint,float,java.lang.String) -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_2 -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_submitBackground -wangdaye.com.geometricweather.R$id: int cpv_color_panel_view -androidx.viewpager.R$color: R$color() -com.google.android.material.R$styleable: int ConstraintSet_pivotAnchor -com.google.android.material.slider.BaseSlider: int getFocusedThumbIndex() -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: android.os.IBinder asBinder() -io.reactivex.internal.disposables.EmptyDisposable: boolean isDisposed() -androidx.activity.R$id: int info -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onComplete() -james.adaptiveicon.R$drawable: int abc_spinner_mtrl_am_alpha -wangdaye.com.geometricweather.R$layout: int item_about_title -androidx.vectordrawable.animated.R$id: int action_image -androidx.appcompat.R$styleable: int ActionMode_subtitleTextStyle -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: long serialVersionUID -wangdaye.com.geometricweather.R$string: int allergen -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitationProbability() -android.didikee.donate.R$style: int Base_Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String cityId -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_radius_on_dragging -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: android.graphics.Matrix getLocalMatrix() -wangdaye.com.geometricweather.common.basic.models.weather.Base -androidx.customview.R$integer: R$integer() -androidx.appcompat.R$anim: int abc_shrink_fade_out_from_bottom -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.util.List value -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year -com.google.android.material.R$dimen: int design_bottom_navigation_height -androidx.preference.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -androidx.customview.R$drawable -com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable -wangdaye.com.geometricweather.R$string: int settings_title_temperature_unit -okhttp3.internal.Util: boolean skipAll(okio.Source,int,java.util.concurrent.TimeUnit) -androidx.appcompat.R$styleable: int FontFamily_fontProviderCerts -com.google.android.material.circularreveal.cardview.CircularRevealCardView: CircularRevealCardView(android.content.Context) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.functions.Function combiner -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windDircStart -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.lang.String unit -cyanogenmod.app.CustomTile -android.didikee.donate.R$color: int primary_text_default_material_light -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setAqiIndex(java.lang.Integer) -androidx.loader.R$id: int title -okhttp3.internal.http2.Huffman: byte[] CODE_LENGTHS -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -android.didikee.donate.R$attr: int textAppearanceLargePopupMenu -okhttp3.Cache$2: void remove() -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_share_mtrl_alpha -androidx.core.R$integer: int status_bar_notification_info_maxnum -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.MediaType contentType -androidx.appcompat.widget.ActionBarOverlayLayout: int getNestedScrollAxes() -androidx.constraintlayout.widget.R$attr: int backgroundSplit -androidx.hilt.work.R$styleable: R$styleable() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -com.google.android.material.bottomsheet.BottomSheetBehavior -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterTextColor -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_disabled_material_light -wangdaye.com.geometricweather.R$styleable: int[] DrawerArrowToggle -androidx.preference.R$dimen: int fastscroll_default_thickness -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void run() -wangdaye.com.geometricweather.R$attr: int textColorAlertDialogListItem -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_3 -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_setInteractivity -androidx.preference.R$styleable: int[] FragmentContainerView -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -androidx.hilt.lifecycle.R$attr: int fontStyle -androidx.activity.R$id: int accessibility_custom_action_24 -android.didikee.donate.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean getPressure() -android.didikee.donate.R$styleable: int ActionBar_title -wangdaye.com.geometricweather.R$string: int mtrl_chip_close_icon_content_description -com.jaredrummler.android.colorpicker.R$anim -okhttp3.internal.ws.RealWebSocket: void awaitTermination(int,java.util.concurrent.TimeUnit) -androidx.preference.R$style: int PreferenceThemeOverlay_v14 -wangdaye.com.geometricweather.R$styleable: int RadialViewGroup_materialCircleRadius -com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableTransition -com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_PrimarySurface -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum Minimum -wangdaye.com.geometricweather.R$string: int feedback_interpret_notification_group_title -androidx.customview.R$string: int status_bar_notification_info_overflow -com.google.android.material.button.MaterialButtonToggleGroup: java.util.List getCheckedButtonIds() -cyanogenmod.providers.DataUsageContract: java.lang.String CONTENT_ITEM_TYPE -com.google.android.material.R$dimen: int abc_text_size_subtitle_material_toolbar -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.util.List Summaries -com.google.android.gms.base.R$drawable: int googleg_standard_color_18 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: AccuCurrentResult$Wind$Direction() -wangdaye.com.geometricweather.R$attr: int chipGroupStyle -androidx.preference.R$styleable: int[] StateListDrawable -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Menu -okhttp3.internal.tls.DistinguishedNameParser: DistinguishedNameParser(javax.security.auth.x500.X500Principal) -wangdaye.com.geometricweather.R$string: int feedback_background_location_title -okhttp3.HttpUrl$Builder: boolean isDotDot(java.lang.String) -wangdaye.com.geometricweather.R$color: int primary_dark_material_dark -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitationDuration -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setSnowPrecipitationProbability(java.lang.Float) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_chainStyle -androidx.dynamicanimation.R$id: int action_container -androidx.transition.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String country -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String EnglishName -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_middle_mtrl_light -com.google.android.material.R$layout: int material_timepicker_textinput_display -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom -retrofit2.ParameterHandler$Path: int p -okhttp3.RealCall: okhttp3.RealCall newRealCall(okhttp3.OkHttpClient,okhttp3.Request,boolean) -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontStyle -androidx.constraintlayout.widget.R$styleable: int PropertySet_android_alpha -wangdaye.com.geometricweather.R$attr: int textAppearanceOverline -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setNeedAddress(boolean) -cyanogenmod.weather.WeatherInfo$Builder: double mWindDirection -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: androidx.lifecycle.SavedStateHandle mHandle -com.google.android.material.R$id: int search_button -com.google.android.material.R$attr: int elevation -okhttp3.Dispatcher: boolean promoteAndExecute() -wangdaye.com.geometricweather.R$layout: int material_chip_input_combo -androidx.appcompat.widget.AppCompatTextView: android.graphics.PorterDuff$Mode getSupportCompoundDrawablesTintMode() -okhttp3.Cache$CacheResponseBody$1 -wangdaye.com.geometricweather.R$id: int notification_big_week_2 -com.amap.api.fence.GeoFenceClient: void resumeGeoFence() -com.bumptech.glide.R$style: int Widget_Support_CoordinatorLayout -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -androidx.preference.Preference$BaseSavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$drawable: int widget_clock_day_details -androidx.constraintlayout.widget.R$style: int Base_DialogWindowTitleBackground_AppCompat -wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_orderingFromXml -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language DUTCH -androidx.appcompat.R$drawable: int abc_vector_test -androidx.appcompat.R$styleable: int[] ActionMode -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource -cyanogenmod.content.Intent: java.lang.String ACTION_SCREEN_CAMERA_GESTURE -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object ASYNC_DISPOSED -com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingStart -james.adaptiveicon.R$id: int title -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_middle_mtrl_dark -androidx.constraintlayout.widget.R$id: int progress_circular -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_textColorHint -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$styleable: int TextInputLayout_errorIconTint -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void dispose() -wangdaye.com.geometricweather.R$string: int widget_text -okhttp3.Cookie$Builder: Cookie$Builder() -android.didikee.donate.R$styleable: int AppCompatTextView_textAllCaps -cyanogenmod.weather.util.WeatherUtils: java.lang.String formatTemperature(double,int) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlHighlight -cyanogenmod.app.CustomTile$ExpandedStyle$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$dimen: int mtrl_card_checked_icon_size -androidx.constraintlayout.widget.R$attr: int actionModeSplitBackground -wangdaye.com.geometricweather.R$layout: int material_clock_display_divider -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.R$styleable: int Transform_android_translationX -androidx.constraintlayout.utils.widget.ImageFilterView: float getContrast() -com.google.gson.stream.JsonWriter: void beforeValue() -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_ripple_color -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickTintList() -okhttp3.logging.LoggingEventListener: void dnsEnd(okhttp3.Call,java.lang.String,java.util.List) -androidx.constraintlayout.widget.R$attr: int ratingBarStyleIndicator -okhttp3.Cache: void trackConditionalCacheHit() -com.xw.repo.bubbleseekbar.R$color: int button_material_light -com.jaredrummler.android.colorpicker.R$attr: int cpv_borderColor -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -androidx.work.R$attr: int fontStyle -androidx.preference.R$styleable: int MenuGroup_android_id -android.didikee.donate.R$dimen: int disabled_alpha_material_dark -cyanogenmod.externalviews.KeyguardExternalView$11: cyanogenmod.externalviews.KeyguardExternalView this$0 -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setNestedScrollingEnabled(boolean) -com.google.android.material.R$attr: int collapseContentDescription -androidx.preference.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -james.adaptiveicon.R$drawable: int abc_seekbar_track_material -wangdaye.com.geometricweather.R$drawable: int notif_temp_12 -wangdaye.com.geometricweather.R$string: int settings_title_notification_temp_icon -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks -androidx.preference.R$style: int Preference_Category -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView -wangdaye.com.geometricweather.R$id: int treeTitle -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_HOURLY_OVERVIEW -com.google.android.gms.base.R$string: int common_google_play_services_install_text -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalBias -com.google.android.material.tabs.TabLayout: int getTabIndicatorGravity() -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_caption_material -com.amap.api.fence.GeoFence: int getActivatesAction() -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarButtonStyle -wangdaye.com.geometricweather.R$styleable: int Constraint_transitionEasing -com.google.android.material.R$attr: int toolbarStyle -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display1 -com.xw.repo.bubbleseekbar.R$bool: int abc_config_actionMenuItemAllCaps -james.adaptiveicon.R$id: int topPanel -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: long serialVersionUID -androidx.appcompat.R$color: int secondary_text_default_material_dark -okhttp3.internal.http.BridgeInterceptor -com.google.android.material.button.MaterialButton: void setPressed(boolean) -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: ICMTelephonyManager$Stub$Proxy(android.os.IBinder) -cyanogenmod.weather.WeatherInfo$1: java.lang.Object[] newArray(int) -androidx.preference.R$drawable: int abc_scrubber_control_off_mtrl_alpha -androidx.fragment.R$anim: int fragment_fade_enter -wangdaye.com.geometricweather.R$styleable: int AlertDialog_showTitle -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display4 -cyanogenmod.themes.IThemeChangeListener -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription this$0 -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_surface -androidx.preference.R$style: int Preference_Category_Material -androidx.transition.R$styleable: int FontFamilyFont_ttcIndex -okhttp3.HttpUrl: java.lang.String PATH_SEGMENT_ENCODE_SET_URI -com.google.android.gms.dynamic.RemoteCreator$RemoteCreatorException: RemoteCreator$RemoteCreatorException(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalStyle -androidx.constraintlayout.widget.R$attr: int onNegativeCross -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_android_elevation -androidx.constraintlayout.utils.widget.ImageFilterButton: void setContrast(float) -androidx.swiperefreshlayout.R$dimen: int compat_notification_large_icon_max_width -androidx.preference.PreferenceGroup -androidx.appcompat.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -androidx.lifecycle.Transformations$1: androidx.lifecycle.MediatorLiveData val$result -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha -com.google.gson.stream.JsonReader: int lineStart -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: float getMax() -cyanogenmod.weatherservice.IWeatherProviderService -wangdaye.com.geometricweather.R$attr: int toolbarNavigationButtonStyle -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_NULL_SHA -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListPopupWindow -com.turingtechnologies.materialscrollbar.R$attr: int showMotionSpec -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig hourlyEntityDaoConfig -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleTintMode -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: java.lang.String Unit -com.google.android.material.R$styleable: int AppCompatTheme_controlBackground -androidx.preference.R$attr: int actionBarDivider -androidx.activity.R$styleable: int FontFamily_fontProviderCerts -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTextHelper -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -com.google.android.material.R$id: int material_timepicker_ok_button -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$Event upEvent(androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.R$styleable: int KeyPosition_motionTarget -com.google.android.material.R$attr: int layout -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_right_mtrl_light -okhttp3.internal.http.RetryAndFollowUpInterceptor: int retryAfter(okhttp3.Response,int) -okhttp3.HttpUrl: okhttp3.HttpUrl get(java.net.URL) -wangdaye.com.geometricweather.R$drawable: int notif_temp_2 -retrofit2.Platform: boolean hasJava8Types -wangdaye.com.geometricweather.R$id: int search_mag_icon -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme_Dark -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: io.reactivex.processors.FlowableProcessor processor -cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX) -wangdaye.com.geometricweather.R$attr: int tabContentStart -androidx.preference.R$styleable: int DialogPreference_android_dialogMessage -okhttp3.Cookie: int hashCode() -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator$SavedState -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicLong index -com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_button_bar_material -androidx.appcompat.R$attr: int tooltipText -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton -androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor INSTANCE -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dark -james.adaptiveicon.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FOGGY -cyanogenmod.profiles.StreamSettings: void setOverride(boolean) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setTargetOffsetTopAndBottom(int) -com.amap.api.location.AMapLocationQualityReport: void setGPSSatellites(int) -androidx.constraintlayout.widget.R$attr: int listChoiceBackgroundIndicator -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type[] getUpperBounds() -androidx.appcompat.R$attr: int selectableItemBackgroundBorderless -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer speed -com.google.android.material.R$dimen: int item_touch_helper_swipe_escape_max_velocity -androidx.appcompat.R$dimen: int notification_big_circle_margin -androidx.vectordrawable.animated.R$id: int forever -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Date -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxPlain() -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setDuration(long) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_PrimarySurface -androidx.preference.R$styleable: int AppCompatTextView_drawableRightCompat -wangdaye.com.geometricweather.R$color: int design_bottom_navigation_shadow_color -android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -android.didikee.donate.R$style: int TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.R$dimen: int fastscroll_default_thickness -com.google.android.material.R$id: int cut -androidx.hilt.R$attr: int ttcIndex -com.turingtechnologies.materialscrollbar.R$attr: int tooltipFrameBackground -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ButtonBar -com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat -androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Title -retrofit2.OkHttpCall$NoContentResponseBody: okhttp3.MediaType contentType -okhttp3.Handshake: okhttp3.CipherSuite cipherSuite() -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.Long getId() -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_ttcIndex -okhttp3.internal.http.HttpHeaders: int parseSeconds(java.lang.String,int) -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_label_cutout_padding -androidx.activity.ComponentActivity: ComponentActivity() -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle CIRCULAR -androidx.constraintlayout.widget.Constraints: androidx.constraintlayout.widget.ConstraintSet getConstraintSet() -wangdaye.com.geometricweather.R$string: int mtrl_picker_a11y_next_month -com.turingtechnologies.materialscrollbar.R$attr: int contentScrim -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_pressed_holo_dark -com.xw.repo.bubbleseekbar.R$attr: int buttonIconDimen -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum Maximum -com.google.gson.stream.JsonWriter: void string(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getTagValue() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getSunRiseDate() -com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextView -com.turingtechnologies.materialscrollbar.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: java.util.List brands -com.google.android.material.R$layout: int design_text_input_start_icon -wangdaye.com.geometricweather.R$color: int colorPrimary -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: int hasSeaBulletin -com.turingtechnologies.materialscrollbar.R$attr: int colorAccent -com.google.android.material.R$attr: int contentPaddingLeft -com.bumptech.glide.integration.okhttp.R$dimen: int compat_notification_large_icon_max_width -androidx.appcompat.widget.ViewStubCompat: void setLayoutInflater(android.view.LayoutInflater) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction LastAction -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: AccuCurrentResult$Precip1hr() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setValue(java.util.List) -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider[] values() -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onComplete() -com.amap.api.location.AMapLocationClientOption: boolean isWifiActiveScan() -okhttp3.internal.ws.WebSocketWriter$FrameSink: okhttp3.internal.ws.WebSocketWriter this$0 -retrofit2.ParameterHandler$QueryMap: retrofit2.Converter valueConverter -com.xw.repo.bubbleseekbar.R$attr: int actionModePasteDrawable -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotationX -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog_Alert -com.google.android.material.R$styleable: int ActionBar_divider -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginStart -james.adaptiveicon.R$id: int action_bar_spinner -androidx.appcompat.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getRain() -com.google.android.material.R$color: int design_default_color_secondary_variant -com.google.android.material.R$style: int Widget_AppCompat_AutoCompleteTextView -com.xw.repo.bubbleseekbar.R$string: int abc_menu_delete_shortcut_label -cyanogenmod.weather.WeatherLocation: java.lang.String access$502(cyanogenmod.weather.WeatherLocation,java.lang.String) -android.didikee.donate.R$dimen: int abc_progress_bar_height_material -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginStart -cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String mName -androidx.viewpager2.R$drawable: R$drawable() -androidx.appcompat.widget.SwitchCompat: void setThumbTintList(android.content.res.ColorStateList) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.Window mWindow -wangdaye.com.geometricweather.R$layout: int expand_button -wangdaye.com.geometricweather.R$dimen: int cpv_item_horizontal_padding -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setHttpTimeOut(long) -wangdaye.com.geometricweather.R$styleable: int[] CircularProgressView -wangdaye.com.geometricweather.R$id: int graph -androidx.core.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_min -wangdaye.com.geometricweather.R$id: int month_navigation_next -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getLevel() -androidx.coordinatorlayout.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_summaryOn -com.google.android.material.slider.RangeSlider: int getThumbRadius() -androidx.preference.R$styleable: int AppCompatTheme_actionBarDivider -wangdaye.com.geometricweather.R$styleable: int Transition_transitionDisable -cyanogenmod.weather.CMWeatherManager: android.content.Context mContext -androidx.lifecycle.ProcessLifecycleOwner: boolean mStopSent -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setHideMotionSpecResource(int) -okhttp3.logging.LoggingEventListener: void secureConnectEnd(okhttp3.Call,okhttp3.Handshake) -com.google.android.material.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.turingtechnologies.materialscrollbar.R$attr: int actionBarDivider -cyanogenmod.app.CustomTile$ExpandedStyle: cyanogenmod.app.CustomTile$ExpandedItem[] getExpandedItems() -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_textAppearance -androidx.viewpager2.R$id: int tag_transition_group -okio.Base64: Base64() -okhttp3.internal.connection.StreamAllocation$StreamAllocationReference: java.lang.Object callStackTrace -wangdaye.com.geometricweather.R$integer: int bottom_sheet_slide_duration -retrofit2.OkHttpCall -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer ragweedIndex -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_visibility -okhttp3.OkHttpClient: java.util.List connectionSpecs -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric() -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionLayout -androidx.viewpager2.R$id: int accessibility_custom_action_25 -okhttp3.internal.cache.FaultHidingSink: void write(okio.Buffer,long) -okhttp3.EventListener$2 -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_scaleX -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -androidx.vectordrawable.R$dimen: int notification_top_pad_large_text -androidx.transition.R$id: int info -com.google.android.material.R$id: int dragUp -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_stroke_color_selector -com.google.android.material.R$attr: int materialAlertDialogBodyTextStyle -androidx.viewpager.R$attr: int fontProviderQuery -com.google.android.material.R$styleable: int Variant_region_widthLessThan -okhttp3.ConnectionPool: java.net.Socket deduplicate(okhttp3.Address,okhttp3.internal.connection.StreamAllocation) -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sAlwaysTrueValidator -com.google.android.material.R$style: int TestStyleWithLineHeightAppearance -androidx.lifecycle.ProcessLifecycleOwnerInitializer: android.net.Uri insert(android.net.Uri,android.content.ContentValues) -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_disableDependentsState -com.google.android.material.R$styleable: int AppBarLayout_liftOnScrollTargetViewId -wangdaye.com.geometricweather.R$string: int content_des_moonrise -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getGrassIndex() -androidx.transition.R$id: int icon -com.turingtechnologies.materialscrollbar.R$id: int progress_horizontal -retrofit2.RequestFactory$Builder: okhttp3.Headers headers -wangdaye.com.geometricweather.R$attr: int shapeAppearanceLargeComponent -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Button -android.support.v4.os.IResultReceiver$Default: void send(int,android.os.Bundle) -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundColor(int) -androidx.swiperefreshlayout.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_default_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial -wangdaye.com.geometricweather.R$styleable: int MaterialTextView_android_lineHeight -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeight -androidx.preference.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingBottom -wangdaye.com.geometricweather.R$color: int colorTextSubtitle -cyanogenmod.weather.CMWeatherManager$2$2: cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener val$listener -cyanogenmod.profiles.ConnectionSettings$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.R$attr: int contrast -wangdaye.com.geometricweather.R$drawable: int cpv_preset_checked -com.google.android.material.R$styleable: int[] AppCompatImageView -androidx.appcompat.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.IndeterminateDrawable getIndeterminateDrawable() -androidx.constraintlayout.widget.R$styleable: int KeyPosition_curveFit -com.xw.repo.bubbleseekbar.R$string: R$string() -com.baidu.location.d.a$a -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -androidx.dynamicanimation.R$styleable: int GradientColor_android_endX -androidx.customview.R$dimen: int compat_notification_large_icon_max_height -com.jaredrummler.android.colorpicker.R$style: int Preference_Information_Material -james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context) -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -androidx.viewpager.R$drawable: int notification_bg_low_normal -com.google.android.material.R$dimen: int mtrl_badge_radius -wangdaye.com.geometricweather.R$attr: int progress -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property CityId -wangdaye.com.geometricweather.R$font: int product_sans_light_italic -com.google.android.material.R$styleable: int Constraint_layout_editor_absoluteX -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String weatherStart -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetLeft -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -io.reactivex.internal.util.HashMapSupplier: java.util.Map call() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitationProbability -androidx.fragment.R$id: int action_container -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_CBC_SHA256 -com.github.rahatarmanahmed.cpv.BuildConfig: int VERSION_CODE -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub -androidx.appcompat.resources.R$id: int right_icon -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindSpeed -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_90 -com.google.android.material.slider.BaseSlider: void setThumbStrokeWidth(float) -com.google.android.material.internal.NavigationMenuItemView: void setTextColor(android.content.res.ColorStateList) -okio.ByteString: okio.ByteString substring(int,int) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String INSTALL_TIME -io.reactivex.internal.queue.SpscArrayQueue: boolean offer(java.lang.Object) -com.google.android.material.R$id: int mtrl_picker_fullscreen -com.xw.repo.bubbleseekbar.R$attr: int height -androidx.preference.R$attr: int buttonBarNegativeButtonStyle -com.google.android.material.chip.ChipGroup: void setChipSpacingHorizontalResource(int) -androidx.constraintlayout.widget.R$attr: int touchAnchorId -james.adaptiveicon.R$id: int action_menu_divider -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onSubscribe(org.reactivestreams.Subscription) -okhttp3.Handshake -okhttp3.CertificatePinner$Pin -wangdaye.com.geometricweather.R$attr: int flow_lastHorizontalBias -io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator[] values() -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_summaryOff -com.google.android.material.internal.CheckableImageButton: void setPressable(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_indeterminateProgressStyle -io.reactivex.disposables.RunnableDisposable: void onDisposed(java.lang.Runnable) -com.google.android.gms.base.R$id: int standard -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getRagweedDescription() -androidx.appcompat.R$id: int wrap_content -com.google.android.material.R$id: int tag_unhandled_key_listeners -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_statusBarScrim -james.adaptiveicon.R$style: int Platform_AppCompat -androidx.drawerlayout.R$id: int right_icon -androidx.preference.R$styleable: int SeekBarPreference_android_layout -androidx.recyclerview.R$styleable: int FontFamily_fontProviderCerts -com.google.android.material.R$styleable: int AppCompatTheme_dividerHorizontal -androidx.dynamicanimation.R$styleable: int GradientColor_android_endColor -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Medium -wangdaye.com.geometricweather.R$color: int colorSearchBarBackground -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setPosition(int) -com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getStartIconDrawable() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float no2 -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dark -okhttp3.internal.tls.DistinguishedNameParser: int beg -com.jaredrummler.android.colorpicker.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean access$702(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,boolean) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$layout: int item_details -com.google.android.material.R$styleable: int ActionBar_backgroundStacked -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: org.reactivestreams.Subscriber downstream -androidx.constraintlayout.widget.R$attr: int trackTint -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintStart_toStartOf -com.google.android.material.R$styleable: int TextAppearance_android_shadowDx -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date getRiseDate() -okhttp3.internal.platform.AndroidPlatform$CloseGuard: AndroidPlatform$CloseGuard(java.lang.reflect.Method,java.lang.reflect.Method,java.lang.reflect.Method) -okhttp3.internal.http2.Huffman: void addCode(int,int,byte) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setLocationKey(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Variant_constraints -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableTop -android.didikee.donate.R$style: int Platform_AppCompat -androidx.constraintlayout.widget.R$styleable: int Constraint_android_orientation -androidx.preference.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -cyanogenmod.externalviews.ExternalView$8: ExternalView$8(cyanogenmod.externalviews.ExternalView) -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dialog -com.jaredrummler.android.colorpicker.R$attr: int seekBarPreferenceStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getUnitId() -com.google.android.material.R$styleable: int KeyAttribute_android_elevation -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setId(java.lang.Long) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_iconTintMode -james.adaptiveicon.R$layout: int abc_expanded_menu_layout -okhttp3.OkHttpClient$Builder: okhttp3.ConnectionPool connectionPool -okhttp3.internal.connection.RealConnection: okhttp3.Protocol protocol -cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_TARGETS -com.google.android.material.R$styleable: int Constraint_android_scaleX -retrofit2.Retrofit$Builder: Retrofit$Builder(retrofit2.Retrofit) -com.bumptech.glide.R$id: int tag_unhandled_key_listeners -com.xw.repo.bubbleseekbar.R$color: int abc_color_highlight_material -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void clear() -cyanogenmod.profiles.StreamSettings$1: java.lang.Object[] newArray(int) -com.google.android.material.internal.ScrimInsetsFrameLayout: void setDrawBottomInsetForeground(boolean) -androidx.preference.R$string: int abc_capital_on -cyanogenmod.weatherservice.IWeatherProviderService: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property District -androidx.activity.R$id: int chronometer -wangdaye.com.geometricweather.R$id: int snapMargins -com.google.android.material.appbar.MaterialToolbar: void setNavigationIcon(android.graphics.drawable.Drawable) -androidx.constraintlayout.widget.R$drawable: int abc_tab_indicator_material -com.google.android.material.R$attr: int enforceMaterialTheme -androidx.viewpager2.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$array: int week_icon_modes -com.google.android.material.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay[] halfDays -com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_internal_bg -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Bridge -com.bumptech.glide.integration.okhttp.R$id: int text -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.AlertEntity) -android.didikee.donate.R$style: int Base_Widget_AppCompat_EditText -cyanogenmod.externalviews.ExternalViewProviderService$1: android.os.IBinder createExternalView(android.os.Bundle) -cyanogenmod.providers.CMSettings$Secure: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LOCK_WALLPAPER_PREVIEW -com.xw.repo.bubbleseekbar.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$attr: int maxVelocity -okhttp3.internal.ws.RealWebSocket: long queueSize -okhttp3.CacheControl -androidx.appcompat.R$styleable: int Toolbar_contentInsetStartWithNavigation -com.bumptech.glide.R$styleable: int GradientColor_android_startY -com.google.android.material.R$attr: int materialCalendarHeaderTitle -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackTintList() -com.google.android.material.R$attr: int textAppearanceButton -androidx.viewpager.R$styleable: int FontFamilyFont_font -com.google.android.gms.common.annotation.KeepName -com.google.android.material.R$styleable: int Constraint_barrierAllowsGoneWidgets -com.google.android.material.R$styleable: int MockView_mock_showLabel -com.google.android.material.slider.BaseSlider: void setSeparationUnit(int) -com.google.android.material.R$color: int mtrl_navigation_item_icon_tint -wangdaye.com.geometricweather.R$styleable: int Toolbar_android_minHeight -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 -androidx.appcompat.R$styleable: int StateListDrawable_android_enterFadeDuration -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemSummary(java.lang.String) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ListView_DropDown -james.adaptiveicon.R$color: int primary_text_disabled_material_dark -com.amap.api.location.APSService: void onCreate(android.content.Context) -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: java.lang.Object poll() -androidx.drawerlayout.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMarkTint -com.jaredrummler.android.colorpicker.R$style: int Preference_PreferenceScreen -androidx.preference.R$style: int Preference_DialogPreference_EditTextPreference -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_fontFamily -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Dialog -androidx.viewpager2.R$attr: int fontWeight -wangdaye.com.geometricweather.R$styleable: int Chip_showMotionSpec -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analogContainer_light -com.google.android.material.R$drawable: int ic_mtrl_chip_checked_black -com.google.android.material.R$styleable: int[] ActionMenuView -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource[],io.reactivex.functions.Function,int) -androidx.viewpager.R$styleable: int FontFamilyFont_android_ttcIndex -com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMarkTint -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetStartWithNavigation -androidx.fragment.R$id: int notification_background -com.turingtechnologies.materialscrollbar.R$id: int transition_layout_save -wangdaye.com.geometricweather.R$styleable: int LiveLockScreen_settingsActivity -com.jaredrummler.android.colorpicker.R$attr: int layoutManager -okhttp3.internal.http2.Http2Connection$PingRunnable: Http2Connection$PingRunnable(okhttp3.internal.http2.Http2Connection,boolean,int,int) -okio.Timeout: okio.Timeout clearDeadline() -androidx.appcompat.R$color: R$color() -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_track_color -androidx.work.impl.WorkManagerInitializer: WorkManagerInitializer() -androidx.preference.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -com.google.android.material.R$drawable: int abc_tab_indicator_material -android.didikee.donate.R$drawable: int abc_ratingbar_small_material -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeMinTextSize -androidx.appcompat.R$styleable: int[] MenuGroup -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitleTextColor -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property CityId -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast$Builder setLow(double) -androidx.recyclerview.widget.RecyclerView: boolean isLayoutSuppressed() -wangdaye.com.geometricweather.R$drawable: int ic_temperature_kelvin -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Colored -androidx.preference.R$drawable: int abc_ab_share_pack_mtrl_alpha -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableEnd -androidx.appcompat.R$drawable: int abc_ic_menu_cut_mtrl_alpha -wangdaye.com.geometricweather.R$string: int content_des_m3 -cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weatherservice.IWeatherProviderServiceClient mClient -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: AccuCurrentResult$Wind$Speed$Imperial() -com.xw.repo.bubbleseekbar.R$attr: int popupTheme -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathStart() -android.didikee.donate.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$color: int mtrl_filled_background_color -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow -androidx.appcompat.R$drawable: int abc_switch_track_mtrl_alpha -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void innerError(io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver,java.lang.Throwable) -androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getLogo() -androidx.hilt.R$id: int action_image -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State STARTED -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton -androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_begin -okhttp3.ConnectionPool: void evictAll() -io.reactivex.internal.util.VolatileSizeArrayList: java.util.List subList(int,int) -androidx.preference.R$styleable: int LinearLayoutCompat_android_orientation -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth -okio.GzipSource: void consumeTrailer() -com.google.android.material.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -com.google.android.material.appbar.HeaderBehavior: HeaderBehavior() -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconEndPadding -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -retrofit2.CallAdapter: java.lang.reflect.Type responseType() -wangdaye.com.geometricweather.R$attr: int unfold -androidx.constraintlayout.widget.R$styleable: int Constraint_android_elevation -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.Integer alti -wangdaye.com.geometricweather.R$styleable: int CardView_cardPreventCornerOverlap -androidx.preference.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -com.google.android.material.R$attr: int shapeAppearanceLargeComponent -androidx.appcompat.R$styleable: int ActionBarLayout_android_layout_gravity -okhttp3.internal.platform.AndroidPlatform: boolean api24IsCleartextTrafficPermitted(java.lang.String,java.lang.Class,java.lang.Object) -com.google.android.material.R$attr: int deltaPolarAngle -wangdaye.com.geometricweather.R$id: int chronometer -android.didikee.donate.R$id: int progress_circular -android.didikee.donate.R$attr: int buttonBarStyle -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.R$animator: int weather_thunder_1 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Tooltip -com.bumptech.glide.R$drawable: int notification_bg -androidx.appcompat.R$styleable: int ActionBar_indeterminateProgressStyle -com.google.android.material.R$styleable: int Chip_chipStrokeWidth -androidx.preference.R$styleable: int DrawerArrowToggle_arrowHeadLength -android.didikee.donate.R$id: int expanded_menu -wangdaye.com.geometricweather.R$styleable: int[] RecycleListView -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_2 -com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_pressed -com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_disabled_color -james.adaptiveicon.R$attr: int collapseIcon -okhttp3.internal.connection.ConnectionSpecSelector: boolean connectionFailed(java.io.IOException) -okhttp3.CertificatePinner$Pin: java.lang.String pattern -cyanogenmod.profiles.RingModeSettings: cyanogenmod.profiles.RingModeSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getUVDescription() -okhttp3.Response$Builder: okhttp3.Response priorResponse -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_disabled_material_light -okhttp3.internal.http2.Http2Writer: void close() -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.R$styleable: int Preference_android_dependency -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindDircEnd() -com.jaredrummler.android.colorpicker.R$id: int seekbar -com.amap.api.location.CoordinateConverter$CoordType -okio.SegmentedByteString: java.lang.String string(java.nio.charset.Charset) -com.turingtechnologies.materialscrollbar.R$id: int notification_background -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_rebuildResourceCache -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRelativeHumidity() -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: UnicastSubject$UnicastQueueDisposable(io.reactivex.subjects.UnicastSubject) -com.google.android.material.R$styleable: int[] ExtendedFloatingActionButton_Behavior_Layout -wangdaye.com.geometricweather.R$styleable: int AlertDialog_buttonPanelSideLayout -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setComponent(java.lang.String,java.lang.String) -androidx.appcompat.R$attr: int actionModeCloseDrawable -james.adaptiveicon.R$styleable: int RecycleListView_paddingBottomNoButtons -com.google.android.material.R$style: int Theme_Design_NoActionBar -com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context,android.util.AttributeSet) -androidx.work.R$bool: R$bool() -androidx.preference.R$style: int TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.R$string: int material_timepicker_hour -com.turingtechnologies.materialscrollbar.R$string: R$string() -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.ICMHardwareService sService -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource) -io.reactivex.Observable: io.reactivex.Observable never() -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mRingerMode -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -androidx.fragment.R$id: int text2 -androidx.activity.R$id: int right_icon -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog -wangdaye.com.geometricweather.R$id: int activity_weather_daily_container -com.google.android.material.R$styleable: int ActionBar_elevation -cyanogenmod.app.Profile: cyanogenmod.app.Profile fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_scaleY -cyanogenmod.themes.IThemeProcessingListener$Stub -androidx.preference.R$styleable: int AppCompatTheme_listMenuViewStyle -wangdaye.com.geometricweather.R$styleable: int[] SwitchCompat -com.google.android.material.slider.BaseSlider: void setFocusedThumbIndex(int) -okhttp3.OkHttpClient$Builder: void setInternalCache(okhttp3.internal.cache.InternalCache) -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: java.lang.String getMessage() -com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_DropDownUp -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onComplete() -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenManager getInstance(android.content.Context) -com.turingtechnologies.materialscrollbar.R$attr: int homeLayout -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetLeft -wangdaye.com.geometricweather.R$id: int TOP_END -androidx.preference.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_corner_radius_material -com.google.android.gms.common.Feature: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$attr: int animate_relativeTo -androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleTextColor -com.google.android.material.R$attr: int hideOnContentScroll -com.google.android.material.R$styleable: int Constraint_flow_verticalGap -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object readKey(android.database.Cursor,int) -com.xw.repo.bubbleseekbar.R$color: int secondary_text_disabled_material_dark -okhttp3.OkHttpClient$Builder: boolean followRedirects -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Title -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackInactiveTintList() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX getWind() -wangdaye.com.geometricweather.R$drawable: int notif_temp_89 -android.didikee.donate.R$dimen: int abc_action_button_min_height_material -androidx.lifecycle.extensions.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Indeterminate -androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory mFactory -androidx.preference.R$style: int Widget_AppCompat_CompoundButton_CheckBox -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontStyle -android.didikee.donate.R$dimen: int highlight_alpha_material_colored -wangdaye.com.geometricweather.db.entities.MinutelyEntity: MinutelyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean getPrecipitation() -cyanogenmod.weatherservice.WeatherProviderService: java.util.Set mWeakRequestsSet -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_125 -androidx.swiperefreshlayout.R$styleable: int[] FontFamily -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_inverse_material_dark -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.common.basic.GeoDialog -okhttp3.logging.LoggingEventListener -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State[] values() -com.xw.repo.bubbleseekbar.R$dimen: int notification_large_icon_width -androidx.constraintlayout.widget.R$string: int abc_activitychooserview_choose_application -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitationProbability -com.google.android.material.R$styleable: int[] ConstraintLayout_Layout -wangdaye.com.geometricweather.R$id: int action_context_bar -okio.ByteString: okio.ByteString md5() -com.bumptech.glide.integration.okhttp.R$id: int right_icon -okio.ByteString: okio.ByteString sha512() -androidx.activity.R$styleable: int GradientColor_android_gradientRadius -okio.GzipSource -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver parent -okhttp3.internal.http2.Http2Connection$Builder: boolean client -androidx.constraintlayout.widget.ConstraintLayout: void setMaxWidth(int) -com.jaredrummler.android.colorpicker.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -androidx.appcompat.widget.SearchView$SearchAutoComplete: void setImeVisibility(boolean) -wangdaye.com.geometricweather.R$style: int Base_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdwd -okhttp3.OkHttpClient$1: void addLenient(okhttp3.Headers$Builder,java.lang.String,java.lang.String) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void fail(java.lang.Throwable,io.reactivex.Observer,io.reactivex.internal.queue.SpscLinkedArrayQueue) -okhttp3.internal.cache.DiskLruCache: void completeEdit(okhttp3.internal.cache.DiskLruCache$Editor,boolean) -com.google.android.material.progressindicator.ProgressIndicator: void setLinearSeamless(boolean) -androidx.constraintlayout.widget.R$dimen: int notification_top_pad -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleGravity() -androidx.legacy.coreutils.R$attr: int fontStyle -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder httpOnly() -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: long serialVersionUID -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -wangdaye.com.geometricweather.R$color: int abc_search_url_text -okhttp3.internal.cache2.Relay$RelaySource: okio.Timeout timeout -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MOSTLY_CLOUDY_DAY -wangdaye.com.geometricweather.R$id: int dark -androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_min -wangdaye.com.geometricweather.R$color: int ripple_material_light -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer apparentTemperature -com.google.android.material.R$styleable: int Constraint_layout_constraintTag -retrofit2.DefaultCallAdapterFactory -androidx.preference.R$styleable: int AppCompatTheme_alertDialogCenterButtons -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$ItemAnimator getItemAnimator() -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: long index -com.google.android.material.R$attr: int layout_constraintCircle -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -retrofit2.ParameterHandler$Headers -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Id -com.google.android.material.slider.Slider: int getTrackSidePadding() -androidx.fragment.R$id: int tag_accessibility_heading -retrofit2.RequestFactory: boolean hasBody -com.google.gson.stream.JsonReader: java.lang.String nextString() -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node getHead() -okhttp3.internal.http2.Http2Codec: java.util.List http2HeadersList(okhttp3.Request) -wangdaye.com.geometricweather.common.basic.models.weather.Base: long updateTime -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_arrow -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingEnd -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: java.util.concurrent.atomic.AtomicInteger wip -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -com.amap.api.location.AMapLocationClient: void onDestroy() -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean done -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWeatherPhase() -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object set(int,java.lang.Object) -com.amap.api.location.AMapLocation: int describeContents() -androidx.appcompat.R$color: int bright_foreground_material_dark -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableLeft -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd -androidx.lifecycle.extensions.R$attr: int fontVariationSettings -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_SearchResult_Title -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.String toString() -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_checkableBehavior -cyanogenmod.app.Profile: void getXmlString(java.lang.StringBuilder,android.content.Context) -james.adaptiveicon.R$style: int TextAppearance_AppCompat -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit MM -com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_light -com.baidu.location.e.l$b: java.lang.String a(com.baidu.location.e.l$b,org.json.JSONObject) -androidx.core.R$dimen: int compat_control_corner_material -androidx.legacy.coreutils.R$attr: int alpha -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showColorShades -androidx.constraintlayout.widget.R$attr: int constraint_referenced_ids -okhttp3.internal.http2.Http2Reader$Handler: void rstStream(int,okhttp3.internal.http2.ErrorCode) -com.google.android.material.R$layout: int test_chip_zero_corner_radius -wangdaye.com.geometricweather.R$drawable: int design_snackbar_background -io.reactivex.Observable: io.reactivex.Single any(io.reactivex.functions.Predicate) -androidx.vectordrawable.R$id: int accessibility_custom_action_14 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ButtonBar -androidx.transition.R$drawable: int notification_action_background -com.google.android.material.R$styleable: int AppCompatTheme_dialogPreferredPadding -org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Iterable) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void error(java.lang.Throwable) -androidx.loader.R$layout: int notification_template_custom_big -james.adaptiveicon.R$attr: int logo -androidx.appcompat.R$string: int abc_menu_function_shortcut_label -wangdaye.com.geometricweather.R$layout: int item_trend_hourly -cyanogenmod.providers.CMSettings$Secure: java.lang.String KILL_APP_LONGPRESS_BACK -james.adaptiveicon.R$attr: int popupMenuStyle -james.adaptiveicon.R$styleable: int AppCompatTheme_editTextStyle -wangdaye.com.geometricweather.R$id: int item_weather_daily_overview_text -androidx.preference.R$attr: int progressBarStyle -androidx.constraintlayout.widget.R$styleable: int SearchView_suggestionRowLayout -androidx.work.ArrayCreatingInputMerger: ArrayCreatingInputMerger() -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_always_show_bubble_delay -com.google.android.material.R$styleable: int ActionMode_height -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection findConnection(int,int,int,int,boolean) -wangdaye.com.geometricweather.R$attr: int scrimVisibleHeightTrigger -okhttp3.internal.cache.DiskLruCache$Editor: okhttp3.internal.cache.DiskLruCache$Entry entry -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit getInstance(java.lang.String) -androidx.vectordrawable.R$dimen: int notification_large_icon_width -cyanogenmod.os.Build -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlHighlight -androidx.recyclerview.R$id: int tag_accessibility_actions -com.google.android.material.R$styleable: int Constraint_layout_constraintRight_toRightOf -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder certificatePinner(okhttp3.CertificatePinner) -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: long serialVersionUID -james.adaptiveicon.R$id: int notification_background -wangdaye.com.geometricweather.R$dimen: int abc_dialog_padding_top_material -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_card -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: AccuLocationResult$GeoPosition$Elevation$Metric() -com.google.android.material.circularreveal.CircularRevealRelativeLayout: CircularRevealRelativeLayout(android.content.Context,android.util.AttributeSet) -okhttp3.internal.http.RequestLine -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_summaryOff -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_switchTextOff -androidx.constraintlayout.widget.R$dimen: int tooltip_vertical_padding -com.google.android.material.R$styleable: int[] MaterialTextAppearance -com.google.android.material.R$attr: int motion_postLayoutCollision -com.jaredrummler.android.colorpicker.R$attr: int actionModePopupWindowStyle -okhttp3.CacheControl: int minFreshSeconds -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_adjustable -com.xw.repo.bubbleseekbar.R$layout: int support_simple_spinner_dropdown_item -cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.ICMStatusBarManager mStatusBarService -wangdaye.com.geometricweather.R$attr: int toolbarId -androidx.preference.R$styleable: int[] EditTextPreference -com.google.android.material.R$id: int square -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int otherState -wangdaye.com.geometricweather.R$style: int material_card -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String RINGTONE -retrofit2.KotlinExtensions$await$2$2: void onResponse(retrofit2.Call,retrofit2.Response) -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onComplete() -androidx.constraintlayout.widget.R$id: int text2 -com.google.android.material.slider.Slider: void setHaloTintList(android.content.res.ColorStateList) -androidx.preference.R$style: int Preference_DropDown_Material -wangdaye.com.geometricweather.R$drawable: int weather_rain_1 -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerColor -okio.Buffer: okio.Buffer writeString(java.lang.String,int,int,java.nio.charset.Charset) -okhttp3.internal.connection.StreamAllocation: boolean $assertionsDisabled -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language KOREAN -androidx.appcompat.widget.ScrollingTabContainerView: void setContentHeight(int) -com.amap.api.location.AMapLocation: int d(com.amap.api.location.AMapLocation,int) -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -okio.DeflaterSink: void finishDeflate() -com.jaredrummler.android.colorpicker.R$attr: int cpv_dialogTitle -androidx.appcompat.R$color: int notification_icon_bg_color -com.xw.repo.bubbleseekbar.R$attr: int bsb_track_color -retrofit2.Response: retrofit2.Response success(java.lang.Object,okhttp3.Headers) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -com.google.android.material.R$attr: int listChoiceIndicatorSingleAnimated -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: MfWarningsResult$WarningComments() -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit getInstance(java.lang.String) -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endX -androidx.constraintlayout.widget.R$drawable: int abc_action_bar_item_background_material -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_queryHint -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int so2 -android.didikee.donate.R$layout: int abc_list_menu_item_layout -androidx.constraintlayout.widget.R$styleable: int[] Motion -okhttp3.internal.cache.DiskLruCache$Entry: long[] lengths -okhttp3.internal.connection.RealConnection: boolean supportsUrl(okhttp3.HttpUrl) -wangdaye.com.geometricweather.R$attr: int cpv_showAlphaSlider -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_textLocale -com.google.android.material.R$attr: int textAppearanceSubtitle1 -androidx.preference.R$styleable: int ViewStubCompat_android_inflatedId -okio.ByteString: okio.ByteString of(java.nio.ByteBuffer) -androidx.appcompat.widget.AppCompatImageView: android.content.res.ColorStateList getSupportImageTintList() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogStyle -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type TOP -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver -androidx.constraintlayout.widget.R$id: int right_side -com.google.android.material.R$styleable: int Constraint_layout_goneMarginEnd -com.google.android.material.badge.BadgeDrawable$SavedState -com.jaredrummler.android.colorpicker.R$dimen: int notification_top_pad -org.greenrobot.greendao.AbstractDao: boolean isEntityUpdateable() -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_border_width -androidx.lifecycle.SingleGeneratedAdapterObserver: SingleGeneratedAdapterObserver(androidx.lifecycle.GeneratedAdapter) -androidx.fragment.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.R$dimen: int widget_grid_1 -com.amap.api.location.UmidtokenInfo: long e -retrofit2.ParameterHandler$QueryMap -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_DOTS -wangdaye.com.geometricweather.R$drawable: int weather_fog_pixel -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endColor -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorPrimaryDark -cyanogenmod.providers.CMSettings$Secure: java.lang.String LIVE_DISPLAY_COLOR_MATRIX -androidx.recyclerview.widget.RecyclerView: boolean getPreserveFocusAfterLayout() -androidx.viewpager.R$styleable: int[] FontFamilyFont -com.google.android.material.R$layout: int design_bottom_navigation_item -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableStart -androidx.constraintlayout.widget.R$styleable: int KeyPosition_sizePercent -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPublishDate(java.util.Date) -androidx.preference.R$attr: int actionButtonStyle -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour WRAP_CONTENT -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog -androidx.preference.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$drawable: int ic_keyboard_black_24dp -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: java.lang.Integer max -wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendDailyProvider -okhttp3.internal.http2.Hpack$Reader: int nextHeaderIndex -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int DRIZZLE -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarStyle -com.google.gson.internal.LazilyParsedNumber: int intValue() -james.adaptiveicon.AdaptiveIconView: void setIcon(james.adaptiveicon.AdaptiveIcon) -com.google.android.gms.common.SignInButton: SignInButton(android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindSpeedStart(java.lang.String) -androidx.preference.R$id: int accessibility_custom_action_31 -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Tooltip -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getResPkg() -okio.InflaterSource: boolean refill() -androidx.drawerlayout.widget.DrawerLayout: android.graphics.drawable.Drawable getStatusBarBackgroundDrawable() -com.jaredrummler.android.colorpicker.R$attr: int spinBars -io.reactivex.internal.disposables.CancellableDisposable: boolean isDisposed() -cyanogenmod.app.suggest.AppSuggestManager: AppSuggestManager(android.content.Context) -androidx.constraintlayout.widget.R$style: int Base_V22_Theme_AppCompat -androidx.appcompat.R$attr: int actionModeFindDrawable -okio.Okio: java.util.logging.Logger logger -cyanogenmod.providers.CMSettings$System: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int[] StateListDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric -com.google.android.material.R$styleable: int AppCompatTheme_alertDialogCenterButtons -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type ownerType -androidx.constraintlayout.widget.R$attr: int subMenuArrow -okhttp3.OkHttpClient: int callTimeoutMillis() -com.google.android.material.textfield.TextInputEditText: void setTextInputLayoutFocusedRectEnabled(boolean) -com.google.android.material.R$attr: int titleTextAppearance -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginTop -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) -cyanogenmod.providers.CMSettings$System$3: CMSettings$System$3() -io.reactivex.internal.schedulers.ScheduledRunnable: long serialVersionUID -androidx.cardview.R$style: int CardView -android.didikee.donate.R$attr: int colorControlHighlight -okio.Okio$3: void close() -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.R$attr: int behavior_halfExpandedRatio -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf -androidx.lifecycle.FullLifecycleObserverAdapter: FullLifecycleObserverAdapter(androidx.lifecycle.FullLifecycleObserver,androidx.lifecycle.LifecycleEventObserver) -androidx.hilt.work.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: MfRainResult() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onFailed() -okhttp3.internal.Internal: okhttp3.internal.connection.StreamAllocation streamAllocation(okhttp3.Call) -wangdaye.com.geometricweather.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List phenomenonsItems -wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_borderColor -okhttp3.internal.cache.CacheInterceptor: okhttp3.Headers combine(okhttp3.Headers,okhttp3.Headers) -okhttp3.Request: okhttp3.RequestBody body() -androidx.viewpager2.widget.ViewPager2: void setLayoutDirection(int) -androidx.legacy.coreutils.R$drawable: int notification_template_icon_bg -com.google.android.material.R$attr: int enforceTextAppearance -com.google.android.material.R$attr: int transitionShapeAppearance -wangdaye.com.geometricweather.R$dimen: int mtrl_fab_translation_z_hovered_focused -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customFloatValue -androidx.dynamicanimation.R$integer -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogStyle -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setDeviceModeDistanceFilter(float) -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration precipitationDuration -cyanogenmod.app.ThemeVersion$ComponentVersion: int getMinVersion() -com.bumptech.glide.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconSize -cyanogenmod.weather.ICMWeatherManager$Stub: android.os.IBinder asBinder() -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: int TRANSACTION_createExternalView_0 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -androidx.preference.R$dimen: int abc_progress_bar_height_material -com.google.android.material.R$dimen: int abc_action_bar_elevation_material -cyanogenmod.weather.RequestInfo: java.lang.String toString() -okhttp3.Response: okhttp3.ResponseBody peekBody(long) -wangdaye.com.geometricweather.R$attr: int pathMotionArc -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMark -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: boolean isDisposed() -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.Observer downstream -androidx.appcompat.R$drawable: int abc_text_select_handle_left_mtrl_light -wangdaye.com.geometricweather.R$string: int character_counter_pattern -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: KeyguardExternalViewProviderService$Provider$ProviderImpl$9(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,int,int,int,int,boolean,android.graphics.Rect) -wangdaye.com.geometricweather.R$id: int uniform -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light -androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context,android.util.AttributeSet,int) -okhttp3.Response: okhttp3.Response cacheResponse -androidx.appcompat.widget.AppCompatRadioButton: void setSupportButtonTintList(android.content.res.ColorStateList) -cyanogenmod.app.CustomTile: java.lang.String label -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$attr: int errorEnabled -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_holo_light -androidx.appcompat.R$id: int accessibility_custom_action_10 -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: long serialVersionUID -com.google.android.material.R$styleable: int AppCompatTheme_actionBarPopupTheme -com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_toRightOf -android.didikee.donate.R$color: int accent_material_light -com.turingtechnologies.materialscrollbar.R$id: int snackbar_text -androidx.dynamicanimation.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$color: int design_dark_default_color_error -com.google.android.material.bottomappbar.BottomAppBar: float getCradleVerticalOffset() -okhttp3.internal.http1.Http1Codec$ChunkedSink -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findJvmPlatform() -com.github.rahatarmanahmed.cpv.CircularProgressView: float maxProgress -cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,int,int) -com.google.android.material.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -com.google.android.material.R$attr: int duration -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onBouncerShowing(boolean) -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_HOME_DOUBLE_TAP_ACTION -com.bumptech.glide.integration.okhttp.R$string -io.reactivex.internal.observers.DeferredScalarDisposable: void complete(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int ic_eye -androidx.core.R$drawable -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_seekbar_material -androidx.recyclerview.R$id: int notification_main_column -wangdaye.com.geometricweather.R$font: int product_sans_bold_italic -wangdaye.com.geometricweather.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$string: int wind -com.bumptech.glide.R$styleable: int[] FontFamily -com.google.android.material.R$attr: int layout_constraintGuide_percent -wangdaye.com.geometricweather.R$drawable: int notif_temp_87 -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_15 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr -android.support.v4.os.IResultReceiver$Stub: boolean setDefaultImpl(android.support.v4.os.IResultReceiver) -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: ResultObservable$ResultObserver(io.reactivex.Observer) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeDegreeDayTemperature -com.google.android.material.R$styleable: int KeyAttribute_android_translationZ -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long count -wangdaye.com.geometricweather.R$string: int content_des_no2 -com.turingtechnologies.materialscrollbar.R$attr: int itemIconTint -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int getMainTextColorResId() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_toLeftOf -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListPopupWindow -okhttp3.internal.cache.DiskLruCache$Editor: boolean done -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: LiveDataReactiveStreams$PublisherLiveData(org.reactivestreams.Publisher) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_dividerPadding -com.google.android.material.R$styleable: int Constraint_flow_firstHorizontalBias -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.internal.util.AtomicThrowable errors -androidx.work.R$layout: int notification_template_custom_big -com.google.android.material.slider.BaseSlider: void removeOnSliderTouchListener(com.google.android.material.slider.BaseOnSliderTouchListener) -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_borderWidth -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean isEmpty() -androidx.coordinatorlayout.R$id: int normal -androidx.preference.R$drawable: int notification_template_icon_low_bg -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: java.lang.Object poll() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_tintMode -wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity -android.didikee.donate.R$styleable: int SwitchCompat_track -com.jaredrummler.android.colorpicker.R$anim: int abc_shrink_fade_out_from_bottom -androidx.appcompat.R$attr: int subtitleTextColor -okio.GzipSource: okio.Timeout timeout() -james.adaptiveicon.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult -com.xw.repo.bubbleseekbar.R$id: int scrollView -wangdaye.com.geometricweather.R$attr: int flow_lastHorizontalStyle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -com.google.android.material.R$styleable: int Constraint_layout_constraintTop_creator -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: AccuAlertResult$Color() -retrofit2.BuiltInConverters$RequestBodyConverter: java.lang.Object convert(java.lang.Object) -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView -wangdaye.com.geometricweather.R$id: int container -wangdaye.com.geometricweather.R$drawable: int mtrl_tabs_default_indicator -androidx.preference.R$color: int abc_primary_text_disable_only_material_light -okio.AsyncTimeout$Watchdog: AsyncTimeout$Watchdog() -com.google.android.material.button.MaterialButtonToggleGroup: void setGeneratedIdIfNeeded(com.google.android.material.button.MaterialButton) -android.didikee.donate.R$layout: int abc_action_mode_bar -androidx.lifecycle.Lifecycle: Lifecycle() -com.turingtechnologies.materialscrollbar.R$styleable: int[] ChipGroup -com.google.android.material.R$id: int expand_activities_button -cyanogenmod.externalviews.ExternalViewProviderService$1: ExternalViewProviderService$1(cyanogenmod.externalviews.ExternalViewProviderService) -wangdaye.com.geometricweather.R$styleable: int SignInButton_colorScheme -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_android_minHeight -okhttp3.RequestBody$2: okhttp3.MediaType contentType() -com.google.android.material.R$styleable: int[] MotionLayout -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetEnd -androidx.preference.R$id: int textSpacerNoButtons -com.google.gson.stream.JsonReader: java.io.IOException syntaxError(java.lang.String) -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void replayFinal() -androidx.fragment.R$id: int italic -com.google.android.material.R$styleable: int MaterialCardView_shapeAppearance -androidx.appcompat.R$attr: int showDividers -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabView -okio.ByteString: okio.ByteString hmacSha256(okio.ByteString) -cyanogenmod.profiles.LockSettings: LockSettings() -androidx.work.BackoffPolicy: androidx.work.BackoffPolicy[] values() -com.google.android.material.R$attr: int closeIconEndPadding -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf -com.google.android.material.R$attr: int tabGravity -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_3 -com.google.android.material.R$styleable: int MenuView_android_itemBackground -okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.Request request -androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontStyle -androidx.preference.R$attr: int layoutManager -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert -androidx.hilt.R$style: int TextAppearance_Compat_Notification -cyanogenmod.app.CustomTile$Builder: boolean mSensitiveData -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: java.lang.Object item -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: double gust -wangdaye.com.geometricweather.common.basic.models.weather.Base: long getTimeStamp() -androidx.viewpager.R$attr: int fontVariationSettings -com.google.android.material.slider.BaseSlider: float getThumbElevation() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.converters.WeatherSourceConverter weatherSourceConverter -okio.HashingSink: HashingSink(okio.Sink,java.lang.String) -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context) -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Small -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onComplete() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_motionStagger -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableStart -android.didikee.donate.R$string: int abc_searchview_description_clear -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability -okhttp3.internal.cache.CacheStrategy$Factory -androidx.constraintlayout.widget.R$styleable: int ActionBar_progressBarStyle -okio.RealBufferedSink: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) -cyanogenmod.providers.ThemesContract$MixnMatchColumns -com.google.android.material.R$style: int TextAppearance_AppCompat_Subhead -android.didikee.donate.R$attr: int titleMarginTop -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitationProbability -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onComplete() -androidx.preference.R$styleable: int[] AppCompatTheme -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setHeadIconType(java.lang.String) -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_CREATE -androidx.hilt.lifecycle.R$attr: int fontProviderAuthority -android.didikee.donate.R$styleable: int Spinner_android_popupBackground -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.hilt.R$dimen: int compat_button_padding_vertical_material -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -androidx.appcompat.R$attr: int actionModePasteDrawable -com.autonavi.aps.amapapi.model.AMapLocationServer: org.json.JSONObject l -retrofit2.adapter.rxjava2.Result: retrofit2.adapter.rxjava2.Result error(java.lang.Throwable) -androidx.core.graphics.drawable.IconCompatParcelizer: IconCompatParcelizer() -retrofit2.OkHttpCall$1: retrofit2.OkHttpCall this$0 -com.google.android.gms.common.internal.BinderWrapper -io.reactivex.Observable: io.reactivex.Observable switchOnNextDelayError(io.reactivex.ObservableSource,int) -okhttp3.internal.platform.ConscryptPlatform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) -com.google.android.material.R$styleable: int Layout_layout_goneMarginEnd -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationY -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void subscribeNext() -james.adaptiveicon.R$attr: int subtitleTextAppearance -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void drain() -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: java.lang.Object v2 -io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.fuseable.SimpleQueue queue -androidx.appcompat.widget.ActionBarContextView: void setVisibility(int) -james.adaptiveicon.R$styleable: int ViewStubCompat_android_inflatedId -com.turingtechnologies.materialscrollbar.R$drawable: int notification_template_icon_low_bg -com.google.android.material.R$styleable: int Constraint_visibilityMode -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: boolean done -okhttp3.internal.http.HttpHeaders: long contentLength(okhttp3.Response) -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose -androidx.work.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: double Value -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onNext(java.lang.Object) -androidx.appcompat.R$layout: int abc_list_menu_item_radio -com.google.android.material.R$attr: int materialAlertDialogTitleIconStyle -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_16 -com.google.android.material.R$styleable: int DrawerArrowToggle_gapBetweenBars -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.functions.Function mapper -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent OVERLAY -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$attr: int onPositiveCross -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginEnd -com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Light -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$styleable: int MaterialShape_shapeAppearance -androidx.constraintlayout.widget.R$attr: int deltaPolarRadius -com.google.android.gms.common.data.BitmapTeleporter: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX -okhttp3.internal.connection.RouteSelector: void resetNextProxy(okhttp3.HttpUrl,java.net.Proxy) -wangdaye.com.geometricweather.R$attr: int textAppearanceLargePopupMenu -com.google.android.material.R$attr: int layout_collapseMode -wangdaye.com.geometricweather.R$attr: int buttonBarStyle -com.google.gson.LongSerializationPolicy$1 -com.bumptech.glide.R$id: int right -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getType() -androidx.constraintlayout.widget.R$styleable: int[] AppCompatSeekBar -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeCloudCover -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context,android.util.AttributeSet,int) -com.xw.repo.bubbleseekbar.R$layout: int abc_expanded_menu_layout -com.turingtechnologies.materialscrollbar.R$color: int background_floating_material_dark -com.xw.repo.bubbleseekbar.R$color: int material_grey_600 -androidx.customview.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: double Value -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorBackgroundFloating -cyanogenmod.weather.WeatherInfo: double access$802(cyanogenmod.weather.WeatherInfo,double) -androidx.appcompat.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.transformation.TransformationChildLayout -cyanogenmod.providers.CMSettings$System: boolean putFloat(android.content.ContentResolver,java.lang.String,float) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.lang.String accuracy -androidx.vectordrawable.R$styleable: int ColorStateListItem_alpha -cyanogenmod.externalviews.ExternalView: void setProviderComponent(android.content.ComponentName) -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection connection() -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onNext(java.lang.Object) -androidx.preference.R$attr: int homeLayout -com.jaredrummler.android.colorpicker.R$id: int default_activity_button -androidx.preference.R$styleable: int SwitchPreference_android_switchTextOff -com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_PrimarySurface -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.Map lefts -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: int UnitType -androidx.viewpager.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$attr: int liftOnScrollTargetViewId -com.google.android.material.R$id: int accessibility_custom_action_3 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstVerticalBias -androidx.appcompat.R$styleable: int AppCompatTheme_colorControlHighlight -com.amap.api.location.AMapLocationClientOption$GeoLanguage: AMapLocationClientOption$GeoLanguage(java.lang.String,int) -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderFetchStrategy -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Borderless_Colored -androidx.vectordrawable.animated.R$attr: R$attr() -androidx.appcompat.resources.R$id: int blocking -wangdaye.com.geometricweather.R$id: int date_picker_actions -com.google.android.material.R$attr: int actionOverflowMenuStyle -io.reactivex.internal.observers.InnerQueuedObserver: long serialVersionUID -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: AccuCurrentResult$PressureTendency() -okio.RealBufferedSource: long indexOf(byte,long,long) -cyanogenmod.themes.ThemeManager$ThemeProcessingListener: void onFinishedProcessing(java.lang.String) -com.google.android.material.R$attr: int buttonPanelSideLayout -com.bumptech.glide.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String LongPhrase -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_state_list_animator -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VClipPath -com.google.android.material.R$id: int listMode -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String province -androidx.preference.R$attr: int buttonCompat -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -androidx.appcompat.R$styleable: int AppCompatTheme_selectableItemBackground -androidx.lifecycle.ProcessLifecycleOwner: boolean mPauseSent -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableBottomCompat -androidx.hilt.work.R$string: int status_bar_notification_info_overflow -com.turingtechnologies.materialscrollbar.R$anim: R$anim() -androidx.hilt.lifecycle.R$id: int icon -com.google.android.material.snackbar.SnackbarContentLayout: void setMaxInlineActionWidth(int) -androidx.constraintlayout.widget.R$color: int primary_text_disabled_material_dark -wangdaye.com.geometricweather.common.ui.transitions.RoundCornerTransition -james.adaptiveicon.R$color: int abc_hint_foreground_material_light -androidx.preference.R$styleable: int SearchView_layout -androidx.hilt.work.R$id: int accessibility_custom_action_23 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String weather -androidx.coordinatorlayout.R$id: int tag_transition_group -james.adaptiveicon.R$attr: int initialActivityCount -wangdaye.com.geometricweather.R$id: int item_about_translator_flag -io.reactivex.Observable: io.reactivex.Observable scanWith(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: int requestFusion(int) -com.google.android.material.R$drawable: int abc_list_divider_material -wangdaye.com.geometricweather.main.dialogs.BackgroundLocationDialog: BackgroundLocationDialog() -com.jaredrummler.android.colorpicker.R$attr: int seekBarIncrement -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_default -com.amap.api.location.AMapLocationClientOption$1: java.lang.Object createFromParcel(android.os.Parcel) -com.google.android.material.R$color: int material_cursor_color -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setTextColor(int) -androidx.appcompat.R$attr: int autoSizeTextType -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_switchPreferenceStyle -com.turingtechnologies.materialscrollbar.R$id: int title_template -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: long EpochDateTime -james.adaptiveicon.R$styleable: int AppCompatTextView_fontFamily -wangdaye.com.geometricweather.R$drawable: int ic_github -com.google.android.material.R$attr: int drawPath -com.jaredrummler.android.colorpicker.R$string: int abc_action_mode_done -cyanogenmod.app.ILiveLockScreenManager: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -wangdaye.com.geometricweather.R$drawable: int abc_text_cursor_material -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetTop -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitle -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_colorShape -androidx.swiperefreshlayout.R$dimen: int notification_main_column_padding_top -okhttp3.internal.http2.Huffman$Node: okhttp3.internal.http2.Huffman$Node[] children -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickActiveTintList() -com.amap.api.location.LocationManagerBase: void startLocation() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetTop -android.didikee.donate.R$styleable: int SearchView_android_maxWidth -com.google.android.material.R$attr: int cardCornerRadius -wangdaye.com.geometricweather.R$layout: int widget_week_3 -okhttp3.internal.cache2.Relay: long FILE_HEADER_SIZE -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.bumptech.glide.load.engine.GlideException: java.lang.String getMessage() -com.google.android.material.R$attr: int fontProviderQuery -com.xw.repo.bubbleseekbar.R$attr: int panelMenuListTheme -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_PORTRAIT -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatHoveredFocusedTranslationZ(float) -cyanogenmod.providers.CMSettings: java.lang.String ACTION_DATA_USAGE -com.google.android.material.R$id: int labelGroup -okhttp3.Response$Builder: void checkSupportResponse(java.lang.String,okhttp3.Response) -cyanogenmod.app.suggest.AppSuggestManager -okhttp3.internal.http2.Hpack: okio.ByteString checkLowercase(okio.ByteString) -com.google.gson.internal.LinkedTreeMap: int size() -com.turingtechnologies.materialscrollbar.R$styleable: int View_android_focusable -io.reactivex.observers.DisposableObserver: boolean isDisposed() -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_unregisterWeatherServiceProviderChangeListener -androidx.vectordrawable.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean hasKey(java.lang.Object) -com.google.android.material.datepicker.MaterialTextInputPicker: MaterialTextInputPicker() -com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_DropDownUp -com.jaredrummler.android.colorpicker.R$id: int notification_background -okhttp3.internal.http2.Http2Codec: okhttp3.internal.http2.Http2Stream stream -androidx.preference.R$attr: int dividerVertical -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable,int) -cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.StatusBarPanelCustomTile clone() -com.google.android.material.R$styleable: int ConstraintSet_layout_editor_absoluteX -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.List getDefense() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPopupWindowStyle -androidx.preference.R$attr: int actionOverflowButtonStyle -wangdaye.com.geometricweather.R$styleable: int[] Badge -james.adaptiveicon.R$styleable: int SwitchCompat_switchPadding -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setHourText(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.List AirAndPollen -androidx.loader.R$string: R$string() -wangdaye.com.geometricweather.R$color: int background_floating_material_dark -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_OFF_VALIDATOR -org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType valueOf(java.lang.String) -androidx.preference.R$id: int search_plate -androidx.appcompat.R$styleable: int AppCompatTextView_drawableStartCompat -androidx.viewpager.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice -androidx.viewpager2.R$id: int forever -android.didikee.donate.R$styleable: int[] AppCompatTextView -wangdaye.com.geometricweather.R$attr: int checked -androidx.appcompat.R$styleable: int AppCompatTheme_switchStyle -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipMinHeight -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableTop -androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_1_material -com.amap.api.fence.GeoFence: void setPointList(java.util.List) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: MfHistoryResult$History$Snow() -androidx.constraintlayout.widget.R$attr: int autoSizeMinTextSize -cyanogenmod.externalviews.KeyguardExternalView: void unregisterKeyguardExternalViewCallback(cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks) -com.amap.api.fence.GeoFence: java.util.List getPointList() -androidx.appcompat.widget.Toolbar: void setSubtitle(java.lang.CharSequence) -wangdaye.com.geometricweather.R$attr: int flow_verticalAlign -com.xw.repo.bubbleseekbar.R$attr: int actionBarItemBackground -androidx.core.view.GestureDetectorCompat -com.jaredrummler.android.colorpicker.R$id: int none -com.jaredrummler.android.colorpicker.R$style: int Base_V23_Theme_AppCompat_Light -com.jaredrummler.android.colorpicker.R$styleable: int[] PopupWindowBackgroundState -wangdaye.com.geometricweather.db.entities.DailyEntity: void setHoursOfSun(float) -wangdaye.com.geometricweather.R$attr: int useSimpleSummaryProvider -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_top_material -cyanogenmod.themes.ThemeManager: ThemeManager(android.content.Context) -com.bumptech.glide.R$styleable: int FontFamily_fontProviderQuery -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog_MinWidth -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Today -wangdaye.com.geometricweather.common.basic.models.weather.UV: boolean isValid() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: AccuCurrentResult$LocalSource() -com.google.android.material.R$style: int Widget_AppCompat_Spinner_DropDown -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display4 -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noTransform() -okio.SegmentPool: okio.Segment next -android.didikee.donate.R$attr: int titleMargin -retrofit2.BuiltInConverters$ToStringConverter: java.lang.String convert(java.lang.Object) -wangdaye.com.geometricweather.location.services.LocationService: android.app.Notification getLocationNotification(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int[] MaterialAlertDialog -com.google.android.material.R$attr: int layout_constraintDimensionRatio -org.greenrobot.greendao.AbstractDao: java.lang.Object readKey(android.database.Cursor,int) -androidx.preference.R$string: int abc_menu_function_shortcut_label -com.google.android.material.snackbar.BaseTransientBottomBar$Behavior: BaseTransientBottomBar$Behavior() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindDirection -androidx.work.impl.WorkManagerInitializer -james.adaptiveicon.R$color: int button_material_light -com.google.android.material.R$attr: int region_widthLessThan -cyanogenmod.providers.CMSettings$System: java.lang.String SYSTEM_PROFILES_ENABLED -android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Dialog -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getWeatherText() -androidx.preference.R$styleable: int AppCompatTheme_panelMenuListWidth -cyanogenmod.providers.CMSettings$Global: boolean putFloat(android.content.ContentResolver,java.lang.String,float) -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableItem_android_drawable -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLocationMode(com.amap.api.location.AMapLocationClientOption$AMapLocationMode) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: io.reactivex.functions.Action onOverflow -androidx.recyclerview.R$integer: int status_bar_notification_info_maxnum -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_NoActionBar_Bridge -com.loc.k: java.lang.String b() -com.google.android.material.R$styleable: int SearchView_searchHintIcon -androidx.customview.R$layout: int notification_template_icon_group -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_touch_to_seek -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow Snow -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Button -okhttp3.internal.http2.Http2Reader: okhttp3.internal.http2.Http2Reader$ContinuationSource continuation -androidx.lifecycle.extensions.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_content_inset_material -wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment: ServiceProviderSettingsFragment() -com.xw.repo.bubbleseekbar.R$attr: int searchViewStyle -androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getCardName(android.content.Context) -com.jaredrummler.android.colorpicker.R$dimen: int notification_action_text_size -com.bumptech.glide.load.engine.GlideException: void setOrigin(java.lang.Exception) -james.adaptiveicon.R$styleable: int ActionBar_navigationMode -okhttp3.internal.platform.ConscryptPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -cyanogenmod.app.CustomTile$ExpandedStyle: int GRID_STYLE -okhttp3.RequestBody$3: okhttp3.MediaType val$contentType -android.didikee.donate.R$color: int abc_tint_spinner -com.jaredrummler.android.colorpicker.R$attr: int maxButtonHeight -okio.Buffer: int hashCode() -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_disableDependentsState -okhttp3.internal.proxy.NullProxySelector -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat -com.google.android.material.R$styleable: int ConstraintSet_android_scaleX -androidx.lifecycle.SavedStateHandle$1 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm25(java.lang.String) -androidx.preference.R$drawable: int abc_list_selector_background_transition_holo_light -androidx.preference.R$dimen: int abc_button_padding_vertical_material -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.R$dimen: int tooltip_margin -androidx.preference.R$styleable: int[] SeekBarPreference -com.google.android.material.chip.Chip: void setCloseIconSize(float) -com.google.android.material.textfield.TextInputLayout: void setSuffixTextAppearance(int) -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_height_material -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.core.R$id: int action_container -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Subhead -cyanogenmod.weather.WeatherLocation: java.lang.String mPostal -androidx.lifecycle.extensions.R$id: int async -com.google.android.material.R$styleable: int Layout_layout_editor_absoluteY -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_middle_mtrl_light -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: boolean isDisposed() -com.google.android.material.slider.BaseSlider: void setHaloTintList(android.content.res.ColorStateList) -androidx.work.impl.utils.futures.DirectExecutor -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.R$string: int feedback_today_precipitation_alert -com.xw.repo.bubbleseekbar.R$integer: R$integer() -com.google.android.material.R$styleable: int Toolbar_titleMarginTop -com.jaredrummler.android.colorpicker.R$styleable: int Preference_widgetLayout -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_auto_adjust_section_mark -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -cyanogenmod.profiles.BrightnessSettings: void readFromParcel(android.os.Parcel) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void trimHead() -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver otherObserver -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_enterFadeDuration -androidx.cardview.widget.CardView: void setCardElevation(float) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: java.util.concurrent.atomic.AtomicReference queue -androidx.preference.R$anim: R$anim() -wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_top_material -wangdaye.com.geometricweather.R$integer: int mtrl_calendar_year_selector_span -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getCo() -androidx.appcompat.R$id: int accessibility_custom_action_0 -com.google.android.material.slider.RangeSlider: void setHaloRadiusResource(int) -okio.Buffer$2: void close() -okhttp3.HttpUrl: java.net.URI uri() -com.jaredrummler.android.colorpicker.R$style: int Base_V23_Theme_AppCompat -com.jaredrummler.android.colorpicker.R$attr: int colorPrimaryDark -cyanogenmod.power.IPerformanceManager$Stub$Proxy: void cpuBoost(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String getDefenseIcon() -androidx.recyclerview.R$style: R$style() -wangdaye.com.geometricweather.R$animator: int weather_rain_1 -androidx.recyclerview.R$attr: int fontVariationSettings -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA -com.turingtechnologies.materialscrollbar.R$color: int material_grey_850 -androidx.appcompat.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Priority -androidx.lifecycle.LifecycleRegistry$1 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer uvIndex -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitationDuration -androidx.constraintlayout.widget.R$styleable: int OnClick_clickAction -io.reactivex.internal.disposables.ArrayCompositeDisposable: long serialVersionUID -cyanogenmod.weather.WeatherLocation$1: cyanogenmod.weather.WeatherLocation[] newArray(int) -wangdaye.com.geometricweather.R$attr: int cornerFamilyTopRight -android.didikee.donate.R$dimen: int abc_list_item_padding_horizontal_material -wangdaye.com.geometricweather.R$attr: int itemSpacing -androidx.constraintlayout.widget.R$color: int abc_btn_colored_text_material -cyanogenmod.externalviews.ExternalView: void executeQueue() -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Subtitle1 -wangdaye.com.geometricweather.R$id: int widget_remote -androidx.appcompat.R$styleable: int GradientColor_android_startColor -com.google.android.gms.common.server.response.zal -okhttp3.internal.http.StatusLine -androidx.constraintlayout.utils.widget.ImageFilterView: void setRoundPercent(float) -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_activated_mtrl_alpha -cyanogenmod.app.CustomTile$ExpandedItem: void writeToParcel(android.os.Parcel,int) -androidx.recyclerview.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.R$styleable: int State_android_id -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display2 -okhttp3.internal.http1.Http1Codec: void flushRequest() -cyanogenmod.app.CustomTile$ExpandedStyle: void internalSetExpandedItems(java.util.ArrayList) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getRotation() -james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_CheckBox -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginLeft -androidx.lifecycle.LiveData: java.lang.Object getValue() -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy ERROR -androidx.swiperefreshlayout.R$id: int chronometer -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_toTopOf -com.google.android.material.R$color: int dim_foreground_material_light -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_homeAsUpIndicator -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_percent -com.google.android.material.R$attr: int buttonBarStyle -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Caption -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: android.os.IBinder asBinder() -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void setDisposable(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorError -androidx.appcompat.R$styleable: int AppCompatTheme_dividerVertical -androidx.dynamicanimation.R$attr: int fontProviderAuthority -androidx.preference.R$attr: int order -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getDefaultLiveLockScreen -cyanogenmod.providers.CMSettings$Secure$1 -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_disabled_holo_light -android.didikee.donate.R$id: R$id() -io.reactivex.internal.observers.InnerQueuedObserver: void setDone() -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode INTERNAL_ERROR -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CUSTOM_ENABLE -androidx.appcompat.widget.Toolbar$SavedState -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onNext(java.lang.Object) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Menu -com.google.android.material.R$dimen: int mtrl_calendar_navigation_bottom_padding -androidx.preference.R$attr: int switchStyle -wangdaye.com.geometricweather.R$color: int colorRootDark -okhttp3.Authenticator: okhttp3.Request authenticate(okhttp3.Route,okhttp3.Response) -com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context) -androidx.lifecycle.GeneratedAdapter: void callMethods(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,boolean,androidx.lifecycle.MethodCallsLogger) -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_min_height -okhttp3.internal.io.FileSystem$1: void deleteContents(java.io.File) -wangdaye.com.geometricweather.R$layout: int widget_clock_day_rectangle -com.google.android.material.slider.Slider: void setTickTintList(android.content.res.ColorStateList) -com.google.android.material.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar_Indicator -androidx.preference.R$styleable: int ActionBar_background -androidx.appcompat.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -com.amap.api.location.AMapLocation$1: java.lang.Object[] newArray(int) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchKeyShortcutEvent(android.view.KeyEvent) -androidx.hilt.R$id: int accessibility_custom_action_6 -com.amap.api.location.AMapLocation: int ERROR_CODE_INVALID_PARAMETER -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_min -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_14 -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -com.google.android.material.R$styleable: int AppCompatTheme_editTextStyle -io.reactivex.internal.disposables.ArrayCompositeDisposable: io.reactivex.disposables.Disposable replaceResource(int,io.reactivex.disposables.Disposable) -cyanogenmod.profiles.StreamSettings: StreamSettings(int) -wangdaye.com.geometricweather.R$id: int item_weather_daily_air_title -com.google.android.material.R$dimen: int material_clock_hand_stroke_width -cyanogenmod.app.Profile: java.util.UUID[] getSecondaryUuids() -com.bumptech.glide.R$styleable: int[] CoordinatorLayout_Layout -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_31 -android.didikee.donate.R$attr: int actionMenuTextAppearance -com.google.android.material.R$styleable: int ConstraintSet_barrierMargin -okhttp3.internal.tls.DistinguishedNameParser -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Province -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setUrl(java.lang.String) -com.google.android.material.R$dimen: int mtrl_extended_fab_icon_size -wangdaye.com.geometricweather.R$xml: int icon_provider_sun_moon_filter -io.reactivex.Observable: io.reactivex.Observable mergeArrayDelayError(io.reactivex.ObservableSource[]) -androidx.preference.R$styleable: int ActivityChooserView_initialActivityCount -cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(cyanogenmod.weather.WeatherInfo$1) -james.adaptiveicon.R$color: int secondary_text_default_material_light -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -com.jaredrummler.android.colorpicker.R$id: int right_side -james.adaptiveicon.R$id: int title_template -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Borderless -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean outputFused -androidx.hilt.work.R$bool -james.adaptiveicon.R$attr: int actionBarSplitStyle -com.google.android.material.bottomnavigation.BottomNavigationView: int getItemIconSize() -okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.WebSocketReader reader -androidx.viewpager2.R$drawable: int notification_template_icon_low_bg -com.google.android.material.bottomappbar.BottomAppBar: void setTitle(java.lang.CharSequence) -okio.Buffer: okio.BufferedSink writeShortLe(int) -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemShapeAppearance -com.google.android.material.R$styleable: int TextInputLayout_endIconTint -okhttp3.internal.http2.PushObserver$1: boolean onHeaders(int,java.util.List,boolean) -android.didikee.donate.R$id: int withText -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onError(java.lang.Throwable) -androidx.appcompat.widget.Toolbar: android.view.Menu getMenu() -cyanogenmod.weather.ICMWeatherManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.viewpager2.R$id: int text -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogPreferredPadding -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Error -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: ObservableCombineLatest$CombinerObserver(io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator,int) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModePasteDrawable -androidx.lifecycle.LiveData$ObserverWrapper: androidx.lifecycle.Observer mObserver -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listDividerAlertDialog -james.adaptiveicon.R$styleable: int ViewBackgroundHelper_backgroundTint -androidx.preference.R$styleable: int FontFamilyFont_android_ttcIndex -com.turingtechnologies.materialscrollbar.TouchScrollBar: float getIndicatorOffset() -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat valueOf(java.lang.String) -james.adaptiveicon.R$style: int Widget_AppCompat_Light_SearchView -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_Solid -com.xw.repo.bubbleseekbar.R$styleable: int[] LinearLayoutCompat_Layout -androidx.transition.R$attr: int ttcIndex -com.xw.repo.bubbleseekbar.R$drawable: int notification_tile_bg -androidx.preference.R$styleable: int RecyclerView_android_clipToPadding -com.github.rahatarmanahmed.cpv.CircularProgressView: int getThickness() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_hovered_z -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_checkable -android.didikee.donate.R$id: int useLogo -okhttp3.internal.http2.Http2Stream: void receiveData(okio.BufferedSource,int) -wangdaye.com.geometricweather.R$styleable: int SwitchImageButton_drawable_res_off -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -androidx.core.R$id: int right_side -androidx.appcompat.widget.AppCompatButton: void setSupportCompoundDrawablesTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setAqiText(java.lang.String) -androidx.recyclerview.R$id: int info -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: java.lang.String modeId -androidx.constraintlayout.widget.R$styleable: int Toolbar_android_minHeight -androidx.appcompat.R$id: int progress_circular -androidx.constraintlayout.widget.R$styleable: int[] Toolbar -okio.GzipSink: okio.BufferedSink sink -androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_borderlessButtonStyle -io.reactivex.internal.util.VolatileSizeArrayList: VolatileSizeArrayList() -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth -com.jaredrummler.android.colorpicker.R$layout: int abc_action_menu_item_layout -io.reactivex.internal.queue.SpscArrayQueue: int calcElementOffset(long,int) -com.amap.api.location.AMapLocation: java.lang.String j -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: AccuHourlyResult$Temperature() -androidx.activity.R$attr: int fontProviderAuthority -androidx.appcompat.R$dimen: int abc_list_item_height_large_material -com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_material_light -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabGravity -androidx.legacy.coreutils.R$id: int tag_transition_group -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -androidx.constraintlayout.widget.R$attr: int contrast -com.bumptech.glide.R$drawable: int notification_bg_low -com.google.android.material.R$id: int design_menu_item_text -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.R$drawable: int ic_chronus -wangdaye.com.geometricweather.db.entities.DaoMaster -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$id: int outline -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean cancelled -androidx.preference.R$styleable: int Toolbar_title -com.google.android.material.R$attr: int textAppearanceHeadline4 -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_right -cyanogenmod.os.Build$CM_VERSION_CODES: int ELDERBERRY -cyanogenmod.themes.ThemeManager: void logThemeServiceException(java.lang.Exception) -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_NoActionBar -com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabView -cyanogenmod.weather.WeatherInfo: double getTemperature() -androidx.appcompat.R$attr: int height -retrofit2.ParameterHandler$FieldMap -com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_text -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_search_api_material -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerX -retrofit2.Platform$Android -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$dimen: int abc_search_view_preferred_width -wangdaye.com.geometricweather.R$attr: int region_widthLessThan -androidx.hilt.lifecycle.R$id: int right_icon -retrofit2.Platform: Platform(boolean) -com.xw.repo.bubbleseekbar.R$id: int contentPanel -okhttp3.internal.http2.Http2Codec: okhttp3.Response$Builder readResponseHeaders(boolean) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getScaleY() -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float snow -james.adaptiveicon.R$attr: int panelBackground -com.google.android.gms.location.LocationRequest: android.os.Parcelable$Creator CREATOR -androidx.lifecycle.ProcessLifecycleOwnerInitializer: int delete(android.net.Uri,java.lang.String,java.lang.String[]) -androidx.appcompat.R$layout: int support_simple_spinner_dropdown_item -com.google.android.material.R$attr: int touchRegionId -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String name -androidx.hilt.work.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.R$xml: int widget_clock_day_details -androidx.preference.R$styleable: int AlertDialog_singleChoiceItemLayout -androidx.preference.R$styleable: int[] MultiSelectListPreference -com.google.android.material.R$string: int material_timepicker_minute -androidx.recyclerview.R$id: int line3 -cyanogenmod.hardware.ICMHardwareService: boolean setDisplayGammaCalibration(int,int[]) -wangdaye.com.geometricweather.R$styleable: int Constraint_motionProgress -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean disposed -wangdaye.com.geometricweather.R$attr: int mock_labelColor -com.turingtechnologies.materialscrollbar.R$id: int home -androidx.constraintlayout.widget.R$styleable: int StateListDrawableItem_android_drawable -wangdaye.com.geometricweather.R$attr: int rangeFillColor -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HURRICANE -wangdaye.com.geometricweather.R$attr: int checkedIcon -androidx.legacy.coreutils.R$styleable: int ColorStateListItem_android_color -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode BOUNDARY -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_transformPivotX -com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior -cyanogenmod.externalviews.KeyguardExternalView$6: cyanogenmod.externalviews.KeyguardExternalView this$0 -com.google.android.gms.common.server.response.FastJsonResponse$Field -androidx.core.R$styleable: int GradientColor_android_tileMode -com.xw.repo.bubbleseekbar.R$attr: int actionBarTabStyle -androidx.appcompat.widget.AppCompatTextView: void setTextMetricsParamsCompat(androidx.core.text.PrecomputedTextCompat$Params) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: CaiYunMainlyResult$ForecastDailyBean() -androidx.vectordrawable.R$id: int accessibility_custom_action_26 -cyanogenmod.hardware.DisplayMode: android.os.Parcelable$Creator CREATOR -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.R$attr: int mock_showDiagonals -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter -wangdaye.com.geometricweather.R$attr: int boxStrokeErrorColor -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowColor -androidx.appcompat.R$drawable: int abc_scrubber_track_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_android_windowAnimationStyle -com.bumptech.glide.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$styleable: int[] OnSwipe -com.xw.repo.bubbleseekbar.R$id: int action_mode_close_button -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_108 -com.google.android.material.bottomappbar.BottomAppBar: void setHideOnScroll(boolean) -wangdaye.com.geometricweather.settings.activities.PreviewIconActivity -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableRight -wangdaye.com.geometricweather.R$dimen: int tooltip_y_offset_touch -cyanogenmod.app.Profile: boolean isConditionalType() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRealFeelShaderTemperature -wangdaye.com.geometricweather.R$string: int feedback_no_data -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginRight -com.jaredrummler.android.colorpicker.R$id: int radio -wangdaye.com.geometricweather.R$layout: int item_about_link -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_background -wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_clipToPadding -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int SnowProbability -androidx.lifecycle.CompositeGeneratedAdaptersObserver -com.xw.repo.bubbleseekbar.R$anim: int abc_fade_in -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeight -com.jaredrummler.android.colorpicker.R$attr: int fontProviderFetchTimeout -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long index -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onError(java.lang.Throwable) -com.google.android.material.R$styleable: int ActionBar_customNavigationLayout -com.turingtechnologies.materialscrollbar.R$style: R$style() -com.google.android.material.R$styleable: int[] ClockHandView -wangdaye.com.geometricweather.wallpaper.LiveWallpaperConfigActivity: LiveWallpaperConfigActivity() -androidx.preference.R$styleable: int SeekBarPreference_min -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_stacked_max_height -androidx.legacy.coreutils.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.R$string: int key_text_color -wangdaye.com.geometricweather.R$attr: int backgroundInsetBottom -wangdaye.com.geometricweather.R$drawable: int flag_nl -com.google.android.material.chip.Chip: void setRippleColorResource(int) -androidx.constraintlayout.widget.R$layout -com.xw.repo.bubbleseekbar.R$color: int primary_dark_material_light -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: double mLow -wangdaye.com.geometricweather.settings.activities.AboutActivity -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconVisible -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_summaryOn -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconSize(int) -cyanogenmod.themes.IThemeProcessingListener: void onFinishedProcessing(java.lang.String) -okhttp3.internal.ws.RealWebSocket: void connect(okhttp3.OkHttpClient) -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: int TRANSACTION_onWeatherServiceProviderChanged_0 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getAqi() -android.didikee.donate.R$color: int material_grey_800 -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card -android.didikee.donate.R$attr: int contentInsetStart -com.jaredrummler.android.colorpicker.R$attr: int layout -retrofit2.OkHttpCall: retrofit2.Response execute() -retrofit2.http.Body -com.turingtechnologies.materialscrollbar.R$styleable: int FlowLayout_itemSpacing -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: int UnitType -androidx.recyclerview.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setBrandId(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_off_mtrl_alpha -wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_min -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -com.google.android.material.R$styleable: int ActionBar_contentInsetRight -wangdaye.com.geometricweather.R$attr: int gestureInsetBottomIgnored -androidx.preference.R$styleable: int SearchView_android_imeOptions -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_days_of_week -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean disposed -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean getSpeed() -wangdaye.com.geometricweather.R$attr: int circularRadius -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setIconResEnd(int) -wangdaye.com.geometricweather.common.ui.transitions.RoundCornerTransition: RoundCornerTransition(android.content.Context,android.util.AttributeSet) -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconPadding -androidx.preference.R$drawable: int abc_spinner_mtrl_am_alpha -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView_Menu -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_content_inset_material -com.baidu.location.e.n: java.util.List a(org.json.JSONObject,java.lang.String,int) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification -androidx.appcompat.R$drawable: int abc_control_background_material -androidx.constraintlayout.widget.R$attr: int buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgress(float) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdp -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display4 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -okhttp3.internal.http.RequestLine: RequestLine() -com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuGroup -okhttp3.OkHttpClient: java.util.List interceptors -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorPrimary -james.adaptiveicon.R$id: int scrollView -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setPubTime(java.lang.String) -com.google.android.material.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizePresetSizes -wangdaye.com.geometricweather.R$attr: int constraintSetStart -com.google.android.material.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.R$styleable: int Transform_android_elevation -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.R$id: int notification_big_icon_1 -james.adaptiveicon.R$styleable: int ActionBar_popupTheme -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_SET_CLIENT -androidx.appcompat.widget.SearchView$SearchAutoComplete: int getSearchViewTextMinWidthDp() -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme -wangdaye.com.geometricweather.R$dimen: int cpv_column_width -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_motionProgress -okio.ForwardingSource: long read(okio.Buffer,long) -wangdaye.com.geometricweather.R$array: int live_wallpaper_day_night_type_values -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status INITIALIZING -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarItemBackground -com.google.android.material.R$attr: int maxActionInlineWidth -com.github.rahatarmanahmed.cpv.R$styleable -android.didikee.donate.R$styleable: int MenuItem_android_orderInCategory -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -wangdaye.com.geometricweather.R$array: int notification_text_colors -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int consumed -wangdaye.com.geometricweather.R$style: int Preference_PreferenceScreen_Material -james.adaptiveicon.R$styleable: int AppCompatTheme_windowMinWidthMinor -wangdaye.com.geometricweather.R$styleable: int Slider_thumbElevation -androidx.preference.R$id: int normal -com.turingtechnologies.materialscrollbar.R$color: int abc_background_cache_hint_selector_material_light -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Light -androidx.drawerlayout.R$id: int forever -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Dialog -wangdaye.com.geometricweather.R$dimen: int cpv_default_thickness -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: int index -com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrimResource(int) -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onError(java.lang.Throwable) -com.google.android.material.R$styleable: int Toolbar_contentInsetStartWithNavigation -com.jaredrummler.android.colorpicker.R$dimen: int cpv_dialog_preview_width -cyanogenmod.app.Profile: void setScreenLockMode(cyanogenmod.profiles.LockSettings) -wangdaye.com.geometricweather.R$color: int colorPrimaryDark -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.Integer cloudCover -androidx.appcompat.resources.R$id: int accessibility_custom_action_31 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionMenuTextColor -androidx.constraintlayout.widget.R$styleable: int Transition_motionInterpolator -io.reactivex.Observable: void subscribeActual(io.reactivex.Observer) -io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function,io.reactivex.functions.Function) -androidx.preference.R$style: int Base_V21_Theme_AppCompat_Dialog -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_elevation -androidx.appcompat.R$styleable: int GradientColor_android_startX -androidx.constraintlayout.widget.R$id: int scrollView -com.turingtechnologies.materialscrollbar.DragScrollBar: boolean getHide() -com.google.android.material.R$string: int character_counter_pattern -com.bumptech.glide.load.engine.GlideException: long serialVersionUID -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setId(java.lang.Long) -wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status[] values() -com.turingtechnologies.materialscrollbar.R$attr: int snackbarStyle -cyanogenmod.providers.CMSettings$Global: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) -androidx.lifecycle.extensions.R$dimen: int compat_button_inset_horizontal_material -androidx.coordinatorlayout.R$styleable: int GradientColor_android_endX -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_headline_material -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_xml -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean forecastDaily -com.turingtechnologies.materialscrollbar.R$attr: int state_above_anchor -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_toolbarStyle -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver,java.lang.Throwable) -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarButtonStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: float getSpeed(float) -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderCancelButton -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setVibratorIntensity(int) -androidx.constraintlayout.widget.R$styleable: int ActionMode_titleTextStyle -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getLabelVisibilityMode() -okhttp3.internal.http.RealInterceptorChain: int readTimeout -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_separator -androidx.room.RoomDatabase$JournalMode -androidx.appcompat.R$drawable: int abc_ic_star_half_black_16dp -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmPic2 -com.google.android.material.R$attr: int textAppearanceHeadline1 -androidx.lifecycle.ComputableLiveData: ComputableLiveData(java.util.concurrent.Executor) -cyanogenmod.weather.WeatherInfo: java.lang.String getCity() -wangdaye.com.geometricweather.R$styleable: int Chip_android_text -com.jaredrummler.android.colorpicker.R$attr: int allowDividerBelow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial -androidx.lifecycle.extensions.R$style -io.reactivex.Observable: io.reactivex.Observable switchMap(io.reactivex.functions.Function,int) -wangdaye.com.geometricweather.R$id: int textinput_placeholder -androidx.legacy.coreutils.R$drawable: int notification_tile_bg -androidx.hilt.lifecycle.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.R$id: int material_textinput_timepicker -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: ScheduledDirectPeriodicTask(java.lang.Runnable) -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_corner_radius_material -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -okio.GzipSink: void close() -wangdaye.com.geometricweather.R$id: int item_card_display_container -android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -android.didikee.donate.R$attr: int progressBarStyle -androidx.cardview.widget.CardView: void setPreventCornerOverlap(boolean) -com.bumptech.glide.R$id: int text2 -retrofit2.BuiltInConverters$VoidResponseBodyConverter: java.lang.Object convert(java.lang.Object) -androidx.constraintlayout.widget.R$layout: int abc_dialog_title_material -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart -com.google.android.material.card.MaterialCardView: void setDragged(boolean) -wangdaye.com.geometricweather.R$string: int settings_notification_background_off -retrofit2.ParameterHandler$FieldMap: void apply(retrofit2.RequestBuilder,java.lang.Object) -androidx.appcompat.R$attr: int drawableSize -androidx.preference.R$styleable: int ActionMode_subtitleTextStyle -cyanogenmod.os.Concierge: int PARCELABLE_VERSION -androidx.swiperefreshlayout.R$drawable: int notification_bg -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.OkHttpClient client -com.google.android.material.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -androidx.vectordrawable.R$id: int tag_accessibility_clickable_spans -okhttp3.internal.cache2.Relay: int SOURCE_UPSTREAM -retrofit2.ParameterHandler$Header -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setPubTime(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int[] ListPreference -com.google.android.material.R$attr: int ensureMinTouchTargetSize -james.adaptiveicon.R$styleable: int ActionBar_subtitle -okio.Buffer: okio.Buffer emitCompleteSegments() -androidx.dynamicanimation.R$styleable: int GradientColor_android_startY -androidx.preference.R$layout: int abc_alert_dialog_button_bar_material -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ImageButton -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Subhead_Inverse -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Body2 -android.didikee.donate.R$dimen -com.google.android.material.slider.RangeSlider: float getThumbStrokeWidth() -android.didikee.donate.R$styleable: int ActionBar_hideOnContentScroll -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getThunderstorm() -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginStart -wangdaye.com.geometricweather.R$styleable: int MotionScene_defaultDuration -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPreStopped(android.app.Activity) -okhttp3.internal.cache.DiskLruCache$Editor$1: okhttp3.internal.cache.DiskLruCache$Editor this$1 -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -cyanogenmod.weather.WeatherInfo$1: WeatherInfo$1() -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerX -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$dimen: int cardview_default_elevation -android.support.v4.app.INotificationSideChannel: void cancelAll(java.lang.String) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_left -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeight -okhttp3.ResponseBody: java.lang.String string() -james.adaptiveicon.R$layout: int abc_alert_dialog_title_material -androidx.swiperefreshlayout.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$attr: int multiChoiceItemLayout -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year -cyanogenmod.app.LiveLockScreenInfo -com.turingtechnologies.materialscrollbar.R$drawable: int tooltip_frame_dark -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Refresh -okhttp3.Cache: int requestCount() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -wangdaye.com.geometricweather.R$string: int content_desc_weather_icon -com.google.android.material.R$styleable: int Chip_closeIconVisible -wangdaye.com.geometricweather.R$string: int settings_title_notification_text_color -androidx.drawerlayout.R$dimen: R$dimen() -wangdaye.com.geometricweather.R$attr: int dialogLayout -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List xiche -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatImageView -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -com.google.android.material.R$styleable: int[] ProgressIndicator -io.reactivex.internal.queue.SpscArrayQueue: boolean isEmpty() -androidx.preference.R$styleable: int SwitchCompat_android_textOn -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.R$attr: int menu -com.jaredrummler.android.colorpicker.R$attr: int progressBarStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginBottom -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(java.lang.String) -james.adaptiveicon.R$attr: int listDividerAlertDialog -androidx.preference.R$style: int Base_V7_Widget_AppCompat_EditText -com.jaredrummler.android.colorpicker.R$attr: int toolbarNavigationButtonStyle -io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.observers.InnerQueuedObserverSupport parent -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void again(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSo2Desc(java.lang.String) -androidx.vectordrawable.animated.R$id: int normal -wangdaye.com.geometricweather.R$attr: int progress_color -cyanogenmod.os.Concierge$ParcelInfo: void complete() -wangdaye.com.geometricweather.R$array: int subtitle_data_values -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: int Degrees -com.bumptech.glide.integration.okhttp.R$attr: int layout_insetEdge -com.bumptech.glide.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getZh_TW() -com.github.rahatarmanahmed.cpv.CircularProgressView$8: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: java.lang.String Unit -retrofit2.ParameterHandler$Body: java.lang.reflect.Method method -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -androidx.appcompat.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -cyanogenmod.externalviews.KeyguardExternalView$4: void run() -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: long serialVersionUID -android.support.v4.app.INotificationSideChannel$Default: void cancel(java.lang.String,int,java.lang.String) -androidx.preference.R$string: int abc_menu_enter_shortcut_label -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List forecasts -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.viewpager.R$dimen: int notification_media_narrow_margin -androidx.appcompat.R$id: int default_activity_button -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onKeyguardDismissed() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -com.google.android.material.R$attr: int buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitation() -androidx.lifecycle.LifecycleRegistry: LifecycleRegistry(androidx.lifecycle.LifecycleOwner) -io.reactivex.internal.schedulers.AbstractDirectTask: java.util.concurrent.FutureTask DISPOSED -androidx.constraintlayout.widget.R$drawable: int abc_edit_text_material -androidx.hilt.R$id: int right_icon -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedUsername(java.lang.String) -androidx.viewpager.R$styleable: int[] GradientColor -androidx.vectordrawable.animated.R$id: int notification_main_column_container -android.support.v4.app.INotificationSideChannel$Default: INotificationSideChannel$Default() -androidx.swiperefreshlayout.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents -james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionModeOverlay -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_hideOnScroll -androidx.vectordrawable.R$dimen: int notification_main_column_padding_top -com.google.android.material.R$style: int ShapeAppearanceOverlay_Cut -okhttp3.internal.cache2.Relay: void commit(long) -wangdaye.com.geometricweather.R$attr: int selectorSize -com.google.android.material.R$id: int uniform -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_start_angle -com.google.android.material.circularreveal.CircularRevealFrameLayout: void setCircularRevealScrimColor(int) -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void setCancellable(io.reactivex.functions.Cancellable) -com.google.android.material.R$attr: int bottomSheetDialogTheme -androidx.viewpager2.R$string: int status_bar_notification_info_overflow -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onDetach -androidx.appcompat.widget.AppCompatButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$attr: int layout_constraintBaseline_toBaselineOf -androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_layout -com.google.gson.stream.JsonReader: int PEEKED_END_OBJECT -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle -com.google.android.material.R$string: int abc_action_mode_done -com.amap.api.location.UmidtokenInfo -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.lang.String pubTime -com.amap.api.fence.GeoFence: int TYPE_DISTRICT -androidx.constraintlayout.widget.R$attr: int attributeName -wangdaye.com.geometricweather.R$attr: int displayOptions -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItem -okhttp3.Cache$2: Cache$2(okhttp3.Cache) -androidx.core.R$id: int tag_accessibility_clickable_spans -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: java.util.List getSubInformation() -wangdaye.com.geometricweather.R$style: int Platform_V21_AppCompat_Light -wangdaye.com.geometricweather.db.entities.AlertEntityDao -androidx.preference.R$style: int ThemeOverlay_AppCompat -android.didikee.donate.R$styleable: int RecycleListView_paddingTopNoTitle -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_text_color -com.turingtechnologies.materialscrollbar.R$attr: int lineHeight -wangdaye.com.geometricweather.R$attr: int actionModeCopyDrawable -androidx.appcompat.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dark -androidx.appcompat.R$color: int abc_tint_default -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Object rainSnowLimitRaw -androidx.core.graphics.drawable.IconCompat -androidx.loader.content.Loader: void unregisterListener(androidx.loader.content.Loader$OnLoadCompleteListener) -androidx.appcompat.R$attr: int dialogPreferredPadding -com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_bottom_margin -james.adaptiveicon.R$id: int textSpacerNoButtons -androidx.lifecycle.LifecycleOwner: androidx.lifecycle.Lifecycle getLifecycle() -com.google.android.material.button.MaterialButton: void setStrokeWidth(int) -androidx.drawerlayout.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Primary -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_visible -com.google.android.material.R$style: int Base_Widget_AppCompat_ButtonBar -com.xw.repo.bubbleseekbar.R$attr: int actionBarSplitStyle -cyanogenmod.app.CustomTile: java.lang.Object clone() -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: ObservableReplay$SizeBoundReplayBuffer(int) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void cancelAllBut(int) -com.jaredrummler.android.colorpicker.R$string: int abc_menu_enter_shortcut_label -android.didikee.donate.R$styleable: int[] MenuGroup -wangdaye.com.geometricweather.R$attr: int scopeUris -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_title -com.google.android.material.R$id: int mtrl_picker_header_title_and_selection -androidx.preference.R$string: int abc_searchview_description_voice -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -androidx.drawerlayout.R$dimen: int compat_button_inset_vertical_material -com.google.android.material.R$attr: int itemShapeAppearanceOverlay -io.reactivex.Observable: io.reactivex.Observable concatMapDelayError(io.reactivex.functions.Function,int,boolean) -com.xw.repo.bubbleseekbar.R$id: int tag_unhandled_key_listeners -androidx.recyclerview.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure Pressure -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY -androidx.constraintlayout.widget.R$id: int linear -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: WindDegree(float,boolean) -james.adaptiveicon.R$styleable: int ActionBar_customNavigationLayout -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_CLOSE -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitation -okhttp3.RealCall: okhttp3.Response getResponseWithInterceptorChain() -androidx.constraintlayout.widget.R$styleable: int[] KeyCycle -com.github.rahatarmanahmed.cpv.CircularProgressView: void onMeasure(int,int) -com.turingtechnologies.materialscrollbar.R$attr: int listItemLayout -wangdaye.com.geometricweather.R$layout: int item_card_display -okhttp3.ConnectionSpec: java.util.List tlsVersions() -wangdaye.com.geometricweather.R$id: int beginOnFirstDraw -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_height_material -wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarStyle -com.google.android.material.R$drawable: int abc_btn_check_material_anim -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void ping(boolean,int,int) -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onCross -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -com.google.android.material.R$styleable: int Toolbar_collapseContentDescription -wangdaye.com.geometricweather.R$styleable: int[] LinearLayoutCompat -com.turingtechnologies.materialscrollbar.R$integer: int show_password_duration -androidx.constraintlayout.widget.Guideline: void setVisibility(int) -james.adaptiveicon.R$color: int notification_icon_bg_color -androidx.viewpager2.R$style -cyanogenmod.themes.IThemeService -retrofit2.BuiltInConverters: boolean checkForKotlinUnit -com.google.android.material.R$attr: int actionButtonStyle -okhttp3.Route: java.net.Proxy proxy -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: ChineseCityEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 -cyanogenmod.externalviews.ExternalViewProperties: android.graphics.Rect mHitRect -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginEnd -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode[] values() -okhttp3.internal.ws.RealWebSocket$PingRunnable: RealWebSocket$PingRunnable(okhttp3.internal.ws.RealWebSocket) -androidx.vectordrawable.R$id: int accessibility_custom_action_20 -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: boolean cancelled -androidx.preference.R$style: int Base_Widget_AppCompat_EditText -com.google.android.gms.common.api.internal.zaab: void registerConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: void setTo(java.lang.String) -androidx.preference.R$id: int bottom -com.google.android.material.R$styleable: int Motion_pathMotionArc -androidx.preference.R$attr: int actionModeStyle -wangdaye.com.geometricweather.R$drawable: int cpv_btn_background -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_13 -james.adaptiveicon.R$drawable: int abc_btn_check_material -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_6 -com.google.android.material.R$attr: int overlay -james.adaptiveicon.R$styleable: int View_theme -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: void setValue(java.lang.String) -okio.GzipSink: okio.Timeout timeout() -cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup mDefaultGroup -com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_swipe_escape_velocity -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean done -androidx.appcompat.widget.AppCompatSpinner: android.content.Context getPopupContext() -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetStartWithNavigation -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean isDisposed() -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_minWidth -io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged(io.reactivex.functions.Function) -com.xw.repo.bubbleseekbar.R$attr: int buttonBarButtonStyle -android.didikee.donate.R$styleable: int SwitchCompat_showText -android.didikee.donate.R$styleable: int AppCompatTheme_android_windowAnimationStyle -com.google.android.material.R$id: int checkbox -okhttp3.internal.http2.Hpack$Writer: int nextHeaderIndex -com.xw.repo.bubbleseekbar.R$id: int sides -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum() -androidx.hilt.work.R$id: int accessibility_custom_action_13 -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LIVE_LOCK_SCREEN_PREVIEW -androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerX -androidx.viewpager.R$attr: int fontStyle -com.google.android.material.R$attr: int liftOnScroll -androidx.activity.R$layout: int notification_template_part_time -james.adaptiveicon.R$styleable: int SearchView_voiceIcon -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean isDisposed() -androidx.loader.R$style -com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderText(int) -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: CompletableFutureCallAdapterFactory$BodyCallAdapter(java.lang.reflect.Type) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5 -androidx.preference.R$id: int left -wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_backgroundTint -wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundNormalUpdateService: Hilt_ForegroundNormalUpdateService() -retrofit2.adapter.rxjava2.ResultObservable -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node findByObject(java.lang.Object) -android.didikee.donate.R$color: int foreground_material_dark -androidx.appcompat.widget.AppCompatTextView: void setLineHeight(int) -james.adaptiveicon.R$color: int abc_tint_switch_track -wangdaye.com.geometricweather.R$color: int material_on_surface_disabled -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry: MfEphemerisResult$Geometry() -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: int mMin -androidx.constraintlayout.widget.R$color: int abc_search_url_text_normal -androidx.work.R$id: int tag_accessibility_clickable_spans -androidx.viewpager.R$layout: R$layout() -com.google.android.material.R$id: int easeIn -wangdaye.com.geometricweather.R$styleable: int Chip_textStartPadding -com.google.android.material.R$styleable: int ActionBar_contentInsetEnd -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge -androidx.appcompat.R$attr: int alpha -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: android.os.IBinder asBinder() -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_motionTarget -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks -androidx.preference.R$color: int abc_primary_text_material_dark -io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier[] values() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver this$0 -cyanogenmod.externalviews.ExternalView$4 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: java.lang.String Unit -androidx.vectordrawable.R$id: int accessibility_custom_action_7 -androidx.preference.R$string: int expand_button_title -james.adaptiveicon.R$attr: int backgroundTint -james.adaptiveicon.R$attr: int actionDropDownStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeCloudCover -androidx.appcompat.R$color: int abc_tint_seek_thumb -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.R$dimen: int cardview_default_elevation -com.jaredrummler.android.colorpicker.R$attr: int commitIcon -io.reactivex.internal.util.NotificationLite: boolean isComplete(java.lang.Object) -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner -com.google.android.material.R$styleable: int TextAppearance_android_shadowRadius -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -james.adaptiveicon.R$drawable: R$drawable() -com.google.android.material.R$attr: int titleTextStyle -io.reactivex.internal.schedulers.ScheduledRunnable: int PARENT_INDEX -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setContent(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean) -androidx.preference.R$styleable: int SearchView_queryBackground -okhttp3.internal.platform.Android10Platform: void enableSessionTickets(javax.net.ssl.SSLSocket) -androidx.viewpager2.R$styleable: int GradientColor_android_centerY -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.xw.repo.bubbleseekbar.R$styleable: int[] Toolbar -com.turingtechnologies.materialscrollbar.R$id: int split_action_bar -com.google.android.material.R$attr: int listLayout -retrofit2.Utils: java.lang.RuntimeException methodError(java.lang.reflect.Method,java.lang.Throwable,java.lang.String,java.lang.Object[]) -okhttp3.HttpUrl$Builder: java.lang.String host -androidx.constraintlayout.widget.R$attr: int fontFamily -wangdaye.com.geometricweather.R$styleable: int MaterialCheckBox_buttonTint -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -androidx.fragment.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$attr: int msb_recyclerView -cyanogenmod.profiles.AirplaneModeSettings$BooleanState -com.xw.repo.bubbleseekbar.R$anim: int abc_tooltip_enter -okhttp3.Protocol: okhttp3.Protocol[] $VALUES -wangdaye.com.geometricweather.main.layouts.MainLayoutManager -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -io.reactivex.internal.subscribers.DeferredScalarSubscriber: boolean hasValue -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_textOn -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionDropDownStyle -wangdaye.com.geometricweather.common.basic.models.Location: android.os.Parcelable$Creator CREATOR -androidx.hilt.R$style: int Widget_Compat_NotificationActionText -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial Imperial -cyanogenmod.app.Profile: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_right_mtrl_dark -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: org.reactivestreams.Subscriber downstream -com.turingtechnologies.materialscrollbar.R$styleable: int View_android_theme -androidx.preference.R$color: int accent_material_dark -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_1 -cyanogenmod.externalviews.KeyguardExternalView: void performAction(java.lang.Runnable) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_22 -androidx.drawerlayout.R$dimen -androidx.preference.R$layout: int select_dialog_multichoice_material -com.google.android.material.R$dimen: int mtrl_calendar_title_baseline_to_top_fullscreen -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit[] values() -com.turingtechnologies.materialscrollbar.R$attr: int itemTextColor -androidx.preference.R$dimen: int notification_top_pad -cyanogenmod.profiles.ConnectionSettings: cyanogenmod.profiles.ConnectionSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -androidx.preference.R$styleable: int FontFamily_fontProviderPackage -androidx.constraintlayout.widget.R$styleable: int MockView_mock_diagonalsColor -com.google.android.material.internal.ForegroundLinearLayout: void setForegroundGravity(int) -com.google.android.material.R$dimen: int notification_top_pad -androidx.preference.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginStart -okhttp3.internal.http2.Http2: byte FLAG_END_HEADERS -wangdaye.com.geometricweather.R$id: int select_dialog_listview -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: double Value -cyanogenmod.app.Profile$ProfileTrigger: void getXmlString(java.lang.StringBuilder,android.content.Context) -james.adaptiveicon.R$dimen: int notification_large_icon_width -okhttp3.internal.platform.ConscryptPlatform -wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.entities.LocationEntity readEntity(android.database.Cursor,int) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -com.turingtechnologies.materialscrollbar.R$id: int action_mode_bar -androidx.appcompat.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.R$id: int indicator -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light_normal -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_backgroundStacked -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindDirection(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Transform_android_transformPivotX -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable,int) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabText -wangdaye.com.geometricweather.R$drawable: int shortcuts_wind_foreground -com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_Tooltip -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.lifecycle.extensions.R$color: int notification_icon_bg_color -com.xw.repo.bubbleseekbar.R$attr: int textColorAlertDialogListItem -wangdaye.com.geometricweather.R$attr: int counterTextAppearance -com.amap.api.location.AMapLocationClientOption: boolean q -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String e() -androidx.viewpager.R$drawable -okhttp3.RequestBody$1: okhttp3.MediaType contentType() -cyanogenmod.app.Profile: cyanogenmod.profiles.LockSettings getScreenLockMode() -androidx.appcompat.R$style: int Widget_AppCompat_Light_SearchView -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -cyanogenmod.os.Build: java.lang.String CYANOGENMOD_VERSION -wangdaye.com.geometricweather.R$string: int snow -cyanogenmod.app.ICMTelephonyManager: boolean isDataConnectionEnabled() -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void dispose() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonSetDate(java.util.Date) -okhttp3.internal.ws.RealWebSocket$Streams -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: double lat -okio.ByteString: okio.ByteString EMPTY -okhttp3.internal.ws.RealWebSocket: okhttp3.WebSocketListener listener -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_26 -com.google.android.material.tabs.TabLayout: void removeOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) -androidx.preference.R$string: int abc_searchview_description_search -retrofit2.RequestFactory: boolean isMultipart -retrofit2.Invocation: java.util.List arguments -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type valueOf(java.lang.String) -androidx.recyclerview.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$id: int chains -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String getUnit() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModePasteDrawable -androidx.preference.R$style: int Base_TextAppearance_AppCompat -com.google.android.material.R$styleable: int ScrimInsetsFrameLayout_insetForeground -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2(androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription) -com.google.android.material.R$string: int abc_capital_off -retrofit2.RequestFactory$Builder: boolean gotUrl -com.google.android.material.R$style: int Widget_AppCompat_Button_Colored -android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -cyanogenmod.providers.CMSettings$System: java.lang.String getString(android.content.ContentResolver,java.lang.String) -com.xw.repo.bubbleseekbar.R$drawable: int notification_action_background -okhttp3.internal.http.RealInterceptorChain: okhttp3.Call call -androidx.constraintlayout.widget.R$styleable: int[] MockView -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: AccuCurrentResult$PrecipitationSummary$Past6Hours() -okhttp3.internal.http2.Hpack$Reader: int maxDynamicTableByteCount -androidx.appcompat.widget.Toolbar: void setPopupTheme(int) -wangdaye.com.geometricweather.R$styleable: int Toolbar_navigationIcon -okhttp3.internal.cache.InternalCache: okhttp3.Response get(okhttp3.Request) -androidx.lifecycle.ReflectiveGenericLifecycleObserver: androidx.lifecycle.ClassesInfoCache$CallbackInfo mInfo -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather -com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_android_button -androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.lifecycle.extensions.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.R$style: int Widget_Design_Snackbar -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_116 -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy -androidx.activity.R$styleable: int GradientColor_android_endY -com.xw.repo.bubbleseekbar.R$id: int search_edit_frame -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String getCityId() -com.google.android.material.chip.Chip: void setLayoutDirection(int) -androidx.appcompat.R$attr: int drawableRightCompat -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_SearchView -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_weight -okhttp3.ConnectionPool$1: ConnectionPool$1(okhttp3.ConnectionPool) -cyanogenmod.app.ProfileGroup: void readFromParcel(android.os.Parcel) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onError(java.lang.Throwable) -androidx.swiperefreshlayout.R$color: R$color() -okhttp3.internal.http1.Http1Codec: okio.Sink createRequestBody(okhttp3.Request,long) -wangdaye.com.geometricweather.R$styleable: int Preference_selectable -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_header -wangdaye.com.geometricweather.R$attr: int buttonSize -james.adaptiveicon.R$styleable: int[] ListPopupWindow -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TabLayout -wangdaye.com.geometricweather.R$attr: int visibilityMode -wangdaye.com.geometricweather.R$styleable: int ActionBar_subtitleTextStyle -cyanogenmod.app.Profile$TriggerState: int ON_A2DP_DISCONNECT -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView_DropDown -okhttp3.internal.connection.RealConnection: void connectSocket(int,int,okhttp3.Call,okhttp3.EventListener) -okio.Buffer: long readLong() -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -androidx.work.R$layout: int notification_template_part_chronometer -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver -wangdaye.com.geometricweather.R$id: int widget_week_temp_3 -androidx.appcompat.R$styleable: int Toolbar_logo -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathStart(float) -androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_PROVIDER -cyanogenmod.app.CMContextConstants -androidx.appcompat.widget.ActivityChooserView: androidx.appcompat.widget.ListPopupWindow getListPopupWindow() -android.didikee.donate.R$styleable: int ActionBar_customNavigationLayout -com.google.android.material.R$styleable: int SearchView_android_focusable -io.reactivex.Observable: io.reactivex.Observable timeInterval(java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.android.material.button.MaterialButton: void setBackground(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setStatus(int) -androidx.preference.R$dimen: int abc_list_item_height_material -androidx.fragment.R$anim: R$anim() -wangdaye.com.geometricweather.R$drawable: int design_fab_background -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getCardValue() -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnp -androidx.fragment.R$id: int accessibility_custom_action_17 -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitationDuration(java.lang.Float) -wangdaye.com.geometricweather.R$string: int settings_title_permanent_service -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode END -androidx.work.R$layout: R$layout() -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: boolean disposed -cyanogenmod.profiles.ConnectionSettings: java.lang.String ACTION_MODIFY_NETWORK_MODE -com.google.android.material.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -cyanogenmod.profiles.AirplaneModeSettings: void readFromParcel(android.os.Parcel) -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onNext(java.lang.Object) -com.xw.repo.bubbleseekbar.R$string: int abc_prepend_shortcut_label -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_android_max -com.google.android.material.R$styleable: int Constraint_flow_verticalBias -io.reactivex.internal.observers.DeferredScalarObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language PORTUGUESE -androidx.work.impl.background.systemalarm.RescheduleReceiver -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_light -com.google.android.material.R$attr: int customStringValue -retrofit2.Call: okhttp3.Request request() -androidx.preference.R$styleable: int CheckBoxPreference_summaryOff -com.google.android.material.R$attr: int flow_verticalGap -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark_normal -androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_toTopOf -cyanogenmod.app.Profile: cyanogenmod.profiles.RingModeSettings mRingMode -androidx.transition.R$id: int action_image -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetTop -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: AccuMinuteResult$SummariesBean() -wangdaye.com.geometricweather.R$id: int widget_week_week_2 -org.greenrobot.greendao.AbstractDaoSession: void runInTx(java.lang.Runnable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String Link -com.google.android.material.R$dimen: int abc_list_item_height_small_material -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onError(java.lang.Throwable) -cyanogenmod.externalviews.ExternalView$6 -wangdaye.com.geometricweather.R$dimen: int design_navigation_padding_bottom -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_menu -androidx.appcompat.widget.LinearLayoutCompat: int getGravity() -androidx.legacy.coreutils.R$id: int right_icon -androidx.constraintlayout.widget.R$string: int abc_searchview_description_clear -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_constantSize -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_selection_line_height -com.turingtechnologies.materialscrollbar.R$attr: int actionModeShareDrawable -okhttp3.internal.connection.RealConnection: java.util.List allocations -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State min(androidx.lifecycle.Lifecycle$State,androidx.lifecycle.Lifecycle$State) -james.adaptiveicon.R$attr: int title -androidx.swiperefreshlayout.R$dimen: int notification_content_margin_start -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -com.google.android.material.R$id: int search_close_btn -androidx.constraintlayout.widget.R$id: int sin -com.jaredrummler.android.colorpicker.R$attr: int actionBarItemBackground -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_barThickness -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -com.jaredrummler.android.colorpicker.R$attr: int titleTextStyle -android.didikee.donate.R$style -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Subhead_Inverse -io.reactivex.internal.subscriptions.EmptySubscription: int requestFusion(int) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_drawPath -com.turingtechnologies.materialscrollbar.R$drawable: int notify_panel_notification_icon_bg -com.google.android.material.R$dimen: int mtrl_btn_icon_btn_padding_left -androidx.preference.R$color: int ripple_material_dark -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -androidx.constraintlayout.widget.R$id: int pathRelative -androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context,android.util.AttributeSet,int) -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder pingInterval(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop -cyanogenmod.weatherservice.ServiceRequestResult$1: cyanogenmod.weatherservice.ServiceRequestResult[] newArray(int) -com.google.android.material.R$styleable: int AppCompatTextView_drawableTopCompat -androidx.viewpager.widget.PagerTitleStrip: int getMinHeight() -com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonTintMode -james.adaptiveicon.R$attr: int searchHintIcon -com.google.android.gms.base.R$string: int common_google_play_services_install_button -wangdaye.com.geometricweather.R$attr: int theme -com.google.android.material.R$styleable: int MaterialCheckBox_useMaterialThemeColors -wangdaye.com.geometricweather.R$array: int dark_modes -androidx.appcompat.widget.Toolbar: int getCurrentContentInsetLeft() -androidx.viewpager2.R$dimen: int notification_big_circle_margin -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: boolean isDisposed() -androidx.constraintlayout.widget.R$attr: int textAppearanceSearchResultTitle -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_PopupMenu -androidx.coordinatorlayout.R$id: int blocking -com.turingtechnologies.materialscrollbar.R$color: int abc_secondary_text_material_light -com.google.android.material.R$styleable: int ConstraintSet_flow_verticalStyle -com.turingtechnologies.materialscrollbar.R$attr: int fabCradleRoundedCornerRadius -androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.jaredrummler.android.colorpicker.R$styleable: int[] MultiSelectListPreference -com.google.android.material.bottomnavigation.BottomNavigationView: int getLabelVisibilityMode() -com.google.android.material.slider.Slider: void setThumbTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Small -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: java.lang.String toString() -androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_colored -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getApparentTemperature() -okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot next() -androidx.preference.R$anim: int abc_fade_in -com.google.android.material.R$attr: int keylines -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderCerts -androidx.lifecycle.extensions.R$id -com.amap.api.fence.PoiItem: double g -androidx.appcompat.R$id: int notification_main_column -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_typeface -androidx.preference.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -com.amap.api.fence.GeoFenceManagerBase: android.app.PendingIntent createPendingIntent(java.lang.String) -cyanogenmod.power.PerformanceManager: cyanogenmod.power.PerformanceManager getInstance(android.content.Context) -androidx.dynamicanimation.R$id: int icon_group -androidx.dynamicanimation.R$id: int tag_unhandled_key_event_manager -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_SearchView -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: javax.inject.Provider apiProvider -cyanogenmod.weather.WeatherInfo: int hashCode() -android.didikee.donate.R$dimen: int abc_control_corner_material -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -com.google.android.material.R$styleable: int MaterialButtonToggleGroup_checkedButton -cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onCustomTilePosted -androidx.recyclerview.R$attr: int fastScrollHorizontalThumbDrawable -androidx.hilt.R$drawable: int notification_bg_low -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedWidthMinor -androidx.vectordrawable.R$layout: int custom_dialog -com.google.android.material.R$id: int accessibility_custom_action_18 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -androidx.hilt.work.R$id: int accessibility_custom_action_2 -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: ObservableTakeLastTimed$TakeLastTimedObserver(io.reactivex.Observer,long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,boolean) -androidx.activity.R$layout: R$layout() -com.turingtechnologies.materialscrollbar.R$color: int secondary_text_default_material_dark -wangdaye.com.geometricweather.R$string: int common_google_play_services_install_title -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog -com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setEnableAnim(boolean) -androidx.work.impl.WorkDatabase: WorkDatabase() -androidx.lifecycle.extensions.R$dimen: int compat_notification_large_icon_max_width -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder username(java.lang.String) -androidx.appcompat.R$attr: int seekBarStyle -androidx.appcompat.widget.SearchView: void setSuggestionsAdapter(androidx.cursoradapter.widget.CursorAdapter) -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetRight -androidx.preference.R$styleable: int[] AnimatedStateListDrawableItem -com.google.android.material.R$styleable: int Badge_horizontalOffset -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -androidx.lifecycle.ViewModel: void closeWithRuntimeException(java.lang.Object) -androidx.constraintlayout.widget.R$attr: int expandActivityOverflowButtonDrawable -okhttp3.Response: okhttp3.CacheControl cacheControl -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.R$id: int item_weather_icon_title -com.google.android.material.R$id: int accessibility_custom_action_9 -com.google.android.material.transformation.FabTransformationSheetBehavior: FabTransformationSheetBehavior(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog -androidx.appcompat.R$styleable: int MenuItem_actionViewClass -com.google.android.material.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -com.google.android.gms.auth.api.signin.GoogleSignInAccount -wangdaye.com.geometricweather.R$layout: int material_clockface_view -okhttp3.Headers: Headers(okhttp3.Headers$Builder) -com.google.android.material.appbar.AppBarLayout$BaseBehavior$SavedState -cyanogenmod.app.ICMStatusBarManager$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_LargeComponent -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCollapsedPaddingTop -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.WeatherEntityDao getWeatherEntityDao() -wangdaye.com.geometricweather.R$attr: int textAppearanceListItemSecondary -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,int) -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_trackTintMode -retrofit2.ParameterHandler: ParameterHandler() -cyanogenmod.weather.RequestInfo: int getTemperatureUnit() -okhttp3.RequestBody$3: java.io.File val$file -androidx.work.impl.background.systemalarm.ConstraintProxy: ConstraintProxy() -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Editor edit(java.lang.String) -wangdaye.com.geometricweather.R$id: int normal -androidx.hilt.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_Switch -com.google.android.material.bottomappbar.BottomAppBar: int getLeftInset() -com.google.android.material.R$id: int tag_screen_reader_focusable -androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$styleable: int AppCompatTheme_tooltipForegroundColor -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Borderless -wangdaye.com.geometricweather.R$layout: int preference_dropdown -android.support.v4.os.ResultReceiver$MyResultReceiver: ResultReceiver$MyResultReceiver(android.support.v4.os.ResultReceiver) -james.adaptiveicon.R$drawable: int notification_bg_low -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_NoActionBar -james.adaptiveicon.R$attr: int buttonStyleSmall -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherError(java.lang.Throwable) -io.reactivex.disposables.RunnableDisposable -com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_SIGN -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain -androidx.activity.R$attr: int font -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_startAngle -androidx.preference.R$attr: int collapseIcon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int isRainOrSnow -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeightSmall -com.bumptech.glide.R$id: int italic -androidx.hilt.lifecycle.R$attr: int ttcIndex -james.adaptiveicon.R$attr: int searchIcon -androidx.hilt.lifecycle.R$id: int action_text -com.xw.repo.bubbleseekbar.R$dimen: int abc_config_prefDialogWidth -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceStyle -com.google.android.material.R$attr: int itemMaxLines -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okhttp3.ResponseBody delegate -okio.Pipe$PipeSource: long read(okio.Buffer,long) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_toTopOf -com.amap.api.fence.GeoFence: void setExpiration(long) -wangdaye.com.geometricweather.R$attr: int preferenceStyle -io.reactivex.Observable: io.reactivex.Completable flatMapCompletable(io.reactivex.functions.Function) -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.R$layout: int abc_activity_chooser_view_list_item -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabText -androidx.constraintlayout.widget.R$layout: int notification_template_custom_big -com.turingtechnologies.materialscrollbar.R$attr: int actionModePopupWindowStyle -wangdaye.com.geometricweather.R$string: int key_notification_hide_icon -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.preference.R$styleable: int DrawerArrowToggle_gapBetweenBars -com.google.android.material.R$dimen: int material_emphasis_disabled -androidx.appcompat.R$drawable: int abc_tab_indicator_mtrl_alpha -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_tileMode -androidx.coordinatorlayout.R$styleable: int ColorStateListItem_android_color -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_arrowHeadLength -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: int UnitType -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline Headline -wangdaye.com.geometricweather.R$string: int feedback_background_location_summary -okio.ByteString: java.lang.String hex() -com.google.android.material.R$style: int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day -com.google.android.material.R$id: int parent -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: java.lang.Object item -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_MENU_LONG_PRESS_ACTION -com.google.android.material.R$styleable: int MaterialTextView_android_textAppearance -wangdaye.com.geometricweather.R$dimen: int mtrl_edittext_rectangle_top_offset -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_colored_material -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_thickness -wangdaye.com.geometricweather.R$id: int container_main_header_aqiOrWindTxt -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SeekBar_Discrete -com.xw.repo.bubbleseekbar.R$attr: int buttonStyleSmall -androidx.preference.R$styleable: int Toolbar_navigationIcon -wangdaye.com.geometricweather.R$id: int search_src_text -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_motionProgress -wangdaye.com.geometricweather.R$id: int action_menu_presenter -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_icon_null_animation -androidx.viewpager2.R$styleable: int FontFamily_fontProviderCerts -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -cyanogenmod.app.LiveLockScreenInfo$Builder: android.content.ComponentName mComponent -androidx.constraintlayout.widget.R$attr: int gapBetweenBars -okhttp3.internal.http.RetryAndFollowUpInterceptor: void cancel() -androidx.constraintlayout.widget.R$id: int title -com.jaredrummler.android.colorpicker.R$string: int abc_action_bar_up_description -com.google.android.material.R$styleable: int ActionBar_titleTextStyle -androidx.constraintlayout.widget.R$string: int abc_menu_ctrl_shortcut_label -android.didikee.donate.R$attr: int buttonStyle -io.reactivex.Observable: io.reactivex.Observable buffer(int,int,java.util.concurrent.Callable) -wangdaye.com.geometricweather.R$dimen: int hint_pressed_alpha_material_dark -androidx.lifecycle.LifecycleRegistry: void markState(androidx.lifecycle.Lifecycle$State) -androidx.recyclerview.R$id: int action_container -androidx.dynamicanimation.R$id: int notification_main_column -okhttp3.internal.http.HttpHeaders: java.util.Set varyFields(okhttp3.Headers) -androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context,android.util.AttributeSet,int) -androidx.lifecycle.extensions.R$styleable: int GradientColorItem_android_offset -androidx.recyclerview.R$id: int accessibility_custom_action_29 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_subtitle_top_margin_material -com.google.android.material.imageview.ShapeableImageView: android.content.res.ColorStateList getStrokeColor() -cyanogenmod.profiles.StreamSettings: cyanogenmod.profiles.StreamSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog -cyanogenmod.app.BaseLiveLockManagerService$1: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -androidx.appcompat.R$color: int background_floating_material_light -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onComplete() -wangdaye.com.geometricweather.R$attr: int closeItemLayout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setStatus(int) -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.Long getId() -com.google.android.material.R$color: int mtrl_filled_stroke_color -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_bottom -com.turingtechnologies.materialscrollbar.R$attr: int state_collapsed -com.google.android.material.slider.RangeSlider: int getTrackWidth() -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getNestedScrollAxes() -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DialogWhenLarge -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type[] values() -com.google.android.material.R$dimen: int mtrl_calendar_action_height -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextStyle -com.amap.api.location.CoordinateConverter: boolean isAMapDataAvailable(double,double) -android.didikee.donate.R$id: int src_in -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_id -com.google.android.material.R$id: int barrier -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.db.entities.HistoryEntityDao -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationY -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogIcon -wangdaye.com.geometricweather.R$color: int highlighted_text_material_light -androidx.preference.R$id: int screen -cyanogenmod.profiles.AirplaneModeSettings: cyanogenmod.profiles.AirplaneModeSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getDatetime() -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDate(java.util.Date) -com.google.android.gms.base.R$styleable: int[] SignInButton -androidx.preference.R$styleable: int SeekBarPreference_android_max -androidx.constraintlayout.widget.R$styleable: int Constraint_visibilityMode -com.google.android.material.timepicker.ClockHandView: void setOnActionUpListener(com.google.android.material.timepicker.ClockHandView$OnActionUpListener) -io.reactivex.internal.queue.SpscArrayQueue: int mask -com.google.android.material.R$string: int bottomsheet_action_expand_halfway -cyanogenmod.app.StatusBarPanelCustomTile: android.os.UserHandle user -androidx.appcompat.R$style: int Animation_AppCompat_Dialog -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_extendMotionSpec -com.google.android.material.R$styleable: int TextInputLayout_helperTextEnabled -androidx.viewpager.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.DailyEntity) -androidx.constraintlayout.widget.R$drawable: int abc_spinner_textfield_background_material -okhttp3.Cookie: Cookie(okhttp3.Cookie$Builder) -james.adaptiveicon.R$style: int Base_V22_Theme_AppCompat -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event valueOf(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalBias -cyanogenmod.weatherservice.IWeatherProviderService$Stub: cyanogenmod.weatherservice.IWeatherProviderService asInterface(android.os.IBinder) -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog -cyanogenmod.externalviews.ExternalViewProviderService$1$1: java.lang.Object call() -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onNext(java.lang.Object) -com.amap.api.location.APSServiceBase: void onCreate() -androidx.appcompat.widget.ActivityChooserView: void setActivityChooserModel(androidx.appcompat.widget.ActivityChooserModel) -cyanogenmod.app.Profile: boolean mStatusBarIndicator -wangdaye.com.geometricweather.wallpaper.LiveWallpaperConfigActivity -okhttp3.internal.http2.Hpack: int PREFIX_6_BITS -androidx.appcompat.R$styleable: int ViewStubCompat_android_id -com.jaredrummler.android.colorpicker.R$attr: int subtitleTextAppearance -androidx.appcompat.R$drawable: int abc_seekbar_tick_mark_material -android.didikee.donate.R$id: int end -com.google.android.material.textfield.TextInputLayout: void setCounterEnabled(boolean) -androidx.loader.R$string: int status_bar_notification_info_overflow -cyanogenmod.providers.CMSettings$Global: boolean shouldInterceptSystemProvider(java.lang.String) -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String type -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_23 -androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_height_major -com.xw.repo.bubbleseekbar.R$layout: int abc_select_dialog_material -wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetDailyEntityList() -com.google.android.material.R$styleable: int[] SwitchCompat -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setTitleText(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_positiveButtonText -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit -androidx.core.app.RemoteActionCompatParcelizer -androidx.vectordrawable.R$id: int notification_main_column_container -androidx.preference.R$attr: int colorBackgroundFloating -wangdaye.com.geometricweather.R$attr: int snackbarButtonStyle -wangdaye.com.geometricweather.R$dimen: int notification_small_icon_size_as_large -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: CustomTileListenerService$ICustomTileListenerWrapper(cyanogenmod.app.CustomTileListenerService,cyanogenmod.app.CustomTileListenerService$1) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.transition.R$dimen: int notification_media_narrow_margin -okhttp3.internal.http2.Http2Stream$FramingSource: okio.Timeout timeout() -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_handleOffColor -androidx.drawerlayout.R$id: int tag_transition_group -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.Scheduler scheduler -androidx.appcompat.resources.R$id: int accessibility_custom_action_6 -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_default -androidx.lifecycle.Lifecycle: void removeObserver(androidx.lifecycle.LifecycleObserver) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Snackbar -okhttp3.internal.connection.RouteSelector: java.util.List postponedRoutes -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int Icon -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonPhaseAngle -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_hideOnScroll -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_orientation -okhttp3.internal.http2.Http2Connection: long bytesLeftInWriteWindow -okhttp3.internal.http2.Http2Reader: int readMedium(okio.BufferedSource) -wangdaye.com.geometricweather.R$attr: int textAppearanceSmallPopupMenu -android.didikee.donate.R$styleable: int AppCompatTheme_searchViewStyle -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getExtendMotionSpec() -io.reactivex.Observable: io.reactivex.Observable doOnDispose(io.reactivex.functions.Action) -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void dispose() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -androidx.work.R$styleable: R$styleable() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List dailyForecast -cyanogenmod.app.CustomTile$GridExpandedStyle: void setGridItems(java.util.ArrayList) -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: java.util.concurrent.CompletableFuture future -com.google.android.material.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -android.didikee.donate.R$attr: int textColorAlertDialogListItem -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitation -android.support.v4.os.IResultReceiver$Stub: android.os.IBinder asBinder() -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_layout -androidx.viewpager.widget.PagerTabStrip: void setTextSpacing(int) -com.turingtechnologies.materialscrollbar.R$styleable: int[] ListPopupWindow -androidx.constraintlayout.widget.R$styleable: int[] PopupWindow -wangdaye.com.geometricweather.R$attr: int actionModePasteDrawable -com.google.android.material.card.MaterialCardView: int getContentPaddingTop() -androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_text_padding_left -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_appStore -androidx.constraintlayout.widget.R$styleable: int MenuItem_tooltipText -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingBottom -wangdaye.com.geometricweather.R$color: int material_timepicker_clockface -com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context,android.util.AttributeSet) -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeService getService() -androidx.preference.R$styleable: int AppCompatTheme_colorAccent -james.adaptiveicon.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColorHint -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindSpeedEnd() -james.adaptiveicon.R$styleable: int MenuItem_android_menuCategory -com.xw.repo.bubbleseekbar.R$layout: int select_dialog_singlechoice_material -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_dotGap -androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_tintMode -wangdaye.com.geometricweather.R$drawable: int shortcuts_sleet -wangdaye.com.geometricweather.R$string: int key_list_animation_switch -cyanogenmod.hardware.CMHardwareManager: int FEATURE_KEY_DISABLE -com.google.android.material.R$styleable: int TextInputLayout_hintEnabled -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator __MAGICAL_TEST_PASSING_ENABLER_VALIDATOR -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_shrinkMotionSpec -com.jaredrummler.android.colorpicker.R$layout: int abc_activity_chooser_view_list_item -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setOnClickListener(android.view.View$OnClickListener) -android.didikee.donate.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias -android.didikee.donate.R$attr: int listLayout -cyanogenmod.app.CMTelephonyManager: boolean isDataConnectionEnabled() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWindLevel() -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder shouldCollapsePanel(boolean) -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.LifecycleRegistry mRegistry -androidx.legacy.coreutils.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.R$attr: int cornerSizeBottomRight -com.jaredrummler.android.colorpicker.R$layout: int select_dialog_multichoice_material -androidx.preference.R$attr: int toolbarStyle -androidx.preference.R$bool -com.google.android.material.R$attr: int alertDialogStyle -cyanogenmod.themes.ThemeManager: void onClientDestroyed(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -androidx.work.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.main.dialogs.LearnMoreAboutResidentLocationDialog -james.adaptiveicon.R$attr: int activityChooserViewStyle -com.google.android.material.R$styleable: int[] Transform -androidx.hilt.work.R$attr: int fontProviderQuery -cyanogenmod.app.ProfileGroup: boolean mDirty -wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_weight -com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabTextStyle -android.didikee.donate.R$attr: int isLightTheme -com.bumptech.glide.integration.okhttp.R$styleable -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moonPhaseAngle -com.google.android.material.R$style: int Widget_AppCompat_SearchView -androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog_Alert -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ -com.google.android.material.R$attr: int growMode -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_NULL_SHA -com.google.android.material.R$id: int invisible -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onComplete() -androidx.vectordrawable.R$id: int accessibility_custom_action_3 -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tSea -androidx.constraintlayout.widget.R$drawable: int abc_list_focused_holo -androidx.viewpager2.widget.ViewPager2: void setOffscreenPageLimit(int) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeWindChillTemperature -android.didikee.donate.R$styleable: int AppCompatTextView_fontVariationSettings -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime realtime -com.google.android.material.R$attr: int singleLine -androidx.transition.R$integer: int status_bar_notification_info_maxnum -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.functions.Function mapper -com.google.android.material.textfield.TextInputLayout: void setErrorIconDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: AccuCurrentResult$Past24HourTemperatureDeparture() -androidx.preference.R$dimen: int notification_main_column_padding_top -retrofit2.RequestBuilder: void addFormField(java.lang.String,java.lang.String,boolean) -com.google.gson.JsonIOException -androidx.constraintlayout.widget.R$attr: int actionBarSplitStyle -com.google.android.material.R$attr: int layout_constraintHorizontal_chainStyle -androidx.recyclerview.R$id: int right_side -wangdaye.com.geometricweather.R$dimen -wangdaye.com.geometricweather.R$dimen: int cardview_compat_inset_shadow -androidx.hilt.lifecycle.R$id: int title -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircleRadius -wangdaye.com.geometricweather.R$color: int material_blue_grey_900 -wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress_width -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_keylines -cyanogenmod.weatherservice.ServiceRequestResult$Builder: java.util.List mLocationLookupList -wangdaye.com.geometricweather.R$color: int bright_foreground_inverse_material_dark -androidx.constraintlayout.widget.R$attr: int actionBarDivider -androidx.viewpager.R$drawable: int notification_bg_normal_pressed -androidx.legacy.coreutils.R$string: int status_bar_notification_info_overflow -com.google.android.material.R$dimen: int mtrl_calendar_action_confirm_button_min_width -android.didikee.donate.R$layout: int abc_alert_dialog_material -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dark -com.turingtechnologies.materialscrollbar.R$style: int CardView_Light -okhttp3.Address: java.util.List connectionSpecs() -okhttp3.internal.platform.Platform: void configureSslSocketFactory(javax.net.ssl.SSLSocketFactory) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: void setFrom(java.util.Date) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_numericShortcut -androidx.appcompat.R$styleable: int AnimatedStateListDrawableItem_android_id -androidx.constraintlayout.widget.Barrier: int getType() -androidx.preference.R$color: int error_color_material_dark -androidx.appcompat.widget.AppCompatImageView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf -com.jaredrummler.android.colorpicker.R$attr: int dialogPreferredPadding -okhttp3.internal.io.FileSystem$1: void delete(java.io.File) -com.google.android.material.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -androidx.lifecycle.ViewModelProviders$DefaultFactory: ViewModelProviders$DefaultFactory(android.app.Application) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableTop -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_toBottomOf -okhttp3.internal.ws.WebSocketWriter$FrameSink: okio.Timeout timeout() -android.didikee.donate.R$styleable: int TextAppearance_android_typeface -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSteps -androidx.dynamicanimation.R$layout -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: java.lang.String Unit -com.google.android.material.R$styleable: int ConstraintSet_motionProgress -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showDialog -com.google.android.material.R$styleable: int KeyCycle_android_translationZ -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol getLocationProtocol() -com.google.android.material.R$style: int Widget_AppCompat_PopupWindow -androidx.preference.R$styleable: int AppCompatTheme_panelMenuListTheme -cyanogenmod.externalviews.ExternalViewProperties: android.view.View mView -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItem -wangdaye.com.geometricweather.R$style: int Widget_Design_TextInputEditText -com.google.android.material.R$styleable: int AppBarLayout_expanded -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onNext(java.lang.Object) -androidx.appcompat.widget.SearchView$SavedState: android.os.Parcelable$Creator CREATOR -cyanogenmod.externalviews.ExternalView: void onDetachedFromWindow() -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.preference.R$color: int background_floating_material_light -androidx.fragment.R$layout: int notification_template_icon_group -androidx.coordinatorlayout.R$dimen: int notification_action_icon_size -com.google.gson.stream.JsonWriter: void beforeName() -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.util.List _queryWeatherEntity_MinutelyEntityList(java.lang.String,java.lang.String) -okhttp3.internal.http2.Hpack$Reader: int maxDynamicTableByteCount() -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_maxWidth -okhttp3.internal.http2.Http2Connection -com.google.android.material.R$attr: int itemPadding -com.baidu.location.BDLocation -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel -androidx.viewpager.R$id: int notification_background -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position position -wangdaye.com.geometricweather.db.entities.HistoryEntity: int nighttimeTemperature -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_percent -android.didikee.donate.R$drawable: int abc_textfield_search_material -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_shapeAppearanceOverlay -android.didikee.donate.R$style: int TextAppearance_AppCompat_Medium -okio.Buffer: int write(java.nio.ByteBuffer) -com.github.rahatarmanahmed.cpv.CircularProgressView$5: boolean wasCancelled -com.github.rahatarmanahmed.cpv.R$integer -com.turingtechnologies.materialscrollbar.R$attr: int subtitle -cyanogenmod.weather.ICMWeatherManager: void lookupCity(cyanogenmod.weather.RequestInfo) -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIMAX -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean isDisposed() -androidx.hilt.lifecycle.R$id: int line1 -cyanogenmod.themes.ThemeManager$ThemeChangeListener: void onFinish(boolean) -io.reactivex.internal.observers.InnerQueuedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end -io.reactivex.internal.subscriptions.DeferredScalarSubscription: void complete(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfIce -okhttp3.HttpUrl: java.lang.String percentDecode(java.lang.String,boolean) -cyanogenmod.app.LiveLockScreenManager: java.lang.String SERVICE_INTERFACE -com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_android_entries -wangdaye.com.geometricweather.R$attr: int chipStyle -com.google.android.material.R$styleable: int BottomNavigationView_itemRippleColor -james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyleSmall -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf -wangdaye.com.geometricweather.R$attr: int actionModeCutDrawable -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator -androidx.vectordrawable.animated.R$id: int title -com.google.android.material.R$style: int Base_V23_Theme_AppCompat -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animDuration -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_40 -wangdaye.com.geometricweather.R$array: int automatic_refresh_rates -com.google.android.material.R$styleable: int[] ListPopupWindow -androidx.preference.R$drawable: int abc_ic_star_half_black_16dp -com.jaredrummler.android.colorpicker.R$styleable: int ActionMenuItemView_android_minWidth -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_numericModifiers -androidx.preference.R$styleable: int[] SearchView -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator LOCKSCREEN_PIN_SCRAMBLE_LAYOUT_VALIDATOR -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver -cyanogenmod.power.PerformanceManager: int PROFILE_POWER_SAVE -james.adaptiveicon.R$styleable: int Toolbar_titleMarginTop -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getSummary(android.content.Context,java.util.List) -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginEnd -io.reactivex.Observable: io.reactivex.Observable create(io.reactivex.ObservableOnSubscribe) -wangdaye.com.geometricweather.R$layout: int abc_screen_simple_overlay_action_mode -androidx.preference.R$styleable: int Preference_defaultValue -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitation() -androidx.fragment.R$dimen: int notification_content_margin_start -com.xw.repo.bubbleseekbar.R$attr: int windowFixedHeightMajor -com.google.android.material.R$styleable: int MaterialButton_backgroundTint -androidx.constraintlayout.widget.R$attr: int targetId -com.google.android.material.R$attr: int actionMenuTextColor -com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_default -okhttp3.ConnectionSpec: int hashCode() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_MAX_INDEX -wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.converters.TimeZoneConverter timeZoneConverter -com.google.android.material.circularreveal.cardview.CircularRevealCardView: int getCircularRevealScrimColor() -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_long_text_horizontal_padding -wangdaye.com.geometricweather.R$attr: int dividerVertical -wangdaye.com.geometricweather.R$style: int Preference_DialogPreference -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorGravity(int) -com.jaredrummler.android.colorpicker.R$styleable: int[] RecycleListView -okio.ByteString: java.nio.ByteBuffer asByteBuffer() -wangdaye.com.geometricweather.R$layout: int text_view_with_theme_line_height -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi mApi -com.turingtechnologies.materialscrollbar.R$attr: int dialogPreferredPadding -cyanogenmod.themes.IThemeService$Stub$Proxy: void registerThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) -com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_text_padding_left -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: java.lang.String Unit -androidx.appcompat.R$styleable: int GradientColor_android_tileMode -com.google.android.material.R$attr: int listPreferredItemPaddingRight -com.google.android.material.R$styleable: int CardView_cardBackgroundColor -cyanogenmod.app.Profile: void setAirplaneMode(cyanogenmod.profiles.AirplaneModeSettings) -androidx.vectordrawable.R$dimen: int notification_subtext_size -okhttp3.MediaType: okhttp3.MediaType get(java.lang.String) -wangdaye.com.geometricweather.R$id: int activity_widget_config_scrollView -com.google.android.material.R$color: int mtrl_btn_ripple_color -androidx.appcompat.R$styleable: int DrawerArrowToggle_gapBetweenBars -wangdaye.com.geometricweather.R$color: int tooltip_background_light -android.didikee.donate.R$styleable: int[] ListPopupWindow -androidx.savedstate.SavedStateRegistry$1 -james.adaptiveicon.R$drawable: int abc_control_background_material -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorColor -com.xw.repo.bubbleseekbar.R$attr: int switchStyle -androidx.lifecycle.LiveData: boolean hasObservers() -okhttp3.Cache: int networkCount() -wangdaye.com.geometricweather.db.entities.WeatherEntity: long getUpdateTime() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSnowPrecipitationProbability(java.lang.Float) -wangdaye.com.geometricweather.R$styleable: int ActionBar_homeAsUpIndicator -com.google.android.material.R$style: int Widget_AppCompat_PopupMenu_Overflow -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_orientation -com.google.android.material.R$styleable: int KeyCycle_android_translationY -com.turingtechnologies.materialscrollbar.R$dimen: int compat_notification_large_icon_max_height -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: boolean isCanceled() -androidx.lifecycle.extensions.R$drawable: int notification_bg_normal_pressed -cyanogenmod.weather.CMWeatherManager$RequestStatus: int COMPLETED -wangdaye.com.geometricweather.R$id: int notification_big_icon_5 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTheme -wangdaye.com.geometricweather.R$id: int widget_day_week_week_5 -androidx.swiperefreshlayout.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_seek_step_section -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_android_elevation -wangdaye.com.geometricweather.R$style: int Base_V26_Theme_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Light -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onScreenTurnedOff() -james.adaptiveicon.R$id: int search_go_btn -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIconTintMode -wangdaye.com.geometricweather.db.entities.DailyEntity: void setO3(java.lang.Float) -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_normal_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_controlBackground -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetEndWithActions -androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context) -wangdaye.com.geometricweather.R$dimen: int abc_text_size_caption_material -com.google.android.material.R$id: int action_bar_subtitle -cyanogenmod.app.CustomTile$GridExpandedStyle: CustomTile$GridExpandedStyle() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.String TABLENAME -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: KeyguardExternalViewProviderService$Provider$ProviderImpl$5(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_recyclerView -wangdaye.com.geometricweather.R$attr: int arrowHeadLength -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String value -androidx.viewpager.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$id: int startHorizontal -com.google.android.material.R$attr: int layout_constraintRight_creator -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_defaultQueryHint -androidx.appcompat.R$styleable: int Toolbar_titleMarginEnd -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: long serialVersionUID -com.google.android.material.textfield.TextInputLayout: void setHintEnabled(boolean) -com.bumptech.glide.integration.okhttp.R$style: int Widget_Support_CoordinatorLayout -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMenuItemView_android_minWidth -androidx.constraintlayout.helper.widget.Flow: void setPaddingRight(int) -androidx.appcompat.widget.ActionMenuPresenter$ActionButtonSubmenu -com.bumptech.glide.R$styleable: int FontFamilyFont_font -cyanogenmod.weather.CMWeatherManager$2: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getZh_TW() -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: ObservableMergeWithCompletable$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed Speed -androidx.legacy.coreutils.R$drawable: int notification_bg_low_pressed -com.google.android.material.R$styleable: int SwitchCompat_thumbTextPadding -androidx.appcompat.resources.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$string: int key_item_animation_switch -androidx.preference.R$id: int start -android.didikee.donate.R$string: R$string() -com.turingtechnologies.materialscrollbar.R$style: int AlertDialog_AppCompat_Light -androidx.preference.R$style: int Base_Widget_AppCompat_Button_Borderless -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWetBulbTemperature(java.lang.Integer) -androidx.appcompat.resources.R$styleable: int[] ColorStateListItem -okhttp3.Request: Request(okhttp3.Request$Builder) -com.google.android.material.R$styleable: int TabLayout_tabRippleColor -com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$attr: int cornerRadius -com.xw.repo.bubbleseekbar.R$id: int search_button -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImpl -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial Imperial -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light -androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String sourceId -androidx.viewpager2.R$id -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingBottom -androidx.preference.R$id: int accessibility_custom_action_24 -com.turingtechnologies.materialscrollbar.R$attr: int gapBetweenBars -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed -com.google.android.material.R$attr: int flow_horizontalGap -cyanogenmod.weather.WeatherInfo$DayForecast$1 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getZh_CN() -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit[] values() -androidx.constraintlayout.widget.R$attr: int drawableBottomCompat -androidx.preference.R$styleable: int ColorStateListItem_android_alpha -androidx.vectordrawable.animated.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth -androidx.lifecycle.extensions.R$id: int notification_main_column -com.baidu.location.f -com.google.android.material.R$layout: int mtrl_picker_header_dialog -com.xw.repo.bubbleseekbar.R$attr: int color -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_bar_title_item -androidx.appcompat.widget.AppCompatEditText: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -okio.ByteString: int indexOf(okio.ByteString,int) -okhttp3.internal.http2.Http2Connection$Listener$1: Http2Connection$Listener$1() -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_middle_mtrl_dark -okhttp3.internal.ws.WebSocketProtocol: java.lang.String acceptHeader(java.lang.String) -androidx.lifecycle.ProcessLifecycleOwner$3$1: void onActivityPostResumed(android.app.Activity) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber) -com.jaredrummler.android.colorpicker.R$color: int abc_color_highlight_material -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_color -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMargin -james.adaptiveicon.R$anim: int abc_shrink_fade_out_from_bottom -cyanogenmod.app.Profile$DozeMode: Profile$DozeMode() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixTextAppearance -androidx.hilt.R$id: int notification_main_column_container -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColorLink -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onTimeoutError(long,java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int titleTextStyle -androidx.viewpager2.R$styleable: int RecyclerView_layoutManager -wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndTitle -com.github.rahatarmanahmed.cpv.R$dimen: int cpv_default_thickness -cyanogenmod.profiles.ConnectionSettings: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Date -androidx.drawerlayout.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.R$string: int abc_search_hint -androidx.activity.ImmLeaksCleaner -com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_android_alpha -androidx.legacy.coreutils.R$style -wangdaye.com.geometricweather.R$attr: int actionModeSplitBackground -wangdaye.com.geometricweather.R$attr: int closeIconSize -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView -androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context) -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: org.reactivestreams.Subscription receiver -com.google.gson.stream.JsonReader: java.lang.String getPath() -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_menu_material -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments comments -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: java.util.ArrayDeque observers -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: java.lang.Object enterTransform(java.lang.Object) -james.adaptiveicon.R$style: int Base_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -androidx.core.R$id: int accessibility_custom_action_15 -okhttp3.internal.ws.WebSocketWriter: void writeClose(int,okio.ByteString) -com.xw.repo.bubbleseekbar.R$id: int alertTitle -wangdaye.com.geometricweather.R$attr: int startIconCheckable -com.google.android.gms.dynamite.DynamiteModule$DynamiteLoaderClassLoader: java.lang.ClassLoader sClassLoader -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getSelectedItemId() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: java.util.concurrent.atomic.AtomicReference other -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitation(java.lang.Float) -okhttp3.internal.connection.RouteSelector$Selection: int nextRouteIndex -com.turingtechnologies.materialscrollbar.DragScrollBar -androidx.constraintlayout.widget.R$attr: int paddingEnd -androidx.appcompat.R$color: int material_blue_grey_950 -com.google.android.material.R$color: int abc_search_url_text_selected -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_height -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setBackgroundResource(int) -androidx.appcompat.widget.ViewStubCompat: void setLayoutResource(int) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void drain() -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorFullWidth -com.turingtechnologies.materialscrollbar.R$attr: int borderWidth -wangdaye.com.geometricweather.R$string: int password_toggle_content_description -com.xw.repo.bubbleseekbar.R$id: int search_badge -com.turingtechnologies.materialscrollbar.R$drawable: int design_ic_visibility -androidx.recyclerview.R$layout: int notification_template_custom_big -com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$color: int abc_btn_colored_borderless_text_material -com.google.android.material.R$layout: int abc_action_bar_title_item -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List probabilityForecast -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animAutostart -james.adaptiveicon.R$styleable: int[] PopupWindow -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -com.google.android.material.R$attr: int textColorSearchUrl -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRealFeelShaderTemperature(java.lang.Integer) -com.jaredrummler.android.colorpicker.R$attr: int windowActionBar -wangdaye.com.geometricweather.settings.dialogs.AdaptiveIconDialog: AdaptiveIconDialog() -wangdaye.com.geometricweather.R$drawable: int ic_github_dark -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Light_ActionBar_Solid -androidx.hilt.R$id: int accessibility_custom_action_22 -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int limit -cyanogenmod.app.PartnerInterface: java.lang.String MODIFY_NETWORK_SETTINGS_PERMISSION -okio.Segment: Segment(byte[],int,int,boolean,boolean) -androidx.vectordrawable.animated.R$id: int line1 -androidx.appcompat.R$attr: int actionBarTabTextStyle -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_3DES_EDE_CBC_MD5 -androidx.vectordrawable.R$attr -com.google.android.material.R$integer: int design_tab_indicator_anim_duration_ms -com.google.android.material.R$drawable: int btn_radio_off_to_on_mtrl_animation -com.turingtechnologies.materialscrollbar.R$id: int left -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context,android.util.AttributeSet,int) -android.didikee.donate.R$attr: int expandActivityOverflowButtonDrawable -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchPopulateAccessibilityEvent(android.view.accessibility.AccessibilityEvent) -james.adaptiveicon.R$attr: int seekBarStyle -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1(retrofit2.Call) -com.google.android.material.R$attr: int errorIconTintMode -androidx.preference.R$attr: int checkedTextViewStyle -androidx.appcompat.R$id: int image -okhttp3.internal.http2.Hpack$Reader: void readIndexedHeader(int) -com.amap.api.location.AMapLocationClient: com.amap.api.location.AMapLocation getLastKnownLocation() -retrofit2.adapter.rxjava2.CallEnqueueObservable -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_42 -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low_pressed -androidx.constraintlayout.widget.R$attr: int actionModeStyle -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean notificationGroupExistsByName(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getLogo() -com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfRain -com.google.android.gms.base.R$string: int common_google_play_services_update_button -androidx.appcompat.R$layout: int abc_search_view -androidx.appcompat.R$attr: int buttonBarButtonStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_Layout_layout_scrollFlags -cyanogenmod.app.CustomTile: android.app.PendingIntent deleteIntent -retrofit2.Response: boolean isSuccessful() -wangdaye.com.geometricweather.R$drawable: int abc_cab_background_top_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isIsModify() -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: ObservableZip$ZipCoordinator(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) -com.google.android.material.R$styleable: int ViewStubCompat_android_id -com.google.android.material.R$string -androidx.appcompat.R$dimen: int abc_dropdownitem_text_padding_right -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Light -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarDivider -wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_nextButton -com.autonavi.aps.amapapi.model.AMapLocationServer: void b(java.lang.String) -io.reactivex.Observable: io.reactivex.Single first(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_iconResStart -wangdaye.com.geometricweather.R$attr: int placeholderTextColor -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: cyanogenmod.externalviews.IKeyguardExternalViewProvider asInterface(android.os.IBinder) -james.adaptiveicon.R$color: int material_grey_300 -androidx.preference.R$styleable: int[] ColorStateListItem -androidx.work.R$dimen: int compat_notification_large_icon_max_width -androidx.preference.R$styleable: int ColorStateListItem_android_color -androidx.preference.R$id: int action_bar_container -androidx.preference.R$styleable: int Preference_iconSpaceReserved -androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -androidx.lifecycle.SavedStateHandleController$1: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String FLAVOR -wangdaye.com.geometricweather.R$attr: int spinnerStyle -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_SETTINGS -androidx.appcompat.R$attr: int buttonTint -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_item_max_width -com.google.android.material.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -cyanogenmod.app.StatusBarPanelCustomTile: long getPostTime() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -androidx.constraintlayout.widget.R$dimen: int notification_large_icon_height -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_12 -androidx.preference.R$id: int notification_main_column_container -com.google.android.material.R$attr: int subtitleTextColor -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event[] values() -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description Description -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Toolbar -com.google.android.material.R$style: int Theme_AppCompat_Dialog_Alert -okio.Buffer: okio.ByteString readByteString(long) -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: ObservableReplay$ReplayObserver(io.reactivex.internal.operators.observable.ObservableReplay$ReplayBuffer) -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay -com.google.android.material.chip.Chip: void setChecked(boolean) -com.amap.api.fence.GeoFence: java.lang.String a -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginStart -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$drawable: int clock_dial_light -com.google.android.material.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -com.google.android.material.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlActivated -com.google.android.material.R$color: int mtrl_bottom_nav_ripple_color -retrofit2.ParameterHandler$PartMap -cyanogenmod.themes.ThemeManager: void registerProcessingListener(cyanogenmod.themes.ThemeManager$ThemeProcessingListener) -com.google.android.material.R$attr: int textAppearanceListItemSmall -com.amap.api.location.AMapLocation: java.lang.String getCountry() -com.google.android.material.R$styleable: int Transform_android_scaleX -james.adaptiveicon.R$color: int switch_thumb_material_light -wangdaye.com.geometricweather.R$drawable: int design_password_eye -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchTextAppearance -wangdaye.com.geometricweather.R$attr: int closeIcon -cyanogenmod.externalviews.ExternalView$3: ExternalView$3(cyanogenmod.externalviews.ExternalView) -okhttp3.CertificatePinner -androidx.appcompat.R$drawable: int abc_textfield_activated_mtrl_alpha -androidx.swiperefreshlayout.R$layout -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getSubtitle() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_activityChooserViewStyle -com.google.android.material.R$styleable: int AppCompatTheme_windowFixedHeightMinor -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State[] $VALUES -com.google.android.material.R$styleable: int KeyCycle_curveFit -wangdaye.com.geometricweather.R$attr: int closeIconEnabled -okhttp3.Handshake: okhttp3.TlsVersion tlsVersion -com.google.android.material.R$styleable: int Chip_chipIconVisible -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_ICONS -com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding[] values() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIcon -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: int getTemperature(int) -wangdaye.com.geometricweather.R$attr: int buttonStyle -wangdaye.com.geometricweather.R$string: int get_more -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_1 -cyanogenmod.alarmclock.ClockContract$InstancesColumns: android.net.Uri CONTENT_URI -com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_padding -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: ObservableScalarXMap$ScalarDisposable(io.reactivex.Observer,java.lang.Object) -androidx.appcompat.R$attr: int multiChoiceItemLayout -retrofit2.OptionalConverterFactory$OptionalConverter: java.lang.Object convert(java.lang.Object) -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void request(long) -wangdaye.com.geometricweather.R$string: int common_google_play_services_unknown_issue -okio.RealBufferedSource: int readUtf8CodePoint() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onKeyguardShowing(boolean) -androidx.constraintlayout.widget.R$styleable: int Constraint_motionProgress -okhttp3.FormBody: int size() -androidx.appcompat.R$drawable: int tooltip_frame_dark -james.adaptiveicon.R$styleable: int AppCompatTheme_dialogPreferredPadding -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_title_material_toolbar -okhttp3.TlsVersion: okhttp3.TlsVersion[] $VALUES -com.google.android.material.R$style: int Platform_MaterialComponents -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: CaiYunMainlyResult$AqiBeanXX() -wangdaye.com.geometricweather.R$attr: int enabled -androidx.constraintlayout.widget.R$styleable: int ActionBar_backgroundSplit -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_layout -cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient access$200(cyanogenmod.weatherservice.WeatherProviderService) -com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context) -com.google.android.material.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -com.google.android.material.slider.BaseSlider: int getTrackHeight() -okio.Buffer$1: void close() -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_middle_mtrl_light -androidx.loader.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.R$style: int Theme_Design_BottomSheetDialog -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String Type -androidx.lifecycle.Lifecycling: java.lang.String getAdapterName(java.lang.String) -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.R$drawable: int notif_temp_120 -com.google.android.material.chip.ChipGroup: int getChipSpacingVertical() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_divider_mtrl_alpha -okio.Base64: java.lang.String encodeUrl(byte[]) -androidx.fragment.R$dimen: int notification_top_pad -androidx.constraintlayout.widget.R$style: int Base_V23_Theme_AppCompat_Light -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: ObservableConcatMap$ConcatMapDelayErrorObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) -com.baidu.location.indoor.mapversion.c.a$d: double a(double) -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$id: int accessibility_custom_action_5 -com.google.android.material.R$color: int mtrl_bottom_nav_item_tint -com.xw.repo.bubbleseekbar.R$layout: int abc_action_menu_layout -androidx.vectordrawable.animated.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$color: int mtrl_chip_text_color -androidx.appcompat.resources.R$dimen: int notification_top_pad_large_text -androidx.loader.R$drawable: int notification_template_icon_bg -okhttp3.logging.LoggingEventListener: void responseBodyStart(okhttp3.Call) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean) -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State getCurrentState() -android.didikee.donate.R$drawable: int abc_textfield_search_default_mtrl_alpha -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.Object adapt(retrofit2.Call) -androidx.fragment.R$attr: int fontProviderFetchStrategy -androidx.appcompat.R$attr: int buttonTintMode -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_13 -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.appcompat.R$styleable: int AppCompatTheme_dividerHorizontal -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight -androidx.vectordrawable.R$color -androidx.preference.R$style: int Widget_AppCompat_SeekBar -androidx.preference.R$styleable: int MenuGroup_android_menuCategory -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_ActionBar -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_top_padding -androidx.vectordrawable.animated.R$id: int async -cyanogenmod.weather.RequestInfo: int mTempUnit -androidx.core.R$styleable: int FontFamily_fontProviderAuthority -androidx.core.R$id: int accessibility_custom_action_19 -com.jaredrummler.android.colorpicker.R$id: int src_atop -androidx.appcompat.R$id: int accessibility_custom_action_23 -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: java.lang.String[] population -com.google.android.material.R$drawable: int abc_text_select_handle_right_mtrl_light -com.baidu.location.Poi -androidx.appcompat.R$id: int buttonPanel -com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_top_material -okhttp3.RequestBody$3: RequestBody$3(okhttp3.MediaType,java.io.File) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight -james.adaptiveicon.R$id: int multiply -retrofit2.ParameterHandler$2: retrofit2.ParameterHandler this$0 -androidx.appcompat.R$attr: int searchIcon -androidx.appcompat.widget.AppCompatTextView: int getLastBaselineToBottomHeight() -androidx.preference.R$color: int abc_hint_foreground_material_dark -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: long serialVersionUID -androidx.hilt.work.R$id: int right_side -android.didikee.donate.R$style: int Widget_AppCompat_DropDownItem_Spinner -okhttp3.Request$Builder: okhttp3.HttpUrl url -retrofit2.ParameterHandler$Header: void apply(retrofit2.RequestBuilder,java.lang.Object) -androidx.constraintlayout.widget.R$attr: int homeLayout -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_editor_absoluteX -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer realFeelShaderTemperature -okhttp3.Request: java.lang.Object tag(java.lang.Class) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeIndex(java.lang.Integer) -androidx.appcompat.R$attr: int alertDialogCenterButtons -com.google.android.material.R$id: int mtrl_calendar_year_selector_frame -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int ThunderstormProbability -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 -com.jaredrummler.android.colorpicker.R$styleable: int Preference_enabled -com.google.android.material.chip.Chip: void setElevation(float) -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Bridge -androidx.preference.SwitchPreferenceCompat: SwitchPreferenceCompat(android.content.Context,android.util.AttributeSet) -retrofit2.OkHttpCall$NoContentResponseBody: OkHttpCall$NoContentResponseBody(okhttp3.MediaType,long) -androidx.vectordrawable.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_87 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTopCompat -com.google.gson.stream.JsonReader: int PEEKED_EOF -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleTextAppearance -androidx.appcompat.app.AlertController$RecycleListView: AlertController$RecycleListView(android.content.Context) -wangdaye.com.geometricweather.R$string: int settings_notification_hide_big_view_off -androidx.constraintlayout.widget.R$attr: int background -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display3 -com.google.android.material.R$id: int blocking -wangdaye.com.geometricweather.R$styleable: int[] KeyAttribute -cyanogenmod.profiles.StreamSettings: int mValue -com.google.android.material.R$color: int material_on_background_emphasis_medium -com.amap.api.location.AMapLocationClientOption: boolean k -com.google.android.material.R$dimen: int abc_dropdownitem_text_padding_left -com.xw.repo.bubbleseekbar.R$color: int material_deep_teal_200 -com.google.android.material.R$attr: int layout_editor_absoluteX -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_crossfade -okhttp3.CacheControl: int maxStaleSeconds -com.turingtechnologies.materialscrollbar.R$attr: int behavior_fitToContents -com.google.android.material.R$styleable: int Layout_layout_constraintWidth_default -james.adaptiveicon.R$dimen: int abc_search_view_preferred_height -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.internal.disposables.SequentialDisposable upstream -androidx.appcompat.R$styleable: int[] ActionMenuItemView -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX weather -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void accept(java.lang.Object) -io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) -androidx.work.R$id: int accessibility_custom_action_7 -androidx.preference.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -com.xw.repo.bubbleseekbar.R$attr -androidx.constraintlayout.widget.R$id: int honorRequest -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: io.reactivex.Observer downstream -com.google.android.material.R$string: int mtrl_picker_toggle_to_year_selection -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_DarkActionBar -com.google.android.material.R$styleable: int ShapeableImageView_strokeWidth -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windDircEnd -wangdaye.com.geometricweather.R$styleable: int[] RangeSlider -androidx.appcompat.widget.AppCompatImageView: void setImageBitmap(android.graphics.Bitmap) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_toBottomOf -com.xw.repo.bubbleseekbar.R$id: int decor_content_parent -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -cyanogenmod.externalviews.ExternalView: cyanogenmod.externalviews.ExternalViewProperties mExternalViewProperties -wangdaye.com.geometricweather.R$drawable: int ic_thx -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_navigationIcon -cyanogenmod.themes.ThemeChangeRequest$RequestType -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder callbackExecutor(java.util.concurrent.Executor) -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEVICE_HOSTNAME -wangdaye.com.geometricweather.R$array: int clock_font -com.bumptech.glide.integration.okhttp.R$integer: int status_bar_notification_info_maxnum -android.didikee.donate.R$attr: int actionViewClass -androidx.preference.R$style: int Theme_AppCompat_DayNight_NoActionBar -com.google.android.material.circularreveal.cardview.CircularRevealCardView -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_max -com.amap.api.location.AMapLocationClientOption: boolean m -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListMenuView -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object PARENT_DISPOSED -com.google.android.material.R$styleable: int[] MaterialAutoCompleteTextView -com.turingtechnologies.materialscrollbar.R$id: int search_mag_icon -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_primary_mtrl_alpha -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -com.amap.api.fence.GeoFence: void setMaxDis2Center(float) -com.bumptech.glide.integration.okhttp.R$layout: int notification_template_custom_big -com.google.android.material.R$styleable: int Constraint_flow_lastVerticalStyle -com.amap.api.location.LocationManagerBase -com.jaredrummler.android.colorpicker.R$attr: int thumbTextPadding -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_light -androidx.lifecycle.extensions.R -androidx.preference.R$id: int visible_removing_fragment_view_tag -com.google.android.gms.common.zzj -retrofit2.RequestBuilder: void addPart(okhttp3.MultipartBody$Part) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: void setY(java.lang.String) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display3 -androidx.recyclerview.widget.StaggeredGridLayoutManager$SavedState -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton -com.amap.api.location.AMapLocation: java.lang.String o(com.amap.api.location.AMapLocation,java.lang.String) -androidx.preference.R$attr: int titleMarginStart -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type[] typeArguments -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.fuseable.SimpleQueue queue -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice advice -wangdaye.com.geometricweather.R$id: int container_main_footer_title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String unit -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String name -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedReadableDb(char[]) -okhttp3.CertificatePinner$Builder: java.util.List pins -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayHorizontalProvider: WidgetClockDayHorizontalProvider() -android.support.v4.app.INotificationSideChannel$Stub: android.support.v4.app.INotificationSideChannel asInterface(android.os.IBinder) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: MfForecastResult$Forecast$Snow() -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -okio.HashingSink: okio.HashingSink hmacSha512(okio.Sink,okio.ByteString) -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: PrecipitationProbability(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_material_dark -androidx.work.R$id: int line3 -com.jaredrummler.android.colorpicker.R$layout: R$layout() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean -androidx.lifecycle.extensions.R$id: int title -com.google.android.material.R$id: int accessibility_custom_action_21 -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onDetach() -androidx.constraintlayout.widget.R$id: int search_plate -com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabBarStyle -com.google.android.material.slider.BaseSlider: float[] getActiveRange() -androidx.constraintlayout.widget.R$attr: int thumbTintMode -com.google.android.material.appbar.AppBarLayout: void setVisibility(int) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_backgroundTintMode -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Caption -okhttp3.internal.Internal: boolean isInvalidHttpUrlHost(java.lang.IllegalArgumentException) -com.jaredrummler.android.colorpicker.R$attr: int height -com.google.android.material.R$layout: int material_clock_period_toggle -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Subtitle2 -androidx.activity.R$dimen: int compat_button_padding_horizontal_material -okhttp3.Response: boolean isRedirect() -com.google.android.material.R$id: int outline -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Today -androidx.appcompat.widget.Toolbar: android.widget.TextView getSubtitleTextView() -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_scaleY -androidx.constraintlayout.widget.R$attr: int overlapAnchor -com.google.android.material.slider.Slider: void setThumbRadius(int) -androidx.preference.R$attr: int contentInsetStart -androidx.constraintlayout.widget.R$styleable: int[] TextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: int UnitType -androidx.viewpager2.R$color: int ripple_material_light -androidx.swiperefreshlayout.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$styleable: int MenuItem_iconTintMode -com.xw.repo.bubbleseekbar.R$id: int search_close_btn -androidx.appcompat.R$attr: int submitBackground -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_subtitle_top_margin_material -androidx.activity.R$attr: int fontProviderFetchTimeout -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_primary_mtrl_alpha -androidx.appcompat.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -wangdaye.com.geometricweather.R$style: int Preference_SwitchPreferenceCompat_Material -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveOffset -wangdaye.com.geometricweather.R$drawable: int material_ic_edit_black_24dp -wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_xml -com.google.android.material.R$styleable: int FloatingActionButton_shapeAppearance -io.reactivex.internal.subscriptions.SubscriptionArbiter: org.reactivestreams.Subscription actual -androidx.preference.R$styleable: int ActionBar_hideOnContentScroll -androidx.lifecycle.extensions.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getMoldLevel() -com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context,android.util.AttributeSet,int) -androidx.cardview.R$attr: int cardPreventCornerOverlap -okhttp3.internal.http2.Http2: byte FLAG_PADDED -com.google.android.material.R$styleable: int TabLayout_tabMinWidth -cyanogenmod.externalviews.KeyguardExternalView$1: KeyguardExternalView$1(cyanogenmod.externalviews.KeyguardExternalView) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$string: int tag_precipitation -androidx.swiperefreshlayout.R$id: int notification_main_column_container -com.google.android.material.R$attr: int transitionEasing -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: void run() -wangdaye.com.geometricweather.R$id: int fixed -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: int TRANSACTION_getSuggestions -com.bumptech.glide.integration.okhttp.R$drawable: int notification_action_background -okhttp3.internal.io.FileSystem: okhttp3.internal.io.FileSystem SYSTEM -com.google.android.material.R$id: int parent_matrix -com.bumptech.glide.R$id: int title -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_year -com.google.android.material.R$styleable: int[] RecyclerView -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: IRequestInfoListener$Stub$Proxy(android.os.IBinder) -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder maxStale(int,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$drawable: int ic_grass -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6 -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxBackgroundMode -wangdaye.com.geometricweather.R$attr: int state_above_anchor -com.google.android.material.R$styleable: int SnackbarLayout_actionTextColorAlpha -androidx.lifecycle.extensions.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle -cyanogenmod.power.IPerformanceManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -okhttp3.internal.connection.RealConnection: okhttp3.Request createTunnelRequest() -wangdaye.com.geometricweather.R$drawable: int shortcuts_thunder -androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -androidx.constraintlayout.widget.R$id: int checkbox -androidx.appcompat.resources.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.R$id: int toggle -okhttp3.internal.ws.RealWebSocket$Close: long cancelAfterCloseMillis -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec build() -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event BACKGROUND_UPDATE -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric -com.amap.api.fence.GeoFenceClient: void addGeoFence(com.amap.api.location.DPoint,float,java.lang.String) -wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_range_start -androidx.recyclerview.R$id: int accessibility_custom_action_2 -androidx.lifecycle.extensions.R$id: int accessibility_action_clickable_span -com.turingtechnologies.materialscrollbar.R$styleable: int[] SwitchCompat -com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_icon -androidx.cardview.widget.CardView: int getContentPaddingTop() -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType valueOf(java.lang.String) -com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_bias -com.google.android.material.card.MaterialCardView: void setBackgroundInternal(android.graphics.drawable.Drawable) -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter daytimeWeatherCodeConverter -com.google.android.material.textfield.TextInputLayout: void setTextInputAccessibilityDelegate(com.google.android.material.textfield.TextInputLayout$AccessibilityDelegate) -wangdaye.com.geometricweather.R$attr: int arc_angle -wangdaye.com.geometricweather.R$id: int transitionToStart -okhttp3.internal.connection.RouteException: java.io.IOException lastException -james.adaptiveicon.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: java.lang.String Unit -androidx.lifecycle.LiveData$ObserverWrapper: androidx.lifecycle.LiveData this$0 -com.google.android.material.card.MaterialCardView: void setCheckedIcon(android.graphics.drawable.Drawable) -com.google.android.material.R$styleable: int AppCompatTheme_colorPrimary -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display4 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitationDuration() -io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,int) -android.didikee.donate.R$styleable: int[] AppCompatSeekBar -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void subscribe() -wangdaye.com.geometricweather.R$id: int SYM -androidx.preference.R$styleable: int ActionBar_contentInsetStart -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable -okio.ByteString: okio.ByteString digest(java.lang.String) -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Response execute() -okhttp3.internal.cache.DiskLruCache$Snapshot: void close() -androidx.preference.R$styleable: int SwitchPreferenceCompat_switchTextOn -wangdaye.com.geometricweather.R$styleable: int ActionMode_titleTextStyle -wangdaye.com.geometricweather.search.SearchActivity: SearchActivity() -wangdaye.com.geometricweather.R$id: int widget_week_icon_3 -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getTranslateX() -androidx.appcompat.R$style: int TextAppearance_AppCompat_Body1 -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Body1 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionButtonStyle -androidx.appcompat.R$color: int primary_dark_material_dark -com.turingtechnologies.materialscrollbar.R$attr: int titleMarginTop -androidx.constraintlayout.widget.R$attr: int goIcon -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -androidx.drawerlayout.R$styleable: int FontFamilyFont_font -com.google.android.material.R$color: int secondary_text_disabled_material_dark -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: boolean isDisposed() -okhttp3.Response: okhttp3.Response priorResponse -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void disposeBoundary() -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder hostOnlyDomain(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: double Value -com.jaredrummler.android.colorpicker.R$id: int cpv_preference_preview_color_panel -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: long requested() -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: ObservableRetryPredicate$RepeatObserver(io.reactivex.Observer,long,io.reactivex.functions.Predicate,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) -androidx.hilt.work.R$anim: int fragment_fade_enter -wangdaye.com.geometricweather.R$attr: int iconTint -androidx.transition.R$style: int TextAppearance_Compat_Notification_Title -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange Past24HourRange -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float windSpeed -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_separator_vertical_padding -com.google.android.material.R$style: int Widget_AppCompat_Light_SearchView -james.adaptiveicon.R$dimen: int compat_button_inset_vertical_material -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_warmth -androidx.appcompat.R$styleable: int MenuItem_android_numericShortcut -io.reactivex.internal.disposables.CancellableDisposable: void dispose() -cyanogenmod.profiles.ConnectionSettings: int getSubId() -okhttp3.EventListener: okhttp3.EventListener NONE -cyanogenmod.themes.ThemeManager: void unregisterThemeChangeListener(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -com.google.gson.stream.JsonWriter: java.lang.String indent -androidx.activity.R$color -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_corner_radius -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginTop -com.google.android.material.circularreveal.CircularRevealGridLayout: CircularRevealGridLayout(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeightLarge -com.google.android.material.R$color: int design_fab_shadow_start_color -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight -com.google.android.material.chip.Chip: void setChipIconVisible(boolean) -androidx.loader.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Primary -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginBottom -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ListView_DropDown -cyanogenmod.app.CustomTileListenerService: void registerAsSystemService(android.content.Context,android.content.ComponentName,int) -cyanogenmod.weather.WeatherInfo: double mTemperature -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_pressed_holo_light -com.google.android.material.R$attr: int dialogPreferredPadding -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: boolean hasValue -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_shapeAppearance -com.xw.repo.bubbleseekbar.R$styleable: int[] RecycleListView -retrofit2.HttpServiceMethod$SuspendForResponse: retrofit2.CallAdapter callAdapter -cyanogenmod.alarmclock.ClockContract -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: void setSurfaceAngle(float) -wangdaye.com.geometricweather.R$attr: int colorBackgroundFloating -androidx.appcompat.R$styleable: R$styleable() -com.google.android.material.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.customview.R$id: int icon_group -okhttp3.HttpUrl$Builder: HttpUrl$Builder() -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeight -james.adaptiveicon.R$attr: int textAllCaps -com.google.android.material.R$attr: int layout_constraintBottom_creator -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -androidx.lifecycle.ViewModel: void clear() -com.turingtechnologies.materialscrollbar.R$styleable: int[] FontFamilyFont -androidx.legacy.coreutils.R$attr: int fontVariationSettings -androidx.constraintlayout.widget.R$styleable: int[] MenuItem -wangdaye.com.geometricweather.R$drawable: int notification_icon_background -com.google.android.material.R$color: int design_default_color_on_error -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_SIGNAL_ICON -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 -androidx.lifecycle.ComputableLiveData: androidx.lifecycle.LiveData getLiveData() -com.google.android.material.slider.BaseSlider: void setTrackActiveTintList(android.content.res.ColorStateList) -androidx.activity.R$id: int accessibility_custom_action_30 -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_max_width -wangdaye.com.geometricweather.R$id: int moldTitle -androidx.dynamicanimation.R$drawable: int notification_bg_low_normal -io.reactivex.internal.util.NotificationLite$SubscriptionNotification: NotificationLite$SubscriptionNotification(org.reactivestreams.Subscription) -androidx.preference.R$dimen: int abc_action_bar_icon_vertical_padding_material -wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_unselected -cyanogenmod.app.Profile: java.util.UUID mUuid -androidx.appcompat.view.menu.MenuPopup -androidx.appcompat.widget.Toolbar: void setNavigationIcon(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$drawable: int ic_launcher_round -com.google.android.material.R$styleable: int Slider_tickColorActive -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Body1 -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Alert_Bridge -com.xw.repo.bubbleseekbar.R$attr: int backgroundSplit -androidx.appcompat.R$id: int search_close_btn -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_34 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: double Value -android.didikee.donate.R$drawable: int abc_list_selector_holo_light -wangdaye.com.geometricweather.R$string: int common_signin_button_text -androidx.lifecycle.ReportFragment: void onDestroy() -androidx.hilt.lifecycle.R$id: int blocking -androidx.constraintlayout.widget.R$dimen: int disabled_alpha_material_dark -retrofit2.converter.gson.GsonConverterFactory: com.google.gson.Gson gson -androidx.appcompat.R$style: int Base_Widget_AppCompat_ProgressBar -com.xw.repo.bubbleseekbar.R$attr: int actionBarTabBarStyle -wangdaye.com.geometricweather.R$attr: int cpv_borderColor -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableRightCompat -androidx.constraintlayout.widget.R$attr: int mock_labelBackgroundColor -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onStop() -androidx.appcompat.widget.DropDownListView: void setListSelectionHidden(boolean) -androidx.activity.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.lifecycle.LifecycleService: android.os.IBinder onBind(android.content.Intent) -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String description -androidx.activity.R$color: R$color() -com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundMode(int) -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -com.google.android.material.R$attr: int listPreferredItemPaddingEnd -wangdaye.com.geometricweather.R$id: int widget_week_icon_5 -wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_blackContainer -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SeekBar_Discrete -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: java.lang.Object invoke(java.lang.Object) -com.bumptech.glide.R$id: int normal -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_PopupMenu -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display2 -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Tooltip -james.adaptiveicon.R$style: int Widget_AppCompat_SeekBar_Discrete -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver[] CANCELLED -com.xw.repo.bubbleseekbar.R$attr: int theme -com.google.android.material.chip.ChipGroup: void setSingleLine(int) -androidx.hilt.R$id: int notification_main_column -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -android.didikee.donate.R$styleable: int View_android_theme -cyanogenmod.hardware.DisplayMode$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.appcompat.R$id: int alertTitle -androidx.appcompat.R$attr: int fontFamily -com.google.android.material.R$style: int Theme_AppCompat_DialogWhenLarge -okhttp3.ConnectionSpec: boolean tls -androidx.vectordrawable.R$id: int accessibility_custom_action_4 -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light -androidx.constraintlayout.widget.R$styleable: int PropertySet_layout_constraintTag -android.didikee.donate.R$color: int abc_tint_default -cyanogenmod.app.IProfileManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(android.os.Parcel,cyanogenmod.weather.WeatherInfo$1) -okhttp3.internal.platform.AndroidPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -androidx.appcompat.R$styleable: int TextAppearance_android_textColorLink -com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getHideRatio() -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_showSeekBarValue -wangdaye.com.geometricweather.R$color: int design_fab_shadow_mid_color -com.amap.api.fence.GeoFenceManagerBase: void addNearbyGeoFence(java.lang.String,java.lang.String,com.amap.api.location.DPoint,float,int,java.lang.String) -androidx.viewpager.R$styleable: int FontFamilyFont_ttcIndex -okio.Buffer$2: Buffer$2(okio.Buffer) -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_IME_SWITCHER -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: java.util.Queue sources -wangdaye.com.geometricweather.R$attr: int contentPaddingTop -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitationDuration(java.lang.Float) -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_tileMode -retrofit2.converter.gson.GsonResponseBodyConverter: GsonResponseBodyConverter(com.google.gson.Gson,com.google.gson.TypeAdapter) -com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_android_entryValues -com.google.android.material.R$styleable: int AppCompatTheme_checkedTextViewStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setValue(java.util.List) -androidx.preference.R$dimen: int abc_cascading_menus_min_smallest_width -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtendMotionSpec(com.google.android.material.animation.MotionSpec) -com.google.android.material.R$dimen: int mtrl_btn_text_size -cyanogenmod.themes.ThemeManager: void registerThemeChangeListener(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_headerLayout -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean outputFused -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_CollapsingToolbar -androidx.fragment.app.BackStackState -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: void setPathData(androidx.core.graphics.PathParser$PathDataNode[]) -com.google.android.material.R$id: int screen -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA -androidx.loader.R$id: int line1 -wangdaye.com.geometricweather.R$animator: int weather_sleet_3 -android.didikee.donate.R$styleable: int MenuItem_android_id -androidx.appcompat.R$style: int Base_V23_Theme_AppCompat_Light -androidx.appcompat.R$style: int TextAppearance_AppCompat_Title -com.google.android.material.R$styleable: int[] CollapsingToolbarLayout_Layout -com.turingtechnologies.materialscrollbar.R$attr: int iconEndPadding -androidx.core.R$drawable: int notification_bg_low_normal -com.google.android.material.R$styleable: int MenuGroup_android_enabled -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customStringValue -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableItem -com.amap.api.location.AMapLocationClientOption: boolean u -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_shapeAppearanceOverlay -cyanogenmod.themes.ThemeManager: void requestThemeChange(java.lang.String,java.util.List,boolean) -wangdaye.com.geometricweather.R$drawable: int ic_ragweed -okhttp3.FormBody$Builder -android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMarkTintMode -com.google.android.material.R$style: int Theme_MaterialComponents_NoActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int[] AlertDialog -android.didikee.donate.R$styleable: int AppCompatSeekBar_android_thumb -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_right_mtrl_light -androidx.appcompat.R$id: int dialog_button -com.google.android.material.R$styleable: int MaterialButton_strokeWidth -com.google.gson.stream.JsonWriter: void writeDeferredName() -com.google.android.material.R$dimen: int mtrl_calendar_year_vertical_padding -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatHoveredFocusedTranslationZResource(int) -okhttp3.ResponseBody$1: okhttp3.MediaType val$contentType -wangdaye.com.geometricweather.R$string: int wind_2 -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose Transport -wangdaye.com.geometricweather.R$id: int widget_week_temp_1 -com.google.android.material.card.MaterialCardView: void setOnCheckedChangeListener(com.google.android.material.card.MaterialCardView$OnCheckedChangeListener) -com.google.android.material.R$style: int Base_Widget_MaterialComponents_Slider -james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar_Small -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -com.google.android.material.R$styleable: int KeyCycle_android_scaleY -okhttp3.ConnectionPool: boolean cleanupRunning -com.google.android.material.R$attr: int boxCornerRadiusTopStart -okio.RealBufferedSink: okio.Buffer buffer() -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long size -okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Level getLevel() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode -okhttp3.internal.http2.Huffman: int[] CODES -com.google.android.material.R$style: int Platform_V25_AppCompat_Light -androidx.constraintlayout.widget.ConstraintLayout: int getPaddingWidth() -wangdaye.com.geometricweather.R$styleable: int Preference_shouldDisableView -androidx.preference.R$style: int AlertDialog_AppCompat -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Icon -com.google.android.material.R$styleable: int StateListDrawableItem_android_drawable -james.adaptiveicon.R$id: int parentPanel -com.github.rahatarmanahmed.cpv.CircularProgressView: void removeListener(com.github.rahatarmanahmed.cpv.CircularProgressViewListener) -cyanogenmod.providers.CMSettings$NameValueCache: android.content.IContentProvider mContentProvider -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollVerticalThumbDrawable -android.didikee.donate.R$color: int abc_secondary_text_material_dark -com.turingtechnologies.materialscrollbar.R$string: int character_counter_pattern -androidx.fragment.R$styleable: int FontFamily_fontProviderFetchTimeout -okhttp3.internal.Util: void closeQuietly(java.net.Socket) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.disposables.Disposable upstream -com.google.android.material.R$id: int BOTTOM_START -okio.Buffer$UnsafeCursor: okio.Buffer buffer -android.didikee.donate.R$styleable: int AppCompatTheme_dialogTheme -com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialCardView -android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.os.IBinder mRemote -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_popupTheme -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onKeyguardShowing(boolean) -wangdaye.com.geometricweather.R$drawable: int ic_launcher -com.jaredrummler.android.colorpicker.ColorPanelView: int getBorderColor() -com.xw.repo.bubbleseekbar.R$styleable: int View_paddingEnd -okhttp3.internal.http2.Http2Connection$7 -okhttp3.RealCall: okhttp3.EventListener access$000(okhttp3.RealCall) -cyanogenmod.hardware.CMHardwareManager: int[] getDisplayGammaCalibration(int) -okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV2 -com.xw.repo.bubbleseekbar.R$style: int Base_V23_Theme_AppCompat -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver[] EMPTY -retrofit2.Utils$WildcardTypeImpl: int hashCode() -androidx.appcompat.R$drawable: int abc_btn_default_mtrl_shape -androidx.transition.R$id: int ghost_view -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_percent -androidx.coordinatorlayout.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String unit -wangdaye.com.geometricweather.R$color: int cardview_shadow_start_color -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String ObstructionsToVisibility -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeTextType -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu -retrofit2.BuiltInConverters: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) -androidx.viewpager.widget.PagerTitleStrip: int getTextSpacing() -androidx.dynamicanimation.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabText -com.turingtechnologies.materialscrollbar.R$attr: int colorButtonNormal -cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener: void onDetachedFromWindow() -wangdaye.com.geometricweather.common.basic.models.weather.Wind: boolean isValidSpeed() -androidx.fragment.R$id: int action_divider -wangdaye.com.geometricweather.R$attr: int triggerSlack -com.github.rahatarmanahmed.cpv.R$attr: int cpv_indeterminate -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Tooltip -wangdaye.com.geometricweather.R$color: int abc_primary_text_material_light -james.adaptiveicon.R$attr: int fontProviderFetchStrategy -okhttp3.HttpUrl: java.net.URL url() -cyanogenmod.providers.DataUsageContract: java.lang.String FAST_SAMPLES -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_transformPivotY -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Fullscreen -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.util.Date date -wangdaye.com.geometricweather.R$id: int dialog_location_help_manageIcon -androidx.preference.R$color: int abc_primary_text_disable_only_material_dark -androidx.swiperefreshlayout.R$dimen: int notification_top_pad -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_checked -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBaseline_creator -com.autonavi.aps.amapapi.model.AMapLocationServer: AMapLocationServer(java.lang.String) -androidx.fragment.app.FragmentTabHost$SavedState -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void startTimeout(long) -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onSubscribe(org.reactivestreams.Subscription) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date to -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_GLOBAL -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense -wangdaye.com.geometricweather.R$dimen: int abc_button_padding_horizontal_material -wangdaye.com.geometricweather.R$string: int precipitation_heavy -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_disabled -wangdaye.com.geometricweather.R$drawable: int notif_temp_131 -cyanogenmod.providers.CMSettings$Secure: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveShape -androidx.appcompat.R$styleable: int View_android_focusable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial Imperial -com.turingtechnologies.materialscrollbar.R$attr: int listLayout -com.google.android.material.R$styleable: int AppBarLayout_elevation -okhttp3.Address: java.net.Proxy proxy() -android.didikee.donate.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -androidx.preference.R$style: int TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.R$attr: int cpv_alphaChannelVisible -androidx.appcompat.widget.SwitchCompat: void setTrackTintList(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -wangdaye.com.geometricweather.R$dimen: int abc_text_size_body_1_material -wangdaye.com.geometricweather.R$plurals -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: int UnitType -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_disabled -okhttp3.MultipartBody: okhttp3.MediaType DIGEST -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void attachEntity(wangdaye.com.geometricweather.db.entities.WeatherEntity) -cyanogenmod.app.BaseLiveLockManagerService -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onError(java.lang.Throwable) -com.google.android.gms.common.api.Scope -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_color -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableBottomCompat -com.google.android.material.R$attr: int triggerId -io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper DISPOSED -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getCityId() -com.google.android.material.R$dimen: int mtrl_textinput_box_stroke_width_default -androidx.appcompat.resources.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$attr: int maxCharacterCount -androidx.recyclerview.R$attr: int reverseLayout -androidx.lifecycle.LifecycleService: int onStartCommand(android.content.Intent,int,int) -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -com.google.android.material.R$styleable: int[] AnimatedStateListDrawableTransition -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_shapeAppearanceOverlay -androidx.preference.R$id: int expanded_menu -okhttp3.CacheControl: int sMaxAgeSeconds() -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onNext(java.lang.Object) -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_FULL_COLOR -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.ExternalViewProperties mExternalViewProperties -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: long getLtoDownloadInterval() -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.lang.String getRiseTime(android.content.Context) -com.turingtechnologies.materialscrollbar.R$layout: int abc_cascading_menu_item_layout -androidx.preference.R$anim: int fragment_open_enter -androidx.hilt.work.R$dimen: int compat_control_corner_material -okio.BufferedSource: long readAll(okio.Sink) -com.google.android.material.tabs.TabLayout: void setupWithViewPager(androidx.viewpager.widget.ViewPager) -wangdaye.com.geometricweather.R$attr: int actionModeShareDrawable -com.xw.repo.bubbleseekbar.R$attr: int submitBackground -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.internal.disposables.ArrayCompositeDisposable resources -com.google.android.material.R$attr: int expandedTitleMargin -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView -james.adaptiveicon.R$style: int Widget_AppCompat_ListView -androidx.constraintlayout.widget.R$dimen: int notification_right_icon_size -cyanogenmod.app.suggest.IAppSuggestManager$Stub -com.amap.api.fence.GeoFence: java.util.List h -okhttp3.internal.platform.ConscryptPlatform: ConscryptPlatform() -androidx.constraintlayout.widget.R$id: int dialog_button -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorGravity -android.didikee.donate.R$color: int abc_tint_btn_checkable -com.turingtechnologies.materialscrollbar.R$dimen: int abc_panel_menu_list_width -androidx.appcompat.resources.R$id: int tag_accessibility_pane_title -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColorItem_android_offset -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onAttach() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int otherState -wangdaye.com.geometricweather.R$styleable: int MenuItem_iconTint -wangdaye.com.geometricweather.R$attr: int statusBarScrim -com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_icon -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type[] values() -androidx.preference.R$drawable: int abc_textfield_search_activated_mtrl_alpha -androidx.appcompat.widget.AppCompatSpinner: void setAdapter(android.widget.Adapter) -androidx.constraintlayout.widget.R$attr: int showPaths -com.google.android.material.R$styleable: int NavigationView_android_fitsSystemWindows -androidx.preference.R$attr: int contentInsetStartWithNavigation -com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_900 -com.amap.api.location.DPoint$1: java.lang.Object createFromParcel(android.os.Parcel) -okhttp3.Request$Builder: java.lang.String method -com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatPressedTranslationZ() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: float val$swipeProgress -android.didikee.donate.R$color: int primary_text_default_material_dark -android.didikee.donate.R$drawable: int abc_popup_background_mtrl_mult -wangdaye.com.geometricweather.R$styleable: int MotionHelper_onShow -androidx.lifecycle.ComputableLiveData: java.lang.Runnable mRefreshRunnable -androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.app.LiveLockScreenInfo$Builder: int mPriority -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: void setTo(java.util.Date) -wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_grey -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low_pressed -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$id: int icon_group -cyanogenmod.weather.CMWeatherManager: void cancelRequest(int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List forecast -io.reactivex.internal.schedulers.ScheduledDirectTask -androidx.drawerlayout.R$dimen: int notification_action_icon_size -retrofit2.http.Header -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitation -androidx.appcompat.resources.R$id: int accessibility_custom_action_5 -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String ICON_URI -wangdaye.com.geometricweather.R$attr: int msb_textColor -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Info -androidx.preference.R$style: int Widget_AppCompat_TextView_SpinnerItem -com.bumptech.glide.integration.okhttp.R$id: int icon -cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_COLOR_CALIBRATION -androidx.recyclerview.R$layout: int notification_template_part_chronometer -cyanogenmod.themes.ThemeManager$1$1 -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -com.google.android.material.imageview.ShapeableImageView: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -androidx.preference.R$styleable: int TextAppearance_android_textColorHint -androidx.swiperefreshlayout.R$drawable: int notification_bg_normal_pressed -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_xmlIcon -com.xw.repo.bubbleseekbar.R$color: int material_grey_300 -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstVerticalStyle -com.google.android.gms.common.api.AvailabilityException: AvailabilityException(androidx.collection.ArrayMap) -com.google.android.material.bottomsheet.BottomSheetBehavior: BottomSheetBehavior(android.content.Context,android.util.AttributeSet) -androidx.activity.R$style: R$style() -cyanogenmod.profiles.StreamSettings$1 -androidx.constraintlayout.widget.R$styleable: int StateSet_defaultState -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motion_postLayoutCollision -com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Dialog -com.turingtechnologies.materialscrollbar.R$id: int edit_query -androidx.preference.R$drawable: int abc_ic_star_half_black_48dp -com.turingtechnologies.materialscrollbar.R$id: int tabMode -com.google.android.material.R$attr: int rangeFillColor -androidx.constraintlayout.widget.R$styleable: int[] AppCompatTextView -com.xw.repo.bubbleseekbar.R$attr: int iconTintMode -com.google.android.material.R$styleable: int ConstraintSet_motionStagger -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMark -okhttp3.internal.io.FileSystem$1: void rename(java.io.File,java.io.File) -okio.AsyncTimeout$1: okio.AsyncTimeout this$0 -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontWeight -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_listLayout -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_gravity -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void dispose() -androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context) -wangdaye.com.geometricweather.R$string: int abc_action_bar_up_description -androidx.preference.R$style: int Preference_CheckBoxPreference_Material -android.didikee.donate.R$id: int top -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_statusBarScrim -wangdaye.com.geometricweather.R$id: int adjust_width -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_setServiceClient -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_setNotificationGroupBtn -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: boolean daylight -james.adaptiveicon.R$id: int expanded_menu -retrofit2.Platform$Android: Platform$Android() -wangdaye.com.geometricweather.R$string: int content_des_add_current_location -androidx.appcompat.R$styleable: int MenuItem_tooltipText -com.amap.api.fence.GeoFenceManagerBase -androidx.customview.R$style: int TextAppearance_Compat_Notification_Line2 -com.bumptech.glide.integration.okhttp.R$drawable -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver this$0 -james.adaptiveicon.R$dimen: int abc_seekbar_track_background_height_material -com.google.android.material.R$styleable: int KeyPosition_curveFit -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: ObservableRefCount$RefConnection(io.reactivex.internal.operators.observable.ObservableRefCount) -androidx.preference.R$styleable: int Preference_isPreferenceVisible -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_year_abbr -okhttp3.Route: boolean equals(java.lang.Object) -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$RecycledViewPool getRecycledViewPool() -androidx.appcompat.R$attr: int contentInsetEndWithActions -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter -com.jaredrummler.android.colorpicker.R$color: int secondary_text_default_material_dark -com.xw.repo.bubbleseekbar.R$id: int search_bar -com.google.android.material.R$styleable: int KeyTimeCycle_wavePeriod -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void dispose() -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isSingle -androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentListStyle -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getLightsMode() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: AccuCurrentResult$PrecipitationSummary$PastHour$Metric() -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_iconTint -androidx.lifecycle.SavedStateViewModelFactory: android.app.Application mApplication -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: double Value -retrofit2.ParameterHandler: void apply(retrofit2.RequestBuilder,java.lang.Object) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: int Age -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_HOME_LONG_PRESS_ACTION -cyanogenmod.app.CustomTile: java.lang.String resourcesPackageName -androidx.constraintlayout.widget.R$attr: int deltaPolarAngle -wangdaye.com.geometricweather.R$styleable: int Transition_layoutDuringTransition -android.support.v4.app.INotificationSideChannel$Stub: android.os.IBinder asBinder() -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder password(java.lang.String) -androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context) -james.adaptiveicon.R$attr: R$attr() -com.google.android.gms.common.R$integer -james.adaptiveicon.R$drawable: int abc_textfield_activated_mtrl_alpha -androidx.fragment.R$id: int accessibility_custom_action_21 -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView_Menu -james.adaptiveicon.R$styleable: int AppCompatTheme_viewInflaterClass -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_height -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder authenticator(okhttp3.Authenticator) -androidx.lifecycle.extensions.R$id: int action_container -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorHeight -androidx.appcompat.R$interpolator: R$interpolator() -cyanogenmod.themes.IThemeService: boolean isThemeBeingProcessed(java.lang.String) -androidx.constraintlayout.widget.R$attr: int warmth -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderFetchTimeout -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupWindow -com.google.android.material.R$layout: int select_dialog_item_material -androidx.appcompat.R$string: int abc_searchview_description_voice -androidx.constraintlayout.widget.R$id: int none -wangdaye.com.geometricweather.R$id: int month_title -wangdaye.com.geometricweather.R$dimen: int current_weather_icon_size -androidx.preference.R$drawable: int abc_textfield_activated_mtrl_alpha -android.didikee.donate.R$layout -james.adaptiveicon.R$id: int search_button -com.google.gson.JsonIOException: JsonIOException(java.lang.Throwable) -okhttp3.internal.http1.Http1Codec$AbstractSource: okio.ForwardingTimeout timeout -io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicLong missedRequested -com.google.android.material.theme.MaterialComponentsViewInflater: MaterialComponentsViewInflater() -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder socket(java.net.Socket) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -androidx.dynamicanimation.R$id: int right_side -wangdaye.com.geometricweather.R$attr: int color -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastVerticalBias -androidx.preference.SeekBarPreference -wangdaye.com.geometricweather.R$string: int resident_location -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderPackage -androidx.lifecycle.LiveData: void setValue(java.lang.Object) -android.didikee.donate.R$style: int Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.R$styleable: int[] TextAppearance -android.didikee.donate.R$styleable: int AppCompatTheme_windowActionBarOverlay -androidx.drawerlayout.R$styleable: int ColorStateListItem_android_color -androidx.loader.R$attr: int fontProviderPackage -com.google.android.material.R$dimen: int hint_alpha_material_light -wangdaye.com.geometricweather.R$attr: int drawable_res_on -okio.Buffer: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) -com.jaredrummler.android.colorpicker.ColorPickerView: int getPreferredHeight() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.AlertEntity,long) -com.turingtechnologies.materialscrollbar.R$attr: int tabMinWidth -androidx.preference.R$color: int material_blue_grey_800 -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_checked -com.google.android.material.R$attr: int materialCalendarHeaderLayout -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -cyanogenmod.app.ICMStatusBarManager$Stub: cyanogenmod.app.ICMStatusBarManager asInterface(android.os.IBinder) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Tooltip -androidx.hilt.R$styleable: int FontFamilyFont_ttcIndex -com.baidu.location.indoor.mapversion.c.a$d: short[][] g -androidx.dynamicanimation.R$attr -wangdaye.com.geometricweather.R$string: int abc_activity_chooser_view_see_all -android.didikee.donate.R$color: int highlighted_text_material_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_40 -android.didikee.donate.R$dimen: int hint_pressed_alpha_material_dark -wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_light -com.google.android.material.R$id: int mtrl_picker_header_toggle -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme_Light -cyanogenmod.app.IPartnerInterface$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitationDuration -androidx.hilt.work.R$bool: int enable_system_job_service_default -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView_Menu -io.reactivex.Observable: io.reactivex.Observable doOnSubscribe(io.reactivex.functions.Consumer) -com.google.android.gms.common.api.Status: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$string: int apparent_temperature -wangdaye.com.geometricweather.R$attr: int bottomSheetDialogTheme -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textStyle -com.bumptech.glide.R$color: int secondary_text_default_material_light -okhttp3.internal.ws.RealWebSocket: long CANCEL_AFTER_CLOSE_MILLIS -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void drain() -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endY -james.adaptiveicon.R$styleable: int MenuItem_android_id -com.amap.api.fence.PoiItem: int describeContents() -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: long serialVersionUID -android.didikee.donate.R$drawable: int abc_ic_menu_share_mtrl_alpha -com.google.android.material.R$styleable: int ShapeableImageView_shapeAppearanceOverlay -okhttp3.internal.http1.Http1Codec$FixedLengthSink -com.google.android.material.R$styleable: int NavigationView_android_background -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$attr: int preserveIconSpacing -okhttp3.Response: okhttp3.Handshake handshake -androidx.appcompat.widget.LinearLayoutCompat: int getDividerPadding() -okhttp3.internal.cache.CacheStrategy -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_android_enabled -androidx.coordinatorlayout.R$layout -android.didikee.donate.R$styleable: int[] AppCompatTheme -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeDegreeDayTemperature(java.lang.Integer) -androidx.preference.R$styleable: int[] SwitchPreferenceCompat -androidx.constraintlayout.widget.R$attr: int searchIcon -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,io.reactivex.functions.Function,java.util.concurrent.Callable) -com.google.gson.internal.LazilyParsedNumber: java.lang.String toString() -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode getInstance(java.lang.String) -com.google.android.material.R$style: int CardView_Light -wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWidgetConfigActivity -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String dept -cyanogenmod.app.IProfileManager$Stub$Proxy: android.os.IBinder asBinder() -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void run() -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_navigationMode -com.google.gson.stream.JsonWriter: boolean isHtmlSafe() -wangdaye.com.geometricweather.R$id: int mtrl_view_tag_bottom_padding -androidx.coordinatorlayout.R$attr: int fontProviderPackage -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getKey() -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_variablePadding -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String STYLE_URI -com.google.android.material.R$attr: int expandedHintEnabled -androidx.preference.R$attr: int itemPadding -androidx.appcompat.R$styleable: int MenuGroup_android_menuCategory -cyanogenmod.weather.WeatherInfo$Builder: boolean isValidTempUnit(int) -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableItem_android_id -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -okhttp3.Cookie: boolean httpOnly -com.google.android.material.R$color: int secondary_text_disabled_material_light -com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert -wangdaye.com.geometricweather.R$drawable: int avd_hide_password -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Long getId() -wangdaye.com.geometricweather.R$attr: int actionBarStyle -androidx.constraintlayout.motion.widget.MotionLayout: void setInterpolatedProgress(float) -androidx.swiperefreshlayout.R$id: R$id() -wangdaye.com.geometricweather.R$styleable: int Chip_android_textSize -io.reactivex.internal.disposables.EmptyDisposable -okhttp3.internal.http2.Http2Codec: java.lang.String KEEP_ALIVE -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge -androidx.appcompat.R$style: int Widget_AppCompat_RatingBar_Small -androidx.swiperefreshlayout.R$id: int italic -io.reactivex.Observable: io.reactivex.Observable doOnNext(io.reactivex.functions.Consumer) -com.turingtechnologies.materialscrollbar.R$drawable: int avd_hide_password -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type rawType -wangdaye.com.geometricweather.db.entities.LocationEntity: void setProvince(java.lang.String) -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontStyle -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -androidx.loader.R$drawable: int notification_template_icon_low_bg -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontStyle -androidx.preference.R$id: int shortcut -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderCerts -io.reactivex.internal.operators.observable.ObserverResourceWrapper: long serialVersionUID -androidx.appcompat.R$styleable: int AppCompatTextView_drawableEndCompat -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalBias -wangdaye.com.geometricweather.R$id: int regular -androidx.preference.R$styleable: int[] MenuGroup -androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy: ConstraintProxy$BatteryNotLowProxy() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_DAY_VALIDATOR -com.google.android.material.R$id: int right -retrofit2.Utils$WildcardTypeImpl: java.lang.String toString() -androidx.appcompat.R$styleable: int ActionBar_contentInsetStart -androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -com.turingtechnologies.materialscrollbar.R$attr: int suggestionRowLayout -android.didikee.donate.R$drawable: int notification_bg_normal_pressed -androidx.constraintlayout.utils.widget.ImageFilterView: float getBrightness() -wangdaye.com.geometricweather.R$id: int snap -com.google.android.material.R$drawable: int abc_ab_share_pack_mtrl_alpha -cyanogenmod.weather.WeatherInfo$Builder: double mTemperature -com.google.android.material.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide -androidx.vectordrawable.R$dimen: int notification_big_circle_margin -androidx.constraintlayout.widget.R$styleable: int[] Constraint -androidx.preference.R$styleable: int TextAppearance_android_shadowDx -androidx.appcompat.resources.R$id: int icon_group -james.adaptiveicon.R$dimen: int abc_text_size_menu_header_material -wangdaye.com.geometricweather.R$color: int design_default_color_primary_variant -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Headline -okhttp3.internal.Util: java.lang.String[] EMPTY_STRING_ARRAY -com.google.android.material.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets -james.adaptiveicon.R$dimen: int notification_big_circle_margin -androidx.customview.R$dimen: int notification_top_pad_large_text -io.reactivex.internal.observers.BlockingObserver: BlockingObserver(java.util.Queue) -androidx.appcompat.R$styleable: int CompoundButton_buttonTint -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: int getMarginTop() -androidx.preference.R$color: int material_deep_teal_200 -cyanogenmod.app.ProfileManager: void setActiveProfile(java.util.UUID) -cyanogenmod.weatherservice.ServiceRequest: void complete(cyanogenmod.weatherservice.ServiceRequestResult) -wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWeekWidgetConfigActivity: Hilt_DayWeekWidgetConfigActivity() -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: double lat -androidx.vectordrawable.R$dimen: int compat_notification_large_icon_max_width -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemBackground(int) -wangdaye.com.geometricweather.R$color: R$color() -okhttp3.HttpUrl: java.lang.String username -com.jaredrummler.android.colorpicker.R$id: int action_image -com.jaredrummler.android.colorpicker.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme -com.google.android.material.R$string: int icon_content_description -io.reactivex.exceptions.CompositeException: CompositeException(java.lang.Throwable[]) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_removeCustomTileWithTag -wangdaye.com.geometricweather.R$styleable: int Preference_iconSpaceReserved -com.google.android.material.R$styleable: int ThemeEnforcement_enforceTextAppearance -androidx.appcompat.R$anim: int abc_slide_out_bottom -com.google.android.material.floatingactionbutton.FloatingActionButton -james.adaptiveicon.R$styleable: int MenuGroup_android_enabled -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_5 -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColorLink -okhttp3.internal.tls.BasicCertificateChainCleaner -androidx.preference.R$styleable: int FontFamily_fontProviderFetchTimeout -okio.Buffer$2: okio.Buffer this$0 -com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_OFF -androidx.activity.R$id: int tag_accessibility_clickable_spans -androidx.recyclerview.R$styleable: int GradientColor_android_centerX -androidx.work.R$color -io.reactivex.disposables.ReferenceDisposable: ReferenceDisposable(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconDrawable -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_radioButtonStyle -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.fuseable.SimpleQueue queue -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Blue -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_background_transition_holo_light -com.google.android.material.R$styleable: int ShapeAppearance_cornerSize -com.turingtechnologies.materialscrollbar.R$interpolator: R$interpolator() -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.Map rights -wangdaye.com.geometricweather.R$string: int abc_menu_space_shortcut_label -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService -androidx.preference.R$color: int abc_search_url_text_pressed -androidx.appcompat.R$attr: int dividerHorizontal -com.google.android.material.textfield.TextInputLayout: android.widget.TextView getPrefixTextView() -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.Boolean) -androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: org.reactivestreams.Subscription upstream -com.google.android.material.R$attr: int actionModePasteDrawable -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_selectionRequired -androidx.appcompat.R$style: int Platform_V25_AppCompat_Light -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: int UnitType -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm25Desc(java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldDescription(java.lang.String) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver this$0 -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_w -com.google.android.gms.common.server.response.zak: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_subhead_material -com.xw.repo.bubbleseekbar.R$styleable: int[] PopupWindowBackgroundState -james.adaptiveicon.R$layout: int abc_screen_content_include -com.google.android.material.R$styleable: int KeyPosition_percentX -okhttp3.Address: okhttp3.CertificatePinner certificatePinner() -com.baidu.location.e.l$b: l$b(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int,com.baidu.location.e.l$1) -com.turingtechnologies.materialscrollbar.R$layout: int abc_expanded_menu_layout -james.adaptiveicon.R$drawable: int abc_cab_background_top_material -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_placeholder_content -com.google.android.material.R$id: int touch_outside -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_borderlessButtonStyle -okhttp3.internal.http2.Http2Connection: Http2Connection(okhttp3.internal.http2.Http2Connection$Builder) -cyanogenmod.providers.CMSettings$System: java.lang.String DIALER_OPENCNAM_AUTH_TOKEN -com.xw.repo.bubbleseekbar.R$integer: int abc_config_activityShortDur -com.jaredrummler.android.colorpicker.R$attr: int cpv_allowCustom -androidx.constraintlayout.widget.R$styleable: int Constraint_android_transformPivotX -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Light -com.google.android.material.appbar.AppBarLayout: void setStatusBarForeground(android.graphics.drawable.Drawable) -androidx.appcompat.R$id: int accessibility_custom_action_21 -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_divider -androidx.constraintlayout.widget.R$styleable: int Layout_chainUseRtl -okhttp3.Route: okhttp3.Address address -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_seek_by_section -wangdaye.com.geometricweather.R$string: int mini_temp -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onComplete() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory HIGH -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum -androidx.lifecycle.extensions.R$id: int text -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicBoolean stopWindows -androidx.appcompat.widget.Toolbar: void setNavigationIcon(int) -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindSpeed(java.lang.Float) -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -androidx.viewpager.widget.ViewPager: int getOffscreenPageLimit() -okio.Timeout: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) -com.google.android.material.R$id: int accessibility_custom_action_8 -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.appcompat.resources.R$id: int action_image -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_listLayout -androidx.appcompat.R$layout: int abc_alert_dialog_button_bar_material -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorAnimationDuration -retrofit2.ParameterHandler$QueryName: ParameterHandler$QueryName(retrofit2.Converter,boolean) -wangdaye.com.geometricweather.R$string: int of_clock -com.xw.repo.bubbleseekbar.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -com.google.android.material.R$styleable: int ForegroundLinearLayout_android_foreground -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_height_material -androidx.appcompat.widget.AbsActionBarView: void setContentHeight(int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_liftOnScroll -androidx.preference.R$dimen: int abc_edit_text_inset_horizontal_material -com.google.android.material.R$dimen: int mtrl_calendar_navigation_top_padding -com.xw.repo.bubbleseekbar.R$layout: int notification_action -wangdaye.com.geometricweather.R$string: int go_to_set -com.xw.repo.bubbleseekbar.R$id: int checkbox -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ProgressBar -com.jaredrummler.android.colorpicker.R$attr: int subMenuArrow -androidx.appcompat.resources.R$id: int actions -com.google.android.gms.location.ActivityRecognitionResult -androidx.appcompat.view.menu.ListMenuItemView: void setCheckable(boolean) -wangdaye.com.geometricweather.R$menu: R$menu() -cyanogenmod.externalviews.IKeyguardExternalViewProvider -androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_android_color -androidx.loader.R$layout: int notification_template_part_time -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIconTint -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setChecked(boolean) -okhttp3.internal.http2.Header$Listener: void onHeaders(okhttp3.Headers) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_DayNight -androidx.appcompat.R$styleable: int ActionBar_logo -wangdaye.com.geometricweather.R$color: int material_grey_100 -com.google.android.material.slider.RangeSlider: int getFocusedThumbIndex() -wangdaye.com.geometricweather.R$attr: int layout_scrollFlags -io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Object call() -androidx.appcompat.widget.SwitchCompat: void setSwitchMinWidth(int) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTag -james.adaptiveicon.R$id: int decor_content_parent -android.didikee.donate.R$attr: int colorBackgroundFloating -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: AccuDailyResult$DailyForecasts$Day$Wind$Direction() -android.didikee.donate.R$styleable: int AppCompatTheme_actionModePasteDrawable -com.jaredrummler.android.colorpicker.R$attr: int ttcIndex -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RealFeelShaderTemperature -com.google.android.material.R$styleable: int Chip_hideMotionSpec -okio.RealBufferedSource: int read(byte[],int,int) -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status[] values() -com.google.android.material.R$styleable: int MaterialCardView_android_checkable -androidx.constraintlayout.widget.R$attr: int subtitle -wangdaye.com.geometricweather.R$id: int italic -wangdaye.com.geometricweather.R$id: int mtrl_picker_header_selection_text -wangdaye.com.geometricweather.R$layout: int widget_day_temp -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeight -okhttp3.internal.Internal: okhttp3.internal.connection.RouteDatabase routeDatabase(okhttp3.ConnectionPool) -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customIntegerValue -androidx.constraintlayout.widget.R$id: int text -androidx.appcompat.R$style: int Animation_AppCompat_Tooltip -androidx.preference.R$layout: int abc_screen_content_include -androidx.constraintlayout.widget.R$color: int material_blue_grey_950 -com.google.android.gms.location.zzbe -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_SHOW_WEATHER -androidx.core.R$attr: int fontProviderPackage -android.support.v4.app.INotificationSideChannel$Stub -androidx.customview.R$dimen: int notification_subtext_size -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.internal.disposables.SequentialDisposable task -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText -okio.InflaterSource: int bufferBytesHeldByInflater -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean cancelled -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$width -wangdaye.com.geometricweather.R$attr: int mock_showLabel -james.adaptiveicon.R$styleable: int PopupWindowBackgroundState_state_above_anchor -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ImageButton -com.google.android.material.R$styleable: int KeyTimeCycle_waveDecay -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_textColor -androidx.appcompat.R$style: int Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: WeatherEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -androidx.work.R$id: int tag_accessibility_actions -com.google.android.material.R$layout: int abc_alert_dialog_title_material -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_menuCategory -wangdaye.com.geometricweather.R$drawable: int abc_textfield_activated_mtrl_alpha -androidx.cardview.widget.CardView: CardView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$string: int minutely_overview -wangdaye.com.geometricweather.R$string: int maxi_temp -com.google.android.material.circularreveal.CircularRevealGridLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -james.adaptiveicon.R$dimen: int abc_text_size_large_material -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$ReplayBuffer buffer -okhttp3.Dispatcher: int maxRequests -androidx.viewpager2.R$styleable: int FontFamilyFont_android_ttcIndex -com.google.android.material.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -androidx.appcompat.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_DropDownUp -android.didikee.donate.R$attr: int buttonTint -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_minHeight -james.adaptiveicon.R$drawable: int abc_cab_background_internal_bg -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_RC4_128_MD5 -okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor setLevel(okhttp3.logging.HttpLoggingInterceptor$Level) -com.google.android.material.R$id: int staticPostLayout -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_NoActionBar -androidx.appcompat.R$dimen: int abc_control_padding_material -com.xw.repo.bubbleseekbar.R$attr: int colorControlActivated -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_corner_radius -cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(int,cyanogenmod.app.ThemeComponent,java.lang.String,int,int) -androidx.coordinatorlayout.R$id: int title -androidx.constraintlayout.widget.R$id: int sawtooth -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: int UnitType -wangdaye.com.geometricweather.R$attr: int suffixText -androidx.hilt.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric Metric -androidx.appcompat.widget.Toolbar: void setSubtitle(int) -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabTextStyle -androidx.constraintlayout.widget.R$color: int material_deep_teal_500 -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onLockscreenSlideOffsetChanged(float) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean disposed -com.google.android.material.R$color: int abc_tint_default -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircle -okio.GzipSink: java.util.zip.CRC32 crc -com.turingtechnologies.materialscrollbar.R$id: int action_bar_activity_content -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed -androidx.fragment.R$dimen: int notification_big_circle_margin -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -com.xw.repo.bubbleseekbar.R$id: int italic -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onSubscribe(org.reactivestreams.Subscription) -com.google.android.material.circularreveal.CircularRevealGridLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: java.lang.Integer proba3H -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int level -wangdaye.com.geometricweather.R$animator: int weather_snow_3 -androidx.vectordrawable.R$id: int icon_group -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_APP_SWITCH_ACTION_VALIDATOR -androidx.preference.R$styleable: int ActionBar_backgroundStacked -androidx.appcompat.R$styleable: int MenuItem_android_checked -james.adaptiveicon.R$attr: int switchStyle -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_menuCategory -com.turingtechnologies.materialscrollbar.R$attr: int multiChoiceItemLayout -androidx.appcompat.R$style: int Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.R$drawable: int notif_temp_68 -wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setNightIndicatorRotation(float) -androidx.hilt.lifecycle.R$id: int tag_unhandled_key_event_manager -androidx.appcompat.widget.DialogTitle -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String temperature -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstVerticalStyle -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler -io.reactivex.internal.disposables.SequentialDisposable: boolean replace(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$id: int line3 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status[] $VALUES -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onSuccess(java.lang.Object) -wangdaye.com.geometricweather.main.Hilt_MainActivity: Hilt_MainActivity() -androidx.appcompat.R$id: int search_plate -com.google.android.gms.common.internal.DowngradeableSafeParcel -androidx.appcompat.R$styleable: int TextAppearance_fontFamily -androidx.work.impl.background.systemalarm.RescheduleReceiver: RescheduleReceiver() -com.google.android.material.R$styleable: int Transform_android_transformPivotX -android.didikee.donate.R$styleable: int[] LinearLayoutCompat -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf -okhttp3.internal.Util: int delimiterOffset(java.lang.String,int,int,char) -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -cyanogenmod.providers.WeatherContract: java.lang.String AUTHORITY -androidx.preference.R$styleable: int Spinner_android_prompt -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered -com.google.android.material.R$attr: int itemShapeInsetTop -androidx.swiperefreshlayout.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ITALIAN -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String BriefPhrase -com.jaredrummler.android.colorpicker.R$attr: int actionModeWebSearchDrawable -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: ObservableBufferBoundary$BufferBoundaryObserver(io.reactivex.Observer,io.reactivex.ObservableSource,io.reactivex.functions.Function,java.util.concurrent.Callable) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getSnowPrecipitationProbability() -com.google.gson.stream.JsonReader: boolean lenient -androidx.lifecycle.SavedStateHandleController$1: SavedStateHandleController$1(androidx.lifecycle.Lifecycle,androidx.savedstate.SavedStateRegistry) -com.xw.repo.bubbleseekbar.R$styleable: int View_paddingStart -androidx.appcompat.R$styleable: int MenuItem_android_checkable -com.google.android.material.chip.Chip: android.text.TextUtils$TruncateAt getEllipsize() -androidx.hilt.R$id: int accessibility_custom_action_28 -androidx.viewpager2.R$layout: int custom_dialog -com.baidu.location.e.h$a: com.baidu.location.e.h$a valueOf(java.lang.String) -com.google.android.material.R$drawable: int design_password_eye -okhttp3.CipherSuite: java.util.Map INSTANCES -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String getValue() -okhttp3.internal.ws.RealWebSocket: int receivedPingCount -cyanogenmod.weather.CMWeatherManager: int requestWeatherUpdate(android.location.Location,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener) -androidx.activity.R$id: int action_divider -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitation -androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -com.google.android.material.R$styleable: int Slider_trackColorInactive -com.turingtechnologies.materialscrollbar.R$style: int Platform_V25_AppCompat_Light -androidx.drawerlayout.R$dimen: int notification_media_narrow_margin -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: java.lang.String DESCRIPTOR -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarSplitStyle -com.turingtechnologies.materialscrollbar.R$id: int src_atop -com.google.android.material.R$dimen: int abc_control_inset_material -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_android_checkable -androidx.appcompat.widget.AppCompatTextView: java.lang.CharSequence getText() -androidx.loader.R$styleable: int GradientColor_android_endX -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: android.graphics.Rect val$clipRect -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String description -cyanogenmod.hardware.CMHardwareManager: boolean checkService() -okhttp3.Address: int hashCode() -cyanogenmod.hardware.CMHardwareManager: java.lang.String readPersistentString(java.lang.String) -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -cyanogenmod.profiles.StreamSettings: int getValue() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -okio.RealBufferedSink$1: okio.RealBufferedSink this$0 -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -wangdaye.com.geometricweather.R$attr: int state_lifted -wangdaye.com.geometricweather.R$attr: int track -james.adaptiveicon.R$attr: int backgroundSplit -androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int ISOLATED_THUNDERSTORMS -okhttp3.MultipartBody: byte[] CRLF -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -com.turingtechnologies.materialscrollbar.R$attr: int contentPadding -okhttp3.internal.ws.RealWebSocket: void cancel() -com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.WeatherEntity) -cyanogenmod.providers.CMSettings$Secure: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_30 -com.xw.repo.bubbleseekbar.R$dimen: int abc_list_item_padding_horizontal_material -androidx.preference.R$attr: int splitTrack -androidx.core.widget.ContentLoadingProgressBar: ContentLoadingProgressBar(android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setUnit(java.lang.String) -james.adaptiveicon.R$attr: int tooltipText -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_dotDiameter -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object[] toArray() -wangdaye.com.geometricweather.R$animator: int mtrl_fab_transformation_sheet_collapse_spec -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_menuCategory -okhttp3.Cookie: java.lang.String domain() -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_dialogPreferenceStyle -com.github.rahatarmanahmed.cpv.CircularProgressView$3: CircularProgressView$3(com.github.rahatarmanahmed.cpv.CircularProgressView) -com.jaredrummler.android.colorpicker.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthFocused(int) -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_contentScrim -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: int Rank -retrofit2.BuiltInConverters -androidx.preference.R$color: int button_material_light -com.amap.api.fence.GeoFence: long j -androidx.fragment.app.FragmentManagerState: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$styleable: int[] DrawerArrowToggle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout -retrofit2.HttpException: int code -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_textAllCaps -cyanogenmod.app.CustomTileListenerService: void onCustomTileRemoved(cyanogenmod.app.StatusBarPanelCustomTile) -androidx.appcompat.resources.R$id: int text -wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService -com.google.android.material.R$styleable: int ImageFilterView_brightness -okhttp3.WebSocket: boolean send(java.lang.String) -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitle_inputter -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimVisibleHeightTrigger(int) -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_switchTextOn -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Medium -androidx.appcompat.R$dimen: int tooltip_margin -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: boolean isDisposed() -androidx.appcompat.resources.R$id: int accessibility_custom_action_30 -androidx.constraintlayout.widget.R$id: int jumpToStart -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_counter_margin_start -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_holo_light -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -com.google.android.material.R$style: int Theme_Design_Light -com.turingtechnologies.materialscrollbar.R$dimen: int abc_floating_window_z -okhttp3.RealCall$AsyncCall: java.lang.String host() -okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part createFormData(java.lang.String,java.lang.String) -com.google.android.material.R$string: int mtrl_picker_invalid_format -cyanogenmod.providers.CMSettings$Secure: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: java.lang.String getDesc() -com.jaredrummler.android.colorpicker.R$string: int abc_search_hint -wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_icon -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogStyle -androidx.preference.R$attr: int listPreferredItemPaddingStart -com.xw.repo.BubbleSeekBar: float getProgressFloat() -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_scaleX -androidx.preference.R$styleable: int MenuItem_android_id -okhttp3.CacheControl: boolean isPrivate() -retrofit2.Retrofit$Builder: java.util.concurrent.Executor callbackExecutor -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_switchTextOn -androidx.constraintlayout.widget.R$dimen: int tooltip_margin -com.google.android.material.bottomnavigation.BottomNavigationView$SavedState -okhttp3.ResponseBody: void close() -com.google.android.material.button.MaterialButtonToggleGroup: int getVisibleButtonCount() -androidx.preference.R$color: int abc_tint_switch_track -james.adaptiveicon.R$styleable: int MenuView_android_windowAnimationStyle -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -androidx.hilt.work.R$attr: int fontWeight -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm25() -androidx.appcompat.R$styleable: int[] SwitchCompat -cyanogenmod.weather.RequestInfo: int access$202(cyanogenmod.weather.RequestInfo,int) -okhttp3.internal.cache.DiskLruCache: java.util.LinkedHashMap lruEntries -com.turingtechnologies.materialscrollbar.R$attr: int arrowHeadLength -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$layout: int design_navigation_item_header -cyanogenmod.themes.ThemeChangeRequest: long mWallpaperId -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTotalPrecipitation(java.lang.Float) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$attr: int helperTextEnabled -wangdaye.com.geometricweather.R$attr: int actionViewClass -androidx.legacy.coreutils.R$id: int time -wangdaye.com.geometricweather.R$id: int deltaRelative -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: AccuCurrentResult$Past24HourTemperatureDeparture$Metric() -androidx.work.R$id: int notification_main_column -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX info -com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_overlapAnchor -cyanogenmod.hardware.ICMHardwareService: int[] getDisplayGammaCalibration(int) -wangdaye.com.geometricweather.R$attr: int actionProviderClass -com.google.android.material.R$styleable: int Layout_maxHeight -com.turingtechnologies.materialscrollbar.R$style: int Base_V23_Theme_AppCompat -cyanogenmod.weather.WeatherInfo: java.lang.String mCity -androidx.constraintlayout.widget.R$styleable: int[] ViewBackgroundHelper -wangdaye.com.geometricweather.R$id: int item_about_header_appName -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display2 -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: java.lang.String getGroupName() -wangdaye.com.geometricweather.R$styleable: int Badge_backgroundColor -wangdaye.com.geometricweather.R$id: int auto -cyanogenmod.providers.CMSettings$System: java.lang.String REVERSE_LOOKUP_PROVIDER -com.turingtechnologies.materialscrollbar.R$string: int abc_capital_off -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: int active -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea AdministrativeArea -wangdaye.com.geometricweather.R$styleable: int Layout_chainUseRtl -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onError(java.lang.Throwable) -androidx.lifecycle.extensions.R$id: int visible_removing_fragment_view_tag -androidx.recyclerview.R$dimen: int notification_media_narrow_margin -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void cancelLiveLockScreen(java.lang.String,int,int) -androidx.hilt.lifecycle.R$string: R$string() -cyanogenmod.weather.ICMWeatherManager -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver -cyanogenmod.app.CustomTile$ExpandedItem: android.app.PendingIntent onClickPendingIntent -androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context) -androidx.loader.R$id: int action_divider -android.didikee.donate.R$styleable: int Toolbar_titleTextAppearance -com.google.android.material.R$style: int Theme_MaterialComponents_DialogWhenLarge -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfileByName -androidx.preference.R$dimen: int abc_dialog_fixed_height_major -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver parent -james.adaptiveicon.R$attr: int buttonBarNegativeButtonStyle -androidx.appcompat.R$styleable: int LinearLayoutCompat_dividerPadding -androidx.transition.R$id: int line3 -wangdaye.com.geometricweather.R$attr: int lastBaselineToBottomHeight -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_elevation_material -androidx.core.R$id: int right_icon -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitationProbability(java.lang.Float) -com.google.gson.FieldNamingPolicy: java.lang.String separateCamelCase(java.lang.String,java.lang.String) -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_motionTarget -wangdaye.com.geometricweather.R$id: int widget_clock_day_aqiHumidity -wangdaye.com.geometricweather.R$dimen: int mtrl_fab_translation_z_pressed -okhttp3.internal.connection.RealConnection: void establishProtocol(okhttp3.internal.connection.ConnectionSpecSelector,int,okhttp3.Call,okhttp3.EventListener) -wangdaye.com.geometricweather.R$drawable: int weather_clear_day -io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper valueOf(java.lang.String) -androidx.hilt.R$attr: int fontStyle -wangdaye.com.geometricweather.R$id: int visible -androidx.constraintlayout.widget.R$styleable: int[] GradientColorItem -androidx.appcompat.R$attr: int actionModeCopyDrawable -com.google.android.material.R$styleable: int ViewStubCompat_android_inflatedId -com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice Ice -com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_colored -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_Toolbar -androidx.appcompat.R$dimen: int abc_text_size_menu_header_material -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitationDuration -wangdaye.com.geometricweather.R$string: int tree -wangdaye.com.geometricweather.R$layout: int item_icon_provider -okhttp3.internal.http.RealInterceptorChain: int index -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX -com.google.android.material.R$id: int chip1 -com.google.android.material.R$attr: int textAppearanceListItemSecondary -androidx.hilt.work.R$styleable: int ColorStateListItem_android_color -com.google.android.material.R$drawable: int abc_switch_track_mtrl_alpha -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchPadding -com.turingtechnologies.materialscrollbar.R$id: int spacer -james.adaptiveicon.R$styleable: int AppCompatTheme_radioButtonStyle -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onComplete() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber,java.util.concurrent.atomic.AtomicReference) -com.google.android.material.R$styleable: int MaterialCalendarItem_itemShapeAppearanceOverlay -com.google.android.material.internal.BaselineLayout -androidx.preference.R$attr: int windowActionModeOverlay -androidx.preference.R$style: int Preference_CheckBoxPreference -androidx.customview.R$styleable: int GradientColor_android_type -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Surface -androidx.appcompat.widget.Toolbar: int getPopupTheme() -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_SLOW_AVG -io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,java.util.concurrent.Callable) -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: long EpochDate -com.google.android.gms.common.SignInButton: void setEnabled(boolean) -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText -androidx.preference.R$styleable: int AppCompatTheme_actionBarSize -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: double lon -androidx.transition.R$dimen: R$dimen() -androidx.lifecycle.ViewModelStores: androidx.lifecycle.ViewModelStore of(androidx.fragment.app.FragmentActivity) -wangdaye.com.geometricweather.R$attr: int showSeekBarValue -androidx.preference.R$style: int Base_Widget_AppCompat_Button -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -wangdaye.com.geometricweather.R$integer: int show_password_duration -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void run() -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_switch -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_position -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: AccuLocationResult$TimeZone() -com.google.android.material.slider.RangeSlider: float getThumbElevation() -cyanogenmod.app.ICustomTileListener: void onListenerConnected() -androidx.core.R$id: int accessibility_custom_action_26 -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationTextWithoutUnit(float) -androidx.preference.R$id: int line1 -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog_Alert -com.google.android.material.R$layout: int abc_select_dialog_material -io.reactivex.Observable: java.lang.Object blockingLast(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfPrecipitation -androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -androidx.appcompat.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COMPONENT_ID -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogTheme -androidx.appcompat.widget.SwitchCompat: int getSwitchPadding() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: java.lang.String Unit -androidx.appcompat.R$attr: int textAppearanceListItemSmall -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_min -androidx.recyclerview.R$id: int accessibility_custom_action_14 -androidx.savedstate.Recreator -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_transitionEasing -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer cloudCover -androidx.viewpager2.R$styleable: int RecyclerView_android_descendantFocusability -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.util.List getValue() -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: android.os.IBinder asBinder() -androidx.preference.R$attr: int trackTint -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeDegreeDayTemperature -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRealFeelShaderTemperature(java.lang.Integer) -james.adaptiveicon.R$attr: int contentInsetLeft -james.adaptiveicon.R$styleable: int SwitchCompat_track -com.google.android.material.R$drawable: int abc_scrubber_control_off_mtrl_alpha -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour FIXED -androidx.appcompat.R$styleable: int ViewBackgroundHelper_backgroundTint -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: boolean isDisposed() -wangdaye.com.geometricweather.R$styleable: int TextAppearance_textLocale -cyanogenmod.app.ProfileGroup$1: cyanogenmod.app.ProfileGroup createFromParcel(android.os.Parcel) -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_getCurrentLiveLockScreen -james.adaptiveicon.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -androidx.preference.R$id: int list_item -com.amap.api.location.AMapLocationQualityReport: void setInstallHighDangerMockApp(boolean) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void slideLockscreenIn() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SeekBar -okhttp3.CacheControl: boolean noCache -com.google.android.material.tabs.TabLayout: int getTabMode() -wangdaye.com.geometricweather.R$dimen: int large_margin -com.google.android.material.R$styleable: int BottomNavigationView_itemTextAppearanceInactive -androidx.constraintlayout.motion.widget.MotionLayout: void setDebugMode(int) -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.util.concurrent.atomic.AtomicBoolean listRead -com.turingtechnologies.materialscrollbar.R$attr: int logo -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTintMode -retrofit2.ParameterHandler$1: ParameterHandler$1(retrofit2.ParameterHandler) -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense -com.google.android.material.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatImageView -wangdaye.com.geometricweather.R$drawable: int abc_list_longpressed_holo -wangdaye.com.geometricweather.R$id: int search_edit_frame -androidx.lifecycle.extensions.R$dimen: int notification_content_margin_start -androidx.preference.R$attr: int panelMenuListTheme -cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode[] getDisplayModes() -com.xw.repo.bubbleseekbar.R$styleable: int[] MenuGroup -wangdaye.com.geometricweather.R$dimen: int mtrl_progress_indicator_size -com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableItem -android.didikee.donate.R$attr: int titleTextColor -androidx.constraintlayout.widget.R$styleable: int SearchView_queryBackground -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginBottom -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemIconSize -cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.AppSuggestManager getInstance(android.content.Context) -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: int complete -okhttp3.internal.io.FileSystem: void delete(java.io.File) -com.google.android.material.R$styleable: int TextInputLayout_shapeAppearance -com.xw.repo.bubbleseekbar.R$attr: int dropDownListViewStyle -org.greenrobot.greendao.database.DatabaseOpenHelper: void onUpgrade(android.database.sqlite.SQLiteDatabase,int,int) -com.xw.repo.bubbleseekbar.R$dimen: int abc_progress_bar_height_material -com.google.android.material.R$attr: int colorButtonNormal -androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat_Dark -androidx.swiperefreshlayout.R$style: int Widget_Compat_NotificationActionContainer -androidx.preference.R$style: int ThemeOverlay_AppCompat_Light -com.amap.api.location.AMapLocationClient: com.amap.api.location.LocationManagerBase b -wangdaye.com.geometricweather.R$string: int material_clock_display_divider -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric Metric -io.reactivex.internal.disposables.SequentialDisposable: long serialVersionUID -wangdaye.com.geometricweather.R$drawable: int notif_temp_36 -cyanogenmod.app.Profile: void doSelect(android.content.Context,com.android.internal.policy.IKeyguardService) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_SearchView -com.google.android.material.R$attr: int boxBackgroundMode -cyanogenmod.app.Profile: java.util.Map streams -com.google.android.material.R$styleable: int Slider_tickVisible -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_collapseContentDescription -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode IMMEDIATE -androidx.activity.R$id: int accessibility_custom_action_8 -okhttp3.HttpUrl: java.util.List pathSegments -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer degreeDayTemperature -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_elevation -com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context) -wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingEnd -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: double Value -com.google.android.material.R$id: int sawtooth -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerColor -android.didikee.donate.R$styleable: int PopupWindow_overlapAnchor -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSmallPopupMenu -com.google.android.material.R$dimen: int compat_button_inset_vertical_material -cyanogenmod.themes.ThemeManager$1: void onFinish(boolean) -android.didikee.donate.R$attr: int borderlessButtonStyle -com.xw.repo.bubbleseekbar.R$layout: int abc_popup_menu_header_item_layout -wangdaye.com.geometricweather.R$attr: int tabIconTintMode -androidx.coordinatorlayout.R$dimen: int compat_control_corner_material -com.google.gson.stream.JsonReader: void setLenient(boolean) -wangdaye.com.geometricweather.R$id: int dialog_background_location_title -wangdaye.com.geometricweather.R$dimen: int default_dimension -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderFetchStrategy -com.amap.api.fence.GeoFenceClient: void addGeoFence(java.util.List,java.lang.String) -com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_toId -androidx.constraintlayout.widget.ConstraintLayout: int getMinWidth() -wangdaye.com.geometricweather.R$color: int bright_foreground_inverse_material_light -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.R$id: int material_clock_period_toggle -androidx.constraintlayout.widget.R$dimen: int abc_list_item_padding_horizontal_material -okio.Okio$3: Okio$3() -io.reactivex.internal.schedulers.RxThreadFactory: java.lang.String prefix -retrofit2.ParameterHandler$PartMap: java.lang.reflect.Method method -cyanogenmod.providers.CMSettings$DiscreteValueValidator: boolean validate(java.lang.String) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_HIGH -androidx.appcompat.R$id: int src_in -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isPrecipitation() -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_material_light -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_height_material -androidx.hilt.R$dimen: int compat_control_corner_material -com.bumptech.glide.integration.okhttp.R$id: int actions -com.google.android.material.R$style: int Animation_AppCompat_Tooltip -wangdaye.com.geometricweather.R$drawable: int ic_github_light -com.google.android.material.chip.Chip: float getCloseIconEndPadding() -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: boolean isNoDirection() -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_search -io.reactivex.internal.subscriptions.SubscriptionHelper -com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getIndicatorWidth() -wangdaye.com.geometricweather.R$id: int dropdown_menu -androidx.work.R$id: int notification_main_column_container -retrofit2.ParameterHandler: retrofit2.ParameterHandler array() -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex today -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderAuthority -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_visible -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeShareDrawable -androidx.appcompat.R$style: int Widget_Compat_NotificationActionContainer -com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyle -wangdaye.com.geometricweather.R$attr: int chipIconEnabled -wangdaye.com.geometricweather.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: boolean isValid() -androidx.preference.R$styleable: int Preference_android_dependency -com.google.android.material.R$color: int mtrl_textinput_disabled_color -androidx.appcompat.widget.FitWindowsViewGroup -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_constantSize -james.adaptiveicon.R$attr: int contentInsetEndWithActions -okhttp3.internal.ws.RealWebSocket: void onReadMessage(okio.ByteString) -wangdaye.com.geometricweather.R$string: int key_icon_provider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean speed -retrofit2.RequestBuilder: okhttp3.HttpUrl baseUrl -com.google.android.material.R$styleable: int Transition_staggered -cyanogenmod.externalviews.ExternalView: void onActivityResumed(android.app.Activity) -androidx.swiperefreshlayout.R$dimen: int notification_small_icon_size_as_large -androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy valueOf(java.lang.String) -androidx.hilt.R$anim: int fragment_open_exit -androidx.vectordrawable.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.R$attr: int bottom_text_size -com.autonavi.aps.amapapi.model.AMapLocationServer: void c(java.lang.String) -okio.SegmentedByteString: okio.ByteString sha1() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getO3() -com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void drain() -androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_icon_width -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$id: int title -androidx.activity.R$id: int time -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getLongAbbreviation(android.content.Context) -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String unitId -androidx.appcompat.R$id: int accessibility_custom_action_5 -androidx.preference.R$id: int accessibility_custom_action_17 -okhttp3.internal.cache.DiskLruCache: java.lang.String READ -androidx.constraintlayout.widget.R$string: int abc_searchview_description_submit -wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_3 -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionProviderClass -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_menu_item_layout -com.google.android.material.slider.Slider: void setThumbElevationResource(int) -okio.BufferedSource: okio.ByteString readByteString(long) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property SunRiseDate -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lon -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification -io.reactivex.internal.util.VolatileSizeArrayList: long serialVersionUID -james.adaptiveicon.R$styleable: int ActionBar_contentInsetEnd -cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -retrofit2.BuiltInConverters$StreamingResponseBodyConverter: okhttp3.ResponseBody convert(okhttp3.ResponseBody) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display3 -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onError(java.lang.Throwable) -androidx.dynamicanimation.R$dimen: int compat_button_padding_vertical_material -james.adaptiveicon.R$layout: int select_dialog_item_material -androidx.hilt.R$id: int forever -wangdaye.com.geometricweather.R$array: int language_values -com.amap.api.location.APSServiceBase -androidx.constraintlayout.widget.R$attr: int alertDialogButtonGroupStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX getWeather() -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -androidx.preference.R$drawable: int abc_tab_indicator_material -com.turingtechnologies.materialscrollbar.R$styleable: R$styleable() -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onNext(retrofit2.Response) -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.Integer angle -androidx.preference.R$styleable: int Preference_android_enabled -androidx.appcompat.R$attr: int panelMenuListTheme -com.google.android.material.R$dimen: int mtrl_textinput_end_icon_margin_start -com.google.android.material.R$styleable: int Motion_drawPath -androidx.constraintlayout.widget.R$attr: int paddingStart -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SearchView_ActionBar -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: okhttp3.internal.http2.Http2Stream val$newStream -okhttp3.Cache: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Menu -okhttp3.internal.connection.ConnectionSpecSelector: ConnectionSpecSelector(java.util.List) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf -androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_width_material -androidx.coordinatorlayout.R$id: int accessibility_custom_action_28 -cyanogenmod.content.Intent: java.lang.String ACTION_THEME_UPDATED -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.util.Date LocalObservationDateTime -wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout -androidx.hilt.work.R$id: int accessibility_custom_action_29 -com.google.android.material.R$id: int fixed -com.xw.repo.bubbleseekbar.R$attr: int bsb_hide_bubble -androidx.constraintlayout.widget.R$styleable: int TextAppearance_fontVariationSettings -com.google.android.material.imageview.ShapeableImageView: void setStrokeWidthResource(int) -wangdaye.com.geometricweather.R$attr: int bsb_always_show_bubble_delay -androidx.preference.R$style: int PreferenceFragment -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: java.lang.String Code -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startColor -androidx.transition.R$drawable: int notification_template_icon_low_bg -androidx.preference.R$styleable: int DialogPreference_dialogTitle -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_animate_relativeTo -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: int capacityHint -com.google.android.material.R$attr: int actionModeCopyDrawable -wangdaye.com.geometricweather.R$attr: int motionStagger -wangdaye.com.geometricweather.db.entities.DailyEntity: void setWeatherSource(java.lang.String) -cyanogenmod.app.CustomTile$1 -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_checkable -wangdaye.com.geometricweather.R$styleable: int ActionBar_backgroundStacked -retrofit2.ParameterHandler$Headers: int p -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX) -androidx.appcompat.R$drawable: int abc_ic_arrow_drop_right_black_24dp -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_31 -com.github.rahatarmanahmed.cpv.CircularProgressView: android.graphics.Paint paint -com.google.android.material.circularreveal.CircularRevealLinearLayout: void setCircularRevealScrimColor(int) -com.jaredrummler.android.colorpicker.R$style: int Widget_Compat_NotificationActionText -com.amap.api.fence.GeoFenceManagerBase: void pauseGeoFence() -io.reactivex.Observable: io.reactivex.Single lastOrError() -com.google.android.material.slider.Slider: void setThumbStrokeColorResource(int) -com.google.android.material.R$styleable: int AppCompatTheme_actionModeStyle -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginTop -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator QS_SHOW_BRIGHTNESS_SLIDER_VALIDATOR -androidx.viewpager2.R$styleable: int GradientColor_android_startColor -james.adaptiveicon.R$styleable: int LinearLayoutCompat_dividerPadding -android.didikee.donate.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -okio.BufferedSource: void readFully(okio.Buffer,long) -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String latitude -wangdaye.com.geometricweather.R$id: int notification_base_time -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.Object clone() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW_SHOWERS -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List minutelyForecast -androidx.preference.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlActivated -cyanogenmod.weather.RequestInfo$Builder -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getSpeed() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: long serialVersionUID -com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_backgroundTint -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_36dp -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver parent -com.google.android.material.R$string: int abc_menu_ctrl_shortcut_label -com.google.android.material.R$styleable: int[] ShapeAppearance -com.google.android.material.R$dimen: int design_navigation_separator_vertical_padding -okio.ByteString: okio.ByteString toAsciiUppercase() -com.turingtechnologies.materialscrollbar.R$id: int action_mode_close_button -androidx.constraintlayout.widget.R$attr: int motionStagger -com.amap.api.fence.GeoFence: java.lang.String getPendingIntentAction() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_chainUseRtl -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_REVERSE_LOOKUP_VALIDATOR -okhttp3.internal.cache2.Relay -com.amap.api.location.LocationManagerBase: void setLocationListener(com.amap.api.location.AMapLocationListener) -cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener: void onWeatherRequestCompleted(int,cyanogenmod.weather.WeatherInfo) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getUvLevel() -androidx.appcompat.R$color: int abc_tint_btn_checkable -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCloseDrawable -androidx.work.R$styleable: int[] GradientColor -com.google.android.material.R$styleable: int Constraint_android_layout_marginBottom -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableLeftCompat -com.google.android.material.circularreveal.CircularRevealLinearLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_voice -com.amap.api.fence.DistrictItem: java.lang.String getAdcode() -com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding QUALITY -androidx.appcompat.R$style: int Widget_AppCompat_ListView_DropDown -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setBrandId(java.lang.String) -androidx.constraintlayout.utils.widget.ImageFilterButton: float getCrossfade() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: long serialVersionUID -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -com.jaredrummler.android.colorpicker.R$bool: int abc_config_actionMenuItemAllCaps -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: java.lang.String Unit -okhttp3.internal.http2.Http2Codec: okhttp3.Protocol protocol -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams access$400(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: int UnitType -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: int UnitType -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.util.Date pubTime -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_MinWidth_Bridge -androidx.preference.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -james.adaptiveicon.R$styleable: int AlertDialog_singleChoiceItemLayout -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_visible -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_16dp -wangdaye.com.geometricweather.R$drawable: int notif_temp_50 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableEnd -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: CaiYunMainlyResult$ForecastHourlyBean() -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER_Y -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow snow -androidx.preference.R$attr: int buttonBarPositiveButtonStyle -android.didikee.donate.R$styleable: int[] TextAppearance -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_clear -androidx.appcompat.R$styleable: int FontFamilyFont_fontWeight -androidx.dynamicanimation.R$id: int tag_transition_group -com.xw.repo.bubbleseekbar.R$attr: int dividerVertical -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.R$attr: int touchAnchorId -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_allowCustom -android.didikee.donate.R$dimen: int abc_text_size_body_1_material -com.xw.repo.bubbleseekbar.R$style: int Widget_Support_CoordinatorLayout -androidx.preference.PreferenceDialogFragmentCompat -androidx.preference.R$styleable: int SwitchPreference_disableDependentsState -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Longitude -org.greenrobot.greendao.AbstractDao: void saveInTx(java.lang.Object[]) -com.google.android.material.R$styleable: int Transition_transitionDisable -com.google.android.material.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.google.android.material.R$styleable: int Constraint_flow_firstHorizontalStyle -james.adaptiveicon.R$dimen: int abc_edit_text_inset_horizontal_material -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$color: int abc_hint_foreground_material_dark -androidx.vectordrawable.R$layout: int notification_action -wangdaye.com.geometricweather.R$drawable: int weather_haze_pixel -okhttp3.internal.cache.DiskLruCache: boolean remove(java.lang.String) -androidx.appcompat.R$styleable: int ActionBar_contentInsetEndWithActions -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX() -com.xw.repo.bubbleseekbar.R$styleable: int[] LinearLayoutCompat -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListMenuView -com.jaredrummler.android.colorpicker.ColorPanelView: void setBorderColor(int) -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge -com.google.android.material.R$id: int mtrl_card_checked_layer_id -james.adaptiveicon.R$attr: int background -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_toTopOf -wangdaye.com.geometricweather.R$color: int button_material_dark -androidx.constraintlayout.widget.R$styleable: int[] State -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: boolean requestDismiss() -android.didikee.donate.R$color: int switch_thumb_disabled_material_light -androidx.hilt.R$drawable: int notification_bg_normal_pressed -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_width -android.didikee.donate.R$dimen: int abc_dialog_min_width_minor -okhttp3.internal.http2.Http2Connection$Listener$1 -androidx.constraintlayout.utils.widget.ImageFilterView: float getWarmth() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitation() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitation(java.lang.Float) -cyanogenmod.library.R$attr -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getAqiText() -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_CompactMenu -wangdaye.com.geometricweather.R$attr: int collapsingToolbarLayoutStyle -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_indeterminateProgressStyle -androidx.preference.R$attr: int min -androidx.vectordrawable.animated.R$dimen: R$dimen() -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() -androidx.viewpager.R$styleable: int GradientColorItem_android_offset -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -androidx.lifecycle.LifecycleService: void onDestroy() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setAlertId(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: java.lang.String Localized -com.jaredrummler.android.colorpicker.R$id: int textSpacerNoTitle -com.google.android.material.R$id: int icon_group -wangdaye.com.geometricweather.R$attr: int initialExpandedChildrenCount -com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_android_background -wangdaye.com.geometricweather.R$styleable: int Preference_android_layout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.io.FileSystem fileSystem -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: java.lang.String getNewX() -androidx.hilt.R$id: int accessibility_custom_action_5 -androidx.preference.R$attr: int arrowHeadLength -com.amap.api.fence.GeoFence: int ERROR_CODE_UNKNOWN -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationText(android.content.Context,float) -com.google.android.material.R$styleable: int AppCompatTheme_colorControlHighlight -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.Integer getCloudCover() -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline4 -com.bumptech.glide.R$attr: int fontProviderPackage -androidx.preference.R$style: int TextAppearance_AppCompat_Display4 -okhttp3.internal.http2.Hpack: int PREFIX_7_BITS -retrofit2.OkHttpCall: java.lang.Throwable creationFailure -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_RadioButton -okio.Pipe$PipeSource: Pipe$PipeSource(okio.Pipe) -wangdaye.com.geometricweather.R$string: int daily_overview -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.hilt.work.R$styleable: int[] FragmentContainerView -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void subscribeNext() -wangdaye.com.geometricweather.R$id: int test_radiobutton_app_button_tint -retrofit2.Retrofit: Retrofit(okhttp3.Call$Factory,okhttp3.HttpUrl,java.util.List,java.util.List,java.util.concurrent.Executor,boolean) -androidx.customview.R$drawable: R$drawable() -androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_default -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_ADJUST_SOUNDS_ENABLED_VALIDATOR -org.greenrobot.greendao.AbstractDao: long executeInsert(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement,boolean) -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: int getSuggestedMinimumHeight() -io.reactivex.internal.queue.SpscArrayQueue -androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_material -wangdaye.com.geometricweather.R$id: int widget_day_card -cyanogenmod.profiles.RingModeSettings: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.DragScrollBar: float getHandleOffset() -androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean -androidx.work.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition ABOVE_LINE -wangdaye.com.geometricweather.R$string: int key_daily_trend_display -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_material -com.xw.repo.bubbleseekbar.R$style: int Base_V22_Theme_AppCompat_Light -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActivityChooserView -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FAIR_DAY -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Headline -okhttp3.ConnectionPool: long cleanup(long) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeWidthFocused -cyanogenmod.library.R$attr: R$attr() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_left_mtrl_dark -androidx.dynamicanimation.R$dimen: int notification_top_pad_large_text -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedWidthMinor -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_left_mtrl_light -cyanogenmod.weatherservice.ServiceRequestResult: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextEnabled -androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedWidthMinor -okhttp3.internal.connection.RealConnection: void startHttp2(int) -com.google.android.material.slider.BaseSlider: float getMinSeparation() -com.google.android.material.R$styleable: int Constraint_barrierDirection -okhttp3.internal.ws.RealWebSocket$1: void run() -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: long serialVersionUID -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_CONNECTION -james.adaptiveicon.R$drawable: int abc_seekbar_tick_mark_material -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode DAY -com.baidu.location.indoor.mapversion.c.c$b: double c -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getMinutelyEntityList() -wangdaye.com.geometricweather.R$attr: int bsb_track_size -okhttp3.RequestBody$1: RequestBody$1(okhttp3.MediaType,okio.ByteString) -cyanogenmod.weather.IRequestInfoListener$Stub: java.lang.String DESCRIPTOR -android.didikee.donate.R$dimen: int abc_action_button_min_width_overflow_material -android.didikee.donate.R$layout: int notification_action -androidx.constraintlayout.widget.R$layout: int abc_activity_chooser_view -okio.Utf8: long size(java.lang.String) -androidx.preference.R$id: int titleDividerNoCustom -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) -wangdaye.com.geometricweather.background.polling.permanent.observer.TimeObserverService -com.turingtechnologies.materialscrollbar.R$attr: int chipMinHeight -wangdaye.com.geometricweather.R$id: int peekHeight -androidx.preference.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -androidx.preference.R$styleable: int Toolbar_android_gravity -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_19 -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX names -androidx.cardview.widget.CardView: void setCardBackgroundColor(int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind wind -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat -androidx.appcompat.R$id: int textSpacerNoTitle -wangdaye.com.geometricweather.R$attr: int selectableItemBackgroundBorderless -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX() -wangdaye.com.geometricweather.db.entities.AlertEntity: void setCityId(java.lang.String) -androidx.customview.R$dimen: int notification_small_icon_background_padding -android.didikee.donate.R$color: int ripple_material_dark -com.google.android.material.R$attr: int layout_constraintHeight_percent -androidx.preference.R$styleable: int ActionBar_contentInsetEndWithActions -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -androidx.constraintlayout.widget.R$id: int contentPanel -androidx.fragment.R$id: int action_text -io.reactivex.internal.observers.LambdaObserver: void dispose() -james.adaptiveicon.R$drawable: int abc_btn_colored_material -android.didikee.donate.R$string: int abc_action_bar_up_description -androidx.constraintlayout.widget.R$styleable: int GradientColorItem_android_color -android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedWidthMajor -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_count -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startX -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setAlpnProtocols -androidx.hilt.lifecycle.R$attr: int alpha -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_CBC_SHA -androidx.preference.R$style: int Animation_AppCompat_Dialog -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float t -androidx.appcompat.R$attr: int actionBarTabStyle -androidx.activity.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UpdateTime -android.didikee.donate.R$attr: int dialogTheme -wangdaye.com.geometricweather.R$drawable: int notif_temp_136 -cyanogenmod.themes.ThemeManager$ThemeChangeListener: void onProgress(int) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.concurrent.atomic.AtomicInteger active -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.functions.Function mapper -io.reactivex.exceptions.CompositeException -android.didikee.donate.R$styleable: int SwitchCompat_android_textOff -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_black -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemBackground -com.jaredrummler.android.colorpicker.R$string: int cpv_presets -androidx.constraintlayout.widget.R$styleable: int SearchView_searchHintIcon -androidx.recyclerview.R$id: int accessibility_custom_action_6 -okio.BufferedSource: byte[] readByteArray(long) -androidx.work.impl.background.systemalarm.SystemAlarmService: SystemAlarmService() -com.jaredrummler.android.colorpicker.R$attr: int defaultValue -com.jaredrummler.android.colorpicker.R$style: int Base_V26_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: MfForecastV2Result$ForecastProperties$ForecastV2() -androidx.work.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.DailyEntity) -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType valueOf(java.lang.String) -wangdaye.com.geometricweather.R$color: int secondary_text_default_material_dark -androidx.constraintlayout.widget.R$id: int spacer -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_right -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.R$layout: int preference_widget_seekbar_material -androidx.viewpager2.R$id: int accessibility_custom_action_12 -androidx.preference.R$id: int accessibility_custom_action_27 -okio.AsyncTimeout$2: long read(okio.Buffer,long) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean -android.didikee.donate.R$string: int status_bar_notification_info_overflow -androidx.appcompat.R$styleable: int AppCompatTheme_windowNoTitle -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_holo_dark -wangdaye.com.geometricweather.R$drawable: int widget_clock_day_week -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_barLength -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: ObservableWithLatestFromMany$WithLatestInnerObserver(io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver,int) -wangdaye.com.geometricweather.R$id: int treeIcon -wangdaye.com.geometricweather.R$styleable: int ClockHandView_selectorSize -androidx.fragment.R$styleable: int ColorStateListItem_android_alpha -james.adaptiveicon.R$dimen: int abc_dialog_min_width_major -com.jaredrummler.android.colorpicker.R$style: int Preference_SeekBarPreference_Material -androidx.swiperefreshlayout.R$id: int async -androidx.appcompat.R$drawable: int btn_radio_off_mtrl -androidx.preference.R$attr: int navigationMode -wangdaye.com.geometricweather.db.entities.DailyEntity: void setSunRiseDate(java.util.Date) -wangdaye.com.geometricweather.settings.activities.SettingsActivity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String detail -androidx.transition.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.appcompat.R$drawable: int abc_btn_check_material_anim -wangdaye.com.geometricweather.R$styleable: int Chip_textEndPadding -wangdaye.com.geometricweather.R$styleable: int Preference_singleLineTitle -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_updateWeather_0 -cyanogenmod.weather.WeatherLocation: java.lang.String access$602(cyanogenmod.weather.WeatherLocation,java.lang.String) -wangdaye.com.geometricweather.db.entities.AlertEntity: long getTime() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date date -okhttp3.Headers: java.lang.String[] namesAndValues -androidx.preference.R$style: int Widget_Compat_NotificationActionText -com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: FloatingActionButton$BaseBehavior(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$string: int settings_title_notification_can_be_cleared -cyanogenmod.app.ICMTelephonyManager: boolean isDataConnectionSelectedOnSub(int) -com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_percent -cyanogenmod.app.Profile$ExpandedDesktopMode: int ENABLE -okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV3 -androidx.preference.R$styleable: int AppCompatTheme_buttonBarButtonStyle -androidx.legacy.coreutils.R$styleable: int[] FontFamilyFont -james.adaptiveicon.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -com.amap.api.fence.PoiItem: java.lang.String getProvince() -com.google.android.material.R$styleable: int SwitchCompat_trackTintMode -android.didikee.donate.R$style: int Widget_AppCompat_ListMenuView -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.functions.Function mapper -androidx.vectordrawable.animated.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.R$drawable: int test_custom_background -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_NoActionBar -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_start_padding_icon -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_AutoCompleteTextView -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_ttcIndex -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node findByEntry(java.util.Map$Entry) -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.internal.disposables.SequentialDisposable upstream -wangdaye.com.geometricweather.R$drawable: int notif_temp_93 -com.google.android.material.R$attr: int shapeAppearanceSmallComponent -androidx.vectordrawable.animated.R$layout: int notification_action_tombstone -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_headline_material -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf -io.reactivex.internal.observers.ForEachWhileObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_track -james.adaptiveicon.R$attr: int windowFixedWidthMinor -wangdaye.com.geometricweather.R$attr: int constraints -wangdaye.com.geometricweather.R$id: int shades_divider -androidx.appcompat.R$styleable: int TextAppearance_fontVariationSettings -okhttp3.CookieJar -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_BLUE_INDEX -androidx.appcompat.widget.AppCompatSpinner: android.content.res.ColorStateList getSupportBackgroundTintList() -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_preserveIconSpacing -android.didikee.donate.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -cyanogenmod.app.CustomTile: java.lang.String getResourcesPackageName() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.R$id: int material_minute_text_input -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String type -com.google.android.material.R$styleable: int[] PopupWindowBackgroundState -okio.AsyncTimeout: okio.AsyncTimeout next -wangdaye.com.geometricweather.R$drawable: int notif_temp_61 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCopyDrawable -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBaseline_creator -com.jaredrummler.android.colorpicker.R$attr: int fontStyle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean requestDismissAndStartActivity(android.content.Intent) -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_4_material -androidx.lifecycle.AbstractSavedStateViewModelFactory: android.os.Bundle mDefaultArgs -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int color -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource ACCU -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Counter_Overflow -cyanogenmod.power.IPerformanceManager$Stub$Proxy: android.os.IBinder asBinder() -androidx.constraintlayout.widget.R$attr: int contentInsetEndWithActions -androidx.constraintlayout.widget.R$dimen: int abc_text_size_menu_header_material -com.google.android.material.imageview.ShapeableImageView: void setStrokeWidth(float) -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderQuery -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_selectableItemBackground -com.google.android.material.R$style: int Base_Widget_AppCompat_Spinner -androidx.work.R$id: int tag_accessibility_pane_title -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetEnd -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: BaiduIPLocationResult$ContentBean$AddressDetailBean() -androidx.vectordrawable.animated.R$id: int actions -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginBottom -okhttp3.internal.http1.Http1Codec$FixedLengthSink: okio.ForwardingTimeout timeout -androidx.lifecycle.ProcessLifecycleOwner$2: void onCreate() -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int sourceMode -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Title_Inverse -com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_mid_color -com.google.android.material.R$dimen: int notification_top_pad_large_text -okhttp3.internal.http1.Http1Codec$ChunkedSink: boolean closed -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_lineHeight -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_elevation -androidx.transition.R$styleable: int GradientColor_android_startY -com.google.android.material.textfield.TextInputLayout: int getBoxStrokeColor() -com.google.android.material.R$style: int Theme_Design_Light_NoActionBar -com.xw.repo.bubbleseekbar.R$id: int search_mag_icon -androidx.fragment.R$styleable: int FragmentContainerView_android_tag -cyanogenmod.app.IPartnerInterface: boolean setZenMode(int) -com.google.android.material.internal.ForegroundLinearLayout: android.graphics.drawable.Drawable getForeground() -com.google.android.material.R$styleable: int TextInputLayout_startIconContentDescription -androidx.preference.R$layout: int preference_dialog_edittext -com.turingtechnologies.materialscrollbar.R$color: int background_material_dark -androidx.preference.R$style: int TextAppearance_AppCompat_Tooltip -androidx.constraintlayout.widget.R$attr: int onTouchUp -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectTimeout(java.time.Duration) -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean isDisposed() -androidx.constraintlayout.widget.R$bool -com.google.android.material.R$id: int accessibility_custom_action_11 -com.google.android.material.R$styleable: int KeyCycle_waveShape -com.google.android.material.textfield.TextInputLayout: void addOnEndIconChangedListener(com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener) -androidx.preference.R$styleable: int Preference_android_persistent -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean getHumidity() -android.didikee.donate.R$dimen: int abc_text_size_display_4_material -wangdaye.com.geometricweather.R$dimen: int design_appbar_elevation -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Line2 -com.google.android.material.internal.ParcelableSparseArray -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_elevation -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: long read(okio.Buffer,long) -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addQueryParameter(java.lang.String,java.lang.String) -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -com.jaredrummler.android.colorpicker.R$id: int text -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotation -com.xw.repo.bubbleseekbar.R$attr: int showDividers -com.jaredrummler.android.colorpicker.R$dimen: int abc_search_view_preferred_width -james.adaptiveicon.R$attr: int dividerPadding -com.google.android.material.R$styleable: int AppCompatTheme_actionBarSize -com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderVisible(boolean) -androidx.constraintlayout.widget.R$attr: int actionModeCloseButtonStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) -okhttp3.WebSocketListener: void onMessage(okhttp3.WebSocket,okio.ByteString) -androidx.appcompat.resources.R$id: int line1 -com.google.android.material.R$id: int selection_type -androidx.constraintlayout.widget.R$styleable: int Transform_android_transformPivotY -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -com.google.android.material.R$xml: int standalone_badge_gravity_top_start -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Counter -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getNo2Desc() -com.google.android.material.R$styleable: int Transition_layoutDuringTransition -androidx.preference.R$id: int scrollView -okhttp3.internal.http.StatusLine: int code -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_type -okio.Pipe$PipeSource -androidx.preference.R$drawable: int tooltip_frame_light -androidx.appcompat.R$id: int contentPanel -retrofit2.http.HTTP: boolean hasBody() -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit valueOf(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconSize -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.lang.Object poll() -okhttp3.OkHttpClient: java.util.List interceptors() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: java.lang.Object item -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motion_postLayoutCollision -com.google.android.material.R$styleable: int TextInputLayout_android_textColorHint -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int) -wangdaye.com.geometricweather.R$dimen: int material_helper_text_font_1_3_padding_horizontal -com.google.android.material.R$styleable: int AlertDialog_buttonPanelSideLayout -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: java.lang.String getActiveWeatherServiceProviderLabel() -androidx.vectordrawable.R$layout: int notification_action_tombstone -com.google.android.material.R$styleable: int Slider_thumbElevation -wangdaye.com.geometricweather.search.Hilt_SearchActivity: Hilt_SearchActivity() -com.turingtechnologies.materialscrollbar.R$attr: int tooltipText -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.X509TrustManager) -com.turingtechnologies.materialscrollbar.R$integer -androidx.loader.R$styleable: int ColorStateListItem_android_alpha -com.google.android.material.R$anim: int mtrl_bottom_sheet_slide_in -androidx.constraintlayout.widget.R$attr: int tickMarkTintMode -androidx.lifecycle.extensions.R$attr: int font -androidx.preference.R$style: int Platform_AppCompat -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.entities.WeatherEntity readEntity(android.database.Cursor,int) -okhttp3.Cache$Entry: int code -com.xw.repo.bubbleseekbar.R$attr: int layout_behavior -cyanogenmod.profiles.AirplaneModeSettings: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$attr: int deriveConstraintsFrom -androidx.constraintlayout.widget.R$attr -androidx.lifecycle.extensions.R$styleable: R$styleable() -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintStart_toStartOf -androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$attr: int colorControlHighlight -okio.Buffer: java.lang.Object clone() -com.google.android.material.textfield.TextInputLayout: void setEnabled(boolean) -androidx.legacy.coreutils.R$dimen: int compat_button_padding_vertical_material -androidx.preference.R$dimen: int abc_action_bar_default_padding_start_material -wangdaye.com.geometricweather.R$id: int bottomBar -cyanogenmod.themes.IThemeProcessingListener$Stub: int TRANSACTION_onFinishedProcessing_0 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: int Severity -wangdaye.com.geometricweather.R$string: int settings_notification_hide_big_view_on -retrofit2.BuiltInConverters$VoidResponseBodyConverter: java.lang.Void convert(okhttp3.ResponseBody) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean -cyanogenmod.hardware.ICMHardwareService: boolean isSunlightEnhancementSelfManaged() -wangdaye.com.geometricweather.R$styleable: int[] StateSet -wangdaye.com.geometricweather.R$string: int settings_title_forecast_today_time -androidx.appcompat.R$styleable: int Toolbar_navigationIcon -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_28 -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMargin -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial -com.xw.repo.bubbleseekbar.R$id: int scrollIndicatorUp -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeStyle -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -androidx.constraintlayout.widget.R$id: int startVertical -james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_RadioButton -androidx.preference.R$attr: int switchTextOn -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context,android.util.AttributeSet,int) -okhttp3.ConnectionSpec$Builder: java.lang.String[] cipherSuites -androidx.appcompat.R$style: int Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_alert -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: java.util.List brands -com.jaredrummler.android.colorpicker.R$attr: int collapseContentDescription -com.turingtechnologies.materialscrollbar.R$attr: int chipSpacing -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties -com.google.android.material.textfield.TextInputLayout: void setStartIconCheckable(boolean) -com.google.android.material.slider.Slider: void setFocusedThumbIndex(int) -com.google.android.material.R$styleable: int[] CoordinatorLayout -okhttp3.internal.cache2.Relay: long upstreamPos -androidx.preference.R$drawable: int notification_icon_background -com.amap.api.location.CoordinateConverter$1 -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String moldDescription -com.google.android.material.R$styleable: int CollapsingToolbarLayout_contentScrim -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: int getStatus() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onScreenTurnedOn() -wangdaye.com.geometricweather.R$attr: int prefixTextColor -com.google.android.material.R$styleable: int AppCompatTheme_tooltipFrameBackground -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerY -androidx.appcompat.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -okhttp3.RequestBody: RequestBody() -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status RUNNING -james.adaptiveicon.R$attr: int autoSizeTextType -cyanogenmod.app.Profile$NotificationLightMode -wangdaye.com.geometricweather.R$attr: int drawableRightCompat -com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int[] TouchScrollBar -androidx.lifecycle.SavedStateHandleController: void attachHandleIfNeeded(androidx.lifecycle.ViewModel,androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) -androidx.appcompat.R$id: int split_action_bar -androidx.preference.R$styleable: int PopupWindow_overlapAnchor -okhttp3.internal.http2.Http2Stream$FramingSink: void close() -okhttp3.Cache: int requestCount -okhttp3.internal.connection.StreamAllocation: java.net.Socket deallocate(boolean,boolean,boolean) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onScreenTurnedOn() -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderFetchStrategy -cyanogenmod.weather.WeatherInfo$DayForecast$Builder -com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.badge.BadgeDrawable getBadge() -androidx.appcompat.R$attr: int popupWindowStyle -cyanogenmod.themes.ThemeChangeRequest: int DEFAULT_WALLPAPER_ID -okhttp3.RealCall$AsyncCall: okhttp3.RealCall get() -wangdaye.com.geometricweather.R$drawable: int star_1 -com.google.android.material.button.MaterialButton: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPm10(java.lang.Float) -androidx.customview.R$id: int chronometer -androidx.appcompat.R$dimen: int abc_text_size_button_material -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid -com.google.android.material.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.preference.R$layout: R$layout() -wangdaye.com.geometricweather.R$id: int dialog_button -com.bumptech.glide.R$styleable: int ColorStateListItem_android_color -com.xw.repo.bubbleseekbar.R$attr: int tooltipText -androidx.appcompat.R$styleable: int[] PopupWindowBackgroundState -androidx.legacy.coreutils.R$id: int notification_background -com.google.android.material.R$attr: int circularRadius -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListPopupWindow -com.google.android.material.R$attr: int materialThemeOverlay -com.google.android.material.R$attr: int drawableTintMode -androidx.appcompat.widget.AppCompatCheckedTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.String TABLENAME -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String sourceUrl -com.turingtechnologies.materialscrollbar.R$attr: int tooltipForegroundColor -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_end_padding_icon -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionMode -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicReference upstream -androidx.activity.R$id: int accessibility_custom_action_6 -cyanogenmod.hardware.CMHardwareManager: int getThermalState() -okhttp3.internal.http1.Http1Codec: int STATE_READ_RESPONSE_HEADERS -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -com.turingtechnologies.materialscrollbar.R$attr: int stackFromEnd -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableEnd -com.google.android.material.R$drawable: int abc_ic_menu_cut_mtrl_alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSo2(java.lang.String) -androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.google.android.material.R$color: int mtrl_filled_background_color -com.google.android.material.R$styleable: int Layout_minHeight -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_padding_material -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -okhttp3.internal.http2.Http2Connection$1 -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setId(java.lang.Long) -cyanogenmod.externalviews.ExternalView$1: cyanogenmod.externalviews.ExternalView this$0 -com.google.android.material.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getUnitId() -androidx.recyclerview.widget.RecyclerView: void setAccessibilityDelegateCompat(androidx.recyclerview.widget.RecyclerViewAccessibilityDelegate) -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State CANCELLED -com.xw.repo.bubbleseekbar.R$attr: int viewInflaterClass -androidx.preference.R$style: int Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText -com.jaredrummler.android.colorpicker.R$bool: R$bool() -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String g -wangdaye.com.geometricweather.R$string: int nighttime -io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int) -androidx.constraintlayout.widget.R$id: int dragEnd -com.google.android.material.R$styleable: int[] ActionBar -androidx.constraintlayout.widget.R$id: int expanded_menu -retrofit2.http.PUT -androidx.appcompat.R$style: int Widget_AppCompat_SearchView -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeStepGranularity -cyanogenmod.hardware.CMHardwareManager: boolean set(int,boolean) -com.google.android.material.bottomnavigation.BottomNavigationItemView: int getItemVisiblePosition() -androidx.appcompat.widget.AppCompatEditText: void setBackgroundResource(int) -androidx.lifecycle.LiveData: int getVersion() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: int UnitType -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_showAsAction -androidx.preference.R$styleable: int[] ViewBackgroundHelper -io.reactivex.internal.subscriptions.BasicQueueSubscription: long serialVersionUID -cyanogenmod.externalviews.ExternalViewProviderService$Provider: int DEFAULT_WINDOW_TYPE -androidx.lifecycle.extensions.R$dimen -androidx.appcompat.R$attr: int selectableItemBackground -okio.HashingSource -androidx.core.R$layout: int notification_action_tombstone -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Title -com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_padding_material -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark -androidx.appcompat.resources.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List diaoyu -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial() -wangdaye.com.geometricweather.R$color: int colorRootDark_light -androidx.preference.R$styleable: int AppCompatTheme_dividerVertical -cyanogenmod.themes.IThemeService: int getProgress() -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int[] RadialViewGroup -okhttp3.HttpUrl: int defaultPort(java.lang.String) -android.didikee.donate.R$styleable: int AppCompatTheme_homeAsUpIndicator -com.amap.api.location.AMapLocation: java.lang.String w -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties: MfEphemerisResult$Properties() -androidx.customview.R$styleable: int FontFamily_fontProviderPackage -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: java.lang.String getCloudCoverText(int) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List timelaps -androidx.appcompat.R$dimen: int abc_text_size_display_1_material -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindLevel -com.google.android.material.R$attr: int dropDownListViewStyle -com.google.android.material.R$id: int autoCompleteToEnd -com.google.android.material.R$attr: int barLength -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginEnd -com.xw.repo.bubbleseekbar.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float SulfurDioxide -okhttp3.internal.http1.Http1Codec$ChunkedSource: long NO_CHUNK_YET -com.turingtechnologies.materialscrollbar.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_gravity -androidx.preference.R$styleable: int AppCompatTextView_drawableEndCompat -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeTextType -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -okhttp3.internal.tls.OkHostnameVerifier: int ALT_IPA_NAME -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean cancelled -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: boolean isEmpty() -com.turingtechnologies.materialscrollbar.MaterialScrollBar -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: int unitArrayIndex -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorPrimaryDark -wangdaye.com.geometricweather.R$drawable: int notif_temp_121 -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth -androidx.customview.R$styleable: int GradientColorItem_android_offset -okhttp3.internal.cache.DiskLruCache$Entry: java.io.IOException invalidLengths(java.lang.String[]) -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginTop -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setAddress(java.lang.String) -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Switch -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_fontFamily -com.google.android.material.R$drawable: int abc_list_pressed_holo_dark -wangdaye.com.geometricweather.R$string: int introduce -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTheme -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: boolean done -okhttp3.ConnectionPool: int connectionCount() -android.didikee.donate.R$styleable: int SwitchCompat_trackTintMode -wangdaye.com.geometricweather.R$drawable: int ic_sunset -okio.RealBufferedSource: okio.ByteString readByteString(long) -com.google.android.material.R$styleable: int TextInputLayout_endIconDrawable -androidx.appcompat.R$id: int notification_background -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -com.google.android.material.R$style: int TextAppearance_Design_Placeholder -com.turingtechnologies.materialscrollbar.R$string: int character_counter_content_description -com.google.android.material.R$styleable: int AppCompatTheme_colorError -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -cyanogenmod.providers.CMSettings$Secure: boolean putFloat(android.content.ContentResolver,java.lang.String,float) -com.xw.repo.bubbleseekbar.R$attr: int actionBarStyle -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Snackbar -com.amap.api.location.LocationManagerBase: void onDestroy() -androidx.vectordrawable.animated.R$id: int tag_accessibility_actions -okhttp3.internal.http1.Http1Codec$AbstractSource: okio.Timeout timeout() -io.reactivex.Observable: io.reactivex.Observable skip(long) -wangdaye.com.geometricweather.weather.apis.AtmoAuraIqaApi -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation TOP -wangdaye.com.geometricweather.R$string: int content_des_no_precipitation -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endY -androidx.hilt.work.R$styleable: int ColorStateListItem_android_alpha -com.google.android.material.navigation.NavigationView: void setItemMaxLines(int) -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotationX -wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_lineHeight -com.google.android.material.chip.Chip: float getCloseIconStartPadding() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.lang.String getUnit() -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabAlignmentMode -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogTheme -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColorItem_android_offset -cyanogenmod.weather.RequestInfo$1: cyanogenmod.weather.RequestInfo[] newArray(int) -io.reactivex.internal.util.EmptyComponent: void request(long) -wangdaye.com.geometricweather.R$id: int item_about_library_content -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_QUICK_QS_PULLDOWN -androidx.legacy.coreutils.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$string: int help -wangdaye.com.geometricweather.R$attr: int expandedTitleTextAppearance -cyanogenmod.weather.CMWeatherManager: int requestWeatherUpdate(cyanogenmod.weather.WeatherLocation,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener) -com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Object) -com.google.android.material.R$attr: int searchViewStyle -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver -wangdaye.com.geometricweather.R$styleable: int Insets_paddingBottomSystemWindowInsets -wangdaye.com.geometricweather.R$drawable: int notif_temp_64 -com.jaredrummler.android.colorpicker.R$string: int abc_menu_alt_shortcut_label -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_RC4_128_SHA -androidx.transition.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.R$styleable: int ActionBar_progressBarPadding -wangdaye.com.geometricweather.R$dimen: int fastscroll_minimum_range -wangdaye.com.geometricweather.R$style: int Widget_Compat_NotificationActionText -androidx.appcompat.widget.SearchView$SearchAutoComplete: void setThreshold(int) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) -androidx.viewpager2.R$id: int accessibility_custom_action_22 -com.jaredrummler.android.colorpicker.R$attr: int windowFixedHeightMinor -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_menu_header_material -com.google.android.material.R$styleable: int TextInputLayout_android_hint -io.reactivex.Observable: io.reactivex.Observable concatMapIterable(io.reactivex.functions.Function) -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_default -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: android.os.IBinder asBinder() -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_max_width -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource) -com.google.android.material.R$styleable: int[] CompoundButton -com.github.rahatarmanahmed.cpv.CircularProgressView: int animSyncDuration -com.google.android.material.R$styleable: int AppCompatTheme_actionModeSplitBackground -james.adaptiveicon.R$styleable: int MenuView_android_verticalDivider -com.google.android.material.R$styleable: int MaterialButton_rippleColor -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: ObservableConcatMapCompletable$ConcatMapCompletableObserver(io.reactivex.CompletableObserver,io.reactivex.functions.Function,io.reactivex.internal.util.ErrorMode,int) -okio.BufferedSource: int readIntLe() -com.google.android.material.R$attr: int chipSpacingHorizontal -okio.ByteString: okio.ByteString decodeBase64(java.lang.String) -cyanogenmod.app.suggest.AppSuggestManager: android.graphics.drawable.Drawable loadIcon(cyanogenmod.app.suggest.ApplicationSuggestion) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver parent -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetTop -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isResult -cyanogenmod.app.IPartnerInterface: void reboot() -cyanogenmod.externalviews.KeyguardExternalView$4 -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_horizontal -com.xw.repo.bubbleseekbar.R$id: int expanded_menu -com.bumptech.glide.integration.okhttp.R$id: int none -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_preserveIconSpacing -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: ObservableTimeoutTimed$TimeoutFallbackObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker,io.reactivex.ObservableSource) -androidx.viewpager.R$id: int icon -androidx.preference.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_height -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration -wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_focused_alpha -com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_sliderColor -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.preference.R$styleable: int PreferenceImageView_maxWidth -com.bumptech.glide.R$styleable: int FontFamily_fontProviderAuthority -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_min -com.turingtechnologies.materialscrollbar.R$attr: int font -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconTintMode -wangdaye.com.geometricweather.R$layout: int widget_day_week_rectangle -okhttp3.internal.http2.Hpack$Writer: int smallestHeaderTableSizeSetting -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: AccuDailyResult() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon -androidx.constraintlayout.widget.R$styleable: int ActionBar_logo -androidx.preference.R$styleable: int Fragment_android_tag -wangdaye.com.geometricweather.R$layout: int preference_widget_switch -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_content_inset_material -retrofit2.ParameterHandler$HeaderMap: int p -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontWeight -cyanogenmod.profiles.RingModeSettings: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: CNWeatherResult$Alert() -androidx.constraintlayout.widget.R$id: int search_button -com.google.android.material.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf -com.google.android.material.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -androidx.appcompat.resources.R$id: int title -com.google.android.material.R$attr: int waveOffset -retrofit2.RequestFactory$Builder: boolean isFormEncoded -androidx.preference.R$style: int Preference_SwitchPreference -cyanogenmod.externalviews.IExternalViewProvider$Stub: IExternalViewProvider$Stub() -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onScreenTurnedOn() -wangdaye.com.geometricweather.R$attr: int contentPaddingLeft -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotationY -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onDetach() -com.google.android.material.R$attr: int dragDirection -androidx.hilt.lifecycle.R$integer: int status_bar_notification_info_maxnum -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_arrowHeadLength -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeStepGranularity -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String TODAYS_LOW_TEMPERATURE -androidx.viewpager2.widget.ViewPager2: void setPageTransformer(androidx.viewpager2.widget.ViewPager2$PageTransformer) -retrofit2.Converter$Factory: java.lang.Class getRawType(java.lang.reflect.Type) -okio.Pipe: long maxBufferSize -androidx.constraintlayout.widget.R$color: int primary_text_default_material_dark -com.google.android.material.navigation.NavigationView$SavedState -cyanogenmod.app.suggest.AppSuggestManager: boolean DEBUG -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_1_material -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_iconResEnd -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintEnd_toEndOf -androidx.constraintlayout.widget.R$attr: int actionBarTheme -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setDatetime(java.lang.String) -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -okhttp3.internal.http2.Http2Codec -androidx.preference.R$attr: int divider -james.adaptiveicon.R$styleable: int MenuItem_android_checkable -android.didikee.donate.R$drawable: int abc_list_divider_mtrl_alpha -androidx.appcompat.R$styleable: int[] DrawerArrowToggle -androidx.coordinatorlayout.R$id: int end -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ListView_DropDown -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitationProbability -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicReference upstream -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.db.entities.LocationEntity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setStatus(int) -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: java.util.List value -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_percent -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getLongTemperatureText(android.content.Context,int) -james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getAbbreviation(android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean images -cyanogenmod.themes.ThemeManager: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) -com.google.android.material.R$attr: int layout_constraintTag -cyanogenmod.weather.WeatherInfo: long access$1002(cyanogenmod.weather.WeatherInfo,long) -androidx.customview.R$dimen: int notification_right_side_padding_top -com.google.android.material.R$styleable: int Toolbar_titleMargin -james.adaptiveicon.R$style: int Widget_AppCompat_ListView_Menu -androidx.appcompat.R$id: int action_text -com.google.android.material.R$dimen: int mtrl_calendar_days_of_week_height -wangdaye.com.geometricweather.R$drawable: int notif_temp_73 -com.google.android.material.chip.Chip: void setChipEndPaddingResource(int) -retrofit2.adapter.rxjava2.RxJava2CallAdapter -androidx.preference.R$styleable: int SeekBarPreference_showSeekBarValue -com.google.android.material.R$styleable: int Chip_closeIconTint -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Headline -androidx.dynamicanimation.R$styleable: R$styleable() -com.jaredrummler.android.colorpicker.R$attr: int iconifiedByDefault -io.reactivex.Observable: io.reactivex.Observable retryWhen(io.reactivex.functions.Function) -cyanogenmod.profiles.AirplaneModeSettings: void writeToParcel(android.os.Parcel,int) -okio.Base64: byte[] decode(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int[] MenuView -wangdaye.com.geometricweather.R$drawable: int notif_temp_140 -androidx.constraintlayout.widget.R$id: int action_divider -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_2 -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dialog -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_customNavigationLayout -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_backgroundTint -androidx.loader.content.Loader -wangdaye.com.geometricweather.db.entities.AlertEntity: AlertEntity(java.lang.Long,java.lang.String,java.lang.String,long,java.util.Date,long,java.lang.String,java.lang.String,java.lang.String,int,int) -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeStepGranularity -com.turingtechnologies.materialscrollbar.R$attr: int collapsedTitleGravity -wangdaye.com.geometricweather.R$layout: int widget_day_pixel -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_collapsible -com.google.android.material.R$layout -okhttp3.internal.Util: java.nio.charset.Charset UTF_32_BE -james.adaptiveicon.R$layout: int abc_action_menu_layout -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.ICMWeatherManager getService() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconDrawable -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setFillAlpha(float) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias -com.google.android.material.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setUpdateTime(long) -androidx.customview.R$styleable: int FontFamily_fontProviderCerts -com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextEnabled(boolean) -wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress_color -androidx.preference.R$style: int Preference_PreferenceScreen -androidx.vectordrawable.animated.R$dimen: int notification_right_side_padding_top -androidx.recyclerview.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: long dt -com.google.android.material.R$styleable: int Chip_checkedIconTint -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_Solid -androidx.fragment.R$drawable: int notification_bg_low -android.didikee.donate.R$layout: int notification_template_icon_group -android.didikee.donate.R$styleable: int AppCompatTheme_listPopupWindowStyle -wangdaye.com.geometricweather.R$drawable: int abc_vector_test -cyanogenmod.profiles.BrightnessSettings: BrightnessSettings() -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: float degree -androidx.appcompat.R$attr: int dropdownListPreferredItemHeight -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeErrorColor -wangdaye.com.geometricweather.R$id: int action_mode_bar -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol[] values() -android.didikee.donate.R$styleable: int MenuView_subMenuArrow -wangdaye.com.geometricweather.R$string: int gitHub -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void dispose() -cyanogenmod.profiles.ConnectionSettings: boolean mDirty -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: void setBrands(java.util.List) -okhttp3.Cookie: Cookie(java.lang.String,java.lang.String,long,java.lang.String,java.lang.String,boolean,boolean,boolean,boolean) -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_MAX_INDEX -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onComplete() -wangdaye.com.geometricweather.R$style: int Theme_Design -com.google.android.material.R$styleable: int[] SwitchMaterial -com.xw.repo.bubbleseekbar.R$styleable: int PopupWindowBackgroundState_state_above_anchor -wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacingVertical -okhttp3.Address: java.lang.String toString() -android.didikee.donate.R$styleable: int Toolbar_titleTextColor -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderFetchStrategy -com.google.android.material.snackbar.SnackbarContentLayout: SnackbarContentLayout(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$drawable: int design_ic_visibility_off -androidx.preference.R$styleable: int TextAppearance_textAllCaps -androidx.fragment.R$styleable: int GradientColor_android_centerX -androidx.work.NetworkType: androidx.work.NetworkType NOT_REQUIRED -io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean isEmpty() -androidx.work.R$id: int notification_background -androidx.swiperefreshlayout.R$layout: int notification_action_tombstone -androidx.loader.R$attr: int fontProviderFetchStrategy -androidx.fragment.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.R$styleable: int MotionLayout_currentState -retrofit2.Retrofit: retrofit2.CallAdapter callAdapter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) -wangdaye.com.geometricweather.common.basic.models.weather.Alert: long alertId -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance -androidx.preference.R$attr: int buttonStyleSmall -okhttp3.internal.platform.ConscryptPlatform: java.security.Provider getProvider() -androidx.cardview.R$styleable: int CardView_cardMaxElevation -com.google.android.material.R$color: int mtrl_chip_close_icon_tint -androidx.constraintlayout.widget.R$id: int tabMode -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getCounterOverflowDescription() -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getDirection() -androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.LocationEntity,int) -wangdaye.com.geometricweather.R$attr: int startIconTint -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: float getDegree() -androidx.recyclerview.R$color -com.google.gson.internal.LinkedTreeMap: java.util.Comparator comparator -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_middle_mtrl_dark -com.jaredrummler.android.colorpicker.R$attr: int windowActionModeOverlay -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -james.adaptiveicon.R$styleable: int Toolbar_titleMargins -androidx.appcompat.R$style: int Base_Widget_AppCompat_SeekBar -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: void writeTo(okio.BufferedSink) -com.google.android.material.internal.ParcelableSparseIntArray: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: io.reactivex.SingleSource other -wangdaye.com.geometricweather.R$xml: int network_security_config -com.amap.api.location.AMapLocationClientOption: void writeToParcel(android.os.Parcel,int) -androidx.constraintlayout.widget.R$styleable: int MockView_mock_showDiagonals -wangdaye.com.geometricweather.R$string: int material_timepicker_clock_mode_description -androidx.viewpager.R$styleable: int ColorStateListItem_android_color -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_searchHintIcon -com.google.android.gms.common.SignInButton: SignInButton(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$drawable: int ic_location -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver -androidx.core.app.NotificationCompatSideChannelService: NotificationCompatSideChannelService() -com.google.android.material.R$attr: int layout_constraintLeft_creator -androidx.lifecycle.MutableLiveData: void postValue(java.lang.Object) -androidx.preference.R$attr: int summary -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Invalid -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String value -cyanogenmod.hardware.CMHardwareManager: int FEATURE_VIBRATOR -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindSpinner -okio.BufferedSource: int readUtf8CodePoint() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingLeft -com.turingtechnologies.materialscrollbar.R$color: int abc_btn_colored_text_material -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setOnRefreshListener(androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnRefreshListener) -com.google.android.material.chip.Chip: void setBackgroundColor(int) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ButtonBar -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_z -com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_hovered_box_stroke_color -cyanogenmod.app.IPartnerInterface: void setAirplaneModeEnabled(boolean) -cyanogenmod.externalviews.ExternalViewProviderService$Provider: int DEFAULT_WINDOW_FLAGS -androidx.work.R$layout -wangdaye.com.geometricweather.R$attr: int voiceIcon -androidx.preference.R$styleable: int MenuItem_actionLayout -com.google.android.material.textfield.TextInputLayout: void setErrorTextColor(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_rippleColor -com.google.android.gms.common.SupportErrorDialogFragment -com.jaredrummler.android.colorpicker.R$drawable: int abc_ab_share_pack_mtrl_alpha -okhttp3.internal.http2.Http2Stream: okio.Sink getSink() -androidx.work.R$id: int right_side -androidx.coordinatorlayout.widget.CoordinatorLayout: int getSuggestedMinimumHeight() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: void setUnit(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_focusable -androidx.appcompat.R$style: int Widget_AppCompat_ButtonBar -androidx.constraintlayout.widget.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_OBJECT -org.greenrobot.greendao.AbstractDao: void detachAll() -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder addCallAdapterFactory(retrofit2.CallAdapter$Factory) -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: void enqueue(retrofit2.Callback) -cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_MUTE -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.HourlyEntity,long) -okhttp3.logging.HttpLoggingInterceptor: boolean bodyHasUnknownEncoding(okhttp3.Headers) -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginStart -wangdaye.com.geometricweather.R$styleable: int GradientColorItem_android_offset -okhttp3.HttpUrl: okhttp3.HttpUrl$Builder newBuilder() -androidx.preference.R$styleable: int MenuItem_android_alphabeticShortcut -com.google.android.material.R$id: int percent -androidx.hilt.work.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTintMode -androidx.appcompat.resources.R$styleable: int GradientColor_android_tileMode -androidx.preference.R$style: int Base_Theme_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIcon -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder tlsVersions(java.lang.String[]) -com.google.android.material.R$anim: R$anim() -androidx.fragment.app.FragmentTabHost$SavedState: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarSplitStyle -androidx.hilt.R$id: int accessibility_custom_action_11 -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight -cyanogenmod.app.CustomTile$ExpandedStyle: android.widget.RemoteViews getContentViews() -cyanogenmod.profiles.StreamSettings$1: cyanogenmod.profiles.StreamSettings createFromParcel(android.os.Parcel) -android.support.v4.app.RemoteActionCompatParcelizer: androidx.core.app.RemoteActionCompat read(androidx.versionedparcelable.VersionedParcel) -com.xw.repo.bubbleseekbar.R$attr: int drawerArrowStyle -com.xw.repo.bubbleseekbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerY -androidx.preference.R$attr: int paddingBottomNoButtons -androidx.loader.R$dimen: int notification_content_margin_start -androidx.preference.R$dimen: int abc_action_bar_content_inset_with_nav -androidx.customview.R$styleable: int FontFamilyFont_android_fontWeight -com.google.android.material.R$styleable: int KeyAttribute_motionProgress -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginTop() -wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity: WeekWidgetConfigActivity() -wangdaye.com.geometricweather.R$string: int mtrl_exceed_max_badge_number_suffix -androidx.viewpager.R$styleable: int ColorStateListItem_alpha -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_maxElementsWrap -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: HourlyEntityDao(org.greenrobot.greendao.internal.DaoConfig) -com.google.android.material.R$styleable: int Spinner_android_popupBackground -com.google.android.material.R$dimen: int design_fab_image_size -cyanogenmod.app.ProfileManager: void addProfile(cyanogenmod.app.Profile) -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: java.lang.Throwable error -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_spinBars -james.adaptiveicon.R$styleable: int ActionBar_itemPadding -com.jaredrummler.android.colorpicker.R$attr: int homeAsUpIndicator -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.fragment.R$id: int accessibility_custom_action_5 -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onNext(java.lang.Object) -androidx.preference.R$styleable: int AppCompatTheme_imageButtonStyle -androidx.preference.R$attr: int title -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setOverlay(java.lang.String) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: ObservableSampleTimed$SampleTimedEmitLast(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.appcompat.widget.ActivityChooserView: void setExpandActivityOverflowButtonDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$styleable: int MenuItem_android_visible -com.google.android.material.R$layout: int abc_search_dropdown_item_icons_2line -com.turingtechnologies.materialscrollbar.R$attr: int layout_anchor -cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$attr: int onPositiveCross -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder pingInterval(java.time.Duration) -wangdaye.com.geometricweather.R$id: int activity_weather_daily_toolbar -okhttp3.internal.http2.Http2Stream: void checkOutNotClosed() -okhttp3.HttpUrl -androidx.transition.R$id: R$id() -okhttp3.internal.http2.Hpack: okhttp3.internal.http2.Header[] STATIC_HEADER_TABLE -androidx.appcompat.resources.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX() -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_multiChoiceItemLayout -android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog_Alert -androidx.transition.R$styleable: int FontFamilyFont_android_font -com.google.android.material.R$style: int Widget_MaterialComponents_Button_OutlinedButton -com.google.android.material.R$styleable: int[] MenuItem -androidx.appcompat.R$color: int foreground_material_dark -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer totalCloudCover -androidx.hilt.R$drawable: int notification_template_icon_bg -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mSoundMode -retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object invokeSuspend(java.lang.Object) -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_DayNight -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_37 -androidx.transition.R$id: int transition_layout_save -io.reactivex.disposables.RunnableDisposable: java.lang.String toString() -androidx.lifecycle.ViewModel: java.lang.Object getTag(java.lang.String) -androidx.preference.R$dimen: int abc_text_size_headline_material -com.xw.repo.bubbleseekbar.R$attr: int windowActionModeOverlay -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.LocationEntity,long) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: long serialVersionUID -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog_MinWidth -androidx.core.R$id: R$id() -androidx.hilt.lifecycle.R$id: int async -wangdaye.com.geometricweather.R$animator: int design_appbar_state_list_animator -com.github.rahatarmanahmed.cpv.CircularProgressView$5: void onAnimationEnd(android.animation.Animator) -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex tomorrow -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActivityChooserView -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onComplete() -cyanogenmod.app.ProfileGroup$2: int[] $SwitchMap$cyanogenmod$app$ProfileGroup$Mode -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer dbz -com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_backgroundTintMode -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle -james.adaptiveicon.R$style: int Theme_AppCompat_Light_DialogWhenLarge -okio.Pipe: Pipe(long) -okhttp3.internal.cache.DiskLruCache: void trimToSize() -okhttp3.ConnectionPool: java.util.Deque connections -androidx.drawerlayout.R$dimen: int notification_subtext_size -com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context) -com.jaredrummler.android.colorpicker.R$dimen -androidx.core.R$id: int accessibility_custom_action_6 -okhttp3.internal.http2.Http2: byte FLAG_COMPRESSED -com.github.rahatarmanahmed.cpv.CircularProgressView: int thickness -com.google.android.material.R$styleable: int NavigationView_itemShapeAppearanceOverlay -androidx.coordinatorlayout.widget.CoordinatorLayout: java.util.List getDependencySortedChildren() -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItem -cyanogenmod.providers.CMSettings$Secure: java.lang.String APP_PERFORMANCE_PROFILES_ENABLED -com.google.android.material.R$styleable: int StateListDrawable_android_dither -com.xw.repo.bubbleseekbar.R$color: int background_material_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean getUrl() -com.jaredrummler.android.colorpicker.R$attr: int title -wangdaye.com.geometricweather.R$styleable: int NavigationView_menu -com.google.android.material.R$string: int mtrl_picker_range_header_title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String tempMax -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust: AccuCurrentResult$WindGust() -io.reactivex.disposables.ReferenceDisposable: void dispose() -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onAttach_0 -androidx.preference.TwoStatePreference -cyanogenmod.externalviews.IExternalViewProvider: void onAttach(android.os.IBinder) -okhttp3.ConnectionPool: int idleConnectionCount() -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableBottom -androidx.recyclerview.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginTop -okhttp3.CacheControl: int maxAgeSeconds() -com.google.android.material.slider.Slider: void setTrackInactiveTintList(android.content.res.ColorStateList) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: org.reactivestreams.Subscription upstream -com.xw.repo.bubbleseekbar.R$attr: int fontProviderPackage -androidx.cardview.R$attr: int contentPaddingLeft -com.google.android.material.R$attr: int dayInvalidStyle -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_ALLERGEN -com.jaredrummler.android.colorpicker.R$attr: int preferenceScreenStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getLocationKey() -androidx.appcompat.widget.FitWindowsFrameLayout: FitWindowsFrameLayout(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customBoolean -okio.RealBufferedSink: void close() -james.adaptiveicon.R$attr: int textAppearanceSearchResultSubtitle -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -com.google.android.material.R$attr: int colorOnPrimarySurface -com.google.android.material.R$attr: int tickColor -com.jaredrummler.android.colorpicker.R$layout: int abc_screen_content_include -okio.Okio: boolean isAndroidGetsocknameError(java.lang.AssertionError) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTag -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_elevation -okhttp3.internal.http2.Http2Connection: boolean $assertionsDisabled -com.google.android.material.R$color: int material_on_primary_emphasis_high_type -cyanogenmod.themes.IThemeChangeListener$Stub: android.os.IBinder asBinder() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: ObservableSampleWithObservable$SampleMainEmitLast(io.reactivex.Observer,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$attr: int fabAnimationMode -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.functions.Function itemTimeoutIndicator -james.adaptiveicon.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light -com.google.android.material.R$attr: int textAppearanceCaption -androidx.work.R$attr: int alpha -androidx.appcompat.R$color: int ripple_material_dark -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -com.xw.repo.bubbleseekbar.R$id: int icon_group -androidx.lifecycle.AndroidViewModel: android.app.Application mApplication -james.adaptiveicon.R$attr: int buttonPanelSideLayout -retrofit2.Invocation: java.lang.reflect.Method method -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_keyline -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int SILENT_STATE -wangdaye.com.geometricweather.remoteviews.config.Hilt_WeekWidgetConfigActivity -okhttp3.Challenge: java.lang.String scheme -androidx.viewpager2.R$drawable: int notification_bg_normal_pressed -okhttp3.Request$Builder: okhttp3.Request$Builder addHeader(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction Direction -wangdaye.com.geometricweather.R$attr: int layout_constrainedHeight -okhttp3.internal.ws.RealWebSocket: int receivedPingCount() -okhttp3.internal.tls.BasicTrustRootIndex: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.R$anim: int abc_popup_enter -wangdaye.com.geometricweather.R$id: int unlabeled -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_checkableBehavior -com.bumptech.glide.integration.okhttp.R$color: int ripple_material_light -wangdaye.com.geometricweather.common.basic.GeoActivity -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio -androidx.preference.R$attr: int listLayout -androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableCompat -androidx.constraintlayout.widget.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -androidx.preference.R$attr: int persistent -com.xw.repo.bubbleseekbar.R$attr: int toolbarStyle -androidx.preference.R$styleable: int ListPreference_useSimpleSummaryProvider -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context) -okhttp3.internal.connection.RouteDatabase: boolean shouldPostpone(okhttp3.Route) -wangdaye.com.geometricweather.R$attr: int suffixTextAppearance -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void complete() -com.loc.h: void stopLocation() -com.xw.repo.bubbleseekbar.R$attr: int buttonStyle -com.google.android.material.R$attr: int maxVelocity -com.jaredrummler.android.colorpicker.R$attr: int panelMenuListTheme -androidx.recyclerview.R$id: int item_touch_helper_previous_elevation -androidx.preference.R$string: int abc_action_menu_overflow_description -io.reactivex.Observable: io.reactivex.Observable lift(io.reactivex.ObservableOperator) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -wangdaye.com.geometricweather.R$array: int precipitation_unit_values -james.adaptiveicon.R$layout: int abc_popup_menu_header_item_layout -androidx.constraintlayout.widget.R$attr: int flow_padding -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth -androidx.loader.R$id: int action_text -wangdaye.com.geometricweather.R$attr: int textAppearanceSubtitle2 -com.jaredrummler.android.colorpicker.R$attr: int fontProviderPackage -androidx.hilt.work.R$anim: int fragment_fast_out_extra_slow_in -com.google.android.material.bottomappbar.BottomAppBar$Behavior -com.google.android.material.R$attr: int singleSelection -androidx.lifecycle.ViewModelStore: java.util.HashMap mMap -androidx.preference.R$attr: int selectable -androidx.transition.R$styleable: int ColorStateListItem_android_color -com.google.android.material.R$styleable: int FloatingActionButton_maxImageSize -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.util.List toCardDisplayList(java.lang.String) -com.google.android.material.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayInvalidStyle -androidx.preference.R$styleable: int AnimatedStateListDrawableItem_android_id -androidx.appcompat.widget.AppCompatTextView: int getFirstBaselineToTopHeight() -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean delayError -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable -com.google.android.material.R$styleable: int Layout_layout_constraintGuide_percent -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum -wangdaye.com.geometricweather.R$styleable: int[] SignInButton -androidx.preference.R$id: int actions -cyanogenmod.app.CustomTile$ExpandedItem$1: cyanogenmod.app.CustomTile$ExpandedItem[] newArray(int) -com.jaredrummler.android.colorpicker.R$id: int shades_divider -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$100() -androidx.coordinatorlayout.R$color: int ripple_material_light -com.turingtechnologies.materialscrollbar.R$id: int screen -androidx.swiperefreshlayout.R$attr: R$attr() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_numericShortcut -com.amap.api.location.AMapLocation: void setLocationQualityReport(com.amap.api.location.AMapLocationQualityReport) -okhttp3.internal.http2.Http2Stream$FramingSink: Http2Stream$FramingSink(okhttp3.internal.http2.Http2Stream) -com.turingtechnologies.materialscrollbar.R$id: int transition_transform -com.jaredrummler.android.colorpicker.R$style: int Base_AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean humidity -retrofit2.OkHttpCall: retrofit2.Response parseResponse(okhttp3.Response) -com.google.gson.stream.JsonScope: int NONEMPTY_DOCUMENT -cyanogenmod.weather.ICMWeatherManager$Stub: ICMWeatherManager$Stub() -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_top -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean -com.google.android.material.R$styleable: int Layout_layout_constraintStart_toStartOf -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Category -androidx.work.BackoffPolicy: androidx.work.BackoffPolicy EXPONENTIAL -wangdaye.com.geometricweather.db.entities.LocationEntity: void setLatitude(float) -androidx.preference.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_98 -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setOnPageSwipeListener(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout$OnPagerSwipeListener) -okhttp3.internal.cache.CacheInterceptor: okhttp3.Response stripBody(okhttp3.Response) -okhttp3.ConnectionSpec: boolean supportsTlsExtensions -james.adaptiveicon.R$styleable: int AppCompatTheme_dropDownListViewStyle -android.didikee.donate.R$id: int line3 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean current -android.didikee.donate.R$attr: int background -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: java.lang.String Localized -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogPreferredPadding -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_icon_width -androidx.preference.R$style: int Preference_SwitchPreferenceCompat_Material -wangdaye.com.geometricweather.R$attr: int tabIndicatorGravity -androidx.lifecycle.Transformations$1 -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_focusable -com.amap.api.location.AMapLocationClientOption: long r -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language TURKISH -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_Solid -james.adaptiveicon.R$id: int search_src_text -wangdaye.com.geometricweather.R$attr: int listChoiceIndicatorSingleAnimated -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTextAppearance(int) -wangdaye.com.geometricweather.R$dimen: int mtrl_fab_min_touch_target -androidx.appcompat.R$dimen: int abc_action_bar_icon_vertical_padding_material -okhttp3.internal.ws.RealWebSocket$Message: okio.ByteString data -com.bumptech.glide.integration.okhttp.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: MfWarningsResult$WarningTimelaps() -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarNeutralButtonStyle -okio.BufferedSource: long indexOfElement(okio.ByteString) -androidx.preference.R$dimen: int notification_right_side_padding_top -com.xw.repo.bubbleseekbar.R$attr: int bsb_auto_adjust_section_mark -android.didikee.donate.R$attr: int listPreferredItemHeight -io.reactivex.Observable: io.reactivex.Observable delaySubscription(long,java.util.concurrent.TimeUnit) -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -androidx.viewpager2.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.R$drawable: int weather_rain -wangdaye.com.geometricweather.R$dimen: int widget_mini_weather_icon_size -com.google.android.material.R$attr: int layout_constraintBaseline_toBaselineOf -okhttp3.internal.connection.RealConnection: boolean isHealthy(boolean) -wangdaye.com.geometricweather.R$drawable: int ic_clock_black_24dp -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String pollutant -wangdaye.com.geometricweather.R$dimen: R$dimen() -com.turingtechnologies.materialscrollbar.R$attr: int popupMenuStyle -okio.DeflaterSink: void flush() -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListPopupWindow -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onNext(java.lang.Object) -cyanogenmod.weather.WeatherInfo$DayForecast: android.os.Parcelable$Creator CREATOR -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_WARM_FALLING -com.github.rahatarmanahmed.cpv.CircularProgressView$6: CircularProgressView$6(com.github.rahatarmanahmed.cpv.CircularProgressView) -com.google.android.material.R$color: int highlighted_text_material_light -androidx.dynamicanimation.R$dimen: int notification_main_column_padding_top -com.turingtechnologies.materialscrollbar.R$id: int content -wangdaye.com.geometricweather.R$string: int content_des_co -com.turingtechnologies.materialscrollbar.R$animator: int design_appbar_state_list_animator -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) -androidx.preference.R$styleable: int AppCompatTheme_windowMinWidthMinor -android.support.v4.os.ResultReceiver: android.support.v4.os.IResultReceiver mReceiver -androidx.activity.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_height_fullscreen -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat -androidx.preference.R$dimen: int abc_floating_window_z -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetEndWithActions -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -cyanogenmod.providers.CMSettings$System: java.lang.String DOUBLE_TAP_SLEEP_GESTURE -com.google.android.material.R$dimen: int cardview_default_radius -wangdaye.com.geometricweather.R$id: int item_about_header_appVersion -com.google.android.material.R$attr: int drawableStartCompat -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_android_layout -com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_android_background -wangdaye.com.geometricweather.R$styleable: int Variant_region_heightMoreThan -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator -cyanogenmod.profiles.ConnectionSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: java.util.Date Rise -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar -com.amap.api.location.AMapLocationClientOption: java.lang.Object clone() -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.tls.TrustRootIndex buildTrustRootIndex(javax.net.ssl.X509TrustManager) -androidx.constraintlayout.widget.R$attr: int buttonStyleSmall -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getO3() -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintEnd_toEndOf -okhttp3.internal.Util: int skipLeadingAsciiWhitespace(java.lang.String,int,int) -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setWallpaperId(long) -androidx.constraintlayout.widget.R$attr: int actionModeCloseDrawable -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleContentDescription -wangdaye.com.geometricweather.common.basic.models.options.DarkMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX) -androidx.legacy.coreutils.R$dimen: int notification_large_icon_height -androidx.vectordrawable.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit -retrofit2.ParameterHandler$Body -androidx.loader.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar -androidx.appcompat.R$anim: int abc_grow_fade_in_from_bottom -androidx.activity.R$id: int accessibility_custom_action_26 -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout_Colored -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_numericModifiers -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_scaleX -androidx.legacy.coreutils.R$attr: int ttcIndex -androidx.appcompat.R$id: int submenuarrow -androidx.transition.R$styleable: int GradientColor_android_type -com.github.rahatarmanahmed.cpv.CircularProgressView$2: CircularProgressView$2(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -androidx.hilt.work.R$drawable: int notification_template_icon_low_bg -androidx.vectordrawable.animated.R$style: R$style() -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer moldLevel -androidx.hilt.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$drawable: int shortcuts_cloudy_foreground -com.xw.repo.bubbleseekbar.R$id: int group_divider -com.turingtechnologies.materialscrollbar.R$id: int bottom -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabInlineLabel -okhttp3.Cache: void delete() -com.google.android.material.R$styleable: int Constraint_layout_editor_absoluteY -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_checkboxStyle -com.amap.api.location.AMapLocation: java.lang.String getCityCode() -androidx.appcompat.widget.SearchView: androidx.cursoradapter.widget.CursorAdapter getSuggestionsAdapter() -androidx.drawerlayout.R$id: int tag_unhandled_key_event_manager -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTint -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSearchResultTitle -okhttp3.internal.http2.Hpack$Reader: void clearDynamicTable() -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -android.didikee.donate.R$drawable: int abc_list_pressed_holo_light -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -android.didikee.donate.R$styleable: int Toolbar_titleMargins -wangdaye.com.geometricweather.R$attr: int boxCollapsedPaddingTop -wangdaye.com.geometricweather.R$animator: int mtrl_fab_show_motion_spec -androidx.cardview.R$color: int cardview_shadow_start_color -androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_material_anim -wangdaye.com.geometricweather.R$string: int settings_title_live_wallpaper -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -com.google.android.material.R$attr: int ttcIndex -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: long time -wangdaye.com.geometricweather.R$attr: int bsb_hide_bubble -androidx.preference.R$attr: int windowNoTitle -androidx.appcompat.R$attr: int measureWithLargestChild -androidx.cardview.R$dimen: int cardview_default_elevation -wangdaye.com.geometricweather.R$string: int bottom_sheet_behavior -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$id: int customPanel -androidx.recyclerview.R$attr -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeShareDrawable -okhttp3.internal.platform.Platform: java.lang.Object readFieldOrNull(java.lang.Object,java.lang.Class,java.lang.String) -com.google.android.material.R$attr: int checkedIconMargin -com.google.android.material.R$attr: int cardBackgroundColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX getTemperature() -androidx.constraintlayout.widget.R$attr: int switchPadding -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setCountry(java.lang.String) -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_FAST_SAMPLES -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature -cyanogenmod.power.IPerformanceManager: int getPowerProfile() -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Alert -cyanogenmod.app.BaseLiveLockManagerService: android.os.RemoteCallbackList mChangeListeners -com.google.android.material.R$styleable: int Constraint_barrierMargin -com.amap.api.fence.GeoFence$1: GeoFence$1() -io.reactivex.internal.schedulers.RxThreadFactory: int priority -wangdaye.com.geometricweather.R$style: int Preference_DropDown -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Body1 -okhttp3.RealCall: okhttp3.Response execute() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void fail(java.lang.Throwable,io.reactivex.Observer,io.reactivex.internal.queue.SpscLinkedArrayQueue) -androidx.constraintlayout.widget.R$attr: int alphabeticModifiers -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX temperature -androidx.viewpager2.R$id: int accessibility_custom_action_28 -cyanogenmod.hardware.ICMHardwareService: boolean setDisplayColorCalibration(int[]) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean hasKey(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Primary -androidx.preference.R$id: int accessibility_custom_action_28 -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -com.xw.repo.bubbleseekbar.R$id: int time -androidx.preference.R$style: int Animation_AppCompat_Tooltip -cyanogenmod.hardware.CMHardwareManager: byte[] readPersistentBytes(java.lang.String) -androidx.legacy.coreutils.R$attr: int fontProviderFetchTimeout -cyanogenmod.themes.IThemeService$Stub: IThemeService$Stub() -androidx.appcompat.R$drawable: int abc_list_pressed_holo_dark -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layoutDescription -androidx.appcompat.resources.R$id: int normal -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerViewAccessibilityDelegate getCompatAccessibilityDelegate() -okio.AsyncTimeout$2: AsyncTimeout$2(okio.AsyncTimeout,okio.Source) -retrofit2.OkHttpCall$ExceptionCatchingResponseBody -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean isCanceled() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_SCREEN_ON_VALIDATOR -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.Handler mHandler -com.jaredrummler.android.colorpicker.R$dimen: int abc_seekbar_track_progress_height_material -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Body1 -com.bumptech.glide.R$drawable: int notification_bg_low_pressed -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int requestFusion(int) -com.xw.repo.bubbleseekbar.R$id: int text2 -com.google.android.material.R$attr: int expandedTitleMarginBottom -okhttp3.internal.cache.FaultHidingSink: boolean hasErrors -okhttp3.internal.cache.DiskLruCache$3: java.util.Iterator delegate -wangdaye.com.geometricweather.R$drawable: int ic_search -io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Action onComplete -wangdaye.com.geometricweather.R$drawable: int widget_card_light_40 -wangdaye.com.geometricweather.R$id: int mtrl_picker_header_title_and_selection -androidx.appcompat.R$id: int progress_horizontal -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: java.lang.Integer proba6H -wangdaye.com.geometricweather.R$string: int done -androidx.vectordrawable.R$styleable: int GradientColor_android_centerY -com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_linear -com.amap.api.location.AMapLocation: int LOCATION_TYPE_LAST_LOCATION_CACHE -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: int unitArrayIndex -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode getInstance(java.lang.String) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.ObservableSource sampler -android.didikee.donate.R$drawable: int abc_ic_star_black_36dp -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_always_show_bubble_delay -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onComplete() -com.google.android.material.R$styleable: int KeyAttribute_curveFit -okhttp3.Cache$CacheRequestImpl$1: Cache$CacheRequestImpl$1(okhttp3.Cache$CacheRequestImpl,okio.Sink,okhttp3.Cache,okhttp3.internal.cache.DiskLruCache$Editor) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_top -androidx.preference.R$color: int error_color_material_light -com.turingtechnologies.materialscrollbar.Indicator -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dividerHorizontal -androidx.hilt.work.R$dimen: int notification_subtext_size -com.bumptech.glide.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int EndMinute -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String getValue() -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderQuery -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display2 -cyanogenmod.profiles.BrightnessSettings: boolean mOverride -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cuv -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object getKey(java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_PopupMenu -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_disabled_material_dark -com.google.android.material.chip.ChipGroup: void setOnHierarchyChangeListener(android.view.ViewGroup$OnHierarchyChangeListener) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Text -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_transparent_bg_color -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: wangdaye.com.geometricweather.location.services.LocationService$LocationCallback val$callback -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPadding -com.jaredrummler.android.colorpicker.NestedGridView -wangdaye.com.geometricweather.R$string: int phase_full -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String getWeatherText() -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver -androidx.drawerlayout.R$id: int title -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgressBackgroundColor(int) -com.google.android.material.R$styleable: int[] MaterialAlertDialogTheme -com.google.android.material.R$styleable: int ConstraintSet_flow_firstHorizontalStyle -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen -androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_orientation -cyanogenmod.providers.CMSettings$System: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) -androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_creator -cyanogenmod.app.suggest.IAppSuggestProvider: java.util.List getSuggestions(android.content.Intent) -wangdaye.com.geometricweather.R$attr: int backgroundInsetTop -james.adaptiveicon.R$drawable: int abc_list_selector_holo_light -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabTextStyle -wangdaye.com.geometricweather.R$id: int widget_week_weather -androidx.preference.DropDownPreference: DropDownPreference(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -com.turingtechnologies.materialscrollbar.R$id: int textinput_helper_text -okhttp3.internal.http.HttpHeaders: HttpHeaders() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitationDuration() -androidx.appcompat.R$styleable: int Toolbar_collapseIcon -androidx.preference.R$bool: int abc_action_bar_embed_tabs -io.reactivex.subjects.PublishSubject$PublishDisposable: io.reactivex.subjects.PublishSubject parent -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.xw.repo.bubbleseekbar.R$attr: int queryBackground -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginEnd -androidx.constraintlayout.widget.R$attr: int tooltipFrameBackground -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position -retrofit2.http.POST: java.lang.String value() -com.xw.repo.bubbleseekbar.R$anim: int abc_popup_enter -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getDate() -androidx.constraintlayout.widget.R$attr: int actionBarTabBarStyle -androidx.transition.R$attr: int alpha -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -androidx.lifecycle.ViewModelStoreOwner -com.turingtechnologies.materialscrollbar.R$attr: int titleEnabled -androidx.activity.R$dimen: int compat_button_padding_vertical_material -androidx.appcompat.R$styleable: int ActionBar_contentInsetLeft -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchMinWidth -androidx.appcompat.R$styleable: int[] GradientColorItem -androidx.appcompat.R$string: int abc_menu_space_shortcut_label -cyanogenmod.app.IPartnerInterface: boolean setZenModeWithDuration(int,long) -androidx.swiperefreshlayout.R$drawable: R$drawable() -retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1 -retrofit2.Utils$GenericArrayTypeImpl: java.lang.String toString() -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener mListener -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_dividerPadding -androidx.constraintlayout.widget.R$attr: int tooltipText -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Circular -android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Light -com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatHoveredFocusedTranslationZ() -com.amap.api.location.AMapLocationQualityReport: void setGpsStatus(int) -com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_DropDownUp -james.adaptiveicon.R$attr: int panelMenuListTheme -com.google.android.gms.common.SignInButton: SignInButton(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void dispose() -com.google.android.material.R$styleable: int ActionBar_title -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginLeft -retrofit2.ParameterHandler$Part: okhttp3.Headers headers -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PKG_NAME -com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -androidx.fragment.R$styleable: int[] FontFamily -androidx.preference.R$attr: int titleMarginBottom -com.jaredrummler.android.colorpicker.R$id: int customPanel -com.google.android.material.bottomnavigation.BottomNavigationView: void setOnNavigationItemReselectedListener(com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemReselectedListener) -wangdaye.com.geometricweather.R$id: int widget_day_symbol -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_NavigationView -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Info -james.adaptiveicon.R$attr: int autoSizeMaxTextSize -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabContentStart -wangdaye.com.geometricweather.db.entities.WeatherEntity: WeatherEntity() -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.Window mWindow -androidx.constraintlayout.widget.R$styleable: int ActionBar_backgroundStacked -wangdaye.com.geometricweather.R$xml: int widget_trend_daily -okhttp3.internal.connection.ConnectInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getBackgroundTintMode() -com.jaredrummler.android.colorpicker.R$attr: int autoSizePresetSizes -androidx.hilt.R$dimen: int notification_action_text_size -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.preference.R$drawable: int abc_item_background_holo_dark -com.turingtechnologies.materialscrollbar.R$id: int action_menu_divider -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: AccuLocationResult() -com.google.android.material.R$attr: int viewInflaterClass -com.google.android.material.transformation.FabTransformationSheetBehavior: FabTransformationSheetBehavior() -james.adaptiveicon.R$styleable: int AppCompatTheme_spinnerStyle -wangdaye.com.geometricweather.R$string: int abc_menu_ctrl_shortcut_label -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String getTo() -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_pixel -okio.HashingSource: java.security.MessageDigest messageDigest -wangdaye.com.geometricweather.common.ui.behaviors.InkPageIndicatorBehavior: InkPageIndicatorBehavior(android.content.Context,android.util.AttributeSet) -com.google.gson.stream.JsonReader: java.lang.String locationString() -androidx.loader.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial -android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogCenterButtons -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: int requestFusion(int) -androidx.activity.R$id: int normal -okio.Timeout: Timeout() -io.reactivex.internal.functions.Functions$NaturalComparator -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_10 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -wangdaye.com.geometricweather.R$id: int widget_day_week_card -com.turingtechnologies.materialscrollbar.R$attr: int navigationViewStyle -androidx.constraintlayout.widget.R$styleable: int SearchView_searchIcon -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_wavePeriod -com.turingtechnologies.materialscrollbar.R$attr: int fabCradleVerticalOffset -wangdaye.com.geometricweather.R$style: int Preference_CheckBoxPreference -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: long serialVersionUID -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_disableDependentsState -wangdaye.com.geometricweather.R$attr: int cpv_sliderColor -james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabText -androidx.activity.R$id: int actions -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setDetail(java.lang.String) -com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_elevation -wangdaye.com.geometricweather.db.entities.AlertEntity: void setPriority(int) -androidx.appcompat.R$attr: int collapseContentDescription -android.didikee.donate.R$id: int action_bar -androidx.loader.R$id: int right_icon -com.google.android.material.floatingactionbutton.FloatingActionButton: boolean getUseCompatPadding() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) -androidx.appcompat.R$color: int material_grey_50 -androidx.transition.R$style: int Widget_Compat_NotificationActionContainer -androidx.legacy.coreutils.R$dimen: int compat_notification_large_icon_max_height -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderQuery -com.xw.repo.bubbleseekbar.R$string: int abc_capital_on -wangdaye.com.geometricweather.R$id: int circular -james.adaptiveicon.R$dimen: int abc_dialog_fixed_height_major -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_57 -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setOnceLocationLatest(boolean) -io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier INSTANCE -androidx.lifecycle.LifecycleDispatcher -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode SYSTEM -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String o3Desc -okhttp3.HttpUrl: java.lang.String encodedQuery() -android.didikee.donate.R$styleable: int DrawerArrowToggle_arrowShaftLength -com.xw.repo.bubbleseekbar.R$style: int Platform_V25_AppCompat -androidx.constraintlayout.widget.R$attr: int layout_constraintCircle -wangdaye.com.geometricweather.R$dimen: int tooltip_horizontal_padding -okio.Sink: void flush() -okhttp3.MultipartBody$Builder -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginRight -androidx.work.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog_Alert -androidx.preference.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -androidx.preference.R$styleable: int PreferenceGroup_android_orderingFromXml -wangdaye.com.geometricweather.R$id: int item_icon_provider_container -io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function) -androidx.core.R$style: int TextAppearance_Compat_Notification_Info -james.adaptiveicon.R$styleable: int SearchView_android_imeOptions -androidx.preference.R$id: int none -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge -wangdaye.com.geometricweather.R$styleable: int NavigationView_android_fitsSystemWindows -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_labelVisibilityMode -androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: ObservableJoin$JoinDisposable(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.R$dimen: int abc_progress_bar_height_material -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onPreparePanel(int,android.view.View,android.view.Menu) -com.google.android.material.R$id: int progress_horizontal -com.turingtechnologies.materialscrollbar.R$attr: int editTextStyle -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickActiveTintList() -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_voiceIcon -wangdaye.com.geometricweather.R$styleable: int ArcProgress_max -androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModelProvider$NewInstanceFactory sInstance -wangdaye.com.geometricweather.R$drawable: int notif_temp_133 -com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_bias -cyanogenmod.app.ThemeVersion$ComponentVersion: int getId() -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_STOP -wangdaye.com.geometricweather.R$layout: int design_navigation_item_separator -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_DropDownItem_Spinner -android.didikee.donate.R$style: int TextAppearance_AppCompat_Medium_Inverse -okhttp3.internal.cache.DiskLruCache: java.lang.String VERSION_1 -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain3h -androidx.customview.R$color: int notification_icon_bg_color -androidx.hilt.lifecycle.R$id: int tag_transition_group -androidx.appcompat.widget.SwitchCompat: void setThumbDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_motionProgress -android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedHeightMajor -androidx.dynamicanimation.R$attr: int fontProviderQuery -com.google.android.material.R$attr: int textAppearanceHeadline5 -io.reactivex.Observable: io.reactivex.Observable timeout0(long,java.util.concurrent.TimeUnit,io.reactivex.ObservableSource,io.reactivex.Scheduler) -retrofit2.adapter.rxjava2.ResultObservable: void subscribeActual(io.reactivex.Observer) -com.turingtechnologies.materialscrollbar.R$attr: int fabAlignmentMode -android.didikee.donate.R$attr: int actionModeFindDrawable -androidx.swiperefreshlayout.R$attr: int ttcIndex -okhttp3.RequestBody$1 -com.jaredrummler.android.colorpicker.R$layout: int preference_material -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void execute() -androidx.preference.R$styleable: int DrawerArrowToggle_barLength -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver -androidx.core.R$color -com.google.android.material.R$attr: int suffixTextAppearance -com.jaredrummler.android.colorpicker.R$style: int Preference_PreferenceScreen_Material -wangdaye.com.geometricweather.R$attr: int searchIcon -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getBackgroundColorStart() -cyanogenmod.power.PerformanceManager: int mNumberOfProfiles -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_53 -com.google.android.material.R$styleable: int TextInputLayout_errorIconTintMode -com.xw.repo.bubbleseekbar.R$attr: int dialogCornerRadius -com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context) -wangdaye.com.geometricweather.R$attr: int itemHorizontalPadding -okhttp3.Cache$Entry: okhttp3.Headers varyHeaders -androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableTransition -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_textAppearance -android.didikee.donate.R$id: int progress_horizontal -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_subtitle -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getNavigationContentDescription() -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_title -androidx.constraintlayout.widget.R$layout: int abc_action_bar_title_item -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -androidx.appcompat.widget.ContentFrameLayout -wangdaye.com.geometricweather.R$color: int material_deep_teal_200 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textColorSearchUrl -com.bumptech.glide.R$id: int text -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context) -wangdaye.com.geometricweather.R$font: int google_sans -androidx.appcompat.R$attr: int textAppearanceSearchResultSubtitle -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -com.google.android.material.R$styleable: int TextAppearance_android_textColor -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableStartCompat -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_xml -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeMinTextSize -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderAuthority -com.google.android.material.R$id: int asConfigured -androidx.appcompat.widget.AppCompatEditText: void setTextClassifier(android.view.textclassifier.TextClassifier) -cyanogenmod.providers.CMSettings$System: android.net.Uri CONTENT_URI -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_precise_anchor_threshold -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_drawableSize -com.bumptech.glide.integration.okhttp.R$dimen: int notification_small_icon_background_padding -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onComplete() -androidx.preference.R$dimen: int abc_text_size_medium_material -androidx.appcompat.R$drawable: int notification_action_background -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadMessage(okio.ByteString) -androidx.lifecycle.extensions.R$drawable -androidx.lifecycle.ProcessLifecycleOwnerInitializer: ProcessLifecycleOwnerInitializer() -wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_1 -androidx.loader.R$styleable: int[] ColorStateListItem -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_visible -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -com.xw.repo.bubbleseekbar.R$id: int end -com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getTextSize() -io.reactivex.internal.schedulers.AbstractDirectTask: long serialVersionUID -cyanogenmod.themes.ThemeManager: java.util.Set mProcessingListeners -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderQuery -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderPackage -androidx.appcompat.R$dimen: int compat_button_inset_vertical_material -com.turingtechnologies.materialscrollbar.R$id: int textinput_error -james.adaptiveicon.R$id: int text2 -okio.ByteString: int lastIndexOf(okio.ByteString) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.activity.R$drawable: int notification_bg_normal_pressed -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_tooltipForegroundColor -com.google.android.material.R$string: int abc_searchview_description_search -com.xw.repo.bubbleseekbar.R$styleable: int ButtonBarLayout_allowStacking -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.DaoConfig config -com.google.android.material.R$styleable: int[] MaterialCalendar -cyanogenmod.externalviews.ExternalView: android.content.Context mContext -androidx.preference.R$color: int switch_thumb_material_light -okhttp3.Dns -okhttp3.Response: okhttp3.Protocol protocol -com.google.android.material.R$styleable: int MockView_mock_labelBackgroundColor -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipEndPadding -com.google.android.material.R$styleable: int Layout_android_layout_height -wangdaye.com.geometricweather.R$layout: int dialog_running_in_background -com.jaredrummler.android.colorpicker.R$dimen: int abc_seekbar_track_background_height_material -okhttp3.Request: okhttp3.HttpUrl url() -james.adaptiveicon.R$color: int dim_foreground_material_light -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline6 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_22 -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RealFeelShaderTemperature -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircleRadius -okhttp3.Call: okhttp3.Request request() -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean requireAdaptiveBacklightForSunlightEnhancement() -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onContentChanged() -com.google.android.material.internal.NavigationMenuItemView: void setIconSize(int) -okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache$Editor currentEditor -androidx.preference.R$color: int bright_foreground_inverse_material_light -com.bumptech.glide.integration.okhttp.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.R$string: int geometric_weather -com.google.android.material.R$attr: int listPopupWindowStyle -androidx.hilt.work.R$id: int accessibility_custom_action_12 -androidx.preference.R$dimen: int tooltip_vertical_padding -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorAnimationDuration -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_id -androidx.constraintlayout.widget.R$styleable: int ActionBar_displayOptions -androidx.appcompat.R$attr: int actionOverflowMenuStyle -wangdaye.com.geometricweather.R$attr: int values -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: java.util.concurrent.atomic.AtomicInteger wip -com.xw.repo.BubbleSeekBar: void setTrackColor(int) -com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabBar -androidx.lifecycle.SavedStateHandle: java.util.Map mRegular -android.didikee.donate.R$styleable: int AppCompatTextView_lineHeight -retrofit2.converter.gson.GsonResponseBodyConverter -wangdaye.com.geometricweather.R$id: int progress_circular -io.reactivex.Observable: io.reactivex.Observable timestamp(java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeTextType -cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo getWeatherInfo() -com.google.android.material.R$dimen: int material_cursor_inset_top -okio.Buffer$2: java.lang.String toString() -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar -com.google.gson.internal.LazilyParsedNumber: double doubleValue() -androidx.fragment.app.FragmentContainerView -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyleIndicator -com.bumptech.glide.integration.okhttp.R$attr: int statusBarBackground -cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_ANSWER -com.google.android.material.R$dimen: int design_fab_elevation -wangdaye.com.geometricweather.R$drawable: int weather_clear_night -com.google.android.material.tabs.TabLayout: int getTabGravity() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date -androidx.legacy.coreutils.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_android_windowIsFloating -wangdaye.com.geometricweather.R$layout: int widget_day_nano -okhttp3.internal.http2.Http2Stream$FramingSink: okio.Buffer sendBuffer -cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile[] getProfiles() -android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.google.android.material.R$styleable: int AppCompatTheme_buttonStyleSmall -wangdaye.com.geometricweather.R$layout: int container_main_header -com.google.android.material.R$styleable: int CardView_android_minHeight -com.google.android.material.R$styleable: int ProgressIndicator_linearSeamless -io.reactivex.internal.subscriptions.SubscriptionHelper: void cancel() -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode Device_Sensors -com.amap.api.location.AMapLocationQualityReport: boolean isWifiAble() -okhttp3.internal.tls.DistinguishedNameParser: int getByte(int) -com.google.android.material.R$attr: int scrimBackground -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_dialogTitle -com.jaredrummler.android.colorpicker.R$dimen: int compat_button_inset_horizontal_material -androidx.viewpager2.R$drawable: int notification_bg_normal -cyanogenmod.app.IProfileManager$Stub$Proxy: IProfileManager$Stub$Proxy(android.os.IBinder) -com.jaredrummler.android.colorpicker.R$drawable: int abc_action_bar_item_background_material -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_transitionEasing -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context) -androidx.constraintlayout.utils.widget.ImageFilterButton: float getSaturation() -com.bumptech.glide.load.engine.GlideException: java.lang.Class dataClass -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String getUnit() -com.xw.repo.bubbleseekbar.R$style: int AlertDialog_AppCompat -androidx.core.R$styleable: int[] FontFamily -androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -android.didikee.donate.R$layout: int abc_action_mode_close_item_material -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.MultipartBody$Part) -wangdaye.com.geometricweather.R$interpolator: int mtrl_linear -com.turingtechnologies.materialscrollbar.R$id: int textSpacerNoTitle -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: java.lang.String Unit -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_maxLines -wangdaye.com.geometricweather.R$styleable: int[] FlowLayout -com.jaredrummler.android.colorpicker.R$dimen: int abc_select_dialog_padding_start_material -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_size_mini -com.google.android.material.R$styleable: int FontFamily_fontProviderAuthority -okhttp3.internal.io.FileSystem -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextColor(int) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitationProbability() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -androidx.preference.R$dimen: int abc_text_size_subhead_material -com.google.android.material.R$styleable: int GradientColor_android_gradientRadius -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource) -james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.google.android.material.R$attr: int listPreferredItemHeight -cyanogenmod.weather.CMWeatherManager: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener) -com.bumptech.glide.manager.SupportRequestManagerFragment: SupportRequestManagerFragment() -androidx.swiperefreshlayout.R$attr: int fontProviderFetchStrategy -io.reactivex.Observable: io.reactivex.Observable throttleWithTimeout(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$styleable: int ActionBar_titleTextStyle -com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyEndText -com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Primary -cyanogenmod.app.IPartnerInterface: void setMobileDataEnabled(boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -james.adaptiveicon.R$attr: int colorError -androidx.preference.R$dimen: int tooltip_precise_anchor_extra_offset -okhttp3.internal.ws.WebSocketWriter$FrameSink: int formatOpcode -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeWindChillTemperature() -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void onChanged(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: AccuCurrentResult$TemperatureSummary() -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String unitId -okhttp3.internal.proxy.NullProxySelector: NullProxySelector() -wangdaye.com.geometricweather.R$string: int feedback_collect_succeed -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_height -wangdaye.com.geometricweather.R$anim: int fragment_fade_enter -cyanogenmod.providers.CMSettings$System: java.lang.String NAV_BUTTONS -cyanogenmod.weather.WeatherInfo$DayForecast: java.lang.String mKey -wangdaye.com.geometricweather.db.entities.AlertEntityDao: wangdaye.com.geometricweather.db.entities.AlertEntity readEntity(android.database.Cursor,int) -androidx.recyclerview.R$styleable: int GradientColorItem_android_color -androidx.appcompat.R$styleable: int SearchView_queryHint -wangdaye.com.geometricweather.R$color: int colorLevel_1 -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_titleCondensed -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Medium -android.didikee.donate.R$style: int TextAppearance_AppCompat_Body1 -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Headline -com.google.android.material.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableEndCompat -com.google.android.material.R$attr: int snackbarButtonStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: int status -androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context,android.util.AttributeSet,int) -android.didikee.donate.R$attr: int ratingBarStyle -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Switch -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: void execute() -retrofit2.converter.gson.GsonConverterFactory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -androidx.appcompat.R$color: int error_color_material_dark -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: float unitFactor -com.turingtechnologies.materialscrollbar.R$attr: int tabSelectedTextColor -okhttp3.internal.ws.RealWebSocket$2: RealWebSocket$2(okhttp3.internal.ws.RealWebSocket,okhttp3.Request) -android.didikee.donate.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -com.google.android.material.R$styleable: int MaterialCardView_strokeColor -cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener -okhttp3.RequestBody$2 -androidx.preference.R$bool: int abc_config_actionMenuItemAllCaps -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_disableDependentsState -com.turingtechnologies.materialscrollbar.R$attr: int autoSizePresetSizes -cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(int,cyanogenmod.app.ThemeComponent,int) -com.google.gson.stream.JsonScope: int NONEMPTY_OBJECT -cyanogenmod.app.IProfileManager$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.R$string: int settings_title_forecast_tomorrow -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource[],io.reactivex.functions.Function) -okhttp3.internal.Internal: void initializeInstanceForTests() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActivityChooserView -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicReference actual -android.didikee.donate.R$drawable: int abc_ic_menu_overflow_material -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void settings(boolean,okhttp3.internal.http2.Settings) -com.jaredrummler.android.colorpicker.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitationDuration -james.adaptiveicon.R$styleable: int Toolbar_titleTextColor -wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_EXCESSIVE -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -com.google.android.material.R$drawable: int abc_ic_menu_overflow_material -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_material -androidx.drawerlayout.widget.DrawerLayout: void setDrawerLockMode(int) -okhttp3.EventListener: void responseBodyEnd(okhttp3.Call,long) -io.reactivex.Observable: io.reactivex.Observable generate(io.reactivex.functions.Consumer) -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_ttcIndex -com.amap.api.location.AMapLocationQualityReport: java.lang.String getNetworkType() -androidx.hilt.work.R$id: int accessibility_custom_action_16 -okhttp3.internal.cache2.Relay$RelaySource: long read(okio.Buffer,long) -io.reactivex.internal.observers.ForEachWhileObserver: long serialVersionUID -james.adaptiveicon.R$styleable: int AppCompatTheme_editTextColor -okhttp3.Response: okhttp3.Response$Builder newBuilder() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: AccuCurrentResult$Wind$Speed$Metric() -com.google.android.material.R$styleable: int AppCompatTheme_actionBarDivider -james.adaptiveicon.R$styleable: int[] CompoundButton -androidx.appcompat.R$style: int TextAppearance_AppCompat_Tooltip -androidx.preference.R$id: int italic -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onPositiveCross -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String logo -androidx.lifecycle.ClassesInfoCache: java.util.Map mCallbackMap -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_switchTextOff -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment -com.turingtechnologies.materialscrollbar.R$id: int textinput_counter -wangdaye.com.geometricweather.db.entities.DailyEntity: void setId(java.lang.Long) -androidx.preference.R$attr: int actionBarTheme -android.didikee.donate.R$style: int Widget_AppCompat_ActionButton_CloseMode -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setNighttimeTemperature(int) -androidx.preference.R$layout: int preference_widget_switch -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_alt_shortcut_label -wangdaye.com.geometricweather.R$styleable: int ArcProgress_text_size -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onKeyguardShowing -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void dispose() -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_13 -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA -androidx.fragment.R$drawable: R$drawable() -androidx.constraintlayout.motion.widget.MotionLayout: int[] getConstraintSetIds() -androidx.swiperefreshlayout.R$id: int icon_group -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource access$000(wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer grassLevel -okio.ForwardingSource: ForwardingSource(okio.Source) -io.reactivex.internal.disposables.ArrayCompositeDisposable: boolean isDisposed() -androidx.appcompat.R$layout: int select_dialog_singlechoice_material -com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu -androidx.preference.R$styleable: int CheckBoxPreference_android_summaryOff -com.turingtechnologies.materialscrollbar.R$attr: int listDividerAlertDialog -org.greenrobot.greendao.AbstractDaoSession: java.util.List loadAll(java.lang.Class) -okhttp3.HttpUrl: java.lang.String queryParameterValue(int) -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: io.reactivex.Observer observer -wangdaye.com.geometricweather.R$layout: int test_toolbar -com.google.android.material.R$styleable: int KeyCycle_transitionEasing -androidx.core.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.R$id: int activity_settings_toolbar -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImpl: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) -cyanogenmod.app.Profile$1: cyanogenmod.app.Profile createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: AccuCurrentResult$PrecipitationSummary$Precipitation() -wangdaye.com.geometricweather.R$color: int colorRoot -com.turingtechnologies.materialscrollbar.R$id: int search_button -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: void setBrands(java.util.List) -wangdaye.com.geometricweather.R$drawable: int ic_collected -wangdaye.com.geometricweather.R$attr: int transitionFlags -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX getSpeed() -okhttp3.internal.http2.Settings: int DEFAULT_INITIAL_WINDOW_SIZE -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Bridge -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_3_00 -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_menu -wangdaye.com.geometricweather.R$style: int Test_Theme_MaterialComponents_MaterialCalendar -wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_chainStyle -retrofit2.http.DELETE: java.lang.String value() -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_buttonGravity -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeCloudCover -com.jaredrummler.android.colorpicker.R$id: int left -wangdaye.com.geometricweather.R$drawable: int weather_hail_pixel -okhttp3.Address: javax.net.ssl.SSLSocketFactory sslSocketFactory -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_alphabeticShortcut -androidx.fragment.R$attr: int alpha -androidx.customview.R$id: int notification_background -retrofit2.ParameterHandler$Headers: void apply(retrofit2.RequestBuilder,java.lang.Object) -cyanogenmod.providers.CMSettings$Secure: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: MfWarningsResult$WarningComments$WarningTextBlocItem() -com.google.android.material.R$anim: int design_snackbar_in -androidx.dynamicanimation.R$layout: int notification_template_icon_group -com.google.android.material.R$attr: int actionModeStyle -com.google.android.material.R$string: int mtrl_picker_day_of_week_column_header -cyanogenmod.externalviews.ExternalViewProperties: int getY() -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_3 -com.bumptech.glide.R$id: int none -com.google.android.material.bottomnavigation.BottomNavigationView: void setLabelVisibilityMode(int) -com.turingtechnologies.materialscrollbar.CustomIndicator: CustomIndicator(android.content.Context) -com.xw.repo.bubbleseekbar.R$style: int Base_V28_Theme_AppCompat -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NUMBER -wangdaye.com.geometricweather.R$style: int Preference_PreferenceScreen -com.bumptech.glide.R$styleable: int GradientColor_android_startColor -android.didikee.donate.R$bool -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -androidx.work.impl.utils.futures.AbstractFuture$Waiter: java.lang.Thread thread -wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_multichoice -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: java.lang.String pubTime -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox -wangdaye.com.geometricweather.R$attr: int subtitleTextColor -okhttp3.OkHttpClient: int pingIntervalMillis() -com.google.android.material.R$dimen: int item_touch_helper_swipe_escape_velocity -androidx.recyclerview.R$id: int accessibility_action_clickable_span -com.turingtechnologies.materialscrollbar.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -okhttp3.internal.http1.Http1Codec: okio.BufferedSource source -com.baidu.location.indoor.mapversion.c.a$d: a$d(java.lang.String) -androidx.coordinatorlayout.R$dimen: int compat_button_padding_vertical_material -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String getValue() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean set(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback(retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter,java.util.concurrent.CompletableFuture) -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.legacy.coreutils.R$style: R$style() -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void setInteractivity(boolean) -wangdaye.com.geometricweather.R$drawable: int flag_fr -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.Integer getAngle() -okhttp3.internal.connection.RouteDatabase: void connected(okhttp3.Route) -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: void dispose() -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_id -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIconSize(int) -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar -androidx.appcompat.R$drawable: int abc_edit_text_material -com.google.android.material.R$styleable: int TextInputLayout_startIconTint -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_black -androidx.dynamicanimation.R$layout: int notification_template_part_chronometer -com.google.android.material.R$attr: int progressBarStyle -retrofit2.RequestBuilder: void addPathParam(java.lang.String,java.lang.String,boolean) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runSync() -cyanogenmod.app.ThemeVersion: java.lang.String MIN_SUPPORTED_THEME_VERSION_FIELD_NAME -com.google.android.material.R$color: int material_on_surface_disabled -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event INITIALIZE -androidx.lifecycle.ProcessLifecycleOwner$3$1 -io.reactivex.internal.util.VolatileSizeArrayList: boolean addAll(int,java.util.Collection) -androidx.lifecycle.extensions.R$id: int blocking -androidx.appcompat.resources.R$id: int accessibility_custom_action_22 -com.google.android.material.appbar.AppBarLayout: void setLiftOnScroll(boolean) -androidx.appcompat.R$string: int abc_activitychooserview_choose_application -com.google.android.material.navigation.NavigationView: android.graphics.drawable.Drawable getItemBackground() -com.google.android.material.R$layout: int mtrl_calendar_day -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_visible -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean cancelled -androidx.legacy.coreutils.R$attr: int font -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_title -okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String access$000(okhttp3.internal.cache.DiskLruCache$Snapshot) -android.didikee.donate.R$styleable: int ViewStubCompat_android_id -androidx.preference.R$attr: int enabled -wangdaye.com.geometricweather.R$string: int key_background_free -androidx.preference.R$styleable: int[] CoordinatorLayout_Layout -retrofit2.http.Path: boolean encoded() -androidx.hilt.lifecycle.R$id: int chronometer -james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedWidthMinor -wangdaye.com.geometricweather.R$id: int widget_week_week_1 -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitationProbability(java.lang.Float) -okhttp3.internal.Util: boolean equal(java.lang.Object,java.lang.Object) -okhttp3.Response: okhttp3.Headers headers -com.google.android.material.R$drawable: int material_ic_keyboard_arrow_left_black_24dp -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: double Value -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderFetchStrategy -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_ActionBar -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void close(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver,long) -androidx.lifecycle.LiveData$LifecycleBoundObserver: LiveData$LifecycleBoundObserver(androidx.lifecycle.LiveData,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Observer) -com.google.android.material.R$attr: int customBoolean -wangdaye.com.geometricweather.R$string: int total -androidx.appcompat.widget.SwitchCompat: int getCompoundPaddingLeft() -okhttp3.ConnectionSpec: void apply(javax.net.ssl.SSLSocket,boolean) -androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_width_major -com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context,android.util.AttributeSet,int) -androidx.transition.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.R$id: int blocking -okhttp3.internal.ws.RealWebSocket$1 -androidx.coordinatorlayout.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Light -androidx.preference.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setDraggableFromAnywhere(boolean) -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: io.reactivex.Scheduler scheduler -androidx.appcompat.R$dimen: int abc_action_bar_overflow_padding_start_material -android.didikee.donate.R$id: int multiply -androidx.lifecycle.service.R -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$attr: int dayTodayStyle -androidx.recyclerview.widget.RecyclerView: androidx.core.view.NestedScrollingChildHelper getScrollingChildHelper() -com.google.android.material.floatingactionbutton.FloatingActionButton: int getSizeDimension() -okhttp3.internal.ws.WebSocketWriter: void writePong(okio.ByteString) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterEnabled -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetRight -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstHorizontalBias -okhttp3.HttpUrl: int querySize() -android.didikee.donate.R$attr: int actionOverflowButtonStyle -androidx.work.R$id: int chronometer -com.google.android.material.textfield.TextInputLayout: void setErrorIconDrawable(int) -okhttp3.internal.http.RealInterceptorChain: int connectTimeout -wangdaye.com.geometricweather.R$attr: int boxStrokeWidth -androidx.activity.R$id: int action_image -androidx.preference.R$attr: int dropDownListViewStyle -com.google.android.material.R$color: int mtrl_calendar_selected_range -com.jaredrummler.android.colorpicker.R$drawable: int abc_item_background_holo_dark -android.didikee.donate.R$attr: int iconifiedByDefault -com.google.android.material.R$integer: int cancel_button_image_alpha -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display4 -com.google.android.material.R$styleable: int[] AppCompatTheme -com.google.android.material.R$dimen: int design_bottom_navigation_active_item_min_width -wangdaye.com.geometricweather.R$id: int invisible -com.google.android.material.chip.Chip: void setChipCornerRadius(float) -com.jaredrummler.android.colorpicker.R$id: int src_over -okhttp3.internal.platform.Platform: javax.net.ssl.SSLContext getSSLContext() -com.google.android.material.appbar.AppBarLayout: int getMinimumHeightForVisibleOverlappingContent() -wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_peek_height_min -androidx.constraintlayout.widget.R$string -androidx.activity.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object getKey(java.lang.Object) -com.amap.api.fence.GeoFence: void setCustomId(java.lang.String) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Fullscreen -com.google.android.material.R$styleable: int AppCompatTheme_actionModeFindDrawable -james.adaptiveicon.R$attr: int titleTextStyle -com.google.android.material.R$styleable: int Constraint_flow_lastHorizontalBias -com.google.android.material.R$styleable: int SearchView_android_inputType -wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_enforceMaterialTheme -com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrim(android.graphics.drawable.Drawable) -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_DESTROY -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_background -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec codec() -com.google.android.material.R$style: int Widget_MaterialComponents_Tooltip -wangdaye.com.geometricweather.R$attr: int bsb_bubble_color -androidx.preference.R$dimen: int notification_media_narrow_margin -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getStrokeColor() -retrofit2.RequestFactory: java.lang.reflect.Method method -com.google.android.material.R$id: int tag_transition_group -androidx.appcompat.widget.AppCompatEditText: void setBackgroundDrawable(android.graphics.drawable.Drawable) -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: CustomTileListenerService$ICustomTileListenerWrapper(cyanogenmod.app.CustomTileListenerService) -okhttp3.internal.http2.Http2Writer: java.util.logging.Logger logger -com.amap.api.location.AMapLocation: java.lang.String z -androidx.constraintlayout.widget.R$attr: int srcCompat -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -wangdaye.com.geometricweather.db.entities.LocationEntity: void setFormattedId(java.lang.String) -com.jaredrummler.android.colorpicker.R$attr: int cpv_colorPresets -androidx.loader.R$styleable: int GradientColorItem_android_offset -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_contentDescription -com.jaredrummler.android.colorpicker.R$id: int end -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -androidx.constraintlayout.widget.R$drawable: int abc_textfield_activated_mtrl_alpha -androidx.core.R$id: int actions -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: org.reactivestreams.Subscription upstream -androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver -com.turingtechnologies.materialscrollbar.R$attr: int spinnerStyle -com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context,android.util.AttributeSet,int) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 -cyanogenmod.app.ThemeVersion: java.util.List getComponentVersions() -com.google.gson.stream.JsonReader: void push(int) -androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonCompat -com.google.android.material.tabs.TabLayout: void setSelectedTabView(int) -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context) -com.google.android.material.R$style: int ThemeOverlay_AppCompat_ActionBar -android.didikee.donate.R$attr: int buttonPanelSideLayout -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -androidx.appcompat.widget.AppCompatImageButton: android.graphics.PorterDuff$Mode getSupportImageTintMode() -cyanogenmod.externalviews.KeyguardExternalView$9: void run() -androidx.appcompat.R$styleable: int MenuItem_alphabeticModifiers -androidx.appcompat.R$id: int accessibility_custom_action_18 -androidx.vectordrawable.R$id: int accessibility_custom_action_17 -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SearchView -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_color -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.functions.Function valueSelector -wangdaye.com.geometricweather.R$styleable: int SearchView_android_focusable -wangdaye.com.geometricweather.R$anim: int x2_accelerate_interpolator -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_wrapMode -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode Hight_Accuracy -com.google.android.material.R$drawable: int avd_show_password -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_showText -okhttp3.Cookie$Builder: okhttp3.Cookie build() -com.google.android.material.R$styleable: int TextInputLayout_errorIconDrawable -com.xw.repo.bubbleseekbar.R$attr: int arrowHeadLength -android.didikee.donate.R$attr: int popupMenuStyle -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabInlineLabel -retrofit2.Call: retrofit2.Call clone() -okhttp3.internal.http.HttpCodec: void cancel() -wangdaye.com.geometricweather.R$attr: int layout_constraintRight_creator -com.google.android.material.R$dimen: int material_clock_size -androidx.constraintlayout.widget.R$styleable: int MotionScene_defaultDuration -androidx.constraintlayout.widget.R$styleable: int SearchView_voiceIcon -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: float mMax -wangdaye.com.geometricweather.R$id: int mtrl_calendar_text_input_frame -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub -okhttp3.internal.cache.DiskLruCache: boolean journalRebuildRequired() -okhttp3.Response: java.lang.String message() -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_lightContainer -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyTitle -okhttp3.internal.http2.Http2Codec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) -androidx.lifecycle.LifecycleRegistry$ObserverWithState: androidx.lifecycle.Lifecycle$State mState -com.google.android.material.R$styleable: int CustomAttribute_customColorValue -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource MF -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -androidx.appcompat.R$dimen: int abc_action_bar_default_height_material -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_icon -com.jaredrummler.android.colorpicker.R$attr: int maxWidth -okhttp3.internal.connection.StreamAllocation: boolean hasMoreRoutes() -androidx.appcompat.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -com.turingtechnologies.materialscrollbar.R$attr: int layout_collapseMode -com.turingtechnologies.materialscrollbar.R$attr: int chipGroupStyle -androidx.constraintlayout.widget.R$attr: int contentInsetStart -com.google.android.gms.common.server.converter.StringToIntConverter$zaa: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitationProbability -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionBar -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog_MinWidth -wangdaye.com.geometricweather.R$drawable: int ic_router -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Error -androidx.fragment.R$id: int right_side -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String MobileLink -androidx.loader.R$style: int TextAppearance_Compat_Notification_Time -com.google.android.material.R$attr: int ratingBarStyleSmall -com.google.android.material.R$styleable: int Constraint_android_layout_marginRight -androidx.viewpager.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Colored -okhttp3.OkHttpClient$Builder -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet) -okhttp3.HttpUrl: java.lang.String PASSWORD_ENCODE_SET -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_holo_light -androidx.appcompat.R$dimen: int abc_text_size_title_material_toolbar -wangdaye.com.geometricweather.R$attr: int fontProviderCerts -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTopCompat -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorSize -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowRadius -android.support.v4.app.INotificationSideChannel: void notify(java.lang.String,int,java.lang.String,android.app.Notification) -androidx.appcompat.R$styleable: int TextAppearance_android_shadowDy -com.google.android.material.R$string: int material_minute_selection -com.jaredrummler.android.colorpicker.R$id: int group_divider -com.google.android.material.slider.RangeSlider: void setTickVisible(boolean) -androidx.constraintlayout.widget.R$styleable: int ActionMode_height -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.util.List getValue() -androidx.constraintlayout.widget.R$dimen: int abc_text_size_headline_material -androidx.viewpager2.R$dimen: int notification_subtext_size -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ListPopupWindow -com.amap.api.location.AMapLocation: double getAltitude() -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_overflow_material -wangdaye.com.geometricweather.db.entities.WeatherEntity: long timeStamp -wangdaye.com.geometricweather.GeometricWeather: GeometricWeather() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation -org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Object[]) -com.google.android.material.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -wangdaye.com.geometricweather.R$color: int colorLevel_3 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarSize -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button -wangdaye.com.geometricweather.R$styleable: int Chip_chipIconVisible -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_LOCATION_PARAMETER -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -androidx.preference.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -okhttp3.internal.http2.Http2Reader$ContinuationSource: int left -androidx.preference.R$styleable: int AppCompatSeekBar_android_thumb -wangdaye.com.geometricweather.R$attr: int attributeName -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: java.lang.Object[] latest -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String PUBLIC_SUFFIX_RESOURCE -cyanogenmod.app.CustomTileListenerService: void onListenerConnected() -androidx.viewpager2.R$attr: int fontVariationSettings -androidx.preference.R$dimen: int abc_text_size_title_material -com.google.android.material.R$attr: int layout_constraintVertical_weight -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getO3Color(android.content.Context) -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_layout -com.google.gson.internal.LinkedTreeMap: java.lang.Object remove(java.lang.Object) -com.google.android.material.R$color: int mtrl_textinput_focused_box_stroke_color -org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Iterable) -androidx.appcompat.R$drawable: int abc_ic_star_black_16dp -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: void close() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: BaiduIPLocationService$1(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.CMHardwareManager sCMHardwareManagerInstance -cyanogenmod.app.ILiveLockScreenManager -android.didikee.donate.R$style: int Widget_AppCompat_SeekBar_Discrete -wangdaye.com.geometricweather.R$dimen: int spinner_drop_width -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: double Value -okhttp3.internal.Util: void closeQuietly(java.net.ServerSocket) -com.google.android.material.R$style: int Widget_MaterialComponents_Button_Icon -androidx.preference.TwoStatePreference$SavedState: android.os.Parcelable$Creator CREATOR -androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.observers.BasicIntQueueDisposable: void clear() -wangdaye.com.geometricweather.R$dimen: int abc_control_inset_material -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_7 -androidx.constraintlayout.widget.R$attr: int maxWidth -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onNext(java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_fontVariationSettings -androidx.constraintlayout.widget.R$styleable: int Motion_motionStagger -androidx.viewpager2.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getSnow() -android.support.v4.os.IResultReceiver$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipStrokeColor() -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_grey -okhttp3.internal.connection.StreamAllocation: java.net.Socket releaseIfNoNewStreams() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconVisible -androidx.vectordrawable.R$styleable: int FontFamilyFont_fontVariationSettings -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_viewInflaterClass -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -androidx.preference.R$style: int TextAppearance_AppCompat_Caption -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: boolean disposed -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterOverflowTextAppearance -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy DROP -cyanogenmod.themes.ThemeChangeRequest$Builder: java.util.Map mThemeComponents -okhttp3.internal.http2.Http2 -com.google.android.material.R$styleable: int Layout_layout_constrainedWidth -com.google.android.material.R$attr: int backgroundColor -okhttp3.internal.http.HttpDate: java.util.Date parse(java.lang.String) -james.adaptiveicon.R$styleable: int MenuItem_alphabeticModifiers -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowDx -androidx.preference.R$style: int Widget_AppCompat_ActionBar -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.Observer downstream -com.google.android.material.R$styleable: int[] CoordinatorLayout_Layout -okhttp3.internal.cache.DiskLruCache$1: DiskLruCache$1(okhttp3.internal.cache.DiskLruCache) -androidx.preference.R$styleable: int SwitchPreferenceCompat_summaryOn -wangdaye.com.geometricweather.R$attr: int insetForeground -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getRippleColor() -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Subhead -androidx.appcompat.R$dimen: int abc_edit_text_inset_bottom_material -okhttp3.internal.connection.ConnectInterceptor: okhttp3.OkHttpClient client -androidx.activity.R$drawable: int notification_template_icon_low_bg -com.google.android.material.R$styleable: int MockView_mock_diagonalsColor -com.google.android.material.chip.Chip: void setLines(int) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HistoryEntityDao getHistoryEntityDao() -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark_normal_background -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_begin -androidx.lifecycle.Transformations$2: Transformations$2(androidx.arch.core.util.Function,androidx.lifecycle.MediatorLiveData) -com.google.android.material.R$styleable: int MockView_mock_labelColor -androidx.constraintlayout.widget.R$layout: int abc_popup_menu_header_item_layout -androidx.constraintlayout.widget.R$attr: int buttonStyle -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean) -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickInactiveTintList() -androidx.constraintlayout.widget.R$styleable: int ActionMode_closeItemLayout -androidx.constraintlayout.helper.widget.Flow -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List kongtiao -androidx.coordinatorlayout.R$id: int accessibility_custom_action_1 -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_DES_CBC_MD5 -com.google.android.material.slider.RangeSlider: void setHaloRadius(int) -androidx.preference.R$styleable: int PreferenceImageView_android_maxHeight -okio.SegmentPool -androidx.preference.R$layout: int abc_alert_dialog_title_material -wangdaye.com.geometricweather.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.db.entities.WeatherEntity: long publishTime -androidx.customview.R$drawable: int notification_tile_bg -okhttp3.HttpUrl: okhttp3.HttpUrl$Builder newBuilder(java.lang.String) -cyanogenmod.app.CustomTileListenerService: java.lang.String SERVICE_INTERFACE -androidx.appcompat.widget.ListPopupWindow: void setOnItemClickListener(android.widget.AdapterView$OnItemClickListener) -com.google.android.material.textfield.TextInputLayout: void setEndIconDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List maxCountItems -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_EditText -io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit) -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnSettingsClickIntent(android.content.Intent) -com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_BAD -android.didikee.donate.R$attr: int showTitle -okhttp3.Cache$2: boolean canRemove -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Subhead -androidx.activity.R$dimen: int notification_big_circle_margin -androidx.lifecycle.extensions.R$drawable: int notification_tile_bg -androidx.activity.R$dimen: int notification_top_pad_large_text -androidx.legacy.coreutils.R$dimen: int notification_large_icon_width -retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.Object adapt(retrofit2.Call) -androidx.coordinatorlayout.R$id: int tag_accessibility_pane_title -androidx.appcompat.R$styleable: int MenuView_android_headerBackground -androidx.appcompat.R$id: int action_bar_spinner -cyanogenmod.app.Profile: cyanogenmod.profiles.ConnectionSettings getConnectionSettingWithSubId(int) -com.xw.repo.bubbleseekbar.R$id: int expand_activities_button -androidx.appcompat.widget.ActionMenuPresenter$OverflowPopup -james.adaptiveicon.R$styleable: int AppCompatTheme_dialogTheme -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_shapeAppearance -cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_DO_NOTHING -androidx.appcompat.R$attr: int iconTintMode -androidx.viewpager.widget.ViewPager: void setScrollingCacheEnabled(boolean) -androidx.hilt.R$styleable: int[] FragmentContainerView -androidx.viewpager.widget.ViewPager: ViewPager(android.content.Context) -android.support.v4.app.INotificationSideChannel$Default: void cancelAll(java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getTotalPrecipitation() -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_27 -androidx.preference.R$styleable: int[] AppCompatTextView -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -androidx.recyclerview.widget.RecyclerView$LayoutManager: RecyclerView$LayoutManager() -androidx.preference.R$id: int notification_main_column -com.turingtechnologies.materialscrollbar.R$interpolator -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setIcePrecipitationProbability(java.lang.Float) -okhttp3.internal.cache.CacheStrategy$Factory: long cacheResponseAge() -com.google.android.material.R$styleable: int Layout_barrierDirection -okio.Okio -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_4_30 -com.jaredrummler.android.colorpicker.R$attr: int iconTintMode -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -wangdaye.com.geometricweather.common.basic.models.weather.History: long getTime() -com.google.android.material.R$styleable: int SearchView_submitBackground -wangdaye.com.geometricweather.R$animator: int weather_clear_day_2 -james.adaptiveicon.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.R$attr: int actionModeBackground -wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_container -com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatElevation() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String MinuteText -com.google.android.material.R$attr: int title -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NULL -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: boolean cancelled -androidx.appcompat.R$styleable: int ActionBar_icon -wangdaye.com.geometricweather.R$id: int action_mode_bar_stub -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void run() -wangdaye.com.geometricweather.R$styleable: int[] BottomNavigationView -okhttp3.HttpUrl: java.lang.String fragment() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle -com.amap.api.location.AMapLocationClientOption: boolean isGpsFirst() -com.bumptech.glide.integration.okhttp.R$dimen: int notification_content_margin_start -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener access$102(cyanogenmod.weather.RequestInfo,cyanogenmod.weather.IRequestInfoListener) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property O3 -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.Observer downstream -cyanogenmod.weather.IWeatherServiceProviderChangeListener -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_tick_mark_material -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlActivated -com.google.android.material.textfield.TextInputLayout: void setErrorIconTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction -android.didikee.donate.R$id: int search_src_text -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitleTextAppearance -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.github.rahatarmanahmed.cpv.CircularProgressView: void onDraw(android.graphics.Canvas) -androidx.vectordrawable.animated.R$layout: R$layout() -okhttp3.internal.publicsuffix.PublicSuffixDatabase: okhttp3.internal.publicsuffix.PublicSuffixDatabase get() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_MODE_VALIDATOR -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Surface -com.google.android.material.tabs.TabLayout: void setTabMode(int) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: int phenomenonId -com.google.android.material.R$styleable: int AppCompatTheme_android_windowAnimationStyle -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.util.concurrent.atomic.AtomicReference current -com.xw.repo.bubbleseekbar.R$attr: int actionOverflowMenuStyle -com.turingtechnologies.materialscrollbar.R$id: int submit_area -androidx.preference.R$attr: int titleTextColor -io.reactivex.Observable: io.reactivex.Observable buffer(int,java.util.concurrent.Callable) -com.bumptech.glide.load.ImageHeaderParser$ImageType: boolean hasAlpha() -androidx.legacy.coreutils.R$dimen: int notification_top_pad -androidx.preference.R$dimen: int abc_dialog_padding_material -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_percent -com.github.rahatarmanahmed.cpv.CircularProgressView$7: CircularProgressView$7(com.github.rahatarmanahmed.cpv.CircularProgressView) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_EditText -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SWAP_VOLUME_KEYS_ON_ROTATION_VALIDATOR -androidx.constraintlayout.widget.R$attr: int dialogTheme -com.google.android.material.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_toBottomOf -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_icon_padding -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability -cyanogenmod.externalviews.KeyguardExternalView$2: void setInteractivity(boolean) -androidx.constraintlayout.widget.R$attr: int actionModePasteDrawable -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_font -androidx.preference.R$attr: int alertDialogCenterButtons -android.didikee.donate.R$styleable: int AppCompatTheme_editTextStyle -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean isDisposed() -okhttp3.internal.http1.Http1Codec: okhttp3.Response$Builder readResponseHeaders(boolean) -retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderCerts -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginLeft -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void dispose() -james.adaptiveicon.R$styleable: int FontFamily_fontProviderQuery -org.greenrobot.greendao.AbstractDao: void deleteByKeyInsideSynchronized(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement) -com.xw.repo.bubbleseekbar.R$attr: int actionBarTheme -com.google.android.material.R$xml -wangdaye.com.geometricweather.R$string: int today -com.xw.repo.bubbleseekbar.R$attr: int isLightTheme -okhttp3.internal.ws.RealWebSocket: void failWebSocket(java.lang.Exception,okhttp3.Response) -androidx.dynamicanimation.R$drawable: int notification_bg_low_pressed -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle DAILY -androidx.viewpager2.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.R$drawable: int flag_it -androidx.preference.R$styleable: int SwitchCompat_trackTint -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windSpeedEnd -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_clear -cyanogenmod.hardware.CMHardwareManager: int readPersistentInt(java.lang.String) -com.google.android.material.R$attr: int icon -cyanogenmod.hardware.ICMHardwareService: int getNumGammaControls() -james.adaptiveicon.R$id: int src_atop -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_disableDependentsState -james.adaptiveicon.R$dimen: int abc_seekbar_track_progress_height_material -wangdaye.com.geometricweather.R$id: int tag_icon_night -wangdaye.com.geometricweather.R$layout: int material_timepicker_dialog -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_3 -com.google.android.material.R$dimen: int mtrl_snackbar_padding_horizontal -androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_enforceMaterialTheme -wangdaye.com.geometricweather.R$attr: int drawableTopCompat -com.google.android.material.R$styleable: int ConstraintSet_android_translationY -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_256_CCM_8_SHA256 -com.google.android.material.R$drawable: int abc_seekbar_track_material -cyanogenmod.app.IPartnerInterface$Stub$Proxy: boolean setZenModeWithDuration(int,long) -androidx.recyclerview.R$styleable: int ColorStateListItem_android_color -android.didikee.donate.R$styleable: int[] ButtonBarLayout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String unit -james.adaptiveicon.R$attr: int navigationContentDescription -androidx.swiperefreshlayout.R$styleable: R$styleable() -james.adaptiveicon.R$attr: int radioButtonStyle -com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarTextViewStyle -androidx.transition.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource -androidx.transition.R$drawable -androidx.work.impl.foreground.SystemForegroundService: SystemForegroundService() -androidx.core.view.ViewCompat$1 -com.amap.api.fence.GeoFence: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration getPrecipitationDuration() -com.google.android.material.tabs.TabLayout: void setTabRippleColorResource(int) -androidx.transition.R$color: R$color() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonStyleSmall -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_submitBackground -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer iso0 -androidx.constraintlayout.widget.R$styleable: int ActionBar_homeLayout -androidx.core.content.FileProvider -android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_elevation -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum -wangdaye.com.geometricweather.R$id: int fill_horizontal -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: int Index -okhttp3.WebSocketListener: void onOpen(okhttp3.WebSocket,okhttp3.Response) -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -androidx.appcompat.R$drawable: int tooltip_frame_light -com.google.android.material.R$attr: int materialAlertDialogTitleTextStyle -wangdaye.com.geometricweather.location.services.LocationService: void requestLocation(android.content.Context,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) -retrofit2.ParameterHandler$PartMap: retrofit2.Converter valueConverter -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String getTo() -cyanogenmod.app.StatusBarPanelCustomTile: int initialPid -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: java.lang.String Unit -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Visibility -androidx.dynamicanimation.R$id: int icon -androidx.work.R$styleable: int FontFamilyFont_android_fontStyle -androidx.appcompat.R$style: int Theme_AppCompat_Light_DarkActionBar -retrofit2.RequestBuilder: boolean hasBody -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_spanCount -com.turingtechnologies.materialscrollbar.R$dimen: int notification_big_circle_margin -james.adaptiveicon.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_popupWindowStyle -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$x -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setText(java.lang.String) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void dispose() -androidx.vectordrawable.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitationProbability -com.google.gson.stream.JsonReader: boolean isLenient() -wangdaye.com.geometricweather.R$id: int widget_day_weather -android.didikee.donate.R$style: int Widget_AppCompat_Spinner -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonRiseDate(java.util.Date) -wangdaye.com.geometricweather.R$attr: int shrinkMotionSpec -wangdaye.com.geometricweather.R$string: int week -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endX -io.reactivex.Observable: io.reactivex.Observable skipWhile(io.reactivex.functions.Predicate) -com.google.android.material.R$drawable: int abc_ic_star_half_black_36dp -androidx.appcompat.R$dimen: int abc_dialog_list_padding_top_no_title -com.google.android.material.button.MaterialButton$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_subtitle_top_margin_material -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: void run() -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onStart() -com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_chainStyle -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherText(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum Minimum -com.google.android.material.R$styleable: int Constraint_android_id -com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalAlign -androidx.constraintlayout.widget.R$attr: int flow_verticalBias -okhttp3.internal.http.StatusLine: java.lang.String message -com.amap.api.location.AMapLocation: float getBearing() -android.didikee.donate.R$drawable: int abc_spinner_textfield_background_material -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Dialog -com.google.android.material.R$styleable: int Constraint_android_transformPivotY -androidx.customview.R$layout: int notification_action_tombstone -androidx.coordinatorlayout.R$drawable: int notification_action_background -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_AES_256_CBC_SHA -okhttp3.ResponseBody$BomAwareReader: okio.BufferedSource source -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_switch_track -james.adaptiveicon.R$drawable: int abc_ic_menu_cut_mtrl_alpha -androidx.lifecycle.LiveData: java.lang.Object mPendingData -wangdaye.com.geometricweather.R$id: int decelerateAndComplete -wangdaye.com.geometricweather.R$string: int feedback_request_location -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_EditText -com.turingtechnologies.materialscrollbar.R$dimen -androidx.fragment.R$dimen: R$dimen() -wangdaye.com.geometricweather.R$attr: int msb_scrollMode -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle -androidx.vectordrawable.R$attr: int fontProviderAuthority -androidx.preference.R$dimen: int notification_action_icon_size -com.google.android.material.R$styleable: int MotionTelltales_telltales_tailScale -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float totalPrecipitationProbability -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarStyle -com.jaredrummler.android.colorpicker.R$attr: int popupWindowStyle -com.amap.api.fence.GeoFence: void setAble(boolean) -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorColor -wangdaye.com.geometricweather.R$id: int coordinator -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyleSmall -cyanogenmod.app.ILiveLockScreenChangeListener: void onLiveLockScreenChanged(cyanogenmod.app.LiveLockScreenInfo) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -wangdaye.com.geometricweather.R$styleable: int[] Layout -com.google.android.material.chip.Chip: void setCheckedIconResource(int) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_keylines -androidx.transition.R$attr: int fontProviderAuthority -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -androidx.appcompat.R$attr: int textAllCaps -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemTextAppearanceActive() -com.google.android.material.R$dimen: int abc_action_bar_content_inset_with_nav -androidx.hilt.lifecycle.R$id: int text2 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_spinner_mtrl_am_alpha -androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.Lifecycle getLifecycle() -com.github.rahatarmanahmed.cpv.CircularProgressView: int animSteps -androidx.appcompat.R$styleable: int AppCompatTheme_colorPrimaryDark -wangdaye.com.geometricweather.R$string: int feedback_subtitle_data -cyanogenmod.profiles.RingModeSettings: int describeContents() -cyanogenmod.app.CustomTileListenerService: boolean isBound() -com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context) -cyanogenmod.profiles.AirplaneModeSettings: boolean mDirty -wangdaye.com.geometricweather.R$styleable: int Chip_chipIconEnabled -com.amap.api.location.AMapLocationQualityReport: long getNetUseTime() -androidx.preference.DropDownPreference -wangdaye.com.geometricweather.R$attr: int drawableSize -com.xw.repo.bubbleseekbar.R$style: R$style() -android.didikee.donate.R$styleable: int MenuItem_android_numericShortcut -wangdaye.com.geometricweather.R$attr: int paddingLeftSystemWindowInsets -okhttp3.internal.cache.InternalCache: void trackResponse(okhttp3.internal.cache.CacheStrategy) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature ApparentTemperature -com.google.android.material.chip.ChipGroup: void setShowDividerHorizontal(int) -androidx.constraintlayout.widget.R$attr: int height -com.xw.repo.bubbleseekbar.R$attr: int buttonBarNegativeButtonStyle -com.google.android.material.chip.ChipGroup: void setDividerDrawableVertical(android.graphics.drawable.Drawable) -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_font -androidx.appcompat.R$string: int abc_menu_delete_shortcut_label -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getPressureText(android.content.Context,float) -com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetRight -androidx.appcompat.R$dimen: int compat_notification_large_icon_max_width -androidx.lifecycle.extensions.R$id: int chronometer -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_borderless_material -wangdaye.com.geometricweather.R$attr: int colorOnBackground -cyanogenmod.weather.RequestInfo: int getRequestType() -com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Dialog -retrofit2.Response: java.lang.String message() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionButtonStyle -com.google.android.material.internal.NavigationMenuItemView: void setTextAppearance(int) -com.google.android.material.internal.VisibilityAwareImageButton: int getUserSetVisibility() -com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonTint -androidx.viewpager2.widget.ViewPager2: void setOrientation(int) -com.google.android.material.R$id: int accessibility_custom_action_1 -androidx.lifecycle.extensions.R$anim: int fragment_fast_out_extra_slow_in -wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_default -wangdaye.com.geometricweather.R$attr: int constraintSet -com.google.android.material.R$styleable: int RecyclerView_android_clipToPadding -cyanogenmod.themes.IThemeService$Stub$Proxy: void unregisterThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) -com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_material_light -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayDetailsWidgetConfigActivity -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: AccuCurrentResult$WetBulbTemperature$Imperial() -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setSwitchView(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout) -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_widget_height -wangdaye.com.geometricweather.R$styleable: int LoadingImageView_imageAspectRatio -androidx.vectordrawable.R$attr: int fontWeight -com.jaredrummler.android.colorpicker.R$attr: int iconSpaceReserved -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) -com.google.android.material.R$styleable: int ConstraintSet_flow_verticalBias -androidx.lifecycle.extensions.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$color: int abc_decor_view_status_guard_light -cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String TAG -com.google.android.material.R$dimen: int mtrl_calendar_pre_l_text_clip_padding -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onNext(java.lang.Object) -com.amap.api.location.AMapLocation: java.lang.String r -com.google.gson.stream.JsonReader: int pos -androidx.appcompat.R$dimen: int abc_alert_dialog_button_dimen -androidx.constraintlayout.widget.R$attr: int flow_firstVerticalBias -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingTop -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setTextColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_3 -com.google.android.material.textfield.TextInputLayout: void setEndIconVisible(boolean) -androidx.viewpager.R$styleable: int FontFamilyFont_fontVariationSettings -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Selected -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Pm25 -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.R$attr: int errorIconDrawable -james.adaptiveicon.R$styleable: int SwitchCompat_thumbTextPadding -androidx.core.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.R$drawable: int abc_ab_share_pack_mtrl_alpha -androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context) -io.reactivex.internal.subscriptions.DeferredScalarSubscription: java.lang.Object value -com.google.android.material.R$style: int TextAppearance_AppCompat_Title -androidx.preference.R$id: int blocking -com.google.android.material.R$attr: int state_collapsed -io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onNext -com.google.android.material.R$styleable: int TabLayout_tabInlineLabel -okhttp3.internal.http2.Http2Reader$Handler: void pushPromise(int,int,java.util.List) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info -androidx.constraintlayout.widget.R$id: int right -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onBouncerShowing(boolean) -androidx.customview.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HistoryEntityDao historyEntityDao -androidx.work.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWeatherText() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_0 -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_framePosition -com.google.android.material.R$dimen: int cardview_default_elevation -wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextSpinner -com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreference_Material -com.bumptech.glide.R$layout: R$layout() -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node tail -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long time -com.xw.repo.bubbleseekbar.R$layout -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getNighttimeWindDegree() -james.adaptiveicon.R$style: int Widget_AppCompat_TextView_SpinnerItem -androidx.recyclerview.R$layout: int custom_dialog -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onComplete() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial -com.google.android.material.R$dimen: int tooltip_corner_radius -com.github.rahatarmanahmed.cpv.CircularProgressView$5 -com.google.android.material.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_modal_elevation -androidx.constraintlayout.widget.R$styleable: int KeyCycle_motionTarget -com.google.android.material.R$drawable: int abc_btn_check_to_on_mtrl_000 -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setOnceLocation(boolean) -cyanogenmod.content.Intent: java.lang.String URI_SCHEME_PACKAGE -androidx.appcompat.R$drawable: int abc_ratingbar_small_material -android.didikee.donate.R$styleable: int SwitchCompat_thumbTintMode -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: java.lang.String modeId -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.R$drawable: int abc_switch_thumb_material -androidx.work.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.constraintlayout.widget.R$color: int switch_thumb_disabled_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.util.Date Rise -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_editor_absoluteY -wangdaye.com.geometricweather.R$id: int action_menu_divider -androidx.recyclerview.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$integer: int abc_config_activityShortDur -androidx.appcompat.R$drawable: int abc_list_pressed_holo_light -wangdaye.com.geometricweather.background.receiver.widget.WidgetDayWeekProvider: WidgetDayWeekProvider() -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean isDisposed() -android.didikee.donate.R$attr: int subtitle -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_translation_z_hovered_focused -com.google.android.material.R$style: int Theme_MaterialComponents_Bridge -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startX -androidx.appcompat.widget.SwitchCompat: void setTrackTintMode(android.graphics.PorterDuff$Mode) -androidx.constraintlayout.widget.R$attr: int minHeight -com.google.android.material.R$attr: int reverseLayout -com.google.android.material.R$styleable: int MotionLayout_currentState -androidx.dynamicanimation.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.R$id: int widget_day_icon -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.Platform buildIfSupported() -cyanogenmod.providers.CMSettings$System: java.lang.String PROXIMITY_ON_WAKE -com.google.android.material.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton -wangdaye.com.geometricweather.R$id: int widget_day_week_week_1 -androidx.activity.R$id: int text2 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.google.android.material.textfield.TextInputLayout: int getHelperTextCurrentTextColor() -retrofit2.Response: retrofit2.Response success(int,java.lang.Object) -androidx.constraintlayout.widget.R$color -androidx.appcompat.R$styleable: int MenuView_subMenuArrow -androidx.legacy.coreutils.R$styleable: int GradientColor_android_endX -com.google.android.material.R$dimen: int mtrl_snackbar_background_corner_radius -okhttp3.internal.ws.WebSocketProtocol: void validateCloseCode(int) -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_ANY -com.google.android.material.R$styleable: int TabLayout_tabPaddingStart -androidx.dynamicanimation.R$id: int blocking -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_als -wangdaye.com.geometricweather.R$attr: int cpv_color -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listMenuViewStyle -com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$dimen: int mtrl_calendar_year_height -androidx.viewpager.R$drawable: int notification_tile_bg -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void collapseNotificationPanel() -androidx.appcompat.resources.R$id: int accessibility_custom_action_23 -com.google.android.material.tabs.TabLayout: void setTabRippleColor(android.content.res.ColorStateList) -okhttp3.EventListener$2: okhttp3.EventListener create(okhttp3.Call) -com.baidu.location.e.n -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int NO_REQUEST_NO_VALUE -okio.BufferedSource: long indexOf(byte,long) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul24H -james.adaptiveicon.R$styleable: int AppCompatTheme_tooltipFrameBackground -androidx.appcompat.resources.R$id: int accessibility_custom_action_10 -com.google.gson.stream.JsonReader: java.lang.String toString() -com.google.android.material.R$styleable: int CollapsingToolbarLayout_titleEnabled -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: java.lang.String desc -com.google.android.material.R$attr: int placeholder_emptyVisibility -androidx.preference.R$styleable: int Preference_android_fragment -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorSchemeColors(int[]) -androidx.preference.R$id: int checked -com.google.android.material.R$styleable: int ImageFilterView_overlay -wangdaye.com.geometricweather.R$attr: int cpv_allowCustom -io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Thread runner -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -androidx.preference.R$dimen: int abc_action_bar_subtitle_top_margin_material -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -retrofit2.OptionalConverterFactory: OptionalConverterFactory() -com.google.android.material.R$styleable: int MenuView_android_verticalDivider -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status IMPLICIT_INITIALIZING -androidx.transition.R$id: int title -androidx.appcompat.app.AppCompatDelegateImpl$PanelFeatureState$SavedState -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_stroke_width_focused -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_subtitleTextStyle -wangdaye.com.geometricweather.R$id: int container_main_pollen_title -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -wangdaye.com.geometricweather.R$id: int mtrl_picker_header_toggle -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_KEYS_CONTROL_RING_STREAM_VALIDATOR -androidx.preference.R$id: int seekbar -androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView: void setHoverListener(androidx.appcompat.widget.MenuItemHoverListener) -wangdaye.com.geometricweather.R$array: int temperature_units_long -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_20 -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: java.util.concurrent.atomic.AtomicInteger active -androidx.transition.R$style: int TextAppearance_Compat_Notification_Info -james.adaptiveicon.R$dimen: int abc_action_bar_icon_vertical_padding_material -androidx.appcompat.R$id: int decor_content_parent -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPrimary() -okio.Util -com.amap.api.location.AMapLocationClient: void setApiKey(java.lang.String) -io.reactivex.internal.queue.SpscArrayQueue: long serialVersionUID -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: int nameId -androidx.hilt.R$string -androidx.appcompat.R$drawable: int abc_ic_star_half_black_48dp -io.reactivex.internal.observers.LambdaObserver -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitationDuration -androidx.swiperefreshlayout.R$layout: int notification_template_icon_group -android.didikee.donate.R$style: int Base_AlertDialog_AppCompat -com.jaredrummler.android.colorpicker.R$attr: int multiChoiceItemLayout -androidx.work.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.util.List getValue() -com.amap.api.location.AMapLocation: java.lang.String h(com.amap.api.location.AMapLocation,java.lang.String) -com.google.android.material.R$styleable: int OnSwipe_touchRegionId -okhttp3.RealCall$AsyncCall: RealCall$AsyncCall(okhttp3.RealCall,okhttp3.Callback) -com.turingtechnologies.materialscrollbar.R$color: int background_floating_material_light -okhttp3.internal.http1.Http1Codec$FixedLengthSink: okio.Timeout timeout() -retrofit2.Platform: java.util.List defaultConverterFactories() -com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipIconTint() -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lc -android.didikee.donate.R$attr: int homeLayout -androidx.viewpager.widget.PagerTabStrip: boolean getDrawFullUnderline() -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onNext(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_maxButtonHeight -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getCurrentPosition() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_46 -com.turingtechnologies.materialscrollbar.R$attr: int titleTextAppearance -com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$attr: int panelBackground -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -james.adaptiveicon.R$attr: int popupTheme -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_MENU_ACTION_VALIDATOR -wangdaye.com.geometricweather.R$attr: int labelBehavior -okio.RealBufferedSink: okio.Timeout timeout() -com.google.android.material.R$style: int Theme_AppCompat_Dialog_MinWidth -androidx.preference.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem -com.turingtechnologies.materialscrollbar.R$attr: int tabIconTint -androidx.loader.R$attr: int alpha -com.google.android.material.R$style: int Widget_AppCompat_DrawerArrowToggle -androidx.appcompat.R$attr: int windowNoTitle -com.jaredrummler.android.colorpicker.R$attr: int colorAccent -com.google.android.material.slider.BaseSlider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_BINARY -wangdaye.com.geometricweather.R$id: int item_weather_daily_value_value -androidx.appcompat.R$id: int time -com.google.android.material.R$id: int chip3 -okio.AsyncTimeout: boolean cancelScheduledTimeout(okio.AsyncTimeout) -android.didikee.donate.R$attr: int thumbTintMode -cyanogenmod.themes.IThemeService$Stub$Proxy: void rebuildResourceCache() -androidx.hilt.work.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ZEN_ALLOW_LIGHTS_VALIDATOR -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type TEMPERATURE -okhttp3.internal.http.HttpHeaders: okio.ByteString TOKEN_DELIMITERS -androidx.vectordrawable.animated.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.R$id: int list_item -wangdaye.com.geometricweather.R$dimen: int widget_content_text_size -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onNext(java.lang.Object) -com.google.android.material.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.R$attr: int alertDialogCenterButtons -androidx.lifecycle.extensions.R$color -com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingRight -cyanogenmod.app.IProfileManager$Stub -wangdaye.com.geometricweather.R$attr: int positiveButtonText -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -wangdaye.com.geometricweather.R$id: int container_alert_display_view_title -cyanogenmod.profiles.AirplaneModeSettings: void processOverride(android.content.Context) -com.google.android.material.R$styleable: int TextInputLayout_startIconCheckable -cyanogenmod.weather.WeatherInfo$DayForecast -androidx.appcompat.widget.AppCompatImageButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -cyanogenmod.hardware.CMHardwareManager: boolean writePersistentInt(java.lang.String,int) -okhttp3.internal.http2.Http2Connection$Builder: java.lang.String hostname -androidx.fragment.R$styleable: int FontFamily_fontProviderQuery -com.turingtechnologies.materialscrollbar.R$attr: int autoSizeStepGranularity -wangdaye.com.geometricweather.background.polling.work.worker.TomorrowForecastUpdateWorker: TomorrowForecastUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) -wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_small_material -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarSplitStyle -com.google.android.material.R$attr: int thumbColor -androidx.work.R$attr: int ttcIndex -androidx.appcompat.R$attr: int initialActivityCount -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9 -androidx.coordinatorlayout.R$attr: int layout_anchor -com.turingtechnologies.materialscrollbar.R$attr: int statusBarScrim -cyanogenmod.externalviews.ExternalView$8 -wangdaye.com.geometricweather.R$drawable: int notif_temp_104 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ab_share_pack_mtrl_alpha -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String BOOT_ANIM_URI -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String en_US -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -com.google.android.material.R$styleable: int TextAppearance_android_textSize -com.google.android.material.R$dimen: int abc_action_button_min_width_overflow_material -androidx.preference.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -okhttp3.internal.http2.StreamResetException -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontWeight -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_icon_size -com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout_Colored -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_visible -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: long serialVersionUID -com.jaredrummler.android.colorpicker.R$style: int PreferenceFragmentList_Material -androidx.appcompat.R$attr: int lastBaselineToBottomHeight -com.turingtechnologies.materialscrollbar.R$id: int container -com.turingtechnologies.materialscrollbar.R$attr: int state_collapsible -androidx.work.R$bool: int workmanager_test_configuration -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_0 -androidx.appcompat.R$id: int action_divider -android.didikee.donate.R$drawable: int notification_bg -com.google.android.material.R$dimen: int action_bar_size -androidx.appcompat.R$bool: int abc_config_actionMenuItemAllCaps -androidx.appcompat.R$id: int accessibility_custom_action_11 -io.reactivex.internal.subscriptions.SubscriptionArbiter: void request(long) -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.R$attr: int flow_firstHorizontalStyle -androidx.appcompat.R$color: int switch_thumb_normal_material_light -wangdaye.com.geometricweather.R$layout: int test_design_checkbox -androidx.hilt.lifecycle.R$integer -okhttp3.Call: okhttp3.Call clone() -androidx.hilt.R$id: int dialog_button -com.baidu.location.c.d$a -okio.RealBufferedSource: void readFully(byte[]) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_HAIL -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_requestDismiss_0 -com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: void setInternalAutoHideListener(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) -com.google.android.material.R$id: int transition_layout_save -wangdaye.com.geometricweather.R$string: int feedback_check_location_permission -okhttp3.internal.io.FileSystem$1: okio.Sink sink(java.io.File) -cyanogenmod.app.CustomTile$ExpandedItem: int itemDrawableResourceId -io.reactivex.internal.observers.LambdaObserver: void onComplete() -androidx.constraintlayout.widget.R$id: int select_dialog_listview -com.google.android.material.R$styleable: int AppCompatTextView_drawableLeftCompat -cyanogenmod.themes.ThemeManager: int getProgress() -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage RESOURCE_CACHE -androidx.appcompat.widget.Toolbar: androidx.appcompat.widget.ActionMenuPresenter getOuterActionMenuPresenter() -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_summaryOff -com.amap.api.fence.GeoFenceManagerBase: java.util.List getAllGeoFence() -cyanogenmod.app.ProfileManager: java.lang.String PROFILES_STATE_CHANGED_ACTION -androidx.preference.R$styleable: int AppCompatTheme_colorControlHighlight -androidx.constraintlayout.widget.R$color: int abc_tint_edittext -androidx.appcompat.R$styleable: int FontFamilyFont_fontStyle -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginRight -cyanogenmod.externalviews.KeyguardExternalView: java.lang.String access$400() -android.didikee.donate.R$styleable: int ColorStateListItem_alpha -cyanogenmod.hardware.ICMHardwareService: boolean set(int,boolean) -androidx.hilt.lifecycle.R$id: int right_side -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_labelVisibilityMode -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_inset_material -okhttp3.internal.connection.RealConnection$1: okhttp3.internal.connection.RealConnection this$0 -androidx.preference.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$layout: int container_main_details -okhttp3.CacheControl: java.lang.String headerValue() -com.google.android.material.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -cyanogenmod.app.CMContextConstants: java.lang.String CM_LIVE_LOCK_SCREEN_SERVICE -androidx.appcompat.R$id: int accessibility_custom_action_22 -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ButtonBar -okhttp3.internal.http2.Http2Stream: Http2Stream(int,okhttp3.internal.http2.Http2Connection,boolean,boolean,okhttp3.Headers) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: double Value -wangdaye.com.geometricweather.R$layout: int activity_search -com.google.android.material.R$layout: int design_bottom_sheet_dialog -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_HelperText -com.google.android.material.timepicker.TimePickerView: void setOnPeriodChangeListener(com.google.android.material.timepicker.TimePickerView$OnPeriodChangeListener) -wangdaye.com.geometricweather.R$string: int path_password_eye_mask_visible -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig locationEntityDaoConfig -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_enabled -androidx.preference.R$style: int PreferenceCategoryTitleTextStyle -com.google.android.material.timepicker.ChipTextInputComboView -james.adaptiveicon.R$styleable: int ActionMode_backgroundSplit -com.google.android.gms.common.images.ImageManager$ImageReceiver -cyanogenmod.weather.CMWeatherManager$RequestStatus: int SUBMITTED_TOO_SOON -com.google.android.material.R$attr: int indicatorColors -androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$dimen: int hint_pressed_alpha_material_light -androidx.constraintlayout.widget.R$id: int middle -androidx.preference.R$style: int Base_DialogWindowTitleBackground_AppCompat -androidx.transition.R$styleable: int GradientColorItem_android_offset -androidx.viewpager2.R$styleable: int[] ViewPager2 -com.turingtechnologies.materialscrollbar.R$attr: int textColorSearchUrl -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceUrl() -io.reactivex.internal.schedulers.ScheduledRunnable: int THREAD_INDEX -com.google.android.material.R$color: int secondary_text_default_material_light -retrofit2.Retrofit: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[]) -wangdaye.com.geometricweather.R$styleable: int RecyclerView_reverseLayout -androidx.appcompat.R$style: int Widget_AppCompat_AutoCompleteTextView -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -com.turingtechnologies.materialscrollbar.R$id: int search_close_btn -androidx.constraintlayout.widget.R$styleable: int Constraint_transitionPathRotate -okhttp3.RealCall: okhttp3.Request request() -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_dd -com.turingtechnologies.materialscrollbar.R$attr: int tabRippleColor -wangdaye.com.geometricweather.R$attr: int behavior_overlapTop -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabView -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Menu -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setLogo(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_fontFamily -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: java.lang.String unitAbbreviation -com.google.gson.stream.JsonReader: char readEscapeCharacter() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_73 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: WeatherEntityDao$Properties() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierDirection -okio.ForwardingTimeout: long deadlineNanoTime() -com.github.rahatarmanahmed.cpv.R$attr: int cpv_color -com.turingtechnologies.materialscrollbar.R$styleable: int[] FlowLayout -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isDataConnectionSelectedOnSub(int) -androidx.appcompat.R$styleable: int AppCompatTheme_colorAccent -android.didikee.donate.R$styleable: int AppCompatTheme_checkboxStyle -android.support.v4.os.IResultReceiver$Stub: IResultReceiver$Stub() -wangdaye.com.geometricweather.R$string: int character_counter_overflowed_content_description -android.didikee.donate.R$id: int notification_main_column -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_showDividers -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void next(java.lang.Object) -android.didikee.donate.R$attr: int searchViewStyle -okio.Okio: okio.Source source(java.nio.file.Path,java.nio.file.OpenOption[]) -wangdaye.com.geometricweather.R$string: int feedback_resident_location_description -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isFlowable -wangdaye.com.geometricweather.R$drawable: int ic_filter -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getEndIconContentDescription() -cyanogenmod.weather.WeatherInfo: int getWindSpeedUnit() -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_share_mtrl_alpha -android.support.v4.graphics.drawable.IconCompatParcelizer: androidx.core.graphics.drawable.IconCompat read(androidx.versionedparcelable.VersionedParcel) -androidx.constraintlayout.widget.R$integer: int abc_config_activityShortDur -wangdaye.com.geometricweather.R$attr: int maxLines -okhttp3.OkHttpClient$1: java.net.Socket deduplicate(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation) -okhttp3.logging.HttpLoggingInterceptor$Logger$1 -com.google.android.material.R$attr: int layout_constraintEnd_toStartOf -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: android.os.IBinder asBinder() -androidx.lifecycle.ServiceLifecycleDispatcher: ServiceLifecycleDispatcher(androidx.lifecycle.LifecycleOwner) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: double Value -wangdaye.com.geometricweather.R$attr: int thumbStrokeWidth -wangdaye.com.geometricweather.R$string: int phase_waning_gibbous -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_LOCKSCREEN -wangdaye.com.geometricweather.R$styleable: int Constraint_android_orientation -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_positiveButtonText -com.turingtechnologies.materialscrollbar.R$string: int path_password_eye_mask_visible -androidx.lifecycle.extensions.R$id: R$id() -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_behavior -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableItem_android_drawable -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_font -okhttp3.internal.cache.DiskLruCache: int appVersion -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog_Alert -androidx.swiperefreshlayout.R$attr: int fontStyle -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean setDisposable(io.reactivex.disposables.Disposable,int) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindSpeedEnd(java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitationProbability(java.lang.Float) -androidx.hilt.work.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_enabled -com.turingtechnologies.materialscrollbar.TouchScrollBar: int getMode() -james.adaptiveicon.R$attr: int contentInsetEnd -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getChipDrawable() -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,int) -androidx.preference.R$id: int action_mode_bar_stub -com.google.gson.stream.JsonReader: int stackSize -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_tooltipText -cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit -androidx.lifecycle.ReportFragment: void dispatchStart(androidx.lifecycle.ReportFragment$ActivityInitializationListener) -com.jaredrummler.android.colorpicker.R$attr: int cpv_showAlphaSlider -androidx.viewpager2.R$attr: int reverseLayout -okhttp3.internal.cache.DiskLruCache: void readJournal() -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_android_textAppearance -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWeatherStart(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction Direction -com.bumptech.glide.R$attr: R$attr() -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_4 -okhttp3.internal.http2.Http2Connection$4: java.util.List val$requestHeaders -io.reactivex.internal.observers.DeferredScalarObserver: void dispose() -androidx.constraintlayout.widget.R$attr: int textAppearancePopupMenuHeader -com.turingtechnologies.materialscrollbar.CustomIndicator: int getTextSize() -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low_pressed -com.xw.repo.bubbleseekbar.R$attr: int autoCompleteTextViewStyle -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property So2 -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_12 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric Metric -okhttp3.internal.ws.RealWebSocket: void writePingFrame() -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: ObservableWindowBoundary$WindowBoundaryMainObserver(io.reactivex.Observer,int) -io.reactivex.exceptions.ProtocolViolationException: ProtocolViolationException(java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: MfForecastResult$ProbabilityForecast() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfSnow -com.google.android.material.bottomsheet.BottomSheetBehavior$SavedState: android.os.Parcelable$Creator CREATOR -com.amap.api.fence.DistrictItem: java.lang.String a -wangdaye.com.geometricweather.R$styleable: int[] SwitchMaterial -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1 -okhttp3.internal.http2.Hpack$Writer: void setHeaderTableSizeSetting(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void request(long) -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Flush -org.greenrobot.greendao.AbstractDao: void assertSinglePk() -com.turingtechnologies.materialscrollbar.R$integer: R$integer() -wangdaye.com.geometricweather.R$color: int colorAccent_dark -com.google.android.material.R$styleable: int Spinner_android_dropDownWidth -okhttp3.OkHttpClient -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Title -com.jaredrummler.android.colorpicker.R$string: int abc_action_bar_home_description -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String EnglishName -wangdaye.com.geometricweather.R$string: int about_app -com.turingtechnologies.materialscrollbar.R$attr: int searchViewStyle -androidx.constraintlayout.widget.R$styleable: int[] OnClick -androidx.appcompat.R$attr: int ratingBarStyle -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy[] values() -org.greenrobot.greendao.AbstractDao: java.lang.String[] getAllColumns() -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_phaseView -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver otherObserver -android.didikee.donate.R$layout: int abc_screen_content_include -wangdaye.com.geometricweather.R$styleable: int[] ColorPreference -androidx.constraintlayout.motion.widget.MotionLayout: float getTargetPosition() -com.bumptech.glide.Registry$NoSourceEncoderAvailableException: Registry$NoSourceEncoderAvailableException(java.lang.Class) -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_day -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: CaiYunMainlyResult$YesterdayBean() -wangdaye.com.geometricweather.search.Hilt_SearchActivity -wangdaye.com.geometricweather.R$id: int widget_text_temperature -com.jaredrummler.android.colorpicker.R$attr: int hideOnContentScroll -io.reactivex.Observable: io.reactivex.Observable concatArrayEagerDelayError(int,int,io.reactivex.ObservableSource[]) -wangdaye.com.geometricweather.R$string: int settings_title_unit -wangdaye.com.geometricweather.R$string: int tag_aqi -androidx.vectordrawable.animated.R$dimen: int notification_media_narrow_margin -okio.Buffer: okio.BufferedSink write(byte[]) -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getCityId() -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light -androidx.appcompat.R$styleable: int AppCompatTheme_colorError -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_gradientRadius -cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemBitmap(android.graphics.Bitmap) -com.amap.api.location.AMapLocation: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.ChineseCityEntity,long) -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_listItemLayout -com.jaredrummler.android.colorpicker.R$dimen: int abc_button_padding_horizontal_material -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.R$attr: int layout_constraintCircle -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date sunsetTime -com.bumptech.glide.integration.okhttp.R$id: int time -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Update -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedPath(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int actionMenuTextAppearance -wangdaye.com.geometricweather.R$attr: int textInputLayoutFocusedRectEnabled -androidx.appcompat.R$styleable: int StateListDrawableItem_android_drawable -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed -androidx.loader.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeWindSpeed() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf -androidx.vectordrawable.R$dimen: int compat_button_padding_horizontal_material -androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String country -androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$anim: int abc_slide_in_bottom -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_searchIcon -wangdaye.com.geometricweather.R$attr: int colorPrimarySurface -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_UK -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onSucceed(java.lang.Object) -james.adaptiveicon.R$styleable: int SearchView_commitIcon -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSmallPopupMenu -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onError(java.lang.Throwable) -androidx.work.R$styleable: int GradientColor_android_centerX -androidx.preference.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle -com.google.android.material.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -retrofit2.OkHttpCall$1: OkHttpCall$1(retrofit2.OkHttpCall,retrofit2.Callback) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getSupportImageTintList() -android.didikee.donate.R$style: int Base_V21_Theme_AppCompat -androidx.preference.R$styleable: int StateListDrawableItem_android_drawable -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -com.google.android.material.R$style: int Widget_AppCompat_ProgressBar -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Spinner -wangdaye.com.geometricweather.db.entities.HourlyEntity: boolean daylight -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_UNDERSCORES -cyanogenmod.providers.CMSettings$3 -androidx.hilt.lifecycle.R$drawable: int notification_bg -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_negativeButtonText -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearStyle -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_contentScrim -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getDegreeDayTemperature() -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_OVERLAYS -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -okhttp3.Cache$1: okhttp3.Response get(okhttp3.Request) -cyanogenmod.app.CustomTile: cyanogenmod.app.CustomTile$ExpandedStyle expandedStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String brandId -androidx.preference.R$drawable: int abc_seekbar_thumb_material -okhttp3.internal.cache.DiskLruCache: void initialize() -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_title -james.adaptiveicon.R$style: int Widget_AppCompat_SearchView_ActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_inputType -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupMenu_Overflow -androidx.core.R$id: int accessibility_custom_action_31 -cyanogenmod.os.Concierge$ParcelInfo -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: int status -com.turingtechnologies.materialscrollbar.R$id: int icon -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_lineHeight -wangdaye.com.geometricweather.R$integer: int mtrl_btn_anim_delay_ms -androidx.customview.R$id: int tag_unhandled_key_listeners -james.adaptiveicon.R$styleable: int AppCompatTheme_colorError -wangdaye.com.geometricweather.common.ui.activities.AllergenActivity: AllergenActivity() -androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -okhttp3.internal.http2.Http2Stream$FramingSource: boolean finished -james.adaptiveicon.R$style: int Platform_V25_AppCompat_Light -androidx.preference.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -androidx.activity.R$id: int async -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_collapseIcon -androidx.appcompat.R$id: int action_bar_root -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.background.polling.work.worker.TodayForecastUpdateWorker: TodayForecastUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moldIndex -com.turingtechnologies.materialscrollbar.R$animator: int design_fab_show_motion_spec -androidx.work.R$id: int normal -androidx.loader.R$id: int tag_unhandled_key_event_manager -retrofit2.Utils: Utils() -wangdaye.com.geometricweather.common.ui.activities.AlertActivity -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCollapsedPaddingTop -android.didikee.donate.R$styleable: int ViewStubCompat_android_layout -okhttp3.Request: boolean isHttps() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RealFeelTemperature -androidx.appcompat.resources.R$id: int action_text -wangdaye.com.geometricweather.R$string: int chip_text -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_padding_start_material -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed Speed -android.didikee.donate.R$id: int src_atop -androidx.activity.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.preference.R$styleable: int DialogPreference_android_dialogTitle -com.xw.repo.bubbleseekbar.R$attr: int thumbTint -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -androidx.hilt.R$styleable: int FontFamilyFont_android_ttcIndex -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -androidx.lifecycle.Transformations: androidx.lifecycle.LiveData distinctUntilChanged(androidx.lifecycle.LiveData) -okhttp3.internal.cache.CacheInterceptor: boolean isEndToEnd(java.lang.String) -cyanogenmod.power.PerformanceManager: int PROFILE_BIAS_POWER_SAVE -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.String dailyWeatherIcon -android.didikee.donate.R$attr: int buttonGravity -okio.Util: java.nio.charset.Charset UTF_8 -james.adaptiveicon.R$styleable: int[] ActionMode -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_20 -android.didikee.donate.R$drawable -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_headerBackground -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks access$100(cyanogenmod.externalviews.KeyguardExternalView) -androidx.preference.R$styleable: int[] PreferenceTheme -james.adaptiveicon.R$attr: int showDividers -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonPhaseAngle(java.lang.Integer) -android.didikee.donate.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -androidx.lifecycle.extensions.R$id: int text2 -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterOverflowTextColor -com.turingtechnologies.materialscrollbar.R$dimen: int abc_config_prefDialogWidth -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Menu -com.google.android.material.R$string: int mtrl_picker_save -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerCloseError(java.lang.Throwable) -james.adaptiveicon.R$attr: int showTitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean -com.google.android.material.R$dimen: int abc_action_bar_icon_vertical_padding_material -okhttp3.internal.cache.DiskLruCache: void rebuildJournal() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String direct -androidx.appcompat.R$attr: int alertDialogTheme -androidx.constraintlayout.widget.R$color: R$color() -okhttp3.internal.http2.Http2Connection: void writeSynReply(int,boolean,java.util.List) -okhttp3.internal.http1.Http1Codec: void writeRequestHeaders(okhttp3.Request) -okhttp3.internal.ws.RealWebSocket$Close: RealWebSocket$Close(int,okio.ByteString,long) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -androidx.preference.R$dimen: int abc_alert_dialog_button_bar_height -com.google.android.material.R$styleable: int[] ChipGroup -android.didikee.donate.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -wangdaye.com.geometricweather.R$attr: int drawable_res_off -cyanogenmod.content.Intent: java.lang.String EXTRA_PROTECTED_STATE -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY_NIGHT -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -cyanogenmod.app.ICustomTileListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.preference.R$style: int TextAppearance_AppCompat_SearchResult_Title -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.R$string: int aqi_2 -androidx.viewpager2.R$id: int async -wangdaye.com.geometricweather.R$attr: int round -androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_weight -androidx.customview.R$style -com.google.android.material.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ -com.github.rahatarmanahmed.cpv.CircularProgressView$2: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -cyanogenmod.themes.ThemeChangeRequest$Builder: long mWallpaperId -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView -com.turingtechnologies.materialscrollbar.R$attr: int counterOverflowTextAppearance -james.adaptiveicon.R$attr: int actionModeCopyDrawable -com.google.android.material.R$attr: int helperTextTextColor -wangdaye.com.geometricweather.R$string: int wind_6 -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius -com.google.gson.stream.JsonReader: void beginArray() -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemTextColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: CaiYunForecastResult$PrecipitationBean() -androidx.preference.R$color: int accent_material_light -androidx.preference.R$styleable: int AppCompatTheme_windowFixedHeightMinor -com.google.android.material.R$styleable: int MenuGroup_android_visible -androidx.appcompat.widget.ActionMenuView: void setPopupTheme(int) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.disposables.Disposable upstream -io.reactivex.internal.disposables.SequentialDisposable -wangdaye.com.geometricweather.R$color: int material_timepicker_button_stroke -androidx.dynamicanimation.R$dimen: int notification_top_pad -androidx.preference.R$attr: int dialogLayout -android.didikee.donate.R$dimen: int abc_button_inset_vertical_material -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_thickness -com.baidu.location.e.h$b: com.baidu.location.e.h$b a -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: java.lang.String Unit -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_2 -okhttp3.Response: okhttp3.Request request() -okio.Util: boolean arrayRangeEquals(byte[],int,byte[],int,int) -com.amap.api.location.AMapLocationClientOption$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.R$string: int feedback_get_weather_failed -androidx.appcompat.R$dimen: int abc_search_view_preferred_height -okhttp3.Cache$CacheResponseBody -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_width_overflow_material -androidx.viewpager.R$drawable: int notification_bg_low -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_prompt -com.bumptech.glide.load.HttpException: HttpException(int) -okhttp3.OkHttpClient$Builder: okhttp3.Authenticator authenticator -com.turingtechnologies.materialscrollbar.R$color: int abc_secondary_text_material_dark -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onComplete() -org.greenrobot.greendao.DaoException -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_bg_color_selector -androidx.vectordrawable.R$id: int action_divider -androidx.constraintlayout.widget.R$dimen: int notification_action_text_size -androidx.hilt.R$id: int actions -retrofit2.adapter.rxjava2.Result -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1 -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay -okhttp3.Cache$CacheResponseBody: long contentLength() -cyanogenmod.profiles.ConnectionSettings: int mValue -wangdaye.com.geometricweather.R$styleable: int ActionBar_navigationMode -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_15 -james.adaptiveicon.R$attr: int fontProviderAuthority -androidx.appcompat.R$attr: int listPreferredItemPaddingRight -james.adaptiveicon.R$style: int Platform_AppCompat_Light -okhttp3.internal.http2.Hpack: int PREFIX_5_BITS -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed Speed -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onComplete() -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_borderWidth -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -androidx.constraintlayout.widget.R$color: int abc_search_url_text_pressed -com.google.android.gms.base.R$drawable: int googleg_disabled_color_18 -androidx.constraintlayout.widget.R$color: int highlighted_text_material_dark -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: MfForecastResult$Forecast() -androidx.activity.R$dimen: int notification_content_margin_start -okhttp3.internal.NamedRunnable: void execute() -retrofit2.Retrofit$Builder: retrofit2.Platform platform -androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -wangdaye.com.geometricweather.R$string: int action_about -android.didikee.donate.R$attr -wangdaye.com.geometricweather.R$string: int abc_capital_off -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitationProbability(java.lang.Float) -okhttp3.internal.http2.Hpack$Reader: void adjustDynamicTableByteCount() -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -cyanogenmod.themes.ThemeManager$2: ThemeManager$2(cyanogenmod.themes.ThemeManager) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial -com.google.android.material.R$styleable: int[] MotionHelper -com.google.android.material.R$attr: int bottomNavigationStyle -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPaused(android.app.Activity) -okio.Buffer$2: int read(byte[],int,int) -com.google.android.material.chip.Chip: void setCloseIconStartPadding(float) -com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Determinate -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogTitle -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String toValue(java.util.List) -androidx.constraintlayout.widget.R$attr: int buttonBarNegativeButtonStyle -com.google.android.material.R$styleable: int ActionMode_backgroundSplit -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleDrawable -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeStyle -okio.BufferedSource: okio.Buffer buffer() -com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text -retrofit2.http.Query -com.google.android.material.R$dimen: int mtrl_high_ripple_pressed_alpha -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Medium -com.xw.repo.bubbleseekbar.R$attr: int contentInsetEnd -com.xw.repo.bubbleseekbar.R$attr: int layout_insetEdge -androidx.recyclerview.R$styleable: int[] RecyclerView -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showAlphaSlider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: void setUnit(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int arrowShaftLength -android.didikee.donate.R$dimen: int abc_config_prefDialogWidth -androidx.appcompat.R$styleable: int ActionBar_hideOnContentScroll -com.xw.repo.bubbleseekbar.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed Speed -wangdaye.com.geometricweather.R$string: int briefings -com.jaredrummler.android.colorpicker.R$integer -wangdaye.com.geometricweather.R$color: int mtrl_btn_bg_color_selector -androidx.appcompat.R$dimen: int notification_right_icon_size -android.didikee.donate.R$color: int primary_material_dark -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Medium -okhttp3.logging.LoggingEventListener$Factory -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: FitSystemBarViewPager(android.content.Context,android.util.AttributeSet) -okhttp3.RequestBody$2: int val$offset -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type valueOf(java.lang.String) -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_29 -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_variablePadding -wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line2_tail_interpolator -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginLeft -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_elevation -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService get() -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -androidx.constraintlayout.widget.R$id: int italic -com.xw.repo.bubbleseekbar.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_android_entryValues -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentListStyle -retrofit2.ParameterHandler$Path: boolean encoded -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2$1: ThemeVersion$ThemeVersionImpl2$1() -androidx.work.R$id: int accessibility_custom_action_6 -wangdaye.com.geometricweather.db.entities.MinutelyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -okio.Buffer: okio.BufferedSink emit() -android.support.v4.os.ResultReceiver: void writeToParcel(android.os.Parcel,int) -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startColor -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getActiveProfile -okio.AsyncTimeout$1 -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter -com.jaredrummler.android.colorpicker.R$drawable: int cpv_btn_background_pressed -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: void close() -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_pageIndicatorColor -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_106 -okio.Okio: okio.Source source(java.net.Socket) -androidx.appcompat.widget.AppCompatButton -androidx.customview.R$attr: int fontStyle -wangdaye.com.geometricweather.R$font: int product_sans_italic -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog -cyanogenmod.externalviews.KeyguardExternalView: void onKeyguardShowing(boolean) -android.didikee.donate.R$color: int dim_foreground_material_dark -wangdaye.com.geometricweather.R$layout: int fragment_management -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setDaytimeTemperature(int) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_month_horizontal_padding -okio.package-info -james.adaptiveicon.R$color: int accent_material_light -androidx.preference.R$id: int action_divider -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status valueOf(java.lang.String) -com.google.android.material.R$color: int design_fab_shadow_mid_color -androidx.preference.R$styleable: int RecycleListView_paddingTopNoTitle -cyanogenmod.externalviews.KeyguardExternalView: void executeQueue() -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform get() -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitationProbability -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -com.amap.api.fence.GeoFence: void setFenceId(java.lang.String) -androidx.appcompat.R$styleable: int AppCompatTheme_radioButtonStyle -com.jaredrummler.android.colorpicker.R$layout: int preference -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconEnabled -wangdaye.com.geometricweather.common.ui.widgets.TagView -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_VALIDATOR -okhttp3.internal.http1.Http1Codec$UnknownLengthSource -okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_REENCODE_SET -androidx.viewpager2.R$layout -androidx.preference.R$dimen: int compat_notification_large_icon_max_width -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabView -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Borderless -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_Solid -com.bumptech.glide.integration.okhttp.R$attr: int alpha -com.jaredrummler.android.colorpicker.R$styleable: int View_theme -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: void setHistogramAlpha(float) -james.adaptiveicon.R$id: int split_action_bar -android.didikee.donate.R$styleable: int TextAppearance_android_shadowColor -james.adaptiveicon.R$dimen: int notification_large_icon_height -cyanogenmod.externalviews.KeyguardExternalView$9: cyanogenmod.externalviews.KeyguardExternalView this$0 -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_btn_checkable -com.turingtechnologies.materialscrollbar.R$id: int textSpacerNoButtons -androidx.lifecycle.LiveData: void observeForever(androidx.lifecycle.Observer) -okhttp3.internal.platform.Platform: boolean isAndroid() -io.reactivex.internal.operators.observable.ObservableReplay$Node: java.lang.Object value -android.didikee.donate.R$styleable: int View_paddingEnd -com.google.android.material.R$styleable: int MaterialCalendar_dayInvalidStyle -wangdaye.com.geometricweather.R$styleable: int[] AppCompatImageView -com.bumptech.glide.integration.okhttp.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$string: int get_more_github -cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem() -com.bumptech.glide.integration.okhttp.R$drawable: R$drawable() -cyanogenmod.weather.WeatherLocation$Builder: WeatherLocation$Builder(java.lang.String) -wangdaye.com.geometricweather.R$string: int exposed_dropdown_menu_content_description -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: double Value -cyanogenmod.app.ProfileManager: void updateNotificationGroup(android.app.NotificationGroup) -androidx.appcompat.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: java.lang.String icon -com.google.android.material.R$styleable: int Layout_layout_constraintRight_toRightOf -cyanogenmod.weather.RequestInfo$Builder: int mRequestType -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: void setTextColors(int) -wangdaye.com.geometricweather.R$attr: int fastScrollVerticalTrackDrawable -wangdaye.com.geometricweather.R$attr: int recyclerViewStyle -android.didikee.donate.R$dimen: int abc_dialog_padding_top_material -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_3 -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_default -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider AMAP -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties properties -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: int UnitType -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionDropDownStyle -wangdaye.com.geometricweather.common.basic.models.weather.UV: boolean isValidIndex() -androidx.preference.R$attr: int preferenceFragmentListStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean -androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -okio.ByteString: boolean rangeEquals(int,okio.ByteString,int,int) -com.google.gson.stream.JsonScope -wangdaye.com.geometricweather.R$id: int top -wangdaye.com.geometricweather.R$drawable: int ic_pm -cyanogenmod.providers.CMSettings$3: boolean validate(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarWidgetTheme -okhttp3.WebSocketListener: void onMessage(okhttp3.WebSocket,java.lang.String) -com.google.android.material.R$styleable: int MaterialButton_shapeAppearanceOverlay -android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SeekBar_Discrete -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: MfLocationResult() -androidx.constraintlayout.widget.R$color: int tooltip_background_light -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setVisibility(java.lang.Float) -retrofit2.KotlinExtensions: java.lang.Object awaitNullable(retrofit2.Call,kotlin.coroutines.Continuation) -wangdaye.com.geometricweather.R$id: int item_details_icon -wangdaye.com.geometricweather.R$string: int feedback_search_nothing -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent ICON -wangdaye.com.geometricweather.R$color: int androidx_core_ripple_material_light -okhttp3.internal.platform.AndroidPlatform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) -androidx.constraintlayout.widget.R$id: int submit_area -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter -com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) -com.google.android.material.R$styleable: int Constraint_layout_constraintStart_toStartOf -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: java.util.concurrent.CompletableFuture future -androidx.preference.R$styleable: int GradientColor_android_startColor -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerNext() -com.google.android.material.R$styleable: int TabLayout_tabGravity -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_ctrl_shortcut_label -com.xw.repo.bubbleseekbar.R$styleable: int[] GradientColorItem -com.google.android.material.R$styleable: int GradientColor_android_startX -cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weather.RequestInfo getRequestInfo() -androidx.constraintlayout.widget.R$attr: int flow_horizontalBias -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.Scheduler$Worker worker -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TabLayout_Colored -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.R$attr: int singleLineTitle -com.google.android.material.slider.RangeSlider: void setEnabled(boolean) -wangdaye.com.geometricweather.R$dimen: int design_navigation_elevation -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getCO() -io.reactivex.internal.observers.BlockingObserver: void onError(java.lang.Throwable) -com.google.android.material.textfield.TextInputLayout: void setStartIconContentDescription(int) -wangdaye.com.geometricweather.R$attr: int layout_constraintBaseline_toBaselineOf -wangdaye.com.geometricweather.R$styleable: int[] MotionHelper -com.jaredrummler.android.colorpicker.R$bool: int config_materialPreferenceIconSpaceReserved -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: AlertEntityDao$Properties() -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayTodayStyle -androidx.appcompat.R$string: int abc_searchview_description_search -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onNext(java.lang.Object) -androidx.fragment.R$drawable: int notification_tile_bg -retrofit2.Platform: retrofit2.Platform get() -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PRIMARY_COLOR -android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.support.v4.app.INotificationSideChannel sDefaultImpl -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode RAIN -com.google.android.material.R$styleable: int MenuItem_android_enabled -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Selected -androidx.lifecycle.SavedStateHandleController$OnRecreation: SavedStateHandleController$OnRecreation() -com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar -james.adaptiveicon.R$styleable: int AppCompatTheme_colorPrimary -androidx.appcompat.resources.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_inflatedId -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBaseline_creator -retrofit2.RequestFactory$Builder: void validateResolvableType(int,java.lang.reflect.Type) -com.google.android.material.R$layout: int abc_action_mode_close_item_material -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onError(java.lang.Throwable) -android.didikee.donate.R$layout: int abc_screen_toolbar -okhttp3.internal.http2.Http2Connection: long degradedPongDeadlineNs -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getMilliMetersTextWithoutUnit(float) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_textAppearance -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_divider_mtrl_alpha -okhttp3.internal.platform.AndroidPlatform: AndroidPlatform(java.lang.Class,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod) -androidx.lifecycle.ProcessLifecycleOwner: void activityPaused() -com.google.android.material.appbar.AppBarLayout: android.graphics.drawable.Drawable getStatusBarForeground() -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_width -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode LIGHT -cyanogenmod.weather.IRequestInfoListener$Stub: android.os.IBinder asBinder() -android.didikee.donate.R$styleable: int ActionBar_homeAsUpIndicator -com.jaredrummler.android.colorpicker.R$id: int transparency_seekbar -androidx.appcompat.widget.AppCompatSpinner: void setDropDownVerticalOffset(int) -com.jaredrummler.android.colorpicker.R$attr: int dropdownListPreferredItemHeight -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode PROTOCOL_ERROR -com.google.android.material.R$attr: int buttonGravity -com.turingtechnologies.materialscrollbar.R$id: int alertTitle -com.google.android.gms.auth.api.signin.internal.GoogleSignInOptionsExtensionParcelable: android.os.Parcelable$Creator CREATOR -okhttp3.WebSocket -androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context,android.util.AttributeSet,int) -com.google.android.gms.location.GeofencingRequest -androidx.appcompat.R$string -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low_normal -com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusTopStart -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getIcePrecipitation() -com.bumptech.glide.R$integer: R$integer() -androidx.appcompat.R$drawable: int abc_list_selector_disabled_holo_dark -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: java.util.ArrayDeque buffers -androidx.constraintlayout.widget.R$dimen: int notification_large_icon_width -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_2_material -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: long produced -com.xw.repo.bubbleseekbar.R$styleable: int[] ColorStateListItem -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionMode -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status COMPLETED -com.google.android.material.circularreveal.CircularRevealFrameLayout: CircularRevealFrameLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$layout: int widget_remote -com.turingtechnologies.materialscrollbar.R$drawable: int avd_show_password -cyanogenmod.app.Profile$ProfileTrigger: cyanogenmod.app.Profile$ProfileTrigger fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconMargin -com.google.android.material.R$styleable: int Transition_android_id -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedDescription -androidx.work.R$id: int dialog_button -wangdaye.com.geometricweather.R$string: int action_alert -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dividerHorizontal -io.reactivex.internal.disposables.ArrayCompositeDisposable: boolean setResource(int,io.reactivex.disposables.Disposable) -androidx.appcompat.R$color: int primary_text_disabled_material_light -com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrimColor(int) -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_orientation -androidx.vectordrawable.animated.R$id: int time -com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchPreference -okhttp3.EventListener: void requestHeadersStart(okhttp3.Call) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String getValue() -androidx.preference.R$attr: int trackTintMode -android.didikee.donate.R$styleable: int ActionMenuItemView_android_minWidth -androidx.preference.R$styleable: int ActionBar_backgroundSplit -com.google.android.material.R$attr: int switchTextAppearance -wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView -android.didikee.donate.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_stacked_max_height -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void dispose() -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_seekBarPreferenceStyle -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_2_material -androidx.preference.R$dimen: int abc_text_size_large_material -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton -com.google.android.material.R$attr: int counterEnabled -wangdaye.com.geometricweather.R$id: int widget_day_week_time -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource RESOURCE_DISK_CACHE -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Alert -wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog_title -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_padding -com.google.android.material.R$styleable: int CustomAttribute_customStringValue -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar -cyanogenmod.app.ProfileManager: boolean profileExists(java.util.UUID) -wangdaye.com.geometricweather.R$attr: int colorSecondary -okhttp3.internal.http2.Http2Stream$StreamTimeout: okhttp3.internal.http2.Http2Stream this$0 -androidx.core.R$dimen: int notification_top_pad -androidx.appcompat.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.R$layout: int abc_expanded_menu_layout -androidx.preference.R$attr: int seekBarIncrement -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_backgroundTint -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String mixNMatchKeyToComponent(java.lang.String) -cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onListenerConnected() -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.Observer downstream -cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.os.Bundle getOptions() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_pathMotionArc -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) -okio.Buffer: okio.BufferedSink writeUtf8CodePoint(int) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup -com.google.android.material.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: java.lang.String Unit -wangdaye.com.geometricweather.R$attr: int divider -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String k -com.google.android.gms.common.SupportErrorDialogFragment: SupportErrorDialogFragment() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String coDesc -android.didikee.donate.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -com.google.android.material.R$attr: int layout_dodgeInsetEdges -wangdaye.com.geometricweather.R$layout: int notification_template_custom_big -com.google.android.material.R$color: int cardview_dark_background -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$id: int seekbar -androidx.preference.R$drawable: int abc_textfield_default_mtrl_alpha -okhttp3.FormBody: java.lang.String name(int) -cyanogenmod.app.Profile$ProfileTrigger: int getType() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginTop -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel -android.didikee.donate.R$attr: int alertDialogButtonGroupStyle -wangdaye.com.geometricweather.R$id: int widget_trend_hourly -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder fragment(java.lang.String) -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: boolean cancelled -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_bottomRecyclerView -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_card -cyanogenmod.weather.WeatherInfo: java.util.List getForecasts() -wangdaye.com.geometricweather.R$dimen: int hourly_trend_item_height -cyanogenmod.weatherservice.ServiceRequestResult$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -com.google.android.material.R$attr: int materialCalendarHeaderConfirmButton -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_activityChooserViewStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_74 -android.didikee.donate.R$attr: int titleMarginBottom -com.google.android.material.tabs.TabLayout$TabView: void setSelected(boolean) -james.adaptiveicon.R$id: int expand_activities_button -wangdaye.com.geometricweather.R$color: int design_dark_default_color_surface -io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String,int,boolean) -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_MULTIPLE_LEDS_ENABLE -com.google.android.gms.location.zzay: android.os.Parcelable$Creator CREATOR -android.didikee.donate.R$dimen: int abc_text_size_display_2_material -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void drain() -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCityId() -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Medium -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: io.reactivex.functions.Consumer onDrop -com.xw.repo.bubbleseekbar.R$id: int activity_chooser_view_content -wangdaye.com.geometricweather.R$attr: int editTextBackground -com.google.android.material.bottomappbar.BottomAppBar$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int Preference_icon -com.google.android.gms.location.ActivityRecognitionResult: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_progressBarStyle -wangdaye.com.geometricweather.R$dimen: int share_view_height -okhttp3.EventListener -com.xw.repo.bubbleseekbar.R$layout: int abc_search_view -james.adaptiveicon.R$style: int Platform_V21_AppCompat_Light -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_TextView_SpinnerItem -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$drawable: int material_ic_keyboard_arrow_next_black_24dp -io.reactivex.internal.subscribers.StrictSubscriber: void request(long) -com.google.android.material.slider.RangeSlider: void setValues(java.util.List) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIcon -com.turingtechnologies.materialscrollbar.R$color: R$color() -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Time -james.adaptiveicon.R$attr: int trackTintMode -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginEnd -wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_text_color -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -com.google.android.material.R$id: int spline -okio.Buffer$UnsafeCursor: long offset -wangdaye.com.geometricweather.R$id: int bottom_sides -okio.Buffer: okio.Segment writableSegment(int) -com.turingtechnologies.materialscrollbar.R$color: int primary_text_default_material_light -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getDegreeDayTemperature() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_body_2_material -com.google.android.material.R$dimen: int mtrl_calendar_header_toggle_margin_bottom -com.google.android.material.R$attr: int floatingActionButtonStyle -wangdaye.com.geometricweather.R$id: int jumpToEnd -androidx.constraintlayout.widget.R$styleable: int Variant_region_heightLessThan -org.greenrobot.greendao.AbstractDao: android.database.CursorWindow moveToNextUnlocked(android.database.Cursor) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd -james.adaptiveicon.R$attr: int actionModeWebSearchDrawable -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Large -com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_focused -com.google.android.material.R$styleable: int KeyCycle_android_translationX -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm -okio.Okio: okio.Sink appendingSink(java.io.File) -androidx.preference.PreferenceCategory: PreferenceCategory(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int Transition_motionInterpolator -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog_Alert -cyanogenmod.weatherservice.ServiceRequestResult -androidx.constraintlayout.widget.R$color: int switch_thumb_material_light -androidx.cardview.R$styleable: int CardView_cardUseCompatPadding -androidx.preference.R$id: int accessibility_custom_action_29 -wangdaye.com.geometricweather.R$attr: int trackHeight -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_percent -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$attr: int defaultValue -androidx.dynamicanimation.R$id: int notification_background -cyanogenmod.themes.ThemeManager$ThemeProcessingListener -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function8) -com.google.android.material.R$id: int scrollIndicatorDown -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_subtitle_top_margin_material -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onNext(java.lang.Object) -androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache sInstance -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable -com.google.android.material.R$style: int TextAppearance_AppCompat_Headline -androidx.viewpager2.R$id: int accessibility_custom_action_7 -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_widgetLayout -com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy[] values() -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -cyanogenmod.platform.Manifest$permission -io.reactivex.Observable: io.reactivex.Observable timer(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$styleable: int ActionMode_background -okhttp3.internal.http2.Settings: int getInitialWindowSize() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_pressed_holo_light -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2 -androidx.preference.R$styleable: int MenuView_android_itemTextAppearance -wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_grey -com.google.android.material.datepicker.Month -wangdaye.com.geometricweather.R$styleable: int[] ShapeAppearance -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Tooltip -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_showMotionSpec -com.google.android.material.R$id: int jumpToStart -androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Dialog -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_SHOWERS -james.adaptiveicon.R$attr: int titleMarginEnd -wangdaye.com.geometricweather.R$style: int widget_background_card -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCountry -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_margin -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_DialogWhenLarge -androidx.drawerlayout.R$id: int notification_main_column -com.turingtechnologies.materialscrollbar.R$attr: int fabCradleMargin -android.didikee.donate.R$attr: int customNavigationLayout -com.google.android.gms.common.SignInButton: void setColorScheme(int) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA -android.didikee.donate.R$styleable: int View_android_focusable -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -androidx.vectordrawable.R$id: int accessibility_custom_action_23 -james.adaptiveicon.R$styleable: int AppCompatTheme_toolbarStyle -wangdaye.com.geometricweather.db.entities.DailyEntityDao: DailyEntityDao(org.greenrobot.greendao.internal.DaoConfig) -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) -james.adaptiveicon.R$styleable: int[] ButtonBarLayout -okhttp3.OkHttpClient: okhttp3.OkHttpClient$Builder newBuilder() -com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemRippleColor() -com.google.android.material.R$dimen: int design_tab_scrollable_min_width -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -com.google.android.material.textfield.MaterialAutoCompleteTextView: void setAdapter(android.widget.ListAdapter) -androidx.constraintlayout.widget.R$attr: int trackTintMode -wangdaye.com.geometricweather.R$id: int right -cyanogenmod.weather.WeatherLocation: java.lang.String mState -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: AccuMinuteResult() -androidx.constraintlayout.widget.R$id: int info -wangdaye.com.geometricweather.R$drawable: int ic_flower -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_CheckBox -androidx.viewpager2.R$drawable: int notification_bg_low_normal -com.jaredrummler.android.colorpicker.R$attr: int toolbarStyle -androidx.preference.R$attr: int collapseContentDescription -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotationX -wangdaye.com.geometricweather.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.R$string: int key_widget_day_week -wangdaye.com.geometricweather.common.basic.models.weather.Daily -com.turingtechnologies.materialscrollbar.R$attr: int msb_lightOnTouch -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedWritableDb(char[]) -androidx.preference.R$attr: int windowActionBar -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_collapseIcon -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String LAST_UPDATE_TIME -cyanogenmod.app.CustomTile: int describeContents() -com.jaredrummler.android.colorpicker.R$style: int PreferenceFragment -androidx.appcompat.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -cyanogenmod.providers.CMSettings$System: java.lang.String PEOPLE_LOOKUP_PROVIDER -cyanogenmod.app.BaseLiveLockManagerService$1: void cancelLiveLockScreen(java.lang.String,int,int) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_Underlined -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: long serialVersionUID -wangdaye.com.geometricweather.R$drawable: int btn_checkbox_unchecked_mtrl -okhttp3.internal.http1.Http1Codec$ChunkedSink: okio.Timeout timeout() -cyanogenmod.app.ILiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() -com.google.android.material.R$dimen: int mtrl_bottomappbar_height -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_CompactMenu -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TEMPERATURE_UNIT -androidx.lifecycle.Lifecycling$1 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierMargin -com.google.android.material.R$styleable: int ActionBar_hideOnContentScroll -com.google.android.material.R$attr: int contrast -androidx.constraintlayout.widget.R$attr: int colorBackgroundFloating -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_cursor_material -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_16 -com.google.android.material.R$styleable: int Transform_android_translationY -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.ObservableSource fallback -com.google.android.material.slider.BaseSlider: void setThumbStrokeColorResource(int) -com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorCornerRadius() -okhttp3.internal.cache.CacheStrategy: boolean isCacheable(okhttp3.Response,okhttp3.Request) -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setGpsFirstTimeout(long) -okhttp3.HttpUrl: okhttp3.HttpUrl resolve(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int notification_small_icon_background_padding -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: boolean isDisposed() -androidx.constraintlayout.widget.R$attr: int listChoiceIndicatorSingleAnimated -androidx.appcompat.R$drawable: int abc_text_select_handle_right_mtrl_dark -androidx.preference.R$dimen: int compat_control_corner_material -com.google.android.material.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.textfield.TextInputLayout: void setHint(int) -io.reactivex.Observable: io.reactivex.Observable cast(java.lang.Class) -androidx.preference.R$styleable: int Fragment_android_name -wangdaye.com.geometricweather.R$attr: int behavior_autoHide -okhttp3.OkHttpClient: OkHttpClient(okhttp3.OkHttpClient$Builder) -androidx.preference.R$string: int abc_searchview_description_submit -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer rainProductAvailable -okhttp3.internal.cache.DiskLruCache: DiskLruCache(okhttp3.internal.io.FileSystem,java.io.File,int,int,long,java.util.concurrent.Executor) -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceId() -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.AbstractDaoSession getSession() -cyanogenmod.weatherservice.IWeatherProviderService$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List dailyForecast -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource DATA_DISK_CACHE -com.google.gson.stream.JsonReader: int PEEKED_SINGLE_QUOTED_NAME -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -wangdaye.com.geometricweather.R$styleable: int Preference_persistent -wangdaye.com.geometricweather.R$attr: int selectableItemBackground -com.google.android.material.R$id: int unchecked -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer moldIndex -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String WRITE_ALARMS_PERMISSION -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit M -okio.BufferedSource: java.lang.String readUtf8LineStrict(long) -wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendHourlyProvider -com.google.android.material.R$styleable: int TextInputLayout_hintAnimationEnabled -androidx.hilt.R$dimen: int compat_button_inset_horizontal_material -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMarkTintMode -androidx.constraintlayout.widget.R$attr: int drawableSize -com.turingtechnologies.materialscrollbar.R$dimen: int hint_pressed_alpha_material_dark -okhttp3.internal.http1.Http1Codec$ChunkedSink: okio.ForwardingTimeout timeout -okhttp3.internal.http2.Http2Connection$5: okhttp3.internal.http2.Http2Connection this$0 -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.DailyEntityDao getDailyEntityDao() -wangdaye.com.geometricweather.R$styleable: int[] ChipGroup -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.util.Date date -androidx.appcompat.R$style: int Theme_AppCompat_Dialog_Alert -cyanogenmod.app.CustomTile$1: cyanogenmod.app.CustomTile createFromParcel(android.os.Parcel) -androidx.constraintlayout.widget.ConstraintHelper: void setIds(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setAqi(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1 -androidx.lifecycle.ViewModelStore: void put(java.lang.String,androidx.lifecycle.ViewModel) -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme -androidx.customview.R$attr: int fontWeight -com.google.android.material.chip.Chip: void setCheckedIconEnabledResource(int) -okhttp3.internal.http.RetryAndFollowUpInterceptor: RetryAndFollowUpInterceptor(okhttp3.OkHttpClient,boolean) -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_1 -com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getTextSize() -androidx.preference.R$styleable: int SearchView_closeIcon -com.google.android.material.bottomnavigation.BottomNavigationView: int getSelectedItemId() -wangdaye.com.geometricweather.R$styleable: int SearchView_submitBackground -com.github.rahatarmanahmed.cpv.CircularProgressView$7 -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_logo -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String getWeatherPhase() -james.adaptiveicon.R$style: int Widget_AppCompat_PopupMenu -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void dispose() -cyanogenmod.profiles.LockSettings: LockSettings(int) -com.google.android.material.R$attr: int cornerSizeBottomLeft -okhttp3.Request$Builder: okhttp3.Request$Builder url(java.lang.String) -android.didikee.donate.R$drawable: int abc_btn_colored_material -cyanogenmod.weather.WeatherLocation: void writeToParcel(android.os.Parcel,int) -io.reactivex.internal.disposables.CancellableDisposable -androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setValue(java.util.List) -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_transitionEasing -androidx.preference.R$styleable: int ActionBar_progressBarStyle -com.google.android.material.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum -androidx.constraintlayout.widget.R$attr: int titleTextStyle -wangdaye.com.geometricweather.R$drawable: int abc_cab_background_internal_bg -cyanogenmod.providers.CMSettings$System: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) -james.adaptiveicon.R$styleable: int SearchView_closeIcon -wangdaye.com.geometricweather.R$string: int key_trend_horizontal_line_switch -com.jaredrummler.android.colorpicker.R$attr: int icon -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder socketFactory(javax.net.SocketFactory) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_121 -cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_VIBRATE -androidx.constraintlayout.widget.R$attr: int collapseContentDescription -cyanogenmod.app.CustomTileListenerService: void unregisterAsSystemService() -com.jaredrummler.android.colorpicker.R$style: int Preference -android.didikee.donate.R$styleable: int LinearLayoutCompat_measureWithLargestChild -com.google.android.material.R$style: int Base_Widget_AppCompat_ListMenuView -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Medium -com.google.android.material.R$styleable: int Constraint_android_layout_marginEnd -cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.CMTelephonyManager getInstance(android.content.Context) -androidx.constraintlayout.widget.R$style: R$style() -androidx.appcompat.R$id: int action_bar_container -okhttp3.Dns$1: java.util.List lookup(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int tabUnboundedRipple -wangdaye.com.geometricweather.R$color: int mtrl_btn_text_btn_bg_color_selector -androidx.viewpager2.R$layout: int notification_action_tombstone -io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable,int,int) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupMenu -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeBackground -com.google.android.material.R$attr: int tabTextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric Metric -cyanogenmod.themes.IThemeService$Stub -okhttp3.internal.http2.Http2Stream$FramingSource: boolean $assertionsDisabled -android.didikee.donate.R$attr: int dividerVertical -wangdaye.com.geometricweather.R$id: int item_weather_daily_uv_title -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_1 -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_gradientRadius -androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStoreOwner,androidx.lifecycle.ViewModelProvider$Factory) -james.adaptiveicon.R$dimen: int notification_media_narrow_margin -androidx.appcompat.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -androidx.drawerlayout.R$integer -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_night_foreground -james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogTheme -com.xw.repo.bubbleseekbar.R$string: int abc_search_hint -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -okio.Okio: okio.BufferedSource buffer(okio.Source) -androidx.appcompat.R$style: int Base_AlertDialog_AppCompat_Light -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_CBC_SHA -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_CBC_SHA -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarItemBackground -okhttp3.WebSocketListener: WebSocketListener() -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_orderInCategory -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_Test -com.google.android.gms.internal.common.zzq -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextBackground -androidx.lifecycle.ViewModelProvider$KeyedFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) -com.google.android.gms.common.data.DataHolder: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$drawable: int mtrl_ic_error -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.constraintlayout.widget.R$dimen: int abc_text_size_large_material -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.google.android.material.R$id: int accessibility_custom_action_0 -androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Light -com.google.android.material.R$styleable: int[] Chip -android.didikee.donate.R$id: int text2 -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: void run() -androidx.lifecycle.SavedStateHandleController: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customStringValue -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorContentDescription -androidx.fragment.R$id: int title -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeStepGranularity -com.google.android.material.R$id: int dragEnd -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setStatus(int) -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_clipToPadding -androidx.coordinatorlayout.widget.CoordinatorLayout -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.disposables.Disposable upstream -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.R$styleable: int ConstraintSet_chainUseRtl -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmPic1 -androidx.preference.internal.PreferenceImageView: void setMaxWidth(int) -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_CompactMenu -androidx.preference.R$styleable: int PopupWindowBackgroundState_state_above_anchor -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context) -androidx.lifecycle.extensions.R$dimen: int notification_top_pad_large_text -okhttp3.HttpUrl: void pathSegmentsToString(java.lang.StringBuilder,java.util.List) -androidx.appcompat.R$attr: int dividerVertical -cyanogenmod.app.suggest.ApplicationSuggestion: void writeToParcel(android.os.Parcel,int) -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(long) -cyanogenmod.app.CustomTile: android.graphics.Bitmap remoteIcon -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -wangdaye.com.geometricweather.R$drawable: int weather_hail_1 -androidx.appcompat.R$styleable: int MenuView_android_horizontalDivider -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_material -cyanogenmod.app.ProfileManager: void removeNotificationGroup(android.app.NotificationGroup) -okhttp3.internal.connection.RealConnection$1: okhttp3.internal.connection.StreamAllocation val$streamAllocation -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float totalPrecipitation24h -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixTextAppearance -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void run() -wangdaye.com.geometricweather.R$attr: int flow_firstVerticalBias -james.adaptiveicon.R$styleable: int[] LinearLayoutCompat_Layout -androidx.appcompat.R$attr: int drawableTintMode -wangdaye.com.geometricweather.R$id: int sin -com.turingtechnologies.materialscrollbar.R$attr: int showAsAction -com.google.android.material.R$styleable: int ActionBar_subtitle -com.turingtechnologies.materialscrollbar.R$id: int chronometer -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotationX -com.google.android.gms.common.data.BitmapTeleporter -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_72 -wangdaye.com.geometricweather.R$drawable: int shortcuts_thunderstorm -wangdaye.com.geometricweather.R$id: int source -com.jaredrummler.android.colorpicker.R$style: int Preference_CheckBoxPreference -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_right_mtrl_light -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: android.os.IBinder mRemote -james.adaptiveicon.R$string: int abc_shareactionprovider_share_with -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarWidgetTheme -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_rippleColor -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_NULL_SHA -androidx.legacy.coreutils.R$attr: int fontProviderAuthority -okhttp3.internal.ws.WebSocketProtocol: int B1_MASK_LENGTH -wangdaye.com.geometricweather.R$layout: int abc_dialog_title_material -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: MfEphemerisResult() -androidx.constraintlayout.widget.R$attr: int colorAccent -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: int getTemperature() -com.bumptech.glide.load.engine.GlideException: java.lang.Exception getOrigin() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_padding_start_material -cyanogenmod.themes.ThemeManager$2$1 -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Dialog -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: java.lang.String Unit -com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_normal -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int[] PropertySet -okhttp3.internal.http1.Http1Codec$ChunkedSink: okhttp3.internal.http1.Http1Codec this$0 -okio.Buffer$UnsafeCursor: int end -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetStart -com.google.android.material.R$color: int design_default_color_on_surface -android.didikee.donate.R$color: int material_grey_100 -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar -com.turingtechnologies.materialscrollbar.R$color: int button_material_dark -james.adaptiveicon.R$dimen: int abc_action_button_min_width_material -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_16dp -okio.ByteString: int size() -wangdaye.com.geometricweather.R$attr: int hintTextAppearance -com.google.android.material.R$attr: int startIconTint -james.adaptiveicon.R$styleable: int ColorStateListItem_android_color -androidx.lifecycle.ReportFragment: void dispatchResume(androidx.lifecycle.ReportFragment$ActivityInitializationListener) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry -androidx.viewpager2.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.R$string: int feedback_cannot_start_live_wallpaper_activity -android.didikee.donate.R$styleable: int Spinner_android_entries -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getDensityText(android.content.Context,float) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX getAqi() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float o3 -androidx.coordinatorlayout.R$id: int time -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_scaleY -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void cancelRequest(int) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_TextView_SpinnerItem -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabView -com.jaredrummler.android.colorpicker.R$id: int search_close_btn -androidx.preference.R$styleable: int MenuItem_android_numericShortcut -androidx.preference.R$styleable: int View_theme -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginLeft -androidx.appcompat.widget.ActionBarContainer: void setTabContainer(androidx.appcompat.widget.ScrollingTabContainerView) -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getGrassDescription() -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.hilt.work.R$id: int tag_accessibility_clickable_spans -com.bumptech.glide.R$styleable: int FontFamily_fontProviderPackage -androidx.constraintlayout.helper.widget.Flow: void setPaddingBottom(int) -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource[] values() -com.turingtechnologies.materialscrollbar.R$attr: int alertDialogTheme -com.google.android.gms.common.api.ApiException: com.google.android.gms.common.api.Status mStatus -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_switchTextOff -wangdaye.com.geometricweather.R$id: int largeLabel -wangdaye.com.geometricweather.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_27 -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType PNG -wangdaye.com.geometricweather.R$drawable: int weather_sleet_2 -com.google.android.material.R$attr: int textAllCaps -com.google.android.material.R$attr: int navigationViewStyle -androidx.vectordrawable.animated.R$dimen -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_updateDefaultLiveLockScreen -com.turingtechnologies.materialscrollbar.R$attr: int actionViewClass -okhttp3.internal.Util: okio.ByteString UTF_32_BE_BOM -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: long getTime() -androidx.customview.R$dimen: int notification_action_icon_size -androidx.coordinatorlayout.R$attr: int fontStyle -androidx.preference.R$styleable: int AppCompatTextView_drawableStartCompat -androidx.appcompat.R$attr: int spinnerDropDownItemStyle -android.didikee.donate.R$bool: int abc_action_bar_embed_tabs -androidx.work.R$color: int notification_icon_bg_color -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_10 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: AccuCurrentResult$Visibility$Imperial() -androidx.constraintlayout.widget.R$attr: int editTextColor -androidx.customview.R$styleable: int[] ColorStateListItem -android.didikee.donate.R$styleable: int TextAppearance_android_textColorLink -okhttp3.internal.ws.WebSocketReader: void readMessageFrame() -com.amap.api.fence.GeoFenceManagerBase: void resumeGeoFence() -com.google.android.material.slider.Slider: int getTrackHeight() -android.didikee.donate.R$styleable: int ActionBar_contentInsetStart -androidx.coordinatorlayout.R$id: int notification_background -com.jaredrummler.android.colorpicker.ColorPreferenceCompat -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_textAppearance -android.didikee.donate.R$styleable: int AppCompatTheme_radioButtonStyle -com.google.android.material.R$drawable: int abc_btn_borderless_material -com.google.android.material.R$styleable: int MaterialToolbar_navigationIconColor -com.google.android.material.R$styleable: int[] MaterialRadioButton -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar_Indicator -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: android.content.res.ColorStateList getSupportBackgroundTintList() -cyanogenmod.providers.CMSettings$Secure$1: boolean validate(java.lang.String) -com.google.android.material.R$dimen: int material_clock_period_toggle_width -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_3 -okhttp3.internal.http2.Http2Connection$4: okhttp3.internal.http2.Http2Connection this$0 -com.google.android.material.R$style: int Widget_AppCompat_ListView_DropDown -androidx.preference.R$color: int material_blue_grey_950 -wangdaye.com.geometricweather.R$id: int widget_clock_day -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -androidx.appcompat.R$attr: int ttcIndex -androidx.constraintlayout.widget.R$styleable: int Transform_android_rotation -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.R$styleable: int SwitchCompat_splitTrack -androidx.appcompat.R$attr: int elevation -wangdaye.com.geometricweather.R$animator: int weather_snow_1 -androidx.appcompat.R$style -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean getLiveLockScreenEnabled() -wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -com.xw.repo.bubbleseekbar.R$dimen: int hint_alpha_material_dark -androidx.core.graphics.drawable.IconCompatParcelizer -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onDetach() -cyanogenmod.themes.IThemeService: void registerThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) -wangdaye.com.geometricweather.R$id: int direct -android.didikee.donate.R$attr: int showDividers -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_background_transition_holo_dark -retrofit2.ParameterHandler$Part -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation: MfForecastResult$DailyForecast$Precipitation() -androidx.appcompat.R$attr: int textLocale -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: ChineseCityEntityDao(org.greenrobot.greendao.internal.DaoConfig) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar -cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize -com.google.android.material.R$styleable: int MaterialCardView_shapeAppearanceOverlay -wangdaye.com.geometricweather.R$id: int alerts -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_elevation_material -com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_inset_horizontal_material -com.xw.repo.bubbleseekbar.R$attr: int buttonPanelSideLayout -com.turingtechnologies.materialscrollbar.R$styleable: int TouchScrollBar_msb_hideDelayInMilliseconds -com.bumptech.glide.R$styleable -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorTextColor -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getDistrict() -androidx.vectordrawable.R$layout: int notification_template_part_time -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline3 -okio.BufferedSource: void skip(long) -androidx.preference.R$attr: int queryHint -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer windChillTemperature -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintStart_toStartOf -wangdaye.com.geometricweather.R$attr: int verticalOffset -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage DATA_CACHE -wangdaye.com.geometricweather.R$attr: int percentWidth -com.turingtechnologies.materialscrollbar.R$attr: int layout_scrollFlags -okhttp3.Request$Builder: java.util.Map tags -androidx.viewpager.R$styleable: int[] FontFamily -com.google.android.material.R$styleable: int Layout_layout_goneMarginBottom -com.google.android.material.R$style: int Base_Animation_AppCompat_Tooltip -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetStartWithNavigation -com.google.gson.stream.JsonScope: int EMPTY_OBJECT -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener access$900(cyanogenmod.externalviews.KeyguardExternalView) -androidx.transition.R$attr: int fontProviderFetchStrategy -com.jaredrummler.android.colorpicker.R$color: int secondary_text_disabled_material_dark -io.reactivex.Observable: io.reactivex.Observable interval(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$id: int message -androidx.lifecycle.extensions.R$id: int tag_accessibility_clickable_spans -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitationProbability() -wangdaye.com.geometricweather.R$drawable: int abc_item_background_holo_dark -androidx.lifecycle.extensions.R$attr: int ttcIndex -androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationX -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: java.util.concurrent.atomic.AtomicReference observers -com.amap.api.location.AMapLocation: java.lang.String d(com.amap.api.location.AMapLocation,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColorHint -okhttp3.internal.connection.StreamAllocation$StreamAllocationReference: StreamAllocation$StreamAllocationReference(okhttp3.internal.connection.StreamAllocation,java.lang.Object) -androidx.constraintlayout.widget.R$attr: int showDividers -wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_colored -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_shapeAppearance -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -wangdaye.com.geometricweather.R$string: int learn_more -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dropDownListViewStyle -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_SNOW -wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveVariesBy -com.turingtechnologies.materialscrollbar.R$id: int tag_unhandled_key_event_manager -androidx.hilt.R$dimen: R$dimen() -wangdaye.com.geometricweather.R$styleable: int Layout_android_orientation -androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandle mHandle -androidx.hilt.R$styleable: int[] ColorStateListItem -androidx.vectordrawable.R$styleable -com.github.rahatarmanahmed.cpv.R$attr: int cpv_progress -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_136 -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Tooltip -com.jaredrummler.android.colorpicker.R$string: int abc_capital_on -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogCornerRadius -cyanogenmod.app.Profile: void validateRingtones(android.content.Context) -cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_PROFILES -com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_close_circle -com.google.android.gms.common.api.Scope: android.os.Parcelable$Creator CREATOR -androidx.appcompat.widget.Toolbar: void setContentInsetEndWithActions(int) -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_day_abbr -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleTintMode -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar -androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -okio.GzipSource: long read(okio.Buffer,long) -wangdaye.com.geometricweather.common.basic.models.weather.Wind: Wind(java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String) -com.turingtechnologies.materialscrollbar.TouchScrollBar -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_menu -com.google.gson.stream.JsonWriter: boolean serializeNulls -io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite[] values() -androidx.preference.R$layout: int image_frame -wangdaye.com.geometricweather.R$drawable: int notif_temp_71 -com.jaredrummler.android.colorpicker.R$style: int Preference_CheckBoxPreference_Material -wangdaye.com.geometricweather.R$string: int key_text_size -androidx.constraintlayout.widget.R$attr: int borderlessButtonStyle -androidx.preference.R$styleable: int FontFamily_fontProviderAuthority -com.google.android.material.chip.Chip: void setChipBackgroundColorResource(int) -androidx.constraintlayout.widget.R$attr: int navigationContentDescription -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ImageButton -androidx.appcompat.app.ActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int RainProbability -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Medium_Inverse -wangdaye.com.geometricweather.R$id: int dialog_donate_wechat_img -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long REQUEST_MASK -com.xw.repo.bubbleseekbar.R$dimen: int notification_top_pad_large_text -androidx.hilt.work.R$id: int actions -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_AutoCompleteTextView -androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_end -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -cyanogenmod.app.ILiveLockScreenManagerProvider: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -wangdaye.com.geometricweather.R$styleable: int[] Transition -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getLiveLockScreenThemePackageName() -com.google.android.material.R$dimen: int mtrl_navigation_elevation -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy KEEP -androidx.coordinatorlayout.R$styleable: int[] CoordinatorLayout_Layout -james.adaptiveicon.R$attr: int ratingBarStyleIndicator -com.google.android.material.R$styleable: int Slider_android_valueFrom -androidx.drawerlayout.R$style: int Widget_Compat_NotificationActionText -androidx.hilt.lifecycle.R$attr: int fontProviderCerts -okhttp3.internal.http2.Http2Stream: boolean hasResponseHeaders -com.google.android.material.transformation.TransformationChildLayout: TransformationChildLayout(android.content.Context) -androidx.recyclerview.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.R$string: int key_service_provider -androidx.constraintlayout.widget.R$styleable: int Layout_layout_editor_absoluteY -androidx.appcompat.R$style: int Widget_AppCompat_Light_PopupMenu -cyanogenmod.app.suggest.IAppSuggestManager$Stub: cyanogenmod.app.suggest.IAppSuggestManager asInterface(android.os.IBinder) -io.reactivex.internal.observers.BasicIntQueueDisposable: boolean offer(java.lang.Object,java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.R$id: int material_label -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_updatesContinuously -androidx.constraintlayout.widget.R$layout: int custom_dialog -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String[] ROWS -okio.ByteString: int lastIndexOf(byte[],int) -com.google.android.material.R$attr: int checkedIconTint -wangdaye.com.geometricweather.R$anim: int design_bottom_sheet_slide_in -com.google.android.material.R$attr: int buttonIconDimen -androidx.work.R$id: int tag_unhandled_key_listeners -android.didikee.donate.R$attr: int windowFixedHeightMajor -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCutDrawable -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView_DropDown -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: int getFillColor() -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -androidx.preference.R$styleable: int AlertDialog_buttonIconDimen -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: AccuCurrentResult$RealFeelTemperature() -com.google.android.material.R$color: int design_fab_stroke_top_outer_color -james.adaptiveicon.R$drawable: int abc_item_background_holo_light -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_2G3G4G -androidx.appcompat.R$drawable: int abc_list_selector_background_transition_holo_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_63 -com.google.android.material.chip.ChipGroup: void setSelectionRequired(boolean) -com.google.android.material.progressindicator.ProgressIndicator: int[] getIndicatorColors() -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Headline -wangdaye.com.geometricweather.background.polling.PollingUpdateHelper -okio.Buffer: okio.BufferedSink writeHexadecimalUnsignedLong(long) -com.google.android.material.R$attr: int toolbarId -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float co -wangdaye.com.geometricweather.R$attr: int motion_postLayoutCollision -wangdaye.com.geometricweather.R$string: int phase_waxing_gibbous -com.google.android.material.circularreveal.cardview.CircularRevealCardView: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService: ForegroundTomorrowForecastUpdateService() -com.amap.api.fence.GeoFence: int TYPE_AMAPPOI -androidx.appcompat.R$styleable: int AppCompatTheme_windowMinWidthMinor -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void run() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf -james.adaptiveicon.R$anim -com.google.android.material.R$id: int right_icon -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: int index -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getMinutelyForecast() -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void run() -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog -androidx.recyclerview.widget.RecyclerView: void setClipToPadding(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginStart -retrofit2.BuiltInConverters: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalGap -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: double Value -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: double lat -io.reactivex.Observable: io.reactivex.Single firstOrError() -cyanogenmod.hardware.DisplayMode$1: cyanogenmod.hardware.DisplayMode createFromParcel(android.os.Parcel) -cyanogenmod.app.ICustomTileListener -wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -androidx.appcompat.R$attr: int paddingBottomNoButtons -com.turingtechnologies.materialscrollbar.R$attr: int backgroundSplit -androidx.appcompat.R$attr: int listPopupWindowStyle -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.Function leftEnd -com.xw.repo.bubbleseekbar.R$color: int primary_text_disabled_material_light -retrofit2.RequestFactory$Builder -android.didikee.donate.R$string: int abc_capital_on -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String frenchDepartment -com.xw.repo.bubbleseekbar.R$styleable: int[] PopupWindow -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_horizontal_edge_offset -retrofit2.KotlinExtensions$suspendAndThrow$1 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionDropDownStyle -com.amap.api.location.AMapLocationClient: boolean isStarted() -cyanogenmod.app.StatusBarPanelCustomTile: int uid -cyanogenmod.app.Profile$ProfileTrigger: int access$200(cyanogenmod.app.Profile$ProfileTrigger) -androidx.appcompat.widget.ActionBarOverlayLayout: void setWindowCallback(android.view.Window$Callback) -okhttp3.internal.http2.Http2Reader: java.util.List readHeaderBlock(int,short,byte,int) -cyanogenmod.externalviews.KeyguardExternalView$2: KeyguardExternalView$2(cyanogenmod.externalviews.KeyguardExternalView) -com.google.android.material.R$attr: int state_liftable -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onError(java.lang.Throwable) -androidx.preference.R$styleable: int[] AnimatedStateListDrawableCompat -wangdaye.com.geometricweather.R$string: int phase_third -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_36dp -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: java.lang.Integer min -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: void slideLockscreenIn() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather weather -io.reactivex.internal.observers.ForEachWhileObserver: ForEachWhileObserver(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer,io.reactivex.functions.Action) -com.turingtechnologies.materialscrollbar.R$attr: int closeIconStartPadding -james.adaptiveicon.R$attr: int actionBarStyle -com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyleIndicator -androidx.dynamicanimation.R$dimen: int notification_large_icon_height -androidx.lifecycle.ReportFragment: ReportFragment() -androidx.appcompat.resources.R$layout: int custom_dialog -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long readKey(android.database.Cursor,int) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusTopStart -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ListView_DropDown -com.xw.repo.bubbleseekbar.R$attr: int actionModeCloseDrawable -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onNext(java.lang.Object) -com.google.android.material.R$styleable: int FontFamily_fontProviderCerts -androidx.constraintlayout.widget.R$dimen: int notification_small_icon_size_as_large -com.google.android.material.R$style: int Widget_MaterialComponents_Slider -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.ObservableSource) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.util.AtomicThrowable errors -com.google.android.material.R$attr: int layout_keyline -okio.AsyncTimeout$1: okio.Timeout timeout() -com.google.android.material.chip.Chip: void setChipMinHeight(float) -androidx.lifecycle.extensions.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric Metric -android.didikee.donate.R$attr: int actionModeCloseButtonStyle -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_grey -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Snackbar -wangdaye.com.geometricweather.R$styleable: int Toolbar_android_gravity -com.xw.repo.bubbleseekbar.R$style: int Base_AlertDialog_AppCompat_Light -androidx.preference.R$style: int TextAppearance_AppCompat_Headline -android.didikee.donate.R$styleable: int PopupWindow_android_popupAnimationStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeDescription(java.lang.String) -com.google.android.material.R$drawable: int abc_list_selector_disabled_holo_dark -androidx.preference.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean getVisibility() -com.google.android.material.R$styleable: int Tooltip_android_layout_margin -androidx.core.R$id: int notification_background -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okhttp3.internal.connection.RouteSelector: void connectFailed(okhttp3.Route,java.io.IOException) -androidx.constraintlayout.widget.R$drawable: int abc_switch_track_mtrl_alpha -androidx.appcompat.R$layout: int abc_activity_chooser_view_list_item -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.R$dimen: int widget_grid_3 -com.google.android.material.R$style: int Widget_Design_ScrimInsetsFrameLayout -androidx.activity.R$drawable: int notification_action_background -wangdaye.com.geometricweather.R$string: int settings_title_forecast_today -androidx.loader.R$id: int tag_transition_group -okhttp3.Response: void close() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum -androidx.appcompat.app.AppCompatActivity: void setContentView(android.view.View) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_50 -okhttp3.internal.Util: int skipTrailingAsciiWhitespace(java.lang.String,int,int) -com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.String) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_track_material -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Toolbar -android.didikee.donate.R$styleable: int TextAppearance_android_textSize -androidx.constraintlayout.widget.R$id: int SHOW_PATH -com.turingtechnologies.materialscrollbar.R$style: int Widget_Compat_NotificationActionContainer -james.adaptiveicon.R$color: int abc_primary_text_disable_only_material_light -androidx.preference.R$styleable: int MultiSelectListPreference_android_entries -androidx.preference.R$string: int copy -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_11 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeFindDrawable -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Title_Inverse -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility -com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -android.didikee.donate.R$dimen: int abc_control_padding_material -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getDistrict() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: void setValue(java.lang.String) -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver this$0 -com.google.gson.stream.JsonReader: int NUMBER_CHAR_FRACTION_DIGIT -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: void setStatus(int) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String district -james.adaptiveicon.R$attr: int paddingBottomNoButtons -android.didikee.donate.R$color: int material_deep_teal_500 -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert -okhttp3.CertificatePinner: boolean equals(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onNext(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit -wangdaye.com.geometricweather.R$string: int abc_prepend_shortcut_label -wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_left_black_24dp -androidx.constraintlayout.widget.R$id: int chain -com.jaredrummler.android.colorpicker.R$dimen: int abc_progress_bar_height_material -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory create() -cyanogenmod.app.ProfileGroup: ProfileGroup(java.lang.String,java.util.UUID,boolean) -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: ObservableAmb$AmbInnerObserver(io.reactivex.internal.operators.observable.ObservableAmb$AmbCoordinator,int,io.reactivex.Observer) -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgressColor(int) -okio.Buffer: okio.Buffer$UnsafeCursor readUnsafe(okio.Buffer$UnsafeCursor) -com.bumptech.glide.load.resource.gif.GifFrameLoader -com.google.android.material.R$layout: int material_clockface_view -com.google.android.material.R$id: int ghost_view -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DeterminateDrawable getProgressDrawable() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -com.google.android.material.R$id: int off -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String wind_speed -wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity: ClockDayVerticalWidgetConfigActivity() -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -com.google.android.material.R$styleable: int SwitchCompat_thumbTintMode -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void drain() -androidx.constraintlayout.widget.R$id: int visible -com.turingtechnologies.materialscrollbar.R$color: int foreground_material_dark -com.google.android.material.textfield.TextInputLayout: android.widget.EditText getEditText() -androidx.recyclerview.widget.RecyclerView: void addOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegments(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Subtitle1 -cyanogenmod.profiles.BrightnessSettings: void writeToParcel(android.os.Parcel,int) -retrofit2.RequestFactory$Builder: boolean isMultipart -okhttp3.internal.connection.RouteSelector$Selection: java.util.List routes -com.bumptech.glide.integration.okhttp.R$color: int notification_action_color_filter -james.adaptiveicon.R$styleable: int FontFamily_fontProviderPackage -com.google.android.material.R$styleable: int[] Transition -wangdaye.com.geometricweather.R$dimen: int standard_weather_icon_container_size -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Button -com.jaredrummler.android.colorpicker.R$layout: int cpv_color_item_circle -wangdaye.com.geometricweather.R$styleable: int PopupWindow_overlapAnchor -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActivityChooserView -com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_default_box_stroke_color -com.jaredrummler.android.colorpicker.ColorPickerView: int getSliderTrackerColor() -wangdaye.com.geometricweather.settings.fragments.NotificationColorSettingsFragment -androidx.preference.R$styleable: int AppCompatTheme_tooltipForegroundColor -wangdaye.com.geometricweather.R$string: int refresh -com.amap.api.fence.GeoFence: com.amap.api.location.AMapLocation getCurrentLocation() -androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupWindow -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -androidx.appcompat.R$layout: int abc_cascading_menu_item_layout -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean addProfile(cyanogenmod.app.Profile) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_WAKE_SCREEN_VALIDATOR -cyanogenmod.profiles.LockSettings: android.os.Parcelable$Creator CREATOR -com.google.android.material.slider.RangeSlider -com.google.android.material.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_spinnerStyle -androidx.preference.R$styleable: int Toolbar_titleMarginStart -android.didikee.donate.R$style: int TextAppearance_AppCompat_Display4 -okhttp3.ResponseBody: byte[] bytes() -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onStart() -com.google.android.material.R$styleable: int Motion_motionStagger -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.WeatherEntity) -androidx.vectordrawable.R$drawable: int notification_bg_low -com.amap.api.fence.GeoFenceManagerBase: void addKeywordGeoFence(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String) -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchTextAppearance -androidx.appcompat.R$styleable: int DrawerArrowToggle_thickness -androidx.viewpager2.R$dimen: int compat_notification_large_icon_max_height -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: java.lang.Object[] row -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias -androidx.appcompat.resources.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$attr: int suggestionRowLayout -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingLeft -android.didikee.donate.R$dimen: int abc_disabled_alpha_material_dark -wangdaye.com.geometricweather.R$array: int weather_source_voices -androidx.constraintlayout.widget.R$dimen: int abc_text_size_small_material -wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Top_Left -androidx.constraintlayout.widget.R$dimen: int abc_button_inset_vertical_material -com.turingtechnologies.materialscrollbar.R$anim: int design_bottom_sheet_slide_out -okhttp3.Response$Builder: okhttp3.Response$Builder header(java.lang.String,java.lang.String) -androidx.appcompat.R$dimen: int abc_dialog_title_divider_material -com.google.android.material.R$styleable: int Chip_android_textSize -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: void truncateFinal() -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getLongDate(android.content.Context) -com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_action_area -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min -androidx.drawerlayout.R$styleable: int FontFamilyFont_fontStyle -androidx.preference.R$styleable: int MenuItem_android_titleCondensed -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit -androidx.lifecycle.SavedStateHandle: androidx.savedstate.SavedStateRegistry$SavedStateProvider savedStateProvider() -androidx.appcompat.R$attr: int autoSizeMinTextSize -android.didikee.donate.R$id: int spacer -com.turingtechnologies.materialscrollbar.R$attr: int windowFixedHeightMinor -androidx.appcompat.R$styleable: int AlertDialog_multiChoiceItemLayout -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int PREDISMISSED_STATE -androidx.preference.R$attr: int seekBarPreferenceStyle -okhttp3.logging.LoggingEventListener$Factory: okhttp3.EventListener create(okhttp3.Call) -cyanogenmod.profiles.LockSettings: boolean mDirty -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: java.lang.String Unit -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType NONE -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State DESTROYED -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart -androidx.activity.R$style: int TextAppearance_Compat_Notification_Info -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCopyDrawable -com.google.android.material.R$dimen: int abc_dialog_min_width_minor -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -androidx.appcompat.R$id: int action_mode_bar -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.QueryBuilder queryBuilder() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarSplitStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String weatherSource -androidx.transition.R$dimen: int notification_top_pad_large_text -androidx.swiperefreshlayout.R$id: int forever -com.google.android.material.R$dimen: int material_helper_text_font_1_3_padding_top -com.google.android.material.R$id: int accessibility_custom_action_4 -com.xw.repo.bubbleseekbar.R$attr: int windowNoTitle -androidx.appcompat.widget.ViewStubCompat: void setOnInflateListener(androidx.appcompat.widget.ViewStubCompat$OnInflateListener) -com.xw.repo.bubbleseekbar.R$style: int Platform_Widget_AppCompat_Spinner -okhttp3.OkHttpClient: javax.net.ssl.HostnameVerifier hostnameVerifier -androidx.recyclerview.R$integer -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconTint -android.support.v4.os.IResultReceiver$Stub$Proxy: android.os.IBinder asBinder() -com.xw.repo.bubbleseekbar.R$id: int tag_unhandled_key_event_manager -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton -com.google.android.material.R$color: int abc_tint_btn_checkable -androidx.preference.R$id: int accessibility_custom_action_5 -wangdaye.com.geometricweather.R$array: int pressure_unit_values -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_hide_motion_spec -androidx.transition.ChangeBounds$7 -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer getDbz() -com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_default -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String Key -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setPathSegment(int,java.lang.String) -androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy REPLACE -androidx.appcompat.widget.ActionBarContextView: void setContentHeight(int) -androidx.fragment.R$id -androidx.constraintlayout.widget.R$attr: int constraintSetStart -com.amap.api.fence.PoiItem: void setTel(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int mtrl_popupmenu_background -androidx.preference.R$style: int Platform_V21_AppCompat -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_navigationIcon -androidx.constraintlayout.widget.R$style: int Platform_V25_AppCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTint -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeFindDrawable -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_material_dark -androidx.viewpager2.R$id: int tag_unhandled_key_listeners -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconEnabled -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetStart -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_elevation -cyanogenmod.hardware.DisplayMode: DisplayMode(android.os.Parcel) -com.turingtechnologies.materialscrollbar.R$color -james.adaptiveicon.R$styleable: int ActionBar_homeAsUpIndicator -retrofit2.Retrofit: java.lang.Object create(java.lang.Class) -com.google.android.material.R$attr: int layout_constraintHeight_min -androidx.constraintlayout.widget.R$attr: int sizePercent -okio.RealBufferedSink: RealBufferedSink(okio.Sink) -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -androidx.preference.R$attr: int searchIcon -okio.Segment: okio.Segment prev -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: long serialVersionUID -com.google.android.material.chip.Chip: void setCheckableResource(int) -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_onClick -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.google.android.material.R$styleable: int TabLayout_tabBackground -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HIGH_TOUCH_SENSITIVITY_ENABLE_VALIDATOR -wangdaye.com.geometricweather.R$attr: int materialCardViewStyle -com.bumptech.glide.integration.okhttp.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_85 -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModePasteDrawable -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: int requestFusion(int) -wangdaye.com.geometricweather.R$attr: int expandedHintEnabled -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ScheduledExecutorService access$500(okhttp3.internal.http2.Http2Connection) -okio.ForwardingTimeout: ForwardingTimeout(okio.Timeout) -android.didikee.donate.R$attr: int windowFixedWidthMajor -com.xw.repo.bubbleseekbar.R$color: int dim_foreground_disabled_material_dark -com.google.android.material.chip.Chip: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) -com.amap.api.location.AMapLocation: java.lang.String COORD_TYPE_WGS84 -androidx.core.R$styleable: int[] GradientColorItem -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_listLayout -okio.HashingSource: javax.crypto.Mac mac -com.google.android.material.R$id: int scrollable -androidx.preference.R$style: int Preference_DialogPreference -androidx.core.R$id: int time -android.support.v4.os.ResultReceiver: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_thickness -androidx.hilt.lifecycle.R$style: int Widget_Compat_NotificationActionText -retrofit2.OkHttpCall: OkHttpCall(retrofit2.RequestFactory,java.lang.Object[],okhttp3.Call$Factory,retrofit2.Converter) -okhttp3.internal.http2.Hpack$Writer: Hpack$Writer(int,boolean,okio.Buffer) -okhttp3.internal.http.RealInterceptorChain -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setThunderstormPrecipitationProbability(java.lang.Float) -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month_labeled -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver parent -com.google.android.material.transformation.FabTransformationScrimBehavior: FabTransformationScrimBehavior() -androidx.appcompat.widget.LinearLayoutCompat: int getShowDividers() -androidx.appcompat.R$styleable: int TextAppearance_android_textFontWeight -androidx.preference.R$styleable: int Toolbar_maxButtonHeight -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogIcon -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconTintMode -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlActivated -retrofit2.Utils: java.lang.reflect.Type[] EMPTY_TYPE_ARRAY -com.google.android.material.R$styleable: int FloatingActionButton_shapeAppearanceOverlay -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalStyle -com.bumptech.glide.R$attr: int ttcIndex -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_summaryOn -cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_APP_SUGGESTIONS -androidx.constraintlayout.widget.R$style: int Animation_AppCompat_Dialog -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_toLeftOf -james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupWindow -androidx.recyclerview.R$styleable: int FontFamilyFont_fontVariationSettings -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_MULTIPLE_LEDS_ENABLE_VALIDATOR -io.reactivex.exceptions.MissingBackpressureException: long serialVersionUID -cyanogenmod.content.Intent: java.lang.String ACTION_THEME_REMOVED -wangdaye.com.geometricweather.R$dimen: int little_weather_icon_container_size -cyanogenmod.externalviews.KeyguardExternalView$1: cyanogenmod.externalviews.KeyguardExternalView this$0 -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -james.adaptiveicon.R$layout: int abc_action_mode_bar -androidx.preference.R$attr: int drawableTintMode -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_gravity -com.google.android.material.R$attr: int windowFixedHeightMajor -androidx.recyclerview.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.R$drawable: int notif_temp_86 -wangdaye.com.geometricweather.R$array: int pollen_unit_voices -androidx.constraintlayout.widget.R$id: int action_bar_title -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarButtonStyle -androidx.work.impl.utils.futures.DirectExecutor: java.lang.String toString() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pubTime -android.support.v4.app.RemoteActionCompatParcelizer -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.R$dimen: int notification_large_icon_width -android.didikee.donate.R$styleable: int AppCompatTheme_actionMenuTextAppearance -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableLeft -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: boolean inCompletable -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: MfWarningsResult$WarningMaxCountItems() -com.turingtechnologies.materialscrollbar.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense -androidx.constraintlayout.widget.R$attr: int colorPrimaryDark -cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.CMTelephonyManager sCMTelephonyManagerInstance -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int state -androidx.appcompat.R$layout: int abc_action_bar_title_item -com.amap.api.fence.DistrictItem -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_android_layout -wangdaye.com.geometricweather.R$style: int Theme_AppCompat -android.didikee.donate.R$id: int action_bar_activity_content -okio.Buffer: okio.BufferedSink writeInt(int) -androidx.appcompat.app.AlertController$RecycleListView: AlertController$RecycleListView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$layout: int notification_action_tombstone -androidx.constraintlayout.widget.R$attr: int drawableLeftCompat -cyanogenmod.weatherservice.WeatherProviderService: android.os.Handler access$000(cyanogenmod.weatherservice.WeatherProviderService) -com.turingtechnologies.materialscrollbar.R$id: int activity_chooser_view_content -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode valueOf(java.lang.String) -okhttp3.internal.ws.RealWebSocket: java.lang.Runnable writerRunnable -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context) -com.jaredrummler.android.colorpicker.R$attr: int selectableItemBackgroundBorderless -wangdaye.com.geometricweather.R$string: int mtrl_picker_out_of_range -com.bumptech.glide.R$styleable: int GradientColor_android_type -android.didikee.donate.R$bool: int abc_config_actionMenuItemAllCaps -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_18 -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_gravity -wangdaye.com.geometricweather.R$styleable: int Transform_android_scaleX -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListPopupWindow -okhttp3.internal.cache.DiskLruCache$Editor: okhttp3.internal.cache.DiskLruCache this$0 -androidx.constraintlayout.widget.ConstraintLayout: void setConstraintSet(androidx.constraintlayout.widget.ConstraintSet) -androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackgroundResource(int) -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver -androidx.customview.R$color: int notification_action_color_filter -okhttp3.internal.http2.Http2Stream$FramingSource -androidx.appcompat.resources.R$id: int async -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconPadding -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -okhttp3.Response$Builder: long receivedResponseAtMillis -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_directionValue -com.google.android.material.R$color: int mtrl_navigation_item_text_color -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_elevation -androidx.preference.R$styleable: int[] AlertDialog -com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_creator -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.Query queryRawCreate(java.lang.String,java.lang.Object[]) -com.google.android.material.R$attr: int recyclerViewStyle -androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy: ConstraintProxy$BatteryChargingProxy() -okhttp3.Call -wangdaye.com.geometricweather.R$styleable: int View_paddingStart -com.xw.repo.bubbleseekbar.R$bool: R$bool() -org.greenrobot.greendao.AbstractDaoSession: void update(java.lang.Object) -com.google.android.material.R$dimen: int mtrl_navigation_item_shape_vertical_margin -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -wangdaye.com.geometricweather.R$id: int multiply -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getBackgroundColorEnd() -androidx.viewpager2.R$styleable: int FontFamilyFont_font -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Menu -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf -com.google.android.material.R$attr: int textLocale -james.adaptiveicon.R$styleable: int Spinner_popupTheme -androidx.transition.R$id: int notification_background -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getUnitId() -org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType None -james.adaptiveicon.R$attr: int textAppearanceListItem -androidx.appcompat.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -com.google.android.material.R$attr: int layout_constraintEnd_toEndOf -wangdaye.com.geometricweather.R$color: int design_box_stroke_color -androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_material -android.didikee.donate.R$attr: int contentInsetEnd -wangdaye.com.geometricweather.R$styleable: int[] ThemeEnforcement -androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) -retrofit2.RequestFactory$Builder: retrofit2.RequestFactory build() -cyanogenmod.weatherservice.IWeatherProviderService: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Headline -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: java.lang.String Unit -com.xw.repo.bubbleseekbar.R$attr: int switchPadding -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: long serialVersionUID -okio.RealBufferedSink: okio.BufferedSink write(okio.ByteString) -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetRight -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Headline6 -androidx.work.R$id: int accessibility_custom_action_22 -okhttp3.internal.tls.DistinguishedNameParser: int length -androidx.appcompat.R$styleable: int AppCompatTheme_textColorSearchUrl -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: android.os.IBinder mRemote -com.google.android.material.tabs.TabLayout: void setOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) -james.adaptiveicon.R$drawable: int abc_textfield_search_activated_mtrl_alpha -okhttp3.OkHttpClient$Builder: okhttp3.CertificatePinner certificatePinner -androidx.dynamicanimation.R$style: int Widget_Compat_NotificationActionContainer -androidx.constraintlayout.widget.R$id: int left -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -androidx.constraintlayout.widget.R$attr: int popupTheme -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_3DES_EDE_CBC_SHA -com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace DISPLAY_P3 -com.google.android.material.R$color: int bright_foreground_disabled_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_numericShortcut -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_allowCustom -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextColor -android.didikee.donate.R$styleable: int AlertDialog_showTitle -androidx.viewpager2.R$id: int tag_accessibility_clickable_spans -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date publishDate -io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit) -cyanogenmod.os.Concierge$ParcelInfo: int mParcelableSize -com.turingtechnologies.materialscrollbar.R$attr: int commitIcon -com.turingtechnologies.materialscrollbar.R$attr: int switchStyle -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setDisplayState(boolean) -okio.ForwardingSink: okio.Sink delegate -android.didikee.donate.R$attr: int listDividerAlertDialog -androidx.hilt.lifecycle.R$color: R$color() -com.google.android.material.chip.ChipGroup: void setSingleSelection(int) -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteSelector routeSelector -com.amap.api.fence.GeoFence$1 -android.didikee.donate.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -cyanogenmod.weather.RequestInfo$Builder: android.location.Location mLocation -com.google.gson.stream.JsonReader: int lineNumber -okio.Timeout -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean done -org.greenrobot.greendao.AbstractDao: void updateInTx(java.lang.Object[]) -com.turingtechnologies.materialscrollbar.R$attr: int closeIconVisible -androidx.preference.R$attr: int editTextPreferenceStyle -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_TopLeftCut -okhttp3.internal.http2.ErrorCode: ErrorCode(java.lang.String,int,int) -io.reactivex.internal.observers.InnerQueuedObserver: void dispose() -com.google.android.material.chip.Chip: void setChipIconResource(int) -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_roundPercent -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -com.amap.api.location.AMapLocation: java.lang.String getStreetNum() -wangdaye.com.geometricweather.R$color: int abc_tint_btn_checkable -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_USER_KEY -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent[] $VALUES -androidx.hilt.work.R$attr: int fontProviderAuthority -cyanogenmod.app.suggest.ApplicationSuggestion$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitleTextAppearance -okhttp3.Cache$2: java.util.Iterator delegate -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onResume() -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderCerts -okio.Buffer: okio.Buffer writeHexadecimalUnsignedLong(long) -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_switchTextOff -com.google.android.material.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$string: int widget_multi_city -com.amap.api.location.AMapLocationQualityReport: void setWifiAble(boolean) -james.adaptiveicon.R$styleable: int ActionBar_contentInsetLeft -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeStyle -androidx.preference.R$layout: int abc_cascading_menu_item_layout -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_NavigationView -androidx.preference.R$attr: int dependency -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onSearchRequested(android.view.SearchEvent) -androidx.vectordrawable.R$styleable: int GradientColor_android_startColor -com.xw.repo.bubbleseekbar.R$string: int abc_menu_ctrl_shortcut_label -com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$styleable: int SearchView_suggestionRowLayout -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Icon -androidx.preference.R$styleable: int[] CoordinatorLayout -james.adaptiveicon.R$layout: int abc_list_menu_item_radio -androidx.preference.R$attr: int editTextBackground -androidx.dynamicanimation.R$styleable -wangdaye.com.geometricweather.R$layout: int item_weather_icon_title -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_showTitle -wangdaye.com.geometricweather.R$array: int temperature_unit_values -wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Dialog -retrofit2.Retrofit$Builder: okhttp3.HttpUrl baseUrl -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItem -okhttp3.internal.platform.AndroidPlatform: boolean api23IsCleartextTrafficPermitted(java.lang.String,java.lang.Class,java.lang.Object) -androidx.dynamicanimation.R$styleable: int GradientColor_android_startColor -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColor -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation RIGHT -androidx.lifecycle.ClassesInfoCache$CallbackInfo: void invokeCallbacks(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) -io.reactivex.Observable: io.reactivex.Observable zip(java.lang.Iterable,io.reactivex.functions.Function) -android.didikee.donate.R$dimen: int highlight_alpha_material_light -android.didikee.donate.R$dimen: int abc_action_bar_content_inset_with_nav -androidx.preference.R$id: int action_bar_activity_content -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: io.reactivex.Scheduler$Worker worker -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String zh_CN -wangdaye.com.geometricweather.R$attr: int chipIconVisible -androidx.legacy.coreutils.R$id: int tag_unhandled_key_event_manager -androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor[] values() -com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode[] values() -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.lang.Object NULL_KEY -androidx.preference.R$styleable: int MultiSelectListPreference_entryValues -com.jaredrummler.android.colorpicker.R$styleable: int ActionBarLayout_android_layout_gravity -com.turingtechnologies.materialscrollbar.R$attr: int closeItemLayout -com.google.android.material.R$styleable: int KeyPosition_percentY -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SearchView_ActionBar -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void drain() -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: double Value -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_barColor -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_3 -android.didikee.donate.R$styleable: int Toolbar_contentInsetLeft -wangdaye.com.geometricweather.R$id: int widget_text_date -androidx.preference.R$styleable: int MenuView_android_itemIconDisabledAlpha -wangdaye.com.geometricweather.R$string: int content_desc_search_filter_on -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_dropdownPreferenceStyle -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_framePosition -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -okio.Buffer: void skip(long) -com.baidu.location.indoor.mapversion.c.a$d: double b(double) -com.google.android.material.R$attr: int tabContentStart -cyanogenmod.app.ProfileGroup: int describeContents() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_spinnerStyle -com.google.android.material.R$styleable: int AlertDialog_listLayout -androidx.loader.R$layout: int notification_action -cyanogenmod.app.Profile: void readFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$styleable: int MaterialShape_shapeAppearanceOverlay -androidx.preference.R$style: int TextAppearance_AppCompat_Subhead -io.reactivex.internal.util.AtomicThrowable -okhttp3.Dispatcher: void finished(java.util.Deque,java.lang.Object) -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sNonNegativeIntegerValidator -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionModeOverlay -androidx.activity.R$id: int accessibility_custom_action_9 -androidx.lifecycle.extensions.R$styleable: int Fragment_android_id -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -androidx.constraintlayout.widget.R$id: int home -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setGpsFirst(boolean) -com.baidu.location.e.l$b: com.baidu.location.e.l$b b -okhttp3.Address: java.util.List connectionSpecs -wangdaye.com.geometricweather.R$layout: int container_circular_sky_view -wangdaye.com.geometricweather.db.entities.WeatherEntity -james.adaptiveicon.R$attr: int windowFixedWidthMajor -cyanogenmod.weather.util.WeatherUtils: WeatherUtils() -com.jaredrummler.android.colorpicker.R$id: int shortcut -wangdaye.com.geometricweather.db.entities.HourlyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd -okhttp3.internal.http2.Http2Connection$4: int val$streamId -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain -com.jaredrummler.android.colorpicker.R$id: int action_bar_subtitle -androidx.constraintlayout.widget.ConstraintLayout: void setOptimizationLevel(int) -com.google.android.material.R$attr: int waveShape -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer treeLevel -com.google.android.material.R$style: int Base_Theme_AppCompat -androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_EditText -cyanogenmod.profiles.BrightnessSettings: int getValue() -okhttp3.internal.connection.StreamAllocation: int refusedStreamCount -androidx.viewpager2.R$dimen: int notification_media_narrow_margin -androidx.viewpager2.R$id: int time -androidx.appcompat.widget.LinearLayoutCompat: void setBaselineAligned(boolean) -com.google.android.material.R$attr: int materialAlertDialogTheme -cyanogenmod.platform.Manifest$permission: Manifest$permission() -com.xw.repo.bubbleseekbar.R$layout: int abc_action_mode_close_item_material -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getRequiredWidth() -androidx.preference.Preference -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onComplete() -android.didikee.donate.R$styleable: int DrawerArrowToggle_barLength -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams mParams -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textSize -android.support.v4.os.IResultReceiver$Stub: android.support.v4.os.IResultReceiver getDefaultImpl() -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_20 -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutely -okhttp3.internal.ws.WebSocketReader: okhttp3.internal.ws.WebSocketReader$FrameCallback frameCallback -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean sameConnection(okhttp3.Response,okhttp3.HttpUrl) -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findPlatform() -com.google.android.material.R$attr: int values -wangdaye.com.geometricweather.R$drawable: int widget_week -cyanogenmod.weather.CMWeatherManager$2$1: void run() -androidx.lifecycle.extensions.R$id: int normal -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int OTHER_STATE_HAS_VALUE -androidx.appcompat.R$style: int Widget_AppCompat_Button_Borderless_Colored -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription(org.reactivestreams.Subscriber,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_commitIcon -wangdaye.com.geometricweather.R$attr: int errorContentDescription -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_curveFit -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String STATUSBAR_URI -okhttp3.internal.cache.DiskLruCache$Editor: void commit() -androidx.constraintlayout.widget.R$styleable: int SearchView_android_imeOptions -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfIce -androidx.appcompat.R$attr: int state_above_anchor -okhttp3.Cache: Cache(java.io.File,long) -androidx.customview.R$id: int notification_main_column_container -androidx.preference.R$attr: int allowDividerBelow -androidx.constraintlayout.widget.R$attr: int colorControlActivated -com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorColors(int[]) -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_title_text -androidx.constraintlayout.widget.R$id: int icon_group -wangdaye.com.geometricweather.R$bool: int abc_action_bar_embed_tabs -android.didikee.donate.R$styleable: int TextAppearance_textLocale -com.google.android.material.R$styleable: int KeyAttribute_android_scaleY -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA -androidx.customview.R$id: int icon -androidx.appcompat.R$id: int tag_accessibility_clickable_spans -androidx.constraintlayout.widget.R$id: int action_menu_presenter -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalBias -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default -cyanogenmod.app.Profile$TriggerState: int DISABLED -com.google.android.material.R$styleable: int TextAppearance_fontVariationSettings -com.amap.api.location.AMapLocation: boolean isOffset() -androidx.customview.view.AbsSavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$drawable: int abc_seekbar_track_material -androidx.transition.R$color: int notification_icon_bg_color -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: cyanogenmod.weatherservice.WeatherProviderService this$0 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -androidx.constraintlayout.widget.R$styleable: int KeyCycle_motionProgress -androidx.lifecycle.LifecycleService: androidx.lifecycle.ServiceLifecycleDispatcher mDispatcher -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: ThemeVersion$ThemeVersionImpl3() -com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context) -androidx.appcompat.widget.LinearLayoutCompat: int getVirtualChildCount() -androidx.preference.R$attr: int dialogIcon -android.didikee.donate.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -okhttp3.ConnectionSpec: java.lang.String[] cipherSuites -com.turingtechnologies.materialscrollbar.R$attr: int imageButtonStyle -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: AtmoAuraQAResult$MultiDaysIndexs() -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitationDuration(java.lang.Float) -com.jaredrummler.android.colorpicker.R$color: int abc_btn_colored_borderless_text_material -wangdaye.com.geometricweather.R$attr: int shapeAppearanceOverlay -okhttp3.Response$Builder: okhttp3.Response$Builder handshake(okhttp3.Handshake) -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: Minutely(java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer) -com.google.gson.stream.JsonReader -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_ActionBar -androidx.drawerlayout.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.R$layout: int item_about_header -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMargin -wangdaye.com.geometricweather.common.basic.models.weather.Base: long publishTime -com.google.android.material.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon -wangdaye.com.geometricweather.R$attr: int errorTextColor -james.adaptiveicon.R$attr: int submitBackground -androidx.preference.R$attr: int gapBetweenBars -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -wangdaye.com.geometricweather.R$styleable: int[] OnSwipe -com.google.android.material.appbar.AppBarLayout: void addOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener) -cyanogenmod.app.suggest.IAppSuggestManager$Stub: int TRANSACTION_handles_0 -androidx.lifecycle.extensions.R$styleable: int[] GradientColorItem -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setZh_TW(java.lang.String) -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: void close() -wangdaye.com.geometricweather.R$styleable: int OnClick_targetId -wangdaye.com.geometricweather.db.entities.WeatherEntity: void update() -androidx.preference.R$styleable: int AppCompatTextView_drawableTopCompat -cyanogenmod.weather.RequestInfo: boolean equals(java.lang.Object) -android.didikee.donate.R$id: int middle -androidx.appcompat.widget.ActionBarContainer: void setStackedBackground(android.graphics.drawable.Drawable) -okio.Buffer: int read(java.nio.ByteBuffer) -okhttp3.ConnectionPool: int pruneAndGetAllocationCount(okhttp3.internal.connection.RealConnection,long) -wangdaye.com.geometricweather.R$id: int selection_type -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: int status -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onComplete() -com.turingtechnologies.materialscrollbar.R$attr: int title -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabContentStart -io.reactivex.Observable: io.reactivex.Observable debounce(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.appcompat.R$styleable: int TextAppearance_android_typeface -android.didikee.donate.R$style: int Theme_AppCompat_DayNight -android.didikee.donate.R$color: int abc_color_highlight_material -androidx.constraintlayout.widget.R$attr: int windowFixedHeightMajor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: AccuCurrentResult$WindChillTemperature$Imperial() -wangdaye.com.geometricweather.R$animator: int weather_clear_day_1 -wangdaye.com.geometricweather.R$anim: int abc_tooltip_enter -com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode LAST_ELEMENT -cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_SLEEP_ON_RELEASE -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_trackTint -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_strokeColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String co -wangdaye.com.geometricweather.R$styleable: int[] SwitchImageButton -cyanogenmod.app.Profile$TriggerState: int ON_CONNECT -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_deriveConstraintsFrom -android.didikee.donate.R$style: int Platform_Widget_AppCompat_Spinner -okio.Timeout: long timeoutNanos() -okio.AsyncTimeout$1: AsyncTimeout$1(okio.AsyncTimeout,okio.Sink) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: MfForecastResult$DailyForecast$Humidity() -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_2 -android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -okhttp3.CertificatePinner$Pin: okio.ByteString hash -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindDirection -androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotation -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low_pressed -androidx.lifecycle.EmptyActivityLifecycleCallbacks: EmptyActivityLifecycleCallbacks() -com.google.android.material.R$styleable: int CardView_contentPaddingRight -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_subtitleTextStyle -androidx.preference.R$styleable: int TextAppearance_android_typeface -james.adaptiveicon.R$id: int spacer -androidx.recyclerview.R$styleable: int FontFamilyFont_android_font -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean isDisposed() -cyanogenmod.app.Profile: java.util.List readSecondaryUuidsFromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -wangdaye.com.geometricweather.R$styleable: int Motion_motionPathRotate -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView -wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity -wangdaye.com.geometricweather.R$array: int live_wallpaper_weather_kind_values -androidx.constraintlayout.widget.R$styleable: int RecycleListView_paddingBottomNoButtons -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void dispose() -wangdaye.com.geometricweather.R$id: int up -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_Solid -androidx.fragment.R$drawable: int notification_action_background -wangdaye.com.geometricweather.R$styleable: int MenuItem_numericModifiers -wangdaye.com.geometricweather.R$style: int Animation_AppCompat_Tooltip -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -cyanogenmod.app.ProfileGroup: void setLightsMode(cyanogenmod.app.ProfileGroup$Mode) -okhttp3.OkHttpClient: okhttp3.Dns dns() -okio.SegmentedByteString: byte[] internalArray() -okhttp3.internal.connection.RouteSelector: okhttp3.Call call -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_shapeAppearance -androidx.preference.R$id: int async -com.google.android.material.R$styleable: int Layout_layout_goneMarginTop -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX getNames() -wangdaye.com.geometricweather.db.entities.WeatherEntity: WeatherEntity(java.lang.Long,java.lang.String,java.lang.String,long,java.util.Date,long,java.util.Date,long,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.String,java.lang.String) -androidx.hilt.lifecycle.R$color -androidx.constraintlayout.widget.R$id: int split_action_bar -androidx.hilt.R$styleable: int[] FontFamilyFont -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_TextView_SpinnerItem -androidx.viewpager2.R$id: int right_icon -okhttp3.internal.connection.RouteSelector: okhttp3.internal.connection.RouteDatabase routeDatabase -okio.RealBufferedSink$1: void write(int) -wangdaye.com.geometricweather.R$layout: int material_clock_period_toggle_land -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Medium_Inverse -cyanogenmod.app.PartnerInterface: cyanogenmod.app.PartnerInterface getInstance(android.content.Context) -android.didikee.donate.R$attr: int checkboxStyle -com.google.android.material.R$styleable: int AppCompatTheme_actionModePasteDrawable -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: io.reactivex.CompletableSource other -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_BottomSheetDialog -androidx.recyclerview.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.R$string: int content_desc_app_store -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_dialogPreferenceStyle -android.didikee.donate.R$styleable: int AppCompatTextView_fontFamily -androidx.transition.R$dimen: int notification_big_circle_margin -androidx.dynamicanimation.R$style: int Widget_Compat_NotificationActionText -androidx.preference.R$layout: int abc_list_menu_item_checkbox -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_toolbarStyle -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginEnd -cyanogenmod.app.IPartnerInterface: java.lang.String getCurrentHotwordPackageName() -androidx.cardview.R$styleable -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int) -com.amap.api.fence.GeoFenceManagerBase: void setGeoFenceAble(java.lang.String,boolean) -com.bumptech.glide.load.HttpException: int getStatusCode() -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Dialog_Bridge -cyanogenmod.weather.WeatherLocation: WeatherLocation(android.os.Parcel,cyanogenmod.weather.WeatherLocation$1) -androidx.preference.R$styleable: int AppCompatTextView_drawableTint -james.adaptiveicon.R$style: int Widget_AppCompat_Button_Borderless_Colored -androidx.appcompat.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -cyanogenmod.app.ProfileManager: int PROFILES_STATE_DISABLED -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String postCode -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: SingleToObservable$SingleToObservableObserver(io.reactivex.Observer) -com.google.android.material.R$attr: int useCompatPadding -okio.Buffer$UnsafeCursor: long resizeBuffer(long) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_dividerHeight -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: long mRequested -wangdaye.com.geometricweather.R$styleable: int RecycleListView_paddingTopNoTitle -com.jaredrummler.android.colorpicker.R$attr: int order -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -com.xw.repo.bubbleseekbar.R$id: int textSpacerNoTitle -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTextView -com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeBottomRight -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getDegreeDayTemperature() -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge -com.jaredrummler.android.colorpicker.R$styleable: int[] ActivityChooserView -androidx.work.impl.WorkDatabase_Impl -com.google.android.material.R$styleable: int KeyCycle_android_rotation -wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_horizontal -com.google.android.material.R$attr: int hideMotionSpec -okhttp3.internal.http2.Http2Stream: okhttp3.Headers takeHeaders() -wangdaye.com.geometricweather.R$styleable: int AlertDialog_buttonIconDimen -com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String VERSION_NAME -com.jaredrummler.android.colorpicker.R$styleable: int BackgroundStyle_selectableItemBackground -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_background -androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer uvIndex -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.functions.Function mapper -com.turingtechnologies.materialscrollbar.R$color: int tooltip_background_light -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_shapeAppearance -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textSize -com.xw.repo.bubbleseekbar.R$color: int abc_hint_foreground_material_dark -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: MfForecastV2Result$ForecastProperties() -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetEndWithActions -james.adaptiveicon.R$attr: int allowStacking -com.google.android.material.R$attr: int colorSwitchThumbNormal -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.preference.R$attr: int contentInsetEndWithActions -com.google.android.material.appbar.HeaderBehavior: HeaderBehavior(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$drawable: int abc_list_selector_disabled_holo_light -com.jaredrummler.android.colorpicker.R$attr: int summary -com.xw.repo.bubbleseekbar.R$layout: int notification_template_custom_big -androidx.fragment.R$drawable: int notification_template_icon_bg -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarStyle -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.AlertEntity) -com.google.android.material.bottomappbar.BottomAppBar$Behavior: BottomAppBar$Behavior() -androidx.preference.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: int getWindowFlags() -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getWeatherKind() -okhttp3.internal.http1.Http1Codec: Http1Codec(okhttp3.OkHttpClient,okhttp3.internal.connection.StreamAllocation,okio.BufferedSource,okio.BufferedSink) -com.jaredrummler.android.colorpicker.R$color: int abc_background_cache_hint_selector_material_dark -com.google.android.material.R$attr: int actionModeWebSearchDrawable -com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getIconTintMode() -com.amap.api.location.LocationManagerBase: boolean isStarted() -wangdaye.com.geometricweather.R$attr: int inverse -wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragScale -okhttp3.internal.http2.Header: okio.ByteString TARGET_METHOD -com.google.android.material.R$styleable: int Constraint_android_layout_marginTop -com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_android_textAppearance -com.turingtechnologies.materialscrollbar.R$anim: int abc_tooltip_enter -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActivityChooserView -com.google.android.material.button.MaterialButton: int getInsetBottom() -androidx.fragment.R$id: int accessibility_custom_action_10 -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$ExpandedStyle mExpandedStyle -wangdaye.com.geometricweather.R$string: int local_time -james.adaptiveicon.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -wangdaye.com.geometricweather.R$styleable: int SearchView_commitIcon -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_orderInCategory -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial Imperial -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_textOn -com.google.android.material.R$styleable: int Layout_layout_goneMarginStart -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_to_on_mtrl_000 -com.google.android.material.R$drawable: int design_snackbar_background -wangdaye.com.geometricweather.R$string: int mtrl_badge_numberless_content_description -androidx.preference.R$interpolator: int fast_out_slow_in -androidx.appcompat.R$layout: int abc_action_bar_up_container -cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings() -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float total -wangdaye.com.geometricweather.R$layout: int item_weather_daily_air -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder socket(java.net.Socket,java.lang.String,okio.BufferedSource,okio.BufferedSink) -com.google.android.material.R$styleable: int MaterialButton_android_insetLeft -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_max -androidx.appcompat.R$styleable: int MenuView_preserveIconSpacing -com.turingtechnologies.materialscrollbar.R$attr: int chipEndPadding -androidx.hilt.work.R$id: int line1 -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_COLOR_ADJUSTMENT -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.disposables.Disposable upstream -com.github.rahatarmanahmed.cpv.CircularProgressView$6: void onAnimationUpdate(android.animation.ValueAnimator) -androidx.appcompat.R$attr: int dialogTheme -com.xw.repo.BubbleSeekBar: void setOnProgressChangedListener(com.xw.repo.BubbleSeekBar$OnProgressChangedListener) -com.google.gson.stream.MalformedJsonException: long serialVersionUID -com.xw.repo.bubbleseekbar.R$styleable: int GradientColorItem_android_offset -androidx.hilt.lifecycle.R$drawable: int notification_icon_background -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getPowerProfile -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object) -okio.Buffer: okio.Segment head -retrofit2.DefaultCallAdapterFactory: DefaultCallAdapterFactory(java.util.concurrent.Executor) -cyanogenmod.externalviews.IExternalViewProvider -androidx.constraintlayout.widget.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: java.lang.String Unit -io.reactivex.exceptions.CompositeException: void printStackTrace(java.io.PrintWriter) -wangdaye.com.geometricweather.R$array: int widget_text_color_values -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_light -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_middle_mtrl_light -com.google.android.material.R$styleable: int ActionBar_contentInsetLeft -androidx.transition.R$styleable: int GradientColor_android_centerColor -com.turingtechnologies.materialscrollbar.R$attr: int rippleColor -com.google.android.material.R$styleable: int CustomAttribute_customPixelDimension -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setDateText(java.lang.String) -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -androidx.preference.R$layout: int abc_list_menu_item_icon -androidx.preference.R$styleable: int PreferenceFragmentCompat_android_dividerHeight -com.xw.repo.bubbleseekbar.R$attr: int thumbTextPadding -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: java.lang.String Unit -cyanogenmod.weather.CMWeatherManager$1$1: void run() -com.xw.repo.bubbleseekbar.R$style: int Base_V26_Theme_AppCompat -androidx.fragment.R$anim -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.R$styleable: int Constraint_visibilityMode -cyanogenmod.hardware.CMHardwareManager: int FEATURE_ADAPTIVE_BACKLIGHT -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String from -cyanogenmod.power.PerformanceManager: java.lang.String TAG -com.google.android.material.R$styleable: int ProgressIndicator_growMode -com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyleIndicator -wangdaye.com.geometricweather.R$attr: int checkBoxPreferenceStyle -androidx.fragment.R$id: int right_icon -com.google.android.material.R$id: int src_atop -android.didikee.donate.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float total -androidx.hilt.work.R$id: int tag_accessibility_heading -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.preference.R$attr: int actionBarStyle -androidx.appcompat.widget.AppCompatButton: void setSupportCompoundDrawablesTintMode(android.graphics.PorterDuff$Mode) -androidx.preference.R$styleable: int[] PopupWindowBackgroundState -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_SIMULATION_LOCATION -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motion_triggerOnCollision -androidx.lifecycle.LifecycleRegistry: void removeObserver(androidx.lifecycle.LifecycleObserver) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ListView_DropDown -androidx.appcompat.R$styleable: int MenuGroup_android_visible -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient build() -okhttp3.internal.ws.WebSocketProtocol: int CLOSE_NO_STATUS_CODE -wangdaye.com.geometricweather.R$integer: int mtrl_chip_anim_duration -androidx.preference.R$color: int abc_tint_default -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency -androidx.activity.R$id: int accessibility_custom_action_14 -cyanogenmod.externalviews.ExternalView$2 -wangdaye.com.geometricweather.R$styleable: int Chip_rippleColor -wangdaye.com.geometricweather.R$color: int material_grey_50 -cyanogenmod.hardware.CMHardwareManager: long getLtoDownloadInterval() -com.google.android.material.R$styleable: int KeyCycle_waveOffset -wangdaye.com.geometricweather.R$attr: int iconPadding -androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedHeightMinor -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -okio.ForwardingTimeout: okio.Timeout delegate() -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: AccuDailyResult$DailyForecasts$DegreeDaySummary() -androidx.constraintlayout.utils.widget.MockView -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitation -com.google.android.material.R$attr: int actionProviderClass -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxy(java.net.Proxy) -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void run() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_14 -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent FONT -james.adaptiveicon.R$styleable: int AppCompatTheme_colorButtonNormal -androidx.constraintlayout.widget.R$styleable: int[] AppCompatTheme -cyanogenmod.themes.IThemeService$Stub$Proxy: boolean isThemeBeingProcessed(java.lang.String) -com.google.android.material.R$color: int material_grey_50 -com.amap.api.location.AMapLocationClientOption: void setDownloadCoordinateConvertLibrary(boolean) -okhttp3.internal.http2.Http2Reader: void readPing(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -james.adaptiveicon.R$dimen: int abc_dialog_fixed_width_major -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.R$styleable: int SearchView_searchIcon -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogStyle -androidx.constraintlayout.widget.R$styleable: int SearchView_android_maxWidth -okio.DeflaterSink: DeflaterSink(okio.Sink,java.util.zip.Deflater) -com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_singlechoice_material -com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.content.res.ColorStateList getItemTextColor() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: java.lang.Integer freezing -cyanogenmod.profiles.RingModeSettings: boolean mOverride -com.google.android.material.R$attr: int track -com.google.android.material.R$attr: int contentPaddingTop -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_title_material_toolbar -org.greenrobot.greendao.AbstractDao: boolean hasKey(java.lang.Object) -cyanogenmod.providers.CMSettings$System: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) -com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: FloatingActionButton$Behavior(android.content.Context,android.util.AttributeSet) -androidx.fragment.R$dimen: int notification_right_icon_size -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualObserver[] observers -androidx.constraintlayout.widget.R$style: int Animation_AppCompat_DropDownUp -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderAuthority -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: boolean delayError -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getSoundMode() -cyanogenmod.profiles.LockSettings: void processOverride(android.content.Context,com.android.internal.policy.IKeyguardService) -cyanogenmod.app.LiveLockScreenInfo: java.lang.String toString() -io.reactivex.internal.disposables.SequentialDisposable: void dispose() -okhttp3.internal.cache.InternalCache: void trackConditionalCacheHit() -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_interval -androidx.preference.R$dimen: int tooltip_horizontal_padding -androidx.appcompat.widget.SwitchCompat: void setThumbPosition(float) -androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyleSmall -wangdaye.com.geometricweather.R$id: int notification_multi_city_2 -io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.ObservableSource) -cyanogenmod.externalviews.KeyguardExternalView$11 -androidx.appcompat.widget.AppCompatSpinner: android.graphics.drawable.Drawable getPopupBackground() -androidx.hilt.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig weatherEntityDaoConfig -androidx.hilt.lifecycle.R$styleable: int[] FontFamily -com.google.android.material.progressindicator.ProgressIndicator: void setCircularInset(int) -androidx.constraintlayout.widget.R$drawable: int tooltip_frame_light -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: boolean isDisposed() -androidx.legacy.coreutils.R$dimen: int notification_media_narrow_margin -james.adaptiveicon.R$styleable: int SwitchCompat_android_textOn -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: java.util.concurrent.atomic.AtomicReference upstream -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$plurals: R$plurals() -androidx.legacy.coreutils.R$dimen: int compat_button_inset_vertical_material -androidx.preference.R$drawable: int abc_textfield_search_material -okhttp3.Response$Builder: int code -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: long updatedOn -wangdaye.com.geometricweather.R$styleable: int FlowLayout_itemSpacing -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.Scheduler scheduler -android.didikee.donate.R$color: int abc_primary_text_material_light -androidx.appcompat.R$styleable: int DrawerArrowToggle_arrowHeadLength -cyanogenmod.os.Build: java.lang.String CYANOGENMOD_DISPLAY_VERSION -okhttp3.internal.http.HttpDate$1: java.text.DateFormat initialValue() -com.amap.api.location.AMapLocation: int GPS_ACCURACY_BAD -wangdaye.com.geometricweather.R$drawable: int notif_temp_76 -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getThunderstormPrecipitationProbability() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean getCurrent() -cyanogenmod.util.ColorUtils: float[] convertRGBtoLAB(int) -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerComplete(int) -james.adaptiveicon.R$drawable: int abc_text_cursor_material -wangdaye.com.geometricweather.R$dimen: int hint_alpha_material_light -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableRightCompat -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabText -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getWindSpeed() -androidx.appcompat.widget.LinearLayoutCompat: void setHorizontalGravity(int) -androidx.transition.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.R$id: int multiply -com.bumptech.glide.R$id: int action_container -androidx.viewpager.widget.PagerTitleStrip: void setNonPrimaryAlpha(float) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation precipitation -wangdaye.com.geometricweather.R$id: int activity_widget_config_viewStyleContainer -wangdaye.com.geometricweather.R$animator: int weather_hail_2 -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol -com.google.android.material.R$styleable: int AppBarLayoutStates_state_collapsed -okio.Timeout$1: Timeout$1() -com.google.android.material.R$styleable: int Layout_layout_constraintVertical_weight -com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$attr: int showDelay -okhttp3.internal.http2.Http2Connection: void updateConnectionFlowControl(long) -okhttp3.Request: okhttp3.CacheControl cacheControl -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode daytimeWeatherCode -androidx.appcompat.R$color: int button_material_light -com.turingtechnologies.materialscrollbar.R$layout: int abc_activity_chooser_view -wangdaye.com.geometricweather.R$dimen: int mtrl_card_elevation -wangdaye.com.geometricweather.R$string: int key_alert_notification_switch -android.didikee.donate.R$style: int TextAppearance_AppCompat_Title -com.google.android.material.circularreveal.CircularRevealLinearLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: java.lang.String getUIStyleName(android.content.Context) -okhttp3.internal.Util: java.lang.String inet6AddressToAscii(byte[]) -james.adaptiveicon.R$bool: R$bool() -cyanogenmod.providers.DataUsageContract: java.lang.String ACTIVE -androidx.constraintlayout.widget.R$string: int search_menu_title -okhttp3.MediaType: java.nio.charset.Charset charset(java.nio.charset.Charset) -james.adaptiveicon.R$id: int right_icon -com.google.android.material.R$attr: int popupMenuBackground -wangdaye.com.geometricweather.R$attr: int indicatorCornerRadius -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator -androidx.constraintlayout.widget.R$attr: int moveWhenScrollAtTop -com.google.android.material.R$styleable: int CardView_cardCornerRadius -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_123 -com.google.android.material.R$styleable: int TextInputLayout_boxBackgroundMode -android.didikee.donate.R$layout: int notification_template_part_chronometer -okio.RealBufferedSource: boolean rangeEquals(long,okio.ByteString,int,int) -okhttp3.internal.http2.Http2Connection$6: int val$byteCount -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Surface -androidx.preference.R$styleable: int Preference_layout -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_disabled_elevation -com.google.android.material.R$attr: int extendedFloatingActionButtonStyle -wangdaye.com.geometricweather.R$id: int wrap_content -androidx.preference.R$styleable: int SwitchPreference_android_summaryOn -androidx.recyclerview.R$dimen: int compat_button_inset_horizontal_material -com.jaredrummler.android.colorpicker.R$attr: int tooltipForegroundColor -okhttp3.internal.http2.Http2: java.io.IOException ioException(java.lang.String,java.lang.Object[]) -androidx.preference.R$styleable: int TextAppearance_fontVariationSettings -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.database.Database db -androidx.preference.R$styleable: int AppCompatTheme_windowActionBar -androidx.recyclerview.R$attr: int fontProviderFetchStrategy -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_QUICK_QS_PULLDOWN_VALIDATOR -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderPackage -com.google.android.material.R$attr: int textAppearanceSmallPopupMenu -com.xw.repo.bubbleseekbar.R$style: int Platform_AppCompat_Light -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onNext(java.lang.Object) -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: org.reactivestreams.Subscription upstream -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollEnabled -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_xml -androidx.customview.R$drawable: int notification_bg_normal_pressed -com.google.android.gms.common.server.converter.StringToIntConverter: android.os.Parcelable$Creator CREATOR -androidx.preference.R$styleable: int AppCompatTheme_alertDialogTheme -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf -androidx.hilt.R$dimen: int notification_small_icon_size_as_large -com.google.gson.stream.JsonReader: int PEEKED_TRUE -androidx.preference.R$styleable: int SwitchCompat_thumbTextPadding -androidx.work.R$style: int TextAppearance_Compat_Notification -james.adaptiveicon.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -wangdaye.com.geometricweather.R$styleable: int SearchView_goIcon -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial -androidx.vectordrawable.R$drawable: int notify_panel_notification_icon_bg -android.didikee.donate.R$dimen: int abc_dialog_fixed_width_minor -androidx.transition.R$styleable: int GradientColor_android_endX -com.google.android.material.R$attr: int showAsAction -okhttp3.logging.LoggingEventListener: void responseBodyEnd(okhttp3.Call,long) -androidx.coordinatorlayout.R$attr: R$attr() -androidx.constraintlayout.widget.R$id: int search_close_btn -androidx.appcompat.R$dimen: int abc_action_bar_content_inset_material -androidx.drawerlayout.R$id: int line3 -androidx.hilt.work.R$id: int action_text -wangdaye.com.geometricweather.R$styleable: int MaterialTextView_android_textAppearance -okhttp3.internal.cache.DiskLruCache: java.io.File journalFileTmp -com.turingtechnologies.materialscrollbar.R$attr: int chipIconTint -com.xw.repo.bubbleseekbar.R$attr: int bsb_max -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalStyle -wangdaye.com.geometricweather.R$id: int moldValue -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog_Alert -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCopyDrawable -io.reactivex.internal.util.HashMapSupplier -androidx.constraintlayout.motion.widget.MotionLayout: void setProgress(float) -com.google.android.material.R$styleable: int[] ActionMode -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom -com.google.android.material.transformation.FabTransformationBehavior: FabTransformationBehavior() -androidx.core.R$id: int accessibility_custom_action_27 -wangdaye.com.geometricweather.R$array: int temperature_units -com.google.android.material.chip.Chip: void setGravity(int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionBarOverlay -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityDestroyed(android.app.Activity) -androidx.appcompat.R$styleable: int AppCompatTheme_popupWindowStyle -wangdaye.com.geometricweather.R$string: int widget_trend_daily -com.google.android.material.R$attr: int displayOptions -androidx.appcompat.R$attr: int suggestionRowLayout -android.didikee.donate.R$styleable: int Spinner_android_dropDownWidth -james.adaptiveicon.R$id: int buttonPanel -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: long serialVersionUID -cyanogenmod.providers.CMSettings$Global: long getLongForUser(android.content.ContentResolver,java.lang.String,int) -com.google.android.material.R$attr: int drawerArrowStyle -androidx.hilt.work.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String country -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_only_start_selected -okhttp3.internal.cache.CacheRequest: void abort() -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: int mMax -com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd -com.google.android.material.R$styleable: int Toolbar_menu -james.adaptiveicon.R$styleable: int PopupWindow_overlapAnchor -wangdaye.com.geometricweather.R$styleable: int Constraint_transitionPathRotate -androidx.constraintlayout.widget.R$string: int abc_menu_alt_shortcut_label -androidx.constraintlayout.widget.R$styleable: int ActionBar_customNavigationLayout -com.google.gson.stream.JsonReader$1: JsonReader$1() -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: ObservableWindowBoundarySupplier$WindowBoundaryMainObserver(io.reactivex.Observer,int,java.util.concurrent.Callable) -com.google.android.material.R$styleable: int TextInputLayout_errorTextColor -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Id -okhttp3.internal.http2.Hpack$Writer: int maxDynamicTableByteCount -io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,boolean) -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void dispose() -okhttp3.CertificatePinner: void check(java.lang.String,java.util.List) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property CityId -wangdaye.com.geometricweather.R$attr: int progressIndicatorStyle -com.turingtechnologies.materialscrollbar.R$color: int primary_material_light -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Caption -com.google.android.material.R$styleable: int[] ColorStateListItem -com.google.android.material.R$attr: int region_heightMoreThan -wangdaye.com.geometricweather.R$layout: int widget_clock_day_vertical -com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_LOW -androidx.core.R$styleable: int ColorStateListItem_android_color -com.turingtechnologies.materialscrollbar.R$attr: int thumbTextPadding -androidx.viewpager2.R$styleable: int GradientColorItem_android_color -com.google.android.material.R$styleable: int Transition_autoTransition -com.turingtechnologies.materialscrollbar.R$id: int navigation_header_container -androidx.dynamicanimation.R$id: int chronometer -androidx.coordinatorlayout.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$interpolator: R$interpolator() -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_elevation -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableStart -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String _ID -com.bumptech.glide.integration.okhttp.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer getCloudCover() -okhttp3.internal.Util: okhttp3.RequestBody EMPTY_REQUEST -wangdaye.com.geometricweather.db.entities.AlertEntity -wangdaye.com.geometricweather.R$drawable: int notif_temp_70 -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void access$600(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_measureWithLargestChild -androidx.constraintlayout.widget.R$attr: int circleRadius -okio.RealBufferedSink -okio.Buffer$1 -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer RIGHT_VALUE -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceBody2 -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onCreatePanelMenu(int,android.view.Menu) -wangdaye.com.geometricweather.R$attr: int snackbarStyle -com.google.android.material.R$attr: int horizontalOffset -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: long serialVersionUID -wangdaye.com.geometricweather.R$attr: int contentInsetStartWithNavigation -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetStart -androidx.coordinatorlayout.R$id: int actions -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: MfForecastV2Result$ForecastProperties$HourForecast() -androidx.lifecycle.ProcessLifecycleOwner$1: void run() -androidx.lifecycle.extensions.R$drawable: int notification_bg_low_pressed -androidx.appcompat.widget.AppCompatSpinner: int getDropDownHorizontalOffset() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ImageButton -androidx.fragment.R$id: int accessibility_custom_action_29 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String grassDescription -wangdaye.com.geometricweather.R$attr: int bsb_track_color -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetRight -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType[] values() -com.turingtechnologies.materialscrollbar.R$attr: int chipIcon -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationY -androidx.preference.R$drawable: int abc_list_pressed_holo_dark -androidx.appcompat.R$id: int right_side -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.ObservableSource bufferOpen -android.didikee.donate.R$styleable: int AppCompatTheme_colorBackgroundFloating -okio.SegmentedByteString: okio.ByteString hmacSha1(okio.ByteString) -androidx.appcompat.R$attr: int actionBarTheme -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_tagView -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_horizontalDivider -wangdaye.com.geometricweather.search.SearchActivity -androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Dialog -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setCity(java.lang.String) -androidx.cardview.R$color: R$color() -androidx.viewpager2.R$color: R$color() -cyanogenmod.hardware.CMHardwareManager: int[] getDisplayGammaCalibrationArray(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.List getValue() -androidx.viewpager.R$id: int line3 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm10Desc(java.lang.String) -androidx.legacy.coreutils.R$attr: int fontWeight -com.google.android.material.R$attr: int passwordToggleDrawable -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.R$id: int container_main_header_weatherTxt -james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_dither -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: Precipitation(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: ObservableConcatWithMaybe$ConcatWithObserver(io.reactivex.Observer,io.reactivex.MaybeSource) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -android.didikee.donate.R$styleable: int Toolbar_navigationIcon -com.google.android.material.button.MaterialButton: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -james.adaptiveicon.R$color: int bright_foreground_inverse_material_dark -androidx.appcompat.R$styleable: int AppCompatTheme_activityChooserViewStyle -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicLong index -androidx.appcompat.R$attr: int spinnerStyle -cyanogenmod.hardware.IThermalListenerCallback$Stub -androidx.activity.R$attr: int fontProviderCerts -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onDrop(java.lang.Object) -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.HistoryEntity) -androidx.hilt.work.R$styleable: int FontFamilyFont_fontVariationSettings -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAVBAR_LEFT_IN_LANDSCAPE_VALIDATOR -cyanogenmod.app.ILiveLockScreenChangeListener -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitation -com.google.android.material.R$string: int abc_action_menu_overflow_description -okio.BufferedSource: byte[] readByteArray() -com.google.android.material.R$id: int action_mode_bar_stub -androidx.activity.R$id: int accessibility_custom_action_1 -com.google.android.material.appbar.CollapsingToolbarLayout: void setTitle(java.lang.CharSequence) -okhttp3.internal.ws.RealWebSocket$2: void onFailure(okhttp3.Call,java.io.IOException) -cyanogenmod.app.StatusBarPanelCustomTile$1: java.lang.Object[] newArray(int) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_MWI_NOTIFICATION_VALIDATOR -cyanogenmod.app.Profile$ProfileTrigger -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: long id -androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context,android.util.AttributeSet) -okhttp3.CertificatePinner$Pin: java.lang.String hashAlgorithm -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type TOP -androidx.hilt.R$id: int icon -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode Battery_Saving -com.google.android.material.R$style: int Widget_Support_CoordinatorLayout -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type[] getLowerBounds() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean done -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onComplete() -okio.BufferedSource: long readDecimalLong() -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar -com.google.android.material.internal.CheckableImageButton: void setChecked(boolean) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: MinutelyEntityDao$Properties() -cyanogenmod.profiles.StreamSettings: int getStreamId() -io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate,int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.lang.String Phase -androidx.lifecycle.ServiceLifecycleDispatcher -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource getInstance(java.lang.String) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_slideLockscreenIn -android.didikee.donate.R$drawable: int abc_ratingbar_indicator_material -com.google.android.material.R$attr: int contentInsetEndWithActions -james.adaptiveicon.R$attr: int homeAsUpIndicator -okhttp3.Headers$Builder: okhttp3.Headers$Builder addUnsafeNonAscii(java.lang.String,java.lang.String) -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: java.lang.String English -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderTextAppearance -com.turingtechnologies.materialscrollbar.R$attr: int trackTint -okhttp3.internal.http1.Http1Codec: okio.Source newUnknownLengthSource() -retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type upperBound -androidx.constraintlayout.widget.R$attr: int activityChooserViewStyle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl -retrofit2.RequestFactory -retrofit2.ParameterHandler$Part: int p -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer humidity -com.jaredrummler.android.colorpicker.R$style: int Preference_DropDown_Material -cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings(int,boolean) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource source -okhttp3.Credentials -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: long serialVersionUID -james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.R$attr: int splitTrack -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context,android.util.AttributeSet,int) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA -com.google.android.material.R$attr: int colorSurface -wangdaye.com.geometricweather.R$styleable: int Layout_maxHeight -io.reactivex.internal.subscriptions.DeferredScalarSubscription: void clear() -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: ViewModelProvider$AndroidViewModelFactory(android.app.Application) -okhttp3.Headers: java.lang.String value(int) -cyanogenmod.app.Profile$1 -cyanogenmod.profiles.AirplaneModeSettings$1: java.lang.Object[] newArray(int) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Headline -com.google.android.material.R$styleable: int KeyTimeCycle_android_translationX -androidx.customview.R$styleable: int FontFamilyFont_android_font -okhttp3.MediaType: java.nio.charset.Charset charset() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String LocalizedName -cyanogenmod.externalviews.KeyguardExternalView$3: boolean val$visible -androidx.preference.R$styleable: int GradientColor_android_centerColor -okhttp3.internal.cache.CacheInterceptor$1: CacheInterceptor$1(okhttp3.internal.cache.CacheInterceptor,okio.BufferedSource,okhttp3.internal.cache.CacheRequest,okio.BufferedSink) -io.reactivex.Observable: io.reactivex.Completable ignoreElements() -com.google.android.material.slider.RangeSlider: void setTickTintList(android.content.res.ColorStateList) -com.google.android.material.R$attr: int backgroundInsetEnd -androidx.constraintlayout.widget.R$styleable: int[] KeyTimeCycle -com.amap.api.location.CoordinateConverter: com.amap.api.location.CoordinateConverter$CoordType c -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_popupMenuStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -androidx.appcompat.R$styleable: int AppCompatTheme_panelMenuListTheme -com.google.android.material.R$styleable: int OnSwipe_dragScale -androidx.work.R$id: int info -com.turingtechnologies.materialscrollbar.R$attr: int fabSize -androidx.constraintlayout.widget.Barrier: int getMargin() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_88 -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customFloatValue -wangdaye.com.geometricweather.R$string: int content_desc_weather_alert_button -cyanogenmod.weather.RequestInfo$1: RequestInfo$1() -android.didikee.donate.R$attr: int popupWindowStyle -com.jaredrummler.android.colorpicker.R$styleable: int[] RecyclerView -com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Subtitle2 -wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullException -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -okhttp3.Cache$1: void remove(okhttp3.Request) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: long beginTime -androidx.lifecycle.AndroidViewModel -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: DailyEntityDao$Properties() -okhttp3.internal.http2.Http2: byte FLAG_END_PUSH_PROMISE -cyanogenmod.app.CMStatusBarManager: void removeTile(java.lang.String,int) -cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri FORECAST_WEATHER_URI -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: io.reactivex.internal.disposables.SequentialDisposable timed -io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_READY -com.google.android.material.R$drawable: int abc_item_background_holo_dark -com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior: AppBarLayout$ScrollingViewBehavior() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_padding_right -android.didikee.donate.R$attr: int panelBackground -androidx.preference.R$styleable: int AppCompatTheme_actionModeStyle -androidx.constraintlayout.widget.R$attr: int windowMinWidthMinor -com.google.android.material.R$styleable: int Toolbar_logoDescription -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.settings.activities.SelectProviderActivity -wangdaye.com.geometricweather.R$drawable: int notif_temp_8 -androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -okhttp3.MultipartBody: java.lang.StringBuilder appendQuotedString(java.lang.StringBuilder,java.lang.String) -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -okhttp3.CacheControl: int minFreshSeconds() -androidx.hilt.R$id: int action_text -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor GREY -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String getTo() -cyanogenmod.externalviews.KeyguardExternalView$10: void run() -androidx.lifecycle.ReportFragment: java.lang.String REPORT_FRAGMENT_TAG -androidx.appcompat.R$styleable: int[] Spinner -com.google.android.gms.common.api.GoogleApiClient: void registerConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) -androidx.constraintlayout.widget.R$color: int error_color_material_dark -androidx.preference.R$dimen: int abc_dialog_fixed_height_minor -androidx.appcompat.R$attr: int buttonPanelSideLayout -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_icon_padding -com.google.android.material.R$styleable: int[] MockView -androidx.viewpager2.R$dimen: int notification_top_pad_large_text -androidx.preference.R$id: int tag_accessibility_pane_title -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_second_track_color -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3 -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitationProbability(java.lang.Float) -androidx.constraintlayout.widget.R$attr: int triggerSlack -androidx.appcompat.R$string: int abc_searchview_description_submit -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Large -com.google.android.material.R$id: int easeInOut -okhttp3.HttpUrl: java.lang.String toString() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_caption_material -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -com.google.android.material.R$styleable: int Insets_paddingLeftSystemWindowInsets -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: android.os.IBinder asBinder() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.Function rightEnd -com.jaredrummler.android.colorpicker.R$attr: int colorControlNormal -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() -androidx.appcompat.R$attr: int navigationMode -wangdaye.com.geometricweather.R$styleable: int Chip_chipIcon -androidx.work.R$dimen: int notification_main_column_padding_top -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_barLength -com.google.android.material.R$drawable: int design_bottom_navigation_item_background -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_y_offset_non_touch -androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableItem -com.google.android.gms.internal.base.zai -androidx.constraintlayout.widget.R$attr: int iconifiedByDefault -retrofit2.BuiltInConverters$ToStringConverter: java.lang.Object convert(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int RecyclerView_stackFromEnd -com.xw.repo.bubbleseekbar.R$id: int notification_background -cyanogenmod.externalviews.ExternalViewProperties: boolean hasChanged() -retrofit2.converter.gson.GsonConverterFactory: retrofit2.converter.gson.GsonConverterFactory create(com.google.gson.Gson) -com.google.android.material.R$styleable: int Layout_android_layout_width -androidx.preference.R$attr: int arrowShaftLength -androidx.lifecycle.ViewModelProvider$NewInstanceFactory: ViewModelProvider$NewInstanceFactory() -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -cyanogenmod.app.LiveLockScreenManager: LiveLockScreenManager(android.content.Context) -cyanogenmod.app.Profile$ProfileTrigger: int getState() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void run() -android.support.v4.os.ResultReceiver$1: android.support.v4.os.ResultReceiver[] newArray(int) -com.turingtechnologies.materialscrollbar.R$integer: int mtrl_btn_anim_duration_ms -com.github.rahatarmanahmed.cpv.CircularProgressView$9: void onAnimationUpdate(android.animation.ValueAnimator) -retrofit2.BuiltInConverters$BufferingResponseBodyConverter: okhttp3.ResponseBody convert(okhttp3.ResponseBody) -androidx.vectordrawable.animated.R$id: int icon_group -android.didikee.donate.R$attr: int actionModeStyle -com.google.android.material.button.MaterialButtonToggleGroup: java.lang.CharSequence getAccessibilityClassName() -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit valueOf(java.lang.String) -cyanogenmod.weather.RequestInfo: java.lang.String access$302(cyanogenmod.weather.RequestInfo,java.lang.String) -android.didikee.donate.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -android.didikee.donate.R$styleable: int AppCompatTheme_editTextBackground -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPrePaused(android.app.Activity) -wangdaye.com.geometricweather.R$id: int activity_alert_container -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator -com.turingtechnologies.materialscrollbar.DragScrollBar: DragScrollBar(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: int Degrees -com.github.rahatarmanahmed.cpv.CircularProgressView$2: void onAnimationEnd(android.animation.Animator) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextColor -androidx.preference.R$dimen: int abc_control_corner_material -com.google.android.material.R$color: int switch_thumb_normal_material_light -androidx.transition.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.coordinatorlayout.R$drawable: R$drawable() -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getPm10Color(android.content.Context) -retrofit2.HttpServiceMethod -com.turingtechnologies.materialscrollbar.R$attr: int windowFixedHeightMajor -androidx.viewpager.R$id: int right_icon -androidx.appcompat.widget.ActivityChooserView: androidx.appcompat.widget.ActivityChooserModel getDataModel() -cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.WeatherInfo val$weatherInfo -com.amap.api.location.AMapLocationListener: void onLocationChanged(com.amap.api.location.AMapLocation) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed -com.google.android.material.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded -io.reactivex.Observable: io.reactivex.Observable wrap(io.reactivex.ObservableSource) -okio.Buffer: int selectPrefix(okio.Options,boolean) -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder sslSocketFactory(javax.net.ssl.SSLSocketFactory) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionProviderClass -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemBackground(android.graphics.drawable.Drawable) -com.google.android.material.floatingactionbutton.FloatingActionButton: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.activity.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.R$integer: int config_tooltipAnimTime -cyanogenmod.app.CustomTile: CustomTile(android.os.Parcel) -androidx.preference.R$color: int secondary_text_disabled_material_light -androidx.hilt.lifecycle.R$dimen: R$dimen() -androidx.constraintlayout.widget.R$styleable: int[] ConstraintLayout_placeholder -androidx.core.R$attr: int font -com.jaredrummler.android.colorpicker.R$attr: int actionDropDownStyle -wangdaye.com.geometricweather.R$attr: int checked_background_color -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -wangdaye.com.geometricweather.R$style: int Base_V26_Widget_AppCompat_Toolbar -com.google.android.gms.base.R$styleable: int SignInButton_colorScheme -androidx.preference.R$dimen: int abc_text_size_subtitle_material_toolbar -androidx.appcompat.widget.AppCompatButton: android.content.res.ColorStateList getSupportCompoundDrawablesTintList() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: void run() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_animate_relativeTo -wangdaye.com.geometricweather.R$attr: int allowDividerBelow -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: ObservableGroupJoin$GroupJoinDisposable(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -androidx.appcompat.R$attr: int contentInsetStartWithNavigation -com.jaredrummler.android.colorpicker.R$attr: int switchPreferenceStyle -cyanogenmod.profiles.AirplaneModeSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -androidx.appcompat.R$style: int Base_Widget_AppCompat_ButtonBar -james.adaptiveicon.R$id: int scrollIndicatorDown -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: java.lang.String DESCRIPTOR -androidx.fragment.R$drawable -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_color -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_go_search_api_material -android.didikee.donate.R$id: int disableHome -com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context) -androidx.swiperefreshlayout.R$id: int notification_background -android.didikee.donate.R$id -android.didikee.donate.R$attr: int dropdownListPreferredItemHeight -androidx.appcompat.resources.R$id: int tag_accessibility_heading -io.reactivex.Observable: io.reactivex.Single toSortedList(java.util.Comparator) -com.google.android.material.R$color: int design_default_color_primary_variant -androidx.cardview.R$attr -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult -androidx.appcompat.R$styleable: int PopupWindow_overlapAnchor -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_background -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mVersionSystemProperty -com.google.android.material.R$color: int material_on_primary_disabled -okhttp3.internal.http1.Http1Codec$AbstractSource: boolean closed -com.amap.api.location.AMapLocation: java.lang.String m -wangdaye.com.geometricweather.R$attr: int pageIndicatorColor -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: double speed -androidx.recyclerview.widget.StaggeredGridLayoutManager: StaggeredGridLayoutManager(android.content.Context,android.util.AttributeSet,int,int) -androidx.constraintlayout.widget.R$styleable: int Constraint_android_scaleX -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -com.google.android.material.R$attr: int errorContentDescription -okio.Sink -wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_ripple_color -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver -androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -okhttp3.internal.http1.Http1Codec$ChunkedSource: okhttp3.internal.http1.Http1Codec this$0 -cyanogenmod.providers.CMSettings$Global: android.net.Uri CONTENT_URI -com.xw.repo.bubbleseekbar.R$attr: int maxButtonHeight -androidx.recyclerview.R$attr: int recyclerViewStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit IN -androidx.constraintlayout.widget.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: AccuDailyResult$DailyForecasts$Day$LocalSource() -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat -okhttp3.internal.cache2.Relay: long bufferMaxSize -okhttp3.internal.cache.CacheInterceptor$1: okhttp3.internal.cache.CacheInterceptor this$0 -wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newSession() -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onError(java.lang.Throwable) -james.adaptiveicon.R$attr: int colorControlActivated -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableTop -androidx.legacy.coreutils.R$dimen: int notification_main_column_padding_top -cyanogenmod.themes.ThemeChangeRequest$Builder -androidx.appcompat.R$id: int accessibility_custom_action_4 -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixTextColor -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark_normal_background -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getRagweedDescription() -androidx.appcompat.resources.R$id: int icon -androidx.appcompat.R$styleable: int TextAppearance_android_shadowColor -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String MINUTES -com.jaredrummler.android.colorpicker.R$id: int titleDividerNoCustom -androidx.vectordrawable.R$id: int tag_accessibility_heading -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableTop -com.google.android.material.R$styleable: int[] KeyTrigger -com.turingtechnologies.materialscrollbar.R$id: int center -wangdaye.com.geometricweather.R$string: int abc_searchview_description_clear -com.google.android.material.R$attr: int errorTextAppearance -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_homeAsUpIndicator -androidx.preference.R$attr: int layout_anchorGravity -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: long serialVersionUID -com.google.android.material.R$styleable: int KeyTimeCycle_android_scaleY -androidx.appcompat.R$string: int abc_action_bar_home_description -wangdaye.com.geometricweather.R$array: int location_services -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onAttachedToWindow() -okhttp3.internal.http1.Http1Codec: int STATE_READING_RESPONSE_BODY -androidx.preference.R$attr: int key -okhttp3.internal.Util: void addSuppressedIfPossible(java.lang.Throwable,java.lang.Throwable) -androidx.appcompat.app.ToolbarActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -okio.Buffer: boolean exhausted() -com.google.android.material.R$animator: R$animator() -androidx.appcompat.widget.SearchView: int getSuggestionRowLayout() -androidx.preference.R$styleable: int Toolbar_contentInsetRight -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: java.util.List getDeviceComponentVersions() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String cityId -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge -cyanogenmod.library.R: R() -androidx.core.R$id: int title -com.bumptech.glide.R$dimen: int notification_large_icon_width -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: long unique -com.google.android.material.R$styleable: int MenuView_android_headerBackground -com.google.android.material.imageview.ShapeableImageView: void setStrokeColorResource(int) -wangdaye.com.geometricweather.R$mipmap: int ic_launcher_round -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStrokeColor -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_imageButtonStyle -com.github.rahatarmanahmed.cpv.CircularProgressView: void resetAnimation() -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setAirplaneModeEnabled_0 -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_round -james.adaptiveicon.R$styleable: int AlertDialog_showTitle -retrofit2.Utils$GenericArrayTypeImpl: java.lang.reflect.Type getGenericComponentType() -io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Runnable getWrappedRunnable() -com.google.android.material.R$style: int ShapeAppearanceOverlay_TopLeftCut -com.jaredrummler.android.colorpicker.R$attr: int logo -retrofit2.ParameterHandler$Query: ParameterHandler$Query(java.lang.String,retrofit2.Converter,boolean) -androidx.coordinatorlayout.R$id: R$id() -wangdaye.com.geometricweather.R$drawable: int weather_sleet_1 -androidx.preference.R$attr: int actionMenuTextColor -retrofit2.ParameterHandler$FieldMap: boolean encoded -wangdaye.com.geometricweather.R$styleable: int[] PreferenceFragmentCompat -com.amap.api.fence.GeoFence: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$drawable: int abc_tab_indicator_mtrl_alpha -com.bumptech.glide.request.RequestCoordinator$RequestState -androidx.vectordrawable.animated.R$dimen: int compat_button_padding_horizontal_material -cyanogenmod.util.ColorUtils: int[] SOLID_COLORS -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -okhttp3.HttpUrl: okhttp3.HttpUrl get(java.lang.String) -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: ObservableConcatWithCompletable$ConcatWithObserver(io.reactivex.Observer,io.reactivex.CompletableSource) -com.xw.repo.bubbleseekbar.R$attr: int windowFixedWidthMinor -retrofit2.OkHttpCall: boolean isExecuted() -wangdaye.com.geometricweather.R$string: int feedback_add_location_manually -androidx.constraintlayout.widget.R$anim: R$anim() -wangdaye.com.geometricweather.R$id: int widget_week_icon -cyanogenmod.profiles.ConnectionSettings$BooleanState: ConnectionSettings$BooleanState() -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode[] getDisplayModes() -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Button -androidx.preference.R$interpolator: R$interpolator() -com.google.android.material.R$layout: int test_action_chip -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen -com.google.android.material.R$color: int abc_decor_view_status_guard -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_0 -okhttp3.internal.cache.InternalCache: void remove(okhttp3.Request) -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit KGFPSQCM -androidx.customview.R$styleable: int[] GradientColor -james.adaptiveicon.R$drawable: int abc_ic_menu_share_mtrl_alpha -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeErrorColor(android.content.res.ColorStateList) -com.google.android.material.R$attr: int homeAsUpIndicator -wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_android_letterSpacing -android.didikee.donate.R$styleable: int Toolbar_android_minHeight -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -androidx.legacy.coreutils.R$styleable: int GradientColor_android_gradientRadius -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_ALARM -wangdaye.com.geometricweather.R$id: int beginning -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder validateEagerly(boolean) -com.bumptech.glide.R$attr: int font -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: AccuCurrentResult$Visibility() -androidx.appcompat.resources.R$drawable: int notification_bg_low -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder port(int) -androidx.appcompat.R$attr: int expandActivityOverflowButtonDrawable -wangdaye.com.geometricweather.R$string: int key_week_icon_mode -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_material -androidx.constraintlayout.widget.R$styleable: int ActionBar_subtitleTextStyle -okhttp3.CipherSuite: okhttp3.CipherSuite forJavaName(java.lang.String) -com.google.android.material.R$attr: int chainUseRtl -androidx.preference.R$id: int top -com.google.android.material.R$styleable: int AlertDialog_singleChoiceItemLayout -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_NoActionBar -wangdaye.com.geometricweather.R$id: int switchWidget -okhttp3.Connection: java.net.Socket socket() -okhttp3.HttpUrl$Builder: int portColonOffset(java.lang.String,int,int) -androidx.customview.R$id: int title -androidx.appcompat.R$id: int titleDividerNoCustom -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String getWeathercn() -com.xw.repo.bubbleseekbar.R$layout: int abc_activity_chooser_view_list_item -okhttp3.internal.http2.Huffman: void encode(okio.ByteString,okio.BufferedSink) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCopyDrawable -wangdaye.com.geometricweather.R$attr: int textAppearanceListItemSmall -io.reactivex.internal.util.AtomicThrowable: long serialVersionUID -wangdaye.com.geometricweather.background.service.CMWeatherProviderService -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeShareDrawable -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -com.google.android.material.R$styleable: int[] FloatingActionButton -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_titleEnabled -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource LocalSource -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_popupTheme -io.reactivex.internal.util.NotificationLite$SubscriptionNotification -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -androidx.viewpager.R$id: int right_side -androidx.preference.R$dimen: int preference_seekbar_padding_horizontal -com.amap.api.location.AMapLocation: void setLatitude(double) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_7 -androidx.appcompat.R$anim: int btn_checkbox_to_checked_icon_null_animation -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dark -com.google.android.material.R$styleable: int Snackbar_snackbarButtonStyle -wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_layout -wangdaye.com.geometricweather.R$attr: int logoDescription -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeRealFeelTemperature -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: androidx.lifecycle.Lifecycle$Event mEvent -android.didikee.donate.R$dimen: int abc_action_bar_overflow_padding_start_material -wangdaye.com.geometricweather.R$attr: int popupTheme -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_max -wangdaye.com.geometricweather.R$drawable: int notif_temp_4 -androidx.swiperefreshlayout.widget.SwipeRefreshLayout$SavedState: android.os.Parcelable$Creator CREATOR -cyanogenmod.app.CMContextConstants: java.lang.String CM_APP_SUGGEST_SERVICE -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_70 -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String READ_ALARMS_PERMISSION -io.reactivex.internal.observers.DeferredScalarObserver: DeferredScalarObserver(io.reactivex.Observer) -androidx.preference.R$attr: int searchViewStyle -com.google.android.material.bottomnavigation.BottomNavigationItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() -com.jaredrummler.android.colorpicker.R$color: int dim_foreground_disabled_material_light -androidx.core.app.RemoteActionCompatParcelizer: void write(androidx.core.app.RemoteActionCompat,androidx.versionedparcelable.VersionedParcel) -io.reactivex.exceptions.MissingBackpressureException: MissingBackpressureException() -androidx.coordinatorlayout.R$id: int tag_accessibility_actions -wangdaye.com.geometricweather.R$id: int right_side -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth -com.google.android.material.R$attr: int textAppearancePopupMenuHeader -cyanogenmod.externalviews.ExternalView: android.content.ServiceConnection mServiceConnection -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2$1 -androidx.appcompat.widget.AppCompatRatingBar -wangdaye.com.geometricweather.R$xml: int standalone_badge -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onAttach_0 -com.github.rahatarmanahmed.cpv.CircularProgressView: void setVisibility(int) -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_ttcIndex -com.google.android.material.R$styleable: int TabLayout_tabPaddingEnd -com.turingtechnologies.materialscrollbar.R$anim: int design_snackbar_in -androidx.hilt.R$anim: int fragment_close_exit -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_content_padding -cyanogenmod.power.PerformanceManager: boolean getProfileHasAppProfiles(int) -okhttp3.internal.http2.Http2Codec: java.util.List HTTP_2_SKIPPED_RESPONSE_HEADERS -com.google.android.material.R$layout: int design_layout_snackbar -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_translation_z_hovered_focused -com.google.android.material.R$attr: int radioButtonStyle -com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onNext(java.lang.Object) -retrofit2.Retrofit$Builder: java.util.List callAdapterFactories() -com.google.android.material.R$string: int path_password_eye_mask_strike_through -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String TITLE -com.xw.repo.bubbleseekbar.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$string: int mtrl_picker_day_of_week_column_header -androidx.constraintlayout.widget.R$dimen: int notification_media_narrow_margin -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_gradientRadius -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void drain() -androidx.core.app.ComponentActivity -wangdaye.com.geometricweather.db.entities.AlertEntity: void setContent(java.lang.String) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ProgressBar -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -com.google.android.material.slider.BaseSlider: void setHaloRadius(int) -com.google.android.material.R$layout: int notification_template_part_chronometer -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_item_horizontal_padding -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_section_mark -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_menu_material -okio.RealBufferedSource$1: RealBufferedSource$1(okio.RealBufferedSource) -okio.Okio$3: void flush() -wangdaye.com.geometricweather.R$attr: int listPreferredItemHeightSmall -okio.Buffer: int read(byte[]) -okhttp3.internal.platform.Platform: java.lang.String getPrefix() -android.didikee.donate.R$styleable: int SearchView_suggestionRowLayout -android.support.v4.os.IResultReceiver$Stub: java.lang.String DESCRIPTOR -com.google.android.material.R$attr: int region_widthMoreThan -io.reactivex.Observable: io.reactivex.Observable using(java.util.concurrent.Callable,io.reactivex.functions.Function,io.reactivex.functions.Consumer) -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object value -androidx.appcompat.resources.R$id: int chronometer -com.google.android.material.slider.Slider: java.lang.CharSequence getAccessibilityClassName() -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_3G -okhttp3.internal.http.HttpHeaders: java.lang.String readQuotedString(okio.Buffer) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int IconCode -android.didikee.donate.R$attr: int actionOverflowMenuStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.google.android.material.R$dimen: int mtrl_low_ripple_hovered_alpha -com.amap.api.location.AMapLocation: boolean isMock() -androidx.appcompat.R$drawable: int btn_checkbox_unchecked_mtrl -com.google.android.material.R$string: int mtrl_picker_range_header_selected -android.didikee.donate.R$style: int Base_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.R$id -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display4 -androidx.loader.R$id: int tag_unhandled_key_listeners -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType ALIYUN -com.google.android.material.transformation.TransformationChildCard -wangdaye.com.geometricweather.R$drawable: int notif_temp_59 -androidx.appcompat.R$style: int Theme_AppCompat_Light_DialogWhenLarge -com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_horizontal_material -okio.Utf8: long size(java.lang.String,int,int) -androidx.core.R$attr: int fontStyle -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: boolean active -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollHorizontalThumbDrawable -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_textOff -com.google.android.gms.internal.location.zzbe -androidx.preference.R$anim -com.amap.api.fence.GeoFence: int k -okhttp3.MediaType: java.lang.String QUOTED -okhttp3.Dispatcher: Dispatcher() -androidx.fragment.R$style: int Widget_Compat_NotificationActionText -com.bumptech.glide.load.engine.CallbackException -androidx.hilt.work.R$styleable: int GradientColor_android_centerColor -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Small -androidx.preference.SwitchPreferenceCompat -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: ObservableThrottleFirstTimed$DebounceTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker) -androidx.hilt.lifecycle.R$style: R$style() -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge -androidx.constraintlayout.utils.widget.ImageFilterButton: float getWarmth() -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_isEnabled -androidx.dynamicanimation.R$dimen: int compat_button_inset_horizontal_material -com.turingtechnologies.materialscrollbar.R$id: int scrollIndicatorUp -androidx.appcompat.R$styleable: int ActionBar_progressBarStyle -okhttp3.internal.http1.Http1Codec: int STATE_WRITING_REQUEST_BODY -androidx.appcompat.R$styleable: int ActionMode_backgroundSplit -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: int UnitType -androidx.lifecycle.MutableLiveData: void setValue(java.lang.Object) -io.reactivex.internal.disposables.ArrayCompositeDisposable: ArrayCompositeDisposable(int) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitation(java.lang.Float) -wangdaye.com.geometricweather.R$id: int fill_vertical -androidx.hilt.work.R$anim: int fragment_open_enter -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_toTopOf -androidx.preference.R$styleable: int SearchView_android_focusable -androidx.constraintlayout.widget.R$id: int parentRelative -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeColor(int) -cyanogenmod.os.Build$CM_VERSION_CODES: Build$CM_VERSION_CODES() -androidx.constraintlayout.helper.widget.Layer -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity humidity -com.google.android.material.R$drawable: int abc_ratingbar_small_material -androidx.lifecycle.ViewModelProvider$Factory: androidx.lifecycle.ViewModel create(java.lang.Class) -androidx.recyclerview.widget.GridLayoutManager: GridLayoutManager(android.content.Context,android.util.AttributeSet,int,int) -james.adaptiveicon.R$styleable: int DrawerArrowToggle_arrowHeadLength -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -androidx.appcompat.view.menu.MenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -android.didikee.donate.R$attr: int actionModeCopyDrawable -james.adaptiveicon.R$id: int alertTitle -androidx.hilt.lifecycle.R$dimen: int notification_small_icon_background_padding -james.adaptiveicon.R$styleable: int DrawerArrowToggle_gapBetweenBars -io.reactivex.internal.subscriptions.BasicQueueSubscription: void request(long) -com.jaredrummler.android.colorpicker.R$styleable: int Preference_singleLineTitle -android.didikee.donate.R$styleable: int MenuView_android_itemTextAppearance -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: ObservableSwitchMap$SwitchMapInnerObserver(io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver,long,int) -androidx.constraintlayout.widget.R$styleable: int KeyPosition_keyPositionType -androidx.appcompat.R$styleable: int Spinner_android_popupBackground -wangdaye.com.geometricweather.db.entities.AlertEntity: int getPriority() -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_logo -okio.Buffer: long readHexadecimalUnsignedLong() -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: IThermalListenerCallback$Stub$Proxy(android.os.IBinder) -androidx.activity.R$dimen: int compat_notification_large_icon_max_width -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableStart -androidx.constraintlayout.widget.R$dimen: int abc_text_size_body_2_material -okhttp3.HttpUrl: void percentDecode(okio.Buffer,java.lang.String,int,int,boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status COMPLETE -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthTextView -androidx.lifecycle.ClassesInfoCache$CallbackInfo: void invokeMethodsForEvent(java.util.List,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String temperature -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_titleCondensed -android.support.v4.app.INotificationSideChannel$Stub$Proxy: void cancelAll(java.lang.String) -cyanogenmod.providers.ThemesContract: ThemesContract() -androidx.constraintlayout.widget.R$styleable: int MotionHelper_onHide -io.reactivex.disposables.ReferenceDisposable: boolean isDisposed() -okio.Buffer: okio.Buffer writeLongLe(long) -com.google.android.material.card.MaterialCardView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -androidx.coordinatorlayout.widget.CoordinatorLayout$SavedState -androidx.work.R$id: int forever -com.amap.api.fence.DistrictItem: void writeToParcel(android.os.Parcel,int) -androidx.preference.R$style: int Widget_AppCompat_ImageButton -com.google.android.material.slider.RangeSlider: void setThumbElevationResource(int) -com.xw.repo.bubbleseekbar.R$attr: int controlBackground -androidx.preference.R$anim: int abc_grow_fade_in_from_bottom -android.didikee.donate.R$drawable: int abc_list_selector_disabled_holo_light -io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.functions.Consumer) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_iconStartPadding -cyanogenmod.weatherservice.IWeatherProviderServiceClient -wangdaye.com.geometricweather.R$styleable: int Chip_chipIconTint -androidx.recyclerview.widget.RecyclerView: void setOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -com.amap.api.location.UmidtokenInfo: java.lang.String getUmidtoken() -androidx.constraintlayout.helper.widget.Flow: void setHorizontalBias(float) -io.reactivex.Observable: void blockingForEach(io.reactivex.functions.Consumer) -android.didikee.donate.R$attr: int textAppearanceListItemSmall -com.jaredrummler.android.colorpicker.R$attr: int titleMargin -okio.RealBufferedSource$1: void close() -androidx.lifecycle.LifecycleEventObserver -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_26 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HEADSET_CONNECT_PLAYER_VALIDATOR -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: int size -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver) -androidx.preference.R$styleable: int MenuView_android_horizontalDivider -okhttp3.RealCall$1: RealCall$1(okhttp3.RealCall) -james.adaptiveicon.R$dimen: int abc_text_size_button_material -wangdaye.com.geometricweather.R$string: int material_timepicker_am -androidx.lifecycle.LifecycleRegistry: boolean mHandlingEvent -cyanogenmod.platform.R$string: R$string() -com.google.android.material.R$attr: int itemTextAppearance -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_text -com.jaredrummler.android.colorpicker.R$dimen: int notification_big_circle_margin -androidx.appcompat.R$style: int Base_V7_Theme_AppCompat -androidx.lifecycle.extensions.R$attr: int fontProviderFetchTimeout -androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$attr: int itemShapeInsetBottom -okhttp3.internal.http.CallServerInterceptor: boolean forWebSocket -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX direction -com.google.android.material.R$attr: int tint -wangdaye.com.geometricweather.R$dimen: int design_tab_max_width -wangdaye.com.geometricweather.R$id: int activity_widget_config_container -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUpdateTime(long) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_toLeftOf -com.google.android.material.card.MaterialCardView: void setRadius(float) -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setNotification(java.lang.String) -wangdaye.com.geometricweather.R$id: int widget_day_week_subtitle -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.util.Date time -androidx.lifecycle.extensions.R$id: int tag_unhandled_key_listeners -com.jaredrummler.android.colorpicker.R$color: int tooltip_background_dark -com.google.android.material.internal.CheckableImageButton$SavedState: android.os.Parcelable$Creator CREATOR -com.google.android.material.progressindicator.ProgressIndicator: int getGrowMode() -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_switchTextOff -wangdaye.com.geometricweather.R$layout: int material_clockface_textview -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: long contentLength() -io.reactivex.Observable: io.reactivex.Observable concatArrayEager(io.reactivex.ObservableSource[]) -com.google.android.material.R$style: int Widget_Design_BottomNavigationView -androidx.constraintlayout.utils.widget.ImageFilterButton: void setSaturation(float) -com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_id -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingBottom -com.google.android.material.R$attr: int tabRippleColor -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedIndex -com.turingtechnologies.materialscrollbar.R$attr: int iconTint -com.google.android.material.R$attr: int flow_lastHorizontalStyle -androidx.appcompat.R$layout: int abc_select_dialog_material -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_Snackbar -com.jaredrummler.android.colorpicker.R$styleable: int[] DialogPreference -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Borderless -okhttp3.internal.cache.CacheStrategy: okhttp3.Response cacheResponse -cyanogenmod.providers.CMSettings$Global: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) -com.google.android.material.R$id: int unlabeled -io.reactivex.exceptions.UndeliverableException: long serialVersionUID -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getShortDescription() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day -androidx.lifecycle.ProcessLifecycleOwner: android.os.Handler mHandler -androidx.lifecycle.ViewModelProvider$Factory -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: void onFailure(retrofit2.Call,java.lang.Throwable) -okio.Pipe: okio.Buffer buffer -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent -cyanogenmod.weatherservice.WeatherProviderService: java.lang.String SERVICE_META_DATA -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_editor_absoluteX -okhttp3.FormBody: java.util.List encodedValues -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_animationDuration -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_BottomSheetDialog -com.google.android.material.R$dimen: int notification_right_side_padding_top -androidx.viewpager2.R$attr: R$attr() -com.google.android.material.circularreveal.CircularRevealLinearLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -androidx.preference.R$dimen: int abc_text_size_display_4_material -wangdaye.com.geometricweather.R$attr: int bsb_bubble_text_size -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setIcon(int) -androidx.appcompat.R$styleable: int DrawerArrowToggle_arrowShaftLength -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: ObservableSampleTimed$SampleTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.constraintlayout.widget.R$attr: int layout_constraintRight_creator -cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_NETWORK_SETTINGS -cyanogenmod.externalviews.KeyguardExternalView$9 -okhttp3.internal.http2.Hpack$Writer: int headerTableSizeSetting -wangdaye.com.geometricweather.db.entities.MinutelyEntity: long getTime() -androidx.preference.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display2 -androidx.appcompat.R$attr: int autoCompleteTextViewStyle -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_2 -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_4 -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onSubscribe(io.reactivex.disposables.Disposable) -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Line2 -com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector valueOf(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginStart -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver -androidx.appcompat.widget.AppCompatSpinner: int getDropDownVerticalOffset() -wangdaye.com.geometricweather.R$attr: int buttonBarPositiveButtonStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_searchViewStyle -okhttp3.ResponseBody$BomAwareReader: boolean closed -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void dispose() -com.google.android.material.textfield.TextInputLayout: void setEndIconTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getShortUVDescription() -wangdaye.com.geometricweather.R$id: int notification_big_temp_4 -androidx.appcompat.R$style: int Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginLeft -james.adaptiveicon.R$attr: int buttonTintMode -james.adaptiveicon.R$integer -io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_singleChoiceItemLayout -wangdaye.com.geometricweather.R$color: int design_dark_default_color_secondary_variant -okhttp3.CacheControl: boolean noStore -androidx.preference.R$attr: int widgetLayout -androidx.core.widget.NestedScrollView: int getScrollRange() -io.reactivex.Observable: io.reactivex.Observable switchOnNextDelayError(io.reactivex.ObservableSource) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_25 -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_strokeWidth -androidx.lifecycle.extensions.R$dimen: int compat_notification_large_icon_max_height -android.didikee.donate.R$attr: int actionModeCloseDrawable -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeFillColor -com.google.android.material.R$attr: int layout_goneMarginStart -androidx.preference.R$attr: int switchPadding -com.google.android.material.R$color: int material_timepicker_button_background -okhttp3.Headers: okhttp3.Headers of(java.lang.String[]) -androidx.preference.R$dimen: int abc_action_bar_overflow_padding_end_material -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3 -org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Iterable,boolean) -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -androidx.lifecycle.extensions.R$string: R$string() -com.xw.repo.bubbleseekbar.R$attr: int colorButtonNormal -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherComplete() -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setAdaptiveWidthEnabled(boolean) -com.google.android.material.R$dimen: int mtrl_extended_fab_disabled_translation_z -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Badge -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String city -com.google.android.material.R$style: int TextAppearance_AppCompat_Display1 -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void cancel() -io.reactivex.internal.util.AtomicThrowable: java.lang.Throwable terminate() -okhttp3.internal.http.HttpMethod: boolean redirectsWithBody(java.lang.String) -okhttp3.RealCall$AsyncCall -cyanogenmod.weatherservice.ServiceRequestResult: int describeContents() -android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedWidthMinor -androidx.preference.R$styleable: int SwitchPreference_summaryOn -com.google.android.material.R$dimen: int abc_text_size_menu_header_material -wangdaye.com.geometricweather.R$drawable: int notif_temp_101 -androidx.constraintlayout.helper.widget.Flow: void setPadding(int) -androidx.preference.PreferenceFragmentCompat: PreferenceFragmentCompat() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf -com.turingtechnologies.materialscrollbar.R$id: int tag_unhandled_key_listeners -com.xw.repo.bubbleseekbar.R$attr: int tickMarkTintMode -androidx.loader.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.R$string: int circular_progress_view -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String DATE_CREATED -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String value -io.reactivex.Observable: io.reactivex.Observable window(java.util.concurrent.Callable,int) -okhttp3.internal.http2.Http2Writer: int maxDataLength() -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: boolean isDisposed() -cyanogenmod.app.ProfileManager: java.lang.String INTENT_ACTION_PROFILE_SELECTED -com.jaredrummler.android.colorpicker.R$drawable: int abc_tab_indicator_material -wangdaye.com.geometricweather.R$attr: int windowFixedHeightMinor -com.google.android.material.R$styleable: int RangeSlider_minSeparation -cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.CMStatusBarManager sCMStatusBarManagerInstance -com.google.android.material.R$styleable: int[] ScrimInsetsFrameLayout -com.google.android.material.R$dimen: int material_filled_edittext_font_1_3_padding_bottom -com.google.android.material.slider.BaseSlider: void setValueTo(float) -androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogStyle -androidx.appcompat.resources.R$id: int right_side -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,int) -cyanogenmod.weather.RequestInfo: void writeToParcel(android.os.Parcel,int) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Medium -james.adaptiveicon.R$color -com.turingtechnologies.materialscrollbar.R$id: int shortcut -androidx.appcompat.R$styleable: int AppCompatTheme_listPopupWindowStyle -okhttp3.internal.cache2.FileOperator: void write(long,okio.Buffer,long) -okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String etag -com.google.android.material.tabs.TabLayout: void setTabIndicatorFullWidth(boolean) -com.google.android.material.R$styleable: int Constraint_motionProgress -androidx.preference.EditTextPreferenceDialogFragmentCompat -okhttp3.internal.http.HttpDate: long MAX_DATE -com.turingtechnologies.materialscrollbar.R$id: int labeled -com.google.android.material.R$id: int bounce -androidx.constraintlayout.widget.R$color: int abc_search_url_text_selected -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayMode -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_divider -androidx.preference.R$styleable: int Preference_android_defaultValue -com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_disable_only_material_dark -okio.Buffer$1: java.lang.String toString() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_creator -com.turingtechnologies.materialscrollbar.R$dimen: int compat_notification_large_icon_max_width -cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getProfile(java.util.UUID) -androidx.recyclerview.R$styleable: int GradientColorItem_android_offset -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_framePosition -com.google.android.gms.common.ConnectionResult: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: boolean isDisposed() -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean offer(java.lang.Object,java.lang.Object) -com.google.android.material.R$color: int bright_foreground_disabled_material_dark -wangdaye.com.geometricweather.R$styleable: int[] ActionBarLayout -wangdaye.com.geometricweather.R$string: int error_icon_content_description -com.google.android.material.R$id: int scrollIndicatorUp -okhttp3.internal.http2.Http2: byte TYPE_CONTINUATION -androidx.coordinatorlayout.R$id -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: android.os.IBinder asBinder() -androidx.appcompat.R$id: int accessibility_custom_action_14 -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_title -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView_Menu -com.google.android.material.chip.Chip: void setChipStrokeColor(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$styleable: int[] StateListDrawable -wangdaye.com.geometricweather.R$array: int speed_units -androidx.coordinatorlayout.R$id: int accessibility_custom_action_16 -com.turingtechnologies.materialscrollbar.R$attr: int isLightTheme -retrofit2.ParameterHandler$HeaderMap -wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_lifted -okhttp3.Cache: void evictAll() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_GCM_SHA256 -retrofit2.BuiltInConverters$RequestBodyConverter: okhttp3.RequestBody convert(okhttp3.RequestBody) -com.xw.repo.bubbleseekbar.R$attr: int closeIcon -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removePathSegment(int) -com.google.android.gms.dynamic.RemoteCreator$RemoteCreatorException: RemoteCreator$RemoteCreatorException(java.lang.String,java.lang.Throwable) -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) -wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_small_material -androidx.constraintlayout.widget.R$styleable: int Transition_staggered -androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModelStore mViewModelStore -io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier INSTANCE -okio.Buffer: void readFrom(java.io.InputStream,long,boolean) -cyanogenmod.hardware.CMHardwareManager: int getNumGammaControls() -com.google.android.material.R$styleable: int MaterialCardView_rippleColor -androidx.transition.R$layout: R$layout() -com.jaredrummler.android.colorpicker.R$styleable: int ButtonBarLayout_allowStacking -com.google.android.material.R$style: int Animation_Design_BottomSheetDialog -com.google.android.material.R$color: int mtrl_indicator_text_color -androidx.preference.R$styleable: int AppCompatTheme_actionMenuTextColor -cyanogenmod.hardware.DisplayMode$1: DisplayMode$1() -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundTintList(android.content.res.ColorStateList) -james.adaptiveicon.R$color: int material_deep_teal_200 -org.greenrobot.greendao.AbstractDao: void updateInTx(java.lang.Iterable) -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose w -com.google.android.material.R$attr: int animationMode -okhttp3.internal.http1.Http1Codec$FixedLengthSink: void flush() -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dark -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -okhttp3.internal.http2.Http2Stream$FramingSink: void emitFrame(boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowDy -androidx.preference.R$dimen: int tooltip_y_offset_touch -cyanogenmod.weather.WeatherLocation: java.lang.String getCountry() -cyanogenmod.app.CustomTile$Builder: android.content.Context mContext -com.google.android.material.navigation.NavigationView: void setItemIconSize(int) -okhttp3.internal.http2.Http2Writer -com.google.android.material.chip.Chip: void setShowMotionSpecResource(int) -org.greenrobot.greendao.AbstractDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.externalviews.KeyguardExternalView$4: KeyguardExternalView$4(cyanogenmod.externalviews.KeyguardExternalView) -com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode valueOf(java.lang.String) -com.jaredrummler.android.colorpicker.R$attr: int submitBackground -androidx.fragment.R$layout: R$layout() -com.xw.repo.bubbleseekbar.R$attr: int actionBarPopupTheme -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_orientation -com.google.android.material.tabs.TabLayout: void setTabTextColors(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_title -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_right_mtrl_dark -androidx.coordinatorlayout.R$attr: int layout_insetEdge -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analog_light -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton -com.amap.api.location.DPoint -wangdaye.com.geometricweather.R$style -androidx.appcompat.widget.ViewStubCompat: ViewStubCompat(android.content.Context,android.util.AttributeSet,int) -okhttp3.internal.connection.RealConnection: java.lang.String NPE_THROW_WITH_NULL -com.google.android.material.R$layout: int material_clock_period_toggle_land -androidx.work.R$id: int accessibility_custom_action_5 -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.MinutelyEntity,int) -com.google.android.material.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.R$styleable: int[] CustomAttribute -androidx.swiperefreshlayout.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Light_Dialog -cyanogenmod.app.LiveLockScreenInfo: cyanogenmod.app.LiveLockScreenInfo clone() -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type PRECIPITATION -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory -android.support.v4.os.IResultReceiver$Stub -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_18 -com.turingtechnologies.materialscrollbar.R$attr: int selectableItemBackgroundBorderless -cyanogenmod.externalviews.KeyguardExternalView$8 -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: void dispose() -com.google.android.material.R$styleable: int AppCompatTheme_popupMenuStyle -com.google.android.material.R$attr: int fastScrollVerticalThumbDrawable -com.amap.api.fence.GeoFence: java.lang.String b -okhttp3.internal.http2.Http2Reader: void readHeaders(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -io.reactivex.Observable: io.reactivex.Single all(io.reactivex.functions.Predicate) -io.reactivex.Observable: io.reactivex.Observable window(java.util.concurrent.Callable) -com.google.android.material.R$attr: int colorOnSecondary -cyanogenmod.app.CustomTile$ExpandedItem$1: cyanogenmod.app.CustomTile$ExpandedItem createFromParcel(android.os.Parcel) -androidx.loader.R$styleable: int[] FontFamily -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: ObservableReplay$InnerDisposable(io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver,io.reactivex.Observer) -com.xw.repo.bubbleseekbar.R$attr: int queryHint -com.google.android.material.R$dimen: int material_emphasis_medium -wangdaye.com.geometricweather.common.basic.models.weather.Alert: Alert(android.os.Parcel) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTint -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -io.reactivex.internal.util.NotificationLite: boolean acceptFull(java.lang.Object,io.reactivex.Observer) -androidx.transition.R$id: int actions -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -com.google.android.material.button.MaterialButton: void setElevation(float) -com.google.android.material.R$layout: int abc_activity_chooser_view -com.google.android.material.R$styleable: int KeyTrigger_triggerId -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconEnabled -wangdaye.com.geometricweather.R$id: int spinner -androidx.hilt.lifecycle.R$anim: int fragment_fade_exit -wangdaye.com.geometricweather.R$string: int abc_menu_meta_shortcut_label -james.adaptiveicon.R$drawable: int abc_tab_indicator_mtrl_alpha -androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Dialog -cyanogenmod.externalviews.ExternalView$6: ExternalView$6(cyanogenmod.externalviews.ExternalView) -com.google.android.material.R$styleable: int[] RangeSlider -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric Metric -androidx.preference.R$styleable: int CompoundButton_android_button -androidx.constraintlayout.widget.R$string: int abc_action_bar_home_description -com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_label_cutout_padding -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onComplete() -wangdaye.com.geometricweather.R$id: int transition_current_scene -cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(android.os.Parcel) -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean delayError -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar_Small -androidx.recyclerview.R$styleable: int[] FontFamilyFont -androidx.appcompat.R$anim: int abc_popup_enter -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -androidx.preference.R$drawable: int tooltip_frame_dark -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_item_max_width -cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.CMWeatherManager$2 this$1 -android.didikee.donate.R$attr: int spinnerDropDownItemStyle -com.google.android.material.R$dimen: int mtrl_low_ripple_default_alpha -io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource) -androidx.transition.R$id: int transition_current_scene -androidx.appcompat.R$style: int Base_Widget_AppCompat_Spinner -androidx.constraintlayout.widget.ConstraintLayout: int getMaxWidth() -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getDisplayColorCalibration() -com.jaredrummler.android.colorpicker.R$string: int abc_capital_off -cyanogenmod.profiles.StreamSettings: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias -okhttp3.internal.http2.Http2Connection$5: java.util.List val$requestHeaders -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingRight -androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat_Dark -androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -wangdaye.com.geometricweather.R$layout: int widget_day_tile -wangdaye.com.geometricweather.R$string: int key_precipitation_unit -androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTemperature -wangdaye.com.geometricweather.background.polling.basic.UpdateService -com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context) -okio.ByteString: java.lang.String base64() -com.xw.repo.bubbleseekbar.R$drawable: int abc_action_bar_item_background_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: int status -com.google.android.material.slider.RangeSlider: void setThumbStrokeWidth(float) -com.google.android.material.R$attr: int layout_anchorGravity -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.ObservableSource first -com.google.android.material.R$attr: int fastScrollHorizontalThumbDrawable -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitation -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_maxButtonHeight -com.google.android.material.R$attr: int collapsedTitleGravity -wangdaye.com.geometricweather.R$string: int key_widget_clock_day_week -okio.Segment: boolean owner -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_percent -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String weatherSource -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$animator: int start_shine_1 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textColorSearchUrl -com.google.android.material.R$dimen: int appcompat_dialog_background_inset -com.google.android.material.R$dimen: int mtrl_btn_hovered_z -cyanogenmod.profiles.LockSettings: java.lang.String TAG -io.reactivex.Observable: io.reactivex.Observable repeat() -cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() -wangdaye.com.geometricweather.R$string: int feedback_hide_lunar -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeMinTextSize -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: java.lang.String Unit -com.google.android.material.R$styleable: int KeyTrigger_triggerSlack -com.google.android.material.chip.Chip: void setSingleLine(boolean) -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$id: int item_tag -wangdaye.com.geometricweather.R$color: int darkPrimary_2 -wangdaye.com.geometricweather.common.basic.models.weather.History: java.util.Date getDate() -android.didikee.donate.R$style: int TextAppearance_AppCompat_Subhead -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSmallPopupMenu -com.bumptech.glide.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.util.List value -james.adaptiveicon.R$attr: int popupWindowStyle -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ButtonBar -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,io.reactivex.Scheduler) -androidx.dynamicanimation.R$attr: int fontProviderFetchStrategy -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -com.google.android.material.R$styleable: int ConstraintSet_android_id -androidx.transition.R$styleable: int FontFamily_fontProviderPackage -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onTimeout(long) -androidx.coordinatorlayout.widget.CoordinatorLayout$SavedState: android.os.Parcelable$Creator CREATOR -org.greenrobot.greendao.AbstractDao: void attachEntity(java.lang.Object,java.lang.Object,boolean) -androidx.appcompat.R$attr: int titleMarginBottom -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_showTitle -com.google.android.material.textfield.TextInputLayout: void setEndIconContentDescription(int) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldIndex -com.google.android.material.R$attr: int titleMarginTop -com.amap.api.fence.GeoFence: java.util.List getDistrictItemList() -io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,io.reactivex.functions.Function) -cyanogenmod.providers.CMSettings$System: java.lang.String ASSIST_WAKE_SCREEN -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setStatusBar(java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String dept -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Content -androidx.constraintlayout.widget.R$attr: int listDividerAlertDialog -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String ID -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial Imperial -okhttp3.Headers: long byteCount() -androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedWidthMajor -okhttp3.Response: okhttp3.Headers headers() -james.adaptiveicon.R$id: int actions -okhttp3.Headers: java.lang.String toString() -wangdaye.com.geometricweather.R$dimen: int subtitle_text_size -cyanogenmod.app.CMContextConstants: CMContextConstants() -okhttp3.internal.http2.Http2Connection: boolean client -retrofit2.RequestFactory$Builder: java.lang.Class boxIfPrimitive(java.lang.Class) -com.bumptech.glide.Priority: com.bumptech.glide.Priority valueOf(java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarItemBackground -cyanogenmod.hardware.DisplayMode: int id -com.google.android.material.chip.Chip: void setIconStartPaddingResource(int) -wangdaye.com.geometricweather.settings.dialogs.ProvidersPreviewerDialog -com.google.android.material.slider.BaseSlider: void setThumbTintList(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display3 -okhttp3.internal.http1.Http1Codec$ChunkedSource: long bytesRemainingInChunk -org.greenrobot.greendao.AbstractDaoSession: java.lang.Object load(java.lang.Class,java.lang.Object) -androidx.vectordrawable.animated.R$style: int Widget_Compat_NotificationActionText -androidx.drawerlayout.R$dimen: int notification_small_icon_size_as_large -com.turingtechnologies.materialscrollbar.R$id: int actions -com.jaredrummler.android.colorpicker.R$style: int Platform_AppCompat -androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_width_overflow_material -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) -androidx.viewpager2.widget.ViewPager2: int getScrollState() -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderCerts -okhttp3.internal.http.HttpDate: java.lang.String[] BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS -com.google.android.material.R$attr: int tickColorInactive -com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog -androidx.core.app.RemoteActionCompat -cyanogenmod.providers.CMSettings$System: android.net.Uri getUriFor(java.lang.String) -androidx.appcompat.widget.SearchView: void setImeOptions(int) -com.google.android.material.snackbar.SnackbarContentLayout: android.widget.Button getActionView() -com.jaredrummler.android.colorpicker.R$attr: int listPopupWindowStyle -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_APP_SWITCH_LONG_PRESS_ACTION_VALIDATOR -com.bumptech.glide.R$styleable: int CoordinatorLayout_statusBarBackground -wangdaye.com.geometricweather.R$attr: int cornerSize -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_tileMode -androidx.constraintlayout.widget.R$styleable: int Motion_pathMotionArc -okhttp3.Cache: void update(okhttp3.Response,okhttp3.Response) -androidx.appcompat.R$id: int content -androidx.vectordrawable.R$attr: int font -com.google.android.material.R$attr: int menu -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer cloudCover -wangdaye.com.geometricweather.R$color: int abc_background_cache_hint_selector_material_light -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Bridge -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$dimen: int abc_text_size_large_material -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionBarLayout -james.adaptiveicon.R$id: int right_side -androidx.lifecycle.ProcessLifecycleOwnerInitializer: java.lang.String getType(android.net.Uri) -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endX -james.adaptiveicon.R$attr: int queryBackground -okhttp3.internal.http2.Settings: int get(int) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindDegree -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: boolean val$screenOn -androidx.recyclerview.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.R$id: int transparency_layout -com.jaredrummler.android.colorpicker.R$layout: int notification_template_custom_big -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Button -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_52 -cyanogenmod.themes.ThemeManager: android.os.Handler mHandler -androidx.activity.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter daytimeWindDegreeConverter -james.adaptiveicon.R$styleable: int ActionBar_background -androidx.preference.R$style: int Base_Animation_AppCompat_Dialog -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_title -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPressure() -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_snackbar_margin_horizontal -com.bumptech.glide.GeneratedAppGlideModule: GeneratedAppGlideModule() -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.LifecycleOwner get() -com.turingtechnologies.materialscrollbar.R$attr: int panelMenuListWidth -james.adaptiveicon.R$style: int Base_V26_Theme_AppCompat_Light -okhttp3.internal.http2.Http2Writer: okio.BufferedSink sink -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: boolean tryOnError(java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitation -com.google.android.material.R$color: int material_timepicker_clockface -cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem(android.os.Parcel) -cyanogenmod.providers.CMSettings$Secure: java.lang.String BUTTON_BACKLIGHT_TIMEOUT -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startY -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_CBC_SHA -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipCornerRadius -androidx.constraintlayout.widget.R$attr: int customDimension -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks mCallback -okio.SegmentedByteString: int segment(int) -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -androidx.constraintlayout.widget.R$styleable: int[] KeyPosition -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.jaredrummler.android.colorpicker.R$id: int switchWidget -wangdaye.com.geometricweather.R$drawable: int abc_list_pressed_holo_light -cyanogenmod.providers.CMSettings$System: long getLong(android.content.ContentResolver,java.lang.String) -okhttp3.internal.cache.CacheStrategy$Factory: CacheStrategy$Factory(long,okhttp3.Request,okhttp3.Response) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_ALARMS -com.jaredrummler.android.colorpicker.R$bool: int abc_action_bar_embed_tabs -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX -cyanogenmod.themes.ThemeManager$1$1: cyanogenmod.themes.ThemeManager$1 this$1 -okhttp3.internal.http2.Http2Connection$Builder: java.net.Socket socket -androidx.vectordrawable.animated.R$id: int notification_background -wangdaye.com.geometricweather.R$id: int decelerate -com.google.android.material.R$styleable: int AppCompatTheme_editTextColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: java.lang.String Unit -androidx.legacy.content.WakefulBroadcastReceiver -androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityPaused(android.app.Activity) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: int UnitType -androidx.appcompat.R$attr: int buttonStyle -androidx.preference.R$styleable: int Toolbar_titleMarginTop -okhttp3.internal.http2.Http2Writer: void rstStream(int,okhttp3.internal.http2.ErrorCode) -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_shapeAppearanceOverlay -com.xw.repo.bubbleseekbar.R$attr: int titleMargin -com.google.android.material.R$style: int TextAppearance_AppCompat_Body1 -android.didikee.donate.R$color: int dim_foreground_material_light -retrofit2.ParameterHandler$Path: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Link -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Caption -androidx.appcompat.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -wangdaye.com.geometricweather.R$drawable: int ic_filter_off -cyanogenmod.app.Profile$ProfileTrigger$1: cyanogenmod.app.Profile$ProfileTrigger[] newArray(int) -wangdaye.com.geometricweather.R$attr: int layout_constraintDimensionRatio -com.google.android.gms.location.DetectedActivity -wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_range -wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_chronus -androidx.appcompat.widget.AlertDialogLayout -com.turingtechnologies.materialscrollbar.R$attr: int customNavigationLayout -androidx.constraintlayout.widget.R$attr: int customColorValue -okhttp3.internal.http2.Http2Writer: void pushPromise(int,int,java.util.List) -okio.Segment: void writeTo(okio.Segment,int) -androidx.loader.R$id: int text -com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_enforceTextAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_buttonPanelSideLayout -androidx.hilt.lifecycle.R$id: int action_image -com.jaredrummler.android.colorpicker.R$anim: int abc_slide_out_top -wangdaye.com.geometricweather.R$xml: int icon_provider_drawable_filter -com.google.android.material.R$styleable: int Tooltip_android_minHeight -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: void setValue(java.lang.String) -okhttp3.internal.cache.DiskLruCache: java.io.File directory -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_DropDown -wangdaye.com.geometricweather.R$string: int sensible_temp -wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: DaoMaster$DevOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory) -androidx.appcompat.resources.R$styleable: int[] FontFamilyFont -android.didikee.donate.R$styleable -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Toolbar -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: int bufferSize -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_dialog -com.github.rahatarmanahmed.cpv.CircularProgressView$3 -cyanogenmod.app.Profile$NotificationLightMode: int DISABLE -com.jaredrummler.android.colorpicker.R$style -androidx.hilt.work.R$id: int accessibility_custom_action_28 -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -com.turingtechnologies.materialscrollbar.R$anim: int abc_popup_exit -com.jaredrummler.android.colorpicker.R$color: int primary_text_default_material_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: void setValue(java.util.List) -com.turingtechnologies.materialscrollbar.R$id: int reservedNamedId -okio.Buffer: okio.Buffer write(okio.ByteString) -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.functions.Function mapper -com.jaredrummler.android.colorpicker.R$styleable: int[] LinearLayoutCompat_Layout -com.baidu.location.Poi: android.os.Parcelable$Creator CREATOR -androidx.recyclerview.R$id: R$id() -okio.Pipe: boolean sinkClosed -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Light -androidx.appcompat.R$styleable: int TextAppearance_android_textSize -androidx.preference.R$styleable: int PreferenceGroup_initialExpandedChildrenCount -wangdaye.com.geometricweather.R$id: int row_index_key -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.ObservableSource[],io.reactivex.functions.Function,int) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstHorizontalStyle -androidx.lifecycle.extensions.R$styleable: int FragmentContainerView_android_tag -com.xw.repo.BubbleSeekBar: int getProgress() -cyanogenmod.providers.CMSettings$System: java.lang.String HEADSET_CONNECT_PLAYER -io.reactivex.internal.disposables.SequentialDisposable: SequentialDisposable() -com.google.android.material.R$styleable: int TabItem_android_layout -wangdaye.com.geometricweather.R$styleable: int[] TextInputEditText -androidx.preference.R$attr: int preferenceStyle -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle -wangdaye.com.geometricweather.R$string: int abc_action_menu_overflow_description -androidx.fragment.R$id: int accessibility_custom_action_23 -wangdaye.com.geometricweather.R$attr: int expandedTitleMargin -wangdaye.com.geometricweather.R$drawable: int shortcuts_rain -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_DES_CBC_SHA -wangdaye.com.geometricweather.R$drawable: int notif_temp_118 -james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.lifecycle.LiveData: int START_VERSION -cyanogenmod.alarmclock.ClockContract: java.lang.String AUTHORITY -androidx.constraintlayout.utils.widget.ImageFilterView: void setSaturation(float) -androidx.drawerlayout.widget.DrawerLayout$SavedState -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_orientation -wangdaye.com.geometricweather.R$string: int settings_summary_appearance -com.google.gson.stream.JsonWriter: java.lang.String[] HTML_SAFE_REPLACEMENT_CHARS -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelMenuListTheme -com.jaredrummler.android.colorpicker.R$styleable: int[] SearchView -com.google.android.material.R$dimen: int mtrl_btn_z -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver(io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: io.reactivex.internal.disposables.DisposableContainer tasks -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_height -james.adaptiveicon.R$attr: int color -androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionDuration(int) -androidx.activity.R$styleable: int FontFamilyFont_android_fontStyle -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog -cyanogenmod.app.CustomTile$ExpandedStyle$1 -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$styleable: int TextAppearance_fontVariationSettings -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl access$000(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider) -com.jaredrummler.android.colorpicker.R$attr: int buttonIconDimen -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_UPDATE_TIME -androidx.preference.R$styleable: int MenuView_android_headerBackground -androidx.preference.R$id: int action_bar_root -android.didikee.donate.R$drawable: int abc_btn_check_material -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipSurfaceColor -androidx.preference.R$styleable: int[] Preference -android.didikee.donate.R$style: int Widget_AppCompat_Light_ListPopupWindow -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: java.util.ArrayDeque windows -com.xw.repo.bubbleseekbar.R$attr: int actionViewClass -androidx.fragment.R$dimen: int notification_subtext_size -com.google.android.material.R$id: int edit_query -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_5 -android.didikee.donate.R$attr: int tickMarkTintMode -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onNegativeCross -com.jaredrummler.android.colorpicker.R$attr: int contentDescription -cyanogenmod.weather.RequestInfo$Builder: int mTempUnit -okhttp3.internal.http.BridgeInterceptor: okhttp3.CookieJar cookieJar -com.google.android.material.R$styleable: int FloatingActionButton_pressedTranslationZ -wangdaye.com.geometricweather.R$string: int wind_8 -com.amap.api.location.AMapLocationClientOption: boolean isKillProcess() -wangdaye.com.geometricweather.R$string: int key_click_widget_to_refresh -cyanogenmod.weather.RequestInfo: int TYPE_LOOKUP_CITY_NAME_REQ -com.turingtechnologies.materialscrollbar.R$attr: int chipStartPadding -com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.String,java.lang.Throwable) -androidx.constraintlayout.widget.R$id: int ignore -androidx.vectordrawable.R$styleable: int GradientColor_android_startX -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: int bufferSize -com.baidu.location.e.n: n(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setWeatherCondition(int) -androidx.constraintlayout.widget.Group: void setVisibility(int) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleTintMode -androidx.swiperefreshlayout.R$dimen: int notification_subtext_size -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView_DropDown -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setCircularRevealScrimColor(int) -com.jaredrummler.android.colorpicker.R$attr: int dividerPadding -io.reactivex.Observable: io.reactivex.Observable buffer(int) -com.turingtechnologies.materialscrollbar.R$layout: int abc_popup_menu_item_layout -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents -io.reactivex.internal.disposables.EmptyDisposable: java.lang.Object poll() -com.xw.repo.bubbleseekbar.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.R$drawable: int ic_settings -androidx.hilt.R$drawable: int notification_bg_normal -androidx.appcompat.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder allEnabledTlsVersions() -androidx.preference.R$style: int Theme_AppCompat_DayNight -wangdaye.com.geometricweather.R$array: int distance_unit_voices -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_width_minor -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCity -androidx.viewpager2.R$string: R$string() -androidx.vectordrawable.animated.R$string: R$string() -androidx.coordinatorlayout.R$layout: int notification_action -com.turingtechnologies.materialscrollbar.R$styleable: int[] FloatingActionButton_Behavior_Layout -androidx.appcompat.R$attr: int theme -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String insee -com.google.android.material.R$drawable: int abc_textfield_activated_mtrl_alpha -androidx.work.R$id: int accessibility_custom_action_30 -retrofit2.Invocation: retrofit2.Invocation of(java.lang.reflect.Method,java.util.List) -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Counter -com.turingtechnologies.materialscrollbar.R$attr: int tabGravity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getLevel() -androidx.constraintlayout.widget.R$color: int abc_decor_view_status_guard_light -retrofit2.KotlinExtensions$suspendAndThrow$1: int label -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String quality -androidx.fragment.app.FragmentActivity -androidx.hilt.R$id: int accessibility_custom_action_13 -androidx.constraintlayout.widget.R$id: R$id() -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.database.Database db -james.adaptiveicon.R$styleable: int ActionBar_backgroundStacked -wangdaye.com.geometricweather.R$attr: int hintEnabled -androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedHeightMajor -com.google.android.material.R$dimen: int abc_dialog_list_padding_top_no_title -android.didikee.donate.R$attr: int alertDialogStyle -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -wangdaye.com.geometricweather.R$attr: int trackTint -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean getAddress_detail() -james.adaptiveicon.R$color: int primary_material_light -androidx.constraintlayout.motion.widget.MotionLayout: float getVelocity() -com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_icon -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_warmth -io.reactivex.exceptions.CompositeException: java.util.List exceptions -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -androidx.transition.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$attr: int suggestionRowLayout -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf -android.didikee.donate.R$style: int TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_android_maxWidth -androidx.preference.R$styleable: int AppCompatTheme_selectableItemBackground -retrofit2.HttpServiceMethod: retrofit2.CallAdapter createCallAdapter(retrofit2.Retrofit,java.lang.reflect.Method,java.lang.reflect.Type,java.lang.annotation.Annotation[]) -com.bumptech.glide.R$id: int left -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -androidx.constraintlayout.widget.R$id: int action_mode_bar -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_buttonGravity -wangdaye.com.geometricweather.R$attr: int bsb_always_show_bubble -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_appBar -wangdaye.com.geometricweather.R$attr: int counterMaxLength -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense -androidx.constraintlayout.widget.R$styleable: int MotionLayout_currentState -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemTextAppearance -okhttp3.internal.http2.Http2Connection$6 -androidx.appcompat.R$attr: int buttonIconDimen -cyanogenmod.app.Profile$TriggerType: int WIFI -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_text_size -io.reactivex.Observable: io.reactivex.Observable concatMapEager(io.reactivex.functions.Function,int,int) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Button -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_left_mtrl_light -james.adaptiveicon.R$id: int line1 -androidx.appcompat.R$id: int search_bar -androidx.vectordrawable.animated.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$attr: int listItemLayout -com.google.android.material.R$dimen: int mtrl_extended_fab_bottom_padding -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -retrofit2.KotlinExtensions -okhttp3.Dispatcher: boolean $assertionsDisabled -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_color -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_min_width_minor -androidx.preference.R$styleable: int TextAppearance_android_textColor -wangdaye.com.geometricweather.R$xml: int perference_unit -cyanogenmod.profiles.AirplaneModeSettings: void setValue(int) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupMenu -com.turingtechnologies.materialscrollbar.R$attr: int hideMotionSpec -com.xw.repo.bubbleseekbar.R$id: int bottom_sides -wangdaye.com.geometricweather.R$attr: int passwordToggleContentDescription -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_xml -com.google.android.material.R$attr: int cardPreventCornerOverlap -io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,io.reactivex.Scheduler) -james.adaptiveicon.R$string: int abc_activity_chooser_view_see_all -com.google.android.material.R$animator: int mtrl_extended_fab_state_list_animator -james.adaptiveicon.R$attr: int checkedTextViewStyle -com.xw.repo.bubbleseekbar.R$layout: int abc_tooltip -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupWindow -cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup[] getNotificationGroups() -androidx.constraintlayout.widget.R$dimen: int compat_button_padding_vertical_material -androidx.transition.R$layout: int notification_template_part_time -androidx.dynamicanimation.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig minutelyEntityDaoConfig -io.reactivex.internal.util.NotificationLite: boolean accept(java.lang.Object,org.reactivestreams.Subscriber) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Filter -okhttp3.internal.connection.RouteException: RouteException(java.io.IOException) -wangdaye.com.geometricweather.R$styleable: int ListPreference_entryValues -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable -com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_padding_vertical_material -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: int getMarginTop() -cyanogenmod.weather.WeatherInfo: double mWindDirection -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_set -wangdaye.com.geometricweather.R$attr: int switchPreferenceCompatStyle -com.google.gson.internal.LazilyParsedNumber: java.lang.String value -wangdaye.com.geometricweather.main.MainActivity: MainActivity() -org.greenrobot.greendao.AbstractDao: java.lang.Object readEntity(android.database.Cursor,int) -com.turingtechnologies.materialscrollbar.R$attr: int tabContentStart -androidx.appcompat.R$drawable: int abc_list_selector_disabled_holo_light -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_CBC_SHA -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.google.android.material.R$dimen: int disabled_alpha_material_dark -wangdaye.com.geometricweather.R$layout: int select_dialog_singlechoice_material -androidx.appcompat.widget.AppCompatCheckBox: void setSupportButtonTintList(android.content.res.ColorStateList) -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onAttach() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: int UnitType -androidx.lifecycle.ProcessLifecycleOwner: void activityStopped() -androidx.core.R$id: int line1 -cyanogenmod.power.IPerformanceManager$Stub$Proxy -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: IWeatherProviderServiceClient$Stub$Proxy(android.os.IBinder) -androidx.preference.R$layout: int abc_select_dialog_material -androidx.work.impl.diagnostics.DiagnosticsReceiver -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRealFeelShaderTemperature -androidx.preference.R$drawable: int abc_ic_voice_search_api_material -okhttp3.internal.http2.Http2Reader: boolean nextFrame(boolean,okhttp3.internal.http2.Http2Reader$Handler) -wangdaye.com.geometricweather.R$id: int widget_clock_day_center -android.didikee.donate.R$dimen: int abc_dialog_fixed_height_minor -androidx.constraintlayout.widget.R$attr: int numericModifiers -androidx.constraintlayout.widget.R$attr: int commitIcon -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: io.reactivex.disposables.CompositeDisposable compositeDisposable -androidx.appcompat.widget.SwitchCompat: boolean getShowText() -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_text_size -com.amap.api.location.AMapLocation: boolean A -io.reactivex.internal.operators.observable.ObserverResourceWrapper: ObserverResourceWrapper(io.reactivex.Observer) -wangdaye.com.geometricweather.R$string: int mtrl_picker_confirm -okio.Buffer$1: void flush() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Subtitle2 -androidx.constraintlayout.helper.widget.Flow: void setVerticalStyle(int) -com.turingtechnologies.materialscrollbar.R$styleable: int FlowLayout_lineSpacing -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -retrofit2.RequestBuilder: java.lang.String PATH_SEGMENT_ALWAYS_ENCODE_SET -com.turingtechnologies.materialscrollbar.R$attr: int textEndPadding -androidx.lifecycle.LiveData$AlwaysActiveObserver: LiveData$AlwaysActiveObserver(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) -com.google.android.material.R$styleable: int ColorStateListItem_android_color -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -cyanogenmod.weatherservice.IWeatherProviderService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -retrofit2.ParameterHandler$FieldMap: ParameterHandler$FieldMap(java.lang.reflect.Method,int,retrofit2.Converter,boolean) -wangdaye.com.geometricweather.R$attr: int iconSpaceReserved -okhttp3.internal.ws.RealWebSocket: java.util.Random random -okhttp3.internal.tls.DistinguishedNameParser: char getUTF8() -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String EXTRA_ENABLED -james.adaptiveicon.R$styleable: int MenuItem_showAsAction -retrofit2.CallAdapter$Factory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -okhttp3.MediaType: java.lang.String subtype() -cyanogenmod.weather.WeatherInfo: WeatherInfo(android.os.Parcel) -cyanogenmod.app.IProfileManager: boolean removeProfile(cyanogenmod.app.Profile) -okhttp3.HttpUrl: java.lang.String redact() -okhttp3.internal.Util: java.nio.charset.Charset ISO_8859_1 -androidx.hilt.work.R$dimen: int compat_notification_large_icon_max_width -androidx.dynamicanimation.R$drawable: int notification_tile_bg -cyanogenmod.app.Profile: int compareTo(java.lang.Object) -okhttp3.CacheControl: int maxStaleSeconds() -com.amap.api.fence.DistrictItem: void setDistrictName(java.lang.String) -androidx.preference.R$id: int tabMode -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_NOTIFICATIONS -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_disabled_material_light -android.didikee.donate.R$style: int Platform_V25_AppCompat -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_bias -androidx.viewpager2.R$dimen: int notification_large_icon_height -androidx.recyclerview.R$id: int right_icon -wangdaye.com.geometricweather.R$id: int asConfigured -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap -androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_material -okio.BufferedSink: okio.BufferedSink writeHexadecimalUnsignedLong(long) -com.bumptech.glide.integration.okhttp.R$string: R$string() -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_showDividers -cyanogenmod.providers.CMSettings$Secure: java.lang.String CM_SETUP_WIZARD_COMPLETED -com.google.android.material.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitationDuration() -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int SNOOZE_STATE -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: void setValue(java.lang.String) -androidx.viewpager2.R$attr: int fastScrollEnabled -com.google.android.material.R$attr: int prefixTextAppearance -wangdaye.com.geometricweather.R$color: int colorAccent_light -cyanogenmod.app.IProfileManager: void updateNotificationGroup(android.app.NotificationGroup) -androidx.lifecycle.ClassesInfoCache$CallbackInfo: java.util.Map mEventToHandlers -com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingLeft -androidx.preference.R$styleable: int ColorStateListItem_alpha -james.adaptiveicon.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf -okhttp3.internal.ws.RealWebSocket: boolean writeOneFrame() -androidx.constraintlayout.widget.R$attr: int waveShape -com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_showOldColor -retrofit2.converter.gson.package-info -com.google.android.material.chip.Chip: void setIconStartPadding(float) -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -androidx.preference.internal.PreferenceImageView: int getMaxWidth() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dividerVertical -cyanogenmod.providers.CMSettings$NameValueCache: CMSettings$NameValueCache(java.lang.String,android.net.Uri,java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display4 -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_1 -okio.Okio: okio.Sink sink(java.io.OutputStream,okio.Timeout) -com.google.android.material.R$string: int mtrl_picker_confirm -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnLongClickIntent(android.app.PendingIntent) -org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Object[]) -cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder access$202(cyanogenmod.externalviews.KeyguardExternalView,android.os.IBinder) -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String getFrom() -okio.Buffer: java.io.InputStream inputStream() -okhttp3.MediaType: java.lang.String type -wangdaye.com.geometricweather.common.basic.models.weather.Alert: Alert(long,java.util.Date,long,java.lang.String,java.lang.String,java.lang.String,int,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric Metric -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintEnd_toStartOf -com.google.android.gms.base.R$drawable: R$drawable() -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionViewClass -androidx.constraintlayout.widget.R$layout: int abc_action_menu_item_layout -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider valueOf(java.lang.String) -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy -android.didikee.donate.R$style: int Base_Widget_AppCompat_ProgressBar -okhttp3.Cookie: java.lang.String name() -io.reactivex.internal.util.VolatileSizeArrayList: boolean add(java.lang.Object) -androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_corner_radius_material -com.google.android.material.checkbox.MaterialCheckBox -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type RIGHT -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_24 -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: int requestFusion(int) -com.bumptech.glide.R$styleable: int FontFamilyFont_fontStyle -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Empty -androidx.preference.R$drawable: int abc_ratingbar_indicator_material -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float o3 -cyanogenmod.weather.WeatherLocation: WeatherLocation() -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mPostal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String getValue() -androidx.fragment.app.FragmentManager -io.reactivex.Observable: io.reactivex.Observable buffer(int,int) -androidx.appcompat.R$color: int switch_thumb_normal_material_dark -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: int getCollapsedPadding() -com.google.android.material.appbar.CollapsingToolbarLayout: int getScrimAlpha() -androidx.work.R$styleable: int FontFamilyFont_fontStyle -androidx.appcompat.widget.Toolbar: void setCollapseContentDescription(int) -io.reactivex.internal.subscriptions.BasicQueueSubscription -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_GCM_SHA256 -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeAppearance -com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_Tooltip -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicBoolean stopWindows -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -androidx.core.R$id: int icon -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getRainPrecipitationProbability() -wangdaye.com.geometricweather.R$drawable: int notif_temp_96 -wangdaye.com.geometricweather.R$id: int container_main_first_card_header -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindChillTemperature -okhttp3.Address: okhttp3.CertificatePinner certificatePinner -androidx.appcompat.R$styleable: int GradientColor_android_centerColor -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_keyline -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar_Small -cyanogenmod.providers.CMSettings$System: java.lang.String HIGH_TOUCH_SENSITIVITY_ENABLE -com.google.android.material.R$attr: int targetId -wangdaye.com.geometricweather.R$id: int tag_accessibility_actions -wangdaye.com.geometricweather.R$styleable: int Chip_shapeAppearance -wangdaye.com.geometricweather.R$id: int item_about_link_icon -androidx.hilt.lifecycle.R$attr: R$attr() -androidx.appcompat.R$style: int Widget_AppCompat_Light_ListView_DropDown -android.didikee.donate.R$dimen: int abc_text_size_subtitle_material_toolbar -wangdaye.com.geometricweather.R$layout: int abc_action_mode_close_item_material -com.amap.api.location.AMapLocationClientOption: long getHttpTimeOut() -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type WIND -androidx.appcompat.widget.ActionBarOverlayLayout -androidx.recyclerview.R$string: R$string() -com.jaredrummler.android.colorpicker.R$dimen: int preference_icon_minWidth -com.google.android.material.R$color: int background_floating_material_light -okhttp3.Cookie: okhttp3.Cookie parse(okhttp3.HttpUrl,java.lang.String) -wangdaye.com.geometricweather.db.entities.DaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) -james.adaptiveicon.R$attr: int divider -cyanogenmod.providers.CMSettings$Secure: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) -androidx.constraintlayout.widget.R$color: int material_grey_50 -androidx.dynamicanimation.R$dimen: int notification_action_text_size -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void dispose() -okhttp3.internal.http.RealResponseBody: long contentLength() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias -retrofit2.adapter.rxjava2.RxJava2CallAdapter: io.reactivex.Scheduler scheduler -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onSuccess(java.lang.Object) -androidx.vectordrawable.animated.R$id: int notification_main_column -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_RECENT_BUTTON -com.google.android.material.R$attr: int cornerFamily -retrofit2.http.GET: java.lang.String value() -okhttp3.OkHttpClient: java.net.ProxySelector proxySelector() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onComplete() -com.jaredrummler.android.colorpicker.R$layout: int notification_template_icon_group -androidx.constraintlayout.widget.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation RIGHT -androidx.constraintlayout.widget.R$id: int scrollIndicatorUp -com.google.android.gms.location.zzbd: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$animator: int mtrl_fab_transformation_sheet_collapse_spec -wangdaye.com.geometricweather.R$dimen: int material_clock_hand_padding -wangdaye.com.geometricweather.R$styleable: int Constraint_android_transformPivotX -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: boolean requestDismiss() -wangdaye.com.geometricweather.R$attr: int titleTextAppearance -android.didikee.donate.R$styleable: int ViewBackgroundHelper_backgroundTintMode -okhttp3.internal.http.RetryAndFollowUpInterceptor -io.reactivex.internal.util.HashMapSupplier: java.lang.Object call() -retrofit2.Utils: java.lang.reflect.Type getSupertype(java.lang.reflect.Type,java.lang.Class,java.lang.Class) -androidx.appcompat.widget.AppCompatEditText: android.text.Editable getText() -android.support.v4.os.ResultReceiver$MyResultReceiver: android.support.v4.os.ResultReceiver this$0 -androidx.preference.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -com.google.android.material.R$attr: int colorOnError -com.google.android.material.R$id: int search_badge -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionListener(androidx.constraintlayout.motion.widget.MotionLayout$TransitionListener) -com.turingtechnologies.materialscrollbar.R$color: int abc_hint_foreground_material_light -wangdaye.com.geometricweather.R$layout: int item_alert -androidx.preference.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_horizontal_padding -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode WRITE_AHEAD_LOGGING -com.google.android.material.R$drawable: int mtrl_dialog_background -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light -com.xw.repo.bubbleseekbar.R$attr: int measureWithLargestChild -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat_Light -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast -androidx.preference.R$styleable: int ListPreference_entryValues -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onComplete() -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_track_size -wangdaye.com.geometricweather.R$string: int settings_title_notification_background -okhttp3.internal.Util: java.lang.String hostHeader(okhttp3.HttpUrl,boolean) -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_android_entries -okio.BufferedSink: okio.BufferedSink write(byte[],int,int) -androidx.viewpager.widget.ViewPager: int getClientWidth() -androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$styleable: int AlertDialog_listItemLayout -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Small -com.jaredrummler.android.colorpicker.R$styleable: int[] ListPopupWindow -androidx.constraintlayout.widget.R$anim: int abc_fade_out -wangdaye.com.geometricweather.R$style: R$style() -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupWindow -com.google.gson.stream.JsonReader: int peekedNumberLength -okhttp3.internal.http2.Hpack$Writer: Hpack$Writer(okio.Buffer) -com.google.android.material.R$attr: int actionDropDownStyle -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain1h -androidx.work.impl.workers.CombineContinuationsWorker -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_Icon -androidx.loader.R$drawable: int notification_bg_low_pressed -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -com.google.android.material.card.MaterialCardView: int getContentPaddingLeft() -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: io.reactivex.MaybeSource other -com.jaredrummler.android.colorpicker.R$attr: int allowDividerAbove -james.adaptiveicon.R$anim: int abc_popup_enter -androidx.vectordrawable.R$styleable: int GradientColor_android_type -com.google.gson.stream.JsonReader: void endObject() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX() -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: java.lang.String type -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorPrimary -cyanogenmod.app.BaseLiveLockManagerService: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherText -okhttp3.internal.http2.Settings: int set -com.google.android.material.R$dimen: int abc_action_button_min_height_material -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_btn_unelevated_state_list_anim -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_dither -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder maxAge(int,java.util.concurrent.TimeUnit) -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: ObservableRangeLong$RangeDisposable(io.reactivex.Observer,long,long) -androidx.appcompat.R$styleable: int PopupWindowBackgroundState_state_above_anchor -cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemTitle(java.lang.String) -com.google.android.material.imageview.ShapeableImageView -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit F -wangdaye.com.geometricweather.background.polling.permanent.observer.FakeForegroundService: FakeForegroundService() -androidx.core.R$dimen: int notification_subtext_size -androidx.activity.R$styleable: int FontFamilyFont_android_fontWeight -androidx.appcompat.R$attr: int colorButtonNormal -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_showText -cyanogenmod.weather.WeatherInfo$DayForecast$1: java.lang.Object createFromParcel(android.os.Parcel) -james.adaptiveicon.R$color: int tooltip_background_light -okhttp3.internal.http.HttpMethod: boolean permitsRequestBody(java.lang.String) -okhttp3.internal.http2.Http2Connection: void start(boolean) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight -wangdaye.com.geometricweather.R$dimen: int design_tab_scrollable_min_width -cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri APPLIED_URI -androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_Switch -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontStyle -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: ObservableDoFinally$DoFinallyObserver(io.reactivex.Observer,io.reactivex.functions.Action) -wangdaye.com.geometricweather.R$attr: int percentHeight -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life life -okhttp3.internal.http2.Header$Listener -androidx.lifecycle.extensions.R$layout: int notification_template_custom_big -com.xw.repo.bubbleseekbar.R$attr: int switchMinWidth -androidx.dynamicanimation.R$styleable: int[] FontFamily -okhttp3.internal.cache.DiskLruCache$Entry: boolean readable -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver -androidx.appcompat.R$styleable: int Toolbar_contentInsetStart -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setO3(java.lang.Float) -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_android_layout -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onDetach() -com.google.android.gms.common.api.UnsupportedApiCallException: com.google.android.gms.common.Feature zza -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleVerticalOffset -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_background -com.turingtechnologies.materialscrollbar.R$layout: int abc_search_view -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: long serialVersionUID -com.google.android.material.R$attr: int state_above_anchor -androidx.appcompat.widget.SwitchCompat: android.graphics.drawable.Drawable getTrackDrawable() -okhttp3.Challenge: Challenge(java.lang.String,java.util.Map) -io.reactivex.internal.queue.SpscArrayQueue: void clear() -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onTimeout(long) -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: void setLineColor(int) -androidx.constraintlayout.widget.R$attr: int flow_horizontalAlign -okhttp3.internal.http.RealInterceptorChain: RealInterceptorChain(java.util.List,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http.HttpCodec,okhttp3.internal.connection.RealConnection,int,okhttp3.Request,okhttp3.Call,okhttp3.EventListener,int,int,int) -androidx.appcompat.widget.ActionBarContextView: java.lang.CharSequence getSubtitle() -okio.RealBufferedSource$1: int available() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm10() -wangdaye.com.geometricweather.db.entities.DailyEntity: DailyEntity() -okhttp3.internal.cache.DiskLruCache: long nextSequenceNumber -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.disposables.Disposable upstream -androidx.appcompat.R$dimen: int abc_edit_text_inset_horizontal_material -androidx.appcompat.R$drawable: int abc_ratingbar_material -androidx.constraintlayout.widget.R$dimen: int tooltip_horizontal_padding -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_stroke_size -wangdaye.com.geometricweather.R$id: int chip_group -com.bumptech.glide.R$attr: int coordinatorLayoutStyle -com.google.android.material.circularreveal.CircularRevealLinearLayout: int getCircularRevealScrimColor() -com.jaredrummler.android.colorpicker.R$attr: int logoDescription -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeWindChillTemperature() -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.google.android.material.textfield.TextInputLayout: void setEndIconTintMode(android.graphics.PorterDuff$Mode) -com.turingtechnologies.materialscrollbar.R$attr: int actionBarSize -androidx.constraintlayout.widget.R$styleable: int KeyCycle_wavePeriod -wangdaye.com.geometricweather.R$attr: int itemFillColor -android.didikee.donate.R$drawable: int abc_ic_star_black_48dp -okhttp3.OkHttpClient: java.net.ProxySelector proxySelector -androidx.appcompat.R$id: int up -androidx.legacy.coreutils.R$layout -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -com.google.android.material.R$style: int Base_Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.R$styleable: int ListPreference_useSimpleSummaryProvider -cyanogenmod.externalviews.KeyguardExternalView$2 -com.google.android.material.slider.RangeSlider: int getLabelBehavior() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitation -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_left_mtrl_dark -androidx.loader.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.R$attr: int toolbarStyle -androidx.constraintlayout.widget.R$bool: R$bool() -androidx.hilt.R$style: int TextAppearance_Compat_Notification_Line2 -com.google.android.material.R$dimen: int disabled_alpha_material_light -okhttp3.internal.ws.RealWebSocket: boolean close(int,java.lang.String,long) -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Subtitle2 -com.google.android.gms.base.R$attr: int buttonSize -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level HEADERS -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getAqiIndex() -androidx.constraintlayout.widget.R$styleable: int ActionBar_background -androidx.preference.R$attr: int alpha -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: java.util.concurrent.TimeUnit unit -androidx.constraintlayout.widget.R$attr: int switchStyle -androidx.appcompat.widget.LinearLayoutCompat: void setOrientation(int) -retrofit2.RequestFactory$Builder: okhttp3.MediaType contentType -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean mShouldShow -androidx.recyclerview.R$id: int chronometer -com.turingtechnologies.materialscrollbar.R$id -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: FlowableOnBackpressureDrop$BackpressureDropSubscriber(org.reactivestreams.Subscriber,io.reactivex.functions.Consumer) -wangdaye.com.geometricweather.R$drawable: int notif_temp_125 -james.adaptiveicon.R$attr: int textAppearancePopupMenuHeader -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleTitle -androidx.core.R$id: int text2 -james.adaptiveicon.R$dimen: int highlight_alpha_material_colored -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState FINISHED -androidx.preference.R$style: int ThemeOverlay_AppCompat_ActionBar -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_Chip -retrofit2.Call: boolean isExecuted() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.AlertEntity) -cyanogenmod.profiles.AirplaneModeSettings$1: cyanogenmod.profiles.AirplaneModeSettings createFromParcel(android.os.Parcel) -androidx.appcompat.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -android.didikee.donate.R$styleable: int[] ViewBackgroundHelper -wangdaye.com.geometricweather.R$styleable: int[] MaterialCheckBox -wangdaye.com.geometricweather.R$string: int common_google_play_services_enable_title -androidx.hilt.work.R$id: int text -androidx.appcompat.R$styleable: int ActionMode_titleTextStyle -cyanogenmod.providers.CMSettings$1 -io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription INSTANCE -okhttp3.MultipartBody: okhttp3.MediaType ALTERNATIVE -androidx.constraintlayout.widget.R$attr: int titleMargin -com.github.rahatarmanahmed.cpv.CircularProgressView$6 -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void innerError(io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver,java.lang.Throwable) -com.google.android.material.R$styleable: int FontFamily_fontProviderQuery -cyanogenmod.weather.WeatherInfo: WeatherInfo() -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView -cyanogenmod.app.CustomTile: CustomTile() -cyanogenmod.weather.WeatherLocation: java.lang.String getCountryId() -com.xw.repo.bubbleseekbar.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setPrefixString(java.lang.String) -androidx.hilt.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.R$styleable: int Spinner_android_entries -androidx.constraintlayout.widget.R$styleable: int[] View -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature temperature -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean isEntityUpdateable() -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_inverse_material_light -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontWeight -androidx.lifecycle.SavedStateViewModelFactory: java.lang.reflect.Constructor findMatchingConstructor(java.lang.Class,java.lang.Class[]) -com.xw.repo.bubbleseekbar.R$attr: int allowStacking -okio.RealBufferedSource: int read(byte[]) -okhttp3.MultipartBody: okhttp3.MediaType FORM -com.google.android.material.R$styleable: int AppBarLayout_statusBarForeground -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_min -androidx.appcompat.R$styleable: int AppCompatTheme_borderlessButtonStyle -wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService: AwakeForegroundUpdateService() -retrofit2.RequestBuilder: okhttp3.Headers$Builder headersBuilder -com.bumptech.glide.R$color: int notification_icon_bg_color -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.observers.InnerQueuedObserver current -okhttp3.RealCall: okhttp3.internal.connection.StreamAllocation streamAllocation() -androidx.transition.R$id: int async -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean isDisposed() -androidx.swiperefreshlayout.R$drawable: int notification_tile_bg -okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,int,int,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) -androidx.lifecycle.MediatorLiveData$Source: androidx.lifecycle.LiveData mLiveData -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_fragment -com.jaredrummler.android.colorpicker.R$attr: int thickness -androidx.lifecycle.LifecycleRegistry: void moveToState(androidx.lifecycle.Lifecycle$State) -com.jaredrummler.android.colorpicker.R$dimen: int abc_button_padding_vertical_material -okhttp3.internal.ws.WebSocketProtocol: java.lang.String ACCEPT_MAGIC -android.didikee.donate.R$styleable: int SearchView_closeIcon -okhttp3.Interceptor$Chain -wangdaye.com.geometricweather.R$color: int abc_tint_edittext -james.adaptiveicon.R$string: int abc_shareactionprovider_share_with_application -androidx.loader.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$drawable: int notif_temp_41 -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMargin -androidx.appcompat.R$styleable: int StateListDrawable_android_variablePadding -androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragScale -okhttp3.MultipartBody: long contentLength() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getLogo() -wangdaye.com.geometricweather.R$attr: int onNegativeCross -com.google.android.material.R$style: int TextAppearance_Design_HelperText -androidx.preference.R$id: int accessibility_custom_action_1 -androidx.dynamicanimation.R$attr: int fontWeight -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int ON_NEXT -retrofit2.DefaultCallAdapterFactory$1: DefaultCallAdapterFactory$1(retrofit2.DefaultCallAdapterFactory,java.lang.reflect.Type,java.util.concurrent.Executor) -okhttp3.internal.connection.StreamAllocation: java.net.Socket releaseAndAcquire(okhttp3.internal.connection.RealConnection) -com.google.android.material.R$styleable: int Chip_closeIconSize -wangdaye.com.geometricweather.R$string: int off -com.google.android.material.R$dimen: int design_bottom_navigation_shadow_height -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_1 -com.amap.api.fence.GeoFence: void setActivatesAction(int) -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property TimeZone -okhttp3.Authenticator$1 -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_logoDescription -androidx.work.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.R$layout: int material_time_input -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$EntrySet entrySet -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitation(java.lang.Float) -james.adaptiveicon.R$attr: int suggestionRowLayout -androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveOffset -androidx.hilt.lifecycle.R$layout: int notification_template_part_chronometer -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackInactiveTintList() -com.jaredrummler.android.colorpicker.ColorPreferenceCompat: void setOnShowDialogListener(com.jaredrummler.android.colorpicker.ColorPreferenceCompat$OnShowDialogListener) -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: int UnitType -androidx.appcompat.resources.R$layout: int notification_template_icon_group -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationX -retrofit2.http.POST -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void cancel() -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void dispose() -wangdaye.com.geometricweather.R$string: int week_2 -com.xw.repo.bubbleseekbar.R$attr: int autoSizeTextType -wangdaye.com.geometricweather.R$layout: int test_chip_zero_corner_radius -androidx.swiperefreshlayout.R$dimen: int compat_button_inset_horizontal_material -okhttp3.internal.http2.Http2Stream$FramingSource: void updateConnectionFlowControl(long) -okhttp3.HttpUrl: java.lang.String queryParameter(java.lang.String) -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_borderless_material -io.reactivex.internal.subscribers.StrictSubscriber: long serialVersionUID -wangdaye.com.geometricweather.R$attr: int errorTextAppearance -com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context,android.util.AttributeSet) -cyanogenmod.providers.CMSettings$Secure: CMSettings$Secure() -cyanogenmod.providers.CMSettings$Secure: java.lang.String STATS_COLLECTION -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_20 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchMinWidth -androidx.recyclerview.R$styleable: int ColorStateListItem_alpha -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void dispose() -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_android_enabled -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: java.lang.Object poll() -okio.InflaterSource: void releaseInflatedBytes() -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void dispose() -com.google.android.material.slider.Slider: int getFocusedThumbIndex() -com.amap.api.location.APSService: APSService() -com.turingtechnologies.materialscrollbar.R$string: int mtrl_chip_close_icon_content_description -com.google.android.material.R$styleable: int ImageFilterView_contrast -android.didikee.donate.R$drawable: int abc_dialog_material_background -androidx.vectordrawable.animated.R$id: int action_container -com.loc.k: java.lang.String d() -wangdaye.com.geometricweather.R$id: int META -okhttp3.internal.cache2.Relay: okio.Source newSource() -com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Object,java.util.List) -com.google.android.material.R$id: int fill -com.google.android.material.R$styleable: int ConstraintSet_android_layout_height -com.jaredrummler.android.colorpicker.R$id: int action_bar_title -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.constraintlayout.widget.R$id: int activity_chooser_view_content -androidx.preference.R$styleable: int AppCompatTheme_panelBackground -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: KeyguardExternalViewProviderService$1$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService$1,android.os.Bundle) -james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontStyle -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_18 -android.didikee.donate.R$drawable: int abc_text_select_handle_left_mtrl_light -com.google.android.material.progressindicator.ProgressIndicator: void setVisibilityAfterHide(int) -com.google.android.material.R$styleable: int Constraint_layout_constrainedHeight -com.google.android.material.R$styleable: int[] MaterialCardView -com.google.android.material.chip.ChipGroup: void setChipSpacingVertical(int) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -com.google.android.material.R$attr: int collapsingToolbarLayoutStyle -com.google.android.material.slider.Slider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) -wangdaye.com.geometricweather.R$styleable: int PopupWindowBackgroundState_state_above_anchor -com.google.android.material.R$string: int mtrl_picker_text_input_day_abbr -okio.ForwardingSource: void close() -com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_end_outer_color -androidx.hilt.R$attr: int alpha -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric() -com.turingtechnologies.materialscrollbar.R$attr: int enforceMaterialTheme -james.adaptiveicon.R$dimen: int abc_dialog_title_divider_material -com.google.android.material.R$styleable: int ShapeableImageView_strokeColor -androidx.appcompat.widget.AppCompatImageView: android.graphics.PorterDuff$Mode getSupportImageTintMode() -com.turingtechnologies.materialscrollbar.R$color: int background_material_light -okhttp3.Response: java.lang.String header(java.lang.String) -okio.RealBufferedSource: java.lang.String readUtf8Line() -androidx.drawerlayout.R$dimen: int compat_notification_large_icon_max_height -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetStart -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_GCM_SHA384 -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_primary_mtrl_alpha -com.google.android.material.R$styleable: int TextAppearance_textLocale -com.turingtechnologies.materialscrollbar.R$color: int ripple_material_light -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_brightness -android.didikee.donate.R$style: int TextAppearance_AppCompat_Caption -james.adaptiveicon.R$style: int Widget_AppCompat_Button_Colored -okhttp3.Interceptor$Chain: int connectTimeoutMillis() -androidx.constraintlayout.widget.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -com.xw.repo.bubbleseekbar.R$attr: int colorPrimary -androidx.coordinatorlayout.R$drawable -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver) -androidx.constraintlayout.widget.R$styleable: int[] ConstraintLayout_Layout -androidx.constraintlayout.widget.R$dimen: int abc_text_size_button_material -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_shape_horizontal_margin -com.jaredrummler.android.colorpicker.R$styleable: int[] BackgroundStyle -wangdaye.com.geometricweather.R$string: int key_widget_config -james.adaptiveicon.R$attr: int progressBarPadding -cyanogenmod.profiles.RingModeSettings$1: java.lang.Object[] newArray(int) -cyanogenmod.weather.WeatherInfo$Builder: WeatherInfo$Builder(java.lang.String,double,int) -com.jaredrummler.android.colorpicker.R$id: int transparency_title -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActivityChooserView -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: java.lang.Object singleItem -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: void onFinishedProcessing(java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: int colorId -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_enabled -com.turingtechnologies.materialscrollbar.R$attr: int voiceIcon -androidx.drawerlayout.R$layout -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.customview.R$styleable: int GradientColor_android_endY -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderTextColor -androidx.coordinatorlayout.R$id: int text -wangdaye.com.geometricweather.R$styleable: int Slider_thumbColor -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_borderlessButtonStyle -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetEnd -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onError(java.lang.Throwable) -com.google.gson.FieldNamingPolicy -retrofit2.BuiltInConverters$UnitResponseBodyConverter: kotlin.Unit convert(okhttp3.ResponseBody) -androidx.constraintlayout.widget.R$attr: int autoSizeMaxTextSize -wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity: ClockDayHorizontalWidgetConfigActivity() -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getSO2() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedDescription(java.lang.String) -okhttp3.internal.platform.Platform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.SSLSocketFactory) -com.jaredrummler.android.colorpicker.R$color: int material_grey_300 -androidx.recyclerview.R$color: int secondary_text_default_material_light -com.jaredrummler.android.colorpicker.R$attr: int thumbTintMode -com.google.android.material.R$dimen: int material_text_view_test_line_height_override -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_position -android.support.v4.os.ResultReceiver$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_holo_dark -okio.Buffer: void readFully(byte[]) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_DropDownItem_Spinner -com.jaredrummler.android.colorpicker.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$drawable: int notif_temp_10 -androidx.appcompat.R$dimen: int abc_text_size_small_material -io.reactivex.internal.util.NotificationLite: java.lang.Object getValue(java.lang.Object) -james.adaptiveicon.R$style: int Base_Theme_AppCompat_DialogWhenLarge -wangdaye.com.geometricweather.R$attr: int enforceTextAppearance -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onActionModeStarted(android.view.ActionMode) -com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_toolbar -wangdaye.com.geometricweather.R$styleable: int[] SeekBarPreference -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String no2Desc -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -androidx.appcompat.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_padding_start_material -com.jaredrummler.android.colorpicker.R$layout: int abc_action_mode_close_item_material -androidx.core.view.ViewCompat$1: ViewCompat$1(androidx.core.view.OnApplyWindowInsetsListener) -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig dailyEntityDaoConfig -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean profileExists(android.os.ParcelUuid) -com.turingtechnologies.materialscrollbar.R$attr: int bottomAppBarStyle -james.adaptiveicon.R$styleable: int AppCompatTheme_panelBackground -com.google.android.material.R$id: int material_timepicker_mode_button -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_measureWithLargestChild -com.amap.api.location.AMapLocation: double u -wangdaye.com.geometricweather.R$style: int Theme_Design_NoActionBar -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$string: int feedback_view_style -androidx.vectordrawable.animated.R$drawable: R$drawable() -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] EMPTY_RULE -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onError(java.lang.Throwable) -androidx.preference.R$attr: int backgroundSplit -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: double Value -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.constraintlayout.widget.R$attr: int layout_constraintTop_toTopOf -okio.Timeout$1 -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: IAppSuggestProvider$Stub$Proxy(android.os.IBinder) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableRight -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabStyle -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindChillTemperature -wangdaye.com.geometricweather.R$styleable: int PropertySet_android_alpha -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setWind(double,double,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric -com.google.android.material.R$string: int character_counter_overflowed_content_description -androidx.work.R$drawable: int notification_bg_normal -com.google.gson.stream.JsonReader: int PEEKED_DOUBLE_QUOTED_NAME -okhttp3.EventListener: void connectFailed(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol,java.io.IOException) -cyanogenmod.providers.CMSettings$NameValueCache: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float snowPrecipitation -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchGenericMotionEvent(android.view.MotionEvent) -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItemSecondary -androidx.activity.R$style -androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_NO_ARG -androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.R$attr: int coordinatorLayoutStyle -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle -wangdaye.com.geometricweather.R$style: int AlertDialog_AppCompat_Light -com.google.android.material.R$string: int abc_shareactionprovider_share_with_application -androidx.constraintlayout.helper.widget.Flow: void setPaddingLeft(int) -wangdaye.com.geometricweather.R$styleable: int Slider_android_value -androidx.preference.R$style: int Base_AlertDialog_AppCompat -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_115 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabText -com.google.android.material.R$styleable: int Toolbar_titleMarginEnd -com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_text_padding_left -okhttp3.Response$Builder: okhttp3.Response$Builder message(java.lang.String) -okhttp3.Call$Factory -androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.Fragment) -okhttp3.MultipartBody: java.lang.String boundary() -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$id: int switchWidget -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_titleTextStyle -retrofit2.Retrofit: okhttp3.Call$Factory callFactory -io.reactivex.Observable: io.reactivex.Observable onTerminateDetach() -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getUniqueDeviceId() -com.google.android.material.navigation.NavigationView: void setItemHorizontalPaddingResource(int) -androidx.core.R$id: int accessibility_custom_action_22 -androidx.preference.R$styleable: int PreferenceGroup_orderingFromXml -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: KeyguardExternalViewProviderService$Provider$ProviderImpl$8(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,float) -com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: long serialVersionUID -com.google.android.material.R$style: int Widget_AppCompat_ImageButton -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_thumb -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton -com.google.android.material.R$attr: int tabMinWidth -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvIndex(java.lang.Integer) -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.R$attr: int cpv_dialogTitle -androidx.constraintlayout.widget.R$attr: int placeholder_emptyVisibility -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.Map lefts -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: java.lang.String English -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onError(java.lang.Throwable) -cyanogenmod.app.Profile$Type: int TOGGLE -wangdaye.com.geometricweather.R$attr: int spinnerDropDownItemStyle -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String LocalizedName -com.google.android.gms.base.R$styleable: R$styleable() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_9 -com.xw.repo.bubbleseekbar.R$attr: int bsb_show_thumb_text -okio.Pipe$PipeSource: okio.Timeout timeout -wangdaye.com.geometricweather.R$drawable: int flag_tr -cyanogenmod.app.ProfileManager: void setActiveProfile(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_summaryOn -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextBackground -wangdaye.com.geometricweather.R$style: int material_button -wangdaye.com.geometricweather.R$string: int content_des_o3 -android.didikee.donate.R$dimen: int abc_text_size_display_3_material -android.didikee.donate.R$attr: int contentInsetRight -com.amap.api.location.AMapLocation$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableItem_android_drawable -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textColorSearchUrl -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_light -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String weatherPhase -androidx.appcompat.R$attr: int homeAsUpIndicator -okhttp3.internal.connection.RealConnection: okio.BufferedSource source -com.turingtechnologies.materialscrollbar.R$attr: int titleMarginStart -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moldLevel -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dark -cyanogenmod.power.PerformanceManager -wangdaye.com.geometricweather.settings.fragments.UnitSettingsFragment -com.google.android.material.R$styleable: int AppBarLayout_liftOnScroll -androidx.preference.R$attr: int dialogMessage -wangdaye.com.geometricweather.R$attr: int useCompatPadding -com.google.android.material.R$id: int bottom -okio.GzipSink: java.util.zip.Deflater deflater -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintAnimationEnabled -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.db.entities.WeatherEntityDao myDao -androidx.appcompat.R$attr: int actionBarStyle -androidx.legacy.coreutils.R$styleable: int GradientColor_android_endColor -androidx.appcompat.R$drawable: int abc_btn_check_material -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.R$color: int design_icon_tint -okhttp3.internal.ws.RealWebSocket -cyanogenmod.app.Profile: void setConnectionSettings(cyanogenmod.profiles.ConnectionSettings) -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor LIGHT -io.reactivex.internal.schedulers.ScheduledDirectTask: ScheduledDirectTask(java.lang.Runnable) -com.amap.api.fence.DistrictItem$1: java.lang.Object createFromParcel(android.os.Parcel) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STYLE_THUMBNAIL -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEV_FORCE_SHOW_NAVBAR -wangdaye.com.geometricweather.R$dimen: int material_clock_number_text_size -james.adaptiveicon.R$color: int bright_foreground_disabled_material_dark -wangdaye.com.geometricweather.common.basic.models.weather.Daily: long time -wangdaye.com.geometricweather.db.entities.ChineseCityEntity -androidx.viewpager.R$id: int time -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_BarSize -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: FlowableObserveOn$BaseObserveOnSubscriber(io.reactivex.Scheduler$Worker,boolean,int) -com.google.android.material.R$drawable: int btn_checkbox_unchecked_mtrl -com.google.android.material.R$styleable: int SnackbarLayout_android_maxWidth -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Caption -com.google.android.gms.signin.internal.zag -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$string: int settings_title_trend_horizontal_line_switch -com.google.android.material.R$style: int Base_Theme_AppCompat_DialogWhenLarge -com.jaredrummler.android.colorpicker.R$attr: int contentInsetStart -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontVariationSettings -android.didikee.donate.R$attr: int arrowShaftLength -androidx.multidex.MultiDexExtractor$ExtractedDex -com.google.android.material.R$attr: int helperTextEnabled -james.adaptiveicon.R$id: int italic -okhttp3.internal.tls.OkHostnameVerifier: boolean verify(java.lang.String,javax.net.ssl.SSLSession) -androidx.vectordrawable.R$dimen: int notification_right_side_padding_top -androidx.hilt.work.R$attr: int fontVariationSettings -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean addInner(io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) -com.amap.api.location.AMapLocation: void setBuildingId(java.lang.String) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Menu -androidx.swiperefreshlayout.R$styleable: int[] GradientColorItem -james.adaptiveicon.R$color: int highlighted_text_material_dark -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog -cyanogenmod.os.Concierge$ParcelInfo: Concierge$ParcelInfo(android.os.Parcel,int) -com.turingtechnologies.materialscrollbar.R$attr: int tabMode -com.google.android.material.R$integer: int mtrl_card_anim_duration_ms -com.bumptech.glide.R$id: int notification_main_column -wangdaye.com.geometricweather.R$styleable: int[] LiveLockScreen -com.google.android.material.R$attr: int initialActivityCount -okhttp3.internal.http2.Settings: int INITIAL_WINDOW_SIZE -com.google.android.material.R$styleable: int OnSwipe_onTouchUp -androidx.appcompat.view.menu.ActionMenuItemView: void setItemInvoker(androidx.appcompat.view.menu.MenuBuilder$ItemInvoker) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -okhttp3.internal.http1.Http1Codec -james.adaptiveicon.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer windChillTemperature -com.google.android.material.R$attr: int scrimAnimationDuration -wangdaye.com.geometricweather.main.utils.MainPalette: android.os.Parcelable$Creator CREATOR -androidx.lifecycle.ProcessLifecycleOwner$1: androidx.lifecycle.ProcessLifecycleOwner this$0 -com.turingtechnologies.materialscrollbar.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.lang.String Link -com.google.android.material.R$layout: int abc_alert_dialog_material -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset -com.jaredrummler.android.colorpicker.R$drawable: int abc_edit_text_material -com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitationProbability -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_android_indeterminate -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4 -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.subjects.UnicastSubject window -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getProvince() -com.google.android.material.R$id: int position -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onComplete() -com.turingtechnologies.materialscrollbar.R$attr: int iconGravity -com.google.android.material.R$styleable: int Constraint_android_elevation -cyanogenmod.themes.IThemeChangeListener$Stub: cyanogenmod.themes.IThemeChangeListener asInterface(android.os.IBinder) -com.google.android.material.R$dimen: int mtrl_calendar_navigation_height -wangdaye.com.geometricweather.db.entities.DailyEntity: float getHoursOfSun() -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_progress -com.google.android.material.R$attr: int fabAnimationMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String shortDescription -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button -com.google.android.material.R$attr: int fabCradleMargin -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: int limit -androidx.hilt.work.R$styleable: int Fragment_android_tag -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: AccuCurrentResult$DewPoint$Metric() +com.google.android.material.R$attr: int expandActivityOverflowButtonDrawable +com.turingtechnologies.materialscrollbar.R$attr: int spanCount +wangdaye.com.geometricweather.R$bool: int mtrl_btn_textappearance_all_caps +cyanogenmod.externalviews.KeyguardExternalView: void onKeyguardDismissed() +androidx.appcompat.R$styleable: int View_paddingStart +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton +james.adaptiveicon.R$attr: int font +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onSubscribe(org.reactivestreams.Subscription) +okio.Sink: void flush() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour +com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_minimum_range +com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonCompat +retrofit2.RequestFactory$Builder: java.lang.String PARAM +com.turingtechnologies.materialscrollbar.R$styleable: int TouchScrollBar_msb_hideDelayInMilliseconds +androidx.work.WorkerParameters +com.turingtechnologies.materialscrollbar.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderDivider +androidx.preference.R$attr: int actionModeBackground +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: ObservableJoin$JoinDisposable(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotationX +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String o3Desc +androidx.vectordrawable.R$dimen: int compat_control_corner_material +james.adaptiveicon.R$styleable: int ActionBar_navigationMode +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: ObservableConcatMap$ConcatMapDelayErrorObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) +androidx.viewpager.R$id: int title +wangdaye.com.geometricweather.db.entities.AlertEntity: void setWeatherSource(java.lang.String) +androidx.lifecycle.SavedStateHandleController: java.lang.String mKey +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec newStream(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,boolean) +cyanogenmod.weather.WeatherInfo$DayForecast$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setThunderstormPrecipitationProbability(java.lang.Float) +com.amap.api.location.DPoint$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$styleable: int Toolbar_collapseContentDescription +com.amap.api.fence.GeoFence: long j +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_size +okio.SegmentedByteString: okio.ByteString sha1() +com.amap.api.location.UmidtokenInfo: java.lang.String getUmidtoken() +com.google.android.material.R$styleable: int KeyTrigger_triggerSlack +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Body1 +androidx.preference.R$styleable: int DrawerArrowToggle_drawableSize +com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableCompat +androidx.preference.R$color: int material_blue_grey_900 +cyanogenmod.externalviews.KeyguardExternalView$9 +cyanogenmod.app.ProfileManager: void setActiveProfile(java.lang.String) +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_behavior +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_android_layout +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature +com.turingtechnologies.materialscrollbar.R$styleable: int[] RecyclerView +androidx.appcompat.resources.R$color: int ripple_material_light +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +io.reactivex.internal.observers.DeferredScalarDisposable: boolean isDisposed() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +james.adaptiveicon.R$styleable: int AppCompatTheme_imageButtonStyle +com.turingtechnologies.materialscrollbar.R$attr: int srcCompat +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_backgroundStacked +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +cyanogenmod.themes.ThemeManager: void onClientResumed(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitation(java.lang.Float) +androidx.appcompat.R$attr: int maxButtonHeight +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.functions.Function combiner +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setLogo(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean getForecastDaily() +android.didikee.donate.R$styleable: int MenuItem_android_orderInCategory +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void run() +wangdaye.com.geometricweather.R$string: int aqi_5 +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getDailyForecast() +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float CarbonMonoxide +androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.Lifecycle mLifecycle +com.google.android.material.R$id: int material_clock_hand +wangdaye.com.geometricweather.R$id: int mtrl_picker_header +wangdaye.com.geometricweather.R$color: int design_bottom_navigation_shadow_color +okhttp3.internal.ws.RealWebSocket: int receivedPingCount +james.adaptiveicon.R$drawable: int abc_list_pressed_holo_light +com.google.android.material.R$anim: int mtrl_card_lowers_interpolator +io.reactivex.internal.observers.InnerQueuedObserver: int prefetch +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language CHINESE +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Item +com.bumptech.glide.R$attr: int statusBarBackground +wangdaye.com.geometricweather.R$id: int month_navigation_fragment_toggle +com.google.android.material.bottomappbar.BottomAppBar: float getCradleVerticalOffset() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: int getStatus() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_45 +com.xw.repo.bubbleseekbar.R$color: int primary_text_disabled_material_dark +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.Function rightEnd +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getWindSpeed() +androidx.appcompat.R$attr: int actionModeWebSearchDrawable +james.adaptiveicon.R$dimen: int abc_dialog_fixed_height_major +androidx.vectordrawable.animated.R$id: R$id() +com.google.android.material.R$id: int accessibility_custom_action_15 +wangdaye.com.geometricweather.R$color: int material_on_background_emphasis_medium +androidx.appcompat.widget.SwitchCompat: void setSplitTrack(boolean) +androidx.appcompat.widget.AppCompatButton: int getAutoSizeMinTextSize() +cyanogenmod.weather.CMWeatherManager$2: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) +io.reactivex.exceptions.CompositeException: java.util.List exceptions +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_ActionBar +com.google.android.material.R$styleable: int ActionBar_backgroundStacked +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeightSmall +cyanogenmod.providers.CMSettings$Global: java.lang.String[] LEGACY_GLOBAL_SETTINGS +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX() +androidx.appcompat.widget.SearchView: int getPreferredWidth() +androidx.vectordrawable.animated.R$styleable +androidx.swiperefreshlayout.R$styleable: R$styleable() +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol valueOf(java.lang.String) +androidx.preference.R$dimen: int notification_right_side_padding_top +okhttp3.EventListener: void requestHeadersStart(okhttp3.Call) +wangdaye.com.geometricweather.R$string: int hourly_overview +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Medium_Inverse +com.google.android.material.R$integer: int app_bar_elevation_anim_duration +wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_max +james.adaptiveicon.R$integer: int status_bar_notification_info_maxnum +com.google.android.material.R$drawable: int abc_ic_voice_search_api_material +wangdaye.com.geometricweather.R$layout: int item_weather_daily_value +com.google.android.material.R$attr: int content +androidx.hilt.lifecycle.R$id +okhttp3.internal.http1.Http1Codec$FixedLengthSource: void close() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_padding_end_material +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_sheet_peek_height_min +okhttp3.internal.cache.DiskLruCache$1: okhttp3.internal.cache.DiskLruCache this$0 +io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicBoolean once +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String getValue() +androidx.core.R$dimen: int notification_large_icon_height +cyanogenmod.providers.CMSettings$System$1: CMSettings$System$1() +wangdaye.com.geometricweather.R$dimen: int abc_text_size_menu_material +okio.SegmentedByteString: int segment(int) +androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context) +com.google.android.material.R$style: int Widget_AppCompat_Spinner_Underlined +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindChillTemperature(java.lang.Integer) +androidx.preference.R$attr: int listPreferredItemPaddingRight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setNo2(java.lang.String) +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean isDaylight() +android.didikee.donate.R$styleable: int ActionBar_itemPadding +androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +wangdaye.com.geometricweather.R$color: int material_grey_300 +wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity: ClockDayDetailsWidgetConfigActivity() +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status IN_PROGRESS +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: int getChartBottom() +androidx.coordinatorlayout.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.R$styleable: int MockView_mock_labelBackgroundColor +io.reactivex.internal.subscribers.DeferredScalarSubscriber: boolean hasValue +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixText +com.google.android.material.R$attr: int currentState +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean isEnabled() +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderPackage +okhttp3.internal.connection.RouteSelector: okhttp3.Address address +wangdaye.com.geometricweather.R$styleable: int Constraint_android_maxWidth +cyanogenmod.providers.CMSettings$Global: float getFloat(android.content.ContentResolver,java.lang.String) +cyanogenmod.weatherservice.IWeatherProviderService: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) +okhttp3.internal.http.RealInterceptorChain: int index +androidx.preference.R$attr: int dialogTheme +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: int Id +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_orderInCategory +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius +androidx.fragment.R$id: int line3 +cyanogenmod.externalviews.KeyguardExternalView$7: KeyguardExternalView$7(cyanogenmod.externalviews.KeyguardExternalView) +androidx.dynamicanimation.R$dimen: int compat_notification_large_icon_max_width +cyanogenmod.profiles.BrightnessSettings$1: cyanogenmod.profiles.BrightnessSettings[] newArray(int) +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeStepGranularity +android.didikee.donate.R$styleable: int LinearLayoutCompat_dividerPadding +androidx.appcompat.R$drawable: int abc_btn_check_to_on_mtrl_000 +wangdaye.com.geometricweather.R$layout: int abc_screen_toolbar +androidx.vectordrawable.R$styleable: int[] ColorStateListItem com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontVariationSettings -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: ObservableWithLatestFromMany$WithLatestFromObserver(io.reactivex.Observer,io.reactivex.functions.Function,int) -androidx.preference.R$styleable: int ActionBar_contentInsetLeft -com.xw.repo.bubbleseekbar.R$attr: int actionBarSize -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxPlain() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: AccuCurrentResult$PrecipitationSummary$Past9Hours() -androidx.drawerlayout.R$styleable: int GradientColor_android_endX -com.turingtechnologies.materialscrollbar.R$id: int firstVisible -james.adaptiveicon.R$drawable: int abc_ic_star_black_48dp -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_keyboardNavigationCluster -okhttp3.internal.ws.WebSocketReader: int opcode -com.turingtechnologies.materialscrollbar.R$attr: int reverseLayout -wangdaye.com.geometricweather.R$string: int settings_notification_hide_in_lockScreen_on -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart -com.google.android.material.R$dimen: int mtrl_toolbar_default_height -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTintMode -com.amap.api.location.AMapLocationClientOption: void setOpenAlwaysScanWifi(boolean) -androidx.lifecycle.extensions.R$style: int Widget_Compat_NotificationActionText -cyanogenmod.profiles.RingModeSettings$1: RingModeSettings$1() -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_menuCategory -androidx.appcompat.R$id: int text2 -com.jaredrummler.android.colorpicker.R$id: int forever -wangdaye.com.geometricweather.R$attr: int subtitleTextStyle +androidx.recyclerview.R$dimen: int compat_notification_large_icon_max_width +cyanogenmod.app.ProfileGroup$2 +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_to_on_mtrl_015 +retrofit2.OptionalConverterFactory$OptionalConverter: retrofit2.Converter delegate +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeWetBulbTemperature +com.xw.repo.bubbleseekbar.R$dimen: int notification_right_side_padding_top +com.google.android.material.R$styleable: int MenuItem_android_title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getNo2Desc() +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: AccuCurrentResult$WetBulbTemperature$Imperial() +com.google.android.material.R$styleable: int KeyCycle_android_rotationX +wangdaye.com.geometricweather.R$styleable: int[] FloatingActionButton +cyanogenmod.weather.WeatherLocation$Builder: WeatherLocation$Builder(java.lang.String) +wangdaye.com.geometricweather.db.entities.HourlyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getNumGammaControls +com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context,android.util.AttributeSet) +androidx.viewpager.R$dimen: int notification_main_column_padding_top +androidx.preference.R$styleable: int AppCompatTheme_dropDownListViewStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_bottom_margin +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onError(java.lang.Throwable) +androidx.vectordrawable.R$dimen: int compat_button_inset_horizontal_material +androidx.viewpager.R$style: int Widget_Compat_NotificationActionText +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_track_mtrl_alpha +androidx.constraintlayout.widget.R$attr: int titleMarginEnd +android.didikee.donate.R$layout: int support_simple_spinner_dropdown_item +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder protocols(java.util.List) +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties properties +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets +cyanogenmod.weather.IRequestInfoListener: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) +androidx.constraintlayout.widget.R$id: int up +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonStyle +com.turingtechnologies.materialscrollbar.R$attr: int listPopupWindowStyle +androidx.vectordrawable.animated.R$integer: int status_bar_notification_info_maxnum +androidx.customview.R$id: int right_icon +com.google.android.material.circularreveal.CircularRevealLinearLayout: CircularRevealLinearLayout(android.content.Context) +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_android_layout +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +androidx.appcompat.R$bool: int abc_action_bar_embed_tabs +com.google.android.material.R$attr: int materialButtonOutlinedStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getCoDesc() +androidx.preference.R$attr: int contentInsetStartWithNavigation +androidx.appcompat.widget.LinearLayoutCompat: int getVirtualChildCount() +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification +okhttp3.internal.http2.Http2Connection$4: int val$streamId +cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient access$200(cyanogenmod.weatherservice.WeatherProviderService) +androidx.lifecycle.extensions.R$dimen: int notification_subtext_size +androidx.constraintlayout.widget.R$attr: int textAppearancePopupMenuHeader +com.google.android.material.R$attr: int layout_constraintHeight_min +androidx.recyclerview.R$attr: int fastScrollVerticalThumbDrawable +androidx.recyclerview.R$styleable: int FontFamily_fontProviderQuery +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_cursor_material +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: AccuLocationResult$GeoPosition() +io.reactivex.internal.util.NotificationLite$DisposableNotification: NotificationLite$DisposableNotification(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$color: int background_floating_material_dark +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.ObservableSource source +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.google.android.material.R$attr: int switchPadding +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTopCompat +com.amap.api.fence.GeoFence: void setAble(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult +com.google.android.material.appbar.AppBarLayout: void setElevation(float) +com.turingtechnologies.materialscrollbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +androidx.preference.R$styleable: int[] PreferenceImageView +okhttp3.internal.http1.Http1Codec$ChunkedSource: void close() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitationDuration() +cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_MUTE +okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withConnectTimeout(int,java.util.concurrent.TimeUnit) +androidx.constraintlayout.widget.R$attr: int actionModeFindDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: java.lang.String English +okhttp3.Address: int hashCode() +okio.AsyncTimeout: long remainingNanos(long) +com.google.android.material.card.MaterialCardView: void setProgress(float) +wangdaye.com.geometricweather.db.entities.LocationEntity: float longitude +wangdaye.com.geometricweather.R$attr: int backgroundInsetBottom +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_toolbarStyle +wangdaye.com.geometricweather.R$style: int Base_V22_Theme_AppCompat_Light +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_25 +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.content.ComponentName,int) +wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_grey +androidx.dynamicanimation.R$styleable: int GradientColor_android_centerColor +com.turingtechnologies.materialscrollbar.R$attr: int titleEnabled +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: long serialVersionUID +androidx.appcompat.R$style: int Base_V28_Theme_AppCompat +wangdaye.com.geometricweather.R$drawable: int notif_temp_44 +com.google.android.material.R$style: int TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.R$id: int mtrl_calendar_day_selector_frame +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String unitId +wangdaye.com.geometricweather.R$attr: int haloColor +androidx.constraintlayout.widget.R$dimen: int abc_control_padding_material +androidx.work.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String getValue() +james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_Toolbar +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: double Value +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getEn_US() +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_1 +com.google.android.material.R$style: int Theme_AppCompat_Dialog +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: void setValue(java.lang.String) +wangdaye.com.geometricweather.R$attr: int queryBackground +com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetBottom +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial +com.xw.repo.bubbleseekbar.R$attr: int contentInsetEnd +com.google.android.material.R$styleable: int ConstraintSet_flow_firstVerticalStyle +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_middle_mtrl_light +com.github.rahatarmanahmed.cpv.CircularProgressView$3: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context) +androidx.appcompat.R$attr: int textAppearanceListItemSecondary +androidx.preference.R$color: int switch_thumb_material_light +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean isDisposed() +james.adaptiveicon.R$drawable: int abc_btn_check_to_on_mtrl_000 +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_disableDependentsState +com.google.android.material.circularreveal.CircularRevealGridLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_default +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_background_transition_holo_light +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer) +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickActiveTintList() +wangdaye.com.geometricweather.R$attr: int colorOnPrimary +com.google.android.material.R$styleable: int[] MaterialButtonToggleGroup +wangdaye.com.geometricweather.R$id: int activity_weather_daily_subtitle +cyanogenmod.providers.CMSettings$System: float getFloat(android.content.ContentResolver,java.lang.String,float) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableCompatState +androidx.constraintlayout.widget.R$attr: int waveVariesBy +wangdaye.com.geometricweather.R$layout: int dialog_time_setter +com.jaredrummler.android.colorpicker.R$layout: int preference_information +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconTintMode +android.didikee.donate.R$drawable: int notification_icon_background +okhttp3.MediaType: java.lang.String type +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_1 +com.turingtechnologies.materialscrollbar.R$styleable: int[] CollapsingToolbarLayout_Layout +com.google.android.material.transformation.FabTransformationScrimBehavior: FabTransformationScrimBehavior(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int[] AppCompatImageView +wangdaye.com.geometricweather.R$string: int mtrl_picker_announce_current_selection +com.turingtechnologies.materialscrollbar.R$attr: int closeIconSize +androidx.constraintlayout.widget.R$drawable: int abc_btn_check_to_on_mtrl_000 +androidx.appcompat.R$dimen: int notification_action_icon_size +okhttp3.internal.ws.WebSocketWriter: java.util.Random random +com.turingtechnologies.materialscrollbar.R$attr: int windowActionBarOverlay +androidx.preference.internal.PreferenceImageView: int getMaxHeight() +androidx.loader.R$styleable: int[] GradientColor +com.google.android.material.R$dimen: int mtrl_slider_halo_radius +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSubtitle2 +cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(int,int,boolean) +androidx.appcompat.R$styleable: int ButtonBarLayout_allowStacking +com.amap.api.location.AMapLocationClient: void unRegisterLocationListener(com.amap.api.location.AMapLocationListener) +androidx.hilt.work.R$id: int dialog_button +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyleSmall +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_multiChoiceItemLayout +androidx.preference.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.constraintlayout.widget.R$color: int abc_btn_colored_text_material +com.google.android.material.R$styleable: int ActionMode_height +wangdaye.com.geometricweather.R$styleable: int AlertDialog_multiChoiceItemLayout +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_bottom_padding +com.google.android.material.R$color: int bright_foreground_inverse_material_dark +com.google.android.material.R$styleable: int ActionBar_progressBarPadding +cyanogenmod.app.CustomTile: java.lang.String getResourcesPackageName() +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: int mMax +com.baidu.location.indoor.mapversion.c.a$d: java.lang.String h +androidx.appcompat.R$attr: int track +wangdaye.com.geometricweather.R$anim: int design_snackbar_out +androidx.hilt.lifecycle.R$drawable: int notification_bg +retrofit2.RequestBuilder: okhttp3.RequestBody body +james.adaptiveicon.R$dimen: int abc_action_bar_default_padding_start_material +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_ENABLED_VALIDATOR +com.google.android.material.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getOverflowIcon() +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback +com.google.android.material.R$style: int Base_Theme_AppCompat_CompactMenu +androidx.loader.R$dimen: int notification_large_icon_height +com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_chainStyle +wangdaye.com.geometricweather.R$string: int bottom_sheet_behavior +cyanogenmod.profiles.LockSettings: LockSettings() +com.google.android.material.chip.Chip: void setIconStartPadding(float) +android.didikee.donate.R$attr: int buttonTintMode +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginRight +okhttp3.internal.platform.JdkWithJettyBootPlatform +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_seek_step_section +com.bumptech.glide.load.ImageHeaderParser$ImageType: boolean hasAlpha() +com.xw.repo.bubbleseekbar.R$id: int search_plate +androidx.transition.R$styleable: int GradientColor_android_startY +androidx.appcompat.R$color: int abc_search_url_text_normal +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_dividerHeight +androidx.core.R$styleable: int GradientColor_android_endX +com.google.android.material.floatingactionbutton.FloatingActionButton: int getRippleColor() +androidx.constraintlayout.widget.R$string: int abc_activity_chooser_view_see_all +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_max_width +com.bumptech.glide.integration.okhttp.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitleTextStyle +androidx.constraintlayout.widget.R$attr: int actionMenuTextColor +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onNext(java.lang.Object) +androidx.fragment.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: MfWarningsResult$PhenomenonMaxColor() +com.google.android.material.R$styleable: int ActionBar_subtitle +com.turingtechnologies.materialscrollbar.R$drawable +wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_grey +okhttp3.Headers: okhttp3.Headers of(java.util.Map) +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onNext(java.lang.Object) +retrofit2.Platform: int defaultConverterFactoriesSize() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextBackground +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: int maxColor +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +wangdaye.com.geometricweather.R$drawable: int notif_temp_137 +androidx.appcompat.R$attr: int actionBarStyle +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: ObservableTimeoutTimed$TimeoutObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker) +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_drawableSize +com.google.gson.stream.JsonReader: boolean isLiteral(char) +androidx.transition.R$styleable: R$styleable() +androidx.appcompat.widget.AppCompatTextView: android.graphics.PorterDuff$Mode getSupportCompoundDrawablesTintMode() +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_corner_radius_material +androidx.cardview.R$color +james.adaptiveicon.R$style: int Widget_AppCompat_Button_Small +okhttp3.internal.cache.DiskLruCache: boolean journalRebuildRequired() +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_title +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: int requestFusion(int) +com.google.android.material.R$string: int abc_menu_shift_shortcut_label +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_to_on_mtrl_000 +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_title +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: java.util.ArrayDeque observers +okio.Buffer: okio.ByteString sha256() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pm10 +com.jaredrummler.android.colorpicker.ColorPreferenceCompat: ColorPreferenceCompat(android.content.Context,android.util.AttributeSet,int) +androidx.hilt.lifecycle.R$anim: int fragment_fade_enter +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginStart +com.google.android.material.R$attr: int minHeight +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_SEED_CBC_SHA +com.xw.repo.bubbleseekbar.R$attr: int bsb_show_thumb_text +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_card_elevation +androidx.preference.R$attr: int drawableRightCompat +wangdaye.com.geometricweather.R$drawable: int notif_temp_57 +wangdaye.com.geometricweather.R$string: int key_widget_minimal_icon +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void cancelRequest(int) +io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable,io.reactivex.functions.Function) +com.google.android.material.R$styleable: int[] Chip +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_constraintSet +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: KeyguardExternalViewProviderService$Provider$ProviderImpl$3(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) +android.didikee.donate.R$drawable: int abc_btn_radio_to_on_mtrl_000 +james.adaptiveicon.R$styleable: int LinearLayoutCompat_dividerPadding +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_42 +androidx.constraintlayout.widget.R$attr: int waveDecay +com.turingtechnologies.materialscrollbar.R$bool: int abc_allow_stacked_button_bar +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_dividerPadding +androidx.customview.R$drawable: int notify_panel_notification_icon_bg +androidx.preference.R$id: int line1 +com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_horizontal_material +androidx.preference.R$id: int accessibility_custom_action_21 +androidx.constraintlayout.widget.R$styleable: int MenuView_android_windowAnimationStyle +io.reactivex.Observable: io.reactivex.Completable switchMapCompletableDelayError(io.reactivex.functions.Function) +androidx.constraintlayout.widget.Guideline +com.turingtechnologies.materialscrollbar.R$attr: int textStartPadding +android.didikee.donate.R$string: int abc_shareactionprovider_share_with +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActivityChooserView +android.didikee.donate.R$attr: int closeIcon +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$styleable: int[] LinearLayoutCompat +com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_thumb_material +androidx.preference.R$styleable: int MenuView_subMenuArrow +com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_pressed +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: java.util.List getDeviceComponentVersions() +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColorLink +androidx.appcompat.widget.ActionBarContainer: void setSplitBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: void setDirection(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean) +androidx.fragment.R$dimen: int compat_button_inset_vertical_material +com.google.android.gms.internal.location.zzbc +james.adaptiveicon.R$styleable: int DrawerArrowToggle_drawableSize +james.adaptiveicon.R$dimen: int abc_action_bar_overflow_padding_end_material +com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemRippleColor() +retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.Object adapt(retrofit2.Call) +androidx.drawerlayout.R$id: int icon_group +io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function) +androidx.hilt.R$dimen: int compat_notification_large_icon_max_height +io.reactivex.internal.util.NotificationLite$SubscriptionNotification +com.amap.api.location.CoordinateConverter: com.amap.api.location.CoordinateConverter$CoordType c +cyanogenmod.app.ICMTelephonyManager$Stub +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_stroke_size +com.google.android.material.R$xml: int standalone_badge_gravity_bottom_start +androidx.preference.R$anim: int abc_slide_out_bottom +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: org.reactivestreams.Subscription upstream +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: android.os.IBinder mRemote +com.turingtechnologies.materialscrollbar.R$color: int material_grey_900 +wangdaye.com.geometricweather.R$styleable: int MotionLayout_motionDebug +com.bumptech.glide.R$id: int right_icon +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol[] b +com.google.android.material.chip.ChipGroup: void setChipSpacingHorizontalResource(int) +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_pressed +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemTextAppearance +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_setPowerProfile +androidx.appcompat.resources.R$id: int title +androidx.vectordrawable.R$id: int tag_accessibility_clickable_spans +com.google.android.material.R$styleable: int Layout_barrierDirection +okhttp3.FormBody$Builder: okhttp3.FormBody build() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: java.util.List textBlocItems +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class,androidx.lifecycle.SavedStateHandle) +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification +io.reactivex.internal.util.NotificationLite$SubscriptionNotification: org.reactivestreams.Subscription upstream +james.adaptiveicon.R$styleable: int ActionBar_contentInsetEndWithActions +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: java.lang.String textCount +com.turingtechnologies.materialscrollbar.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeDescription +wangdaye.com.geometricweather.R$dimen: int abc_text_size_caption_material +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_trackTint +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: ObservableTimeoutTimed$TimeoutFallbackObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker,io.reactivex.ObservableSource) +com.google.android.gms.base.R$string: int common_google_play_services_notification_channel_name +androidx.hilt.R$styleable: int GradientColor_android_centerX +androidx.preference.R$dimen: int abc_dialog_fixed_width_minor +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_left_mtrl_light +android.support.v4.os.IResultReceiver$Stub: int TRANSACTION_send wangdaye.com.geometricweather.R$layout: int widget_clock_day_horizontal -androidx.preference.R$attr: int autoSizeMaxTextSize -james.adaptiveicon.R$styleable: int TextAppearance_android_textStyle -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State RESUMED -android.didikee.donate.R$attr: int colorControlNormal -android.didikee.donate.R$style: int Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_divider -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property HoursOfSun -com.xw.repo.bubbleseekbar.R$attr: int listDividerAlertDialog -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: double Value -com.turingtechnologies.materialscrollbar.R$attr: int alertDialogCenterButtons -androidx.preference.R$color: int secondary_text_default_material_light -androidx.core.R$drawable: int notification_bg -androidx.appcompat.R$styleable: int ViewBackgroundHelper_android_background -wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMark -com.google.android.material.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.widget.Toolbar: void setContentInsetStartWithNavigation(int) -com.google.android.material.R$attr: int itemRippleColor -okhttp3.internal.http2.Http2Writer: Http2Writer(okio.BufferedSink,boolean) -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTextHelper -okhttp3.internal.http1.Http1Codec$ChunkedSource: long read(okio.Buffer,long) -okhttp3.internal.http2.Huffman$Node: Huffman$Node() -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) -com.jaredrummler.android.colorpicker.ColorPickerView: int getBorderColor() -androidx.constraintlayout.widget.R$styleable: int Transform_android_rotationY -com.google.android.gms.common.server.response.FastJsonResponse$Field: com.google.android.gms.common.server.response.zaj CREATOR -cyanogenmod.platform.Manifest$permission: java.lang.String THIRD_PARTY_KEYGUARD -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveOffset -androidx.appcompat.resources.R$attr: int fontStyle -com.google.gson.stream.JsonWriter: JsonWriter(java.io.Writer) -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$LayoutManager getLayoutManager() -james.adaptiveicon.R$attr: int buttonBarNeutralButtonStyle -androidx.preference.R$styleable: int AppCompatTheme_actionBarTabBarStyle -androidx.activity.R$id: int accessibility_custom_action_21 -cyanogenmod.app.CustomTile$Builder: android.content.Intent mOnSettingsClick -wangdaye.com.geometricweather.R$drawable: int cpv_btn_background_pressed -wangdaye.com.geometricweather.R$styleable: int FlowLayout_lineSpacing -com.google.android.material.R$styleable: int[] ForegroundLinearLayout -com.google.android.material.R$styleable: int TextInputLayout_endIconCheckable -okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,java.lang.String,boolean,boolean,boolean,boolean) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeApparentTemperature() -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderAuthority -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerX -com.google.android.gms.signin.internal.zab: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int Priority -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String logo -wangdaye.com.geometricweather.R$styleable: int Constraint_android_maxHeight -wangdaye.com.geometricweather.R$string: int key_card_display -okhttp3.Cache$Entry: java.lang.String requestMethod -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarPopupTheme -wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog_actions -okhttp3.internal.ws.RealWebSocket: void onReadMessage(java.lang.String) -androidx.recyclerview.R$id: int forever -wangdaye.com.geometricweather.R$dimen: int abc_alert_dialog_button_dimen -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void dispose() -com.jaredrummler.android.colorpicker.R$attr: int dialogCornerRadius -android.didikee.donate.R$dimen: int abc_action_button_min_width_material -com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_android_foreground -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getCityId() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerCloseError(java.lang.Throwable) -androidx.preference.R$dimen: int abc_action_bar_stacked_tab_max_width -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_material_dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric() -james.adaptiveicon.R$style: int Widget_AppCompat_ProgressBar -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String quotedAV() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupWindow -com.xw.repo.bubbleseekbar.R$attr: int selectableItemBackground -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_91 -cyanogenmod.app.suggest.IAppSuggestProvider$Stub -androidx.constraintlayout.widget.R$styleable: int Transition_autoTransition -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat -android.didikee.donate.R$id: int custom -com.google.android.material.slider.BaseSlider: void setTickInactiveTintList(android.content.res.ColorStateList) -okhttp3.WebSocketListener: void onClosed(okhttp3.WebSocket,int,java.lang.String) -wangdaye.com.geometricweather.R$layout: int image_frame -wangdaye.com.geometricweather.R$styleable: int[] MaterialCardView -androidx.preference.CheckBoxPreference: CheckBoxPreference(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$styleable: int SearchView_iconifiedByDefault -com.turingtechnologies.materialscrollbar.R$attr: int colorSecondary -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarButtonStyle -wangdaye.com.geometricweather.R$drawable: int avd_show_password -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removeAllEncodedQueryParameters(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconCheckable -wangdaye.com.geometricweather.R$drawable: int abc_spinner_textfield_background_material -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.settings.fragments.AbstractSettingsFragment -com.google.android.material.R$style: int Widget_AppCompat_ProgressBar_Horizontal -com.turingtechnologies.materialscrollbar.R$id: int visible -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: AccuLocationResult$AdministrativeArea() -com.google.android.material.R$dimen: int abc_disabled_alpha_material_dark -wangdaye.com.geometricweather.R$layout -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: java.lang.String DESCRIPTOR -cyanogenmod.app.LiveLockScreenManager: void cancel(int) -android.didikee.donate.R$color: int accent_material_dark -wangdaye.com.geometricweather.db.entities.WeatherEntity: long getPublishTime() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String weather -androidx.coordinatorlayout.R$attr: int layout_anchorGravity -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$300() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property SunSetDate -cyanogenmod.app.ICMStatusBarManager$Stub -androidx.constraintlayout.widget.R$id: int action_bar_spinner -io.reactivex.internal.queue.SpscArrayQueue: void soElement(int,java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.util.List value -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String o3 -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitation(java.lang.Float) -androidx.hilt.work.R$bool: int enable_system_foreground_service_default -androidx.recyclerview.widget.RecyclerView: void setRecycledViewPool(androidx.recyclerview.widget.RecyclerView$RecycledViewPool) -retrofit2.converter.gson.GsonResponseBodyConverter: java.lang.Object convert(okhttp3.ResponseBody) -androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat_Light -io.reactivex.Observable: io.reactivex.Observable take(long) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabView -okhttp3.internal.platform.Platform: java.util.logging.Logger logger -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherPhase -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -com.google.android.material.R$styleable: int MaterialCalendar_dayStyle -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_subtitle -com.google.android.material.R$dimen: int mtrl_textinput_start_icon_margin_end -okhttp3.internal.ws.RealWebSocket: boolean enqueuedClose -android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -io.reactivex.internal.util.NotificationLite: boolean isDisposable(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedHeightMajor +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerComplete() +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_toggle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogTheme +com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_content_include +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(java.lang.Iterable,io.reactivex.functions.Function) +com.google.android.material.R$styleable: int FloatingActionButton_elevation +com.google.android.material.R$attr: int behavior_expandedOffset +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: long serialVersionUID +androidx.lifecycle.extensions.R$drawable +com.amap.api.location.AMapLocation: java.lang.String B +okio.RealBufferedSink: okio.BufferedSink emit() +wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendDailyProvider +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String time +cyanogenmod.providers.CMSettings$Secure: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_24 +wangdaye.com.geometricweather.R$styleable: int PropertySet_android_visibility +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstVerticalBias +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_switchTextOn +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +com.google.android.material.R$layout: int text_view_with_line_height_from_style +com.turingtechnologies.materialscrollbar.R$attr: int numericModifiers +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign +cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_WAKE_SCREEN +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display4 +cyanogenmod.app.Profile: java.util.Map profileGroups +androidx.hilt.work.R$id: int tag_transition_group +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onComplete() +com.amap.api.fence.PoiItem: java.lang.String a +androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Title +okio.Buffer: okio.Buffer copyTo(okio.Buffer,long,long) +com.bumptech.glide.load.resource.gif.GifFrameLoader: void setOnEveryFrameReadyListener(com.bumptech.glide.load.resource.gif.GifFrameLoader$OnEveryFrameListener) +androidx.preference.R$styleable: int AppCompatTextView_drawableBottomCompat +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTodaysLow(double) +androidx.loader.R$styleable: int GradientColor_android_centerY +androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +wangdaye.com.geometricweather.search.Hilt_SearchActivity +com.google.android.material.R$id: int chip1 +cyanogenmod.weather.WeatherInfo$DayForecast$1: cyanogenmod.weather.WeatherInfo$DayForecast createFromParcel(android.os.Parcel) +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationMode getLocationMode() +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_removeProfile +io.reactivex.internal.util.NotificationLite: boolean isSubscription(java.lang.Object) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_ASSIST_LONG_PRESS_ACTION_VALIDATOR +com.jaredrummler.android.colorpicker.R$id: int action_bar_subtitle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableRightCompat +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) +okio.InflaterSource: int bufferBytesHeldByInflater +retrofit2.OkHttpCall$NoContentResponseBody: OkHttpCall$NoContentResponseBody(okhttp3.MediaType,long) +androidx.activity.R$id: int accessibility_custom_action_20 +android.didikee.donate.R$id: int search_src_text +androidx.constraintlayout.widget.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontVariationSettings +james.adaptiveicon.R$attr: int actionModeBackground +com.xw.repo.bubbleseekbar.R$attr: int closeIcon +cyanogenmod.weather.ICMWeatherManager: void cancelRequest(int) +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginBottom(int) +com.google.android.gms.base.R$string: int common_google_play_services_unsupported_text +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Title +okhttp3.internal.cache.DiskLruCache$3: java.util.Iterator delegate +com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context) +androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar_Small +androidx.viewpager.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.constraintlayout.widget.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$style: int Preference_PreferenceScreen +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetRight +androidx.customview.R$id: int forever +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +com.github.rahatarmanahmed.cpv.CircularProgressView$3: void onAnimationUpdate(android.animation.ValueAnimator) +androidx.appcompat.R$attr: int drawableSize +androidx.legacy.coreutils.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.R$drawable: int notif_temp_28 +wangdaye.com.geometricweather.R$drawable: int notif_temp_40 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_CheckBox +com.turingtechnologies.materialscrollbar.R$string: int mtrl_chip_close_icon_content_description +androidx.appcompat.R$style: int TextAppearance_AppCompat_Menu +androidx.lifecycle.LiveData$ObserverWrapper: boolean isAttachedTo(androidx.lifecycle.LifecycleOwner) +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark_normal_background +com.google.android.material.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_keylines +retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: long read(okio.Buffer,long) +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter open(int,java.lang.String) +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onAttach(android.os.IBinder) +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onNext(retrofit2.Response) +android.didikee.donate.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: ObservableAmb$AmbInnerObserver(io.reactivex.internal.operators.observable.ObservableAmb$AmbCoordinator,int,io.reactivex.Observer) +com.google.android.material.R$color: int background_floating_material_light +com.google.android.material.R$styleable: int ConstraintSet_barrierMargin +cyanogenmod.library.R$styleable: int LiveLockScreen_settingsActivity +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_tooltipForegroundColor +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getLtoSource() +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.ChineseCityEntity) +okio.RealBufferedSink: void flush() +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void signalConsumer() +retrofit2.http.Part +okhttp3.internal.cache.DiskLruCache$Snapshot: okhttp3.internal.cache.DiskLruCache this$0 +com.xw.repo.bubbleseekbar.R$attr: int queryHint +wangdaye.com.geometricweather.R$attr: int fabAlignmentMode +wangdaye.com.geometricweather.R$transition: R$transition() +okhttp3.OkHttpClient: int callTimeoutMillis() +androidx.room.MultiInstanceInvalidationService +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night +cyanogenmod.providers.CMSettings$Secure: java.util.Map VALIDATORS +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okhttp3.internal.http2.Hpack$Reader: okio.ByteString getName(int) +com.google.android.material.internal.NavigationMenuItemView +wangdaye.com.geometricweather.R$attr: int chipStartPadding +com.google.android.material.chip.Chip: void setTextEndPadding(float) +androidx.work.R$id: int right_icon +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Title +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +androidx.constraintlayout.widget.R$attr: int minWidth +wangdaye.com.geometricweather.R$string: int sp_widget_day_week_setting +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +james.adaptiveicon.R$styleable: int[] ViewBackgroundHelper +androidx.constraintlayout.widget.R$id: int search_button +com.turingtechnologies.materialscrollbar.R$attr: int useCompatPadding +com.jaredrummler.android.colorpicker.R$color: int secondary_text_disabled_material_light +androidx.lifecycle.ComputableLiveData$3: ComputableLiveData$3(androidx.lifecycle.ComputableLiveData) +com.google.android.material.R$attr: int buttonIconDimen +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_android_windowAnimationStyle +wangdaye.com.geometricweather.R$id: int dimensions +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_corner +cyanogenmod.app.ICustomTileListener$Stub$Proxy: ICustomTileListener$Stub$Proxy(android.os.IBinder) com.google.android.material.R$id: int textSpacerNoTitle -androidx.constraintlayout.widget.R$color: int material_grey_900 -cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.CustomTile getCustomTile() -james.adaptiveicon.R$styleable: int Toolbar_subtitleTextColor -androidx.hilt.work.R$id: int accessibility_action_clickable_span -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onComplete() -wangdaye.com.geometricweather.R$color: int mtrl_outlined_icon_tint -wangdaye.com.geometricweather.R$string: int sp_widget_daily_trend_setting -androidx.legacy.coreutils.R$styleable: int[] GradientColor -cyanogenmod.weatherservice.ServiceRequestResult$Builder: cyanogenmod.weatherservice.ServiceRequestResult build() -android.support.v4.os.ResultReceiver: int describeContents() -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Bridge -androidx.appcompat.R$attr: int paddingEnd -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_menu -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMargin -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarSize -androidx.appcompat.R$color: int material_grey_900 -com.jaredrummler.android.colorpicker.R$color: int abc_hint_foreground_material_dark -wangdaye.com.geometricweather.R$drawable: int ic_weather -com.google.android.material.R$dimen: int abc_action_bar_subtitle_top_margin_material -wangdaye.com.geometricweather.R$string: int feedback_black_text -com.google.android.material.R$color: int material_grey_900 -androidx.constraintlayout.widget.R$attr: int logo -com.turingtechnologies.materialscrollbar.R$drawable: int abc_tab_indicator_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int MenuItem_contentDescription -androidx.preference.R$styleable: int SwitchPreference_android_switchTextOn -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: $Gson$Types$GenericArrayTypeImpl(java.lang.reflect.Type) -okhttp3.internal.ws.RealWebSocket$1: okhttp3.internal.ws.RealWebSocket this$0 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.entities.DaoSession daoSession -android.didikee.donate.R$attr: int activityChooserViewStyle -androidx.appcompat.widget.AppCompatImageButton -wangdaye.com.geometricweather.R$layout: int test_toolbar_elevation -okhttp3.internal.http2.Settings: int[] values -com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_RadioButton -io.reactivex.Observable: io.reactivex.Single toSortedList(int) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setSnowPrecipitation(java.lang.Float) -org.greenrobot.greendao.DaoException: DaoException() -wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity: ClockDayDetailsWidgetConfigActivity() -androidx.preference.R$dimen: int abc_seekbar_track_progress_height_material -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetBottom -wangdaye.com.geometricweather.R$color: int material_slider_active_tick_marks_color -androidx.appcompat.R$styleable: int[] StateListDrawableItem -androidx.constraintlayout.widget.R$attr: int defaultDuration -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getEn_US() -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onComplete() -androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context,android.util.AttributeSet) -androidx.customview.R$drawable: int notification_bg_low -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ZEN_PRIORITY_ALLOW_LIGHTS_VALIDATOR -com.jaredrummler.android.colorpicker.R$attr: int radioButtonStyle -wangdaye.com.geometricweather.R$id: int mtrl_picker_title_text -com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$drawable: int notif_temp_123 -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_BATTERY_STYLE -wangdaye.com.geometricweather.R$attr: int text -com.google.gson.stream.JsonScope: int DANGLING_NAME -okhttp3.internal.publicsuffix.PublicSuffixDatabase -androidx.appcompat.R$style: int Widget_AppCompat_RatingBar_Indicator -okio.Buffer: int readIntLe() -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline5 -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -com.google.android.material.transformation.ExpandableBehavior: ExpandableBehavior() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial -okhttp3.Cache: long size() -com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature RealFeelTemperature -androidx.appcompat.R$drawable: int abc_seekbar_track_material -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -okio.Options: int intCount(okio.Buffer) -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$FramingSink sink -okhttp3.HttpUrl: java.lang.String encodedPath() -androidx.constraintlayout.widget.R$attr: int limitBoundsTo -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_visible -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_background -okhttp3.Response$Builder: okhttp3.Response$Builder networkResponse(okhttp3.Response) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void dispose() -wangdaye.com.geometricweather.db.entities.AlertEntity: long time -okhttp3.internal.http2.Http2Connection$3 -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_elevation -wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndContainer -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getTotal() -androidx.appcompat.R$dimen: int abc_button_padding_vertical_material -okhttp3.Cookie: boolean equals(java.lang.Object) -com.google.android.material.R$style: int Base_Widget_AppCompat_ListView_DropDown -com.jaredrummler.android.colorpicker.R$attr: int actionBarTabBarStyle -com.bumptech.glide.R$styleable: int ColorStateListItem_android_alpha -com.google.android.material.R$styleable: int[] MaterialButton -androidx.appcompat.R$styleable: int MenuItem_android_menuCategory -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String MONTH -wangdaye.com.geometricweather.db.entities.DaoSession: void clear() -androidx.appcompat.R$id: int submit_area -androidx.constraintlayout.widget.R$id: int notification_main_column -james.adaptiveicon.R$drawable: int abc_ic_arrow_drop_right_black_24dp -com.amap.api.location.AMapLocationQualityReport: com.amap.api.location.AMapLocationQualityReport clone() -com.google.android.material.R$styleable: int ProgressIndicator_circularRadius -androidx.work.R$layout: int custom_dialog -okhttp3.internal.io.FileSystem: boolean exists(java.io.File) -cyanogenmod.power.PerformanceManagerInternal: void cpuBoost(int) -androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver: ForceStopRunnable$BroadcastReceiver() -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void dispose() -com.google.android.material.R$style: int Widget_MaterialComponents_ShapeableImageView -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_divider_material -androidx.hilt.work.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.R$attr: int materialCalendarTheme -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: boolean validate(java.lang.String) -com.jaredrummler.android.colorpicker.R$color: int background_material_dark -android.didikee.donate.R$color: int abc_btn_colored_borderless_text_material -wangdaye.com.geometricweather.R$styleable: int[] CollapsingToolbarLayout -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String treeDescription -android.didikee.donate.R$styleable: int[] ActionMenuItemView -cyanogenmod.weatherservice.ServiceRequest: void fail() -wangdaye.com.geometricweather.R$styleable: int Transition_transitionFlags -com.google.gson.stream.JsonReader: int PEEKED_FALSE -wangdaye.com.geometricweather.R$dimen: int notification_subtext_size -cyanogenmod.profiles.ConnectionSettings: void processOverride(android.content.Context) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerNext(io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryInnerObserver) -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void setResource(io.reactivex.disposables.Disposable) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_editTextPreferenceStyle -androidx.legacy.coreutils.R$styleable: int[] FontFamily -okhttp3.internal.http2.Http2Connection: boolean isHealthy(long) -androidx.appcompat.R$drawable: int abc_btn_radio_material_anim -com.turingtechnologies.materialscrollbar.R$color: int primary_dark_material_dark -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CUSTOM_VALUES -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy TRANSFORMED -cyanogenmod.hardware.ThermalListenerCallback$State: ThermalListenerCallback$State() -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: ObservableReplay$UnboundedReplayBuffer(int) -wangdaye.com.geometricweather.R$string: int common_google_play_services_install_text -com.google.android.material.internal.NavigationMenuItemView: void setCheckable(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_checkboxStyle -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year -com.google.android.material.R$styleable: int TabLayout_tabIndicatorFullWidth -retrofit2.OkHttpCall$NoContentResponseBody -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setO3Desc(java.lang.String) -org.greenrobot.greendao.DaoException: DaoException(java.lang.String,java.lang.Throwable) -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayGammaCalibration -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.HistoryEntity) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_BottomSheet -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_divider_thickness -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_4 -com.xw.repo.bubbleseekbar.R$attr: int iconTint -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedWidthMajor -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type UNKNOWN -wangdaye.com.geometricweather.R$attr: int subMenuArrow -android.didikee.donate.R$style: int TextAppearance_AppCompat_Small_Inverse -okhttp3.Headers$Builder: Headers$Builder() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String timezone -wangdaye.com.geometricweather.R$id: int container_main_aqi_recyclerView -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void drainFused() -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context) -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_message_margin_horizontal -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_ttcIndex -androidx.lifecycle.FullLifecycleObserver: void onStart(androidx.lifecycle.LifecycleOwner) -com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector[] values() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String co -android.didikee.donate.R$style: int Widget_AppCompat_ActionButton -james.adaptiveicon.R$styleable: int TextAppearance_android_shadowDx -cyanogenmod.content.Intent: java.lang.String ACTION_PROTECTED -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_curveFit -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light_normal -android.didikee.donate.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -io.reactivex.Observable: io.reactivex.Observable delay(io.reactivex.ObservableSource,io.reactivex.functions.Function) -androidx.activity.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$bool -com.jaredrummler.android.colorpicker.R$layout: int abc_select_dialog_material -androidx.activity.R$color: int secondary_text_default_material_light -james.adaptiveicon.R$attr: int windowMinWidthMinor -androidx.preference.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -com.google.android.material.R$dimen: int design_bottom_navigation_item_max_width -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: int UnitType -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_Surface -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationX -wangdaye.com.geometricweather.R$attr: int expandedTitleMarginTop -androidx.preference.R$attr: int preferenceScreenStyle -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void complete() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getRagweedLevel() -cyanogenmod.weather.RequestInfo: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$dimen: int abc_text_size_body_2_material -com.loc.k: int e() -androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.Lifecycle mLifecycle -androidx.preference.R$attr: int fontProviderCerts -com.jaredrummler.android.colorpicker.R$dimen: int compat_notification_large_icon_max_height -okhttp3.internal.connection.RouteException: void addConnectException(java.io.IOException) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setPubTime(java.util.Date) -androidx.lifecycle.extensions.R$id: int dialog_button -wangdaye.com.geometricweather.settings.activities.SelectProviderActivity: SelectProviderActivity() -com.google.android.gms.dynamite.DynamiteModule$DynamiteLoaderClassLoader -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_16dp -okhttp3.internal.http.RealResponseBody: RealResponseBody(java.lang.String,long,okio.BufferedSource) -com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingRight() -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: long beginTime -com.google.android.material.R$dimen: int mtrl_card_spacing -com.xw.repo.bubbleseekbar.R$styleable: int ActionBarLayout_android_layout_gravity -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Button -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -okhttp3.internal.cache.CacheInterceptor$1: okio.BufferedSource val$source -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onError(java.lang.Throwable) -cyanogenmod.app.CustomTile$Builder: boolean mCollapsePanel -wangdaye.com.geometricweather.R$id: int path -wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_android_alpha -com.google.android.material.R$attr: int behavior_draggable -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_xml -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityCreated(android.app.Activity,android.os.Bundle) -com.baidu.location.e.h$a: com.baidu.location.e.h$a a -james.adaptiveicon.R$attr: int alertDialogCenterButtons -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType RAW -cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getProfile(android.os.ParcelUuid) -com.turingtechnologies.materialscrollbar.R$id: int masked -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setBackgroundColorStart(int) -com.google.android.material.R$color: int material_timepicker_button_stroke -com.google.android.material.R$color: int mtrl_btn_text_btn_bg_color_selector -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_1_material -androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context) -com.google.android.material.circularreveal.CircularRevealGridLayout: CircularRevealGridLayout(android.content.Context) -com.turingtechnologies.materialscrollbar.R$string: int abc_toolbar_collapse_description -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_arrowShaftLength -okhttp3.internal.http1.Http1Codec$AbstractSource: Http1Codec$AbstractSource(okhttp3.internal.http1.Http1Codec) -wangdaye.com.geometricweather.R$attr: int bsb_auto_adjust_section_mark +androidx.viewpager.R$dimen: int notification_top_pad_large_text +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableRightCompat +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_Solid +androidx.swiperefreshlayout.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String moonPhaseDescription +androidx.preference.R$styleable: int[] AlertDialog +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit valueOf(java.lang.String) +com.amap.api.fence.GeoFence$1: java.lang.Object[] newArray(int) +com.jaredrummler.android.colorpicker.R$styleable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: java.util.List getBrands() +okhttp3.Request$Builder: okhttp3.Request$Builder post(okhttp3.RequestBody) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getCityId() +wangdaye.com.geometricweather.R$attr: int dialogTheme +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: AccuMinuteResult$IntervalsBean() +androidx.swiperefreshlayout.R$styleable: int[] FontFamily +androidx.preference.R$styleable: int[] MenuGroup +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsModify(boolean) +androidx.appcompat.widget.AppCompatImageView: void setSupportImageTintList(android.content.res.ColorStateList) +okhttp3.Cache$2: java.util.Iterator delegate +com.google.android.material.R$attr: int windowFixedWidthMinor +com.google.android.gms.base.R$drawable: int googleg_disabled_color_18 +okhttp3.internal.connection.RouteSelector: boolean hasNextProxy() +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: boolean done +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconTint +okio.ByteString: okio.ByteString of(java.nio.ByteBuffer) +com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyleSmall +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.LocationEntity) +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_right_mtrl_light +androidx.preference.R$attr: int homeLayout +okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.WebSocketReader reader +com.google.android.material.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: java.lang.String getNotificationStyleName(android.content.Context) +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_normal +androidx.appcompat.R$string: int search_menu_title +james.adaptiveicon.R$attr: int theme +androidx.constraintlayout.widget.VirtualLayout +com.google.android.material.slider.BaseSlider: void setTickVisible(boolean) +androidx.preference.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +com.google.android.material.R$styleable: int FontFamilyFont_android_ttcIndex +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onComplete() +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dialog +androidx.work.R$id: int accessibility_custom_action_23 +com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_950 +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.constraintlayout.widget.R$string: int abc_menu_sym_shortcut_label +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void alternateService(int,java.lang.String,okio.ByteString,java.lang.String,int,long) +androidx.coordinatorlayout.R$id: int accessibility_custom_action_0 +com.xw.repo.bubbleseekbar.R$id: int action_text +androidx.constraintlayout.widget.R$integer: int cancel_button_image_alpha +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Alert_Bridge +androidx.transition.R$id: int notification_main_column +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property District +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontStyle +cyanogenmod.app.CustomTile: java.lang.String toString() +com.google.android.material.R$attr: int trackColorInactive +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_strokeColor +androidx.constraintlayout.widget.R$id: int decelerate +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: BaiduIPLocationResult$ContentBean$PointBean() +androidx.hilt.lifecycle.R$attr: int fontStyle +okhttp3.internal.ws.WebSocketProtocol: int CLOSE_NO_STATUS_CODE +okio.ForwardingSink: okio.Sink delegate +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button +com.github.rahatarmanahmed.cpv.CircularProgressView: void setIndeterminate(boolean) +okhttp3.internal.http2.Http2Stream: okhttp3.Headers takeHeaders() +com.google.android.material.circularreveal.CircularRevealLinearLayout +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView +com.google.android.material.R$styleable: int Layout_layout_constrainedWidth +androidx.appcompat.widget.AppCompatButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String name +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: boolean isDisposed() +androidx.customview.R$attr: int alpha +com.google.android.material.R$styleable: int KeyAttribute_transitionEasing +android.support.v4.os.IResultReceiver$Stub: android.support.v4.os.IResultReceiver asInterface(android.os.IBinder) +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Choice +james.adaptiveicon.R$color: int abc_tint_edittext +com.amap.api.fence.PoiItem$1: java.lang.Object createFromParcel(android.os.Parcel) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver(io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver) +cyanogenmod.themes.ThemeManager: void onClientDestroyed(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationMin() +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_to_on_mtrl_000 +wangdaye.com.geometricweather.R$drawable: int btn_radio_on_mtrl +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_unregisterChangeListener +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.lang.String unit +okio.BufferedSink: okio.BufferedSink write(byte[],int,int) okhttp3.FormBody$Builder: java.nio.charset.Charset charset -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Body1 -com.amap.api.location.LocationManagerBase: void startAssistantLocation(android.webkit.WebView) -io.reactivex.Observable: java.lang.Object blockingSingle(java.lang.Object) -androidx.preference.R$styleable: int DrawerArrowToggle_drawableSize -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_measureWithLargestChild -io.reactivex.internal.util.NotificationLite$DisposableNotification: long serialVersionUID -com.google.android.material.R$styleable: int ConstraintSet_pathMotionArc -androidx.appcompat.R$drawable: int abc_list_selector_holo_light -com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_900 -com.google.android.material.R$attr: int touchAnchorSide -com.google.android.material.R$drawable: int abc_textfield_search_default_mtrl_alpha -wangdaye.com.geometricweather.R$dimen: int design_fab_translation_z_pressed -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ASSIST_WAKE_SCREEN_VALIDATOR -wangdaye.com.geometricweather.R$id: int staticPostLayout -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy -wangdaye.com.geometricweather.R$string: int precipitation -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_orderInCategory -com.amap.api.location.APSService: void onDestroy() -androidx.swiperefreshlayout.R$drawable: int notification_bg_low_pressed -androidx.constraintlayout.widget.R$attr: int listPreferredItemHeight -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_light -com.google.android.material.R$styleable: int NavigationView_itemBackground -wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_elevation -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage ENCODE -androidx.appcompat.R$integer: int abc_config_activityDefaultDur -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties -com.google.android.material.textfield.TextInputLayout: void removeOnEditTextAttachedListener(com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener) -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver parent -okhttp3.internal.connection.RouteSelector: int nextProxyIndex -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_1 -wangdaye.com.geometricweather.R$attr: int bsb_thumb_color -com.amap.api.location.AMapLocation: int f(com.amap.api.location.AMapLocation,int) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_DropDown -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_showDividers -android.support.v4.app.INotificationSideChannel$Default: android.os.IBinder asBinder() -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_transitionPathRotate -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton -com.google.android.material.R$styleable: int SwitchCompat_switchMinWidth -com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context,android.util.AttributeSet,int) -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerColor -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$height -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: AccuCurrentResult$TemperatureSummary$Past24HourRange() -wangdaye.com.geometricweather.db.entities.HourlyEntity: HourlyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.util.List text -com.google.android.material.R$styleable: int Constraint_layout_constraintRight_creator -com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$id: int scrollable -androidx.viewpager2.R$dimen: int item_touch_helper_swipe_escape_velocity -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_48dp -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_title -com.amap.api.location.AMapLocation: java.lang.String f -androidx.activity.R$id: int accessibility_custom_action_15 -retrofit2.converter.gson.GsonResponseBodyConverter: com.google.gson.Gson gson -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit KPA -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -com.google.android.material.navigation.NavigationView: void setCheckedItem(android.view.MenuItem) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onError(java.lang.Throwable) -com.google.android.material.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_allowPresets -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_background -james.adaptiveicon.R$styleable: int TextAppearance_fontFamily -androidx.coordinatorlayout.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String weatherEnd -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float relativeHumidity -wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_background_color -androidx.appcompat.R$style: int Widget_Compat_NotificationActionText -com.amap.api.fence.GeoFence: int STATUS_UNKNOWN -okhttp3.Cache$2: java.lang.String next() -androidx.appcompat.widget.SearchView: void setOnSearchClickListener(android.view.View$OnClickListener) -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void drain() -wangdaye.com.geometricweather.R$attr: int cardViewStyle -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult -androidx.constraintlayout.widget.R$color: int abc_hint_foreground_material_dark -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_titleTextStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: void setUnit(java.lang.String) -androidx.fragment.R$id: int visible_removing_fragment_view_tag -com.amap.api.location.AMapLocationClientOption: long getLastLocationLifeCycle() -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties properties -james.adaptiveicon.R$id: int action_container -com.google.android.material.R$attr: int layout_constraintBaseline_creator -james.adaptiveicon.R$color: int abc_search_url_text_pressed -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -okhttp3.CertificatePinner: java.util.Set pins -wangdaye.com.geometricweather.R$attr: int perpendicularPath_percent -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_60 -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: ObservableTimeout$TimeoutFallbackObserver(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.ObservableSource) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver this$0 -wangdaye.com.geometricweather.R$dimen: int cpv_color_preference_large -com.baidu.location.e.l$b: void a(java.lang.StringBuffer,java.lang.String,java.lang.String,int) -com.google.android.material.R$styleable: int MotionLayout_motionDebug -wangdaye.com.geometricweather.R$color: int mtrl_tabs_legacy_text_color_selector -okhttp3.OkHttpClient$Builder: int writeTimeout -wangdaye.com.geometricweather.R$id: int item_weather_daily_air_progress -com.google.android.material.R$attr: int colorPrimarySurface -cyanogenmod.weather.CMWeatherManager$2$1: int val$status -com.google.android.gms.common.internal.ClientIdentity: android.os.Parcelable$Creator CREATOR -androidx.appcompat.widget.ActionMenuView: void setOverflowIcon(android.graphics.drawable.Drawable) -okhttp3.Authenticator$1: okhttp3.Request authenticate(okhttp3.Route,okhttp3.Response) -com.google.android.material.R$styleable: int KeyTrigger_motion_postLayoutCollision -cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onCustomTileRemoved -wangdaye.com.geometricweather.R$anim: int fragment_manange_pop_exit -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_barLength -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_top -cyanogenmod.app.PartnerInterface: java.lang.String MODIFY_SOUND_SETTINGS_PERMISSION -android.didikee.donate.R$attr: int dropDownListViewStyle -androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerColor -android.didikee.donate.R$attr: int actionModeCutDrawable -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabBarStyle -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox -androidx.appcompat.R$dimen: int compat_button_padding_horizontal_material -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_visible -androidx.vectordrawable.R$drawable -com.google.android.material.R$attr: int boxStrokeWidth -androidx.hilt.R$id: int tag_accessibility_clickable_spans -androidx.hilt.work.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind +com.google.android.material.R$styleable: int[] AppBarLayoutStates +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean forWebSocket +com.google.android.material.floatingactionbutton.FloatingActionButton: void setExpandedComponentIdHint(int) +androidx.constraintlayout.widget.R$id: int search_voice_btn +cyanogenmod.weatherservice.ServiceRequestResult$1: java.lang.Object[] newArray(int) +androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_icon_width +okhttp3.CacheControl: boolean immutable() +wangdaye.com.geometricweather.R$id: int SYM +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActivityChooserView +okio.Buffer: okio.Buffer emitCompleteSegments() +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean isEmpty() +com.bumptech.glide.manager.SupportRequestManagerFragment: SupportRequestManagerFragment() +androidx.preference.R$attr: int collapseIcon +io.reactivex.Observable: io.reactivex.Observable mergeArrayDelayError(int,int,io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.R$id: int submenuarrow +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder socket(java.net.Socket,java.lang.String,okio.BufferedSource,okio.BufferedSink) +androidx.appcompat.R$id: int search_voice_btn +okhttp3.internal.platform.Platform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.SSLSocketFactory) +okhttp3.internal.http2.Http2Writer: void headers(int,java.util.List) +cyanogenmod.externalviews.ExternalView$4: ExternalView$4(cyanogenmod.externalviews.ExternalView) +io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.google.android.material.R$styleable: int Spinner_android_dropDownWidth +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_BACKGROUND +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_light +com.google.android.material.R$styleable: int KeyAttribute_motionTarget +james.adaptiveicon.R$layout: int select_dialog_multichoice_material +androidx.constraintlayout.widget.R$styleable: int[] GradientColor +com.google.android.material.R$integer: int mtrl_card_anim_duration_ms +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorError +com.amap.api.fence.GeoFence: int STATUS_LOCFAIL +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List phenomenonsItems +androidx.vectordrawable.animated.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.R$drawable: int abc_control_background_material +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitationDuration +com.google.android.material.internal.FlowLayout: void setLineSpacing(int) +androidx.appcompat.resources.R$style +android.didikee.donate.R$attr: int colorButtonNormal +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_gapBetweenBars +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String toValue(java.util.List) +com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_material_light +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_framePosition +com.amap.api.fence.GeoFence: int ERROR_CODE_FAILURE_AUTH +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: float mMax +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginEnd +androidx.appcompat.widget.SearchView$SearchAutoComplete: void setSearchView(androidx.appcompat.widget.SearchView) +wangdaye.com.geometricweather.R$dimen: int content_text_size +androidx.appcompat.R$attr: int logoDescription +androidx.constraintlayout.widget.R$attr: int defaultState +android.didikee.donate.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +androidx.appcompat.R$styleable: int MenuItem_android_title +okhttp3.RequestBody +androidx.appcompat.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.R$attr: int titleTextAppearance +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ShapeableImageView +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetStartWithNavigation +com.turingtechnologies.materialscrollbar.R$color: int cardview_shadow_end_color +androidx.vectordrawable.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.R$drawable: int notif_temp_70 +wangdaye.com.geometricweather.R$string: int glide +wangdaye.com.geometricweather.R$string: int daily_overview +okhttp3.internal.Version +androidx.preference.R$styleable: int AppCompatTheme_buttonBarButtonStyle +com.amap.api.location.AMapLocation: void setStreet(java.lang.String) +com.google.android.material.R$attr: int contentPaddingBottom +wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_text_color +androidx.constraintlayout.widget.R$attr: int dividerVertical +okhttp3.Request: java.lang.Object tag(java.lang.Class) com.google.android.material.datepicker.DateValidatorPointForward -org.greenrobot.greendao.AbstractDao: java.lang.Object loadCurrentOther(org.greenrobot.greendao.AbstractDao,android.database.Cursor,int) -androidx.constraintlayout.widget.R$attr: int actionModeWebSearchDrawable -com.google.android.gms.base.R$attr: int circleCrop -androidx.constraintlayout.widget.R$styleable: int MockView_mock_label -androidx.core.R$color: int androidx_core_secondary_text_default_material_light -androidx.vectordrawable.animated.R$attr: int alpha -com.google.android.material.R$attr: int chipIconEnabled -androidx.preference.R$dimen: int abc_text_size_menu_header_material -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory LOW -wangdaye.com.geometricweather.R$id: int start -wangdaye.com.geometricweather.R$color: int abc_color_highlight_material -james.adaptiveicon.R$attr: int listChoiceBackgroundIndicator -wangdaye.com.geometricweather.R$drawable: int ic_cold -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_divider -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: java.lang.String styleId -wangdaye.com.geometricweather.R$drawable: int notif_temp_117 -cyanogenmod.themes.ThemeChangeRequest: cyanogenmod.themes.ThemeChangeRequest$RequestType getReqeustType() -com.jaredrummler.android.colorpicker.R$attr: int cpv_alphaChannelVisible -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: ObservableMergeWithCompletable$MergeWithObserver(io.reactivex.Observer) -wangdaye.com.geometricweather.common.basic.models.weather.Alert: long getTime() -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language getInstance(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain Rain -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: double lon -androidx.constraintlayout.widget.R$attr: int flow_firstVerticalStyle -okhttp3.Request$Builder: okhttp3.Request$Builder method(java.lang.String,okhttp3.RequestBody) -okhttp3.internal.platform.Android10Platform: okhttp3.internal.platform.Platform buildIfSupported() -okhttp3.Headers$Builder: okhttp3.Headers build() -okio.Pipe$PipeSink: void close() -com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void innerSuccess(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver,java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_lightOnTouch -androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_indicator_material -com.google.android.material.R$attr: int layout_constraintHeight_max -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_CBC_SHA -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_expanded -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: ObservablePublishSelector$TargetObserver(io.reactivex.Observer) -androidx.lifecycle.ProcessLifecycleOwner$2 -com.google.android.material.R$styleable: int Chip_closeIconEndPadding -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void removeSome(int) -com.google.android.material.R$string: int mtrl_picker_text_input_date_hint -wangdaye.com.geometricweather.R$id: int easeOut -androidx.constraintlayout.widget.Placeholder: android.view.View getContent() -androidx.appcompat.R$style: int Platform_AppCompat -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_visible -wangdaye.com.geometricweather.R$id: int position -androidx.lifecycle.extensions.R$attr: int alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String getUnit() -wangdaye.com.geometricweather.R$styleable: int[] Transform -wangdaye.com.geometricweather.R$styleable: int[] AppBarLayoutStates -com.google.android.material.R$color: int mtrl_card_view_ripple -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber) -androidx.vectordrawable.animated.R$color -io.reactivex.internal.schedulers.RxThreadFactory: long serialVersionUID -com.xw.repo.bubbleseekbar.R$id: int split_action_bar -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_popupBackground -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -wangdaye.com.geometricweather.R$attr: int actionModeSelectAllDrawable -androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableItem -com.google.android.material.R$styleable: int ConstraintSet_flow_firstVerticalStyle -androidx.hilt.work.R$anim: int fragment_fade_exit -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constrainedWidth -cyanogenmod.externalviews.ExternalViewProperties: int mWidth -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_switchTextOff -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: java.lang.String Unit -com.google.android.material.R$attr: int yearStyle -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties -androidx.appcompat.R$color: int abc_hint_foreground_material_light -androidx.constraintlayout.widget.R$styleable: int Transition_constraintSetStart -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event valueOf(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_seekBarStyle -androidx.preference.R$drawable: int ic_arrow_down_24dp -cyanogenmod.providers.CMSettings$Global: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) -wangdaye.com.geometricweather.R$id: int activity_weather_daily_title -okio.HashingSource: long read(okio.Buffer,long) -androidx.preference.R$attr: int keylines -com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context) -androidx.preference.R$styleable: int SwitchPreferenceCompat_switchTextOff -com.turingtechnologies.materialscrollbar.R$attr: int boxBackgroundMode -com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onAnimationReset() -wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: DaoMaster$OpenHelper(android.content.Context,java.lang.String) -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_5 -james.adaptiveicon.R$attr: int showAsAction -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: boolean isDisposed() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_minWidth -wangdaye.com.geometricweather.R$drawable: int notify_panel_notification_icon_bg -james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog_Alert -androidx.appcompat.R$styleable: int SearchView_android_inputType -androidx.legacy.coreutils.R$color: int notification_icon_bg_color -com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Dialog -okio.SegmentPool: void recycle(okio.Segment) -com.google.android.material.R$attr: int chipCornerRadius -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_3 -okio.RealBufferedSource: long indexOf(okio.ByteString) -androidx.appcompat.R$styleable: int SearchView_layout +io.reactivex.Observable: io.reactivex.Observable concatMapEager(io.reactivex.functions.Function) +androidx.swiperefreshlayout.R$id: int line3 +androidx.appcompat.R$attr: int subtitleTextStyle +com.google.android.material.R$color: int abc_secondary_text_material_dark +android.didikee.donate.R$id: int top +androidx.hilt.lifecycle.R$id: R$id() +com.google.android.material.chip.Chip: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +androidx.hilt.lifecycle.R$layout: int custom_dialog +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: BaseTransientBottomBar$SnackbarBaseLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.chip.Chip: float getTextStartPadding() +wangdaye.com.geometricweather.R$styleable: int MaterialButton_backgroundTint +okhttp3.CacheControl$Builder: int minFreshSeconds +com.turingtechnologies.materialscrollbar.R$attr: int contentDescription +androidx.core.R$dimen: int notification_small_icon_background_padding +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleTint +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ProgressBar_Horizontal +wangdaye.com.geometricweather.R$id: int widget_day_symbol +com.google.android.material.R$style: int Theme_MaterialComponents_Light_NoActionBar +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA +wangdaye.com.geometricweather.R$string: int feedback_no_data +androidx.legacy.coreutils.R$style: int Widget_Compat_NotificationActionContainer +okhttp3.internal.connection.StreamAllocation: okhttp3.Address address +androidx.appcompat.R$attr: int singleChoiceItemLayout +androidx.appcompat.R$id: int action_bar_activity_content +com.google.android.material.R$id: int TOP_END +androidx.preference.R$attr: int dialogLayout +androidx.constraintlayout.widget.R$id: int animateToStart +androidx.preference.R$string: int abc_search_hint +cyanogenmod.app.ProfileManager: cyanogenmod.app.IProfileManager getService() +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void goAway(int,okhttp3.internal.http2.ErrorCode,okio.ByteString) +wangdaye.com.geometricweather.R$dimen: int abc_alert_dialog_button_dimen +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: int active +cyanogenmod.externalviews.KeyguardExternalView$2: KeyguardExternalView$2(cyanogenmod.externalviews.KeyguardExternalView) +cyanogenmod.weatherservice.ServiceRequestResult$Builder +android.support.v4.os.IResultReceiver$Stub$Proxy: void send(int,android.os.Bundle) +wangdaye.com.geometricweather.main.utils.MainPalette +android.didikee.donate.R$styleable: int[] Toolbar +androidx.viewpager2.widget.ViewPager2: void setLayoutDirection(int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionModeOverlay +androidx.constraintlayout.widget.R$styleable: int ActionBar_popupTheme +androidx.swiperefreshlayout.R$styleable: int[] ColorStateListItem +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostStarted(android.app.Activity) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_CBC_SHA +androidx.appcompat.R$attr: int listPreferredItemPaddingStart +com.google.android.material.R$attr: int materialCalendarHeaderDivider +com.bumptech.glide.R$styleable: int GradientColor_android_startY +com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.badge.BadgeDrawable getBadge() +okhttp3.Response: okhttp3.Response networkResponse() +com.google.android.material.R$styleable: int ChipGroup_singleSelection +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowDx +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startX +com.google.android.material.R$id: int decor_content_parent +androidx.fragment.R$drawable: int notification_bg_low_normal +com.google.android.material.R$color: int mtrl_fab_icon_text_color_selector +androidx.cardview.widget.CardView: void setMinimumWidth(int) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconCheckable +cyanogenmod.externalviews.KeyguardExternalView: void setProviderComponent(android.content.ComponentName) +okhttp3.internal.ws.WebSocketProtocol: int CLOSE_CLIENT_GOING_AWAY +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_3 +okhttp3.internal.http2.Http2Stream: Http2Stream(int,okhttp3.internal.http2.Http2Connection,boolean,boolean,okhttp3.Headers) +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetTop +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animAutostart +wangdaye.com.geometricweather.R$string: int widget_clock_day_horizontal +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_showDividers +androidx.constraintlayout.helper.widget.Flow: void setOrientation(int) +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startX +cyanogenmod.app.IPartnerInterface$Stub$Proxy +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +com.turingtechnologies.materialscrollbar.R$attr: int backgroundSplit +com.google.android.material.theme.MaterialComponentsViewInflater +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_font +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.Map rights +wangdaye.com.geometricweather.R$id: int item_alert_subtitle +org.greenrobot.greendao.AbstractDao: AbstractDao(org.greenrobot.greendao.internal.DaoConfig,org.greenrobot.greendao.AbstractDaoSession) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +cyanogenmod.app.ThemeVersion: java.lang.String THEME_VERSION_CLASS_NAME +androidx.recyclerview.R$id: int notification_background +okhttp3.internal.http.RealInterceptorChain: okhttp3.Call call +retrofit2.KotlinExtensions$await$2$2 +android.didikee.donate.R$styleable: int SwitchCompat_showText +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_GPS +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType USER_REQUEST_MIXNMATCH +androidx.preference.R$dimen: int fastscroll_margin +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Caption +com.google.gson.stream.JsonReader: int PEEKED_LONG +wangdaye.com.geometricweather.R$id: int graph +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String co +androidx.viewpager2.R$dimen: int fastscroll_default_thickness +com.google.android.material.R$attr: int drawableRightCompat +androidx.preference.R$color: int abc_primary_text_disable_only_material_dark +okhttp3.internal.http2.PushObserver: void onReset(int,okhttp3.internal.http2.ErrorCode) +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String getWeatherPhase() +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarStyle +james.adaptiveicon.R$drawable: int abc_ic_star_half_black_36dp +androidx.appcompat.R$style: int Widget_AppCompat_ImageButton +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionMenuTextAppearance +com.google.android.material.R$dimen: int mtrl_tooltip_cornerSize +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderCerts +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder sslSocketFactory(javax.net.ssl.SSLSocketFactory,javax.net.ssl.X509TrustManager) +wangdaye.com.geometricweather.R$id: int widget_week_temp_5 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitation() +com.google.android.material.R$styleable: int Slider_haloRadius +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_splitTrack +cyanogenmod.hardware.IThermalListenerCallback$Stub +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +okhttp3.CipherSuite: java.util.List forJavaNames(java.lang.String[]) +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +okhttp3.Address: java.util.List connectionSpecs +com.google.android.material.circularreveal.CircularRevealGridLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircle +wangdaye.com.geometricweather.R$styleable: int ActionBar_indeterminateProgressStyle +com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat +com.google.android.material.R$attr: int chipBackgroundColor +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth +androidx.transition.R$color: int notification_action_color_filter +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTypeface(android.graphics.Typeface) +com.amap.api.location.AMapLocationClientOption: long getLastLocationLifeCycle() +androidx.constraintlayout.widget.R$styleable: int MenuItem_showAsAction +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitationProbability() +com.google.android.material.R$attr: int itemShapeFillColor +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getAqiText() +wangdaye.com.geometricweather.R$styleable: int Slider_thumbStrokeColor +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelMenuListTheme +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: int capacityHint +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconPadding +io.reactivex.Observable: io.reactivex.Observable switchMapMaybe(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$styleable: int PopupWindow_android_popupAnimationStyle +androidx.drawerlayout.R$attr: int fontProviderAuthority +androidx.appcompat.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: long val$n +cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(int,java.lang.String,int,java.lang.String) +wangdaye.com.geometricweather.R$attr: int bsb_second_track_color +com.bumptech.glide.R$color: int notification_icon_bg_color +com.jaredrummler.android.colorpicker.R$color: int material_deep_teal_200 +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_normal +com.xw.repo.bubbleseekbar.R$attr: int titleTextAppearance +android.didikee.donate.R$attr: int progressBarPadding +wangdaye.com.geometricweather.R$id: int beginning +com.jaredrummler.android.colorpicker.R$attr: int autoSizeTextType +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy[] values() +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: java.lang.Object singleItem +cyanogenmod.profiles.RingModeSettings: boolean mDirty +com.google.android.material.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled +androidx.constraintlayout.widget.R$id: int stop +wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_width +io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.SingleSource) +android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedHeightMinor +wangdaye.com.geometricweather.main.layouts.MainLayoutManager: MainLayoutManager() +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: java.lang.Object mLatest +okhttp3.Address: okhttp3.Dns dns() +okio.Segment: okio.Segment unsharedCopy() +com.google.android.material.R$styleable: int ActionBar_navigationMode +androidx.lifecycle.ProcessLifecycleOwnerInitializer +androidx.work.impl.utils.futures.AbstractFuture: androidx.work.impl.utils.futures.AbstractFuture$Waiter waiters +com.google.android.material.R$color: int mtrl_tabs_colored_ripple_color +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemIconSize() +androidx.vectordrawable.animated.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Small_Inverse +androidx.core.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$drawable: int abc_text_cursor_material +com.google.android.material.R$color: int abc_search_url_text_selected +androidx.constraintlayout.widget.R$attr: int paddingTopNoTitle +okhttp3.CipherSuite: java.util.Comparator ORDER_BY_NAME +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Menu +com.google.android.material.chip.Chip: void setCloseIconTint(android.content.res.ColorStateList) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindLevel(java.lang.String) +wangdaye.com.geometricweather.R$array: int notification_styles +wangdaye.com.geometricweather.R$string: int settings_title_precipitation_notification_switch +androidx.preference.R$dimen: int abc_dialog_corner_radius_material +androidx.cardview.widget.CardView: void setCardElevation(float) +com.google.android.material.R$layout: int abc_action_mode_bar +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectionPool(okhttp3.ConnectionPool) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.google.android.material.R$styleable: int AppCompatTextView_textLocale +com.google.android.gms.base.R$id: int adjust_height +android.didikee.donate.R$color: int primary_material_light +androidx.appcompat.view.menu.ActionMenuItemView +androidx.coordinatorlayout.R$id: int blocking +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableDelegateState +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Small +cyanogenmod.app.ICustomTileListener$Stub: cyanogenmod.app.ICustomTileListener asInterface(android.os.IBinder) +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$id: int jumpToEnd +cyanogenmod.app.LiveLockScreenInfo$1: java.lang.Object[] newArray(int) +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BACKGROUND +androidx.appcompat.R$styleable: int Toolbar_contentInsetStart +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionBarLayout +wangdaye.com.geometricweather.R$id: int widget_clock_day_wind +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void dispose() +androidx.appcompat.R$styleable: int MenuItem_android_icon +androidx.constraintlayout.widget.R$styleable: int ActionBar_navigationMode +io.reactivex.internal.operators.observable.ObservableReplay$Node: java.lang.Object value +androidx.appcompat.widget.AppCompatTextView: android.content.res.ColorStateList getSupportCompoundDrawablesTintList() +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean) +androidx.coordinatorlayout.R$drawable: int notification_template_icon_bg +okhttp3.internal.Util: javax.net.ssl.X509TrustManager platformTrustManager() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_tooltipFrameBackground +com.google.android.material.R$dimen: int highlight_alpha_material_dark +androidx.constraintlayout.widget.R$attr: int numericModifiers +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_92 +james.adaptiveicon.R$styleable: int AlertDialog_listLayout +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context,android.util.AttributeSet,int) +androidx.work.R$id: int title +androidx.vectordrawable.animated.R$id: int chronometer +com.google.android.material.R$attr: int actionBarTheme +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getHeaderHeight() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.swiperefreshlayout.R$dimen: int notification_action_text_size +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: int offset +okio.Okio +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Subhead +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_transparent_bg_color +com.google.android.material.R$attr: int maxLines +com.google.android.material.R$styleable: int ConstraintSet_motionStagger +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconContentDescription +wangdaye.com.geometricweather.R$string: int feedback_today_precipitation_alert +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_percent +androidx.lifecycle.ProcessLifecycleOwner: void attach(android.content.Context) +androidx.appcompat.R$style: int RtlOverlay_DialogWindowTitle_AppCompat com.google.android.material.R$id: int accessibility_custom_action_30 -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListPopupWindow -com.github.rahatarmanahmed.cpv.R: R() -androidx.constraintlayout.widget.R$attr: int constraints -com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_Surface -android.didikee.donate.R$drawable: int abc_ic_voice_search_api_material -androidx.preference.R$styleable: int ActionBar_contentInsetRight -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification -androidx.appcompat.R$drawable: int abc_btn_radio_to_on_mtrl_000 -androidx.dynamicanimation.R$attr: int ttcIndex -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RelativeHumidity -androidx.vectordrawable.R$string: int status_bar_notification_info_overflow -io.reactivex.internal.util.ExceptionHelper$Termination -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -android.support.v4.os.ResultReceiver$MyResultReceiver: void send(int,android.os.Bundle) -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_checkableBehavior -com.amap.api.fence.DistrictItem: java.util.List getPolyline() -wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_small_component -com.google.android.material.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.db.entities.HistoryEntity: HistoryEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,int,int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_collapsed -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: long serialVersionUID -androidx.constraintlayout.widget.R$styleable: int Variant_region_heightMoreThan -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: double Value -androidx.constraintlayout.widget.R$color: int material_deep_teal_200 -okhttp3.internal.http2.Http2Connection: long degradedPingsSent -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul24H -androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.R$color: int abc_primary_text_material_dark -cyanogenmod.hardware.CMHardwareManager: java.lang.String getLtoSource() -com.google.android.material.datepicker.MaterialTextInputPicker -androidx.constraintlayout.widget.R$color: int abc_background_cache_hint_selector_material_dark -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_9 -com.turingtechnologies.materialscrollbar.R$id: int action_bar_title -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void completion() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconCheckable -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customDimension -androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontStyle -androidx.core.R$id: int line3 -androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Light -wangdaye.com.geometricweather.common.ui.widgets.TagView: int getCheckedBackgroundColor() -androidx.hilt.R$id: int accessibility_custom_action_23 -com.jaredrummler.android.colorpicker.R$attr: int actionModePasteDrawable -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 -com.xw.repo.bubbleseekbar.R$attr: int buttonTint -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: double Value -com.google.android.material.R$attr: int fontWeight -cyanogenmod.themes.ThemeChangeRequest$1: cyanogenmod.themes.ThemeChangeRequest createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$styleable: int[] FragmentContainerView -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_cut_mtrl_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: double Value -wangdaye.com.geometricweather.R$attr: int backgroundTintMode -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderPackage -androidx.appcompat.R$styleable: int CompoundButton_buttonTintMode -com.jaredrummler.android.colorpicker.R$attr: int font -com.jaredrummler.android.colorpicker.R$attr: int numericModifiers -okhttp3.WebSocket$Factory -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarDivider -com.jaredrummler.android.colorpicker.R$layout: int select_dialog_item_material -cyanogenmod.providers.CMSettings$Secure: java.lang.String ADB_PORT -wangdaye.com.geometricweather.R$attr: int staggered -androidx.viewpager.R$id: int icon_group -cyanogenmod.app.CMContextConstants$Features: java.lang.String PROFILES -com.xw.repo.bubbleseekbar.R$anim: int abc_popup_exit -androidx.appcompat.widget.FitWindowsLinearLayout: FitWindowsLinearLayout(android.content.Context) -com.google.android.material.R$dimen: int abc_action_button_min_width_material -com.google.android.material.slider.RangeSlider: void setThumbRadius(int) -okhttp3.internal.platform.OptionalMethod: java.lang.reflect.Method getPublicMethod(java.lang.Class,java.lang.String,java.lang.Class[]) -cyanogenmod.externalviews.ExternalView$2: int val$height -com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.graphics.drawable.Drawable getItemBackground() -androidx.constraintlayout.widget.R$layout: int select_dialog_multichoice_material -androidx.appcompat.widget.AlertDialogLayout: AlertDialogLayout(android.content.Context) -wangdaye.com.geometricweather.db.entities.LocationEntity: void setWeatherSource(wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitation -androidx.preference.R$styleable: int Preference_android_widgetLayout -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabBar -okhttp3.OkHttpClient: okhttp3.CookieJar cookieJar() -androidx.core.R$id: int accessibility_custom_action_3 -okio.Buffer: okio.BufferedSink write(okio.Source,long) -com.google.android.material.internal.NavigationMenuItemView: void setHorizontalPadding(int) -okhttp3.Cookie: java.util.List parseAll(okhttp3.HttpUrl,okhttp3.Headers) -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerReceiver -androidx.appcompat.widget.AppCompatCheckBox: int getCompoundPaddingLeft() -androidx.constraintlayout.widget.R$id: int textSpacerNoTitle -com.jaredrummler.android.colorpicker.R$bool: int abc_allow_stacked_button_bar -com.xw.repo.bubbleseekbar.R$bool -com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_end_inner_color -com.github.rahatarmanahmed.cpv.R$bool: int cpv_default_is_indeterminate -com.google.android.material.R$attr: int onPositiveCross -okhttp3.internal.http.HttpDate: java.lang.ThreadLocal STANDARD_DATE_FORMAT -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getShowMotionSpec() -androidx.appcompat.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar -wangdaye.com.geometricweather.R$styleable: int PropertySet_layout_constraintTag -wangdaye.com.geometricweather.R$dimen: int abc_search_view_preferred_width -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -wangdaye.com.geometricweather.R$drawable: int ic_android -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: AtmoAuraQAResult$MultiDaysIndexs$MultiIndex() -android.didikee.donate.R$attr: int windowActionModeOverlay -james.adaptiveicon.R$id: int time -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBaseline_creator -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String mslp -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitation -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer direction -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMenuView -com.google.android.material.R$styleable: int[] SnackbarLayout -com.google.android.material.R$attr: int percentHeight -cyanogenmod.weatherservice.ServiceRequest: void cancel() -androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -cyanogenmod.hardware.ICMHardwareService -com.google.gson.FieldNamingPolicy$2: FieldNamingPolicy$2(java.lang.String,int) -android.didikee.donate.R$styleable: int TextAppearance_android_shadowDx -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_end -okhttp3.Response$Builder: okhttp3.Response$Builder cacheResponse(okhttp3.Response) +androidx.appcompat.widget.Toolbar: void setCollapseContentDescription(java.lang.CharSequence) +androidx.constraintlayout.widget.R$layout: int select_dialog_singlechoice_material +io.reactivex.internal.observers.LambdaObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.core.R$id: int action_image +androidx.customview.view.AbsSavedState +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_actionTextColorAlpha +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation[] values() +io.reactivex.internal.util.VolatileSizeArrayList +wangdaye.com.geometricweather.R$string: int aqi_4 +wangdaye.com.geometricweather.R$drawable: int notif_temp_84 +androidx.constraintlayout.widget.R$styleable: int OnClick_clickAction +wangdaye.com.geometricweather.R$layout: int cpv_color_item_circle +wangdaye.com.geometricweather.R$styleable: int Preference_key +okhttp3.EventListener$Factory +okio.RealBufferedSource: long read(okio.Buffer,long) +com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_track_material +cyanogenmod.os.Build$CM_VERSION_CODES +androidx.appcompat.R$color: int primary_dark_material_light +okio.Segment: int SIZE +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_lunar +wangdaye.com.geometricweather.R$attr: int colorButtonNormal +com.amap.api.location.UmidtokenInfo: long e +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_pre_l_text_clip_padding +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getRagweedLevel() +wangdaye.com.geometricweather.R$string: int feedback_updated_in_background +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowMinWidthMinor +androidx.viewpager2.R$id: int accessibility_custom_action_25 +com.google.android.gms.internal.location.zzbc: android.os.Parcelable$Creator CREATOR androidx.hilt.R$styleable: int ColorStateListItem_alpha -com.google.android.gms.common.api.internal.zaab -okhttp3.internal.connection.RouteSelector$Selection: RouteSelector$Selection(java.util.List) -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_WIND -androidx.preference.R$styleable: int SearchView_searchIcon -androidx.vectordrawable.R$color: R$color() -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language GREEK -androidx.preference.Preference: Preference(android.content.Context) -androidx.appcompat.R$id: int search_src_text -androidx.preference.R$color: int material_grey_800 -cyanogenmod.app.ProfileGroup: void setSoundOverride(android.net.Uri) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotation -com.turingtechnologies.materialscrollbar.R$id: int group_divider -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long count -com.google.android.material.R$styleable: int LinearLayoutCompat_android_gravity -wangdaye.com.geometricweather.R$color: int colorTextGrey -com.google.android.material.R$attr: int drawableEndCompat -okhttp3.CertificatePinner$Pin: CertificatePinner$Pin(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setZh_CN(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int shortcuts_refresh_foreground -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemPaddingLeft -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_DarkActionBar -io.reactivex.Observable: java.lang.Iterable blockingNext() -androidx.transition.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -androidx.hilt.lifecycle.R$styleable: int Fragment_android_name +androidx.preference.R$dimen: int abc_disabled_alpha_material_dark +com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_toTopOf +androidx.lifecycle.ClassesInfoCache$MethodReference: int hashCode() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric Metric +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endX +com.google.android.material.slider.BaseSlider: void removeOnChangeListener(com.google.android.material.slider.BaseOnChangeListener) +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setDropDownBackgroundResource(int) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: void setGravitySensorEnabled(boolean) +wangdaye.com.geometricweather.R$style: int Base_AlertDialog_AppCompat_Light +androidx.core.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getBackgroundColorEnd() +androidx.appcompat.R$string: int abc_capital_on +com.bumptech.glide.load.engine.GlideException: void printStackTrace() +james.adaptiveicon.R$id: int search_badge +wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context,android.util.AttributeSet,int) +io.reactivex.Observable: io.reactivex.Observable mergeArray(io.reactivex.ObservableSource[]) +androidx.appcompat.widget.AppCompatCheckBox: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onComplete() +wangdaye.com.geometricweather.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +androidx.core.R$id: int accessibility_custom_action_10 +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onComplete() +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_colored_material +androidx.preference.R$drawable: int abc_ic_ab_back_material +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTitle(java.lang.CharSequence) +okhttp3.internal.http2.Header: okio.ByteString TARGET_PATH +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_menu_item +wangdaye.com.geometricweather.R$array: int pressure_unit_values +androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_alpha +okhttp3.internal.http2.Http2Reader$Handler: void alternateService(int,java.lang.String,okio.ByteString,java.lang.String,int,long) +wangdaye.com.geometricweather.R$styleable: int[] AppCompatSeekBar +androidx.customview.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +cyanogenmod.app.ICustomTileListener$Stub: android.os.IBinder asBinder() +cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(android.os.Parcel,cyanogenmod.app.Profile$1) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_background_transition_holo_light +com.jaredrummler.android.colorpicker.R$attr: int contentInsetStart +wangdaye.com.geometricweather.R$string: int key_card_style +okio.InflaterSource: boolean closed +com.google.android.material.transformation.FabTransformationScrimBehavior +io.reactivex.disposables.ReferenceDisposable: void onDisposed(java.lang.Object) +cyanogenmod.app.CMContextConstants$Features: java.lang.String WEATHER_SERVICES +androidx.hilt.R$color +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Dialog +androidx.preference.R$styleable: int View_android_focusable +androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_alpha +james.adaptiveicon.R$attr: int showTitle +com.amap.api.location.DPoint: double b +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_textAllCaps +androidx.constraintlayout.widget.R$dimen: int compat_button_padding_horizontal_material +cyanogenmod.app.CMTelephonyManager: java.lang.String TAG +io.reactivex.internal.queue.SpscArrayQueue: boolean offer(java.lang.Object,java.lang.Object) +okhttp3.OkHttpClient: boolean retryOnConnectionFailure() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Summary +wangdaye.com.geometricweather.R$color: int tooltip_background_dark +okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte EXCEPTION_MARKER +androidx.constraintlayout.utils.widget.ImageFilterButton: void setSaturation(float) +okhttp3.RealCall: okhttp3.RealCall newRealCall(okhttp3.OkHttpClient,okhttp3.Request,boolean) +cyanogenmod.app.CustomTile: cyanogenmod.app.CustomTile$ExpandedStyle expandedStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldIndex(java.lang.Integer) +wangdaye.com.geometricweather.R$string: int feedback_location_list_cannot_be_null +retrofit2.KotlinExtensions$suspendAndThrow$1: int label +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: long serialVersionUID +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void accept(java.lang.Object) +com.google.android.gms.common.internal.safeparcel.SafeParcelable: java.lang.String NULL +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int Icon +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_maxHeight +cyanogenmod.app.IPartnerInterface: void shutdown() +io.reactivex.internal.util.NotificationLite: boolean isError(java.lang.Object) +wangdaye.com.geometricweather.R$string: int item_view_role_description +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int otherState +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthResource(int) +io.reactivex.Observable: io.reactivex.Single count() +com.google.android.material.R$attr: int constraintSetEnd +com.google.android.material.transformation.FabTransformationScrimBehavior: FabTransformationScrimBehavior() +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getCityId() +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation BOTTOM +androidx.constraintlayout.widget.R$attr: int layout_editor_absoluteY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setCurrent(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean) +androidx.lifecycle.extensions.R$id: int icon +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: long serialVersionUID +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_month_vertical_padding +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_OVERLAYS +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void emit() +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: android.graphics.Rect getWindowInsets() +cyanogenmod.providers.CMSettings$Global: long getLong(android.content.ContentResolver,java.lang.String) +android.didikee.donate.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.R$layout: int material_textinput_timepicker +com.google.android.gms.base.R$styleable: int SignInButton_colorScheme +com.google.android.material.R$color: int material_blue_grey_950 +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorGravity(int) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.functions.Function bufferClose +com.amap.api.fence.GeoFenceClient: void pauseGeoFence() +wangdaye.com.geometricweather.R$attr: int thickness +james.adaptiveicon.R$drawable: int abc_textfield_search_activated_mtrl_alpha +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedPathSegment(java.lang.String) +wangdaye.com.geometricweather.R$style: int Animation_MaterialComponents_BottomSheetDialog +com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector YEAR +com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +android.didikee.donate.R$styleable: int SearchView_goIcon +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_elevation +com.google.android.material.R$layout: int material_clockface_textview +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: int requestFusion(int) +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void ping(boolean,int,int) +cyanogenmod.app.CMContextConstants: java.lang.String CM_WEATHER_SERVICE +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dividerVertical +james.adaptiveicon.R$drawable: int notify_panel_notification_icon_bg +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionMode +androidx.loader.R$dimen: int notification_right_icon_size +androidx.work.R$integer +okio.Source: okio.Timeout timeout() +androidx.lifecycle.Lifecycling$1: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.R$styleable: int ArcProgress_arc_angle +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +okhttp3.internal.ws.RealWebSocket: boolean enqueuedClose +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Headline +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_LOW +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver otherObserver +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: long EndEpochDate +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +androidx.preference.R$color: int background_material_light +wangdaye.com.geometricweather.R$attr: int colorSurface +androidx.viewpager2.R$id: int icon_group +com.bumptech.glide.R$styleable: int CoordinatorLayout_keylines +wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMark +wangdaye.com.geometricweather.R$color: int design_fab_stroke_end_inner_color +com.amap.api.location.AMapLocation: boolean y +okhttp3.Cache$CacheResponseBody$1: void close() +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.ObservableSource sampler +androidx.drawerlayout.R$attr: int font +com.jaredrummler.android.colorpicker.R$color: int material_grey_900 +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_THEMES +com.google.android.material.R$animator +androidx.legacy.coreutils.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.R$layout: int material_timepicker_textinput_display +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_TextView +com.turingtechnologies.materialscrollbar.R$string: int abc_search_hint +com.google.android.material.R$dimen: int abc_cascading_menus_min_smallest_width +wangdaye.com.geometricweather.R$styleable: int Constraint_android_visibility +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +androidx.appcompat.R$attr: int tickMark +okhttp3.Response: long sentRequestAtMillis +cyanogenmod.app.CustomTile$ExpandedItem: void writeToParcel(android.os.Parcel,int) +androidx.dynamicanimation.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$attr: int listPreferredItemHeight +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_textOn +wangdaye.com.geometricweather.R$attr: int boxStrokeErrorColor +com.google.android.material.R$styleable: int AppCompatTheme_dialogPreferredPadding +androidx.viewpager.R$styleable: R$styleable() +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_title_material_toolbar +androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.R$string: int settings_summary_background_free_on +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: ObservableMergeWithCompletable$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver) +wangdaye.com.geometricweather.R$xml: int perference +wangdaye.com.geometricweather.R$styleable: int CardView_cardElevation +androidx.hilt.lifecycle.R$anim: int fragment_fast_out_extra_slow_in +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_dither +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: io.reactivex.internal.operators.observable.ObservableRefCount parent +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogMessage +james.adaptiveicon.R$styleable: int ViewBackgroundHelper_backgroundTint +okhttp3.Callback: void onResponse(okhttp3.Call,okhttp3.Response) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup +androidx.appcompat.R$dimen: int highlight_alpha_material_dark +io.reactivex.Observable: io.reactivex.Observable timeInterval() +james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMarkTint +com.google.android.material.R$style: int Theme_MaterialComponents_NoActionBar_Bridge +james.adaptiveicon.R$styleable: int SearchView_searchHintIcon +android.didikee.donate.R$id: int useLogo +androidx.swiperefreshlayout.R$dimen: int notification_content_margin_start +com.google.android.material.R$attr: int mock_label +androidx.constraintlayout.widget.R$id: int jumpToStart +okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Logger logger +com.google.android.material.timepicker.TimePickerView: void addOnRotateListener(com.google.android.material.timepicker.ClockHandView$OnRotateListener) +androidx.drawerlayout.R$drawable: int notification_bg_low_normal +androidx.constraintlayout.widget.R$attr: int framePosition +androidx.preference.R$attr: int windowFixedHeightMinor +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_preserveIconSpacing +androidx.appcompat.R$drawable: int btn_radio_off_to_on_mtrl_animation +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onBouncerShowing(boolean) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItem +androidx.recyclerview.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry: java.lang.String type +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int RelativeHumidity +wangdaye.com.geometricweather.R$id: int multiply +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid +wangdaye.com.geometricweather.R$id: int item_about_library_title +io.reactivex.internal.disposables.CancellableDisposable: void dispose() +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabBar +androidx.core.R$dimen: int notification_media_narrow_margin +com.google.android.material.R$attr: int autoCompleteTextViewStyle +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.database.Database db +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Snackbar +com.amap.api.location.AMapLocationClient: AMapLocationClient(android.content.Context,android.content.Intent) +androidx.appcompat.R$dimen: int abc_list_item_height_large_material +androidx.activity.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.R$dimen: int design_tab_max_width +com.amap.api.location.AMapLocation: void setTrustedLevel(int) +wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$id: int mtrl_calendar_day_selector_frame +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod getAlpnSelectedProtocol +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String description +wangdaye.com.geometricweather.R$id: int seekbar +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetStart +cyanogenmod.app.ThemeVersion$ComponentVersion: int getId() +okhttp3.internal.http2.Http2Stream: boolean isOpen() +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.DaoConfig config +androidx.hilt.work.R$id: int visible_removing_fragment_view_tag +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +okhttp3.HttpUrl: java.lang.String toString() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginTop +wangdaye.com.geometricweather.R$id: int material_value_index +com.github.rahatarmanahmed.cpv.CircularProgressView: int animDuration +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_11 +com.google.gson.stream.JsonReader: java.lang.String locationString() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +com.google.android.material.R$styleable: int BottomAppBar_fabCradleVerticalOffset +okhttp3.ConnectionPool$1: ConnectionPool$1(okhttp3.ConnectionPool) +androidx.lifecycle.AndroidViewModel: AndroidViewModel(android.app.Application) +androidx.vectordrawable.animated.R$attr: int alpha +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float o3 +okhttp3.Cache: Cache(java.io.File,long) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWeatherText() +com.google.android.material.R$attr: int crossfade +wangdaye.com.geometricweather.R$attr: int msb_handleColor +retrofit2.Utils: boolean isAnnotationPresent(java.lang.annotation.Annotation[],java.lang.Class) wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date startDate -okhttp3.CipherSuite: java.lang.String javaName -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property No2 -okhttp3.internal.platform.Platform: boolean isConscryptPreferred() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias -okhttp3.EventListener: void dnsStart(okhttp3.Call,java.lang.String) -com.amap.api.location.AMapLocationClient -com.turingtechnologies.materialscrollbar.R$color: int material_grey_50 -wangdaye.com.geometricweather.R$string: int abc_shareactionprovider_share_with -com.google.android.material.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm25Desc() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_PICKED_UUID -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_creator -androidx.constraintlayout.widget.R$styleable: int State_constraints -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionBarOverlay -wangdaye.com.geometricweather.main.dialogs.LocationHelpDialog: LocationHelpDialog() -wangdaye.com.geometricweather.R$id: int notification_big_week_1 -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_ttcIndex -james.adaptiveicon.R$styleable: int AppCompatTheme_dialogCornerRadius -androidx.constraintlayout.widget.R$color: int material_grey_600 -androidx.appcompat.widget.AppCompatImageButton: void setBackgroundResource(int) -james.adaptiveicon.R$id: int icon_group -wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_sliderColor -com.google.android.material.chip.Chip: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) -wangdaye.com.geometricweather.R$string: int feedback_interpret_notification_group_content -com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_title_material +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void drain() +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void disposeInner() +com.bumptech.glide.load.engine.GlideException: void setLoggingDetails(com.bumptech.glide.load.Key,com.bumptech.glide.load.DataSource) +io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent[] values() +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Call clone() +wangdaye.com.geometricweather.R$id: int search_mag_icon +com.google.android.material.R$styleable: int ConstraintSet_layout_constrainedWidth +com.jaredrummler.android.colorpicker.R$style: int Preference_Category_Material +com.google.android.material.R$styleable: int Slider_android_enabled +android.didikee.donate.R$drawable: int abc_switch_thumb_material +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline4 +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +androidx.constraintlayout.widget.R$styleable: int[] ListPopupWindow +com.turingtechnologies.materialscrollbar.R$styleable: int ButtonBarLayout_allowStacking +com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_elevation +wangdaye.com.geometricweather.R$drawable: int notif_temp_120 +wangdaye.com.geometricweather.R$drawable: int shortcuts_cloudy_foreground +android.didikee.donate.R$styleable: int MenuItem_actionLayout +wangdaye.com.geometricweather.R$id: int editText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean) +okhttp3.internal.http.RealInterceptorChain: okhttp3.EventListener eventListener() +com.turingtechnologies.materialscrollbar.R$style: int CardView +androidx.work.R$id: int accessibility_custom_action_24 +com.google.android.material.R$attr: int arrowHeadLength +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSearchResultTitle +wangdaye.com.geometricweather.R$attr: int pathMotionArc +okhttp3.HttpUrl: java.util.List queryParameterValues(java.lang.String) +androidx.preference.R$drawable: int abc_text_cursor_material +androidx.preference.R$style: int TextAppearance_AppCompat_Headline +com.google.android.material.R$attr: int counterOverflowTextAppearance +androidx.constraintlayout.helper.widget.Flow: void setFirstHorizontalStyle(int) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton +okhttp3.internal.http.CallServerInterceptor$CountingSink +com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView +james.adaptiveicon.R$styleable: int AppCompatTextView_fontFamily +com.google.android.material.R$attr: int circularRadius +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_material +okhttp3.internal.ws.WebSocketProtocol: int B0_MASK_OPCODE +io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable,int) +wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundTodayForecastUpdateService: Hilt_ForegroundTodayForecastUpdateService() +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedReadableDb(char[]) +androidx.appcompat.resources.R$id: int line3 +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void run() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar_Indicator +wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_light +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +com.google.android.material.R$color: int androidx_core_ripple_material_light +james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String brandId +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_Solid +wangdaye.com.geometricweather.R$string: int settings_title_unit +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderPackage +android.didikee.donate.R$styleable: int[] MenuView +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getTotalPrecipitation() +com.google.android.material.R$attr: int hideOnContentScroll +okhttp3.internal.http2.Http2Reader: java.util.List readHeaderBlock(int,short,byte,int) +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getDailyForecast() +com.xw.repo.bubbleseekbar.R$id: int content +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void drainLoop() +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: long serialVersionUID +android.didikee.donate.R$style: int Widget_AppCompat_ListView_DropDown +android.didikee.donate.R$style: int Base_Widget_AppCompat_SearchView +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +cyanogenmod.app.Profile: void setExpandedDesktopMode(int) +androidx.appcompat.R$drawable: int abc_seekbar_thumb_material +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean done +com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context) +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_inverse_material_light +com.google.android.material.R$dimen: int material_emphasis_medium +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric() +retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler parseParameter(int,java.lang.reflect.Type,java.lang.annotation.Annotation[],boolean) +retrofit2.OptionalConverterFactory: OptionalConverterFactory() +android.didikee.donate.R$styleable: int AppCompatTheme_windowNoTitle +cyanogenmod.app.IProfileManager: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) +okhttp3.internal.http.HttpHeaders: long contentLength(okhttp3.Response) +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Circular +wangdaye.com.geometricweather.R$styleable: int[] MenuView +androidx.preference.R$style: int Preference_DropDown_Material +androidx.core.os.CancellationSignal: void setOnCancelListener(androidx.core.os.CancellationSignal$OnCancelListener) +androidx.appcompat.resources.R$id: int accessibility_custom_action_10 +androidx.constraintlayout.widget.R$id: int staticPostLayout +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getHaloTintList() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_checkedTextViewStyle +androidx.preference.R$attr: int editTextPreferenceStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_corner +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onComplete() +okhttp3.internal.http2.Http2Connection$5: void execute() +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: org.reactivestreams.Publisher mPublisher +com.google.android.gms.common.server.response.zan: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf +androidx.preference.R$dimen: int abc_action_bar_default_height_material +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: long serialVersionUID +androidx.hilt.R$dimen: int notification_right_icon_size +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$dimen: int design_appbar_elevation +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamily +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: LiveDataReactiveStreams$LiveDataPublisher(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) +com.google.android.material.chip.Chip: void setTextStartPadding(float) +okhttp3.Response: okhttp3.Headers headers +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode valueOf(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int notif_temp_17 +wangdaye.com.geometricweather.R$attr: int telltales_tailScale +wangdaye.com.geometricweather.R$attr: int titleMarginEnd +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport parent +com.bumptech.glide.integration.okhttp.R$attr: int fontWeight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX +com.google.android.material.tabs.TabLayout: void addOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWeatherPhase +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customBoolean +com.google.android.material.R$dimen: int mtrl_navigation_item_shape_vertical_margin +cyanogenmod.externalviews.KeyguardExternalView: java.lang.String access$400() +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixTextColor +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelMenuListTheme +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontVariationSettings +com.google.android.gms.common.api.internal.zaab: void unregisterConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) +androidx.preference.R$id: int accessibility_custom_action_29 +androidx.viewpager.R$styleable: int GradientColor_android_centerX +okio.RealBufferedSource: void readFully(okio.Buffer,long) +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_Snackbar +cyanogenmod.platform.R$bool +androidx.lifecycle.extensions.R$id: R$id() +wangdaye.com.geometricweather.R$attr: int checkBoxPreferenceStyle +com.google.android.material.R$attr: int customDimension +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: double visibility +com.google.android.material.R$styleable: int DrawerArrowToggle_color +com.google.android.material.R$layout: int mtrl_calendar_year +cyanogenmod.power.PerformanceManager: PerformanceManager(android.content.Context) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf +retrofit2.ParameterHandler$PartMap: retrofit2.Converter valueConverter +android.didikee.donate.R$bool: int abc_action_bar_embed_tabs +androidx.preference.R$drawable: int abc_btn_borderless_material +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isCompletable +cyanogenmod.app.ILiveLockScreenManager: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogTheme +okhttp3.RequestBody$2: long contentLength() +james.adaptiveicon.R$styleable: int Toolbar_titleMarginStart +wangdaye.com.geometricweather.R$dimen: int fastscroll_minimum_range +com.google.android.material.R$color: int design_default_color_secondary_variant +com.turingtechnologies.materialscrollbar.R$color: int tooltip_background_light +okhttp3.internal.ws.RealWebSocket: boolean failed +cyanogenmod.hardware.ICMHardwareService: java.lang.String getLtoDestination() +okhttp3.internal.ws.WebSocketWriter: void writeControlFrame(int,okio.ByteString) +android.didikee.donate.R$styleable: int MenuItem_actionProviderClass +android.didikee.donate.R$dimen: int disabled_alpha_material_light +com.google.android.material.R$id: int animateToEnd +com.jaredrummler.android.colorpicker.R$attr: int itemPadding +com.google.android.material.R$attr: int thumbElevation +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_transitionEasing +com.jaredrummler.android.colorpicker.R$attr: int actionBarTabTextStyle +com.turingtechnologies.materialscrollbar.R$attr: int actionDropDownStyle +androidx.preference.R$styleable: int View_theme +okhttp3.internal.cache.DiskLruCache: java.lang.String READ +okhttp3.CacheControl: boolean noTransform() +androidx.preference.R$layout: int abc_list_menu_item_icon +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner +com.amap.api.location.AMapLocation: java.lang.String COORD_TYPE_GCJ02 +wangdaye.com.geometricweather.R$integer: int mtrl_card_anim_delay_ms +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Bridge +cyanogenmod.hardware.ICMHardwareService: int getNumGammaControls() +okhttp3.internal.io.FileSystem$1: void deleteContents(java.io.File) +okhttp3.internal.http2.Http2Connection$7: okhttp3.internal.http2.Http2Connection this$0 +wangdaye.com.geometricweather.R$attr: int layout_goneMarginEnd +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonRiseDate(java.util.Date) +wangdaye.com.geometricweather.R$drawable: int ic_weather_alert +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_logo +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dividerVertical +com.turingtechnologies.materialscrollbar.R$drawable: int abc_item_background_holo_light +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_Underlined +androidx.work.R$layout: int notification_action +com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_default +com.google.android.material.card.MaterialCardView: void setDragged(boolean) +okhttp3.internal.http2.Http2Writer: void writeContinuationFrames(int,long) +androidx.preference.R$id: int search_bar +wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogMessage +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_thumb_elevation +okio.Buffer: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_8 +android.didikee.donate.R$style: int TextAppearance_AppCompat_Title_Inverse +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: CMSettings$InclusiveFloatRangeValidator(float,float) +com.google.android.material.R$drawable: int ic_clock_black_24dp +androidx.appcompat.R$string: int abc_search_hint +okhttp3.internal.connection.StreamAllocation$StreamAllocationReference: java.lang.Object callStackTrace +wangdaye.com.geometricweather.R$attr: int tickMarkTint +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Subhead +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatImageView +wangdaye.com.geometricweather.R$layout: int item_aqi +okhttp3.internal.http2.Http2Stream$StreamTimeout: void timedOut() +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean cancelled +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +okhttp3.internal.http2.Settings: int MAX_HEADER_LIST_SIZE +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitationProbability +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +cyanogenmod.weather.WeatherLocation$1 +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPrimary() +com.turingtechnologies.materialscrollbar.R$attr: int chipIcon +wangdaye.com.geometricweather.db.entities.DaoMaster: DaoMaster(android.database.sqlite.SQLiteDatabase) +com.google.android.gms.auth.api.signin.internal.GoogleSignInOptionsExtensionParcelable +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_keyline +androidx.preference.R$style: int Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.R$id: int action_context_bar +wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_title_material +cyanogenmod.weather.WeatherInfo$Builder: double mTemperature +androidx.lifecycle.extensions.R$id: int text2 +com.google.android.material.R$id: int async +com.google.android.material.R$styleable: int TextInputLayout_counterMaxLength +okio.RealBufferedSink: void write(okio.Buffer,long) okhttp3.CookieJar$1: CookieJar$1() -androidx.lifecycle.SavedStateHandleController: boolean mIsAttached -wangdaye.com.geometricweather.R$attr: int bsb_show_thumb_text -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl -android.didikee.donate.R$drawable: int abc_list_selector_holo_dark -cyanogenmod.app.CMStatusBarManager: void publishTileAsUser(java.lang.String,int,cyanogenmod.app.CustomTile,android.os.UserHandle) -com.google.android.material.floatingactionbutton.FloatingActionButton: void setEnsureMinTouchTargetSize(boolean) -androidx.drawerlayout.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$layout: int container_snackbar -androidx.work.R$id: int tag_accessibility_heading -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode fromHttp2(int) -wangdaye.com.geometricweather.R$drawable: int weather_cloudy -com.google.android.material.R$attr: int maxAcceleration -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void cancelLiveLockScreen(java.lang.String,int,int) -cyanogenmod.themes.IThemeChangeListener$Stub: java.lang.String DESCRIPTOR -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setContentDescription(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_ScrimInsetsFrameLayout -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setShifting(boolean) -androidx.constraintlayout.widget.R$styleable: int RecycleListView_paddingTopNoTitle -com.jaredrummler.android.colorpicker.R$id: int cpv_color_image_view -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableTop -cyanogenmod.app.Profile: java.util.UUID getUuid() -wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_2 -androidx.constraintlayout.widget.R$drawable: int notification_bg_low_normal -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.ObservableSource second -com.google.android.material.R$id: int mtrl_calendar_selection_frame -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.CompletableObserver downstream -android.didikee.donate.R$drawable: int notification_bg_low_pressed -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -com.amap.api.location.AMapLocation: com.amap.api.location.AMapLocation clone() -cyanogenmod.os.Concierge$ParcelInfo: int mParcelableVersion -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial() -james.adaptiveicon.R$styleable: int FontFamilyFont_fontStyle -androidx.preference.R$styleable: int MenuGroup_android_visible -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -wangdaye.com.geometricweather.R$styleable: int Constraint_android_alpha -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean done -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setStatus(int) -james.adaptiveicon.R$styleable: int MenuItem_actionViewClass -wangdaye.com.geometricweather.R$styleable: int Chip_chipCornerRadius -androidx.constraintlayout.widget.R$color: int abc_decor_view_status_guard -com.amap.api.fence.PoiItem$1: java.lang.Object[] newArray(int) -com.xw.repo.bubbleseekbar.R$layout: int abc_screen_content_include -androidx.appcompat.R$styleable: int Toolbar_android_gravity -androidx.hilt.work.R$drawable: int notification_bg_normal -com.google.android.material.button.MaterialButton: void setRippleColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -androidx.preference.R$layout: int preference_widget_seekbar -androidx.appcompat.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class,androidx.lifecycle.SavedStateHandle) -androidx.constraintlayout.widget.R$attr: int actionBarWidgetTheme -wangdaye.com.geometricweather.db.entities.AlertEntity: void setAlertId(long) -com.google.android.gms.common.api.AvailabilityException: androidx.collection.ArrayMap zaa -androidx.hilt.work.R$id: int italic -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int paddingBottomNoButtons -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: java.lang.String English -james.adaptiveicon.R$style: int Theme_AppCompat_Dialog_Alert -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox -wangdaye.com.geometricweather.R$attr: int circleCrop -okio.BufferedSink: okio.BufferedSink emitCompleteSegments() -android.didikee.donate.R$styleable: int AppCompatImageView_srcCompat -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintDimensionRatio -com.jaredrummler.android.colorpicker.R$attr: int imageButtonStyle -okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.RealWebSocket$Streams streams -james.adaptiveicon.R$styleable: int Toolbar_titleMarginEnd -androidx.appcompat.view.menu.ListMenuItemView: void setForceShowIcon(boolean) -com.google.android.material.R$id: int SHOW_PROGRESS -androidx.drawerlayout.R$id: int action_text -com.google.android.material.R$id: int transition_current_scene -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -james.adaptiveicon.R$attr: int barLength -io.reactivex.internal.util.NotificationLite: io.reactivex.disposables.Disposable getDisposable(java.lang.Object) -androidx.constraintlayout.widget.R$anim: int abc_slide_out_top -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode[] values() -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver -androidx.constraintlayout.widget.R$attr: int flow_firstHorizontalBias -wangdaye.com.geometricweather.R$id: int filterBtn -android.didikee.donate.R$styleable: int AppCompatTextView_drawableTintMode -wangdaye.com.geometricweather.R$styleable: int GradientColorItem_android_color -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginBottom -androidx.viewpager.widget.ViewPager: void setOffscreenPageLimit(int) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -okhttp3.internal.http1.Http1Codec: okhttp3.OkHttpClient client -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.R$dimen: int tooltip_vertical_padding -com.google.android.material.R$id: int masked -androidx.constraintlayout.widget.R$styleable: int Constraint_android_scaleY -com.google.android.material.R$styleable: int TextInputLayout_counterOverflowTextColor -androidx.customview.R$styleable: int GradientColorItem_android_color -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.Observer downstream -androidx.preference.R$style: int ThemeOverlay_AppCompat_Dialog -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean,int) -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$drawable: int shortcuts_sleet_foreground -com.google.android.material.slider.BaseSlider: void addOnSliderTouchListener(com.google.android.material.slider.BaseOnSliderTouchListener) -com.google.android.material.R$dimen: int mtrl_snackbar_message_margin_horizontal -cyanogenmod.app.suggest.ApplicationSuggestion: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String brandId -wangdaye.com.geometricweather.R$anim: int fragment_main_pop_enter -androidx.hilt.lifecycle.R$styleable -wangdaye.com.geometricweather.R$string: int key_widget_clock_day_vertical -androidx.lifecycle.LifecycleRegistry$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$State -androidx.loader.R$drawable: int notification_bg -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge -androidx.hilt.R$color: int notification_action_color_filter -androidx.constraintlayout.widget.R$id: int spread_inside +james.adaptiveicon.R$styleable: int View_theme +wangdaye.com.geometricweather.R$layout: int cpv_dialog_presets +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.Scheduler scheduler +io.reactivex.internal.disposables.CancellableDisposable +com.google.android.material.R$styleable: int Layout_layout_constraintWidth_min +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_track_mtrl_alpha +androidx.work.R$style +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer confidence +james.adaptiveicon.R$integer: int config_tooltipAnimTime +retrofit2.ParameterHandler$2 +androidx.lifecycle.extensions.R$id: int async +androidx.drawerlayout.widget.DrawerLayout$SavedState: android.os.Parcelable$Creator CREATOR +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatImageView +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView_Menu +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean names +james.adaptiveicon.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +android.didikee.donate.R$attr: int switchMinWidth +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String getKey(wangdaye.com.geometricweather.db.entities.LocationEntity) +android.didikee.donate.R$styleable: int ViewBackgroundHelper_backgroundTintMode +wangdaye.com.geometricweather.R$drawable: int ic_uv +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable +wangdaye.com.geometricweather.R$dimen: int hourly_trend_item_height +com.turingtechnologies.materialscrollbar.R$attr: int collapsedTitleGravity +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_text_padding_left +com.amap.api.fence.PoiItem +androidx.transition.R$style: int TextAppearance_Compat_Notification_Title +androidx.preference.R$styleable: int[] DrawerArrowToggle +com.turingtechnologies.materialscrollbar.R$attr: int counterMaxLength +wangdaye.com.geometricweather.R$id: int item_about_link +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.ObservableSource[],io.reactivex.functions.Function) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean() +cyanogenmod.app.Profile$TriggerType: Profile$TriggerType() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getPivotX() +wangdaye.com.geometricweather.GeometricWeather: GeometricWeather() +com.turingtechnologies.materialscrollbar.R$layout: int notification_action +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_precise_anchor_extra_offset +wangdaye.com.geometricweather.R$styleable: int[] FitSystemBarNestedScrollView +com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_margin +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowMinWidthMajor +androidx.appcompat.R$attr: int fontProviderPackage +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long firstEmission +okhttp3.OkHttpClient: okhttp3.OkHttpClient$Builder newBuilder() +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: java.util.concurrent.atomic.AtomicReference observers +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: void setValue(java.util.List) +androidx.appcompat.R$styleable: int MenuItem_android_checkable +wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_min +com.google.android.material.R$styleable: int ConstraintSet_android_alpha +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_activityChooserViewStyle +androidx.appcompat.resources.R$attr: int fontVariationSettings +androidx.constraintlayout.widget.R$dimen: int abc_text_size_headline_material +okhttp3.internal.http2.StreamResetException: okhttp3.internal.http2.ErrorCode errorCode +retrofit2.BuiltInConverters$UnitResponseBodyConverter: retrofit2.BuiltInConverters$UnitResponseBodyConverter INSTANCE +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundTint +com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_material +com.google.android.gms.location.ActivityTransitionResult +com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_bottom_margin +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: java.lang.String date +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dropDownListViewStyle +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_scaleX +com.bumptech.glide.manager.SupportRequestManagerFragment +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlNormal +retrofit2.RequestFactory: java.lang.String httpMethod +wangdaye.com.geometricweather.R$string: int key_forecast_tomorrow_time +okhttp3.CertificatePinner: boolean equals(java.lang.Object) +okhttp3.logging.LoggingEventListener: void connectStart(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy) +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference other +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_months +androidx.legacy.coreutils.R$id +cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri COMPONENTS_URI +okhttp3.Cache: int readInt(okio.BufferedSource) +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_toId +com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat_Dark +com.jaredrummler.android.colorpicker.R$id: int item_touch_helper_previous_elevation +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginTop +androidx.preference.R$styleable: int Preference_android_title +retrofit2.ParameterHandler$Tag: java.lang.Class cls +androidx.activity.R$style: int TextAppearance_Compat_Notification_Time +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconDrawable +cyanogenmod.app.Profile$ProfileTrigger$1: cyanogenmod.app.Profile$ProfileTrigger[] newArray(int) +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginEnd +io.reactivex.internal.util.ArrayListSupplier: java.lang.Object call() +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void drain() +com.jaredrummler.android.colorpicker.R$id: int buttonPanel +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginRight +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status PENDING +cyanogenmod.externalviews.ExternalView$7 +android.didikee.donate.R$styleable: int ActionBar_elevation +com.amap.api.location.UmidtokenInfo$1: void run() +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_8 +wangdaye.com.geometricweather.R$id: int actions +com.amap.api.location.AMapLocationClientOption$1: java.lang.Object createFromParcel(android.os.Parcel) +com.google.android.material.slider.BaseSlider: void setTrackInactiveTintList(android.content.res.ColorStateList) +androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Inverse +com.jaredrummler.android.colorpicker.R$attr: int track +androidx.constraintlayout.widget.R$styleable: int MenuItem_iconTintMode +okhttp3.internal.ws.RealWebSocket$2 +com.xw.repo.bubbleseekbar.R$styleable: int View_paddingStart +androidx.loader.R$dimen: int notification_top_pad_large_text +cyanogenmod.externalviews.ExternalViewProviderService: java.lang.String TAG +androidx.lifecycle.extensions.R$id: int time +cyanogenmod.profiles.AirplaneModeSettings: android.os.Parcelable$Creator CREATOR +androidx.viewpager.R$layout +androidx.constraintlayout.widget.R$attr: int actionMenuTextAppearance +wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveShape +com.turingtechnologies.materialscrollbar.R$attr: int colorButtonNormal +androidx.core.R$layout: int custom_dialog +com.google.android.material.R$dimen: int mtrl_extended_fab_end_padding_icon +com.google.android.material.appbar.AppBarLayout: void setLiftOnScroll(boolean) +wangdaye.com.geometricweather.R$id: int search_voice_btn +wangdaye.com.geometricweather.R$style: int Widget_Design_BottomNavigationView +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode NO_ERROR +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitation() +androidx.lifecycle.extensions.R$attr: int fontProviderQuery +androidx.lifecycle.DefaultLifecycleObserver: void onCreate(androidx.lifecycle.LifecycleOwner) +com.amap.api.fence.GeoFence: void setFenceId(java.lang.String) +james.adaptiveicon.R$attr: int navigationIcon +androidx.activity.ComponentActivity: ComponentActivity() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX getSpeed() +androidx.hilt.lifecycle.R$drawable: int notification_template_icon_low_bg +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_max +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onBouncerShowing(boolean) +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_overflow_padding_start_material +androidx.preference.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$color: int design_default_color_on_secondary +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Alert +okhttp3.internal.http2.Http2Connection: void writeSynReset(int,okhttp3.internal.http2.ErrorCode) +com.google.android.material.R$styleable: int TextInputLayout_prefixTextColor +com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow +com.google.android.material.button.MaterialButton: void setStrokeColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: long date +androidx.constraintlayout.widget.R$styleable: int SearchView_voiceIcon +wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_entryValues +okhttp3.ResponseBody$BomAwareReader: java.nio.charset.Charset charset +wangdaye.com.geometricweather.R$integer: int mtrl_calendar_year_selector_span +okhttp3.internal.cache.DiskLruCache$Editor$1 +wangdaye.com.geometricweather.R$id: int line3 +okhttp3.logging.HttpLoggingInterceptor$Level +androidx.preference.R$id: int right +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setDistrict(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_material +com.google.android.material.R$id: int alertTitle +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_visible +androidx.appcompat.R$id: int search_mag_icon +com.google.android.material.R$attr: int itemBackground +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindLevel +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getThermalState +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pubTime +androidx.preference.R$styleable: int CheckBoxPreference_android_disableDependentsState +com.amap.api.fence.GeoFence: int ERROR_CODE_INVALID_PARAMETER +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: long serialVersionUID +android.didikee.donate.R$styleable: int Toolbar_collapseIcon +androidx.preference.R$styleable: int AppCompatTheme_editTextColor +okhttp3.internal.cache.DiskLruCache: void readJournal() +androidx.constraintlayout.widget.R$attr: int titleTextAppearance +cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String itemTitle +cyanogenmod.app.Profile$TriggerState: int ON_CONNECT +androidx.transition.R$id: int text2 +androidx.appcompat.R$string: int abc_menu_alt_shortcut_label +retrofit2.BuiltInConverters$BufferingResponseBodyConverter +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getNotificationThemePackageName() +okhttp3.internal.http2.Hpack$Reader: int evictToRecoverBytes(int) +com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_EditTextPreference +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: ObservableSampleTimed$SampleTimedEmitLast(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +james.adaptiveicon.R$dimen: int highlight_alpha_material_dark +retrofit2.RequestFactory: okhttp3.Headers headers +androidx.appcompat.resources.R$attr: int fontProviderQuery +com.google.android.material.transformation.TransformationChildLayout +androidx.preference.R$attr: int autoSizeStepGranularity +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_width +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_disabled_material_light +com.google.android.material.R$attr: int customStringValue +com.google.android.material.R$dimen: int notification_right_icon_size +cyanogenmod.externalviews.ExternalViewProviderService: ExternalViewProviderService() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView +android.didikee.donate.R$attr: int arrowHeadLength +androidx.constraintlayout.utils.widget.ImageFilterButton: void setCrossfade(float) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void drain() +androidx.preference.R$styleable: int AppCompatTheme_seekBarStyle +io.reactivex.internal.observers.LambdaObserver: void onError(java.lang.Throwable) +com.amap.api.location.AMapLocation: java.lang.String getProvider() +androidx.constraintlayout.widget.R$drawable: int notification_icon_background +androidx.appcompat.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +androidx.appcompat.R$styleable: int Toolbar_android_minHeight +com.loc.k: java.lang.String a +androidx.transition.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$drawable: int notif_temp_35 +androidx.viewpager2.R$id: int accessibility_custom_action_29 +cyanogenmod.profiles.ConnectionSettings$BooleanState: int STATE_ENABLED +android.didikee.donate.R$drawable: int abc_ic_search_api_material +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date publishDate +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_AutoCompleteTextView +com.jaredrummler.android.colorpicker.R$id: int notification_main_column +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastHorizontalBias +okhttp3.Request$Builder: okhttp3.Request$Builder put(okhttp3.RequestBody) +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light_normal_background +androidx.legacy.content.WakefulBroadcastReceiver +okhttp3.internal.proxy.NullProxySelector: NullProxySelector() +io.reactivex.observers.TestObserver$EmptyObserver: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$attr: int cardElevation +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String color +io.reactivex.internal.operators.observable.ObserverResourceWrapper: ObserverResourceWrapper(io.reactivex.Observer) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void innerSuccess(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver,java.lang.Object) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_20 +okio.Buffer$1: Buffer$1(okio.Buffer) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: double Value +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moonPhaseAngle +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_7 +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_toTopOf +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_holo_light +androidx.hilt.lifecycle.R$anim +wangdaye.com.geometricweather.R$styleable: int Motion_motionPathRotate +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeStyle +androidx.preference.R$dimen: int abc_dropdownitem_text_padding_right +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getUnitId() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pressure +androidx.lifecycle.extensions.R$color: int notification_icon_bg_color +com.google.android.material.R$styleable: int[] Spinner +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +com.jaredrummler.android.colorpicker.R$attr: int cpv_colorShape +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +wangdaye.com.geometricweather.R$styleable: int DialogPreference_negativeButtonText +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog +com.google.android.material.R$styleable: int SearchView_android_imeOptions +com.amap.api.location.AMapLocationClientOption$1: java.lang.Object[] newArray(int) +com.google.android.material.R$drawable: int abc_ratingbar_material +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_PLAY_QUEUE +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +wangdaye.com.geometricweather.R$attr: int listChoiceIndicatorMultipleAnimated +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_dd +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_ACTIVE +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginLeft +james.adaptiveicon.R$styleable: int TextAppearance_android_typeface +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_PrimarySurface +androidx.legacy.coreutils.R$dimen +okhttp3.internal.http2.Http2Connection: long access$100(okhttp3.internal.http2.Http2Connection) +androidx.preference.R$layout: int preference +androidx.constraintlayout.widget.R$styleable: int MotionLayout_applyMotionScene +androidx.appcompat.widget.ActivityChooserView: void setDefaultActionButtonContentDescription(int) +cyanogenmod.app.CMTelephonyManager: boolean isDataConnectionEnabled() +com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeWindSpeed() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_isSunlightEnhancementSelfManaged +wangdaye.com.geometricweather.R$color: int mtrl_filled_stroke_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String getFrom() +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Base getBase() +com.google.android.material.R$styleable: int BottomNavigationView_itemTextAppearanceActive +com.xw.repo.bubbleseekbar.R$string: int abc_shareactionprovider_share_with +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_minWidth +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_halo_radius +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRainPrecipitationProbability(java.lang.Float) +android.didikee.donate.R$dimen: int hint_alpha_material_dark +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getCity() +com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_long_text_horizontal_padding +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerViewAccessibilityDelegate getCompatAccessibilityDelegate() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String en_US +androidx.preference.R$attr: int fontWeight +androidx.work.R$attr: R$attr() +com.google.android.material.R$styleable: int SwitchCompat_trackTintMode +com.google.gson.JsonIOException: JsonIOException(java.lang.String) +androidx.preference.R$style: int ThemeOverlay_AppCompat +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver) +androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_creator +androidx.appcompat.R$styleable: int AppCompatTextView_drawableBottomCompat +wangdaye.com.geometricweather.R$id: int widget_week_week_2 +cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weather.RequestInfo mInfo +androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_Switch +com.google.android.material.R$styleable: int FontFamilyFont_fontWeight com.google.android.material.R$attr: int contentInsetEnd -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardCornerRadius -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String HOUR -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: MfForecastResult$Forecast$Wind() -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchPadding -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: void onActive() -com.google.android.material.textfield.TextInputLayout$SavedState: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_background_transition_holo_dark -okhttp3.internal.cache.CacheInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -androidx.preference.R$styleable: int PreferenceTheme_dialogPreferenceStyle -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RealFeelTemperature -wangdaye.com.geometricweather.R$layout: int item_weather_daily_uv -com.turingtechnologies.materialscrollbar.R$attr: int panelBackground -com.google.android.material.R$styleable: int SwitchCompat_thumbTint -okhttp3.logging.LoggingEventListener: void requestHeadersEnd(okhttp3.Call,okhttp3.Request) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle -androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontWeight -com.xw.repo.bubbleseekbar.R$color: int highlighted_text_material_dark -androidx.constraintlayout.widget.R$drawable: int abc_list_divider_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius -androidx.coordinatorlayout.R$style: int Widget_Support_CoordinatorLayout -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_elevation -com.jaredrummler.android.colorpicker.R$string: int cpv_default_title -james.adaptiveicon.R$style: int Widget_AppCompat_ListView_DropDown -com.xw.repo.bubbleseekbar.R$color: int colorAccent -com.google.android.material.slider.RangeSlider: void setThumbElevation(float) -james.adaptiveicon.R$styleable: int DrawerArrowToggle_barLength -androidx.hilt.work.R$styleable: int GradientColor_android_endX -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 -retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: boolean cancel(boolean) -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator$SavedState: android.os.Parcelable$Creator CREATOR -androidx.appcompat.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$styleable: int ActionBar_displayOptions -androidx.preference.R$styleable: int[] ActionBarLayout -james.adaptiveicon.R$id: int submenuarrow -cyanogenmod.hardware.ThermalListenerCallback$State -androidx.preference.R$styleable: int AppCompatTextView_textAllCaps -org.greenrobot.greendao.AbstractDao: void executeInsertInTx(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Iterable,boolean) -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$color: int design_default_color_secondary_variant -okhttp3.internal.http2.Http2Reader$ContinuationSource: int length -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconSize -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -androidx.lifecycle.ViewModelProvider$NewInstanceFactory -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextAppearanceActive -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: AccuCurrentResult$Wind$Speed() -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar -cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(int,java.lang.String,int,java.lang.String) -okhttp3.internal.http1.Http1Codec$ChunkedSource: void readChunkSize() -wangdaye.com.geometricweather.R$dimen: int preference_icon_minWidth -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial -com.google.android.material.R$id: int row_index_key -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dark -cyanogenmod.app.ICMTelephonyManager$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX) -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sunrise_sunset -com.google.android.material.R$color: int material_grey_850 -com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Dialog -com.google.android.material.R$attr: int queryHint -androidx.preference.R$styleable: int[] Fragment -com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_inset_vertical_material -wangdaye.com.geometricweather.R$drawable: int notif_temp_0 -com.google.android.material.R$attr: int roundPercent -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_BYTES -com.jaredrummler.android.colorpicker.R$attr: int colorControlHighlight -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog -androidx.preference.R$styleable: int AppCompatTheme_actionBarItemBackground -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean) -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode -okio.Buffer: long indexOf(byte) -androidx.constraintlayout.widget.R$styleable: int[] PropertySet -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void dispose() -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int[] RecycleListView -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_101 -androidx.constraintlayout.widget.R$string: int abc_searchview_description_query -com.xw.repo.bubbleseekbar.R$id: int action_text -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) -com.google.android.gms.common.util.DynamiteApi -com.google.android.material.R$attr: int fabCustomSize -androidx.hilt.work.R$styleable: int GradientColorItem_android_color -james.adaptiveicon.R$styleable: int MenuItem_iconTintMode -com.turingtechnologies.materialscrollbar.R$anim: int abc_fade_in -wangdaye.com.geometricweather.R$drawable: int notif_temp_110 -androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context,android.util.AttributeSet) -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Address createAddress(okhttp3.HttpUrl) -androidx.appcompat.widget.Toolbar: int getContentInsetStartWithNavigation() -com.bumptech.glide.R$attr: int alpha -okhttp3.Cache$CacheRequestImpl: void abort() -cyanogenmod.app.ProfileGroup: android.net.Uri getSoundOverride() -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_summaryOn -com.amap.api.location.LocationManagerBase: void setLocationOption(com.amap.api.location.AMapLocationClientOption) -com.autonavi.aps.amapapi.model.AMapLocationServer: int c() -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner inner -wangdaye.com.geometricweather.R$styleable: int[] ScrimInsetsFrameLayout -wangdaye.com.geometricweather.db.entities.HourlyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -androidx.appcompat.R$styleable: int AppCompatTheme_buttonStyle -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -com.xw.repo.bubbleseekbar.R$dimen: int compat_notification_large_icon_max_width -com.google.android.material.floatingactionbutton.FloatingActionButton: int getCustomSize() -com.google.android.material.R$attr: int warmth -okhttp3.internal.http2.Http2: byte TYPE_RST_STREAM -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorBackgroundFloating -cyanogenmod.app.Profile: java.util.Collection getConnectionSettings() -androidx.appcompat.R$style: int Platform_V21_AppCompat_Light -cyanogenmod.app.CMTelephonyManager: void setDefaultSmsSub(int) -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemBackground -com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_inset_vertical_material -com.google.android.material.R$drawable: int ic_mtrl_chip_close_circle -com.google.android.material.R$style: int Base_Widget_AppCompat_Button -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_maxWidth -okhttp3.TlsVersion: okhttp3.TlsVersion valueOf(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsRainOrSnow(int) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WEATHER_CODE_MAX -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode SUPPRESS -com.loc.k: java.lang.String c() -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_with_text_radius -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ButtonBar -io.reactivex.internal.observers.InnerQueuedObserver: void onComplete() -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -com.turingtechnologies.materialscrollbar.R$attr: int activityChooserViewStyle -com.turingtechnologies.materialscrollbar.R$attr: int msb_barColor -cyanogenmod.profiles.ConnectionSettings: boolean isDirty() -okhttp3.internal.http2.Http2Writer: okhttp3.internal.http2.Hpack$Writer hpackWriter -androidx.preference.R$styleable: int StateListDrawable_android_visible -okio.ByteString: int lastIndexOf(okio.ByteString,int) -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_square -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_Switch -com.google.android.material.R$dimen: int abc_action_bar_stacked_max_height -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_fontFamily -com.jaredrummler.android.colorpicker.R$layout: int abc_action_bar_title_item -okhttp3.CipherSuite: java.lang.String javaName() -androidx.preference.SeekBarPreference: SeekBarPreference(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$id: int fitToContents -com.autonavi.aps.amapapi.model.AMapLocationServer: org.json.JSONObject toJson(int) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircle -wangdaye.com.geometricweather.R$attr: int cpv_startAngle -cyanogenmod.hardware.ICMHardwareService: boolean writePersistentBytes(java.lang.String,byte[]) -cyanogenmod.app.ThemeVersion: int getVersion() -androidx.fragment.R$styleable: int GradientColor_android_startY -cyanogenmod.power.IPerformanceManager$Stub$Proxy: boolean getProfileHasAppProfiles(int) -androidx.customview.R$drawable: int notification_action_background -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onComplete() -com.google.android.material.timepicker.ChipTextInputComboView: ChipTextInputComboView(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$styleable: int AppCompatTextView_drawableRightCompat -com.google.android.material.R$id: int mtrl_calendar_frame -cyanogenmod.weatherservice.WeatherProviderService$1: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) -androidx.appcompat.R$color: int switch_thumb_material_dark -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType STRING_TYPE -androidx.customview.R$styleable: int[] GradientColorItem -com.google.android.material.R$id: int mtrl_calendar_days_of_week -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollHorizontalTrackDrawable -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_android_windowAnimationStyle -com.google.android.material.R$styleable: int SwitchCompat_track -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_icon +androidx.lifecycle.ClassesInfoCache: void verifyAndPutHandler(java.util.Map,androidx.lifecycle.ClassesInfoCache$MethodReference,androidx.lifecycle.Lifecycle$Event,java.lang.Class) +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView +okio.Buffer: java.io.OutputStream outputStream() +james.adaptiveicon.R$color: int bright_foreground_disabled_material_dark +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintDimensionRatio +okio.Okio$4: Okio$4(java.net.Socket) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: int bufferSize +com.google.android.material.R$attr: int textAppearanceListItemSmall +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayVerticalProvider +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long serialVersionUID +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetLeft +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton +james.adaptiveicon.R$color: int bright_foreground_inverse_material_light +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink +androidx.preference.R$style: int Base_Widget_AppCompat_ActionMode +okhttp3.Protocol: okhttp3.Protocol QUIC +com.google.android.material.R$styleable: int Slider_android_valueFrom +androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.lang.Object key +io.reactivex.Observable: io.reactivex.Observable concatDelayError(io.reactivex.ObservableSource,int,boolean) +androidx.appcompat.resources.R$id: int accessibility_custom_action_8 +com.amap.api.location.AMapLocation: void writeToParcel(android.os.Parcel,int) +com.xw.repo.bubbleseekbar.R$anim: int abc_fade_out +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Caption +com.turingtechnologies.materialscrollbar.R$attr: int stackFromEnd +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COL_VALUE +androidx.work.R$id: int accessibility_custom_action_11 +androidx.dynamicanimation.R$styleable: int[] ColorStateListItem +okhttp3.internal.ws.WebSocketWriter: okio.Buffer$UnsafeCursor maskCursor +james.adaptiveicon.R$id: int search_voice_btn +com.google.android.material.R$styleable: int AppCompatTheme_dividerHorizontal +okhttp3.Address: java.net.Proxy proxy() +james.adaptiveicon.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.R$attr: int customBoolean +androidx.appcompat.R$dimen: int compat_button_inset_horizontal_material +james.adaptiveicon.R$attr: int switchPadding +com.google.android.material.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_maxActionInlineWidth +okhttp3.Response: okhttp3.Handshake handshake() +com.google.android.gms.location.ActivityRecognitionResult +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoSource +androidx.preference.R$id: int action_image +com.google.android.material.tabs.TabLayout: void setTabRippleColorResource(int) +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_toolbar +com.jaredrummler.android.colorpicker.R$attr: int tooltipForegroundColor +androidx.preference.R$dimen: int abc_cascading_menus_min_smallest_width +androidx.constraintlayout.widget.R$drawable: int abc_btn_check_to_on_mtrl_015 +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: float getDensity(float) +okhttp3.Protocol: okhttp3.Protocol get(java.lang.String) +com.amap.api.fence.GeoFence: int TYPE_ROUND +okhttp3.ResponseBody$BomAwareReader: java.io.Reader delegate +androidx.appcompat.resources.R$dimen: int notification_main_column_padding_top +com.google.android.material.R$styleable: int[] StateListDrawable +androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +androidx.core.R$styleable: int GradientColorItem_android_color +com.jaredrummler.android.colorpicker.R$id: int start +androidx.appcompat.R$dimen: int abc_text_size_medium_material +io.reactivex.internal.util.NotificationLite$DisposableNotification: io.reactivex.disposables.Disposable upstream +com.google.android.material.R$id: int mtrl_picker_header_toggle +okhttp3.HttpUrl: int defaultPort(java.lang.String) +io.reactivex.Observable: io.reactivex.Completable concatMapCompletable(io.reactivex.functions.Function) +com.google.android.material.R$anim: int abc_grow_fade_in_from_bottom +androidx.lifecycle.LiveData: boolean hasActiveObservers() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_headline_material +com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_track_material +androidx.appcompat.R$style: int Theme_AppCompat_DayNight +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeErrorColor +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$anim: int x2_accelerate_interpolator +com.xw.repo.bubbleseekbar.R$attr: int subtitleTextAppearance +wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Bottom_Right +com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.String,java.lang.Throwable) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalBias +com.google.android.gms.common.internal.zax: zax(android.content.Context) +wangdaye.com.geometricweather.R$id: int titleDividerNoCustom +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_icon +james.adaptiveicon.R$color: int abc_secondary_text_material_dark +com.google.android.material.R$dimen: int mtrl_calendar_header_toggle_margin_bottom +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onNext(java.lang.Object) +androidx.appcompat.widget.SwitchCompat: int getCompoundPaddingLeft() +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +okio.Timeout$1: Timeout$1() +wangdaye.com.geometricweather.R$id: int item_aqi_content +androidx.fragment.app.FragmentActivity +okhttp3.Response: okhttp3.Response$Builder newBuilder() +com.turingtechnologies.materialscrollbar.R$id: int textinput_counter +okhttp3.HttpUrl: java.lang.String encodedPath() +androidx.appcompat.R$style: int Animation_AppCompat_Dialog +wangdaye.com.geometricweather.R$drawable: int notif_temp_21 +androidx.coordinatorlayout.R$id: int accessibility_custom_action_2 +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties +com.google.android.material.chip.Chip: Chip(android.content.Context,android.util.AttributeSet) +okhttp3.WebSocketListener: void onMessage(okhttp3.WebSocket,okio.ByteString) +wangdaye.com.geometricweather.R$drawable: int abc_action_bar_item_background_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: CaiYunMainlyResult$CurrentBean$WindBean() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItem +cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: int FAHRENHEIT +com.turingtechnologies.materialscrollbar.R$color: int primary_text_disabled_material_light +androidx.constraintlayout.widget.R$styleable: int SearchView_queryHint +com.bumptech.glide.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light +androidx.hilt.work.R$attr: int alpha +com.google.android.material.timepicker.TimePickerView +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ListPopupWindow +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type getOwnerType() +androidx.vectordrawable.R$styleable: int FontFamilyFont_fontStyle +james.adaptiveicon.R$attr: int actionModeCloseButtonStyle +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setStatus(int) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintEnd_toStartOf +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShrinkMotionSpecResource(int) +com.jaredrummler.android.colorpicker.R$color: int dim_foreground_material_light +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: int type +androidx.appcompat.R$styleable: int AppCompatTheme_controlBackground +wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_LOW +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +androidx.appcompat.widget.ActionMenuView: void setExpandedActionViewsExclusive(boolean) +com.jaredrummler.android.colorpicker.R$attr: int paddingTopNoTitle +androidx.constraintlayout.widget.R$attr: int customNavigationLayout +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveDecay +cyanogenmod.providers.ThemesContract$PreviewColumns: ThemesContract$PreviewColumns() +io.reactivex.disposables.RunnableDisposable: long serialVersionUID +androidx.appcompat.widget.AppCompatEditText: java.lang.CharSequence getText() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_seekbar_track_progress_height_material +androidx.core.R$id: int accessibility_custom_action_0 +androidx.preference.R$attr: int color +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$id: int visible +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_BRIGHTNESS_CONTROL_VALIDATOR +com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Display +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: long serialVersionUID +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableBottom +androidx.preference.R$style: int TextAppearance_AppCompat_Large +androidx.appcompat.R$drawable: int abc_textfield_activated_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_elevation +androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_toLeftOf +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: long serialVersionUID +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean delayErrors +io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable) +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionBar +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.async.AsyncSession startAsyncSession() +okhttp3.internal.http2.Http2Stream$FramingSource: void updateConnectionFlowControl(long) +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_DarkActionBar +retrofit2.ParameterHandler$RelativeUrl: java.lang.reflect.Method method +com.google.gson.internal.LinkedTreeMap: boolean $assertionsDisabled +com.baidu.location.e.h$c: com.baidu.location.e.h$c a +retrofit2.ParameterHandler$Headers: java.lang.reflect.Method method +io.reactivex.internal.observers.InnerQueuedObserver: void onNext(java.lang.Object) +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +com.amap.api.fence.GeoFenceManagerBase: void setGeoFenceListener(com.amap.api.fence.GeoFenceListener) +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalBias +wangdaye.com.geometricweather.R$attr: int actionTextColorAlpha +wangdaye.com.geometricweather.R$id: int tag_icon_day +wangdaye.com.geometricweather.R$color: int colorRipple +cyanogenmod.profiles.ConnectionSettings: int getValue() +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder reencodeForUri() +androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerX +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object get(int) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display2 +com.google.android.material.R$styleable: int FlowLayout_lineSpacing +androidx.appcompat.widget.AppCompatCheckedTextView +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_AM_PM +com.bumptech.glide.R$styleable: int FontFamily_fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$dimen: int notification_content_margin_start +androidx.appcompat.R$attr: int title +com.xw.repo.bubbleseekbar.R$attr: int thickness +wangdaye.com.geometricweather.R$styleable: int ListPreference_entryValues +androidx.coordinatorlayout.R$styleable: int GradientColor_android_type +com.turingtechnologies.materialscrollbar.R$animator: int design_fab_hide_motion_spec +wangdaye.com.geometricweather.R$id: int container_alert_display_view_container +com.google.android.material.R$dimen: int mtrl_large_touch_target +androidx.constraintlayout.widget.R$id: int time +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_preserveIconSpacing +androidx.dynamicanimation.R$dimen: int compat_button_padding_vertical_material +okhttp3.internal.http2.Http2: byte FLAG_PRIORITY +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dialog +androidx.constraintlayout.helper.widget.Flow: void setFirstVerticalBias(float) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_108 +okhttp3.internal.http2.Http2Connection: long access$708(okhttp3.internal.http2.Http2Connection) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: int UnitType +wangdaye.com.geometricweather.R$id: int star_container +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginStart +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +com.turingtechnologies.materialscrollbar.R$id: int action_image +wangdaye.com.geometricweather.R$string: int feedback_background_location_title +androidx.appcompat.R$dimen: int abc_action_bar_icon_vertical_padding_material +androidx.appcompat.R$style: int Base_V26_Theme_AppCompat +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int FIRED_STATE +androidx.appcompat.R$attr: int listChoiceBackgroundIndicator +com.turingtechnologies.materialscrollbar.R$id: int tag_transition_group +android.didikee.donate.R$string: int abc_action_bar_up_description +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getTreeIndex() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_bias +androidx.lifecycle.MutableLiveData: void setValue(java.lang.Object) +androidx.constraintlayout.widget.R$attr: int content +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar_Small +androidx.transition.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.R$dimen: int notification_right_icon_size +com.google.android.material.R$drawable: int abc_text_select_handle_left_mtrl_dark +androidx.preference.R$style: int Widget_AppCompat_PopupWindow +androidx.constraintlayout.widget.R$styleable: int MockView_mock_showLabel +james.adaptiveicon.R$dimen: int abc_action_button_min_width_material +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableTop +androidx.preference.R$styleable: int CoordinatorLayout_statusBarBackground +com.turingtechnologies.materialscrollbar.R$attr: int switchPadding +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_font +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView_Menu +retrofit2.Retrofit$1: java.lang.Object[] emptyArgs +okio.Buffer$2: int available() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton +androidx.work.R$styleable: int FontFamilyFont_fontVariationSettings +okhttp3.internal.cache2.Relay: int sourceCount +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long readKey(android.database.Cursor,int) +androidx.preference.R$attr: int barLength +androidx.preference.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +com.jaredrummler.android.colorpicker.R$color: int dim_foreground_material_dark +james.adaptiveicon.R$attr: int checkboxStyle +cyanogenmod.hardware.ICMHardwareService: java.lang.String getSerialNumber() +james.adaptiveicon.R$color: int secondary_text_default_material_light +okhttp3.Protocol: java.lang.String protocol +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_thumb_text +james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog_Alert +com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_filled_box_default_background_color +cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri APPLIED_URI +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: ObservableBufferBoundary$BufferCloseObserver(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver,long) +com.google.android.material.R$dimen: int mtrl_calendar_year_height +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginStart +androidx.preference.R$styleable: int Spinner_android_entries +okhttp3.HttpUrl: java.util.List encodedPathSegments() +okhttp3.EventListener: void callStart(okhttp3.Call) +androidx.constraintlayout.widget.R$id: int alertTitle +com.jaredrummler.android.colorpicker.R$string: int cpv_custom +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.Callable other +android.didikee.donate.R$color: int notification_action_color_filter +androidx.preference.R$style: int Base_V23_Theme_AppCompat_Light +wangdaye.com.geometricweather.db.entities.AlertEntity: long getTime() +com.google.android.material.R$anim: int design_bottom_sheet_slide_out +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String country +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage[] values() +androidx.work.R$attr: int fontStyle +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status ERROR +james.adaptiveicon.R$color: int material_grey_100 +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.String getAqiText() +okhttp3.internal.connection.RealConnection: java.lang.String NPE_THROW_WITH_NULL +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getStrokeWidth() +okhttp3.ConnectionSpec: okhttp3.CipherSuite[] APPROVED_CIPHER_SUITES +androidx.appcompat.R$styleable: int[] ActionMenuView +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: ObservableDoFinally$DoFinallyObserver(io.reactivex.Observer,io.reactivex.functions.Action) +androidx.appcompat.widget.ActionBarContextView: java.lang.CharSequence getSubtitle() +com.turingtechnologies.materialscrollbar.R$layout: int abc_select_dialog_material +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_SIMULATION_LOCATION +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean replace(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) +wangdaye.com.geometricweather.R$attr: int elevation +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf +androidx.drawerlayout.R$dimen: int notification_action_text_size +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_tailScale +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow12h +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver this$0 +wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_width_minor +wangdaye.com.geometricweather.background.receiver.MainReceiver +wangdaye.com.geometricweather.R$drawable: int ic_water +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getAbbreviation(android.content.Context) +james.adaptiveicon.R$styleable: int ViewStubCompat_android_inflatedId +com.google.android.material.R$attr: int singleChoiceItemLayout +androidx.recyclerview.R$id: int accessibility_custom_action_24 +com.jaredrummler.android.colorpicker.R$dimen: int notification_main_column_padding_top +james.adaptiveicon.R$dimen: int abc_dialog_fixed_width_minor +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderLayout +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_type +com.google.android.material.R$attr +okhttp3.internal.connection.RealConnection: okhttp3.Protocol protocol() +cyanogenmod.weather.WeatherInfo$DayForecast$1: WeatherInfo$DayForecast$1() +wangdaye.com.geometricweather.R$styleable: int RecyclerView_stackFromEnd +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.R$attr: int materialThemeOverlay +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String power +wangdaye.com.geometricweather.R$string: int key_widget_clock_day_horizontal +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum Maximum +android.didikee.donate.R$id: int collapseActionView +cyanogenmod.app.LiveLockScreenInfo +androidx.appcompat.R$styleable: int AppCompatTheme_dialogPreferredPadding +okhttp3.CipherSuite$1: int compare(java.lang.String,java.lang.String) +com.google.android.material.R$styleable: int PropertySet_android_visibility +com.jaredrummler.android.colorpicker.R$attr: int fontFamily +com.google.android.material.R$dimen: int abc_button_padding_vertical_material +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTypeface(android.graphics.Typeface) +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_xml +androidx.constraintlayout.utils.widget.ImageFilterButton: void setOverlay(boolean) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf +com.turingtechnologies.materialscrollbar.R$attr: int layoutManager +com.google.android.material.R$attr: int chainUseRtl +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float thunderstormPrecipitation +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSyncDuration +wangdaye.com.geometricweather.R$string: int allergen +cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_end_padding +wangdaye.com.geometricweather.background.receiver.widget.WidgetDayProvider: WidgetDayProvider() +com.jaredrummler.android.colorpicker.R$color: int error_color_material_light +james.adaptiveicon.R$styleable: int ActionMode_subtitleTextStyle androidx.hilt.R$dimen: int notification_subtext_size -androidx.drawerlayout.R$dimen: int notification_big_circle_margin -androidx.fragment.R$styleable: int GradientColor_android_type -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -com.google.android.material.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: int UnitType -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_text_size -androidx.drawerlayout.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.R$string: int key_widget_trend_hourly -androidx.constraintlayout.widget.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -androidx.constraintlayout.widget.R$attr: int voiceIcon -com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getBackgroundTintMode() -com.google.android.material.R$styleable: int BottomNavigationView_menu -androidx.appcompat.R$id: int action_bar_title -cyanogenmod.app.CustomTile: int PSEUDO_GRID_ITEM_MAX_COUNT -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_closeIcon -com.turingtechnologies.materialscrollbar.R$id: int mtrl_internal_children_alpha_tag -cyanogenmod.app.CustomTile$ExpandedStyle$1: CustomTile$ExpandedStyle$1() -androidx.preference.R$style: int Preference -com.google.android.material.R$style: int Widget_Compat_NotificationActionContainer -androidx.constraintlayout.widget.R$attr: int windowFixedWidthMajor -james.adaptiveicon.R$dimen: int abc_control_corner_material -androidx.fragment.app.FragmentManager: void addOnBackStackChangedListener(androidx.fragment.app.FragmentManager$OnBackStackChangedListener) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float icePrecipitationProbability -androidx.hilt.R$style: int TextAppearance_Compat_Notification_Time -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -com.google.android.material.R$dimen: int abc_dialog_fixed_width_major -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_switchStyle -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarSize -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.functions.Function mapper -com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_ListPopupWindow -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabTextStyle -com.jaredrummler.android.colorpicker.R$attr: int fastScrollVerticalThumbDrawable -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalStyle -androidx.constraintlayout.widget.R$id: int titleDividerNoCustom -androidx.customview.R$dimen: int notification_top_pad -androidx.preference.R$styleable: int Toolbar_titleTextColor -okhttp3.internal.http2.Http2Writer: void flush() -okhttp3.internal.http2.Http2: byte TYPE_PRIORITY -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_COLOR -androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontWeight -james.adaptiveicon.R$attr: int iconTint -com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_material -androidx.constraintlayout.widget.R$attr: int curveFit -com.turingtechnologies.materialscrollbar.R$attr: int paddingEnd -com.google.android.material.R$styleable: int NavigationView_itemHorizontalPadding -wangdaye.com.geometricweather.R$dimen: int abc_button_inset_horizontal_material -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder protocols(java.util.List) -androidx.recyclerview.R$styleable: int[] GradientColorItem -com.xw.repo.bubbleseekbar.R$id: int action_bar_container -androidx.lifecycle.SavedStateHandleController$1 -com.google.android.material.card.MaterialCardView: void setRippleColor(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -androidx.fragment.R$color: int secondary_text_default_material_light -androidx.preference.R$styleable: int AppCompatTheme_toolbarStyle -com.google.android.material.R$dimen: int mtrl_slider_track_height -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.R$attr: int closeIconEndPadding -androidx.viewpager.R$id: int forever -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_subtitle -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_checkedChip -android.didikee.donate.R$styleable: int ActionMode_closeItemLayout -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_closeItemLayout -androidx.viewpager.R$dimen: int compat_button_inset_vertical_material -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: java.util.List getSuggestions(android.content.Intent) -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_indeterminate -com.google.android.material.R$styleable: int Constraint_layout_goneMarginRight -wangdaye.com.geometricweather.R$attr: int labelVisibilityMode -com.google.android.material.R$color: int material_slider_active_track_color -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onError(java.lang.Throwable) -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String toStr(int) -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTintMode -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation[] values() -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getNumGammaControls -androidx.fragment.R$color: R$color() -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -cyanogenmod.themes.ThemeManager$2: void onFinishedProcessing(java.lang.String) -androidx.loader.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.preference.R$attr: int thumbTintMode -android.didikee.donate.R$styleable: int[] CompoundButton -androidx.preference.R$styleable: int Toolbar_subtitleTextAppearance -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_title_material_toolbar -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getScaleX() -com.google.android.material.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.R$id: int notification_multi_city_text_3 -androidx.recyclerview.R$id: int accessibility_custom_action_22 -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: boolean hasCompleted() -androidx.drawerlayout.R$id: R$id() -com.google.android.material.R$styleable: int State_constraints -androidx.vectordrawable.animated.R$id: R$id() -androidx.viewpager2.adapter.FragmentStateAdapter$FragmentMaxLifecycleEnforcer$3 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CALL_RECORDING_FORMAT_VALIDATOR -androidx.vectordrawable.animated.R$drawable: int notification_bg_normal -james.adaptiveicon.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -com.bumptech.glide.R$styleable: int ColorStateListItem_alpha -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_switch_compat -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: ExternalViewProviderService$Provider$ProviderImpl$5(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature -cyanogenmod.externalviews.IExternalViewProviderFactory -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.Function leftEnd -okhttp3.internal.ws.WebSocketWriter$FrameSink: boolean closed -com.google.android.material.R$id: int material_minute_tv -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String aqiText -com.google.android.material.R$color: int switch_thumb_disabled_material_dark -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_previewSize -retrofit2.ParameterHandler$1: void apply(retrofit2.RequestBuilder,java.lang.Iterable) -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_start -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit[] values() -android.didikee.donate.R$attr: int colorPrimary -androidx.appcompat.R$drawable: int abc_ic_star_black_48dp -com.google.android.material.R$drawable: int notification_bg_normal -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onComplete() -androidx.lifecycle.ReflectiveGenericLifecycleObserver: ReflectiveGenericLifecycleObserver(java.lang.Object) -com.google.android.material.R$style: int Base_V26_Theme_AppCompat -androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min -wangdaye.com.geometricweather.R$style: int PreferenceSummaryTextStyle -james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.R$color: int design_default_color_on_background -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_titleCondensed -com.google.android.material.R$dimen: int material_clock_number_text_size -okhttp3.Request: okhttp3.HttpUrl url -androidx.preference.R$attr: int dividerHorizontal -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String info -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeWetBulbTemperature() -cyanogenmod.platform.Manifest$permission: java.lang.String PROTECTED_APP -android.didikee.donate.R$attr: int itemPadding -okhttp3.ResponseBody: java.io.Reader charStream() -androidx.core.R$layout: int custom_dialog -com.google.android.material.R$color: int design_dark_default_color_primary_dark -wangdaye.com.geometricweather.R$layout: int design_layout_tab_icon -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_windowAnimationStyle -com.google.android.material.R$styleable: int RadialViewGroup_materialCircleRadius -androidx.activity.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$string: int aqi_3 -androidx.constraintlayout.widget.R$id: int tag_accessibility_clickable_spans -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean isDisposed() -androidx.appcompat.widget.AppCompatImageView: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) -com.jaredrummler.android.colorpicker.R$attr: int queryHint -com.google.android.material.R$dimen: int material_filled_edittext_font_1_3_padding_top -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -androidx.appcompat.R$anim: int abc_slide_in_bottom -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitationProbability -com.google.android.material.R$layout: int support_simple_spinner_dropdown_item -wangdaye.com.geometricweather.common.basic.models.weather.Daily: float hoursOfSun -com.jaredrummler.android.colorpicker.R$attr: int dialogLayout -androidx.viewpager.R$id: int action_divider -androidx.constraintlayout.widget.R$dimen: int abc_alert_dialog_button_dimen -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: double Longitude -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: AccuDailyResult$DailyForecasts$Night$WindGust() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial Imperial -androidx.preference.R$style: int TextAppearance_AppCompat_Large -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_displayOptions -androidx.appcompat.R$styleable: int TextAppearance_android_shadowRadius -com.google.android.material.R$styleable: int Layout_layout_constraintBottom_toTopOf -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_verticalDivider -com.google.android.material.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelMenuListWidth -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.fragment.R$id: int icon -retrofit2.SkipCallbackExecutorImpl: boolean equals(java.lang.Object) -androidx.core.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: void setKeyLineVisibility(boolean) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.amap.api.location.AMapLocation: void setPoiName(java.lang.String) -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShowMotionSpecResource(int) -androidx.recyclerview.R$styleable: int GradientColor_android_centerY -com.google.android.material.R$color: int mtrl_error -androidx.constraintlayout.utils.widget.ImageFilterView: float getSaturation() -cyanogenmod.util.ColorUtils: int findPerceptuallyNearestColor(int,int[]) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginStart -com.xw.repo.bubbleseekbar.R$attr: int listMenuViewStyle -wangdaye.com.geometricweather.R$drawable: int shortcuts_rain_foreground -okhttp3.logging.LoggingEventListener: void secureConnectStart(okhttp3.Call) -wangdaye.com.geometricweather.R$mipmap: R$mipmap() -io.reactivex.Observable: io.reactivex.Observable concatDelayError(io.reactivex.ObservableSource) -cyanogenmod.externalviews.ExternalView: void onActivityPaused(android.app.Activity) -com.jaredrummler.android.colorpicker.R$attr: int layout_insetEdge -com.google.android.material.chip.ChipGroup: void setFlexWrap(int) -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_default_mtrl_alpha -androidx.appcompat.resources.R$drawable: R$drawable() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: java.lang.String Unit -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleColor(int) -androidx.vectordrawable.animated.R$id: int text2 -io.reactivex.internal.observers.ForEachWhileObserver: void onNext(java.lang.Object) -androidx.preference.R$styleable: int[] ActionMenuView -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_alpha -com.google.android.material.R$id: int triangle -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_switchTextOff -com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_DropDownUp -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onSubscribe(io.reactivex.disposables.Disposable) -android.support.v4.os.ResultReceiver$1: android.support.v4.os.ResultReceiver createFromParcel(android.os.Parcel) -retrofit2.HttpServiceMethod$SuspendForResponse -androidx.work.WorkInfo$State -cyanogenmod.profiles.ConnectionSettings: void readFromParcel(android.os.Parcel) -cyanogenmod.hardware.IThermalListenerCallback$Stub: cyanogenmod.hardware.IThermalListenerCallback asInterface(android.os.IBinder) -io.reactivex.internal.subscriptions.BasicQueueSubscription: int requestFusion(int) -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_grey -com.google.android.material.R$id: int search_bar -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -com.google.android.material.R$styleable: int ActionBar_indeterminateProgressStyle -cyanogenmod.power.IPerformanceManager$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setWeather(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX) -com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_PrimarySurface -com.amap.api.fence.PoiItem: java.lang.String getPoiId() -okio.Base64: java.lang.String encode(byte[],byte[]) -wangdaye.com.geometricweather.R$id: int grassTitle -androidx.preference.R$color: int material_grey_600 -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnw -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService this$0 -wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status SUCCESS -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar -okhttp3.EventListener: void requestHeadersEnd(okhttp3.Call,okhttp3.Request) -wangdaye.com.geometricweather.common.basic.models.weather.Base: Base(java.lang.String,long,java.util.Date,long,java.util.Date,long) -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.HistoryEntity,long) -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingBottom -cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_USE_MAIN_TILES -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeApparentTemperature -com.google.gson.internal.LazilyParsedNumber: int hashCode() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layoutDescription -okio.RealBufferedSink$1 -androidx.constraintlayout.widget.R$dimen: int notification_small_icon_background_padding -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarWidgetTheme -androidx.constraintlayout.widget.R$color: int button_material_dark -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_7 -io.reactivex.Observable: io.reactivex.Observable delaySubscription(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter nullValue() -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: java.util.concurrent.TimeUnit unit -com.bumptech.glide.integration.okhttp.R$id: int action_container -androidx.core.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_bottom_start -com.amap.api.fence.GeoFence: int ERROR_CODE_INVALID_PARAMETER -android.didikee.donate.R$drawable: int abc_ic_menu_cut_mtrl_alpha -okhttp3.HttpUrl: void namesAndValuesToQueryString(java.lang.StringBuilder,java.util.List) -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder parse(okhttp3.HttpUrl,java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum Maximum -android.didikee.donate.R$styleable: int AppCompatTheme_dividerVertical -androidx.preference.R$styleable: int Fragment_android_id -cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo$Builder setPriority(int) -androidx.preference.R$integer: int cancel_button_image_alpha -androidx.constraintlayout.widget.R$styleable: int SearchView_submitBackground -androidx.cardview.widget.CardView: float getRadius() -androidx.viewpager.R$styleable: int GradientColor_android_startColor -okhttp3.internal.http2.Http2: byte FLAG_NONE -androidx.lifecycle.CompositeGeneratedAdaptersObserver: CompositeGeneratedAdaptersObserver(androidx.lifecycle.GeneratedAdapter[]) -com.xw.repo.bubbleseekbar.R$id: int list_item -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Indeterminate -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customPixelDimension -com.jaredrummler.android.colorpicker.R$attr: int min -cyanogenmod.app.CustomTile$ExpandedStyle: void setBuilder(cyanogenmod.app.CustomTile$Builder) -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.Scheduler scheduler -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -androidx.appcompat.R$color: int bright_foreground_disabled_material_dark -androidx.appcompat.R$dimen: int abc_dropdownitem_text_padding_left -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_ab_back_material -androidx.lifecycle.ReportFragment: void onStop() -androidx.hilt.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableEndCompat -wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_dark -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken valueOf(java.lang.String) -androidx.hilt.R$styleable: int[] GradientColorItem -androidx.preference.R$style: R$style() -wangdaye.com.geometricweather.R$attr: int navigationMode -com.google.android.material.R$attr: int textAppearanceOverline -androidx.hilt.R$styleable: int[] Fragment -wangdaye.com.geometricweather.R$color: int colorTextLight -androidx.customview.R$styleable: int FontFamilyFont_fontVariationSettings -james.adaptiveicon.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -com.google.android.material.button.MaterialButtonToggleGroup: int getLastVisibleChildIndex() -okhttp3.Protocol: Protocol(java.lang.String,int,java.lang.String) -retrofit2.adapter.rxjava2.RxJava2CallAdapter: RxJava2CallAdapter(java.lang.reflect.Type,io.reactivex.Scheduler,boolean,boolean,boolean,boolean,boolean,boolean,boolean) -wangdaye.com.geometricweather.weather.apis.CNWeatherApi -androidx.work.R$id: int tag_unhandled_key_event_manager -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_normal -com.google.android.material.R$style: int Base_Widget_AppCompat_ListView -androidx.preference.R$styleable: int BackgroundStyle_selectableItemBackground -androidx.hilt.lifecycle.R$styleable: int GradientColorItem_android_offset -okio.Buffer: okio.Buffer readFrom(java.io.InputStream) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_popupTheme -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabBar -com.google.android.material.R$attr: int subtitleTextStyle -androidx.appcompat.R$dimen: int abc_text_size_title_material -com.google.android.material.progressindicator.ProgressIndicator: void setGrowMode(int) -com.google.android.material.R$attr: int actionBarStyle -androidx.swiperefreshlayout.R$style: R$style() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_list_padding_top_no_title -androidx.recyclerview.R$color: int ripple_material_light -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float thunderstormPrecipitationProbability -retrofit2.http.GET -com.google.android.material.R$styleable: int AppCompatTextView_drawableEndCompat -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_DEFAULT -org.greenrobot.greendao.AbstractDao: long insertInsideTx(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement) -wangdaye.com.geometricweather.R$dimen: int preference_seekbar_padding_horizontal -cyanogenmod.profiles.StreamSettings$1: cyanogenmod.profiles.StreamSettings[] newArray(int) -wangdaye.com.geometricweather.R$drawable: int ic_tag_off -androidx.constraintlayout.motion.widget.MotionLayout: long getNanoTime() -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: long serialVersionUID -com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException -wangdaye.com.geometricweather.R$string: int abc_menu_enter_shortcut_label -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String INSTALL_STATE -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display2 -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min -wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_toLeftOf -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_0 -com.xw.repo.bubbleseekbar.R$attr: int initialActivityCount -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_colored_ripple_color -wangdaye.com.geometricweather.R$string: int material_timepicker_pm -wangdaye.com.geometricweather.settings.fragments.AppearanceSettingsFragment -okhttp3.Cookie$Builder: boolean httpOnly -com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_horizontal_material -com.google.android.material.R$attr: int cornerSizeTopLeft -com.google.android.gms.common.api.ApiException: int getStatusCode() -com.google.android.material.R$attr: int daySelectedStyle -androidx.constraintlayout.widget.R$id: int async -androidx.appcompat.R$style: int Widget_AppCompat_Button_Borderless -com.amap.api.fence.GeoFence: void setDistrictItemList(java.util.List) -wangdaye.com.geometricweather.R$styleable: int Layout_barrierAllowsGoneWidgets -io.reactivex.Observable: io.reactivex.Observable fromIterable(java.lang.Iterable) -com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_Tooltip -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition valueOf(java.lang.String) -okhttp3.Cookie: java.util.regex.Pattern DAY_OF_MONTH_PATTERN -androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_large_material -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_drawableSize -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetLeft -okhttp3.internal.http2.Http2Codec: java.lang.String UPGRADE -retrofit2.OkHttpCall$1: void callFailure(java.lang.Throwable) -androidx.coordinatorlayout.R$styleable: int GradientColor_android_endY -androidx.constraintlayout.widget.R$attr: int collapseIcon -androidx.constraintlayout.widget.R$styleable: int[] Transition -com.google.android.material.R$dimen: int mtrl_fab_elevation -com.turingtechnologies.materialscrollbar.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary -wangdaye.com.geometricweather.db.entities.MinutelyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -com.bumptech.glide.integration.okhttp.R$id: int top -com.turingtechnologies.materialscrollbar.R$attr: int textInputStyle -com.jaredrummler.android.colorpicker.R$attr: int paddingStart -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid -wangdaye.com.geometricweather.R$attr: int cardBackgroundColor -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -com.bumptech.glide.R$drawable: int notification_action_background -com.turingtechnologies.materialscrollbar.R$attr: int useCompatPadding -androidx.fragment.app.FragmentTabHost: void setOnTabChangedListener(android.widget.TabHost$OnTabChangeListener) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_110 +androidx.preference.R$styleable: int AppCompatTheme_buttonBarStyle +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status LOADING +okhttp3.internal.http2.Http2Writer: void close() +io.reactivex.Observable: io.reactivex.Observable take(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +james.adaptiveicon.R$styleable: int[] View +james.adaptiveicon.R$styleable: int[] DrawerArrowToggle +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_tileMode +okio.Buffer: int selectPrefix(okio.Options,boolean) +okhttp3.internal.ws.RealWebSocket: void checkResponse(okhttp3.Response) +okio.SegmentedByteString: okio.ByteString md5() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +okhttp3.internal.ws.WebSocketReader +wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogLayout +com.google.android.material.timepicker.TimePickerView: TimePickerView(android.content.Context,android.util.AttributeSet) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_11 +androidx.preference.R$dimen: int abc_text_size_small_material +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_focused_holo +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getProvince() +androidx.drawerlayout.R$attr: int fontStyle +okio.Buffer: okio.Buffer writeDecimalLong(long) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable +wangdaye.com.geometricweather.R$color: int accent_material_dark +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +retrofit2.KotlinExtensions: java.lang.Object suspendAndThrow(java.lang.Exception,kotlin.coroutines.Continuation) +androidx.preference.R$dimen: int abc_progress_bar_height_material +okhttp3.MediaType: okhttp3.MediaType get(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_strokeColor +org.greenrobot.greendao.AbstractDaoSession: void runInTx(java.lang.Runnable) +androidx.constraintlayout.widget.R$attr: int roundPercent +cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.ICMTelephonyManager sService +androidx.loader.R$attr +androidx.appcompat.resources.R$id: int accessibility_custom_action_25 +androidx.appcompat.R$color: int switch_thumb_normal_material_light com.google.android.material.tabs.TabLayout: int getTabScrollRange() -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_left_mtrl_dark -okhttp3.internal.ws.RealWebSocket: void onReadPong(okio.ByteString) -androidx.constraintlayout.widget.ConstraintHelper -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeMinTextSize -okhttp3.internal.http2.Settings: void merge(okhttp3.internal.http2.Settings) -wangdaye.com.geometricweather.R$layout: int abc_screen_simple -cyanogenmod.app.IProfileManager$Stub: java.lang.String DESCRIPTOR -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams mParams -com.google.android.material.R$style: int Widget_MaterialComponents_Button_UnelevatedButton -androidx.transition.R$layout: int notification_action_tombstone -com.google.android.material.R$styleable: int Slider_trackColor -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedHeightMinor() -androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -james.adaptiveicon.R$anim: int abc_slide_in_bottom -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton_Overflow -androidx.viewpager.widget.PagerTabStrip: void setBackgroundDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean hasKey(java.lang.Object) -androidx.core.R$style: int Widget_Compat_NotificationActionContainer -com.google.android.material.R$styleable: int NavigationView_itemShapeInsetBottom -androidx.preference.R$style: int TextAppearance_AppCompat -com.bumptech.glide.R$drawable -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle -androidx.preference.R$attr: int fontFamily -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void setCancellable(io.reactivex.functions.Cancellable) -james.adaptiveicon.R$attr: int paddingEnd -com.xw.repo.bubbleseekbar.R$drawable -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.appcompat.R$styleable: int AppCompatTheme_actionMenuTextAppearance -cyanogenmod.providers.CMSettings$Secure: java.lang.String __MAGICAL_TEST_PASSING_ENABLER -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeApparentTemperature(java.lang.Integer) -androidx.coordinatorlayout.R$style: int Widget_Compat_NotificationActionText -retrofit2.CompletableFutureCallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -androidx.preference.R$styleable: int LinearLayoutCompat_android_weightSum +com.google.gson.stream.JsonWriter: void setLenient(boolean) +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerNext() +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicBoolean stopWindows +com.google.android.gms.common.server.converter.StringToIntConverter +com.google.android.material.R$attr: int triggerId +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_RC4_128_SHA +androidx.appcompat.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.appcompat.R$id: int scrollView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial() +com.google.android.material.slider.BaseSlider: float getStepSize() +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyBottomRight +androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$id: int notification_big +com.amap.api.location.AMapLocation: boolean isOffset() +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabAlignmentMode +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabBar +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: ObservableBuffer$BufferSkipObserver(io.reactivex.Observer,int,int,java.util.concurrent.Callable) +com.bumptech.glide.integration.okhttp.R$id: R$id() +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionMode +android.didikee.donate.R$id: int title +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer humidity +com.amap.api.location.AMapLocation: java.lang.String o(com.amap.api.location.AMapLocation,java.lang.String) +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeService sService +com.google.android.material.R$color: int mtrl_textinput_disabled_color +com.google.android.material.R$dimen: int design_snackbar_padding_vertical +androidx.swiperefreshlayout.R$color: int notification_icon_bg_color +okhttp3.internal.http2.Http2Connection$PingRunnable: int payload1 +com.turingtechnologies.materialscrollbar.R$attr: int fabAlignmentMode +com.turingtechnologies.materialscrollbar.R$attr: int alertDialogButtonGroupStyle +com.google.android.material.R$animator: int linear_indeterminate_line2_tail_interpolator +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setMockEnable(boolean) +wangdaye.com.geometricweather.R$string: int content_desc_wechat_payment_code +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Bridge +androidx.fragment.R$id: int notification_background +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_btn_unelevated_state_list_anim +okhttp3.internal.connection.StreamAllocation: void acquire(okhttp3.internal.connection.RealConnection,boolean) +okhttp3.internal.http2.Http2Connection$3: okhttp3.internal.http2.Http2Connection this$0 +androidx.constraintlayout.widget.R$layout: int abc_dialog_title_material +com.baidu.location.e.l$b: java.lang.String f +wangdaye.com.geometricweather.R$id: int textinput_error +james.adaptiveicon.R$layout +com.xw.repo.bubbleseekbar.R$color: int primary_text_default_material_dark +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_checkedTextViewStyle +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: long serialVersionUID +james.adaptiveicon.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +wangdaye.com.geometricweather.R$drawable: int ic_launcher_foreground +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void collapseNotificationPanel() +james.adaptiveicon.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getDesiredWidth() +androidx.customview.R$layout: int notification_template_custom_big +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabView +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +cyanogenmod.app.CMContextConstants$Features: CMContextConstants$Features() +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_title_divider_material +androidx.swiperefreshlayout.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.R$attr: int fabCradleMargin +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTotalPrecipitation(java.lang.Float) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: java.lang.String Unit +androidx.appcompat.R$styleable: int SearchView_closeIcon +androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context,android.util.AttributeSet,int) +androidx.hilt.work.R$layout: int notification_template_part_chronometer +io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable,int,int) +androidx.appcompat.widget.LinearLayoutCompat: void setVerticalGravity(int) +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COL_KEY +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.legacy.coreutils.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: CNWeatherResult$Pm25() +android.didikee.donate.R$style: int TextAppearance_AppCompat_Subhead_Inverse +androidx.preference.R$styleable: int Toolbar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: long EpochDate +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone TimeZone +androidx.coordinatorlayout.R$dimen: R$dimen() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassIndex +retrofit2.ParameterHandler$Field: void apply(retrofit2.RequestBuilder,java.lang.Object) +android.didikee.donate.R$drawable: int notification_bg +android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyleSmall +com.jaredrummler.android.colorpicker.R$attr: int coordinatorLayoutStyle +okhttp3.Request: okhttp3.HttpUrl url +com.google.android.material.R$styleable: int[] Snackbar +com.google.android.material.R$integer: int mtrl_card_anim_delay_ms +wangdaye.com.geometricweather.R$drawable: int weather_thunder_1 +okhttp3.internal.platform.Platform: java.util.logging.Logger logger +com.google.android.material.R$dimen: int notification_small_icon_background_padding +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorButtonNormal +androidx.vectordrawable.R$integer: R$integer() +android.didikee.donate.R$color: int abc_search_url_text_selected +okhttp3.package-info +org.greenrobot.greendao.AbstractDaoSession: java.lang.Object callInTx(java.util.concurrent.Callable) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_fontVariationSettings +androidx.hilt.work.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String Phrase +wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingTop +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getRain() +okio.HashingSource: okio.HashingSource hmacSha1(okio.Source,okio.ByteString) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setStreet_number(java.lang.String) +cyanogenmod.providers.CMSettings$Validator +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analog_light +android.didikee.donate.R$styleable: int AppCompatTheme_colorControlHighlight +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Caption +okhttp3.RequestBody$1 +com.google.android.material.slider.RangeSlider: void setHaloTintList(android.content.res.ColorStateList) io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: java.lang.Object index() -androidx.preference.R$anim: int abc_shrink_fade_out_from_bottom -androidx.constraintlayout.widget.R$dimen: int hint_alpha_material_light -wangdaye.com.geometricweather.main.dialogs.HourlyWeatherDialog: HourlyWeatherDialog() -com.google.android.material.R$styleable: int NavigationView_itemIconSize -android.didikee.donate.R$drawable: int abc_item_background_holo_dark -wangdaye.com.geometricweather.R$styleable: int[] SnackbarLayout -androidx.appcompat.R$style: int Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: float getDistance(float) -com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuItem -androidx.constraintlayout.widget.Placeholder: void setContentId(int) -androidx.fragment.R$styleable: int FontFamilyFont_android_font -com.google.android.material.textfield.TextInputLayout: void setErrorTextAppearance(int) -okhttp3.logging.LoggingEventListener: void connectionAcquired(okhttp3.Call,okhttp3.Connection) -com.jaredrummler.android.colorpicker.R$drawable: int abc_item_background_holo_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.lang.String pubTime -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.CompletableObserver downstream -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language RUSSIAN -androidx.loader.app.LoaderManagerImpl$LoaderViewModel -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_CheckBox -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Hint -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default -androidx.recyclerview.R$id: int title -okhttp3.CacheControl$Builder: int minFreshSeconds -io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float tWindchill -com.amap.api.location.AMapLocationClientOption: java.lang.String getAPIKEY() -com.google.android.material.R$style: int Widget_AppCompat_ActionButton_CloseMode -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type UV_INDEX -androidx.preference.R$styleable: int MenuGroup_android_orderInCategory -androidx.appcompat.resources.R$dimen: int notification_main_column_padding_top -com.google.android.material.appbar.CollapsingToolbarLayout: java.lang.CharSequence getTitle() -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_submit -androidx.hilt.lifecycle.R$id: int tag_accessibility_heading -com.amap.api.fence.DistrictItem$1 -androidx.recyclerview.R$attr: int stackFromEnd -cyanogenmod.app.Profile: Profile(java.lang.String,int,java.util.UUID) -com.google.gson.internal.LazilyParsedNumber -androidx.appcompat.R$styleable: int AppCompatImageView_tint -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_OutlinedButton -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_EXPORT_WITH_DES40_CBC_SHA -cyanogenmod.weather.RequestInfo: boolean isQueryOnlyWeatherRequest() -io.reactivex.internal.operators.observable.ObservableReplay$Node -androidx.appcompat.R$attr: int queryBackground -android.didikee.donate.R$attr: int multiChoiceItemLayout -wangdaye.com.geometricweather.R$styleable: int[] ForegroundLinearLayout -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_popupMenuStyle -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_transitionPathRotate -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_bottom_padding -com.google.android.material.R$styleable: int Constraint_flow_verticalStyle -android.didikee.donate.R$style: int AlertDialog_AppCompat_Light -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_NAME -com.google.android.material.internal.CheckableImageButton -androidx.appcompat.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$string: int cpv_custom -androidx.viewpager2.R$drawable: int notify_panel_notification_icon_bg -com.turingtechnologies.materialscrollbar.R$id: int search_badge -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox -androidx.legacy.coreutils.R$id: int title -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_maxElementsWrap -wangdaye.com.geometricweather.R$dimen: int abc_seekbar_track_progress_height_material -android.didikee.donate.R$attr: int listPreferredItemHeightSmall -androidx.cardview.widget.CardView: int getContentPaddingBottom() -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarSwitch -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card -wangdaye.com.geometricweather.R$style: int title_text -androidx.appcompat.R$styleable: int GradientColor_android_endY -cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getProfileByName(java.lang.String) -androidx.viewpager.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.R$styleable: int[] MaterialToolbar -androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$attr: int flow_horizontalStyle -wangdaye.com.geometricweather.R$layout: int item_pollen_daily -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy IDENTITY -com.google.android.material.R$style: int Widget_AppCompat_RatingBar_Small -com.turingtechnologies.materialscrollbar.R$attr: int checkedTextViewStyle -androidx.constraintlayout.widget.R$string: int abc_searchview_description_voice -androidx.appcompat.resources.R$drawable: int notification_bg_normal_pressed -cyanogenmod.externalviews.IExternalViewProvider: void onStart() -androidx.viewpager.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$id: int textEnd -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit K -androidx.constraintlayout.widget.R$attr: int motionTarget -okhttp3.internal.http2.Header: okio.ByteString TARGET_AUTHORITY -wangdaye.com.geometricweather.R$string: int rain -okhttp3.internal.connection.RouteDatabase -wangdaye.com.geometricweather.R$drawable: int shortcuts_fog -okhttp3.ConnectionPool: boolean connectionBecameIdle(okhttp3.internal.connection.RealConnection) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer grassIndex -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onNext(java.lang.Object) -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabBar -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Menu -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_creator -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline4 -james.adaptiveicon.R$attr: int subtitleTextColor -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Light -com.google.android.material.textfield.TextInputLayout: void setPrefixText(java.lang.CharSequence) -okhttp3.internal.http2.Header: Header(okio.ByteString,okio.ByteString) -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource[] values() -androidx.hilt.work.R$id: int chronometer -com.jaredrummler.android.colorpicker.R$attr: int navigationContentDescription -com.google.android.material.R$dimen: int abc_list_item_height_material -androidx.hilt.work.R$attr: int font -com.google.android.material.R$drawable: int ic_mtrl_checked_circle -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTint -retrofit2.BuiltInConverters$StreamingResponseBodyConverter -okhttp3.internal.ws.RealWebSocket$Close: int code -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_ASSIST_LONG_PRESS_ACTION_VALIDATOR -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int ISOLATED_THUNDERSHOWERS -androidx.work.R$id: int accessibility_custom_action_28 -com.xw.repo.bubbleseekbar.R$dimen: int hint_alpha_material_light -org.greenrobot.greendao.AbstractDao: boolean detach(java.lang.Object) -androidx.core.R$drawable: int notification_bg_normal -com.google.android.material.R$styleable: int TextInputLayout_suffixTextColor -wangdaye.com.geometricweather.R$color: int error_color_material_dark -com.turingtechnologies.materialscrollbar.R$attr: int layout_collapseParallaxMultiplier -androidx.preference.R$color: int primary_dark_material_light -james.adaptiveicon.R$dimen: int tooltip_precise_anchor_extra_offset -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textFontWeight -com.amap.api.fence.GeoFence: java.util.List g -cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.os.Parcel) -cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(android.os.Parcel,cyanogenmod.app.CustomTile$1) -okhttp3.internal.http2.Header: boolean equals(java.lang.Object) -cyanogenmod.app.ThemeVersion: ThemeVersion() -androidx.preference.R$anim: int fragment_close_enter -com.google.android.material.circularreveal.CircularRevealFrameLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer wetBulbTemperature -wangdaye.com.geometricweather.R$attr: int actionMenuTextColor -com.turingtechnologies.materialscrollbar.R$attr: int popupTheme -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabBar -cyanogenmod.hardware.ICMHardwareService: java.lang.String getLtoDestination() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX getNames() -androidx.loader.R$dimen: int notification_large_icon_width -androidx.constraintlayout.widget.R$dimen: int notification_main_column_padding_top -androidx.lifecycle.ViewModelProvider$KeyedFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -retrofit2.converter.gson.GsonRequestBodyConverter: GsonRequestBodyConverter(com.google.gson.Gson,com.google.gson.TypeAdapter) -io.reactivex.Observable: io.reactivex.Observable timestamp(java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$drawable: int notif_temp_127 -wangdaye.com.geometricweather.weather.apis.CaiYunApi -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean,int) -wangdaye.com.geometricweather.R$id: int notification_multi_city -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: void onFailure(retrofit2.Call,java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: long serialVersionUID -io.reactivex.internal.util.NotificationLite -cyanogenmod.profiles.RingModeSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_TEXT -androidx.work.R$drawable: int notification_bg_low_pressed -android.didikee.donate.R$style: int Base_DialogWindowTitle_AppCompat -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endX -androidx.constraintlayout.widget.R$styleable: int[] StateListDrawableItem -androidx.swiperefreshlayout.R$layout: R$layout() -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog -androidx.core.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: int getMarginBottom() -com.turingtechnologies.materialscrollbar.R$id: int scrollIndicatorDown -retrofit2.http.HTTP: java.lang.String path() -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode REFUSED_STREAM -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_wrapMode -com.google.android.material.R$id: int title_template -com.jaredrummler.android.colorpicker.ColorPickerView: void setColor(int) -com.google.android.material.R$attr: int layout_constraintBottom_toBottomOf -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: AirQuality(java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_pressed_holo_light -retrofit2.Call: retrofit2.Response execute() -com.xw.repo.bubbleseekbar.R$attr: int actionProviderClass -wangdaye.com.geometricweather.R$styleable: int AlertDialog_android_layout -wangdaye.com.geometricweather.R$drawable: int flag_el -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour[] values() -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showDialog -wangdaye.com.geometricweather.R$id: int edit_query -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onComplete() -okhttp3.internal.http2.PushObserver: boolean onRequest(int,java.util.List) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight -org.greenrobot.greendao.AbstractDao: void updateInsideSynchronized(java.lang.Object,android.database.sqlite.SQLiteStatement,boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitleTextColor -retrofit2.Retrofit$Builder: retrofit2.Retrofit build() -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -okhttp3.CacheControl: okhttp3.CacheControl FORCE_NETWORK -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_DropDownItem_Spinner -androidx.preference.R$color: int abc_tint_seek_thumb -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCity() -wangdaye.com.geometricweather.R$color: int mtrl_textinput_focused_box_stroke_color -androidx.preference.R$dimen: int hint_alpha_material_light -com.google.gson.stream.JsonWriter: int[] stack -wangdaye.com.geometricweather.R$color: int striking_red -wangdaye.com.geometricweather.R$attr: int isPreferenceVisible -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$layout: int design_layout_snackbar -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: int requestFusion(int) -cyanogenmod.profiles.BrightnessSettings: int describeContents() -androidx.hilt.R$dimen: int notification_large_icon_width -cyanogenmod.hardware.CMHardwareManager: boolean registerThermalListener(cyanogenmod.hardware.ThermalListenerCallback) -androidx.preference.R$attr: int icon -wangdaye.com.geometricweather.R$drawable: int mtrl_ic_cancel -androidx.coordinatorlayout.R$layout: R$layout() -com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial Imperial -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_bottom_margin -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String url -cyanogenmod.externalviews.ExternalView: void onActivityStarted(android.app.Activity) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableTop -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String zone -androidx.constraintlayout.widget.R$layout: int abc_search_dropdown_item_icons_2line -wangdaye.com.geometricweather.db.entities.DailyEntity: void setCityId(java.lang.String) -androidx.appcompat.resources.R$styleable: int ColorStateListItem_android_color -com.turingtechnologies.materialscrollbar.R$attr: int layout_keyline -com.xw.repo.bubbleseekbar.R$dimen: int abc_floating_window_z -cyanogenmod.externalviews.ExternalViewProviderService$1 -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getWetBulbTemperature() -androidx.vectordrawable.R$id: int info -okhttp3.internal.ws.WebSocketReader: void readUntilNonControlFrame() -com.google.android.material.R$styleable: int SearchView_defaultQueryHint -okhttp3.Cookie: java.lang.String path() -retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object L$0 -androidx.constraintlayout.widget.R$color: int bright_foreground_disabled_material_dark -cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener: void onAttachedToWindow() -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: void run() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial() -com.xw.repo.bubbleseekbar.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -com.turingtechnologies.materialscrollbar.R$drawable: int design_password_eye -com.google.android.material.textfield.TextInputLayout: void setStartIconDrawable(int) -androidx.lifecycle.FullLifecycleObserverAdapter: androidx.lifecycle.FullLifecycleObserver mFullLifecycleObserver -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Choice -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.MediaType contentType() -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_cut_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int[] RecyclerView -com.google.android.material.R$style: int Base_Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.common.ui.widgets.DonateImageView: DonateImageView(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_text_color -wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_showOldColor -com.google.android.material.R$styleable: int ProgressIndicator_inverse -com.google.android.material.R$layout: int mtrl_picker_header_selection_text -androidx.core.R$id: int text -wangdaye.com.geometricweather.R$attr: int preferenceTheme -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSteps -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_36dp -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_content_inset_with_nav -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_1 -android.didikee.donate.R$styleable: int MenuItem_tooltipText -android.didikee.donate.R$dimen: int abc_text_size_subhead_material -james.adaptiveicon.R$dimen: int abc_action_bar_content_inset_with_nav -androidx.recyclerview.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -android.didikee.donate.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_toBottomOf -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_font -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -wangdaye.com.geometricweather.R$color: int foreground_material_light -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getCityId() -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_bottom_padding -james.adaptiveicon.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$string: int content_desc_back -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_Alert -cyanogenmod.weather.RequestInfo: android.location.Location mLocation -wangdaye.com.geometricweather.common.basic.models.weather.Astro: boolean isValid() -wangdaye.com.geometricweather.R$color: int design_fab_stroke_end_outer_color -androidx.appcompat.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -com.google.android.material.R$styleable: int TextInputLayout_helperTextTextColor -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow -androidx.core.R$drawable: int notify_panel_notification_icon_bg -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableBottom -okio.HashingSource: okio.HashingSource sha1(okio.Source) -wangdaye.com.geometricweather.R$attr: int colorScheme -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_statusBarBackground -com.google.android.material.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge -com.xw.repo.bubbleseekbar.R$id: int async -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy -wangdaye.com.geometricweather.R$attr: int msb_handleColor -com.jaredrummler.android.colorpicker.R$id: int italic -com.google.android.material.bottomappbar.BottomAppBar: void setCradleVerticalOffset(float) -wangdaye.com.geometricweather.R$drawable: int notif_temp_134 -androidx.recyclerview.R$id -cyanogenmod.app.ICustomTileListener$Stub$Proxy -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: ExternalViewProviderService$Provider$ProviderImpl$3(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -android.didikee.donate.R$styleable: int MenuItem_contentDescription -androidx.viewpager2.R$id: int accessibility_custom_action_0 -cyanogenmod.app.ILiveLockScreenManagerProvider: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -com.google.android.material.R$styleable: int[] AppCompatTextHelper -com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_top_material -androidx.recyclerview.widget.RecyclerView: void setLayoutTransition(android.animation.LayoutTransition) -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onComplete() -androidx.appcompat.R$attr: int spinBars -androidx.constraintlayout.widget.R$string: int abc_menu_function_shortcut_label -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LOCKSCREEN -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_left_mtrl_dark -com.google.android.material.chip.Chip: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_editTextPreferenceStyle -io.reactivex.Observable: io.reactivex.Observable concatMapMaybe(io.reactivex.functions.Function,int) -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer dbz -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_DarkActionBar -androidx.appcompat.R$color: int abc_search_url_text_normal -androidx.customview.R$attr: int alpha -wangdaye.com.geometricweather.R$attr: int alertDialogStyle -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String HOMESCREEN_URI -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Large -androidx.appcompat.widget.AppCompatImageView: android.content.res.ColorStateList getSupportBackgroundTintList() -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_typeface -androidx.appcompat.R$attr: int paddingTopNoTitle -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Color -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextTextAppearance -androidx.preference.R$id: int accessibility_custom_action_18 -com.google.android.material.R$styleable: int ConstraintSet_android_pivotX -androidx.work.R$attr: int fontProviderPackage -com.google.android.material.R$styleable: int LinearLayoutCompat_measureWithLargestChild -okhttp3.internal.http2.Http2Stream$FramingSource: void receive(okio.BufferedSource,long) -io.reactivex.internal.schedulers.ScheduledRunnable: ScheduledRunnable(java.lang.Runnable,io.reactivex.internal.disposables.DisposableContainer) -james.adaptiveicon.R$drawable: int abc_ic_go_search_api_material -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -com.google.android.material.R$dimen: int design_textinput_caption_translate_y -androidx.constraintlayout.widget.R$attr: int dividerHorizontal -com.google.gson.stream.JsonReader: void nextNull() -wangdaye.com.geometricweather.R$attr: int layout_scrollInterpolator -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_corner_radius -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getSunSetDate() -cyanogenmod.profiles.ConnectionSettings: void setValue(int) -com.turingtechnologies.materialscrollbar.R$attr: int actionOverflowMenuStyle -james.adaptiveicon.R$styleable: int TextAppearance_android_fontFamily -com.google.android.material.R$style: int Base_Widget_AppCompat_Spinner_Underlined -com.google.android.material.R$styleable: int AppCompatImageView_tint -com.google.android.material.R$dimen: int mtrl_card_dragged_z -com.google.android.material.R$dimen: int highlight_alpha_material_colored -okhttp3.HttpUrl$Builder: java.lang.String encodedPassword -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endY -com.google.android.material.R$attr: int paddingStart -com.google.gson.stream.JsonReader: int nextNonWhitespace(boolean) -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_baselineAligned -com.amap.api.location.AMapLocationClient: java.lang.String getDeviceId(android.content.Context) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_RadioButton -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.R$dimen: int item_touch_helper_swipe_escape_velocity -com.xw.repo.bubbleseekbar.R$attr: int hideOnContentScroll -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_wrapMode -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_maxLines -wangdaye.com.geometricweather.R$string: int key_speed_unit -android.didikee.donate.R$color: int material_grey_300 -wangdaye.com.geometricweather.R$string: int widget_day -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getDurationText(android.content.Context,float) -james.adaptiveicon.R$attr: int autoSizeStepGranularity -com.google.android.material.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge -wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_Dialog -com.google.android.material.R$layout: int material_chip_input_combo -androidx.work.R$dimen: int notification_right_icon_size -cyanogenmod.platform.Manifest: Manifest() -okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withReadTimeout(int,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$attr: int sv_side -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: boolean isValidIndex() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum -androidx.work.R$dimen: int notification_top_pad_large_text -james.adaptiveicon.R$string: int abc_activitychooserview_choose_application -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getLtoSource() -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean mainDone -cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder onBind(android.content.Intent) -com.xw.repo.bubbleseekbar.R$attr: int buttonBarPositiveButtonStyle -com.amap.api.fence.GeoFence$1: java.lang.Object[] newArray(int) -androidx.viewpager.R$attr: int font -com.google.android.material.R$dimen: int mtrl_btn_snackbar_margin_horizontal -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.Number) -androidx.preference.R$style: int Widget_AppCompat_RatingBar -cyanogenmod.app.suggest.IAppSuggestManager$Stub: IAppSuggestManager$Stub() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindChillTemperature -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setBrandId(java.lang.String) -james.adaptiveicon.R$styleable: int MenuView_android_horizontalDivider -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_behavior -androidx.appcompat.R$style: int Widget_AppCompat_ListView_Menu -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: long serialVersionUID -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: int CategoryValue -wangdaye.com.geometricweather.R$styleable: int ActionMenuItemView_android_minWidth -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark -androidx.appcompat.R$attr: int listChoiceIndicatorMultipleAnimated -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Menu -okhttp3.RealCall -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: CNWeatherResult$WeatherX$InfoX() -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low -androidx.lifecycle.SavedStateHandleController: java.lang.String mKey -androidx.constraintlayout.widget.R$attr: int currentState -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String pressure -androidx.preference.R$color: int material_grey_900 -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox -cyanogenmod.providers.CMSettings$Global: android.net.Uri getUriFor(java.lang.String) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_creator -wangdaye.com.geometricweather.R$drawable: int abc_btn_check_material -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_16dp -androidx.preference.R$attr: int subtitleTextColor -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: ObservableTakeUntil$TakeUntilMainObserver(io.reactivex.Observer) -okio.AsyncTimeout$1: okio.Sink val$sink -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: okhttp3.internal.http2.Settings val$settings -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver -wangdaye.com.geometricweather.R$animator: int weather_haze_3 -androidx.work.WorkInfo$State: boolean isFinished() -androidx.lifecycle.ComputableLiveData$3: void run() -com.google.android.material.card.MaterialCardView: android.graphics.RectF getBoundsAsRectF() -okhttp3.internal.cache.DiskLruCache: void checkNotClosed() -androidx.constraintlayout.widget.R$styleable: int Toolbar_popupTheme -wangdaye.com.geometricweather.R$drawable: int abc_ic_voice_search_api_material +wangdaye.com.geometricweather.R$drawable: int flag_ar +androidx.fragment.R$styleable: int FontFamilyFont_android_fontStyle +okhttp3.ResponseBody: ResponseBody() +android.didikee.donate.R$color: int abc_tint_seek_thumb +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +android.didikee.donate.R$drawable: int abc_list_selector_disabled_holo_light +com.google.android.material.R$style: int TextAppearance_AppCompat_Medium +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackInactiveTintList() +android.didikee.donate.R$styleable: int[] AppCompatTheme +wangdaye.com.geometricweather.R$id: int widget_day_sign +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabTextColor +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableItem_android_id +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: java.lang.Object get() +okio.AsyncTimeout$2: long read(okio.Buffer,long) +com.google.android.material.R$string: int abc_searchview_description_clear +com.google.android.material.R$styleable: int GradientColor_android_startX +androidx.loader.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_Cut +androidx.appcompat.R$dimen: int abc_button_inset_vertical_material +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_APP_SWITCH_LONG_PRESS_ACTION_VALIDATOR +com.turingtechnologies.materialscrollbar.R$attr: int helperTextEnabled +okhttp3.internal.tls.DistinguishedNameParser: char getEscaped() +okhttp3.EventListener: void connectStart(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy) +androidx.recyclerview.widget.RecyclerView: androidx.core.view.NestedScrollingChildHelper getScrollingChildHelper() +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language FOLLOW_SYSTEM +androidx.appcompat.R$drawable: int notification_bg_low_pressed +com.google.android.material.tabs.TabLayout: void setOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +com.google.android.material.R$attr: int maxCharacterCount +okio.GzipSource: void checkEqual(java.lang.String,int,int) +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetRight +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void request(long) +io.reactivex.Observable: io.reactivex.Observable flatMapMaybe(io.reactivex.functions.Function) +androidx.fragment.R$id: int accessibility_custom_action_12 +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_padding_start_material +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Subtitle1 +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableBottom +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableRightCompat +androidx.constraintlayout.widget.R$anim: int abc_slide_in_top +okio.Buffer: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) +wangdaye.com.geometricweather.R$attr: int counterMaxLength +cyanogenmod.externalviews.ExternalViewProviderService: android.view.WindowManager mWindowManager +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_textOn +androidx.appcompat.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +wangdaye.com.geometricweather.R$array: int temperature_units_long +com.xw.repo.bubbleseekbar.R$attr: int searchHintIcon +com.xw.repo.bubbleseekbar.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$integer: int bottom_sheet_slide_duration +wangdaye.com.geometricweather.R$drawable: int notif_temp_114 +cyanogenmod.profiles.StreamSettings: int getStreamId() +com.amap.api.fence.DistrictItem: java.lang.String b +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FOGGY +wangdaye.com.geometricweather.R$attr: int shouldDisableView +okhttp3.internal.ws.RealWebSocket: boolean send(okio.ByteString) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DIALER_OPENCNAM_ACCOUNT_SID_VALIDATOR +com.turingtechnologies.materialscrollbar.R$attr: int chipIconVisible +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplBase: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) +com.google.android.material.R$color: int highlighted_text_material_dark +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getBackgroundColor() +cyanogenmod.profiles.ConnectionSettings$1: cyanogenmod.profiles.ConnectionSettings[] newArray(int) +android.didikee.donate.R$dimen: int notification_action_text_size +android.didikee.donate.R$style: int Widget_AppCompat_ActionButton_CloseMode +wangdaye.com.geometricweather.R$drawable: int notif_temp_5 +cyanogenmod.library.R$attr: R$attr() +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver +com.jaredrummler.android.colorpicker.R$attr: int order +android.didikee.donate.R$attr: int textAppearanceSearchResultSubtitle +okhttp3.OkHttpClient$1: void setCache(okhttp3.OkHttpClient$Builder,okhttp3.internal.cache.InternalCache) +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.internal.util.AtomicThrowable errors +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Count +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_CELL +wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMarkTint +wangdaye.com.geometricweather.R$style: int Preference_Information +androidx.preference.R$id: int action_mode_bar +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_1_30 +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: ObservableConcatMapMaybe$ConcatMapMaybeMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,io.reactivex.internal.util.ErrorMode) +com.amap.api.location.UmidtokenInfo: UmidtokenInfo() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeWindChillTemperature() +wangdaye.com.geometricweather.R$attr: int behavior_autoHide +okhttp3.internal.http2.Settings: int ENABLE_PUSH +com.google.gson.stream.JsonReader: void skipValue() +androidx.core.R$styleable: int GradientColor_android_centerY +okhttp3.internal.connection.RealConnection: void onSettings(okhttp3.internal.http2.Http2Connection) +com.google.android.material.R$drawable: int abc_vector_test +androidx.preference.R$id: int checked +wangdaye.com.geometricweather.R$styleable: int Constraint_pathMotionArc +okhttp3.logging.HttpLoggingInterceptor +wangdaye.com.geometricweather.R$id: int transitionToStart +com.google.android.material.R$styleable: int NavigationView_android_fitsSystemWindows +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationZ +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeight +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Counter +com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabBarStyle +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +com.google.android.material.R$dimen: int mtrl_calendar_navigation_top_padding +cyanogenmod.weather.WeatherInfo$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getType() +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer windChillTemperature +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getSpeed() +com.google.gson.internal.LinkedTreeMap: java.util.Comparator comparator +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dialog +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer grassLevel +cyanogenmod.providers.CMSettings$Secure: java.lang.String[] LEGACY_SECURE_SETTINGS +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider BAIDU +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_radius +com.google.android.material.appbar.AppBarLayout$Behavior +com.turingtechnologies.materialscrollbar.R$color: int highlighted_text_material_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setUnit(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemTextAppearance +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SeekBar +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_switch_compat +androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getWindChillTemperature() +com.google.android.material.R$styleable: int AppCompatTheme_editTextColor +cyanogenmod.themes.ThemeManager$1$2: cyanogenmod.themes.ThemeManager$1 this$1 +cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,android.content.ComponentName) +androidx.loader.R$drawable: int notification_template_icon_low_bg +com.xw.repo.bubbleseekbar.R$color: int primary_dark_material_light +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light +okhttp3.RequestBody: okhttp3.MediaType contentType() +androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Province +androidx.constraintlayout.widget.ConstraintLayout: int getOptimizationLevel() +com.amap.api.fence.GeoFence: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabText +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer +androidx.lifecycle.SavedStateHandleController$1: androidx.lifecycle.Lifecycle val$lifecycle +com.google.android.material.R$styleable: int OnSwipe_touchRegionId +androidx.constraintlayout.widget.R$styleable: int Transform_android_translationY +androidx.recyclerview.R$id: int chronometer +androidx.constraintlayout.widget.R$styleable: int[] ActionBarLayout +androidx.appcompat.R$color: int tooltip_background_light +io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable[] values() +com.amap.api.location.AMapLocation: void setErrorInfo(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMode +androidx.lifecycle.ReportFragment: ReportFragment() +com.amap.api.location.AMapLocationClientOption: long s +androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.R$layout: int abc_cascading_menu_item_layout +androidx.appcompat.R$id: int dialog_button +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +androidx.dynamicanimation.R$dimen: int notification_small_icon_background_padding +com.google.gson.stream.JsonReader: void skipUnquotedValue() +io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier valueOf(java.lang.String) +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_track_mtrl_alpha +com.google.android.material.R$style: int Widget_AppCompat_ActionButton +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void slideLockscreenIn() +okhttp3.internal.cache.DiskLruCache: java.lang.String VERSION_1 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dividerHorizontal +androidx.work.R$bool: int enable_system_job_service_default +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken[] values() +wangdaye.com.geometricweather.R$drawable: int notif_temp_108 +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +okhttp3.OkHttpClient$Builder: java.util.List interceptors() +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_dialogPreferenceStyle +androidx.hilt.work.R$drawable: int notification_bg_low +androidx.appcompat.resources.R$styleable: int[] ColorStateListItem +androidx.preference.R$styleable: int SwitchPreference_switchTextOn +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void dispose() +com.bumptech.glide.integration.okhttp.R$layout +cyanogenmod.providers.CMSettings$Global: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) okio.DeflaterSink: okio.Timeout timeout() -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_3 -wangdaye.com.geometricweather.R$attr: int tabTextAppearance -com.bumptech.glide.integration.okhttp.R$id -androidx.constraintlayout.widget.R$styleable: int SearchView_iconifiedByDefault -com.google.android.material.R$attr: int telltales_tailColor -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar -com.jaredrummler.android.colorpicker.R$string: int abc_shareactionprovider_share_with_application -james.adaptiveicon.R$styleable: int[] ActivityChooserView -cyanogenmod.weather.WeatherInfo: int access$902(cyanogenmod.weather.WeatherInfo,int) -cyanogenmod.providers.ThemesContract$ThemesColumns -androidx.preference.R$attr: int initialExpandedChildrenCount -okhttp3.CacheControl$Builder: int maxStaleSeconds -com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context) -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop -wangdaye.com.geometricweather.R$style: int notification_large_title_text -com.amap.api.location.AMapLocation: java.lang.String toString() -androidx.constraintlayout.widget.R$styleable: int PropertySet_visibilityMode -androidx.preference.R$anim: int abc_slide_out_top -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status SUCCESS -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Inverse -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dark -androidx.appcompat.widget.AppCompatTextView: androidx.core.text.PrecomputedTextCompat$Params getTextMetricsParamsCompat() -com.google.android.material.R$color: int design_fab_shadow_end_color -wangdaye.com.geometricweather.R$id: int item_details_content -androidx.preference.R$styleable: int CompoundButton_buttonCompat -com.google.android.material.R$attr: int passwordToggleTint -androidx.cardview.widget.CardView: void setMinimumHeight(int) -androidx.viewpager.R$style -com.google.android.material.timepicker.ChipTextInputComboView: void setOnClickListener(android.view.View$OnClickListener) -cyanogenmod.weather.CMWeatherManager$2$2: java.util.List val$weatherLocations -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$attr: int tabUnboundedRipple -androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context,android.util.AttributeSet) -okhttp3.RequestBody$1: long contentLength() -androidx.appcompat.resources.R$id: int accessibility_custom_action_3 -wangdaye.com.geometricweather.R$id: int hideable -okhttp3.internal.http1.Http1Codec$FixedLengthSource: long bytesRemaining -okio.Buffer: okio.Buffer buffer() -wangdaye.com.geometricweather.R$layout: int abc_select_dialog_material -androidx.customview.R$id: int text2 -androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -androidx.preference.R$dimen: int compat_button_inset_horizontal_material -cyanogenmod.weather.CMWeatherManager$1$1 -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ButtonBar -james.adaptiveicon.R$attr: int listPopupWindowStyle -androidx.appcompat.R$styleable: int MenuView_android_itemBackground -okhttp3.Request$Builder: okhttp3.RequestBody body -wangdaye.com.geometricweather.common.ui.behaviors.InkPageIndicatorBehavior -androidx.constraintlayout.widget.R$dimen: R$dimen() -james.adaptiveicon.R$styleable: int LinearLayoutCompat_divider -com.google.android.material.R$attr: int counterOverflowTextAppearance -com.google.android.material.appbar.AppBarLayout: int getDownNestedScrollRange() -cyanogenmod.externalviews.KeyguardExternalView$3: int val$x -cyanogenmod.app.Profile -wangdaye.com.geometricweather.R$bool: R$bool() -james.adaptiveicon.R$drawable: int abc_ic_star_half_black_48dp -android.didikee.donate.R$styleable: int ActionBar_contentInsetLeft -androidx.preference.R$drawable: int abc_text_select_handle_middle_mtrl_dark -androidx.dynamicanimation.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.R$string: int path_password_eye_mask_strike_through -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer freezingHazard -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: long updateTime -com.jaredrummler.android.colorpicker.R$attr: int switchPreferenceCompatStyle -com.amap.api.location.AMapLocationClientOption$2: int[] a -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalAlign -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicator -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: void setFrom(java.lang.String) -com.google.android.material.R$styleable: int MaterialCalendarItem_itemFillColor -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getUvDescription() -androidx.preference.R$drawable: int abc_text_cursor_material -androidx.preference.R$attr: int adjustable -androidx.appcompat.R$id: int scrollView -androidx.preference.R$styleable: int[] AppCompatSeekBar -okhttp3.internal.Util: int checkDuration(java.lang.String,long,java.util.concurrent.TimeUnit) -cyanogenmod.app.ICMStatusBarManager -com.google.android.material.R$id: int linear -com.google.android.material.textfield.MaterialAutoCompleteTextView: java.lang.CharSequence getHint() -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_PLAY_QUEUE -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: long serialVersionUID -androidx.preference.R$styleable: int[] PreferenceGroup -androidx.preference.R$styleable: int DrawerArrowToggle_thickness -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ROMANIAN -cyanogenmod.app.CustomTile$ExpandedItem: int describeContents() -androidx.drawerlayout.R$styleable: int[] ColorStateListItem -androidx.constraintlayout.widget.R$attr: int layout_constraintEnd_toStartOf -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -okhttp3.internal.Util: int indexOfControlOrNonAscii(java.lang.String) -cyanogenmod.app.CustomTile$Builder: CustomTile$Builder(android.content.Context) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.lang.String MobileLink -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource valueOf(java.lang.String) -androidx.dynamicanimation.R$styleable: int GradientColor_android_tileMode -androidx.lifecycle.LifecycleEventObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.db.entities.HistoryEntity: int getDaytimeTemperature() -androidx.appcompat.R$dimen: int abc_text_size_subtitle_material_toolbar -com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding valueOf(java.lang.String) -cyanogenmod.profiles.BrightnessSettings: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$attr: int autoCompleteTextViewStyle -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: java.util.concurrent.TimeUnit unit -androidx.appcompat.R$dimen: int abc_control_corner_material -wangdaye.com.geometricweather.R$styleable: int KeyPosition_sizePercent -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: CaiYunMainlyResult$UrlBean() -okhttp3.Cache: java.io.File directory() -com.google.android.material.R$styleable: int KeyAttribute_android_translationY -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_pathMotionArc -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay night() -okhttp3.OkHttpClient$1: void addLenient(okhttp3.Headers$Builder,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacingHorizontal -com.google.android.material.chip.Chip: void setCheckedIconVisible(int) -com.google.android.material.R$id: int alertTitle -james.adaptiveicon.R$id: int search_voice_btn -wangdaye.com.geometricweather.R$dimen: int notification_right_side_padding_top -androidx.preference.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTypeface(android.graphics.Typeface) -androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_title_material -androidx.constraintlayout.widget.R$attr: int layout_optimizationLevel -androidx.dynamicanimation.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$styleable: int Slider_labelStyle -androidx.viewpager.R$styleable: int GradientColor_android_centerY -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -com.google.android.material.R$color: int mtrl_outlined_stroke_color -androidx.preference.R$attr: int actionBarSplitStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar -okio.SegmentedByteString: byte[][] segments -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMarkTintMode -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr Precip1hr -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onFailed() -cyanogenmod.app.BaseLiveLockManagerService: java.lang.String TAG -androidx.loader.R$styleable: int GradientColor_android_type -com.bumptech.glide.R$id: int actions -retrofit2.adapter.rxjava2.Result: retrofit2.Response response() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionMenuTextColor -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setExpandedStyle(cyanogenmod.app.CustomTile$ExpandedStyle) -retrofit2.Invocation: java.lang.String toString() -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_color -com.xw.repo.bubbleseekbar.R$attr: int colorSwitchThumbNormal -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedLevel -wangdaye.com.geometricweather.R$drawable: int indicator_ltr -okhttp3.OkHttpClient: okhttp3.CertificatePinner certificatePinner() -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox -androidx.vectordrawable.animated.R$styleable: int[] FontFamilyFont -cyanogenmod.weather.CMWeatherManager$2$2 -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenManager sInstance -com.google.android.material.floatingactionbutton.FloatingActionButton: void setElevation(float) -androidx.swiperefreshlayout.R$color: int ripple_material_light -androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotationX -wangdaye.com.geometricweather.R$color: int switch_thumb_disabled_material_light -com.google.android.material.R$attr: int iconStartPadding -androidx.swiperefreshlayout.R$attr: int fontProviderCerts -androidx.preference.R$anim: int abc_slide_out_bottom -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_fontVariationSettings -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginStart -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Primary -cyanogenmod.hardware.IThermalListenerCallback$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerValue(boolean,java.lang.Object) -okhttp3.Address: javax.net.SocketFactory socketFactory -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTag -james.adaptiveicon.R$styleable: int ActionMode_subtitleTextStyle -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.lang.Throwable error -com.google.android.gms.common.internal.safeparcel.SafeParcelable: java.lang.String NULL -com.google.android.material.card.MaterialCardView: float getCardViewRadius() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTint -androidx.hilt.work.R$styleable: int[] FontFamily -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_HOME_LONG_PRESS_ACTION_VALIDATOR -androidx.legacy.coreutils.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$dimen: int standard_weather_icon_size -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: java.lang.String MESSAGE -androidx.appcompat.R$attr: int isLightTheme -androidx.recyclerview.widget.RecyclerView: void setEdgeEffectFactory(androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory) -androidx.constraintlayout.widget.R$layout: int support_simple_spinner_dropdown_item -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: AccuCurrentResult$TemperatureSummary$Past6HourRange() -com.google.android.material.R$styleable: int OnSwipe_maxVelocity -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLastLocationLifeCycle(long) -okhttp3.internal.Version: Version() -wangdaye.com.geometricweather.R$attr: int key -com.google.android.material.R$styleable: int ShapeableImageView_shapeAppearance -com.bumptech.glide.R$integer: int status_bar_notification_info_maxnum -androidx.preference.R$styleable: int PreferenceFragmentCompat_android_layout -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitation -com.amap.api.location.AMapLocation: java.lang.String getCoordType() -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method removeMethod -com.amap.api.location.AMapLocationClientOption: boolean p -cyanogenmod.app.Profile$ProfileTrigger$1: cyanogenmod.app.Profile$ProfileTrigger createFromParcel(android.os.Parcel) -com.amap.api.location.AMapLocationClient: void disableBackgroundLocation(boolean) -com.turingtechnologies.materialscrollbar.R$attr: int collapseIcon -okhttp3.internal.platform.Platform: java.util.List alpnProtocolNames(java.util.List) -androidx.constraintlayout.widget.R$color: int abc_search_url_text -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_ENABLED_VALIDATOR -io.reactivex.Observable: io.reactivex.Observable onErrorReturn(io.reactivex.functions.Function) -android.didikee.donate.R$styleable: int SwitchCompat_trackTint -androidx.loader.R$integer: int status_bar_notification_info_maxnum -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.bumptech.glide.R$string: int status_bar_notification_info_overflow -okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: void execute() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul3H -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void dispose() -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void dispose() -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_checkable -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onNext(java.lang.Object) -androidx.lifecycle.LiveDataReactiveStreams: org.reactivestreams.Publisher toPublisher(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Primary -com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearanceActive -james.adaptiveicon.R$id: int action_mode_close_button -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_16 -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_enabled -androidx.coordinatorlayout.R$attr: int keylines -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$y -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: int retries -androidx.preference.R$attr: int queryBackground -wangdaye.com.geometricweather.R$id: int container_main_aqi_title -com.google.gson.FieldNamingPolicy$4: java.lang.String translateName(java.lang.reflect.Field) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button -androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView_Menu -retrofit2.OptionalConverterFactory -androidx.appcompat.resources.R$dimen: int notification_large_icon_width -androidx.appcompat.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_height -com.google.android.material.R$string: int abc_menu_space_shortcut_label -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -com.jaredrummler.android.colorpicker.R$attr: int cpv_alphaChannelText -android.didikee.donate.R$styleable: int MenuItem_android_onClick -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean getPrecipitationProbability() -okio.Timeout: void waitUntilNotified(java.lang.Object) -okhttp3.internal.http2.Http2Connection$PingRunnable: void execute() -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int prefetch -com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_alphaChannelText -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIconTintMode -retrofit2.RequestBuilder: void setBody(okhttp3.RequestBody) -james.adaptiveicon.R$dimen: int highlight_alpha_material_light -androidx.appcompat.R$styleable: int MenuItem_iconTintMode -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -com.google.gson.stream.JsonReader: java.lang.String nextName() -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -androidx.dynamicanimation.R$drawable: int notify_panel_notification_icon_bg -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void startTimeout(long) -androidx.work.R$integer -com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Class,java.lang.Class) -com.jaredrummler.android.colorpicker.R$attr: int titleTextColor -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMode -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_START -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX -com.google.android.material.R$styleable: int Badge_verticalOffset -wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_entries +com.google.android.material.bottomappbar.BottomAppBar: android.content.res.ColorStateList getBackgroundTint() +com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_text_color +com.turingtechnologies.materialscrollbar.R$string: int fab_transformation_scrim_behavior +okhttp3.Cache$Entry: java.lang.String url +android.didikee.donate.R$attr: int titleMarginBottom +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar +wangdaye.com.geometricweather.R$attr: int motionStagger +androidx.constraintlayout.widget.R$color: int bright_foreground_material_light +com.google.android.material.R$color: int design_snackbar_background_color +androidx.appcompat.R$id: int notification_main_column +com.google.android.material.R$attr: int expandedTitleGravity +wangdaye.com.geometricweather.R$drawable: int flag_fr +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getSuffixTextColor() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWindLevel() +cyanogenmod.weather.WeatherLocation$1: WeatherLocation$1() +com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context) +wangdaye.com.geometricweather.R$color: int dim_foreground_disabled_material_dark +com.jaredrummler.android.colorpicker.R$attr: int subtitleTextAppearance +wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService +wangdaye.com.geometricweather.R$dimen: int mtrl_edittext_rectangle_top_offset +com.google.android.material.R$attr: int trackTintMode +wangdaye.com.geometricweather.R$id: int mini +com.google.android.material.button.MaterialButton: void setCornerRadius(int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: AccuDailyResult$DailyForecasts$Night$LocalSource() +androidx.preference.R$string: int v7_preference_off +androidx.transition.ChangeBounds$7: androidx.transition.ChangeBounds$ViewBounds mViewBounds +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_creator +androidx.constraintlayout.widget.R$attr: int onShow +androidx.work.R$style: int TextAppearance_Compat_Notification_Info +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_track_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX aqi +wangdaye.com.geometricweather.R$attr: int msb_hideDelayInMilliseconds +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_anchor +wangdaye.com.geometricweather.R$attr: int customNavigationLayout +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode AUTO +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityResumed(android.app.Activity) +wangdaye.com.geometricweather.R$attr: int layout_keyline +io.reactivex.internal.subscriptions.DeferredScalarSubscription: org.reactivestreams.Subscriber downstream +androidx.constraintlayout.widget.R$id: int off +androidx.lifecycle.MethodCallsLogger +androidx.coordinatorlayout.R$dimen: int notification_action_icon_size +com.baidu.location.e.l$b +androidx.work.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.R$styleable: int[] TabItem +androidx.preference.R$style: int Base_Theme_AppCompat_CompactMenu +com.amap.api.fence.PoiItem: int describeContents() +com.amap.api.location.LocationManagerBase: void stopLocation() +wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_orderingFromXml +wangdaye.com.geometricweather.settings.fragments.UnitSettingsFragment +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String unit +com.xw.repo.bubbleseekbar.R$attr: int queryBackground +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SeekBar +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_left_mtrl_dark +com.turingtechnologies.materialscrollbar.R$style: int Base_V28_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xmr +androidx.preference.R$dimen: int abc_edit_text_inset_horizontal_material +androidx.lifecycle.SavedStateHandle: void set(java.lang.String,java.lang.Object) +com.google.android.material.R$styleable: int[] MenuItem +com.google.android.material.R$styleable: int Chip_chipIconVisible +wangdaye.com.geometricweather.common.basic.models.weather.Astro: Astro(java.util.Date,java.util.Date) +com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_end +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconSize +com.xw.repo.bubbleseekbar.R$attr +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.R$attr: int itemFillColor +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress +wangdaye.com.geometricweather.R$attr: int autoSizePresetSizes +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_Solid +cyanogenmod.themes.IThemeService$Stub$Proxy: void rebuildResourceCache() +okhttp3.EventListener: okhttp3.EventListener$Factory factory(okhttp3.EventListener) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitationProbability +androidx.dynamicanimation.R$attr: int fontProviderFetchStrategy +androidx.appcompat.R$styleable: int GradientColor_android_startY +com.google.android.material.card.MaterialCardView: void setCheckedIconTint(android.content.res.ColorStateList) +androidx.preference.R$id: int visible_removing_fragment_view_tag +cyanogenmod.externalviews.KeyguardExternalView: boolean onPreDraw() +io.reactivex.Observable: io.reactivex.Observable delaySubscription(long,java.util.concurrent.TimeUnit) +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void dispose() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +james.adaptiveicon.R$styleable: int MenuItem_android_id +wangdaye.com.geometricweather.common.basic.GeoViewModel: GeoViewModel(android.app.Application) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_icon_padding +com.google.android.material.R$dimen: int abc_text_size_large_material +com.jaredrummler.android.colorpicker.ColorPreference: void setOnShowDialogListener(com.jaredrummler.android.colorpicker.ColorPreference$OnShowDialogListener) +com.xw.repo.bubbleseekbar.R$dimen: int notification_big_circle_margin +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_NoActionBar +cyanogenmod.profiles.BrightnessSettings$1 +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_48dp +com.amap.api.fence.PoiItem: void setAddress(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum Minimum +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial Imperial +com.turingtechnologies.materialscrollbar.R$attr: int itemIconSize +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemTextAppearance +com.google.android.material.R$color: int primary_text_disabled_material_light +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: long serialVersionUID +androidx.preference.R$styleable: int AppCompatTheme_switchStyle +androidx.fragment.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$attr: int tabRippleColor +com.bumptech.glide.R$styleable: int FontFamilyFont_android_ttcIndex +com.amap.api.location.AMapLocation: void setAddress(java.lang.String) +android.support.v4.app.INotificationSideChannel$Default +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_activityChooserViewStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginLeft +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.internal.disposables.SequentialDisposable upstream +james.adaptiveicon.R$id: int search_close_btn +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: long serialVersionUID +okhttp3.internal.http2.PushObserver$1: boolean onHeaders(int,java.util.List,boolean) +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getShortTemperatureText(android.content.Context,int) +com.google.android.material.tabs.TabLayout: void setTabRippleColor(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +androidx.constraintlayout.helper.widget.Flow: void setPaddingLeft(int) +com.google.gson.internal.LazilyParsedNumber: LazilyParsedNumber(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_CBC_SHA +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_light +androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModel get(java.lang.Class) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginEnd +com.google.android.material.R$string: int mtrl_picker_toggle_to_year_selection +com.turingtechnologies.materialscrollbar.R$styleable: int[] ChipGroup +androidx.viewpager2.R$attr: int fontProviderQuery +cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_chainStyle +okio.Buffer$UnsafeCursor +retrofit2.ParameterHandler$Body: ParameterHandler$Body(java.lang.reflect.Method,int,retrofit2.Converter) +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int SILENT_STATE +io.reactivex.internal.observers.BasicIntQueueDisposable: boolean isEmpty() +com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeightSmall +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int SnowProbability +wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_container +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: long serialVersionUID +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription(org.reactivestreams.Subscriber,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) +cyanogenmod.weather.util.WeatherUtils: double celsiusToFahrenheit(double) +androidx.vectordrawable.animated.R$id: int async +androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_text_padding_right +okio.Okio: okio.Sink sink(java.io.OutputStream,okio.Timeout) +com.google.android.material.snackbar.SnackbarContentLayout: SnackbarContentLayout(android.content.Context) +androidx.preference.PreferenceGroup +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String getTo() +com.google.android.material.R$id: R$id() +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconEndPadding +okhttp3.Protocol: okhttp3.Protocol HTTP_1_0 +androidx.appcompat.widget.SearchView: void setIconifiedByDefault(boolean) +androidx.viewpager.R$id: int forever +wangdaye.com.geometricweather.R$id: int action_divider +com.jaredrummler.android.colorpicker.R$attr: int homeLayout +android.didikee.donate.R$styleable: int AlertDialog_multiChoiceItemLayout +okhttp3.internal.cache.DiskLruCache +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onSucceed(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult) +androidx.preference.R$attr: int backgroundSplit +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_thumb +com.google.android.material.R$attr: int onPositiveCross +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: MaybeToObservable$MaybeToObservableObserver(io.reactivex.Observer) +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout +androidx.loader.R$color +retrofit2.RequestFactory$Builder: boolean gotBody +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType UpdateInTxArray +wangdaye.com.geometricweather.R$attr: int expandedTitleMarginEnd +wangdaye.com.geometricweather.R$font: int product_sans_light +androidx.preference.R$styleable: int SeekBarPreference_min +james.adaptiveicon.R$attr: int buttonPanelSideLayout +com.google.android.material.R$attr: int passwordToggleDrawable +com.google.android.material.R$styleable: int[] MaterialShape +wangdaye.com.geometricweather.common.ui.widgets.DonateImageView: DonateImageView(android.content.Context) +androidx.hilt.work.R$id: int right_icon +androidx.cardview.R$attr: int cardElevation +okio.Buffer: okio.BufferedSink writeUtf8(java.lang.String) +cyanogenmod.app.IPartnerInterface$Stub$Proxy: void shutdown() +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.coordinatorlayout.R$id: int accessibility_custom_action_24 +wangdaye.com.geometricweather.R$style: int TestThemeWithLineHeight +okio.Buffer: okio.Buffer writeHexadecimalUnsignedLong(long) +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver +com.google.android.material.R$styleable: int MotionHelper_onHide +wangdaye.com.geometricweather.R$layout: int dialog_providers_previewer +wangdaye.com.geometricweather.R$color: int material_on_surface_disabled +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark +androidx.constraintlayout.widget.R$dimen: int hint_alpha_material_light +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Large +androidx.recyclerview.R$dimen: int notification_action_text_size +io.reactivex.Observable: io.reactivex.Observable throttleLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okhttp3.internal.ws.WebSocketReader: void processNextFrame() +androidx.recyclerview.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.bottomappbar.BottomAppBar: void setFabCradleRoundedCornerRadius(float) +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Switch +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +com.google.android.material.R$drawable: int material_ic_keyboard_arrow_previous_black_24dp +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.main.dialogs.LocationHelpDialog: LocationHelpDialog() +android.didikee.donate.R$styleable: int MenuItem_android_onClick +androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$attr: int overlapAnchor +retrofit2.Response: retrofit2.Response success(int,java.lang.Object) +cyanogenmod.weather.WeatherInfo: double getTemperature() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon +androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Light +com.google.android.material.R$integer: int mtrl_calendar_header_orientation +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Light +com.google.android.material.R$layout: int mtrl_picker_fullscreen +android.didikee.donate.R$dimen: int abc_dialog_padding_top_material +james.adaptiveicon.R$attr: int submitBackground +wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format_example +com.google.android.material.R$styleable: int AppCompatTheme_searchViewStyle +com.google.android.material.R$styleable: int Layout_layout_constraintRight_creator +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +wangdaye.com.geometricweather.R$string: int uv_index +io.reactivex.internal.util.EmptyComponent: io.reactivex.Observer asObserver() +androidx.coordinatorlayout.R$id: int italic +androidx.appcompat.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert +okhttp3.Cookie$Builder: java.lang.String path +com.turingtechnologies.materialscrollbar.R$attr: int hintTextAppearance +io.reactivex.internal.util.ArrayListSupplier: java.util.List call() +androidx.appcompat.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +com.google.android.material.R$dimen: int tooltip_horizontal_padding +okio.Buffer: int select(okio.Options) +androidx.appcompat.widget.AppCompatRadioButton +com.google.android.material.R$drawable: int navigation_empty_icon +androidx.coordinatorlayout.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator$SavedState +wangdaye.com.geometricweather.R$styleable: int PropertySet_android_alpha +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalBias +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noCache() +com.jaredrummler.android.colorpicker.R$layout: int abc_dialog_title_material +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +okhttp3.internal.connection.RouteSelector$Selection: java.util.List routes +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date sunriseTime +com.xw.repo.bubbleseekbar.R$attr: R$attr() +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_shrinkMotionSpec +androidx.preference.CheckBoxPreference +androidx.appcompat.widget.AppCompatSpinner: void setDropDownVerticalOffset(int) +wangdaye.com.geometricweather.R$styleable: int[] MenuItem +com.turingtechnologies.materialscrollbar.R$attr: int paddingStart +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.Observer downstream +retrofit2.Utils$GenericArrayTypeImpl: java.lang.reflect.Type getGenericComponentType() +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_android_checkable +androidx.appcompat.widget.SearchView: void setSearchableInfo(android.app.SearchableInfo) +com.amap.api.location.AMapLocation: java.lang.String d +androidx.recyclerview.R$styleable: int[] ColorStateListItem +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: int sourceMode +com.xw.repo.bubbleseekbar.R$dimen: int compat_control_corner_material +com.google.android.material.R$dimen: int design_fab_translation_z_pressed +cyanogenmod.app.CMStatusBarManager: void removeTileAsUser(java.lang.String,int,android.os.UserHandle) +androidx.appcompat.R$drawable: int abc_edit_text_material +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_hideMotionSpec +com.google.android.material.R$styleable: int ConstraintLayout_Layout_chainUseRtl +androidx.appcompat.R$styleable: int MenuItem_android_checked +androidx.lifecycle.HasDefaultViewModelProviderFactory: androidx.lifecycle.ViewModelProvider$Factory getDefaultViewModelProviderFactory() +wangdaye.com.geometricweather.R$drawable: int test_custom_background +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: MfRainResult() +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver +wangdaye.com.geometricweather.R$id: int action_image +androidx.appcompat.R$attr: int spinnerStyle wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_max -android.didikee.donate.R$color: int highlighted_text_material_dark -okio.Buffer: long indexOf(byte,long) -com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_small_material -com.amap.api.fence.DistrictItem$1: DistrictItem$1() -com.xw.repo.bubbleseekbar.R$attr: int windowMinWidthMinor -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String NAME_EQ_PLACEHOLDER -com.google.android.material.R$drawable: int abc_btn_check_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX getBrandInfo() -io.reactivex.Observable: io.reactivex.Observable concatDelayError(java.lang.Iterable) -com.jaredrummler.android.colorpicker.R$id: int action_container -okhttp3.internal.platform.Android10Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -okhttp3.internal.connection.RealConnection: okhttp3.internal.http2.Http2Connection http2Connection -wangdaye.com.geometricweather.R$attr: int maxWidth -james.adaptiveicon.R$style: int Base_Animation_AppCompat_Dialog -com.google.android.material.R$attr: int passwordToggleEnabled -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator FORWARD_LOOKUP_PROVIDER_VALIDATOR -androidx.constraintlayout.widget.R$dimen: int abc_button_padding_horizontal_material -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean canceled -com.google.android.gms.common.api.ApiException -okhttp3.EventListener: void dnsEnd(okhttp3.Call,java.lang.String,java.util.List) -cyanogenmod.profiles.RingModeSettings$1: cyanogenmod.profiles.RingModeSettings createFromParcel(android.os.Parcel) -com.xw.repo.bubbleseekbar.R$attr: int buttonBarNeutralButtonStyle -io.reactivex.Observable: io.reactivex.Observable switchMapDelayError(io.reactivex.functions.Function,int) -com.google.android.material.R$animator: int mtrl_fab_hide_motion_spec -cyanogenmod.weatherservice.IWeatherProviderService$Stub -wangdaye.com.geometricweather.R$color: int switch_thumb_material_dark -com.xw.repo.bubbleseekbar.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -cyanogenmod.app.LiveLockScreenInfo$1 -com.google.android.material.R$styleable: int[] BottomNavigationView -androidx.work.R$bool -androidx.preference.R$styleable: int Preference_shouldDisableView -com.google.android.material.R$attr: int checkboxStyle -com.github.rahatarmanahmed.cpv.CircularProgressView$4 -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_currentPageIndicatorColor -androidx.swiperefreshlayout.R$dimen: int notification_right_side_padding_top -androidx.constraintlayout.helper.widget.Layer: void setPivotY(float) -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_FixedSize_Bridge -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_font -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_enabled -okhttp3.internal.http2.Http2Connection: java.lang.String hostname -androidx.appcompat.widget.ScrollingTabContainerView: ScrollingTabContainerView(android.content.Context) -okhttp3.internal.connection.RealConnection$1 -cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationMin() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: double Value -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.ObservableSource source -com.turingtechnologies.materialscrollbar.R$attr: int actionModePasteDrawable -io.reactivex.exceptions.ProtocolViolationException: long serialVersionUID -okhttp3.internal.connection.RouteDatabase: void failed(okhttp3.Route) -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.Long getId() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display1 -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.R$array: int air_quality_unit_voices -androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_mode_bar -cyanogenmod.app.PartnerInterface: void setMobileDataEnabled(boolean) -wangdaye.com.geometricweather.R$attr: int tabRippleColor -androidx.preference.R$style: int Preference_Information_Material -androidx.vectordrawable.R$drawable: int notification_bg_normal_pressed -com.amap.api.location.AMapLocation: java.lang.String a -com.turingtechnologies.materialscrollbar.TouchScrollBar: TouchScrollBar(android.content.Context,android.util.AttributeSet,int) -org.greenrobot.greendao.AbstractDaoSession: java.util.Collection getAllDaos() -androidx.appcompat.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -cyanogenmod.profiles.AirplaneModeSettings$1 -okhttp3.internal.connection.StreamAllocation: void cancel() -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog -androidx.fragment.R$styleable: int FontFamilyFont_ttcIndex -com.jaredrummler.android.colorpicker.R$styleable: int GradientColorItem_android_offset -com.turingtechnologies.materialscrollbar.R$styleable: int[] SnackbarLayout -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void otherSuccess(java.lang.Object) -retrofit2.OkHttpCall: void enqueue(retrofit2.Callback) -androidx.constraintlayout.widget.R$attr: int backgroundStacked -androidx.appcompat.R$attr: int allowStacking -io.reactivex.internal.subscriptions.EmptySubscription: java.lang.String toString() -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean,int) -com.google.android.material.R$style: int Widget_AppCompat_ActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedWidthMajor -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SeekBar -com.google.android.material.R$styleable: int RangeSlider_values -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton_CloseMode -com.google.android.material.R$styleable: int[] MotionScene -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getUnitId() -com.google.android.material.R$layout: int test_toolbar_custom_background -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat -com.google.android.material.R$dimen: int fastscroll_margin -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String AUTHOR -androidx.drawerlayout.R$style -cyanogenmod.weather.RequestInfo: RequestInfo(cyanogenmod.weather.RequestInfo$1) -com.google.android.material.R$styleable: int ActionBar_icon -androidx.drawerlayout.R$drawable: int notification_bg_normal_pressed -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_Solid -james.adaptiveicon.R$color: int abc_color_highlight_material -wangdaye.com.geometricweather.R$id: int mtrl_internal_children_alpha_tag -com.google.android.material.navigation.NavigationView: void setItemTextAppearance(int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dividerVertical -androidx.preference.R$styleable: int TextAppearance_android_textColorLink -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light -com.google.android.material.R$styleable: int BottomNavigationView_itemIconTint -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean isDisposed() -io.reactivex.Observable: io.reactivex.Observable switchMapSingle(io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$color: int material_grey_800 -com.google.android.material.R$id: int zero_corner_chip -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: long serialVersionUID -wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox -androidx.preference.R$layout: int abc_search_dropdown_item_icons_2line -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float totalPrecipitation -wangdaye.com.geometricweather.R$string: int donate -com.google.android.material.R$id: int bidirectional -okhttp3.internal.http1.Http1Codec$FixedLengthSource -android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -com.google.android.material.R$attr: int haloColor -okhttp3.internal.http2.Http2Stream: void waitForIo() -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: boolean cancelled -okio.Buffer: int read(byte[],int,int) -com.jaredrummler.android.colorpicker.ColorPickerView: int getColor() -cyanogenmod.app.CustomTile$Builder: android.net.Uri mOnClickUri -com.google.android.material.R$attr: int saturation -androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -androidx.preference.R$attr: int autoSizeTextType -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_percent -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX -androidx.constraintlayout.widget.R$id: int action_bar_activity_content -okhttp3.internal.http2.Hpack -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void onAttachedToWindow() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property CityId -wangdaye.com.geometricweather.R$string: int wind_level -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCopyDrawable -com.google.android.material.card.MaterialCardView: void setClickable(boolean) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListMenuView -com.turingtechnologies.materialscrollbar.R$attr: int overlapAnchor -io.reactivex.Observable: io.reactivex.Observable concatMapEager(io.reactivex.functions.Function) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA -wangdaye.com.geometricweather.R$styleable: int Constraint_chainUseRtl -androidx.lifecycle.livedata.core.R: R() -okhttp3.internal.http2.Http2Connection$Listener$1: void onStream(okhttp3.internal.http2.Http2Stream) -cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(java.util.Map,java.util.Map,cyanogenmod.themes.ThemeChangeRequest$RequestType,long) -wangdaye.com.geometricweather.R$color: int dim_foreground_disabled_material_dark -com.xw.repo.bubbleseekbar.R$id: int action_mode_bar -androidx.preference.R$drawable: int abc_text_select_handle_left_mtrl_dark -androidx.preference.R$styleable: int AppCompatTheme_colorPrimary -com.github.rahatarmanahmed.cpv.CircularProgressViewListener -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontWeight -cyanogenmod.app.IProfileManager: android.app.NotificationGroup[] getNotificationGroups() -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void clear() -io.reactivex.Observable: io.reactivex.Completable concatMapCompletable(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_initialExpandedChildrenCount -wangdaye.com.geometricweather.R$color: int design_dark_default_color_secondary -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextTextColor -androidx.appcompat.R$styleable: int SwitchCompat_thumbTextPadding -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.Observer downstream -androidx.lifecycle.extensions.R$id: int action_image -com.google.android.material.R$styleable: int State_android_id -wangdaye.com.geometricweather.R$attr: int itemStrokeColor -androidx.viewpager2.R$dimen: int notification_right_side_padding_top -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: java.lang.String toString() -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cw -okhttp3.Challenge: java.lang.String realm() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstVerticalStyle -androidx.constraintlayout.widget.R$string: int abc_activity_chooser_view_see_all -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: android.os.IBinder mRemote -com.google.android.material.R$dimen: int material_helper_text_font_1_3_padding_horizontal -wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_day -com.loc.k: java.lang.String c -com.google.android.material.R$attr: int actionLayout -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void addLast(io.reactivex.internal.operators.observable.ObservableReplay$Node) -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_enabled -wangdaye.com.geometricweather.main.dialogs.LocationHelpDialog -androidx.constraintlayout.widget.R$attr: int overlay -com.jaredrummler.android.colorpicker.R$layout: int abc_action_menu_layout -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingRight -com.google.android.material.R$attr: int shrinkMotionSpec -okio.SegmentedByteString: int indexOf(byte[],int) -okio.RealBufferedSource: java.lang.String readUtf8LineStrict() -com.google.android.material.R$drawable: int notification_tile_bg -androidx.preference.R$styleable: int Preference_android_selectable -com.google.android.material.R$dimen: int notification_small_icon_background_padding -okhttp3.Dispatcher: int runningCallsForHost(okhttp3.RealCall$AsyncCall) -okio.Buffer: boolean equals(java.lang.Object) -cyanogenmod.themes.IThemeService$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$layout: R$layout() -okio.RealBufferedSink: okio.BufferedSink writeLongLe(long) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: int status -com.google.android.material.R$dimen: int mtrl_low_ripple_focused_alpha -wangdaye.com.geometricweather.R$dimen: int widget_grid_2 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_44 -james.adaptiveicon.R$anim: int abc_slide_out_top -com.amap.api.location.AMapLocationClient: void setLocationListener(com.amap.api.location.AMapLocationListener) -james.adaptiveicon.R$drawable: int abc_btn_radio_to_on_mtrl_000 -wangdaye.com.geometricweather.R$attr: int itemTextAppearanceActive -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_percent -okhttp3.Request$Builder: okhttp3.Request$Builder headers(okhttp3.Headers) -okhttp3.internal.http2.Http2Reader: java.util.logging.Logger logger -com.google.android.material.R$string: int mtrl_picker_range_header_only_end_selected -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: java.lang.String[] getPermissions() -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setCityId(java.lang.String) -androidx.lifecycle.LiveData: void removeObservers(androidx.lifecycle.LifecycleOwner) -wangdaye.com.geometricweather.R$integer: int mtrl_btn_anim_duration_ms -com.google.android.gms.internal.location.zzj: android.os.Parcelable$Creator CREATOR -okhttp3.internal.ws.RealWebSocket$PingRunnable: void run() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: AccuCurrentResult$WindGust$Speed() -androidx.activity.R$string: R$string() -androidx.appcompat.R$attr: int fontProviderAuthority -com.turingtechnologies.materialscrollbar.R$id: int view_offset_helper -androidx.preference.R$styleable: int DrawerArrowToggle_spinBars -okhttp3.internal.Internal: boolean connectionBecameIdle(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) -com.google.android.material.R$styleable: int[] AnimatedStateListDrawableCompat -androidx.appcompat.widget.AppCompatEditText: android.content.res.ColorStateList getSupportBackgroundTintList() -okhttp3.MultipartBody: java.util.List parts() -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_light -androidx.lifecycle.ViewModelProvider$OnRequeryFactory: void onRequery(androidx.lifecycle.ViewModel) -androidx.appcompat.R$style: int Theme_AppCompat_Light -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabText -com.google.android.gms.base.R$id: int wide -okhttp3.internal.tls.TrustRootIndex -com.google.android.material.R$styleable: int TextInputLayout_helperTextTextAppearance -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -com.google.android.material.R$attr: int tabPaddingStart -com.google.android.gms.base.R$string: int common_open_on_phone -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.db.entities.LocationEntity: void setResidentPosition(boolean) -com.google.android.material.R$styleable: int BottomNavigationView_backgroundTint -com.jaredrummler.android.colorpicker.R$layout: int abc_action_mode_bar -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_min_width_major -io.reactivex.internal.schedulers.AbstractDirectTask: void dispose() -okhttp3.internal.tls.BasicCertificateChainCleaner: int MAX_SIGNERS -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onNext(java.lang.Object) -cyanogenmod.app.StatusBarPanelCustomTile: int describeContents() -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: long serialVersionUID -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -com.google.android.material.R$attr: int constraintSet -com.google.android.material.appbar.MaterialToolbar: void setElevation(float) -com.autonavi.aps.amapapi.model.AMapLocationServer: long k() -androidx.appcompat.R$color: int abc_primary_text_material_light -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarStyle -com.xw.repo.bubbleseekbar.R$layout: int abc_screen_simple -androidx.appcompat.R$attr: int listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$string: int feedback_text_size -okio.RealBufferedSource: short readShort() -wangdaye.com.geometricweather.R$attr: int cardPreventCornerOverlap -com.xw.repo.bubbleseekbar.R$attr: int arrowShaftLength -okhttp3.CacheControl: java.lang.String toString() -com.xw.repo.bubbleseekbar.R$id: int up -androidx.constraintlayout.widget.Barrier: void setType(int) -cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(android.os.Parcel) -androidx.appcompat.R$id: int info -cyanogenmod.providers.ThemesContract$MixnMatchColumns: android.net.Uri CONTENT_URI -okio.Buffer: okio.Buffer$UnsafeCursor readAndWriteUnsafe() -com.google.android.material.R$styleable: int AppBarLayout_Layout_layout_scrollFlags -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDegreeDayTemperature(java.lang.Integer) -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarItemBackground -cyanogenmod.weather.WeatherInfo: int mTempUnit -wangdaye.com.geometricweather.R$drawable: int notif_temp_77 -com.jaredrummler.android.colorpicker.R$layout: int abc_popup_menu_header_item_layout -com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_bottom_material -okhttp3.OkHttpClient$Builder: okhttp3.Cache cache -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitationDuration(java.lang.Float) -androidx.appcompat.R$dimen: int notification_small_icon_background_padding -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar -com.turingtechnologies.materialscrollbar.R$dimen: int cardview_compat_inset_shadow -james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.os.Bundle mOptions -androidx.appcompat.widget.LinearLayoutCompat: float getWeightSum() -androidx.vectordrawable.animated.R$color: R$color() -com.bumptech.glide.load.engine.CallbackException: CallbackException(java.lang.Throwable) -okhttp3.internal.cache.InternalCache: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) -wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconVisible -okhttp3.internal.connection.ConnectionSpecSelector: okhttp3.ConnectionSpec configureSecureSocket(javax.net.ssl.SSLSocket) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast -androidx.work.R$id: int accessibility_custom_action_3 -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeFindDrawable -wangdaye.com.geometricweather.R$layout: int preference_dialog_edittext -com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context) -com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context,android.util.AttributeSet) -androidx.preference.R$styleable: int AppCompatTheme_actionModeSplitBackground -androidx.vectordrawable.R$id: int accessibility_action_clickable_span -androidx.viewpager2.R$id: int accessibility_custom_action_2 -androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context,android.util.AttributeSet,int) -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: java.util.concurrent.atomic.AtomicReference mSubscriber -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotationY -com.jaredrummler.android.colorpicker.R$attr: int buttonGravity -okio.Okio$1: java.lang.String toString() -retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type[] getUpperBounds() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust WindGust -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setMax(float) -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCountryId -androidx.preference.R$attr: int titleMarginTop -wangdaye.com.geometricweather.R$drawable: int ic_state_uncheck -androidx.appcompat.R$styleable: int[] ButtonBarLayout -wangdaye.com.geometricweather.R$string: int time -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -android.didikee.donate.R$dimen: int notification_small_icon_size_as_large -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: RequestBuilder$ContentTypeOverridingRequestBody(okhttp3.RequestBody,okhttp3.MediaType) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver inner -androidx.lifecycle.LifecycleRegistry$ObserverWithState: androidx.lifecycle.LifecycleEventObserver mLifecycleObserver -wangdaye.com.geometricweather.R$drawable: int material_ic_clear_black_24dp -com.turingtechnologies.materialscrollbar.R$attr: int goIcon -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitation() -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -com.turingtechnologies.materialscrollbar.R$attr: int windowMinWidthMinor -wangdaye.com.geometricweather.R$drawable: int weather_snow_1 -wangdaye.com.geometricweather.R$dimen: int design_tab_text_size_2line -cyanogenmod.weather.WeatherInfo: long mTimestamp -android.didikee.donate.R$styleable: int MenuItem_actionLayout -androidx.constraintlayout.helper.widget.Flow: void setHorizontalAlign(int) -androidx.appcompat.R$style: int Base_V28_Theme_AppCompat_Light -com.google.android.material.R$anim: int abc_popup_enter -wangdaye.com.geometricweather.R$id: int cpv_arrow_right -com.google.android.material.textfield.TextInputLayout: void setSuffixText(java.lang.CharSequence) -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Bridge -com.xw.repo.bubbleseekbar.R$id: int custom -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks mKeyguardExternalViewCallbacks -com.xw.repo.bubbleseekbar.R$styleable: int[] ButtonBarLayout -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textStyle -org.greenrobot.greendao.AbstractDaoSession: long insertOrReplace(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontVariationSettings -cyanogenmod.app.LiveLockScreenInfo$1: cyanogenmod.app.LiveLockScreenInfo createFromParcel(android.os.Parcel) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: java.util.concurrent.atomic.AtomicReference timer -okhttp3.internal.platform.Jdk9Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_25 -com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_icon_width -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default -androidx.preference.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -com.google.gson.stream.JsonReader: double nextDouble() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: java.util.List getValue() -wangdaye.com.geometricweather.R$layout: int widget_week -cyanogenmod.app.ILiveLockScreenManager$Stub: cyanogenmod.app.ILiveLockScreenManager asInterface(android.os.IBinder) -com.google.android.material.R$id: int wrap_content -wangdaye.com.geometricweather.R$style: int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +wangdaye.com.geometricweather.R$string: int common_google_play_services_unknown_issue +androidx.hilt.work.R$styleable: int Fragment_android_id +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingBottom +okhttp3.internal.http.StatusLine +com.google.android.material.R$dimen: int mtrl_btn_padding_right +okhttp3.internal.http2.Hpack: int PREFIX_6_BITS +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_TextInputEditText +android.didikee.donate.R$styleable: int ColorStateListItem_alpha com.google.android.material.R$attr: int backgroundOverlayColorAlpha -androidx.appcompat.view.menu.StandardMenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: ChineseCityEntity(java.lang.Long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) -com.google.android.material.appbar.AppBarLayout: void setOrientation(int) -com.google.android.material.R$dimen: int design_tab_max_width -io.reactivex.Observable: io.reactivex.Observable startWith(java.lang.Iterable) -okio.InflaterSource: okio.Timeout timeout() -com.google.android.material.R$attr: int maxHeight -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getBrandId() -androidx.preference.R$attr: int tickMark -wangdaye.com.geometricweather.R$color: int mtrl_filled_stroke_color -androidx.viewpager.R$attr: int fontWeight -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_background_overlay_color_alpha -wangdaye.com.geometricweather.R$attr: int overlay -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionMenuTextColor -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_inset -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: java.lang.String Unit -wangdaye.com.geometricweather.R$string: int key_widget_multi_city -androidx.hilt.work.R$dimen: int notification_small_icon_size_as_large -com.google.gson.FieldNamingPolicy$6 -androidx.appcompat.R$styleable: int MenuItem_android_titleCondensed -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getRingerMode() -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button -androidx.appcompat.R$attr: int windowFixedWidthMinor -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCloseDrawable -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen -androidx.appcompat.resources.R$id: int time -okhttp3.internal.ws.RealWebSocket$2 -androidx.lifecycle.ReportFragment: void onActivityCreated(android.os.Bundle) -androidx.lifecycle.LifecycleRegistry: void setCurrentState(androidx.lifecycle.Lifecycle$State) -io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_CONSUMED -androidx.constraintlayout.widget.R$color: int primary_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMargins -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_48dp -android.didikee.donate.R$drawable: int abc_switch_thumb_material -io.reactivex.internal.observers.DeferredScalarObserver -wangdaye.com.geometricweather.location.services.LocationService: android.app.NotificationChannel getLocationNotificationChannel(android.content.Context) -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteInTxArray -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onProgressUpdate(float) -com.google.android.material.button.MaterialButton: void setIconSize(int) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_weight -androidx.constraintlayout.widget.R$attr: int thumbTextPadding -com.amap.api.location.APSService: android.os.IBinder onBind(android.content.Intent) -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textFontWeight -cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,cyanogenmod.app.CustomTile,android.os.UserHandle) -com.jaredrummler.android.colorpicker.R$id: int icon -androidx.fragment.R$layout: int custom_dialog -androidx.preference.R$style: int Platform_V21_AppCompat_Light -com.google.android.material.R$dimen: int design_bottom_navigation_text_size -com.amap.api.fence.GeoFence: void setPoiItem(com.amap.api.fence.PoiItem) -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: int UnitType -okhttp3.Cache: void flush() -androidx.swiperefreshlayout.R$dimen: R$dimen() -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_6_00 -androidx.appcompat.R$dimen: int tooltip_precise_anchor_extra_offset -androidx.constraintlayout.widget.R$styleable: int View_android_focusable -wangdaye.com.geometricweather.R$id: int dialog_time_setter_container -com.jaredrummler.android.colorpicker.R$attr: int titleTextAppearance -wangdaye.com.geometricweather.common.basic.models.weather.Daily: long getTime() -james.adaptiveicon.R$attr: int editTextStyle -okhttp3.Protocol: okhttp3.Protocol HTTP_1_0 -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_suggestionRowLayout -com.jaredrummler.android.colorpicker.ColorPreference: void setOnShowDialogListener(com.jaredrummler.android.colorpicker.ColorPreference$OnShowDialogListener) -androidx.appcompat.resources.R$id: int accessibility_custom_action_7 -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable -androidx.preference.R$layout: int preference_widget_checkbox -wangdaye.com.geometricweather.R$id: int widget_day_center -wangdaye.com.geometricweather.R$layout: int abc_action_bar_up_container -okio.BufferedSource: byte readByte() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderTitle -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_elevation -com.google.android.material.timepicker.ClockHandView: ClockHandView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginStart -android.didikee.donate.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -androidx.loader.R$styleable: int GradientColor_android_endColor -com.google.android.material.R$string: int fab_transformation_scrim_behavior -androidx.preference.R$styleable: int SwitchCompat_thumbTintMode -okhttp3.internal.Util: java.nio.charset.Charset UTF_16_LE -com.turingtechnologies.materialscrollbar.R$attr: int listPopupWindowStyle -androidx.preference.R$attr: int colorControlHighlight -com.google.android.material.R$id: int sin -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.R$styleable: int Chip_shapeAppearanceOverlay -androidx.cardview.widget.CardView: CardView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int Preference_android_fragment +androidx.constraintlayout.widget.R$id: int chain +com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_default +cyanogenmod.providers.CMSettings$Secure: CMSettings$Secure() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum +wangdaye.com.geometricweather.R$styleable: int[] SwipeRefreshLayout +wangdaye.com.geometricweather.R$dimen: int material_text_view_test_line_height +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_statusBarBackground +cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_USE_MAIN_TILES +androidx.lifecycle.LiveData: java.lang.Object NOT_SET +okhttp3.internal.http2.Http2Stream$FramingSource: void close() +androidx.appcompat.R$dimen: int notification_top_pad +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackInactiveTintList() +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Light +android.didikee.donate.R$style: int Theme_AppCompat_Light_NoActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetStart +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_7 +io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.Observer) +com.google.android.material.chip.Chip: void setChipStartPadding(float) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.queue.MpscLinkedQueue queue +androidx.customview.R$dimen: int notification_small_icon_size_as_large +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_summaryOff +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_MAX_INDEX +wangdaye.com.geometricweather.R$string: int character_counter_overflowed_content_description +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition BELOW_LINE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setDatetime(java.lang.String) +com.google.android.material.R$id: int transition_current_scene +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_transformation_sheet_collapse_spec +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) +androidx.constraintlayout.widget.R$dimen: int abc_disabled_alpha_material_dark +retrofit2.RequestFactory: okhttp3.HttpUrl baseUrl +james.adaptiveicon.R$styleable: int Spinner_android_entries +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() +wangdaye.com.geometricweather.R$color: int material_blue_grey_800 +wangdaye.com.geometricweather.R$id: int widget_trend_daily +com.xw.repo.bubbleseekbar.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_74 +com.google.android.material.appbar.AppBarLayout: int getMinimumHeightForVisibleOverlappingContent() +com.google.android.material.R$styleable: int ButtonBarLayout_allowStacking +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.AlertEntity) +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Settings peerSettings +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherSource(java.lang.String) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: long serialVersionUID +com.google.android.material.chip.Chip: void setShowMotionSpecResource(int) +james.adaptiveicon.R$layout: int abc_alert_dialog_button_bar_material +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_width_material +wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +com.bumptech.glide.R$id: int right_side +com.google.android.material.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger +androidx.cardview.R$styleable: int CardView_contentPadding +androidx.core.R$dimen: int notification_action_icon_size +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +com.google.android.material.R$styleable: int MotionLayout_motionDebug +android.didikee.donate.R$styleable: int SearchView_closeIcon +com.xw.repo.bubbleseekbar.R$anim: int abc_tooltip_exit +android.didikee.donate.R$style: int Platform_V21_AppCompat_Light +androidx.viewpager2.R$color +com.google.android.material.R$dimen: int mtrl_btn_text_size +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float pm10 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: void setNotice(java.lang.String) +cyanogenmod.hardware.CMHardwareManager: boolean isSupported(int) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Id +android.didikee.donate.R$dimen: int abc_list_item_padding_horizontal_material +wangdaye.com.geometricweather.R$styleable: int[] MaterialAlertDialogTheme +androidx.fragment.R$id: int text +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService pushExecutor +androidx.drawerlayout.R$dimen: int notification_content_margin_start +okhttp3.internal.http1.Http1Codec$ChunkedSink: okio.Timeout timeout() +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconTint +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int CLOUDY +com.github.rahatarmanahmed.cpv.R$color +james.adaptiveicon.R$attr: int subMenuArrow +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String description +retrofit2.http.Path +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void setInteractivity(boolean) +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getPackage() +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onTimeout(long) +com.amap.api.location.AMapLocationClientOption: AMapLocationClientOption() +okio.Buffer: void close() +okhttp3.internal.http2.Http2: byte FLAG_COMPRESSED +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +androidx.recyclerview.R$id: int accessibility_custom_action_23 +androidx.appcompat.resources.R$id: int tag_transition_group +okhttp3.Protocol: okhttp3.Protocol HTTP_2 +com.turingtechnologies.materialscrollbar.R$anim: int design_snackbar_in +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: AccuCurrentResult$Precip1hr$Imperial() +com.google.android.material.R$style: int Theme_Design_Light +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float ice +android.didikee.donate.R$styleable: int[] AppCompatSeekBar +com.jaredrummler.android.colorpicker.R$styleable: int Preference_allowDividerBelow +okhttp3.logging.HttpLoggingInterceptor: HttpLoggingInterceptor() +androidx.viewpager2.R$layout: R$layout() +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void run() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setHourlyForecast(java.lang.String) +okhttp3.internal.cache.DiskLruCache: java.lang.String REMOVE +wangdaye.com.geometricweather.R$drawable: int shortcuts_snow +androidx.swiperefreshlayout.R$dimen: int compat_button_inset_vertical_material androidx.appcompat.resources.R$id: R$id() -com.google.android.material.R$styleable: int SwitchCompat_android_textOn -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startX -com.google.android.material.R$styleable: int Constraint_animate_relativeTo -wangdaye.com.geometricweather.R$drawable: int ic_aqi -androidx.preference.R$styleable: int Preference_order -com.google.android.material.R$attr: int paddingBottomSystemWindowInsets -io.reactivex.Observable: io.reactivex.Maybe lastElement() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SMOKY -okhttp3.Cache$Entry: long sentRequestMillis -com.google.android.material.R$color: int mtrl_navigation_item_background_color -android.didikee.donate.R$attr: int dialogPreferredPadding -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_activityChooserViewStyle -okhttp3.internal.connection.StreamAllocation: java.lang.Object callStackTrace -androidx.hilt.lifecycle.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: CNWeatherResult$Life$Info() -cyanogenmod.profiles.RingModeSettings: RingModeSettings() -retrofit2.HttpServiceMethod$SuspendForResponse: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult -androidx.drawerlayout.R$id: int action_container -cyanogenmod.profiles.ConnectionSettings: boolean mOverride -androidx.work.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.R$attr: int wavePeriod -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onComplete() -okhttp3.internal.http2.Http2Stream: okio.Timeout writeTimeout() -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void clear() -okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,byte[]) -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.R$bool: int abc_allow_stacked_button_bar -com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_NOGPSPERMISSION -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_checked -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedPathSegments(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetEnd -androidx.preference.R$style: int Theme_AppCompat_Light_Dialog_Alert -wangdaye.com.geometricweather.R$drawable: int widget_multi_city -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_elevation -com.google.android.material.R$color: int androidx_core_ripple_material_light -com.google.android.material.R$styleable: int CompoundButton_buttonTintMode -com.google.android.material.tabs.TabLayout: void setTabGravity(int) -wangdaye.com.geometricweather.R$attr: int textAppearanceBody1 -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItem -cyanogenmod.themes.ThemeChangeRequest$1: ThemeChangeRequest$1() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String logo -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamily -com.google.android.material.R$dimen: int abc_panel_menu_list_width -com.turingtechnologies.materialscrollbar.R$attr: int msb_textColor -androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat -org.greenrobot.greendao.AbstractDaoSession: java.lang.Object callInTx(java.util.concurrent.Callable) -okhttp3.internal.connection.RealConnection: void onStream(okhttp3.internal.http2.Http2Stream) -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$font: int product_sans_black -wangdaye.com.geometricweather.R$styleable: int Toolbar_buttonGravity -androidx.preference.R$styleable: int ActionBar_progressBarPadding -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState SETUP +androidx.constraintlayout.widget.R$styleable: int[] Spinner +android.didikee.donate.R$drawable +com.google.android.material.navigation.NavigationView: android.graphics.drawable.Drawable getItemBackground() +android.didikee.donate.R$drawable: int notification_bg_normal_pressed +androidx.appcompat.R$styleable: int ActionMenuItemView_android_minWidth +cyanogenmod.library.R$attr: int settingsActivity +okhttp3.Cache: long maxSize() +wangdaye.com.geometricweather.R$attr: int strokeColor +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onComplete() +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTag +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: void setUnit(java.lang.String) +androidx.legacy.coreutils.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetBottom +retrofit2.BuiltInConverters +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: org.reactivestreams.Subscriber downstream +androidx.preference.R$style: int ThemeOverlay_AppCompat_Light +androidx.viewpager.R$styleable: int[] GradientColorItem +cyanogenmod.app.IPartnerInterface: java.lang.String getCurrentHotwordPackageName() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature temperature +wangdaye.com.geometricweather.R$styleable: int Slider_android_stepSize +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton +androidx.preference.R$anim: int fragment_open_enter +james.adaptiveicon.R$attr: int textAppearancePopupMenuHeader +james.adaptiveicon.R$id: int add +androidx.preference.R$attr: int windowNoTitle +retrofit2.BuiltInConverters$UnitResponseBodyConverter: kotlin.Unit convert(okhttp3.ResponseBody) +com.google.android.material.R$attr: int minSeparation +androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +androidx.recyclerview.widget.RecyclerView: void removeOnItemTouchListener(androidx.recyclerview.widget.RecyclerView$OnItemTouchListener) +com.turingtechnologies.materialscrollbar.R$attr: int buttonIconDimen +com.jaredrummler.android.colorpicker.R$attr: int alpha +okio.RealBufferedSource: int readIntLe() +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Action +com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_bias +wangdaye.com.geometricweather.R$drawable: int notif_temp_4 +com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog +com.google.android.material.R$dimen: int abc_dialog_fixed_height_major +androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context,android.util.AttributeSet) +androidx.recyclerview.R$id: int accessibility_custom_action_11 +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.internal.fuseable.SimpleQueue queue +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult +androidx.appcompat.R$styleable: int MenuItem_alphabeticModifiers +cyanogenmod.app.Profile$TriggerState: int ON_A2DP_DISCONNECT +wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarTextViewStyle +james.adaptiveicon.R$layout: int abc_popup_menu_item_layout +androidx.viewpager2.R$dimen: int notification_large_icon_width +com.google.android.material.behavior.HideBottomViewOnScrollBehavior: HideBottomViewOnScrollBehavior() +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty12H +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_subtitle +androidx.preference.R$attr: int contentInsetRight wangdaye.com.geometricweather.R$attr: int drawableTint -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: org.reactivestreams.Subscriber downstream -wangdaye.com.geometricweather.R$id: int reservedNamedId +cyanogenmod.providers.CMSettings$CMSettingNotFoundException +cyanogenmod.platform.Manifest: Manifest() +androidx.dynamicanimation.R$color: int secondary_text_default_material_light +androidx.work.R$id: int line3 +cyanogenmod.app.ICMTelephonyManager: void setDefaultPhoneSub(int) +androidx.lifecycle.Lifecycle$State: Lifecycle$State(java.lang.String,int) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Caption +com.google.android.gms.location.LocationSettingsResult: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogMessage +cyanogenmod.themes.IThemeProcessingListener$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Colored +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: cyanogenmod.app.suggest.IAppSuggestProvider asInterface(android.os.IBinder) +androidx.preference.PreferenceCategory: PreferenceCategory(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onComplete() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +androidx.viewpager2.R$styleable: int[] RecyclerView +james.adaptiveicon.R$attr: int listDividerAlertDialog +com.amap.api.location.AMapLocationClient: void stopAssistantLocation() +com.google.android.material.R$color: int design_bottom_navigation_shadow_color +androidx.viewpager.widget.PagerTitleStrip: int getTextSpacing() +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_scaleY +cyanogenmod.externalviews.ExternalViewProperties: ExternalViewProperties(android.view.View,android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Category +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_23 +android.didikee.donate.R$style: int Widget_AppCompat_Button_Borderless +com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_normal +com.google.android.material.R$dimen: int abc_floating_window_z +okhttp3.internal.http2.Http2: byte TYPE_GOAWAY +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_tooltipForegroundColor +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage RESOURCE_CACHE +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver parent +okhttp3.Response: okhttp3.ResponseBody peekBody(long) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +com.google.android.material.slider.RangeSlider: float getMinSeparation() +androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonTintMode +com.google.android.material.R$dimen: int mtrl_textinput_end_icon_margin_start +android.didikee.donate.R$layout: int abc_activity_chooser_view +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_contrast +com.google.android.material.R$styleable: int FontFamilyFont_font +com.google.android.material.R$styleable: int AppCompatTheme_dropDownListViewStyle +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitationDuration() +cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onListenerConnected_0 +james.adaptiveicon.R$styleable: int MenuItem_tooltipText +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: ObservableRetryPredicate$RepeatObserver(io.reactivex.Observer,long,io.reactivex.functions.Predicate,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) +androidx.constraintlayout.widget.R$attr: int divider +com.google.android.material.card.MaterialCardView: void setCardForegroundColor(android.content.res.ColorStateList) +com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColor(int) +com.google.android.gms.common.server.converter.zaa +com.google.android.material.R$attr: int state_above_anchor +androidx.preference.R$style: int Base_Widget_AppCompat_Button_Colored +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Icon +com.jaredrummler.android.colorpicker.R$attr: int icon +androidx.preference.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +androidx.appcompat.R$styleable: int Toolbar_subtitleTextColor +wangdaye.com.geometricweather.R$id: int right +okhttp3.internal.ws.RealWebSocket$2: okhttp3.internal.ws.RealWebSocket this$0 +com.amap.api.location.AMapLocation: java.lang.String toStr() +androidx.preference.R$style: int TextAppearance_AppCompat_Large_Inverse +cyanogenmod.providers.CMSettings$System$3: boolean validate(java.lang.String) +okio.BufferedSource: int select(okio.Options) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 +android.didikee.donate.R$styleable: int[] ActionMenuView +okhttp3.Route: Route(okhttp3.Address,java.net.Proxy,java.net.InetSocketAddress) +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_showDividers +wangdaye.com.geometricweather.R$id: int container_main_footer_title +androidx.preference.R$styleable: int ActionBar_subtitleTextStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableBottomCompat +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onNext(java.lang.Object) +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_horizontalDivider +okhttp3.internal.http2.Http2Connection$1: okhttp3.internal.http2.Http2Connection this$0 +james.adaptiveicon.R$styleable: int AppCompatTheme_actionMenuTextColor +androidx.lifecycle.extensions.R$layout: int notification_template_part_time +androidx.core.R$attr: int alpha +com.amap.api.location.AMapLocation: int LOCATION_TYPE_FIX_CACHE +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setIconTintList(android.content.res.ColorStateList) +com.google.android.material.R$styleable: int KeyTimeCycle_framePosition +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableEndCompat +androidx.fragment.R$styleable: int ColorStateListItem_android_alpha +android.didikee.donate.R$string: int abc_searchview_description_submit +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_title +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_4 +com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_alphaChannelText +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitationProbability(java.lang.Float) +retrofit2.http.Path: java.lang.String value() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VClipPath +cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup[] getProfileGroups() +com.amap.api.location.AMapLocation: java.lang.String h +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter nullValue() +androidx.constraintlayout.widget.R$color: int secondary_text_default_material_light +androidx.hilt.lifecycle.R$dimen: int notification_media_narrow_margin +androidx.preference.R$dimen: int item_touch_helper_swipe_escape_max_velocity +wangdaye.com.geometricweather.R$attr: int targetId +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_RC4_40_MD5 +com.google.android.material.R$style: int Base_Widget_AppCompat_Toolbar +com.github.rahatarmanahmed.cpv.CircularProgressView$5: CircularProgressView$5(com.github.rahatarmanahmed.cpv.CircularProgressView) +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: android.net.Uri NO_RINGTONE_URI +com.turingtechnologies.materialscrollbar.R$drawable: int abc_edit_text_material +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FAIR_DAY +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric +com.jaredrummler.android.colorpicker.R$id: int tag_unhandled_key_event_manager +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startX +com.bumptech.glide.load.HttpException +com.google.gson.stream.JsonReader: int[] stack +wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_content +androidx.appcompat.R$attr: int panelMenuListTheme +okhttp3.internal.Util: java.lang.String[] EMPTY_STRING_ARRAY +wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveVariesBy +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_122 +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvIndex +androidx.appcompat.R$attr: int actionModeCloseDrawable +com.turingtechnologies.materialscrollbar.R$attr: int gapBetweenBars +wangdaye.com.geometricweather.R$string: int abc_menu_alt_shortcut_label +androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean sameConnection(okhttp3.Response,okhttp3.HttpUrl) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_to_on_mtrl_015 +cyanogenmod.providers.CMSettings$System: java.lang.String CALL_RECORDING_FORMAT +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onComplete() +androidx.preference.R$styleable: int ActionBar_background +androidx.appcompat.R$anim: int abc_tooltip_enter +android.didikee.donate.R$styleable: int AppCompatTheme_radioButtonStyle +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +wangdaye.com.geometricweather.R$string: int action_manage +wangdaye.com.geometricweather.R$drawable: int notif_temp_71 +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: java.lang.Object value +androidx.constraintlayout.widget.R$attr: int fontProviderCerts +androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.R$style: int Platform_Widget_AppCompat_Spinner +okhttp3.internal.http1.Http1Codec$ChunkedSource: long NO_CHUNK_YET +androidx.constraintlayout.helper.widget.Flow: void setHorizontalBias(float) +wangdaye.com.geometricweather.R$styleable: int RangeSlider_minSeparation +com.amap.api.location.CoordinateConverter +androidx.preference.R$attr: int dialogIcon +wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +androidx.work.NetworkType: androidx.work.NetworkType METERED +james.adaptiveicon.R$styleable: int ButtonBarLayout_allowStacking +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Subtitle2 +androidx.coordinatorlayout.R$attr: int fontProviderCerts +androidx.dynamicanimation.R$id: int action_text +androidx.appcompat.widget.AppCompatEditText: android.view.textclassifier.TextClassifier getTextClassifier() +com.google.android.material.R$string: int abc_searchview_description_voice +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_1 +android.didikee.donate.R$drawable: int abc_ic_star_half_black_16dp +com.amap.api.fence.GeoFence: void setMinDis2Center(float) +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleTitle +android.didikee.donate.R$dimen: int abc_config_prefDialogWidth +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_dither +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_scaleX +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +io.reactivex.internal.queue.SpscArrayQueue: java.lang.Object lvElement(int) +com.xw.repo.bubbleseekbar.R$id: int right +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void emit() +com.google.android.material.internal.NavigationMenuItemView: void setTextColor(android.content.res.ColorStateList) +com.jaredrummler.android.colorpicker.R$drawable: int abc_ab_share_pack_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight +androidx.appcompat.widget.AppCompatImageView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +android.didikee.donate.R$styleable: int TextAppearance_textAllCaps androidx.constraintlayout.widget.R$color: int material_grey_300 -org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.database.Database getDatabase() -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableBottomCompat -com.google.android.material.R$dimen: int mtrl_extended_fab_start_padding -wangdaye.com.geometricweather.R$attr: int contentPadding -androidx.appcompat.R$styleable: int AppCompatTheme_windowMinWidthMajor -com.google.android.material.R$attr: int allowStacking -androidx.work.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.R$color: int primary_material_dark -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_INACTIVE -okio.Segment -com.amap.api.location.AMapLocation: java.lang.String getRoad() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableBottomCompat -androidx.fragment.R$id: int accessibility_custom_action_11 -james.adaptiveicon.R$style: int Widget_AppCompat_EditText -com.turingtechnologies.materialscrollbar.R$attr: int elevation -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -androidx.appcompat.widget.Toolbar: android.content.Context getPopupContext() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_fontFamily -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getShortDate(android.content.Context) -com.google.android.material.R$id: int action_mode_close_button -androidx.preference.R$styleable: int MenuItem_alphabeticModifiers -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeWetBulbTemperature() -io.reactivex.internal.subscribers.StrictSubscriber: void onComplete() -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_NoActionBar -wangdaye.com.geometricweather.R$id: int material_clock_period_pm_button -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node header -wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_title -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.SingleObserver downstream -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow3h -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerColor -androidx.vectordrawable.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.R$layout: int preference_material -io.reactivex.Observable: io.reactivex.Observable timestamp() -james.adaptiveicon.R$attr: int tintMode -com.jaredrummler.android.colorpicker.R$dimen: int cpv_color_preference_large -okhttp3.Dispatcher: java.util.Deque readyAsyncCalls -wangdaye.com.geometricweather.R$style: int Base_V26_Theme_AppCompat -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit[] values() -android.didikee.donate.R$styleable: int PopupWindow_android_popupBackground -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginEnd -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: void cancel() -retrofit2.RequestFactory$Builder: boolean hasBody -androidx.lifecycle.LiveData -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarStyle -wangdaye.com.geometricweather.R$string: int follow_system -io.reactivex.internal.subscriptions.EmptySubscription: boolean isEmpty() +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_grey +com.turingtechnologies.materialscrollbar.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +androidx.hilt.R$anim: R$anim() +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_end +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction Direction +james.adaptiveicon.R$drawable: int abc_text_select_handle_left_mtrl_light +com.turingtechnologies.materialscrollbar.R$id: int textSpacerNoTitle +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline6 +com.google.android.material.R$attr: int actionModeStyle +com.google.android.material.R$attr: int closeIconEnabled +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_checkableBehavior +com.google.android.material.R$dimen: int mtrl_chip_pressed_translation_z +androidx.preference.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +androidx.appcompat.resources.R$color: int secondary_text_default_material_light +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable +com.google.android.gms.common.api.AvailabilityException: AvailabilityException(androidx.collection.ArrayMap) +com.amap.api.fence.GeoFence: com.amap.api.location.AMapLocation getCurrentLocation() +androidx.appcompat.resources.R$styleable: int FontFamilyFont_font +androidx.vectordrawable.R$drawable: int notification_bg_normal +androidx.viewpager2.R$id: int tag_unhandled_key_listeners +com.xw.repo.bubbleseekbar.R$attr: int colorControlNormal +android.didikee.donate.R$string +io.reactivex.internal.disposables.DisposableHelper: boolean trySet(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) +okhttp3.Dispatcher: int maxRequestsPerHost +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: int unitArrayIndex +wangdaye.com.geometricweather.R$styleable: int MenuItem_actionProviderClass +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_editTextPreferenceStyle +androidx.appcompat.R$id: int accessibility_custom_action_7 +androidx.constraintlayout.widget.R$styleable: int SearchView_closeIcon +androidx.coordinatorlayout.R$styleable: int[] GradientColor +cyanogenmod.app.ICustomTileListener$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$dimen: int abc_search_view_preferred_height +cyanogenmod.app.suggest.IAppSuggestProvider: java.util.List getSuggestions(android.content.Intent) +wangdaye.com.geometricweather.R$array: int live_wallpaper_weather_kinds +com.jaredrummler.android.colorpicker.R$attr: int colorControlHighlight +androidx.preference.R$styleable: int SwitchCompat_trackTintMode +okhttp3.CookieJar$1 +androidx.coordinatorlayout.R$id: int title +wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_bias +okhttp3.Protocol: okhttp3.Protocol SPDY_3 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint +okhttp3.HttpUrl: java.lang.String host() +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.content.res.ColorStateList getItemTextColor() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_CBC_SHA256 +wangdaye.com.geometricweather.R$string: int feedback_ignore_battery_optimizations_content +android.didikee.donate.R$id: int normal +wangdaye.com.geometricweather.R$attr: int iconResEnd +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_dither +androidx.appcompat.widget.Toolbar: void setTitle(int) +com.google.android.material.R$attr: int placeholderTextColor +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.Disposable upstream +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedWritableDb(char[]) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_baseline_to_top_fullscreen +com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_backgroundTintMode +com.google.android.material.R$attr: int endIconDrawable +com.google.android.material.R$attr: int layout_goneMarginTop +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sUriValidator +androidx.constraintlayout.widget.R$id: int dragDown +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_shapeAppearanceOverlay +okhttp3.internal.http2.Hpack: okio.ByteString checkLowercase(okio.ByteString) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.appcompat.R$styleable: int DrawerArrowToggle_color +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_atd +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_minWidth +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +com.google.android.material.R$attr: int actionBarSize +com.google.android.material.R$attr: int dividerVertical +com.google.android.material.R$layout: int mtrl_calendar_months +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Light +android.didikee.donate.R$id: int topPanel +androidx.constraintlayout.widget.R$id: int startVertical +com.google.android.material.R$styleable: int SwitchCompat_switchPadding +cyanogenmod.app.Profile: java.lang.String TAG +androidx.appcompat.R$styleable: int LinearLayoutCompat_showDividers +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer snowHazard6h +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit FT +android.didikee.donate.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: java.lang.String icon +androidx.swiperefreshlayout.R$id: int right_side +androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context) +wangdaye.com.geometricweather.R$id: int widget_week_week_3 +okhttp3.internal.http2.Http2Connection: int openStreamCount() +androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.hilt.work.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setWeather(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX) +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource[],io.reactivex.functions.Function) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: void setFrom(java.lang.String) +androidx.core.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$color: int design_default_color_secondary +com.jaredrummler.android.colorpicker.R$bool: int abc_action_bar_embed_tabs +androidx.fragment.R$id: int tag_accessibility_clickable_spans +okio.Utf8: long size(java.lang.String) +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton +androidx.appcompat.R$styleable: int DrawerArrowToggle_thickness +com.google.android.material.R$layout: int custom_dialog +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1 +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay[] halfDays +androidx.drawerlayout.R$id: int notification_main_column_container +androidx.legacy.coreutils.R$id: int tag_transition_group +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_default +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: int capacityHint +okhttp3.internal.http2.Http2Connection$5: Http2Connection$5(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,java.util.List,boolean) +wangdaye.com.geometricweather.R$id: int notification_big_week_1 +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_to_on_mtrl_015 +androidx.coordinatorlayout.R$dimen: int compat_notification_large_icon_max_width +com.google.android.material.R$id: int staticPostLayout +androidx.preference.R$drawable: int abc_ratingbar_indicator_material +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetStartWithNavigation +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +com.google.android.material.R$id: int month_navigation_fragment_toggle +androidx.constraintlayout.widget.R$attr: int flow_horizontalAlign +okhttp3.HttpUrl: okhttp3.HttpUrl get(java.net.URI) +com.turingtechnologies.materialscrollbar.R$styleable: int[] FloatingActionButton +com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace valueOf(java.lang.String) +okhttp3.FormBody$Builder +androidx.appcompat.R$dimen: int abc_edit_text_inset_horizontal_material +wangdaye.com.geometricweather.R$layout: int item_icon_provider +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPopupWindowStyle +androidx.appcompat.R$drawable: int abc_btn_radio_material +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customDimension +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Line2 +okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] WILDCARD_LABEL +androidx.loader.R$color: int notification_action_color_filter +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderFetchStrategy +com.google.android.material.R$id: int action_image +androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$x +okio.Buffer: int hashCode() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String zone +com.xw.repo.bubbleseekbar.R$id: int progress_circular +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_indeterminateProgressStyle +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onProgressUpdate(float) +android.didikee.donate.R$dimen: int abc_text_size_display_2_material +androidx.cardview.R$attr: int contentPaddingTop +okhttp3.internal.http2.Http2Stream$StreamTimeout: Http2Stream$StreamTimeout(okhttp3.internal.http2.Http2Stream) +retrofit2.ParameterHandler$Body: retrofit2.Converter converter +androidx.preference.R$id: int accessibility_custom_action_22 +androidx.vectordrawable.animated.R$attr: int ttcIndex +okhttp3.internal.cache.DiskLruCache: int valueCount +android.didikee.donate.R$styleable: int SwitchCompat_thumbTextPadding +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_textLocale +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_26 +com.google.android.material.R$styleable: int MaterialShape_shapeAppearance +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_color +cyanogenmod.weatherservice.WeatherProviderService +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean done +androidx.dynamicanimation.R$id: int time +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabTextAppearance +androidx.hilt.R$styleable: int[] ColorStateListItem +com.google.android.material.navigation.NavigationView: void setNavigationItemSelectedListener(com.google.android.material.navigation.NavigationView$OnNavigationItemSelectedListener) +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacingVertical +retrofit2.DefaultCallAdapterFactory: DefaultCallAdapterFactory(java.util.concurrent.Executor) +androidx.preference.R$styleable: int PreferenceFragment_allowDividerAfterLastItem +com.google.android.material.R$styleable: int TabLayout_tabIconTint +androidx.viewpager.R$attr: int fontVariationSettings +cyanogenmod.app.CustomTile$ExpandedItem$1: cyanogenmod.app.CustomTile$ExpandedItem createFromParcel(android.os.Parcel) +com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String,java.util.List) +com.bumptech.glide.R$integer: R$integer() +okhttp3.internal.tls.OkHostnameVerifier: java.util.List allSubjectAltNames(java.security.cert.X509Certificate) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setUrl(java.lang.String) +androidx.appcompat.R$styleable: int ActionBar_contentInsetStart +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_pressed_holo_dark +androidx.fragment.R$id: int actions +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object getKey(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_btn_checkable +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionMenuTextColor +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_collapsedSize +com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_DropDownUp +okhttp3.internal.http1.Http1Codec$AbstractSource: void endOfInput(boolean,java.io.IOException) +wangdaye.com.geometricweather.R$id: int dialog_location_help_providerIcon +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedWidthMinor +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf +com.google.android.material.R$color: int mtrl_textinput_filled_box_default_background_color +androidx.preference.R$styleable: int MenuGroup_android_id +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.String Name +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.functions.Function zipper +com.google.android.material.R$color: int mtrl_text_btn_text_color_selector +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setTextColor(android.content.res.ColorStateList) +androidx.work.R$id: int text +retrofit2.BuiltInConverters$StreamingResponseBodyConverter +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: int getWindowType() +com.google.android.material.R$styleable: int ActivityChooserView_initialActivityCount +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endX +com.google.android.material.R$layout: int material_timepicker_textinput_display +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon +wangdaye.com.geometricweather.R$styleable: int[] MenuGroup +androidx.preference.R$styleable: int Fragment_android_name +androidx.customview.R$id: int time +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm25 +wangdaye.com.geometricweather.R$attr: int bsb_bubble_text_size +androidx.appcompat.resources.R$id: int action_text +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getSuffixText() +androidx.fragment.R$anim: int fragment_fade_enter +androidx.cardview.R$styleable +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_disabled_holo_dark +androidx.viewpager.R$styleable: int FontFamilyFont_fontStyle +com.google.android.material.R$attr: int bottomNavigationStyle +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: void setDrawable(boolean) +com.google.android.gms.base.R$styleable: int LoadingImageView_circleCrop +com.google.android.material.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +wangdaye.com.geometricweather.R$id: int expand_activities_button +com.google.android.material.chip.Chip: void setChipEndPadding(float) +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_holo_dark +androidx.preference.R$drawable: int abc_list_longpressed_holo +okhttp3.internal.platform.Android10Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_Switch +okhttp3.internal.http.HttpMethod: boolean invalidatesCache(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotation +androidx.constraintlayout.widget.R$id: int packed +cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio +wangdaye.com.geometricweather.R$string: int feels_like +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorPrimary +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitationProbability +com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_button_bar_material +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_small_material +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetStart +com.turingtechnologies.materialscrollbar.R$style: int CardView_Dark +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float pSea +okhttp3.MultipartBody$Part +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +okhttp3.Protocol: Protocol(java.lang.String,int,java.lang.String) +androidx.viewpager2.R$id: int accessibility_custom_action_17 +io.reactivex.Observable: io.reactivex.Observable dematerialize(io.reactivex.functions.Function) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTimeStamp(long) +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean isDisposed() +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy +androidx.activity.R$styleable: int GradientColor_android_endColor +androidx.constraintlayout.widget.R$dimen: int abc_seekbar_track_progress_height_material +retrofit2.RequestFactory$Builder: java.lang.annotation.Annotation[] methodAnnotations +com.google.android.material.R$styleable: int[] ScrimInsetsFrameLayout +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String weatherText +androidx.appcompat.widget.LinearLayoutCompat: void setBaselineAlignedChildIndex(int) +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: int unitArrayIndex +com.amap.api.location.UmidtokenInfo: void setLocAble(boolean) +androidx.appcompat.R$styleable: int MenuGroup_android_checkableBehavior +com.google.android.material.R$styleable: int CollapsingToolbarLayout_maxLines +androidx.loader.R$styleable: int FontFamilyFont_fontStyle +com.xw.repo.bubbleseekbar.R$attr: int contentInsetRight +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.appcompat.R$styleable: int AppCompatTextView_drawableEndCompat +androidx.preference.R$styleable: int Preference_android_widgetLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setStatus(int) +wangdaye.com.geometricweather.R$attr: int textAppearanceSubtitle1 +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void clear() +wangdaye.com.geometricweather.R$dimen: int widget_mini_weather_icon_size +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeApparentTemperature +com.google.android.material.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +androidx.core.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setId(java.lang.Long) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextAppearanceInactive(int) +wangdaye.com.geometricweather.R$attr +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline4 +com.bumptech.glide.integration.okhttp.R$string +androidx.appcompat.R$attr: int editTextColor +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_dither +org.greenrobot.greendao.database.DatabaseOpenHelper: boolean loadSQLCipherNativeLibs +androidx.fragment.R$dimen: int notification_action_icon_size +androidx.preference.R$attr: int preserveIconSpacing +androidx.transition.R$id: int save_non_transition_alpha +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onSuccess(java.lang.Object) +wangdaye.com.geometricweather.R$id: int backBtn +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteSelector$Selection routeSelection +com.google.android.material.internal.NavigationMenuView: int getWindowAnimations() +com.jaredrummler.android.colorpicker.R$styleable: int GradientColorItem_android_offset +okhttp3.internal.cache.DiskLruCache$Snapshot: okhttp3.internal.cache.DiskLruCache$Editor edit() +wangdaye.com.geometricweather.R$layout: int abc_action_bar_title_item +androidx.appcompat.R$style: int TextAppearance_AppCompat_Subhead +com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarButtonStyle +androidx.preference.R$styleable: int AlertDialog_listItemLayout +io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver[] values() +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.lang.Throwable error +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_textOn +androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy: ConstraintProxy$StorageNotLowProxy() +com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_android_background +okio.ByteString: okio.ByteString hmac(java.lang.String,okio.ByteString) +com.amap.api.location.AMapLocationClientOption: boolean m +wangdaye.com.geometricweather.R$attr: int bsb_section_count +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Time +android.didikee.donate.R$style: int TextAppearance_AppCompat_Caption +com.google.android.material.R$style: int Test_Theme_MaterialComponents_MaterialCalendar +com.xw.repo.bubbleseekbar.R$id: int submit_area +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onComplete() +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: int hashCode() +cyanogenmod.weather.WeatherLocation$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.customview.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.constraintlayout.widget.R$color: int abc_search_url_text +androidx.preference.R$color: int abc_hint_foreground_material_dark +james.adaptiveicon.R$layout: int abc_alert_dialog_title_material +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Bridge +com.google.android.material.R$attr: int tooltipStyle +com.google.android.material.R$id: int tag_screen_reader_focusable +android.didikee.donate.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +androidx.appcompat.R$layout: int abc_cascading_menu_item_layout +okhttp3.internal.http2.Http2Reader: Http2Reader(okio.BufferedSource,boolean) +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: io.reactivex.Observer child +android.didikee.donate.R$style: int TextAppearance_AppCompat_Small +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindDircEnd() +com.autonavi.aps.amapapi.model.AMapLocationServer: int i +androidx.preference.R$styleable: int ActionBar_backgroundStacked +androidx.swiperefreshlayout.R$drawable: int notify_panel_notification_icon_bg +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_progress +okhttp3.internal.tls.DistinguishedNameParser +androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object readKey(android.database.Cursor,int) +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_visible +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_GREEN_INDEX +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void dispose() +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void dispose() +james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedWidthMinor +androidx.activity.R$integer: int status_bar_notification_info_maxnum +io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable valueOf(java.lang.String) +okhttp3.internal.http2.Http2Connection$Listener: Http2Connection$Listener() +androidx.activity.R$dimen: int notification_large_icon_height +okhttp3.internal.http2.Http2: java.lang.IllegalArgumentException illegalArgument(java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity: TextWidgetConfigActivity() +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType BOOLEAN_TYPE +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.String dailyWeatherDescription +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_creator +io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate,int) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWeatherText() +wangdaye.com.geometricweather.R$string: int key_widget_trend_hourly +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +okhttp3.HttpUrl: java.lang.String encodedFragment() +wangdaye.com.geometricweather.R$mipmap: int ic_launcher +com.google.android.material.R$styleable: int[] PropertySet +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: long read(okio.Buffer,long) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogStyle +com.google.android.material.R$attr: int collapseContentDescription +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial Imperial +okhttp3.internal.http2.Settings: int getMaxFrameSize(int) +androidx.coordinatorlayout.R$drawable: int notify_panel_notification_icon_bg +com.turingtechnologies.materialscrollbar.R$id: int right +wangdaye.com.geometricweather.R$attr: int showTitle +androidx.preference.R$styleable: int LinearLayoutCompat_showDividers +com.google.android.material.R$id: int slide +androidx.recyclerview.R$id: int accessibility_action_clickable_span +androidx.dynamicanimation.R$styleable: int GradientColorItem_android_offset +cyanogenmod.power.PerformanceManager: int[] POSSIBLE_POWER_PROFILES +com.google.android.material.R$drawable: int abc_textfield_search_default_mtrl_alpha +androidx.appcompat.R$styleable: int Toolbar_menu +com.google.android.material.R$styleable: int Variant_region_widthLessThan +james.adaptiveicon.R$styleable: int AppCompatTextView_lineHeight +wangdaye.com.geometricweather.R$id: int activity_about_toolbar +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar_TextView +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.util.concurrent.atomic.AtomicReference latest +com.google.android.material.R$string: int path_password_strike_through +com.turingtechnologies.materialscrollbar.R$dimen: int abc_switch_padding +androidx.appcompat.widget.SearchView: void setSuggestionsAdapter(androidx.cursoradapter.widget.CursorAdapter) +wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeSeekBar +com.google.android.material.R$dimen: int item_touch_helper_swipe_escape_velocity +cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_PROVIDER +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit valueOf(java.lang.String) +okhttp3.internal.io.FileSystem$1 +retrofit2.RequestBuilder: void setRelativeUrl(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$color: int abc_secondary_text_material_dark +com.google.android.material.R$drawable: int abc_list_divider_mtrl_alpha +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Id +androidx.preference.R$styleable: int ActionBar_contentInsetStartWithNavigation +com.jaredrummler.android.colorpicker.R$attr: int trackTintMode +com.google.android.material.R$attr: int tabPaddingEnd +com.google.android.material.R$attr: int counterOverflowTextColor +james.adaptiveicon.R$string: int abc_searchview_description_query +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: AccuCurrentResult$Pressure$Metric() +com.google.android.material.R$attr: int textAppearanceLineHeightEnabled +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_16dp +androidx.appcompat.widget.AppCompatSpinner: android.graphics.drawable.Drawable getPopupBackground() +android.didikee.donate.R$dimen: int abc_seekbar_track_progress_height_material wangdaye.com.geometricweather.R$style: int widget_week_icon -com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Panel -wangdaye.com.geometricweather.R$color: int colorTextContent_dark -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_minWidth -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SeekBar -androidx.appcompat.R$styleable: int[] AppCompatSeekBar -android.didikee.donate.R$attr: int textAppearancePopupMenuHeader -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: int getStatus() -com.xw.repo.bubbleseekbar.R$id: int right_icon -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets -androidx.coordinatorlayout.R$id: int chronometer -wangdaye.com.geometricweather.R$attr: int progressBarPadding -wangdaye.com.geometricweather.R$attr: int strokeColor -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: void run() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_rightToLeft -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Large -okio.ForwardingSink: void write(okio.Buffer,long) -cyanogenmod.app.ThemeVersion: java.lang.String THEME_VERSION_FIELD_NAME -com.google.android.material.R$attr: int trackTintMode -wangdaye.com.geometricweather.R$dimen: int design_navigation_max_width -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerComplete() -androidx.activity.R$drawable -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog -retrofit2.ParameterHandler$RelativeUrl: int p -wangdaye.com.geometricweather.R$attr: int itemTextColor -wangdaye.com.geometricweather.R$styleable: int Constraint_barrierMargin -cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(android.os.Parcel) -okio.ByteString: okio.ByteString encodeString(java.lang.String,java.nio.charset.Charset) -cyanogenmod.util.ColorUtils: double calculateDeltaE(double,double,double,double,double,double) -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_margin -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_menu -androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2 -androidx.preference.R$attr: int actionModeShareDrawable -androidx.legacy.coreutils.R$string -cyanogenmod.providers.CMSettings$Global: boolean isLegacySetting(java.lang.String) -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplBase -james.adaptiveicon.R$styleable: int AppCompatTheme_textColorSearchUrl -retrofit2.Call: okio.Timeout timeout() -androidx.appcompat.R$styleable: int TextAppearance_android_shadowDx -com.xw.repo.bubbleseekbar.R$attr: int actionBarWidgetTheme -com.xw.repo.bubbleseekbar.R$id: int edit_query -com.google.android.material.chip.ChipGroup -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_editor_absoluteX -androidx.constraintlayout.widget.R$attr: int menu -com.jaredrummler.android.colorpicker.R$attr: int backgroundTintMode -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isSnow() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: AccuDailyResult$DailyForecasts$Day$Snow() -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_normal -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeShareDrawable -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: boolean isValid() -wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_dark -com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.tabs.TabLayout$Tab getTab() -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_5 -com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean checkTerminated(boolean,boolean,io.reactivex.Observer) -wangdaye.com.geometricweather.R$id: int notification_big_week_5 -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getDisplayGammaCalibration(int) -wangdaye.com.geometricweather.R$drawable: int flag_cs -okhttp3.ConnectionPool$1: okhttp3.ConnectionPool this$0 -wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.DailyEntity) -com.google.android.material.R$styleable: int Constraint_drawPath -com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_toLeftOf -retrofit2.OptionalConverterFactory$OptionalConverter -org.greenrobot.greendao.AbstractDao: java.lang.Object loadUniqueAndCloseCursor(android.database.Cursor) -androidx.dynamicanimation.R$attr: int fontVariationSettings -androidx.fragment.R$layout -wangdaye.com.geometricweather.R$styleable: int Constraint_android_scaleY -com.amap.api.location.AMapLocationClientOption: boolean isOpenAlwaysScanWifi() -okhttp3.internal.http.HttpHeaders: int skipWhitespace(java.lang.String,int) -androidx.appcompat.R$styleable: int ButtonBarLayout_allowStacking -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textSize -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_material -wangdaye.com.geometricweather.R$attr: int fontProviderPackage -com.google.android.material.R$attr: int selectableItemBackgroundBorderless -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void clear() -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -android.didikee.donate.R$styleable: int MenuItem_iconTintMode -androidx.loader.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$id: int easeInOut -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_UnelevatedButton -cyanogenmod.app.IProfileManager$Stub$Proxy: void updateNotificationGroup(android.app.NotificationGroup) -wangdaye.com.geometricweather.R$attr: int alertDialogTheme -com.google.android.gms.common.internal.zzc: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$styleable: int[] ActionBar -com.google.android.material.R$string: int abc_action_bar_home_description -cyanogenmod.platform.R$drawable: R$drawable() -com.jaredrummler.android.colorpicker.R$layout: int preference_dropdown -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_always_show_bubble -com.google.android.material.R$styleable: int KeyAttribute_transitionPathRotate -wangdaye.com.geometricweather.R$string: int feedback_hide_subtitle -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: boolean isDisposed() +retrofit2.Platform: int defaultCallAdapterFactoriesSize() +wangdaye.com.geometricweather.R$attr: int preferenceStyle +cyanogenmod.weather.WeatherInfo: int access$302(cyanogenmod.weather.WeatherInfo,int) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onNext(java.lang.Object) +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: void onFailure(retrofit2.Call,java.lang.Throwable) +androidx.hilt.lifecycle.R$styleable +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitleTextColor +okhttp3.Cookie: java.util.regex.Pattern MONTH_PATTERN +james.adaptiveicon.R$styleable: int TextAppearance_android_textColor +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.Observer downstream +androidx.drawerlayout.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +com.google.android.material.R$id: int text_input_error_icon +androidx.lifecycle.ComputableLiveData: java.util.concurrent.atomic.AtomicBoolean mComputing +cyanogenmod.platform.Manifest$permission: java.lang.String READ_WEATHER +wangdaye.com.geometricweather.db.entities.AlertEntity: void setDescription(java.lang.String) +wangdaye.com.geometricweather.R$id: int regular +okhttp3.internal.connection.RouteException: java.io.IOException getFirstConnectException() +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) +com.google.android.material.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +com.google.android.material.R$styleable: int AppCompatTextView_autoSizeStepGranularity +androidx.customview.R$attr: int fontStyle +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Request followUpRequest(okhttp3.Response,okhttp3.Route) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingBottom +com.google.android.material.R$dimen: int material_clock_number_text_size +com.autonavi.aps.amapapi.model.AMapLocationServer: void c(java.lang.String) +androidx.constraintlayout.widget.R$attr: int flow_firstVerticalBias +androidx.constraintlayout.widget.R$attr: int fontStyle +androidx.vectordrawable.R$id: int tag_accessibility_actions +io.reactivex.internal.observers.DeferredScalarDisposable: void complete() +james.adaptiveicon.R$styleable: int AppCompatTheme_colorError +com.jaredrummler.android.colorpicker.R$attr: int buttonBarNeutralButtonStyle +androidx.constraintlayout.widget.R$styleable: int[] ButtonBarLayout +okhttp3.internal.ws.WebSocketProtocol: long CLOSE_MESSAGE_MAX +androidx.hilt.lifecycle.R$attr: int font +androidx.preference.R$styleable: int GradientColor_android_endX +com.xw.repo.bubbleseekbar.R$style: int Base_DialogWindowTitleBackground_AppCompat +androidx.viewpager.widget.PagerTitleStrip: PagerTitleStrip(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite valueOf(java.lang.String) +androidx.lifecycle.LiveData$ObserverWrapper: androidx.lifecycle.Observer mObserver +retrofit2.OkHttpCall$1: retrofit2.Callback val$callback +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWeatherPhase() +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status[] values() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: double Value +com.github.rahatarmanahmed.cpv.CircularProgressView: float indeterminateRotateOffset +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String level +com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalAlign +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_28 +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource[],io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$animator: int weather_wind_1 +wangdaye.com.geometricweather.search.SearchActivity +wangdaye.com.geometricweather.R$id: int item_weather_daily_pollen +android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.fragment.R$attr: int fontProviderQuery +androidx.constraintlayout.widget.R$id: int icon_group +wangdaye.com.geometricweather.Hilt_GeometricWeather: Hilt_GeometricWeather() +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_seek_step_section +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String g() +androidx.constraintlayout.widget.Group: Group(android.content.Context) +cyanogenmod.themes.IThemeService$Stub$Proxy: void unregisterThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) +okhttp3.internal.http2.Header: okio.ByteString RESPONSE_STATUS +com.google.android.material.R$styleable: int Constraint_motionProgress +cyanogenmod.providers.CMSettings$System +com.turingtechnologies.materialscrollbar.DragScrollBar: float getHandleOffset() +androidx.appcompat.R$styleable: int AppCompatTheme_actionButtonStyle +retrofit2.BuiltInConverters$UnitResponseBodyConverter +wangdaye.com.geometricweather.R$string: int common_google_play_services_notification_channel_name +wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_default_alpha +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status ERROR +wangdaye.com.geometricweather.R$drawable: int notif_temp_32 +wangdaye.com.geometricweather.R$styleable: int Preference_layout +james.adaptiveicon.R$string: int abc_shareactionprovider_share_with +com.amap.api.location.AMapLocationClient: void startAssistantLocation() +cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_RINGTONE +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation +androidx.work.impl.diagnostics.DiagnosticsReceiver: DiagnosticsReceiver() +androidx.preference.R$style: int Widget_AppCompat_SeekBar_Discrete +androidx.preference.R$attr: int listDividerAlertDialog +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$drawable: int ic_back +com.jaredrummler.android.colorpicker.R$dimen: int compat_control_corner_material +androidx.constraintlayout.widget.R$styleable: int ActionMode_closeItemLayout +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayColorCalibration +androidx.appcompat.R$attr: int fontStyle +androidx.appcompat.widget.Toolbar: void setTitleMarginStart(int) +cyanogenmod.app.CustomTile$Builder: android.net.Uri mOnClickUri +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean cancelled +cyanogenmod.app.Profile: void readTriggersFromXml(org.xmlpull.v1.XmlPullParser,android.content.Context,cyanogenmod.app.Profile) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean getPrecipitation() +com.google.android.material.R$color: int material_on_background_disabled +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_RC4_128_SHA +okhttp3.Cache$CacheRequestImpl: void abort() +com.google.android.material.R$attr: int motion_postLayoutCollision +com.google.android.material.R$dimen: int mtrl_calendar_month_vertical_padding +wangdaye.com.geometricweather.R$attr: int materialCalendarTheme +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String admin2 +com.bumptech.glide.integration.okhttp.R$integer: R$integer() +wangdaye.com.geometricweather.R$styleable: int FlowLayout_lineSpacing +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_dither +com.google.android.material.R$dimen: int design_navigation_item_horizontal_padding +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindDirection(java.lang.String) +com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusBottomEnd() +cyanogenmod.app.BaseLiveLockManagerService$1: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setSelectedPage(int) +com.turingtechnologies.materialscrollbar.R$attr: int windowActionBar +okhttp3.internal.http.CallServerInterceptor +com.google.android.material.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderFetchTimeout +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.ProcessLifecycleOwner sInstance +com.turingtechnologies.materialscrollbar.R$attr: int switchStyle +androidx.appcompat.R$id: int accessibility_custom_action_8 +com.google.android.material.R$styleable: int KeyPosition_curveFit +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit[] values() +androidx.preference.R$id: int tag_accessibility_heading +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTextPadding +wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_velocityMode +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ButtonBar +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitationProbability +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_day_of_week +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_RESUME +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_dependency +cyanogenmod.providers.CMSettings$NameValueCache +com.jaredrummler.android.colorpicker.R$style: int PreferenceFragmentList +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_thickness +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_CBC_SHA256 +com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_base +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationVoice(android.content.Context,float) +androidx.coordinatorlayout.R$id: int line1 +com.xw.repo.bubbleseekbar.R$id: int line3 +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String name +james.adaptiveicon.R$drawable: int abc_scrubber_primary_mtrl_alpha +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd +io.reactivex.Observable: io.reactivex.Observable retryUntil(io.reactivex.functions.BooleanSupplier) +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_backgroundTint +wangdaye.com.geometricweather.R$styleable: int ArcProgress_text +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: void truncate() +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node removeInternalByKey(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: int UnitType +com.google.android.gms.location.ActivityTransitionRequest: android.os.Parcelable$Creator CREATOR +androidx.vectordrawable.R$id: int async +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_NoActionBar +androidx.viewpager.R$styleable: int FontFamilyFont_android_fontStyle +james.adaptiveicon.R$styleable: int MenuItem_showAsAction +androidx.drawerlayout.R$dimen: int compat_button_inset_vertical_material +androidx.lifecycle.LiveData$AlwaysActiveObserver +com.google.android.material.R$styleable: int Constraint_flow_horizontalGap +com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_radio +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitationDuration() +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: CNWeatherResult$Life$Info() +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: long bytesRead +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: MfForecastResult$ProbabilityForecast$ProbabilitySnow() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean images +androidx.dynamicanimation.R$id: int actions +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_NULL_SHA +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline5 +androidx.recyclerview.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$attr: int thumbTint wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Tab -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean modifyInHour -com.google.android.material.R$drawable: int abc_ic_search_api_material -com.google.android.material.circularreveal.CircularRevealFrameLayout: int getCircularRevealScrimColor() -okio.RealBufferedSink: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) -cyanogenmod.app.Profile: cyanogenmod.profiles.BrightnessSettings getBrightness() -com.google.android.material.button.MaterialButton: void setOnPressedChangeListenerInternal(com.google.android.material.button.MaterialButton$OnPressedChangeListener) -okio.Timeout: long deadlineNanoTime -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: DefaultCallAdapterFactory$ExecutorCallbackCall(java.util.concurrent.Executor,retrofit2.Call) -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -com.google.android.material.R$styleable: int Chip_android_textColor -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.internal.disposables.ArrayCompositeDisposable resources -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: int getMarginBottom() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_tint -com.jaredrummler.android.colorpicker.R$attr: int listLayout -cyanogenmod.profiles.AirplaneModeSettings: void setOverride(boolean) -androidx.lifecycle.Lifecycle: void addObserver(androidx.lifecycle.LifecycleObserver) -androidx.constraintlayout.widget.R$attr: int telltales_tailColor -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object[] toArray(java.lang.Object[]) -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean replace(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_transitionEasing -androidx.appcompat.R$styleable: int SwitchCompat_track -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_MediumComponent -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: double Value -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_enter -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dialog -james.adaptiveicon.R$styleable: int Toolbar_contentInsetLeft -cyanogenmod.app.ThemeComponent: int id -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemHorizontalPadding -okhttp3.Challenge: int hashCode() -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_hideOnContentScroll -com.google.android.material.R$attr: int round -androidx.preference.R$styleable: int Preference_android_shouldDisableView -retrofit2.http.PartMap -wangdaye.com.geometricweather.R$drawable: int abc_switch_track_mtrl_alpha -com.google.android.material.R$styleable: int TextInputLayout_boxStrokeWidthFocused -androidx.constraintlayout.widget.R$drawable: R$drawable() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String value -wangdaye.com.geometricweather.R$id: int container_main_pollen_subtitle -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconTint -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int OTHER_STATE_HAS_VALUE -com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode resolve(android.content.Context) -com.turingtechnologies.materialscrollbar.R$color: int abc_btn_colored_borderless_text_material -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_controlBackground -io.reactivex.internal.subscriptions.SubscriptionArbiter: SubscriptionArbiter(boolean) -com.google.android.material.R$styleable: int AppCompatTextView_autoSizeTextType -wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context) -androidx.hilt.work.R$dimen: int notification_right_icon_size -cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(int) -androidx.constraintlayout.widget.R$integer -com.google.android.material.R$attr: int cardForegroundColor -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -wangdaye.com.geometricweather.R$attr: int colorPrimaryVariant -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_min -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: CaiYunMainlyResult$CurrentBean$PressureBean() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours Past6Hours -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf -wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_content -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderDivider -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: long serialVersionUID -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$color: int dim_foreground_material_dark -androidx.preference.R$style: int Base_Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$layout: int design_layout_tab_text -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index() -androidx.appcompat.R$styleable: int MenuItem_android_id -androidx.hilt.R$id: int accessibility_custom_action_3 -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Connection getConnection() -androidx.fragment.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$color: int material_on_primary_emphasis_high_type -androidx.swiperefreshlayout.R$id: int info -wangdaye.com.geometricweather.R$id: int item_about_translator_title -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialButtonToggleGroup -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTintMode -androidx.lifecycle.LiveData: boolean mDispatchingValue -wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaTitle -androidx.recyclerview.R$dimen: int compat_button_padding_horizontal_material -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -com.google.android.gms.common.api.GoogleApiClient: void unregisterConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) -cyanogenmod.providers.CMSettings$System: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) -cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(android.os.Parcel,cyanogenmod.app.suggest.ApplicationSuggestion$1) -cyanogenmod.platform.R$integer: R$integer() -android.didikee.donate.R$color: int switch_thumb_normal_material_dark -com.google.android.material.R$id: int textinput_counter -androidx.appcompat.R$styleable: int Toolbar_titleTextColor -com.xw.repo.bubbleseekbar.R$id: int select_dialog_listview -androidx.preference.R$attr: int shouldDisableView -com.google.android.material.R$styleable: int Toolbar_titleTextColor -androidx.preference.R$style: int Widget_AppCompat_AutoCompleteTextView -androidx.swiperefreshlayout.R$dimen: int notification_right_icon_size -okhttp3.FormBody$Builder: java.util.List values -wangdaye.com.geometricweather.R$layout: int dialog_weather_hourly -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -com.google.android.material.R$id: int accessibility_custom_action_22 -com.google.android.material.R$id: int baseline -james.adaptiveicon.R$styleable: int AlertDialog_listLayout -com.google.android.material.R$attr: int titleMarginEnd -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.lang.Object x509TrustManagerExtensions -com.bumptech.glide.integration.okhttp.R$color -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -com.google.android.material.R$dimen: int abc_action_bar_stacked_tab_max_width -com.google.android.material.R$attr: int counterTextColor -okhttp3.Dispatcher: void enqueue(okhttp3.RealCall$AsyncCall) -androidx.appcompat.R$attr: int colorControlNormal -com.google.android.material.chip.Chip: float getChipStartPadding() -io.reactivex.Observable: io.reactivex.Observable dematerialize() -wangdaye.com.geometricweather.R$attr: int layout_optimizationLevel -com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetBottom -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.R$drawable: R$drawable() -androidx.preference.R$styleable: int PreferenceFragment_android_layout -wangdaye.com.geometricweather.common.ui.widgets.TagView: int getUncheckedBackgroundColor() -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_textAllCaps -androidx.appcompat.R$styleable: int AlertDialog_buttonPanelSideLayout -okhttp3.OkHttpClient: javax.net.SocketFactory socketFactory -androidx.appcompat.R$attr: int buttonGravity -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_seekbar -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event[] $VALUES -android.didikee.donate.R$attr: int displayOptions -android.didikee.donate.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.R$string: int common_google_play_services_enable_text -androidx.appcompat.R$style: int TextAppearance_AppCompat_Subhead -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall this$0 -androidx.swiperefreshlayout.R$id: int time -com.google.android.material.R$color: int mtrl_btn_text_btn_ripple_color -androidx.appcompat.widget.AppCompatImageButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -retrofit2.OptionalConverterFactory$OptionalConverter: java.util.Optional convert(okhttp3.ResponseBody) -androidx.appcompat.R$styleable: int MenuItem_actionProviderClass -wangdaye.com.geometricweather.R$drawable: int ic_temperature_celsius -com.xw.repo.bubbleseekbar.R$attr: int popupMenuStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: AccuDailyResult$DailyForecasts$Day$Rain() -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge -androidx.constraintlayout.widget.R$id: int line3 -androidx.core.R$style: R$style() -androidx.preference.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -wangdaye.com.geometricweather.R$styleable: int[] MaterialAutoCompleteTextView -androidx.preference.R$styleable: int Spinner_popupTheme -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) -com.google.android.material.R$style: int Base_Widget_AppCompat_EditText -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_disabled_holo_light -com.turingtechnologies.materialscrollbar.R$layout: int notification_action -androidx.preference.R$id: int search_bar -androidx.viewpager2.R$drawable: int notification_bg_low -androidx.recyclerview.widget.RecyclerView: long getNanoTime() -androidx.work.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_shadow_height -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTodaysLow(double) -com.jaredrummler.android.colorpicker.R$id: int search_plate -okio.Okio: okio.Sink sink(java.nio.file.Path,java.nio.file.OpenOption[]) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean getContent() -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_ALL -androidx.coordinatorlayout.R$styleable: int GradientColorItem_android_color -cyanogenmod.app.Profile: Profile(android.os.Parcel,cyanogenmod.app.Profile$1) -okhttp3.internal.http2.Http2: byte FLAG_PRIORITY -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$styleable: int Transition_autoTransition -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginBottom -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -cyanogenmod.providers.CMSettings$System$2: CMSettings$System$2() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.constraintlayout.widget.R$id: int right_icon -androidx.hilt.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_grey -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -androidx.preference.R$styleable: int Preference_persistent -androidx.preference.R$id: int accessibility_custom_action_0 -androidx.work.OverwritingInputMerger -wangdaye.com.geometricweather.R$styleable: int NavigationView_shapeAppearanceOverlay -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_imeOptions -cyanogenmod.providers.CMSettings -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setSpeed(java.lang.String) -com.amap.api.fence.PoiItem: void setTypeCode(java.lang.String) -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderLayout -okio.Okio: okio.Source source(java.io.InputStream,okio.Timeout) -android.didikee.donate.R$attr: int gapBetweenBars -wangdaye.com.geometricweather.R$dimen: int design_snackbar_min_width -okhttp3.internal.platform.JdkWithJettyBootPlatform: JdkWithJettyBootPlatform(java.lang.reflect.Method,java.lang.reflect.Method,java.lang.reflect.Method,java.lang.Class,java.lang.Class) -okhttp3.internal.connection.ConnectionSpecSelector: java.util.List connectionSpecs -com.google.android.material.R$color: int mtrl_on_primary_text_btn_text_color_selector -okhttp3.Request: okhttp3.Request$Builder newBuilder() -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String j() -com.google.android.material.R$styleable: int MaterialCalendar_dayTodayStyle -cyanogenmod.providers.CMSettings$Global: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_29 -androidx.appcompat.R$style: int AlertDialog_AppCompat_Light -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void cancel() -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_material_dark -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert -androidx.viewpager2.R$styleable: int RecyclerView_android_clipToPadding -com.github.rahatarmanahmed.cpv.CircularProgressView: boolean isIndeterminate() -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardUseCompatPadding -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconMode -cyanogenmod.profiles.AirplaneModeSettings -wangdaye.com.geometricweather.R$drawable: int notification_bg_normal_pressed -retrofit2.RequestBuilder: java.lang.String relativeUrl -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_anchor -com.google.android.material.R$dimen: int abc_text_size_subhead_material -wangdaye.com.geometricweather.R$styleable: int State_constraints -androidx.preference.R$id: int split_action_bar -androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMarkTintMode -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_showText -androidx.appcompat.widget.AppCompatTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -androidx.appcompat.resources.R$styleable: int[] StateListDrawableItem -androidx.lifecycle.Lifecycling: int getObserverConstructorType(java.lang.Class) -androidx.preference.R$attr: int switchTextAppearance -wangdaye.com.geometricweather.R$attr: int layout_editor_absoluteX -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Selected -com.bumptech.glide.R$id: int glide_custom_view_target_tag -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_thickness -okhttp3.WebSocketListener: void onClosing(okhttp3.WebSocket,int,java.lang.String) -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status IDLE -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_focused_z -okhttp3.Response$Builder: okhttp3.Response$Builder code(int) -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_content_inset_material -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: int status -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_shapeAppearance -com.google.android.material.R$styleable: int BottomNavigationView_itemTextAppearanceActive -okio.BufferedSink: okio.BufferedSink writeUtf8(java.lang.String) -androidx.recyclerview.widget.RecyclerView: void setScrollState(int) -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_popupTheme -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.Long id -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice -androidx.appcompat.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: AccuCurrentResult$PrecipitationSummary() -okhttp3.internal.connection.RealConnection -james.adaptiveicon.R$id: int normal -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: java.lang.String getWidgetWeekIconModeName(android.content.Context) -android.didikee.donate.R$anim: int abc_popup_enter -com.google.android.material.R$attr: int chipEndPadding -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_hovered_focused -okhttp3.ResponseBody$1: okio.BufferedSource source() -com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat_Light -android.didikee.donate.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -androidx.viewpager.R$styleable: int GradientColor_android_centerX -androidx.preference.R$attr: R$attr() -androidx.activity.R$styleable: int[] GradientColor -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function8) -androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_android_alpha -com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingBottom -wangdaye.com.geometricweather.R$animator: int search_container_in -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_background_transition_holo_dark -androidx.lifecycle.extensions.R$color: int secondary_text_default_material_light -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec MODERN_TLS -cyanogenmod.app.IProfileManager$Stub$Proxy -androidx.coordinatorlayout.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String to -androidx.hilt.R$id: int accessibility_custom_action_15 -androidx.hilt.work.R$id: int accessibility_custom_action_0 -androidx.work.R$attr: int fontProviderAuthority -android.didikee.donate.R$anim: int abc_slide_in_top -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light_focused -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: long serialVersionUID -com.google.android.material.slider.Slider: void setThumbStrokeColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$styleable: int[] MaterialRadioButton -okhttp3.internal.cache.DiskLruCache: boolean removeEntry(okhttp3.internal.cache.DiskLruCache$Entry) -com.google.android.material.R$styleable: int MaterialCardView_strokeWidth -com.google.android.material.bottomnavigation.BottomNavigationMenuView -retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: OkHttpCall$ExceptionCatchingResponseBody$1(retrofit2.OkHttpCall$ExceptionCatchingResponseBody,okio.Source) -wangdaye.com.geometricweather.R$styleable: int[] ExtendedFloatingActionButton -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_19 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: java.util.List getValue() -io.reactivex.internal.util.VolatileSizeArrayList: java.util.ArrayList list -androidx.constraintlayout.widget.R$dimen: int abc_config_prefDialogWidth -wangdaye.com.geometricweather.R$id: int material_timepicker_edit_text -com.google.android.material.navigation.NavigationView: void setItemBackgroundResource(int) -androidx.constraintlayout.widget.R$attr: int tint -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog -androidx.work.R$dimen: R$dimen() -cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String META_DATA -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_CompactMenu -androidx.recyclerview.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endY -com.turingtechnologies.materialscrollbar.R$attr: int textColorAlertDialogListItem -com.amap.api.fence.GeoFence: int ERROR_CODE_EXISTS -androidx.appcompat.R$id: int select_dialog_listview -com.jaredrummler.android.colorpicker.R$attr: int keylines -com.google.android.material.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -com.google.android.material.R$id: int dragLeft -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$attr: int spanCount -com.amap.api.location.AMapLocation: java.lang.String i -wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_2_0_padding_top -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_light -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitationDuration -wangdaye.com.geometricweather.R$id: int item_alert_title -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetStartWithNavigation -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: void setRootAlpha(int) -androidx.preference.R$color: int background_floating_material_dark -androidx.loader.R$dimen: int notification_top_pad_large_text -androidx.appcompat.R$attr: int buttonBarNeutralButtonStyle -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -com.google.android.material.R$styleable: int AppCompatTextView_fontFamily -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionMenuTextAppearance -okhttp3.internal.connection.StreamAllocation: okhttp3.Route route -android.didikee.donate.R$styleable: int Toolbar_titleMarginTop -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: MfHistoryResult$History() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -com.google.android.material.R$styleable: int Layout_layout_constraintVertical_chainStyle -com.google.android.material.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotationX -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat -android.didikee.donate.R$id: int search_close_btn +okhttp3.internal.http2.Http2Connection$3: void execute() +androidx.recyclerview.R$id: int accessibility_custom_action_22 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) +androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationY +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +okhttp3.HttpUrl: java.lang.String redact() +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTextColor(android.content.res.ColorStateList) +com.google.android.material.R$id: int edit_query +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Medium +cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_LAUNCH +com.jaredrummler.android.colorpicker.R$attr: int paddingEnd +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +androidx.transition.R$id +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderFetchStrategy +james.adaptiveicon.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeWindChillTemperature +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitationProbability(java.lang.Float) wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundODialog: RunningInBackgroundODialog() -com.turingtechnologies.materialscrollbar.R$styleable: int TouchScrollBar_msb_autoHide -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getSuffixText() -android.didikee.donate.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int getPriority() -android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -androidx.constraintlayout.widget.R$layout: int abc_tooltip -com.google.android.material.tabs.TabLayout: void addOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalAlign -androidx.preference.R$id: int accessibility_custom_action_7 -dagger.hilt.android.internal.managers.ActivityRetainedComponentManager$ActivityRetainedComponentViewModel -com.google.android.material.card.MaterialCardView: int getContentPaddingBottom() -android.didikee.donate.R$drawable: int abc_ratingbar_material -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetStart -cyanogenmod.content.Intent: java.lang.String ACTION_THEME_INSTALLED -com.jaredrummler.android.colorpicker.R$id: int cpv_hex -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyBar -com.xw.repo.bubbleseekbar.R$id: int listMode -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Header$Listener access$100(okhttp3.internal.http2.Http2Stream) -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit C -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: void run() -com.google.android.material.R$styleable: int Badge_badgeTextColor -com.turingtechnologies.materialscrollbar.R$attr: int counterMaxLength -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -retrofit2.Retrofit: retrofit2.Converter nextResponseBodyConverter(retrofit2.Converter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[]) -com.google.android.material.R$id: int motion_base -wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_backgroundColorStart -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean validate(long) -androidx.preference.R$style: int Base_Widget_AppCompat_ListView -androidx.appcompat.R$styleable: int AppCompatTheme_dialogPreferredPadding -james.adaptiveicon.R$style: int Widget_Compat_NotificationActionText -com.xw.repo.bubbleseekbar.R$attr: int thickness -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String timezone -okhttp3.internal.http2.Settings: int COUNT -cyanogenmod.app.Profile: cyanogenmod.profiles.BrightnessSettings mBrightness -com.turingtechnologies.materialscrollbar.R$id: int message -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long end -okhttp3.OkHttpClient$Builder: OkHttpClient$Builder(okhttp3.OkHttpClient) -com.google.android.material.R$attr: int bottomAppBarStyle -com.google.android.material.R$styleable: int Chip_chipMinHeight -retrofit2.Utils$GenericArrayTypeImpl: java.lang.reflect.Type componentType -androidx.constraintlayout.widget.R$attr: int flow_lastVerticalBias -com.turingtechnologies.materialscrollbar.R$attr: int actionBarSplitStyle -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startY -androidx.fragment.R$drawable: int notification_bg -okhttp3.OkHttpClient: okhttp3.Dispatcher dispatcher() -com.google.android.material.R$layout: int mtrl_alert_dialog_actions -androidx.appcompat.R$attr: int viewInflaterClass -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_default -james.adaptiveicon.R$attr: int drawerArrowStyle -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: cyanogenmod.app.ThemeVersion$ComponentVersion getDeviceComponentVersion(cyanogenmod.app.ThemeComponent) -okhttp3.internal.cache.DiskLruCache: boolean mostRecentRebuildFailed -androidx.constraintlayout.widget.R$styleable: int[] RecycleListView -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider this$1 -cyanogenmod.providers.CMSettings$Secure: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -wangdaye.com.geometricweather.R$style: int Animation_AppCompat_DropDownUp -okio.SegmentPool: long byteCount -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onError(java.lang.Throwable) -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeManager getInstance(android.content.Context) -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderCerts -com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchCompat -androidx.fragment.app.Fragment: Fragment() -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_orderInCategory -androidx.preference.R$styleable: int[] ListPopupWindow -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 -androidx.swiperefreshlayout.R$id: int action_image -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_sheet_peek_height_min -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.HourlyEntity) -james.adaptiveicon.R$styleable: int AppCompatTheme_seekBarStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: double Value -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FREEZING_RAIN -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_growMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX -wangdaye.com.geometricweather.R$string: int precipitation_overview -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setTextColor(int) -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleTextAppearance -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_weightSum -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean forWebSocket -com.google.android.material.R$layout: int design_navigation_item -wangdaye.com.geometricweather.R$styleable: int TextAppearance_fontFamily -okhttp3.FormBody$Builder: java.util.List names -wangdaye.com.geometricweather.R$id: int FUNCTION -android.support.v4.os.IResultReceiver$Default: android.os.IBinder asBinder() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableEnd -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getRealFeelTemperature() -androidx.fragment.app.FragmentManagerState -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long readKey(android.database.Cursor,int) -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetStartWithNavigation -androidx.preference.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.R$id: int currentLocationButton -com.google.gson.internal.LazilyParsedNumber: long longValue() -com.google.android.material.textfield.TextInputLayout: int getBoxStrokeWidth() -android.didikee.donate.R$style: int Theme_AppCompat_DialogWhenLarge -com.google.android.material.snackbar.SnackbarContentLayout: SnackbarContentLayout(android.content.Context) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_97 -com.bumptech.glide.R$style: int Widget_Compat_NotificationActionContainer -com.google.android.material.R$styleable: int[] ClockFaceView -okhttp3.HttpUrl: java.lang.String FRAGMENT_ENCODE_SET -io.reactivex.Observable: io.reactivex.Single toList(java.util.concurrent.Callable) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -androidx.swiperefreshlayout.R$attr: int fontWeight -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver -wangdaye.com.geometricweather.R$styleable: int[] TagView -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.savedstate.SavedStateRegistry mSavedStateRegistry -android.didikee.donate.R$drawable: int abc_action_bar_item_background_material -wangdaye.com.geometricweather.R$attr: int collapseContentDescription -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitationDuration -androidx.constraintlayout.widget.R$layout: int abc_action_bar_up_container -com.turingtechnologies.materialscrollbar.R$attr: int layout_behavior -cyanogenmod.hardware.ICMHardwareService: int getSupportedFeatures() -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Overline -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int limit -com.amap.api.fence.GeoFence: int o -wangdaye.com.geometricweather.R$styleable: int Toolbar_title -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.util.List protocols -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomSheet_Modal -androidx.drawerlayout.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_controlBackground -com.xw.repo.bubbleseekbar.R$color: int material_grey_100 -androidx.appcompat.R$styleable: int AppCompatTextView_textLocale -wangdaye.com.geometricweather.R$attr: int helperTextEnabled -androidx.preference.R$id: int scrollIndicatorDown -retrofit2.HttpException: java.lang.String message -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setMax(float) -com.jaredrummler.android.colorpicker.R$id: int start -androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -androidx.core.R$id: int accessibility_custom_action_29 -androidx.preference.R$styleable: int MenuItem_android_menuCategory -io.reactivex.internal.schedulers.RxThreadFactory: boolean nonBlocking -androidx.vectordrawable.R$layout: R$layout() -com.google.android.material.R$string: int abc_menu_delete_shortcut_label -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textStyle -androidx.constraintlayout.widget.R$string: int status_bar_notification_info_overflow -androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context,android.util.AttributeSet) -androidx.preference.R$dimen: int abc_text_size_title_material_toolbar -androidx.coordinatorlayout.R$id: int line1 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_seekBarStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String en_US -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getDensityVoice(android.content.Context,float) -cyanogenmod.themes.IThemeService$Stub$Proxy: long getLastThemeChangeTime() -com.google.android.material.R$styleable: int AppCompatTheme_actionModeShareDrawable -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy LATEST -wangdaye.com.geometricweather.R$attr: int shapeAppearanceSmallComponent -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerError(java.lang.Throwable) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_COLOR_AUTO_VALIDATOR -android.didikee.donate.R$attr: int textAppearanceSearchResultSubtitle -androidx.lifecycle.HasDefaultViewModelProviderFactory -cyanogenmod.externalviews.KeyguardExternalView: android.content.Context mContext -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display2 -cyanogenmod.profiles.BrightnessSettings: void setValue(int) +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_motionProgress +wangdaye.com.geometricweather.R$id: int dialog_location_help_locationTitle +wangdaye.com.geometricweather.db.entities.HourlyEntity: int temperature +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: boolean isValidIndex() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setEn_US(java.lang.String) +androidx.drawerlayout.R$styleable: int[] GradientColorItem +com.google.android.material.chip.Chip: void setChipMinHeight(float) +androidx.appcompat.resources.R$integer +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: ObservableSwitchMapSingle$SwitchMapSingleMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: ObservablePublish$InnerDisposable(io.reactivex.Observer) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +android.didikee.donate.R$attr: int textAppearanceSearchResultTitle +cyanogenmod.weatherservice.WeatherProviderService: java.lang.String SERVICE_INTERFACE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.util.List getValue() +com.google.android.material.R$styleable: int ShapeableImageView_shapeAppearance +wangdaye.com.geometricweather.R$id: int filled +androidx.activity.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$id: int largeLabel +androidx.viewpager.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$color: int mtrl_tabs_icon_color_selector_colored +com.turingtechnologies.materialscrollbar.R$attr: int hideOnScroll +com.xw.repo.bubbleseekbar.R$attr: int radioButtonStyle +androidx.fragment.R$anim: int fragment_open_enter +com.google.android.material.bottomnavigation.BottomNavigationItemView +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +com.xw.repo.bubbleseekbar.R$layout: int abc_action_bar_up_container +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textAppearance +androidx.constraintlayout.widget.R$attr: int iconTintMode +com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingBottom +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_transitionEasing +com.google.android.material.R$attr: int progressBarStyle +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_dither +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Overline wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode HAIL -androidx.drawerlayout.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_1 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean forecastHourly -wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_3_material -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabText -com.google.android.material.chip.Chip: void setChipStrokeColorResource(int) -androidx.constraintlayout.widget.ConstraintLayout: int getOptimizationLevel() -cyanogenmod.platform.Manifest$permission: java.lang.String OBSERVE_AUDIO_SESSIONS -wangdaye.com.geometricweather.R$attr: int state_liftable -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_longpressed_holo -okio.AsyncTimeout$2: okio.AsyncTimeout this$0 -com.google.android.material.R$id: int material_hour_tv -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.disposables.Disposable upstream -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: java.lang.Object singleItem -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents -retrofit2.Utils: boolean hasUnresolvableType(java.lang.reflect.Type) -androidx.activity.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$string: int content_des_pm25 -com.xw.repo.bubbleseekbar.R$styleable: int[] Spinner -okio.Util: int reverseBytesInt(int) -com.google.android.material.R$color: int abc_tint_seek_thumb -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Time -com.google.android.material.R$animator: int linear_indeterminate_line1_tail_interpolator -com.bumptech.glide.Registry$MissingComponentException -android.didikee.donate.R$attr: int actionBarPopupTheme -wangdaye.com.geometricweather.db.entities.DailyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_DailyEntityListQuery -cyanogenmod.app.Profile$ProfileTrigger$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String pubTime -okhttp3.internal.http.BridgeInterceptor: java.lang.String cookieHeader(java.util.List) -android.didikee.donate.R$attr: int switchPadding -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -okhttp3.CacheControl$Builder: boolean noTransform -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindSpeed(java.lang.Float) -androidx.lifecycle.Lifecycling$1: Lifecycling$1(androidx.lifecycle.LifecycleEventObserver) -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: long timeout -com.google.android.material.circularreveal.CircularRevealLinearLayout: CircularRevealLinearLayout(android.content.Context,android.util.AttributeSet) -android.support.v4.os.ResultReceiver$1: java.lang.Object[] newArray(int) -androidx.activity.R$styleable: int GradientColor_android_centerColor -okhttp3.RealCall$1 -androidx.appcompat.R$id: int accessibility_custom_action_9 -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void emit() -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.Observer downstream -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour PastHour -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.query.QueryBuilder queryBuilder(java.lang.Class) -com.jaredrummler.android.colorpicker.R$color: int primary_dark_material_light -io.reactivex.internal.observers.DeferredScalarDisposable: io.reactivex.Observer downstream -android.didikee.donate.R$drawable: int abc_seekbar_thumb_material -wangdaye.com.geometricweather.R$styleable: int ActionBar_height -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogCenterButtons -okhttp3.Cache$Entry: java.util.List readCertificateList(okio.BufferedSource) -wangdaye.com.geometricweather.common.basic.models.weather.Weather: Weather(wangdaye.com.geometricweather.common.basic.models.weather.Base,wangdaye.com.geometricweather.common.basic.models.weather.Current,wangdaye.com.geometricweather.common.basic.models.weather.History,java.util.List,java.util.List,java.util.List,java.util.List) -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_orientation -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetBottom -wangdaye.com.geometricweather.R$styleable: int Variant_region_widthLessThan -com.bumptech.glide.integration.okhttp.R$dimen: int notification_top_pad -okhttp3.internal.proxy.NullProxySelector: void connectFailed(java.net.URI,java.net.SocketAddress,java.io.IOException) -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIcon(android.graphics.drawable.Drawable) -androidx.appcompat.R$attr: int editTextBackground -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog -cyanogenmod.externalviews.KeyguardExternalView$8: cyanogenmod.externalviews.KeyguardExternalView this$0 -com.google.android.material.R$layout: int material_clock_display_divider -com.xw.repo.bubbleseekbar.R$drawable: int notification_template_icon_bg -android.didikee.donate.R$attr: int titleMargins -androidx.transition.R$styleable: int GradientColor_android_startColor -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextStyle -androidx.constraintlayout.widget.R$anim: int abc_popup_exit -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.background.polling.basic.Hilt_AwakeForegroundUpdateService: Hilt_AwakeForegroundUpdateService() -com.turingtechnologies.materialscrollbar.R$style: int CardView_Dark -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: int requestFusion(int) -androidx.appcompat.R$attr: int track -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onKeyguardDismissed() -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long COMPLETE_MASK -cyanogenmod.weather.WeatherLocation: java.lang.String getCity() -com.google.android.material.internal.CheckableImageButton$SavedState -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: boolean requestDismissAndStartActivity(android.content.Intent) -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial() -androidx.vectordrawable.R$dimen: int notification_content_margin_start -androidx.preference.R$dimen: int abc_search_view_preferred_height -com.amap.api.fence.GeoFence: com.amap.api.fence.PoiItem getPoiItem() -cyanogenmod.providers.DataUsageContract: java.lang.String BYTES -okio.ForwardingSink: okio.Sink delegate() -com.google.android.material.R$attr: int expandedTitleTextAppearance -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_saturation -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus -wangdaye.com.geometricweather.R$attr: int transitionShapeAppearance -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WetBulbTemperature -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_begin -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Listener listener -com.google.android.material.R$dimen: int abc_select_dialog_padding_start_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getZh_TW() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_lineHeight -com.google.android.material.R$attr: int tabMaxWidth -wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_dark -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWeatherSource() -wangdaye.com.geometricweather.R$styleable: int Layout_minHeight -com.google.android.material.R$string: int abc_toolbar_collapse_description -okhttp3.logging.HttpLoggingInterceptor$Logger -androidx.lifecycle.extensions.R$drawable: R$drawable() -android.didikee.donate.R$styleable: int AppCompatTheme_activityChooserViewStyle -wangdaye.com.geometricweather.db.entities.AlertEntity: void setDate(java.util.Date) -wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_checked_circle -cyanogenmod.power.PerformanceManager: int PROFILE_HIGH_PERFORMANCE -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken STRING -androidx.vectordrawable.R$id: int line1 -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonStyleSmall -cyanogenmod.power.PerformanceManagerInternal -com.amap.api.location.AMapLocation: boolean isFixLastLocation() -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_title_material -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: AccuDailyResult$DailyForecasts$Night$Rain() -com.jaredrummler.android.colorpicker.R$id: int notification_main_column_container -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_default -com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_simple_overlay_action_mode -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWeatherText() -wangdaye.com.geometricweather.R$styleable: int Insets_paddingLeftSystemWindowInsets -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) -com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderText(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.preference.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: AccuCurrentResult$Precip1hr$Metric() -com.google.android.material.R$attr: int suffixText -io.reactivex.Observable: io.reactivex.Observable take(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$styleable: int RoundCornerTransition_radius_to -io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.SingleSource) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.Observer downstream -okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallbackPossible(javax.net.ssl.SSLSocket) -com.google.android.material.R$styleable: int LinearLayoutCompat_android_baselineAligned -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent -wangdaye.com.geometricweather.R$styleable: int Layout_maxWidth -okhttp3.MultipartBody: MultipartBody(okio.ByteString,okhttp3.MediaType,java.util.List) -okio.Buffer: okio.BufferedSink write(byte[],int,int) -wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay_v14_Material -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State valueOf(java.lang.String) -cyanogenmod.themes.ThemeManager$1$2: cyanogenmod.themes.ThemeManager$1 this$1 -com.google.gson.internal.LazilyParsedNumber: boolean equals(java.lang.Object) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_visibility -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_viewInflaterClass -cyanogenmod.power.IPerformanceManager: boolean getProfileHasAppProfiles(int) -androidx.vectordrawable.R$id: int accessibility_custom_action_21 -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionModeOverlay -okio.Okio$4: Okio$4(java.net.Socket) -androidx.lifecycle.extensions.R$attr: R$attr() -androidx.appcompat.R$style: int Widget_AppCompat_ListPopupWindow -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.LocationEntityDao locationEntityDao -androidx.hilt.R$id: int accessibility_custom_action_26 -androidx.fragment.R$id: int accessibility_custom_action_8 -android.didikee.donate.R$attr: int state_above_anchor -android.didikee.donate.R$styleable: int ActionBar_titleTextStyle -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -com.google.android.material.R$attr: int layout_anchor -com.google.android.material.bottomappbar.BottomAppBar: float getFabCradleRoundedCornerRadius() -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function,boolean,int) -androidx.appcompat.resources.R$styleable: int ColorStateListItem_alpha -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -androidx.core.R$attr -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_Toolbar -retrofit2.Retrofit$Builder: Retrofit$Builder(retrofit2.Platform) -retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: retrofit2.OkHttpCall$ExceptionCatchingResponseBody this$0 -androidx.lifecycle.reactivestreams.R -com.google.android.material.R$styleable: int FontFamilyFont_android_font -androidx.work.R$attr: int fontWeight -com.google.android.material.R$style: int EmptyTheme -wangdaye.com.geometricweather.R$layout: int cpv_color_item_circle -com.google.android.material.textfield.MaterialAutoCompleteTextView -androidx.appcompat.R$id: int search_button -com.google.gson.internal.LinkedTreeMap: boolean containsKey(java.lang.Object) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windDirection -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_29 -cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weather.RequestInfo mInfo -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -okhttp3.RealCall$AsyncCall: okhttp3.Callback responseCallback -cyanogenmod.weather.WeatherLocation: java.lang.String access$202(cyanogenmod.weather.WeatherLocation,java.lang.String) -com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_hovered_focused -androidx.appcompat.R$attr: int queryHint -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -androidx.transition.R$dimen: int notification_right_icon_size -com.xw.repo.bubbleseekbar.R$attr: int customNavigationLayout -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_searchHintIcon -com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_swipe_escape_max_velocity -androidx.customview.R$attr: R$attr() -james.adaptiveicon.R$style: int Base_Animation_AppCompat_DropDownUp -androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy KEEP -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_EditText -okhttp3.RequestBody$2: int val$byteCount -com.google.android.material.R$id: int date_picker_actions -james.adaptiveicon.R$style: int Widget_AppCompat_Button -com.jaredrummler.android.colorpicker.R$drawable: int abc_vector_test -wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_width_minor -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherText(java.lang.String) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SearchView_ActionBar -androidx.preference.R$dimen: int abc_text_size_button_material -androidx.appcompat.R$styleable: int Toolbar_maxButtonHeight -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_NOTIF_COUNT -androidx.hilt.work.R$style -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingStart -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constrainedWidth -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldLevel -wangdaye.com.geometricweather.R$string: int material_slider_range_start -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_THEME_COMPONENTS -wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitlePanelStyle -cyanogenmod.app.CustomTile$Builder: java.lang.String mContentDescription -com.google.android.material.R$attr: int seekBarStyle -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_type -androidx.appcompat.R$attr: int listDividerAlertDialog -retrofit2.Retrofit$1: retrofit2.Retrofit this$0 -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconPadding -james.adaptiveicon.R$styleable: int AppCompatTheme_listDividerAlertDialog -androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display2 -com.turingtechnologies.materialscrollbar.R$attr: int foregroundInsidePadding -androidx.preference.R$styleable: int AppCompatTheme_buttonBarStyle -okhttp3.Cache$1: Cache$1(okhttp3.Cache) -cyanogenmod.app.Profile$ProfileTrigger$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_normal -okhttp3.OkHttpClient$Builder: java.util.List interceptors() -wangdaye.com.geometricweather.settings.dialogs.ProvidersPreviewerDialog: ProvidersPreviewerDialog() -com.amap.api.location.AMapLocation: java.lang.String getPoiName() -okhttp3.Handshake: java.util.List localCertificates() -androidx.work.R$styleable: int GradientColor_android_endX -androidx.loader.R$dimen: int compat_control_corner_material -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.lang.String getPubTime() -com.google.android.material.R$style: int Base_Widget_AppCompat_Toolbar -androidx.core.R$id: int async -com.jaredrummler.android.colorpicker.R$style: int Base_AlertDialog_AppCompat -wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_focused_alpha -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -com.google.android.material.appbar.AppBarLayout$Behavior: AppBarLayout$Behavior() -retrofit2.Utils$ParameterizedTypeImpl: int hashCode() -com.turingtechnologies.materialscrollbar.R$attr: int homeAsUpIndicator -wangdaye.com.geometricweather.R$attr: int backgroundInsetStart -james.adaptiveicon.R$dimen: int tooltip_corner_radius -com.google.android.material.R$id -com.google.android.material.R$styleable: int Layout_layout_constraintRight_creator -androidx.vectordrawable.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark_normal -com.jaredrummler.android.colorpicker.R$attr: int titleMarginBottom -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_bottom -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_curveFit -androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_text_padding_right -cyanogenmod.providers.CMSettings$System: java.lang.String USE_EDGE_SERVICE_FOR_GESTURES -androidx.appcompat.resources.R$layout: int notification_action_tombstone -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator REVERSE_LOOKUP_PROVIDER_VALIDATOR -com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$drawable: int notification_action_background -com.jaredrummler.android.colorpicker.R$id: int parentPanel -com.amap.api.location.AMapLocation: double b(com.amap.api.location.AMapLocation,double) -androidx.recyclerview.R$id: int text2 -androidx.recyclerview.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.R$styleable: int Constraint_android_id -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_subMenuArrow -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.Lifecycle getLifecycle() -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetEnd -androidx.customview.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.R$integer: int mtrl_card_anim_delay_ms -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerColor -james.adaptiveicon.R$attr: int spinBars -android.didikee.donate.R$color: int bright_foreground_material_light -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_background_transition_holo_light -androidx.activity.R$id: int icon_group -androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentX -okhttp3.Headers: int hashCode() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean) -android.didikee.donate.R$styleable: int AppCompatTheme_spinnerStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: AccuDailyResult$DailyForecasts$Day$Ice() -cyanogenmod.weather.RequestInfo$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Province -com.google.android.material.chip.Chip: com.google.android.material.resources.TextAppearance getTextAppearance() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8 -android.didikee.donate.R$dimen: int notification_large_icon_width -androidx.preference.R$styleable: int PopupWindow_android_popupAnimationStyle -okhttp3.internal.cache.CacheStrategy: CacheStrategy(okhttp3.Request,okhttp3.Response) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onError(java.lang.Throwable) -android.didikee.donate.R$attr: int track -androidx.appcompat.widget.AppCompatCheckBox: void setButtonDrawable(android.graphics.drawable.Drawable) -okhttp3.internal.http2.Http2Stream$FramingSink: okio.Timeout timeout() -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setCity(java.lang.String) -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.observers.InnerQueuedObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$attr: int buttonBarNegativeButtonStyle -android.didikee.donate.R$style: int Widget_AppCompat_Light_ListView_DropDown -androidx.preference.R$color: int abc_btn_colored_text_material -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItem -com.amap.api.fence.GeoFence: int ERROR_CODE_FAILURE_CONNECTION -wangdaye.com.geometricweather.R$styleable: int MaterialButton_strokeColor -cyanogenmod.themes.IThemeService$Stub$Proxy: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dropDownListViewStyle -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTheme -com.amap.api.location.AMapLocation: void setNumber(java.lang.String) -io.reactivex.Observable: io.reactivex.Single contains(java.lang.Object) -androidx.swiperefreshlayout.R$id: int right_side -james.adaptiveicon.R$color: int material_grey_100 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX -wangdaye.com.geometricweather.R$id: int textinput_prefix_text -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherText(java.lang.String) -james.adaptiveicon.R$id: int contentPanel -android.didikee.donate.R$styleable: int SearchView_iconifiedByDefault -com.turingtechnologies.materialscrollbar.R$styleable: int RecycleListView_paddingBottomNoButtons -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.Observer downstream -okhttp3.internal.platform.AndroidPlatform: void log(int,java.lang.String,java.lang.Throwable) -androidx.appcompat.R$string: int abc_activity_chooser_view_see_all -okio.GzipSource: byte FNAME -androidx.viewpager.widget.ViewPager: void setPageMargin(int) -androidx.work.R$styleable: int GradientColor_android_tileMode -androidx.constraintlayout.widget.R$styleable: int[] ConstraintSet -androidx.customview.R$dimen: int compat_button_inset_horizontal_material -androidx.appcompat.R$attr: int drawableEndCompat -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level[] $VALUES -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setDesc(java.lang.String) -androidx.fragment.app.Fragment$2 -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_checkable -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_showDelay -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(java.lang.Iterable,io.reactivex.functions.Function) -cyanogenmod.themes.ThemeManager$1$2: void run() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.util.Map groups -androidx.legacy.coreutils.R$styleable: int GradientColor_android_startX -retrofit2.ParameterHandler$Field: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int[] CoordinatorLayout_Layout -android.didikee.donate.R$styleable: int ActionBar_divider -com.google.android.material.R$styleable: int Constraint_layout_goneMarginLeft -androidx.preference.R$dimen: int hint_pressed_alpha_material_dark -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity: DayWeekWidgetConfigActivity() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int IceProbability -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property AqiIndex -com.google.android.material.R$attr: int layoutManager -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout -androidx.activity.R$styleable: int GradientColor_android_endX -androidx.preference.R$attr: int buttonTintMode -androidx.appcompat.R$styleable: int[] ViewBackgroundHelper -com.google.android.material.R$layout: int mtrl_calendar_month_navigation -androidx.hilt.lifecycle.R$drawable: int notification_tile_bg -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void lookupCity(cyanogenmod.weather.RequestInfo) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ProgressBar -com.google.android.material.R$dimen: int abc_text_size_display_1_material -james.adaptiveicon.R$attr: int itemPadding -com.amap.api.fence.GeoFence: void setCenter(com.amap.api.location.DPoint) -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean recover(java.io.IOException,okhttp3.internal.connection.StreamAllocation,boolean,okhttp3.Request) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver otherObserver -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeColor(int) -cyanogenmod.app.LiveLockScreenManager -com.google.android.gms.base.R$string: int common_google_play_services_enable_button -james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -androidx.preference.R$attr: int subtitleTextAppearance -wangdaye.com.geometricweather.R$attr: int motionProgress -com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_checkbox -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_commitIcon -com.jaredrummler.android.colorpicker.R$attr: int switchTextAppearance -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlNormal -androidx.preference.R$styleable: int AppCompatTextView_drawableTintMode -androidx.coordinatorlayout.R$integer: int status_bar_notification_info_maxnum -androidx.preference.R$style: int Widget_AppCompat_Spinner_DropDown -androidx.preference.R$style: int Base_DialogWindowTitle_AppCompat -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void dispose() -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents -james.adaptiveicon.R$styleable: int Spinner_android_popupBackground -com.jaredrummler.android.colorpicker.R$attr: int listDividerAlertDialog -james.adaptiveicon.R$attr: int colorPrimary -com.turingtechnologies.materialscrollbar.R$dimen: int notification_small_icon_size_as_large -androidx.constraintlayout.widget.R$attr: int buttonTintMode -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_orderInCategory -james.adaptiveicon.R$id: int add -com.google.android.material.textfield.TextInputLayout: void setErrorContentDescription(java.lang.CharSequence) -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree -com.amap.api.location.AMapLocation: void setCity(java.lang.String) -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_sun -androidx.loader.R$id: int italic -cyanogenmod.providers.CMSettings$System$3 -io.reactivex.exceptions.CompositeException: java.lang.String getMessage() -okhttp3.internal.http2.Http2Connection$5: void execute() -com.jaredrummler.android.colorpicker.R$attr: int editTextColor -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.google.android.material.R$color: int mtrl_outlined_icon_tint -androidx.legacy.coreutils.R$dimen: int notification_right_icon_size +androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context) +james.adaptiveicon.R$color: int switch_thumb_disabled_material_light +wangdaye.com.geometricweather.wallpaper.LiveWallpaperConfigActivity: LiveWallpaperConfigActivity() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onSucceed(java.lang.Object) +android.didikee.donate.R$drawable: int abc_textfield_search_activated_mtrl_alpha +androidx.constraintlayout.widget.R$attr: int spinnerDropDownItemStyle +wangdaye.com.geometricweather.R$attr: int max +androidx.appcompat.R$styleable: int ViewBackgroundHelper_backgroundTint +okhttp3.Request: java.lang.Object tag() +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric Metric +io.reactivex.internal.observers.InnerQueuedObserver: void setDone() +androidx.viewpager2.R$styleable: int FontFamilyFont_android_font +androidx.preference.R$styleable: int MenuItem_android_id +wangdaye.com.geometricweather.R$attr: int collapsedTitleTextAppearance +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight +com.jaredrummler.android.colorpicker.R$id: int tabMode +androidx.work.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: AccuLocationResult$TimeZone() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: double Value +com.google.android.material.R$styleable: int SwitchCompat_android_textOff +cyanogenmod.app.ICMTelephonyManager: boolean isDataConnectionEnabled() +james.adaptiveicon.R$id: int split_action_bar +android.didikee.donate.R$styleable: int Toolbar_android_minHeight +com.jaredrummler.android.colorpicker.R$drawable: int abc_spinner_mtrl_am_alpha +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityCreated(android.app.Activity,android.os.Bundle) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_creator +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService listenerExecutor +com.google.android.material.R$id: int material_timepicker_container +androidx.preference.R$styleable: int AppCompatTheme_listDividerAlertDialog +james.adaptiveicon.R$color: int abc_primary_text_material_light +wangdaye.com.geometricweather.R$string: int abc_searchview_description_voice +androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +androidx.preference.R$styleable: int DrawerArrowToggle_gapBetweenBars +androidx.lifecycle.ProcessLifecycleOwner: void dispatchPauseIfNeeded() +io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean isCancelled() +com.turingtechnologies.materialscrollbar.R$attr: int counterEnabled +androidx.lifecycle.ViewModelStores +androidx.preference.R$styleable: int RecyclerView_stackFromEnd +wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity +android.didikee.donate.R$styleable: int ActionMode_subtitleTextStyle +androidx.constraintlayout.widget.R$styleable: int MotionHelper_onHide +io.reactivex.Observable: io.reactivex.Observable throttleFirst(long,java.util.concurrent.TimeUnit) +androidx.appcompat.R$drawable: int abc_text_select_handle_right_mtrl_dark +okhttp3.internal.http2.Http2Reader: okio.BufferedSource source +com.google.android.material.R$style: int ThemeOverlay_AppCompat +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: int UnitType +wangdaye.com.geometricweather.R$attr: int insetForeground +androidx.constraintlayout.widget.R$attr: int displayOptions +androidx.loader.R$id: int actions +com.google.android.gms.location.DetectedActivity +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_0 +android.didikee.donate.R$drawable: int abc_scrubber_primary_mtrl_alpha +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +androidx.viewpager2.R$styleable: int GradientColor_android_endY +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: BlockingObservableIterable$BlockingObservableIterator(int) +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginBottom +androidx.appcompat.R$styleable: int AppCompatTheme_tooltipForegroundColor +okhttp3.OkHttpClient: okhttp3.ConnectionPool connectionPool() +james.adaptiveicon.R$styleable: int MenuItem_android_checkable +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_fontFamily +com.github.rahatarmanahmed.cpv.CircularProgressView: int animSteps +androidx.vectordrawable.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float o3 +com.google.android.material.R$dimen: int abc_dialog_fixed_width_minor +com.xw.repo.bubbleseekbar.R$id: int message +okhttp3.internal.http2.StreamResetException +androidx.cardview.widget.CardView: CardView(android.content.Context,android.util.AttributeSet) +okio.ByteString: void write(okio.Buffer) +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: long serialVersionUID +okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withWriteTimeout(int,java.util.concurrent.TimeUnit) +com.google.android.material.R$styleable: int ConstraintSet_android_layout_width +com.google.android.material.R$drawable: int abc_ic_ab_back_material +james.adaptiveicon.R$dimen: int highlight_alpha_material_light +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: java.util.Queue sources +com.google.android.material.R$attr: int autoSizeMinTextSize +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeight +com.google.android.material.R$attr: int actionBarTabBarStyle +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetTop +androidx.transition.R$id: int icon +androidx.lifecycle.extensions.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_default +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onNext(java.lang.Object) +androidx.preference.R$styleable: int Toolbar_titleMarginBottom +com.google.android.material.R$style: int Base_V26_Theme_AppCompat +wangdaye.com.geometricweather.R$string: int path_password_eye_mask_strike_through +com.jaredrummler.android.colorpicker.R$attr: int state_above_anchor +com.google.android.material.R$style: int TextAppearance_Design_Error +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Title +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_10 +com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_default_box_stroke_color +okio.AsyncTimeout$2: AsyncTimeout$2(okio.AsyncTimeout,okio.Source) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarWidgetTheme +com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: AccuCurrentResult$TemperatureSummary$Past24HourRange() +com.google.android.material.slider.Slider: int getTrackHeight() +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginEnd() +com.google.android.material.slider.BaseSlider: void removeOnSliderTouchListener(com.google.android.material.slider.BaseOnSliderTouchListener) +androidx.preference.R$drawable: int notify_panel_notification_icon_bg +com.jaredrummler.android.colorpicker.R$style: int Platform_V25_AppCompat +com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_android_popupBackground +android.didikee.donate.R$id: int custom +com.turingtechnologies.materialscrollbar.R$anim: R$anim() +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: CircularRevealCoordinatorLayout(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$attr: int listDividerAlertDialog +wangdaye.com.geometricweather.R$attr: int layout_constraintCircle +wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_day +wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_large_component +okhttp3.internal.ws.WebSocketProtocol: java.lang.String acceptHeader(java.lang.String) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property So2 +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void complete(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$drawable: int abc_ic_search_api_material +androidx.appcompat.widget.Toolbar: void setTitleMarginBottom(int) +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_PopupMenu +wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundODialog +com.jaredrummler.android.colorpicker.R$string: int abc_menu_alt_shortcut_label okhttp3.Cookie: boolean matches(okhttp3.HttpUrl) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul6H -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getWeatherSource() -wangdaye.com.geometricweather.R$attr: int region_heightLessThan -android.didikee.donate.R$attr: int subtitleTextAppearance -cyanogenmod.hardware.CMHardwareManager: int getDisplayGammaCalibrationMin() -androidx.recyclerview.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$id: int floating -com.amap.api.location.AMapLocation: void setErrorCode(int) -com.google.android.material.R$styleable: int[] StateListDrawableItem -okhttp3.internal.tls.OkHostnameVerifier: boolean verifyIpAddress(java.lang.String,java.security.cert.X509Certificate) -wangdaye.com.geometricweather.R$attr: int layout_constraintRight_toLeftOf -james.adaptiveicon.R$attr: int iconifiedByDefault -okhttp3.internal.http.RealInterceptorChain: int writeTimeout -okhttp3.Address: boolean equalsNonHost(okhttp3.Address) -cyanogenmod.providers.CMSettings$System: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -android.didikee.donate.R$styleable: int[] ActionMode -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -com.google.android.material.R$string: int abc_shareactionprovider_share_with -com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage ZH -wangdaye.com.geometricweather.R$id: int event -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSo2() -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getTotalPrecipitationProbability() -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Title -com.google.android.material.R$layout: int mtrl_calendar_months -wangdaye.com.geometricweather.R$attr: int editTextColor -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_minHeight -wangdaye.com.geometricweather.R$id: int center_vertical -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Line2 -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_LOCATION -wangdaye.com.geometricweather.R$id: int item_icon_provider_title -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_CBC_SHA -androidx.appcompat.R$attr: int drawableLeftCompat -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColorSchemeColor(int) -android.didikee.donate.R$styleable: int SwitchCompat_switchMinWidth -com.google.android.material.R$layout: int abc_list_menu_item_radio -wangdaye.com.geometricweather.R$attr: int shapeAppearanceMediumComponent -wangdaye.com.geometricweather.R$attr: int layout_constraintBaseline_creator -wangdaye.com.geometricweather.R$id: int default_activity_button -com.xw.repo.bubbleseekbar.R$attr: int layout -com.google.android.material.R$drawable: int abc_ic_star_half_black_16dp -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getCounterTextColor() -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COL_VALUE -cyanogenmod.app.CustomTile$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Time -wangdaye.com.geometricweather.R$integer: int cpv_default_anim_sync_duration -com.google.android.material.R$attr: int behavior_autoHide -okhttp3.HttpUrl: java.util.Set queryParameterNames() -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: long updatedOn -androidx.constraintlayout.widget.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay -com.google.android.material.bottomnavigation.BottomNavigationView: android.view.Menu getMenu() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult -com.xw.repo.bubbleseekbar.R$string: int abc_action_mode_done -okhttp3.internal.cache.CacheInterceptor: CacheInterceptor(okhttp3.internal.cache.InternalCache) -android.didikee.donate.R$color: int primary_text_disabled_material_light -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer RIGHT_VALUE -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_chainStyle -cyanogenmod.app.ICMTelephonyManager: void setDataConnectionState(boolean) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setCo(java.lang.Float) -io.reactivex.Observable: java.lang.Iterable blockingLatest() -retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler[] parameterHandlers -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getUvLevel() -com.google.android.gms.base.R$id: int light -com.google.android.material.textfield.TextInputLayout: void setPlaceholderText(java.lang.CharSequence) -androidx.constraintlayout.motion.widget.MotionLayout: float getProgress() -androidx.lifecycle.DefaultLifecycleObserver: void onResume(androidx.lifecycle.LifecycleOwner) -androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyleSmall -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: int getRootAlpha() -com.turingtechnologies.materialscrollbar.R$drawable: int indicator -androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -androidx.constraintlayout.widget.R$styleable: int Layout_maxWidth -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,long) -retrofit2.Retrofit: java.util.List callAdapterFactories() -androidx.core.R$attr: int fontProviderFetchStrategy -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked -com.xw.repo.bubbleseekbar.R$attr: int seekBarStyle -com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_android_button -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -okhttp3.internal.http.RealResponseBody: java.lang.String contentTypeString -com.google.android.material.R$styleable: int ActionMode_closeItemLayout -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -wangdaye.com.geometricweather.R$layout: int widget_day_mini -com.google.android.material.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfSnow -androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStoreOwner) -wangdaye.com.geometricweather.R$id: int parent -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: int getMarginBottom() -wangdaye.com.geometricweather.R$string: int feels_like -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginTop -androidx.legacy.coreutils.R$styleable: int[] ColorStateListItem -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context) -cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_INTERNALLY_ENABLED -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_SECURE_SETTINGS -wangdaye.com.geometricweather.R$attr: int materialTimePickerTheme -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_IME_SWITCHER_VALIDATOR -androidx.appcompat.widget.AppCompatTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -cyanogenmod.externalviews.ExternalViewProperties: android.view.View mDecorView -com.jaredrummler.android.colorpicker.R$attr: int reverseLayout -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean setDisposable(io.reactivex.disposables.Disposable,int) -androidx.constraintlayout.helper.widget.Flow: void setFirstHorizontalBias(float) -com.google.android.material.R$styleable: int MaterialRadioButton_useMaterialThemeColors -okhttp3.internal.http2.PushObserver: boolean onData(int,okio.BufferedSource,int,boolean) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindDegree -androidx.lifecycle.Transformations$3 -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_precise_anchor_threshold -wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogTitle -androidx.constraintlayout.widget.R$string: int abc_menu_sym_shortcut_label -okhttp3.internal.tls.BasicTrustRootIndex: java.util.Map subjectToCaCerts -retrofit2.converter.gson.GsonConverterFactory: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) -okhttp3.internal.platform.OptionalMethod: java.lang.String methodName -android.didikee.donate.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -retrofit2.DefaultCallAdapterFactory$1: java.lang.Object adapt(retrofit2.Call) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean isDisposed() -androidx.preference.R$styleable: int AppCompatTheme_dialogTheme -com.github.rahatarmanahmed.cpv.CircularProgressView: int color -cyanogenmod.app.Profile: boolean mDirty -com.google.android.material.R$attr: int tabTextColor -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabRippleColor -wangdaye.com.geometricweather.R$string: int key_dark_mode -androidx.constraintlayout.widget.R$attr: int autoSizeTextType -wangdaye.com.geometricweather.R$dimen: int material_emphasis_medium -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String YEAR -wangdaye.com.geometricweather.db.entities.DailyEntity: void setPm10(java.lang.Float) -cyanogenmod.themes.ThemeChangeRequest$Builder: void buildChangeRequestFromThemeConfig(android.content.res.ThemeConfig) -androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog -com.xw.repo.bubbleseekbar.R$attr: int layout_anchor +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +com.google.android.material.R$dimen: int abc_dropdownitem_text_padding_left +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: io.reactivex.Observer downstream +androidx.preference.R$style: int PreferenceThemeOverlay_v14 +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign +androidx.hilt.R$styleable: int GradientColorItem_android_offset +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: boolean val$showing +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer rainHazard3h +com.google.android.material.circularreveal.CircularRevealFrameLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +android.didikee.donate.R$color: int material_deep_teal_500 +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent SOUND +james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_toRightOf +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: java.lang.String Unit +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_bias +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop +androidx.activity.R$id: int icon_group +com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationZ(float) +cyanogenmod.profiles.AirplaneModeSettings$1: cyanogenmod.profiles.AirplaneModeSettings createFromParcel(android.os.Parcel) +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: long serialVersionUID +androidx.constraintlayout.widget.R$id: int tag_accessibility_actions +androidx.constraintlayout.widget.R$attr: int motionInterpolator +com.google.android.material.R$dimen: int mtrl_card_elevation +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: boolean IsDayTime +io.reactivex.Observable: io.reactivex.Observable timer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +cyanogenmod.providers.CMSettings$System: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) +androidx.appcompat.resources.R$id: int accessibility_custom_action_6 +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer degreeDayTemperature +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +androidx.core.R$id: int accessibility_custom_action_4 +com.google.android.material.R$styleable: int MaterialCardView_android_checkable +wangdaye.com.geometricweather.R$string: int settings_title_precipitation_unit +androidx.constraintlayout.widget.R$dimen: int hint_alpha_material_dark +com.google.android.material.R$color: int design_default_color_on_background +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +wangdaye.com.geometricweather.R$layout: int widget_week_3 +io.reactivex.Observable: io.reactivex.observers.TestObserver test(boolean) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_min +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastHorizontalBias +androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModelProvider$NewInstanceFactory sInstance +com.google.android.material.R$attr: int textAppearanceHeadline3 +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long,boolean,int) +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.internal.disposables.SequentialDisposable sd +android.didikee.donate.R$style: int TextAppearance_AppCompat_Display4 +androidx.preference.R$style: int Widget_AppCompat_ProgressBar_Horizontal +wangdaye.com.geometricweather.R$drawable: int design_bottom_navigation_item_background +okio.BufferedSink: okio.BufferedSink writeHexadecimalUnsignedLong(long) +com.google.android.material.appbar.CollapsingToolbarLayout: long getScrimAnimationDuration() +androidx.preference.R$dimen: int abc_seekbar_track_progress_height_material +wangdaye.com.geometricweather.R$layout: int abc_select_dialog_material +okio.ForwardingSink: ForwardingSink(okio.Sink) +androidx.preference.R$styleable: int AppCompatTheme_panelBackground +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour valueOf(java.lang.String) +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) +androidx.coordinatorlayout.R$styleable: int GradientColor_android_endX +com.google.android.material.R$style: int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_26 +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) +android.didikee.donate.R$attr: int multiChoiceItemLayout +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_9 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature +androidx.preference.R$styleable: int SwitchPreference_android_disableDependentsState +okhttp3.internal.Util$2 +wangdaye.com.geometricweather.R$drawable: int notif_temp_1 +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setEnableAnim(boolean) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence +androidx.dynamicanimation.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$attr: int singleLineTitle +android.didikee.donate.R$attr: int textAllCaps +cyanogenmod.themes.ThemeManager$1: void onProgress(int) +com.google.android.material.R$color: int primary_text_disabled_material_dark +androidx.appcompat.R$attr: int spinnerDropDownItemStyle +com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_creator +okhttp3.internal.connection.RouteSelector: okhttp3.EventListener eventListener +io.reactivex.internal.disposables.SequentialDisposable: void dispose() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.R$id: int dialog_background_location_summary +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +android.didikee.donate.R$string: int abc_search_hint +com.google.android.material.datepicker.MaterialDatePicker: MaterialDatePicker() +com.google.android.material.floatingactionbutton.FloatingActionButton: void setShadowPaddingEnabled(boolean) +androidx.constraintlayout.widget.R$attr: int layout_goneMarginBottom +androidx.appcompat.R$styleable: int AppCompatTheme_dialogTheme +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconEnabled +com.google.android.material.R$attr: int transitionEasing +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +androidx.preference.R$styleable: int ActionMode_height +androidx.preference.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.amap.api.location.AMapLocation: java.lang.String getAoiName() +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status valueOf(java.lang.String) +com.google.android.material.R$attr: int actionModePasteDrawable +com.google.android.material.R$attr: int homeAsUpIndicator +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_doneBtn +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay valueOf(java.lang.String) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.util.AtomicThrowable errors +com.google.android.material.R$color: int abc_decor_view_status_guard_light okhttp3.Address: okhttp3.HttpUrl url() -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectionPool(okhttp3.ConnectionPool) -com.amap.api.fence.GeoFence: GeoFence() -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_keyline -okio.Buffer: okio.Timeout timeout() -james.adaptiveicon.R$layout: int abc_list_menu_item_icon -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: MfWarningsResult$WarningAdvice() -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light_normal_background -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxBackgroundMode -android.didikee.donate.R$attr: int windowActionBar -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Co -com.google.android.material.R$dimen: int mtrl_alert_dialog_picker_background_inset -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_max -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: KeyguardExternalViewProviderService$Provider(cyanogenmod.externalviews.KeyguardExternalViewProviderService,android.os.Bundle) -com.google.android.material.R$styleable: int Constraint_flow_horizontalGap -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicBoolean cancelled -com.google.android.material.card.MaterialCardView: android.graphics.drawable.Drawable getCheckedIcon() -com.google.android.material.R$attr: int badgeGravity -com.google.android.material.R$id: int start -androidx.viewpager.R$color: int notification_icon_bg_color -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COL_KEY -androidx.activity.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.R$dimen: int abc_alert_dialog_button_bar_height -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerId -okhttp3.internal.http2.Http2Connection$Builder: Http2Connection$Builder(boolean) -com.google.android.material.R$styleable: int[] CustomAttribute -com.google.android.material.R$id: int item_touch_helper_previous_elevation -com.turingtechnologies.materialscrollbar.R$styleable: int[] TextInputLayout -retrofit2.Retrofit$1: java.lang.Object invoke(java.lang.Object,java.lang.reflect.Method,java.lang.Object[]) -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: float unitFactor -com.google.android.material.R$style: int Platform_Widget_AppCompat_Spinner -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Borderless -com.jaredrummler.android.colorpicker.R$attr: int actionBarWidgetTheme -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getUrl() -com.google.android.material.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha -james.adaptiveicon.R$styleable: int ActionBar_titleTextStyle -com.google.android.material.R$dimen: int mtrl_calendar_header_height_fullscreen -cyanogenmod.app.PartnerInterface: void shutdownDevice() -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.common.basic.models.weather.Alert: long time -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_GCM_SHA384 -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Headline -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_subMenuArrow -androidx.lifecycle.extensions.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.R$attr: int indicatorColors -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_light -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetLeft -androidx.constraintlayout.widget.R$dimen: int compat_notification_large_icon_max_height -cyanogenmod.profiles.BrightnessSettings: void setOverride(boolean) -okhttp3.internal.cache2.Relay$RelaySource: void close() -wangdaye.com.geometricweather.R$attr: int msb_barColor -cyanogenmod.hardware.ThermalListenerCallback$State: java.lang.String toString(int) -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherSource(java.lang.String) -com.google.android.material.R$styleable: int AppCompatTextView_drawableBottomCompat -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onNext(java.lang.Object) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Borderless -androidx.hilt.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.db.entities.DailyEntityDao: DailyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: CaiYunMainlyResult$AlertsBean$ImagesBean() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setSunSetDate(java.util.Date) -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getApparentTemperature() -wangdaye.com.geometricweather.R$attr: int circularInset -okhttp3.internal.Util: byte[] EMPTY_BYTE_ARRAY -cyanogenmod.providers.CMSettings$System: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) -com.turingtechnologies.materialscrollbar.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int Icon -io.reactivex.internal.disposables.DisposableHelper: boolean isDisposed(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$id: int search_src_text -com.jaredrummler.android.colorpicker.R$attr: int summaryOff -androidx.preference.R$style: int Base_Widget_AppCompat_ImageButton -com.turingtechnologies.materialscrollbar.R$id: int default_activity_button -wangdaye.com.geometricweather.R$styleable: int ListPreference_android_entryValues -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getPressure() -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: ObservableReplay$SizeAndTimeBoundReplayBuffer(int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.background.polling.work.worker.NormalUpdateWorker: NormalUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) -okio.ByteString: okio.ByteString hmacSha1(okio.ByteString) -okhttp3.OkHttpClient$Builder: java.net.ProxySelector proxySelector -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginEnd -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_default -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver -wangdaye.com.geometricweather.R$attr: int collapsedSize -com.google.android.material.R$attr: int behavior_peekHeight -cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: WeatherContract$WeatherColumns$TempUnit() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void dispose() -wangdaye.com.geometricweather.R$layout: int container_snackbar_card -androidx.vectordrawable.animated.R$string -wangdaye.com.geometricweather.R$layout: int preference_information -com.google.android.material.R$string: int mtrl_picker_toggle_to_calendar_input_mode -com.google.android.material.R$anim: int abc_slide_out_top -wangdaye.com.geometricweather.R$attr: int bsb_rtl -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_icon -wangdaye.com.geometricweather.R$dimen: int clock_face_margin_start -com.google.android.material.R$dimen: int mtrl_calendar_header_selection_line_height -okhttp3.Request: okhttp3.Headers headers -james.adaptiveicon.R$attr: int splitTrack -androidx.activity.R$id: R$id() -cyanogenmod.profiles.StreamSettings: int describeContents() -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getCurrentDisplayMode -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: java.lang.Object leaveTransform(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -com.google.android.material.R$attr: int layout_constraintWidth_max -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String country -androidx.lifecycle.SavedStateHandleController$1: androidx.savedstate.SavedStateRegistry val$registry -wangdaye.com.geometricweather.R$dimen: int notification_content_margin_start -com.google.android.material.R$styleable: int[] FlowLayout -androidx.appcompat.widget.ActivityChooserView$InnerLayout: ActivityChooserView$InnerLayout(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_backgroundSplit -wangdaye.com.geometricweather.R$styleable: int PopupWindow_android_popupBackground -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset -androidx.drawerlayout.R$drawable -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Writer writer -com.jaredrummler.android.colorpicker.R$attr: int titleMarginTop -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListMenuView -androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackgroundColor(int) -wangdaye.com.geometricweather.R$style: int PreferenceFragment +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void cancelLiveLockScreen(java.lang.String,int,int) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void access$700(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +com.google.android.material.R$dimen: int mtrl_btn_disabled_elevation +cyanogenmod.platform.R$array +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: long index +androidx.core.R$styleable: int ColorStateListItem_android_color +androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context) +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String grassDescription +okhttp3.Response: Response(okhttp3.Response$Builder) +com.google.gson.FieldNamingPolicy +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableEnd +com.google.android.material.R$styleable: int PropertySet_motionProgress +com.google.android.material.R$attr: int backgroundTintMode +androidx.drawerlayout.R$color: int notification_icon_bg_color +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startColor +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_maxButtonHeight +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: AccuLocationResult$GeoPosition$Elevation$Imperial() +wangdaye.com.geometricweather.R$anim: int abc_slide_out_top +androidx.constraintlayout.widget.R$color: R$color() +androidx.appcompat.R$styleable: int MenuView_android_itemIconDisabledAlpha +com.google.android.material.R$dimen: int mtrl_btn_text_btn_padding_left +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getZh_CN() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_138 +com.jaredrummler.android.colorpicker.R$id: int gridView +okhttp3.internal.http2.Http2Codec: void flushRequest() +androidx.preference.R$dimen: int abc_search_view_preferred_width +androidx.loader.R$id: int tag_unhandled_key_listeners +okhttp3.internal.http2.PushObserver +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitation(java.lang.Float) +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_textLocale +wangdaye.com.geometricweather.R$attr: int msb_textColor +androidx.vectordrawable.animated.R$dimen: int notification_large_icon_width +androidx.drawerlayout.R$dimen: int notification_main_column_padding_top +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long COMPLETE_MASK +androidx.lifecycle.MediatorLiveData +wangdaye.com.geometricweather.R$attr: int inverse +com.google.android.material.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginEnd +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable +androidx.hilt.lifecycle.R$layout: int notification_template_part_chronometer +androidx.appcompat.widget.LinearLayoutCompat: void setWeightSum(float) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +com.xw.repo.bubbleseekbar.R$styleable: int[] GradientColorItem +androidx.legacy.coreutils.R$drawable: int notification_bg +okhttp3.Route: int hashCode() +androidx.appcompat.resources.R$styleable: int GradientColorItem_android_offset +androidx.constraintlayout.widget.R$color: int primary_text_default_material_light +com.xw.repo.bubbleseekbar.R$dimen: int abc_control_padding_material +wangdaye.com.geometricweather.R$attr: int actionBarDivider +com.google.android.material.R$anim: int design_bottom_sheet_slide_in +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeFillColor +com.jaredrummler.android.colorpicker.R$attr: int autoSizeMinTextSize +io.reactivex.internal.observers.BasicIntQueueDisposable: boolean offer(java.lang.Object) +okhttp3.internal.platform.AndroidPlatform: void log(int,java.lang.String,java.lang.Throwable) +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State DESTROYED +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: ObservableUsing$UsingObserver(io.reactivex.Observer,java.lang.Object,io.reactivex.functions.Consumer,boolean) +com.google.android.gms.base.R$drawable: int common_full_open_on_phone +androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$array: int duration_unit_voices +androidx.appcompat.R$attr: int expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric +androidx.constraintlayout.widget.R$color: int ripple_material_dark +androidx.lifecycle.extensions.R$color: R$color() +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: boolean cancelled +com.google.android.material.R$style: int Widget_AppCompat_ActionBar_Solid +io.reactivex.Observable: io.reactivex.Maybe elementAt(long) +androidx.appcompat.resources.R$id: int text2 +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low_normal +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isBody +wangdaye.com.geometricweather.R$string: int cpv_custom +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback,int) +com.google.android.material.R$styleable: int ColorStateListItem_alpha +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_margin +com.google.android.material.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +okhttp3.internal.http2.Http2Codec: void writeRequestHeaders(okhttp3.Request) +cyanogenmod.hardware.DisplayMode$1: DisplayMode$1() +android.support.v4.os.ResultReceiver: ResultReceiver(android.os.Handler) +cyanogenmod.externalviews.ExternalView: void setProviderComponent(android.content.ComponentName) +okhttp3.internal.http2.Http2Connection: void writeSynResetLater(int,okhttp3.internal.http2.ErrorCode) +androidx.constraintlayout.widget.R$attr: int alpha +com.jaredrummler.android.colorpicker.R$attr: int imageButtonStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String getTo() +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_rippleColor +androidx.viewpager2.R$id: int accessibility_custom_action_13 +com.google.android.material.R$attr: int listPreferredItemHeightSmall +okhttp3.Dispatcher: void finished(okhttp3.RealCall$AsyncCall) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: double Value +cyanogenmod.power.PerformanceManager: int getPowerProfile() +okhttp3.internal.ws.WebSocketWriter$FrameSink: void close() +cyanogenmod.externalviews.KeyguardExternalView$5: void run() +wangdaye.com.geometricweather.common.basic.models.weather.Hourly +androidx.dynamicanimation.R$id: int right_side +androidx.preference.R$drawable: int abc_seekbar_thumb_material +com.amap.api.fence.GeoFence: void setCenter(com.amap.api.location.DPoint) +com.google.android.material.bottomnavigation.BottomNavigationView: int getItemBackgroundResource() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onLockscreenSlideOffsetChanged(float) +com.google.android.material.R$attr: int textAppearanceButton +androidx.activity.R$attr: int fontProviderQuery +com.turingtechnologies.materialscrollbar.R$attr: int msb_autoHide +okio.RealBufferedSource: java.lang.String readString(long,java.nio.charset.Charset) +androidx.work.R$styleable: int ColorStateListItem_alpha +cyanogenmod.app.CMTelephonyManager +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: java.lang.String getWindArrow() +androidx.fragment.R$attr: int alpha +com.google.android.material.R$styleable: int Spinner_android_prompt +androidx.preference.R$layout: int abc_screen_simple_overlay_action_mode +wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text_size +com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreference_Material +cyanogenmod.hardware.CMHardwareManager: int FEATURE_AUTO_CONTRAST +cyanogenmod.hardware.CMHardwareManager: int FEATURE_TOUCH_HOVERING +com.google.android.material.R$attr: int materialCalendarMonth +com.google.android.material.R$attr: int state_collapsed +androidx.constraintlayout.widget.R$drawable: int abc_ic_ab_back_material +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_weight +james.adaptiveicon.R$style: int Widget_AppCompat_PopupMenu +com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_android_entryValues +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_PopupMenu +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_entries +io.reactivex.Observable: java.lang.Object to(io.reactivex.functions.Function) +io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicLong missedProduced +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation +cyanogenmod.providers.ThemesContract: java.lang.String AUTHORITY +okhttp3.OkHttpClient: javax.net.ssl.HostnameVerifier hostnameVerifier +com.google.android.material.R$styleable: int Chip_shapeAppearanceOverlay +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_scaleX +android.support.v4.os.ResultReceiver$1: java.lang.Object createFromParcel(android.os.Parcel) +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextAppearanceActive(int) +androidx.preference.R$drawable: int btn_radio_on_mtrl +com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusTopStart() +com.github.rahatarmanahmed.cpv.CircularProgressView$7: CircularProgressView$7(com.github.rahatarmanahmed.cpv.CircularProgressView) +james.adaptiveicon.R$drawable: int abc_scrubber_track_mtrl_alpha +androidx.appcompat.R$styleable: int AppCompatTheme_textColorSearchUrl +okhttp3.internal.http2.Http2Codec: void cancel() +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +com.google.android.material.R$styleable: int Slider_trackColorActive +wangdaye.com.geometricweather.R$id: int treeIcon +androidx.lifecycle.ProcessLifecycleOwner$1: ProcessLifecycleOwner$1(androidx.lifecycle.ProcessLifecycleOwner) +com.google.android.material.R$attr: int tabIndicatorGravity +wangdaye.com.geometricweather.R$dimen: int design_fab_elevation +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog +com.google.android.material.card.MaterialCardView: void setPreventCornerOverlap(boolean) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setApparentTemperature(java.lang.Integer) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean +com.xw.repo.bubbleseekbar.R$string: int abc_search_hint +wangdaye.com.geometricweather.db.entities.LocationEntity: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource getWeatherSource() +wangdaye.com.geometricweather.R$id: int search_button +com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_text_size +cyanogenmod.app.PartnerInterface: cyanogenmod.app.PartnerInterface sPartnerInterfaceInstance +androidx.preference.R$id: int tag_accessibility_clickable_spans +com.turingtechnologies.materialscrollbar.R$attr: int paddingEnd +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WetBulbTemperature +androidx.appcompat.R$color: int dim_foreground_material_dark +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customPixelDimension +wangdaye.com.geometricweather.R$attr: int fontProviderPackage +cyanogenmod.app.LiveLockScreenManager: android.content.Context mContext +com.google.android.material.R$styleable: int AppCompatTheme_toolbarStyle +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +james.adaptiveicon.R$id: int search_button +com.google.android.material.R$id: int mtrl_calendar_main_pane +okhttp3.internal.http2.Hpack +androidx.preference.R$style: int Base_V7_Theme_AppCompat_Light +com.google.android.material.R$anim: int design_snackbar_out +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$attr: int editTextPreferenceStyle +com.google.android.material.datepicker.Month: android.os.Parcelable$Creator CREATOR +okio.RealBufferedSource: long readLongLe() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupWindow +com.google.android.material.R$style: int Widget_AppCompat_ProgressBar +androidx.appcompat.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +com.turingtechnologies.materialscrollbar.R$attr: int arrowShaftLength +retrofit2.Platform: java.util.List defaultConverterFactories() +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_content_inset_material +com.jaredrummler.android.colorpicker.R$layout: int abc_action_mode_bar +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias +okhttp3.internal.http.RealResponseBody: RealResponseBody(java.lang.String,long,okio.BufferedSource) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean done +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: wangdaye.com.geometricweather.location.services.LocationService$LocationCallback val$callback +com.google.gson.internal.LinkedTreeMap: boolean containsKey(java.lang.Object) +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_range_start_hint +androidx.preference.R$drawable: int abc_ic_menu_cut_mtrl_alpha +com.google.android.material.R$styleable: int MaterialAutoCompleteTextView_android_inputType +retrofit2.adapter.rxjava2.BodyObservable: BodyObservable(io.reactivex.Observable) +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Bridge +james.adaptiveicon.R$attr: int thumbTint +wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndSwitch +okhttp3.Dispatcher: int getMaxRequestsPerHost() +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog_MinWidth +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit C +com.jaredrummler.android.colorpicker.R$attr: int homeAsUpIndicator +wangdaye.com.geometricweather.R$attr: int endIconDrawable +io.reactivex.internal.operators.observable.ObservableReplay$Node: long serialVersionUID +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type BASELINE +androidx.appcompat.R$attr: int listMenuViewStyle +androidx.hilt.work.R$style: int Widget_Compat_NotificationActionText +com.jaredrummler.android.colorpicker.R$styleable: int[] CheckBoxPreference +wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullException +androidx.preference.R$attr: int tickMarkTint +cyanogenmod.weather.WeatherInfo: WeatherInfo() +android.didikee.donate.R$styleable: int[] ActionBarLayout +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog +com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$styleable: int Layout_maxHeight +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.hilt.lifecycle.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.R$color: int lightPrimary_2 +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason INITIALIZE +androidx.lifecycle.extensions.R$dimen: int compat_button_padding_vertical_material +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_corner_radius_small +wangdaye.com.geometricweather.R$id: int expanded_menu +okhttp3.internal.cache2.Relay: Relay(java.io.RandomAccessFile,okio.Source,long,okio.ByteString,long) +cyanogenmod.weatherservice.ServiceRequestResult: java.lang.String access$402(cyanogenmod.weatherservice.ServiceRequestResult,java.lang.String) +wangdaye.com.geometricweather.R$attr: int badgeTextColor +com.google.android.material.circularreveal.CircularRevealFrameLayout: int getCircularRevealScrimColor() +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial Imperial +androidx.fragment.app.FragmentContainerView +james.adaptiveicon.R$color: int accent_material_light +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_popupTheme +wangdaye.com.geometricweather.R$string: int degree_day_temperature +wangdaye.com.geometricweather.R$id: int disableScroll +cyanogenmod.app.ProfileManager: android.app.NotificationGroup[] getNotificationGroups() +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerError(io.reactivex.internal.observers.InnerQueuedObserver,java.lang.Throwable) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_ON_VALIDATOR +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onNext(retrofit2.Response) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_content_padding +androidx.customview.R$id: int line3 +android.didikee.donate.R$id: int contentPanel +com.google.android.material.button.MaterialButton: void removeOnCheckedChangeListener(com.google.android.material.button.MaterialButton$OnCheckedChangeListener) +wangdaye.com.geometricweather.R$styleable: int[] RecyclerView +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: android.os.IBinder mRemote +androidx.lifecycle.Lifecycling: java.util.Map sCallbackCache +androidx.legacy.coreutils.R$styleable: int GradientColorItem_android_offset +androidx.constraintlayout.widget.R$styleable: int Layout_layout_editor_absoluteX +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_KEYS_CONTROL_RING_STREAM_VALIDATOR +org.greenrobot.greendao.AbstractDao: android.database.CursorWindow moveToNextUnlocked(android.database.Cursor) +cyanogenmod.weatherservice.ServiceRequestResult: java.lang.String mKey +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: int getAnimationMode() +com.xw.repo.bubbleseekbar.R$dimen: int abc_select_dialog_padding_start_material +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_searchIcon +okhttp3.Authenticator$1 +com.google.android.material.R$id: int view_offset_helper +androidx.coordinatorlayout.R$style: R$style() +com.github.rahatarmanahmed.cpv.CircularProgressView: void setVisibility(int) +androidx.appcompat.R$attr: int actionBarSplitStyle +com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarTextViewStyle +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_DialogWhenLarge +androidx.preference.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource access$000(wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource) +com.bumptech.glide.integration.okhttp.R$attr: int statusBarBackground +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityDestroyed(android.app.Activity) +androidx.preference.R$styleable: int AppCompatTextHelper_android_textAppearance +retrofit2.BuiltInConverters$BufferingResponseBodyConverter: java.lang.Object convert(java.lang.Object) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_27 +com.google.android.material.button.MaterialButton: int getCornerRadius() +okio.RealBufferedSink: okio.BufferedSink writeLong(long) +androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$attr: int key +james.adaptiveicon.R$color: int abc_tint_spinner +wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_dark +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +com.amap.api.fence.GeoFenceManagerBase: void removeGeoFence() +androidx.preference.R$style: int Base_Animation_AppCompat_Dialog +com.google.android.material.R$drawable: int abc_spinner_textfield_background_material +wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_toLeftOf +com.jaredrummler.android.colorpicker.R$attr: int textColorSearchUrl +com.jaredrummler.android.colorpicker.R$dimen: int abc_button_inset_horizontal_material +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node getHead() +com.turingtechnologies.materialscrollbar.R$id: int transition_scene_layoutid_cache +com.google.gson.stream.JsonReader: long MIN_INCOMPLETE_INTEGER +com.turingtechnologies.materialscrollbar.R$id: int design_bottom_sheet +com.turingtechnologies.materialscrollbar.R$string: int character_counter_pattern +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Error +okhttp3.internal.Internal: boolean equalsNonHost(okhttp3.Address,okhttp3.Address) +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_updateNotificationGroup +cyanogenmod.weather.WeatherInfo$1 +androidx.preference.R$styleable: int Preference_fragment +androidx.transition.R$dimen: int notification_large_icon_height +androidx.constraintlayout.widget.R$styleable: int SearchView_queryBackground +wangdaye.com.geometricweather.R$attr: int suffixTextAppearance +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle +androidx.lifecycle.ViewModelStores: ViewModelStores() +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SLEET +androidx.preference.R$color: int abc_tint_edittext +com.google.android.gms.common.server.FavaDiagnosticsEntity +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric +wangdaye.com.geometricweather.R$id: int default_activity_button +okio.RealBufferedSource: okio.ByteString readByteString(long) +androidx.lifecycle.ProcessLifecycleOwner$3$1: ProcessLifecycleOwner$3$1(androidx.lifecycle.ProcessLifecycleOwner$3) +com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingTop +okio.Util: int reverseBytesInt(int) +com.google.android.gms.common.api.internal.zabl +com.google.android.material.R$string: int abc_action_bar_home_description +com.amap.api.location.AMapLocationClientOption: void setLocationProtocol(com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf +com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyleIndicator +james.adaptiveicon.R$drawable: int abc_spinner_textfield_background_material +james.adaptiveicon.R$id: int titleDividerNoCustom +com.jaredrummler.android.colorpicker.R$attr: int maxWidth +wangdaye.com.geometricweather.R$drawable: int notif_temp_41 +androidx.recyclerview.R$attr: int reverseLayout +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitationDuration() +wangdaye.com.geometricweather.R$styleable: int[] PreferenceFragmentCompat +okio.RealBufferedSource: long indexOf(byte,long) +okhttp3.internal.http2.Http2Connection$5: boolean val$inFinished +android.didikee.donate.R$color: int switch_thumb_normal_material_dark +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeight +wangdaye.com.geometricweather.R$styleable: int[] MaterialCalendar +cyanogenmod.app.ThemeVersion$ComponentVersion: cyanogenmod.app.ThemeComponent getComponent() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd +okio.Buffer: okio.BufferedSink writeLongLe(long) +io.reactivex.Observable: io.reactivex.Observable doOnSubscribe(io.reactivex.functions.Consumer) +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: io.reactivex.Observer downstream +james.adaptiveicon.R$style: int Theme_AppCompat_Light_NoActionBar +com.bumptech.glide.R$styleable: int GradientColorItem_android_color +com.google.android.material.R$layout: int material_clock_display_divider +android.didikee.donate.R$dimen: int abc_text_size_display_1_material +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State RESUMED +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +cyanogenmod.app.ProfileGroup: int mNameResId +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_8 +com.google.android.material.R$dimen: int mtrl_calendar_year_corner +com.google.android.material.R$attr: int layout_anchorGravity +androidx.preference.R$styleable +com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuView +cyanogenmod.weather.WeatherInfo: WeatherInfo(cyanogenmod.weather.WeatherInfo$1) +wangdaye.com.geometricweather.R$attr: int pageIndicatorColor +androidx.preference.R$styleable: int[] Preference +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_indeterminateProgressStyle +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TIMESTAMP +okio.Buffer +com.google.android.material.R$color: int mtrl_btn_text_color_disabled +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu +com.google.android.material.floatingactionbutton.FloatingActionButton: void setShowMotionSpecResource(int) +com.google.android.material.R$styleable: int[] MaterialAutoCompleteTextView +okhttp3.internal.ws.RealWebSocket: long pingIntervalMillis +com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_end_color +androidx.preference.R$styleable: int MenuItem_actionProviderClass +cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.CMTelephonyManager getInstance(android.content.Context) +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener access$900(cyanogenmod.externalviews.KeyguardExternalView) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void removeInner(io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) +androidx.work.impl.background.systemalarm.RescheduleReceiver +okhttp3.CipherSuite$1: CipherSuite$1() androidx.lifecycle.LifecycleObserver -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_CompactMenu -androidx.appcompat.R$styleable: int SwitchCompat_android_thumb -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation TOP -com.amap.api.location.AMapLocation: double getLatitude() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: java.lang.String icon -wangdaye.com.geometricweather.R$attr: int headerLayout -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Display -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat PREFER_ARGB_8888 -wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedWidthMinor -io.reactivex.Observable: io.reactivex.Completable switchMapCompletableDelayError(io.reactivex.functions.Function) -com.google.android.gms.base.R$string: int common_google_play_services_notification_channel_name -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowRadius -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_48dp -androidx.customview.R$styleable: int FontFamilyFont_ttcIndex -cyanogenmod.app.IProfileManager$Stub: android.os.IBinder asBinder() -com.xw.repo.bubbleseekbar.R$styleable -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul3H -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder callTimeout(java.time.Duration) -cyanogenmod.app.ProfileManager: ProfileManager(android.content.Context) -wangdaye.com.geometricweather.R$attr: int cpv_animDuration -cyanogenmod.app.BaseLiveLockManagerService: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -com.google.android.material.R$style: int Theme_AppCompat_DayNight -com.github.rahatarmanahmed.cpv.CircularProgressView$9: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -androidx.appcompat.R$drawable: int notification_bg_normal -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isDataConnectionEnabled() -androidx.preference.R$drawable: int abc_list_divider_mtrl_alpha -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.HourlyEntity,int) -androidx.constraintlayout.widget.R$attr: int actionModePopupWindowStyle -com.amap.api.fence.GeoFence: void setRadius(float) -com.google.android.material.R$dimen: int tooltip_y_offset_touch -com.google.android.material.R$styleable: int Toolbar_subtitleTextAppearance +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerY +james.adaptiveicon.R$attr: int buttonBarPositiveButtonStyle +com.google.android.material.R$styleable: int Transform_android_transformPivotX +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object DONE +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorAnimationDuration +com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.String) +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Light +androidx.appcompat.R$attr: int buttonBarStyle +james.adaptiveicon.R$dimen: int tooltip_vertical_padding +wangdaye.com.geometricweather.R$attr: int trackTint +androidx.appcompat.R$styleable: int CompoundButton_buttonCompat +com.google.android.material.R$attr: int actionBarWidgetTheme +androidx.vectordrawable.animated.R$dimen: int notification_top_pad +com.google.android.material.R$attr: int endIconContentDescription +com.bumptech.glide.load.engine.GlideException: void printStackTrace(java.io.PrintStream) +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnwd +com.google.android.material.R$styleable: int MaterialCalendar_yearSelectedStyle +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationX +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: ObservableIntervalRange$IntervalRangeObserver(io.reactivex.Observer,long,long) +androidx.fragment.R$attr: int fontWeight +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ImageButton +com.google.android.gms.common.server.response.FastSafeParcelableJsonResponse +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: int TRANSACTION_setServiceRequestState +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator +com.jaredrummler.android.colorpicker.R$id: int textSpacerNoTitle +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight +com.google.android.material.slider.RangeSlider: void setValues(java.lang.Float[]) +wangdaye.com.geometricweather.R$drawable: int notif_temp_51 +okhttp3.internal.cache.DiskLruCache$2 +com.google.android.material.R$dimen: int mtrl_calendar_header_toggle_margin_top +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: androidx.lifecycle.LiveData mLiveData +androidx.hilt.work.R$dimen: int compat_button_padding_vertical_material +wangdaye.com.geometricweather.db.entities.LocationEntity: void setCountry(java.lang.String) +cyanogenmod.app.LiveLockScreenInfo: android.content.ComponentName component +com.baidu.location.e.h$c: com.baidu.location.e.h$c c +android.didikee.donate.R$styleable: int AppCompatTheme_colorAccent +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_toggle_margin_top +wangdaye.com.geometricweather.R$drawable: int notification_bg_low_normal +io.reactivex.internal.schedulers.RxThreadFactory: long serialVersionUID +com.google.android.material.R$styleable: int ChipGroup_selectionRequired +okhttp3.Challenge: java.lang.String toString() +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdtd +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_holo_light +okhttp3.internal.ws.RealWebSocket: int sentPingCount() +androidx.constraintlayout.widget.R$attr: int actionModeBackground +androidx.preference.R$styleable: int AppCompatTheme_dividerHorizontal +androidx.constraintlayout.widget.R$attr: int deltaPolarRadius +android.didikee.donate.R$drawable: int abc_text_select_handle_middle_mtrl_light +androidx.work.R$attr: int ttcIndex +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node header +androidx.viewpager2.R$id: int right_side +com.google.android.material.R$styleable: int Slider_trackHeight +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_THEME_PACKAGE +com.google.android.material.R$styleable: int TextInputLayout_startIconDrawable +wangdaye.com.geometricweather.R$styleable: int Chip_iconEndPadding +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +com.google.android.material.textview.MaterialTextView +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: java.lang.String type +androidx.dynamicanimation.R$color +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_14 +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getThumbStrokeColor() +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_switch_track +cyanogenmod.providers.CMSettings$Global: int getInt(android.content.ContentResolver,java.lang.String) +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_PORTRAIT +okhttp3.Headers: java.lang.String[] namesAndValues +wangdaye.com.geometricweather.R$string: int week +androidx.constraintlayout.widget.R$attr: int tint +com.google.android.material.R$style: int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +com.jaredrummler.android.colorpicker.R$integer: int abc_config_activityDefaultDur +wangdaye.com.geometricweather.R$styleable: int[] MaterialRadioButton +androidx.constraintlayout.helper.widget.Flow: void setPadding(int) +androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX() +androidx.appcompat.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +james.adaptiveicon.R$attr: int collapseContentDescription androidx.cardview.R$styleable: int CardView_contentPaddingTop -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_STATUS_BAR -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.String toString() -com.jaredrummler.android.colorpicker.R$color: int primary_dark_material_dark -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: MfForecastResult$ProbabilityForecast$ProbabilityRain() -wangdaye.com.geometricweather.R$id: int editText -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_toBottomOf -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_45 -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_5 -com.google.android.material.R$drawable: int mtrl_ic_arrow_drop_up -com.bumptech.glide.integration.okhttp.R$attr: int coordinatorLayoutStyle -androidx.appcompat.R$styleable: int[] FontFamilyFont -com.xw.repo.bubbleseekbar.R$attr: int bsb_seek_step_section -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_outline_box_expanded_padding -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_maxElementsWrap -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService: ForegroundTodayForecastUpdateService() -james.adaptiveicon.R$color: int material_blue_grey_900 -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: MpscLinkedQueue$LinkedQueueNode() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabView -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_percent -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintStart_toEndOf -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String WidgetPhrase -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_switchTextOff -androidx.core.R$id: int accessibility_custom_action_12 -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean isEntityUpdateable() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: int Degrees -okhttp3.internal.ws.WebSocketWriter: okhttp3.internal.ws.WebSocketWriter$FrameSink frameSink -com.jaredrummler.android.colorpicker.R$id: int tag_unhandled_key_listeners -okhttp3.internal.http1.Http1Codec: void cancel() -com.google.android.material.R$styleable: int Variant_constraints -james.adaptiveicon.R$dimen: int abc_search_view_preferred_width -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_83 -okhttp3.internal.http1.Http1Codec$AbstractSource: Http1Codec$AbstractSource(okhttp3.internal.http1.Http1Codec,okhttp3.internal.http1.Http1Codec$1) -cyanogenmod.app.ThemeVersion: int CM12_PRE_VERSIONING -androidx.appcompat.R$styleable: int ActionBar_height -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias -androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context) -com.google.gson.stream.JsonReader: int peekNumber() -androidx.viewpager2.R$attr: int spanCount -cyanogenmod.weather.WeatherInfo: double access$602(cyanogenmod.weather.WeatherInfo,double) -cyanogenmod.weather.CMWeatherManager: java.lang.String TAG -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: FitSystemBarSwipeRefreshLayout(android.content.Context) -com.google.android.material.internal.StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException -com.google.android.material.R$drawable: int abc_control_background_material -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: long serialVersionUID -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_fullscreen -okio.InflaterSource: boolean closed -com.turingtechnologies.materialscrollbar.R$color: int highlighted_text_material_dark -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getThunderstorm() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String date -com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context,android.util.AttributeSet,int) -androidx.transition.R$id: int parent_matrix -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_navigationIcon -androidx.lifecycle.MediatorLiveData$Source: MediatorLiveData$Source(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) -cyanogenmod.providers.CMSettings$DiscreteValueValidator: CMSettings$DiscreteValueValidator(java.lang.String[]) -androidx.appcompat.widget.FitWindowsViewGroup: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) -androidx.lifecycle.LiveData$LifecycleBoundObserver: boolean shouldBeActive() -okhttp3.Authenticator: okhttp3.Authenticator NONE -cyanogenmod.profiles.RingModeSettings: RingModeSettings(java.lang.String,boolean) -cyanogenmod.app.IProfileManager -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BACKGROUND -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER_X -com.google.android.material.R$dimen: int mtrl_btn_elevation -androidx.viewpager2.R$attr: int fastScrollVerticalTrackDrawable -androidx.lifecycle.ViewModelProvider$OnRequeryFactory -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BLUETOOTH_ICON -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenVoice(android.content.Context,java.lang.Integer) -androidx.appcompat.R$attr: int overlapAnchor -com.google.android.gms.common.server.converter.StringToIntConverter -androidx.loader.R$id: int right_side -com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_alpha -com.google.android.material.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$id: int action_context_bar -com.google.android.material.R$styleable: int Constraint_layout_constraintCircleAngle -wangdaye.com.geometricweather.R$color: int mtrl_btn_stroke_color_selector -com.google.android.gms.common.server.response.SafeParcelResponse -androidx.appcompat.R$styleable: int AppCompatTextView_lineHeight -androidx.constraintlayout.widget.R$styleable: int Transition_duration -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ProgressBar -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_3 -com.google.android.material.internal.NavigationMenuItemView: void setIconTintList(android.content.res.ColorStateList) -cyanogenmod.app.Profile: void setSecondaryUuids(java.util.List) -androidx.lifecycle.extensions.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: double Value -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextAppearanceInactive(int) -androidx.appcompat.R$styleable: int AlertDialog_buttonIconDimen -com.jaredrummler.android.colorpicker.R$dimen: R$dimen() -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents -com.turingtechnologies.materialscrollbar.TouchScrollBar: float getHandleOffset() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: int getStatus() -androidx.legacy.coreutils.R$layout: int notification_template_part_chronometer -james.adaptiveicon.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_activated_mtrl_alpha -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowNoTitle -james.adaptiveicon.R$layout: int abc_alert_dialog_button_bar_material -cyanogenmod.weather.WeatherInfo: int access$302(cyanogenmod.weather.WeatherInfo,int) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Large -wangdaye.com.geometricweather.R$id: int activity_about_recyclerView -com.baidu.location.e.m -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_registerWeatherServiceProviderChangeListener -wangdaye.com.geometricweather.R$styleable: int[] ConstraintSet -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean delayErrors -androidx.preference.R$color: int primary_dark_material_dark -com.xw.repo.bubbleseekbar.R$color: int dim_foreground_material_light -okhttp3.internal.http1.Http1Codec$FixedLengthSource: long read(okio.Buffer,long) -wangdaye.com.geometricweather.R$drawable: int ic_wechat_pay -com.jaredrummler.android.colorpicker.R$id: int alertTitle -com.amap.api.location.AMapLocation: java.lang.String k(com.amap.api.location.AMapLocation,java.lang.String) -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: java.lang.Object resource -io.reactivex.internal.util.VolatileSizeArrayList: boolean addAll(java.util.Collection) -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit MUGPCUM -wangdaye.com.geometricweather.R$layout: int activity_main -io.reactivex.exceptions.CompositeException: void printStackTrace() -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_BACK_BUTTON -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow Snow -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontWeight -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean done -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -com.google.android.material.slider.BaseSlider: void setTrackHeight(int) +okhttp3.HttpUrl$Builder: int portColonOffset(java.lang.String,int,int) +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: int TRANSACTION_handles_0 +wangdaye.com.geometricweather.R$styleable: int RoundCornerTransition_radius_from +com.google.android.material.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +androidx.recyclerview.R$id: int tag_transition_group +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeCloudCover +wangdaye.com.geometricweather.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMarkTintMode +com.google.android.material.progressindicator.ProgressIndicator: int getCircularInset() +androidx.hilt.R$styleable: int FontFamily_fontProviderFetchStrategy +com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$attr: int chipStyle +wangdaye.com.geometricweather.R$attr: int checkedIconVisible +com.turingtechnologies.materialscrollbar.R$color: int mtrl_fab_ripple_color +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmTp1 +okhttp3.internal.http1.Http1Codec: okio.Source newFixedLengthSource(long) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default +wangdaye.com.geometricweather.R$bool: int enable_system_job_service_default +com.google.android.material.R$attr: int layout_scrollFlags +okio.Buffer: okio.ByteString sha512() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_toRightOf +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: java.lang.String Unit +androidx.appcompat.widget.SwitchCompat: void setTrackTintMode(android.graphics.PorterDuff$Mode) +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_overlay +com.google.android.material.R$dimen: int design_navigation_icon_padding +okhttp3.RealCall: okhttp3.Request request() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind Wind +androidx.lifecycle.MediatorLiveData$Source: void onChanged(java.lang.Object) +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sunContainer +com.xw.repo.bubbleseekbar.R$attr: int tooltipText +androidx.loader.R$attr: int alpha +io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,io.reactivex.Scheduler) +cyanogenmod.os.Build$CM_VERSION_CODES: int APRICOT +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_bias +okhttp3.CertificatePinner$Pin: java.lang.String WILDCARD +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void again(java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer moldIndex +org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Object[]) +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_default_mtrl_alpha +androidx.legacy.coreutils.R$styleable: int GradientColor_android_endX +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog +com.jaredrummler.android.colorpicker.R$attr: int titleMarginStart +okio.Timeout$1: void throwIfReached() +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String ID +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_default +androidx.lifecycle.ViewModel: boolean mCleared +androidx.constraintlayout.widget.R$id: int middle +okio.SegmentedByteString: okio.ByteString toAsciiLowercase() +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void clear() +androidx.preference.R$drawable: int abc_control_background_material +james.adaptiveicon.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +androidx.loader.R$id: int tag_unhandled_key_event_manager +com.xw.repo.bubbleseekbar.R$color: int material_grey_800 +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarPopupTheme +androidx.appcompat.R$attr: int titleMarginTop +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_customNavigationLayout +androidx.hilt.work.R$layout: int custom_dialog +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setBrandId(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int Constraint_android_transformPivotX +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowColor +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_27 +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: FlowableConcatMap$ConcatMapInner(io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport) +androidx.constraintlayout.motion.widget.MotionLayout: int[] getConstraintSetIds() +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotationX +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawableItem_android_drawable +androidx.viewpager2.R$attr: int spanCount +wangdaye.com.geometricweather.R$styleable: int Slider_tickColorActive +androidx.preference.R$style: int Animation_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$attr: int paddingStart +com.xw.repo.bubbleseekbar.R$layout +androidx.appcompat.widget.LinearLayoutCompat: int getGravity() +okhttp3.internal.ws.RealWebSocket$Message: int formatOpcode +androidx.customview.R$drawable: int notification_bg_low_pressed +androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +wangdaye.com.geometricweather.R$attr: int triggerId +wangdaye.com.geometricweather.R$styleable: int[] ClockHandView +androidx.appcompat.R$drawable: int abc_list_selector_background_transition_holo_dark +com.google.android.material.chip.Chip: void setChecked(boolean) +com.github.rahatarmanahmed.cpv.BuildConfig: BuildConfig() +android.didikee.donate.R$styleable: int TextAppearance_android_textColor +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String EnglishType +androidx.appcompat.R$attr: int showDividers +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_23 +okhttp3.internal.tls.DistinguishedNameParser: int getByte(int) +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_elevation +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_animate_relativeTo +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +android.didikee.donate.R$color: int material_grey_300 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day Day +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onComplete() +androidx.appcompat.widget.AbsActionBarView: int getContentHeight() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterMaxLength +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitation(java.lang.Float) +com.amap.api.fence.GeoFenceManagerBase: void addRoundGeoFence(com.amap.api.location.DPoint,float,java.lang.String) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime realtime +com.google.android.material.R$drawable: int abc_btn_default_mtrl_shape +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_exitFadeDuration +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver inner +james.adaptiveicon.R$styleable: int SearchView_queryBackground +okhttp3.internal.http.RealResponseBody: okio.BufferedSource source +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onNext(java.lang.Object) +com.google.android.material.R$styleable: int KeyAttribute_android_rotation +com.google.android.material.R$color: int switch_thumb_material_dark +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeBackground +okhttp3.HttpUrl$Builder: void resolvePath(java.lang.String,int,int) +androidx.work.R$dimen: int notification_right_icon_size +com.turingtechnologies.materialscrollbar.R$style: int Base_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.R$styleable: int Constraint_barrierDirection +com.google.android.material.R$styleable: int AppCompatTheme_actionModeCopyDrawable +com.amap.api.location.AMapLocation: void setPoiName(java.lang.String) +com.google.android.material.datepicker.DateSelector +okhttp3.Dns$1 +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: long serialVersionUID +androidx.transition.R$id: int line1 +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getThunderstormPrecipitation() +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$drawable: int design_password_eye +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_hideOnContentScroll +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.Integer getAngle() +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +com.turingtechnologies.materialscrollbar.R$color: int primary_text_default_material_light +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder cipherSuites(java.lang.String[]) +cyanogenmod.hardware.CMHardwareManager: boolean checkService() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getAqiText() +wangdaye.com.geometricweather.R$id: int item_weather_daily_title_icon +wangdaye.com.geometricweather.R$attr: int menu +androidx.vectordrawable.animated.R$drawable: int notify_panel_notification_icon_bg +com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_bottom_material +androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.R$attr: int listLayout +com.google.android.material.R$styleable: int[] AppBarLayout_Layout +android.didikee.donate.R$drawable: int abc_ic_star_black_16dp +com.google.android.material.bottomsheet.BottomSheetBehavior +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float thunderstorm +androidx.swiperefreshlayout.R$dimen: R$dimen() +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context) +okhttp3.Cookie$Builder: long expiresAt +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void data(boolean,int,okio.BufferedSource,int) +cyanogenmod.providers.DataUsageContract: DataUsageContract() +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth +cyanogenmod.profiles.RingModeSettings: cyanogenmod.profiles.RingModeSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getIconsThemePackageName() +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_icon_btn_padding_left +com.bumptech.glide.R$id: int action_image +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog +io.reactivex.Observable: io.reactivex.Observable window(java.util.concurrent.Callable) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitationDuration() +com.google.android.material.R$attr: int elevationOverlayColor +androidx.constraintlayout.widget.R$id: int square +androidx.drawerlayout.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.R$string: int material_clock_display_divider +io.reactivex.Observable: io.reactivex.Observable throttleWithTimeout(long,java.util.concurrent.TimeUnit) +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtendMotionSpecResource(int) +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderQuery +androidx.preference.R$styleable: int Preference_persistent +com.google.android.material.R$style: int Widget_AppCompat_Toolbar +androidx.vectordrawable.animated.R$id: int tag_accessibility_actions +androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedHeightMinor +wangdaye.com.geometricweather.R$string: int settings_title_forecast_today +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWeatherText +androidx.appcompat.widget.AppCompatEditText +androidx.customview.R$styleable: int FontFamilyFont_android_ttcIndex +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: ObservableSkipLastTimed$SkipLastTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,boolean) +androidx.constraintlayout.widget.R$attr: int toolbarStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog +androidx.appcompat.resources.R$drawable: int notification_bg_low +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.concurrent.atomic.AtomicReference error com.jaredrummler.android.colorpicker.R$style: int AlertDialog_AppCompat -com.google.android.material.R$dimen: int material_cursor_inset_bottom -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_maxWidth -androidx.appcompat.R$attr: int tooltipForegroundColor -androidx.lifecycle.extensions.R$style: R$style() -com.turingtechnologies.materialscrollbar.R$attr: int windowFixedWidthMinor -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life -com.google.android.material.R$styleable: int AppBarLayout_android_background -okio.BufferedSource: int read(byte[],int,int) -androidx.coordinatorlayout.R$id: int action_container -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setTempMin(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_menuCategory -androidx.constraintlayout.widget.R$styleable: int MotionLayout_showPaths -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: ObservableSequenceEqual$EqualCoordinator(io.reactivex.Observer,int,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) -androidx.cardview.R$color: int cardview_light_background -com.google.android.material.chip.Chip: void setChipCornerRadiusResource(int) -com.google.android.material.R$styleable: int TextInputLayout_startIconDrawable -androidx.constraintlayout.widget.R$attr: int layout_constraintTag -androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableTransition -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(okhttp3.HttpUrl) -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_left_mtrl_light -androidx.preference.R$styleable: int SeekBarPreference_adjustable -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_initialExpandedChildrenCount -androidx.cardview.R$styleable: int CardView_contentPaddingBottom -com.xw.repo.bubbleseekbar.R$attr: int autoSizeStepGranularity -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_night -com.github.rahatarmanahmed.cpv.CircularProgressView$1: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -androidx.preference.R$attr: int navigationContentDescription -androidx.preference.R$id: int accessibility_custom_action_30 -androidx.appcompat.resources.R$integer -androidx.preference.R$style: int Base_V22_Theme_AppCompat -android.didikee.donate.R$styleable: int Toolbar_subtitleTextAppearance -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean unRegisterThermalListener(cyanogenmod.hardware.IThermalListenerCallback) -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_state_dragged -io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier valueOf(java.lang.String) -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: void soNext(io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode) -wangdaye.com.geometricweather.R$attr: int colorControlNormal -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Light -com.jaredrummler.android.colorpicker.R$layout: int expand_button -androidx.appcompat.R$style: int TextAppearance_AppCompat_Display1 -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: IExternalViewProviderFactory$Stub() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: long EpochRise -androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_alpha -androidx.customview.R$id: int right_side -android.didikee.donate.R$drawable: int abc_text_select_handle_middle_mtrl_light -com.google.gson.FieldNamingPolicy$1: java.lang.String translateName(java.lang.reflect.Field) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setNo2(java.lang.String) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -android.didikee.donate.R$styleable: int AppCompatImageView_tintMode -com.turingtechnologies.materialscrollbar.R$bool -cyanogenmod.app.Profile$TriggerState -com.jaredrummler.android.colorpicker.R$drawable: int abc_dialog_material_background -com.google.android.material.R$attr: int motion_triggerOnCollision -wangdaye.com.geometricweather.R$dimen: int design_snackbar_action_inline_max_width -com.google.android.material.R$style: int Base_V26_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.R$attr: int layoutDuringTransition -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.R$dimen: int compat_notification_large_icon_max_height -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_PAUSE -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_UID -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_precise_anchor_threshold -james.adaptiveicon.R$dimen: int abc_text_size_display_3_material -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderText -okio.ForwardingSource -okhttp3.internal.http2.Http2Stream: okio.Source getSource() -james.adaptiveicon.R$attr: int actionBarDivider -com.turingtechnologies.materialscrollbar.R$attr: int checkedChip -wangdaye.com.geometricweather.R$xml: int icon_provider_shortcut_filter -com.google.android.material.radiobutton.MaterialRadioButton: android.content.res.ColorStateList getMaterialThemeColorsTintList() -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao -androidx.work.R$styleable: int FontFamilyFont_font -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType TransactionRunnable -com.google.android.material.R$styleable: int Layout_android_layout_marginBottom -wangdaye.com.geometricweather.R$string: int feedback_initializing -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationZ -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onComplete() -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_splitTrack -okhttp3.internal.cache.DiskLruCache$Editor: void detach() -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.util.AtomicThrowable error -com.google.android.gms.location.zzo: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontStyle -android.didikee.donate.R$attr: int actionDropDownStyle -androidx.preference.R$styleable: int SearchView_android_inputType -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$color: int darkPrimary_5 -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: io.reactivex.subjects.UnicastSubject this$0 -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_clear_material -androidx.recyclerview.R$id: int tag_screen_reader_focusable -io.reactivex.internal.util.NotificationLite$SubscriptionNotification: long serialVersionUID -okhttp3.Handshake: okhttp3.Handshake get(javax.net.ssl.SSLSession) -okhttp3.internal.http2.Http2Connection$6: boolean val$inFinished -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhaseIcon -cyanogenmod.app.IPartnerInterface -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_body_1_material -com.github.rahatarmanahmed.cpv.CircularProgressView: void init(android.util.AttributeSet,int) -androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandleController create(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle,java.lang.String,android.os.Bundle) -cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,cyanogenmod.app.CustomTile,android.os.UserHandle,long) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_max -io.reactivex.internal.observers.DeferredScalarDisposable: java.lang.Object poll() -james.adaptiveicon.R$attr: int dropDownListViewStyle -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetStart -android.didikee.donate.R$dimen: int abc_action_bar_stacked_max_height -androidx.loader.R$styleable: int FontFamily_fontProviderQuery -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: java.util.concurrent.atomic.AtomicReference active -com.bumptech.glide.R$color: int ripple_material_light -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetRight -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setFitSide(int) -com.google.android.material.R$styleable: int Layout_minWidth -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -wangdaye.com.geometricweather.R$attr: int msb_lightOnTouch -androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX getAqi() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_35 -com.jaredrummler.android.colorpicker.R$integer: int status_bar_notification_info_maxnum -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(boolean) -okio.HashingSource: okio.ByteString hash() -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.R$styleable: int[] Chip -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setTitle(java.lang.String) -wangdaye.com.geometricweather.R$style: int Animation_AppCompat_Dialog -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_keyline -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: java.lang.String desc -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_search_api_material -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$id: int item_details_title -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator APP_SWITCH_WAKE_SCREEN_VALIDATOR -android.didikee.donate.R$drawable: int abc_ic_go_search_api_material -androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_android_color -com.turingtechnologies.materialscrollbar.TouchScrollBar: TouchScrollBar(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long firstEmission -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_LED_ON -androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_top_material -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button -com.google.android.material.R$styleable: int Constraint_layout_constraintEnd_toStartOf -com.google.android.material.R$attr: int fabCradleRoundedCornerRadius -james.adaptiveicon.R$attr: int tooltipForegroundColor -com.turingtechnologies.materialscrollbar.R$id: int smallLabel -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_icon -androidx.appcompat.R$styleable: int FontFamily_fontProviderQuery -com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_top_mtrl_alpha -io.reactivex.internal.subscriptions.DeferredScalarSubscription: void request(long) -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle NATIVE -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastHorizontalStyle -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void cancel() -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_NIGHT -com.jaredrummler.android.colorpicker.R$dimen: int notification_right_icon_size -okhttp3.internal.ws.RealWebSocket: java.util.List ONLY_HTTP1 +com.google.android.material.R$styleable: int NavigationView_itemIconSize +androidx.work.R$id: int italic androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPreDestroyed(android.app.Activity) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionMode -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode -androidx.appcompat.resources.R$id: int accessibility_custom_action_0 -com.google.android.material.R$attr: int applyMotionScene -androidx.appcompat.R$styleable: int AppCompatTextView_drawableTint -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_normal_pressed -com.xw.repo.bubbleseekbar.R$id: int actions -com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.chip.Chip: void setChipStrokeWidthResource(int) -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -com.google.android.material.R$attr: int windowMinWidthMajor -wangdaye.com.geometricweather.R$id: int clip_horizontal -retrofit2.HttpServiceMethod: retrofit2.RequestFactory requestFactory -cyanogenmod.app.Profile: cyanogenmod.profiles.ConnectionSettings getSettingsForConnection(int) -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_summaryOn -com.google.android.gms.base.R$string: int common_signin_button_text_long -androidx.constraintlayout.widget.R$id: int wrap -androidx.appcompat.R$id: int icon -androidx.preference.R$styleable: int AppCompatTheme_actionBarWidgetTheme -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -androidx.vectordrawable.R$drawable: int notification_action_background -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature Temperature -okhttp3.internal.connection.RouteDatabase: java.util.Set failedRoutes -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String unit -androidx.preference.R$attr: int preferenceTheme -android.didikee.donate.R$attr: int autoCompleteTextViewStyle -okhttp3.internal.platform.ConscryptPlatform: javax.net.ssl.SSLContext getSSLContext() -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float ceiling -com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException: long serialVersionUID -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_height_minor -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listMenuViewStyle -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayStyle -james.adaptiveicon.R$styleable: int FontFamilyFont_android_font -androidx.recyclerview.R$dimen: int notification_right_icon_size -androidx.constraintlayout.widget.R$dimen: int abc_seekbar_track_progress_height_material -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar -androidx.appcompat.widget.AppCompatCheckedTextView -androidx.swiperefreshlayout.R$id: int text -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_percent -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionButtonStyle -com.google.android.material.R$styleable: int KeyTimeCycle_waveOffset -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.String TABLENAME -androidx.vectordrawable.R$id: int title -com.xw.repo.bubbleseekbar.R$color: int ripple_material_dark -androidx.appcompat.widget.AppCompatButton: int getAutoSizeStepGranularity() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation Elevation -okhttp3.internal.http.HttpMethod -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActivityChooserView -androidx.preference.R$styleable: int AppCompatTextView_autoSizeStepGranularity -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: ObservableFlatMap$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver,long) -com.google.android.material.R$attr: int cornerFamilyBottomLeft -com.google.android.material.R$attr: int chipIconVisible -com.google.android.material.R$style: int TextAppearance_AppCompat_Body2 -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.R$attr: int indicatorSize -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -wangdaye.com.geometricweather.R$string: int retrofit -wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -androidx.constraintlayout.widget.R$attr: int popupWindowStyle -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription -androidx.fragment.R$id: int icon_group -okio.Buffer: okio.BufferedSink writeLong(long) -retrofit2.Response: Response(okhttp3.Response,java.lang.Object,okhttp3.ResponseBody) -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) -androidx.hilt.lifecycle.R$dimen: int compat_button_inset_vertical_material -io.reactivex.exceptions.CompositeException: CompositeException(java.lang.Iterable) -wangdaye.com.geometricweather.daily.DailyWeatherActivity: DailyWeatherActivity() -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Bridge -androidx.preference.R$attr: int spinBars -com.amap.api.fence.PoiItem: java.lang.String i -androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float snowPrecipitationProbability -com.google.android.material.R$styleable: int MaterialCalendar_yearStyle -androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_ttcIndex -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int Slider_thumbRadius -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat -com.amap.api.location.AMapLocation: boolean o -wangdaye.com.geometricweather.R$string: int tomorrow -android.didikee.donate.R$style: int Widget_AppCompat_RatingBar_Indicator -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String PROFILE -com.google.android.material.R$attr: int panelMenuListTheme -com.jaredrummler.android.colorpicker.R$anim: int abc_tooltip_exit -io.reactivex.internal.util.VolatileSizeArrayList: java.util.ListIterator listIterator(int) -androidx.fragment.R$id: int accessibility_custom_action_4 -androidx.preference.R$id: int accessibility_custom_action_12 -com.google.android.material.R$styleable: int KeyCycle_waveVariesBy -androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet,int,int) -com.bumptech.glide.integration.okhttp.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: java.lang.String Unit -androidx.appcompat.R$dimen: int tooltip_vertical_padding -android.didikee.donate.R$style: int Platform_V25_AppCompat_Light -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableItem_android_id -com.xw.repo.bubbleseekbar.R$drawable: R$drawable() -okio.RealBufferedSink: boolean isOpen() -okhttp3.internal.http2.Http2Stream$FramingSource: okio.Buffer readBuffer -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_motionTarget -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.constraintlayout.widget.Barrier -okhttp3.Cache$Entry: okhttp3.Protocol protocol +wangdaye.com.geometricweather.R$drawable: int mtrl_dropdown_arrow +androidx.hilt.work.R$id: int accessibility_custom_action_5 +cyanogenmod.themes.IThemeProcessingListener$Stub +android.didikee.donate.R$styleable: int Toolbar_contentInsetEndWithActions +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.hardware.CMHardwareManager: boolean unRegisterThermalListener(cyanogenmod.hardware.ThermalListenerCallback) +androidx.constraintlayout.widget.R$attr: int autoCompleteTextViewStyle +com.google.android.material.R$drawable: int abc_dialog_material_background +androidx.transition.R$id: int notification_background +androidx.appcompat.widget.Toolbar: int getTitleMarginStart() +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: int UnitType +com.google.android.material.textfield.TextInputLayout: void setHelperTextTextAppearance(int) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Inverse +okhttp3.RequestBody$2: okhttp3.MediaType contentType() +io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Predicate onNext +androidx.preference.R$styleable: int SeekBarPreference_seekBarIncrement +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: android.os.IBinder asBinder() +androidx.preference.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +wangdaye.com.geometricweather.R$font: int product_sans_thin +com.google.android.material.R$attr: int tabRippleColor +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: io.reactivex.functions.Action onOverflow +com.google.android.material.R$styleable: int NavigationView_itemShapeFillColor +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_motionTarget +com.bumptech.glide.R$styleable: int[] ColorStateListItem +androidx.constraintlayout.widget.R$styleable: int[] Variant +com.turingtechnologies.materialscrollbar.R$id: int right_icon +wangdaye.com.geometricweather.R$array: int clock_font +androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +com.xw.repo.bubbleseekbar.R$attr: int trackTintMode +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$attr: int preserveIconSpacing +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastHorizontalStyle +wangdaye.com.geometricweather.remoteviews.config.Hilt_MultiCityWidgetConfigActivity: Hilt_MultiCityWidgetConfigActivity() +wangdaye.com.geometricweather.R$string: int pressure +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String coDesc +com.google.android.material.R$styleable: int KeyTrigger_motion_postLayoutCollision +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_off_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int Preference_summary +wangdaye.com.geometricweather.R$id: int chip2 +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area +wangdaye.com.geometricweather.R$id: int linear +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String key +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PRESENT_AS_THEME +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout +wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_container +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_LAST_PROFILE_NAME +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getUnitId() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onLockscreenSlideOffsetChanged +com.amap.api.location.CoordinateConverter: boolean isAMapDataAvailable(double,double) +androidx.dynamicanimation.R$id: int tag_unhandled_key_listeners +com.google.android.material.R$attr: int listChoiceIndicatorSingleAnimated +androidx.hilt.R$dimen: int notification_top_pad +androidx.customview.R$color +wangdaye.com.geometricweather.R$styleable: int MenuView_android_verticalDivider +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Large +cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weather.RequestInfo getRequestInfo() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String getIcon() +james.adaptiveicon.R$attr: int textAppearanceSmallPopupMenu +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_background +com.google.android.gms.base.R$string: int common_google_play_services_install_text +androidx.appcompat.widget.Toolbar: void setTitleMarginEnd(int) +wangdaye.com.geometricweather.R$attr: int visibilityMode +com.google.android.material.R$attr: int yearSelectedStyle +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TEMPERATURE_UNIT +wangdaye.com.geometricweather.R$styleable: int ActionBar_hideOnContentScroll +androidx.appcompat.R$styleable: int MenuItem_android_titleCondensed +androidx.fragment.R$styleable: int Fragment_android_name +androidx.constraintlayout.widget.R$drawable: int abc_ic_voice_search_api_material +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItem +wangdaye.com.geometricweather.R$string: int wind_chill_temperature +cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_DO_NOTHING +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerNext(java.lang.Object) +okhttp3.HttpUrl: java.lang.String percentDecode(java.lang.String,boolean) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_elevation +com.turingtechnologies.materialscrollbar.R$attr: int itemPadding +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$color: int switch_thumb_normal_material_light +com.google.android.material.progressindicator.ProgressIndicator: int getTrackColor() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherText +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_stacked_max_height +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: AccuAlertResult$Description() +com.google.android.material.R$attr: int actionModeSplitBackground +okio.Segment: okio.Segment split(int) +com.turingtechnologies.materialscrollbar.R$attr: int insetForeground +com.google.android.material.R$styleable: int TextInputLayout_placeholderTextAppearance +androidx.appcompat.widget.SwitchCompat: void setThumbDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String season +androidx.constraintlayout.widget.Group +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: java.lang.Runnable getWrappedRunnable() +androidx.constraintlayout.widget.R$style: int Platform_V21_AppCompat_Light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX +androidx.preference.R$id: int seekbar +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type RIGHT +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: void onThermalChanged(int) +android.didikee.donate.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType valueOf(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int Chip_chipIconVisible +com.amap.api.location.AMapLocationClientOption$1: AMapLocationClientOption$1() +cyanogenmod.app.CustomTile$Builder: int mIcon +wangdaye.com.geometricweather.R$string: int key_hide_subtitle +androidx.appcompat.R$drawable: int abc_ic_star_black_16dp +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: MfForecastResult$Forecast$Snow() +androidx.customview.R$id: int title +androidx.preference.R$id: int action_mode_bar_stub +androidx.preference.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.R$layout: int container_main_hourly_trend_card +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableLeft +androidx.appcompat.R$dimen: int abc_action_bar_overflow_padding_start_material +com.bumptech.glide.integration.okhttp.R$drawable: int notification_template_icon_bg +android.didikee.donate.R$id: int home +cyanogenmod.app.CustomTile$ExpandedStyle$1: java.lang.Object[] newArray(int) +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getIdType(int) +com.google.android.material.R$drawable: int abc_ic_search_api_material +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +com.turingtechnologies.materialscrollbar.R$attr: int textEndPadding +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer LEFT_CLOSE +wangdaye.com.geometricweather.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_transitionEasing +okhttp3.internal.Util: java.lang.String hostHeader(okhttp3.HttpUrl,boolean) +androidx.transition.R$attr: int fontProviderPackage +retrofit2.ParameterHandler$Path +cyanogenmod.externalviews.ExternalView$2: int val$height +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeAppearanceOverlay +com.amap.api.location.AMapLocationQualityReport: void setGpsStatus(int) +okio.ByteString: okio.ByteString hmacSha1(okio.ByteString) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_second_track_size +androidx.dynamicanimation.R$styleable: int GradientColor_android_centerX +com.google.android.material.chip.Chip: void setIconEndPadding(float) +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_useSimpleSummaryProvider +okhttp3.Cache: void update(okhttp3.Response,okhttp3.Response) +androidx.appcompat.widget.ActivityChooserModel +okhttp3.internal.cache2.Relay: boolean complete +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.util.List textHtml +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer treeLevel +com.xw.repo.bubbleseekbar.R$attr: int listItemLayout +androidx.preference.R$string: int v7_preference_on +androidx.preference.R$styleable: int Spinner_android_dropDownWidth +androidx.appcompat.R$styleable: int MenuItem_tooltipText +androidx.preference.R$layout: int abc_cascading_menu_item_layout +okio.Buffer: okio.Buffer copyTo(java.io.OutputStream,long,long) +androidx.preference.R$dimen: int abc_config_prefDialogWidth +wangdaye.com.geometricweather.db.entities.MinutelyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +androidx.preference.R$styleable: int Preference_android_persistent +androidx.drawerlayout.R$id: int tag_transition_group +android.didikee.donate.R$style: int Platform_AppCompat +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_139 +com.xw.repo.bubbleseekbar.R$attr: int actionBarSplitStyle +james.adaptiveicon.R$attr: int homeLayout +androidx.drawerlayout.R$drawable: int notification_tile_bg +androidx.appcompat.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.jaredrummler.android.colorpicker.R$id: int seekbar_value +io.reactivex.exceptions.MissingBackpressureException: long serialVersionUID +android.didikee.donate.R$layout: int abc_search_dropdown_item_icons_2line +androidx.vectordrawable.animated.R$styleable: R$styleable() +androidx.lifecycle.Transformations: Transformations() +androidx.preference.R$styleable: int SwitchCompat_showText +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +com.google.android.material.R$dimen: int notification_action_text_size +okio.RealBufferedSink: okio.BufferedSink writeUtf8(java.lang.String) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void cancel() +okio.BufferedSink: okio.BufferedSink write(okio.Source,long) +wangdaye.com.geometricweather.R$array: int live_wallpaper_day_night_type_values +android.didikee.donate.R$styleable: int[] MenuItem +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_y_offset_non_touch +androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context,android.util.AttributeSet,int) +androidx.hilt.work.R$dimen: int notification_action_icon_size +androidx.viewpager2.R$id: int action_text +cyanogenmod.profiles.StreamSettings: boolean mDirty +cyanogenmod.weather.WeatherLocation$1: java.lang.Object[] newArray(int) +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startY +cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCK_PASS_TO_SECURITY_VIEW +com.google.android.material.R$styleable: int Toolbar_subtitleTextAppearance +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindChillTemperature +com.jaredrummler.android.colorpicker.R$attr: int colorControlActivated +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetStartWithNavigation +com.google.android.material.textfield.TextInputLayout: void setStartIconDrawable(int) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarSplitStyle +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String img +wangdaye.com.geometricweather.R$attr: int contentPaddingRight +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_start_icon_margin_end +androidx.preference.R$styleable: int ViewStubCompat_android_id +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_thumb +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onKeyguardDismissed() +androidx.appcompat.widget.ActivityChooserView: androidx.appcompat.widget.ListPopupWindow getListPopupWindow() +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setColor(boolean) +androidx.vectordrawable.R$id: int title +androidx.vectordrawable.R$styleable: int[] FontFamilyFont +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: void run() +androidx.dynamicanimation.R$drawable: int notification_icon_background +com.amap.api.location.DPoint: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonTint +cyanogenmod.weatherservice.IWeatherProviderServiceClient +com.google.android.material.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha +androidx.hilt.lifecycle.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$string: int cpv_select +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_is_float_type +com.amap.api.fence.DistrictItem: java.lang.String getDistrictName() +wangdaye.com.geometricweather.R$styleable: int Variant_region_heightMoreThan +com.baidu.location.e.l$b: java.lang.String g +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBaseline_creator +com.xw.repo.bubbleseekbar.R$attr: int tintMode +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: java.lang.String DESCRIPTOR +cyanogenmod.externalviews.ExternalViewProperties: boolean mVisible +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDataConnectionState +wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_radio +com.google.android.material.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitation +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +com.google.android.material.R$id: int staticLayout +wangdaye.com.geometricweather.R$attr: int passwordToggleContentDescription +androidx.preference.R$attr: int buttonBarButtonStyle +io.reactivex.internal.schedulers.AbstractDirectTask: void dispose() +com.google.android.material.R$dimen: int abc_list_item_height_large_material +com.turingtechnologies.materialscrollbar.R$styleable: int TouchScrollBar_msb_autoHide +wangdaye.com.geometricweather.R$styleable: int MotionScene_defaultDuration +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_top +com.amap.api.fence.PoiItem: java.lang.String k +okhttp3.internal.http2.Http2Writer: void settings(okhttp3.internal.http2.Settings) +androidx.preference.R$attr: int disableDependentsState +androidx.lifecycle.extensions.R$style: int Widget_Compat_NotificationActionText +james.adaptiveicon.R$drawable: int notification_action_background +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: CNWeatherResult$Alert() +androidx.core.R$layout: int notification_template_icon_group +androidx.appcompat.resources.R$dimen: int compat_notification_large_icon_max_width +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundTintList(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_popupWindowStyle +okhttp3.internal.ws.RealWebSocket: boolean send(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMinWidth +wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_material +com.google.android.material.circularreveal.cardview.CircularRevealCardView: CircularRevealCardView(android.content.Context,android.util.AttributeSet) +okhttp3.internal.http2.Http2Connection: okhttp3.Protocol getProtocol() +wangdaye.com.geometricweather.R$string: int phase_new +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_overflow_material +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String LongPhrase +okio.InflaterSource +okhttp3.Request: java.util.List headers(java.lang.String) +androidx.viewpager2.R$color: int notification_action_color_filter +androidx.preference.R$id: int tag_transition_group +androidx.constraintlayout.widget.R$id: int triangle +androidx.appcompat.widget.AppCompatCheckBox: void setButtonDrawable(int) +com.google.android.material.textfield.TextInputLayout: int getBoxBackgroundMode() +androidx.loader.R$attr: int ttcIndex +cyanogenmod.app.ICMTelephonyManager +androidx.preference.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling() +androidx.lifecycle.LifecycleRegistry: java.lang.ref.WeakReference mLifecycleOwner +wangdaye.com.geometricweather.R$styleable: int Motion_pathMotionArc +com.turingtechnologies.materialscrollbar.R$styleable: int[] CollapsingToolbarLayout +android.didikee.donate.R$anim: int abc_slide_out_top +android.support.v4.os.ResultReceiver: void send(int,android.os.Bundle) +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: android.net.Uri CONTENT_URI +wangdaye.com.geometricweather.R$layout: int design_layout_tab_icon +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Small +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW_SHOWERS +okio.RealBufferedSink: okio.BufferedSink writeUtf8(java.lang.String,int,int) +com.jaredrummler.android.colorpicker.R$style: int Base_DialogWindowTitleBackground_AppCompat +com.google.android.material.chip.Chip: void setCheckedIconEnabled(boolean) +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen +com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_android_popupBackground +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: java.lang.String quali +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: int unitArrayIndex +com.google.android.material.chip.Chip: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +androidx.vectordrawable.R$dimen: int notification_content_margin_start +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_CONSUMED +wangdaye.com.geometricweather.R$attr: int cardCornerRadius +io.reactivex.internal.observers.BlockingObserver: boolean isDisposed() +androidx.appcompat.R$attr: int actionBarSize +com.google.android.material.R$attr: int behavior_saveFlags +okhttp3.Address: javax.net.SocketFactory socketFactory() +com.xw.repo.bubbleseekbar.R$id: int src_in +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_1_material +androidx.swiperefreshlayout.R$dimen: int notification_large_icon_width +retrofit2.RequestFactory$Builder: boolean gotQueryMap +james.adaptiveicon.R$attr: int selectableItemBackgroundBorderless +androidx.appcompat.R$styleable: int AppCompatTheme_actionMenuTextColor +android.didikee.donate.R$attr: int colorBackgroundFloating +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: okhttp3.Request request() +androidx.appcompat.widget.SwitchCompat: int getThumbOffset() +com.google.android.material.R$string: int mtrl_badge_numberless_content_description +wangdaye.com.geometricweather.R$attr: int updatesContinuously +wangdaye.com.geometricweather.R$color: int error_color_material_light +com.amap.api.fence.GeoFence: boolean isAble() +james.adaptiveicon.R$style: int Base_Theme_AppCompat_CompactMenu +com.jaredrummler.android.colorpicker.R$styleable: int Preference_isPreferenceVisible +com.jaredrummler.android.colorpicker.R$id: int list_item +com.turingtechnologies.materialscrollbar.R$color: int secondary_text_disabled_material_dark +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_DEFAULT_INDEX +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Primary +com.google.android.material.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets +android.didikee.donate.R$style: int Base_Widget_AppCompat_ButtonBar +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult +wangdaye.com.geometricweather.R$id: int text_input_error_icon +com.google.android.material.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: int Severity +androidx.constraintlayout.widget.R$attr: int subtitle +okhttp3.EventListener: void responseBodyStart(okhttp3.Call) +cyanogenmod.weather.WeatherInfo: int access$902(cyanogenmod.weather.WeatherInfo,int) +androidx.lifecycle.LiveData$AlwaysActiveObserver: LiveData$AlwaysActiveObserver(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_linearSeamless +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Id +androidx.lifecycle.ClassesInfoCache$MethodReference: void invokeCallback(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) +androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_dropdownPreferenceStyle +retrofit2.RequestBuilder: void canonicalizeForPath(okio.Buffer,java.lang.String,int,int,boolean) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2 +cyanogenmod.themes.ThemeChangeRequest: cyanogenmod.themes.ThemeChangeRequest$RequestType getReqeustType() +james.adaptiveicon.R$attr: int goIcon +com.google.android.material.R$id: int labelGroup +com.google.android.material.chip.Chip: float getChipEndPadding() +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void drain() +androidx.constraintlayout.widget.R$styleable: int OnSwipe_limitBoundsTo +androidx.lifecycle.Transformations$2: androidx.arch.core.util.Function val$switchMapFunction +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onComplete() +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontStyle +androidx.preference.R$style: int Base_Widget_AppCompat_EditText +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder certificatePinner(okhttp3.CertificatePinner) +com.turingtechnologies.materialscrollbar.R$attr: int lineHeight +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_2G +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemPaddingRight +com.google.android.material.chip.ChipGroup: void setOnHierarchyChangeListener(android.view.ViewGroup$OnHierarchyChangeListener) +com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_title_material +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: void run() +wangdaye.com.geometricweather.R$attr: int drawable_res_on +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean,int) +com.google.android.material.R$drawable: int abc_list_pressed_holo_light +android.didikee.donate.R$styleable: int ActionBar_contentInsetStartWithNavigation +james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.google.android.material.R$style: int Widget_MaterialComponents_Light_ActionBar_Solid +androidx.drawerlayout.R$id: int action_text +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int CloudCover +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +androidx.constraintlayout.widget.ConstraintLayout: void setOptimizationLevel(int) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constrainedWidth +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRealFeelTemperature +com.google.android.material.R$drawable: int design_bottom_navigation_item_background +com.google.android.material.R$attr: int layout_goneMarginRight +com.amap.api.location.AMapLocation: int C +androidx.constraintlayout.widget.R$attr: int allowStacking +okhttp3.internal.http2.Http2Connection: java.net.Socket socket +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +com.turingtechnologies.materialscrollbar.R$id: int action_bar_container +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) +wangdaye.com.geometricweather.R$color: int design_default_color_on_background +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: boolean equals(java.lang.Object) +com.google.android.material.R$anim: int abc_shrink_fade_out_from_bottom +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region +org.greenrobot.greendao.AbstractDao: java.lang.Object loadUnique(android.database.Cursor) +android.didikee.donate.R$attr: int gapBetweenBars +wangdaye.com.geometricweather.R$id: int adjust_height +wangdaye.com.geometricweather.R$color: int mtrl_tabs_legacy_text_color_selector +okio.Buffer$UnsafeCursor: int start +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode valueOf(java.lang.String) +com.amap.api.location.DPoint: double a +androidx.coordinatorlayout.R$id: int right +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit) +com.turingtechnologies.materialscrollbar.R$id: int search_plate +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: IWeatherServiceProviderChangeListener$Stub$Proxy(android.os.IBinder) +okhttp3.Headers: java.util.Set names() +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +wangdaye.com.geometricweather.R$attr: int backgroundSplit +androidx.viewpager.R$integer: int status_bar_notification_info_maxnum +androidx.constraintlayout.widget.R$id: int async +wangdaye.com.geometricweather.R$id: int widget_clock_day +androidx.appcompat.R$style: int ThemeOverlay_AppCompat +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior +wangdaye.com.geometricweather.R$attr: int paddingBottomSystemWindowInsets +android.didikee.donate.R$dimen: int abc_dropdownitem_text_padding_left +com.turingtechnologies.materialscrollbar.R$attr: int buttonTintMode +wangdaye.com.geometricweather.R$id: int widget_day_title +com.jaredrummler.android.colorpicker.R$attr: int entryValues +wangdaye.com.geometricweather.R$styleable: int Chip_chipCornerRadius +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moon_icon +androidx.appcompat.R$dimen: int notification_big_circle_margin +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver,java.lang.Throwable) +okhttp3.internal.cache2.Relay$RelaySource: okhttp3.internal.cache2.FileOperator fileOperator +james.adaptiveicon.R$style: int Widget_AppCompat_ImageButton +wangdaye.com.geometricweather.R$attr: int endIconMode +com.google.android.gms.common.SignInButton: SignInButton(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String EnglishName +io.reactivex.internal.observers.LambdaObserver: long serialVersionUID +com.google.android.material.imageview.ShapeableImageView: void setStrokeColor(android.content.res.ColorStateList) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogTheme +android.didikee.donate.R$styleable: int AppCompatTheme_android_windowAnimationStyle +com.xw.repo.bubbleseekbar.R$attr: int collapseContentDescription +androidx.fragment.R$styleable: int FontFamilyFont_android_font +james.adaptiveicon.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +wangdaye.com.geometricweather.common.basic.GeoActivity +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_popupWindowStyle +com.google.android.material.R$attr: int layout_constraintCircle +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark_focused +androidx.constraintlayout.widget.R$anim: int abc_slide_out_bottom +okhttp3.internal.http2.Http2Connection: void close(okhttp3.internal.http2.ErrorCode,okhttp3.internal.http2.ErrorCode) +com.xw.repo.bubbleseekbar.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.String TABLENAME +com.turingtechnologies.materialscrollbar.R$string: int hide_bottom_view_on_scroll_behavior +james.adaptiveicon.R$dimen: int abc_text_size_title_material +wangdaye.com.geometricweather.R$attr: int tabSelectedTextColor +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max +james.adaptiveicon.R$color: int primary_material_dark +com.bumptech.glide.load.HttpException: HttpException(java.lang.String,int) +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_1 +androidx.preference.R$styleable: int[] ActionMenuView +androidx.constraintlayout.widget.R$dimen: int compat_button_padding_vertical_material +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Large_Inverse +com.google.android.material.R$styleable: int MenuView_android_headerBackground +com.amap.api.fence.GeoFence: float getMaxDis2Center() +androidx.appcompat.resources.R$drawable: int notification_bg_low_pressed +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_4 +androidx.preference.R$style: int Widget_AppCompat_SearchView_ActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_gapBetweenBars +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display1 +retrofit2.Retrofit: Retrofit(okhttp3.Call$Factory,okhttp3.HttpUrl,java.util.List,java.util.List,java.util.concurrent.Executor,boolean) +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: long serialVersionUID +wangdaye.com.geometricweather.R$id: int jumpToStart +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul1H +android.didikee.donate.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +com.google.android.material.card.MaterialCardView: int getContentPaddingLeft() +com.xw.repo.bubbleseekbar.R$bool: int abc_action_bar_embed_tabs +androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context) +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,boolean) +com.turingtechnologies.materialscrollbar.R$attr: int tabGravity +io.reactivex.Observable: void subscribeActual(io.reactivex.Observer) +androidx.hilt.R$styleable: int GradientColor_android_endX +com.google.android.material.R$styleable: int ImageFilterView_roundPercent +com.google.android.material.R$id: int design_menu_item_action_area_stub +android.didikee.donate.R$styleable: int CompoundButton_buttonTint +androidx.vectordrawable.animated.R$drawable: int notification_bg_low_pressed +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_height +com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void __setDaoSession(wangdaye.com.geometricweather.db.entities.DaoSession) +com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_bias +com.turingtechnologies.materialscrollbar.R$string: int abc_activitychooserview_choose_application +com.turingtechnologies.materialscrollbar.R$attr: int backgroundTint +androidx.preference.R$dimen: int hint_alpha_material_dark +android.didikee.donate.R$drawable: int abc_ic_star_half_black_36dp +androidx.appcompat.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +androidx.appcompat.app.WindowDecorActionBar +com.turingtechnologies.materialscrollbar.R$style: int Base_V28_Theme_AppCompat +wangdaye.com.geometricweather.R$drawable: int abc_ab_share_pack_mtrl_alpha +androidx.dynamicanimation.R$id: int blocking +androidx.recyclerview.R$styleable: int GradientColor_android_startColor +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_stacked_tab_max_width +androidx.lifecycle.LifecycleRegistry: java.util.ArrayList mParentStates +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onFailed() +okhttp3.internal.io.FileSystem$1: long size(java.io.File) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_1 +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleTextAppearance +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable +james.adaptiveicon.R$style: int Base_V23_Theme_AppCompat +com.google.android.material.R$styleable: int FloatingActionButton_backgroundTint +com.google.android.material.R$styleable: int Constraint_flow_verticalGap +wangdaye.com.geometricweather.R$color: int colorTextDark2nd +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void priority(int,int,int,boolean) +okhttp3.Headers: void checkValue(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_details_setting +wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_icon +com.google.android.material.R$color: int secondary_text_disabled_material_dark +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedWidthMinor +okhttp3.internal.http2.Http2Reader +com.jaredrummler.android.colorpicker.R$id: int large +com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_pressed +wangdaye.com.geometricweather.db.entities.HourlyEntity: HourlyEntity() +okhttp3.internal.ws.RealWebSocket$1: okhttp3.internal.ws.RealWebSocket this$0 +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerComplete() +okhttp3.OkHttpClient: int connectTimeout +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_orientation +wangdaye.com.geometricweather.R$attr: int layoutManager +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_RC4_128_SHA +retrofit2.OkHttpCall: boolean isCanceled() +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_levelValue +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_INACTIVE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean getUrl() +com.jaredrummler.android.colorpicker.R$color: int material_grey_600 +okhttp3.OkHttpClient: okhttp3.WebSocket newWebSocket(okhttp3.Request,okhttp3.WebSocketListener) +androidx.constraintlayout.widget.R$attr: int tickMarkTintMode +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_Solid +com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderVisible(boolean) +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView_Menu +com.google.android.material.progressindicator.ProgressIndicator: int[] getIndicatorColors() +androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedWidthMajor +okio.RealBufferedSink: int write(java.nio.ByteBuffer) +okhttp3.RequestBody$3: okhttp3.MediaType val$contentType +com.turingtechnologies.materialscrollbar.AlphabetIndicator +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: int getStatus() +androidx.preference.R$styleable: int TextAppearance_android_textStyle +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: int UnitType +com.xw.repo.bubbleseekbar.R$string: int abc_prepend_shortcut_label +wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_dark +androidx.vectordrawable.R$dimen: int notification_top_pad_large_text +okhttp3.Protocol: okhttp3.Protocol H2_PRIOR_KNOWLEDGE +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void otherError(java.lang.Throwable) +cyanogenmod.app.suggest.IAppSuggestManager: boolean handles(android.content.Intent) +cyanogenmod.profiles.BrightnessSettings +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level BASIC +wangdaye.com.geometricweather.R$drawable: int notif_temp_55 +james.adaptiveicon.R$attr: int actionMenuTextAppearance +cyanogenmod.app.ILiveLockScreenManager: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +io.reactivex.Observable: io.reactivex.Observable switchMapSingleDelayError(io.reactivex.functions.Function) +androidx.vectordrawable.animated.R$attr: int fontVariationSettings +androidx.activity.R$dimen: int notification_content_margin_start +com.google.android.material.R$styleable: int ConstraintSet_flow_verticalStyle +james.adaptiveicon.R$styleable: int[] SearchView +wangdaye.com.geometricweather.R$style: int Platform_AppCompat_Light +com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context,android.util.AttributeSet) +okhttp3.ConnectionSpec: boolean isTls() +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void dispose() +com.google.android.material.R$drawable: int mtrl_ic_error +androidx.loader.R$styleable: int FontFamilyFont_android_fontWeight +android.didikee.donate.R$id: int notification_main_column_container +com.jaredrummler.android.colorpicker.R$attr: int actionBarTabStyle +com.google.android.material.R$styleable: int AppBarLayout_statusBarForeground +com.xw.repo.bubbleseekbar.R$attr: int dialogCornerRadius +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX names +wangdaye.com.geometricweather.R$id: int tag_unhandled_key_listeners +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.util.ErrorMode errorMode +james.adaptiveicon.R$styleable: int AppCompatTheme_android_windowAnimationStyle +androidx.legacy.coreutils.R$id: int text2 +cyanogenmod.app.StatusBarPanelCustomTile +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindSpeed +okhttp3.internal.http.RealResponseBody: okio.BufferedSource source() +io.reactivex.internal.observers.InnerQueuedObserver +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context) +okio.Buffer: java.lang.String readUtf8() +com.google.android.material.R$drawable: int abc_btn_check_material_anim +cyanogenmod.profiles.BrightnessSettings$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.R$dimen: int design_tab_text_size +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_stroke_width_focused +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentHeight +cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String CITY_ID +com.amap.api.fence.GeoFence: boolean q +androidx.lifecycle.LiveData: void observeForever(androidx.lifecycle.Observer) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void dispose() +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_roundPercent +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String h +androidx.constraintlayout.widget.R$styleable: int[] KeyTimeCycle +cyanogenmod.app.Profile$ExpandedDesktopMode +com.google.android.material.R$dimen: int abc_text_size_small_material +android.didikee.donate.R$attr: int listItemLayout +androidx.appcompat.widget.AppCompatImageButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_enforceMaterialTheme +com.github.rahatarmanahmed.cpv.CircularProgressView: int animSwoopDuration +androidx.core.R$styleable: int GradientColor_android_centerColor +com.google.android.material.R$color: int material_deep_teal_500 +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Large +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder readTimeout(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$attr: int itemShapeInsetStart +okio.Okio: okio.Sink appendingSink(java.io.File) +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_normal_material_dark +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnp +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error +com.google.android.material.chip.Chip: void setMinLines(int) +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getCurrentDisplayMode +android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Dialog +androidx.drawerlayout.widget.DrawerLayout: float getDrawerElevation() +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: int hasSeaBulletin +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_CompactMenu +okhttp3.internal.http.HttpCodec: okio.Sink createRequestBody(okhttp3.Request,long) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.graphics.drawable.Drawable getItemBackground() +com.google.android.material.R$styleable: int Constraint_android_maxWidth +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getPressureVoice(android.content.Context,float) +okhttp3.Request$Builder: okhttp3.Request$Builder cacheControl(okhttp3.CacheControl) +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginStart() +androidx.preference.R$styleable: int[] Fragment +androidx.viewpager2.R$styleable: int RecyclerView_stackFromEnd +okhttp3.internal.http1.Http1Codec$AbstractSource: okio.Timeout timeout() +com.autonavi.aps.amapapi.model.AMapLocationServer: com.autonavi.aps.amapapi.model.AMapLocationServer h() +androidx.preference.R$id: int info +okhttp3.EventListener$2: okhttp3.EventListener val$listener +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction Direction +com.google.android.material.button.MaterialButton$SavedState: android.os.Parcelable$Creator CREATOR +okio.GzipSource: byte FEXTRA +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetTop +com.turingtechnologies.materialscrollbar.R$id: int action_mode_close_button +androidx.preference.R$attr: int progressBarStyle +wangdaye.com.geometricweather.R$id: int buttonPanel +androidx.lifecycle.Transformations$3: void onChanged(java.lang.Object) +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSwoopDuration +retrofit2.Retrofit: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[]) +cyanogenmod.app.LiveLockScreenManager: java.lang.String SERVICE_INTERFACE +wangdaye.com.geometricweather.R$styleable: int[] ThemeEnforcement +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$attr: int bsb_anim_duration +cyanogenmod.externalviews.ExternalView$6: cyanogenmod.externalviews.ExternalView this$0 +androidx.swiperefreshlayout.R$string: R$string() +james.adaptiveicon.R$styleable: int SwitchCompat_splitTrack +androidx.fragment.R$styleable: int GradientColorItem_android_color +com.google.android.material.R$styleable: int ProgressIndicator_indicatorSize +com.turingtechnologies.materialscrollbar.R$id: int snackbar_text +com.xw.repo.bubbleseekbar.R$id: int async +wangdaye.com.geometricweather.R$id: int spread +androidx.constraintlayout.widget.R$styleable: int PopupWindow_android_popupAnimationStyle +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onError(java.lang.Throwable) +cyanogenmod.weather.WeatherLocation +wangdaye.com.geometricweather.R$dimen: int subtitle_text_size +androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context,android.util.AttributeSet,int) +okhttp3.RealCall: okhttp3.internal.http.RetryAndFollowUpInterceptor retryAndFollowUpInterceptor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust WindGust +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Small +cyanogenmod.weather.RequestInfo$1: cyanogenmod.weather.RequestInfo[] newArray(int) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_panel_menu_list_width +androidx.appcompat.resources.R$drawable +androidx.appcompat.R$dimen: int abc_text_size_title_material_toolbar +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: ThemesContract$ThemesColumns$InstallState() +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Selected +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_shape_horizontal_margin +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.util.Date EndDate +androidx.core.view.ViewCompat$1: ViewCompat$1(androidx.core.view.OnApplyWindowInsetsListener) +android.didikee.donate.R$style: int Widget_AppCompat_Button +com.google.android.material.R$color: int bright_foreground_disabled_material_light +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +wangdaye.com.geometricweather.R$styleable: int AlertDialog_buttonIconDimen +retrofit2.HttpServiceMethod$SuspendForBody: boolean isNullable +androidx.lifecycle.SavedStateHandle: SavedStateHandle() +wangdaye.com.geometricweather.R$drawable: int abc_btn_check_to_on_mtrl_000 +androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +com.google.android.material.R$styleable: int Layout_layout_goneMarginBottom +com.google.android.material.button.MaterialButton: void setRippleColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_36dp +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String INSTALL_STATE +cyanogenmod.app.ThemeVersion$ComponentVersion +com.google.android.material.R$styleable: int SearchView_defaultQueryHint +wangdaye.com.geometricweather.R$id: int normal +androidx.coordinatorlayout.R$id: int accessibility_custom_action_8 +com.amap.api.location.AMapLocationClientOption: boolean n +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setWifiScan(boolean) +androidx.fragment.R$styleable: int GradientColor_android_type +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.Observer downstream +com.amap.api.fence.GeoFence +wangdaye.com.geometricweather.R$drawable: int ic_tree +com.amap.api.location.AMapLocation: int e(com.amap.api.location.AMapLocation,int) +com.turingtechnologies.materialscrollbar.R$attr: int fabCradleMargin +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: java.util.List getBrands() +androidx.swiperefreshlayout.R$dimen: int notification_big_circle_margin +androidx.appcompat.R$id: int checked +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Small +androidx.preference.R$bool: int abc_allow_stacked_button_bar +com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.ValueAnimator progressAnimator +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitationDuration +androidx.lifecycle.SavedStateHandle: java.lang.Object remove(java.lang.String) +com.google.android.material.R$styleable: int Layout_layout_editor_absoluteX +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Title +com.bumptech.glide.R$styleable: int FontFamily_fontProviderPackage +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_material_dark +com.google.android.material.bottomnavigation.BottomNavigationView: int getItemTextAppearanceInactive() +androidx.appcompat.widget.Toolbar$SavedState +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Time +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Toolbar +androidx.preference.R$attr: int defaultQueryHint +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +androidx.appcompat.app.AlertController$RecycleListView +wangdaye.com.geometricweather.R$id: int activity_weather_daily_pager +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.UV uv +android.didikee.donate.R$styleable: int MenuItem_iconTintMode +com.google.android.material.R$attr: int backgroundTint +com.google.android.material.R$styleable: int FloatingActionButton_pressedTranslationZ +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_to_on_mtrl_015 +androidx.loader.R$id +wangdaye.com.geometricweather.R$anim: int design_bottom_sheet_slide_in +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_end +wangdaye.com.geometricweather.R$attr: int drawerArrowStyle +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_alpha +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar_Small +cyanogenmod.app.CMContextConstants: java.lang.String CM_PERFORMANCE_SERVICE +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onComplete() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +com.baidu.location.f: f() +com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabIconTint() +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_4G +cyanogenmod.power.IPerformanceManager$Stub$Proxy: boolean setPowerProfile(int) +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTintMode +androidx.preference.R$style: int Preference_DialogPreference_EditTextPreference_Material +wangdaye.com.geometricweather.R$id: int controller +com.google.android.material.R$dimen: int abc_search_view_preferred_height +androidx.appcompat.R$id: int submit_area +com.xw.repo.bubbleseekbar.R$id: int action_context_bar +com.amap.api.location.LocationManagerBase: void startAssistantLocation(android.webkit.WebView) +com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +androidx.hilt.R$styleable: int[] Fragment +com.xw.repo.bubbleseekbar.R$styleable: int View_theme +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_spinnerStyle +com.bumptech.glide.Priority: com.bumptech.glide.Priority IMMEDIATE +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +com.bumptech.glide.R$styleable: int GradientColorItem_android_offset +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isDataConnectionSelectedOnSub +androidx.appcompat.R$layout: int custom_dialog +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_RESULT_VALUE +com.xw.repo.bubbleseekbar.R$styleable: int[] StateListDrawableItem +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getPm25Color(android.content.Context) +com.google.android.material.R$styleable: int Layout_layout_goneMarginStart +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextColor(android.content.res.ColorStateList) +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_layoutManager +cyanogenmod.hardware.CMHardwareManager: long getLtoDownloadInterval() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_3 +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_end +androidx.constraintlayout.widget.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_toLeftOf +androidx.appcompat.R$style: int Widget_AppCompat_ListView +androidx.constraintlayout.widget.R$dimen: int abc_dialog_list_padding_top_no_title +cyanogenmod.providers.CMSettings$System: java.lang.String getString(android.content.ContentResolver,java.lang.String) +com.google.android.material.R$styleable: int Transform_android_scaleY +okhttp3.HttpUrl$Builder: java.util.List encodedPathSegments +io.reactivex.internal.util.VolatileSizeArrayList: int lastIndexOf(java.lang.Object) +androidx.hilt.work.R$dimen: int compat_notification_large_icon_max_width +com.google.android.material.R$id: int parentRelative +wangdaye.com.geometricweather.R$styleable: int[] ColorPanelView +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_BOOT_ANIM +androidx.lifecycle.ProcessLifecycleOwner: int mResumedCounter +com.google.android.material.R$dimen: int material_clock_hand_padding +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenText(android.content.Context,java.lang.Integer) +com.xw.repo.bubbleseekbar.R$styleable: int[] StateListDrawable +okio.GzipSource: byte FCOMMENT +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_right +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onTimeoutError(long,java.lang.Throwable) +androidx.activity.R$attr: int fontVariationSettings +com.google.android.material.slider.BaseSlider: void setValues(java.lang.Float[]) +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderAuthority +james.adaptiveicon.R$id: int none +wangdaye.com.geometricweather.R$drawable: int abc_switch_thumb_material +androidx.vectordrawable.animated.R$styleable: int[] FontFamily +com.google.android.material.R$dimen: int mtrl_calendar_landscape_header_width +androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_toTopOf +wangdaye.com.geometricweather.R$attr: int expandedTitleMargin +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX temperature +androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_tintMode +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvDescription(java.lang.String) +okhttp3.Cache$1: Cache$1(okhttp3.Cache) +io.reactivex.internal.util.NotificationLite: boolean acceptFull(java.lang.Object,io.reactivex.Observer) +androidx.preference.R$style: int Widget_AppCompat_Button_Colored +com.google.android.material.R$attr: int paddingBottomNoButtons +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontVariationSettings +com.google.android.material.R$attr: int region_widthMoreThan +wangdaye.com.geometricweather.main.dialogs.BackgroundLocationDialog: BackgroundLocationDialog() +okhttp3.TlsVersion: okhttp3.TlsVersion[] values() +com.google.android.material.chip.Chip: void setChipIcon(android.graphics.drawable.Drawable) +com.jaredrummler.android.colorpicker.R$attr: int actionModeSelectAllDrawable +james.adaptiveicon.R$styleable: int SearchView_android_focusable +com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_padding_horizontal_material +androidx.appcompat.R$styleable: int AppCompatTheme_listDividerAlertDialog +androidx.fragment.R$dimen: int notification_content_margin_start +com.google.android.material.R$styleable: int ProgressIndicator_linearSeamless +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$id: int wrap +retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object invokeSuspend(java.lang.Object) +wangdaye.com.geometricweather.R$dimen: int mtrl_card_checked_icon_margin +okhttp3.internal.http2.Http2Connection$5: int val$streamId +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextColor +cyanogenmod.providers.CMSettings: CMSettings() +com.turingtechnologies.materialscrollbar.R$color: int mtrl_bottom_nav_item_tint +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_11 +retrofit2.Utils: java.lang.RuntimeException parameterError(java.lang.reflect.Method,int,java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.R$string: int key_notification_can_be_cleared +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_40 +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withReadTimeout(int,java.util.concurrent.TimeUnit) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.Observer downstream +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1 +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setAirplaneModeEnabled_0 +androidx.preference.R$styleable: int ActionBarLayout_android_layout_gravity +cyanogenmod.app.CustomTile$ExpandedItem: int itemDrawableResourceId +com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_selectableItemBackground +okhttp3.Cache$Entry: boolean isHttps() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_5 +androidx.swiperefreshlayout.R$id: int actions +james.adaptiveicon.R$styleable: int ActionBar_customNavigationLayout +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchTextAppearance +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelMenuListTheme +androidx.lifecycle.ReportFragment: void onDestroy() +cyanogenmod.app.ProfileGroup$1 +okhttp3.OkHttpClient$Builder: java.util.List protocols +com.google.android.material.R$attr: int borderlessButtonStyle +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void complete() +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getPM10() +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STYLE_PREVIEW +com.google.android.material.R$styleable: int ImageFilterView_saturation +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max +androidx.vectordrawable.R$id: int accessibility_custom_action_20 +com.xw.repo.bubbleseekbar.R$attr: int bsb_show_section_mark +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalBias +androidx.lifecycle.ReportFragment: void onStart() +androidx.preference.R$styleable: int SearchView_searchIcon +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_showText +cyanogenmod.app.CustomTile$1: java.lang.Object[] newArray(int) +android.didikee.donate.R$styleable: int MenuItem_contentDescription +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver +androidx.cardview.R$color: int cardview_dark_background +com.google.android.material.R$dimen: int notification_media_narrow_margin +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_textAppearance +okio.ByteString: boolean startsWith(byte[]) +wangdaye.com.geometricweather.R$attr: int maxButtonHeight +androidx.hilt.work.R$id: int action_image +androidx.constraintlayout.widget.R$id: int SHOW_ALL +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState +okhttp3.CacheControl: boolean mustRevalidate +androidx.appcompat.R$id: int async +cyanogenmod.weather.CMWeatherManager$RequestStatus: int NO_MATCH_FOUND +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_hovered_z +wangdaye.com.geometricweather.R$dimen: int mtrl_card_corner_radius +wangdaye.com.geometricweather.R$drawable: int design_fab_background +androidx.recyclerview.R$id: int tag_accessibility_pane_title +okhttp3.RealCall +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixTextAppearance +james.adaptiveicon.R$attr: int actionModeShareDrawable +android.didikee.donate.R$attr: int colorControlHighlight +io.reactivex.exceptions.CompositeException: void printStackTrace() +wangdaye.com.geometricweather.R$attr: int maxActionInlineWidth +com.xw.repo.bubbleseekbar.R$attr: int actionLayout +androidx.appcompat.widget.AppCompatImageView +cyanogenmod.app.suggest.IAppSuggestManager$Stub: int TRANSACTION_getSuggestions +androidx.appcompat.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +android.didikee.donate.R$id: int wrap_content +com.turingtechnologies.materialscrollbar.R$layout: int support_simple_spinner_dropdown_item +androidx.appcompat.R$styleable: int AppCompatTheme_listPopupWindowStyle +androidx.preference.R$styleable: int SwitchCompat_thumbTint +com.google.android.material.R$styleable: int TextInputLayout_boxBackgroundMode +cyanogenmod.app.BaseLiveLockManagerService: void enforceSamePackageOrSystem(java.lang.String,cyanogenmod.app.LiveLockScreenInfo) +androidx.customview.R$id: int action_container +com.google.android.material.R$color: int material_blue_grey_900 +android.didikee.donate.R$drawable: int abc_seekbar_thumb_material +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_GCM_SHA256 +okio.ForwardingTimeout: long deadlineNanoTime() +cyanogenmod.app.IPartnerInterface$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +androidx.preference.R$id: int message +wangdaye.com.geometricweather.common.basic.models.weather.Wind: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getDegree() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager +androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontWeight +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$drawable: int shortcuts_haze_foreground +wangdaye.com.geometricweather.R$transition: int search_activity_enter +com.google.android.material.R$attr: int drawableTintMode +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: ExternalViewProviderService$Provider$ProviderImpl$1(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +com.turingtechnologies.materialscrollbar.R$color: int design_error +com.google.android.material.R$attr: int paddingRightSystemWindowInsets +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_DrawerArrowToggle +cyanogenmod.profiles.RingModeSettings: RingModeSettings(android.os.Parcel) +android.didikee.donate.R$style: int Base_AlertDialog_AppCompat +com.google.android.material.button.MaterialButton: void setInsetBottom(int) +androidx.constraintlayout.widget.R$color: int secondary_text_disabled_material_dark +androidx.coordinatorlayout.widget.CoordinatorLayout: int getSuggestedMinimumHeight() +androidx.preference.R$attr: int trackTint +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Selected +com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_circle +androidx.legacy.coreutils.R$id: int info +wangdaye.com.geometricweather.R$attr: int layout_constraintRight_toRightOf +wangdaye.com.geometricweather.R$menu +androidx.constraintlayout.widget.R$id: int line3 +androidx.preference.R$styleable: int AppCompatTheme_actionBarTabBarStyle +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setMax(float) +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationZ +org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory,int,android.database.DatabaseErrorHandler) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_18 +wangdaye.com.geometricweather.R$drawable: int abc_ic_ab_back_material +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.Scheduler scheduler +retrofit2.KotlinExtensions$await$4$2 +android.didikee.donate.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPm25(java.lang.Float) +okhttp3.internal.cache.CacheInterceptor$1: void close() +com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonCompat +cyanogenmod.content.Intent: java.lang.String CATEGORY_THEME_PACKAGE_INSTALLED_STATE_CHANGE +androidx.preference.R$styleable: int GradientColorItem_android_offset +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setIcon(android.graphics.Bitmap) +wangdaye.com.geometricweather.R$style: int notification_subtitle_text +androidx.appcompat.R$style: int Theme_AppCompat_Light_DialogWhenLarge +okhttp3.internal.connection.RouteSelector: boolean hasNext() +androidx.dynamicanimation.R$string: int status_bar_notification_info_overflow +io.reactivex.internal.observers.BasicIntQueueDisposable: void dispose() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_checkboxStyle +cyanogenmod.app.CMTelephonyManager: boolean localLOGD +com.xw.repo.bubbleseekbar.R$attr: int collapseIcon +io.reactivex.internal.disposables.CancellableDisposable: long serialVersionUID +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layoutDescription +wangdaye.com.geometricweather.R$attr: int behavior_autoShrink +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastHorizontalBias +android.didikee.donate.R$attr: int titleMarginEnd +okhttp3.MediaType: java.lang.String TOKEN +okhttp3.internal.http2.Http2Connection$ReaderRunnable: okhttp3.internal.http2.Http2Reader reader +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setBadge(com.google.android.material.badge.BadgeDrawable) +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onNext(java.lang.Object) +com.google.android.material.R$id: int material_minute_tv +com.jaredrummler.android.colorpicker.R$color: int secondary_text_disabled_material_dark +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +com.google.android.material.R$id: int textinput_error +james.adaptiveicon.R$color: int abc_search_url_text_normal +com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetTop +wangdaye.com.geometricweather.R$styleable: int[] FloatingActionButton_Behavior_Layout +com.turingtechnologies.materialscrollbar.R$id: int info +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void drain() +androidx.hilt.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance +okhttp3.internal.http2.Http2Writer: boolean client +com.bumptech.glide.integration.okhttp.R$drawable: int notification_action_background +cyanogenmod.externalviews.KeyguardExternalView$2: cyanogenmod.externalviews.KeyguardExternalView this$0 +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: CompletableFutureCallAdapterFactory$ResponseCallAdapter(java.lang.reflect.Type) +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onNext(java.lang.Object) +androidx.lifecycle.extensions.R$id: int info +okhttp3.EventListener$2: okhttp3.EventListener create(okhttp3.Call) +okhttp3.internal.ws.RealWebSocket: void writePingFrame() +com.jaredrummler.android.colorpicker.ColorPickerDialog +androidx.coordinatorlayout.R$dimen: int notification_small_icon_size_as_large +androidx.fragment.R$id: int accessibility_custom_action_0 +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: java.lang.Object poll() +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context) +com.jaredrummler.android.colorpicker.R$attr: int titleMarginBottom +cyanogenmod.weather.WeatherLocation$Builder +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_disableDependentsState +wangdaye.com.geometricweather.R$styleable: int MenuItem_showAsAction +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Caption +androidx.appcompat.R$styleable: int MenuItem_iconTintMode +androidx.appcompat.R$styleable: int MenuView_android_horizontalDivider +wangdaye.com.geometricweather.R$dimen: int default_drawer_width +cyanogenmod.providers.CMSettings$System: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +androidx.viewpager2.R$id: int info +wangdaye.com.geometricweather.R$dimen: int material_timepicker_dialog_buttons_margin_top +wangdaye.com.geometricweather.R$id: int activity_widget_config_doneButton +com.google.android.material.R$id: int incoming +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableStartCompat +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +androidx.appcompat.R$id: int spacer +com.google.android.material.R$string: int abc_searchview_description_search +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isFlowable +okhttp3.internal.ws.WebSocketWriter: boolean activeWriter +androidx.appcompat.R$styleable: int Toolbar_contentInsetStartWithNavigation +com.google.android.material.R$attr: int textInputLayoutFocusedRectEnabled +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property CloudCover +androidx.preference.R$styleable: int PreferenceTheme_preferenceInformationStyle +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.R$styleable: int ActionBar_progressBarPadding +wangdaye.com.geometricweather.R$styleable: int Chip_shapeAppearance +com.google.android.material.R$string: int bottom_sheet_behavior +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_homeLayout +androidx.appcompat.resources.R$id: int accessibility_custom_action_12 +androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context,android.util.AttributeSet,int) +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2 +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void dispose() +wangdaye.com.geometricweather.R$style: int Preference_Material +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime +com.google.android.material.R$styleable: int ChipGroup_chipSpacing +androidx.dynamicanimation.R$style: int Widget_Compat_NotificationActionContainer +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onError(java.lang.Throwable) +com.google.android.material.R$attr: int collapsingToolbarLayoutStyle +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver parent +cyanogenmod.providers.CMSettings$Secure: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_round +com.google.android.material.R$attr: int singleSelection +androidx.coordinatorlayout.R$id: int line3 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCloseDrawable +com.google.android.material.R$styleable: int TabLayout_tabContentStart +wangdaye.com.geometricweather.R$styleable: int KeyPosition_sizePercent +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_bias +androidx.recyclerview.R$attr: int fastScrollVerticalTrackDrawable +com.google.android.material.R$dimen: int abc_action_bar_default_padding_end_material +wangdaye.com.geometricweather.R$id: int widget_remote_card +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +com.google.android.gms.common.SignInButton: void setEnabled(boolean) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitationProbability +androidx.transition.R$id: int right_side +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: org.reactivestreams.Subscriber downstream +androidx.viewpager.R$styleable: int[] ColorStateListItem +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_62 +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackTintList() +androidx.preference.R$dimen: int preference_dropdown_padding_start +com.google.android.material.behavior.SwipeDismissBehavior: SwipeDismissBehavior() +android.didikee.donate.R$styleable: int SearchView_android_focusable +cyanogenmod.app.Profile: Profile(java.lang.String,int,java.util.UUID) +com.baidu.location.indoor.c: void clear() +com.github.rahatarmanahmed.cpv.BuildConfig: boolean DEBUG +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() +wangdaye.com.geometricweather.db.entities.HourlyEntity: long getTime() +com.turingtechnologies.materialscrollbar.R$attr: int iconEndPadding +androidx.appcompat.widget.ActionMenuView: int getPopupTheme() +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_textColor +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: boolean isDisposed() +wangdaye.com.geometricweather.background.receiver.widget.WidgetDayWeekProvider +okhttp3.internal.cache.DiskLruCache$Snapshot: okio.Source[] sources +io.reactivex.internal.util.VolatileSizeArrayList: VolatileSizeArrayList(int) +androidx.appcompat.resources.R$layout: R$layout() +androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_tint +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: java.util.Date Set +com.google.android.material.R$color: int androidx_core_secondary_text_default_material_light +androidx.constraintlayout.widget.R$attr: int buttonTintMode +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabView +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.ProgressIndicatorSpec getSpec() +com.google.android.material.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +okhttp3.internal.http2.Http2Codec: okio.Sink createRequestBody(okhttp3.Request,long) +com.xw.repo.bubbleseekbar.R$styleable: int[] MenuGroup +androidx.preference.R$style: int TextAppearance_AppCompat_Display2 +com.google.android.material.textfield.TextInputLayout: void setCounterOverflowTextAppearance(int) +com.google.android.material.R$integer: int mtrl_tab_indicator_anim_duration_ms +androidx.preference.R$style: int Widget_AppCompat_RatingBar +androidx.preference.R$styleable: int PreferenceGroup_initialExpandedChildrenCount +okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV2 +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_summaryOff +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleTextAppearance +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAVIGATION_BAR_MENU_ARROW_KEYS_VALIDATOR +wangdaye.com.geometricweather.R$id: int outgoing +okhttp3.CacheControl: java.lang.String headerValue() +cyanogenmod.themes.IThemeChangeListener: void onProgress(int) +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity +androidx.hilt.lifecycle.R$id: int text2 +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton_CloseMode +androidx.constraintlayout.widget.R$id: int action_mode_bar +androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior: CoordinatorLayout$Behavior(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer dewPoint +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA +android.didikee.donate.R$style: int Base_Animation_AppCompat_Dialog +androidx.lifecycle.ComputableLiveData: java.lang.Runnable mRefreshRunnable +okhttp3.internal.tls.TrustRootIndex +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) +com.google.android.material.slider.RangeSlider: void setValueTo(float) +cyanogenmod.externalviews.ExternalView$4 +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_android_maxWidth +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_fontFamily +cyanogenmod.profiles.StreamSettings$1: cyanogenmod.profiles.StreamSettings createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: int status +androidx.transition.R$attr: int fontVariationSettings +com.google.android.material.chip.Chip: com.google.android.material.animation.MotionSpec getHideMotionSpec() +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Current getCurrent() +androidx.preference.R$drawable: int abc_popup_background_mtrl_mult +androidx.constraintlayout.widget.Placeholder: android.view.View getContent() +com.turingtechnologies.materialscrollbar.R$attr: int actionMenuTextAppearance +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation BOTTOM +androidx.appcompat.R$attr: int titleTextColor +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_variablePadding +wangdaye.com.geometricweather.R$id: int moldValue +okhttp3.Response$Builder: okhttp3.Headers$Builder headers +io.reactivex.internal.disposables.DisposableHelper: void reportDisposableSet() +wangdaye.com.geometricweather.db.entities.WeatherEntity: WeatherEntity(java.lang.Long,java.lang.String,java.lang.String,long,java.util.Date,long,java.util.Date,long,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.String,java.lang.String) +okio.RealBufferedSource: long indexOf(byte,long,long) +com.turingtechnologies.materialscrollbar.R$attr: int cardBackgroundColor +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +okhttp3.RealCall$AsyncCall: okhttp3.RealCall get() +cyanogenmod.weather.WeatherInfo: java.lang.String access$202(cyanogenmod.weather.WeatherInfo,java.lang.String) +retrofit2.KotlinExtensions$await$4$2: KotlinExtensions$await$4$2(kotlinx.coroutines.CancellableContinuation) +wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Icon +android.didikee.donate.R$attr: int searchHintIcon +com.google.android.material.R$styleable: int NavigationView_android_background +wangdaye.com.geometricweather.R$attr: int tabMode +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LOCK_WALLPAPER_THUMBNAIL +androidx.appcompat.view.menu.ListMenuItemView: void setSubMenuArrowVisible(boolean) +cyanogenmod.providers.CMSettings$DelimitedListValidator: boolean validate(java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_FloatingActionButton +cyanogenmod.weather.RequestInfo$Builder: int mRequestType +androidx.appcompat.R$color: int background_material_light +com.baidu.location.e.l$b: l$b(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int,com.baidu.location.e.l$1) +com.amap.api.location.LocationManagerBase: boolean isStarted() +okhttp3.internal.http.HttpHeaders: java.lang.String readToken(okio.Buffer) +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +android.didikee.donate.R$attr: int spinnerStyle +com.amap.api.location.UmidtokenInfo: android.os.Handler a +wangdaye.com.geometricweather.R$string: int live +com.jaredrummler.android.colorpicker.R$drawable: int notification_template_icon_low_bg +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getFontThemePackageName() +james.adaptiveicon.R$dimen: int abc_text_size_subtitle_material_toolbar +wangdaye.com.geometricweather.R$menu: int activity_settings +androidx.preference.R$styleable: int SwitchPreference_summaryOn +wangdaye.com.geometricweather.R$color: int dim_foreground_material_light +org.greenrobot.greendao.AbstractDao: void saveInTx(java.lang.Object[]) +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: int skip +androidx.constraintlayout.widget.R$style: int Animation_AppCompat_Tooltip +androidx.appcompat.R$id: int tag_unhandled_key_event_manager +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String j +okhttp3.EventListener +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_stroke_color_selector +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling +wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Light_Dialog +com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_800 +androidx.coordinatorlayout.R$attr: int coordinatorLayoutStyle +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPrePaused(android.app.Activity) +okhttp3.internal.http2.Http2Connection$6: int val$byteCount +com.google.android.material.R$styleable: int Constraint_android_transformPivotX +io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper CANCELLED +androidx.legacy.coreutils.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$drawable: int notif_temp_87 +android.didikee.donate.R$attr: int alpha +com.google.android.material.R$styleable: int AppCompatTheme_radioButtonStyle +wangdaye.com.geometricweather.R$id: int easeOut +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_Solid +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_default +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay[] values() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$string: int feedback_request_location_permission_success +android.support.v4.app.INotificationSideChannel$Stub +androidx.appcompat.R$style: int Base_V21_Theme_AppCompat +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_margin +androidx.appcompat.R$styleable: int[] ActivityChooserView +com.google.android.material.R$styleable: int TextInputLayout_counterTextColor +com.google.android.material.R$dimen: int mtrl_calendar_day_vertical_padding +com.google.android.material.R$styleable: int ActionBar_divider +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +okhttp3.MultipartBody: byte[] DASHDASH +io.reactivex.Observable: io.reactivex.Single toList(int) +okhttp3.internal.cache.DiskLruCache: long nextSequenceNumber +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$ItemAnimator getItemAnimator() +com.google.android.gms.common.internal.zaw +com.turingtechnologies.materialscrollbar.R$color: int material_grey_100 +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge +com.google.android.material.R$styleable: int[] State +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetEnd +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +androidx.preference.R$attr: int hideOnContentScroll +com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_offset +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Info +james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_EditText +com.turingtechnologies.materialscrollbar.R$id: int actions +androidx.vectordrawable.animated.R$id: int info +com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_dark +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy[] values() +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: int requestFusion(int) +okhttp3.internal.http2.Http2Stream: boolean hasResponseHeaders +com.xw.repo.bubbleseekbar.R$layout: R$layout() +wangdaye.com.geometricweather.R$attr: int actionModeCopyDrawable +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_title_baseline_to_top_fullscreen +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BACK_WAKE_SCREEN_VALIDATOR +okhttp3.Cookie: boolean persistent +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_second_track_color +androidx.preference.R$layout: int abc_alert_dialog_title_material +wangdaye.com.geometricweather.R$id: int content +com.google.android.gms.internal.common.zzq: java.lang.Object zza() +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean isCancelled() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dividerHorizontal +androidx.constraintlayout.widget.R$attr: int showDividers +com.google.android.material.R$styleable: int[] Motion +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dark +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Body1 +com.google.android.material.R$color: int switch_thumb_normal_material_dark +okio.HashingSource: okio.HashingSource sha256(okio.Source) +wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_android_maxWidth +androidx.appcompat.widget.AppCompatImageButton +com.google.android.material.R$color: int dim_foreground_material_dark +androidx.constraintlayout.widget.R$color: int tooltip_background_dark +wangdaye.com.geometricweather.R$attr: int chipSpacing +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_pivotAnchor +androidx.legacy.coreutils.R$string: R$string() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWeatherStart() +com.xw.repo.bubbleseekbar.R$attr: int buttonGravity +okhttp3.internal.cache.DiskLruCache: boolean mostRecentRebuildFailed +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: long unique +androidx.vectordrawable.R$dimen: int notification_main_column_padding_top +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconTint +wangdaye.com.geometricweather.R$drawable: int weather_snow +james.adaptiveicon.R$drawable: int abc_list_selector_holo_light +androidx.constraintlayout.widget.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.internal.util.AtomicThrowable error +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_8 +com.google.android.material.textfield.TextInputLayout: void setStartIconOnLongClickListener(android.view.View$OnLongClickListener) +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_updateProfile +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: android.os.IBinder mRemote +com.google.android.material.R$styleable: int AppCompatTextView_drawableTintMode +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mCallSetCommand +com.xw.repo.BubbleSeekBar: void setBubbleColor(int) +com.jaredrummler.android.colorpicker.R$attr: int gapBetweenBars +james.adaptiveicon.R$color: int material_grey_800 +android.didikee.donate.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_searchViewStyle wangdaye.com.geometricweather.db.entities.HistoryEntityDao: wangdaye.com.geometricweather.db.entities.HistoryEntity readEntity(android.database.Cursor,int) -cyanogenmod.app.suggest.ApplicationSuggestion$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ApparentTemperature -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.util.AtomicThrowable error -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX getTemperature() -com.amap.api.location.AMapLocation: java.lang.String B -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getDensityVoice(android.content.Context,float) -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_popupTheme -wangdaye.com.geometricweather.R$string: int widget_trend_hourly -com.google.android.material.R$attr: int layout_constraintTop_creator -retrofit2.adapter.rxjava2.HttpException: HttpException(retrofit2.Response) -com.google.android.material.R$styleable: int TabLayout_tabTextAppearance -com.xw.repo.bubbleseekbar.R$attr: int contentInsetEndWithActions -androidx.work.R$styleable -androidx.appcompat.R$attr: int actionModeCutDrawable -androidx.fragment.app.FragmentTabHost: FragmentTabHost(android.content.Context) -androidx.appcompat.view.menu.ListMenuItemView: android.view.LayoutInflater getInflater() -io.reactivex.internal.observers.DeferredScalarObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextStyle -androidx.preference.R$styleable: int SearchView_submitBackground -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: java.lang.Exception $this_suspendAndThrow$inlined -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_elevation -wangdaye.com.geometricweather.R$attr: int tabPaddingTop -okio.Base64: java.lang.String encode(byte[]) -com.google.android.material.R$style: int TextAppearance_AppCompat -com.google.android.material.R$attr: int tooltipStyle -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_spinner -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActivityChooserView -wangdaye.com.geometricweather.R$id: int dialog_location_help_container -androidx.appcompat.widget.AppCompatTextView: void setPrecomputedText(androidx.core.text.PrecomputedTextCompat) -com.google.android.material.R$drawable: int abc_seekbar_thumb_material -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -com.amap.api.fence.PoiItem: void setPoiId(java.lang.String) -androidx.preference.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listDividerAlertDialog -com.google.android.material.R$layout: int mtrl_picker_dialog -okhttp3.CacheControl: int maxAgeSeconds -com.google.android.material.bottomappbar.BottomAppBar: float getFabTranslationX() -com.jaredrummler.android.colorpicker.R$layout: int preference_dropdown_material -com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_button_bar_material -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListMenuView -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_22 -androidx.viewpager2.R$styleable: int FontFamilyFont_ttcIndex -androidx.lifecycle.ViewModelProviders: ViewModelProviders() -com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_950 -com.google.android.material.slider.BaseSlider: int getAccessibilityFocusedVirtualViewId() -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator TOUCHSCREEN_GESTURE_HAPTIC_FEEDBACK_VALIDATOR -com.google.gson.FieldNamingPolicy$4 -com.google.android.material.R$styleable: int AppCompatTheme_colorPrimaryDark -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_hideMotionSpec -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: CaiYunMainlyResult$CurrentBean$VisibilityBean() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getMoldDescription() -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_SYSTEM -androidx.appcompat.widget.SwitchCompat: int getThumbTextPadding() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -com.google.android.material.R$styleable: int KeyTimeCycle_android_scaleX -okhttp3.internal.connection.RealConnection: long idleAtNanos -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlNormal -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean active -okhttp3.internal.ws.RealWebSocket: boolean send(java.lang.String) -androidx.appcompat.R$attr: int windowActionBar -androidx.constraintlayout.widget.R$layout: int abc_screen_toolbar -androidx.activity.R$dimen: int notification_right_side_padding_top -androidx.appcompat.widget.AppCompatTextView: void setSupportCompoundDrawablesTintList(android.content.res.ColorStateList) -com.google.android.material.R$dimen: int mtrl_calendar_header_content_padding -com.google.android.material.navigation.NavigationView: void setItemHorizontalPadding(int) -androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.LifecycleRegistry mRegistry -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_titleCondensed -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setPubTime(java.util.Date) -com.turingtechnologies.materialscrollbar.R$styleable: int[] FontFamily -android.didikee.donate.R$style: int TextAppearance_AppCompat_Inverse -com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentListStyle -androidx.activity.R$styleable: int GradientColor_android_startColor -cyanogenmod.providers.CMSettings: boolean LOCAL_LOGV -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setSubState(int,boolean) -wangdaye.com.geometricweather.R$drawable: int flag_sr -android.didikee.donate.R$layout: int support_simple_spinner_dropdown_item -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_start_padding -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_minHideDelay -com.google.gson.stream.JsonWriter: void push(int) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onError(java.lang.Throwable) -okhttp3.HttpUrl: java.lang.String percentDecode(java.lang.String,int,int,boolean) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRealFeelTemperature(java.lang.Integer) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void dispose() -okhttp3.Response: java.util.List challenges() -androidx.appcompat.R$style: int Widget_AppCompat_ImageButton -com.turingtechnologies.materialscrollbar.R$drawable: int design_ic_visibility_off -cyanogenmod.os.Build$CM_VERSION_CODES: int APRICOT -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: ObservableRepeat$RepeatObserver(io.reactivex.Observer,long,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$attr: int switchTextOff -androidx.lifecycle.ClassesInfoCache$CallbackInfo: ClassesInfoCache$CallbackInfo(java.util.Map) -androidx.viewpager2.R$id: int accessibility_custom_action_20 -okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_FIN -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void clear() -androidx.constraintlayout.widget.R$attr: int navigationIcon -okio.BufferedSource: long indexOf(byte,long,long) -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationZ -androidx.preference.R$styleable: int GradientColor_android_centerY -com.google.android.material.R$attr: int popupWindowStyle -wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_android_foregroundGravity -com.bumptech.glide.module.LibraryGlideModule: LibraryGlideModule() -wangdaye.com.geometricweather.R$drawable: int notification_bg -androidx.dynamicanimation.R$string: int status_bar_notification_info_overflow -okhttp3.internal.ws.WebSocketProtocol: java.lang.String closeCodeExceptionMessage(int) -wangdaye.com.geometricweather.R$attr: int layout_constraintTop_creator -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_THUNDERSTORMS -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Settings okHttpSettings -okhttp3.OkHttpClient$Builder: int callTimeout -com.google.android.material.slider.BaseSlider: java.lang.CharSequence getAccessibilityClassName() -com.google.android.material.chip.Chip: void setChipIconTintResource(int) -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorFullWidth -androidx.hilt.lifecycle.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$attr: int cpv_animSwoopDuration -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTint -org.greenrobot.greendao.AbstractDao: java.lang.String getTablename() -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTextView -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,int) -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String getCityId() -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSubtitle1 -okhttp3.internal.http2.Http2Writer: boolean closed -com.xw.repo.bubbleseekbar.R$styleable: int View_theme -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_overflow_padding_end_material -com.bumptech.glide.load.engine.GlideException: java.util.List getRootCauses() -androidx.appcompat.resources.R$id: int accessibility_action_clickable_span -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: boolean inSingle -android.didikee.donate.R$color: R$color() -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$attr: int itemRippleColor -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy SOURCE -androidx.drawerlayout.R$layout: int notification_template_part_time -com.google.android.material.R$id: int tag_accessibility_heading -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator -wangdaye.com.geometricweather.R$attr: int onTouchUp -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Choice -com.bumptech.glide.R$id: int action_divider -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onSuccess(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int waveVariesBy -androidx.constraintlayout.widget.R$color: int abc_hint_foreground_material_light -wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_3 -androidx.constraintlayout.widget.R$styleable: int SearchView_commitIcon -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_LAUNCH_VALIDATOR -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: void providerDied() -cyanogenmod.weather.ICMWeatherManager$Stub: cyanogenmod.weather.ICMWeatherManager asInterface(android.os.IBinder) -com.google.android.material.theme.MaterialComponentsViewInflater -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_section_text -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy valueOf(java.lang.String) -com.google.android.gms.signin.internal.zak: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$attr: int backgroundColorStart -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) -androidx.preference.R$styleable: int TextAppearance_android_shadowDy -android.didikee.donate.R$styleable: int MenuView_preserveIconSpacing -wangdaye.com.geometricweather.R$string: int next -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -com.xw.repo.bubbleseekbar.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric -okio.Buffer: okio.BufferedSink writeDecimalLong(long) -wangdaye.com.geometricweather.R$attr: int iconStartPadding -retrofit2.RequestFactory: boolean isKotlinSuspendFunction -james.adaptiveicon.R$styleable: int FontFamilyFont_fontWeight -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: android.app.Application mApplication -com.xw.repo.bubbleseekbar.R$id: int shortcut -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getWindChillTemperature() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf -androidx.appcompat.R$styleable: int AppCompatTheme_seekBarStyle -androidx.work.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemMaxLines -com.jaredrummler.android.colorpicker.R$layout: int cpv_color_item_square -android.support.v4.os.ResultReceiver$MyRunnable: ResultReceiver$MyRunnable(android.support.v4.os.ResultReceiver,int,android.os.Bundle) -wangdaye.com.geometricweather.R$attr: int textAppearanceBody2 -androidx.preference.R$dimen: int abc_action_bar_stacked_max_height -cyanogenmod.app.IPartnerInterface$Stub$Proxy: void reboot() -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerComplete() -com.google.android.material.R$styleable: int MaterialButton_backgroundTintMode -com.google.android.material.slider.RangeSlider: void setLabelBehavior(int) -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_query -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotationY -androidx.constraintlayout.widget.R$attr: int mock_diagonalsColor -androidx.activity.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.R$styleable: int Preference_fragment -android.didikee.donate.R$styleable: int AppCompatTheme_selectableItemBackground -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isCompletable -com.xw.repo.bubbleseekbar.R$drawable: int abc_popup_background_mtrl_mult -wangdaye.com.geometricweather.R$xml: int widget_clock_day_horizontal -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_height -com.bumptech.glide.integration.okhttp.R$id: int action_image -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status CLEARED -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: boolean done -wangdaye.com.geometricweather.R$style: int ThemeOverlay_Design_TextInputEditText -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_elevation -okhttp3.logging.LoggingEventListener: void connectionReleased(okhttp3.Call,okhttp3.Connection) -okhttp3.internal.connection.RealConnection: okhttp3.Protocol protocol() -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver) -androidx.appcompat.R$id: int scrollIndicatorDown -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -james.adaptiveicon.R$id: int image -retrofit2.RequestFactory: boolean isFormEncoded -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constrainedHeight -wangdaye.com.geometricweather.R$drawable: int ic_close -okhttp3.Cache: java.util.Iterator urls() -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_seek_thumb -wangdaye.com.geometricweather.R$dimen: int little_weather_icon_size -james.adaptiveicon.R$color: int abc_tint_spinner -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind Wind -androidx.vectordrawable.R$id: int action_image -okhttp3.internal.ws.WebSocketReader: okio.Buffer$UnsafeCursor maskCursor -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String uvDescription -retrofit2.BuiltInConverters$VoidResponseBodyConverter: retrofit2.BuiltInConverters$VoidResponseBodyConverter INSTANCE -wangdaye.com.geometricweather.R$integer: R$integer() -okhttp3.CacheControl: boolean noCache() -androidx.constraintlayout.widget.R$attr: int layoutDescription -androidx.appcompat.R$color: int androidx_core_secondary_text_default_material_light -android.didikee.donate.R$style: int Base_Theme_AppCompat_DialogWhenLarge -com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextAppearance(int) -androidx.constraintlayout.widget.ConstraintLayout: void setOnConstraintsChanged(androidx.constraintlayout.widget.ConstraintsChangedListener) -com.google.android.gms.common.api.AvailabilityException -wangdaye.com.geometricweather.R$string: int widget_clock_day_horizontal -androidx.lifecycle.LiveData: void assertMainThread(java.lang.String) -wangdaye.com.geometricweather.R$layout: int abc_search_view -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_4 -androidx.constraintlayout.widget.R$string: int abc_action_bar_up_description -com.xw.repo.bubbleseekbar.R$attr: int titleMargins -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_visibility -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float rain -androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.xw.repo.bubbleseekbar.R$attr: int listPopupWindowStyle -androidx.constraintlayout.widget.R$drawable: int abc_ic_search_api_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric Metric -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.database.Database getDatabase() -okio.ByteString: int compareTo(java.lang.Object) -io.reactivex.internal.util.ExceptionHelper$Termination: ExceptionHelper$Termination() -wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendDailyProvider: WidgetTrendDailyProvider() -androidx.constraintlayout.widget.R$style: int Platform_V21_AppCompat -androidx.viewpager2.widget.ViewPager2: int getOrientation() -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_recyclerView -wangdaye.com.geometricweather.R$layout: int item_location -wangdaye.com.geometricweather.R$string: int mtrl_picker_a11y_prev_month -com.google.android.material.floatingactionbutton.FloatingActionButton: void setUseCompatPadding(boolean) -com.jaredrummler.android.colorpicker.R$attr: int tickMark -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7 -androidx.customview.R$layout: int notification_template_part_chronometer -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginEnd(int) -okhttp3.internal.http.CallServerInterceptor$CountingSink: long successfulCount -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.util.List Intervals -james.adaptiveicon.R$drawable: int abc_item_background_holo_dark -androidx.vectordrawable.animated.R$dimen: int notification_small_icon_size_as_large -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void innerError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: java.lang.String Unit -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_3DES_EDE_CBC_SHA -okhttp3.internal.http2.Http2Connection: void writeData(int,boolean,okio.Buffer,long) -androidx.preference.R$styleable: int AppCompatTheme_switchStyle -okhttp3.internal.cache2.Relay: okio.ByteString PREFIX_DIRTY -com.google.android.material.R$styleable: int Layout_layout_constraintBottom_creator -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getIce() -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DialogWhenLarge -com.google.android.material.R$styleable: int[] AnimatedStateListDrawableItem -io.reactivex.internal.observers.ForEachWhileObserver: boolean done -androidx.appcompat.resources.R$styleable -wangdaye.com.geometricweather.R$attr: int chipMinHeight -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: void setOnWeatherIconChangingListener(wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView$OnWeatherIconChangingListener) -com.google.android.material.R$drawable: int material_ic_edit_black_24dp -okhttp3.Response: long receivedResponseAtMillis -com.turingtechnologies.materialscrollbar.R$id: int design_navigation_view -wangdaye.com.geometricweather.R$string: int content_des_swipe_left_to_delete -wangdaye.com.geometricweather.R$dimen: int material_helper_text_font_1_3_padding_top -wangdaye.com.geometricweather.db.entities.HistoryEntity: long time -okhttp3.OkHttpClient: okhttp3.Authenticator proxyAuthenticator() -androidx.viewpager2.R$drawable: int notification_action_background -com.google.android.material.internal.ForegroundLinearLayout: void setForeground(android.graphics.drawable.Drawable) -com.google.android.material.chip.Chip: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -okhttp3.internal.cache.CacheStrategy$Factory: int ageSeconds -androidx.work.ListenableWorker -okhttp3.internal.http2.Http2Stream: void cancelStreamIfNecessary() -wangdaye.com.geometricweather.R$id: int groups -cyanogenmod.app.ICMTelephonyManager$Stub: cyanogenmod.app.ICMTelephonyManager asInterface(android.os.IBinder) -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_maxHeight -okio.Buffer: long indexOf(okio.ByteString,long) -com.google.android.material.textfield.TextInputLayout: void setHelperTextTextAppearance(int) -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderCerts -androidx.coordinatorlayout.R$id: int accessibility_custom_action_11 -androidx.preference.R$attr: int contentInsetLeft -androidx.preference.R$attr: int measureWithLargestChild -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getChina() -wangdaye.com.geometricweather.R$layout: int design_navigation_item -com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_layout -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_18 -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason DECODE_DATA -com.xw.repo.bubbleseekbar.R$anim: R$anim() -com.amap.api.fence.GeoFence: void setStatus(int) -com.google.android.material.R$string: int abc_searchview_description_query -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul1H -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -cyanogenmod.app.ILiveLockScreenManager: void cancelLiveLockScreen(java.lang.String,int,int) -wangdaye.com.geometricweather.R$string: int pressure -androidx.vectordrawable.R$id: int forever -com.google.android.material.R$attr: int hideOnScroll -android.didikee.donate.R$styleable: int SwitchCompat_thumbTint -wangdaye.com.geometricweather.R$string: int settings_title_forecast_tomorrow_time -cyanogenmod.os.Concierge$ParcelInfo: Concierge$ParcelInfo(android.os.Parcel) -androidx.preference.R$drawable: int abc_spinner_textfield_background_material -cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(android.os.Parcel) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onResume() -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setIconDrawable(android.graphics.drawable.Drawable) -androidx.preference.R$style: int Platform_AppCompat_Light -wangdaye.com.geometricweather.R$string: int greenDAO -com.google.android.material.R$attr: int itemTextAppearanceActive -androidx.coordinatorlayout.R$id: int accessibility_custom_action_24 -okhttp3.RealCall: java.lang.Object clone() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_LED_OFF_VALIDATOR -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTotalPrecipitationProbability(java.lang.Float) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color -com.jaredrummler.android.colorpicker.R$drawable: int abc_switch_track_mtrl_alpha -androidx.preference.R$style: int Widget_AppCompat_CompoundButton_RadioButton -androidx.core.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$attr: int altSrc -androidx.appcompat.R$attr: int panelMenuListWidth -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDefaultDisplayMode -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.preference.R$style: int Widget_AppCompat_Light_PopupMenu -com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_backgroundTint -wangdaye.com.geometricweather.R$attr: int min -okhttp3.CipherSuite$1 -androidx.preference.R$styleable: int SearchView_voiceIcon -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: long serialVersionUID -androidx.appcompat.R$dimen: int abc_seekbar_track_progress_height_material -androidx.drawerlayout.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity -james.adaptiveicon.R$attr: int actionBarWidgetTheme -wangdaye.com.geometricweather.common.ui.activities.AwakeUpdateActivity: AwakeUpdateActivity() -james.adaptiveicon.R$styleable: int[] ColorStateListItem -androidx.constraintlayout.widget.R$attr: int round -okhttp3.internal.http.HttpHeaders: okhttp3.Headers varyHeaders(okhttp3.Response) -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getUnitId() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: WeatherEntityDao(org.greenrobot.greendao.internal.DaoConfig) -androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -com.google.android.material.R$styleable: int BottomAppBar_backgroundTint -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startColor -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -com.google.android.material.R$attr: int editTextStyle -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_updateNotificationGroup -james.adaptiveicon.R$drawable: int abc_text_select_handle_middle_mtrl_light -com.xw.repo.bubbleseekbar.R$id: int spacer -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_divider -com.google.android.gms.common.server.converter.StringToIntConverter$zaa -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okio.Okio$4: java.net.Socket val$socket -cyanogenmod.app.IProfileManager: android.app.NotificationGroup getNotificationGroup(android.os.ParcelUuid) -wangdaye.com.geometricweather.R$styleable: int Preference_order -io.reactivex.internal.util.EmptyComponent: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$attr: int scrimVisibleHeightTrigger -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String providerId -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.R$attr: int cornerRadius -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight -androidx.preference.R$attr: int useSimpleSummaryProvider -wangdaye.com.geometricweather.R$styleable: int KeyPosition_transitionEasing -com.google.android.material.R$attr: int backgroundSplit -com.google.android.material.card.MaterialCardView: void setChecked(boolean) -cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String mPackage -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Small -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_menu_layout -wangdaye.com.geometricweather.common.basic.models.weather.Hourly -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_LED_ON_VALIDATOR -com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontWeight -androidx.appcompat.R$attr: int listChoiceBackgroundIndicator -com.amap.api.location.AMapLocationClientOption$1 -com.jaredrummler.android.colorpicker.R$attr: int buttonBarNeutralButtonStyle -cyanogenmod.hardware.ICMHardwareService: boolean unRegisterThermalListener(cyanogenmod.hardware.IThermalListenerCallback) -okhttp3.logging.HttpLoggingInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -okio.ByteString: okio.ByteString sha1() -androidx.fragment.R$styleable: int FontFamilyFont_fontVariationSettings -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_colorPresets -androidx.customview.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_horizontal_setting -android.didikee.donate.R$anim: int abc_popup_exit -james.adaptiveicon.R$attr: int contentInsetStartWithNavigation -okhttp3.EventListener: void secureConnectStart(okhttp3.Call) -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.String TABLENAME -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: long serialVersionUID -cyanogenmod.themes.IThemeChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.legacy.coreutils.R$styleable: int ColorStateListItem_alpha -com.google.android.material.slider.RangeSlider: float getStepSize() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_creator -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Category -androidx.appcompat.R$attr: int searchViewStyle -androidx.constraintlayout.widget.R$attr: int actionMenuTextColor -androidx.recyclerview.R$id: int notification_main_column_container -androidx.appcompat.R$color: int dim_foreground_material_dark -wangdaye.com.geometricweather.R$drawable: int notif_temp_24 -wangdaye.com.geometricweather.R$styleable: int[] ButtonBarLayout -com.google.android.material.R$string: int abc_menu_enter_shortcut_label -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean isDisposed() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setCo(java.lang.String) -com.bumptech.glide.integration.okhttp.R$layout: int notification_action_tombstone -android.didikee.donate.R$attr: int splitTrack -androidx.swiperefreshlayout.R$id: int tag_unhandled_key_event_manager -com.turingtechnologies.materialscrollbar.R$attr: int srcCompat -androidx.preference.R$styleable: int AppCompatTheme_popupWindowStyle -com.google.gson.stream.JsonReader: int peeked -wangdaye.com.geometricweather.db.entities.DailyEntity: DailyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.util.Date,java.util.Date,java.util.Date,java.util.Date,java.lang.Integer,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,float) -androidx.appcompat.R$anim: int abc_tooltip_enter -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric -androidx.preference.R$styleable: int CheckBoxPreference_android_disableDependentsState -retrofit2.OkHttpCall$1: retrofit2.Callback val$callback -com.jaredrummler.android.colorpicker.R$color: int material_grey_600 -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode nighttimeWeatherCode -com.google.android.material.R$anim: int abc_tooltip_enter -androidx.recyclerview.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_112 -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(double) -com.jaredrummler.android.colorpicker.R$color: int preference_fallback_accent_color -androidx.viewpager.R$dimen: int compat_notification_large_icon_max_width -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object getKey(java.lang.Object) -com.google.android.material.card.MaterialCardView: void setCheckedIconMarginResource(int) -androidx.lifecycle.ReportFragment: void onResume() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_seekBarStyle -android.didikee.donate.R$attr: int actionBarStyle -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature -okhttp3.internal.http.BridgeInterceptor: BridgeInterceptor(okhttp3.CookieJar) -retrofit2.Call -okhttp3.internal.platform.AndroidPlatform$CloseGuard -okhttp3.internal.cache.DiskLruCache$Editor: void abort() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView_DropDown -com.google.android.material.R$styleable: int TextInputLayout_suffixText -androidx.appcompat.R$attr: int buttonStyleSmall +androidx.fragment.app.FragmentActivity: FragmentActivity() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_android_windowIsFloating +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerSuccess(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver,java.lang.Object) +com.google.android.material.R$dimen: int mtrl_slider_label_radius +com.google.android.material.appbar.HeaderScrollingViewBehavior: HeaderScrollingViewBehavior(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$string: int go_to_set +com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$attr: int materialAlertDialogBodyTextStyle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderFetchTimeout +androidx.appcompat.widget.AppCompatButton +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +wangdaye.com.geometricweather.R$attr: int bsb_show_section_mark +androidx.appcompat.app.AppCompatDelegateImpl$PanelFeatureState$SavedState: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$id: int italic +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dropDownListViewStyle +james.adaptiveicon.R$drawable: int abc_list_selector_background_transition_holo_dark +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialButtonToggleGroup +androidx.lifecycle.extensions.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalStyle +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingBottom +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_min_width_minor +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_textAllCaps +androidx.preference.R$dimen: int abc_dialog_fixed_width_major +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceTheme +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindLevel +okhttp3.internal.Internal: void addLenient(okhttp3.Headers$Builder,java.lang.String,java.lang.String) +androidx.preference.R$attr: int viewInflaterClass +com.amap.api.fence.GeoFence: float i +androidx.appcompat.resources.R$id: int notification_main_column +org.greenrobot.greendao.AbstractDao: void deleteInTx(java.lang.Iterable) +androidx.swiperefreshlayout.R$layout: int notification_template_part_time +cyanogenmod.profiles.LockSettings: void setValue(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_31 +wangdaye.com.geometricweather.R$attr: int thumbTintMode +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void setResource(io.reactivex.disposables.Disposable) +okio.BufferedSink +com.jaredrummler.android.colorpicker.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$color: int androidx_core_secondary_text_default_material_light +com.xw.repo.bubbleseekbar.R$attr: int suggestionRowLayout +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf +androidx.constraintlayout.widget.Placeholder: void setEmptyVisibility(int) +androidx.constraintlayout.widget.R$dimen: int abc_select_dialog_padding_start_material +com.google.android.material.bottomnavigation.BottomNavigationView$SavedState: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$layout: int abc_action_menu_item_layout +androidx.appcompat.widget.AppCompatCheckBox: void setSupportButtonTintMode(android.graphics.PorterDuff$Mode) +androidx.appcompat.R$attr: int height +androidx.appcompat.widget.Toolbar: void setContentInsetStartWithNavigation(int) +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabText +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getThunderstormPrecipitationProbability() +james.adaptiveicon.R$style: int Platform_AppCompat_Light +wangdaye.com.geometricweather.R$attr: int materialCalendarFullscreenTheme +okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method warnIfOpenMethod +androidx.work.impl.WorkManagerInitializer: WorkManagerInitializer() +com.google.android.material.R$styleable: int ActionBarLayout_android_layout_gravity +okhttp3.CacheControl: int sMaxAgeSeconds() +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long end +com.google.android.material.R$styleable: int KeyTimeCycle_android_elevation +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getPM25() +androidx.vectordrawable.R$styleable: int GradientColor_android_startY +androidx.transition.R$dimen: int compat_button_inset_vertical_material +androidx.vectordrawable.R$id: int accessibility_custom_action_5 +com.google.android.material.R$attr: int drawPath +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder queryOnly() +androidx.lifecycle.MediatorLiveData$Source +androidx.preference.R$attr: int colorButtonNormal +com.xw.repo.bubbleseekbar.R$styleable: int[] MenuView +james.adaptiveicon.R$attr: int windowFixedWidthMinor +com.google.android.material.R$attr: int textAppearanceListItemSecondary +androidx.preference.R$layout: int abc_screen_simple +okhttp3.OkHttpClient: boolean retryOnConnectionFailure +com.xw.repo.bubbleseekbar.R$attr: int switchMinWidth +io.reactivex.Observable: io.reactivex.Observable debounce(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +androidx.viewpager2.R$attr: int alpha +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemBackground(android.graphics.drawable.Drawable) +androidx.cardview.R$styleable: int CardView_contentPaddingBottom +okhttp3.internal.tls.BasicCertificateChainCleaner: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$string: int settings_notification_can_be_cleared_on +com.google.android.material.R$dimen: int mtrl_high_ripple_pressed_alpha +cyanogenmod.app.ProfileGroup: void setLightsMode(cyanogenmod.app.ProfileGroup$Mode) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_disabled_elevation +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property O3 +com.google.android.material.R$styleable: int MaterialTextAppearance_android_lineHeight +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getStrokeColorStateList() +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_NoActionBar +okhttp3.internal.platform.OptionalMethod: java.lang.String methodName +com.google.android.material.chip.Chip: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +io.reactivex.Observable: io.reactivex.Observable throttleFirst(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okhttp3.ResponseBody$BomAwareReader: ResponseBody$BomAwareReader(okio.BufferedSource,java.nio.charset.Charset) +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode PROTOCOL_ERROR +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onError(java.lang.Throwable) +androidx.appcompat.R$layout: int abc_action_menu_item_layout +okio.ByteString: java.lang.String toString() +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getDescription() +com.google.android.material.R$styleable: int ShapeableImageView_shapeAppearanceOverlay +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Medium +com.jaredrummler.android.colorpicker.R$dimen: int notification_top_pad +com.google.android.material.R$style: int Widget_AppCompat_ImageButton +androidx.appcompat.resources.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.R$string: int feedback_add_location_manually +okio.HashingSink +com.google.android.material.R$id: int cancel_button +androidx.fragment.R$styleable: int FontFamily_fontProviderFetchStrategy +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Spinner +androidx.constraintlayout.widget.R$color: int abc_secondary_text_material_dark +androidx.preference.R$id: int screen +wangdaye.com.geometricweather.R$dimen: int abc_text_size_title_material +retrofit2.Invocation: java.lang.String toString() +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_spinner +androidx.preference.R$attr: int divider +okhttp3.internal.ws.WebSocketWriter: okio.BufferedSink sink +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfSnow +android.didikee.donate.R$attr: int actionLayout +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +com.google.android.gms.common.internal.BinderWrapper +io.reactivex.Observable: io.reactivex.Observable create(io.reactivex.ObservableOnSubscribe) +wangdaye.com.geometricweather.R$layout: int item_about_line +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogTheme +retrofit2.Response: java.lang.String toString() +androidx.coordinatorlayout.R$attr: int layout_insetEdge +androidx.work.R$integer: int status_bar_notification_info_maxnum +cyanogenmod.content.Intent: java.lang.String EXTRA_PROTECTED_COMPONENTS +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: org.reactivestreams.Subscription upstream +androidx.appcompat.R$styleable: int ActionBar_height +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$id: int mtrl_calendar_frame +okhttp3.internal.ws.RealWebSocket: void onReadPing(okio.ByteString) +io.reactivex.internal.disposables.DisposableHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) +com.google.android.material.R$attr: int errorTextColor +com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_toId +retrofit2.Retrofit$Builder: java.util.List converterFactories() +androidx.viewpager.R$styleable: int FontFamily_fontProviderAuthority +com.github.rahatarmanahmed.cpv.CircularProgressView$7 +com.google.android.material.button.MaterialButton: int getIconGravity() +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int OTHER_STATE_HAS_VALUE +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getCityId() +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.lang.Object leaveTransform(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_begin +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_CLOCK +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMargins +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorTextAppearance +okhttp3.Dns: java.util.List lookup(java.lang.String) +retrofit2.ParameterHandler$HeaderMap: ParameterHandler$HeaderMap(java.lang.reflect.Method,int,retrofit2.Converter) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String getValue() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap +james.adaptiveicon.R$attr: int listPreferredItemPaddingRight +com.google.android.material.R$styleable: int[] KeyPosition +androidx.preference.R$id: int accessibility_custom_action_26 +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onComplete() +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_ALL +androidx.hilt.R$id: int forever +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: boolean cancelled +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Button +okhttp3.internal.http.RealInterceptorChain: okhttp3.Request request() +com.xw.repo.bubbleseekbar.R$dimen: int notification_large_icon_height +androidx.legacy.coreutils.R$id: int right_side +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_switchTextOn +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: MfWarningsResult() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowNoTitle +androidx.preference.R$style: int TextAppearance_AppCompat_SearchResult_Title +com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusTopEnd +okhttp3.internal.http2.Http2Connection$Listener$1: void onStream(okhttp3.internal.http2.Http2Stream) +okhttp3.internal.ws.RealWebSocket: RealWebSocket(okhttp3.Request,okhttp3.WebSocketListener,java.util.Random,long) +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_focusable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX() +androidx.loader.R$styleable: int GradientColor_android_centerColor +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode CONNECT_ERROR +androidx.appcompat.R$styleable: int[] ActionBarLayout +androidx.constraintlayout.widget.R$id: int action_divider +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_width_major +okhttp3.internal.connection.StreamAllocation: java.lang.Object callStackTrace +com.baidu.location.e.l$b: int c(com.baidu.location.e.l$b) +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_id +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: AccuAlertResult() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_HOME_LONG_PRESS_ACTION_VALIDATOR +com.google.android.material.R$styleable: int DrawerArrowToggle_barLength +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_android_textAppearance +okio.Utf8: long size(java.lang.String,int,int) +androidx.preference.R$styleable: int AppCompatTheme_colorControlActivated +com.jaredrummler.android.colorpicker.R$attr: int title +com.google.android.material.R$attr: int elevation +androidx.fragment.R$styleable +android.didikee.donate.R$layout: int abc_alert_dialog_material +androidx.viewpager2.R$drawable: int notification_bg +androidx.swiperefreshlayout.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomSheetDialog +com.google.gson.internal.LinkedTreeMap: LinkedTreeMap() +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type CONSTANT +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type[] values() +com.xw.repo.bubbleseekbar.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$id: int widget_clock_day_aqiHumidity +com.google.android.material.R$attr: int cardCornerRadius +com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_Primary +com.google.android.material.card.MaterialCardView: int getCheckedIconMargin() +androidx.legacy.coreutils.R$integer: int status_bar_notification_info_maxnum +cyanogenmod.providers.CMSettings$System: java.lang.String __MAGICAL_TEST_PASSING_ENABLER +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_Layout_layout_scrollFlags +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: void run() +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void slideLockscreenIn() +androidx.constraintlayout.widget.Placeholder: void setContentId(int) +cyanogenmod.power.IPerformanceManager$Stub$Proxy: android.os.IBinder mRemote +androidx.appcompat.widget.Toolbar: int getTitleMarginEnd() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Toolbar +androidx.coordinatorlayout.R$id: int notification_background +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Borderless_Colored +io.reactivex.Observable: io.reactivex.Observable concatArrayEager(io.reactivex.ObservableSource[]) +okhttp3.internal.Util: boolean nonEmptyIntersection(java.util.Comparator,java.lang.String[],java.lang.String[]) +androidx.constraintlayout.widget.R$attr: int transitionPathRotate +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mRingerMode +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getShrinkMotionSpec() +okio.ByteString: okio.ByteString read(java.io.InputStream,int) +okhttp3.internal.http2.Header: java.lang.String TARGET_PATH_UTF8 +com.google.android.material.R$styleable: int[] ChipGroup +androidx.preference.R$attr: int showDividers +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_disabled_elevation +io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicLong missedRequested +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State FAILED wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_Tooltip -okio.Buffer: Buffer() -androidx.coordinatorlayout.R$dimen: int compat_button_inset_vertical_material -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf -wangdaye.com.geometricweather.R$attr: int keyPositionType -cyanogenmod.externalviews.ExternalViewProviderService: java.lang.String TAG -com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_Overflow -androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context,android.util.AttributeSet) -androidx.hilt.work.R$id: int tag_accessibility_actions -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void dispose() -androidx.preference.R$dimen: int abc_control_padding_material -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$style: int Platform_MaterialComponents_Dialog -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_ab_back_material -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: $Gson$Types$WildcardTypeImpl(java.lang.reflect.Type[],java.lang.reflect.Type[]) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_pivotY -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: org.reactivestreams.Subscription upstream -wangdaye.com.geometricweather.R$styleable: int Badge_badgeTextColor -com.google.android.material.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity -androidx.fragment.R$id: int forever -com.google.gson.FieldNamingPolicy$3 -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityDestroyed(android.app.Activity) -android.didikee.donate.R$drawable: int abc_ic_star_half_black_16dp -okhttp3.HttpUrl$Builder: java.lang.String encodedUsername -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Button -wangdaye.com.geometricweather.R$id: int dialog_location_help_title -com.google.android.material.R$style: int ThemeOverlayColorAccentRed -wangdaye.com.geometricweather.R$style: int Preference_Category -com.google.android.material.R$dimen: int mtrl_calendar_header_divider_thickness -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String name -wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_doneBtn -wangdaye.com.geometricweather.common.basic.models.weather.Astro: Astro(java.util.Date,java.util.Date) -android.didikee.donate.R$styleable: int[] PopupWindowBackgroundState -retrofit2.Call: boolean isCanceled() -androidx.viewpager.widget.PagerTabStrip -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_toBottomOf -okhttp3.internal.ws.WebSocketWriter$FrameSink: void write(okio.Buffer,long) -androidx.lifecycle.ProcessLifecycleOwner$2: void onStart() +com.turingtechnologies.materialscrollbar.R$style: int Platform_AppCompat_Light +wangdaye.com.geometricweather.R$style: int Theme_Design_BottomSheetDialog +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableItem_android_id +com.baidu.location.e.n: n(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) +wangdaye.com.geometricweather.R$array: int notification_style_values +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +wangdaye.com.geometricweather.R$dimen: int action_bar_size +wangdaye.com.geometricweather.R$drawable: int notif_temp_139 +com.google.android.material.R$attr: int passwordToggleTintMode +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void cancelAll() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_holo_dark +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_padding +okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_ENCODE_SET_URI +androidx.constraintlayout.widget.R$dimen +cyanogenmod.themes.ThemeManager$2: ThemeManager$2(cyanogenmod.themes.ThemeManager) +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorHeight(int) +org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Object[]) +android.didikee.donate.R$styleable: int ViewBackgroundHelper_android_background +com.google.android.material.textfield.TextInputLayout: void setStartIconCheckable(boolean) +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_MEDIUM_COLOR +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: double seaLevel +com.bumptech.glide.integration.okhttp.R$id: int line1 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_LED_ON_VALIDATOR +androidx.coordinatorlayout.R$color: int ripple_material_light +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void subscribeNext() +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver +okio.InflaterSource: boolean refill() +io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean offer(java.lang.Object,java.lang.Object) +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat[] values() +wangdaye.com.geometricweather.R$attr: int suffixTextColor +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCity +james.adaptiveicon.R$drawable: int abc_spinner_mtrl_am_alpha +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date publishDate +android.didikee.donate.R$styleable: int ActionBar_height +wangdaye.com.geometricweather.R$string: int settings_title_week_icon_mode +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Date +james.adaptiveicon.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light +com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context) +androidx.appcompat.widget.ListPopupWindow: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +james.adaptiveicon.R$styleable: int[] AlertDialog +com.google.android.material.R$styleable: int TextInputLayout_prefixText +cyanogenmod.app.Profile$NotificationLightMode +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getGrassLevel() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: long serialVersionUID +wangdaye.com.geometricweather.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.R$attr: int scrimVisibleHeightTrigger +com.jaredrummler.android.colorpicker.R$id: int src_in +androidx.constraintlayout.widget.R$attr: int queryHint +james.adaptiveicon.R$dimen: int compat_button_inset_horizontal_material +androidx.hilt.R$color: R$color() +com.google.android.material.card.MaterialCardView: void setMaxCardElevation(float) +com.google.android.material.progressindicator.ProgressIndicator: void setCircularInset(int) +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: WeatherInfo$DayForecast$Builder(int) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language PORTUGUESE +androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableCompat +androidx.appcompat.R$id: int edit_query +okhttp3.internal.http2.ErrorCode +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul6H +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long readKey(android.database.Cursor,int) +androidx.appcompat.R$layout: int abc_activity_chooser_view +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_MediumComponent +androidx.constraintlayout.widget.R$bool +wangdaye.com.geometricweather.R$attr: int lineSpacing +androidx.constraintlayout.widget.R$styleable: int Transform_android_elevation +okio.Pipe$PipeSink: okio.Timeout timeout +androidx.core.R$dimen: int notification_action_text_size +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder domain(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int ic_state_checked +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onAttach() +androidx.appcompat.R$styleable: int AppCompatTheme_toolbarStyle +android.didikee.donate.R$integer +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxDaoPlain +james.adaptiveicon.R$style: int Widget_AppCompat_SearchView +androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xss +androidx.appcompat.R$attr: int colorControlNormal +com.bumptech.glide.integration.okhttp.R$styleable: R$styleable() +com.google.android.material.R$color: int mtrl_choice_chip_background_color +com.google.android.material.R$dimen: int mtrl_btn_stroke_size +androidx.hilt.work.R$id: int accessibility_custom_action_30 +james.adaptiveicon.R$attr: int iconifiedByDefault +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: cyanogenmod.app.CustomTileListenerService this$0 +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void innerError(java.lang.Throwable) +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean hasNext() +com.google.android.material.R$styleable: int MenuView_android_itemTextAppearance +wangdaye.com.geometricweather.R$anim: int fragment_close_exit +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_PopupMenu +android.didikee.donate.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_95 +androidx.constraintlayout.widget.R$style: int Platform_Widget_AppCompat_Spinner +james.adaptiveicon.R$styleable: int AppCompatTheme_windowMinWidthMajor +androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotationY +androidx.preference.R$style: int Base_V26_Theme_AppCompat_Light +androidx.preference.R$attr: int maxHeight +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void fail(java.lang.Throwable,io.reactivex.Observer,io.reactivex.internal.queue.SpscLinkedArrayQueue) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +james.adaptiveicon.R$dimen: int abc_search_view_preferred_width +com.google.android.material.R$drawable: int abc_list_selector_disabled_holo_dark +io.reactivex.internal.subscriptions.BasicQueueSubscription: java.lang.Object poll() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_textAllCaps +androidx.fragment.R$id: int normal +androidx.appcompat.R$styleable: int AlertDialog_android_layout +wangdaye.com.geometricweather.R$attr: int switchStyle +cyanogenmod.externalviews.ExternalView$8 +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setSlingshotDistance(int) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String EnglishName +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_maxElementsWrap +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_cardForegroundColor +com.google.android.material.R$styleable: int AppCompatTheme_listMenuViewStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setTime(long) +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert +cyanogenmod.weather.RequestInfo: RequestInfo(android.os.Parcel) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: java.util.List getAlerts() +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$drawable: int notif_temp_31 +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lc +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER_Y +androidx.preference.R$dimen: int abc_dialog_title_divider_material +androidx.hilt.work.R$string +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER +com.google.android.material.tabs.TabLayout: int getTabIndicatorGravity() +com.google.android.material.R$color: int dim_foreground_disabled_material_light +wangdaye.com.geometricweather.R$color: int striking_red +androidx.swiperefreshlayout.R$style +james.adaptiveicon.R$color: int dim_foreground_disabled_material_dark +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index no2 +androidx.hilt.lifecycle.R$drawable: int notification_template_icon_bg +androidx.drawerlayout.R$dimen +okio.RealBufferedSource: int read(byte[],int,int) +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() +androidx.appcompat.R$drawable: int abc_list_selector_disabled_holo_light +io.reactivex.internal.subscriptions.SubscriptionArbiter: void drain() +okio.Buffer: java.lang.String readUtf8LineStrict() +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_disabled_holo_dark +com.jaredrummler.android.colorpicker.R$attr: int listChoiceBackgroundIndicator +wangdaye.com.geometricweather.R$attr: int itemShapeFillColor +wangdaye.com.geometricweather.R$id: int container_main_footer_editButton +androidx.constraintlayout.widget.R$attr: int onHide +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ScheduledExecutorService access$500(okhttp3.internal.http2.Http2Connection) +androidx.transition.R$styleable: int GradientColor_android_endY +com.amap.api.location.AMapLocation: void setDistrict(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_top +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_max +androidx.legacy.coreutils.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$styleable: int[] SnackbarLayout +androidx.appcompat.R$dimen: int tooltip_precise_anchor_extra_offset +com.google.android.material.R$attr: int motionTarget +androidx.appcompat.resources.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context,android.util.AttributeSet,int) +james.adaptiveicon.R$string: int abc_searchview_description_submit +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: ObservableSampleTimed$SampleTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +james.adaptiveicon.R$layout: int abc_select_dialog_material +com.jaredrummler.android.colorpicker.R$layout: int abc_cascading_menu_item_layout +wangdaye.com.geometricweather.R$attr: int overlay androidx.appcompat.widget.SwitchCompat: void setShowText(boolean) -wangdaye.com.geometricweather.R$dimen: int current_weather_icon_container_size -com.xw.repo.bubbleseekbar.R$color -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetEnd -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar -androidx.constraintlayout.widget.R$style: int Base_V26_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_overlay -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isDataConnectionEnabled -com.turingtechnologies.materialscrollbar.R$string -com.jaredrummler.android.colorpicker.R$attr: int trackTintMode -okhttp3.internal.cache.DiskLruCache: boolean closed -com.google.android.material.slider.RangeSlider: void setThumbStrokeWidthResource(int) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean active -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_8 -com.google.android.material.R$id: int accessibility_custom_action_26 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -androidx.swiperefreshlayout.R$id: int blocking -androidx.recyclerview.widget.RecyclerView$SavedState: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemBackground -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: ObservableCreate$CreateEmitter(io.reactivex.Observer) -androidx.recyclerview.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf -okio.Buffer: okio.Buffer writeInt(int) -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginEnd -com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Light_Dialog -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onComplete() -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_material_dark -okio.BufferedSink: okio.BufferedSink writeLongLe(long) -wangdaye.com.geometricweather.R$array: int duration_unit_voices -androidx.preference.R$attr: int buttonBarButtonStyle -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_max -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.R$string: int sp_widget_day_setting -cyanogenmod.app.CustomTile: android.content.Intent onSettingsClick -okio.Source -okhttp3.internal.cache2.Relay: java.io.RandomAccessFile file -com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_material_light -com.turingtechnologies.materialscrollbar.R$attr: int itemPadding -cyanogenmod.app.ProfileGroup$Mode -com.xw.repo.bubbleseekbar.R$drawable: int abc_switch_track_mtrl_alpha -retrofit2.package-info -wangdaye.com.geometricweather.R$color: int dim_foreground_disabled_material_light -androidx.preference.R$attr: int navigationIcon -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_variablePadding -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float co -retrofit2.http.Header: java.lang.String value() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.util.Date Set -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_min_width_minor -com.google.gson.stream.JsonReader: boolean skipTo(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void onAttachedToWindow() -cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_ADJUST_SOUNDS_ENABLED -com.google.android.material.R$styleable: int KeyTrigger_onNegativeCross -com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_view -androidx.lifecycle.ProcessLifecycleOwner$3: ProcessLifecycleOwner$3(androidx.lifecycle.ProcessLifecycleOwner) -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$dimen: int design_snackbar_max_width -wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Bottom_Left -com.xw.repo.bubbleseekbar.R$attr: int colorAccent -com.google.android.material.internal.FlowLayout: void setSingleLine(boolean) -com.google.android.material.appbar.AppBarLayout: int getDownNestedPreScrollRange() -androidx.core.R$id: int info -com.google.android.material.appbar.CollapsingToolbarLayout: long getScrimAnimationDuration() -com.google.android.material.R$attr: int statusBarScrim -com.google.android.material.slider.BaseSlider -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar -androidx.appcompat.R$styleable: int Toolbar_navigationContentDescription -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL -cyanogenmod.themes.IThemeChangeListener: void onFinish(boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabBackground -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_isThemeApplying -androidx.appcompat.R$attr: int actionModeShareDrawable -wangdaye.com.geometricweather.R$id: int masked -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder followSslRedirects(boolean) -okio.ForwardingSink: void close() -org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,int) -androidx.loader.R$id: int icon_group -okhttp3.internal.connection.StreamAllocation: void noNewStreams() -org.greenrobot.greendao.AbstractDao: java.util.List loadAllAndCloseCursor(android.database.Cursor) -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityStarted(android.app.Activity) -android.didikee.donate.R$dimen: int abc_dropdownitem_text_padding_right -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_begin -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: ChineseCityEntityDao$Properties() -androidx.appcompat.resources.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -com.google.android.material.button.MaterialButton: void removeOnCheckedChangeListener(com.google.android.material.button.MaterialButton$OnCheckedChangeListener) -androidx.constraintlayout.widget.R$attr: int listMenuViewStyle -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: io.reactivex.Observer downstream -androidx.appcompat.R$drawable: int abc_seekbar_thumb_material -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max -androidx.appcompat.widget.ViewStubCompat -androidx.coordinatorlayout.R$id: int right_icon -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder retryOnConnectionFailure(boolean) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void errorAll(io.reactivex.Observer) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.util.AtomicThrowable errors -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_color -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String getDefenseText() -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_resetAll -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context,android.util.AttributeSet,int) -retrofit2.Retrofit$1: java.lang.Object[] emptyArgs -com.google.android.material.R$attr: int windowFixedWidthMajor -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextColor -android.didikee.donate.R$color: int dim_foreground_disabled_material_dark -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerError(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconEnabled -cyanogenmod.hardware.ICMHardwareService: java.lang.String getLtoSource() -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_dark -com.google.android.material.R$attr: int subMenuArrow -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: java.util.concurrent.Executor callbackExecutor -com.google.android.material.R$style: int CardView_Dark -androidx.core.R$id: int accessibility_custom_action_4 -okio.Segment: int SHARE_MINIMUM -androidx.preference.R$drawable: int abc_action_bar_item_background_material -androidx.constraintlayout.widget.R$id: int content -androidx.recyclerview.R$styleable: int RecyclerView_android_descendantFocusability -wangdaye.com.geometricweather.R$styleable: int[] SwipeRefreshLayout -okhttp3.internal.cache.DiskLruCache: java.util.regex.Pattern LEGAL_KEY_PATTERN -com.github.rahatarmanahmed.cpv.R$bool -androidx.viewpager2.R$dimen: int fastscroll_minimum_range -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float rainPrecipitationProbability +com.google.android.material.R$styleable: int MaterialButton_iconGravity +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled +wangdaye.com.geometricweather.R$drawable: int notif_temp_43 +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_logoDescription +cyanogenmod.providers.ThemesContract$ThemesColumns: android.net.Uri CONTENT_URI +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage valueOf(java.lang.String) +androidx.lifecycle.LifecycleRegistry: void backwardPass(androidx.lifecycle.LifecycleOwner) +com.google.android.material.R$styleable: int LinearLayoutCompat_measureWithLargestChild +androidx.constraintlayout.widget.R$attr: int applyMotionScene +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getRain() +wangdaye.com.geometricweather.R$attr: int titleTextColor +com.turingtechnologies.materialscrollbar.TouchScrollBar: boolean getHide() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitationDuration +com.google.android.material.R$id: int mtrl_card_checked_layer_id +okhttp3.Response: java.util.List challenges() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf +io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription INSTANCE +wangdaye.com.geometricweather.R$style: int widget_text_clock +wangdaye.com.geometricweather.R$string: int content_des_no_precipitation +com.google.android.material.R$styleable: int AppCompatTextView_autoSizeTextType +okio.Source: void close() +androidx.transition.R$id: int transition_scene_layoutid_cache +okhttp3.logging.LoggingEventListener: void callEnd(okhttp3.Call) +androidx.constraintlayout.widget.R$attr: int actionModeCutDrawable +com.google.android.material.R$id: int search_edit_frame +androidx.preference.R$layout: int preference_widget_switch +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Body2 +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DeterminateDrawable getProgressDrawable() +androidx.lifecycle.MediatorLiveData$Source: androidx.lifecycle.Observer mObserver +com.google.android.material.R$attr: int flow_horizontalBias +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String moonPhaseDescription +androidx.constraintlayout.widget.R$id: int top +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveDecay +retrofit2.ParameterHandler$FieldMap: ParameterHandler$FieldMap(java.lang.reflect.Method,int,retrofit2.Converter,boolean) +com.jaredrummler.android.colorpicker.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float no2 +io.reactivex.internal.queue.SpscArrayQueue: int lookAheadStep +wangdaye.com.geometricweather.R$attr: int layout_editor_absoluteX +wangdaye.com.geometricweather.R$layout: int widget_text +com.google.android.material.R$id: int action_bar +androidx.drawerlayout.R$attr: int fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$attr: int contentScrim +androidx.constraintlayout.widget.Group: Group(android.content.Context,android.util.AttributeSet) +cyanogenmod.app.CustomTile: android.app.PendingIntent deleteIntent +com.google.android.gms.common.api.GoogleApiClient: void registerConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_textLocale +androidx.appcompat.R$style: int Base_AlertDialog_AppCompat_Light +androidx.constraintlayout.widget.R$id: int src_in +com.google.android.material.R$styleable: int AppCompatTheme_actionBarItemBackground +cyanogenmod.profiles.BrightnessSettings$1: BrightnessSettings$1() +androidx.dynamicanimation.R$color: int notification_action_color_filter +androidx.lifecycle.Observer: void onChanged(java.lang.Object) +okhttp3.HttpUrl: okhttp3.HttpUrl resolve(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int[] FontFamily +androidx.appcompat.R$dimen: int abc_button_inset_horizontal_material +androidx.appcompat.R$attr: int actionMenuTextAppearance +com.turingtechnologies.materialscrollbar.R$attr: int behavior_fitToContents +wangdaye.com.geometricweather.R$id: int progress +wangdaye.com.geometricweather.R$attr: int displayOptions +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceImageView +com.google.android.material.chip.Chip: void setTextAppearance(com.google.android.material.resources.TextAppearance) +com.google.android.material.R$styleable: int ConstraintSet_android_maxHeight +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeTextType +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarDivider +androidx.transition.R$styleable: int GradientColor_android_startX +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetStartWithNavigation +cyanogenmod.providers.CMSettings$Secure$1: boolean validate(java.lang.String) +okio.ForwardingSink +com.amap.api.location.AMapLocation: java.lang.String n(com.amap.api.location.AMapLocation,java.lang.String) +com.google.android.material.R$attr: int textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String x +com.google.android.material.R$attr: int placeholderText +com.google.android.material.imageview.ShapeableImageView: void setStrokeWidthResource(int) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_extra_spacing_horizontal +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_rippleColor +com.jaredrummler.android.colorpicker.R$layout: int support_simple_spinner_dropdown_item +androidx.appcompat.app.AppCompatViewInflater: AppCompatViewInflater() +com.google.android.material.R$attr: int colorOnSecondary +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum +androidx.hilt.lifecycle.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$color: int mtrl_tabs_icon_color_selector +androidx.appcompat.R$anim: int btn_checkbox_to_checked_icon_null_animation +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_submit +wangdaye.com.geometricweather.R$id: int topPanel +com.jaredrummler.android.colorpicker.R$attr: int suggestionRowLayout +okhttp3.MultipartBody: long contentLength() +androidx.appcompat.R$styleable: int Toolbar_titleMargin +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State[] $VALUES +okhttp3.ResponseBody: okhttp3.MediaType contentType() wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetHourlyEntityList() -wangdaye.com.geometricweather.R$drawable: int design_bottom_navigation_item_background -androidx.hilt.lifecycle.R$dimen: int notification_right_icon_size -com.turingtechnologies.materialscrollbar.R$dimen: int disabled_alpha_material_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setLogo(java.lang.String) -com.google.android.material.R$attr: int navigationContentDescription -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult -cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationMax() -okhttp3.internal.http2.Hpack$Reader: int headerCount -androidx.preference.R$styleable: int Preference_title -com.google.android.material.textfield.TextInputLayout: void setEndIconActivated(boolean) -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: BlockingObservableIterable$BlockingObservableIterator(int) -com.google.android.material.R$style: int Animation_AppCompat_Dialog -androidx.constraintlayout.widget.R$styleable: int Constraint_drawPath -androidx.constraintlayout.widget.R$id: int blocking -cyanogenmod.weather.IRequestInfoListener$Stub: cyanogenmod.weather.IRequestInfoListener asInterface(android.os.IBinder) -okhttp3.Cache$CacheResponseBody: okio.BufferedSource source() -wangdaye.com.geometricweather.R$color: int darkPrimary_3 -androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontVariationSettings -cyanogenmod.providers.CMSettings$Secure: boolean shouldInterceptSystemProvider(java.lang.String) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: ObservableConcatMapSingle$ConcatMapSingleMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,io.reactivex.internal.util.ErrorMode) -com.google.android.gms.common.server.response.zak -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_motionProgress -androidx.appcompat.R$styleable: int MenuView_android_itemTextAppearance -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl build() -android.didikee.donate.R$attr: int buttonBarPositiveButtonStyle -com.google.android.material.R$styleable: int Layout_barrierAllowsGoneWidgets -wangdaye.com.geometricweather.R$attr: int cpv_progress -wangdaye.com.geometricweather.background.receiver.widget.WidgetDayProvider: WidgetDayProvider() -wangdaye.com.geometricweather.R$attr: int contentInsetEnd -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_5 -wangdaye.com.geometricweather.R$styleable: int Badge_maxCharacterCount -com.google.android.material.R$styleable: int Chip_chipCornerRadius -com.google.android.material.R$styleable: int Constraint_android_layout_width -androidx.core.R$styleable: R$styleable() -james.adaptiveicon.R$drawable: int abc_dialog_material_background -cyanogenmod.weatherservice.ServiceRequestResult: java.util.List getLocationLookupList() -androidx.constraintlayout.widget.R$dimen: int abc_dialog_padding_top_material -com.github.rahatarmanahmed.cpv.R$string -com.google.android.gms.base.R$styleable: int SignInButton_buttonSize -androidx.preference.R$color: int bright_foreground_material_light -okio.Buffer: okio.Buffer writeUtf8(java.lang.String) -com.google.android.material.R$styleable: int NavigationView_headerLayout -androidx.preference.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Body1 -com.xw.repo.bubbleseekbar.R$style: int AlertDialog_AppCompat_Light -androidx.appcompat.resources.R$id: int info -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_TextInputLayout -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid TotalLiquid -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String province -okhttp3.internal.Util: java.lang.AssertionError assertionError(java.lang.String,java.lang.Exception) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderLayout -androidx.appcompat.R$styleable: int GradientColorItem_android_color -com.google.android.material.R$id: int tag_unhandled_key_event_manager -android.didikee.donate.R$color: int bright_foreground_inverse_material_light -wangdaye.com.geometricweather.R$styleable: int SearchView_iconifiedByDefault -okhttp3.internal.ws.WebSocketProtocol: int PAYLOAD_LONG -android.didikee.donate.R$string: int abc_shareactionprovider_share_with -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String weatherSource -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontStyle -io.reactivex.internal.subscriptions.BasicQueueSubscription: void cancel() -wangdaye.com.geometricweather.R$layout: int material_radial_view_group -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String ALARM_ID -com.google.android.material.R$styleable: int ProgressIndicator_indicatorColors -okhttp3.internal.http2.Http2: java.lang.String[] FRAME_NAMES -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit HPA -com.bumptech.glide.load.engine.GlideException: com.bumptech.glide.load.Key key -androidx.lifecycle.ViewModelStore: androidx.lifecycle.ViewModel get(java.lang.String) -androidx.dynamicanimation.R$color: R$color() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmTp2 -com.google.android.material.R$attr: int scrimVisibleHeightTrigger -androidx.preference.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setId(java.lang.Long) -wangdaye.com.geometricweather.R$attr: int flow_firstHorizontalBias -androidx.preference.R$dimen: int abc_text_size_body_2_material -androidx.constraintlayout.widget.R$style: int Base_AlertDialog_AppCompat -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setIcon(android.graphics.Bitmap) -com.google.android.material.R$styleable: int MotionTelltales_telltales_velocityMode -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: long dt -wangdaye.com.geometricweather.R$styleable: int MockView_mock_labelBackgroundColor +wangdaye.com.geometricweather.R$styleable: int TouchScrollBar_msb_autoHide +android.didikee.donate.R$attr: int listPopupWindowStyle +androidx.coordinatorlayout.R$styleable: int[] FontFamilyFont +androidx.preference.R$dimen: int abc_action_bar_elevation_material +android.didikee.donate.R$attr: int dividerVertical +androidx.loader.R$dimen +wangdaye.com.geometricweather.R$drawable: int ic_gauge +cyanogenmod.content.Intent +wangdaye.com.geometricweather.R$color: int notification_background_rootDark +com.xw.repo.bubbleseekbar.R$attr: int actionOverflowMenuStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer altitude +androidx.lifecycle.extensions.R$style +james.adaptiveicon.R$styleable: int SwitchCompat_trackTintMode +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setTopIconDrawable(android.graphics.drawable.Drawable) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int NO_REQUEST_NO_VALUE +wangdaye.com.geometricweather.R$integer: int status_bar_notification_info_maxnum +androidx.lifecycle.extensions.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$attr: int collapsedTitleGravity +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_dialogPreferenceStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: double Value +okhttp3.internal.ws.WebSocketWriter$FrameSink +retrofit2.Platform: boolean hasJava8Types +com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingTop +androidx.customview.R$color: R$color() +androidx.vectordrawable.R$id: int accessibility_custom_action_13 +com.bumptech.glide.integration.okhttp.R$id: int italic +okhttp3.internal.Util: boolean containsInvalidHostnameAsciiCodes(java.lang.String) +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String unit +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderCerts +androidx.constraintlayout.widget.R$drawable: int abc_list_pressed_holo_light +wangdaye.com.geometricweather.R$styleable: int Insets_paddingRightSystemWindowInsets +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_circularInset +androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_material_anim +androidx.viewpager.R$color: int notification_action_color_filter +com.google.android.material.R$attr: int cornerSizeBottomRight +cyanogenmod.themes.ThemeChangeRequest: cyanogenmod.themes.ThemeChangeRequest$RequestType mRequestType +wangdaye.com.geometricweather.R$dimen: int cardview_default_radius +android.didikee.donate.R$attr: int height +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindLevel(java.lang.String) +wangdaye.com.geometricweather.R$attr: int suggestionRowLayout +wangdaye.com.geometricweather.R$string: int settings_title_refresh_rate +androidx.preference.R$attr: int switchStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_spinnerStyle +wangdaye.com.geometricweather.R$id: int transitionToEnd +androidx.hilt.work.R$styleable: int[] FragmentContainerView +okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV1 +wangdaye.com.geometricweather.R$id: int end +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_numericShortcut +retrofit2.ParameterHandler$2: retrofit2.ParameterHandler this$0 +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf +androidx.preference.R$styleable: int[] ActionMode +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_height_material +com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_start +androidx.constraintlayout.widget.R$drawable: int abc_list_pressed_holo_dark +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: WeatherContract$WeatherColumns$WeatherCode() +wangdaye.com.geometricweather.R$style: int widget_text_clock_analog_Light +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object lpValue() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView_DropDown +com.google.android.material.R$styleable: int KeyPosition_motionTarget +cyanogenmod.themes.IThemeProcessingListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetStartWithNavigation +com.google.gson.stream.JsonReader: java.lang.String nextString() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitation +okio.BufferedSource: short readShortLe() +wangdaye.com.geometricweather.R$style: int Theme_AppCompat +androidx.preference.R$id: int accessibility_custom_action_0 +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int DRIZZLE +com.google.android.material.R$style: int Animation_AppCompat_DropDownUp +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog_Alert +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassIndex(java.lang.Integer) +cyanogenmod.weather.IWeatherServiceProviderChangeListener +androidx.constraintlayout.widget.R$styleable: int Variant_constraints +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light +wangdaye.com.geometricweather.R$drawable: int widget_day_week +com.google.android.material.R$styleable: int MenuItem_actionLayout +okhttp3.internal.http2.Http2Connection: void writePing() +okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeOptional(java.lang.Object,java.lang.Object[]) +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onSubscribe(io.reactivex.disposables.Disposable) +james.adaptiveicon.R$color: int abc_secondary_text_material_light +com.google.android.material.textfield.TextInputLayout: int getHintCurrentCollapsedTextColor() +wangdaye.com.geometricweather.R$styleable: int[] CollapsingToolbarLayout_Layout +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogTheme +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Headline +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_MOBILEDATA +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf +androidx.vectordrawable.animated.R$id: int action_image +james.adaptiveicon.R$drawable: int notification_tile_bg +io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean isEmpty() +com.google.android.material.R$color: int background_floating_material_dark +com.turingtechnologies.materialscrollbar.R$attr: int titleMarginEnd +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.functions.Action onFinally +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date getUpdateDate() +james.adaptiveicon.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +android.support.v4.os.ResultReceiver$MyRunnable: android.support.v4.os.ResultReceiver this$0 +com.google.android.material.R$attr: int lastBaselineToBottomHeight +androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_PROVIDER_WITH_EVENT +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_79 +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop +com.xw.repo.bubbleseekbar.R$id: int text +com.google.android.material.R$styleable: int LinearLayoutCompat_android_baselineAligned +io.reactivex.Observable: io.reactivex.Observable skip(long) +james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedWidthMajor +okhttp3.internal.io.FileSystem$1: boolean exists(java.io.File) +androidx.viewpager.R$styleable: int GradientColor_android_startColor +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetLeft +androidx.fragment.R$styleable: int FontFamilyFont_fontWeight +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_dividerHeight +james.adaptiveicon.R$attr: int tooltipForegroundColor +androidx.hilt.R$styleable: int GradientColor_android_type +androidx.hilt.R$id: int accessibility_custom_action_26 +okio.Buffer: okio.ByteString readByteString() +okio.RealBufferedSink: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) +com.google.android.material.slider.BaseSlider: int getActiveThumbIndex() +james.adaptiveicon.R$style: int Base_AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +okhttp3.MediaType +androidx.hilt.lifecycle.R$attr: int fontWeight +androidx.appcompat.R$style: int Widget_AppCompat_Light_ListView_DropDown +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_vertical_padding +okio.Buffer$UnsafeCursor: byte[] data +androidx.lifecycle.extensions.R$id: int tag_transition_group +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: long mRequested +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_alphabeticModifiers +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature RealFeelTemperature +androidx.hilt.lifecycle.R$layout: int notification_template_icon_group +androidx.viewpager2.R$layout: int notification_action_tombstone +com.turingtechnologies.materialscrollbar.R$attr: int closeIconTint +james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust: AccuCurrentResult$WindGust() +wangdaye.com.geometricweather.R$styleable: int Layout_chainUseRtl +androidx.appcompat.R$attr: int contentInsetLeft +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void cancelAll() +okio.HashingSource: okio.HashingSource hmacSha256(okio.Source,okio.ByteString) +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec COMPATIBLE_TLS +wangdaye.com.geometricweather.R$attr: int ensureMinTouchTargetSize +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionButtonStyle +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Info +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onError(java.lang.Throwable) +androidx.hilt.R$attr: R$attr() +com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox +com.google.gson.FieldNamingPolicy: FieldNamingPolicy(java.lang.String,int,com.google.gson.FieldNamingPolicy$1) +androidx.hilt.R$id: int action_image +com.autonavi.aps.amapapi.model.AMapLocationServer: void b(java.lang.String) +wangdaye.com.geometricweather.R$attr: int buttonTintMode +com.amap.api.location.AMapLocation: java.lang.Object clone() +okhttp3.OkHttpClient$Builder: java.net.Proxy proxy +com.google.android.material.R$layout: int mtrl_picker_dialog +wangdaye.com.geometricweather.R$string: int feedback_black_text +cyanogenmod.app.LiveLockScreenManager: java.lang.String TAG +okhttp3.logging.LoggingEventListener$Factory +androidx.appcompat.R$id: int content +okhttp3.HttpUrl$Builder: java.lang.String host +wangdaye.com.geometricweather.R$anim: int abc_slide_in_bottom +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isAsync +com.google.android.material.R$style: int Base_Widget_AppCompat_TextView +wangdaye.com.geometricweather.R$attr: int viewInflaterClass +com.google.android.material.radiobutton.MaterialRadioButton: android.content.res.ColorStateList getMaterialThemeColorsTintList() +androidx.swiperefreshlayout.widget.SwipeRefreshLayout$SavedState +androidx.constraintlayout.widget.R$id: int action_bar_container +cyanogenmod.app.Profile: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: java.lang.String Unit +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: long serialVersionUID +android.didikee.donate.R$drawable: int abc_cab_background_top_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial Imperial +androidx.core.widget.NestedScrollView$SavedState: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Large +okhttp3.internal.http2.Settings: int DEFAULT_INITIAL_WINDOW_SIZE +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onError(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: boolean isDisposed() +androidx.preference.R$attr: int checkBoxPreferenceStyle +cyanogenmod.weather.WeatherInfo$1: cyanogenmod.weather.WeatherInfo createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendDailyProvider: WidgetTrendDailyProvider() +com.google.android.material.R$style: int Platform_V21_AppCompat +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +wangdaye.com.geometricweather.R$style: int Animation_AppCompat_DropDownUp +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Time +android.didikee.donate.R$color: int bright_foreground_disabled_material_light +androidx.appcompat.widget.Toolbar: int getCurrentContentInsetLeft() +com.google.android.material.R$styleable: int[] FloatingActionButton +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.LocationEntity,long) +androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerX +androidx.customview.R$integer: R$integer() +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: boolean isValid() +wangdaye.com.geometricweather.R$styleable: int Motion_transitionEasing +cyanogenmod.profiles.StreamSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +com.jaredrummler.android.colorpicker.R$id: int action_mode_bar_stub +androidx.constraintlayout.widget.R$styleable: int MotionScene_layoutDuringTransition +wangdaye.com.geometricweather.R$attr: int textAppearanceCaption +androidx.preference.R$attr: int actionBarStyle +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_elevation +com.google.android.material.chip.Chip: void setCheckedIconVisible(boolean) +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.work.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$styleable: int ActionMenuItemView_android_minWidth +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,long) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeLevel(java.lang.Integer) +android.didikee.donate.R$styleable: int MenuGroup_android_visible +androidx.preference.R$drawable: int abc_list_divider_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_showText +android.didikee.donate.R$styleable: int Toolbar_android_gravity +com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.app.ToolbarActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +com.google.android.material.R$styleable: int AlertDialog_listLayout +james.adaptiveicon.R$attr: int contentDescription +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +androidx.lifecycle.Lifecycle: void addObserver(androidx.lifecycle.LifecycleObserver) +james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar_Small +androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context) +cyanogenmod.hardware.CMHardwareManager: java.lang.String getSerialNumber() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display4 +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +com.github.rahatarmanahmed.cpv.CircularProgressView: boolean isIndeterminate() +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +androidx.appcompat.widget.SwitchCompat: int getSwitchPadding() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum Maximum +wangdaye.com.geometricweather.db.entities.DailyEntity: DailyEntity() +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_liftOnScroll +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_overlay +com.google.android.material.R$styleable: int KeyTrigger_framePosition +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleTextAppearance +com.google.android.material.appbar.CollapsingToolbarLayout: int getScrimAlpha() +androidx.lifecycle.MutableLiveData +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_height +android.didikee.donate.R$attr: int searchIcon +okhttp3.internal.cache.DiskLruCache: java.util.LinkedHashMap lruEntries +okhttp3.internal.http2.Http2Connection: long degradedPongDeadlineNs +com.jaredrummler.android.colorpicker.R$attr: int tooltipFrameBackground +androidx.fragment.R$styleable: int[] Fragment +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_ttcIndex +com.google.android.material.textfield.TextInputLayout: com.google.android.material.internal.CheckableImageButton getEndIconToUpdateDummyDrawable() +androidx.preference.R$styleable: int AppCompatTheme_activityChooserViewStyle +james.adaptiveicon.R$color: int abc_tint_switch_track +com.turingtechnologies.materialscrollbar.R$dimen: int notification_small_icon_size_as_large +androidx.viewpager2.R$style: int Widget_Compat_NotificationActionText +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function8) +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_switchTextOn +wangdaye.com.geometricweather.R$styleable: int Slider_android_valueFrom +wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: DaoMaster$DevOpenHelper(android.content.Context,java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.util.List indices +wangdaye.com.geometricweather.R$attr: int behavior_peekHeight +androidx.transition.R$styleable: int GradientColor_android_type +okio.AsyncTimeout: okio.AsyncTimeout head +wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_android_letterSpacing +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Large +com.google.android.material.R$attr: int flow_verticalGap +wangdaye.com.geometricweather.R$array: int location_service_values +wangdaye.com.geometricweather.R$attr: int tabStyle +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int DUST +cyanogenmod.externalviews.KeyguardExternalView$4: void run() +androidx.work.R$layout: int notification_template_part_time +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_trackTint +com.google.android.material.chip.ChipGroup: void setShowDividerVertical(int) +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator +okhttp3.internal.http2.Http2Codec: okhttp3.Response$Builder readResponseHeaders(boolean) +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +cyanogenmod.weather.WeatherInfo: double access$402(cyanogenmod.weather.WeatherInfo,double) +androidx.viewpager.R$drawable: R$drawable() +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedHeightMajor() +androidx.preference.R$dimen: int abc_disabled_alpha_material_light +retrofit2.converter.gson.GsonResponseBodyConverter: java.lang.Object convert(okhttp3.ResponseBody) +com.google.android.material.R$id: int titleDividerNoCustom +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderTextAppearance +wangdaye.com.geometricweather.R$styleable: int ActionBar_titleTextStyle +com.turingtechnologies.materialscrollbar.R$attr: int drawerArrowStyle +okhttp3.internal.connection.RealConnection: okhttp3.Request createTunnelRequest() +androidx.preference.R$drawable: int abc_spinner_textfield_background_material +cyanogenmod.weather.WeatherInfo$Builder: int mConditionCode +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius +androidx.constraintlayout.widget.R$styleable: int Toolbar_popupTheme +com.google.android.gms.base.R$string: int common_signin_button_text +cyanogenmod.externalviews.ExternalView$3: cyanogenmod.externalviews.ExternalView this$0 +okio.Sink +com.amap.api.location.AMapLocation: java.lang.String i(com.amap.api.location.AMapLocation,java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchMinWidth +cyanogenmod.externalviews.ExternalViewProviderService$1$1: ExternalViewProviderService$1$1(cyanogenmod.externalviews.ExternalViewProviderService$1,android.os.Bundle) +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind wind +com.jaredrummler.android.colorpicker.R$color: int primary_material_dark +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: java.lang.String desc +cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile[] getProfiles() +com.google.android.material.R$style: int Widget_Design_TabLayout +com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference +androidx.core.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Alert_Bridge +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float no2 +androidx.appcompat.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +okhttp3.internal.cache.FaultHidingSink: void onException(java.io.IOException) +com.google.android.material.chip.Chip: void setCloseIconResource(int) +androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_min +io.reactivex.Observable: io.reactivex.Observable takeUntil(io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$dimen: int mtrl_fab_translation_z_hovered_focused +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_backgroundSplit +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +cyanogenmod.app.ThemeVersion: int CM12_PRE_VERSIONING +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_39 +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar +com.google.android.material.R$styleable: int NavigationView_itemShapeInsetTop +androidx.core.R$id: int accessibility_custom_action_29 +okhttp3.internal.http2.Http2Reader: void readPing(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Colored +com.google.android.material.progressindicator.ProgressIndicator: int getGrowMode() +com.xw.repo.bubbleseekbar.R$id: int decor_content_parent +wangdaye.com.geometricweather.R$styleable: int Layout_layout_editor_absoluteY +android.didikee.donate.R$layout: int abc_popup_menu_item_layout +com.bumptech.glide.R$attr: int layout_anchorGravity +androidx.constraintlayout.widget.R$styleable: int ActionBar_logo +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX() +wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_android_foreground +com.turingtechnologies.materialscrollbar.R$attr: int msb_hideDelayInMilliseconds +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitation() +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark_focused +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: java.lang.Throwable val$ex +androidx.appcompat.R$dimen: int abc_list_item_padding_horizontal_material +androidx.core.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.appcompat.R$styleable: int AnimatedStateListDrawableItem_android_drawable +androidx.preference.R$attr: int ratingBarStyle +com.turingtechnologies.materialscrollbar.R$dimen: int notification_large_icon_width +com.google.android.material.circularreveal.CircularRevealLinearLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: ObservableTakeLastTimed$TakeLastTimedObserver(io.reactivex.Observer,long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,boolean) +com.jaredrummler.android.colorpicker.R$attr: int summaryOn +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig locationEntityDaoConfig +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ListView_DropDown +com.google.android.material.slider.Slider: void setThumbStrokeColorResource(int) +com.google.android.material.R$styleable: int[] TextInputEditText +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_orientation +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean mAskedShow +wangdaye.com.geometricweather.R$id: int notification_multi_city_1 +com.google.android.material.R$color: int ripple_material_dark +com.bumptech.glide.integration.okhttp.R$layout: int notification_template_custom_big +com.google.gson.FieldNamingPolicy$5 +wangdaye.com.geometricweather.R$string: int forecast +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String opPkg +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: double Value +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List alertEntityList +com.google.android.material.chip.Chip: void setChipIconVisible(int) +cyanogenmod.alarmclock.ClockContract$AlarmsColumns +okio.Okio: okio.Source source(java.io.File) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int wip +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String no2Desc +com.google.android.gms.base.R$color: int common_google_signin_btn_text_light +com.google.android.material.chip.Chip: float getCloseIconSize() +okio.Okio: okio.Sink sink(java.io.OutputStream) +wangdaye.com.geometricweather.R$attr: int daySelectedStyle +androidx.dynamicanimation.R$style: R$style() +com.amap.api.location.APSServiceBase: void onCreate() +james.adaptiveicon.R$color: int material_grey_900 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: double Value +android.didikee.donate.R$styleable: int ActionBar_contentInsetStart +androidx.appcompat.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +com.google.android.material.R$styleable: int SearchView_android_focusable +androidx.swiperefreshlayout.R$layout: int notification_template_custom_big +androidx.appcompat.R$attr: int listPreferredItemPaddingLeft +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +cyanogenmod.externalviews.KeyguardExternalView$2: void collapseNotificationPanel() +com.google.android.material.chip.Chip: com.google.android.material.animation.MotionSpec getShowMotionSpec() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List alertList +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_section_text +com.amap.api.fence.GeoFenceClient: void addGeoFence(java.lang.String,java.lang.String,com.amap.api.location.DPoint,float,int,java.lang.String) +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Bridge +wangdaye.com.geometricweather.R$drawable: int notif_temp_79 +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dark +com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_in_bottom +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_color +retrofit2.ParameterHandler$Body: java.lang.reflect.Method method +cyanogenmod.hardware.CMHardwareManager: int getVibratorMaxIntensity() +com.jaredrummler.android.colorpicker.R$styleable: int Preference_title +okhttp3.internal.http.RetryAndFollowUpInterceptor: java.lang.Object callStackTrace +com.google.android.material.R$style: int Theme_AppCompat_NoActionBar +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall +androidx.constraintlayout.widget.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogStyle +okhttp3.CacheControl: int minFreshSeconds +james.adaptiveicon.R$styleable: int SwitchCompat_thumbTint +com.google.android.material.R$attr: int attributeName +androidx.appcompat.R$styleable: int Toolbar_navigationIcon +com.google.android.material.R$style: int Theme_Design_Light_NoActionBar +com.google.android.material.R$layout: int mtrl_picker_text_input_date_range +com.google.android.material.R$styleable: int ConstraintSet_flow_maxElementsWrap +com.google.android.material.R$attr: int iconEndPadding +com.bumptech.glide.R$dimen: int compat_button_inset_vertical_material +com.xw.repo.bubbleseekbar.R$attr: int windowMinWidthMinor +okhttp3.MultipartBody: okhttp3.MediaType originalType +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onError(java.lang.Throwable) +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +retrofit2.HttpServiceMethod: retrofit2.RequestFactory requestFactory +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontWeight +com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingTop() +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_confirm_button_min_width +android.didikee.donate.R$dimen: int abc_dialog_min_width_major +androidx.appcompat.R$attr: int windowFixedWidthMajor +james.adaptiveicon.R$id: int title_template +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean +okhttp3.internal.connection.RealConnection$1: void close() +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status[] values() +com.google.android.material.card.MaterialCardView: void setCheckedIcon(android.graphics.drawable.Drawable) +com.google.android.material.R$id: int mtrl_picker_text_input_range_start +cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_THEME_MANAGER +androidx.fragment.R$styleable: int GradientColorItem_android_offset +android.didikee.donate.R$styleable: int AppCompatImageView_tintMode +com.jaredrummler.android.colorpicker.R$id: int group_divider +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_AES_128_CBC_SHA +okhttp3.internal.http.HttpDate: java.util.Date parse(java.lang.String) +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String ACTION_SET_ALARM_ENABLED +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_DialogWhenLarge +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontStyle +androidx.constraintlayout.widget.R$attr: int flow_horizontalBias +okhttp3.CertificatePinner$Builder: java.util.List pins +com.turingtechnologies.materialscrollbar.R$id: int italic +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_android_entryValues +com.google.android.material.R$styleable: int ActionBar_title +com.google.android.material.R$string: int mtrl_picker_range_header_only_end_selected +com.google.android.material.R$styleable: int CustomAttribute_customFloatValue +wangdaye.com.geometricweather.R$drawable: int notif_temp_69 +androidx.preference.R$styleable: int PreferenceFragment_android_layout +com.google.android.material.R$string: int material_timepicker_text_input_mode_description +com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_inset_horizontal_material +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default +okhttp3.CacheControl: int minFreshSeconds() +cyanogenmod.util.ColorUtils: int dropAlpha(int) +android.support.v4.os.ResultReceiver$MyRunnable: void run() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String unit +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: AlertEntityDao$Properties() +okio.SegmentedByteString: okio.ByteString hmacSha256(okio.ByteString) +wangdaye.com.geometricweather.R$attr: int theme +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: org.reactivestreams.Subscription receiver +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_icon_null_animation +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +androidx.work.R$attr: int fontVariationSettings +okio.SegmentedByteString: okio.ByteString hmacSha1(okio.ByteString) +androidx.appcompat.R$id: int accessibility_custom_action_9 +cyanogenmod.externalviews.KeyguardExternalView: java.lang.String TAG +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UpdateTime +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: ObservableGroupJoin$LeftRightEndObserver(io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport,boolean,int) +com.google.android.material.R$styleable: int TextInputLayout_startIconTint +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView +wangdaye.com.geometricweather.R$attr: int themeLineHeight +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_imeOptions +okhttp3.logging.LoggingEventListener: void requestHeadersStart(okhttp3.Call) +android.didikee.donate.R$styleable: int AppCompatTheme_colorControlActivated +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_UK +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setTranslateX(float) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: java.lang.String Localized +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric Metric +android.support.v4.app.INotificationSideChannel$Default: void cancel(java.lang.String,int,java.lang.String) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_EditText +cyanogenmod.providers.WeatherContract$WeatherColumns +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Time +com.google.android.material.R$styleable: int FloatingActionButton_fabCustomSize +james.adaptiveicon.R$anim: int abc_slide_in_bottom +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_DialogWhenLarge +androidx.loader.R$dimen: int notification_media_narrow_margin +androidx.appcompat.R$styleable: int[] FontFamilyFont +androidx.work.R$styleable: int GradientColor_android_centerY +cyanogenmod.hardware.DisplayMode: int id +androidx.vectordrawable.animated.R$id: int time +wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService: AwakeForegroundUpdateService() +retrofit2.BuiltInConverters$VoidResponseBodyConverter: java.lang.Void convert(okhttp3.ResponseBody) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge +okhttp3.EventListener: void secureConnectStart(okhttp3.Call) +wangdaye.com.geometricweather.R$attr: int tabPadding +com.google.android.material.R$attr: int itemShapeInsetStart +com.google.android.material.R$styleable: int AppBarLayoutStates_state_collapsible +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display3 +androidx.preference.R$attr: int showSeekBarValue +com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonTintMode +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_light +com.google.android.material.chip.ChipGroup: void setOnCheckedChangeListener(com.google.android.material.chip.ChipGroup$OnCheckedChangeListener) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display4 +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String mixNMatchKeyToComponent(java.lang.String) +androidx.preference.R$color: int switch_thumb_normal_material_dark +android.didikee.donate.R$style: int Widget_AppCompat_ListView_Menu +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +androidx.core.R$id: int icon_group +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button +com.bumptech.glide.R$style: int Widget_Support_CoordinatorLayout +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setFitSide(int) +androidx.constraintlayout.widget.R$attr: int lastBaselineToBottomHeight +androidx.lifecycle.LiveData$LifecycleBoundObserver: boolean shouldBeActive() +androidx.appcompat.resources.R$styleable: int GradientColor_android_endColor +io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper[] values() +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabView +androidx.preference.R$styleable: int[] ActionBar +james.adaptiveicon.R$id: int screen +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_3 +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_to_on_mtrl_000 +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_10 +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean isEmpty() +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean isSunlightEnhancementSelfManaged() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_creator +com.google.android.material.R$attr: int actionMenuTextColor +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean done +android.didikee.donate.R$style: int Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotationX +android.didikee.donate.R$dimen: int abc_action_bar_stacked_tab_max_width +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomSheet_Modal +androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.R$id: int container_main_sun_moon +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar +androidx.dynamicanimation.R$id: R$id() +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit[] values() +wangdaye.com.geometricweather.R$styleable: int[] Layout +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_get +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_COLOR +cyanogenmod.providers.DataUsageContract +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property PublishTime +com.google.android.material.R$layout: int notification_template_custom_big +io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.fuseable.SimpleQueue queue +androidx.activity.R$id: int tag_unhandled_key_event_manager +cyanogenmod.app.LiveLockScreenManager +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ListPopupWindow +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_elevation +com.google.android.material.R$attr: int buttonGravity +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_36dp +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property CityId +androidx.appcompat.view.menu.MenuPopupHelper: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Bridge +androidx.appcompat.R$style: int Base_Widget_AppCompat_ButtonBar +com.xw.repo.bubbleseekbar.R$styleable: int ActionBarLayout_android_layout_gravity +androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModel get(java.lang.String,java.lang.Class) +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemStrokeColor +wangdaye.com.geometricweather.R$drawable: int design_snackbar_background +wangdaye.com.geometricweather.R$array: int air_quality_co_unit_values +com.google.android.material.R$anim: int abc_fade_out +com.amap.api.location.AMapLocation: float getBearing() +androidx.viewpager2.R$id: int action_image +android.didikee.donate.R$attr: int textAppearanceLargePopupMenu +androidx.preference.R$drawable: int notification_action_background +androidx.lifecycle.ReportFragment: void dispatchResume(androidx.lifecycle.ReportFragment$ActivityInitializationListener) +androidx.lifecycle.viewmodel.savedstate.R: R() +androidx.hilt.work.R$id: int accessibility_custom_action_7 +wangdaye.com.geometricweather.R$dimen: int notification_subtext_size +com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_material_light +wangdaye.com.geometricweather.R$styleable: int Transform_android_translationY +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerX +androidx.preference.R$attr: int actionModeWebSearchDrawable +androidx.appcompat.R$style: int Widget_AppCompat_Button +okhttp3.Response$Builder: void checkSupportResponse(java.lang.String,okhttp3.Response) +androidx.preference.R$color: int dim_foreground_material_light +okhttp3.Response: int code() +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutely retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okio.BufferedSource delegateSource -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Icon -androidx.constraintlayout.widget.ConstraintLayout: void setMinHeight(int) -androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable mLastDispatchRunnable -wangdaye.com.geometricweather.R$attr: int layout_keyline -com.google.android.material.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_fabSize -com.google.android.material.R$styleable: int CoordinatorLayout_keylines -okhttp3.Cache$CacheResponseBody: okhttp3.internal.cache.DiskLruCache$Snapshot snapshot -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_background_corner_radius -androidx.preference.R$color: int notification_icon_bg_color -okhttp3.logging.LoggingEventListener: LoggingEventListener(okhttp3.logging.HttpLoggingInterceptor$Logger) -com.google.android.material.R$style: int Widget_AppCompat_TextView -com.turingtechnologies.materialscrollbar.R$id: int expanded_menu -androidx.transition.R$id: int blocking -james.adaptiveicon.R$string: int abc_capital_on -androidx.appcompat.R$attr: int collapseIcon -wangdaye.com.geometricweather.R$color: int abc_tint_spinner -com.google.android.material.R$attr: int collapseIcon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setNewX(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: int UnitType -io.reactivex.internal.subscriptions.BasicQueueSubscription: java.lang.Object poll() -androidx.drawerlayout.R$drawable: R$drawable() -retrofit2.http.Tag -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onNext(java.lang.Object) -com.google.android.material.R$id: int outgoing -com.xw.repo.bubbleseekbar.R$attr: int windowMinWidthMajor -wangdaye.com.geometricweather.R$style: int AlertDialog_AppCompat -com.turingtechnologies.materialscrollbar.R$anim: int abc_shrink_fade_out_from_bottom -okhttp3.internal.http.RealResponseBody: long contentLength -com.google.android.material.R$attr: int background -com.google.android.material.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.R$styleable: int BottomNavigationView_itemBackground -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HOME_WAKE_SCREEN_VALIDATOR -okhttp3.internal.http2.Http2Connection: int openStreamCount() -cyanogenmod.app.IProfileManager: boolean profileExists(android.os.ParcelUuid) -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric Metric -androidx.preference.R$dimen: int abc_config_prefDialogWidth -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawableItem_android_drawable -com.google.android.material.progressindicator.ProgressIndicator: void setIndeterminateDrawable(android.graphics.drawable.Drawable) -androidx.vectordrawable.animated.R$id: int icon -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat[] values() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getTotalPrecipitation() -com.google.android.material.R$styleable: int NavigationView_itemTextColor -com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Button -androidx.swiperefreshlayout.R$drawable: int notification_bg_low_normal +androidx.appcompat.R$style: int Widget_AppCompat_Spinner +com.google.android.material.R$attr: int motionInterpolator +okhttp3.internal.http1.Http1Codec: int state +wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +com.xw.repo.bubbleseekbar.R$attr: int actionBarTabTextStyle +com.google.android.material.floatingactionbutton.FloatingActionButton: void show(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void boundaryError(io.reactivex.disposables.Disposable,java.lang.Throwable) +com.google.android.material.R$style: int Widget_Design_BottomNavigationView +androidx.hilt.R$id: int action_container +androidx.constraintlayout.widget.R$attr: int actionModeStyle +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) +wangdaye.com.geometricweather.R$drawable: int ic_building +androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +androidx.appcompat.widget.AppCompatCheckBox: void setBackgroundResource(int) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String j() +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.ChineseCityEntity) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm25() +androidx.appcompat.widget.SearchView$SearchAutoComplete +androidx.preference.R$string: int abc_activity_chooser_view_see_all +androidx.constraintlayout.widget.R$id: int standard +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year +androidx.customview.R$drawable: int notification_bg_normal_pressed +james.adaptiveicon.R$id: int actions +wangdaye.com.geometricweather.R$layout: int widget_day_week_rectangle +cyanogenmod.weather.CMWeatherManager$2$1 +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderCerts +androidx.preference.R$styleable: int SearchView_commitIcon +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginRight +com.turingtechnologies.materialscrollbar.R$id: int screen +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xsr +okhttp3.internal.connection.RealConnection: void onStream(okhttp3.internal.http2.Http2Stream) +retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture +android.support.v4.app.RemoteActionCompatParcelizer: RemoteActionCompatParcelizer() +com.jaredrummler.android.colorpicker.ColorPanelView: void setColor(int) +com.jaredrummler.android.colorpicker.R$id: int action_mode_bar +androidx.hilt.work.R$anim: int fragment_fast_out_extra_slow_in +androidx.preference.R$styleable: int AlertDialog_multiChoiceItemLayout +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: java.lang.String icon +androidx.appcompat.R$dimen: int abc_list_item_height_material +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_SYSTEM +com.google.android.material.R$styleable: int KeyPosition_drawPath +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.R$drawable: int shortcuts_thunder +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_toRightOf +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabView +com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetEnd +com.google.android.material.internal.NavigationMenuItemView: void setIconPadding(int) +androidx.preference.R$styleable: int RecyclerView_android_orientation +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: boolean isLeft +cyanogenmod.app.Profile: int mNotificationLightMode +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_ActionBar +james.adaptiveicon.R$style: int Widget_AppCompat_SeekBar_Discrete +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: boolean cancelled +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Subhead +com.google.android.material.R$drawable: int mtrl_tabs_default_indicator +androidx.preference.R$style: int Base_DialogWindowTitleBackground_AppCompat +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality() +androidx.preference.R$attr: int autoSizePresetSizes +wangdaye.com.geometricweather.R$color: int colorTextSubtitle_dark +okhttp3.Address: javax.net.ssl.HostnameVerifier hostnameVerifier() +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_COLOR +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd +wangdaye.com.geometricweather.R$string: int path_password_eye +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNo2(java.lang.Float) +io.reactivex.internal.observers.BasicIntQueueDisposable: BasicIntQueueDisposable() +wangdaye.com.geometricweather.R$string: int wind_11 +wangdaye.com.geometricweather.R$attr: int shapeAppearanceLargeComponent +okio.Buffer: long indexOfElement(okio.ByteString,long) +androidx.preference.R$styleable: int MenuItem_showAsAction +androidx.constraintlayout.widget.R$id: int spread +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +wangdaye.com.geometricweather.R$string: int feedback_align_end +com.google.android.material.slider.BaseSlider: void setTickInactiveTintList(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTintMode +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: AccuDailyResult$DailyForecasts$Day$WindGust$Speed() +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_motionProgress +wangdaye.com.geometricweather.R$string: int content_desc_weather_icon +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_progress +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: boolean isNoDirection() +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_NoActionBar +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer bulletinCote +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_commitIcon +androidx.vectordrawable.R$id: int accessibility_custom_action_8 +cyanogenmod.app.CMStatusBarManager: void publishTile(int,cyanogenmod.app.CustomTile) +androidx.preference.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List dailyForecast +android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +wangdaye.com.geometricweather.R$attr: int hintAnimationEnabled +com.google.android.material.R$attr: int flow_lastHorizontalStyle +okio.ByteString: int compareTo(java.lang.Object) +wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_container +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric +okhttp3.internal.http1.Http1Codec: okio.Source newChunkedSource(okhttp3.HttpUrl) androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontStyle -androidx.appcompat.R$id: int search_go_btn -okhttp3.HttpUrl$Builder: int port -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -com.google.android.material.R$animator: int mtrl_extended_fab_change_size_expand_motion_spec -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabText -com.google.android.material.R$styleable: int OnSwipe_moveWhenScrollAtTop -com.google.android.material.R$styleable: int PopupWindow_overlapAnchor -com.jaredrummler.android.colorpicker.R$id: int expanded_menu -cyanogenmod.externalviews.ExternalViewProviderService: android.view.WindowManager mWindowManager -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogTheme -com.google.android.material.R$styleable: int AppCompatTextView_textLocale -retrofit2.Platform -androidx.preference.R$styleable: int Toolbar_contentInsetEnd -james.adaptiveicon.R$styleable: int SearchView_searchIcon -wangdaye.com.geometricweather.R$string: int key_gravity_sensor_switch -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType valueOf(java.lang.String) -james.adaptiveicon.R$styleable: int TextAppearance_android_textColorLink -androidx.appcompat.resources.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$drawable: int notif_temp_112 -androidx.hilt.work.R$attr: int ttcIndex -com.google.android.material.R$styleable: int Chip_showMotionSpec -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$height -com.google.android.material.R$styleable: int AppCompatTextView_textAllCaps -androidx.vectordrawable.R$styleable: int[] ColorStateListItem -androidx.constraintlayout.widget.R$interpolator: R$interpolator() -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getNumberOfProfiles -cyanogenmod.app.BaseLiveLockManagerService$1: cyanogenmod.app.BaseLiveLockManagerService this$0 -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemBackground -cyanogenmod.app.StatusBarPanelCustomTile: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.R$attr: int extendMotionSpec -com.turingtechnologies.materialscrollbar.R$id: int select_dialog_listview -com.google.android.material.transformation.FabTransformationSheetBehavior -androidx.activity.R$dimen: int compat_control_corner_material -com.google.android.material.R$id: int save_overlay_view -androidx.preference.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.R$style: int Widget_AppCompat_ListView -android.didikee.donate.R$bool: int abc_allow_stacked_button_bar -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionBar -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_BATTERY_STYLE_VALIDATOR -cyanogenmod.app.LiveLockScreenInfo: android.content.ComponentName component -com.baidu.location.e.p -androidx.appcompat.R$styleable: int GradientColor_android_type -com.google.android.material.R$styleable: int TextInputLayout_prefixTextAppearance -wangdaye.com.geometricweather.R$drawable: int notif_temp_33 -androidx.vectordrawable.R$id: int accessibility_custom_action_25 -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderAuthority -android.didikee.donate.R$style: int Base_Animation_AppCompat_Dialog -android.support.v4.app.INotificationSideChannel: void cancel(java.lang.String,int,java.lang.String) -com.turingtechnologies.materialscrollbar.R$drawable: R$drawable() -com.turingtechnologies.materialscrollbar.DragScrollBar: DragScrollBar(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -android.didikee.donate.R$attr: int subMenuArrow -androidx.work.R$string: int status_bar_notification_info_overflow -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Colored -com.google.android.material.R$attr: int actionModeBackground -android.didikee.donate.R$attr: int icon -com.jaredrummler.android.colorpicker.R$style: int Platform_Widget_AppCompat_Spinner -wangdaye.com.geometricweather.R$drawable: int ic_tag_plus -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String province -androidx.preference.R$attr: int buttonPanelSideLayout -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable -retrofit2.http.Query: java.lang.String value() -com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorCornerRadius(int) -cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getActiveProfile() -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_letter_spacing -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu -androidx.appcompat.R$id: int tag_unhandled_key_listeners -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.R$attr: int text_size -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mState -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -com.bumptech.glide.R$layout: int notification_template_part_time -androidx.appcompat.widget.AppCompatRadioButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$styleable: int Layout_android_layout_marginLeft -androidx.recyclerview.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.preference.R$attr: int isPreferenceVisible -androidx.appcompat.view.menu.ListMenuItemView: void setIcon(android.graphics.drawable.Drawable) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.fragment.R$dimen: int notification_small_icon_background_padding -androidx.appcompat.widget.AppCompatButton: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_maxWidth -com.jaredrummler.android.colorpicker.R$attr: int dividerHorizontal -com.google.android.material.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_padding_top_material -james.adaptiveicon.R$attr: int fontStyle -wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemIconDisabledAlpha -androidx.preference.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle -com.google.android.material.R$string: int fab_transformation_sheet_behavior -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit[] values() -androidx.appcompat.R$style: int Platform_V25_AppCompat -okhttp3.Response$Builder: okhttp3.Response build() -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_attributeName -com.turingtechnologies.materialscrollbar.R$attr: int progressBarPadding -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CITY -james.adaptiveicon.R$dimen: int notification_top_pad -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabUnboundedRipple -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_SYNC -androidx.viewpager.widget.PagerTitleStrip: void setGravity(int) -wangdaye.com.geometricweather.R$attr: int tooltipText -androidx.lifecycle.Lifecycling: androidx.lifecycle.GenericLifecycleObserver getCallback(java.lang.Object) -androidx.constraintlayout.widget.R$layout: int abc_expanded_menu_layout -io.reactivex.Observable: io.reactivex.Observable mergeArray(int,int,io.reactivex.ObservableSource[]) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getO3Desc() -okhttp3.MediaType: boolean equals(java.lang.Object) -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Line2 -com.google.android.material.chip.Chip: void setCloseIconSizeResource(int) -com.jaredrummler.android.colorpicker.R$dimen: int cpv_item_size -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteAll -okhttp3.WebSocket: long queueSize() -retrofit2.Platform: int defaultCallAdapterFactoriesSize() -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit getInstance(java.lang.String) -james.adaptiveicon.R$drawable: int abc_btn_check_to_on_mtrl_015 -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -com.google.android.material.R$attr: int barrierMargin -okio.Buffer$2 -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteInTxIterable -androidx.constraintlayout.widget.R$color: int accent_material_dark -wangdaye.com.geometricweather.R$drawable: int weather_thunder_pixel +okhttp3.EventListener$1: EventListener$1() +io.reactivex.internal.util.VolatileSizeArrayList: VolatileSizeArrayList() +okio.ByteString: okio.ByteString of(byte[],int,int) +com.google.android.material.R$attr: int actionBarSplitStyle +com.google.android.material.R$attr: int textAppearancePopupMenuHeader +okhttp3.internal.cache.CacheInterceptor$1: boolean cacheRequestClosed +wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_dark +android.didikee.donate.R$styleable: int AppCompatTheme_listMenuViewStyle +com.google.android.material.slider.RangeSlider: float getThumbStrokeWidth() +wangdaye.com.geometricweather.R$attr: int titleMarginStart +com.xw.repo.bubbleseekbar.R$attr: int colorPrimaryDark +androidx.recyclerview.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.R$styleable: int[] RangeSlider +androidx.appcompat.widget.AppCompatRadioButton: void setButtonDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService +com.bumptech.glide.R$drawable: int notification_action_background +com.jaredrummler.android.colorpicker.R$style: int Preference_CheckBoxPreference +androidx.drawerlayout.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +com.google.android.material.R$color: int mtrl_calendar_item_stroke_color +com.amap.api.location.AMapLocation: org.json.JSONObject toJson(int) +androidx.preference.R$styleable: int Toolbar_navigationContentDescription +cyanogenmod.profiles.LockSettings$1: cyanogenmod.profiles.LockSettings[] newArray(int) +wangdaye.com.geometricweather.R$attr: int radius_to +com.google.android.material.R$styleable: int ConstraintSet_android_elevation +com.xw.repo.bubbleseekbar.R$style: int AlertDialog_AppCompat_Light +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver parent +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable +retrofit2.Invocation: java.lang.reflect.Method method +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +android.didikee.donate.R$styleable: int Toolbar_subtitle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: int UnitType +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: float getProgress() +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function7) +com.google.android.material.R$string: R$string() +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: int unitArrayIndex +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_LED_ON +com.google.android.material.R$id: int month_grid +android.didikee.donate.R$id: int decor_content_parent +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setPubTime(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_text_padding +wangdaye.com.geometricweather.db.entities.DailyEntity: void setO3(java.lang.Float) +androidx.constraintlayout.widget.R$attr: int backgroundStacked +androidx.preference.R$attr: int alertDialogButtonGroupStyle +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void truncateFinal() +james.adaptiveicon.R$styleable: int AppCompatTheme_selectableItemBackground +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask +com.google.android.material.chip.ChipGroup: void setChipSpacingVerticalResource(int) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +androidx.constraintlayout.widget.R$attr: int overlapAnchor +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.CMWeatherManager sInstance +androidx.preference.R$id: int line3 +androidx.appcompat.R$dimen: int tooltip_margin +com.google.android.material.R$id: int action_bar_activity_content +com.xw.repo.bubbleseekbar.R$color: int background_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetRight +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetStartWithNavigation +com.google.android.material.R$attr: int iconTintMode +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +wangdaye.com.geometricweather.R$styleable: int SearchView_suggestionRowLayout +wangdaye.com.geometricweather.R$attr: int spanCount +android.didikee.donate.R$attr: int colorSwitchThumbNormal +androidx.activity.R$id: int accessibility_custom_action_24 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabBarStyle +cyanogenmod.externalviews.KeyguardExternalView$8: void run() +cyanogenmod.weather.RequestInfo: boolean mIsQueryOnly +wangdaye.com.geometricweather.R$color: int colorTextContent +wangdaye.com.geometricweather.R$attr: int background +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: java.lang.String Unit +james.adaptiveicon.R$styleable: int[] PopupWindow +cyanogenmod.externalviews.ExternalView$3: void run() +com.google.android.material.R$attr: int lineSpacing +okhttp3.Call: okio.Timeout timeout() +android.didikee.donate.R$attr: int iconifiedByDefault +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation access$402(cyanogenmod.weather.RequestInfo,cyanogenmod.weather.WeatherLocation) +com.google.android.gms.common.api.GoogleApiActivity +com.google.android.material.internal.ParcelableSparseBooleanArray +wangdaye.com.geometricweather.R$drawable: int ic_check_circle_green +com.bumptech.glide.integration.okhttp.R$attr: R$attr() +okhttp3.internal.http2.Header +cyanogenmod.app.Profile$DozeMode: int ENABLE +com.bumptech.glide.integration.okhttp.R$drawable: R$drawable() +androidx.hilt.lifecycle.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowDy +com.google.android.material.navigation.NavigationView: void setItemIconPadding(int) +androidx.activity.R$id: int accessibility_custom_action_27 +androidx.constraintlayout.widget.R$styleable: int GradientColorItem_android_color +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection +android.didikee.donate.R$styleable: int MenuView_android_headerBackground +com.google.android.material.R$styleable: int Chip_hideMotionSpec +okhttp3.internal.ws.RealWebSocket: boolean $assertionsDisabled +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.Float getSpeed() +okio.AsyncTimeout$1: AsyncTimeout$1(okio.AsyncTimeout,okio.Sink) +wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_sliderColor +androidx.preference.R$attr: int autoCompleteTextViewStyle +com.google.android.material.R$style: int TextAppearance_AppCompat_Large +io.reactivex.internal.subscriptions.SubscriptionArbiter: void cancel() +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Alert +wangdaye.com.geometricweather.R$dimen: int design_snackbar_background_corner_radius +okio.RealBufferedSource: int readInt() +cyanogenmod.app.ProfileManager: java.lang.String TAG +androidx.coordinatorlayout.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +androidx.appcompat.R$styleable: int TextAppearance_android_textSize +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_title_material +okhttp3.Cache$CacheResponseBody: okio.BufferedSource bodySource +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX getBrandInfo() +okhttp3.internal.tls.DistinguishedNameParser: int length +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Small +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabView +james.adaptiveicon.R$string: int search_menu_title +wangdaye.com.geometricweather.R$array: int notification_text_colors +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog +androidx.preference.R$styleable: int Preference_android_order +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$attr: int ratingBarStyle +james.adaptiveicon.R$style: int Widget_AppCompat_EditText +androidx.work.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_icon_padding +com.google.android.material.R$attr: int tooltipForegroundColor +okhttp3.Route: okhttp3.Address address +james.adaptiveicon.R$style: int Base_Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogPreferredPadding +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: int Index +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int subTextColorResId +wangdaye.com.geometricweather.R$drawable: int shortcuts_wind +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView_DropDown +com.jaredrummler.android.colorpicker.R$attr: int collapseContentDescription +wangdaye.com.geometricweather.R$attr: int layout_constraintCircleAngle +com.jaredrummler.android.colorpicker.R$dimen +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: AndroidPlatform$AndroidCertificateChainCleaner(java.lang.Object,java.lang.reflect.Method) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: int UnitType +wangdaye.com.geometricweather.R$color: int preference_fallback_accent_color +cyanogenmod.providers.ThemesContract +okhttp3.OkHttpClient$Builder: okhttp3.ConnectionPool connectionPool +io.reactivex.Observable: io.reactivex.Observable concatMapIterable(io.reactivex.functions.Function,int) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered +okio.Util: long reverseBytesLong(long) +com.google.android.material.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 androidx.constraintlayout.widget.R$drawable: int abc_ic_arrow_drop_right_black_24dp -androidx.coordinatorlayout.R$id: int line3 -androidx.constraintlayout.widget.R$styleable: int[] FontFamilyFont -com.google.android.material.R$attr: int colorControlHighlight -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlActivated -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: AccuAlertResult$Area() -com.turingtechnologies.materialscrollbar.R$color: int error_color_material_light -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$xml: int widget_text -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationZ -wangdaye.com.geometricweather.R$color: int design_error -com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow -wangdaye.com.geometricweather.common.basic.models.weather.Base: long getUpdateTime() -wangdaye.com.geometricweather.R$layout: int cpv_dialog_presets -androidx.preference.R$attr: int listChoiceIndicatorMultipleAnimated -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowMinWidthMajor -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getNo2() -android.support.v4.os.ResultReceiver$MyRunnable -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSo2() -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onNext(java.lang.Object) -com.google.android.material.R$attr: int selectionRequired -androidx.loader.R$drawable: int notification_bg_normal -james.adaptiveicon.R$styleable: int AppCompatTheme_popupWindowStyle -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean isDaylight() -androidx.preference.R$styleable: int AppCompatTheme_android_windowAnimationStyle -com.turingtechnologies.materialscrollbar.R$attr: int bottomSheetStyle -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_CLOCK -com.google.android.material.R$styleable: int AppCompatTheme_activityChooserViewStyle -androidx.appcompat.R$styleable: int Toolbar_subtitle -androidx.constraintlayout.widget.R$integer: int cancel_button_image_alpha -wangdaye.com.geometricweather.R$anim: int fragment_close_enter -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.db.entities.DailyEntity -com.google.android.material.R$dimen: int material_clock_display_padding -android.didikee.donate.R$attr: int buttonBarButtonStyle -wangdaye.com.geometricweather.R$styleable: int ChipGroup_singleSelection -com.google.android.material.tabs.TabItem -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric Metric -com.turingtechnologies.materialscrollbar.R$anim: int abc_fade_out -com.google.android.material.R$attr: int passwordToggleContentDescription -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_onDetachedFromWindow -wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day -android.didikee.donate.R$drawable: int abc_ic_star_half_black_36dp -wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay -okhttp3.internal.connection.StreamAllocation: okhttp3.Address address -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: BaiduIPLocationService(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi,io.reactivex.disposables.CompositeDisposable) -androidx.appcompat.widget.Toolbar: void setNavigationContentDescription(java.lang.CharSequence) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeTopRight -com.google.android.material.R$color: int design_error -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_onClick -androidx.preference.R$attr: int preferenceInformationStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_78 -com.google.android.material.R$attr: int closeIcon -com.google.android.material.textfield.TextInputLayout: void setHelperTextColor(android.content.res.ColorStateList) -androidx.preference.R$styleable: int DialogPreference_positiveButtonText -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void drain() -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_title -wangdaye.com.geometricweather.R$styleable: int[] PreferenceTheme -androidx.appcompat.R$attr: int fontStyle -okhttp3.logging.HttpLoggingInterceptor$Logger: void log(java.lang.String) -wangdaye.com.geometricweather.R$attr: int indicatorType -james.adaptiveicon.R$attr: int actionProviderClass -androidx.coordinatorlayout.R$styleable: int GradientColor_android_tileMode -com.turingtechnologies.materialscrollbar.R$dimen: int abc_cascading_menus_min_smallest_width -com.google.android.material.R$color: int primary_text_disabled_material_dark -androidx.recyclerview.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.R$string: int common_google_play_services_enable_button -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: ObservableSwitchMap$SwitchMapObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) -org.greenrobot.greendao.AbstractDao: long insertOrReplace(java.lang.Object) -androidx.hilt.R$id: int accessibility_custom_action_30 -com.amap.api.fence.GeoFence: int describeContents() -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean setActiveProfile(android.os.ParcelUuid) -com.google.android.material.R$styleable: int FloatingActionButton_showMotionSpec -wangdaye.com.geometricweather.R$styleable: int Slider_tickColor -com.google.android.material.slider.Slider: android.content.res.ColorStateList getHaloTintList() -androidx.preference.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo access$202(cyanogenmod.weatherservice.ServiceRequestResult,cyanogenmod.weather.WeatherInfo) -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_CompactMenu -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginStart -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_elevation -okhttp3.internal.platform.Platform: java.lang.String toString() -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: long index -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_android_windowIsFloating -wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress -okhttp3.internal.http1.Http1Codec: okhttp3.Headers readHeaders() -wangdaye.com.geometricweather.R$id: int cos -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: int UnitType -com.jaredrummler.android.colorpicker.R$attr: int fontFamily -com.google.android.material.R$color: int design_dark_default_color_on_background -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_orientation -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer uvIndex -okhttp3.internal.http2.Http2Connection$PingRunnable -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean isDisposed() -androidx.appcompat.R$attr: int actionMenuTextColor -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: long getTime() -com.bumptech.glide.R$integer -com.xw.repo.bubbleseekbar.R$id: int left -wangdaye.com.geometricweather.R$styleable: int PropertySet_motionProgress -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_voice -androidx.lifecycle.SavedStateHandle: void validateValue(java.lang.Object) -androidx.constraintlayout.widget.R$attr: int windowFixedHeightMinor -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_DrawerArrowToggle -com.amap.api.fence.GeoFence: float m -com.google.gson.internal.LinkedTreeMap: LinkedTreeMap(java.util.Comparator) -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event UPDATE -okhttp3.internal.http2.StreamResetException: okhttp3.internal.http2.ErrorCode errorCode -wangdaye.com.geometricweather.R$attr: int showDelay -androidx.hilt.lifecycle.R$id: R$id() -androidx.preference.R$attr: int showText -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setHumidity(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean) -okio.Buffer: byte getByte(long) -okhttp3.CookieJar: void saveFromResponse(okhttp3.HttpUrl,java.util.List) -okhttp3.internal.http2.Header: okio.ByteString value -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogTitle -cyanogenmod.app.CMContextConstants$Features: CMContextConstants$Features() -wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper -cyanogenmod.app.LiveLockScreenInfo$1: LiveLockScreenInfo$1() -com.amap.api.fence.PoiItem: PoiItem() -wangdaye.com.geometricweather.R$id: int adjust_height -androidx.lifecycle.extensions.R$dimen: int notification_small_icon_size_as_large -com.google.android.material.R$id: int tag_accessibility_actions -com.bumptech.glide.load.engine.GlideException: java.lang.String detailMessage -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_TextView_SpinnerItem -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickActiveTintList() -androidx.appcompat.R$anim -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarPopupTheme -wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: DaoMaster$OpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory) -wangdaye.com.geometricweather.R$drawable: int notif_temp_55 -wangdaye.com.geometricweather.R$attr: int textAppearanceSubtitle1 -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getTreeLevel() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: int UnitType -com.bumptech.glide.integration.okhttp.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -androidx.appcompat.R$bool -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_disableDependentsState -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_backgroundTintMode -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setProvince(java.lang.String) -androidx.activity.R$drawable: int notification_bg_low_pressed -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification -com.google.android.material.R$attr: int ratingBarStyleIndicator -androidx.appcompat.widget.Toolbar: void setTitleTextColor(int) -androidx.constraintlayout.widget.R$drawable: int abc_spinner_mtrl_am_alpha -okhttp3.internal.cache.DiskLruCache: java.lang.String REMOVE -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_vertical_padding -com.github.rahatarmanahmed.cpv.CircularProgressView$2 -okio.ForwardingTimeout -android.didikee.donate.R$color: int bright_foreground_disabled_material_dark -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_29 -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_track -cyanogenmod.app.StatusBarPanelCustomTile$1: StatusBarPanelCustomTile$1() -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityResumed(android.app.Activity) -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CONDITION -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_UV_INDEX -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: boolean isDisposed() -androidx.preference.R$styleable: int MenuItem_android_onClick -androidx.constraintlayout.widget.R$styleable: int View_android_theme -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_arrowHeadLength -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: int UnitType -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_tooltipForegroundColor -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItem -okio.RealBufferedSource: okio.Source source -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_subtitleTextStyle -androidx.activity.R$attr: int fontProviderPackage -james.adaptiveicon.R$styleable: int MenuItem_android_title -wangdaye.com.geometricweather.R$attr: int minHideDelay +com.xw.repo.bubbleseekbar.R$dimen: R$dimen() +cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener: void onDetachedFromWindow() +wangdaye.com.geometricweather.R$layout: int item_weather_daily_title_large +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner +com.google.android.material.chip.Chip: android.content.res.ColorStateList getCheckedIconTint() +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: boolean isDisposed() +io.reactivex.Observable: io.reactivex.Observable ambArray(io.reactivex.ObservableSource[]) +androidx.viewpager.widget.PagerTabStrip: void setTabIndicatorColor(int) +okhttp3.HttpUrl: java.util.Set queryParameterNames() +wangdaye.com.geometricweather.R$string: int key_notification_hide_in_lockScreen +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onAttach(android.os.IBinder) +com.jaredrummler.android.colorpicker.R$attr: int spinnerDropDownItemStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: AccuCurrentResult$Temperature$Metric() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Subhead +androidx.preference.R$styleable: int AppCompatTextView_drawableEndCompat +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionMode +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickActiveTintList() +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_seekBarPreferenceStyle +com.google.android.material.R$dimen: int mtrl_bottomappbar_height +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setHumidity(double) +cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(android.os.Parcel,cyanogenmod.app.suggest.ApplicationSuggestion$1) +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onSuccess(java.lang.Object) +cyanogenmod.providers.CMSettings$NameValueCache: java.util.HashMap mValues +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_Solid +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_entries +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: org.reactivestreams.Subscription upstream +androidx.preference.R$attr: int actionMenuTextColor +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerCloseError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconCheckable +com.bumptech.glide.integration.okhttp.R$attr: int font +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long index +com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$styleable: int[] ImageFilterView +james.adaptiveicon.R$drawable: int abc_btn_borderless_material +com.google.android.material.R$styleable: int OnClick_targetId +androidx.viewpager2.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.R$attr: int useSimpleSummaryProvider +cyanogenmod.app.IProfileManager$Stub +wangdaye.com.geometricweather.R$styleable: int SearchView_queryBackground +cyanogenmod.app.CustomTile$ExpandedStyle: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$style: int Platform_V25_AppCompat_Light +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_focused_z +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long readKey(android.database.Cursor,int) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Medium +android.didikee.donate.R$drawable: int abc_popup_background_mtrl_mult +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemMaxLines +android.didikee.donate.R$layout: int abc_screen_simple_overlay_action_mode +com.google.android.material.appbar.HeaderBehavior: HeaderBehavior(android.content.Context,android.util.AttributeSet) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: ThemesContract$MixnMatchColumns() +okhttp3.Response: okhttp3.ResponseBody body() +com.google.android.material.R$style: int Widget_AppCompat_Spinner +com.google.android.material.R$layout: int abc_action_bar_title_item +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +com.google.android.material.R$string: int bottomsheet_action_expand_halfway +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +com.xw.repo.bubbleseekbar.R$style: int Base_DialogWindowTitle_AppCompat +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: java.lang.Object poll() +com.google.android.material.button.MaterialButton: void setIconSize(int) +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: java.lang.String getNotificationTextColorName(android.content.Context) +com.google.android.material.R$id: int withinBounds +james.adaptiveicon.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_1_3_padding_top +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_4 +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_lightContainer +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitationProbability +cyanogenmod.themes.ThemeManager$1$2 +androidx.work.impl.workers.DiagnosticsWorker: DiagnosticsWorker(android.content.Context,androidx.work.WorkerParameters) +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy +james.adaptiveicon.R$styleable: int Toolbar_titleMarginEnd +retrofit2.KotlinExtensions: java.lang.Object awaitResponse(retrofit2.Call,kotlin.coroutines.Continuation) +com.google.android.material.R$attr: int chipStandaloneStyle +com.google.android.material.R$attr: int indicatorType +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind +androidx.constraintlayout.widget.R$styleable: int Constraint_transitionPathRotate +okhttp3.internal.http2.Http2Stream: okio.Timeout writeTimeout() +james.adaptiveicon.R$styleable: int AlertDialog_buttonIconDimen +androidx.customview.R$dimen: int notification_action_icon_size +com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindowBackgroundState_state_above_anchor +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_disabled_translation_z +androidx.work.R$id: int tag_unhandled_key_listeners +io.reactivex.internal.observers.InnerQueuedObserver: boolean isDone() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getHeadIconType() +retrofit2.HttpServiceMethod$CallAdapted +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean isDisposed() androidx.hilt.work.R$dimen: int notification_small_icon_background_padding -androidx.fragment.R$styleable: int[] ColorStateListItem -cyanogenmod.externalviews.KeyguardExternalView$1 -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: int status -cyanogenmod.app.Profile$ExpandedDesktopMode: Profile$ExpandedDesktopMode() -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode HTTP_1_1_REQUIRED -io.reactivex.internal.disposables.DisposableHelper: boolean trySet(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableLeft -androidx.preference.R$attr: int listChoiceIndicatorSingleAnimated -com.google.android.material.chip.Chip: void setChipIconSizeResource(int) -androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerColor -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_go_search_api_material -cyanogenmod.profiles.StreamSettings: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver -com.google.android.material.R$id: int fade -io.reactivex.internal.schedulers.ScheduledRunnable: boolean isDisposed() -androidx.drawerlayout.R$styleable: int ColorStateListItem_android_alpha -cyanogenmod.providers.CMSettings$Secure: java.lang.String RECENTS_LONG_PRESS_ACTIVITY -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetEndWithActions -androidx.vectordrawable.R$attr: int fontProviderQuery -com.google.android.material.R$color: int material_on_background_disabled -wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_in_lockScreen -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setFont(java.lang.String) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver -wangdaye.com.geometricweather.R$layout: int notification_template_icon_group -com.jaredrummler.android.colorpicker.ColorPanelView: void setColor(int) -wangdaye.com.geometricweather.R$animator: int weather_thunder_2 -okio.AsyncTimeout: void timedOut() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial -androidx.fragment.R$style: R$style() -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderQuery -androidx.appcompat.R$style: int Widget_AppCompat_Spinner -android.didikee.donate.R$styleable: int Toolbar_collapseContentDescription -cyanogenmod.app.CustomTile$ExpandedItem: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$styleable: int[] OnSwipe -okhttp3.internal.ws.WebSocketWriter$FrameSink: WebSocketWriter$FrameSink(okhttp3.internal.ws.WebSocketWriter) -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog -io.reactivex.internal.disposables.SequentialDisposable: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$attr: int titleTextStyle -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_expandedHintEnabled -androidx.transition.R$color: int secondary_text_default_material_light -com.amap.api.fence.PoiItem: java.lang.String k -wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitleTextStyle -cyanogenmod.providers.CMSettings$System: java.lang.String VOLBTN_MUSIC_CONTROLS -wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_android_thumb -okhttp3.internal.http1.Http1Codec$ChunkedSource: okhttp3.HttpUrl url -com.google.android.material.R$styleable: int MaterialButton_android_insetTop -wangdaye.com.geometricweather.db.entities.HistoryEntity: int daytimeTemperature -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_enterFadeDuration -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorBackgroundFloating -androidx.appcompat.R$id: int message -androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentHeight -androidx.customview.R$id: int info -com.xw.repo.bubbleseekbar.R$attr: int toolbarNavigationButtonStyle -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_overflow_padding_start_material -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_keyline -wangdaye.com.geometricweather.R$animator: int design_fab_show_motion_spec -androidx.lifecycle.R: R() -androidx.appcompat.widget.SearchView: int getPreferredWidth() -wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndSwitch -wangdaye.com.geometricweather.R$layout: int mtrl_picker_dialog -okio.Options: Options(okio.ByteString[],int[]) -androidx.lifecycle.ServiceLifecycleDispatcher: void postDispatchRunnable(androidx.lifecycle.Lifecycle$Event) -okio.RealBufferedSink: java.lang.String toString() -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void otherError(java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer wetBulbTemperature -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Display_TextInputEditText -io.reactivex.internal.disposables.DisposableHelper -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.R$attr: int transitionDisable -androidx.appcompat.R$id: int list_item -androidx.swiperefreshlayout.R$attr: int fontVariationSettings -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void removeCustomTileWithTag(java.lang.String,java.lang.String,int,int) -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -okhttp3.Cookie: java.lang.String domain -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconCheckable -wangdaye.com.geometricweather.R$styleable: int Toolbar_popupTheme -androidx.swiperefreshlayout.R$dimen: int compat_button_inset_vertical_material -android.didikee.donate.R$styleable: int AppCompatTheme_colorPrimary -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: AccuCurrentResult$PrecipitationSummary$PastHour() -androidx.core.R$id: int accessibility_custom_action_18 -androidx.hilt.work.R$styleable: int GradientColor_android_gradientRadius -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void subscribe(io.reactivex.ObservableSource[],int) -androidx.viewpager2.R$styleable: int ColorStateListItem_alpha -com.bumptech.glide.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.ChineseCityEntity) -com.xw.repo.bubbleseekbar.R$attr: int selectableItemBackgroundBorderless -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.R$transition -retrofit2.Retrofit$1: Retrofit$1(retrofit2.Retrofit,java.lang.Class) -androidx.lifecycle.extensions.R$styleable: int[] Fragment -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6 -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: long serialVersionUID -androidx.constraintlayout.widget.R$attr: int contentInsetLeft -okhttp3.internal.cache.FaultHidingSink: void onException(java.io.IOException) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: void setType(java.lang.String) -wangdaye.com.geometricweather.R$string: int widget_week -okhttp3.internal.tls.OkHostnameVerifier: boolean verify(java.lang.String,java.security.cert.X509Certificate) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onNext(java.lang.Object) -androidx.vectordrawable.R$drawable: int notification_bg -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String alertId -com.google.android.material.R$string: int material_clock_toggle_content_description -androidx.preference.R$id: int add -wangdaye.com.geometricweather.R$anim: int mtrl_bottom_sheet_slide_out -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: FlowableCreate$SerializedEmitter(io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter) -cyanogenmod.hardware.CMHardwareManager: boolean get(int) -retrofit2.Utils$ParameterizedTypeImpl: Utils$ParameterizedTypeImpl(java.lang.reflect.Type,java.lang.reflect.Type,java.lang.reflect.Type[]) -com.xw.repo.bubbleseekbar.R$styleable: int[] MenuItem -androidx.coordinatorlayout.R$id: int text2 -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: int UnitType -androidx.customview.R$id: int blocking +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.util.AtomicThrowable errors +wangdaye.com.geometricweather.R$string: int sp_widget_multi_city +com.bumptech.glide.R$styleable: int FontFamily_fontProviderAuthority +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setShifting(boolean) +androidx.fragment.app.Fragment$SavedState: android.os.Parcelable$Creator CREATOR +cyanogenmod.profiles.ConnectionSettings: void setSubId(int) +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +androidx.constraintlayout.widget.R$color: int abc_color_highlight_material +androidx.fragment.R$attr: int fontProviderPackage +com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding valueOf(java.lang.String) +james.adaptiveicon.R$attr: int colorSwitchThumbNormal +androidx.preference.R$layout: int abc_action_menu_item_layout +cyanogenmod.weather.CMWeatherManager: void cancelRequest(int) +cyanogenmod.hardware.ICMHardwareService: int[] getVibratorIntensity() +com.google.gson.internal.LinkedTreeMap: void clear() +androidx.preference.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +okhttp3.Response$Builder: okhttp3.Response cacheResponse +com.google.android.material.R$dimen: int design_snackbar_action_text_color_alpha +androidx.hilt.work.R$id: int accessibility_custom_action_3 +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getO3Color(android.content.Context) +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.DailyEntity,long) +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State valueOf(java.lang.String) +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setMax(float) +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_transformPivotY +com.google.android.material.R$attr: int waveShape +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark_normal +com.google.android.material.R$styleable: int[] BottomAppBar +androidx.activity.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Surface +androidx.core.R$styleable: int FontFamilyFont_android_fontStyle +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollEnabled +io.reactivex.internal.observers.LambdaObserver: void onComplete() +androidx.preference.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$attr: int triggerSlack +com.jaredrummler.android.colorpicker.R$id: int preset +okhttp3.internal.publicsuffix.PublicSuffixDatabase: okhttp3.internal.publicsuffix.PublicSuffixDatabase get() +okhttp3.internal.http.CallServerInterceptor$CountingSink: long successfulCount +com.google.android.material.R$styleable: int KeyAttribute_android_translationY +androidx.appcompat.R$styleable: int AppCompatTheme_tooltipFrameBackground +okio.RealBufferedSink$1: void write(int) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.entities.DaoSession daoSession +com.google.android.material.R$styleable: int MenuView_android_verticalDivider +okio.RealBufferedSource: int readUtf8CodePoint() +wangdaye.com.geometricweather.R$attr: int animationMode +android.didikee.donate.R$drawable: int abc_textfield_default_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$attr: int fontFamily +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties +com.turingtechnologies.materialscrollbar.R$styleable: int[] FloatingActionButton_Behavior_Layout +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType FLOAT_TYPE +com.google.android.material.R$styleable: int ChipGroup_chipSpacingHorizontal +androidx.dynamicanimation.R$drawable: int notify_panel_notification_icon_bg +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_corner_radius +com.google.android.material.R$style: int Theme_MaterialComponents +androidx.cardview.R$attr: int cardMaxElevation +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer cloudCover +com.google.android.material.R$attr: int actionBarDivider +okhttp3.internal.http2.Http2Codec: java.util.List HTTP_2_SKIPPED_RESPONSE_HEADERS +okhttp3.Request$Builder: okhttp3.RequestBody body +wangdaye.com.geometricweather.R$attr: int showAsAction okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: android.os.IBinder call() -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode[] values() -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickTintList() -okio.ByteString: void writeObject(java.io.ObjectOutputStream) -wangdaye.com.geometricweather.R$color: int colorTextTitle_dark -androidx.appcompat.R$style: int Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.background.polling.permanent.observer.FakeForegroundService -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int color -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplaceInTxIterable -com.google.android.material.R$attr: int listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_android_enabled -androidx.appcompat.R$styleable: int SearchView_goIcon -com.google.android.material.R$styleable: int MaterialCardView_state_dragged -com.google.android.material.stateful.ExtendableSavedState -wangdaye.com.geometricweather.R$bool: int config_materialPreferenceIconSpaceReserved -androidx.preference.R$color: int abc_search_url_text -androidx.recyclerview.R$attr: int ttcIndex -io.reactivex.Observable: io.reactivex.Observer subscribeWith(io.reactivex.Observer) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature -wangdaye.com.geometricweather.R$attr: int paddingTopNoTitle -androidx.appcompat.widget.ButtonBarLayout: void setAllowStacking(boolean) -okio.RealBufferedSource: int readInt() -com.google.android.material.R$style: int Platform_MaterialComponents_Light_Dialog -com.google.android.material.R$styleable: int SearchView_queryBackground -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityCreated(android.app.Activity,android.os.Bundle) -androidx.appcompat.R$style: int Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.R$attr: int useMaterialThemeColors -com.google.android.material.bottomappbar.BottomAppBar: com.google.android.material.bottomappbar.BottomAppBar$Behavior getBehavior() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.preference.R$id: int icon_group -okhttp3.Headers$Builder: java.util.List namesAndValues -io.reactivex.internal.schedulers.RxThreadFactory: java.lang.String toString() -com.google.android.gms.common.R$string: R$string() -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light_normal_background -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerColor -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: ObservableMergeWithMaybe$MergeWithObserver(io.reactivex.Observer) -cyanogenmod.app.CMStatusBarManager: void removeTile(int) -androidx.preference.R$attr: int layout_anchor -androidx.constraintlayout.widget.R$id: int group_divider -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: org.reactivestreams.Subscription upstream -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getProvince() -cyanogenmod.profiles.StreamSettings: boolean mDirty -com.google.android.material.R$id: int default_activity_button -wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary_variant -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_width_minor -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.ObservableSource second -com.jaredrummler.android.colorpicker.R$attr: int allowDividerAfterLastItem -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedTextWithoutUnit(float) +com.google.android.material.R$style: int Widget_AppCompat_ActionMode +com.xw.repo.bubbleseekbar.R$attr: int checkedTextViewStyle +androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_android_src +androidx.appcompat.R$attr: int toolbarNavigationButtonStyle +wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_2_0_padding_top +wangdaye.com.geometricweather.R$attr: int fragment +androidx.drawerlayout.R$styleable: int GradientColor_android_endColor +androidx.core.R$id: int accessibility_action_clickable_span +wangdaye.com.geometricweather.R$string: int precipitation_light +androidx.viewpager.widget.PagerTitleStrip: void setSingleLineAllCaps(android.widget.TextView) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather +androidx.appcompat.R$styleable: int SearchView_iconifiedByDefault +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingEnd +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastHorizontalStyle +wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_ripple_color okhttp3.internal.http2.Http2Connection: void setSettings(okhttp3.internal.http2.Settings) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.R$string -androidx.hilt.R$layout: int custom_dialog -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWeatherText() -androidx.work.R$id: int action_divider -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback -com.google.android.material.R$integer: int abc_config_activityShortDur -wangdaye.com.geometricweather.R$id: int stop -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.util.concurrent.TimeUnit unit -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -androidx.customview.R$id: int notification_main_column -com.turingtechnologies.materialscrollbar.R$attr: int layout -com.jaredrummler.android.colorpicker.R$id: int icon_group -androidx.preference.R$attr: int autoCompleteTextViewStyle -cyanogenmod.providers.CMSettings$Secure$2 -androidx.appcompat.R$drawable: int abc_btn_colored_material -androidx.constraintlayout.widget.R$styleable: int SearchView_closeIcon -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: java.lang.String getProbabilityText(android.content.Context,float) -com.google.gson.stream.JsonReader: void skipUnquotedValue() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_COLOR_ADJUSTMENT_VALIDATOR -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider access$002(cyanogenmod.externalviews.KeyguardExternalView,cyanogenmod.externalviews.IKeyguardExternalViewProvider) -com.turingtechnologies.materialscrollbar.R$color: int mtrl_bottom_nav_item_tint -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -okhttp3.internal.http2.Hpack$Writer: okio.Buffer out -android.didikee.donate.R$drawable: int abc_switch_track_mtrl_alpha -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_toggle -james.adaptiveicon.R$dimen: int abc_button_padding_vertical_material -com.google.android.material.R$styleable: int RecycleListView_paddingBottomNoButtons -androidx.constraintlayout.widget.R$attr: int actionModeBackground -androidx.transition.R$attr: int fontProviderCerts -com.google.android.material.R$color: int mtrl_tabs_ripple_color -com.jaredrummler.android.colorpicker.R$attr: int windowMinWidthMajor -androidx.preference.R$styleable: int[] CheckBoxPreference -androidx.appcompat.resources.R$layout: int notification_template_part_time -androidx.preference.R$styleable: int Preference_singleLineTitle -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_minHeight -okhttp3.internal.Util$2: java.lang.Thread newThread(java.lang.Runnable) -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -androidx.hilt.lifecycle.R$styleable: int[] GradientColor -com.google.android.material.timepicker.TimePickerView: void addOnRotateListener(com.google.android.material.timepicker.ClockHandView$OnRotateListener) -androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemIconDisabledAlpha -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_selectableItemBackground -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_minWidth -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_percent -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceCategoryStyle -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String componentToMixNMatchKey(java.lang.String) -androidx.hilt.R$id: int tag_unhandled_key_event_manager -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_BACKGROUND -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha -okhttp3.internal.cache2.Relay: int SOURCE_FILE -wangdaye.com.geometricweather.R$string: int settings_title_item_animation_switch -okhttp3.logging.HttpLoggingInterceptor: boolean isPlaintext(okio.Buffer) -com.google.android.material.R$styleable: int FontFamilyFont_android_fontWeight -androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerY -okhttp3.Route: java.net.InetSocketAddress inetSocketAddress -com.google.android.material.R$styleable: int KeyCycle_wavePeriod -cyanogenmod.os.Concierge: cyanogenmod.os.Concierge$ParcelInfo receiveParcel(android.os.Parcel) -com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableStartCompat -com.amap.api.location.AMapLocationClientOption: long SCAN_WIFI_INTERVAL -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatElevation(float) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_id -com.turingtechnologies.materialscrollbar.R$attr: int expandActivityOverflowButtonDrawable -com.xw.repo.bubbleseekbar.R$id: int forever -androidx.vectordrawable.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_end_icon_margin_start -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_touch_to_seek -io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function) -androidx.preference.R$style: int Base_Widget_AppCompat_Light_PopupMenu -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_collapsedSize -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function7) -com.jaredrummler.android.colorpicker.R$attr: int voiceIcon -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Small_Inverse -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_DIRECTION -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void dispose() -com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Circular -com.github.rahatarmanahmed.cpv.CircularProgressView: boolean autostartAnimation -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -com.google.android.material.R$style: int Widget_MaterialComponents_FloatingActionButton -okhttp3.internal.http2.Http2Connection$6: void execute() -cyanogenmod.hardware.ICMHardwareService: boolean registerThermalListener(cyanogenmod.hardware.IThermalListenerCallback) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setStatus(int) -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_item_max_width -wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_allowDividerAfterLastItem -cyanogenmod.weather.ICMWeatherManager: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) -okio.Buffer: okio.ByteString sha256() -wangdaye.com.geometricweather.R$attr: int materialCalendarFullscreenTheme -cyanogenmod.app.IPartnerInterface$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean Summary -wangdaye.com.geometricweather.R$id: int item_touch_helper_previous_elevation -androidx.appcompat.R$color: int material_deep_teal_200 -okhttp3.MultipartBody: okhttp3.MultipartBody$Part part(int) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_collapseContentDescription -androidx.viewpager2.R$color: int secondary_text_default_material_light -org.greenrobot.greendao.AbstractDao: java.lang.Object loadUnique(android.database.Cursor) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial Imperial -com.jaredrummler.android.colorpicker.R$dimen: int abc_floating_window_z -androidx.preference.R$styleable: int AppCompatTheme_seekBarStyle -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -wangdaye.com.geometricweather.R$attr: int colorAccent -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String moldDescription +okhttp3.internal.http2.Hpack$Reader: int maxDynamicTableByteCount() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end +androidx.preference.R$styleable: int ListPreference_useSimpleSummaryProvider +androidx.preference.R$color: int abc_tint_seek_thumb +androidx.lifecycle.LiveDataReactiveStreams: org.reactivestreams.Publisher toPublisher(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) +androidx.loader.R$drawable: int notify_panel_notification_icon_bg +androidx.vectordrawable.R$id: int accessibility_custom_action_7 +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActivityChooserView +io.reactivex.internal.disposables.SequentialDisposable +wangdaye.com.geometricweather.R$id: int parent +androidx.constraintlayout.widget.R$attr: int mock_labelBackgroundColor +com.turingtechnologies.materialscrollbar.R$attr: int windowNoTitle +com.google.android.material.bottomsheet.BottomSheetBehavior: BottomSheetBehavior(android.content.Context,android.util.AttributeSet) +com.google.android.material.tabs.TabLayout: void setTabIconTintResource(int) +androidx.transition.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$string: int settings_title_notification +james.adaptiveicon.R$styleable: int AppCompatTheme_radioButtonStyle +wangdaye.com.geometricweather.R$attr: int closeIconEnabled +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startX +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark_normal +androidx.core.R$drawable: int notification_action_background +okhttp3.internal.platform.Platform +androidx.constraintlayout.widget.R$color: int abc_primary_text_disable_only_material_light +android.didikee.donate.R$bool: int abc_config_actionMenuItemAllCaps +cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationDefault() +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setCityId(java.lang.String) +androidx.constraintlayout.motion.widget.MotionLayout: java.util.ArrayList getDefinedTransitions() +wangdaye.com.geometricweather.R$string: int bottomsheet_action_expand_halfway +com.baidu.location.e.l$b: com.baidu.location.e.l$b d +com.google.android.material.slider.BaseSlider: void setActiveThumbIndex(int) +androidx.appcompat.R$attr: int indeterminateProgressStyle +com.xw.repo.bubbleseekbar.R$attr: int viewInflaterClass +wangdaye.com.geometricweather.R$layout: int test_design_checkbox +wangdaye.com.geometricweather.R$attr: int dayTodayStyle +cyanogenmod.externalviews.ExternalView +androidx.appcompat.R$attr: int fontProviderFetchStrategy +com.google.android.material.R$styleable: int TextInputLayout_endIconTintMode +com.google.android.gms.base.R$attr: int buttonSize +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabTextStyle +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Line2 +com.turingtechnologies.materialscrollbar.R$layout: int abc_activity_chooser_view +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_EXPORT_WITH_DES40_CBC_SHA +okhttp3.MultipartBody: java.util.List parts +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalAlign +wangdaye.com.geometricweather.R$color: int abc_search_url_text +androidx.preference.R$dimen: int abc_text_size_large_material +com.google.android.material.badge.BadgeDrawable$SavedState +cyanogenmod.themes.ThemeChangeRequest: void writeToParcel(android.os.Parcel,int) +com.google.android.material.R$dimen: int design_fab_image_size +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_height +androidx.transition.R$dimen: int compat_button_padding_vertical_material +wangdaye.com.geometricweather.R$array: int temperature_units_short +okhttp3.Request: Request(okhttp3.Request$Builder) +retrofit2.Retrofit: boolean validateEagerly +james.adaptiveicon.R$attr: int listPreferredItemPaddingLeft +com.google.android.material.slider.Slider: void setStepSize(float) +james.adaptiveicon.R$dimen: int abc_text_size_body_2_material +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onScreenTurnedOn() +com.google.android.material.R$attr: int customPixelDimension +com.bumptech.glide.R$id: int line1 +com.google.android.material.chip.Chip: void setCloseIconStartPadding(float) +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_NoActionBar +androidx.preference.R$styleable: int SwitchPreferenceCompat_summaryOff +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LIVE_LOCK_SCREEN +androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context,android.util.AttributeSet) +cyanogenmod.app.ICMTelephonyManager: void setSubState(int,boolean) +wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text_color +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarItemBackground +wangdaye.com.geometricweather.R$attr: int flow_padding +wangdaye.com.geometricweather.R$attr: int layoutDescription +androidx.appcompat.R$id: int src_atop +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalGap +androidx.preference.R$attr: int actionBarTabTextStyle +com.google.android.material.R$styleable: int Layout_layout_constraintVertical_weight +wangdaye.com.geometricweather.R$string: int on +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginBottom +wangdaye.com.geometricweather.R$id: int widget_clock_day_time +com.google.android.material.R$dimen: int mtrl_slider_label_square_side +androidx.appcompat.R$dimen: int tooltip_vertical_padding +androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$attr: int bsb_min +com.turingtechnologies.materialscrollbar.R$dimen: int abc_config_prefDialogWidth +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyle +cyanogenmod.app.CustomTile$ExpandedStyle: void internalSetRemoteViews(android.widget.RemoteViews) +james.adaptiveicon.R$attr: int popupTheme +androidx.preference.R$id: int accessibility_custom_action_1 +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_height +cyanogenmod.app.IPartnerInterface$Stub$Proxy: java.lang.String getCurrentHotwordPackageName() +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List minutelyForecast +com.google.android.material.appbar.AppBarLayout$BaseBehavior +androidx.constraintlayout.widget.R$styleable: int OnSwipe_maxVelocity +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noTransform() +okhttp3.EventListener$2: EventListener$2(okhttp3.EventListener) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: int UnitType +wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean hasKey(java.lang.Object) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getWetBulbTemperature() +androidx.drawerlayout.R$dimen: int notification_subtext_size +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.CMHardwareManager sCMHardwareManagerInstance +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar_PrimarySurface +com.google.android.material.R$drawable: int abc_text_select_handle_middle_mtrl_dark +com.google.android.material.R$style: int Base_Widget_AppCompat_ProgressBar +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: java.io.IOException thrownException +io.reactivex.observers.TestObserver$EmptyObserver +wangdaye.com.geometricweather.R$id: int textinput_counter +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_DialogWhenLarge +com.google.android.material.R$dimen: int mtrl_alert_dialog_picker_background_inset +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: int UnitType +com.xw.repo.bubbleseekbar.R$color: int secondary_text_disabled_material_light +androidx.hilt.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_switchTextOn +com.google.android.gms.common.api.AvailabilityException: java.lang.String getMessage() +androidx.appcompat.R$id: int select_dialog_listview +androidx.preference.R$style: int Base_Widget_AppCompat_ListView_Menu +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String LAST_UPDATE_TIME +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource LOCAL +wangdaye.com.geometricweather.db.entities.AlertEntity: java.util.Date date +androidx.appcompat.R$layout: int abc_search_view +androidx.lifecycle.ProcessLifecycleOwner$3$1 +retrofit2.adapter.rxjava2.CallExecuteObservable: CallExecuteObservable(retrofit2.Call) +com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconContentDescription +okhttp3.internal.cache.DiskLruCache$Editor: DiskLruCache$Editor(okhttp3.internal.cache.DiskLruCache,okhttp3.internal.cache.DiskLruCache$Entry) +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getLogoDescription() +com.jaredrummler.android.colorpicker.R$string: int cpv_select +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog +okhttp3.logging.package-info +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_disabled_material_dark +wangdaye.com.geometricweather.R$dimen: int abc_panel_menu_list_width +okhttp3.internal.http2.Http2Reader: void readHeaders(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +okhttp3.ConnectionSpec: int hashCode() +androidx.hilt.work.R$styleable: int GradientColor_android_centerColor +androidx.core.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel +com.amap.api.location.AMapLocation: int p +androidx.work.R$id: int accessibility_custom_action_12 +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean isEmpty() +com.turingtechnologies.materialscrollbar.R$attr: int layout_scrollInterpolator +com.loc.k: java.lang.String d() +wangdaye.com.geometricweather.R$dimen: int share_view_height +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver +androidx.preference.R$styleable: int SearchView_suggestionRowLayout +wangdaye.com.geometricweather.R$styleable: int Chip_hideMotionSpec +com.jaredrummler.android.colorpicker.R$color: int foreground_material_dark +androidx.customview.R$id: int actions +com.google.android.material.datepicker.MaterialDatePicker +com.google.android.material.R$styleable: int Layout_layout_constraintLeft_toRightOf +okhttp3.internal.Internal: okhttp3.internal.connection.RouteDatabase routeDatabase(okhttp3.ConnectionPool) +androidx.transition.R$id: int ghost_view +com.google.android.material.bottomappbar.BottomAppBar: int getLeftInset() +okhttp3.Address: okhttp3.CertificatePinner certificatePinner +james.adaptiveicon.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.R$drawable: R$drawable() +com.xw.repo.bubbleseekbar.R$integer: int status_bar_notification_info_maxnum +androidx.appcompat.R$attr: int drawableBottomCompat +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_3 +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_31 +com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_disable_only_material_dark +wangdaye.com.geometricweather.R$drawable: int ic_toolbar_back +androidx.hilt.R$id: int accessibility_custom_action_28 +okhttp3.OkHttpClient: okhttp3.Dns dns +wangdaye.com.geometricweather.R$color: int primary_material_light +com.jaredrummler.android.colorpicker.R$attr: int autoSizeMaxTextSize +com.turingtechnologies.materialscrollbar.R$attr: int chipMinHeight +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +okhttp3.internal.tls.DistinguishedNameParser: char getUTF8() +android.didikee.donate.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_tintMode +com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +androidx.preference.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_titleCondensed +wangdaye.com.geometricweather.R$string: int feedback_location_permissions_statement +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onNext(java.lang.Object) +androidx.appcompat.R$styleable: int MenuView_android_verticalDivider +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetLeft +wangdaye.com.geometricweather.R$drawable: int notif_temp_78 +wangdaye.com.geometricweather.R$dimen: int cpv_required_padding +wangdaye.com.geometricweather.R$attr: int drawableTopCompat +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_exitFadeDuration +androidx.appcompat.R$id: int split_action_bar +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onComplete() +wangdaye.com.geometricweather.R$id: int src_over +com.jaredrummler.android.colorpicker.R$attr: int fragment +androidx.constraintlayout.widget.R$attr: int touchRegionId +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +org.greenrobot.greendao.AbstractDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowMinWidthMajor +okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withWriteTimeout(int,java.util.concurrent.TimeUnit) +com.amap.api.location.AMapLocationClientOption: boolean h +androidx.appcompat.R$drawable: int abc_ic_star_half_black_36dp +wangdaye.com.geometricweather.R$layout: int item_about_library +androidx.lifecycle.livedata.core.R +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dark +okio.Buffer: void skip(long) +com.jaredrummler.android.colorpicker.R$id: int forever +wangdaye.com.geometricweather.R$id: int notification_base_weather +androidx.preference.R$attr: int seekBarStyle +okhttp3.Dispatcher: int maxRequests +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onComplete() +okio.SegmentedByteString: boolean rangeEquals(int,okio.ByteString,int,int) +wangdaye.com.geometricweather.R$string: int common_google_play_services_update_button +wangdaye.com.geometricweather.R$styleable: int Badge_maxCharacterCount +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvLevel(java.lang.String) +androidx.constraintlayout.widget.R$id: int right +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipBackgroundColor +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String pressure +com.xw.repo.bubbleseekbar.R$attr: int actionModePasteDrawable +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_TextView_SpinnerItem +android.didikee.donate.R$styleable: int Toolbar_menu +com.google.android.gms.common.server.response.SafeParcelResponse: android.os.Parcelable$Creator CREATOR +androidx.transition.R$styleable: int GradientColorItem_android_color +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_inverse_material_dark +androidx.viewpager.R$layout: int notification_action +androidx.preference.R$styleable: int SearchView_queryHint +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconContentDescription +okhttp3.Response$Builder: okhttp3.Response$Builder removeHeader(java.lang.String) +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_holo_dark +com.bumptech.glide.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.work.R$layout: int notification_template_part_chronometer +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1(androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber,java.lang.Throwable) +wangdaye.com.geometricweather.R$color: int mtrl_chip_background_color +com.turingtechnologies.materialscrollbar.R$interpolator +com.google.android.material.R$attr: int tabIndicatorAnimationDuration +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_ADJUST_SOUNDS_ENABLED_VALIDATOR +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onError(java.lang.Throwable) +androidx.lifecycle.livedata.R: R() +androidx.constraintlayout.widget.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +cyanogenmod.weather.WeatherInfo: WeatherInfo(android.os.Parcel,cyanogenmod.weather.WeatherInfo$1) +okhttp3.internal.cache.DiskLruCache$2: okhttp3.internal.cache.DiskLruCache this$0 +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_1 +wangdaye.com.geometricweather.R$attr: int cardElevation +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_behavior +androidx.swiperefreshlayout.R$styleable +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_SearchResult_Title +james.adaptiveicon.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.R$integer: int cpv_default_anim_duration +androidx.appcompat.R$styleable: int MenuGroup_android_visible +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgress(float) +androidx.appcompat.widget.AppCompatCheckBox: android.graphics.PorterDuff$Mode getSupportButtonTintMode() +androidx.appcompat.R$style: R$style() +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setCityId(java.lang.String) +com.bumptech.glide.R$styleable: int FontFamilyFont_ttcIndex +io.reactivex.internal.observers.DeferredScalarDisposable: boolean tryDispose() +james.adaptiveicon.R$drawable: int abc_ic_clear_material +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_share_mtrl_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: AccuDailyResult$DailyForecasts$Night$TotalLiquid() +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType QueryUnique +com.turingtechnologies.materialscrollbar.R$attr: int selectableItemBackground +com.google.android.material.R$styleable: int AppCompatSeekBar_tickMark +androidx.preference.R$styleable: int MenuItem_contentDescription +com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context) +androidx.preference.R$layout: int image_frame +androidx.appcompat.R$id: int expanded_menu +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +androidx.vectordrawable.animated.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String from +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial +com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius +com.google.android.material.slider.Slider: float getThumbStrokeWidth() +retrofit2.adapter.rxjava2.ResultObservable: io.reactivex.Observable upstream +com.turingtechnologies.materialscrollbar.R$attr: int floatingActionButtonStyle +com.amap.api.fence.PoiItem: void setPoiId(java.lang.String) +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType[] values() +io.reactivex.internal.subscriptions.SubscriptionHelper +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: java.lang.Object poll() +androidx.preference.R$attr: int navigationMode +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleTextAppearance +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog +com.google.android.material.R$drawable: int abc_list_focused_holo +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerError(int,java.lang.Throwable) +io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.coordinatorlayout.R$color: int notification_action_color_filter +android.didikee.donate.R$styleable: int PopupWindow_android_popupBackground +androidx.dynamicanimation.R$dimen: int notification_large_icon_height +com.turingtechnologies.materialscrollbar.R$id: int topPanel +okhttp3.Response: okhttp3.ResponseBody body +com.turingtechnologies.materialscrollbar.R$attr: int buttonTint +android.didikee.donate.R$styleable: int[] CompoundButton +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_menu +com.amap.api.location.AMapLocation: java.lang.String l(com.amap.api.location.AMapLocation,java.lang.String) +androidx.appcompat.R$attr: int navigationMode +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_MIN +okio.Okio$3: void flush() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: int UnitType +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyBar +com.bumptech.glide.integration.okhttp.R$dimen: int notification_main_column_padding_top +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void dispose() +james.adaptiveicon.R$id: int text +cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri mDownloadUri +androidx.preference.R$id: int action_bar +androidx.hilt.lifecycle.R$id: int title +com.google.android.material.R$styleable: int Transition_duration +com.google.android.material.R$color: int dim_foreground_material_light +retrofit2.Utils: java.lang.reflect.Type getParameterLowerBound(int,java.lang.reflect.ParameterizedType) +cyanogenmod.profiles.AirplaneModeSettings: int describeContents() +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_track +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +retrofit2.RequestFactory +com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_toBottomOf +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_shapeAppearance +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeRealFeelTemperature +cyanogenmod.os.Concierge: cyanogenmod.os.Concierge$ParcelInfo prepareParcel(android.os.Parcel) +com.turingtechnologies.materialscrollbar.R$attr: int dividerHorizontal +androidx.constraintlayout.widget.R$attr: int layout_constraintDimensionRatio +org.greenrobot.greendao.AbstractDaoSession: void refresh(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: void setUnit(java.lang.String) +androidx.preference.R$styleable: int AppCompatTheme_textColorSearchUrl +androidx.preference.R$color: int material_grey_50 +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: java.lang.String Unit +com.jaredrummler.android.colorpicker.R$attr: int borderlessButtonStyle +com.google.android.material.R$styleable: int SwitchCompat_showText +james.adaptiveicon.R$styleable: int MenuGroup_android_visible +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_text_color +androidx.activity.R$id: int text +androidx.appcompat.resources.R$attr: int fontWeight +okhttp3.logging.LoggingEventListener: void connectionAcquired(okhttp3.Call,okhttp3.Connection) +okio.BufferedSource +okio.SegmentedByteString: java.lang.String string(java.nio.charset.Charset) +androidx.lifecycle.LiveData +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void drain() +androidx.activity.R$drawable: int notification_bg_low_normal +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +androidx.preference.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String getValue() +io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.functions.Consumer) +com.google.android.material.R$styleable: int AppCompatImageView_android_src +wangdaye.com.geometricweather.R$dimen: int material_cursor_width +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object L$0 +androidx.hilt.lifecycle.R$id: int action_image +wangdaye.com.geometricweather.R$attr: int appBarLayoutStyle +com.google.android.material.R$styleable: int Constraint_barrierAllowsGoneWidgets +com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_layout +android.didikee.donate.R$styleable: int AppCompatTheme_popupMenuStyle +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: HourlyEntityDao$Properties() +com.xw.repo.bubbleseekbar.R$attr: int subtitleTextStyle +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean isDisposed() +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: DefaultCallAdapterFactory$ExecutorCallbackCall$1(retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall,retrofit2.Callback) +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void removeCustomTileWithTag(java.lang.String,java.lang.String,int,int) +james.adaptiveicon.R$id: int multiply +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitationProbability(java.lang.Float) +com.xw.repo.bubbleseekbar.R$attr: int actionModeCloseButtonStyle +androidx.preference.R$attr: int preferenceStyle +androidx.coordinatorlayout.R$styleable: int GradientColorItem_android_offset +com.google.android.material.R$styleable: int TextInputLayout_startIconContentDescription +com.google.android.material.R$dimen: int abc_action_bar_overflow_padding_end_material +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_DayNight +com.jaredrummler.android.colorpicker.R$string: int abc_action_menu_overflow_description +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String SECONDARY_COLOR +wangdaye.com.geometricweather.common.basic.models.weather.UV: int getUVColor(android.content.Context) +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabView +okhttp3.internal.http2.Http2Reader: boolean nextFrame(boolean,okhttp3.internal.http2.Http2Reader$Handler) +retrofit2.ServiceMethod: java.lang.Object invoke(java.lang.Object[]) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_99 +com.amap.api.location.AMapLocationClientOption: boolean q +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onStop() +com.bumptech.glide.R$styleable: int FontFamilyFont_font +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void dispose() +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int backgroundStacked +com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_close_circle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRealFeelShaderTemperature(java.lang.Integer) +okhttp3.OkHttpClient$1: okhttp3.Call newWebSocketCall(okhttp3.OkHttpClient,okhttp3.Request) +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_default_mtrl_alpha +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_title_divider_material +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Subtitle1 +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +cyanogenmod.hardware.CMHardwareManager: boolean set(int,boolean) +com.google.android.material.R$styleable: int Transition_constraintSetStart +androidx.preference.R$styleable: int AppCompatImageView_android_src +androidx.core.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$attr: int colorPrimaryDark +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitationProbability() +com.xw.repo.bubbleseekbar.R$dimen: int abc_disabled_alpha_material_light +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_margin +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_5_00 +androidx.appcompat.widget.AppCompatSpinner: int getDropDownWidth() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind Wind +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableItem_android_drawable +android.support.v4.graphics.drawable.IconCompatParcelizer: IconCompatParcelizer() +okhttp3.Cookie$Builder: okhttp3.Cookie build() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX direction +james.adaptiveicon.R$layout: int abc_popup_menu_header_item_layout +wangdaye.com.geometricweather.R$styleable: int RecycleListView_paddingBottomNoButtons +wangdaye.com.geometricweather.R$attr: int layout_goneMarginRight +com.xw.repo.bubbleseekbar.R$color: int material_grey_300 +cyanogenmod.weatherservice.ServiceRequestResult$Builder: cyanogenmod.weather.WeatherInfo mWeatherInfo +okio.SegmentedByteString: int size() +wangdaye.com.geometricweather.R$attr: int cornerFamilyTopRight +com.google.android.material.R$styleable: int[] ListPopupWindow +cyanogenmod.app.Profile: void setStreamSettings(cyanogenmod.profiles.StreamSettings) +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber +com.google.android.material.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +androidx.constraintlayout.widget.R$bool: int abc_action_bar_embed_tabs +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicLong index +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_reverseLayout +cyanogenmod.providers.CMSettings$Secure: java.lang.String ADVANCED_MODE +okio.Base64: byte[] URL_MAP +androidx.constraintlayout.widget.R$styleable: int OnSwipe_onTouchUp +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircle +okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot next() +okhttp3.internal.http2.Http2Connection: long access$608(okhttp3.internal.http2.Http2Connection) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer snowHazard3h +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderFetchStrategy +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_android_src +com.google.android.material.floatingactionbutton.FloatingActionButton: void setEnsureMinTouchTargetSize(boolean) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.google.android.material.R$styleable: int ConstraintSet_flow_wrapMode +androidx.constraintlayout.widget.R$attr: int buttonBarPositiveButtonStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle +com.turingtechnologies.materialscrollbar.R$id: int time +okhttp3.CookieJar: okhttp3.CookieJar NO_COOKIES +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX getNames() +androidx.fragment.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String value +cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings(int,boolean) +retrofit2.Retrofit: okhttp3.HttpUrl baseUrl +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int requestFusion(int) +io.reactivex.internal.queue.SpscArrayQueue: boolean offer(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableGroupBy$State: ObservableGroupBy$State(int,io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver,java.lang.Object,boolean) +com.google.android.material.R$styleable: int OnSwipe_touchAnchorId +cyanogenmod.weather.CMWeatherManager: int requestWeatherUpdate(cyanogenmod.weather.WeatherLocation,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener) +com.jaredrummler.android.colorpicker.R$string: int cpv_default_title +okhttp3.Address: java.util.List connectionSpecs() +cyanogenmod.weather.WeatherLocation: java.lang.String getPostalCode() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_default +androidx.hilt.R$styleable: int GradientColor_android_gradientRadius +androidx.hilt.lifecycle.R$id: int tag_screen_reader_focusable +com.google.android.material.R$styleable: int AppCompatTheme_dialogTheme +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupMenu +org.greenrobot.greendao.AbstractDaoMaster: java.util.Map daoConfigMap +wangdaye.com.geometricweather.R$color: int bright_foreground_inverse_material_dark +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) +androidx.viewpager.R$id: int icon +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitationProbability +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric +wangdaye.com.geometricweather.R$drawable: int btn_radio_off_mtrl +androidx.loader.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_86 +androidx.preference.R$styleable: int Preference_android_enabled +okhttp3.internal.ws.WebSocketReader: byte[] maskKey +com.google.android.material.R$drawable: int abc_list_selector_holo_dark +okhttp3.Address: javax.net.ssl.HostnameVerifier hostnameVerifier +io.reactivex.exceptions.UndeliverableException +okhttp3.Request: okhttp3.CacheControl cacheControl +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: long serialVersionUID +androidx.preference.R$styleable: int Toolbar_maxButtonHeight +androidx.preference.R$styleable: int[] AppCompatTextHelper +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_COOL +wangdaye.com.geometricweather.R$drawable: int abc_seekbar_thumb_material +androidx.legacy.coreutils.R$attr: int fontProviderFetchStrategy +com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableItem_android_id +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView_Menu +com.jaredrummler.android.colorpicker.R$attr: int switchStyle +androidx.constraintlayout.widget.R$attr: int windowFixedHeightMinor +com.google.android.material.button.MaterialButton: void setBackground(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onNext(java.lang.Object) com.google.android.gms.tasks.RuntimeExecutionException -androidx.constraintlayout.widget.R$string: int abc_menu_space_shortcut_label -com.google.android.material.R$styleable: int Layout_layout_constraintRight_toLeftOf -wangdaye.com.geometricweather.R$styleable: int[] AppCompatTextHelper -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_transitionPathRotate -james.adaptiveicon.R$dimen: int abc_panel_menu_list_width -com.google.android.material.R$styleable: int[] TabItem -com.google.android.gms.location.ActivityTransitionRequest +okhttp3.internal.http1.Http1Codec$FixedLengthSink: okio.ForwardingTimeout timeout +androidx.dynamicanimation.R$dimen: R$dimen() androidx.coordinatorlayout.R$attr: int fontProviderAuthority -com.google.android.material.R$attr: int chipSpacing -androidx.appcompat.R$attr: int titleMargins -wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_singleSelection -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_summaryOff -wangdaye.com.geometricweather.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$id: int action_settings -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.util.Date date -androidx.appcompat.R$attr: int alertDialogStyle -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$id: int activity_allergen_recyclerView -androidx.preference.R$string: int abc_action_bar_up_description -wangdaye.com.geometricweather.common.basic.models.weather.Wind: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree degree -com.loc.k: java.lang.String a -com.google.android.material.R$attr: int fabSize -wangdaye.com.geometricweather.R$attr: int scrimAnimationDuration -io.reactivex.internal.util.NotificationLite$SubscriptionNotification: java.lang.String toString() -wangdaye.com.geometricweather.R$layout: int dialog_providers_previewer -androidx.appcompat.R$dimen: int abc_action_bar_overflow_padding_end_material -com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalStyle -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircleAngle -wangdaye.com.geometricweather.R$attr: int passwordToggleTintMode -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontStyle -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: float getActionTextColorAlpha() -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -wangdaye.com.geometricweather.R$drawable: int ic_gauge -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_rtl -androidx.customview.R$styleable: int GradientColor_android_endColor -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.Observer downstream -cyanogenmod.providers.WeatherContract -androidx.preference.R$styleable: int CompoundButton_buttonTint -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton -androidx.appcompat.R$styleable: int SearchView_searchHintIcon -com.google.android.material.R$attr: int stackFromEnd -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarButtonStyle -androidx.preference.R$styleable: int AppCompatTextView_drawableBottomCompat -retrofit2.Utils$GenericArrayTypeImpl: Utils$GenericArrayTypeImpl(java.lang.reflect.Type) -cyanogenmod.os.Concierge$ParcelInfo: int mStartPosition -com.google.android.material.R$style: int ThemeOverlay_Design_TextInputEditText -com.google.android.material.R$attr: int itemFillColor -com.google.android.material.R$attr: int autoSizePresetSizes -androidx.activity.R$drawable: int notification_bg_low_normal -okio.Buffer: okio.ByteString hmacSha512(okio.ByteString) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMarkTint -androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_vertical -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property AqiText -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean getImages() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric -com.bumptech.glide.integration.okhttp.R$id: int notification_main_column -james.adaptiveicon.AdaptiveIconView: james.adaptiveicon.AdaptiveIcon getIcon() -wangdaye.com.geometricweather.R$attr: int tickMarkTint -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_preserveIconSpacing -io.reactivex.internal.observers.InnerQueuedObserver: void onNext(java.lang.Object) -okhttp3.OkHttpClient$Builder: boolean retryOnConnectionFailure -androidx.constraintlayout.widget.R$attr: int defaultQueryHint -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: java.lang.String WeatherCode -org.greenrobot.greendao.AbstractDaoMaster: int getSchemaVersion() -james.adaptiveicon.R$style: int Platform_V21_AppCompat -com.google.android.material.R$styleable: int KeyTimeCycle_android_elevation -com.google.android.material.R$styleable: int Toolbar_contentInsetEndWithActions -okhttp3.internal.ws.RealWebSocket: boolean send(okio.ByteString) -android.didikee.donate.R$attr: int singleChoiceItemLayout -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerClose(boolean,io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver) -cyanogenmod.app.CustomTile$GridExpandedStyle -wangdaye.com.geometricweather.R$dimen: int compat_button_inset_horizontal_material -androidx.lifecycle.extensions.R$id: int tag_accessibility_heading -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertInTxIterable -okio.RealBufferedSource: boolean isOpen() -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_min_width -androidx.preference.R$styleable: int DialogPreference_android_dialogLayout -com.google.android.material.R$attr: int liftOnScrollTargetViewId -com.baidu.location.indoor.mapversion.c.a$d: java.lang.String a -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerId -androidx.appcompat.widget.SearchView: void setOnCloseListener(androidx.appcompat.widget.SearchView$OnCloseListener) -androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onResume() -androidx.preference.R$style: int TextAppearance_Compat_Notification_Title -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onComplete() -com.google.android.material.R$id: int accessibility_custom_action_14 -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light -james.adaptiveicon.R$layout: int select_dialog_multichoice_material -com.amap.api.location.CoordinateConverter: com.amap.api.location.CoordinateConverter coord(com.amap.api.location.DPoint) -com.google.gson.stream.JsonWriter: boolean lenient -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onNext(java.lang.Object) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_LED_ON_VALIDATOR -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setKillProcess(boolean) -wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_percent -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setImages(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean) -androidx.dynamicanimation.R$drawable: int notification_bg_low -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_borderless_material -wangdaye.com.geometricweather.R$attr: int layoutDescription -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_homeLayout -com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_dark -androidx.lifecycle.ProcessLifecycleOwner: void activityResumed() -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void disposeAfter() -androidx.appcompat.R$attr: int editTextStyle -com.google.android.material.R$styleable: int AppCompatTheme_listDividerAlertDialog -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabBarStyle -androidx.vectordrawable.R$id: int notification_background -com.google.android.material.R$styleable: int ConstraintSet_android_translationX -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String en_US -wangdaye.com.geometricweather.R$color: int abc_search_url_text_selected -com.turingtechnologies.materialscrollbar.R$string: int abc_search_hint -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge -io.reactivex.subjects.PublishSubject$PublishDisposable: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button -androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -james.adaptiveicon.R$id: int action_image -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: java.util.concurrent.atomic.AtomicReference inner -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -wangdaye.com.geometricweather.R$attr: int telltales_tailColor -wangdaye.com.geometricweather.R$xml: int widget_day -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.util.ErrorMode errorMode -androidx.preference.R$attr: int displayOptions -com.jaredrummler.android.colorpicker.R$attr: int fastScrollVerticalTrackDrawable +com.google.android.material.R$styleable: int Badge_badgeTextColor +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeTextType +androidx.fragment.R$drawable: int notification_bg_low_pressed +com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_selected +androidx.preference.R$attr: int submitBackground +com.google.android.material.R$id: int BOTTOM_START +cyanogenmod.app.CustomTileListenerService: void onCustomTileRemoved(cyanogenmod.app.StatusBarPanelCustomTile) +androidx.hilt.R$dimen: int compat_button_inset_vertical_material +okio.RealBufferedSink: long writeAll(okio.Source) +com.google.android.material.R$plurals: int mtrl_badge_content_description +androidx.viewpager.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config +com.bumptech.glide.integration.okhttp.R$id: int start +cyanogenmod.content.Intent: java.lang.String ACTION_SCREEN_CAMERA_GESTURE +okhttp3.Cache$CacheResponseBody: okhttp3.internal.cache.DiskLruCache$Snapshot snapshot +androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int[] MenuItem +androidx.legacy.coreutils.R$attr: int alpha +cyanogenmod.weather.ICMWeatherManager +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_divider +com.google.android.material.slider.RangeSlider: void setValues(java.util.List) +james.adaptiveicon.R$styleable: int[] TextAppearance +wangdaye.com.geometricweather.R$layout: int activity_weather_daily +cyanogenmod.profiles.ConnectionSettings$BooleanState: ConnectionSettings$BooleanState() +cyanogenmod.hardware.CMHardwareManager: int FEATURE_SERIAL_NUMBER +androidx.annotation.Keep +okhttp3.ResponseBody$BomAwareReader: int read(char[],int,int) +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotation +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_collapsible +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$id: int tag_unhandled_key_event_manager +retrofit2.http.Query: java.lang.String value() +wangdaye.com.geometricweather.R$id: int tag_accessibility_actions +androidx.lifecycle.EmptyActivityLifecycleCallbacks +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_FixedSize +io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Consumer onError +wangdaye.com.geometricweather.R$styleable: int[] BottomNavigationView +androidx.appcompat.widget.ActionBarContextView: void setVisibility(int) +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme_Light +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: ObservableSampleWithObservable$SampleMainEmitLast(io.reactivex.Observer,io.reactivex.ObservableSource) +androidx.constraintlayout.widget.R$attr: int actionModeSplitBackground +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Body1 +retrofit2.Retrofit: void validateServiceInterface(java.lang.Class) +com.google.android.material.R$styleable: int FontFamilyFont_fontStyle +com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearanceInactive +com.google.android.material.R$styleable: int SnackbarLayout_elevation +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: int UnitType +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.internal.disposables.SequentialDisposable task +androidx.hilt.lifecycle.R$layout +com.google.android.material.R$style: int Widget_MaterialComponents_CollapsingToolbar +okhttp3.CertificatePinner$Pin: CertificatePinner$Pin(java.lang.String,java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_EditText +androidx.appcompat.R$id: int action_bar_root +androidx.lifecycle.extensions.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$attr: int layoutDuringTransition +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: long serialVersionUID +androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getLogo() +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +james.adaptiveicon.R$dimen: int abc_action_bar_content_inset_material +androidx.vectordrawable.animated.R$id: int tag_accessibility_pane_title +android.didikee.donate.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: java.lang.String MESSAGE +okhttp3.internal.http2.Http2Connection$Listener: okhttp3.internal.http2.Http2Connection$Listener REFUSE_INCOMING_STREAMS +androidx.constraintlayout.widget.R$id: int tag_accessibility_pane_title +io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.CompletableObserver) +com.google.android.material.R$styleable: int CardView_contentPaddingBottom +wangdaye.com.geometricweather.R$layout: int activity_main +androidx.appcompat.R$layout: int notification_template_part_chronometer +androidx.appcompat.R$styleable: int Toolbar_logo +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: int unitArrayIndex +androidx.drawerlayout.R$attr: int ttcIndex +androidx.appcompat.R$id: int accessibility_custom_action_30 +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type SLACK +androidx.lifecycle.ReportFragment: void injectIfNeededIn(android.app.Activity) +wangdaye.com.geometricweather.R$attr: int titleMargins +okhttp3.internal.platform.Platform: byte[] concatLengthPrefixed(java.util.List) +com.google.android.material.R$drawable: int abc_btn_radio_material +wangdaye.com.geometricweather.R$attr: int onCross +cyanogenmod.weather.IRequestInfoListener$Stub: cyanogenmod.weather.IRequestInfoListener asInterface(android.os.IBinder) +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getUnitId() +okhttp3.internal.http2.Http2Connection$PingRunnable: int payload2 +androidx.recyclerview.R$layout: R$layout() +android.didikee.donate.R$drawable: R$drawable() +androidx.appcompat.resources.R$dimen +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode INADEQUATE_SECURITY +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setPresenter(com.google.android.material.bottomnavigation.BottomNavigationPresenter) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language POLISH +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitationProbability(java.lang.Float) +com.turingtechnologies.materialscrollbar.R$attr: int titleTextColor +com.google.android.material.internal.FlowLayout: int getLineSpacing() +androidx.constraintlayout.widget.R$styleable: int Constraint_pathMotionArc +okhttp3.internal.cache.CacheInterceptor$1: okio.BufferedSink val$cacheBody +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +wangdaye.com.geometricweather.R$styleable: int SearchView_goIcon +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: boolean requestDismissAndStartActivity(android.content.Intent) +androidx.activity.R$dimen: int notification_action_text_size +com.google.android.material.R$styleable: int Constraint_android_alpha +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void run() +androidx.appcompat.R$styleable: int MenuView_android_itemTextAppearance +androidx.vectordrawable.R$id: int tag_unhandled_key_listeners +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeTextType +com.amap.api.location.AMapLocation: java.lang.String c(com.amap.api.location.AMapLocation,java.lang.String) +com.bumptech.glide.R$drawable: int notification_icon_background +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onKeyguardShowing(boolean) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircleRadius +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean isEmpty() +com.google.android.material.R$drawable: int abc_text_select_handle_right_mtrl_light +cyanogenmod.weather.RequestInfo$Builder +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity +com.bumptech.glide.R$attr: int fontVariationSettings +androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_fontVariationSettings +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_onDetachedFromWindow +com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_top_material +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_subtitle_material_toolbar +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_barLength +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: long dt +io.reactivex.internal.subscriptions.EmptySubscription: java.lang.String toString() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: long time +okhttp3.internal.connection.ConnectInterceptor: okhttp3.OkHttpClient client +wangdaye.com.geometricweather.R$id: int all +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okhttp3.ResponseBody delegate +wangdaye.com.geometricweather.R$array: int speed_units +okhttp3.internal.http2.Http2Connection: long intervalPingsSent +androidx.legacy.coreutils.R$layout: R$layout() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSo2Desc() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +com.google.android.material.R$styleable: int Transform_android_rotationY +androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_begin +com.jaredrummler.android.colorpicker.R$attr: int preferenceStyle +androidx.appcompat.R$styleable: int AppCompatTheme_windowMinWidthMinor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAV_BUTTONS_VALIDATOR +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_track +wangdaye.com.geometricweather.R$animator: int weather_fog_2 +com.amap.api.location.AMapLocation: com.amap.api.location.AMapLocationQualityReport getLocationQualityReport() +androidx.constraintlayout.helper.widget.Flow: void setHorizontalStyle(int) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_chainUseRtl +com.google.android.gms.base.R$id: int light +retrofit2.BuiltInConverters$BufferingResponseBodyConverter: okhttp3.ResponseBody convert(okhttp3.ResponseBody) +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +io.reactivex.internal.subscriptions.DeferredScalarSubscription: long serialVersionUID +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.lifecycle.MediatorLiveData$Source: int mVersion +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias +androidx.appcompat.widget.ActivityChooserView: void setActivityChooserModel(androidx.appcompat.widget.ActivityChooserModel) +androidx.preference.R$dimen: int compat_notification_large_icon_max_width +androidx.loader.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.viewpager2.R$id: int italic +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean mShouldShow +androidx.constraintlayout.widget.R$id: int info +okhttp3.EventListener: void connectionAcquired(okhttp3.Call,okhttp3.Connection) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String mslp +wangdaye.com.geometricweather.R$attr: int maxVelocity +androidx.constraintlayout.widget.R$styleable: int Layout_chainUseRtl +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_NAME +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_level +wangdaye.com.geometricweather.R$attr: int textAppearancePopupMenuHeader +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: ThemeVersion$ThemeVersionImpl2() +androidx.appcompat.R$drawable: int tooltip_frame_dark +wangdaye.com.geometricweather.R$styleable: int Preference_singleLineTitle +android.didikee.donate.R$dimen: int notification_top_pad +cyanogenmod.app.CMContextConstants$Features: java.lang.String LIVE_LOCK_SCREEN +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_profileExistsByName +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: java.lang.Object item +com.google.android.material.R$drawable: int ic_mtrl_chip_close_circle +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2$1: ThemeVersion$ThemeVersionImpl2$1() +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_CompactMenu +androidx.preference.R$attr: int dropdownListPreferredItemHeight +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider getInstance(java.lang.String) +com.bumptech.glide.load.engine.GlideException: java.util.List getRootCauses() +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_PREV_VALUE +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle valueOf(java.lang.String) +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$styleable: int AlertDialog_listLayout +okio.SegmentPool: okio.Segment take() +cyanogenmod.providers.CMSettings$Secure: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getIce() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String weatherIcon +androidx.preference.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +wangdaye.com.geometricweather.R$styleable: int[] MultiSelectListPreference +androidx.viewpager.R$attr: int fontProviderFetchStrategy +androidx.appcompat.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDegreeDayTemperature(java.lang.Integer) +okhttp3.Request$Builder: java.lang.String method +wangdaye.com.geometricweather.background.polling.permanent.observer.FakeForegroundService: FakeForegroundService() +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.Observer downstream +okhttp3.Response: okhttp3.CacheControl cacheControl() +io.reactivex.internal.observers.DeferredScalarDisposable: java.lang.Object value +androidx.activity.R$styleable: int FontFamilyFont_android_fontVariationSettings +okhttp3.internal.http2.Http2Connection: boolean client +cyanogenmod.weather.RequestInfo$1: RequestInfo$1() +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_precise_anchor_threshold +androidx.appcompat.widget.AppCompatTextView: void setFirstBaselineToTopHeight(int) +androidx.hilt.R$attr: int fontProviderAuthority +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_middle_mtrl_dark +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onComplete() +androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context) +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_state_list_animator +com.turingtechnologies.materialscrollbar.R$attr: int checkedIconVisible +com.jaredrummler.android.colorpicker.R$attr: int editTextColor +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$attr: int drawableSize +com.google.android.material.R$attr: int shapeAppearance +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: long serialVersionUID +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void dispose() +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.R$id: int container_main_first_daily_card_container +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type lowerBound +wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_inflatedId +androidx.appcompat.R$dimen: int abc_action_bar_default_padding_end_material +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +com.google.android.material.R$styleable: int Slider_thumbElevation +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: CaiYunMainlyResult$IndicesBeanX() +androidx.constraintlayout.widget.R$attr: int iconTint +cyanogenmod.power.IPerformanceManager$Stub$Proxy: int getPowerProfile() +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void drain() +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State RUNNING +androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotation +okhttp3.internal.http2.Http2Codec: okhttp3.Response$Builder readHttp2HeadersList(okhttp3.Headers,okhttp3.Protocol) +com.turingtechnologies.materialscrollbar.R$attr: int autoSizeStepGranularity +androidx.constraintlayout.widget.R$id: int gone +cyanogenmod.externalviews.KeyguardExternalView$3: android.graphics.Rect val$clipRect +androidx.work.R$dimen: int notification_top_pad_large_text +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_icon_padding +com.google.android.material.R$styleable: int ColorStateListItem_android_color +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_percent +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: CallEnqueueObservable$CallCallback(retrofit2.Call,io.reactivex.Observer) +com.google.gson.internal.LinkedTreeMap: java.lang.Object put(java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setBottomTextColor(int) +com.google.android.material.R$layout: int mtrl_alert_select_dialog_multichoice +wangdaye.com.geometricweather.R$styleable: int KeyPosition_drawPath +com.loc.k: java.lang.String c() +androidx.appcompat.R$dimen: int notification_small_icon_background_padding +androidx.appcompat.widget.SwitchCompat: void setSwitchTypeface(android.graphics.Typeface) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction LastAction +androidx.viewpager2.R$styleable: int ColorStateListItem_android_color +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicInteger wip +android.didikee.donate.R$integer: int abc_config_activityDefaultDur +androidx.work.R$dimen: int notification_subtext_size +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_LOW_COLOR_VALIDATOR +com.xw.repo.bubbleseekbar.R$id: int expanded_menu +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addFormDataPart(java.lang.String,java.lang.String,okhttp3.RequestBody) +android.didikee.donate.R$dimen: int abc_action_bar_icon_vertical_padding_material +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Menu +androidx.appcompat.R$styleable: int FontFamily_fontProviderQuery +okhttp3.Cache$Entry: Cache$Entry(okhttp3.Response) +cyanogenmod.weather.CMWeatherManager$2: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) +androidx.appcompat.R$attr: int alertDialogCenterButtons +androidx.hilt.R$dimen: int notification_small_icon_size_as_large +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void subscribe(io.reactivex.ObservableSource[],int) +wangdaye.com.geometricweather.R$attr: int animationDuration +cyanogenmod.hardware.ICMHardwareService: long getLtoDownloadInterval() +com.amap.api.location.AMapLocationQualityReport: AMapLocationQualityReport() +com.google.android.material.slider.Slider: int getThumbRadius() +wangdaye.com.geometricweather.R$color: int colorAccent +cyanogenmod.providers.CMSettings$Secure: java.lang.String PERFORMANCE_PROFILE +com.google.android.material.R$layout: int mtrl_calendar_month_labeled +wangdaye.com.geometricweather.R$drawable: int notif_temp_127 +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay[] values() +com.google.android.material.R$layout: int select_dialog_singlechoice_material +androidx.constraintlayout.widget.R$attr: int title +io.reactivex.Observable: io.reactivex.Observable doFinally(io.reactivex.functions.Action) +androidx.lifecycle.LiveData: java.lang.Object getValue() +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ImageButton +com.google.android.material.R$styleable: int AppCompatTheme_listPopupWindowStyle +cyanogenmod.themes.IThemeService: void unregisterThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) +okhttp3.ResponseBody$BomAwareReader: boolean closed +wangdaye.com.geometricweather.R$attr: int fontProviderAuthority +androidx.appcompat.R$styleable: int AppCompatTheme_colorPrimary +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge +androidx.constraintlayout.widget.R$id: int customPanel +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_percent +cyanogenmod.app.CustomTile$ExpandedGridItem: CustomTile$ExpandedGridItem() +okhttp3.internal.ws.RealWebSocket$2: void onFailure(okhttp3.Call,java.io.IOException) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: android.net.Uri CONTENT_URI +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.lang.String pubTime +wangdaye.com.geometricweather.R$drawable: int ic_flower +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: FlowableRepeatWhen$WhenSourceSubscriber(org.reactivestreams.Subscriber,io.reactivex.processors.FlowableProcessor,org.reactivestreams.Subscription) +androidx.preference.DialogPreference +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Title +androidx.preference.R$attr: int contentInsetEnd +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable +okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_REENCODE_SET +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableLeftCompat +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ListView_DropDown +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric +com.xw.repo.bubbleseekbar.R$attr: int seekBarStyle +androidx.preference.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat +androidx.appcompat.R$styleable: int SearchView_android_imeOptions +android.didikee.donate.R$style: int Widget_AppCompat_Light_PopupMenu +com.jaredrummler.android.colorpicker.R$bool: R$bool() +okio.Buffer: okio.Buffer writeTo(java.io.OutputStream) +okio.Okio$1: void write(okio.Buffer,long) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetRight +androidx.loader.R$id: int tag_transition_group +androidx.appcompat.R$styleable: int GradientColor_android_tileMode +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_overflow_padding_start_material +wangdaye.com.geometricweather.R$attr: int thumbTint +com.google.android.material.R$id: int icon +androidx.preference.R$attr: int thumbTintMode +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List ganmao +com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context) +com.google.android.material.R$attr: int state_dragged +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setHumidity(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean) +wangdaye.com.geometricweather.R$string: int wind +retrofit2.Utils: void checkNotPrimitive(java.lang.reflect.Type) +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_material +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void dispose() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling Cooling +wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog +com.turingtechnologies.materialscrollbar.R$drawable: int abc_tab_indicator_mtrl_alpha +com.google.android.material.R$attr: int tabPaddingBottom +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_shapeAppearance +com.jaredrummler.android.colorpicker.R$dimen: int cpv_dialog_preview_width +okhttp3.internal.ws.RealWebSocket: int receivedPingCount() +com.amap.api.location.AMapLocationClient: void startLocation() +com.google.android.material.R$dimen: int mtrl_textinput_box_corner_radius_medium +wangdaye.com.geometricweather.common.basic.models.weather.Daily +okhttp3.internal.platform.Platform: okhttp3.internal.tls.TrustRootIndex buildTrustRootIndex(javax.net.ssl.X509TrustManager) +com.google.android.material.R$layout: int mtrl_calendar_month +androidx.constraintlayout.widget.R$drawable: int abc_cab_background_top_material +james.adaptiveicon.R$styleable: int ActionBar_homeAsUpIndicator +androidx.appcompat.R$color: int primary_text_default_material_dark +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark +android.didikee.donate.R$styleable: int AppCompatTheme_checkedTextViewStyle +com.google.android.material.R$attr: int telltales_tailColor +okhttp3.Headers: java.lang.String toString() +io.reactivex.Observable: io.reactivex.Observable empty() +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void collect(java.util.Collection) +androidx.preference.R$attr: int listChoiceBackgroundIndicator +com.google.android.material.R$id: int floating +com.amap.api.fence.GeoFence: int ERROR_CODE_EXISTS +com.google.android.material.R$attr: int transitionFlags +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node findByEntry(java.util.Map$Entry) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator LOCKSCREEN_PIN_SCRAMBLE_LAYOUT_VALIDATOR +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualObserver[] observers +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_useCompatPadding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setZh_CN(java.lang.String) +wangdaye.com.geometricweather.R$attr: int actionModePasteDrawable +androidx.constraintlayout.widget.ConstraintLayout: void setMaxHeight(int) +com.jaredrummler.android.colorpicker.R$attr: int windowFixedHeightMinor +com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_text_padding_right +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder httpOnly() +wangdaye.com.geometricweather.R$string: int action_search +androidx.fragment.R$id: int notification_main_column +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void unregisterListener(cyanogenmod.app.ICustomTileListener,int) +androidx.coordinatorlayout.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +androidx.activity.R$drawable: int notification_bg_low_pressed +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator +com.xw.repo.bubbleseekbar.R$dimen: int abc_panel_menu_list_width +com.baidu.location.e.h$c: com.baidu.location.e.h$c d +com.google.android.material.circularreveal.CircularRevealRelativeLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontWeight +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent BOOT_ANIM +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow Snow +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getHaloTintList() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowMinWidthMinor +com.google.android.material.R$style: int Widget_AppCompat_ListMenuView +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listMenuViewStyle +androidx.appcompat.R$id: int forever +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemPaddingRight +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_updatesContinuously +cyanogenmod.externalviews.KeyguardExternalView$4: cyanogenmod.externalviews.KeyguardExternalView this$0 +androidx.appcompat.R$drawable: int abc_ic_go_search_api_material +cyanogenmod.weatherservice.IWeatherProviderService: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelMenuListWidth +cyanogenmod.weatherservice.IWeatherProviderService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +cyanogenmod.providers.CMSettings$NameValueCache: android.net.Uri mUri +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,byte[],int,int) +androidx.appcompat.widget.AppCompatImageView: void setBackgroundResource(int) +android.didikee.donate.R$attr: int actionBarSize +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_show_motion_spec +retrofit2.KotlinExtensions$awaitResponse$2$2: KotlinExtensions$awaitResponse$2$2(kotlinx.coroutines.CancellableContinuation) +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset +wangdaye.com.geometricweather.R$drawable: int notif_temp_100 +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_checkable +com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.providers.DataUsageContract: java.lang.String BYTES +com.google.android.gms.location.zzay: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display2 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.jaredrummler.android.colorpicker.R$attr: int commitIcon +okhttp3.ResponseBody$BomAwareReader: okio.BufferedSource source +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Tooltip +com.google.android.material.R$id: int position +com.google.android.material.R$color: int design_dark_default_color_error +okhttp3.internal.ws.WebSocketReader: boolean isClient +androidx.cardview.R$styleable: int CardView_contentPaddingLeft +okhttp3.internal.ws.WebSocketWriter: boolean writerClosed +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_unregisterThemeProcessingListener +wangdaye.com.geometricweather.R$dimen: int abc_button_inset_vertical_material +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_NoActionBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_icon_vertical_padding_material +com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context) +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit MPS +androidx.preference.R$attr: int lineHeight +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_primary_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low_normal +com.google.gson.internal.LazilyParsedNumber: int intValue() +com.turingtechnologies.materialscrollbar.TouchScrollBar: float getHandleOffset() +com.google.android.material.R$layout: int material_clock_period_toggle_land +androidx.fragment.R$id: int accessibility_custom_action_31 +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setAlarm(java.lang.String) +com.google.android.material.R$id: int square +cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper mWrapper +wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvIndex(java.lang.Integer) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemTextAppearanceInactive() +com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int RecyclerView_reverseLayout +androidx.appcompat.R$id: int accessibility_custom_action_16 +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_dividerPadding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date getTo() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginTop +com.jaredrummler.android.colorpicker.R$dimen: int cpv_item_horizontal_padding +cyanogenmod.app.ILiveLockScreenManagerProvider +io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String) +io.reactivex.Observable: io.reactivex.Observable distinct(io.reactivex.functions.Function) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver parent +james.adaptiveicon.R$style: int Widget_AppCompat_TextView_SpinnerItem +androidx.core.R$style +androidx.appcompat.resources.R$id: int accessibility_custom_action_7 +wangdaye.com.geometricweather.R$array: int air_quality_co_unit_voices +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textFontWeight +okhttp3.internal.http2.Http2Stream$StreamTimeout: java.io.IOException newTimeoutException(java.io.IOException) +androidx.vectordrawable.animated.R$dimen: int notification_right_icon_size +androidx.preference.R$drawable: int abc_ic_search_api_material +androidx.constraintlayout.widget.R$id: int search_badge +com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$style: int AlertDialog_AppCompat +androidx.preference.R$styleable: int SwitchPreference_disableDependentsState +wangdaye.com.geometricweather.R$color: int secondary_text_disabled_material_light +com.google.android.material.R$styleable: int MenuGroup_android_visible +androidx.preference.R$styleable: int Preference_iconSpaceReserved +androidx.appcompat.R$attr: int closeIcon +androidx.appcompat.R$style: int Widget_AppCompat_Toolbar +cyanogenmod.providers.CMSettings$System: java.lang.String SYSTEM_PROFILES_ENABLED +com.jaredrummler.android.colorpicker.R$dimen: int abc_switch_padding +com.turingtechnologies.materialscrollbar.R$attr: int chipIconEnabled +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: int getMarginTop() +androidx.cardview.R$styleable: int CardView_contentPaddingRight +wangdaye.com.geometricweather.R$color: int colorTextLight +com.google.android.material.R$drawable: int abc_text_select_handle_middle_mtrl_light +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_disabled +wangdaye.com.geometricweather.R$drawable: int ic_running_in_background +androidx.constraintlayout.widget.R$attr: int currentState +com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_inset_material +androidx.constraintlayout.widget.R$drawable: int notification_bg_low +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void dispose() +com.google.android.material.R$style: int Widget_AppCompat_ButtonBar +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_iconTintMode +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void clear() +androidx.preference.R$attr: int drawableStartCompat +androidx.preference.R$styleable: int MenuItem_android_checkable +com.jaredrummler.android.colorpicker.R$attr: int submitBackground +androidx.viewpager2.R$dimen: int fastscroll_minimum_range +cyanogenmod.app.CMContextConstants: java.lang.String CM_STATUS_BAR_SERVICE +com.google.android.material.R$attr: int popupWindowStyle +io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged() +com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +androidx.appcompat.widget.Toolbar: void setNavigationContentDescription(int) +androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_summaryOn +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial +com.amap.api.fence.GeoFence: java.lang.String getFenceId() +androidx.work.impl.WorkDatabase_Impl: WorkDatabase_Impl() +okhttp3.HttpUrl: java.lang.String queryParameterName(int) +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: int getMarginTop() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Toolbar +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalBias +james.adaptiveicon.R$drawable: int abc_ic_search_api_material +androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentListStyle +androidx.viewpager2.R$styleable: int GradientColor_android_centerX +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_title +cyanogenmod.app.CustomTileListenerService: int mCurrentUser +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlHighlight +wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_weight +io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function,boolean) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: java.lang.String desc +okhttp3.internal.ws.WebSocketReader: void readUntilNonControlFrame() +com.baidu.location.e.h$c: com.baidu.location.e.h$c valueOf(java.lang.String) +retrofit2.RequestFactory$Builder: java.lang.reflect.Type[] parameterTypes +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: long serialVersionUID +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getWeatherSource() +com.jaredrummler.android.colorpicker.R$attr: int actionViewClass +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CUSTOM_ENABLE_VALIDATOR +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.functions.Function mapper +androidx.appcompat.widget.AppCompatCheckBox: void setButtonDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.Date getPubTime() +androidx.lifecycle.ProcessLifecycleOwnerInitializer: boolean onCreate() +androidx.appcompat.widget.SearchView: int getInputType() +cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener: void onWeatherServiceProviderChanged(java.lang.String) +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean validate(org.reactivestreams.Subscription,org.reactivestreams.Subscription) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: void run() +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetEndWithActions +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +com.google.android.material.chip.Chip: void setChipStrokeColorResource(int) +android.didikee.donate.R$color: int button_material_dark +com.xw.repo.bubbleseekbar.R$color: int accent_material_dark +androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_light +android.didikee.donate.R$attr: int buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop +com.google.android.material.R$dimen: int abc_disabled_alpha_material_dark +androidx.lifecycle.LifecycleRegistry: int getObserverCount() +com.google.android.material.R$styleable: int KeyCycle_android_rotationY +com.google.gson.stream.JsonReader$1 +james.adaptiveicon.R$attr: int tooltipText +okhttp3.internal.http1.Http1Codec$ChunkedSource: long bytesRemainingInChunk +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.functions.Function mapper +androidx.recyclerview.widget.RecyclerView$LayoutManager: RecyclerView$LayoutManager() +com.google.android.material.R$styleable: int Layout_layout_constraintWidth_max +cyanogenmod.profiles.RingModeSettings$1: RingModeSettings$1() wangdaye.com.geometricweather.R$attr: int colorError -io.reactivex.internal.queue.SpscArrayQueue: void soProducerIndex(long) -com.jaredrummler.android.colorpicker.R$attr: int fastScrollHorizontalTrackDrawable -androidx.customview.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$styleable: int BackgroundStyle_selectableItemBackground -wangdaye.com.geometricweather.R$attr: int tintMode -com.google.android.material.R$attr: int borderlessButtonStyle -android.didikee.donate.R$styleable: int View_theme -androidx.viewpager2.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent -androidx.appcompat.R$id: int tag_transition_group -androidx.fragment.app.FragmentManagerImpl -androidx.constraintlayout.widget.R$attr: int animate_relativeTo -com.google.android.material.R$attr: int boxCornerRadiusTopEnd -androidx.preference.EditTextPreferenceDialogFragmentCompat: EditTextPreferenceDialogFragmentCompat() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List yundong -androidx.preference.R$attr: int switchPreferenceCompatStyle -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String value -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_constantSize -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -okhttp3.internal.http2.Http2Reader$ContinuationSource: short padding -androidx.vectordrawable.animated.R$drawable: int notification_bg_low_pressed -androidx.dynamicanimation.R$id: int actions -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleTextColor -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastHorizontalBias -james.adaptiveicon.R$attr: int colorSwitchThumbNormal -androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -com.xw.repo.bubbleseekbar.R$attr: int actionDropDownStyle -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2(retrofit2.Call) -androidx.fragment.R$id: int accessibility_custom_action_6 -com.turingtechnologies.materialscrollbar.R$styleable: int[] PopupWindow -android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$color: int primary_material_light -com.google.android.material.R$styleable: int GradientColorItem_android_color -retrofit2.Response: okhttp3.Headers headers() -okhttp3.ResponseBody$1 -androidx.transition.R$id: int ghost_view_holder -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitationDuration -com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_NORMAL -io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.MaybeObserver) -cyanogenmod.app.Profile$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$styleable: int[] ImageFilterView -android.didikee.donate.R$drawable: int abc_scrubber_primary_mtrl_alpha -com.jaredrummler.android.colorpicker.R$styleable: int View_android_theme -androidx.lifecycle.OnLifecycleEvent -androidx.preference.R$styleable: int ActionMode_titleTextStyle -wangdaye.com.geometricweather.R$styleable: int[] MaterialTextAppearance -com.jaredrummler.android.colorpicker.R$attr: int adjustable -com.google.android.material.R$styleable: int MaterialRadioButton_buttonTint -cyanogenmod.app.ProfileManager: android.app.NotificationGroup[] getNotificationGroups() -androidx.appcompat.R$styleable: int Toolbar_titleMarginBottom -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int LOW_NOTIFICATION_STATE -androidx.preference.R$styleable: int ActionMode_background -cyanogenmod.hardware.CMHardwareManager: int FEATURE_TAP_TO_WAKE -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode -android.didikee.donate.R$attr: int textAppearanceListItem -com.google.android.material.R$styleable: int ActionBar_backgroundSplit -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabStyle -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton -androidx.vectordrawable.R$id: int text -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRainPrecipitation(java.lang.Float) -android.didikee.donate.R$dimen: int abc_seekbar_track_progress_height_material -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.google.android.gms.signin.internal.zam: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$styleable: int Slider_haloColor -com.google.android.material.R$dimen: int design_snackbar_background_corner_radius -james.adaptiveicon.R$dimen: int tooltip_vertical_padding +com.google.android.material.R$drawable: int abc_ic_clear_material +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginBottom +com.jaredrummler.android.colorpicker.R$attr: int cpv_previewSize +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1 +androidx.preference.R$styleable: int AlertDialog_showTitle +com.jaredrummler.android.colorpicker.R$id: int action_menu_presenter +okhttp3.internal.ws.RealWebSocket: java.util.concurrent.ScheduledExecutorService executor +james.adaptiveicon.R$attr: int actionViewClass +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline3 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 +androidx.viewpager2.R$id: int icon +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataTitle +androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +androidx.hilt.lifecycle.R$dimen: int notification_action_icon_size +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient build() +androidx.vectordrawable.R$styleable: int GradientColor_android_startX +cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mOnClick +androidx.appcompat.widget.LinearLayoutCompat: int getOrientation() +wangdaye.com.geometricweather.R$dimen: int preference_seekbar_padding_vertical +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_onClick +androidx.constraintlayout.widget.R$styleable: int Constraint_pivotAnchor +androidx.hilt.work.R$id: int actions +androidx.coordinatorlayout.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$attr: int showPaths +androidx.constraintlayout.widget.R$styleable: int ActionBar_backgroundStacked +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitationProbability +androidx.vectordrawable.animated.R$dimen: int compat_notification_large_icon_max_width +androidx.constraintlayout.widget.ConstraintLayout: void setOnConstraintsChanged(androidx.constraintlayout.widget.ConstraintsChangedListener) +androidx.appcompat.R$id: int titleDividerNoCustom +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog_MinWidth +com.google.android.material.R$styleable: int[] Slider +io.reactivex.internal.queue.SpscArrayQueue: boolean isEmpty() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: AccuCurrentResult$LocalSource() +com.google.android.material.R$styleable: int Constraint_layout_constraintTop_creator +io.reactivex.Observable: io.reactivex.Observable switchIfEmpty(io.reactivex.ObservableSource) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +wangdaye.com.geometricweather.R$attr: int brightness +org.greenrobot.greendao.AbstractDao: void readEntity(android.database.Cursor,java.lang.Object,int) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindSpeed(java.lang.Float) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2(androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription) +wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_Toolbar +androidx.constraintlayout.widget.R$attr: int drawableRightCompat +okhttp3.OkHttpClient$Builder: int readTimeout +androidx.core.app.NotificationCompatSideChannelService +io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function,boolean,int) +android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: double Value +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_disabled_material_light +com.google.android.material.circularreveal.CircularRevealGridLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +androidx.core.R$id: int notification_main_column_container +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onComplete() +com.google.android.material.R$styleable: int ActionBar_subtitleTextStyle +androidx.transition.R$id: int action_divider +androidx.preference.R$id: int accessibility_custom_action_25 +com.jaredrummler.android.colorpicker.R$layout: int abc_popup_menu_item_layout +okhttp3.internal.Internal: void apply(okhttp3.ConnectionSpec,javax.net.ssl.SSLSocket,boolean) +cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(android.os.Parcel,cyanogenmod.weather.WeatherInfo$1) +com.google.android.material.R$attr: int expandedTitleMarginStart +androidx.loader.R$styleable: int GradientColor_android_gradientRadius +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitation +okhttp3.internal.connection.RealConnection$1: okhttp3.internal.connection.StreamAllocation val$streamAllocation +james.adaptiveicon.R$attr: int textAppearanceSearchResultSubtitle +android.didikee.donate.R$attr: int actionProviderClass +com.google.android.material.R$string: int mtrl_picker_invalid_format_example +okio.Options: java.lang.Object get(int) +androidx.lifecycle.MethodCallsLogger: boolean approveCall(java.lang.String,int) +com.google.android.material.R$attr: int tabPadding +android.didikee.donate.R$id: int chronometer +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_TabLayout +retrofit2.Response +androidx.coordinatorlayout.R$dimen: int notification_media_narrow_margin +androidx.constraintlayout.widget.R$anim: int abc_tooltip_exit +com.google.android.material.floatingactionbutton.FloatingActionButton: int getSize() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property CityId +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: void setProgress(float) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Body1 +androidx.appcompat.widget.ScrollingTabContainerView: void setContentHeight(int) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Subhead_Inverse +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: JdkWithJettyBootPlatform$JettyNegoProvider(java.util.List) +com.google.android.material.R$style: int TextAppearance_Design_Tab +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setEncodedQueryParameter(java.lang.String,java.lang.String) +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status CLEARED +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$attr: int colorPrimarySurface +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_creator +com.google.android.material.slider.Slider: void setThumbStrokeWidthResource(int) +com.google.android.material.R$styleable: int KeyCycle_motionProgress +cyanogenmod.os.Build$CM_VERSION_CODES: int BOYSENBERRY +androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: java.lang.String Localized +androidx.fragment.R$styleable: int[] ColorStateListItem +androidx.preference.R$styleable: int MenuGroup_android_visible +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getDistanceText(android.content.Context,float) +androidx.appcompat.R$layout: int abc_alert_dialog_material +cyanogenmod.app.ICMTelephonyManager: boolean isDataConnectionSelectedOnSub(int) +com.google.android.material.R$attr: int titleTextStyle +com.google.android.material.slider.Slider: Slider(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$styleable: int AppCompatTheme_colorPrimaryDark +cyanogenmod.app.IProfileManager: boolean setActiveProfileByName(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String aqi +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotationY +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +okio.GzipSink: java.util.zip.Deflater deflater() +androidx.vectordrawable.R$id: int icon_group +androidx.fragment.app.SuperNotCalledException: SuperNotCalledException(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop +wangdaye.com.geometricweather.R$id: int ghost_view_holder +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_29 +com.google.android.material.R$attr: int maxButtonHeight +com.google.android.material.R$dimen: int mtrl_tooltip_minHeight +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int dialogMessage +androidx.lifecycle.SavedStateHandleController: boolean isAttached() +com.bumptech.glide.integration.okhttp.R$color: int notification_icon_bg_color +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_27 +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_voice +androidx.core.R$style: int TextAppearance_Compat_Notification_Time +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg +okio.AsyncTimeout$Watchdog: AsyncTimeout$Watchdog() +androidx.core.R$drawable: int notify_panel_notification_icon_bg +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: FloatingActionButton$Behavior() +com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableCompat +okio.RealBufferedSink: okio.BufferedSink write(byte[],int,int) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +com.jaredrummler.android.colorpicker.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getIce() +com.google.android.material.R$interpolator: int mtrl_fast_out_slow_in +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature +androidx.appcompat.R$styleable: int PopupWindow_android_popupAnimationStyle +androidx.work.impl.utils.futures.AbstractFuture: androidx.work.impl.utils.futures.AbstractFuture$Listener listeners +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: java.lang.String Unit +com.baidu.location.e.l$b: java.lang.String h +androidx.appcompat.widget.AppCompatSpinner: int getDropDownVerticalOffset() +com.github.rahatarmanahmed.cpv.R$integer +androidx.constraintlayout.widget.R$styleable: int[] AppCompatTextHelper +com.google.android.material.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets +io.reactivex.subjects.PublishSubject$PublishDisposable: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int AlertDialog_listItemLayout +okhttp3.OkHttpClient +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int prefetch +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderQuery +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_wrapMode +james.adaptiveicon.R$drawable: int abc_seekbar_tick_mark_material +androidx.appcompat.view.menu.MenuPopup +androidx.constraintlayout.widget.R$attr: int colorAccent +androidx.appcompat.widget.AppCompatTextView: void setPrecomputedText(androidx.core.text.PrecomputedTextCompat) +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode IMMEDIATE +androidx.hilt.lifecycle.R$id: int text +wangdaye.com.geometricweather.R$string: int settings_title_item_animation_switch +com.google.gson.FieldNamingPolicy$4 +okhttp3.internal.tls.OkHostnameVerifier: int ALT_IPA_NAME +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.google.android.material.floatingactionbutton.FloatingActionButton: void setImageDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$id: int save_non_transition_alpha +io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator valueOf(java.lang.String) +io.reactivex.internal.observers.LambdaObserver: LambdaObserver(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Consumer) +com.google.android.material.R$string: int abc_menu_ctrl_shortcut_label +com.amap.api.location.AMapLocation: int a(com.amap.api.location.AMapLocation,int) +com.google.android.material.R$styleable: int[] SwitchCompat +androidx.appcompat.R$styleable: int TextAppearance_android_typeface +androidx.preference.R$styleable: int View_paddingStart +okhttp3.internal.ws.WebSocketProtocol: java.lang.String closeCodeExceptionMessage(int) +androidx.work.BackoffPolicy: androidx.work.BackoffPolicy[] values() +androidx.customview.R$drawable +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: java.lang.Object item +com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_pressed +com.google.android.material.R$styleable: int KeyTimeCycle_android_rotation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setPubTime(java.util.Date) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitationProbability +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_type +com.bumptech.glide.Registry$NoResultEncoderAvailableException +com.google.android.material.chip.Chip: android.content.res.ColorStateList getRippleColor() +wangdaye.com.geometricweather.R$string: int password_toggle_content_description +okhttp3.internal.cache2.Relay: java.io.RandomAccessFile file +com.google.android.material.R$integer: int config_tooltipAnimTime +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_text_padding_right +com.baidu.location.e.h$a: com.baidu.location.e.h$a b +cyanogenmod.os.Concierge$ParcelInfo: int getParcelVersion() +com.xw.repo.bubbleseekbar.R$attr: int dividerHorizontal +wangdaye.com.geometricweather.R$attr: int inner_margins +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean speed +androidx.preference.R$style: int Base_Animation_AppCompat_DropDownUp +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog_MinWidth +okhttp3.internal.http.RequestLine: RequestLine() +retrofit2.CallAdapter: java.lang.Object adapt(retrofit2.Call) +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabTextStyle +wangdaye.com.geometricweather.R$styleable: int Slider_tickVisible +okhttp3.internal.Util: java.lang.AssertionError assertionError(java.lang.String,java.lang.Exception) +retrofit2.RequestBuilder +com.xw.repo.bubbleseekbar.R$anim: int abc_popup_exit +com.google.android.material.R$dimen: int abc_dialog_fixed_width_major +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl +wangdaye.com.geometricweather.R$color: int design_fab_stroke_top_inner_color +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Button +com.turingtechnologies.materialscrollbar.R$attr: int textColorAlertDialogListItem +com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableTransition +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +com.google.android.material.R$drawable: int abc_ic_menu_cut_mtrl_alpha +com.bumptech.glide.integration.okhttp.R$layout: int notification_template_part_chronometer +com.jaredrummler.android.colorpicker.R$bool +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun +androidx.hilt.R$drawable: int notification_bg +com.turingtechnologies.materialscrollbar.R$style: int Animation_Design_BottomSheetDialog +cyanogenmod.app.PartnerInterface: cyanogenmod.app.IPartnerInterface sService +androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: double Value +io.reactivex.Observable: io.reactivex.Observable delaySubscription(io.reactivex.ObservableSource) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric Metric +cyanogenmod.app.ProfileGroup: java.util.UUID getUuid() +wangdaye.com.geometricweather.db.entities.AlertEntityDao +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_motionTarget +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: MfHistoryResult$History$Snow() +cyanogenmod.weather.CMWeatherManager: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void dispose() +com.google.gson.stream.JsonScope: int NONEMPTY_DOCUMENT +com.google.android.material.R$styleable: int Chip_closeIcon +io.reactivex.internal.schedulers.ScheduledRunnable +cyanogenmod.app.suggest.ApplicationSuggestion$1 +okhttp3.internal.http1.Http1Codec: int STATE_READING_RESPONSE_BODY +android.didikee.donate.R$color: int abc_hint_foreground_material_dark +androidx.recyclerview.widget.RecyclerView: void setLayoutFrozen(boolean) +androidx.preference.R$attr: int coordinatorLayoutStyle +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_colorShape +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.ILiveLockScreenManager sService +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.Observer downstream +androidx.constraintlayout.widget.R$styleable: int KeyCycle_wavePeriod +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: io.reactivex.Observer observer +okio.BufferedSink: okio.BufferedSink writeDecimalLong(long) +wangdaye.com.geometricweather.R$id: int item_icon_provider_title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setLogo(java.lang.String) +cyanogenmod.profiles.RingModeSettings +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult +com.google.android.material.R$attr: int yearStyle +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: long serialVersionUID +wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newDevSession(android.content.Context,java.lang.String) +androidx.core.R$id: int accessibility_custom_action_14 +cyanogenmod.externalviews.KeyguardExternalView$9: KeyguardExternalView$9(cyanogenmod.externalviews.KeyguardExternalView) +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setMinutelyList(java.util.List) +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableItem_android_drawable +com.jaredrummler.android.colorpicker.R$id: int action_text +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_thickness +com.google.android.material.R$dimen: int notification_top_pad +androidx.appcompat.R$styleable: int ActionBar_popupTheme +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: long serialVersionUID +wangdaye.com.geometricweather.db.entities.AlertEntity: void setType(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_backgroundTint +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherSuccess(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Info +com.jaredrummler.android.colorpicker.R$attr: int navigationContentDescription +wangdaye.com.geometricweather.R$color: int bright_foreground_material_light +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: int requestFusion(int) +cyanogenmod.app.CustomTile$Builder: boolean mSensitiveData +wangdaye.com.geometricweather.R$string: int key_clock_font +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX brandInfo +com.jaredrummler.android.colorpicker.R$color: int primary_text_disabled_material_light +okhttp3.logging.HttpLoggingInterceptor: boolean isPlaintext(okio.Buffer) +androidx.appcompat.R$drawable: int abc_list_selector_disabled_holo_dark +io.reactivex.Observable: io.reactivex.Observable switchOnNext(io.reactivex.ObservableSource) +com.google.android.material.R$styleable: int CardView_contentPaddingRight +wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingRight +com.jaredrummler.android.colorpicker.R$color +androidx.constraintlayout.widget.R$attr: int motion_postLayoutCollision +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() +com.turingtechnologies.materialscrollbar.R$string: int path_password_eye +com.google.android.material.R$styleable: int[] GradientColorItem +io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,io.reactivex.functions.Function) +cyanogenmod.library.R$styleable: int LiveLockScreen_type +com.jaredrummler.android.colorpicker.R$id: int cpv_color_picker_view +com.google.android.material.R$id: int postLayout +wangdaye.com.geometricweather.R$styleable: int[] MaterialButtonToggleGroup +com.turingtechnologies.materialscrollbar.R$id: int center +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getRagweedIndex() +wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity +wangdaye.com.geometricweather.R$layout: int item_tag +io.reactivex.Observable: java.lang.Object blockingFirst() +io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,boolean) +cyanogenmod.app.ProfileManager: void setActiveProfile(java.util.UUID) +androidx.viewpager2.R$drawable: int notification_icon_background +com.jaredrummler.android.colorpicker.R$color: int primary_material_light +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Subhead +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void otherError(java.lang.Throwable) +okhttp3.internal.http.RealInterceptorChain: okhttp3.EventListener eventListener +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object set(int,java.lang.Object) cyanogenmod.themes.IThemeProcessingListener$Stub: cyanogenmod.themes.IThemeProcessingListener asInterface(android.os.IBinder) -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableRightCompat -wangdaye.com.geometricweather.R$string: int feedback_location_permissions_statement -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light_normal_background -wangdaye.com.geometricweather.R$styleable: int Layout_layout_editor_absoluteY -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int UVIndex -androidx.activity.R$styleable: int FontFamily_fontProviderFetchStrategy -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 -android.didikee.donate.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -okio.DeflaterSink: boolean closed -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionBar -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabView -androidx.loader.R$integer: R$integer() -io.reactivex.Observable: io.reactivex.Single collect(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer) -androidx.recyclerview.widget.RecyclerView: int getMaxFlingVelocity() -okio.Buffer: boolean request(long) -androidx.vectordrawable.R$id: int accessibility_custom_action_28 -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_details_setting -com.amap.api.location.AMapLocationClient: android.content.Context a -com.jaredrummler.android.colorpicker.R$attr: int borderlessButtonStyle -wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_divider -com.google.android.material.R$attr: int tooltipFrameBackground -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon -androidx.constraintlayout.widget.R$styleable: int Constraint_chainUseRtl -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$color: int bright_foreground_inverse_material_dark -androidx.drawerlayout.R$dimen: int notification_small_icon_background_padding -androidx.lifecycle.SavedStateHandle: androidx.savedstate.SavedStateRegistry$SavedStateProvider mSavedStateProvider -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_body_1_material -com.google.android.material.R$layout: int abc_list_menu_item_checkbox -wangdaye.com.geometricweather.R$string: int mtrl_picker_announce_current_selection -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -okhttp3.Cache$2 -okhttp3.Response$Builder: okhttp3.Response$Builder body(okhttp3.ResponseBody) -com.xw.repo.bubbleseekbar.R$dimen: int disabled_alpha_material_light -retrofit2.RequestBuilder: char[] HEX_DIGITS -androidx.lifecycle.Lifecycle -androidx.hilt.work.R$styleable: int FontFamilyFont_font -cyanogenmod.app.CustomTile: java.lang.String contentDescription -androidx.drawerlayout.R$id: int time -androidx.preference.R$styleable: int SearchView_searchHintIcon -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonStyle -wangdaye.com.geometricweather.R$attr: int itemPadding -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_dither -androidx.preference.R$styleable: int MenuItem_actionProviderClass -androidx.appcompat.widget.Toolbar: int getContentInsetEnd() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeWidthFocused -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$styleable: int[] CollapsingToolbarLayout_Layout -okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,java.lang.String) -com.google.android.material.slider.Slider: int getThumbRadius() -okhttp3.HttpUrl: int pathSize() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNo2() -androidx.preference.R$layout: int abc_screen_toolbar -androidx.preference.R$styleable: int[] PreferenceFragment -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sColorValidator -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: java.lang.Float value -androidx.appcompat.R$attr: int tint -com.google.android.material.R$attr: int itemIconTint -okhttp3.MultipartBody: okhttp3.MediaType PARALLEL -okio.Pipe$PipeSink: okio.Pipe this$0 -cyanogenmod.providers.CMSettings$NameValueCache: long mValuesVersion -wangdaye.com.geometricweather.R$attr: int flow_horizontalBias -okhttp3.RealCall: okio.AsyncTimeout timeout -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night Night -cyanogenmod.externalviews.KeyguardExternalView$3 -com.xw.repo.bubbleseekbar.R$attr: int radioButtonStyle -androidx.constraintlayout.widget.R$styleable: int Spinner_android_dropDownWidth -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.lang.String domain -androidx.viewpager2.R$integer: R$integer() -com.google.android.material.R$styleable: int[] FloatingActionButton_Behavior_Layout -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List alertList -wangdaye.com.geometricweather.R$id: int zero_corner_chip -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_levelValue -wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvDescription(java.lang.String) -androidx.core.app.NotificationCompatSideChannelService -com.turingtechnologies.materialscrollbar.R$attr: int tickMarkTintMode -wangdaye.com.geometricweather.R$font: int product_sans_medium -com.amap.api.fence.PoiItem: void setAdname(java.lang.String) -com.bumptech.glide.load.engine.CallbackException: long serialVersionUID -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_setBtn -wangdaye.com.geometricweather.R$styleable: int TagView_checked -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitation -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cpb -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getChipIcon() -cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.view.View onCreateView() -androidx.customview.R$styleable: int ColorStateListItem_android_color -androidx.preference.R$attr: int preferenceFragmentCompatStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTint -wangdaye.com.geometricweather.R$id: int chip3 -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SeekBar -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_summaryOff -androidx.fragment.R$id: int info +okio.package-info +wangdaye.com.geometricweather.R$attr: int navigationContentDescription +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_dither +androidx.preference.R$styleable: int AppCompatTheme_viewInflaterClass +androidx.viewpager.R$id: int action_divider +androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.db.entities.DaoSession +androidx.transition.R$id: int action_text +com.google.android.material.R$attr: int textInputStyle +com.google.android.material.R$styleable: int Constraint_android_layout_marginStart +wangdaye.com.geometricweather.R$string: int wind_1 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +okhttp3.Dispatcher: java.util.Deque readyAsyncCalls +io.reactivex.Observable: java.lang.Object blockingSingle() +androidx.preference.R$dimen: int compat_notification_large_icon_max_height +retrofit2.OkHttpCall$1: OkHttpCall$1(retrofit2.OkHttpCall,retrofit2.Callback) +com.google.android.material.R$string: int mtrl_exceed_max_badge_number_content_description +wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_height_material +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver) +com.google.android.material.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +com.google.android.material.R$styleable: int GradientColor_android_type +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabText +androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableTransition +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5 +okhttp3.internal.platform.ConscryptPlatform +androidx.appcompat.R$attr: int buttonIconDimen +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: ObservableWindowBoundary$WindowBoundaryMainObserver(io.reactivex.Observer,int) +wangdaye.com.geometricweather.R$id: int bottom +com.amap.api.location.CoordinateConverter: com.amap.api.location.DPoint a +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$color: int design_default_color_error +androidx.fragment.R$attr: int fontProviderFetchStrategy +com.google.gson.stream.JsonReader: void skipToEndOfLine() +wangdaye.com.geometricweather.R$styleable: int[] ColorStateListItem +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCopyDrawable +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginEnd +com.turingtechnologies.materialscrollbar.Indicator: void setText(int) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: java.lang.String getInterfaceDescriptor() +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.disposables.Disposable upstream +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast$Builder setHigh(double) +wangdaye.com.geometricweather.common.basic.models.weather.History: int getDaytimeTemperature() +android.didikee.donate.R$styleable: int RecycleListView_paddingBottomNoButtons +androidx.appcompat.R$attr: int thumbTint +io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer,io.reactivex.functions.Action) +com.xw.repo.bubbleseekbar.R$string: int abc_shareactionprovider_share_with_application +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +com.amap.api.fence.GeoFenceClient: boolean removeGeoFence(com.amap.api.fence.GeoFence) +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_HIGH +cyanogenmod.weather.CMWeatherManager: java.lang.String getActiveWeatherServiceProviderLabel() +james.adaptiveicon.R$attr: int contentInsetStartWithNavigation +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void setDisposable(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Id +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: void complete() +androidx.viewpager2.R$styleable: int[] ViewPager2 +androidx.viewpager2.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$attr: int dialogPreferredPadding +androidx.lifecycle.SingleGeneratedAdapterObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +com.google.gson.JsonParseException: JsonParseException(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_margin +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_summaryOn +com.amap.api.fence.GeoFenceListener +androidx.constraintlayout.widget.R$string: int abc_searchview_description_submit +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +com.google.android.material.R$attr: int layout_constrainedWidth +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status[] values() +androidx.vectordrawable.animated.R$layout: int notification_template_custom_big +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_18 +com.turingtechnologies.materialscrollbar.R$attr: int msb_scrollMode +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum Maximum +androidx.constraintlayout.widget.R$attr: int onNegativeCross +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_bottom +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String weatherStart +com.xw.repo.bubbleseekbar.R$attr: int srcCompat +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +cyanogenmod.weather.WeatherInfo$DayForecast: double mHigh +androidx.lifecycle.Transformations$3: Transformations$3(androidx.lifecycle.MediatorLiveData) +okhttp3.internal.http2.Hpack$Writer: okio.Buffer out +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox +androidx.preference.R$bool: int abc_action_bar_embed_tabs +com.jaredrummler.android.colorpicker.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setTextColor(int) +wangdaye.com.geometricweather.R$styleable: int[] SwitchCompat +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType CENTER +okhttp3.internal.http2.Http2Stream$FramingSink +cyanogenmod.app.CustomTile: java.lang.Object clone() +androidx.lifecycle.ReportFragment: void dispatchCreate(androidx.lifecycle.ReportFragment$ActivityInitializationListener) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: MfHistoryResult$History$Precipitation() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr +androidx.preference.R$attr: int subtitleTextStyle +androidx.constraintlayout.widget.R$attr: int actionDropDownStyle +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_submit +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_ASSIST_ACTION +retrofit2.KotlinExtensions: java.lang.Object create(retrofit2.Retrofit) +com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind Wind +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +com.turingtechnologies.materialscrollbar.R$id: int bottom +androidx.hilt.R$styleable: int FontFamily_fontProviderCerts +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String WALLPAPER_URI +androidx.preference.R$styleable: int ListPreference_entryValues +com.google.android.material.R$id: int ignoreRequest +androidx.viewpager.R$drawable: int notification_bg_low_normal +com.xw.repo.bubbleseekbar.R$id: R$id() +androidx.appcompat.R$attr: int textAppearanceListItem +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_9 +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber +cyanogenmod.providers.CMSettings$Secure$1: java.lang.String mDelimiter +wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_3 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_toolbarStyle +wangdaye.com.geometricweather.R$id: int widget_day_week_card +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit FTPS +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration getPrecipitationDuration() +android.didikee.donate.R$id: int search_plate +retrofit2.RequestFactory: okhttp3.Request create(java.lang.Object[]) +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String findMostSpecific(java.lang.String) +androidx.preference.R$styleable: int AppCompatTheme_actionBarTheme +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onNext(java.lang.Object) +cyanogenmod.app.IPartnerInterface$Stub$Proxy: void reboot() +com.google.android.material.slider.Slider: int getHaloRadius() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: void run() +androidx.constraintlayout.widget.R$styleable: int ActionBar_divider +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_95 +androidx.lifecycle.CompositeGeneratedAdaptersObserver: CompositeGeneratedAdaptersObserver(androidx.lifecycle.GeneratedAdapter[]) +androidx.fragment.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer iso0 +okhttp3.Cache$Entry: long sentRequestMillis +com.turingtechnologies.materialscrollbar.R$color: int button_material_dark james.adaptiveicon.R$color: int background_floating_material_light -com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -androidx.transition.R$id: int tag_transition_group -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.util.SparseArray getBadgeDrawables() -androidx.preference.R$attr: int thumbTint -androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMarkTintMode -com.google.android.material.R$attr: int actionBarTabBarStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_end -com.google.android.material.R$dimen: int mtrl_shape_corner_size_small_component -retrofit2.Retrofit: boolean validateEagerly -com.google.android.material.card.MaterialCardView: void setStrokeColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context) -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener getRequestListener() -androidx.activity.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$string: int sp_widget_week_setting -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.internal.util.AtomicThrowable errors -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.subjects.UnicastSubject window -wangdaye.com.geometricweather.R$attr: int hintTextColor -androidx.recyclerview.R$styleable: R$styleable() -androidx.constraintlayout.widget.R$dimen: int abc_search_view_preferred_height -com.google.android.material.R$styleable: int Chip_textEndPadding -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration -wangdaye.com.geometricweather.R$attr: int colorButtonNormal -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_minHeight -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder writeTimeout(long,java.util.concurrent.TimeUnit) -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$attr: int listLayout -androidx.appcompat.R$attr: int popupTheme -io.reactivex.internal.util.EmptyComponent: void onComplete() -androidx.preference.TwoStatePreference$SavedState -androidx.appcompat.R$dimen: int abc_control_inset_material -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Latitude -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setValue(java.util.List) -wangdaye.com.geometricweather.R$styleable: int Slider_trackColor -androidx.preference.R$color: int highlighted_text_material_dark -androidx.appcompat.R$drawable: int abc_scrubber_primary_mtrl_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: int UnitType -wangdaye.com.geometricweather.R$id: int ALT -wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_material -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int sourceMode -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: long serialVersionUID -com.google.android.material.R$styleable: int Layout_layout_constraintHeight_default -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: AccuDailyResult$DailyForecasts$Night$WindGust$Speed() -okhttp3.internal.cache.DiskLruCache$2: DiskLruCache$2(okhttp3.internal.cache.DiskLruCache,okio.Sink) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_begin -com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView_PrimarySurface -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$style: int Platform_AppCompat -wangdaye.com.geometricweather.R$color: int colorLine -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.R$attr: int listPopupWindowStyle -wangdaye.com.geometricweather.R$styleable: int ButtonBarLayout_allowStacking -com.google.android.material.bottomappbar.BottomAppBar: com.google.android.material.bottomappbar.BottomAppBarTopEdgeTreatment getTopEdgeTreatment() -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType JPEG -james.adaptiveicon.R$styleable: int MenuItem_android_titleCondensed -androidx.hilt.R$styleable: int FontFamily_fontProviderAuthority -androidx.drawerlayout.R$styleable: int[] FontFamilyFont -okhttp3.OkHttpClient: java.util.List networkInterceptors() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constrainedHeight -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature -android.didikee.donate.R$style: int Theme_AppCompat_Light_DarkActionBar -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onNext(java.lang.Object) -wangdaye.com.geometricweather.settings.fragments.AppearanceSettingsFragment: AppearanceSettingsFragment() -com.autonavi.aps.amapapi.model.AMapLocationServer: void a(java.lang.String) -androidx.viewpager.R$dimen: int notification_right_side_padding_top -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getLtoDestination() -wangdaye.com.geometricweather.R$color: int material_timepicker_button_background -com.google.android.material.button.MaterialButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder mRemote -james.adaptiveicon.R$styleable: int AppCompatTheme_controlBackground +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_search_api_material +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleDrawable +james.adaptiveicon.R$drawable: int abc_list_selector_background_transition_holo_light +wangdaye.com.geometricweather.R$styleable: int[] Toolbar +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_visible +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display4 +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_state_dragged +wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogIcon +androidx.preference.R$styleable: int[] ButtonBarLayout +james.adaptiveicon.R$attr: int alertDialogStyle +com.google.android.material.R$bool: R$bool() +com.google.gson.stream.JsonWriter: void string(java.lang.String) +okhttp3.OkHttpClient: okhttp3.Authenticator authenticator +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_24 +android.didikee.donate.R$style: int Widget_AppCompat_Button_Small +androidx.cardview.widget.CardView: CardView(android.content.Context) +androidx.work.NetworkType: androidx.work.NetworkType valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String direct +james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton_Overflow +james.adaptiveicon.R$style: int Platform_V25_AppCompat_Light +com.google.android.gms.internal.common.zzq: zzq(com.google.android.gms.internal.common.zzo) +androidx.hilt.lifecycle.R$color: int secondary_text_default_material_light +okhttp3.internal.platform.JdkWithJettyBootPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +cyanogenmod.providers.CMSettings$System: java.lang.String HOME_WAKE_SCREEN +com.google.android.material.R$styleable: int MockView_mock_showLabel +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void innerComplete() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: long serialVersionUID +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float rainPrecipitationProbability +androidx.vectordrawable.animated.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: WeatherContract$WeatherColumns$TempUnit() +okhttp3.internal.http2.Http2: byte TYPE_PING +androidx.drawerlayout.R$id: int italic +wangdaye.com.geometricweather.R$styleable: int ActionBar_homeLayout +wangdaye.com.geometricweather.background.polling.work.worker.TomorrowForecastUpdateWorker: TomorrowForecastUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) +android.didikee.donate.R$styleable: int SwitchCompat_thumbTintMode +com.xw.repo.bubbleseekbar.R$attr: int arrowShaftLength +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree nighttimeWindDegree +retrofit2.converter.gson.GsonResponseBodyConverter: com.google.gson.TypeAdapter adapter +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Hint +wangdaye.com.geometricweather.R$string: int material_minute_suffix +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void removeSome(int) +com.google.android.material.R$styleable: int Chip_showMotionSpec +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +androidx.transition.R$styleable: int GradientColor_android_endX +com.turingtechnologies.materialscrollbar.R$attr: int splitTrack +androidx.swiperefreshlayout.R$attr: int font +com.google.android.material.R$dimen: int mtrl_textinput_outline_box_expanded_padding +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_Underlined +com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.recyclerview.R$id: int right_side +androidx.vectordrawable.R$dimen: int notification_action_icon_size +io.reactivex.Observable: io.reactivex.Observable flatMapSingle(io.reactivex.functions.Function,boolean) +androidx.lifecycle.ProcessLifecycleOwner$3: androidx.lifecycle.ProcessLifecycleOwner this$0 +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets +android.didikee.donate.R$string: int abc_searchview_description_query +com.google.android.material.R$attr: int layout_constrainedHeight +wangdaye.com.geometricweather.R$drawable: int abc_tab_indicator_material +androidx.preference.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +james.adaptiveicon.R$attr: int windowFixedWidthMajor +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getWeatherSource() +android.didikee.donate.R$attr: int editTextBackground +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.CMHardwareManager getInstance(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemBackground +cyanogenmod.app.ProfileGroup: ProfileGroup(java.lang.String,java.util.UUID,boolean) +androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabStyle +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motion_triggerOnCollision +androidx.vectordrawable.R$color: int notification_action_color_filter +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_query +androidx.appcompat.widget.SwitchCompat: android.content.res.ColorStateList getThumbTintList() +androidx.preference.R$styleable: int SwitchCompat_android_thumb +wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_alpha +com.turingtechnologies.materialscrollbar.R$attr: int helperText +androidx.preference.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +androidx.dynamicanimation.R$layout: int notification_action_tombstone +androidx.preference.R$color: int background_material_dark +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_android_elevation +wangdaye.com.geometricweather.R$string: int common_google_play_services_enable_button +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_useCompatPadding +androidx.appcompat.R$attr: int buttonBarNeutralButtonStyle +androidx.appcompat.R$id: int right_side +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderQuery +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabBackground +com.google.android.material.textfield.TextInputLayout: void setStartIconTintList(android.content.res.ColorStateList) +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +com.google.android.material.R$attr: int iconGravity +com.jaredrummler.android.colorpicker.R$color: int material_grey_50 +cyanogenmod.app.PartnerInterface: android.content.Context mContext +com.bumptech.glide.integration.okhttp.R$color +androidx.appcompat.R$id: int title_template +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,boolean) +androidx.appcompat.view.menu.MenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +com.turingtechnologies.materialscrollbar.R$attr: int tabRippleColor +androidx.lifecycle.extensions.R$anim: int fragment_fade_enter +wangdaye.com.geometricweather.R$string: int mtrl_picker_save +com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int ClockHandView_selectorSize +retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: CompletableFutureCallAdapterFactory$CallCancelCompletableFuture(retrofit2.Call) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindSpeedEnd(java.lang.String) +james.adaptiveicon.R$attr: int borderlessButtonStyle +com.google.android.material.slider.Slider: void setFocusedThumbIndex(int) +cyanogenmod.app.CMStatusBarManager: void removeTile(int) +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_android_max +com.google.android.material.R$attr: int commitIcon +wangdaye.com.geometricweather.R$attr: int multiChoiceItemLayout +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline3 +com.bumptech.glide.integration.okhttp.R$styleable: int[] CoordinatorLayout +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle CIRCULAR +wangdaye.com.geometricweather.R$attr: int scopeUris +wangdaye.com.geometricweather.R$attr: int backgroundInsetStart +wangdaye.com.geometricweather.R$integer: int cpv_default_anim_steps +android.didikee.donate.R$styleable: int AppCompatTheme_windowMinWidthMajor +androidx.preference.R$drawable: int abc_list_selector_background_transition_holo_light +com.xw.repo.bubbleseekbar.R$attr: int fontProviderQuery +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.ExternalViewProperties mExternalViewProperties +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.Observer downstream +com.google.android.material.R$styleable: int[] BottomSheetBehavior_Layout +androidx.viewpager.R$attr: int alpha +androidx.customview.R$attr: int font +androidx.constraintlayout.widget.R$styleable: int ActionBar_backgroundSplit +com.google.android.material.R$styleable: int AppCompatTheme_popupMenuStyle +wangdaye.com.geometricweather.R$dimen +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: AccuCurrentResult$Precip1hr() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitationDuration +androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.turingtechnologies.materialscrollbar.R$attr: int foregroundInsidePadding +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +androidx.core.R$id: int accessibility_custom_action_7 +androidx.appcompat.R$styleable: int AppCompatSeekBar_android_thumb +com.google.android.material.R$styleable: int Chip_chipMinTouchTargetSize +androidx.constraintlayout.widget.R$color: int switch_thumb_disabled_material_light +com.xw.repo.bubbleseekbar.R$color: int colorAccent +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMarkTint +okhttp3.OkHttpClient: okhttp3.Call newCall(okhttp3.Request) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf +wangdaye.com.geometricweather.R$drawable: int flag_ko +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: void onWeatherServiceProviderChanged(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitation +androidx.appcompat.widget.AppCompatImageButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.appcompat.R$id: int time +okio.ByteString: int compareTo(okio.ByteString) +okhttp3.internal.cache.DiskLruCache$Editor: okhttp3.internal.cache.DiskLruCache$Entry entry +androidx.legacy.coreutils.R$id: int text +wangdaye.com.geometricweather.R$bool: int abc_config_actionMenuItemAllCaps +androidx.dynamicanimation.R$styleable: int GradientColor_android_tileMode +com.turingtechnologies.materialscrollbar.R$string: int search_menu_title +androidx.recyclerview.R$layout: int notification_action +com.baidu.location.e.o: o(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) +com.google.gson.stream.JsonScope: int NONEMPTY_OBJECT +okhttp3.RequestBody$3: java.io.File val$file +androidx.appcompat.R$id: int tag_accessibility_actions +androidx.lifecycle.extensions.R$string +com.google.android.material.R$styleable: int TextAppearance_textLocale +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontWeight +com.xw.repo.bubbleseekbar.R$anim: int abc_slide_out_top +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getLiveLockScreenThemePackageName() +cyanogenmod.app.Profile: void removeProfileGroup(java.util.UUID) +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver +wangdaye.com.geometricweather.R$string: int wind_0 +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol HTTPS +wangdaye.com.geometricweather.R$attr: int bsb_rtl +androidx.recyclerview.widget.GridLayoutManager: GridLayoutManager(android.content.Context,android.util.AttributeSet,int,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: double Value +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String getWeatherSource() +io.reactivex.internal.util.NotificationLite$ErrorNotification: int hashCode() +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void startTimeout(long) +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: int getPrecipitationColor(android.content.Context) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCeiling(java.lang.Float) +com.turingtechnologies.materialscrollbar.R$attr: int chipStyle +com.google.android.material.bottomnavigation.BottomNavigationView: android.view.Menu getMenu() +androidx.preference.R$style: int Widget_AppCompat_ListPopupWindow +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxPlain() +androidx.appcompat.R$styleable: int[] DrawerArrowToggle wangdaye.com.geometricweather.R$attr: int contentScrim -cyanogenmod.app.ProfileGroup: android.net.Uri getRingerOverride() -wangdaye.com.geometricweather.R$drawable: int notif_temp_21 -com.google.android.material.R$string: int hide_bottom_view_on_scroll_behavior -cyanogenmod.providers.CMSettings$System: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationX -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: void run() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Caption -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: int status -androidx.preference.R$id: int accessibility_custom_action_22 -wangdaye.com.geometricweather.R$drawable: int notif_temp_119 -androidx.appcompat.R$styleable: int SearchView_queryBackground -com.google.android.material.R$styleable: int AppCompatTheme_windowFixedHeightMajor -androidx.loader.R$styleable: int FontFamilyFont_android_fontWeight -androidx.appcompat.R$dimen: int notification_small_icon_size_as_large -androidx.constraintlayout.widget.Group: Group(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus -cyanogenmod.profiles.LockSettings: int describeContents() -androidx.preference.R$drawable: int abc_ic_go_search_api_material -com.turingtechnologies.materialscrollbar.R$id: int fixed -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao chineseCityEntityDao -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int MenuView_android_verticalDivider -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_subtitle_material_toolbar +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onComplete() +androidx.preference.R$styleable: int CompoundButton_buttonTintMode +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorButtonNormal +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: java.lang.String Unit +okio.Okio$1: void flush() +retrofit2.HttpException: java.lang.String getMessage(retrofit2.Response) +okio.RealBufferedSource: void skip(long) +androidx.preference.R$attr: int initialExpandedChildrenCount +androidx.viewpager.R$dimen: int compat_button_padding_horizontal_material +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: KeyguardExternalViewProviderService$Provider(cyanogenmod.externalviews.KeyguardExternalViewProviderService,android.os.Bundle) +wangdaye.com.geometricweather.R$color: int colorRootDark +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation Precipitation +androidx.appcompat.R$style: int TextAppearance_AppCompat_Subhead_Inverse +androidx.viewpager2.R$id: int accessibility_custom_action_9 +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder cipherSuites(okhttp3.CipherSuite[]) +james.adaptiveicon.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupWindow +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.ICMHardwareService sService +wangdaye.com.geometricweather.R$styleable: int Chip_checkedIcon +cyanogenmod.themes.IThemeService$Stub$Proxy: void registerThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorSchemeColors(int[]) +org.greenrobot.greendao.AbstractDao: java.lang.Object readKey(android.database.Cursor,int) +com.google.android.material.chip.Chip: void setCheckable(boolean) +retrofit2.ParameterHandler$Header: ParameterHandler$Header(java.lang.String,retrofit2.Converter) +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorColor +wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_weight +androidx.lifecycle.extensions.R$id: int right_side +com.google.android.material.R$attr: int tabIndicator +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_shapeAppearance +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetRight +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_y_offset_touch +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver +james.adaptiveicon.R$styleable: int LinearLayoutCompat_showDividers +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: java.util.ArrayList cVersions +cyanogenmod.profiles.StreamSettings: void writeToParcel(android.os.Parcel,int) +james.adaptiveicon.R$layout: int abc_action_bar_up_container +androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackground(android.graphics.drawable.Drawable) +com.jaredrummler.android.colorpicker.R$integer: R$integer() +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() +androidx.activity.R$dimen: R$dimen() +androidx.core.R$id: int normal +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer grassIndex +androidx.activity.R$id: int accessibility_custom_action_14 +com.google.android.material.R$styleable: int ConstraintSet_deriveConstraintsFrom +wangdaye.com.geometricweather.R$id: int transition_transform +com.google.android.material.R$styleable: int Transform_android_scaleX +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemHorizontalPadding +androidx.appcompat.R$styleable: int ViewStubCompat_android_layout +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setNotification(java.lang.String) +cyanogenmod.externalviews.KeyguardExternalView$2: boolean requestDismiss() +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCloseDrawable +androidx.appcompat.R$color: int primary_text_default_material_light +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STYLE_THUMBNAIL +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night Night +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getActiveProfile +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onNext(java.lang.Object) +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_BYTES +android.didikee.donate.R$attr: int actionModeBackground +wangdaye.com.geometricweather.R$styleable: int NavigationView_android_fitsSystemWindows +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_DialogWhenLarge +androidx.constraintlayout.widget.R$id: int decelerateAndComplete +com.github.rahatarmanahmed.cpv.R$bool +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Surface +com.loc.h: void getLocation(java.lang.String) +okhttp3.internal.platform.Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +com.jaredrummler.android.colorpicker.R$attr: int dividerPadding +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_registerChangeListener +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int circleCrop +androidx.customview.R$styleable: int[] ColorStateListItem +androidx.constraintlayout.widget.R$styleable: int AlertDialog_buttonIconDimen +androidx.hilt.work.R$dimen: int notification_top_pad +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getKey() +androidx.viewpager.widget.PagerTabStrip: boolean getDrawFullUnderline() +androidx.hilt.work.R$bool: int workmanager_test_configuration +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: long requested() +cyanogenmod.providers.CMSettings$Global: java.lang.String getString(android.content.ContentResolver,java.lang.String) +com.amap.api.location.AMapLocationQualityReport +com.google.android.material.behavior.HideBottomViewOnScrollBehavior +com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_inset_horizontal_material +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: boolean requestDismiss() +com.amap.api.fence.GeoFenceManagerBase: boolean isPause() +retrofit2.HttpServiceMethod$SuspendForResponse +wangdaye.com.geometricweather.R$attr: int sliderStyle +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onComplete() +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode +retrofit2.SkipCallbackExecutorImpl: java.lang.annotation.Annotation[] ensurePresent(java.lang.annotation.Annotation[]) +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean tryOnError(java.lang.Throwable) +androidx.constraintlayout.motion.widget.MotionLayout: void setScene(androidx.constraintlayout.motion.widget.MotionScene) +com.google.android.material.R$attr: int overlapAnchor +james.adaptiveicon.R$attr: int listPreferredItemHeightLarge +androidx.customview.R$attr: int fontProviderFetchTimeout +com.jaredrummler.android.colorpicker.R$attr: int alertDialogButtonGroupStyle +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconTint +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_LOCKSCREEN +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial +androidx.appcompat.R$attr: int ratingBarStyleSmall +com.xw.repo.bubbleseekbar.R$attr: int switchPadding +com.turingtechnologies.materialscrollbar.R$attr: int borderlessButtonStyle +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTintMode +com.google.android.material.R$attr: int layout_constraintHorizontal_chainStyle +com.google.android.material.R$color: int design_fab_shadow_mid_color +androidx.coordinatorlayout.R$styleable +james.adaptiveicon.R$styleable: int SwitchCompat_switchPadding +androidx.constraintlayout.widget.R$styleable: int Motion_transitionEasing +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean precipitationProbability +wangdaye.com.geometricweather.R$attr: int recyclerViewStyle +cyanogenmod.profiles.BrightnessSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$attr: int selectable +com.jaredrummler.android.colorpicker.R$attr: int actionMenuTextColor +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context) +com.turingtechnologies.materialscrollbar.R$attr: int tickMark +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderAuthority +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +androidx.preference.R$styleable: int MenuItem_android_titleCondensed +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.functions.Function itemTimeoutIndicator +com.google.android.material.R$styleable: int MaterialButton_backgroundTintMode +cyanogenmod.app.LiveLockScreenManager: LiveLockScreenManager(android.content.Context) +com.google.android.material.R$attr: int actionBarStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature +androidx.core.R$style: int Widget_Compat_NotificationActionText +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText +cyanogenmod.app.CustomTile$ExpandedStyle: int REMOTE_STYLE +androidx.appcompat.R$drawable: int btn_checkbox_unchecked_mtrl +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String MinuteText +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +com.baidu.location.BDLocation +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain +retrofit2.OkHttpCall: retrofit2.Converter responseConverter +wangdaye.com.geometricweather.R$id: int notification_big_icon_2 +android.didikee.donate.R$attr: int actionModePopupWindowStyle +com.google.android.material.R$attr: int colorControlActivated +androidx.constraintlayout.widget.R$color: int material_grey_600 +retrofit2.ParameterHandler$PartMap: java.lang.reflect.Method method +androidx.recyclerview.R$string +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdwd +androidx.preference.R$styleable: int MenuItem_numericModifiers +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_48dp +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_maxButtonHeight +wangdaye.com.geometricweather.R$color: int colorSearchBarBackground +com.baidu.location.d.a$a +com.google.android.material.R$string: int abc_searchview_description_submit +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String info +androidx.drawerlayout.R$styleable: int FontFamilyFont_fontStyle +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_font +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean timerFired +okhttp3.internal.connection.RouteSelector: java.util.List proxies +com.turingtechnologies.materialscrollbar.R$color: int material_grey_600 +retrofit2.RequestBuilder: java.lang.String canonicalizeForPath(java.lang.String,boolean) +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status WAITING_FOR_SIZE +android.didikee.donate.R$color: int abc_tint_edittext +cyanogenmod.providers.CMSettings$System: int getInt(android.content.ContentResolver,java.lang.String) +wangdaye.com.geometricweather.R$animator: int weather_cloudy_2 +wangdaye.com.geometricweather.R$color: int mtrl_card_view_ripple +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +wangdaye.com.geometricweather.R$styleable: int Transition_staggered +androidx.appcompat.widget.ActionBarContainer: android.view.View getTabContainer() +androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_persistent +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int WeatherIcon +androidx.appcompat.R$styleable: int AppCompatTheme_borderlessButtonStyle +wangdaye.com.geometricweather.R$dimen: int widget_title_text_size +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void complete() +androidx.hilt.work.R$anim: int fragment_close_enter +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_INACTIVE +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableRight +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCopyDrawable +androidx.appcompat.R$color: int switch_thumb_material_light +com.turingtechnologies.materialscrollbar.R$string: int path_password_strike_through +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner +com.google.android.material.R$styleable: int MenuItem_android_checkable +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeStyle +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton +wangdaye.com.geometricweather.R$id: int chains +com.google.android.material.R$id: int dropdown_menu +okhttp3.Cookie: boolean hostOnly +wangdaye.com.geometricweather.R$styleable: int KeyPosition_curveFit +android.didikee.donate.R$attr: int measureWithLargestChild +androidx.preference.R$styleable: int DialogPreference_dialogMessage +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void run() +cyanogenmod.providers.CMSettings$Secure: java.lang.String RECENTS_LONG_PRESS_ACTIVITY +wangdaye.com.geometricweather.db.entities.LocationEntityDao: LocationEntityDao(org.greenrobot.greendao.internal.DaoConfig) +wangdaye.com.geometricweather.R$layout: int widget_multi_city_horizontal +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: ObservableRepeatUntil$RepeatUntilObserver(io.reactivex.Observer,io.reactivex.functions.BooleanSupplier,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) +androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int Insets_paddingBottomSystemWindowInsets +okhttp3.WebSocketListener: WebSocketListener() +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent UNKNOWN +cyanogenmod.weather.RequestInfo$Builder: boolean mIsQueryOnly +androidx.appcompat.widget.DropDownListView: void setSelector(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +com.google.android.material.R$styleable: int StateListDrawable_android_exitFadeDuration +wangdaye.com.geometricweather.R$string: int summary_collapsed_preference_list +wangdaye.com.geometricweather.common.basic.models.weather.Wind: int getWindColor(android.content.Context) +com.google.android.material.R$drawable: int mtrl_popupmenu_background_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean +com.google.android.material.R$attr: int ensureMinTouchTargetSize +james.adaptiveicon.R$styleable: int SearchView_commitIcon +com.jaredrummler.android.colorpicker.R$styleable: int[] ListPopupWindow +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge +okio.Segment: okio.Segment sharedCopy() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +wangdaye.com.geometricweather.R$color: int mtrl_tabs_ripple_color +io.reactivex.internal.operators.observable.ObserverResourceWrapper: io.reactivex.Observer downstream +com.google.android.material.R$styleable: int Constraint_android_layout_width +androidx.constraintlayout.widget.R$attr: int colorButtonNormal +androidx.hilt.R$id: int dialog_button +androidx.recyclerview.R$dimen: int compat_button_padding_vertical_material +wangdaye.com.geometricweather.R$id: int item_about_translator +james.adaptiveicon.R$style: int Base_V23_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int KeyCycle_motionProgress +com.turingtechnologies.materialscrollbar.R$attr: int cornerRadius +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner +wangdaye.com.geometricweather.R$color: int secondary_text_default_material_dark +androidx.constraintlayout.widget.R$color: int abc_search_url_text_normal +com.jaredrummler.android.colorpicker.R$attr: int editTextStyle +androidx.viewpager.R$dimen: int notification_subtext_size +okhttp3.EventListener: void requestBodyStart(okhttp3.Call) +okio.ByteString: boolean rangeEquals(int,okio.ByteString,int,int) +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_APP_SWITCH_LONG_PRESS_ACTION +com.google.android.material.R$id: int shortcut +android.didikee.donate.R$styleable: int AppCompatTheme_colorButtonNormal +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: java.lang.String Unit +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTintMode +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_max +androidx.preference.R$color: int primary_material_dark +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.disposables.Disposable upstream +com.google.android.material.R$style: int ThemeOverlayColorAccentRed +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_rippleColor +james.adaptiveicon.R$id: int expanded_menu +wangdaye.com.geometricweather.R$drawable: int notif_temp_138 +wangdaye.com.geometricweather.R$string: int key_widget_config +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +androidx.preference.R$string: int expand_button_title +androidx.viewpager.R$id: int chronometer +com.turingtechnologies.materialscrollbar.R$bool: R$bool() +androidx.preference.R$styleable: int[] SwitchPreferenceCompat +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver) +com.google.android.material.R$attr: int path_percent +okhttp3.internal.http2.Settings: int MAX_FRAME_SIZE +androidx.viewpager.widget.PagerTabStrip: void setTextSpacing(int) +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DrawableWithAnimatedVisibilityChange getCurrentDrawable() +com.google.android.material.textfield.TextInputLayout: com.google.android.material.textfield.EndIconDelegate getEndIconDelegate() +android.didikee.donate.R$styleable: int AppCompatTheme_selectableItemBackground +androidx.vectordrawable.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_106 +androidx.constraintlayout.widget.R$styleable: int[] ConstraintLayout_placeholder +com.google.android.material.R$id: int accessibility_custom_action_21 +wangdaye.com.geometricweather.R$styleable: int[] AppBarLayoutStates +android.didikee.donate.R$attr: int dividerHorizontal +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: MinutelyEntityDao$Properties() +androidx.preference.R$attr: int voiceIcon +androidx.activity.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.HourlyEntity) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +io.reactivex.disposables.ReferenceDisposable: ReferenceDisposable(java.lang.Object) +androidx.work.R$id +android.didikee.donate.R$id: int shortcut +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver +cyanogenmod.weatherservice.IWeatherProviderService$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: java.util.List value +androidx.appcompat.R$color: int bright_foreground_material_dark +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: int hashCode() +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String dept +androidx.appcompat.R$id: int screen +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +androidx.constraintlayout.widget.R$id: int dragStart +com.amap.api.location.DPoint: boolean equals(java.lang.Object) +androidx.appcompat.widget.ActionMenuView +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: long EpochRise +wangdaye.com.geometricweather.R$string: int key_notification_color +james.adaptiveicon.R$attr: int barLength +androidx.vectordrawable.animated.R$drawable: int notification_icon_background +com.google.android.material.R$attr: int fontProviderCerts +androidx.coordinatorlayout.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.R$layout: int dialog_running_in_background +com.google.android.material.R$attr: int itemShapeInsetTop +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY +com.google.android.material.R$layout: int design_menu_item_action_area +androidx.appcompat.resources.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$id: int container_main_header +com.amap.api.fence.GeoFenceClient: void addGeoFence(java.lang.String,java.lang.String) +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: android.os.IBinder mRemote +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_textColorHint +androidx.preference.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +okhttp3.internal.http1.Http1Codec: int STATE_IDLE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setNewX(java.lang.String) +cyanogenmod.app.suggest.ApplicationSuggestion: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.lang.String title +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: android.os.IBinder asBinder() +androidx.constraintlayout.widget.R$integer +cyanogenmod.weather.WeatherInfo$1: java.lang.Object[] newArray(int) +androidx.lifecycle.ViewModelStore: void clear() +android.didikee.donate.R$styleable: int AppCompatTheme_actionDropDownStyle +cyanogenmod.weather.IRequestInfoListener +android.didikee.donate.R$styleable: int AppCompatTextView_drawableStartCompat +com.jaredrummler.android.colorpicker.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.HourlyEntity) +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +android.didikee.donate.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +retrofit2.Utils$ParameterizedTypeImpl: int hashCode() +com.google.android.material.R$styleable: int TextAppearance_android_shadowColor +okhttp3.OkHttpClient$Builder: int writeTimeout +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Info +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_BLUETOOTH +androidx.appcompat.resources.R$id: int actions +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_toLeftOf +com.google.android.material.R$styleable: int KeyTimeCycle_curveFit +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating Heating +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_13 +com.turingtechnologies.materialscrollbar.R$attr: int boxStrokeColor +com.google.android.material.R$styleable: int AppCompatTheme_tooltipFrameBackground +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog +androidx.constraintlayout.widget.R$styleable: int Constraint_android_orientation +wangdaye.com.geometricweather.R$bool: int enable_system_alarm_service_default +com.jaredrummler.android.colorpicker.R$id: int shades_layout +okhttp3.internal.cache.DiskLruCache$Editor: void abort() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2 +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: java.lang.String Unit +androidx.hilt.R$drawable: int notification_bg_low +okhttp3.internal.http2.Http2: byte TYPE_DATA +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight +androidx.appcompat.R$styleable: int CompoundButton_buttonTintMode +wangdaye.com.geometricweather.R$id: int tag_icon_top +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean fused +okhttp3.internal.ws.WebSocketWriter: void writePong(okio.ByteString) +android.didikee.donate.R$attr: int actionModeFindDrawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean) +androidx.preference.R$color: int abc_tint_btn_checkable +okio.GzipSink: void writeHeader() +wangdaye.com.geometricweather.R$attr: int drawable_res_off +com.google.android.gms.base.R$string +androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_color +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database wrap(android.database.sqlite.SQLiteDatabase) +james.adaptiveicon.R$attr: int seekBarStyle +com.google.android.material.R$id: int off +wangdaye.com.geometricweather.R$attr: int itemMaxLines +com.jaredrummler.android.colorpicker.R$style: int Base_DialogWindowTitle_AppCompat +okhttp3.internal.platform.OptionalMethod: java.lang.Class[] methodParams +wangdaye.com.geometricweather.R$id: int widget_remote_drawable +wangdaye.com.geometricweather.R$drawable: int notif_temp_110 +com.turingtechnologies.materialscrollbar.R$color: int accent_material_light +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_stroke_width_focused +com.google.android.gms.common.images.WebImage +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +com.google.android.material.R$attr: int itemShapeAppearanceOverlay +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory NORMAL +wangdaye.com.geometricweather.R$attr: int iconPadding +androidx.viewpager2.R$attr: int fastScrollHorizontalTrackDrawable +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.core.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.R$array: int ui_style_values +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetEndWithActions +okhttp3.internal.http2.Http2: byte FLAG_NONE +okhttp3.internal.connection.RouteException: RouteException(java.io.IOException) +androidx.appcompat.widget.AppCompatRadioButton: android.graphics.PorterDuff$Mode getSupportButtonTintMode() +com.google.android.material.R$style: int ThemeOverlay_AppCompat_ActionBar +androidx.customview.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow6h +androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_width_major +androidx.hilt.lifecycle.R$styleable: int Fragment_android_tag +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +retrofit2.HttpServiceMethod$CallAdapted: retrofit2.CallAdapter callAdapter +wangdaye.com.geometricweather.R$string: int sp_widget_week_setting +wangdaye.com.geometricweather.R$string: int content_des_pm10 +androidx.preference.R$style: R$style() +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: ICMHardwareService$Stub$Proxy(android.os.IBinder) +androidx.transition.R$styleable: int FontFamily_fontProviderPackage +androidx.recyclerview.widget.RecyclerView: boolean getClipToPadding() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +androidx.lifecycle.ReflectiveGenericLifecycleObserver: java.lang.Object mWrapped +androidx.fragment.app.BackStackRecord: void setOnStartPostponedListener(androidx.fragment.app.Fragment$OnStartEnterTransitionListener) +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$FramingSink sink +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String unitId +wangdaye.com.geometricweather.R$drawable: int ic_precipitation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setPrecipitationProbability(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean) +com.google.android.material.R$styleable: int MotionTelltales_telltales_tailScale +androidx.appcompat.R$dimen: int abc_panel_menu_list_width +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.util.Locale getLocale() +androidx.lifecycle.ViewModel: java.lang.Object getTag(java.lang.String) +wangdaye.com.geometricweather.R$style: int week_weather_week_info +android.didikee.donate.R$id: int action_bar_activity_content +wangdaye.com.geometricweather.R$layout: int abc_tooltip +androidx.hilt.R$dimen: int notification_main_column_padding_top +com.jaredrummler.android.colorpicker.R$attr: int iconTint +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_MODE +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerComplete(io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver) +io.reactivex.Observable: io.reactivex.Observable combineLatest(java.lang.Iterable,io.reactivex.functions.Function) +okhttp3.CacheControl: boolean isPublic() +androidx.lifecycle.ReportFragment$LifecycleCallbacks +wangdaye.com.geometricweather.R$string: int feedback_request_location_in_background +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: long getUpdateTime() +okio.ByteString: okio.ByteString sha512() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String zh_TW +okhttp3.internal.http2.Http2Connection$6: okhttp3.internal.http2.Http2Connection this$0 +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_alphabeticShortcut +com.google.android.material.R$style: int Base_V7_Widget_AppCompat_Toolbar +android.didikee.donate.R$layout: int abc_list_menu_item_icon +com.google.android.material.R$attr: int flow_horizontalGap +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_minHeight +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_drawableSize +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_collapseNotificationPanel_2 +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void dispose() +com.google.android.material.R$styleable: int TextInputLayout_startIconCheckable +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_90 +androidx.coordinatorlayout.R$integer +cyanogenmod.platform.R$string +wangdaye.com.geometricweather.R$drawable: int ic_circle_white +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onError(java.lang.Throwable) +com.google.android.gms.common.SignInButton: SignInButton(android.content.Context) +android.didikee.donate.R$dimen: int abc_action_button_min_width_overflow_material +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_16 +okhttp3.internal.http2.Http2Reader$ContinuationSource: void close() +androidx.customview.R$dimen: int compat_notification_large_icon_max_height +com.jaredrummler.android.colorpicker.R$attr: int switchTextAppearance +androidx.fragment.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$id: int dialog_button +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableRight +androidx.constraintlayout.widget.R$styleable: int RecycleListView_paddingBottomNoButtons +androidx.fragment.app.FragmentTabHost +com.turingtechnologies.materialscrollbar.R$styleable +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: FlowableOnBackpressureLatest$BackpressureLatestSubscriber(org.reactivestreams.Subscriber) +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_stroke_width_default +androidx.constraintlayout.widget.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: MinutelyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +james.adaptiveicon.R$attr: int srcCompat +androidx.lifecycle.LiveData: boolean mDispatchInvalidated +okhttp3.internal.tls.BasicCertificateChainCleaner: okhttp3.internal.tls.TrustRootIndex trustRootIndex +android.didikee.donate.R$integer: R$integer() +androidx.dynamicanimation.R$id: int notification_background +com.turingtechnologies.materialscrollbar.R$animator: int design_appbar_state_list_animator +com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Button +retrofit2.RequestFactory$Builder: boolean gotField +cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder onBind(android.content.Intent) +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: boolean validate(java.lang.String) +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemRippleColor(android.content.res.ColorStateList) +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCutDrawable +okio.RealBufferedSource: byte[] readByteArray(long) +androidx.preference.R$attr: int textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_35 +androidx.appcompat.R$drawable: int notification_action_background +io.reactivex.Observable: io.reactivex.Completable concatMapCompletable(io.reactivex.functions.Function,int) +android.didikee.donate.R$styleable: int[] ViewBackgroundHelper +com.google.android.material.navigation.NavigationView$SavedState: android.os.Parcelable$Creator CREATOR +androidx.viewpager2.R$attr +cyanogenmod.app.CustomTile$ExpandedItem$1: cyanogenmod.app.CustomTile$ExpandedItem[] newArray(int) +com.google.android.material.R$color: int material_grey_850 +com.google.android.material.R$attr: int fontProviderFetchStrategy +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: long serialVersionUID +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: int status +androidx.appcompat.resources.R$id: int italic +com.amap.api.fence.GeoFence: java.lang.String a +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActivityChooserView +androidx.preference.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +okhttp3.internal.Util: int indexOf(java.util.Comparator,java.lang.String[],java.lang.String) +james.adaptiveicon.R$color: int abc_hint_foreground_material_dark +com.jaredrummler.android.colorpicker.R$attr: int height +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +retrofit2.converter.gson.GsonResponseBodyConverter: GsonResponseBodyConverter(com.google.gson.Gson,com.google.gson.TypeAdapter) +wangdaye.com.geometricweather.R$attr: int layout_anchor +androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$attr: int textAppearanceSearchResultTitle +wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_top_material +com.jaredrummler.android.colorpicker.R$id: int search_close_btn +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter +com.google.android.material.R$styleable: int MaterialTextAppearance_lineHeight +okhttp3.RealCall$1 +cyanogenmod.app.PartnerInterface: void shutdownDevice() +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLocationMode(com.amap.api.location.AMapLocationClientOption$AMapLocationMode) +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ID +okhttp3.internal.ws.RealWebSocket$CancelRunnable: void run() +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: boolean isDisposed() +com.loc.k: void a(int) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast +retrofit2.HttpServiceMethod$CallAdapted: HttpServiceMethod$CallAdapted(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter) +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol[] values() +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: IAppSuggestProvider$Stub$Proxy(android.os.IBinder) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeErrorColor(android.content.res.ColorStateList) +com.amap.api.fence.PoiItem: void setTel(java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_BottomSheetDialog +com.google.android.material.R$attr: int tabInlineLabel +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionDropDownStyle +androidx.recyclerview.R$attr: int ttcIndex +com.google.android.material.bottomappbar.BottomAppBar: void setSubtitle(java.lang.CharSequence) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.hilt.work.R$styleable: int[] FontFamilyFont +okhttp3.Call: okhttp3.Request request() +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setPostfixString(java.lang.String) +android.didikee.donate.R$styleable: int MenuView_subMenuArrow +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline5 +com.jaredrummler.android.colorpicker.R$styleable: int[] PopupWindow +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +com.jaredrummler.android.colorpicker.R$attr: int actionBarSize +com.google.android.material.R$styleable: int MaterialCardView_shapeAppearance +okhttp3.CacheControl: boolean isPrivate() +james.adaptiveicon.R$dimen: int abc_action_button_min_width_overflow_material +com.google.android.material.R$style: int Base_Widget_MaterialComponents_Chip +com.google.android.material.R$attr: int flow_lastVerticalBias +okhttp3.Response: long sentRequestAtMillis() +wangdaye.com.geometricweather.R$layout: int activity_alert +okhttp3.Cookie: boolean httpOnly() +okhttp3.Headers: Headers(okhttp3.Headers$Builder) +androidx.viewpager2.R$id: int notification_background +androidx.constraintlayout.widget.R$styleable: int ActionBar_progressBarStyle +wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context,android.util.AttributeSet,int) +androidx.lifecycle.extensions.R$anim: int fragment_open_enter +androidx.preference.R$drawable: int abc_item_background_holo_dark +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver +okhttp3.ConnectionPool: int connectionCount() +james.adaptiveicon.R$styleable: int SwitchCompat_trackTint +androidx.preference.SwitchPreference +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver otherObserver +retrofit2.ParameterHandler$RawPart: ParameterHandler$RawPart() +james.adaptiveicon.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_dividerHeight +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: int bufferSize +android.didikee.donate.R$layout: int abc_list_menu_item_layout +okhttp3.OkHttpClient$Builder: OkHttpClient$Builder(okhttp3.OkHttpClient) +okhttp3.RealCall: okio.Timeout timeout() +androidx.constraintlayout.widget.R$id: int progress_circular +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int ListPreference_android_entryValues +wangdaye.com.geometricweather.R$style: int notification_title_text +com.jaredrummler.android.colorpicker.R$dimen: int notification_media_narrow_margin +com.google.android.material.textfield.MaterialAutoCompleteTextView: void setAdapter(android.widget.ListAdapter) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_scaleX +com.google.android.material.R$dimen: int mtrl_calendar_header_content_padding +com.google.android.material.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +io.reactivex.Observable: io.reactivex.Observable takeWhile(io.reactivex.functions.Predicate) +wangdaye.com.geometricweather.R$id: int widget_week_icon_3 +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String cityId +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: java.util.List night +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_right_mtrl_dark +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.remoteviews.config.Hilt_DailyTrendWidgetConfigActivity +wangdaye.com.geometricweather.R$attr: int itemTextAppearanceInactive +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_DarkActionBar +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: MfForecastResult$DailyForecast$Weather() +io.reactivex.internal.subscriptions.DeferredScalarSubscription: void request(long) +wangdaye.com.geometricweather.R$attr: int chipIconTint +wangdaye.com.geometricweather.R$color: int accent_material_light +retrofit2.Platform$Android: Platform$Android() +com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cps james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -com.google.android.material.R$color: int button_material_dark -com.google.android.material.R$styleable: int ConstraintSet_flow_maxElementsWrap -cyanogenmod.weather.CMWeatherManager: java.util.Map mWeatherUpdateRequestListeners -cyanogenmod.library.R$id: int experience -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: double Value -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: org.reactivestreams.Subscription upstream -james.adaptiveicon.R$styleable: int Toolbar_subtitle +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$drawable: int notif_temp_45 +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SearchView +androidx.hilt.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric Metric +james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +androidx.appcompat.R$color: int notification_icon_bg_color +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: IKeyguardExternalViewCallbacks$Stub() +com.google.android.material.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +cyanogenmod.themes.ThemeManager$1$2: boolean val$isSuccess +cyanogenmod.providers.DataUsageContract: java.lang.String EXTRA +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: org.reactivestreams.Subscriber downstream +androidx.preference.R$dimen: int abc_action_bar_content_inset_with_nav +cyanogenmod.app.IProfileManager$Stub: cyanogenmod.app.IProfileManager asInterface(android.os.IBinder) +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType GIF +io.reactivex.internal.subscribers.StrictSubscriber +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMarkTintMode +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Body2 +androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +com.google.android.material.R$attr: int colorControlNormal +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.turingtechnologies.materialscrollbar.R$attr: int actionModePasteDrawable +com.xw.repo.bubbleseekbar.R$attr: int lastBaselineToBottomHeight +android.didikee.donate.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: int UnitType +com.xw.repo.bubbleseekbar.R$id: int src_over +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours Past3Hours +wangdaye.com.geometricweather.R$drawable: int notif_temp_36 +wangdaye.com.geometricweather.R$id: int drawerLayout +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_fontVariationSettings +com.google.android.material.slider.Slider: void setThumbElevationResource(int) +cyanogenmod.profiles.AirplaneModeSettings: boolean mDirty +androidx.recyclerview.R$dimen: int fastscroll_default_thickness +cyanogenmod.app.IPartnerInterface +androidx.constraintlayout.widget.R$dimen: int compat_button_inset_horizontal_material +androidx.viewpager.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric Metric +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_MULTIPLE_LEDS_ENABLE +james.adaptiveicon.R$styleable: int[] ActivityChooserView +retrofit2.BuiltInConverters$RequestBodyConverter: retrofit2.BuiltInConverters$RequestBodyConverter INSTANCE +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_content_inset_material +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle +com.google.android.material.R$dimen: int design_navigation_item_icon_padding +com.google.android.material.bottomappbar.BottomAppBar: int getFabAlignmentMode() +androidx.core.R$id: int tag_accessibility_actions +androidx.constraintlayout.widget.R$id: int dragRight +com.google.android.material.R$styleable: int BottomNavigationView_menu +okhttp3.internal.ws.RealWebSocket +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_weightSum +retrofit2.OkHttpCall: retrofit2.Call clone() +androidx.appcompat.R$styleable: int ActionBar_progressBarPadding +cyanogenmod.profiles.LockSettings$1: LockSettings$1() +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource valueOf(java.lang.String) +com.xw.repo.bubbleseekbar.R$dimen: int notification_action_icon_size +androidx.legacy.coreutils.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$id: int notification_base_aqiAndWind +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_elevation androidx.vectordrawable.animated.R$attr -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult -com.jaredrummler.android.colorpicker.R$styleable: int Preference_dependency -james.adaptiveicon.R$attr: int subMenuArrow -wangdaye.com.geometricweather.R$dimen: int abc_config_prefDialogWidth -androidx.recyclerview.R$id: int accessibility_custom_action_5 -androidx.appcompat.R$styleable: int AppCompatSeekBar_android_thumb -androidx.recyclerview.R$id: int accessibility_custom_action_30 -androidx.preference.R$styleable: int AppCompatTheme_windowNoTitle -wangdaye.com.geometricweather.R$id: int firstVisible -cyanogenmod.weather.CMWeatherManager$2$2: cyanogenmod.weather.CMWeatherManager$2 this$1 -io.reactivex.internal.schedulers.RxThreadFactory: java.lang.Thread newThread(java.lang.Runnable) -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_getSubInformation_0 -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: java.lang.Float temperature -com.google.android.material.R$styleable: int Transform_android_rotationX -androidx.appcompat.R$styleable: int MenuGroup_android_orderInCategory -cyanogenmod.app.ICustomTileListener: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String hexAV() -androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context,android.util.AttributeSet,int) -okio.BufferedSource: long readLong() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicInteger wip -okhttp3.Address: java.net.Proxy proxy -androidx.appcompat.resources.R$id: int tag_accessibility_clickable_spans -com.google.android.material.R$attr: int itemTextColor -cyanogenmod.app.CustomTile$ExpandedGridItem: CustomTile$ExpandedGridItem() -wangdaye.com.geometricweather.R$id: int action_bar_container -wangdaye.com.geometricweather.R$drawable: int ic_briefing -retrofit2.Response: retrofit2.Response error(okhttp3.ResponseBody,okhttp3.Response) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginRight -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogTheme -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Borderless -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getLastThemeChangeTime -com.turingtechnologies.materialscrollbar.R$attr: int preserveIconSpacing -androidx.appcompat.widget.ActionBarContainer: ActionBarContainer(android.content.Context,android.util.AttributeSet) -androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver -org.greenrobot.greendao.AbstractDaoSession: void delete(java.lang.Object) -androidx.lifecycle.LiveData: java.lang.Object NOT_SET -androidx.preference.R$styleable: int Toolbar_subtitle -androidx.preference.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.R$attr: int chipIconSize -okio.BufferedSink -com.google.android.material.R$styleable: int Layout_layout_goneMarginRight -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onComplete() -wangdaye.com.geometricweather.R$attr: int preferenceInformationStyle -android.support.v4.os.ResultReceiver$MyRunnable: android.support.v4.os.ResultReceiver this$0 -cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: WeatherContract$WeatherColumns$WindSpeedUnit() -androidx.fragment.R$dimen: int compat_control_corner_material -android.didikee.donate.R$styleable: int[] RecycleListView -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getVibratorIntensity -com.google.android.material.slider.BaseSlider: void setLabelBehavior(int) -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Wind wind -androidx.coordinatorlayout.R$id: int tag_screen_reader_focusable -android.didikee.donate.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -james.adaptiveicon.R$color: int switch_thumb_material_dark -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable[] EMPTY -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_section_mark -androidx.preference.R$attr: int updatesContinuously -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemBackground -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_LargeComponent -com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context,android.util.AttributeSet) -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Line2 -com.baidu.location.indoor.mapversion.c.a$d: double d(double) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitationDuration() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: int UnitType -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display1 -com.amap.api.fence.PoiItem: void writeToParcel(android.os.Parcel,int) -james.adaptiveicon.R$styleable: int AlertDialog_buttonIconDimen -okhttp3.internal.http2.Http2Writer: int maxFrameSize -androidx.preference.R$color: int abc_secondary_text_material_dark -android.didikee.donate.R$attr: int indeterminateProgressStyle -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_maxWidth -wangdaye.com.geometricweather.R$color: int design_fab_stroke_end_inner_color -wangdaye.com.geometricweather.R$string: int content_des_moonset -wangdaye.com.geometricweather.R$attr: int bottom_text -androidx.lifecycle.DefaultLifecycleObserver: void onStart(androidx.lifecycle.LifecycleOwner) -androidx.fragment.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceOverline -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean setActiveProfileByName(java.lang.String) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Small -io.reactivex.internal.observers.ForEachWhileObserver: void dispose() -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: void setSpeed(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean) -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_voice_search_api_material -com.google.android.material.R$id: int largeLabel -com.turingtechnologies.materialscrollbar.Indicator: int getTextSize() -com.google.android.material.card.MaterialCardView: float getRadius() -androidx.preference.R$styleable: int AlertDialog_listLayout -com.xw.repo.bubbleseekbar.R$anim: int abc_slide_out_bottom -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_font -androidx.coordinatorlayout.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.R$styleable: int PropertySet_android_visibility -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner -wangdaye.com.geometricweather.R$attr: int layout_constraintEnd_toStartOf -wangdaye.com.geometricweather.R$string: int feedback_click_toggle -androidx.appcompat.R$layout: int abc_list_menu_item_layout -james.adaptiveicon.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.R$layout: int item_weather_daily_pollen -androidx.work.R$bool: int enable_system_job_service_default -com.jaredrummler.android.colorpicker.R$attr: int itemPadding -com.amap.api.location.CoordinateConverter: com.amap.api.location.DPoint a -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String getPubTime() -io.reactivex.internal.util.NotificationLite: java.lang.Object subscription(org.reactivestreams.Subscription) -com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -cyanogenmod.app.ILiveLockScreenManagerProvider: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -wangdaye.com.geometricweather.R$string: int feedback_collect_failed -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_2 -wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarButtonStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowNoTitle -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.functions.Function mapper -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: void setCaiyun(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_fontFamily -com.google.android.material.R$styleable: int[] ConstraintSet -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintDimensionRatio -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceLargePopupMenu -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorPrimaryDark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setZh_CN(java.lang.String) -okio.AsyncTimeout: okio.AsyncTimeout head -androidx.appcompat.widget.Toolbar: void setCollapseIcon(android.graphics.drawable.Drawable) -androidx.appcompat.view.menu.ListMenuItemView: void setChecked(boolean) -androidx.customview.R$dimen: int notification_right_icon_size -retrofit2.ParameterHandler$Headers: java.lang.reflect.Method method -wangdaye.com.geometricweather.R$attr: int spinBars -com.amap.api.fence.GeoFenceClient: com.amap.api.fence.GeoFenceManagerBase a(android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: void setDefenseText(java.lang.String) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$id: int item_about_translator_subtitle -cyanogenmod.util.ColorUtils$1: int compare(java.lang.Object,java.lang.Object) -com.amap.api.location.AMapLocationQualityReport: int getGPSStatus() -com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Indeterminate -com.jaredrummler.android.colorpicker.R$styleable: int[] Preference -androidx.preference.R$layout: int abc_action_menu_layout -com.google.android.material.button.MaterialButton: void setIconTintMode(android.graphics.PorterDuff$Mode) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_bias -androidx.appcompat.R$styleable: int Spinner_android_dropDownWidth -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -cyanogenmod.providers.CMSettings$2: CMSettings$2() -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -retrofit2.ParameterHandler$Path: ParameterHandler$Path(java.lang.reflect.Method,int,java.lang.String,retrofit2.Converter,boolean) -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property CloudCover -androidx.lifecycle.LiveData: void dispatchingValue(androidx.lifecycle.LiveData$ObserverWrapper) -android.didikee.donate.R$integer: int cancel_button_image_alpha -com.google.android.material.R$styleable: int AppCompatTheme_actionDropDownStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String uvLevel -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: boolean isAsync -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String getValue() -okhttp3.internal.http2.Http2Connection$6: int val$streamId -wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_dividerHeight -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setLabel(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int[] KeyAttribute -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context) -wangdaye.com.geometricweather.db.entities.HistoryEntity: HistoryEntity() -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light_BottomSheetDialog -androidx.constraintlayout.widget.R$attr: int layout -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_EditText -com.jaredrummler.android.colorpicker.R$attr: int dialogMessage -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float thunderstormPrecipitationProbability -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status WAITING_FOR_SIZE -androidx.constraintlayout.widget.R$style: int Base_V28_Theme_AppCompat_Light -okio.Source: void close() -androidx.appcompat.R$styleable: int MenuView_android_verticalDivider -com.google.android.material.R$id: int textSpacerNoButtons -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.R$string: int settings_language -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BACK_WAKE_SCREEN_VALIDATOR -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionMenuTextAppearance -com.google.android.gms.internal.common.zzq: java.lang.String toString() -wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity -com.google.android.material.R$id: int accessibility_custom_action_16 -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_padding_end_material -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_36dp -wangdaye.com.geometricweather.R$attr: int cardElevation -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence -androidx.appcompat.R$styleable: int Toolbar_titleTextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.util.Date EndDate -androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandle getHandle() -androidx.versionedparcelable.ParcelImpl: android.os.Parcelable$Creator CREATOR -retrofit2.Utils$GenericArrayTypeImpl -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_speedValue -wangdaye.com.geometricweather.R$animator: int mtrl_fab_transformation_sheet_expand_spec -androidx.vectordrawable.animated.R$attr: int ttcIndex -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -com.google.android.material.button.MaterialButton: int getIconPadding() -com.google.gson.stream.JsonToken: JsonToken(java.lang.String,int) -okhttp3.ConnectionSpec: java.lang.String toString() -wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_horizontal_material -okio.Okio$2: java.lang.String toString() -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconSizeRes(int) -com.google.android.material.tabs.TabLayout: void setTabsFromPagerAdapter(androidx.viewpager.widget.PagerAdapter) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign -retrofit2.ParameterHandler$Tag: ParameterHandler$Tag(java.lang.Class) -wangdaye.com.geometricweather.R$dimen: int design_navigation_icon_padding -com.google.android.material.R$attr: int listPreferredItemHeightLarge -wangdaye.com.geometricweather.R$dimen: int abc_control_corner_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind -android.didikee.donate.R$attr: int closeIcon -androidx.preference.R$styleable: int DialogPreference_dialogMessage -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Small -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mCallSetCommand -com.google.android.material.transformation.ExpandableBehavior: ExpandableBehavior(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$styleable: int ActionBar_title -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.R$string: int day -com.google.gson.stream.JsonReader: int PEEKED_NONE -com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String BUILD_TYPE -androidx.work.R$styleable: int GradientColor_android_startX -com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$attr: int customIntegerValue +com.google.android.material.R$attr: int layout_constraintRight_toLeftOf +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_STATUS_BAR +androidx.transition.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.db.entities.AlertEntityDao: AlertEntityDao(org.greenrobot.greendao.internal.DaoConfig) +com.google.android.material.R$attr: int actionModeCopyDrawable +james.adaptiveicon.R$attr: int showAsAction +com.google.android.material.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_trackTint +retrofit2.http.Path: boolean encoded() +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_action_text_color_alpha +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$attr: int seekBarPreferenceStyle +androidx.appcompat.R$layout: int notification_action_tombstone +androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_material +com.bumptech.glide.integration.okhttp.R$id: int action_container +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Medium +okhttp3.internal.http2.Http2Codec: Http2Codec(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http2.Http2Connection) +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderPackage +okhttp3.Request: okhttp3.Headers headers() +wangdaye.com.geometricweather.R$id: int SHOW_ALL +androidx.appcompat.widget.AppCompatButton: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_background +cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.AppSuggestManager sInstance +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$color: int colorSearchBarBackground_light +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +androidx.work.R$id: int accessibility_custom_action_21 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_viewInflaterClass +wangdaye.com.geometricweather.R$styleable: int Layout_minHeight +android.didikee.donate.R$layout: int abc_list_menu_item_radio +androidx.constraintlayout.widget.R$layout: R$layout() +androidx.constraintlayout.widget.R$styleable: int KeyPosition_pathMotionArc +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getDistrict() +com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupMenu +retrofit2.RequestFactory$Builder: boolean isMultipart +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: long serialVersionUID +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit[] values() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getCityId() +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_min_width_minor +cyanogenmod.providers.CMSettings$Secure: java.lang.String STATS_COLLECTION_REPORTED +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setId(java.lang.Long) +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontWeight +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_thickness +wangdaye.com.geometricweather.R$drawable: int weather_snow_pixel +cyanogenmod.profiles.ConnectionSettings$1: java.lang.Object[] newArray(int) +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCopyDrawable +com.google.android.material.progressindicator.ProgressIndicator: void setLinearSeamless(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial() +androidx.hilt.work.R$styleable: int[] ColorStateListItem +okhttp3.internal.http2.PushObserver$1 +james.adaptiveicon.R$styleable: int[] MenuGroup +retrofit2.adapter.rxjava2.CallExecuteObservable: void subscribeActual(io.reactivex.Observer) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabText +android.didikee.donate.R$styleable: int AppCompatTheme_toolbarStyle +androidx.appcompat.widget.SearchView: void setSubmitButtonEnabled(boolean) +okhttp3.logging.LoggingEventListener: void callFailed(okhttp3.Call,java.io.IOException) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather weather12H +wangdaye.com.geometricweather.R$string: int abc_menu_delete_shortcut_label +androidx.constraintlayout.widget.R$attr: int dividerPadding +androidx.vectordrawable.animated.R$id: int tag_accessibility_heading +okhttp3.Handshake: okhttp3.CipherSuite cipherSuite +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: MfForecastV2Result() +androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +android.didikee.donate.R$styleable: int CompoundButton_buttonCompat +androidx.constraintlayout.widget.R$id: int autoCompleteToEnd +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableTop +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListMenuView +com.google.android.material.R$layout: int design_layout_tab_icon +com.xw.repo.bubbleseekbar.R$attr: int alertDialogStyle +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_elevation +wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_grey +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +com.google.android.material.R$drawable: int material_ic_menu_arrow_up_black_24dp +io.reactivex.Observable: io.reactivex.Single toList(java.util.concurrent.Callable) +androidx.core.app.NotificationCompatSideChannelService: NotificationCompatSideChannelService() +com.google.android.material.bottomsheet.BottomSheetBehavior$SavedState: android.os.Parcelable$Creator CREATOR +android.didikee.donate.R$attr: int defaultQueryHint +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button +wangdaye.com.geometricweather.R$style: int notification_content_text +androidx.viewpager.R$string: int status_bar_notification_info_overflow +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: void invoke(java.lang.Throwable) +androidx.customview.R$id: int tag_unhandled_key_event_manager +androidx.appcompat.R$id: int listMode +com.github.rahatarmanahmed.cpv.R$styleable: int[] CircularProgressView +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar +android.didikee.donate.R$attr: int closeItemLayout +androidx.constraintlayout.utils.widget.MockView +androidx.appcompat.R$interpolator: R$interpolator() +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstHorizontalStyle +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_fabSize +androidx.preference.R$layout: int preference_information_material +androidx.constraintlayout.widget.R$attr: int imageButtonStyle +com.google.android.material.R$dimen: int mtrl_calendar_day_height +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: void run() +com.amap.api.fence.GeoFence: android.app.PendingIntent d +com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextInputLayout +androidx.preference.R$dimen: int abc_action_bar_stacked_tab_max_width +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.internal.util.AtomicThrowable errors +androidx.activity.R$styleable: int[] GradientColor +okhttp3.internal.platform.JdkWithJettyBootPlatform: JdkWithJettyBootPlatform(java.lang.reflect.Method,java.lang.reflect.Method,java.lang.reflect.Method,java.lang.Class,java.lang.Class) +com.google.android.material.navigation.NavigationView: void setItemIconPaddingResource(int) +okhttp3.internal.http2.Http2Connection: boolean access$300(okhttp3.internal.http2.Http2Connection) +cyanogenmod.app.CustomTileListenerService: android.os.IBinder onBind(android.content.Intent) +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_light +okhttp3.CertificatePinner: okio.ByteString sha1(java.security.cert.X509Certificate) +androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView: void setHoverListener(androidx.appcompat.widget.MenuItemHoverListener) +androidx.appcompat.R$styleable: int AppCompatImageView_srcCompat +retrofit2.CompletableFutureCallAdapterFactory: CompletableFutureCallAdapterFactory() +androidx.lifecycle.AbstractSavedStateViewModelFactory: void onRequery(androidx.lifecycle.ViewModel) +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintStart_toEndOf +androidx.preference.R$color: int material_grey_900 +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +androidx.preference.R$style: int Widget_AppCompat_Light_ListView_DropDown +androidx.constraintlayout.widget.R$attr: int popupTheme +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_CBC_SHA +io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) +wangdaye.com.geometricweather.R$drawable: int abc_btn_check_to_on_mtrl_015 +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_LargeTouch +androidx.appcompat.resources.R$styleable: int GradientColor_android_centerX +androidx.hilt.lifecycle.R$id: int action_divider +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: long serialVersionUID +io.reactivex.internal.queue.SpscArrayQueue: long serialVersionUID +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State min(androidx.lifecycle.Lifecycle$State,androidx.lifecycle.Lifecycle$State) +okio.Timeout +com.amap.api.fence.GeoFence: int describeContents() +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endColor +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display3 +okhttp3.RequestBody$2: okhttp3.MediaType val$contentType +androidx.viewpager2.R$id: int accessibility_custom_action_7 +androidx.constraintlayout.widget.R$attr: int titleTextStyle +io.reactivex.subjects.PublishSubject$PublishDisposable +androidx.hilt.work.R$styleable: int FontFamily_fontProviderAuthority +okhttp3.CipherSuite$1: int compare(java.lang.Object,java.lang.Object) +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType valueOf(java.lang.String) +androidx.fragment.R$styleable: int[] FontFamily +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type[] getActualTypeArguments() +androidx.viewpager.R$string: R$string() +retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type upperBound +com.turingtechnologies.materialscrollbar.R$attr: int hintEnabled +james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +androidx.legacy.coreutils.R$layout +okhttp3.internal.http.StatusLine: StatusLine(okhttp3.Protocol,int,java.lang.String) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_arrow_drop_right_black_24dp +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void dispose() +androidx.constraintlayout.widget.R$styleable: int Toolbar_menu +com.turingtechnologies.materialscrollbar.R$styleable: int View_paddingEnd +com.google.android.material.R$attr: int layout_constraintHorizontal_weight +androidx.appcompat.R$drawable: int abc_action_bar_item_background_material +james.adaptiveicon.R$styleable: int AppCompatTheme_android_windowIsFloating +com.xw.repo.bubbleseekbar.R$attr: int titleMarginEnd +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_change_size_expand_motion_spec +wangdaye.com.geometricweather.R$styleable: int MaterialShape_shapeAppearance +wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_android_entries +android.support.v4.app.INotificationSideChannel: void notify(java.lang.String,int,java.lang.String,android.app.Notification) +org.greenrobot.greendao.AbstractDao: void updateKeyAfterInsertAndAttach(java.lang.Object,long,boolean) +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState +android.didikee.donate.R$drawable: int abc_btn_colored_material +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder secure() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ProgressBar +retrofit2.DefaultCallAdapterFactory: java.util.concurrent.Executor callbackExecutor +cyanogenmod.providers.CMSettings$System: long getLong(android.content.ContentResolver,java.lang.String) +com.google.android.material.R$color: int design_default_color_surface +com.github.rahatarmanahmed.cpv.R$styleable +io.reactivex.internal.observers.DeferredScalarDisposable: boolean isEmpty() +com.xw.repo.bubbleseekbar.R$attr: int buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.R$styleable: int[] PreferenceGroup +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_color +cyanogenmod.externalviews.KeyguardExternalView$3: void run() +androidx.work.impl.diagnostics.DiagnosticsReceiver +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer apparentTemperature +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_default +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Tooltip +okhttp3.RequestBody: RequestBody() +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: boolean unsupported +okio.GzipSource: byte SECTION_TRAILER +cyanogenmod.hardware.CMHardwareManager: boolean writePersistentBytes(java.lang.String,byte[]) +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_horizontal_padding +androidx.lifecycle.LiveData: LiveData() +com.google.android.material.R$drawable: int ic_mtrl_checked_circle +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: long serialVersionUID +wangdaye.com.geometricweather.R$mipmap androidx.viewpager2.R$styleable -com.google.android.material.R$color: int primary_text_default_material_dark -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver parent -androidx.appcompat.resources.R$attr: int fontProviderFetchStrategy -james.adaptiveicon.R$color: int abc_background_cache_hint_selector_material_light -okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache this$0 -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao getChineseCityEntityDao() -okhttp3.HttpUrl: char[] HEX_DIGITS -com.google.android.material.R$string: int material_timepicker_clock_mode_description -james.adaptiveicon.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -androidx.recyclerview.R$styleable: int GradientColor_android_centerColor -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_4_material -androidx.appcompat.view.menu.CascadingMenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter windDegreeConverter -retrofit2.OkHttpCall: okio.Timeout timeout() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitation -cyanogenmod.app.Profile: void setProfileType(int) -okhttp3.internal.http2.Http2Writer: void frameHeader(int,int,byte,byte) -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_3 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getMoonPhaseDescription() -androidx.lifecycle.extensions.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.R$color: int cardview_light_background -wangdaye.com.geometricweather.R$styleable: int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor -com.amap.api.fence.DistrictItem: void setCitycode(java.lang.String) -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void dispose() -wangdaye.com.geometricweather.R$id: int autoCompleteToStart -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getLogo() -wangdaye.com.geometricweather.R$array: int air_quality_unit_values -com.google.android.material.R$attr: int prefixTextColor -okio.ByteString: boolean equals(java.lang.Object) -androidx.preference.R$drawable: int btn_radio_on_mtrl -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setFitSide(int) -wangdaye.com.geometricweather.R$color: int material_slider_active_track_color -retrofit2.Retrofit: java.util.concurrent.Executor callbackExecutor -wangdaye.com.geometricweather.R$styleable: int Transition_staggered -wangdaye.com.geometricweather.R$id: int item_icon_provider_clearIcon -okhttp3.Cache$Entry: void writeTo(okhttp3.internal.cache.DiskLruCache$Editor) -com.amap.api.location.UmidtokenInfo: com.amap.api.location.AMapLocationClient a() -okio.Util: short reverseBytesShort(short) -io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Consumer onError -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: io.reactivex.Observer downstream -cyanogenmod.weather.RequestInfo: android.location.Location access$502(cyanogenmod.weather.RequestInfo,android.location.Location) -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_normal_material_light -com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_thumb_material -androidx.preference.R$attr: int coordinatorLayoutStyle -wangdaye.com.geometricweather.R$attr: int brightness -androidx.appcompat.R$styleable: int SwitchCompat_switchPadding -com.amap.api.fence.GeoFence$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$id: int group_divider -cyanogenmod.providers.ThemesContract: java.lang.String AUTHORITY -wangdaye.com.geometricweather.R$attr: int textAppearanceButton -cyanogenmod.hardware.CMHardwareManager: CMHardwareManager(android.content.Context) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric Metric -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: long EndEpochDate -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.disposables.Disposable upstream -androidx.preference.R$attr: int actionModePopupWindowStyle -android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Dialog -androidx.appcompat.R$style: int AlertDialog_AppCompat -com.xw.repo.bubbleseekbar.R$color: int material_grey_50 -androidx.appcompat.widget.ListPopupWindow: void setOnItemSelectedListener(android.widget.AdapterView$OnItemSelectedListener) -okhttp3.internal.http2.Huffman$Node: int terminalBits -com.amap.api.location.AMapLocationClientOption$AMapLocationMode -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getAbbreviation(android.content.Context) -okhttp3.CacheControl: CacheControl(okhttp3.CacheControl$Builder) -com.xw.repo.bubbleseekbar.R$id: int title -androidx.constraintlayout.widget.R$attr: int waveVariesBy -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: long serialVersionUID +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Bridge +android.didikee.donate.R$attr: int alertDialogTheme +com.github.rahatarmanahmed.cpv.CircularProgressView$4: CircularProgressView$4(com.github.rahatarmanahmed.cpv.CircularProgressView) +com.google.android.material.slider.RangeSlider: void setTickInactiveTintList(android.content.res.ColorStateList) +com.google.android.material.R$styleable: int AppCompatTheme_panelMenuListTheme +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabRippleColor +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +com.google.android.material.chip.Chip: void setChipText(java.lang.CharSequence) +okhttp3.Dns: okhttp3.Dns SYSTEM +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio +com.google.android.gms.common.internal.zzv +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onError(java.lang.Throwable) +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: void onActive() +androidx.constraintlayout.widget.ConstraintHelper: void setReferencedIds(int[]) +okhttp3.internal.Util: void closeQuietly(java.net.ServerSocket) +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String TODAYS_HIGH_TEMPERATURE +wangdaye.com.geometricweather.R$drawable: int ic_thx +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: java.lang.String textAdvice +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onNext(java.lang.Object) +androidx.coordinatorlayout.R$styleable: int[] CoordinatorLayout +androidx.cardview.R$styleable: R$styleable() +androidx.constraintlayout.widget.R$id: int radio +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetEndWithActions +androidx.preference.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +okhttp3.internal.cache.DiskLruCache$Editor: okio.Sink newSink(int) +com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_focused +cyanogenmod.hardware.ICMHardwareService: boolean set(int,boolean) +com.jaredrummler.android.colorpicker.R$layout: int abc_search_view +androidx.swiperefreshlayout.R$id: int blocking +androidx.constraintlayout.widget.R$attr: int ratingBarStyleIndicator +androidx.constraintlayout.widget.R$attr: int flow_horizontalStyle +wangdaye.com.geometricweather.R$drawable: int clock_minute_dark +retrofit2.KotlinExtensions: java.lang.Object awaitNullable(retrofit2.Call,kotlin.coroutines.Continuation) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: long serialVersionUID +wangdaye.com.geometricweather.R$dimen: int abc_search_view_preferred_width +com.google.android.material.R$styleable: int Constraint_layout_editor_absoluteY +com.turingtechnologies.materialscrollbar.R$attr: int titleMargin +androidx.lifecycle.MediatorLiveData: void onActive() +com.google.android.material.R$dimen: int abc_dialog_min_width_major +com.google.android.material.R$styleable: int[] ActionBar +com.google.android.material.R$id: int dragDown +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: java.util.List coordinates +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_singleLineTitle +wangdaye.com.geometricweather.R$styleable: int[] ColorPickerView +okhttp3.Address: java.net.Proxy proxy +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.Handler access$100(cyanogenmod.externalviews.KeyguardExternalViewProviderService) +wangdaye.com.geometricweather.R$drawable: int weather_haze_pixel +com.amap.api.location.AMapLocationQualityReport: int getGPSSatellites() +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark_normal +androidx.preference.R$attr: int theme +androidx.hilt.R$id: int visible_removing_fragment_view_tag +okhttp3.internal.http2.Http2Connection$7: int val$streamId +wangdaye.com.geometricweather.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_card +androidx.constraintlayout.widget.R$layout: int abc_action_mode_close_item_material +com.google.android.material.R$color: int primary_text_default_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: CaiYunMainlyResult$AqiBeanXX() +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_default_mtrl_shape +androidx.preference.R$styleable: int AppCompatTheme_actionButtonStyle +io.reactivex.internal.observers.BasicIntQueueDisposable: void clear() +androidx.preference.R$attr: int actionModePasteDrawable +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_COLOR_ADJUSTMENT_VALIDATOR +okio.Buffer: okio.ByteString snapshot(int) +com.google.android.material.slider.BaseSlider: int getHaloRadius() +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onSuccess(java.lang.Object) +androidx.drawerlayout.R$drawable: int notification_bg_normal_pressed +com.jaredrummler.android.colorpicker.R$string: int cpv_transparency +wangdaye.com.geometricweather.R$color: int ripple_material_dark +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.util.concurrent.atomic.AtomicReference current +wangdaye.com.geometricweather.R$layout: int item_location +androidx.hilt.lifecycle.R$dimen: int compat_button_inset_horizontal_material +androidx.activity.R$drawable: int notification_template_icon_low_bg +okio.Timeout: boolean hasDeadline +androidx.loader.R$attr: int font +com.bumptech.glide.R$styleable: int ColorStateListItem_android_color +com.google.android.material.R$styleable: int ConstraintSet_layout_editor_absoluteY +com.google.android.material.R$styleable: int[] MotionLayout +wangdaye.com.geometricweather.R$styleable: int[] EditTextPreference +okhttp3.internal.http1.Http1Codec$FixedLengthSink +androidx.constraintlayout.widget.R$layout: int notification_action_tombstone +android.didikee.donate.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginBottom +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_alphabeticShortcut +wangdaye.com.geometricweather.R$id: int toolbar +com.google.android.material.R$attr: int layout_constraintWidth_percent +com.google.android.material.R$id: int content +androidx.preference.R$dimen: int abc_action_bar_icon_vertical_padding_material +com.turingtechnologies.materialscrollbar.R$string: int abc_capital_off +cyanogenmod.externalviews.ExternalViewProviderService$1$1: java.lang.Object call() +androidx.appcompat.resources.R$id: int accessibility_custom_action_15 +com.google.android.material.R$styleable: int KeyCycle_android_scaleX +androidx.constraintlayout.helper.widget.Flow: void setPaddingTop(int) +cyanogenmod.themes.ThemeChangeRequest: android.os.Parcelable$Creator CREATOR +androidx.hilt.R$styleable: int GradientColor_android_endY +okio.AsyncTimeout$Watchdog +com.google.gson.stream.JsonWriter: int[] stack +com.amap.api.location.DPoint +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light com.xw.repo.bubbleseekbar.R$styleable: int View_android_focusable -okhttp3.Request$Builder: okhttp3.Request$Builder url(okhttp3.HttpUrl) -okhttp3.internal.http2.Http2Codec: okhttp3.Interceptor$Chain chain -wangdaye.com.geometricweather.R$color: int design_default_color_background -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_icon -com.google.android.material.R$animator: int mtrl_btn_state_list_anim -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTotalPrecipitationProbability(java.lang.Float) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation Precipitation -androidx.appcompat.R$color: int notification_action_color_filter -com.google.android.material.R$attr: int dayStyle -wangdaye.com.geometricweather.R$attr: int sizePercent -james.adaptiveicon.R$attr: int windowActionBarOverlay -androidx.drawerlayout.R$string: R$string() -james.adaptiveicon.R$id: int action_bar_container -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_default_mtrl_alpha -retrofit2.RequestFactory$Builder: java.lang.reflect.Type[] parameterTypes -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type UNKNOWN -com.google.android.material.chip.Chip: void setOnCloseIconClickListener(android.view.View$OnClickListener) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalAlign -androidx.constraintlayout.widget.R$attr: int title -androidx.appcompat.R$style: int Base_Widget_AppCompat_Toolbar -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerX -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -androidx.appcompat.widget.Toolbar: int getContentInsetLeft() -wangdaye.com.geometricweather.R$xml: int perference -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onSuccess(java.lang.Object) -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(java.lang.Iterable,io.reactivex.functions.Function,int) -james.adaptiveicon.R$string: int abc_action_bar_home_description -io.reactivex.Observable: io.reactivex.Observable using(java.util.concurrent.Callable,io.reactivex.functions.Function,io.reactivex.functions.Consumer,boolean) -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: long serialVersionUID -androidx.room.MultiInstanceInvalidationService -androidx.appcompat.widget.SearchView: void setAppSearchData(android.os.Bundle) -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_timeIcon -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_track -androidx.recyclerview.R$id: int accessibility_custom_action_20 -cyanogenmod.providers.CMSettings$2 -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_weight -androidx.core.R$id: int normal -wangdaye.com.geometricweather.R$id: int src_over -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_36 -androidx.preference.R$styleable: int TextAppearance_android_textStyle -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getRagweedLevel() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextView -android.didikee.donate.R$string: int abc_searchview_description_submit -io.reactivex.internal.util.VolatileSizeArrayList: int hashCode() -wangdaye.com.geometricweather.R$id: int action_bar_activity_content -com.jaredrummler.android.colorpicker.R$string: int abc_menu_delete_shortcut_label -io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper[] values() -cyanogenmod.externalviews.KeyguardExternalView$1: void onServiceConnected(android.content.ComponentName,android.os.IBinder) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SHOW_ALARM_ICON_VALIDATOR -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.Scheduler$Worker worker -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ListPopupWindow -com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_backgroundTintMode -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintEnd_toStartOf -okio.Buffer: long indexOf(byte,long,long) -com.google.android.gms.base.R$id: int dark -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -james.adaptiveicon.R$integer: int abc_config_activityShortDur -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Inverse -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SearchView_ActionBar -androidx.preference.R$string: int abc_menu_sym_shortcut_label -com.jaredrummler.android.colorpicker.R$attr: int colorButtonNormal -cyanogenmod.externalviews.KeyguardExternalView: android.content.Context access$600(cyanogenmod.externalviews.KeyguardExternalView) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getRealFeelShaderTemperature() -androidx.swiperefreshlayout.R$drawable: int notification_bg_normal -com.amap.api.fence.GeoFence: void setEnterTime(long) -android.didikee.donate.R$styleable: int AppCompatTextView_textLocale -okhttp3.HttpUrl$Builder: int schemeDelimiterOffset(java.lang.String,int,int) -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setIcePrecipitation(java.lang.Float) -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getCloseIcon() -com.google.android.material.R$styleable: int SearchView_iconifiedByDefault -androidx.preference.R$attr: int listPopupWindowStyle -com.turingtechnologies.materialscrollbar.R$styleable: int[] NavigationView -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver -com.jaredrummler.android.colorpicker.R$string: int abc_menu_ctrl_shortcut_label -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotation -androidx.appcompat.view.menu.ActionMenuItemView: void setPopupCallback(androidx.appcompat.view.menu.ActionMenuItemView$PopupCallback) -androidx.constraintlayout.widget.R$string: int abc_menu_enter_shortcut_label -androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: io.reactivex.internal.operators.observable.ObservableRefCount parent -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getWetBulbTemperature() -com.turingtechnologies.materialscrollbar.R$attr: int autoSizeMinTextSize -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Colored -com.google.android.material.slider.BaseSlider: float getThumbStrokeWidth() -androidx.appcompat.R$attr: int checkboxStyle -com.jaredrummler.android.colorpicker.R$attr: int editTextBackground -androidx.constraintlayout.widget.R$styleable: int ActivityChooserView_initialActivityCount -io.reactivex.Observable: io.reactivex.Observable interval(long,long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure measure -com.google.android.material.R$drawable: int abc_text_select_handle_middle_mtrl_dark -androidx.lifecycle.Transformations$3: Transformations$3(androidx.lifecycle.MediatorLiveData) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.app.CustomTile$Builder -wangdaye.com.geometricweather.R$id: int percent -androidx.preference.R$style: int Preference_Material -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder queryOnly() -androidx.appcompat.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String weatherText -okio.ByteString: okio.ByteString decodeHex(java.lang.String) -androidx.appcompat.R$id: int accessibility_custom_action_24 -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue getOrCreateQueue() -okhttp3.EventListener$2: EventListener$2(okhttp3.EventListener) -androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_weight -androidx.activity.R$id: int accessibility_custom_action_0 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_alert_dialog_button_dimen -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_minWidth -com.bumptech.glide.R$id: int tag_transition_group -androidx.work.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String getUpdateIntervalName(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int RangeSlider_values -androidx.lifecycle.extensions.R$id: int icon -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: ServiceLifecycleDispatcher$DispatchRunnable(androidx.lifecycle.LifecycleRegistry,androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.R$id: int light -com.google.android.material.R$style: int Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum() -okio.RealBufferedSource: long readAll(okio.Sink) -cyanogenmod.themes.IThemeService: boolean isThemeApplying() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onSubscribe(org.reactivestreams.Subscription) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: Pollen(java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) -com.google.android.material.R$drawable: int avd_hide_password -okhttp3.Response: long sentRequestAtMillis() -com.turingtechnologies.materialscrollbar.R$styleable: int[] StateListDrawable -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: java.lang.Float max -androidx.constraintlayout.widget.R$id: int deltaRelative -androidx.activity.R$id: int tag_accessibility_pane_title -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer RIGHT_CLOSE -james.adaptiveicon.R$styleable: int AppCompatTextView_textAllCaps -android.didikee.donate.R$id: int title_template -com.github.rahatarmanahmed.cpv.CircularProgressView$8: CircularProgressView$8(com.github.rahatarmanahmed.cpv.CircularProgressView,float,float) -cyanogenmod.externalviews.KeyguardExternalView: boolean onPreDraw() -okhttp3.internal.ws.WebSocketReader: boolean isControlFrame -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_4 -com.google.android.material.R$styleable: int SearchView_voiceIcon -cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult() -cyanogenmod.profiles.BrightnessSettings: BrightnessSettings(int,boolean) -org.greenrobot.greendao.AbstractDao: void save(java.lang.Object) -com.jaredrummler.android.colorpicker.R$id: int contentPanel -com.google.android.material.R$layout: int abc_screen_toolbar -com.jaredrummler.android.colorpicker.R$anim: int abc_grow_fade_in_from_bottom -androidx.appcompat.view.menu.ActionMenuItemView: void setChecked(boolean) -androidx.preference.R$layout: int abc_action_menu_item_layout -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_titleTextStyle -com.amap.api.location.CoordUtil: CoordUtil() -okhttp3.internal.http2.Http2Codec: void finishRequest() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean weather -okhttp3.internal.platform.Jdk9Platform: okhttp3.internal.platform.Jdk9Platform buildIfSupported() -com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_text_color -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Title -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int BLUSTERY -okhttp3.internal.publicsuffix.PublicSuffixDatabase: void readTheList() -cyanogenmod.externalviews.ExternalViewProviderService$1$1: ExternalViewProviderService$1$1(cyanogenmod.externalviews.ExternalViewProviderService$1,android.os.Bundle) -cyanogenmod.app.ProfileGroup$Mode: ProfileGroup$Mode(java.lang.String,int) -com.google.android.material.R$attr: int labelVisibilityMode -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen -com.google.android.material.chip.Chip: void setChipTextResource(int) -wangdaye.com.geometricweather.R$color: int switch_thumb_disabled_material_dark -androidx.appcompat.R$style: int Widget_AppCompat_ListView -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setAppOverlay(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: double lon -okhttp3.HttpUrl: java.lang.String FRAGMENT_ENCODE_SET_URI -com.turingtechnologies.materialscrollbar.R$attr: int dividerPadding -wangdaye.com.geometricweather.R$layout: int widget_trend_daily -wangdaye.com.geometricweather.R$styleable: int Constraint_motionStagger -retrofit2.Utils: java.lang.reflect.Type resolve(java.lang.reflect.Type,java.lang.Class,java.lang.reflect.Type) -com.google.android.material.R$styleable: int Constraint_layout_constraintTop_toBottomOf -james.adaptiveicon.R$style: int Base_Widget_AppCompat_SeekBar -okio.AsyncTimeout: java.io.IOException exit(java.io.IOException) -com.google.android.material.button.MaterialButton: void setCornerRadiusResource(int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_27 -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_visible -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_material -androidx.appcompat.R$attr: int itemPadding -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalGap -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_creator -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowMinWidthMinor -com.google.android.material.R$attr: int buttonBarNegativeButtonStyle -com.google.android.material.R$style: int Widget_Compat_NotificationActionText -androidx.preference.R$id: int tag_transition_group -androidx.lifecycle.ReportFragment: androidx.lifecycle.ReportFragment$ActivityInitializationListener mProcessListener -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide -com.baidu.location.indoor.mapversion.c.a$d: void a(java.lang.String) -okio.GzipSource: byte SECTION_BODY -com.jaredrummler.android.colorpicker.R$attr: int colorPrimary -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_start_icon_margin_end -androidx.constraintlayout.widget.R$attr: int splitTrack -okio.GzipSource: void checkEqual(java.lang.String,int,int) -com.google.android.material.R$styleable: int Toolbar_navigationContentDescription +wangdaye.com.geometricweather.R$layout: int abc_activity_chooser_view +com.google.android.material.R$string: int material_timepicker_clock_mode_description +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onComplete() +com.google.android.material.R$styleable: int Motion_transitionEasing +androidx.core.R$string: R$string() +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int moveWhenScrollAtTop +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ListPopupWindow +com.google.android.material.R$style: int Widget_AppCompat_Light_ActivityChooserView +androidx.appcompat.widget.SearchView: void setIconified(boolean) +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Time +androidx.preference.R$style: int TextAppearance_AppCompat_Subhead +wangdaye.com.geometricweather.R$attr: int actionModeSelectAllDrawable +com.jaredrummler.android.colorpicker.R$attr: int indeterminateProgressStyle +com.google.android.material.R$styleable: int Layout_layout_constraintBottom_toTopOf +com.google.android.material.R$attr: int useMaterialThemeColors +androidx.hilt.R$id: int accessibility_custom_action_7 +androidx.appcompat.R$attr: int ratingBarStyleIndicator +androidx.appcompat.R$anim +androidx.preference.R$attr: int actionButtonStyle +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: void dispose() +androidx.preference.R$id: int list_item +androidx.appcompat.R$id: int accessibility_custom_action_15 +wangdaye.com.geometricweather.R$styleable: int ActionBar_customNavigationLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: java.util.List getValue() +wangdaye.com.geometricweather.R$styleable: int KeyCycle_transitionPathRotate +okio.Buffer: okio.Buffer writeShort(int) +androidx.viewpager.R$drawable: int notification_template_icon_bg +androidx.constraintlayout.widget.R$id: int staticLayout +androidx.preference.R$styleable: int AppCompatTheme_buttonStyle +com.jaredrummler.android.colorpicker.ColorPanelView: void setOriginalColor(int) +androidx.constraintlayout.widget.R$styleable: int AlertDialog_listItemLayout +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial Imperial +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: MfForecastResult() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String grassDescription +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_15 +android.didikee.donate.R$id: int scrollIndicatorUp +android.didikee.donate.R$id: int showCustom +wangdaye.com.geometricweather.R$id: int smallLabel +retrofit2.OkHttpCall: void cancel() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getUniqueDeviceId +androidx.appcompat.R$layout: int abc_screen_simple_overlay_action_mode +com.google.android.material.R$styleable: int ConstraintSet_pathMotionArc +james.adaptiveicon.R$dimen: int compat_button_inset_vertical_material +com.turingtechnologies.materialscrollbar.R$id: int scrollView +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayWeekWidgetConfigActivity: Hilt_ClockDayWeekWidgetConfigActivity() +androidx.preference.R$styleable: int ActionMode_closeItemLayout +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ButtonBar +android.didikee.donate.R$attr: int windowActionBarOverlay +com.google.android.material.R$styleable: int ActionMode_subtitleTextStyle +cyanogenmod.platform.R$bool: R$bool() +androidx.work.R$integer: R$integer() +io.reactivex.Observable: io.reactivex.Observable timestamp() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingStart +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +wangdaye.com.geometricweather.R$color: int abc_color_highlight_material +androidx.appcompat.widget.ActionBarOverlayLayout: void setActionBarHideOffset(int) +wangdaye.com.geometricweather.R$string: int week_7 +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Body1 +com.github.rahatarmanahmed.cpv.CircularProgressView: java.util.List listeners +androidx.core.R$drawable: int notification_bg_low_pressed +androidx.viewpager.R$id: int normal +com.xw.repo.bubbleseekbar.R$dimen: int abc_button_padding_vertical_material +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_28 +com.google.android.gms.dynamic.RemoteCreator$RemoteCreatorException: RemoteCreator$RemoteCreatorException(java.lang.String,java.lang.Throwable) +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: void onInactive() +wangdaye.com.geometricweather.R$id: int sawtooth +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,io.reactivex.functions.Function) +androidx.vectordrawable.R$attr: int fontProviderFetchStrategy +okio.HashingSink: okio.HashingSink hmacSha1(okio.Sink,okio.ByteString) +cyanogenmod.themes.IThemeChangeListener +wangdaye.com.geometricweather.R$style: int PreferenceSummaryTextStyle +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: AccuCurrentResult$PrecipitationSummary$Past3Hours() +androidx.appcompat.R$styleable: int TextAppearance_android_textColorHint +com.google.android.material.R$attr: int layout_constraintHeight_default +wangdaye.com.geometricweather.R$styleable: int[] AppCompatTextHelper +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: FlowableCreate$BaseEmitter(org.reactivestreams.Subscriber) +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_query +com.google.android.material.chip.Chip: void setBackgroundResource(int) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +james.adaptiveicon.R$drawable: int abc_control_background_material +com.google.android.material.slider.Slider: void setLabelBehavior(int) +com.google.android.material.R$styleable: int Layout_layout_constraintLeft_toLeftOf +androidx.recyclerview.R$styleable: int FontFamily_fontProviderPackage +com.google.android.gms.common.images.WebImage: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: void setSpeed(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX) +com.jaredrummler.android.colorpicker.R$id: int progress_horizontal +com.google.android.material.R$layout: int text_view_without_line_height +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_ab_back_material +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_recyclerView +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Inverse +androidx.hilt.work.R$layout: int notification_template_part_time +androidx.preference.R$attr: int shouldDisableView +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onSuccess(java.lang.Object) +okhttp3.TlsVersion: okhttp3.TlsVersion forJavaName(java.lang.String) +com.google.android.material.circularreveal.CircularRevealFrameLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +androidx.constraintlayout.helper.widget.Flow: void setVerticalAlign(int) +androidx.appcompat.R$attr: int autoCompleteTextViewStyle +wangdaye.com.geometricweather.R$id: int transition_layout_save +com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_statusBarForeground +androidx.constraintlayout.widget.R$attr: int region_widthMoreThan +okhttp3.TlsVersion: okhttp3.TlsVersion valueOf(java.lang.String) +okhttp3.Response: boolean isRedirect() +okhttp3.ConnectionPool: java.net.Socket deduplicate(okhttp3.Address,okhttp3.internal.connection.StreamAllocation) +androidx.hilt.work.R$id: int tag_unhandled_key_listeners +androidx.activity.R$id: int tag_screen_reader_focusable +com.google.android.material.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +wangdaye.com.geometricweather.R$id: int notification_multi_city_3 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonStyleSmall +androidx.preference.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String IconPhrase +io.reactivex.internal.operators.observable.ObservableReplay$Node: ObservableReplay$Node(java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer realFeelTemperature +retrofit2.Response: okhttp3.ResponseBody errorBody +androidx.lifecycle.ReportFragment: java.lang.String REPORT_FRAGMENT_TAG +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerY +com.google.android.material.R$color: int accent_material_light +okhttp3.internal.ws.RealWebSocket: void connect(okhttp3.OkHttpClient) +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_NavigationView +com.google.android.material.R$styleable: int FontFamily_fontProviderCerts +okhttp3.internal.connection.RouteDatabase: void connected(okhttp3.Route) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setStatus(int) +androidx.lifecycle.SavedStateHandle: SavedStateHandle(java.util.Map) +cyanogenmod.providers.CMSettings$DelimitedListValidator: CMSettings$DelimitedListValidator(java.lang.String[],java.lang.String,boolean) +com.google.android.material.appbar.AppBarLayout: void removeOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: HistoryEntityDao$Properties() +com.google.android.material.R$id: int mtrl_internal_children_alpha_tag +androidx.recyclerview.widget.RecyclerView: void addOnChildAttachStateChangeListener(androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener) +androidx.constraintlayout.widget.R$id: int search_mag_icon +androidx.viewpager.R$styleable: int GradientColor_android_startX +com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextView +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_pageIndicatorColor +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit MI +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.util.List value +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endColor +com.xw.repo.bubbleseekbar.R$id: int radio +okhttp3.Response$Builder: okhttp3.Response$Builder receivedResponseAtMillis(long) +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() +androidx.appcompat.R$styleable: int[] ColorStateListItem +james.adaptiveicon.R$styleable: int MenuView_android_itemTextAppearance +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_editor_absoluteY +androidx.viewpager.widget.PagerTitleStrip: void setTextColor(int) +com.google.android.material.R$attr: int coordinatorLayoutStyle +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerClose(boolean,io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver) +com.jaredrummler.android.colorpicker.R$styleable: int[] LinearLayoutCompat +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: AccuCurrentResult$ApparentTemperature$Metric() +wangdaye.com.geometricweather.R$animator: int design_appbar_state_list_animator +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String src +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language RUSSIAN +androidx.constraintlayout.widget.R$styleable: int PropertySet_visibilityMode +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitation +androidx.constraintlayout.widget.R$attr: int wavePeriod +io.reactivex.internal.subscriptions.EmptySubscription: boolean offer(java.lang.Object) +okhttp3.internal.http.HttpCodec: void finishRequest() +com.google.android.material.R$dimen: int material_filled_edittext_font_2_0_padding_bottom +androidx.lifecycle.SavedStateHandle: void validateValue(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.subjects.UnicastSubject window +androidx.coordinatorlayout.R$styleable: int ColorStateListItem_alpha +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_min +okhttp3.internal.connection.RealConnection: okhttp3.internal.ws.RealWebSocket$Streams newWebSocketStreams(okhttp3.internal.connection.StreamAllocation) +com.amap.api.fence.GeoFenceClient: void addGeoFence(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String) +retrofit2.http.GET: java.lang.String value() +retrofit2.Callback: void onResponse(retrofit2.Call,retrofit2.Response) +cyanogenmod.util.ColorUtils: com.android.internal.util.cm.palette.Palette$Swatch getDominantSwatch(com.android.internal.util.cm.palette.Palette) +wangdaye.com.geometricweather.R$id: int item_about_header_appIcon +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer windChillTemperature +com.loc.h: void stopLocation() +okio.BufferedSink: void flush() +okhttp3.logging.LoggingEventListener: void responseHeadersStart(okhttp3.Call) +com.xw.repo.bubbleseekbar.R$id: int uniform +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableBottom +wangdaye.com.geometricweather.R$style: int CardView_Light +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_summaryOff +james.adaptiveicon.R$styleable: int TextAppearance_android_shadowDy +okhttp3.Dispatcher: java.util.concurrent.ExecutorService executorService() +wangdaye.com.geometricweather.R$plurals: R$plurals() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalGap +androidx.core.R$attr: int fontProviderAuthority +io.reactivex.Observable: io.reactivex.Observable window(long,long) +cyanogenmod.externalviews.ExternalViewProviderService$1 +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: long serialVersionUID +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.ObservableSource fallback +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs +com.google.android.material.R$styleable: int KeyTrigger_onNegativeCross +com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonTint +androidx.appcompat.R$color: int bright_foreground_inverse_material_dark +james.adaptiveicon.R$color: int dim_foreground_disabled_material_light +androidx.constraintlayout.widget.R$color: int primary_dark_material_dark +wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetTop +okio.BufferedSink: okio.BufferedSink emit() +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_selection_text +android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat_Dark +com.google.android.material.R$drawable: int abc_seekbar_tick_mark_material +okhttp3.RequestBody$3: RequestBody$3(okhttp3.MediaType,java.io.File) +com.google.android.material.transformation.TransformationChildLayout: TransformationChildLayout(android.content.Context) +james.adaptiveicon.R$attr: int titleMargins +com.xw.repo.bubbleseekbar.R$attr: int titleMarginStart +com.jaredrummler.android.colorpicker.R$styleable: int Preference_singleLineTitle +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float Lead +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.internal.disposables.SequentialDisposable upstream +androidx.coordinatorlayout.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getWindChillTemperature() +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_alterWindow +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleTextColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange +android.didikee.donate.R$style: int TextAppearance_AppCompat_Large_Inverse +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListPopupWindow +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_steps +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_pressed_z +io.reactivex.Observable: io.reactivex.Observable delay(io.reactivex.ObservableSource,io.reactivex.functions.Function) +okhttp3.internal.NamedRunnable: java.lang.String name +com.google.android.material.R$styleable: int[] CoordinatorLayout_Layout +james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog +androidx.constraintlayout.helper.widget.Flow: void setPaddingBottom(int) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipEndPadding +com.bumptech.glide.request.RequestCoordinator$RequestState: boolean isComplete() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +james.adaptiveicon.R$styleable: int Spinner_popupTheme +okio.BufferedSource: long indexOf(byte,long,long) +com.jaredrummler.android.colorpicker.R$attr: int layout_dodgeInsetEdges +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_FixedSize +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_imeOptions +cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(cyanogenmod.weatherservice.ServiceRequestResult$1) +wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_text_color +com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_material_light +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmTp2 +com.google.android.material.R$attr: int customColorDrawableValue +com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar_Small +androidx.preference.R$attr: int titleMarginTop +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingTop +retrofit2.BuiltInConverters$VoidResponseBodyConverter: retrofit2.BuiltInConverters$VoidResponseBodyConverter INSTANCE +androidx.preference.R$attr: int spanCount +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_homeAsUpIndicator +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: wangdaye.com.geometricweather.db.entities.HourlyEntity readEntity(android.database.Cursor,int) +androidx.preference.R$id: int left +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: double Value +okhttp3.HttpUrl: java.lang.String USERNAME_ENCODE_SET +com.turingtechnologies.materialscrollbar.R$attr: int chipStrokeColor +okhttp3.Address: okhttp3.HttpUrl url +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +james.adaptiveicon.R$styleable: int View_android_theme +androidx.preference.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Caption +com.github.rahatarmanahmed.cpv.CircularProgressView$6: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +wangdaye.com.geometricweather.R$id: int clip_vertical +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_sheet_modal_elevation +androidx.appcompat.R$drawable: int abc_spinner_mtrl_am_alpha +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context) +android.didikee.donate.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +androidx.preference.R$styleable: int AppCompatTheme_actionMenuTextColor +androidx.legacy.coreutils.R$styleable: int GradientColor_android_endY +androidx.viewpager.R$drawable: int notification_tile_bg +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_PULSE_VALIDATOR +wangdaye.com.geometricweather.R$attr: int contrast +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_title_material_toolbar +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String content +okio.ByteString: int decodeHexDigit(char) +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy[] values() +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTime(long) +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_numericModifiers +com.jaredrummler.android.colorpicker.R$attr: int queryBackground +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Line2 +com.google.android.material.R$styleable: int AppCompatTheme_editTextBackground +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListPopupWindow +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +androidx.preference.R$layout: R$layout() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd +com.google.android.material.card.MaterialCardView: void setStrokeColor(int) +wangdaye.com.geometricweather.R$layout: int fragment_main +okhttp3.internal.ws.RealWebSocket: void initReaderAndWriter(java.lang.String,okhttp3.internal.ws.RealWebSocket$Streams) +com.google.android.material.R$styleable: int TextInputLayout_errorIconTintMode +androidx.hilt.R$layout: int notification_action +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean delayErrors +androidx.preference.R$color: int primary_material_light +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.bottomappbar.BottomAppBar: void setFabAlignmentMode(int) +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: long serialVersionUID +com.google.android.material.R$styleable: int[] ShapeableImageView +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver inner +okhttp3.HttpUrl: java.lang.String fragment +com.turingtechnologies.materialscrollbar.R$id: int left +com.google.android.material.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +android.didikee.donate.R$style: int Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.R$attr: int closeIconStartPadding +android.didikee.donate.R$style: int TextAppearance_AppCompat_Medium +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object getKey(java.lang.Object) +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PKG_NAME +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: java.lang.String Unit +androidx.appcompat.view.menu.ListMenuItemView: android.view.LayoutInflater getInflater() +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose SignIn +android.support.v4.os.IResultReceiver$Stub$Proxy: android.os.IBinder mRemote +androidx.constraintlayout.widget.R$color: int material_grey_800 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer grassIndex +com.xw.repo.bubbleseekbar.R$attr: int actionModeSelectAllDrawable +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_switchTextOff +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +james.adaptiveicon.R$attr: int actionBarTabStyle +com.google.android.material.R$color +com.google.android.material.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias +androidx.appcompat.R$color: int material_grey_800 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_57 +com.google.android.material.R$styleable: int AppCompatTheme_windowFixedWidthMajor +androidx.constraintlayout.widget.Barrier: void setType(int) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Subhead_Inverse +androidx.preference.R$styleable: int MenuView_android_headerBackground +androidx.customview.R$id: int icon +androidx.loader.R$drawable: int notification_template_icon_bg +androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +io.reactivex.internal.schedulers.AbstractDirectTask: AbstractDirectTask(java.lang.Runnable) +wangdaye.com.geometricweather.R$id: int cpv_preference_preview_color_panel +com.google.android.material.floatingactionbutton.FloatingActionButton: void setVisibility(int) +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemBackground +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light +cyanogenmod.app.ICustomTileListener: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getLevel() +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property City +androidx.appcompat.R$styleable: int DrawerArrowToggle_spinBars +android.didikee.donate.R$id: int action_bar_title +wangdaye.com.geometricweather.R$attr: int backgroundColorEnd +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: long serialVersionUID +androidx.appcompat.R$id: int none +wangdaye.com.geometricweather.R$drawable: int notif_temp_33 +androidx.constraintlayout.widget.R$attr: int overlay +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +com.google.android.material.R$string: int mtrl_picker_text_input_month_abbr +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_fitsSystemWindows +android.didikee.donate.R$layout: int abc_action_mode_close_item_material +io.reactivex.Observable: io.reactivex.Single singleOrError() +wangdaye.com.geometricweather.R$drawable: int weather_snow_1 +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startX +cyanogenmod.hardware.CMHardwareManager: int[] getDisplayGammaCalibrationArray(int) +com.google.android.material.slider.BaseSlider: void setThumbElevationResource(int) +com.google.android.material.chip.Chip: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitation +com.xw.repo.bubbleseekbar.R$attr: int layout_keyline +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_orientation +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +james.adaptiveicon.R$styleable: int[] ButtonBarLayout +com.google.android.material.R$attr: int behavior_autoShrink +com.jaredrummler.android.colorpicker.R$bool: int config_materialPreferenceIconSpaceReserved +okhttp3.Headers$Builder: Headers$Builder() +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPaused(android.app.Activity) +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setOnPageSwipeListener(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout$OnPagerSwipeListener) +okhttp3.internal.http2.Http2Connection: void start() +com.google.android.material.chip.Chip: float getChipCornerRadius() +androidx.preference.R$styleable: int ActionBar_contentInsetRight +androidx.appcompat.R$styleable: int ViewBackgroundHelper_android_background +okhttp3.internal.http1.Http1Codec: okio.Source newUnknownLengthSource() +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void innerSuccess(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: boolean setOther(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupMenu +com.google.android.gms.base.R$string: R$string() +okhttp3.CertificatePinner$Pin: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int btn_checkbox_unchecked_mtrl +wangdaye.com.geometricweather.R$id: int accessibility_action_clickable_span +okhttp3.OkHttpClient$Builder: javax.net.SocketFactory socketFactory +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver +james.adaptiveicon.R$dimen: int abc_action_bar_stacked_max_height +okhttp3.internal.tls.DistinguishedNameParser: int cur +com.google.android.material.R$attr: int displayOptions +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void cancelTimer() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutSelectorSupport parent +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: double Value +com.amap.api.fence.GeoFence: int k +com.google.android.material.navigation.NavigationView: void setOverScrollMode(int) +wangdaye.com.geometricweather.R$string: int key_live_wallpaper +com.google.android.material.R$string: int material_timepicker_select_time +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRainPrecipitation() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer ragweedIndex +androidx.appcompat.widget.Toolbar: void setTitleTextColor(int) +androidx.preference.R$styleable: int Toolbar_buttonGravity +com.google.gson.stream.JsonWriter: java.lang.String indent +okio.Okio$1 +com.google.android.material.chip.Chip: void setEllipsize(android.text.TextUtils$TruncateAt) +okio.Okio: okio.Sink sink(java.io.File) +wangdaye.com.geometricweather.R$style: int Preference_Category +io.reactivex.internal.operators.observable.ObservableReplay$Node +androidx.constraintlayout.widget.R$attr: int subtitleTextStyle +android.didikee.donate.R$attr: int drawerArrowStyle +android.didikee.donate.R$drawable: int abc_ic_menu_cut_mtrl_alpha +androidx.fragment.R$anim: int fragment_fast_out_extra_slow_in +com.google.android.material.R$styleable: int KeyPosition_percentY +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.R$attr: int cornerFamilyBottomLeft +com.google.android.material.R$attr: int cardBackgroundColor +wangdaye.com.geometricweather.R$dimen: int tooltip_margin +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerError(java.lang.Throwable) +com.google.android.material.R$string: int search_menu_title +wangdaye.com.geometricweather.R$drawable: int material_ic_menu_arrow_down_black_24dp +com.bumptech.glide.R$attr: int fontProviderAuthority +okhttp3.internal.http2.Http2Stream$StreamTimeout +wangdaye.com.geometricweather.R$drawable: int widget_card_light_100 +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position +androidx.preference.R$id: int decor_content_parent +cyanogenmod.platform.Manifest$permission: java.lang.String READ_DATAUSAGE +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_fabCustomSize +cyanogenmod.providers.CMSettings$Secure: long getLongForUser(android.content.ContentResolver,java.lang.String,int) +com.turingtechnologies.materialscrollbar.R$attr: int contentPadding +cyanogenmod.weather.RequestInfo: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String getValue() +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_24 +androidx.hilt.work.R$styleable: int FragmentContainerView_android_name +com.xw.repo.bubbleseekbar.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$layout: int item_details +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void dispose() +io.reactivex.subjects.PublishSubject$PublishDisposable: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationZ +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_medium_material +com.google.android.material.R$attr: int gapBetweenBars +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getDistrict() +com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorType() +wangdaye.com.geometricweather.R$layout: int item_about_translator +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder hostOnlyDomain(java.lang.String) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +androidx.legacy.content.WakefulBroadcastReceiver: WakefulBroadcastReceiver() +okhttp3.Cache: boolean isClosed() +retrofit2.http.Url +wangdaye.com.geometricweather.R$attr: int itemShapeInsetTop +com.amap.api.location.AMapLocationListener +androidx.appcompat.widget.SearchView: void setOnSuggestionListener(androidx.appcompat.widget.SearchView$OnSuggestionListener) +com.autonavi.aps.amapapi.model.AMapLocationServer: boolean e +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_trackTintMode +okhttp3.RealCall: okhttp3.RealCall clone() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult +androidx.loader.R$id: int italic +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_backgroundTint +okhttp3.RealCall: java.lang.String toLoggableString() +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_font +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark +androidx.customview.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$attr: int dragScale +com.xw.repo.BubbleSeekBar: void setCustomSectionTextArray(com.xw.repo.BubbleSeekBar$CustomSectionTextArray) +com.google.android.material.R$dimen: int compat_notification_large_icon_max_width +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_gravity +wangdaye.com.geometricweather.R$attr: int cpv_allowPresets +com.google.android.material.R$styleable: int Layout_layout_constraintHeight_max +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState +cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener: void onLookupCityRequestCompleted(int,java.util.List) +wangdaye.com.geometricweather.R$attr: int alpha +okhttp3.Cookie: java.util.regex.Pattern YEAR_PATTERN +com.github.rahatarmanahmed.cpv.R$attr: int cpv_progress +com.xw.repo.bubbleseekbar.R$integer: int abc_config_activityShortDur +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: java.lang.Object resource +com.turingtechnologies.materialscrollbar.R$animator: int design_fab_show_motion_spec +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ApparentTemperature +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Large +androidx.recyclerview.R$id: int accessibility_custom_action_8 +wangdaye.com.geometricweather.R$id: int enterAlwaysCollapsed +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWindDirection +cyanogenmod.weather.WeatherInfo$DayForecast: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi: io.reactivex.Observable getLocation(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$id: int icon_group +james.adaptiveicon.R$integer +com.turingtechnologies.materialscrollbar.R$attr: int hintAnimationEnabled +com.google.android.material.R$dimen: int abc_config_prefDialogWidth +okhttp3.internal.http1.Http1Codec: void cancel() +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_left_mtrl_light +androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableItem +okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE_TEMP +com.jaredrummler.android.colorpicker.ColorPickerView: int getPreferredWidth() +cyanogenmod.externalviews.IKeyguardExternalViewProvider +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +androidx.appcompat.R$style: int Platform_V21_AppCompat_Light +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstVerticalStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationY +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService access$400() +wangdaye.com.geometricweather.R$attr: int bsb_track_size +retrofit2.Call: retrofit2.Call clone() +androidx.appcompat.R$styleable: int SwitchCompat_track +wangdaye.com.geometricweather.R$drawable: int ic_temperature_celsius +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_maxHeight +androidx.preference.R$dimen: int abc_list_item_height_material +cyanogenmod.weatherservice.WeatherProviderService: void onConnected() +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason valueOf(java.lang.String) +wangdaye.com.geometricweather.R$attr: int subtitleTextStyle +wangdaye.com.geometricweather.R$id: int animateToEnd +com.amap.api.fence.PoiItem: java.lang.String b +io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial +wangdaye.com.geometricweather.R$styleable: int[] PreferenceTheme +com.jaredrummler.android.colorpicker.R$attr: int elevation +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: boolean hasCompleted() +okhttp3.Cache: void abortQuietly(okhttp3.internal.cache.DiskLruCache$Editor) +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastVerticalBias +com.google.android.material.R$styleable: int Chip_chipIcon +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconSize +com.google.android.material.R$attr: int layout_goneMarginStart +cyanogenmod.providers.CMSettings$System: java.lang.String RECENTS_SHOW_SEARCH_BAR +android.didikee.donate.R$color: int abc_secondary_text_material_light +androidx.constraintlayout.widget.R$string: int abc_searchview_description_query +okhttp3.internal.http2.Hpack$Reader: int maxDynamicTableByteCount +com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_SIGN +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$styleable: int PopupWindow_android_popupBackground +wangdaye.com.geometricweather.R$styleable: int[] Tooltip +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +com.google.android.material.R$attr: int buttonBarNeutralButtonStyle +com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierDirection +androidx.recyclerview.R$id: int icon +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextAppearanceInactive(int) +androidx.preference.R$styleable: int DialogPreference_negativeButtonText +androidx.appcompat.R$drawable: int abc_btn_check_material +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxySelector(java.net.ProxySelector) +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_5 +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean isEntityUpdateable() +wangdaye.com.geometricweather.R$attr: int textAppearanceSearchResultSubtitle +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display4 +android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMarkTint +cyanogenmod.app.StatusBarPanelCustomTile$1: cyanogenmod.app.StatusBarPanelCustomTile createFromParcel(android.os.Parcel) +com.google.android.material.R$color: int design_default_color_primary_dark +androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_activated_mtrl_alpha +cyanogenmod.app.Profile: boolean isDirty() +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_subtitle +com.xw.repo.bubbleseekbar.R$id: int top +androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: AccuCurrentResult$WindGust$Speed() +androidx.appcompat.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitation +com.amap.api.location.AMapLocationClientOption: java.lang.String getAPIKEY() +wangdaye.com.geometricweather.R$string: int settings_title_icon_provider +james.adaptiveicon.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getRagweedIndex() +androidx.appcompat.resources.R$id: int line1 +androidx.lifecycle.ComputableLiveData$1: ComputableLiveData$1(androidx.lifecycle.ComputableLiveData) +wangdaye.com.geometricweather.R$drawable: int avd_show_password +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void dispose() +com.google.android.material.R$attr: int telltales_velocityMode +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_5 +cyanogenmod.externalviews.ExternalViewProperties: android.graphics.Rect getHitRect() +com.google.android.material.R$id: int item_touch_helper_previous_elevation +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_percent +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customColorDrawableValue +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: int getTotalCount() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDewPoint(java.lang.Integer) +androidx.appcompat.R$attr: int listDividerAlertDialog +androidx.customview.R$style: int TextAppearance_Compat_Notification_Info +androidx.appcompat.widget.ListPopupWindow: void setOnItemClickListener(android.widget.AdapterView$OnItemClickListener) +com.google.android.material.textfield.TextInputLayout: void setStartIconDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_default +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +retrofit2.Retrofit: java.lang.Object create(java.lang.Class) +com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getIndicatorWidth() +cyanogenmod.app.Profile: void setConditionalType() +retrofit2.HttpServiceMethod: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) +wangdaye.com.geometricweather.R$drawable: int widget_clock_day_horizontal +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: MfForecastResult$Forecast$Rain() +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickTintList() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +okhttp3.Response$Builder: int code +com.google.android.material.R$styleable: int OnSwipe_maxVelocity +io.reactivex.internal.disposables.EmptyDisposable: boolean isDisposed() +androidx.preference.R$attr: int borderlessButtonStyle +androidx.hilt.R$dimen: int notification_large_icon_width +androidx.preference.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit$Calculator unitCalculator +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight +wangdaye.com.geometricweather.R$attr: int bottomSheetStyle +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noStore() +androidx.swiperefreshlayout.R$id: int chronometer +com.google.android.material.datepicker.SingleDateSelector: android.os.Parcelable$Creator CREATOR +androidx.coordinatorlayout.R$layout: int custom_dialog +androidx.legacy.coreutils.R$id: int action_text +androidx.hilt.R$id: int title +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode CLEAR +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_constraintSet +com.jaredrummler.android.colorpicker.R$attr: int keylines +androidx.core.graphics.drawable.IconCompat: IconCompat() +wangdaye.com.geometricweather.R$id: int fill +com.xw.repo.bubbleseekbar.R$drawable: int abc_item_background_holo_light +james.adaptiveicon.R$attr: int textAppearanceListItemSecondary +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_min_width_major +wangdaye.com.geometricweather.R$attr: int passwordToggleDrawable +androidx.preference.R$style: int ThemeOverlay_AppCompat_ActionBar +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitationProbability +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_trackTintMode +androidx.appcompat.R$drawable: int abc_scrubber_primary_mtrl_alpha +androidx.appcompat.R$id: int action_mode_close_button +cyanogenmod.weather.CMWeatherManager$RequestStatus +okhttp3.internal.Internal: void addLenient(okhttp3.Headers$Builder,java.lang.String) +androidx.preference.R$attr: int singleLineTitle +androidx.preference.TwoStatePreference +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_toRightOf +androidx.constraintlayout.widget.R$color: int abc_tint_default +com.amap.api.fence.PoiItem: java.lang.String getPoiName() +android.didikee.donate.R$id: int action_mode_bar_stub +com.turingtechnologies.materialscrollbar.R$integer: int hide_password_duration +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconContentDescription +wangdaye.com.geometricweather.R$font: int product_sans_black +androidx.drawerlayout.R$styleable +com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage[] a +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind +androidx.coordinatorlayout.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$dimen: int abc_switch_padding +androidx.recyclerview.R$dimen: R$dimen() +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.util.Date getDate() +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean requireAdaptiveBacklightForSunlightEnhancement() +james.adaptiveicon.R$styleable: int AppCompatTheme_popupMenuStyle +com.google.android.material.R$styleable: int ForegroundLinearLayout_android_foreground +okhttp3.internal.Util: okio.ByteString UTF_16_LE_BOM +com.google.android.material.R$styleable: int MaterialButtonToggleGroup_selectionRequired +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +wangdaye.com.geometricweather.R$drawable: int clock_dial_dark +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontVariationSettings +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.db.entities.DaoMaster: void createAllTables(org.greenrobot.greendao.database.Database,boolean) +androidx.viewpager2.R$dimen: int notification_small_icon_size_as_large +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig hourlyEntityDaoConfig +james.adaptiveicon.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +androidx.recyclerview.R$id: R$id() +com.github.rahatarmanahmed.cpv.CircularProgressView: boolean autostartAnimation +wangdaye.com.geometricweather.R$attr: int mock_labelColor +wangdaye.com.geometricweather.R$dimen: int abc_seekbar_track_progress_height_material +com.google.android.material.R$layout: int design_navigation_menu_item +com.google.gson.JsonSyntaxException +wangdaye.com.geometricweather.R$color: int colorTextSubtitle_light +wangdaye.com.geometricweather.R$color: int mtrl_textinput_hovered_box_stroke_color +androidx.hilt.R$drawable: int notification_bg_normal +androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveData(java.lang.String,java.lang.Object) +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_DOCUMENT +cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.CMWeatherManager$2 this$1 +com.google.android.material.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +androidx.constraintlayout.widget.R$styleable: int[] Constraint +androidx.legacy.coreutils.R$dimen: int compat_notification_large_icon_max_width +com.google.android.material.R$dimen: int mtrl_low_ripple_default_alpha +okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_elevation +com.google.gson.stream.JsonReader: java.lang.String toString() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WetBulbTemperature +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Menu +cyanogenmod.themes.ThemeManager$ThemeProcessingListener: void onFinishedProcessing(java.lang.String) +cyanogenmod.providers.CMSettings$System: java.lang.String DIALER_OPENCNAM_ACCOUNT_SID +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize +com.google.android.material.R$styleable: int MenuItem_actionViewClass +wangdaye.com.geometricweather.R$styleable: int Chip_chipBackgroundColor +wangdaye.com.geometricweather.R$attr: int spinnerDropDownItemStyle +wangdaye.com.geometricweather.R$id: int icon_frame +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelBackground +wangdaye.com.geometricweather.R$color: int abc_tint_btn_checkable +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status RUNNING +androidx.hilt.R$id: int info +androidx.viewpager2.R$drawable: int notification_bg_normal_pressed +com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context) +okhttp3.Response$Builder: okhttp3.Response networkResponse +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer gust +com.google.android.material.R$attr: int popupMenuBackground +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void request(long) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.google.android.material.R$dimen: int material_clock_face_margin_top +cyanogenmod.themes.IThemeService$Stub$Proxy: IThemeService$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_height +cyanogenmod.providers.CMSettings$Secure: boolean putLong(android.content.ContentResolver,java.lang.String,long) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +com.jaredrummler.android.colorpicker.R$attr: int spinnerStyle +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_displayOptions +com.google.android.material.progressindicator.ProgressIndicator: void setAnimatorDurationScaleProvider(com.google.android.material.progressindicator.AnimatorDurationScaleProvider) +androidx.preference.R$styleable: int AppCompatSeekBar_tickMarkTint +wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_orderInCategory +com.google.android.material.R$drawable: int test_custom_background +com.bumptech.glide.R$drawable: R$drawable() +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Response execute() +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String LOCKSCREEN_URI +com.xw.repo.bubbleseekbar.R$dimen: int abc_control_corner_material +android.support.v4.os.IResultReceiver$Stub: android.support.v4.os.IResultReceiver getDefaultImpl() +wangdaye.com.geometricweather.R$attr: int shapeAppearance +wangdaye.com.geometricweather.R$layout: int container_circular_sky_view +com.google.android.material.internal.NavigationMenuItemView: void setActionView(android.view.View) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Light +okio.Okio$2 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: java.lang.String Unit +com.google.android.material.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +okhttp3.internal.cache.InternalCache: void trackResponse(okhttp3.internal.cache.CacheStrategy) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitation() +james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +wangdaye.com.geometricweather.R$attr: int bsb_seek_step_section +androidx.preference.R$styleable: int DrawerArrowToggle_arrowHeadLength +androidx.appcompat.R$styleable: int[] ButtonBarLayout +com.turingtechnologies.materialscrollbar.R$attr: int indeterminateProgressStyle androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context) -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_48dp +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void dispose() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_seekBarStyle +wangdaye.com.geometricweather.R$styleable: int Preference_enableCopying +com.google.android.material.R$attr: int fabSize +retrofit2.HttpServiceMethod$SuspendForBody +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter windDegreeConverter +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textColor +com.google.android.material.R$styleable: int AppCompatImageView_tintMode +com.google.android.material.R$styleable: int Constraint_layout_constraintTop_toBottomOf +okhttp3.HttpUrl: java.lang.String password +androidx.hilt.R$dimen: R$dimen() +com.jaredrummler.android.colorpicker.R$attr: int alertDialogTheme +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +com.google.android.material.R$id: int custom +wangdaye.com.geometricweather.R$styleable: int KeyPosition_motionTarget +android.didikee.donate.R$attr: int contentInsetEnd +androidx.viewpager.R$id: int async +androidx.preference.R$styleable: int PreferenceImageView_android_maxHeight +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_28 +okio.BufferedSink: okio.BufferedSink write(okio.ByteString) +androidx.appcompat.view.menu.ActionMenuItemView: void setExpandedFormat(boolean) +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onError(java.lang.Throwable) +cyanogenmod.providers.CMSettings$2: CMSettings$2() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_96 +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitationDuration(java.lang.Float) +com.google.android.material.slider.RangeSlider: void setThumbRadius(int) +com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox +androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontStyle +androidx.coordinatorlayout.R$attr +androidx.constraintlayout.helper.widget.Flow +wangdaye.com.geometricweather.common.basic.models.weather.Alert: long getAlertId() +cyanogenmod.app.CustomTile: java.lang.String contentDescription +com.google.android.material.datepicker.MaterialCalendar: MaterialCalendar() +cyanogenmod.app.PartnerInterface: java.lang.String MODIFY_SOUND_SETTINGS_PERMISSION +com.google.android.material.progressindicator.ProgressIndicator: void setVisibilityAfterHide(int) +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +androidx.preference.R$styleable: int PreferenceTheme_preferenceStyle +com.google.android.material.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +androidx.core.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingStart +wangdaye.com.geometricweather.R$integer: int cpv_default_max_progress +wangdaye.com.geometricweather.R$string: int grass +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_icon +androidx.lifecycle.ClassesInfoCache: java.util.Map mHasLifecycleMethods +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +androidx.preference.R$id: int search_close_btn +okhttp3.ResponseBody$1: okio.BufferedSource val$content +androidx.hilt.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.R$string: int key_gravity_sensor_switch +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String getName() +cyanogenmod.power.PerformanceManagerInternal: void cpuBoost(int) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: int temperature +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActivityChooserView +okhttp3.internal.http2.Hpack: java.util.Map nameToFirstIndex() +com.google.android.material.R$styleable: int ActionBar_contentInsetStartWithNavigation +com.google.android.gms.common.internal.zau: android.os.Parcelable$Creator CREATOR +androidx.vectordrawable.R$drawable +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_16 +retrofit2.RequestFactory: boolean isMultipart +com.jaredrummler.android.colorpicker.R$styleable: int[] CompoundButton +okhttp3.internal.Util: java.nio.charset.Charset UTF_32_BE +androidx.appcompat.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_visible +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: ObservableSampleWithObservable$SampleMainObserver(io.reactivex.Observer,io.reactivex.ObservableSource) +com.turingtechnologies.materialscrollbar.R$attr: int actionBarItemBackground +androidx.appcompat.resources.R$styleable: int[] GradientColor +com.google.android.material.R$id: int mtrl_view_tag_bottom_padding +com.jaredrummler.android.colorpicker.R$styleable: int Preference_persistent +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton_Overflow +androidx.preference.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display3 +james.adaptiveicon.R$dimen: int abc_seekbar_track_progress_height_material +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog +com.baidu.location.e.l$b: com.baidu.location.e.l$b b +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: int UnitType +com.google.android.material.R$id: int info +io.reactivex.internal.schedulers.RxThreadFactory +androidx.preference.R$attr: int textAppearanceListItem +com.google.android.material.R$styleable: int CustomAttribute_customIntegerValue +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayout_Layout +wangdaye.com.geometricweather.R$id: int material_clock_display +wangdaye.com.geometricweather.R$color: int abc_hint_foreground_material_light +james.adaptiveicon.R$style: int Widget_Compat_NotificationActionContainer +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintEnd_toStartOf +com.google.android.gms.common.zzj: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$anim: int abc_tooltip_enter +androidx.transition.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.coordinatorlayout.R$id: int accessibility_custom_action_9 +cyanogenmod.weather.RequestInfo$Builder: RequestInfo$Builder(cyanogenmod.weather.IRequestInfoListener) +androidx.core.R$drawable +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +wangdaye.com.geometricweather.R$drawable: int ic_android +james.adaptiveicon.R$id: int action_bar_container +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void dispose() +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabBarStyle +com.turingtechnologies.materialscrollbar.R$color: int cardview_dark_background +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) +androidx.constraintlayout.widget.R$attr: int goIcon +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode daytimeWeatherCode +okhttp3.internal.http2.Header: java.lang.String TARGET_METHOD_UTF8 +com.google.android.gms.base.R$id: int none +androidx.viewpager.R$styleable: int FontFamilyFont_fontVariationSettings androidx.lifecycle.LifecycleService -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_switchStyle -cyanogenmod.hardware.IThermalListenerCallback$Stub: java.lang.String DESCRIPTOR -io.reactivex.internal.observers.DeferredScalarObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.activity.R$styleable: int GradientColor_android_type -com.google.android.material.R$styleable: int KeyTimeCycle_android_translationY -cyanogenmod.externalviews.KeyguardExternalView$3: cyanogenmod.externalviews.KeyguardExternalView this$0 -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -okio.SegmentedByteString: java.lang.Object writeReplace() -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long serialVersionUID -wangdaye.com.geometricweather.R$dimen: int content_text_size -com.google.android.material.R$styleable: int Toolbar_subtitleTextColor -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light_focused -com.xw.repo.BubbleSeekBar: void setSecondTrackColor(int) -okhttp3.internal.http2.Http2Connection: long awaitPingsSent -com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyleSmall -okhttp3.RealCall$AsyncCall: void executeOn(java.util.concurrent.ExecutorService) -wangdaye.com.geometricweather.R$color: int mtrl_error -wangdaye.com.geometricweather.R$drawable: int tooltip_frame_dark -com.amap.api.location.AMapLocation: void setOffset(boolean) -androidx.preference.R$styleable: int DialogPreference_android_dialogIcon -android.support.v4.os.ResultReceiver$1: ResultReceiver$1() -okio.AsyncTimeout: long remainingNanos(long) -androidx.constraintlayout.widget.R$styleable: int ActionBar_elevation -wangdaye.com.geometricweather.R$id: int action_container -wangdaye.com.geometricweather.R$dimen: int mtrl_progress_circular_radius -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_minHeight -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_TextInputLayout -android.didikee.donate.R$styleable: int AppCompatTheme_buttonStyle -androidx.lifecycle.LifecycleRegistry$ObserverWithState: void dispatchEvent(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.common.basic.models.weather.Wind -com.jaredrummler.android.colorpicker.R$dimen: int abc_config_prefDialogWidth -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onNext(java.lang.Object) -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_anchor -androidx.activity.R$style: int TextAppearance_Compat_Notification_Time -com.jaredrummler.android.colorpicker.R$string: int abc_toolbar_collapse_description -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.internal.util.AtomicThrowable error -androidx.preference.R$layout: int preference_list_fragment -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_Icon -okhttp3.internal.http2.Header: java.lang.String TARGET_SCHEME_UTF8 -cyanogenmod.app.ProfileManager: boolean notificationGroupExists(java.lang.String) -cyanogenmod.app.ProfileGroup: java.util.UUID getUuid() +androidx.swiperefreshlayout.R$layout: int notification_action +android.didikee.donate.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean delayErrors +retrofit2.adapter.rxjava2.ResultObservable: ResultObservable(io.reactivex.Observable) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitation() +james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionBar +com.google.android.material.R$styleable: int TextAppearance_android_textSize +wangdaye.com.geometricweather.R$string: int maxi_temp +androidx.preference.R$styleable: int GradientColor_android_centerColor +com.google.android.material.R$style: int Widget_Design_ScrimInsetsFrameLayout +androidx.viewpager2.R$integer +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator +android.didikee.donate.R$dimen: int abc_text_size_subtitle_material_toolbar +com.google.android.material.slider.BaseSlider: void setThumbStrokeWidthResource(int) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro[] astros +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMargin +cyanogenmod.providers.DataUsageContract: java.lang.String CONTENT_ITEM_TYPE +com.xw.repo.bubbleseekbar.R$color: int material_grey_850 +androidx.hilt.work.R$attr: int fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_background +wangdaye.com.geometricweather.R$drawable: int notif_temp_140 +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getShortDate(android.content.Context) +com.google.android.material.R$attr: int applyMotionScene +androidx.preference.ListPreferenceDialogFragmentCompat: ListPreferenceDialogFragmentCompat() +wangdaye.com.geometricweather.R$styleable: int[] ScrimInsetsFrameLayout +wangdaye.com.geometricweather.R$color: int lightPrimary_5 +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial +io.reactivex.subjects.PublishSubject$PublishDisposable: PublishSubject$PublishDisposable(io.reactivex.Observer,io.reactivex.subjects.PublishSubject) +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isDataConnectionEnabled +androidx.fragment.app.FragmentContainerView: void setDrawDisappearingViewsLast(boolean) +james.adaptiveicon.R$drawable: int notification_bg_normal +androidx.vectordrawable.animated.R$layout: int notification_action +android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupMenu +androidx.preference.R$styleable: int Toolbar_subtitleTextColor +okhttp3.internal.http2.Http2Connection: int lastGoodStreamId +androidx.preference.R$style: int Platform_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int[] Transition +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric +androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +okhttp3.internal.http2.Http2Writer +com.google.android.material.R$anim: int abc_slide_in_top +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver parent +wangdaye.com.geometricweather.R$string: int common_google_play_services_update_text +androidx.vectordrawable.animated.R$color: int notification_icon_bg_color +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: boolean setOther(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: boolean daylight +cyanogenmod.app.Profile: void setDozeMode(int) +androidx.customview.R$dimen: int notification_media_narrow_margin +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorButtonNormal +com.google.android.material.R$style: int Animation_AppCompat_Dialog +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorAccent +cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String TIMEZONE_OFFSET +com.jaredrummler.android.colorpicker.R$id: int alertTitle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableEnd +cyanogenmod.externalviews.IExternalViewProviderFactory +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginStart +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent FONT +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_4 +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: long serialVersionUID +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.functions.BiPredicate predicate +androidx.recyclerview.widget.RecyclerView: void setLayoutTransition(android.animation.LayoutTransition) +wangdaye.com.geometricweather.main.fragments.MainFragment: MainFragment() +wangdaye.com.geometricweather.R$style: int material_icon +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_gravity +androidx.lifecycle.LiveData: int mVersion +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.util.List _queryWeatherEntity_AlertEntityList(java.lang.String,java.lang.String) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.disposables.CompositeDisposable set +com.google.android.material.R$style: int Widget_Design_CollapsingToolbar +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_29 +androidx.appcompat.widget.AppCompatSpinner: void setAdapter(android.widget.Adapter) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean cancelled +com.jaredrummler.android.colorpicker.R$id: int search_src_text +androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Dialog +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status CANCELLED +androidx.preference.R$drawable: int abc_scrubber_primary_mtrl_alpha +androidx.appcompat.app.AppCompatActivity: AppCompatActivity() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: java.lang.String Unit +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean disposed +androidx.appcompat.R$attr: int switchMinWidth +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_orientation +wangdaye.com.geometricweather.R$styleable: int Constraint_android_minWidth +okhttp3.HttpUrl$Builder: void push(java.lang.String,int,int,boolean,boolean) +wangdaye.com.geometricweather.R$drawable: int abc_spinner_mtrl_am_alpha +wangdaye.com.geometricweather.R$style: int Preference_Category_Material +androidx.lifecycle.SavedStateViewModelFactory: java.lang.reflect.Constructor findMatchingConstructor(java.lang.Class,java.lang.Class[]) +wangdaye.com.geometricweather.R$attr: int radioButtonStyle +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean done +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPm10(java.lang.Float) +cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.IAppSuggestManager getService() +okhttp3.MultipartBody$Part: okhttp3.Headers headers +com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$styleable: int[] AppCompatTheme +wangdaye.com.geometricweather.R$drawable: int widget_card_light_0 +wangdaye.com.geometricweather.R$string: int feedback_location_permissions_title +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +com.google.android.material.R$styleable: int AppCompatTheme_windowMinWidthMinor +wangdaye.com.geometricweather.db.entities.DaoSession: void clear() +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizePresetSizes +androidx.constraintlayout.widget.R$attr: int searchHintIcon +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: io.reactivex.disposables.Disposable timer +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: AccuDailyResult$DailyForecasts$RealFeelTemperature() +wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat +okio.ForwardingSource: void close() +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_HOME_LONG_PRESS_ACTION +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Button +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: int getValue() +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String RINGTONE +wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity +androidx.dynamicanimation.R$dimen: int notification_small_icon_size_as_large +androidx.constraintlayout.widget.R$id: int position +com.jaredrummler.android.colorpicker.R$color: int tooltip_background_light +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_title_baseline_to_top +com.google.android.material.R$id: int action_mode_close_button +androidx.appcompat.R$dimen: int abc_text_size_body_2_material +com.turingtechnologies.materialscrollbar.R$styleable: int View_paddingStart +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_16dp +androidx.preference.R$string: int abc_action_bar_up_description +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_horizontal_edge_offset +com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusTopEnd() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setLocationKey(java.lang.String) +okhttp3.logging.HttpLoggingInterceptor$Logger$1: HttpLoggingInterceptor$Logger$1() +com.google.android.material.R$styleable: int CustomAttribute_attributeName +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getLogo() +com.google.android.material.R$color: int dim_foreground_disabled_material_dark +androidx.customview.R$id: int tag_unhandled_key_listeners +androidx.appcompat.R$attr: int popupWindowStyle +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle +android.didikee.donate.R$string: int abc_activity_chooser_view_see_all +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setMinuteInterval(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: int UnitType +com.google.android.material.R$style: int Theme_AppCompat_DayNight_DarkActionBar +wangdaye.com.geometricweather.R$layout: int preference_information_material +com.jaredrummler.android.colorpicker.R$color: int ripple_material_light +com.bumptech.glide.module.LibraryGlideModule: LibraryGlideModule() +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onDetach() +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_pressed +androidx.constraintlayout.widget.R$dimen: int abc_text_size_button_material +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: java.lang.String timezone +com.google.android.material.R$id: int fade +androidx.preference.R$styleable: int FontFamilyFont_font +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +android.didikee.donate.R$styleable: int TextAppearance_textLocale +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void collapseNotificationPanel() +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginEnd +wangdaye.com.geometricweather.R$style: int Platform_Widget_AppCompat_Spinner +androidx.constraintlayout.widget.R$drawable: int abc_btn_default_mtrl_shape +androidx.recyclerview.R$dimen: int notification_subtext_size +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_minHeight +wangdaye.com.geometricweather.R$styleable: int AlertDialog_singleChoiceItemLayout +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.AlertEntity) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeRealFeelShaderTemperature() +androidx.lifecycle.LifecycleService: void onDestroy() +com.google.android.material.R$drawable: int abc_textfield_search_material +androidx.constraintlayout.widget.R$id: int linear +com.jaredrummler.android.colorpicker.R$attr: int actionModeCloseDrawable +androidx.preference.R$id: int tag_accessibility_pane_title +androidx.dynamicanimation.R$dimen: int notification_large_icon_width +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onKeyguardDismissed() +james.adaptiveicon.R$attr: int autoSizeMinTextSize +cyanogenmod.power.IPerformanceManager$Stub$Proxy: IPerformanceManager$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_hovered_alpha +androidx.lifecycle.Transformations$2: androidx.lifecycle.MediatorLiveData val$result +androidx.constraintlayout.widget.R$attr: int multiChoiceItemLayout +com.google.android.material.R$styleable: int ConstraintSet_motionProgress +com.google.android.material.R$drawable: int abc_seekbar_thumb_material +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_Switch +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_font +com.amap.api.fence.DistrictItem: void setCitycode(java.lang.String) +com.google.android.material.R$attr: int tickColorInactive +androidx.coordinatorlayout.R$dimen: int notification_subtext_size +androidx.hilt.lifecycle.R$id: int action_container +org.greenrobot.greendao.AbstractDao: void update(java.lang.Object) +androidx.viewpager2.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.R$string: int sunrise_sunset +com.google.android.material.R$dimen: int abc_text_size_button_material +androidx.hilt.lifecycle.R$id: int info +androidx.appcompat.view.menu.ExpandedMenuView: ExpandedMenuView(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$attr: int circleRadius +com.amap.api.fence.PoiItem$1: java.lang.Object[] newArray(int) +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_registerThermalListener +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: double Value +com.google.android.material.R$styleable: int TextInputLayout_boxCollapsedPaddingTop +androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber +wangdaye.com.geometricweather.R$dimen: int cpv_default_thickness +wangdaye.com.geometricweather.R$dimen: int abc_text_size_large_material +cyanogenmod.providers.CMSettings$System: java.lang.String ASSIST_WAKE_SCREEN +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setPrefixString(java.lang.String) +wangdaye.com.geometricweather.R$color: int mtrl_textinput_focused_box_stroke_color +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_defaultQueryHint +okhttp3.internal.http2.Http2Stream: boolean $assertionsDisabled +org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.database.Database getDatabase() +androidx.activity.R$id: int action_container +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_margin +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_textOff +com.jaredrummler.android.colorpicker.R$dimen: int abc_seekbar_track_progress_height_material +com.turingtechnologies.materialscrollbar.R$id: int lastElement +androidx.constraintlayout.widget.R$id: int notification_background +com.turingtechnologies.materialscrollbar.R$id: int scrollable +wangdaye.com.geometricweather.R$id: int source +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWeatherText() +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityStarted(android.app.Activity) +com.google.android.material.tabs.TabLayout: void setOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) +james.adaptiveicon.R$styleable: int[] PopupWindowBackgroundState +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPasswordVisibilityToggleContentDescription() +com.turingtechnologies.materialscrollbar.R$style: int Platform_AppCompat +com.turingtechnologies.materialscrollbar.MaterialScrollBar +wangdaye.com.geometricweather.R$style: int Widget_Compat_NotificationActionText +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY +androidx.fragment.R$id: int visible_removing_fragment_view_tag +androidx.appcompat.R$color: int highlighted_text_material_light +androidx.hilt.R$id: int blocking +com.google.android.material.R$attr: int checkedButton +androidx.lifecycle.ReportFragment$ActivityInitializationListener +james.adaptiveicon.R$drawable: int abc_text_select_handle_middle_mtrl_dark +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView_Menu +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onTimeout(long) +androidx.constraintlayout.widget.R$attr: int itemPadding +okhttp3.Dispatcher: void finished(java.util.Deque,java.lang.Object) +androidx.hilt.R$dimen: int notification_top_pad_large_text +com.xw.repo.bubbleseekbar.R$id: int contentPanel +okhttp3.internal.http2.Http2: byte TYPE_PUSH_PROMISE +com.google.android.material.R$id: int actions +com.google.android.material.datepicker.CalendarConstraints +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void ackSettings() +androidx.preference.R$color: int abc_search_url_text_pressed +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.vectordrawable.R$id: int accessibility_custom_action_10 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_36dp +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_registerThemeProcessingListener +retrofit2.Utils: java.lang.Class getRawType(java.lang.reflect.Type) +android.didikee.donate.R$layout: int abc_popup_menu_header_item_layout +james.adaptiveicon.R$color: int material_grey_50 +wangdaye.com.geometricweather.R$styleable: int[] ProgressIndicator +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin +androidx.preference.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_88 +androidx.fragment.R$dimen: int notification_action_text_size +com.google.android.material.R$styleable: int Layout_layout_goneMarginLeft +com.amap.api.location.APSService: int b +androidx.swiperefreshlayout.R$drawable: int notification_bg_normal_pressed +com.google.gson.stream.JsonReader +wangdaye.com.geometricweather.R$attr: int cornerSizeTopRight +androidx.fragment.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer realFeelTemperature +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: double lon +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeMinTextSize +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_pivotX +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar +androidx.appcompat.R$styleable: int RecycleListView_paddingTopNoTitle +james.adaptiveicon.R$dimen: int tooltip_horizontal_padding +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_2 +com.xw.repo.bubbleseekbar.R$id: int search_bar +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_error +wangdaye.com.geometricweather.R$string: int ragweed +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetRight +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: long timeout +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial Imperial +com.turingtechnologies.materialscrollbar.R$id: int parallax +com.google.android.material.R$attr: int textStartPadding +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void dispose() +wangdaye.com.geometricweather.settings.fragments.AppearanceSettingsFragment +com.google.android.material.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +com.google.android.material.R$attr: int actionBarTabStyle +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_title +androidx.activity.R$styleable +okhttp3.RealCall: void captureCallStackTrace() +org.greenrobot.greendao.AbstractDao: void deleteInTxInternal(java.lang.Iterable,java.lang.Iterable) +com.google.android.material.R$dimen: int abc_control_inset_material +cyanogenmod.os.Build +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: CaiYunMainlyResult$CurrentBean$VisibilityBean() +androidx.vectordrawable.animated.R$id: int tag_unhandled_key_listeners +okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithoutIndexingNewName() +wangdaye.com.geometricweather.db.entities.HourlyEntity: boolean daylight +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_roundPercent +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView_DropDown +com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_top_mtrl_alpha +androidx.dynamicanimation.R$attr: int fontStyle +androidx.preference.R$color: int abc_background_cache_hint_selector_material_dark +okhttp3.internal.connection.StreamAllocation: void release() +com.bumptech.glide.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$string: int path_password_eye_mask_visible +okio.Okio: okio.Source source(java.io.InputStream) +cyanogenmod.util.ColorUtils: float[] temperatureToRGB(int) +com.google.android.material.R$attr: int windowActionBarOverlay +cyanogenmod.weather.WeatherLocation: java.lang.String getCityId() +com.jaredrummler.android.colorpicker.R$layout: int select_dialog_singlechoice_material +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog +cyanogenmod.providers.CMSettings$System: java.lang.String HIGH_TOUCH_SENSITIVITY_ENABLE +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +com.turingtechnologies.materialscrollbar.R$attr: int enforceMaterialTheme +com.xw.repo.bubbleseekbar.R$color: int accent_material_light +com.xw.repo.bubbleseekbar.R$color: int dim_foreground_material_light +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction +androidx.preference.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: int getStatus() +androidx.preference.DropDownPreference: DropDownPreference(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setRootColor(int) +wangdaye.com.geometricweather.R$styleable: int TextAppearance_textLocale +androidx.lifecycle.ComputableLiveData$2: ComputableLiveData$2(androidx.lifecycle.ComputableLiveData) +androidx.activity.R$dimen: int notification_subtext_size +androidx.core.R$id: int action_divider +wangdaye.com.geometricweather.R$attr: int summaryOn +com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_NOGPSPERMISSION +androidx.appcompat.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +james.adaptiveicon.R$style: int Widget_AppCompat_AutoCompleteTextView +androidx.swiperefreshlayout.R$attr: int fontStyle +androidx.appcompat.R$attr: int actionProviderClass +androidx.lifecycle.LifecycleRegistry: void removeObserver(androidx.lifecycle.LifecycleObserver) +wangdaye.com.geometricweather.R$attr: int flow_lastVerticalStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: AccuDailyResult$DailyForecasts$Sun() +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.Observer downstream +com.google.android.material.R$styleable: int MockView_mock_label +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_icon_size +okhttp3.Response$Builder: okhttp3.Response$Builder code(int) +com.google.android.material.R$color: int primary_dark_material_dark +wangdaye.com.geometricweather.R$id: int item_aqi_title +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_focused_holo +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: boolean completed +wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_initialExpandedChildrenCount +com.turingtechnologies.materialscrollbar.R$dimen: int abc_search_view_preferred_width +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX getBrandInfo() +com.turingtechnologies.materialscrollbar.R$styleable: int[] TextInputLayout +retrofit2.RequestBuilder: okhttp3.Headers$Builder headersBuilder +androidx.constraintlayout.widget.R$attr: int contentInsetStart +james.adaptiveicon.R$anim: int abc_fade_in +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_textAllCaps +androidx.preference.R$styleable: int Spinner_android_popupBackground +com.turingtechnologies.materialscrollbar.R$attr: int actionModeShareDrawable +androidx.hilt.R$color: int notification_icon_bg_color +android.didikee.donate.R$attr: int selectableItemBackground +wangdaye.com.geometricweather.R$attr: int expandedTitleMarginStart +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Item +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchMinWidth +io.reactivex.internal.util.VolatileSizeArrayList: java.util.ListIterator listIterator(int) +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCutDrawable +android.didikee.donate.R$styleable: int AppCompatTheme_windowActionBar +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_attributeName +okhttp3.internal.http1.Http1Codec$FixedLengthSink: Http1Codec$FixedLengthSink(okhttp3.internal.http1.Http1Codec,long) +cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weatherservice.ServiceRequest$Status mStatus +androidx.swiperefreshlayout.R$dimen: int notification_right_icon_size +androidx.core.graphics.drawable.IconCompatParcelizer: androidx.core.graphics.drawable.IconCompat read(androidx.versionedparcelable.VersionedParcel) +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_alphabeticModifiers +androidx.vectordrawable.R$layout: int notification_template_part_chronometer +com.xw.repo.bubbleseekbar.R$attr: int buttonTintMode +com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a d +com.turingtechnologies.materialscrollbar.R$styleable: int[] ScrimInsetsFrameLayout +com.google.android.material.R$style: int TextAppearance_AppCompat_Menu +androidx.hilt.R$id: int accessibility_custom_action_6 +com.baidu.location.e.n +okhttp3.FormBody: java.util.List encodedValues +androidx.viewpager.R$styleable: int GradientColor_android_centerColor +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: io.reactivex.Observer downstream +okio.BufferedSource: short readShort() +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onComplete() +cyanogenmod.profiles.BrightnessSettings: BrightnessSettings(android.os.Parcel) +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub +wangdaye.com.geometricweather.R$id: int action_appStore +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitationDuration +com.google.gson.FieldNamingPolicy$2: java.lang.String translateName(java.lang.reflect.Field) +androidx.coordinatorlayout.R$dimen: int compat_button_padding_horizontal_material +okio.AsyncTimeout$2: java.lang.String toString() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: long serialVersionUID +com.xw.repo.bubbleseekbar.R$styleable: int ActivityChooserView_initialActivityCount +com.turingtechnologies.materialscrollbar.R$attr: int windowMinWidthMajor +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_textAllCaps +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int ThunderstormProbability +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatSeekBar +androidx.appcompat.R$dimen: int tooltip_horizontal_padding +com.turingtechnologies.materialscrollbar.R$id: R$id() +com.jaredrummler.android.colorpicker.R$id: int action_divider +com.google.android.material.R$styleable: int SearchView_queryBackground wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String getY() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingStart -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemBackgroundResource(int) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean feelsLike -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.ObservableEmitter serialize() -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_0 -io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicBoolean once -retrofit2.OkHttpCall$NoContentResponseBody: okhttp3.MediaType contentType() -androidx.loader.R$drawable: R$drawable() -james.adaptiveicon.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -wangdaye.com.geometricweather.R$styleable: int Chip_iconEndPadding -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.Window access$200(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -androidx.loader.R$dimen: int compat_button_padding_horizontal_material -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTintMode -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline5 -androidx.constraintlayout.widget.R$anim: int abc_tooltip_enter -cyanogenmod.platform.R$bool: R$bool() -okio.AsyncTimeout: AsyncTimeout() -okhttp3.Cache$CacheRequestImpl$1: okhttp3.internal.cache.DiskLruCache$Editor val$editor -com.google.android.material.appbar.AppBarLayout -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_icon -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconGravity -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_elevation -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorAccent -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: boolean active -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_17 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_checkedTextViewStyle -androidx.constraintlayout.widget.R$attr: int layout_goneMarginStart -wangdaye.com.geometricweather.R$id: int widget_week_temp_5 -androidx.hilt.R$id: int accessibility_custom_action_29 -com.google.android.material.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onComplete() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.List Sources +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.String Code +com.google.android.material.button.MaterialButtonToggleGroup: void setSingleSelection(int) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupMenu +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getTreeLevel() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moldIndex +com.turingtechnologies.materialscrollbar.R$id: int spacer +wangdaye.com.geometricweather.R$drawable: int abc_btn_colored_material +androidx.constraintlayout.widget.R$attr: int preserveIconSpacing +androidx.preference.R$attr: int thumbTint +com.amap.api.fence.GeoFence: int STATUS_STAYED +com.jaredrummler.android.colorpicker.R$color: int abc_tint_seek_thumb +james.adaptiveicon.R$styleable: int MenuItem_iconTint +androidx.preference.R$styleable: int SwitchPreferenceCompat_disableDependentsState +androidx.appcompat.widget.ActionBarOverlayLayout: void setIcon(int) +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_greyIcon +com.google.android.material.R$color: int material_grey_300 +wangdaye.com.geometricweather.R$attr: int logo +com.google.android.material.R$attr: int colorSwitchThumbNormal +androidx.appcompat.R$color: int switch_thumb_material_dark +com.xw.repo.bubbleseekbar.R$id: int parentPanel +okio.RealBufferedSource: void require(long) +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: ObservableReplay$UnboundedReplayBuffer(int) +com.amap.api.location.AMapLocationClientOption: boolean isGpsFirst() +com.bumptech.glide.R$dimen +androidx.preference.R$attr: int initialActivityCount +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_normal +okhttp3.Response$Builder: okhttp3.Handshake handshake +androidx.lifecycle.ComputableLiveData: java.util.concurrent.Executor mExecutor +com.amap.api.location.AMapLocationClientOption: void writeToParcel(android.os.Parcel,int) +cyanogenmod.hardware.IThermalListenerCallback$Stub: IThermalListenerCallback$Stub() +com.google.android.material.R$id: int transition_position +com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Indeterminate +com.google.gson.stream.JsonReader: void endArray() +androidx.cardview.R$color: R$color() +androidx.preference.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +okhttp3.HttpUrl: java.lang.String PASSWORD_ENCODE_SET +okhttp3.internal.http1.Http1Codec +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: IExternalViewProviderFactory$Stub() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListMenuView +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +com.jaredrummler.android.colorpicker.R$dimen: int compat_notification_large_icon_max_width +androidx.constraintlayout.widget.R$attr: int paddingBottomNoButtons +okhttp3.internal.http2.Http2Codec: java.lang.String TE +androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy KEEP +androidx.lifecycle.extensions.R$attr +androidx.recyclerview.widget.RecyclerView: void setItemAnimator(androidx.recyclerview.widget.RecyclerView$ItemAnimator) +androidx.preference.R$dimen: int preference_icon_minWidth +com.amap.api.fence.PoiItem: void setAdname(java.lang.String) +okhttp3.Response: java.lang.String message +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: int UnitType +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$styleable: int Toolbar_navigationIcon +cyanogenmod.app.CMTelephonyManager: void setSubState(int,boolean) +wangdaye.com.geometricweather.R$id: int item_about_translator_subtitle +okhttp3.MultipartBody: byte[] CRLF +cyanogenmod.app.ICMStatusBarManager: void createCustomTileWithTag(java.lang.String,java.lang.String,java.lang.String,int,cyanogenmod.app.CustomTile,int[],int) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setValue(java.util.List) +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_framePosition +okhttp3.OkHttpClient: okhttp3.Dispatcher dispatcher() +com.google.android.material.R$styleable: int Constraint_android_layout_marginRight +wangdaye.com.geometricweather.R$attr: int labelStyle +wangdaye.com.geometricweather.R$animator: int search_container_in +androidx.preference.R$styleable: int SwitchPreferenceCompat_summaryOn +james.adaptiveicon.R$styleable: int TextAppearance_android_textColorHint +wangdaye.com.geometricweather.R$id: int circle +okhttp3.internal.http2.Http2Connection: long degradedPongsReceived +androidx.dynamicanimation.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$styleable: int Layout_layout_editor_absoluteX +com.turingtechnologies.materialscrollbar.R$styleable: int[] GradientColor +okhttp3.internal.cache.InternalCache: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) +wangdaye.com.geometricweather.R$drawable: int weather_rain_2 +androidx.appcompat.resources.R$id +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +io.reactivex.Observable: io.reactivex.Observable cacheWithInitialCapacity(int) +androidx.activity.R$layout: int notification_action +com.jaredrummler.android.colorpicker.R$style: int Preference_CheckBoxPreference_Material +okhttp3.CertificatePinner: okio.ByteString sha256(java.security.cert.X509Certificate) +android.didikee.donate.R$style: int Theme_AppCompat_CompactMenu +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean done +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_barColor +cyanogenmod.externalviews.ExternalView: void performAction(java.lang.Runnable) +cyanogenmod.app.LiveLockScreenInfo: cyanogenmod.app.LiveLockScreenInfo clone() +cyanogenmod.providers.CMSettings$1: boolean validate(java.lang.String) +io.reactivex.Observable: io.reactivex.Observable interval(long,java.util.concurrent.TimeUnit) +okhttp3.internal.Util: java.lang.String[] intersect(java.util.Comparator,java.lang.String[],java.lang.String[]) +cyanogenmod.themes.IThemeService: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange Past24HourRange +androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentHeight +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State CANCELLED +androidx.work.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$styleable: int[] ScrollingViewBehavior_Layout +com.google.android.material.R$drawable: int abc_ic_star_black_48dp +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogCornerRadius +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarStyle +androidx.activity.R$id: int accessibility_custom_action_25 +okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot nextSnapshot +com.turingtechnologies.materialscrollbar.R$attr: int actionModePopupWindowStyle +androidx.work.R$styleable: int GradientColor_android_startY +com.google.android.material.R$style: int Base_V23_Theme_AppCompat_Light +androidx.preference.R$dimen: int abc_control_inset_material +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeIndex +okhttp3.OkHttpClient$Builder: boolean retryOnConnectionFailure +com.google.android.material.R$styleable: int FloatingActionButton_borderWidth +okhttp3.internal.connection.RealConnection: void cancel() +androidx.constraintlayout.widget.R$dimen: int abc_search_view_preferred_height +androidx.appcompat.app.ToolbarActionBar +androidx.appcompat.widget.AppCompatRatingBar +okhttp3.internal.ws.RealWebSocket: boolean pong(okio.ByteString) +james.adaptiveicon.R$style: int Widget_AppCompat_SeekBar +androidx.appcompat.R$attr: int fontWeight +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State[] values() +com.google.android.material.slider.RangeSlider: int getTrackHeight() +wangdaye.com.geometricweather.R$attr: int minSeparation +androidx.appcompat.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +okhttp3.internal.connection.StreamAllocation: java.net.Socket deallocate(boolean,boolean,boolean) +io.reactivex.Observable: io.reactivex.Observable distinct() +androidx.activity.R$id: int accessibility_custom_action_22 +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State INITIALIZED +com.bumptech.glide.integration.okhttp.R$id: int tag_unhandled_key_event_manager +androidx.viewpager.widget.ViewPager: void setPageMarginDrawable(android.graphics.drawable.Drawable) +androidx.swiperefreshlayout.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit +androidx.hilt.lifecycle.R$id: int tag_unhandled_key_listeners +com.jaredrummler.android.colorpicker.R$color: int background_floating_material_dark +com.xw.repo.bubbleseekbar.R$attr: int subtitle +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.util.AtomicThrowable errors +com.google.android.material.R$color: int material_timepicker_button_background +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +okhttp3.internal.Util: java.nio.charset.Charset UTF_16_LE +cyanogenmod.app.ILiveLockScreenManager$Stub: ILiveLockScreenManager$Stub() +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_showTitle +androidx.drawerlayout.R$style +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int DISMISSED_STATE +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_primary_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_hideMotionSpec +wangdaye.com.geometricweather.R$array: int week_widget_style_values +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,boolean) +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_ActionBar +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_1 +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: long requested() +com.google.android.material.R$attr: int layout_goneMarginLeft +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +cyanogenmod.providers.CMSettings$System: java.lang.String NAVBAR_LEFT_IN_LANDSCAPE +io.reactivex.internal.util.EmptyComponent: void onComplete() +io.reactivex.internal.subscriptions.SubscriptionArbiter: void produced(long) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingTop +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric() +androidx.appcompat.widget.FitWindowsLinearLayout: FitWindowsLinearLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) +androidx.customview.R$integer +androidx.preference.R$style: int PreferenceFragment +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onError(java.lang.Throwable) +android.didikee.donate.R$attr: int titleMargins +androidx.preference.R$dimen: int disabled_alpha_material_light +io.reactivex.subjects.PublishSubject$PublishDisposable: io.reactivex.Observer downstream +james.adaptiveicon.R$dimen: int abc_text_size_medium_material +androidx.preference.R$color: int dim_foreground_material_dark +com.turingtechnologies.materialscrollbar.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$style: int Theme_Design_NoActionBar +com.xw.repo.bubbleseekbar.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: java.lang.String textConsequence +james.adaptiveicon.R$attr: int paddingBottomNoButtons +com.google.android.material.R$dimen: int mtrl_slider_thumb_elevation +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.core.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +io.reactivex.internal.util.NotificationLite: java.lang.Object getValue(java.lang.Object) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle +com.google.android.gms.auth.api.signin.GoogleSignInOptions +wangdaye.com.geometricweather.R$layout: int abc_action_mode_close_item_material +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: double lon +androidx.drawerlayout.R$styleable: int[] FontFamilyFont +androidx.fragment.app.FragmentState: android.os.Parcelable$Creator CREATOR +okhttp3.internal.ws.RealWebSocket: java.lang.String receivedCloseReason +androidx.appcompat.R$layout: int abc_alert_dialog_title_material +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_altSrc +com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipBackgroundColor() +james.adaptiveicon.R$attr: int windowActionModeOverlay +okhttp3.internal.http.RealInterceptorChain: okhttp3.Call call() +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: kotlin.coroutines.Continuation $continuation +com.google.android.material.R$styleable: int FontFamilyFont_ttcIndex +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level HEADERS +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: void dispose() +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startColor +com.google.android.material.R$id: int BOTTOM_END +wangdaye.com.geometricweather.R$attr: int curveFit +androidx.appcompat.widget.DialogTitle +wangdaye.com.geometricweather.background.service.TileService +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$drawable: int abc_control_background_material +androidx.work.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$attr: int layout_constraintTop_toTopOf +okhttp3.internal.cache.DiskLruCache: void delete() +com.amap.api.fence.PoiItem: java.lang.String getCity() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: KeyguardExternalViewProviderService$Provider$ProviderImpl$6(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +com.turingtechnologies.materialscrollbar.R$attr: int itemSpacing +com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_icon +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabStyle +androidx.work.R$color: R$color() +com.amap.api.location.CoordinateConverter: com.amap.api.location.DPoint convert() +com.google.android.material.R$color: int material_on_surface_emphasis_high_type +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel +cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getActiveProfile() +android.support.v4.app.INotificationSideChannel$Stub: INotificationSideChannel$Stub() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4 +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_corner_radius +androidx.appcompat.R$style +io.reactivex.internal.observers.LambdaObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog +androidx.constraintlayout.widget.R$string: int abc_menu_meta_shortcut_label +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setWeekText(java.lang.String) +com.google.android.material.R$id: int accessibility_custom_action_14 +androidx.vectordrawable.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$color: int material_slider_halo_color +com.google.android.material.R$id: int action_bar_title +androidx.preference.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +wangdaye.com.geometricweather.R$color: int colorRoot_dark +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onComplete() +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog +com.xw.repo.bubbleseekbar.R$id: int forever +androidx.constraintlayout.widget.R$bool: int abc_config_actionMenuItemAllCaps +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMenuItemView +com.google.android.material.datepicker.DateValidatorPointBackward +okio.SegmentPool: void recycle(okio.Segment) +okhttp3.internal.cache2.Relay$RelaySource: okio.Timeout timeout +okhttp3.Cache$Entry: Cache$Entry(okio.Source) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_25 +androidx.lifecycle.ComputableLiveData$3 +wangdaye.com.geometricweather.R$attr: int passwordToggleEnabled +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorContentDescription +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerReceiver +wangdaye.com.geometricweather.R$dimen: int compat_button_padding_horizontal_material +okhttp3.internal.cache.CacheStrategy$Factory: int ageSeconds +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMenuView +james.adaptiveicon.R$anim: int abc_slide_out_bottom +com.google.android.material.R$dimen: int abc_text_size_display_2_material +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchTextAppearance +okhttp3.internal.Util: void checkOffsetAndCount(long,long,long) +androidx.appcompat.R$integer: int config_tooltipAnimTime +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintDimensionRatio +androidx.lifecycle.ClassesInfoCache$MethodReference +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayGammaCalibration +cyanogenmod.themes.IThemeService: void removeUpdates(cyanogenmod.themes.IThemeChangeListener) +io.reactivex.disposables.ReferenceDisposable +cyanogenmod.app.CustomTileListenerService: CustomTileListenerService() +wangdaye.com.geometricweather.R$layout: int activity_daily_trend_display_manage +wangdaye.com.geometricweather.R$transition: int search_activity_shared_return +okhttp3.internal.cache.DiskLruCache$Snapshot: void close() +androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_android_background +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_48dp +androidx.constraintlayout.widget.R$styleable: int[] AppCompatImageView +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTheme +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColorHint +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: void run() +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.DailyEntity,int) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constrainedWidth +wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_light +james.adaptiveicon.R$attr: int singleChoiceItemLayout +com.xw.repo.bubbleseekbar.R$attr: int controlBackground +wangdaye.com.geometricweather.R$id: int widget_clock_day_lunar +com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearance +androidx.hilt.R$drawable: int notification_bg_normal_pressed +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onComplete() +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.fuseable.SimplePlainQueue queue +wangdaye.com.geometricweather.R$color: int material_on_background_disabled +wangdaye.com.geometricweather.R$attr: int hideOnScroll +com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialButton +android.didikee.donate.R$attr: int textAppearancePopupMenuHeader +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_sun +com.google.android.material.R$styleable: int AppCompatTheme_controlBackground +androidx.appcompat.widget.SwitchCompat: void setChecked(boolean) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void innerComplete(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver) +androidx.hilt.R$drawable: int notify_panel_notification_icon_bg +androidx.preference.R$styleable: int MenuItem_actionLayout +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Body_Text +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String aqiText +okhttp3.internal.http2.Header: okio.ByteString TARGET_AUTHORITY +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onActionModeStarted(android.view.ActionMode) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_indicator_material +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void subscribe(io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.R$attr: int tabGravity +retrofit2.CompletableFutureCallAdapterFactory: retrofit2.CallAdapter$Factory INSTANCE +io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiFunction,io.reactivex.functions.Consumer) +androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnCreate() +androidx.lifecycle.LifecycleService: LifecycleService() +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy UPPER_CAMEL_CASE +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_measureWithLargestChild +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1 +androidx.vectordrawable.animated.R$dimen: int notification_top_pad_large_text +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void dispose() +com.turingtechnologies.materialscrollbar.R$attr: int panelBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.util.List getValue() +androidx.vectordrawable.R$drawable: int notification_bg_low +com.google.android.material.R$styleable: int ActionBar_progressBarStyle +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize +com.github.rahatarmanahmed.cpv.CircularProgressView$6 +org.greenrobot.greendao.AbstractDao: boolean detach(java.lang.Object) +androidx.lifecycle.ServiceLifecycleDispatcher: void postDispatchRunnable(androidx.lifecycle.Lifecycle$Event) +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy +androidx.viewpager2.R$id: int blocking +cyanogenmod.themes.ThemeManager: ThemeManager(android.content.Context) +com.jaredrummler.android.colorpicker.R$attr: int viewInflaterClass +cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemBitmap(android.graphics.Bitmap) +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteByKey +wangdaye.com.geometricweather.R$array: int subtitle_data_values +com.jaredrummler.android.colorpicker.R$drawable: R$drawable() +androidx.hilt.lifecycle.R$id: int notification_main_column_container +com.google.android.material.tabs.TabLayout$TabView +androidx.preference.R$color: int abc_hint_foreground_material_light +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: boolean done +com.google.android.material.R$styleable: int MotionTelltales_telltales_velocityMode +wangdaye.com.geometricweather.R$attr: int tickMark +okhttp3.RealCall: okhttp3.EventListener eventListener +android.didikee.donate.R$style: int Widget_AppCompat_Light_SearchView +james.adaptiveicon.R$drawable: int abc_btn_radio_to_on_mtrl_000 +com.google.android.material.R$string: int character_counter_overflowed_content_description +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_800 +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_maxWidth +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +androidx.appcompat.app.AlertController$RecycleListView: AlertController$RecycleListView(android.content.Context) +com.google.android.material.R$attr: int tabContentStart +cyanogenmod.platform.Manifest$permission: java.lang.String HARDWARE_ABSTRACTION_ACCESS +cyanogenmod.app.CustomTile$Builder: android.graphics.Bitmap mRemoteIcon +com.xw.repo.bubbleseekbar.R$attr: int thumbTintMode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String o3 +androidx.work.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$attr: int layout_constraintTop_creator +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +wangdaye.com.geometricweather.R$id: int ragweedValue +androidx.constraintlayout.widget.R$styleable: int RecycleListView_paddingTopNoTitle +cyanogenmod.externalviews.KeyguardExternalView$5 +com.xw.repo.bubbleseekbar.R$attr: int activityChooserViewStyle +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationX +cyanogenmod.app.BaseLiveLockManagerService$1: BaseLiveLockManagerService$1(cyanogenmod.app.BaseLiveLockManagerService) +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.Long id +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry geometry +com.google.android.material.R$styleable: int Chip_android_textSize +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: int UnitType +okio.ByteString: int lastIndexOf(byte[]) +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableEnd +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +cyanogenmod.weather.WeatherInfo: int getWindSpeedUnit() +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconTint +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String escapedAV() +com.google.android.material.R$styleable: int Layout_layout_constraintCircleAngle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: int UnitType +wangdaye.com.geometricweather.R$styleable: int Badge_verticalOffset +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionDropDownStyle +androidx.coordinatorlayout.R$id: int accessibility_custom_action_29 +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_LOCATION +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_Alert +cyanogenmod.app.ILiveLockScreenManagerProvider: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_variablePadding +androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedHeightMajor +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_holo_light +okhttp3.MediaType: java.lang.String type() +androidx.appcompat.R$styleable: int ActionBar_icon +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onScreenTurnedOn +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.util.Date getDate() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.appcompat.widget.SwitchCompat: void setThumbResource(int) +androidx.constraintlayout.helper.widget.Flow: void setHorizontalGap(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: void setValue(java.lang.String) +com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_checked_black +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_background_transition_holo_light +wangdaye.com.geometricweather.R$array +wangdaye.com.geometricweather.R$attr: int gestureInsetBottomIgnored +androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_Chip +com.google.android.material.R$color: int mtrl_chip_surface_color +com.jaredrummler.android.colorpicker.R$attr: int searchViewStyle +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Empty +com.baidu.location.e.h$b: com.baidu.location.e.h$b b +com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getIndicatorWidth() +androidx.lifecycle.MediatorLiveData: void onInactive() +com.google.android.material.R$dimen: int material_timepicker_dialog_buttons_margin_top +okio.Sink: okio.Timeout timeout() +com.google.android.material.card.MaterialCardView: void setOnCheckedChangeListener(com.google.android.material.card.MaterialCardView$OnCheckedChangeListener) +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$202(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +cyanogenmod.app.ProfileGroup: android.net.Uri getRingerOverride() +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: AtmoAuraQAResult$MultiDaysIndexs() +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getUnitId() +io.reactivex.internal.subscribers.StrictSubscriber: void onSubscribe(org.reactivestreams.Subscription) +james.adaptiveicon.R$id: int listMode +androidx.swiperefreshlayout.R$integer: int status_bar_notification_info_maxnum +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginStart +com.amap.api.fence.GeoFence: void setPendingIntent(android.app.PendingIntent) +com.turingtechnologies.materialscrollbar.R$string: int path_password_eye_mask_strike_through +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_HourlyEntityListQuery +androidx.vectordrawable.R$id: int accessibility_custom_action_30 +james.adaptiveicon.R$dimen: int notification_action_icon_size +cyanogenmod.hardware.DisplayMode$1: cyanogenmod.hardware.DisplayMode[] newArray(int) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +androidx.appcompat.widget.ActivityChooserView: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +android.didikee.donate.R$styleable: int AppCompatTheme_dropDownListViewStyle +com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_toLeftOf +wangdaye.com.geometricweather.R$attr: int onShow +com.amap.api.location.AMapLocation: int ERROR_CODE_SERVICE_FAIL +com.xw.repo.bubbleseekbar.R$attr: int tickMarkTintMode +cyanogenmod.library.R$attr +androidx.constraintlayout.motion.widget.MotionLayout: long getTransitionTimeMs() +com.jaredrummler.android.colorpicker.R$attr: int paddingBottomNoButtons +android.didikee.donate.R$attr: int seekBarStyle +cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.CustomTile getCustomTile() +cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.view.View onCreateView() +androidx.recyclerview.R$id: int actions +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: void execute() +com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat +cyanogenmod.themes.IThemeChangeListener$Stub: int TRANSACTION_onProgress_0 +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.DailyEntityDao getDailyEntityDao() +james.adaptiveicon.R$attr: int navigationContentDescription +androidx.constraintlayout.widget.R$color: int highlighted_text_material_light +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_key +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginBottom +wangdaye.com.geometricweather.R$id: int rectangles +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: java.lang.Long set +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: java.lang.Object[] latest +android.didikee.donate.R$styleable: int LinearLayoutCompat_divider +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupMenu_Overflow +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation[] values() +androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat +com.turingtechnologies.materialscrollbar.R$attr: int commitIcon +io.reactivex.internal.util.VolatileSizeArrayList: java.util.ListIterator listIterator() +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerError(java.lang.Throwable) +androidx.preference.R$styleable: int AppCompatImageView_srcCompat +androidx.appcompat.R$id: int accessibility_custom_action_0 +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: PrecipitationDuration(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +androidx.lifecycle.SavedStateHandle: java.lang.Object get(java.lang.String) +android.didikee.donate.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$string: int precipitation_rainstorm +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerComplete() +okhttp3.MultipartBody: java.lang.StringBuilder appendQuotedString(java.lang.StringBuilder,java.lang.String) +com.google.gson.internal.LinkedTreeMap: int size() +james.adaptiveicon.R$attr: int dialogTheme +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.AlertEntity,int) +com.turingtechnologies.materialscrollbar.R$dimen: int design_textinput_caption_translate_y +com.google.android.material.R$style: int Widget_AppCompat_RatingBar +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +com.jaredrummler.android.colorpicker.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Bridge +com.google.android.material.R$attr: int chipGroupStyle +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: MfWarningsResult$WarningComments$WarningTextBlocItem() +androidx.appcompat.R$style: int Base_Widget_AppCompat_Toolbar +androidx.constraintlayout.widget.R$drawable: int abc_cab_background_internal_bg +androidx.constraintlayout.widget.R$color: int abc_tint_seek_thumb +com.google.android.material.R$id: int SHOW_ALL +cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weatherservice.IWeatherProviderServiceClient mClient +androidx.appcompat.R$attr: int textLocale +james.adaptiveicon.R$id: int scrollIndicatorDown +androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabText +okio.Buffer$UnsafeCursor: okio.Buffer buffer +wangdaye.com.geometricweather.R$color: int primary_dark_material_light +com.google.android.material.R$id: int baseline +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginStart +io.reactivex.Observable: io.reactivex.Observable buffer(int,int) +androidx.activity.ComponentActivity$3 +com.google.android.material.R$id: int checkbox +wangdaye.com.geometricweather.R$string: int settings_language +james.adaptiveicon.R$styleable: int AppCompatTheme_textColorSearchUrl +com.google.android.material.R$styleable: int ProgressIndicator_trackColor +retrofit2.Utils: java.lang.String typeToString(java.lang.reflect.Type) +androidx.versionedparcelable.ParcelImpl: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int Toolbar_title +androidx.recyclerview.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +com.google.gson.LongSerializationPolicy$2: com.google.gson.JsonElement serialize(java.lang.Long) +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +android.didikee.donate.R$style: int AlertDialog_AppCompat +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetRight +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean syncFused +com.github.rahatarmanahmed.cpv.CircularProgressView$1: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_color +com.google.android.material.R$attr: int layout +androidx.constraintlayout.widget.R$attr: int titleMargins +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderCancelButton +com.google.android.material.R$id: int mtrl_calendar_selection_frame +androidx.appcompat.R$attr: int submitBackground +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_enabled +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.LocationEntityDao getLocationEntityDao() +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +androidx.work.R$styleable +androidx.customview.R$dimen +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizePresetSizes +androidx.legacy.coreutils.R$attr: int fontStyle +cyanogenmod.themes.ThemeManager$1: ThemeManager$1(cyanogenmod.themes.ThemeManager) +com.google.android.gms.common.server.converter.zaa: android.os.Parcelable$Creator CREATOR wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_alpha -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginEnd() -com.google.android.material.R$integer: int mtrl_btn_anim_delay_ms -org.greenrobot.greendao.AbstractDao: void deleteAll() -androidx.appcompat.R$styleable: int FontFamilyFont_android_font -cyanogenmod.providers.CMSettings$DelimitedListValidator: boolean mAllowEmptyList -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_ACTIVE -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColor -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mLightsMode -com.google.android.material.R$styleable: int Constraint_flow_horizontalBias -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWetBulbTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$attr: int bsb_section_text_size -wangdaye.com.geometricweather.R$styleable: int Chip_android_checkable -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onNext(java.lang.Object) -cyanogenmod.profiles.RingModeSettings: boolean isOverride() -com.google.android.material.R$color: int design_default_color_on_secondary -cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_GAMMA_CALIBRATION -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_subtitle_material_toolbar -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: int unitArrayIndex -com.google.android.material.R$styleable: int MaterialButton_iconPadding -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_queryBackground -com.turingtechnologies.materialscrollbar.R$attr: int colorError -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void remove() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_tooltipForegroundColor -androidx.lifecycle.AndroidViewModel: android.app.Application getApplication() -wangdaye.com.geometricweather.R$color: int colorTextContent -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalAlign -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -androidx.viewpager2.R$id: int accessibility_custom_action_26 -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getRagweedIndex() -wangdaye.com.geometricweather.R$attr: int preferenceFragmentListStyle -androidx.preference.R$style: int PreferenceFragmentList_Material -com.google.android.material.R$styleable: int GradientColor_android_tileMode -cyanogenmod.externalviews.KeyguardExternalView$1: void onServiceDisconnected(android.content.ComponentName) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() -com.google.android.material.R$styleable: int TextInputLayout_counterOverflowTextAppearance -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dialog -okhttp3.internal.http2.Http2Connection: void flush() -androidx.preference.R$styleable: int View_paddingEnd -com.google.android.material.R$string: int material_slider_range_end -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void cancel() -com.google.android.material.slider.Slider: void setHaloRadiusResource(int) -androidx.appcompat.R$anim: R$anim() -android.didikee.donate.R$attr: int actionModeShareDrawable -androidx.viewpager2.R$id: int accessibility_custom_action_27 -android.didikee.donate.R$drawable: int abc_ic_search_api_material -androidx.appcompat.resources.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$styleable: int CardView_cardElevation -okhttp3.internal.cache2.Relay: int sourceCount -com.google.android.material.R$id: int image -okhttp3.internal.http2.Hpack$Writer: int evictToRecoverBytes(int) -okio.RealBufferedSource: long readLong() -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_CheckedTextView -androidx.loader.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$attr: int constraintSetEnd -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String MobileLink -androidx.lifecycle.LiveDataReactiveStreams -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver -com.xw.repo.bubbleseekbar.R$attr: int numericModifiers -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_NOTIFICATIONS -wangdaye.com.geometricweather.R$drawable: int mtrl_ic_arrow_drop_down -androidx.fragment.R$id: int accessibility_custom_action_27 -okhttp3.internal.cache2.Relay: Relay(java.io.RandomAccessFile,okio.Source,long,okio.ByteString,long) -wangdaye.com.geometricweather.R$string: int feedback_refresh_ui_after_refresh -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.constraintlayout.widget.R$dimen: int tooltip_y_offset_touch -androidx.constraintlayout.widget.R$attr: int customFloatValue -io.reactivex.Observable: io.reactivex.Observable ambArray(io.reactivex.ObservableSource[]) -com.google.android.material.R$layout: int material_textinput_timepicker -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircleAngle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: int UnitType -wangdaye.com.geometricweather.R$id: int useLogo -wangdaye.com.geometricweather.R$id: int showTitle -androidx.customview.view.AbsSavedState$1 -com.google.android.material.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeApparentTemperature -com.amap.api.location.AMapLocationQualityReport: int d -io.reactivex.disposables.RunnableDisposable: void onDisposed(java.lang.Object) -okhttp3.Challenge: java.lang.String scheme() -com.google.android.gms.location.places.PlaceReport: android.os.Parcelable$Creator CREATOR -androidx.appcompat.widget.AppCompatImageView: void setImageResource(int) -com.jaredrummler.android.colorpicker.R$layout: int cpv_dialog_color_picker -wangdaye.com.geometricweather.location.services.LocationService: java.lang.String[] getPermissions() -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onSuccess(java.lang.Object) -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_2 -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(long,java.util.concurrent.TimeUnit) -com.github.rahatarmanahmed.cpv.CircularProgressView$3: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -wangdaye.com.geometricweather.R$styleable: int Constraint_android_visibility -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf -com.turingtechnologies.materialscrollbar.R$color: int material_deep_teal_200 -android.didikee.donate.R$layout: int abc_popup_menu_item_layout -wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_colored_item_tint -james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_3 -wangdaye.com.geometricweather.R$layout: int notification_action -okio.Buffer: short readShort() -io.reactivex.internal.disposables.EmptyDisposable: boolean isEmpty() -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void trySchedule() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_popupWindowStyle -androidx.appcompat.R$attr: int tooltipFrameBackground -com.amap.api.location.AMapLocation: boolean c(com.amap.api.location.AMapLocation,boolean) -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeightSmall -wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_material -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String b() -androidx.constraintlayout.widget.R$attr: int transitionEasing -androidx.drawerlayout.R$attr: int alpha -io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Action onComplete -com.amap.api.location.AMapLocation: int p -com.google.android.material.R$layout: int design_navigation_item_separator -wangdaye.com.geometricweather.settings.dialogs.AdaptiveIconDialog -wangdaye.com.geometricweather.R$styleable: int[] PopupWindow -com.jaredrummler.android.colorpicker.R$layout: int support_simple_spinner_dropdown_item -okio.Timeout: long timeoutNanos -androidx.coordinatorlayout.R$id: int action_text -com.amap.api.location.CoordUtil: void setLoadedSo(boolean) -wangdaye.com.geometricweather.R$layout: int widget_day_week_symmetry -retrofit2.ParameterHandler$Header: retrofit2.Converter valueConverter -io.reactivex.internal.queue.SpscArrayQueue: long producerLookAhead -okio.SegmentedByteString -com.google.android.material.progressindicator.ProgressIndicator: void setCircularRadius(int) -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_5_30 -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleEnabled -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_submit -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getNo2Color(android.content.Context) -com.google.android.material.R$color: int abc_primary_text_disable_only_material_light -com.google.android.material.R$color: int test_mtrl_calendar_day_selected -androidx.appcompat.R$attr: int trackTint -androidx.constraintlayout.widget.R$styleable: int ActionBar_navigationMode -com.google.android.material.R$layout: int abc_activity_chooser_view_list_item -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$402(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowMinWidthMinor -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int START -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableStart -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean isDisposed() -okhttp3.ConnectionPool: okhttp3.internal.connection.RealConnection get(okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String getWeatherSource() -okhttp3.Route -okhttp3.internal.publicsuffix.PublicSuffixDatabase: PublicSuffixDatabase() -android.didikee.donate.R$id: int notification_main_column_container -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider -cyanogenmod.externalviews.ExternalView$5: ExternalView$5(cyanogenmod.externalviews.ExternalView) -com.xw.repo.bubbleseekbar.R$dimen: int abc_button_inset_vertical_material -cyanogenmod.externalviews.KeyguardExternalView$2: boolean requestDismiss() -androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_creator -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: long serialVersionUID -okhttp3.internal.ws.WebSocketWriter: void writeMessageFrame(int,long,boolean,boolean) -wangdaye.com.geometricweather.R$styleable: int Preference_enableCopying -androidx.lifecycle.ViewModel: java.lang.Object setTagIfAbsent(java.lang.String,java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_summaryOff -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_keylines -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_showMotionSpec -com.xw.repo.BubbleSeekBar: com.xw.repo.BubbleSeekBar$OnProgressChangedListener getOnProgressChangedListener() -okio.RealBufferedSource: long readLongLe() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getAlertEntityList() -com.jaredrummler.android.colorpicker.R$layout: int abc_screen_toolbar -androidx.appcompat.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource MF +com.xw.repo.bubbleseekbar.R$attr: int dropDownListViewStyle +com.google.android.material.R$styleable: int[] ActivityChooserView +com.google.android.material.appbar.AppBarLayout: int getDownNestedPreScrollRange() +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$id: int transition_scene_layoutid_cache +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth +com.google.android.material.R$attr: int bottomSheetDialogTheme +james.adaptiveicon.R$styleable: int SearchView_submitBackground +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: ILiveLockScreenChangeListener$Stub$Proxy(android.os.IBinder) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: void setFrom(java.lang.String) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_BottomSheetDialog +androidx.core.R$layout: R$layout() +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_CompactMenu +com.amap.api.fence.GeoFence: void setRadius(float) +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_shrinkMotionSpec +okio.GzipSink: void writeFooter() +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onAttach(android.os.IBinder) +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder allEnabledCipherSuites() +androidx.transition.R$attr: int alpha +com.turingtechnologies.materialscrollbar.R$attr: int tabIconTint +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Time +androidx.transition.R$id: int icon_group +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: ObservableGroupBy$GroupByObserver(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,int,boolean) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_percent +androidx.lifecycle.SavedStateViewModelFactory: java.lang.Class[] ANDROID_VIEWMODEL_SIGNATURE +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMargins +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setZh_CN(java.lang.String) +cyanogenmod.profiles.BrightnessSettings: boolean isOverride() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.activity.R$id: int tag_accessibility_pane_title +okio.Okio: okio.Source source(java.nio.file.Path,java.nio.file.OpenOption[]) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setVisibility(java.lang.Float) +com.google.android.material.card.MaterialCardView: void setRadius(float) +androidx.transition.R$dimen +com.jaredrummler.android.colorpicker.R$attr: int listPopupWindowStyle +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int IconCode +androidx.appcompat.widget.AppCompatButton: void setSupportCompoundDrawablesTintList(android.content.res.ColorStateList) +okio.Timeout: void waitUntilNotified(java.lang.Object) +okio.Buffer$UnsafeCursor: boolean readWrite +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Light_Dialog +wangdaye.com.geometricweather.R$id: int dragUp +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int bufferSize +com.google.gson.internal.LinkedTreeMap: void removeInternal(com.google.gson.internal.LinkedTreeMap$Node,boolean) +cyanogenmod.externalviews.ExternalViewProviderService$Provider +android.didikee.donate.R$attr: int actionBarDivider +androidx.hilt.work.R$id: int tag_accessibility_pane_title +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onError(java.lang.Throwable) +com.google.android.material.R$style: int Theme_AppCompat_Empty +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.constraintlayout.utils.widget.ImageFilterView: float getRound() +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizePresetSizes +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconPadding +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalAlign +com.google.android.material.R$styleable: int FloatingActionButton_showMotionSpec +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Info +androidx.hilt.work.R$dimen: R$dimen() +cyanogenmod.externalviews.ExternalViewProperties: int getY() +james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionBarOverlay +com.google.android.gms.common.api.ApiException: ApiException(com.google.android.gms.common.api.Status) +com.xw.repo.bubbleseekbar.R$id: int search_voice_btn +com.google.android.material.bottomappbar.BottomAppBar: int getFabAnimationMode() +okhttp3.RealCall$AsyncCall: boolean $assertionsDisabled +okhttp3.internal.connection.ConnectionSpecSelector: int nextModeIndex +androidx.constraintlayout.widget.R$attr: int seekBarStyle +cyanogenmod.externalviews.ExternalViewProperties: android.view.View mDecorView +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionBar +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_toBottomOf +wangdaye.com.geometricweather.R$color: int mtrl_popupmenu_overlay_color +com.google.android.material.button.MaterialButton: void setIconResource(int) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float co +com.google.android.material.slider.Slider: Slider(android.content.Context) +androidx.constraintlayout.widget.R$attr: int selectableItemBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX) +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_exitFadeDuration +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String humidity +wangdaye.com.geometricweather.R$color: int abc_primary_text_material_dark +androidx.constraintlayout.widget.R$dimen: int tooltip_horizontal_padding +com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_enforceTextAppearance +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_1 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String date +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherText(java.lang.String) +androidx.legacy.coreutils.R$id: int time +androidx.preference.R$styleable: int DialogPreference_dialogLayout +okhttp3.FormBody: okhttp3.MediaType CONTENT_TYPE +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: int rightIndex +james.adaptiveicon.R$styleable: int Toolbar_titleTextColor +retrofit2.ParameterHandler$Field: ParameterHandler$Field(java.lang.String,retrofit2.Converter,boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsShow(boolean) +wangdaye.com.geometricweather.R$layout: int abc_action_menu_layout +com.google.android.material.button.MaterialButton: void setStrokeColorResource(int) +com.amap.api.location.AMapLocationClientOption: long c +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property AqiIndex +wangdaye.com.geometricweather.R$attr: int actionBarTabStyle +okhttp3.ConnectionPool: ConnectionPool(int,long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String getTo() +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayDetailsWidgetConfigActivity +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode Battery_Saving +okhttp3.RealCall: okhttp3.Request originalRequest +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_21 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.List getValue() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.turingtechnologies.materialscrollbar.R$attr: int navigationMode +com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_simple +wangdaye.com.geometricweather.R$drawable: int abc_ic_arrow_drop_right_black_24dp +com.turingtechnologies.materialscrollbar.R$color: int secondary_text_disabled_material_light +okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withReadTimeout(int,java.util.concurrent.TimeUnit) +androidx.constraintlayout.widget.R$integer: int config_tooltipAnimTime +wangdaye.com.geometricweather.R$style: int AndroidThemeColorAccentYellow +androidx.appcompat.R$styleable: int AppCompatTheme_spinnerStyle +okhttp3.internal.cache.CacheStrategy$Factory +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: AccuLocationResult$GeoPosition$Elevation() +com.google.android.material.R$layout: int design_bottom_navigation_item +james.adaptiveicon.R$styleable: int MenuView_android_itemBackground +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver +wangdaye.com.geometricweather.R$styleable: int SearchView_queryHint +com.google.android.material.R$attr: int appBarLayoutStyle +wangdaye.com.geometricweather.settings.activities.SettingsActivity +androidx.vectordrawable.R$id: int accessibility_custom_action_22 +cyanogenmod.weather.WeatherLocation: java.lang.String getCountryId() +com.google.android.material.R$attr: int defaultQueryHint +com.turingtechnologies.materialscrollbar.R$style: int Base_AlertDialog_AppCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum Maximum +com.turingtechnologies.materialscrollbar.R$attr: int trackTint +com.google.android.material.button.MaterialButton: void setIconPadding(int) +android.didikee.donate.R$styleable: int SwitchCompat_switchPadding +com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_end_inner_color +wangdaye.com.geometricweather.R$string: int v7_preference_on +wangdaye.com.geometricweather.R$color: int mtrl_on_primary_text_btn_text_color_selector +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getWeatherText() +androidx.swiperefreshlayout.R$id: int tag_unhandled_key_event_manager +androidx.preference.R$string: int abc_searchview_description_search +wangdaye.com.geometricweather.R$color: int cardview_shadow_end_color +okhttp3.Cookie: int hashCode() +com.google.android.material.R$layout: int test_toolbar_elevation +androidx.appcompat.R$attr: int titleMarginEnd +androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_EditText +okhttp3.internal.Util: int delimiterOffset(java.lang.String,int,int,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf +com.google.android.material.R$styleable: int[] AnimatedStateListDrawableItem +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: java.lang.String English +androidx.appcompat.R$styleable: int StateListDrawableItem_android_drawable +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_descendantFocusability +com.amap.api.location.AMapLocation: java.lang.String getLocationDetail() +com.amap.api.fence.GeoFenceManagerBase: void setActivateAction(int) +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_picker_background_inset +com.turingtechnologies.materialscrollbar.R$string: int abc_prepend_shortcut_label +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year +androidx.preference.R$color: int primary_text_disabled_material_dark +retrofit2.ParameterHandler$Path: int p +io.reactivex.Observable: io.reactivex.Observable buffer(java.util.concurrent.Callable,java.util.concurrent.Callable) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingLeft +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String NAME_EQ_PLACEHOLDER +com.google.android.material.R$color: int mtrl_chip_background_color +io.reactivex.internal.util.NotificationLite: java.lang.Object error(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.subjects.UnicastSubject window +okhttp3.ResponseBody: java.nio.charset.Charset charset() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_Overflow +androidx.constraintlayout.widget.R$attr: int switchStyle +androidx.preference.R$styleable: int SearchView_closeIcon +cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_MODES +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: java.lang.String[] population +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display4 +cyanogenmod.app.Profile$ProfileTrigger: int mType +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginEnd +androidx.preference.R$attr: int drawerArrowStyle +com.google.android.material.R$attr: int layout_constraintEnd_toEndOf +com.google.android.material.R$styleable: int Chip_chipCornerRadius +wangdaye.com.geometricweather.R$array: int clock_font_values +okio.BufferedSource: void readFully(byte[]) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.R$drawable: int ic_time +okio.BufferedSource: long readLongLe() +wangdaye.com.geometricweather.R$attr: int layout_goneMarginTop +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float co +com.baidu.location.c.d$a +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationX +androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context) +com.google.android.material.chip.Chip: float getChipMinHeight() +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState CLEARED +com.google.android.gms.common.server.response.zal +com.google.gson.FieldNamingPolicy$3: FieldNamingPolicy$3(java.lang.String,int) +com.google.android.material.R$integer: int design_tab_indicator_anim_duration_ms +com.google.android.material.R$attr: int tickMarkTint +retrofit2.Utils: java.lang.reflect.Type[] EMPTY_TYPE_ARRAY +cyanogenmod.util.ColorUtils$1: int compare(java.lang.Object,java.lang.Object) +com.google.android.material.R$id: int accessibility_custom_action_22 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: ObservableReplay$InnerDisposable(io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver,io.reactivex.Observer) +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: int bufferSize +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableTop +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setUrl(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean) +androidx.customview.R$styleable: int GradientColor_android_startColor +androidx.transition.R$dimen: int notification_top_pad +com.turingtechnologies.materialscrollbar.R$attr: int logoDescription +wangdaye.com.geometricweather.R$attr: int preferenceFragmentListStyle +james.adaptiveicon.R$attr: int contentInsetEnd +androidx.appcompat.R$styleable: int MenuView_preserveIconSpacing +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_THUNDERSTORMS +com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.String,java.lang.Throwable) +com.google.android.material.bottomappbar.BottomAppBar: int getRightInset() +androidx.lifecycle.extensions.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setStreet(java.lang.String) +com.google.android.material.button.MaterialButtonToggleGroup: int getCheckedButtonId() +androidx.preference.R$integer: int abc_config_activityShortDur +org.greenrobot.greendao.AbstractDao: void assertSinglePk() +okhttp3.logging.HttpLoggingInterceptor$Logger +com.google.android.material.R$dimen: int material_text_view_test_line_height_override +com.amap.api.location.DPoint: DPoint() +com.bumptech.glide.integration.okhttp.R$id: int right_side +com.google.android.material.R$styleable: int AppCompatTheme_actionModeCutDrawable +james.adaptiveicon.R$dimen: int tooltip_precise_anchor_threshold +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +okio.Segment: int limit +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.background.receiver.widget.WidgetDayProvider +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setBadgeDrawables(android.util.SparseArray) +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String TABLENAME +com.google.android.material.R$dimen: int design_snackbar_action_inline_max_width +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: boolean isDisposed() +androidx.dynamicanimation.R$style: int Widget_Compat_NotificationActionText +androidx.preference.R$style: int Theme_AppCompat +cyanogenmod.providers.CMSettings$3 +com.google.android.material.R$id: int search_plate cyanogenmod.externalviews.ExternalViewProperties: boolean isVisible() -wangdaye.com.geometricweather.db.entities.MinutelyEntity: long time -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_menuCategory -okio.Buffer: okio.Buffer$UnsafeCursor readUnsafe() -com.google.android.material.R$id: int scale -okio.RealBufferedSource$1: java.lang.String toString() -com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView -wangdaye.com.geometricweather.R$id: int chip -com.turingtechnologies.materialscrollbar.R$attr: int msb_rightToLeft -okio.ByteString: int indexOf(byte[],int) -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationY -okhttp3.internal.connection.RealConnection: java.lang.String toString() -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getThemePackageNameForComponent(java.lang.String) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_minHeight -com.google.android.material.R$styleable: int AppCompatTheme_windowActionBarOverlay -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_rippleColor -wangdaye.com.geometricweather.R$id: int center_horizontal -com.google.android.material.R$dimen: int tooltip_precise_anchor_extra_offset -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_popupTheme -androidx.preference.R$styleable: int FontFamilyFont_android_fontWeight -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_gradientRadius -cyanogenmod.themes.ThemeChangeRequest$1: cyanogenmod.themes.ThemeChangeRequest[] newArray(int) -androidx.appcompat.widget.AppCompatEditText: android.view.textclassifier.TextClassifier getTextClassifier() -androidx.appcompat.R$color: int abc_secondary_text_material_light -com.xw.repo.bubbleseekbar.R$style: int Platform_AppCompat -okhttp3.internal.platform.JdkWithJettyBootPlatform: okhttp3.internal.platform.Platform buildIfSupported() -androidx.constraintlayout.widget.R$attr: int duration -okhttp3.CertificatePinner: okio.ByteString sha1(java.security.cert.X509Certificate) -okhttp3.internal.http2.Http2Connection$ReaderRunnable: okhttp3.internal.http2.Http2Reader reader -android.didikee.donate.R$drawable: int abc_btn_check_to_on_mtrl_015 -wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -okio.GzipSink: boolean closed -androidx.appcompat.R$attr: int closeIcon -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -retrofit2.Utils: boolean isAnnotationPresent(java.lang.annotation.Annotation[],java.lang.Class) -io.reactivex.exceptions.CompositeException: java.lang.Throwable cause -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvLevel -androidx.hilt.R$color: int ripple_material_light -cyanogenmod.weather.WeatherLocation: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTimeStamp(long) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -james.adaptiveicon.R$id: int tabMode -androidx.constraintlayout.widget.R$styleable: int Transform_android_transformPivotX -com.google.android.material.R$drawable: int abc_ic_star_black_36dp -com.google.android.material.R$string: int abc_searchview_description_submit -androidx.coordinatorlayout.R$attr: int fontProviderCerts -com.jaredrummler.android.colorpicker.R$attr: int paddingEnd -wangdaye.com.geometricweather.R$styleable: int[] Toolbar -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_COLOR_VALIDATOR -com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_id -com.jaredrummler.android.colorpicker.R$color: int material_grey_800 -com.bumptech.glide.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean url -wangdaye.com.geometricweather.R$styleable: int[] FloatingActionButton_Behavior_Layout -androidx.vectordrawable.animated.R$attr: int fontProviderFetchTimeout -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerSuccess(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver,java.lang.Object) -androidx.vectordrawable.R$integer -com.amap.api.location.UmidtokenInfo: void setUmidtoken(android.content.Context,java.lang.String) -com.jaredrummler.android.colorpicker.R$attr: int divider -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial -androidx.work.R$style -james.adaptiveicon.R$styleable: int AppCompatSeekBar_android_thumb -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar -android.didikee.donate.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -okhttp3.Credentials: Credentials() -okio.BufferedSource: boolean exhausted() -wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_chainStyle -com.google.android.material.R$attr: int layout_constraintCircleAngle -com.google.android.material.R$dimen: int abc_list_item_padding_horizontal_material -james.adaptiveicon.R$styleable: int TextAppearance_textLocale -androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy[] values() -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: HistoryEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: CircularProgressViewAdapter() -io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicLong requested -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_scaleX -wangdaye.com.geometricweather.R$styleable: int Layout_minWidth -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundTintMode -okhttp3.ConnectionSpec$Builder: boolean supportsTlsExtensions -okhttp3.internal.http2.Http2Connection: int OKHTTP_CLIENT_WINDOW_SIZE -retrofit2.Utils: boolean equals(java.lang.reflect.Type,java.lang.reflect.Type) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void slideLockscreenIn() -com.google.android.material.tabs.TabLayout: int getTabMaxWidth() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -androidx.appcompat.R$string: int abc_capital_off -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_container -wangdaye.com.geometricweather.R$id: int moldIcon -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_disabled_material_dark -cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String getName() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionMode -com.turingtechnologies.materialscrollbar.R$color: int mtrl_text_btn_text_color_selector -com.turingtechnologies.materialscrollbar.R$attr: int controlBackground -wangdaye.com.geometricweather.R$drawable: int notif_temp_130 -com.google.android.material.R$attr: int listPreferredItemPaddingStart -com.google.android.material.R$dimen: int mtrl_chip_pressed_translation_z -wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context,android.util.AttributeSet) -androidx.preference.R$styleable: int ListPreference_android_entries -androidx.hilt.lifecycle.R$drawable: int notification_bg_low_normal -androidx.constraintlayout.widget.R$attr: int actionMenuTextAppearance -androidx.hilt.work.R$id: int accessibility_custom_action_6 -cyanogenmod.weather.WeatherInfo: int mConditionCode -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginRight -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition GeoPosition -com.google.android.material.R$attr: int tooltipForegroundColor -okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory sslSocketFactory -james.adaptiveicon.R$id: int action_bar -cyanogenmod.providers.ThemesContract$PreviewColumns: ThemesContract$PreviewColumns() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Body1 -james.adaptiveicon.R$id: int progress_circular -com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar_TextView -cyanogenmod.app.CustomTile$ListExpandedStyle -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayColorCalibration(int[]) -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isRain() -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit KPH -androidx.coordinatorlayout.R$dimen: int notification_action_text_size -com.google.android.material.R$dimen: int mtrl_calendar_year_corner -cyanogenmod.themes.IThemeService$Stub$Proxy: int getLastThemeChangeRequestType() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowMinWidthMajor -com.bumptech.glide.R$style: int Widget_Compat_NotificationActionText -com.google.android.material.R$styleable: int SwitchCompat_showText -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator -androidx.constraintlayout.widget.R$attr: int showText -wangdaye.com.geometricweather.R$color: int material_grey_300 -android.didikee.donate.R$attr: int theme -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -androidx.appcompat.widget.SearchView -james.adaptiveicon.R$drawable: int abc_tab_indicator_material -com.google.android.material.R$attr: int tickMarkTintMode -cyanogenmod.providers.CMSettings$Secure: java.lang.String ADVANCED_MODE -com.google.android.material.button.MaterialButton: void setShouldDrawSurfaceColorStroke(boolean) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetAlertEntityList() -androidx.preference.R$drawable: int abc_text_select_handle_right_mtrl_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setValue(java.util.List) -okhttp3.internal.io.FileSystem$1: boolean exists(java.io.File) -androidx.constraintlayout.widget.R$string: int abc_action_menu_overflow_description -okhttp3.Handshake: okhttp3.CipherSuite cipherSuite -com.google.android.material.R$attr: int hintAnimationEnabled -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text -androidx.appcompat.R$styleable: int AppCompatTextView_drawableTintMode -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.Lifecycle mLifecycle -androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog -cyanogenmod.app.PartnerInterface: int ZEN_MODE_OFF -com.google.android.material.R$style: int Theme_MaterialComponents_NoActionBar_Bridge -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$layout: int activity_allergen -com.jaredrummler.android.colorpicker.R$dimen: int notification_main_column_padding_top -androidx.preference.R$anim: int abc_slide_in_bottom -com.google.android.material.R$drawable -james.adaptiveicon.R$styleable: int AppCompatTheme_activityChooserViewStyle -com.jaredrummler.android.colorpicker.R$id: int add -wangdaye.com.geometricweather.db.entities.LocationEntity: void setCity(java.lang.String) -wangdaye.com.geometricweather.R$color: int colorTextTitle -com.google.android.material.R$attr: int listDividerAlertDialog -com.github.rahatarmanahmed.cpv.CircularProgressView: void setThickness(int) -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setRingtone(java.lang.String) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -com.jaredrummler.android.colorpicker.R$attr: int preferenceCategoryStyle -androidx.appcompat.R$drawable: int abc_text_select_handle_middle_mtrl_dark -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_radius_on_dragging -wangdaye.com.geometricweather.R$drawable: int material_ic_calendar_black_24dp -android.support.v4.os.IResultReceiver$Stub: android.support.v4.os.IResultReceiver asInterface(android.os.IBinder) -android.didikee.donate.R$styleable: int ActionBar_itemPadding -androidx.appcompat.R$id: int uniform -okhttp3.CacheControl: boolean isPublic() +com.google.android.material.appbar.ViewOffsetBehavior: ViewOffsetBehavior() +cyanogenmod.providers.CMSettings$Secure: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) +com.google.android.material.slider.RangeSlider: int getActiveThumbIndex() +androidx.appcompat.resources.R$drawable: int notification_tile_bg +com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_inset_vertical_material +androidx.lifecycle.extensions.R$id: int action_text +james.adaptiveicon.R$drawable: int abc_vector_test +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_pixel +android.didikee.donate.R$dimen: int highlight_alpha_material_dark +androidx.lifecycle.ProcessLifecycleOwner: void activityResumed() +wangdaye.com.geometricweather.R$color: int mtrl_fab_bg_color_selector +org.greenrobot.greendao.AbstractDao: int pkOrdinal +wangdaye.com.geometricweather.R$id: int item_aqi_progress +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_Primary +wangdaye.com.geometricweather.R$styleable: int[] LinearLayoutCompat_Layout +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionMenuTextColor +androidx.transition.R$dimen: int notification_small_icon_size_as_large +cyanogenmod.hardware.ICMHardwareService: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver this$0 +androidx.core.R$attr: int font +androidx.constraintlayout.widget.R$attr: int homeAsUpIndicator +com.google.android.material.R$dimen: int abc_seekbar_track_progress_height_material +androidx.appcompat.R$attr: int buttonTint +com.xw.repo.bubbleseekbar.R$drawable: int abc_item_background_holo_dark +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickTintList() +retrofit2.Utils: java.lang.Class declaringClassOf(java.lang.reflect.TypeVariable) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: java.lang.Throwable error +androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context,android.util.AttributeSet,int) +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endColor +okhttp3.internal.http2.Http2: java.lang.String[] FLAGS +wangdaye.com.geometricweather.R$layout: int test_action_chip +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean done +com.google.android.material.textfield.TextInputLayout: android.graphics.Typeface getTypeface() +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance +cyanogenmod.weather.WeatherInfo: double mWindDirection +okhttp3.internal.cache.DiskLruCache: void trimToSize() +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_SHOW_NONE +androidx.appcompat.widget.Toolbar: void setSubtitleTextColor(int) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontWeight +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void setFirst(io.reactivex.internal.operators.observable.ObservableReplay$Node) +com.google.android.material.R$styleable: int NavigationView_headerLayout +retrofit2.http.Body +com.google.android.gms.common.internal.zzc +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintEnabled +com.google.android.material.R$dimen: int mtrl_slider_track_side_padding +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.MediaType contentType +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode NIGHT +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: java.lang.Object index +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.fragment.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.R$styleable: int Constraint_transitionEasing +wangdaye.com.geometricweather.R$drawable: int notif_temp_48 +androidx.swiperefreshlayout.R$layout: int notification_template_part_chronometer +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec CLEARTEXT +cyanogenmod.util.ColorUtils: float[] convertRGBtoLAB(int) +androidx.vectordrawable.animated.R$attr: int fontStyle +okhttp3.internal.Util: java.net.InetAddress decodeIpv6(java.lang.String,int,int) +wangdaye.com.geometricweather.background.polling.basic.UpdateService: UpdateService() +com.google.android.material.R$style: int Base_AlertDialog_AppCompat +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeStyle +okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date expires +wangdaye.com.geometricweather.R$layout: int notification_template_custom_big +okhttp3.internal.io.FileSystem$1: okio.Source source(java.io.File) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_SearchResult_Title +android.support.v4.os.ResultReceiver: void onReceiveResult(int,android.os.Bundle) +wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendHourlyProvider: WidgetTrendHourlyProvider() +james.adaptiveicon.R$drawable: int abc_ic_go_search_api_material +wangdaye.com.geometricweather.R$id: int mtrl_internal_children_alpha_tag +wangdaye.com.geometricweather.R$drawable: int common_full_open_on_phone +okhttp3.internal.connection.RealConnection$1 +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue getOrCreateQueue() +androidx.constraintlayout.widget.R$styleable: int[] ActionMode +androidx.appcompat.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +com.google.android.material.R$attr: int dayInvalidStyle +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY_DAY +cyanogenmod.os.Concierge$ParcelInfo: Concierge$ParcelInfo(android.os.Parcel) +james.adaptiveicon.R$styleable: int MenuItem_android_numericShortcut +androidx.legacy.coreutils.R$string +androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.R$styleable: int NavigationView_shapeAppearanceOverlay +wangdaye.com.geometricweather.main.dialogs.LocationPermissionStatementDialog +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean isDisposed() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: void run() +com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetStart +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_size +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getAqi() +wangdaye.com.geometricweather.R$id: int item_details +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_animationMode +androidx.preference.R$style: int Theme_AppCompat_Dialog +com.google.android.material.R$styleable: int ImageFilterView_round +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Prefix +okhttp3.internal.http2.PushObserver$1: boolean onRequest(int,java.util.List) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao +com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_margin +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight +cyanogenmod.app.PartnerInterface: java.lang.String MODIFY_NETWORK_SETTINGS_PERMISSION +androidx.appcompat.R$drawable: int abc_textfield_search_material +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomSheet +androidx.core.R$id: int text +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void dispose() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCopyDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.lang.String Link +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean cancelled +androidx.appcompat.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +androidx.preference.R$drawable: int abc_seekbar_track_material +com.google.android.material.slider.BaseSlider: java.lang.CharSequence getAccessibilityClassName() +cyanogenmod.profiles.StreamSettings: int getValue() +wangdaye.com.geometricweather.R$attr: int tooltipForegroundColor +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitation(java.lang.Float) +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Info +com.amap.api.location.LocationManagerBase: void setLocationListener(com.amap.api.location.AMapLocationListener) +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance +retrofit2.CallAdapter +com.turingtechnologies.materialscrollbar.R$attr: int toolbarStyle +androidx.constraintlayout.widget.R$attr: int barrierDirection +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeFindDrawable +com.google.android.material.R$styleable: int[] AppCompatTextHelper +okhttp3.Cache$1 +wangdaye.com.geometricweather.R$id: int notification_big_week_5 +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_labelVisibilityMode +com.turingtechnologies.materialscrollbar.R$id: int mini +androidx.preference.R$id: int seekbar_value +wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_borderColor +okio.Okio$1: java.io.OutputStream val$out +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder expiresAt(long) +androidx.preference.R$layout: int abc_action_bar_up_container +com.google.android.material.R$attr: int itemMaxLines +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: void dispose() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableLeft +android.didikee.donate.R$style: int Platform_V25_AppCompat_Light +com.google.android.material.R$styleable: int ProgressIndicator_circularInset +wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_currentPageIndicatorColor +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconTint +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableBottomCompat +wangdaye.com.geometricweather.R$styleable: int ActionBar_elevation +androidx.preference.R$drawable: int tooltip_frame_dark +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_27 +com.google.android.material.R$styleable: int[] OnSwipe +com.google.android.material.R$styleable: int TextInputLayout_boxStrokeColor +androidx.cardview.widget.CardView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.lang.String getPubTime() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: MfForecastResult$DailyForecast$DailyTemperature() +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_popupBackground +wangdaye.com.geometricweather.R$dimen: int design_tab_text_size_2line +androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context) +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +com.google.gson.internal.LinkedTreeMap: java.lang.Object remove(java.lang.Object) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3 +androidx.appcompat.resources.R$id: int accessibility_custom_action_31 +androidx.constraintlayout.widget.R$dimen: int notification_action_icon_size +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.activity.R$dimen: int notification_right_icon_size +com.jaredrummler.android.colorpicker.R$attr: int summaryOff +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableTop +cyanogenmod.profiles.RingModeSettings$1: cyanogenmod.profiles.RingModeSettings createFromParcel(android.os.Parcel) +com.google.android.material.R$styleable: int Insets_paddingRightSystemWindowInsets +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: ObservableRetryWhen$RepeatWhenObserver(io.reactivex.Observer,io.reactivex.subjects.Subject,io.reactivex.ObservableSource) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.appcompat.R$dimen: int notification_media_narrow_margin +androidx.coordinatorlayout.R$attr: int fontWeight +com.bumptech.glide.R$dimen: int compat_control_corner_material +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: long serialVersionUID +wangdaye.com.geometricweather.R$string: int widget_trend_hourly +com.google.android.material.R$attr: int navigationIcon +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: int unitArrayIndex +okhttp3.internal.tls.OkHostnameVerifier: boolean verify(java.lang.String,javax.net.ssl.SSLSession) +androidx.hilt.lifecycle.R$drawable: int notification_bg_normal +android.support.v4.app.INotificationSideChannel$Default: void cancelAll(java.lang.String) +androidx.hilt.lifecycle.R$drawable: int notification_bg_normal_pressed +com.google.android.material.R$dimen: int design_bottom_navigation_elevation +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textColorSearchUrl +androidx.viewpager.R$attr: int fontProviderFetchTimeout +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +androidx.transition.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$layout: int item_line +wangdaye.com.geometricweather.R$attr: int constraints +james.adaptiveicon.R$styleable: int AppCompatTheme_searchViewStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_minHeight +okhttp3.internal.Util: java.util.List immutableList(java.util.List) +com.xw.repo.bubbleseekbar.R$string: int abc_capital_off +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_transitionEasing +wangdaye.com.geometricweather.background.receiver.widget.WidgetDayWeekProvider: WidgetDayWeekProvider() +cyanogenmod.app.Profile$TriggerType: int WIFI +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean addProfile(cyanogenmod.app.Profile) +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView +cyanogenmod.providers.CMSettings$Secure: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) +androidx.preference.R$style: int Widget_AppCompat_Button_Borderless +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setBackgroundResource(int) +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,io.reactivex.Scheduler) +okio.RealBufferedSource: java.lang.String readString(java.nio.charset.Charset) +com.amap.api.fence.PoiItem: double getLongitude() +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable +androidx.appcompat.resources.R$layout: int custom_dialog +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endColor +androidx.coordinatorlayout.R$id: int accessibility_custom_action_15 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onSubscribe(org.reactivestreams.Subscription) +com.google.android.material.R$attr: int state_liftable +androidx.appcompat.R$color: int bright_foreground_material_light +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float total +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Chip +okhttp3.EventListener: void dnsEnd(okhttp3.Call,java.lang.String,java.util.List) +androidx.loader.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource CN +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox +okhttp3.internal.Internal: okhttp3.internal.connection.StreamAllocation streamAllocation(okhttp3.Call) +androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.R$drawable: int abc_seekbar_track_material +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getBackgroundDrawable() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingRight +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.chip.Chip: float getIconEndPadding() +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mPostal +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String getUnit() +cyanogenmod.app.Profile$ProfileTrigger$1: Profile$ProfileTrigger$1() +io.reactivex.Observable: io.reactivex.Observable intervalRange(long,long,long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalStyle +androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoldLevel() +androidx.customview.R$id: int line1 +okio.ByteString: boolean endsWith(okio.ByteString) +com.google.android.material.R$styleable: int NavigationView_itemBackground +com.google.android.material.slider.RangeSlider$RangeSliderState +com.amap.api.fence.PoiItem: java.lang.String e +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isMaybe +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: double Value +cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) +okhttp3.internal.http1.Http1Codec: int HEADER_LIMIT +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void setResource(io.reactivex.disposables.Disposable) +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_gradientRadius +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void dispose() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_elevation +cyanogenmod.app.BaseLiveLockManagerService$1: boolean getLiveLockScreenEnabled() +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX() +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_shapeAppearance +com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_visible +okhttp3.OkHttpClient$Builder: int callTimeout +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_Solid +androidx.drawerlayout.R$dimen: int notification_small_icon_size_as_large +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_submitBackground +wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWidgetConfigActivity +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status IDLE +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean address_detail +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: java.lang.Runnable run +androidx.appcompat.R$styleable: int TextAppearance_android_fontFamily +androidx.vectordrawable.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_android_enabled +com.turingtechnologies.materialscrollbar.R$attr: int closeIconStartPadding +okio.RealBufferedSource: boolean isOpen() +androidx.preference.R$style: int Base_Widget_AppCompat_ButtonBar +com.google.android.material.R$style: int TextAppearance_Design_Prefix +wangdaye.com.geometricweather.R$string: int mtrl_picker_navigate_to_year_description +androidx.vectordrawable.R$style: R$style() +wangdaye.com.geometricweather.R$styleable: int Preference_enabled +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int getSubTextColorResId() +io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.ObservableSource,io.reactivex.functions.Function) +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setMobileDataEnabled_1 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox +okhttp3.FormBody$Builder: java.util.List names +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String HOUR +io.reactivex.internal.schedulers.RxThreadFactory: boolean nonBlocking +com.google.android.material.R$color: int design_fab_stroke_end_outer_color +wangdaye.com.geometricweather.R$string: int key_subtitle_data +okhttp3.RealCall$1: RealCall$1(okhttp3.RealCall) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: com.google.android.material.bottomnavigation.BottomNavigationItemView getNewItem() +androidx.constraintlayout.widget.R$id: int tag_accessibility_clickable_spans +com.turingtechnologies.materialscrollbar.R$attr: int layout_collapseMode +okhttp3.internal.http2.Http2Codec: java.lang.String CONNECTION +io.reactivex.internal.functions.Functions$NaturalComparator: int compare(java.lang.Object,java.lang.Object) +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +com.jaredrummler.android.colorpicker.R$layout: int notification_action +android.support.v4.os.IResultReceiver$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarPopupTheme +wangdaye.com.geometricweather.R$color: int button_material_dark +androidx.preference.R$styleable: int AppCompatTheme_colorButtonNormal +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextView cyanogenmod.externalviews.ExternalView$2: int val$x -androidx.preference.MultiSelectListPreferenceDialogFragmentCompat: MultiSelectListPreferenceDialogFragmentCompat() -com.turingtechnologies.materialscrollbar.R$attr: int chipStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Spinner_Underlined -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner -com.google.android.material.R$styleable: int Chip_checkedIconEnabled -androidx.appcompat.widget.AppCompatImageButton: android.content.res.ColorStateList getSupportImageTintList() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int SnowProbability -retrofit2.Retrofit$Builder: java.util.List converterFactories() -android.didikee.donate.R$color: int secondary_text_default_material_dark -wangdaye.com.geometricweather.R$string: int settings_title_pressure_unit +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitationProbability() +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerComplete(io.reactivex.internal.observers.InnerQueuedObserver) +wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchAnchorId +wangdaye.com.geometricweather.R$attr: int cardBackgroundColor +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_NOTIFICATIONS +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BLUETOOTH_ACCEPT_ALL_FILES_VALIDATOR +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: float val$swipeProgress +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress +wangdaye.com.geometricweather.R$layout: int select_dialog_singlechoice_material +com.google.android.material.R$string: int abc_menu_enter_shortcut_label +wangdaye.com.geometricweather.R$attr: int transitionShapeAppearance +cyanogenmod.externalviews.KeyguardExternalView$2: boolean requestDismissAndStartActivity(android.content.Intent) +androidx.appcompat.widget.Toolbar: void setTitleTextColor(android.content.res.ColorStateList) +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton +retrofit2.RequestFactory$Builder: boolean isFormEncoded +androidx.constraintlayout.widget.R$attr: int switchTextAppearance +com.turingtechnologies.materialscrollbar.R$id: int start +wangdaye.com.geometricweather.R$id: int widget_text_temperature +androidx.preference.R$id: int unchecked +com.google.android.material.circularreveal.CircularRevealGridLayout: CircularRevealGridLayout(android.content.Context) +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: java.lang.String getProbabilityText(android.content.Context,float) +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: void onProgress(int) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonTintMode +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_editTextPreferenceStyle +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer wetBulbTemperature +wangdaye.com.geometricweather.R$id: int widget_day_icon +cyanogenmod.app.ProfileGroup: void setSoundOverride(android.net.Uri) +okhttp3.OkHttpClient: java.util.List interceptors() +cyanogenmod.externalviews.ExternalView: cyanogenmod.externalviews.IExternalViewProvider mExternalViewProvider +okhttp3.OkHttpClient: java.net.Proxy proxy() +com.jaredrummler.android.colorpicker.R$color: int background_floating_material_light +com.google.android.material.R$styleable: int OnSwipe_maxAcceleration +android.didikee.donate.R$attr: int alertDialogStyle +okhttp3.internal.platform.Android10Platform +com.xw.repo.bubbleseekbar.R$drawable: int abc_tab_indicator_material +com.google.android.material.R$attr: int alertDialogButtonGroupStyle +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabAlignmentMode +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sBooleanValidator +com.google.android.material.R$layout: int mtrl_calendar_vertical +androidx.dynamicanimation.R$drawable: int notification_bg_low +androidx.recyclerview.widget.RecyclerView: void setScrollState(int) +androidx.preference.R$attr: int switchTextOn +com.google.android.material.R$styleable: int Chip_iconEndPadding +com.jaredrummler.android.colorpicker.R$styleable: int[] CoordinatorLayout_Layout +cyanogenmod.weather.IWeatherServiceProviderChangeListener: void onWeatherServiceProviderChanged(java.lang.String) +james.adaptiveicon.R$styleable: int SwitchCompat_android_textOn +io.reactivex.internal.subscriptions.EmptySubscription +com.google.android.material.R$dimen: int mtrl_calendar_title_baseline_to_top +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder minFresh(int,java.util.concurrent.TimeUnit) +androidx.fragment.app.DialogFragment: DialogFragment() +androidx.preference.R$styleable: int ActionBar_navigationMode +wangdaye.com.geometricweather.R$dimen: int little_weather_icon_container_size +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int pm10 +com.google.android.gms.internal.common.zzq: com.google.android.gms.internal.common.zzo zza +wangdaye.com.geometricweather.R$drawable: int flag_ru +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric() +org.greenrobot.greendao.AbstractDaoMaster: int getSchemaVersion() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSo2() +com.turingtechnologies.materialscrollbar.R$attr: int behavior_skipCollapsed +com.google.android.material.slider.RangeSlider: int getLabelBehavior() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +okio.RealBufferedSource +okhttp3.internal.publicsuffix.PublicSuffixDatabase: PublicSuffixDatabase() +james.adaptiveicon.R$drawable: int abc_list_divider_mtrl_alpha +androidx.constraintlayout.motion.widget.MotionLayout: void setTransition(androidx.constraintlayout.motion.widget.MotionScene$Transition) +cyanogenmod.externalviews.KeyguardExternalView: void access$300(cyanogenmod.externalviews.KeyguardExternalView) +wangdaye.com.geometricweather.R$color: int darkPrimary_3 +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getCurrentLiveLockScreen +android.didikee.donate.R$attr: int titleTextStyle +androidx.customview.R$id: int notification_background +androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: int UnitType +com.google.android.material.R$drawable: int abc_text_cursor_material +retrofit2.SkipCallbackExecutorImpl: java.lang.Class annotationType() +android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +com.google.android.material.R$styleable: int NavigationView_android_maxWidth +cyanogenmod.hardware.ThermalListenerCallback: ThermalListenerCallback() +wangdaye.com.geometricweather.R$dimen: int disabled_alpha_material_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX() +androidx.appcompat.R$styleable: int SwitchCompat_switchTextAppearance +com.google.android.material.R$attr: int drawableTint +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroupForPackage +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_xml +io.reactivex.internal.schedulers.ScheduledRunnable: long serialVersionUID +androidx.work.NetworkType: androidx.work.NetworkType CONNECTED +androidx.viewpager2.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$style: int Animation_AppCompat_Dialog +james.adaptiveicon.R$styleable: int FontFamily_fontProviderFetchTimeout +com.bumptech.glide.R$id: int icon_group +com.jaredrummler.android.colorpicker.R$attr: int thumbTint +wangdaye.com.geometricweather.common.basic.models.weather.Weather: boolean isValid(float) +com.xw.repo.bubbleseekbar.R$styleable: int[] TextAppearance +com.google.android.material.R$styleable: int KeyPosition_framePosition +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: int getStatus() +wangdaye.com.geometricweather.R$attr: int preferenceCategoryStyle +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display2 +androidx.lifecycle.ReportFragment: void dispatchStart(androidx.lifecycle.ReportFragment$ActivityInitializationListener) +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_tooltipText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX getAqi() +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setEnabled(boolean) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_controlBackground +com.google.android.material.R$attr: int layout_constraintEnd_toStartOf +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getHourlyForecast() +okhttp3.MediaType: okhttp3.MediaType parse(java.lang.String) +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.internal.disposables.SequentialDisposable upstream +androidx.appcompat.resources.R$color +androidx.constraintlayout.widget.R$id: int action_bar_root +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_MD5 +james.adaptiveicon.R$dimen: int abc_disabled_alpha_material_light +androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$attr: int cornerSizeBottomLeft +androidx.preference.R$styleable: int MenuView_android_itemIconDisabledAlpha +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String value +okhttp3.internal.cache.DiskLruCache$Entry: java.lang.String key +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemIconTint +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerError(java.lang.Throwable) +androidx.hilt.R$dimen: int notification_right_side_padding_top +androidx.fragment.R$layout: int custom_dialog +wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullResourceIdException: ResourceUtils$NullResourceIdException() +cyanogenmod.app.IProfileManager: boolean isEnabled() +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec codec +androidx.constraintlayout.widget.R$id: int center +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void dispose() +androidx.preference.R$styleable: int MenuGroup_android_menuCategory +cyanogenmod.app.CMContextConstants: java.lang.String CM_HARDWARE_SERVICE +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState SUCCESS +cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl mImpl +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver +okio.BufferedSource: okio.ByteString readByteString() +io.reactivex.disposables.ReferenceDisposable: boolean isDisposed() +wangdaye.com.geometricweather.R$id: int action_menu_presenter +retrofit2.Platform$Android$MainThreadExecutor: void execute(java.lang.Runnable) com.xw.repo.bubbleseekbar.R$drawable: int abc_list_divider_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalAlign -cyanogenmod.externalviews.KeyguardExternalView$3: void run() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void cancel() -okhttp3.internal.platform.OptionalMethod: java.lang.Class[] methodParams -androidx.constraintlayout.widget.R$color: int abc_secondary_text_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling Ceiling -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_navigationContentDescription -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getHint() -okhttp3.Cookie: java.lang.String value -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Text -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitationDuration() -com.jaredrummler.android.colorpicker.R$id: int cpv_arrow_right -com.xw.repo.bubbleseekbar.R$attr: int buttonGravity -retrofit2.ParameterHandler$RawPart: void apply(retrofit2.RequestBuilder,okhttp3.MultipartBody$Part) -retrofit2.KotlinExtensions$await$2$2 -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -android.didikee.donate.R$styleable: int TextAppearance_fontVariationSettings -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float pm10 -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getWeek(android.content.Context) -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_1 -io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: long serialVersionUID -androidx.constraintlayout.widget.R$color: int secondary_text_default_material_light -com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_MODE_SAVING -cyanogenmod.providers.CMSettings$System: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getProfile(java.lang.String) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onLockscreenSlideOffsetChanged -io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode THUNDERSTORM -wangdaye.com.geometricweather.R$styleable: int[] EditTextPreference -android.didikee.donate.R$style: int Base_Widget_AppCompat_SearchView -androidx.vectordrawable.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_top_padding -okhttp3.OkHttpClient$Builder: int pingInterval -androidx.work.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.db.entities.DaoSession -androidx.preference.R$style: int TextAppearance_Compat_Notification_Line2 -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon -androidx.lifecycle.extensions.R$attr -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getUrl() -androidx.core.R$color: int notification_action_color_filter -james.adaptiveicon.R$drawable: int abc_ic_ab_back_material -okio.RealBufferedSink: okio.Buffer buffer -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: org.reactivestreams.Subscription upstream -com.jaredrummler.android.colorpicker.R$attr: int alpha -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Colored -okhttp3.internal.http.HttpCodec: okio.Sink createRequestBody(okhttp3.Request,long) -cyanogenmod.externalviews.KeyguardExternalView$7 -james.adaptiveicon.R$dimen: int abc_text_size_subhead_material -james.adaptiveicon.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.R$id: int mtrl_motion_snapshot_view -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_divider_material -com.google.android.material.R$attr: int tabInlineLabel -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitationProbability() -androidx.viewpager.R$color: int secondary_text_default_material_light -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextBackground -com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarButtonStyle -james.adaptiveicon.R$color: int tooltip_background_dark -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function6) -wangdaye.com.geometricweather.R$attr: int boxStrokeWidthFocused -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_2 -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: boolean cancelled -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets -okhttp3.OkHttpClient: java.util.List DEFAULT_CONNECTION_SPECS -cyanogenmod.app.ProfileGroup: ProfileGroup(android.os.Parcel,cyanogenmod.app.ProfileGroup$1) -wangdaye.com.geometricweather.GeometricWeather -androidx.viewpager.R$dimen: int notification_content_margin_start -com.google.android.material.R$dimen: int abc_text_size_caption_material -wangdaye.com.geometricweather.db.entities.DaoMaster: DaoMaster(android.database.sqlite.SQLiteDatabase) -androidx.preference.R$styleable: int[] DialogPreference -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setFillColor(int) -androidx.appcompat.R$drawable: int abc_list_selector_holo_dark -wangdaye.com.geometricweather.R$styleable: int Badge_badgeGravity -retrofit2.Retrofit$Builder: java.util.List callAdapterFactories -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode valueOf(java.lang.String) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingTop -android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$drawable: int notif_temp_90 -wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context) -okhttp3.ResponseBody$BomAwareReader: ResponseBody$BomAwareReader(okio.BufferedSource,java.nio.charset.Charset) -com.jaredrummler.android.colorpicker.R$id: int normal -wangdaye.com.geometricweather.R$attr: int region_heightMoreThan -androidx.preference.R$string: int search_menu_title -androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat -androidx.transition.R$style -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlHighlight -androidx.recyclerview.R$dimen: int compat_notification_large_icon_max_width -okhttp3.internal.tls.BasicTrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) -androidx.preference.R$id: int action_mode_close_button -com.google.android.material.R$id: int action_mode_bar -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroups -james.adaptiveicon.R$attr: int actionMenuTextColor -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitationProbability() -com.xw.repo.bubbleseekbar.R$id: int default_activity_button -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleTextColor -james.adaptiveicon.R$attr: int actionModeFindDrawable -androidx.appcompat.R$styleable: int Toolbar_titleMargins -androidx.constraintlayout.widget.R$id: int percent -androidx.appcompat.R$styleable: int GradientColorItem_android_offset -okhttp3.WebSocket$Factory: okhttp3.WebSocket newWebSocket(okhttp3.Request,okhttp3.WebSocketListener) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float so2 -com.jaredrummler.android.colorpicker.R$style: int Platform_V21_AppCompat_Light -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_COLOR_ENHANCE_VALIDATOR -cyanogenmod.weather.WeatherInfo$DayForecast: double mHigh -com.amap.api.location.AMapLocation: int x -io.reactivex.internal.operators.observable.ObservableGroupBy$State: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -androidx.preference.R$color: int material_grey_300 -cyanogenmod.weather.ICMWeatherManager: void updateWeather(cyanogenmod.weather.RequestInfo) -cyanogenmod.providers.CMSettings$3: CMSettings$3() -androidx.viewpager.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getDescription() -wangdaye.com.geometricweather.R$id: int textTop -androidx.constraintlayout.widget.R$attr: int touchAnchorSide -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType MAPBAR -okhttp3.Cache$2: okhttp3.Cache this$0 -com.baidu.location.g.a: a() -androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar_Small -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_MIN_INDEX -com.google.android.material.R$styleable: int[] State -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getWritableDb() -androidx.preference.R$attr: int windowFixedHeightMinor -okio.Buffer: okio.Buffer writeShort(int) -androidx.viewpager2.R$id: int accessibility_custom_action_21 -com.google.android.material.chip.Chip: Chip(android.content.Context) -wangdaye.com.geometricweather.R$color: int design_default_color_error -com.google.android.material.R$styleable: int KeyCycle_android_rotationY -wangdaye.com.geometricweather.R$styleable: int[] Preference -androidx.appcompat.widget.Toolbar: int getCurrentContentInsetStart() -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String TODAYS_HIGH_TEMPERATURE -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: AccuAqiResult() -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -james.adaptiveicon.R$styleable: int SwitchCompat_android_textOff -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_animationMode -wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -wangdaye.com.geometricweather.R$id: int grassValue -okhttp3.internal.http2.Http2Writer: void headers(boolean,int,java.util.List) -androidx.constraintlayout.utils.widget.ImageFilterButton -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundTint -com.google.android.material.R$attr: int mock_labelColor -com.google.android.material.R$id: int filled -androidx.lifecycle.AbstractSavedStateViewModelFactory -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: AccuCurrentResult$PrecipitationSummary$Past3Hours() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) -cyanogenmod.profiles.AirplaneModeSettings: int getValue() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarButtonStyle -okhttp3.RequestBody: long contentLength() -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void request(long) -androidx.hilt.R$dimen: int notification_content_margin_start -androidx.lifecycle.ComputableLiveData$2 -androidx.preference.R$styleable: int RecycleListView_paddingBottomNoButtons -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_textLocale -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: int UnitType -com.xw.repo.bubbleseekbar.R$id: int line3 -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.common.rxjava.BaseObserver: BaseObserver() -wangdaye.com.geometricweather.R$id: int container_main_pollen -com.xw.repo.bubbleseekbar.R$color: int background_floating_material_light -android.didikee.donate.R$style: int Widget_AppCompat_SearchView -com.google.android.material.R$attr: int flow_verticalAlign -androidx.lifecycle.extensions.R$anim -wangdaye.com.geometricweather.R$attr: int dialogPreferenceStyle -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UpdateDate -wangdaye.com.geometricweather.R$string: int alipay -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitation -james.adaptiveicon.R$style: int Widget_AppCompat_ListMenuView -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getDate(java.lang.String) -androidx.appcompat.widget.ActionBarContextView: int getContentHeight() -com.google.android.material.R$attr: int switchPadding -okio.BufferedSource: void require(long) -com.amap.api.location.LocationManagerBase: void disableBackgroundLocation(boolean) -com.bumptech.glide.integration.okhttp.R$styleable: int[] CoordinatorLayout -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context) -com.jaredrummler.android.colorpicker.R$dimen: int abc_disabled_alpha_material_dark -cyanogenmod.providers.CMSettings$Validator -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy -com.google.gson.FieldNamingPolicy$5: java.lang.String translateName(java.lang.reflect.Field) -cyanogenmod.app.CustomTile: int icon -com.baidu.location.e.l$b: java.lang.String h +com.google.android.material.R$animator: int mtrl_btn_state_list_anim +com.google.android.material.R$layout: int notification_template_part_time +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabTextColor +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitleTextAppearance +androidx.work.impl.WorkDatabase: WorkDatabase() +com.google.android.material.R$dimen: int abc_alert_dialog_button_bar_height +com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomSheetBehavior_Layout +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchTextAppearance +com.google.android.material.R$styleable: int KeyPosition_percentHeight +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: ChineseCityEntityDao(org.greenrobot.greendao.internal.DaoConfig) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Large +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_constantSize +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeWetBulbTemperature() +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,java.lang.String) +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed +okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_3 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_78 +wangdaye.com.geometricweather.R$attr: int useMaterialThemeColors +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: cyanogenmod.app.ThemeVersion$ComponentVersion getDeviceComponentVersion(cyanogenmod.app.ThemeComponent) +com.google.android.material.R$styleable: int SearchView_searchHintIcon +com.google.android.material.R$animator: int mtrl_btn_unelevated_state_list_anim +androidx.drawerlayout.R$attr: R$attr() +wangdaye.com.geometricweather.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void close(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver,long) +androidx.hilt.lifecycle.R$dimen: int compat_notification_large_icon_max_height +androidx.appcompat.resources.R$dimen: int notification_large_icon_width +androidx.drawerlayout.widget.DrawerLayout +com.jaredrummler.android.colorpicker.R$color: int notification_icon_bg_color +androidx.appcompat.widget.Toolbar: void setLogo(int) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_256_GCM_SHA384 +androidx.work.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.R$id: int widget_clock_day_title +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerColor +com.turingtechnologies.materialscrollbar.R$attr: int scrimVisibleHeightTrigger +androidx.viewpager2.R$id: int tag_transition_group +androidx.dynamicanimation.R$dimen: int compat_notification_large_icon_max_height +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ProgressBar +okhttp3.internal.http2.Http2Writer: int maxDataLength() +com.google.android.gms.dynamite.DynamiteModule$DynamiteLoaderClassLoader: DynamiteModule$DynamiteLoaderClassLoader() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listDividerAlertDialog +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_scaleX +androidx.appcompat.R$styleable: int MenuItem_android_id +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float totalPrecipitation +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedUsername(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int autoSizeMaxTextSize +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display4 +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_icon_size +cyanogenmod.externalviews.ExternalView: boolean onPreDraw() +android.didikee.donate.R$id: int tabMode +androidx.recyclerview.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: AccuCurrentResult$WindChillTemperature$Imperial() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintAnimationEnabled +okhttp3.RequestBody$3 +com.google.android.material.R$styleable: int KeyAttribute_android_scaleY +wangdaye.com.geometricweather.R$styleable: int Toolbar_maxButtonHeight +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarWidgetTheme +cyanogenmod.providers.CMSettings$CMSettingNotFoundException: CMSettings$CMSettingNotFoundException(java.lang.String) +io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier valueOf(java.lang.String) +wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundDialog: RunningInBackgroundDialog() +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.lang.Throwable error +com.google.android.material.R$color: int mtrl_btn_bg_color_selector +okhttp3.internal.cache2.Relay: void writeHeader(okio.ByteString,long,long) +androidx.coordinatorlayout.R$drawable: int notification_bg_low_pressed +androidx.appcompat.R$id: int progress_circular +com.amap.api.location.AMapLocationClientOption$2: int[] a +wangdaye.com.geometricweather.R$id: int item_details_title +androidx.constraintlayout.widget.R$color: int button_material_dark +cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_WEATHER_MANAGER +wangdaye.com.geometricweather.R$id: int image +wangdaye.com.geometricweather.R$id: int experience +androidx.appcompat.R$id: int chronometer +androidx.preference.R$dimen: int abc_text_size_display_1_material +io.reactivex.Observable: io.reactivex.Observable concatArrayDelayError(io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position +androidx.transition.R$style: int Widget_Compat_NotificationActionContainer +retrofit2.ParameterHandler$Part: int p +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean getHumidity() +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_19 +androidx.preference.R$attr: int fontFamily +james.adaptiveicon.R$styleable: int AppCompatTheme_windowNoTitle +okhttp3.internal.ws.RealWebSocket: boolean close(int,java.lang.String,long) +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property FormattedId +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_MinWidth +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onComplete() +cyanogenmod.weather.WeatherInfo$DayForecast$1 +com.jaredrummler.android.colorpicker.R$anim: int abc_tooltip_enter +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.identityscope.IdentityScopeLong identityScopeLong +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.R$attr: int textAppearanceListItemSmall +wangdaye.com.geometricweather.R$string: int resident_location +com.jaredrummler.android.colorpicker.R$color: int abc_btn_colored_text_material +com.jaredrummler.android.colorpicker.R$dimen: int abc_panel_menu_list_width +com.google.android.material.R$color: int cardview_dark_background +wangdaye.com.geometricweather.R$drawable: int tooltip_frame_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setPubTime(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_switchStyle +wangdaye.com.geometricweather.R$drawable: int shortcuts_cloudy +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_elevation +androidx.preference.R$style: int TextAppearance_AppCompat_Small_Inverse +okio.BufferedSource: java.lang.String readUtf8(long) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.R$id: int widget_week_temp +james.adaptiveicon.R$attr: int dropDownListViewStyle +androidx.hilt.work.R$id: int notification_main_column +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_indeterminateProgressStyle +androidx.appcompat.widget.ActionBarOverlayLayout: ActionBarOverlayLayout(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_maxWidth +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: AccuCurrentResult$WetBulbTemperature() +com.google.android.material.R$id: int material_clock_period_am_button +cyanogenmod.externalviews.ExternalView$2: android.graphics.Rect val$clipRect +cyanogenmod.weatherservice.ServiceRequestResult$1 +com.jaredrummler.android.colorpicker.R$attr: int theme +androidx.loader.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.core.R$styleable: int FontFamily_fontProviderFetchTimeout +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_18 +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) +okio.Timeout: boolean hasDeadline() +com.turingtechnologies.materialscrollbar.R$attr: int tabMaxWidth +wangdaye.com.geometricweather.R$id: int sin +com.google.gson.internal.LazilyParsedNumber: int hashCode() +okhttp3.Cache$2: java.lang.String nextUrl +cyanogenmod.providers.CMSettings$Global: int getIntForUser(android.content.ContentResolver,java.lang.String,int) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_percent +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String district +com.xw.repo.bubbleseekbar.R$attr: int colorSwitchThumbNormal +androidx.preference.R$styleable: int SwitchCompat_thumbTintMode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary TemperatureSummary +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +com.google.android.material.R$drawable: int notification_template_icon_bg +androidx.recyclerview.R$id: int accessibility_custom_action_16 +cyanogenmod.externalviews.KeyguardExternalView$11: float val$swipeProgress +androidx.coordinatorlayout.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language valueOf(java.lang.String) +james.adaptiveicon.R$styleable: int AppCompatTextView_textLocale +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_count +wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_tailColor +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.Class clientProviderClass +androidx.appcompat.R$attr: int logo +androidx.preference.R$styleable: int SwitchCompat_switchPadding +cyanogenmod.externalviews.ExternalView$5 +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.google.android.material.R$styleable: int KeyTimeCycle_motionTarget +wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_progress +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableItem_android_drawable +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: androidx.lifecycle.LifecycleRegistry mRegistry +androidx.core.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.R$attr: R$attr() +androidx.activity.R$styleable: int GradientColor_android_gradientRadius +androidx.dynamicanimation.R$id: int line1 +android.didikee.donate.R$id: int none +com.google.android.material.R$styleable: int Constraint_android_scaleX +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperText +wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_next_black_24dp +com.xw.repo.bubbleseekbar.R$string: int abc_activitychooserview_choose_application +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean delayError +james.adaptiveicon.R$string: int abc_capital_off +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX +io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable INSTANCE +wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_list +androidx.preference.R$style: int Base_Widget_AppCompat_SeekBar +androidx.preference.R$color: int material_blue_grey_950 +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: CaiYunMainlyResult$YesterdayBean() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupWindow +com.xw.repo.bubbleseekbar.R$id: int notification_background +androidx.constraintlayout.widget.R$layout: int abc_activity_chooser_view_list_item +com.jaredrummler.android.colorpicker.R$attr: int layout_behavior +retrofit2.Retrofit$1: retrofit2.Platform platform io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean timerRunning -wangdaye.com.geometricweather.R$drawable: int btn_radio_off_mtrl -androidx.vectordrawable.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragThreshold -com.google.android.material.internal.VisibilityAwareImageButton -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyle -androidx.lifecycle.extensions.R$styleable: int Fragment_android_tag -retrofit2.Platform: retrofit2.Platform PLATFORM -wangdaye.com.geometricweather.R$attr: int drawableTintMode -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_OFF -wangdaye.com.geometricweather.R$attr: int yearStyle -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: org.reactivestreams.Subscriber mSubscriber -wangdaye.com.geometricweather.R$id: int disableHome -com.loc.k: java.lang.String a() -com.bumptech.glide.R$id: int notification_main_column_container -com.jaredrummler.android.colorpicker.R$attr: int arrowHeadLength -androidx.preference.R$styleable: R$styleable() -androidx.vectordrawable.animated.R$attr: int font -com.jaredrummler.android.colorpicker.R$attr: int key -androidx.hilt.lifecycle.R$styleable: int Fragment_android_tag -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintDimensionRatio -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: double Value -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource CAIYUN -retrofit2.Utils: java.lang.reflect.Type resolveTypeVariable(java.lang.reflect.Type,java.lang.Class,java.lang.reflect.TypeVariable) -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_36dp -cyanogenmod.app.CMContextConstants: java.lang.String CM_WEATHER_SERVICE -com.google.android.material.R$styleable: int ChipGroup_singleLine -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: android.os.IBinder mRemote -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_DarkActionBar -androidx.constraintlayout.widget.R$attr: int layout_constraintBaseline_creator -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean getLiveLockScreenEnabled() -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_thumb -com.google.android.material.R$dimen: int mtrl_calendar_day_today_stroke -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable -androidx.viewpager.R$styleable: int FontFamily_fontProviderQuery -androidx.constraintlayout.widget.R$dimen: int hint_alpha_material_dark -androidx.preference.R$layout: int abc_list_menu_item_radio -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void dispose() -com.google.android.material.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.R$dimen: int notification_large_icon_height -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onError(java.lang.Throwable) -androidx.fragment.R$styleable: int[] FontFamilyFont -com.amap.api.fence.GeoFenceListener -androidx.transition.R$dimen: int notification_small_icon_background_padding -com.google.android.material.R$styleable: int Tooltip_android_minWidth -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar_Small -android.didikee.donate.R$styleable: int Toolbar_logoDescription -com.google.android.material.R$attr: int iconifiedByDefault -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmTp1 -androidx.activity.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerSuccess(java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_android_color -androidx.constraintlayout.widget.R$color: int abc_tint_spinner -okhttp3.OkHttpClient: okhttp3.Dispatcher dispatcher -james.adaptiveicon.R$style: int Widget_AppCompat_ButtonBar -wangdaye.com.geometricweather.R$string: int aqi_5 -androidx.viewpager2.widget.ViewPager2: java.lang.CharSequence getAccessibilityClassName() -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -com.google.android.material.R$styleable: int Constraint_android_rotationY -androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentY -android.didikee.donate.R$styleable: int AppCompatTextView_drawableTint -cyanogenmod.weather.WeatherInfo$Builder: java.util.List mForecastList -wangdaye.com.geometricweather.R$styleable: int MenuView_android_headerBackground -com.jaredrummler.android.colorpicker.R$id: int search_button -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_fontFamily -androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$drawable: int abc_btn_default_mtrl_shape -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ch -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceTheme -androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_percent -com.google.android.material.R$styleable: int MaterialCalendarItem_itemStrokeWidth -james.adaptiveicon.R$dimen: int abc_button_padding_horizontal_material -android.didikee.donate.R$attr: int colorControlActivated -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date riseDate -androidx.lifecycle.Lifecycling: boolean isLifecycleParent(java.lang.Class) -androidx.hilt.lifecycle.R$styleable: int[] Fragment -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.util.Date DateTime -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -com.xw.repo.bubbleseekbar.R$attr: int actionModeSplitBackground -com.google.android.material.R$style: int Base_Widget_AppCompat_TextView -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_menu -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_entries -com.google.android.material.textfield.TextInputLayout: com.google.android.material.internal.CheckableImageButton getEndIconView() -wangdaye.com.geometricweather.R$array: int duration_units -okio.Buffer -com.xw.repo.bubbleseekbar.R$color: int ripple_material_light -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) -io.reactivex.internal.observers.ForEachWhileObserver -androidx.constraintlayout.utils.widget.ImageFilterView -androidx.appcompat.resources.R$style -wangdaye.com.geometricweather.R$string: int key_card_alpha -io.reactivex.Observable: io.reactivex.Single isEmpty() -okhttp3.Cache: okhttp3.Response get(okhttp3.Request) -com.google.android.material.R$styleable: int ImageFilterView_roundPercent -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_only_end_selected -android.didikee.donate.R$string: int abc_shareactionprovider_share_with_application -androidx.appcompat.resources.R$style: R$style() -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_left_mtrl_dark -androidx.lifecycle.extensions.R$id: int fragment_container_view_tag -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX) -okhttp3.Response$Builder: okhttp3.Response$Builder protocol(okhttp3.Protocol) -com.turingtechnologies.materialscrollbar.R$attr: int maxButtonHeight -androidx.appcompat.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -wangdaye.com.geometricweather.R$array: int notification_styles -androidx.customview.R$id: int time -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$302(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$drawable: int abc_ratingbar_indicator_material -com.google.android.material.transformation.FabTransformationBehavior: FabTransformationBehavior(android.content.Context,android.util.AttributeSet) -com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_FALLBACK_SCSV -james.adaptiveicon.R$anim: int abc_slide_out_bottom -okhttp3.internal.http2.Huffman: Huffman() -androidx.lifecycle.extensions.R$integer -wangdaye.com.geometricweather.R$attr: int navigationIcon -androidx.appcompat.resources.R$id: int notification_main_column_container -androidx.preference.R$style: int Widget_AppCompat_Spinner_Underlined -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_behavior -com.google.android.material.button.MaterialButton: int getCornerRadius() -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_arrowHeadLength -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -androidx.constraintlayout.widget.R$id: int SHOW_PROGRESS -com.google.android.material.R$id: int split_action_bar -androidx.fragment.R$styleable: R$styleable() -androidx.appcompat.R$attr: int textAppearanceSmallPopupMenu -com.amap.api.location.AMapLocation: int LOCATION_TYPE_FIX_CACHE -wangdaye.com.geometricweather.weather.apis.MfWeatherApi -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -okhttp3.Request: java.lang.String method -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String getUnit() -james.adaptiveicon.R$attr: int actionModeSplitBackground -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemTextAppearance -com.google.android.material.R$attr: int fontProviderFetchTimeout -cyanogenmod.media.MediaRecorder -wangdaye.com.geometricweather.R$attr: int cornerFamilyBottomLeft -com.google.android.material.R$style: int Base_V21_Theme_AppCompat -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getTranslateY() -wangdaye.com.geometricweather.R$attr: int number -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: java.lang.Object mLatest -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed -com.google.android.material.textfield.TextInputLayout: void setEndIconContentDescription(java.lang.CharSequence) -androidx.transition.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity: ClockDayWeekWidgetConfigActivity() -wangdaye.com.geometricweather.R$id: int all -com.google.android.material.R$attr: int flow_lastHorizontalBias -androidx.preference.R$styleable: int MultiSelectListPreference_android_entryValues -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowNoTitle -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar_Small -okio.Segment: okio.Segment push(okio.Segment) -androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -retrofit2.Platform: java.lang.reflect.Constructor lookupConstructor -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_requestThemeChange -androidx.preference.R$styleable: int AppCompatTextView_drawableLeftCompat -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: boolean cancelled -cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weatherservice.ServiceRequest$Status mStatus -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_Solid -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -androidx.vectordrawable.animated.R$color: int ripple_material_light -com.google.android.material.R$dimen: int mtrl_high_ripple_default_alpha -com.jaredrummler.android.colorpicker.R$id: int action_context_bar -androidx.constraintlayout.widget.R$attr: int actionModeSelectAllDrawable -androidx.preference.R$integer: int abc_config_activityShortDur -wangdaye.com.geometricweather.R$attr: int waveDecay -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String content -wangdaye.com.geometricweather.R$attr: int persistent -okio.RealBufferedSource: long indexOf(byte) -android.didikee.donate.R$color: int material_grey_600 -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitationProbability(java.lang.Float) -io.reactivex.exceptions.CompositeException: void printStackTrace(java.io.PrintStream) -android.didikee.donate.R$drawable: int abc_list_selector_background_transition_holo_dark -james.adaptiveicon.R$styleable: int View_android_theme -retrofit2.http.PATCH -com.google.android.material.appbar.AppBarLayout: int getTotalScrollRange() -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_enqueueLiveLockScreen -androidx.constraintlayout.widget.R$attr: int fontProviderPackage -androidx.appcompat.R$attr: int tintMode -wangdaye.com.geometricweather.R$id: int middle -okhttp3.MultipartBody: okhttp3.MediaType contentType() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.R$string: int key_pressure_unit -com.google.android.material.R$dimen: int material_filled_edittext_font_2_0_padding_bottom -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents -androidx.appcompat.R$style: int TextAppearance_AppCompat -com.google.android.material.R$styleable: int ConstraintSet_transitionPathRotate -wangdaye.com.geometricweather.R$layout: int dialog_adaptive_icon -android.didikee.donate.R$id: int customPanel -com.xw.repo.bubbleseekbar.R$dimen: int abc_button_padding_horizontal_material -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored -androidx.viewpager.R$dimen -wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWidgetConfigActivity: Hilt_DayWidgetConfigActivity() -androidx.constraintlayout.widget.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.remoteviews.config.Hilt_TextWidgetConfigActivity: Hilt_TextWidgetConfigActivity() -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemBitmap(android.graphics.Bitmap) -okhttp3.MediaType: int hashCode() -okhttp3.internal.http2.Hpack$Writer: okhttp3.internal.http2.Header[] dynamicTable -androidx.fragment.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setDescription(java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNo2(java.lang.Float) -com.xw.repo.bubbleseekbar.R$attr: int subtitleTextColor -androidx.preference.R$styleable: int[] BackgroundStyle -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_size -com.google.android.material.R$attr: int labelStyle -cyanogenmod.app.CustomTileListenerService$1 -wangdaye.com.geometricweather.R$id: int notification_multi_city_text_1 -james.adaptiveicon.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_collapsedSize -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstVerticalBias -james.adaptiveicon.R$styleable: int ActionBar_homeLayout -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_android_maxHeight -androidx.constraintlayout.widget.R$drawable: int abc_text_cursor_material -okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method warnIfOpenMethod -androidx.loader.R$attr: int fontWeight -com.google.android.material.R$styleable: int KeyAttribute_android_rotationX -wangdaye.com.geometricweather.R$attr: int onHide -com.google.android.material.R$attr: int motionProgress -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int INSTALLED -okhttp3.internal.http2.Http2Reader: Http2Reader(okio.BufferedSource,boolean) -androidx.preference.PreferenceScreen: PreferenceScreen(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$attr: int thumbTextPadding -com.google.android.material.R$styleable: int AppCompatTheme_panelMenuListWidth -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_2 -wangdaye.com.geometricweather.R$styleable: int Transform_android_rotationX -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status[] values() -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void drain() -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_summaryOff -james.adaptiveicon.R$styleable: int MenuGroup_android_id -androidx.viewpager.widget.PagerTabStrip: PagerTabStrip(android.content.Context) -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: io.reactivex.FlowableEmitter serialize() -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSyncDuration -androidx.hilt.work.R$bool: int enable_system_alarm_service_default -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol j -retrofit2.BuiltInConverters$ToStringConverter: retrofit2.BuiltInConverters$ToStringConverter INSTANCE -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Headline -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_alphabeticShortcut -wangdaye.com.geometricweather.R$anim: int fragment_close_exit -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property O3 -james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_EditText -androidx.customview.R$id: R$id() -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int subTextColorResId -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation getWeatherLocation() -com.google.gson.stream.JsonReader: JsonReader(java.io.Reader) -cyanogenmod.providers.CMSettings$System: java.lang.String SWAP_VOLUME_KEYS_ON_ROTATION -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Button -androidx.appcompat.R$attr: int showTitle -com.xw.repo.bubbleseekbar.R$string: int abc_menu_meta_shortcut_label -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderCerts -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_DarkActionBar -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: cyanogenmod.app.ThemeVersion$ComponentVersion getDeviceComponentVersion(cyanogenmod.app.ThemeComponent) -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: java.lang.String getInterfaceDescriptor() -james.adaptiveicon.R$drawable: int abc_list_longpressed_holo -com.amap.api.location.AMapLocation: int LOCATION_TYPE_WIFI -cyanogenmod.weather.CMWeatherManager: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener) -com.turingtechnologies.materialscrollbar.R$id: int notification_main_column -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.Observer downstream -okhttp3.internal.cache.CacheInterceptor$1: okio.Timeout timeout() -android.didikee.donate.R$id: int home -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property CityId -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_overflow_padding_start_material -androidx.vectordrawable.animated.R$drawable -androidx.constraintlayout.widget.R$attr: int triggerReceiver -com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_max -com.google.android.material.datepicker.CalendarConstraints: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_icon -android.didikee.donate.R$color: int primary_dark_material_dark -okhttp3.internal.cache2.Relay: okio.ByteString metadata -okio.AsyncTimeout$1: void close() -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView_DropDown -com.google.android.material.chip.Chip: java.lang.CharSequence getChipText() -cyanogenmod.weather.WeatherInfo: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.common.ui.activities.AwakeUpdateActivity -androidx.lifecycle.Lifecycle$State: Lifecycle$State(java.lang.String,int) -com.google.android.material.R$styleable: int CardView_contentPaddingBottom -androidx.preference.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$dimen: int material_text_view_test_line_height_override -okhttp3.EventListener: okhttp3.EventListener$Factory factory(okhttp3.EventListener) -wangdaye.com.geometricweather.R$anim: int abc_slide_in_bottom -org.greenrobot.greendao.AbstractDaoMaster: java.util.Map daoConfigMap -android.didikee.donate.R$color: int bright_foreground_disabled_material_light -wangdaye.com.geometricweather.R$style: int Base_V28_Theme_AppCompat -androidx.constraintlayout.widget.R$layout: R$layout() -androidx.activity.R$attr: int alpha -com.jaredrummler.android.colorpicker.R$attr: int windowFixedWidthMajor -okhttp3.CacheControl$Builder: boolean noCache -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState MOVING -wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat_Light -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,boolean) -com.xw.repo.bubbleseekbar.R$style: int Platform_V21_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTintMode -wangdaye.com.geometricweather.R$styleable: int Chip_android_maxWidth -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +wangdaye.com.geometricweather.R$styleable: int MotionLayout_motionProgress +com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_tick_mark_material +cyanogenmod.hardware.CMHardwareManager: boolean setDisplayGammaCalibration(int,int[]) +com.google.android.material.chip.Chip: void setLayoutDirection(int) +com.google.android.material.R$attr: int layout_constraintWidth_default +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String EnglishName +com.baidu.location.indoor.mapversion.c.a$d +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_28 +cyanogenmod.providers.CMSettings$Global: boolean putInt(android.content.ContentResolver,java.lang.String,int) +wangdaye.com.geometricweather.common.ui.behaviors.InkPageIndicatorBehavior +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressViewStartOffset() +okhttp3.Cache: void flush() +android.didikee.donate.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +com.google.android.gms.dynamic.RemoteCreator$RemoteCreatorException: RemoteCreator$RemoteCreatorException(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_handleOffColor +wangdaye.com.geometricweather.R$string: int settings_title_pressure_unit +com.amap.api.fence.GeoFenceManagerBase: void addNearbyGeoFence(java.lang.String,java.lang.String,com.amap.api.location.DPoint,float,int,java.lang.String) +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: java.lang.String unitAbbreviation +com.jaredrummler.android.colorpicker.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_vertical_2lines +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_SPEED_UNIT +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position position +james.adaptiveicon.R$id: int shortcut +com.google.android.material.R$styleable: int Chip_closeIconTint +androidx.viewpager2.R$id: int chronometer +com.jaredrummler.android.colorpicker.R$attr: int cpv_showOldColor +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderTextColor +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_115 +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTx() +okhttp3.internal.http2.Http2Writer: java.util.logging.Logger logger +cyanogenmod.app.ICMTelephonyManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.R$attr: int fabSize +wangdaye.com.geometricweather.R$string: int common_google_play_services_update_title +android.didikee.donate.R$dimen: int notification_right_side_padding_top +com.turingtechnologies.materialscrollbar.R$anim: int design_bottom_sheet_slide_in +com.google.android.material.R$styleable: int BottomNavigationView_elevation +com.google.android.material.R$color: int bright_foreground_inverse_material_light +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.internal.connection.StreamAllocation streamAllocation() +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type getOwnerType() +com.google.android.material.R$style: int TestStyleWithThemeLineHeightAttribute +io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,io.reactivex.functions.Function,int) +android.didikee.donate.R$style: int Widget_AppCompat_Spinner_Underlined +com.google.android.material.R$attr: int layout_optimizationLevel +com.xw.repo.bubbleseekbar.R$id: int action_mode_bar +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getHideMotionSpec() +androidx.constraintlayout.widget.R$attr: int font +com.google.android.material.R$color: int mtrl_tabs_icon_color_selector +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedWidthMajor +cyanogenmod.app.ProfileManager: java.lang.String PROFILES_STATE_CHANGED_ACTION +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object getKey(java.lang.Object) +wangdaye.com.geometricweather.R$color: int notification_action_color_filter +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_icon +com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonTintMode +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_enter_shortcut_label +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_hide_motion_spec +wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_4_material +com.google.android.material.bottomappbar.BottomAppBar: void setFabAnimationMode(int) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_1 +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.disposables.Disposable upstream +com.google.android.material.R$attr: int queryHint +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_month_horizontal_padding +okhttp3.internal.http2.Huffman +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_visible +android.didikee.donate.R$dimen: int abc_text_size_small_material +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult +wangdaye.com.geometricweather.background.polling.work.worker.TodayForecastUpdateWorker: TodayForecastUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_pivotY +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_width +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback(retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter,java.util.concurrent.CompletableFuture) androidx.hilt.work.R$integer: R$integer() -androidx.appcompat.R$dimen: int abc_text_size_large_material -androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_inflatedId -android.didikee.donate.R$dimen: int highlight_alpha_material_dark -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind -androidx.constraintlayout.widget.R$dimen: int abc_dialog_padding_material -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onComplete() -retrofit2.ParameterHandler$RawPart: ParameterHandler$RawPart() -com.google.android.material.R$color: int design_fab_stroke_end_inner_color -wangdaye.com.geometricweather.db.entities.AlertEntity: long alertId -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onNext(java.lang.Object) -androidx.lifecycle.Transformations$2 -cyanogenmod.weather.WeatherInfo: java.util.List access$1102(cyanogenmod.weather.WeatherInfo,java.util.List) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button -com.google.android.material.R$color: int material_grey_300 -wangdaye.com.geometricweather.R$styleable: int NavigationView_android_background -com.google.android.material.R$dimen: int mtrl_badge_with_text_radius -retrofit2.HttpServiceMethod: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: ObservableTimer$TimerObserver(io.reactivex.Observer) -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_tileMode -cyanogenmod.weather.WeatherInfo$1: cyanogenmod.weather.WeatherInfo[] newArray(int) -com.google.android.material.R$attr: int boxCornerRadiusBottomStart -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: long upDateTime -com.google.android.material.R$anim: int abc_slide_in_bottom -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder eventListener(okhttp3.EventListener) -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_descendantFocusability -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircleRadius -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String description -wangdaye.com.geometricweather.R$color: int abc_hint_foreground_material_light -wangdaye.com.geometricweather.R$dimen: int design_navigation_icon_size -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose[] a -com.amap.api.location.AMapLocation: int LOCATION_TYPE_SAME_REQ -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemPaddingLeft -com.jaredrummler.android.colorpicker.R$id: int screen -com.google.android.material.R$color: int mtrl_filled_icon_tint -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer rainHazard6h -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) -androidx.work.R$drawable: int notification_template_icon_bg -com.google.android.material.R$attr: int actionModeSplitBackground -com.google.android.material.slider.Slider -wangdaye.com.geometricweather.R$attr: int textLocale -com.turingtechnologies.materialscrollbar.R$attr: int headerLayout -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_NOWIFIANDAP -androidx.appcompat.R$drawable: int abc_text_select_handle_left_mtrl_dark -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_label_padding -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: javax.inject.Provider disposableProvider -okhttp3.internal.ws.WebSocketReader: long frameLength -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator RECENTS_SHOW_SEARCH_BAR_VALIDATOR -com.google.android.material.R$attr: int contentInsetStart -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_menu -com.google.android.material.R$styleable: int Layout_layout_constraintWidth_min -com.bumptech.glide.Priority: com.bumptech.glide.Priority LOW -com.google.android.material.R$attr: int flow_maxElementsWrap -androidx.core.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.R$drawable: int ic_donate -wangdaye.com.geometricweather.R$id: int buttonPanel -okhttp3.internal.Internal: void put(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) -com.google.android.material.R$styleable: int AppCompatTheme_listPopupWindowStyle -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.functions.Function keySelector -wangdaye.com.geometricweather.R$styleable: int ScrimInsetsFrameLayout_insetForeground -okhttp3.internal.http.HttpMethod: boolean invalidatesCache(java.lang.String) -androidx.appcompat.app.WindowDecorActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense -com.turingtechnologies.materialscrollbar.Handle: void setBackgroundColor(int) -io.reactivex.Observable: io.reactivex.Observable skip(long,java.util.concurrent.TimeUnit) -android.didikee.donate.R$id: int action_menu_divider -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String saint -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderDivider -cyanogenmod.app.CMContextConstants: java.lang.String CM_HARDWARE_SERVICE -androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -androidx.hilt.R$drawable: int notification_bg -com.google.android.material.R$attr: int layout_scrollFlags -com.google.android.material.R$style: int Animation_AppCompat_DropDownUp -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.ProcessLifecycleOwner sInstance -wangdaye.com.geometricweather.R$drawable: int ic_dress -com.xw.repo.bubbleseekbar.R$color: R$color() -com.google.android.material.R$attr: int layout_constraintWidth_min -wangdaye.com.geometricweather.R$string: int key_widget_day -wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_grey -androidx.viewpager.R$color: int notification_action_color_filter -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathOffset() -androidx.appcompat.R$styleable: int MenuItem_android_enabled -androidx.fragment.R$styleable: int FontFamily_fontProviderAuthority -androidx.appcompat.R$styleable: int AppCompatTheme_android_windowAnimationStyle -androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontStyle -androidx.constraintlayout.widget.R$attr: int contentInsetEnd -com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getBackgroundTintList() -com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer altitude -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitationProbability -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItemSmall -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void clear() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_lightOnTouch -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setTranslateY(float) -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -com.jaredrummler.android.colorpicker.R$attr: int panelMenuListWidth -wangdaye.com.geometricweather.R$attr: int expandedTitleGravity -androidx.viewpager.R$dimen: int compat_control_corner_material -androidx.preference.R$attr: int titleMarginEnd -wangdaye.com.geometricweather.R$string: int forecast -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Body2 -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog -androidx.core.R$id: int accessibility_custom_action_11 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -android.didikee.donate.R$styleable: int[] ViewStubCompat -retrofit2.ParameterHandler$Header: ParameterHandler$Header(java.lang.String,retrofit2.Converter) -cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener val$listener -androidx.customview.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -cyanogenmod.providers.DataUsageContract: java.lang.String DATAUSAGE_TABLE -android.didikee.donate.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getDailyForecast() -com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage EN -com.xw.repo.bubbleseekbar.R$bool: int abc_allow_stacked_button_bar -android.didikee.donate.R$dimen: int abc_action_bar_elevation_material -wangdaye.com.geometricweather.R$styleable: int SearchView_searchHintIcon -wangdaye.com.geometricweather.R$string: int path_password_eye +com.turingtechnologies.materialscrollbar.R$dimen: int hint_alpha_material_light +androidx.lifecycle.ReflectiveGenericLifecycleObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +cyanogenmod.providers.ThemesContract$PreviewColumns +wangdaye.com.geometricweather.R$xml: int icon_provider_drawable_filter +com.xw.repo.bubbleseekbar.R$string: int abc_action_bar_up_description +okio.ByteString: int indexOf(byte[],int) +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getCardValue() +wangdaye.com.geometricweather.R$styleable: int SearchView_closeIcon +androidx.viewpager2.R$layout: int notification_template_icon_group +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setZenModeWithDuration +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_31 +androidx.preference.R$id: int accessibility_custom_action_17 +okhttp3.internal.http2.Header: Header(okio.ByteString,java.lang.String) +okhttp3.internal.cache.DiskLruCache$2: void onException(java.io.IOException) +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_HUMIDITY +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_vertical_padding +androidx.activity.R$id: int text2 +androidx.appcompat.widget.SearchView: void setOnSearchClickListener(android.view.View$OnClickListener) +okhttp3.internal.ws.RealWebSocket: int receivedCloseCode +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: IRequestInfoListener$Stub$Proxy(android.os.IBinder) +com.jaredrummler.android.colorpicker.R$drawable: int abc_dialog_material_background +androidx.coordinatorlayout.widget.CoordinatorLayout: void setOnHierarchyChangeListener(android.view.ViewGroup$OnHierarchyChangeListener) +com.google.android.material.R$styleable: int AppCompatTheme_actionDropDownStyle +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void dispose() +wangdaye.com.geometricweather.R$drawable: int ic_water_percent +cyanogenmod.externalviews.KeyguardExternalView: java.util.LinkedList mQueue +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: double Value +com.google.android.material.textfield.TextInputLayout: void setEndIconTintMode(android.graphics.PorterDuff$Mode) +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Overline +com.xw.repo.bubbleseekbar.R$attr: int buttonBarPositiveButtonStyle +androidx.preference.R$styleable: int FontFamily_fontProviderFetchStrategy +retrofit2.Platform: retrofit2.Platform PLATFORM +androidx.viewpager.R$attr: int font +android.didikee.donate.R$attr: int alertDialogButtonGroupStyle +com.bumptech.glide.integration.okhttp.R$id: int left +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchTextAppearance +okhttp3.HttpUrl: int hashCode() +androidx.preference.R$color: int abc_btn_colored_borderless_text_material +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark +androidx.appcompat.resources.R$styleable: int ColorStateListItem_alpha +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.R$styleable: int SearchView_commitIcon +androidx.viewpager.R$drawable: int notification_bg_normal_pressed +retrofit2.HttpServiceMethod: retrofit2.Converter responseConverter +wangdaye.com.geometricweather.R$id: int dialog_location_help_title +io.reactivex.Observable: io.reactivex.Observable retry(long,io.reactivex.functions.Predicate) +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleContentDescription(int) +cyanogenmod.hardware.ICMHardwareService: byte[] readPersistentBytes(java.lang.String) +com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_icon_width +wangdaye.com.geometricweather.R$attr: int swipeRefreshLayoutProgressSpinnerBackgroundColor +androidx.customview.R$drawable: int notification_template_icon_low_bg +com.xw.repo.bubbleseekbar.R$attr: int divider +cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_ADJUST_SOUNDS_ENABLED +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(long) +androidx.appcompat.resources.R$attr: int alpha +androidx.preference.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +james.adaptiveicon.R$id: int expand_activities_button +com.google.android.material.R$styleable: int Constraint_barrierDirection +androidx.preference.R$styleable: int ActivityChooserView_initialActivityCount +com.google.android.gms.base.R$styleable: int[] LoadingImageView +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTemperature(int) +com.xw.repo.bubbleseekbar.R$attr: int autoSizePresetSizes +com.google.android.material.R$styleable: int KeyAttribute_android_elevation +com.google.android.material.R$id: int autoCompleteToStart +androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackground(int) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: int IconCode +com.google.android.material.slider.BaseSlider: void setEnabled(boolean) +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] PREVAILING_RULE +com.google.android.material.R$dimen: int highlight_alpha_material_light +com.jaredrummler.android.colorpicker.R$dimen: int disabled_alpha_material_dark +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onComplete() +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context) +androidx.lifecycle.extensions.R$attr: int fontStyle +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_clipToPadding +wangdaye.com.geometricweather.R$attr: int spinnerStyle +androidx.recyclerview.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_medium_component +androidx.lifecycle.extensions.R$dimen: int notification_right_icon_size +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Time +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Snackbar_FullWidth +androidx.appcompat.R$attr: int queryHint +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +androidx.hilt.work.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitationDuration() +android.didikee.donate.R$styleable: int Spinner_popupTheme +androidx.constraintlayout.widget.R$layout +cyanogenmod.platform.Manifest$permission: java.lang.String MANAGE_ALARMS +androidx.appcompat.R$styleable: int SearchView_goIcon +com.amap.api.location.AMapLocationClientOption: boolean OPEN_ALWAYS_SCAN_WIFI +androidx.preference.R$dimen: int abc_control_padding_material +okhttp3.Dispatcher: int runningCallsForHost(okhttp3.RealCall$AsyncCall) +android.didikee.donate.R$dimen: int abc_disabled_alpha_material_dark +androidx.appcompat.R$color: int button_material_light +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_barLength +androidx.vectordrawable.R$styleable: int GradientColor_android_tileMode +androidx.lifecycle.ComputableLiveData: androidx.lifecycle.LiveData mLiveData +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: android.graphics.Path getRetreatingJoinPath() +com.turingtechnologies.materialscrollbar.R$attr: int fabSize +com.jaredrummler.android.colorpicker.R$attr: int key +androidx.lifecycle.extensions.R$attr: int fontProviderPackage +com.jaredrummler.android.colorpicker.R$attr: int preferenceInformationStyle +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_dither +androidx.core.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.appcompat.R$styleable: int ActionMode_background +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +android.didikee.donate.R$attr: int titleMarginTop +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthFocusedResource(int) +androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$attr: int arrowHeadLength +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitationDuration(java.lang.Float) +wangdaye.com.geometricweather.R$drawable: int abc_spinner_textfield_background_material +androidx.transition.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_tint +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionBarLayout +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type NONE +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource LocalSource +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar +io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicReference upstream +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int PrecipitationProbability +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void disposeBoundary() +okhttp3.internal.http2.Http2Connection$7: Http2Connection$7(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okhttp3.internal.http2.ErrorCode) +com.google.android.material.slider.BaseSlider +wangdaye.com.geometricweather.R$styleable: int MotionHelper_onHide +cyanogenmod.externalviews.ExternalView$7: cyanogenmod.externalviews.ExternalView this$0 +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int BLUSTERY +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation precipitation +androidx.appcompat.view.menu.StandardMenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +androidx.core.R$id: int blocking +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setAddress_detail(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean) +wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconVisible +com.google.android.material.button.MaterialButton: void setChecked(boolean) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActivityChooserView +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display1 +com.google.android.material.R$attr: int thumbRadius wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX getDirection() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlActivated -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: java.util.concurrent.atomic.AtomicReference upstream -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean unbounded -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode NO_ERROR -com.jaredrummler.android.colorpicker.R$id: int transparency_text -androidx.appcompat.R$string: int abc_menu_sym_shortcut_label -wangdaye.com.geometricweather.R$dimen: int abc_dialog_corner_radius_material -cyanogenmod.app.ThemeVersion$ComponentVersion: java.lang.String name -androidx.legacy.coreutils.R$dimen: int notification_content_margin_start -cyanogenmod.app.Profile$ProfileTrigger: int describeContents() -okhttp3.internal.tls.OkHostnameVerifier: boolean verifyHostname(java.lang.String,java.security.cert.X509Certificate) -androidx.viewpager.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$string: int feedback_location_list_cannot_be_null +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_0 +james.adaptiveicon.R$style: int Theme_AppCompat_NoActionBar +okhttp3.internal.http1.Http1Codec$ChunkedSink: void write(okio.Buffer,long) +wangdaye.com.geometricweather.R$attr: int buttonPanelSideLayout +androidx.appcompat.R$attr: int colorAccent +wangdaye.com.geometricweather.R$string: int daytime +com.xw.repo.bubbleseekbar.R$id: int tabMode +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindSpeed(java.lang.Float) +com.google.android.material.navigation.NavigationView: android.view.MenuItem getCheckedItem() +com.bumptech.glide.R$integer: int status_bar_notification_info_maxnum +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_verticalDivider +com.amap.api.location.AMapLocation: java.lang.String q +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setOverlay(java.lang.String) +androidx.preference.R$style: int Theme_AppCompat_Dialog_MinWidth +com.amap.api.location.AMapLocation: void setSatellites(int) +cyanogenmod.app.CustomTile$ExpandedGridItem +wangdaye.com.geometricweather.R$attr: int backgroundOverlayColorAlpha +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: MfHistoryResult$Position() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Line2 +com.google.android.material.R$attr: int spinnerStyle +androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +okio.Okio$3 +androidx.lifecycle.DefaultLifecycleObserver: void onResume(androidx.lifecycle.LifecycleOwner) +okhttp3.Call$Factory +androidx.preference.R$styleable: int CompoundButton_android_button +cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay day() +com.turingtechnologies.materialscrollbar.R$attr: int tabPadding +androidx.appcompat.widget.AppCompatRadioButton: void setSupportButtonTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: int getMinuteInterval() +androidx.preference.R$style: int Widget_AppCompat_ListMenuView +androidx.preference.R$attr: int panelBackground +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_maxHeight +com.google.android.material.R$attr: int contentPaddingTop okio.ByteString: okio.ByteString hmacSha512(okio.ByteString) -androidx.customview.R$id: int line3 -androidx.preference.R$attr: int tooltipText -wangdaye.com.geometricweather.R$drawable: int notif_temp_57 -retrofit2.ParameterHandler$PartMap: void apply(retrofit2.RequestBuilder,java.lang.Object) -androidx.preference.ListPreferenceDialogFragmentCompat -androidx.loader.R$styleable: int FontFamily_fontProviderPackage -james.adaptiveicon.R$styleable: int[] Spinner -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getHourlyForecast() -com.google.android.material.transformation.TransformationChildLayout: TransformationChildLayout(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$drawable: int abc_tab_indicator_material -okhttp3.logging.HttpLoggingInterceptor$Logger$1: HttpLoggingInterceptor$Logger$1() -retrofit2.ParameterHandler$Part: java.lang.reflect.Method method -cyanogenmod.providers.CMSettings$Secure: int getInt(android.content.ContentResolver,java.lang.String,int) -androidx.preference.R$id: int right_icon -androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context) -okhttp3.internal.http1.Http1Codec: okio.Source newChunkedSource(okhttp3.HttpUrl) -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -okhttp3.Cookie: okhttp3.Cookie parse(long,okhttp3.HttpUrl,java.lang.String) -androidx.preference.R$styleable: int AppCompatTheme_colorControlActivated -okhttp3.internal.http2.ConnectionShutdownException -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context) -wangdaye.com.geometricweather.R$attr: int itemTextAppearanceInactive -com.google.android.material.R$color: int material_deep_teal_200 -androidx.preference.R$attr: int listPreferredItemHeightLarge -androidx.lifecycle.ReportFragment: void onStart() -androidx.recyclerview.widget.GridLayoutManager -com.google.android.material.R$drawable: int abc_textfield_search_material -androidx.lifecycle.extensions.R$string -androidx.appcompat.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -androidx.preference.R$attr: int actionModeBackground -androidx.work.R$id: int accessibility_custom_action_14 -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableRight -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SYSTEM_PROFILES_ENABLED_VALIDATOR -com.google.android.material.chip.ChipGroup: void setChipSpacingResource(int) -io.reactivex.internal.observers.BlockingObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$style: int Base_AlertDialog_AppCompat -com.turingtechnologies.materialscrollbar.R$attr: int windowActionBarOverlay -wangdaye.com.geometricweather.R$attr: int minTouchTargetSize -android.didikee.donate.R$drawable: int notification_bg_low -james.adaptiveicon.R$id: int radio -james.adaptiveicon.R$style: int Theme_AppCompat -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarPopupTheme -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher -wangdaye.com.geometricweather.R$color: int bright_foreground_material_dark -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_background_transition_holo_light -androidx.fragment.R$dimen: int notification_action_icon_size -androidx.vectordrawable.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$styleable: int Slider_android_valueFrom -androidx.activity.R$id: int accessibility_custom_action_13 -io.reactivex.internal.subscriptions.EmptySubscription: boolean offer(java.lang.Object) -androidx.vectordrawable.R$id: int accessibility_custom_action_1 -androidx.recyclerview.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitation -android.didikee.donate.R$layout: int abc_search_view -com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat -com.google.android.material.snackbar.BaseTransientBottomBar$Behavior -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawableItem_android_drawable -androidx.appcompat.widget.AbsActionBarView: AbsActionBarView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric Metric -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: int UnitType -androidx.lifecycle.Lifecycle$State: boolean isAtLeast(androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_3 -wangdaye.com.geometricweather.R$attr: int layout_insetEdge -androidx.vectordrawable.animated.R$id: int info -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceVoice(android.content.Context) -okhttp3.Headers$Builder: okhttp3.Headers$Builder set(java.lang.String,java.lang.String) -com.google.android.material.appbar.CollapsingToolbarLayout: void setTitleEnabled(boolean) -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource CN -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.preference.R$id: int action_text -okhttp3.Cache$CacheRequestImpl: okio.Sink body() -cyanogenmod.profiles.ConnectionSettings: java.lang.String EXTRA_NETWORK_MODE -wangdaye.com.geometricweather.R$layout: int widget_clock_day_symmetry -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_pivotAnchor -cyanogenmod.providers.CMSettings$System: float getFloat(android.content.ContentResolver,java.lang.String,float) -androidx.preference.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontContainer -wangdaye.com.geometricweather.common.basic.models.weather.Daily: Daily(java.util.Date,long,wangdaye.com.geometricweather.common.basic.models.weather.HalfDay,wangdaye.com.geometricweather.common.basic.models.weather.HalfDay,wangdaye.com.geometricweather.common.basic.models.weather.Astro,wangdaye.com.geometricweather.common.basic.models.weather.Astro,wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase,wangdaye.com.geometricweather.common.basic.models.weather.AirQuality,wangdaye.com.geometricweather.common.basic.models.weather.Pollen,wangdaye.com.geometricweather.common.basic.models.weather.UV,float) -com.google.android.material.R$drawable: int abc_vector_test -cyanogenmod.externalviews.KeyguardExternalView$3: KeyguardExternalView$3(cyanogenmod.externalviews.KeyguardExternalView,int,int,int,int,boolean,android.graphics.Rect) -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_Alert -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_2G3G -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_chip_state_list_anim -wangdaye.com.geometricweather.R$styleable: int[] KeyTrigger -com.google.gson.stream.JsonReader: int PEEKED_UNQUOTED_NAME -org.greenrobot.greendao.AbstractDao: java.util.List queryRaw(java.lang.String,java.lang.String[]) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitation -okio.ForwardingSink: ForwardingSink(okio.Sink) -androidx.appcompat.R$attr: int gapBetweenBars -cyanogenmod.providers.CMSettings$Global: java.lang.String getString(android.content.ContentResolver,java.lang.String) -androidx.constraintlayout.widget.R$attr: int actionDropDownStyle -wangdaye.com.geometricweather.R$attr: int showAsAction -wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_EditTextPreference_Material -androidx.fragment.R$drawable: int notification_bg_low_normal -com.xw.repo.bubbleseekbar.R$color: int abc_tint_edittext -okio.Pipe$PipeSource: okio.Pipe this$0 -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_homeAsUpIndicator -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixText -com.google.android.material.R$styleable: int MotionLayout_applyMotionScene -james.adaptiveicon.R$id: int scrollIndicatorUp -retrofit2.KotlinExtensions: java.lang.Object suspendAndThrow(java.lang.Exception,kotlin.coroutines.Continuation) -com.amap.api.location.AMapLocationQualityReport: boolean b -retrofit2.http.PUT: java.lang.String value() -androidx.hilt.work.R$id: int accessibility_custom_action_19 -com.amap.api.location.AMapLocation: java.lang.String h -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetLeft -james.adaptiveicon.R$attr: int iconTintMode -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabTextAppearance -retrofit2.BuiltInConverters$BufferingResponseBodyConverter: BuiltInConverters$BufferingResponseBodyConverter() -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: LifecycleDispatcher$DispatcherActivityCallback() -wangdaye.com.geometricweather.R$styleable: int[] ConstraintLayout_Layout -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_visible -com.amap.api.location.DPoint: DPoint() -okhttp3.internal.ws.RealWebSocket: okhttp3.Request request() -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_toId -com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyleSmall -com.google.android.material.R$color: int mtrl_btn_stroke_color_selector -wangdaye.com.geometricweather.R$color: int primary_text_default_material_light -cyanogenmod.profiles.StreamSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.appcompat.R$styleable: int[] LinearLayoutCompat_Layout -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_dither -androidx.hilt.R$id: int notification_background -okio.AsyncTimeout$2: okio.Timeout timeout() -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: long period -com.google.android.material.R$attr: int layout_constraintTop_toTopOf -androidx.lifecycle.ReportFragment: void dispatchCreate(androidx.lifecycle.ReportFragment$ActivityInitializationListener) -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onAnimationReset() -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_fontFamily -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_material_dark -wangdaye.com.geometricweather.R$styleable: int[] ActionBar -wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity: TextWidgetConfigActivity() -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_action_text_color_alpha -okhttp3.internal.io.FileSystem$1: FileSystem$1() -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status valueOf(java.lang.String) -cyanogenmod.providers.CMSettings$System: java.lang.String ZEN_PRIORITY_ALLOW_LIGHTS -wangdaye.com.geometricweather.R$attr: int liftOnScroll -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_36dp -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: AccuCurrentResult$Wind() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: long dt -androidx.appcompat.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentHeight -androidx.appcompat.resources.R$dimen: int notification_small_icon_size_as_large -okhttp3.internal.io.FileSystem$1 -com.jaredrummler.android.colorpicker.R$style: int Base_V28_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$attr: int endIconTint -androidx.appcompat.widget.ActionMenuView: void setExpandedActionViewsExclusive(boolean) -cyanogenmod.app.Profile: int getProfileType() -androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String LanguageCode -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_blackContainer -androidx.lifecycle.LiveData$AlwaysActiveObserver: boolean shouldBeActive() -androidx.fragment.R$color -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_summaryOn -androidx.hilt.work.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$drawable: int notif_temp_115 -james.adaptiveicon.R$attr: int actionModeShareDrawable -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog -androidx.appcompat.R$id: int edit_query -com.xw.repo.bubbleseekbar.R$integer: int config_tooltipAnimTime -wangdaye.com.geometricweather.R$drawable: int notif_temp_6 -retrofit2.OptionalConverterFactory$OptionalConverter: retrofit2.Converter delegate -com.google.android.material.appbar.HeaderScrollingViewBehavior: HeaderScrollingViewBehavior() -okhttp3.internal.http2.Http2Codec: void cancel() -okhttp3.internal.http2.Http2Stream$FramingSink -com.google.android.material.slider.BaseSlider: void removeOnChangeListener(com.google.android.material.slider.BaseOnChangeListener) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalStyle -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderFetchStrategy -com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_android_popupAnimationStyle -wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_appearance -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert -androidx.preference.R$styleable: int[] RecycleListView -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerComplete() -wangdaye.com.geometricweather.R$dimen: int tooltip_corner_radius -androidx.core.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -com.google.android.material.R$dimen: int mtrl_btn_text_btn_padding_right -androidx.recyclerview.R$id: int icon_group -okhttp3.MediaType -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dark -wangdaye.com.geometricweather.R$style: int Preference_DropDown_Material -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_26 -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRainPrecipitationProbability(java.lang.Float) -androidx.constraintlayout.widget.R$styleable: int SearchView_defaultQueryHint -androidx.appcompat.widget.ActionMenuView: android.view.Menu getMenu() -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -wangdaye.com.geometricweather.R$dimen: int material_clock_display_padding -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy -wangdaye.com.geometricweather.R$id: int material_timepicker_mode_button -androidx.recyclerview.R$styleable: int[] FontFamily -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_scaleY -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onStop() -com.jaredrummler.android.colorpicker.R$id: int scrollIndicatorUp -com.bumptech.glide.load.engine.GlideException: void setLoggingDetails(com.bumptech.glide.load.Key,com.bumptech.glide.load.DataSource) -cyanogenmod.weather.WeatherLocation: java.lang.String getState() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_content_inset_with_nav -androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyle -wangdaye.com.geometricweather.R$styleable: int Preference_defaultValue -okhttp3.internal.platform.AndroidPlatform$CloseGuard: boolean warnIfOpen(java.lang.Object) -cyanogenmod.externalviews.KeyguardExternalView$3: android.graphics.Rect val$clipRect -james.adaptiveicon.R$color: int material_blue_grey_800 -com.amap.api.location.AMapLocationClient: AMapLocationClient(android.content.Context) -io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable valueOf(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setMinuteInterval(int) -androidx.core.R$dimen: R$dimen() -android.didikee.donate.R$styleable: int DrawerArrowToggle_drawableSize -androidx.preference.R$layout: int abc_activity_chooser_view_list_item -wangdaye.com.geometricweather.R$style: int Preference_Information_Material -androidx.recyclerview.R$id: int async -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial() -cyanogenmod.app.CMStatusBarManager: void removeTileAsUser(java.lang.String,int,android.os.UserHandle) -com.google.android.material.bottomappbar.BottomAppBar -androidx.preference.R$attr: int iconTintMode -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Id -wangdaye.com.geometricweather.R$attr: int windowFixedWidthMajor -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitationDuration -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize -okhttp3.Cookie$Builder: java.lang.String name -okio.Buffer: okio.ByteString digest(java.lang.String) -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_top -wangdaye.com.geometricweather.R$drawable: int weather_hail_3 -androidx.appcompat.resources.R$styleable: int[] GradientColorItem -androidx.viewpager2.R$id: int accessibility_custom_action_5 -com.google.android.material.R$color: int design_dark_default_color_background -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_strokeColor -androidx.hilt.lifecycle.R$anim -james.adaptiveicon.R$styleable: int ActionBar_subtitleTextStyle -com.google.android.material.R$styleable: int ConstraintSet_animate_relativeTo -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -okhttp3.internal.http1.Http1Codec: int HEADER_LIMIT -com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnwd -android.didikee.donate.R$styleable: int AppCompatTheme_toolbarStyle -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Call clone() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: long dt -okhttp3.HttpUrl: java.util.List encodedPathSegments() -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Daylight -wangdaye.com.geometricweather.R$attr: int listMenuViewStyle -io.reactivex.internal.operators.observable.ObservableGroupBy$State -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -okhttp3.internal.http2.Http2Connection$4: void execute() -android.didikee.donate.R$id: int parentPanel -androidx.constraintlayout.widget.R$styleable: int Transition_transitionFlags -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_2 -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit INHG -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_switchStyle -android.didikee.donate.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -androidx.appcompat.R$style: int ThemeOverlay_AppCompat -io.reactivex.Observable: io.reactivex.Observable switchMapMaybeDelayError(io.reactivex.functions.Function) -com.google.android.material.R$style: int Base_Widget_MaterialComponents_Chip -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String VIBRATE -okhttp3.MultipartBody$Builder: okhttp3.MediaType type -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSearchResultSubtitle -com.jaredrummler.android.colorpicker.R$id: int transparency_layout -com.google.android.material.card.MaterialCardView: void setCheckedIconSizeResource(int) -androidx.coordinatorlayout.R$id: int none -okhttp3.internal.http2.Hpack$Writer: int SETTINGS_HEADER_TABLE_SIZE -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView getTrendItemView() -androidx.appcompat.R$attr: int alphabeticModifiers -com.google.android.material.chip.Chip: android.content.res.ColorStateList getCheckedIconTint() -retrofit2.ParameterHandler$Path -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object getKey(java.lang.Object) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setHourlyForecast(java.lang.String) -androidx.appcompat.resources.R$dimen -androidx.preference.R$id: int expand_activities_button -okhttp3.internal.cache2.Relay: boolean complete -okhttp3.Headers -okhttp3.internal.Util: java.lang.String format(java.lang.String,java.lang.Object[]) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay +androidx.hilt.work.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int CloudCover +android.support.v4.os.ResultReceiver: android.os.Parcelable$Creator CREATOR +com.amap.api.location.AMapLocation: java.lang.String b(com.amap.api.location.AMapLocation,java.lang.String) +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onPause +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getO3() +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_31 +androidx.hilt.work.R$id: int accessibility_custom_action_18 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +james.adaptiveicon.R$styleable: int Toolbar_titleMargins +cyanogenmod.platform.Manifest$permission: java.lang.String BIND_CUSTOM_TILE_LISTENER_SERVICE +com.google.android.material.R$attr: int region_heightLessThan +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_off_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginLeft +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +com.google.android.material.card.MaterialCardView: void setCardBackgroundColor(android.content.res.ColorStateList) +cyanogenmod.app.Profile: java.util.Map networkConnectionSubIds +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance +wangdaye.com.geometricweather.R$drawable: int notif_temp_83 +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_transformPivotX +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeWindSpeed +com.xw.repo.bubbleseekbar.R$dimen: int abc_progress_bar_height_material +wangdaye.com.geometricweather.R$color: int material_slider_inactive_tick_marks_color +com.amap.api.fence.GeoFence: int ERROR_CODE_FAILURE_PARSER +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayHorizontalProvider: WidgetClockDayHorizontalProvider() +androidx.preference.R$styleable: int Toolbar_titleMargin +androidx.constraintlayout.widget.R$attr: int splitTrack +wangdaye.com.geometricweather.R$string: int icon_content_description +wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionIcon +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getPivotY() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetStart +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_min +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_padding_start_material +com.amap.api.fence.GeoFenceListener: void onGeoFenceCreateFinished(java.util.List,int,java.lang.String) +androidx.appcompat.resources.R$dimen: R$dimen() +io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_normal_pressed +com.jaredrummler.android.colorpicker.R$styleable: int[] AlertDialog +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.Handler mHandler +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ROMANIAN +wangdaye.com.geometricweather.R$attr: int backgroundInsetEnd +com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_disable_only_material_light +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +androidx.constraintlayout.widget.R$anim: int abc_shrink_fade_out_from_bottom +androidx.recyclerview.R$attr: int stackFromEnd +androidx.appcompat.resources.R$id: int accessibility_custom_action_26 +com.google.android.material.R$attr: int dragScale +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void disposeAll() +okhttp3.internal.publicsuffix.PublicSuffixDatabase: void setListBytes(byte[],byte[]) +wangdaye.com.geometricweather.R$string: int material_timepicker_hour +com.turingtechnologies.materialscrollbar.R$attr: int drawableSize +com.google.android.material.R$style: int Widget_Design_TextInputEditText +wangdaye.com.geometricweather.R$styleable: int Spinner_android_entries +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_60 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: FlowableOnBackpressureDrop$BackpressureDropSubscriber(org.reactivestreams.Subscriber,io.reactivex.functions.Consumer) +james.adaptiveicon.R$styleable: int SwitchCompat_android_thumb +okio.RealBufferedSource: okio.Buffer buffer() +androidx.appcompat.widget.AppCompatRadioButton: android.content.res.ColorStateList getSupportButtonTintList() +com.google.android.material.R$attr: int reverseLayout +androidx.constraintlayout.widget.R$styleable: int ActionBar_height +okhttp3.internal.http.HttpHeaders: okio.ByteString QUOTED_STRING_DELIMITERS +wangdaye.com.geometricweather.db.entities.AlertEntity: int getColor() +android.didikee.donate.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_dither +wangdaye.com.geometricweather.R$id: int action_container +androidx.constraintlayout.widget.R$styleable: int[] AppCompatSeekBar +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_switchTextOn +com.google.android.material.R$attr: int allowStacking +cyanogenmod.providers.CMSettings$System: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) +android.didikee.donate.R$color: int material_grey_100 +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void startTimeout(long) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric Metric +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_transitionPathRotate +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_android_entryValues +wangdaye.com.geometricweather.R$attr: int waveShape +wangdaye.com.geometricweather.db.entities.HistoryEntity: int daytimeTemperature +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String CountryID +com.google.android.material.R$id: int left +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlActivated +wangdaye.com.geometricweather.R$animator: int weather_haze_2 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: java.util.List value +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_bias +okhttp3.internal.cache.CacheInterceptor: CacheInterceptor(okhttp3.internal.cache.InternalCache) +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderFetchStrategy +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_NIGHT_VALIDATOR +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_NoActionBar +com.google.android.material.R$styleable: int TextInputLayout_counterEnabled +com.amap.api.fence.GeoFenceClient +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node find(java.lang.Object,boolean) +retrofit2.OkHttpCall: OkHttpCall(retrofit2.RequestFactory,java.lang.Object[],okhttp3.Call$Factory,retrofit2.Converter) +com.google.android.material.chip.Chip: void setCloseIconSize(float) +okio.Buffer: okio.ByteString digest(java.lang.String) +wangdaye.com.geometricweather.R$attr: int drawableStartCompat +androidx.hilt.work.R$dimen: int notification_right_side_padding_top +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: ObservableRepeatWhen$RepeatWhenObserver(io.reactivex.Observer,io.reactivex.subjects.Subject,io.reactivex.ObservableSource) +com.xw.repo.bubbleseekbar.R$color: int abc_tint_btn_checkable +androidx.coordinatorlayout.R$attr: int layout_behavior +com.xw.repo.bubbleseekbar.R$bool: int abc_config_actionMenuItemAllCaps +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection connection +androidx.preference.R$attr: int paddingTopNoTitle +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: int getSuggestedMinimumHeight() +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onResume +androidx.viewpager2.R$dimen: int compat_button_inset_vertical_material +com.google.gson.FieldNamingPolicy$5: FieldNamingPolicy$5(java.lang.String,int) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_showSeekBarValue +com.turingtechnologies.materialscrollbar.R$style: int Platform_Widget_AppCompat_Spinner +okhttp3.internal.http2.Http2Connection: boolean $assertionsDisabled +wangdaye.com.geometricweather.R$styleable: int Toolbar_navigationContentDescription +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: int fusionMode +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setTargetOffsetTopAndBottom(int) +io.reactivex.internal.subscriptions.BasicQueueSubscription: void clear() +com.jaredrummler.android.colorpicker.ColorPanelView: void setBorderColor(int) +androidx.constraintlayout.motion.widget.MotionLayout: void setInteractionEnabled(boolean) +com.google.android.material.R$dimen: int mtrl_fab_elevation +androidx.appcompat.widget.ActionMenuView: ActionMenuView(android.content.Context) +com.google.android.material.R$styleable: int TabItem_android_text +io.reactivex.internal.util.VolatileSizeArrayList: java.util.ArrayList list +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_gravity +androidx.loader.R$dimen: int compat_button_padding_vertical_material +androidx.appcompat.widget.LinearLayoutCompat: int getDividerPadding() +com.google.android.material.internal.ParcelableSparseIntArray: android.os.Parcelable$Creator CREATOR +retrofit2.ParameterHandler$Query: void apply(retrofit2.RequestBuilder,java.lang.Object) +okhttp3.internal.cache.FaultHidingSink: void close() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: long serialVersionUID +androidx.viewpager.R$styleable +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,int) +androidx.cardview.R$styleable: int CardView_cardBackgroundColor +com.amap.api.fence.DistrictItem$1 +org.greenrobot.greendao.AbstractDaoSession: void deleteAll(java.lang.Class) +com.google.android.material.R$styleable: int ConstraintSet_flow_verticalGap +wangdaye.com.geometricweather.R$id: int decelerate +com.github.rahatarmanahmed.cpv.CircularProgressView$8: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache$CallbackInfo getInfo(java.lang.Class) +com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_PrimarySurface +okio.Buffer: void readFrom(java.io.InputStream,long,boolean) +androidx.appcompat.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +okhttp3.RealCall$AsyncCall: RealCall$AsyncCall(okhttp3.RealCall,okhttp3.Callback) +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_disabled_material_dark +android.didikee.donate.R$id: int text2 +androidx.transition.R$id: int action_image +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +io.reactivex.internal.disposables.ArrayCompositeDisposable +androidx.drawerlayout.R$id: int time +com.amap.api.location.LocationManagerBase: void onDestroy() +wangdaye.com.geometricweather.R$string: int wind_level +com.bumptech.glide.integration.okhttp.R$style: int Widget_Compat_NotificationActionContainer +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: int size +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) +androidx.constraintlayout.widget.R$layout: int abc_action_bar_up_container +wangdaye.com.geometricweather.R$dimen: int mtrl_card_elevation +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Tooltip +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItem +com.google.android.material.R$dimen: int compat_button_padding_horizontal_material +androidx.constraintlayout.widget.R$styleable: int ActionBar_subtitleTextStyle +androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_text_padding_left +androidx.constraintlayout.widget.R$anim: int abc_slide_out_top +cyanogenmod.weather.WeatherInfo: WeatherInfo(android.os.Parcel) +androidx.legacy.coreutils.R$dimen: int notification_right_icon_size +android.didikee.donate.R$id: int expand_activities_button +io.reactivex.Observable: io.reactivex.Observable delay(io.reactivex.functions.Function) +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_numericShortcut +androidx.lifecycle.SavedStateHandle: boolean contains(java.lang.String) +com.google.android.material.R$styleable: int[] CoordinatorLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: void setDefenseText(java.lang.String) +android.didikee.donate.R$styleable: int[] SwitchCompat +cyanogenmod.app.Profile: void writeToParcel(android.os.Parcel,int) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Large +androidx.constraintlayout.widget.R$attr: int actionOverflowButtonStyle +okhttp3.internal.http2.Hpack$Writer: boolean useCompression +com.google.android.gms.base.R$color +com.google.android.material.R$style: int Widget_Design_TextInputLayout +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layoutDescription +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginRight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX getWind() +androidx.activity.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice +okio.AsyncTimeout: long IDLE_TIMEOUT_NANOS +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind +com.google.android.material.R$styleable: int MaterialTextView_lineHeight +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void clear(io.reactivex.internal.queue.SpscLinkedArrayQueue) +com.google.android.material.R$styleable: int AppBarLayout_android_keyboardNavigationCluster +james.adaptiveicon.R$styleable: int[] Toolbar +com.google.android.material.R$dimen: int mtrl_tooltip_arrowSize +androidx.appcompat.widget.AppCompatRadioButton: void setSupportButtonTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitationDuration +com.google.android.material.R$style: int Widget_Compat_NotificationActionText +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void cancelSubscription() +androidx.appcompat.R$id +james.adaptiveicon.R$color: int foreground_material_dark +wangdaye.com.geometricweather.R$attr: int extendedFloatingActionButtonStyle +androidx.constraintlayout.utils.widget.MotionTelltales: void setText(java.lang.CharSequence) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_popupMenuStyle +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_displayOptions +androidx.work.impl.background.systemalarm.SystemAlarmService +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_RadioButton +okhttp3.internal.http2.Http2Connection: boolean shutdown +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SERBIAN +io.reactivex.exceptions.CompositeException: java.lang.String message +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: AccuMinuteResult$SummariesBean() +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarWidgetTheme +wangdaye.com.geometricweather.R$attr: int navigationMode +androidx.constraintlayout.widget.R$attr: int layout_constrainedHeight +androidx.preference.R$style: int Widget_AppCompat_ProgressBar +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_seekbar_material +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean mainDone +androidx.hilt.lifecycle.R$dimen: int notification_small_icon_background_padding +androidx.viewpager.R$dimen: int notification_action_icon_size +androidx.appcompat.widget.Toolbar: void setLogo(android.graphics.drawable.Drawable) +okhttp3.FormBody: java.lang.String value(int) +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.AbstractDao getDao(java.lang.Class) +androidx.coordinatorlayout.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String getValue() +okhttp3.RealCall: okhttp3.Call clone() +cyanogenmod.weather.WeatherInfo$DayForecast: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$attr: int seekBarStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_side_padding +androidx.appcompat.R$style: int Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit getInstance(java.lang.String) +james.adaptiveicon.R$attr: int arrowHeadLength +com.google.android.material.R$color: int material_slider_halo_color +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +com.turingtechnologies.materialscrollbar.R$styleable: int[] Spinner +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getUrl() +retrofit2.converter.gson.package-info +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endColor +com.google.android.material.R$styleable: int[] KeyTrigger +com.bumptech.glide.R$id: int end +cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$attr: int showPaths +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorColor(int) +androidx.preference.R$dimen: int abc_text_size_display_2_material +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItem +androidx.activity.R$dimen: int compat_button_inset_vertical_material +com.google.android.material.R$dimen: int mtrl_extended_fab_icon_size +io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit) +androidx.vectordrawable.animated.R$dimen: int notification_large_icon_height +okio.ByteString: okio.ByteString sha1() com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_type -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_font -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather weather12H -androidx.appcompat.widget.AppCompatAutoCompleteTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,io.reactivex.functions.Function,int) -androidx.preference.R$attr: int preferenceCategoryTitleTextAppearance -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: void dispose() -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getRingtoneThemePackageName() -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay() -androidx.constraintlayout.widget.R$id: int autoComplete -cyanogenmod.themes.ThemeManager$1: cyanogenmod.themes.ThemeManager this$0 -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.R$styleable: int NavigationView_shapeAppearance -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pm10 -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context) -com.google.android.material.textfield.TextInputLayout: int getBoxBackgroundMode() -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_tooltipFrameBackground -okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date lastModified -io.reactivex.Observable: io.reactivex.Observable takeWhile(io.reactivex.functions.Predicate) -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sUriValidator -wangdaye.com.geometricweather.R$string: int about_circular_progress_view -androidx.appcompat.resources.R$styleable: int[] FontFamily -cyanogenmod.providers.CMSettings$DelimitedListValidator -com.xw.repo.bubbleseekbar.R$attr: int actionBarTabTextStyle -androidx.constraintlayout.widget.R$attr: int controlBackground -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo build() -com.google.android.material.R$styleable: int BottomNavigationView_labelVisibilityMode -androidx.dynamicanimation.R$color: int secondary_text_default_material_light -com.turingtechnologies.materialscrollbar.R$anim: int abc_grow_fade_in_from_bottom -androidx.viewpager.R$layout -android.didikee.donate.R$color: int material_grey_50 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum() -android.didikee.donate.R$style: int Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getSunRise() -androidx.constraintlayout.widget.R$style: int Base_V26_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: java.lang.String Unit -wangdaye.com.geometricweather.R$string: int refresh_at -androidx.preference.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -cyanogenmod.app.Profile: void setConditionalType() -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: SavedStateHandle$SavingStateLiveData(androidx.lifecycle.SavedStateHandle,java.lang.String) -com.xw.repo.bubbleseekbar.R$integer: int cancel_button_image_alpha -okhttp3.internal.http2.Http2Connection: long access$100(okhttp3.internal.http2.Http2Connection) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_tintMode -okhttp3.Cache: int networkCount -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: float intervalInHour -com.google.android.material.R$layout: int design_layout_snackbar_include -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$attr: int statusBarBackground -com.xw.repo.bubbleseekbar.R$dimen: int abc_control_inset_material -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_toLeftOf -androidx.constraintlayout.widget.R$attr: int tickMarkTint -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_controlBackground -wangdaye.com.geometricweather.R$integer: int mtrl_calendar_selection_text_lines -com.google.android.material.R$color: int material_slider_active_tick_marks_color -com.google.android.material.R$id: int textinput_error -com.xw.repo.bubbleseekbar.R$layout: int abc_dialog_title_material -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitation(java.lang.Float) -com.google.android.material.chip.Chip: void setCheckedIconVisible(boolean) -cyanogenmod.profiles.LockSettings: void setValue(int) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPlaceholderText() -androidx.vectordrawable.R$id: int accessibility_custom_action_30 -com.xw.repo.bubbleseekbar.R$attr: int backgroundTint -james.adaptiveicon.R$attr: int borderlessButtonStyle +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.lang.Object NEXT_WINDOW +androidx.fragment.R$id: int accessibility_custom_action_19 +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_checkableBehavior +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_backgroundTint +retrofit2.DefaultCallAdapterFactory$1: retrofit2.DefaultCallAdapterFactory this$0 +com.turingtechnologies.materialscrollbar.R$attr: int barLength +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconTint +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button +com.turingtechnologies.materialscrollbar.R$attr: int actionModeWebSearchDrawable +androidx.recyclerview.R$id: int accessibility_custom_action_5 +com.google.android.material.R$dimen: int mtrl_badge_text_horizontal_edge_offset +com.google.android.material.R$color: int foreground_material_dark +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.Function rightEnd +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconSize +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_width +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +androidx.viewpager2.R$styleable: int RecyclerView_android_orientation +androidx.hilt.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: float getActionTextColorAlpha() +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingTop +com.google.android.gms.base.R$string: int common_google_play_services_updating_text +wangdaye.com.geometricweather.db.entities.LocationEntity: LocationEntity() +io.reactivex.internal.schedulers.ScheduledRunnable: void setFuture(java.util.concurrent.Future) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setQueryParameter(java.lang.String,java.lang.String) +androidx.core.R$id: int icon +wangdaye.com.geometricweather.R$drawable: int notif_temp_135 +com.google.android.material.R$id: int material_timepicker_mode_button +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: double lat +com.google.android.material.R$attr: int layout_constraintStart_toEndOf +wangdaye.com.geometricweather.R$id: int container_main_first_card_header +james.adaptiveicon.R$attr: int expandActivityOverflowButtonDrawable +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: long serialVersionUID +com.google.android.material.R$styleable: int FontFamily_fontProviderQuery +com.xw.repo.bubbleseekbar.R$attr: int bsb_min +com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_weight +cyanogenmod.hardware.ICMHardwareService: boolean registerThermalListener(cyanogenmod.hardware.IThermalListenerCallback) +com.google.android.material.R$styleable: int MaterialCalendarItem_itemShapeAppearance +wangdaye.com.geometricweather.R$attr: int dotGap +wangdaye.com.geometricweather.R$color: int mtrl_filled_icon_tint +retrofit2.adapter.rxjava2.Result: java.lang.Throwable error +androidx.preference.R$style: int TextAppearance_AppCompat_Tooltip +androidx.work.R$layout +wangdaye.com.geometricweather.R$integer +wangdaye.com.geometricweather.R$layout: int widget_clock_day_tile +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorBackgroundFloating +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void drain() +androidx.constraintlayout.widget.R$layout: int custom_dialog +com.bumptech.glide.integration.okhttp.R$id: int time +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean current +com.bumptech.glide.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.R$color: int colorPrimary +wangdaye.com.geometricweather.R$attr: int backgroundTint +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode END +com.turingtechnologies.materialscrollbar.R$integer: int bottom_sheet_slide_duration +android.didikee.donate.R$styleable: int AlertDialog_android_layout +wangdaye.com.geometricweather.R$styleable: int ActionBar_title +com.bumptech.glide.request.RequestCoordinator$RequestState: boolean isComplete +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_lineHeight +androidx.viewpager.R$layout: R$layout() +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Subhead +com.google.android.material.R$styleable: int KeyTrigger_motionTarget +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int so2 +android.didikee.donate.R$layout: int notification_template_icon_group +cyanogenmod.themes.ThemeManager: void onClientPaused(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +androidx.constraintlayout.widget.R$attr: int flow_verticalStyle +okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: Http2Connection$ReaderRunnable$3(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[]) +cyanogenmod.externalviews.KeyguardExternalView: android.content.ServiceConnection mServiceConnection +androidx.appcompat.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$id: int notification_big_week_4 +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okio.BufferedSource source() +androidx.hilt.lifecycle.R$anim: R$anim() +androidx.hilt.work.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter emitter +okhttp3.Cache$2: void remove() +androidx.loader.R$layout: R$layout() +androidx.customview.R$dimen: int compat_button_inset_vertical_material +com.google.gson.JsonIOException: long serialVersionUID +androidx.swiperefreshlayout.R$id: int dialog_button +wangdaye.com.geometricweather.R$styleable: int ActionBar_height +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setValue(java.util.List) +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setBackgroundColorEnd(int) +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: float getProgress() +androidx.preference.R$attr: int updatesContinuously +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String moldDescription +com.xw.repo.bubbleseekbar.R$attr: int singleChoiceItemLayout +androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void setResource(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$attr: int flow_lastVerticalBias +cyanogenmod.weather.WeatherInfo: double access$1302(cyanogenmod.weather.WeatherInfo,double) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_width +wangdaye.com.geometricweather.R$dimen: int abc_text_size_small_material +wangdaye.com.geometricweather.R$color: int mtrl_calendar_selected_range +com.jaredrummler.android.colorpicker.R$styleable: int View_paddingStart +androidx.loader.R$style: int Widget_Compat_NotificationActionContainer +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: long serialVersionUID +com.google.android.material.R$id: int scale +james.adaptiveicon.R$styleable: int AppCompatTheme_listPopupWindowStyle +wangdaye.com.geometricweather.R$string: int abc_shareactionprovider_share_with +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.functions.Function keySelector +androidx.activity.R$styleable: int GradientColor_android_endX +retrofit2.CompletableFutureCallAdapterFactory +androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +androidx.appcompat.R$attr: int actionMenuTextColor +androidx.preference.R$styleable: int AppCompatTheme_actionMenuTextAppearance +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min +wangdaye.com.geometricweather.R$drawable: int flag_br +james.adaptiveicon.R$drawable: int abc_btn_colored_material +wangdaye.com.geometricweather.R$string: int mtrl_exceed_max_badge_number_content_description +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: java.lang.Object call() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setIndices(java.util.List) +android.didikee.donate.R$color: int highlighted_text_material_light +com.google.gson.stream.MalformedJsonException: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_collapseIcon +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_minHideDelay +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$id: int search_badge +james.adaptiveicon.R$styleable: int SearchView_closeIcon +io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean checkTerminated(boolean,boolean,io.reactivex.Observer,boolean) +androidx.preference.R$styleable: int Toolbar_titleMarginStart +okhttp3.MultipartBody: okhttp3.MediaType PARALLEL +androidx.hilt.R$dimen: int compat_control_corner_material +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarWidgetTheme +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: long subscriberCount +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_icon_btn_padding_left +wangdaye.com.geometricweather.R$string: int action_settings +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: java.lang.String Unit +androidx.work.R$drawable: int notification_bg_low_pressed +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeSplitBackground +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_touch_to_seek +okhttp3.Cookie: java.lang.String path +androidx.lifecycle.LifecycleRegistry$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$Event +wangdaye.com.geometricweather.R$attr: int iconTintMode +androidx.vectordrawable.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$attr: int waveOffset +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerNext(io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryInnerObserver) +androidx.preference.R$attr: int alertDialogTheme +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature temperature +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_defaultQueryHint +androidx.appcompat.R$layout: int abc_screen_toolbar +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListMenuView +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginEnd +com.google.android.material.R$styleable: int KeyPosition_pathMotionArc +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_y_offset_touch +android.didikee.donate.R$id: R$id() +com.google.android.material.slider.BaseSlider: void setValuesInternal(java.util.ArrayList) +com.google.android.material.R$anim: int abc_slide_out_top +androidx.appcompat.R$dimen: int abc_disabled_alpha_material_dark +okhttp3.internal.ws.WebSocketReader: boolean isControlFrame +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedPath(java.lang.String) +android.didikee.donate.R$attr: int textColorAlertDialogListItem +com.turingtechnologies.materialscrollbar.R$color: int abc_btn_colored_text_material +wangdaye.com.geometricweather.R$xml: int widget_trend_daily +com.google.android.material.R$attr: int themeLineHeight +com.amap.api.location.AMapLocationQualityReport: void setWifiAble(boolean) +androidx.appcompat.R$style: int TextAppearance_AppCompat_Headline +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Inverse +com.amap.api.location.UmidtokenInfo: java.lang.String b +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf +io.reactivex.Observable: io.reactivex.Observable concatMapDelayError(io.reactivex.functions.Function,int,boolean) +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleContentDescription +james.adaptiveicon.R$styleable: int ActionBar_subtitle +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixTextAppearance +retrofit2.BuiltInConverters$VoidResponseBodyConverter +io.reactivex.Observable: io.reactivex.Observable interval(long,long,java.util.concurrent.TimeUnit) +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric +androidx.appcompat.R$anim: int abc_slide_in_top +okhttp3.Cookie: boolean pathMatch(okhttp3.HttpUrl,java.lang.String) +okhttp3.internal.connection.StreamAllocation: boolean released +wangdaye.com.geometricweather.R$id: int activity_settings +com.jaredrummler.android.colorpicker.R$styleable: int View_theme +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircleAngle +com.xw.repo.bubbleseekbar.R$drawable: int abc_spinner_mtrl_am_alpha +androidx.constraintlayout.widget.R$style: int Base_AlertDialog_AppCompat_Light +com.bumptech.glide.integration.okhttp.R$id: int action_image +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motion_triggerOnCollision +io.reactivex.subjects.PublishSubject$PublishDisposable: io.reactivex.subjects.PublishSubject parent +com.google.android.material.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge +com.google.android.material.R$attr: int listDividerAlertDialog +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeShareDrawable +wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_showOldColor +com.google.android.material.R$attr: int flow_horizontalAlign +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.lang.String getUnit() +cyanogenmod.app.ProfileManager: java.lang.String ACTION_PROFILE_PICKER +com.turingtechnologies.materialscrollbar.R$color: int background_material_dark +okhttp3.internal.http2.Http2Connection$ReaderRunnable$3 +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_15 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_motionProgress +androidx.preference.R$attr: int autoSizeMinTextSize +wangdaye.com.geometricweather.R$style: int ThemeOverlayColorAccentRed +android.support.v4.app.INotificationSideChannel$Default: android.os.IBinder asBinder() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +com.google.gson.stream.JsonReader: void nextNull() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton +com.google.android.gms.common.api.UnsupportedApiCallException: java.lang.String getMessage() +androidx.appcompat.R$styleable: int Toolbar_contentInsetLeft +com.jaredrummler.android.colorpicker.R$attr: int showText +com.google.android.material.R$attr: int thumbStrokeWidth +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ScheduledExecutorService writerExecutor +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris +androidx.constraintlayout.widget.R$attr: int motionProgress +com.google.android.material.R$dimen: int mtrl_low_ripple_hovered_alpha +james.adaptiveicon.R$styleable: int SwitchCompat_showText +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_drawPath +wangdaye.com.geometricweather.R$styleable: int NavigationView_menu +wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_button_bar_material +cyanogenmod.app.CustomTile$Builder: java.lang.String mLabel +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_menuCategory +wangdaye.com.geometricweather.remoteviews.config.Hilt_WeekWidgetConfigActivity: Hilt_WeekWidgetConfigActivity() +james.adaptiveicon.R$styleable: int AppCompatTheme_panelMenuListTheme +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setPubTime(java.lang.String) +androidx.preference.R$styleable: int[] LinearLayoutCompat_Layout +androidx.appcompat.R$id: int textSpacerNoTitle +com.google.android.material.R$styleable: int KeyCycle_transitionPathRotate +com.jaredrummler.android.colorpicker.R$id: int action_bar_spinner +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String img +okhttp3.Interceptor$Chain: okhttp3.Connection connection() +androidx.preference.R$styleable: int CheckBoxPreference_summaryOff +wangdaye.com.geometricweather.common.basic.models.weather.Pollen +com.turingtechnologies.materialscrollbar.R$attr: int tabMinWidth +androidx.constraintlayout.widget.R$drawable: int abc_list_divider_material +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onAttachedToWindow() +wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_vertical +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setDuration(long) +com.turingtechnologies.materialscrollbar.R$attr: int allowStacking +cyanogenmod.externalviews.KeyguardExternalView$10: void run() +androidx.constraintlayout.widget.R$attr: int actionBarItemBackground +androidx.preference.R$dimen: int abc_list_item_padding_horizontal_material +androidx.constraintlayout.widget.R$attr: int actionBarTabTextStyle +androidx.fragment.R$attr: int font +androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$attr: int startIconTint +com.github.rahatarmanahmed.cpv.R$string: int app_name +cyanogenmod.alarmclock.CyanogenModAlarmClock +androidx.preference.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.R$attr: int badgeGravity +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: void setLineColor(int) +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_statusBarBackground +com.google.android.material.R$styleable: int TextAppearance_android_textFontWeight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX wind +androidx.appcompat.R$id: int action_bar_spinner +wangdaye.com.geometricweather.R$style: int PreferenceFragmentList +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +com.loc.k: k(java.lang.String,java.lang.String) +androidx.hilt.work.R$styleable: int FontFamilyFont_android_font +androidx.activity.R$dimen: int notification_big_circle_margin +com.turingtechnologies.materialscrollbar.R$id: int reservedNamedId +james.adaptiveicon.R$styleable: int MenuGroup_android_menuCategory +androidx.recyclerview.widget.StaggeredGridLayoutManager$SavedState: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Borderless +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_5 +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: float intervalInHour +androidx.loader.R$styleable: int ColorStateListItem_android_alpha +androidx.dynamicanimation.R$drawable +io.reactivex.exceptions.OnErrorNotImplementedException: OnErrorNotImplementedException(java.lang.String,java.lang.Throwable) +androidx.constraintlayout.widget.R$attr: int actionModeWebSearchDrawable +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver this$0 +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_12 +com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_default_thickness +james.adaptiveicon.R$style: int Theme_AppCompat_Light +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.HistoryEntity) +com.turingtechnologies.materialscrollbar.R$id: int save_non_transition_alpha +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +androidx.appcompat.R$styleable: int MenuItem_actionViewClass +androidx.preference.R$styleable: int AppCompatTheme_windowFixedWidthMajor +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context) +wangdaye.com.geometricweather.R$string: int settings_title_notification_text_color +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_creator +okhttp3.internal.http1.Http1Codec: int STATE_OPEN_REQUEST_BODY +cyanogenmod.themes.ThemeManager$1$1: int val$progress +androidx.hilt.R$layout: int custom_dialog +androidx.constraintlayout.widget.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_small_material +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.reflect.Type componentType +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_16 +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getShortUVDescription() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.util.Date LocalObservationDateTime +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder hostnameVerifier(javax.net.ssl.HostnameVerifier) +cyanogenmod.weather.WeatherLocation: WeatherLocation(cyanogenmod.weather.WeatherLocation$1) +okio.SegmentedByteString: boolean rangeEquals(int,byte[],int,int) +com.jaredrummler.android.colorpicker.R$attr: int cpv_sliderColor +android.didikee.donate.R$styleable: int MenuItem_tooltipText +com.google.android.material.R$attr: int endIconTint +james.adaptiveicon.R$attr: int customNavigationLayout +androidx.appcompat.R$attr: int actionModeSplitBackground +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_collapseContentDescription +com.bumptech.glide.R$id: int normal +cyanogenmod.app.Profile: void setRingMode(cyanogenmod.profiles.RingModeSettings) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit getInstance(java.lang.String) +wangdaye.com.geometricweather.R$string: int content_des_no2 +androidx.preference.R$styleable: int DialogPreference_android_dialogLayout +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfRain +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_15 +androidx.swiperefreshlayout.R$id: int tag_accessibility_pane_title +com.google.android.material.R$color: int button_material_dark +com.turingtechnologies.materialscrollbar.R$attr: int radioButtonStyle +androidx.lifecycle.MutableLiveData: MutableLiveData() +androidx.work.R$attr: int font +io.reactivex.internal.util.EmptyComponent: void onSuccess(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric +androidx.appcompat.R$dimen: int abc_dialog_min_width_major +androidx.loader.R$styleable: int GradientColor_android_centerX +okio.Util: void sneakyThrow2(java.lang.Throwable) +com.google.android.material.R$attr: int materialAlertDialogTheme +cyanogenmod.themes.ThemeManager: void unregisterProcessingListener(cyanogenmod.themes.ThemeManager$ThemeProcessingListener) +wangdaye.com.geometricweather.R$attr: int layout_constrainedWidth +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias +okhttp3.EventListener: void responseHeadersEnd(okhttp3.Call,okhttp3.Response) +androidx.appcompat.R$drawable: int abc_item_background_holo_light +wangdaye.com.geometricweather.R$xml: int standalone_badge_offset +androidx.appcompat.R$styleable: int AppCompatTheme_buttonStyleSmall +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onError(java.lang.Throwable) +okhttp3.CookieJar$1: void saveFromResponse(okhttp3.HttpUrl,java.util.List) +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableRight +com.google.android.material.R$anim: int abc_popup_enter +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_TextInputLayout +james.adaptiveicon.R$styleable: int ActionBar_contentInsetEnd +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemBitmap(android.graphics.Bitmap) +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_elevation_material +okio.Segment: boolean owner +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableTop +com.xw.repo.bubbleseekbar.R$attr: int actionModeBackground +androidx.constraintlayout.widget.R$attr: int actionBarWidgetTheme +com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_multichoice_material +com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Determinate +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int POWER_OFF_ALARM_STATE +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Update +wangdaye.com.geometricweather.R$string: int material_timepicker_am +com.google.android.material.card.MaterialCardView: void setBackground(android.graphics.drawable.Drawable) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierDirection +androidx.constraintlayout.widget.R$styleable: int[] MotionScene +wangdaye.com.geometricweather.R$drawable: int notif_temp_82 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_MWI_NOTIFICATION_VALIDATOR +androidx.coordinatorlayout.R$styleable: int GradientColor_android_startY +androidx.constraintlayout.utils.widget.ImageFilterView: void setWarmth(float) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.dynamicanimation.R$dimen: int compat_button_inset_vertical_material +james.adaptiveicon.R$color: int material_blue_grey_900 +cyanogenmod.weatherservice.IWeatherProviderServiceClient: void setServiceRequestState(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.ServiceRequestResult,int) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicReference boundaryObserver +okhttp3.internal.http2.Http2Reader: okhttp3.internal.http2.Hpack$Reader hpackReader +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderPackage +android.didikee.donate.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +wangdaye.com.geometricweather.R$dimen: int main_title_text_size +com.amap.api.location.UmidtokenInfo$1: UmidtokenInfo$1() +okhttp3.Cookie: java.lang.String name() +com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context,android.util.AttributeSet) +androidx.fragment.R$id: int tag_transition_group +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontWeight +okhttp3.internal.http2.Http2Connection: long access$108(okhttp3.internal.http2.Http2Connection) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: void cancel() +okhttp3.CertificatePinner$Builder: okhttp3.CertificatePinner$Builder add(java.lang.String,java.lang.String[]) +com.google.android.material.slider.RangeSlider: void setTrackTintList(android.content.res.ColorStateList) +com.amap.api.location.AMapLocationClientOption$GeoLanguage +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property No2 +com.google.gson.internal.LinkedTreeMap +wangdaye.com.geometricweather.R$attr: int boxStrokeWidth +james.adaptiveicon.R$attr: int titleMarginBottom +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design +okhttp3.Call: okhttp3.Call clone() +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_Toolbar +androidx.transition.R$attr +com.amap.api.location.AMapLocation: int v +com.jaredrummler.android.colorpicker.R$string: int abc_menu_ctrl_shortcut_label +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial Imperial +androidx.fragment.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_dialogType +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_android_layout +androidx.recyclerview.R$id: int dialog_button +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindDegree +com.xw.repo.bubbleseekbar.R$attr: int navigationIcon +android.didikee.donate.R$style: int Theme_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onTimeout(long) +androidx.constraintlayout.widget.R$styleable: int Toolbar_logo +wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragThreshold +androidx.viewpager2.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_stacked_tab_max_width +okhttp3.HttpUrl: java.lang.String username +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: MfHistoryResult() +com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingBottom +com.google.android.material.R$style: int Widget_MaterialComponents_ChipGroup +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: java.util.concurrent.TimeUnit unit +androidx.preference.R$dimen: int tooltip_horizontal_padding +androidx.appcompat.R$dimen: int abc_edit_text_inset_bottom_material +wangdaye.com.geometricweather.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getRealFeelTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemTextColor +wangdaye.com.geometricweather.R$styleable: int MotionLayout_currentState +androidx.vectordrawable.R$id: int accessibility_custom_action_0 +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Primary +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleContentDescription +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: long serialVersionUID +cyanogenmod.power.IPerformanceManager: int getNumberOfProfiles() +wangdaye.com.geometricweather.R$string: int fab_transformation_sheet_behavior +retrofit2.ParameterHandler$FieldMap: void apply(retrofit2.RequestBuilder,java.util.Map) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder scheme(java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust WindGust +cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.AppSuggestManager getInstance(android.content.Context) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +androidx.hilt.lifecycle.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul3H +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric() +wangdaye.com.geometricweather.R$string: int date_format_widget_short +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_NIGHT +cyanogenmod.weather.WeatherInfo$DayForecast: int getConditionCode() +wangdaye.com.geometricweather.R$id: int search_edit_frame +com.google.android.material.R$attr: int waveOffset +androidx.constraintlayout.widget.R$attr: int color +okhttp3.internal.connection.ConnectInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +com.google.android.material.R$color: int abc_search_url_text_pressed +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: AccuCurrentResult$RealFeelTemperatureShade() +com.google.gson.stream.JsonReader: int peekKeyword() +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_dark +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_voice +androidx.constraintlayout.widget.R$style: int Platform_AppCompat_Light +com.google.android.material.R$dimen: int mtrl_snackbar_background_overlay_color_alpha +wangdaye.com.geometricweather.R$id: int grassIcon +androidx.appcompat.widget.SearchView: void setQueryHint(java.lang.CharSequence) +android.didikee.donate.R$style: int Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyTopLeft +androidx.appcompat.R$styleable: int AppCompatTheme_windowNoTitle +com.turingtechnologies.materialscrollbar.R$attr: int measureWithLargestChild +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float pm10 +androidx.preference.R$attr: int dividerPadding +androidx.appcompat.R$style: int Base_V7_Theme_AppCompat +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_disabled_holo_dark +androidx.appcompat.R$styleable: int StateListDrawable_android_visible +androidx.swiperefreshlayout.R$id: int forever +com.google.android.material.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul12H +com.google.android.material.R$attr: int checkedIconSize +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode +androidx.recyclerview.R$id: int title +com.turingtechnologies.materialscrollbar.R$layout: int abc_expanded_menu_layout +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customColorDrawableValue +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeCloudCover(java.lang.Integer) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_toBottomOf +okhttp3.internal.http.RequestLine: java.lang.String get(okhttp3.Request,java.net.Proxy$Type) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Toolbar +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStartPadding +androidx.preference.R$drawable: int abc_seekbar_tick_mark_material +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintDimensionRatio +com.google.android.material.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +android.didikee.donate.R$layout: int abc_activity_chooser_view_list_item +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_android_orderingFromXml +androidx.constraintlayout.widget.R$styleable: int Toolbar_collapseContentDescription +okhttp3.internal.ws.RealWebSocket$1 +com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector DAY +androidx.coordinatorlayout.R$id: int right_icon +androidx.legacy.coreutils.R$id: int icon_group +androidx.fragment.R$styleable: int FontFamilyFont_ttcIndex +com.xw.repo.bubbleseekbar.R$layout: int abc_action_mode_bar +com.google.android.material.R$attr: int roundPercent +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarButtonStyle +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_widgetLayout +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean done +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_body_1_material +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTint +androidx.appcompat.R$string: int abc_searchview_description_search +androidx.lifecycle.LiveData$1: LiveData$1(androidx.lifecycle.LiveData) +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: boolean isDisposed() +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int maxConcurrency +com.loc.k +okhttp3.Cache$CacheRequestImpl$1: okhttp3.Cache$CacheRequestImpl this$1 +io.reactivex.internal.util.VolatileSizeArrayList: boolean addAll(java.util.Collection) +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onNext(java.lang.Object) +com.google.android.material.R$attr: int popupTheme +wangdaye.com.geometricweather.location.services.LocationService: LocationService() +com.turingtechnologies.materialscrollbar.Indicator: void setTextColor(int) +cyanogenmod.app.Profile$ProfileTrigger +com.google.android.material.R$id: int decelerateAndComplete +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display2 +androidx.hilt.R$id: int action_divider +androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_percent +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_2 +com.amap.api.location.AMapLocation: java.lang.String getCountry() +com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_colored +androidx.coordinatorlayout.R$drawable: int notification_bg_low +androidx.preference.R$attr: int actionViewClass +com.google.android.material.R$styleable: int MaterialButton_icon +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Title +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: java.lang.String Localized +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String CountryCode +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: IAppSuggestManager$Stub$Proxy(android.os.IBinder) +androidx.lifecycle.ServiceLifecycleDispatcher: ServiceLifecycleDispatcher(androidx.lifecycle.LifecycleOwner) +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_icon +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginRight +wangdaye.com.geometricweather.R$style: int Widget_Design_ScrimInsetsFrameLayout +androidx.lifecycle.extensions.R$id: int icon_group +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setPubTime(java.util.Date) +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: ObservableReplay$SizeBoundReplayBuffer(int) +cyanogenmod.providers.CMSettings$System: java.lang.String SHOW_ALARM_ICON +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: KeyguardExternalViewProviderService$Provider$ProviderImpl$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.R$dimen: int notification_action_text_size +com.google.android.material.R$id: int flip +james.adaptiveicon.R$dimen: int abc_action_bar_default_height_material +com.google.android.material.textfield.TextInputLayout: void setHelperText(java.lang.CharSequence) +wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_selected +com.google.android.material.R$dimen: int design_bottom_sheet_peek_height_min +okhttp3.internal.http2.Http2Reader: void readRstStream(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +com.google.android.material.R$drawable: int notification_bg_low +android.didikee.donate.R$layout: int abc_action_bar_up_container +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Time +com.google.android.material.R$styleable: int Toolbar_collapseContentDescription +wangdaye.com.geometricweather.R$id: int container_alert_display_view_indicator +androidx.appcompat.widget.SwitchCompat: void setTextOn(java.lang.CharSequence) +retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1 +androidx.constraintlayout.widget.R$attr: int deriveConstraintsFrom +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode valueOf(java.lang.String) +androidx.fragment.R$drawable: int notification_template_icon_low_bg +com.turingtechnologies.materialscrollbar.R$attr: int chipIconTint +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context) +okhttp3.internal.http2.Http2Writer: void synStream(boolean,int,int,java.util.List) +androidx.constraintlayout.widget.R$attr: int closeItemLayout +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearSelectedStyle +androidx.appcompat.R$id: int action_text +io.reactivex.internal.disposables.CancellableDisposable: boolean isDisposed() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderFetchTimeout +io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable INSTANCE +com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item +androidx.lifecycle.extensions.R$drawable: int notification_action_background +androidx.viewpager2.R$id: int tag_screen_reader_focusable +androidx.vectordrawable.R$id: int accessibility_custom_action_11 +wangdaye.com.geometricweather.R$dimen: int title_text_size +retrofit2.ParameterHandler$FieldMap: boolean encoded +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_header +androidx.core.R$id: int accessibility_custom_action_3 +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Body2 +okhttp3.internal.cache2.FileOperator: FileOperator(java.nio.channels.FileChannel) +okhttp3.internal.connection.RealConnection: okhttp3.Request createTunnel(int,int,okhttp3.Request,okhttp3.HttpUrl) +com.google.android.material.R$styleable: int Constraint_layout_constraintEnd_toStartOf +cyanogenmod.externalviews.ExternalViewProviderService: cyanogenmod.externalviews.ExternalViewProviderService$Provider createExternalView(android.os.Bundle) +androidx.core.app.RemoteActionCompat +com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_disabled +wangdaye.com.geometricweather.R$id: int forever +com.turingtechnologies.materialscrollbar.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$id: int beginOnFirstDraw +okhttp3.Request$Builder +com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding QUALITY +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean isCanceled() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarWidgetTheme +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceInformationStyle +retrofit2.ParameterHandler$PartMap: void apply(retrofit2.RequestBuilder,java.util.Map) +androidx.constraintlayout.widget.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$id: int activity_alert_recyclerView +wangdaye.com.geometricweather.R$attr: int iconifiedByDefault +james.adaptiveicon.R$style: int AlertDialog_AppCompat +com.google.android.material.R$layout: int text_view_with_line_height_from_appearance +wangdaye.com.geometricweather.R$string: int settings_title_notification_custom_color +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder cache(okhttp3.Cache) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherPhase(java.lang.String) +androidx.appcompat.R$styleable: int PopupWindow_android_popupBackground +com.xw.repo.bubbleseekbar.R$attr: int autoSizeMaxTextSize +androidx.preference.R$style: int PreferenceFragmentList_Material +androidx.constraintlayout.widget.R$attr: int editTextBackground +wangdaye.com.geometricweather.R$dimen: int design_fab_border_width +androidx.appcompat.widget.AppCompatImageButton: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_variablePadding +okhttp3.internal.http2.Http2Connection$Listener$1: Http2Connection$Listener$1() +okhttp3.internal.http.HttpHeaders: boolean hasVaryAll(okhttp3.Response) +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter this$0 +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColorLink +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotationY +cyanogenmod.profiles.RingModeSettings: void setOverride(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: java.lang.String WeatherCode +wangdaye.com.geometricweather.R$attr: int backgroundColor +io.reactivex.Observable: io.reactivex.Observable take(long,java.util.concurrent.TimeUnit) +com.google.android.material.R$drawable: int abc_textfield_search_activated_mtrl_alpha +okio.GzipSink: java.util.zip.Deflater deflater +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_MAX_INDEX +okhttp3.internal.http2.Http2Stream$FramingSource: boolean $assertionsDisabled +retrofit2.RequestBuilder: boolean hasBody +com.amap.api.location.CoordUtil: CoordUtil() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: cyanogenmod.externalviews.IKeyguardExternalViewProvider asInterface(android.os.IBinder) +okio.RealBufferedSink$1: RealBufferedSink$1(okio.RealBufferedSink) +james.adaptiveicon.R$drawable: int abc_ic_star_black_48dp +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableLeft +androidx.constraintlayout.widget.R$styleable: int SearchView_iconifiedByDefault +wangdaye.com.geometricweather.R$drawable: int shortcuts_sleet_foreground +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetBottom +james.adaptiveicon.R$styleable: int Toolbar_contentInsetRight +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: long serialVersionUID +com.google.android.material.R$style: int Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$color: int mtrl_fab_icon_text_color_selector +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_hd +androidx.preference.R$anim: int abc_fade_out +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_typeface +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_default_mtrl_alpha +androidx.appcompat.resources.R$id: int action_divider +android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +okhttp3.internal.cache2.Relay: int SOURCE_UPSTREAM +androidx.appcompat.resources.R$attr +io.reactivex.internal.operators.observable.ObserverResourceWrapper: long serialVersionUID +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_android_windowAnimationStyle +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +cyanogenmod.app.ICMTelephonyManager: void setDefaultSmsSub(int) +okio.ByteString: java.nio.ByteBuffer asByteBuffer() +com.xw.repo.bubbleseekbar.R$attr: int homeAsUpIndicator +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: int CategoryValue +androidx.preference.R$style: int Theme_AppCompat_DayNight_NoActionBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean sunRiseSet +james.adaptiveicon.R$attr: int fontFamily +com.google.android.material.R$styleable: int Constraint_layout_constraintStart_toStartOf +com.google.android.material.R$styleable: int CardView_cardBackgroundColor +androidx.hilt.work.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ChipGroup +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_alphabeticModifiers +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Tooltip +okhttp3.internal.cache.CacheInterceptor$1: okio.Timeout timeout() +com.google.android.material.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +com.google.android.material.R$id: int dialog_button +androidx.vectordrawable.animated.R$id: int text2 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_colored_material +androidx.fragment.R$id: int tag_screen_reader_focusable +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_right +androidx.constraintlayout.widget.R$color: int switch_thumb_normal_material_light +com.google.android.material.R$attr: int isLightTheme +com.google.android.material.R$styleable: int TextAppearance_android_shadowDy +wangdaye.com.geometricweather.R$styleable: int MotionLayout_showPaths +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_BottomRightCut +james.adaptiveicon.R$style: int AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: double Value +androidx.fragment.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xntd +com.turingtechnologies.materialscrollbar.R$id: int buttonPanel +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: io.reactivex.subjects.UnicastSubject this$0 +wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_dark +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: long serialVersionUID +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_14 +androidx.constraintlayout.widget.R$attr: int constraintSetStart +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar +androidx.constraintlayout.widget.R$attr: int motion_triggerOnCollision +james.adaptiveicon.R$styleable: int Toolbar_contentInsetEnd +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat +okhttp3.internal.http2.Http2Stream: java.util.Deque access$000(okhttp3.internal.http2.Http2Stream) +androidx.constraintlayout.widget.R$attr: int drawerArrowStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPrimary(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_srcCompat +androidx.appcompat.R$dimen: int abc_text_size_large_material +wangdaye.com.geometricweather.R$string: int about_app +androidx.recyclerview.R$dimen: int fastscroll_margin +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener mWindowAttachmentListener +com.xw.repo.bubbleseekbar.R$styleable: int[] Spinner +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SearchView_ActionBar +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light +androidx.appcompat.R$styleable: int[] GradientColorItem +androidx.appcompat.widget.ActionMenuView: int getWindowAnimations() +com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_backgroundTint +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_disableDependentsState +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +com.google.android.material.chip.ChipGroup: void setSingleLine(int) +com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalGap +androidx.appcompat.R$id: int notification_background +androidx.appcompat.R$attr: int autoSizePresetSizes +com.jaredrummler.android.colorpicker.R$attr: int tooltipText +okhttp3.ConnectionSpec: boolean supportsTlsExtensions() +wangdaye.com.geometricweather.R$id: int notification_big_temp_2 +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomSheet_Modal +wangdaye.com.geometricweather.R$dimen: int design_navigation_separator_vertical_padding +android.didikee.donate.R$anim: int abc_slide_in_bottom +com.xw.repo.bubbleseekbar.R$layout: int abc_action_mode_close_item_material +okhttp3.internal.platform.AndroidPlatform: void connectSocket(java.net.Socket,java.net.InetSocketAddress,int) +cyanogenmod.app.CMTelephonyManager: boolean isSubActive(int) +com.google.android.material.R$styleable: int BottomAppBar_fabAlignmentMode +wangdaye.com.geometricweather.R$attr: int seekBarIncrement +androidx.lifecycle.ComputableLiveData +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_stacked_max_height +cyanogenmod.app.Profile: cyanogenmod.profiles.ConnectionSettings getConnectionSettingWithSubId(int) +androidx.preference.R$id: int title_template +com.google.android.material.R$attr: int values +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_CompactMenu +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_pressed_holo_light +wangdaye.com.geometricweather.R$attr: int bsb_thumb_text_color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: double Value +com.google.android.material.R$attr: int tabSelectedTextColor +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int pm25 +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_id +cyanogenmod.util.ColorUtils: int findPerceptuallyNearestColor(int,int[]) +io.reactivex.Observable: io.reactivex.Observable sample(io.reactivex.ObservableSource) +androidx.appcompat.widget.AppCompatAutoCompleteTextView +androidx.work.R$id: int tag_accessibility_pane_title +com.amap.api.fence.PoiItem$1 +com.jaredrummler.android.colorpicker.R$attr: int layout_insetEdge +com.google.android.gms.signin.internal.zab +wangdaye.com.geometricweather.R$attr: int widgetLayout +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.disposables.Disposable upstream +james.adaptiveicon.R$attr: int elevation +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.disposables.Disposable upstream +com.jaredrummler.android.colorpicker.R$styleable: int[] ActivityChooserView +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: ObservableMergeWithSingle$MergeWithObserver(io.reactivex.Observer) +androidx.appcompat.R$dimen: int hint_pressed_alpha_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean +com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$attr: int headerLayout +androidx.preference.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object[] toArray(java.lang.Object[]) +wangdaye.com.geometricweather.R$id: int shades_layout +wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_modal_elevation +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: boolean handles(android.content.Intent) +androidx.preference.R$styleable: int SearchView_android_inputType +androidx.preference.R$style: int Base_Widget_AppCompat_Spinner +com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginTop +androidx.appcompat.R$attr: int windowFixedWidthMinor +androidx.preference.R$layout: int notification_action +cyanogenmod.app.ILiveLockScreenChangeListener +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Visibility +androidx.constraintlayout.widget.R$attr: int contentDescription +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +io.reactivex.internal.subscriptions.BasicQueueSubscription: int requestFusion(int) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_25 +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy APPEND_OR_REPLACE +wangdaye.com.geometricweather.R$drawable: int notif_temp_107 +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder listener(okhttp3.internal.http2.Http2Connection$Listener) +com.jaredrummler.android.colorpicker.R$style: int PreferenceFragmentList_Material +androidx.swiperefreshlayout.R$drawable: int notification_bg_normal +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +cyanogenmod.weather.util.WeatherUtils: java.lang.String formatTemperature(double,int) +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void run() +com.turingtechnologies.materialscrollbar.R$color: int primary_dark_material_light +android.didikee.donate.R$id: int title_template +androidx.core.R$id: int right_side +com.xw.repo.bubbleseekbar.R$attr: int actionModeFindDrawable +com.amap.api.location.AMapLocation: int b(com.amap.api.location.AMapLocation,int) +cyanogenmod.app.CustomTile$ExpandedStyle: void setBuilder(cyanogenmod.app.CustomTile$Builder) +com.google.android.material.textfield.TextInputLayout: void removeOnEndIconChangedListener(com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_RC4_128_SHA +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: int UnitType +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getTreeLevel() +com.jaredrummler.android.colorpicker.R$attr: int negativeButtonText +com.google.android.material.R$attr: int helperTextTextColor +io.reactivex.Observable: io.reactivex.Observable repeat(long) +com.google.android.gms.location.ActivityTransitionEvent: android.os.Parcelable$Creator CREATOR +okhttp3.WebSocketListener: void onClosed(okhttp3.WebSocket,int,java.lang.String) +com.amap.api.location.CoordinateConverter: com.amap.api.location.CoordinateConverter coord(com.amap.api.location.DPoint) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +io.reactivex.internal.util.ArrayListSupplier: java.util.List apply(java.lang.Object) +com.google.android.material.R$layout: int abc_screen_simple +androidx.appcompat.R$dimen: int abc_edit_text_inset_top_material +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder callTimeout(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonTint +androidx.legacy.coreutils.R$color +com.turingtechnologies.materialscrollbar.R$attr: int msb_recyclerView +androidx.preference.R$attr: int actionBarSplitStyle +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias +androidx.appcompat.R$string: int abc_menu_enter_shortcut_label +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: AccuDailyResult$DailyForecasts$Day$Wind$Direction() +okio.Timeout$1 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeWindSpeed +wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableItem +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +com.google.android.material.R$styleable: int ChipGroup_checkedChip +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: int getSourceColor() +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceScreenStyle +android.didikee.donate.R$style: int Theme_AppCompat_Dialog_MinWidth +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position position +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Colored +androidx.preference.R$layout: int preference_category_material +com.jaredrummler.android.colorpicker.R$attr: int cpv_showDialog +wangdaye.com.geometricweather.background.polling.permanent.observer.FakeForegroundService +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getDatetime() androidx.constraintlayout.widget.R$attr: int layout_constraintTop_toBottomOf -androidx.preference.R$style: int Theme_AppCompat_Dialog_MinWidth -com.google.android.material.R$attr: int behavior_skipCollapsed -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver this$0 -androidx.preference.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_Primary -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleDrawable -com.google.android.material.R$styleable: int Slider_thumbStrokeColor -com.amap.api.location.AMapLocationQualityReport: com.amap.api.location.AMapLocationClientOption$AMapLocationMode a -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerClose(boolean,io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_pressed_z -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginStart -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf -com.turingtechnologies.materialscrollbar.R$attr: int cardViewStyle -androidx.preference.R$styleable: int MenuItem_showAsAction -wangdaye.com.geometricweather.R$layout: int activity_settings -androidx.appcompat.widget.LinearLayoutCompat: int getBaseline() -androidx.appcompat.app.AppCompatActivity: AppCompatActivity() +com.xw.repo.bubbleseekbar.R$color: int abc_hint_foreground_material_dark +androidx.viewpager2.R$integer: R$integer() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap +androidx.appcompat.R$color: int material_grey_850 +androidx.fragment.R$id: int accessibility_custom_action_15 +com.google.android.material.chip.Chip: void setMaxLines(int) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileManager getInstance(android.content.Context) +cyanogenmod.hardware.ICMHardwareService: int[] getDisplayColorCalibration() +james.adaptiveicon.R$id: int uniform +wangdaye.com.geometricweather.R$styleable: int[] CircularProgressView +cyanogenmod.themes.ThemeManager: boolean processThemeResources(java.lang.String) +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.queue.MpscLinkedQueue queue +wangdaye.com.geometricweather.settings.dialogs.WechatDonateDialog: WechatDonateDialog() +com.jaredrummler.android.colorpicker.R$drawable: int ic_arrow_down_24dp +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollVerticalThumbDrawable +androidx.preference.R$string: int search_menu_title +com.google.android.material.slider.BaseSlider: int getFocusedThumbIndex() +androidx.appcompat.R$dimen: R$dimen() +cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_REVERSE_LOOKUP +androidx.constraintlayout.widget.R$styleable: int Toolbar_navigationContentDescription +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_scrollMode +androidx.constraintlayout.widget.R$styleable: int ActionBar_subtitle +android.didikee.donate.R$id: int action_menu_presenter +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTextView +wangdaye.com.geometricweather.R$attr: int bsb_section_text_color +okhttp3.ConnectionSpec: okhttp3.CipherSuite[] RESTRICTED_CIPHER_SUITES +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void setCancellable(io.reactivex.functions.Cancellable) +com.google.android.material.R$string: int abc_search_hint +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRealFeelShaderTemperature +androidx.appcompat.R$dimen: int abc_dialog_padding_top_material +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeStepGranularity +androidx.constraintlayout.widget.R$dimen: int abc_button_padding_vertical_material +com.google.android.material.R$color: int test_mtrl_calendar_day +com.google.android.material.R$attr: int fabCradleMargin +cyanogenmod.profiles.StreamSettings: int mStreamId +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setStatus(int) +com.google.android.material.R$id: int clear_text +androidx.constraintlayout.widget.R$drawable: int notification_template_icon_bg +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void drain() +okhttp3.CertificatePinner: CertificatePinner(java.util.Set,okhttp3.internal.tls.CertificateChainCleaner) +androidx.dynamicanimation.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$string: int content_des_drag_flag +wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String aqi +wangdaye.com.geometricweather.R$id: int widget_week_temp_2 +cyanogenmod.themes.IThemeProcessingListener +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice Ice +com.google.android.material.R$attr: int autoSizeMaxTextSize +com.google.android.material.R$attr: int itemShapeInsetEnd +com.google.android.material.R$style: int Widget_MaterialComponents_Badge +com.turingtechnologies.materialscrollbar.R$id: int split_action_bar +cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo build() +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: io.reactivex.Observer downstream +okhttp3.MultipartBody: okio.ByteString boundary +com.xw.repo.bubbleseekbar.R$attr: int dialogPreferredPadding +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getThumbStrokeColor() +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTopCompat +com.google.android.material.R$styleable: int ConstraintSet_flow_firstHorizontalBias +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String from +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSnowPrecipitation(java.lang.Float) +androidx.lifecycle.LifecycleRegistry$ObserverWithState: LifecycleRegistry$ObserverWithState(androidx.lifecycle.LifecycleObserver,androidx.lifecycle.Lifecycle$State) +androidx.legacy.coreutils.R$drawable +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$attr: int tabIndicatorHeight +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.WeatherEntity) +com.xw.repo.bubbleseekbar.R$attr: int actionViewClass +io.reactivex.internal.util.ExceptionHelper$Termination +androidx.preference.R$style: int Base_Widget_AppCompat_ProgressBar +androidx.drawerlayout.R$color: int ripple_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_collapseContentDescription +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context) +james.adaptiveicon.R$color: int material_deep_teal_200 +cyanogenmod.app.CMContextConstants$Features: java.lang.String STATUSBAR +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel +james.adaptiveicon.R$color: int dim_foreground_material_light +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setWallpaperId(long) +android.didikee.donate.R$drawable: int notification_bg_low_pressed +androidx.constraintlayout.widget.R$drawable: int abc_list_longpressed_holo +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.UV uv +androidx.activity.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String description +cyanogenmod.providers.CMSettings$Secure: java.lang.String KEYBOARD_BRIGHTNESS +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_DropDown +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setProgress(float) +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeColorStateList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$color: int mtrl_textinput_disabled_color +okhttp3.FormBody +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState PAUSED +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontWeight +androidx.hilt.R$id: int tag_unhandled_key_listeners +androidx.fragment.app.FragmentState +androidx.recyclerview.widget.RecyclerView: void setNestedScrollingEnabled(boolean) +cyanogenmod.app.ILiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() +androidx.constraintlayout.widget.R$dimen: int abc_text_size_body_1_material +com.google.android.material.R$attr: int motionProgress +com.google.android.material.R$styleable: int[] CollapsingToolbarLayout +wangdaye.com.geometricweather.R$attr: int backgroundTintMode +com.google.android.material.R$styleable: int NavigationView_itemTextAppearance +com.google.android.material.R$id: int parentPanel +com.google.android.material.R$dimen: int mtrl_extended_fab_min_width +androidx.appcompat.resources.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$id: int decor_content_parent +com.google.android.material.R$dimen: int material_emphasis_disabled +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: double Value +okhttp3.MultipartBody$Part: okhttp3.RequestBody body +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customIntegerValue +okio.ByteString: java.lang.String base64() +androidx.appcompat.widget.ActionBarContextView: void setSubtitle(java.lang.CharSequence) +okhttp3.Cache: int writeAbortCount +cyanogenmod.weather.WeatherLocation: java.lang.String mPostal +james.adaptiveicon.R$string: int status_bar_notification_info_overflow +android.didikee.donate.R$dimen: int abc_action_bar_stacked_max_height +com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Badge +androidx.constraintlayout.widget.R$id: int tag_unhandled_key_listeners +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf +androidx.appcompat.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: java.lang.String Unit +com.jaredrummler.android.colorpicker.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.R$attr: int customColorValue +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconStartPadding +okhttp3.internal.platform.Platform: java.lang.String toString() +androidx.appcompat.R$style: int Platform_AppCompat_Light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility Visibility +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogCornerRadius +james.adaptiveicon.R$attr: int editTextStyle +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getNavigationContentDescription() +androidx.viewpager2.R$styleable: R$styleable() +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability +cyanogenmod.providers.DataUsageContract: java.lang.String[] PROJECTION_ALL +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSearchResultSubtitle +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +com.google.android.material.R$dimen: int mtrl_chip_text_size +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_padding_end_material +cyanogenmod.app.Profile: cyanogenmod.profiles.BrightnessSettings getBrightness() +androidx.preference.R$styleable: int AppCompatTheme_actionModeCopyDrawable +okhttp3.internal.http.UnrepeatableRequestBody +androidx.viewpager.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_81 +okio.Buffer: okio.Buffer$UnsafeCursor readUnsafe(okio.Buffer$UnsafeCursor) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +cyanogenmod.app.ProfileManager: java.lang.String INTENT_ACTION_PROFILE_SELECTED +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenManager sInstance +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_layout +cyanogenmod.app.ThemeVersion: cyanogenmod.app.ThemeVersion$ComponentVersion getComponentVersion(cyanogenmod.app.ThemeComponent) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.R$id: int spline +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_dropDownWidth +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation valueOf(java.lang.String) +com.google.android.material.R$attr: int layout_constraintBottom_toBottomOf +com.google.android.material.R$styleable: int MaterialCardView_rippleColor +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onNext(java.lang.Object) +androidx.core.view.GestureDetectorCompat +com.turingtechnologies.materialscrollbar.R$attr: int textInputStyle +androidx.vectordrawable.animated.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_controlView +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.util.concurrent.CountDownLatch readCompleteLatch +wangdaye.com.geometricweather.R$styleable: int[] ForegroundLinearLayout +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWindChillTemperature(java.lang.Integer) +wangdaye.com.geometricweather.R$drawable: int weather_snow_3 +james.adaptiveicon.R$styleable: int TextAppearance_android_fontFamily +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_cpuBoost_0 +com.amap.api.fence.PoiItem: java.lang.String c +okio.Timeout: long deadlineNanoTime +cyanogenmod.themes.IThemeChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +androidx.viewpager.R$attr: R$attr() +com.bumptech.glide.R$color: int ripple_material_light +james.adaptiveicon.R$dimen: int abc_text_size_large_material +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator +com.google.android.material.R$color: int mtrl_navigation_item_icon_tint +cyanogenmod.externalviews.KeyguardExternalView$9: void run() +okio.Okio$3: Okio$3() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +com.google.android.gms.common.api.ApiException: java.lang.String getStatusMessage() +com.turingtechnologies.materialscrollbar.R$attr: int actionModeBackground +androidx.legacy.coreutils.R$attr: int ttcIndex +wangdaye.com.geometricweather.db.entities.AlertEntity: int priority +androidx.lifecycle.ClassesInfoCache$CallbackInfo: void invokeMethodsForEvent(java.util.List,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) +androidx.vectordrawable.R$id: int accessibility_action_clickable_span +james.adaptiveicon.R$id: R$id() +com.google.android.material.bottomappbar.BottomAppBar +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setSensorEnable(boolean) +androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_end +com.baidu.location.e.l$b: int i +androidx.constraintlayout.widget.R$attr: int actionViewClass +com.jaredrummler.android.colorpicker.R$attr: int actionModePopupWindowStyle +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver +androidx.constraintlayout.widget.R$id: int search_plate +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: androidx.lifecycle.Lifecycle$Event mEvent +com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Linear +androidx.hilt.lifecycle.R$layout: int notification_action +com.google.android.material.R$styleable: int AppCompatTheme_actionModeCloseDrawable +androidx.constraintlayout.widget.R$styleable: int[] Layout +cyanogenmod.profiles.StreamSettings: int describeContents() +com.google.gson.JsonIOException: JsonIOException(java.lang.String,java.lang.Throwable) +org.greenrobot.greendao.AbstractDao: java.util.List loadAll() +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTopCompat +androidx.viewpager.R$drawable: int notification_bg +androidx.preference.R$color: int switch_thumb_material_dark +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode CANCEL +androidx.appcompat.R$color: int material_blue_grey_900 +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Icon +androidx.constraintlayout.widget.R$style: int Base_V26_Theme_AppCompat +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizePresetSizes +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_DarkActionBar +okhttp3.internal.http2.Http2Connection$2: int val$streamId +cyanogenmod.providers.WeatherContract: java.lang.String AUTHORITY +wangdaye.com.geometricweather.R$string: int mini_temp +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA +com.google.android.material.chip.Chip: void setGravity(int) +cyanogenmod.providers.CMSettings$Secure: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) +io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Action onComplete +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getTitle() +androidx.preference.R$styleable: int AppCompatTheme_actionBarItemBackground +com.google.android.material.R$attr: int iconifiedByDefault +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean isDisposed() +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_width_major +com.google.android.material.R$styleable: int KeyTrigger_onPositiveCross +wangdaye.com.geometricweather.R$attr: int navigationViewStyle +androidx.lifecycle.ProcessLifecycleOwner: void activityStopped() +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onSuccess(java.lang.Object) +wangdaye.com.geometricweather.R$string: int content_des_so2 +io.reactivex.disposables.RunnableDisposable +com.google.android.material.R$styleable: int AppCompatTheme_actionModeShareDrawable +androidx.transition.R$drawable: int notification_bg_low_pressed +androidx.drawerlayout.R$id: int actions +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() +okio.Buffer: int readIntLe() +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String YEAR +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTextView +com.google.android.material.R$id: int contentPanel +androidx.viewpager.widget.ViewPager: void setAdapter(androidx.viewpager.widget.PagerAdapter) +android.didikee.donate.R$styleable: int AppCompatTheme_colorPrimaryDark +okhttp3.internal.platform.AndroidPlatform$CloseGuard: okhttp3.internal.platform.AndroidPlatform$CloseGuard get() +wangdaye.com.geometricweather.R$attr: int tabMaxWidth +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function,boolean) +okhttp3.Cache$CacheResponseBody: okio.BufferedSource source() +androidx.core.R$id: int accessibility_custom_action_8 +james.adaptiveicon.R$id: int message +okhttp3.internal.http2.Http2Stream$FramingSource: okio.Buffer receiveBuffer +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarPopupTheme +io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +androidx.coordinatorlayout.R$attr: R$attr() +okhttp3.internal.connection.RouteSelector: void resetNextProxy(okhttp3.HttpUrl,java.net.Proxy) +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.internal.fuseable.QueueDisposable qd +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_type +okhttp3.Headers$Builder +com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_material_dark +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_25 +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircleRadius +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotationX +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle +android.didikee.donate.R$dimen: int notification_right_icon_size +com.autonavi.aps.amapapi.model.AMapLocationServer: void h(java.lang.String) +android.didikee.donate.R$dimen: int abc_select_dialog_padding_start_material +com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Theme_AppCompat_Light +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderQuery +cyanogenmod.weather.CMWeatherManager: android.os.Handler access$100(cyanogenmod.weather.CMWeatherManager) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_9 +com.google.android.material.R$string: int abc_prepend_shortcut_label +com.google.android.material.R$attr: int itemStrokeColor +com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_mid_color +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: IThemeChangeListener$Stub$Proxy(android.os.IBinder) +com.github.rahatarmanahmed.cpv.CircularProgressView$8: float val$start +io.reactivex.internal.observers.LambdaObserver +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig chineseCityEntityDaoConfig +okhttp3.internal.platform.Jdk9Platform: java.lang.reflect.Method setProtocolMethod +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_overflow_padding_end_material +androidx.lifecycle.LifecycleRegistry: void addObserver(androidx.lifecycle.LifecycleObserver) +com.google.android.material.R$styleable: int ShapeableImageView_strokeColor +wangdaye.com.geometricweather.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$string: int mtrl_picker_range_header_unselected +io.reactivex.exceptions.CompositeException: long serialVersionUID +com.google.android.material.R$attr: int iconSize +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: io.reactivex.internal.disposables.DisposableContainer tasks +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_material_light +androidx.constraintlayout.widget.R$styleable: int[] Transform +cyanogenmod.providers.CMSettings$Global: CMSettings$Global() +com.google.android.material.textfield.TextInputLayout: int getBaseline() +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy +io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer) +androidx.coordinatorlayout.R$style +com.google.android.material.bottomnavigation.BottomNavigationMenuView +cyanogenmod.profiles.LockSettings: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +okhttp3.ConnectionPool +wangdaye.com.geometricweather.R$styleable: int[] PropertySet +com.google.android.gms.common.Feature: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.R$attr: int chipBackgroundColor +androidx.constraintlayout.widget.R$drawable: int abc_list_divider_mtrl_alpha +cyanogenmod.app.StatusBarPanelCustomTile: android.os.UserHandle getUser() +com.google.android.material.R$styleable: int Layout_layout_constraintBaseline_creator +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Long id +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeight +com.google.android.material.R$color: int abc_background_cache_hint_selector_material_light +androidx.preference.R$styleable: int ActionBar_displayOptions +com.google.android.material.R$id: int pin +wangdaye.com.geometricweather.R$attr: int indicatorColor +io.reactivex.Observable: io.reactivex.Observable concatMapEager(io.reactivex.functions.Function,int,int) +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_negativeButtonText +androidx.hilt.R$attr: int fontProviderCerts +cyanogenmod.profiles.ConnectionSettings: java.lang.String EXTRA_SUB_ID +com.google.android.material.R$styleable: int Constraint_flow_lastHorizontalBias +com.google.android.material.R$styleable: int Constraint_flow_verticalBias +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowNoTitle +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property TimeZone +wangdaye.com.geometricweather.R$id: int bounce +android.didikee.donate.R$color: int material_deep_teal_200 +okio.AsyncTimeout: boolean cancelScheduledTimeout(okio.AsyncTimeout) +androidx.lifecycle.Transformations +android.didikee.donate.R$styleable: int TextAppearance_android_shadowDx +james.adaptiveicon.R$integer: R$integer() +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: android.os.IBinder asBinder() +com.turingtechnologies.materialscrollbar.R$id: int expand_activities_button +wangdaye.com.geometricweather.R$styleable: int[] OnClick +wangdaye.com.geometricweather.R$anim: int fragment_manange_enter +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String EXTRA_ENABLED +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundResource(int) +cyanogenmod.hardware.ThermalListenerCallback +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: MfForecastResult$ProbabilityForecast() +cyanogenmod.app.IProfileManager$Stub: IProfileManager$Stub() +io.reactivex.Observable: io.reactivex.Observable filter(io.reactivex.functions.Predicate) +com.google.android.material.datepicker.RangeDateSelector +com.baidu.location.e.m +com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context) +wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionContainer +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtended(boolean) +androidx.appcompat.R$styleable: int SwitchCompat_splitTrack +com.jaredrummler.android.colorpicker.NestedGridView +com.google.android.material.slider.Slider: void setValueTo(float) +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_subtitleTextStyle +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_min +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_orientation +androidx.coordinatorlayout.R$dimen: int notification_main_column_padding_top +james.adaptiveicon.R$string: int abc_action_menu_overflow_description +androidx.constraintlayout.widget.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_height_minor +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionMode +com.xw.repo.bubbleseekbar.R$attr: int theme +androidx.customview.R$styleable +com.xw.repo.bubbleseekbar.R$integer: R$integer() +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String MINUTES +wangdaye.com.geometricweather.R$integer: int design_snackbar_text_max_lines +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Small +okhttp3.internal.http2.Http2: java.io.IOException ioException(java.lang.String,java.lang.Object[]) +android.didikee.donate.R$style: int Theme_AppCompat_DialogWhenLarge +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean isDisposed() +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconSize +com.bumptech.glide.R$id: int actions +com.google.android.material.R$styleable: int Slider_android_valueTo +com.amap.api.fence.GeoFence: int getStatus() +wangdaye.com.geometricweather.R$styleable: int Layout_constraint_referenced_ids +androidx.constraintlayout.widget.R$attr: int customFloatValue +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlHighlight +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SEVERE_THUNDERSTORMS +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_disableDependentsState +wangdaye.com.geometricweather.R$attr: int msb_handleOffColor +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCustomSize(int) +com.amap.api.location.DPoint: int hashCode() +androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_toBottomOf +wangdaye.com.geometricweather.R$layout: int preference +com.xw.repo.bubbleseekbar.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$dimen: int cpv_column_width +com.xw.repo.bubbleseekbar.R$attr: int fontProviderPackage +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_MinWidth +wangdaye.com.geometricweather.R$id: int fade +retrofit2.Utils: void throwIfFatal(java.lang.Throwable) +cyanogenmod.externalviews.ExternalView: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_localTimeText +androidx.transition.R$attr: int font +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline +wangdaye.com.geometricweather.R$styleable: int[] PopupWindowBackgroundState +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsRainOrSnow(int) +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +androidx.appcompat.R$color: int error_color_material_light +com.google.android.material.R$styleable: int MaterialCardView_strokeColor +androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_id +androidx.appcompat.resources.R$color: int notification_action_color_filter +io.reactivex.exceptions.MissingBackpressureException: MissingBackpressureException(java.lang.String) +androidx.preference.R$color: int material_grey_800 +cyanogenmod.os.Concierge$ParcelInfo: int mSizePosition +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region Region +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogTitle +cyanogenmod.app.ILiveLockScreenManager: void setLiveLockScreenEnabled(boolean) +com.google.android.gms.base.R$attr: int scopeUris +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String a() +cyanogenmod.externalviews.KeyguardExternalView$5: KeyguardExternalView$5(cyanogenmod.externalviews.KeyguardExternalView) +androidx.appcompat.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginStart +androidx.lifecycle.FullLifecycleObserver: void onPause(androidx.lifecycle.LifecycleOwner) +wangdaye.com.geometricweather.background.receiver.widget.AbstractWidgetProvider +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getSnowPrecipitation() +android.didikee.donate.R$color: int secondary_text_disabled_material_dark +wangdaye.com.geometricweather.R$layout: int item_weather_daily_astro +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_unregisterCallback +androidx.preference.R$drawable: int abc_ic_star_half_black_48dp +retrofit2.http.Tag +androidx.loader.R$drawable: int notification_icon_background +com.amap.api.fence.GeoFence: long getExpiration() +com.jaredrummler.android.colorpicker.R$attr: int fontWeight +wangdaye.com.geometricweather.R$attr: int measureWithLargestChild +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl +wangdaye.com.geometricweather.R$styleable: int[] AppCompatTheme +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarButtonStyle +com.google.android.material.R$layout: int design_layout_tab_text +androidx.appcompat.R$attr: int buttonTintMode +wangdaye.com.geometricweather.R$drawable: int ic_circle_medium +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackgroundColor(int) +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +com.google.android.material.slider.Slider: void setTickVisible(boolean) +androidx.constraintlayout.motion.widget.MotionLayout: void setOnShow(float) +james.adaptiveicon.R$attr: int autoSizeMaxTextSize +com.google.android.material.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$styleable: int CardView_cardBackgroundColor +com.google.android.material.R$styleable: int ImageFilterView_warmth +com.google.android.material.R$id: int motion_base +com.turingtechnologies.materialscrollbar.R$anim +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer ragweedLevel +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_maxElementsWrap +com.github.rahatarmanahmed.cpv.CircularProgressView: void resetAnimation() +io.reactivex.observers.TestObserver$EmptyObserver: void onNext(java.lang.Object) +androidx.preference.R$attr: int preferenceScreenStyle +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: java.lang.Object value +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean isDisposed() +okhttp3.internal.cache.DiskLruCache: java.util.regex.Pattern LEGAL_KEY_PATTERN +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startX +okio.Buffer$UnsafeCursor: int seek(long) +com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_android_color +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_SET_CLIENT +com.google.android.material.R$dimen: int mtrl_navigation_elevation +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_normal_material_light +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW +androidx.preference.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getTranslateX() +androidx.loader.R$attr: R$attr() +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.appcompat.R$id: int accessibility_custom_action_21 +androidx.coordinatorlayout.R$id: int notification_main_column +cyanogenmod.weather.ICMWeatherManager$Stub: ICMWeatherManager$Stub() +com.google.android.gms.common.api.ResolvableApiException: ResolvableApiException(com.google.android.gms.common.api.Status) +cyanogenmod.app.CustomTile: android.graphics.Bitmap remoteIcon +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setCurrentIndicatorColor(int) +wangdaye.com.geometricweather.R$id: int bottom_sides +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_processThemeResources +android.didikee.donate.R$id: int search_close_btn +wangdaye.com.geometricweather.R$styleable: int[] ChipGroup +com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_padding_horizontal_material +androidx.activity.R$dimen: int notification_top_pad +androidx.preference.R$dimen: int abc_text_size_title_material +androidx.versionedparcelable.CustomVersionedParcelable +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: AccuMinuteResult$SummaryBean() +com.google.android.material.R$id: int spline +android.didikee.donate.R$style: int Base_V7_Widget_AppCompat_EditText +com.google.android.material.R$attr: int barrierAllowsGoneWidgets wangdaye.com.geometricweather.db.entities.DailyEntity: long time -androidx.swiperefreshlayout.R$color -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_stackFromEnd -okhttp3.HttpUrl: java.lang.String topPrivateDomain() -cyanogenmod.app.Profile$NotificationLightMode: Profile$NotificationLightMode() -androidx.cardview.R$styleable: int[] CardView -androidx.preference.R$styleable: int SwitchPreferenceCompat_disableDependentsState -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.util.List getValue() -okhttp3.Credentials: java.lang.String basic(java.lang.String,java.lang.String,java.nio.charset.Charset) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial Imperial -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: io.reactivex.Scheduler scheduler -androidx.appcompat.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: long serialVersionUID -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: IWeatherServiceProviderChangeListener$Stub() -androidx.appcompat.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer realFeelShaderTemperature -com.amap.api.location.AMapLocation: java.lang.String c(com.amap.api.location.AMapLocation,java.lang.String) -cyanogenmod.externalviews.KeyguardExternalView$6 -com.google.android.material.R$attr: int circleRadius -androidx.preference.R$style: int Base_V21_Theme_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_default_mtrl_alpha -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_9 -androidx.hilt.work.R$dimen: int notification_big_circle_margin -androidx.appcompat.resources.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.R$color: int abc_secondary_text_material_light -com.xw.repo.bubbleseekbar.R$layout: int abc_search_dropdown_item_icons_2line -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalGap -cyanogenmod.app.IPartnerInterface$Stub: IPartnerInterface$Stub() -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_xml -android.didikee.donate.R$drawable: int abc_text_cursor_material -androidx.lifecycle.GenericLifecycleObserver -james.adaptiveicon.R$style: int TextAppearance_AppCompat_SearchResult_Title -com.google.android.material.R$dimen: int tooltip_y_offset_non_touch -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endColor -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder callTimeout(long,java.util.concurrent.TimeUnit) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.Observer downstream -com.baidu.location.e.l$b: com.baidu.location.e.l$b valueOf(java.lang.String) -com.google.android.material.R$styleable: int ThemeEnforcement_android_textAppearance -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: java.util.List brands -wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingTop -com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_percent -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button -com.google.android.gms.internal.common.zzq: java.lang.Object zza() -androidx.constraintlayout.widget.R$styleable: int Constraint_pathMotionArc -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setAlarm(java.lang.String) -com.google.android.material.R$string: int material_timepicker_select_time -androidx.constraintlayout.widget.R$attr: int subtitleTextStyle -okhttp3.internal.platform.Platform: int WARN -com.xw.repo.bubbleseekbar.R$attr: int backgroundStacked -wangdaye.com.geometricweather.R$dimen: int normal_margin -com.google.android.material.R$styleable: int Constraint_chainUseRtl -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setBackgroundColor(int) -com.google.android.material.R$attr: int placeholderTextAppearance -androidx.appcompat.R$color: int background_floating_material_dark -com.github.rahatarmanahmed.cpv.CircularProgressView$8: float val$start -androidx.loader.R$style: int Widget_Compat_NotificationActionContainer -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$styleable: int[] KeyCycle -androidx.appcompat.R$styleable: int SwitchCompat_switchMinWidth -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -com.autonavi.aps.amapapi.model.AMapLocationServer: void h(java.lang.String) -wangdaye.com.geometricweather.R$attr: int activityChooserViewStyle -androidx.constraintlayout.widget.R$id: int animateToStart -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ProgressBar -com.jaredrummler.android.colorpicker.R$id: int actions -okhttp3.logging.HttpLoggingInterceptor: void redactHeader(java.lang.String) -androidx.appcompat.R$style: int Base_V26_Theme_AppCompat_Light -androidx.recyclerview.R$dimen: int notification_big_circle_margin -androidx.appcompat.R$color: int abc_background_cache_hint_selector_material_light -androidx.appcompat.R$styleable: int AppCompatTheme_searchViewStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$string: int thanks -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List dailyEntityList -james.adaptiveicon.R$styleable: int MenuItem_android_icon -com.turingtechnologies.materialscrollbar.R$attr: int boxBackgroundColor -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderFetchStrategy -com.amap.api.location.UmidtokenInfo: com.amap.api.location.AMapLocationClient d -com.jaredrummler.android.colorpicker.R$id: int large -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: long serialVersionUID -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Spinner -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_DropDown -androidx.preference.R$dimen: int abc_action_button_min_width_material -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_scaleX -com.google.android.material.R$attr: int minWidth -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_pivotX -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: FitSystemBarViewPager(android.content.Context) -wangdaye.com.geometricweather.db.entities.HistoryEntity: long getTime() -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language POLISH -wangdaye.com.geometricweather.R$string: int sp_widget_day_week_setting -cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -cyanogenmod.providers.CMSettings$Secure: float getFloat(android.content.ContentResolver,java.lang.String,float) -wangdaye.com.geometricweather.R$color: int mtrl_tabs_icon_color_selector_colored -okio.Base64 -com.turingtechnologies.materialscrollbar.R$styleable: int[] Spinner -com.xw.repo.bubbleseekbar.R$styleable: int[] StateListDrawable -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Toolbar -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListMenuView -com.turingtechnologies.materialscrollbar.R$color: int button_material_light -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_horizontalDivider -cyanogenmod.providers.CMSettings$Secure: java.lang.String BUTTON_BRIGHTNESS -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: int capacityHint -androidx.preference.R$attr: int negativeButtonText -com.google.android.material.internal.NavigationMenuView -com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit MI -androidx.preference.R$attr: int listPreferredItemPaddingLeft -androidx.constraintlayout.widget.R$id: int standard -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingLeft -wangdaye.com.geometricweather.db.entities.AlertEntityDao: org.greenrobot.greendao.query.Query weatherEntity_AlertEntityListQuery -androidx.preference.R$drawable: int abc_btn_check_material_anim -androidx.preference.R$style: int Widget_Compat_NotificationActionContainer -okhttp3.internal.http2.Http2Writer: void data(boolean,int,okio.Buffer,int) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintTextColor -androidx.appcompat.widget.FitWindowsLinearLayout: FitWindowsLinearLayout(android.content.Context,android.util.AttributeSet) -androidx.transition.R$dimen: int notification_content_margin_start -androidx.hilt.work.R$drawable: int notification_bg_low -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_inverse_material_light -com.google.android.material.R$id: int jumpToEnd -retrofit2.KotlinExtensions: java.lang.Object create(retrofit2.Retrofit) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconTintMode -android.didikee.donate.R$drawable: int abc_ic_star_black_16dp -wangdaye.com.geometricweather.R$style: int Base_Widget_Design_TabLayout -androidx.appcompat.R$attr: int drawerArrowStyle -com.turingtechnologies.materialscrollbar.Indicator: void setScroll(float) -com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context) -okio.GzipSink: okio.DeflaterSink deflaterSink -cyanogenmod.profiles.LockSettings$1 -com.google.android.material.timepicker.ClockFaceView -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPrefixText() -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabBarStyle -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastVerticalStyle -cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup getDefaultGroup() -io.reactivex.internal.queue.SpscArrayQueue: int calcElementOffset(long) -com.xw.repo.bubbleseekbar.R$string: int abc_menu_space_shortcut_label -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayout_Layout -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderCerts -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,byte[],int,int) -com.google.android.material.R$color: int abc_tint_spinner -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayWeekProvider -androidx.hilt.lifecycle.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$drawable: int ic_toolbar_close -androidx.hilt.work.R$dimen -androidx.preference.R$drawable: int abc_btn_check_material -androidx.appcompat.R$styleable: int Toolbar_buttonGravity -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherCode -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: int city_code -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: CMSettings$InclusiveFloatRangeValidator(float,float) -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: java.lang.Object v1 -androidx.vectordrawable.animated.R$id: int line3 -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_cornerSize -io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper[] values() -com.github.rahatarmanahmed.cpv.CircularProgressView: float currentProgress -androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$attr: int flow_lastVerticalStyle -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: java.io.IOException thrownException -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -cyanogenmod.hardware.ICMHardwareService$Stub: cyanogenmod.hardware.ICMHardwareService asInterface(android.os.IBinder) -androidx.appcompat.R$attr: int showText -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_CAMELLIA_128_CBC_SHA -androidx.lifecycle.ReportFragment: void setProcessListener(androidx.lifecycle.ReportFragment$ActivityInitializationListener) -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onNext(java.lang.Object) -wangdaye.com.geometricweather.settings.activities.CardDisplayManageActivity: CardDisplayManageActivity() -com.google.android.material.R$id: int startVertical -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar -james.adaptiveicon.R$styleable: int Spinner_android_entries -androidx.activity.R$styleable: R$styleable() +com.google.android.material.button.MaterialButtonToggleGroup: void setGeneratedIdIfNeeded(com.google.android.material.button.MaterialButton) +androidx.dynamicanimation.R$id: int notification_main_column +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_type +james.adaptiveicon.R$styleable: int AppCompatTheme_actionMenuTextAppearance +android.didikee.donate.R$attr: int selectableItemBackgroundBorderless +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonRiseDate +wangdaye.com.geometricweather.R$attr: int layout_optimizationLevel +androidx.preference.R$attr: int actionBarTabStyle +androidx.constraintlayout.widget.R$styleable: int State_constraints +okhttp3.RealCall$AsyncCall: okhttp3.Request request() +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_position +com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatPressedTranslationZ() +androidx.lifecycle.AbstractSavedStateViewModelFactory: java.lang.String TAG_SAVED_STATE_HANDLE_CONTROLLER +com.amap.api.location.APSService +androidx.preference.R$color: R$color() +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_4 +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: int index +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +com.amap.api.location.AMapLocation: java.lang.String getDistrict() +androidx.preference.R$style: int Base_Widget_AppCompat_ListView_DropDown +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onError(java.lang.Throwable) +androidx.appcompat.resources.R$dimen: int compat_button_inset_horizontal_material +io.reactivex.internal.functions.Functions$HashSetCallable +com.turingtechnologies.materialscrollbar.R$integer: int cancel_button_image_alpha +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Primary +com.turingtechnologies.materialscrollbar.R$attr: int titleTextAppearance +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayVerticalProvider: WidgetClockDayVerticalProvider() +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_24 +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView +wangdaye.com.geometricweather.R$dimen: int material_clock_face_margin_top +com.google.android.material.R$attr: int layout_constraintStart_toStartOf +com.github.rahatarmanahmed.cpv.CircularProgressView: void stopAnimation() +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.lang.Object NULL_KEY +wangdaye.com.geometricweather.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$styleable: int OnSwipe_touchAnchorSide +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierMargin +wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_item +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColorHint +com.google.android.material.R$dimen: int mtrl_calendar_day_horizontal_padding +wangdaye.com.geometricweather.R$styleable: int[] BubbleSeekBar cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onBouncerShowing(boolean) -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void schedule() -androidx.appcompat.R$attr: int drawableTopCompat -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX() -cyanogenmod.themes.ThemeManager: android.os.Handler access$200() -com.turingtechnologies.materialscrollbar.R$attr: int actionBarPopupTheme -wangdaye.com.geometricweather.R$array: int week_icon_mode_values -com.google.android.material.R$id: int notification_background -com.turingtechnologies.materialscrollbar.R$attr: int behavior_hideable -androidx.appcompat.widget.SearchView: void setOnSuggestionListener(androidx.appcompat.widget.SearchView$OnSuggestionListener) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_seek_by_section -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.util.Locale getLocale() -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void drain() -androidx.viewpager.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.common.basic.models.weather.Weather: boolean isDaylight(java.util.TimeZone) -okhttp3.internal.ws.RealWebSocket: long pingIntervalMillis -androidx.preference.R$id: int action_bar_title -cyanogenmod.app.CMStatusBarManager: android.content.Context mContext -androidx.appcompat.resources.R$attr: int fontVariationSettings -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem -androidx.coordinatorlayout.R$dimen -cyanogenmod.weather.WeatherInfo$DayForecast$1: java.lang.Object[] newArray(int) -androidx.work.NetworkType: androidx.work.NetworkType CONNECTED -wangdaye.com.geometricweather.R$attr: int paddingBottomNoButtons -wangdaye.com.geometricweather.R$attr: int itemShapeAppearanceOverlay -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_progress -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -androidx.preference.R$styleable: int AppCompatTextView_autoSizePresetSizes -androidx.vectordrawable.animated.R$drawable: int notification_icon_background -com.github.rahatarmanahmed.cpv.R$dimen -com.jaredrummler.android.colorpicker.R$string: int search_menu_title -android.didikee.donate.R$color: int abc_hint_foreground_material_dark -androidx.legacy.coreutils.R$id: int notification_main_column -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dark -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_percent -androidx.preference.R$attr: int dividerPadding -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: AccuDailyResult$DailyForecasts$RealFeelTemperature() -androidx.constraintlayout.widget.R$attr: int saturation -james.adaptiveicon.R$color: int highlighted_text_material_light -androidx.appcompat.R$dimen: int abc_dropdownitem_icon_width -androidx.appcompat.R$dimen: int abc_dialog_fixed_height_minor -android.didikee.donate.R$styleable: int ActionBar_contentInsetStartWithNavigation -com.google.android.material.circularreveal.CircularRevealGridLayout -android.didikee.donate.R$styleable: int[] ActivityChooserView -cyanogenmod.platform.R: R() -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather weather -cyanogenmod.providers.ThemesContract -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotationY -com.google.android.material.R$id: int gone -okhttp3.MediaType: MediaType(java.lang.String,java.lang.String,java.lang.String,java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int showText -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable,int,int) -cyanogenmod.themes.ThemeChangeRequest: java.util.Map mThemeComponents -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_CLOCK_VALIDATOR -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void cancelTimer() -androidx.preference.R$dimen: int highlight_alpha_material_colored -wangdaye.com.geometricweather.R$menu -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int HIDE_NOTIFICATION_STATE -android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar_Small -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_text_horizontal_edge_offset -androidx.constraintlayout.widget.R$styleable: int TextAppearance_fontFamily -androidx.recyclerview.R$attr: R$attr() -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String district -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetStart -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize -com.google.android.material.R$styleable: int Slider_tickColor -okhttp3.Cookie: java.lang.String value() -androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -com.xw.repo.bubbleseekbar.R$dimen: int notification_content_margin_start -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_Underlined -wangdaye.com.geometricweather.R$styleable: int Preference_android_summary -androidx.preference.R$attr: int showSeekBarValue -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMenuView -androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$layout: int notification_action_tombstone -io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier valueOf(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_showAsAction -com.google.android.material.R$string: int mtrl_badge_numberless_content_description -com.google.android.material.R$attr: int layoutDescription -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_visible -androidx.customview.R$id: int actions -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.util.Date getDate() -com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_minimum_range -james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton_CloseMode -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitation -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: void invoke(java.lang.Throwable) -androidx.appcompat.R$styleable: int GradientColor_android_startY -androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_id -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: MfHistoryResult$History$Weather() -okhttp3.internal.connection.RouteSelector: RouteSelector(okhttp3.Address,okhttp3.internal.connection.RouteDatabase,okhttp3.Call,okhttp3.EventListener) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onDetach -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: java.lang.String Unit -wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_tint -okio.Okio$1: okio.Timeout timeout() -androidx.constraintlayout.widget.R$color: int secondary_text_disabled_material_dark -wangdaye.com.geometricweather.R$string: int key_ui_style -okio.BufferedSource: short readShortLe() -okhttp3.internal.cache.DiskLruCache: java.io.File journalFileBackup -androidx.lifecycle.MethodCallsLogger: MethodCallsLogger() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_borderlessButtonStyle -com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_colorShape -androidx.vectordrawable.animated.R$integer -androidx.appcompat.R$styleable: int[] AppCompatImageView -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableStart -androidx.constraintlayout.helper.widget.Flow: void setHorizontalStyle(int) -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_height -cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener -wangdaye.com.geometricweather.R$string: int sp_widget_hourly_trend_setting -okhttp3.Response: int code() -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_popupTheme -androidx.lifecycle.extensions.R$color: int notification_action_color_filter -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver inner -wangdaye.com.geometricweather.R$styleable: int[] AppCompatTextView -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getZh_TW() -wangdaye.com.geometricweather.R$string: int action_manage -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_startAngle -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintTextColor -okio.GzipSource: byte FCOMMENT -okio.RealBufferedSource: okio.Buffer buffer() -wangdaye.com.geometricweather.R$color: int material_timepicker_modebutton_tint -okhttp3.internal.cache.CacheStrategy$Factory: boolean isFreshnessLifetimeHeuristic() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.util.List getIndices() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_seekBarStyle -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder setType(okhttp3.MediaType) -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getOpPkg() -androidx.constraintlayout.widget.R$attr: int constraintSet -com.turingtechnologies.materialscrollbar.R$attr: int itemHorizontalPadding -androidx.constraintlayout.widget.R$styleable: int Constraint_android_minWidth -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onScreenTurnedOff() -okhttp3.OkHttpClient: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner -cyanogenmod.weather.WeatherInfo$DayForecast$1: WeatherInfo$DayForecast$1() -com.jaredrummler.android.colorpicker.R$styleable: int[] MenuItem -com.amap.api.location.AMapLocation: int C -com.google.android.material.R$styleable: int SearchView_android_maxWidth -androidx.recyclerview.widget.StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem: android.os.Parcelable$Creator CREATOR -androidx.appcompat.R$styleable: int AppCompatTheme_dialogTheme -com.autonavi.aps.amapapi.model.AMapLocationServer: long o -androidx.work.R$attr: int fontProviderQuery -androidx.appcompat.R$bool: int abc_allow_stacked_button_bar -wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Dialog -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_collapseNotificationPanel_2 -com.google.gson.stream.JsonReader: long peekedLong -okhttp3.internal.http2.Http2Connection: void pushDataLater(int,okio.BufferedSource,int,boolean) -androidx.activity.R$layout: int notification_template_part_chronometer -com.google.android.material.R$attr: int itemSpacing -cyanogenmod.hardware.CMHardwareManager: int FEATURE_THERMAL_MONITOR -androidx.hilt.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalAlign -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit$Calculator unitCalculator -io.reactivex.internal.util.EmptyComponent -com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a e -androidx.constraintlayout.widget.R$attr: int crossfade -com.google.android.material.R$attr: int maxButtonHeight -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -james.adaptiveicon.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.R$id: int activity_alert_recyclerView -com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_default_thickness -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.R$styleable: int DialogPreference_negativeButtonText -wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_icon -cyanogenmod.themes.ThemeManager$1: void onProgress(int) -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver -io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite valueOf(java.lang.String) -androidx.constraintlayout.widget.R$attr: int windowActionBar -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCloseDrawable -androidx.appcompat.widget.SearchView: void setIconified(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Info -androidx.preference.R$styleable: int[] ListPreference -com.xw.repo.bubbleseekbar.R$string: int abc_menu_enter_shortcut_label -wangdaye.com.geometricweather.R$drawable: int notification_bg_low -okhttp3.internal.Util$2: Util$2(java.lang.String,boolean) -retrofit2.ParameterHandler$Body: int p -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String ShortPhrase -wangdaye.com.geometricweather.R$id: int alertTitle -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void cancel(java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit[] values() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitationProbability -com.jaredrummler.android.colorpicker.R$attr: int actionOverflowButtonStyle -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getVibratorIntensity() -com.xw.repo.bubbleseekbar.R$attr: int navigationIcon -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_TextInputEditText -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_measureWithLargestChild -androidx.lifecycle.SavedStateHandle: void set(java.lang.String,java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,io.reactivex.ObservableSource) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar_Indicator -com.google.android.material.R$color: int design_default_color_primary_dark -okio.Buffer: java.lang.String readUtf8Line(long) -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_OFF -androidx.lifecycle.MutableLiveData: MutableLiveData(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$attr: int state_liftable -com.turingtechnologies.materialscrollbar.R$id: int info -wangdaye.com.geometricweather.R$id: int showCustom -com.turingtechnologies.materialscrollbar.R$string: int path_password_eye -okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,long,okio.BufferedSource) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: int phenomenonId -wangdaye.com.geometricweather.R$drawable: int mtrl_ic_error -com.google.android.material.textfield.TextInputLayout: int getPlaceholderTextAppearance() -com.google.android.gms.internal.location.zzbe: android.os.Parcelable$Creator CREATOR -androidx.fragment.app.Fragment$InstantiationException -androidx.preference.R$attr: int contentInsetEnd -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: long endValidityTime -android.didikee.donate.R$attr: int checkedTextViewStyle -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_pivotX -com.github.rahatarmanahmed.cpv.R -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver inner -wangdaye.com.geometricweather.R$drawable: int weather_sleet_pixel -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_30 -com.bumptech.glide.integration.okhttp.R$dimen: int notification_action_text_size -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -androidx.appcompat.R$id: R$id() -okhttp3.internal.ws.RealWebSocket: void onReadClose(int,java.lang.String) -com.google.android.material.R$style: int Widget_Design_NavigationView -wangdaye.com.geometricweather.R$id: int notification_base_weather -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_end_padding -wangdaye.com.geometricweather.R$anim: int abc_fade_in -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense -androidx.hilt.work.R$dimen: int notification_right_side_padding_top -com.google.android.material.R$styleable: int Constraint_android_scaleY -okhttp3.internal.cache.DiskLruCache: void flush() -wangdaye.com.geometricweather.R$id: int dialog_time_setter_done -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Tooltip -androidx.appcompat.widget.Toolbar: int getContentInsetEndWithActions() -androidx.appcompat.R$attr: int trackTintMode -com.google.android.material.textfield.TextInputLayout: void setCounterTextAppearance(int) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_enabled -androidx.appcompat.R$styleable: int[] PopupWindow -com.google.android.material.chip.Chip: float getIconEndPadding() -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState UNDEFINED -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: CaiYunMainlyResult$CurrentBean$WindBean() -okhttp3.logging.HttpLoggingInterceptor$Logger$1: void log(java.lang.String) -com.google.android.material.R$attr: int spinnerDropDownItemStyle -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void updateWeather(cyanogenmod.weather.RequestInfo) -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.core.content.FileProvider: FileProvider() -androidx.lifecycle.ProcessLifecycleOwnerInitializer: boolean onCreate() -androidx.viewpager2.widget.ViewPager2: int getItemDecorationCount() -com.jaredrummler.android.colorpicker.R$styleable: int[] StateListDrawableItem -com.google.android.material.button.MaterialButton: void setBackgroundColor(int) -com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_FENCEID -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginEnd -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox -wangdaye.com.geometricweather.R$drawable: int notif_temp_62 -androidx.constraintlayout.widget.R$styleable: int OnClick_targetId -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_cancelOngoingRequests -io.reactivex.Observable: io.reactivex.observers.TestObserver test(boolean) -androidx.preference.R$layout: int notification_template_icon_group -cyanogenmod.content.Intent: java.lang.String EXTRA_RECENTS_LONG_PRESS_RELEASE -cyanogenmod.externalviews.KeyguardExternalView$8: boolean val$showing -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric -com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List daisan -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: androidx.lifecycle.LiveData mLiveData -wangdaye.com.geometricweather.R$attr: int deltaPolarRadius -androidx.core.widget.NestedScrollView: float getTopFadingEdgeStrength() -androidx.preference.R$attr: int actionModeCloseDrawable -androidx.constraintlayout.helper.widget.Flow: void setWrapMode(int) -androidx.lifecycle.ProcessLifecycleOwnerInitializer: android.database.Cursor query(android.net.Uri,java.lang.String[],java.lang.String,java.lang.String[],java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRealFeelShaderTemperature(java.lang.Integer) -james.adaptiveicon.R$attr: int editTextBackground -com.google.android.material.R$dimen: int mtrl_slider_widget_height -androidx.lifecycle.extensions.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index o3 -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float ParticulateMatter10 +com.google.android.material.R$id: int stop +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_textColor +okio.BufferedSource: boolean rangeEquals(long,okio.ByteString) +wangdaye.com.geometricweather.common.basic.models.options.DarkMode +com.google.android.material.R$styleable: int[] CollapsingToolbarLayout_Layout +okhttp3.OkHttpClient$Builder: okhttp3.CookieJar cookieJar +wangdaye.com.geometricweather.common.basic.models.weather.Current +androidx.appcompat.widget.SearchView$SavedState: android.os.Parcelable$Creator CREATOR +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver +com.google.android.material.R$styleable: int ConstraintSet_flow_lastHorizontalStyle +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_26 +androidx.activity.R$dimen: int compat_button_padding_vertical_material +james.adaptiveicon.R$dimen: int disabled_alpha_material_dark +cyanogenmod.app.StatusBarPanelCustomTile: long postTime +android.didikee.donate.R$attr: int logo +androidx.lifecycle.extensions.R$integer: R$integer() +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvDescription(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_font +com.turingtechnologies.materialscrollbar.R$id: int top +androidx.vectordrawable.animated.R$layout: int custom_dialog +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_imeOptions +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState SETUP +com.google.android.material.R$attr: int wavePeriod +com.google.android.material.R$layout: int abc_alert_dialog_button_bar_material +com.jaredrummler.android.colorpicker.R$id: int content +io.reactivex.internal.util.HashMapSupplier: java.lang.Object call() +androidx.lifecycle.MutableLiveData: MutableLiveData(java.lang.Object) +androidx.hilt.lifecycle.R$id: int icon_group +androidx.appcompat.resources.R$drawable: int notification_template_icon_bg +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalBias +okhttp3.TlsVersion: TlsVersion(java.lang.String,int,java.lang.String) +androidx.preference.R$attr: int icon +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_NoActionBar_Bridge +com.jaredrummler.android.colorpicker.R$drawable: int abc_tab_indicator_mtrl_alpha +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder name(java.lang.String) +androidx.lifecycle.LiveData$1: void run() +androidx.appcompat.resources.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.R$id: int transition_position +retrofit2.ServiceMethod: retrofit2.ServiceMethod parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method) +com.amap.api.location.AMapLocation: java.lang.String n +io.reactivex.Observable: io.reactivex.Observable timestamp(java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.PushObserver pushObserver +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +androidx.dynamicanimation.R$styleable: int FontFamilyFont_font +com.jaredrummler.android.colorpicker.R$attr: int tickMarkTint +wangdaye.com.geometricweather.db.entities.MinutelyEntity: long getTime() +com.google.android.material.chip.Chip: Chip(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetRight +androidx.constraintlayout.widget.R$id +androidx.viewpager2.R$styleable: int GradientColorItem_android_color +okhttp3.internal.http2.Http2Stream: void receiveHeaders(java.util.List) +com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetLeft +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_disabled_material_dark +androidx.preference.R$layout: int select_dialog_multichoice_material +androidx.preference.R$dimen: int highlight_alpha_material_light +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemBackgroundResource(int) +androidx.constraintlayout.widget.R$attr: int dragDirection +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarSplitStyle +cyanogenmod.app.Profile$TriggerState: int DISABLED +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType JPEG +com.google.android.material.R$layout: int text_view_with_theme_line_height +com.google.android.material.R$attr: int dropDownListViewStyle +androidx.preference.R$id: int accessibility_custom_action_2 +james.adaptiveicon.R$dimen: int abc_action_bar_default_padding_end_material +wangdaye.com.geometricweather.R$drawable: int abc_list_focused_holo +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: java.lang.Float min +androidx.preference.R$attr: int positiveButtonText +com.turingtechnologies.materialscrollbar.R$dimen: int notification_subtext_size +androidx.preference.R$styleable: int[] ActionMenuItemView +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +com.google.android.material.R$styleable: int Spinner_android_popupBackground +androidx.coordinatorlayout.R$id: int accessibility_custom_action_5 +androidx.appcompat.R$id: int accessibility_custom_action_23 +androidx.appcompat.R$id: int search_go_btn +wangdaye.com.geometricweather.R$drawable: int notif_temp_16 +wangdaye.com.geometricweather.R$attr: int counterEnabled +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: int getStatus() +androidx.preference.R$color: int bright_foreground_disabled_material_light +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_switchTextOn +wangdaye.com.geometricweather.R$drawable: int notif_temp_106 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: void setTo(java.util.Date) +com.google.android.material.chip.Chip: android.graphics.Rect getCloseIconTouchBoundsInt() +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okhttp3.MediaType contentType() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: MfWarningsResult$WarningConsequence() +wangdaye.com.geometricweather.db.entities.LocationEntity: void setProvince(java.lang.String) +com.google.android.gms.common.server.response.FastJsonResponse$Field: com.google.android.gms.common.server.response.zaj CREATOR +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginTop +androidx.transition.R$styleable: int FontFamilyFont_android_ttcIndex +okio.Okio: okio.Sink blackhole() +androidx.preference.R$style: int Base_V26_Theme_AppCompat +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.functions.Consumer disposer +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_111 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeight +androidx.constraintlayout.widget.R$styleable: int SearchView_android_inputType +cyanogenmod.themes.ThemeManager: void requestThemeChange(java.lang.String,java.util.List,boolean) +cyanogenmod.profiles.StreamSettings$1: cyanogenmod.profiles.StreamSettings[] newArray(int) +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +wangdaye.com.geometricweather.R$styleable: int ActionBar_homeAsUpIndicator +androidx.viewpager.R$style: int Widget_Compat_NotificationActionContainer +androidx.constraintlayout.widget.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +androidx.appcompat.widget.AppCompatSpinner: void setPrompt(java.lang.CharSequence) +com.github.rahatarmanahmed.cpv.BuildConfig: int VERSION_CODE +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginStart +cyanogenmod.app.Profile: Profile(android.os.Parcel) +com.amap.api.fence.GeoFenceClient: void resumeGeoFence() +com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_dark +com.google.android.material.R$styleable: int Layout_maxHeight +cyanogenmod.app.suggest.AppSuggestManager: boolean handles(android.content.Intent) +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation RIGHT wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeContainer -com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_default_thickness -cyanogenmod.weather.CMWeatherManager: java.lang.String getActiveWeatherServiceProviderLabel() -androidx.viewpager2.R$dimen: int notification_main_column_padding_top -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setRightToLeft(boolean) -cyanogenmod.app.Profile: void setTrigger(cyanogenmod.app.Profile$ProfileTrigger) -androidx.preference.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -androidx.swiperefreshlayout.R$dimen -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$attr: int singleChoiceItemLayout -com.google.android.material.R$styleable: int Toolbar_logo -androidx.hilt.R$attr: int font -wangdaye.com.geometricweather.R$color: int cardview_shadow_end_color -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder host(java.lang.String) -androidx.activity.R$integer -com.xw.repo.bubbleseekbar.R$dimen: int notification_big_circle_margin -com.amap.api.fence.GeoFenceManagerBase: boolean removeGeoFence(com.amap.api.fence.GeoFence) -james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Dialog -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.amap.api.fence.PoiItem: java.lang.String b -io.reactivex.internal.observers.ForEachWhileObserver: void onError(java.lang.Throwable) -com.google.android.material.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -retrofit2.CallAdapter$Factory: java.lang.Class getRawType(java.lang.reflect.Type) -androidx.preference.R$styleable: int AppCompatSeekBar_tickMark -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.HistoryEntity) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setPressure(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_android_orderingFromXml -okhttp3.Cache$Entry: okhttp3.Headers responseHeaders -okhttp3.internal.platform.Jdk9Platform: java.lang.reflect.Method getProtocolMethod -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onComplete() -okhttp3.CacheControl: boolean mustRevalidate -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: java.lang.String icon -com.google.android.material.R$styleable: int MenuItem_android_alphabeticShortcut -james.adaptiveicon.R$attr: int arrowHeadLength -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getShortDate(android.content.Context) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void refresh() -com.xw.repo.bubbleseekbar.R$attr: int iconifiedByDefault -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void otherError(java.lang.Throwable) -com.google.android.material.R$attr: int iconTintMode -androidx.lifecycle.ComputableLiveData$2: void run() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_popupWindowStyle -com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onProgressUpdateEnd(float) -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation -androidx.preference.R$styleable: int GradientColor_android_tileMode +androidx.preference.PreferenceDialogFragmentCompat +wangdaye.com.geometricweather.R$attr: int msb_barThickness +androidx.constraintlayout.widget.R$string: int abc_menu_delete_shortcut_label +cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri FORECAST_WEATHER_URI +com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$dimen: int notification_large_icon_width +com.google.android.material.R$styleable: int Layout_android_layout_width +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar_FullWidth +retrofit2.Converter$Factory: Converter$Factory() +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric Metric +androidx.appcompat.R$drawable: int abc_text_select_handle_middle_mtrl_light +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCutDrawable +cyanogenmod.themes.ThemeChangeRequest: int describeContents() +com.google.android.material.R$id: int line1 +wangdaye.com.geometricweather.R$color: int colorTextGrey +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostResumed(android.app.Activity) +androidx.viewpager2.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.R$attr: int startIconDrawable +okio.GzipSink: java.util.zip.CRC32 crc +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void cancelOngoingRequests() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline5 +androidx.preference.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setPoint(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean) +cyanogenmod.providers.CMSettings$System: java.lang.String VOLBTN_MUSIC_CONTROLS +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextColor(android.content.res.ColorStateList) +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +com.xw.repo.bubbleseekbar.R$attr: int closeItemLayout +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_94 +androidx.constraintlayout.widget.R$attr: int layout_constraintCircleRadius +okhttp3.internal.connection.RealConnection: okhttp3.Protocol protocol +com.bumptech.glide.load.HttpException: int statusCode +com.google.android.material.R$id: int split_action_bar +com.amap.api.fence.GeoFence: java.lang.String getPendingIntentAction() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Large +com.turingtechnologies.materialscrollbar.R$attr: int tickMarkTint +retrofit2.Retrofit: java.util.List converterFactories +com.google.android.material.R$styleable: int MaterialButtonToggleGroup_singleSelection +com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuItem +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionDropDownStyle +wangdaye.com.geometricweather.R$id: int material_timepicker_mode_button +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: android.os.IBinder asBinder() +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_dialogType +com.google.android.material.R$dimen: int mtrl_fab_translation_z_pressed +wangdaye.com.geometricweather.R$string: int settings_title_live_wallpaper +okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithIncrementalIndexingIndexedName(int) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_2 +cyanogenmod.externalviews.ExternalView: android.content.ServiceConnection mServiceConnection +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +com.google.android.material.R$dimen: int mtrl_extended_fab_start_padding_icon +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener mListener +androidx.fragment.R$styleable: int FragmentContainerView_android_tag +cyanogenmod.profiles.BrightnessSettings: BrightnessSettings() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindDirection +androidx.preference.R$drawable: int abc_list_selector_background_transition_holo_dark +androidx.appcompat.R$color: int tooltip_background_dark +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_3G +retrofit2.ParameterHandler$PartMap +com.amap.api.location.DPoint: void setLatitude(double) +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: android.os.IBinder asBinder() +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: int limit +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintStart_toStartOf +androidx.hilt.R$id: R$id() +android.support.v4.os.ResultReceiver$1: android.support.v4.os.ResultReceiver[] newArray(int) +com.google.android.material.slider.RangeSlider: void setTickTintList(android.content.res.ColorStateList) +androidx.appcompat.R$attr: int autoSizeTextType +androidx.constraintlayout.widget.R$attr: int textAppearanceListItemSmall +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(double) +okhttp3.internal.http2.Http2Connection: int AWAIT_PING +wangdaye.com.geometricweather.settings.activities.CardDisplayManageActivity +cyanogenmod.platform.Manifest$permission: java.lang.String PROTECTED_APP +cyanogenmod.externalviews.ExternalViewProviderService: android.view.WindowManager access$400(cyanogenmod.externalviews.ExternalViewProviderService) +okhttp3.logging.LoggingEventListener: void connectEnd(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol) +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +androidx.vectordrawable.animated.R$dimen: int notification_big_circle_margin +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircleRadius +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Medium_Inverse +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Icon okio.Buffer: okio.ByteString sha1() -com.turingtechnologies.materialscrollbar.R$color: int accent_material_light -androidx.vectordrawable.animated.R$layout -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeight -wangdaye.com.geometricweather.R$anim: int abc_shrink_fade_out_from_bottom -androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context) -okio.RealBufferedSink: long writeAll(okio.Source) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String uvDescription -cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup getNotificationGroup(android.os.ParcelUuid) -cyanogenmod.app.LiveLockScreenInfo$1: java.lang.Object createFromParcel(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$style: int Preference_Category_Material -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference upstream -com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_begin -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: MfRainResult$Position() -com.google.android.material.slider.RangeSlider: void setMinSeparationValue(float) -wangdaye.com.geometricweather.R$attr: int subtitleTextAppearance -androidx.constraintlayout.widget.R$color: int abc_tint_btn_checkable -wangdaye.com.geometricweather.R$attr: int seekBarStyle -androidx.preference.R$dimen: int abc_edit_text_inset_bottom_material -android.didikee.donate.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -androidx.hilt.lifecycle.R$dimen: int notification_big_circle_margin -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: java.lang.String DESCRIPTOR -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onComplete() -android.support.v4.os.ResultReceiver: ResultReceiver(android.os.Handler) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarStyle -com.jaredrummler.android.colorpicker.R$attr: int fontVariationSettings -okhttp3.internal.http2.Http2Stream$FramingSource: okhttp3.internal.http2.Http2Stream this$0 -androidx.swiperefreshlayout.R$dimen: int notification_large_icon_width -com.turingtechnologies.materialscrollbar.R$attr: int toolbarStyle -wangdaye.com.geometricweather.R$drawable: int ic_delete -okhttp3.ConnectionPool: java.lang.Runnable cleanupRunnable -cyanogenmod.app.Profile$ProfileTrigger: int mState -okhttp3.Cache$Entry: java.lang.String message -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_buttonPanelSideLayout -okhttp3.Cache -androidx.legacy.coreutils.R$dimen: int notification_right_side_padding_top -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: FlowableOnBackpressureBuffer$BackpressureBufferSubscriber(org.reactivestreams.Subscriber,int,boolean,boolean,io.reactivex.functions.Action) -android.didikee.donate.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -androidx.lifecycle.HasDefaultViewModelProviderFactory: androidx.lifecycle.ViewModelProvider$Factory getDefaultViewModelProviderFactory() -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -wangdaye.com.geometricweather.R$id: int activity_widget_config_wall -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_min -androidx.hilt.work.R$id: int dialog_button -androidx.work.R$styleable: int FontFamilyFont_android_ttcIndex -com.xw.repo.bubbleseekbar.R$attr: int titleMarginEnd -wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogIcon -james.adaptiveicon.R$color: int abc_btn_colored_text_material -com.jaredrummler.android.colorpicker.R$styleable: int Preference_iconSpaceReserved -cyanogenmod.weather.WeatherInfo$DayForecast: void writeToParcel(android.os.Parcel,int) -androidx.appcompat.resources.R$styleable: int GradientColor_android_type -retrofit2.KotlinExtensions: java.lang.Object awaitResponse(retrofit2.Call,kotlin.coroutines.Continuation) -android.support.v4.app.INotificationSideChannel$Default -com.google.android.material.R$style: int TextAppearance_AppCompat_Caption -com.google.android.material.R$styleable: int RecyclerView_stackFromEnd -androidx.activity.R$id: int accessibility_custom_action_7 -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: ObservableRetryBiPredicate$RetryBiObserver(io.reactivex.Observer,io.reactivex.functions.BiPredicate,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$color: int material_on_surface_emphasis_high_type -com.google.android.material.R$attr: int helperText -wangdaye.com.geometricweather.R$string: int key_widget_trend_daily -okhttp3.internal.http2.PushObserver$1: boolean onRequest(int,java.util.List) -com.google.android.material.R$styleable: int KeyCycle_motionTarget -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void clear() -wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_creator -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -wangdaye.com.geometricweather.R$attr: int checkedIconSize -james.adaptiveicon.R$dimen: int tooltip_y_offset_touch -com.google.android.material.R$attr: int queryBackground -okhttp3.internal.Util: boolean discard(okio.Source,int,java.util.concurrent.TimeUnit) -com.google.android.material.R$dimen: int mtrl_slider_thumb_radius -okhttp3.internal.http2.Hpack$Reader: okio.BufferedSource source -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierMargin -okio.RealBufferedSink: void flush() -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean cancelled -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeCloudCover -androidx.constraintlayout.widget.R$styleable: int Toolbar_menu -androidx.preference.R$id: int accessibility_custom_action_3 -com.xw.repo.bubbleseekbar.R$string: int abc_menu_function_shortcut_label -cyanogenmod.power.IPerformanceManager$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter -com.turingtechnologies.materialscrollbar.R$attr: int layoutManager -retrofit2.ParameterHandler$1 -okhttp3.Cache$Entry: boolean isHttps() -android.support.v4.os.IResultReceiver$Stub$Proxy: IResultReceiver$Stub$Proxy(android.os.IBinder) -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory -com.loc.k: void a(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: java.lang.String Unit -androidx.preference.R$integer: R$integer() -okhttp3.Address: boolean equals(java.lang.Object) -com.google.android.material.R$layout: int mtrl_calendar_month_labeled -com.google.android.material.R$styleable: int AppCompatTheme_windowFixedWidthMinor -androidx.preference.R$styleable: int AppCompatTheme_popupMenuStyle -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$color: int primary_text_disabled_material_dark -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean mainDone -androidx.constraintlayout.widget.R$attr: int subtitleTextColor -android.didikee.donate.R$style: int Base_V22_Theme_AppCompat_Light -androidx.cardview.R$attr: int cardUseCompatPadding -okhttp3.internal.platform.Platform: void connectSocket(java.net.Socket,java.net.InetSocketAddress,int) -wangdaye.com.geometricweather.R$color: int secondary_text_disabled_material_dark -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean isDisposed() -androidx.drawerlayout.R$id: int icon +com.jaredrummler.android.colorpicker.R$attr: int colorPrimary +okhttp3.internal.connection.ConnectionSpecSelector +io.reactivex.internal.observers.ForEachWhileObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.xw.repo.BubbleSeekBar: float getMin() +androidx.appcompat.R$layout: int abc_screen_simple +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.lang.Object enterTransform(java.lang.Object) +androidx.vectordrawable.animated.R$style: int Widget_Compat_NotificationActionContainer +androidx.fragment.R$dimen: int notification_small_icon_background_padding +androidx.appcompat.R$attr: int ratingBarStyle +wangdaye.com.geometricweather.R$styleable: int Constraint_motionProgress +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.google.android.material.R$id: int expanded_menu +io.reactivex.internal.disposables.SequentialDisposable: long serialVersionUID +android.didikee.donate.R$styleable: int[] ViewStubCompat +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWeatherPhase() +com.turingtechnologies.materialscrollbar.R$id: int action_bar_activity_content +wangdaye.com.geometricweather.R$drawable: int notif_temp_112 +androidx.constraintlayout.widget.R$id: int titleDividerNoCustom +com.amap.api.location.AMapLocation: java.lang.String f(com.amap.api.location.AMapLocation,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int OnSwipe_nestedScrollFlags +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.String icon +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) +wangdaye.com.geometricweather.R$attr: int drawableTintMode +com.jaredrummler.android.colorpicker.R$dimen: R$dimen() +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit[] values() +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver parent +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver(io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver) +com.google.android.material.R$attr: int numericModifiers +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitationProbability +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: CallExecuteObservable$CallDisposable(retrofit2.Call) +cyanogenmod.externalviews.KeyguardExternalView$10: KeyguardExternalView$10(cyanogenmod.externalviews.KeyguardExternalView) +androidx.constraintlayout.widget.R$string +androidx.constraintlayout.widget.R$dimen: int disabled_alpha_material_dark +cyanogenmod.themes.IThemeService: int getProgress() +androidx.viewpager.R$id: int tag_unhandled_key_listeners +james.adaptiveicon.R$dimen: int abc_control_corner_material +androidx.preference.R$attr: int preferenceFragmentStyle +androidx.dynamicanimation.R$drawable: int notification_template_icon_low_bg +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarSplitStyle +okhttp3.internal.tls.BasicTrustRootIndex: java.util.Map subjectToCaCerts +okio.GzipSource: GzipSource(okio.Source) +io.reactivex.Observable: void safeSubscribe(io.reactivex.Observer) +com.google.android.material.R$color: int abc_hint_foreground_material_light +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge +androidx.appcompat.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +okhttp3.OkHttpClient: javax.net.ssl.HostnameVerifier hostnameVerifier() +androidx.constraintlayout.widget.R$styleable: int[] OnClick +com.google.gson.stream.JsonScope: int EMPTY_OBJECT +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_GCM_SHA256 +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onBouncerShowing +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customIntegerValue +okhttp3.internal.http2.Http2Stream$FramingSink: okio.Buffer sendBuffer +androidx.appcompat.R$styleable: int AppCompatTheme_windowMinWidthMajor +wangdaye.com.geometricweather.R$dimen: int cpv_item_horizontal_padding +com.google.android.material.R$integer: int mtrl_calendar_selection_text_lines +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date moonriseTime +androidx.preference.R$style: int Base_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum +androidx.lifecycle.Transformations$1: androidx.arch.core.util.Function val$mapFunction +wangdaye.com.geometricweather.R$attr: int cpv_previewSize +com.jaredrummler.android.colorpicker.R$drawable: int abc_control_background_material +android.didikee.donate.R$styleable: int AppCompatTheme_switchStyle +cyanogenmod.externalviews.ExternalView$5: ExternalView$5(cyanogenmod.externalviews.ExternalView) +androidx.swiperefreshlayout.R$id: int action_image +io.reactivex.observers.TestObserver$EmptyObserver: void onComplete() +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: ObservableConcatWithSingle$ConcatWithObserver(io.reactivex.Observer,io.reactivex.SingleSource) +com.jaredrummler.android.colorpicker.R$attr: int displayOptions +com.google.android.material.R$style: int Widget_MaterialComponents_Button_OutlinedButton +androidx.recyclerview.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +com.jaredrummler.android.colorpicker.R$attr: int editTextBackground +james.adaptiveicon.R$dimen: int abc_control_inset_material +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +androidx.appcompat.widget.ActionBarContextView: void setCustomView(android.view.View) +wangdaye.com.geometricweather.R$attr: int chipMinHeight +wangdaye.com.geometricweather.R$attr: int switchTextOn +androidx.activity.R$styleable: int GradientColor_android_startColor +okhttp3.Dispatcher: void cancelAll() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +androidx.appcompat.R$dimen: int abc_action_button_min_width_material +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayGammaCalibration(int,int[]) +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_font +androidx.swiperefreshlayout.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceStyle +com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_title_material +cyanogenmod.externalviews.ExternalViewProperties: int[] mScreenCoords +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableEndCompat +com.amap.api.location.DPoint: double getLatitude() +androidx.appcompat.resources.R$id: int icon +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Alert_Bridge +androidx.appcompat.R$attr: int colorControlActivated +com.jaredrummler.android.colorpicker.R$dimen: int notification_action_icon_size +com.google.android.material.internal.VisibilityAwareImageButton +androidx.preference.R$attr: int gapBetweenBars +androidx.work.R$id: int notification_main_column +com.jaredrummler.android.colorpicker.R$drawable: int notify_panel_notification_icon_bg +androidx.preference.R$styleable: int SeekBarPreference_android_layout +james.adaptiveicon.R$attr: int paddingEnd +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum Maximum +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int getStatus() +androidx.appcompat.widget.LinearLayoutCompat: int getBaselineAlignedChildIndex() +com.turingtechnologies.materialscrollbar.DragScrollBar: float getHideRatio() +androidx.vectordrawable.R$dimen: int compat_button_padding_horizontal_material +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isSingle +com.xw.repo.bubbleseekbar.R$attr: int drawableSize +retrofit2.ParameterHandler$RawPart: retrofit2.ParameterHandler$RawPart INSTANCE +okhttp3.Address: java.util.List protocols() +androidx.work.R$string +okhttp3.logging.HttpLoggingInterceptor: boolean bodyHasUnknownEncoding(okhttp3.Headers) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int NO_REQUEST_HAS_VALUE +com.xw.repo.bubbleseekbar.R$layout: int abc_activity_chooser_view +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.google.android.material.R$attr: int trackHeight +com.bumptech.glide.integration.okhttp.R$styleable: int[] FontFamily +com.turingtechnologies.materialscrollbar.R$attr: int closeItemLayout +com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_corner_material +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: void dispose() +androidx.appcompat.widget.ScrollingTabContainerView: void setAllowCollapse(boolean) +wangdaye.com.geometricweather.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +james.adaptiveicon.R$attr: int activityChooserViewStyle +androidx.constraintlayout.widget.R$style: int Base_AlertDialog_AppCompat +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean isDisposed() +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode[] values() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getSerialNumber +wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$attr: int maxImageSize +cyanogenmod.externalviews.KeyguardExternalView$2: void setInteractivity(boolean) cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_SLEET -wangdaye.com.geometricweather.R$string: int key_forecast_today_time -wangdaye.com.geometricweather.R$id: int mtrl_picker_header -androidx.preference.R$style: int Base_Widget_AppCompat_Spinner -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int OTHER_STATE_CONSUMED_OR_EMPTY -com.turingtechnologies.materialscrollbar.R$dimen: int abc_search_view_preferred_width -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property So2 -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItem -androidx.hilt.lifecycle.R$anim: int fragment_fast_out_extra_slow_in -wangdaye.com.geometricweather.R$styleable: int MotionScene_layoutDuringTransition -wangdaye.com.geometricweather.R$id: int password_toggle -androidx.constraintlayout.widget.R$attr: int flow_lastHorizontalBias -james.adaptiveicon.R$integer: int config_tooltipAnimTime -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemIconDisabledAlpha -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: AccuDailyResult$DailyForecasts$Night$Wind$Direction() -androidx.customview.R$style: int Widget_Compat_NotificationActionText -androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMarkTint -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getAqiIndex() -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleEnabled -com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar_FullWidth -okhttp3.Response$Builder: okhttp3.Response$Builder priorResponse(okhttp3.Response) +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_button_material +androidx.hilt.lifecycle.R$attr: int fontProviderFetchTimeout +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Small +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String info +com.jaredrummler.android.colorpicker.R$attr: int color +androidx.appcompat.R$color: int abc_tint_default +wangdaye.com.geometricweather.R$layout: int test_toolbar_surface +cyanogenmod.hardware.DisplayMode: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_anchor +androidx.fragment.R$id +com.jaredrummler.android.colorpicker.R$attr: int background +com.google.android.material.R$attr: int haloColor +wangdaye.com.geometricweather.R$xml: int live_wallpaper +wangdaye.com.geometricweather.R$id: int adjust_width +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: double Value +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Primary +com.google.android.material.R$styleable: int CoordinatorLayout_statusBarBackground +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.R$id: int action_bar_container +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(okhttp3.HttpUrl) +com.turingtechnologies.materialscrollbar.R$attr: int snackbarButtonStyle +wangdaye.com.geometricweather.R$id: int screen +android.didikee.donate.R$anim: int abc_slide_out_bottom +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType TransactionRunnable +wangdaye.com.geometricweather.R$interpolator: int mtrl_fast_out_slow_in +wangdaye.com.geometricweather.R$styleable: int SearchView_android_focusable +androidx.lifecycle.SavedStateHandle: java.lang.Class[] ACCEPTABLE_CLASSES +wangdaye.com.geometricweather.R$id: int honorRequest +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.util.AtomicThrowable errors +io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type ownerType +wangdaye.com.geometricweather.R$id: int fill_vertical +com.xw.repo.bubbleseekbar.R$style: int Widget_Compat_NotificationActionContainer +com.google.android.material.R$id: int mtrl_picker_header +retrofit2.Utils: java.lang.reflect.Type resolve(java.lang.reflect.Type,java.lang.Class,java.lang.reflect.Type) +cyanogenmod.profiles.AirplaneModeSettings: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_124 +wangdaye.com.geometricweather.R$dimen: int abc_text_size_body_2_material +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver +android.didikee.donate.R$styleable: int Toolbar_navigationIcon +cyanogenmod.weather.WeatherInfo$DayForecast: int hashCode() +com.turingtechnologies.materialscrollbar.R$attr: int statusBarBackground +androidx.preference.R$id: int accessibility_custom_action_7 +okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE +io.reactivex.internal.subscriptions.BasicQueueSubscription: void request(long) +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderAuthority +com.turingtechnologies.materialscrollbar.DragScrollBar +androidx.preference.R$attr: int showTitle +com.google.android.material.R$attr: int placeholderTextAppearance +okio.ByteString: java.lang.String string(java.nio.charset.Charset) +androidx.vectordrawable.R$color: int ripple_material_light +cyanogenmod.app.CustomTile$ExpandedListItem: CustomTile$ExpandedListItem() +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void tryEmit(java.lang.Object,io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) +androidx.appcompat.R$styleable: int Toolbar_popupTheme +com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyleSmall +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade() +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getSupportedFeatures() +androidx.preference.R$color: int material_deep_teal_500 +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +retrofit2.CallAdapter: java.lang.reflect.Type responseType() +wangdaye.com.geometricweather.R$styleable: int CardView_cardPreventCornerOverlap +com.google.android.material.bottomnavigation.BottomNavigationView$SavedState +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked +james.adaptiveicon.R$dimen: int abc_dialog_list_padding_top_no_title +okhttp3.Request: java.lang.String method() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: long maxAge +com.bumptech.glide.integration.okhttp.R$styleable: int[] GradientColorItem +androidx.core.R$styleable: int FontFamilyFont_fontStyle +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +com.google.android.material.R$attr: int foregroundInsidePadding +cyanogenmod.providers.CMSettings$Secure$1: CMSettings$Secure$1() +androidx.vectordrawable.R$dimen +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: double Value +androidx.legacy.coreutils.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.R$dimen: int abc_select_dialog_padding_start_material +androidx.activity.R$drawable: int notification_bg_normal_pressed +androidx.appcompat.R$style: int Base_Animation_AppCompat_DropDownUp +com.amap.api.location.AMapLocation: void setLatitude(double) +androidx.recyclerview.widget.RecyclerView$SavedState: android.os.Parcelable$Creator CREATOR +com.jaredrummler.android.colorpicker.R$color: int abc_secondary_text_material_dark +androidx.appcompat.R$styleable: int Toolbar_titleMarginEnd +wangdaye.com.geometricweather.R$drawable: int abc_item_background_holo_dark +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setNightIndicatorRotation(float) +androidx.preference.R$attr: int selectableItemBackground +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherText +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Category +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_expandedHintEnabled +com.google.android.material.R$dimen: int design_bottom_navigation_text_size +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetTop +cyanogenmod.externalviews.ExternalView$1: void onServiceConnected(android.content.ComponentName,android.os.IBinder) +androidx.hilt.work.R$dimen: int compat_button_inset_horizontal_material +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_SHOW_WEATHER_VALIDATOR +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX() +com.jaredrummler.android.colorpicker.R$id: int split_action_bar +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast +com.jaredrummler.android.colorpicker.R$layout +io.reactivex.internal.util.AtomicThrowable: AtomicThrowable() +androidx.loader.R$styleable: int[] FontFamily +androidx.appcompat.R$style: int TextAppearance_AppCompat_Medium_Inverse +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getAqi() +com.jaredrummler.android.colorpicker.R$styleable: int Preference_iconSpaceReserved +okhttp3.internal.http.RetryAndFollowUpInterceptor: int retryAfter(okhttp3.Response,int) +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit PERCENT +com.google.android.material.R$styleable: int MotionScene_layoutDuringTransition +com.bumptech.glide.load.engine.GlideException: com.bumptech.glide.load.DataSource dataSource +com.google.android.material.card.MaterialCardView: void setCheckedIconResource(int) +james.adaptiveicon.R$attr: int closeItemLayout +android.didikee.donate.R$id: int textSpacerNoTitle +retrofit2.RequestBuilder: okhttp3.FormBody$Builder formBuilder +wangdaye.com.geometricweather.R$styleable: int TagView_checked_background_color +com.google.android.material.R$attr: int snackbarButtonStyle com.xw.repo.bubbleseekbar.R$color: int abc_btn_colored_text_material -com.google.android.material.R$layout: int notification_template_custom_big -com.google.android.material.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatSeekBar -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeDegreeDayTemperature -wangdaye.com.geometricweather.R$id: int material_value_index -cyanogenmod.providers.CMSettings$Secure: java.lang.String VIBRATOR_INTENSITY -okhttp3.Route: java.lang.String toString() -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: int minuteInterval -com.google.android.material.R$dimen: int abc_action_bar_content_inset_material -com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonTint -okio.DeflaterSink: DeflaterSink(okio.BufferedSink,java.util.zip.Deflater) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_stroke_width_default -androidx.appcompat.R$id: int accessibility_action_clickable_span -okio.RealBufferedSink$1: RealBufferedSink$1(okio.RealBufferedSink) -com.baidu.location.e.p: java.util.List a(org.json.JSONObject,java.lang.String,int) -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okhttp3.MediaType contentType() -androidx.constraintlayout.widget.R$styleable: int Constraint_barrierMargin -androidx.appcompat.R$integer: int abc_config_activityShortDur -james.adaptiveicon.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$styleable: int SearchView_layout -james.adaptiveicon.R$styleable: int[] ViewBackgroundHelper -com.turingtechnologies.materialscrollbar.R$attr: int colorSwitchThumbNormal -wangdaye.com.geometricweather.R$id: int grassIcon -com.google.android.material.circularreveal.CircularRevealFrameLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -okhttp3.internal.NamedRunnable: java.lang.String name -okhttp3.RequestBody$3: void writeTo(okio.BufferedSink) -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar -okio.DeflaterSink: void close() -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getShortTemperatureText(android.content.Context,int) -wangdaye.com.geometricweather.R$attr: int bsb_show_section_text -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_creator -james.adaptiveicon.R$attr: int autoSizeMinTextSize -com.google.android.gms.base.R$string: int common_google_play_services_wear_update_text -james.adaptiveicon.R$id: int src_over -wangdaye.com.geometricweather.R$attr: int switchPadding -androidx.preference.R$style: int Preference_SeekBarPreference -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: ObservableTimeout$TimeoutConsumer(long,io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutSelectorSupport) -androidx.core.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String zh_TW -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView -androidx.constraintlayout.widget.R$drawable: int btn_radio_off_mtrl -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Small -okhttp3.internal.http2.Http2Stream: void receiveRstStream(okhttp3.internal.http2.ErrorCode) -wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_height_major -androidx.work.R$id: int action_container -cyanogenmod.externalviews.ExternalViewProperties: int getWidth() -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabRippleColor -com.google.android.material.slider.Slider: float getValueTo() -com.bumptech.glide.integration.okhttp.R$id: int forever -androidx.work.R$styleable: int[] FontFamilyFont -androidx.preference.R$id: int search_voice_btn -james.adaptiveicon.R$id: int action_bar_subtitle -okhttp3.internal.ws.RealWebSocket: void onReadPing(okio.ByteString) -wangdaye.com.geometricweather.R$attr: int selectionRequired -androidx.work.InputMerger: InputMerger() -okhttp3.internal.tls.CertificateChainCleaner -com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomSheetBehavior_Layout -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer realFeelTemperature -android.didikee.donate.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -com.jaredrummler.android.colorpicker.R$attr: int switchMinWidth -okhttp3.internal.http2.Http2Connection$7: int val$streamId -com.bumptech.glide.integration.okhttp.R$attr: int font -io.reactivex.Observable: io.reactivex.Observable join(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int HIGH_NOTIFICATION_STATE -androidx.core.R$styleable: int GradientColor_android_startY -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_medium_material -com.google.android.material.R$attr: int backgroundInsetBottom -james.adaptiveicon.R$attr: int windowActionBar -wangdaye.com.geometricweather.common.basic.models.weather.Astro -okhttp3.CacheControl: boolean immutable() -androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet,int) -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_trackTint -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_29 -cyanogenmod.weather.RequestInfo: int TYPE_WEATHER_BY_WEATHER_LOCATION_REQ -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_normal -james.adaptiveicon.R$style: int Base_Animation_AppCompat_Tooltip -androidx.appcompat.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_light -com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_linear_out_slow_in -androidx.appcompat.R$drawable: int abc_btn_borderless_material -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA -com.google.android.material.switchmaterial.SwitchMaterial -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_22 -com.google.android.material.chip.Chip: void setCheckedIconEnabled(boolean) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_RESET -james.adaptiveicon.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.swiperefreshlayout.R$id: int normal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: int getStatus() -android.support.v4.app.RemoteActionCompatParcelizer: RemoteActionCompatParcelizer() -com.google.android.gms.base.R$string: int common_google_play_services_install_title -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackground(android.graphics.drawable.Drawable) -android.didikee.donate.R$id: int ifRoom -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconVisible -com.google.android.material.R$styleable: int Tooltip_android_textAppearance -androidx.core.R$id: int accessibility_custom_action_13 -okio.Okio$2 -com.jaredrummler.android.colorpicker.R$attr: int editTextPreferenceStyle -com.xw.repo.bubbleseekbar.R$attr: int alphabeticModifiers -com.google.android.material.R$id: int container -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView_Menu -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: byte[] readPersistentBytes(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.String getAqiText() -okhttp3.Request$Builder: okhttp3.Request build() -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableItem_android_drawable -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties -cyanogenmod.profiles.AirplaneModeSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.main.MainActivityViewModel -android.didikee.donate.R$id: int image -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,java.util.concurrent.Callable,boolean) -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$id: int dialog_donate_wechat -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getCloudCover() -retrofit2.RequestBuilder: okhttp3.Request$Builder get() -retrofit2.ParameterHandler$Field: java.lang.String name -james.adaptiveicon.AdaptiveIconView: android.graphics.Path getPath() -io.reactivex.Observable: java.lang.Object as(io.reactivex.ObservableConverter) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Body1 -com.google.android.material.R$id: int titleDividerNoCustom -android.didikee.donate.R$style: int Widget_AppCompat_Button_Small -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableRightCompat -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: void run() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeLevel -androidx.preference.R$layout: int abc_screen_simple_overlay_action_mode -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop -wangdaye.com.geometricweather.R$color: int background_floating_material_light -james.adaptiveicon.R$id: int titleDividerNoCustom -cyanogenmod.profiles.LockSettings: int mValue -wangdaye.com.geometricweather.R$drawable: int notif_temp_102 -wangdaye.com.geometricweather.R$drawable: int selectable_item_background_borderless -okio.ForwardingTimeout: okio.Timeout clearTimeout() -android.didikee.donate.R$attr: int buttonTintMode -okhttp3.internal.connection.ConnectInterceptor: ConnectInterceptor(okhttp3.OkHttpClient) -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DrawingDelegate getCurrentDrawingDelegate() -okhttp3.Cookie: boolean domainMatch(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer degreeDayTemperature -cyanogenmod.externalviews.ExternalViewProviderService: ExternalViewProviderService() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: MfForecastV2Result() -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_key -com.google.android.gms.common.internal.zzv -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void drainLoop() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_scaleY -androidx.preference.R$drawable: int abc_popup_background_mtrl_mult -okio.RealBufferedSink: int write(java.nio.ByteBuffer) -wangdaye.com.geometricweather.R$string: int key_weather_source -androidx.appcompat.R$layout: int abc_search_dropdown_item_icons_2line -com.google.android.gms.signin.internal.zab -okhttp3.internal.cache2.FileOperator: void read(long,okio.Buffer,long) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer ragweedLevel -com.google.android.material.R$styleable: int CollapsingToolbarLayout_toolbarId -io.reactivex.internal.queue.SpscArrayQueue: java.lang.Object lvElement(int) -com.turingtechnologies.materialscrollbar.R$attr: int windowFixedWidthMajor -wangdaye.com.geometricweather.background.polling.basic.ForegroundUpdateService -androidx.preference.R$attr: int firstBaselineToTopHeight -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder path(java.lang.String) -cyanogenmod.app.Profile$LockMode: int DISABLE -okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] publicSuffixListBytes -com.github.rahatarmanahmed.cpv.BuildConfig: BuildConfig() -androidx.recyclerview.widget.RecyclerView: void removeOnItemTouchListener(androidx.recyclerview.widget.RecyclerView$OnItemTouchListener) -com.google.android.material.R$attr: int behavior_overlapTop -cyanogenmod.weather.WeatherInfo: double getTodaysHigh() -com.google.android.material.R$id: int search_edit_frame -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_14 -com.google.android.material.R$style: int Base_Widget_AppCompat_PopupMenu -androidx.constraintlayout.widget.R$attr: int layout_constraintRight_toLeftOf -cyanogenmod.profiles.ConnectionSettings$BooleanState: int STATE_DISALED -androidx.appcompat.R$style: int TextAppearance_Compat_Notification -com.jaredrummler.android.colorpicker.R$color: int notification_icon_bg_color -androidx.constraintlayout.widget.R$styleable: int MotionLayout_motionProgress -androidx.hilt.lifecycle.R$id: int info -cyanogenmod.weatherservice.ServiceRequestResult: java.util.List mLocationLookupList -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.R$id: int activity_widget_config_widgetContainer -wangdaye.com.geometricweather.R$drawable: int notif_temp_103 -wangdaye.com.geometricweather.R$dimen: int preference_seekbar_padding_vertical -androidx.constraintlayout.widget.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_light -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int layout_goneMarginTop -wangdaye.com.geometricweather.R$id: int ignore -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText -com.google.android.material.R$styleable: int Layout_layout_constraintLeft_toRightOf -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_off_mtrl_alpha -james.adaptiveicon.R$attr: int ratingBarStyle -androidx.appcompat.R$style: int Base_Theme_AppCompat -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_wrapMode -okhttp3.internal.platform.ConscryptPlatform: void configureSslSocketFactory(javax.net.ssl.SSLSocketFactory) -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setPostfixString(java.lang.String) -okhttp3.Cookie$Builder: boolean hostOnly -okio.ForwardingSink: java.lang.String toString() -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onDetach() -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String n -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: java.lang.Integer direction -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerComplete(io.reactivex.internal.observers.InnerQueuedObserver) -cyanogenmod.providers.CMSettings: java.lang.String TAG -androidx.drawerlayout.R$integer: int status_bar_notification_info_maxnum -io.reactivex.internal.observers.DeferredScalarDisposable: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPopupWindowStyle -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeWidth -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_NoActionBar -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property City -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setSelectedPage(int) -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long count -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDaylight(boolean) -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitle_inputLayout -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_14 -com.google.android.material.bottomappbar.BottomAppBar: void setFabCradleRoundedCornerRadius(float) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -okhttp3.internal.tls.BasicCertificateChainCleaner: boolean equals(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int Preference_icon -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_textAllCaps -wangdaye.com.geometricweather.R$styleable: int Transition_constraintSetEnd -com.turingtechnologies.materialscrollbar.R$attr: int paddingStart -com.google.android.material.R$styleable: int PopupWindowBackgroundState_state_above_anchor -wangdaye.com.geometricweather.R$styleable: int KeyCycle_motionProgress -wangdaye.com.geometricweather.R$attr: int bottomAppBarStyle -androidx.loader.R$id: int forever -com.google.android.material.R$attr: int editTextBackground -wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitle -wangdaye.com.geometricweather.settings.dialogs.WechatDonateDialog -okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache this$0 -cyanogenmod.app.ProfileManager: void updateProfile(cyanogenmod.app.Profile) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: int phenomenoMaxColorId -com.turingtechnologies.materialscrollbar.R$attr: int materialButtonStyle -wangdaye.com.geometricweather.R$string: int material_hour_selection -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabView -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_brightness -androidx.preference.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String moonPhaseDescription -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage FINISHED -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String district +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +com.jaredrummler.android.colorpicker.R$color: int highlighted_text_material_light +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$style: int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton +james.adaptiveicon.R$styleable: int Toolbar_subtitle +androidx.preference.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderAuthority +okhttp3.Cookie: java.lang.String parseDomain(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int View_theme +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_icon_width +androidx.appcompat.widget.SwitchCompat: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +okhttp3.CacheControl: boolean onlyIfCached() +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_48dp +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: boolean isDisposed() +androidx.constraintlayout.widget.R$id: int icon +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_chip_text_size +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_disabled_material_light +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onComplete() +androidx.work.impl.utils.futures.AbstractFuture$Failure$1 +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindContainer +com.google.android.material.R$styleable: int AppCompatTheme_windowActionBarOverlay +androidx.constraintlayout.widget.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintStart_toEndOf +cyanogenmod.os.Concierge +androidx.fragment.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.appcompat.R$id: int src_over +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.transition.R$styleable: int GradientColor_android_endColor +androidx.appcompat.R$dimen: int abc_action_button_min_height_material +com.turingtechnologies.materialscrollbar.R$attr: int alpha +androidx.lifecycle.ProcessLifecycleOwner: java.lang.Runnable mDelayedPauseRunnable +com.google.gson.stream.JsonReader: java.lang.String[] pathNames +com.google.android.material.R$styleable: int[] Variant +wangdaye.com.geometricweather.db.entities.AlertEntity: void setPriority(int) +wangdaye.com.geometricweather.R$drawable: int flag_si +com.google.android.gms.internal.common.zzq: java.lang.String toString() +com.jaredrummler.android.colorpicker.R$dimen: int abc_disabled_alpha_material_light +com.google.android.material.R$style: int Widget_MaterialComponents_Slider +com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_top +androidx.lifecycle.Lifecycling$1: androidx.lifecycle.LifecycleEventObserver val$observer +androidx.preference.R$color: int highlighted_text_material_dark +okhttp3.internal.connection.RouteSelector: java.lang.String getHostString(java.net.InetSocketAddress) +com.google.android.material.R$layout: int abc_list_menu_item_radio +androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_Alert +com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_Switch +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String getFrom() +androidx.lifecycle.ProcessLifecycleOwner: boolean mPauseSent +androidx.preference.R$styleable: int Preference_dependency +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.constraintlayout.utils.widget.ImageFilterView: void setOverlay(boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: void setBrands(java.util.List) +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LOCKSCREEN +wangdaye.com.geometricweather.R$drawable: int abc_list_pressed_holo_light +io.reactivex.internal.subscriptions.SubscriptionArbiter: long requested +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: boolean val$clearPrevious +wangdaye.com.geometricweather.R$attr: int tooltipText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: int getStatus() +wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_light +io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.appcompat.widget.SearchView: SearchView(android.content.Context) +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_setActiveProfile_0 +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintTextColor +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_textLocale +androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$attr: int colorSecondaryVariant +io.reactivex.internal.queue.SpscArrayQueue: java.util.concurrent.atomic.AtomicLong consumerIndex +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getPressure() +androidx.appcompat.R$color: int primary_dark_material_dark +wangdaye.com.geometricweather.settings.dialogs.AnimatableIconDialog: AnimatableIconDialog() +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String providerId +com.google.android.material.tabs.TabLayout +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Snackbar +wangdaye.com.geometricweather.db.entities.HourlyEntity: long time +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_creator +androidx.appcompat.widget.AppCompatImageView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.google.android.material.R$interpolator: int mtrl_fast_out_linear_in +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_android_thumb +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveOffset +androidx.vectordrawable.R$id: int accessibility_custom_action_2 +okhttp3.internal.connection.RealConnection$1: okhttp3.internal.connection.RealConnection this$0 +com.google.android.material.R$dimen: int material_filled_edittext_font_1_3_padding_top +androidx.preference.R$string: int abc_menu_function_shortcut_label +com.turingtechnologies.materialscrollbar.R$style: int Base_V22_Theme_AppCompat +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceId() +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: android.app.Application mApplication +wangdaye.com.geometricweather.R$attr: int state_lifted +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks asInterface(android.os.IBinder) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogTheme +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean cancelOnReplace +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed +androidx.preference.R$string: int abc_activitychooserview_choose_application +androidx.constraintlayout.widget.R$id: int asConfigured +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider BAIDU_IP +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,java.io.File) +androidx.hilt.work.R$id: int accessibility_custom_action_16 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String shortDescription +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarSplitStyle +androidx.preference.R$styleable: int StateListDrawable_android_visible +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: AtmoAuraQAResult$Measure() +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_content_padding +okhttp3.internal.http2.Settings: int get(int) +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getWritableDb() +wangdaye.com.geometricweather.R$id: int searchBar +androidx.swiperefreshlayout.R$id: int text +androidx.appcompat.widget.AppCompatImageButton: void setImageDrawable(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollHorizontalTrackDrawable +com.google.android.material.R$attr: int showTitle +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +com.google.android.material.R$color: int design_dark_default_color_primary_variant +okhttp3.HttpUrl: boolean isHttps() +io.reactivex.internal.util.NotificationLite$ErrorNotification: NotificationLite$ErrorNotification(java.lang.Throwable) +org.greenrobot.greendao.AbstractDao: boolean hasKey(java.lang.Object) +okhttp3.Headers$Builder: okhttp3.Headers build() +okio.BufferedSink: okio.BufferedSink writeShortLe(int) +okio.ByteString: okio.ByteString substring(int) +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +androidx.preference.R$drawable: int abc_textfield_default_mtrl_alpha +androidx.vectordrawable.R$id: int tag_accessibility_pane_title +androidx.preference.R$style: int Preference_PreferenceScreen_Material +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setOnClickListener(android.view.View$OnClickListener) +wangdaye.com.geometricweather.R$dimen: int progress_view_size +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean cancelled +com.google.android.material.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator +com.google.android.material.R$styleable: int ConstraintSet_constraint_referenced_ids +androidx.customview.R$attr: int fontProviderCerts +okhttp3.internal.http.BridgeInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.R$string: int settings_summary_service_provider +androidx.appcompat.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customColorValue +androidx.preference.R$attr: int enableCopying +androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +androidx.preference.R$attr: int selectable +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Button +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat +com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding MEMORY +james.adaptiveicon.R$id: int up +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetLeft +androidx.preference.R$style: int Base_V22_Theme_AppCompat_Light +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_switchStyle +com.google.android.material.R$attr: int logo +androidx.preference.R$attr: int indeterminateProgressStyle +okhttp3.internal.http2.Http2Connection: void sendDegradedPingLater() +android.didikee.donate.R$color: int material_grey_800 +org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Iterable) +androidx.lifecycle.extensions.R +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +androidx.loader.R$id: int time +com.google.android.material.R$styleable: int Constraint_layout_constraintRight_creator +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String getNotice() +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$attr: int iconStartPadding +android.didikee.donate.R$dimen: int abc_action_bar_content_inset_material +androidx.appcompat.R$string: int abc_searchview_description_voice +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthTextView +com.bumptech.glide.R$styleable: int[] GradientColorItem +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Tooltip +okio.Buffer: okio.BufferedSink writeUtf8CodePoint(int) +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_menu_layout +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider +com.google.android.gms.common.api.UnsupportedApiCallException: UnsupportedApiCallException(com.google.android.gms.common.Feature) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +com.google.android.material.button.MaterialButtonToggleGroup: void addOnButtonCheckedListener(com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener) +wangdaye.com.geometricweather.common.basic.models.Location: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +okhttp3.internal.cache2.Relay: okhttp3.internal.cache2.Relay edit(java.io.File,okio.Source,okio.ByteString,long) +com.google.android.material.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory createWithScheduler(io.reactivex.Scheduler) +com.amap.api.location.AMapLocationClient: void stopLocation() +com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrimColor(int) +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_2G3G +com.xw.repo.bubbleseekbar.R$attr: int trackTint +com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_android_alpha +androidx.constraintlayout.widget.R$styleable: int ActionBar_displayOptions +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: CaiYunMainlyResult$CurrentBean$PressureBean() +androidx.constraintlayout.widget.R$color: int background_material_light +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorHeight +com.google.android.material.R$attr: int materialCalendarHeaderConfirmButton +com.google.gson.stream.JsonReader: int PEEKED_END_OBJECT +cyanogenmod.themes.ThemeManager: boolean isThemeBeingProcessed(java.lang.String) +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String key() +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit +com.google.android.material.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherPhase +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getThunderstormPrecipitation() +wangdaye.com.geometricweather.R$styleable: int[] KeyFrame +okhttp3.Headers: java.lang.String get(java.lang.String[],java.lang.String) +cyanogenmod.weatherservice.ServiceRequestResult$1: ServiceRequestResult$1() +androidx.preference.R$styleable: int MenuItem_android_title +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed +cyanogenmod.power.IPerformanceManager: boolean setPowerProfile(int) +androidx.cardview.R$attr: int contentPaddingBottom +androidx.preference.R$dimen: int abc_text_size_button_material +cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(cyanogenmod.app.ThemeVersion$ComponentVersion) +android.didikee.donate.R$dimen: int abc_button_inset_horizontal_material +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setVibratorIntensity +androidx.constraintlayout.widget.R$styleable: int AlertDialog_multiChoiceItemLayout +com.turingtechnologies.materialscrollbar.R$style: int Widget_Support_CoordinatorLayout +james.adaptiveicon.R$styleable: int MenuItem_android_orderInCategory +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: ObservableRange$RangeDisposable(io.reactivex.Observer,long,long) androidx.preference.R$dimen: int abc_action_bar_content_inset_material -androidx.loader.R$dimen: int notification_big_circle_margin -retrofit2.converter.gson.GsonResponseBodyConverter: com.google.gson.TypeAdapter adapter -cyanogenmod.content.Intent: java.lang.String CATEGORY_THEME_PACKAGE_INSTALLED_STATE_CHANGE -com.google.android.material.textfield.TextInputLayout: void setCounterOverflowTextAppearance(int) -io.reactivex.internal.util.NotificationLite$ErrorNotification: boolean equals(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.concurrent.Callable bufferSupplier -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_textAllCaps -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: long serialVersionUID -okio.Buffer: okio.ByteString snapshot() -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: boolean requestDismissAndStartActivity(android.content.Intent) -androidx.appcompat.R$drawable: int abc_ic_clear_material -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog -james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -androidx.constraintlayout.utils.widget.ImageFilterView: void setContrast(float) -androidx.lifecycle.extensions.R$dimen: int notification_small_icon_background_padding -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_shapeAppearance -okhttp3.Address: okhttp3.Authenticator proxyAuthenticator -james.adaptiveicon.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -io.reactivex.internal.disposables.EmptyDisposable: boolean offer(java.lang.Object,java.lang.Object) -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isDataConnectionSelectedOnSub -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindDircStart() -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog -androidx.transition.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider BAIDU_IP -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.String dailyWeatherDescription -okhttp3.internal.http.HttpHeaders: void parseChallengeHeader(java.util.List,okio.Buffer) -androidx.appcompat.widget.Toolbar: void setLogoDescription(int) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver -androidx.viewpager.R$styleable: int FontFamilyFont_fontStyle -androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context,android.util.AttributeSet,int) -androidx.customview.R$dimen: int notification_large_icon_width -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_track_mtrl_alpha -james.adaptiveicon.R$styleable: int Spinner_android_dropDownWidth -androidx.hilt.work.R$attr: int fontProviderCerts -android.didikee.donate.R$id: int title -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 -io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -james.adaptiveicon.R$dimen: int hint_pressed_alpha_material_light -androidx.preference.R$color: int secondary_text_disabled_material_dark -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.History yesterday -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: long timeout -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer getCloudCover() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_RadioButton -androidx.vectordrawable.animated.R$style -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorGravity -wangdaye.com.geometricweather.R$array: int widget_style_values -androidx.appcompat.R$color: int dim_foreground_disabled_material_light -wangdaye.com.geometricweather.R$id: int text2 -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long produced -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Light -com.google.android.material.R$id: int group_divider -androidx.preference.R$styleable: int ActionBar_titleTextStyle -cyanogenmod.app.BaseLiveLockManagerService: void enforcePrivateAccessPermission() -com.google.android.material.bottomappbar.BottomAppBar: void setSubtitle(java.lang.CharSequence) -android.support.v4.os.IResultReceiver$Stub$Proxy -com.turingtechnologies.materialscrollbar.R$color: int abc_color_highlight_material -com.jaredrummler.android.colorpicker.R$attr: int autoCompleteTextViewStyle -androidx.preference.R$attr: int multiChoiceItemLayout -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog -wangdaye.com.geometricweather.common.ui.widgets.TagView: void setCheckedBackgroundColor(int) -com.google.android.material.R$styleable: int AppCompatTheme_actionBarWidgetTheme -io.reactivex.Observable: io.reactivex.Completable concatMapCompletable(io.reactivex.functions.Function,int) -androidx.appcompat.R$color: int material_deep_teal_500 -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type getRawType() -com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.Typeface getExpandedTitleTypeface() -androidx.appcompat.R$style: int Base_Widget_AppCompat_TextView -james.adaptiveicon.R$attr: int hideOnContentScroll -com.google.android.material.stateful.ExtendableSavedState: android.os.Parcelable$Creator CREATOR -james.adaptiveicon.R$id: int search_badge -com.turingtechnologies.materialscrollbar.R$id: int outline -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -retrofit2.Invocation: java.util.List arguments() -wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_summary -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_9 -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixTextAppearance -androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -androidx.vectordrawable.animated.R$layout: int notification_template_part_time -com.bumptech.glide.load.engine.GlideException: void setLoggingDetails(com.bumptech.glide.load.Key,com.bumptech.glide.load.DataSource,java.lang.Class) -james.adaptiveicon.R$color: int abc_hint_foreground_material_dark -cyanogenmod.providers.CMSettings$Secure -wangdaye.com.geometricweather.R$string: int action_appStore -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber(androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData) -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_width_major -okhttp3.OkHttpClient: okhttp3.Dns dns -androidx.appcompat.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation[] values() -androidx.preference.R$attr -wangdaye.com.geometricweather.R$color: int abc_search_url_text_normal -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMargin -androidx.viewpager.R$styleable: int[] ColorStateListItem -androidx.appcompat.widget.AppCompatButton: android.graphics.PorterDuff$Mode getSupportCompoundDrawablesTintMode() -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int[] GradientColor -cyanogenmod.providers.CMSettings$Secure: java.lang.String PRIVACY_GUARD_NOTIFICATION -androidx.preference.R$style: int Widget_AppCompat_RatingBar_Small -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.db.entities.LocationEntity: java.util.TimeZone getTimeZone() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: java.lang.String WeatherCode -wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaContainer -androidx.appcompat.R$layout: int abc_action_menu_item_layout -com.google.android.material.R$drawable: int abc_textfield_search_activated_mtrl_alpha -androidx.recyclerview.R$layout -james.adaptiveicon.R$attr: int toolbarStyle -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub -androidx.hilt.work.R$layout: int notification_template_icon_group -okhttp3.internal.http2.Http2Stream$StreamTimeout -com.bumptech.glide.integration.okhttp.R$integer -androidx.transition.R$styleable: int GradientColor_android_endY -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView -wangdaye.com.geometricweather.db.entities.AlertEntity: int getColor() -androidx.loader.R$id: int icon -android.didikee.donate.R$layout: int select_dialog_item_material -com.jaredrummler.android.colorpicker.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_86 -wangdaye.com.geometricweather.R$id: int ragweedValue -okhttp3.internal.http2.Http2Writer: void windowUpdate(int,long) -io.reactivex.internal.subscriptions.DeferredScalarSubscription: long serialVersionUID -com.xw.repo.bubbleseekbar.R$id: int blocking -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Suffix -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDefaultPhoneSub -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button -androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getCollapseIcon() -com.jaredrummler.android.colorpicker.R$styleable: int[] LinearLayoutCompat -wangdaye.com.geometricweather.R$attr: int lineSpacing -okio.GzipSource: int section -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed -wangdaye.com.geometricweather.R$attr: int logo -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean getSunRiseSet() -androidx.lifecycle.FullLifecycleObserverAdapter -androidx.constraintlayout.widget.R$attr: int backgroundTint -androidx.constraintlayout.widget.R$attr: int flow_verticalGap -com.google.android.material.R$styleable: int[] MenuGroup -com.google.android.material.R$dimen: int mtrl_calendar_year_horizontal_padding -wangdaye.com.geometricweather.db.entities.DailyEntity: float hoursOfSun -okhttp3.OkHttpClient: boolean followRedirects -androidx.constraintlayout.widget.R$dimen: int abc_text_size_title_material_toolbar -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: CNWeatherResult$Pm25() -com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_material_light -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeApparentTemperature -androidx.cardview.R$color: int cardview_dark_background -okio.RealBufferedSource: java.lang.String readUtf8(long) -androidx.lifecycle.Transformations$2: androidx.lifecycle.MediatorLiveData val$result -com.xw.repo.bubbleseekbar.R$string: int abc_menu_sym_shortcut_label -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_colored_material -wangdaye.com.geometricweather.R$attr: int fabCradleRoundedCornerRadius -android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat_Light -androidx.swiperefreshlayout.R$style -androidx.core.R$id: int accessibility_custom_action_7 -okhttp3.Interceptor$Chain: okhttp3.Call call() -cyanogenmod.weatherservice.WeatherProviderService$1: void cancelRequest(int) -cyanogenmod.app.PartnerInterface: void rebootDevice() -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: java.lang.String color -wangdaye.com.geometricweather.R$styleable: int[] SearchView -androidx.transition.R$styleable: int ColorStateListItem_android_alpha -androidx.constraintlayout.widget.R$attr: int colorButtonNormal -android.didikee.donate.R$style: int Animation_AppCompat_Dialog -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeChangeListener mThemeChangeListener -com.amap.api.location.AMapLocation: void setCountry(java.lang.String) -com.google.android.material.R$dimen: int design_navigation_item_horizontal_padding -io.reactivex.internal.util.VolatileSizeArrayList: VolatileSizeArrayList(int) -androidx.swiperefreshlayout.R$color: int secondary_text_default_material_light -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_contrast -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTextView -wangdaye.com.geometricweather.R$id: int container_alert_display_view_indicator -androidx.appcompat.R$style: int Widget_AppCompat_ProgressBar -cyanogenmod.weatherservice.ServiceRequest -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: android.os.IBinder mRemote -android.didikee.donate.R$styleable: int ActionBar_subtitleTextStyle -cyanogenmod.weatherservice.ServiceRequestResult$1: java.lang.Object[] newArray(int) -com.google.android.material.R$attr: int mock_labelBackgroundColor -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onNext(java.lang.Object) -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String cityId -androidx.appcompat.resources.R$id: int accessibility_custom_action_27 -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterMaxLength -com.amap.api.fence.DistrictItem$1: java.lang.Object[] newArray(int) -androidx.preference.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Entry -androidx.preference.R$attr: int spinnerDropDownItemStyle -androidx.constraintlayout.widget.R$id: int off -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getDensityText(android.content.Context,float) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource LocalSource -androidx.fragment.app.FragmentTabHost -com.google.gson.JsonParseException: JsonParseException(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActivityChooserView -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox -cyanogenmod.weather.WeatherLocation: java.lang.String toString() -com.google.gson.stream.JsonReader: void skipToEndOfLine() -com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a c -com.google.android.material.R$styleable: int ConstraintSet_flow_firstVerticalBias -okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: okhttp3.internal.http2.Http2Connection this$0 -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -androidx.vectordrawable.R$drawable: int notification_bg_low_normal -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableBottom -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlNormal -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onKeyguardDismissed() -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorGravity -androidx.hilt.lifecycle.R$id: int action_divider -androidx.customview.R$style: int TextAppearance_Compat_Notification_Info -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabStyle -cyanogenmod.externalviews.KeyguardExternalView$6: KeyguardExternalView$6(cyanogenmod.externalviews.KeyguardExternalView,boolean) -okhttp3.internal.Util: okio.ByteString UTF_32_LE_BOM -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_133 -androidx.legacy.coreutils.R$styleable: int[] GradientColorItem -okio.Buffer: long indexOfElement(okio.ByteString,long) -androidx.constraintlayout.motion.widget.MotionLayout: int getCurrentState() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setStatus(int) -com.google.android.material.chip.Chip: java.lang.CharSequence getCloseIconContentDescription() -okhttp3.internal.http2.Http2Writer: void ping(boolean,int,int) -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_ttcIndex -okhttp3.internal.Util: java.lang.String[] intersect(java.util.Comparator,java.lang.String[],java.lang.String[]) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_24 -okio.Buffer: java.lang.String toString() -james.adaptiveicon.R$id: int listMode -okhttp3.logging.package-info -com.turingtechnologies.materialscrollbar.CustomIndicator: int getIndicatorHeight() -wangdaye.com.geometricweather.db.entities.AlertEntity: void setTime(long) -androidx.vectordrawable.animated.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.R$integer: int cpv_default_progress -com.turingtechnologies.materialscrollbar.R$styleable: int[] Chip -wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundODialog -okhttp3.internal.NamedRunnable: NamedRunnable(java.lang.String,java.lang.Object[]) -com.google.android.material.R$id: int action_container -androidx.vectordrawable.R$layout: int notification_template_part_chronometer -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_font -io.reactivex.subjects.PublishSubject$PublishDisposable: long serialVersionUID -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -wangdaye.com.geometricweather.R$id: int dragDown -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_negativeButtonText -androidx.constraintlayout.widget.R$attr: int actionModeFindDrawable -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_5 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -androidx.vectordrawable.R$drawable: R$drawable() -com.jaredrummler.android.colorpicker.ColorPanelView: int getColor() -com.google.android.material.R$style: int Widget_AppCompat_PopupMenu -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomAppBar -androidx.viewpager.R$layout: int notification_template_part_chronometer -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleTextColor -cyanogenmod.externalviews.ExternalView$5: cyanogenmod.externalviews.ExternalView this$0 -wangdaye.com.geometricweather.R$drawable: int notification_tile_bg -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -androidx.appcompat.R$style: int Animation_AppCompat_DropDownUp -io.reactivex.internal.subscribers.StrictSubscriber -androidx.drawerlayout.R$id: int right_side -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: java.lang.String getNotificationStyleName(android.content.Context) -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayColorCalibration -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DialogWhenLarge -androidx.preference.R$styleable: int[] PopupWindow -wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_material -androidx.constraintlayout.widget.R$dimen: int abc_floating_window_z -androidx.drawerlayout.widget.DrawerLayout: void setDrawerElevation(float) -androidx.constraintlayout.widget.R$attr: int titleTextAppearance -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String unitId -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$dimen: int design_bottom_navigation_label_padding -com.google.android.material.R$styleable: int KeyTrigger_triggerReceiver -com.amap.api.location.AMapLocationClient: void startLocation() -okio.AsyncTimeout: okio.AsyncTimeout awaitTimeout() -com.bumptech.glide.R$id: int right_icon -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_18 -cyanogenmod.weather.ICMWeatherManager$Stub -androidx.drawerlayout.R$id: int blocking -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: ObservableBuffer$BufferSkipObserver(io.reactivex.Observer,int,int,java.util.concurrent.Callable) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelBackground -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_profileExists -cyanogenmod.providers.CMSettings$Secure: java.lang.String ADVANCED_REBOOT -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid TotalLiquid +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityResumed(android.app.Activity) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator USE_EDGE_SERVICE_FOR_GESTURES_VALIDATOR +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +cyanogenmod.app.CMTelephonyManager: android.content.Context mContext +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollEnabled +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_elevation +android.didikee.donate.R$styleable: int TextAppearance_android_fontFamily +wangdaye.com.geometricweather.R$attr: int showDividers +androidx.hilt.work.R$dimen: int notification_small_icon_size_as_large +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onBouncerShowing(boolean) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +com.jaredrummler.android.colorpicker.R$attr: int arrowShaftLength +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onError(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver parent +retrofit2.Utils$ParameterizedTypeImpl +androidx.constraintlayout.widget.R$attr: int customBoolean +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isIsModify() +com.google.gson.internal.LinkedTreeMap: java.util.Set entrySet() +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getCounterTextColor() +androidx.preference.R$layout: int custom_dialog +okhttp3.Dispatcher: java.util.concurrent.ExecutorService executorService +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean cancelled +androidx.preference.R$style: int Base_V21_Theme_AppCompat +cyanogenmod.profiles.StreamSettings: StreamSettings(android.os.Parcel) +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_removeCustomTileFromListener +james.adaptiveicon.R$style: int Animation_AppCompat_Tooltip +androidx.viewpager.widget.ViewPager: ViewPager(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$attr: int checkboxStyle +wangdaye.com.geometricweather.R$attr: int checkedIconEnabled +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeDegreeDayTemperature(java.lang.Integer) androidx.appcompat.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -okio.SegmentedByteString: java.lang.String base64() -okhttp3.internal.ws.WebSocketProtocol -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressCircleDiameter() -androidx.customview.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarTitle -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns -androidx.appcompat.R$id: int action_menu_divider -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_DialogWhenLarge -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarWidgetTheme -wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_HIGH -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getCoDesc() -okhttp3.internal.connection.RouteException: java.io.IOException getLastConnectException() -com.google.android.material.R$attr: int measureWithLargestChild -com.google.android.material.textfield.TextInputLayout: void setStartIconDrawable(android.graphics.drawable.Drawable) -com.turingtechnologies.materialscrollbar.R$id: R$id() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusTopStart -androidx.appcompat.R$styleable: int SearchView_iconifiedByDefault -androidx.work.ListenableWorker: ListenableWorker(android.content.Context,androidx.work.WorkerParameters) -androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior: CoordinatorLayout$Behavior() -james.adaptiveicon.R$drawable: int tooltip_frame_dark -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView_PrimarySurface -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: ObservableUsing$UsingObserver(io.reactivex.Observer,java.lang.Object,io.reactivex.functions.Consumer,boolean) -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -androidx.constraintlayout.widget.R$color: int primary_text_default_material_light -androidx.work.R$id: int icon_group -androidx.constraintlayout.widget.R$styleable: int PopupWindow_android_popupAnimationStyle -com.google.android.material.R$styleable: int BottomAppBar_fabAlignmentMode -com.amap.api.location.AMapLocationClientOption: boolean isDownloadCoordinateConvertLibrary() -com.turingtechnologies.materialscrollbar.R$attr: R$attr() -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -com.google.android.material.chip.Chip: void setOnCheckedChangeListenerInternal(android.widget.CompoundButton$OnCheckedChangeListener) -wangdaye.com.geometricweather.R$styleable: int KeyPosition_curveFit -wangdaye.com.geometricweather.R$styleable: int MotionLayout_showPaths -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.R$color: int dim_foreground_disabled_material_light +android.didikee.donate.R$drawable: int notification_bg_low +androidx.viewpager.R$attr: int fontProviderPackage +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline6 +james.adaptiveicon.R$styleable: int MenuItem_iconTintMode +okhttp3.OkHttpClient: okhttp3.Authenticator proxyAuthenticator +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_base +wangdaye.com.geometricweather.R$attr: int maxCharacterCount +cyanogenmod.externalviews.ExternalViewProperties: int mHeight +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$attr: int singleLine +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: boolean cancelled +wangdaye.com.geometricweather.R$attr: int barLength +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: boolean isValid() +wangdaye.com.geometricweather.R$drawable: int notification_bg_normal +androidx.appcompat.R$id: int tag_screen_reader_focusable +cyanogenmod.app.IProfileManager: boolean addProfile(cyanogenmod.app.Profile) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource LocalSource +okhttp3.internal.http1.Http1Codec: void finishRequest() +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_progressBarPadding +com.google.android.material.R$attr: int waveDecay androidx.hilt.R$layout: int notification_template_custom_big -androidx.preference.R$attr: int fontProviderFetchTimeout -androidx.appcompat.widget.SwitchCompat: void setTrackDrawable(android.graphics.drawable.Drawable) -androidx.dynamicanimation.R$color: int notification_icon_bg_color -james.adaptiveicon.R$styleable: int ActionBar_height -androidx.constraintlayout.widget.R$id: int action_bar_subtitle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_65 -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Determinate -com.google.android.material.card.MaterialCardView: void setCardBackgroundColor(int) -okhttp3.internal.http2.Http2Connection$ReaderRunnable: Http2Connection$ReaderRunnable(okhttp3.internal.http2.Http2Connection,okhttp3.internal.http2.Http2Reader) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_ensureMinTouchTargetSize -com.google.android.material.snackbar.Snackbar$SnackbarLayout: Snackbar$SnackbarLayout(android.content.Context) -androidx.constraintlayout.widget.R$attr: int onShow -okio.Buffer: okio.Buffer$UnsafeCursor readAndWriteUnsafe(okio.Buffer$UnsafeCursor) -com.amap.api.location.AMapLocation: java.lang.String getLocationDetail() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconDrawable -androidx.preference.R$attr: int state_above_anchor -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_tooltipFrameBackground -okhttp3.MultipartBody: long writeOrCountBytes(okio.BufferedSink,boolean) -com.google.android.material.R$styleable: int Transform_android_rotationY -androidx.preference.R$id: int search_badge -com.google.android.material.R$id: int mtrl_internal_children_alpha_tag -com.google.android.material.R$styleable: int[] SearchView -androidx.viewpager2.R$id: int accessibility_custom_action_4 -androidx.preference.R$bool: int config_materialPreferenceIconSpaceReserved -com.turingtechnologies.materialscrollbar.R$color: int accent_material_dark -com.google.android.material.chip.Chip: void setChipIconEnabledResource(int) -androidx.constraintlayout.widget.R$attr: int buttonCompat -james.adaptiveicon.R$drawable: int abc_list_pressed_holo_dark -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode[] values() -com.google.android.material.R$attr: int windowFixedWidthMinor -com.google.android.gms.common.internal.safeparcel.SafeParcelReader$ParseException -com.google.android.material.R$dimen: int design_fab_border_width -com.xw.repo.bubbleseekbar.R$string: int abc_menu_shift_shortcut_label -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$color: int notification_background_m -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -okhttp3.internal.http.HttpMethod: boolean redirectsToGet(java.lang.String) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit getInstance(java.lang.String) -com.google.android.material.R$animator: int linear_indeterminate_line1_head_interpolator -wangdaye.com.geometricweather.R$attr: int targetId -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: void run() -androidx.appcompat.widget.AppCompatImageButton: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) +androidx.appcompat.resources.R$drawable: int notification_bg_normal +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_alpha +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_toBottomOf +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathOffset() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: void run() +cyanogenmod.weather.CMWeatherManager: int lookupCity(java.lang.String,cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener) +androidx.preference.R$anim: int abc_fade_in +androidx.preference.R$styleable: int Toolbar_android_minHeight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric +wangdaye.com.geometricweather.R$string: int widget_clock_day_vertical +androidx.customview.R$id: int async +androidx.constraintlayout.widget.R$attr: int buttonStyle +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_enterFadeDuration +androidx.preference.R$style: int Widget_AppCompat_Spinner +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitation() +com.turingtechnologies.materialscrollbar.R$attr: int submitBackground +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_shapeAppearance +wangdaye.com.geometricweather.R$attr: int textAppearanceLargePopupMenu +android.didikee.donate.R$id: int actions +com.xw.repo.bubbleseekbar.R$attr: int popupWindowStyle +wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_icon +androidx.appcompat.R$string: int abc_action_menu_overflow_description +wangdaye.com.geometricweather.R$attr: int cornerFamily +androidx.preference.R$drawable: int abc_textfield_activated_mtrl_alpha +wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay_v14_Material +com.jaredrummler.android.colorpicker.R$dimen: int notification_top_pad_large_text +com.google.android.material.R$attr: int srcCompat +cyanogenmod.providers.CMSettings$System: java.lang.String MENU_WAKE_SCREEN +com.google.android.material.R$color: int design_dark_default_color_on_surface +com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetRight +com.google.android.gms.common.SignInButton: SignInButton(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: CNWeatherResult$Realtime$Weather() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 +io.reactivex.internal.subscriptions.EmptySubscription: void complete(org.reactivestreams.Subscriber) +androidx.recyclerview.R$dimen: int notification_large_icon_width +io.reactivex.Observable: io.reactivex.Observable window(long) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ProgressBar_Horizontal +retrofit2.ParameterHandler$Path: java.lang.String name +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setRightToLeft(boolean) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitationProbability() +wangdaye.com.geometricweather.R$string: int thunderstorm +okio.GzipSink: void updateCrc(okio.Buffer,long) +cyanogenmod.weatherservice.IWeatherProviderService$Stub: cyanogenmod.weatherservice.IWeatherProviderService asInterface(android.os.IBinder) +com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getErrorIconDrawable() +wangdaye.com.geometricweather.R$attr: int layout_collapseMode +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardBackgroundColor +cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String SERVICE_INTERFACE +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getSnow() +okhttp3.internal.http2.Header: java.lang.String TARGET_AUTHORITY_UTF8 +androidx.appcompat.R$styleable: int ActionBar_elevation +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +james.adaptiveicon.R$attr: int colorControlNormal +androidx.work.R$id: int tag_accessibility_clickable_spans +androidx.vectordrawable.R$styleable: int FontFamilyFont_font +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth +okhttp3.internal.tls.DistinguishedNameParser: char[] chars +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_UNDERSCORES +com.google.android.material.R$attr: int behavior_peekHeight +androidx.preference.R$style: int Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_horizontal_padding +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction +james.adaptiveicon.R$layout: int abc_screen_simple +cyanogenmod.profiles.RingModeSettings$1: cyanogenmod.profiles.RingModeSettings[] newArray(int) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_maxHeight +com.google.android.material.R$dimen: int mtrl_slider_label_padding +io.reactivex.internal.schedulers.ScheduledRunnable: int PARENT_INDEX +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetLeft +com.google.android.material.R$color: int switch_thumb_material_light +androidx.appcompat.widget.ActivityChooserView: void setInitialActivityCount(int) +io.reactivex.Observable: Observable() +io.reactivex.Observable: io.reactivex.observers.TestObserver test() +androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat +com.google.android.material.R$id: int scrollIndicatorDown +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: void setParent(io.reactivex.internal.operators.observable.ObservablePublish$PublishObserver) +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer LEFT_VALUE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: int status +okhttp3.internal.http2.Http2Stream: int id +com.turingtechnologies.materialscrollbar.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getHeaderHeight() +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit valueOf(java.lang.String) +com.amap.api.location.AMapLocationClientOption: long SCAN_WIFI_INTERVAL +okhttp3.internal.cache.CacheInterceptor: boolean isContentSpecificHeader(java.lang.String) +android.didikee.donate.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer dbz +com.xw.repo.bubbleseekbar.R$id: int none +wangdaye.com.geometricweather.R$id: int widget_week_icon_2 +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: java.util.List getSubInformation() +com.google.android.material.R$color: int background_material_light +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_SearchView +androidx.lifecycle.SavedStateHandleController: boolean mIsAttached +wangdaye.com.geometricweather.R$drawable: int notif_temp_47 +okio.Buffer: byte[] readByteArray() +wangdaye.com.geometricweather.remoteviews.config.Hilt_HourlyTrendWidgetConfigActivity: Hilt_HourlyTrendWidgetConfigActivity() +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_stacked_tab_max_width +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset +com.xw.repo.bubbleseekbar.R$drawable: int notification_template_icon_low_bg +androidx.vectordrawable.R$color: R$color() +wangdaye.com.geometricweather.R$drawable: int ic_temperature_kelvin +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: double Value +com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_CheckBox +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents +wangdaye.com.geometricweather.R$layout: int container_snackbar +wangdaye.com.geometricweather.R$string: int feedback_short_term_precipitation_alert +okhttp3.OkHttpClient$1: void addLenient(okhttp3.Headers$Builder,java.lang.String,java.lang.String) +androidx.lifecycle.ReportFragment: void onPause() +androidx.vectordrawable.R$dimen: int notification_top_pad +com.turingtechnologies.materialscrollbar.R$attr: int spinnerStyle +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light_normal +androidx.preference.R$style: int Theme_AppCompat_Light +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeFindDrawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX getNames() +com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabStyle +androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context) +wangdaye.com.geometricweather.R$attr: int layout_constrainedHeight +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.Float speed +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextAppearanceActive(int) +com.google.android.material.slider.Slider: android.content.res.ColorStateList getThumbTintList() +androidx.lifecycle.LifecycleRegistry$ObserverWithState: androidx.lifecycle.LifecycleEventObserver mLifecycleObserver +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_id +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$attr: int panelMenuListWidth +okhttp3.ResponseBody$1: okhttp3.MediaType contentType() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int EndMinute +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Light +androidx.constraintlayout.widget.R$id: int visible +wangdaye.com.geometricweather.R$drawable: int ic_state_uncheck +wangdaye.com.geometricweather.R$id: int blocking +androidx.transition.R$style: int TextAppearance_Compat_Notification +okhttp3.internal.platform.ConscryptPlatform: javax.net.ssl.SSLContext getSSLContext() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindSpeed(java.lang.Float) +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.OkHttpClient client +androidx.appcompat.R$attr: int windowActionBar +com.google.android.material.textfield.TextInputLayout: void setErrorIconOnLongClickListener(android.view.View$OnLongClickListener) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onLockscreenSlideOffsetChanged(float) +okhttp3.internal.cache.DiskLruCache$3: boolean hasNext() +cyanogenmod.app.suggest.IAppSuggestManager +com.xw.repo.bubbleseekbar.R$attr: int splitTrack +com.bumptech.glide.integration.okhttp.R$styleable +wangdaye.com.geometricweather.common.ui.widgets.TagView: void setCheckedBackgroundColor(int) +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents +okio.Okio$2: okio.Timeout val$timeout +androidx.appcompat.R$attr: int suggestionRowLayout +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: long time +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: java.lang.String Unit +androidx.transition.R$color: R$color() +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setUseSessionTickets +android.didikee.donate.R$id: int action_context_bar +androidx.preference.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$styleable: int[] Chip +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: double Value +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: AccuDailyResult$DailyForecasts$Night$WindGust$Direction() +com.jaredrummler.android.colorpicker.R$layout: int preference_dropdown +okio.Pipe$PipeSink: okio.Pipe this$0 +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method getMethod +android.didikee.donate.R$attr: int ratingBarStyleSmall +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.internal.disposables.ArrayCompositeDisposable resources +okhttp3.HttpUrl: java.lang.String scheme() +com.xw.repo.bubbleseekbar.R$attr: int bsb_seek_by_section +wangdaye.com.geometricweather.R$array: int widget_style_values +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_4 +androidx.preference.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_small_material +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_colorPresets +cyanogenmod.themes.ThemeManager$1$1: cyanogenmod.themes.ThemeManager$1 this$1 +com.baidu.location.e.l$b: java.lang.String b(com.baidu.location.e.l$b) +okhttp3.internal.ws.RealWebSocket: long CANCEL_AFTER_CLOSE_MILLIS +androidx.appcompat.R$attr: int actionModeStyle +io.reactivex.Observable: io.reactivex.Observable unsafeCreate(io.reactivex.ObservableSource) +androidx.preference.R$attr: int textAppearanceSearchResultSubtitle +wangdaye.com.geometricweather.R$id: int CTRL +androidx.viewpager2.R$id: int accessibility_custom_action_28 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_135 +androidx.loader.R$drawable +okhttp3.internal.http2.Http2Connection$4: okhttp3.internal.http2.Http2Connection this$0 +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +james.adaptiveicon.R$styleable: int SearchView_layout +james.adaptiveicon.R$attr: int autoCompleteTextViewStyle +androidx.preference.R$styleable: int CheckBoxPreference_summaryOn +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_Alert +com.google.android.material.chip.Chip: void setCloseIconStartPaddingResource(int) +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getMilliMetersTextWithoutUnit(float) +wangdaye.com.geometricweather.R$color +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_PrimarySurface +okhttp3.RealCall: okhttp3.internal.connection.StreamAllocation streamAllocation() +com.xw.repo.bubbleseekbar.R$attr: int keylines +androidx.drawerlayout.R$styleable: int ColorStateListItem_android_color +com.jaredrummler.android.colorpicker.R$dimen: int abc_disabled_alpha_material_dark +okio.Okio: okio.Source source(java.net.Socket) +androidx.preference.R$dimen: int tooltip_y_offset_touch +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_height +androidx.appcompat.R$style: int Widget_AppCompat_ProgressBar_Horizontal +androidx.vectordrawable.animated.R$id: int notification_main_column_container +okio.DeflaterSink: boolean closed +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao +com.google.android.material.R$id: int largeLabel +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_21 +com.google.android.material.R$string: int material_hour_suffix +androidx.recyclerview.R$dimen: int notification_media_narrow_margin +com.google.android.material.R$id: int sin +com.turingtechnologies.materialscrollbar.CustomIndicator: int getIndicatorWidth() +wangdaye.com.geometricweather.R$attr: int progress_width +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_icon +wangdaye.com.geometricweather.R$attr: int actionModeCloseDrawable +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_8 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_AUTO_OUTDOOR_MODE_VALIDATOR +androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +wangdaye.com.geometricweather.R$animator: int mtrl_fab_transformation_sheet_collapse_spec +androidx.recyclerview.widget.RecyclerView: void setLayoutManager(androidx.recyclerview.widget.RecyclerView$LayoutManager) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_end +com.google.android.material.R$styleable: int TextInputLayout_boxStrokeWidthFocused +com.google.android.material.R$attr: int checkedIconEnabled +android.didikee.donate.R$styleable: int AppCompatTextView_textAllCaps +androidx.appcompat.R$style: int Platform_V21_AppCompat +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.R$attr: int crossfade +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_showText +okio.Buffer: java.lang.String readString(long,java.nio.charset.Charset) +cyanogenmod.app.Profile$ProfileTrigger: void writeToParcel(android.os.Parcel,int) +androidx.loader.R$id: int right_side +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean done +androidx.activity.R$drawable: int notification_template_icon_bg +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display1 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_default_mtrl_alpha +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: io.reactivex.internal.fuseable.SimpleQueue queue +androidx.recyclerview.R$styleable: int FontFamilyFont_android_ttcIndex +com.xw.repo.bubbleseekbar.R$attr: int contentDescription +androidx.appcompat.widget.AppCompatEditText: void setSupportBackgroundTintList(android.content.res.ColorStateList) +okhttp3.internal.cache.DiskLruCache: okio.BufferedSink newJournalWriter() +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver +androidx.lifecycle.LifecycleRegistry: int mAddingObserverCounter +com.amap.api.location.AMapLocationClientOption: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer cloudCover +com.bumptech.glide.R$dimen: int notification_big_circle_margin +androidx.preference.R$styleable: int[] MenuItem +androidx.lifecycle.SavedStateHandle: androidx.savedstate.SavedStateRegistry$SavedStateProvider savedStateProvider() +com.xw.repo.bubbleseekbar.R$id: int start +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setOnClickListener(android.view.View$OnClickListener) +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_previewSize +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxBackgroundMode +okhttp3.internal.cache.DiskLruCache$3: DiskLruCache$3(okhttp3.internal.cache.DiskLruCache) +wangdaye.com.geometricweather.common.basic.models.weather.Base: long timeStamp +wangdaye.com.geometricweather.R$animator: int weather_snow_3 +com.baidu.location.g.a: a() +com.google.android.material.card.MaterialCardView: float getProgress() +androidx.preference.R$attr: int allowDividerAbove +retrofit2.SkipCallbackExecutorImpl: java.lang.String toString() +com.google.android.material.bottomsheet.BottomSheetBehavior: BottomSheetBehavior() +androidx.recyclerview.R$style +com.google.android.material.R$styleable: int[] AppBarLayout +cyanogenmod.profiles.RingModeSettings: void readFromParcel(android.os.Parcel) +okhttp3.internal.http2.Http2Stream$FramingSink: void emitFrame(boolean) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: java.lang.String Unit +com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context) +okhttp3.internal.http2.Http2Connection: long DEGRADED_PONG_TIMEOUT_NS +com.amap.api.fence.GeoFence: float getMinDis2Center() +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setPubTime(java.lang.String) +androidx.drawerlayout.R$drawable +com.google.android.material.R$style: int TextAppearance_AppCompat_Caption +retrofit2.ParameterHandler$Field: boolean encoded +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.Integer getCloudCover() +androidx.appcompat.widget.ActionMenuView: void setOnMenuItemClickListener(androidx.appcompat.widget.ActionMenuView$OnMenuItemClickListener) +androidx.fragment.R$drawable: int notification_template_icon_bg +androidx.appcompat.R$string: int abc_shareactionprovider_share_with +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: void handleMessage(android.os.Message) +androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontWeight +com.google.android.material.R$anim: int abc_slide_out_bottom +cyanogenmod.app.PartnerInterface: java.lang.String getCurrentHotwordPackageName() +androidx.preference.R$styleable: int View_paddingEnd +androidx.appcompat.R$styleable: int[] AppCompatTheme +androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +com.google.android.material.R$attr: int shapeAppearanceLargeComponent +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_track +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog +androidx.preference.R$styleable: int SwitchPreferenceCompat_switchTextOff +com.google.android.material.R$attr: int layout_goneMarginBottom +wangdaye.com.geometricweather.R$string: int aqi_6 +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$layout: int support_simple_spinner_dropdown_item +wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_icon_width +com.google.android.material.R$attr: int spinnerDropDownItemStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionDropDownStyle +androidx.vectordrawable.animated.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25 +com.google.android.material.R$styleable: int OnClick_clickAction +androidx.preference.R$styleable: int PreferenceTheme_seekBarPreferenceStyle +androidx.preference.R$style: int Theme_AppCompat_Light_DialogWhenLarge +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.R$animator: int weather_rain_3 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: java.lang.String WeatherCode +james.adaptiveicon.R$color: int highlighted_text_material_light +com.jaredrummler.android.colorpicker.R$attr: int actionBarTabBarStyle +james.adaptiveicon.R$attr: int trackTint +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeAppearanceOverlay +androidx.hilt.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$attr: int useCompatPadding +cyanogenmod.weather.WeatherInfo$Builder: WeatherInfo$Builder(java.lang.String,double,int) +androidx.appcompat.R$style: int Base_Animation_AppCompat_Dialog +retrofit2.ParameterHandler$Headers: void apply(retrofit2.RequestBuilder,okhttp3.Headers) +android.didikee.donate.R$styleable: int MenuView_android_windowAnimationStyle +wangdaye.com.geometricweather.R$color: int colorLevel_5 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_76 +android.didikee.donate.R$dimen: int abc_dialog_fixed_height_minor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: AccuCurrentResult$PrecipitationSummary$PastHour() +androidx.coordinatorlayout.widget.CoordinatorLayout: java.util.List getDependencySortedChildren() +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableBottomCompat +com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_horizontal_material +com.google.android.material.R$style: int TextAppearance_Design_Counter_Overflow +androidx.loader.R$id: int title +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableTop +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean offer(java.lang.Object,java.lang.Object) +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void drain() +com.google.gson.stream.JsonWriter: void newline() +io.reactivex.internal.subscriptions.EmptySubscription: void error(java.lang.Throwable,org.reactivestreams.Subscriber) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Dialog +okhttp3.internal.http2.Http2Writer: int maxFrameSize +cyanogenmod.externalviews.KeyguardExternalView$8 +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_iconTintMode +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_CIRCLE +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void dispose() +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int ISOLATED_THUNDERSTORMS +androidx.appcompat.widget.AppCompatImageView: android.content.res.ColorStateList getSupportBackgroundTintList() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassLevel +cyanogenmod.app.CustomTile: android.content.Intent onSettingsClick +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: ICMTelephonyManager$Stub$Proxy(android.os.IBinder) +com.turingtechnologies.materialscrollbar.R$color: int background_floating_material_light +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: AccuDailyResult$DailyForecasts$DegreeDaySummary() +com.google.android.material.R$styleable: int Constraint_android_translationZ +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +okio.Buffer: long size() +com.turingtechnologies.materialscrollbar.R$color: int material_deep_teal_200 +com.xw.repo.bubbleseekbar.R$color: int error_color_material_light +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Badge +androidx.transition.R$styleable: int GradientColor_android_centerY +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.google.gson.FieldNamingPolicy$1 +wangdaye.com.geometricweather.R$string: int background_information +androidx.preference.R$layout: int abc_list_menu_item_radio +com.amap.api.fence.GeoFenceManagerBase: void addKeywordGeoFence(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean temperature +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: boolean mObserving +androidx.constraintlayout.widget.R$style: int Base_V22_Theme_AppCompat_Light +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_6 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 +com.google.android.gms.location.LocationAvailability +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_Underlined +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constrainedWidth +okhttp3.internal.cache2.Relay: okio.ByteString PREFIX_CLEAN +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COMPONENT_ID +com.google.android.material.internal.ForegroundLinearLayout: int getForegroundGravity() +androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Title +com.xw.repo.bubbleseekbar.R$id: int search_src_text +com.jaredrummler.android.colorpicker.R$attr: int thumbTextPadding +cyanogenmod.weather.WeatherInfo$DayForecast +wangdaye.com.geometricweather.background.polling.work.worker.NormalUpdateWorker: NormalUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) +okhttp3.internal.http2.Http2Codec: java.lang.String UPGRADE +com.google.android.material.slider.Slider: int getTrackSidePadding() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setDesc(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemTextAppearance +okhttp3.internal.http.RealInterceptorChain: int writeTimeoutMillis() +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_splitTrack +com.google.android.material.textfield.TextInputLayout$SavedState: android.os.Parcelable$Creator CREATOR +android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog_Alert +androidx.constraintlayout.widget.R$attr: int autoSizeMinTextSize +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getDaytimeWeatherCode() +androidx.loader.R$id: int async +com.google.android.material.R$id: int spread_inside +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +cyanogenmod.providers.CMSettings$Secure: java.lang.String THEME_PREV_BOOT_API_LEVEL +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 +androidx.customview.R$attr: int fontVariationSettings +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedWidthMajor +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_headline_material +james.adaptiveicon.R$dimen: int hint_pressed_alpha_material_light +com.google.android.material.R$dimen: int design_bottom_navigation_item_min_width +androidx.preference.R$attr: int stackFromEnd +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_28 +okhttp3.internal.connection.StreamAllocation: boolean hasMoreRoutes() +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onModeChanged(boolean) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +okhttp3.internal.cache2.Relay: int SOURCE_FILE +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: retrofit2.Call $this_await$inlined +wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_in_lockScreen +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ProgressBar +androidx.preference.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.appcompat.widget.SwitchCompat: android.graphics.PorterDuff$Mode getTrackTintMode() +wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_default_alpha +androidx.lifecycle.R +androidx.viewpager2.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.R$attr: int dialogLayout +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetStart +androidx.appcompat.R$styleable: int FontFamily_fontProviderFetchStrategy +com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context,android.util.AttributeSet) +androidx.viewpager.widget.ViewPager: void removeOnAdapterChangeListener(androidx.viewpager.widget.ViewPager$OnAdapterChangeListener) androidx.preference.R$styleable: int AppCompatTheme_controlBackground -wangdaye.com.geometricweather.R$layout: int activity_widget_config -androidx.constraintlayout.widget.R$dimen: int abc_text_size_subtitle_material_toolbar -cyanogenmod.providers.CMSettings$System$1 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Overline -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setBrandId(java.lang.String) -android.didikee.donate.R$drawable: int abc_cab_background_top_material -okhttp3.Headers$Builder: okhttp3.Headers$Builder addAll(okhttp3.Headers) -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.ICMHardwareService getService() -wangdaye.com.geometricweather.R$drawable: int abc_seekbar_thumb_material -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.ChineseCityEntity) -wangdaye.com.geometricweather.R$attr: int layout_constraintTop_toBottomOf -androidx.lifecycle.LiveData$LifecycleBoundObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: long read(okio.Buffer,long) -cyanogenmod.weather.IRequestInfoListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.amap.api.location.AMapLocation: AMapLocation(android.location.Location) -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_min_width_major -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.functions.Function itemTimeoutIndicator -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void dispose() -androidx.appcompat.R$attr: int listPreferredItemPaddingStart -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType COLOR_DRAWABLE_TYPE -androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onNext(java.lang.Object) -androidx.hilt.work.R$id: int accessibility_custom_action_15 -com.bumptech.glide.R$dimen: int notification_subtext_size -okhttp3.internal.cache.DiskLruCache$Editor$1: void onException(java.io.IOException) -androidx.lifecycle.ReflectiveGenericLifecycleObserver -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -wangdaye.com.geometricweather.R$attr: int duration +androidx.hilt.R$id: int accessibility_custom_action_23 +james.adaptiveicon.R$attr: int listPopupWindowStyle +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: long EpochDateTime +com.google.android.material.button.MaterialButton: void setCornerRadiusResource(int) +com.jaredrummler.android.colorpicker.R$attr: int actionOverflowButtonStyle +androidx.lifecycle.ReflectiveGenericLifecycleObserver: androidx.lifecycle.ClassesInfoCache$CallbackInfo mInfo +wangdaye.com.geometricweather.R$attr: int minWidth +androidx.preference.R$attr: int switchPreferenceStyle +com.turingtechnologies.materialscrollbar.R$attr: int actionButtonStyle +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Borderless +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_voice_search_api_material +com.google.android.material.R$styleable: int Constraint_layout_constraintDimensionRatio +androidx.customview.R$id: int action_divider +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_default +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.google.android.material.R$styleable: int NavigationView_itemIconTint +wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontTitle +androidx.preference.R$styleable: int AppCompatTheme_panelMenuListWidth +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +com.google.android.material.R$dimen: int mtrl_btn_focused_z +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,long,boolean) +com.google.android.material.slider.Slider: void setTrackInactiveTintList(android.content.res.ColorStateList) +com.google.android.material.R$attr: int tabTextColor +androidx.preference.R$styleable: int[] StateListDrawableItem +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView +androidx.preference.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.R$id: int textinput_prefix_text +wangdaye.com.geometricweather.R$layout: int spinner_text +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +com.google.android.material.textfield.TextInputLayout: void addOnEndIconChangedListener(com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener) +androidx.viewpager.R$dimen: R$dimen() +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type BOTTOM +okio.Buffer: okio.Timeout timeout() +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onNext(java.lang.Object) +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2(retrofit2.Call) +wangdaye.com.geometricweather.R$attr: int clickAction +com.google.android.material.R$style: int Base_Widget_AppCompat_ListView +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +com.google.android.material.R$styleable: int CompoundButton_buttonCompat +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX +androidx.activity.R$id: int right_side +androidx.activity.R$id: int notification_main_column +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean forecastDaily +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_indeterminate +cyanogenmod.util.ColorUtils$1 +cyanogenmod.providers.CMSettings$System: java.lang.String SWAP_VOLUME_KEYS_ON_ROTATION +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayMode +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream newStream(java.util.List,boolean) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelMenuListWidth +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_1 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_clear_material +androidx.preference.R$string: int abc_menu_ctrl_shortcut_label +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit valueOf(java.lang.String) +android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +com.turingtechnologies.materialscrollbar.R$id: int line3 +cyanogenmod.providers.CMSettings$Global: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets +com.amap.api.location.DPoint$1: DPoint$1() +com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_entryValues +com.bumptech.glide.integration.okhttp.R$styleable: int[] CoordinatorLayout_Layout +wangdaye.com.geometricweather.db.entities.WeatherEntity: int temperature +androidx.constraintlayout.widget.R$id: int parentPanel +androidx.hilt.work.R$bool: int enable_system_alarm_service_default +james.adaptiveicon.R$styleable: int PopupWindow_overlapAnchor +com.turingtechnologies.materialscrollbar.R$string: R$string() +androidx.vectordrawable.animated.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_scaleX +okhttp3.internal.http2.Hpack$Writer: Hpack$Writer(int,boolean,okio.Buffer) +androidx.appcompat.R$style: int Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$string: int hide_bottom_view_on_scroll_behavior +okio.Okio: Okio() +wangdaye.com.geometricweather.R$string: int key_service_provider +wangdaye.com.geometricweather.R$drawable: int abc_switch_track_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionProviderClass +okhttp3.RealCall: void cancel() +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void dispose() +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme_Dark +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: AccuCurrentResult$WindChillTemperature() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List hourlyEntityList +com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_top_inner_color +retrofit2.Retrofit$Builder: java.util.List converterFactories +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int INTERRUPTED +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf +androidx.fragment.R$id: int title +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean isEntityUpdateable() +com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPreference +com.jaredrummler.android.colorpicker.R$attr: int tint +okhttp3.Authenticator$1: okhttp3.Request authenticate(okhttp3.Route,okhttp3.Response) +androidx.lifecycle.Lifecycling: androidx.lifecycle.LifecycleEventObserver lifecycleEventObserver(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_shapeAppearanceOverlay +com.google.android.material.card.MaterialCardView: void setUseCompatPadding(boolean) +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +androidx.constraintlayout.widget.R$attr: int autoTransition +okio.Segment: boolean shared +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int flow_firstVerticalBias +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceInformationStyle +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat +com.github.rahatarmanahmed.cpv.R$integer: R$integer() +com.turingtechnologies.materialscrollbar.R$id: int notification_main_column +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: ChineseCityEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +cyanogenmod.app.Profile: void getXmlString(java.lang.StringBuilder,android.content.Context) +androidx.fragment.app.FragmentManager: void removeOnBackStackChangedListener(androidx.fragment.app.FragmentManager$OnBackStackChangedListener) +retrofit2.RequestBuilder: okhttp3.HttpUrl$Builder urlBuilder +androidx.preference.R$id: int src_atop +androidx.vectordrawable.animated.R$attr: int fontProviderAuthority +com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_horizontal_material +com.jaredrummler.android.colorpicker.R$dimen: int cpv_dialog_preview_height +android.didikee.donate.R$attr: int expandActivityOverflowButtonDrawable +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$attr: int onTouchUp +wangdaye.com.geometricweather.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +wangdaye.com.geometricweather.R$drawable: int notif_temp_91 +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_year +okhttp3.Address +com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: void setInternalAutoHideListener(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) +com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_disabled +androidx.preference.R$dimen: int preference_seekbar_padding_vertical +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf +com.jaredrummler.android.colorpicker.R$attr: int showTitle +com.google.android.material.R$styleable: int AppCompatTheme_colorError +wangdaye.com.geometricweather.R$attr: int cornerSize +wangdaye.com.geometricweather.R$string: int key_list_animation_switch +com.xw.repo.bubbleseekbar.R$attr: int bsb_track_size +wangdaye.com.geometricweather.R$drawable: int notif_temp_37 +com.google.android.material.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +androidx.preference.R$style: int Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tMax +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: long getTime() +cyanogenmod.app.CustomTile$ExpandedStyle +com.google.android.material.R$drawable: int abc_list_divider_material +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +io.reactivex.internal.util.VolatileSizeArrayList: boolean remove(java.lang.Object) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index() +androidx.constraintlayout.widget.R$integer: int abc_config_activityShortDur +com.google.android.material.R$string: int mtrl_picker_text_input_date_range_end_hint +okhttp3.internal.http2.Http2Codec: okhttp3.internal.http2.Http2Connection connection +android.didikee.donate.R$attr: int backgroundSplit +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableStart +io.reactivex.Observable: io.reactivex.Observable onErrorReturnItem(java.lang.Object) +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_text_size +cyanogenmod.themes.IThemeService: int getLastThemeChangeRequestType() +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int READY +com.google.android.material.R$id: int material_value_index +android.didikee.donate.R$styleable: int ViewStubCompat_android_id +com.google.android.material.R$styleable: int ConstraintSet_android_translationZ +com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar +okhttp3.RealCall$AsyncCall: void executeOn(java.util.concurrent.ExecutorService) +com.google.gson.stream.JsonWriter: boolean htmlSafe +retrofit2.HttpException: java.lang.String message +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationX +wangdaye.com.geometricweather.R$drawable: int btn_radio_on_to_off_mtrl_animation +androidx.appcompat.widget.SwitchCompat: void setThumbTintList(android.content.res.ColorStateList) +androidx.lifecycle.Lifecycle$State: boolean isAtLeast(androidx.lifecycle.Lifecycle$State) +com.google.android.material.R$styleable: int TextInputLayout_helperTextEnabled +io.reactivex.internal.functions.Functions$HashSetCallable: java.util.Set call() +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_114 +wangdaye.com.geometricweather.R$integer: int app_bar_elevation_anim_duration +okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String lastModifiedString +com.turingtechnologies.materialscrollbar.R$attr: int boxBackgroundMode +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver +james.adaptiveicon.R$styleable: int DrawerArrowToggle_thickness +androidx.preference.R$styleable: int PreferenceTheme_switchPreferenceStyle +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_showDividers +androidx.constraintlayout.widget.R$drawable: int btn_radio_off_mtrl +androidx.appcompat.widget.LinearLayoutCompat: int getDividerWidth() +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias +androidx.appcompat.R$id: int search_close_btn +com.google.android.material.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge +androidx.hilt.work.R$drawable: int notification_icon_background +androidx.constraintlayout.widget.R$color: int accent_material_dark +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_6 +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_overflow_padding_end_material +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long) +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void dispose() +wangdaye.com.geometricweather.R$drawable: int widget_card_light_60 +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitation +wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_percent +com.turingtechnologies.materialscrollbar.R$string: int fab_transformation_sheet_behavior +com.google.gson.stream.JsonScope: int NONEMPTY_ARRAY +com.jaredrummler.android.colorpicker.R$string: int abc_action_bar_home_description +okhttp3.RealCall: okhttp3.EventListener access$000(okhttp3.RealCall) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_5 +com.google.android.material.R$layout: int notification_template_icon_group +okhttp3.HttpUrl$Builder: int parsePort(java.lang.String,int,int) +android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +wangdaye.com.geometricweather.R$layout: int material_timepicker +androidx.appcompat.resources.R$styleable: int ColorStateListItem_android_color +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode +androidx.fragment.R$dimen +okhttp3.internal.http.RealInterceptorChain +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex +wangdaye.com.geometricweather.R$styleable: int CardView_cardCornerRadius +cyanogenmod.weather.WeatherInfo: int describeContents() +wangdaye.com.geometricweather.R$attr: int defaultValue +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean done +cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: int CELSIUS +com.google.android.material.R$attr: int collapsedTitleGravity +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String parent +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_spinBars +cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.CMStatusBarManager getInstance(android.content.Context) +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.Query queryRawCreateListArgs(java.lang.String,java.util.Collection) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitation wangdaye.com.geometricweather.R$styleable: int FragmentContainerView_android_name -wangdaye.com.geometricweather.R$attr: int motionInterpolator -wangdaye.com.geometricweather.R$layout: int widget_day_week_tile -cyanogenmod.hardware.CMHardwareManager: int getVibratorMaxIntensity() -androidx.appcompat.R$styleable: int TextAppearance_textLocale -androidx.loader.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String toValue(java.util.List) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber -com.google.android.material.R$styleable: int ImageFilterView_warmth -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tMin -androidx.preference.R$color: int background_material_light -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_lightContainer -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarPopupTheme -com.google.android.material.R$id: int test_radiobutton_app_button_tint -wangdaye.com.geometricweather.R$styleable: int MaterialTextView_lineHeight -com.xw.repo.bubbleseekbar.R$style: int Platform_V21_AppCompat -com.google.android.material.R$attr: int expandedTitleMarginEnd -com.bumptech.glide.R$layout: int notification_template_icon_group -android.support.v4.os.ResultReceiver$1 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton -retrofit2.adapter.rxjava2.package-info -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX -wangdaye.com.geometricweather.R$attr: int cornerFamilyBottomRight -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer LEFT_CLOSE -androidx.hilt.work.R$styleable: int ColorStateListItem_alpha -com.google.android.material.R$dimen: int abc_text_size_button_material -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty1H -android.didikee.donate.R$layout: int notification_template_custom_big -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void dispose() -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription valueOf(java.lang.String) -androidx.constraintlayout.motion.widget.MotionLayout: void setOnHide(float) -com.google.android.material.R$attr: int indeterminateProgressStyle -cyanogenmod.externalviews.ExternalView$7 -okio.RealBufferedSource: boolean closed -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: long serialVersionUID -com.google.android.gms.common.internal.GetServiceRequest -com.google.android.material.R$drawable: int material_ic_menu_arrow_down_black_24dp -wangdaye.com.geometricweather.R$style: int TestThemeWithLineHeight -io.reactivex.Observable: io.reactivex.Observable sample(io.reactivex.ObservableSource,boolean) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.internal.fuseable.SimpleQueue queue -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -com.google.android.material.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge -okhttp3.Request: java.util.Map tags -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabTextStyle -com.google.android.material.circularreveal.CircularRevealLinearLayout: CircularRevealLinearLayout(android.content.Context) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -androidx.preference.R$attr: int contentInsetRight -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_title -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method getMethod -com.github.rahatarmanahmed.cpv.CircularProgressView: void stopAnimation() -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogIcon -androidx.fragment.R$drawable: int notification_icon_background -com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_text_size_2line -wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Light -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: float getBackgroundOverlayColorAlpha() -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setLatitude(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_android_max -okio.Options: okio.ByteString get(int) -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.chip.Chip: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_Solid -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean otherDone -wangdaye.com.geometricweather.db.entities.HourlyEntity: int temperature -androidx.fragment.R$attr: int font -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean mShouldShow -io.reactivex.internal.util.NotificationLite$ErrorNotification -androidx.hilt.work.R$dimen: int notification_action_text_size -io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription[] values() -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: boolean isDisposed() -com.google.android.material.R$styleable: int MaterialCalendar_yearTodayStyle -com.bumptech.glide.integration.okhttp.R$id: int right_side -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onNext(retrofit2.Response) -androidx.preference.R$drawable: int abc_list_pressed_holo_light -wangdaye.com.geometricweather.R$string: int gson -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -com.google.android.material.R$styleable: int Layout_layout_constraintWidth_percent +com.jaredrummler.android.colorpicker.R$anim: int abc_popup_exit +wangdaye.com.geometricweather.R$string: int of_clock +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String UVIndexText +com.google.android.material.R$styleable: int KeyTrigger_motion_triggerOnCollision +okhttp3.internal.connection.RealConnection: okhttp3.Handshake handshake() +cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_MSIM_PHONE_STATE +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_start +james.adaptiveicon.R$styleable: int SearchView_defaultQueryHint +androidx.preference.ListPreference$SavedState: android.os.Parcelable$Creator CREATOR +androidx.preference.R$styleable: int AppCompatTheme_windowFixedHeightMajor +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_2 +androidx.hilt.R$styleable: int[] FragmentContainerView +com.google.android.material.R$attr: int listItemLayout +wangdaye.com.geometricweather.R$attr: int allowStacking +wangdaye.com.geometricweather.R$attr: int elevationOverlayEnabled +com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: FloatingActionButton$BaseBehavior(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$style: int Base_V22_Theme_AppCompat +wangdaye.com.geometricweather.R$id: int treeTitle +com.google.android.material.R$id: int right +okhttp3.internal.http1.Http1Codec: void writeRequest(okhttp3.Headers,java.lang.String) +com.google.android.material.slider.BaseSlider: int getTrackWidth() +wangdaye.com.geometricweather.R$drawable: int abc_textfield_default_mtrl_alpha +com.google.android.material.R$color: int abc_tint_spinner +wangdaye.com.geometricweather.R$id: int mtrl_calendar_text_input_frame +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: java.util.concurrent.atomic.AtomicBoolean shouldConnect +androidx.appcompat.resources.R$layout: int notification_action +androidx.preference.R$attr: int navigationContentDescription +androidx.customview.R$drawable: R$drawable() +com.google.android.material.R$styleable: int ImageFilterView_altSrc +androidx.drawerlayout.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setBrandId(java.lang.String) +androidx.viewpager2.R$id: R$id() +cyanogenmod.externalviews.KeyguardExternalView: void registerOnWindowAttachmentChangedListener(cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener) androidx.preference.R$drawable: int abc_ic_star_black_36dp +com.google.android.material.R$drawable: int abc_switch_thumb_material +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +com.google.android.material.R$attr: int checkedIconTint +androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_KEY +com.google.android.material.R$attr: int tickColorActive +androidx.preference.PreferenceManager +androidx.preference.R$drawable: int abc_tab_indicator_material +com.google.android.material.R$color: int error_color_material_dark +androidx.constraintlayout.widget.R$styleable: int SearchView_goIcon +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: CNWeatherResult$Life() +com.google.android.material.R$layout: int design_navigation_item_subheader +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Tooltip +androidx.constraintlayout.widget.R$styleable: int[] CompoundButton +com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode Battery_Saving +androidx.vectordrawable.R$integer: int status_bar_notification_info_maxnum +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float thunderstormPrecipitationProbability +retrofit2.Call: boolean isCanceled() +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode Hight_Accuracy +wangdaye.com.geometricweather.R$string: int rain +wangdaye.com.geometricweather.R$attr: int deltaPolarAngle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String detail +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColorHint +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginEnd +com.google.android.gms.base.R$id: int dark +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.IBinder onBind(android.content.Intent) +cyanogenmod.weather.CMWeatherManager$2 +androidx.preference.R$drawable: int btn_radio_off_to_on_mtrl_animation +com.turingtechnologies.materialscrollbar.R$id: int search_mag_icon +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.util.concurrent.TimeUnit unit +wangdaye.com.geometricweather.R$styleable: int Chip_rippleColor +androidx.preference.R$dimen: int tooltip_precise_anchor_extra_offset +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: int getChartTop() +androidx.appcompat.R$styleable: int Toolbar_collapseIcon +androidx.constraintlayout.widget.R$drawable: int abc_item_background_holo_light +androidx.preference.R$attr: int arrowShaftLength +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeStyle +com.google.android.material.R$attr: int ratingBarStyleIndicator +androidx.preference.R$drawable: int ic_arrow_down_24dp +android.didikee.donate.R$attr: int actionModeCloseButtonStyle +wangdaye.com.geometricweather.R$id: int off +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +com.google.android.material.R$attr: int height +cyanogenmod.externalviews.ExternalView$6: void run() +androidx.preference.R$styleable: int StateListDrawable_android_exitFadeDuration +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginBottom +androidx.activity.R$id: int accessibility_custom_action_3 +androidx.hilt.R$styleable +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setRefreshing(boolean) +androidx.customview.R$styleable: int GradientColorItem_android_offset +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: android.os.IBinder asBinder() +androidx.appcompat.resources.R$id: int info +wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.R$drawable: int notif_temp_29 +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain12h +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +androidx.hilt.R$attr: int fontStyle +cyanogenmod.weatherservice.WeatherProviderService: void onDisconnected() +wangdaye.com.geometricweather.R$array: int pollen_units +com.turingtechnologies.materialscrollbar.R$attr: int actionModeFindDrawable +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String getValue() +wangdaye.com.geometricweather.R$styleable: int[] FontFamilyFont +james.adaptiveicon.R$attr: int actionModeCloseDrawable +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.R$attr: int buttonSize +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPopupWindowStyle +androidx.preference.EditTextPreference: void setOnBindEditTextListener(androidx.preference.EditTextPreference$OnBindEditTextListener) +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_checkableBehavior +com.xw.repo.bubbleseekbar.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$drawable: int ic_about +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: double Value +com.google.android.material.R$drawable: int abc_ic_go_search_api_material +com.google.android.material.R$styleable: int[] AppCompatTheme +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_item_max_width +com.xw.repo.bubbleseekbar.R$id: int expand_activities_button +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startY +androidx.constraintlayout.widget.R$attr: int layout_constraintCircle +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer realFeelShaderTemperature +wangdaye.com.geometricweather.R$xml: int widget_day_week +wangdaye.com.geometricweather.db.entities.AlertEntity: int color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: int UnitType +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String TypeID +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setId(java.lang.Long) +com.xw.repo.bubbleseekbar.R$id: int scrollIndicatorUp +com.google.android.material.R$styleable: int Badge_maxCharacterCount +com.google.android.material.R$interpolator: R$interpolator() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_creator +android.didikee.donate.R$color: int material_grey_50 +androidx.legacy.coreutils.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$drawable: int notif_temp_23 +okhttp3.internal.connection.RouteSelector: okhttp3.internal.connection.RouteDatabase routeDatabase +io.reactivex.Observable: io.reactivex.Observable delaySubscription(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okhttp3.internal.http.StatusLine: int HTTP_PERM_REDIRECT +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +androidx.constraintlayout.widget.R$attr: int panelMenuListTheme +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.Observer downstream +androidx.lifecycle.ViewModelProvider$OnRequeryFactory +androidx.preference.R$style: int Preference_SwitchPreference +androidx.recyclerview.R$id: int tag_unhandled_key_event_manager +androidx.preference.R$dimen: int abc_action_bar_stacked_max_height +android.support.v4.os.IResultReceiver$Default: void send(int,android.os.Bundle) +wangdaye.com.geometricweather.R$color: int material_on_surface_stroke +cyanogenmod.app.IPartnerInterface$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.transition.R$string: R$string() +androidx.cardview.widget.CardView: void setMaxCardElevation(float) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dark +androidx.constraintlayout.widget.Group: void setElevation(float) +com.amap.api.location.AMapLocation: java.lang.String b +com.jaredrummler.android.colorpicker.R$attr: int activityChooserViewStyle +wangdaye.com.geometricweather.R$attr: int flow_lastHorizontalStyle +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_background +com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_inset_vertical_material +androidx.appcompat.R$color: int foreground_material_dark +okio.RealBufferedSource: long indexOf(byte) +com.jaredrummler.android.colorpicker.R$string: int search_menu_title +cyanogenmod.app.StatusBarPanelCustomTile: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_Surface +okhttp3.RequestBody$2: byte[] val$content +androidx.appcompat.R$id: int accessibility_custom_action_11 +androidx.preference.R$style: int Widget_AppCompat_DropDownItem_Spinner +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectTimeout(java.time.Duration) +com.google.android.material.R$id: int accessibility_custom_action_12 +com.turingtechnologies.materialscrollbar.R$styleable: int[] SwitchCompat +androidx.preference.R$styleable: int[] GradientColorItem +okhttp3.Cookie: java.lang.String toString(boolean) +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontStyle +com.jaredrummler.android.colorpicker.R$attr: int cpv_showColorShades +android.didikee.donate.R$color: int abc_tint_switch_track +androidx.constraintlayout.widget.R$id: int action_image +wangdaye.com.geometricweather.R$attr: int actionButtonStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_card_dragged_z +com.xw.repo.bubbleseekbar.R$attr: int actionModeCutDrawable +android.didikee.donate.R$styleable: int AppCompatTheme_spinnerStyle +androidx.appcompat.R$styleable: int AppCompatTheme_colorControlActivated +wangdaye.com.geometricweather.R$string: int feedback_enable_location_information +okhttp3.Address: javax.net.ssl.SSLSocketFactory sslSocketFactory +com.turingtechnologies.materialscrollbar.R$attr: int actionBarWidgetTheme +wangdaye.com.geometricweather.R$drawable: int notif_temp_80 +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getLongAbbreviation(android.content.Context) +com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Icon +androidx.customview.R$styleable: int GradientColorItem_android_color +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_height_major +com.google.android.material.R$color: int mtrl_tabs_ripple_color +androidx.appcompat.R$style: int Widget_AppCompat_ActionButton_Overflow +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +okhttp3.internal.http2.Http2: Http2() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton_CloseMode +okhttp3.internal.http2.Hpack$Writer: void writeInt(int,int,int) +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_IME_SWITCHER +androidx.preference.R$drawable: int abc_edit_text_material +cyanogenmod.externalviews.KeyguardExternalView: void performAction(java.lang.Runnable) +cyanogenmod.profiles.StreamSettings$1: StreamSettings$1() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getZh_CN() +com.amap.api.location.AMapLocation: double u +com.google.android.material.R$styleable: int AppBarLayout_android_background +com.google.android.material.R$dimen: int mtrl_navigation_item_horizontal_padding +com.turingtechnologies.materialscrollbar.R$attr: int itemTextColor +wangdaye.com.geometricweather.R$id: int lastElement +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox +cyanogenmod.profiles.StreamSettings: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeWidthFocused +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: int getStatus() +com.google.android.material.card.MaterialCardView: void setCheckedIconSizeResource(int) +androidx.preference.R$dimen: int notification_large_icon_width +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(io.reactivex.Scheduler) +androidx.dynamicanimation.R$layout: R$layout() +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose Transport +com.github.rahatarmanahmed.cpv.CircularProgressView$4 +cyanogenmod.externalviews.ExternalViewProviderService$1: android.os.IBinder createExternalView(android.os.Bundle) +androidx.appcompat.R$styleable: int Spinner_android_prompt +com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.Throwable) +james.adaptiveicon.R$styleable: int Toolbar_contentInsetStart +androidx.appcompat.R$styleable: int SwitchCompat_thumbTintMode +com.google.android.material.R$style: int Base_Widget_AppCompat_SearchView +androidx.appcompat.R$styleable: int View_android_focusable +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float snowPrecipitation +androidx.lifecycle.ProcessLifecycleOwner: int mStartedCounter +com.turingtechnologies.materialscrollbar.R$id: int search_close_btn +okio.Utf8: Utf8() +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: io.reactivex.Scheduler scheduler +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableStart +com.bumptech.glide.load.HttpException: int getStatusCode() +io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer,io.reactivex.functions.Consumer) +androidx.core.R$id: int title +retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: retrofit2.Call call +james.adaptiveicon.R$id: int src_in +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierDirection +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_DarkActionBar +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListMenuView +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets +androidx.hilt.R$id: int async +okhttp3.Response: okhttp3.Response networkResponse +cyanogenmod.externalviews.KeyguardExternalView$9: cyanogenmod.externalviews.KeyguardExternalView this$0 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: void setServiceRequestState(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.ServiceRequestResult,int) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontWeight +okhttp3.Dispatcher: boolean promoteAndExecute() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +androidx.core.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_10 +com.google.android.material.R$styleable: int MaterialCheckBox_buttonTint +wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingEnd +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_max +com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_android_foreground +com.xw.repo.bubbleseekbar.R$styleable: int[] PopupWindow +com.google.gson.FieldNamingPolicy$2 +androidx.constraintlayout.widget.R$id: int search_close_btn +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: CaiYunMainlyResult$UrlBean() +androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.resources.R$styleable: int GradientColor_android_type +androidx.appcompat.R$styleable: int SwitchCompat_trackTintMode +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object ASYNC_DISPOSED +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties +androidx.preference.R$attr: int enabled +com.google.android.material.transformation.FabTransformationBehavior: FabTransformationBehavior() +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation precipitation +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain Rain +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf +io.reactivex.Observable: io.reactivex.Observable fromCallable(java.util.concurrent.Callable) +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customBoolean +wangdaye.com.geometricweather.R$color: int design_default_color_on_primary +com.google.android.material.appbar.AppBarLayout$BaseBehavior: AppBarLayout$BaseBehavior(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents +okio.AsyncTimeout$1: okio.AsyncTimeout this$0 +okhttp3.CacheControl: boolean immutable +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterOverflowTextAppearance +com.google.android.material.textfield.TextInputLayout: void setStartIconVisible(boolean) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: KeyguardExternalViewProviderService$Provider$ProviderImpl$8(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,float) +com.google.android.material.R$id: int design_navigation_view +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored +com.google.android.material.R$styleable: int ProgressIndicator_android_indeterminate +io.reactivex.internal.observers.DeferredScalarDisposable: void complete(java.lang.Object) +androidx.appcompat.R$attr: int showTitle +com.jaredrummler.android.colorpicker.R$dimen: int abc_search_view_preferred_height +wangdaye.com.geometricweather.R$attr: int text_size +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String latitude +android.didikee.donate.R$styleable: int AlertDialog_showTitle +com.google.android.material.R$dimen: int design_bottom_navigation_active_item_min_width +wangdaye.com.geometricweather.R$styleable: int ActionBar_logo +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox +cyanogenmod.app.IPartnerInterface$Stub: cyanogenmod.app.IPartnerInterface asInterface(android.os.IBinder) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchTrackballEvent(android.view.MotionEvent) +android.didikee.donate.R$id: int src_atop +androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationZ +com.google.android.material.chip.ChipGroup: void setChipSpacingHorizontal(int) +com.xw.repo.bubbleseekbar.R$attr: int drawerArrowStyle +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent[] $VALUES +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_light +com.turingtechnologies.materialscrollbar.R$layout: R$layout() +com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: java.lang.String icon +okio.Buffer$2 +com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$string: int abc_menu_space_shortcut_label +androidx.appcompat.view.menu.ActionMenuItemView: void setCheckable(boolean) +android.didikee.donate.R$bool: R$bool() +android.didikee.donate.R$id: int screen +wangdaye.com.geometricweather.R$drawable: int ic_top +androidx.customview.R$id: int text +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_ActionBar +okhttp3.internal.http2.Http2Connection$1: Http2Connection$1(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okhttp3.internal.http2.ErrorCode) +retrofit2.ParameterHandler$QueryMap: void apply(retrofit2.RequestBuilder,java.lang.Object) +james.adaptiveicon.R$id: int parentPanel +io.reactivex.internal.operators.observable.ObserverResourceWrapper +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_pressed_z +androidx.hilt.work.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.settings.fragments.SettingsFragment +androidx.coordinatorlayout.R$id: int accessibility_custom_action_7 +androidx.constraintlayout.widget.R$layout: int abc_search_dropdown_item_icons_2line +androidx.core.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$id: int select_dialog_listview +retrofit2.CompletableFutureCallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +androidx.preference.R$drawable: int abc_spinner_mtrl_am_alpha +androidx.preference.EditTextPreference$SavedState: android.os.Parcelable$Creator CREATOR +okhttp3.internal.cache.DiskLruCache: boolean isClosed() +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int requestFusion(int) +com.google.android.material.R$style: int TextAppearance_AppCompat_Small +androidx.drawerlayout.R$integer: R$integer() +androidx.cardview.widget.CardView: void setUseCompatPadding(boolean) +com.google.gson.stream.JsonReader: long nextLong() +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: long serialVersionUID +okio.BufferedSink: okio.BufferedSink emitCompleteSegments() +androidx.vectordrawable.R$attr: int alpha +okhttp3.internal.cache.CacheInterceptor: okhttp3.internal.cache.InternalCache cache +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String feelslike_c +okhttp3.Handshake: boolean equals(java.lang.Object) +com.google.android.material.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius +cyanogenmod.app.ProfileManager: boolean isProfilesEnabled() +androidx.hilt.R$id: int accessibility_custom_action_9 +androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragDirection +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +androidx.appcompat.R$color: int abc_hint_foreground_material_light +okhttp3.internal.ws.WebSocketReader: okio.BufferedSource source +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean access$702(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,boolean) +okhttp3.internal.cache.DiskLruCache: boolean closed +androidx.preference.R$styleable: int FontFamilyFont_ttcIndex +androidx.preference.R$attr: int thickness +okhttp3.OkHttpClient$Builder: OkHttpClient$Builder() +androidx.recyclerview.R$id: int item_touch_helper_previous_elevation +com.google.android.gms.location.places.PlaceReport +androidx.constraintlayout.widget.R$attr: int circleRadius +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: retrofit2.Call call +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onKeyguardShowing(boolean) +wangdaye.com.geometricweather.common.basic.models.weather.UV: boolean isValid() +com.turingtechnologies.materialscrollbar.R$attr: int titleMarginBottom +androidx.loader.R$id: int normal +com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_track_material +androidx.lifecycle.viewmodel.savedstate.R +androidx.hilt.R$id: int normal +wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_material +androidx.recyclerview.widget.StaggeredGridLayoutManager +cyanogenmod.weather.WeatherLocation: int describeContents() +wangdaye.com.geometricweather.R$color: int mtrl_btn_text_color_disabled +io.reactivex.internal.subscriptions.BasicQueueSubscription +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorColor +wangdaye.com.geometricweather.R$string: int key_text_color +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_light +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_Bridge +cyanogenmod.providers.CMSettings$Secure: java.lang.String APP_PERFORMANCE_PROFILES_ENABLED +wangdaye.com.geometricweather.R$attr: int allowDividerAbove +com.google.android.material.R$id: int mtrl_picker_title_text +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_SETTINGS +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_5 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.util.List getValue() +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_summary +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_popupTheme +okhttp3.RequestBody$1: okhttp3.MediaType contentType() +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +com.google.android.material.R$styleable: int ConstraintSet_flow_lastVerticalStyle +wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_Tooltip +okhttp3.Response$Builder: Response$Builder(okhttp3.Response) +io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function) +com.google.android.material.bottomnavigation.BottomNavigationView: int getLabelVisibilityMode() +androidx.constraintlayout.widget.R$attr: int editTextStyle +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackActiveTintList() +cyanogenmod.weather.WeatherLocation: java.lang.String mCountry +androidx.constraintlayout.widget.R$color: int material_blue_grey_900 +androidx.transition.R$dimen: int compat_button_padding_horizontal_material +androidx.preference.R$style: int Preference_Material +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmPic2 +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void error(java.lang.Throwable) +androidx.constraintlayout.widget.R$dimen: int abc_button_inset_vertical_material +okhttp3.Response$Builder: okhttp3.Response$Builder sentRequestAtMillis(long) +okhttp3.Call: boolean isExecuted() +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.reflect.Type getGenericComponentType() +com.google.android.material.R$style: int TestStyleWithLineHeight +cyanogenmod.weatherservice.IWeatherProviderService$Stub: IWeatherProviderService$Stub() +com.google.android.material.R$attr: int fabAlignmentMode +androidx.preference.R$styleable: int AppCompatTheme_windowFixedHeightMinor +androidx.coordinatorlayout.R$id: int accessibility_custom_action_3 +james.adaptiveicon.R$styleable: int DrawerArrowToggle_barLength +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_background_transition_holo_dark +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void dispose() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: AccuDailyResult$DailyForecasts$Night() +james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton_CloseMode +com.google.android.material.card.MaterialCardView: int getContentPaddingBottom() +com.google.android.material.R$layout: int test_design_radiobutton +com.google.android.material.R$dimen: int abc_dropdownitem_icon_width +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_weightSum +com.amap.api.location.AMapLocation: java.lang.String getCityCode() +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode[] getDisplayModes() +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Inverse +cyanogenmod.externalviews.KeyguardExternalView: void onAttachedToWindow() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +wangdaye.com.geometricweather.R$id: int container_main_header_weatherTxt +androidx.lifecycle.SingleGeneratedAdapterObserver: androidx.lifecycle.GeneratedAdapter mGeneratedAdapter +retrofit2.BuiltInConverters: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_MIN_INDEX +wangdaye.com.geometricweather.R$id: int widget_day_week_week_3 +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer getDbz() +com.google.android.material.R$styleable: int[] MotionHelper +com.jaredrummler.android.colorpicker.R$attr: int popupWindowStyle +wangdaye.com.geometricweather.R$string: int follow_system +androidx.lifecycle.extensions.R$drawable: int notification_template_icon_bg +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +androidx.constraintlayout.utils.widget.ImageFilterButton: void setWarmth(float) +com.xw.repo.bubbleseekbar.R$styleable: int[] ButtonBarLayout +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeChangeRequest$RequestType getLastThemeChangeRequestType() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_padding_right +android.didikee.donate.R$attr: int actionModeCopyDrawable +okhttp3.internal.ws.RealWebSocket$2: void onResponse(okhttp3.Call,okhttp3.Response) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: long serialVersionUID +com.jaredrummler.android.colorpicker.R$anim: R$anim() +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_AUTH +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: void setGravitySensorEnabled(boolean) +wangdaye.com.geometricweather.R$attr: int tooltipStyle +okio.Buffer: boolean rangeEquals(long,okio.ByteString) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Title +wangdaye.com.geometricweather.R$attr: int flow_firstVerticalStyle +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ImageButton +wangdaye.com.geometricweather.R$attr: int chipIconVisible +com.bumptech.glide.R$styleable: int GradientColor_android_startColor +cyanogenmod.themes.ThemeManager: void requestThemeChange(java.util.Map) +wangdaye.com.geometricweather.R$string: int wind_9 +okio.Pipe +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonStyleSmall +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver inner +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.fragment.R$dimen: int notification_subtext_size +androidx.preference.R$attr: int queryBackground +androidx.appcompat.R$styleable: int TextAppearance_textAllCaps +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 +retrofit2.ParameterHandler$2: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_shouldDisableView +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,long,java.util.concurrent.TimeUnit) +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Light +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowMinWidthMajor +com.google.android.gms.base.R$styleable +com.google.android.material.R$drawable: int mtrl_dropdown_arrow +okhttp3.internal.http.RetryAndFollowUpInterceptor: int MAX_FOLLOW_UPS +wangdaye.com.geometricweather.R$id: int widget_week_icon_1 +okhttp3.RealCall$AsyncCall: void execute() +james.adaptiveicon.R$attr: int displayOptions +cyanogenmod.externalviews.KeyguardExternalView$1 +androidx.constraintlayout.widget.R$attr: int constraints +androidx.preference.R$attr: int colorSwitchThumbNormal +com.jaredrummler.android.colorpicker.R$id: int select_dialog_listview +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIcon +androidx.preference.R$id: int listMode +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_2 +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit valueOf(java.lang.String) +okhttp3.internal.cache.FaultHidingSink: FaultHidingSink(okio.Sink) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours Past9Hours +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvLevel +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setAdaptiveWidthEnabled(boolean) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Small +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo build() +androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +wangdaye.com.geometricweather.R$anim: int mtrl_bottom_sheet_slide_out +cyanogenmod.themes.ThemeManager$1$1 +com.google.android.material.R$id: int progress_circular +android.didikee.donate.R$attr: int layout +androidx.appcompat.R$dimen: int abc_action_bar_stacked_tab_max_width +com.google.android.material.R$styleable: int Slider_trackColor +androidx.legacy.coreutils.R$styleable: R$styleable() +com.amap.api.location.AMapLocation: int GPS_ACCURACY_UNKNOWN +okhttp3.internal.http2.Http2Connection$Builder: int pingIntervalMillis +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingStart +wangdaye.com.geometricweather.R$style: int Base_V26_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_indicator_material +cyanogenmod.weather.RequestInfo: java.lang.String mCityName +wangdaye.com.geometricweather.R$layout: int abc_expanded_menu_layout +androidx.constraintlayout.widget.R$attr: R$attr() +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_MediumComponent +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.Property[] getProperties() +androidx.preference.R$drawable: int abc_item_background_holo_light +wangdaye.com.geometricweather.R$attr: int values +com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_Material +androidx.core.R$id: int accessibility_custom_action_11 +androidx.constraintlayout.widget.R$attr: int actionBarPopupTheme +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean +androidx.appcompat.resources.R$id: int accessibility_custom_action_11 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorError +wangdaye.com.geometricweather.R$styleable: int MaterialButton_rippleColor +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle +com.amap.api.location.CoordinateConverter: float calculateLineDistance(com.amap.api.location.DPoint,com.amap.api.location.DPoint) +androidx.lifecycle.LifecycleDispatcher: java.util.concurrent.atomic.AtomicBoolean sInitialized +okhttp3.internal.http2.Header: okio.ByteString PSEUDO_PREFIX +cyanogenmod.app.CMContextConstants: CMContextConstants() +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function9) +com.amap.api.fence.GeoFence: int STATUS_IN +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String languageId +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +com.google.android.material.R$attr: int layout_constraintTop_creator +androidx.preference.R$styleable: int PreferenceGroup_android_orderingFromXml +wangdaye.com.geometricweather.R$styleable: int[] Badge +wangdaye.com.geometricweather.R$string: int key_align_end +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SeekBar +com.google.android.material.chip.Chip: void setCloseIconEndPadding(float) +androidx.preference.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_2 +androidx.activity.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.R$styleable: int[] MaterialButton +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ImageButton +wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_height_major +okhttp3.Cookie: okhttp3.Cookie parse(okhttp3.HttpUrl,java.lang.String) +io.reactivex.Observable: java.lang.Object blockingFirst(java.lang.Object) +androidx.activity.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$dimen: int cardview_compat_inset_shadow +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode TRUNCATE +androidx.preference.R$styleable: int DrawerArrowToggle_spinBars +com.google.android.material.R$attr: int itemSpacing +cyanogenmod.weather.WeatherInfo$DayForecast: java.lang.String mKey +androidx.appcompat.widget.AlertDialogLayout +cyanogenmod.app.CMContextConstants: java.lang.String CM_TELEPHONY_MANAGER_SERVICE +com.google.android.material.circularreveal.CircularRevealGridLayout +cyanogenmod.app.ICMStatusBarManager +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Refresh +okhttp3.internal.cache.DiskLruCache$1: DiskLruCache$1(okhttp3.internal.cache.DiskLruCache) +com.google.android.material.R$attr: int collapsedSize +cyanogenmod.app.ProfileGroup: java.util.UUID mUuid +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: long remaining +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display1 +com.google.android.material.R$attr: int itemHorizontalTranslationEnabled +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: AccuDailyResult$DailyForecasts$Day$Snow() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getProvince() +androidx.hilt.work.R$id: int accessibility_custom_action_4 +james.adaptiveicon.R$styleable: int AppCompatTheme_dialogPreferredPadding +com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_light +com.google.android.gms.base.R$styleable: int[] SignInButton +james.adaptiveicon.R$integer: int abc_config_activityShortDur +wangdaye.com.geometricweather.background.polling.PollingUpdateHelper +retrofit2.Converter$Factory: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) +cyanogenmod.externalviews.KeyguardExternalView: void onLockscreenSlideOffsetChanged(float) +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarButtonStyle +wangdaye.com.geometricweather.R$id: int navigation_header_container +androidx.viewpager2.widget.ViewPager2: void setPageTransformer(androidx.viewpager2.widget.ViewPager2$PageTransformer) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +androidx.constraintlayout.widget.R$attr: int tooltipForegroundColor +com.amap.api.fence.PoiItem: void setLongitude(double) +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_xml +com.google.android.material.R$layout: int test_toolbar_custom_background +wangdaye.com.geometricweather.R$xml: int perference_appearance +com.google.android.material.R$dimen: int mtrl_calendar_content_padding +wangdaye.com.geometricweather.R$attr: int collapseIcon +com.turingtechnologies.materialscrollbar.R$attr: int tintMode +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchMinWidth +com.google.android.material.R$attr: int flow_firstHorizontalStyle +okhttp3.Cache$CacheRequestImpl: okhttp3.Cache this$0 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean() +com.jaredrummler.android.colorpicker.R$styleable: int Preference_allowDividerAbove +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.WeatherEntityDao getWeatherEntityDao() +androidx.preference.R$attr: int switchTextOff +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +androidx.appcompat.resources.R$id: int blocking +com.google.android.material.tabs.TabLayout$TabView: void setTab(com.google.android.material.tabs.TabLayout$Tab) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: int status james.adaptiveicon.R$attr: int buttonTint -com.google.android.material.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -com.jaredrummler.android.colorpicker.R$layout: int abc_cascading_menu_item_layout -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_darkIcon -androidx.recyclerview.R$styleable: int RecyclerView_spanCount -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void cancelSubscription() -okhttp3.OkHttpClient$Builder: javax.net.ssl.SSLSocketFactory sslSocketFactory -okhttp3.internal.http.HttpCodec: void writeRequestHeaders(okhttp3.Request) -wangdaye.com.geometricweather.R$attr: int backgroundColorEnd -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconTint -com.google.android.material.R$color: int mtrl_textinput_filled_box_default_background_color -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorAccent -androidx.preference.R$styleable: int[] MenuItem -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_closeItemLayout -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Large -androidx.appcompat.R$attr: int colorPrimary -cyanogenmod.app.ThemeComponent: ThemeComponent(java.lang.String,int,int) -androidx.core.R$dimen: int compat_notification_large_icon_max_width -com.google.android.material.slider.BaseSlider: void setValueFrom(float) -androidx.viewpager.R$styleable: int GradientColor_android_type -io.reactivex.Observable: io.reactivex.Maybe reduce(io.reactivex.functions.BiFunction) -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.lang.Throwable error -androidx.preference.R$drawable: int notification_bg_low -com.google.android.material.internal.CheckableImageButton: void setCheckable(boolean) -cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_MSIM_PHONE_STATE -com.google.android.material.R$layout: int design_navigation_menu_item -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_sync_duration -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_title -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean done +com.google.android.material.R$styleable: int Constraint_transitionEasing +com.google.android.material.slider.Slider: void setThumbRadius(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date from +com.google.android.material.R$string: int abc_activitychooserview_choose_application +james.adaptiveicon.R$style: int Widget_AppCompat_ListMenuView +wangdaye.com.geometricweather.R$attr: int tint +okhttp3.Cookie: java.lang.String toString() +cyanogenmod.weather.CMWeatherManager$1: CMWeatherManager$1(cyanogenmod.weather.CMWeatherManager) +com.google.gson.stream.JsonWriter: java.lang.String deferredName +com.turingtechnologies.materialscrollbar.R$layout: int design_bottom_navigation_item +wangdaye.com.geometricweather.R$styleable: int TabItem_android_icon +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Subhead +okhttp3.internal.http2.Http2Connection: void writeData(int,boolean,okio.Buffer,long) +androidx.constraintlayout.widget.R$attr: int mock_label +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_DialogWhenLarge +androidx.preference.R$style: int Preference_CheckBoxPreference +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode[] getDisplayModes() +okhttp3.Cache$Entry: int code +androidx.constraintlayout.widget.R$integer: int abc_config_activityDefaultDur +androidx.recyclerview.R$styleable: int[] FontFamilyFont +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode DEFAULT +wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_3 +com.google.android.material.R$attr: int toolbarNavigationButtonStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX +okio.BufferedSink: java.io.OutputStream outputStream() +androidx.constraintlayout.helper.widget.Layer: void setRotation(float) +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: long serialVersionUID +androidx.preference.R$attr: int entryValues +wangdaye.com.geometricweather.R$styleable: int Spinner_popupTheme +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_typeface +com.google.android.material.R$attr: int dividerHorizontal +wangdaye.com.geometricweather.R$style: int AlertDialog_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_default_mtrl_alpha +androidx.lifecycle.ViewModelProvider$NewInstanceFactory +wangdaye.com.geometricweather.R$attr: int growMode +androidx.appcompat.R$integer: int abc_config_activityShortDur +cyanogenmod.app.CustomTileListenerService: void removeCustomTile(java.lang.String,java.lang.String,int) +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.google.android.material.R$styleable: int AppBarLayout_expanded +com.google.android.material.R$styleable: int ViewStubCompat_android_inflatedId +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_editor_absoluteY +android.didikee.donate.R$styleable: int Toolbar_title +com.google.android.material.R$attr: int hideOnScroll +com.google.android.material.R$animator: int mtrl_fab_transformation_sheet_expand_spec +cyanogenmod.providers.DataUsageContract: java.lang.String FAST_AVG +wangdaye.com.geometricweather.R$layout: int item_alert +wangdaye.com.geometricweather.R$drawable: int notif_temp_15 +retrofit2.Retrofit: retrofit2.ServiceMethod loadServiceMethod(java.lang.reflect.Method) +cyanogenmod.app.ICMTelephonyManager$Stub: ICMTelephonyManager$Stub() +com.google.android.gms.base.R$string: int common_google_play_services_update_button +okhttp3.Route: boolean requiresTunnel() +androidx.appcompat.R$styleable: int SearchView_voiceIcon +james.adaptiveicon.R$id: int search_go_btn +com.xw.repo.bubbleseekbar.R$attr: int itemPadding +androidx.drawerlayout.R$layout: int notification_action +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvIndex(java.lang.Integer) +com.jaredrummler.android.colorpicker.R$layout: int cpv_color_item_square +wangdaye.com.geometricweather.R$string: int settings_title_daily_trend_display +cyanogenmod.app.StatusBarPanelCustomTile: int getInitialPid() +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +android.didikee.donate.R$styleable: int SwitchCompat_switchTextAppearance +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +com.google.android.material.R$attr: int errorIconTintMode +androidx.appcompat.R$style: int Base_Widget_AppCompat_ImageButton +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onComplete() +com.google.android.material.slider.BaseSlider: void setSeparationUnit(int) +cyanogenmod.providers.CMSettings$Secure: java.lang.String CM_SETUP_WIZARD_COMPLETED +james.adaptiveicon.R$attr: int tickMarkTintMode +okhttp3.Call$Factory: okhttp3.Call newCall(okhttp3.Request) +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver +com.google.android.material.R$layout: int design_text_input_start_icon +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: java.lang.Integer direction +cyanogenmod.weather.CMWeatherManager$1$1: cyanogenmod.weather.CMWeatherManager$1 this$1 +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_elevation_material +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorColors +androidx.cardview.widget.CardView: CardView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getPressureText(android.content.Context,float) +wangdaye.com.geometricweather.R$string: int abc_menu_sym_shortcut_label +com.xw.repo.bubbleseekbar.R$attr: int bsb_hide_bubble +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String weatherEnd +wangdaye.com.geometricweather.R$color: int switch_thumb_disabled_material_light +androidx.core.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionTitle +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRealFeelTemperature(java.lang.Integer) +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_subhead_material +wangdaye.com.geometricweather.R$dimen: int abc_control_corner_material +wangdaye.com.geometricweather.R$styleable: int[] ArcProgress +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature Temperature +com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomAppBar +okio.GzipSource: okio.Timeout timeout() +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable +com.amap.api.fence.PoiItem: void writeToParcel(android.os.Parcel,int) +okhttp3.internal.connection.RouteSelector: void resetNextInetSocketAddress(java.net.Proxy) +com.google.android.material.R$attr: int fontProviderQuery +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_ttcIndex +com.turingtechnologies.materialscrollbar.R$attr: int dividerPadding +wangdaye.com.geometricweather.R$attr: int region_heightMoreThan +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder maxAge(int,java.util.concurrent.TimeUnit) +cyanogenmod.weather.WeatherInfo: double mTodaysLowTemp +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: void close() +cyanogenmod.hardware.CMHardwareManager: java.lang.String readPersistentString(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int abc_dialog_corner_radius_material +james.adaptiveicon.R$attr: int panelMenuListWidth +androidx.transition.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCo(java.lang.Float) +com.turingtechnologies.materialscrollbar.R$id: int action_container +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean feelsLike +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: double Value +com.google.android.material.R$styleable: int TabItem_android_layout +com.google.android.material.R$styleable: int Tooltip_android_textAppearance +com.turingtechnologies.materialscrollbar.R$attr: int textAppearancePopupMenuHeader +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle MATERIAL +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: float unitFactor +io.reactivex.Observable: io.reactivex.Observable sorted() +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void cancel() +io.reactivex.Observable: java.lang.Object blockingLast() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView_DropDown +com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierMargin +androidx.preference.UnPressableLinearLayout: UnPressableLinearLayout(android.content.Context) +okhttp3.ConnectionSpec: boolean isCompatible(javax.net.ssl.SSLSocket) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUpdateDate(java.util.Date) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipMinTouchTargetSize +wangdaye.com.geometricweather.R$attr: int colorScheme +wangdaye.com.geometricweather.R$string: int abc_search_hint +wangdaye.com.geometricweather.R$layout: R$layout() +com.turingtechnologies.materialscrollbar.R$attr: int layout_dodgeInsetEdges +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.github.rahatarmanahmed.cpv.CircularProgressView: void onDraw(android.graphics.Canvas) +androidx.appcompat.widget.SwitchCompat: int getSwitchMinWidth() +com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_tick_mark_material +androidx.hilt.work.R$id: int action_divider +com.google.android.material.R$style: int Widget_AppCompat_Light_ListPopupWindow +androidx.appcompat.R$style: int Theme_AppCompat_CompactMenu +james.adaptiveicon.R$styleable: int Toolbar_maxButtonHeight +androidx.preference.R$id: int accessibility_custom_action_8 +com.google.android.material.R$id: int transition_transform +androidx.constraintlayout.widget.R$id: int line1 +androidx.vectordrawable.R$styleable +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.hilt.work.R$id: int accessibility_custom_action_24 +okhttp3.internal.connection.RealConnection: okhttp3.internal.http.HttpCodec newCodec(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,okhttp3.internal.connection.StreamAllocation) +com.google.android.material.R$layout: int abc_activity_chooser_view_list_item +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd +androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_3 +com.turingtechnologies.materialscrollbar.R$attr: int checkedIconEnabled +wangdaye.com.geometricweather.db.entities.AlertEntity: void setDate(java.util.Date) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setCity_code(int) +james.adaptiveicon.R$styleable: int Spinner_android_popupBackground +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabView +androidx.constraintlayout.widget.R$styleable: int ActionMode_subtitleTextStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_imageButtonStyle +com.google.android.material.R$string: int abc_action_bar_up_description +com.google.android.material.R$attr: int tooltipText +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: long EpochSet +wangdaye.com.geometricweather.R$attr: int iconSize +com.turingtechnologies.materialscrollbar.R$attr: int keylines +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_72 +wangdaye.com.geometricweather.R$style: int Preference_Information_Material +wangdaye.com.geometricweather.R$style: int widget_text_clock_analog +wangdaye.com.geometricweather.R$attr: int limitBoundsTo +com.xw.repo.bubbleseekbar.R$styleable: int View_android_theme +androidx.appcompat.R$styleable: int SearchView_searchIcon +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedQueryParameter(java.lang.String,java.lang.String) +com.turingtechnologies.materialscrollbar.R$color: int material_grey_850 +com.xw.repo.bubbleseekbar.R$attr: int tickMark +android.didikee.donate.R$style: int Widget_AppCompat_PopupMenu_Overflow +cyanogenmod.profiles.StreamSettings$1 +com.google.android.gms.base.R$id +androidx.viewpager2.R$drawable: int notification_bg_low +androidx.constraintlayout.widget.R$string: int abc_action_mode_done +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +cyanogenmod.app.ProfileGroup: android.net.Uri getSoundOverride() +com.google.android.material.R$style: int ShapeAppearanceOverlay_TopRightDifferentCornerSize +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTheme +okhttp3.ResponseBody: okio.BufferedSource source() +com.google.android.material.textfield.TextInputLayout: void setHint(java.lang.CharSequence) +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) +androidx.appcompat.R$attr: int goIcon +androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontWeight +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long serialVersionUID +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_textOff +com.xw.repo.bubbleseekbar.R$string: int abc_toolbar_collapse_description +com.google.android.material.card.MaterialCardView: void setRippleColor(android.content.res.ColorStateList) +androidx.constraintlayout.utils.widget.ImageFilterButton: void setContrast(float) +androidx.hilt.lifecycle.R$anim: int fragment_close_enter +com.xw.repo.bubbleseekbar.R$id: int select_dialog_listview +com.google.android.material.R$styleable: int KeyCycle_android_elevation +androidx.constraintlayout.widget.R$styleable: int[] FontFamily +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$RequestType mRequestType +okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_0 +wangdaye.com.geometricweather.R$drawable: int notification_tile_bg +com.google.android.material.R$styleable: int TabLayout_tabInlineLabel +io.reactivex.Observable: io.reactivex.Completable switchMapCompletable(io.reactivex.functions.Function) +okio.Buffer: okio.BufferedSink writeShortLe(int) +com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_toRightOf +androidx.appcompat.R$style: int Base_Animation_AppCompat_Tooltip +okio.SegmentPool +wangdaye.com.geometricweather.R$attr: int msb_autoHide +okhttp3.internal.http2.Http2Connection$5: okhttp3.internal.http2.Http2Connection this$0 +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton +wangdaye.com.geometricweather.R$attr: int bottom_text +com.google.android.material.slider.Slider: float getValue() +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language JAPANESE +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Title +androidx.core.R$string +android.didikee.donate.R$id: int titleDividerNoCustom +com.jaredrummler.android.colorpicker.R$color: int error_color_material_dark +com.google.gson.stream.JsonReader: java.lang.String getPath() +wangdaye.com.geometricweather.R$id: int action_menu_divider +com.amap.api.fence.GeoFenceClient: com.amap.api.fence.GeoFenceManagerBase b +cyanogenmod.externalviews.ExternalViewProviderService: android.os.Handler mHandler +wangdaye.com.geometricweather.R$attr: int tabIndicatorGravity +com.google.android.material.R$integer: int mtrl_calendar_year_selector_span +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemBackground +wangdaye.com.geometricweather.R$drawable: int notif_temp_89 +com.google.android.material.R$style: int TextAppearance_AppCompat_Title +androidx.preference.R$integer: int cancel_button_image_alpha +cyanogenmod.profiles.ConnectionSettings$BooleanState +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_pivotAnchor +cyanogenmod.hardware.CMHardwareManager: boolean requireAdaptiveBacklightForSunlightEnhancement() +androidx.lifecycle.extensions.R$drawable: R$drawable() +okhttp3.Cache$Entry: okhttp3.Protocol protocol +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void dispose() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float rainPrecipitationProbability +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: AccuDailyResult$DailyForecasts$Moon() +com.google.android.material.R$anim: R$anim() +androidx.activity.R$id: int forever +androidx.swiperefreshlayout.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_TopLeftCut +com.google.gson.stream.JsonReader$1: void promoteNameToValue(com.google.gson.stream.JsonReader) +io.reactivex.internal.disposables.ArrayCompositeDisposable: ArrayCompositeDisposable(int) +james.adaptiveicon.R$attr: int thickness +android.didikee.donate.R$dimen: int abc_text_size_menu_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: int UnitType +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerNext() +androidx.vectordrawable.R$styleable: int[] GradientColor +androidx.preference.R$dimen: int notification_action_icon_size +androidx.hilt.lifecycle.R$styleable: int[] FontFamilyFont +dagger.hilt.android.internal.managers.ActivityRetainedComponentManager$ActivityRetainedComponentViewModel +androidx.preference.Preference: void setOnPreferenceClickListener(androidx.preference.Preference$OnPreferenceClickListener) +wangdaye.com.geometricweather.R$animator: int weather_clear_day_1 +com.turingtechnologies.materialscrollbar.R$attr: int tabBackground +wangdaye.com.geometricweather.R$id: int guideline +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather +james.adaptiveicon.R$styleable: int ActionMenuItemView_android_minWidth +io.reactivex.Observable: io.reactivex.Observable timestamp(io.reactivex.Scheduler) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton +com.google.android.material.R$layout: int design_text_input_end_icon +cyanogenmod.util.ColorUtils: int findPerceptuallyNearestSolidColor(int) +wangdaye.com.geometricweather.R$id: int material_timepicker_ok_button +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: float unitFactor +wangdaye.com.geometricweather.R$drawable: int avd_hide_password +okhttp3.internal.http.StatusLine: int code +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onComplete() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_MODE_VALIDATOR +james.adaptiveicon.R$styleable: int AppCompatTheme_tooltipForegroundColor +androidx.constraintlayout.widget.R$attr: int expandActivityOverflowButtonDrawable +androidx.loader.R$dimen: int notification_big_circle_margin +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBaseline_creator +androidx.viewpager.R$id: int right_side +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String tempMin +com.google.android.material.R$styleable: int Chip_closeIconEnabled +androidx.appcompat.R$color: int abc_tint_seek_thumb +cyanogenmod.providers.CMSettings$Secure: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +androidx.fragment.app.DialogFragment +com.google.android.material.R$styleable: int Motion_motionStagger +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void request(long) +androidx.preference.R$anim: int fragment_fade_enter +okio.ForwardingSource +wangdaye.com.geometricweather.R$animator: int weather_hail_3 +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastHorizontalStyle +androidx.preference.R$styleable: int Toolbar_contentInsetStart +androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context,android.util.AttributeSet) +com.google.android.gms.base.R$string: int common_google_play_services_wear_update_text +okio.InflaterSource: InflaterSource(okio.Source,java.util.zip.Inflater) +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.lang.Object NEXT_WINDOW +androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableTransition +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_THEME_COMPONENTS +androidx.work.impl.workers.CombineContinuationsWorker: CombineContinuationsWorker(android.content.Context,androidx.work.WorkerParameters) +com.jaredrummler.android.colorpicker.R$layout: int abc_activity_chooser_view_list_item +android.support.v4.os.ResultReceiver$MyRunnable: ResultReceiver$MyRunnable(android.support.v4.os.ResultReceiver,int,android.os.Bundle) +wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_text_padding_right +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_RAMP_UP_TIME_VALIDATOR +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onNext(java.lang.Object) +androidx.preference.R$string: int abc_menu_shift_shortcut_label +okhttp3.Cache$CacheResponseBody$1: okhttp3.internal.cache.DiskLruCache$Snapshot val$snapshot +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long serialVersionUID +okio.RealBufferedSource: int select(okio.Options) +com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference upstream +com.turingtechnologies.materialscrollbar.R$color: int primary_dark_material_dark +androidx.hilt.lifecycle.R$id: int tag_accessibility_pane_title +com.google.android.material.R$dimen: int cardview_compat_inset_shadow +com.google.android.material.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: void setHistogramAlpha(float) +androidx.vectordrawable.animated.R$id: int action_container +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display4 +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +com.google.android.material.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum() +com.jaredrummler.android.colorpicker.R$attr: int orderingFromXml +okhttp3.Response$Builder: okhttp3.Response$Builder body(okhttp3.ResponseBody) +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void request(long) +retrofit2.RequestFactory$Builder: boolean gotUrl +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_title_text +io.reactivex.internal.observers.InnerQueuedObserver: InnerQueuedObserver(io.reactivex.internal.observers.InnerQueuedObserverSupport,int) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_text_size +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: int getPosition() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindDegree +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getLevel() +com.google.android.material.R$attr: int mock_showDiagonals +cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle() +wangdaye.com.geometricweather.R$id: int container_main_pollen_subtitle +com.google.android.material.R$styleable: int CoordinatorLayout_keylines +androidx.constraintlayout.widget.R$id: int home +com.google.android.material.R$styleable: int AlertDialog_listItemLayout +androidx.preference.R$styleable: int Preference_android_defaultValue +okhttp3.internal.http2.Http2Connection$4: void execute() +wangdaye.com.geometricweather.R$string: int fab_transformation_scrim_behavior +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode SNOW +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontStyle +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator T9_SEARCH_INPUT_LOCALE_VALIDATOR +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_spinBars +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableItem_android_drawable +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPublishDate(java.util.Date) +com.jaredrummler.android.colorpicker.R$color: int abc_secondary_text_material_light +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Headline6 +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Borderless_Colored +com.google.android.material.R$dimen +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1 +com.google.android.material.R$id: int date_picker_actions +james.adaptiveicon.R$attr: int backgroundTint +com.google.android.material.R$layout: int abc_action_menu_item_layout +wangdaye.com.geometricweather.common.basic.models.weather.Base: long updateTime +androidx.lifecycle.viewmodel.R: R() +com.google.android.material.R$id: int center +com.amap.api.location.AMapLocation: java.lang.String e(com.amap.api.location.AMapLocation,java.lang.String) +com.jaredrummler.android.colorpicker.R$id: int square +com.turingtechnologies.materialscrollbar.R$id: int action_mode_bar_stub +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +com.jaredrummler.android.colorpicker.R$dimen: int abc_seekbar_track_background_height_material +com.google.android.material.R$style: int Widget_Design_BottomSheet_Modal +wangdaye.com.geometricweather.R$drawable: int weather_thunder_2 +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_prompt +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderText +androidx.appcompat.R$styleable: int AppCompatTheme_selectableItemBackground +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean done +io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Runnable getWrappedRunnable() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Medium +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: int UnitType +io.reactivex.internal.subscriptions.EmptySubscription: boolean offer(java.lang.Object,java.lang.Object) +androidx.appcompat.widget.SwitchCompat: int getThumbTextPadding() +com.google.android.material.R$styleable: int Spinner_android_entries +wangdaye.com.geometricweather.R$string: int widget_clock_day_week james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableRight -wangdaye.com.geometricweather.R$styleable: int KeyPosition_pathMotionArc -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_creator -com.xw.repo.bubbleseekbar.R$attr: int listChoiceBackgroundIndicator -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_weatherContainer -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List hourlyEntityList -retrofit2.Utils: java.lang.RuntimeException parameterError(java.lang.reflect.Method,int,java.lang.String,java.lang.Object[]) -com.google.android.material.R$attr: int colorSecondary -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar -androidx.constraintlayout.widget.R$attr: int toolbarNavigationButtonStyle +com.google.android.material.R$attr: int itemFillColor +androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$attr: int buttonBarNegativeButtonStyle +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorEnabled +com.google.android.material.R$styleable: int Badge_horizontalOffset +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.Integer alti +androidx.constraintlayout.widget.R$color +cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(android.os.Parcel) +android.didikee.donate.R$styleable: int DrawerArrowToggle_spinBars +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric Metric +wangdaye.com.geometricweather.R$layout: int item_about_header +retrofit2.HttpServiceMethod +androidx.hilt.lifecycle.R$styleable: int[] Fragment +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_material_dark +retrofit2.Retrofit: java.util.List callAdapterFactories +androidx.hilt.work.R$drawable: int notification_bg_low_pressed +androidx.preference.R$style: int Widget_AppCompat_ImageButton +com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_950 +com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_CheckBox +com.google.android.material.R$attr: int dropdownListPreferredItemHeight +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstHorizontalStyle +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_hideMotionSpec +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getRingerMode() +android.didikee.donate.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_shift_shortcut_label +wangdaye.com.geometricweather.R$drawable: int widget_day +androidx.viewpager2.R$attr: int reverseLayout +cyanogenmod.app.ProfileGroup: void setRingerMode(cyanogenmod.app.ProfileGroup$Mode) +com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_id +com.google.android.material.R$dimen: int design_navigation_padding_bottom +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: $Gson$Types$ParameterizedTypeImpl(java.lang.reflect.Type,java.lang.reflect.Type,java.lang.reflect.Type[]) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonSetDate(java.util.Date) +androidx.preference.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_popupMenuStyle +com.turingtechnologies.materialscrollbar.R$attr: int buttonGravity +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +com.amap.api.location.AMapLocation: int LOCATION_TYPE_GPS +wangdaye.com.geometricweather.R$drawable: int notif_temp_20 +com.google.android.material.R$dimen: int abc_action_bar_content_inset_with_nav +androidx.appcompat.resources.R$color: R$color() +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +androidx.viewpager2.R$styleable: int[] FontFamily +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_trackTintMode +androidx.recyclerview.R$id: int info +com.google.android.material.R$styleable: int DrawerArrowToggle_arrowHeadLength +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyTopRight +wangdaye.com.geometricweather.R$attr: int chipMinTouchTargetSize +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String zh_TW +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindDirection(java.lang.String) +okhttp3.OkHttpClient: int callTimeout +androidx.constraintlayout.widget.Barrier +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: double HoursOfSun +okhttp3.internal.tls.OkHostnameVerifier: boolean verifyIpAddress(java.lang.String,java.security.cert.X509Certificate) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: java.lang.String type +james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_RadioButton +cyanogenmod.app.Profile$ProfileTrigger$1: java.lang.Object createFromParcel(android.os.Parcel) +com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_RadioButton +wangdaye.com.geometricweather.R$styleable: int Preference_android_icon +com.jaredrummler.android.colorpicker.R$attr: int actionBarWidgetTheme +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: SavedStateHandle$SavingStateLiveData(androidx.lifecycle.SavedStateHandle,java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int[] DrawerArrowToggle +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float pm25 +androidx.work.R$dimen: int notification_large_icon_height +cyanogenmod.hardware.ICMHardwareService: int getThermalState() +com.amap.api.location.LocationManagerBase: void startLocation() +androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getNavigationIcon() +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeSpinner +android.didikee.donate.R$string: int abc_action_menu_overflow_description +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.MinutelyEntityDao getMinutelyEntityDao() +com.google.android.gms.common.internal.GetServiceRequest: android.os.Parcelable$Creator CREATOR +cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_TILES +androidx.constraintlayout.widget.R$drawable: int abc_btn_check_material +com.google.android.material.R$styleable: int Chip_checkedIconEnabled +androidx.vectordrawable.R$id: int actions +com.google.android.material.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: HalfDay(java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration,wangdaye.com.geometricweather.common.basic.models.weather.Wind,java.lang.Integer) +wangdaye.com.geometricweather.R$styleable: int SwitchMaterial_useMaterialThemeColors +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetEnd +okhttp3.CacheControl: int maxAgeSeconds +cyanogenmod.themes.IThemeProcessingListener: void onFinishedProcessing(java.lang.String) +okhttp3.internal.ws.WebSocketReader: okio.Buffer controlFrameBuffer +com.google.android.material.bottomappbar.BottomAppBar$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$attr: int errorTextAppearance +com.google.android.material.card.MaterialCardView: void setCheckedIconSize(int) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_itemPadding +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String LocalizedName +okio.SegmentedByteString: okio.ByteString substring(int) +wangdaye.com.geometricweather.R$id: int tag_icon_bottom +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton +androidx.constraintlayout.widget.R$attr: int tooltipFrameBackground +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_60 +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onError(java.lang.Throwable) +com.google.android.material.R$attr: int materialAlertDialogBodyTextStyle +android.didikee.donate.R$attr: int isLightTheme +james.adaptiveicon.R$color: int material_grey_300 +androidx.preference.R$style: int Widget_AppCompat_Light_ActivityChooserView +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable +androidx.appcompat.widget.SwitchCompat: int getThumbScrollRange() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getApparentTemperature() +cyanogenmod.externalviews.ExternalViewProviderService$1$1: android.os.IBinder call() +androidx.customview.R$id: int chronometer +android.didikee.donate.R$attr: int colorAccent +android.didikee.donate.R$id: int search_button +com.google.android.material.R$color: int switch_thumb_normal_material_light +com.xw.repo.bubbleseekbar.R$color: int abc_color_highlight_material +androidx.activity.R$drawable: int notify_panel_notification_icon_bg +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicReference upstream +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSmallPopupMenu +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +androidx.appcompat.R$dimen: int notification_content_margin_start +james.adaptiveicon.R$layout: int abc_list_menu_item_icon +androidx.constraintlayout.widget.R$dimen: int abc_button_padding_horizontal_material +com.google.android.material.R$attr: int titleMarginEnd +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindChillTemperature +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Body1 +com.turingtechnologies.materialscrollbar.R$attr: int backgroundStacked +cyanogenmod.externalviews.KeyguardExternalView$2: void slideLockscreenIn() +com.amap.api.location.AMapLocation: void setCity(java.lang.String) +okhttp3.internal.cache2.Relay$RelaySource: Relay$RelaySource(okhttp3.internal.cache2.Relay) +androidx.appcompat.R$integer: R$integer() +com.jaredrummler.android.colorpicker.R$integer: int cancel_button_image_alpha +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_material_dark +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SearchView +james.adaptiveicon.R$styleable: int[] ActionMenuItemView +okhttp3.internal.tls.OkHostnameVerifier: boolean verifyHostname(java.lang.String,java.security.cert.X509Certificate) +androidx.constraintlayout.widget.R$styleable: int Transform_android_rotationX +androidx.constraintlayout.widget.R$attr: int background +androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context,android.util.AttributeSet) +androidx.recyclerview.R$integer: R$integer() +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property CityId +androidx.appcompat.widget.FitWindowsFrameLayout: FitWindowsFrameLayout(android.content.Context,android.util.AttributeSet) +androidx.hilt.work.R$attr: int fontStyle +com.google.android.material.R$dimen: int mtrl_btn_z +okhttp3.internal.platform.OptionalMethod: java.lang.reflect.Method getMethod(java.lang.Class) +android.didikee.donate.R$style: int Base_V7_Theme_AppCompat +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getId() +com.bumptech.glide.integration.okhttp.R$id: int none +com.google.android.material.R$styleable: int MaterialButton_iconTint +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_SHA +wangdaye.com.geometricweather.R$style: int material_card +okhttp3.RequestBody$1: long contentLength() +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircle +androidx.lifecycle.ClassesInfoCache$CallbackInfo: java.util.Map mHandlerToEvent +wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchRegionId +androidx.lifecycle.ViewModelStores: androidx.lifecycle.ViewModelStore of(androidx.fragment.app.Fragment) +androidx.coordinatorlayout.R$id: int tag_accessibility_pane_title +cyanogenmod.providers.CMSettings$System: android.net.Uri getUriFor(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: R$styleable() +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String getMoonPhase(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float Ozone +androidx.activity.R$styleable: int GradientColor_android_centerY +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean done +cyanogenmod.providers.WeatherContract: android.net.Uri AUTHORITY_URI +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean cancelled +androidx.drawerlayout.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_colored +androidx.hilt.R$id: int icon +androidx.preference.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +wangdaye.com.geometricweather.R$id: int activity_widget_config_scrollView +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelMenuListTheme +okio.Okio$4: void timedOut() +wangdaye.com.geometricweather.R$id: int notification_multi_city_text_2 +com.jaredrummler.android.colorpicker.R$layout: int abc_expanded_menu_layout +cyanogenmod.app.Profile: java.util.ArrayList getTriggersFromType(int) +io.reactivex.Observable: java.lang.Iterable blockingLatest() +android.support.v4.os.IResultReceiver$Stub$Proxy: android.os.IBinder asBinder() +com.google.android.material.R$styleable: int KeyCycle_waveOffset +com.turingtechnologies.materialscrollbar.R$styleable: int[] TextAppearance +wangdaye.com.geometricweather.R$drawable: int notif_temp_22 +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTemperature(int) +wangdaye.com.geometricweather.R$color: int design_fab_shadow_mid_color +androidx.transition.R$id: int transition_transform +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatImageView +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_wrapMode +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.Map lefts +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle +com.google.android.material.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf +com.google.android.material.navigation.NavigationView: void setItemHorizontalPadding(int) +androidx.customview.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$attr: int waveVariesBy +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onComplete() +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataContainer +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean +androidx.appcompat.R$style: int Animation_AppCompat_Tooltip +cyanogenmod.app.Profile$ExpandedDesktopMode: int DEFAULT +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial Imperial +com.xw.repo.bubbleseekbar.R$attr: int layout_dodgeInsetEdges +wangdaye.com.geometricweather.R$id: int item_about_translator_title +com.google.android.material.R$styleable: int MaterialButton_shapeAppearanceOverlay +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean +okhttp3.Headers$Builder: okhttp3.Headers$Builder addLenient(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorTextColor +com.turingtechnologies.materialscrollbar.R$anim: int abc_tooltip_exit +androidx.appcompat.R$id: int search_badge +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable,int,int) +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: boolean isDisposed() +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light +androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_title_material +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_start_padding +androidx.appcompat.widget.AppCompatTextView: int getLastBaselineToBottomHeight() +james.adaptiveicon.R$styleable: int AppCompatTheme_checkboxStyle +com.google.android.material.R$styleable: int Constraint_android_translationY +com.google.android.material.R$styleable: int ActionBar_homeAsUpIndicator +okio.SegmentedByteString: java.lang.String base64Url() +androidx.constraintlayout.widget.R$color: int switch_thumb_normal_material_dark +wangdaye.com.geometricweather.R$id: int material_clock_face +okhttp3.internal.platform.ConscryptPlatform: ConscryptPlatform() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Medium +wangdaye.com.geometricweather.R$style: int Preference_PreferenceScreen_Material +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +okhttp3.internal.io.FileSystem: okio.Sink sink(java.io.File) +com.google.android.material.R$style: int Base_Animation_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_FloatingActionButton +com.google.android.material.R$attr: int materialCalendarFullscreenTheme +com.google.android.material.R$color: int notification_action_color_filter +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setScaleX(float) +androidx.appcompat.R$color: int foreground_material_light +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderFetchTimeout +com.google.android.material.R$attr: int itemIconTint +androidx.constraintlayout.widget.R$attr: int layoutDescription +cyanogenmod.weather.WeatherInfo: int hashCode() +wangdaye.com.geometricweather.R$attr: int motion_postLayoutCollision +wangdaye.com.geometricweather.R$string: int key_language +com.google.android.material.R$string: int mtrl_picker_cancel +com.google.android.material.R$styleable: int GradientColor_android_centerY +okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: Http2Connection$IntervalPingRunnable(okhttp3.internal.http2.Http2Connection) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: java.lang.Integer proba3H +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar +okhttp3.RealCall$AsyncCall: java.lang.String host() +com.google.android.material.R$dimen: int mtrl_calendar_days_of_week_height +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_EditText +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Long getId() +com.google.android.material.R$dimen: int material_font_2_0_box_collapsed_padding_top +com.bumptech.glide.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$string: int feedback_request_location_permission_failed +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric Metric +okio.Buffer: void require(long) +wangdaye.com.geometricweather.common.basic.models.weather.History: java.util.Date getDate() +androidx.preference.R$layout: int preference_information +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: java.lang.String WeatherCode +androidx.appcompat.widget.ViewStubCompat: int getInflatedId() +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginTop +wangdaye.com.geometricweather.R$drawable: int clock_dial_light +androidx.customview.R$dimen: int notification_right_side_padding_top +retrofit2.Retrofit: retrofit2.Converter stringConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max +androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableItem +wangdaye.com.geometricweather.R$styleable: int ActionBar_backgroundSplit +androidx.coordinatorlayout.R$drawable: int notification_tile_bg +com.jaredrummler.android.colorpicker.R$attr: int lastBaselineToBottomHeight +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showColorShades +com.google.android.material.R$string: int material_slider_range_start +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_editor_absoluteY +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: double Value +androidx.preference.R$attr: int layoutManager +androidx.recyclerview.R$attr: int fontProviderAuthority +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintStart_toStartOf +okhttp3.HttpUrl$Builder: java.lang.String INVALID_HOST +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_LEGACY_THEME +com.google.android.material.R$styleable: int MenuItem_android_alphabeticShortcut +android.didikee.donate.R$styleable: int MenuView_android_verticalDivider +okhttp3.internal.Util: okhttp3.Headers toHeaders(java.util.List) +okhttp3.Handshake: okhttp3.TlsVersion tlsVersion +okhttp3.internal.cache.CacheInterceptor: boolean isEndToEnd(java.lang.String) +cyanogenmod.app.StatusBarPanelCustomTile: int initialPid +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: MfWarningsResult$WarningTimelaps() +com.google.android.material.chip.Chip: void setRippleColor(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Button +com.bumptech.glide.R$attr: int coordinatorLayoutStyle +wangdaye.com.geometricweather.R$dimen: int hint_pressed_alpha_material_dark +com.google.android.material.R$drawable: int abc_spinner_mtrl_am_alpha +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.R$attr: int autoSizeMaxTextSize +com.xw.repo.bubbleseekbar.R$attr: int spinnerDropDownItemStyle +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: android.os.IBinder asBinder() +cyanogenmod.themes.ThemeManager$1: void onFinish(boolean) +cyanogenmod.app.CustomTile: int icon +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSnowPrecipitation() +com.google.gson.LongSerializationPolicy$1: com.google.gson.JsonElement serialize(java.lang.Long) +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: void onResponse(retrofit2.Call,retrofit2.Response) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_minWidth +cyanogenmod.providers.CMSettings$System: boolean shouldInterceptSystemProvider(java.lang.String) +android.didikee.donate.R$id: int action_image +com.google.android.material.R$styleable: int Transform_android_translationY +wangdaye.com.geometricweather.main.dialogs.HourlyWeatherDialog +james.adaptiveicon.R$attr: int titleTextStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: java.lang.String Unit +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_searchViewStyle +androidx.dynamicanimation.R$attr +com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.tabs.TabLayout$Tab getTab() +androidx.appcompat.R$style: int Base_V28_Theme_AppCompat_Light +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul24H +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_message_margin_horizontal +wangdaye.com.geometricweather.R$attr: int summary +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getGrassDescription() +androidx.preference.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: Daily(java.util.Date,long,wangdaye.com.geometricweather.common.basic.models.weather.HalfDay,wangdaye.com.geometricweather.common.basic.models.weather.HalfDay,wangdaye.com.geometricweather.common.basic.models.weather.Astro,wangdaye.com.geometricweather.common.basic.models.weather.Astro,wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase,wangdaye.com.geometricweather.common.basic.models.weather.AirQuality,wangdaye.com.geometricweather.common.basic.models.weather.Pollen,wangdaye.com.geometricweather.common.basic.models.weather.UV,float) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: ObservableBufferBoundary$BufferBoundaryObserver(io.reactivex.Observer,io.reactivex.ObservableSource,io.reactivex.functions.Function,java.util.concurrent.Callable) +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_disabled_material_light +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date moonsetTime +wangdaye.com.geometricweather.background.service.Hilt_CMWeatherProviderService: Hilt_CMWeatherProviderService() +android.didikee.donate.R$attr: int showTitle +com.google.android.material.appbar.AppBarLayout: int getPendingAction() +cyanogenmod.externalviews.IExternalViewProvider: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +okhttp3.internal.connection.RouteException: java.io.IOException lastException +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.internal.disposables.SequentialDisposable task +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeShareDrawable +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle +cyanogenmod.profiles.AirplaneModeSettings$1 +com.turingtechnologies.materialscrollbar.R$color: int tooltip_background_dark +wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_1_material +com.google.android.material.R$styleable: int Transition_pathMotionArc +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean requestDismiss() +com.google.android.material.R$color: int material_on_surface_disabled +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetBottom +cyanogenmod.providers.CMSettings$Secure: java.lang.String VIBRATOR_INTENSITY +androidx.appcompat.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: ObservableTakeUntil$TakeUntilMainObserver(io.reactivex.Observer) +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_normal +androidx.preference.R$id: int accessibility_custom_action_12 +androidx.recyclerview.R$styleable: int GradientColorItem_android_color +com.google.android.material.button.MaterialButtonToggleGroup: java.util.List getCheckedButtonIds() +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_enabled +com.google.android.material.R$dimen: int mtrl_tooltip_padding +androidx.preference.R$id: int accessibility_custom_action_15 +com.jaredrummler.android.colorpicker.R$attr: int buttonIconDimen +androidx.constraintlayout.widget.R$layout: int notification_template_icon_group +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,int) +android.didikee.donate.R$styleable: int[] ActionBar +com.xw.repo.bubbleseekbar.R$attr: int bsb_show_section_text +androidx.vectordrawable.animated.R$id: int dialog_button +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2$1 +okhttp3.ConnectionSpec: java.util.List tlsVersions() +androidx.loader.R$drawable: int notification_bg_low_pressed +com.jaredrummler.android.colorpicker.R$layout: int abc_tooltip +android.didikee.donate.R$attr: int colorControlNormal +com.google.gson.stream.JsonReader: int lineNumber +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +wangdaye.com.geometricweather.R$string: int widget_week +androidx.lifecycle.extensions.R$color: int ripple_material_light +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver parent +com.xw.repo.bubbleseekbar.R$attr: int windowActionModeOverlay +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getCityId() +com.xw.repo.bubbleseekbar.R$attr: int actionBarDivider +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_creator +androidx.appcompat.widget.AppCompatSpinner: void setAdapter(android.widget.SpinnerAdapter) +androidx.preference.R$dimen: int tooltip_margin +wangdaye.com.geometricweather.R$string: int date_format_widget_oreo_style +com.google.android.material.R$style: int Widget_AppCompat_Light_ListView_DropDown +cyanogenmod.providers.CMSettings$System: java.lang.String BLUETOOTH_ACCEPT_ALL_FILES +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial +androidx.appcompat.R$style: int Widget_AppCompat_Light_ListPopupWindow +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_progressBarPadding +android.didikee.donate.R$dimen: int abc_text_size_menu_header_material +android.didikee.donate.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +android.didikee.donate.R$layout: R$layout() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_Chip +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getUniqueDeviceId() +cyanogenmod.externalviews.ExternalViewProperties: int getHeight() +androidx.recyclerview.R$id: int tag_accessibility_actions +androidx.appcompat.view.menu.ListMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() +androidx.preference.R$attr: int textAppearanceLargePopupMenu +com.jaredrummler.android.colorpicker.R$layout: int abc_activity_chooser_view +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property PublishDate +androidx.customview.R$style: int TextAppearance_Compat_Notification_Title +com.google.android.material.R$style: int Widget_AppCompat_ActionButton_CloseMode +androidx.appcompat.resources.R$dimen: int notification_right_side_padding_top +androidx.constraintlayout.widget.R$attr: int layout_goneMarginLeft +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: SwipeRefreshLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.chip.ChipGroup: int getCheckedChipId() +androidx.activity.R$drawable: R$drawable() +androidx.preference.R$drawable: int notification_icon_background +com.xw.repo.bubbleseekbar.R$attr: int contentInsetStartWithNavigation +com.github.rahatarmanahmed.cpv.CircularProgressView$5: boolean wasCancelled +com.google.android.material.R$id: int action_bar_subtitle +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Body1 +androidx.appcompat.resources.R$layout +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +okhttp3.Cache$CacheResponseBody$1: Cache$CacheResponseBody$1(okhttp3.Cache$CacheResponseBody,okio.Source,okhttp3.internal.cache.DiskLruCache$Snapshot) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$id: int graph_wrap +androidx.fragment.R$id: int dialog_button +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowRadius +androidx.preference.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_TextView_SpinnerItem +com.google.android.material.R$drawable +androidx.hilt.lifecycle.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$string: int abc_toolbar_collapse_description +com.jaredrummler.android.colorpicker.R$attr: int titleMarginTop +androidx.appcompat.widget.ActionBarOverlayLayout: void setIcon(android.graphics.drawable.Drawable) +androidx.preference.R$styleable: int[] ViewStubCompat +androidx.constraintlayout.widget.R$id: int action_bar +com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_entries +androidx.preference.R$color: int switch_thumb_disabled_material_light +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setSubState +com.xw.repo.bubbleseekbar.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +wangdaye.com.geometricweather.R$string: int content_des_o3 +io.reactivex.internal.observers.DeferredScalarDisposable: void dispose() +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: java.lang.String getUIStyleName(android.content.Context) +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode WRITE_AHEAD_LOGGING +okio.Pipe$PipeSource: void close() +com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getStartIconDrawable() +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$height +com.google.android.material.R$dimen: int design_textinput_caption_translate_y +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_HelperText +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Title +okio.HashingSink: okio.HashingSink sha256(okio.Sink) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum() +com.google.android.gms.common.R$integer: int google_play_services_version +androidx.constraintlayout.widget.R$styleable: int Constraint_android_transformPivotY +retrofit2.Callback +james.adaptiveicon.R$styleable: int AlertDialog_showTitle +james.adaptiveicon.R$drawable: int abc_ic_menu_overflow_material +com.google.android.material.chip.ChipGroup: void setFlexWrap(int) +com.amap.api.location.AMapLocation: int LOCATION_TYPE_CELL +com.google.android.material.R$attr: int actionOverflowMenuStyle +androidx.preference.R$attr: int preferenceCategoryTitleTextAppearance +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_tooltipText +android.didikee.donate.R$attr: int checkboxStyle +com.google.android.material.R$styleable: int[] ScrollingViewBehavior_Layout +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf +james.adaptiveicon.R$dimen: int abc_control_padding_material +wangdaye.com.geometricweather.R$string: int feedback_updating_weather_data +android.didikee.donate.R$color: int secondary_text_default_material_light +com.turingtechnologies.materialscrollbar.R$id: int scrollIndicatorUp +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicBoolean once +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleGravity(int) +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayInvalidStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: long EffectiveEpochDate +wangdaye.com.geometricweather.R$id: int widget_week_temp_3 +androidx.dynamicanimation.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: java.lang.String Unit +com.google.android.gms.common.images.ImageManager$ImageReceiver +james.adaptiveicon.R$dimen: int abc_select_dialog_padding_start_material +com.google.android.material.circularreveal.cardview.CircularRevealCardView: CircularRevealCardView(android.content.Context) +androidx.preference.R$id: int accessibility_custom_action_31 +androidx.constraintlayout.widget.R$styleable: int Transition_android_id +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeBackground +com.google.android.material.R$style: int TextAppearance_AppCompat_Title_Inverse +james.adaptiveicon.R$color: int abc_search_url_text +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_CBC_SHA256 +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String STATUSBAR_URI +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSize(int) +okhttp3.Protocol: okhttp3.Protocol[] $VALUES +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: void onFinish(boolean) +com.turingtechnologies.materialscrollbar.R$id: int view_offset_helper +com.jaredrummler.android.colorpicker.R$styleable: int[] ListPreference +androidx.hilt.R$id: int accessibility_custom_action_12 +okio.Buffer: java.lang.String readString(java.nio.charset.Charset) +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.Observer downstream +com.xw.repo.bubbleseekbar.R$attr: int subMenuArrow +james.adaptiveicon.R$styleable: int SearchView_android_maxWidth +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvDescription +okhttp3.internal.http.StatusLine: java.lang.String message +androidx.vectordrawable.animated.R$id: int tag_accessibility_clickable_spans +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onStart_1 +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +androidx.constraintlayout.widget.R$color: int primary_material_light +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void open(java.lang.Object) +cyanogenmod.profiles.ConnectionSettings: int getSubId() +james.adaptiveicon.R$styleable: int FontFamilyFont_android_ttcIndex +io.reactivex.internal.schedulers.RxThreadFactory: java.lang.Thread newThread(java.lang.Runnable) +cyanogenmod.themes.IThemeService$Stub$Proxy: long getLastThemeChangeTime() +com.turingtechnologies.materialscrollbar.R$dimen: int notification_action_text_size +androidx.hilt.R$dimen: int notification_action_icon_size +androidx.appcompat.R$drawable: int abc_ic_menu_cut_mtrl_alpha +android.didikee.donate.R$styleable: int ActionBar_title +com.google.android.material.R$styleable: int MaterialButton_backgroundTint +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingStart +androidx.transition.R$string +androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onResume() +androidx.constraintlayout.widget.R$attr: int flow_wrapMode +io.reactivex.internal.schedulers.RxThreadFactory: int priority +com.google.android.material.bottomappbar.BottomAppBar: void setFabCradleMargin(float) +androidx.appcompat.R$attr: int customNavigationLayout +cyanogenmod.app.PartnerInterface: java.lang.String TAG +androidx.transition.R$style: R$style() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Toolbar +com.xw.repo.bubbleseekbar.R$attr: int coordinatorLayoutStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowNoTitle +androidx.preference.R$attr: int elevation +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void drain() +com.google.android.material.slider.RangeSlider$RangeSliderState: android.os.Parcelable$Creator CREATOR +androidx.appcompat.widget.SearchView: int getImeOptions() +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: CustomTileListenerService$ICustomTileListenerWrapper(cyanogenmod.app.CustomTileListenerService,cyanogenmod.app.CustomTileListenerService$1) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetStart +cyanogenmod.weather.RequestInfo: int getTemperatureUnit() +androidx.appcompat.R$attr: int imageButtonStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_75 +cyanogenmod.hardware.DisplayMode +androidx.constraintlayout.widget.R$styleable: int StateSet_defaultState +com.google.android.material.timepicker.ChipTextInputComboView: ChipTextInputComboView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Long id +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_background_transition_holo_dark +wangdaye.com.geometricweather.R$drawable: int shortcuts_thunderstorm +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.Integer getIndex() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeColor +com.turingtechnologies.materialscrollbar.R$attr: int color +androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$layout: int item_weather_daily_margin +okio.Buffer$1: void write(byte[],int,int) +androidx.fragment.app.FragmentManager: void addOnBackStackChangedListener(androidx.fragment.app.FragmentManager$OnBackStackChangedListener) +androidx.hilt.work.R$anim: int fragment_open_enter +com.google.android.material.R$attr: int defaultState +com.google.android.material.textfield.TextInputLayout: void setCounterEnabled(boolean) +androidx.constraintlayout.widget.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +com.google.android.gms.base.R$attr: int imageAspectRatio +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean disposed +okhttp3.internal.http2.Http2Connection: void updateConnectionFlowControl(long) +com.amap.api.fence.PoiItem: java.lang.String j +com.google.gson.LongSerializationPolicy$1 +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_22 +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void dispose() +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.Property getPkProperty() +wangdaye.com.geometricweather.R$attr: int flow_verticalGap +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_radius_on_dragging +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_UPDATED +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setCityId(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +androidx.appcompat.R$attr: int showText +androidx.preference.R$id: int right_icon +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator QS_SHOW_BRIGHTNESS_SLIDER_VALIDATOR +androidx.fragment.R$styleable: int[] GradientColor +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +com.google.android.material.bottomnavigation.BottomNavigationView: android.view.MenuInflater getMenuInflater() +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +com.turingtechnologies.materialscrollbar.Indicator: void setScroll(float) +com.github.rahatarmanahmed.cpv.R +wangdaye.com.geometricweather.R$id: int mtrl_motion_snapshot_view +io.reactivex.internal.observers.InnerQueuedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_checked +com.google.android.material.R$styleable: int SearchView_queryHint +com.bumptech.glide.R$styleable: int GradientColor_android_endX +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void drain() +okio.Buffer$1 +okhttp3.Request: okhttp3.RequestBody body +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox +androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon +wangdaye.com.geometricweather.R$dimen: int abc_disabled_alpha_material_dark +wangdaye.com.geometricweather.R$id: int chip +com.google.android.material.R$color: int mtrl_filled_icon_tint +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPadding +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void replay(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: boolean isDisposed() +cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String itemSummary +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean residentPosition +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat +androidx.preference.R$id: int tabMode +androidx.constraintlayout.widget.R$attr: int checkboxStyle +com.google.android.material.R$attr: int layout_constraintRight_creator +androidx.drawerlayout.R$id: int action_container +android.didikee.donate.R$styleable: int AppCompatTextView_drawableTopCompat +com.google.android.material.R$attr: int helperTextEnabled +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather +wangdaye.com.geometricweather.R$attr: int state_collapsible +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderQuery +com.google.android.material.R$styleable: int Layout_layout_constraintStart_toEndOf +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void drain() +wangdaye.com.geometricweather.R$attr: int actionDropDownStyle +androidx.appcompat.R$styleable: int Toolbar_navigationContentDescription +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer uvIndex +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitleTextColor +okhttp3.Cache: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type[] values() +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customFloatValue +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_showAsAction +cyanogenmod.profiles.AirplaneModeSettings$1: java.lang.Object[] newArray(int) +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER_X +com.google.android.material.R$color: int mtrl_btn_ripple_color +androidx.constraintlayout.widget.R$attr: int deltaPolarAngle +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.R$styleable: int SearchView_iconifiedByDefault +wangdaye.com.geometricweather.R$string: int current_location +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_RadioButton +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Caption +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconGravity +okhttp3.internal.ws.WebSocketWriter$FrameSink: boolean isFirstFrame +com.google.android.material.R$string: int abc_toolbar_collapse_description +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog_Alert +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_15 +androidx.constraintlayout.widget.R$attr: int controlBackground +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionModeOverlay +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_RC4_128_MD5 +androidx.appcompat.R$id: int buttonPanel +retrofit2.Retrofit$Builder +com.jaredrummler.android.colorpicker.R$id: int submit_area +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float so2 +com.turingtechnologies.materialscrollbar.R$attr: int initialActivityCount +com.google.android.material.R$styleable: int RecycleListView_paddingBottomNoButtons +com.jaredrummler.android.colorpicker.R$color: int notification_action_color_filter +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_BACK_BUTTON +androidx.preference.R$attr: int dropDownListViewStyle +androidx.constraintlayout.widget.R$attr: int showPaths +okhttp3.internal.http1.Http1Codec$ChunkedSource: void readChunkSize() +cyanogenmod.app.CustomTile$Builder: boolean mCollapsePanel +androidx.fragment.app.FragmentContainerView: void setLayoutTransition(android.animation.LayoutTransition) +cyanogenmod.profiles.LockSettings: void readFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_content_inset_with_nav +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: boolean val$screenOn +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_android_elevation +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_windowAnimationStyle +com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_950 +androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_53 +androidx.appcompat.R$styleable: int FontFamilyFont_ttcIndex +androidx.constraintlayout.widget.R$styleable: int[] ConstraintLayout_Layout +cyanogenmod.app.Profile: int describeContents() +cyanogenmod.platform.R$drawable +james.adaptiveicon.R$integer: int cancel_button_image_alpha +com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorSize(int) +com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_android_button +com.turingtechnologies.materialscrollbar.R$bool: int abc_action_bar_embed_tabs +com.google.android.material.R$color: int checkbox_themeable_attribute_color +com.google.android.material.R$styleable: int RecyclerView_android_descendantFocusability androidx.swiperefreshlayout.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.R$styleable: int Chip_chipStrokeColor -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTextPadding -com.google.android.material.R$layout: int text_view_with_theme_line_height -wangdaye.com.geometricweather.R$layout: int text_view_without_line_height -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object SYNC_DISPOSED -io.reactivex.internal.disposables.DisposableHelper: boolean set(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) -io.reactivex.internal.schedulers.AbstractDirectTask: AbstractDirectTask(java.lang.Runnable) -com.google.android.material.timepicker.TimePickerView: TimePickerView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int SearchView_searchIcon -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_pressed -com.google.android.material.tabs.TabLayout: void setTabIconTint(android.content.res.ColorStateList) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: ObservableReplay$BoundedReplayBuffer() -com.amap.api.fence.GeoFence: com.amap.api.fence.PoiItem f -io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) -androidx.vectordrawable.R$attr: int fontProviderFetchTimeout -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.ICMStatusBarManager getService() -cyanogenmod.app.ICMTelephonyManager: void setDefaultSmsSub(int) -okhttp3.internal.cache.DiskLruCache$Editor: okio.Source newSource(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setForecastHourly(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean) -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean error(java.lang.Throwable) -okhttp3.OkHttpClient$1: void setCache(okhttp3.OkHttpClient$Builder,okhttp3.internal.cache.InternalCache) -com.google.android.material.floatingactionbutton.FloatingActionButton: int getExpandedComponentIdHint() -okio.HashingSink: okio.HashingSink sha512(okio.Sink) -wangdaye.com.geometricweather.R$string: int transition_activity_search_txt -androidx.preference.R$style: int Widget_AppCompat_ListView -okhttp3.Cookie: boolean secure -okhttp3.WebSocket: boolean send(okio.ByteString) -android.didikee.donate.R$drawable: int notification_template_icon_low_bg -com.google.android.material.button.MaterialButton: void setIcon(android.graphics.drawable.Drawable) -com.google.android.material.R$id: int layout -androidx.preference.R$drawable: int abc_list_divider_material -com.google.android.material.R$styleable: int Constraint_layout_constraintRight_toLeftOf -wangdaye.com.geometricweather.R$drawable: int abc_list_focused_holo -okio.BufferedSource: java.lang.String readUtf8(long) -wangdaye.com.geometricweather.R$layout: int container_main_footer -com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace SRGB -com.google.android.material.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.R$attr: int bsb_section_text_position +androidx.appcompat.widget.AppCompatImageView: void setImageBitmap(android.graphics.Bitmap) +com.google.android.material.slider.Slider: float getValueTo() +com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextAppearance(int) +wangdaye.com.geometricweather.R$id: int mtrl_calendar_year_selector_frame +wangdaye.com.geometricweather.R$string: int geometric_weather +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService$1 this$1 +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.http.HttpCodec httpCodec +androidx.preference.R$attr: int dependency +androidx.lifecycle.ReportFragment: androidx.lifecycle.ReportFragment$ActivityInitializationListener mProcessListener +okhttp3.internal.cache.DiskLruCache: java.util.Iterator snapshots() +cyanogenmod.weather.WeatherInfo: double mWindSpeed +cyanogenmod.weather.ICMWeatherManager$Stub: cyanogenmod.weather.ICMWeatherManager asInterface(android.os.IBinder) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA +cyanogenmod.weatherservice.ServiceRequest: void cancel() +androidx.transition.R$layout +androidx.appcompat.widget.AppCompatSpinner: void setPopupBackgroundResource(int) +wangdaye.com.geometricweather.R$id: int large +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerY +androidx.work.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.R$style: int Test_Theme_MaterialComponents_MaterialCalendar +okhttp3.Headers: okhttp3.Headers$Builder newBuilder() +io.reactivex.Observable: io.reactivex.Observable materialize() +wangdaye.com.geometricweather.background.polling.permanent.observer.TimeObserverService: TimeObserverService() +okhttp3.internal.ws.RealWebSocket: boolean processNextFrame() +com.google.gson.stream.JsonWriter: void setHtmlSafe(boolean) +androidx.hilt.work.R$id: int notification_main_column_container +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.HourlyEntity) +androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$id: int submenuarrow +com.google.gson.stream.JsonWriter +cyanogenmod.app.PartnerInterface: cyanogenmod.app.PartnerInterface getInstance(android.content.Context) +okhttp3.internal.ws.RealWebSocket: okhttp3.Call call +okio.RealBufferedSink: boolean closed +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode valueOf(java.lang.String) +cyanogenmod.app.ProfileGroup$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.R$attr: int negativeButtonText +wangdaye.com.geometricweather.R$attr: int statusBarScrim +com.xw.repo.bubbleseekbar.R$id: int normal +cyanogenmod.app.Profile$ExpandedDesktopMode: Profile$ExpandedDesktopMode() +wangdaye.com.geometricweather.R$id: int noScroll +cyanogenmod.app.CustomTile$1: cyanogenmod.app.CustomTile createFromParcel(android.os.Parcel) +androidx.constraintlayout.widget.R$color: int highlighted_text_material_dark +com.bumptech.glide.integration.okhttp.R$attr: int layout_anchorGravity +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeMinTextSize +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_default_mtrl_shape +androidx.work.R$styleable: int GradientColorItem_android_color +com.turingtechnologies.materialscrollbar.R$attr: int windowActionModeOverlay +androidx.viewpager2.R$id: int accessibility_custom_action_2 +android.didikee.donate.R$styleable: int MenuItem_actionViewClass +androidx.preference.R$dimen: int abc_switch_padding +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_52 +io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.R$styleable: int MaterialTextView_android_textAppearance +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ListView_DropDown +androidx.vectordrawable.animated.R$id: int blocking +wangdaye.com.geometricweather.R$styleable: int PropertySet_layout_constraintTag +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_RC4_128_MD5 +com.jaredrummler.android.colorpicker.R$drawable: int tooltip_frame_dark +com.amap.api.fence.PoiItem: void setPoiName(java.lang.String) +wangdaye.com.geometricweather.R$id: int material_textinput_timepicker +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setStatus(int) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void drain() +com.google.android.material.R$style: int Widget_AppCompat_SearchView_ActionBar +okhttp3.internal.http2.Http2Connection: java.lang.String hostname +okhttp3.internal.ws.RealWebSocket: java.lang.Runnable writerRunnable +com.google.android.material.floatingactionbutton.FloatingActionButton: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) +androidx.appcompat.R$drawable: int abc_ic_menu_overflow_material +androidx.appcompat.R$attr: int buttonGravity +wangdaye.com.geometricweather.R$id: int item_weather_daily_value_value +android.didikee.donate.R$attr: int listLayout +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_android_windowIsFloating +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part createFormData(java.lang.String,java.lang.String,okhttp3.RequestBody) +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dark +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_OFF +wangdaye.com.geometricweather.R$id: int activity_alert_container +com.google.android.material.bottomappbar.BottomAppBar: int getBottomInset() wangdaye.com.geometricweather.R$integer: int mtrl_badge_max_character_count -wangdaye.com.geometricweather.R$drawable: int notif_temp_137 -androidx.vectordrawable.animated.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.R$color: int material_grey_850 -androidx.preference.R$attr: int colorSwitchThumbNormal -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: int UnitType -androidx.appcompat.widget.Toolbar: void setTitle(int) -wangdaye.com.geometricweather.R$attr: int overlapAnchor -wangdaye.com.geometricweather.R$id: int contentPanel -cyanogenmod.externalviews.IExternalViewProvider: void onDetach() -retrofit2.http.PartMap: java.lang.String encoding() -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_track -wangdaye.com.geometricweather.R$layout: int preference -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_content_inset_with_nav -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle -cyanogenmod.themes.ThemeManager$2$1: java.lang.String val$pkgName -com.google.android.material.R$styleable: int MaterialButton_iconSize -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_NoActionBar -androidx.appcompat.widget.ViewStubCompat: ViewStubCompat(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$attr: int materialCalendarFullscreenTheme -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_corner_radius_medium -com.google.android.material.R$styleable: int ConstraintSet_layout_editor_absoluteY -android.didikee.donate.R$id: int showHome -com.turingtechnologies.materialscrollbar.R$attr: int closeIconEnabled -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -com.google.android.material.R$integer: int hide_password_duration -io.reactivex.Observable: io.reactivex.Flowable toFlowable(io.reactivex.BackpressureStrategy) -androidx.appcompat.R$drawable: int abc_ic_ab_back_material -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport parent -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation -cyanogenmod.app.IPartnerInterface$Stub$Proxy: void shutdown() -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: android.os.IBinder asBinder() -com.google.android.material.R$color: int mtrl_btn_text_color_disabled -com.google.android.material.textfield.TextInputLayout: void setTypeface(android.graphics.Typeface) -wangdaye.com.geometricweather.R$attr: int layout_constraintCircleAngle -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: io.reactivex.Observer downstream -androidx.constraintlayout.widget.R$attr: int actionBarStyle -okhttp3.OkHttpClient$1: boolean connectionBecameIdle(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_min -androidx.appcompat.resources.R$attr: int fontWeight -androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_bias -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -cyanogenmod.hardware.CMHardwareManager: int[] getVibratorIntensityArray() -androidx.appcompat.R$dimen: int abc_text_size_display_2_material -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf -androidx.dynamicanimation.R$id: int info -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase -wangdaye.com.geometricweather.R$drawable: int btn_radio_on_mtrl -androidx.constraintlayout.widget.R$id: int action_mode_bar_stub -wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_calendar_input_mode -android.didikee.donate.R$style: int ThemeOverlay_AppCompat -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setOnClickListener(android.view.View$OnClickListener) -okhttp3.HttpUrl: java.util.List queryStringToNamesAndValues(java.lang.String) -okhttp3.HttpUrl$Builder: java.lang.String INVALID_HOST -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getCollapseContentDescription() -wangdaye.com.geometricweather.R$string: int settings_title_click_widget_to_refresh -com.google.android.material.R$dimen: int mtrl_calendar_maximum_default_fullscreen_minor_axis -androidx.dynamicanimation.R$styleable: int GradientColor_android_gradientRadius -com.amap.api.fence.GeoFenceClient: void addGeoFence(java.lang.String,java.lang.String,com.amap.api.location.DPoint,float,int,java.lang.String) -okhttp3.internal.tls.OkHostnameVerifier: boolean verifyHostname(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer treeIndex -wangdaye.com.geometricweather.R$attr: int placeholder_emptyVisibility -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMargins -cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle() -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: ExternalViewProviderService$Provider$ProviderImpl$4(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -androidx.vectordrawable.R$id: int accessibility_custom_action_29 -androidx.appcompat.R$drawable: int notification_bg_low -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setRequestType(cyanogenmod.themes.ThemeChangeRequest$RequestType) -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_framePosition -com.jaredrummler.android.colorpicker.R$id: int action_menu_divider -okhttp3.internal.cache.DiskLruCache: boolean $assertionsDisabled -android.didikee.donate.R$attr: int elevation -androidx.preference.R$string: int abc_shareactionprovider_share_with -androidx.appcompat.R$color: int abc_search_url_text -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_toRightOf -cyanogenmod.externalviews.KeyguardExternalView$6: boolean val$screenOn -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CUSTOM_ENABLE_VALIDATOR -cyanogenmod.app.CustomTileListenerService: CustomTileListenerService() -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow -androidx.constraintlayout.widget.R$attr: int drawableTint -wangdaye.com.geometricweather.R$array: int precipitation_unit_voices -com.google.android.material.R$id: int dragRight -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_2 -androidx.appcompat.widget.SearchView: SearchView(android.content.Context) -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: java.lang.Integer poll() -androidx.preference.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource CN -okhttp3.TlsVersion: okhttp3.TlsVersion[] values() -okhttp3.CipherSuite: java.util.List forJavaNames(java.lang.String[]) -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getCurrentLiveLockScreen -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit PERCENT -android.didikee.donate.R$styleable: int TextAppearance_textAllCaps -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle -androidx.hilt.work.R$attr -androidx.hilt.lifecycle.R$dimen: int notification_top_pad -james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -james.adaptiveicon.R$dimen: int abc_text_size_display_2_material -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconCheckable -androidx.preference.R$color: int bright_foreground_inverse_material_dark -com.google.android.material.R$attr: int onCross -androidx.fragment.R$id: int chronometer -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_MENU_LONG_PRESS_ACTION_VALIDATOR -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_width_overflow_material -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onError(java.lang.Throwable) -android.didikee.donate.R$string: int abc_action_menu_overflow_description -androidx.appcompat.R$id: int action_mode_close_button -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getHintTextColor() -androidx.preference.R$attr: int windowFixedWidthMajor -androidx.appcompat.R$attr: int switchPadding -james.adaptiveicon.R$styleable: int AppCompatTheme_editTextBackground -androidx.appcompat.R$anim: int abc_fade_in -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -james.adaptiveicon.R$id: int search_edit_frame -wangdaye.com.geometricweather.R$string: int fab_transformation_sheet_behavior -com.google.android.material.card.MaterialCardView: void setUseCompatPadding(boolean) -james.adaptiveicon.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -com.google.android.material.chip.Chip: void setCloseIconContentDescription(java.lang.CharSequence) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_DrawerArrowToggle -okio.BufferedSink: okio.BufferedSink writeIntLe(int) -wangdaye.com.geometricweather.R$id: int tag_accessibility_clickable_spans -wangdaye.com.geometricweather.R$style: int material_image_button -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_min -androidx.constraintlayout.widget.R$drawable: int notification_bg -androidx.preference.R$styleable: int GradientColor_android_endY -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onNext(java.lang.Object) -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableStart -com.google.android.material.R$string: int mtrl_picker_cancel -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_vertical_padding -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldLevel(java.lang.Integer) -android.didikee.donate.R$styleable: int Toolbar_contentInsetRight -androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingEnd -com.turingtechnologies.materialscrollbar.R$style: int Base_V23_Theme_AppCompat_Light -androidx.preference.PreferenceManager: void setOnNavigateToScreenListener(androidx.preference.PreferenceManager$OnNavigateToScreenListener) -wangdaye.com.geometricweather.R$attr: int ratingBarStyleSmall -androidx.core.widget.NestedScrollView: void setFillViewport(boolean) -james.adaptiveicon.R$drawable: int abc_list_selector_holo_dark -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_enabled -androidx.fragment.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_2 -androidx.work.R$drawable: int notification_bg -androidx.coordinatorlayout.R$color: int secondary_text_default_material_light -androidx.loader.R$styleable: int GradientColor_android_startY -com.google.android.material.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -okhttp3.Cookie: boolean hostOnly -androidx.preference.MultiSelectListPreference$SavedState: android.os.Parcelable$Creator CREATOR -cyanogenmod.providers.CMSettings$2: boolean validate(java.lang.String) -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean timerFired -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: CaiYunMainlyResult$CurrentBean$TemperatureBean() -androidx.appcompat.R$id: int accessibility_custom_action_3 -com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_layout -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_showAsAction -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: java.lang.Object v2 -androidx.preference.R$attr: int actionViewClass -androidx.appcompat.R$id: int shortcut -com.xw.repo.bubbleseekbar.R$attr: int actionModeStyle -androidx.vectordrawable.animated.R$id: int tag_accessibility_heading -io.reactivex.Observable: io.reactivex.Observable flatMapSingle(io.reactivex.functions.Function,boolean) -io.reactivex.Observable: io.reactivex.Observable throttleWithTimeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_Dialog -okhttp3.Cache: okhttp3.internal.cache.DiskLruCache cache -okhttp3.EventListener: void requestBodyEnd(okhttp3.Call,long) -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_default_mtrl_alpha -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moon_icon -okhttp3.RealCall: RealCall(okhttp3.OkHttpClient,okhttp3.Request,boolean) -androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.FragmentActivity,androidx.lifecycle.ViewModelProvider$Factory) -androidx.constraintlayout.widget.R$layout: int abc_select_dialog_material -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onComplete() -okio.RealBufferedSink: okio.BufferedSink writeUtf8CodePoint(int) -androidx.appcompat.widget.FitWindowsFrameLayout: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) -com.google.android.material.R$attr: int barrierAllowsGoneWidgets -james.adaptiveicon.R$styleable: int ActionBar_contentInsetStart -androidx.hilt.R$anim: R$anim() -cyanogenmod.os.Build: java.lang.String UNKNOWN -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat -retrofit2.CompletableFutureCallAdapterFactory: retrofit2.CallAdapter$Factory INSTANCE -com.turingtechnologies.materialscrollbar.R$id: int action_image +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language GREEK +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: long serialVersionUID +androidx.appcompat.widget.Toolbar: int getContentInsetStart() +wangdaye.com.geometricweather.R$styleable: int Preference_allowDividerAbove +wangdaye.com.geometricweather.R$styleable: int Toolbar_popupTheme +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWeatherEnd() +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.fuseable.SimpleQueue queue +androidx.preference.R$styleable: int[] AnimatedStateListDrawableTransition +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +androidx.preference.R$attr: int searchHintIcon +wangdaye.com.geometricweather.R$attr: int tabIndicatorAnimationDuration +okhttp3.internal.http2.Hpack: java.util.Map NAME_TO_FIRST_INDEX +com.google.android.material.tabs.TabLayout: android.graphics.drawable.Drawable getTabSelectedIndicator() +james.adaptiveicon.R$attr: int titleMarginTop +com.google.android.material.R$styleable: int AppBarLayout_elevation +cyanogenmod.weather.CMWeatherManager$RequestStatus: CMWeatherManager$RequestStatus() +cyanogenmod.app.suggest.AppSuggestManager: boolean DEBUG +wangdaye.com.geometricweather.R$drawable: int flag_cs +com.google.android.gms.base.R$string: int common_google_play_services_install_button +okio.ByteString: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int SearchView_searchIcon +cyanogenmod.themes.ThemeManager: java.util.Set access$300(cyanogenmod.themes.ThemeManager) +james.adaptiveicon.R$style: int Base_DialogWindowTitleBackground_AppCompat +retrofit2.http.OPTIONS +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTextHelper +androidx.work.R$drawable +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_elevation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX() +wangdaye.com.geometricweather.R$string: int precipitation_probability +okhttp3.internal.platform.Platform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.X509TrustManager) +io.reactivex.Observable: io.reactivex.Observable error(java.util.concurrent.Callable) +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month +com.google.android.material.transformation.ExpandableTransformationBehavior: ExpandableTransformationBehavior(android.content.Context,android.util.AttributeSet) +okio.Buffer: java.lang.String readUtf8LineStrict(long) +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: boolean isDisposed() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float rainPrecipitation +cyanogenmod.profiles.ConnectionSettings$1: cyanogenmod.profiles.ConnectionSettings createFromParcel(android.os.Parcel) +okio.RealBufferedSource$1: int available() +wangdaye.com.geometricweather.R$string: int feedback_check_location_permission +cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem(android.os.Parcel) +wangdaye.com.geometricweather.R$array: int duration_unit_values +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_ICONS +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean() +com.google.android.material.R$dimen: int mtrl_calendar_title_baseline_to_top_fullscreen +wangdaye.com.geometricweather.R$id: int widget_week_week_1 +androidx.appcompat.R$styleable: int SearchView_layout +com.google.android.material.R$color: int design_fab_shadow_end_color +wangdaye.com.geometricweather.R$attr: int tooltipFrameBackground +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_1 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: java.lang.String Unit +james.adaptiveicon.R$dimen: int abc_config_prefDialogWidth +wangdaye.com.geometricweather.R$styleable: int Preference_iconSpaceReserved +androidx.preference.ListPreference: ListPreference(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$attr: int layout_keyline +androidx.preference.R$style: int TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.R$color: int mtrl_chip_text_color +wangdaye.com.geometricweather.R$styleable: int[] CardView +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float SulfurDioxide +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean notificationGroupExistsByName(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_logo +androidx.lifecycle.extensions.R$id: int tag_unhandled_key_event_manager +retrofit2.HttpException: HttpException(retrofit2.Response) +wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_dividerHeight +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorPrimary +com.google.android.material.chip.Chip: void setCheckedIcon(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property CityId +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_end +com.amap.api.fence.GeoFenceClient: android.content.Context a +androidx.drawerlayout.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +com.google.android.material.R$dimen: int notification_subtext_size +cyanogenmod.app.ThemeVersion +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: AccuCurrentResult$Wind$Speed() +com.google.android.material.R$styleable: int Constraint_android_layout_height +io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource) +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: void invoke(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$integer: int abc_config_activityDefaultDur +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog_Alert +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +androidx.preference.R$dimen: int hint_pressed_alpha_material_light +com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_LOW +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty24H +wangdaye.com.geometricweather.R$string: int week_2 +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman get() +androidx.lifecycle.ViewModelProvider$KeyedFactory +james.adaptiveicon.R$styleable: int AppCompatTheme_checkedTextViewStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_chip_pressed_translation_z +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastVerticalBias +okhttp3.Cache$1: void update(okhttp3.Response,okhttp3.Response) +com.google.android.material.R$color: int mtrl_calendar_selected_range +android.didikee.donate.R$dimen: int abc_text_size_large_material +wangdaye.com.geometricweather.R$id: int item_about_link_icon +com.google.android.material.R$color: int bright_foreground_material_light +cyanogenmod.externalviews.ExternalViewProperties: int mWidth +androidx.preference.R$dimen: int notification_big_circle_margin +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: android.graphics.Matrix getLocalMatrix() +androidx.lifecycle.LiveData$ObserverWrapper: boolean shouldBeActive() +wangdaye.com.geometricweather.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout_PrimarySurface +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Spinner_Underlined +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetStart +io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.functions.Function,io.reactivex.ObservableSource) +androidx.appcompat.R$styleable: int Spinner_popupTheme +android.didikee.donate.R$attr: int thumbTint +wangdaye.com.geometricweather.R$drawable: int shortcuts_hail_foreground +james.adaptiveicon.R$layout: R$layout() +retrofit2.Response: okhttp3.ResponseBody errorBody() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle +com.jaredrummler.android.colorpicker.R$id: int switchWidget +okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String key() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_elevation +android.support.v4.graphics.drawable.IconCompatParcelizer: androidx.core.graphics.drawable.IconCompat read(androidx.versionedparcelable.VersionedParcel) +androidx.loader.R$id: int forever +androidx.transition.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.background.polling.PollingUpdateHelper: void setOnPollingUpdateListener(wangdaye.com.geometricweather.background.polling.PollingUpdateHelper$OnPollingUpdateListener) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String province +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_titleEnabled +androidx.legacy.coreutils.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$string: int key_notification +androidx.constraintlayout.motion.widget.MotionLayout: float getProgress() +com.google.android.material.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.progressindicator.ProgressIndicator: int getCircularRadius() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String weather +wangdaye.com.geometricweather.R$styleable: int Chip_chipIconEnabled +com.google.android.material.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +com.google.gson.stream.JsonWriter: void beforeName() +com.google.android.material.chip.Chip: void setCloseIconEndPaddingResource(int) +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getLastThemeChangeRequestType +wangdaye.com.geometricweather.common.ui.activities.AlertActivity: AlertActivity() +androidx.appcompat.R$attr: int contentInsetEnd +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List consequences +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function9) +androidx.fragment.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean +cyanogenmod.os.Concierge$ParcelInfo: int mStartPosition +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActivityChooserView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: int getStatus() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeApparentTemperature +com.google.android.material.R$styleable: int LinearLayoutCompat_showDividers +cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CURRENT_WEATHER_URI +androidx.appcompat.widget.AppCompatSpinner: androidx.appcompat.widget.AppCompatSpinner$SpinnerPopup getInternalPopup() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +wangdaye.com.geometricweather.R$id: int item_alert_content +wangdaye.com.geometricweather.R$string: int feedback_interpret_notification_group_content +com.google.android.material.R$attr: int expanded +wangdaye.com.geometricweather.R$attr: int itemShapeInsetEnd +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String name +androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +androidx.preference.R$id: int add +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_activityChooserViewStyle +androidx.appcompat.R$styleable: int Toolbar_titleMarginTop +androidx.hilt.R$drawable: int notification_icon_background +com.turingtechnologies.materialscrollbar.R$dimen: int abc_floating_window_z +okio.SegmentedByteString: void write(java.io.OutputStream) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List probabilityForecast +androidx.constraintlayout.widget.R$attr: int layout_constraintTag +okhttp3.Response: okhttp3.Protocol protocol +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_middle_mtrl_dark +wangdaye.com.geometricweather.R$id: int material_timepicker_container +com.google.android.material.R$style: int Widget_AppCompat_TextView_SpinnerItem +com.turingtechnologies.materialscrollbar.R$attr: int dividerVertical +okhttp3.internal.platform.Platform: int WARN +wangdaye.com.geometricweather.R$style: int widget_background_card +com.google.android.material.card.MaterialCardView: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_80 +androidx.appcompat.R$styleable: int TextAppearance_android_textColorLink +cyanogenmod.weather.CMWeatherManager$2: cyanogenmod.weather.CMWeatherManager this$0 +com.jaredrummler.android.colorpicker.R$styleable: int View_paddingEnd +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver +androidx.constraintlayout.widget.R$attr: int icon +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_8 +retrofit2.BuiltInConverters$UnitResponseBodyConverter: java.lang.Object convert(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String suggest +androidx.appcompat.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +com.google.android.material.R$styleable: int Transition_staggered +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_ripple_color +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveOffset +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: long serialVersionUID +com.google.android.material.R$string: int password_toggle_content_description +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_constantSize +okio.GzipSink: GzipSink(okio.Sink) +androidx.constraintlayout.widget.R$drawable: int notification_tile_bg +androidx.preference.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: int UnitType +android.didikee.donate.R$styleable: int AppCompatTextView_lineHeight +androidx.appcompat.R$drawable: int abc_btn_check_material_anim +wangdaye.com.geometricweather.db.entities.DaoSession: DaoSession(org.greenrobot.greendao.database.Database,org.greenrobot.greendao.identityscope.IdentityScopeType,java.util.Map) +androidx.appcompat.R$layout: int abc_popup_menu_item_layout +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void setInteractivity(boolean) +wangdaye.com.geometricweather.R$id: int notification_multi_city_2 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMark +androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMark +androidx.constraintlayout.widget.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +com.amap.api.location.AMapLocation: java.lang.String a(com.amap.api.location.AMapLocation,java.lang.String) +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event[] $VALUES +okhttp3.Headers: int hashCode() +androidx.transition.R$dimen: int compat_control_corner_material +com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_fast_out_slow_in +wangdaye.com.geometricweather.R$styleable: int NavigationView_shapeAppearance +com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_disabled_material_dark +okio.Buffer: byte readByte() +james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.lifecycle.SavedStateViewModelFactory: SavedStateViewModelFactory(android.app.Application,androidx.savedstate.SavedStateRegistryOwner) +com.google.android.material.button.MaterialButton: void setBackgroundColor(int) +wangdaye.com.geometricweather.R$styleable: int MenuView_subMenuArrow +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_text_color +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Title +wangdaye.com.geometricweather.R$attr: int trackTintMode +androidx.constraintlayout.widget.R$attr: int autoSizeStepGranularity +android.didikee.donate.R$attr: int imageButtonStyle +io.reactivex.internal.util.VolatileSizeArrayList: java.util.Iterator iterator() +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type ownerType +okhttp3.internal.tls.OkHostnameVerifier: boolean verify(java.lang.String,java.security.cert.X509Certificate) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setLabelVisibilityMode(int) +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_Alert +androidx.appcompat.R$styleable: int SwitchCompat_showText +wangdaye.com.geometricweather.R$color: int primary_text_disabled_material_light +com.google.android.gms.common.ConnectionResult: android.os.Parcelable$Creator CREATOR +io.reactivex.Observable: io.reactivex.Single isEmpty() +androidx.hilt.work.R$layout: int notification_template_custom_big +androidx.constraintlayout.widget.R$dimen: int hint_pressed_alpha_material_dark +wangdaye.com.geometricweather.R$attr: int pressedTranslationZ +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +androidx.preference.R$styleable: int StateListDrawableItem_android_drawable +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: int prefetch +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.Lifecycle getLifecycle() +androidx.lifecycle.MediatorLiveData: void removeSource(androidx.lifecycle.LiveData) +android.didikee.donate.R$id: int action_bar +wangdaye.com.geometricweather.R$id: int shortcut +com.turingtechnologies.materialscrollbar.R$styleable: int[] View +android.didikee.donate.R$attr: int divider +wangdaye.com.geometricweather.R$dimen: int abc_text_size_menu_header_material +okhttp3.internal.cache.DiskLruCache: java.io.File directory +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.google.android.material.chip.ChipGroup: void setChipSpacingVertical(int) +com.github.rahatarmanahmed.cpv.CircularProgressView$6: void onAnimationUpdate(android.animation.ValueAnimator) +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionBarLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getDetail() +okhttp3.internal.http2.Http2Writer: Http2Writer(okio.BufferedSink,boolean) +androidx.preference.R$attr: int multiChoiceItemLayout +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onError(java.lang.Throwable) +io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.Observer) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer ragweedLevel +androidx.constraintlayout.utils.widget.ImageFilterView: void setSaturation(float) +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_commitIcon +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_android_windowAnimationStyle +wangdaye.com.geometricweather.common.basic.models.weather.Daily: boolean isToday(java.util.TimeZone) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext +wangdaye.com.geometricweather.R$string: int aqi_3 +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button +androidx.appcompat.R$dimen: int abc_seekbar_track_progress_height_material +com.bumptech.glide.integration.okhttp3.OkHttpGlideModule +com.google.android.material.R$styleable: int SwitchCompat_thumbTextPadding +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCloseDrawable +james.adaptiveicon.R$styleable: int MenuItem_android_title +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RelativeHumidity +android.didikee.donate.R$attr: int actionModeCloseDrawable +com.google.android.material.textfield.TextInputLayout: void setHintAnimationEnabled(boolean) +androidx.appcompat.R$style: int Widget_AppCompat_ActionButton +james.adaptiveicon.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.location.services.LocationService: boolean hasPermissions(android.content.Context) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionMenuTextAppearance +android.didikee.donate.R$style: int Base_AlertDialog_AppCompat_Light +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +okhttp3.internal.http2.Hpack$Writer: void setHeaderTableSizeSetting(int) +wangdaye.com.geometricweather.R$layout: int dialog_adaptive_icon +wangdaye.com.geometricweather.settings.dialogs.AdaptiveIconDialog +wangdaye.com.geometricweather.common.ui.widgets.TagView: void setChecked(boolean) +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemHorizontalTranslationEnabled(boolean) +com.xw.repo.bubbleseekbar.R$styleable: int[] ActivityChooserView +androidx.activity.R$styleable: int FontFamily_fontProviderFetchStrategy +okhttp3.internal.http2.Http2Writer: void pushPromise(int,int,java.util.List) +com.google.android.material.R$id: int topPanel +androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_alpha +com.google.android.material.R$style: int TextAppearance_AppCompat_Small_Inverse +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult +okhttp3.internal.http.HttpHeaders +com.google.android.material.R$color: int design_icon_tint +androidx.preference.R$attr: int thumbTextPadding +androidx.appcompat.R$id: int search_plate +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: android.os.IBinder mRemote +com.google.android.material.R$attr: int drawableLeftCompat +androidx.hilt.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$layout: int abc_screen_toolbar +okio.BufferedSource: long indexOf(okio.ByteString) +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.MultipartBody$Part) +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showAlphaSlider +io.reactivex.Observable: io.reactivex.Single lastOrError() +wangdaye.com.geometricweather.R$attr: int verticalOffset +androidx.vectordrawable.R$dimen: int compat_notification_large_icon_max_width +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean set(int,boolean) +com.google.android.gms.common.api.internal.LifecycleCallback +com.google.android.material.R$style: int Widget_AppCompat_Button +androidx.appcompat.R$color: int material_blue_grey_950 +wangdaye.com.geometricweather.R$attr: int tickColorInactive +wangdaye.com.geometricweather.R$string: int week_4 +androidx.constraintlayout.widget.R$id: int title_template +android.didikee.donate.R$drawable: int abc_text_select_handle_right_mtrl_dark +androidx.fragment.R$styleable: int GradientColor_android_startX +androidx.appcompat.R$drawable: int btn_radio_on_to_off_mtrl_animation +androidx.appcompat.widget.AppCompatCheckedTextView: void setCheckMarkDrawable(int) +androidx.appcompat.R$styleable: int AppCompatTheme_switchStyle +com.google.android.material.R$attr: int colorButtonNormal +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date sunsetTime +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.LocationEntity,int) +androidx.appcompat.R$attr: int listPreferredItemPaddingRight +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceButton +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_explanation +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Borderless +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: double Value +com.bumptech.glide.integration.okhttp.R$dimen: int notification_action_text_size +cyanogenmod.providers.CMSettings$Global: long getLongForUser(android.content.ContentResolver,java.lang.String,int) +com.google.android.material.R$id: int dragEnd +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_6 +androidx.fragment.R$layout: R$layout() +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status valueOf(java.lang.String) +androidx.coordinatorlayout.R$attr: int layout_keyline +wangdaye.com.geometricweather.R$string: int settings_notification_can_be_cleared_off +androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: java.lang.String getAddress() +io.reactivex.internal.schedulers.ScheduledRunnable: boolean isDisposed() +com.jaredrummler.android.colorpicker.R$attr: int showSeekBarValue +com.jaredrummler.android.colorpicker.R$styleable: int ButtonBarLayout_allowStacking +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPubTime(java.lang.String) +androidx.preference.R$string: int abc_menu_enter_shortcut_label +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_30 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonStyle +okhttp3.MultipartBody: MultipartBody(okio.ByteString,okhttp3.MediaType,java.util.List) +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +androidx.core.R$id: int async +androidx.preference.R$style: int Widget_Compat_NotificationActionContainer +com.google.android.material.R$style: int TextAppearance_AppCompat_Subhead +androidx.hilt.work.R$id: int action_text +androidx.lifecycle.extensions.R$id +wangdaye.com.geometricweather.common.ui.widgets.DonateImageView: DonateImageView(android.content.Context,android.util.AttributeSet) +com.bumptech.glide.R$styleable: R$styleable() +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_elevation +james.adaptiveicon.R$dimen: int abc_action_bar_icon_vertical_padding_material +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windSpeedGust +okhttp3.WebSocket$Factory: okhttp3.WebSocket newWebSocket(okhttp3.Request,okhttp3.WebSocketListener) +wangdaye.com.geometricweather.R$layout: int design_navigation_item_separator +androidx.preference.R$attr: int isPreferenceVisible +com.google.android.material.R$attr: int mock_labelColor +io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.MaybeObserver) +androidx.drawerlayout.R$id: int async +cyanogenmod.weather.CMWeatherManager: java.util.Map access$200(cyanogenmod.weather.CMWeatherManager) +okhttp3.internal.http2.Http2Stream$FramingSource: void receive(okio.BufferedSource,long) +com.google.android.material.R$attr: int materialAlertDialogTitleIconStyle +androidx.viewpager.R$attr: int fontProviderCerts +androidx.core.R$color: int androidx_core_ripple_material_light +com.bumptech.glide.R$attr: int keylines +wangdaye.com.geometricweather.R$styleable: int BackgroundStyle_selectableItemBackground +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +androidx.appcompat.R$styleable: int AppCompatImageView_tint +wangdaye.com.geometricweather.R$string: int settings_summary_appearance +com.google.android.material.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +androidx.recyclerview.R$id: int accessibility_custom_action_27 +com.xw.repo.bubbleseekbar.R$color: int button_material_light +wangdaye.com.geometricweather.R$attr: int liftOnScroll +okhttp3.internal.cache.DiskLruCache$Editor: void commit() +androidx.drawerlayout.R$id: int icon +androidx.appcompat.R$styleable: int SwitchCompat_switchPadding +com.turingtechnologies.materialscrollbar.R$attr: int actionBarPopupTheme +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: java.lang.String type +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.appcompat.R$styleable: int SearchView_android_focusable +james.adaptiveicon.R$style: int TextAppearance_AppCompat_SearchResult_Title +com.bumptech.glide.R$attr: int fontProviderCerts +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean deferredSetOnce(java.util.concurrent.atomic.AtomicReference,java.util.concurrent.atomic.AtomicLong,org.reactivestreams.Subscription) +com.google.android.material.card.MaterialCardView: void setBackgroundInternal(android.graphics.drawable.Drawable) +io.reactivex.internal.observers.DeferredScalarObserver: DeferredScalarObserver(io.reactivex.Observer) +okhttp3.Handshake: okhttp3.TlsVersion tlsVersion() +com.google.gson.FieldNamingPolicy$1: java.lang.String translateName(java.lang.reflect.Field) +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean active +com.google.android.material.R$style: int Theme_MaterialComponents_Light_BarSize +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: DailyEntityDao$Properties() +cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.IAppSuggestManager sImpl +androidx.vectordrawable.R$drawable: int notification_template_icon_low_bg +com.google.android.material.R$styleable: int Chip_chipStrokeColor +com.google.android.material.R$attr: int layout_constraintTag +com.google.android.material.R$styleable: int[] KeyAttribute +wangdaye.com.geometricweather.background.polling.basic.Hilt_AwakeForegroundUpdateService: Hilt_AwakeForegroundUpdateService() +wangdaye.com.geometricweather.R$layout: int item_weather_daily_wind +wangdaye.com.geometricweather.R$attr: int maxLines +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: boolean isDisposed() +james.adaptiveicon.R$styleable: int Toolbar_android_minHeight +james.adaptiveicon.R$drawable: int abc_edit_text_material +okhttp3.internal.cache.DiskLruCache$Entry: boolean readable +com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrim(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents +androidx.viewpager2.R$attr: int fontProviderFetchTimeout +androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_max +androidx.fragment.app.SuperNotCalledException +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: int UnitType +androidx.appcompat.R$drawable: int abc_textfield_search_default_mtrl_alpha +androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context) +wangdaye.com.geometricweather.R$string: int precipitation_middle +james.adaptiveicon.R$attr: int icon +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric Metric +com.google.android.material.bottomappbar.BottomAppBar: void setElevation(float) +androidx.vectordrawable.R$layout +com.google.android.material.R$dimen: int mtrl_extended_fab_top_padding +androidx.core.R$id: int text2 +com.jaredrummler.android.colorpicker.R$styleable: int[] LinearLayoutCompat_Layout +okio.ForwardingSource: java.lang.String toString() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_switch_thumb_material +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_background +wangdaye.com.geometricweather.R$styleable: int MaterialButton_shapeAppearanceOverlay +androidx.activity.R$dimen: int notification_small_icon_background_padding +com.baidu.location.indoor.mapversion.c.a$d: a$d(java.lang.String) +android.didikee.donate.R$color: int switch_thumb_material_dark +com.amap.api.fence.PoiItem: double g +wangdaye.com.geometricweather.db.entities.ChineseCityEntity +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTheme +androidx.appcompat.R$style: int TextAppearance_AppCompat_Button +okio.GzipSource: byte FHCRC +okio.Buffer: okio.Segment head +okhttp3.internal.http2.Http2Writer: void connectionPreface() +androidx.constraintlayout.widget.R$drawable: int abc_tab_indicator_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_toolbarId +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.functions.Function) +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_BRIGHTNESS_CONTROL +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_top_padding +okhttp3.HttpUrl$Builder: HttpUrl$Builder() +com.turingtechnologies.materialscrollbar.R$attr: int voiceIcon +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: int status +androidx.viewpager2.R$styleable: int FontFamilyFont_fontStyle +okhttp3.internal.ws.RealWebSocket$Streams: okio.BufferedSource source +wangdaye.com.geometricweather.R$id: int accelerate +james.adaptiveicon.R$attr: int allowStacking +wangdaye.com.geometricweather.R$styleable: int ActionMode_subtitleTextStyle +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom +wangdaye.com.geometricweather.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +androidx.appcompat.R$style: int Widget_AppCompat_PopupMenu_Overflow +cyanogenmod.hardware.CMHardwareManager: android.content.Context mContext +wangdaye.com.geometricweather.R$array: int precipitation_unit_values +wangdaye.com.geometricweather.R$attr: int iconStartPadding +androidx.customview.R$string: R$string() +okio.ByteString: okio.ByteString sha256() +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_LIVE_LOCK_SCREEN +wangdaye.com.geometricweather.R$styleable: int Constraint_android_transformPivotY +androidx.appcompat.R$id: int accessibility_action_clickable_span +cyanogenmod.hardware.CMHardwareManager: boolean deletePersistentObject(java.lang.String) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onAttach() +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetStart +wangdaye.com.geometricweather.R$id: int view_offset_helper +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleGravity() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_variablePadding +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: android.os.IBinder asBinder() +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy DROP +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindSpeedStart() +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: int unitArrayIndex +com.google.android.material.R$id: int accessibility_custom_action_20 +androidx.constraintlayout.widget.R$attr: int transitionDisable +wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_peek_height_min +wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity: DayWidgetConfigActivity() +cyanogenmod.externalviews.KeyguardExternalView$3: int val$y +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String headIconType +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void dispose() +io.reactivex.exceptions.CompositeException: int size() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: java.lang.Integer proba3H +cyanogenmod.app.ProfileManager: void resetAll() +wangdaye.com.geometricweather.R$id: int material_clock_hand +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.database.Database db +wangdaye.com.geometricweather.daily.DailyWeatherActivity +com.google.android.material.R$styleable: int Snackbar_snackbarButtonStyle +wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_width_major +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getApparentTemperature() +wangdaye.com.geometricweather.R$styleable: int Constraint_barrierMargin +wangdaye.com.geometricweather.R$layout: int item_trend_daily +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_tintMode +okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.Response cacheResponse +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Id +com.turingtechnologies.materialscrollbar.R$attr: int layout +androidx.core.widget.ContentLoadingProgressBar: ContentLoadingProgressBar(android.content.Context) +cyanogenmod.externalviews.KeyguardExternalView$10 +wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line2_tail_interpolator +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_orderInCategory +androidx.transition.R$style +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService: MaterialLiveWallpaperService() +wangdaye.com.geometricweather.R$styleable: int BackgroundStyle_android_selectableItemBackground +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_summaryOff +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_26 +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String BOOTANIMATION_THUMBNAIL +retrofit2.ParameterHandler$FieldMap: void apply(retrofit2.RequestBuilder,java.lang.Object) +okhttp3.Response$Builder +io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.observers.InnerQueuedObserverSupport parent +androidx.preference.R$styleable: int Preference_layout +androidx.preference.R$style: int Preference_DialogPreference_EditTextPreference +android.didikee.donate.R$dimen: int notification_large_icon_height +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getCounterOverflowTextColor() +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_menu_item_layout +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +okhttp3.internal.cache.DiskLruCache: boolean mostRecentTrimFailed +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat +wangdaye.com.geometricweather.R$attr: int windowActionBar +okhttp3.internal.http1.Http1Codec$1 +com.google.android.material.chip.Chip: void setChipBackgroundColor(android.content.res.ColorStateList) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_SearchView +com.google.android.material.R$styleable: int Constraint_drawPath +com.google.android.material.R$styleable: int Toolbar_android_minHeight +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_title +androidx.constraintlayout.widget.R$attr: int percentHeight +wangdaye.com.geometricweather.R$attr: int arrowShaftLength +androidx.preference.R$id: int italic +androidx.hilt.lifecycle.R$style +com.turingtechnologies.materialscrollbar.R$id: int search_button +com.google.android.material.R$style: int ShapeAppearanceOverlay_Cut +androidx.preference.R$attr: int titleMarginStart +androidx.appcompat.widget.ViewStubCompat: void setLayoutInflater(android.view.LayoutInflater) +com.turingtechnologies.materialscrollbar.CustomIndicator: CustomIndicator(android.content.Context) +androidx.hilt.work.R$id: int notification_background +androidx.constraintlayout.widget.R$styleable: int KeyCycle_framePosition +com.google.gson.stream.JsonReader: int PEEKED_FALSE +com.google.android.material.R$styleable: int Constraint_android_id +com.autonavi.aps.amapapi.model.AMapLocationServer: org.json.JSONObject toJson(int) +wangdaye.com.geometricweather.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: AccuDailyResult$DailyForecasts$Temperature$Minimum() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfSnow +wangdaye.com.geometricweather.R$string: int key_widget_day_week +wangdaye.com.geometricweather.R$styleable: int Preference_android_dependency +androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int RainProbability +com.google.android.material.R$styleable: int TextInputLayout_errorIconTint +com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableCompat +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitationDuration +androidx.vectordrawable.R$drawable: R$drawable() +androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_Tooltip +wangdaye.com.geometricweather.R$id: int material_label +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_always_show_bubble +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabView +com.jaredrummler.android.colorpicker.R$layout: int abc_popup_menu_header_item_layout +androidx.appcompat.R$styleable: int AppCompatTheme_actionMenuTextAppearance +com.google.android.material.R$attr: int tabGravity +androidx.hilt.R$id: int accessibility_custom_action_30 +com.jaredrummler.android.colorpicker.R$drawable +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getStatusBarThemePackageName() +okhttp3.internal.http.BridgeInterceptor: okhttp3.CookieJar cookieJar +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onNext(java.lang.Object) +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object remove(int) +android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.support.v4.app.INotificationSideChannel sDefaultImpl +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getLongDate(android.content.Context) +okhttp3.internal.http.RealInterceptorChain: int readTimeout +james.adaptiveicon.R$dimen: int abc_cascading_menus_min_smallest_width +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRelativeHumidity(java.lang.Float) +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$attr: int layout_behavior +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayHorizontalProvider +com.jaredrummler.android.colorpicker.R$style: int PreferenceFragment_Material +com.google.android.material.R$color: int design_fab_stroke_top_outer_color +androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_cancelRequest +androidx.core.app.ComponentActivity +wangdaye.com.geometricweather.R$layout: int test_chip_zero_corner_radius +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.disposables.Disposable upstream +com.xw.repo.bubbleseekbar.R$attr: int fontProviderFetchStrategy +okhttp3.RequestBody: void writeTo(okio.BufferedSink) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onComplete() +wangdaye.com.geometricweather.settings.dialogs.MinimalIconDialog: MinimalIconDialog() +androidx.preference.R$style: int TextAppearance_Compat_Notification_Info +androidx.appcompat.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +com.jaredrummler.android.colorpicker.R$id: int notification_background +androidx.core.R$color: R$color() +androidx.preference.R$string: int abc_menu_alt_shortcut_label +androidx.constraintlayout.widget.R$attr: int dragThreshold +wangdaye.com.geometricweather.R$styleable: int[] Preference +android.didikee.donate.R$drawable: int abc_list_longpressed_holo +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_shouldDisableView +androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerColor +james.adaptiveicon.R$layout: int notification_template_custom_big +com.google.android.material.R$attr: int closeIconVisible +com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +androidx.appcompat.R$string: int abc_activitychooserview_choose_application +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2 +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: void throwIfCaught() +io.reactivex.internal.observers.ForEachWhileObserver: ForEachWhileObserver(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer,io.reactivex.functions.Action) +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTopCompat +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeMinTextSize +okhttp3.Interceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +com.bumptech.glide.R$id: int chronometer +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_right_mtrl_dark +androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontVariationSettings +com.google.android.material.R$id: int percent +androidx.constraintlayout.widget.R$attr: int fontFamily +wangdaye.com.geometricweather.R$array: int subtitle_data +androidx.activity.R$id: int accessibility_custom_action_29 +com.google.android.gms.base.R$attr +android.didikee.donate.R$attr: int windowMinWidthMinor +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Text +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_21 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTheme +cyanogenmod.app.suggest.IAppSuggestManager$Stub +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: java.util.concurrent.Callable bufferSupplier +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +wangdaye.com.geometricweather.R$styleable: int Chip_textEndPadding +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_NoActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_iconTint +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotationX +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: ChineseCityEntity() +okhttp3.internal.platform.Android10Platform: okhttp3.internal.platform.Platform buildIfSupported() +androidx.preference.R$attr: int colorControlNormal +com.google.android.material.R$string: int mtrl_chip_close_icon_content_description +androidx.appcompat.R$dimen: int abc_dialog_fixed_height_major +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_anchor +androidx.appcompat.widget.SearchView: java.lang.CharSequence getQueryHint() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems +wangdaye.com.geometricweather.R$styleable: int Slider_labelBehavior +wangdaye.com.geometricweather.R$style: int my_switch +com.jaredrummler.android.colorpicker.R$id: int progress_circular +com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentListStyle +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$RecycledViewPool getRecycledViewPool() +wangdaye.com.geometricweather.db.entities.WeatherEntity: long getUpdateTime() +wangdaye.com.geometricweather.R$string: int cloud_cover +com.xw.repo.bubbleseekbar.R$attr: int thumbTextPadding +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void dispose() +androidx.swiperefreshlayout.R$id: int notification_main_column_container +com.google.android.gms.common.internal.zax +androidx.preference.R$drawable: int abc_btn_radio_material_anim +wangdaye.com.geometricweather.R$dimen: int material_cursor_inset_bottom +okhttp3.MultipartBody$Builder: okio.ByteString boundary +okhttp3.internal.platform.Jdk9Platform: java.lang.reflect.Method getProtocolMethod +wangdaye.com.geometricweather.R$drawable: int notif_temp_74 +com.google.android.material.R$string: int abc_menu_delete_shortcut_label +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setAlpnProtocols +com.google.android.material.R$attr: int materialAlertDialogTitleTextStyle +androidx.appcompat.R$drawable: int abc_list_selector_background_transition_holo_light +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +androidx.recyclerview.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$styleable: int[] LinearLayoutCompat +androidx.transition.R$id: int async +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean delayError +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_CheckedTextView +androidx.constraintlayout.widget.R$attr: int queryBackground +okhttp3.internal.cache.DiskLruCache: int redundantOpCount +androidx.appcompat.widget.AppCompatTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) +com.google.android.material.R$styleable: int NavigationView_shapeAppearance +james.adaptiveicon.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPressure() +android.didikee.donate.R$styleable: int ActionMenuItemView_android_minWidth +com.jaredrummler.android.colorpicker.R$color: int abc_tint_spinner +james.adaptiveicon.R$bool: int abc_config_actionMenuItemAllCaps +com.amap.api.fence.GeoFence: void setPoiItem(com.amap.api.fence.PoiItem) okio.RealBufferedSource: long indexOf(okio.ByteString,long) -androidx.activity.R$integer: int status_bar_notification_info_maxnum -androidx.constraintlayout.utils.widget.ImageFilterView: void setCrossfade(float) -androidx.appcompat.R$styleable: int MenuItem_contentDescription -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void complete() -com.google.android.material.R$attr: int alpha -androidx.constraintlayout.widget.R$id: int list_item -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMarkTint +wangdaye.com.geometricweather.R$attr: int flow_firstHorizontalBias +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.R$menu: R$menu() +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$style: int Widget_Design_AppBarLayout +com.amap.api.location.AMapLocation: boolean a(com.amap.api.location.AMapLocation,boolean) +com.xw.repo.bubbleseekbar.R$attr: int titleTextStyle +androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveData(java.lang.String) +com.google.android.material.R$style: int Base_DialogWindowTitleBackground_AppCompat +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int UPDATING +wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat_Dark +androidx.lifecycle.extensions.R$id: int notification_main_column +wangdaye.com.geometricweather.R$styleable: int SignInButton_colorScheme +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_icon +androidx.constraintlayout.widget.R$string: int abc_capital_off +com.google.android.material.slider.Slider: void setThumbTintList(android.content.res.ColorStateList) +androidx.legacy.coreutils.R$drawable: int notification_bg_normal +cyanogenmod.weather.CMWeatherManager$2$1: CMWeatherManager$2$1(cyanogenmod.weather.CMWeatherManager$2,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener,int,cyanogenmod.weather.WeatherInfo) +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver otherObserver +wangdaye.com.geometricweather.R$id: int spacer +androidx.hilt.work.R$styleable: int Fragment_android_tag +com.turingtechnologies.materialscrollbar.R$attr: int labelVisibilityMode +com.jaredrummler.android.colorpicker.R$layout: int notification_template_custom_big +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart +okhttp3.Cache$1: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) +retrofit2.converter.gson.GsonResponseBodyConverter +wangdaye.com.geometricweather.R$drawable: int cpv_btn_background +androidx.coordinatorlayout.R$id: int tag_unhandled_key_event_manager +androidx.preference.R$attr: int textColorSearchUrl +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX) +wangdaye.com.geometricweather.R$attr: int keyPositionType +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarSplitStyle +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetLeft +com.bumptech.glide.R$id: int tag_transition_group +wangdaye.com.geometricweather.db.entities.WeatherEntity: long publishTime +wangdaye.com.geometricweather.R$attr: int flow_horizontalAlign +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicator +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textStyle +androidx.constraintlayout.widget.R$attr: int animate_relativeTo +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void cancel() +androidx.recyclerview.R$styleable: int GradientColor_android_centerY +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivityCreated(android.app.Activity,android.os.Bundle) +androidx.constraintlayout.widget.R$attr: int telltales_tailScale +com.google.android.material.R$styleable: int Constraint_layout_constrainedHeight +wangdaye.com.geometricweather.R$id: int snackbar_text +cyanogenmod.providers.CMSettings$1 +androidx.recyclerview.widget.RecyclerView: void setRecycledViewPool(androidx.recyclerview.widget.RecyclerView$RecycledViewPool) +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource getInstance(java.lang.String) +com.turingtechnologies.materialscrollbar.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer aqiIndex +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,long,java.util.concurrent.TimeUnit) +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType[] values() +androidx.appcompat.R$color: int background_floating_material_dark +james.adaptiveicon.R$attr: int titleMarginStart +com.jaredrummler.android.colorpicker.R$attr: int colorAccent +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +com.google.android.material.R$string: int abc_menu_meta_shortcut_label +okhttp3.internal.Util: java.lang.String trimSubstring(java.lang.String,int,int) +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_gradientRadius +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startY +com.turingtechnologies.materialscrollbar.R$attr: int scrimBackground +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light_focused +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCutDrawable +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory +androidx.constraintlayout.widget.R$id: int parent +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_selectable +james.adaptiveicon.R$styleable: int ActionMode_closeItemLayout +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogCenterButtons +okio.RealBufferedSource$1: void close() +androidx.coordinatorlayout.R$id: int time +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_text_size +retrofit2.Response: retrofit2.Response success(java.lang.Object,okhttp3.Headers) +androidx.viewpager.widget.ViewPager: void setOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) +androidx.appcompat.widget.AppCompatButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode Device_Sensors +com.google.android.material.R$styleable: int AppCompatTheme_imageButtonStyle +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light_normal +james.adaptiveicon.R$styleable: int CompoundButton_android_button +com.google.android.material.R$drawable: int abc_item_background_holo_light +androidx.customview.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: int humidity +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: java.util.concurrent.TimeUnit unit +com.google.android.material.datepicker.MaterialCalendar +james.adaptiveicon.R$color: int abc_background_cache_hint_selector_material_dark +okio.Source +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain +wangdaye.com.geometricweather.R$id: int container_alert_display_view_title +com.google.android.material.snackbar.Snackbar$SnackbarLayout: Snackbar$SnackbarLayout(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$id: int left +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_ListPopupWindow +android.didikee.donate.R$id: int src_over +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: int UnitType +androidx.preference.R$attr: int colorPrimaryDark +androidx.preference.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +cyanogenmod.app.CustomTile$ListExpandedStyle: CustomTile$ListExpandedStyle() +okhttp3.CacheControl: boolean noCache() +io.reactivex.internal.observers.DeferredScalarDisposable: void clear() +androidx.appcompat.widget.LinearLayoutCompat: void setDividerPadding(int) +com.google.android.material.R$dimen: int mtrl_slider_widget_height +androidx.appcompat.R$color: int abc_tint_spinner +com.amap.api.location.AMapLocation: AMapLocation(java.lang.String) +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform get() +cyanogenmod.providers.CMSettings$System: long getLong(android.content.ContentResolver,java.lang.String,long) +androidx.appcompat.R$attr: int listPreferredItemPaddingEnd +wangdaye.com.geometricweather.R$styleable: int NavigationView_elevation +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric +androidx.constraintlayout.widget.R$dimen: int abc_text_size_menu_header_material +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.internal.operators.observable.ObservableRefCount parent +wangdaye.com.geometricweather.R$attr: int actionModeStyle +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.reflect.Type responseType +io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Action) +com.turingtechnologies.materialscrollbar.R$id: int forever +androidx.swiperefreshlayout.R$color: int notification_action_color_filter +com.google.android.material.R$attr: int measureWithLargestChild +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun sun +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_shapeAppearanceOverlay +com.bumptech.glide.Priority: com.bumptech.glide.Priority LOW +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +com.google.android.material.R$attr: int labelStyle +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: android.os.IBinder mRemote +com.google.android.material.slider.RangeSlider: void setFocusedThumbIndex(int) +cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: WeatherContract$WeatherColumns$WindSpeedUnit() +androidx.customview.R$styleable: int FontFamilyFont_android_fontStyle +androidx.work.R$style: int Widget_Compat_NotificationActionText +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Spinner_Underlined +androidx.appcompat.resources.R$dimen: int notification_top_pad_large_text +androidx.activity.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$dimen: int abc_text_size_headline_material +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_go_search_api_material +com.jaredrummler.android.colorpicker.R$id: int icon_group +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_NoActionBar +androidx.customview.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String getFrom() +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_tagView +okio.RealBufferedSource: okio.Source source +james.adaptiveicon.R$styleable: int ActionBar_backgroundStacked +androidx.appcompat.resources.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: AccuDailyResult() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_width_overflow_material +com.jaredrummler.android.colorpicker.R$attr: int defaultValue +okhttp3.HttpUrl$Builder: void pop() +android.didikee.donate.R$color: int material_grey_600 +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer clouds +androidx.constraintlayout.helper.widget.Layer: void setTranslationX(float) +com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPanelView +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +com.github.rahatarmanahmed.cpv.R$bool: int cpv_default_is_indeterminate +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function6) +wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitleIconStyle +android.didikee.donate.R$styleable: int LinearLayoutCompat_measureWithLargestChild +io.reactivex.Observable: void blockingSubscribe() +james.adaptiveicon.R$attr: R$attr() +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_horizontal_padding +cyanogenmod.weather.WeatherLocation$1: cyanogenmod.weather.WeatherLocation createFromParcel(android.os.Parcel) +androidx.preference.R$dimen: int disabled_alpha_material_dark +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTextAppearance(int) +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber(androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData) +androidx.appcompat.R$string: int abc_action_bar_up_description +com.amap.api.location.AMapLocation: void setFloor(java.lang.String) +okhttp3.internal.cache.CacheRequest +com.google.android.material.R$id: int accelerate +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_lifted +com.google.android.material.R$styleable: int Layout_maxWidth +androidx.preference.R$layout: int preference_dropdown_material +androidx.viewpager2.R$attr: int fontProviderFetchStrategy +androidx.hilt.work.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$styleable: int Chip_shapeAppearance +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: okio.Timeout timeout() +androidx.work.impl.utils.futures.AbstractFuture$Waiter: java.lang.Thread thread +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Hint +com.google.android.material.R$styleable: int ConstraintSet_android_pivotX +okio.GzipSink: void close() +com.google.android.material.navigation.NavigationView: void setItemIconTintList(android.content.res.ColorStateList) +androidx.drawerlayout.R$attr: int fontWeight +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_NavigationView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling Ceiling +androidx.recyclerview.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity: WeekWidgetConfigActivity() +androidx.constraintlayout.widget.R$id: int end +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int prefetch +androidx.preference.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog_Alert +cyanogenmod.hardware.IThermalListenerCallback$Stub: android.os.IBinder asBinder() +io.reactivex.Observable: io.reactivex.Observable concatMapEagerDelayError(io.reactivex.functions.Function,int,int,boolean) +androidx.preference.R$dimen: int abc_text_size_body_1_material +retrofit2.ParameterHandler$QueryName: ParameterHandler$QueryName(retrofit2.Converter,boolean) +android.didikee.donate.R$style +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_dialog_btn_min_width +com.jaredrummler.android.colorpicker.R$drawable: int abc_spinner_textfield_background_material +wangdaye.com.geometricweather.R$string: int content_des_sunset +com.google.android.material.bottomnavigation.BottomNavigationItemView: int getItemPosition() +com.google.android.material.R$color: int mtrl_scrim_color +com.google.android.material.R$style: int Platform_AppCompat +androidx.appcompat.R$color: int abc_search_url_text_selected +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_titleTextStyle +com.google.android.material.R$styleable: int Chip_rippleColor +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_overflow_padding_end_material +okio.ByteString: boolean endsWith(byte[]) +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCopyDrawable +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void innerError(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver,java.lang.Throwable) +okhttp3.internal.http2.Header: Header(okio.ByteString,okio.ByteString) +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast$Builder setLow(double) +wangdaye.com.geometricweather.R$drawable: int clock_hour_dark +org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Iterable,boolean) +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_text +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getIconResStart() +wangdaye.com.geometricweather.R$styleable: int[] FlowLayout +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display1 +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_showText +okhttp3.internal.platform.AndroidPlatform: int getSdkInt() +io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.ObservableSource) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: long serialVersionUID +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean isDisposed() +com.google.android.material.tabs.TabLayout: void removeOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void innerError(io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver,java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_listItemLayout +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_elevation +androidx.constraintlayout.widget.R$attr: int round +retrofit2.HttpServiceMethod: retrofit2.CallAdapter createCallAdapter(retrofit2.Retrofit,java.lang.reflect.Method,java.lang.reflect.Type,java.lang.annotation.Annotation[]) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: MfForecastResult$ProbabilityForecast$ProbabilityRain() +com.google.android.material.R$styleable: int Constraint_android_translationX +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe() +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_keyline +com.google.android.material.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded +com.google.android.material.R$styleable: int KeyCycle_android_alpha +android.didikee.donate.R$style: int Base_Widget_AppCompat_Spinner_Underlined +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityStarted(android.app.Activity) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: void setWeathercn(java.lang.String) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitationProbability +com.google.android.material.R$style +androidx.appcompat.view.menu.CascadingMenuPopup +androidx.constraintlayout.widget.R$styleable: int ActionMenuItemView_android_minWidth +okhttp3.RealCall: java.lang.Object clone() com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_statusBarBackground -wangdaye.com.geometricweather.R$id: int widget_remote_card -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Tooltip -androidx.vectordrawable.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.R$attr: int expandedTitleMarginEnd -androidx.preference.R$styleable: int FontFamily_fontProviderFetchStrategy -com.google.android.material.R$styleable: int TextInputLayout_prefixText -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayDetailsProvider -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getVisibility() -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_16dp -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.disposables.Disposable upstream -com.google.gson.LongSerializationPolicy$2: com.google.gson.JsonElement serialize(java.lang.Long) -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display1 -io.reactivex.internal.subscribers.StrictSubscriber: StrictSubscriber(org.reactivestreams.Subscriber) -io.reactivex.internal.disposables.ArrayCompositeDisposable -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Title -io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) -wangdaye.com.geometricweather.R$attr: int hideMotionSpec -com.bumptech.glide.integration.okhttp.R$attr -androidx.preference.R$bool: R$bool() -com.google.android.material.R$dimen: int abc_disabled_alpha_material_light -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_colorShape -com.bumptech.glide.integration.okhttp.R$layout: int notification_action -okhttp3.internal.http2.Http2Stream$FramingSource: long maxByteCount -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks asInterface(android.os.IBinder) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature -androidx.preference.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderPackage -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -okhttp3.OkHttpClient$Builder: okhttp3.internal.cache.InternalCache internalCache -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type NONE -wangdaye.com.geometricweather.R$layout: int abc_screen_toolbar -androidx.hilt.R$id: int accessibility_custom_action_24 -android.didikee.donate.R$drawable: int abc_ic_star_half_black_48dp -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_black -wangdaye.com.geometricweather.background.receiver.MainReceiver: MainReceiver() -com.google.android.material.transformation.ExpandableTransformationBehavior: ExpandableTransformationBehavior(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$integer: int design_tab_indicator_anim_duration_ms -androidx.core.widget.NestedScrollView: int getNestedScrollAxes() -okio.Buffer: okio.Buffer writeShortLe(int) -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -com.xw.repo.bubbleseekbar.R$style: int Base_V26_Theme_AppCompat_Light -okhttp3.internal.ws.RealWebSocket$CancelRunnable: RealWebSocket$CancelRunnable(okhttp3.internal.ws.RealWebSocket) -wangdaye.com.geometricweather.R$drawable: int notif_temp_129 -okhttp3.internal.cache.DiskLruCache$Entry: void writeLengths(okio.BufferedSink) -io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.CompletableSource) -androidx.appcompat.view.menu.ListMenuItemView -retrofit2.ParameterHandler$Path: java.lang.String name -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void setInteractivity(boolean) -okio.BufferedSource: java.lang.String readString(long,java.nio.charset.Charset) -androidx.hilt.R$styleable: int GradientColor_android_centerY -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder hostnameVerifier(javax.net.ssl.HostnameVerifier) -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -androidx.appcompat.view.menu.ActionMenuItemView: void setTitle(java.lang.CharSequence) -androidx.vectordrawable.R$id: int accessibility_custom_action_15 -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMargins -cyanogenmod.providers.CMSettings$System: java.lang.String NAVBAR_LEFT_IN_LANDSCAPE -wangdaye.com.geometricweather.R$drawable: int weather_rain_2 -com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.content.res.ColorStateList getIconTintList() -okhttp3.internal.connection.RealConnection: boolean isEligible(okhttp3.Address,okhttp3.Route) -androidx.lifecycle.FullLifecycleObserver -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean tryEmitScalar(java.util.concurrent.Callable) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_82 -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void disposeInner() -com.jaredrummler.android.colorpicker.R$attr: int dropDownListViewStyle -com.xw.repo.bubbleseekbar.R$layout: int abc_action_bar_up_container -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherText(java.lang.String) -com.xw.repo.bubbleseekbar.R$drawable: int abc_spinner_textfield_background_material -james.adaptiveicon.R$attr: int actionButtonStyle -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -okio.BufferedSource: java.lang.String readUtf8() -retrofit2.BuiltInConverters: BuiltInConverters() -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification -androidx.appcompat.widget.AppCompatEditText -androidx.core.R$layout: int notification_template_part_time -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.appcompat.R$attr: int subMenuArrow -com.google.android.material.slider.BaseSlider: void setTickTintList(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$string: int appbar_scrolling_view_behavior -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_gravity -com.google.android.material.R$styleable: int MaterialButton_strokeColor -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitation() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button -androidx.appcompat.widget.SearchView: void setMaxWidth(int) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setWeather(java.lang.String) -androidx.cardview.widget.CardView: CardView(android.content.Context) -james.adaptiveicon.R$dimen: int highlight_alpha_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_backgroundTint -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason SWITCH_TO_SOURCE_SERVICE -james.adaptiveicon.R$styleable: int AppCompatTextView_android_textAppearance -com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: java.lang.String textConsequence -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.activity.R$dimen: int notification_right_icon_size -com.xw.repo.bubbleseekbar.R$attr: int bsb_show_section_text -com.bumptech.glide.R$string -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_MOBILEDATA -com.turingtechnologies.materialscrollbar.R$attr: int defaultQueryHint -androidx.core.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_129 -com.google.android.material.appbar.AppBarLayout: void setElevation(float) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver[] observers -com.turingtechnologies.materialscrollbar.R$attr: int contentDescription +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder writeTimeout(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$string: int dew_point +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: void setType(java.lang.String) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String uvDescription +com.google.android.material.slider.Slider: void setThumbRadiusResource(int) +androidx.transition.R$id: int ghost_view_holder +com.google.android.material.R$styleable: int OnSwipe_limitBoundsTo +wangdaye.com.geometricweather.R$style: int widget_progress +androidx.preference.R$id: int scrollIndicatorDown +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_y_offset_touch +com.turingtechnologies.materialscrollbar.R$attr: int paddingTopNoTitle +androidx.appcompat.R$id: int accessibility_custom_action_18 +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_16 +androidx.dynamicanimation.R$styleable: int FontFamilyFont_ttcIndex +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type UNRESTRICTED +okhttp3.Protocol: okhttp3.Protocol[] values() +wangdaye.com.geometricweather.R$dimen: int design_navigation_icon_size +androidx.constraintlayout.widget.R$attr: int initialActivityCount +com.turingtechnologies.materialscrollbar.R$attr: int iconSize +com.google.android.gms.location.LocationAvailability: android.os.Parcelable$Creator CREATOR +androidx.dynamicanimation.R$styleable: int[] GradientColorItem +com.xw.repo.bubbleseekbar.R$color: int ripple_material_dark +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginBottom +com.google.android.material.R$styleable: int[] ForegroundLinearLayout +com.google.android.material.R$attr: int overlay +james.adaptiveicon.R$drawable: int abc_seekbar_thumb_material +com.google.android.material.R$color: int mtrl_filled_stroke_color +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: retrofit2.Callback val$callback +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_dither +android.didikee.donate.R$styleable: int[] SearchView +okhttp3.internal.io.FileSystem: long size(java.io.File) +android.didikee.donate.R$attr: int actionBarTheme +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_headline_material +androidx.work.R$dimen: int notification_content_margin_start +io.reactivex.Observable: io.reactivex.Observable window(long,long,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: int status +com.google.android.material.R$styleable: int Constraint_flow_wrapMode +androidx.viewpager.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$id: int recyclerView +com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_Dialog +androidx.preference.R$drawable: int abc_btn_colored_material +androidx.preference.R$styleable: int[] PopupWindow +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level NONE +okhttp3.internal.Util: int decodeHexDigit(char) +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColorLink +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit MB +james.adaptiveicon.R$style: int Base_Animation_AppCompat_Dialog +androidx.loader.R$layout: int notification_template_custom_big +io.reactivex.Observable: io.reactivex.Observable startWith(java.lang.Iterable) +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties +androidx.appcompat.R$layout: int abc_list_menu_item_checkbox +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircleAngle +wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity: HourlyTrendWidgetConfigActivity() +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu +wangdaye.com.geometricweather.db.entities.LocationEntity: LocationEntity(java.lang.String,java.lang.String,float,float,java.util.TimeZone,java.lang.String,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource,boolean,boolean,boolean) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State CREATED +cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder access$200(cyanogenmod.externalviews.KeyguardExternalView) +androidx.appcompat.R$interpolator: int fast_out_slow_in +com.google.android.material.R$attr: int panelBackground +com.autonavi.aps.amapapi.model.AMapLocationServer: org.json.JSONObject f() +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showAlphaSlider +org.greenrobot.greendao.database.DatabaseOpenHelper: void onCreate(android.database.sqlite.SQLiteDatabase) +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.http.HttpCodec httpStream() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.util.Date Set +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.R$id: int widget_day_subtitle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: int UnitType +android.support.v4.graphics.drawable.IconCompatParcelizer +io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean delayError +androidx.work.R$drawable: int notification_template_icon_low_bg +androidx.preference.R$attr: int logo +wangdaye.com.geometricweather.R$string: int appbar_scrolling_view_behavior +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalBias +wangdaye.com.geometricweather.R$styleable: int MenuView_preserveIconSpacing +android.didikee.donate.R$style: int Base_Widget_AppCompat_ProgressBar +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Button +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeStepGranularity +okhttp3.internal.connection.RouteSelector: okhttp3.internal.connection.RouteSelector$Selection next() +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon +com.google.android.material.internal.StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException +io.reactivex.internal.observers.LambdaObserver: boolean isDisposed() +james.adaptiveicon.R$anim: R$anim() +androidx.hilt.R$id: int notification_main_column +james.adaptiveicon.R$drawable: int abc_text_cursor_material +androidx.viewpager2.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.navigation.NavigationView: void setItemIconSize(int) +androidx.appcompat.widget.AppCompatImageView: void setSupportBackgroundTintList(android.content.res.ColorStateList) +okhttp3.internal.http.StatusLine: java.lang.String toString() +retrofit2.ParameterHandler$Part: void apply(retrofit2.RequestBuilder,java.lang.Object) +cyanogenmod.themes.IThemeProcessingListener$Stub: int TRANSACTION_onFinishedProcessing_0 +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_actionTextColorAlpha +wangdaye.com.geometricweather.db.entities.AlertEntity: AlertEntity(java.lang.Long,java.lang.String,java.lang.String,long,java.util.Date,long,java.lang.String,java.lang.String,java.lang.String,int,int) +androidx.viewpager.widget.ViewPager$SavedState +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection connection +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityPaused(android.app.Activity) +androidx.work.impl.background.systemalarm.ConstraintProxy: ConstraintProxy() +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: long updatedOn +cyanogenmod.power.IPerformanceManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.R$drawable: int ic_filter +com.google.android.material.R$styleable: int TextInputLayout_errorEnabled +androidx.appcompat.R$attr: int navigationContentDescription +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCountry() +androidx.hilt.work.R$id: int line3 +cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder(java.util.List) +retrofit2.Retrofit$Builder: Retrofit$Builder(retrofit2.Platform) +cyanogenmod.providers.CMSettings$System: java.lang.String PROXIMITY_ON_WAKE +com.google.android.material.R$styleable: int Chip_android_text +com.turingtechnologies.materialscrollbar.R$color: int cardview_shadow_start_color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours Past18Hours +androidx.preference.R$style: int Base_Widget_AppCompat_ActivityChooserView +androidx.appcompat.R$styleable: int AppCompatTheme_popupWindowStyle +wangdaye.com.geometricweather.R$dimen: int abc_dialog_min_width_minor +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfiles +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_16dp +androidx.appcompat.R$attr: int radioButtonStyle +okhttp3.internal.cache.InternalCache: void update(okhttp3.Response,okhttp3.Response) +cyanogenmod.externalviews.ExternalView: cyanogenmod.externalviews.ExternalViewProperties mExternalViewProperties +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_chainStyle +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property City +wangdaye.com.geometricweather.R$font: R$font() +okhttp3.internal.http2.Settings: int getInitialWindowSize() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_height_material +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_collapseIcon +james.adaptiveicon.AdaptiveIconView: void setPath(int) +wangdaye.com.geometricweather.db.entities.LocationEntity: float latitude +androidx.preference.R$styleable: int RecycleListView_paddingTopNoTitle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSrc() +android.didikee.donate.R$dimen: int highlight_alpha_material_light +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.DailyEntity) +okhttp3.internal.http2.Settings: okhttp3.internal.http2.Settings set(int,int) +okhttp3.WebSocket +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: double Value +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindDirection +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List dailyForecasts +com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding[] values() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.BiFunction resultSelector +wangdaye.com.geometricweather.R$id: int action_bar +io.reactivex.Observable: io.reactivex.Observable switchMap(io.reactivex.functions.Function) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean cancelled +wangdaye.com.geometricweather.db.entities.MinutelyEntity: boolean daylight +androidx.preference.R$drawable: int abc_ratingbar_material +cyanogenmod.app.CustomTile: boolean collapsePanel +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String DESKCLOCK_PACKAGE +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitation +com.google.gson.stream.JsonReader: int PEEKED_NULL +cyanogenmod.app.ICMTelephonyManager$Stub: android.os.IBinder asBinder() +okio.AsyncTimeout: void timedOut() +androidx.viewpager2.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$dimen: int preference_seekbar_value_minWidth +wangdaye.com.geometricweather.R$attr: int checkedIcon +androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionListener(androidx.constraintlayout.motion.widget.MotionLayout$TransitionListener) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth +androidx.swiperefreshlayout.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: PrecipitationProbability(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Colored +cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_TARGETS +com.amap.api.fence.DistrictItem: void setAdcode(java.lang.String) +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void error(java.lang.Throwable) +okio.Buffer: Buffer() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: int UnitType +androidx.appcompat.R$attr: int dialogCornerRadius +com.bumptech.glide.Priority: com.bumptech.glide.Priority NORMAL +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric Metric +androidx.preference.R$styleable: int LinearLayoutCompat_dividerPadding +androidx.appcompat.R$dimen: int abc_action_bar_default_padding_start_material +com.google.android.material.R$dimen: int abc_button_padding_horizontal_material +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceBody2 +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial Imperial +androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +okio.BufferedSource: okio.ByteString readByteString(long) +androidx.preference.R$color: int material_deep_teal_200 com.google.android.material.textfield.TextInputLayout: int getErrorTextCurrentColor() -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry geometry -com.xw.repo.bubbleseekbar.R$color: int abc_hint_foreground_material_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_84 -com.google.android.material.R$attr: int closeIconSize -okio.Okio: okio.Sink blackhole() -com.google.android.material.R$styleable: int MenuGroup_android_id -com.google.android.material.textfield.TextInputEditText: com.google.android.material.textfield.TextInputLayout getTextInputLayout() -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_error -cyanogenmod.weather.WeatherLocation: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogCornerRadius -okio.Buffer: java.lang.String readUtf8LineStrict(long) -com.xw.repo.bubbleseekbar.R$id: int title_template -com.google.android.material.R$styleable: int DrawerArrowToggle_thickness -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_hovered_z -wangdaye.com.geometricweather.R$color: int design_fab_shadow_start_color -io.reactivex.internal.subscriptions.SubscriptionHelper: void request(long) -androidx.fragment.R$styleable: int Fragment_android_name -androidx.hilt.work.R$string -androidx.loader.R$dimen: int notification_subtext_size -androidx.vectordrawable.R$styleable: int FontFamilyFont_ttcIndex -com.google.android.material.R$attr: int customDimension -androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchAnchorSide -james.adaptiveicon.R$dimen: int abc_action_bar_content_inset_material -wangdaye.com.geometricweather.R$style: int Widget_Design_Snackbar -com.google.android.material.R$styleable: int SwitchCompat_trackTint -wangdaye.com.geometricweather.R$animator: int weather_cloudy_2 -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.R$drawable: int abc_btn_check_material_anim -okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_2 -wangdaye.com.geometricweather.R$string: int key_clock_font -com.google.android.material.R$attr: int ratingBarStyle -androidx.versionedparcelable.ParcelImpl -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getStreet() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String street -wangdaye.com.geometricweather.R$id: int checkbox -androidx.appcompat.R$attr: int progressBarStyle -androidx.viewpager.R$id: int text -retrofit2.OptionalConverterFactory$OptionalConverter: OptionalConverterFactory$OptionalConverter(retrofit2.Converter) -james.adaptiveicon.R$attr: int textAppearanceSearchResultTitle -com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_square_large -io.reactivex.internal.util.NotificationLite: java.lang.Object error(java.lang.Throwable) -androidx.preference.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: void setParent(io.reactivex.internal.operators.observable.ObservablePublish$PublishObserver) -james.adaptiveicon.R$id: int progress_horizontal -com.jaredrummler.android.colorpicker.ColorPickerView: void setSliderTrackerColor(int) -androidx.preference.R$style: int Base_V7_Theme_AppCompat -androidx.preference.R$dimen: int abc_dialog_fixed_width_major -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_bottomBar -wangdaye.com.geometricweather.R$dimen: int material_icon_size -com.xw.repo.bubbleseekbar.R$attr: int bsb_show_section_mark -cyanogenmod.providers.CMSettings$Secure: android.net.Uri CONTENT_URI -androidx.coordinatorlayout.R$drawable: int notification_bg_low_normal -io.reactivex.internal.util.NotificationLite: java.lang.Throwable getError(java.lang.Object) -androidx.fragment.R$id: int fragment_container_view_tag -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_9 -androidx.appcompat.R$styleable: int LinearLayoutCompat_measureWithLargestChild -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -androidx.constraintlayout.widget.R$color: int material_grey_800 -com.jaredrummler.android.colorpicker.R$attr: int tickMarkTint -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitation -androidx.appcompat.resources.R$id: int accessibility_custom_action_11 -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setTempMax(java.lang.String) -androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: java.lang.String Unit -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: int unitArrayIndex -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String brandId -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonPhaseDescription -retrofit2.ParameterHandler -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void dispose() -com.google.android.material.R$attr: int checkedChip -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_CompactMenu -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedReadableDb(java.lang.String) -com.google.android.material.R$drawable: int abc_text_cursor_material -android.didikee.donate.R$id: int action_mode_bar_stub -androidx.viewpager2.R$id: int text2 -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onError(java.lang.Throwable) -androidx.lifecycle.ProcessLifecycleOwner: void init(android.content.Context) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean isEntityUpdateable() -james.adaptiveicon.R$styleable: int TextAppearance_android_textSize -com.google.android.material.R$style: int TestStyleWithLineHeight -androidx.constraintlayout.utils.widget.ImageFilterButton: void setRoundPercent(float) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display3 -androidx.appcompat.R$attr: int fontWeight -androidx.core.R$style: int Widget_Compat_NotificationActionText -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean disposed -com.xw.repo.bubbleseekbar.R$attr: int contentInsetRight -androidx.activity.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$animator: int weather_fog_3 -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_buttonIconDimen -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: int UnitType -androidx.loader.R$id -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode DEFAULT -wangdaye.com.geometricweather.R$string: int feedback_live_wallpaper_weather_kind -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_background_transition_holo_light -wangdaye.com.geometricweather.settings.activities.CardDisplayManageActivity -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_26 -retrofit2.ParameterHandler$Body: ParameterHandler$Body(java.lang.reflect.Method,int,retrofit2.Converter) -androidx.constraintlayout.widget.R$attr: int percentHeight -com.google.android.material.R$dimen: int abc_text_size_medium_material -com.google.android.material.R$drawable: int abc_btn_default_mtrl_shape -cyanogenmod.app.ICMStatusBarManager: void createCustomTileWithTag(java.lang.String,java.lang.String,java.lang.String,int,cyanogenmod.app.CustomTile,int[],int) -wangdaye.com.geometricweather.R$attr: int customStringValue -com.google.android.material.R$styleable: int KeyTimeCycle_waveShape -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_radius -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatPressedTranslationZResource(int) -androidx.lifecycle.ProcessLifecycleOwner$1 -okhttp3.internal.http1.Http1Codec$ChunkedSink: void write(okio.Buffer,long) -io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit) -cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,android.content.ComponentName) -com.xw.repo.bubbleseekbar.R$color: int abc_tint_btn_checkable -androidx.appcompat.widget.SearchView$SavedState -io.reactivex.internal.observers.DeferredScalarDisposable: void clear() -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_NoActionBar -james.adaptiveicon.R$styleable: int ActionBar_contentInsetStartWithNavigation -com.baidu.location.indoor.mapversion.c.c$b: double e -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder addNetworkInterceptor(okhttp3.Interceptor) -androidx.lifecycle.extensions.R$id: int notification_main_column_container -com.turingtechnologies.materialscrollbar.R$color: int secondary_text_disabled_material_light -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_left -cyanogenmod.weather.WeatherLocation$Builder: WeatherLocation$Builder(java.lang.String,java.lang.String) -androidx.preference.R$attr: int titleMargins -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: java.lang.String date -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior -androidx.viewpager2.widget.ViewPager2$SavedState: android.os.Parcelable$Creator CREATOR -androidx.lifecycle.LifecycleDispatcher: java.util.concurrent.atomic.AtomicBoolean sInitialized -androidx.constraintlayout.widget.ConstraintLayout: void setMaxHeight(int) -com.amap.api.location.AMapLocationClientOption: float v -com.google.android.material.R$styleable: int Constraint_flow_maxElementsWrap -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterOverflowTextColor -com.turingtechnologies.materialscrollbar.R$layout: int abc_search_dropdown_item_icons_2line -james.adaptiveicon.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -androidx.viewpager2.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$attr: int popupMenuBackground -com.google.android.material.R$styleable: int Insets_paddingRightSystemWindowInsets -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.R$layout: int activity_preview_icon -androidx.constraintlayout.motion.widget.MotionLayout: android.os.Bundle getTransitionState() -okhttp3.OkHttpClient$Builder: okhttp3.Dns dns -wangdaye.com.geometricweather.R$id: int tabMode -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_Solid -okhttp3.internal.http2.Hpack$Writer: boolean emitDynamicTableSizeUpdate -androidx.preference.R$attr: int paddingEnd -androidx.legacy.coreutils.R$styleable: int GradientColor_android_type -com.baidu.location.indoor.c: int a -com.google.android.material.R$styleable: int[] MotionTelltales -wangdaye.com.geometricweather.common.basic.GeoActivity: GeoActivity() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_switch_padding -com.google.android.material.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier -com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog -com.bumptech.glide.R$attr: int fontWeight -wangdaye.com.geometricweather.R$id: int SHIFT -androidx.constraintlayout.widget.R$attr: int telltales_tailScale -com.google.android.material.R$attr: int touchAnchorId -wangdaye.com.geometricweather.R$color: int abc_btn_colored_text_material -androidx.viewpager.R$id: int tag_unhandled_key_event_manager -okio.AsyncTimeout: void enter() -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_WIFI_INFO -androidx.viewpager2.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String name -okhttp3.internal.NamedRunnable -androidx.lifecycle.Transformations$1: Transformations$1(androidx.lifecycle.MediatorLiveData,androidx.arch.core.util.Function) -com.jaredrummler.android.colorpicker.R$attr: int fragment -androidx.recyclerview.R$drawable: int notification_icon_background -androidx.legacy.coreutils.R$string: R$string() -com.turingtechnologies.materialscrollbar.R$attr: int hintTextAppearance -cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper access$100(cyanogenmod.app.CustomTileListenerService) -okio.RealBufferedSink: okio.BufferedSink writeShort(int) -com.google.android.material.R$attr: int actionModeCutDrawable -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_BottomRightCut -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintStart_toEndOf -cyanogenmod.content.Intent: java.lang.String ACTION_APP_FAILURE -okhttp3.Protocol -android.didikee.donate.R$style: int Widget_AppCompat_PopupWindow -android.didikee.donate.R$styleable: int ActionBar_elevation -android.didikee.donate.R$color: int button_material_light -android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_summaryOff -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float thunderstormPrecipitation -com.turingtechnologies.materialscrollbar.R$id: int right -wangdaye.com.geometricweather.R$id: int scrollBar -com.google.android.material.R$attr: int searchHintIcon +james.adaptiveicon.R$integer: int abc_config_activityDefaultDur +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +cyanogenmod.app.suggest.IAppSuggestManager$Stub: java.lang.String DESCRIPTOR +androidx.constraintlayout.widget.R$attr: int tickMarkTint +androidx.drawerlayout.R$id: int blocking +okhttp3.Handshake: okhttp3.Handshake get(okhttp3.TlsVersion,okhttp3.CipherSuite,java.util.List,java.util.List) +android.didikee.donate.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +cyanogenmod.weather.WeatherInfo: void writeToParcel(android.os.Parcel,int) +cyanogenmod.os.Concierge$ParcelInfo: Concierge$ParcelInfo(android.os.Parcel,int) +androidx.recyclerview.R$id: int time +com.google.android.material.R$styleable: int ActionBar_height +okhttp3.internal.ws.RealWebSocket$Streams: RealWebSocket$Streams(boolean,okio.BufferedSource,okio.BufferedSink) +android.didikee.donate.R$style: int Platform_V21_AppCompat +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_TextView_SpinnerItem +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark_normal_background +com.amap.api.location.APSService: com.amap.api.location.APSServiceBase a +androidx.appcompat.R$styleable: R$styleable() +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setChecked(boolean) +androidx.appcompat.R$attr: int colorButtonNormal +james.adaptiveicon.R$style: int Widget_AppCompat_SearchView_ActionBar +com.turingtechnologies.materialscrollbar.R$attr: int bottomNavigationStyle +com.jaredrummler.android.colorpicker.R$id: int tag_unhandled_key_listeners +com.google.android.material.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +androidx.hilt.work.R$styleable: R$styleable() +com.turingtechnologies.materialscrollbar.R$dimen: int notification_large_icon_height +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_background_transition_holo_dark +retrofit2.http.POST +androidx.appcompat.view.menu.ExpandedMenuView +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_title +wangdaye.com.geometricweather.R$styleable: int[] FitSystemBarRecyclerView +cyanogenmod.providers.CMSettings$System: java.lang.String LIVE_DISPLAY_HINTED +androidx.hilt.work.R$style: R$style() +androidx.work.R$dimen: int notification_large_icon_width +com.turingtechnologies.materialscrollbar.R$id: int outline +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_lineHeight +com.google.android.material.R$string: int abc_menu_alt_shortcut_label +com.turingtechnologies.materialscrollbar.R$attr: int title +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Title +james.adaptiveicon.R$style: int Base_V22_Theme_AppCompat +androidx.appcompat.R$interpolator +android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_CheckBox +com.google.android.material.R$attr: int animate_relativeTo +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollVerticalTrackDrawable +androidx.lifecycle.LiveData$LifecycleBoundObserver: void detachObserver() +androidx.constraintlayout.widget.R$attr: int spinBars +androidx.preference.SwitchPreferenceCompat +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintEnd_toEndOf +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer apparentTemperature +androidx.preference.R$styleable: int GradientColor_android_startY +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_checkedTextViewStyle +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWetBulbTemperature +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer rainProductAvailable +androidx.lifecycle.extensions.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$id: int clip_horizontal +com.google.android.material.R$attr: int checkboxStyle +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isResult +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_LED_OFF +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTintMode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: double Value +james.adaptiveicon.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String zh_TW +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_alpha +com.google.android.material.R$integer: int cancel_button_image_alpha +androidx.constraintlayout.widget.R$attr: int telltales_velocityMode +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_activated_mtrl_alpha +androidx.appcompat.widget.AppCompatImageButton: android.content.res.ColorStateList getSupportBackgroundTintList() +retrofit2.OkHttpCall +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView_DropDown +com.google.android.material.R$attr: int splitTrack +cyanogenmod.weather.WeatherLocation: java.lang.String access$102(cyanogenmod.weather.WeatherLocation,java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX wind +com.google.android.material.R$attr: int cornerFamilyTopLeft +com.google.android.material.R$attr: int contentInsetEndWithActions +com.google.android.gms.common.api.UnsupportedApiCallException: com.google.android.gms.common.Feature zza +cyanogenmod.profiles.RingModeSettings: java.lang.String mValue +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit[] values() +james.adaptiveicon.R$id: int search_bar +androidx.fragment.R$styleable: int GradientColor_android_endX +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabView +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetRight +com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.Throwable) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_21 +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: androidx.lifecycle.LifecycleOwner mLifecycle +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_scaleY +wangdaye.com.geometricweather.R$string: int yesterday +okhttp3.CertificatePinner$Builder +androidx.appcompat.R$id: int icon +androidx.preference.R$dimen +com.jaredrummler.android.colorpicker.R$dimen: int hint_alpha_material_light +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException: DefaultImageHeaderParser$Reader$EndOfFileException() +okhttp3.internal.http.RealResponseBody: long contentLength +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Priority +wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWeekWidgetConfigActivity: Hilt_DayWeekWidgetConfigActivity() +androidx.drawerlayout.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.R$color: int bright_foreground_disabled_material_dark +com.google.android.material.R$attr: int startIconTint +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Header$Listener headersListener +james.adaptiveicon.R$color: int abc_tint_default +com.github.rahatarmanahmed.cpv.CircularProgressView: int getThickness() +okhttp3.Cache: void close() +com.github.rahatarmanahmed.cpv.CircularProgressView: float getProgress() +cyanogenmod.weather.WeatherLocation: java.lang.String getCountry() +androidx.viewpager.R$id: int text2 +androidx.fragment.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$styleable: int MaterialTextView_android_lineHeight +okhttp3.OkHttpClient: int pingIntervalMillis() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar_Small +com.turingtechnologies.materialscrollbar.R$id: int checkbox +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_elevation +androidx.preference.R$styleable: int AppCompatTheme_actionBarStyle +retrofit2.Response: java.lang.Object body +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX +james.adaptiveicon.R$styleable: int MenuView_android_headerBackground +wangdaye.com.geometricweather.R$color: int abc_primary_text_disable_only_material_light +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +androidx.preference.R$drawable: int btn_checkbox_unchecked_mtrl +androidx.appcompat.widget.ActionBarOverlayLayout: void setLogo(int) +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState[] values() +android.didikee.donate.R$style: int Widget_AppCompat_RatingBar_Small +androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy REPLACE +com.google.android.material.R$string: int mtrl_picker_invalid_format +com.turingtechnologies.materialscrollbar.R$attr: int colorBackgroundFloating +cyanogenmod.hardware.ICMHardwareService: boolean setVibratorIntensity(int) +com.baidu.location.e.h$a: com.baidu.location.e.h$a valueOf(java.lang.String) +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long count +wangdaye.com.geometricweather.R$drawable: int notif_temp_46 +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onComplete() +com.github.rahatarmanahmed.cpv.CircularProgressView: void startAnimation() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List diaoyu +androidx.hilt.lifecycle.R$anim: int fragment_open_enter +retrofit2.RequestFactory$Builder: java.util.regex.Pattern PARAM_NAME_REGEX +androidx.core.app.RemoteActionCompatParcelizer: void write(androidx.core.app.RemoteActionCompat,androidx.versionedparcelable.VersionedParcel) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +wangdaye.com.geometricweather.R$styleable: int PropertySet_motionProgress +james.adaptiveicon.R$styleable: int MenuView_subMenuArrow +retrofit2.Utils$ParameterizedTypeImpl: Utils$ParameterizedTypeImpl(java.lang.reflect.Type,java.lang.reflect.Type,java.lang.reflect.Type[]) +androidx.lifecycle.Transformations$2$1: Transformations$2$1(androidx.lifecycle.Transformations$2) +okhttp3.internal.cache2.Relay: okio.ByteString metadata +james.adaptiveicon.R$styleable: int ActionBar_titleTextStyle +com.turingtechnologies.materialscrollbar.R$attr: int alertDialogTheme +wangdaye.com.geometricweather.R$string: int air_quality +androidx.fragment.R$dimen: int notification_large_icon_width +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +com.turingtechnologies.materialscrollbar.R$attr: int panelMenuListWidth +androidx.fragment.R$id: int tag_accessibility_pane_title +wangdaye.com.geometricweather.db.entities.AlertEntity: void setColor(int) +retrofit2.BuiltInConverters: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +okhttp3.Request$Builder: okhttp3.Request$Builder url(java.net.URL) +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object[] toArray() +androidx.lifecycle.LifecycleRegistry: void markState(androidx.lifecycle.Lifecycle$State) +com.google.android.material.R$interpolator: int fast_out_slow_in +okhttp3.internal.http.CallServerInterceptor$CountingSink: void write(okio.Buffer,long) +okhttp3.internal.Util: okio.ByteString UTF_32_LE_BOM +wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_hovered_alpha +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +com.google.android.material.R$attr: int progressIndicatorStyle +androidx.constraintlayout.widget.R$style: int Base_V26_Widget_AppCompat_Toolbar +com.baidu.location.indoor.mapversion.c.c$b: double c +androidx.constraintlayout.widget.R$styleable: int MenuItem_iconTint +com.google.android.material.slider.BaseSlider: void setTrackHeight(int) +com.bumptech.glide.R$id: int blocking +james.adaptiveicon.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_container +com.google.android.material.R$styleable: int TextAppearance_textAllCaps +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setSunSet(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: int getStatus() +com.google.android.material.chip.Chip: void setChipIconResource(int) +androidx.appcompat.widget.AppCompatTextView: void setLastBaselineToBottomHeight(int) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_deriveConstraintsFrom +com.google.android.material.R$color: int mtrl_textinput_hovered_box_stroke_color +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleDrawable(int) +okio.HashingSink: javax.crypto.Mac mac +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig minutelyEntityDaoConfig +com.google.android.material.R$styleable: int Layout_android_orientation +com.google.android.material.R$styleable: int MaterialTextView_android_lineHeight +cyanogenmod.weather.ICMWeatherManager: void updateWeather(cyanogenmod.weather.RequestInfo) +cyanogenmod.power.IPerformanceManager: void cpuBoost(int) +com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace DISPLAY_P3 +io.reactivex.disposables.RunnableDisposable: void onDisposed(java.lang.Runnable) +wangdaye.com.geometricweather.R$drawable: int tooltip_frame_dark +androidx.hilt.work.R$drawable: int notification_action_background +androidx.preference.Preference: void setOnPreferenceChangeInternalListener(androidx.preference.Preference$OnPreferenceChangeInternalListener) +android.didikee.donate.R$dimen: int abc_cascading_menus_min_smallest_width +androidx.preference.R$styleable: int FragmentContainerView_android_name +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_btn_state_list_anim +cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,cyanogenmod.app.CustomTile,android.os.UserHandle) +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_LOW +com.google.android.material.R$color: int abc_color_highlight_material +androidx.appcompat.widget.ViewStubCompat: int getLayoutResource() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.R$string: int next +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onError(java.lang.Throwable) +androidx.legacy.coreutils.R$color: int secondary_text_default_material_light +androidx.appcompat.widget.FitWindowsFrameLayout: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean() +androidx.vectordrawable.R$style: int Widget_Compat_NotificationActionText +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_titleTextStyle +androidx.appcompat.R$styleable: int[] TextAppearance +wangdaye.com.geometricweather.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6 +android.didikee.donate.R$attr: int windowFixedHeightMajor +wangdaye.com.geometricweather.R$styleable: int[] ButtonBarLayout +cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem(cyanogenmod.app.CustomTile$1) +com.google.android.material.R$styleable: int AppCompatTheme_colorControlNormal +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getCounterOverflowDescription() +androidx.hilt.lifecycle.R$id: int action_text +androidx.coordinatorlayout.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.HourlyEntity,long) +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: boolean isDisposed() +okhttp3.internal.connection.StreamAllocation: java.lang.String toString() +androidx.hilt.lifecycle.R$dimen: int notification_large_icon_height +okhttp3.internal.http2.Hpack$Reader: okio.BufferedSource source +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State ENQUEUED +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Body2 +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver) +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_item_min_width +james.adaptiveicon.R$styleable: int ActionBar_contentInsetStart +androidx.appcompat.widget.Toolbar: void setSubtitle(java.lang.CharSequence) +android.didikee.donate.R$style: int Base_Theme_AppCompat +com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemIconTintList() +wangdaye.com.geometricweather.R$drawable: int ic_sunrise +wangdaye.com.geometricweather.R$layout: int container_main_first_card_header +com.google.android.material.R$style: int Widget_MaterialComponents_TextView +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemTextAppearanceActive() +com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_900 +okhttp3.internal.http1.Http1Codec$ChunkedSink: Http1Codec$ChunkedSink(okhttp3.internal.http1.Http1Codec) +androidx.constraintlayout.widget.R$color: int material_grey_50 +com.google.android.material.slider.Slider: int getActiveThumbIndex() +cyanogenmod.externalviews.IExternalViewProvider: void onStop() +wangdaye.com.geometricweather.R$string: int feedback_select_location_provider +wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Light +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle +androidx.preference.R$style: int Base_V23_Theme_AppCompat +android.didikee.donate.R$attr: int paddingTopNoTitle +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory[] values() +androidx.preference.R$dimen: int abc_button_padding_vertical_material +wangdaye.com.geometricweather.R$attr: int actionOverflowMenuStyle +android.didikee.donate.R$attr: int switchPadding +androidx.preference.R$color: int abc_primary_text_disable_only_material_light +android.didikee.donate.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +com.bumptech.glide.R$id: int title +androidx.preference.R$drawable: int abc_btn_radio_to_on_mtrl_015 +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_line +androidx.preference.R$id: int submenuarrow +cyanogenmod.profiles.AirplaneModeSettings: int getValue() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum() +com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_overlapAnchor +androidx.constraintlayout.helper.widget.Layer: void setPivotX(float) +com.github.rahatarmanahmed.cpv.CircularProgressView$8: float val$maxSweep +wangdaye.com.geometricweather.common.basic.models.weather.Wind: boolean isValidSpeed() +com.google.android.gms.base.R$drawable: R$drawable() +okio.ByteString: okio.ByteString digest(java.lang.String) +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: void writeTo(okio.BufferedSink) +com.bumptech.glide.integration.okhttp.R$id: int async +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: int status +okhttp3.OkHttpClient: okhttp3.ConnectionPool connectionPool +wangdaye.com.geometricweather.R$attr: int perpendicularPath_percent +com.google.android.material.R$attr: int subMenuArrow +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setWeatherLocation(cyanogenmod.weather.WeatherLocation) +androidx.preference.Preference: Preference(android.content.Context) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: WeatherEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +androidx.preference.R$id: int dialog_button +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceFragment +wangdaye.com.geometricweather.R$attr: int min +com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_bottom +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRainPrecipitationProbability() +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getChipDrawable() +androidx.appcompat.R$id: int action_mode_bar_stub +com.turingtechnologies.materialscrollbar.R$integer +okhttp3.CacheControl: boolean noTransform +okhttp3.internal.http2.Settings: int getMaxConcurrentStreams(int) +cyanogenmod.externalviews.IExternalViewProvider: void onAttach(android.os.IBinder) +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_extendMotionSpec +com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen +wangdaye.com.geometricweather.settings.activities.SettingsActivity: SettingsActivity() +androidx.constraintlayout.widget.R$attr: int buttonBarNeutralButtonStyle +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService this$0 +androidx.hilt.R$dimen: int notification_big_circle_margin +androidx.legacy.coreutils.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: java.lang.String desc +androidx.constraintlayout.widget.R$color: int androidx_core_ripple_material_light +io.reactivex.internal.schedulers.RxThreadFactory: java.lang.String prefix +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalAlign +androidx.preference.R$drawable: int abc_list_selector_disabled_holo_dark +androidx.hilt.work.R$styleable: int FontFamilyFont_font +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.ErrorCode getErrorCode() +cyanogenmod.profiles.StreamSettings: boolean mOverride +android.didikee.donate.R$attr: int activityChooserViewStyle +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void setResource(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_radioButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents +com.google.android.material.R$styleable: int TextInputLayout_expandedHintEnabled +wangdaye.com.geometricweather.R$bool +okhttp3.OkHttpClient: okhttp3.EventListener$Factory eventListenerFactory +okio.DeflaterSink: DeflaterSink(okio.Sink,java.util.zip.Deflater) +androidx.activity.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.R$attr: int cpv_colorShape +okhttp3.internal.Internal: void initializeInstanceForTests() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: java.lang.String level +androidx.preference.R$styleable: int Preference_key +androidx.preference.R$styleable: int[] AnimatedStateListDrawableCompat +androidx.preference.EditTextPreference +wangdaye.com.geometricweather.R$attr: int materialCalendarStyle +james.adaptiveicon.R$style: int Base_AlertDialog_AppCompat +cyanogenmod.app.ProfileGroup$1: ProfileGroup$1() +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Info +com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents +androidx.viewpager2.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.R$attr: int actionBarStyle +androidx.lifecycle.SavedStateHandle: java.lang.String KEYS +com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_800 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +androidx.appcompat.R$style: int Theme_AppCompat +com.bumptech.glide.R$id: int top +retrofit2.KotlinExtensions$await$4$2: kotlinx.coroutines.CancellableContinuation $continuation +okhttp3.internal.http2.Http2Connection$Builder: Http2Connection$Builder(boolean) +okhttp3.internal.Util: okio.ByteString UTF_16_BE_BOM +androidx.constraintlayout.widget.R$attr: int dialogPreferredPadding +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +android.didikee.donate.R$attr: int goIcon +james.adaptiveicon.R$styleable: int AppCompatTheme_colorPrimary +com.jaredrummler.android.colorpicker.R$attr: int seekBarIncrement +androidx.appcompat.R$style: int Widget_AppCompat_ListMenuView +androidx.coordinatorlayout.R$attr: int statusBarBackground +io.reactivex.internal.util.AtomicThrowable: long serialVersionUID +com.github.rahatarmanahmed.cpv.CircularProgressView: float INDETERMINANT_MIN_SWEEP +cyanogenmod.profiles.LockSettings: int describeContents() +androidx.vectordrawable.R$id: int right_icon +com.google.android.material.R$id: int search_close_btn +androidx.preference.R$attr: int drawableEndCompat +com.google.android.material.R$styleable: int[] PopupWindowBackgroundState +cyanogenmod.profiles.BrightnessSettings: void processOverride(android.content.Context) +androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +com.google.android.gms.common.api.ApiException: com.google.android.gms.common.api.Status mStatus +com.google.android.material.appbar.CollapsingToolbarLayout: int getMaxLines() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onStop() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isIsShow() +cyanogenmod.externalviews.ExternalViewProviderService$Provider: int DEFAULT_WINDOW_TYPE +com.xw.repo.bubbleseekbar.R$styleable: int[] CoordinatorLayout +com.bumptech.glide.integration.okhttp3.OkHttpGlideModule: OkHttpGlideModule() +androidx.appcompat.R$style: int TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String zh_CN +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Large_Inverse +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onTimeout(long) +wangdaye.com.geometricweather.R$anim: int fragment_manange_pop_exit +retrofit2.RequestFactory$Builder: java.lang.annotation.Annotation[][] parameterAnnotationsArray +androidx.constraintlayout.motion.widget.MotionLayout: float getTargetPosition() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX() +com.amap.api.location.AMapLocationClient: void onDestroy() +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +retrofit2.ParameterHandler$Tag +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.Platform buildIfSupported() +wangdaye.com.geometricweather.R$animator: int weather_hail_1 +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String g +androidx.recyclerview.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.common.basic.models.weather.Daily: long time +androidx.appcompat.R$attr: int textColorAlertDialogListItem +com.jaredrummler.android.colorpicker.R$attr: int firstBaselineToTopHeight +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Colored +androidx.constraintlayout.motion.widget.MotionHelper: void setProgress(float) +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorType +wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_scrollView +com.google.android.material.R$dimen: int tooltip_precise_anchor_threshold +androidx.appcompat.resources.R$id: int accessibility_custom_action_5 +com.google.android.material.appbar.MaterialToolbar: void setNavigationIcon(android.graphics.drawable.Drawable) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeCloudCover +okhttp3.Cache$Entry: void writeTo(okhttp3.internal.cache.DiskLruCache$Editor) +android.didikee.donate.R$drawable: int abc_text_select_handle_left_mtrl_light +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_bias +okhttp3.internal.ws.RealWebSocket: long queueSize() +androidx.hilt.R$attr: int fontVariationSettings +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_min +com.jaredrummler.android.colorpicker.R$drawable: int cpv_preset_checked +com.turingtechnologies.materialscrollbar.R$style: int Platform_V25_AppCompat_Light +wangdaye.com.geometricweather.db.entities.DailyEntity +androidx.preference.R$styleable: int AppCompatTheme_popupWindowStyle +com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +com.google.android.gms.internal.location.zzbe +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitation(java.lang.Float) +com.xw.repo.bubbleseekbar.R$id: int custom +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Surface +androidx.viewpager2.R$styleable: int RecyclerView_android_descendantFocusability +james.adaptiveicon.R$attr: int radioButtonStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: MfForecastResult$Forecast$Temperature() +com.xw.repo.bubbleseekbar.R$styleable: int[] ListPopupWindow +com.google.android.material.R$drawable: int abc_tab_indicator_material +wangdaye.com.geometricweather.R$drawable: int shortcuts_sleet +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float windSpeed +android.didikee.donate.R$attr: int actionButtonStyle +com.google.android.material.R$style: int Widget_AppCompat_SeekBar_Discrete +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_viewInflaterClass +james.adaptiveicon.R$style: int Base_Widget_AppCompat_SearchView +retrofit2.KotlinExtensions$await$4$2: void onFailure(retrofit2.Call,java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int searchContainer +okhttp3.Request: okhttp3.HttpUrl url() +wangdaye.com.geometricweather.R$attr: int materialButtonToggleGroupStyle +androidx.appcompat.R$color: int primary_material_light +com.google.android.material.R$color: int design_default_color_primary_variant +androidx.lifecycle.FullLifecycleObserverAdapter: FullLifecycleObserverAdapter(androidx.lifecycle.FullLifecycleObserver,androidx.lifecycle.LifecycleEventObserver) +com.google.android.material.R$id: int wrap +okhttp3.internal.http1.Http1Codec$ChunkedSink: void flush() +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: MinutelyEntityDao(org.greenrobot.greendao.internal.DaoConfig) +okhttp3.CipherSuite: java.lang.String toString() +androidx.preference.R$color: int bright_foreground_inverse_material_light +wangdaye.com.geometricweather.R$dimen: int material_clock_number_text_size +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: boolean disposed +android.support.v4.os.IResultReceiver$Stub +androidx.appcompat.R$styleable: int AppCompatTheme_dividerHorizontal +androidx.customview.R$styleable: int FontFamilyFont_fontVariationSettings +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display4 +android.didikee.donate.R$styleable: int[] AppCompatTextHelper +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle +com.xw.repo.bubbleseekbar.R$layout: int abc_screen_simple_overlay_action_mode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_constraint_referenced_ids +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderCerts +androidx.appcompat.resources.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.R$drawable: int notif_temp_7 +com.google.android.material.R$styleable: int AppCompatTheme_colorPrimaryDark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setValue(java.util.List) +androidx.appcompat.R$styleable: int GradientColorItem_android_offset +androidx.appcompat.R$styleable: int SwitchCompat_android_textOff +androidx.constraintlayout.widget.R$dimen: int abc_progress_bar_height_material +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean done +james.adaptiveicon.R$attr: int gapBetweenBars +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +okhttp3.internal.cache.DiskLruCache: boolean $assertionsDisabled +com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_end_outer_color +androidx.lifecycle.ViewModelProvider$Factory +androidx.constraintlayout.widget.R$attr: int clickAction +com.turingtechnologies.materialscrollbar.R$attr: int navigationContentDescription +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long serialVersionUID +com.google.android.material.R$attr: int saturation +android.didikee.donate.R$styleable: int ActionBar_subtitleTextStyle +com.google.android.material.R$string: int path_password_eye_mask_visible +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory HIGH +com.google.android.material.slider.BaseSlider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) +okhttp3.internal.tls.CertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setUrl(java.lang.String) +androidx.constraintlayout.widget.R$id: int start +com.google.android.material.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +okhttp3.internal.http2.Http2Connection$4: java.util.List val$requestHeaders +androidx.work.R$style: int TextAppearance_Compat_Notification +androidx.constraintlayout.widget.R$id: int parentRelative +androidx.viewpager.R$color: int notification_icon_bg_color +com.turingtechnologies.materialscrollbar.R$attr: int chipEndPadding +androidx.preference.R$styleable: int RecyclerView_fastScrollEnabled +androidx.preference.R$id: int notification_background +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: int complete +androidx.appcompat.R$attr: int initialActivityCount +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_hide_bubble +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int checkedIconTint +com.xw.repo.bubbleseekbar.R$id: int icon +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +okhttp3.OkHttpClient$Builder: void setInternalCache(okhttp3.internal.cache.InternalCache) +androidx.appcompat.resources.R$dimen: int notification_right_icon_size +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Info +com.amap.api.location.AMapLocationQualityReport: int getGPSStatus() +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setApparentTemperature(java.lang.Integer) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: java.util.concurrent.atomic.AtomicInteger wip +wangdaye.com.geometricweather.R$styleable: int KeyCycle_motionTarget +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogIcon +com.google.android.material.R$dimen: int abc_edit_text_inset_top_material +androidx.hilt.work.R$bool: int enable_system_job_service_default +wangdaye.com.geometricweather.R$styleable: int Chip_android_maxWidth +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setDetail(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWeatherPhase +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_Solid +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceStyle +com.jaredrummler.android.colorpicker.R$attr: int entries +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperText +com.google.android.material.R$dimen: int mtrl_snackbar_message_margin_horizontal +cyanogenmod.app.ThemeVersion$ComponentVersion: java.lang.String getName() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +retrofit2.Converter$Factory: retrofit2.Converter stringConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderQuery +com.turingtechnologies.materialscrollbar.DragScrollBar: int getMode() +wangdaye.com.geometricweather.R$id: int custom +androidx.swiperefreshlayout.R$dimen: int notification_main_column_padding_top +com.google.android.material.R$layout: int material_clock_period_toggle +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_3 +androidx.vectordrawable.animated.R$dimen: int notification_small_icon_size_as_large +androidx.recyclerview.R$dimen: int compat_button_inset_horizontal_material +okhttp3.CacheControl: java.lang.String toString() +wangdaye.com.geometricweather.R$styleable: int MockView_mock_showLabel +okhttp3.Request$Builder: java.util.Map tags +androidx.lifecycle.ClassesInfoCache: java.lang.reflect.Method[] getDeclaredMethods(java.lang.Class) +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_textLocale +wangdaye.com.geometricweather.background.polling.basic.ForegroundUpdateService: ForegroundUpdateService() +androidx.coordinatorlayout.R$id: int none +com.google.gson.FieldNamingPolicy$6: java.lang.String translateName(java.lang.reflect.Field) +androidx.customview.R$dimen: int compat_button_inset_horizontal_material +com.google.android.material.R$attr: int font +android.support.v4.os.IResultReceiver$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +android.didikee.donate.R$styleable: int MenuItem_android_title +android.didikee.donate.R$attr: int collapseIcon +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy +com.google.android.material.R$styleable: int BottomAppBar_elevation +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder hasSensitiveData(boolean) +wangdaye.com.geometricweather.R$layout: int item_weather_daily_pollen +james.adaptiveicon.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +com.google.android.material.R$styleable: int Transform_android_transformPivotY +org.greenrobot.greendao.AbstractDao: void executeInsertInTx(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Iterable,boolean) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getBackgroundColorStart() +androidx.lifecycle.Lifecycling: int resolveObserverCallbackType(java.lang.Class) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_weight +com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_Overflow +wangdaye.com.geometricweather.R$id: int light +androidx.appcompat.R$styleable: int TextAppearance_android_textColor +com.google.android.material.slider.Slider: java.lang.CharSequence getAccessibilityClassName() +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cw +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle DAILY +com.bumptech.glide.R$id: int tag_unhandled_key_listeners +androidx.appcompat.R$attr: int drawableTopCompat +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1(retrofit2.Call) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_visibility +wangdaye.com.geometricweather.R$styleable: int View_android_theme +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xmp +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalStyle +android.didikee.donate.R$styleable: int AppCompatTheme_listDividerAlertDialog +cyanogenmod.hardware.CMHardwareManager: int FEATURE_COLOR_ENHANCEMENT +com.turingtechnologies.materialscrollbar.R$id: int uniform +okhttp3.internal.ws.WebSocketWriter$FrameSink: WebSocketWriter$FrameSink(okhttp3.internal.ws.WebSocketWriter) +okhttp3.internal.connection.RouteSelector: int nextProxyIndex +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: java.lang.String Source +android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_min +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type[] typeArguments +androidx.constraintlayout.widget.R$attr: int keyPositionType +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTintMode +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_preserveIconSpacing +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +wangdaye.com.geometricweather.R$styleable: int Transform_android_rotationY +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemIconDisabledAlpha +com.google.android.material.R$attr: int fabCradleVerticalOffset +james.adaptiveicon.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.R$color: int darkPrimary_2 +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Surface +androidx.preference.R$attr: int actionModeShareDrawable +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontVariationSettings +okhttp3.internal.http2.Hpack$Reader: void readIndexedHeader(int) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean point +androidx.appcompat.resources.R$id: int accessibility_custom_action_3 +com.turingtechnologies.materialscrollbar.R$id: int src_in +retrofit2.http.PUT +cyanogenmod.app.CMStatusBarManager: void publishTileAsUser(java.lang.String,int,cyanogenmod.app.CustomTile,android.os.UserHandle) +okhttp3.Response$Builder: long receivedResponseAtMillis +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedQuery(java.lang.String) +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.R$color: int primary_text_default_material_light +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: boolean IsDaylight +android.didikee.donate.R$style: int Theme_AppCompat_Light_DialogWhenLarge +wangdaye.com.geometricweather.R$attr: int hoveredFocusedTranslationZ +androidx.constraintlayout.widget.R$id: int right_icon +com.google.android.material.R$attr: int minHideDelay +wangdaye.com.geometricweather.R$drawable: int abc_list_divider_material +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int aqi +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.DailyEntity) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: ObservableTimeout$TimeoutConsumer(long,io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutSelectorSupport) +io.reactivex.exceptions.UndeliverableException: UndeliverableException(java.lang.Throwable) +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode CLOUDY +wangdaye.com.geometricweather.R$styleable: int ActionBar_backgroundStacked +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_15 +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay +wangdaye.com.geometricweather.R$attr: int bsb_show_thumb_text +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endX +cyanogenmod.app.IProfileManager: android.app.NotificationGroup getNotificationGroup(android.os.ParcelUuid) +wangdaye.com.geometricweather.R$id: int src_in +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_CompactMenu +androidx.lifecycle.extensions.R$attr: int fontWeight +androidx.preference.ListPreference$SavedState +wangdaye.com.geometricweather.R$attr: int motionInterpolator +com.google.android.material.R$id: int deltaRelative +io.reactivex.internal.observers.InnerQueuedObserver: void onComplete() +com.jaredrummler.android.colorpicker.R$id: int src_atop +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onNext(java.lang.Object) +android.didikee.donate.R$dimen: int notification_large_icon_width +com.google.android.material.slider.BaseSlider: float getValueFrom() +okhttp3.Response: okhttp3.Response cacheResponse() +com.google.android.material.chip.Chip: java.lang.CharSequence getChipText() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf +com.turingtechnologies.materialscrollbar.R$attr: int windowFixedHeightMajor +androidx.appcompat.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +androidx.appcompat.widget.ViewStubCompat: void setLayoutResource(int) +androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context,android.util.AttributeSet,int) +james.adaptiveicon.R$styleable: int AppCompatSeekBar_android_thumb +androidx.appcompat.R$styleable: int MenuItem_android_menuCategory +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableStart +cyanogenmod.app.CustomTile: android.app.PendingIntent onClick +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_showTitle +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: AccuLocationResult$Country() +com.google.android.material.R$id: int honorRequest +okhttp3.internal.http2.Http2Stream$FramingSink: void close() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicReference actual +androidx.loader.R$styleable: R$styleable() +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_24 +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: boolean noDirection +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_backgroundSplit +androidx.preference.R$styleable: int DialogPreference_positiveButtonText +okhttp3.OkHttpClient: int writeTimeout +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService newInstance(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi,io.reactivex.disposables.CompositeDisposable) +wangdaye.com.geometricweather.R$animator: int weather_sleet_2 +androidx.appcompat.R$styleable: int TextAppearance_fontVariationSettings +androidx.cardview.R$styleable: int CardView_android_minWidth +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_colored_material +wangdaye.com.geometricweather.R$dimen: int disabled_alpha_material_light +com.turingtechnologies.materialscrollbar.R$drawable: int design_password_eye +com.google.android.material.R$dimen: int fastscroll_default_thickness +okio.BufferedSink: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) +android.didikee.donate.R$id: int time +wangdaye.com.geometricweather.R$font: int product_sans_light_italic +com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableItem +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemShapeAppearanceOverlay +com.google.android.material.R$attr: int submitBackground +okio.RealBufferedSource$1: okio.RealBufferedSource this$0 +androidx.vectordrawable.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.entities.DailyEntity readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.R$attr: int tickVisible +wangdaye.com.geometricweather.R$attr: int submitBackground +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_AM_PM_VALIDATOR +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +okio.BufferedSource: byte[] readByteArray() +retrofit2.OptionalConverterFactory: retrofit2.Converter$Factory INSTANCE +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getLastThemeChangeTime +okhttp3.internal.Util: int checkDuration(java.lang.String,long,java.util.concurrent.TimeUnit) +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: io.reactivex.Observer downstream +com.google.android.material.R$drawable: int btn_checkbox_unchecked_mtrl +james.adaptiveicon.R$attr: int initialActivityCount +wangdaye.com.geometricweather.R$color: int darkPrimary_1 +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Snapshot get(java.lang.String) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean done +retrofit2.RequestFactory$Builder: okhttp3.Headers headers +androidx.appcompat.R$style: int Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide +wangdaye.com.geometricweather.R$layout: int test_toolbar_elevation +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_singleChoiceItemLayout +com.xw.repo.bubbleseekbar.R$styleable: int GradientColorItem_android_offset +com.google.android.material.R$styleable: int TabLayout_tabPaddingTop +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_off_mtrl_alpha +com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_borderColor +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_pathMotionArc +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconSize +com.jaredrummler.android.colorpicker.R$id: int left +wangdaye.com.geometricweather.R$string: int error_icon_content_description +com.google.android.material.R$attr: int colorAccent +wangdaye.com.geometricweather.R$drawable: int ic_star +android.didikee.donate.R$drawable: int abc_scrubber_control_off_mtrl_alpha +com.google.android.material.R$attr: int editTextStyle +okhttp3.internal.http.HttpDate: java.lang.String format(java.util.Date) +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit M +okio.BufferedSource: okio.Buffer buffer() +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: java.lang.String getWidgetWeekIconModeName(android.content.Context) +com.google.android.material.R$styleable: int AppCompatTheme_windowFixedWidthMinor +com.google.android.material.appbar.AppBarLayout: void setExpanded(boolean) +wangdaye.com.geometricweather.R$dimen: int daily_trend_item_height +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_menu_header_material +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode HAZE +com.xw.repo.bubbleseekbar.R$style: int Widget_Support_CoordinatorLayout +wangdaye.com.geometricweather.R$string: int refresh +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +com.google.android.material.R$attr: int colorSecondaryVariant +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor +james.adaptiveicon.R$styleable: int MenuItem_numericModifiers +androidx.appcompat.widget.AppCompatButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onComplete() +androidx.viewpager.widget.ViewPager: int getCurrentItem() +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_borderless_material +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeApparentTemperature(java.lang.Integer) +retrofit2.ParameterHandler$Query: java.lang.String name +wangdaye.com.geometricweather.R$styleable: int[] NavigationView +com.google.android.material.R$styleable: int Constraint_layout_constrainedWidth +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeRealFeelShaderTemperature +com.google.android.material.chip.Chip: float getChipStartPadding() +androidx.core.R$dimen: int notification_right_side_padding_top +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$200() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setPressure(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean) +androidx.hilt.work.R$id: int accessibility_custom_action_21 +retrofit2.Response: retrofit2.Response error(okhttp3.ResponseBody,okhttp3.Response) +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List dailyForecast +cyanogenmod.profiles.AirplaneModeSettings: void readFromParcel(android.os.Parcel) +io.reactivex.internal.subscriptions.EmptySubscription: void clear() +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constrainedWidth +androidx.core.R$id: int accessibility_custom_action_24 +com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabStyle +james.adaptiveicon.R$attr: int popupMenuStyle +androidx.lifecycle.MediatorLiveData: androidx.arch.core.internal.SafeIterableMap mSources +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.Window mWindow +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: SwipeRefreshLayout(android.content.Context) +com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context,android.util.AttributeSet) +androidx.preference.R$color: int primary_text_default_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listDividerAlertDialog +androidx.appcompat.R$styleable: int DrawerArrowToggle_drawableSize +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_FAST_SAMPLES +androidx.preference.R$integer: R$integer() +wangdaye.com.geometricweather.R$attr: int framePosition +com.google.android.material.R$styleable: int TabLayout_tabIndicatorFullWidth +wangdaye.com.geometricweather.R$color: int mtrl_outlined_stroke_color +com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_Tooltip +wangdaye.com.geometricweather.R$attr: int thumbTextPadding +androidx.appcompat.widget.ActionBarContainer: void setTransitioning(boolean) +okio.BufferedSource: java.lang.String readUtf8LineStrict(long) +retrofit2.Retrofit$Builder: java.util.List callAdapterFactories() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_CLOCK_VALIDATOR +okhttp3.internal.cache.DiskLruCache: java.io.File journalFileBackup +io.reactivex.Observable: io.reactivex.Observable doAfterNext(io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.db.entities.LocationEntityDao: LocationEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +cyanogenmod.weatherservice.WeatherProviderService$1: void cancelOngoingRequests() +com.bumptech.glide.integration.okhttp.R$drawable: int notification_tile_bg +androidx.dynamicanimation.R$id: int text2 +android.didikee.donate.R$attr: int spinnerDropDownItemStyle +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_orderingFromXml +cyanogenmod.app.ILiveLockScreenManagerProvider: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +wangdaye.com.geometricweather.R$layout: int abc_action_mode_bar +android.didikee.donate.R$attr: int thickness +androidx.hilt.lifecycle.R$drawable: R$drawable() +com.turingtechnologies.materialscrollbar.R$id: int largeLabel +com.google.android.material.R$styleable: int SearchView_android_inputType +com.xw.repo.bubbleseekbar.R$style: int Base_AlertDialog_AppCompat +okhttp3.internal.cache.CacheInterceptor: okhttp3.Headers combine(okhttp3.Headers,okhttp3.Headers) +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void dispose() +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Title +james.adaptiveicon.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.R$attr: int dropdownPreferenceStyle +android.didikee.donate.R$layout: int abc_action_mode_bar +com.jaredrummler.android.colorpicker.R$attr: int preferenceTheme +okhttp3.Cookie: long parseExpires(java.lang.String,int,int) +androidx.appcompat.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_minHeight +wangdaye.com.geometricweather.R$color: int colorLevel_3 +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric +wangdaye.com.geometricweather.R$id: int textinput_placeholder +androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context) +com.google.android.material.R$styleable: int MaterialCalendar_dayStyle +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cpb +cyanogenmod.app.ProfileManager: void addProfile(cyanogenmod.app.Profile) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Inverse +com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException: RecyclableBufferedInputStream$InvalidMarkException(java.lang.String) +androidx.constraintlayout.widget.R$id: int accelerate +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_3 +androidx.lifecycle.CompositeGeneratedAdaptersObserver: androidx.lifecycle.GeneratedAdapter[] mGeneratedAdapters +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode FLOW_CONTROL_ERROR +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionMenuTextAppearance +james.adaptiveicon.R$id: int right_icon +androidx.swiperefreshlayout.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$id: int direct +com.google.android.material.R$color: int design_default_color_primary +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: int UnitType +com.google.android.material.R$color: int material_grey_800 +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_multiChoiceItemLayout +com.amap.api.location.CoordUtil +android.didikee.donate.R$layout: int abc_screen_simple +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void cancelSources() +com.xw.repo.bubbleseekbar.R$layout: int abc_dialog_title_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.lang.String MobileLink +androidx.appcompat.R$style: int Base_Widget_AppCompat_TextView +wangdaye.com.geometricweather.R$attr: int tabContentStart +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhaseIcon +androidx.viewpager2.R$id: int line1 +okio.SegmentedByteString: java.lang.String hex() +android.support.v4.os.ResultReceiver: android.os.Handler mHandler +com.jaredrummler.android.colorpicker.R$attr: int divider +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: java.lang.String Unit +com.amap.api.location.AMapLocation: void setLocationQualityReport(com.amap.api.location.AMapLocationQualityReport) +wangdaye.com.geometricweather.R$drawable: int weather_thunder +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionModeOverlay +wangdaye.com.geometricweather.R$id: int incoming +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowNoTitle +james.adaptiveicon.R$attr: int listItemLayout +com.google.android.material.R$styleable: int Layout_layout_constraintWidth_default +androidx.appcompat.widget.SwitchCompat: void setTrackTintList(android.content.res.ColorStateList) +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_LOW_COLOR +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language CZECH +androidx.hilt.R$id: int accessibility_custom_action_8 +io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) +retrofit2.RequestBuilder: RequestBuilder(java.lang.String,okhttp3.HttpUrl,java.lang.String,okhttp3.Headers,okhttp3.MediaType,boolean,boolean,boolean) +wangdaye.com.geometricweather.R$string: int get_more +com.jaredrummler.android.colorpicker.R$string: int v7_preference_on +androidx.preference.R$attr: int titleTextStyle +okhttp3.HttpUrl: okhttp3.HttpUrl get(java.net.URL) +com.amap.api.fence.GeoFenceManagerBase: void addDistrictGeoFence(java.lang.String,java.lang.String) +james.adaptiveicon.R$bool: int abc_action_bar_embed_tabs +com.jaredrummler.android.colorpicker.R$anim: int abc_fade_in +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabStyle +androidx.preference.R$attr: int dividerVertical +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: int UnitType +okio.Buffer: okio.ByteString hmacSha256(okio.ByteString) +wangdaye.com.geometricweather.db.entities.DaoMaster: DaoMaster(org.greenrobot.greendao.database.Database) +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream pushStream(int,java.util.List,boolean) +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.Observer downstream +com.google.android.material.R$styleable: int TextInputEditText_textInputLayoutFocusedRectEnabled +com.google.android.material.R$styleable: int KeyTrigger_triggerReceiver +androidx.appcompat.R$attr: int autoSizeMinTextSize +io.reactivex.internal.disposables.ArrayCompositeDisposable: boolean setResource(int,io.reactivex.disposables.Disposable) +androidx.preference.R$dimen: int abc_select_dialog_padding_start_material +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRealFeelShaderTemperature(java.lang.Integer) +com.xw.repo.bubbleseekbar.R$styleable: int[] CoordinatorLayout_Layout +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode AUTOMATIC +cyanogenmod.externalviews.KeyguardExternalView: void unregisterKeyguardExternalViewCallback(cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks) +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Bridge +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +okio.Util: void checkOffsetAndCount(long,long,long) +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver +androidx.activity.R$id: int accessibility_custom_action_12 +wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog_actions +io.reactivex.internal.observers.InnerQueuedObserver: boolean isDisposed() +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.Scheduler scheduler +com.bumptech.glide.request.RequestCoordinator$RequestState +com.amap.api.fence.GeoFence: void setEnterTime(long) +androidx.preference.R$drawable: int abc_scrubber_track_mtrl_alpha +androidx.appcompat.widget.SwitchCompat: boolean getShowText() +wangdaye.com.geometricweather.R$id: int notification_multi_city_text_3 +androidx.preference.R$id: int home +com.google.android.material.button.MaterialButton: void setCheckable(boolean) +com.google.android.material.textfield.TextInputLayout: void setPrefixText(java.lang.CharSequence) +okhttp3.Cookie: java.util.List parseAll(okhttp3.HttpUrl,okhttp3.Headers) +androidx.viewpager.widget.PagerTitleStrip: PagerTitleStrip(android.content.Context) +androidx.dynamicanimation.R$dimen: int notification_right_side_padding_top +com.google.android.material.R$interpolator: int mtrl_linear +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tSea +androidx.constraintlayout.widget.R$attr: int actionBarDivider +com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_PrimarySurface +com.google.android.material.R$style: int Theme_AppCompat_Light_NoActionBar +wangdaye.com.geometricweather.R$string: int key_click_widget_to_refresh +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_elevation +wangdaye.com.geometricweather.R$drawable: int flag_es +androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +james.adaptiveicon.R$color: int tooltip_background_dark +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_behavior +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy ERROR +cyanogenmod.themes.ThemeManager$2: void onFinishedProcessing(java.lang.String) +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setTextColor(int) +androidx.constraintlayout.widget.R$attr: int contentInsetLeft +james.adaptiveicon.R$attr: int measureWithLargestChild +com.jaredrummler.android.colorpicker.R$id: int normal +androidx.preference.R$styleable: int AppCompatTheme_actionBarSize +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_goIcon +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicBoolean cancelled +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +androidx.constraintlayout.widget.R$styleable: int[] ImageFilterView +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onComplete() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircleAngle +androidx.constraintlayout.widget.R$attr: int layout_constraintStart_toEndOf +android.didikee.donate.R$attr: int navigationIcon +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: android.os.IBinder mRemote +com.google.android.material.R$color: int material_on_primary_disabled +androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$style: int PreferenceFragmentList_Material +com.xw.repo.bubbleseekbar.R$styleable: int[] View +okio.ByteString: java.lang.String utf8 +cyanogenmod.hardware.DisplayMode: DisplayMode(android.os.Parcel) +wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_colored_item_tint +androidx.constraintlayout.widget.R$id: int text2 +androidx.lifecycle.LiveDataReactiveStreams +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_3 +androidx.preference.R$style: int Widget_AppCompat_CompoundButton_RadioButton +com.google.android.material.R$styleable: int Constraint_layout_constraintCircleAngle +wangdaye.com.geometricweather.R$styleable: int NavigationView_android_background +com.google.android.material.R$styleable: int OnSwipe_moveWhenScrollAtTop +com.google.android.material.internal.NavigationMenuItemView: void setTextAppearance(int) +wangdaye.com.geometricweather.R$attr: int expandActivityOverflowButtonDrawable +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizePresetSizes +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean active +io.reactivex.internal.util.VolatileSizeArrayList: boolean equals(java.lang.Object) +com.jaredrummler.android.colorpicker.R$attr: int dialogTheme +com.google.android.material.R$id: int submenuarrow +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_textOff +com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd +wangdaye.com.geometricweather.R$drawable: int weather_hail_3 +io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper valueOf(java.lang.String) +com.google.android.material.floatingactionbutton.FloatingActionButton: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() +androidx.appcompat.R$style: int Widget_AppCompat_SearchView +com.turingtechnologies.materialscrollbar.R$attr: int closeIconEnabled +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleTint +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_hideOnScroll +com.xw.repo.bubbleseekbar.R$attr: int contentInsetLeft +com.turingtechnologies.materialscrollbar.R$id: int auto +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float NitrogenMonoxide +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerError(java.lang.Throwable) +androidx.fragment.app.Fragment$2 +wangdaye.com.geometricweather.R$layout: int abc_dialog_title_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial Imperial +cyanogenmod.providers.CMSettings$System: int getIntForUser(android.content.ContentResolver,java.lang.String,int) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float pm25 +com.google.android.gms.signin.internal.zam: android.os.Parcelable$Creator CREATOR +com.google.android.material.slider.BaseSlider: float getValueOfTouchPosition() +retrofit2.ParameterHandler$PartMap: java.lang.String transferEncoding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindDircStart() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextStyle +androidx.work.R$styleable: int GradientColor_android_endY +androidx.constraintlayout.widget.R$styleable: int PopupWindowBackgroundState_state_above_anchor +androidx.vectordrawable.R$id: int blocking +androidx.appcompat.R$styleable: int Spinner_android_dropDownWidth +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endX +androidx.preference.R$id: int accessibility_custom_action_3 +wangdaye.com.geometricweather.R$attr: int layout_constraintTop_toBottomOf +okhttp3.internal.http2.Huffman: byte[] CODE_LENGTHS +com.google.android.material.R$color: int material_grey_900 +androidx.constraintlayout.widget.R$drawable: int abc_seekbar_track_material +com.google.android.material.R$attr: int chipIcon +okhttp3.internal.http2.Http2: java.lang.String[] BINARY +com.xw.repo.bubbleseekbar.R$attr: int listLayout +com.google.android.material.button.MaterialButton: void setIconTintResource(int) +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getApparentTemperature() +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_hovered_focused +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: java.lang.Object poll() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex today +james.adaptiveicon.R$anim: int abc_slide_in_top +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: ObservableReplay$SizeAndTimeBoundReplayBuffer(int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: java.util.List brands +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource +com.google.android.material.R$string: int material_timepicker_pm +com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrim(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$styleable: int Fragment_android_tag +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Title +androidx.appcompat.resources.R$id: int async +android.didikee.donate.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +com.amap.api.location.AMapLocation: java.lang.String j(com.amap.api.location.AMapLocation,java.lang.String) +androidx.preference.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_divider +androidx.preference.TwoStatePreference: TwoStatePreference(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: AccuHourlyResult() +james.adaptiveicon.R$dimen: int abc_dropdownitem_icon_width +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event[] values() +james.adaptiveicon.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.R$string: int phase_waxing_gibbous +wangdaye.com.geometricweather.R$attr: int panelMenuListTheme +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_content_inset_material +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: long serialVersionUID +okhttp3.internal.cache.DiskLruCache: int appVersion +com.google.android.material.R$attr: int listPreferredItemPaddingRight +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: long timeout +wangdaye.com.geometricweather.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.preference.R$styleable: int SeekBarPreference_android_max +okhttp3.internal.http2.Http2Connection: void pushExecutorExecute(okhttp3.internal.NamedRunnable) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange +james.adaptiveicon.R$bool: int abc_allow_stacked_button_bar +androidx.preference.R$styleable: int AppCompatTheme_windowActionModeOverlay +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX +james.adaptiveicon.R$attr: int spinBars +androidx.preference.R$style: int Base_TextAppearance_AppCompat +com.google.android.material.R$styleable: int TabLayout_tabIndicatorColor +androidx.lifecycle.extensions.R$dimen: int notification_small_icon_background_padding +com.amap.api.fence.GeoFenceClient: void setGeoFenceListener(com.amap.api.fence.GeoFenceListener) +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_grey +com.turingtechnologies.materialscrollbar.R$id: int group_divider +com.google.android.material.R$styleable: int NavigationView_itemMaxLines +androidx.drawerlayout.R$dimen: int notification_right_side_padding_top +androidx.constraintlayout.widget.R$dimen: int notification_top_pad_large_text +okhttp3.internal.http2.Http2Stream$FramingSink: boolean $assertionsDisabled +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_divider +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setStatus(int) +com.google.android.material.R$styleable: int Badge_backgroundColor com.jaredrummler.android.colorpicker.R$attr: int buttonTint -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dividerVertical -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetEndWithActions -com.google.android.gms.base.R$string: int common_google_play_services_updating_text -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: CallExecuteObservable$CallDisposable(retrofit2.Call) -wangdaye.com.geometricweather.R$color: int radiobutton_themeable_attribute_color -cyanogenmod.app.CustomTile$ExpandedStyle: void internalSetRemoteViews(android.widget.RemoteViews) -android.didikee.donate.R$dimen: int abc_cascading_menus_min_smallest_width -androidx.preference.R$attr: int lineHeight -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWindLevel() -androidx.transition.R$attr -wangdaye.com.geometricweather.R$color: int colorTextContent_light -cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: int KPH -androidx.coordinatorlayout.R$styleable: int[] FontFamilyFont -com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_layout -com.jaredrummler.android.colorpicker.R$dimen: int abc_control_padding_material -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: java.lang.String aqi -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderFetchTimeout -com.turingtechnologies.materialscrollbar.R$attr: int itemSpacing -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$font: int product_sans_thin -com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Light_Dialog -cyanogenmod.hardware.ThermalListenerCallback: ThermalListenerCallback() -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_profileExistsByName -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_FixedSize_Bridge -wangdaye.com.geometricweather.R$drawable: int notif_temp_135 -com.google.android.material.R$styleable: int TextInputLayout_helperText -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$attr: int colorControlNormal -okhttp3.Handshake: okhttp3.Handshake get(okhttp3.TlsVersion,okhttp3.CipherSuite,java.util.List,java.util.List) -com.google.android.material.R$styleable: int[] AppBarLayoutStates -androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableCompatState: int getChangingConfigurations() -androidx.hilt.lifecycle.R$id: int actions -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_showMotionSpec -james.adaptiveicon.R$string: int abc_action_mode_done -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_LIFE_DETAILS -com.google.android.material.tabs.TabLayout: int getTabCount() -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getHourlyForecast() -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_dividerPadding -james.adaptiveicon.R$styleable: int LinearLayoutCompat_measureWithLargestChild -com.jaredrummler.android.colorpicker.R$drawable: int notification_template_icon_bg -okhttp3.internal.connection.RouteSelector: java.net.Proxy nextProxy() -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getUnitId() -wangdaye.com.geometricweather.R$styleable: int MockView_mock_labelColor -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String EnglishName -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -com.google.android.material.R$styleable: int MenuView_android_itemIconDisabledAlpha -androidx.recyclerview.R$id: int dialog_button -com.jaredrummler.android.colorpicker.R$color: int abc_tint_switch_track -wangdaye.com.geometricweather.R$string: int settings_title_notification_custom_color -android.didikee.donate.R$dimen: int abc_text_size_body_2_material -okhttp3.Dispatcher -io.reactivex.internal.observers.DeferredScalarDisposable: java.lang.Object value -com.google.android.material.R$styleable: int TabLayout_tabIndicatorGravity -retrofit2.DefaultCallAdapterFactory$1 -androidx.appcompat.R$layout: int notification_action -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeDegreeDayTemperature() -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_height -wangdaye.com.geometricweather.R$styleable: int Toolbar_collapseIcon -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework -com.google.android.material.R$attr: int actionViewClass -wangdaye.com.geometricweather.R$integer: int abc_config_activityDefaultDur -com.xw.repo.bubbleseekbar.R$dimen: int abc_seekbar_track_progress_height_material -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DailyForecast -okhttp3.RealCall: java.io.IOException timeoutExit(java.io.IOException) -wangdaye.com.geometricweather.R$string: int settings_title_week_icon_mode -androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_min -com.google.android.material.R$attr: int yearSelectedStyle -wangdaye.com.geometricweather.common.basic.models.weather.Alert: void writeToParcel(android.os.Parcel,int) -androidx.constraintlayout.widget.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.util.ErrorMode errorMode -androidx.core.R$id: int action_text -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState FAILED -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_expanded -wangdaye.com.geometricweather.R$layout: int item_weather_daily_line -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day -com.jaredrummler.android.colorpicker.R$id: int gridView -wangdaye.com.geometricweather.background.service.TileService: TileService() -cyanogenmod.providers.CMSettings$System$1: CMSettings$System$1() -cyanogenmod.themes.ThemeManager: void onClientPaused(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -androidx.drawerlayout.R$styleable: int FontFamilyFont_fontWeight -androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -cyanogenmod.hardware.ICMHardwareService: java.lang.String getSerialNumber() -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_17 -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter endArray() -okio.RealBufferedSource: java.lang.String readUtf8() -wangdaye.com.geometricweather.R$styleable: int[] TouchScrollBar -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_43 -androidx.hilt.R$style: int TextAppearance_Compat_Notification_Title -androidx.preference.R$styleable: int ActionBar_contentInsetEnd -androidx.appcompat.resources.R$styleable: int[] GradientColor -com.google.android.material.R$attr: int titleMargins -androidx.appcompat.R$styleable: int Toolbar_logoDescription -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -androidx.appcompat.R$styleable: int ActivityChooserView_initialActivityCount -com.google.android.material.chip.Chip: float getIconStartPadding() -okhttp3.internal.http.HttpHeaders: java.util.Set varyFields(okhttp3.Response) -com.amap.api.fence.GeoFence: int getStatus() +com.google.android.material.internal.NavigationMenuItemView: void setIcon(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleEnabled +com.xw.repo.bubbleseekbar.R$attr: int searchViewStyle +com.google.android.material.R$drawable: int abc_cab_background_top_material +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.disposables.Disposable upstream +androidx.appcompat.R$style: int Widget_Compat_NotificationActionContainer +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setSubState(int,boolean) +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: ObservableUnsubscribeOn$UnsubscribeObserver(io.reactivex.Observer,io.reactivex.Scheduler) +com.google.android.material.R$styleable: int Chip_chipMinHeight +cyanogenmod.themes.ThemeChangeRequest$Builder: java.util.Map mPerAppOverlays +okhttp3.internal.connection.RealConnection: void startHttp2(int) +com.baidu.location.indoor.mapversion.c.a$d: double c(double) +okio.ByteString: void write(java.io.OutputStream) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_rippleColor +okhttp3.internal.http2.Http2Connection: void writeSynReply(int,boolean,java.util.List) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String uvDescription +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: int UnitType +androidx.activity.R$styleable: int GradientColorItem_android_color +okio.Base64: java.lang.String encode(byte[],byte[]) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_stacked_tab_max_width +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int bufferSize +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onError(java.lang.Throwable) +cyanogenmod.platform.Manifest$permission: Manifest$permission() +wangdaye.com.geometricweather.R$id: int gridView +androidx.appcompat.R$styleable: int[] AppCompatTextView +com.google.gson.internal.LinkedTreeMap: java.lang.Object get(java.lang.Object) +com.jaredrummler.android.colorpicker.R$attr +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void drainLoop() +james.adaptiveicon.R$attr: int iconTint +androidx.hilt.work.R$id: int accessibility_custom_action_31 +james.adaptiveicon.R$id: int buttonPanel +com.xw.repo.bubbleseekbar.R$anim: int abc_slide_in_top +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +androidx.appcompat.widget.AppCompatCheckBox: android.content.res.ColorStateList getSupportBackgroundTintList() +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_normal_material_light +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps +com.google.android.material.R$id: int notification_background +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String weatherText +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTint +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.HistoryEntity) +cyanogenmod.weather.RequestInfo: boolean isQueryOnlyWeatherRequest() +androidx.lifecycle.Transformations: androidx.lifecycle.LiveData switchMap(androidx.lifecycle.LiveData,androidx.arch.core.util.Function) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListPopupWindow +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setZh_TW(java.lang.String) +james.adaptiveicon.R$styleable: int MenuView_android_verticalDivider +io.reactivex.internal.disposables.DisposableHelper: boolean set(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree daytimeWindDegree +retrofit2.adapter.rxjava2.RxJava2CallAdapter: RxJava2CallAdapter(java.lang.reflect.Type,io.reactivex.Scheduler,boolean,boolean,boolean,boolean,boolean,boolean,boolean) +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,okio.ByteString) +androidx.fragment.R$styleable: int ColorStateListItem_alpha +androidx.appcompat.R$id: int action_image +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: boolean isExecuted() +com.xw.repo.bubbleseekbar.R$drawable: int abc_ab_share_pack_mtrl_alpha +com.google.android.material.R$color: int material_on_primary_emphasis_medium +androidx.preference.R$attr: int actionModeSplitBackground +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: int Id +io.reactivex.internal.subscribers.DeferredScalarSubscriber +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection findConnection(int,int,int,int,boolean) +com.google.android.material.R$styleable: int MaterialCardView_checkedIcon +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop +io.reactivex.internal.subscriptions.SubscriptionHelper: void reportSubscriptionSet() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getO3Desc() +android.didikee.donate.R$styleable: int MenuItem_numericModifiers +androidx.coordinatorlayout.R$id: int forever +io.reactivex.Observable: io.reactivex.Observable ambWith(io.reactivex.ObservableSource) +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +wangdaye.com.geometricweather.R$attr: int flow_maxElementsWrap +okhttp3.internal.proxy.NullProxySelector: java.util.List select(java.net.URI) +cyanogenmod.weather.RequestInfo$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.settings.dialogs.TimeSetterDialog: TimeSetterDialog() +androidx.preference.R$id: int action_bar_activity_content +retrofit2.RequestFactory: boolean isKotlinSuspendFunction +androidx.appcompat.R$attr: int drawableTint +okhttp3.internal.ws.RealWebSocket: void onReadMessage(java.lang.String) +androidx.hilt.lifecycle.R$dimen: int notification_small_icon_size_as_large +com.google.android.material.R$attr: int altSrc +wangdaye.com.geometricweather.R$id: int widget_day_week_week_4 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric() +com.google.android.material.textfield.TextInputLayout: int getHelperTextCurrentTextColor() +james.adaptiveicon.R$styleable: int Toolbar_titleMargin +androidx.core.R$dimen: int notification_large_icon_width +okhttp3.Interceptor$Chain: int readTimeoutMillis() +com.bumptech.glide.R$styleable +androidx.appcompat.R$id: int action_bar_subtitle +androidx.hilt.lifecycle.R$dimen: int compat_button_padding_horizontal_material +androidx.viewpager.R$attr: int ttcIndex +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.functions.Function,int,io.reactivex.ObservableSource[]) +cyanogenmod.providers.CMSettings$System: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) +james.adaptiveicon.R$styleable: int SearchView_voiceIcon +com.google.android.material.R$styleable: int AppCompatTheme_android_windowAnimationStyle +com.google.android.material.button.MaterialButtonToggleGroup: void removeOnButtonCheckedListener(com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener) +wangdaye.com.geometricweather.R$attr: int bsb_second_track_size +androidx.preference.R$attr: int editTextStyle +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_BottomSheetDialog +com.amap.api.fence.GeoFenceClient: void setActivateAction(int) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Large +wangdaye.com.geometricweather.R$id: int widget_text_date +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +androidx.appcompat.R$layout: int abc_dialog_title_material +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SearchView +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Colored +okio.Buffer$2: Buffer$2(okio.Buffer) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul1H +wangdaye.com.geometricweather.R$id: int mtrl_picker_fullscreen +wangdaye.com.geometricweather.R$layout: int mtrl_picker_actions +com.google.android.material.R$attr: int maxHeight +androidx.lifecycle.LiveData: void removeObserver(androidx.lifecycle.Observer) +okio.Buffer: okio.Buffer writeString(java.lang.String,java.nio.charset.Charset) +wangdaye.com.geometricweather.R$drawable: int ic_pm +androidx.swiperefreshlayout.R$attr +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_21 +com.turingtechnologies.materialscrollbar.R$attr: int itemBackground +androidx.appcompat.view.menu.ListMenuItemView: void setGroupDividerEnabled(boolean) +androidx.drawerlayout.R$layout: int notification_template_icon_group +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeBackground +com.jaredrummler.android.colorpicker.R$anim: int abc_slide_in_bottom +androidx.preference.R$style: int Preference_PreferenceScreen +wangdaye.com.geometricweather.R$drawable: int mtrl_ic_error +wangdaye.com.geometricweather.R$styleable: int[] ConstraintSet +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.appcompat.R$dimen: int abc_floating_window_z +androidx.lifecycle.extensions.R$id: int dialog_button +com.google.android.material.slider.BaseSlider: int getTrackSidePadding() +cyanogenmod.providers.DataUsageContract: java.lang.String _ID +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setAlertId(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyle +com.google.android.material.R$layout: int abc_action_bar_up_container +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarDivider +com.turingtechnologies.materialscrollbar.R$bool +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEVICE_HOSTNAME +wangdaye.com.geometricweather.db.entities.DailyEntity: long getTime() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.constraintlayout.widget.R$attr: int warmth +io.reactivex.internal.util.EmptyComponent: void onSubscribe(org.reactivestreams.Subscription) +wangdaye.com.geometricweather.R$attr: int showText +androidx.coordinatorlayout.R$dimen: int compat_control_corner_material +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator APP_SWITCH_WAKE_SCREEN_VALIDATOR +androidx.viewpager2.R$styleable: int[] FontFamilyFont +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.fuseable.SimpleQueue queue +wangdaye.com.geometricweather.R$drawable: int notification_action_background +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_BottomNavigationView +androidx.legacy.coreutils.R$drawable: int notification_bg_low_normal +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_submitBackground +com.google.android.material.R$attr: int backgroundSplit +okhttp3.internal.http1.Http1Codec$AbstractSource: long read(okio.Buffer,long) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: double Value +cyanogenmod.content.Intent: java.lang.String ACTION_THEME_UPDATED +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String TITLE +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +com.google.android.material.R$styleable: int AppCompatTextView_lineHeight +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dialog +com.bumptech.glide.integration.okhttp.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.R$id: int easeIn +androidx.activity.R$styleable: int GradientColor_android_centerX +com.google.android.material.R$attr: int helperText +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: io.reactivex.Observer observer +com.google.android.material.R$styleable: int State_constraints +com.turingtechnologies.materialscrollbar.R$color: int accent_material_dark +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDataConnectionSelectedOnSub +android.didikee.donate.R$styleable: int AppCompatTheme_actionMenuTextAppearance +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setKillProcess(boolean) +androidx.work.R$id: int accessibility_custom_action_2 +androidx.work.R$attr: int fontWeight +com.amap.api.location.AMapLocationClientOption: boolean isOpenAlwaysScanWifi() +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActivityChooserView +androidx.preference.R$style: int Preference_SwitchPreferenceCompat_Material +androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton +com.google.android.material.R$styleable: int[] ExtendedFloatingActionButton +androidx.fragment.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: CNWeatherResult$Realtime() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.customview.R$color: int notification_action_color_filter +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_Solid +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_1 +com.turingtechnologies.materialscrollbar.R$attr: int buttonStyleSmall +wangdaye.com.geometricweather.R$drawable: int notification_bg_low_pressed +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder parse(okhttp3.HttpUrl,java.lang.String) +androidx.coordinatorlayout.R$id: int action_image +cyanogenmod.power.PerformanceManager: int getNumberOfProfiles() +okhttp3.RequestBody$2 +androidx.hilt.R$style: R$style() +androidx.preference.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.appcompat.resources.R$attr: R$attr() +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory valueOf(java.lang.String) +wangdaye.com.geometricweather.R$attr: int shapeAppearanceSmallComponent +androidx.constraintlayout.widget.R$attr: int paddingEnd +okhttp3.HttpUrl: java.lang.String PATH_SEGMENT_ENCODE_SET +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: MfForecastResult$Forecast$Wind() +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onComplete() +com.turingtechnologies.materialscrollbar.R$attr: int statusBarScrim +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_material_dark +com.google.android.material.R$styleable: int Constraint_android_maxHeight +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCity() +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onNext(java.lang.Object) +cyanogenmod.app.CustomTile: boolean sensitiveData +com.google.gson.stream.JsonReader: void beginArray() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowMinWidthMajor +com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedLevel +androidx.work.R$id: int tag_screen_reader_focusable +wangdaye.com.geometricweather.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage SOURCE +wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity +wangdaye.com.geometricweather.R$styleable: int Preference_icon +androidx.core.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$string: int search_menu_title +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean isEmpty() +wangdaye.com.geometricweather.R$string: int common_google_play_services_unsupported_text +com.google.android.material.R$style: int TextAppearance_Compat_Notification +androidx.appcompat.R$id: int textSpacerNoButtons +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Color +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitationDuration +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_ALLERGEN +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog +com.google.android.material.R$styleable: int ProgressIndicator_circularRadius +android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: boolean isDisposed() +retrofit2.RequestFactory$Builder: RequestFactory$Builder(retrofit2.Retrofit,java.lang.reflect.Method) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastVerticalBias +android.didikee.donate.R$attr: int background +wangdaye.com.geometricweather.R$color: int material_on_surface_emphasis_medium +com.amap.api.fence.GeoFence: void setType(int) +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: MfCurrentResult$Observation() +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Bridge +okhttp3.internal.http2.Http2: byte FLAG_END_PUSH_PROMISE +io.reactivex.internal.disposables.EmptyDisposable: boolean offer(java.lang.Object,java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabTextStyle +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_ab_back_material +androidx.preference.R$styleable: int AppCompatTextView_lineHeight +wangdaye.com.geometricweather.db.entities.DailyEntity: int nighttimeTemperature +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_AES_256_CBC_SHA +androidx.appcompat.widget.ActionMenuPresenter$SavedState +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float icePrecipitationProbability +wangdaye.com.geometricweather.R$id: int container_main_details_title +androidx.recyclerview.R$id: int accessibility_custom_action_28 +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionProviderClass +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +androidx.work.ArrayCreatingInputMerger +wangdaye.com.geometricweather.R$attr: int windowMinWidthMinor +cyanogenmod.providers.CMSettings$Secure: boolean putFloat(android.content.ContentResolver,java.lang.String,float) +james.adaptiveicon.R$dimen: int abc_text_size_display_3_material +androidx.constraintlayout.widget.R$styleable: int[] PopupWindow +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String street_number +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: double Value +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat +com.xw.repo.bubbleseekbar.R$id: int textSpacerNoTitle +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: long endTime +androidx.preference.R$drawable: int abc_btn_radio_material +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSubtitle1 +androidx.preference.R$styleable: int ActionBar_titleTextStyle +okio.BufferedSource: byte[] readByteArray(long) +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String weatherText +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy +retrofit2.RequestFactory$Builder: boolean gotPath +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onNext(java.lang.Object) +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_divider_material +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1 +androidx.vectordrawable.R$id: int accessibility_custom_action_31 +androidx.constraintlayout.widget.R$attr: int buttonStyleSmall +com.google.android.material.R$attr: int editTextBackground +wangdaye.com.geometricweather.R$id: int widget_day_week_center +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_AutoCompleteTextView +androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation com.turingtechnologies.materialscrollbar.R$styleable: int[] ButtonBarLayout -retrofit2.Platform: java.lang.Object invokeDefaultMethod(java.lang.reflect.Method,java.lang.Class,java.lang.Object,java.lang.Object[]) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPopupWindowStyle -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState CLEARED -com.google.android.material.R$styleable: int[] Snackbar -wangdaye.com.geometricweather.R$styleable: int Transition_duration -okio.ForwardingTimeout: okio.ForwardingTimeout setDelegate(okio.Timeout) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_width -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onStop -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPrimary(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int[] LinearLayoutCompat -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long index -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.viewpager2.R$attr: int fastScrollHorizontalTrackDrawable -com.turingtechnologies.materialscrollbar.R$color: int notification_icon_bg_color -cyanogenmod.library.R$styleable: int LiveLockScreen_settingsActivity -androidx.constraintlayout.widget.R$style: int Platform_V25_AppCompat_Light -wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_light -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: ObservableGroupJoin$LeftRightObserver(io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport,boolean) -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: java.util.concurrent.TimeUnit unit -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer treeLevel -com.google.android.material.R$attr: int bottomSheetStyle -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.RealConnection connection -wangdaye.com.geometricweather.R$string: int material_timepicker_select_time -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_6 -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_MIN_INDEX -com.google.android.material.chip.Chip: void setCloseIconHovered(boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure -androidx.fragment.R$attr: int fontProviderCerts -cyanogenmod.themes.ThemeChangeRequest: long getWallpaperId() -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.Handler access$100(cyanogenmod.externalviews.KeyguardExternalViewProviderService) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String ID -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDailyForecast(java.lang.String) -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_PopupMenu -okhttp3.OkHttpClient$1: boolean isInvalidHttpUrlHost(java.lang.IllegalArgumentException) -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabView -james.adaptiveicon.R$attr: int progressBarStyle -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_menuCategory -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int MISSED_STATE -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionMode -wangdaye.com.geometricweather.R$attr: int tabPaddingEnd -wangdaye.com.geometricweather.R$dimen: int abc_panel_menu_list_width -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionMode -wangdaye.com.geometricweather.R$drawable: int weather_rain_pixel -androidx.drawerlayout.R$styleable: int FontFamilyFont_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.R$drawable: int btn_radio_on_to_off_mtrl_animation -okio.ByteString: int hashCode -com.google.android.material.button.MaterialButton: void setIconResource(int) -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection findHealthyConnection(int,int,int,int,boolean,boolean) -okhttp3.internal.http2.Http2Connection: void pushExecutorExecute(okhttp3.internal.NamedRunnable) -wangdaye.com.geometricweather.R$attr: int submitBackground -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: java.util.Date Date -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver -com.google.android.material.R$attr: int textAppearanceHeadline2 -com.google.android.material.R$id: int mtrl_child_content_container -wangdaye.com.geometricweather.R$string: int feedback_refresh_notification_now -com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusBottomEnd -wangdaye.com.geometricweather.R$styleable: int MockView_mock_showLabel -com.google.gson.stream.JsonReader: int NUMBER_CHAR_NONE -okhttp3.internal.http2.Hpack$Writer: void writeByteString(okio.ByteString) -wangdaye.com.geometricweather.R$color: int mtrl_chip_background_color -wangdaye.com.geometricweather.R$string: int cpv_select -androidx.appcompat.R$attr: int fontProviderCerts -androidx.appcompat.R$attr: int contentDescription -com.google.android.material.card.MaterialCardView -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String IconPhrase -androidx.preference.R$attr: int overlapAnchor -androidx.preference.R$styleable: int PreferenceTheme_preferenceCategoryStyle -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_height -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar_Indicator -androidx.hilt.lifecycle.R$id: int notification_main_column_container -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_iconSpaceReserved -androidx.preference.R$style: int Preference_SeekBarPreference_Material -androidx.core.R$styleable -com.google.android.material.tabs.TabLayout: android.graphics.drawable.Drawable getTabSelectedIndicator() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setPubTime(java.lang.String) -wangdaye.com.geometricweather.R$attr: int counterOverflowTextColor -androidx.preference.R$style: int ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date sunsetTime -com.jaredrummler.android.colorpicker.R$id: int text2 -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getProfileHasAppProfiles -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_multiChoiceItemLayout -wangdaye.com.geometricweather.R$id: int material_timepicker_ok_button -com.google.android.material.R$styleable: int NavigationView_android_maxWidth -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_31 -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableTop -androidx.vectordrawable.animated.R$id: int dialog_button -com.google.android.material.R$dimen: int design_fab_size_mini -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Subtitle2 -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_pixel -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area -androidx.recyclerview.R$attr: int layoutManager -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum Maximum -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: void setValue(java.lang.String) -android.didikee.donate.R$attr: int showAsAction -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getFormattedId() -com.google.android.material.R$string: int material_slider_range_start -androidx.work.R$id: int actions -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -cyanogenmod.app.CustomTile$ExpandedStyle: cyanogenmod.app.CustomTile$ExpandedItem[] expandedItems -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay[] values() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating Heating -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_material_light -android.didikee.donate.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar -okhttp3.OkHttpClient$Builder: javax.net.SocketFactory socketFactory -com.google.android.material.R$dimen: int design_fab_translation_z_pressed -androidx.constraintlayout.widget.R$id: int motion_base -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_toBottomOf -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display3 -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: void run() -okio.Okio$1: void close() -androidx.recyclerview.R$attr: int fontStyle -androidx.constraintlayout.widget.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -cyanogenmod.content.Intent: java.lang.String ACTION_RECENTS_LONG_PRESS -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer windChillTemperature -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String grassDescription -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_summaryOn -androidx.appcompat.R$styleable: int MenuItem_android_icon -cyanogenmod.app.ICustomTileListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Body1 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalBias -androidx.constraintlayout.widget.R$id: int search_src_text -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_displayOptions -androidx.lifecycle.MethodCallsLogger: java.util.Map mCalledMethods -james.adaptiveicon.R$styleable: int[] MenuItem -com.google.android.material.R$id: int textinput_prefix_text -com.google.gson.internal.LazilyParsedNumber: LazilyParsedNumber(java.lang.String) -androidx.appcompat.R$attr: int logo -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customBoolean -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicReference upstream -androidx.constraintlayout.widget.R$attr: int layout_constrainedWidth -com.google.android.material.R$styleable: int Slider_thumbStrokeWidth -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.Date Date -com.google.android.material.chip.Chip: float getChipIconSize() -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: FlowableRepeatWhen$WhenSourceSubscriber(org.reactivestreams.Subscriber,io.reactivex.processors.FlowableProcessor,org.reactivestreams.Subscription) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconSize -wangdaye.com.geometricweather.R$id: int item_icon_provider_previewButton -androidx.hilt.work.R$styleable: int Fragment_android_id -wangdaye.com.geometricweather.R$layout: int widget_trend_hourly -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_holo_dark +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontWeight +android.didikee.donate.R$styleable: int SwitchCompat_switchMinWidth +cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(android.os.Parcel) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerSuccess(java.lang.Object) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_SHA256 +com.xw.repo.bubbleseekbar.R$dimen: int notification_small_icon_size_as_large +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: int status +androidx.lifecycle.ViewModelStore: java.util.Set keys() +androidx.preference.R$drawable: int abc_list_selector_holo_dark +com.google.android.gms.common.R$string: int common_google_play_services_unknown_issue +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: java.lang.String Unit +androidx.transition.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_card +cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup getNotificationGroup(android.os.ParcelUuid) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: int city_code +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_measureWithLargestChild +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: void setY(java.lang.String) +okhttp3.internal.connection.StreamAllocation: boolean canceled +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: java.lang.String address +cyanogenmod.app.ILiveLockScreenManager: boolean getLiveLockScreenEnabled() +com.loc.h +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: io.reactivex.Observer observer +wangdaye.com.geometricweather.R$attr: int collapsedSize +com.turingtechnologies.materialscrollbar.R$id: int add +wangdaye.com.geometricweather.R$dimen: int fastscroll_margin +androidx.appcompat.resources.R$id: int accessibility_custom_action_21 +com.amap.api.location.AMapLocation: double b(com.amap.api.location.AMapLocation,double) +okio.SegmentedByteString: java.lang.Object writeReplace() +okhttp3.logging.HttpLoggingInterceptor: java.util.Set headersToRedact +com.google.android.material.R$attr: int itemIconSize +com.google.android.material.R$style: int Widget_AppCompat_PopupMenu_Overflow +com.turingtechnologies.materialscrollbar.R$id: int default_activity_button +wangdaye.com.geometricweather.R$styleable: int Badge_badgeTextColor +wangdaye.com.geometricweather.R$attr: int searchIcon +cyanogenmod.platform.R$string: R$string() +androidx.appcompat.R$styleable: int AlertDialog_singleChoiceItemLayout +james.adaptiveicon.R$dimen: int notification_subtext_size +com.google.android.material.R$dimen: int mtrl_calendar_navigation_height +wangdaye.com.geometricweather.R$id: int list_item +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView_Menu +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_prompt +okio.Base64 +androidx.hilt.R$attr: int fontWeight +com.google.android.material.transformation.ExpandableBehavior: ExpandableBehavior(android.content.Context,android.util.AttributeSet) +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder client(okhttp3.OkHttpClient) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Body2 +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_SIGNAL_ICON +androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.Lifecycle getLifecycle() +com.turingtechnologies.materialscrollbar.R$dimen: int disabled_alpha_material_light +james.adaptiveicon.R$color: int abc_color_highlight_material +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_begin +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLocationPurpose(com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose) +com.xw.repo.bubbleseekbar.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +androidx.appcompat.R$attr: int contentInsetStart +com.turingtechnologies.materialscrollbar.R$color: int error_color_material_light +com.xw.repo.bubbleseekbar.R$dimen: int compat_notification_large_icon_max_width +okhttp3.internal.http2.Http2Reader: void readWindowUpdate(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +okhttp3.Response: okhttp3.CacheControl cacheControl +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setSize(float) +androidx.appcompat.R$styleable: int AppCompatTheme_colorError +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onWindowFocusChanged(boolean) +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMargin +wangdaye.com.geometricweather.R$id: int item_icon_provider_container +androidx.hilt.work.R$id: int accessibility_custom_action_22 +cyanogenmod.app.IProfileManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getNo2() +com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$id: int scrollBar +wangdaye.com.geometricweather.R$integer: int design_tab_indicator_anim_duration_ms +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ButtonBar +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_3DES_EDE_CBC_SHA +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_controlBackground +androidx.preference.R$attr: int measureWithLargestChild +wangdaye.com.geometricweather.R$attr: int itemBackground +com.bumptech.glide.integration.okhttp.R$attr: int layout_dodgeInsetEdges +androidx.preference.R$id: int chronometer +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_SLOW_SAMPLES +wangdaye.com.geometricweather.R$menu: int activity_main +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_touch_to_seek +cyanogenmod.externalviews.ExternalViewProviderService$Provider: int getWindowType() +james.adaptiveicon.R$styleable: int ActionBar_contentInsetLeft +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setSunRiseSet(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: long serialVersionUID +androidx.work.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWetBulbTemperature +com.github.rahatarmanahmed.cpv.CircularProgressView: void setColor(int) +retrofit2.Platform: java.util.List defaultCallAdapterFactories(java.util.concurrent.Executor) +james.adaptiveicon.R$dimen: int abc_text_size_body_1_material +wangdaye.com.geometricweather.weather.apis.CaiYunApi +androidx.legacy.coreutils.R$id: int notification_background +wangdaye.com.geometricweather.R$drawable: int notif_temp_111 +okio.Buffer: okio.BufferedSink writeDecimalLong(long) +android.didikee.donate.R$styleable: int ActionBar_hideOnContentScroll +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: boolean hasValue +cyanogenmod.providers.CMSettings$System: java.lang.String NAVIGATION_BAR_MENU_ARROW_KEYS +com.turingtechnologies.materialscrollbar.R$dimen: int notification_top_pad_large_text +james.adaptiveicon.R$styleable: int AppCompatTheme_homeAsUpIndicator +android.didikee.donate.R$dimen: int abc_text_size_display_4_material +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: MfForecastV2Result$ForecastProperties$ForecastV2() +com.google.android.material.R$attr: int drawableEndCompat +cyanogenmod.weather.IRequestInfoListener$Stub: int TRANSACTION_onWeatherRequestCompleted +okhttp3.MediaType: java.lang.String subtype +androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.LifecycleRegistry mRegistry +okio.Timeout: okio.Timeout deadlineNanoTime(long) +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_gravity +androidx.appcompat.R$color: int accent_material_dark +androidx.hilt.R$id: int action_text +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris ephemeris +com.google.gson.internal.LazilyParsedNumber: boolean equals(java.lang.Object) +androidx.hilt.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.db.entities.DailyEntity: void setId(java.lang.Long) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setAddress(java.lang.String) +androidx.appcompat.view.menu.ExpandedMenuView: ExpandedMenuView(android.content.Context,android.util.AttributeSet) +com.bumptech.glide.load.engine.GlideException: java.lang.String getMessage() +james.adaptiveicon.R$styleable: int MenuGroup_android_enabled +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: java.lang.String getAddress() +wangdaye.com.geometricweather.R$id: int text +cyanogenmod.app.LiveLockScreenInfo$1: cyanogenmod.app.LiveLockScreenInfo[] newArray(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: java.lang.String Unit +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void removeCustomTileFromListener(cyanogenmod.app.ICustomTileListener,java.lang.String,java.lang.String,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: AccuCurrentResult$TemperatureSummary$Past12HourRange() +com.google.android.material.tabs.TabLayout: void removeOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_stacked_max_height +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconTintMode +com.google.android.material.R$color: int mtrl_card_view_foreground +androidx.savedstate.SavedStateRegistry$1 +wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_clipToPadding +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float pressure +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +android.didikee.donate.R$dimen: int notification_media_narrow_margin +com.google.android.material.R$styleable: int Tooltip_android_text +wangdaye.com.geometricweather.R$attr: int actionModeCloseButtonStyle +androidx.fragment.R$id: int tag_unhandled_key_event_manager +androidx.constraintlayout.widget.R$attr: int actionModeCloseButtonStyle +okhttp3.internal.http2.Http2Reader$Handler: void goAway(int,okhttp3.internal.http2.ErrorCode,okio.ByteString) +androidx.preference.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +okhttp3.internal.http.HttpCodec: okhttp3.Response$Builder readResponseHeaders(boolean) +james.adaptiveicon.R$styleable: int ActionMode_background +com.google.android.material.R$dimen: int compat_button_inset_horizontal_material +com.google.android.material.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Long getId() +com.google.android.material.bottomappbar.BottomAppBar$Behavior +com.google.android.material.R$style: int Theme_MaterialComponents_CompactMenu +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRainPrecipitation(java.lang.Float) +com.google.android.gms.common.server.response.zak: android.os.Parcelable$Creator CREATOR +com.google.android.gms.location.zzbe +wangdaye.com.geometricweather.R$layout: int container_alert_display_view +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog +wangdaye.com.geometricweather.R$id: int textEnd +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(android.os.Parcel) +cyanogenmod.app.CustomTile$ExpandedItem: android.os.Parcelable$Creator CREATOR +com.jaredrummler.android.colorpicker.R$attr: int summary +androidx.hilt.R$styleable: int Fragment_android_tag +wangdaye.com.geometricweather.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.R$styleable: int FitSystemBarRecyclerView_rv_side +androidx.appcompat.view.menu.ActionMenuItemView: void setItemInvoker(androidx.appcompat.view.menu.MenuBuilder$ItemInvoker) +androidx.hilt.R$id: int accessibility_custom_action_13 +androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox +androidx.appcompat.R$color: int ripple_material_dark +androidx.appcompat.R$dimen: int abc_dropdownitem_text_padding_right +androidx.drawerlayout.R$layout: int notification_template_custom_big +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_CBC_SHA +wangdaye.com.geometricweather.R$color: int colorTextLight2nd +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onKeyguardDismissed() +androidx.lifecycle.LifecycleOwner: androidx.lifecycle.Lifecycle getLifecycle() +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +com.google.android.material.R$style: int Base_Animation_AppCompat_Tooltip +com.google.android.material.R$drawable: int material_cursor_drawable +wangdaye.com.geometricweather.R$array: int live_wallpaper_day_night_types +androidx.constraintlayout.widget.R$attr: int triggerSlack +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_fontVariationSettings +com.jaredrummler.android.colorpicker.R$attr: int measureWithLargestChild +wangdaye.com.geometricweather.R$attr: int prefixTextAppearance +wangdaye.com.geometricweather.R$animator: int weather_fog_1 +wangdaye.com.geometricweather.R$attr: int contentPaddingBottom +com.google.android.material.R$styleable: int RecycleListView_paddingTopNoTitle +androidx.appcompat.R$color: int secondary_text_default_material_dark +wangdaye.com.geometricweather.R$styleable: int[] MaterialToolbar +androidx.constraintlayout.widget.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$attr: int hintTextAppearance +android.didikee.donate.R$attr: int tickMark +androidx.constraintlayout.widget.R$id: int expand_activities_button +com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_android_button +com.google.android.material.textfield.TextInputLayout: void addOnEditTextAttachedListener(com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener) +androidx.constraintlayout.widget.R$attr: int moveWhenScrollAtTop +james.adaptiveicon.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_30 +androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context,android.util.AttributeSet) +okhttp3.internal.cache.InternalCache: okhttp3.Response get(okhttp3.Request) +wangdaye.com.geometricweather.R$drawable: int abc_btn_check_material_anim +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_checkboxStyle +okhttp3.OkHttpClient$1: void apply(okhttp3.ConnectionSpec,javax.net.ssl.SSLSocket,boolean) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$string: int path_password_eye_mask_visible +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +androidx.appcompat.widget.Toolbar: int getContentInsetRight() +androidx.coordinatorlayout.R$id: int tag_transition_group +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMarkTint +androidx.coordinatorlayout.R$id: int accessibility_custom_action_10 +okio.Okio$2: Okio$2(okio.Timeout,java.io.InputStream) +okhttp3.OkHttpClient: int readTimeout +wangdaye.com.geometricweather.R$id: int container_main_header_aqiOrWindTxt +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_rtl +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textFontWeight +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionMode +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: java.lang.String Unit +com.xw.repo.bubbleseekbar.R$anim: R$anim() +wangdaye.com.geometricweather.R$style: int Base_DialogWindowTitle_AppCompat +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: long serialVersionUID +okhttp3.internal.http2.Http2Connection: void start(boolean) +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: ObservableTakeLast$TakeLastObserver(io.reactivex.Observer,int) +cyanogenmod.hardware.CMHardwareManager: int getVibratorIntensity() +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Body_Text +wangdaye.com.geometricweather.R$attr: int text_color +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabView +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: ExternalViewProviderService$Provider$ProviderImpl$7(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,int,int,int,int,boolean,android.graphics.Rect) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_spinnerStyle +wangdaye.com.geometricweather.R$id: int both +com.jaredrummler.android.colorpicker.R$attr: int buttonGravity +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListMenuView +wangdaye.com.geometricweather.R$attr: int buttonBarStyle +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +okhttp3.internal.http2.Http2Reader$ContinuationSource: short padding +androidx.preference.R$string: int preference_copied +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_focused +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearTodayStyle +com.xw.repo.bubbleseekbar.R$attr: int spinBars com.google.android.material.R$id: int stretch -okio.RealBufferedSink: okio.BufferedSink writeDecimalLong(long) -androidx.preference.R$drawable: int abc_list_longpressed_holo -androidx.preference.R$style: int Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: boolean isValid() -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMode -com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonTint -io.reactivex.internal.util.VolatileSizeArrayList: int size() -com.google.android.material.R$styleable: int ImageFilterView_crossfade -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -androidx.constraintlayout.widget.R$styleable: int Layout_layout_editor_absoluteX -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSearchResultSubtitle -androidx.preference.R$styleable: int AppCompatTheme_actionBarSplitStyle -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type UNRESTRICTED -okhttp3.internal.http2.Huffman$Node: Huffman$Node(int,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getNo2() -com.google.android.material.navigation.NavigationView: void setItemTextColor(android.content.res.ColorStateList) -com.autonavi.aps.amapapi.model.AMapLocationServer: void a(org.json.JSONObject) -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered -androidx.activity.R$id: int accessibility_custom_action_3 -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -james.adaptiveicon.R$style: int Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_height_material -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner -com.google.android.material.R$attr: int labelBehavior -okhttp3.internal.connection.RealConnection: boolean noNewStreams -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetStart -androidx.fragment.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -cyanogenmod.app.ProfileManager: java.lang.String ACTION_PROFILE_PICKER -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -androidx.legacy.coreutils.R$styleable: int GradientColor_android_startY -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_submitBackground -com.xw.repo.bubbleseekbar.R$dimen: int notification_main_column_padding_top -androidx.loader.R$styleable: int FontFamilyFont_android_font -com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_disable_only_material_light -androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton -james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags -com.google.android.material.R$attr: int tickColorActive -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackTintList() -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_CLOCK_TEXT_COLOR -wangdaye.com.geometricweather.R$string: int night -wangdaye.com.geometricweather.R$string: int common_google_play_services_notification_channel_name -com.google.android.material.R$style: int Platform_V21_AppCompat -androidx.loader.R$layout: int notification_template_part_chronometer -com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_android_popupBackground -com.google.android.material.R$id: int test_checkbox_app_button_tint -wangdaye.com.geometricweather.R$id: int widget_day_sign -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getPivotY() -androidx.appcompat.resources.R$drawable: int notification_bg_low_normal -androidx.constraintlayout.widget.R$style: int Base_V22_Theme_AppCompat_Light -com.google.android.material.timepicker.TimePickerView -com.turingtechnologies.materialscrollbar.R$attr: int buttonStyle -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int CLOUDY -androidx.appcompat.R$styleable: int AppCompatTheme_homeAsUpIndicator -androidx.constraintlayout.widget.R$drawable: int abc_ic_voice_search_api_material -wangdaye.com.geometricweather.R$attr: int animationDuration -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String y -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -com.jaredrummler.android.colorpicker.R$attr: int actionModeSelectAllDrawable -com.google.android.material.R$dimen: int mtrl_btn_text_btn_padding_left -com.google.android.material.internal.StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException: StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException(java.lang.Throwable) -wangdaye.com.geometricweather.search.SearchActivityViewModel -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_overflow_padding_start_material -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_enabled -wangdaye.com.geometricweather.R$attr: int titleTextColor -okio.Buffer: short readShortLe() -androidx.customview.R$layout -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Title -androidx.preference.R$id: int item_touch_helper_previous_elevation -androidx.fragment.R$id: int normal -androidx.work.R$id: int tag_transition_group -androidx.appcompat.R$drawable: int abc_scrubber_control_off_mtrl_alpha -james.adaptiveicon.R$attr: int thickness -androidx.appcompat.R$attr: int titleMargin -androidx.work.R$id: int italic -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton -wangdaye.com.geometricweather.R$layout: int mtrl_layout_snackbar_include -com.google.android.material.R$attr: int nestedScrollFlags -com.google.android.material.R$layout: int abc_list_menu_item_layout -com.turingtechnologies.materialscrollbar.R$attr: int singleSelection -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Badge -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetEnd -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.util.List toDailyTrendDisplayList(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveVariesBy -cyanogenmod.externalviews.KeyguardExternalView$7: cyanogenmod.externalviews.KeyguardExternalView this$0 -com.google.android.material.R$id: int search_voice_btn -androidx.appcompat.R$dimen: int highlight_alpha_material_light -wangdaye.com.geometricweather.R$string: int widget_clock_day_vertical -com.turingtechnologies.materialscrollbar.R$attr: int listMenuViewStyle -cyanogenmod.profiles.RingModeSettings: boolean isDirty() -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float no2 -androidx.hilt.R$id: int accessibility_custom_action_9 -androidx.appcompat.R$drawable: int abc_text_cursor_material -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_shift_shortcut_label -okhttp3.Cache: java.lang.String key(okhttp3.HttpUrl) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_RESULT_VALUE -com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeTopLeft -okhttp3.CacheControl: boolean mustRevalidate() -androidx.hilt.work.R$id: int tag_screen_reader_focusable -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void addScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -wangdaye.com.geometricweather.R$id: int parent_matrix -androidx.preference.R$styleable: int Toolbar_android_minHeight -cyanogenmod.app.CMStatusBarManager: CMStatusBarManager(android.content.Context) -androidx.preference.R$attr: int textAppearancePopupMenuHeader -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemRippleColor -androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableCompat -wangdaye.com.geometricweather.R$color: int material_slider_halo_color -wangdaye.com.geometricweather.R$id: int search_close_btn -com.google.android.material.appbar.ViewOffsetBehavior: ViewOffsetBehavior() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: int UnitType -com.amap.api.fence.GeoFenceClient: void addGeoFence(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String) -com.google.android.material.R$styleable: int[] ActionMenuItemView -okhttp3.internal.ws.WebSocketReader: void readMessage() -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String weatherSource -com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode -androidx.lifecycle.Transformations: Transformations() -androidx.transition.R$styleable: int ColorStateListItem_alpha -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: android.os.IBinder createExternalView(android.os.Bundle) -androidx.coordinatorlayout.R$color: R$color() -androidx.hilt.lifecycle.R$layout: int notification_template_part_time -androidx.preference.R$attr: int actionBarItemBackground -com.amap.api.location.AMapLocationQualityReport: void setLocationMode(com.amap.api.location.AMapLocationClientOption$AMapLocationMode) -wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_height -android.didikee.donate.R$attr: int collapseIcon -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderFetchStrategy -okhttp3.internal.Util: java.lang.String trimSubstring(java.lang.String,int,int) -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String MODIFY_ALARMS_PERMISSION -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_inverse_material_dark -com.google.android.material.chip.ChipGroup: void setChipSpacingVerticalResource(int) -okio.BufferedSource: void readFully(byte[]) -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_toId -androidx.hilt.R$attr: int fontProviderFetchStrategy -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDataConnectionSelectedOnSub -com.google.android.material.R$styleable: int Toolbar_buttonGravity -androidx.preference.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.os.Bundle mOptions -com.google.android.material.R$id: int accessibility_custom_action_24 -cyanogenmod.profiles.BrightnessSettings: boolean isDirty() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean isEntityUpdateable() -okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withConnectTimeout(int,java.util.concurrent.TimeUnit) -androidx.constraintlayout.widget.R$attr: int titleTextColor -androidx.hilt.R$dimen: int notification_big_circle_margin -com.github.rahatarmanahmed.cpv.CircularProgressView: void updatePaint() -androidx.appcompat.R$attr: int radioButtonStyle -androidx.viewpager.widget.PagerTabStrip: int getTabIndicatorColor() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Icon -androidx.hilt.R$id: int chronometer -retrofit2.converter.gson.GsonConverterFactory: retrofit2.converter.gson.GsonConverterFactory create() -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_9 -com.google.android.material.internal.BaselineLayout: int getBaseline() -com.google.android.material.R$id: int action_bar_container -androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_alpha -androidx.drawerlayout.R$layout: int notification_template_icon_group -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type ERROR -android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -cyanogenmod.app.ThemeVersion: cyanogenmod.app.ThemeVersion$ComponentVersion getComponentVersion(cyanogenmod.app.ThemeComponent) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getCity() -wangdaye.com.geometricweather.R$attr: int chipIcon -androidx.constraintlayout.widget.R$attr: int thumbTint -com.google.android.material.R$attr: int autoSizeTextType -wangdaye.com.geometricweather.R$font: int product_sans_bold -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$string: int daytime -com.google.android.material.R$attr: int shapeAppearanceMediumComponent -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_createCustomTileWithTag -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatSeekBar -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$style: int AlertDialog_AppCompat -androidx.transition.R$styleable: int GradientColor_android_startX -androidx.lifecycle.LifecycleRegistry: void pushParentState(androidx.lifecycle.Lifecycle$State) -com.xw.repo.bubbleseekbar.R$integer: int abc_config_activityDefaultDur -androidx.drawerlayout.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$string: int abc_capital_off +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable +com.turingtechnologies.materialscrollbar.R$id: int shortcut +wangdaye.com.geometricweather.R$styleable: int Preference_title +androidx.appcompat.widget.FitWindowsFrameLayout: FitWindowsFrameLayout(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum +wangdaye.com.geometricweather.R$string: int email +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_framePosition +okhttp3.internal.http2.Http2: int INITIAL_MAX_FRAME_SIZE +io.reactivex.Observable: io.reactivex.Observable using(java.util.concurrent.Callable,io.reactivex.functions.Function,io.reactivex.functions.Consumer,boolean) +wangdaye.com.geometricweather.R$drawable: int notif_temp_64 +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getWeatherText() +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_textAllCaps +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Light +androidx.loader.R$dimen: R$dimen() +wangdaye.com.geometricweather.R$dimen: int material_clock_size +okhttp3.Dispatcher: void setMaxRequestsPerHost(int) +androidx.preference.R$attr: int state_above_anchor +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String country +io.reactivex.Observable: io.reactivex.Observable skipLast(int) +wangdaye.com.geometricweather.db.entities.DaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession() +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleGravity +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer dbz +james.adaptiveicon.R$attr: int windowActionBar +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.common.ui.behaviors.InkPageIndicatorBehavior: InkPageIndicatorBehavior(android.content.Context,android.util.AttributeSet) +androidx.viewpager2.R$attr: int fastScrollVerticalThumbDrawable +android.didikee.donate.R$id: int radio +okhttp3.MediaType: java.nio.charset.Charset charset() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayModes +com.jaredrummler.android.colorpicker.R$string: int abc_activitychooserview_choose_application +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: java.lang.String getDesc() +com.google.android.material.R$styleable: int OnSwipe_dragDirection +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String wind_direct +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_SECURE_SETTINGS +com.google.android.material.R$id: int autoCompleteToEnd +androidx.viewpager.R$styleable: int ColorStateListItem_android_alpha +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +androidx.dynamicanimation.R$drawable: int notification_bg_low_normal +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context) +androidx.constraintlayout.widget.R$attr: int voiceIcon +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_height +okhttp3.CipherSuite: java.lang.String javaName() +com.turingtechnologies.materialscrollbar.Handle: void setRightToLeft(boolean) +wangdaye.com.geometricweather.R$id: int FUNCTION +io.reactivex.Observable: io.reactivex.Observable window(java.util.concurrent.Callable,int) +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification +com.google.android.material.R$id: int spacer +androidx.constraintlayout.widget.R$string: int abc_toolbar_collapse_description +androidx.preference.R$id: int customPanel +wangdaye.com.geometricweather.R$id: int item +cyanogenmod.providers.CMSettings$System$1: boolean validate(java.lang.String) +wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundDialog +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPublishTime(long) +androidx.constraintlayout.widget.R$attr: int colorControlNormal +com.turingtechnologies.materialscrollbar.R$attr: int progressBarStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_65 +james.adaptiveicon.R$layout: int abc_expanded_menu_layout +com.turingtechnologies.materialscrollbar.R$id: int action_context_bar +james.adaptiveicon.R$id: int line3 +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_type +com.jaredrummler.android.colorpicker.R$attr: int contentInsetEndWithActions +androidx.coordinatorlayout.R$dimen: int compat_button_padding_vertical_material +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +james.adaptiveicon.R$attr: int alertDialogCenterButtons +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: MfHistoryResult$History$Weather() +cyanogenmod.util.ColorUtils: int generateAlertColorFromDrawable(android.graphics.drawable.Drawable) +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackInactiveTintList() +androidx.work.impl.foreground.SystemForegroundService +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric Metric +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_menuCategory +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableBottomCompat +okhttp3.Response +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: IExternalViewProviderFactory$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$drawable: int ic_temperature_fahrenheit +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_Bridge +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String level +androidx.viewpager.R$drawable: int notify_panel_notification_icon_bg +com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.util.Date time +androidx.constraintlayout.widget.R$styleable: int Constraint_android_transformPivotX +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerComplete() +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: java.lang.String getInterfaceDescriptor() +james.adaptiveicon.R$dimen: int abc_text_size_subhead_material +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String pkg +androidx.preference.R$styleable: int ColorStateListItem_alpha +com.bumptech.glide.integration.okhttp.R$id: int right +com.google.android.material.internal.ForegroundLinearLayout: void setForeground(android.graphics.drawable.Drawable) +androidx.constraintlayout.widget.R$attr: int touchAnchorId +okhttp3.Response: void close() +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind wind +com.xw.repo.bubbleseekbar.R$color: int dim_foreground_material_dark +com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorType(int) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalBias +com.amap.api.location.AMapLocation: java.lang.String getStreetNum() +com.turingtechnologies.materialscrollbar.R$color: int abc_btn_colored_borderless_text_material +wangdaye.com.geometricweather.R$styleable: int MaterialButton_strokeWidth +androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_body_2_material +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +cyanogenmod.themes.ThemeChangeRequest$Builder: ThemeChangeRequest$Builder(android.content.res.ThemeConfig) +com.google.android.material.textfield.TextInputLayout: void setEndIconDrawable(android.graphics.drawable.Drawable) +com.amap.api.location.AMapLocation: java.lang.String j +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: double Value +androidx.recyclerview.R$styleable: int RecyclerView_stackFromEnd +com.google.android.material.R$styleable: int MenuView_android_windowAnimationStyle +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_SLOW_AVG +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_icon_vertical_padding_material +androidx.recyclerview.widget.RecyclerView: void setAccessibilityDelegateCompat(androidx.recyclerview.widget.RecyclerViewAccessibilityDelegate) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: int getStatus() +androidx.appcompat.R$styleable: int[] View +wangdaye.com.geometricweather.R$id: int item_aqi +androidx.appcompat.widget.AppCompatImageButton: void setImageURI(android.net.Uri) +com.google.android.material.R$xml: int standalone_badge_gravity_top_start +cyanogenmod.themes.ThemeChangeRequest$1: cyanogenmod.themes.ThemeChangeRequest[] newArray(int) +wangdaye.com.geometricweather.location.utils.LocationException: LocationException(int,java.lang.String) +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void drainLoop() +wangdaye.com.geometricweather.common.basic.models.weather.Base: long getUpdateTime() +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +wangdaye.com.geometricweather.R$attr: int flow_firstHorizontalStyle +com.google.android.material.R$layout: int abc_action_menu_layout +androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$font: int product_sans_regular +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: AccuDailyResult$DailyForecasts$Night$Rain() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_controlBackground +okhttp3.internal.http1.Http1Codec: void flushRequest() +androidx.preference.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy TRANSFORMED +wangdaye.com.geometricweather.R$id: int dialog_location_help_manageContainer +androidx.fragment.app.FragmentManagerState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int Chip_android_text +com.google.android.material.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarSwitch +com.google.android.material.R$id +androidx.appcompat.widget.SwitchCompat: boolean getSplitTrack() +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.ICMWeatherManager sWeatherManagerService +okhttp3.internal.connection.StreamAllocation: void noNewStreams() +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth +com.google.android.material.R$drawable: int design_ic_visibility +com.google.android.material.R$attr: int chipStrokeColor +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorEnabled +androidx.appcompat.R$drawable: int abc_btn_check_to_on_mtrl_015 +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +wangdaye.com.geometricweather.R$string: int key_refresh_rate +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeStyle +com.google.android.material.R$drawable: int notification_action_background +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +okhttp3.Cache$CacheRequestImpl: okio.Sink cacheOut +com.google.android.material.R$dimen: int mtrl_calendar_header_content_padding_fullscreen +wangdaye.com.geometricweather.R$color: int design_icon_tint +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: java.lang.String English +com.xw.repo.bubbleseekbar.R$layout: int abc_tooltip +wangdaye.com.geometricweather.R$attr: int showSeekBarValue +androidx.appcompat.R$dimen: int abc_text_size_display_2_material +androidx.appcompat.R$color: int secondary_text_disabled_material_light +wangdaye.com.geometricweather.R$dimen: int abc_control_inset_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum() +androidx.lifecycle.extensions.R$layout: int notification_action +com.google.android.material.R$styleable: int DrawerArrowToggle_arrowShaftLength +wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonCompat +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +androidx.viewpager2.R$dimen: int fastscroll_margin +james.adaptiveicon.R$styleable: int AppCompatImageView_android_src +okhttp3.internal.cache2.FileOperator: void read(long,okio.Buffer,long) +wangdaye.com.geometricweather.R$string: int feedback_request_location +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +wangdaye.com.geometricweather.R$color: int background_material_dark +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Subhead +wangdaye.com.geometricweather.R$string: int content_des_moonrise +wangdaye.com.geometricweather.R$styleable: int Slider_trackColorInactive +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Caption +okhttp3.Challenge: Challenge(java.lang.String,java.util.Map) +android.didikee.donate.R$style: int Platform_Widget_AppCompat_Spinner +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_size_mini +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_corner_radius +com.google.android.material.R$attr: int indicatorColors +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Solid +com.google.android.material.R$styleable: int ActionBar_contentInsetEndWithActions +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver +com.google.android.material.textfield.MaterialAutoCompleteTextView: java.lang.CharSequence getHint() +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +androidx.constraintlayout.widget.R$attr: int collapseContentDescription +androidx.recyclerview.R$id: int action_container +james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlNormal +androidx.hilt.work.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation Elevation +androidx.appcompat.R$styleable: int AnimatedStateListDrawableItem_android_id +wangdaye.com.geometricweather.R$id: int notification_big_week_2 +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_AU +com.google.android.material.R$id: int text +wangdaye.com.geometricweather.R$styleable: int OnClick_clickAction +androidx.constraintlayout.widget.R$layout: int abc_select_dialog_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Type +androidx.lifecycle.extensions.R: R() +okhttp3.internal.http2.Http2Reader$Handler: void ackSettings() +androidx.cardview.R$dimen +com.google.android.material.button.MaterialButton: void setIconTintMode(android.graphics.PorterDuff$Mode) +androidx.preference.R$id: int actions +androidx.constraintlayout.widget.R$id: int custom +com.google.android.material.slider.BaseSlider: void setThumbTintList(android.content.res.ColorStateList) +androidx.appcompat.widget.SwitchCompat: android.graphics.drawable.Drawable getTrackDrawable() +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_searchHintIcon +android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int Fragment_android_id +androidx.preference.R$styleable: int LinearLayoutCompat_android_baselineAligned +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldLevel +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String title +com.google.android.material.R$layout: int abc_cascading_menu_item_layout +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_3_material +com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$id: int submit_area +com.google.android.material.R$styleable: int ChipGroup_singleLine +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.Date Date +okhttp3.RealCall: RealCall(okhttp3.OkHttpClient,okhttp3.Request,boolean) +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void cancel() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String getFrom() +com.xw.repo.bubbleseekbar.R$id: int icon_group +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowColor +androidx.appcompat.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +io.reactivex.Observable: io.reactivex.Observable startWithArray(java.lang.Object[]) +com.xw.repo.bubbleseekbar.R$id: int topPanel +com.google.android.material.R$color: int abc_tint_edittext +android.didikee.donate.R$styleable: int AppCompatTheme_popupWindowStyle +wangdaye.com.geometricweather.R$attr: int placeholderTextAppearance +wangdaye.com.geometricweather.R$attr: int progress +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias +com.google.android.material.R$styleable: int BottomNavigationView_labelVisibilityMode +com.amap.api.location.AMapLocationClient: void enableBackgroundLocation(int,android.app.Notification) +com.google.android.material.R$drawable: int abc_btn_borderless_material +wangdaye.com.geometricweather.R$string: int snow +okhttp3.ConnectionPool: int maxIdleConnections +okhttp3.internal.Util: int skipTrailingAsciiWhitespace(java.lang.String,int,int) +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_EXTRA +androidx.preference.R$dimen: int abc_edit_text_inset_bottom_material +com.google.android.material.R$attr: int onHide +com.google.android.material.R$string: int abc_shareactionprovider_share_with +com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_dark +androidx.constraintlayout.widget.R$id: int action_bar_subtitle +com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog +wangdaye.com.geometricweather.R$animator: int weather_rain_2 +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout +android.didikee.donate.R$styleable: int[] ButtonBarLayout +androidx.preference.R$style: int AlertDialog_AppCompat_Light +android.didikee.donate.R$attr: int panelMenuListTheme +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar +com.google.android.material.R$styleable: int OnSwipe_dragThreshold +com.google.android.material.R$style: int Widget_AppCompat_ListView +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_41 +wangdaye.com.geometricweather.R$attr: int chipEndPadding +androidx.appcompat.widget.SearchView: SearchView(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +androidx.viewpager2.R$color: R$color() +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getDegreeDayTemperature() +com.google.android.material.card.MaterialCardView: void setCheckedIconMarginResource(int) +androidx.vectordrawable.animated.R$attr: R$attr() +androidx.preference.R$styleable: int[] CoordinatorLayout +wangdaye.com.geometricweather.R$layout: int test_reflow_chipgroup +com.google.android.material.R$dimen: int design_bottom_navigation_height +androidx.lifecycle.LiveData: void onActive() +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windSpeedStart +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_popupTheme +androidx.core.app.JobIntentService +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth +androidx.hilt.R$id: int right_icon +androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +wangdaye.com.geometricweather.R$attr: int alertDialogStyle +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_66 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial Imperial +com.google.android.material.R$styleable: int AlertDialog_singleChoiceItemLayout +com.xw.repo.bubbleseekbar.R$style: int Base_V26_Theme_AppCompat +retrofit2.Retrofit: okhttp3.Call$Factory callFactory() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max +okhttp3.internal.cache2.Relay$RelaySource: long read(okio.Buffer,long) +com.amap.api.location.AMapLocationQualityReport: java.lang.String getAdviseMessage() +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_icon_text_spacing +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setStatus(int) +okhttp3.Cache: int hitCount +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void clear() +wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format +com.google.android.material.R$attr: int windowFixedHeightMinor +wangdaye.com.geometricweather.R$styleable: int PopupWindowBackgroundState_state_above_anchor +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter jsonValue(java.lang.String) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_voice_search_api_material +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Display_TextInputEditText +com.google.android.material.chip.ChipGroup: void setChipSpacing(int) +wangdaye.com.geometricweather.R$attr: int linearSeamless +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String brandId +androidx.appcompat.R$attr: int measureWithLargestChild +okhttp3.internal.cache2.Relay: okio.Buffer upstreamBuffer +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onComplete() +com.google.android.material.R$styleable: int SearchView_iconifiedByDefault +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeDegreeDayTemperature() +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_unregisterChangeListener +com.google.android.material.R$id: int material_clock_display +wangdaye.com.geometricweather.R$string: int day +androidx.viewpager.R$id: int icon_group +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Choice +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: boolean val$visible +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginLeft +com.jaredrummler.android.colorpicker.R$attr: int closeIcon +wangdaye.com.geometricweather.common.basic.models.weather.History: History(java.util.Date,long,int,int) +wangdaye.com.geometricweather.R$color: int design_default_color_primary_variant +okhttp3.internal.connection.StreamAllocation: void streamFailed(java.io.IOException) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WEATHER_CODE_MAX +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontStyle +com.google.android.material.R$styleable: int MockView_mock_labelColor +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.internal.util.AtomicThrowable errors com.google.android.material.R$attr: int materialCalendarTheme -wangdaye.com.geometricweather.R$color: int primary_text_disabled_material_dark -wangdaye.com.geometricweather.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$style: int Preference_Information -androidx.lifecycle.SavedStateHandle$1: androidx.lifecycle.SavedStateHandle this$0 -androidx.appcompat.widget.Toolbar: android.widget.TextView getTitleTextView() -androidx.constraintlayout.widget.R$attr: int customPixelDimension -androidx.preference.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -wangdaye.com.geometricweather.R$attr: int colorOnSurface -okhttp3.internal.ws.WebSocketProtocol: long PAYLOAD_SHORT_MAX -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() -wangdaye.com.geometricweather.R$id: int widget_clock_day_wind -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_strokeWidth +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderPackage +androidx.preference.R$styleable: int StateListDrawable_android_dither +androidx.work.ListenableWorker +wangdaye.com.geometricweather.R$color: int mtrl_btn_text_color_selector +okio.SegmentedByteString: java.lang.String toString() +androidx.preference.R$style: int Widget_AppCompat_ActionBar_Solid +okhttp3.Cache$Entry: okhttp3.Headers varyHeaders +com.amap.api.location.AMapLocationQualityReport: void setNetworkType(java.lang.String) +androidx.recyclerview.R$attr: int fontProviderFetchStrategy +com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingLeft() +wangdaye.com.geometricweather.R$string: int abc_action_menu_overflow_description +androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_weight +wangdaye.com.geometricweather.R$attr: int iconResStart +wangdaye.com.geometricweather.db.entities.WeatherEntity: int getTemperature() +androidx.viewpager.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$attr: int bsb_section_text_interval +android.didikee.donate.R$color: int abc_primary_text_material_dark +androidx.preference.R$attr: int closeIcon +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: java.lang.String Unit +cyanogenmod.app.ICMStatusBarManager: void registerListener(cyanogenmod.app.ICustomTileListener,android.content.ComponentName,int) +androidx.appcompat.R$id: int expand_activities_button +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxPlain +androidx.preference.R$drawable: int abc_text_select_handle_middle_mtrl_light +com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +com.google.android.material.R$styleable: int Toolbar_buttonGravity +okhttp3.HttpUrl: char[] HEX_DIGITS +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String readKey(android.database.Cursor,int) +androidx.preference.R$id: int item_touch_helper_previous_elevation +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_2_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric +wangdaye.com.geometricweather.db.entities.MinutelyEntity: MinutelyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer) +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cdp +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.IRequestInfoListener mListener +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event BACKGROUND_UPDATE +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayHorizontalWidgetConfigActivity +okhttp3.internal.Util: java.util.List immutableList(java.lang.Object[]) +com.google.android.material.bottomnavigation.BottomNavigationPresenter$SavedState +androidx.legacy.coreutils.R$id: int tag_unhandled_key_listeners +com.xw.repo.bubbleseekbar.R$attr: int actionModeShareDrawable +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_keylines +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.DailyEntity) +androidx.room.MultiInstanceInvalidationService: MultiInstanceInvalidationService() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ButtonBar +com.google.android.material.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon +okhttp3.Cache$CacheRequestImpl$1: okhttp3.internal.cache.DiskLruCache$Editor val$editor +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.lang.Object poll() +androidx.preference.R$dimen: int abc_dropdownitem_icon_width +androidx.activity.R$style: int Widget_Compat_NotificationActionContainer +androidx.core.R$attr +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.functions.Function mapper +wangdaye.com.geometricweather.R$styleable: int MenuItem_iconTint +com.google.android.material.R$styleable: int Constraint_flow_horizontalAlign +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_left_mtrl_dark +cyanogenmod.app.ProfileManager: android.app.NotificationGroup getNotificationGroup(java.util.UUID) +wangdaye.com.geometricweather.R$id: int META +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_overflow_material +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.Scheduler$Worker worker +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf +james.adaptiveicon.R$style: int Base_V26_Theme_AppCompat +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean mAskedShow +androidx.preference.R$id: int action_bar_subtitle +okio.AsyncTimeout$2: okio.Source val$source +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: io.reactivex.Observer observer +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial Imperial +james.adaptiveicon.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: ILiveLockScreenManagerProvider$Stub$Proxy(android.os.IBinder) +androidx.preference.R$style: int Base_AlertDialog_AppCompat +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Blue +wangdaye.com.geometricweather.R$xml: int icon_provider_sun_moon_filter +androidx.preference.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginEnd +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationMode i +wangdaye.com.geometricweather.R$id: R$id() +androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStore,androidx.lifecycle.ViewModelProvider$Factory) +androidx.preference.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +wangdaye.com.geometricweather.R$color: int colorTextContent_dark +androidx.preference.R$drawable: int abc_text_select_handle_left_mtrl_dark +androidx.appcompat.widget.LinearLayoutCompat: void setShowDividers(int) +androidx.hilt.R$styleable: R$styleable() +okhttp3.Interceptor$Chain: int connectTimeoutMillis() +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setThunderstormPrecipitation(java.lang.Float) +com.bumptech.glide.load.engine.GlideException: java.lang.Exception getOrigin() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +androidx.lifecycle.DefaultLifecycleObserver +androidx.vectordrawable.R$id: int action_container +cyanogenmod.app.Profile$ProfileTrigger$1 +wangdaye.com.geometricweather.db.entities.WeatherEntity +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_android_gravity +wangdaye.com.geometricweather.R$styleable: int Transition_transitionDisable +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_item_icon_padding +wangdaye.com.geometricweather.R$id: int item_icon_provider_previewButton +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.util.Date date +androidx.appcompat.R$styleable: int AppCompatTextView_drawableTintMode +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status[] values() +com.jaredrummler.android.colorpicker.R$attr: int tintMode +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +com.google.android.material.circularreveal.CircularRevealLinearLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality airQuality +cyanogenmod.externalviews.ExternalView$7: void run() +androidx.preference.R$styleable: int[] ListPreference +cyanogenmod.library.R james.adaptiveicon.R$styleable: int SwitchCompat_switchMinWidth -james.adaptiveicon.R$layout: R$layout() -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_maximum_default_fullscreen_minor_axis -wangdaye.com.geometricweather.R$drawable: int snackbar_background -androidx.coordinatorlayout.R$dimen: int notification_top_pad -com.google.android.material.navigation.NavigationView: android.view.Menu getMenu() -okio.Segment: okio.Segment pop() -retrofit2.RequestBuilder: okhttp3.HttpUrl$Builder urlBuilder -androidx.activity.R$dimen: int notification_subtext_size -com.google.android.material.textfield.TextInputLayout: void setSuffixTextColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar -androidx.constraintlayout.widget.R$id: int dragLeft -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_gradientRadius -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getOverlayThemePackageName() -james.adaptiveicon.R$attr: int titleMarginStart -okhttp3.HttpUrl$Builder: int effectivePort() -okhttp3.Cache$2: java.lang.Object next() -com.google.android.material.internal.NavigationMenuItemView: void setIcon(android.graphics.drawable.Drawable) -okio.RealBufferedSource: java.lang.String readUtf8LineStrict(long) -james.adaptiveicon.R$attr: int actionBarPopupTheme -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabBarStyle -androidx.vectordrawable.R$dimen: R$dimen() -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderFetchTimeout -com.google.android.material.R$attr: int srcCompat -androidx.constraintlayout.widget.R$styleable: int OnSwipe_maxAcceleration -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_default_mtrl_shape -com.jaredrummler.android.colorpicker.R$style: int Base_V26_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogCornerRadius -androidx.coordinatorlayout.R$styleable: int ColorStateListItem_alpha -cyanogenmod.weatherservice.IWeatherProviderService: void cancelRequest(int) -androidx.coordinatorlayout.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int PrecipitationProbability -wangdaye.com.geometricweather.R$string: int publish_at -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -wangdaye.com.geometricweather.R$styleable: int[] SwitchPreference -okhttp3.logging.LoggingEventListener: void requestBodyEnd(okhttp3.Call,long) -androidx.coordinatorlayout.R$id: int info -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPm25(java.lang.Float) -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginRight -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: ObservableSkipLastTimed$SkipLastTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,boolean) -com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text_color -android.didikee.donate.R$color: int abc_primary_text_disable_only_material_dark -androidx.preference.R$style: int PreferenceSummaryTextStyle -wangdaye.com.geometricweather.R$drawable: int design_ic_visibility -wangdaye.com.geometricweather.R$attr: int behavior_fitToContents -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_progressBarStyle -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle[] values() -cyanogenmod.profiles.AirplaneModeSettings$BooleanState: int STATE_DISALED -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.Class clientProviderClass -androidx.appcompat.R$styleable: int Spinner_android_prompt -wangdaye.com.geometricweather.R$string: int cpv_transparency -android.didikee.donate.R$styleable: int ActionBar_icon -androidx.hilt.work.R$dimen: int notification_main_column_padding_top -com.amap.api.location.AMapLocation: java.lang.String getAddress() -wangdaye.com.geometricweather.R$attr: int minSeparation -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_color -androidx.hilt.lifecycle.R$attr: int fontVariationSettings -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerError(io.reactivex.internal.observers.InnerQueuedObserver,java.lang.Throwable) -androidx.cardview.widget.CardView: android.content.res.ColorStateList getCardBackgroundColor() -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_searchIcon -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_114 -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context,android.util.AttributeSet) -androidx.dynamicanimation.R$attr: int fontProviderCerts -com.bumptech.glide.integration.okhttp.R$id: int tag_transition_group -com.google.android.material.R$dimen: int abc_action_bar_default_height_material -com.jaredrummler.android.colorpicker.R$styleable: int Preference_defaultValue -com.google.android.material.R$style: int Base_V7_Widget_AppCompat_Toolbar -com.jaredrummler.android.colorpicker.R$attr: int controlBackground -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -cyanogenmod.app.CustomTile: boolean sensitiveData -androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentStyle -androidx.work.R$dimen: int notification_action_icon_size -androidx.transition.R$attr: int fontVariationSettings -com.google.android.material.R$drawable: int material_cursor_drawable -wangdaye.com.geometricweather.R$styleable: int[] TextInputLayout -com.google.android.material.R$id: int material_clock_face -com.jaredrummler.android.colorpicker.R$styleable: int View_android_focusable -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_right_mtrl_light -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_stacked_tab_max_width -com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_checked_black -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicInteger wip -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void request(long) -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_SHOW_NONE -okhttp3.internal.cache.CacheInterceptor$1: boolean cacheRequestClosed -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_76 -wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_text_padding_left -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean isUnbounded() -com.xw.repo.bubbleseekbar.R$attr: int checkedTextViewStyle -okhttp3.internal.platform.Platform: byte[] concatLengthPrefixed(java.util.List) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_max -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onResume -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_popupMenuStyle -com.turingtechnologies.materialscrollbar.R$color: int abc_hint_foreground_material_dark -androidx.appcompat.R$styleable: int AppCompatTheme_viewInflaterClass -androidx.recyclerview.widget.RecyclerView: void setRecyclerListener(androidx.recyclerview.widget.RecyclerView$RecyclerListener) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: AccuDailyResult$DailyForecasts$Day() -androidx.lifecycle.ProcessLifecycleOwner: void dispatchPauseIfNeeded() -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSearchResultTitle -androidx.preference.R$string: int abc_toolbar_collapse_description -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemPaddingLeft -androidx.appcompat.R$styleable: int MenuGroup_android_checkableBehavior -androidx.appcompat.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_medium_component -androidx.hilt.work.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.R$dimen: int design_fab_border_width -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.core.R$styleable: int GradientColorItem_android_color -androidx.viewpager.R$styleable: int GradientColorItem_android_color -okhttp3.internal.http2.Http2: java.lang.IllegalArgumentException illegalArgument(java.lang.String,java.lang.Object[]) -com.amap.api.location.AMapLocation: void setLocationType(int) -com.bumptech.glide.R$style -com.turingtechnologies.materialscrollbar.R$color: int cardview_dark_background -com.google.android.material.R$id: int autoComplete -wangdaye.com.geometricweather.R$id: int appBar -androidx.fragment.R$attr: int fontWeight -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -android.didikee.donate.R$styleable: int SearchView_queryBackground -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColorLink -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_max -retrofit2.Platform$Android$MainThreadExecutor: android.os.Handler handler -com.jaredrummler.android.colorpicker.R$styleable: int Preference_key -com.google.android.material.R$styleable: int MotionScene_defaultDuration -okhttp3.internal.http2.Http2Stream: java.util.Deque headersQueue -okhttp3.internal.http2.Hpack$Reader: Hpack$Reader(int,okio.Source) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.Window access$300(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String formattedId -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_clear_material +com.google.android.material.R$layout: R$layout() +com.jaredrummler.android.colorpicker.R$style: int Preference_Information_Material +androidx.constraintlayout.widget.R$styleable: int[] StateSet +androidx.work.impl.utils.futures.AbstractFuture$Failure$1: java.lang.Throwable fillInStackTrace() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight +androidx.core.widget.NestedScrollView: float getBottomFadingEdgeStrength() +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: boolean mWasExecuted +cyanogenmod.platform.R$array: R$array() +okhttp3.internal.ws.RealWebSocket: java.util.List ONLY_HTTP1 +androidx.activity.R$styleable: int FontFamilyFont_android_fontStyle +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio +com.google.android.material.R$id: int outline +io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler,boolean) +wangdaye.com.geometricweather.R$id: int widget_day +retrofit2.converter.gson.GsonConverterFactory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +androidx.hilt.R$anim: int fragment_fast_out_extra_slow_in +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_LAUNCH_VALIDATOR +james.adaptiveicon.R$styleable: int MenuItem_android_checked +wangdaye.com.geometricweather.R$id: int notification_big_temp_4 +com.google.android.material.chip.Chip: void setCloseIconTintResource(int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int IceProbability +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String e() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_CheckBox +androidx.preference.R$styleable: int RecyclerView_android_clipToPadding +androidx.preference.R$attr: int listMenuViewStyle +androidx.viewpager2.widget.ViewPager2 +com.google.android.material.R$styleable: int ProgressIndicator_showDelay +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusTopStart +androidx.lifecycle.LifecycleService: android.os.IBinder onBind(android.content.Intent) +androidx.preference.R$styleable: int[] Toolbar +androidx.cardview.R$attr: R$attr() +androidx.hilt.work.R$id: int right_side +androidx.core.R$drawable: int notification_tile_bg +androidx.vectordrawable.animated.R$dimen: int notification_right_side_padding_top +androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_alpha +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setExpandedStyle(cyanogenmod.app.CustomTile$ExpandedStyle) +com.turingtechnologies.materialscrollbar.R$id: int action_bar_subtitle +io.reactivex.subjects.PublishSubject$PublishDisposable: boolean isDisposed() +com.google.android.material.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitation(java.lang.Float) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: long updateTime +wangdaye.com.geometricweather.db.entities.WeatherEntity: WeatherEntity() +com.google.android.gms.base.R$string: int common_google_play_services_install_title +androidx.core.R$dimen: int notification_top_pad_large_text +retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type lowerBound +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void setCancellable(io.reactivex.functions.Cancellable) +okhttp3.internal.ws.RealWebSocket: void runWriter() +androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_backgroundTintMode +androidx.customview.R$style: int Widget_Compat_NotificationActionContainer +com.bumptech.glide.integration.okhttp.R$id: int top +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_11 +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig alertEntityDaoConfig +wangdaye.com.geometricweather.db.entities.LocationEntity: void setCurrentPosition(boolean) +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void applyAndAckSettings(boolean,okhttp3.internal.http2.Settings) +cyanogenmod.externalviews.KeyguardExternalView: boolean mIsInteractive +okhttp3.Cache$1: void remove(okhttp3.Request) +androidx.appcompat.widget.Toolbar: int getContentInsetEnd() +com.jaredrummler.android.colorpicker.R$attr: int singleLineTitle +androidx.fragment.R$attr: int fontStyle +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle getInstance(java.lang.String) +android.didikee.donate.R$styleable: int SwitchCompat_android_textOff +cyanogenmod.app.ProfileGroup: void setSoundMode(cyanogenmod.app.ProfileGroup$Mode) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric +wangdaye.com.geometricweather.R$drawable: int ic_collected +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_buttonGravity +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_COLOR_VALIDATOR +com.turingtechnologies.materialscrollbar.R$attr: int enforceTextAppearance +cyanogenmod.externalviews.KeyguardExternalView$7: cyanogenmod.externalviews.KeyguardExternalView this$0 +androidx.activity.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$Adapter getAdapter() +com.google.android.material.button.MaterialButton: int getInsetTop() +androidx.drawerlayout.R$id: int notification_main_column +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadPing(okio.ByteString) +androidx.constraintlayout.widget.R$attr: int actionBarTabStyle +androidx.appcompat.R$attr: int actionBarWidgetTheme +com.google.android.material.R$styleable: int PropertySet_android_alpha +wangdaye.com.geometricweather.R$attr: int transitionEasing +wangdaye.com.geometricweather.R$layout: int material_chip_input_combo +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +com.google.android.material.R$styleable: int TextInputLayout_helperTextTextColor +androidx.preference.R$dimen: int tooltip_precise_anchor_threshold +androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_CheckBox +com.google.android.material.R$attr: int listPreferredItemPaddingStart +androidx.lifecycle.SavedStateViewModelFactory: androidx.savedstate.SavedStateRegistry mSavedStateRegistry +com.bumptech.glide.integration.okhttp.R$id: int bottom +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_negativeButtonText +androidx.dynamicanimation.animation.DynamicAnimation: void removeEndListener(androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationEndListener) +com.google.android.material.textfield.TextInputLayout: void setStartIconOnClickListener(android.view.View$OnClickListener) +com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_text +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconTint +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar +com.turingtechnologies.materialscrollbar.R$attr: int activityChooserViewStyle +com.google.android.material.R$style: int Platform_MaterialComponents +james.adaptiveicon.R$attr: int actionDropDownStyle +cyanogenmod.profiles.AirplaneModeSettings: boolean mOverride +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isShow +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_maxWidth +androidx.preference.R$style: int Preference_SeekBarPreference +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void drain() androidx.appcompat.R$attr: int actionModePopupWindowStyle -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean,int,int) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder reencodeForUri() -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer grassLevel -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper -androidx.hilt.R$styleable: int FontFamily_fontProviderQuery -org.greenrobot.greendao.AbstractDaoSession: AbstractDaoSession(org.greenrobot.greendao.database.Database) -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog -io.reactivex.Observable: io.reactivex.Observable unsafeCreate(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_toTopOf -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_spinBars -io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper CANCELLED -wangdaye.com.geometricweather.R$dimen: int notification_media_narrow_margin -okhttp3.Connection: okhttp3.Route route() -okhttp3.internal.Util$1: int compare(java.lang.String,java.lang.String) +com.google.android.material.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_primary_mtrl_alpha +android.didikee.donate.R$attr: int icon +okhttp3.internal.platform.Jdk9Platform: Jdk9Platform(java.lang.reflect.Method,java.lang.reflect.Method) +okhttp3.HttpUrl: okhttp3.HttpUrl parse(java.lang.String) com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -okhttp3.internal.tls.BasicTrustRootIndex: BasicTrustRootIndex(java.security.cert.X509Certificate[]) -androidx.dynamicanimation.R$id: int action_image -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State BLOCKED -com.turingtechnologies.materialscrollbar.R$id: int line3 -okhttp3.FormBody$Builder: okhttp3.FormBody$Builder addEncoded(java.lang.String,java.lang.String) -com.google.android.material.R$attr: int fontProviderPackage -com.google.android.material.chip.Chip: com.google.android.material.animation.MotionSpec getShowMotionSpec() -wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -com.github.rahatarmanahmed.cpv.CircularProgressView: void initAttributes(android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$color: int foreground_material_light -io.reactivex.Observable: io.reactivex.Observable take(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$drawable: int btn_checkbox_checked_mtrl -androidx.appcompat.R$attr: int displayOptions -wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_width -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitation -com.google.android.material.button.MaterialButton: java.lang.String getA11yClassName() -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -androidx.appcompat.R$attr: int thickness -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Small +cyanogenmod.app.ProfileGroup: void validateOverrideUris(android.content.Context) +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onComplete() +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: boolean isDisposed() +com.amap.api.location.AMapLocationQualityReport: int c +androidx.coordinatorlayout.R$id: int icon_group +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Body1 +com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior +okio.Util: void sneakyRethrow(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.R$attr: int windowMinWidthMinor +wangdaye.com.geometricweather.R$attr: int dividerVertical +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: java.lang.String Unit +com.bumptech.glide.integration.okhttp.R$id: int normal +androidx.recyclerview.widget.RecyclerView: int getItemDecorationCount() +wangdaye.com.geometricweather.R$array: int dark_mode_values +cyanogenmod.weather.CMWeatherManager: java.util.Set access$000(cyanogenmod.weather.CMWeatherManager) +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_elevation_material +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback +wangdaye.com.geometricweather.R$integer: int cpv_default_anim_swoop_duration +wangdaye.com.geometricweather.settings.dialogs.ProvidersPreviewerDialog +james.adaptiveicon.R$attr: int dividerHorizontal +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$attr: int layout +com.google.gson.internal.LazilyParsedNumber +androidx.constraintlayout.widget.R$dimen: int abc_alert_dialog_button_bar_height +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setAnimationProgress(float) +com.xw.repo.bubbleseekbar.R$color: int foreground_material_dark +cyanogenmod.hardware.DisplayMode$1: java.lang.Object createFromParcel(android.os.Parcel) +okhttp3.internal.NamedRunnable: void execute() +okhttp3.OkHttpClient: okhttp3.Authenticator proxyAuthenticator() +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ctd +androidx.preference.R$id: int wrap_content +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchPadding +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void cleanup() +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void subscribeNext() +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_popupTheme +wangdaye.com.geometricweather.R$color: int colorRootDark_light +androidx.customview.R$styleable: int GradientColor_android_type +james.adaptiveicon.R$layout: int select_dialog_item_material +wangdaye.com.geometricweather.R$id: int startHorizontal +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy LATEST +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$attr: int font +com.google.android.material.R$attr: int keylines +androidx.appcompat.R$style: int TextAppearance_AppCompat_Display3 +io.reactivex.Observable: io.reactivex.Observable range(int,int) +android.didikee.donate.R$styleable: int MenuItem_android_titleCondensed +androidx.preference.R$styleable: int TextAppearance_android_textColorHint +james.adaptiveicon.R$styleable: int MenuItem_actionLayout +androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMarkTint +com.google.android.material.R$color: int mtrl_btn_text_btn_ripple_color +androidx.hilt.R$styleable: int ColorStateListItem_android_alpha +androidx.constraintlayout.widget.R$dimen: int hint_pressed_alpha_material_light +cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_WAKE_SCREEN +wangdaye.com.geometricweather.R$styleable: int MaterialCheckBox_useMaterialThemeColors +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.Observer downstream +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_checkbox +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$id: int ignore +androidx.hilt.R$drawable: int notification_action_background +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: java.lang.Integer min +androidx.appcompat.R$drawable: int abc_text_select_handle_right_mtrl_light +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String y +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabView +androidx.recyclerview.R$attr: int layoutManager +okhttp3.Cookie: boolean persistent() +androidx.preference.R$anim: int fragment_close_exit +com.xw.repo.bubbleseekbar.R$attr: int voiceIcon +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean getWind() +cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.WeatherInfo val$weatherInfo +androidx.lifecycle.FullLifecycleObserverAdapter: androidx.lifecycle.LifecycleEventObserver mLifecycleEventObserver +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: IWeatherProviderServiceClient$Stub$Proxy(android.os.IBinder) +androidx.vectordrawable.R$styleable: int GradientColor_android_centerY +james.adaptiveicon.R$styleable: int ActionBar_hideOnContentScroll +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconEnabled +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Large_Inverse +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.PushObserver pushObserver +james.adaptiveicon.R$styleable: int ActionBar_indeterminateProgressStyle +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_ignoreBatteryOptBtn +okio.Base64: Base64() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listMenuViewStyle +com.google.android.material.textfield.TextInputLayout: int getErrorCurrentTextColors() +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode +com.google.android.material.R$styleable: int[] MaterialAlertDialog +com.google.android.material.R$styleable: int Transition_motionInterpolator +wangdaye.com.geometricweather.R$style: int Preference_DialogPreference +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean getAqi() +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMinWidth +wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_colored_ripple_color +androidx.customview.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String ID +androidx.appcompat.R$id: int accessibility_custom_action_19 +androidx.preference.R$styleable: int Preference_widgetLayout +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontWeight +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addFormDataPart(java.lang.String,java.lang.String) +com.google.android.material.R$styleable: int ConstraintSet_android_visibility +androidx.constraintlayout.widget.R$id: int add +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_SearchResult_Title +com.google.android.material.slider.RangeSlider: void setHaloRadiusResource(int) +wangdaye.com.geometricweather.R$array: int air_quality_unit_values +androidx.constraintlayout.widget.R$id: int scrollIndicatorUp +com.google.android.material.R$style: int Theme_AppCompat_DialogWhenLarge +com.google.android.material.button.MaterialButton: void setInsetTop(int) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +okhttp3.ResponseBody +android.didikee.donate.R$color: int abc_background_cache_hint_selector_material_light +com.google.android.material.R$attr: int initialActivityCount +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onError(java.lang.Throwable) +androidx.appcompat.R$styleable: int SearchView_submitBackground +wangdaye.com.geometricweather.main.dialogs.LocationPermissionStatementDialog: LocationPermissionStatementDialog() +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_state_dragged +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getBootanimationThemePackageName() +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_menuCategory +androidx.dynamicanimation.animation.DynamicAnimation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm10Desc(java.lang.String) +com.google.android.material.R$styleable: int AppCompatTheme_actionBarWidgetTheme +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyBottomLeft +androidx.appcompat.widget.ActionBarOverlayLayout: void setHasNonEmbeddedTabs(boolean) +wangdaye.com.geometricweather.R$drawable: int ic_sunset +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_logoDescription +androidx.viewpager2.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$xml: int cm_weather_provider_options +wangdaye.com.geometricweather.R$id: int tag_screen_reader_focusable +androidx.constraintlayout.helper.widget.Layer: void setScaleX(float) +com.xw.repo.bubbleseekbar.R$id: int wrap_content +android.didikee.donate.R$attr: int panelMenuListWidth +james.adaptiveicon.R$attr: int fontStyle +androidx.appcompat.widget.ViewStubCompat: void setOnInflateListener(androidx.appcompat.widget.ViewStubCompat$OnInflateListener) +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_font +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_Solid +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light_focused +cyanogenmod.weather.WeatherInfo: boolean isValidWeatherCode(int) +wangdaye.com.geometricweather.R$integer: int hide_password_duration +okhttp3.WebSocket$Factory +com.google.android.material.R$color: int mtrl_choice_chip_text_color +wangdaye.com.geometricweather.R$attr: int drawableBottomCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: double Value +androidx.preference.R$drawable: int abc_textfield_search_activated_mtrl_alpha +retrofit2.ParameterHandler$Headers +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ENABLE +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: MfRainResult$RainForecast() +android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_notify +com.google.android.material.R$attr: int counterMaxLength +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.disposables.Disposable upstream +com.jaredrummler.android.colorpicker.R$attr: int contentInsetRight +com.google.android.gms.signin.internal.zak +androidx.preference.R$dimen: int abc_list_item_height_small_material +androidx.appcompat.R$style: int Base_V26_Theme_AppCompat_Light +androidx.appcompat.R$styleable: int AlertDialog_showTitle +wangdaye.com.geometricweather.R$string: int material_timepicker_text_input_mode_description +androidx.viewpager.R$dimen: int notification_action_text_size +androidx.preference.R$id: int buttonPanel +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindChillTemperature(java.lang.Integer) +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_text_size +androidx.coordinatorlayout.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.R$styleable: int[] Constraint +com.jaredrummler.android.colorpicker.R$id: int none +androidx.activity.R$id: int tag_transition_group +cyanogenmod.app.suggest.IAppSuggestManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +okio.HashingSink: okio.ByteString hash() +com.google.android.material.R$styleable: int ViewPager2_android_orientation +cyanogenmod.app.IProfileManager: boolean profileExistsByName(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ProgressBar +androidx.appcompat.resources.R$integer: int status_bar_notification_info_maxnum +james.adaptiveicon.R$styleable: int ActionBar_itemPadding +com.google.android.material.R$styleable: int Layout_layout_constraintDimensionRatio +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +cyanogenmod.profiles.LockSettings: boolean isDirty() +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String cityId +com.google.android.material.R$interpolator +wangdaye.com.geometricweather.R$dimen: int default_dimension +com.turingtechnologies.materialscrollbar.R$string: int abc_action_mode_done +okhttp3.HttpUrl$Builder: java.lang.String encodedPassword +wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary_variant +androidx.fragment.R$attr: int ttcIndex +cyanogenmod.weather.WeatherLocation: java.lang.String getCity() +cyanogenmod.app.ProfileGroup: ProfileGroup(android.os.Parcel) +androidx.constraintlayout.widget.R$styleable: int KeyPosition_keyPositionType +cyanogenmod.app.ILiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +cyanogenmod.weatherservice.WeatherProviderService$1: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setSnowPrecipitation(java.lang.Float) +james.adaptiveicon.R$styleable: int FontFamily_fontProviderPackage +com.google.gson.internal.LazilyParsedNumber: java.lang.Object writeReplace() +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_animationMode +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_closeIcon +com.jaredrummler.android.colorpicker.R$anim: int abc_slide_in_top +io.reactivex.Observable: io.reactivex.Observable skipUntil(io.reactivex.ObservableSource) +cyanogenmod.profiles.AirplaneModeSettings$BooleanState: AirplaneModeSettings$BooleanState() +io.reactivex.internal.observers.DeferredScalarDisposable: long serialVersionUID +androidx.activity.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_elevation +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_default +androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$attr: int cpv_animDuration +androidx.appcompat.R$style: int Base_DialogWindowTitleBackground_AppCompat +com.google.android.material.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode +androidx.appcompat.R$styleable: int DrawerArrowToggle_gapBetweenBars +wangdaye.com.geometricweather.R$styleable: int[] SwitchPreference +androidx.cardview.R$attr: int contentPaddingLeft +james.adaptiveicon.R$id: int decor_content_parent +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_scaleY +wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_container +com.google.android.material.R$id: int accessibility_custom_action_10 +com.jaredrummler.android.colorpicker.R$string: int v7_preference_off +androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionDuration(int) +wangdaye.com.geometricweather.R$attr: int expandedHintEnabled +wangdaye.com.geometricweather.R$color: int weather_source_accu +wangdaye.com.geometricweather.R$styleable: int Transform_android_translationX +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent +wangdaye.com.geometricweather.R$layout: int preference_widget_seekbar +cyanogenmod.app.Profile$1: Profile$1() +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog +com.xw.repo.bubbleseekbar.R$id: int textSpacerNoButtons androidx.appcompat.widget.LinearLayoutCompat: void setDividerDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.util.VolatileSizeArrayList: boolean containsAll(java.util.Collection) -androidx.appcompat.R$dimen: int abc_progress_bar_height_material -okio.Buffer: okio.Buffer writeLong(long) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textColorSearchUrl -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getUnitId() -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getAlertList() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -com.google.android.material.R$styleable: int SwitchCompat_switchPadding -com.google.android.material.R$drawable: int abc_text_select_handle_right_mtrl_dark -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitationDuration() -androidx.hilt.lifecycle.R$dimen: int notification_action_icon_size -okio.Okio: okio.AsyncTimeout timeout(java.net.Socket) -androidx.viewpager.R$id -androidx.appcompat.widget.FitWindowsLinearLayout: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) -wangdaye.com.geometricweather.R$string: int icon_content_description -com.google.android.material.R$id: int select_dialog_listview -com.google.android.gms.base.R$styleable: int LoadingImageView_circleCrop -com.jaredrummler.android.colorpicker.R$attr: int alertDialogStyle -okio.RealBufferedSink: okio.BufferedSink writeUtf8(java.lang.String) -cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder(java.util.List) -cyanogenmod.app.ProfileGroup$1: cyanogenmod.app.ProfileGroup[] newArray(int) -okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Logger logger -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.R$id: int item_weather_daily_title_title -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerX -okio.Util: void checkOffsetAndCount(long,long,long) -androidx.constraintlayout.widget.R$styleable: int MotionHelper_onShow -androidx.appcompat.R$dimen: int abc_list_item_height_material -androidx.fragment.R$dimen: int compat_notification_large_icon_max_width -retrofit2.adapter.rxjava2.Result: Result(retrofit2.Response,java.lang.Throwable) -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onComplete() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: long EffectiveEpochDate -wangdaye.com.geometricweather.R$id: int notification_big_week_4 -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.ObservableSource source -androidx.lifecycle.Transformations$2: androidx.lifecycle.LiveData mSource -wangdaye.com.geometricweather.R$styleable: int FitSystemBarRecyclerView_rv_side -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_customNavigationLayout -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginLeft -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type CONSTANT -wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_backgroundColorEnd -androidx.activity.R$id: int text -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback) -okhttp3.OkHttpClient$Builder: javax.net.ssl.HostnameVerifier hostnameVerifier -com.google.android.material.R$id: int accelerate -com.jaredrummler.android.colorpicker.R$id: int search_voice_btn -james.adaptiveicon.R$styleable: int ViewBackgroundHelper_backgroundTintMode -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayWeekWidgetConfigActivity: Hilt_ClockDayWeekWidgetConfigActivity() -androidx.viewpager.R$attr: int ttcIndex -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -retrofit2.Response: java.lang.Object body() -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_padding -com.jaredrummler.android.colorpicker.R$attr: int preferenceStyle -io.reactivex.internal.schedulers.AbstractDirectTask: void setFuture(java.util.concurrent.Future) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitation() -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setOnClickListener(android.view.View$OnClickListener) -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy -androidx.dynamicanimation.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorHeight -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_MinutelyEntityListQuery -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: LocationEntityDao$Properties() -androidx.constraintlayout.widget.R$styleable: int[] MotionTelltales -androidx.transition.R$id: int save_overlay_view -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemBackground(android.graphics.drawable.Drawable) -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_pressed_holo_dark -androidx.appcompat.R$dimen: int abc_alert_dialog_button_bar_height -androidx.appcompat.R$attr: int firstBaselineToTopHeight -retrofit2.Utils: java.lang.RuntimeException parameterError(java.lang.reflect.Method,java.lang.Throwable,int,java.lang.String,java.lang.Object[]) -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView -com.github.rahatarmanahmed.cpv.R$string: int app_name -wangdaye.com.geometricweather.R$attr: int layout_constraintCircleRadius -com.google.android.gms.base.R$string: int common_google_play_services_notification_ticker -retrofit2.Retrofit: okhttp3.HttpUrl baseUrl() -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$layout: int select_dialog_item_material -com.google.android.material.bottomappbar.BottomAppBar: int getRightInset() -com.amap.api.location.AMapLocation: int ERROR_CODE_UNKNOWN -androidx.constraintlayout.widget.R$string: int abc_prepend_shortcut_label -cyanogenmod.weather.RequestInfo: RequestInfo(android.os.Parcel) -com.google.android.material.R$styleable: int Slider_labelStyle -com.google.gson.JsonParseException: JsonParseException(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetStartWithNavigation -androidx.lifecycle.ClassesInfoCache$CallbackInfo -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: long val$n -com.google.android.material.R$dimen: int mtrl_snackbar_action_text_color_alpha -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink -androidx.appcompat.R$attr: int colorAccent -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderAuthority -androidx.appcompat.R$styleable: int ActionBar_popupTheme -cyanogenmod.app.ILiveLockScreenManagerProvider: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -wangdaye.com.geometricweather.R$anim: int fragment_manange_enter -android.didikee.donate.R$styleable: int Toolbar_buttonGravity -androidx.appcompat.R$styleable: int ActionBar_progressBarPadding -james.adaptiveicon.R$color: int material_deep_teal_500 -retrofit2.Callback: void onFailure(retrofit2.Call,java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int cpv_thickness -cyanogenmod.content.Intent: java.lang.String ACTION_PROTECTED_CHANGED -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$color: int design_default_color_primary_dark -wangdaye.com.geometricweather.R$attr: int motionDebug -com.github.rahatarmanahmed.cpv.R$styleable: R$styleable() -james.adaptiveicon.R$attr: int listLayout -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getMoldIndex() -com.google.android.material.R$styleable: int Motion_animate_relativeTo -com.google.android.material.R$string: int mtrl_picker_out_of_range -androidx.appcompat.R$color: int abc_secondary_text_material_dark -androidx.appcompat.R$styleable: int PopupWindow_android_popupBackground -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setUrl(java.lang.String) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String threshold -android.didikee.donate.R$attr: int contentInsetLeft -androidx.appcompat.R$id: int action_context_bar -androidx.appcompat.R$styleable: int[] ViewStubCompat -okio.DeflaterSink: java.lang.String toString() -james.adaptiveicon.R$attr: int drawableSize -okio.HashingSink: okio.HashingSink hmacSha256(okio.Sink,okio.ByteString) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonStyle -okhttp3.HttpUrl: java.lang.String QUERY_ENCODE_SET -com.bumptech.glide.integration.okhttp.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int RainProbability -androidx.appcompat.R$attr: int switchStyle -com.xw.repo.bubbleseekbar.R$anim: int abc_shrink_fade_out_from_bottom -androidx.constraintlayout.helper.widget.Flow: void setFirstHorizontalStyle(int) -com.google.android.material.R$dimen: int abc_cascading_menus_min_smallest_width -wangdaye.com.geometricweather.R$styleable: int[] TabLayout -okhttp3.Cookie: java.lang.String toString() -cyanogenmod.app.Profile$DozeMode: int DISABLE -androidx.cardview.R$attr: int contentPaddingBottom -okhttp3.internal.http2.Http2Connection: void shutdown(okhttp3.internal.http2.ErrorCode) -androidx.constraintlayout.widget.R$styleable: R$styleable() -com.google.android.material.R$attr: int checkedIconVisible -james.adaptiveicon.R$attr: int selectableItemBackground -androidx.appcompat.R$string: int abc_menu_shift_shortcut_label -wangdaye.com.geometricweather.R$anim: int abc_tooltip_exit -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream getStream(int) -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_disabled_holo_dark -com.xw.repo.bubbleseekbar.R$style: int Base_AlertDialog_AppCompat -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_backgroundStacked -wangdaye.com.geometricweather.R$attr: int tickMark -com.google.android.material.textfield.TextInputEditText -okhttp3.internal.cache.CacheStrategy$Factory: long computeFreshnessLifetime() -wangdaye.com.geometricweather.R$color: int mtrl_tabs_icon_color_selector -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: int getStatus() -androidx.preference.R$styleable: int SwitchCompat_thumbTint -wangdaye.com.geometricweather.R$id: int preset -androidx.appcompat.view.menu.ExpandedMenuView -james.adaptiveicon.R$styleable: int MenuItem_tooltipText -androidx.vectordrawable.R$string -com.google.android.material.R$styleable: int TextInputLayout_boxStrokeColor -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginLeft -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_alpha -androidx.coordinatorlayout.R$attr: int alpha -cyanogenmod.weather.CMWeatherManager$2$1: CMWeatherManager$2$1(cyanogenmod.weather.CMWeatherManager$2,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener,int,cyanogenmod.weather.WeatherInfo) -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree nighttimeWindDegree -com.turingtechnologies.materialscrollbar.R$id: int parentPanel -okio.Buffer: int readInt() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_4_material -com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_selected -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_altSrc -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest build() -com.google.android.material.R$dimen: int material_clock_face_margin_top -androidx.activity.R$dimen: int notification_main_column_padding_top -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderPackage -com.turingtechnologies.materialscrollbar.R$styleable: int View_paddingStart -androidx.preference.R$id: int tag_unhandled_key_listeners -android.didikee.donate.R$styleable: int Spinner_popupTheme -androidx.work.R$string -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -okhttp3.internal.cache.CacheInterceptor -androidx.core.os.CancellationSignal -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarDivider -com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context,android.util.AttributeSet) -org.greenrobot.greendao.database.DatabaseOpenHelper: java.lang.String name -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -com.google.android.material.appbar.HeaderScrollingViewBehavior: HeaderScrollingViewBehavior(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$attr: int brightness -wangdaye.com.geometricweather.R$drawable: int googleg_standard_color_18 -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit MGPCUM -com.google.android.material.button.MaterialButton: void setStrokeColorResource(int) -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int[] ConstraintLayout_placeholder -androidx.core.R$id: int action_divider -androidx.core.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.R$attr: int materialCalendarMonth -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_tileMode -okhttp3.internal.connection.StreamAllocation -com.google.android.material.R$attr: int endIconTintMode -com.google.android.material.R$style: int TextAppearance_AppCompat_Tooltip -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -androidx.loader.R$string -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Alert_Bridge -retrofit2.Retrofit$Builder: Retrofit$Builder() -james.adaptiveicon.R$color: int material_grey_850 -com.google.android.material.R$drawable: int notification_bg_low -cyanogenmod.app.IProfileManager$Stub$Proxy: void resetAll() -android.didikee.donate.R$attr: int editTextStyle -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicator -com.turingtechnologies.materialscrollbar.R$id: int scrollView -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: java.lang.Long poll() -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderTitle -cyanogenmod.app.Profile$DozeMode -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String LABEL -androidx.constraintlayout.widget.R$id: int custom -okhttp3.MultipartBody: long contentLength -io.reactivex.Observable: io.reactivex.Observable throttleFirst(long,java.util.concurrent.TimeUnit) -com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPanelView -com.google.android.material.R$layout: int notification_template_part_time -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyle -cyanogenmod.externalviews.KeyguardExternalView$11: float val$swipeProgress -androidx.preference.R$id: int radio -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature Temperature -com.google.android.material.R$styleable: int AppCompatImageView_android_src -okhttp3.Address: javax.net.ssl.SSLSocketFactory sslSocketFactory() -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: void onThermalChanged(int) -wangdaye.com.geometricweather.R$drawable: int common_full_open_on_phone -androidx.coordinatorlayout.R$id: int accessibility_custom_action_21 -androidx.appcompat.R$styleable: int SearchView_commitIcon -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleMargin -androidx.constraintlayout.widget.R$attr: int popupMenuStyle -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: MfCurrentResult$Observation$Wind() +androidx.hilt.lifecycle.R$attr: int fontProviderFetchStrategy +androidx.preference.R$color: int tooltip_background_dark +androidx.customview.R$dimen: int compat_button_padding_vertical_material +androidx.constraintlayout.widget.R$string: R$string() +com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getBackgroundTintMode() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +wangdaye.com.geometricweather.R$attr: int layout_constraintRight_toLeftOf +com.jaredrummler.android.colorpicker.R$style: int cpv_ColorPickerViewStyle +cyanogenmod.app.CustomTileListenerService: void onListenerConnected() +com.google.android.material.bottomnavigation.BottomNavigationItemView: int getItemVisiblePosition() +com.google.gson.stream.JsonWriter: boolean isHtmlSafe() +cyanogenmod.themes.IThemeService$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Wind getWind() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircle +android.didikee.donate.R$attr: int popupTheme +androidx.constraintlayout.widget.R$attr: int buttonBarStyle +wangdaye.com.geometricweather.db.entities.HourlyEntity +com.jaredrummler.android.colorpicker.R$styleable: int[] Toolbar +com.google.android.material.R$attr: int itemPadding +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onPositiveCross +androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_default +androidx.constraintlayout.widget.R$styleable: int KeyPosition_transitionEasing +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: AccuCurrentResult$Pressure$Imperial() +okhttp3.internal.platform.Platform: void logCloseableLeak(java.lang.String,java.lang.Object) +com.google.gson.FieldNamingPolicy$4: FieldNamingPolicy$4(java.lang.String,int) +okhttp3.internal.cache.DiskLruCache$3: java.lang.Object next() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String content +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getTempMax() +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_subheader +wangdaye.com.geometricweather.R$styleable: int ArcProgress_background_color +wangdaye.com.geometricweather.R$attr: int floatingActionButtonStyle +androidx.constraintlayout.widget.R$attr: int customColorValue +androidx.dynamicanimation.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.R$attr: int colorControlHighlight +com.google.gson.FieldNamingPolicy$4: java.lang.String translateName(java.lang.reflect.Field) +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconEnabled +wangdaye.com.geometricweather.R$drawable: int notif_temp_6 +cyanogenmod.externalviews.KeyguardExternalView$3: boolean val$visible +com.google.gson.stream.JsonReader: boolean fillBuffer(int) +android.didikee.donate.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier INSTANCE +androidx.constraintlayout.motion.widget.MotionHelper: float getProgress() +cyanogenmod.providers.CMSettings$DiscreteValueValidator: java.lang.String[] mValues +androidx.lifecycle.extensions.R$id: int tag_screen_reader_focusable +com.google.android.material.R$attr: int cardUseCompatPadding +androidx.preference.R$attr: int tickMark +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +james.adaptiveicon.R$styleable: int ColorStateListItem_alpha +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: ExternalViewProviderService$Provider$ProviderImpl$4(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_color +androidx.customview.R$drawable: int notification_action_background +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: boolean connected +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int THUNDERSHOWER +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void cancel() +com.google.android.material.R$styleable: int ConstraintSet_android_pivotY +androidx.constraintlayout.widget.R$styleable: int ActionMode_backgroundSplit +wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_to_on_mtrl_015 +com.google.android.material.textfield.TextInputLayout: void setStartIconTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float snow +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_baselineAligned +com.google.android.material.bottomappbar.BottomAppBar: androidx.appcompat.widget.ActionMenuView getActionMenuView() +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,int) +androidx.activity.R$layout: int custom_dialog +okio.BufferedSource: boolean rangeEquals(long,okio.ByteString,int,int) +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onComplete() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.os.Bundle getOptions() +wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: MfCurrentResult$Observation$Weather() +okhttp3.OkHttpClient$1: boolean isInvalidHttpUrlHost(java.lang.IllegalArgumentException) +wangdaye.com.geometricweather.R$attr: int extendMotionSpec +com.google.android.material.R$drawable: int abc_switch_track_mtrl_alpha +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit KN +wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassLevel(java.lang.Integer) +com.google.android.material.R$dimen: int mtrl_btn_icon_padding +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitationDuration +androidx.constraintlayout.widget.R$styleable: int ActionBar_title +okio.Pipe$PipeSink: void flush() +com.google.android.material.chip.Chip: float getChipIconSize() +wangdaye.com.geometricweather.R$layout: int widget_clock_day_mini +com.google.android.material.R$layout: int design_layout_snackbar +com.amap.api.fence.DistrictItem$1: java.lang.Object createFromParcel(android.os.Parcel) +james.adaptiveicon.R$drawable: int abc_list_longpressed_holo +wangdaye.com.geometricweather.R$styleable: int ActionMode_background +androidx.preference.R$color: int abc_primary_text_material_dark +cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_MWI_NOTIFICATION +org.greenrobot.greendao.database.DatabaseOpenHelper: int version +com.google.android.material.R$attr: int textAppearanceSearchResultTitle +androidx.lifecycle.ComputableLiveData: ComputableLiveData() +wangdaye.com.geometricweather.R$color: int colorTextContent_light +cyanogenmod.app.PartnerInterface: boolean setZenModeWithDuration(int,long) +android.didikee.donate.R$color: int abc_btn_colored_borderless_text_material +androidx.loader.R$styleable: int GradientColor_android_tileMode +androidx.core.R$attr: int ttcIndex +androidx.appcompat.widget.SearchView$SearchAutoComplete: void setImeVisibility(boolean) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvLevel(java.lang.String) +com.google.android.material.R$styleable: int MockView_mock_showDiagonals +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfIce +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_maxProgress +com.amap.api.location.AMapLocation: float getSpeed() +com.google.android.gms.location.zzbd: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_statusBarBackground +androidx.appcompat.R$styleable: int AppCompatTheme_buttonStyle +okio.BufferedSource: int readInt() +io.reactivex.internal.util.ExceptionHelper$Termination: long serialVersionUID +com.bumptech.glide.load.engine.GlideException: java.util.List causes +okio.Buffer: okio.BufferedSink write(byte[],int,int) +androidx.appcompat.resources.R$layout: int notification_template_part_time +androidx.preference.R$style: int TextAppearance_AppCompat_Display3 +androidx.appcompat.R$id: int tag_accessibility_pane_title +cyanogenmod.themes.IThemeService$Stub$Proxy: java.lang.String getInterfaceDescriptor() +james.adaptiveicon.R$string: int abc_activitychooserview_choose_application +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource REMOTE +com.jaredrummler.android.colorpicker.ColorPanelView: void setShape(int) +com.amap.api.location.AMapLocation +okhttp3.internal.http2.Huffman$Node: Huffman$Node() +androidx.lifecycle.ViewModelProvider$Factory: androidx.lifecycle.ViewModel create(java.lang.Class) +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginRight +android.didikee.donate.R$id: int spacer +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColorHint +okhttp3.internal.cache.DiskLruCache: void validateKey(java.lang.String) +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTheme +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_android_minHeight +com.google.android.material.R$styleable: int TabLayout_tabIndicatorHeight +androidx.viewpager2.R$id: int title +wangdaye.com.geometricweather.R$styleable: int Toolbar_buttonGravity +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_3 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String weatherSource +androidx.swiperefreshlayout.R$id +com.google.android.material.R$attr: int listLayout +james.adaptiveicon.R$string: int abc_searchview_description_clear +androidx.preference.PreferenceFragmentCompat +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: cyanogenmod.app.ILiveLockScreenChangeListener asInterface(android.os.IBinder) +cyanogenmod.weatherservice.WeatherProviderService: java.util.Set access$100(cyanogenmod.weatherservice.WeatherProviderService) +wangdaye.com.geometricweather.R$dimen: int mtrl_card_checked_icon_size +androidx.viewpager2.R$integer: int status_bar_notification_info_maxnum +androidx.hilt.lifecycle.R$layout: R$layout() +okhttp3.internal.platform.OptionalMethod +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataSpinner +androidx.coordinatorlayout.R$id: int accessibility_custom_action_31 +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy +io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Object call() +com.jaredrummler.android.colorpicker.R$attr: int dialogPreferenceStyle +com.jaredrummler.android.colorpicker.R$attr: int allowStacking +wangdaye.com.geometricweather.R$layout: int item_weather_icon +androidx.appcompat.resources.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$id: int ratio +androidx.loader.app.LoaderManagerImpl$LoaderViewModel +androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: IExternalViewProvider$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$color: int abc_btn_colored_text_material +com.google.android.material.R$attr: int fontFamily +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedVoice(android.content.Context,float) +okio.RealBufferedSink: boolean isOpen() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonStyle +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void drain() +wangdaye.com.geometricweather.R$color: int background_floating_material_light +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_ARRAY +androidx.coordinatorlayout.R$dimen: int compat_button_inset_horizontal_material +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_keyline +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetTop +com.turingtechnologies.materialscrollbar.R$id: int submit_area +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +com.turingtechnologies.materialscrollbar.R$attr: int homeAsUpIndicator +retrofit2.CallAdapter$Factory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +com.turingtechnologies.materialscrollbar.R$attr: int tooltipForegroundColor +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_136 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableLeftCompat +com.google.android.material.R$dimen: int design_appbar_elevation +james.adaptiveicon.R$color: int highlighted_text_material_dark +com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_top_material +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastHorizontalStyle +com.jaredrummler.android.colorpicker.R$attr: int actionModePasteDrawable +com.jaredrummler.android.colorpicker.R$dimen: int abc_control_corner_material +androidx.appcompat.R$attr: int showAsAction +wangdaye.com.geometricweather.R$string: int feedback_hide_subtitle +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +com.google.android.material.R$styleable: int StateListDrawable_android_dither +androidx.appcompat.resources.R$id: int accessibility_custom_action_2 +androidx.drawerlayout.R$styleable: int GradientColor_android_startX +android.didikee.donate.R$dimen: int abc_text_size_headline_material +com.jaredrummler.android.colorpicker.R$layout: int abc_select_dialog_material +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +okhttp3.internal.connection.RealConnection: boolean isHealthy(boolean) +cyanogenmod.weather.WeatherInfo: long getTimestamp() +com.turingtechnologies.materialscrollbar.R$attr: int pressedTranslationZ +com.google.gson.stream.JsonReader: int lineStart +cyanogenmod.providers.CMSettings$System: java.lang.String ZEN_PRIORITY_ALLOW_LIGHTS +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_overflow_material +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.IndeterminateDrawable getIndeterminateDrawable() +com.google.android.material.R$id: int search_button +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean +wangdaye.com.geometricweather.R$styleable: int Preference_android_title +androidx.viewpager.R$attr: int fontProviderQuery +androidx.appcompat.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String windIcon +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String LocalizedName +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onMenuOpened(int,android.view.Menu) +cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.os.Bundle mOptions +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_behavior +androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context) +com.google.android.material.R$dimen: int design_bottom_navigation_margin +okio.Buffer: okio.Buffer write(byte[],int,int) +wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_subtitle +james.adaptiveicon.R$drawable: int abc_textfield_search_material +com.xw.repo.bubbleseekbar.R$attr: int fontFamily +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Temperature +androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context) +okhttp3.internal.http2.Http2Codec: okhttp3.Protocol protocol +io.reactivex.Observable: io.reactivex.Observable takeLast(int) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: android.os.Bundle val$options +okhttp3.Cache +io.reactivex.Observable: java.lang.Object blockingLast(java.lang.Object) +androidx.preference.R$styleable: int ActionBar_indeterminateProgressStyle +com.xw.repo.bubbleseekbar.R$attr: int dividerVertical +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_27 +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display4 +wangdaye.com.geometricweather.R$styleable: int[] FragmentContainerView +com.turingtechnologies.materialscrollbar.R$styleable: int[] ViewStubCompat +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar_Small +androidx.appcompat.widget.Toolbar: int getCurrentContentInsetStart() +androidx.appcompat.R$attr: int srcCompat +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.R$styleable: int[] TagView +androidx.lifecycle.extensions.R$id: int visible_removing_fragment_view_tag +android.didikee.donate.R$styleable: int SwitchCompat_trackTintMode +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.functions.Function mapper +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +okhttp3.CacheControl: int sMaxAgeSeconds +androidx.recyclerview.widget.RecyclerView: void removeOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationZ +org.greenrobot.greendao.DaoException: DaoException() +androidx.preference.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.R$styleable: int[] SlidingItemContainerLayout +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_setActiveProfileByName +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textColorSearchUrl +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_height_minor +com.google.android.material.R$attr: int statusBarScrim +com.jaredrummler.android.colorpicker.R$attr: int fastScrollHorizontalThumbDrawable +androidx.preference.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +androidx.lifecycle.CompositeGeneratedAdaptersObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +cyanogenmod.app.Profile: cyanogenmod.app.Profile fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy: ConstraintProxy$BatteryNotLowProxy() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyle +com.bumptech.glide.R$dimen: R$dimen() +cyanogenmod.weather.RequestInfo: java.lang.String access$302(cyanogenmod.weather.RequestInfo,java.lang.String) +androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getTotalPrecipitationProbability() +androidx.preference.R$attr: int srcCompat +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ProgressBar_Horizontal +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.R$styleable: int MotionHelper_onShow +android.didikee.donate.R$attr: int contentInsetStart +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getDisplayGammaCalibration(int) +com.google.android.material.R$attr: int textLocale +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: boolean cancelled +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderFetchStrategy +com.google.android.material.slider.BaseSlider: float getValueOfTouchPositionAbsolute() +wangdaye.com.geometricweather.R$id: int split_action_bar +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CITY +androidx.work.R$dimen: R$dimen() +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: long serialVersionUID +com.google.android.material.R$drawable: int abc_ic_star_half_black_36dp +androidx.customview.R$id: int right_side +okhttp3.internal.tls.CertificateChainCleaner +cyanogenmod.profiles.RingModeSettings: void processOverride(android.content.Context) +android.didikee.donate.R$id: int add +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_padding_top_material +androidx.preference.R$styleable: int MenuItem_android_enabled +androidx.vectordrawable.R$id: int accessibility_custom_action_24 +com.google.android.material.appbar.MaterialToolbar: void setNavigationIconColor(int) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_checkable +io.reactivex.Observable: io.reactivex.Observable flatMapIterable(io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +com.google.android.material.R$styleable: int SearchView_layout +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat +androidx.activity.R$layout +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +com.google.android.material.textfield.TextInputLayout: void setPrefixTextColor(android.content.res.ColorStateList) +cyanogenmod.weatherservice.IWeatherProviderService: void cancelRequest(int) +wangdaye.com.geometricweather.R$string: int thanks +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setText(java.lang.String) +com.google.android.gms.base.R$attr: int colorScheme +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedHeightMajor +wangdaye.com.geometricweather.R$string: int sp_widget_hourly_trend_setting +androidx.appcompat.R$drawable: int abc_ic_star_half_black_16dp +androidx.constraintlayout.widget.R$anim: int abc_tooltip_enter +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_disabled +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getStrokeColor() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: double Value +wangdaye.com.geometricweather.R$attr: int windowNoTitle +android.didikee.donate.R$attr: int actionBarStyle +com.xw.repo.bubbleseekbar.R$attr: int track +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_darkIcon +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_corner_radius +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: MfCurrentResult() +androidx.hilt.work.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.R$drawable: int star_2 +com.google.android.gms.common.api.GoogleApiClient: void unregisterConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getWetBulbTemperature() +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowColor +wangdaye.com.geometricweather.R$string: int widget_text +androidx.legacy.coreutils.R$drawable: int notify_panel_notification_icon_bg +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.hardware.CMHardwareManager: boolean isSunlightEnhancementSelfManaged() +wangdaye.com.geometricweather.R$string: int common_google_play_services_enable_title +androidx.activity.R$attr: int font +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: CaiYunMainlyResult$CurrentBean$FeelsLikeBean() +okhttp3.internal.http2.Http2Connection: void pushHeadersLater(int,java.util.List,boolean) +james.adaptiveicon.R$dimen: int abc_dialog_padding_material +okhttp3.internal.platform.Android10Platform: void enableSessionTickets(javax.net.ssl.SSLSocket) +androidx.swiperefreshlayout.R$id: int time +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer realFeelTemperature +androidx.constraintlayout.utils.widget.ImageFilterView +androidx.lifecycle.FullLifecycleObserverAdapter: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +androidx.preference.R$styleable: int AppCompatTheme_actionBarDivider +com.google.gson.stream.JsonReader: int PEEKED_NONE +cyanogenmod.externalviews.ExternalView: void onActivityCreated(android.app.Activity,android.os.Bundle) +wangdaye.com.geometricweather.R$dimen: int abc_seekbar_track_background_height_material +com.turingtechnologies.materialscrollbar.R$dimen: int abc_cascading_menus_min_smallest_width +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: long serialVersionUID +com.jaredrummler.android.colorpicker.R$id: int default_activity_button +okhttp3.internal.Util: java.util.Map immutableMap(java.util.Map) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_REVERSE_LOOKUP_VALIDATOR +androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context,android.util.AttributeSet) +androidx.preference.R$attr: int layout_anchorGravity +wangdaye.com.geometricweather.R$id: int animateToStart +wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_style +com.jaredrummler.android.colorpicker.R$attr: int subtitle +cyanogenmod.hardware.ThermalListenerCallback$State: ThermalListenerCallback$State() +cyanogenmod.profiles.AirplaneModeSettings +androidx.activity.R$styleable: int ColorStateListItem_alpha +okhttp3.internal.connection.RealConnection: RealConnection(okhttp3.ConnectionPool,okhttp3.Route) +wangdaye.com.geometricweather.R$drawable: int widget_trend_daily +okio.HashingSink: HashingSink(okio.Sink,java.lang.String) +androidx.constraintlayout.widget.R$string: int search_menu_title +cyanogenmod.profiles.BrightnessSettings: boolean isDirty() +androidx.preference.R$attr: int drawableTint +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: CompositeException$CompositeExceptionCausalChain() +com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_light +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_getCurrentLiveLockScreen +wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_close_circle +androidx.constraintlayout.widget.R$attr: int selectableItemBackgroundBorderless +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldDescription(java.lang.String) +androidx.preference.R$dimen: int notification_small_icon_size_as_large +com.google.android.material.R$style: int Platform_V25_AppCompat_Light +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getLogo() +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +com.google.android.material.R$styleable: int MenuGroup_android_orderInCategory +com.google.android.material.R$styleable: int Toolbar_contentInsetStart +androidx.recyclerview.R$id: int action_image +okhttp3.Handshake: java.security.Principal peerPrincipal() +wangdaye.com.geometricweather.R$string: int precipitation +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleTintMode +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver parent +com.bumptech.glide.integration.okhttp.R$dimen: int notification_content_margin_start +okhttp3.Cookie: boolean secure() +okio.HashingSink: java.security.MessageDigest messageDigest +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: AccuCurrentResult$RealFeelTemperatureShade$Metric() +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification +com.google.android.gms.common.internal.GetServiceRequest +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: int UnitType +androidx.vectordrawable.R$drawable: int notification_tile_bg +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dark +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCutDrawable +com.google.android.material.R$style: int Platform_AppCompat_Light +androidx.recyclerview.R$id: int action_divider +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean setDisposable(io.reactivex.disposables.Disposable,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed Speed +com.jaredrummler.android.colorpicker.R$id: int cpv_color_image_view +retrofit2.ParameterHandler$QueryMap: int p +com.google.android.material.R$color: int switch_thumb_disabled_material_dark +androidx.hilt.work.R$styleable: int FontFamilyFont_fontStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonStyle +com.google.android.material.R$styleable: int[] MaterialTextAppearance +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotation +android.didikee.donate.R$drawable: int notification_tile_bg +com.google.android.material.R$styleable: int Constraint_layout_goneMarginRight +com.jaredrummler.android.colorpicker.R$styleable: int[] SearchView +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_creator +wangdaye.com.geometricweather.R$attr: int cornerSizeBottomLeft +com.google.android.material.R$styleable: int Toolbar_titleMarginEnd +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets +okio.ByteString: byte[] data +okhttp3.internal.Util: java.lang.reflect.Method addSuppressedExceptionMethod +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache create(okhttp3.internal.io.FileSystem,java.io.File,int,int,long) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean outputFused +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: AccuCurrentResult$TemperatureSummary$Past6HourRange() +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cwd +com.jaredrummler.android.colorpicker.R$attr: int overlapAnchor +wangdaye.com.geometricweather.R$color: int abc_tint_edittext +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_maxWidth +retrofit2.RequestFactory$Builder: java.util.Set relativeUrlParamNames +com.google.android.material.R$style: int Widget_AppCompat_SeekBar +okhttp3.Cookie: java.lang.String name +wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_light +cyanogenmod.app.ProfileGroup: boolean isDirty() +com.turingtechnologies.materialscrollbar.R$attr: int alertDialogStyle +cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener: void onWeatherRequestCompleted(int,cyanogenmod.weather.WeatherInfo) +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontStyle +androidx.loader.R$dimen: int notification_top_pad +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_radius_on_dragging +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItem +com.google.android.gms.common.data.DataHolder: android.os.Parcelable$Creator CREATOR +androidx.work.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.R$attr: int scrimBackground +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlActivated +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.R$styleable: int Constraint_motionStagger +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_ASSIST_ACTION_VALIDATOR +cyanogenmod.externalviews.ExternalView$1 +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCityId +androidx.preference.R$drawable: int abc_btn_default_mtrl_shape +wangdaye.com.geometricweather.R$id: int widget_day_weather +com.turingtechnologies.materialscrollbar.R$attr: int chipIconSize +androidx.preference.R$dimen: int item_touch_helper_swipe_escape_velocity +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_corner_radius +wangdaye.com.geometricweather.R$drawable: int abc_btn_borderless_material +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_icon +androidx.appcompat.widget.AppCompatSpinner: android.content.res.ColorStateList getSupportBackgroundTintList() +androidx.preference.R$styleable: int MenuGroup_android_enabled +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History +androidx.appcompat.resources.R$styleable: int[] FontFamilyFont +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_max +androidx.appcompat.R$attr: int actionModePasteDrawable +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItemSecondary +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: long index +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Body2 +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +com.xw.repo.bubbleseekbar.R$color: int background_material_light +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec supportedSpec(javax.net.ssl.SSLSocket,boolean) +androidx.appcompat.R$styleable: int Toolbar_titleTextColor +wangdaye.com.geometricweather.db.entities.WeatherEntity: void update() +wangdaye.com.geometricweather.R$array: int weather_sources +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver +wangdaye.com.geometricweather.R$id: int search_close_btn +com.google.android.material.progressindicator.ProgressIndicator: void setIndeterminateDrawable(android.graphics.drawable.Drawable) +com.google.android.material.circularreveal.CircularRevealGridLayout: CircularRevealGridLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: int getCollapsedPadding() +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_font +cyanogenmod.app.ThemeVersion$ComponentVersion: int currentVersion +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetOnClickPendingIntent(android.app.PendingIntent) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: int UnitType +wangdaye.com.geometricweather.R$attr: int bsb_is_float_type +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String value +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer cloudCover +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_deriveConstraintsFrom +com.google.android.material.R$attr: int elevationOverlayEnabled +androidx.appcompat.R$color: int background_material_dark +com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$attr: int lineHeight +androidx.work.R$id: int tag_accessibility_heading +retrofit2.OkHttpCall: boolean canceled +io.reactivex.internal.observers.BlockingObserver: java.lang.Object TERMINATED +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_layout_margin +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicReference upstream +com.jaredrummler.android.colorpicker.R$id: int circle +james.adaptiveicon.R$styleable: int CompoundButton_buttonTintMode +android.didikee.donate.R$styleable: int Toolbar_titleMargin +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startX +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dark +androidx.constraintlayout.widget.R$color: int background_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayout +androidx.viewpager2.R$string: int status_bar_notification_info_overflow +com.google.android.material.button.MaterialButton: int getStrokeWidth() +james.adaptiveicon.R$drawable: int notification_bg +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void drainLoop() +retrofit2.Retrofit: java.util.List converterFactories() +james.adaptiveicon.R$drawable: int abc_ic_star_black_36dp +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX names +okhttp3.Cache$CacheRequestImpl: okio.Sink body +com.google.android.material.progressindicator.ProgressIndicator +android.didikee.donate.R$styleable: int ActionBar_subtitle +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display4 +com.google.android.gms.common.server.response.FastJsonResponse$Field +retrofit2.ParameterHandler$PartMap: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.google.android.material.R$id: int accessibility_custom_action_16 +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +androidx.appcompat.R$styleable: int SwitchCompat_thumbTint +james.adaptiveicon.R$dimen: int abc_switch_padding +wangdaye.com.geometricweather.R$id: int widget_week_container +com.google.android.material.R$dimen: int mtrl_btn_dialog_btn_min_width +com.xw.repo.bubbleseekbar.R$string: int abc_capital_on +com.google.android.gms.common.SignInButton: void setSize(int) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: void complete(java.lang.Object) +com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onProgressUpdate(float) +james.adaptiveicon.R$id: int scrollView +androidx.recyclerview.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void windowUpdate(int,long) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult +okhttp3.internal.http2.Http2: byte TYPE_RST_STREAM +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout +com.google.android.material.R$attr: int scrimBackground +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode SUPPRESS +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent OVERLAY +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getTotalPrecipitation() +okhttp3.CacheControl$Builder: boolean noStore +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTextHelper +androidx.transition.R$id: int normal +okhttp3.internal.connection.RealConnection: boolean isMultiplexed() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours Past12Hours +retrofit2.DefaultCallAdapterFactory$1: java.lang.Object adapt(retrofit2.Call) +okhttp3.CertificatePinner: int hashCode() +wangdaye.com.geometricweather.background.polling.work.worker.NormalUpdateWorker +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: int Version +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onSuccess(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_statusBarScrim +androidx.appcompat.R$color: int bright_foreground_disabled_material_light +wangdaye.com.geometricweather.R$styleable: int[] KeyTrigger +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_navigationMode +com.xw.repo.bubbleseekbar.R$style: int Platform_V21_AppCompat +com.jaredrummler.android.colorpicker.R$id: int right_icon +androidx.appcompat.R$dimen: int hint_alpha_material_light +androidx.appcompat.R$attr: int backgroundSplit +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_showMotionSpec +com.google.gson.stream.JsonReader: int PEEKED_UNQUOTED_NAME +okhttp3.TlsVersion: java.util.List forJavaNames(java.lang.String[]) +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit PPCM +androidx.appcompat.widget.AppCompatRadioButton: int getCompoundPaddingLeft() +wangdaye.com.geometricweather.R$attr: int transitionFlags +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: void onFailure(retrofit2.Call,java.lang.Throwable) +androidx.preference.R$id: int search_badge +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: AccuDailyResult$DailyForecasts$Night$Wind$Speed() +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_cornerRadius +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_middle_mtrl_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String headDescription +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: int UnitType +com.amap.api.location.AMapLocationQualityReport: void setInstallHighDangerMockApp(boolean) +okio.RealBufferedSink$1 +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabText +com.google.android.material.bottomappbar.BottomAppBar$SavedState +androidx.constraintlayout.widget.R$styleable: int AlertDialog_singleChoiceItemLayout +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +okhttp3.internal.connection.RealConnection: void establishProtocol(okhttp3.internal.connection.ConnectionSpecSelector,int,okhttp3.Call,okhttp3.EventListener) +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_registerChangeListener +cyanogenmod.app.Profile$TriggerState: Profile$TriggerState() +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.R$styleable: int[] KeyPosition +com.google.android.material.R$attr: int showDividers +androidx.appcompat.R$id: int italic +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onListenerConnected() +androidx.appcompat.R$attr: int textColorSearchUrl +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.lang.Throwable error +com.jaredrummler.android.colorpicker.R$id: int icon +com.google.android.material.R$id: int textinput_suffix_text +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle +wangdaye.com.geometricweather.R$styleable: int[] TouchScrollBar +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem +androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_contrast +androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache sInstance +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_elevation +androidx.constraintlayout.widget.R$styleable: int Constraint_android_minHeight +com.turingtechnologies.materialscrollbar.R$attr: int liftOnScroll +wangdaye.com.geometricweather.R$string: int mtrl_picker_day_of_week_column_header +okhttp3.Request: okhttp3.Headers headers +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String sunRise +wangdaye.com.geometricweather.R$style: int material_button +androidx.appcompat.R$style: int TextAppearance_AppCompat_Small +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver,java.lang.Throwable) +wangdaye.com.geometricweather.R$drawable: int btn_radio_off_to_on_mtrl_animation +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Info +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String READ_ALARMS_PERMISSION +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_holo_light +androidx.appcompat.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +androidx.preference.R$attr: int titleMarginBottom +io.reactivex.Observable: io.reactivex.Completable flatMapCompletable(io.reactivex.functions.Function,boolean) +com.google.android.material.R$attr: int passwordToggleEnabled +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: AccuDailyResult$DailyForecasts$Night$Wind() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date date +okhttp3.Cache$2: okhttp3.Cache this$0 +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getNumGammaControls() +cyanogenmod.app.ILiveLockScreenManager$Stub +androidx.constraintlayout.widget.R$drawable: int tooltip_frame_light +cyanogenmod.profiles.BrightnessSettings: BrightnessSettings(int,boolean) +wangdaye.com.geometricweather.R$attr: int layout +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +com.bumptech.glide.Registry$NoImageHeaderParserException: Registry$NoImageHeaderParserException() +okhttp3.internal.http.RequestLine: java.lang.String requestPath(okhttp3.HttpUrl) +wangdaye.com.geometricweather.R$drawable: int shortcuts_haze +com.google.android.material.R$styleable: int TextInputLayout_boxBackgroundColor +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer direction +androidx.appcompat.R$style: int Theme_AppCompat_Light +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean isEntityUpdateable() +james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$layout: int dialog_animatable_icon +com.baidu.location.e.l$b: java.util.List a(org.json.JSONObject,java.lang.String,int) +android.didikee.donate.R$attr: int homeAsUpIndicator +androidx.constraintlayout.widget.R$styleable: int Variant_region_heightMoreThan +com.amap.api.location.AMapLocationClientOption: int describeContents() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_min +okhttp3.internal.ws.WebSocketReader: boolean closed +androidx.recyclerview.widget.RecyclerView: void setPreserveFocusAfterLayout(boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintTextColor +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String LocalizedName +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: java.util.List getBrands() +androidx.viewpager2.R$attr: int fastScrollEnabled +com.google.android.material.textfield.TextInputLayout: void setStartIconContentDescription(java.lang.CharSequence) +okhttp3.ConnectionPool$1 +wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog_title +androidx.hilt.work.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.android.gms.common.api.GoogleApiActivity: GoogleApiActivity() +com.google.android.material.R$styleable: int Constraint_layout_constraintStart_toEndOf +com.google.android.material.R$attr: int textAppearanceHeadline5 +android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_cancelAll +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListMenuView +com.xw.repo.bubbleseekbar.R$attr: int windowActionBarOverlay +android.didikee.donate.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: int getStatus() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: long dt +cyanogenmod.weather.WeatherInfo$Builder: java.util.List mForecastList +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetLeft +com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.content.res.ColorStateList getIconTintList() +androidx.appcompat.widget.ActionMenuView: void setOverflowIcon(android.graphics.drawable.Drawable) +androidx.preference.R$style: int TextAppearance_Compat_Notification_Line2 +com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableTransition +androidx.constraintlayout.widget.R$styleable: int SearchView_layout +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Title +androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_dark +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_keyline +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintEnd_toEndOf +androidx.coordinatorlayout.R$styleable: int[] ColorStateListItem +okhttp3.Request$Builder: okhttp3.Request$Builder url(okhttp3.HttpUrl) +okhttp3.internal.http2.PushObserver: boolean onData(int,okio.BufferedSource,int,boolean) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: boolean done +com.google.android.material.R$styleable: int NavigationView_menu +androidx.vectordrawable.R$id: int text2 +androidx.loader.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_NoActionBar_Bridge +okhttp3.internal.cache2.Relay$RelaySource: okhttp3.internal.cache2.Relay this$0 +android.didikee.donate.R$styleable: int Toolbar_navigationContentDescription +androidx.constraintlayout.widget.R$attr: int attributeName +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +com.turingtechnologies.materialscrollbar.R$anim: int abc_shrink_fade_out_from_bottom +okhttp3.internal.http2.Http2Connection: Http2Connection(okhttp3.internal.http2.Http2Connection$Builder) +james.adaptiveicon.R$dimen: int abc_text_size_display_1_material +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerNext() +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean hasKey(java.lang.Object) +androidx.constraintlayout.widget.R$attr: int arcMode +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather +androidx.lifecycle.MediatorLiveData$Source: MediatorLiveData$Source(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) +com.google.android.material.progressindicator.ProgressIndicator: void setGrowMode(int) +okhttp3.MultipartBody: okhttp3.MediaType DIGEST +com.xw.repo.bubbleseekbar.R$styleable +cyanogenmod.themes.IThemeService$Stub$Proxy: void requestThemeChangeUpdates(cyanogenmod.themes.IThemeChangeListener) +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSteps +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.ObservableEmitter emitter +wangdaye.com.geometricweather.R$attr: int indicatorSize +com.jaredrummler.android.colorpicker.R$id: int transparency_seekbar +android.didikee.donate.R$dimen: int abc_action_button_min_height_material +okhttp3.OkHttpClient: java.util.List protocols +wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_margin_left +androidx.appcompat.R$styleable: int GradientColor_android_centerY +android.support.v4.os.ResultReceiver: int describeContents() +com.google.android.material.R$styleable: int BottomNavigationView_itemTextAppearanceInactive +com.google.android.material.floatingactionbutton.FloatingActionButton: void setScaleY(float) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Small +cyanogenmod.externalviews.IExternalViewProvider$Stub: java.lang.String DESCRIPTOR +com.google.android.material.R$id: int unlabeled +io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Void call() +android.didikee.donate.R$id: int parentPanel +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Large +com.google.android.material.R$attr: int dayTodayStyle +com.turingtechnologies.materialscrollbar.R$drawable: int navigation_empty_icon +com.google.android.material.R$style: int Theme_MaterialComponents_Light_LargeTouch +android.didikee.donate.R$style: R$style() +com.turingtechnologies.materialscrollbar.R$attr: int colorSwitchThumbNormal +androidx.constraintlayout.utils.widget.ImageFilterButton: void setBrightness(float) +com.google.android.material.R$drawable: int abc_scrubber_primary_mtrl_alpha +com.google.android.material.R$style: int Widget_MaterialComponents_ShapeableImageView +wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Bottom_Left +androidx.appcompat.widget.ButtonBarLayout: void setStacked(boolean) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Indeterminate +com.google.android.material.R$color: int design_dark_default_color_on_secondary +wangdaye.com.geometricweather.settings.activities.AboutActivity: AboutActivity() +wangdaye.com.geometricweather.R$anim: int abc_fade_out +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedHeightMajor +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Line2 +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: boolean won +androidx.core.R$dimen: int notification_top_pad +com.github.rahatarmanahmed.cpv.CircularProgressView$8: void onAnimationUpdate(android.animation.ValueAnimator) +okhttp3.internal.cache.DiskLruCache$Entry: DiskLruCache$Entry(okhttp3.internal.cache.DiskLruCache,java.lang.String) +androidx.preference.R$color: int notification_icon_bg_color +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableEnd +androidx.lifecycle.extensions.R$dimen: int compat_notification_large_icon_max_height +androidx.constraintlayout.widget.R$drawable: int btn_checkbox_unchecked_mtrl +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour MATCH_CONSTRAINT +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModePasteDrawable +cyanogenmod.app.IPartnerInterface$Stub$Proxy: IPartnerInterface$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.settings.activities.AboutActivity +com.google.android.material.chip.Chip: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) +james.adaptiveicon.R$attr: int actionButtonStyle +wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingRight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX aqi +androidx.preference.R$id: int search_src_text +james.adaptiveicon.R$style: int Widget_AppCompat_ListPopupWindow +com.turingtechnologies.materialscrollbar.CustomIndicator: int getTextSize() +wangdaye.com.geometricweather.R$styleable: int[] StateListDrawable +com.google.android.material.R$attr: int navigationViewStyle +androidx.appcompat.R$attr: int actionModeBackground +io.reactivex.Observable: io.reactivex.Observable onExceptionResumeNext(io.reactivex.ObservableSource) +androidx.drawerlayout.widget.DrawerLayout: void setScrimColor(int) +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_1 +cyanogenmod.profiles.StreamSettings: cyanogenmod.profiles.StreamSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_processCityNameLookupRequest +io.reactivex.internal.disposables.ArrayCompositeDisposable: long serialVersionUID +com.google.android.material.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.R$styleable: int Preference_dependency +androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Info +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +io.reactivex.exceptions.CompositeException: void printStackTrace(java.io.PrintWriter) +wangdaye.com.geometricweather.R$string: int common_google_play_services_updating_text +androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragThreshold +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_hint +androidx.preference.R$attr: int actionModeStyle +com.xw.repo.bubbleseekbar.R$attr: int expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.R$attr: int defaultQueryHint +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +androidx.preference.R$attr: int actionModeCloseButtonStyle +wangdaye.com.geometricweather.R$id: int skipCollapsed +com.turingtechnologies.materialscrollbar.R$attr: int closeIconEndPadding +com.google.android.material.R$attr: int listPreferredItemPaddingLeft +okio.Okio$3: void close() +okhttp3.ConnectionPool: int pruneAndGetAllocationCount(okhttp3.internal.connection.RealConnection,long) +com.xw.repo.bubbleseekbar.R$attr: int alphabeticModifiers +wangdaye.com.geometricweather.R$id: int action_bar_activity_content +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +wangdaye.com.geometricweather.R$dimen: int tooltip_precise_anchor_extra_offset +okhttp3.internal.http2.Http2Codec$StreamFinishingSource +okio.Buffer$2: int read() +okhttp3.internal.http.StatusLine: okhttp3.internal.http.StatusLine get(okhttp3.Response) +com.xw.repo.bubbleseekbar.R$attr: int displayOptions +androidx.hilt.lifecycle.R$integer: R$integer() +androidx.recyclerview.widget.RecyclerView$LayoutManager$Properties: RecyclerView$LayoutManager$Properties() +wangdaye.com.geometricweather.R$id: int action_manage +androidx.preference.R$style: int Widget_AppCompat_Light_ListPopupWindow +androidx.appcompat.R$attr: int actionDropDownStyle +androidx.appcompat.R$styleable: int LinearLayoutCompat_divider +androidx.constraintlayout.widget.R$styleable: int Transform_android_translationZ +com.google.android.material.R$dimen: int design_snackbar_text_size +okhttp3.Response$Builder: okhttp3.Response$Builder header(java.lang.String,java.lang.String) +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_seekBarStyle +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_BATTERY_STYLE +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType START +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation +androidx.constraintlayout.utils.widget.ImageFilterButton: float getRound() +com.bumptech.glide.integration.okhttp.R$dimen: int notification_subtext_size +com.amap.api.location.AMapLocationQualityReport: com.amap.api.location.AMapLocationQualityReport clone() +androidx.preference.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: int UnitType +wangdaye.com.geometricweather.R$attr: int textEndPadding +androidx.activity.R$color: R$color() +androidx.constraintlayout.widget.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$drawable: int notif_temp_126 +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() +cyanogenmod.app.CustomTile$Builder: android.content.Context mContext +cyanogenmod.app.suggest.IAppSuggestManager$Stub: int TRANSACTION_handles_0 +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_voiceIcon +cyanogenmod.power.IPerformanceManager$Stub$Proxy: int getNumberOfProfiles() +wangdaye.com.geometricweather.R$anim: int abc_tooltip_enter +com.google.android.material.R$color: int mtrl_navigation_item_text_color +okhttp3.Interceptor$Chain +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date sunsetTime +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.MaybeSource) +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_framePosition +androidx.appcompat.resources.R$string +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: io.reactivex.internal.disposables.SequentialDisposable timed +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_handleOffColor +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: io.reactivex.internal.disposables.SequentialDisposable direct +wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_light +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onMenuItemSelected(int,android.view.MenuItem) +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_enabled +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit valueOf(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int Transition_staggered +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String unitId +com.google.android.material.chip.ChipGroup: void setSingleSelection(int) +com.google.android.material.R$drawable: int abc_btn_check_material +com.google.android.material.R$attr: int layout_constraintCircleAngle +android.didikee.donate.R$layout: int abc_action_bar_title_item +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean isCancelled() +androidx.vectordrawable.animated.R$styleable: int GradientColorItem_android_color +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Menu +androidx.viewpager.R$styleable: int FontFamily_fontProviderQuery +com.jaredrummler.android.colorpicker.R$attr: int iconifiedByDefault +okio.Buffer: void write(okio.Buffer,long) +com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_max_width +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String url +androidx.appcompat.R$attr: int gapBetweenBars +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_anchor +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_list_padding_top_no_title +android.didikee.donate.R$attr: int listPreferredItemHeight +androidx.appcompat.R$styleable: int MenuItem_numericModifiers +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String uvLevel +wangdaye.com.geometricweather.R$dimen: int abc_control_padding_material +com.jaredrummler.android.colorpicker.R$attr: int dependency +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +android.didikee.donate.R$dimen: int abc_dropdownitem_icon_width +retrofit2.BuiltInConverters$RequestBodyConverter: okhttp3.RequestBody convert(okhttp3.RequestBody) +androidx.lifecycle.DefaultLifecycleObserver: void onDestroy(androidx.lifecycle.LifecycleOwner) +wangdaye.com.geometricweather.R$attr: int gapBetweenBars +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTint +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +com.google.android.material.R$attr: int deltaPolarRadius +com.google.android.material.R$attr: int drawerArrowStyle +androidx.appcompat.view.menu.ListMenuItemView: void setTitle(java.lang.CharSequence) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean isDisposed() +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontWeight +com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentCompatStyle +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_dither +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setStatus(int) +com.google.android.material.R$attr: int expandedTitleMargin +com.google.android.material.R$dimen: int mtrl_calendar_maximum_default_fullscreen_minor_axis +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$attr: int region_widthLessThan +com.google.android.material.slider.BaseSlider: void setValues(java.util.List) +okhttp3.internal.cache.InternalCache +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void dispose() +com.google.android.material.R$styleable: int SwitchCompat_splitTrack +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionMenuTextAppearance +com.google.android.material.R$attr: int contentInsetRight +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer RIGHT_CLOSE +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontVariationSettings +cyanogenmod.profiles.AirplaneModeSettings$BooleanState +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_orientation +androidx.hilt.work.R$id: int normal +androidx.appcompat.widget.Toolbar: android.view.Menu getMenu() +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onNext(java.lang.Object) +com.google.android.material.R$id: int checked +okhttp3.internal.ws.WebSocketWriter: void writeMessageFrame(int,long,boolean,boolean) +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleTint +com.google.android.material.R$styleable: int MotionLayout_motionProgress +android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_Alert +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_processWeatherUpdateRequest_0 +androidx.hilt.lifecycle.R$id: int tag_unhandled_key_event_manager +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +com.amap.api.location.AMapLocation: boolean A +com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_alphaChannelVisible +com.xw.repo.bubbleseekbar.R$attr: int commitIcon +james.adaptiveicon.R$styleable: int SwitchCompat_switchTextAppearance +androidx.constraintlayout.widget.R$drawable: int abc_ic_clear_material +androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +androidx.hilt.lifecycle.R$attr: int fontProviderPackage +com.jaredrummler.android.colorpicker.R$attr: int titleMargin +cyanogenmod.app.Profile: java.util.Collection getStreamSettings() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_popupMenuStyle +com.xw.repo.bubbleseekbar.R$style: int Base_V26_Theme_AppCompat_Light +android.didikee.donate.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.R$dimen: int compat_button_inset_vertical_material +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_bias +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: double Value +androidx.constraintlayout.widget.R$attr: int titleMarginBottom +androidx.fragment.R$styleable: int[] FontFamilyFont +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight +com.amap.api.fence.DistrictItem$1: java.lang.Object[] newArray(int) +androidx.customview.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.R$attr: int progressBarPadding +okhttp3.internal.http2.Header: java.lang.String RESPONSE_STATUS_UTF8 +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_arrow +io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogTitle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: java.lang.String LocalizedText +com.turingtechnologies.materialscrollbar.R$styleable: int[] NavigationView +androidx.appcompat.R$attr: int windowActionBarOverlay +androidx.constraintlayout.widget.R$attr: int barrierAllowsGoneWidgets +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_seek_thumb +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void next(java.lang.Object) +james.adaptiveicon.R$styleable: int Toolbar_logo +androidx.hilt.R$styleable: int Fragment_android_name +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +androidx.customview.R$styleable: int FontFamily_fontProviderQuery +okhttp3.OkHttpClient$Builder: okhttp3.EventListener$Factory eventListenerFactory +wangdaye.com.geometricweather.R$dimen: int tooltip_vertical_padding +cyanogenmod.profiles.BrightnessSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +james.adaptiveicon.R$dimen: int notification_big_circle_margin +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen +okhttp3.internal.platform.AndroidPlatform: java.lang.Object getStackTraceForCloseable(java.lang.String) +androidx.transition.R$id: int right_icon +com.jaredrummler.android.colorpicker.R$attr: int textColorAlertDialogListItem +androidx.lifecycle.SavedStateHandleController +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_117 +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode[] values() +wangdaye.com.geometricweather.R$style: int activity_create_widget_done_button +okio.Buffer: void readFully(okio.Buffer,long) +com.bumptech.glide.R$id +androidx.constraintlayout.widget.R$attr: int duration +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String weatherDescription +wangdaye.com.geometricweather.R$string: int tomorrow +androidx.coordinatorlayout.R$attr: int layout_dodgeInsetEdges +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams access$300(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.R$styleable: int ScrimInsetsFrameLayout_insetForeground +androidx.appcompat.widget.AppCompatTextView: void setTextMetricsParamsCompat(androidx.core.text.PrecomputedTextCompat$Params) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf +com.google.android.material.R$dimen: int abc_button_inset_vertical_material +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Colored +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_material_light +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textSize +cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemDrawable(int) +androidx.coordinatorlayout.R$layout: int notification_template_icon_group +com.google.android.material.R$style: int TextAppearance_AppCompat_Display4 +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Inverse +okhttp3.OkHttpClient$1: java.net.Socket deduplicate(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cv +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_BottomSheetDialog +okhttp3.internal.http2.Http2Reader: boolean client +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: java.lang.String toString() +androidx.hilt.lifecycle.R$id: int actions +com.google.android.gms.auth.api.signin.GoogleSignInAccount +wangdaye.com.geometricweather.R$id: int filterBtn +wangdaye.com.geometricweather.common.basic.models.weather.Weather +androidx.preference.R$color: int secondary_text_default_material_light +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: void run() +wangdaye.com.geometricweather.R$styleable: int[] PreferenceImageView +wangdaye.com.geometricweather.R$layout: int material_clock_display +io.reactivex.Observable: io.reactivex.Observable doOnComplete(io.reactivex.functions.Action) +cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.ICMStatusBarManager mStatusBarService +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String unitId +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MOSTLY_CLOUDY_DAY +cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial +com.google.android.material.R$style: int Theme_Design_BottomSheetDialog +com.google.android.material.R$style: int TextAppearance_AppCompat_Display3 +androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogTheme +io.reactivex.internal.observers.BasicIntQueueDisposable: boolean offer(java.lang.Object,java.lang.Object) +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startX +okio.Buffer: java.lang.String readUtf8Line() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalStyle +wangdaye.com.geometricweather.R$attr: int chipBackgroundColor +android.didikee.donate.R$drawable: int abc_seekbar_track_material +okio.ByteString: int size() +com.google.android.material.R$attr: int boxCollapsedPaddingTop +cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_SOUND_SETTINGS +com.turingtechnologies.materialscrollbar.R$attr +retrofit2.BuiltInConverters$ToStringConverter: java.lang.String convert(java.lang.Object) +com.xw.repo.bubbleseekbar.R$attr: int iconifiedByDefault +okhttp3.ResponseBody$BomAwareReader +wangdaye.com.geometricweather.R$string: int settings_title_exchange_day_night_temp_switch +com.google.android.material.R$styleable: int AppBarLayoutStates_state_collapsed +com.google.android.material.R$styleable: int KeyPosition_sizePercent +androidx.constraintlayout.widget.R$styleable: int[] LinearLayoutCompat_Layout +com.google.android.material.R$styleable: int AppCompatTextView_autoSizePresetSizes +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarItemBackground +retrofit2.OptionalConverterFactory$OptionalConverter: java.lang.Object convert(java.lang.Object) +androidx.lifecycle.extensions.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_DrawerArrowToggle +com.google.android.material.R$attr: int materialCalendarMonthNavigationButton +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String temperature +android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +com.google.android.material.R$attr: int triggerReceiver +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableStartCompat +wangdaye.com.geometricweather.R$anim: int fragment_open_exit +androidx.constraintlayout.widget.R$attr: int buttonTint +com.amap.api.location.CoordinateConverter$CoordType: CoordinateConverter$CoordType(java.lang.String,int) +wangdaye.com.geometricweather.R$style: int Preference_SeekBarPreference_Material +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endX +okio.Sink: void write(okio.Buffer,long) +androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context,android.util.AttributeSet) +cyanogenmod.weather.WeatherLocation: java.lang.String access$302(cyanogenmod.weather.WeatherLocation,java.lang.String) +androidx.drawerlayout.R$styleable: int GradientColor_android_centerColor +com.amap.api.location.UmidtokenInfo$a: UmidtokenInfo$a() +okhttp3.internal.http.RealInterceptorChain: int connectTimeoutMillis() +androidx.preference.R$drawable: int abc_list_selector_disabled_holo_light +wangdaye.com.geometricweather.R$array: R$array() +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float NitrogenDioxide +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_CLOCK_TEXT_COLOR +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: java.lang.Thread thread +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_subtitleTextStyle +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache +wangdaye.com.geometricweather.R$xml: int network_security_config +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String weatherText +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: boolean isDisposed() +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean disposed +androidx.constraintlayout.widget.R$id: int checked +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetEnd +androidx.vectordrawable.R$attr: R$attr() +com.google.android.material.circularreveal.CircularRevealLinearLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_night_foreground +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getSunRiseDate() +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_bottomBar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric Metric +androidx.appcompat.widget.ViewStubCompat: ViewStubCompat(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$attr: int isPreferenceVisible +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException +wangdaye.com.geometricweather.R$attr: int dividerHorizontal +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_CheckBox +androidx.appcompat.R$attr: int layout +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemIconSize +com.xw.repo.bubbleseekbar.R$attr: int title +androidx.preference.UnPressableLinearLayout: UnPressableLinearLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$id: int right_icon +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_OutlinedButton +androidx.customview.R$layout: R$layout() +androidx.preference.R$style: int Widget_AppCompat_ActionButton_CloseMode +retrofit2.RequestFactory$Builder: boolean gotQueryName +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode[] values() +android.support.v4.app.INotificationSideChannel$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$color: int material_grey_100 +androidx.appcompat.resources.R$string: R$string() +cyanogenmod.hardware.ICMHardwareService: int getSupportedFeatures() +androidx.activity.R$drawable: int notification_bg_low +retrofit2.ParameterHandler$QueryName: boolean encoded +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property No2 +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_button_bar_material +androidx.preference.R$attr: int colorError +androidx.drawerlayout.R$styleable: int GradientColor_android_centerY +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeChangeListener mThemeChangeListener +androidx.lifecycle.LiveData$ObserverWrapper: void detachObserver() +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_primary_mtrl_alpha +androidx.constraintlayout.widget.R$id: int submit_area +com.xw.repo.bubbleseekbar.R$style: int Base_V22_Theme_AppCompat_Light +androidx.constraintlayout.utils.widget.ImageFilterButton: float getCrossfade() +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_pixel +james.adaptiveicon.R$styleable: int AppCompatTheme_editTextStyle +wangdaye.com.geometricweather.R$drawable: int ic_donate +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextBackground +cyanogenmod.app.IPartnerInterface: void setMobileDataEnabled(boolean) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlNormal +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: float getDistance(float) +androidx.hilt.R$styleable: int[] GradientColorItem +androidx.vectordrawable.R$attr: int fontProviderFetchTimeout +androidx.appcompat.R$color: int abc_primary_text_material_dark +com.amap.api.location.AMapLocationClientOption$AMapLocationMode +com.google.android.material.R$id: int easeIn +wangdaye.com.geometricweather.R$attr: int bsb_show_progress_in_float +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setId(java.lang.Long) +wangdaye.com.geometricweather.R$styleable: int FragmentContainerView_android_tag +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onError(java.lang.Throwable) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getSelectedItemId() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTemperature +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +wangdaye.com.geometricweather.R$attr: int bsb_thumb_radius +androidx.preference.R$color: int ripple_material_light +io.reactivex.internal.queue.SpscArrayQueue: java.util.concurrent.atomic.AtomicLong producerIndex +android.didikee.donate.R$styleable: int SwitchCompat_android_textOn +com.google.android.material.R$styleable: int OnSwipe_dragScale +androidx.constraintlayout.widget.R$styleable: int MockView_mock_label +com.jaredrummler.android.colorpicker.ColorPickerView: int getSliderTrackerColor() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu +wangdaye.com.geometricweather.R$drawable: int indicator +androidx.preference.R$drawable: int abc_text_select_handle_left_mtrl_light +androidx.activity.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$styleable: int Chip_shapeAppearanceOverlay +okio.AsyncTimeout: void scheduleTimeout(okio.AsyncTimeout,long,boolean) +cyanogenmod.app.Profile$1: java.lang.Object[] newArray(int) +androidx.preference.MultiSelectListPreference$SavedState: android.os.Parcelable$Creator CREATOR +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_divider +io.reactivex.internal.observers.DeferredScalarObserver: long serialVersionUID +wangdaye.com.geometricweather.R$attr: int windowFixedHeightMinor +okio.BufferedSource: boolean exhausted() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator RECENTS_SHOW_SEARCH_BAR_VALIDATOR +com.google.android.material.R$attr: int keyPositionType +com.google.android.material.R$id: int masked +com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +okhttp3.internal.http2.Http2Codec: java.lang.String HOST +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginLeft +androidx.appcompat.widget.AppCompatImageButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +wangdaye.com.geometricweather.R$string: int greenDAO +wangdaye.com.geometricweather.R$string: int settings_title_ui_style +cyanogenmod.externalviews.ExternalView$1: void onServiceDisconnected(android.content.ComponentName) +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit PERCENT +androidx.activity.R$dimen: int compat_notification_large_icon_max_height +com.amap.api.location.AMapLocationClientOption: float v +retrofit2.ParameterHandler$Headers: int p +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: android.os.IBinder mRemote +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: boolean mCanceled +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$layout: int abc_action_bar_title_item +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.RequestBody) +androidx.core.content.FileProvider +androidx.appcompat.R$attr: int arrowHeadLength +com.google.android.material.R$styleable: int[] RecycleListView +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_hovered_z +cyanogenmod.weather.WeatherLocation: WeatherLocation(android.os.Parcel,cyanogenmod.weather.WeatherLocation$1) +cyanogenmod.hardware.CMHardwareManager: int FEATURE_LONG_TERM_ORBITS +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_checkboxStyle +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents +wangdaye.com.geometricweather.R$styleable: int[] SeekBarPreference +com.google.android.material.R$layout: int text_view_with_line_height_from_layout +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +com.google.android.material.R$animator: int mtrl_extended_fab_state_list_animator +androidx.constraintlayout.widget.R$attr: int windowFixedHeightMajor +androidx.preference.R$dimen: int compat_button_inset_horizontal_material +okhttp3.internal.cache.DiskLruCache: java.lang.String DIRTY +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlActivated +wangdaye.com.geometricweather.R$layout: int dialog_background_location +androidx.viewpager2.R$styleable: int FontFamily_fontProviderQuery +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: java.lang.Object item +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type upperBound +wangdaye.com.geometricweather.R$drawable: int notif_temp_97 +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String WRITE_ALARMS_PERMISSION +okhttp3.internal.Util: void addSuppressedIfPossible(java.lang.Throwable,java.lang.Throwable) +wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity: ClockDayVerticalWidgetConfigActivity() +androidx.work.R$id: int line1 +androidx.drawerlayout.R$id +com.turingtechnologies.materialscrollbar.R$id: int expanded_menu +androidx.preference.R$layout: int abc_popup_menu_item_layout +androidx.constraintlayout.widget.R$color: int abc_primary_text_material_dark +com.turingtechnologies.materialscrollbar.R$id: int parent_matrix +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial +com.google.android.material.R$id: int chip +android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +cyanogenmod.weather.WeatherInfo$Builder: int mWindSpeedUnit +com.baidu.location.e.h$c: com.baidu.location.e.h$c b +wangdaye.com.geometricweather.R$styleable: int MockView_mock_label +cyanogenmod.app.Profile$ExpandedDesktopMode: int DISABLE +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +com.turingtechnologies.materialscrollbar.R$style: int Base_CardView +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: void clear() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1 +okhttp3.internal.http2.ConnectionShutdownException +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Info +com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_padding_material +androidx.appcompat.widget.SearchView: void setOnQueryTextFocusChangeListener(android.view.View$OnFocusChangeListener) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy valueOf(java.lang.String) +okio.RealBufferedSource: long readAll(okio.Sink) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String getUnit() +cyanogenmod.app.CustomTile$GridExpandedStyle +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupMenu +okio.GzipSink: okio.DeflaterSink deflaterSink +com.google.gson.stream.JsonReader: int PEEKED_END_ARRAY +okio.SegmentedByteString: java.lang.String base64() +cyanogenmod.externalviews.KeyguardExternalView$3: int val$height +androidx.hilt.work.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$attr: int listItemLayout +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_36dp +androidx.preference.R$color: int material_grey_600 +androidx.constraintlayout.widget.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$dimen: int mtrl_progress_indicator_full_rounded_corner_radius +androidx.hilt.work.R$styleable: int GradientColor_android_endColor +okhttp3.Headers$Builder: java.lang.String get(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onError(java.lang.Throwable) +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onKeyguardShowing +androidx.transition.R$string: int status_bar_notification_info_overflow +com.amap.api.fence.PoiItem: android.os.Parcelable$Creator CREATOR +cyanogenmod.app.suggest.AppSuggestManager: java.lang.String TAG +io.reactivex.Observable: io.reactivex.Single last(java.lang.Object) +androidx.preference.R$styleable: int ListPreference_android_entries +james.adaptiveicon.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +cyanogenmod.externalviews.ExternalView$8: ExternalView$8(cyanogenmod.externalviews.ExternalView) +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endY +androidx.preference.R$dimen: int abc_action_button_min_width_material +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_medium_material +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_font +com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Object) +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_disabled_holo_light +wangdaye.com.geometricweather.common.basic.models.weather.Base: long publishTime +com.amap.api.location.AMapLocation: void setConScenario(int) +cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode[] getDisplayModes() +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.util.Date getDate() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: java.lang.String Unit +com.google.android.material.R$attr: int indicatorCornerRadius +com.google.gson.stream.JsonWriter: boolean serializeNulls +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf +androidx.dynamicanimation.R$dimen: int compat_control_corner_material +android.didikee.donate.R$styleable: int DrawerArrowToggle_drawableSize +androidx.vectordrawable.animated.R$styleable: int[] GradientColor +androidx.preference.R$styleable: int CheckBoxPreference_android_summaryOn +cyanogenmod.weather.WeatherInfo: double getWindDirection() +james.adaptiveicon.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +com.google.android.material.R$color: int material_grey_50 +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.appcompat.R$styleable: int AppCompatTheme_colorButtonNormal +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_orderInCategory +retrofit2.DefaultCallAdapterFactory$1: java.lang.reflect.Type responseType() +com.google.android.material.R$style: int Widget_AppCompat_ListView_Menu +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_14 +com.google.android.material.R$styleable: int Slider_thumbRadius +okhttp3.HttpUrl$Builder: int slashCount(java.lang.String,int,int) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionBarOverlay +androidx.viewpager.widget.PagerTitleStrip: void setTextSpacing(int) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeErrorColor +com.google.android.material.R$styleable: int[] ConstraintLayout_Layout +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: okhttp3.internal.http2.Settings val$settings +okhttp3.HttpUrl: java.util.List pathSegments() +wangdaye.com.geometricweather.R$id: int cut +cyanogenmod.weather.CMWeatherManager: android.content.Context mContext +androidx.appcompat.R$dimen: int notification_subtext_size +com.jaredrummler.android.colorpicker.R$attr: int thumbTintMode +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_speed +androidx.preference.R$attr: int layout_dodgeInsetEdges +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: float unitFactor +cyanogenmod.weatherservice.ServiceRequestResult: java.util.List access$302(cyanogenmod.weatherservice.ServiceRequestResult,java.util.List) +androidx.appcompat.widget.ActionBarOverlayLayout: int getActionBarHideOffset() +android.didikee.donate.R$color: int accent_material_dark +wangdaye.com.geometricweather.R$attr: int track +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: int UnitType +wangdaye.com.geometricweather.R$dimen: int notification_top_pad_large_text +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType COLOR_DRAWABLE_TYPE +cyanogenmod.app.ProfileManager: cyanogenmod.app.IProfileManager sService +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded +com.jaredrummler.android.colorpicker.R$attr: int splitTrack +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: long index +com.jaredrummler.android.colorpicker.R$drawable: int abc_item_background_holo_light +androidx.constraintlayout.widget.R$dimen: int tooltip_margin +androidx.preference.R$styleable: int Toolbar_android_gravity +com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_MODE_SAVING +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_alt_shortcut_label +james.adaptiveicon.R$styleable: int MenuGroup_android_id +cyanogenmod.weather.WeatherInfo$1: cyanogenmod.weather.WeatherInfo[] newArray(int) +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endX +com.google.android.material.R$attr: int chipSpacing +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Placeholder +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.R$attr: int cpv_borderColor +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: Minutely(java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer) +androidx.appcompat.widget.AppCompatImageView: void setImageURI(android.net.Uri) +androidx.appcompat.R$attr: int switchPadding +androidx.transition.R$styleable: int[] GradientColorItem +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyleSmall +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: AccuCurrentResult$Temperature() +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void dispose() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onDetach() +androidx.hilt.lifecycle.R$drawable: int notification_bg_low_normal +com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyle +androidx.fragment.app.FragmentManagerViewModel +com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getHandleOffset() +wangdaye.com.geometricweather.R$styleable: int ArcProgress_max +wangdaye.com.geometricweather.R$color: int abc_search_url_text_pressed +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_blackContainer +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner +okhttp3.internal.tls.BasicCertificateChainCleaner: int MAX_SIGNERS +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +androidx.appcompat.view.menu.ListMenuItemView: void setIcon(android.graphics.drawable.Drawable) +cyanogenmod.weatherservice.WeatherProviderService$1: cyanogenmod.weatherservice.WeatherProviderService this$0 +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSyncDuration +androidx.constraintlayout.widget.R$dimen: int notification_action_text_size +retrofit2.Retrofit$1: retrofit2.Retrofit this$0 +wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_icon +androidx.vectordrawable.R$dimen: int compat_button_padding_vertical_material +wangdaye.com.geometricweather.R$font: int product_sans_bold +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginStart +com.google.android.material.textfield.TextInputLayout: void setErrorIconTintList(android.content.res.ColorStateList) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.jaredrummler.android.colorpicker.R$attr: int cpv_dialogType +okio.Buffer$1: void flush() +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.google.gson.FieldNamingPolicy$6 +androidx.appcompat.resources.R$id: int accessibility_custom_action_30 +androidx.appcompat.R$color: int abc_search_url_text_pressed +androidx.preference.R$id: int edit_query +com.google.android.material.R$attr: int autoSizePresetSizes +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Button +okhttp3.internal.http2.Http2Writer: void data(boolean,int,okio.Buffer,int) +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit MM +com.github.rahatarmanahmed.cpv.R$attr: R$attr() +androidx.appcompat.R$dimen: int abc_action_bar_content_inset_material +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onComplete() +com.google.android.material.R$id: int jumpToEnd +james.adaptiveicon.R$id: int right_side +androidx.coordinatorlayout.R$attr: int fontProviderFetchStrategy +androidx.constraintlayout.widget.R$dimen: int abc_dialog_padding_top_material +wangdaye.com.geometricweather.R$layout: int item_weather_icon_title +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView +com.bumptech.glide.integration.okhttp.R$dimen: int notification_top_pad +androidx.vectordrawable.animated.R$layout: int notification_template_icon_group +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: long serialVersionUID +com.google.android.material.internal.ScrimInsetsFrameLayout +androidx.constraintlayout.widget.R$color: int abc_secondary_text_material_light +james.adaptiveicon.R$dimen: int abc_alert_dialog_button_bar_height +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_imageButtonStyle +androidx.constraintlayout.widget.R$styleable: int Spinner_android_prompt +androidx.appcompat.R$styleable: int FontFamily_fontProviderPackage +androidx.core.graphics.drawable.IconCompatParcelizer: void write(androidx.core.graphics.drawable.IconCompat,androidx.versionedparcelable.VersionedParcel) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_android_enabled +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$attr: int text +okhttp3.internal.Util$2: Util$2(java.lang.String,boolean) +androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_checkbox +com.google.android.material.R$dimen: int mtrl_calendar_header_divider_thickness +wangdaye.com.geometricweather.R$dimen: int design_title_text_size +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_left_mtrl_light +androidx.constraintlayout.widget.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +cyanogenmod.themes.ThemeManager$1$1: void run() +androidx.fragment.R$id: int chronometer +okhttp3.internal.http2.Settings: int HEADER_TABLE_SIZE +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitation() +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_numericShortcut +wangdaye.com.geometricweather.R$string: int publish_at +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.preference.R$styleable: int AppCompatTheme_actionBarPopupTheme +androidx.appcompat.R$attr: int titleTextStyle +androidx.appcompat.R$id: int action_mode_bar +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_NoActionBar +cyanogenmod.providers.CMSettings$System$1 +com.google.android.material.R$dimen: int mtrl_shape_corner_size_small_component +cyanogenmod.weather.WeatherLocation: java.lang.String toString() +androidx.transition.R$drawable: int notification_bg +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_thumb +androidx.activity.R$styleable: int[] FontFamilyFont +androidx.core.R$id: int accessibility_custom_action_6 +okhttp3.HttpUrl: java.lang.String username() +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder pingInterval(java.time.Duration) +wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_shapeAppearance +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_min_width +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation RIGHT +cyanogenmod.providers.CMSettings$Secure: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) +com.turingtechnologies.materialscrollbar.R$attr: int listMenuViewStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +com.google.android.gms.location.LocationSettingsStates: android.os.Parcelable$Creator CREATOR +okhttp3.internal.platform.ConscryptPlatform: void configureSslSocketFactory(javax.net.ssl.SSLSocketFactory) +com.jaredrummler.android.colorpicker.R$id: int action_bar_activity_content +androidx.activity.R$layout: int notification_template_icon_group +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void dispose() +androidx.hilt.R$drawable: int notification_bg_low_pressed +okhttp3.internal.http.RealResponseBody: long contentLength() +okhttp3.internal.http.StatusLine: int HTTP_TEMP_REDIRECT +com.xw.repo.bubbleseekbar.R$attr: int iconTint +com.google.android.material.R$styleable: int Constraint_android_minWidth +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacing +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setAqiIndex(java.lang.Integer) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +wangdaye.com.geometricweather.R$id: int widget_clock_day_week +wangdaye.com.geometricweather.R$styleable: int SwitchImageButton_drawable_res_off +com.turingtechnologies.materialscrollbar.R$color: int design_default_color_primary +android.support.v4.app.INotificationSideChannel$Stub: android.support.v4.app.INotificationSideChannel asInterface(android.os.IBinder) +com.google.android.material.R$color: int foreground_material_light +okio.RealBufferedSource$1: int read() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitation(java.lang.Float) +james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMark +com.google.android.material.R$attr: int actionModeWebSearchDrawable +com.google.android.gms.common.internal.zzv: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginLeft +androidx.constraintlayout.widget.VirtualLayout: void setVisibility(int) +com.google.android.gms.location.LocationSettingsRequest: android.os.Parcelable$Creator CREATOR +com.jaredrummler.android.colorpicker.R$attr: int listMenuViewStyle +wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_divider +okhttp3.CacheControl +cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_VIBRATE +androidx.work.R$id: int accessibility_custom_action_5 +androidx.appcompat.R$styleable: int[] AppCompatSeekBar +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_applyDefaultTheme +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_titleEnabled +androidx.lifecycle.extensions.R$attr: int alpha +androidx.constraintlayout.widget.R$drawable: int abc_btn_colored_material +androidx.appcompat.R$styleable: int AppCompatTheme_actionModePasteDrawable +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +androidx.lifecycle.Transformations: androidx.lifecycle.LiveData map(androidx.lifecycle.LiveData,androidx.arch.core.util.Function) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setPm10(java.lang.Float) +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets +android.didikee.donate.R$styleable: int AppCompatImageView_tint +androidx.appcompat.widget.ActionMenuView: void setPopupTheme(int) +com.google.gson.stream.JsonReader: void endObject() +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer RIGHT_VALUE +james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogTheme +wangdaye.com.geometricweather.R$styleable: int[] StateListDrawableItem +androidx.work.R$id: int accessibility_custom_action_19 +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription this$0 +androidx.lifecycle.FullLifecycleObserverAdapter +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +androidx.constraintlayout.widget.R$id: int search_go_btn +wangdaye.com.geometricweather.R$id: int container_main_details +androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_srcCompat +com.github.rahatarmanahmed.cpv.R$color: R$color() +com.turingtechnologies.materialscrollbar.R$attr: int actionBarSplitStyle +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_AutoCompleteTextView +com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getIconTintMode() +androidx.core.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.R$styleable: int[] ExtendedFloatingActionButton +com.google.android.material.R$styleable: int ProgressIndicator_inverse +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendLayoutManager +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +wangdaye.com.geometricweather.R$xml +com.google.android.material.chip.Chip: com.google.android.material.resources.TextAppearance getTextAppearance() +androidx.viewpager.R$layout: int notification_template_part_time +com.jaredrummler.android.colorpicker.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_visible +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListPopupWindow +androidx.hilt.work.R$id: int accessibility_custom_action_6 +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: ObservableGroupJoin$LeftRightObserver(io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport,boolean) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getCOColor(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: int UnitType +okhttp3.internal.connection.StreamAllocation: void release(okhttp3.internal.connection.RealConnection) +androidx.lifecycle.AbstractSavedStateViewModelFactory: AbstractSavedStateViewModelFactory(androidx.savedstate.SavedStateRegistryOwner,android.os.Bundle) +androidx.hilt.R$attr +com.jaredrummler.android.colorpicker.R$attr: int layout +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_close_icon_tint +androidx.appcompat.resources.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getMoonPhaseDescription() +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showColorShades +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: KeyguardExternalViewProviderService$1$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService$1,android.os.Bundle) +androidx.hilt.lifecycle.R$layout: int notification_template_part_time +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +androidx.viewpager.R$dimen: int notification_right_icon_size +com.google.android.material.R$attr: int layout_constraintBottom_creator +androidx.preference.R$id: int multiply +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage INITIALIZE +org.greenrobot.greendao.AbstractDao: java.util.List loadAllAndCloseCursor(android.database.Cursor) +wangdaye.com.geometricweather.R$attr: int rv_side +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_arrowShaftLength +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property CurrentPosition +com.google.android.material.R$styleable: int Chip_checkedIconTint +io.reactivex.Observable: io.reactivex.Observable intervalRange(long,long,long,long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotationX +androidx.preference.R$styleable: int MenuView_android_windowAnimationStyle +com.autonavi.aps.amapapi.model.AMapLocationServer: void d(java.lang.String) +io.reactivex.internal.util.VolatileSizeArrayList: boolean addAll(int,java.util.Collection) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTextPadding +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onStart() +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Bridge +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Green +androidx.preference.R$styleable: int AppCompatTextView_fontVariationSettings +okhttp3.internal.Internal: java.io.IOException timeoutExit(okhttp3.Call,java.io.IOException) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String unit +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getError() +com.google.android.material.R$dimen: int notification_top_pad_large_text +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: CMSettings$InclusiveIntegerRangeValidator(int,int) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: int Rank +wangdaye.com.geometricweather.R$attr: int switchPreferenceCompatStyle +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayDetailsWidgetConfigActivity: Hilt_ClockDayDetailsWidgetConfigActivity() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabText +com.turingtechnologies.materialscrollbar.R$attr: int popupTheme +james.adaptiveicon.R$attr: int panelMenuListTheme +com.google.android.material.R$styleable: int NavigationView_shapeAppearanceOverlay +androidx.constraintlayout.widget.R$attr: int layout_constraintRight_creator +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float no2 +com.jaredrummler.android.colorpicker.R$color: int primary_text_disabled_material_dark +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationY +com.google.android.material.R$layout: int material_timepicker_dialog +wangdaye.com.geometricweather.R$anim: int mtrl_bottom_sheet_slide_in +androidx.constraintlayout.widget.R$styleable: int Spinner_popupTheme +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +okhttp3.Response$Builder: long sentRequestAtMillis +cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(java.lang.String,java.lang.String,android.net.Uri,android.net.Uri) +wangdaye.com.geometricweather.R$attr: int iconGravity +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getDurationVoice(android.content.Context,float) +com.xw.repo.bubbleseekbar.R$dimen: int abc_floating_window_z +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMenuItemView +com.google.android.material.R$dimen: int mtrl_calendar_header_text_padding +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColorSchemeResource(int) +com.turingtechnologies.materialscrollbar.R$id: int touch_outside +androidx.constraintlayout.widget.R$attr: int trackTintMode +io.reactivex.internal.subscriptions.SubscriptionArbiter +androidx.hilt.R$styleable: int GradientColor_android_centerY +retrofit2.ParameterHandler$RawPart: void apply(retrofit2.RequestBuilder,java.lang.Object) +wangdaye.com.geometricweather.R$attr: int cpv_showDialog +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingTop +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedWidthMajor +androidx.appcompat.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_padding_left +androidx.lifecycle.extensions.R$attr: int fontProviderAuthority +cyanogenmod.app.IProfileManager$Stub$Proxy: void updateProfile(cyanogenmod.app.Profile) +okhttp3.ConnectionSpec: java.lang.String[] cipherSuites +com.google.android.material.R$style: int Widget_AppCompat_RatingBar_Indicator +com.google.android.material.slider.RangeSlider: void setHaloRadius(int) +androidx.appcompat.R$string: int abc_searchview_description_submit +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver[] observers +com.google.android.material.R$id: int src_atop +androidx.constraintlayout.widget.R$attr: int flow_horizontalGap +cyanogenmod.externalviews.ExternalViewProperties: android.graphics.Rect mHitRect +cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService this$0 +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService +wangdaye.com.geometricweather.R$attr: int itemIconPadding +com.google.android.material.textfield.TextInputLayout: void setSuffixTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String insee +com.google.android.material.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog +com.turingtechnologies.materialscrollbar.R$string: int appbar_scrolling_view_behavior +com.google.android.gms.base.R$string: int common_google_play_services_enable_button +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: double Value +okio.RealBufferedSink +io.reactivex.internal.observers.DeferredScalarObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.HourlyEntity,int) +james.adaptiveicon.R$styleable: int MenuItem_android_icon +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +com.bumptech.glide.integration.okhttp.R$color: int notification_action_color_filter +androidx.lifecycle.LiveData: java.lang.Object mPendingData +androidx.core.R$styleable: int[] ColorStateListItem +androidx.preference.R$style: int Widget_AppCompat_ListView_Menu +wangdaye.com.geometricweather.R$string: int key_text_size +james.adaptiveicon.R$styleable: int[] Spinner +com.google.android.material.R$bool: int mtrl_btn_textappearance_all_caps +androidx.customview.R$string +com.xw.repo.bubbleseekbar.R$dimen: int notification_action_text_size +androidx.preference.R$style: int Base_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$drawable: int notif_temp_123 +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getShortWindDescription() +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void dispose() +com.google.android.material.R$styleable: int SwitchMaterial_useMaterialThemeColors +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: Hourly(java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability) +okhttp3.ConnectionSpec +com.google.android.material.R$id: int ghost_view +androidx.vectordrawable.animated.R$attr: int font +androidx.drawerlayout.R$styleable: int[] ColorStateListItem +com.xw.repo.bubbleseekbar.R$color: int abc_tint_seek_thumb +cyanogenmod.app.ICMStatusBarManager$Stub: ICMStatusBarManager$Stub() wangdaye.com.geometricweather.R$styleable: int[] ActivityChooserView -cyanogenmod.power.IPerformanceManager: boolean setPowerProfile(int) -com.google.android.material.behavior.SwipeDismissBehavior: SwipeDismissBehavior() -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour MATCH_PARENT -androidx.preference.R$layout: int preference_dropdown -androidx.preference.R$attr: int positiveButtonText -androidx.preference.R$attr: int thickness -androidx.constraintlayout.widget.R$id: int ignoreRequest -com.google.android.material.R$attr: int layout_constrainedHeight -okhttp3.internal.cache.DiskLruCache -com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusTopEnd -wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_to_on_mtrl_015 -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetEnd -android.didikee.donate.R$style: int Widget_AppCompat_Button -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade() -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile build() -androidx.viewpager.widget.PagerTitleStrip: void setTextColor(int) -androidx.preference.R$style: int TextAppearance_AppCompat_Display1 -androidx.preference.R$attr: int submitBackground -wangdaye.com.geometricweather.R$attr: int layout_constraintTag -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getLastThemeChangeRequestType -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onComplete() -wangdaye.com.geometricweather.R$attr: int boxStrokeColor -android.didikee.donate.R$styleable: int TextAppearance_android_shadowRadius -com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalGap -wangdaye.com.geometricweather.R$layout: int widget_clock_day_week -james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionBarOverlay -androidx.constraintlayout.widget.R$attr: int autoSizeStepGranularity -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.util.concurrent.CompletableFuture adapt(retrofit2.Call) -org.greenrobot.greendao.AbstractDaoSession: long insert(java.lang.Object) -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.internal.connection.StreamAllocation streamAllocation -androidx.hilt.lifecycle.R$dimen: int notification_main_column_padding_top -com.google.android.material.R$attr: int actionBarDivider -com.google.android.material.R$attr: int tabIndicatorHeight -wangdaye.com.geometricweather.R$string: int ellipsis -wangdaye.com.geometricweather.R$attr: int listPreferredItemHeight -com.google.android.material.R$attr: int textAppearanceSearchResultSubtitle -com.google.android.material.R$attr: int navigationMode -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconContentDescription -wangdaye.com.geometricweather.background.polling.work.worker.TodayForecastUpdateWorker -com.google.android.material.R$attr: int trackColor -com.google.android.material.R$style: int Test_Theme_MaterialComponents_MaterialCalendar -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -com.xw.repo.bubbleseekbar.R$anim: int abc_slide_out_top -james.adaptiveicon.R$dimen -cyanogenmod.app.CustomTile$1: java.lang.Object[] newArray(int) -androidx.appcompat.R$bool: int abc_action_bar_embed_tabs -cyanogenmod.externalviews.ExternalView: void onActivityCreated(android.app.Activity,android.os.Bundle) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWindLevel() -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginLeft -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval -com.google.android.material.R$attr: int dividerVertical -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderFetchStrategy -androidx.transition.R$layout: int notification_template_icon_group -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Light -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder pushObserver(okhttp3.internal.http2.PushObserver) -com.google.android.material.R$id: int normal -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean mainDone -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onSuccess(java.lang.Object) -android.didikee.donate.R$attr: int measureWithLargestChild -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleVerticalOffset -androidx.appcompat.R$dimen: int abc_text_size_headline_material -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -wangdaye.com.geometricweather.R$styleable: int DialogPreference_positiveButtonText -com.jaredrummler.android.colorpicker.R$attr: int actionOverflowMenuStyle -wangdaye.com.geometricweather.R$attr: int actionBarSize -androidx.preference.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextBackground -retrofit2.Retrofit: okhttp3.Call$Factory callFactory() -androidx.preference.R$dimen: int abc_text_size_menu_material -androidx.appcompat.R$attr: int autoSizeMaxTextSize -com.google.android.material.R$attr: int cornerSizeTopRight -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextStyle -james.adaptiveicon.R$attr: int dividerHorizontal -com.google.android.material.R$attr: int font -wangdaye.com.geometricweather.common.basic.models.weather.Alert: void deduplication(java.util.List) -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: SinglePostCompleteSubscriber(org.reactivestreams.Subscriber) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$styleable: int BackgroundStyle_android_selectableItemBackground -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeAppearance -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Current current -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: long serialVersionUID -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int FINISHED -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database wrap(android.database.sqlite.SQLiteDatabase) -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display1 -com.google.android.material.R$id: int month_navigation_fragment_toggle -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Switch -okhttp3.internal.connection.RouteSelector$Selection: okhttp3.Route next() +androidx.vectordrawable.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWetBulbTemperature(java.lang.Integer) +androidx.hilt.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.R$drawable: int notif_temp_34 +com.google.android.material.R$attr: int closeIconSize +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +okhttp3.RealCall$AsyncCall: okhttp3.Callback responseCallback +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_arrowHeadLength +wangdaye.com.geometricweather.R$drawable: int preference_list_divider_material +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String WidgetPhrase +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_CONNECTION +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ButtonBar +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns +wangdaye.com.geometricweather.R$array: int distance_unit_values +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mCallGetCommand +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver +androidx.constraintlayout.widget.Barrier: int getType() +com.google.android.material.R$attr: int statusBarBackground +com.jaredrummler.android.colorpicker.R$attr: int checkBoxPreferenceStyle +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored +com.google.android.material.R$styleable: int CollapsingToolbarLayout_contentScrim +androidx.preference.R$attr: int font +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +androidx.constraintlayout.widget.R$styleable: int ButtonBarLayout_allowStacking +com.google.android.material.snackbar.SnackbarContentLayout: android.widget.Button getActionView() +androidx.constraintlayout.widget.R$styleable: int ActionBar_elevation +com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_title_material +androidx.lifecycle.LifecycleDispatcher: void init(android.content.Context) +com.google.android.material.R$styleable: int AppCompatTheme_actionModeSplitBackground +wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_title +androidx.constraintlayout.widget.R$style: int Base_V28_Theme_AppCompat +androidx.appcompat.R$id: int accessibility_custom_action_4 +io.reactivex.internal.observers.BlockingObserver: long serialVersionUID +okhttp3.OkHttpClient$1: java.io.IOException timeoutExit(okhttp3.Call,java.io.IOException) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_18 +cyanogenmod.profiles.ConnectionSettings: java.lang.String ACTION_MODIFY_NETWORK_MODE +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark_focused +wangdaye.com.geometricweather.main.fragments.ManagementFragment +com.xw.repo.bubbleseekbar.R$id: int sides +com.google.android.material.R$layout: int abc_search_view +cyanogenmod.platform.R$attr: R$attr() +okhttp3.ConnectionSpec$Builder: ConnectionSpec$Builder(okhttp3.ConnectionSpec) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.database.Database getDatabase() +wangdaye.com.geometricweather.R$attr: int materialCalendarYearNavigationButton +okio.BufferedSource: int readIntLe() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure +okhttp3.internal.Util: java.lang.String canonicalizeHost(java.lang.String) +okhttp3.internal.cache.CacheInterceptor +cyanogenmod.weather.CMWeatherManager$RequestStatus: int ALREADY_IN_PROGRESS +com.jaredrummler.android.colorpicker.R$attr: int seekBarStyle +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_begin +androidx.hilt.work.R$id: int tag_accessibility_actions +com.google.android.material.button.MaterialButtonToggleGroup: int getVisibleButtonCount() +androidx.hilt.lifecycle.R$id: int forever +com.amap.api.location.CoordinateConverter: android.content.Context b +okhttp3.OkHttpClient$1: okhttp3.internal.connection.StreamAllocation streamAllocation(okhttp3.Call) +wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_year_selection +james.adaptiveicon.R$attr: int switchStyle +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_MEDIUM_COLOR_VALIDATOR +com.amap.api.fence.GeoFenceClient: android.app.PendingIntent createPendingIntent(java.lang.String) +androidx.preference.R$styleable: int TextAppearance_android_shadowDy +androidx.constraintlayout.widget.R$attr: int maxVelocity +okhttp3.internal.cache.CacheInterceptor$1: long read(okio.Buffer,long) +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$id: int item_weather_daily_air_progress +androidx.recyclerview.R$id: int line3 +androidx.constraintlayout.motion.widget.MotionHelper +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierMargin +androidx.appcompat.widget.SwitchCompat: java.lang.CharSequence getTextOff() +wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_icon_tint +okhttp3.internal.http2.Http2Writer: okhttp3.internal.http2.Hpack$Writer hpackWriter +androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +com.google.android.material.R$styleable: int Constraint_flow_firstHorizontalBias +androidx.appcompat.R$id: int search_bar +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float ice +com.google.android.material.R$style: int Theme_Design_NoActionBar +com.google.android.material.slider.BaseSlider: void setTickTintList(android.content.res.ColorStateList) +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +cyanogenmod.power.IPerformanceManager +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain24h +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float snowPrecipitation +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture Past24HourTemperatureDeparture +wangdaye.com.geometricweather.R$attr: int flow_horizontalGap +androidx.preference.R$id: int action_context_bar +androidx.swiperefreshlayout.R$dimen: int compat_button_padding_vertical_material +android.didikee.donate.R$color: int background_material_light +com.github.rahatarmanahmed.cpv.CircularProgressView: void removeListener(com.github.rahatarmanahmed.cpv.CircularProgressViewListener) +james.adaptiveicon.R$styleable: int MenuView_android_horizontalDivider +cyanogenmod.app.ILiveLockScreenChangeListener: void onLiveLockScreenChanged(cyanogenmod.app.LiveLockScreenInfo) +com.amap.api.location.AMapLocation: void setErrorCode(int) +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog +com.google.android.gms.common.data.DataHolder +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int prefetch +io.reactivex.internal.observers.DeferredScalarDisposable: java.lang.Object poll() +wangdaye.com.geometricweather.R$color: int material_timepicker_button_background +com.google.android.material.R$dimen: int abc_control_padding_material +james.adaptiveicon.R$styleable: int ActionBar_displayOptions +androidx.constraintlayout.widget.R$styleable: int Constraint_android_scaleX +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmPic1 +cyanogenmod.weather.WeatherInfo: long mTimestamp +com.jaredrummler.android.colorpicker.R$attr: int drawableSize +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: MfHistoryResult$History$Temperature() +androidx.lifecycle.extensions.R$styleable: int FragmentContainerView_android_name +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemBackground +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Determinate +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: void setPathData(androidx.core.graphics.PathParser$PathDataNode[]) +androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +com.google.android.material.R$attr: int counterTextColor +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTheme +androidx.constraintlayout.widget.R$attr: int showText +androidx.preference.R$id: int icon_frame +androidx.viewpager2.R$id: int accessibility_custom_action_18 +wangdaye.com.geometricweather.R$layout: int widget_day_symmetry +androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context) +androidx.appcompat.widget.SwitchCompat: void setThumbTintMode(android.graphics.PorterDuff$Mode) +retrofit2.RequestBuilder: void setBody(okhttp3.RequestBody) +wangdaye.com.geometricweather.R$style: int Base_V26_Theme_AppCompat +androidx.hilt.R$id: int accessibility_custom_action_15 +androidx.core.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_subtitle_keywords +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_registerWeatherServiceProviderChangeListener +cyanogenmod.app.Profile$LockMode +cyanogenmod.hardware.CMHardwareManager: boolean writePersistentInt(java.lang.String,int) +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabText +androidx.preference.R$styleable: int[] AppCompatImageView +androidx.appcompat.widget.AppCompatRadioButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$attr: int subMenuArrow +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar_Indicator +cyanogenmod.weather.WeatherInfo$DayForecast: boolean equals(java.lang.Object) +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void drain() +androidx.preference.R$styleable: int DialogPreference_android_positiveButtonText +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTemperature(int) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton +okio.BufferedSource: boolean request(long) +com.bumptech.glide.load.engine.CallbackException: CallbackException(java.lang.Throwable) +com.bumptech.glide.Registry$NoImageHeaderParserException +com.google.android.material.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +com.google.android.material.chip.Chip: void setChipIconVisible(boolean) +com.google.android.material.R$styleable: int[] ViewStubCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: AccuCurrentResult$RealFeelTemperature$Imperial() +com.turingtechnologies.materialscrollbar.R$id: int src_atop +wangdaye.com.geometricweather.R$attr: int badgeStyle +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupMenu_Overflow +androidx.viewpager2.R$id: int actions +wangdaye.com.geometricweather.R$attr: int colorBackgroundFloating +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_margin +okio.DeflaterSink: void flush() +okhttp3.internal.http.HttpHeaders: java.util.Set varyFields(okhttp3.Response) +com.google.android.material.R$attr: int itemShapeAppearance +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_16dp +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType UNKNOWN +okhttp3.Headers: java.lang.String name(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindDircEnd(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum Minimum +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstHorizontalStyle +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTheme +okhttp3.FormBody: java.util.List encodedNames +com.amap.api.location.AMapLocation: void setGpsAccuracyStatus(int) +androidx.customview.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: java.util.List getValue() +androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_creator com.xw.repo.bubbleseekbar.R$dimen: int hint_pressed_alpha_material_dark -androidx.appcompat.widget.SearchView: void setOnQueryTextListener(androidx.appcompat.widget.SearchView$OnQueryTextListener) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: java.util.concurrent.atomic.AtomicInteger active -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_size -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getTreeIndex() -com.turingtechnologies.materialscrollbar.R$attr: int tabMaxWidth -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: boolean terminated -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -androidx.appcompat.R$id: int unchecked -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowMinWidthMinor -wangdaye.com.geometricweather.R$string: int action_settings -com.amap.api.fence.GeoFenceManagerBase: void addDistrictGeoFence(java.lang.String,java.lang.String) -com.google.android.material.slider.RangeSlider: void setMinSeparation(float) -androidx.vectordrawable.R$id: int accessibility_custom_action_27 -cyanogenmod.externalviews.KeyguardExternalView: java.lang.String EXTRA_PERMISSION_LIST -com.google.android.material.R$attr: int maxLines -wangdaye.com.geometricweather.R$drawable: int weather_sleet -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.ILiveLockScreenManager getService() -wangdaye.com.geometricweather.R$styleable: int Constraint_pathMotionArc -androidx.viewpager.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconDrawable -com.xw.repo.bubbleseekbar.R$id: int customPanel -wangdaye.com.geometricweather.R$attr: int tint -androidx.appcompat.R$id: int tag_accessibility_pane_title -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowMinWidthMinor -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_shutdown -com.google.android.material.R$styleable: int BottomAppBar_hideOnScroll +wangdaye.com.geometricweather.R$attr: int materialButtonStyle +com.google.android.material.slider.Slider: Slider(android.content.Context,android.util.AttributeSet) +com.amap.api.fence.GeoFence: long p +androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotationX +com.turingtechnologies.materialscrollbar.R$layout: int design_bottom_sheet_dialog +com.xw.repo.bubbleseekbar.R$string: int abc_menu_meta_shortcut_label +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_inverse_material_light +androidx.appcompat.R$attr: int selectableItemBackgroundBorderless +wangdaye.com.geometricweather.R$drawable: int flag_el +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat +james.adaptiveicon.R$id: int action_text +androidx.constraintlayout.widget.R$style: int Widget_Compat_NotificationActionText +com.google.android.material.R$attr: int textAppearanceHeadline6 +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setPathSegment(int,java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int popupWindowStyle +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_stacked_max_height +wangdaye.com.geometricweather.R$style: int Platform_V25_AppCompat_Light +cyanogenmod.os.Build: java.lang.String getNameForSDKInt(int) +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_requireAdaptiveBacklightForSunlightEnhancement +cyanogenmod.app.BaseLiveLockManagerService: java.lang.String TAG +com.google.android.material.R$styleable: int ProgressIndicator_indicatorType +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus +com.xw.repo.bubbleseekbar.R$color: int abc_tint_switch_track +wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotation +cyanogenmod.profiles.LockSettings: boolean mDirty +androidx.preference.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +cyanogenmod.themes.ThemeChangeRequest: long mWallpaperId +android.didikee.donate.R$attr: int actionBarTabStyle +androidx.preference.R$styleable: int AppCompatTextView_drawableTintMode +com.turingtechnologies.materialscrollbar.R$styleable: int RecycleListView_paddingBottomNoButtons +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_imageButtonStyle +com.google.android.material.datepicker.CompositeDateValidator: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$id: int dialog_location_help_providerTitle +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: java.util.concurrent.atomic.AtomicInteger wip +okhttp3.internal.cache2.Relay$RelaySource: long sourcePos +androidx.preference.R$id: int activity_chooser_view_content +wangdaye.com.geometricweather.R$attr: int msb_recyclerView +androidx.core.graphics.drawable.IconCompatParcelizer +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationMax() +androidx.lifecycle.ProcessLifecycleOwner$3$1: void onActivityPostResumed(android.app.Activity) +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_item_max_width +androidx.constraintlayout.widget.R$attr: int windowFixedWidthMinor +cyanogenmod.app.CMStatusBarManager +okhttp3.internal.http2.Http2: byte FLAG_ACK +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabView +com.loc.k: java.lang.String a() +com.google.android.material.floatingactionbutton.FloatingActionButton: void setUseCompatPadding(boolean) +com.turingtechnologies.materialscrollbar.R$integer: int design_tab_indicator_anim_duration_ms +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_104 +androidx.appcompat.R$anim: int abc_popup_exit +androidx.preference.R$anim: int abc_tooltip_enter +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void clear() +androidx.activity.R$style: int TextAppearance_Compat_Notification +com.google.android.material.R$style: int Widget_AppCompat_ListView_DropDown +androidx.vectordrawable.R$styleable: int[] FontFamily +android.didikee.donate.R$drawable: int notification_template_icon_bg +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onComplete() +android.didikee.donate.R$attr +okio.ByteString: void readObject(java.io.ObjectInputStream) +io.reactivex.Observable: io.reactivex.Single firstOrError() +com.xw.repo.bubbleseekbar.R$bool: R$bool() +com.turingtechnologies.materialscrollbar.R$attr: int track +wangdaye.com.geometricweather.R$color: int colorLevel_1 +com.turingtechnologies.materialscrollbar.R$styleable: int[] SnackbarLayout +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String formattedId +io.reactivex.internal.util.NotificationLite$DisposableNotification: java.lang.String toString() +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_SHOW_BATTERY_PERCENT +retrofit2.converter.gson.GsonResponseBodyConverter: com.google.gson.Gson gson +james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_Switch +com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_color +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: java.util.concurrent.atomic.AtomicReference queue +androidx.hilt.work.R$anim: int fragment_open_exit +cyanogenmod.app.ICMStatusBarManager$Stub: cyanogenmod.app.ICMStatusBarManager asInterface(android.os.IBinder) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: double Value +com.jaredrummler.android.colorpicker.R$id: int blocking +androidx.constraintlayout.widget.R$id: int accessibility_action_clickable_span +com.google.android.material.chip.Chip: void setChipEndPaddingResource(int) +androidx.drawerlayout.R$styleable: int ColorStateListItem_android_alpha +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_orientation +com.google.android.material.R$styleable: int StateListDrawableItem_android_drawable +okhttp3.internal.cache.DiskLruCache$Entry: java.io.File[] cleanFiles +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontStyle +androidx.dynamicanimation.R$id +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Id +androidx.preference.R$style: int Widget_AppCompat_Spinner_Underlined +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_keylines +androidx.appcompat.R$attr: int subtitleTextAppearance +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_barThickness +androidx.constraintlayout.widget.R$dimen: int abc_text_size_large_material +com.google.gson.stream.JsonReader: com.google.gson.stream.JsonToken peek() +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: boolean active +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void clear() +android.didikee.donate.R$styleable: int AppCompatTheme_tooltipFrameBackground +retrofit2.Utils$GenericArrayTypeImpl: Utils$GenericArrayTypeImpl(java.lang.reflect.Type) +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_DIRECTION +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarSize +okhttp3.internal.cache.DiskLruCache$3 +org.greenrobot.greendao.AbstractDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +wangdaye.com.geometricweather.R$id: int contentPanel +com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout +com.google.android.material.transformation.FabTransformationBehavior +okhttp3.internal.http2.Http2Reader: java.util.logging.Logger logger +wangdaye.com.geometricweather.R$styleable: int Preference_persistent +okhttp3.ConnectionSpec: boolean supportsTlsExtensions +com.xw.repo.bubbleseekbar.R$attr: int navigationMode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: AccuCurrentResult$PressureTendency() +wangdaye.com.geometricweather.R$string: int tag_precipitation +android.didikee.donate.R$attr: int displayOptions +wangdaye.com.geometricweather.R$string: int ice +androidx.work.R$attr: int fontProviderFetchTimeout +com.google.android.material.R$dimen: int mtrl_calendar_action_height +androidx.activity.R$attr: R$attr() +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline6 +okhttp3.internal.platform.Platform: java.lang.Object getStackTraceForCloseable(java.lang.String) +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_REMOVED +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_7 +androidx.constraintlayout.widget.VirtualLayout: void setElevation(float) +okhttp3.internal.connection.RouteException +com.google.android.material.R$drawable: int abc_tab_indicator_mtrl_alpha +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: java.util.List getSuggestions(android.content.Intent) +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_percent +io.reactivex.Observable: io.reactivex.Single single(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Widget_Support_CoordinatorLayout +wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_checkedButton +com.google.android.material.R$styleable: int KeyAttribute_android_translationX +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL_VALIDATOR +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_visible +james.adaptiveicon.R$layout: int notification_template_icon_group +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_LOCATION_PARAMETER +com.google.android.material.R$animator: int mtrl_extended_fab_change_size_expand_motion_spec +android.didikee.donate.R$attr: int dropdownListPreferredItemHeight +okhttp3.CipherSuite: java.lang.String secondaryName(java.lang.String) +androidx.constraintlayout.widget.R$layout: int abc_screen_simple +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_android_textAppearance +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Link +james.adaptiveicon.R$styleable: int ActionBar_homeLayout +com.google.android.material.R$styleable: int PropertySet_visibilityMode +okhttp3.internal.http2.Hpack$Reader: Hpack$Reader(int,okio.Source) +retrofit2.KotlinExtensions$await$2$2: kotlinx.coroutines.CancellableContinuation $continuation +androidx.appcompat.resources.R$attr: int fontProviderFetchStrategy +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarWidgetTheme +androidx.preference.R$id: int action_divider +okhttp3.Cache$CacheResponseBody: long contentLength() +androidx.vectordrawable.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: int UnitType +com.google.android.material.R$id: int animateToStart +cyanogenmod.app.CMContextConstants$Features: java.lang.String HARDWARE_ABSTRACTION +james.adaptiveicon.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric Metric +james.adaptiveicon.R$dimen: int abc_text_size_headline_material +androidx.legacy.coreutils.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.R$styleable: int[] BottomAppBar +com.xw.repo.bubbleseekbar.R$id: int time +com.google.android.material.tabs.TabLayout: void setUnboundedRippleResource(int) +okhttp3.internal.http.HttpHeaders: java.lang.String readQuotedString(okio.Buffer) +android.didikee.donate.R$attr: int voiceIcon +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_100 +androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet,int) +james.adaptiveicon.R$styleable: int PopupWindow_android_popupBackground +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Today +cyanogenmod.app.CMStatusBarManager: void publishTile(java.lang.String,int,cyanogenmod.app.CustomTile) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language DUTCH +com.turingtechnologies.materialscrollbar.R$id: int src_over +androidx.lifecycle.extensions.R$dimen +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark +androidx.preference.R$styleable: int SearchView_submitBackground +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextInputEditText +cyanogenmod.app.suggest.ApplicationSuggestion$1: java.lang.Object createFromParcel(android.os.Parcel) +cyanogenmod.providers.CMSettings$System: long getLongForUser(android.content.ContentResolver,java.lang.String,int) +android.didikee.donate.R$dimen: int abc_dialog_min_width_minor +wangdaye.com.geometricweather.R$drawable: int notif_temp_118 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_CBC_SHA +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentStyle +com.google.gson.JsonIOException +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +okio.Buffer$2: void close() +wangdaye.com.geometricweather.R$attr: int region_heightLessThan +wangdaye.com.geometricweather.R$id: int right_side +androidx.viewpager2.widget.ViewPager2: void setAdapter(androidx.recyclerview.widget.RecyclerView$Adapter) +androidx.constraintlayout.widget.R$attr: int thumbTint +wangdaye.com.geometricweather.R$style: int content_text +androidx.preference.R$layout: int notification_action_tombstone +androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy: ConstraintProxy$NetworkStateProxy() +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextInputLayout +com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyleSmall +com.turingtechnologies.materialscrollbar.R$layout: int abc_cascading_menu_item_layout +androidx.constraintlayout.helper.widget.Layer +com.google.android.material.circularreveal.CircularRevealRelativeLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.badge.BadgeDrawable getOrCreateBadge() +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTrendTemperature(android.content.Context,java.lang.Integer,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +com.turingtechnologies.materialscrollbar.R$id: int search_src_text +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_icon_color_selector_colored +wangdaye.com.geometricweather.R$id: int test_radiobutton_app_button_tint +androidx.appcompat.R$layout +james.adaptiveicon.R$dimen: int hint_alpha_material_light +androidx.appcompat.resources.R$styleable: int GradientColor_android_endY +com.google.gson.LongSerializationPolicy$1: LongSerializationPolicy$1(java.lang.String,int) +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +androidx.viewpager2.R$drawable: R$drawable() +androidx.preference.R$attr: int fontProviderFetchStrategy +com.google.android.material.R$layout: int test_action_chip +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.Object adapt(retrofit2.Call) +android.didikee.donate.R$attr: int suggestionRowLayout +com.google.android.material.R$styleable: int MenuItem_iconTint +cyanogenmod.providers.CMSettings$Global +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_allowDividerAfterLastItem +android.didikee.donate.R$dimen: int abc_text_size_title_material +androidx.recyclerview.R$attr: int fontProviderFetchTimeout +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabBarStyle +okhttp3.internal.tls.BasicCertificateChainCleaner +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void onAttachedToWindow() +com.google.android.material.R$string: int material_timepicker_am +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_baselineAligned +okhttp3.CacheControl$Builder: boolean noCache +james.adaptiveicon.R$dimen: int highlight_alpha_material_colored +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.util.Date pubTime +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle +wangdaye.com.geometricweather.R$dimen: int abc_dialog_list_padding_top_no_title +okio.Buffer: long indexOf(okio.ByteString) +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Linear +retrofit2.Utils$WildcardTypeImpl: Utils$WildcardTypeImpl(java.lang.reflect.Type[],java.lang.reflect.Type[]) +androidx.work.R$drawable: int notification_action_background +androidx.preference.R$styleable: int AppCompatTheme_checkedTextViewStyle +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean canceled +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +com.google.android.material.R$animator: int design_fab_show_motion_spec +com.google.android.material.R$style: int Widget_AppCompat_ActivityChooserView +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: java.util.List getDeviceComponentVersions() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: void run() +com.xw.repo.bubbleseekbar.R$string: int abc_action_bar_home_description +androidx.recyclerview.R$styleable: int FontFamily_fontProviderAuthority +com.google.gson.stream.JsonScope: int EMPTY_ARRAY +androidx.appcompat.widget.AppCompatRadioButton: void setBackgroundResource(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_18 +androidx.preference.R$id: int none +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf +androidx.cardview.R$style: int CardView_Light +com.google.android.material.textfield.TextInputLayout: void setEndIconVisible(boolean) +androidx.appcompat.R$styleable: int ActionBar_backgroundStacked +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_submit +androidx.viewpager2.R$color: int notification_icon_bg_color +androidx.constraintlayout.widget.R$styleable: int Constraint_android_scaleY +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean error(java.lang.Throwable) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_7 +com.google.android.material.R$attr: int layout_insetEdge +wangdaye.com.geometricweather.R$attr: int dialogTitle +wangdaye.com.geometricweather.R$drawable: int weather_haze_2 +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMargins +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.util.List value +com.google.android.material.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_min +androidx.preference.R$id: int search_plate +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List yundong +wangdaye.com.geometricweather.R$attr: int layout_constraintRight_creator +io.reactivex.internal.observers.InnerQueuedObserver: void dispose() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +androidx.appcompat.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +okhttp3.RealCall: okhttp3.Response execute() +com.google.android.material.R$layout: int notification_action +androidx.activity.R$attr: int alpha +james.adaptiveicon.R$color: int bright_foreground_material_dark +wangdaye.com.geometricweather.R$styleable: int KeyPosition_transitionEasing +androidx.appcompat.R$styleable: int ActionBar_progressBarStyle +com.amap.api.fence.GeoFenceClient: GeoFenceClient(android.content.Context) +wangdaye.com.geometricweather.R$drawable: int ic_github +cyanogenmod.externalviews.ExternalViewProviderService$1$1: cyanogenmod.externalviews.ExternalViewProviderService$1 this$1 +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setIcons(java.lang.String) +androidx.dynamicanimation.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlHighlight +cyanogenmod.themes.IThemeService$Stub$Proxy +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getWeatherText() +androidx.viewpager.R$id: int notification_main_column_container +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setLiveLockScreen(java.lang.String) +com.amap.api.location.AMapLocation: AMapLocation(android.location.Location) +com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_android_popupAnimationStyle +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_toId +androidx.constraintlayout.widget.R$color: int abc_background_cache_hint_selector_material_light +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_id +com.google.android.material.R$attr: int lineHeight +wangdaye.com.geometricweather.R$drawable: int ic_aqi +wangdaye.com.geometricweather.remoteviews.config.Hilt_DailyTrendWidgetConfigActivity: Hilt_DailyTrendWidgetConfigActivity() +retrofit2.RequestFactory$Builder: java.util.Set parsePathParameters(java.lang.String) +james.adaptiveicon.R$color: int primary_dark_material_light +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeFindDrawable +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_CollapsingToolbar +android.didikee.donate.R$id: int submit_area +retrofit2.adapter.rxjava2.ResultObservable: void subscribeActual(io.reactivex.Observer) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: java.lang.String Unit +androidx.constraintlayout.widget.R$color: int dim_foreground_material_dark +com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderText(java.lang.String) +android.didikee.donate.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +android.didikee.donate.R$dimen +com.google.android.material.R$string: int material_clock_display_divider +com.google.android.material.R$attr: int layoutDuringTransition +okhttp3.internal.http1.Http1Codec$AbstractSource: Http1Codec$AbstractSource(okhttp3.internal.http1.Http1Codec,okhttp3.internal.http1.Http1Codec$1) +com.bumptech.glide.R$layout: int notification_template_custom_big +com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getBackgroundTintMode() +androidx.hilt.work.R$styleable: int ColorStateListItem_alpha +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,int) +com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.animation.MotionSpec getShowMotionSpec() +wangdaye.com.geometricweather.R$attr: int buttonGravity +androidx.appcompat.R$id: int contentPanel +okhttp3.Cache: int ENTRY_BODY +cyanogenmod.weather.CMWeatherManager$2$2: cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener val$listener +com.turingtechnologies.materialscrollbar.R$attr: int iconifiedByDefault +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconVisible +com.jaredrummler.android.colorpicker.R$color: int highlighted_text_material_dark +com.google.android.material.chip.ChipGroup: void setDividerDrawableHorizontal(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$attr: int switchTextAppearance +androidx.constraintlayout.widget.R$id: int SHOW_PATH +okhttp3.internal.ws.RealWebSocket: boolean close(int,java.lang.String) +com.amap.api.fence.GeoFence: java.util.List g +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +com.google.android.material.R$styleable: int NavigationView_itemTextColor +wangdaye.com.geometricweather.R$attr: int behavior_overlapTop +com.xw.repo.bubbleseekbar.R$styleable: int[] CompoundButton +com.google.gson.stream.JsonReader: long peekedLong +androidx.hilt.R$dimen: int notification_action_text_size +cyanogenmod.externalviews.KeyguardExternalView$6: void run() +androidx.appcompat.R$attr: int buttonBarNegativeButtonStyle +com.xw.repo.bubbleseekbar.R$attr: int progressBarPadding +androidx.appcompat.R$color: int error_color_material_dark +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_128_GCM_SHA256 +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDaylight(boolean) +com.google.android.material.button.MaterialButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.preference.R$styleable: int[] PreferenceTheme +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onPreparePanel(int,android.view.View,android.view.Menu) +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: java.util.concurrent.atomic.AtomicBoolean once +com.amap.api.location.AMapLocation: java.lang.String getProvince() +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: long serialVersionUID +retrofit2.Utils$WildcardTypeImpl: boolean equals(java.lang.Object) +okhttp3.EventListener$Factory: okhttp3.EventListener create(okhttp3.Call) +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver +wangdaye.com.geometricweather.db.entities.LocationEntity: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource weatherSource +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void setResource(io.reactivex.disposables.Disposable) +james.adaptiveicon.R$drawable: int abc_text_select_handle_left_mtrl_dark +wangdaye.com.geometricweather.R$attr: int content +wangdaye.com.geometricweather.R$dimen: int design_snackbar_text_size +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.functions.BooleanSupplier stop +androidx.swiperefreshlayout.R$styleable: int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor +androidx.preference.R$attr: int popupTheme +okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withConnectTimeout(int,java.util.concurrent.TimeUnit) +androidx.appcompat.R$id: int group_divider +wangdaye.com.geometricweather.R$dimen: int material_icon_size +okhttp3.ConnectionSpec$Builder +james.adaptiveicon.R$styleable: int RecycleListView_paddingTopNoTitle +com.google.android.material.R$color: int mtrl_indicator_text_color +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: ViewModelProvider$AndroidViewModelFactory(android.app.Application) +com.google.android.material.R$styleable: int TabLayout_tabMode +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setBottomIconDrawable(android.graphics.drawable.Drawable) +io.reactivex.Observable: io.reactivex.Flowable toFlowable(io.reactivex.BackpressureStrategy) +cyanogenmod.hardware.IThermalListenerCallback +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_GCM_SHA384 +wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_layout +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_ActionBar +retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler[] parameterHandlers +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout +androidx.legacy.coreutils.R$drawable: int notification_action_background +okhttp3.Request$Builder: Request$Builder(okhttp3.Request) +wangdaye.com.geometricweather.remoteviews.config.AbstractWidgetConfigActivity +org.greenrobot.greendao.AbstractDao: long count() +io.reactivex.internal.disposables.ArrayCompositeDisposable: boolean isDisposed() +com.jaredrummler.android.colorpicker.R$layout: int abc_action_bar_title_item +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_alterWindow +androidx.lifecycle.Transformations$3: boolean mFirstTime +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitationProbability +cyanogenmod.app.CustomTile: android.app.PendingIntent onLongClick +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder fragment(java.lang.String) +androidx.preference.DialogPreference: DialogPreference(android.content.Context,android.util.AttributeSet) +retrofit2.ParameterHandler$HeaderMap +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onNext(java.lang.Object) +okhttp3.Challenge: int hashCode() +io.reactivex.subjects.PublishSubject$PublishDisposable: void onComplete() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathEnd(float) +okhttp3.Connection: okhttp3.Handshake handshake() +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +retrofit2.RequestFactory: boolean isFormEncoded +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$y +cyanogenmod.weather.WeatherLocation: WeatherLocation(android.os.Parcel) +com.baidu.location.indoor.c +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA +okhttp3.MultipartBody: java.lang.String boundary() +androidx.appcompat.R$styleable: int LinearLayoutCompat_measureWithLargestChild +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_ttcIndex +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Body1 +com.bumptech.glide.R$styleable: int ColorStateListItem_android_alpha +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void dispose() +androidx.appcompat.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +com.turingtechnologies.materialscrollbar.R$color: int primary_text_disabled_material_dark +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabStyle +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: java.util.concurrent.TimeUnit unit +androidx.work.R$drawable: int notification_tile_bg +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button +com.baidu.location.e.l$b: com.baidu.location.e.l$b valueOf(java.lang.String) +androidx.appcompat.widget.ActivityChooserView: void setExpandActivityOverflowButtonDrawable(android.graphics.drawable.Drawable) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegment(java.lang.String) +okhttp3.Cache: okhttp3.internal.cache.DiskLruCache cache +wangdaye.com.geometricweather.R$string: int material_timepicker_clock_mode_description +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType END +com.google.android.material.R$attr: int textAppearanceHeadline1 +androidx.legacy.coreutils.R$id: int notification_main_column +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) +androidx.transition.R$drawable: int notification_bg_normal_pressed +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String access$000(okhttp3.internal.cache.DiskLruCache$Snapshot) +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder mRemote +androidx.vectordrawable.animated.R$color: R$color() +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_READY +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_10 +com.google.android.material.R$attr: int divider +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean isDisposed() +cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean +cyanogenmod.weather.RequestInfo: android.location.Location access$502(cyanogenmod.weather.RequestInfo,android.location.Location) +wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_calendar_input_mode +com.google.android.material.chip.Chip: void setCheckedIconResource(int) +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: MfCurrentResult$Position() +com.google.android.material.internal.CheckableImageButton: void setChecked(boolean) +androidx.transition.R$id: int text +com.google.android.material.R$styleable: int KeyTimeCycle_android_translationY +com.google.android.material.navigation.NavigationView: void setElevation(float) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_10 +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeSplitBackground +androidx.appcompat.R$styleable: int TextAppearance_android_textStyle +cyanogenmod.profiles.ConnectionSettings: void readFromParcel(android.os.Parcel) +okhttp3.internal.ws.RealWebSocket: java.util.ArrayDeque messageAndCloseQueue +okhttp3.Cache$Entry: boolean matches(okhttp3.Request,okhttp3.Response) +androidx.appcompat.resources.R$layout: int notification_template_icon_group +com.jaredrummler.android.colorpicker.R$color: int material_grey_800 +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: int colorId +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason DECODE_DATA +cyanogenmod.app.CMContextConstants$Features: java.lang.String THEMES +androidx.appcompat.R$styleable: int ActionBar_homeAsUpIndicator +androidx.preference.R$styleable: int[] EditTextPreference +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText +com.xw.repo.bubbleseekbar.R$color: int primary_material_dark +cyanogenmod.weather.ICMWeatherManager$Stub: java.lang.String DESCRIPTOR +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low_pressed +com.xw.repo.bubbleseekbar.R$attr: int maxButtonHeight +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getStrokeAlpha() +wangdaye.com.geometricweather.R$styleable: int View_paddingStart +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Time +com.amap.api.location.AMapLocationClientOption: boolean l +androidx.constraintlayout.helper.widget.Flow: void setWrapMode(int) +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void drain() +androidx.lifecycle.SavedStateHandleController$1: androidx.savedstate.SavedStateRegistry val$registry +okhttp3.internal.http2.PushObserver: boolean onHeaders(int,java.util.List,boolean) +okhttp3.internal.ws.WebSocketWriter$FrameSink: okio.Timeout timeout() +okhttp3.MediaType: java.lang.String mediaType +android.support.v4.os.IResultReceiver$Default +androidx.lifecycle.Transformations$1: void onChanged(java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_right_black_24dp +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarButtonStyle +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$StreamTimeout readTimeout +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_LIVE_LOCK_SCREEN_COMPONENT +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_setLiveLockScreenEnabled +android.didikee.donate.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +com.bumptech.glide.R$dimen: int notification_top_pad +androidx.vectordrawable.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle +cyanogenmod.externalviews.KeyguardExternalView: boolean isInteractive() +okhttp3.HttpUrl$Builder: void removeAllCanonicalQueryParameters(java.lang.String) +cyanogenmod.app.ThemeVersion: java.lang.String MIN_SUPPORTED_THEME_VERSION_FIELD_NAME +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Entry +com.google.android.material.R$xml: int standalone_badge +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCollapsedPaddingTop +com.google.android.material.R$style: int Widget_Design_FloatingActionButton +com.google.android.material.R$integer: int show_password_duration +com.google.android.material.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.datepicker.CompositeDateValidator +cyanogenmod.alarmclock.ClockContract +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode[] $VALUES +cyanogenmod.power.PerformanceManager: int PROFILE_BIAS_PERFORMANCE +wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay_v14 +wangdaye.com.geometricweather.common.basic.models.weather.Current: Current(java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability,wangdaye.com.geometricweather.common.basic.models.weather.Wind,wangdaye.com.geometricweather.common.basic.models.weather.UV,wangdaye.com.geometricweather.common.basic.models.weather.AirQuality,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.String,java.lang.String) +com.jaredrummler.android.colorpicker.R$id: int expand_activities_button +james.adaptiveicon.R$styleable: int DrawerArrowToggle_arrowShaftLength +org.greenrobot.greendao.AbstractDao: void deleteByKeyInTx(java.lang.Object[]) +androidx.coordinatorlayout.widget.CoordinatorLayout +com.google.android.gms.common.R$string: R$string() +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomAppBar_Colored +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void settings(boolean,okhttp3.internal.http2.Settings) +com.google.android.material.R$attr: int firstBaselineToTopHeight +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.widget.FitWindowsLinearLayout: FitWindowsLinearLayout(android.content.Context) +androidx.appcompat.R$drawable: int abc_text_select_handle_left_mtrl_light +okhttp3.Headers$Builder: okhttp3.Headers$Builder addUnsafeNonAscii(java.lang.String,java.lang.String) +cyanogenmod.profiles.StreamSettings: StreamSettings(int) +com.amap.api.location.AMapLocation: int getTrustedLevel() +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: ObservableSwitchMap$SwitchMapObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) +androidx.constraintlayout.widget.R$styleable: int TextAppearance_textLocale +wangdaye.com.geometricweather.R$array: int temperature_units +com.google.android.material.R$attr: int tintMode +androidx.viewpager2.R$attr: int ttcIndex +androidx.swiperefreshlayout.R$dimen: int compat_notification_large_icon_max_height +androidx.preference.R$id: int blocking +androidx.work.R$bool: R$bool() +io.reactivex.Observable: io.reactivex.Observable repeatUntil(io.reactivex.functions.BooleanSupplier) +wangdaye.com.geometricweather.R$drawable: int abc_btn_check_material +androidx.preference.R$layout: int abc_action_menu_layout +com.google.android.material.bottomappbar.BottomAppBar$Behavior: BottomAppBar$Behavior() +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +okhttp3.Dispatcher: void enqueue(okhttp3.RealCall$AsyncCall) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +okio.RealBufferedSource: long readLong() +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType[] values() +wangdaye.com.geometricweather.R$attr: int circleRadius +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemIconSize +androidx.viewpager.widget.ViewPager: void setScrollingCacheEnabled(boolean) +com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context) +androidx.appcompat.R$styleable: int SearchView_searchHintIcon +androidx.appcompat.widget.AppCompatTextView: int getAutoSizeStepGranularity() +com.google.android.material.R$attr: int passwordToggleTint +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +wangdaye.com.geometricweather.R$attr: int backgroundInsetTop +okhttp3.internal.platform.AndroidPlatform: javax.net.ssl.SSLContext getSSLContext() +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_separator +androidx.hilt.lifecycle.R$anim: int fragment_fade_exit +cyanogenmod.app.CMTelephonyManager: void setDefaultSmsSub(int) +androidx.constraintlayout.widget.R$color: int switch_thumb_disabled_material_dark +com.xw.repo.bubbleseekbar.R$attr: int tint +wangdaye.com.geometricweather.R$attr: int yearSelectedStyle +james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$attr: int maxWidth +james.adaptiveicon.R$dimen: int abc_button_padding_horizontal_material +wangdaye.com.geometricweather.R$layout: int container_main_details +androidx.transition.R$dimen: int notification_top_pad_large_text +com.google.android.material.slider.BaseSlider: void setValueFrom(float) +com.google.android.gms.tasks.RuntimeExecutionException: RuntimeExecutionException(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$attr: int fontStyle +com.google.android.material.R$dimen: int mtrl_textinput_box_stroke_width_focused +cyanogenmod.weatherservice.WeatherProviderService: java.util.Set mWeakRequestsSet +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_removeUpdates +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: ObservableMergeWithMaybe$MergeWithObserver(io.reactivex.Observer) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean() +james.adaptiveicon.R$attr: int showText +wangdaye.com.geometricweather.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +cyanogenmod.app.PartnerInterface: int ZEN_MODE_IMPORTANT_INTERRUPTIONS +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: AMapLocationClientOption$AMapLocationPurpose(java.lang.String,int) +cyanogenmod.app.ThemeVersion: ThemeVersion() +androidx.appcompat.R$styleable: int AppCompatTheme_dividerVertical +com.google.android.material.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +io.reactivex.internal.util.VolatileSizeArrayList: boolean containsAll(java.util.Collection) +com.google.android.material.R$id: int textSpacerNoButtons +retrofit2.Platform$Android: java.lang.Object invokeDefaultMethod(java.lang.reflect.Method,java.lang.Class,java.lang.Object,java.lang.Object[]) +wangdaye.com.geometricweather.R$dimen: int notification_large_icon_width +androidx.appcompat.R$attr: int searchViewStyle +androidx.appcompat.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +okhttp3.internal.http2.Http2Writer: void headers(boolean,int,java.util.List) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int BLOWING_SNOW +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: MfForecastResult$Forecast$Weather() +wangdaye.com.geometricweather.R$integer: int cpv_default_start_angle +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap +cyanogenmod.app.Profile: java.util.UUID[] getSecondaryUuids() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pm25 +androidx.hilt.R$id: int line3 +cyanogenmod.hardware.CMHardwareManager: int readPersistentInt(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getEn_US() +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogTitle +cyanogenmod.app.Profile: java.util.Map mTriggers +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: java.util.concurrent.atomic.AtomicReference upstream +androidx.recyclerview.R$styleable: int GradientColor_android_type +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +james.adaptiveicon.R$attr: int autoSizeTextType +wangdaye.com.geometricweather.R$drawable: int ic_toolbar_close +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$attr: int flow_lastHorizontalBias +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String cityId +com.google.android.material.R$id: int accessibility_custom_action_3 +androidx.appcompat.R$drawable: R$drawable() +james.adaptiveicon.R$dimen: int abc_action_bar_content_inset_with_nav +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabBarStyle +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: java.lang.reflect.Method findByIssuerAndSignatureMethod +androidx.work.impl.workers.DiagnosticsWorker +com.amap.api.location.AMapLocationClient: java.lang.String getDeviceId(android.content.Context) +okhttp3.internal.cache.DiskLruCache$1: void run() +androidx.appcompat.R$drawable: int notification_tile_bg +cyanogenmod.power.PerformanceManager: int PROFILE_HIGH_PERFORMANCE +com.google.android.material.snackbar.BaseTransientBottomBar$Behavior: BaseTransientBottomBar$Behavior() +wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView +okio.Buffer: long indexOf(byte) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Subhead +androidx.drawerlayout.R$layout +com.turingtechnologies.materialscrollbar.R$attr: int actionViewClass +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: int getStatus() +com.google.android.material.textfield.TextInputLayout: void setHelperTextEnabled(boolean) +androidx.core.R$styleable: R$styleable() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getType() +james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat_Light +io.reactivex.Observable: io.reactivex.Observable onErrorResumeNext(io.reactivex.ObservableSource) +androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Dialog +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_allowDividerAfterLastItem +retrofit2.RequestFactory$Builder: boolean isKotlinSuspendFunction +cyanogenmod.os.Build$CM_VERSION_CODES: int CANTALOUPE +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: java.lang.String Unit +androidx.appcompat.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitationDuration(java.lang.Float) +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onComplete() +wangdaye.com.geometricweather.R$styleable: int[] PopupWindow +com.google.android.material.R$styleable: int CollapsingToolbarLayout_titleEnabled +com.xw.repo.bubbleseekbar.R$string: int abc_menu_shift_shortcut_label +com.jaredrummler.android.colorpicker.R$color: int accent_material_light +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableEnd +com.google.android.material.R$styleable: int AppCompatTheme_actionModeStyle +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: java.lang.String DESCRIPTOR +cyanogenmod.providers.CMSettings$Secure: java.lang.String ADB_PORT +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitationProbability +wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line2_head_interpolator +okhttp3.WebSocket: boolean send(okio.ByteString) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_second_track_size +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4 +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider +cyanogenmod.app.CustomTile$ExpandedStyle$1: cyanogenmod.app.CustomTile$ExpandedStyle createFromParcel(android.os.Parcel) +androidx.lifecycle.Transformations$3: androidx.lifecycle.MediatorLiveData val$outputLiveData +com.google.android.material.R$color: int mtrl_bottom_nav_colored_ripple_color +androidx.preference.R$styleable: int MenuView_preserveIconSpacing +android.didikee.donate.R$styleable: int AppCompatTextView_drawableRightCompat +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String getUnit() +wangdaye.com.geometricweather.R$styleable: int[] ConstraintLayout_Layout +wangdaye.com.geometricweather.db.entities.LocationEntityDao +wangdaye.com.geometricweather.R$string: int help +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: int getIconSize() +androidx.lifecycle.ViewModelProvider$KeyedFactory: ViewModelProvider$KeyedFactory() +james.adaptiveicon.R$style: int Theme_AppCompat_Dialog_MinWidth +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_visible +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onComplete() +androidx.viewpager.R$id: int text +com.jaredrummler.android.colorpicker.R$attr: int singleChoiceItemLayout +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingBottom +cyanogenmod.app.CustomTile$ExpandedStyle: android.widget.RemoteViews contentViews +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endY +okhttp3.internal.ws.RealWebSocket: void failWebSocket(java.lang.Exception,okhttp3.Response) +wangdaye.com.geometricweather.R$color: int mtrl_fab_ripple_color +retrofit2.RequestBuilder: char[] HEX_DIGITS +com.google.android.material.R$styleable: int AppCompatTheme_actionBarPopupTheme +androidx.preference.R$style: int Theme_AppCompat_CompactMenu +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState MOVING +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_top_padding +androidx.constraintlayout.widget.R$attr: int colorPrimary +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getShortDate(android.content.Context) +com.xw.repo.bubbleseekbar.R$anim: int abc_slide_in_bottom +com.google.android.material.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility +wangdaye.com.geometricweather.R$styleable: int[] CoordinatorLayout_Layout +com.amap.api.location.AMapLocation: boolean b(com.amap.api.location.AMapLocation,boolean) +wangdaye.com.geometricweather.R$attr: int hintEnabled +okhttp3.Cache: Cache(java.io.File,long,okhttp3.internal.io.FileSystem) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu +com.bumptech.glide.Priority: com.bumptech.glide.Priority[] values() +com.google.android.material.R$id: int search_go_btn +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge +com.google.android.material.R$color: int abc_background_cache_hint_selector_material_dark +android.didikee.donate.R$styleable: int ActionBar_customNavigationLayout +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabView +androidx.cardview.widget.CardView: int getContentPaddingLeft() +retrofit2.BuiltInConverters$RequestBodyConverter: BuiltInConverters$RequestBodyConverter() +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String DELETE_AFTER_USE +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixTextColor +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayDetailsProvider: WidgetClockDayDetailsProvider() +androidx.constraintlayout.widget.R$attr: int listChoiceIndicatorMultipleAnimated +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean isDisposed() +com.google.android.material.datepicker.Month +com.google.android.material.R$drawable: int abc_seekbar_track_material +com.google.android.material.R$dimen: int compat_notification_large_icon_max_height +io.reactivex.internal.util.NotificationLite$ErrorNotification: java.lang.Throwable e +androidx.appcompat.widget.AppCompatTextView: java.lang.CharSequence getText() +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_BLUE_INDEX +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List ziwaixian +okhttp3.internal.platform.OptionalMethod: java.lang.Object invoke(java.lang.Object,java.lang.Object[]) +cyanogenmod.weather.WeatherLocation: java.lang.String access$202(cyanogenmod.weather.WeatherLocation,java.lang.String) +com.turingtechnologies.materialscrollbar.R$dimen: int compat_control_corner_material +cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo$Builder setComponent(android.content.ComponentName) +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerX +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_13 +android.didikee.donate.R$styleable: int ActionMode_closeItemLayout +com.google.android.material.R$styleable: int MaterialCalendarItem_itemStrokeColor +okhttp3.logging.HttpLoggingInterceptor$Level: HttpLoggingInterceptor$Level(java.lang.String,int) +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.db.entities.DaoSession daoSession +cyanogenmod.app.ICMStatusBarManager$Stub +retrofit2.http.PartMap: java.lang.String encoding() +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.disposables.Disposable upstream +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: boolean isDisposed() +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeContainer +wangdaye.com.geometricweather.R$color: int colorLevel_2 +wangdaye.com.geometricweather.db.entities.AlertEntity: void setContent(java.lang.String) +okhttp3.logging.LoggingEventListener: void logWithTime(java.lang.String) +com.google.android.material.R$attr: int actionDropDownStyle +io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit) +androidx.recyclerview.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleSwitch +com.google.android.material.slider.RangeSlider: void setThumbElevationResource(int) +james.adaptiveicon.R$styleable: int AppCompatTheme_editTextBackground +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +wangdaye.com.geometricweather.R$dimen: int design_fab_translation_z_hovered_focused +androidx.constraintlayout.widget.ConstraintLayout: int getMinHeight() +androidx.constraintlayout.helper.widget.Flow: void setVerticalGap(int) +com.turingtechnologies.materialscrollbar.R$id: int transition_transform +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_summaryOn +wangdaye.com.geometricweather.R$styleable: int[] ActionBar +james.adaptiveicon.AdaptiveIconView: void setPath(java.lang.String) +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type[] getLowerBounds() +wangdaye.com.geometricweather.R$layout: int test_toolbar_custom_background +wangdaye.com.geometricweather.R$attr: int indicatorColors +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.util.AtomicThrowable errors org.greenrobot.greendao.AbstractDao: boolean isStandardSQLite -com.jaredrummler.android.colorpicker.R$dimen: int abc_control_inset_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean temperature -com.jaredrummler.android.colorpicker.R$attr: int actionBarTheme -androidx.preference.R$attr: int textLocale -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTintMode -james.adaptiveicon.R$dimen: int abc_action_bar_stacked_max_height +androidx.appcompat.widget.AppCompatTextView: int getAutoSizeMinTextSize() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: int UnitType +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +androidx.appcompat.R$dimen: int abc_text_size_display_4_material +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginStart +com.google.android.gms.base.R$styleable: int SignInButton_scopeUris +androidx.hilt.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$color: int switch_thumb_normal_material_dark +wangdaye.com.geometricweather.R$dimen: int spinner_drop_width +okhttp3.internal.Util$2: java.lang.Thread newThread(java.lang.Runnable) +james.adaptiveicon.R$id: int submit_area +androidx.appcompat.R$attr: int textAllCaps +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginEnd +okio.Segment: byte[] data +com.jaredrummler.android.colorpicker.R$string: int abc_action_bar_up_description +cyanogenmod.app.StatusBarPanelCustomTile: int uid +androidx.work.impl.workers.ConstraintTrackingWorker +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerComplete() +com.xw.repo.bubbleseekbar.R$dimen: int abc_button_inset_horizontal_material +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_101 +okhttp3.internal.http1.Http1Codec$ChunkedSink: okio.ForwardingTimeout timeout +com.github.rahatarmanahmed.cpv.CircularProgressView$1: CircularProgressView$1(com.github.rahatarmanahmed.cpv.CircularProgressView) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dividerVertical +android.didikee.donate.R$attr: int subMenuArrow +cyanogenmod.externalviews.ExternalView: void onActivityPaused(android.app.Activity) +wangdaye.com.geometricweather.R$color: int mtrl_btn_bg_color_selector +androidx.constraintlayout.widget.R$attr: int checkedTextViewStyle +androidx.vectordrawable.R$id: int accessibility_custom_action_1 +androidx.preference.R$style: int TextAppearance_AppCompat_Title_Inverse +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: AccuDailyResult$DailyForecasts$Night$WindGust() +james.adaptiveicon.R$styleable: int TextAppearance_textAllCaps +androidx.preference.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +androidx.appcompat.resources.R$id: int chronometer +com.google.android.material.bottomnavigation.BottomNavigationView: int getSelectedItemId() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +androidx.core.R$id: int accessibility_custom_action_25 +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_HelperText +com.jaredrummler.android.colorpicker.R$attr: int colorError +cyanogenmod.hardware.IThermalListenerCallback$Stub: java.lang.String DESCRIPTOR +cyanogenmod.weather.WeatherInfo$Builder +james.adaptiveicon.R$attr: int state_above_anchor +cyanogenmod.providers.CMSettings$System$2: CMSettings$System$2() +androidx.preference.R$string: int abc_prepend_shortcut_label +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +wangdaye.com.geometricweather.R$id: int disablePostScroll +androidx.legacy.coreutils.R$dimen: int compat_button_inset_vertical_material +androidx.constraintlayout.widget.R$attr: int buttonPanelSideLayout +com.google.android.gms.common.api.ResolvableApiException: android.app.PendingIntent getResolution() +okhttp3.internal.http2.Http2Connection$2: okhttp3.internal.http2.Http2Connection this$0 com.turingtechnologies.materialscrollbar.R$attr: int chipSpacingHorizontal -wangdaye.com.geometricweather.R$string: int yesterday -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.lang.Throwable error -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_default_mtrl_shape -androidx.preference.R$layout: int preference_widget_switch_compat -com.google.android.material.R$styleable: int MaterialShape_shapeAppearanceOverlay -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_removeCustomTileFromListener -androidx.preference.R$attr: int textColorSearchUrl -wangdaye.com.geometricweather.R$string: int summary_collapsed_preference_list -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: android.os.IBinder asBinder() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: java.lang.Object poll() -wangdaye.com.geometricweather.R$styleable: int SwitchMaterial_useMaterialThemeColors -androidx.preference.R$id: int listMode -cyanogenmod.weather.WeatherInfo: double access$702(cyanogenmod.weather.WeatherInfo,double) -cyanogenmod.app.CMContextConstants: java.lang.String CM_PERFORMANCE_SERVICE -io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier[] values() -androidx.preference.R$id: int edit_query -androidx.appcompat.R$color: int abc_tint_spinner -com.google.android.material.R$styleable: int ConstraintSet_layout_constrainedHeight -io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean done -androidx.vectordrawable.animated.R$id: int chronometer -androidx.preference.R$styleable: int SwitchCompat_track -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder value(java.lang.String) -com.turingtechnologies.materialscrollbar.R$id: int expand_activities_button -wangdaye.com.geometricweather.R$id: int item_card_display -wangdaye.com.geometricweather.R$styleable: int[] ActionMenuView -io.reactivex.internal.subscriptions.SubscriptionArbiter: void cancel() -wangdaye.com.geometricweather.R$styleable: int MaterialButton_icon -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void otherError(java.lang.Throwable) -androidx.recyclerview.R$dimen: int compat_button_inset_vertical_material -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_readPersistentBytes -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder cipherSuites(okhttp3.CipherSuite[]) -androidx.preference.R$attr: int drawableLeftCompat -androidx.appcompat.R$string: int abc_menu_alt_shortcut_label -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_minWidth -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onError(java.lang.Throwable) -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginTop -okhttp3.internal.http.RealResponseBody -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDataConnectionState(boolean) -androidx.hilt.work.R$drawable: int notification_tile_bg -androidx.appcompat.widget.SwitchCompat: void setThumbTintMode(android.graphics.PorterDuff$Mode) -androidx.constraintlayout.widget.R$id: int easeOut -wangdaye.com.geometricweather.R$styleable: int[] DrawerLayout -okhttp3.Headers$Builder: okhttp3.Headers$Builder set(java.lang.String,java.util.Date) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getUrl() -com.google.android.material.appbar.AppBarLayout$BaseBehavior -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Title -androidx.preference.R$styleable: int SearchView_commitIcon -cyanogenmod.app.CMTelephonyManager: void setDefaultPhoneSub(int) -okhttp3.logging.LoggingEventListener$Factory: okhttp3.logging.HttpLoggingInterceptor$Logger logger -cyanogenmod.hardware.DisplayMode$1 -cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(android.os.Parcel,cyanogenmod.themes.ThemeChangeRequest$1) -com.turingtechnologies.materialscrollbar.R$attr: int keylines -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode SLEET -androidx.work.R$styleable: int GradientColorItem_android_color -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusBottomStart -androidx.constraintlayout.widget.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -androidx.appcompat.R$color: int background_material_dark +wangdaye.com.geometricweather.R$array: int language_values +androidx.fragment.R$drawable: int notify_panel_notification_icon_bg +androidx.constraintlayout.widget.R$styleable: int Transform_android_scaleY +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_behavior +okio.GzipSink: void flush() +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context) +com.turingtechnologies.materialscrollbar.R$dimen +androidx.constraintlayout.widget.R$styleable: int AlertDialog_listLayout +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object readKey(android.database.Cursor,int) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_EditText +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_WARM_RISING +android.didikee.donate.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +cyanogenmod.externalviews.KeyguardExternalViewProviderService: void onCreate() +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_5 +androidx.preference.PreferenceGroup$SavedState: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.R$styleable: int FlowLayout_itemSpacing +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +cyanogenmod.app.IProfileManager$Stub$Proxy: void addNotificationGroup(android.app.NotificationGroup) +com.google.android.material.R$styleable: int[] Tooltip +james.adaptiveicon.R$styleable: int AppCompatTheme_dropDownListViewStyle +com.google.android.material.R$attr: int framePosition +androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveDataInternal(java.lang.String,boolean,java.lang.Object) +okhttp3.Response: java.lang.String toString() +retrofit2.ParameterHandler$HeaderMap: java.lang.reflect.Method method +android.didikee.donate.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +androidx.lifecycle.extensions.R$dimen: int notification_right_side_padding_top +com.google.android.material.button.MaterialButtonToggleGroup: void setupButtonChild(com.google.android.material.button.MaterialButton) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: MfForecastV2Result$ForecastProperties$ProbabilityForecastV2() +com.google.android.material.R$styleable: int AppCompatTheme_actionModePasteDrawable +androidx.activity.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line1_tail_interpolator +com.xw.repo.bubbleseekbar.R$attr: int showTitle +wangdaye.com.geometricweather.R$attr: int autoTransition +androidx.constraintlayout.widget.R$dimen: int abc_text_size_title_material_toolbar +androidx.preference.R$id: int icon_group +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.CompositeDisposable set +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +james.adaptiveicon.R$attr: int buttonBarStyle +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +androidx.fragment.R$color: int ripple_material_light +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.internal.disposables.SequentialDisposable task +com.xw.repo.bubbleseekbar.R$attr: int numericModifiers +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Small +androidx.constraintlayout.widget.R$attr: int waveOffset +com.google.android.material.R$attr: int visibilityMode +androidx.constraintlayout.widget.R$drawable: int btn_radio_on_mtrl +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Light +okio.RealBufferedSink: okio.BufferedSink writeShortLe(int) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_11 +com.amap.api.fence.PoiItem: java.lang.String getPoiId() +androidx.drawerlayout.R$drawable: R$drawable() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date sunSetDate +androidx.vectordrawable.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.tabs.TabItem +androidx.legacy.coreutils.R$color: int notification_icon_bg_color +androidx.appcompat.R$attr: int subtitle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_84 +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogMessage +com.google.android.material.R$style: int Base_V7_Theme_AppCompat +androidx.appcompat.widget.LinearLayoutCompat: int getBaseline() +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken STRING +cyanogenmod.app.Profile: int mExpandedDesktopMode +androidx.appcompat.R$dimen: int abc_text_size_title_material +wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeDescription(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: java.lang.String Unit +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowDx +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_indicator_material +androidx.preference.SeekBarPreference$SavedState +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: double Value +wangdaye.com.geometricweather.R$style: int Theme_Design_Light_NoActionBar +okhttp3.Cookie: long expiresAt() +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_goIcon +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColorLink +wangdaye.com.geometricweather.R$styleable: int[] CustomAttribute +com.turingtechnologies.materialscrollbar.R$styleable: int[] StateListDrawableItem +retrofit2.KotlinExtensions$await$2$2: void onFailure(retrofit2.Call,java.lang.Throwable) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: boolean done +com.xw.repo.bubbleseekbar.R$color: int abc_hint_foreground_material_light +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_48dp +androidx.lifecycle.ReportFragment: void dispatch(androidx.lifecycle.Lifecycle$Event) +android.didikee.donate.R$id: int disableHome +cyanogenmod.externalviews.KeyguardExternalView$2 +android.didikee.donate.R$styleable: int MenuItem_alphabeticModifiers +com.xw.repo.bubbleseekbar.R$dimen +cyanogenmod.weatherservice.IWeatherProviderService: void cancelOngoingRequests() +androidx.preference.R$drawable: int abc_cab_background_top_material +androidx.preference.R$dimen: int abc_dialog_padding_material +okhttp3.internal.http2.Http2Reader$Handler: void rstStream(int,okhttp3.internal.http2.ErrorCode) +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCountryId +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String cityId +androidx.lifecycle.SavedStateHandle$1 +wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.R$color: int abc_search_url_text_selected +io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,java.util.concurrent.Callable) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_PopupMenu +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStrokeColor +io.reactivex.internal.util.NotificationLite: io.reactivex.disposables.Disposable getDisposable(java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_left_black_24dp +androidx.work.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitationProbability(java.lang.Float) +androidx.loader.R$string +wangdaye.com.geometricweather.R$styleable: int MaterialRadioButton_buttonTint +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Connection getConnection() +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.preference.R$styleable: int Fragment_android_id +androidx.appcompat.R$attr: int windowNoTitle +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginEnd +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: long EpochRise retrofit2.KotlinExtensions$suspendAndThrow$1: KotlinExtensions$suspendAndThrow$1(kotlin.coroutines.Continuation) -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircle -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language -androidx.core.R$id: int accessibility_custom_action_2 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelMenuListTheme -com.google.android.material.circularreveal.CircularRevealGridLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String key() -android.didikee.donate.R$id: int radio -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_baselineAligned -androidx.lifecycle.SavedStateHandle$1: SavedStateHandle$1(androidx.lifecycle.SavedStateHandle) -cyanogenmod.providers.CMSettings$Secure: long getLong(android.content.ContentResolver,java.lang.String,long) -okhttp3.OkHttpClient: okhttp3.Authenticator authenticator -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.settings.fragments.NotificationColorSettingsFragment: NotificationColorSettingsFragment() -james.adaptiveicon.R$attr: int autoCompleteTextViewStyle -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.TableStatements getStatements() -com.google.android.material.R$id: int material_hour_text_input -androidx.customview.R$styleable: int GradientColor_android_centerX -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_color -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: double Value -com.google.android.material.R$dimen: int abc_dialog_padding_material -wangdaye.com.geometricweather.R$attr: int dialogCornerRadius -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_14 -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_spinBars -com.google.android.material.chip.Chip: void setTextStartPadding(float) -com.google.android.material.R$styleable: int OnSwipe_maxAcceleration -androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context) -cyanogenmod.app.suggest.AppSuggestManager: java.util.List getSuggestions(android.content.Intent) -com.google.android.material.R$styleable: int Toolbar_contentInsetRight -androidx.swiperefreshlayout.R$id: int action_container -com.bumptech.glide.integration.okhttp.R$integer: R$integer() -com.turingtechnologies.materialscrollbar.R$style: int CardView -androidx.core.widget.NestedScrollView$SavedState: android.os.Parcelable$Creator CREATOR -androidx.core.R$id: int accessibility_custom_action_0 -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.String weatherText -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyTopLeft -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_mode_close_item_material -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onSubscribe(org.reactivestreams.Subscription) -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constrainedHeight -okhttp3.logging.LoggingEventListener: void callStart(okhttp3.Call) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: int status -com.jaredrummler.android.colorpicker.R$attr: int entryValues -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontStyle -cyanogenmod.app.StatusBarPanelCustomTile$1: cyanogenmod.app.StatusBarPanelCustomTile[] newArray(int) -io.reactivex.internal.schedulers.ScheduledRunnable: void run() -okhttp3.Cache: long maxSize() -androidx.preference.R$dimen: int notification_top_pad_large_text -com.google.android.material.R$drawable: int notification_template_icon_bg -androidx.constraintlayout.widget.R$id: int decor_content_parent -com.turingtechnologies.materialscrollbar.R$id: int contentPanel -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: io.reactivex.internal.operators.observable.ObservableAmb$AmbCoordinator parent +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCutDrawable +com.google.android.material.R$attr: int scrimVisibleHeightTrigger +android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.work.OverwritingInputMerger +com.turingtechnologies.materialscrollbar.R$attr: int itemHorizontalPadding +androidx.constraintlayout.widget.R$attr: int waveShape +com.google.android.material.chip.Chip: void setBackgroundColor(int) +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_widget_height +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_titleTextStyle +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIconTint +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Bridge +androidx.recyclerview.R$styleable: int RecyclerView_spanCount +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_popupWindowStyle +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: AccuCurrentResult$DewPoint$Imperial() +androidx.preference.R$styleable: int Preference_allowDividerAbove +android.didikee.donate.R$drawable: int abc_ratingbar_material +wangdaye.com.geometricweather.R$string: int week_6 +com.google.android.material.R$attr: int motionPathRotate +androidx.preference.R$attr: int spinnerDropDownItemStyle +androidx.constraintlayout.widget.R$attr: int navigationIcon +android.didikee.donate.R$id: int ifRoom +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_scrollMode +androidx.hilt.lifecycle.R$id: int accessibility_action_clickable_span +androidx.coordinatorlayout.R$id: int accessibility_custom_action_21 +androidx.appcompat.widget.ScrollingTabContainerView: void setTabSelected(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int status +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: AccuCurrentResult$Wind() +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onComplete() +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog +wangdaye.com.geometricweather.R$attr: int flow_horizontalBias +androidx.constraintlayout.widget.R$color: int background_floating_material_light +cyanogenmod.weatherservice.ServiceRequest: void fail() +com.jaredrummler.android.colorpicker.R$id: R$id() +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_BottomSheet_Modal +cyanogenmod.weather.WeatherInfo: double getTodaysLow() +io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setIcePrecipitationProbability(java.lang.Float) +androidx.preference.R$styleable: int Preference_defaultValue +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWeatherStart(java.lang.String) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onError(java.lang.Throwable) +com.google.android.material.checkbox.MaterialCheckBox: void setUseMaterialThemeColors(boolean) +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_crossfade +androidx.appcompat.R$style: int Base_Widget_AppCompat_Spinner +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarSize +com.jaredrummler.android.colorpicker.R$attr: int drawerArrowStyle +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Info +androidx.appcompat.R$dimen: int abc_dropdownitem_text_padding_left +com.github.rahatarmanahmed.cpv.CircularProgressView: void onSizeChanged(int,int,int,int) +retrofit2.ParameterHandler$Tag: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.xw.repo.bubbleseekbar.R$attr: int windowNoTitle +com.google.android.material.navigation.NavigationView: void setItemTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayHorizontalWidgetConfigActivity: Hilt_ClockDayHorizontalWidgetConfigActivity() +retrofit2.OkHttpCall$1 +androidx.constraintlayout.widget.R$color: int abc_hint_foreground_material_light +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.internal.operators.observable.ObservableCache parent +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +androidx.coordinatorlayout.R$id: int normal +com.turingtechnologies.materialscrollbar.R$attr: int autoSizePresetSizes +com.jaredrummler.android.colorpicker.R$attr: int buttonStyle +androidx.constraintlayout.widget.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$attr: int windowMinWidthMajor +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginBottom +androidx.hilt.lifecycle.R$styleable: int[] FragmentContainerView +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int PrecipitationProbability +wangdaye.com.geometricweather.R$dimen: int abc_list_item_padding_horizontal_material +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1 +androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontWeight +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListPopupWindow +com.turingtechnologies.materialscrollbar.R$attr: int singleChoiceItemLayout +okhttp3.internal.http1.Http1Codec: Http1Codec(okhttp3.OkHttpClient,okhttp3.internal.connection.StreamAllocation,okio.BufferedSource,okio.BufferedSink) +com.jaredrummler.android.colorpicker.R$style: int Base_V26_Theme_AppCompat +androidx.constraintlayout.widget.R$attr: int sizePercent +com.turingtechnologies.materialscrollbar.R$attr: int titleMarginStart +androidx.appcompat.app.ToolbarActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +androidx.recyclerview.R$id: int line1 +android.didikee.donate.R$attr: int actionDropDownStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +androidx.hilt.lifecycle.R$layout: int notification_action_tombstone +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog_Alert +android.didikee.donate.R$styleable: int MenuItem_android_numericShortcut +com.google.android.material.R$styleable: int SearchView_searchIcon +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: int UnitType +com.turingtechnologies.materialscrollbar.R$attr: int chipStartPadding +androidx.viewpager.R$id: int right_icon +androidx.constraintlayout.widget.R$id: int action_bar_title +okhttp3.internal.ws.RealWebSocket$Close: long cancelAfterCloseMillis +androidx.lifecycle.ViewModelProvider$NewInstanceFactory: ViewModelProvider$NewInstanceFactory() +androidx.constraintlayout.widget.ConstraintLayout: int getMaxWidth() +androidx.constraintlayout.widget.R$styleable: int Constraint_barrierDirection +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setLabel(int) +io.reactivex.Observable: io.reactivex.Observable concat(java.lang.Iterable) +cyanogenmod.profiles.AirplaneModeSettings: void setOverride(boolean) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWetBulbTemperature(java.lang.Integer) +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleTintMode +wangdaye.com.geometricweather.R$attr: int boxCollapsedPaddingTop +androidx.drawerlayout.R$style: int Widget_Compat_NotificationActionContainer +androidx.appcompat.R$attr: int actionBarTabTextStyle +com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_android_popupAnimationStyle +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDataConnectionSelectedOnSub(int) +com.google.android.gms.base.R$id: int icon_only +wangdaye.com.geometricweather.settings.dialogs.ProvidersPreviewerDialog: ProvidersPreviewerDialog() com.google.gson.internal.LinkedTreeMap: int modCount -com.xw.repo.bubbleseekbar.R$attr: int dialogTheme -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeDegreeDayTemperature -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Small -android.didikee.donate.R$color: int bright_foreground_inverse_material_dark -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Bridge -wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_button_bar_material -wangdaye.com.geometricweather.R$id: int SHOW_ALL -com.google.android.material.R$id: int expanded_menu -wangdaye.com.geometricweather.R$string: int restart -okio.RealBufferedSource: okio.Buffer buffer -com.turingtechnologies.materialscrollbar.R$dimen: int disabled_alpha_material_light -wangdaye.com.geometricweather.R$string: int settings_notification_hide_in_lockScreen_off -wangdaye.com.geometricweather.remoteviews.config.Hilt_WeekWidgetConfigActivity: Hilt_WeekWidgetConfigActivity() -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_picker_background_inset -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver parent -com.jaredrummler.android.colorpicker.ColorPickerView -androidx.recyclerview.R$string -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String so2 -androidx.fragment.R$styleable: int GradientColor_android_endY -james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.R$string: int content_des_co +androidx.appcompat.R$style: int TextAppearance_AppCompat_SearchResult_Title +android.didikee.donate.R$attr: int buttonGravity +com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_layout +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] EMPTY_RULE +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalAlign +com.google.android.material.R$dimen: int mtrl_badge_text_size +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarButtonStyle +androidx.appcompat.R$attr: int itemPadding +james.adaptiveicon.R$styleable: int AppCompatImageView_srcCompat +com.turingtechnologies.materialscrollbar.R$attr: int tabContentStart +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$id: int row_index_key +com.google.android.material.internal.VisibilityAwareImageButton: void setVisibility(int) +wangdaye.com.geometricweather.R$attr: int cornerFamilyTopLeft +androidx.work.R$id: int accessibility_custom_action_22 +james.adaptiveicon.R$string: int abc_capital_on +retrofit2.RequestFactory$Builder: void validatePathName(int,java.lang.String) +androidx.appcompat.widget.ActionBarContainer: ActionBarContainer(android.content.Context) +androidx.hilt.work.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$id: int item_pollen_daily +wangdaye.com.geometricweather.R$color: int colorLine_light +cyanogenmod.profiles.RingModeSettings: int describeContents() +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getDefaultLiveLockScreen +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_107 +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider access$002(cyanogenmod.externalviews.KeyguardExternalView,cyanogenmod.externalviews.IKeyguardExternalViewProvider) +okhttp3.internal.cache.CacheInterceptor$1: okio.BufferedSource val$source +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int sourceMode +wangdaye.com.geometricweather.R$xml: int widget_text +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: AccuDailyResult$DailyForecasts$Night$Snow() +wangdaye.com.geometricweather.R$string: int abc_menu_ctrl_shortcut_label +okio.SegmentedByteString: int[] directory +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius +okio.Pipe: okio.Sink sink +retrofit2.Platform +com.bumptech.glide.integration.okhttp.R$layout: int notification_template_part_time +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +android.didikee.donate.R$attr: int switchStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableRight +wangdaye.com.geometricweather.R$attr: int paddingEnd +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_orderInCategory +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int INSTALLED +cyanogenmod.app.ICustomTileListener: void onListenerConnected() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.R$attr: int subMenuArrow +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_getSubInformation_0 +androidx.transition.R$attr: int fontStyle +androidx.lifecycle.extensions.R$styleable +okhttp3.internal.ws.WebSocketProtocol: int B1_MASK_LENGTH +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable +androidx.preference.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: void setUnit(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +james.adaptiveicon.R$styleable: int SearchView_searchIcon +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_3_30 +androidx.customview.R$dimen: int compat_control_corner_material +android.didikee.donate.R$color: int abc_search_url_text_normal +com.bumptech.glide.module.AppGlideModule: AppGlideModule() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarItemBackground +com.google.android.material.R$styleable: int MenuView_subMenuArrow +androidx.coordinatorlayout.R$id: int end +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onError(java.lang.Throwable) +cyanogenmod.externalviews.IExternalViewProviderFactory: android.os.IBinder createExternalView(android.os.Bundle) +androidx.preference.R$id: int src_over +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void otherSuccess(java.lang.Object) +okhttp3.internal.ws.WebSocketWriter$FrameSink: void write(okio.Buffer,long) +androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context,android.util.AttributeSet) +cyanogenmod.weatherservice.IWeatherProviderService: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: ObservableTimeout$TimeoutObserver(io.reactivex.Observer,io.reactivex.functions.Function) +androidx.lifecycle.SavedStateHandleController: void attachHandleIfNeeded(androidx.lifecycle.ViewModel,androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) +com.google.android.material.R$attr: int ratingBarStyleSmall +androidx.recyclerview.R$id: int accessibility_custom_action_9 +cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl access$000(cyanogenmod.externalviews.ExternalViewProviderService$Provider) +androidx.constraintlayout.widget.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +com.turingtechnologies.materialscrollbar.R$string: int abc_activity_chooser_view_see_all +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +james.adaptiveicon.R$styleable: int[] AppCompatTextHelper +androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_min +androidx.constraintlayout.widget.R$attr: int homeLayout +androidx.appcompat.R$id: int on +cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getProfile(android.os.ParcelUuid) +james.adaptiveicon.R$styleable: int AppCompatTheme_dividerVertical +androidx.appcompat.R$styleable: int GradientColor_android_startColor +com.google.gson.JsonSyntaxException: long serialVersionUID +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analog_dark +com.jaredrummler.android.colorpicker.R$id: int decor_content_parent +android.didikee.donate.R$styleable: int MenuItem_android_alphabeticShortcut +com.google.android.material.R$id: int mtrl_picker_text_input_range_end +androidx.preference.R$styleable: int[] RecycleListView +com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context,android.util.AttributeSet) +okhttp3.internal.http1.Http1Codec$ChunkedSource: long read(okio.Buffer,long) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getRainPrecipitationProbability() +com.turingtechnologies.materialscrollbar.R$id: int list_item +wangdaye.com.geometricweather.R$attr: int flow_verticalStyle +androidx.preference.R$attr: int drawableBottomCompat +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderDivider +io.reactivex.internal.disposables.EmptyDisposable: void dispose() +wangdaye.com.geometricweather.R$attr: int constraint_referenced_ids +androidx.appcompat.R$styleable: int Toolbar_subtitleTextAppearance +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_inverse_material_light +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow Snow +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String unit +com.google.android.material.R$id: int chip2 +cyanogenmod.themes.ThemeChangeRequest$Builder +android.didikee.donate.R$styleable: int MenuItem_android_visible +androidx.lifecycle.SavedStateHandleController$OnRecreation +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.lang.String MobileLink +androidx.core.R$id: int tag_screen_reader_focusable +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetEndWithActions +androidx.appcompat.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +okhttp3.internal.http.HttpHeaders: void receiveHeaders(okhttp3.CookieJar,okhttp3.HttpUrl,okhttp3.Headers) +com.google.android.material.R$color: int abc_tint_default +androidx.preference.R$styleable: int AlertDialog_buttonIconDimen +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +okhttp3.internal.http2.Settings: int MAX_CONCURRENT_STREAMS +androidx.activity.R$id: int accessibility_custom_action_21 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setIndices(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX) +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean offer(java.lang.Object,java.lang.Object) +androidx.constraintlayout.widget.ConstraintLayout: void setMaxWidth(int) +james.adaptiveicon.R$id: int scrollIndicatorUp +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +okhttp3.Protocol: okhttp3.Protocol valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_summaryOff +com.google.android.material.R$styleable: int NavigationView_itemShapeAppearance +androidx.hilt.work.R$id: int tag_screen_reader_focusable +com.google.android.material.textfield.TextInputLayout: float getHintCollapsedTextHeight() +androidx.appcompat.R$integer +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +androidx.constraintlayout.widget.Placeholder +androidx.hilt.work.R$styleable: int GradientColor_android_endY +com.google.android.material.R$animator: int design_fab_hide_motion_spec +androidx.work.R$drawable: int notification_icon_background +com.google.android.material.chip.Chip: void setEnsureMinTouchTargetSize(boolean) +androidx.preference.R$id: int accessibility_custom_action_30 +androidx.preference.R$attr: int allowStacking +wangdaye.com.geometricweather.R$plurals: int mtrl_badge_content_description +androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig weatherEntityDaoConfig +cyanogenmod.profiles.ConnectionSettings: java.lang.String EXTRA_NETWORK_MODE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: void setUnit(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String Phrase_60 +android.didikee.donate.R$styleable: int AlertDialog_buttonIconDimen +wangdaye.com.geometricweather.R$styleable: int Constraint_animate_relativeTo +com.google.android.material.R$styleable: int Constraint_flow_lastVerticalBias +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_statusBarScrim +androidx.vectordrawable.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.util.Date date +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation mWeatherLocation +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawableItem_android_drawable +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitation() +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() +androidx.appcompat.R$attr: int contentInsetEndWithActions +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: int UnitType +wangdaye.com.geometricweather.R$attr: int bottomSheetDialogTheme +androidx.hilt.lifecycle.R$string: R$string() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf +androidx.appcompat.R$styleable: int[] PopupWindow +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +io.reactivex.subjects.PublishSubject$PublishDisposable: void dispose() +wangdaye.com.geometricweather.R$dimen: int mtrl_toolbar_default_height +com.google.android.material.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: android.os.IBinder call() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayColorCalibration +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm10Desc +com.google.android.material.slider.BaseSlider: int getLabelBehavior() +androidx.coordinatorlayout.R$styleable: int ColorStateListItem_android_alpha +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_RadioButton +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +com.google.android.material.R$styleable: int LinearLayoutCompat_dividerPadding +okhttp3.internal.publicsuffix.PublicSuffixDatabase: okhttp3.internal.publicsuffix.PublicSuffixDatabase instance +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String d +androidx.lifecycle.ClassesInfoCache$MethodReference: java.lang.reflect.Method mMethod wangdaye.com.geometricweather.R$dimen: int mtrl_progress_indicator_full_rounded_corner_radius -io.reactivex.internal.disposables.DisposableHelper: boolean isDisposed() -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.util.AtomicThrowable errors -com.google.android.material.R$attr: int checkedButton -cyanogenmod.providers.CMSettings$DelimitedListValidator: android.util.ArraySet mValidValueSet -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf -androidx.hilt.work.R$anim -com.jaredrummler.android.colorpicker.R$color: int abc_background_cache_hint_selector_material_light -retrofit2.KotlinExtensions$await$2$2: kotlinx.coroutines.CancellableContinuation $continuation -com.baidu.location.e.m: m(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) -androidx.preference.R$attr: int listPreferredItemHeightSmall -okhttp3.internal.ws.WebSocketWriter: java.util.Random random -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation BOTTOM -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitationDuration(java.lang.Float) +cyanogenmod.app.Profile$ExpandedDesktopMode: int ENABLE +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherText +androidx.appcompat.R$style: int TextAppearance_AppCompat_Display4 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableBottomCompat +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List xiche +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_height +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$200(com.github.rahatarmanahmed.cpv.CircularProgressView) +androidx.lifecycle.AndroidViewModel +wangdaye.com.geometricweather.common.basic.models.weather.Alert: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: CNWeatherResult$HourlyForecast() +wangdaye.com.geometricweather.R$animator: int mtrl_fab_hide_motion_spec +androidx.constraintlayout.widget.R$id: int spread_inside +androidx.preference.R$id: int progress_circular +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableBottom +androidx.work.OverwritingInputMerger: OverwritingInputMerger() +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle +wangdaye.com.geometricweather.R$attr: int textAppearanceBody2 +androidx.appcompat.widget.AppCompatTextView: void setTextClassifier(android.view.textclassifier.TextClassifier) +com.jaredrummler.android.colorpicker.R$attr: int selectable +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date getRiseDate() +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: io.reactivex.processors.FlowableProcessor processor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_keyline +okhttp3.internal.cache.CacheRequest: okio.Sink body() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult +androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_Alert +androidx.preference.R$id: int search_button +androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentWidth +wangdaye.com.geometricweather.R$string: int abc_menu_meta_shortcut_label +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver[] observers +wangdaye.com.geometricweather.R$layout: int widget_remote +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getLiveLockScreenEnabled +com.bumptech.glide.R$styleable: int[] CoordinatorLayout +wangdaye.com.geometricweather.R$integer: int mtrl_btn_anim_delay_ms +com.amap.api.location.AMapLocation: java.lang.String getErrorInfo() +wangdaye.com.geometricweather.R$layout: int material_time_input +com.google.android.material.R$styleable: int KeyPosition_percentWidth +androidx.appcompat.resources.R$id: int icon_group +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingBottom +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPressure(java.lang.Float) +android.support.v4.app.INotificationSideChannel$Stub$Proxy: java.lang.String getInterfaceDescriptor() +android.didikee.donate.R$layout: int abc_dialog_title_material +com.google.android.material.chip.Chip: android.text.TextUtils$TruncateAt getEllipsize() +wangdaye.com.geometricweather.R$attr: int enforceMaterialTheme +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: java.util.ArrayDeque windows +wangdaye.com.geometricweather.R$attr: int listPreferredItemHeightSmall +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: int hasRain +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Snackbar +io.reactivex.internal.operators.observable.ObservableGroupBy$State: io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver parent +retrofit2.Call: retrofit2.Response execute() +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowRadius +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean getFeelsLike() +cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_COLOR_CALIBRATION +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable +wangdaye.com.geometricweather.R$attr: int checkedChip +wangdaye.com.geometricweather.R$id: int activity_widget_config_scrollContainer +retrofit2.BuiltInConverters$StreamingResponseBodyConverter: BuiltInConverters$StreamingResponseBodyConverter() +com.bumptech.glide.GeneratedAppGlideModule: GeneratedAppGlideModule() +android.support.v4.os.ResultReceiver$MyResultReceiver +androidx.constraintlayout.widget.R$attr: int windowMinWidthMinor +com.google.android.material.R$dimen: int mtrl_textinput_box_label_cutout_padding +com.turingtechnologies.materialscrollbar.R$id: int edit_query +wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardTitle +androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$string: int settings_title_speed_unit +com.google.android.material.slider.BaseSlider: void addOnChangeListener(com.google.android.material.slider.BaseOnChangeListener) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_NoActionBar +androidx.drawerlayout.R$styleable: int ColorStateListItem_alpha +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_DES_CBC_SHA +cyanogenmod.app.PartnerInterface: void rebootDevice() +cyanogenmod.platform.Manifest$permission: java.lang.String READ_MSIM_PHONE_STATE +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: ChineseCityEntity(java.lang.Long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) +okhttp3.HttpUrl: java.lang.String url +com.google.android.material.textfield.TextInputEditText +androidx.preference.R$style: int Base_V28_Theme_AppCompat +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowDx +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents +okhttp3.internal.cache2.Relay: okio.Source newSource() +androidx.appcompat.widget.ViewStubCompat +wangdaye.com.geometricweather.common.basic.GeoDialog: GeoDialog() +wangdaye.com.geometricweather.R$string: int cpv_default_title +androidx.appcompat.view.menu.ActionMenuItemView: void setTitle(java.lang.CharSequence) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +wangdaye.com.geometricweather.R$id: int info +androidx.recyclerview.widget.RecyclerView: void setClipToPadding(boolean) +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.util.List toCardDisplayList(java.lang.String) +androidx.viewpager.R$drawable +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintStart_toStartOf +wangdaye.com.geometricweather.R$styleable: int Constraint_barrierAllowsGoneWidgets +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum() +android.didikee.donate.R$styleable: int MenuItem_android_menuCategory +wangdaye.com.geometricweather.R$drawable: int ic_router +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int state +androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.MaybeObserver) +retrofit2.ParameterHandler$Part: okhttp3.Headers headers +androidx.preference.R$layout: int preference_recyclerview +okhttp3.internal.platform.Platform: void afterHandshake(javax.net.ssl.SSLSocket) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_al +androidx.lifecycle.extensions.R$anim: int fragment_fade_exit +wangdaye.com.geometricweather.R$attr: int chipIconSize +wangdaye.com.geometricweather.R$string: int feedback_background_location_summary +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_checked +androidx.activity.R$id: int accessibility_custom_action_8 +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: java.util.concurrent.atomic.AtomicReference active +androidx.preference.R$style: int Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.lang.String type +wangdaye.com.geometricweather.R$color: int test_mtrl_calendar_day +com.turingtechnologies.materialscrollbar.R$attr: int icon +androidx.constraintlayout.widget.R$styleable: int Constraint_motionStagger +com.turingtechnologies.materialscrollbar.R$styleable: int[] AlertDialog +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: android.graphics.Rect val$clipRect +com.google.android.material.R$styleable: int Constraint_motionStagger +io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler) +cyanogenmod.app.CMContextConstants: java.lang.String CM_PROFILE_SERVICE +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ListPopupWindow +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_DES_CBC_SHA +com.jaredrummler.android.colorpicker.R$color: int preference_fallback_accent_color +com.google.android.material.R$attr: int panelMenuListTheme +cyanogenmod.profiles.AirplaneModeSettings: boolean isOverride() +wangdaye.com.geometricweather.R$styleable: int Transition_pathMotionArc +james.adaptiveicon.R$attr: int contentInsetRight +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Title +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties properties +wangdaye.com.geometricweather.R$string: int settings_title_distance_unit +wangdaye.com.geometricweather.R$attr: int selectorSize +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: AccuCurrentResult$PrecipitationSummary$Past6Hours() +wangdaye.com.geometricweather.R$attr: int itemStrokeWidth +com.jaredrummler.android.colorpicker.R$id: int action_bar_root +wangdaye.com.geometricweather.R$string: int key_notification_custom_color +okhttp3.Request$Builder: okhttp3.Headers$Builder headers +okhttp3.internal.platform.AndroidPlatform: boolean isCleartextTrafficPermitted(java.lang.String) +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: long serialVersionUID +wangdaye.com.geometricweather.background.receiver.widget.WidgetWeekProvider: WidgetWeekProvider() +cyanogenmod.os.Concierge$ParcelInfo: android.os.Parcel mParcel +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginBottom +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String dailyForecast +androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_NO_ARG +androidx.preference.R$style: int ThemeOverlay_AppCompat_DayNight +okio.RealBufferedSink: okio.BufferedSink writeShort(int) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView +io.reactivex.Observable: io.reactivex.Observable switchMapMaybeDelayError(io.reactivex.functions.Function) +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_middle_mtrl_light +io.reactivex.internal.schedulers.AbstractDirectTask: long serialVersionUID +wangdaye.com.geometricweather.R$animator: int touch_raise +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivityStopped(android.app.Activity) +androidx.appcompat.R$attr: int borderlessButtonStyle +wangdaye.com.geometricweather.R$string: int content_desc_check_details +wangdaye.com.geometricweather.R$id: int item_details_content +com.amap.api.location.APSServiceBase: int onStartCommand(android.content.Intent,int,int) +androidx.preference.R$styleable: int[] CheckBoxPreference +com.turingtechnologies.materialscrollbar.R$id: int action_bar_spinner +androidx.activity.R$id: int accessibility_custom_action_11 +io.reactivex.Observable: io.reactivex.Observable throttleLast(long,java.util.concurrent.TimeUnit) +okhttp3.Interceptor$Chain: okhttp3.Call call() +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: Http2Connection$ReaderRunnable$2(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[],boolean,okhttp3.internal.http2.Settings) +cyanogenmod.app.Profile: java.util.Map streams +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.google.android.material.R$styleable: int Layout_layout_constraintCircle +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_default +wangdaye.com.geometricweather.R$id: int text_input_start_icon +okhttp3.logging.LoggingEventListener: void requestBodyStart(okhttp3.Call) +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: long serialVersionUID +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Caption +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_buttonIconDimen +wangdaye.com.geometricweather.background.polling.work.worker.AsyncWorker +com.google.android.material.R$dimen: int mtrl_card_dragged_z +wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacing +io.reactivex.Observable: io.reactivex.Observable subscribeOn(io.reactivex.Scheduler) +androidx.viewpager2.R$dimen: int compat_button_inset_horizontal_material +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long count +androidx.constraintlayout.widget.R$styleable: int ActionBar_titleTextStyle +androidx.customview.R$styleable: int FontFamily_fontProviderAuthority +com.google.android.material.R$styleable: int Layout_android_layout_marginLeft +cyanogenmod.content.Intent: java.lang.String ACTION_THEME_INSTALLED +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean) +com.google.android.material.R$style: int Widget_AppCompat_PopupMenu +com.google.android.material.R$styleable: int AppCompatTheme_alertDialogStyle +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_DASHES +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_percent +androidx.appcompat.R$style: int Theme_AppCompat_Empty +com.xw.repo.bubbleseekbar.R$attr: int spinnerStyle +com.amap.api.fence.PoiItem: java.lang.String i +com.google.android.material.R$styleable: int[] Transition +androidx.customview.R$styleable: int FontFamily_fontProviderPackage +com.google.android.material.R$styleable: int TabLayout_tabIndicatorAnimationDuration +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ImageButton +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_LIFE_DETAILS +com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_top_material +com.turingtechnologies.materialscrollbar.R$color +androidx.loader.R$drawable: int notification_bg_low_normal +android.didikee.donate.R$drawable: int abc_ic_ab_back_material +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: int rain +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CardView +retrofit2.ParameterHandler$RelativeUrl +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Button +wangdaye.com.geometricweather.common.basic.models.weather.Alert: void deduplication(java.util.List) +androidx.constraintlayout.widget.R$anim: int abc_fade_out +wangdaye.com.geometricweather.R$id: int cpv_color_image_view +wangdaye.com.geometricweather.R$array: int languages +androidx.appcompat.R$dimen: int notification_large_icon_height +io.reactivex.internal.util.VolatileSizeArrayList: long serialVersionUID +com.amap.api.location.AMapLocationClientOption$2 +com.google.android.material.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +okhttp3.internal.http2.Header: boolean equals(java.lang.Object) +com.google.android.material.R$attr: int snackbarStyle +com.google.android.material.R$styleable: int AppCompatTheme_actionBarTheme +james.adaptiveicon.R$attr: int ratingBarStyleIndicator +james.adaptiveicon.R$attr: int searchHintIcon +com.google.android.material.R$id: int snackbar_text +okhttp3.OkHttpClient: java.util.List DEFAULT_CONNECTION_SPECS +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_id +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BOOLEAN +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_7 +james.adaptiveicon.R$styleable: int ActionBar_icon +okhttp3.Credentials +com.google.android.material.R$styleable: int MenuItem_numericModifiers +androidx.core.app.RemoteActionCompatParcelizer: RemoteActionCompatParcelizer() +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_right_mtrl_light +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +okhttp3.internal.cache.DiskLruCache$3: void remove() +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: ObservableScalarXMap$ScalarDisposable(io.reactivex.Observer,java.lang.Object) +android.didikee.donate.R$styleable: int MenuGroup_android_menuCategory +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_exitFadeDuration +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle[] values() +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: int unitArrayIndex +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: int phenomenoMaxColorId +com.xw.repo.bubbleseekbar.R$attr: int layout_behavior +okhttp3.Request$Builder: okhttp3.Request$Builder tag(java.lang.Class,java.lang.Object) +cyanogenmod.app.ICMTelephonyManager: java.util.List getSubInformation() +wangdaye.com.geometricweather.R$array: int widget_text_colors +okhttp3.Dispatcher: java.util.Deque runningAsyncCalls +cyanogenmod.themes.ThemeManager$1 +com.google.android.material.R$attr: int touchRegionId +com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getIndicatorOffset() +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_subtitle +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind +wangdaye.com.geometricweather.common.ui.transitions.RoundCornerTransition: RoundCornerTransition(android.content.Context,android.util.AttributeSet) +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Title +androidx.dynamicanimation.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf +com.google.android.material.R$color: int material_slider_inactive_tick_marks_color +wangdaye.com.geometricweather.R$string: int key_background_free +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX brandInfo +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickInactiveTintList() +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$402(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +androidx.activity.R$id: int actions +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getOverlayThemePackageName() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +com.amap.api.location.AMapLocation: java.lang.String a +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: HourlyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +androidx.hilt.lifecycle.R$string +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.disposables.Disposable upstream +androidx.constraintlayout.widget.R$string: int abc_menu_enter_shortcut_label +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_menu +wangdaye.com.geometricweather.R$styleable: int MenuView_android_horizontalDivider +com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String momentDay +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.appcompat.widget.ScrollingTabContainerView: ScrollingTabContainerView(android.content.Context) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Alert +androidx.appcompat.widget.AppCompatSpinner$DropdownPopup +android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_cancel +james.adaptiveicon.R$styleable: int MenuGroup_android_checkableBehavior +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableStartCompat +androidx.preference.R$attr: int fastScrollVerticalThumbDrawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.lang.String getPubTime() +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather weather +com.google.android.material.R$styleable: int ConstraintSet_android_id +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: AtmoAuraQAResult() +androidx.preference.R$style: int Theme_AppCompat_Light_Dialog_Alert +androidx.constraintlayout.widget.R$styleable: int Variant_region_widthLessThan +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: double Value +android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listDividerAlertDialog +wangdaye.com.geometricweather.R$string: int off +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayWeekProvider: WidgetClockDayWeekProvider() +androidx.appcompat.R$dimen: int abc_dropdownitem_icon_width +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.ObservableSource bufferOpen +androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean direction +james.adaptiveicon.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: int UnitType +android.didikee.donate.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.R$layout: int design_layout_tab_text +cyanogenmod.weather.CMWeatherManager$1$1: CMWeatherManager$1$1(cyanogenmod.weather.CMWeatherManager$1,java.lang.String) +okhttp3.Dispatcher: java.util.Deque runningSyncCalls +wangdaye.com.geometricweather.R$attr: int titleMarginBottom +wangdaye.com.geometricweather.R$color: int notification_background_primary +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Button +okio.Buffer: long readLong() +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_NOTIFICATIONS +com.amap.api.location.DPoint: void setLongitude(double) +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +androidx.appcompat.R$style: int Widget_AppCompat_RatingBar_Indicator +androidx.work.impl.utils.futures.AbstractFuture$Failure$1: AbstractFuture$Failure$1(java.lang.String) +wangdaye.com.geometricweather.R$attr: int firstBaselineToTopHeight +org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType[] values() +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalGap +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry +androidx.preference.R$string: int not_set +cyanogenmod.weather.RequestInfo$Builder: java.lang.String mCityName +com.google.android.material.R$attr: int navigationIconColor +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: long EpochStartTime +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarStyle +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitationProbability +com.turingtechnologies.materialscrollbar.R$anim: int design_snackbar_out +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Small +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_85 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX() +com.google.android.material.R$styleable: int Layout_android_layout_marginEnd +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SeekBar_Discrete +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: float getDensity(float) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial() +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getDefaultHintTextColor() +cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo getWeatherInfo() +wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_toTopOf +com.google.android.material.R$dimen: int mtrl_card_corner_radius +com.google.android.material.R$styleable: int ConstraintSet_flow_verticalAlign +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_subtitleTextStyle +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getDesiredHeight() +io.reactivex.internal.disposables.DisposableHelper: boolean replace(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) +io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action) +wangdaye.com.geometricweather.R$attr: int itemPadding +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor[] values() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitation +wangdaye.com.geometricweather.R$drawable: int flag_ro +android.didikee.donate.R$styleable: int AppCompatTextView_drawableTintMode +okhttp3.internal.cache.DiskLruCache$Editor$1: DiskLruCache$Editor$1(okhttp3.internal.cache.DiskLruCache$Editor,okio.Sink) +androidx.appcompat.widget.AppCompatButton: void setSupportAllCaps(boolean) +androidx.drawerlayout.R$dimen: R$dimen() +cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String CITY_NAME +wangdaye.com.geometricweather.db.entities.LocationEntity: void setLatitude(float) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setHeadDescription(java.lang.String) +io.reactivex.internal.disposables.EmptyDisposable +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginBottom +com.google.android.material.R$styleable: int NavigationView_itemHorizontalPadding +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetEnd +okio.RealBufferedSource: okio.ByteString readByteString() +com.google.android.material.R$styleable: int RecyclerView_stackFromEnd +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setValue(java.util.List) +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarItemBackground +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: IThemeProcessingListener$Stub$Proxy(android.os.IBinder) +okhttp3.internal.http2.Settings: boolean getEnablePush(boolean) +androidx.preference.R$color: int dim_foreground_disabled_material_dark +james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Call delegate +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_summaryOn +james.adaptiveicon.R$drawable: int abc_ic_menu_share_mtrl_alpha +okio.AsyncTimeout$2: okio.Timeout timeout() +androidx.appcompat.R$attr: int divider +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +okio.ForwardingTimeout: okio.ForwardingTimeout setDelegate(okio.Timeout) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_shapeAppearance +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_rightToLeft +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: int index +androidx.preference.R$layout: int preference_category +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SearchView +androidx.preference.R$attr: int goIcon +androidx.appcompat.R$style: int TextAppearance_AppCompat_Medium +com.google.android.material.R$id: int month_navigation_previous +cyanogenmod.providers.CMSettings$NameValueCache: CMSettings$NameValueCache(java.lang.String,android.net.Uri,java.lang.String,java.lang.String) +androidx.transition.R$styleable: int ColorStateListItem_alpha +com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_android_popupAnimationStyle +androidx.fragment.R$dimen: int notification_media_narrow_margin +android.didikee.donate.R$id: int search_go_btn +cyanogenmod.app.CustomTileListenerService +cyanogenmod.weather.CMWeatherManager: java.lang.String TAG +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric Metric +com.jaredrummler.android.colorpicker.R$attr: int initialActivityCount +okio.AsyncTimeout: long IDLE_TIMEOUT_MILLIS +wangdaye.com.geometricweather.common.basic.models.weather.History: int nighttimeTemperature +android.didikee.donate.R$style: int Widget_AppCompat_Light_ListPopupWindow +wangdaye.com.geometricweather.common.basic.models.weather.Base: Base(java.lang.String,long,java.util.Date,long,java.util.Date,long) +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean delayError +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline2 +okio.Buffer: okio.Buffer writeByte(int) +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.util.concurrent.CompletableFuture adapt(retrofit2.Call) +androidx.appcompat.R$id: int shortcut +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_dither +wangdaye.com.geometricweather.R$string: int widget_multi_city +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_outline_box_expanded_padding +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_TopRightDifferentCornerSize +androidx.customview.R$dimen: int notification_large_icon_width +androidx.constraintlayout.widget.R$attr: int listChoiceBackgroundIndicator +com.jaredrummler.android.colorpicker.R$layout: int preference_list_fragment +androidx.core.R$dimen: int compat_button_inset_vertical_material +cyanogenmod.weatherservice.ServiceRequest: void reject(int) +cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String META_DATA +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceCategoryStyle +androidx.constraintlayout.widget.R$drawable: int abc_seekbar_thumb_material +com.bumptech.glide.R$drawable: int notification_bg_normal_pressed +com.google.android.material.R$attr: int chipStyle +okhttp3.internal.cache.DiskLruCache: void completeEdit(okhttp3.internal.cache.DiskLruCache$Editor,boolean) +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getThemePackageNameForComponent(java.lang.String) +okhttp3.TlsVersion: okhttp3.TlsVersion SSL_3_0 +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +retrofit2.http.OPTIONS: java.lang.String value() +okhttp3.internal.http2.Http2Connection: void pushDataLater(int,okio.BufferedSource,int,boolean) +com.google.android.material.R$styleable: int AppCompatTheme_tooltipForegroundColor +wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: DaoMaster$OpenHelper(android.content.Context,java.lang.String) +androidx.fragment.R$dimen: int notification_large_icon_height +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_positiveButtonText +wangdaye.com.geometricweather.R$attr: int contentPadding +okhttp3.logging.LoggingEventListener: void requestHeadersEnd(okhttp3.Call,okhttp3.Request) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String DAY +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_19 +androidx.constraintlayout.widget.R$drawable: int notification_template_icon_low_bg +cyanogenmod.library.R$id: R$id() +androidx.lifecycle.extensions.R$style: R$style() +cyanogenmod.app.ProfileManager: java.lang.String[] getProfileNames() +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.internal.util.AtomicThrowable error +androidx.work.ArrayCreatingInputMerger: ArrayCreatingInputMerger() +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleTextColor +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeFindDrawable +okhttp3.internal.http.RealInterceptorChain: int readTimeoutMillis() +androidx.appcompat.R$styleable: int ActionMode_subtitleTextStyle +okhttp3.internal.http2.Http2: byte TYPE_CONTINUATION +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_dropDownWidth +okio.Timeout: long deadlineNanoTime() +retrofit2.BuiltInConverters: BuiltInConverters() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_checked +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean cancelled +com.jaredrummler.android.colorpicker.ColorPickerView: int getBorderColor() io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.util.concurrent.locks.Lock lock -com.google.android.material.R$styleable: int[] PopupWindow -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void dispose() -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior: ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior() -wangdaye.com.geometricweather.R$attr: int dialogTheme -com.google.android.gms.common.api.internal.LifecycleCallback: com.google.android.gms.common.api.internal.LifecycleFragment getChimeraLifecycleFragmentImpl(com.google.android.gms.common.api.internal.LifecycleActivity) -com.turingtechnologies.materialscrollbar.R$id: int buttonPanel -com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a f -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar_PrimarySurface -androidx.appcompat.widget.ActionBarOverlayLayout: void setHasNonEmbeddedTabs(boolean) -com.google.android.material.R$attr: int deriveConstraintsFrom -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_SPEED -com.google.android.material.R$attr: int layout_constraintLeft_toLeftOf -cyanogenmod.providers.CMSettings$Secure$2: boolean validate(java.lang.String) -cyanogenmod.themes.ThemeChangeRequest$RequestType: ThemeChangeRequest$RequestType(java.lang.String,int) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_2 -com.google.android.material.R$attr: int flow_horizontalAlign -okhttp3.internal.http2.Http2Writer: okio.Buffer hpackBuffer -com.amap.api.location.CoordUtil: int convertToGcj(double[],double[]) -com.google.android.material.R$styleable: int NavigationView_itemIconPadding -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -com.google.android.material.R$string: int path_password_eye_mask_visible -androidx.fragment.app.DialogFragment -wangdaye.com.geometricweather.R$attr: int region_widthMoreThan -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Line2 -com.google.android.material.R$attr: int trackHeight -com.autonavi.aps.amapapi.model.AMapLocationServer: void a(boolean) -wangdaye.com.geometricweather.R$attr: int motionPathRotate -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_summaryOn -cyanogenmod.app.suggest.AppSuggestManager: android.content.Context mContext -wangdaye.com.geometricweather.db.entities.MinutelyEntity: boolean daylight -androidx.appcompat.R$drawable: int abc_btn_check_to_on_mtrl_015 -com.google.android.material.bottomnavigation.BottomNavigationPresenter$SavedState: android.os.Parcelable$Creator CREATOR -androidx.preference.R$color: int switch_thumb_disabled_material_dark -okio.Segment: void compact() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void dispose() -androidx.customview.R$id: int line1 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_internal_bg -androidx.preference.R$attr: int customNavigationLayout -wangdaye.com.geometricweather.R$id: int visible_removing_fragment_view_tag -androidx.appcompat.R$drawable: int notification_bg -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -io.reactivex.Observable: io.reactivex.Observable onErrorResumeNext(io.reactivex.functions.Function) -com.jaredrummler.android.colorpicker.R$id: int submenuarrow -com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_text -androidx.preference.R$styleable: int Toolbar_titleMargin -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date time -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_normal_pressed -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -androidx.lifecycle.ComputableLiveData: java.util.concurrent.atomic.AtomicBoolean mComputing -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getRainPrecipitation() -okhttp3.internal.cache2.Relay: okio.Buffer buffer -wangdaye.com.geometricweather.R$attr: int layout_goneMarginLeft -androidx.fragment.R$style: int Widget_Compat_NotificationActionContainer -androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context) -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_HOMESCREEN -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onProgressUpdateEnd(float) -androidx.appcompat.R$drawable: int abc_switch_thumb_material -androidx.preference.R$drawable: int preference_list_divider_material -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onComplete() -android.didikee.donate.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: int getChartBottom() -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onPause() -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -retrofit2.adapter.rxjava2.CallExecuteObservable -cyanogenmod.hardware.CMHardwareManager: boolean isSupported(int) -androidx.constraintlayout.motion.widget.MotionLayout: void setTransition(int) -wangdaye.com.geometricweather.R$string: int key_notification_hide_big_view -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: double Value -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun sun -retrofit2.converter.gson.GsonRequestBodyConverter -cyanogenmod.platform.Manifest -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$attr: int homeLayout -androidx.viewpager2.R$id: int accessibility_custom_action_23 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -androidx.hilt.R$anim: int fragment_close_enter -androidx.constraintlayout.widget.R$dimen: int abc_text_size_subhead_material -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: CNWeatherResult() -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBarLayout_android_layout_gravity -com.amap.api.fence.GeoFence: com.amap.api.location.DPoint getCenter() -androidx.constraintlayout.widget.R$id: int forever -androidx.appcompat.widget.AppCompatTextView: int getAutoSizeStepGranularity() -james.adaptiveicon.R$styleable: int MenuItem_android_enabled -androidx.preference.R$styleable: int AppCompatTheme_searchViewStyle -com.jaredrummler.android.colorpicker.R$attr: int backgroundStacked -com.google.android.material.R$dimen: int design_snackbar_min_width -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type BOTTOM -io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent valueOf(java.lang.String) -com.google.android.material.R$id: int action_image -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_gravity -okhttp3.ResponseBody: ResponseBody() -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: java.lang.String desc -com.bumptech.glide.R$dimen: int notification_top_pad -com.google.android.material.navigation.NavigationView: android.content.res.ColorStateList getItemTextColor() -org.greenrobot.greendao.AbstractDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -com.google.android.material.R$attr: int tabIconTintMode -okhttp3.Headers: java.util.Set names() -androidx.preference.DialogPreference -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: java.lang.Throwable val$ex -androidx.hilt.R$dimen: int compat_notification_large_icon_max_width -com.xw.repo.bubbleseekbar.R$color: int background_floating_material_dark -androidx.lifecycle.LiveData$1: androidx.lifecycle.LiveData this$0 -com.turingtechnologies.materialscrollbar.R$attr: int scrimBackground -com.google.android.material.R$styleable: int Constraint_flow_horizontalAlign -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -androidx.hilt.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -com.google.android.material.R$style: int Widget_MaterialComponents_CheckedTextView -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextAppearanceActive -io.reactivex.internal.disposables.EmptyDisposable: void dispose() -androidx.appcompat.view.menu.MenuPopupHelper: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -wangdaye.com.geometricweather.R$drawable: int navigation_empty_icon -wangdaye.com.geometricweather.R$drawable: int notif_temp_56 -androidx.preference.R$string: int abc_prepend_shortcut_label -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getNighttimeWeatherCode() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorAccent -wangdaye.com.geometricweather.R$attr: int actionBarWidgetTheme -com.jaredrummler.android.colorpicker.R$style: int Platform_AppCompat_Light -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemBackgroundRes() -io.reactivex.Observable: io.reactivex.Observable concatArray(io.reactivex.ObservableSource[]) -wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_icon_tint -okio.SegmentedByteString: byte[] toByteArray() -androidx.appcompat.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_homeAsUpIndicator -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath -androidx.fragment.R$attr: int ttcIndex -com.xw.repo.bubbleseekbar.R$id: int submenuarrow -wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_light -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCardForegroundColor() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setStatus(int) -com.google.android.material.R$styleable: int Layout_layout_constraintCircleAngle -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog -io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.Observer) -androidx.legacy.coreutils.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.R$layout: int design_navigation_item_subheader -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getDate() -androidx.vectordrawable.animated.R$dimen: int compat_notification_large_icon_max_height -james.adaptiveicon.R$styleable: int ActivityChooserView_initialActivityCount -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -okhttp3.internal.http2.Http2Connection: java.net.Socket socket -cyanogenmod.app.PartnerInterface: void setAirplaneModeEnabled(boolean) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -okhttp3.internal.connection.RealConnection: int successCount -androidx.coordinatorlayout.R$id: int start -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -com.amap.api.fence.GeoFenceClient: void pauseGeoFence() -androidx.preference.R$style: int Widget_AppCompat_ActionBar_Solid -androidx.lifecycle.LiveData$1 -retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: retrofit2.Call call -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_59 -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_constantSize -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -com.google.android.material.R$attr: int layout_goneMarginEnd -wangdaye.com.geometricweather.common.basic.models.weather.History: int getNighttimeTemperature() -com.google.android.material.R$dimen: int design_bottom_navigation_item_min_width -io.reactivex.Observable: io.reactivex.Observable ofType(java.lang.Class) +androidx.appcompat.R$dimen: int abc_config_prefDialogWidth +com.google.android.material.button.MaterialButtonToggleGroup: void setSelectionRequired(boolean) +okhttp3.Response$Builder: okhttp3.Request request +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircleAngle +androidx.work.R$id: int tag_accessibility_actions +androidx.viewpager.R$dimen: int compat_notification_large_icon_max_height +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 +androidx.constraintlayout.widget.R$attr: int layout_goneMarginTop +james.adaptiveicon.R$dimen: int abc_dialog_min_width_minor +okhttp3.internal.http2.Http2Reader: void readPriority(okhttp3.internal.http2.Http2Reader$Handler,int) +okhttp3.internal.platform.Platform: void configureSslSocketFactory(javax.net.ssl.SSLSocketFactory) +com.google.android.gms.internal.location.zzj: android.os.Parcelable$Creator CREATOR +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver +okhttp3.internal.http.RetryAndFollowUpInterceptor: RetryAndFollowUpInterceptor(okhttp3.OkHttpClient,boolean) +james.adaptiveicon.R$id: int action_bar_root +com.xw.repo.bubbleseekbar.R$attr: int showText +com.google.android.material.R$layout: int abc_list_menu_item_layout +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +androidx.hilt.R$id: int accessibility_custom_action_27 +okio.Okio$1: okio.Timeout timeout() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum +androidx.recyclerview.R$id: int tag_screen_reader_focusable +okhttp3.Cookie$Builder: java.lang.String value +androidx.customview.R$id: int notification_main_column_container +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean isEntityUpdateable() +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +androidx.core.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_popupWindowStyle +com.google.android.material.R$id: int confirm_button +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: int status +io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric +com.google.android.material.bottomnavigation.BottomNavigationItemView: com.google.android.material.badge.BadgeDrawable getBadge() +com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrimResource(int) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature +androidx.activity.R$styleable: int FontFamilyFont_android_fontWeight wangdaye.com.geometricweather.R$attr: int borderWidth -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low_normal -com.xw.repo.bubbleseekbar.R$drawable: int abc_tab_indicator_mtrl_alpha -androidx.vectordrawable.R$integer: R$integer() -com.google.android.material.datepicker.DateValidatorPointBackward -androidx.lifecycle.extensions.R$anim: int fragment_close_exit -androidx.appcompat.R$drawable: int notification_tile_bg -androidx.work.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getTempMax() -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_normalContainer -cyanogenmod.weather.WeatherLocation$1: java.lang.Object createFromParcel(android.os.Parcel) -com.google.gson.stream.JsonReader: boolean isLiteral(char) -androidx.work.R$styleable: int FontFamilyFont_android_fontWeight -androidx.appcompat.R$style: int Widget_AppCompat_Spinner_DropDown -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: retrofit2.Call $this_awaitResponse$inlined -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogTheme -com.bumptech.glide.integration.okhttp.R$id: int title -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: int rightIndex -retrofit2.Converter$Factory: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) -wangdaye.com.geometricweather.background.polling.work.worker.AsyncUpdateWorker: AsyncUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_AUTO_OUTDOOR_MODE_VALIDATOR -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_27 -com.amap.api.location.AMapLocation: void setCoordType(java.lang.String) -androidx.lifecycle.extensions.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: int UnitType -com.google.android.material.R$styleable: int Constraint_android_layout_marginStart -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getTitle() -androidx.work.R$id: int action_image -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Call delegate -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int CloudCover -com.jaredrummler.android.colorpicker.R$style: int Preference_DropDown -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_line -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_disabled -com.jaredrummler.android.colorpicker.R$styleable: int[] CoordinatorLayout_Layout -com.amap.api.location.DPoint: int hashCode() -android.didikee.donate.R$id: int beginning -cyanogenmod.externalviews.KeyguardExternalView: void onScreenTurnedOff() -james.adaptiveicon.R$layout: int notification_template_icon_group -androidx.constraintlayout.widget.R$dimen: int abc_button_inset_horizontal_material -org.greenrobot.greendao.DaoException: DaoException(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$drawable: int notification_action_background -okhttp3.Dispatcher: void finished(okhttp3.RealCall$AsyncCall) -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayWeekWidgetConfigActivity -okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date expires -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_second_track_color -androidx.legacy.coreutils.R$attr: int fontProviderQuery -com.turingtechnologies.materialscrollbar.R$id: int auto -com.google.android.material.bottomappbar.BottomAppBar: android.content.res.ColorStateList getBackgroundTint() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setDistrict(java.lang.String) -com.google.android.material.R$dimen: int design_bottom_sheet_modal_elevation -okhttp3.internal.http2.Http2Connection$1: Http2Connection$1(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okhttp3.internal.http2.ErrorCode) -james.adaptiveicon.R$styleable: int AppCompatTheme_searchViewStyle -wangdaye.com.geometricweather.R$styleable: int KeyPosition_keyPositionType -com.google.android.material.textfield.TextInputLayout: void setCounterTextColor(android.content.res.ColorStateList) -com.google.android.material.R$dimen: int abc_dialog_fixed_height_major -androidx.preference.R$attr: int actionBarSize -com.google.android.material.R$string: int error_icon_content_description -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_ASSIST_ACTION -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onComplete() -com.google.android.material.R$styleable: int Chip_iconEndPadding -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -androidx.core.R$styleable: int[] GradientColor -androidx.appcompat.R$styleable: int AppCompatTextView_fontVariationSettings -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayGammaCalibration -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_spanCount -androidx.constraintlayout.widget.R$attr: int percentX -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent -wangdaye.com.geometricweather.R$id: int below_section_mark -com.google.android.material.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: FitSystemBarSwipeRefreshLayout(android.content.Context,android.util.AttributeSet) -androidx.preference.R$styleable: int[] SwitchPreference -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontStyle -com.jaredrummler.android.colorpicker.R$attr: int lineHeight -androidx.cardview.R$color: int cardview_shadow_end_color -com.google.android.material.R$styleable: int AppCompatTextView_autoSizePresetSizes -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy UPPER_CAMEL_CASE -androidx.preference.R$style: int TextAppearance_AppCompat_Body1 -com.google.android.material.R$id: int buttonPanel -retrofit2.Response -com.turingtechnologies.materialscrollbar.R$attr: int navigationMode -androidx.vectordrawable.R$attr: R$attr() -com.xw.repo.bubbleseekbar.R$color: int abc_tint_spinner -james.adaptiveicon.R$styleable: int FontFamilyFont_font -com.google.android.material.R$styleable: int Slider_thumbColor -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderFetchStrategy -com.turingtechnologies.materialscrollbar.R$id: int save_non_transition_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_textAppearance -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit KN -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getDailyEntityList() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarWidgetTheme -com.google.android.material.R$string: int path_password_eye -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.Observer downstream -okhttp3.internal.cache.CacheInterceptor: boolean isContentSpecificHeader(java.lang.String) -com.google.android.material.appbar.CollapsingToolbarLayout: int getMaxLines() -okio.GzipSource: void updateCrc(okio.Buffer,long,long) -com.amap.api.fence.GeoFence: java.lang.String getCustomId() -okio.InflaterSource: okio.BufferedSource source -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: ExecutorScheduler$DelayedRunnable(java.lang.Runnable) -com.google.android.material.R$color: int mtrl_fab_icon_text_color_selector -wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean isEntityUpdateable() -com.turingtechnologies.materialscrollbar.R$styleable: int[] TabLayout +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: ObservableConcatMap$SourceObserver(io.reactivex.Observer,io.reactivex.functions.Function,int) +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMargin +androidx.appcompat.resources.R$styleable: int[] GradientColorItem +okhttp3.internal.http2.Http2Connection: void failConnection() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_RC4_128_SHA com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.R$drawable: int flag_hu -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_iconTintMode -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -com.xw.repo.bubbleseekbar.R$color: int abc_tint_seek_thumb -androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -android.didikee.donate.R$style: int TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language[] values() -wangdaye.com.geometricweather.R$id: int lastElement -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: AccuDailyResult$DailyForecasts$Night$Snow() -wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) -james.adaptiveicon.R$drawable: int tooltip_frame_light -androidx.hilt.R$styleable: int GradientColor_android_type -androidx.preference.R$dimen: int fastscroll_margin -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_RAMP_UP_TIME_VALIDATOR -okhttp3.internal.ws.RealWebSocket: boolean processNextFrame() -androidx.appcompat.widget.Toolbar$SavedState: android.os.Parcelable$Creator CREATOR -com.google.android.material.slider.BaseSlider: void setThumbRadius(int) -androidx.transition.R$styleable: int FontFamily_fontProviderQuery -androidx.vectordrawable.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.R$styleable: int Chip_chipIconSize -androidx.constraintlayout.motion.widget.MotionLayout: long getTransitionTimeMs() -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth -androidx.viewpager.R$styleable: int FontFamily_fontProviderPackage -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_disabled_material_light -androidx.preference.R$style: int Widget_AppCompat_Spinner -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -james.adaptiveicon.R$styleable: int SwitchCompat_thumbTintMode -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTemperature(int) -james.adaptiveicon.R$attr: int titleMarginTop -androidx.fragment.R$id: int async -androidx.work.impl.utils.futures.DirectExecutor: void execute(java.lang.Runnable) -com.xw.repo.bubbleseekbar.R$drawable: int notify_panel_notification_icon_bg -androidx.recyclerview.widget.RecyclerView: void setChildDrawingOrderCallback(androidx.recyclerview.widget.RecyclerView$ChildDrawingOrderCallback) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ImageButton -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -okhttp3.internal.http2.Http2Reader: void readPriority(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -androidx.appcompat.R$color: int foreground_material_light -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SEVERE_THUNDERSTORMS -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode CANCEL -com.turingtechnologies.materialscrollbar.R$integer: int mtrl_chip_anim_duration -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_LOW_POWER_VALIDATOR -cyanogenmod.profiles.RingModeSettings$1: cyanogenmod.profiles.RingModeSettings[] newArray(int) -androidx.preference.R$styleable: int StateListDrawable_android_exitFadeDuration -com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_content_include -cyanogenmod.app.BaseLiveLockManagerService: void enforceAccessPermission() -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog -androidx.appcompat.R$styleable: int[] AlertDialog -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.lang.Throwable error -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitation -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getRain() -android.didikee.donate.R$layout: int abc_search_dropdown_item_icons_2line -androidx.appcompat.R$style: int Widget_AppCompat_SeekBar_Discrete -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean getBrandInfo() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Slider -retrofit2.OkHttpCall: boolean executed -androidx.preference.R$styleable: int MenuItem_android_orderInCategory -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_alpha -okhttp3.MultipartBody: okhttp3.MediaType type() -androidx.loader.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme_Light -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginEnd -wangdaye.com.geometricweather.R$color: int tooltip_background_dark -wangdaye.com.geometricweather.R$string: int common_google_play_services_update_text -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_creator -com.bumptech.glide.R$styleable: int CoordinatorLayout_keylines -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColorHint -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -androidx.customview.R$styleable: int FontFamily_fontProviderAuthority -androidx.preference.R$layout: int abc_tooltip -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_default -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogStyle -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ws -wangdaye.com.geometricweather.R$attr: int checkedIconMargin -android.didikee.donate.R$styleable: int DrawerArrowToggle_spinBars -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_2_material -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_78 -com.google.android.gms.internal.common.zzq: zzq(com.google.android.gms.internal.common.zzo) -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_duration -james.adaptiveicon.R$attr: int measureWithLargestChild -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void dispose() -com.google.android.material.R$layout: int text_view_with_line_height_from_style -james.adaptiveicon.R$attr: int controlBackground -androidx.preference.R$styleable: int Toolbar_contentInsetLeft -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_show_motion_spec -james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.R$xml: R$xml() -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_top -com.google.android.material.R$styleable: int KeyTimeCycle_android_rotationX -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DialogWhenLarge -android.didikee.donate.R$attr: int dividerHorizontal -com.jaredrummler.android.colorpicker.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionMode -com.turingtechnologies.materialscrollbar.R$drawable: int notification_template_icon_bg -androidx.swiperefreshlayout.R$attr: int alpha -androidx.coordinatorlayout.R$id: int accessibility_custom_action_2 -androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat -com.amap.api.fence.PoiItem: java.lang.String getPoiType() -com.amap.api.location.AMapLocation: int s -retrofit2.RequestFactory$Builder: boolean gotQuery -android.didikee.donate.R$styleable: int ActionBar_backgroundStacked -com.google.android.material.chip.Chip: void setCloseIconTintResource(int) -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -okhttp3.CacheControl: boolean onlyIfCached -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onComplete() -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode ENHANCE_YOUR_CALM -com.turingtechnologies.materialscrollbar.R$attr: int floatingActionButtonStyle -io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.functions.Function,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_light -okio.Buffer: okio.Buffer copyTo(java.io.OutputStream,long,long) -com.google.android.material.R$xml: int standalone_badge_gravity_bottom_start -cyanogenmod.providers.CMSettings$Global: CMSettings$Global() -cyanogenmod.media.MediaRecorder$AudioSource: MediaRecorder$AudioSource() -com.google.gson.FieldNamingPolicy$6: FieldNamingPolicy$6(java.lang.String,int) -okio.SegmentPool: long MAX_SIZE -androidx.dynamicanimation.R$dimen: int notification_small_icon_background_padding -okhttp3.OkHttpClient$1: OkHttpClient$1() -com.google.android.material.R$layout: int custom_dialog -wangdaye.com.geometricweather.R$id: int widget_week_week_4 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getHeadDescription() -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_layoutManager -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int INSTALLING -okhttp3.internal.http2.Http2Connection$4 -com.jaredrummler.android.colorpicker.R$id: int right -retrofit2.ParameterHandler$Path: java.lang.reflect.Method method -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog -james.adaptiveicon.R$styleable: int Toolbar_title -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getAlarmThemePackageName() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: java.lang.String Unit -android.didikee.donate.R$integer: int abc_config_activityDefaultDur -com.bumptech.glide.R$dimen: R$dimen() -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_ON -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_textLocale -okhttp3.internal.ws.WebSocketWriter: boolean writerClosed -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: java.lang.String English -androidx.work.R$string: R$string() -com.turingtechnologies.materialscrollbar.R$attr: int titleTextColor -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_transitionPathRotate -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startX -com.google.android.material.R$drawable: int abc_ic_voice_search_api_material -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline1 -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.util.Date date -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_8 -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: HistoryEntityDao(org.greenrobot.greendao.internal.DaoConfig) -android.support.v4.os.IResultReceiver$Stub$Proxy: android.support.v4.os.IResultReceiver sDefaultImpl -com.xw.repo.bubbleseekbar.R$dimen: int compat_button_padding_horizontal_material -com.jaredrummler.android.colorpicker.R$anim: int abc_popup_exit -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_Solid -androidx.vectordrawable.animated.R$id: int accessibility_action_clickable_span -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_overlay -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: long serialVersionUID -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod getAlpnSelectedProtocol -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onComplete() -androidx.fragment.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.R$dimen: int mtrl_min_touch_target_size -james.adaptiveicon.R$id: int search_plate -androidx.constraintlayout.widget.R$attr: int telltales_velocityMode -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Counter_Overflow -com.google.android.material.button.MaterialButtonToggleGroup: int getCheckedButtonId() -wangdaye.com.geometricweather.R$drawable: int abc_seekbar_tick_mark_material -androidx.core.app.ComponentActivity: ComponentActivity() -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircle -io.reactivex.Observable: io.reactivex.Observable repeatWhen(io.reactivex.functions.Function) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WEATHER_CODE_MIN -wangdaye.com.geometricweather.R$layout: int item_about_library -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabView -wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_large_component -com.xw.repo.BubbleSeekBar: float getMax() -com.google.gson.stream.JsonScope: int EMPTY_ARRAY -com.google.android.material.R$styleable: int KeyAttribute_android_rotation -com.google.android.material.R$style: int Theme_MaterialComponents_Light -androidx.core.R$attr: R$attr() -okhttp3.internal.http2.Http2Writer: void applyAndAckSettings(okhttp3.internal.http2.Settings) -io.reactivex.internal.util.VolatileSizeArrayList: void clear() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: java.lang.String Unit -com.google.android.material.R$styleable: int Slider_android_value -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onComplete() -wangdaye.com.geometricweather.R$attr: int colorOnPrimarySurface -cyanogenmod.app.Profile: int mNotificationLightMode -com.google.android.material.chip.Chip: void setCloseIcon(android.graphics.drawable.Drawable) -com.bumptech.glide.integration.okhttp.R$id: int left -james.adaptiveicon.R$id: int search_bar -androidx.appcompat.R$layout: int abc_expanded_menu_layout -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherText -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework -androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -com.google.android.material.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -androidx.constraintlayout.widget.R$string: int abc_search_hint -okhttp3.internal.http2.Huffman: void buildTree() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getHeadIconType() -androidx.hilt.R$styleable: R$styleable() -androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_toId -androidx.preference.R$style: int TextAppearance_AppCompat_Display3 -androidx.preference.R$style: int Base_V26_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat -androidx.preference.R$styleable: int AppCompatTheme_dividerHorizontal -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs -com.google.android.material.R$styleable: int ButtonBarLayout_allowStacking -wangdaye.com.geometricweather.R$drawable: int widget_clock_day_vertical -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String toStr() -cyanogenmod.app.ILiveLockScreenManager: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeBackground -james.adaptiveicon.R$attr: int goIcon -com.google.android.material.R$attr: int cardViewStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_54 -com.bumptech.glide.Priority: com.bumptech.glide.Priority HIGH -com.google.android.material.R$layout: int text_view_with_line_height_from_appearance -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: boolean mObserving +cyanogenmod.hardware.CMHardwareManager: int FEATURE_SUNLIGHT_ENHANCEMENT +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode LIGHT +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: java.lang.String Name +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +androidx.cardview.R$styleable: int[] CardView +androidx.preference.R$styleable: int AppCompatTheme_alertDialogCenterButtons +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassDescription(java.lang.String) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_Alert +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_progress +android.didikee.donate.R$styleable: int AppCompatTextView_fontVariationSettings +wangdaye.com.geometricweather.R$layout: int abc_action_bar_up_container +wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity: ClockDayWeekWidgetConfigActivity() +androidx.vectordrawable.animated.R$style: R$style() +com.xw.repo.bubbleseekbar.R$dimen: int compat_notification_large_icon_max_height +io.reactivex.internal.util.NotificationLite$ErrorNotification: boolean equals(java.lang.Object) +okhttp3.Handshake: java.util.List peerCertificates() +android.didikee.donate.R$attr: int allowStacking +androidx.appcompat.widget.ActionMenuView: ActionMenuView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +okhttp3.HttpUrl$Builder: java.lang.String toString() +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPadding +wangdaye.com.geometricweather.R$drawable: int notif_temp_99 +okhttp3.CacheControl: boolean noStore() +wangdaye.com.geometricweather.R$string: int aqi_1 +androidx.constraintlayout.widget.R$color: int abc_tint_spinner +com.google.android.material.R$drawable: int abc_ic_star_black_16dp +androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontSpinner +androidx.constraintlayout.widget.R$attr: int autoSizePresetSizes +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +com.google.android.material.R$attr: int alertDialogCenterButtons +androidx.preference.R$color: int material_grey_850 +androidx.appcompat.R$string: int abc_menu_meta_shortcut_label +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void drain() +okhttp3.internal.io.FileSystem: void rename(java.io.File,java.io.File) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +cyanogenmod.app.CustomTile$ExpandedStyle: int NO_STYLE +androidx.lifecycle.LifecycleOwner +com.google.gson.stream.JsonWriter: java.lang.String separator +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_enterFadeDuration +cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_ACCESS_PRIVATE +com.google.android.material.R$styleable: int RecyclerView_fastScrollEnabled +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType GOOGLE +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean isDisposed() +androidx.dynamicanimation.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndContainer +retrofit2.http.Query: boolean encoded() +cyanogenmod.profiles.BrightnessSettings: void setValue(int) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_large_material +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long count +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_spanCount +androidx.preference.R$styleable: int Toolbar_contentInsetEndWithActions +okhttp3.internal.connection.RealConnection: int successCount +com.amap.api.location.AMapLocation: int LOCATION_SUCCESS +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_dialog +retrofit2.OkHttpCall: retrofit2.RequestFactory requestFactory +wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: void onCreate(org.greenrobot.greendao.database.Database) +androidx.customview.R$styleable: int FontFamilyFont_ttcIndex +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dropDownListViewStyle +com.google.android.material.R$styleable: int Constraint_layout_goneMarginTop +androidx.preference.R$style: int Base_Animation_AppCompat_Tooltip +android.didikee.donate.R$id: int action_bar_container +androidx.appcompat.R$id: int up +james.adaptiveicon.R$string: int abc_toolbar_collapse_description +com.google.android.material.textfield.TextInputLayout: int getBoxStrokeColor() +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void run() +androidx.viewpager2.R$id: int tag_accessibility_pane_title +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_fontFamily +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: int Degrees +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_4 +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_constantSize +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: java.lang.Object clone() +cyanogenmod.hardware.CMHardwareManager: boolean writePersistentString(java.lang.String,java.lang.String) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date sunriseTime +okio.SegmentPool: long byteCount +com.turingtechnologies.materialscrollbar.DragScrollBar: float getIndicatorOffset() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_tint +io.reactivex.internal.subscribers.StrictSubscriber: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String value +androidx.hilt.R$attr: int fontProviderQuery +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_29 +com.google.android.gms.common.api.internal.zabi +com.google.android.material.R$styleable: int MaterialButton_iconSize +wangdaye.com.geometricweather.R$id: int item_card_display_container +com.xw.repo.bubbleseekbar.R$style: int Platform_AppCompat +okio.SegmentedByteString: okio.ByteString sha256() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setAddress(java.lang.String) +com.google.android.material.R$id: int action_divider +com.turingtechnologies.materialscrollbar.R$id: int pin +androidx.appcompat.R$style: int Widget_AppCompat_Button_Borderless +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_displayOptions +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX) +james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedHeightMinor +com.google.android.material.textfield.TextInputLayout: void setError(java.lang.CharSequence) +androidx.constraintlayout.widget.R$id: int honorRequest +androidx.preference.R$color: int secondary_text_default_material_dark +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: int hashCode() +wangdaye.com.geometricweather.R$styleable: int KeyPosition_keyPositionType +androidx.appcompat.R$style: int TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.R$id: int item_about_library +com.google.android.material.R$attr: int extendMotionSpec +android.didikee.donate.R$attr: int actionMenuTextAppearance +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onError(java.lang.Throwable) +android.support.v4.app.INotificationSideChannel: void cancel(java.lang.String,int,java.lang.String) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: java.util.List history +androidx.constraintlayout.widget.R$dimen: int abc_text_size_subtitle_material_toolbar +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver(io.reactivex.CompletableObserver,io.reactivex.functions.Function,boolean) +okhttp3.Challenge: java.lang.String scheme +cyanogenmod.app.ProfileManager: int PROFILES_STATE_DISABLED +wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextTextColor +com.google.android.material.R$id: int action_context_bar +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: int sourceColor +androidx.preference.R$attr: int seekBarIncrement +okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory sslSocketFactory() +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_menu_header_material +wangdaye.com.geometricweather.R$drawable: int notif_temp_113 +cyanogenmod.themes.ThemeManager: void registerThemeChangeListener(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Indeterminate +androidx.constraintlayout.widget.ConstraintLayout: void setMinHeight(int) +com.google.android.material.R$attr: int layout_constraintWidth_max +io.reactivex.Observable: io.reactivex.Observable rangeLong(long,long) +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: long serialVersionUID +androidx.coordinatorlayout.R$id: int accessibility_custom_action_11 +androidx.cardview.widget.CardView: float getCardElevation() +com.autonavi.aps.amapapi.model.AMapLocationServer: void g(java.lang.String) +com.xw.repo.bubbleseekbar.R$attr: int overlapAnchor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust WindGust +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginRight +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long readKey(android.database.Cursor,int) +androidx.core.R$id: int accessibility_custom_action_31 +okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: void execute() +android.didikee.donate.R$drawable: int abc_ic_go_search_api_material +okhttp3.internal.http2.Header: java.lang.String TARGET_SCHEME_UTF8 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: void setTo(java.lang.String) +wangdaye.com.geometricweather.R$attr: int preferenceInformationStyle okhttp3.internal.http2.Hpack$Writer: void insertIntoDynamicTable(okhttp3.internal.http2.Header) -com.github.rahatarmanahmed.cpv.R$attr: int cpv_thickness -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart -androidx.preference.R$styleable: int AppCompatTheme_radioButtonStyle -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$RequestType mRequestType -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textFontWeight -com.amap.api.location.AMapLocationClient: void startAssistantLocation(android.webkit.WebView) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: int getStatus() -androidx.appcompat.R$id: int topPanel -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HAIL -com.google.android.material.slider.RangeSlider: void setValues(java.lang.Float[]) -okio.RealBufferedSource$1: int read(byte[],int,int) -com.amap.api.location.AMapLocationClientOption: AMapLocationClientOption(android.os.Parcel) -okio.Segment: okio.Segment sharedCopy() -com.google.android.material.R$attr: int searchIcon -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum Maximum -okhttp3.OkHttpClient: javax.net.SocketFactory socketFactory() -com.google.android.material.R$attr: int shapeAppearance -androidx.work.R$style: int TextAppearance_Compat_Notification_Time -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Caption -com.amap.api.location.AMapLocation: double a(com.amap.api.location.AMapLocation,double) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -androidx.viewpager.widget.PagerTabStrip: void setBackgroundResource(int) -wangdaye.com.geometricweather.R$attr: int closeIconStartPadding -androidx.preference.R$layout: int abc_action_mode_bar -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Menu -com.turingtechnologies.materialscrollbar.R$attr: int cardCornerRadius -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_singleChoiceItemLayout -cyanogenmod.themes.IThemeProcessingListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.appcompat.R$layout -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitationProbability() -androidx.vectordrawable.R$id -cyanogenmod.app.BaseLiveLockManagerService: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -wangdaye.com.geometricweather.R$layout: int widget_day_rectangle -okhttp3.EventListener: void connectionReleased(okhttp3.Call,okhttp3.Connection) +okhttp3.Cache: int requestCount() +com.google.android.material.R$styleable: int AppCompatTheme_actionModeFindDrawable +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: java.lang.Exception $this_suspendAndThrow$inlined +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_searchHintIcon +com.turingtechnologies.materialscrollbar.R$dimen: int abc_alert_dialog_button_bar_height +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerColor +com.google.android.material.R$attr: int checkedTextViewStyle +cyanogenmod.os.Concierge: cyanogenmod.os.Concierge$ParcelInfo receiveParcel(android.os.Parcel) +james.adaptiveicon.R$attr: int textColorSearchUrl +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_checkable +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List weather +androidx.preference.R$attr: int tintMode +androidx.appcompat.R$attr: int popupTheme +james.adaptiveicon.R$color: int primary_text_default_material_light +androidx.fragment.R$id: int accessibility_custom_action_18 +okhttp3.Dispatcher +okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part create(okhttp3.Headers,okhttp3.RequestBody) +james.adaptiveicon.R$attr: int spinnerStyle +androidx.appcompat.R$styleable: int SearchView_android_inputType +wangdaye.com.geometricweather.R$style: int Base_DialogWindowTitleBackground_AppCompat +cyanogenmod.power.PerformanceManager +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: int UnitType +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListPopupWindow +wangdaye.com.geometricweather.R$styleable: int Preference_isPreferenceVisible +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderQuery +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_textAppearance +com.google.android.material.R$color: int tooltip_background_dark +android.didikee.donate.R$attr: int subtitle +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onComplete() +wangdaye.com.geometricweather.R$drawable: int abc_item_background_holo_light +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer apparentTemperature +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_to_on_mtrl_015 +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month_labeled +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial Imperial +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String from +com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyle +androidx.coordinatorlayout.R$dimen: int notification_action_text_size +androidx.hilt.work.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Pm25 +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_precise_anchor_extra_offset +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_gradientRadius +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu +james.adaptiveicon.R$styleable: int AppCompatTheme_colorPrimaryDark +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_overflow_material +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getAqiIndex() +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_dither +com.google.android.material.R$styleable: int Constraint_flow_horizontalStyle com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingEnd -com.google.android.material.slider.Slider: void setTrackActiveTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: void setUnfold(boolean) -wangdaye.com.geometricweather.R$styleable: int RangeSlider_minSeparation -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void dispose() -wangdaye.com.geometricweather.R$attr: int checkedChip -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String ID -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_percent -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: int UnitType -com.google.android.material.R$drawable: int mtrl_ic_cancel -wangdaye.com.geometricweather.R$styleable: int Toolbar_menu -android.didikee.donate.R$bool: R$bool() -wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_to_on_mtrl_000 -retrofit2.ParameterHandler$1: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setStatus(int) -androidx.appcompat.R$attr: int fontProviderFetchStrategy -androidx.cardview.R$attr: int cardElevation -wangdaye.com.geometricweather.R$attr: int dotDiameter -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionBarOverlay -james.adaptiveicon.R$styleable: int ActionMode_height -androidx.lifecycle.ProcessLifecycleOwnerInitializer -wangdaye.com.geometricweather.R$styleable: int AlertDialog_listLayout -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTopCompat -androidx.hilt.lifecycle.R$styleable: int Fragment_android_id -androidx.drawerlayout.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.lang.String getPubTime() -cyanogenmod.profiles.RingModeSettings$1 -android.didikee.donate.R$dimen: int abc_dialog_title_divider_material -com.google.android.material.R$styleable: int Layout_layout_editor_absoluteX -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeFindDrawable -com.google.android.material.R$dimen: int design_navigation_elevation -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerColor -android.didikee.donate.R$attr: int backgroundSplit -wangdaye.com.geometricweather.R$layout: int design_bottom_navigation_item -wangdaye.com.geometricweather.R$layout: int dialog_resident_location -androidx.lifecycle.LifecycleRegistry: int getObserverCount() -com.google.android.material.R$attr: int actionModeShareDrawable -cyanogenmod.hardware.CMHardwareManager: boolean writePersistentString(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$attr: int startIconDrawable -okhttp3.internal.http.HttpCodec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) -io.reactivex.internal.util.NotificationLite: org.reactivestreams.Subscription getSubscription(java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_android_windowAnimationStyle -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getIconResEnd() -androidx.swiperefreshlayout.R$id: int tag_unhandled_key_listeners -com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusBottomStart() -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void drain() -com.google.android.gms.common.internal.zzc -com.jaredrummler.android.colorpicker.R$drawable: int abc_spinner_mtrl_am_alpha -wangdaye.com.geometricweather.R$string: int hide_bottom_view_on_scroll_behavior -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather weather -androidx.appcompat.widget.AppCompatSpinner: androidx.appcompat.widget.AppCompatSpinner$SpinnerPopup getInternalPopup() -com.xw.repo.bubbleseekbar.R$anim: int abc_tooltip_exit -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRealFeelTemperature -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -androidx.work.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Borderless_Colored -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_HOME_DOUBLE_TAP_ACTION_VALIDATOR -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.preference.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.R$id: int transparency_title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: double Value -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type AIR_QUALITY -wangdaye.com.geometricweather.R$styleable: int ActionMode_backgroundSplit -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontStyle -cyanogenmod.library.R -com.google.android.material.R$styleable: int[] RadialViewGroup -com.google.android.material.R$attr: int actionModeSelectAllDrawable -wangdaye.com.geometricweather.R$styleable: int Variant_region_widthMoreThan -com.google.gson.internal.JsonReaderInternalAccess: void promoteNameToValue(com.google.gson.stream.JsonReader) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogTheme -cyanogenmod.weather.CMWeatherManager: int lookupCity(java.lang.String,cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener) -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Long getId() -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getHelperText() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Inverse -androidx.preference.R$styleable: int AppCompatTheme_actionBarTheme -androidx.viewpager.widget.ViewPager: void setPageMarginDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit valueOf(java.lang.String) -okhttp3.internal.tls.DistinguishedNameParser: int pos +android.didikee.donate.R$attr: int backgroundStacked +okhttp3.internal.http2.Huffman: void buildTree() +com.amap.api.fence.GeoFenceClient: void addGeoFence(com.amap.api.location.DPoint,float,java.lang.String) +androidx.viewpager2.R$id: int accessibility_custom_action_8 +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationY +android.didikee.donate.R$styleable: int ActionBarLayout_android_layout_gravity +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onComplete() +com.turingtechnologies.materialscrollbar.MaterialScrollBar: MaterialScrollBar(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom +retrofit2.Call: void cancel() +androidx.preference.R$drawable: int abc_textfield_search_default_mtrl_alpha +com.google.gson.stream.JsonReader: boolean hasNext() +cyanogenmod.app.IProfileManager$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$id: int widget_day_center +com.google.android.material.R$styleable: int Chip_ensureMinTouchTargetSize +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionMode +okhttp3.Headers: okhttp3.Headers of(java.lang.String[]) +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getProgress +com.google.android.gms.location.places.PlaceReport: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$attr: int duration +okhttp3.internal.http2.Http2Connection$2: Http2Connection$2(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,long) +cyanogenmod.app.BaseLiveLockManagerService: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Spinner +wangdaye.com.geometricweather.R$string: int content_des_sunrise +okhttp3.Response: okhttp3.Response priorResponse +com.google.android.material.R$styleable: int TabLayout_tabTextColor +androidx.preference.R$styleable: int TextAppearance_android_shadowColor +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_elevation +com.bumptech.glide.R$id: int text2 +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void drain() +wangdaye.com.geometricweather.R$string: int settings_title_location_service +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: java.lang.String getCloudCoverText(int) +com.google.android.material.R$attr: int liftOnScrollTargetViewId +james.adaptiveicon.R$id: int chronometer +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier +androidx.preference.R$drawable: int abc_ratingbar_small_material +com.google.android.material.R$attr: int fastScrollEnabled +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitationProbability() +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_title +wangdaye.com.geometricweather.R$attr: int motionTarget +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sNonNegativeIntegerValidator +wangdaye.com.geometricweather.R$id: int notification_big_icon_5 +androidx.appcompat.R$attr: int buttonBarPositiveButtonStyle +com.google.android.material.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: AccuCurrentResult$PrecipitationSummary$Past18Hours() +cyanogenmod.app.BaseLiveLockManagerService$1: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +io.reactivex.internal.subscriptions.SubscriptionArbiter: void drainLoop() +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: java.lang.Integer direction +androidx.fragment.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: java.lang.String Unit +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.preference.R$id: R$id() +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_summaryOff +wangdaye.com.geometricweather.R$string: int feedback_not_yet_location +androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowRadius +androidx.preference.Preference$BaseSavedState +android.didikee.donate.R$color: int dim_foreground_material_light +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: long serialVersionUID +androidx.fragment.R$layout: int notification_template_custom_big +androidx.appcompat.resources.R$dimen: int notification_small_icon_size_as_large +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_layout +okhttp3.internal.cache2.Relay: boolean isClosed() +androidx.appcompat.R$styleable: int AppCompatTheme_windowActionBar +androidx.preference.R$styleable: int Preference_android_selectable +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: double gust +com.turingtechnologies.materialscrollbar.R$id: int action_bar_root +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_only_start_selected +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_arrowShaftLength +cyanogenmod.app.ProfileGroup$1: cyanogenmod.app.ProfileGroup createFromParcel(android.os.Parcel) +okhttp3.internal.http2.Hpack$Writer: int maxDynamicTableByteCount +com.google.android.material.R$attr: int textEndPadding +com.google.android.material.R$id: int fill +wangdaye.com.geometricweather.R$string: int abc_action_bar_home_description +androidx.appcompat.R$id: int accessibility_custom_action_24 +james.adaptiveicon.R$color: int material_blue_grey_800 +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_weight +james.adaptiveicon.R$styleable: int[] ActionBarLayout +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onPause() +androidx.fragment.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_transformPivotY +cyanogenmod.externalviews.ExternalView$5: cyanogenmod.externalviews.ExternalView this$0 +androidx.lifecycle.SavedStateHandleController: java.lang.String TAG_SAVED_STATE_HANDLE_CONTROLLER +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_40 +androidx.appcompat.R$styleable: int View_android_theme +androidx.preference.R$string: int abc_shareactionprovider_share_with +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar +com.jaredrummler.android.colorpicker.R$layout: int select_dialog_multichoice_material +androidx.preference.R$styleable: int MultiSelectListPreference_android_entries +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitationProbability +androidx.appcompat.R$color: int dim_foreground_disabled_material_light +androidx.preference.R$styleable: int Toolbar_collapseContentDescription +androidx.hilt.lifecycle.R$styleable: int FragmentContainerView_android_name +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setPivotX(float) +com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$dimen: int tooltip_y_offset_non_touch +androidx.constraintlayout.widget.R$layout: int select_dialog_multichoice_material +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: MpscLinkedQueue$LinkedQueueNode(java.lang.Object) +androidx.vectordrawable.R$id: int tag_screen_reader_focusable +com.google.android.material.R$style: int Widget_Design_NavigationView +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabText +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +com.turingtechnologies.materialscrollbar.R$styleable: int[] ViewBackgroundHelper +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_103 +com.amap.api.fence.GeoFence: int ERROR_CODE_FAILURE_CONNECTION +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionBarOverlay +com.xw.repo.bubbleseekbar.R$dimen: int abc_search_view_preferred_height +wangdaye.com.geometricweather.R$string: int key_widget_clock_day_week +androidx.appcompat.resources.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String unitId +wangdaye.com.geometricweather.background.service.CMWeatherProviderService: CMWeatherProviderService() +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon +androidx.viewpager2.R$attr: int fontProviderAuthority +androidx.legacy.coreutils.R$dimen: int notification_content_margin_start +androidx.appcompat.R$id: int accessibility_custom_action_28 +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String k +okhttp3.internal.http1.Http1Codec$ChunkedSource: okhttp3.internal.http1.Http1Codec this$0 +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitleTextColor +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth +wangdaye.com.geometricweather.R$attr: int itemSpacing +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType COLOR_TYPE +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void startFirstTimeout(io.reactivex.ObservableSource) +com.google.android.material.R$string: int mtrl_picker_invalid_range +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogPreferredPadding +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Today +com.google.android.material.R$styleable: int ConstraintSet_drawPath +wangdaye.com.geometricweather.R$id: int jumpToEnd +com.xw.repo.bubbleseekbar.R$color: int highlighted_text_material_light +androidx.constraintlayout.widget.R$attr: int layout_constraintEnd_toStartOf +com.google.android.material.R$style: int Platform_MaterialComponents_Light_Dialog +com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String FLAVOR +com.google.android.material.R$styleable: int Constraint_android_rotationX +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moonrise_moonset +com.google.android.material.R$attr: int drawableBottomCompat +cyanogenmod.app.StatusBarPanelCustomTile: android.os.UserHandle user +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getThunderstorm() +wangdaye.com.geometricweather.R$string: int common_signin_button_text_long +com.google.android.material.R$dimen: int abc_text_size_display_1_material +okio.BufferedSource: java.lang.String readUtf8() +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_brightness +com.xw.repo.bubbleseekbar.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$layout: int cpv_preference_square_large +james.adaptiveicon.R$styleable: int[] ViewStubCompat +com.amap.api.location.DPoint$1 +wangdaye.com.geometricweather.R$dimen: int design_navigation_elevation +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getUnitId() +com.turingtechnologies.materialscrollbar.R$attr: int tickMarkTintMode +com.google.android.material.R$styleable: int Constraint_transitionPathRotate +androidx.lifecycle.LiveData$ObserverWrapper: void activeStateChanged(boolean) +androidx.preference.R$styleable: int Toolbar_subtitleTextAppearance +androidx.preference.R$attr: int titleMarginEnd +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.util.List value +okhttp3.Response$Builder: void checkPriorResponse(okhttp3.Response) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setZh_TW(java.lang.String) +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableStartCompat +com.google.android.material.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +wangdaye.com.geometricweather.R$color: int colorPrimaryDark +androidx.appcompat.widget.Toolbar: void setLogoDescription(java.lang.CharSequence) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelMenuListTheme +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9 +androidx.appcompat.R$string: int abc_searchview_description_query +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf +cyanogenmod.app.ProfileGroup$1: cyanogenmod.app.ProfileGroup[] newArray(int) +cyanogenmod.providers.CMSettings$System: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_48dp +androidx.preference.R$styleable: int SeekBarPreference_showSeekBarValue +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.LocationEntityDao locationEntityDao +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableStart +androidx.appcompat.R$attr: int toolbarStyle +wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean hasKey(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_rippleColor +android.didikee.donate.R$drawable: int abc_list_divider_mtrl_alpha +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer getCloudCover() +com.google.android.material.R$attr: int colorOnError +okhttp3.Address: okhttp3.CertificatePinner certificatePinner() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +androidx.appcompat.R$attr: R$attr() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.entities.WeatherEntity readEntity(android.database.Cursor,int) +com.google.android.material.R$id: int material_clock_period_pm_button +androidx.appcompat.R$integer: int cancel_button_image_alpha +androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat +okhttp3.internal.http2.ErrorCode: ErrorCode(java.lang.String,int,int) +androidx.cardview.R$styleable: int CardView_cardElevation +androidx.constraintlayout.widget.R$attr: int pathMotionArc +okhttp3.MultipartBody$Builder: okhttp3.MediaType type +androidx.appcompat.R$attr: int font +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorPrimary +com.google.android.material.R$styleable: int TextInputLayout_endIconContentDescription +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: androidx.lifecycle.LifecycleOwner mLifecycle +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Title +com.google.android.material.R$styleable: int AppCompatTextView_android_textAppearance +com.google.android.gms.base.R$color: int common_google_signin_btn_tint +wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_percent +wangdaye.com.geometricweather.R$id: int date_picker_actions +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_size +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorAccent +com.google.android.material.R$style: int Widget_AppCompat_DrawerArrowToggle +androidx.constraintlayout.widget.R$attr: int actionLayout +com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextTextAppearance +androidx.viewpager2.R$styleable: int GradientColorItem_android_offset +com.google.android.material.R$styleable: int[] ViewBackgroundHelper +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_liftOnScrollTargetViewId +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_collapsible +com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_item_material +com.turingtechnologies.materialscrollbar.R$attr: int behavior_overlapTop +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dark +android.didikee.donate.R$attr: int thumbTintMode +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_setDefaultLiveLockScreen io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: io.reactivex.internal.disposables.SequentialDisposable serial -androidx.lifecycle.extensions.R$layout -com.amap.api.fence.GeoFence: android.app.PendingIntent d -android.didikee.donate.R$styleable: int MenuGroup_android_visible -androidx.fragment.R$id: int dialog_button -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken[] values() -androidx.preference.R$color: int abc_tint_btn_checkable -androidx.preference.R$styleable: int[] FontFamilyFont -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void pushPromise(int,int,java.util.List) -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_addNotificationGroup -cyanogenmod.app.IPartnerInterface$Stub: cyanogenmod.app.IPartnerInterface asInterface(android.os.IBinder) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -wangdaye.com.geometricweather.R$attr: int itemIconSize -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float relativeHumidity -com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_alpha -androidx.hilt.lifecycle.R$integer: R$integer() -okhttp3.HttpUrl: int port() -androidx.appcompat.R$styleable: int[] ActionMenuView -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconSize -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_NAVIGATION_BAR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean yesterday -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeChangeRequest$RequestType getLastThemeChangeRequestType() -android.didikee.donate.R$styleable: int ActionBar_contentInsetRight -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense -okhttp3.ConnectionSpec$Builder -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getTempMin() -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -wangdaye.com.geometricweather.R$style: int TestThemeWithLineHeightDisabled -io.reactivex.Observable: io.reactivex.Observable skipLast(int) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean isDisposed() -cyanogenmod.providers.CMSettings$Global: java.lang.String[] LEGACY_GLOBAL_SETTINGS -com.jaredrummler.android.colorpicker.ColorPickerView: void setOnColorChangedListener(com.jaredrummler.android.colorpicker.ColorPickerView$OnColorChangedListener) -cyanogenmod.platform.R$bool -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -com.amap.api.fence.GeoFence: float getMaxDis2Center() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: AccuCurrentResult$RealFeelTemperature$Metric() -com.google.android.material.appbar.AppBarLayout: void setExpanded(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_visible -io.reactivex.Observable: io.reactivex.Observable startWith(java.lang.Object) -android.support.v4.os.IResultReceiver: void send(int,android.os.Bundle) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf -okhttp3.MultipartBody: void writeTo(okio.BufferedSink) -wangdaye.com.geometricweather.R$attr: int chipMinTouchTargetSize -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_searchViewStyle -androidx.drawerlayout.R$drawable: int notification_action_background -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -com.xw.repo.bubbleseekbar.R$styleable: int[] ViewBackgroundHelper -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List wuran -androidx.appcompat.widget.AppCompatSpinner: void setBackgroundResource(int) -com.google.android.material.R$attr: int materialCalendarHeaderCancelButton -io.reactivex.observers.TestObserver$EmptyObserver -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$id: int mtrl_calendar_selection_frame -androidx.transition.R$style: int TextAppearance_Compat_Notification_Time -okhttp3.HttpUrl: boolean percentEncoded(java.lang.String,int,int) -android.didikee.donate.R$styleable: int AppCompatTheme_colorControlActivated -cyanogenmod.app.LiveLockScreenManager: java.lang.String TAG -androidx.constraintlayout.widget.R$style: int Theme_AppCompat -com.google.android.material.R$attr: int maxWidth -james.adaptiveicon.R$dimen: int abc_text_size_caption_material -james.adaptiveicon.R$attr: int dividerVertical -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: void run() -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String treeDescription -android.didikee.donate.R$layout: int notification_template_part_time -com.google.android.material.R$styleable: int Layout_layout_constraintHeight_max -cyanogenmod.weather.WeatherLocation: java.lang.String mCountry -androidx.preference.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -androidx.appcompat.R$styleable: int AppCompatTheme_editTextStyle -wangdaye.com.geometricweather.R$styleable: int KeyCycle_transitionPathRotate -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String BOOTANIMATION_THUMBNAIL -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabText -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_searchHintIcon -com.google.android.material.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: double Value -androidx.lifecycle.extensions.R$id: int tag_screen_reader_focusable -james.adaptiveicon.R$drawable: int abc_action_bar_item_background_material -androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -wangdaye.com.geometricweather.R$string: int wind_3 -androidx.viewpager.widget.ViewPager$SavedState: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_tileMode -androidx.preference.R$style: int Base_Widget_AppCompat_Spinner_Underlined -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments -wangdaye.com.geometricweather.R$attr: int dayInvalidStyle -retrofit2.CallAdapter$Factory: CallAdapter$Factory() -io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,boolean) -com.google.android.material.internal.FlowLayout: void setLineSpacing(int) -com.google.android.material.R$styleable: int MaterialCalendarItem_itemShapeAppearance -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_transitionPathRotate -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Body2 -com.xw.repo.bubbleseekbar.R$attr: int bsb_touch_to_seek -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_card_spacing -androidx.lifecycle.livedata.R: R() -wangdaye.com.geometricweather.R$attr: int itemHorizontalTranslationEnabled -cyanogenmod.providers.WeatherContract$WeatherColumns: WeatherContract$WeatherColumns() +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removeAllEncodedQueryParameters(java.lang.String) +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol j +com.google.android.material.R$color: int mtrl_fab_ripple_color +cyanogenmod.app.CustomTile$ExpandedStyle$1 +androidx.coordinatorlayout.R$styleable: int GradientColor_android_startColor +com.amap.api.fence.GeoFence: GeoFence(android.os.Parcel) +androidx.preference.R$layout: int notification_template_part_time +androidx.constraintlayout.widget.R$id: int title +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$dimen: int compat_notification_large_icon_max_height +io.reactivex.internal.subscriptions.BasicQueueSubscription: BasicQueueSubscription() +james.adaptiveicon.R$styleable: int SearchView_queryHint +wangdaye.com.geometricweather.R$attr: int actionBarTabTextStyle +com.jaredrummler.android.colorpicker.R$attr: int actionModeSplitBackground +okhttp3.EventListener: void requestBodyEnd(okhttp3.Call,long) +com.google.android.material.R$string: int mtrl_picker_text_input_date_range_start_hint +com.turingtechnologies.materialscrollbar.R$bool: int abc_config_actionMenuItemAllCaps +james.adaptiveicon.R$style: int Widget_AppCompat_Button_Colored +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getContent() +com.amap.api.location.AMapLocation$1 +android.didikee.donate.R$style: int Theme_AppCompat_DayNight +androidx.appcompat.R$attr: int tintMode +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabText +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderCerts +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +cyanogenmod.weatherservice.WeatherProviderService: android.os.Handler access$000(cyanogenmod.weatherservice.WeatherProviderService) +cyanogenmod.hardware.CMHardwareManager: int getDisplayGammaCalibrationMax() +wangdaye.com.geometricweather.R$attr: int cpv_colorPresets +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: boolean isDisposed() +androidx.constraintlayout.widget.R$id: int easeOut +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: int Age +androidx.constraintlayout.utils.widget.ImageFilterView: float getSaturation() +androidx.appcompat.R$attr: int dropDownListViewStyle +okhttp3.internal.connection.RouteException: void addConnectException(java.io.IOException) +okhttp3.Challenge: java.nio.charset.Charset charset() +androidx.work.R$drawable: int notification_bg_normal +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_baselineAligned +androidx.preference.R$styleable: int Preference_singleLineTitle +okhttp3.internal.connection.StreamAllocation$StreamAllocationReference: StreamAllocation$StreamAllocationReference(okhttp3.internal.connection.StreamAllocation,java.lang.Object) +io.reactivex.internal.util.ExceptionHelper$Termination: java.lang.Throwable fillInStackTrace() +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayWeekWidgetConfigActivity +androidx.transition.R$styleable: int[] ColorStateListItem +cyanogenmod.themes.IThemeService$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.R$id: int autoCompleteToStart +androidx.constraintlayout.widget.R$styleable: int[] ViewBackgroundHelper +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.R$xml: int standalone_badge_offset +androidx.appcompat.R$styleable: int AppCompatTheme_activityChooserViewStyle +android.didikee.donate.R$styleable: int ActionBar_icon +android.didikee.donate.R$styleable: int MenuView_android_itemIconDisabledAlpha +okio.BufferedSink: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: long serialVersionUID +com.google.android.material.R$attr: int dragThreshold +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button +com.xw.repo.bubbleseekbar.R$styleable: int[] Toolbar +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lat +okhttp3.ConnectionSpec: boolean tls +okhttp3.internal.http2.Http2Connection$Listener: void onStream(okhttp3.internal.http2.Http2Stream) +wangdaye.com.geometricweather.R$layout: int preference_list_fragment +com.turingtechnologies.materialscrollbar.R$layout: int abc_search_dropdown_item_icons_2line +cyanogenmod.app.Profile: int mDozeMode +com.xw.repo.bubbleseekbar.R$attr: int colorControlHighlight +android.didikee.donate.R$attr: int thumbTextPadding +com.xw.repo.bubbleseekbar.R$dimen: int disabled_alpha_material_dark +com.google.android.material.R$styleable: int[] ActionMode +com.google.android.material.internal.NavigationMenuItemView: void setHorizontalPadding(int) +com.jaredrummler.android.colorpicker.R$string: int abc_menu_meta_shortcut_label +com.google.android.gms.common.api.Scope +com.google.android.material.R$dimen: int tooltip_corner_radius +wangdaye.com.geometricweather.R$drawable: int notif_temp_88 +com.jaredrummler.android.colorpicker.R$attr: int actionBarItemBackground +com.bumptech.glide.R$id: int left +wangdaye.com.geometricweather.R$drawable: int notif_temp_115 +com.bumptech.glide.integration.okhttp.R$layout: int notification_template_icon_group +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$attr: int bottomSheetStyle +com.google.android.material.R$integer +androidx.viewpager.R$styleable: int[] GradientColor +com.xw.repo.bubbleseekbar.R$layout: int support_simple_spinner_dropdown_item +com.google.android.material.internal.FlowLayout: int getRowCount() +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startY +com.google.android.material.R$attr: int errorEnabled +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Medium +wangdaye.com.geometricweather.R$attr: int cpv_showOldColor +wangdaye.com.geometricweather.R$color: int abc_tint_spinner +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: java.lang.String desc +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult +wangdaye.com.geometricweather.R$string: int content_des_m3 +wangdaye.com.geometricweather.R$dimen: int abc_progress_bar_height_material +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_padding_start_material +okhttp3.internal.http2.Header: okio.ByteString value +androidx.core.R$id: int accessibility_custom_action_5 +androidx.viewpager2.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context,android.util.AttributeSet,int) +com.bumptech.glide.R$id: int right +androidx.preference.R$styleable: int SwitchCompat_switchMinWidth +android.didikee.donate.R$attr: int listChoiceBackgroundIndicator +com.xw.repo.bubbleseekbar.R$attr: int buttonBarNegativeButtonStyle +com.google.android.material.R$style: int Base_V28_Theme_AppCompat +android.didikee.donate.R$drawable: int abc_list_focused_holo +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setThunderstormPrecipitation(java.lang.Float) +androidx.customview.R$attr: int fontProviderPackage +cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String access$200() +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Medium +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: FlowableCreate$SerializedEmitter(io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter) +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SearchView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum Minimum +okhttp3.internal.connection.RouteSelector: RouteSelector(okhttp3.Address,okhttp3.internal.connection.RouteDatabase,okhttp3.Call,okhttp3.EventListener) +androidx.appcompat.widget.AppCompatButton: android.content.res.ColorStateList getSupportBackgroundTintList() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelBackground +com.amap.api.location.APSService: android.os.IBinder onBind(android.content.Intent) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitationDuration +com.google.android.material.circularreveal.CircularRevealFrameLayout +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_fontFamily +wangdaye.com.geometricweather.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +androidx.appcompat.R$styleable: int CompoundButton_android_button +cyanogenmod.providers.CMSettings$System$2 +androidx.dynamicanimation.R$dimen: int notification_content_margin_start +androidx.transition.R$integer: R$integer() +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_Main +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: java.lang.String Unit +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +androidx.constraintlayout.widget.R$attr: int firstBaselineToTopHeight +com.jaredrummler.android.colorpicker.R$attr: int barLength +james.adaptiveicon.R$style: R$style() +com.google.android.material.R$styleable +cyanogenmod.externalviews.KeyguardExternalViewProviderService: int onStartCommand(android.content.Intent,int,int) +com.bumptech.glide.MemoryCategory: float getMultiplier() +androidx.swiperefreshlayout.R$layout +android.didikee.donate.R$color: int ripple_material_dark +androidx.preference.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setPageCount(int) +androidx.work.R$id: int accessibility_custom_action_25 +androidx.preference.R$styleable: int AppCompatTextView_android_textAppearance +com.google.android.material.chip.ChipGroup: int getChipSpacingVertical() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap +retrofit2.ParameterHandler$QueryName: void apply(retrofit2.RequestBuilder,java.lang.Object) +wangdaye.com.geometricweather.R$animator: int weather_sleet_1 +android.didikee.donate.R$styleable: int View_android_theme +com.google.android.material.R$string: int abc_menu_function_shortcut_label +cyanogenmod.externalviews.KeyguardExternalView$11: void run() +retrofit2.converter.gson.GsonRequestBodyConverter: GsonRequestBodyConverter(com.google.gson.Gson,com.google.gson.TypeAdapter) +androidx.work.R$drawable: int notification_template_icon_bg +okhttp3.internal.platform.Platform: java.util.List alpnProtocolNames(java.util.List) +androidx.viewpager.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$id: int month_title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX +androidx.preference.R$styleable: int SwitchPreferenceCompat_switchTextOn +androidx.hilt.work.R$drawable: int notification_template_icon_low_bg +androidx.preference.R$styleable: int AppCompatTheme_dialogTheme +androidx.recyclerview.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary +cyanogenmod.app.Profile$TriggerType +com.google.android.material.R$string: int fab_transformation_sheet_behavior +com.google.android.material.R$dimen: int abc_button_inset_horizontal_material +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_anchor +com.google.android.material.R$id: int sawtooth +androidx.vectordrawable.R$styleable: int GradientColor_android_startColor +androidx.preference.R$styleable: int AppCompatTheme_searchViewStyle +wangdaye.com.geometricweather.R$styleable: int Preference_selectable +okhttp3.Handshake: int hashCode() +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry: MfEphemerisResult$Geometry() +androidx.dynamicanimation.R$integer +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableEnd +wangdaye.com.geometricweather.R$id: int activity_weather_daily_container +androidx.loader.R$styleable: int FontFamily_fontProviderCerts +com.bumptech.glide.integration.okhttp.R$id: int notification_main_column_container +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List probabilityForecast +androidx.customview.R$style: int Widget_Compat_NotificationActionText +com.google.android.material.R$id: int mtrl_calendar_year_selector_frame +com.xw.repo.bubbleseekbar.R$color: int error_color_material_dark +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_fontFamily +cyanogenmod.themes.ThemeManager: void addClient(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +wangdaye.com.geometricweather.R$id: int dialog_time_setter_done +androidx.recyclerview.R$color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric +androidx.preference.R$dimen: int abc_text_size_display_3_material +com.xw.repo.bubbleseekbar.R$id: int multiply +com.google.android.material.R$attr: int chipIconEnabled +androidx.activity.R$id: int accessibility_action_clickable_span +wangdaye.com.geometricweather.weather.apis.CNWeatherApi +androidx.appcompat.widget.LinearLayoutCompat: int getShowDividers() +retrofit2.Utils: java.lang.reflect.Type getGenericSupertype(java.lang.reflect.Type,java.lang.Class,java.lang.Class) +com.jaredrummler.android.colorpicker.R$attr: int numericModifiers +androidx.viewpager.widget.ViewPager: androidx.viewpager.widget.PagerAdapter getAdapter() +com.google.android.material.R$style: int Base_V26_Widget_AppCompat_Toolbar +okhttp3.CertificatePinner$Pin: okio.ByteString hash +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial Imperial +androidx.preference.R$styleable: int ActionBar_height +androidx.appcompat.R$layout: int notification_template_part_time +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: android.os.IBinder mRemote +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar_Indicator +com.xw.repo.bubbleseekbar.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +com.xw.repo.bubbleseekbar.R$attr: int titleTextColor +androidx.dynamicanimation.R$layout: int notification_action +com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationY(float) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Headline +androidx.hilt.lifecycle.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: AccuCurrentResult$ApparentTemperature() +okhttp3.internal.http2.Hpack$Reader: okio.ByteString readByteString() +com.google.android.material.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +androidx.preference.R$styleable: int GradientColor_android_type +io.reactivex.internal.observers.BlockingObserver: void dispose() +androidx.core.R$styleable: int FontFamily_fontProviderPackage +androidx.preference.R$attr: int actionDropDownStyle +wangdaye.com.geometricweather.R$string: int phase_waning_gibbous +cyanogenmod.app.ICMStatusBarManager: void unregisterListener(cyanogenmod.app.ICustomTileListener,int) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onError(java.lang.Throwable) +androidx.lifecycle.LiveData$LifecycleBoundObserver +wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX +retrofit2.Response: okhttp3.Response raw() +androidx.constraintlayout.widget.R$attr: int textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: ObservableFlatMapSingle$FlatMapSingleObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +com.turingtechnologies.materialscrollbar.R$integer: int mtrl_btn_anim_duration_ms +wangdaye.com.geometricweather.R$id: int month_navigation_bar +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: boolean isValid() +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getAlertList() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio +androidx.preference.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_go_search_api_material +com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_id +com.xw.repo.bubbleseekbar.R$attr: int color +androidx.core.widget.NestedScrollView: void setNestedScrollingEnabled(boolean) +wangdaye.com.geometricweather.R$color: int mtrl_btn_stroke_color_selector +com.bumptech.glide.R$id: int tag_unhandled_key_event_manager +okhttp3.Call: okhttp3.Response execute() +androidx.coordinatorlayout.R$attr: int fontStyle +wangdaye.com.geometricweather.R$styleable: int Constraint_visibilityMode +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256 +com.google.android.material.R$attr: int chipIconTint +okhttp3.internal.http.HttpDate: HttpDate() +com.bumptech.glide.Priority: com.bumptech.glide.Priority valueOf(java.lang.String) +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter +androidx.drawerlayout.R$dimen: int compat_control_corner_material +androidx.preference.R$attr: int switchMinWidth +wangdaye.com.geometricweather.R$attr: int statusBarBackground +androidx.hilt.lifecycle.R$id: int italic +android.didikee.donate.R$id: int search_voice_btn +com.google.android.material.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void createCustomTileWithTag(java.lang.String,java.lang.String,java.lang.String,int,cyanogenmod.app.CustomTile,int[],int) +com.google.android.material.R$dimen: int mtrl_snackbar_padding_horizontal +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List dailyEntityList +cyanogenmod.providers.CMSettings$NameValueCache: android.content.IContentProvider lazyGetProvider(android.content.ContentResolver) +com.google.android.material.R$anim +com.turingtechnologies.materialscrollbar.R$attr: int itemIconPadding +okio.Buffer$2: java.lang.String toString() +org.greenrobot.greendao.AbstractDao: void updateInTx(java.lang.Iterable) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +okhttp3.internal.io.FileSystem: void deleteContents(java.io.File) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: java.util.List alerts +androidx.work.R$bool: int enable_system_alarm_service_default +retrofit2.http.GET +com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a c +com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy APPEND +com.turingtechnologies.materialscrollbar.R$attr: int itemIconTint +com.google.android.material.R$dimen: int mtrl_btn_text_btn_icon_padding +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstHorizontalBias +okhttp3.internal.platform.Jdk9Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableBottom +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimAlpha(int) +wangdaye.com.geometricweather.R$dimen: int large_title_text_size +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_toolbarStyle +com.amap.api.fence.GeoFence: java.lang.String b okhttp3.internal.http2.Http2: byte TYPE_HEADERS -com.google.android.material.R$style: int Base_V23_Theme_AppCompat_Light -androidx.preference.R$styleable: int[] Spinner -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction Direction -com.google.android.material.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -androidx.customview.view.AbsSavedState -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_transitionEasing -androidx.constraintlayout.widget.R$color: int material_blue_grey_800 -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.drawerlayout.widget.DrawerLayout: void setDrawerListener(androidx.drawerlayout.widget.DrawerLayout$DrawerListener) -androidx.hilt.lifecycle.R$dimen: int notification_small_icon_size_as_large -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.functions.Function mapper -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_ActionBar -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_imageButtonStyle -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean emitLast -com.xw.repo.bubbleseekbar.R$dimen: int abc_control_corner_material -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextColor(android.content.res.ColorStateList) -androidx.preference.R$anim: int abc_tooltip_enter -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeRealFeelTemperature() -okhttp3.internal.platform.OptionalMethod: java.lang.Class returnType -okhttp3.internal.http2.Http2Reader$Handler: void settings(boolean,okhttp3.internal.http2.Settings) -com.xw.repo.bubbleseekbar.R$attr: int tickMarkTint -androidx.appcompat.widget.LinearLayoutCompat: void setMeasureWithLargestChildEnabled(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean precipitation -androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context) -com.google.android.gms.location.LocationAvailability -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -androidx.preference.R$attr: int panelBackground -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver INNER_DISPOSED -androidx.preference.R$color -com.google.android.material.R$layout: int notification_template_icon_group -androidx.work.R$id: int accessibility_custom_action_29 -wangdaye.com.geometricweather.R$styleable: int OnSwipe_moveWhenScrollAtTop -androidx.preference.R$style: int TextAppearance_Compat_Notification -com.google.android.material.R$string: int abc_search_hint -com.google.android.material.R$styleable: int AppCompatTextView_autoSizeMinTextSize -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceCaption -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: int rightIndex -androidx.lifecycle.extensions.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_exitFadeDuration -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver -cyanogenmod.externalviews.KeyguardExternalView: void setProviderComponent(android.content.ComponentName) -androidx.constraintlayout.widget.R$attr: int panelMenuListWidth -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackground(android.graphics.drawable.Drawable) -com.google.android.material.internal.NavigationMenuView: int getWindowAnimations() -io.reactivex.Observable: int bufferSize() -wangdaye.com.geometricweather.R$attr: int closeIconVisible -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -james.adaptiveicon.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.db.entities.LocationEntity: void setChina(boolean) -androidx.appcompat.R$attr: int autoSizeStepGranularity -com.google.android.gms.common.internal.zax -androidx.customview.R$style: int TextAppearance_Compat_Notification -cyanogenmod.externalviews.ExternalView$3 -com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatSeekBar -com.jaredrummler.android.colorpicker.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$dimen: int abc_disabled_alpha_material_dark -com.google.android.material.R$dimen: int hint_alpha_material_dark -wangdaye.com.geometricweather.R$style: int TestStyleWithLineHeightAppearance -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date from -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.R$id: int dragStart -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginBottom -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitationDuration -wangdaye.com.geometricweather.R$attr: int startIconContentDescription -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String weatherSource -androidx.fragment.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.background.receiver.widget.WidgetMultiCityProvider -androidx.work.R$id: int right_icon -androidx.hilt.lifecycle.R$drawable: int notify_panel_notification_icon_bg -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void dispose() -androidx.preference.R$dimen: int abc_action_bar_default_padding_end_material -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -com.google.android.material.R$style: int TextAppearance_AppCompat_Button -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String messageShort -com.google.android.material.R$attr: int dialogTheme -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_PREVIEW -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int Chip_closeIcon -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onStart() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: CNWeatherResult$Realtime() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherPhase(java.lang.String) -cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(android.os.Parcel) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_popupMenuStyle -com.amap.api.location.AMapLocation: void setLocationDetail(java.lang.String) -wangdaye.com.geometricweather.R$id: int listMode -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: java.lang.String DESCRIPTOR -okhttp3.internal.http2.Http2: java.lang.String frameLog(boolean,int,int,byte,byte) -okhttp3.internal.cache.InternalCache -com.xw.repo.bubbleseekbar.R$id: int text -com.google.android.material.R$dimen: int mtrl_card_checked_icon_margin -com.turingtechnologies.materialscrollbar.R$id: int async -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startX -james.adaptiveicon.R$styleable: int AlertDialog_android_layout -androidx.hilt.work.R$id: int forever -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream newStream(java.util.List,boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: AccuCurrentResult$Pressure$Metric() -androidx.lifecycle.ClassesInfoCache: boolean hasLifecycleMethods(java.lang.Class) -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_fontFamily -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: void setDirection(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean) -androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -james.adaptiveicon.R$styleable: int Toolbar_collapseIcon -okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithoutIndexingIndexedName(int) -com.google.android.material.chip.Chip: void setTextEndPaddingResource(int) -androidx.recyclerview.R$drawable: int notification_action_background -androidx.preference.R$styleable: int AppCompatTheme_actionModePasteDrawable -androidx.preference.R$attr: int preferenceCategoryStyle -wangdaye.com.geometricweather.R$string: int material_minute_selection -com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyleSmall -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -com.google.android.material.textfield.TextInputLayout: void setStartIconOnLongClickListener(android.view.View$OnLongClickListener) -com.google.android.material.R$attr: int selectorSize -androidx.preference.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -okhttp3.internal.http.RealInterceptorChain: int connectTimeoutMillis() -androidx.preference.R$drawable: int abc_switch_thumb_material -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -okhttp3.internal.http.RealInterceptorChain: okhttp3.Connection connection() -okhttp3.internal.http2.Http2Stream: long bytesLeftInWriteWindow -com.google.android.material.R$styleable: int MenuView_android_itemTextAppearance -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_11 -androidx.preference.R$id: int activity_chooser_view_content -com.google.android.material.R$dimen: int abc_text_size_display_4_material -com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconDrawable -wangdaye.com.geometricweather.R$string: int key_unit -androidx.recyclerview.R$attr: int fastScrollHorizontalTrackDrawable -com.jaredrummler.android.colorpicker.R$string: int abc_shareactionprovider_share_with -android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -androidx.preference.R$layout: int abc_action_bar_title_item -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_al -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ProgressBar_Horizontal -com.google.android.material.R$styleable: int MaterialCalendar_rangeFillColor -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -androidx.hilt.work.R$id: int right_icon -james.adaptiveicon.R$styleable: int AlertDialog_multiChoiceItemLayout -okhttp3.internal.connection.RouteSelector$Selection: java.util.List getAll() -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addFormDataPart(java.lang.String,java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -androidx.preference.R$style: int Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeMinTextSize -wangdaye.com.geometricweather.R$id: int widget_week_icon_1 -com.jaredrummler.android.colorpicker.R$attr: int windowFixedHeightMajor -androidx.hilt.lifecycle.R$dimen: int notification_subtext_size -james.adaptiveicon.R$dimen: int abc_config_prefDialogWidth -wangdaye.com.geometricweather.R$id: int searchIcon -wangdaye.com.geometricweather.R$drawable: int mtrl_popupmenu_background_dark -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupMenu -com.google.android.material.bottomnavigation.BottomNavigationView: int getMaxItemCount() -com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentStyle -androidx.appcompat.R$color: int switch_thumb_material_light -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_android_popupAnimationStyle -android.didikee.donate.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -cyanogenmod.app.CMStatusBarManager: java.lang.String TAG -com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding MEMORY -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_7 -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_buttonPanelSideLayout -okhttp3.HttpUrl: java.lang.String host -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_DIALOG_THEME -cyanogenmod.profiles.BrightnessSettings: void processOverride(android.content.Context) -androidx.transition.R$style: int TextAppearance_Compat_Notification -androidx.work.R$id: int text2 -com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_title_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setO3(java.lang.String) -cyanogenmod.app.ILiveLockScreenManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum Maximum -io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable INSTANCE -androidx.preference.PreferenceCategory -wangdaye.com.geometricweather.R$attr: int trackTintMode -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: Temperature(int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) -com.xw.repo.bubbleseekbar.R$attr: int indeterminateProgressStyle -androidx.constraintlayout.utils.widget.ImageFilterButton: void setRound(float) -com.turingtechnologies.materialscrollbar.R$attr: int toolbarId -wangdaye.com.geometricweather.R$string: int about_gson -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: double Value -androidx.appcompat.R$drawable: int abc_btn_radio_material -james.adaptiveicon.R$dimen: int disabled_alpha_material_dark -androidx.preference.R$style: int Widget_AppCompat_ListPopupWindow -com.jaredrummler.android.colorpicker.R$id: int listMode -okhttp3.internal.http.HttpCodec: void finishRequest() -okio.Okio$2: java.io.InputStream val$in -com.turingtechnologies.materialscrollbar.R$attr: int expanded -android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.os.IBinder asBinder() -com.google.android.material.R$attr: int tabSelectedTextColor -com.jaredrummler.android.colorpicker.R$color: int error_color_material_dark -com.amap.api.location.AMapLocation: int getSatellites() -wangdaye.com.geometricweather.R$attr: int materialAlertDialogTheme -com.turingtechnologies.materialscrollbar.R$id: int checkbox -okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String) -io.reactivex.Observable: io.reactivex.Completable flatMapCompletable(io.reactivex.functions.Function,boolean) -wangdaye.com.geometricweather.R$attr: int fastScrollHorizontalTrackDrawable -com.google.android.material.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -com.google.android.gms.internal.location.zzbc -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Dbz -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onScreenTurnedOff() -com.google.android.material.R$interpolator: int mtrl_linear -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Headline -okhttp3.OkHttpClient$1: okhttp3.internal.connection.RouteDatabase routeDatabase(okhttp3.ConnectionPool) -cyanogenmod.app.BaseLiveLockManagerService: void notifyChangeListeners(cyanogenmod.app.LiveLockScreenInfo) -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage SOURCE -com.jaredrummler.android.colorpicker.R$layout: int abc_screen_simple_overlay_action_mode -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_second_track_size -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult -com.turingtechnologies.materialscrollbar.R$dimen: int notification_action_icon_size -com.google.android.material.R$styleable: int SearchView_queryHint -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String WeatherText -com.baidu.location.indoor.mapversion.c.c$b -androidx.cardview.R$attr: int contentPaddingRight -androidx.work.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pm10 -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: long serialVersionUID -androidx.constraintlayout.widget.R$attr: int dragDirection -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: MfCurrentResult$Observation$Weather() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_110 -com.google.android.material.R$dimen: int mtrl_calendar_day_height -cyanogenmod.externalviews.KeyguardExternalView$3: int val$y -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWeatherEnd() -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginLeft -com.google.android.material.R$styleable: int OnSwipe_dragThreshold -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: int humidity -androidx.appcompat.widget.SwitchCompat: void setChecked(boolean) +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.google.android.material.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentStyle +cyanogenmod.providers.CMSettings$System: java.lang.String SYS_PROP_CM_SETTING_VERSION +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollHorizontalThumbDrawable +androidx.appcompat.widget.Toolbar: void setOnMenuItemClickListener(androidx.appcompat.widget.Toolbar$OnMenuItemClickListener) +james.adaptiveicon.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +wangdaye.com.geometricweather.R$styleable: int MenuItem_numericModifiers +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_ContextMenu +com.xw.repo.bubbleseekbar.R$bool +okhttp3.internal.Internal: okhttp3.internal.connection.RealConnection get(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm25Desc() +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_wavePeriod +com.google.android.material.R$color: int mtrl_btn_stroke_color_selector +com.jaredrummler.android.colorpicker.R$attr: int buttonBarPositiveButtonStyle +io.reactivex.internal.observers.BlockingObserver: void onComplete() +wangdaye.com.geometricweather.R$attr: int chipIcon +com.google.android.material.R$styleable: int MotionLayout_currentState +android.didikee.donate.R$drawable: int abc_ratingbar_indicator_material +wangdaye.com.geometricweather.R$anim: int popup_show_bottom_left +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_NoActionBar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: AccuCurrentResult$RealFeelTemperatureShade$Imperial() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +com.turingtechnologies.materialscrollbar.R$attr: int customNavigationLayout +cyanogenmod.providers.CMSettings$Secure: java.lang.String PROTECTED_COMPONENT_MANAGERS +com.jaredrummler.android.colorpicker.R$id: int search_edit_frame +io.reactivex.Observable: io.reactivex.Observable switchMapDelayError(io.reactivex.functions.Function,int) +cyanogenmod.platform.Manifest$permission +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_recyclerView +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorBackgroundFloating +james.adaptiveicon.R$layout: int abc_list_menu_item_radio +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabBar +androidx.appcompat.R$attr: int isLightTheme +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_ab_back_material +com.bumptech.glide.integration.okhttp.R$id: int icon +com.turingtechnologies.materialscrollbar.R$attr: int listDividerAlertDialog +com.github.rahatarmanahmed.cpv.CircularProgressView: boolean isIndeterminate +okhttp3.Call: boolean isCanceled() +james.adaptiveicon.R$layout: int abc_activity_chooser_view +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_percent +cyanogenmod.providers.WeatherContract: WeatherContract() +james.adaptiveicon.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windSpeed +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_voiceIcon +androidx.constraintlayout.widget.R$styleable: int PropertySet_android_alpha +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: MfForecastResult$DailyForecast() +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Button +com.google.android.material.R$styleable: int Chip_android_checkable +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitleTextAppearance +com.xw.repo.bubbleseekbar.R$dimen: int notification_main_column_padding_top +com.google.android.material.R$attr: int alertDialogTheme +wangdaye.com.geometricweather.R$attr: int errorContentDescription +okhttp3.internal.ws.WebSocketProtocol: int PAYLOAD_LONG +wangdaye.com.geometricweather.weather.apis.AccuWeatherApi +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long produced +com.google.android.material.appbar.AppBarLayout: android.graphics.drawable.Drawable getStatusBarForeground() +androidx.dynamicanimation.R$attr: R$attr() +wangdaye.com.geometricweather.R$styleable: int Chip_iconStartPadding +james.adaptiveicon.R$styleable: int AppCompatTheme_colorBackgroundFloating +androidx.appcompat.R$dimen: int abc_text_size_small_material +androidx.work.R$id: int tag_unhandled_key_event_manager +okhttp3.internal.platform.AndroidPlatform: void logCloseableLeak(java.lang.String,java.lang.Object) +cyanogenmod.app.Profile: int getNotificationLightMode() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int HAS_REQUEST_NO_VALUE +wangdaye.com.geometricweather.R$string: int phase_third +com.google.android.material.R$attr: int showMotionSpec +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_iconTint +okhttp3.internal.http2.Hpack$Writer: int headerCount +cyanogenmod.app.ICustomTileListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_constraintSet +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +androidx.constraintlayout.widget.R$styleable: int[] MotionTelltales +androidx.preference.R$attr: int actionMenuTextAppearance +wangdaye.com.geometricweather.R$id: int ifRoom +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.google.android.material.R$attr: int flow_firstHorizontalBias +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_checkable +com.google.android.material.R$styleable: int SnackbarLayout_maxActionInlineWidth +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_checkable +androidx.hilt.R$id: int text +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder callbackExecutor(java.util.concurrent.Executor) +com.google.android.material.R$dimen: int abc_edit_text_inset_horizontal_material +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer relativeHumidityMin +wangdaye.com.geometricweather.R$layout: int test_design_radiobutton +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float relativeHumidity +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.util.concurrent.atomic.AtomicLong requested +com.turingtechnologies.materialscrollbar.R$attr: int counterTextAppearance +com.google.android.material.R$styleable: int KeyCycle_android_rotation +androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_small_material +retrofit2.Platform$Android$MainThreadExecutor +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder username(java.lang.String) +com.google.android.material.R$styleable: int SearchView_android_maxWidth +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric Metric +james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat +androidx.appcompat.R$id: int multiply +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.lang.String unit +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme +com.google.android.material.R$attr: int actionBarTabTextStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: long EpochDate +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedWidthMinor +androidx.dynamicanimation.R$layout: int notification_template_part_time +androidx.appcompat.resources.R$id: int accessibility_custom_action_24 +com.jaredrummler.android.colorpicker.R$styleable: int[] ButtonBarLayout +androidx.preference.R$style: int Platform_AppCompat +com.google.android.material.R$string: int hide_bottom_view_on_scroll_behavior +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +com.google.android.material.datepicker.DateValidatorPointBackward: android.os.Parcelable$Creator CREATOR okhttp3.internal.cache.DiskLruCache$Snapshot: DiskLruCache$Snapshot(okhttp3.internal.cache.DiskLruCache,java.lang.String,long,okio.Source[],long[]) -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextAppearanceActive(int) -com.google.android.gms.common.api.ApiException: ApiException(com.google.android.gms.common.api.Status) -androidx.vectordrawable.animated.R$drawable: int notify_panel_notification_icon_bg -androidx.appcompat.R$styleable: int ActionMode_closeItemLayout -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: int UnitType -james.adaptiveicon.R$styleable: int MenuGroup_android_menuCategory -io.reactivex.Observable: io.reactivex.Observable window(long,long) -wangdaye.com.geometricweather.R$id: int glide_custom_view_target_tag -com.github.rahatarmanahmed.cpv.CircularProgressView: int size -wangdaye.com.geometricweather.R$attr: int homeLayout -com.jaredrummler.android.colorpicker.R$styleable -android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -cyanogenmod.profiles.BrightnessSettings$1: BrightnessSettings$1() -com.google.android.gms.common.internal.GetServiceRequest: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_scaleY -android.didikee.donate.R$styleable: int AppCompatTheme_textColorSearchUrl -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_lineHeight -androidx.preference.R$styleable: int Spinner_android_popupBackground -com.turingtechnologies.materialscrollbar.R$attr: int chipBackgroundColor -com.turingtechnologies.materialscrollbar.R$attr: int windowMinWidthMajor -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_divider -com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_900 -com.xw.repo.bubbleseekbar.R$attr: int thumbTintMode -com.xw.repo.bubbleseekbar.R$layout: R$layout() -io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String) -com.google.android.material.R$styleable: int Chip_chipIconEnabled -androidx.transition.R$dimen: int notification_main_column_padding_top -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Dialog -com.google.gson.stream.JsonWriter: void setIndent(java.lang.String) -android.didikee.donate.R$style: int Widget_AppCompat_ButtonBar -androidx.lifecycle.SavedStateHandle$SavingStateLiveData -com.amap.api.fence.GeoFenceManagerBase: void setGeoFenceListener(com.amap.api.fence.GeoFenceListener) -okhttp3.RealCall$1: okhttp3.RealCall this$0 -com.google.android.material.R$drawable: int abc_list_selector_background_transition_holo_light -androidx.preference.R$attr: int popupMenuStyle -james.adaptiveicon.R$attr: int actionBarTabBarStyle -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: java.lang.String getPathName() -androidx.hilt.R$string: int status_bar_notification_info_overflow -okhttp3.internal.http2.Hpack$Writer: void writeHeaders(java.util.List) -wangdaye.com.geometricweather.R$integer: int mtrl_calendar_header_orientation -androidx.fragment.R$styleable: int FontFamilyFont_android_fontVariationSettings -retrofit2.HttpException: retrofit2.Response response -androidx.core.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_105 -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_shapeAppearanceOverlay -io.reactivex.Observable: io.reactivex.Observable delay(io.reactivex.functions.Function) -androidx.lifecycle.LiveData$ObserverWrapper: void detachObserver() -okhttp3.internal.cache.DiskLruCache: long size -com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.AnimatorSet indeterminateAnimator -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: boolean done -okio.BufferedSink: okio.BufferedSink writeUtf8CodePoint(int) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Small_Inverse -androidx.preference.R$attr: int windowMinWidthMajor -androidx.recyclerview.R$styleable: int GradientColor_android_gradientRadius -okhttp3.Handshake: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min -okhttp3.internal.http2.Http2Connection: void writeSynReset(int,okhttp3.internal.http2.ErrorCode) -wangdaye.com.geometricweather.R$attr: int snackbarTextViewStyle -wangdaye.com.geometricweather.R$attr: int bsb_max -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder pingIntervalMillis(int) -androidx.preference.R$styleable: int Toolbar_logoDescription -okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method openMethod -okhttp3.internal.platform.OptionalMethod: OptionalMethod(java.lang.Class,java.lang.String,java.lang.Class[]) -androidx.recyclerview.R$id: int accessibility_custom_action_11 -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogLayout -androidx.dynamicanimation.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getDesiredHeight() -wangdaye.com.geometricweather.R$id: int rounded -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu -cyanogenmod.providers.CMSettings$System: java.lang.String QS_SHOW_BRIGHTNESS_SLIDER -com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyleSmall -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitationProbability -com.google.android.material.R$drawable: int abc_ic_star_half_black_48dp -android.didikee.donate.R$styleable: int AlertDialog_listItemLayout -com.google.android.material.R$style: int TextAppearance_Design_Snackbar_Message -com.google.android.material.R$attr: int tabStyle -com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialScrollBar -cyanogenmod.app.ProfileGroup: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetEnd -com.google.android.material.R$attr: int transitionFlags -okhttp3.internal.http2.Http2Connection: boolean access$302(okhttp3.internal.http2.Http2Connection,boolean) -androidx.dynamicanimation.R$id: int title -androidx.appcompat.widget.Toolbar: void setCollapsible(boolean) -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$layout: int abc_activity_chooser_view -retrofit2.BuiltInConverters$UnitResponseBodyConverter: BuiltInConverters$UnitResponseBodyConverter() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitationProbability() -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onSubscribe(org.reactivestreams.Subscription) -com.google.android.material.R$styleable: int AppCompatTheme_colorControlNormal -com.google.android.material.R$styleable: int ConstraintSet_flow_verticalAlign -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat -cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile[] getProfiles() -james.adaptiveicon.R$style: int Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvDescription(java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRealFeelShaderTemperature(java.lang.Integer) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd -androidx.preference.R$dimen: int highlight_alpha_material_dark -com.google.android.material.datepicker.SingleDateSelector -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView -android.didikee.donate.R$attr: int panelMenuListTheme -com.autonavi.aps.amapapi.model.AMapLocationServer -com.turingtechnologies.materialscrollbar.R$styleable: int View_theme -wangdaye.com.geometricweather.R$attr: int tabIndicatorFullWidth -wangdaye.com.geometricweather.R$string: int wind_12 -okio.HashingSink: okio.HashingSink md5(okio.Sink) -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean cancelled -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -com.google.android.material.chip.Chip: Chip(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_corner_radius_small -androidx.activity.R$id: int forever -androidx.core.widget.NestedScrollView: int getMaxScrollAmount() -androidx.appcompat.R$styleable: int Toolbar_android_minHeight -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_go_search_api_material -androidx.appcompat.R$id: int chronometer -james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_DropDown -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCutDrawable -androidx.recyclerview.R$dimen: int notification_top_pad_large_text -com.baidu.location.e.h$a: com.baidu.location.e.h$a[] values() -wangdaye.com.geometricweather.R$styleable: int OnSwipe_nestedScrollFlags -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabText -com.autonavi.aps.amapapi.model.AMapLocationServer: int i -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast -androidx.constraintlayout.helper.widget.Layer: void setTranslationY(float) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean getAqi() -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Body2 -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$color: int cpv_default_color -androidx.lifecycle.LiveData: java.lang.Runnable mPostValueRunnable -androidx.constraintlayout.widget.R$style: int Widget_Compat_NotificationActionText -androidx.appcompat.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: CNWeatherResult$Realtime$Weather() -cyanogenmod.weather.WeatherInfo: double getHumidity() -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_WIFI_COMBO_MARGIN_END -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_weight -androidx.hilt.R$styleable: int GradientColor_android_endColor -cyanogenmod.hardware.DisplayMode -com.google.android.material.slider.RangeSlider: void setTickInactiveTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$anim: int abc_fade_out -james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -cyanogenmod.externalviews.ExternalView$4: ExternalView$4(cyanogenmod.externalviews.ExternalView) -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Invalid -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostCreated(android.app.Activity,android.os.Bundle) -com.xw.repo.bubbleseekbar.R$id: int progress_horizontal -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setGeoLanguage(com.amap.api.location.AMapLocationClientOption$GeoLanguage) -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_android_alpha -androidx.core.R$color: R$color() -wangdaye.com.geometricweather.R$dimen: int little_margin -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setSubState -androidx.lifecycle.extensions.R$styleable: int[] FontFamilyFont -okhttp3.Cookie: long expiresAt -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_subtitle_top_margin_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setUnit(java.lang.String) -wangdaye.com.geometricweather.R$animator: int weather_rain_2 -james.adaptiveicon.R$styleable: int MenuGroup_android_orderInCategory -wangdaye.com.geometricweather.R$color: int colorTextDark2nd -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Time -com.amap.api.fence.GeoFenceClient: com.amap.api.fence.GeoFenceManagerBase b -okhttp3.internal.tls.OkHostnameVerifier: java.util.List allSubjectAltNames(java.security.cert.X509Certificate) -com.bumptech.glide.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.R$color: int colorRoot_light -wangdaye.com.geometricweather.R$id: int honorRequest -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit valueOf(java.lang.String) -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int consumed -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: MfForecastResult$Forecast$Temperature() -com.google.android.material.R$color: int foreground_material_dark -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setBadgeDrawables(android.util.SparseArray) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -cyanogenmod.app.IProfileManager: boolean setActiveProfileByName(java.lang.String) -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,java.lang.String) -wangdaye.com.geometricweather.R$attr: int saturation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isModifyInHour() -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -com.jaredrummler.android.colorpicker.R$drawable: R$drawable() -org.greenrobot.greendao.AbstractDaoSession: java.util.Map entityToDao -cyanogenmod.themes.IThemeService: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) -wangdaye.com.geometricweather.R$drawable: int notif_temp_47 -io.reactivex.internal.subscriptions.EmptySubscription: boolean offer(java.lang.Object,java.lang.Object) -androidx.recyclerview.R$attr: int fontProviderQuery -com.jaredrummler.android.colorpicker.R$attr: int showText -com.google.android.material.R$styleable: int Slider_trackColorActive -com.turingtechnologies.materialscrollbar.R$id: int action_bar_spinner -com.turingtechnologies.materialscrollbar.R$attr: int titleMargin -james.adaptiveicon.R$styleable: int DrawerArrowToggle_spinBars -com.turingtechnologies.materialscrollbar.R$attr: int textAllCaps -androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$animator: int weather_sleet_2 -androidx.preference.R$style: int TextAppearance_AppCompat_Medium_Inverse -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf -cyanogenmod.weather.WeatherInfo$Builder: double mHumidity -com.google.android.material.R$attr: int layout_constraintBottom_toTopOf -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_disableDependentsState -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontStyle -com.turingtechnologies.materialscrollbar.R$styleable: int RecycleListView_paddingTopNoTitle -com.google.android.material.R$style: int Widget_AppCompat_Spinner -androidx.appcompat.widget.ViewStubCompat: int getInflatedId() -wangdaye.com.geometricweather.R$dimen: int compat_button_inset_vertical_material -com.google.android.material.chip.Chip: void setChipIcon(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$style: int notification_subtitle_text -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonStyleSmall -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_shouldDisableView -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetEnd -androidx.preference.ListPreferenceDialogFragmentCompat: ListPreferenceDialogFragmentCompat() -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon -com.google.android.material.R$style: int Base_Widget_AppCompat_PopupWindow -okhttp3.Handshake: java.security.Principal peerPrincipal() -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: long serialVersionUID -okio.RealBufferedSource: RealBufferedSource(okio.Source) -androidx.appcompat.R$style: int Widget_AppCompat_ActionButton_CloseMode +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +wangdaye.com.geometricweather.R$id: int design_menu_item_action_area +wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWidgetConfigActivity: Hilt_DayWidgetConfigActivity() +wangdaye.com.geometricweather.R$color: int design_dark_default_color_surface +androidx.core.R$styleable: int GradientColor_android_tileMode +androidx.constraintlayout.widget.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +cyanogenmod.weather.RequestInfo: int TYPE_LOOKUP_CITY_NAME_REQ +wangdaye.com.geometricweather.R$attr: int itemStrokeColor +androidx.vectordrawable.R$id: int dialog_button +com.google.android.gms.location.LocationRequest: android.os.Parcelable$Creator CREATOR +androidx.lifecycle.ProcessLifecycleOwner$3$1: void onActivityPostStarted(android.app.Activity) +com.amap.api.fence.PoiItem: java.lang.String d +wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_material +com.google.android.material.R$attr: int materialCalendarHeaderTitle +com.google.android.material.R$id: int normal +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_fontFamily +androidx.preference.R$styleable: int PreferenceFragment_android_divider +wangdaye.com.geometricweather.R$anim: R$anim() +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$ExpandedStyle mExpandedStyle +androidx.recyclerview.R$styleable: int GradientColor_android_centerColor +androidx.activity.R$id: int accessibility_custom_action_15 +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_voiceIcon +wangdaye.com.geometricweather.R$animator: int mtrl_fab_transformation_sheet_expand_spec +okhttp3.Interceptor$Chain: int writeTimeoutMillis() +androidx.constraintlayout.widget.R$styleable: int MenuItem_contentDescription +james.adaptiveicon.R$attr: int searchIcon +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onDetach() +io.reactivex.internal.util.AtomicThrowable: boolean addThrowable(java.lang.Throwable) +androidx.appcompat.R$layout: int abc_action_mode_close_item_material +androidx.lifecycle.LiveData: void removeObservers(androidx.lifecycle.LifecycleOwner) +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTintMode +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy KEEP +androidx.loader.R$dimen: int compat_button_inset_vertical_material +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: io.reactivex.internal.fuseable.SimpleQueue queue +com.google.android.material.R$dimen: int material_clock_period_toggle_width +wangdaye.com.geometricweather.remoteviews.config.AbstractWidgetConfigActivity: AbstractWidgetConfigActivity() +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_background +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter nighttimeWindDegreeConverter +okio.Timeout: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) +com.google.android.material.R$styleable: int ClockFaceView_valueTextColor +wangdaye.com.geometricweather.R$dimen: int material_helper_text_font_1_3_padding_top +com.google.android.material.R$styleable: int Layout_layout_constraintGuide_end +com.google.android.material.R$styleable: int Layout_layout_constraintEnd_toEndOf +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_NAVIGATION_BAR +com.google.android.material.R$attr: int behavior_overlapTop +okhttp3.FormBody: java.lang.String encodedName(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: java.lang.String Unit +androidx.lifecycle.LiveData$ObserverWrapper: androidx.lifecycle.LiveData this$0 +androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context) +wangdaye.com.geometricweather.R$attr: int maxAcceleration +androidx.preference.R$attr: int actionBarDivider +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarButtonStyle +androidx.preference.R$id: int contentPanel +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +cyanogenmod.profiles.BrightnessSettings: android.os.Parcelable$Creator CREATOR +androidx.hilt.R$attr: int ttcIndex +com.turingtechnologies.materialscrollbar.R$dimen: int cardview_default_radius +cyanogenmod.app.CustomTile$GridExpandedStyle: CustomTile$GridExpandedStyle() +com.jaredrummler.android.colorpicker.R$attr: int actionModeStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat +com.google.android.material.R$plurals +android.didikee.donate.R$color: int primary_text_disabled_material_dark +wangdaye.com.geometricweather.R$attr: int foregroundInsidePadding +cyanogenmod.providers.CMSettings$Secure$1 +android.didikee.donate.R$style: int TextAppearance_AppCompat_SearchResult_Title +okio.Buffer: okio.ByteString readByteString(long) +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleTextAppearance +androidx.viewpager.R$dimen: int notification_top_pad +com.google.android.material.R$styleable: int MotionScene_defaultDuration +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onNext(java.lang.Object) +okhttp3.internal.http2.Http2Connection: void writeWindowUpdateLater(int,long) +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ACTIVE +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_extendMotionSpec +androidx.transition.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$styleable: int KeyCycle_curveFit +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: AirQuality(java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +io.reactivex.internal.subscriptions.SubscriptionArbiter: long serialVersionUID +wangdaye.com.geometricweather.R$dimen: int notification_large_icon_height +james.adaptiveicon.R$attr: int ratingBarStyleSmall +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric() +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: void slideLockscreenIn() +androidx.vectordrawable.R$id: int line3 +androidx.appcompat.R$drawable: int abc_textfield_search_activated_mtrl_alpha +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionProviderClass +androidx.hilt.lifecycle.R$id: int line3 +androidx.constraintlayout.widget.R$color: int material_grey_900 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_COLOR_ENHANCE_VALIDATOR +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String description +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: AccuCurrentResult$Precip1hr$Metric() +androidx.drawerlayout.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_3 +wangdaye.com.geometricweather.R$id: int circle_center +okhttp3.internal.http2.Http2Reader$ContinuationSource: okio.Timeout timeout() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_22 +androidx.core.R$dimen: int compat_control_corner_material +androidx.appcompat.R$styleable: int MenuItem_android_alphabeticShortcut +androidx.constraintlayout.widget.R$color: int material_blue_grey_950 +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_9 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_seekBarStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarSize +cyanogenmod.app.CustomTile$ExpandedItem$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.preference.TwoStatePreference$SavedState: android.os.Parcelable$Creator CREATOR +androidx.preference.R$id: int progress_horizontal +androidx.constraintlayout.widget.R$attr: int track +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_visible +androidx.constraintlayout.widget.R$attr: int panelMenuListWidth +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstVerticalBias +com.jaredrummler.android.colorpicker.R$id: int async +com.google.android.material.R$color: int design_box_stroke_color +cyanogenmod.externalviews.ExternalView$3: ExternalView$3(cyanogenmod.externalviews.ExternalView) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_position +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Filter +wangdaye.com.geometricweather.db.entities.DailyEntity: int getNighttimeTemperature() +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory getInstance(android.app.Application) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String ID +okhttp3.internal.http2.Huffman: int encodedLength(okio.ByteString) +androidx.dynamicanimation.R$drawable: int notification_bg_normal_pressed +androidx.preference.R$id: int action_mode_close_button +androidx.preference.R$styleable: int[] SearchView +androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontStyle +com.google.android.material.R$styleable: int ShapeableImageView_strokeWidth +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean isDisposed() +androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_disableDependentsState +wangdaye.com.geometricweather.R$string: int week_5 +com.google.android.material.R$style: int ThemeOverlay_Design_TextInputEditText +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit F +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +androidx.appcompat.widget.ActionBarContextView: void setTitleOptional(boolean) +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +okio.Pipe$PipeSink: Pipe$PipeSink(okio.Pipe) +cyanogenmod.providers.CMSettings$Global: boolean putFloat(android.content.ContentResolver,java.lang.String,float) +com.google.android.material.R$styleable: int TextInputLayout_hintAnimationEnabled +com.google.android.material.R$styleable: int Layout_layout_constraintStart_toStartOf +io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Action onComplete +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Body1 +androidx.constraintlayout.widget.R$drawable: int notification_bg_low_normal +james.adaptiveicon.R$attr: int collapseIcon +wangdaye.com.geometricweather.R$layout: int widget_day_tile +androidx.lifecycle.extensions.R$styleable: int[] Fragment +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_CardView +wangdaye.com.geometricweather.R$styleable: int Constraint_android_id +androidx.appcompat.app.AppCompatActivity: void setContentView(android.view.View) +wangdaye.com.geometricweather.main.fragments.ManagementFragment: ManagementFragment() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: int Degrees +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_min +androidx.appcompat.R$attr: int homeLayout +io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.google.android.material.R$drawable: int abc_scrubber_control_off_mtrl_alpha +cyanogenmod.weather.WeatherInfo$Builder: boolean isValidWindSpeedUnit(int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: int hasRain +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_descendantFocusability +androidx.preference.R$styleable: int AppCompatSeekBar_tickMarkTintMode +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long skip +com.xw.repo.bubbleseekbar.R$id: int image +org.greenrobot.greendao.AbstractDao: java.lang.Object getKeyVerified(java.lang.Object) +com.google.android.material.R$styleable: int KeyPosition_keyPositionType +android.didikee.donate.R$styleable: int SwitchCompat_track +androidx.preference.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +androidx.activity.R$layout: int notification_action_tombstone +com.turingtechnologies.materialscrollbar.R$layout: int mtrl_layout_snackbar_include +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_visible +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_is_float_type +androidx.appcompat.R$style: int Base_V23_Theme_AppCompat +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String timezone +wangdaye.com.geometricweather.R$id: int spread_inside +android.didikee.donate.R$id: int action_divider +wangdaye.com.geometricweather.R$drawable: int cpv_ic_arrow_right_black_24dp +androidx.lifecycle.reactivestreams.R: R() +androidx.appcompat.R$styleable: int[] RecycleListView +com.google.android.material.R$styleable: int TextAppearance_fontFamily +wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_unselected +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description Description +com.google.android.material.slider.Slider: void setTrackHeight(int) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Medium +com.google.android.material.R$layout: int design_navigation_item_separator +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature +androidx.appcompat.R$attr: int thumbTintMode +com.xw.repo.bubbleseekbar.R$dimen: int hint_pressed_alpha_material_light +com.google.android.material.timepicker.TimePickerView: void setOnActionUpListener(com.google.android.material.timepicker.ClockHandView$OnActionUpListener) +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenText(android.content.Context,int) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: long serialVersionUID +androidx.appcompat.resources.R$id: int tag_unhandled_key_event_manager +androidx.preference.R$color: int abc_tint_spinner +okio.Buffer: java.lang.String readUtf8Line(long) +com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_icon +androidx.recyclerview.R$attr: R$attr() +cyanogenmod.platform.Manifest$permission: java.lang.String OBSERVE_AUDIO_SESSIONS +com.amap.api.fence.GeoFenceClient: void addGeoFence(java.util.List,java.lang.String) +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_font +androidx.appcompat.R$styleable: int SwitchCompat_trackTint +androidx.appcompat.R$styleable: int MenuItem_showAsAction +wangdaye.com.geometricweather.R$string: int key_ui_style +okhttp3.internal.cache.CacheInterceptor: okhttp3.Response stripBody(okhttp3.Response) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: org.reactivestreams.Subscription upstream +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.util.List Intervals +okhttp3.internal.http2.Hpack: int PREFIX_7_BITS +cyanogenmod.app.Profile$DozeMode: int DEFAULT +retrofit2.RequestFactory$Builder: void validateResolvableType(int,java.lang.reflect.Type) +com.xw.repo.bubbleseekbar.R$attr: int titleMarginBottom +androidx.loader.R$integer +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SearchView_ActionBar +com.google.android.material.R$style: int TextAppearance_AppCompat_Large_Inverse +com.google.android.material.R$styleable: int Constraint_flow_lastHorizontalStyle +com.turingtechnologies.materialscrollbar.R$style: int AlertDialog_AppCompat +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2 +org.greenrobot.greendao.AbstractDaoMaster: int schemaVersion +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol HTTP +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias +com.baidu.location.Poi +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_removeCustomTileWithTag +com.bumptech.glide.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.R$id: int spinner +androidx.appcompat.R$color: int androidx_core_ripple_material_light +com.turingtechnologies.materialscrollbar.R$attr: int listChoiceBackgroundIndicator +com.amap.api.location.AMapLocationClientOption: boolean g +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void remove(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) +okhttp3.RealCall$AsyncCall: okhttp3.RealCall this$0 +com.google.android.material.R$styleable: int ConstraintSet_android_rotation +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_maxImageSize +androidx.constraintlayout.widget.R$layout: int abc_action_menu_layout +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_searchViewStyle +com.google.android.gms.common.api.AvailabilityException: com.google.android.gms.common.ConnectionResult getConnectionResult(com.google.android.gms.common.api.HasApiKey) +androidx.hilt.lifecycle.R$attr +com.google.android.material.R$styleable: int PopupWindowBackgroundState_state_above_anchor +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: long serialVersionUID +com.google.gson.JsonParseException: JsonParseException(java.lang.String,java.lang.Throwable) +androidx.appcompat.R$layout: int abc_expanded_menu_layout +cyanogenmod.weatherservice.IWeatherProviderService$Stub +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_16dp +com.turingtechnologies.materialscrollbar.R$style: int Platform_V21_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_borderless_material +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.IRequestInfoListener mRequestInfoListener +com.google.android.material.R$color: int mtrl_tabs_icon_color_selector_colored +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display2 +androidx.lifecycle.ViewModelStores: androidx.lifecycle.ViewModelStore of(androidx.fragment.app.FragmentActivity) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getRealFeelTemperature() +androidx.viewpager.R$dimen: int notification_content_margin_start +com.xw.repo.bubbleseekbar.R$attr: int buttonBarStyle +wangdaye.com.geometricweather.R$styleable: int Chip_chipIconSize +cyanogenmod.providers.DataUsageContract: android.net.Uri CONTENT_URI +cyanogenmod.externalviews.ExternalViewProviderService: android.os.Handler access$100(cyanogenmod.externalviews.ExternalViewProviderService) +com.turingtechnologies.materialscrollbar.R$integer: R$integer() +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleTextColor +okhttp3.internal.io.FileSystem: okio.Sink appendingSink(java.io.File) +com.amap.api.location.AMapLocation: java.lang.String getStreet() +okhttp3.Dispatcher: void setIdleCallback(java.lang.Runnable) +androidx.preference.R$layout: int abc_screen_content_include +wangdaye.com.geometricweather.R$color: int bright_foreground_inverse_material_light +okio.Buffer: okio.BufferedSink writeIntLe(int) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_chainUseRtl +retrofit2.OkHttpCall: okio.Timeout timeout() +android.didikee.donate.R$color: int primary_dark_material_dark +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setDate(java.util.Date) +androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$drawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getZh_CN() +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3 +cyanogenmod.profiles.BrightnessSettings: int describeContents() +com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar +android.didikee.donate.R$color: int switch_thumb_normal_material_light +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function) +com.google.android.material.R$string: int mtrl_picker_text_input_date_hint +com.google.android.material.R$styleable: int AppCompatTheme_actionBarStyle +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +android.didikee.donate.R$style: int Widget_AppCompat_SearchView +james.adaptiveicon.R$id: int default_activity_button +androidx.constraintlayout.helper.widget.Layer: void setVisibility(int) +com.google.android.material.appbar.HeaderBehavior: HeaderBehavior() +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver) +com.bumptech.glide.Registry$MissingComponentException +cyanogenmod.app.Profile: void setConnectionSettings(cyanogenmod.profiles.ConnectionSettings) +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_orientation +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActivityChooserView +wangdaye.com.geometricweather.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Bridge +androidx.preference.R$attr: int textAllCaps +com.google.android.material.R$attr: int strokeColor +org.greenrobot.greendao.AbstractDao: void refresh(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixTextAppearance +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconDrawable +androidx.hilt.lifecycle.R$dimen: int compat_button_padding_vertical_material +com.xw.repo.bubbleseekbar.R$id: int progress_horizontal +wangdaye.com.geometricweather.R$id: int moldIcon +okhttp3.Headers$Builder: java.util.List namesAndValues +androidx.activity.R$styleable: int FontFamilyFont_ttcIndex +okhttp3.internal.http2.Http2Stream$FramingSink: okio.Timeout timeout() com.google.android.material.R$drawable: int abc_textfield_default_mtrl_alpha -androidx.appcompat.R$id: int notification_main_column_container -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog -okhttp3.Cache$Entry: void writeCertList(okio.BufferedSink,java.util.List) -wangdaye.com.geometricweather.R$styleable: int AnimatableIconView_inner_margins -okhttp3.internal.Util: java.lang.reflect.Method addSuppressedExceptionMethod -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onPause() -okio.Pipe$PipeSink: okio.Timeout timeout() -com.jaredrummler.android.colorpicker.R$id: int tag_unhandled_key_event_manager -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -androidx.work.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moonContainer -wangdaye.com.geometricweather.R$attr: int bottom_text_color -com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_top -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: okhttp3.internal.http1.Http1Codec this$0 -com.google.android.material.R$attr: int materialCalendarHeaderToggleButton -wangdaye.com.geometricweather.R$style: int PreferenceFragment_Material -androidx.appcompat.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info info -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_tileMode -com.bumptech.glide.integration.okhttp3.OkHttpGlideModule -androidx.work.impl.background.systemjob.SystemJobService: SystemJobService() -com.google.gson.stream.JsonWriter: void setHtmlSafe(boolean) -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onSubscribe(org.reactivestreams.Subscription) -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: Http1Codec$UnknownLengthSource(okhttp3.internal.http1.Http1Codec) -cyanogenmod.app.Profile: void setTrigger(int,java.lang.String,int,java.lang.String) -james.adaptiveicon.R$attr: int contentInsetRight -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_indeterminateProgressStyle -com.google.android.material.slider.BaseSlider: void setThumbStrokeWidthResource(int) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeBackground -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderAuthority -com.google.android.material.R$color: int mtrl_chip_background_color -wangdaye.com.geometricweather.R$style: int widget_text_clock_aa -androidx.preference.R$styleable: int Toolbar_titleMarginBottom -androidx.dynamicanimation.R$dimen -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase moonPhase -androidx.swiperefreshlayout.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.R$styleable: int NavigationView_shapeAppearanceOverlay -okio.DeflaterSink -okhttp3.internal.http2.Http2Stream$FramingSink: long EMIT_BUFFER_SIZE -com.google.android.material.R$string: int abc_menu_alt_shortcut_label -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getCityId() -wangdaye.com.geometricweather.R$attr: int tabIndicatorColor -android.didikee.donate.R$dimen: int abc_dropdownitem_icon_width -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource CAIYUN -com.google.android.material.R$color: int material_on_primary_emphasis_medium -androidx.appcompat.R$styleable: int AppCompatTheme_buttonStyleSmall -com.google.android.material.internal.ScrimInsetsFrameLayout: void setDrawTopInsetForeground(boolean) -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxPlain -androidx.constraintlayout.widget.R$attr: int flow_horizontalGap -com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColorStateList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: AccuDailyResult$DailyForecasts$Day$WindGust$Speed() -androidx.viewpager.R$dimen: int notification_subtext_size -com.google.android.material.R$dimen: int mtrl_fab_translation_z_hovered_focused -wangdaye.com.geometricweather.R$attr: int scrimBackground -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SeekBar -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabText -com.google.android.material.datepicker.MaterialCalendarGridView: MaterialCalendarGridView(android.content.Context,android.util.AttributeSet) -androidx.appcompat.view.menu.ActionMenuItemView: void setExpandedFormat(boolean) -androidx.preference.R$attr: int fontProviderQuery -com.google.android.gms.base.R$string -com.google.android.material.R$attr: int dragThreshold -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_25 -androidx.constraintlayout.widget.R$attr: int listPreferredItemHeightSmall -com.xw.repo.bubbleseekbar.R$styleable: int[] ViewStubCompat -org.greenrobot.greendao.AbstractDao: void deleteInTxInternal(java.lang.Iterable,java.lang.Iterable) -com.xw.repo.bubbleseekbar.R$attr: int background -james.adaptiveicon.R$attr: int fontWeight -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -com.google.android.material.R$dimen: int design_navigation_max_width -cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_TILES -androidx.preference.R$attr: int goIcon -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_size -org.greenrobot.greendao.database.DatabaseOpenHelper: int version -okhttp3.internal.ws.RealWebSocket: okhttp3.Call call -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.reflect.Type componentType -androidx.appcompat.R$id: int accessibility_custom_action_28 -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void dispose() -androidx.preference.R$dimen: int abc_search_view_preferred_width -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableRight -com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getSupportBackgroundTintList() -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_drawableSize -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: ObservableConcatMap$SourceObserver(io.reactivex.Observer,io.reactivex.functions.Function,int) -com.xw.repo.bubbleseekbar.R$styleable: int[] BubbleSeekBar -okhttp3.internal.http2.Http2Stream$FramingSource: void close() -androidx.preference.R$attr: int fontWeight -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListPopupWindow -james.adaptiveicon.R$attr: int actionModeCloseButtonStyle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_3 -com.google.android.material.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility -wangdaye.com.geometricweather.R$anim: int abc_slide_out_bottom -androidx.appcompat.resources.R$integer: R$integer() -com.google.android.material.bottomnavigation.BottomNavigationView: android.graphics.drawable.Drawable getItemBackground() -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark_normal_background -com.google.android.material.bottomappbar.BottomAppBar: void setElevation(float) -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: org.reactivestreams.Subscriber downstream -com.jaredrummler.android.colorpicker.R$dimen: int disabled_alpha_material_dark -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeightLarge -androidx.core.R$attr: int fontProviderFetchTimeout -com.google.android.gms.internal.location.zzac -android.didikee.donate.R$styleable: int AppCompatTheme_colorControlNormal -android.didikee.donate.R$attr: int colorSwitchThumbNormal -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status[] values() -androidx.appcompat.R$styleable: int DrawerArrowToggle_color -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean fused -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean cancelled -com.google.android.material.R$attr: int actionBarSize -androidx.appcompat.resources.R$id: int accessibility_custom_action_1 -cyanogenmod.hardware.CMHardwareManager: int getVibratorMinIntensity() -androidx.lifecycle.SavedStateHandle: java.lang.Class[] ACCEPTABLE_CLASSES -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogLayout -com.google.android.material.chip.Chip: void setTextAppearanceResource(int) -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: Http2Codec$StreamFinishingSource(okhttp3.internal.http2.Http2Codec,okio.Source) -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_orderInCategory -androidx.transition.R$style: R$style() -wangdaye.com.geometricweather.R$attr: int showMotionSpec -androidx.vectordrawable.R$drawable: int notification_template_icon_bg -com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_disable_only_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial Imperial -androidx.preference.R$attr: int actionModeSelectAllDrawable -androidx.hilt.R$id: int accessibility_custom_action_1 -cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient access$202(cyanogenmod.weatherservice.WeatherProviderService,cyanogenmod.weatherservice.IWeatherProviderServiceClient) -io.reactivex.observers.TestObserver$EmptyObserver: void onComplete() -androidx.swiperefreshlayout.widget.SwipeRefreshLayout$SavedState -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void drain() -io.reactivex.internal.util.NotificationLite$ErrorNotification: java.lang.Throwable e -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Line2 -james.adaptiveicon.R$color: int material_grey_800 -com.turingtechnologies.materialscrollbar.R$id: int src_over -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode[] a -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Large -okhttp3.Cookie: java.util.regex.Pattern YEAR_PATTERN -com.google.android.material.R$id: int parentPanel -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 -androidx.preference.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -androidx.preference.R$style: int Widget_AppCompat_PopupMenu_Overflow -androidx.constraintlayout.widget.R$id: int multiply -androidx.preference.R$style: int Preference_DialogPreference_EditTextPreference_Material -androidx.viewpager2.R$id: int dialog_button -com.google.android.material.R$dimen: int default_dimension -retrofit2.http.Headers: java.lang.String[] value() -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Base base -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_headerBackground -wangdaye.com.geometricweather.R$id: int widget_day_week_weather -wangdaye.com.geometricweather.R$id: int linear -com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabBarStyle -okhttp3.internal.connection.StreamAllocation: okhttp3.EventListener eventListener -wangdaye.com.geometricweather.R$color: int notification_action_color_filter -androidx.lifecycle.AbstractSavedStateViewModelFactory: void onRequery(androidx.lifecycle.ViewModel) -cyanogenmod.hardware.DisplayMode$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_activated_mtrl_alpha -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_curveFit -androidx.fragment.app.FragmentContainerView: void setDrawDisappearingViewsLast(boolean) -cyanogenmod.weather.CMWeatherManager$1: void onWeatherServiceProviderChanged(java.lang.String) -com.xw.repo.bubbleseekbar.R$dimen: int notification_right_side_padding_top -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabAnimationMode -com.google.android.material.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -wangdaye.com.geometricweather.R$styleable: int ChipGroup_checkedChip -androidx.work.impl.WorkDatabase_Impl: WorkDatabase_Impl() -cyanogenmod.weather.WeatherInfo: int getTemperatureUnit() -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitationProbability() -james.adaptiveicon.R$styleable: int ActionBar_backgroundSplit -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeight -androidx.constraintlayout.widget.R$id: int action_mode_close_button -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Editor edit(java.lang.String,long) -retrofit2.ParameterHandler$RawPart -androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_alpha -androidx.viewpager2.widget.ViewPager2$SavedState -okhttp3.internal.http2.Http2Reader$Handler -wangdaye.com.geometricweather.R$string: int settings_summary_background_free_off -com.google.android.material.R$drawable: int abc_spinner_mtrl_am_alpha -androidx.constraintlayout.widget.R$style: int Platform_AppCompat -android.didikee.donate.R$styleable: int MenuView_android_itemBackground -com.turingtechnologies.materialscrollbar.Indicator: void setRTL(boolean) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_SLEEP_ON_RELEASE_VALIDATOR -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Surface -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_id -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetStartWithNavigation -androidx.constraintlayout.widget.R$styleable: int MenuItem_iconTintMode -cyanogenmod.themes.IThemeService$Stub: cyanogenmod.themes.IThemeService asInterface(android.os.IBinder) -wangdaye.com.geometricweather.R$drawable: int notification_bg_low_pressed -okio.Options: void buildTrieRecursive(long,okio.Buffer,int,java.util.List,int,int,java.util.List) -com.turingtechnologies.materialscrollbar.R$attr: int theme -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalGap -com.google.android.material.R$color: int material_slider_thumb_color -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory[] values() -okhttp3.internal.cache.DiskLruCache$Snapshot: long sequenceNumber -com.google.android.material.slider.RangeSlider: int getTrackHeight() -androidx.constraintlayout.widget.R$layout: int select_dialog_item_material -james.adaptiveicon.R$attr: int buttonGravity -wangdaye.com.geometricweather.R$id: int progress_horizontal -android.didikee.donate.R$id: int scrollIndicatorDown -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent INSTANCE +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupMenu +io.reactivex.Observable: io.reactivex.Observable doOnLifecycle(io.reactivex.functions.Consumer,io.reactivex.functions.Action) com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -com.turingtechnologies.materialscrollbar.R$id: int add -com.google.android.material.R$styleable: int[] MaterialShape -androidx.lifecycle.ProcessLifecycleOwner -com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_backgroundTint -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.reflect.Type responseType -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: long EpochEndTime -wangdaye.com.geometricweather.R$attr: int bsb_show_section_mark -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Filter -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -com.xw.repo.bubbleseekbar.R$style: int Base_V26_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String getFrom() -com.turingtechnologies.materialscrollbar.R$styleable: int[] TextAppearance -wangdaye.com.geometricweather.R$string: int widget_clock_day_week -okhttp3.internal.cache.CacheStrategy$Factory: long sentRequestMillis -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogTheme -wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionIcon -cyanogenmod.platform.Manifest$permission: java.lang.String PUBLISH_CUSTOM_TILE -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -com.turingtechnologies.materialscrollbar.R$attr: int iconSize -wangdaye.com.geometricweather.R$attr: int controlBackground -wangdaye.com.geometricweather.R$styleable: int MaterialRadioButton_useMaterialThemeColors -androidx.recyclerview.R$id: int normal -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_item_min_width -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Info -com.turingtechnologies.materialscrollbar.R$layout: int design_menu_item_action_area -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -okhttp3.Cache: int readInt(okio.BufferedSource) -io.reactivex.internal.util.VolatileSizeArrayList: java.util.ListIterator listIterator() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeStepGranularity -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: double GmtOffset -com.google.android.material.R$bool: int mtrl_btn_textappearance_all_caps -androidx.swiperefreshlayout.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$dimen: int widget_current_weather_icon_size -android.didikee.donate.R$dimen: int abc_action_bar_overflow_padding_end_material -retrofit2.RequestBuilder: void addHeaders(okhttp3.Headers) -androidx.preference.R$style: int Base_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light_focused -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_5 -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_disabled_holo_dark -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelMenuListWidth -okhttp3.internal.http.HttpCodec: okhttp3.Response$Builder readResponseHeaders(boolean) -okhttp3.internal.Util: java.nio.charset.Charset UTF_32_LE -wangdaye.com.geometricweather.R$styleable: int RecycleListView_paddingBottomNoButtons -okhttp3.internal.http2.Http2Connection: int AWAIT_PING -androidx.constraintlayout.widget.R$color: int switch_thumb_disabled_material_dark -androidx.appcompat.R$color: int abc_primary_text_material_dark -com.google.android.material.R$styleable: int AppCompatSeekBar_android_thumb -okio.Util: long reverseBytesLong(long) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -com.jaredrummler.android.colorpicker.R$color: int abc_secondary_text_material_light -androidx.hilt.work.R$attr: int alpha -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabView -androidx.hilt.lifecycle.R$id: int tag_accessibility_actions -androidx.appcompat.R$id: int normal -androidx.preference.R$id: int accessibility_custom_action_21 -cyanogenmod.app.ICustomTileListener$Stub$Proxy: android.os.IBinder asBinder() -androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context,android.util.AttributeSet) -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setIcons(java.lang.String) -androidx.appcompat.widget.Toolbar: void setTitleMarginBottom(int) -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_elevation -com.google.android.material.R$styleable: int[] ScrollingViewBehavior_Layout -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String aqiText -androidx.appcompat.R$string: int search_menu_title -androidx.dynamicanimation.R$dimen: int compat_button_inset_vertical_material -androidx.lifecycle.LiveData$LifecycleBoundObserver: void detachObserver() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$dimen: int trend_item_width -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -io.reactivex.Observable: io.reactivex.Observable window(long) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon -com.google.android.material.R$style: int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton -androidx.hilt.lifecycle.R$id: int dialog_button -com.google.android.material.R$id: int design_bottom_sheet -androidx.constraintlayout.widget.R$attr: int dialogPreferredPadding -androidx.appcompat.R$dimen: int highlight_alpha_material_dark -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onAttach(android.os.IBinder) -androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Large -androidx.preference.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -com.google.android.material.datepicker.MaterialCalendar: MaterialCalendar() -wangdaye.com.geometricweather.R$styleable: int KeyCycle_framePosition -com.google.android.material.R$styleable: int Chip_iconStartPadding -androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.FragmentActivity) -com.turingtechnologies.materialscrollbar.R$id: int top -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getDistrict() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 -androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context,android.util.AttributeSet) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onKeyguardDismissed() -android.support.v4.os.IResultReceiver$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.google.android.material.R$drawable: int material_ic_calendar_black_24dp -androidx.preference.R$style: int TextAppearance_AppCompat_Medium -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_exitFadeDuration -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language valueOf(java.lang.String) -androidx.transition.R$styleable: int FontFamily_fontProviderCerts -com.jaredrummler.android.colorpicker.R$attr: int windowNoTitle -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit valueOf(java.lang.String) -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -com.google.android.material.R$styleable: int Constraint_layout_constraintBaseline_creator -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_indeterminate -com.jaredrummler.android.colorpicker.R$attr: int singleLineTitle -wangdaye.com.geometricweather.R$attr: int cpv_colorShape -wangdaye.com.geometricweather.R$attr: int materialButtonStyle -com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior: AppBarLayout$ScrollingViewBehavior(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Date -androidx.hilt.work.R$id: int text2 -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language FRENCH -com.turingtechnologies.materialscrollbar.MaterialScrollBar: int getMode() -androidx.appcompat.R$style: int TextAppearance_AppCompat_SearchResult_Title -com.turingtechnologies.materialscrollbar.R$attr: int itemBackground -wangdaye.com.geometricweather.R$layout: int widget_text -androidx.preference.R$color: int material_grey_850 -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_SCREEN_ON -cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CONTENT_URI -wangdaye.com.geometricweather.R$drawable: int ic_water -androidx.constraintlayout.widget.R$color: int background_floating_material_light -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView_DropDown -okhttp3.internal.connection.RealConnection: java.net.Socket rawSocket -androidx.hilt.lifecycle.R$id: int forever -okio.SegmentedByteString: int[] directory -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Title -android.didikee.donate.R$style: int Base_Widget_AppCompat_Spinner_Underlined -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_17 -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: void onInactive() -com.google.android.material.R$color: int material_blue_grey_800 -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: long serialVersionUID -com.google.android.material.R$style: int AlertDialog_AppCompat -com.google.android.material.R$id: int header_title -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_pressed_z -com.google.android.material.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -androidx.appcompat.resources.R$styleable: int GradientColor_android_endX -androidx.lifecycle.extensions.R$anim: int fragment_open_exit -com.google.android.material.R$styleable: int Chip_closeIcon +androidx.appcompat.R$drawable: int abc_ic_ab_back_material +james.adaptiveicon.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableLeft +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemHorizontalTranslationEnabled(boolean) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +cyanogenmod.externalviews.KeyguardExternalView$8: cyanogenmod.externalviews.KeyguardExternalView this$0 +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object PARENT_DISPOSED +androidx.transition.R$style: int TextAppearance_Compat_Notification_Info +cyanogenmod.profiles.ConnectionSettings +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_TextView +okio.AsyncTimeout$1 +retrofit2.RequestFactory: retrofit2.ParameterHandler[] parameterHandlers +wangdaye.com.geometricweather.R$attr: int alertDialogTheme +com.google.android.material.R$style: int Theme_Design +com.bumptech.glide.R$layout: int notification_template_icon_group +androidx.appcompat.R$string: int abc_action_mode_done +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarWidgetTheme +androidx.preference.R$styleable: int EditTextPreference_useSimpleSummaryProvider +androidx.hilt.work.R$layout: R$layout() +com.google.android.material.R$attr: int actionBarItemBackground +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: void setFrom(java.lang.String) +com.google.android.material.R$string: int abc_activity_chooser_view_see_all +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: double Value +com.google.android.material.slider.Slider: android.content.res.ColorStateList getHaloTintList() +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabText +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarPopupTheme +wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_layout +androidx.swiperefreshlayout.R$attr: R$attr() +com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_layout +com.amap.api.fence.DistrictItem: DistrictItem() +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason[] values() +com.google.android.material.R$anim: int abc_popup_exit +androidx.appcompat.R$style: int AlertDialog_AppCompat +androidx.transition.R$attr: int fontProviderFetchTimeout +com.google.gson.stream.JsonReader: java.lang.String nextQuotedValue(char) +wangdaye.com.geometricweather.R$attr: int cpv_showColorShades +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_checkable +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ITALIAN +cyanogenmod.weatherservice.IWeatherProviderService$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed Speed +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginLeft +retrofit2.Utils: java.lang.reflect.Type resolveTypeVariable(java.lang.reflect.Type,java.lang.Class,java.lang.reflect.TypeVariable) +io.reactivex.Observable: io.reactivex.Single contains(java.lang.Object) +okio.BufferedSource: void skip(long) +cyanogenmod.library.R$styleable: R$styleable() +james.adaptiveicon.R$string: R$string() +com.google.android.material.R$dimen: int mtrl_calendar_navigation_bottom_padding +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoldIndex() +androidx.loader.R$id: int icon_group +io.reactivex.internal.subscriptions.EmptySubscription: int requestFusion(int) +james.adaptiveicon.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline4 +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String m +wangdaye.com.geometricweather.R$attr: int textAllCaps +wangdaye.com.geometricweather.settings.activities.SelectProviderActivity: SelectProviderActivity() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +androidx.lifecycle.SavedStateHandleController$1 +com.google.android.material.R$attr: int windowMinWidthMajor +com.google.android.material.R$attr: int onNegativeCross +androidx.customview.R$id: int notification_main_column +com.jaredrummler.android.colorpicker.R$string: int abc_prepend_shortcut_label +android.didikee.donate.R$attr: int listPreferredItemPaddingRight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSo2Desc(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getUvLevel() +androidx.viewpager.R$dimen: int notification_large_icon_width +com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_top_material +androidx.customview.R$id: R$id() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: cyanogenmod.externalviews.ExternalViewProviderService$Provider this$1 +androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabView +androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat_Dark +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_queryBackground +androidx.preference.R$styleable: int AppCompatTheme_toolbarStyle +okhttp3.internal.http2.Http2Connection$7 +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.SingleObserver downstream +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setWind(double,double,int) +io.reactivex.Observable: void blockingSubscribe(io.reactivex.Observer) +cyanogenmod.externalviews.KeyguardExternalView: java.lang.String CATEGORY_KEYGUARD_GRANT_PERMISSION +cyanogenmod.app.CustomTile$ExpandedStyle: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Fullscreen +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setFitSide(int) +androidx.lifecycle.LifecycleRegistry: androidx.arch.core.internal.FastSafeIterableMap mObserverMap +wangdaye.com.geometricweather.R$styleable: int NavigationView_headerLayout +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeApparentTemperature(java.lang.Integer) +androidx.preference.R$styleable: int[] ViewBackgroundHelper +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_buttonGravity +com.xw.repo.bubbleseekbar.R$color: int abc_btn_colored_borderless_text_material +androidx.vectordrawable.animated.R$drawable: int notification_bg_normal_pressed +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyleSmall +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingStart +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator +androidx.constraintlayout.widget.R$dimen: int abc_cascading_menus_min_smallest_width +com.turingtechnologies.materialscrollbar.R$attr: int maxImageSize +androidx.preference.R$style: int Base_Theme_AppCompat +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_weather +com.google.android.material.R$id: int listMode +james.adaptiveicon.R$color: int material_deep_teal_500 +com.jaredrummler.android.colorpicker.R$style: int Platform_AppCompat +wangdaye.com.geometricweather.R$styleable: int Toolbar_android_gravity +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setThunderstormPrecipitationProbability(java.lang.Float) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX getWind() +com.google.android.material.chip.ChipGroup: void setCheckedId(int) +androidx.appcompat.R$color: int material_grey_900 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: java.lang.String Unit +androidx.appcompat.R$attr: int colorPrimary +com.google.android.material.R$attr: int closeIcon +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetLeft +okhttp3.RealCall: boolean isExecuted() +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemIconDisabledAlpha +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator parent +okhttp3.Handshake: java.util.List peerCertificates +cyanogenmod.os.Concierge$ParcelInfo: boolean mCreation +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver inner +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_menuCategory +com.turingtechnologies.materialscrollbar.CustomIndicator +wangdaye.com.geometricweather.R$id: int item_trend_daily +okhttp3.Headers: java.util.Map toMultimap() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: AccuDailyResult$DailyForecasts$AirAndPollen() +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +wangdaye.com.geometricweather.R$array: int speed_unit_voices +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +com.google.android.material.R$style: int Base_Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_color +androidx.drawerlayout.R$dimen: int notification_action_icon_size +okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeOptionalWithoutCheckedException(java.lang.Object,java.lang.Object[]) +com.bumptech.glide.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf +com.amap.api.fence.GeoFenceManagerBase: void pauseGeoFence() +wangdaye.com.geometricweather.R$layout: int notification_multi_city +com.google.android.material.textfield.TextInputLayout: void setHelperTextColor(android.content.res.ColorStateList) +com.google.android.material.R$dimen: int mtrl_textinput_start_icon_margin_end +okhttp3.MultipartBody$Builder: MultipartBody$Builder() +okhttp3.ConnectionSpec$Builder: boolean supportsTlsExtensions +com.bumptech.glide.integration.okhttp.R$attr: int layout_insetEdge +androidx.appcompat.R$dimen: int compat_notification_large_icon_max_width +com.google.android.material.transformation.TransformationChildCard: TransformationChildCard(android.content.Context) +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter this$0 +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void slideLockscreenIn() +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_grey +androidx.appcompat.widget.FitWindowsFrameLayout +com.amap.api.location.AMapLocationClientOption: long b +androidx.legacy.coreutils.R$id: R$id() +com.amap.api.location.AMapLocationClient +androidx.fragment.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: java.lang.String Unit +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String getType() +androidx.hilt.work.R$dimen: int notification_big_circle_margin +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipMinHeight +androidx.constraintlayout.widget.R$layout: int notification_template_part_chronometer +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void completion() +androidx.activity.R$dimen: int compat_button_inset_horizontal_material +com.amap.api.fence.GeoFence: com.amap.api.location.DPoint getCenter() +james.adaptiveicon.R$id: int async +com.turingtechnologies.materialscrollbar.DragScrollBar: DragScrollBar(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetAlertEntityList() +com.google.android.material.R$styleable: int Spinner_popupTheme +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder writeTimeout(java.time.Duration) +okhttp3.Authenticator +com.xw.repo.bubbleseekbar.R$attr: int backgroundTint +androidx.cardview.widget.CardView: int getContentPaddingRight() +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_growMode +wangdaye.com.geometricweather.db.entities.DailyEntity: void setAqiIndex(java.lang.Integer) +androidx.preference.R$styleable: int SearchView_android_focusable +cyanogenmod.externalviews.ExternalViewProviderService$1: cyanogenmod.externalviews.ExternalViewProviderService this$0 +androidx.legacy.coreutils.R$color: int notification_action_color_filter +okhttp3.Callback: void onFailure(okhttp3.Call,java.io.IOException) +com.google.android.material.bottomnavigation.BottomNavigationView: android.graphics.drawable.Drawable getItemBackground() +com.google.android.material.R$style: int Widget_MaterialComponents_FloatingActionButton +cyanogenmod.profiles.ConnectionSettings: int mSubId +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.functions.Function mapper +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animAutostart +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetEnd +androidx.constraintlayout.widget.R$styleable: int PropertySet_layout_constraintTag +wangdaye.com.geometricweather.R$color: int cardview_light_background +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$string: int about_circular_progress_view +cyanogenmod.util.ColorUtils: double[] sColorTable +wangdaye.com.geometricweather.R$attr: int boxCornerRadiusTopStart +wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationX +okhttp3.Cache$Entry: okhttp3.Handshake handshake +androidx.hilt.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.R$dimen: int widget_grid_1 +okhttp3.internal.http2.Http2Stream: void addBytesToWriteWindow(long) +okhttp3.Cookie$Builder: boolean persistent +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light +okhttp3.internal.http2.Hpack$Reader: java.util.List headerList +okhttp3.internal.connection.RouteSelector: java.net.Proxy nextProxy() +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String _ID +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onPositiveCross +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatSeekBar +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SeekBar +james.adaptiveicon.R$dimen: int tooltip_y_offset_non_touch +android.didikee.donate.R$style: int AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.R$style +com.jaredrummler.android.colorpicker.R$attr: int preferenceScreenStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginRight +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_toTopOf +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowNoTitle +wangdaye.com.geometricweather.settings.activities.DailyTrendDisplayManageActivity +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorPrimaryDark +wangdaye.com.geometricweather.remoteviews.config.Hilt_HourlyTrendWidgetConfigActivity +androidx.core.widget.NestedScrollView: float getVerticalScrollFactorCompat() +okio.Base64: java.lang.String encode(byte[]) +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_summaryOn +james.adaptiveicon.R$styleable: int Toolbar_titleMarginBottom +com.google.android.material.R$style: int TextAppearance_Compat_Notification_Info +cyanogenmod.themes.ThemeManager: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: AccuCurrentResult$WindChillTemperature$Metric() +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.preference.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: java.lang.String color +androidx.appcompat.widget.ActionBarOverlayLayout: void setHideOnContentScrollEnabled(boolean) +android.didikee.donate.R$id: int listMode +retrofit2.http.PATCH +androidx.preference.R$style: int Base_Widget_AppCompat_SearchView +androidx.constraintlayout.widget.R$attr: int drawableStartCompat +com.google.android.material.R$id: int parallax +com.google.android.material.R$styleable: int ActionMode_background +cyanogenmod.app.Profile$LockMode: int INSECURE +okio.AsyncTimeout: boolean inQueue +wangdaye.com.geometricweather.R$color: int background_material_light +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onComplete() +androidx.appcompat.R$dimen +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSyncDuration +com.turingtechnologies.materialscrollbar.R$attr: int borderWidth +retrofit2.OkHttpCall: java.lang.Object clone() +com.xw.repo.bubbleseekbar.R$id: int scrollIndicatorDown +wangdaye.com.geometricweather.R$styleable: int[] SignInButton +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView +com.turingtechnologies.materialscrollbar.R$styleable: int[] LinearLayoutCompat +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_border_width +wangdaye.com.geometricweather.db.entities.WeatherEntity: long getPublishTime() +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_scaleX +androidx.constraintlayout.widget.R$styleable: int MotionHelper_onShow +com.google.android.material.R$styleable: int CollapsingToolbarLayout_statusBarScrim +wangdaye.com.geometricweather.R$layout: int abc_popup_menu_header_item_layout +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeMinTextSize +androidx.appcompat.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +com.jaredrummler.android.colorpicker.R$attr: int maxHeight +android.didikee.donate.R$styleable: int ActionBar_contentInsetEndWithActions +wangdaye.com.geometricweather.R$attr: int behavior_halfExpandedRatio +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean requestIsUnrepeatable(java.io.IOException,okhttp3.Request) +okhttp3.internal.cache2.Relay: java.lang.Thread upstreamReader +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Dialog +androidx.preference.R$styleable: int TextAppearance_fontFamily +androidx.appcompat.widget.Toolbar: void setTitleMarginTop(int) +androidx.customview.R$dimen: int notification_large_icon_height +androidx.hilt.work.R$styleable: int ColorStateListItem_android_color +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long serialVersionUID +androidx.appcompat.R$id: int unchecked +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String getWeather() +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_fragment +com.google.android.material.R$styleable: int Constraint_flow_firstHorizontalStyle +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconTintMode +com.google.android.material.R$dimen: int test_mtrl_calendar_day_cornerSize +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_7 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean brandInfo +com.google.android.material.R$id: int src_in +androidx.hilt.R$id: int tag_accessibility_pane_title +okhttp3.internal.http2.PushObserver: boolean onRequest(int,java.util.List) +cyanogenmod.app.Profile$NotificationLightMode: int DISABLE +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getSo2Color(android.content.Context) +wangdaye.com.geometricweather.R$layout: int notification_base +wangdaye.com.geometricweather.R$id: int activity_alert_toolbar +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Toolbar +wangdaye.com.geometricweather.R$dimen: int abc_dialog_min_width_major +com.amap.api.fence.GeoFence: int TYPE_AMAPPOI +wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableCompat +com.google.android.material.R$styleable: int[] FloatingActionButton_Behavior_Layout +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Borderless +wangdaye.com.geometricweather.R$drawable: int selectable_item_background +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_id +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCopyDrawable +androidx.hilt.lifecycle.R$attr: int fontProviderQuery +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: int requestFusion(int) +com.google.android.material.chip.Chip: void setOnCheckedChangeListenerInternal(android.widget.CompoundButton$OnCheckedChangeListener) +okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,java.lang.String,boolean,boolean,boolean,boolean) +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActivityChooserView +androidx.preference.R$attr: int listPreferredItemHeightLarge +android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$style: int widget_text_clock_analog_Dark +android.didikee.donate.R$color: int bright_foreground_inverse_material_dark +wangdaye.com.geometricweather.R$string: int feedback_get_weather_failed +okhttp3.internal.Util: int skipLeadingAsciiWhitespace(java.lang.String,int,int) +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderQuery +io.reactivex.Observable: io.reactivex.Observable skip(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okio.BufferedSource: int read(byte[]) +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver parent +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent +io.reactivex.internal.observers.BasicIntQueueDisposable: boolean isDisposed() +android.didikee.donate.R$attr: int actionMenuTextColor +com.turingtechnologies.materialscrollbar.R$id: int snackbar_action +com.xw.repo.bubbleseekbar.R$attr: int actionBarStyle +com.turingtechnologies.materialscrollbar.R$style: int CardView_Light +wangdaye.com.geometricweather.R$string: int key_widget_clock_day_details +androidx.constraintlayout.widget.R$attr: int listLayout +cyanogenmod.app.ProfileGroup: ProfileGroup(java.util.UUID,boolean) +okio.ByteString: okio.ByteString of(byte[]) +okio.AsyncTimeout: java.io.IOException exit(java.io.IOException) +androidx.preference.R$drawable: int notification_bg_normal +com.google.android.material.R$styleable: int ProgressIndicator_indicatorColor +com.google.android.material.R$style: int Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.db.entities.HistoryEntity: int nighttimeTemperature +retrofit2.Converter$Factory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +wangdaye.com.geometricweather.R$id: int notification_base +wangdaye.com.geometricweather.R$styleable: int[] MotionScene +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_title +androidx.lifecycle.LiveData: void dispatchingValue(androidx.lifecycle.LiveData$ObserverWrapper) +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_summaryOff +com.google.android.material.R$dimen: int mtrl_calendar_action_confirm_button_min_width +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getTag() +com.turingtechnologies.materialscrollbar.R$attr: int layout_anchor +androidx.preference.R$attr: int actionModeCloseDrawable +com.bumptech.glide.R$styleable: int FontFamily_fontProviderQuery +androidx.viewpager2.R$style: R$style() +okhttp3.internal.http1.Http1Codec$AbstractSource: Http1Codec$AbstractSource(okhttp3.internal.http1.Http1Codec) +com.jaredrummler.android.colorpicker.R$dimen: int abc_config_prefDialogWidth +okhttp3.internal.tls.BasicCertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) +com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_Surface +wangdaye.com.geometricweather.R$styleable: int Preference_fragment +okio.Buffer: okio.BufferedSink writeInt(int) +wangdaye.com.geometricweather.R$array: int week_icon_modes +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice advice +okhttp3.internal.cache2.Relay: long FILE_HEADER_SIZE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setAlerts(java.util.List) +wangdaye.com.geometricweather.R$styleable: int[] ClockFaceView +com.google.android.material.R$id: int accessibility_custom_action_23 +com.google.android.material.R$styleable: int AppCompatTheme_listDividerAlertDialog +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: float getMax() +wangdaye.com.geometricweather.R$styleable: int Chip_chipMinHeight +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter +androidx.preference.R$id: int parentPanel +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String ALARM_ID +okhttp3.Cache$CacheResponseBody: java.lang.String contentLength +wangdaye.com.geometricweather.R$layout: int widget_day_mini +okhttp3.internal.ws.RealWebSocket$Message: RealWebSocket$Message(int,okio.ByteString) +okhttp3.MultipartBody$Builder: MultipartBody$Builder(java.lang.String) +com.google.android.material.R$styleable: int[] ActionBarLayout +androidx.appcompat.R$attr: int contentInsetRight +cyanogenmod.os.Build$CM_VERSION +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowDy +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial Imperial +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Primary +retrofit2.BuiltInConverters$UnitResponseBodyConverter: BuiltInConverters$UnitResponseBodyConverter() +androidx.drawerlayout.R$id: int right_side +com.google.android.material.R$style: int Widget_AppCompat_AutoCompleteTextView +com.jaredrummler.android.colorpicker.R$color: int abc_hint_foreground_material_dark +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: int getFillColor() +okhttp3.internal.io.FileSystem: void delete(java.io.File) +androidx.appcompat.R$style: int Base_Widget_AppCompat_SearchView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean +james.adaptiveicon.R$styleable: int TextAppearance_android_textSize +androidx.preference.R$style: int Base_Widget_AppCompat_ListPopupWindow +androidx.constraintlayout.widget.R$attr: int searchIcon +wangdaye.com.geometricweather.settings.activities.PreviewIconActivity +com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode valueOf(java.lang.String) +androidx.appcompat.widget.AppCompatTextView: void setSupportCompoundDrawablesTintList(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$string: int abc_capital_on +com.jaredrummler.android.colorpicker.R$attr: int autoSizePresetSizes +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_2 +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_FORWARD_LOOKUP_VALIDATOR +androidx.preference.R$styleable: int MenuItem_tooltipText +cyanogenmod.themes.IThemeService: boolean processThemeResources(java.lang.String) +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_focused +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_percent +androidx.constraintlayout.widget.R$drawable: int abc_ab_share_pack_mtrl_alpha +androidx.lifecycle.extensions.R$id: int actions +retrofit2.adapter.rxjava2.Result +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String mName +com.xw.repo.bubbleseekbar.R$id: int home +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_toLeftOf +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_progress +androidx.loader.R$style: R$style() +androidx.drawerlayout.R$string +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getSummary(android.content.Context,java.util.List) +androidx.core.R$id: int accessibility_custom_action_26 +com.google.android.material.R$attr: int layout_collapseMode +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.R$id: int transparency_title +wangdaye.com.geometricweather.R$styleable: int LoadingImageView_imageAspectRatio +com.amap.api.fence.PoiItem: java.lang.String getAddress() +okhttp3.internal.http2.Settings: int INITIAL_WINDOW_SIZE +org.greenrobot.greendao.AbstractDaoSession: long insertOrReplace(java.lang.Object) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: boolean requestDismissAndStartActivity(android.content.Intent) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListMenuView +android.didikee.donate.R$styleable: int View_paddingStart +okhttp3.internal.http2.Settings: int COUNT +okhttp3.TlsVersion +io.reactivex.internal.disposables.DisposableHelper: boolean dispose(java.util.concurrent.atomic.AtomicReference) +android.didikee.donate.R$id: int action_bar_subtitle +cyanogenmod.app.CustomTile$ExpandedStyle: cyanogenmod.app.CustomTile$ExpandedItem[] expandedItems +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: cyanogenmod.app.ThemeVersion$ComponentVersion fwCompVersionToSdkVersion(android.content.ThemeVersion$ComponentVersion) +retrofit2.Response: retrofit2.Response error(int,okhttp3.ResponseBody) +androidx.appcompat.R$id: int accessibility_custom_action_26 +okhttp3.internal.connection.RouteException: java.io.IOException firstException +androidx.constraintlayout.widget.R$attr: int textAppearanceListItemSecondary +cyanogenmod.hardware.ThermalListenerCallback$State +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_MENU_LONG_PRESS_ACTION +james.adaptiveicon.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_android_foregroundGravity +androidx.transition.R$id: int parent_matrix +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: java.lang.Float value +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_UPDATE_TIME +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 +com.turingtechnologies.materialscrollbar.R$id: int coordinator +cyanogenmod.profiles.StreamSettings: void setOverride(boolean) +androidx.hilt.work.R$id: int accessibility_custom_action_28 +wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: DaoMaster$OpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory) +androidx.lifecycle.service.R: R() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +com.google.gson.stream.JsonReader: int PEEKED_BUFFERED +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginTop() +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String country +com.google.android.material.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +wangdaye.com.geometricweather.R$string: int learn_more wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_android_src -androidx.constraintlayout.widget.R$styleable: int Constraint_android_minHeight -com.google.android.material.R$dimen: int notification_subtext_size -com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_minimum_range -com.google.gson.stream.JsonWriter: boolean isLenient() -okhttp3.internal.http2.Header: java.lang.String RESPONSE_STATUS_UTF8 -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.IBinder onBind(android.content.Intent) -androidx.appcompat.R$dimen: int abc_text_size_display_3_material -androidx.lifecycle.extensions.R$dimen: int compat_control_corner_material -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListPopupWindow -james.adaptiveicon.R$dimen: int abc_edit_text_inset_top_material -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitationProbability -retrofit2.KotlinExtensions$await$4$2: KotlinExtensions$await$4$2(kotlinx.coroutines.CancellableContinuation) -androidx.appcompat.R$id: int accessibility_custom_action_29 -androidx.vectordrawable.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$string: int not_set -retrofit2.ParameterHandler$RawPart: retrofit2.ParameterHandler$RawPart INSTANCE -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onComplete() -androidx.viewpager.widget.PagerTitleStrip: PagerTitleStrip(android.content.Context) -com.google.android.material.R$attr: int fontStyle -com.bumptech.glide.R$id: int chronometer -com.turingtechnologies.materialscrollbar.R$style: int Base_DialogWindowTitle_AppCompat -com.bumptech.glide.R$styleable: int GradientColor_android_startX -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog -wangdaye.com.geometricweather.R$styleable: int NavigationView_elevation -okhttp3.OkHttpClient$1: void apply(okhttp3.ConnectionSpec,javax.net.ssl.SSLSocket,boolean) -wangdaye.com.geometricweather.R$drawable: int notif_temp_3 -wangdaye.com.geometricweather.R$id: int info -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline3 -retrofit2.SkipCallbackExecutorImpl -cyanogenmod.themes.ThemeManager$2$1: void run() -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String city -wangdaye.com.geometricweather.R$color: int mtrl_btn_text_color_selector -okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_3 -wangdaye.com.geometricweather.R$attr: int telltales_velocityMode -androidx.appcompat.R$styleable: int AppCompatTheme_colorControlNormal -androidx.constraintlayout.widget.R$drawable: int abc_ic_go_search_api_material -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_disabled_material_dark -android.didikee.donate.R$string: int abc_action_mode_done -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDataConnectionSelectedOnSub(int) -retrofit2.ParameterHandler$2 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontWeight -androidx.hilt.lifecycle.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX) -androidx.swiperefreshlayout.R$id: int dialog_button -androidx.preference.R$string: int abc_menu_ctrl_shortcut_label -com.jaredrummler.android.colorpicker.R$attr: int actionModeStyle -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.reflect.Type getGenericComponentType() -wangdaye.com.geometricweather.R$string: int settings_category_notification -cyanogenmod.alarmclock.ClockContract$CitiesColumns: android.net.Uri CONTENT_URI -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$attr: int actionBarPopupTheme -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_disabled -wangdaye.com.geometricweather.R$dimen: int mtrl_card_corner_radius -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: AccuCurrentResult$Ceiling$Metric() -okhttp3.internal.http2.Http2Connection: boolean shutdown -retrofit2.Utils -cyanogenmod.profiles.LockSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -okhttp3.EventListener: void connectionAcquired(okhttp3.Call,okhttp3.Connection) -retrofit2.ParameterHandler$Part: ParameterHandler$Part(java.lang.reflect.Method,int,okhttp3.Headers,retrofit2.Converter) -androidx.constraintlayout.widget.R$attr: int seekBarStyle -org.greenrobot.greendao.AbstractDao: java.lang.Object loadByRowId(long) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -com.google.android.material.R$style: int Widget_AppCompat_ActivityChooserView -com.bumptech.glide.integration.okhttp.R$id: int normal -androidx.legacy.coreutils.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval[] values() -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_dialogType -com.google.android.material.R$attr: int errorIconTint -androidx.appcompat.widget.AppCompatTextView: void setAutoSizeTextTypeWithDefaults(int) -okhttp3.RealCall$AsyncCall: okhttp3.Request request() -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity -retrofit2.adapter.rxjava2.HttpException -androidx.vectordrawable.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_light -com.turingtechnologies.materialscrollbar.TouchScrollBar: float getHideRatio() -com.google.android.material.internal.NavigationMenuItemView: void setActionView(android.view.View) -cyanogenmod.providers.CMSettings$Global: java.lang.String WIFI_AUTO_PRIORITIES_CONFIGURATION -com.google.android.material.R$styleable: int Constraint_android_layout_marginLeft -james.adaptiveicon.R$string: int abc_capital_off -retrofit2.KotlinExtensions$await$2$2: void onFailure(retrofit2.Call,java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReferenceArray values -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay day() -wangdaye.com.geometricweather.R$styleable: int Preference_dependency -com.bumptech.glide.R$styleable: R$styleable() -androidx.customview.R$layout: int notification_template_custom_big -androidx.preference.R$dimen: int abc_text_size_caption_material -com.google.android.material.R$styleable: int Chip_chipSurfaceColor -wangdaye.com.geometricweather.R$attr -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: long time -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight -okhttp3.internal.http.HttpHeaders -androidx.preference.R$style: int Base_Widget_AppCompat_ListView_Menu -androidx.appcompat.widget.ActionMenuView: void setOverflowReserved(boolean) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvLevel(java.lang.String) -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -com.google.android.material.R$styleable: int MotionLayout_motionProgress -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_wrapMode -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_font -okhttp3.internal.platform.AndroidPlatform: javax.net.ssl.SSLContext getSSLContext() -com.github.rahatarmanahmed.cpv.CircularProgressView: java.util.List access$100(com.github.rahatarmanahmed.cpv.CircularProgressView) -androidx.lifecycle.SavedStateHandle: java.lang.Object get(java.lang.String) -okhttp3.Call: void cancel() -okhttp3.FormBody: java.util.List encodedNames -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.disposables.Disposable upstream -androidx.coordinatorlayout.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.R$string: int abc_searchview_description_submit -com.bumptech.glide.load.engine.GlideException: void logRootCauses(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorError -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowDy -retrofit2.Utils: void checkNotPrimitive(java.lang.reflect.Type) -retrofit2.BuiltInConverters$UnitResponseBodyConverter -cyanogenmod.os.Build: java.lang.String getString(java.lang.String) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.String getWeatherText() -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: int getPollenColor(android.content.Context,java.lang.Integer) -android.didikee.donate.R$styleable: int PopupWindowBackgroundState_state_above_anchor -androidx.lifecycle.FullLifecycleObserverAdapter: androidx.lifecycle.LifecycleEventObserver mLifecycleEventObserver -okhttp3.internal.ws.RealWebSocket$Message: int formatOpcode -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabTextStyle -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterEnabled -androidx.dynamicanimation.R$attr: int font -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Light -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: android.os.IBinder asBinder() -android.didikee.donate.R$styleable: int LinearLayoutCompat_divider -com.google.android.material.R$id: int mtrl_motion_snapshot_view -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List chuanyi -wangdaye.com.geometricweather.R$dimen: int notification_top_pad -okhttp3.internal.http2.Header: okio.ByteString name -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -com.google.android.material.R$attr: int chipSpacingVertical -okhttp3.OkHttpClient: okhttp3.CookieJar cookieJar -okhttp3.Cookie: int dateCharacterOffset(java.lang.String,int,int,boolean) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SPANISH -com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context) -com.xw.repo.bubbleseekbar.R$attr: int actionMenuTextAppearance -com.google.android.gms.common.SignInButton: void setSize(int) -androidx.viewpager.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_TextView -james.adaptiveicon.R$attr: int colorControlNormal -com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -com.amap.api.fence.GeoFence: long getEnterTime() -com.google.android.material.R$styleable: int View_paddingEnd -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_itemPadding -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedPathSegment(java.lang.String) -okhttp3.RealCall: boolean executed -androidx.preference.R$dimen: int abc_select_dialog_padding_start_material -com.google.android.material.R$id: int info -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX() -androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMark -okhttp3.OkHttpClient$Builder: java.util.List protocols -androidx.vectordrawable.animated.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: HourlyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String windDirection -okhttp3.Dispatcher: int queuedCallsCount() -android.didikee.donate.R$id: int icon -androidx.appcompat.R$styleable: int SwitchCompat_trackTint -wangdaye.com.geometricweather.R$layout: int select_dialog_multichoice_material -cyanogenmod.app.CMTelephonyManager: boolean isSubActive(int) -androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_Dialog -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_unregisterCallback -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge -androidx.appcompat.R$color: int abc_btn_colored_text_material -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -androidx.recyclerview.R$color: int notification_icon_bg_color -com.xw.repo.bubbleseekbar.R$attr: int actionModeCutDrawable -cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_PEOPLE_LOOKUP -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onComplete() -com.google.android.material.R$style: int Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize -android.didikee.donate.R$styleable: int AppCompatTheme_editTextColor -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customIntegerValue -androidx.appcompat.widget.AppCompatTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light_normal -androidx.appcompat.R$attr: int contentInsetEnd -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed -wangdaye.com.geometricweather.R$string: int date_format_widget_short -android.didikee.donate.R$styleable: int AppCompatTheme_controlBackground -androidx.constraintlayout.widget.R$id: int up -com.jaredrummler.android.colorpicker.R$layout: int select_dialog_singlechoice_material -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_2 -okhttp3.logging.HttpLoggingInterceptor$Logger: okhttp3.logging.HttpLoggingInterceptor$Logger DEFAULT -androidx.appcompat.R$dimen: int abc_seekbar_track_background_height_material -wangdaye.com.geometricweather.R$string: int key_notification_temp_icon -cyanogenmod.app.ProfileGroup: void getXmlString(java.lang.StringBuilder,android.content.Context) -okio.Timeout: boolean hasDeadline -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog -com.google.android.material.R$drawable: int abc_cab_background_internal_bg -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextColor(android.content.res.ColorStateList) -androidx.appcompat.R$color: int abc_decor_view_status_guard -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String WALLPAPER_URI -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getPressureVoice(android.content.Context,float) -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date updateDate -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderFetchTimeout -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean fused -io.reactivex.internal.subscribers.StrictSubscriber: org.reactivestreams.Subscriber downstream -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getRagweedIndex() -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog_Alert -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer -androidx.preference.R$style: int Preference_PreferenceScreen_Material -com.google.android.material.R$attr: int lineHeight -io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable valueOf(java.lang.String) -androidx.viewpager.R$attr: int fontProviderAuthority -androidx.preference.R$layout: int preference_category_material -okio.Okio$4 -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_dither -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +androidx.preference.R$attr: int textAppearancePopupMenuHeader +androidx.preference.R$attr: int listChoiceIndicatorMultipleAnimated +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindSpeed +wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_bottom_material +androidx.work.R$layout: int notification_template_custom_big +okio.Buffer: java.io.InputStream inputStream() +okhttp3.logging.LoggingEventListener: LoggingEventListener(okhttp3.logging.HttpLoggingInterceptor$Logger,okhttp3.logging.LoggingEventListener$1) +androidx.appcompat.R$color: int bright_foreground_inverse_material_light +okhttp3.internal.connection.StreamAllocation: java.net.Socket releaseIfNoNewStreams() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: void execute() +androidx.lifecycle.LifecycleDispatcher +com.xw.repo.bubbleseekbar.R$attr: int autoSizeStepGranularity +cyanogenmod.alarmclock.CyanogenModAlarmClock: android.content.Intent createAlarmIntent(android.content.Context) +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +okhttp3.internal.http.RequestLine +wangdaye.com.geometricweather.R$dimen: int material_emphasis_high_type +com.bumptech.glide.R$string +androidx.loader.R$styleable: int GradientColor_android_startY +cyanogenmod.externalviews.ExternalViewProviderService$Provider: int getWindowFlags() +com.google.android.material.R$styleable: int CardView_cardUseCompatPadding +wangdaye.com.geometricweather.R$styleable: int[] MaterialAutoCompleteTextView +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginTop +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_android_layout +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_color_disabled +androidx.preference.R$dimen: int abc_floating_window_z +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_android_indeterminate +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.core.R$id: int accessibility_custom_action_2 +androidx.core.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$attr: int menu +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Title +android.didikee.donate.R$id: int action_bar_root +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$layout: int container_main_sun_moon +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_requestThemeChangeUpdates +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onDetach() +wangdaye.com.geometricweather.R$attr: int customDimension +androidx.lifecycle.SavedStateHandle: java.lang.String VALUES +androidx.lifecycle.LiveData: boolean mDispatchingValue +androidx.constraintlayout.widget.R$color: int primary_material_dark +androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontVariationSettings +android.didikee.donate.R$layout: int abc_alert_dialog_button_bar_material +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: void run() +cyanogenmod.weather.WeatherInfo$DayForecast$1: java.lang.Object createFromParcel(android.os.Parcel) +com.google.android.material.R$styleable: int[] TextAppearance +com.google.android.material.switchmaterial.SwitchMaterial: void setUseMaterialThemeColors(boolean) +com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode FIRST_VISIBLE +androidx.constraintlayout.widget.R$styleable: int Motion_motionPathRotate +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void dispose() +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_elevation +wangdaye.com.geometricweather.R$string: int tree +wangdaye.com.geometricweather.R$id: int top +okio.BufferedSource: int readUtf8CodePoint() +com.google.android.material.textfield.TextInputLayout: int getPlaceholderTextAppearance() +wangdaye.com.geometricweather.R$anim: int x2_decelerate_interpolator +android.didikee.donate.R$styleable: int[] PopupWindowBackgroundState +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: long serialVersionUID +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.String TABLENAME +cyanogenmod.app.CustomTile: void writeToParcel(android.os.Parcel,int) +androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIcon +com.google.android.material.R$styleable: int Tooltip_android_layout_margin +android.didikee.donate.R$dimen: int highlight_alpha_material_colored +com.google.android.material.R$styleable: int KeyAttribute_android_rotationY +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.util.Date getDate() +androidx.preference.R$style: int Platform_V21_AppCompat_Light +wangdaye.com.geometricweather.R$dimen: int material_text_view_test_line_height_override +okhttp3.ConnectionPool: ConnectionPool() +androidx.transition.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource LocalSource +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_gradientRadius +okhttp3.Response: int code +com.jaredrummler.android.colorpicker.R$color: int ripple_material_dark +androidx.transition.R$id: int transition_position +cyanogenmod.app.Profile$ProfileTrigger$1: cyanogenmod.app.Profile$ProfileTrigger createFromParcel(android.os.Parcel) +com.google.android.material.R$drawable: int mtrl_ic_arrow_drop_up +wangdaye.com.geometricweather.R$drawable: int notif_temp_119 +james.adaptiveicon.R$attr: int drawableSize +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial Imperial +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitationProbability() +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_Toolbar +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min +okhttp3.internal.Internal: void setCache(okhttp3.OkHttpClient$Builder,okhttp3.internal.cache.InternalCache) +retrofit2.BuiltInConverters$BufferingResponseBodyConverter: BuiltInConverters$BufferingResponseBodyConverter() +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.util.AtomicThrowable errors +androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String brandId +androidx.work.impl.workers.CombineContinuationsWorker +okhttp3.internal.http2.Hpack$Reader: int dynamicTableIndex(int) +android.didikee.donate.R$drawable: int abc_ic_voice_search_api_material +androidx.hilt.R$integer: R$integer() +io.reactivex.internal.observers.DeferredScalarObserver: void dispose() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar_Small +androidx.preference.R$styleable: int SwitchPreference_android_switchTextOn +androidx.viewpager2.R$id: int accessibility_custom_action_21 +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollEnabled +cyanogenmod.app.suggest.IAppSuggestProvider$Stub androidx.customview.R$styleable: int FontFamilyFont_fontWeight -androidx.appcompat.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String time -com.xw.repo.bubbleseekbar.R$attr: int collapseContentDescription -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalStyle -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeService sService -wangdaye.com.geometricweather.R$attr: int inner_margins -androidx.viewpager2.R$styleable: int GradientColor_android_centerX -cyanogenmod.providers.CMSettings$System: java.lang.String APP_SWITCH_WAKE_SCREEN -androidx.hilt.lifecycle.R$id: int fragment_container_view_tag -com.google.android.material.R$drawable: int abc_text_select_handle_left_mtrl_light -cyanogenmod.providers.CMSettings$System: CMSettings$System() -wangdaye.com.geometricweather.R$string: int week_7 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLBTN_MUSIC_CONTROLS_VALIDATOR -androidx.preference.R$style: int Widget_Support_CoordinatorLayout -com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_inflatedId -androidx.fragment.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.R$drawable: int notif_temp_23 -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: ObservableFlatMapMaybe$FlatMapMaybeObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceStyle -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WINDY -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Long getId() -okhttp3.Dispatcher: void finished(okhttp3.RealCall) -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacingVertical -james.adaptiveicon.R$anim: int abc_grow_fade_in_from_bottom -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$layout: int design_layout_snackbar_include -okhttp3.Route: okhttp3.Address address() -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchPadding -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: java.lang.Throwable error -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_entries -androidx.constraintlayout.widget.R$id: int square -cyanogenmod.app.Profile: void setNotificationLightMode(int) -androidx.preference.R$attr: int tintMode -okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache$Snapshot snapshot() -wangdaye.com.geometricweather.R$attr: int dividerPadding -com.google.android.material.R$dimen: int mtrl_chip_text_size -cyanogenmod.providers.CMSettings$Secure: java.lang.String PRIVACY_GUARD_DEFAULT -cyanogenmod.util.ColorUtils: ColorUtils() -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_drawableSize -io.reactivex.Observable: void safeSubscribe(io.reactivex.Observer) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getZh_CN() -com.jaredrummler.android.colorpicker.R$layout: int abc_screen_simple -androidx.viewpager.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.R$layout: int container_main_first_card_header -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: java.lang.String desc -androidx.fragment.R$style: int TextAppearance_Compat_Notification_Title -james.adaptiveicon.R$attr: int titleTextAppearance -retrofit2.ServiceMethod: retrofit2.ServiceMethod parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method) -cyanogenmod.externalviews.KeyguardExternalView$5: KeyguardExternalView$5(cyanogenmod.externalviews.KeyguardExternalView) -androidx.preference.R$styleable: int[] CompoundButton -james.adaptiveicon.R$id: int screen -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView -com.google.android.material.floatingactionbutton.FloatingActionButton: void show(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: int colorId -wangdaye.com.geometricweather.R$drawable: int notif_temp_5 -com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_android_background -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_126 -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.Long id -android.support.v4.os.IResultReceiver$Default: IResultReceiver$Default() -androidx.swiperefreshlayout.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$layout: int design_menu_item_action_area -android.didikee.donate.R$styleable: int AlertDialog_buttonIconDimen -androidx.constraintlayout.widget.R$drawable: int abc_ic_ab_back_material -com.google.android.material.datepicker.RangeDateSelector -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalBias -okio.RealBufferedSource -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ACTIVE -com.amap.api.location.AMapLocation: com.amap.api.location.AMapLocationQualityReport c +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog +android.didikee.donate.R$styleable: int MenuGroup_android_id +io.reactivex.Observable: io.reactivex.Observable interval(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean set(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: void cancel() +android.didikee.donate.R$styleable: int ActionMode_titleTextStyle +com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_toolbar +androidx.constraintlayout.widget.R$attr: int subtitleTextColor +androidx.lifecycle.extensions.R$styleable: int Fragment_android_name +androidx.appcompat.widget.AppCompatCheckBox: void setBackgroundDrawable(android.graphics.drawable.Drawable) +com.google.android.material.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: AccuDailyResult$DailyForecasts$Day$WindGust() +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton +okhttp3.internal.http1.Http1Codec$AbstractSource +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$attr: int goIcon +androidx.core.R$styleable: int FontFamilyFont_font +androidx.vectordrawable.animated.R$id: int right_icon +com.bumptech.glide.integration.okhttp.R$styleable: int[] GradientColor +androidx.viewpager.widget.PagerTitleStrip +com.xw.repo.bubbleseekbar.R$id: int tag_unhandled_key_listeners +com.bumptech.glide.integration.okhttp.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.R$color: int material_blue_grey_900 +wangdaye.com.geometricweather.R$id: int action_settings +retrofit2.Utils$WildcardTypeImpl +okhttp3.ConnectionPool: okhttp3.internal.connection.RealConnection get(okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) +cyanogenmod.app.ProfileGroup: boolean mDefaultGroup +james.adaptiveicon.R$dimen: int abc_action_button_min_height_material +com.xw.repo.bubbleseekbar.R$dimen: int abc_alert_dialog_button_dimen +com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_action_area_stub +android.didikee.donate.R$styleable: int AppCompatTheme_android_windowIsFloating +okhttp3.internal.cache.DiskLruCache: void evictAll() +wangdaye.com.geometricweather.R$dimen: int abc_text_size_subhead_material +androidx.viewpager2.R$styleable: int RecyclerView_layoutManager +androidx.loader.R$id: int action_container +androidx.lifecycle.AbstractSavedStateViewModelFactory +james.adaptiveicon.R$dimen: int abc_text_size_menu_header_material +wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_srcCompat +com.google.android.material.button.MaterialButton: void setStrokeWidth(int) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +okhttp3.internal.ws.WebSocketReader$FrameCallback +cyanogenmod.app.Profile: void doSelect(android.content.Context,com.android.internal.policy.IKeyguardService) +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortTemperature(android.content.Context,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +androidx.constraintlayout.widget.R$dimen: int abc_dialog_title_divider_material +androidx.preference.R$styleable: int SwitchPreference_summaryOff +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String LongPhrase +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Large_Inverse +okio.RealBufferedSink: RealBufferedSink(okio.Sink) +androidx.dynamicanimation.R$id: int notification_main_column_container +com.turingtechnologies.materialscrollbar.R$dimen: int hint_pressed_alpha_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun Sun +androidx.appcompat.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +androidx.preference.R$styleable: int AppCompatTheme_radioButtonStyle +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_disabled_holo_light +androidx.preference.R$dimen: int abc_alert_dialog_button_bar_height +androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_android_color +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setAnimationMode(int) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.util.List contextList +okio.Buffer$2: okio.Buffer this$0 +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_max +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconCheckable +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String componentToImageColName(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_fragment +androidx.work.R$id: int accessibility_custom_action_15 +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_voice +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +wangdaye.com.geometricweather.db.entities.HistoryEntity: long time +james.adaptiveicon.R$attr: int searchViewStyle +cyanogenmod.platform.Manifest$permission: java.lang.String MANAGE_PERSISTENT_STORAGE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String date +androidx.lifecycle.ViewModelStore: ViewModelStore() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +com.github.rahatarmanahmed.cpv.CircularProgressView$5: void onAnimationCancel(android.animation.Animator) +androidx.constraintlayout.helper.widget.Flow: void setFirstHorizontalBias(float) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HAZE +james.adaptiveicon.R$styleable: int Toolbar_contentInsetStartWithNavigation +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.R$string: int content_desc_powered_by +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void cancel() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean visibility +androidx.lifecycle.extensions.R$dimen: int notification_main_column_padding_top +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_DarkActionBar +androidx.swiperefreshlayout.R$layout: int notification_action_tombstone +androidx.preference.R$styleable: int Preference_android_dependency +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationY +androidx.cardview.widget.CardView: void setCardBackgroundColor(int) +com.google.android.material.R$attr: int buttonTint +wangdaye.com.geometricweather.db.entities.HourlyEntityDao +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: CaiYunMainlyResult$IndicesBeanX$IndicesBean() +okhttp3.ConnectionPool: java.util.Deque connections +com.turingtechnologies.materialscrollbar.R$attr: int searchViewStyle +com.google.android.material.R$styleable: int AppCompatSeekBar_tickMarkTint +androidx.appcompat.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.R$style: int Base_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$drawable: int googleg_standard_color_18 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_68 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeSplitBackground +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial Imperial +android.didikee.donate.R$drawable: int abc_btn_check_to_on_mtrl_000 +io.reactivex.Observable: io.reactivex.Observable map(io.reactivex.functions.Function) +com.xw.repo.BubbleSeekBar: float getMax() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: long dt +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_large_material +cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(int) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.functions.Function mapper +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: ObservableFlatMapCompletable$FlatMapCompletableMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() +androidx.preference.R$string: int abc_action_menu_overflow_description +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_expanded +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_COLOR_VALIDATOR +androidx.constraintlayout.widget.R$drawable: int abc_tab_indicator_material +androidx.lifecycle.ViewModelStore: void put(java.lang.String,androidx.lifecycle.ViewModel) +wangdaye.com.geometricweather.R$id: int activity_settings_container +androidx.constraintlayout.widget.R$styleable: int PopupWindow_overlapAnchor +androidx.lifecycle.ComputableLiveData$1 +androidx.recyclerview.R$styleable: int RecyclerView_android_orientation +com.amap.api.location.AMapLocation: void setProvince(java.lang.String) +com.jaredrummler.android.colorpicker.R$attr: int cpv_borderColor +okhttp3.MultipartBody$Part: okhttp3.Headers headers() +cyanogenmod.app.Profile: cyanogenmod.profiles.StreamSettings getSettingsForStream(int) +james.adaptiveicon.R$styleable: int Toolbar_titleMarginTop +androidx.viewpager2.R$id: int accessibility_custom_action_24 +io.reactivex.internal.schedulers.ScheduledRunnable: void dispose() +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Load +com.google.android.material.textfield.MaterialAutoCompleteTextView +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline5 +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_track +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +com.google.gson.stream.JsonWriter: void setSerializeNulls(boolean) +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: io.reactivex.internal.queue.SpscArrayQueue queue +android.didikee.donate.R$layout: int select_dialog_multichoice_material +android.didikee.donate.R$style: int Base_Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: int status +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void drain() +com.google.android.gms.common.internal.zzc: android.os.Parcelable$Creator CREATOR +androidx.work.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality airQuality +com.google.android.material.R$styleable: int FloatingActionButton_rippleColor +com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_top_mtrl_alpha +wangdaye.com.geometricweather.R$layout: int cpv_preference_square +okhttp3.Protocol +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +androidx.lifecycle.SingleGeneratedAdapterObserver: SingleGeneratedAdapterObserver(androidx.lifecycle.GeneratedAdapter) +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider mExternalViewProvider +com.google.android.material.R$attr: int behavior_halfExpandedRatio +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_START_VOLUME_VALIDATOR +androidx.fragment.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial Imperial +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index pm10 +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$attr: int initialExpandedChildrenCount +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean Summary +retrofit2.OkHttpCall$NoContentResponseBody: okhttp3.MediaType contentType +androidx.appcompat.R$style: int Widget_AppCompat_SeekBar +com.amap.api.location.AMapLocation: boolean isMock() +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +androidx.preference.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$drawable: int flag_tr +okhttp3.internal.connection.RealConnection: boolean isEligible(okhttp3.Address,okhttp3.Route) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: ObservableGroupJoin$GroupJoinDisposable(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +io.reactivex.internal.observers.BlockingObserver: java.util.Queue queue +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWindLevel() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_MULTIPLE_LEDS_ENABLE_VALIDATOR +com.google.android.gms.base.R$string: int common_google_play_services_enable_text +com.github.rahatarmanahmed.cpv.CircularProgressView: float startAngle +android.didikee.donate.R$style: int Theme_AppCompat +wangdaye.com.geometricweather.R$animator: int weather_snow_2 +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_item_horizontal_padding +androidx.constraintlayout.widget.R$attr: int perpendicularPath_percent +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: ExternalViewProviderService$Provider$ProviderImpl$2(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +androidx.activity.R$dimen: int notification_large_icon_width +com.turingtechnologies.materialscrollbar.R$drawable: int notification_action_background +androidx.appcompat.R$dimen: int abc_disabled_alpha_material_light +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$height +androidx.loader.R$attr: int fontProviderPackage +com.turingtechnologies.materialscrollbar.R$attr: int msb_rightToLeft +retrofit2.converter.gson.GsonRequestBodyConverter: com.google.gson.TypeAdapter adapter +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: int Degrees +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +androidx.preference.R$dimen: int preference_seekbar_padding_horizontal +com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$color: int material_grey_100 +com.google.android.material.R$attr: int badgeGravity +wangdaye.com.geometricweather.R$attr: int contentInsetEnd +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial +androidx.appcompat.R$color: int material_blue_grey_800 +androidx.hilt.work.R$styleable: int GradientColor_android_endX +cyanogenmod.app.ICMStatusBarManager$Stub: java.lang.String DESCRIPTOR +com.xw.repo.bubbleseekbar.R$attr: int titleMargin +com.jaredrummler.android.colorpicker.R$string: int abc_capital_on +cyanogenmod.weatherservice.ServiceRequest: ServiceRequest(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.IWeatherProviderServiceClient) +androidx.coordinatorlayout.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.util.Date getDate() +androidx.multidex.MultiDexApplication: MultiDexApplication() +com.turingtechnologies.materialscrollbar.R$id: int tabMode +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_clear +wangdaye.com.geometricweather.R$layout: int cpv_preference_circle_large +okhttp3.internal.http2.Http2Stream$FramingSource +androidx.preference.R$dimen: int highlight_alpha_material_dark +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode +okio.GzipSource: void consumeTrailer() +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +com.google.android.material.R$styleable: int MaterialButton_cornerRadius +androidx.transition.R$dimen: int notification_right_icon_size +com.google.android.material.chip.ChipGroup +wangdaye.com.geometricweather.R$styleable: int Layout_android_orientation +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +android.support.v4.app.INotificationSideChannel$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.amap.api.location.AMapLocationQualityReport: long getNetUseTime() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogPreferredPadding +com.google.android.material.R$id: int scrollView +com.turingtechnologies.materialscrollbar.R$attr: int suggestionRowLayout +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_change_size_collapse_motion_spec +james.adaptiveicon.R$color: int secondary_text_default_material_dark +androidx.hilt.lifecycle.R$attr: R$attr() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchKeyEvent(android.view.KeyEvent) +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconSize +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Subhead_Inverse +androidx.preference.R$attr: int buttonBarStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_checkboxStyle +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_1 com.turingtechnologies.materialscrollbar.R$attr: int ttcIndex -androidx.lifecycle.LiveData$AlwaysActiveObserver: androidx.lifecycle.LiveData this$0 -androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver: ConstraintProxyUpdateReceiver() +cyanogenmod.themes.ThemeManager: int getProgress() +com.google.android.material.R$attr: int fontProviderPackage +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver +androidx.core.R$id: int chronometer +androidx.lifecycle.extensions.R$layout: R$layout() +com.turingtechnologies.materialscrollbar.R$id: int textSpacerNoButtons +com.google.android.material.button.MaterialButton: android.graphics.drawable.Drawable getIcon() +androidx.appcompat.widget.ActionBarContextView: void setContentHeight(int) +androidx.swiperefreshlayout.R$id: int tag_unhandled_key_listeners +android.didikee.donate.R$id: int textSpacerNoButtons +com.google.android.material.R$styleable: int TextInputLayout_endIconCheckable +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_popupWindowStyle +cyanogenmod.hardware.DisplayMode: int describeContents() +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType valueOf(java.lang.String) +androidx.lifecycle.LiveDataReactiveStreams: LiveDataReactiveStreams() +com.google.android.material.R$attr: int startIconDrawable +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NULL +cyanogenmod.library.R$attr: int type +androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitle +com.baidu.location.indoor.mapversion.c.a$d: void a(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setTempMin(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_121 +androidx.recyclerview.R$drawable: int notification_bg_normal_pressed +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerColor +com.turingtechnologies.materialscrollbar.R$id: int contentPanel +cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$attr: int showAsAction +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_Solid +com.amap.api.location.AMapLocation: com.amap.api.location.AMapLocation clone() +wangdaye.com.geometricweather.R$attr: int shapeAppearanceMediumComponent +com.bumptech.glide.R$id: int start +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeBackground +wangdaye.com.geometricweather.R$styleable: int Preference_android_widgetLayout +com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat_Dark +cyanogenmod.app.CustomTile: CustomTile() +com.google.android.material.R$attr: int hintAnimationEnabled +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small org.greenrobot.greendao.AbstractDaoMaster: AbstractDaoMaster(org.greenrobot.greendao.database.Database,int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: AccuDailyResult$DailyForecasts$Day$TotalLiquid() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -com.google.android.material.R$styleable: int ClockHandView_selectorSize -androidx.preference.R$style: int Base_Widget_AppCompat_Button_Small -androidx.hilt.work.R$styleable: int Fragment_android_name -android.didikee.donate.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_6 -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType SOSOMAP -android.didikee.donate.R$styleable: int SwitchCompat_android_textOn -retrofit2.HttpException -com.google.android.gms.common.SignInButton -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void collapseNotificationPanel() -com.jaredrummler.android.colorpicker.R$style: int Platform_V21_AppCompat -com.google.android.material.R$layout: int material_time_chip -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerComplete() -okhttp3.internal.tls.DistinguishedNameParser: char getEscaped() -androidx.coordinatorlayout.R$dimen: int compat_notification_large_icon_max_width -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_checkboxStyle -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetStart -com.google.android.material.R$styleable: int TextInputLayout_suffixTextAppearance -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleContentDescription(int) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int AlertID -com.amap.api.location.UmidtokenInfo: void setLocAble(boolean) -okio.RealBufferedSink: okio.BufferedSink write(byte[],int,int) -okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallback -wangdaye.com.geometricweather.R$attr: int telltales_tailScale -com.google.android.material.R$style: int Widget_Design_TextInputEditText -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_padding -wangdaye.com.geometricweather.R$id: int notification_base -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date sunRiseDate -com.google.android.material.R$id: int actions -com.amap.api.location.AMapLocation: java.lang.String getProvider() -com.xw.repo.bubbleseekbar.R$style: int Base_V22_Theme_AppCompat -android.support.v4.graphics.drawable.IconCompatParcelizer: IconCompatParcelizer() -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtendMotionSpecResource(int) -androidx.loader.R$dimen: int compat_notification_large_icon_max_height -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.fragment.R$id: int tag_unhandled_key_listeners -com.bumptech.glide.load.engine.GlideException: java.util.List causes -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixText -wangdaye.com.geometricweather.R$style: int Preference_CheckBoxPreference_Material -androidx.constraintlayout.widget.R$attr: int layout_constraintStart_toEndOf +androidx.appcompat.R$styleable: int Toolbar_titleMarginStart +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$attr: int actionBarSplitStyle +com.jaredrummler.android.colorpicker.R$attr: int switchPreferenceStyle +com.google.android.material.R$attr: int helperTextTextAppearance +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_4_00 +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_collapseIcon +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_22 +com.google.android.material.R$attr: int backgroundInsetEnd +androidx.appcompat.R$drawable: int abc_textfield_default_mtrl_alpha +androidx.preference.R$anim: int fragment_open_exit +androidx.recyclerview.R$attr: int fontVariationSettings +com.google.android.material.R$attr: int navigationContentDescription +io.reactivex.Observable: io.reactivex.Observable switchMapSingle(io.reactivex.functions.Function) +com.google.android.material.R$drawable: int design_password_eye +wangdaye.com.geometricweather.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator +cyanogenmod.weather.RequestInfo$1 +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_height +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTag +androidx.preference.R$attr: int statusBarBackground +androidx.appcompat.R$attr: int backgroundTintMode +wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_horizontal_material +com.google.android.material.slider.BaseSlider: void setTickActiveTintList(android.content.res.ColorStateList) +androidx.appcompat.R$styleable: int StateListDrawable_android_constantSize +wangdaye.com.geometricweather.common.basic.models.weather.History: long getTime() +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_AIR_QUALITY +androidx.appcompat.widget.ActionBarContextView: void setTitle(java.lang.CharSequence) +com.google.android.material.R$style: int Widget_AppCompat_Button_Borderless_Colored +com.turingtechnologies.materialscrollbar.R$attr: int actionLayout +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColorItem_android_offset +cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile[] getProfiles() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +com.github.rahatarmanahmed.cpv.CircularProgressView: float actualProgress +com.google.android.material.textfield.TextInputLayout: int getBoxStrokeWidth() +com.google.android.material.R$attr: int actionModeBackground +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_weight +androidx.preference.R$attr: int maxWidth +androidx.transition.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$id: int floating +androidx.appcompat.R$styleable: int GradientColor_android_endY +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String mId +androidx.appcompat.app.AlertController$RecycleListView: AlertController$RecycleListView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.DaoMaster: void dropAllTables(org.greenrobot.greendao.database.Database,boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: long EpochEndTime +com.google.android.material.R$dimen: int item_touch_helper_swipe_escape_max_velocity +io.reactivex.internal.subscriptions.SubscriptionArbiter: org.reactivestreams.Subscription actual +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchGenericMotionEvent(android.view.MotionEvent) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: MfHistoryResult$History$Wind() +com.google.android.material.R$id: int title_template +retrofit2.ParameterHandler$PartMap: int p +wangdaye.com.geometricweather.R$drawable: int ic_search +cyanogenmod.providers.CMSettings$Secure: android.net.Uri CONTENT_URI +wangdaye.com.geometricweather.R$id: int widget_week_icon_4 +androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_sym_shortcut_label +wangdaye.com.geometricweather.R$id: int easeInOut +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog +androidx.drawerlayout.widget.DrawerLayout: void setDrawerLockMode(int) +androidx.viewpager2.R$styleable: int GradientColor_android_tileMode +androidx.lifecycle.extensions.R$styleable: int GradientColorItem_android_color +androidx.constraintlayout.widget.R$attr: int listPreferredItemHeightLarge +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom +wangdaye.com.geometricweather.R$styleable: int Slider_haloRadius +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +wangdaye.com.geometricweather.R$attr: int fabAnimationMode +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_fontFamily +com.xw.repo.bubbleseekbar.R$id: int screen +android.didikee.donate.R$styleable: int Spinner_android_popupBackground +wangdaye.com.geometricweather.R$color: int notification_background_l +com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableTransition +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setDefense(java.util.List) +wangdaye.com.geometricweather.R$attr: int colorPrimary +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: double Value +cyanogenmod.app.suggest.AppSuggestManager: android.graphics.drawable.Drawable loadIcon(cyanogenmod.app.suggest.ApplicationSuggestion) +okio.Timeout: okio.Timeout deadline(long,java.util.concurrent.TimeUnit) +okhttp3.Cache: int VERSION +com.google.android.material.R$id: int selection_type +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +com.google.android.material.R$attr: int tabIndicatorFullWidth +androidx.appcompat.R$styleable: int ActionBar_contentInsetRight +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: ObservableCache$CacheDisposable(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableCache) +com.google.android.material.slider.RangeSlider: int getHaloRadius() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierDirection +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture +com.google.android.material.navigation.NavigationView: android.view.MenuInflater getMenuInflater() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String moldDescription +com.google.android.material.R$string: int mtrl_picker_invalid_format_use +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_right_mtrl_dark +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_visibility +androidx.hilt.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeDegreeDayTemperature +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextAppearance(int) +com.turingtechnologies.materialscrollbar.R$attr: int buttonPanelSideLayout +com.google.android.material.R$color: int mtrl_outlined_stroke_color +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog +androidx.preference.R$attr: int windowMinWidthMinor +androidx.appcompat.R$color: int material_grey_100 +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_start_angle +androidx.lifecycle.Lifecycle$Event: Lifecycle$Event(java.lang.String,int) +com.google.android.material.R$attr: int paddingLeftSystemWindowInsets +wangdaye.com.geometricweather.R$id: int container_main_header_tempTxt +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableRightCompat +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: java.util.List value +wangdaye.com.geometricweather.R$styleable: int Chip_chipStrokeWidth +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.HistoryEntity) +androidx.preference.R$color: int abc_search_url_text_normal +wangdaye.com.geometricweather.R$color: int material_deep_teal_200 +wangdaye.com.geometricweather.R$string: int wait_refresh +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_19 +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: io.reactivex.MaybeSource other +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetLeft +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterTextAppearance +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: org.reactivestreams.Subscriber downstream +com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_colored +com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: void setInternalAutoHideListener(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) +androidx.recyclerview.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean +cyanogenmod.hardware.ICMHardwareService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +okio.AsyncTimeout +androidx.recyclerview.R$id: int accessibility_custom_action_2 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean +com.jaredrummler.android.colorpicker.R$id: int customPanel +com.google.android.material.slider.Slider: float getStepSize() +androidx.drawerlayout.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$attr: int rangeFillColor +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostCreated(android.app.Activity,android.os.Bundle) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String ShortPhrase +wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconEnabled +androidx.constraintlayout.widget.R$styleable: int MotionScene_defaultDuration +wangdaye.com.geometricweather.R$attr: int tabTextAppearance +com.bumptech.glide.R$dimen: int notification_small_icon_size_as_large +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeFindDrawable +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getCeiling() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean getBrandInfo() +okio.AsyncTimeout: void exit(boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_android_checkable +android.didikee.donate.R$styleable: int Toolbar_titleMarginStart +okhttp3.Cookie: Cookie(okhttp3.Cookie$Builder) +android.didikee.donate.R$attr: int buttonTint +androidx.drawerlayout.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getWindDescription(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit) +androidx.activity.R$id: int action_image +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.lang.String getUnit() +com.google.android.material.R$layout: int design_bottom_sheet_dialog +com.google.android.material.R$attr: int thickness +wangdaye.com.geometricweather.R$font +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight +okhttp3.internal.connection.RealConnection: okhttp3.Route route +cyanogenmod.weather.RequestInfo$1: cyanogenmod.weather.RequestInfo createFromParcel(android.os.Parcel) +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_pressedTranslationZ +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endColor +androidx.appcompat.R$attr: int textAppearanceSmallPopupMenu +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.util.concurrent.CompletableFuture adapt(retrofit2.Call) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +wangdaye.com.geometricweather.R$style: int subtitle_text +androidx.appcompat.R$dimen: int abc_select_dialog_padding_start_material +androidx.constraintlayout.widget.R$attr: int triggerId +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: ObservableWithLatestFromMany$WithLatestFromObserver(io.reactivex.Observer,io.reactivex.functions.Function,int) +androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy: ConstraintProxy$BatteryChargingProxy() +androidx.vectordrawable.R$styleable: int FontFamilyFont_android_ttcIndex +okhttp3.internal.http2.Http2Stream$StreamTimeout: void exitAndThrowIfTimedOut() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onResume() +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_android_foregroundGravity +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_content_inset_with_nav +okhttp3.RequestBody: long contentLength() +okhttp3.internal.ws.RealWebSocket: void loopReader() +wangdaye.com.geometricweather.R$styleable: int[] MaterialScrollBar +androidx.activity.R$styleable: int ColorStateListItem_android_alpha +com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_Dialog +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runSync() +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.ObservableSource source +com.google.android.material.chip.Chip: void setOnCloseIconClickListener(android.view.View$OnClickListener) +androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX() +io.reactivex.Observable: io.reactivex.Observable zip(java.lang.Iterable,io.reactivex.functions.Function) +androidx.preference.R$drawable: int abc_ic_menu_overflow_material +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType[] values() +okhttp3.internal.io.FileSystem +androidx.preference.R$styleable: int DrawerArrowToggle_color +androidx.constraintlayout.widget.R$styleable: int Toolbar_android_minHeight +androidx.work.R$dimen +com.google.android.material.R$styleable: int[] ProgressIndicator +com.google.android.material.R$attr: int contentInsetLeft +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_height +okhttp3.internal.connection.RouteSelector$Selection: RouteSelector$Selection(java.util.List) +com.google.android.gms.common.data.BitmapTeleporter +androidx.constraintlayout.widget.R$attr: int popupWindowStyle +androidx.lifecycle.LifecycleRegistry: void forwardPass(androidx.lifecycle.LifecycleOwner) +androidx.preference.R$string: int summary_collapsed_preference_list +wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context) +androidx.viewpager2.R$color: int ripple_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +james.adaptiveicon.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +io.reactivex.exceptions.CompositeException: java.util.List getExceptions() +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: ResultObservable$ResultObserver(io.reactivex.Observer) +cyanogenmod.app.CMContextConstants: java.lang.String CM_LIVE_LOCK_SCREEN_SERVICE +wangdaye.com.geometricweather.R$styleable: int[] DrawerArrowToggle +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_transformPivotX +wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity +cyanogenmod.weather.ICMWeatherManager: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextStyle +androidx.appcompat.R$attr: int tooltipForegroundColor +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionBar +com.xw.repo.bubbleseekbar.R$attr: int logoDescription +cyanogenmod.hardware.ICMHardwareService: boolean get(int) +androidx.constraintlayout.widget.R$styleable: int SearchView_commitIcon +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String unitId +com.google.android.material.R$id: int add +wangdaye.com.geometricweather.R$layout: int activity_widget_config +okhttp3.HttpUrl: java.util.List pathSegments +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_label_cutout_padding +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Large +cyanogenmod.app.suggest.IAppSuggestManager$Stub: cyanogenmod.app.suggest.IAppSuggestManager asInterface(android.os.IBinder) +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_spanCount +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Subhead +wangdaye.com.geometricweather.R$attr: int behavior_skipCollapsed +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarDivider +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Display +androidx.lifecycle.extensions.R$id: int chronometer +android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_secondary +wangdaye.com.geometricweather.R$id: int below_section_mark +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarItemBackground +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +com.google.android.material.chip.Chip: void setBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$layout: int activity_search +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: void setAlpha(float) +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +cyanogenmod.providers.CMSettings$System: java.lang.String NAV_BUTTONS +com.google.android.material.R$styleable: int AppCompatTheme_dividerVertical +androidx.transition.R$attr: int fontProviderAuthority +io.reactivex.internal.subscriptions.EmptySubscription: java.lang.Object poll() +androidx.cardview.R$styleable: int CardView_android_minHeight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setValue(java.util.List) +androidx.hilt.work.R$id: int accessibility_custom_action_0 +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property DegreeDayTemperature +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeRealFeelShaderTemperature +androidx.preference.R$id: int search_go_btn +com.turingtechnologies.materialscrollbar.R$attr: int materialButtonStyle +wangdaye.com.geometricweather.R$attr: int titleTextStyle +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_letter_spacing +androidx.constraintlayout.widget.R$attr: int drawPath +com.google.android.material.R$layout: int mtrl_alert_dialog_title +com.google.android.material.tabs.TabLayout: int getSelectedTabPosition() +com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabTextStyle +com.google.android.material.R$attr: int layout_anchor +james.adaptiveicon.R$attr: int queryBackground +androidx.dynamicanimation.R$dimen: int notification_right_icon_size +com.google.android.material.R$dimen: int abc_action_bar_default_padding_start_material +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.WeatherEntity) +wangdaye.com.geometricweather.R$id: int activity_about_recyclerView +okhttp3.Route +com.google.android.material.R$styleable: int ConstraintSet_android_minHeight +wangdaye.com.geometricweather.R$string: int app_name +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: double lon +com.turingtechnologies.materialscrollbar.R$drawable: int design_ic_visibility +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float icePrecipitationProbability +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_material_light +com.google.android.material.R$id: int design_menu_item_text +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_DES_CBC_MD5 +okhttp3.internal.http2.Http2Stream: void setHeadersListener(okhttp3.internal.http2.Header$Listener) +com.jaredrummler.android.colorpicker.R$attr: int subMenuArrow +androidx.constraintlayout.widget.R$attr: int flow_firstHorizontalStyle +wangdaye.com.geometricweather.R$attr: int mock_showDiagonals +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline1 +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconDrawable +wangdaye.com.geometricweather.R$drawable: int notif_temp_131 +com.google.android.material.chip.Chip: void setChipIconEnabledResource(int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyleSmall +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Large +okhttp3.CacheControl$Builder: boolean noTransform +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.concurrent.atomic.AtomicInteger active +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder addNetworkInterceptor(okhttp3.Interceptor) +retrofit2.Platform: boolean isDefaultMethod(java.lang.reflect.Method) +james.adaptiveicon.R$styleable: int[] MenuView +com.jaredrummler.android.colorpicker.R$styleable: int Preference_defaultValue +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_padding +com.github.rahatarmanahmed.cpv.CircularProgressView$5: void onAnimationEnd(android.animation.Animator) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Colored +androidx.lifecycle.GeneratedAdapter: void callMethods(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,boolean,androidx.lifecycle.MethodCallsLogger) +androidx.constraintlayout.widget.R$attr: int layout_editor_absoluteX +androidx.lifecycle.ProcessLifecycleOwner$3: ProcessLifecycleOwner$3(androidx.lifecycle.ProcessLifecycleOwner) +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_default_mtrl_alpha +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: int getStatus() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitationProbability() +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat +androidx.swiperefreshlayout.R$id: int right_icon +com.bumptech.glide.integration.okhttp.R$attr: int fontStyle +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroups +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int requestFusion(int) +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle +com.google.android.material.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm25(java.lang.String) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: void run() +androidx.viewpager2.widget.ViewPager2: void setUserInputEnabled(boolean) +okhttp3.TlsVersion: java.lang.String javaName +com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.externalviews.ExternalView: void onActivityStopped(android.app.Activity) +wangdaye.com.geometricweather.R$styleable: int[] ShapeableImageView +com.turingtechnologies.materialscrollbar.DragScrollBar: boolean getHide() +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Base base +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context) +io.reactivex.internal.observers.DeferredScalarDisposable: int requestFusion(int) +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabView +okhttp3.internal.Internal: Internal() +android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +okhttp3.OkHttpClient$1: void addLenient(okhttp3.Headers$Builder,java.lang.String) +wangdaye.com.geometricweather.R$id: int item_card_display_title +androidx.preference.R$dimen: int abc_dialog_padding_top_material +okhttp3.internal.io.FileSystem$1: okio.Sink sink(java.io.File) +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_disabled +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetRight +wangdaye.com.geometricweather.R$color: R$color() +androidx.appcompat.R$styleable: int AppCompatTheme_seekBarStyle +wangdaye.com.geometricweather.R$attr: int flow_horizontalStyle +androidx.viewpager2.R$dimen: R$dimen() +james.adaptiveicon.R$color: int foreground_material_light +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +androidx.multidex.MultiDexExtractor$ExtractedDex: MultiDexExtractor$ExtractedDex(java.io.File,java.lang.String) +androidx.lifecycle.ClassesInfoCache$CallbackInfo: java.util.Map mEventToHandlers +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +cyanogenmod.app.Profile$ProfileTrigger$1: java.lang.Object[] newArray(int) +androidx.constraintlayout.widget.R$styleable: int KeyCycle_motionProgress +wangdaye.com.geometricweather.R$id: int parallax +io.reactivex.Observable: io.reactivex.Observable concatEager(java.lang.Iterable,int,int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_activityChooserViewStyle +com.google.android.material.R$styleable: int CustomAttribute_customPixelDimension +wangdaye.com.geometricweather.R$drawable: int flag_it +wangdaye.com.geometricweather.R$layout: int dialog_weather_hourly +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.Observer downstream +androidx.fragment.R$id: int accessibility_custom_action_7 +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$dimen: int compat_button_inset_horizontal_material +com.turingtechnologies.materialscrollbar.R$layout: int notification_action_tombstone +com.google.android.material.R$layout: int abc_alert_dialog_title_material +wangdaye.com.geometricweather.R$layout: int widget_clock_day_details +com.jaredrummler.android.colorpicker.R$attr: int cpv_colorPresets +okhttp3.internal.io.FileSystem: boolean exists(java.io.File) +okhttp3.internal.ws.RealWebSocket$Streams +com.google.android.material.R$drawable: int abc_btn_check_to_on_mtrl_000 +okhttp3.Protocol: okhttp3.Protocol HTTP_1_1 +androidx.appcompat.widget.Toolbar: androidx.appcompat.widget.DecorToolbar getWrapper() +androidx.hilt.work.R$anim: int fragment_close_exit +com.xw.repo.bubbleseekbar.R$layout: int abc_popup_menu_header_item_layout +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherSource(java.lang.String) +okhttp3.internal.Internal: okhttp3.internal.Internal instance +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade RealFeelTemperatureShade +wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_grey +wangdaye.com.geometricweather.R$color: int primary_dark_material_dark +androidx.preference.R$styleable: int[] StateListDrawable +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endColor +com.google.android.material.R$dimen: int abc_alert_dialog_button_dimen +androidx.preference.R$id: int alertTitle +okhttp3.internal.http2.Http2Connection: void close() +okhttp3.internal.http2.Http2Connection$2: long val$unacknowledgedBytesRead +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: android.os.IBinder asBinder() +okhttp3.internal.connection.RouteSelector: void connectFailed(okhttp3.Route,java.io.IOException) +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit getInstance(java.lang.String) +com.google.android.material.card.MaterialCardView: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +com.amap.api.location.AMapLocationClientOption: boolean isWifiScan() +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamily +androidx.preference.R$styleable: int ActionBar_contentInsetEnd +com.xw.repo.BubbleSeekBar: void setSecondTrackColor(int) +android.support.v4.os.IResultReceiver$Stub: android.os.IBinder asBinder() +com.turingtechnologies.materialscrollbar.R$color: int highlighted_text_material_light +com.google.android.material.R$dimen: int mtrl_toolbar_default_height +androidx.preference.R$drawable: int abc_ic_star_black_16dp +androidx.appcompat.R$attr: int colorBackgroundFloating +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy BUFFER +james.adaptiveicon.R$attr: int showDividers +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_116 +androidx.constraintlayout.motion.widget.MotionLayout +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIcon(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String to +com.turingtechnologies.materialscrollbar.R$attr: int showTitle +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_backgroundTint +retrofit2.http.QueryName: boolean encoded() +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy MISSING +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: ObservableCombineLatest$CombinerObserver(io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator,int) +com.bumptech.glide.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX +androidx.appcompat.R$color: int material_grey_300 +androidx.cardview.R$attr: int cardPreventCornerOverlap +wangdaye.com.geometricweather.R$id: int snapMargins +androidx.preference.R$styleable: int BackgroundStyle_android_selectableItemBackground +okhttp3.FormBody: long contentLength() +wangdaye.com.geometricweather.R$string: int settings_notification_background_off +wangdaye.com.geometricweather.db.entities.DailyEntity: float hoursOfSun +james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_Underlined +com.amap.api.fence.GeoFence: java.lang.String getCustomId() +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_translation_z_pressed +com.google.android.material.R$style: int Widget_Design_Snackbar +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float so2 +androidx.vectordrawable.animated.R$dimen +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_placeholder_content +com.google.android.material.R$styleable: int GradientColor_android_gradientRadius +androidx.preference.R$dimen: int hint_pressed_alpha_material_dark +wangdaye.com.geometricweather.R$id: int bottomBar +wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitleTextColor +com.amap.api.location.AMapLocation: java.lang.String toStr(int) +com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode[] values() +com.bumptech.glide.integration.okhttp.R$dimen +retrofit2.OptionalConverterFactory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +okhttp3.internal.http.HttpCodec: void writeRequestHeaders(okhttp3.Request) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_19 +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +io.reactivex.Observable: io.reactivex.Observable scan(io.reactivex.functions.BiFunction) +cyanogenmod.weather.WeatherInfo: java.util.List getForecasts() +retrofit2.Invocation: java.util.List arguments() +com.google.android.gms.common.api.AvailabilityException: androidx.collection.ArrayMap zaa +wangdaye.com.geometricweather.R$attr: int cornerSizeTopLeft +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastVerticalStyle +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter close(int,int,java.lang.String) +androidx.appcompat.R$styleable: int AppCompatTextView_android_textAppearance +cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo$Builder setPriority(int) +io.reactivex.internal.util.NotificationLite$ErrorNotification: java.lang.String toString() +androidx.appcompat.R$dimen: int abc_dialog_list_padding_top_no_title +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +androidx.hilt.work.R$style +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_arrow_drop_right_black_24dp +com.google.android.material.R$attr: int flow_maxElementsWrap +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_height +com.turingtechnologies.materialscrollbar.R$attr: int dropDownListViewStyle +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Line2 +okio.BufferedSink: okio.BufferedSink writeIntLe(int) +androidx.fragment.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$drawable: int material_ic_menu_arrow_up_black_24dp +androidx.coordinatorlayout.R$id: int accessibility_action_clickable_span +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton +okhttp3.internal.ws.RealWebSocket$Message: okio.ByteString data +retrofit2.ParameterHandler$Query: boolean encoded +okhttp3.internal.http2.Http2Connection: void pushResetLater(int,okhttp3.internal.http2.ErrorCode) +androidx.fragment.R$color +com.google.android.material.R$string: int material_slider_range_end +org.greenrobot.greendao.AbstractDao: java.lang.Object getKey(java.lang.Object) +okhttp3.TlsVersion: okhttp3.TlsVersion[] $VALUES +cyanogenmod.weather.WeatherInfo: double mTemperature +wangdaye.com.geometricweather.R$id: int item_tag +android.didikee.donate.R$color: int ripple_material_light +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setInterval(long) +androidx.appcompat.R$drawable: int abc_text_select_handle_middle_mtrl_dark +com.google.android.material.R$id: int mtrl_calendar_months +com.google.android.material.R$dimen: int design_fab_size_mini +com.google.android.material.appbar.CollapsingToolbarLayout +com.amap.api.location.AMapLocation: int getErrorCode() +com.google.android.material.slider.BaseSlider: void setThumbRadiusResource(int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvIndex +androidx.preference.R$attr: int windowActionBar +com.google.android.material.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.internal.disposables.ArrayCompositeDisposable resources +androidx.preference.R$style: int TextAppearance_AppCompat_Display4 +androidx.swiperefreshlayout.R$id: int action_container +androidx.appcompat.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +james.adaptiveicon.R$attr: int actionProviderClass +james.adaptiveicon.R$attr: int toolbarNavigationButtonStyle +androidx.constraintlayout.widget.R$attr: int mock_showLabel +com.jaredrummler.android.colorpicker.R$attr: int statusBarBackground +com.google.android.material.imageview.ShapeableImageView: android.content.res.ColorStateList getStrokeColor() +okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part createFormData(java.lang.String,java.lang.String) +okio.Buffer: okio.BufferedSink write(byte[]) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String caiyun +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_Surface +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean +androidx.constraintlayout.widget.R$styleable: int[] MockView +james.adaptiveicon.R$styleable: int TextAppearance_android_shadowDx +com.google.android.material.slider.Slider: int getTrackWidth() +androidx.viewpager.R$styleable: int FontFamilyFont_android_fontWeight +com.google.android.material.R$attr: int arrowShaftLength +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean registerThermalListener(cyanogenmod.hardware.IThermalListenerCallback) +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: okhttp3.internal.http2.Http2Stream val$newStream +androidx.appcompat.R$attr: int titleMargin +wangdaye.com.geometricweather.R$id: int parent_matrix +org.greenrobot.greendao.AbstractDao: void deleteAll() +com.google.android.material.R$color: int material_slider_thumb_color +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf +android.didikee.donate.R$styleable: int TextAppearance_android_textStyle +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginRight +com.amap.api.location.AMapLocationClient: android.content.Context a +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingEnd +android.didikee.donate.R$attr: int actionBarSplitStyle +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Spinner +okhttp3.Cookie$Builder: boolean httpOnly +com.turingtechnologies.materialscrollbar.R$id: int fixed +io.reactivex.Observable: io.reactivex.Observable concatArrayEagerDelayError(int,int,io.reactivex.ObservableSource[]) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +cyanogenmod.util.ColorUtils: int[] SOLID_COLORS +org.greenrobot.greendao.AbstractDaoMaster: void registerDaoClass(java.lang.Class) +com.google.android.material.R$attr: int defaultDuration +wangdaye.com.geometricweather.R$attr: int homeLayout +androidx.lifecycle.extensions.R$drawable: int notification_tile_bg +androidx.appcompat.resources.R$id: int dialog_button +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_counter_margin_start +wangdaye.com.geometricweather.R$attr: int helperTextTextAppearance +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: void invoke(java.lang.Throwable) +okhttp3.internal.cache.DiskLruCache$Snapshot: long sequenceNumber +okhttp3.internal.ws.WebSocketWriter: okio.Buffer sinkBuffer +wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_tailScale +okhttp3.internal.http2.Http2Reader$ContinuationSource: void readContinuationHeader() +android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_Switch +com.google.android.material.R$attr: int hintTextColor +com.xw.repo.bubbleseekbar.R$drawable +okhttp3.Cookie: java.util.regex.Pattern DAY_OF_MONTH_PATTERN +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_SUNRISE_SUNSET +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_119 +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void removeFirst() +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_2 +cyanogenmod.themes.ThemeManager$ThemeProcessingListener +wangdaye.com.geometricweather.R$dimen: int design_textinput_caption_translate_y +androidx.fragment.R$id: int icon_group +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.R$attr: int colorOnSurface +com.google.android.material.R$attr: int checkedIconVisible +wangdaye.com.geometricweather.R$drawable: int notif_temp_116 +io.reactivex.Observable: io.reactivex.Observable zipIterable(java.lang.Iterable,io.reactivex.functions.Function,boolean,int) +wangdaye.com.geometricweather.R$id: int widget_week_week_4 +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference upstream +wangdaye.com.geometricweather.db.entities.DaoMaster: int SCHEMA_VERSION +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void clear() +com.google.android.material.textfield.TextInputLayout: void setTextInputAccessibilityDelegate(com.google.android.material.textfield.TextInputLayout$AccessibilityDelegate) +androidx.constraintlayout.widget.R$attr: int alertDialogTheme +com.google.android.material.R$style: int Base_V7_Widget_AppCompat_EditText +androidx.appcompat.R$dimen: int abc_action_bar_stacked_max_height +io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onError +wangdaye.com.geometricweather.R$attr: int transitionPathRotate +androidx.lifecycle.SavedStateHandleController: void attachToLifecycle(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) +androidx.preference.R$attr: int autoSizeMaxTextSize +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor getInstance(java.lang.String) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Subtitle2 +com.google.android.material.R$styleable: int CardView_android_minWidth +wangdaye.com.geometricweather.R$drawable: int abc_edit_text_material +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endY +com.github.rahatarmanahmed.cpv.R$string: R$string() +wangdaye.com.geometricweather.R$attr: int summaryOff +androidx.constraintlayout.widget.R$style: R$style() +cyanogenmod.themes.ThemeManager$2$1: java.lang.String val$pkgName +androidx.constraintlayout.widget.R$attr: int panelBackground +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast build() +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +androidx.appcompat.R$color: int secondary_text_disabled_material_dark +androidx.lifecycle.ViewModelProvider$OnRequeryFactory: ViewModelProvider$OnRequeryFactory() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constrainedHeight +cyanogenmod.app.LiveLockScreenInfo: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_black +com.google.android.material.R$id: int material_clock_face +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert +okhttp3.internal.proxy.NullProxySelector +james.adaptiveicon.R$attr: int titleTextColor +androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog +com.google.android.material.R$color: int design_dark_default_color_surface +wangdaye.com.geometricweather.R$color: int material_on_background_emphasis_high_type +okio.Buffer$UnsafeCursor: long offset +wangdaye.com.geometricweather.R$id: int touch_outside +okhttp3.Cache: java.io.File directory() +com.bumptech.glide.R$dimen: int notification_right_icon_size +com.google.android.material.R$styleable: int AppCompatTheme_spinnerStyle +james.adaptiveicon.R$color: int abc_primary_text_disable_only_material_dark +androidx.appcompat.R$styleable: int AppCompatTheme_editTextBackground +okhttp3.Cache$CacheRequestImpl$1: void close() +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void subscribeInner(io.reactivex.ObservableSource) +cyanogenmod.app.CustomTile$ExpandedItem +androidx.work.R$id: int accessibility_custom_action_29 +james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyle +wangdaye.com.geometricweather.R$dimen: int design_fab_size_mini +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_Tooltip +android.didikee.donate.R$styleable: int ButtonBarLayout_allowStacking +com.google.android.material.R$attr: int telltales_tailScale +com.google.android.material.R$color: int mtrl_choice_chip_ripple_color +androidx.work.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind wangdaye.com.geometricweather.R$array: int widget_card_styles -androidx.constraintlayout.widget.R$styleable: int[] AppCompatImageView -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarWidgetTheme -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours -androidx.appcompat.R$attr: int actionModeBackground -cyanogenmod.externalviews.ExternalView$1 -com.google.android.material.R$attr: int boxStrokeErrorColor -okhttp3.Handshake: Handshake(okhttp3.TlsVersion,okhttp3.CipherSuite,java.util.List,java.util.List) -okhttp3.internal.cache2.Relay: okhttp3.internal.cache2.Relay read(java.io.File) -androidx.recyclerview.widget.RecyclerView: int getBaseline() -androidx.preference.R$style: int Platform_V25_AppCompat -androidx.cardview.R$dimen -cyanogenmod.app.CustomTile$ExpandedListItem: CustomTile$ExpandedListItem() -androidx.core.R$id: int italic -com.google.android.material.R$layout: int abc_action_menu_layout -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onNext(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_strokeColor -androidx.preference.R$id: int tag_accessibility_clickable_spans -androidx.appcompat.R$styleable: int TextAppearance_android_textColor -androidx.lifecycle.ViewModelStore -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_medium_material -okhttp3.Headers: java.util.List values(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String level -com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_disable_only_material_dark -com.google.android.material.R$attr: int behavior_halfExpandedRatio -okhttp3.internal.ws.RealWebSocket: boolean failed -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: boolean isDisposed() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency PressureTendency -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Bridge -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_1 -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function7) -james.adaptiveicon.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -androidx.lifecycle.ProcessLifecycleOwner: ProcessLifecycleOwner() -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentStyle -com.jaredrummler.android.colorpicker.R$styleable: int[] CheckBoxPreference -com.xw.repo.bubbleseekbar.R$string: int abc_toolbar_collapse_description -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$attr: int measureWithLargestChild -androidx.constraintlayout.widget.R$attr: int contentDescription -okhttp3.internal.http2.Http2Reader$ContinuationSource: byte flags -androidx.preference.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -androidx.preference.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance -wangdaye.com.geometricweather.R$transition: R$transition() -androidx.fragment.R$dimen -com.google.android.material.slider.BaseSlider: void setValues(java.lang.Float[]) -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature temperature -com.google.android.material.slider.Slider: float getThumbStrokeWidth() -androidx.appcompat.R$style: int Theme_AppCompat -com.amap.api.location.DPoint: boolean equals(java.lang.Object) -androidx.fragment.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_popupMenuStyle -com.amap.api.location.AMapLocation: java.lang.String getDistrict() -com.turingtechnologies.materialscrollbar.R$color: int mtrl_bottom_nav_colored_item_tint -android.didikee.donate.R$color: int abc_background_cache_hint_selector_material_light -androidx.appcompat.R$string: int abc_menu_enter_shortcut_label -com.turingtechnologies.materialscrollbar.DragScrollBar: int getMode() -com.google.android.material.R$styleable: int[] Motion -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox -androidx.constraintlayout.widget.R$styleable: int Motion_transitionEasing -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: boolean equals(java.lang.Object) -androidx.preference.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$attr: int iconSize -com.amap.api.location.AMapLocationClient: void unRegisterLocationListener(com.amap.api.location.AMapLocationListener) -com.bumptech.glide.integration.okhttp.R$id: int notification_main_column_container -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.MinutelyEntity) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: ObservableBufferBoundary$BufferCloseObserver(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver,long) -okhttp3.OkHttpClient: java.util.List connectionSpecs() -james.adaptiveicon.R$layout: int abc_screen_simple_overlay_action_mode -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -okhttp3.internal.cache2.FileOperator: FileOperator(java.nio.channels.FileChannel) -com.jaredrummler.android.colorpicker.R$dimen: int compat_button_padding_vertical_material -cyanogenmod.app.CustomTile: void cloneInto(cyanogenmod.app.CustomTile) -com.google.android.material.R$style: int Platform_MaterialComponents_Light -com.google.android.gms.location.places.PlaceReport -cyanogenmod.app.ProfileGroup$1: java.lang.Object[] newArray(int) -androidx.legacy.coreutils.R$id: int blocking -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhaseText -wangdaye.com.geometricweather.R$attr: int tickColor -com.amap.api.location.AMapLocation$1 -com.google.android.material.button.MaterialButton: int getTextHeight() -com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_min -com.amap.api.location.AMapLocationClientOption: boolean d -com.google.android.material.R$attr: int endIconMode -androidx.constraintlayout.widget.R$attr: int onHide -james.adaptiveicon.R$styleable: int AppCompatTheme_selectableItemBackground -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircleAngle -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void disposeInner() -james.adaptiveicon.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlHighlight -com.turingtechnologies.materialscrollbar.R$integer: int design_snackbar_text_max_lines -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -retrofit2.Retrofit$1: java.lang.Class val$service -androidx.appcompat.R$color: int switch_thumb_disabled_material_light -wangdaye.com.geometricweather.R$interpolator: int fast_out_slow_in -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String MobileLink -james.adaptiveicon.R$styleable: int ActionBarLayout_android_layout_gravity -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle -com.bumptech.glide.R$styleable: int GradientColor_android_gradientRadius -com.google.android.material.R$styleable: int SearchView_goIcon -wangdaye.com.geometricweather.R$styleable: int[] BackgroundStyle -androidx.preference.R$attr: int buttonStyle -androidx.appcompat.R$color: int material_blue_grey_900 -androidx.activity.R$drawable: int notification_bg_low -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setState(java.lang.String) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: KeyguardExternalViewProviderService$Provider$ProviderImpl$6(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearTodayStyle -com.google.android.material.R$styleable: int Variant_region_widthMoreThan -android.didikee.donate.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -james.adaptiveicon.R$styleable: int Toolbar_titleMarginStart -com.google.gson.stream.JsonReader: int PEEKED_UNQUOTED -com.jaredrummler.android.colorpicker.R$attr: int showAsAction -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_padding_end_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: double Value -wangdaye.com.geometricweather.R$dimen: int abc_text_size_headline_material -cyanogenmod.themes.IThemeService: void unregisterThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Bridge -com.xw.repo.bubbleseekbar.R$string: int abc_activitychooserview_choose_application -androidx.activity.R$id: int tag_unhandled_key_event_manager -androidx.core.R$id: int accessibility_custom_action_30 -androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModel get(java.lang.String,java.lang.Class) -androidx.appcompat.R$attr: int progressBarPadding -com.google.android.material.R$styleable: int AppCompatTheme_colorButtonNormal -androidx.fragment.R$anim: int fragment_close_enter -wangdaye.com.geometricweather.R$dimen: int action_bar_size -io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicReference missedSubscription -okhttp3.internal.ws.RealWebSocket$Close -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onSubscribe(io.reactivex.disposables.Disposable) -com.amap.api.location.DPoint: DPoint(android.os.Parcel) -okhttp3.internal.ws.RealWebSocket: int sentPingCount() -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display4 -android.didikee.donate.R$styleable: int AppCompatTheme_actionButtonStyle -com.amap.api.location.LocationManagerBase: void startAssistantLocation() -com.google.android.gms.dynamite.DynamiteModule$DynamiteLoaderClassLoader: DynamiteModule$DynamiteLoaderClassLoader() -androidx.preference.R$color: int abc_search_url_text_selected -androidx.customview.R$id: int forever -androidx.lifecycle.MediatorLiveData -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleTextAppearance -com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector YEAR -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: AccuCurrentResult$Ceiling() -okhttp3.internal.cache.DiskLruCache: void processJournal() -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderQuery -cyanogenmod.themes.ThemeChangeRequest: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.R$id: int scrollable -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SearchView -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf -com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setCircularRevealScrimColor(int) -okhttp3.logging.LoggingEventListener: void requestHeadersStart(okhttp3.Call) -androidx.appcompat.widget.AppCompatTextView: int getAutoSizeTextType() -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.R$color: int abc_primary_text_material_dark -androidx.coordinatorlayout.R$style: int Widget_Compat_NotificationActionContainer -com.google.android.material.R$string: int abc_prepend_shortcut_label -okhttp3.Response: okhttp3.Response networkResponse() -com.xw.repo.bubbleseekbar.R$dimen: int abc_search_view_preferred_height -androidx.viewpager2.R$styleable: int[] GradientColor -androidx.fragment.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$drawable: int weather_snow -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Wind wind -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarPositiveButtonStyle -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_THUMBNAIL -cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri mDownloadUri -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -com.bumptech.glide.R$id: int action_text -okhttp3.internal.http2.Http2Writer: boolean client -android.didikee.donate.R$id: int buttonPanel -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge -androidx.preference.R$styleable: int SwitchCompat_trackTintMode -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onScreenTurnedOff() -androidx.constraintlayout.widget.R$dimen: int abc_text_size_menu_material -com.google.android.material.R$style: int Animation_MaterialComponents_BottomSheetDialog -androidx.appcompat.widget.ActionMenuView: android.graphics.drawable.Drawable getOverflowIcon() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao -wangdaye.com.geometricweather.R$attr: int nestedScrollFlags -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setUnit(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_inset -com.xw.repo.bubbleseekbar.R$attr: int coordinatorLayoutStyle -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setWifiActiveScan(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTopCompat +android.didikee.donate.R$string: int app_name +cyanogenmod.app.IPartnerInterface$Stub: java.lang.String DESCRIPTOR +james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$id: int material_hour_tv +wangdaye.com.geometricweather.R$string: int feedback_delete_succeed +androidx.vectordrawable.animated.R$drawable +cyanogenmod.themes.ThemeManager: void removeClient(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +james.adaptiveicon.R$styleable: int[] SwitchCompat +james.adaptiveicon.R$attr: int listChoiceBackgroundIndicator +com.google.android.material.R$color: int secondary_text_disabled_material_light +androidx.fragment.R$id: int accessibility_action_clickable_span +android.didikee.donate.R$styleable: int[] ActionMenuItemView +cyanogenmod.app.Profile$Type: int CONDITIONAL +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX() +androidx.recyclerview.R$id: int accessibility_custom_action_15 +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String description +cyanogenmod.app.CustomTile$1: cyanogenmod.app.CustomTile[] newArray(int) +com.jaredrummler.android.colorpicker.ColorPanelView +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_NoActionBar +james.adaptiveicon.R$id: int home +com.google.android.material.R$attr: int boxCornerRadiusBottomStart +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_min +wangdaye.com.geometricweather.R$attr: int materialCardViewStyle +io.reactivex.Observable: io.reactivex.Observable concatEager(io.reactivex.ObservableSource,int,int) +androidx.recyclerview.widget.RecyclerView: int getScrollState() +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontWeight +cyanogenmod.app.LiveLockScreenInfo: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getWeatherKind() com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -okio.BufferedSource: java.lang.String readUtf8Line() -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$attr: int actionBarTheme -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String weathercn -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeStyle -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge -com.google.android.material.slider.Slider: void setTickVisible(boolean) -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerColor -james.adaptiveicon.R$drawable: int abc_cab_background_top_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActivityChooserView -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory createAsync() -okio.BufferedSource: long indexOf(byte) -retrofit2.KotlinExtensions$awaitResponse$2$2: kotlinx.coroutines.CancellableContinuation $continuation -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: ObservableMergeWithSingle$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String to -com.google.android.material.R$attr: int dragScale -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_Solid -androidx.dynamicanimation.R$drawable: int notification_bg_normal_pressed -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver -okhttp3.internal.proxy.NullProxySelector: java.util.List select(java.net.URI) -wangdaye.com.geometricweather.R$attr: int crossfade -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_item_min_width -androidx.transition.R$styleable -james.adaptiveicon.R$styleable: int TextAppearance_android_textColorHint -com.xw.repo.bubbleseekbar.R$color: int abc_background_cache_hint_selector_material_light -com.google.android.material.R$styleable: int AppCompatTheme_panelMenuListTheme -wangdaye.com.geometricweather.R$attr: int layout_editor_absoluteY -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: int getTotalCount() -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.AlertEntityDao getAlertEntityDao() -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: ObservableConcatMap$SourceObserver$InnerObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_139 -com.google.gson.stream.JsonWriter: boolean getSerializeNulls() -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onNext(java.lang.Object) -androidx.multidex.MultiDexExtractor$ExtractedDex: long crc -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_position -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String getNotice() -wangdaye.com.geometricweather.R$attr: int bsb_thumb_text_size -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatImageView -androidx.vectordrawable.R$id: int accessibility_custom_action_11 -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_search -cyanogenmod.app.ProfileManager: cyanogenmod.app.IProfileManager sService -androidx.lifecycle.ClassesInfoCache$MethodReference: int mCallType -wangdaye.com.geometricweather.R$styleable: int EditTextPreference_useSimpleSummaryProvider -wangdaye.com.geometricweather.R$styleable: int Badge_verticalOffset -wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_creator -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Line2 -com.google.android.material.chip.Chip: void setChipDrawable(com.google.android.material.chip.ChipDrawable) -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -cyanogenmod.weather.WeatherInfo: double mHumidity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setStatus(int) -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void priority(int,int,int,boolean) -androidx.appcompat.R$style: int Base_Theme_AppCompat_CompactMenu -com.google.android.material.R$styleable: int ConstraintSet_android_alpha -androidx.preference.R$styleable: int AppCompatTheme_windowMinWidthMajor -androidx.constraintlayout.widget.R$attr: int fontProviderAuthority -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Title -com.turingtechnologies.materialscrollbar.R$styleable: int[] DrawerArrowToggle -androidx.appcompat.widget.AppCompatCheckBox: android.graphics.PorterDuff$Mode getSupportButtonTintMode() -com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_margin -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty12H -okhttp3.internal.platform.Platform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) -androidx.appcompat.view.menu.ListMenuItemView: void setGroupDividerEnabled(boolean) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean cancelled -com.google.android.material.R$id: int rounded -com.google.android.material.R$attr: int colorOnSurface -com.google.android.material.appbar.AppBarLayout: void setStatusBarForegroundResource(int) -com.amap.api.location.AMapLocationClientOption: boolean e -androidx.hilt.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_4 -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult -wangdaye.com.geometricweather.R$id: int item_weather_icon -okio.Okio$1 -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -androidx.lifecycle.LifecycleRegistry: androidx.arch.core.internal.FastSafeIterableMap mObserverMap -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTypeface(android.graphics.Typeface) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: ObservableConcatMapMaybe$ConcatMapMaybeMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,io.reactivex.internal.util.ErrorMode) -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar +androidx.preference.R$anim: int abc_slide_in_top +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Temperature +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme_Dark +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.R$id: int transition_scene_layoutid_cache +androidx.drawerlayout.R$drawable: int notification_template_icon_bg +com.google.android.material.R$color: int mtrl_card_view_ripple +com.turingtechnologies.materialscrollbar.R$color: int cardview_light_background +wangdaye.com.geometricweather.R$id: int shades_divider +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +io.reactivex.Observable: java.lang.Iterable blockingIterable() +androidx.preference.R$style: int Preference_SwitchPreferenceCompat +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView +james.adaptiveicon.R$dimen: int abc_text_size_menu_material +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontStyle +james.adaptiveicon.R$styleable: int TextAppearance_fontVariationSettings +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String BriefPhrase +androidx.hilt.R$drawable: int notification_template_icon_low_bg +io.reactivex.Observable: java.lang.Iterable blockingNext() +androidx.lifecycle.ProcessLifecycleOwner: boolean mStopSent +wangdaye.com.geometricweather.R$styleable: int MaterialButton_strokeColor +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_icon_padding +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: long updatedOn +com.google.android.material.R$styleable: int Toolbar_titleMargin +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type HORIZONTAL_DIMENSION +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getLunar() +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: android.os.IBinder mRemote +com.github.rahatarmanahmed.cpv.CircularProgressView$5 +cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache +com.jaredrummler.android.colorpicker.R$dimen: int abc_progress_bar_height_material +androidx.appcompat.widget.AppCompatRadioButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.R$styleable: int OnSwipe_maxVelocity +com.github.rahatarmanahmed.cpv.R$attr: int cpv_startAngle +androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +com.google.android.material.checkbox.MaterialCheckBox +com.google.android.material.R$styleable: int NavigationView_itemShapeInsetStart +io.reactivex.Observable: io.reactivex.Observable concatEager(io.reactivex.ObservableSource) +retrofit2.http.Part: java.lang.String encoding() +com.turingtechnologies.materialscrollbar.R$string: int abc_action_bar_home_description +com.google.android.material.R$styleable: int TextInputLayout_errorTextAppearance +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColor +com.jaredrummler.android.colorpicker.R$attr: int windowFixedHeightMajor com.google.android.material.floatingactionbutton.FloatingActionButton: void setRippleColor(android.content.res.ColorStateList) -com.amap.api.fence.GeoFence: float l -com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_margin -com.google.android.material.slider.RangeSlider: void setFocusedThumbIndex(int) -com.google.android.material.R$id: int test_radiobutton_android_button_tint -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitationProbability -com.amap.api.location.DPoint: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okhttp3.internal.ws.RealWebSocket$CancelRunnable: void run() -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_xml -com.google.android.material.R$id: int text_input_start_icon -wangdaye.com.geometricweather.R$attr: int type -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getNotificationThemePackageName() -com.bumptech.glide.module.AppGlideModule: AppGlideModule() -androidx.work.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -com.xw.repo.bubbleseekbar.R$attr: int subtitle -com.google.android.material.R$id: int material_timepicker_edit_text -okhttp3.Address: Address(java.lang.String,int,okhttp3.Dns,javax.net.SocketFactory,javax.net.ssl.SSLSocketFactory,javax.net.ssl.HostnameVerifier,okhttp3.CertificatePinner,okhttp3.Authenticator,java.net.Proxy,java.util.List,java.util.List,java.net.ProxySelector) -wangdaye.com.geometricweather.R$attr: int layout_goneMarginStart -androidx.constraintlayout.widget.R$attr: int textColorSearchUrl -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_toId -wangdaye.com.geometricweather.R$color: int colorRipple -com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Solid -com.google.android.material.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -com.google.android.material.R$styleable: int Constraint_flow_lastVerticalBias -com.turingtechnologies.materialscrollbar.R$attr: int actionModeSplitBackground -wangdaye.com.geometricweather.R$styleable: int[] SwitchPreferenceCompat -androidx.appcompat.R$drawable: int abc_ic_star_half_black_36dp -androidx.preference.R$attr: int fontStyle -wangdaye.com.geometricweather.R$attr: int endIconContentDescription -androidx.constraintlayout.widget.R$id: int cos -wangdaye.com.geometricweather.R$id: int widget_week_card -androidx.transition.R$styleable: int GradientColorItem_android_color -androidx.constraintlayout.widget.R$attr: int contentInsetRight -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginBottom -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setDefense(java.util.List) -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode[] values() -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context,android.util.AttributeSet) -androidx.coordinatorlayout.widget.CoordinatorLayout: void setVisibility(int) -androidx.constraintlayout.widget.R$id: int wrap_content -com.turingtechnologies.materialscrollbar.MaterialScrollBar: boolean getHide() -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean delayError -james.adaptiveicon.R$styleable: int SearchView_android_focusable -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.Observer downstream -androidx.preference.R$styleable: int Toolbar_contentInsetEndWithActions -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer relativeHumidityMax -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int THUNDERSTORMS -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedWidthMinor -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property HourlyForecast -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: boolean done -okhttp3.HttpUrl$Builder: void removeAllCanonicalQueryParameters(java.lang.String) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: ObservableWindow$WindowExactObserver(io.reactivex.Observer,long,int) -com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetTop -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moonrise_moonset -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getRippleColor() -com.xw.repo.bubbleseekbar.R$attr: int voiceIcon -wangdaye.com.geometricweather.R$id: int fill -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -retrofit2.ParameterHandler$FieldMap: retrofit2.Converter valueConverter -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter open(int,java.lang.String) -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.lang.reflect.Method checkServerTrusted -cyanogenmod.externalviews.ExternalView$5 -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_dialog_background_inset -com.google.android.material.R$attr: int materialAlertDialogTitlePanelStyle -androidx.constraintlayout.widget.R$styleable: int View_theme -androidx.lifecycle.ViewModelProvider$KeyedFactory: ViewModelProvider$KeyedFactory() -james.adaptiveicon.R$attr: int listPreferredItemHeight -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_requestThemeChangeUpdates -wangdaye.com.geometricweather.R$animator: int weather_rain_3 -wangdaye.com.geometricweather.R$drawable: int notif_temp_132 -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder cipherSuites(java.lang.String[]) -androidx.recyclerview.R$styleable: int RecyclerView_android_clipToPadding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean -cyanogenmod.app.ProfileManager: cyanogenmod.app.IProfileManager getService() -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColorItem_android_color -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$id: int center -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorButtonNormal -androidx.preference.R$attr: int fastScrollHorizontalThumbDrawable -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_progressBarPadding -androidx.appcompat.R$styleable: int ActionBar_subtitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: CaiYunMainlyResult$IndicesBeanX$IndicesBean() -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_end -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: ObservableTakeLast$TakeLastObserver(io.reactivex.Observer,int) -androidx.viewpager2.widget.ViewPager2: int getCurrentItem() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: BaiduIPLocationResult$ContentBean() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_default -com.google.android.material.R$attr: int itemHorizontalTranslationEnabled -com.google.android.material.R$attr: int numericModifiers -androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationZ -wangdaye.com.geometricweather.db.entities.DaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession() -wangdaye.com.geometricweather.R$attr: int foregroundInsidePadding -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense -com.jaredrummler.android.colorpicker.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -android.didikee.donate.R$attr: int tickMark -androidx.preference.R$attr: int backgroundTint -androidx.activity.R$styleable: int ColorStateListItem_android_alpha -com.google.android.gms.base.R$attr: int colorScheme -okhttp3.internal.ws.WebSocketWriter -android.didikee.donate.R$styleable: int MenuView_android_windowAnimationStyle -androidx.recyclerview.widget.StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem -androidx.preference.R$styleable: int Preference_enableCopying -wangdaye.com.geometricweather.R$styleable: int[] FitSystemBarRecyclerView -androidx.work.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.swiperefreshlayout.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.util.Date getPubTime() -androidx.constraintlayout.widget.ConstraintLayout -com.jaredrummler.android.colorpicker.R$id: int search_bar -com.google.android.material.R$styleable: int NavigationView_itemShapeAppearance -com.xw.repo.bubbleseekbar.R$styleable: int RecycleListView_paddingTopNoTitle -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_SLOW_SAMPLES -wangdaye.com.geometricweather.R$style: int notification_title_text -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int requestFusion(int) -androidx.appcompat.R$color: int material_grey_600 -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_editor_absoluteY -androidx.lifecycle.OnLifecycleEvent: androidx.lifecycle.Lifecycle$Event value() -androidx.viewpager2.R$id: int notification_main_column -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: ObservableSampleWithObservable$SampleMainNoLast(io.reactivex.Observer,io.reactivex.ObservableSource) -androidx.constraintlayout.widget.R$color: int abc_background_cache_hint_selector_material_light -androidx.constraintlayout.utils.widget.ImageFilterView: void setRound(float) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeSplitBackground -wangdaye.com.geometricweather.R$id: int dialog_location_help_locationIcon -org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory,int,android.database.DatabaseErrorHandler) -androidx.work.R$drawable: int notification_bg_low_normal -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -cyanogenmod.app.Profile$ExpandedDesktopMode -androidx.appcompat.widget.AppCompatCheckBox: void setBackgroundDrawable(android.graphics.drawable.Drawable) +okhttp3.internal.http.HttpMethod: boolean redirectsToGet(java.lang.String) +com.google.android.material.R$styleable: int Chip_closeIconVisible +wangdaye.com.geometricweather.R$drawable: int ic_wind +androidx.preference.internal.PreferenceImageView: void setMaxWidth(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_73 +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +wangdaye.com.geometricweather.R$string: int feedback_search_nothing +com.xw.repo.bubbleseekbar.R$color: int button_material_dark +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: void soNext(io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode) +okio.Buffer: okio.Buffer$UnsafeCursor readAndWriteUnsafe() +cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_ANSWER +com.google.android.material.R$attr: int chipIconSize +com.google.android.material.R$id: int mtrl_calendar_text_input_frame +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_material_dark +android.didikee.donate.R$color: int foreground_material_light +androidx.appcompat.R$styleable: int[] CompoundButton +androidx.transition.R$id: int forever +androidx.recyclerview.R$attr: int fastScrollEnabled +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: android.os.IBinder asBinder() +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: int fusionMode +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +androidx.preference.R$anim +androidx.preference.R$attr: int drawableTintMode +wangdaye.com.geometricweather.R$string: int abc_menu_function_shortcut_label +wangdaye.com.geometricweather.R$attr: int colorPrimaryVariant +androidx.hilt.work.R$id: int line1 +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline3 +wangdaye.com.geometricweather.R$attr: int snackbarButtonStyle +androidx.appcompat.widget.ActionBarContainer: ActionBarContainer(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Subhead +com.amap.api.fence.PoiItem: java.lang.String h +androidx.appcompat.R$string: int abc_prepend_shortcut_label +cyanogenmod.weather.WeatherLocation: java.lang.String mState +com.turingtechnologies.materialscrollbar.R$attr: int defaultQueryHint +okio.Buffer: long readHexadecimalUnsignedLong() +androidx.appcompat.widget.AppCompatImageView: void setImageResource(int) +okhttp3.internal.http2.Http2Connection: long access$200(okhttp3.internal.http2.Http2Connection) +retrofit2.ParameterHandler$Path: retrofit2.Converter valueConverter +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_end_padding_icon +androidx.activity.R$id: int accessibility_custom_action_1 +com.turingtechnologies.materialscrollbar.R$color: int background_floating_material_dark +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType PNG +com.xw.repo.bubbleseekbar.R$attr: int buttonBarButtonStyle +com.amap.api.location.AMapLocation: int c(com.amap.api.location.AMapLocation,int) +okhttp3.internal.cache.DiskLruCache$Entry: java.io.File[] dirtyFiles +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: boolean handles(android.content.Intent) +com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context,android.util.AttributeSet,int) +androidx.lifecycle.extensions.R$attr: int font +okhttp3.internal.http2.Http2Reader$ContinuationSource: byte flags +androidx.appcompat.R$color: int abc_btn_colored_borderless_text_material +com.jaredrummler.android.colorpicker.R$dimen: int notification_action_text_size +com.google.gson.LongSerializationPolicy +wangdaye.com.geometricweather.R$styleable: int Slider_thumbColor +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_18 +androidx.transition.R$drawable: int notification_template_icon_bg +okhttp3.HttpUrl: int querySize() +wangdaye.com.geometricweather.R$id: int widget_day_time +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource valueOf(java.lang.String) +androidx.core.R$styleable: int GradientColorItem_android_offset +com.turingtechnologies.materialscrollbar.R$attr: int fabCradleRoundedCornerRadius +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_ON +org.greenrobot.greendao.AbstractDao: void deleteByKeyInTx(java.lang.Iterable) +androidx.lifecycle.ProcessLifecycleOwner: void init(android.content.Context) +androidx.preference.R$attr: int backgroundTintMode +wangdaye.com.geometricweather.R$layout: int material_radial_view_group +androidx.preference.R$drawable: int abc_text_select_handle_middle_mtrl_dark +androidx.constraintlayout.widget.R$attr: int flow_maxElementsWrap +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer rainHazard6h +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView_DropDown +com.jaredrummler.android.colorpicker.R$style: int Platform_Widget_AppCompat_Spinner +wangdaye.com.geometricweather.R$attr: int state_liftable +io.reactivex.internal.schedulers.ScheduledRunnable: ScheduledRunnable(java.lang.Runnable,io.reactivex.internal.disposables.DisposableContainer) +com.google.android.material.R$styleable: int MaterialButton_android_insetLeft +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_section_mark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.util.Date EffectiveDate +android.didikee.donate.R$string: int abc_searchview_description_clear +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.R$drawable: int shortcuts_thunder_foreground +androidx.preference.R$dimen: int abc_action_bar_subtitle_top_margin_material +androidx.lifecycle.ViewModelStore: androidx.lifecycle.ViewModel get(java.lang.String) +android.didikee.donate.R$attr: int dividerPadding +okio.AsyncTimeout$2 +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: FitSystemBarViewPager(android.content.Context) +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Tooltip +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_android_thumb +androidx.preference.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.disposables.CompositeDisposable disposables +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_OFF +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context) +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: FlowableConcatMap$BaseConcatMapSubscriber(io.reactivex.functions.Function,int) +androidx.viewpager.R$styleable: int FontFamily_fontProviderFetchTimeout +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_android_windowIsFloating +okhttp3.internal.ws.RealWebSocket: long MAX_QUEUE_SIZE +androidx.constraintlayout.widget.R$color: int abc_primary_text_disable_only_material_dark +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean outputFused +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object getKey(java.lang.Object) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_9 +androidx.constraintlayout.widget.R$attr: int listChoiceIndicatorSingleAnimated +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_logoDescription +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_73 +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_min_width +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getCo() +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver +james.adaptiveicon.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_ttcIndex +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_textAppearance +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginLeft +androidx.constraintlayout.widget.R$attr: int defaultDuration +com.xw.repo.bubbleseekbar.R$drawable: int abc_vector_test +androidx.hilt.work.R$attr: int ttcIndex +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItemSecondary +wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_overflow_padding_start_material +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.internal.util.AtomicThrowable error +androidx.constraintlayout.widget.R$attr: int srcCompat +okhttp3.internal.http2.Hpack: int PREFIX_4_BITS +androidx.lifecycle.ProcessLifecycleOwner$2: void onStart() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int StartMinute +com.google.android.material.R$layout: int material_radial_view_group +androidx.recyclerview.R$styleable: int RecyclerView_reverseLayout +androidx.constraintlayout.widget.R$id: int search_bar +com.turingtechnologies.materialscrollbar.R$id: int decor_content_parent +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.constraintlayout.widget.R$attr: int alertDialogStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: AccuDailyResult$DailyForecasts$Night$Ice() +com.google.android.material.R$styleable: int StateListDrawable_android_visible +androidx.hilt.R$id: int notification_main_column_container +com.bumptech.glide.integration.okhttp.R$dimen: int notification_right_side_padding_top +okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.internal.cache.CacheStrategy get() +wangdaye.com.geometricweather.R$id: int mtrl_picker_header_selection_text +cyanogenmod.platform.Manifest$permission: java.lang.String PERFORMANCE_ACCESS +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_adjustable +james.adaptiveicon.R$attr: int editTextBackground +okhttp3.Address: java.net.ProxySelector proxySelector +androidx.appcompat.widget.ActionBarOverlayLayout +androidx.work.WorkInfo$State: boolean isFinished() +com.google.android.material.R$color: int primary_dark_material_light +wangdaye.com.geometricweather.R$id: int action_bar_title +wangdaye.com.geometricweather.R$anim: int abc_tooltip_exit wangdaye.com.geometricweather.R$attr: int stackFromEnd -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_goIcon -wangdaye.com.geometricweather.R$attr: int curveFit -androidx.appcompat.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -androidx.preference.R$id: int search_button -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickInactiveTintList() -androidx.preference.R$dimen: int abc_dialog_corner_radius_material -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleDrawable -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf -android.didikee.donate.R$styleable: int AppCompatTheme_tooltipFrameBackground -okhttp3.internal.NamedRunnable: void run() -okhttp3.internal.http2.Http2Reader$Handler: void windowUpdate(int,long) -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle MATERIAL -androidx.constraintlayout.utils.widget.ImageFilterView: void setBrightness(float) -cyanogenmod.providers.CMSettings$Global: float getFloat(android.content.ContentResolver,java.lang.String,float) -wangdaye.com.geometricweather.R$id: int widget_week_temp_4 -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline1 -wangdaye.com.geometricweather.R$color: int mtrl_tabs_ripple_color -androidx.preference.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$id: int cpv_color_image_view -com.turingtechnologies.materialscrollbar.R$bool: int abc_action_bar_embed_tabs -androidx.preference.R$dimen: R$dimen() -okhttp3.MultipartBody$Part -com.google.android.material.R$color: int mtrl_textinput_hovered_box_stroke_color -android.didikee.donate.R$attr: int imageButtonStyle -android.didikee.donate.R$dimen: int abc_panel_menu_list_width -wangdaye.com.geometricweather.R$id: int progress -androidx.appcompat.R$color: int error_color_material_light -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Chip -io.reactivex.internal.observers.BlockingObserver: void onComplete() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView_Menu -androidx.hilt.R$dimen: int notification_right_icon_size -cyanogenmod.hardware.ICMHardwareService: int[] getVibratorIntensity() -androidx.drawerlayout.R$integer: R$integer() -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean get(int) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_id -io.reactivex.internal.util.VolatileSizeArrayList: boolean remove(java.lang.Object) -androidx.viewpager.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$id: int material_clock_period_am_button -wangdaye.com.geometricweather.R$layout: int widget_day_symmetry -android.didikee.donate.R$attr: int contentInsetStartWithNavigation -androidx.vectordrawable.R$id: int tag_transition_group -androidx.hilt.lifecycle.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getAqi() -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollEnabled -wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaSeekBar -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline6 -com.jaredrummler.android.colorpicker.R$dimen: int abc_button_inset_vertical_material -com.github.rahatarmanahmed.cpv.CircularProgressView$4: CircularProgressView$4(com.github.rahatarmanahmed.cpv.CircularProgressView) -com.google.android.material.appbar.AppBarLayout: void setStatusBarForegroundColor(int) -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTimestamp(long) -com.google.android.gms.common.api.ResolvableApiException: void startResolutionForResult(android.app.Activity,int) -com.turingtechnologies.materialscrollbar.R$attr: int liftOnScroll -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio -okio.ForwardingTimeout: boolean hasDeadline() -com.jaredrummler.android.colorpicker.R$layout: int preference_recyclerview -wangdaye.com.geometricweather.R$color: int material_on_primary_disabled -wangdaye.com.geometricweather.R$drawable: int notif_temp_22 -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontWeight -cyanogenmod.platform.Manifest$permission: java.lang.String READ_THEMES -com.amap.api.fence.PoiItem: java.lang.String a -wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchAnchorSide -com.turingtechnologies.materialscrollbar.R$attr: int submitBackground -com.google.android.material.R$styleable: int LinearLayoutCompat_divider -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: java.lang.Integer clouds -androidx.preference.R$layout: int notification_action_tombstone -com.google.android.material.R$attr: int tabPaddingBottom -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: MfWarningsResult$PhenomenonMaxColor() -wangdaye.com.geometricweather.R$attr: int navigationViewStyle -com.jaredrummler.android.colorpicker.R$layout: int abc_search_view -okhttp3.logging.HttpLoggingInterceptor -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemTitle(java.lang.String) -com.google.android.material.R$styleable: int Tooltip_backgroundTint -androidx.fragment.R$style: int TextAppearance_Compat_Notification_Line2 -com.turingtechnologies.materialscrollbar.R$attr: int layout_scrollInterpolator -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchMinWidth -androidx.appcompat.R$attr: int popupMenuStyle -androidx.appcompat.R$dimen: int hint_pressed_alpha_material_light -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver observer -androidx.dynamicanimation.R$drawable -wangdaye.com.geometricweather.R$id: int textinput_helper_text -wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_padding -androidx.vectordrawable.R$drawable: int notification_tile_bg -com.google.android.material.R$color: int design_dark_default_color_on_primary -okhttp3.internal.connection.RouteSelector: okhttp3.EventListener eventListener -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionBar -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DialogWhenLarge -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_PEOPLE_LOOKUP_VALIDATOR -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_33 -com.turingtechnologies.materialscrollbar.R$id: int titleDividerNoCustom -okhttp3.internal.connection.RouteDatabase: RouteDatabase() -james.adaptiveicon.R$styleable: int[] FontFamily -com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getIndicatorHeight() -okio.Buffer$UnsafeCursor: long expandBuffer(int) -okhttp3.internal.http1.Http1Codec: okio.Sink newFixedLengthSink(long) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_selectableItemBackground -androidx.lifecycle.extensions.R$id: int italic -androidx.appcompat.R$layout: int select_dialog_item_material -wangdaye.com.geometricweather.R$attr: int triggerReceiver -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_background -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.functions.Function combiner -com.google.android.material.R$color: int material_timepicker_modebutton_tint -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_iconifiedByDefault -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean isEmpty() -androidx.coordinatorlayout.R$color -androidx.customview.R$id: int tag_unhandled_key_event_manager -com.google.android.material.chip.Chip: void setChipMinHeightResource(int) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country Country -android.didikee.donate.R$dimen: int abc_action_bar_default_padding_end_material -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: SavedStateHandle$SavingStateLiveData(androidx.lifecycle.SavedStateHandle,java.lang.String,java.lang.Object) -androidx.preference.R$attr: int checkboxStyle -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationY -com.google.android.material.tabs.TabLayout -androidx.appcompat.widget.ButtonBarLayout: int getMinimumHeight() -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_textOff -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String pubTime -wangdaye.com.geometricweather.R$id: int widget_day_week -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_117 -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_splitTrack -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -okhttp3.internal.http2.Http2: byte TYPE_SETTINGS -androidx.constraintlayout.widget.R$styleable: int[] MenuGroup -com.turingtechnologies.materialscrollbar.R$attr: int borderlessButtonStyle -com.turingtechnologies.materialscrollbar.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer wetBulbTemperature -com.jaredrummler.android.colorpicker.R$dimen: int abc_list_item_padding_horizontal_material -androidx.hilt.R$integer -okhttp3.Request$Builder: okhttp3.Headers$Builder headers -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_10 -cyanogenmod.weather.WeatherLocation: java.lang.String mCityId -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_useCompatPadding -cyanogenmod.app.Profile$Type -wangdaye.com.geometricweather.R$id: int chip1 -com.turingtechnologies.materialscrollbar.R$attr: int counterEnabled -androidx.lifecycle.LiveData$ObserverWrapper: boolean isAttachedTo(androidx.lifecycle.LifecycleOwner) -androidx.preference.R$style: int Base_V21_Theme_AppCompat -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicInteger windows -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.R$attr: int title -com.google.android.material.R$string: int mtrl_picker_text_input_month_abbr -com.google.android.material.R$attr: int pathMotionArc -com.google.android.material.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -wangdaye.com.geometricweather.R$font: int product_sans_light -okhttp3.internal.cache.DiskLruCache$Snapshot -okhttp3.Cookie: boolean hostOnly() -com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.ValueAnimator startAngleRotate -com.google.android.material.bottomappbar.BottomAppBar$Behavior: BottomAppBar$Behavior(android.content.Context,android.util.AttributeSet) -androidx.hilt.R$attr: int fontProviderCerts -androidx.appcompat.widget.ActionBarContextView: void setCustomView(android.view.View) -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setDropDownBackgroundResource(int) -com.google.android.material.R$attr: int maxImageSize -com.autonavi.aps.amapapi.model.AMapLocationServer: com.autonavi.aps.amapapi.model.AMapLocationServer h() -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_collapseContentDescription -james.adaptiveicon.R$dimen: int abc_text_size_subtitle_material_toolbar -com.turingtechnologies.materialscrollbar.R$attr: int switchPadding -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetStart -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: double Value -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabText -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onError(java.lang.Throwable) -androidx.preference.R$styleable: int AppCompatTheme_actionModeBackground -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.db.entities.DaoMaster: DaoMaster(org.greenrobot.greendao.database.Database) -wangdaye.com.geometricweather.R$array: int languages -androidx.hilt.work.R$layout: int notification_action -androidx.appcompat.R$drawable: int abc_textfield_search_default_mtrl_alpha -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Spinner_Underlined -wangdaye.com.geometricweather.R$attr: int bsb_is_float_type -wangdaye.com.geometricweather.R$attr: int textColorSearchUrl -wangdaye.com.geometricweather.R$styleable: int Slider_tickVisible -android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -com.xw.repo.bubbleseekbar.R$id: int src_in -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String Link -com.google.android.material.tabs.TabLayout: void setOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) -com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_material -wangdaye.com.geometricweather.R$string: int date_format_widget_long -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getO3() -wangdaye.com.geometricweather.R$color: int lightPrimary_5 -com.google.android.material.slider.Slider: void setThumbStrokeWidth(float) -okhttp3.Response: okhttp3.CacheControl cacheControl() -androidx.appcompat.R$attr: int tickMarkTint -wangdaye.com.geometricweather.common.basic.models.weather.Base: long timeStamp -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemBackground -wangdaye.com.geometricweather.R$id: int flip -cyanogenmod.content.Intent: java.lang.String ACTION_INITIALIZE_CM_HARDWARE -cyanogenmod.profiles.ConnectionSettings$1: cyanogenmod.profiles.ConnectionSettings[] newArray(int) -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$attr: int errorTextAppearance -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getWallpaperThemePackageName() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWindLevel -wangdaye.com.geometricweather.R$attr: int firstBaselineToTopHeight -okio.Okio: okio.Sink sink(java.net.Socket) -wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_icon -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: long serialVersionUID -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDbz(java.lang.Integer) -retrofit2.http.QueryMap -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: int status -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_Switch -com.google.android.material.button.MaterialButtonToggleGroup: void setSelectionRequired(boolean) -wangdaye.com.geometricweather.R$styleable: int MockView_mock_label -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State[] values() -com.google.android.gms.common.Feature -android.didikee.donate.R$styleable: int Toolbar_titleMarginBottom -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_dither -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constrainedHeight -androidx.transition.R$drawable: int notification_icon_background -com.google.gson.FieldNamingPolicy$3: java.lang.String translateName(java.lang.reflect.Field) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_backgroundTint -wangdaye.com.geometricweather.R$string: int mtrl_picker_navigate_to_year_description -wangdaye.com.geometricweather.R$color: int accent_material_light -com.baidu.location.indoor.mapversion.c.c$b: double d -cyanogenmod.externalviews.ExternalView$2: ExternalView$2(cyanogenmod.externalviews.ExternalView,int,int,int,int,boolean,android.graphics.Rect) -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.R$dimen: int design_fab_image_size -androidx.hilt.work.R$dimen: int compat_button_padding_horizontal_material -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedWritableDb(java.lang.String) -io.reactivex.internal.schedulers.ScheduledDirectTask: long serialVersionUID -androidx.preference.R$attr: int isLightTheme -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableRight -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.Object NextOffsetChange -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Link -wangdaye.com.geometricweather.R$string: int week_1 -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String MINUTES -android.didikee.donate.R$styleable: int[] AlertDialog -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicator(android.graphics.drawable.Drawable) -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_numericShortcut -com.turingtechnologies.materialscrollbar.R$attr: int actionModeFindDrawable -androidx.preference.R$string: int abc_activitychooserview_choose_application -cyanogenmod.providers.CMSettings$Global: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) -cyanogenmod.app.Profile: cyanogenmod.profiles.StreamSettings getSettingsForStream(int) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.util.Date date -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableEndCompat -androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_bottom_material -com.jaredrummler.android.colorpicker.R$attr: int buttonBarButtonStyle -com.google.android.material.R$dimen: int compat_button_inset_horizontal_material -cyanogenmod.hardware.CMHardwareManager: boolean setDisplayColorCalibration(int[]) -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -okhttp3.Headers$Builder: okhttp3.Headers$Builder addLenient(java.lang.String) -com.bumptech.glide.R$attr: int layout_insetEdge -android.didikee.donate.R$style: int TextAppearance_AppCompat_Menu -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String a() -com.google.android.material.R$style: int Base_V7_Theme_AppCompat -com.google.android.material.behavior.SwipeDismissBehavior: void setListener(com.google.android.material.behavior.SwipeDismissBehavior$OnDismissListener) -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String dailyForecast -okhttp3.OkHttpClient$1: okhttp3.Call newWebSocketCall(okhttp3.OkHttpClient,okhttp3.Request) -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDefaultPhoneSub(int) -com.google.android.material.R$dimen: int mtrl_calendar_year_width -wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_container -androidx.coordinatorlayout.R$attr: int font -androidx.hilt.lifecycle.R$drawable: int notification_template_icon_bg -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -androidx.appcompat.widget.AppCompatImageButton: void setImageBitmap(android.graphics.Bitmap) -okhttp3.Headers: Headers(java.lang.String[]) -okhttp3.CertificatePinner$Builder: CertificatePinner$Builder() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitation -androidx.work.OverwritingInputMerger: OverwritingInputMerger() -androidx.recyclerview.widget.RecyclerView$SavedState -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_android_minHeight -org.greenrobot.greendao.AbstractDaoMaster: int schemaVersion -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_pressedTranslationZ -com.amap.api.location.UmidtokenInfo$a -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function,boolean) -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onComplete() -com.google.android.material.R$attr: int colorControlNormal -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver -androidx.constraintlayout.widget.R$id: int rectangles -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias -okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String,java.util.Date) -james.adaptiveicon.R$dimen: int abc_action_bar_default_padding_start_material -android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection connection -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -android.didikee.donate.R$attr: int radioButtonStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_spinnerStyle -androidx.work.R$dimen: int notification_right_side_padding_top -androidx.hilt.R$styleable: int FontFamily_fontProviderFetchTimeout -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_CONSUMED -okhttp3.Cache$CacheRequestImpl: okio.Sink cacheOut -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_28 -androidx.constraintlayout.widget.R$attr: int dragThreshold -okhttp3.internal.platform.Platform: void logCloseableLeak(java.lang.String,java.lang.Object) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: void completion() -cyanogenmod.app.ICMStatusBarManager: void removeCustomTileWithTag(java.lang.String,java.lang.String,int,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: int UnitType -wangdaye.com.geometricweather.R$attr: int flow_horizontalGap -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.AlertEntityDao alertEntityDao -cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri mThumbnailUri -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startX -com.google.gson.internal.LinkedTreeMap: LinkedTreeMap() -com.google.android.material.R$styleable: int[] TextInputLayout -wangdaye.com.geometricweather.R$styleable: int Chip_chipStartPadding -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void dispose() -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$StreamTimeout writeTimeout -com.turingtechnologies.materialscrollbar.R$attr: int actionModeStyle -retrofit2.RequestFactory: java.lang.String httpMethod -wangdaye.com.geometricweather.R$attr: int elevationOverlayColor -com.turingtechnologies.materialscrollbar.R$attr: int spinnerDropDownItemStyle -okhttp3.internal.http2.Http2Connection$Listener -com.google.android.material.R$styleable: int Constraint_pivotAnchor -androidx.appcompat.R$dimen: int abc_list_item_height_small_material -android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getGrassLevel() -androidx.constraintlayout.widget.R$styleable: int Constraint_motionStagger -okhttp3.internal.connection.StreamAllocation$StreamAllocationReference -retrofit2.KotlinExtensions$awaitResponse$2$2: KotlinExtensions$awaitResponse$2$2(kotlinx.coroutines.CancellableContinuation) -wangdaye.com.geometricweather.R$array: int ui_style_values -com.google.android.material.R$style: int Base_V28_Theme_AppCompat_Light -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShrinkMotionSpecResource(int) -com.google.android.material.R$style: int Theme_Design_Light_BottomSheetDialog -androidx.constraintlayout.widget.R$integer: int abc_config_activityDefaultDur -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: ObservableSkipLast$SkipLastObserver(io.reactivex.Observer,int) -okhttp3.internal.cache.DiskLruCache$3: boolean hasNext() -androidx.preference.R$styleable: int Preference_enabled -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_behavior -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: boolean isDisposed() -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setMoonDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.disposables.ArrayCompositeDisposable: void dispose() -wangdaye.com.geometricweather.R$color: int colorLevel_4 -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getIdType(int) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_vector_test -okhttp3.internal.connection.StreamAllocation: java.lang.String toString() -wangdaye.com.geometricweather.R$string: int hourly_overview -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -androidx.appcompat.widget.AppCompatTextView: void setTextFuture(java.util.concurrent.Future) -wangdaye.com.geometricweather.R$id: int widget_day_week_center -com.google.android.material.textfield.TextInputLayout: void setHintAnimationEnabled(boolean) -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_arrow_drop_right_black_24dp -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorPrimary -androidx.constraintlayout.widget.R$styleable: int[] MotionHelper -com.bumptech.glide.request.RequestCoordinator$RequestState: boolean isComplete() -wangdaye.com.geometricweather.R$id: int action_about -cyanogenmod.hardware.CMHardwareManager: java.util.List BOOLEAN_FEATURES -okio.RealBufferedSink: okio.BufferedSink emit() -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge -android.didikee.donate.R$style: R$style() -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int prefetch -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.database.Database getDatabase() -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnClickUri(android.net.Uri) -cyanogenmod.hardware.CMHardwareManager: java.lang.String getUniqueDeviceId() -wangdaye.com.geometricweather.R$id: int search_plate -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTintMode -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: long serialVersionUID -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float pSea -okhttp3.internal.http2.Http2Reader$ContinuationSource: void close() -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_maxImageSize -androidx.cardview.widget.CardView: boolean getPreventCornerOverlap() -com.turingtechnologies.materialscrollbar.R$attr: int paddingTopNoTitle -cyanogenmod.app.ProfileManager: android.app.NotificationGroup getNotificationGroup(java.util.UUID) -okhttp3.logging.LoggingEventListener: void requestBodyStart(okhttp3.Call) -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onRequested() -wangdaye.com.geometricweather.R$styleable: int View_android_theme -com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -com.google.android.material.R$string: int abc_menu_meta_shortcut_label -com.google.android.material.R$id: int action_context_bar -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_commitIcon -wangdaye.com.geometricweather.R$string: int abc_menu_sym_shortcut_label -okio.GzipSource: GzipSource(okio.Source) -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_23 -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -wangdaye.com.geometricweather.R$id: int searchContainer +okhttp3.RequestBody$2: int val$offset +wangdaye.com.geometricweather.R$styleable: int Preference_android_layout +androidx.preference.R$id: int spacer +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +okhttp3.MultipartBody$Part: okhttp3.RequestBody body() +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabView +androidx.core.R$id: int line3 +androidx.legacy.coreutils.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: void setValue(java.lang.String) +wangdaye.com.geometricweather.R$style: int large_title_text +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_orientation +okhttp3.HttpUrl: okhttp3.HttpUrl$Builder newBuilder(java.lang.String) +com.google.android.material.R$style: int TextAppearance_Design_Placeholder +com.github.rahatarmanahmed.cpv.CircularProgressView: void setThickness(int) +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +androidx.preference.R$styleable: int AnimatedStateListDrawableItem_android_id +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_z +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_creator +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status COMPLETE +androidx.hilt.work.R$styleable: int[] Fragment +wangdaye.com.geometricweather.R$string: int settings_category_notification +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarButtonStyle +androidx.preference.R$styleable: int Toolbar_titleMargins +androidx.constraintlayout.widget.R$styleable: int MenuView_android_verticalDivider +okio.Timeout: okio.Timeout clearTimeout() +com.xw.repo.bubbleseekbar.R$color: R$color() +androidx.constraintlayout.widget.ConstraintLayout: void setId(int) +cyanogenmod.providers.CMSettings$System: float getFloat(android.content.ContentResolver,java.lang.String) +wangdaye.com.geometricweather.R$string: int status_bar_notification_info_overflow +androidx.appcompat.R$drawable +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogStyle +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_normal_material_dark +com.jaredrummler.android.colorpicker.R$attr: int navigationMode +okhttp3.internal.http.HttpCodec +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent WALLPAPER +androidx.preference.R$dimen: int abc_dialog_fixed_height_major +wangdaye.com.geometricweather.R$string: int feedback_cannot_start_live_wallpaper_activity +androidx.hilt.work.R$id: int italic +cyanogenmod.os.Build$CM_VERSION: Build$CM_VERSION() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String defenseIcon +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.ObservableSource source +android.didikee.donate.R$dimen: int abc_button_padding_vertical_material +okhttp3.Cache$2: java.lang.String next() +com.bumptech.glide.load.engine.GlideException: java.lang.Exception exception +com.google.android.material.tabs.TabLayout: void setTabIndicatorFullWidth(boolean) +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.LocationEntity) +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_colored +com.google.android.material.R$string: int mtrl_exceed_max_badge_number_suffix +com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog +okhttp3.internal.cache.DiskLruCache$Snapshot +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_20 +com.google.android.material.R$string: int material_timepicker_hour +androidx.preference.R$dimen: int abc_dropdownitem_text_padding_left +androidx.constraintlayout.widget.R$id: int scrollView +androidx.vectordrawable.animated.R$styleable: int[] ColorStateListItem +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: boolean isDisposed() +androidx.fragment.app.BackStackState +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_DifferentCornerSize +retrofit2.HttpServiceMethod$SuspendForResponse: retrofit2.CallAdapter callAdapter +okhttp3.internal.ws.RealWebSocket: int sentPingCount +wangdaye.com.geometricweather.R$drawable: int ic_briefing +androidx.vectordrawable.animated.R$id: int action_divider +androidx.constraintlayout.widget.R$dimen: int notification_content_margin_start +androidx.vectordrawable.R$id: int tag_unhandled_key_event_manager +androidx.hilt.work.R$drawable +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat +androidx.constraintlayout.widget.R$color: int accent_material_light +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int mainTextColorResId +androidx.vectordrawable.R$id: int accessibility_custom_action_28 +cyanogenmod.app.CMTelephonyManager: void setDataConnectionState(boolean) +com.google.gson.stream.JsonReader: boolean skipTo(java.lang.String) +androidx.preference.R$string: int abc_menu_delete_shortcut_label +androidx.preference.R$style: int Theme_AppCompat_DialogWhenLarge +android.didikee.donate.R$color: int abc_secondary_text_material_dark +com.google.android.material.R$attr: int toolbarId +james.adaptiveicon.R$drawable: int abc_list_selector_disabled_holo_dark +com.google.android.material.R$dimen: int material_clock_period_toggle_height +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState +okio.Okio$3: okio.Timeout timeout() +wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_tintMode +com.google.android.material.R$styleable: int MenuItem_iconTintMode +androidx.preference.R$style: int Platform_V25_AppCompat_Light +retrofit2.Retrofit$Builder: boolean validateEagerly +android.didikee.donate.R$attr: int srcCompat +com.google.android.material.R$styleable: int ViewBackgroundHelper_android_background +android.didikee.donate.R$id: int homeAsUp +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_36dp +androidx.customview.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.R$anim: int abc_slide_out_bottom +wangdaye.com.geometricweather.R$style: int Preference_SwitchPreferenceCompat +cyanogenmod.externalviews.ExternalView$8: void run() +io.reactivex.Observable: io.reactivex.Observable fromPublisher(org.reactivestreams.Publisher) +wangdaye.com.geometricweather.R$string: int material_hour_suffix +cyanogenmod.hardware.DisplayMode: void writeToParcel(android.os.Parcel,int) +com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException: long serialVersionUID +androidx.preference.R$styleable: int AppCompatTextView_autoSizeTextType +okio.Base64: byte[] decode(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTemperature +android.support.v4.app.INotificationSideChannel$Default: void notify(java.lang.String,int,java.lang.String,android.app.Notification) +com.turingtechnologies.materialscrollbar.R$integer: int mtrl_chip_anim_duration +wangdaye.com.geometricweather.R$drawable: int abc_ic_voice_search_api_material +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +androidx.dynamicanimation.R$id: int forever +android.didikee.donate.R$drawable: int abc_ic_clear_material +james.adaptiveicon.R$attr: int titleMargin +androidx.appcompat.R$attr: int thickness +androidx.constraintlayout.widget.R$layout: int abc_expanded_menu_layout +cyanogenmod.app.Profile: java.lang.String mName +androidx.constraintlayout.widget.R$id: int animateToEnd +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_height_major +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX temperature +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_focused_z +com.jaredrummler.android.colorpicker.R$id: int title +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_queryBackground +com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Determinate +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.String toString() +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setDateText(java.lang.String) +wangdaye.com.geometricweather.R$interpolator: int mtrl_linear +cyanogenmod.app.BaseLiveLockManagerService: void enforcePrivateAccessPermission() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight +android.didikee.donate.R$styleable: int[] AppCompatImageView +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_TextView_SpinnerItem +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemMaxLines +com.google.gson.internal.LazilyParsedNumber: java.lang.String value +com.google.android.material.R$drawable: int abc_scrubber_track_mtrl_alpha +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSnowPrecipitationProbability() +androidx.customview.R$styleable: int[] GradientColorItem +androidx.preference.R$attr: int useSimpleSummaryProvider +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context,android.util.AttributeSet) +james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogCenterButtons +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginEnd +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder port(int) +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_LAST_PROFILE_UUID +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder shouldCollapsePanel(boolean) +com.google.android.material.R$styleable: int TextInputLayout_shapeAppearanceOverlay +cyanogenmod.app.ICMTelephonyManager$Stub: java.lang.String DESCRIPTOR +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicReference upstream +okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String servedDateString +androidx.core.R$attr: int fontWeight +okio.Buffer: okio.Buffer writeUtf8CodePoint(int) +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.TableStatements getStatements() +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_visible +okhttp3.internal.ws.RealWebSocket$2: okhttp3.Request val$request +com.autonavi.aps.amapapi.model.AMapLocationServer: void a(long) +retrofit2.adapter.rxjava2.Result: retrofit2.Response response() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button +com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_material +wangdaye.com.geometricweather.R$styleable: int Chip_android_textAppearance +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +wangdaye.com.geometricweather.R$layout: int dialog_location_permission_statement +cyanogenmod.profiles.RingModeSettings: boolean mOverride +com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalBias +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dark +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DialogWhenLarge +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.functions.Function mapper +com.baidu.location.e.l$b: com.baidu.location.e.l$b c +androidx.constraintlayout.motion.widget.MotionLayout: void setProgress(float) +cyanogenmod.hardware.CMHardwareManager: int getVibratorWarningIntensity() +com.google.android.material.R$attr: int colorOnBackground +android.didikee.donate.R$styleable: int AppCompatImageView_srcCompat +androidx.constraintlayout.widget.R$dimen: int tooltip_vertical_padding +wangdaye.com.geometricweather.R$drawable: int indicator_ltr +okhttp3.ResponseBody$1: okhttp3.MediaType val$contentType +com.google.android.material.slider.Slider: int getFocusedThumbIndex() +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_behavior +io.reactivex.internal.util.ArrayListSupplier +okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: void execute() +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean done +com.baidu.location.indoor.mapversion.c.a$d: double b(double) +wangdaye.com.geometricweather.R$array: int precipitation_units +okhttp3.MultipartBody: okhttp3.MediaType type() +com.xw.repo.bubbleseekbar.R$attr: int actionProviderClass +androidx.constraintlayout.widget.R$attr: int textColorAlertDialogListItem +okhttp3.internal.connection.StreamAllocation: okhttp3.Route route +com.xw.repo.bubbleseekbar.R$attr: int textColorAlertDialogListItem +wangdaye.com.geometricweather.R$layout: int item_weather_daily_uv +androidx.vectordrawable.animated.R$color: int notification_action_color_filter +androidx.loader.R$id: int notification_background +androidx.preference.R$styleable: int SwitchPreference_android_summaryOn +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_SYNC +wangdaye.com.geometricweather.R$drawable: int mtrl_ic_arrow_drop_down +android.support.v4.os.ResultReceiver$MyRunnable: int mResultCode +android.didikee.donate.R$string: int abc_action_mode_done +com.xw.repo.bubbleseekbar.R$id: int search_button +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void replayFinal() +androidx.lifecycle.LifecycleRegistry: boolean isSynced() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_width_minor +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_imageButtonStyle +io.reactivex.Observable: io.reactivex.Single toList() +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode getInstance(java.lang.String) +androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_to_on_mtrl_000 +okio.Okio$1: void close() +androidx.preference.R$styleable: int[] TextAppearance +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: void setUnfold(boolean) +androidx.transition.R$id: int notification_main_column_container +okhttp3.Headers: void checkName(java.lang.String) +androidx.work.R$id: int blocking +wangdaye.com.geometricweather.R$attr: int actionBarPopupTheme +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$style: int AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalAlign +androidx.appcompat.R$dimen: int abc_text_size_menu_header_material +cyanogenmod.profiles.ConnectionSettings$BooleanState: int STATE_DISALED +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: io.reactivex.Observer observer +androidx.lifecycle.LifecycleRegistry$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$State +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Flush +okhttp3.internal.http2.Http2Stream$FramingSource: long maxByteCount +androidx.vectordrawable.R$id: int italic +james.adaptiveicon.R$id: int customPanel +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitation com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog -com.google.android.material.R$styleable: int Constraint_android_transformPivotX -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.disposables.CompositeDisposable set -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments text -cyanogenmod.weather.CMWeatherManager: CMWeatherManager(android.content.Context) -androidx.appcompat.R$styleable: int ActionBar_subtitleTextStyle -androidx.lifecycle.extensions.R$anim: int fragment_fade_exit -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabView -cyanogenmod.media.MediaRecorder$AudioSource -com.jaredrummler.android.colorpicker.R$id: int split_action_bar -androidx.cardview.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_vertical_2lines -retrofit2.Converter$Factory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -okhttp3.internal.ws.WebSocketReader: byte[] maskKey -androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonTint -androidx.work.R$color: R$color() -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItemSecondary -android.didikee.donate.R$styleable: int MenuItem_android_icon -android.support.v4.app.INotificationSideChannel$Stub$Proxy: java.lang.String getInterfaceDescriptor() -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: boolean isDisposed() -androidx.vectordrawable.R$styleable: int GradientColorItem_android_offset -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -androidx.lifecycle.Transformations$3: boolean mFirstTime +com.google.android.material.R$attr: int closeIconEndPadding +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertInTxArray +androidx.recyclerview.R$styleable: int FontFamily_fontProviderCerts +com.xw.repo.bubbleseekbar.R$attr: int dropdownListPreferredItemHeight +androidx.appcompat.widget.ActionBarContainer: void setPrimaryBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setStatus(int) +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver +cyanogenmod.app.ProfileGroup: boolean matches(android.app.NotificationGroup,boolean) +okhttp3.internal.platform.ConscryptPlatform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindLevel +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: int UnitType +wangdaye.com.geometricweather.R$attr: int imageAspectRatioAdjust +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_lookupCity +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_rightToLeft +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String postCode +wangdaye.com.geometricweather.R$styleable: int Preference_android_defaultValue +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: io.reactivex.SingleSource other +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderPackage +okhttp3.Response: okhttp3.Protocol protocol() +androidx.legacy.coreutils.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$string: int introduce +com.google.android.material.R$attr: int sliderStyle +wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_MIDDLE +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Snackbar_Message +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_previewSize +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterOverflowTextColor +androidx.constraintlayout.widget.R$attr: int placeholder_emptyVisibility +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_RED_INDEX +com.google.android.material.R$styleable: int Slider_tickColor +okio.RealBufferedSink: okio.BufferedSink writeDecimalLong(long) +wangdaye.com.geometricweather.R$attr: int customIntegerValue +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getZh_TW() +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean cancel(java.util.concurrent.atomic.AtomicReference) +androidx.preference.R$attr: int colorAccent +androidx.preference.R$styleable: int AppCompatTheme_actionDropDownStyle +androidx.legacy.coreutils.R$id: int notification_main_column_container +com.google.android.material.bottomnavigation.BottomNavigationView: void setSelectedItemId(int) +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onStart() +okio.GzipSink: void write(okio.Buffer,long) +wangdaye.com.geometricweather.R$drawable: int widget_clock_day_vertical +com.google.android.material.slider.BaseSlider: void setStepSize(float) +com.google.android.material.R$attr: int constraintSet +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon +androidx.appcompat.widget.MenuPopupWindow +com.google.android.material.internal.ParcelableSparseArray: android.os.Parcelable$Creator CREATOR +cyanogenmod.profiles.AirplaneModeSettings: int mValue +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_left_mtrl_dark +com.google.android.material.slider.RangeSlider: void setThumbTintList(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_DropDownItem_Spinner +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void dispose() +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void subscribe() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.disposables.CompositeDisposable disposables +androidx.fragment.R$drawable +com.google.android.material.imageview.ShapeableImageView: void setStrokeWidth(float) +okhttp3.internal.http2.Http2Connection$6: okio.Buffer val$buffer +com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar_PrimarySurface +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_begin +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: ObservableWithLatestFrom$WithLatestFromObserver(io.reactivex.Observer,io.reactivex.functions.BiFunction) +james.adaptiveicon.R$id: int search_src_text +androidx.preference.R$dimen: int hint_alpha_material_light +androidx.vectordrawable.animated.R$color: int secondary_text_default_material_light +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean getAddress_detail() +com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonTint +androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +com.google.android.material.R$styleable: int KeyAttribute_android_transformPivotX +android.didikee.donate.R$id +okhttp3.Response$Builder: okhttp3.Response$Builder addHeader(java.lang.String,java.lang.String) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int ISOLATED_THUNDERSHOWERS +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getIcePrecipitationProbability() +androidx.appcompat.R$style: int Widget_AppCompat_DropDownItem_Spinner +androidx.fragment.R$dimen: int compat_button_inset_horizontal_material +androidx.viewpager.R$integer: R$integer() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorTextColor +org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType None +wangdaye.com.geometricweather.R$styleable: int Layout_barrierAllowsGoneWidgets +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_android_src +com.baidu.location.indoor.mapversion.c.a$d: double d(double) +com.bumptech.glide.load.engine.GlideException: java.lang.Throwable fillInStackTrace() +androidx.constraintlayout.widget.R$attr: int saturation +com.google.android.material.R$styleable: int Variant_constraints +androidx.core.R$color: int androidx_core_secondary_text_default_material_light +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getMinutelyForecast() +com.google.android.material.R$dimen: int fastscroll_margin +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWeatherText +okhttp3.Request: okhttp3.Request$Builder newBuilder() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionBar +androidx.preference.R$styleable: int ActionMode_titleTextStyle +com.google.android.material.R$attr: int expandedTitleMarginTop +com.loc.k: java.lang.String b +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_singleLine +okhttp3.CacheControl$Builder: int maxStaleSeconds +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SHOWERS +james.adaptiveicon.R$styleable: int[] ActionMode +com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context) +androidx.preference.R$dimen: int abc_list_item_height_large_material +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_DarkActionBar +androidx.recyclerview.R$string: R$string() +wangdaye.com.geometricweather.R$layout: int widget_clock_day_vertical +wangdaye.com.geometricweather.R$attr: int arc_angle +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: double lat +androidx.preference.R$style: int TextAppearance_AppCompat_Caption +wangdaye.com.geometricweather.R$color: int colorTextTitle_dark +retrofit2.OkHttpCall: retrofit2.Response execute() +androidx.constraintlayout.widget.R$styleable: int Spinner_android_entries +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_DropDown +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: float mMin +androidx.constraintlayout.widget.R$styleable: int Transform_android_rotationY +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +com.github.rahatarmanahmed.cpv.CircularProgressView: int thickness +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain rain +androidx.work.R$id: int accessibility_custom_action_9 +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void dispose() +android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogStyle +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature temperature +androidx.lifecycle.extensions.R$id: int notification_main_column_container +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void dispose() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupMenu_Overflow +com.google.android.material.R$styleable: int Constraint_android_visibility +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_switchStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_pressed_alpha +wangdaye.com.geometricweather.R$styleable: int Preference_order +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCloudCover(java.lang.Integer) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver parent +com.jaredrummler.android.colorpicker.R$id: int up +okio.DeflaterSink: DeflaterSink(okio.BufferedSink,java.util.zip.Deflater) +okhttp3.OkHttpClient$1: boolean connectionBecameIdle(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) +com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderAuthority +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Colored +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getDirection() +androidx.appcompat.R$color: int abc_primary_text_disable_only_material_light +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: IWeatherServiceProviderChangeListener$Stub() +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionBar +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_material +androidx.preference.R$attr: int actionBarTheme +okhttp3.internal.http2.Http2Stream: void checkOutNotClosed() +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable,int) +cyanogenmod.providers.CMSettings$System: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: void run() +com.google.android.material.internal.NavigationMenuItemView: void setMaxLines(int) +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean isDisposed() +com.turingtechnologies.materialscrollbar.R$attr: int actionBarSize +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String dataUptime +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabUnboundedRipple +androidx.preference.R$styleable: int GradientColor_android_startColor +com.turingtechnologies.materialscrollbar.R$styleable: int[] TouchScrollBar +okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,long,okio.BufferedSource) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_auto_adjust_section_mark +wangdaye.com.geometricweather.R$color: int background_floating_material_dark +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setLocation(android.location.Location) +com.xw.repo.BubbleSeekBar: float getProgressFloat() +okhttp3.internal.http2.Http2Connection: void writePing(boolean,int,int) wangdaye.com.geometricweather.R$dimen: int widget_subtitle_text_size -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -com.google.android.material.R$styleable: int Badge_badgeGravity -okhttp3.internal.ws.WebSocketWriter: byte[] maskKey -wangdaye.com.geometricweather.R$drawable: int abc_control_background_material -com.xw.repo.bubbleseekbar.R$attr: int dialogPreferredPadding -okhttp3.internal.http2.Http2Connection$PingRunnable: okhttp3.internal.http2.Http2Connection this$0 -retrofit2.ServiceMethod: java.lang.Object invoke(java.lang.Object[]) -cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: int FAHRENHEIT -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dialog -io.reactivex.Observable: io.reactivex.Observable concatMapSingle(io.reactivex.functions.Function,int) -com.bumptech.glide.integration.okhttp.R$style: R$style() -androidx.appcompat.R$styleable: int AppCompatTheme_listDividerAlertDialog -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setSunRise(java.lang.String) -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean,int,int) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitationDuration(java.lang.Float) -wangdaye.com.geometricweather.R$styleable: int TouchScrollBar_msb_hideDelayInMilliseconds -io.reactivex.internal.util.VolatileSizeArrayList: int indexOf(java.lang.Object) -james.adaptiveicon.R$attr: int tint -wangdaye.com.geometricweather.R$styleable: int CardView_cardUseCompatPadding -cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.ICMTelephonyManager getService() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date moonRiseDate -okio.Options: okio.Options of(okio.ByteString[]) -com.google.android.material.R$dimen: int material_emphasis_high_type -wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotation -okhttp3.internal.http1.Http1Codec$AbstractSource: okhttp3.internal.http1.Http1Codec this$0 -com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableItem -com.turingtechnologies.materialscrollbar.R$attr: int showText -androidx.appcompat.widget.AppCompatCheckBox: void setButtonDrawable(int) -cyanogenmod.app.ICMTelephonyManager$Stub: ICMTelephonyManager$Stub() -androidx.preference.R$styleable: int Preference_fragment -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int sourceMode -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortTemperature(android.content.Context,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -wangdaye.com.geometricweather.R$string: int v7_preference_off -androidx.recyclerview.R$dimen: int notification_action_icon_size -androidx.recyclerview.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$array: int week_widget_styles -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_24 -io.reactivex.internal.util.NotificationLite: java.lang.Object complete() -androidx.viewpager2.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$id: int search_button -wangdaye.com.geometricweather.R$attr: int customPixelDimension -androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout_PrimarySurface -androidx.preference.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -com.google.android.material.R$dimen: int abc_text_size_title_material_toolbar -androidx.appcompat.R$dimen: int abc_action_bar_stacked_max_height -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: long serialVersionUID -androidx.fragment.app.DialogFragment: DialogFragment() -com.google.android.material.R$style: int Theme_AppCompat_Light_DarkActionBar -okhttp3.internal.http2.Http2: java.lang.String formatFlags(byte,byte) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicReference boundaryObserver -com.xw.repo.bubbleseekbar.R$attr: int trackTintMode -com.turingtechnologies.materialscrollbar.R$dimen: int notification_subtext_size -android.didikee.donate.R$attr: int editTextColor -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_ActionBar -android.didikee.donate.R$attr: int actionBarSplitStyle -androidx.preference.R$style: int Widget_AppCompat_ListMenuView -androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerY -okio.GzipSink: void writeFooter() -android.didikee.donate.R$anim: int abc_shrink_fade_out_from_bottom -com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xmp -androidx.hilt.R$id: int text2 -wangdaye.com.geometricweather.R$string: int settings_category_forecast -okhttp3.internal.Util: java.lang.String canonicalizeHost(java.lang.String) -com.google.android.material.R$styleable: int ConstraintSet_constraint_referenced_ids -wangdaye.com.geometricweather.R$string: int wind_5 -com.amap.api.location.AMapLocation: void setFloor(java.lang.String) -androidx.preference.R$color: int bright_foreground_disabled_material_dark -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_gravity -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabTextStyle -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconStartPadding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.util.List getValue() -com.google.android.material.R$string: int mtrl_picker_invalid_format_use -com.google.android.material.R$styleable: int Toolbar_collapseIcon -okhttp3.OkHttpClient: int writeTimeoutMillis() -androidx.lifecycle.ProcessLifecycleOwner$2: androidx.lifecycle.ProcessLifecycleOwner this$0 -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display1 -androidx.dynamicanimation.R$layout: int notification_template_part_time -androidx.hilt.work.R$anim: int fragment_close_exit -retrofit2.Call: void cancel() -com.turingtechnologies.materialscrollbar.R$attr: int chipSpacingVertical -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: ObservableConcatWithSingle$ConcatWithObserver(io.reactivex.Observer,io.reactivex.SingleSource) -androidx.constraintlayout.widget.R$attr: int perpendicularPath_percent -wangdaye.com.geometricweather.R$attr: int motion_triggerOnCollision -androidx.appcompat.R$style: int Base_V21_Theme_AppCompat -androidx.viewpager2.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator -androidx.constraintlayout.widget.R$styleable: int ButtonBarLayout_allowStacking -com.xw.repo.bubbleseekbar.R$id: int action_bar_title -androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityPreCreated(android.app.Activity,android.os.Bundle) -com.jaredrummler.android.colorpicker.R$attr: int dependency -androidx.appcompat.R$attr: int actionModeStyle -io.reactivex.Observable: io.reactivex.Observable concatMapEagerDelayError(io.reactivex.functions.Function,int,int,boolean) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWetBulbTemperature -cyanogenmod.profiles.LockSettings$1: cyanogenmod.profiles.LockSettings createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$attr: int layout_collapseMode -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelBackground -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionMode -androidx.cardview.R$style: int CardView_Light -com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetBottom -androidx.constraintlayout.widget.R$attr: int touchRegionId -cyanogenmod.app.ThemeVersion: int getMinSupportedVersion() -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.lang.Object next() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.appcompat.resources.R$id: int action_divider -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_localTimeText -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorBackgroundFloating -androidx.preference.R$id: int topPanel -androidx.appcompat.R$styleable: int ColorStateListItem_android_alpha -cyanogenmod.weatherservice.ServiceRequestResult: int hashCode() -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog -okhttp3.internal.tls.CertificateChainCleaner: okhttp3.internal.tls.CertificateChainCleaner get(java.security.cert.X509Certificate[]) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -okhttp3.internal.http1.Http1Codec$FixedLengthSink: okhttp3.internal.http1.Http1Codec this$0 +wangdaye.com.geometricweather.R$id: int grassTitle +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void cancel() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonPhaseDescription(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Widget_Compat_NotificationActionText +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundTintMode +com.google.android.material.R$color: int design_default_color_background +com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundMode(int) +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +wangdaye.com.geometricweather.settings.activities.PreviewIconActivity: PreviewIconActivity() +io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean) +okhttp3.WebSocket: long queueSize() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ZEN_PRIORITY_ALLOW_LIGHTS_VALIDATOR +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display1 +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable +wangdaye.com.geometricweather.R$attr: int fabCradleVerticalOffset +james.adaptiveicon.R$drawable: int abc_btn_radio_material +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton +androidx.work.R$id: int actions +james.adaptiveicon.R$attr: int colorPrimaryDark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setO3Desc(java.lang.String) +androidx.recyclerview.R$id: int normal +androidx.work.R$id: int dialog_button +com.google.android.material.R$styleable: int Layout_layout_constraintBottom_toBottomOf +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onResume() +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getLightsMode() +androidx.preference.R$styleable: int PreferenceFragmentCompat_android_divider +androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context) +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +com.xw.repo.bubbleseekbar.R$id: int notification_main_column +com.google.android.material.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,byte[]) +com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontWeight +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableLeftCompat +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_2_material +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +android.didikee.donate.R$style: int Widget_AppCompat_TextView_SpinnerItem +wangdaye.com.geometricweather.R$string: int settings_title_click_widget_to_refresh +retrofit2.SkipCallbackExecutorImpl: boolean equals(java.lang.Object) +androidx.appcompat.widget.Toolbar: void setNavigationIcon(android.graphics.drawable.Drawable) +james.adaptiveicon.R$attr: int queryHint +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button +androidx.preference.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] publicSuffixListBytes +okhttp3.HttpUrl$Builder: int schemeDelimiterOffset(java.lang.String,int,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onSuccess(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int actionModeSplitBackground +androidx.hilt.work.R$styleable: int Fragment_android_name +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotationY +androidx.recyclerview.R$id: int accessibility_custom_action_19 +cyanogenmod.externalviews.KeyguardExternalView$6: cyanogenmod.externalviews.KeyguardExternalView this$0 +androidx.constraintlayout.widget.R$attr: int flow_verticalAlign +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +okhttp3.Request$Builder: okhttp3.Request$Builder removeHeader(java.lang.String) +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$id: int widget_text_container +okhttp3.internal.cache.InternalCache: void remove(okhttp3.Request) +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_orientation +cyanogenmod.app.LiveLockScreenManager: boolean getLiveLockScreenEnabled() +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void fail(java.lang.Throwable,io.reactivex.Observer,io.reactivex.internal.queue.SpscLinkedArrayQueue) +com.google.android.material.datepicker.DateValidatorPointForward: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$id: int search_voice_btn +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_14 +james.adaptiveicon.R$attr: int tickMarkTint +com.google.android.material.R$styleable: int AppCompatTheme_checkboxStyle +com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat_Light +com.google.android.material.R$dimen: int mtrl_fab_translation_z_hovered_focused +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Pm10 +androidx.legacy.coreutils.R$id: int actions +com.google.android.gms.location.ActivityTransitionEvent +androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SeekBar +com.github.rahatarmanahmed.cpv.CircularProgressView$2: float val$currentProgress +cyanogenmod.providers.CMSettings$Secure$2: CMSettings$Secure$2() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_motionStagger +com.google.android.material.chip.Chip: android.graphics.RectF getCloseIconTouchBounds() +wangdaye.com.geometricweather.R$styleable: int StateSet_defaultState +androidx.appcompat.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text +wangdaye.com.geometricweather.db.entities.DailyEntity: void setPm25(java.lang.Float) +james.adaptiveicon.R$id: int action_mode_bar_stub +okhttp3.OkHttpClient: okhttp3.internal.cache.InternalCache internalCache() +com.google.android.material.R$color: int highlighted_text_material_light +james.adaptiveicon.R$color: int abc_search_url_text_pressed +wangdaye.com.geometricweather.R$id: int search_go_btn +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_expandedHintEnabled +androidx.preference.R$styleable: int Preference_order +wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_2 +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean mShouldShow +androidx.appcompat.R$dimen: int tooltip_y_offset_non_touch +com.google.android.material.R$drawable: int btn_radio_off_mtrl com.google.android.material.R$styleable: int MenuView_android_horizontalDivider -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_FORWARD_LOOKUP_VALIDATOR -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: AccuCurrentResult$RealFeelTemperatureShade$Metric() -androidx.activity.R$color: int notification_icon_bg_color -androidx.drawerlayout.R$attr: int fontProviderPackage -com.google.android.material.R$color: int mtrl_fab_bg_color_selector -wangdaye.com.geometricweather.R$drawable: int notif_temp_37 -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode THUNDER -androidx.viewpager2.R$dimen: R$dimen() -wangdaye.com.geometricweather.R$styleable: int ClockFaceView_valueTextColor -james.adaptiveicon.R$style: int Widget_AppCompat_Light_PopupMenu -com.google.android.material.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$attr: int cpv_dialogType -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline2 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_94 -androidx.preference.R$styleable: int AppCompatTheme_windowActionModeOverlay -wangdaye.com.geometricweather.R$attr: int titleEnabled -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton -com.google.android.material.slider.Slider: int getActiveThumbIndex() -cyanogenmod.externalviews.ExternalView: void onAttachedToWindow() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getBrandId() -wangdaye.com.geometricweather.R$attr: int radius_from -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.Observer downstream -okio.RealBufferedSource: long indexOfElement(okio.ByteString) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Small_Inverse -com.google.android.material.R$styleable: int RecyclerView_android_orientation -androidx.preference.R$styleable: int Toolbar_menu -com.google.android.material.R$dimen: int mtrl_btn_letter_spacing -androidx.constraintlayout.widget.R$id: int reverseSawtooth -androidx.appcompat.widget.AppCompatSpinner: void setSupportBackgroundTintList(android.content.res.ColorStateList) -cyanogenmod.app.ProfileManager: java.lang.String[] getProfileNames() -wangdaye.com.geometricweather.R$attr: int autoSizePresetSizes -com.google.android.material.circularreveal.CircularRevealRelativeLayout: CircularRevealRelativeLayout(android.content.Context) -androidx.fragment.app.FragmentManagerViewModel -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_DarkActionBar -wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationX -android.didikee.donate.R$style: int Base_V7_Theme_AppCompat -com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_borderColor -wangdaye.com.geometricweather.R$style: int widget_text_clock_analog_Light -wangdaye.com.geometricweather.R$attr: int tabBackground -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_closeItemLayout -org.greenrobot.greendao.AbstractDao: void deleteInTx(java.lang.Object[]) -androidx.swiperefreshlayout.R$style: int Widget_Compat_NotificationActionText -com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_default -com.google.android.material.R$styleable: int ProgressIndicator_trackColor -com.google.android.material.R$id: int spread -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void dispose() -io.reactivex.internal.disposables.CancellableDisposable: CancellableDisposable(io.reactivex.functions.Cancellable) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf -android.didikee.donate.R$styleable: int ButtonBarLayout_allowStacking -com.xw.repo.bubbleseekbar.R$dimen: int abc_cascading_menus_min_smallest_width -com.jaredrummler.android.colorpicker.R$color: int background_material_light -androidx.recyclerview.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.R$styleable: int ActionBar_customNavigationLayout -androidx.preference.R$dimen: int abc_action_bar_default_height_material -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_navigationMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String zh_CN -androidx.appcompat.resources.R$layout: int notification_template_part_chronometer -androidx.constraintlayout.widget.R$styleable: int Constraint_animate_relativeTo -okhttp3.internal.tls.OkHostnameVerifier: OkHostnameVerifier() -wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_layout -androidx.appcompat.resources.R$dimen: int notification_right_side_padding_top -androidx.preference.R$attr: int dialogTitle +okhttp3.logging.LoggingEventListener: void callStart(okhttp3.Call) +cyanogenmod.profiles.RingModeSettings$1 +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.viewpager2.R$dimen: int notification_big_circle_margin +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_128 +androidx.preference.R$styleable: int AppCompatTextView_autoSizePresetSizes +android.didikee.donate.R$styleable: int ActionBar_backgroundSplit +com.google.android.material.R$styleable: int MenuGroup_android_checkableBehavior +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_ttcIndex +james.adaptiveicon.R$layout: int abc_action_menu_item_layout +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: boolean isDisposed() +com.google.android.material.R$styleable: int ActionBar_backgroundSplit +com.google.android.material.R$id: int action_bar_container +cyanogenmod.content.Intent: java.lang.String ACTION_OPEN_LIVE_LOCKSCREEN_SETTINGS +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: cyanogenmod.weatherservice.WeatherProviderService this$0 +okhttp3.internal.http2.Http2Writer: void applyAndAckSettings(okhttp3.internal.http2.Settings) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizePresetSizes +androidx.viewpager.R$styleable: int GradientColor_android_type +cyanogenmod.app.Profile: boolean mDirty +wangdaye.com.geometricweather.R$id: int aligned +com.google.android.material.appbar.AppBarLayout: int getLiftOnScrollTargetViewId() +androidx.constraintlayout.widget.R$layout: int notification_template_part_time +com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu +com.google.gson.internal.LinkedTreeMap: java.lang.Object writeReplace() +android.didikee.donate.R$styleable: int DrawerArrowToggle_arrowShaftLength +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HourlyEntityDao getHourlyEntityDao() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Type +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextAppearanceInactive(int) +androidx.appcompat.widget.AppCompatSpinner: void setBackgroundDrawable(android.graphics.drawable.Drawable) +com.google.android.gms.common.api.GoogleApiClient +android.didikee.donate.R$attr: int subtitleTextColor +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void dispose() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial +james.adaptiveicon.R$layout: int abc_list_menu_item_checkbox +wangdaye.com.geometricweather.R$id: int clear_text +com.google.android.material.R$styleable: int SearchView_suggestionRowLayout +retrofit2.converter.gson.GsonRequestBodyConverter: com.google.gson.Gson gson +com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_backgroundTint +com.amap.api.fence.GeoFence: void setMaxDis2Center(float) +androidx.appcompat.widget.LinearLayoutCompat: void setOrientation(int) +com.turingtechnologies.materialscrollbar.R$attr: int hideOnContentScroll +okhttp3.OkHttpClient: java.net.ProxySelector proxySelector() +com.turingtechnologies.materialscrollbar.R$color: int foreground_material_dark +androidx.constraintlayout.widget.R$string: int abc_activitychooserview_choose_application +androidx.vectordrawable.R$styleable: int GradientColor_android_centerColor +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_iconifiedByDefault +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_ensureMinTouchTargetSize +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotationY +androidx.customview.R$dimen: R$dimen() +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_contentDescription +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_HOME_DOUBLE_TAP_ACTION_VALIDATOR +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$anim: int abc_slide_out_top +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +androidx.work.R$drawable: int notification_bg_low_normal +androidx.lifecycle.ProcessLifecycleOwner +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type BOTTOM +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void dispose() +okio.Pipe$PipeSource: Pipe$PipeSource(okio.Pipe) +androidx.constraintlayout.widget.R$styleable: int Transition_duration +com.google.android.material.button.MaterialButton: int getIconSize() +com.turingtechnologies.materialscrollbar.R$drawable: int indicator_ltr +io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_READY +com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialScrollBar +okhttp3.internal.http2.Http2Reader: void close() +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getType() +android.didikee.donate.R$drawable: int abc_text_cursor_material +android.didikee.donate.R$style: int Base_V23_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_48 +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginRight +com.google.android.material.R$drawable: int ic_keyboard_black_24dp +com.turingtechnologies.materialscrollbar.R$attr: int alertDialogCenterButtons +androidx.swiperefreshlayout.R$color: R$color() +cyanogenmod.app.IProfileManager: boolean removeProfile(cyanogenmod.app.Profile) +com.amap.api.fence.GeoFence: int TYPE_POLYGON +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_progressBarStyle +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_itemPadding +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_container +com.google.android.material.R$dimen: int mtrl_low_ripple_pressed_alpha +androidx.transition.R$color: int ripple_material_light +cyanogenmod.weather.WeatherInfo: java.util.List mForecastList +androidx.appcompat.R$id: R$id() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: IKeyguardExternalViewProvider$Stub() +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String weatherSource +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_80 +cyanogenmod.media.MediaRecorder: MediaRecorder() +cyanogenmod.externalviews.ExternalViewProviderService: android.os.IBinder onBind(android.content.Intent) +com.google.android.material.R$styleable: int MaterialCardView_state_dragged +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String comment +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String MINUTES +wangdaye.com.geometricweather.R$attr: int preferenceFragmentStyle +james.adaptiveicon.R$styleable: int AppCompatTheme_panelBackground +wangdaye.com.geometricweather.R$styleable: int ButtonBarLayout_allowStacking +com.google.android.material.tabs.TabLayout: void setSelectedTabView(int) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTotalPrecipitation(java.lang.Float) +androidx.constraintlayout.widget.R$drawable: int notification_bg +com.bumptech.glide.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +com.google.android.material.R$attr: int actionModeCloseDrawable +androidx.constraintlayout.motion.widget.MotionLayout: int getEndState() +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: CaiYunMainlyResult$CurrentBean() +wangdaye.com.geometricweather.R$string: int feedback_show_widget_card_alpha +androidx.customview.R$styleable: int GradientColor_android_startX +androidx.hilt.work.R$attr: int fontProviderCerts +androidx.appcompat.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$attr: int materialCalendarStyle +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorPrimaryDark +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored +cyanogenmod.app.IProfileManager: boolean setActiveProfile(android.os.ParcelUuid) +androidx.core.widget.NestedScrollView +io.reactivex.internal.util.VolatileSizeArrayList: boolean retainAll(java.util.Collection) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Large +com.google.android.material.navigation.NavigationView: android.view.Menu getMenu() +okhttp3.internal.http.HttpHeaders: boolean skipWhitespaceAndCommas(okio.Buffer) +okhttp3.ConnectionPool: java.util.concurrent.Executor executor +com.google.android.material.R$attr: int counterEnabled +androidx.preference.R$drawable: int abc_list_pressed_holo_light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: AccuCurrentResult$WindGust$Speed$Metric() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_transformPivotX +com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingEnd +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerValue(boolean,java.lang.Object) +androidx.transition.R$dimen: int compat_button_inset_horizontal_material +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_DialogWhenLarge +com.amap.api.location.AMapLocation: int LOCATION_TYPE_FAST +com.jaredrummler.android.colorpicker.R$attr: int searchIcon +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog +james.adaptiveicon.R$styleable: int MenuItem_contentDescription +cyanogenmod.os.Concierge: Concierge() +androidx.appcompat.R$drawable: int abc_item_background_holo_dark +wangdaye.com.geometricweather.R$attr: int indicatorCornerRadius +wangdaye.com.geometricweather.R$string: int key_notification_temp_icon +androidx.preference.R$styleable: int TextAppearance_fontVariationSettings +androidx.constraintlayout.widget.R$attr: int elevation +com.google.android.material.R$styleable: int[] SnackbarLayout +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial() +androidx.preference.R$style: int PreferenceSummaryTextStyle +wangdaye.com.geometricweather.R$dimen: int material_clock_hand_stroke_width +okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV3 +okhttp3.Response: long receivedResponseAtMillis() +androidx.appcompat.R$attr: int fontVariationSettings +androidx.hilt.lifecycle.R$id: int notification_background +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize +androidx.constraintlayout.widget.R$attr: int isLightTheme +com.google.android.material.R$attr: int maxActionInlineWidth +io.reactivex.Observable: io.reactivex.Observable interval(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction Direction +androidx.loader.R$styleable: int FontFamilyFont_fontWeight +android.didikee.donate.R$style: int Base_Widget_AppCompat_SeekBar +wangdaye.com.geometricweather.R$styleable: int[] LiveLockScreen +io.reactivex.internal.util.NotificationLite$SubscriptionNotification: NotificationLite$SubscriptionNotification(org.reactivestreams.Subscription) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIcon +androidx.constraintlayout.widget.R$color: int abc_hint_foreground_material_dark +wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedDescription(java.lang.String) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$id: int icon +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath +wangdaye.com.geometricweather.db.entities.LocationEntity: void setResidentPosition(boolean) +androidx.constraintlayout.widget.R$id: int decor_content_parent +com.google.android.material.R$style: int Widget_AppCompat_PopupWindow +androidx.appcompat.R$styleable: int ActionBar_title +wangdaye.com.geometricweather.R$string: int chip_text +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_text_color +com.google.android.material.internal.BaselineLayout +androidx.constraintlayout.widget.R$styleable: int View_paddingStart +android.didikee.donate.R$style: int Widget_AppCompat_ActionMode +com.google.gson.stream.JsonToken: JsonToken(java.lang.String,int) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_17 +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SMOKY +com.amap.api.location.AMapLocation: void setRoad(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +com.jaredrummler.android.colorpicker.R$style +okhttp3.internal.platform.Platform: Platform() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl access$000(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider) +wangdaye.com.geometricweather.R$color: int highlighted_text_material_light +wangdaye.com.geometricweather.R$id: int dragStart +james.adaptiveicon.R$styleable: int AppCompatTheme_editTextColor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: double Value +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorGravity +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getThumbTintList() +james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_DropDown +com.xw.repo.bubbleseekbar.R$id: int activity_chooser_view_content +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Small +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: org.reactivestreams.Subscription upstream +androidx.vectordrawable.animated.R$id: int text +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_default +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider AMAP +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +com.turingtechnologies.materialscrollbar.R$dimen: int compat_notification_large_icon_max_height +com.amap.api.location.AMapLocationClientOption: boolean k +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService: ForegroundTodayForecastUpdateService() +androidx.core.R$dimen: int notification_subtext_size +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Writer writer +androidx.preference.R$styleable: int Toolbar_navigationIcon +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean unbounded +com.google.android.gms.base.R$string: int common_google_play_services_enable_title +androidx.swiperefreshlayout.R$dimen: int notification_top_pad +com.bumptech.glide.R$id: int action_text +com.xw.repo.bubbleseekbar.R$dimen: int abc_disabled_alpha_material_dark +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryInnerObserver boundaryObserver +com.amap.api.location.CoordUtil: void setLoadedSo(boolean) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_pressed_holo_dark +retrofit2.converter.gson.GsonRequestBodyConverter +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +com.google.android.material.R$string: int mtrl_picker_text_input_year_abbr +android.didikee.donate.R$styleable: int ActionBar_indeterminateProgressStyle +com.jaredrummler.android.colorpicker.R$color: int abc_tint_default +cyanogenmod.app.CustomTile$ExpandedStyle$1: CustomTile$ExpandedStyle$1() +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_1 +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onSubscribe(org.reactivestreams.Subscription) +wangdaye.com.geometricweather.R$id: int app_bar +com.jaredrummler.android.colorpicker.R$dimen: int abc_button_inset_vertical_material +okhttp3.internal.platform.AndroidPlatform: boolean api23IsCleartextTrafficPermitted(java.lang.String,java.lang.Class,java.lang.Object) +androidx.hilt.lifecycle.R$color: int notification_action_color_filter +com.google.android.material.R$id: int circular +com.google.android.material.R$attr: int maxVelocity +com.google.android.material.R$id: int outgoing +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderAuthority +com.jaredrummler.android.colorpicker.ColorPanelView: int getColor() +androidx.customview.R$drawable: int notification_bg_low +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +io.reactivex.internal.util.NotificationLite: boolean accept(java.lang.Object,org.reactivestreams.Subscriber) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_padding +io.reactivex.internal.observers.ForEachWhileObserver: void onNext(java.lang.Object) +cyanogenmod.weather.IRequestInfoListener$Stub: int TRANSACTION_onLookupCityRequestCompleted +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderPackage +com.google.android.material.chip.Chip: float getChipStrokeWidth() +wangdaye.com.geometricweather.R$attr: int startIconCheckable +com.amap.api.location.AMapLocationClientOption: boolean isOnceLocationLatest() +okhttp3.internal.http2.Http2Connection$5 +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: int hasSeaBulletin +wangdaye.com.geometricweather.location.services.LocationService: android.app.NotificationChannel getLocationNotificationChannel(android.content.Context) +cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getProfile(java.util.UUID) +james.adaptiveicon.R$attr: int numericModifiers +cyanogenmod.app.CustomTileListenerService: java.lang.String access$200(cyanogenmod.app.CustomTileListenerService) +wangdaye.com.geometricweather.R$attr: int layout_constraintBaseline_toBaselineOf +com.jaredrummler.android.colorpicker.R$attr: int actionDropDownStyle +com.turingtechnologies.materialscrollbar.R$attr: int viewInflaterClass +wangdaye.com.geometricweather.R$string: int key_trend_horizontal_line_switch +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onNext(java.lang.Object) +wangdaye.com.geometricweather.location.services.LocationService: java.lang.String[] getPermissions() +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getTagValue() +com.google.android.material.R$string: int material_timepicker_minute +io.reactivex.Observable: int bufferSize() +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: java.util.concurrent.atomic.AtomicReference upstream +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getZh_CN() +com.xw.repo.bubbleseekbar.R$color: int tooltip_background_light +wangdaye.com.geometricweather.R$id: int activity_about_container +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWindDirection() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm25Desc(java.lang.String) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int CLEAR_NIGHT +retrofit2.adapter.rxjava2.Result: java.lang.Throwable error() +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mSoundMode +wangdaye.com.geometricweather.R$styleable: int Chip_chipIcon +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfileByName +androidx.preference.R$styleable: int FontFamily_fontProviderPackage +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +com.google.android.material.R$styleable: int GradientColor_android_tileMode +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline1 +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionViewClass +com.google.android.material.R$styleable: int MaterialCardView_strokeWidth +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float thunderstorm +com.google.android.material.R$id: int accessibility_custom_action_11 +okhttp3.logging.LoggingEventListener: void connectFailed(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol,java.io.IOException) +org.greenrobot.greendao.AbstractDao: long insertInsideTx(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement) +com.bumptech.glide.R$dimen: int notification_action_icon_size +okhttp3.internal.http2.Huffman: Huffman() +okio.RealBufferedSource: int read(byte[]) +android.didikee.donate.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +androidx.customview.R$style: R$style() +okhttp3.Challenge +androidx.appcompat.R$id: int tag_accessibility_heading +androidx.appcompat.resources.R$id: int time +com.google.android.material.R$dimen: int abc_progress_bar_height_material +androidx.preference.R$attr: int colorControlActivated +androidx.appcompat.R$dimen: int abc_action_button_min_width_overflow_material +com.google.android.material.R$dimen: int mtrl_extended_fab_bottom_padding +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: double Value +androidx.appcompat.R$dimen: int highlight_alpha_material_colored +com.jaredrummler.android.colorpicker.R$layout: int preference_material +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textFontWeight +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Current current +wangdaye.com.geometricweather.R$drawable: int ic_wechat_pay +james.adaptiveicon.R$attr: int actionModePasteDrawable +com.turingtechnologies.materialscrollbar.R$dimen: int cardview_compat_inset_shadow +com.turingtechnologies.materialscrollbar.R$attr: int layout_anchorGravity +com.google.android.material.R$styleable: int ConstraintSet_flow_lastVerticalBias +com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_top_material +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf +wangdaye.com.geometricweather.R$string: int time +wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onComplete() +wangdaye.com.geometricweather.R$attr: int drawableEndCompat +com.google.android.material.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,int,int,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) +com.google.android.material.R$id: int activity_chooser_view_content +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setShortDescription(java.lang.String) +androidx.appcompat.R$styleable: int[] Toolbar +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver +cyanogenmod.weather.CMWeatherManager$2: CMWeatherManager$2(cyanogenmod.weather.CMWeatherManager) +com.google.android.material.R$string: int path_password_eye_mask_strike_through +james.adaptiveicon.R$drawable: int abc_tab_indicator_mtrl_alpha +okhttp3.Challenge: boolean equals(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_toId +wangdaye.com.geometricweather.R$attr: int cornerFamilyBottomRight +com.jaredrummler.android.colorpicker.R$styleable: int Preference_layout +io.reactivex.Observable: io.reactivex.Observable switchMapDelayError(io.reactivex.functions.Function) +androidx.recyclerview.R$id: int accessibility_custom_action_18 +okio.GzipSource: int section +okhttp3.Cache$Entry: long receivedResponseMillis +james.adaptiveicon.R$layout: int notification_action +com.google.android.material.R$attr: int checkedIconMargin +androidx.appcompat.R$style: int Base_Widget_AppCompat_SeekBar +androidx.swiperefreshlayout.R$id: int tag_accessibility_clickable_spans +androidx.lifecycle.extensions.R$anim: int fragment_close_enter +wangdaye.com.geometricweather.R$id: int activity_weather_daily_title +androidx.lifecycle.LiveData: java.lang.Object mDataLock +okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_ENCODE_SET +wangdaye.com.geometricweather.R$id: int material_timepicker_view +com.google.android.material.R$styleable: int Constraint_android_elevation +com.google.android.material.textfield.TextInputLayout: void setCounterTextAppearance(int) +android.didikee.donate.R$styleable: int ViewStubCompat_android_layout +james.adaptiveicon.R$attr: int fontProviderPackage +cyanogenmod.app.BaseLiveLockManagerService$1: cyanogenmod.app.BaseLiveLockManagerService this$0 +wangdaye.com.geometricweather.R$drawable: int widget_text +wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentX +cyanogenmod.profiles.ConnectionSettings: int describeContents() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +okio.Okio: okio.AsyncTimeout timeout(java.net.Socket) +com.google.android.material.R$dimen: int mtrl_navigation_item_shape_horizontal_margin +okhttp3.internal.platform.AndroidPlatform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) +androidx.recyclerview.R$attr: int spanCount +androidx.appcompat.R$styleable: int Toolbar_titleMarginBottom +com.bumptech.glide.load.engine.GlideException: void logRootCauses(java.lang.String) +io.reactivex.internal.util.EmptyComponent: org.reactivestreams.Subscriber asSubscriber() +com.xw.repo.bubbleseekbar.R$anim: int abc_shrink_fade_out_from_bottom +androidx.appcompat.R$styleable: int ActionBar_background +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: ObservableInterval$IntervalObserver(io.reactivex.Observer) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_3 +okhttp3.internal.connection.RealConnection: java.net.Socket socket +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_z +wangdaye.com.geometricweather.R$drawable: int notif_temp_39 +com.google.android.material.R$animator: int linear_indeterminate_line2_head_interpolator +okhttp3.internal.http1.Http1Codec: void writeRequestHeaders(okhttp3.Request) +androidx.preference.R$attr: int tooltipForegroundColor +com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabRippleColor() +okhttp3.internal.http.CallServerInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +com.xw.repo.bubbleseekbar.R$attr: int subtitleTextColor +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.util.Date date +com.google.android.material.R$attr: int labelVisibilityMode +cyanogenmod.power.IPerformanceManager$Stub$Proxy +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderAuthority +androidx.drawerlayout.R$id: int right_icon +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.Scheduler$Worker worker +com.bumptech.glide.load.HttpException: HttpException(int) +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int color +wangdaye.com.geometricweather.R$layout: int widget_day_oreo_google_sans +james.adaptiveicon.R$attr: int autoSizeStepGranularity +androidx.drawerlayout.R$layout: R$layout() +com.github.rahatarmanahmed.cpv.CircularProgressView$4: void onAnimationUpdate(android.animation.ValueAnimator) +com.google.android.material.R$style: int Platform_V25_AppCompat +android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogCenterButtons +com.bumptech.glide.R$styleable: int[] FontFamilyFont +com.google.android.material.R$drawable: int material_ic_keyboard_arrow_left_black_24dp +wangdaye.com.geometricweather.R$drawable: int weather_rain_pixel +com.jaredrummler.android.colorpicker.R$drawable: int abc_switch_track_mtrl_alpha +android.didikee.donate.R$styleable: int Toolbar_subtitleTextAppearance +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogCenterButtons +com.jaredrummler.android.colorpicker.R$layout: int cpv_dialog_presets +cyanogenmod.providers.CMSettings$DelimitedListValidator: boolean mAllowEmptyList +okhttp3.internal.http1.Http1Codec: int STATE_CLOSED +cyanogenmod.app.ThemeVersion$ComponentVersion: int getCurrentVersion() +com.google.android.material.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconMode +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_DEFAULT +okhttp3.Response: java.lang.String header(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.UV: UV(java.lang.Integer,java.lang.String,java.lang.String) +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +com.bumptech.glide.integration.okhttp.R$style: R$style() +wangdaye.com.geometricweather.R$id: int center +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void dispose() +com.baidu.location.indoor.mapversion.c.c$b: java.lang.String b +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: android.graphics.Rect val$clipRect +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_constraint_referenced_ids +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconSizeRes(int) +wangdaye.com.geometricweather.R$styleable: int ActionBarLayout_android_layout_gravity +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LOCK_WALLPAPER_PREVIEW +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int getColor() +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void complete() +com.amap.api.fence.GeoFence: void setStatus(int) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle +okio.DeflaterSink: okio.BufferedSink sink +wangdaye.com.geometricweather.R$styleable: int Chip_showMotionSpec +com.google.android.material.R$dimen: int mtrl_extended_fab_min_height +okhttp3.internal.connection.StreamAllocation: java.net.Socket releaseAndAcquire(okhttp3.internal.connection.RealConnection) +wangdaye.com.geometricweather.R$attr: int itemIconSize +androidx.appcompat.R$styleable: int FontFamilyFont_android_fontVariationSettings +cyanogenmod.profiles.ConnectionSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +com.google.android.material.transformation.ExpandableBehavior: ExpandableBehavior() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalBias +android.didikee.donate.R$styleable: int Toolbar_contentInsetStart +androidx.preference.R$attr: int backgroundTint +androidx.appcompat.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.R$id: int tag_icon_night +androidx.appcompat.widget.AppCompatTextView: void setTextFuture(java.util.concurrent.Future) +com.google.android.material.R$attr: int switchTextAppearance +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HEADSET_CONNECT_PLAYER_VALIDATOR +cyanogenmod.app.CustomTile: java.lang.String access$302(cyanogenmod.app.CustomTile,java.lang.String) +android.didikee.donate.R$styleable: int AppCompatTheme_editTextStyle +com.turingtechnologies.materialscrollbar.R$drawable: int notification_template_icon_bg +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: long produced +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setStatus(int) +com.jaredrummler.android.colorpicker.R$style: int Base_V28_Theme_AppCompat +cyanogenmod.app.ProfileGroup: int describeContents() +com.google.android.material.R$bool: int abc_action_bar_embed_tabs +androidx.preference.R$attr: int alpha +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: AtmoAuraQAResult$Advice() +android.didikee.donate.R$style: int Base_V23_Theme_AppCompat +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$LayoutManager getLayoutManager() +androidx.preference.R$styleable: int MenuItem_android_visible +wangdaye.com.geometricweather.settings.dialogs.WechatDonateDialog +com.google.android.material.R$styleable: int AppCompatTheme_seekBarStyle +androidx.recyclerview.widget.GridLayoutManager +androidx.vectordrawable.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$color: int primary_text_disabled_material_dark +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTheme +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating() +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onComplete() +android.support.v4.os.IResultReceiver$Default: android.os.IBinder asBinder() +com.google.android.material.internal.ForegroundLinearLayout: android.graphics.drawable.Drawable getForeground() +androidx.lifecycle.extensions.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.common.basic.models.weather.History +androidx.constraintlayout.widget.R$color: int abc_background_cache_hint_selector_material_dark +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_crossfade retrofit2.RequestBuilder: void addQueryParam(java.lang.String,java.lang.String,boolean) -cyanogenmod.weatherservice.IWeatherProviderService$Stub: IWeatherProviderService$Stub() -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_lookupCity -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getWindChillTemperature() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_creator -com.google.android.material.navigation.NavigationView$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$attr: int customColorValue -com.jaredrummler.android.colorpicker.R$attr: int searchIcon -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Line2 -com.google.android.material.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$string: int ceiling -io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$id: int widget_week_icon_2 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_56 -wangdaye.com.geometricweather.R$layout: int activity_card_display_manage -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchTextAppearance -com.jaredrummler.android.colorpicker.R$styleable: int[] DrawerArrowToggle -cyanogenmod.power.PerformanceManagerInternal: void activityResumed(android.content.Intent) -androidx.core.R$id: int chronometer -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent LOCKSCREEN -androidx.vectordrawable.animated.R$dimen: int notification_action_icon_size -androidx.appcompat.R$id -cyanogenmod.app.Profile$1: java.lang.Object[] newArray(int) -androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_height_minor -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: FlowableOnBackpressureError$BackpressureErrorSubscriber(org.reactivestreams.Subscriber) -android.didikee.donate.R$dimen: int abc_action_bar_default_padding_start_material -com.google.android.material.R$style: int Widget_Design_CollapsingToolbar -com.google.android.material.R$styleable: int ConstraintSet_android_maxHeight -androidx.constraintlayout.motion.widget.MotionLayout: void setInteractionEnabled(boolean) -wangdaye.com.geometricweather.R$drawable: int notif_temp_91 -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float NitrogenMonoxide -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_thumb -com.google.android.material.button.MaterialButtonToggleGroup: void setCheckedId(int) -com.google.android.material.R$attr: int errorTextColor -com.turingtechnologies.materialscrollbar.R$attr: int cardElevation -androidx.preference.R$attr: int actionDropDownStyle -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_toLeftOf -androidx.fragment.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.lang.String getPubTime() -james.adaptiveicon.R$styleable: int Toolbar_contentInsetEndWithActions -androidx.appcompat.resources.R$layout: R$layout() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SHOWERS -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_2 -com.turingtechnologies.materialscrollbar.CustomIndicator -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.R$attr: int cpv_animSteps -retrofit2.ParameterHandler$RelativeUrl: void apply(retrofit2.RequestBuilder,java.lang.Object) -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getUniqueDeviceId -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_TEMPERATURE -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitationProbability() -wangdaye.com.geometricweather.R$string: int abc_searchview_description_voice -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: long serialVersionUID -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.xw.repo.bubbleseekbar.R$attr: int bsb_min -james.adaptiveicon.R$attr: int dialogTheme -com.google.android.material.R$id: int flip -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint DewPoint -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onComplete() -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_toId -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getIcePrecipitationProbability() -wangdaye.com.geometricweather.R$drawable: int notif_temp_25 -okhttp3.Dns: okhttp3.Dns SYSTEM -com.google.android.material.R$attr: int colorPrimaryDark -cyanogenmod.weather.WeatherInfo$1 -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling() -androidx.constraintlayout.widget.R$attr: int wavePeriod -androidx.customview.R$dimen: int notification_large_icon_height -com.turingtechnologies.materialscrollbar.R$attr: int bottomSheetDialogTheme -wangdaye.com.geometricweather.R$attr: int behavior_draggable -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean hasKey(java.lang.Object) -android.didikee.donate.R$string -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldDescription -com.google.android.material.R$animator: int mtrl_fab_transformation_sheet_expand_spec -androidx.appcompat.R$attr: int thumbTint -com.jaredrummler.android.colorpicker.R$color: int foreground_material_dark -wangdaye.com.geometricweather.R$string: int key_forecast_today -androidx.preference.R$id: int right_side -cyanogenmod.app.Profile: java.lang.String getName() -james.adaptiveicon.R$styleable: int[] AppCompatTextView -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceTimedObserver parent -androidx.hilt.lifecycle.R$drawable: int notification_bg_normal -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomAppBar_Colored -cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_WAKE_SCREEN -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver -wangdaye.com.geometricweather.R$id: int container_main_pollen_pager -androidx.cardview.R$styleable: int CardView_cardBackgroundColor -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemPaddingRight -com.google.android.material.R$styleable: int[] LinearLayoutCompat -androidx.cardview.R$dimen: int cardview_default_radius -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: long serialVersionUID -androidx.transition.R$string: R$string() -cyanogenmod.externalviews.ExternalView$8: void run() -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: boolean isDisposed() -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType[] values() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: AccuDailyResult$DailyForecasts$Night$Wind$Speed() -wangdaye.com.geometricweather.R$attr: int commitIcon -com.google.android.material.R$style: int Widget_AppCompat_Light_ListView_DropDown -android.didikee.donate.R$id: int homeAsUp -androidx.lifecycle.extensions.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_1_3_padding_bottom -androidx.constraintlayout.widget.R$styleable: int KeyCycle_framePosition -androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -wangdaye.com.geometricweather.R$array: int widget_text_colors -com.google.android.material.R$color: int radiobutton_themeable_attribute_color -wangdaye.com.geometricweather.R$dimen: int design_tab_text_size -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_HourlyEntityListQuery -androidx.preference.R$styleable: int AppCompatTheme_actionButtonStyle -okhttp3.internal.connection.StreamAllocation: okhttp3.Route route() -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_showDividers -cyanogenmod.app.suggest.AppSuggestManager: java.lang.String TAG -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: int UnitType -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderAuthority -okhttp3.internal.http2.Http2Stream: boolean closeInternal(okhttp3.internal.http2.ErrorCode) -cyanogenmod.themes.IThemeService$Stub$Proxy: IThemeService$Stub$Proxy(android.os.IBinder) -com.bumptech.glide.integration.okhttp.R$attr: R$attr() -okhttp3.ConnectionSpec: okhttp3.CipherSuite[] RESTRICTED_CIPHER_SUITES -androidx.coordinatorlayout.R$attr: int layout_keyline -wangdaye.com.geometricweather.R$styleable: int Badge_number -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Today -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setVibratorIntensity -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$drawable: int abc_ic_arrow_drop_right_black_24dp -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_daySelectedStyle -android.didikee.donate.R$style: int TextAppearance_AppCompat_Title_Inverse -okhttp3.internal.http2.Http2Connection$5: int val$streamId -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void drainNormal() -androidx.preference.R$style: int Preference_DialogPreference_Material -com.google.android.material.R$styleable: int MenuItem_android_numericShortcut -com.xw.repo.bubbleseekbar.R$id: int tag_transition_group -com.google.android.material.R$color: int mtrl_btn_text_color_selector -james.adaptiveicon.R$dimen: int abc_disabled_alpha_material_dark -com.google.android.material.R$attr: int currentState -cyanogenmod.weather.WeatherLocation: java.lang.String mCity -com.xw.repo.bubbleseekbar.R$id: int right -com.turingtechnologies.materialscrollbar.R$attr: int checkedIconVisible -com.google.android.material.R$style: int Theme_MaterialComponents_Light_BarSize -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState SUCCESS -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float rainPrecipitationProbability -wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_height_minor -wangdaye.com.geometricweather.R$id: int spread -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingBottom -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$id: int item_aqi_content -okhttp3.Address: okhttp3.Authenticator proxyAuthenticator() -com.google.android.material.R$styleable: int ViewPager2_android_orientation -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabView -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_Design_TabLayout -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTemperature(int) -cyanogenmod.weather.WeatherInfo$Builder: long mTimestamp -android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupMenu -androidx.lifecycle.FullLifecycleObserverAdapter: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_action_inline_max_width -com.google.android.material.R$styleable: int Constraint_layout_constraintTop_toTopOf -android.didikee.donate.R$layout: int abc_action_menu_item_layout -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView -androidx.appcompat.R$styleable: int AppCompatTheme_checkboxStyle -androidx.core.graphics.drawable.IconCompatParcelizer: void write(androidx.core.graphics.drawable.IconCompat,androidx.versionedparcelable.VersionedParcel) -retrofit2.ParameterHandler$QueryName: void apply(retrofit2.RequestBuilder,java.lang.Object) -okhttp3.internal.http2.Http2Connection: int lastGoodStreamId -androidx.constraintlayout.widget.R$styleable: int OnSwipe_maxVelocity -james.adaptiveicon.R$attr: int collapseContentDescription -wangdaye.com.geometricweather.R$string: int clear_text_end_icon_content_description -com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Tooltip -androidx.preference.R$styleable: int PreferenceTheme_preferenceScreenStyle -com.google.android.material.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets +com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonTint +wangdaye.com.geometricweather.R$attr: int dragDirection +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeRealFeelTemperature() +android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar_Small +android.didikee.donate.R$attr: int windowNoTitle +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_navigationContentDescription +okhttp3.internal.ws.WebSocketWriter: void writeClose(int,okio.ByteString) +wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress_color +androidx.appcompat.R$style: int TextAppearance_AppCompat_Title_Inverse +okhttp3.internal.http.RequestLine: boolean includeAuthorityInRequestLine(okhttp3.Request,java.net.Proxy$Type) +androidx.constraintlayout.widget.Guideline: void setGuidelineBegin(int) +com.google.android.material.R$dimen: int abc_dialog_corner_radius_material +retrofit2.Utils: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) +cyanogenmod.themes.IThemeService: void applyDefaultTheme() +androidx.customview.widget.ExploreByTouchHelper: int mHoveredVirtualViewId +wangdaye.com.geometricweather.db.entities.DailyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_DailyEntityListQuery +com.bumptech.glide.R$dimen: int compat_button_padding_horizontal_material +okhttp3.Cache: java.util.Iterator urls() +com.google.android.gms.common.api.internal.zaab: void registerConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) +androidx.constraintlayout.widget.R$styleable: int Motion_drawPath +com.github.rahatarmanahmed.cpv.CircularProgressView: float getMaxProgress() +androidx.constraintlayout.widget.R$drawable: int abc_switch_thumb_material +androidx.preference.R$attr: int alertDialogCenterButtons +com.turingtechnologies.materialscrollbar.R$id: int select_dialog_listview +com.bumptech.glide.integration.okhttp.R$dimen: int notification_small_icon_size_as_large +okhttp3.internal.http.HttpMethod +okhttp3.internal.connection.RealConnection: java.net.Socket socket() +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_padding_bottom +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_CBC_SHA +com.google.android.material.R$drawable: int avd_hide_password +com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String MobileLink +okhttp3.internal.Internal: boolean connectionBecameIdle(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType INT_TYPE +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context) +android.didikee.donate.R$styleable: int AppCompatTheme_borderlessButtonStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: void setDefenseIcon(java.lang.String) +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService +wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_focused_alpha +okhttp3.internal.cache.FaultHidingSink +androidx.constraintlayout.widget.R$styleable: int Constraint_animate_relativeTo +com.google.android.material.R$style: int TestStyleWithoutLineHeight +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableStart +okhttp3.logging.LoggingEventListener: void connectionReleased(okhttp3.Call,okhttp3.Connection) +okhttp3.internal.http2.Http2Connection: java.util.Map streams +androidx.appcompat.widget.AppCompatCheckBox: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +okhttp3.internal.ws.WebSocketWriter: byte[] maskKey +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_DrawerArrowToggle +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level valueOf(java.lang.String) +com.xw.repo.bubbleseekbar.R$id: int action_menu_divider +com.google.android.material.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.R$id: int path +cyanogenmod.content.Intent: java.lang.String URI_SCHEME_PACKAGE +com.google.android.material.R$color: int mtrl_btn_text_btn_bg_color_selector +wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_backgroundColorEnd +cyanogenmod.weather.RequestInfo$Builder: boolean isValidTempUnit(int) +androidx.constraintlayout.widget.R$attr: int customStringValue +com.google.android.material.circularreveal.cardview.CircularRevealCardView: int getCircularRevealScrimColor() +androidx.customview.R$styleable: int FontFamilyFont_font +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: void endOfInput(java.io.IOException) +com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_inflatedId +io.reactivex.internal.subscriptions.BasicIntQueueSubscription +com.google.android.material.R$attr: int switchMinWidth +okio.BufferedSink: okio.BufferedSink writeUtf8CodePoint(int) +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onNext(java.lang.Object) +com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected +android.didikee.donate.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$color: int abc_btn_colored_borderless_text_material +wangdaye.com.geometricweather.R$styleable: int CardView_contentPadding +androidx.appcompat.R$attr: int dividerPadding +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_DialogWhenLarge +wangdaye.com.geometricweather.R$style: int Base_CardView +wangdaye.com.geometricweather.db.entities.DailyEntityDao +androidx.preference.R$color: int secondary_text_disabled_material_light +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type RIGHT +cyanogenmod.providers.CMSettings$Secure: java.lang.String KILL_APP_LONGPRESS_BACK +androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_to_on_mtrl_015 +androidx.activity.R$dimen: int compat_notification_large_icon_max_width +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeShareDrawable +com.google.android.material.R$drawable: int abc_textfield_activated_mtrl_alpha +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ButtonBar +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderPackage +androidx.preference.R$styleable: int ActionBar_subtitle +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton +com.turingtechnologies.materialscrollbar.R$id: int transition_current_scene +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitationDuration(java.lang.Float) +com.google.android.material.R$dimen: int abc_dropdownitem_text_padding_right +androidx.hilt.work.R$string: R$string() +wangdaye.com.geometricweather.R$drawable: int notif_temp_38 +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_listLayout +cyanogenmod.app.BaseLiveLockManagerService: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +com.google.android.material.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitationProbability(java.lang.Float) +james.adaptiveicon.R$layout: int abc_action_mode_bar +com.google.android.material.R$attr: int backgroundColor +androidx.preference.R$style: int Widget_AppCompat_SearchView +androidx.activity.R$styleable: int FontFamily_fontProviderPackage +okhttp3.Cookie: long parseMaxAge(java.lang.String) +com.google.gson.stream.JsonReader: void setLenient(boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_homeAsUpIndicator +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabStyle +cyanogenmod.providers.CMSettings$Secure: java.lang.String WEATHER_PROVIDER_SERVICE +com.google.android.material.R$id: int auto +wangdaye.com.geometricweather.db.entities.LocationEntity: void setCityId(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTint +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: ObservableObserveOn$ObserveOnObserver(io.reactivex.Observer,io.reactivex.Scheduler$Worker,boolean,int) +com.turingtechnologies.materialscrollbar.R$attr: int expanded +androidx.drawerlayout.R$id: int forever +cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CURRENT_AND_FORECAST_WEATHER_URI +com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Title +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.ObservableSource first +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPopupWindowStyle +androidx.appcompat.R$attr: int tickMarkTint +io.reactivex.exceptions.CompositeException: java.lang.Throwable cause +com.amap.api.location.AMapLocation: double getLongitude() +com.baidu.location.e.o +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Counter +io.reactivex.internal.subscriptions.DeferredScalarSubscription: void clear() +com.jaredrummler.android.colorpicker.R$id: int italic +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String en_US +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginEnd +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService this$0 +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: long serialVersionUID +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark_normal +cyanogenmod.externalviews.KeyguardExternalViewProviderService: boolean DEBUG +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void subscribeNext() +androidx.fragment.R$drawable: int notification_tile_bg +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.R$drawable: int widget_card_light_80 +retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type[] getUpperBounds() +wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_backgroundTintMode +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: io.reactivex.Observer child +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickActiveTintList() +com.google.android.material.floatingactionbutton.FloatingActionButton: int getSizeDimension() +com.google.android.material.R$attr: int cardPreventCornerOverlap +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_TabLayoutTheme +androidx.constraintlayout.widget.R$styleable: int KeyPosition_sizePercent +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Bridge +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_hideMotionSpec +androidx.lifecycle.ClassesInfoCache$CallbackInfo: ClassesInfoCache$CallbackInfo(java.util.Map) +androidx.work.R$id: int accessibility_custom_action_13 +com.google.android.material.R$attr: int layout_constraintBottom_toTopOf +com.bumptech.glide.R$attr: int fontStyle +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_middle_mtrl_light +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light +com.google.android.material.R$drawable: int avd_show_password +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SearchView +com.google.android.material.R$attr: int indicatorColor +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderCerts +cyanogenmod.weather.RequestInfo: android.os.Parcelable$Creator CREATOR +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String OVERLAYS_URI +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 +io.reactivex.internal.disposables.EmptyDisposable: java.lang.Object poll() +androidx.hilt.lifecycle.R$drawable: int notification_icon_background +android.didikee.donate.R$styleable: int AppCompatTheme_actionMenuTextColor +com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_creator +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar +com.turingtechnologies.materialscrollbar.R$attr: int collapseContentDescription +androidx.room.RoomDatabase$JournalMode +io.reactivex.internal.util.ArrayListSupplier: java.lang.Object apply(java.lang.Object) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.String TABLENAME +wangdaye.com.geometricweather.R$attr: int splitTrack +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemBackground(android.graphics.drawable.Drawable) +androidx.appcompat.R$attr: int windowActionModeOverlay +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop +com.google.android.material.R$styleable: int AppCompatTheme_activityChooserViewStyle +wangdaye.com.geometricweather.db.entities.AlertEntity +james.adaptiveicon.R$attr: int actionMenuTextColor +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_default +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary PrecipitationSummary +androidx.hilt.lifecycle.R$styleable: int[] GradientColor +androidx.viewpager.R$id: int italic +androidx.core.R$id: int accessibility_custom_action_22 +wangdaye.com.geometricweather.R$drawable: int weather_sleet +com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context) +androidx.constraintlayout.widget.R$id: int pathRelative +okhttp3.internal.cache.DiskLruCache: void flush() +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long uniqueId +james.adaptiveicon.R$styleable: int ActionMode_titleTextStyle +androidx.constraintlayout.widget.R$color: int material_deep_teal_500 +androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) +com.jaredrummler.android.colorpicker.R$styleable: int BackgroundStyle_selectableItemBackground +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation valueOf(java.lang.String) +androidx.appcompat.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: AccuMinuteResult() +wangdaye.com.geometricweather.R$attr: int cpv_color +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +androidx.recyclerview.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit getInstance(java.lang.String) +wangdaye.com.geometricweather.R$attr: int motion_triggerOnCollision +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +retrofit2.BuiltInConverters$VoidResponseBodyConverter: java.lang.Object convert(java.lang.Object) +com.jaredrummler.android.colorpicker.R$attr: int actionModeShareDrawable +com.turingtechnologies.materialscrollbar.R$attr: int reverseLayout +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator TOUCHSCREEN_GESTURE_HAPTIC_FEEDBACK_VALIDATOR +wangdaye.com.geometricweather.R$id: int material_timepicker_cancel_button +com.google.android.material.R$styleable: int[] MaterialTextView +androidx.legacy.coreutils.R$id: int italic +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginEnd +james.adaptiveicon.R$attr: int splitTrack +androidx.constraintlayout.widget.R$styleable: int[] KeyCycle +androidx.legacy.coreutils.R$id: int blocking +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams mParams +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconPadding +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_minWidth +androidx.appcompat.widget.AppCompatSpinner: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +james.adaptiveicon.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.R$attr: int unfold +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_LargeComponent +com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_margin +com.google.android.material.R$color: int design_fab_stroke_top_inner_color +androidx.appcompat.widget.SwitchCompat: boolean getTargetCheckedState() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_suggestionRowLayout +androidx.appcompat.R$styleable: int ActionBar_contentInsetEndWithActions +com.turingtechnologies.materialscrollbar.R$attr: int actionModeCutDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric Metric +com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorError +com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context) +com.google.gson.stream.JsonReader: char[] buffer +okhttp3.internal.cache.DiskLruCache$2: boolean $assertionsDisabled +androidx.constraintlayout.widget.R$attr: int mock_labelColor +cyanogenmod.hardware.CMHardwareManager: int getDisplayGammaCalibrationMin() +androidx.constraintlayout.widget.R$dimen: int abc_dialog_min_width_major +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: int UnitType +com.google.android.material.timepicker.ClockHandView +androidx.constraintlayout.widget.R$dimen: int abc_control_corner_material +retrofit2.KotlinExtensions$await$2$2: void onResponse(retrofit2.Call,retrofit2.Response) +wangdaye.com.geometricweather.R$drawable: int selectable_ripple +androidx.appcompat.widget.AppCompatEditText: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +androidx.constraintlayout.widget.R$attr: int constraint_referenced_ids +com.google.android.material.internal.FlowLayout: int getItemSpacing() +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.DatabaseOpenHelper$EncryptedHelper checkEncryptedHelper() +okhttp3.internal.http2.Http2Writer: void goAway(int,okhttp3.internal.http2.ErrorCode,byte[]) +okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallbackPossible(javax.net.ssl.SSLSocket) +android.didikee.donate.R$drawable: int abc_textfield_search_material +com.google.android.material.R$styleable: int Toolbar_android_gravity +androidx.preference.R$drawable: int abc_vector_test +androidx.preference.R$styleable: int MenuView_android_itemBackground +androidx.constraintlayout.widget.R$id: int search_src_text +androidx.hilt.R$id: int accessibility_custom_action_19 +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: $Gson$Types$GenericArrayTypeImpl(java.lang.reflect.Type) +androidx.drawerlayout.R$layout: int notification_template_part_time +okhttp3.OkHttpClient$Builder: javax.net.ssl.SSLSocketFactory sslSocketFactory +com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_HIGH +okhttp3.internal.http1.Http1Codec: long headerLimit +okio.Pipe: Pipe(long) +retrofit2.RequestFactory$Builder: java.lang.reflect.Method method +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.R$attr: int layout_scrollInterpolator +androidx.preference.R$styleable: int Preference_enableCopying +wangdaye.com.geometricweather.R$styleable: int Transition_duration +wangdaye.com.geometricweather.R$anim: int fragment_open_enter +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_contentDescription +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +androidx.viewpager2.R$id: int notification_main_column_container +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onSucceed(java.lang.Object) +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +androidx.swiperefreshlayout.R$id: int icon_group +com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabTextStyle +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_CompactMenu +com.jaredrummler.android.colorpicker.R$attr: int dropDownListViewStyle +com.google.android.material.R$dimen: int design_snackbar_padding_horizontal +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$OnFlingListener getOnFlingListener() +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setOnChildScrollUpCallback(androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnChildScrollUpCallback) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelBackground +android.didikee.donate.R$color: int abc_background_cache_hint_selector_material_dark +androidx.hilt.R$style +com.google.android.material.R$attr: int colorSecondary +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_left_mtrl_light +wangdaye.com.geometricweather.R$attr: int msb_lightOnTouch +com.turingtechnologies.materialscrollbar.R$attr: int actionOverflowButtonStyle +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingRight +com.google.android.material.bottomnavigation.BottomNavigationView: int getMaxItemCount() +androidx.drawerlayout.R$color: int notification_action_color_filter +androidx.preference.R$attr: int showText +android.didikee.donate.R$attr: int controlBackground +wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text +wangdaye.com.geometricweather.R$attr: int navigationIcon +okio.HashingSink: okio.HashingSink hmacSha512(okio.Sink,okio.ByteString) +okhttp3.internal.http.RetryAndFollowUpInterceptor: void cancel() +james.adaptiveicon.R$styleable: int Spinner_android_prompt +io.reactivex.Observable: io.reactivex.Observable zipArray(io.reactivex.functions.Function,boolean,int,io.reactivex.ObservableSource[]) +androidx.appcompat.R$drawable: int abc_list_divider_material +androidx.core.R$styleable: int GradientColor_android_type +retrofit2.RequestFactory$Builder: boolean gotPart +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getTreeDescription() +okhttp3.MultipartBody: void writeTo(okio.BufferedSink) +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderCerts +androidx.fragment.R$id: int action_image +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_icon_color_selector +androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_alpha +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: AMapLocationClientOption$AMapLocationMode(java.lang.String,int) +com.turingtechnologies.materialscrollbar.R$anim: int abc_grow_fade_in_from_bottom +okhttp3.Headers$Builder: okhttp3.Headers$Builder removeAll(java.lang.String) +com.google.android.material.R$style: int Widget_AppCompat_SearchView +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setCountryId(java.lang.String) +cyanogenmod.app.ICustomTileListener$Stub$Proxy: android.os.IBinder mRemote +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.R$layout: int item_pollen_daily +com.jaredrummler.android.colorpicker.R$styleable: int Preference_icon +androidx.activity.R$id: int accessibility_custom_action_28 +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_ttcIndex +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_WIFI_ICON +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BLUETOOTH_ICON +wangdaye.com.geometricweather.R$drawable: int cpv_alpha +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onRequested() +com.google.android.material.internal.CheckableImageButton: void setCheckable(boolean) +com.google.android.material.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginLeft +wangdaye.com.geometricweather.R$string: int key_notification_hide_big_view +okhttp3.internal.Util: void closeQuietly(java.io.Closeable) +retrofit2.converter.gson.GsonResponseBodyConverter: java.lang.Object convert(java.lang.Object) +androidx.lifecycle.SavedStateHandleController$OnRecreation: SavedStateHandleController$OnRecreation() +com.google.android.gms.common.api.Status: android.os.Parcelable$Creator CREATOR +io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_height +wangdaye.com.geometricweather.R$attr: int layout_scrollFlags +cyanogenmod.weather.WeatherInfo$Builder: boolean isValidTempUnit(int) +androidx.appcompat.widget.ViewStubCompat: android.view.LayoutInflater getLayoutInflater() +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: long serialVersionUID +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_16dp +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: void setBrands(java.util.List) +wangdaye.com.geometricweather.R$styleable: int Layout_barrierDirection +wangdaye.com.geometricweather.R$string: int settings_title_forecast_today_time +cyanogenmod.app.Profile$TriggerState: int ON_DISCONNECT +com.google.android.material.R$bool: int abc_config_actionMenuItemAllCaps +com.xw.repo.bubbleseekbar.R$id: int chronometer +com.turingtechnologies.materialscrollbar.R$attr: int queryBackground +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarStyle +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabText +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.util.AtomicThrowable error +androidx.dynamicanimation.R$id: int italic +com.google.android.material.appbar.AppBarLayout +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: ScheduledDirectPeriodicTask(java.lang.Runnable) +wangdaye.com.geometricweather.R$attr: int allowDividerAfterLastItem +androidx.constraintlayout.widget.R$dimen: int abc_button_inset_horizontal_material +com.jaredrummler.android.colorpicker.R$bool: int abc_allow_stacked_button_bar +com.turingtechnologies.materialscrollbar.R$layout: int design_layout_snackbar_include +com.jaredrummler.android.colorpicker.R$id: int top +okhttp3.internal.Util: boolean isAndroidGetsocknameError(java.lang.AssertionError) +wangdaye.com.geometricweather.R$color: int abc_secondary_text_material_light +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceCategoryStyle +androidx.work.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.R$styleable: int Motion_drawPath +okio.Buffer$1: void close() +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,int) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierMargin +com.google.android.gms.common.server.converter.StringToIntConverter: android.os.Parcelable$Creator CREATOR +io.reactivex.Observable: io.reactivex.Observer subscribeWith(io.reactivex.Observer) +wangdaye.com.geometricweather.R$color: int mtrl_btn_transparent_bg_color +cyanogenmod.app.CustomTile$ExpandedItem$1: java.lang.Object[] newArray(int) +android.didikee.donate.R$attr: int buttonPanelSideLayout +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cp +wangdaye.com.geometricweather.R$color: int cardview_shadow_start_color +cyanogenmod.app.IPartnerInterface: void setAirplaneModeEnabled(boolean) +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Bridge +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ProgressBar +cyanogenmod.app.CustomTile$ListExpandedStyle +androidx.drawerlayout.R$id: int line1 +com.jaredrummler.android.colorpicker.R$dimen: int abc_search_view_preferred_width +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeAlpha(float) +wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_checked_circle +com.google.android.material.R$styleable: int Constraint_flow_verticalStyle +androidx.loader.R$integer: int status_bar_notification_info_maxnum +io.reactivex.internal.util.EmptyComponent: void onNext(java.lang.Object) +com.google.android.material.datepicker.MaterialTextInputPicker +com.google.android.material.R$string: int abc_menu_sym_shortcut_label +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_textAllCaps +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Switch +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder sslSocketFactory(javax.net.ssl.SSLSocketFactory) +androidx.appcompat.R$styleable: int ActionBar_titleTextStyle +wangdaye.com.geometricweather.R$string: int mtrl_chip_close_icon_content_description +com.xw.repo.bubbleseekbar.R$id: int right_icon +okhttp3.internal.ws.WebSocketWriter$FrameSink: int formatOpcode +wangdaye.com.geometricweather.R$layout: int abc_screen_simple_overlay_action_mode +com.google.android.material.internal.NavigationMenuItemView: void setChecked(boolean) +com.xw.repo.bubbleseekbar.R$layout: int abc_screen_content_include +com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException: long serialVersionUID +cyanogenmod.externalviews.KeyguardExternalView: void onScreenTurnedOn() +com.turingtechnologies.materialscrollbar.R$attr: int tabIconTintMode +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_phaseText +com.google.android.material.R$styleable: int ConstraintSet_android_scaleX +wangdaye.com.geometricweather.R$dimen: int material_cursor_inset_top +com.xw.repo.bubbleseekbar.R$attr: int textAllCaps +com.bumptech.glide.R$id: int forever +androidx.constraintlayout.widget.R$string: int abc_prepend_shortcut_label +androidx.constraintlayout.widget.R$layout: int abc_activity_chooser_view +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_showTitle +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SearchView +androidx.constraintlayout.widget.R$id: int activity_chooser_view_content +androidx.preference.R$id: int custom +retrofit2.http.Header +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Caption +wangdaye.com.geometricweather.R$attr: int popupMenuStyle +android.didikee.donate.R$color: int abc_tint_btn_checkable +com.google.android.material.R$attr: int contentScrim +androidx.vectordrawable.animated.R$layout: int notification_template_part_chronometer +androidx.appcompat.R$id: int tag_accessibility_clickable_spans +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_radioButtonStyle +cyanogenmod.app.IPartnerInterface$Stub +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getTreeDescription() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display4 +androidx.fragment.R$id: int right_icon +androidx.customview.R$layout: int notification_template_part_time +com.google.android.material.R$attr: int materialThemeOverlay +wangdaye.com.geometricweather.R$anim: int popup_show_top_left +com.google.android.material.textfield.TextInputLayout: void setCounterOverflowTextColor(android.content.res.ColorStateList) +com.google.android.material.R$styleable: int[] GradientColor +androidx.viewpager2.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$attr: int layout_constraintStart_toStartOf +androidx.recyclerview.widget.RecyclerView: void setScrollingTouchSlop(int) +com.google.android.material.R$attr: int tabTextAppearance +com.jaredrummler.android.colorpicker.R$attr: int showAsAction +com.google.android.material.R$dimen: int mtrl_calendar_dialog_background_inset +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void dispose() +androidx.constraintlayout.widget.R$attr: int showAsAction +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getCloudCover() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_min_width_minor +wangdaye.com.geometricweather.R$string: int feedback_collect_succeed +okio.RealBufferedSource: boolean closed +wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress_width +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void error(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int trackHeight +androidx.constraintlayout.widget.R$style: int Base_V26_Theme_AppCompat_Light +androidx.appcompat.R$attr: int windowFixedHeightMinor +cyanogenmod.app.Profile$TriggerType: int BLUETOOTH +wangdaye.com.geometricweather.R$dimen: int design_fab_translation_z_pressed +wangdaye.com.geometricweather.R$styleable: int[] PreferenceFragment +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: void setDrawable(boolean) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer wetBulbTemperature +james.adaptiveicon.R$styleable: int ColorStateListItem_android_alpha +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_RESET +wangdaye.com.geometricweather.R$attr: int singleSelection androidx.appcompat.widget.AbsActionBarView: int getAnimatedVisibility() -cyanogenmod.providers.DataUsageContract: java.lang.String DATAUSAGE_AUTHORITY -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Headline -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_min -com.google.android.material.R$styleable: int MenuItem_android_menuCategory -okio.Buffer: int select(okio.Options) -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_visible -wangdaye.com.geometricweather.R$styleable: int[] MaterialShape -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.common.ui.activities.AllergenActivity -wangdaye.com.geometricweather.R$id: int activity_preview_icon_recyclerView -androidx.appcompat.R$attr: int actionMenuTextAppearance -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_MediumComponent -androidx.customview.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$attr: int warmth -android.didikee.donate.R$attr: int actionModeSelectAllDrawable -com.google.android.material.R$styleable: int FlowLayout_itemSpacing -androidx.work.R$styleable: int FontFamilyFont_ttcIndex -cyanogenmod.profiles.ConnectionSettings: boolean isOverride() -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_textOn -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: FlowableConcatMap$BaseConcatMapSubscriber(io.reactivex.functions.Function,int) -retrofit2.ParameterHandler$PartMap: java.lang.String transferEncoding -wangdaye.com.geometricweather.R$string: int phase_new -android.didikee.donate.R$styleable: int AlertDialog_buttonPanelSideLayout -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_20 -wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_LOW -wangdaye.com.geometricweather.R$color: int material_grey_600 -androidx.hilt.lifecycle.R$anim: int fragment_open_exit -james.adaptiveicon.R$drawable: int abc_textfield_search_default_mtrl_alpha -com.google.android.material.R$dimen: int mtrl_btn_padding_top -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode -james.adaptiveicon.R$dimen: int abc_action_bar_stacked_tab_max_width -androidx.appcompat.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintAnimationEnabled -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService pushExecutor -com.google.android.material.R$layout: int design_navigation_menu -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_MIGRATE_SETTINGS_FOR_USER -androidx.preference.R$styleable: int MenuItem_actionViewClass -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_allowPresets -androidx.preference.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_48dp -com.amap.api.fence.DistrictItem: java.lang.String b -androidx.preference.R$attr: int actionBarTabStyle -androidx.legacy.coreutils.R$id: int info -wangdaye.com.geometricweather.R$id: int skipCollapsed -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionModeOverlay -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_padding_end_material -androidx.appcompat.widget.AppCompatSpinner: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBaseline_creator -androidx.preference.R$styleable: int LinearLayoutCompat_android_gravity -androidx.vectordrawable.animated.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.R$attr: int cpv_maxProgress -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_gapBetweenBars -cyanogenmod.app.PartnerInterface: boolean setZenModeWithDuration(int,long) -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: boolean isDisposed() -wangdaye.com.geometricweather.R$color: int highlighted_text_material_dark -com.amap.api.fence.GeoFence: int TYPE_ROUND -james.adaptiveicon.R$id: int action_mode_bar_stub -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -okhttp3.internal.http.HttpHeaders: int skipAll(okio.Buffer,byte) -android.didikee.donate.R$styleable: int Toolbar_navigationContentDescription -com.amap.api.fence.GeoFence: int ERROR_NO_VALIDFENCE -wangdaye.com.geometricweather.R$styleable: int MaterialCheckBox_useMaterialThemeColors -com.google.android.material.R$dimen: int tooltip_horizontal_padding -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitationDuration(java.lang.Float) -androidx.hilt.lifecycle.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.R$styleable: int[] MaterialButtonToggleGroup -androidx.hilt.lifecycle.R$id: int time -com.amap.api.location.UmidtokenInfo$1 -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int COLD -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Time -android.didikee.donate.R$color: int bright_foreground_material_dark -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabText -androidx.appcompat.R$styleable: int ActionBar_displayOptions -wangdaye.com.geometricweather.R$attr: int fastScrollEnabled -james.adaptiveicon.R$attr: int backgroundTintMode -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Title -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -james.adaptiveicon.R$id: int action_mode_bar -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -cyanogenmod.themes.IThemeService$Stub$Proxy: void requestThemeChangeUpdates(cyanogenmod.themes.IThemeChangeListener) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.view.View onCreateView() -com.turingtechnologies.materialscrollbar.R$attr: int firstBaselineToTopHeight -okhttp3.internal.http2.Http2: byte TYPE_DATA -androidx.preference.R$attr: int spanCount -cyanogenmod.app.Profile$1: Profile$1() -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onNext(java.lang.Object) -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderQuery -com.amap.api.location.DPoint$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonTint -com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar_Small -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: boolean done -com.google.android.gms.base.R$attr -okhttp3.internal.ws.RealWebSocket: java.lang.String key -cyanogenmod.weather.WeatherInfo$Builder: double mTodaysHighTemp -com.github.rahatarmanahmed.cpv.CircularProgressView$7: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setWeather(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean) -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Light_Dialog -okhttp3.internal.http2.Http2Connection$3: void execute() -androidx.recyclerview.R$dimen: int notification_small_icon_background_padding -com.xw.repo.bubbleseekbar.R$attr: int subtitleTextStyle -okhttp3.Dispatcher: java.lang.Runnable idleCallback -okhttp3.internal.http2.Http2Connection$7: okhttp3.internal.http2.ErrorCode val$errorCode -com.turingtechnologies.materialscrollbar.R$layout: int abc_select_dialog_material -com.xw.repo.bubbleseekbar.R$id: int wrap_content -cyanogenmod.app.CustomTileListenerService -wangdaye.com.geometricweather.R$string: int preference_copied -com.google.android.material.R$styleable: int Transition_duration -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onPause -io.reactivex.internal.schedulers.ScheduledRunnable: void dispose() -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_dividerHeight -com.jaredrummler.android.colorpicker.R$attr: int actionModeCloseDrawable -com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_Switch -wangdaye.com.geometricweather.R$attr: int switchMinWidth -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: java.util.List getBrands() -com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationZ(float) -retrofit2.Platform: retrofit2.Platform findPlatform() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int RelativeHumidity -wangdaye.com.geometricweather.db.entities.DaoMaster: void createAllTables(org.greenrobot.greendao.database.Database,boolean) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void innerError(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver,java.lang.Throwable) -androidx.constraintlayout.widget.R$styleable: int[] DrawerArrowToggle -androidx.versionedparcelable.CustomVersionedParcelable -wangdaye.com.geometricweather.R$string: int dew_point -okhttp3.internal.Util: boolean decodeIpv4Suffix(java.lang.String,int,int,byte[],int) -androidx.legacy.coreutils.R$id: int right_side -com.google.android.material.slider.BaseSlider: int getLabelBehavior() -com.google.android.material.R$color: int mtrl_btn_bg_color_selector -okhttp3.internal.http2.Settings: int ENABLE_PUSH -wangdaye.com.geometricweather.settings.dialogs.MinimalIconDialog -cyanogenmod.app.CustomTileListenerService: java.lang.String TAG -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade -com.google.android.material.card.MaterialCardView: int getStrokeColor() -androidx.customview.R$layout: int notification_action -com.jaredrummler.android.colorpicker.R$style: int Base_DialogWindowTitle_AppCompat -androidx.dynamicanimation.R$attr: int alpha -com.turingtechnologies.materialscrollbar.R$attr: int navigationIcon -okhttp3.internal.platform.OptionalMethod: java.lang.reflect.Method getMethod(java.lang.Class) -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_EditText -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_percent -wangdaye.com.geometricweather.R$id: int ghost_view -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_activated_mtrl_alpha -androidx.preference.ListPreference: ListPreference(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String weatherText -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderFetchStrategy -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_3_material -com.amap.api.location.AMapLocation: java.lang.String getAoiName() -com.google.android.gms.common.api.Status -wangdaye.com.geometricweather.R$string: int aqi_1 -cyanogenmod.weather.ICMWeatherManager: void cancelRequest(int) -androidx.appcompat.R$attr: int subtitleTextAppearance -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_Solid -com.google.android.material.R$attr: int listMenuViewStyle -androidx.appcompat.R$style: int Base_V22_Theme_AppCompat -androidx.swiperefreshlayout.R$id -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -androidx.appcompat.widget.AppCompatSpinner: java.lang.CharSequence getPrompt() -androidx.constraintlayout.helper.widget.Flow: void setFirstVerticalStyle(int) -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onError(java.lang.Throwable) -com.google.gson.stream.JsonReader: int NUMBER_CHAR_DECIMAL -com.jaredrummler.android.colorpicker.R$id: int recycler_view -com.google.android.material.R$styleable: int ActionBar_height -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_popupWindowStyle -androidx.constraintlayout.widget.R$style: int AlertDialog_AppCompat_Light -com.google.android.material.R$styleable: int Insets_paddingBottomSystemWindowInsets -io.reactivex.internal.subscribers.StrictSubscriber: boolean done -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMenuItemView -com.amap.api.fence.DistrictItem: java.util.List d -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void clear() -androidx.appcompat.R$styleable: int AppCompatTheme_actionMenuTextColor +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupMenu +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.view.WindowManager mWindowManager +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: ObservableRangeLong$RangeDisposable(io.reactivex.Observer,long,long) +wangdaye.com.geometricweather.R$attr: int paddingLeftSystemWindowInsets +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_allowCustom +androidx.vectordrawable.R$id: int chronometer +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Menu +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TabLayout +wangdaye.com.geometricweather.R$styleable: int NavigationView_android_maxWidth +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_stroke_size +okio.Buffer: void readFully(byte[]) +james.adaptiveicon.R$styleable: int Toolbar_contentInsetLeft +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_defaultValue +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_item_min_width +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_SNOW +androidx.hilt.work.R$layout: int notification_template_icon_group +cyanogenmod.weatherservice.ServiceRequestResult: int describeContents() +io.reactivex.exceptions.UndeliverableException: long serialVersionUID +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_64 +com.google.android.material.textfield.TextInputLayout: void setErrorEnabled(boolean) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float totalPrecipitation +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextAppearanceActive(int) +io.reactivex.Observable: io.reactivex.Observable flatMapMaybe(io.reactivex.functions.Function,boolean) +wangdaye.com.geometricweather.R$id: int rounded +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Description +androidx.vectordrawable.R$id: int forever +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_1 +com.jaredrummler.android.colorpicker.R$color: int background_material_light +retrofit2.http.Streaming +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.CompositeDisposable set +android.didikee.donate.R$styleable: int[] MenuGroup +com.google.android.material.R$styleable: int[] MaterialCheckBox +com.google.android.material.tabs.TabLayout: int getTabMode() +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.AndroidPlatform$CloseGuard closeGuard +com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getCurrentDrawable() +cyanogenmod.providers.DataUsageContract: java.lang.String ENABLE +androidx.appcompat.R$attr: int dialogPreferredPadding +james.adaptiveicon.R$color: int material_grey_600 +androidx.preference.R$style: int TextAppearance_Compat_Notification_Time +okhttp3.internal.tls.BasicTrustRootIndex: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize +com.google.android.material.internal.FlowLayout +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_material_light +androidx.fragment.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() +okhttp3.internal.http2.Header: Header(java.lang.String,java.lang.String) +cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(cyanogenmod.app.CustomTile$1) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void request(long) +androidx.appcompat.R$attr: int tooltipText +com.google.android.material.chip.Chip: void setRippleColorResource(int) +okhttp3.internal.http1.Http1Codec$FixedLengthSource: long bytesRemaining +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: cyanogenmod.app.ThemeVersion$ComponentVersion getDeviceComponentVersion(cyanogenmod.app.ThemeComponent) +com.google.android.material.R$styleable: int MenuItem_android_visible +androidx.appcompat.R$styleable: int AppCompatTheme_panelBackground +androidx.constraintlayout.widget.R$color: int dim_foreground_disabled_material_light +james.adaptiveicon.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.R$styleable: int[] AppBarLayout +wangdaye.com.geometricweather.R$string: int widget_day +james.adaptiveicon.R$id: int topPanel +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_pressed_holo_light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: java.lang.String Unit +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_RINGTONE +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin +androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context) +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_WIFI_COMBO_MARGIN_END +com.turingtechnologies.materialscrollbar.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentY +com.jaredrummler.android.colorpicker.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.R$color: int mtrl_outlined_icon_tint +io.reactivex.Observable: io.reactivex.Observable doOnDispose(io.reactivex.functions.Action) +androidx.viewpager2.R$id: int accessibility_custom_action_4 +com.xw.repo.bubbleseekbar.R$string: int status_bar_notification_info_overflow +com.google.android.material.textfield.TextInputLayout: void setErrorIconOnClickListener(android.view.View$OnClickListener) +com.xw.repo.bubbleseekbar.R$color +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_US +androidx.constraintlayout.widget.R$styleable: int[] View +wangdaye.com.geometricweather.R$attr: int bsb_touch_to_seek +androidx.lifecycle.Transformations$2$1: androidx.lifecycle.Transformations$2 this$0 +wangdaye.com.geometricweather.R$id: int activity_preview_icon_container +wangdaye.com.geometricweather.R$id: int italic +androidx.preference.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.floatingactionbutton.FloatingActionButtonImpl getImpl() +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getLevel() +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_searchIcon +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_SPEED +androidx.preference.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +com.google.android.material.R$layout: int abc_popup_menu_header_item_layout +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void dispose() +com.google.android.material.R$attr: int subtitleTextColor +com.google.android.material.R$dimen: int abc_dialog_padding_top_material +android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyle +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property CityId +androidx.appcompat.R$styleable: int MenuView_android_itemBackground +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.StreamAllocation streamAllocation() +androidx.fragment.app.FragmentTabHost: FragmentTabHost(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$attr: int searchIcon +okio.Buffer: long indexOf(okio.ByteString,long) +androidx.appcompat.R$attr: int colorPrimaryDark +com.google.android.material.R$integer: int mtrl_badge_max_character_count +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: java.lang.String toString() +com.google.android.material.slider.BaseSlider: void setTrackTintList(android.content.res.ColorStateList) +androidx.core.R$id: int notification_background +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: java.lang.Object poll() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dark +okio.Pipe: boolean sourceClosed +androidx.viewpager.R$styleable: int FontFamilyFont_fontWeight +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_transformPivotX +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: void onFinishedProcessing(java.lang.String) +com.google.android.material.R$color: int material_slider_active_track_color +androidx.constraintlayout.widget.R$dimen: int abc_panel_menu_list_width +androidx.viewpager.R$color: int secondary_text_default_material_light +com.xw.repo.bubbleseekbar.R$attr: int fontProviderFetchTimeout +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: ObservableSampleTimed$SampleTimedNoLast(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +james.adaptiveicon.R$color: int primary_text_disabled_material_dark +cyanogenmod.app.CustomTile: int describeContents() +okhttp3.MediaType: java.lang.String charset +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.R$color: int material_timepicker_button_stroke +androidx.constraintlayout.widget.R$style: int Theme_AppCompat +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: int getWindowFlags() +io.reactivex.Observable: io.reactivex.Observable never() +android.didikee.donate.R$styleable: int[] Spinner +androidx.hilt.work.R$attr: R$attr() +wangdaye.com.geometricweather.common.basic.models.weather.History: long time +com.jaredrummler.android.colorpicker.R$attr: int alertDialogCenterButtons +cyanogenmod.app.StatusBarPanelCustomTile$1: java.lang.Object[] newArray(int) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableTop +com.turingtechnologies.materialscrollbar.R$attr: int thumbTint +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginTop +com.google.android.material.R$styleable: int MotionHelper_onShow +wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextSpinner +wangdaye.com.geometricweather.R$attr: int titleMarginTop +com.google.android.material.R$styleable: int Constraint_chainUseRtl +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceOverline +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_profileExists +wangdaye.com.geometricweather.R$id: int tag_accessibility_clickable_spans +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX getTemperature() +android.didikee.donate.R$styleable: int AppCompatSeekBar_android_thumb +android.didikee.donate.R$styleable: int PopupWindowBackgroundState_state_above_anchor +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +androidx.preference.SwitchPreference: SwitchPreference(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windDircStart +androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_small_material +okhttp3.internal.ws.RealWebSocket: long queueSize +okhttp3.Headers: java.util.Date getDate(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_closeItemLayout +okhttp3.internal.platform.AndroidPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingStart +wangdaye.com.geometricweather.R$drawable: int ic_alert +com.jaredrummler.android.colorpicker.R$styleable: int[] Preference +androidx.activity.R$styleable: int GradientColor_android_tileMode +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog +io.reactivex.exceptions.CompositeException: java.lang.String getMessage() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Inverse +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +okhttp3.ConnectionPool$1: okhttp3.ConnectionPool this$0 +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode WIND +androidx.lifecycle.ClassesInfoCache$MethodReference: boolean equals(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorColor +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon +wangdaye.com.geometricweather.R$styleable: int Slider_haloColor +wangdaye.com.geometricweather.R$string: int key_notification_minimal_icon +androidx.preference.R$styleable: int TextAppearance_android_shadowRadius +com.amap.api.location.UmidtokenInfo +com.turingtechnologies.materialscrollbar.R$attr: int cardUseCompatPadding +wangdaye.com.geometricweather.R$string: int key_appearance +wangdaye.com.geometricweather.R$id: int center_horizontal +okhttp3.internal.cache.DiskLruCache: java.io.File journalFile +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +androidx.constraintlayout.widget.R$attr: int theme +wangdaye.com.geometricweather.R$id: int unlabeled +com.google.android.material.R$id: int triangle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_switchStyle +androidx.savedstate.Recreator +androidx.constraintlayout.widget.R$anim: R$anim() +androidx.lifecycle.ReportFragment$LifecycleCallbacks: ReportFragment$LifecycleCallbacks() +okhttp3.Challenge: okhttp3.Challenge withCharset(java.nio.charset.Charset) +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_removeNotificationGroup +wangdaye.com.geometricweather.R$id: int showHome +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_GLOBAL +androidx.appcompat.R$dimen: int abc_text_size_menu_material +com.google.android.material.R$style: int Widget_AppCompat_Button_Colored +wangdaye.com.geometricweather.R$styleable: int Preference_android_selectable +com.google.android.material.R$attr: int queryBackground +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUpdateTime(long) +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HIGH_TOUCH_SENSITIVITY_ENABLE_VALIDATOR +com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrimResource(int) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void onAttachedToWindow() +com.google.android.material.R$drawable: int material_ic_clear_black_24dp +com.amap.api.location.AMapLocation: void setNumber(java.lang.String) +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: double mHigh +androidx.vectordrawable.animated.R$attr: int fontProviderFetchTimeout +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +androidx.work.R$color: int ripple_material_light +com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_BarSize +androidx.appcompat.R$id: int action_container +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotation +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintDimensionRatio +com.google.android.material.R$string: int icon_content_description +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +androidx.lifecycle.LiveData$1 +com.google.android.material.R$styleable: int Toolbar_collapseIcon +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constrainedWidth +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: java.util.List getValue() +androidx.hilt.R$id: int tag_accessibility_actions +androidx.hilt.R$anim +wangdaye.com.geometricweather.R$id: int labeled +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Large +com.google.android.material.R$style: int Animation_MaterialComponents_BottomSheetDialog +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_backgroundTint +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTint +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dividerVertical +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderConfirmButton +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: int hashCode() +com.google.android.material.R$styleable: int TabLayout_tabPadding +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Title +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder domain(java.lang.String,boolean) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean isDisposed() +com.google.android.material.R$styleable: int MaterialCalendarItem_itemStrokeWidth +androidx.hilt.work.R$color: int ripple_material_light +okhttp3.internal.connection.RouteSelector: okhttp3.Call call +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitation +com.baidu.location.e.l$b: java.lang.String a(com.baidu.location.e.l$b,org.json.JSONObject) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfPrecipitation +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: io.reactivex.Scheduler$Worker worker +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: ThemeVersion$ThemeVersionImpl3() +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setIconDrawable(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.Observer downstream +okhttp3.internal.ws.WebSocketReader: void readMessage() +com.amap.api.location.AMapLocationClientOption: boolean f +wangdaye.com.geometricweather.R$layout: int preference_widget_seekbar_material +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMargin +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Dialog_Bridge +com.google.android.material.R$styleable: int TabLayout_tabSelectedTextColor +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_keylines +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_horizontal +com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context,android.util.AttributeSet,int) +androidx.hilt.work.R$styleable: int FontFamilyFont_fontWeight +androidx.coordinatorlayout.R$style: int Widget_Support_CoordinatorLayout +androidx.lifecycle.MediatorLiveData$Source: void unplug() +androidx.appcompat.R$styleable: int SearchView_commitIcon +androidx.work.impl.utils.futures.AbstractFuture$Waiter: androidx.work.impl.utils.futures.AbstractFuture$Waiter next +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat +androidx.viewpager.R$styleable: int GradientColor_android_endX +com.turingtechnologies.materialscrollbar.R$id: int title +james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_CAMELLIA_128_CBC_SHA +okhttp3.CacheControl: okhttp3.CacheControl parse(okhttp3.Headers) +androidx.lifecycle.LifecycleRegistry$ObserverWithState: androidx.lifecycle.Lifecycle$State mState +okhttp3.OkHttpClient: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner +retrofit2.BuiltInConverters$VoidResponseBodyConverter: BuiltInConverters$VoidResponseBodyConverter() +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver +com.google.android.material.R$string: int mtrl_picker_save +com.jaredrummler.android.colorpicker.R$attr: int srcCompat +com.google.android.material.R$attr: int fontWeight +com.bumptech.glide.integration.okhttp.R$drawable +cyanogenmod.hardware.ICMHardwareService: boolean isSunlightEnhancementSelfManaged() +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabSelectedTextColor +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: android.graphics.Rect getWindowInsets() +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_dividerPadding +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: double lat +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableBottomCompat +com.google.android.material.button.MaterialButtonToggleGroup: void setSingleSelection(boolean) +androidx.core.view.ViewCompat$1 +androidx.hilt.lifecycle.R$id: int dialog_button +androidx.appcompat.R$color: int abc_tint_edittext +cyanogenmod.providers.CMSettings$System: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) +com.google.android.material.R$styleable: int Layout_layout_constraintHeight_min +com.xw.repo.bubbleseekbar.R$dimen: int abc_seekbar_track_progress_height_material +androidx.fragment.R$dimen: int notification_top_pad_large_text +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SeekBar_Discrete +androidx.constraintlayout.widget.R$drawable: int notification_action_background +androidx.preference.R$styleable: int[] ActivityChooserView +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat +androidx.appcompat.R$dimen: int tooltip_y_offset_touch +com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColorResource(int) +com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$attr: int currentState +com.google.android.material.R$attr: int behavior_autoHide +okhttp3.internal.tls.BasicCertificateChainCleaner: BasicCertificateChainCleaner(okhttp3.internal.tls.TrustRootIndex) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Time +wangdaye.com.geometricweather.R$attr: int expandedTitleTextAppearance +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light_normal +androidx.appcompat.R$string: int abc_shareactionprovider_share_with_application +com.bumptech.glide.Registry$NoSourceEncoderAvailableException: Registry$NoSourceEncoderAvailableException(java.lang.Class) +cyanogenmod.app.ProfileGroup$Mode: ProfileGroup$Mode(java.lang.String,int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List forecast +com.amap.api.fence.GeoFenceClient: int GEOFENCE_STAYED +com.github.rahatarmanahmed.cpv.CircularProgressView$9: CircularProgressView$9(com.github.rahatarmanahmed.cpv.CircularProgressView) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow snow +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +androidx.appcompat.R$id: int checkbox +com.google.android.material.R$string: int abc_action_menu_overflow_description +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListMenuView +okio.GzipSource: java.util.zip.CRC32 crc +okhttp3.Response$Builder: okhttp3.Response$Builder priorResponse(okhttp3.Response) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setType(java.lang.String) +androidx.coordinatorlayout.R$styleable: int[] CoordinatorLayout_Layout +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar +wangdaye.com.geometricweather.R$id: int dialog_time_setter_container +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature +okhttp3.CacheControl$Builder: okhttp3.CacheControl build() +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog +androidx.dynamicanimation.R$id: int line3 +androidx.appcompat.R$string: int abc_toolbar_collapse_description +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature +cyanogenmod.app.IProfileManager$Stub: android.os.IBinder asBinder() +androidx.appcompat.R$dimen: int abc_seekbar_track_background_height_material +wangdaye.com.geometricweather.R$id: int action_mode_bar_stub +androidx.constraintlayout.motion.widget.MotionLayout: void setDebugMode(int) +com.amap.api.location.AMapLocationClient: AMapLocationClient(android.content.Context) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Small +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: BaiduIPLocationResult() +com.google.android.material.R$styleable: int[] MotionTelltales +androidx.cardview.R$dimen: int cardview_default_radius +androidx.activity.R$id: int accessibility_custom_action_7 +androidx.viewpager.R$style: R$style() +androidx.lifecycle.SavedStateHandleController$OnRecreation: void onRecreated(androidx.savedstate.SavedStateRegistryOwner) +com.google.android.material.chip.Chip: void setChipStrokeWidthResource(int) +androidx.fragment.R$id: int accessibility_custom_action_23 +android.didikee.donate.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +okhttp3.Cookie: boolean hostOnly() +okhttp3.internal.cache2.Relay: okio.ByteString PREFIX_DIRTY +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetEnd +wangdaye.com.geometricweather.common.basic.models.weather.Alert: Alert(long,java.util.Date,long,java.lang.String,java.lang.String,java.lang.String,int,int) +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle +com.amap.api.fence.DistrictItem: void setPolyline(java.util.List) +com.google.android.material.R$attr: int buttonBarPositiveButtonStyle +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonText +okio.BufferedSink: okio.BufferedSink writeUtf8(java.lang.String) +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rx() +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle HOURLY +okhttp3.internal.Version: Version() +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarNegativeButtonStyle +androidx.preference.R$attr: int adjustable +androidx.cardview.R$attr +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Large +okhttp3.internal.ws.WebSocketWriter$FrameSink: void flush() +com.google.android.material.R$styleable: int[] ExtendedFloatingActionButton_Behavior_Layout +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_checkedTextViewStyle +androidx.drawerlayout.widget.DrawerLayout$SavedState +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void openComplete(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver) +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$Event downEvent(androidx.lifecycle.Lifecycle$State) +wangdaye.com.geometricweather.R$styleable: int Preference_android_persistent +com.google.android.material.R$styleable: int AppCompatTheme_actionBarSize +com.turingtechnologies.materialscrollbar.R$color: int primary_material_dark +androidx.viewpager.R$drawable: int notification_bg_normal +androidx.transition.R$layout: int notification_template_part_time +retrofit2.converter.gson.GsonRequestBodyConverter: java.lang.Object convert(java.lang.Object) +androidx.constraintlayout.widget.Group: void setVisibility(int) +cyanogenmod.app.IProfileManager +io.reactivex.internal.util.NotificationLite: org.reactivestreams.Subscription getSubscription(java.lang.Object) +com.google.android.gms.common.api.AvailabilityException: com.google.android.gms.common.ConnectionResult getConnectionResult(com.google.android.gms.common.api.GoogleApi) +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView +androidx.constraintlayout.widget.R$attr: int fontProviderAuthority +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_DayNight +wangdaye.com.geometricweather.R$style: int Theme_Design_Light +wangdaye.com.geometricweather.R$styleable: int ActivityChooserView_initialActivityCount +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: java.util.concurrent.atomic.AtomicReference timer +androidx.preference.R$styleable: int Toolbar_title +androidx.legacy.coreutils.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$styleable: int Constraint_pivotAnchor +com.google.android.material.R$attr: int layout_constraintWidth_min +androidx.appcompat.resources.R$styleable: int GradientColor_android_endX +androidx.appcompat.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +wangdaye.com.geometricweather.R$styleable: int ChipGroup_singleSelection +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_Alert +com.google.android.material.R$id: int bidirectional +androidx.coordinatorlayout.R$drawable: int notification_bg_normal +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar +com.turingtechnologies.materialscrollbar.R$attr: int collapsedTitleTextAppearance +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf +wangdaye.com.geometricweather.R$drawable: int weather_cloudy +cyanogenmod.alarmclock.ClockContract: ClockContract() +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: int getSuggestedMinimumWidth() +wangdaye.com.geometricweather.R$dimen: int notification_content_margin_start +com.amap.api.location.AMapLocation: java.lang.String p(com.amap.api.location.AMapLocation,java.lang.String) +androidx.activity.R$styleable: int FontFamily_fontProviderAuthority +androidx.lifecycle.SavedStateHandleController: SavedStateHandleController(java.lang.String,androidx.lifecycle.SavedStateHandle) +com.amap.api.location.AMapLocation: java.lang.String w +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPm10() +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action) +com.google.android.material.chip.ChipGroup: void setSelectionRequired(boolean) +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onNext(java.lang.Object) +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemBackground +com.google.android.material.R$string: int mtrl_picker_a11y_next_month +wangdaye.com.geometricweather.R$string: int key_daily_trend_display +androidx.preference.R$attr: int actionProviderClass +com.google.android.material.R$style: int Base_Widget_AppCompat_ListView_DropDown +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyBottomLeft +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onLockscreenSlideOffsetChanged(float) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Tooltip +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelBackground +com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_backgroundTintMode +com.amap.api.location.AMapLocationClient: void startAssistantLocation(android.webkit.WebView) +androidx.constraintlayout.widget.R$id: int submenuarrow +com.google.android.material.R$dimen: int mtrl_shape_corner_size_medium_component +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_Solid +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.background.service.TileService: TileService() +com.google.android.material.R$attr: int collapsedTitleTextAppearance +wangdaye.com.geometricweather.db.entities.AlertEntity: void setTime(long) +okhttp3.internal.cache.DiskLruCache$Editor$1: void onException(java.io.IOException) +okhttp3.internal.publicsuffix.PublicSuffixDatabase: void readTheList() +android.didikee.donate.R$attr: int paddingStart wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhase -com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_icon -androidx.loader.content.Loader: void unregisterOnLoadCanceledListener(androidx.loader.content.Loader$OnLoadCanceledListener) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: AccuDailyResult$DailyForecasts$Day$Wind$Speed() -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$string: int search_menu_title -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean hasNext() -com.google.android.material.R$styleable: int ActionMode_titleTextStyle -com.amap.api.location.CoordinateConverter: com.amap.api.location.DPoint convert() -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_type -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_font -androidx.constraintlayout.widget.R$id: int actions -wangdaye.com.geometricweather.R$drawable: int notif_temp_95 -com.jaredrummler.android.colorpicker.R$color: int material_deep_teal_500 -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_dither -io.reactivex.internal.observers.LambdaObserver: LambdaObserver(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Consumer) -androidx.work.R$id: int accessibility_custom_action_12 -com.xw.repo.bubbleseekbar.R$color: int accent_material_dark -android.didikee.donate.R$styleable: int AlertDialog_multiChoiceItemLayout -com.google.android.material.R$style: int Base_Widget_AppCompat_SearchView -com.google.android.gms.location.LocationSettingsStates -androidx.preference.R$styleable: int SwitchPreference_switchTextOn -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.amap.api.location.AMapLocation: void setStreet(java.lang.String) -androidx.recyclerview.R$color: R$color() -io.reactivex.internal.observers.BasicIntQueueDisposable: BasicIntQueueDisposable() -com.xw.repo.bubbleseekbar.R$attr: int textAllCaps -com.jaredrummler.android.colorpicker.R$string: int summary_collapsed_preference_list -android.didikee.donate.R$drawable: int abc_control_background_material -okhttp3.internal.cache2.Relay: java.lang.Thread upstreamReader -com.google.android.material.textfield.TextInputLayout: void removeOnEndIconChangedListener(com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener) -cyanogenmod.app.LiveLockScreenInfo: android.os.Parcelable$Creator CREATOR -retrofit2.ParameterHandler$Tag: java.lang.Class cls -wangdaye.com.geometricweather.R$array: int live_wallpaper_weather_kinds -okhttp3.CipherSuite$1: int compare(java.lang.String,java.lang.String) -cyanogenmod.app.ICMTelephonyManager: void setDefaultPhoneSub(int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -androidx.appcompat.R$dimen: int abc_action_button_min_width_overflow_material -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display4 -android.didikee.donate.R$attr: int colorAccent +androidx.constraintlayout.widget.R$attr: int textAllCaps +com.google.gson.internal.JsonReaderInternalAccess: com.google.gson.internal.JsonReaderInternalAccess INSTANCE +com.google.android.material.R$drawable: int notification_bg_low_normal +com.google.android.material.R$styleable: int Transition_transitionDisable +com.amap.api.location.AMapLocationQualityReport: int d +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableRightCompat +com.google.android.material.R$style: int Base_V22_Theme_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.google.android.gms.internal.base.zai +androidx.appcompat.resources.R$dimen: int notification_content_margin_start +com.xw.repo.bubbleseekbar.R$attr: int bsb_progress +androidx.lifecycle.Lifecycle +wangdaye.com.geometricweather.R$attr: int contentPaddingTop +androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context,android.util.AttributeSet,int) +androidx.work.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String zh_CN +com.xw.repo.bubbleseekbar.R$string: int abc_action_menu_overflow_description +wangdaye.com.geometricweather.R$attr: int selectableItemBackground +com.amap.api.fence.GeoFenceClient: void removeGeoFence() +cyanogenmod.app.StatusBarPanelCustomTile$1 +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRealFeelShaderTemperature +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset +wangdaye.com.geometricweather.R$string: int key_widget_week +com.jaredrummler.android.colorpicker.R$styleable: int Preference_order +retrofit2.Platform$Android$MainThreadExecutor: Platform$Android$MainThreadExecutor() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getTranslateY() +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizePresetSizes +androidx.work.R$styleable: int FontFamilyFont_android_ttcIndex +com.bumptech.glide.integration.okhttp.R$id: int end +com.google.android.material.R$drawable: int mtrl_dialog_background +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_controlBackground +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_creator +com.google.android.material.R$styleable: int Slider_tickColorActive +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.util.List Summaries +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX() +androidx.hilt.work.R$id: int accessibility_custom_action_11 +com.google.android.material.R$id: int dragLeft +wangdaye.com.geometricweather.R$layout: int widget_day_oreo +wangdaye.com.geometricweather.R$string: int wind_5 +androidx.activity.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +okhttp3.logging.LoggingEventListener$Factory: okhttp3.logging.HttpLoggingInterceptor$Logger logger +android.didikee.donate.R$styleable: int AppCompatTheme_panelMenuListTheme +okio.AsyncTimeout$1: okio.Timeout timeout() +androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context,android.util.AttributeSet,int) +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State SUCCEEDED +androidx.vectordrawable.R$dimen: int notification_large_icon_width +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_Solid +com.jaredrummler.android.colorpicker.R$style: int Platform_V21_AppCompat_Light +wangdaye.com.geometricweather.R$id: int fixed +androidx.appcompat.resources.R$drawable: int notify_panel_notification_icon_bg +com.jaredrummler.android.colorpicker.R$attr: int actionModeCutDrawable +com.google.android.material.R$styleable: int AppCompatTheme_actionMenuTextAppearance +okhttp3.logging.LoggingEventListener: okhttp3.logging.HttpLoggingInterceptor$Logger logger +wangdaye.com.geometricweather.R$attr: int chipSurfaceColor +wangdaye.com.geometricweather.R$dimen: int normal_margin +com.google.android.material.R$attr: int fabAnimationMode +androidx.hilt.lifecycle.R$drawable +okhttp3.Cookie: java.lang.String value() +androidx.preference.R$styleable: int FontFamilyFont_android_ttcIndex +okhttp3.Cache$CacheRequestImpl +androidx.viewpager.widget.PagerTitleStrip: int getMinHeight() +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor DARK +androidx.appcompat.widget.SwitchCompat: void setTrackResource(int) +okhttp3.internal.http2.Http2Writer: void ping(boolean,int,int) +wangdaye.com.geometricweather.R$attr: int drawableLeftCompat +com.google.android.material.R$styleable: int MenuGroup_android_menuCategory +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_normal +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedHeightMajor +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: MpscLinkedQueue$LinkedQueueNode() +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyTopLeft +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: int getStatus() +com.turingtechnologies.materialscrollbar.R$color: int material_grey_50 +com.amap.api.fence.GeoFenceManagerBase: void resumeGeoFence() +okhttp3.internal.platform.ConscryptPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.google.android.material.R$styleable: int ViewStubCompat_android_id +wangdaye.com.geometricweather.R$color: int mtrl_textinput_filled_box_default_background_color +com.google.android.material.R$attr: int thumbStrokeColor +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer speed +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: Precipitation(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_voice_search_api_material +androidx.drawerlayout.R$id: int text2 +androidx.appcompat.widget.AppCompatTextView: void setAutoSizeTextTypeWithDefaults(int) +com.turingtechnologies.materialscrollbar.R$dimen: int notification_top_pad +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_ttcIndex +com.google.android.gms.common.R$string +okio.Timeout: void throwIfReached() +okhttp3.internal.ws.RealWebSocket$Message +cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.StatusBarPanelCustomTile clone() +wangdaye.com.geometricweather.R$attr: int behavior_hideable +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int SnowProbability +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconSize +wangdaye.com.geometricweather.R$string: int material_slider_range_end +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_128_CCM_SHA256 +androidx.core.R$id: int tag_accessibility_clickable_spans +androidx.constraintlayout.widget.R$dimen: int abc_alert_dialog_button_dimen +cyanogenmod.providers.CMSettings$Secure: java.lang.String BUTTON_BRIGHTNESS +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dropDownListViewStyle +com.xw.repo.bubbleseekbar.R$id: int alertTitle +com.jaredrummler.android.colorpicker.R$styleable: int ActivityChooserView_initialActivityCount +okio.Buffer: boolean exhausted() +com.google.android.material.R$styleable: int Constraint_barrierMargin +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.Observer downstream +james.adaptiveicon.R$attr: int listMenuViewStyle +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_shapeAppearanceOverlay +com.amap.api.fence.PoiItem: android.os.Parcelable$Creator getCreator() +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderPackage +com.baidu.location.indoor.c: boolean add(java.lang.Object) +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_stackFromEnd +cyanogenmod.app.CustomTile$ExpandedStyle: int LIST_STYLE +androidx.viewpager2.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UpdateDate +com.turingtechnologies.materialscrollbar.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.R$styleable: int MotionLayout_layoutDescription +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalAlign +james.adaptiveicon.R$attr: int commitIcon +com.google.android.material.R$styleable: int View_android_theme +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +com.jaredrummler.android.colorpicker.R$attr: int listItemLayout +retrofit2.Response: boolean isSuccessful() +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.R$id: int notification_main_column +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_saturation +com.google.android.material.button.MaterialButton: int getTextHeight() +androidx.fragment.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_133 +androidx.preference.R$id: int accessibility_custom_action_6 +androidx.appcompat.R$style: int TextAppearance_AppCompat_Large_Inverse +com.turingtechnologies.materialscrollbar.R$attr: int textAllCaps +wangdaye.com.geometricweather.R$interpolator: R$interpolator() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onNext(java.lang.Object) +cyanogenmod.themes.IThemeService: void registerThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.util.List DataSets +androidx.preference.R$style: int Theme_AppCompat_Light_Dialog +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult +androidx.constraintlayout.widget.R$styleable: int Toolbar_collapseIcon +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_126 +androidx.constraintlayout.widget.R$attr: int textLocale +okhttp3.internal.http1.Http1Codec$FixedLengthSource +androidx.preference.R$styleable: int SearchView_searchHintIcon +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_SCREEN_ON +androidx.appcompat.widget.SearchView: SearchView(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_disabled_holo_dark +retrofit2.ParameterHandler$Path: void apply(retrofit2.RequestBuilder,java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: java.lang.String Name +okhttp3.ConnectionPool: void evictAll() +okhttp3.Cache: okhttp3.Response get(okhttp3.Request) +com.google.android.material.R$attr: int round +androidx.coordinatorlayout.R$layout: int notification_template_part_time +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_disabled_holo_light +androidx.constraintlayout.widget.R$attr: int touchAnchorSide +androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModelStore mViewModelStore +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Subtitle2 +wangdaye.com.geometricweather.R$styleable: int MenuItem_tooltipText +com.google.android.material.R$integer: int status_bar_notification_info_maxnum +com.google.android.material.R$attr: int tabIndicatorColor +com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontStyle +cyanogenmod.profiles.RingModeSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_requestDismiss_0 +wangdaye.com.geometricweather.R$styleable: int[] Variant +wangdaye.com.geometricweather.R$id: int widget_week +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: java.lang.Object v2 +okio.ByteString: long serialVersionUID +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String windLevel +com.bumptech.glide.R$color: R$color() +androidx.preference.R$id: int default_activity_button +android.didikee.donate.R$id: int showTitle +com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior +androidx.constraintlayout.widget.R$color: int androidx_core_secondary_text_default_material_light +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: java.lang.Object v2 +com.google.android.material.chip.Chip: void setCloseIconContentDescription(java.lang.CharSequence) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_DropDown +wangdaye.com.geometricweather.R$integer: int abc_config_activityDefaultDur +com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior: AppBarLayout$ScrollingViewBehavior(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$id: int dialog_location_help_manageIcon +com.turingtechnologies.materialscrollbar.R$attr: int fabCustomSize +com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_end +cyanogenmod.weather.WeatherInfo: double access$802(cyanogenmod.weather.WeatherInfo,double) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_off_mtrl_alpha +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property China +james.adaptiveicon.R$styleable: int AppCompatTheme_switchStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_137 +wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_material +okhttp3.Cookie: boolean httpOnly +cyanogenmod.app.Profile$LockMode: int DEFAULT +wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_small_component +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: java.util.List value +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getSubtitle() +androidx.activity.R$layout: int notification_template_custom_big +androidx.loader.R$color: R$color() +com.google.android.material.R$layout: int mtrl_picker_actions +com.google.android.material.R$dimen: int mtrl_btn_snackbar_margin_horizontal +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_showSeekBarValue +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemPaddingRight +wangdaye.com.geometricweather.R$attr: int tintMode +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Caption +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: CaiYunMainlyResult() +okhttp3.internal.ws.RealWebSocket: java.util.concurrent.ScheduledFuture cancelFuture +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Level level +com.google.android.material.chip.Chip: void setChipIconEnabled(boolean) +com.google.android.material.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Title_Inverse +okhttp3.internal.http2.Http2Stream: void receiveRstStream(okhttp3.internal.http2.ErrorCode) +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.Observer downstream +com.google.android.material.R$styleable: int TextAppearance_android_textStyle +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: void spValue(java.lang.Object) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView +cyanogenmod.hardware.DisplayMode: DisplayMode(int,java.lang.String) +wangdaye.com.geometricweather.R$attr: int layout_constraintEnd_toStartOf +androidx.appcompat.R$styleable: int LinearLayoutCompat_dividerPadding +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_ActionBar +androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_chainStyle +com.jaredrummler.android.colorpicker.R$attr: int widgetLayout +cyanogenmod.power.PerformanceManagerInternal +androidx.customview.R$dimen: int notification_action_text_size +androidx.constraintlayout.widget.R$styleable: int ActionBar_homeAsUpIndicator +okhttp3.internal.ws.RealWebSocket: okhttp3.WebSocketListener listener +androidx.viewpager.widget.PagerTabStrip: void setBackgroundDrawable(android.graphics.drawable.Drawable) +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCloseDrawable +okio.RealBufferedSource: short readShort() +androidx.appcompat.widget.AppCompatAutoCompleteTextView: android.content.res.ColorStateList getSupportBackgroundTintList() +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_iconEndPadding +androidx.core.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$color: int secondary_text_disabled_material_dark +com.google.android.material.textfield.TextInputLayout: void setEndIconMode(int) +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontVariationSettings +cyanogenmod.providers.DataUsageContract: java.lang.String DATAUSAGE_TABLE +james.adaptiveicon.R$styleable: int TextAppearance_android_shadowColor +okio.RealBufferedSource: RealBufferedSource(okio.Source) +androidx.work.NetworkType: androidx.work.NetworkType UNMETERED +androidx.appcompat.R$attr: int panelBackground +com.turingtechnologies.materialscrollbar.R$attr: int toolbarNavigationButtonStyle +wangdaye.com.geometricweather.R$styleable: int[] SearchView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setUrl(java.lang.String) +james.adaptiveicon.AdaptiveIconView +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour[] values() +wangdaye.com.geometricweather.R$attr: int dayStyle +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetBottom +com.google.android.material.R$dimen: int compat_button_padding_vertical_material +james.adaptiveicon.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.google.android.material.R$styleable: int SnackbarLayout_animationMode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric Metric +wangdaye.com.geometricweather.db.entities.DailyEntity: void setSo2(java.lang.Float) +wangdaye.com.geometricweather.R$id: int action_bar_spinner +cyanogenmod.app.CustomTileListenerService$1 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: AccuCurrentResult$Wind$Speed$Imperial() +com.google.android.material.progressindicator.ProgressIndicator: void setProgressDrawable(android.graphics.drawable.Drawable) +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int height +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object) +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: io.reactivex.disposables.Disposable upstream +com.bumptech.glide.R$styleable: int FontFamilyFont_android_font +androidx.appcompat.R$dimen: int abc_control_padding_material +com.google.android.material.R$dimen: int abc_text_size_caption_material +wangdaye.com.geometricweather.R$attr: int closeIconVisible +james.adaptiveicon.R$attr: int listPreferredItemHeightSmall +wangdaye.com.geometricweather.R$id: int widget_clock_day_sensibleTemp +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Link +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +com.google.android.material.R$styleable: int DrawerArrowToggle_spinBars +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf +androidx.preference.R$style: int Base_Widget_AppCompat_TextView +androidx.appcompat.widget.SwitchCompat: java.lang.CharSequence getTextOn() +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_shape_vertical_margin +com.baidu.location.g.a +androidx.vectordrawable.R$id: int action_divider +androidx.lifecycle.extensions.R$dimen: int notification_media_narrow_margin +androidx.constraintlayout.widget.R$styleable: int Constraint_android_minWidth +androidx.preference.R$styleable: int ActionBar_divider +com.google.android.material.R$dimen: int mtrl_badge_long_text_horizontal_padding +com.google.android.material.timepicker.ClockHandView: void addOnRotateListener(com.google.android.material.timepicker.ClockHandView$OnRotateListener) +androidx.preference.R$styleable: int Preference_android_iconSpaceReserved +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_anchor +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceBody1 +androidx.preference.R$id: int radio +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_buttonIconDimen +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_scaleX +com.google.android.material.R$dimen: int hint_alpha_material_light +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dark +androidx.constraintlayout.widget.R$color: int abc_decor_view_status_guard +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Category +com.google.android.material.R$styleable: int GradientColor_android_endColor +androidx.preference.R$styleable: int SeekBarPreference_updatesContinuously +okhttp3.Response: okhttp3.Response priorResponse() +com.google.android.material.R$id: int path +retrofit2.adapter.rxjava2.CallEnqueueObservable +wangdaye.com.geometricweather.R$string: int key_card_display +androidx.appcompat.R$id: int action_bar_container +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void updateVisibility() +james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton +androidx.preference.R$style: int Platform_V25_AppCompat +androidx.appcompat.R$bool +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$attr: int motionPathRotate +james.adaptiveicon.R$dimen: int abc_action_bar_stacked_tab_max_width +cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.ICMStatusBarManager getService() +wangdaye.com.geometricweather.R$anim: int design_snackbar_in +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +android.didikee.donate.R$styleable: int AppCompatTheme_panelBackground +com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_in_top +com.google.android.material.R$attr: int useCompatPadding +androidx.viewpager2.R$id: int accessibility_custom_action_16 +androidx.appcompat.widget.AppCompatImageButton: void setSupportImageTintList(android.content.res.ColorStateList) +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_id +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: java.lang.Throwable error +androidx.appcompat.R$styleable: int StateListDrawable_android_exitFadeDuration +wangdaye.com.geometricweather.R$drawable: int weather_rain_1 +okhttp3.Cache: void delete() +androidx.appcompat.R$attr: int actionLayout +com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_android_button +wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_dark +androidx.appcompat.R$drawable: int abc_vector_test +com.google.android.material.R$attr: int badgeStyle +com.google.android.material.R$attr: int layout_constraintGuide_begin +io.reactivex.internal.schedulers.ScheduledDirectTask: ScheduledDirectTask(java.lang.Runnable) +androidx.constraintlayout.motion.widget.MotionLayout: void setState(androidx.constraintlayout.motion.widget.MotionLayout$TransitionState) +james.adaptiveicon.R$color: R$color() +com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_alpha +androidx.constraintlayout.widget.R$drawable: int abc_switch_track_mtrl_alpha +okhttp3.internal.connection.RouteSelector$Selection +wangdaye.com.geometricweather.db.entities.LocationEntity: void setCity(java.lang.String) +androidx.core.R$styleable: int GradientColor_android_endColor +com.xw.repo.bubbleseekbar.R$attr: int autoSizeTextType +androidx.preference.R$styleable: int Preference_summary +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_18 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: int UnitType +androidx.swiperefreshlayout.R$id: int notification_main_column +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.R$id: int chip3 +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: android.os.IBinder createExternalView(android.os.Bundle) +com.google.android.material.button.MaterialButton: void setPressed(boolean) +com.turingtechnologies.materialscrollbar.R$id: int activity_chooser_view_content +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean addInner(io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult +com.google.android.material.chip.Chip: void setCloseIconSizeResource(int) +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +com.google.android.material.R$id: int wrap_content +cyanogenmod.themes.ThemeChangeRequest: int getNumChangesRequested() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_srcCompat +com.turingtechnologies.materialscrollbar.Handle: void setBackgroundColor(int) +androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +android.didikee.donate.R$style: int Widget_AppCompat_SeekBar_Discrete +androidx.appcompat.resources.R$layout: int notification_template_custom_big +james.adaptiveicon.R$id: int search_plate +com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$attr: int srcCompat +io.reactivex.Observable: io.reactivex.Observable timeInterval(java.util.concurrent.TimeUnit) +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents +com.turingtechnologies.materialscrollbar.R$attr: int displayOptions +wangdaye.com.geometricweather.R$styleable: int[] MaterialTextAppearance +cyanogenmod.themes.ThemeChangeRequest$Builder: java.util.Map mThemeComponents +com.turingtechnologies.materialscrollbar.R$id: int text2 +com.google.android.material.R$attr: int state_collapsible +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX getTemperature() +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_body_1_material +com.jaredrummler.android.colorpicker.R$color: int material_grey_850 +wangdaye.com.geometricweather.background.polling.work.worker.AsyncWorker: AsyncWorker(android.content.Context,androidx.work.WorkerParameters) +com.amap.api.location.AMapLocation: int LOCATION_TYPE_OFFLINE +androidx.appcompat.R$styleable: int AppCompatTheme_popupMenuStyle +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onSuccess(java.lang.Object) +wangdaye.com.geometricweather.R$color: int material_timepicker_modebutton_tint +androidx.legacy.coreutils.R$styleable: int GradientColor_android_startY +james.adaptiveicon.R$attr: int homeAsUpIndicator +cyanogenmod.app.Profile$ProfileTrigger: int mState +cyanogenmod.weatherservice.ServiceRequestResult$Builder: cyanogenmod.weatherservice.ServiceRequestResult build() +androidx.constraintlayout.widget.R$styleable: int Constraint_android_maxWidth +androidx.appcompat.R$attr: int backgroundTint +wangdaye.com.geometricweather.settings.fragments.UnitSettingsFragment: UnitSettingsFragment() +james.adaptiveicon.R$attr: int buttonBarButtonStyle +okhttp3.internal.ws.WebSocketReader: long frameLength +james.adaptiveicon.R$attr: int toolbarStyle +com.google.android.material.R$styleable: int KeyTimeCycle_android_translationX +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +androidx.loader.R$drawable: int notification_action_background +wangdaye.com.geometricweather.main.dialogs.BackgroundLocationDialog +wangdaye.com.geometricweather.R$attr: int boxStrokeColor +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean,int,int) +androidx.appcompat.widget.ActionMenuView: android.view.Menu getMenu() +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$302(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +com.google.android.gms.common.internal.zag: zag(com.google.android.gms.common.api.internal.OnConnectionFailedListener) +wangdaye.com.geometricweather.R$id: int edit_query +wangdaye.com.geometricweather.R$styleable: int Preference_android_enabled +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) +com.google.android.material.R$attr: int mock_showLabel +com.jaredrummler.android.colorpicker.R$string: int abc_menu_shift_shortcut_label +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +james.adaptiveicon.R$attr: int listPreferredItemHeight +com.google.android.material.R$id: int test_checkbox_android_button_tint +androidx.customview.R$id: int text2 +androidx.preference.R$attr: int persistent +cyanogenmod.library.R$id +okhttp3.internal.http.RetryAndFollowUpInterceptor: void setCallStackTrace(java.lang.Object) +androidx.hilt.work.R$id: int tag_accessibility_clickable_spans +okhttp3.CacheControl: okhttp3.CacheControl FORCE_CACHE +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo build() +androidx.hilt.lifecycle.R$styleable: int[] ColorStateListItem +cyanogenmod.externalviews.IExternalViewProvider: void onDetach() +androidx.lifecycle.Transformations: androidx.lifecycle.LiveData distinctUntilChanged(androidx.lifecycle.LiveData) +okhttp3.internal.ws.WebSocketProtocol: void toggleMask(okio.Buffer$UnsafeCursor,byte[]) +com.google.android.material.R$attr: int fastScrollHorizontalTrackDrawable +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Time +wangdaye.com.geometricweather.R$string: int settings_notification_hide_icon_on +com.amap.api.location.AMapLocationClientOption: boolean p +cyanogenmod.app.Profile: cyanogenmod.profiles.AirplaneModeSettings getAirplaneMode() +androidx.loader.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: int phenomenonId +wangdaye.com.geometricweather.R$dimen: int current_weather_icon_container_size +okhttp3.HttpUrl: java.lang.String FORM_ENCODE_SET +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +com.google.android.material.R$styleable: int[] SearchView +androidx.constraintlayout.widget.R$drawable: int btn_radio_off_to_on_mtrl_animation +okhttp3.internal.http2.Http2Connection$2 +androidx.appcompat.R$id: int accessibility_custom_action_3 +com.turingtechnologies.materialscrollbar.Indicator: void setRTL(boolean) +com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_max +com.google.gson.stream.JsonScope: JsonScope() +androidx.activity.R$id: int accessibility_custom_action_0 +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() +com.google.android.material.R$id: int action_bar_spinner +androidx.coordinatorlayout.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.Long getId() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: void setX(java.lang.String) +androidx.preference.R$styleable: int PreferenceTheme_editTextPreferenceStyle +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display3 +com.google.android.material.R$styleable: int Constraint_visibilityMode +androidx.work.NetworkType: androidx.work.NetworkType NOT_ROAMING +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_backgroundTintMode +okhttp3.internal.http2.Settings: int getHeaderTableSize() +androidx.appcompat.widget.Toolbar: android.content.Context getPopupContext() +wangdaye.com.geometricweather.R$styleable: int Preference_allowDividerBelow +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List maxCountItems +com.google.android.material.R$styleable: int[] MockView +androidx.constraintlayout.widget.R$styleable: int ActionBar_itemPadding +androidx.hilt.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_background +wangdaye.com.geometricweather.R$layout: int activity_live_wallpaper_config +androidx.recyclerview.R$styleable +james.adaptiveicon.R$drawable: int abc_ic_voice_search_api_material +androidx.constraintlayout.widget.R$attr: int height +cyanogenmod.app.ProfileManager: void removeNotificationGroup(android.app.NotificationGroup) +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderPackage +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean disposed +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_type +com.jaredrummler.android.colorpicker.R$dimen: int abc_control_padding_material +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getCo() +androidx.preference.R$drawable: int abc_textfield_search_material +com.google.android.gms.common.SignInButton: void setColorScheme(int) +android.didikee.donate.R$styleable: int SearchView_suggestionRowLayout +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State STARTED +com.google.android.material.card.MaterialCardView: int getCheckedIconSize() +wangdaye.com.geometricweather.R$layout: int item_weather_daily_air +com.google.gson.stream.JsonReader: int doPeek() +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableLeftCompat +com.google.android.material.R$id: int visible +wangdaye.com.geometricweather.R$styleable: int SearchView_android_maxWidth +okio.HashingSink: void write(okio.Buffer,long) +androidx.coordinatorlayout.R$dimen: int notification_large_icon_width +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_auto_adjust_section_mark +okhttp3.internal.http.HttpHeaders: int skipUntil(java.lang.String,int,java.lang.String) +com.google.android.material.R$attr: int titleTextColor +androidx.constraintlayout.widget.R$attr: int triggerReceiver +androidx.appcompat.R$id: int info +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean,int) +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadClose(int,java.lang.String) +androidx.constraintlayout.widget.R$attr: int layout_constraintEnd_toEndOf +okhttp3.internal.http2.Http2Connection$PingRunnable: void execute() +wangdaye.com.geometricweather.R$dimen: int hint_alpha_material_light +androidx.preference.MultiSelectListPreference: MultiSelectListPreference(android.content.Context,android.util.AttributeSet) +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.AbstractDaoSession getSession() +com.google.android.material.R$styleable: int MaterialCalendar_rangeFillColor +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_showDividers +androidx.preference.R$styleable: int RecyclerView_spanCount +wangdaye.com.geometricweather.R$dimen: int abc_text_size_medium_material +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitation +androidx.customview.R$drawable: int notification_bg +retrofit2.ParameterHandler$Path: java.lang.reflect.Method method +com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode valueOf(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_3 +okhttp3.internal.http2.Http2Connection$Builder: okio.BufferedSink sink +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea +okio.ForwardingTimeout: okio.Timeout clearTimeout() +androidx.fragment.R$dimen: int compat_button_padding_vertical_material +com.amap.api.location.AMapLocation: int LOCATION_TYPE_AMAP +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_default_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_maxImageSize +wangdaye.com.geometricweather.R$styleable: int MenuItem_actionLayout +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String cityId +wangdaye.com.geometricweather.R$id: int baseline +wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout +com.google.android.material.R$styleable: int ColorStateListItem_android_alpha +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_fontFamily +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: ObservablePublishSelector$TargetObserver(io.reactivex.Observer) +com.google.android.material.R$id: int right_side +com.xw.repo.bubbleseekbar.R$dimen: int abc_seekbar_track_background_height_material +com.google.android.material.R$style: int Widget_AppCompat_RatingBar_Small +androidx.core.R$drawable: int notification_bg_normal +com.jaredrummler.android.colorpicker.R$id: int action_container +androidx.work.R$attr: int alpha +cyanogenmod.app.Profile: int getTriggerState(int,java.lang.String) +wangdaye.com.geometricweather.background.polling.work.worker.TomorrowForecastUpdateWorker +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List timelaps +wangdaye.com.geometricweather.R$attr: int pivotAnchor +androidx.viewpager2.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: AccuAlertResult$Color() +com.google.android.material.R$dimen: int design_snackbar_padding_vertical_2lines +com.google.android.material.imageview.ShapeableImageView: float getStrokeWidth() +androidx.appcompat.widget.Toolbar: void setCollapseContentDescription(int) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: java.lang.String Unit +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long serialVersionUID +android.didikee.donate.R$dimen: int hint_alpha_material_light +james.adaptiveicon.R$attr: int actionBarTabBarStyle +com.google.android.material.R$attr: int layout_constraintVertical_bias +cyanogenmod.app.LiveLockScreenInfo$Builder: android.content.ComponentName mComponent +androidx.loader.R$layout +retrofit2.Retrofit: retrofit2.Retrofit$Builder newBuilder() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setTime(long) +com.google.android.material.R$dimen: int mtrl_btn_letter_spacing +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardElevation +okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor setLevel(okhttp3.logging.HttpLoggingInterceptor$Level) +wangdaye.com.geometricweather.R$string: int key_widget_day +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer +com.turingtechnologies.materialscrollbar.R$id +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int UVIndex +cyanogenmod.app.Profile$1: cyanogenmod.app.Profile[] newArray(int) +androidx.lifecycle.ViewModel: java.util.Map mBagOfTags +androidx.loader.R$color: int notification_icon_bg_color +androidx.viewpager.widget.ViewPager: int getOffscreenPageLimit() +okhttp3.internal.http2.Huffman: int[] CODES +com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver +james.adaptiveicon.R$color: int bright_foreground_material_light +com.amap.api.fence.GeoFenceManagerBase: java.util.List getAllGeoFence() +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context) +com.google.android.material.R$styleable: int AppCompatTheme_windowFixedHeightMajor +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$100() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +androidx.hilt.work.R$drawable: int notification_template_icon_bg +androidx.loader.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: int unitArrayIndex +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +androidx.customview.R$attr: int fontProviderQuery +androidx.constraintlayout.widget.R$drawable: int abc_textfield_activated_mtrl_alpha +androidx.lifecycle.ClassesInfoCache$CallbackInfo: void invokeCallbacks(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_minWidth +com.google.android.material.slider.RangeSlider: void setThumbRadiusResource(int) +com.jaredrummler.android.colorpicker.R$attr: int selectableItemBackgroundBorderless +wangdaye.com.geometricweather.background.receiver.widget.WidgetMultiCityProvider +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_WIND +wangdaye.com.geometricweather.R$attr: int title +com.jaredrummler.android.colorpicker.R$id: int custom +james.adaptiveicon.R$dimen: int abc_dropdownitem_text_padding_right +okhttp3.Cache: int writeSuccessCount() +okhttp3.ResponseBody$1 +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String direction +okio.AsyncTimeout: java.io.IOException newTimeoutException(java.io.IOException) +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_titleTextStyle +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias +androidx.constraintlayout.widget.R$attr: int colorError +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_corner_radius_medium +james.adaptiveicon.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +com.amap.api.location.AMapLocationClient: com.amap.api.location.LocationManagerBase b +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String getUnit() +androidx.lifecycle.extensions.R$attr: int ttcIndex +androidx.constraintlayout.widget.R$attr: int logoDescription +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.preference.R$styleable: int PopupWindowBackgroundState_state_above_anchor +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath +james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: java.lang.String Code +wangdaye.com.geometricweather.search.Hilt_SearchActivity: Hilt_SearchActivity() +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean getLiveLockScreenEnabled() +androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog +androidx.constraintlayout.widget.R$attr: int gapBetweenBars +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver[] EMPTY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: void setFrom(java.lang.String) +wangdaye.com.geometricweather.R$string: int tag_wind okio.Okio$2: void close() -androidx.appcompat.view.menu.ListMenuItemView: void setTitle(java.lang.CharSequence) -com.google.android.material.R$attr: int goIcon -com.google.android.material.R$attr: int mock_showDiagonals -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onComplete() -okhttp3.Request$Builder: okhttp3.Request$Builder tag(java.lang.Class,java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionLayout -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitation() -androidx.cardview.R$styleable: int CardView_android_minWidth -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle -androidx.activity.ComponentActivity$2 -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult -io.reactivex.Observable: io.reactivex.Observable concatMap(io.reactivex.functions.Function) -io.reactivex.internal.observers.BasicIntQueueDisposable: int requestFusion(int) -androidx.recyclerview.R$styleable: int GradientColor_android_endX -com.xw.repo.bubbleseekbar.R$attr: int actionModeBackground -androidx.fragment.R$id: int text -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker -androidx.constraintlayout.widget.R$layout: int abc_screen_simple_overlay_action_mode -com.github.rahatarmanahmed.cpv.CircularProgressView$1 -android.didikee.donate.R$id: int default_activity_button -wangdaye.com.geometricweather.R$string: int feedback_ignore_battery_optimizations_title -androidx.hilt.work.R$id: int icon_group -androidx.preference.PreferenceGroup: PreferenceGroup(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_HEAVY -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose[] values() -cyanogenmod.app.CMContextConstants$Features: java.lang.String APP_SUGGEST -okio.ForwardingSource: java.lang.String toString() -wangdaye.com.geometricweather.R$color: int mtrl_popupmenu_overlay_color -androidx.appcompat.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -androidx.work.impl.workers.ConstraintTrackingWorker: ConstraintTrackingWorker(android.content.Context,androidx.work.WorkerParameters) -com.google.android.material.R$styleable: int ConstraintSet_flow_lastHorizontalStyle -android.didikee.donate.R$layout: int abc_alert_dialog_title_material -androidx.viewpager2.R$id: int action_image -com.jaredrummler.android.colorpicker.R$attr: int actionBarStyle -com.amap.api.location.AMapLocationQualityReport: int c -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_drawPath -android.didikee.donate.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int lastIndex -okhttp3.internal.ws.WebSocketReader: boolean isFinalFrame -androidx.constraintlayout.widget.R$attr: int motionProgress -wangdaye.com.geometricweather.R$styleable: int[] MaterialButton -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: java.lang.String toString() -androidx.preference.R$style: int Widget_AppCompat_DropDownItem_Spinner +okhttp3.internal.http.HttpHeaders: int skipAll(okio.Buffer,byte) +okhttp3.TlsVersion: java.lang.String javaName() +okio.ByteString: int hashCode +com.google.android.material.R$attr: int title +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float ParticulateMatter10 +wangdaye.com.geometricweather.R$string: int precipitation_duration +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_color +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State valueOf(java.lang.String) +androidx.appcompat.resources.R$id: int tag_screen_reader_focusable +io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit) +com.google.android.material.R$attr: int switchStyle +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1 +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType STRING_TYPE +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonStyleSmall +androidx.hilt.work.R$styleable +io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_PROFILES +io.reactivex.internal.subscriptions.BasicQueueSubscription: void cancel() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 +com.google.android.material.R$id: int parent +io.reactivex.internal.schedulers.ScheduledDirectTask: long serialVersionUID +androidx.hilt.R$anim: int fragment_close_exit +com.google.android.material.R$styleable: int AppCompatTheme_selectableItemBackground +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackActiveTintList() +okio.RealBufferedSource: long indexOf(okio.ByteString) +androidx.vectordrawable.animated.R$integer: R$integer() +com.google.android.material.R$style: int Widget_AppCompat_ActionBar +com.google.gson.JsonParseException: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_switchTextOff +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitationDuration() +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_headerBackground +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Light +okhttp3.internal.http2.Http2Codec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_gradientRadius +androidx.preference.R$attr: int suggestionRowLayout +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_2G3G4G +com.google.android.material.R$attr: int textAppearanceSearchResultSubtitle +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: java.util.List getSuggestions(android.content.Intent) +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String originUrl +cyanogenmod.providers.CMSettings$Global: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) +com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_defaultQueryHint +com.google.android.material.R$string: int material_minute_selection +android.didikee.donate.R$string: int search_menu_title +androidx.appcompat.widget.ActionBarOverlayLayout: void setOverlayMode(boolean) +wangdaye.com.geometricweather.R$string: int feedback_collect_failed +retrofit2.OkHttpCall: okhttp3.Request request() +wangdaye.com.geometricweather.R$attr: int actionBarSize +com.google.android.material.R$attr: int pathMotionArc +okhttp3.ConnectionSpec$Builder: java.lang.String[] tlsVersions +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.R$array: int weather_source_voices +androidx.recyclerview.R$id: int accessibility_custom_action_3 +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_onClick +com.xw.repo.bubbleseekbar.R$style: int Platform_Widget_AppCompat_Spinner +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_toTopOf +com.xw.repo.bubbleseekbar.R$drawable: int abc_popup_background_mtrl_mult +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Body2 +androidx.preference.R$style: int Base_Theme_AppCompat_DialogWhenLarge +retrofit2.RequestBuilder: void addPart(okhttp3.Headers,okhttp3.RequestBody) +androidx.constraintlayout.widget.R$style: int Base_DialogWindowTitleBackground_AppCompat +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar +wangdaye.com.geometricweather.R$animator: int weather_thunder_1 +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_dark +com.amap.api.fence.GeoFence: java.util.List h +com.google.android.material.R$attr: int boxStrokeColor +androidx.constraintlayout.widget.R$id: int expanded_menu +androidx.work.R$dimen: int notification_media_narrow_margin +androidx.preference.R$id: int action_bar_root +androidx.preference.R$styleable: int ActionBar_popupTheme +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int CloudCover +wangdaye.com.geometricweather.R$id: int peekHeight +cyanogenmod.providers.CMSettings$Secure: java.lang.String BUTTON_BACKLIGHT_TIMEOUT +wangdaye.com.geometricweather.R$color: int mtrl_card_view_foreground +wangdaye.com.geometricweather.R$layout: int item_about_title +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Subhead +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customStringValue +androidx.constraintlayout.widget.R$attr: int dropdownListPreferredItemHeight +wangdaye.com.geometricweather.R$id: int widget_week_weather +wangdaye.com.geometricweather.R$style: int TestStyleWithLineHeightAppearance +androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean isEntityUpdateable() +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List hourlyForecast +com.google.android.material.R$styleable: int Layout_android_layout_marginStart +com.jaredrummler.android.colorpicker.R$attr: int actionModeFindDrawable +cyanogenmod.hardware.CMHardwareManager: int getArrayValue(int[],int,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: AccuCurrentResult$Ceiling() +wangdaye.com.geometricweather.R$attr: int controlBackground +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit +okhttp3.OkHttpClient$1: void put(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) +androidx.preference.R$styleable: int[] PreferenceFragment +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitationProbability() +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_constantSize +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindDircStart(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_toTopOf +wangdaye.com.geometricweather.R$id: int parentPanel +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +androidx.appcompat.R$attr: int drawableTintMode +com.turingtechnologies.materialscrollbar.R$attr: int boxBackgroundColor +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents +androidx.vectordrawable.animated.R$id: int right_side +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: double Value +cyanogenmod.app.StatusBarPanelCustomTile: int getUid() +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_iconTint +com.google.android.material.R$id: int accessibility_custom_action_29 +okhttp3.internal.platform.Jdk9Platform +com.jaredrummler.android.colorpicker.R$attr: int windowActionModeOverlay +retrofit2.http.QueryMap: boolean encoded() +wangdaye.com.geometricweather.R$drawable: int ic_plus +androidx.hilt.lifecycle.R$attr: int fontProviderAuthority +android.didikee.donate.R$attr: int paddingEnd +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_130 +com.xw.repo.bubbleseekbar.R$dimen: int hint_alpha_material_light +okhttp3.internal.http2.Http2Stream: boolean isLocallyInitiated() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Connection$ReaderRunnable readerRunnable +androidx.lifecycle.ProcessLifecycleOwner: long TIMEOUT_MS +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onTimeoutError(long,java.lang.Throwable) +com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_ListPopupWindow +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum() +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: void run() +androidx.loader.content.Loader: void unregisterListener(androidx.loader.content.Loader$OnLoadCompleteListener) +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startY com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_anchor -okhttp3.Call: void enqueue(okhttp3.Callback) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours Past9Hours -com.turingtechnologies.materialscrollbar.R$attr: int fontFamily -com.google.android.material.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -okhttp3.internal.connection.RouteSelector -com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_weight -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarStyle -android.didikee.donate.R$styleable: int[] View -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight -com.google.android.material.R$styleable: int NavigationView_itemShapeInsetEnd -james.adaptiveicon.R$anim: R$anim() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textColorSearchUrl -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Time -com.google.android.material.R$color: int material_slider_halo_color -com.google.gson.stream.JsonReader: int peekKeyword() -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -androidx.preference.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -androidx.swiperefreshlayout.R$drawable: int notification_template_icon_bg -io.reactivex.internal.util.ArrayListSupplier: java.util.List apply(java.lang.Object) -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean isCancelled() -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginTop -com.google.android.gms.common.server.response.FastSafeParcelableJsonResponse -com.xw.repo.bubbleseekbar.R$id: int line1 -james.adaptiveicon.R$drawable: int abc_list_selector_disabled_holo_dark -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onComplete() -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_night_2 -io.reactivex.Observable: io.reactivex.Observable flatMapIterable(io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -james.adaptiveicon.R$color: int material_blue_grey_950 -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: androidx.lifecycle.LifecycleOwner mLifecycle -androidx.work.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String tempMin -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_icon_btn_padding_left -wangdaye.com.geometricweather.R$color: int material_on_background_emphasis_high_type -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_verticalDivider -androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_to_on_mtrl_015 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindDirection -wangdaye.com.geometricweather.R$id: int material_clock_face -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_share_mtrl_alpha -okhttp3.FormBody: FormBody(java.util.List,java.util.List) -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_keyline -cyanogenmod.app.ICMTelephonyManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -io.reactivex.internal.util.EmptyComponent: org.reactivestreams.Subscriber asSubscriber() -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: AccuAlertResult$Description() -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_pixel -androidx.recyclerview.R$attr: int fontProviderPackage +com.turingtechnologies.materialscrollbar.R$dimen: int abc_select_dialog_padding_start_material +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_59 +wangdaye.com.geometricweather.R$attr: int order +com.xw.repo.bubbleseekbar.R$anim: int abc_popup_enter +com.turingtechnologies.materialscrollbar.R$attr: int tooltipFrameBackground +com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_disable_only_material_dark +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarSize +cyanogenmod.weather.WeatherInfo: int mWindSpeedUnit +okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman INSTANCE +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display3 +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int INTERRUPTING +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +androidx.work.R$id: int forever +androidx.recyclerview.R$id: int accessibility_custom_action_12 +androidx.appcompat.resources.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$array: int widget_styles +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer wetBulbTemperature +com.google.android.material.R$id: int uniform +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_checkboxStyle +com.amap.api.location.UmidtokenInfo: void setUmidtoken(android.content.Context,java.lang.String) +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub +com.turingtechnologies.materialscrollbar.R$attr: int imageButtonStyle +io.reactivex.Observable: java.lang.Iterable blockingIterable(int) +com.google.android.material.R$styleable: int FloatingActionButton_shapeAppearance +wangdaye.com.geometricweather.R$attr: int counterOverflowTextAppearance +androidx.appcompat.R$id: int tag_unhandled_key_listeners +com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_checkbox +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.R$drawable: int abc_btn_default_mtrl_shape +io.reactivex.internal.subscriptions.EmptySubscription: void request(long) +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView +android.didikee.donate.R$color: int dim_foreground_material_dark +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Subhead +james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay night() +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIMAX +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int RUNNING +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Counter_Overflow +io.reactivex.Observable: io.reactivex.Observable concatMapIterable(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$layout: int notification_template_part_chronometer +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver +com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_square +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function,boolean,int) +cyanogenmod.providers.CMSettings$1: CMSettings$1() +com.google.android.material.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode +okhttp3.logging.LoggingEventListener$Factory: LoggingEventListener$Factory() +com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_borderColor +com.turingtechnologies.materialscrollbar.R$id: int titleDividerNoCustom +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_height +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: java.lang.Object[] row +com.google.android.material.internal.NavigationMenuItemView: void setTitle(java.lang.CharSequence) +androidx.coordinatorlayout.R$id: int action_container +android.support.v4.os.IResultReceiver$Stub: IResultReceiver$Stub() +com.google.android.material.R$style: int Widget_MaterialComponents_Button_Icon +com.google.android.material.R$styleable: int ViewBackgroundHelper_backgroundTint +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: long serialVersionUID +androidx.appcompat.R$styleable: int ActionBarLayout_android_layout_gravity +retrofit2.http.HEAD: java.lang.String value() +androidx.constraintlayout.widget.R$drawable: int abc_dialog_material_background +com.google.android.material.R$attr: int chipMinHeight +com.xw.repo.bubbleseekbar.R$attr: int actionBarTheme +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyleIndicator okhttp3.internal.http2.Hpack$Writer: int SETTINGS_HEADER_TABLE_SIZE_LIMIT -android.didikee.donate.R$attr: int windowNoTitle -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Bridge -androidx.constraintlayout.widget.R$drawable: int abc_control_background_material -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int[] Slider -androidx.appcompat.R$dimen: int abc_action_bar_stacked_tab_max_width -com.amap.api.location.AMapLocationQualityReport: java.lang.Object clone() -androidx.constraintlayout.motion.widget.MotionLayout: int getEndState() -com.turingtechnologies.materialscrollbar.R$color: int cardview_light_background -androidx.transition.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String img -com.google.android.material.R$styleable: int ChipGroup_singleSelection -com.jaredrummler.android.colorpicker.R$attr: int colorControlActivated -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_unregisterChangeListener -com.google.android.material.R$styleable: int AppCompatTheme_actionBarItemBackground -androidx.preference.R$dimen: int abc_button_inset_horizontal_material -com.amap.api.location.DPoint: void setLatitude(double) -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_scrollMode -com.xw.repo.bubbleseekbar.R$layout: int abc_screen_simple_overlay_action_mode -wangdaye.com.geometricweather.R$string: int wind_direction -com.jaredrummler.android.colorpicker.R$styleable: int Preference_shouldDisableView -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.R$color: int cardview_dark_background -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String content -james.adaptiveicon.R$attr: int colorPrimaryDark -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -android.didikee.donate.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: int phenomenonId -wangdaye.com.geometricweather.R$attr: int colorOnError -james.adaptiveicon.R$attr: int colorBackgroundFloating -com.google.android.material.R$id: int parallax -android.didikee.donate.R$id: int right_icon -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean cancelled -okio.Options: int[] trie -androidx.fragment.R$attr: int fontStyle -com.google.android.material.R$attr: int badgeTextColor -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_width_minor -com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog -james.adaptiveicon.R$attr: int actionViewClass -wangdaye.com.geometricweather.R$dimen: int mtrl_fab_elevation -com.jaredrummler.android.colorpicker.ColorPickerView: void setBorderColor(int) -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.turingtechnologies.materialscrollbar.R$id: int custom -wangdaye.com.geometricweather.R$style: int activity_create_widget_done_button -androidx.lifecycle.DefaultLifecycleObserver: void onPause(androidx.lifecycle.LifecycleOwner) -okhttp3.Challenge: okhttp3.Challenge withCharset(java.nio.charset.Charset) -androidx.constraintlayout.utils.widget.ImageFilterView: float getCrossfade() -wangdaye.com.geometricweather.R$style: int Base_V23_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_trendRecyclerView -com.google.android.material.R$id: int mtrl_calendar_main_pane -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Dialog -androidx.vectordrawable.R$styleable: int FontFamilyFont_font -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_logoDescription -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String j -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setColor(boolean) -androidx.preference.R$attr: int fastScrollEnabled -com.google.android.material.datepicker.MaterialDatePicker -androidx.lifecycle.DefaultLifecycleObserver: void onCreate(androidx.lifecycle.LifecycleOwner) -com.amap.api.location.CoordinateConverter: CoordinateConverter(android.content.Context) -androidx.core.R$dimen -wangdaye.com.geometricweather.R$color: int mtrl_fab_bg_color_selector -androidx.constraintlayout.widget.Guideline: void setGuidelinePercent(float) -okhttp3.internal.http2.Http2: byte FLAG_END_STREAM -com.google.android.material.R$attr: int autoSizeMaxTextSize -com.jaredrummler.android.colorpicker.ColorPreferenceCompat: ColorPreferenceCompat(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$color: int design_fab_stroke_end_outer_color -com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_layout -com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_old -wangdaye.com.geometricweather.R$string: int settings_title_list_animation_switch -androidx.appcompat.R$layout: int abc_list_menu_item_icon -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundTint -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String getLanguageName(android.content.Context) -com.google.android.material.R$dimen: int mtrl_btn_text_btn_icon_padding -retrofit2.Response: okhttp3.ResponseBody errorBody -androidx.constraintlayout.widget.R$styleable: int Transition_android_id -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: long serialVersionUID -androidx.preference.PreferenceFragmentCompat -com.baidu.location.e.h$c: com.baidu.location.e.h$c c -androidx.appcompat.widget.AppCompatImageButton: void setSupportImageTintList(android.content.res.ColorStateList) -androidx.appcompat.resources.R$id: int notification_background -com.google.android.material.R$styleable: int MenuItem_android_checkable -cyanogenmod.app.CustomTileListenerService: void removeCustomTile(java.lang.String,java.lang.String,int) -okio.Buffer: long completeSegmentByteCount() -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_buttonIconDimen -wangdaye.com.geometricweather.R$string: int v7_preference_on -com.google.android.material.R$styleable: int KeyCycle_android_scaleX -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 -com.google.android.material.slider.RangeSlider: int getHaloRadius() -com.google.android.material.R$id: int mtrl_picker_header -androidx.viewpager2.widget.ViewPager2 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pressure -androidx.preference.R$attr: int actionModeCutDrawable -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: BasicIntQueueSubscription() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date getFrom() -com.jaredrummler.android.colorpicker.R$id: int checkbox -wangdaye.com.geometricweather.R$layout: int cpv_dialog_color_picker -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean cancelled -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date moonsetTime -com.xw.repo.bubbleseekbar.R$color: int material_grey_800 -com.xw.repo.bubbleseekbar.R$id: int multiply -com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Light -androidx.appcompat.widget.AppCompatSpinner$SavedState: android.os.Parcelable$Creator CREATOR -androidx.appcompat.R$style: int Widget_AppCompat_EditText -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String cityId -com.google.gson.stream.JsonReader: java.lang.String nextUnquotedValue() -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String getEffectiveTldPlusOne(java.lang.String) -androidx.cardview.R$attr: int contentPadding -android.didikee.donate.R$attr: int windowActionBarOverlay -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_tooltipForegroundColor -cyanogenmod.app.ThemeVersion: int CM11 -james.adaptiveicon.R$attr: int buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_large_material -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable -androidx.vectordrawable.R$attr: int fontProviderFetchStrategy -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginStart -wangdaye.com.geometricweather.R$attr: int materialButtonOutlinedStyle -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -android.didikee.donate.R$color: int notification_action_color_filter -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Body1 -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar_Small -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_48dp -com.google.android.material.R$dimen: int mtrl_extended_fab_min_height -okhttp3.CookieJar: okhttp3.CookieJar NO_COOKIES -cyanogenmod.app.Profile: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String getProviderId() -androidx.vectordrawable.R$styleable: int GradientColor_android_endY -org.greenrobot.greendao.AbstractDao: void refresh(java.lang.Object) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_text_input_padding_top -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -com.google.gson.stream.JsonReader: java.io.Reader in -retrofit2.adapter.rxjava2.CallEnqueueObservable: void subscribeActual(io.reactivex.Observer) -com.google.android.material.slider.BaseSlider: int getThumbRadius() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_primary_mtrl_alpha -okhttp3.CacheControl$Builder: okhttp3.CacheControl build() -wangdaye.com.geometricweather.R$layout: int container_main_hourly_trend_card -androidx.constraintlayout.widget.R$attr: int searchHintIcon -com.jaredrummler.android.colorpicker.R$attr: int contentInsetLeft -androidx.fragment.R$layout: int notification_action_tombstone -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.IWeatherServiceProviderChangeListener mProviderChangeListener -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layoutDescription -wangdaye.com.geometricweather.R$id: int cpv_color_picker_view -androidx.fragment.R$anim: int fragment_fast_out_extra_slow_in -androidx.appcompat.R$attr: int contentInsetLeft -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -androidx.appcompat.R$styleable: int Toolbar_contentInsetRight -okhttp3.internal.http2.Http2Connection: void pushHeadersLater(int,java.util.List,boolean) -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: float getPressure(float) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: BaiduIPLocationService_Factory(javax.inject.Provider,javax.inject.Provider) -wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchRegionId -okhttp3.CertificatePinner: okhttp3.CertificatePinner withCertificateChainCleaner(okhttp3.internal.tls.CertificateChainCleaner) -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getRealFeelShaderTemperature() -com.jaredrummler.android.colorpicker.R$styleable: int[] PopupWindow -androidx.preference.R$attr: int indeterminateProgressStyle -androidx.viewpager2.R$styleable: int RecyclerView_android_orientation -wangdaye.com.geometricweather.R$style: int Base_V22_Theme_AppCompat -com.google.android.material.R$attr: int elevationOverlayEnabled -com.google.gson.JsonIOException: long serialVersionUID -com.google.android.material.R$dimen: int mtrl_slider_label_radius -okhttp3.internal.http.HttpHeaders: boolean varyMatches(okhttp3.Response,okhttp3.Headers,okhttp3.Request) -cyanogenmod.power.PerformanceManager: java.lang.String POWER_PROFILE_CHANGED -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setStreet(java.lang.String) -androidx.appcompat.resources.R$string: R$string() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback -androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_UnelevatedButton -wangdaye.com.geometricweather.R$style: int Platform_Widget_AppCompat_Spinner -okio.Buffer$UnsafeCursor: byte[] data -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: void setFrom(java.lang.String) -cyanogenmod.weather.CMWeatherManager: java.util.Map access$300(cyanogenmod.weather.CMWeatherManager) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onComplete() -wangdaye.com.geometricweather.R$attr: int thumbTextPadding -com.xw.repo.bubbleseekbar.R$attr: int logoDescription -androidx.hilt.work.R$id: R$id() -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstHorizontalBias -com.turingtechnologies.materialscrollbar.R$drawable: int navigation_empty_icon -com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat_Dark -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult -android.didikee.donate.R$id: int notification_background -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_LargeTouch -androidx.drawerlayout.R$styleable: int GradientColor_android_type -okhttp3.internal.http2.Http2Stream: void receiveFin() -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: long serialVersionUID -cyanogenmod.providers.CMSettings$System: java.lang.String TOUCHSCREEN_GESTURE_HAPTIC_FEEDBACK -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animAutostart -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderCerts -androidx.appcompat.R$id: int customPanel -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind Wind -wangdaye.com.geometricweather.R$anim: int x2_decelerate_interpolator -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks access$700(cyanogenmod.externalviews.KeyguardExternalView) -androidx.appcompat.R$attr: int ratingBarStyleSmall -wangdaye.com.geometricweather.R$drawable: int widget_day_week -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.Observer) -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality airQuality -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer snowHazard3h -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection -com.google.android.material.R$styleable: int[] KeyAttribute -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Source -wangdaye.com.geometricweather.R$drawable: int flag_de -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setRefreshing(boolean) -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver -androidx.coordinatorlayout.R$id: int accessibility_custom_action_22 -okhttp3.internal.io.FileSystem: okio.Sink sink(java.io.File) -com.google.android.material.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus -wangdaye.com.geometricweather.R$attr: int itemShapeInsetStart -com.google.android.material.R$styleable: int GradientColor_android_centerColor -android.didikee.donate.R$attr: int backgroundTint -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_typeface -androidx.preference.R$styleable: int TextAppearance_fontFamily -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onComplete() -com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_swipe_escape_max_velocity -com.google.android.material.R$styleable: int OnSwipe_touchAnchorId -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemPosition(int) -wangdaye.com.geometricweather.R$string: int feedback_interpret_background_notification_content -androidx.preference.R$style: int Theme_AppCompat_Dialog_Alert -androidx.constraintlayout.widget.R$attr: int listLayout -com.google.android.material.R$attr: int limitBoundsTo -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial Imperial -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: boolean isDisposed() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -androidx.appcompat.widget.Toolbar: void setCollapseContentDescription(java.lang.CharSequence) -androidx.preference.R$id: int accessibility_custom_action_23 -androidx.viewpager.R$string: R$string() -com.jaredrummler.android.colorpicker.R$id: int spacer -androidx.dynamicanimation.R$dimen: int notification_action_icon_size -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date getPublishDate() -androidx.vectordrawable.R$id: int right_side -androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogCenterButtons -com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage[] a -okio.Buffer: okio.BufferedSink emitCompleteSegments() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_min -com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_padding_vertical_material -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_PULSE -com.xw.repo.bubbleseekbar.R$attr: int layout_keyline -okhttp3.internal.http2.Http2Reader: void readConnectionPreface(okhttp3.internal.http2.Http2Reader$Handler) -wangdaye.com.geometricweather.R$string: int key_appearance -cyanogenmod.app.Profile: int mDozeMode -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.xw.repo.bubbleseekbar.R$attr: int colorControlNormal -androidx.hilt.R$id: int tag_accessibility_heading -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1 -com.google.android.material.R$style: int Widget_MaterialComponents_ChipGroup -wangdaye.com.geometricweather.R$string: int background_information -android.didikee.donate.R$styleable: int ViewStubCompat_android_inflatedId -com.turingtechnologies.materialscrollbar.R$color: int error_color_material_dark -androidx.preference.R$drawable: int abc_ic_clear_material -androidx.vectordrawable.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderTextAppearance -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$Event downEvent(androidx.lifecycle.Lifecycle$State) -io.reactivex.internal.util.EmptyComponent: void onNext(java.lang.Object) -androidx.hilt.R$styleable: int FragmentContainerView_android_tag -wangdaye.com.geometricweather.R$attr: int state_collapsed -com.google.android.material.R$styleable: int AppCompatTheme_seekBarStyle -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Medium_Inverse -com.google.android.material.R$attr: int shapeAppearanceOverlay -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_gravity -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_background -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust -com.google.android.material.R$string: int mtrl_picker_date_header_unselected -wangdaye.com.geometricweather.main.fragments.MainFragment -androidx.appcompat.resources.R$dimen: int notification_top_pad -james.adaptiveicon.R$styleable: int[] TextAppearance -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onNegativeCross -com.turingtechnologies.materialscrollbar.R$attr: int msb_hideDelayInMilliseconds -androidx.preference.R$styleable: int ActionMode_closeItemLayout -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: ExecutorScheduler$ExecutorWorker$BooleanRunnable(java.lang.Runnable) -com.google.android.material.R$id: int accessibility_custom_action_25 -androidx.preference.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -okhttp3.Cache$1: void trackResponse(okhttp3.internal.cache.CacheStrategy) -android.didikee.donate.R$attr: int logoDescription -androidx.loader.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: AccuLocationResult$Region() -wangdaye.com.geometricweather.R$drawable: int weather_thunder_2 -cyanogenmod.app.CMTelephonyManager: java.util.List getSubInformation() -androidx.appcompat.R$dimen: int hint_alpha_material_light -com.google.android.gms.common.server.converter.zaa -james.adaptiveicon.R$styleable: int[] DrawerArrowToggle -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean aqi -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX) -wangdaye.com.geometricweather.R$styleable: int[] ActionMode -androidx.preference.R$attr: int actionBarTabBarStyle -io.reactivex.internal.disposables.DisposableHelper: boolean validate(io.reactivex.disposables.Disposable,io.reactivex.disposables.Disposable) -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_21 -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.R$styleable: int PropertySet_visibilityMode -androidx.hilt.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierDirection -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_barLength -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: long serialVersionUID -androidx.core.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.main.dialogs.LocationPermissionStatementDialog: LocationPermissionStatementDialog() -androidx.hilt.R$styleable: int FragmentContainerView_android_name -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: double Value -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircle -androidx.fragment.app.BackStackRecord: void setOnStartPostponedListener(androidx.fragment.app.Fragment$OnStartEnterTransitionListener) -james.adaptiveicon.R$dimen: int notification_action_text_size -com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode[] values() -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderFetchStrategy -okio.Timeout: okio.Timeout deadlineNanoTime(long) -androidx.appcompat.R$style: int Widget_AppCompat_PopupMenu_Overflow -android.didikee.donate.R$attr: int paddingEnd -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onComplete() -com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColor(int) -cyanogenmod.os.Concierge: cyanogenmod.os.Concierge$ParcelInfo prepareParcel(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$attr: int contentInsetStartWithNavigation -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -wangdaye.com.geometricweather.R$dimen: int design_textinput_caption_translate_y -wangdaye.com.geometricweather.R$attr: int actionButtonStyle -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState valueOf(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String CountryCode -androidx.appcompat.R$styleable: int[] TextAppearance -com.google.android.material.R$attr: int statusBarForeground -okhttp3.internal.Util: java.net.InetAddress decodeIpv6(java.lang.String,int,int) -cyanogenmod.os.Build$CM_VERSION_CODES: int CANTALOUPE -cyanogenmod.providers.CMSettings$Secure: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String getUvIndex() -wangdaye.com.geometricweather.R$id: int action_text +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Title +okhttp3.internal.http.RealInterceptorChain: int calls +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setContentDescription(int) +com.google.android.material.R$styleable: int TabItem_android_icon +wangdaye.com.geometricweather.R$dimen: int design_navigation_item_horizontal_padding +com.turingtechnologies.materialscrollbar.R$styleable: int[] PopupWindowBackgroundState +org.greenrobot.greendao.AbstractDao: java.lang.Object load(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int SearchView_android_inputType +android.didikee.donate.R$anim: int abc_slide_in_top +androidx.constraintlayout.widget.R$attr: int defaultQueryHint +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int maxConcurrency +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator +android.didikee.donate.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +cyanogenmod.app.suggest.IAppSuggestManager$Stub: android.os.IBinder asBinder() +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_title +okhttp3.internal.annotations.EverythingIsNonNull +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver +androidx.work.BackoffPolicy: androidx.work.BackoffPolicy LINEAR +james.adaptiveicon.R$id: int radio +com.google.android.material.R$attr: int layout_constraintLeft_toRightOf +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitationDuration +androidx.work.impl.workers.ConstraintTrackingWorker: ConstraintTrackingWorker(android.content.Context,androidx.work.WorkerParameters) +com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getSupportImageTintMode() +com.google.android.material.transformation.TransformationChildCard +com.jaredrummler.android.colorpicker.R$integer +okhttp3.OkHttpClient$Builder: okhttp3.Dispatcher dispatcher +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge +androidx.constraintlayout.widget.R$styleable: int OnSwipe_nestedScrollFlags +cyanogenmod.weatherservice.WeatherProviderService: void onRequestCancelled(cyanogenmod.weatherservice.ServiceRequest) +com.google.android.material.R$styleable: int Constraint_android_minHeight +okhttp3.internal.tls.BasicTrustRootIndex +okhttp3.Request$Builder: okhttp3.HttpUrl url +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: io.reactivex.Scheduler scheduler +androidx.preference.R$id: int accessibility_custom_action_5 +com.turingtechnologies.materialscrollbar.R$attr: int showText +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature +android.didikee.donate.R$id: int default_activity_button +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItem +androidx.constraintlayout.widget.R$attr: int constraintSet +androidx.lifecycle.extensions.R$dimen: int compat_button_padding_horizontal_material +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_RECENT_BUTTON +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_transitionPathRotate +okhttp3.Dispatcher: void executed(okhttp3.RealCall) +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_DialogWhenLarge +okhttp3.internal.ws.RealWebSocket: java.util.Random random +io.reactivex.internal.schedulers.AbstractDirectTask +okhttp3.internal.Internal: java.net.Socket deduplicate(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void drainLoop() +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_bottomRecyclerView +androidx.preference.R$styleable: int CheckBoxPreference_android_summaryOff +wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchAnchorSide +com.google.android.material.R$dimen: int mtrl_extended_fab_disabled_translation_z +wangdaye.com.geometricweather.R$styleable: int TextAppearance_textAllCaps +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked +com.google.android.material.R$styleable: int MaterialButton_android_background +com.google.android.material.R$attr: int placeholder_emptyVisibility +androidx.preference.R$color: int secondary_text_disabled_material_dark +okhttp3.internal.http1.Http1Codec$ChunkedSink +org.greenrobot.greendao.DaoException +okhttp3.Cache$2: java.lang.Object next() +retrofit2.adapter.rxjava2.RxJava2CallAdapter +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float rain +androidx.lifecycle.Observer +androidx.preference.R$style: int Widget_AppCompat_TextView_SpinnerItem +wangdaye.com.geometricweather.R$attr: int cpv_maxProgress +james.adaptiveicon.R$attr: int textAppearanceListItem +androidx.viewpager2.R$styleable: int[] GradientColor +com.jaredrummler.android.colorpicker.R$dimen: int abc_list_item_padding_horizontal_material +com.google.android.material.R$styleable: int AppCompatTheme_windowFixedHeightMinor +androidx.appcompat.R$id: int blocking +com.turingtechnologies.materialscrollbar.R$drawable: int tooltip_frame_dark +com.google.android.material.tabs.TabLayout: void setTabGravity(int) +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_caption_material +james.adaptiveicon.R$drawable: int abc_ab_share_pack_mtrl_alpha +okhttp3.internal.connection.StreamAllocation: StreamAllocation(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.Call,okhttp3.EventListener,java.lang.Object) +android.didikee.donate.R$color: int abc_search_url_text_pressed +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService +wangdaye.com.geometricweather.R$drawable: int notif_temp_24 +androidx.vectordrawable.animated.R$drawable: int notification_template_icon_bg +androidx.constraintlayout.widget.R$dimen: int abc_seekbar_track_background_height_material +io.reactivex.Observable: io.reactivex.Observable using(java.util.concurrent.Callable,io.reactivex.functions.Function,io.reactivex.functions.Consumer) +androidx.work.R$id: int accessibility_custom_action_1 +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.background.receiver.widget.WidgetWeekProvider +androidx.preference.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +androidx.loader.R$id: int line3 +androidx.core.R$id: R$id() +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_bias +androidx.lifecycle.extensions.R$id: int tag_unhandled_key_listeners +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_behavior +com.xw.repo.bubbleseekbar.R$id: int search_badge +wangdaye.com.geometricweather.R$string: int visibility +androidx.appcompat.R$dimen: int abc_alert_dialog_button_dimen +com.jaredrummler.android.colorpicker.R$styleable: int[] PopupWindowBackgroundState +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX getAqi() +com.google.android.material.R$id: int none +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_l +androidx.constraintlayout.widget.R$id: int wrap_content +androidx.drawerlayout.R$style: int Widget_Compat_NotificationActionText +androidx.appcompat.R$drawable: int abc_btn_colored_material +james.adaptiveicon.R$styleable: R$styleable() +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: void onResponse(retrofit2.Call,retrofit2.Response) io.reactivex.internal.schedulers.ScheduledRunnable: int FUTURE_INDEX -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String getUnit() -james.adaptiveicon.R$attr: int paddingStart -androidx.hilt.lifecycle.R$anim: int fragment_open_enter -android.didikee.donate.R$drawable: int abc_textfield_default_mtrl_alpha -wangdaye.com.geometricweather.R$attr: int backgroundOverlayColorAlpha -retrofit2.Retrofit: java.util.List converterFactories() -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setAnimationMode(int) -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: android.graphics.Rect getWindowInsets() -androidx.preference.R$style: int TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property China -okhttp3.internal.cache.CacheStrategy$Factory: long receivedResponseMillis -androidx.dynamicanimation.R$dimen: int notification_subtext_size -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream pushStream(int,java.util.List,boolean) -androidx.appcompat.resources.R$color: int ripple_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableLeftCompat -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: long date -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderAuthority -androidx.appcompat.widget.AlertDialogLayout: AlertDialogLayout(android.content.Context,android.util.AttributeSet) -retrofit2.RequestBuilder: okhttp3.MediaType contentType -wangdaye.com.geometricweather.R$drawable: int notif_temp_124 -okhttp3.internal.Util$1: int compare(java.lang.Object,java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemMaxLines -wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_dark -james.adaptiveicon.R$id: int info -okhttp3.OkHttpClient: java.util.List networkInterceptors -androidx.lifecycle.ProcessLifecycleOwner$3$1: androidx.lifecycle.ProcessLifecycleOwner$3 this$1 -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startY -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarStyle -androidx.appcompat.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenText(android.content.Context,int) -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableBottom -wangdaye.com.geometricweather.R$id: int notification_big_icon_4 -com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_bottom -cyanogenmod.themes.ThemeChangeRequest: java.util.Map getPerAppOverlays() -androidx.appcompat.R$interpolator: int fast_out_slow_in -com.github.rahatarmanahmed.cpv.CircularProgressView$4: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -okhttp3.Response: okhttp3.ResponseBody body() -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -com.google.android.material.R$layout: int abc_cascading_menu_item_layout -wangdaye.com.geometricweather.R$bool: int workmanager_test_configuration -wangdaye.com.geometricweather.R$string: int phase_first -wangdaye.com.geometricweather.R$attr: int ratingBarStyleIndicator -androidx.appcompat.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -android.didikee.donate.R$styleable: int Toolbar_logo -androidx.constraintlayout.widget.R$attr: int imageButtonStyle -androidx.lifecycle.extensions.R$id: int tag_transition_group -com.google.android.material.R$styleable: int ViewBackgroundHelper_backgroundTintMode -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice Ice -androidx.appcompat.R$styleable: int AppCompatTextView_android_textAppearance -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String sunSet -com.turingtechnologies.materialscrollbar.R$color: int secondary_text_disabled_material_dark -com.jaredrummler.android.colorpicker.R$layout: int preference_category -androidx.preference.R$drawable: int abc_ratingbar_small_material -com.turingtechnologies.materialscrollbar.R$attr: int boxCollapsedPaddingTop -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property PublishDate -cyanogenmod.weather.WeatherInfo$DayForecast: int getConditionCode() -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_android_checkable -androidx.work.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.R$color: int material_on_background_disabled -android.didikee.donate.R$styleable: int SearchView_android_focusable -com.google.android.material.slider.Slider: float getValue() -wangdaye.com.geometricweather.R$id: int action_bar -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -com.turingtechnologies.materialscrollbar.R$id: int right_icon -androidx.viewpager.R$string: int status_bar_notification_info_overflow -com.jaredrummler.android.colorpicker.R$attr: int positiveButtonText -wangdaye.com.geometricweather.R$id: int notification_big -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Switch -com.google.android.material.R$styleable: int[] TextAppearance -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Ceiling -io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -androidx.lifecycle.SavedStateHandle: java.lang.String VALUES -james.adaptiveicon.R$string: int abc_toolbar_collapse_description -androidx.vectordrawable.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.R$styleable: int KeyPosition_transitionEasing -com.google.android.material.R$attr: int iconEndPadding -com.google.android.material.R$styleable: int Constraint_transitionPathRotate -androidx.dynamicanimation.R$id: int right_icon -androidx.appcompat.widget.AppCompatSeekBar -okhttp3.internal.ws.RealWebSocket: void runWriter() -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_singleLine -cyanogenmod.app.LiveLockScreenManager: android.content.Context mContext -com.google.android.gms.location.zzo -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean direction -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SUNNY -com.amap.api.location.AMapLocationClientOption: boolean isOffset() -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xmr -androidx.appcompat.R$dimen: int tooltip_horizontal_padding -androidx.constraintlayout.widget.R$color: int abc_tint_seek_thumb -com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Display -androidx.constraintlayout.widget.R$drawable: int abc_cab_background_top_mtrl_alpha -okhttp3.internal.Util: okio.ByteString UTF_16_LE_BOM -io.reactivex.Observable: io.reactivex.Observable publish(io.reactivex.functions.Function) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.lang.String titleHtml -cyanogenmod.platform.R$integer -androidx.appcompat.R$styleable: int AnimatedStateListDrawableItem_android_drawable -com.amap.api.fence.GeoFence: boolean q -org.greenrobot.greendao.database.DatabaseOpenHelper: void onCreate(android.database.sqlite.SQLiteDatabase) -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendLayoutManager -com.google.android.material.R$anim: int abc_tooltip_exit -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterOverflowTextAppearance -android.didikee.donate.R$styleable: int DrawerArrowToggle_color -com.jaredrummler.android.colorpicker.R$attr: int navigationIcon -com.jaredrummler.android.colorpicker.R$anim: int abc_slide_in_top -okhttp3.ConnectionSpec$Builder: ConnectionSpec$Builder(boolean) -androidx.work.R$color: int secondary_text_default_material_light -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner -androidx.lifecycle.ComputableLiveData -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_function_shortcut_label -okio.RealBufferedSink: okio.BufferedSink write(byte[]) -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Time -com.google.android.material.R$styleable: int Snackbar_snackbarTextViewStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge -androidx.coordinatorlayout.R$string -com.google.android.material.chip.ChipGroup: void setChipSpacingHorizontal(int) -com.google.android.material.R$styleable: int KeyTimeCycle_android_translationZ -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial -wangdaye.com.geometricweather.R$id: int textinput_counter +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: AccuCurrentResult$RealFeelTemperature() +wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_night_foreground +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_editor_absoluteY +james.adaptiveicon.R$color +androidx.appcompat.widget.Toolbar: void setNavigationIcon(int) +com.google.android.material.transformation.TransformationChildLayout: TransformationChildLayout(android.content.Context,android.util.AttributeSet) +com.baidu.location.indoor.mapversion.c.c$b: double d +com.amap.api.fence.PoiItem: void setLatitude(double) +wangdaye.com.geometricweather.R$xml: int widget_clock_day_details +okio.Buffer: okio.ByteString md5() +androidx.dynamicanimation.R$attr: int fontProviderCerts +androidx.constraintlayout.widget.R$styleable: int Layout_maxWidth +wangdaye.com.geometricweather.R$string: int hours_of_sun +androidx.appcompat.R$attr: int actionModeCloseButtonStyle +androidx.preference.R$id: int accessibility_custom_action_19 +com.google.android.material.R$string: int chip_text +com.google.android.material.textfield.TextInputLayout: void setHintTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_light +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind wind +wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_chronus +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property O3 +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: void providerDied() +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstVerticalStyle +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +wangdaye.com.geometricweather.R$drawable: int weather_thunder_pixel +wangdaye.com.geometricweather.R$id: int ghost_view +android.didikee.donate.R$layout: int abc_screen_content_include +wangdaye.com.geometricweather.R$styleable: int AnimatableIconView_inner_margins +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterMaxLength +androidx.activity.R$styleable: int FontFamilyFont_android_font +androidx.hilt.work.R$styleable: int[] GradientColor +com.amap.api.fence.PoiItem: void setCity(java.lang.String) +androidx.dynamicanimation.R$dimen +com.jaredrummler.android.colorpicker.R$attr: int toolbarNavigationButtonStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: java.lang.String Unit +androidx.recyclerview.R$id: int accessibility_custom_action_20 +androidx.constraintlayout.widget.R$attr: int collapseIcon +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain rain +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_showAsAction +wangdaye.com.geometricweather.R$styleable: int SearchView_android_imeOptions +androidx.appcompat.R$styleable: int ActionMode_height +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type getRawType() +com.jaredrummler.android.colorpicker.R$attr: int layout_anchorGravity +wangdaye.com.geometricweather.R$attr: int placeholderText +com.google.android.material.R$styleable: int Motion_pathMotionArc +cyanogenmod.app.ICustomTileListener$Stub$Proxy +android.didikee.donate.R$attr: int actionBarTabBarStyle +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Primary +androidx.vectordrawable.animated.R$id: int normal +cyanogenmod.externalviews.ExternalView$2: ExternalView$2(cyanogenmod.externalviews.ExternalView,int,int,int,int,boolean,android.graphics.Rect) +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.Long getId() +com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextColor(android.content.res.ColorStateList) +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: int count +com.google.android.material.R$drawable: int btn_radio_on_mtrl +com.google.android.material.R$id: int radio +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode resolve(android.content.Context) +james.adaptiveicon.R$styleable: int AppCompatTheme_colorButtonNormal +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.os.Bundle mOptions +james.adaptiveicon.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_selectableItemBackground +com.google.android.material.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide +androidx.dynamicanimation.R$id: int icon_group +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1(androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription,long) +wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_material_anim +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: AccuDailyResult$DailyForecasts$Day$LocalSource() +androidx.preference.R$attr: int actionBarSize +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_AUTO_OUTDOOR_MODE +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String p +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: int phenomenonId +io.reactivex.Observable: io.reactivex.Observable switchOnNextDelayError(io.reactivex.ObservableSource) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionBarOverlay +com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String BUILD_TYPE +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Medium +com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearanceActive +cyanogenmod.app.CMContextConstants$Features: java.lang.String PARTNER +androidx.appcompat.R$style: int Widget_AppCompat_ActionButton_CloseMode +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_subtitle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRealFeelTemperature(java.lang.Integer) +androidx.vectordrawable.R$dimen: int notification_big_circle_margin +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +retrofit2.Retrofit$Builder: retrofit2.Platform platform +retrofit2.SkipCallbackExecutorImpl: int hashCode() +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_popupTheme +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginBottom +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: io.reactivex.internal.fuseable.SimpleQueue queue +androidx.constraintlayout.widget.R$id: int spline +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_height +androidx.activity.R$dimen +cyanogenmod.app.LiveLockScreenInfo$1 +android.didikee.donate.R$color: int material_blue_grey_900 +wangdaye.com.geometricweather.R$styleable: int[] AppCompatImageView +androidx.lifecycle.ComputableLiveData: ComputableLiveData(java.util.concurrent.Executor) +com.google.gson.stream.JsonScope: int CLOSED +com.amap.api.location.AMapLocation: void setCoordType(java.lang.String) +androidx.preference.R$styleable: int ActionBar_contentInsetStart +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setIcePrecipitation(java.lang.Float) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: HourlyEntityDao(org.greenrobot.greendao.internal.DaoConfig) +com.google.android.material.R$styleable: int Constraint_layout_constraintEnd_toEndOf +com.google.android.material.slider.BaseSlider: float getValueTo() +android.didikee.donate.R$attr: int singleChoiceItemLayout +androidx.appcompat.widget.AppCompatTextView: android.view.textclassifier.TextClassifier getTextClassifier() +okio.RealBufferedSink: okio.Buffer buffer +wangdaye.com.geometricweather.R$attr: int drawPath +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: DefaultCallAdapterFactory$ExecutorCallbackCall(java.util.concurrent.Executor,retrofit2.Call) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_android_src +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemIconTint androidx.swiperefreshlayout.R$attr: int fontProviderPackage -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light -com.turingtechnologies.materialscrollbar.R$attr: int snackbarButtonStyle -retrofit2.http.QueryMap: boolean encoded() -com.google.android.material.circularreveal.CircularRevealFrameLayout: CircularRevealFrameLayout(android.content.Context) -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analog_dark -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onKeyguardDismissed -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout -wangdaye.com.geometricweather.R$attr: int colorPrimary -wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_text_color -com.google.android.material.R$xml: int standalone_badge_offset -wangdaye.com.geometricweather.R$id: int item_details -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_radius -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_overflow_padding_end_material -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getPm10() -androidx.appcompat.widget.AppCompatRadioButton: void setButtonDrawable(android.graphics.drawable.Drawable) -com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_pressed -okio.BufferedSink: okio.BufferedSink write(okio.Source,long) -com.jaredrummler.android.colorpicker.R$attr: int alphabeticModifiers -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -com.google.android.material.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Light -okhttp3.internal.http2.Http2Stream$StreamTimeout: java.io.IOException newTimeoutException(java.io.IOException) -cyanogenmod.app.IPartnerInterface$Stub$Proxy: void setMobileDataEnabled(boolean) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial Imperial -androidx.customview.R$styleable: int FontFamilyFont_fontStyle -okhttp3.RealCall: okhttp3.EventListener eventListener -wangdaye.com.geometricweather.R$id: int notification_big_icon_2 -wangdaye.com.geometricweather.R$drawable: int abc_btn_colored_material -james.adaptiveicon.R$layout: int abc_activity_chooser_view -wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_collapsed -okhttp3.Handshake: int hashCode() -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_10 -androidx.constraintlayout.widget.R$attr: int fontVariationSettings -com.google.android.material.R$styleable: int MaterialShape_shapeAppearance -androidx.fragment.app.SuperNotCalledException -androidx.lifecycle.LiveData$LifecycleBoundObserver -androidx.constraintlayout.widget.R$attr: int panelMenuListTheme -com.google.android.material.R$styleable: int FontFamilyFont_font -cyanogenmod.profiles.AirplaneModeSettings$1: AirplaneModeSettings$1() -com.bumptech.glide.integration.okhttp.R$id: int bottom -com.github.rahatarmanahmed.cpv.CircularProgressView: float initialStartAngle -wangdaye.com.geometricweather.R$id: int home -retrofit2.Utils: java.lang.reflect.Type getGenericSupertype(java.lang.reflect.Type,java.lang.Class,java.lang.Class) -androidx.constraintlayout.widget.R$drawable: int tooltip_frame_dark -com.amap.api.fence.GeoFence: void setMinDis2Center(float) -androidx.constraintlayout.widget.R$id: int tag_accessibility_pane_title -androidx.activity.R$id: int notification_background -com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver CANCELLED -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onComplete() -androidx.preference.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -androidx.viewpager2.R$dimen: int item_touch_helper_swipe_escape_max_velocity -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean add(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) -android.didikee.donate.R$styleable: int SearchView_queryHint -androidx.hilt.work.R$id: int normal -com.google.android.material.R$layout: int design_text_input_end_icon -okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) -cyanogenmod.app.Profile: int describeContents() -com.google.android.material.circularreveal.CircularRevealLinearLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: boolean isDisposed() -okhttp3.internal.connection.ConnectionSpecSelector: int nextModeIndex -com.turingtechnologies.materialscrollbar.R$attr: int errorEnabled -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor DARK -androidx.appcompat.R$styleable: int RecycleListView_paddingTopNoTitle -wangdaye.com.geometricweather.R$style: int Platform_AppCompat_Light -com.github.rahatarmanahmed.cpv.CircularProgressView: void setProgress(float) -com.google.android.material.bottomnavigation.BottomNavigationView: void setSelectedItemId(int) -cyanogenmod.weatherservice.WeatherProviderService: java.lang.String SERVICE_INTERFACE -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: void setWeathercn(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum() -androidx.legacy.coreutils.R$integer -wangdaye.com.geometricweather.R$styleable: int Spinner_android_popupBackground -com.jaredrummler.android.colorpicker.R$color: int abc_tint_seek_thumb +com.xw.repo.BubbleSeekBar: com.xw.repo.BubbleSeekBar$OnProgressChangedListener getOnProgressChangedListener() +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyStartText +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startColor +com.google.android.material.R$attr: int haloRadius +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.R$string: int sp_widget_text_setting +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void registerListener(cyanogenmod.app.ICustomTileListener,android.content.ComponentName,int) +okhttp3.internal.http1.Http1Codec: java.lang.String readHeaderLine() +androidx.appcompat.widget.AbsActionBarView: void setContentHeight(int) +cyanogenmod.weather.RequestInfo: int TYPE_WEATHER_BY_GEO_LOCATION_REQ +com.google.android.material.R$styleable: int Constraint_layout_goneMarginBottom +androidx.appcompat.R$style: int Theme_AppCompat_NoActionBar +retrofit2.DefaultCallAdapterFactory$1: java.lang.reflect.Type val$responseType +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: int limit +com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat_Light +androidx.lifecycle.extensions.R$styleable: int[] FragmentContainerView +wangdaye.com.geometricweather.R$styleable: int TagView_unchecked_background_color +wangdaye.com.geometricweather.R$drawable: int notif_temp_42 +wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_EXCESSIVE +retrofit2.HttpServiceMethod: java.lang.Object invoke(java.lang.Object[]) +wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_default +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$000() +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_textStartPadding +com.turingtechnologies.materialscrollbar.R$attr: int boxCollapsedPaddingTop +wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_checkbox +cyanogenmod.app.CustomTile$ExpandedStyle: int describeContents() +androidx.lifecycle.SavedStateHandle: java.util.Map mRegular +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +androidx.appcompat.R$attr: int subtitleTextColor +okio.SegmentedByteString: java.nio.ByteBuffer asByteBuffer() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_switch_track_mtrl_alpha +com.google.android.material.textfield.TextInputLayout: void setEnabled(boolean) +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorScheme(int[]) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.fuseable.SimpleQueue queue +androidx.appcompat.widget.SwitchCompat: void setSwitchPadding(int) +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderCerts +okhttp3.MultipartBody: java.util.List parts() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfIce +com.google.android.material.R$styleable: int MaterialButton_android_insetRight +cyanogenmod.power.PerformanceManager: boolean setPowerProfile(int) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: ObservableFlatMapMaybe$FlatMapMaybeObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String from +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_tileMode +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_android_entries +cyanogenmod.app.StatusBarPanelCustomTile: long getPostTime() +com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_icon +wangdaye.com.geometricweather.R$attr: int preferenceFragmentCompatStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_radioButtonStyle +com.google.android.material.R$styleable: int AnimatedStateListDrawableItem_android_id +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_corner_radius +okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: void run() +android.didikee.donate.R$styleable: int ActionBar_contentInsetLeft +androidx.hilt.lifecycle.R$styleable: int Fragment_android_name +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Body2 +androidx.preference.R$attr: int popupWindowStyle +androidx.preference.R$attr: int panelMenuListTheme +androidx.constraintlayout.widget.R$attr: int lineHeight +com.google.android.material.R$styleable: int FloatingActionButton_fabSize +okhttp3.internal.http2.PushObserver: okhttp3.internal.http2.PushObserver CANCEL +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf +retrofit2.converter.gson.GsonConverterFactory: GsonConverterFactory(com.google.gson.Gson) +androidx.legacy.coreutils.R$dimen: int compat_button_inset_horizontal_material +com.jaredrummler.android.colorpicker.R$id: int line3 +android.didikee.donate.R$styleable: int Toolbar_titleMarginEnd +androidx.constraintlayout.widget.R$styleable: int ActionBar_background +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintEnd_toEndOf +androidx.constraintlayout.widget.R$attr: int windowActionBar +wangdaye.com.geometricweather.R$style: int Platform_V21_AppCompat_Light +com.google.android.gms.common.internal.zag +com.jaredrummler.android.colorpicker.R$id: int search_voice_btn +androidx.appcompat.widget.ViewStubCompat: void setVisibility(int) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float snow +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.constraintlayout.widget.R$id: int blocking +wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundNormalUpdateService: Hilt_ForegroundNormalUpdateService() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: int status +androidx.work.R$color: int notification_icon_bg_color +androidx.transition.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity: ClockDayHorizontalWidgetConfigActivity() +cyanogenmod.app.CustomTile$Builder: java.lang.String mContentDescription +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textSize +james.adaptiveicon.R$style: int Platform_V21_AppCompat +com.turingtechnologies.materialscrollbar.R$attr: int thumbTintMode +com.google.android.material.R$styleable: int StateSet_defaultState +okhttp3.CacheControl: boolean noStore +com.jaredrummler.android.colorpicker.R$id: int home +androidx.work.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.R$integer: int mtrl_calendar_header_orientation +androidx.preference.R$attr: int paddingBottomNoButtons +androidx.work.impl.background.systemalarm.RescheduleReceiver: RescheduleReceiver() +androidx.viewpager.R$drawable: int notification_template_icon_low_bg +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder addCallAdapterFactory(retrofit2.CallAdapter$Factory) +androidx.work.NetworkType: androidx.work.NetworkType NOT_REQUIRED +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlNormal +wangdaye.com.geometricweather.R$attr: int orderingFromXml +androidx.fragment.R$anim: int fragment_close_enter +retrofit2.HttpServiceMethod$SuspendForResponse: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeColor(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_101 +androidx.preference.R$layout: int select_dialog_item_material +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModePasteDrawable +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property HoursOfSun +androidx.appcompat.widget.SearchView: void setImeOptions(int) +wangdaye.com.geometricweather.R$color: int abc_secondary_text_material_dark +com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_Surface +androidx.appcompat.R$color: int abc_secondary_text_material_dark +androidx.appcompat.R$attr: int progressBarStyle +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_baselineAligned +androidx.loader.R$id: int right_icon +com.xw.repo.bubbleseekbar.R$id: int text2 +okhttp3.internal.http2.Header: okio.ByteString TARGET_SCHEME +com.google.android.material.R$styleable: int TabLayout_tabPaddingBottom +com.google.android.material.R$attr: int colorOnPrimarySurface +androidx.appcompat.widget.Toolbar: void setSubtitleTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setUnit(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: java.lang.String Localized +com.amap.api.location.AMapLocationClientOption: boolean isKillProcess() +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +cyanogenmod.alarmclock.ClockContract$InstancesColumns: android.net.Uri CONTENT_URI +wangdaye.com.geometricweather.R$color: int darkPrimary_5 +com.turingtechnologies.materialscrollbar.R$layout: int mtrl_layout_snackbar +com.google.android.material.appbar.AppBarLayout: void addOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener) +androidx.loader.R$dimen: int notification_small_icon_background_padding +com.google.android.material.R$styleable: int MockView_mock_labelBackgroundColor +james.adaptiveicon.R$attr: int navigationMode +com.xw.repo.bubbleseekbar.R$color: int material_grey_900 +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_normal_material_dark +wangdaye.com.geometricweather.R$drawable: int ic_cold +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_gravity +com.google.android.material.R$color: int design_default_color_on_error +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void onDetachedFromWindow() +com.jaredrummler.android.colorpicker.R$attr: int min +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_title +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_precise_anchor_threshold +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_background_corner_radius +com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_horizontal_padding +androidx.appcompat.widget.ActivityChooserView: void setExpandActivityOverflowButtonContentDescription(int) +cyanogenmod.themes.IThemeService$Stub$Proxy: void applyDefaultTheme() +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation LEFT +com.xw.repo.bubbleseekbar.R$string: int abc_menu_ctrl_shortcut_label +james.adaptiveicon.R$id: int submenuarrow +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: android.os.IBinder asBinder() +cyanogenmod.app.ProfileGroup: void writeToParcel(android.os.Parcel,int) +okhttp3.internal.cache.DiskLruCache: java.lang.Runnable cleanupRunnable +androidx.lifecycle.FullLifecycleObserver: void onDestroy(androidx.lifecycle.LifecycleOwner) +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_NoActionBar +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_DarkActionBar +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +com.turingtechnologies.materialscrollbar.R$attr: int windowFixedWidthMinor +cyanogenmod.weather.WeatherInfo: java.lang.String mCity +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_bottom_padding +android.didikee.donate.R$drawable: int abc_list_pressed_holo_dark +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: android.os.IBinder asBinder() +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_clear_material +androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context) +com.google.android.material.R$styleable: int AppCompatTheme_actionModeBackground +james.adaptiveicon.R$dimen: int abc_button_padding_vertical_material +androidx.recyclerview.R$id: int right_icon +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Object rainSnowLimitRaw +androidx.dynamicanimation.R$styleable: int ColorStateListItem_android_color +com.google.android.material.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets +wangdaye.com.geometricweather.R$color: int secondary_text_default_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderTextAppearance +com.google.android.material.R$styleable: int Layout_layout_constraintCircleRadius +com.google.android.material.R$color: int material_grey_600 +com.amap.api.location.AMapLocation: int GPS_ACCURACY_GOOD +androidx.viewpager.widget.PagerTitleStrip: void setGravity(int) +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: int minuteInterval +okhttp3.internal.connection.RealConnection: java.lang.String toString() +androidx.hilt.work.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric Metric +com.jaredrummler.android.colorpicker.R$style: int Base_AlertDialog_AppCompat +androidx.preference.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +com.jaredrummler.android.colorpicker.R$id: int seekbar +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_content_inset_with_nav +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getMoldLevel() +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.R$dimen: int mtrl_fab_elevation +wangdaye.com.geometricweather.R$attr: int cpv_animAutostart +james.adaptiveicon.R$drawable: int abc_ic_star_black_16dp +com.google.android.material.R$layout: int design_navigation_menu +com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context) +cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.ICMTelephonyManager getService() +retrofit2.adapter.rxjava2.CallEnqueueObservable: void subscribeActual(io.reactivex.Observer) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6 +androidx.preference.R$attr: int homeAsUpIndicator +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: AccuDailyResult$DailyForecasts$Temperature() +android.didikee.donate.R$color: int abc_tint_default +cyanogenmod.profiles.BrightnessSettings: boolean mOverride +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_icon +androidx.transition.R$attr: int fontWeight +wangdaye.com.geometricweather.R$string: int feedback_request_permission +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_backgroundSplit +okhttp3.internal.tls.OkHostnameVerifier +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getHeadDescription() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.lang.String accuracy +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemPaddingLeft +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf +com.jaredrummler.android.colorpicker.R$string: int abc_menu_delete_shortcut_label +james.adaptiveicon.R$attr: int tickMark +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBaseline_creator +androidx.lifecycle.MediatorLiveData$Source: void plug() +com.google.android.material.R$style: int Base_Widget_AppCompat_Spinner +okio.SegmentedByteString: okio.ByteString toByteString() +cyanogenmod.weather.CMWeatherManager$RequestStatus: int COMPLETED +androidx.preference.R$style: int Widget_AppCompat_Toolbar +com.google.android.material.R$styleable: int RecyclerView_android_clipToPadding +wangdaye.com.geometricweather.R$drawable: int live_wallpaper_thumbnail +wangdaye.com.geometricweather.R$attr: int actionModeCutDrawable +com.google.android.material.R$layout: int abc_screen_content_include +wangdaye.com.geometricweather.R$attr: int actionOverflowButtonStyle +wangdaye.com.geometricweather.R$attr: int checked +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textSize +androidx.vectordrawable.animated.R$string: int status_bar_notification_info_overflow +io.reactivex.Observable: io.reactivex.Observable distinct(io.reactivex.functions.Function,java.util.concurrent.Callable) +james.adaptiveicon.R$dimen: int abc_floating_window_z +james.adaptiveicon.R$styleable: int ActionBar_contentInsetStartWithNavigation +com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context,android.util.AttributeSet,int) +okhttp3.Response$Builder: okhttp3.Response$Builder message(java.lang.String) +androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context,android.util.AttributeSet,int) +com.amap.api.fence.GeoFence: int o +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_DropDownItem_Spinner +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: org.reactivestreams.Subscriber downstream +com.bumptech.glide.R$styleable: int GradientColor_android_centerX +androidx.preference.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.preference.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_focused +com.jaredrummler.android.colorpicker.R$attr: int buttonTintMode +wangdaye.com.geometricweather.db.entities.DailyEntity: void setSunRiseDate(java.util.Date) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_search_api_material +androidx.appcompat.widget.Toolbar: void setCollapseIcon(android.graphics.drawable.Drawable) +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_startAngle +com.google.android.material.R$styleable: int Variant_region_widthMoreThan +com.google.android.material.R$styleable: int ActionBar_elevation +wangdaye.com.geometricweather.R$string: int abc_searchview_description_clear +cyanogenmod.app.Profile: int getProfileType() +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String value +com.turingtechnologies.materialscrollbar.R$attr: int tabTextColor +com.google.android.material.R$dimen: int hint_alpha_material_dark +androidx.vectordrawable.animated.R$id: int line3 +androidx.appcompat.R$styleable: int Toolbar_titleTextAppearance +wangdaye.com.geometricweather.R$drawable: int navigation_empty_icon +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type TOP +androidx.constraintlayout.widget.R$attr: int nestedScrollFlags +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeTextType +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial Imperial +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer treeIndex +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton +wangdaye.com.geometricweather.R$string: int key_view_type +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_default +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getGrassLevel() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.Date pubTime +androidx.hilt.work.R$id: int accessibility_custom_action_15 +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_height +okio.SegmentedByteString: byte[][] segments +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Slider +wangdaye.com.geometricweather.R$drawable: int notif_temp_52 +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalStyle +wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_xml +com.google.android.material.R$styleable: int FloatingActionButton_maxImageSize +com.google.android.material.card.MaterialCardView: void setClickable(boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean wind +cyanogenmod.weather.CMWeatherManager$2$2: CMWeatherManager$2$2(cyanogenmod.weather.CMWeatherManager$2,cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener,int,java.util.List) +androidx.loader.content.Loader +wangdaye.com.geometricweather.R$layout: int preference_dropdown_material +com.google.android.material.textfield.TextInputLayout: void setEndIconDrawable(int) +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: long time +io.reactivex.internal.observers.BlockingObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$id: int widget_day_week_time +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_viewInflaterClass +com.google.android.material.R$attr: int activityChooserViewStyle +cyanogenmod.app.ProfileGroup: void getXmlString(java.lang.StringBuilder,android.content.Context) +androidx.activity.R$id: int tag_accessibility_clickable_spans +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +com.xw.repo.bubbleseekbar.R$id: int action_mode_bar_stub +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_elevation +wangdaye.com.geometricweather.R$string: int settings_category_widget +wangdaye.com.geometricweather.R$layout: int dialog_running_in_background_o +com.jaredrummler.android.colorpicker.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +com.google.android.material.R$attr: int flow_padding +okhttp3.internal.http2.Http2Codec: okhttp3.internal.connection.StreamAllocation streamAllocation +androidx.preference.R$style: int Base_Widget_AppCompat_Spinner_Underlined +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onDetachedFromWindow() +io.reactivex.internal.disposables.SequentialDisposable: boolean replace(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.Long id +androidx.constraintlayout.widget.R$attr: int layout_constraintRight_toRightOf +retrofit2.RequestBuilder: java.lang.String method +android.didikee.donate.R$styleable: int AlertDialog_listLayout +com.github.rahatarmanahmed.cpv.CircularProgressView$8 +wangdaye.com.geometricweather.R$styleable: int SignInButton_buttonSize +com.google.android.material.R$string +okhttp3.Cache$CacheResponseBody: Cache$CacheResponseBody(okhttp3.internal.cache.DiskLruCache$Snapshot,java.lang.String,java.lang.String) +androidx.preference.R$styleable: int GradientColor_android_startX +androidx.recyclerview.R$id: int accessibility_custom_action_13 +okhttp3.EventListener: EventListener() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: java.lang.Object poll() +androidx.lifecycle.ProcessLifecycleOwner$2: void onResume() +com.google.android.material.R$attr: int actionModePopupWindowStyle +com.google.android.material.R$attr: int constraint_referenced_ids +com.xw.repo.bubbleseekbar.R$drawable: int abc_switch_track_mtrl_alpha +androidx.hilt.work.R$string: int status_bar_notification_info_overflow +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.internal.fuseable.SimpleQueue queue +com.google.android.material.internal.ForegroundLinearLayout +wangdaye.com.geometricweather.R$id: int zero_corner_chip +io.reactivex.internal.operators.observable.ObserverResourceWrapper: java.util.concurrent.atomic.AtomicReference upstream +androidx.preference.R$style: int Widget_AppCompat_ActivityChooserView +androidx.appcompat.R$styleable: int[] SearchView +com.bumptech.glide.integration.okhttp.R$id: int tag_transition_group +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: io.reactivex.Observer downstream +cyanogenmod.weather.RequestInfo$Builder: int mTempUnit +androidx.recyclerview.widget.StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: AccuCurrentResult$Visibility$Imperial() +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemBackgroundRes() +com.google.android.material.R$dimen: int design_snackbar_max_width +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +wangdaye.com.geometricweather.R$id: int title_template +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +com.turingtechnologies.materialscrollbar.R$attr: int isLightTheme +wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardSpinner +wangdaye.com.geometricweather.R$id: int dialog_location_help_locationIcon +com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_android_textAppearance +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean delayError +okhttp3.internal.cache.CacheInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: int MPH +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Time +com.amap.api.location.AMapLocation: java.lang.String e +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Small +com.amap.api.location.AMapLocationClientOption: boolean isDownloadCoordinateConvertLibrary() +wangdaye.com.geometricweather.R$anim: int design_bottom_sheet_slide_out +wangdaye.com.geometricweather.R$id: int withinBounds +androidx.appcompat.R$dimen: int abc_text_size_button_material +wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_layout +androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationX +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean setActiveProfile(android.os.ParcelUuid) +wangdaye.com.geometricweather.R$attr: int disableDependentsState +okhttp3.internal.tls.TrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) +androidx.core.R$drawable: int notification_template_icon_low_bg +com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_text_size +okhttp3.internal.http2.Hpack$Writer: boolean emitDynamicTableSizeUpdate +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyle +cyanogenmod.app.Profile$ProfileTrigger: int getType() +retrofit2.OkHttpCall: okhttp3.Call createRawCall() +okhttp3.Headers: java.lang.String get(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarPositiveButtonStyle +okhttp3.internal.http.HttpHeaders: okhttp3.Headers varyHeaders(okhttp3.Headers,okhttp3.Headers) +com.google.android.material.R$styleable: int Toolbar_title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setStatus(int) +com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setCircularRevealScrimColor(int) +android.didikee.donate.R$color: int switch_thumb_disabled_material_light +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +io.reactivex.internal.disposables.DisposableHelper: void dispose() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_5 +com.bumptech.glide.R$attr: int layout_insetEdge +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String province +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String icon +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow snow +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property CloudCover +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void onChanged(java.lang.Object) +com.google.android.material.R$styleable: int KeyAttribute_android_alpha +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMargins +wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity +wangdaye.com.geometricweather.R$id: int cpv_color_panel_old +androidx.vectordrawable.R$id: int notification_main_column +com.xw.repo.bubbleseekbar.R$attr: int ttcIndex +com.google.android.material.R$color: R$color() +com.jaredrummler.android.colorpicker.R$id: int topPanel +wangdaye.com.geometricweather.common.basic.models.weather.UV +wangdaye.com.geometricweather.R$attr: int listChoiceBackgroundIndicator +com.amap.api.location.LocationManagerBase: void setLocationOption(com.amap.api.location.AMapLocationClientOption) +com.github.rahatarmanahmed.cpv.CircularProgressView +androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMarkTintMode +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver +com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar_Colored +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber +android.didikee.donate.R$dimen: int abc_control_corner_material +io.reactivex.observers.DisposableObserver: void onSubscribe(io.reactivex.disposables.Disposable) +james.adaptiveicon.R$styleable: int MenuView_android_windowAnimationStyle +androidx.appcompat.R$id: int custom +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabView +cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileManager sProfileManagerInstance +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: void run() +com.turingtechnologies.materialscrollbar.R$styleable: int[] LinearLayoutCompat_Layout +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +com.google.android.material.R$attr: int mock_diagonalsColor +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_toBottomOf +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItem +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPm25() +android.support.v4.app.RemoteActionCompatParcelizer: void write(androidx.core.app.RemoteActionCompat,androidx.versionedparcelable.VersionedParcel) +androidx.swiperefreshlayout.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property ResidentPosition +androidx.lifecycle.LifecycleRegistryOwner: androidx.lifecycle.LifecycleRegistry getLifecycle() +okio.RealBufferedSink: okio.Sink sink +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Time +androidx.preference.R$dimen: int highlight_alpha_material_colored +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.AlertEntityDao getAlertEntityDao() +com.google.android.material.R$styleable: int KeyCycle_android_translationZ +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeMinTextSize +com.google.android.material.R$attr: int customNavigationLayout +wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullResourceIdException +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_NoActionBar +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_padding_end_material +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: void completion() +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_3_material +com.google.android.material.circularreveal.CircularRevealLinearLayout: void setCircularRevealScrimColor(int) +androidx.constraintlayout.widget.R$integer: R$integer() +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setMoonDrawable(android.graphics.drawable.Drawable) +com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getBackgroundTintList() +androidx.preference.R$layout: int abc_activity_chooser_view +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean tryEmitScalar(java.util.concurrent.Callable) +com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +com.bumptech.glide.R$attr: int fontWeight +io.reactivex.Observable: io.reactivex.Observable buffer(java.util.concurrent.Callable) +wangdaye.com.geometricweather.R$attr: int bsb_show_section_text +com.bumptech.glide.R$style +okhttp3.logging.LoggingEventListener$Factory: LoggingEventListener$Factory(okhttp3.logging.HttpLoggingInterceptor$Logger) +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getRippleColor() +androidx.hilt.R$anim: int fragment_open_exit +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: HistoryEntityDao(org.greenrobot.greendao.internal.DaoConfig) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_percent +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_list_padding_top_no_title +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.R$id: int auto +androidx.constraintlayout.widget.R$id: int right_side +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int NOT_AVAILABLE +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean getContent() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onSearchRequested(android.view.SearchEvent) +retrofit2.ParameterHandler$Field: java.lang.String name +androidx.drawerlayout.R$id: int tag_unhandled_key_listeners +android.didikee.donate.R$drawable: int abc_switch_track_mtrl_alpha +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Badge +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object call() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setRotation(float) +james.adaptiveicon.R$id: int image +com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String APPLICATION_ID +androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context,android.util.AttributeSet) +androidx.drawerlayout.R$color: R$color() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid TotalLiquid +com.turingtechnologies.materialscrollbar.R$attr: int iconTint +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +androidx.preference.R$styleable: int[] BackgroundStyle +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_CheckBox +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textSize +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableTop +james.adaptiveicon.R$drawable: int abc_list_focused_holo +com.amap.api.location.AMapLocationClient: void setLocationOption(com.amap.api.location.AMapLocationClientOption) +androidx.lifecycle.extensions.R$dimen: R$dimen() +cyanogenmod.app.Profile: cyanogenmod.profiles.LockSettings getScreenLockMode() +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: void setTextColors(int) +james.adaptiveicon.R$color: int abc_background_cache_hint_selector_material_light +androidx.fragment.R$id: int accessibility_custom_action_5 +okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallback +androidx.hilt.lifecycle.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton +androidx.preference.R$styleable: int ViewStubCompat_android_inflatedId +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: int UnitType +androidx.work.R$id: int notification_main_column_container +io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper[] values() +cyanogenmod.app.ProfileGroup: android.net.Uri mRingerOverride +androidx.appcompat.resources.R$styleable: R$styleable() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView_DropDown +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginTop +io.reactivex.Observable: io.reactivex.Observable concatDelayError(io.reactivex.ObservableSource) +androidx.appcompat.R$attr: int arrowShaftLength +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int OTHER_STATE_HAS_VALUE +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain3h +okhttp3.Request$Builder: okhttp3.Request$Builder header(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$attr: int defaultState +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.reflect.Type responseType +androidx.legacy.coreutils.R$styleable: int[] GradientColor +com.google.android.material.R$styleable: int View_paddingEnd +androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type LEFT +androidx.swiperefreshlayout.R$id: R$id() +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotationY +com.turingtechnologies.materialscrollbar.R$dimen: int hint_alpha_material_dark +com.google.android.material.R$attr: int cornerFamilyBottomRight +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_IME_SWITCHER_VALIDATOR +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getCityId() +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_isEnabled +androidx.appcompat.widget.ButtonBarLayout: ButtonBarLayout(android.content.Context,android.util.AttributeSet) +james.adaptiveicon.R$dimen: int compat_button_padding_horizontal_material +androidx.appcompat.resources.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_PopupMenu +androidx.appcompat.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +com.google.android.material.R$styleable: int LinearLayoutCompat_divider +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_light +retrofit2.ParameterHandler$QueryMap: retrofit2.Converter valueConverter +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: long serialVersionUID +wangdaye.com.geometricweather.R$string: int tag_temperature +com.google.gson.stream.JsonWriter: java.io.Writer out +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String ENABLED +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_arrowHeadLength +com.google.android.material.R$styleable: int AppCompatImageView_tint +james.adaptiveicon.R$style: int Base_Widget_AppCompat_SeekBar +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitationDuration(java.lang.Float) +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectTimeout(long,java.util.concurrent.TimeUnit) +androidx.work.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$attr: int materialButtonOutlinedStyle +androidx.fragment.R$styleable: int GradientColor_android_endColor +androidx.preference.R$styleable: int PreferenceImageView_maxWidth +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Menu +android.didikee.donate.R$id: int line1 +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerError(int,java.lang.Throwable) +androidx.drawerlayout.R$id: int normal +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getSoundMode() +james.adaptiveicon.R$style: int Base_V22_Theme_AppCompat_Light +james.adaptiveicon.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +com.baidu.location.e.p: java.util.List a(org.json.JSONObject,java.lang.String,int) +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Longitude +com.google.android.material.timepicker.RadialViewGroup: RadialViewGroup(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$drawable: int shortcuts_refresh_foreground +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowMinWidthMajor +io.reactivex.internal.observers.BasicIntQueueDisposable +okhttp3.internal.publicsuffix.PublicSuffixDatabase +androidx.appcompat.resources.R$dimen: int compat_button_padding_horizontal_material +com.bumptech.glide.load.engine.CallbackException +wangdaye.com.geometricweather.settings.fragments.NotificationColorSettingsFragment: NotificationColorSettingsFragment() +com.google.android.material.navigation.NavigationView: int getItemMaxLines() +wangdaye.com.geometricweather.R$layout: int notification_action +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TimeStamp +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_item_max_width +wangdaye.com.geometricweather.R$attr: int bottom_text_color +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: android.os.IBinder asBinder() +androidx.work.R$id: int normal +android.didikee.donate.R$drawable: int abc_textfield_search_default_mtrl_alpha +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_large_material +androidx.appcompat.R$drawable: int abc_cab_background_top_material +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +com.xw.repo.bubbleseekbar.R$style: int Base_AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: java.lang.Float windChill +com.amap.api.fence.GeoFenceClient: int GEOFENCE_OUT +wangdaye.com.geometricweather.R$attr: int indicatorType +okio.RealBufferedSource$1: RealBufferedSource$1(okio.RealBufferedSource) +com.github.rahatarmanahmed.cpv.CircularProgressView: float maxProgress +okio.RealBufferedSource: byte readByte() +androidx.appcompat.R$attr: int actionBarPopupTheme +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.hilt.R$layout +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display2 +com.amap.api.location.AMapLocation: void setBuildingId(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_SHOW_WEATHER +android.didikee.donate.R$styleable: int MenuView_android_itemBackground +okio.RealBufferedSource: byte[] readByteArray() +androidx.fragment.R$color: int notification_action_color_filter +android.didikee.donate.R$attr: int commitIcon +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer getCloudCover() +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textSize +androidx.drawerlayout.R$string: R$string() +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_elevation +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindDegree +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_NETWORK_SETTINGS +io.reactivex.internal.subscribers.StrictSubscriber: io.reactivex.internal.util.AtomicThrowable error +com.jaredrummler.android.colorpicker.R$attr: int buttonBarNegativeButtonStyle +androidx.viewpager.widget.PagerTabStrip: void setBackgroundColor(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: AccuCurrentResult$Wind$Direction() +androidx.cardview.R$style: R$style() +wangdaye.com.geometricweather.R$dimen: int mtrl_card_spacing +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: boolean isDisposed() +com.google.android.material.R$attr: int layout_constraintLeft_creator +android.didikee.donate.R$id: int right_side +wangdaye.com.geometricweather.R$styleable: int Transition_layoutDuringTransition +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_enabled +com.jaredrummler.android.colorpicker.R$attr: int windowMinWidthMinor +retrofit2.ParameterHandler$RelativeUrl: ParameterHandler$RelativeUrl(java.lang.reflect.Method,int) +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +com.xw.repo.bubbleseekbar.R$color: int primary_text_disabled_material_light +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Tooltip +okio.RealBufferedSink: okio.BufferedSink writeInt(int) +okhttp3.internal.Util: boolean decodeIpv4Suffix(java.lang.String,int,int,byte[],int) +com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy DEFAULT +okio.Okio$1: java.lang.String toString() +com.google.android.material.appbar.AppBarLayout: void setLiftOnScrollTargetViewId(int) +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_4_30 +wangdaye.com.geometricweather.R$drawable: int cpv_btn_background_pressed +com.google.android.gms.internal.location.zzbg: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton +androidx.drawerlayout.R$layout: int notification_action_tombstone +okio.Buffer: long writeAll(okio.Source) +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItem +com.baidu.location.e.l$b: java.lang.String a(com.baidu.location.e.l$b,int,double,double) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarStyle +androidx.recyclerview.R$style: int Widget_Compat_NotificationActionText +com.jaredrummler.android.colorpicker.R$style: int Preference_SeekBarPreference_Material +com.google.android.material.R$styleable: int TextInputLayout_endIconTint +wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragScale +androidx.viewpager2.R$drawable +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_fontVariationSettings +wangdaye.com.geometricweather.R$string: int alipay +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_padding_material +cyanogenmod.profiles.StreamSettings: boolean isOverride() +wangdaye.com.geometricweather.R$attr: int windowActionBarOverlay +com.google.android.material.R$attr: int tint +androidx.appcompat.widget.SearchView: void setOnCloseListener(androidx.appcompat.widget.SearchView$OnCloseListener) +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status FAILED +com.google.android.material.R$id: int chip_group +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickTintList() +com.turingtechnologies.materialscrollbar.R$color: int material_deep_teal_500 +androidx.appcompat.R$color: int dim_foreground_material_light +androidx.preference.R$style: int ThemeOverlay_AppCompat_Dark +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableEnd +androidx.coordinatorlayout.R$string: R$string() +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setIconResStart(int) +wangdaye.com.geometricweather.R$animator: int mtrl_btn_state_list_anim +cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri CONTENT_URI +androidx.work.R$dimen: int compat_button_inset_vertical_material +com.google.android.material.R$attr: int layoutManager +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void subscribeActual() +com.google.android.material.R$style: int Base_Widget_AppCompat_ListPopupWindow +androidx.core.view.GestureDetectorCompat: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) +wangdaye.com.geometricweather.R$drawable: int clock_minute_light +retrofit2.ParameterHandler$RelativeUrl: void apply(retrofit2.RequestBuilder,java.lang.Object) +wangdaye.com.geometricweather.R$id: int labelGroup +okio.Buffer: okio.ByteString hmacSha512(okio.ByteString) +okhttp3.ResponseBody$1: long val$contentLength +com.amap.api.fence.GeoFenceClient: int GEOFENCE_IN +androidx.constraintlayout.widget.R$integer: int status_bar_notification_info_maxnum +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_textOff +wangdaye.com.geometricweather.R$dimen: int touch_rise_z +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: boolean active +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_size +com.google.android.material.R$attr: int motionStagger +androidx.preference.R$styleable: int TextAppearance_android_textFontWeight +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_NULL_SHA +cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.ICMStatusBarManager sService +androidx.work.BackoffPolicy: androidx.work.BackoffPolicy valueOf(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int cpv_item_size +okio.RealBufferedSource: boolean exhausted() +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +androidx.appcompat.R$styleable: int AppCompatTheme_colorControlHighlight +wangdaye.com.geometricweather.R$id: int widget_text_weather +androidx.hilt.work.R$dimen: int notification_content_margin_start +androidx.viewpager.widget.ViewPager: void setScrollState(int) +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_dark +com.bumptech.glide.integration.okhttp.R$id: int line3 +cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_PEOPLE_LOOKUP +androidx.work.R$dimen: int compat_control_corner_material +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedWidthMajor +com.jaredrummler.android.colorpicker.R$anim: int abc_tooltip_exit +com.google.android.material.R$styleable: int ConstraintLayout_placeholder_content +okio.Segment: void compact() +androidx.legacy.coreutils.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float totalPrecipitationProbability +androidx.preference.R$styleable: int ActionMode_backgroundSplit +wangdaye.com.geometricweather.R$attr: int onHide +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_dark +androidx.preference.R$id: int select_dialog_listview +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Body2 +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_26 +cyanogenmod.app.ThemeVersion: int getMinSupportedVersion() +wangdaye.com.geometricweather.R$id: int widget_remote +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_background +com.turingtechnologies.materialscrollbar.R$attr: int actionBarStyle +wangdaye.com.geometricweather.R$attr: int trackColorActive +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Borderless +james.adaptiveicon.R$attr: int colorBackgroundFloating +cyanogenmod.app.IPartnerInterface$Stub$Proxy: void setAirplaneModeEnabled(boolean) +com.xw.repo.bubbleseekbar.R$anim: int abc_fade_in +androidx.preference.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +cyanogenmod.themes.IThemeChangeListener$Stub: android.os.IBinder asBinder() +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabBarStyle +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar_Small +okhttp3.OkHttpClient$Builder: java.util.List connectionSpecs +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIFI +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date riseDate +androidx.recyclerview.R$style: int Widget_Compat_NotificationActionContainer +cyanogenmod.app.Profile$ProfileTrigger: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$drawable: int ic_arrow_down_24dp +cyanogenmod.app.Profile: cyanogenmod.profiles.RingModeSettings getRingMode() +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_verticalDivider +okhttp3.internal.http.HttpDate +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void dispose() +okhttp3.internal.cache.DiskLruCache$2: DiskLruCache$2(okhttp3.internal.cache.DiskLruCache,okio.Sink) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_RC4_128_SHA +com.github.rahatarmanahmed.cpv.CircularProgressView$2 +androidx.drawerlayout.R$drawable: int notification_bg +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_horizontalDivider +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit NMI +wangdaye.com.geometricweather.R$attr: int behavior_fitToContents +com.google.android.material.R$attr: int daySelectedStyle +wangdaye.com.geometricweather.R$string: int wind_6 +androidx.hilt.R$styleable: int GradientColorItem_android_color +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_COLOR_ENHANCE +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void cancel(java.lang.Object) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_tint +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvDescription +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: double Value +com.google.android.gms.base.R$styleable: int SignInButton_buttonSize +okio.Buffer$UnsafeCursor: long resizeBuffer(long) +okhttp3.FormBody$Builder: FormBody$Builder(java.nio.charset.Charset) +android.didikee.donate.R$styleable: int MenuGroup_android_orderInCategory +androidx.appcompat.R$id: int icon_group +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit +com.turingtechnologies.materialscrollbar.R$interpolator: R$interpolator() +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleTintMode +wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextTitle +com.google.android.material.R$attr: int targetId +com.xw.repo.bubbleseekbar.R$style: int Base_V26_Widget_AppCompat_Toolbar +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_show_motion_spec +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_checkable +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_stacked_max_height +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontVariationSettings +com.turingtechnologies.materialscrollbar.R$id: int item_touch_helper_previous_elevation +com.google.android.material.R$styleable: int AppCompatTextView_drawableTopCompat +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: AccuHourlyResult$Temperature() +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetStartWithNavigation +androidx.appcompat.R$styleable: int AppCompatTextView_textAllCaps +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removePathSegment(int) +com.xw.repo.bubbleseekbar.R$dimen: int notification_top_pad_large_text +cyanogenmod.app.CustomTile$ExpandedStyle$1: cyanogenmod.app.CustomTile$ExpandedStyle[] newArray(int) +androidx.appcompat.widget.ActionBarContextView +androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int CardView_cardPreventCornerOverlap +androidx.lifecycle.ViewModel: void onCleared() +androidx.appcompat.R$drawable: int abc_btn_default_mtrl_shape +androidx.appcompat.R$attr: int actionModeCopyDrawable +androidx.work.R$id: int accessibility_custom_action_14 +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMode +cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_NORMAL +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: long serialVersionUID +androidx.appcompat.R$styleable: int AppCompatTheme_dialogCornerRadius +wangdaye.com.geometricweather.R$style: int PreferenceFragment +wangdaye.com.geometricweather.R$string: int wind_12 +wangdaye.com.geometricweather.R$dimen: int tooltip_precise_anchor_threshold +cyanogenmod.externalviews.ExternalViewProviderService: void onCreate() +androidx.preference.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +com.xw.repo.bubbleseekbar.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +wangdaye.com.geometricweather.R$string: int key_alert_notification_switch +androidx.lifecycle.extensions.R$id: int line3 +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgressColor(int) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String level +wangdaye.com.geometricweather.R$style: int TestStyleWithLineHeight +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.functions.Function mapper +com.google.android.material.R$attr: int layout_constraintGuide_end +androidx.appcompat.R$dimen: int abc_dialog_fixed_height_minor +androidx.appcompat.resources.R$id: int accessibility_custom_action_22 +james.adaptiveicon.R$styleable: int[] MenuItem +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String pubTime +com.google.android.material.R$drawable: int abc_list_selector_disabled_holo_light +com.google.android.material.R$styleable: int ThemeEnforcement_android_textAppearance +com.turingtechnologies.materialscrollbar.R$attr: int checkboxStyle +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_seekbar +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_subtitle_top_margin_material +james.adaptiveicon.R$style: int Widget_AppCompat_Light_SearchView +androidx.recyclerview.widget.LinearLayoutManager: LinearLayoutManager(android.content.Context,android.util.AttributeSet,int,int) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setDistrict(java.lang.String) +androidx.hilt.work.R$styleable: int ColorStateListItem_android_alpha +com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored +wangdaye.com.geometricweather.db.entities.LocationEntity: void setFormattedId(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.List defense +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +cyanogenmod.profiles.BrightnessSettings$1: cyanogenmod.profiles.BrightnessSettings createFromParcel(android.os.Parcel) +org.greenrobot.greendao.database.DatabaseOpenHelper: android.content.Context context +wangdaye.com.geometricweather.R$string: int feedback_text_size +com.xw.repo.bubbleseekbar.R$attr: int borderlessButtonStyle +com.turingtechnologies.materialscrollbar.R$id: int action_text +okio.Buffer: byte getByte(long) +okhttp3.internal.platform.Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +com.turingtechnologies.materialscrollbar.R$attr: int menu +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL +okhttp3.Cache$1: okhttp3.Cache this$0 +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets +androidx.coordinatorlayout.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.R$styleable: int Layout_barrierMargin +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.lang.Object poll() +wangdaye.com.geometricweather.R$array: int pollen_unit_values +okhttp3.internal.ws.WebSocketWriter: okio.Buffer buffer +cyanogenmod.providers.CMSettings$Secure$2: boolean validate(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_visible +androidx.constraintlayout.helper.widget.Layer: void setTranslationY(float) +james.adaptiveicon.R$dimen: int compat_button_padding_vertical_material +com.google.gson.stream.JsonReader: void close() +androidx.hilt.R$drawable: R$drawable() +androidx.constraintlayout.widget.R$drawable: int abc_action_bar_item_background_material +androidx.viewpager2.R$id: int action_container +james.adaptiveicon.R$attr: int subtitleTextColor +com.turingtechnologies.materialscrollbar.R$attr: int maxButtonHeight +android.didikee.donate.R$drawable: int abc_list_selector_holo_light +com.google.android.material.R$attr: int chipIconVisible +androidx.appcompat.R$styleable: int SearchView_queryHint +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,io.reactivex.Scheduler) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String uvLevel +com.google.android.material.button.MaterialButton: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_container +androidx.hilt.lifecycle.R$style: R$style() +androidx.work.R$id: int chronometer +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType[] values() +android.didikee.donate.R$layout: int abc_search_view +androidx.transition.R$id: int save_overlay_view +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTint +okhttp3.ConnectionPool: okhttp3.internal.connection.RouteDatabase routeDatabase +cyanogenmod.profiles.RingModeSettings: boolean isDirty() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: int Degrees +wangdaye.com.geometricweather.R$attr: int adjustable +androidx.work.R$id: int accessibility_custom_action_27 +androidx.hilt.work.R$dimen: int notification_large_icon_width +androidx.viewpager.widget.ViewPager: void setPageMargin(int) +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +okio.DeflaterSink +androidx.hilt.work.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.R$id: int text2 +okhttp3.internal.cache2.Relay: okhttp3.internal.cache2.Relay read(java.io.File) +okio.RealBufferedSink: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) +androidx.appcompat.widget.AppCompatTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalBias +com.google.android.material.R$color: int mtrl_tabs_legacy_text_color_selector +com.google.android.material.R$attr: int itemRippleColor +wangdaye.com.geometricweather.R$interpolator: int mtrl_linear_out_slow_in +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +wangdaye.com.geometricweather.R$id: int postLayout +okhttp3.FormBody: void writeTo(okio.BufferedSink) +retrofit2.ParameterHandler$Body: int p +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.String getWeatherText() +androidx.preference.R$attr: int keylines +com.xw.repo.bubbleseekbar.R$attr: int colorAccent +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature RealFeelTemperature +james.adaptiveicon.R$attr: int textAppearanceSearchResultTitle +android.support.v4.os.ResultReceiver: void writeToParcel(android.os.Parcel,int) +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: long remaining +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: void setStatus(int) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Large +androidx.appcompat.R$style: int Widget_AppCompat_Light_SearchView +com.google.android.material.R$attr: int tickColor +com.google.android.material.R$layout: int abc_expanded_menu_layout +com.xw.repo.bubbleseekbar.R$dimen: int disabled_alpha_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeStepGranularity +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void run() +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: SavedStateHandle$SavingStateLiveData(androidx.lifecycle.SavedStateHandle,java.lang.String,java.lang.Object) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen +com.google.android.material.R$styleable: int ActionBar_indeterminateProgressStyle +com.google.android.material.R$attr: int navigationMode +com.google.android.material.R$styleable: int MaterialCardView_checkedIconMargin +james.adaptiveicon.R$string: int abc_action_mode_done +cyanogenmod.app.Profile$NotificationLightMode: int ENABLE +android.didikee.donate.R$drawable: int abc_ab_share_pack_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_disable_only_material_light +io.reactivex.internal.observers.DeferredScalarDisposable: DeferredScalarDisposable(io.reactivex.Observer) +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: float unitFactor +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: int bufferSize +cyanogenmod.app.CMContextConstants +okhttp3.ConnectionPool: boolean cleanupRunning +com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$attr: int hideOnContentScroll +com.google.android.material.R$styleable: int Tooltip_backgroundTint +com.google.android.material.R$dimen: int abc_action_bar_overflow_padding_start_material +wangdaye.com.geometricweather.R$attr: int barrierMargin +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWindLevel +com.jaredrummler.android.colorpicker.R$style: int Platform_V25_AppCompat_Light +wangdaye.com.geometricweather.R$color: int darkPrimary_4 +com.xw.repo.bubbleseekbar.R$layout: int notification_action +com.amap.api.fence.DistrictItem: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +androidx.core.R$id: int info +android.didikee.donate.R$attr: int submitBackground +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +okio.DeflaterSink: java.lang.String toString() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_chainUseRtl +com.bumptech.glide.MemoryCategory: float multiplier +androidx.customview.R$id: int action_image +james.adaptiveicon.R$drawable: int abc_ic_menu_cut_mtrl_alpha +com.google.android.material.R$styleable: int Badge_verticalOffset +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias +com.google.android.material.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +okhttp3.internal.tls.OkHostnameVerifier: int ALT_DNS_NAME +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +com.google.android.material.R$attr: int checkedIcon +wangdaye.com.geometricweather.db.entities.HistoryEntity: long getTime() +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: void setOnFitSystemBarListener(wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout$OnFitSystemBarListener) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String street +com.turingtechnologies.materialscrollbar.R$attr: int itemHorizontalTranslationEnabled +androidx.lifecycle.ProcessLifecycleOwner$2: androidx.lifecycle.ProcessLifecycleOwner this$0 +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_creator +com.turingtechnologies.materialscrollbar.R$attr: int actionModeCloseButtonStyle +com.xw.repo.bubbleseekbar.R$attr: int bsb_second_track_size +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: int status +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 +wangdaye.com.geometricweather.R$attr: int deriveConstraintsFrom +com.google.android.material.R$id: int rounded +com.google.android.material.R$styleable: int[] FontFamilyFont +okhttp3.internal.http2.Http2: java.lang.String[] FRAME_NAMES +wangdaye.com.geometricweather.R$id: int widget_day_week_week_2 +com.bumptech.glide.R$layout: int notification_action +com.google.android.material.R$dimen: int design_bottom_navigation_label_padding +com.google.android.material.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: io.reactivex.Observer downstream +com.bumptech.glide.load.engine.GlideException: void setLoggingDetails(com.bumptech.glide.load.Key,com.bumptech.glide.load.DataSource,java.lang.Class) +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.util.concurrent.atomic.AtomicBoolean cancelled +com.turingtechnologies.materialscrollbar.R$attr: int strokeColor +com.bumptech.glide.load.engine.GlideException +com.google.android.material.chip.Chip: void setCheckedIconTint(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem +wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_android_src +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_enqueueLiveLockScreen +com.google.android.material.chip.Chip: void setCloseIconEnabledResource(int) +okio.ForwardingSink: void flush() +androidx.preference.R$styleable: int PreferenceImageView_maxHeight +androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActivityChooserView +com.google.android.material.card.MaterialCardView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +james.adaptiveicon.R$attr: int dropdownListPreferredItemHeight +wangdaye.com.geometricweather.R$id: int item_weather_daily_air_content +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_backgroundStacked +androidx.activity.R$id: int accessibility_custom_action_16 +wangdaye.com.geometricweather.weather.apis.MfWeatherApi +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_stackFromEnd +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +com.jaredrummler.android.colorpicker.R$styleable: int[] Spinner +androidx.constraintlayout.widget.R$styleable: int ActivityChooserView_initialActivityCount +androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onStart() +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_6 +james.adaptiveicon.R$styleable: int[] LinearLayoutCompat +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Title +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Colored +androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: int UnitType +james.adaptiveicon.R$style: int Animation_AppCompat_DropDownUp +androidx.preference.R$styleable: int PreferenceTheme_dropdownPreferenceStyle +wangdaye.com.geometricweather.R$id: int widget_day_week_weather +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String datetime +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.lang.Throwable error +com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable +android.didikee.donate.R$attr: int showText +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: boolean isDisposed() +com.xw.repo.bubbleseekbar.R$attr: int logo +wangdaye.com.geometricweather.R$attr: int attributeName +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getAqiIndex() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getMoonSetDate() +androidx.appcompat.R$dimen: int abc_list_item_height_small_material +wangdaye.com.geometricweather.R$drawable: int ic_mold +com.google.android.material.R$color: int mtrl_popupmenu_overlay_color +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_popupBackground +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontStyle +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: UnicastSubject$UnicastQueueDisposable(io.reactivex.subjects.UnicastSubject) +james.adaptiveicon.R$dimen: int notification_small_icon_size_as_large +wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_light +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean setDisposable(io.reactivex.disposables.Disposable,int) +com.google.android.material.R$styleable: int Layout_barrierMargin +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_seekBarIncrement +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +wangdaye.com.geometricweather.R$id: int asConfigured +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView_PrimarySurface +com.xw.repo.bubbleseekbar.R$attr: int paddingTopNoTitle +androidx.drawerlayout.R$id: int text +androidx.constraintlayout.widget.R$styleable: int SearchView_searchHintIcon +okhttp3.internal.cache2.Relay: okio.Buffer buffer +cyanogenmod.app.CustomTile$ExpandedStyle: void internalStyleId(int) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver this$0 +com.google.android.material.R$id: int gone +com.bumptech.glide.integration.okhttp.R$style: int Widget_Support_CoordinatorLayout +com.google.android.material.R$styleable: int[] KeyTimeCycle +com.turingtechnologies.materialscrollbar.R$animator +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_homeAsUpIndicator +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitation +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onSubscribe(org.reactivestreams.Subscription) +androidx.preference.R$styleable: int ActionBar_contentInsetLeft +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getLatitude() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_padding_material +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableRight +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +com.bumptech.glide.integration.okhttp.R$color: int ripple_material_light +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endX +com.bumptech.glide.integration.okhttp.R$dimen: int notification_small_icon_background_padding +retrofit2.converter.gson.GsonConverterFactory: retrofit2.converter.gson.GsonConverterFactory create(com.google.gson.Gson) +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetEnd +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.R$id: int transparency_text +androidx.preference.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_30 +android.didikee.donate.R$style: int TextAppearance_AppCompat_Headline +james.adaptiveicon.R$color: int switch_thumb_material_dark +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_weightSum +androidx.constraintlayout.widget.R$attr: int actionModePasteDrawable +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetStart +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: ObservableRefCount$RefCountObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableRefCount,io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection) +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: java.lang.String getInterfaceDescriptor() +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.String toString() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonStyle +com.google.android.material.R$dimen: int abc_text_size_body_2_material +androidx.hilt.R$string: R$string() +retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object result +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setCoDesc(java.lang.String) +androidx.customview.R$id: int icon_group +wangdaye.com.geometricweather.background.receiver.MainReceiver: MainReceiver() +com.google.android.material.R$styleable: int Variant_region_heightMoreThan +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionMenuTextAppearance +androidx.work.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalGap +androidx.appcompat.R$id: int list_item +androidx.lifecycle.ViewModel +com.turingtechnologies.materialscrollbar.R$attr: int rippleColor +io.reactivex.internal.schedulers.ScheduledRunnable: int THREAD_INDEX +org.greenrobot.greendao.AbstractDao: void loadAllUnlockOnWindowBounds(android.database.Cursor,android.database.CursorWindow,java.util.List) +android.didikee.donate.R$styleable: int AppCompatTheme_dialogTheme +wangdaye.com.geometricweather.R$styleable: int[] ActionMenuItemView +com.google.android.material.R$style: int Widget_Support_CoordinatorLayout +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object getAndNullValue() +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onComplete() +okio.RealBufferedSink: okio.BufferedSink write(okio.Source,long) +androidx.customview.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$attr: int logoDescription +android.didikee.donate.R$styleable: int[] ListPopupWindow +okhttp3.Cache$Entry: java.lang.String requestMethod +com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode LAST_ELEMENT +com.jaredrummler.android.colorpicker.R$id: int screen +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData +com.bumptech.glide.R$attr: int layout_dodgeInsetEdges +androidx.preference.R$id: int off +androidx.cardview.R$style: int CardView_Dark +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_hovered_box_stroke_color +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_chip_pressed_translation_z +cyanogenmod.themes.ThemeManager$1: cyanogenmod.themes.ThemeManager this$0 +io.reactivex.internal.util.VolatileSizeArrayList: boolean isEmpty() +androidx.lifecycle.ProcessLifecycleOwner$1: void run() +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemDrawable(int) +androidx.preference.R$integer +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode +androidx.vectordrawable.animated.R$integer +com.google.android.material.R$dimen: int mtrl_slider_track_height +wangdaye.com.geometricweather.R$string: int life_details +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: double Value +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onComplete() +androidx.recyclerview.R$styleable: int FontFamilyFont_fontStyle +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display1 +com.jaredrummler.android.colorpicker.R$id: int cpv_arrow_right +androidx.appcompat.resources.R$id: int normal +james.adaptiveicon.R$attr: int dialogPreferredPadding +android.didikee.donate.R$styleable: int AppCompatTextView_drawableEndCompat +cyanogenmod.themes.ThemeManager: java.util.Set mProcessingListeners +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_type +com.turingtechnologies.materialscrollbar.R$attr: int actionOverflowMenuStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature Temperature +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.LifecycleOwner get() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric Metric +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenManager getInstance(android.content.Context) +wangdaye.com.geometricweather.R$layout: int material_time_chip +com.xw.repo.bubbleseekbar.R$attr: int popupTheme +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeSplitBackground +androidx.lifecycle.LiveData$ObserverWrapper: boolean mActive +com.google.android.material.R$styleable: int KeyAttribute_android_scaleX +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView +com.google.android.material.slider.Slider: void setHaloRadiusResource(int) +wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_EditTextPreference +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm10(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: Temperature(int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle +com.google.android.material.R$dimen: int mtrl_textinput_counter_margin_start +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: int UnitType +androidx.lifecycle.Lifecycle$State +com.bumptech.glide.R$id: int notification_background +androidx.constraintlayout.widget.R$styleable: int ActionMode_height +james.adaptiveicon.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +androidx.appcompat.R$dimen: int abc_dialog_min_width_minor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric Metric +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeTextType +androidx.drawerlayout.R$style: R$style() +com.google.android.gms.location.LocationRequest +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setO3(java.lang.String) +androidx.preference.R$dimen: int abc_text_size_medium_material +androidx.activity.R$attr: int fontProviderPackage +androidx.constraintlayout.widget.R$attr: int autoSizeMaxTextSize +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Latitude +androidx.core.R$id: int accessibility_custom_action_12 +androidx.preference.R$styleable: int[] PopupWindowBackgroundState +wangdaye.com.geometricweather.R$attr: int layout_anchorGravity +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_131 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintEnabled +wangdaye.com.geometricweather.R$attr: int windowFixedHeightMajor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String getUnit() +androidx.loader.R$attr: int fontProviderAuthority +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: boolean done +androidx.hilt.R$anim: int fragment_fade_enter +wangdaye.com.geometricweather.R$styleable: int[] CheckBoxPreference +wangdaye.com.geometricweather.R$styleable: int Variant_constraints +wangdaye.com.geometricweather.R$string: int material_slider_range_start +androidx.hilt.work.R$id: int icon +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void cancel(io.reactivex.internal.queue.SpscLinkedArrayQueue,io.reactivex.internal.queue.SpscLinkedArrayQueue) +androidx.fragment.R$styleable: int FontFamilyFont_android_fontVariationSettings +android.didikee.donate.R$attr: int actionOverflowMenuStyle +androidx.work.NetworkType: androidx.work.NetworkType[] values() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: double Value +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox +com.turingtechnologies.materialscrollbar.R$color: R$color() +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Bridge +com.jaredrummler.android.colorpicker.R$attr: int cpv_dialogTitle +android.support.v4.os.ResultReceiver$MyResultReceiver: android.support.v4.os.ResultReceiver this$0 +androidx.constraintlayout.widget.R$anim: int abc_slide_in_bottom +com.google.android.material.R$attr: int background +androidx.hilt.work.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_checked_black +androidx.lifecycle.ClassesInfoCache +james.adaptiveicon.R$styleable: int ActionMode_backgroundSplit +androidx.appcompat.widget.LinearLayoutCompat: android.graphics.drawable.Drawable getDividerDrawable() +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_pressed_holo_light +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_contentScrim +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Small +wangdaye.com.geometricweather.R$string: int settings_title_notification_background +androidx.appcompat.R$styleable: int ActionBar_subtitleTextStyle +okio.BufferedSink: okio.BufferedSink writeLongLe(long) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextColor +wangdaye.com.geometricweather.R$styleable: int Constraint_chainUseRtl +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ProgressBar +cyanogenmod.profiles.RingModeSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitationProbability(java.lang.Float) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_activityChooserViewStyle +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_measureWithLargestChild +com.xw.repo.bubbleseekbar.R$attr: int switchStyle +com.turingtechnologies.materialscrollbar.R$id: int masked +com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode Hight_Accuracy +okhttp3.internal.http2.Http2Codec: void finishRequest() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_translation_z_hovered_focused +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_w +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getRain() +com.jaredrummler.android.colorpicker.ColorPreferenceCompat +james.adaptiveicon.R$attr: int fontProviderFetchStrategy +james.adaptiveicon.R$attr: int buttonGravity +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog +james.adaptiveicon.R$styleable: int AlertDialog_singleChoiceItemLayout +com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_Solid +cyanogenmod.weather.CMWeatherManager$2$1: void run() +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy valueOf(java.lang.String) +com.google.android.material.R$dimen: int mtrl_navigation_item_icon_padding +com.bumptech.glide.Registry$NoModelLoaderAvailableException +androidx.preference.R$styleable: int[] FontFamilyFont +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: ObservableRepeat$RepeatObserver(io.reactivex.Observer,long,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) +okhttp3.RequestBody$1: void writeTo(okio.BufferedSink) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Headline +androidx.fragment.R$style: int Widget_Compat_NotificationActionText +cyanogenmod.app.suggest.ApplicationSuggestion +com.baidu.location.e.m: m(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) +wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem +androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum Minimum +wangdaye.com.geometricweather.R$drawable: int notif_temp_77 +wangdaye.com.geometricweather.R$styleable: int OnClick_targetId +com.google.android.material.R$attr: int textAppearanceHeadline2 +androidx.work.R$styleable: int FontFamilyFont_android_fontStyle +com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_PrimarySurface +okhttp3.internal.cache.DiskLruCache$Editor: void abortUnlessCommitted() +androidx.appcompat.widget.ContentFrameLayout: void setAttachListener(androidx.appcompat.widget.ContentFrameLayout$OnAttachListener) +com.google.android.material.R$attr: int cardElevation +com.turingtechnologies.materialscrollbar.R$id: int action_menu_divider +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_brightness +androidx.preference.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.R$styleable: int[] BottomSheetBehavior_Layout +wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_appearance +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionButtonStyle +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getWeatherKind() +cyanogenmod.app.ThemeVersion: java.util.List getComponentVersions() +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.String TABLENAME +okhttp3.internal.http2.Http2Connection$5: java.util.List val$requestHeaders +androidx.dynamicanimation.R$styleable: int GradientColor_android_startX +com.google.android.material.R$drawable: int abc_list_selector_holo_light +com.google.android.material.slider.RangeSlider: float getValueTo() +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerClose(boolean,io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver) +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColorItem_android_offset +android.didikee.donate.R$anim: R$anim() +cyanogenmod.app.ProfileGroup: boolean isDefaultGroup() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light +com.google.android.material.R$attr: int iconTint +com.jaredrummler.android.colorpicker.R$id: int regular +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat +wangdaye.com.geometricweather.R$attr: int colorAccent +androidx.fragment.R$id: R$id() +com.google.android.material.tabs.TabLayout: void setTabIconTint(android.content.res.ColorStateList) +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button +androidx.preference.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_EditTextPreference_Material +androidx.constraintlayout.widget.R$attr: int brightness +com.amap.api.location.LocationManagerBase: void enableBackgroundLocation(int,android.app.Notification) +com.google.android.material.R$styleable: int CardView_contentPaddingTop +wangdaye.com.geometricweather.R$drawable: int weather_hail_2 +androidx.preference.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.R$attr: int itemTextAppearance +com.google.android.material.R$dimen: int material_cursor_inset_bottom +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_2 +wangdaye.com.geometricweather.R$string: int settings_title_service_provider +okhttp3.Request$Builder: okhttp3.Request$Builder get() +androidx.appcompat.widget.ContentFrameLayout +wangdaye.com.geometricweather.R$xml: int icon_provider_shortcut_filter +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_gravity +android.didikee.donate.R$color: int abc_primary_text_disable_only_material_light +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer uvIndex +org.greenrobot.greendao.AbstractDao: java.util.List queryRaw(java.lang.String,java.lang.String[]) +james.adaptiveicon.R$dimen: int notification_top_pad +androidx.hilt.work.R$anim: int fragment_fade_enter +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$id: int widget_day_card +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_motionTarget +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property AqiText +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_transitionPathRotate +cyanogenmod.themes.ThemeChangeRequest$1: ThemeChangeRequest$1() +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onSuccess(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int actionViewClass +cyanogenmod.app.suggest.AppSuggestManager: AppSuggestManager(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginLeft +cyanogenmod.alarmclock.ClockContract$InstancesColumns +com.jaredrummler.android.colorpicker.R$layout: int abc_action_menu_item_layout androidx.appcompat.R$style: int Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.db.entities.HourlyEntity -androidx.preference.R$styleable: int LinearLayoutCompat_divider -android.didikee.donate.R$attr: int actionModePopupWindowStyle -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -com.google.android.material.R$attr: int region_heightLessThan -androidx.core.widget.NestedScrollView: float getBottomFadingEdgeStrength() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Type -androidx.core.R$id: int icon_group -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleTextAppearance -cyanogenmod.profiles.BrightnessSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -io.reactivex.internal.subscriptions.SubscriptionArbiter: void drain() -androidx.preference.R$styleable: int AppCompatTheme_actionModeFindDrawable -android.didikee.donate.R$color: int material_grey_850 -okhttp3.internal.Util: Util() -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_OVERLAYS -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: ObservableSampleWithObservable$SampleMainObserver(io.reactivex.Observer,io.reactivex.ObservableSource) +androidx.lifecycle.ViewModelProvider$OnRequeryFactory: void onRequery(androidx.lifecycle.ViewModel) +com.jaredrummler.android.colorpicker.R$attr: int buttonPanelSideLayout +com.google.gson.JsonParseException: JsonParseException(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String getDefenseIcon() +wangdaye.com.geometricweather.R$id: int cpv_color_picker_view +com.turingtechnologies.materialscrollbar.R$styleable: int[] ColorStateListItem +cyanogenmod.app.ProfileGroup$2: int[] $SwitchMap$cyanogenmod$app$ProfileGroup$Mode +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarDivider +okio.ByteString: int lastIndexOf(okio.ByteString) +cyanogenmod.app.Profile$DozeMode: int DISABLE +androidx.preference.R$style: int Base_Widget_AppCompat_Button_Borderless +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +wangdaye.com.geometricweather.R$string: int date_format_short +com.jaredrummler.android.colorpicker.R$styleable: int[] MenuGroup +androidx.work.R$id: int icon_group +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setAqi(java.lang.String) +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy REPLACE +com.jaredrummler.android.colorpicker.R$styleable: int Preference_key +android.didikee.donate.R$attr: int actionModeCutDrawable +com.jaredrummler.android.colorpicker.R$attr: int actionLayout +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +android.didikee.donate.R$drawable: int abc_list_selector_background_transition_holo_light +androidx.appcompat.R$styleable: int GradientColor_android_startX +com.google.android.material.R$id: int easeOut +com.google.android.material.R$style: int Widget_MaterialComponents_BottomSheet_Modal +com.bumptech.glide.R$attr: int layout_anchor +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle +com.google.android.material.textfield.TextInputEditText: java.lang.CharSequence getHint() +androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_1_material +com.google.android.material.R$drawable: int abc_btn_radio_to_on_mtrl_015 +cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String mPackage +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline2 +okhttp3.Route: boolean equals(java.lang.Object) +androidx.coordinatorlayout.R$id: int right_side +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow1h +com.turingtechnologies.materialscrollbar.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop +androidx.preference.R$attr: int navigationIcon +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_exitFadeDuration +androidx.hilt.work.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.vectordrawable.R$styleable: int GradientColorItem_android_offset +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDefaultPhoneSub +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial() +com.google.android.material.R$styleable: int Chip_chipStartPadding +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_splitTrack +com.turingtechnologies.materialscrollbar.R$attr: int toolbarId +com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_RadioButton +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_registerListener +cyanogenmod.weather.WeatherInfo: java.lang.String mKey +cyanogenmod.app.CMContextConstants: java.lang.String CM_ICON_CACHE_SERVICE +com.xw.repo.bubbleseekbar.R$id: int edit_query +android.didikee.donate.R$dimen: int abc_text_size_body_2_material +cyanogenmod.providers.CMSettings$System: java.lang.String QS_SHOW_BRIGHTNESS_SLIDER +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_disabled +wangdaye.com.geometricweather.R$attr: int boxCornerRadiusTopEnd +james.adaptiveicon.R$attr: int logoDescription +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_DarkActionBar +cyanogenmod.platform.R$attr +com.google.android.material.R$styleable: int[] Constraint +com.turingtechnologies.materialscrollbar.R$attr: int chipSpacing +wangdaye.com.geometricweather.R$dimen: int compat_button_padding_vertical_material +cyanogenmod.app.Profile$1: cyanogenmod.app.Profile createFromParcel(android.os.Parcel) +androidx.constraintlayout.widget.R$styleable: int Constraint_constraint_referenced_ids +james.adaptiveicon.R$attr: int titleTextAppearance +okhttp3.internal.http.RealResponseBody: okhttp3.MediaType contentType() +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_trendRecyclerView +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int getPriority() +okhttp3.internal.http2.Settings: Settings() +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType NONE +wangdaye.com.geometricweather.R$styleable: int MaterialToolbar_navigationIconColor +com.jaredrummler.android.colorpicker.R$string: int status_bar_notification_info_overflow +androidx.loader.R$attr: int fontVariationSettings +com.google.android.gms.common.api.Scope: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$styleable: int KeyCycle_motionTarget +com.turingtechnologies.materialscrollbar.R$attr: int chipStandaloneStyle +android.didikee.donate.R$id: int middle +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_ttcIndex +androidx.appcompat.R$color: int dim_foreground_disabled_material_dark +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int OTHER_STATE_CONSUMED_OR_EMPTY +io.reactivex.internal.observers.BlockingObserver: BlockingObserver(java.util.Queue) +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setNumberString(java.lang.String) +androidx.preference.R$id: int accessibility_custom_action_28 +wangdaye.com.geometricweather.R$layout: int container_main_header +com.google.android.material.bottomappbar.BottomAppBar: float getFabTranslationY() +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.ICMHardwareService getService() +androidx.preference.R$styleable: int AppCompatTheme_dialogPreferredPadding +io.reactivex.Observable: io.reactivex.Observable buffer(int,int,java.util.concurrent.Callable) +james.adaptiveicon.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.R$attr: int labelBehavior +com.bumptech.glide.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircleRadius +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Address createAddress(okhttp3.HttpUrl) +androidx.cardview.R$styleable: int CardView_cardUseCompatPadding +wangdaye.com.geometricweather.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.common.basic.models.weather.Astro +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: java.lang.String Unit +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderFetchStrategy +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean checkTerminate() -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -androidx.vectordrawable.R$id: int action_text -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_strokeWidth -com.google.android.material.R$styleable: int Slider_trackHeight -com.jaredrummler.android.colorpicker.R$layout: int abc_expanded_menu_layout -com.google.gson.stream.JsonReader: int PEEKED_NUMBER -com.google.android.material.R$styleable: int Slider_haloRadius -wangdaye.com.geometricweather.R$font -wangdaye.com.geometricweather.R$dimen: int touch_rise_z -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintDimensionRatio -wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_range_end -okhttp3.internal.Util: java.lang.String[] concat(java.lang.String[],java.lang.String) -androidx.hilt.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial -androidx.constraintlayout.widget.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_timeText -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_transformPivotX -com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat -androidx.constraintlayout.widget.ConstraintLayout: int getMinHeight() -wangdaye.com.geometricweather.R$attr: int checkedIconVisible -com.google.android.material.slider.RangeSlider: void setStepSize(float) -cyanogenmod.providers.CMSettings$Secure: java.lang.String getString(android.content.ContentResolver,java.lang.String) -wangdaye.com.geometricweather.R$string: int degree_day_temperature -okhttp3.internal.http2.Http2Connection$7: okhttp3.internal.http2.Http2Connection this$0 -okhttp3.RealCall: void captureCallStackTrace() -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_radius -okhttp3.internal.platform.AndroidPlatform: void connectSocket(java.net.Socket,java.net.InetSocketAddress,int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorAccent -com.google.android.material.R$color: int design_snackbar_background_color -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -androidx.constraintlayout.widget.R$styleable: int Constraint_android_alpha -cyanogenmod.app.ProfileManager: int PROFILES_STATE_ENABLED -james.adaptiveicon.R$integer: int cancel_button_image_alpha -wangdaye.com.geometricweather.R$color: int lightPrimary_2 -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setOnChildScrollUpCallback(androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnChildScrollUpCallback) -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_cursor_material -wangdaye.com.geometricweather.R$id: int slide -androidx.preference.R$style: int Base_Animation_AppCompat_DropDownUp -okio.InflaterSource: java.util.zip.Inflater inflater -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onError(java.lang.Throwable) -okhttp3.internal.http2.Http2: byte TYPE_GOAWAY -cyanogenmod.providers.DataUsageContract: android.net.Uri BASE_CONTENT_URI -james.adaptiveicon.R$styleable: int ViewStubCompat_android_id -androidx.constraintlayout.widget.R$styleable: int Constraint_barrierAllowsGoneWidgets -androidx.preference.R$drawable: int abc_list_selector_holo_dark -com.google.android.material.R$attr: int layoutDuringTransition -androidx.dynamicanimation.R$style: R$style() -com.google.android.material.R$styleable: int[] ExtendedFloatingActionButton -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogTheme -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorBackgroundFloating -androidx.viewpager.widget.ViewPager: void removeOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) -androidx.lifecycle.SavedStateViewModelFactory: void onRequery(androidx.lifecycle.ViewModel) -com.google.android.material.timepicker.ClockHandView -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cv -androidx.drawerlayout.R$attr: int font -com.jaredrummler.android.colorpicker.R$attr: int summaryOn -androidx.recyclerview.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language GERMAN -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.functions.BooleanSupplier stop -wangdaye.com.geometricweather.R$layout: int test_toolbar_surface -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_weightSum -com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_bias -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setEn_US(java.lang.String) -androidx.vectordrawable.animated.R$id: int italic -androidx.legacy.coreutils.R$drawable: int notification_bg_normal -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -cyanogenmod.weather.ICMWeatherManager: java.lang.String getActiveWeatherServiceProviderLabel() -com.xw.repo.bubbleseekbar.R$color: int abc_secondary_text_material_light -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getPivotX() -okio.ForwardingSource: okio.Source delegate -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconDrawable -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSnowPrecipitation(java.lang.Float) -wangdaye.com.geometricweather.R$color: int abc_background_cache_hint_selector_material_dark -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA -com.jaredrummler.android.colorpicker.R$integer: int config_tooltipAnimTime -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_1 -james.adaptiveicon.R$layout: int abc_dialog_title_material -androidx.appcompat.resources.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeSpinner -androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context) -androidx.appcompat.R$id: int action_image -com.xw.repo.bubbleseekbar.R$styleable: int[] View -androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.R$id: int disablePostScroll -androidx.lifecycle.extensions.R$dimen: int notification_top_pad -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit) -android.support.v4.app.INotificationSideChannel$Stub: boolean setDefaultImpl(android.support.v4.app.INotificationSideChannel) -com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context) -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet) -cyanogenmod.providers.CMSettings$1: boolean validate(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: int getStatus() -androidx.legacy.coreutils.R$id: int action_text -androidx.preference.R$styleable: int SearchView_iconifiedByDefault -wangdaye.com.geometricweather.R$attr: int background_color -io.reactivex.Observable: io.reactivex.Observable zipArray(io.reactivex.functions.Function,boolean,int,io.reactivex.ObservableSource[]) -androidx.drawerlayout.widget.DrawerLayout -com.amap.api.location.AMapLocation: java.lang.String j(com.amap.api.location.AMapLocation,java.lang.String) -wangdaye.com.geometricweather.R$attr: int cpv_showColorShades -com.google.android.material.R$styleable: int MaterialButton_android_insetRight -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_logoDescription -androidx.appcompat.R$styleable: int ActionBar_background -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_saturation -com.xw.repo.bubbleseekbar.R$attr: int actionModeFindDrawable -okio.Okio$4: java.io.IOException newTimeoutException(java.io.IOException) -androidx.appcompat.widget.AppCompatImageButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_extra_spacing_horizontal -io.reactivex.Observable: void subscribe(io.reactivex.Observer) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default -wangdaye.com.geometricweather.background.polling.work.worker.NormalUpdateWorker -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -androidx.constraintlayout.widget.R$styleable: int Layout_minHeight -androidx.constraintlayout.widget.R$id: int shortcut -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_rippleColor -wangdaye.com.geometricweather.R$string: int content_des_swipe_right_to_delete -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder query(java.lang.String) -com.google.gson.stream.JsonReader: boolean hasNext() -wangdaye.com.geometricweather.R$styleable: int[] KeyFrame +wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_singleSelection +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTintMode +android.didikee.donate.R$color: int switch_thumb_disabled_material_dark +wangdaye.com.geometricweather.R$attr: int toolbarNavigationButtonStyle +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_LED_OFF_VALIDATOR +com.turingtechnologies.materialscrollbar.R$color: int mtrl_text_btn_text_color_selector +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog +com.google.android.material.slider.BaseSlider: void setFocusedThumbIndex(int) +wangdaye.com.geometricweather.R$attr: int paddingBottomNoButtons +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_maxHeight +androidx.activity.R$id: int async +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String MONTH +com.google.android.gms.signin.internal.zam +wangdaye.com.geometricweather.R$color: int mtrl_text_btn_text_color_selector +io.reactivex.exceptions.MissingBackpressureException: MissingBackpressureException() +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_normal +androidx.lifecycle.SavedStateViewModelFactory: SavedStateViewModelFactory(android.app.Application,androidx.savedstate.SavedStateRegistryOwner,android.os.Bundle) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listDividerAlertDialog +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: java.util.concurrent.Executor callbackExecutor +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemBackground +io.reactivex.Observable: io.reactivex.Completable flatMapCompletable(io.reactivex.functions.Function) +wangdaye.com.geometricweather.common.basic.models.weather.Base +okhttp3.CacheControl$Builder: boolean immutable +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeWetBulbTemperature +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status SUCCESS +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void schedule() +androidx.constraintlayout.widget.R$attr: int drawableTopCompat +androidx.appcompat.R$color: int abc_secondary_text_material_light +androidx.appcompat.R$dimen: int notification_small_icon_size_as_large +cyanogenmod.app.BaseLiveLockManagerService: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +okhttp3.internal.cache2.FileOperator +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_anim_duration +android.didikee.donate.R$attr: int arrowShaftLength +com.google.android.material.R$layout: int abc_alert_dialog_material +androidx.constraintlayout.widget.R$drawable: int abc_list_focused_holo +androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Line2 +com.google.android.material.R$style: int Base_Theme_MaterialComponents +androidx.appcompat.resources.R$dimen: int notification_subtext_size +androidx.appcompat.R$styleable: int AppCompatTheme_checkedTextViewStyle +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +retrofit2.OkHttpCall: okhttp3.Call$Factory callFactory +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.R$attr: int fastScrollVerticalTrackDrawable +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean isDisposed() +androidx.preference.R$id: int search_voice_btn +com.xw.repo.bubbleseekbar.R$attr: int multiChoiceItemLayout +com.xw.repo.bubbleseekbar.R$attr: int actionModeCopyDrawable +androidx.appcompat.R$drawable: int notification_bg_low +androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context,android.util.AttributeSet,int) +com.google.android.gms.common.SignInButton: void setScopes(com.google.android.gms.common.api.Scope[]) +com.jaredrummler.android.colorpicker.R$attr: int dropdownPreferenceStyle +com.jaredrummler.android.colorpicker.R$attr: int switchPreferenceCompatStyle +androidx.preference.R$attr: int drawableSize +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$attr: int touchAnchorSide +cyanogenmod.power.IPerformanceManager$Stub: java.lang.String DESCRIPTOR +androidx.appcompat.R$styleable: int[] LinearLayoutCompat_Layout +com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_ContextMenu +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_tooltipFrameBackground +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onDetach() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String WeatherText +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_2 +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_DIALOG_THEME +wangdaye.com.geometricweather.R$dimen: int material_clock_display_padding +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_default +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties: MfEphemerisResult$Properties() +com.google.android.material.chip.Chip: void setTextEndPaddingResource(int) +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource ACCU +com.amap.api.fence.PoiItem: java.lang.String getTypeCode() +com.google.android.material.R$styleable: int AppCompatTextView_autoSizeMinTextSize +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean writePersistentBytes(java.lang.String,byte[]) +okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String,java.util.Date) +androidx.constraintlayout.widget.Group: Group(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_font +androidx.preference.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object readKey(android.database.Cursor,int) +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light +com.google.android.material.button.MaterialButton: void setIcon(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$anim: int abc_slide_in_top +androidx.preference.R$dimen: int compat_button_padding_vertical_material +okhttp3.internal.http2.Http2Stream: void writeHeaders(java.util.List,boolean) +androidx.lifecycle.LiveData$LifecycleBoundObserver: boolean isAttachedTo(androidx.lifecycle.LifecycleOwner) +cyanogenmod.power.IPerformanceManager: boolean getProfileHasAppProfiles(int) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +cyanogenmod.app.ProfileManager: void updateProfile(cyanogenmod.app.Profile) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_layout +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_QUICK_QS_PULLDOWN_VALIDATOR +wangdaye.com.geometricweather.R$id: int item_weather_daily_title_title +androidx.activity.R$style: R$style() +androidx.work.R$dimen: int compat_button_padding_horizontal_material +androidx.appcompat.resources.R$id: int text +wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity: MultiCityWidgetConfigActivity() +wangdaye.com.geometricweather.R$styleable: int Slider_thumbElevation +com.jaredrummler.android.colorpicker.R$attr: int toolbarStyle +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_round +wangdaye.com.geometricweather.R$drawable: int notif_temp_49 +androidx.constraintlayout.widget.R$dimen: int abc_dialog_min_width_minor +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_pressed +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button +com.turingtechnologies.materialscrollbar.R$attr: int overlapAnchor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: long EpochSet +wangdaye.com.geometricweather.R$drawable: int notif_temp_68 +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_DEFAULT_INDEX +androidx.appcompat.widget.ActivityChooserModel: void setOnChooseActivityListener(androidx.appcompat.widget.ActivityChooserModel$OnChooseActivityListener) +androidx.lifecycle.Lifecycling: int GENERATED_CALLBACK +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarSize +wangdaye.com.geometricweather.R$bool: int config_materialPreferenceIconSpaceReserved +com.xw.repo.bubbleseekbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.R$attr: int actionLayout +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf +android.didikee.donate.R$styleable: int ColorStateListItem_android_alpha +androidx.recyclerview.R$styleable: int GradientColor_android_tileMode +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_iconResEnd +androidx.appcompat.R$styleable: int ActionBar_logo +okhttp3.internal.http.HttpHeaders: long stringToLong(java.lang.String) +com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_pressed +com.google.android.material.R$styleable: int TabLayout_tabBackground +com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getSupportImageTintList() +androidx.viewpager2.R$id: int action_divider +cyanogenmod.providers.CMSettings$Secure: float getFloat(android.content.ContentResolver,java.lang.String) +com.google.android.material.R$color: int abc_search_url_text_normal +androidx.preference.R$styleable: int MultiSelectListPreference_android_entryValues +com.turingtechnologies.materialscrollbar.R$style: int Base_V22_Theme_AppCompat_Light +retrofit2.http.PartMap +io.reactivex.internal.util.EmptyComponent: void cancel() +androidx.appcompat.R$drawable: int abc_switch_track_mtrl_alpha +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_PULSE +androidx.viewpager.widget.PagerTabStrip: int getTabIndicatorColor() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_37 +androidx.preference.R$attr: int windowActionModeOverlay +android.didikee.donate.R$styleable: int RecycleListView_paddingTopNoTitle +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_buttonIconDimen +wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: boolean disposed +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +wangdaye.com.geometricweather.R$styleable: int Constraint_android_maxHeight +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String MobileLink +androidx.preference.R$id: int search_edit_frame +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_width_overflow_material +com.xw.repo.bubbleseekbar.R$attr: int bsb_second_track_color +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionButtonStyle +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_titleCondensed +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_ScrimInsetsFrameLayout +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1 +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_DATAUSAGE +com.google.android.material.R$styleable: int[] MaterialAlertDialogTheme +okio.DeflaterSink: java.util.zip.Deflater deflater +com.google.android.material.R$style: int Widget_AppCompat_ListPopupWindow +androidx.vectordrawable.R$id: int accessibility_custom_action_26 +james.adaptiveicon.R$bool +androidx.preference.R$styleable: int AppCompatTheme_android_windowIsFloating +com.google.android.material.slider.RangeSlider: int getTrackWidth() +androidx.constraintlayout.widget.R$styleable: int Constraint_transitionEasing +wangdaye.com.geometricweather.R$styleable: int MaterialButton_icon +com.google.android.material.R$styleable: int[] StateSet +androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMarkTintMode +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeSplitBackground +james.adaptiveicon.R$styleable: int Toolbar_popupTheme +androidx.preference.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_borderColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String unit +androidx.appcompat.R$styleable: int[] MenuItem +android.didikee.donate.R$styleable: int AppCompatTextView_drawableBottomCompat +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_min +com.amap.api.location.AMapLocationQualityReport: boolean isInstalledHighDangerMockApp() +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean isDisposed() +androidx.preference.R$styleable: int AppCompatTheme_selectableItemBackground +com.xw.repo.bubbleseekbar.R$color: int abc_tint_spinner +androidx.constraintlayout.widget.R$attr: int hideOnContentScroll +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircleRadius +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_EditText +androidx.hilt.lifecycle.R$id: int tag_accessibility_actions +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_corner_radius_small +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +okio.BufferedSource: java.lang.String readUtf8Line() +io.reactivex.exceptions.CompositeException: java.lang.Throwable getCause() +androidx.constraintlayout.widget.R$color: int primary_dark_material_light +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyTitle +wangdaye.com.geometricweather.R$style: int notification_large_title_text +com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context) +wangdaye.com.geometricweather.R$attr: int constraintSetStart +wangdaye.com.geometricweather.R$styleable: int LiveLockScreen_type +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherText +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton_Overflow +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getVibratorIntensity +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherSource(java.lang.String) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties +androidx.viewpager2.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.R$drawable: int shortcuts_refresh +android.didikee.donate.R$drawable: int abc_action_bar_item_background_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary DegreeDaySummary +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldIndex +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Body1 +cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.Map lefts +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +androidx.appcompat.R$id: int action_context_bar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: double Value +androidx.hilt.work.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer freezingHazard +wangdaye.com.geometricweather.R$id: int mtrl_calendar_main_pane +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: KeyguardExternalViewProviderService$Provider$ProviderImpl$5(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) +james.adaptiveicon.R$drawable: int abc_btn_check_material +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeStepGranularity +wangdaye.com.geometricweather.R$drawable: int mtrl_popupmenu_background_dark +androidx.appcompat.R$color: int material_grey_50 +wangdaye.com.geometricweather.R$styleable: int MaterialButton_cornerRadius +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircleAngle +androidx.work.R$drawable: int notify_panel_notification_icon_bg +androidx.viewpager2.R$styleable: int GradientColor_android_centerColor +retrofit2.BuiltInConverters$RequestBodyConverter +androidx.lifecycle.LifecycleService: void onStart(android.content.Intent,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: int UnitType +androidx.legacy.coreutils.R$id: int normal +okhttp3.OkHttpClient$Builder: java.util.List interceptors +com.jaredrummler.android.colorpicker.R$dimen: int cpv_column_width +wangdaye.com.geometricweather.R$id: int widget_day_week_icon +com.google.android.material.R$styleable: int SnackbarLayout_backgroundTint +androidx.appcompat.R$styleable: int[] MenuGroup +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: void setValue(java.lang.String) +com.google.android.material.bottomappbar.BottomAppBar: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() +androidx.constraintlayout.widget.R$attr: int colorBackgroundFloating +androidx.appcompat.R$styleable: int SwitchCompat_android_thumb +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_height +okhttp3.internal.cache.DiskLruCache: void readJournalLine(java.lang.String) +wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_singlechoice +com.google.android.material.R$id: int smallLabel +androidx.constraintlayout.widget.R$drawable: int abc_ic_go_search_api_material +androidx.legacy.coreutils.R$styleable: int[] ColorStateListItem +androidx.hilt.work.R$layout: int notification_action +android.didikee.donate.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +androidx.dynamicanimation.R$styleable: int GradientColor_android_startColor +com.google.android.material.card.MaterialCardView: int getStrokeColor() +wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_grey +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean isDisposed() +com.google.android.material.R$attr: int listPreferredItemPaddingEnd +androidx.preference.R$drawable: int abc_switch_thumb_material +okhttp3.CertificatePinner$Pin +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void dispose() +wangdaye.com.geometricweather.R$styleable: int Transition_constraintSetStart +wangdaye.com.geometricweather.R$anim: int fragment_main_exit +androidx.lifecycle.process.R: R() +okio.Buffer: java.lang.Object clone() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean getForecastHourly() +com.google.android.material.R$attr: int color +wangdaye.com.geometricweather.R$attr: int buttonBarNegativeButtonStyle +com.bumptech.glide.integration.okhttp.R$attr: int alpha +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.R$dimen: int preference_dropdown_padding_start +okhttp3.Interceptor$Chain: okhttp3.Response proceed(okhttp3.Request) +cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_KEYS_CONTROL_RING_STREAM +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button +cyanogenmod.providers.DataUsageContract: java.lang.String FAST_SAMPLES +okhttp3.logging.LoggingEventListener: void responseHeadersEnd(okhttp3.Call,okhttp3.Response) +cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri getThumbailUri() +androidx.viewpager2.R$id: int text +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_maxButtonHeight +okio.ByteString: okio.ByteString toAsciiLowercase() +androidx.appcompat.R$styleable: int StateListDrawable_android_dither +androidx.preference.R$attr: int backgroundStacked +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endY +cyanogenmod.app.Profile: void addProfileGroup(cyanogenmod.app.ProfileGroup) +com.google.android.material.R$styleable: int KeyTimeCycle_waveDecay +com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: FloatingActionButton$Behavior(android.content.Context,android.util.AttributeSet) +okhttp3.internal.http2.Http2: byte TYPE_PRIORITY +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColor +cyanogenmod.profiles.ConnectionSettings: void setOverride(boolean) +com.xw.repo.bubbleseekbar.R$styleable: int[] DrawerArrowToggle +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.WeatherEntity) +com.google.android.material.slider.Slider: void setTrackTintList(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$id: int text +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.appcompat.widget.AppCompatImageButton: android.content.res.ColorStateList getSupportImageTintList() +wangdaye.com.geometricweather.R$color: int material_slider_inactive_track_color +cyanogenmod.app.ThemeComponent: ThemeComponent(java.lang.String,int,int) +wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_xml +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: void setUnit(java.lang.String) +com.google.android.material.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop +com.google.android.material.R$styleable: int CustomAttribute_customDimension +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +androidx.constraintlayout.widget.R$styleable: int TextAppearance_textAllCaps +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: boolean requestDismissAndStartActivity(android.content.Intent) +wangdaye.com.geometricweather.R$drawable: int notif_temp_72 +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Caption +androidx.recyclerview.R$styleable: int FontFamilyFont_android_font +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.functions.Function mapper +wangdaye.com.geometricweather.R$id: int material_hour_text_input +androidx.viewpager2.R$layout: int notification_template_part_time +androidx.constraintlayout.widget.R$styleable: int[] OnSwipe +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: retrofit2.Call $this_await$inlined +cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri getDownloadUri() +wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_title +cyanogenmod.hardware.CMHardwareManager: int FEATURE_KEY_DISABLE +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCardBackgroundColor() +androidx.appcompat.R$styleable: int AppCompatTheme_windowActionBarOverlay +okhttp3.internal.Util: byte[] EMPTY_BYTE_ARRAY +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource[] values() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_primary_mtrl_alpha +wangdaye.com.geometricweather.R$attr: int hideOnContentScroll +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomNavigationView +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getSummary(android.content.Context,java.util.List) +androidx.hilt.lifecycle.R$id: int chronometer +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontWeight +cyanogenmod.externalviews.KeyguardExternalView +androidx.vectordrawable.R$layout: int notification_action +okio.Buffer: boolean rangeEquals(long,okio.ByteString,int,int) +android.didikee.donate.R$styleable: int AppCompatTheme_checkboxStyle +androidx.activity.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge +androidx.lifecycle.reactivestreams.R +com.google.android.material.R$string: int exposed_dropdown_menu_content_description +wangdaye.com.geometricweather.R$styleable: int ActionBar_icon +androidx.appcompat.widget.LinearLayoutCompat: void setMeasureWithLargestChildEnabled(boolean) +com.amap.api.location.AMapLocation: java.lang.String z +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSwoopDuration +wangdaye.com.geometricweather.R$id: int startVertical +cyanogenmod.app.ICMStatusBarManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +androidx.constraintlayout.widget.R$attr: int onPositiveCross +wangdaye.com.geometricweather.R$drawable: int ic_cloud +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void truncate() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded +cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(int,cyanogenmod.app.ThemeComponent,int) +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide +james.adaptiveicon.R$id: int select_dialog_listview +okhttp3.internal.http2.Header: int hashCode() +com.jaredrummler.android.colorpicker.R$anim: int abc_shrink_fade_out_from_bottom +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.preference.R$attr: int layout_insetEdge +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_normal_material_light +android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMark +androidx.appcompat.R$layout: int abc_action_bar_title_item +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_visible +androidx.recyclerview.R$styleable: R$styleable() +retrofit2.Retrofit: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) +com.xw.repo.bubbleseekbar.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial() +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.io.FileSystem fileSystem +androidx.drawerlayout.R$styleable: int GradientColor_android_centerX +android.didikee.donate.R$id: int scrollIndicatorDown +wangdaye.com.geometricweather.R$attr: int msb_scrollMode +androidx.preference.R$attr: int itemPadding +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_borderlessButtonStyle +io.reactivex.internal.subscribers.StrictSubscriber: org.reactivestreams.Subscriber downstream +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric() +androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_max +androidx.constraintlayout.widget.R$dimen: int tooltip_y_offset_touch +cyanogenmod.profiles.StreamSettings$1: java.lang.Object[] newArray(int) +com.google.android.material.R$layout: int abc_search_dropdown_item_icons_2line +okhttp3.Response$Builder: okhttp3.ResponseBody body +wangdaye.com.geometricweather.R$drawable: int notif_temp_10 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar +wangdaye.com.geometricweather.R$id: int refresh_layout +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: BasicIntQueueSubscription() +okhttp3.internal.Util: java.nio.charset.Charset bomAwareCharset(okio.BufferedSource,java.nio.charset.Charset) +androidx.swiperefreshlayout.R$drawable: int notification_tile_bg +androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +androidx.constraintlayout.widget.R$attr: int fontWeight +com.google.android.material.R$dimen: int design_tab_text_size +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ButtonBar +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA +cyanogenmod.app.suggest.ApplicationSuggestion: void writeToParcel(android.os.Parcel,int) +cyanogenmod.providers.CMSettings +james.adaptiveicon.R$attr: int subtitleTextStyle +wangdaye.com.geometricweather.R$attr: int switchPreferenceStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorBackgroundFloating +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getO3() +wangdaye.com.geometricweather.R$styleable: int ActionBar_divider +com.turingtechnologies.materialscrollbar.R$drawable: int notification_template_icon_low_bg +com.google.android.material.R$attr: int editTextColor +wangdaye.com.geometricweather.R$styleable: int Transform_android_scaleY +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getThunderstorm() +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Info +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_borderWidth +android.didikee.donate.R$id: int image +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner androidx.constraintlayout.widget.R$attr: int motionPathRotate -wangdaye.com.geometricweather.R$id: int tag_icon_bottom -wangdaye.com.geometricweather.R$layout: int fragment_main -okhttp3.internal.http.HttpCodec: void flushRequest() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarDivider -androidx.hilt.lifecycle.R$dimen -androidx.hilt.R$style: int Widget_Compat_NotificationActionContainer -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarButtonStyle -cyanogenmod.profiles.AirplaneModeSettings: int describeContents() -cyanogenmod.app.ProfileGroup$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getTreeLevel() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_text_padding_left -okhttp3.internal.cache.DiskLruCache$2 -com.turingtechnologies.materialscrollbar.R$dimen: int hint_alpha_material_dark -androidx.work.R$id: int accessibility_custom_action_17 -androidx.dynamicanimation.animation.DynamicAnimation: void removeEndListener(androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationEndListener) -androidx.drawerlayout.R$id: int notification_main_column_container -wangdaye.com.geometricweather.R$drawable: int clock_minute_dark -androidx.appcompat.R$dimen: int compat_button_inset_horizontal_material -okhttp3.Response$Builder: okhttp3.Response$Builder sentRequestAtMillis(long) -cyanogenmod.profiles.StreamSettings: StreamSettings(android.os.Parcel) -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int HAS_REQUEST_HAS_VALUE -com.google.android.material.R$attr: int drawableLeftCompat -android.support.v4.app.INotificationSideChannel$Default: void notify(java.lang.String,int,java.lang.String,android.app.Notification) -androidx.preference.R$interpolator -io.reactivex.Observable: io.reactivex.Observable doOnTerminate(io.reactivex.functions.Action) -androidx.preference.R$color: int switch_thumb_normal_material_light -wangdaye.com.geometricweather.R$attr: int windowMinWidthMinor -androidx.activity.R$id: int accessibility_custom_action_20 -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: BaseTransientBottomBar$SnackbarBaseLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$drawable: int notif_temp_9 -com.google.android.gms.common.internal.zaw: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.observers.DeferredScalarDisposable: boolean tryDispose() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial -james.adaptiveicon.R$dimen: int abc_dropdownitem_icon_width -com.google.android.material.R$styleable: int ProgressIndicator_showDelay -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -androidx.work.R$id: int accessibility_custom_action_23 -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void drain() -com.google.android.material.R$styleable: int Layout_android_orientation -androidx.hilt.R$id: int accessibility_custom_action_7 -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_backgroundTintMode -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline5 -com.turingtechnologies.materialscrollbar.DragScrollBar: float getHideRatio() -cyanogenmod.app.Profile$TriggerType: Profile$TriggerType() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onComplete() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextTextAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_trackTintMode -james.adaptiveicon.R$styleable: int Toolbar_navigationContentDescription -androidx.appcompat.R$styleable: int DrawerArrowToggle_barLength -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float getMilliMeters(float) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: int UnitType -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -wangdaye.com.geometricweather.R$dimen: int abc_disabled_alpha_material_light -androidx.dynamicanimation.R$id: int time -james.adaptiveicon.R$styleable: int Toolbar_contentInsetEnd -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_anchor -com.google.android.material.R$attr: int haloRadius -androidx.appcompat.R$color: int primary_text_disabled_material_dark -cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getActiveProfile() -com.turingtechnologies.materialscrollbar.Indicator: void setText(int) -wangdaye.com.geometricweather.common.ui.activities.AlertActivity: AlertActivity() -wangdaye.com.geometricweather.R$animator: int weather_hail_3 -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_margin -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_max -android.didikee.donate.R$attr: int paddingStart -com.jaredrummler.android.colorpicker.R$id: int tag_transition_group -okhttp3.internal.cache.CacheInterceptor: okhttp3.Response cacheWritingResponse(okhttp3.internal.cache.CacheRequest,okhttp3.Response) -com.google.android.material.R$attr: int motionDebug -james.adaptiveicon.R$id: int action_bar_root -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: java.lang.Object clone() -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context,android.util.AttributeSet,int) -okio.HashingSink: java.security.MessageDigest messageDigest -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_transitionEasing -com.google.android.material.R$layout: int abc_popup_menu_header_item_layout -androidx.appcompat.R$attr: int menu -androidx.appcompat.widget.ButtonBarLayout -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_month_vertical_padding -okio.DeflaterSink: okio.BufferedSink sink -cyanogenmod.hardware.ICMHardwareService: int[] getDisplayColorCalibration() -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean cancelled -wangdaye.com.geometricweather.R$attr: int cpv_indeterminate -cyanogenmod.app.ProfileManager: void addNotificationGroup(android.app.NotificationGroup) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: java.lang.Runnable run -io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String,int) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindChillTemperature(java.lang.Integer) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_5 -com.google.android.material.R$id: int radio -com.bumptech.glide.R$id: int bottom -com.bumptech.glide.integration.okhttp.R$id: int action_divider -com.google.android.material.R$styleable: int KeyTimeCycle_transitionEasing -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver) -wangdaye.com.geometricweather.R$string: R$string() -okhttp3.internal.http2.Http2Stream: void addBytesToWriteWindow(long) -okhttp3.Cache$CacheRequestImpl$1 -com.amap.api.location.AMapLocation: int D -okhttp3.Response$Builder: long sentRequestAtMillis -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: ObservablePublish$InnerDisposable(io.reactivex.Observer) -com.baidu.location.indoor.c: boolean add(java.lang.Object) -androidx.fragment.R$styleable: int[] GradientColor -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_DrawerArrowToggle -wangdaye.com.geometricweather.main.layouts.MainLayoutManager: MainLayoutManager() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitation -okhttp3.internal.http.RetryAndFollowUpInterceptor: void setCallStackTrace(java.lang.Object) -okhttp3.Response: java.util.List headers(java.lang.String) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -com.google.android.material.R$style: int Widget_AppCompat_DropDownItem_Spinner -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position -androidx.fragment.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$drawable: int notif_temp_18 -com.google.gson.LongSerializationPolicy$2: LongSerializationPolicy$2(java.lang.String,int) -androidx.preference.R$style: int Widget_AppCompat_PopupWindow +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onComplete() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonPhaseDescription +androidx.core.R$drawable: int notification_bg_normal_pressed +com.turingtechnologies.materialscrollbar.R$layout: int notification_template_part_time +androidx.work.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$attr: int numericModifiers +com.google.android.material.R$style: int TextAppearance_Design_HelperText +androidx.constraintlayout.widget.R$id: int sin +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView +wangdaye.com.geometricweather.R$styleable: int ChipGroup_singleLine +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onKeyguardDismissed() +androidx.appcompat.R$anim: int abc_fade_in +james.adaptiveicon.R$styleable: int SearchView_goIcon +cyanogenmod.app.Profile: void addSecondaryUuid(java.util.UUID) +wangdaye.com.geometricweather.R$animator +com.google.android.material.R$attr: int cornerFamilyBottomLeft +okio.Buffer: okio.Buffer writeUtf8(java.lang.String,int,int) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +androidx.vectordrawable.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderPackage +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixTextColor +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BEGIN_OBJECT +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: int UnitType +cyanogenmod.media.MediaRecorder: java.lang.String CAPTURE_AUDIO_HOTWORD_PERMISSION +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitationDuration(java.lang.Float) +com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.drawable.Drawable getStatusBarScrim() +wangdaye.com.geometricweather.R$attr: int contentInsetLeft +android.didikee.donate.R$attr: int panelBackground +wangdaye.com.geometricweather.R$styleable: int[] ListPreference +androidx.swiperefreshlayout.R$color +com.xw.repo.bubbleseekbar.R$string: int abc_menu_delete_shortcut_label +androidx.constraintlayout.widget.R$styleable: int MenuView_preserveIconSpacing +cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup[] getNotificationGroups() +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial Imperial +androidx.transition.R$drawable: int notification_tile_bg +com.google.android.material.R$dimen: int design_tab_max_width +wangdaye.com.geometricweather.R$color: int mtrl_scrim_color +cyanogenmod.externalviews.ExternalView: void onAttachedToWindow() +androidx.core.R$styleable: int[] GradientColorItem +androidx.vectordrawable.R$id: int tag_accessibility_heading +com.google.android.material.R$attr: int controlBackground +wangdaye.com.geometricweather.R$string: int key_forecast_tomorrow +com.xw.repo.bubbleseekbar.R$color: int background_floating_material_dark +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_hint +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableLeft +androidx.fragment.R$id: int accessibility_custom_action_29 +okhttp3.CertificatePinner$Pin: java.lang.String canonicalHostname +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: long serialVersionUID +cyanogenmod.providers.CMSettings$Global: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache +androidx.constraintlayout.widget.R$color: int tooltip_background_light +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd +androidx.swiperefreshlayout.R$dimen: int notification_right_side_padding_top +com.google.android.gms.base.R$string: int common_open_on_phone +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.internal.util.AtomicThrowable error +androidx.transition.R$styleable: int[] GradientColor +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_progress_in_float +com.google.android.material.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_share_mtrl_alpha +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.disposables.Disposable upstream +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton_Overflow +com.google.android.material.R$attr: int actionModeCutDrawable +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarWidgetTheme +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$attr: int isMaterialTheme +io.reactivex.internal.util.AtomicThrowable: java.lang.Throwable terminate() +retrofit2.adapter.rxjava2.Result: boolean isError() +com.google.android.material.R$dimen: int design_snackbar_background_corner_radius +com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_android_color +okhttp3.MultipartBody: okhttp3.MediaType ALTERNATIVE +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setDeviceModeDistanceFilter(float) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_bottom +androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle +com.xw.repo.bubbleseekbar.R$attr: int actionMenuTextAppearance +wangdaye.com.geometricweather.R$string: int key_speed_unit +wangdaye.com.geometricweather.R$id: int container_main_pollen +wangdaye.com.geometricweather.R$string: int total +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.R$string: int feedback_hide_lunar +androidx.appcompat.R$styleable: int AppCompatTextView_fontVariationSettings +wangdaye.com.geometricweather.R$dimen: int mtrl_min_touch_target_size +com.google.android.material.R$styleable: int Slider_android_value +wangdaye.com.geometricweather.R$attr: int path_percent +androidx.fragment.R$attr: R$attr() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabView +androidx.constraintlayout.widget.R$attr: int motionDebug +androidx.constraintlayout.widget.R$attr: int curveFit +com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context) +androidx.preference.R$attr: int fastScrollHorizontalTrackDrawable +android.didikee.donate.R$styleable: int AppCompatTheme_dividerVertical +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: org.reactivestreams.Subscription upstream +com.amap.api.location.AMapLocation: void setCityCode(java.lang.String) +com.google.android.material.R$drawable: int btn_checkbox_checked_mtrl +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_switchTextOn +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setCloudCover(java.lang.Integer) +androidx.constraintlayout.widget.R$id: int startHorizontal +okio.ByteString: byte[] internalArray() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$xml: int perference_service_provider +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +androidx.loader.R$id: int notification_main_column_container +retrofit2.ParameterHandler$QueryMap +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginStart +cyanogenmod.hardware.ICMHardwareService$Stub: java.lang.String DESCRIPTOR +com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_text_padding_right +androidx.activity.R$styleable: int FontFamilyFont_fontStyle +androidx.lifecycle.SavedStateViewModelFactory: android.os.Bundle mDefaultArgs +androidx.preference.R$styleable: int AppCompatTheme_windowMinWidthMinor +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: long serialVersionUID +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedHeightMinor +com.google.android.material.R$style: int Theme_AppCompat_Light_DarkActionBar +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState[] values() +cyanogenmod.weather.WeatherInfo$DayForecast: double getLow() +androidx.core.app.ComponentActivity: ComponentActivity() +androidx.appcompat.R$string +wangdaye.com.geometricweather.common.ui.widgets.TagView: int getCheckedBackgroundColor() +okhttp3.Request: boolean isHttps() +androidx.appcompat.widget.AppCompatEditText: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.R$styleable: int[] MockView +okhttp3.internal.http2.Http2Connection: int INTERVAL_PING +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.util.AtomicThrowable error +android.didikee.donate.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +okhttp3.Dns$1: Dns$1() +androidx.constraintlayout.widget.R$color: int abc_tint_edittext +com.xw.repo.bubbleseekbar.R$color: int dim_foreground_disabled_material_light +androidx.activity.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_Layout_layout_scrollFlags +androidx.fragment.R$layout: int notification_action_tombstone +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_3DES_EDE_CBC_SHA +cyanogenmod.hardware.DisplayMode$1 +com.xw.repo.bubbleseekbar.R$anim +androidx.hilt.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.R$string: int phase_waning_crescent +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: ObservableDebounceTimed$DebounceEmitter(java.lang.Object,long,io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceTimedObserver) +com.google.android.material.R$attr: int endIconMode +com.turingtechnologies.materialscrollbar.R$attr: int tooltipText +androidx.appcompat.R$layout: int abc_list_menu_item_icon +androidx.vectordrawable.animated.R$id: int action_text +okio.Buffer: byte[] readByteArray(long) +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_tileMode +okio.Buffer: okio.Buffer writeTo(java.io.OutputStream,long) +android.didikee.donate.R$attr: int actionModeStyle +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver parent +com.amap.api.location.CoordUtil: boolean a +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorAccent +com.google.android.material.R$dimen: int mtrl_snackbar_background_corner_radius +androidx.fragment.R$id: int accessibility_custom_action_24 +james.adaptiveicon.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.R$bool: int workmanager_test_configuration +com.google.android.material.R$dimen: int design_bottom_sheet_modal_elevation +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags +android.didikee.donate.R$styleable: int DrawerArrowToggle_arrowHeadLength +com.google.android.material.R$id: int textinput_helper_text +androidx.constraintlayout.widget.R$attr: int layout_constraintStart_toStartOf +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_resetAll +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIconSize(int) +com.google.android.material.R$styleable: int Slider_thumbColor +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: java.lang.Integer proba6H +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeight +com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setCircularRevealScrimColor(int) +com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableItem +androidx.preference.R$styleable: int SwitchCompat_android_textOn +wangdaye.com.geometricweather.R$attr: int collapsingToolbarLayoutStyle +androidx.appcompat.R$id: int home +wangdaye.com.geometricweather.R$attr: int layout_constraintCircleRadius +james.adaptiveicon.R$dimen: int abc_panel_menu_list_width +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +androidx.legacy.coreutils.R$styleable: int GradientColor_android_gradientRadius +androidx.lifecycle.ViewModelProviders$DefaultFactory: ViewModelProviders$DefaultFactory(android.app.Application) +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float visibility +okhttp3.Request$Builder: okhttp3.Request$Builder delete() +wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveOffset +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Source +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose Sport +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String quotedAV() +com.amap.api.location.AMapLocationClient: com.amap.api.location.AMapLocation getLastKnownLocation() +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton +com.bumptech.glide.integration.okhttp.R$id: int notification_main_column +okhttp3.internal.http2.Settings: void clear() +com.amap.api.fence.GeoFence: void setPointList(java.util.List) +com.jaredrummler.android.colorpicker.R$attr: int textAllCaps +androidx.preference.R$styleable: int SearchView_android_maxWidth +okhttp3.internal.io.FileSystem$1: FileSystem$1() +androidx.preference.ListPreferenceDialogFragmentCompat +androidx.preference.R$color +com.turingtechnologies.materialscrollbar.R$attr: int hideMotionSpec +com.xw.repo.BubbleSeekBar: void setOnProgressChangedListener(com.xw.repo.BubbleSeekBar$OnProgressChangedListener) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +com.google.android.material.R$layout: int abc_select_dialog_material +james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlHighlight +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean offer(java.lang.Object) +com.google.android.material.R$styleable: int SwitchCompat_thumbTintMode +okhttp3.RealCall: java.lang.String redactedUrl() +androidx.swiperefreshlayout.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.R$attr: int iconSpaceReserved +cyanogenmod.weatherservice.IWeatherProviderService +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Title_Inverse +wangdaye.com.geometricweather.R$array: int pollen_unit_voices +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_switchStyle +com.xw.repo.bubbleseekbar.R$attr: int imageButtonStyle +androidx.appcompat.R$styleable: int ActionMode_titleTextStyle +wangdaye.com.geometricweather.R$attr: int colorOnBackground +com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Action +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean isEntityUpdateable() +com.google.android.material.timepicker.ClockHandView: void setOnActionUpListener(com.google.android.material.timepicker.ClockHandView$OnActionUpListener) +androidx.preference.R$attr: int textColorAlertDialogListItem +wangdaye.com.geometricweather.R$string: int feedback_subtitle_data +cyanogenmod.app.ProfileGroup: android.os.Parcelable$Creator CREATOR +com.google.android.material.slider.RangeSlider: void setValueFrom(float) +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPlaceholderText() +com.google.android.gms.common.internal.safeparcel.SafeParcelable +android.didikee.donate.R$attr: int alertDialogCenterButtons +androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean getNames() +androidx.core.R$id: int accessibility_custom_action_17 +okhttp3.internal.cache.DiskLruCache: long maxSize +com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_icon_width +wangdaye.com.geometricweather.R$styleable: int[] ShapeAppearance +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableLeft +okhttp3.RequestBody$2: void writeTo(okio.BufferedSink) +android.didikee.donate.R$attr: int autoCompleteTextViewStyle +androidx.constraintlayout.widget.R$styleable: int[] ActionBar +android.didikee.donate.R$attr: int textColorSearchUrl +wangdaye.com.geometricweather.R$id: int dialog_resident_location_container +androidx.appcompat.R$styleable: int AppCompatTheme_radioButtonStyle +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableLeft +wangdaye.com.geometricweather.R$id: int firstVisible +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context) +com.google.android.material.navigation.NavigationView: void setCheckedItem(android.view.MenuItem) +okhttp3.HttpUrl: java.lang.String query() +com.turingtechnologies.materialscrollbar.R$attr: int msb_barColor +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_maxWidth +wangdaye.com.geometricweather.R$color: int abc_decor_view_status_guard_light androidx.coordinatorlayout.widget.CoordinatorLayout: int getSuggestedMinimumWidth() -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -android.support.v4.os.IResultReceiver$Stub: int TRANSACTION_send -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_LIVE_LOCK_SCREEN_COMPONENT -com.jaredrummler.android.colorpicker.R$style: int Base_V26_Theme_AppCompat -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_to_on_mtrl_015 -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.UV getUV() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_fabCustomSize -androidx.core.R$dimen: int notification_action_icon_size -com.google.android.material.R$attr: int cornerFamilyBottomRight -io.reactivex.Observable: io.reactivex.Maybe firstElement() -androidx.swiperefreshlayout.R$id: int tag_transition_group -androidx.constraintlayout.widget.R$styleable: int[] Spinner -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit MMHG -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_backgroundTint -androidx.appcompat.R$style: int TextAppearance_AppCompat_Button -com.google.android.material.R$color: int design_dark_default_color_on_surface -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.cardview.R$styleable: int CardView_contentPadding -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.WeatherLocation mWeatherLocation -cyanogenmod.weather.CMWeatherManager -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean -androidx.hilt.work.R$styleable: int FontFamily_fontProviderAuthority -com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Headline6 -com.jaredrummler.android.colorpicker.R$dimen: int abc_cascading_menus_min_smallest_width -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_Cut -com.google.android.material.timepicker.TimePickerView: void setOnDoubleTapListener(com.google.android.material.timepicker.TimePickerView$OnDoubleTapListener) -androidx.constraintlayout.widget.R$attr: int elevation -james.adaptiveicon.R$drawable: int abc_btn_check_to_on_mtrl_000 -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_1 -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_icon_vertical_padding_material -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginStart -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_longpressed_holo -com.turingtechnologies.materialscrollbar.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop -com.jaredrummler.android.colorpicker.R$attr: int preferenceInformationStyle -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer) -org.greenrobot.greendao.AbstractDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -com.google.android.material.R$dimen: int mtrl_badge_horizontal_edge_offset -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: io.reactivex.Observer observer -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getWeatherText() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: int getMinuteInterval() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours Past12Hours -com.amap.api.location.AMapLocation -com.amap.api.location.DPoint: double getLongitude() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator LIVE_DISPLAY_HINTED_VALIDATOR -cyanogenmod.app.CustomTile: android.app.PendingIntent onClick -androidx.constraintlayout.widget.R$id: int icon -wangdaye.com.geometricweather.R$dimen: int design_fab_size_normal -io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver INSTANCE -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric() -androidx.activity.R$styleable: int GradientColor_android_centerX -com.google.android.material.R$styleable: int GradientColor_android_endY -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -james.adaptiveicon.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -androidx.transition.R$dimen: int compat_button_inset_vertical_material -androidx.appcompat.R$styleable: int View_paddingStart -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Menu -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTheme -wangdaye.com.geometricweather.R$dimen: int abc_text_size_menu_header_material -androidx.viewpager.R$layout: int notification_action_tombstone -com.google.android.material.R$styleable: int ConstraintSet_flow_lastVerticalBias -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_contentDescription +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu +androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_width_overflow_material +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onComplete() +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SeekBar +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_container +wangdaye.com.geometricweather.R$id: int progress_horizontal +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_height_material +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_13 +androidx.lifecycle.Lifecycling: java.lang.reflect.Constructor generatedConstructor(java.lang.Class) +com.google.gson.stream.JsonScope: int DANGLING_NAME +com.google.android.material.textfield.TextInputLayout: void setEndIconOnClickListener(android.view.View$OnClickListener) +com.google.android.material.R$attr: int actionModeCloseButtonStyle +androidx.appcompat.resources.R$id: int notification_background +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Chip +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String hexAV() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.util.Date date +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setAqiText(java.lang.String) +androidx.drawerlayout.R$color: int secondary_text_default_material_light +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +androidx.vectordrawable.animated.R$drawable: int notification_bg +com.google.android.material.R$styleable: int BottomNavigationView_itemTextColor +androidx.constraintlayout.widget.R$attr: int progressBarStyle +androidx.preference.R$styleable: int ColorStateListItem_android_color +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_closeItemLayout +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_rebuildResourceCache +com.amap.api.location.AMapLocation$1: java.lang.Object createFromParcel(android.os.Parcel) +com.github.rahatarmanahmed.cpv.CircularProgressView: void setMaxProgress(float) +com.google.android.material.slider.Slider: void setValue(float) +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$styleable: int[] SwitchPreferenceCompat +androidx.lifecycle.ProcessLifecycleOwner$2: ProcessLifecycleOwner$2(androidx.lifecycle.ProcessLifecycleOwner) +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.lang.String selected +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMenuView +com.google.android.material.appbar.MaterialToolbar +com.xw.repo.bubbleseekbar.R$style: R$style() +retrofit2.ParameterHandler$QueryName +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.internal.util.AtomicThrowable errors +wangdaye.com.geometricweather.R$layout: int design_bottom_navigation_item +androidx.core.R$id: int time +androidx.preference.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit KPH +androidx.work.R$id: R$id() +android.didikee.donate.R$dimen: int abc_text_size_button_material +androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$drawable: int ic_ragweed +com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_material +androidx.hilt.work.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction Direction +com.google.android.material.R$styleable: int ConstraintSet_flow_firstVerticalBias +okhttp3.internal.http2.Http2Stream$FramingSource: okhttp3.internal.http2.Http2Stream this$0 +com.google.android.material.R$styleable: int SnackbarLayout_android_maxWidth +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: AccuAlertResult$Area$LastAction() +james.adaptiveicon.R$style: int Platform_V25_AppCompat +io.reactivex.Observable: io.reactivex.Observable scan(java.lang.Object,io.reactivex.functions.BiFunction) +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animAutostart +android.didikee.donate.R$styleable: int TextAppearance_android_textFontWeight +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgressBackgroundColor(int) +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onNext(java.lang.Object) +androidx.drawerlayout.R$layout: int notification_template_part_chronometer +androidx.hilt.R$id +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getRainPrecipitation() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitationProbability +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function) +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onComplete() +androidx.preference.R$color: int abc_background_cache_hint_selector_material_light +android.didikee.donate.R$styleable: int AppCompatTextView_drawableLeftCompat +com.google.android.material.R$attr: int dialogPreferredPadding +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List area +com.google.android.material.R$color: int design_dark_default_color_background +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_AutoCompleteTextView +retrofit2.OptionalConverterFactory +androidx.recyclerview.widget.RecyclerView: boolean getPreserveFocusAfterLayout() +androidx.constraintlayout.widget.R$attr: int tooltipText +retrofit2.RequestBuilder: java.lang.String PATH_SEGMENT_ALWAYS_ENCODE_SET +com.google.android.material.R$id: int tag_unhandled_key_listeners +androidx.preference.R$attr: int lastBaselineToBottomHeight +james.adaptiveicon.R$style: int Widget_AppCompat_ButtonBar +wangdaye.com.geometricweather.R$attr: int enabled +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean checkTerminated(boolean,boolean,io.reactivex.Observer,boolean,io.reactivex.internal.operators.observable.ObservableZip$ZipObserver) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_toolbar_default_height +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_selectableItemBackground +cyanogenmod.profiles.StreamSettings: void readFromParcel(android.os.Parcel) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +okio.RealBufferedSink: okio.BufferedSink writeByte(int) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: ExternalViewProviderService$Provider$ProviderImpl$6(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.R$id: int action_mode_bar +cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(android.os.Parcel) +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: long contentLength() +okhttp3.internal.http2.Http2: java.lang.String frameLog(boolean,int,int,byte,byte) +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_lightIcon +androidx.preference.R$color: int foreground_material_dark +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +com.xw.repo.BubbleSeekBar: void setTrackColor(int) +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: org.reactivestreams.Subscriber downstream +wangdaye.com.geometricweather.R$color: int material_slider_active_track_color +com.xw.repo.bubbleseekbar.R$attr: int windowMinWidthMajor +okhttp3.internal.http2.Settings: int getMaxHeaderListSize(int) +com.google.android.material.R$id: int save_overlay_view +androidx.constraintlayout.widget.R$layout: int abc_action_mode_bar +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_Solid +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Subhead_Inverse +android.didikee.donate.R$dimen: int abc_disabled_alpha_material_light +retrofit2.HttpException: java.lang.String message() +io.reactivex.internal.subscriptions.DeferredScalarSubscription: java.lang.Object value +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: java.util.concurrent.atomic.AtomicReference inner +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowDy +com.jaredrummler.android.colorpicker.R$color: int primary_text_default_material_dark +androidx.appcompat.R$string: int abc_capital_off +androidx.activity.R$styleable: int FontFamily_fontProviderCerts +androidx.appcompat.R$id: int notification_main_column_container +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_10 +androidx.constraintlayout.widget.R$attr: int transitionFlags +androidx.preference.R$color: int primary_text_default_material_dark +androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyleSmall +com.google.android.material.appbar.CollapsingToolbarLayout: void setTitle(java.lang.CharSequence) +wangdaye.com.geometricweather.R$color: int mtrl_chip_ripple_color +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_disabled_z +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart +cyanogenmod.weather.CMWeatherManager$2$2: cyanogenmod.weather.CMWeatherManager$2 this$1 +wangdaye.com.geometricweather.R$styleable: int[] MotionTelltales +androidx.preference.R$dimen: int abc_text_size_subhead_material +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_NOTIF_COUNT +androidx.appcompat.widget.ActionBarOverlayLayout: void setActionBarVisibilityCallback(androidx.appcompat.widget.ActionBarOverlayLayout$ActionBarVisibilityCallback) +androidx.constraintlayout.widget.R$id: int group_divider +androidx.core.R$dimen: int compat_button_padding_vertical_material +androidx.legacy.coreutils.R$dimen: int notification_large_icon_height +io.reactivex.Observable: io.reactivex.Single collect(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer) +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setSwitchView(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout) +androidx.activity.R$drawable: int notification_action_background +com.turingtechnologies.materialscrollbar.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.common.basic.models.weather.Alert: long time +okio.DeflaterSink: void close() +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$EntrySet entrySet +wangdaye.com.geometricweather.R$string: int key_forecast_today_time +androidx.preference.R$id: int text +com.bumptech.glide.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedIndex(java.lang.Integer) +com.jaredrummler.android.colorpicker.R$string: int cpv_presets +com.google.android.gms.common.internal.zaw: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.helper.widget.Flow: void setVerticalBias(float) +okhttp3.internal.http2.Http2Codec: java.lang.String ENCODING +com.github.rahatarmanahmed.cpv.CircularProgressView: float indeterminateSweep +com.jaredrummler.android.colorpicker.R$attr: int spanCount +okhttp3.Response: java.lang.String message() +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode PARTLY_CLOUDY +androidx.activity.R$dimen: int notification_right_side_padding_top +android.didikee.donate.R$color: int foreground_material_dark +com.bumptech.glide.Registry$MissingComponentException: Registry$MissingComponentException(java.lang.String) +com.google.android.material.R$id: int forever +com.google.android.material.R$styleable: int MaterialCalendar_yearStyle +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getUvLevel() +androidx.activity.R$styleable: int FontFamilyFont_font +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dividerHorizontal +androidx.preference.R$style: int Base_V7_Theme_AppCompat +retrofit2.adapter.rxjava2.ResultObservable +androidx.preference.PreferenceGroup: PreferenceGroup(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$color: int abc_search_url_text_pressed +androidx.preference.R$color: int abc_tint_switch_track +androidx.work.R$styleable: int GradientColorItem_android_offset +com.google.android.material.R$dimen: int hint_pressed_alpha_material_dark +wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundTomorrowForecastUpdateService: Hilt_ForegroundTomorrowForecastUpdateService() +androidx.vectordrawable.animated.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$attr: int layout_constraintVertical_chainStyle +androidx.vectordrawable.animated.R$styleable: int[] FontFamilyFont +com.google.android.material.internal.ParcelableSparseArray +com.google.android.material.R$styleable: int Chip_checkedIconVisible +androidx.hilt.R$style: int TextAppearance_Compat_Notification_Info +com.google.android.material.internal.StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException: StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomAppBar +com.google.android.material.R$id: int notification_main_column +com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.util.SparseArray getBadgeDrawables() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation +com.google.android.material.R$dimen: int abc_list_item_padding_horizontal_material +okhttp3.internal.connection.RouteDatabase: java.util.Set failedRoutes +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver +io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function,boolean,int) +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setRequestType(cyanogenmod.themes.ThemeChangeRequest$RequestType) +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void setCancellable(io.reactivex.functions.Cancellable) +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_toId +io.reactivex.Observable: io.reactivex.Observable buffer(int) +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int consumed +wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_alphaChannelVisible +com.google.android.material.R$layout: int mtrl_calendar_day +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator +okio.RealBufferedSource: java.lang.String toString() +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean delayError +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_dialogTitle +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_backgroundTint +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_2 +android.didikee.donate.R$drawable: int abc_item_background_holo_light +androidx.appcompat.resources.R$attr: int fontProviderPackage +okhttp3.Request +okhttp3.Call: void cancel() +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_default +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDegreeDayTemperature(java.lang.Integer) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_6 +android.didikee.donate.R$style: int Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: double GmtOffset +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_begin +wangdaye.com.geometricweather.R$styleable: int[] ViewPager2 +okio.ForwardingTimeout: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) +cyanogenmod.app.Profile$Type: int TOGGLE +cyanogenmod.themes.ThemeChangeRequest: long getWallpaperId() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getShortDescription() +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Headline +android.didikee.donate.R$attr: int collapseContentDescription +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlNormal +okhttp3.internal.http2.Http2Stream: okio.Source getSource() +androidx.constraintlayout.widget.R$attr: int flow_firstVerticalStyle +com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialCardView +android.didikee.donate.R$drawable: int abc_list_pressed_holo_light +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_elevation +androidx.recyclerview.R$layout: int custom_dialog +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_vertical_padding +wangdaye.com.geometricweather.R$string: int about_retrofit +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean,int) +com.turingtechnologies.materialscrollbar.R$id: int wrap_content +wangdaye.com.geometricweather.R$id: int bidirectional +okhttp3.RequestBody$1: okio.ByteString val$content +androidx.recyclerview.R$styleable: int[] FontFamily +androidx.constraintlayout.widget.R$styleable: int Variant_region_heightLessThan +com.google.android.material.slider.BaseSlider: void setThumbStrokeColorResource(int) +androidx.transition.R$id: int time +wangdaye.com.geometricweather.R$attr: int msb_rightToLeft +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$attr: int ratingBarStyle +androidx.preference.R$color: int preference_fallback_accent_color +james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +cyanogenmod.power.PerformanceManagerInternal: void launchBoost() +com.google.android.gms.common.internal.safeparcel.SafeParcelReader$ParseException: SafeParcelReader$ParseException(java.lang.String,android.os.Parcel) +okio.Buffer: boolean request(long) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +wangdaye.com.geometricweather.R$style: int Preference_SwitchPreference_Material +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Button +okio.SegmentedByteString: java.lang.String utf8() +android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.google.android.material.transformation.FabTransformationSheetBehavior: FabTransformationSheetBehavior() +com.google.android.gms.location.LocationResult +com.google.android.material.button.MaterialButtonToggleGroup: int getLastVisibleChildIndex() +androidx.core.R$attr: int fontProviderFetchTimeout +androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackground(android.graphics.drawable.Drawable) +com.google.android.material.R$attr: int closeItemLayout +cyanogenmod.weather.WeatherLocation$Builder: WeatherLocation$Builder(java.lang.String,java.lang.String) +okhttp3.internal.platform.Platform: void log(int,java.lang.String,java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_separator_vertical_padding +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_drawableSize +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.swiperefreshlayout.R$drawable: int notification_icon_background +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderDivider +com.google.android.material.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +com.jaredrummler.android.colorpicker.R$drawable: int abc_action_bar_item_background_material +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLocationCacheEnable(boolean) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node root +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void dispose() +androidx.constraintlayout.widget.R$id: int aligned +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_to_on_mtrl_000 +androidx.hilt.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$style: int Widget_Design_Snackbar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours Past24Hours +okhttp3.internal.cache.CacheStrategy: CacheStrategy(okhttp3.Request,okhttp3.Response) +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getWeatherSource() +androidx.preference.R$style: int Widget_AppCompat_Light_PopupMenu +okio.Segment: okio.Segment next +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_icon_padding +com.google.android.material.R$id: int action_text +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_visible +com.google.android.material.R$styleable: int CustomAttribute_customBoolean +com.google.android.material.R$styleable: int[] MaterialRadioButton +androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getCollapseIcon() +androidx.cardview.widget.CardView: float getMaxCardElevation() +androidx.appcompat.R$styleable: int ViewStubCompat_android_id +androidx.activity.R$id: int title +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationY +androidx.preference.ExpandButton +wangdaye.com.geometricweather.R$style: int AlertDialog_AppCompat +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String ICON_URI +com.turingtechnologies.materialscrollbar.R$color: int background_material_light +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int priority +james.adaptiveicon.R$id: int textSpacerNoButtons +io.reactivex.Observable: io.reactivex.Observable repeatWhen(io.reactivex.functions.Function) +androidx.constraintlayout.widget.R$id: int autoCompleteToStart +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: void setOnWeatherIconChangingListener(wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView$OnWeatherIconChangingListener) +wangdaye.com.geometricweather.R$styleable: int[] DrawerLayout +androidx.appcompat.R$attr: int buttonCompat +james.adaptiveicon.R$dimen: int abc_disabled_alpha_material_dark +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void request(long) +androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_toId +wangdaye.com.geometricweather.R$styleable: int MockView_mock_showDiagonals +androidx.dynamicanimation.R$layout +com.google.android.material.R$dimen: int abc_action_bar_stacked_tab_max_width +james.adaptiveicon.R$attr: int actionBarTheme +androidx.appcompat.widget.Toolbar: int getTitleMarginBottom() +android.didikee.donate.R$id: int activity_chooser_view_content +com.amap.api.location.AMapLocationClientOption: boolean isLocationCacheEnable() +okhttp3.internal.http2.Http2Connection$1: int val$streamId +cyanogenmod.app.IPartnerInterface: boolean setZenModeWithDuration(int,long) +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_animationDuration +com.amap.api.location.APSServiceBase: void onDestroy() +wangdaye.com.geometricweather.R$attr: int bsb_section_text_size +com.google.android.material.R$styleable: int FloatingActionButton_backgroundTintMode +com.google.android.material.R$id: int mini +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getMoonRiseDate() +com.google.android.material.R$id: int start +james.adaptiveicon.R$styleable: int Toolbar_contentInsetEndWithActions +android.didikee.donate.R$styleable: int Toolbar_buttonGravity +wangdaye.com.geometricweather.R$styleable: int SearchView_layout +com.google.android.material.R$styleable: int Layout_layout_constraintHeight_default +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_2 +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setOnSwitchListener(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout$OnSwitchListener) +okhttp3.Cache$1: void trackResponse(okhttp3.internal.cache.CacheStrategy) +io.reactivex.Observable: io.reactivex.Observable mergeArray(int,int,io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motion_postLayoutCollision +com.google.android.material.R$style: int TestStyleWithLineHeightAppearance +com.google.android.material.R$styleable: int[] ConstraintLayout_placeholder +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Alert +androidx.loader.R$id: int notification_main_column +james.adaptiveicon.R$styleable: int TextAppearance_android_textColorLink +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_min +io.reactivex.disposables.ReferenceDisposable: void dispose() +wangdaye.com.geometricweather.R$styleable: int Slider_labelStyle +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.Scheduler$Worker worker +wangdaye.com.geometricweather.R$id: int cpv_arrow_right +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language GERMAN +androidx.preference.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.appcompat.R$color: int abc_tint_switch_track +com.google.android.material.R$styleable: int TextInputLayout_shapeAppearance +com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_padding_vertical_material +cyanogenmod.app.ICMStatusBarManager: void removeCustomTileFromListener(cyanogenmod.app.ICustomTileListener,java.lang.String,java.lang.String,int) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_tab_indicator_material +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: void cancel() +androidx.preference.R$styleable: int StateListDrawable_android_variablePadding +wangdaye.com.geometricweather.db.entities.MinutelyEntity +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: io.reactivex.Observer downstream +com.google.android.material.R$attr: int paddingTopNoTitle +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription this$0 +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display2 +androidx.viewpager2.R$styleable: int ColorStateListItem_android_alpha +androidx.constraintlayout.helper.widget.Layer: void setPivotY(float) +com.google.android.material.R$attr: int tickVisible +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Headline +com.jaredrummler.android.colorpicker.R$dimen: int abc_button_padding_vertical_material +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickInactiveTintList() +androidx.preference.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTintMode +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motionTarget +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_3 +cyanogenmod.weather.CMWeatherManager$2$2: void run() +com.turingtechnologies.materialscrollbar.R$attr: int colorControlNormal +com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Dialog +com.turingtechnologies.materialscrollbar.R$attr: int lastBaselineToBottomHeight +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_summaryOn +com.xw.repo.bubbleseekbar.R$id: int action_bar_container +androidx.vectordrawable.animated.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date updateDate +androidx.appcompat.R$attr: int switchStyle +com.google.android.material.R$style: int TextAppearance_Design_Snackbar_Message +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_begin +com.google.android.material.R$styleable: int AppCompatTheme_actionBarSplitStyle +androidx.appcompat.R$styleable: int DrawerArrowToggle_arrowShaftLength +com.xw.repo.bubbleseekbar.R$styleable: int ButtonBarLayout_allowStacking +androidx.lifecycle.LiveData: void assertMainThread(java.lang.String) +okhttp3.internal.http2.Http2Stream$FramingSource: okio.Buffer readBuffer +androidx.preference.R$attr: int titleTextAppearance +com.turingtechnologies.materialscrollbar.R$layout: int abc_dialog_title_material +androidx.appcompat.R$styleable: int Spinner_android_entries +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_radius_on_dragging +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontWeight +cyanogenmod.weather.RequestInfo: android.location.Location getLocation() +androidx.lifecycle.Transformations$2$1: void onChanged(java.lang.Object) +androidx.fragment.R$dimen: int notification_top_pad +james.adaptiveicon.R$dimen: int abc_dialog_fixed_height_minor +com.google.android.material.button.MaterialButton: java.lang.String getA11yClassName() +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.internal.operators.observable.ObservableCache$Node node +wangdaye.com.geometricweather.R$id: int dialog_time_setter_cancel +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf +android.didikee.donate.R$integer: int cancel_button_image_alpha +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabGravity +com.google.android.material.R$attr: int behavior_fitToContents +wangdaye.com.geometricweather.R$anim: int popup_show_bottom_right +com.google.android.material.R$styleable: int[] ClockFaceView +androidx.appcompat.R$id: int accessibility_custom_action_31 +com.google.android.material.R$styleable: int RadialViewGroup_materialCircleRadius +wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) +wangdaye.com.geometricweather.R$drawable: int notification_template_icon_bg +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_navigationMode +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_summaryOn +retrofit2.HttpServiceMethod: retrofit2.Converter createResponseConverter(retrofit2.Retrofit,java.lang.reflect.Method,java.lang.reflect.Type) +cyanogenmod.weather.WeatherInfo: int access$502(cyanogenmod.weather.WeatherInfo,int) +james.adaptiveicon.R$attr: int color +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_HOURLY_OVERVIEW +com.xw.repo.bubbleseekbar.R$attr: int height +retrofit2.Invocation: java.lang.reflect.Method method() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: ExecutorScheduler$DelayedRunnable(java.lang.Runnable) +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getDensityText(android.content.Context,float) +android.didikee.donate.R$drawable: int abc_btn_borderless_material +com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial() +okio.RealBufferedSink$1: okio.RealBufferedSink this$0 +cyanogenmod.providers.CMSettings$DiscreteValueValidator +com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: AccuCurrentResult$Temperature$Imperial() +com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int BottomNavigationView_itemIconSize +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void dispose() +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getGrassIndex() +james.adaptiveicon.R$style: int Widget_AppCompat_DropDownItem_Spinner +com.google.android.material.R$attr: int thumbColor +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderAuthority +androidx.preference.R$color: int bright_foreground_material_dark +androidx.constraintlayout.widget.R$attr: int contrast +wangdaye.com.geometricweather.R$styleable: int KeyCycle_transitionEasing +androidx.work.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$dimen: int appcompat_dialog_background_inset +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setPivotY(float) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction +com.amap.api.location.AMapLocationQualityReport: boolean g +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: ExternalViewProviderService$Provider$ProviderImpl$5(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +androidx.preference.R$styleable: int ActionBar_itemPadding +wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity: DayWeekWidgetConfigActivity() +com.xw.repo.bubbleseekbar.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$layout: int abc_screen_simple +com.amap.api.location.DPoint$1: java.lang.Object[] newArray(int) +androidx.constraintlayout.widget.R$attr: int actionModePopupWindowStyle +wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_selectionRequired +androidx.loader.R$drawable: int notification_bg +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status SUCCESS +androidx.constraintlayout.widget.R$styleable: R$styleable() +androidx.viewpager.R$id: R$id() +androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchAnchorId +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sAlwaysTrueValidator +okio.InflaterSource: void releaseInflatedBytes() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: int UnitType +wangdaye.com.geometricweather.R$attr: int circularInset +androidx.constraintlayout.utils.widget.ImageFilterView: float getRoundPercent() +okhttp3.Response: java.util.List headers(java.lang.String) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void dispose() +androidx.appcompat.R$style: int Widget_AppCompat_RatingBar_Small +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatHoveredFocusedTranslationZResource(int) +androidx.coordinatorlayout.R$id: int top +wangdaye.com.geometricweather.R$drawable: int widget_card_light_20 +androidx.constraintlayout.widget.R$dimen: int abc_text_size_medium_material +okhttp3.internal.tls.CertificateChainCleaner: okhttp3.internal.tls.CertificateChainCleaner get(javax.net.ssl.X509TrustManager) +wangdaye.com.geometricweather.R$attr: int popupMenuBackground +androidx.lifecycle.ViewModel: void closeWithRuntimeException(java.lang.Object) +okhttp3.internal.http2.Http2Connection$6 +com.google.android.material.R$attr: int backgroundInsetTop +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver inner +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTag +okio.HashingSource: javax.crypto.Mac mac +com.turingtechnologies.materialscrollbar.DateAndTimeIndicator +wangdaye.com.geometricweather.background.polling.basic.UpdateService +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicator(int) +com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_scrollable_min_width +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_percent +james.adaptiveicon.R$dimen: int abc_progress_bar_height_material +wangdaye.com.geometricweather.R$styleable: int Transform_android_scaleX +androidx.drawerlayout.R$styleable: int GradientColor_android_startY +com.xw.repo.bubbleseekbar.R$attr: int bsb_max +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_allowCustom +com.google.android.material.R$attr: int layout_constraintHorizontal_bias +android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +androidx.constraintlayout.widget.R$id: int select_dialog_listview +com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +androidx.activity.R$drawable: int notification_bg_normal +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeManager sInstance +com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorSize() +androidx.vectordrawable.R$drawable: int notification_bg_low_normal +android.didikee.donate.R$color: int background_floating_material_light +androidx.lifecycle.ClassesInfoCache$CallbackInfo +com.turingtechnologies.materialscrollbar.R$dimen: int notification_action_icon_size com.google.android.material.R$string: int mtrl_picker_toggle_to_text_input_mode -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int IconCode -androidx.preference.R$attr: int actionBarWidgetTheme -cyanogenmod.app.IPartnerInterface$Stub -com.google.android.material.R$styleable: int[] ThemeEnforcement -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindChillTemperature(java.lang.Integer) -cyanogenmod.hardware.DisplayMode: DisplayMode(android.os.Parcel,cyanogenmod.hardware.DisplayMode$1) -james.adaptiveicon.R$attr: int tickMarkTint -james.adaptiveicon.R$attr: int closeItemLayout -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonText -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rx() -androidx.hilt.work.R$bool: int workmanager_test_configuration -androidx.appcompat.R$style: int Base_V23_Theme_AppCompat -androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context) -io.reactivex.Observable: io.reactivex.Observable empty() -com.google.android.material.R$styleable: int[] MaterialButtonToggleGroup -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_4 -com.google.android.material.timepicker.RadialViewGroup: RadialViewGroup(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$attr: int fontStyle -wangdaye.com.geometricweather.R$styleable: int[] ListPopupWindow -com.amap.api.location.AMapLocationClientOption: void setLocationProtocol(com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol) -okhttp3.internal.publicsuffix.PublicSuffixDatabase: okhttp3.internal.publicsuffix.PublicSuffixDatabase instance -com.amap.api.location.DPoint$1: DPoint$1() -wangdaye.com.geometricweather.R$styleable: int Constraint_android_maxWidth -android.didikee.donate.R$styleable: int ActionBar_popupTheme -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Large_Inverse -okhttp3.internal.cache.DiskLruCache$2: okhttp3.internal.cache.DiskLruCache this$0 -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_bottom_padding -androidx.preference.R$dimen: int abc_action_button_min_height_material -com.google.android.material.R$drawable: int abc_btn_check_to_on_mtrl_015 -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter -com.google.gson.stream.JsonWriter: void setSerializeNulls(boolean) -james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionBar -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode[] getDisplayModes() -wangdaye.com.geometricweather.background.receiver.widget.WidgetTextProvider -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void cancel() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX() -com.jaredrummler.android.colorpicker.R$dimen: int notification_action_icon_size -cyanogenmod.power.IPerformanceManager$Stub: android.os.IBinder asBinder() -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_android_minHeight -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_10 -com.xw.repo.bubbleseekbar.R$id: int search_go_btn -androidx.lifecycle.Lifecycling: androidx.lifecycle.LifecycleEventObserver lifecycleEventObserver(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_transitionPathRotate -wangdaye.com.geometricweather.R$drawable: int notif_temp_67 -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_weightSum +okhttp3.Route: java.net.Proxy proxy +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.WeatherLocation mWeatherLocation +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour MATCH_PARENT +okio.ForwardingSource: okio.Timeout timeout() +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_android_layout +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: int bufferSize +androidx.drawerlayout.R$drawable: int notification_template_icon_low_bg +okhttp3.internal.http2.Hpack$Reader: int readInt(int,int) +androidx.lifecycle.extensions.R$color +androidx.work.R$dimen: int notification_small_icon_size_as_large +wangdaye.com.geometricweather.R$styleable: int Transition_constraintSetEnd +com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_top_mtrl_alpha +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property SunRiseDate +cyanogenmod.app.Profile$LockMode: Profile$LockMode() +wangdaye.com.geometricweather.R$layout: int abc_search_dropdown_item_icons_2line +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: int Value +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: javax.inject.Provider apiProvider +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void next(java.lang.Object) +okhttp3.OkHttpClient: okhttp3.Dispatcher dispatcher +androidx.constraintlayout.widget.R$dimen: int abc_text_size_body_2_material +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: java.lang.String ShortPhrase +com.google.gson.stream.JsonReader: java.io.IOException syntaxError(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setWeather(java.lang.String) +com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat_Dark +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_14 +com.google.android.material.R$id: int invisible +wangdaye.com.geometricweather.R$dimen: int material_clock_hand_center_dot_radius +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void headers(boolean,int,int,java.util.List) +androidx.recyclerview.R$id: int italic +android.didikee.donate.R$styleable: int AppCompatTextView_android_textAppearance +androidx.preference.R$string: int abc_searchview_description_voice +com.google.android.material.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets +com.google.android.material.R$styleable: int ActionBar_popupTheme +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: long serialVersionUID +com.google.android.material.circularreveal.CircularRevealRelativeLayout: int getCircularRevealScrimColor() +androidx.preference.TwoStatePreference$SavedState +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onAttach_0 +james.adaptiveicon.R$color: int ripple_material_light +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontStyle +androidx.appcompat.R$styleable: int Toolbar_subtitle +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: java.util.List day +androidx.appcompat.R$id: int src_in +com.bumptech.glide.integration.okhttp.R$id +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_selection_line_height +wangdaye.com.geometricweather.R$attr: int buttonBarButtonStyle +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitationProbability +retrofit2.HttpServiceMethod$SuspendForResponse: HttpServiceMethod$SuspendForResponse(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter) +okhttp3.Challenge: java.util.Map authParams() +com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay_v14 +com.google.android.material.R$styleable: int AppCompatSeekBar_android_thumb +com.google.android.material.R$styleable: int TextInputLayout_counterOverflowTextAppearance +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: FitSystemBarSwipeRefreshLayout(android.content.Context,android.util.AttributeSet) +cyanogenmod.weather.WeatherLocation: java.lang.String access$402(cyanogenmod.weather.WeatherLocation,java.lang.String) +com.turingtechnologies.materialscrollbar.R$layout +androidx.preference.R$attr: int summaryOff +androidx.preference.R$dimen: int compat_button_padding_horizontal_material +james.adaptiveicon.R$drawable: int abc_text_select_handle_middle_mtrl_light +androidx.preference.R$attr: int singleChoiceItemLayout +okhttp3.internal.Util: java.lang.String inet6AddressToAscii(byte[]) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_67 +wangdaye.com.geometricweather.R$drawable: int notif_temp_25 +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +androidx.appcompat.app.WindowDecorActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundTintList(android.content.res.ColorStateList) +cyanogenmod.providers.CMSettings$Secure: java.lang.String ADVANCED_REBOOT +com.amap.api.location.UmidtokenInfo: com.amap.api.location.AMapLocationClient a() +com.xw.repo.bubbleseekbar.R$attr: int customNavigationLayout +androidx.hilt.R$anim: int fragment_fade_exit +wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_focused_alpha +okhttp3.HttpUrl +androidx.appcompat.widget.ButtonBarLayout: int getMinimumHeight() +com.google.android.material.R$styleable: int ActionMode_titleTextStyle +android.didikee.donate.R$color: int secondary_text_disabled_material_light +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.fragment.R$id: int accessibility_custom_action_22 +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenVoice(android.content.Context,int) +com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Display_TextInputEditText +com.google.android.material.R$dimen: int mtrl_calendar_year_width +io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver +cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onCustomTileRemoved +wangdaye.com.geometricweather.R$drawable: int flag_ja +androidx.dynamicanimation.R$drawable: R$drawable() +android.didikee.donate.R$attr: int titleTextAppearance +com.xw.repo.bubbleseekbar.R$drawable: int abc_edit_text_material +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setIconResEnd(int) +okio.Segment: okio.Segment prev +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean isCancelled() +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getChina() +com.google.android.material.R$attr: int behavior_hideable +com.turingtechnologies.materialscrollbar.R$attr: int checkedChip +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String type +retrofit2.SkipCallbackExecutor +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitationDuration(java.lang.Float) +cyanogenmod.externalviews.ExternalView: java.util.LinkedList mQueue +okhttp3.OkHttpClient$1 +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Inverse +androidx.constraintlayout.widget.R$dimen: int abc_search_view_preferred_width +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_nextButton +com.google.android.material.chip.Chip: void setTextAppearance(int) +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight +android.didikee.donate.R$anim: int abc_popup_exit +androidx.legacy.coreutils.R$id: int icon +androidx.constraintlayout.widget.Barrier: void setDpMargin(int) +androidx.preference.R$styleable: int[] DialogPreference +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingTop +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +okio.Segment: int SHARE_MINIMUM +cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemOnClickIntent(android.app.PendingIntent) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_subtitle +com.jaredrummler.android.colorpicker.R$attr: int controlBackground +com.google.android.gms.internal.common.zzq +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onSubscribe(org.reactivestreams.Subscription) +com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$attr: int voiceIcon +okhttp3.Cache$Entry: java.util.List readCertificateList(okio.BufferedSource) +james.adaptiveicon.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.google.android.material.R$id: int month_title +androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModelProvider$Factory mFactory +android.didikee.donate.R$attr: int titleMarginStart +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabText +wangdaye.com.geometricweather.R$style: int Preference_SwitchPreference +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableLeftCompat +androidx.constraintlayout.widget.R$attr: int onTouchUp +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Small +androidx.preference.R$styleable: int Preference_allowDividerBelow +com.google.android.material.R$attr: int materialTimePickerTheme +androidx.coordinatorlayout.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderLayout +cyanogenmod.hardware.ICMHardwareService +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_118 +okhttp3.Response$Builder: okhttp3.Response$Builder handshake(okhttp3.Handshake) +com.google.android.material.R$attr: int onShow +okhttp3.internal.Util$2: boolean val$daemon +androidx.customview.R$dimen: int notification_big_circle_margin +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setPubTime(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_motionTarget +com.jaredrummler.android.colorpicker.R$dimen: int hint_pressed_alpha_material_light +okhttp3.Request$Builder: okhttp3.Request$Builder headers(okhttp3.Headers) +androidx.legacy.coreutils.R$attr: int fontProviderFetchTimeout +com.amap.api.location.AMapLocation: float getAccuracy() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval[] values() +androidx.appcompat.R$styleable: int AppCompatTextView_drawableRightCompat +com.turingtechnologies.materialscrollbar.R$dimen: int abc_seekbar_track_background_height_material +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SYSTEM_PROFILES_ENABLED_VALIDATOR +androidx.preference.R$styleable: int SwitchCompat_track +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onComplete() +com.jaredrummler.android.colorpicker.R$attr: int colorButtonNormal +com.jaredrummler.android.colorpicker.R$id: int line1 +androidx.preference.R$styleable: int ActionBar_elevation +com.google.android.material.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +cyanogenmod.app.ILiveLockScreenManager$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$drawable: int weather_fog +wangdaye.com.geometricweather.R$array: int temperature_unit_values +okio.ByteString: byte getByte(int) +androidx.preference.R$style: int Widget_AppCompat_Spinner_DropDown +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onComplete() +com.baidu.location.e.l$b: void a(java.lang.StringBuffer,java.lang.String,java.lang.String,int) +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +androidx.preference.R$string: int abc_menu_space_shortcut_label +com.google.android.material.textfield.TextInputLayout: void setDefaultHintTextColor(android.content.res.ColorStateList) +android.didikee.donate.R$style: int Base_V21_Theme_AppCompat +cyanogenmod.externalviews.KeyguardExternalView$1: void onServiceConnected(android.content.ComponentName,android.os.IBinder) +james.adaptiveicon.R$styleable: int MenuItem_android_visible +retrofit2.ParameterHandler$1: void apply(retrofit2.RequestBuilder,java.lang.Iterable) +androidx.coordinatorlayout.R$id: int chronometer +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton +wangdaye.com.geometricweather.R$string: int settings_title_notification_temp_icon +androidx.appcompat.widget.AppCompatTextView: int getAutoSizeMaxTextSize() +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginEnd(int) +com.xw.repo.bubbleseekbar.R$dimen: int abc_search_view_preferred_width +okhttp3.internal.http.HttpDate: long MAX_DATE +wangdaye.com.geometricweather.R$id: int item_weather_daily_value_title +androidx.activity.R$id: int accessibility_custom_action_13 +com.jaredrummler.android.colorpicker.R$color: int primary_dark_material_light +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Small +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage FINISHED +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode DAY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int isRainOrSnow +androidx.appcompat.R$attr: int editTextBackground +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void attachEntity(java.lang.Object) +com.jaredrummler.android.colorpicker.R$attr: int cpv_alphaChannelText +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTag +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.Window access$300(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: void dispose() +androidx.viewpager2.widget.ViewPager2: java.lang.CharSequence getAccessibilityClassName() +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout +com.google.android.material.R$attr: int textAppearanceListItem +com.google.android.material.appbar.AppBarLayout$Behavior: AppBarLayout$Behavior(android.content.Context,android.util.AttributeSet) +androidx.work.Worker: Worker(android.content.Context,androidx.work.WorkerParameters) +com.google.android.material.circularreveal.CircularRevealLinearLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +androidx.preference.R$style: int Preference_Category +com.google.android.material.R$styleable: int ActionBar_homeLayout +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontWeight +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedWidthMajor() +okio.SegmentPool: SegmentPool() +androidx.hilt.R$anim: int fragment_open_enter +com.google.android.material.R$id: int unchecked +android.didikee.donate.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.google.android.material.R$attr: int panelMenuListWidth +okhttp3.internal.http.HttpHeaders: boolean varyMatches(okhttp3.Response,okhttp3.Headers,okhttp3.Request) +okhttp3.internal.Util: int delimiterOffset(java.lang.String,int,int,char) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +androidx.appcompat.R$drawable: int abc_text_cursor_material +androidx.activity.R$id: int accessibility_custom_action_2 +android.didikee.donate.R$color: int material_blue_grey_800 +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: java.lang.String icon +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionLayout +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$styleable: int Layout_layout_goneMarginRight +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getAbbreviation(android.content.Context) +com.google.android.material.R$id: int easeInOut +okhttp3.internal.http.HttpHeaders: okio.ByteString TOKEN_DELIMITERS +wangdaye.com.geometricweather.R$attr: int arrowHeadLength +com.jaredrummler.android.colorpicker.R$style: int Preference_PreferenceScreen_Material +okhttp3.internal.cache.DiskLruCache$Snapshot: long[] lengths +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCityId() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_56 +androidx.activity.R$id: int normal +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: long serialVersionUID +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object value +com.google.android.material.R$styleable: int ClockHandView_selectorSize +androidx.viewpager.widget.ViewPager$SavedState: android.os.Parcelable$Creator CREATOR +cyanogenmod.platform.R +okio.Pipe: okio.Source source +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_left +wangdaye.com.geometricweather.R$styleable: int Constraint_android_elevation +com.turingtechnologies.materialscrollbar.R$anim: int abc_tooltip_enter +okhttp3.Address: okhttp3.Authenticator proxyAuthenticator() +cyanogenmod.weatherservice.ServiceRequest: void complete(cyanogenmod.weatherservice.ServiceRequestResult) +com.google.android.material.R$id: int text_input_start_icon +com.turingtechnologies.materialscrollbar.R$attr: int tabStyle +cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getActiveProfile() +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_title +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: boolean isValid() +androidx.fragment.R$drawable: int notification_action_background +com.google.android.material.R$attr: int errorIconDrawable +wangdaye.com.geometricweather.R$dimen: int abc_dialog_title_divider_material +wangdaye.com.geometricweather.R$layout: int material_clock_display_divider +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver +androidx.constraintlayout.widget.R$styleable: int MenuItem_numericModifiers +androidx.appcompat.R$style: int TextAppearance_AppCompat_Title +androidx.constraintlayout.widget.R$attr: int state_above_anchor +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_toRightOf +com.amap.api.location.DPoint: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$color: int switch_thumb_material_dark +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_toolbarStyle +com.google.gson.stream.JsonReader: JsonReader(java.io.Reader) +io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean,int) +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.TableStatements statements +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.HistoryEntity,int) +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getDisplayColorCalibration() +wangdaye.com.geometricweather.R$attr: int tickColor +androidx.recyclerview.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours Past6Hours +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +retrofit2.RequestBuilder: void addPart(okhttp3.MultipartBody$Part) +wangdaye.com.geometricweather.R$color: int material_blue_grey_950 +wangdaye.com.geometricweather.R$styleable +com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar_TextView +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.HistoryEntity) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ButtonBar +james.adaptiveicon.R$id: int action_image +com.google.android.material.R$animator: int mtrl_fab_hide_motion_spec +com.turingtechnologies.materialscrollbar.R$styleable: int[] ThemeEnforcement +androidx.preference.R$attr: int maxButtonHeight +okhttp3.internal.http2.Http2Connection$6: boolean val$inFinished +androidx.fragment.R$styleable: int FontFamily_fontProviderCerts +android.support.v4.app.INotificationSideChannel$Stub: android.support.v4.app.INotificationSideChannel getDefaultImpl() +androidx.hilt.lifecycle.R$dimen: R$dimen() +wangdaye.com.geometricweather.R$dimen: int standard_weather_icon_container_size +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval getInstance(java.lang.String) +androidx.customview.R$dimen: int notification_subtext_size +androidx.preference.R$drawable: int abc_btn_check_material +androidx.preference.R$style: int Base_Widget_AppCompat_Light_PopupMenu +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: java.util.concurrent.CompletableFuture future +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindLevel(java.lang.String) +androidx.constraintlayout.widget.R$color: int material_blue_grey_800 +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_MIN_INDEX +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property So2 +retrofit2.http.Field: java.lang.String value() +androidx.constraintlayout.widget.R$layout: int abc_popup_menu_header_item_layout +wangdaye.com.geometricweather.R$attr: int nestedScrollFlags +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String hour +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,int) +cyanogenmod.profiles.LockSettings: LockSettings(int) +okhttp3.Headers: long byteCount() +cyanogenmod.hardware.CMHardwareManager: java.util.List BOOLEAN_FEATURES +com.github.rahatarmanahmed.cpv.CircularProgressView$1: void onAnimationUpdate(android.animation.ValueAnimator) +wangdaye.com.geometricweather.R$attr: int number +androidx.preference.R$string: int copy +james.adaptiveicon.R$styleable: int AppCompatTheme_dividerHorizontal +wangdaye.com.geometricweather.R$layout: int abc_screen_content_include +androidx.constraintlayout.widget.R$attr: int region_heightLessThan +androidx.hilt.R$id: int accessibility_custom_action_5 +androidx.hilt.work.R$styleable: int GradientColor_android_tileMode +com.turingtechnologies.materialscrollbar.TouchScrollBar: TouchScrollBar(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry geometry +wangdaye.com.geometricweather.R$array: int air_quality_units +com.google.android.material.R$attr: int contentDescription +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.R$styleable: int Chip_android_textSize +com.google.android.material.R$attr: int dialogTheme +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.gson.FieldNamingPolicy$6: FieldNamingPolicy$6(java.lang.String,int) +androidx.viewpager.widget.PagerTabStrip: int getMinHeight() +androidx.appcompat.R$styleable: int RecycleListView_paddingBottomNoButtons +com.google.android.material.chip.Chip: void setChipIconTint(android.content.res.ColorStateList) +okhttp3.internal.platform.AndroidPlatform: boolean supportsAlpn() +androidx.core.app.RemoteActionCompat: RemoteActionCompat() +cyanogenmod.app.CustomTile: int PSEUDO_GRID_ITEM_MAX_COUNT +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginEnd +james.adaptiveicon.R$id: int action_mode_close_button +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_max +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupWindow +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemSummary(java.lang.String) +io.reactivex.internal.util.NotificationLite$ErrorNotification: long serialVersionUID +com.google.android.material.R$drawable: int abc_ratingbar_indicator_material +androidx.dynamicanimation.R$id: int chronometer +okhttp3.internal.http2.Http2Reader: int readMedium(okio.BufferedSource) +androidx.constraintlayout.widget.R$id: int listMode +androidx.viewpager.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$attr: int chipCornerRadius +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection +com.google.android.material.floatingactionbutton.FloatingActionButton: void setImageResource(int) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_DropDown +retrofit2.ParameterHandler$1 +com.jaredrummler.android.colorpicker.R$attr: int listDividerAlertDialog +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipCornerRadius +androidx.appcompat.R$color: int abc_btn_colored_text_material +com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior: AppBarLayout$ScrollingViewBehavior() +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_elevation +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: Http2Connection$ReaderRunnable$1(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[],okhttp3.internal.http2.Http2Stream) +androidx.preference.R$attr: int autoSizeTextType +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DialogWhenLarge +james.adaptiveicon.R$styleable: int SwitchCompat_thumbTextPadding +androidx.preference.R$styleable: int SwitchCompat_android_textOff +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: java.lang.String date +com.turingtechnologies.materialscrollbar.R$attr: int seekBarStyle +wangdaye.com.geometricweather.R$id: int never +androidx.customview.R$styleable: int GradientColor_android_endColor +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_summaryOn +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer ragweedIndex +androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonCompat +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_min_width_major +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getTitle() +com.google.android.material.R$id: int action_container +androidx.constraintlayout.widget.R$dimen: int abc_disabled_alpha_material_light +io.reactivex.internal.queue.SpscArrayQueue +okhttp3.FormBody$Builder: FormBody$Builder() +james.adaptiveicon.R$id: int action_menu_divider +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +androidx.preference.R$style: int Base_Widget_AppCompat_Button +james.adaptiveicon.R$styleable: int AppCompatTheme_viewInflaterClass +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_min +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport parent +wangdaye.com.geometricweather.R$attr: int alertDialogCenterButtons +androidx.recyclerview.R$id: int accessibility_custom_action_7 +com.turingtechnologies.materialscrollbar.R$attr: int spinnerDropDownItemStyle +com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: FloatingActionButton$BaseBehavior() +com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_Overflow +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_homeAsUpIndicator +androidx.preference.R$attr: int summary +com.google.android.material.R$styleable: int TabLayout_tabPaddingEnd +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int sourceMode +androidx.preference.R$styleable: int Preference_icon +okhttp3.internal.http2.Http2 +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +com.turingtechnologies.materialscrollbar.Indicator: int getIndicatorWidth() +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyEndText +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +cyanogenmod.weather.CMWeatherManager: int requestWeatherUpdate(android.location.Location,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener) +wangdaye.com.geometricweather.db.entities.LocationEntity: float getLongitude() +cyanogenmod.externalviews.ExternalViewProperties: boolean hasChanged() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: AccuCurrentResult$DewPoint() +android.didikee.donate.R$id: int search_edit_frame +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: long getLtoDownloadInterval() +androidx.lifecycle.extensions.R$styleable: int Fragment_android_id +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +androidx.hilt.lifecycle.R$id: int normal +com.google.android.material.R$attr: int suggestionRowLayout +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setTextColor(int) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit HPA +androidx.constraintlayout.widget.R$attr: int fontVariationSettings +io.reactivex.internal.util.EmptyComponent: void request(long) +wangdaye.com.geometricweather.R$string: int about_greenDAO +com.jaredrummler.android.colorpicker.R$attr: int fontStyle +com.google.android.material.chip.Chip: void setCheckedIconVisible(int) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabTextStyle +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$ReplayBuffer buffer +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status valueOf(java.lang.String) +androidx.preference.R$styleable: int MenuItem_iconTintMode +android.didikee.donate.R$dimen: int abc_action_bar_overflow_padding_end_material +com.amap.api.location.AMapLocationClientOption: boolean isWifiActiveScan() +com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float t +androidx.appcompat.R$drawable: int abc_list_selector_holo_dark +com.jaredrummler.android.colorpicker.R$style: int Preference +androidx.appcompat.R$styleable: int ActionBar_customNavigationLayout +cyanogenmod.app.LiveLockScreenInfo: java.lang.Object clone() +com.turingtechnologies.materialscrollbar.R$attr: int cardCornerRadius +james.adaptiveicon.R$attr: int buttonStyleSmall +androidx.appcompat.R$dimen: int abc_alert_dialog_button_bar_height +io.reactivex.Observable: io.reactivex.Observable debounce(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$string: int settings_title_gravity_sensor_switch +com.google.android.material.R$styleable: int AlertDialog_multiChoiceItemLayout +androidx.constraintlayout.widget.R$attr: int layout_constraintCircleAngle +com.amap.api.fence.GeoFence: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_maxHeight +okio.ByteString: okio.ByteString encodeUtf8(java.lang.String) +cyanogenmod.weather.WeatherInfo: int mConditionCode +com.jaredrummler.android.colorpicker.R$styleable: int ActionMenuItemView_android_minWidth +com.google.android.material.R$dimen: int notification_main_column_padding_top +cyanogenmod.app.Profile$ProfileTrigger: cyanogenmod.app.Profile$ProfileTrigger fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +wangdaye.com.geometricweather.common.basic.GeoDialog +okhttp3.HttpUrl: java.lang.String queryParameterValue(int) +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginTop +androidx.viewpager.widget.PagerTabStrip: PagerTabStrip(android.content.Context,android.util.AttributeSet) +com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.drawable.Drawable getContentBackground() +androidx.constraintlayout.widget.R$attr: int autoSizeTextType +okhttp3.internal.http1.Http1Codec: boolean isClosed() +okhttp3.Response: okhttp3.Handshake handshake +retrofit2.adapter.rxjava2.HttpException: HttpException(retrofit2.Response) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: int status +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +android.support.v4.os.ResultReceiver: android.support.v4.os.IResultReceiver mReceiver +com.google.android.material.R$styleable: int ProgressIndicator_indicatorCornerRadius +androidx.loader.app.LoaderManagerImpl$LoaderViewModel: LoaderManagerImpl$LoaderViewModel() +com.amap.api.location.AMapLocation: int D +androidx.drawerlayout.R$styleable: int FontFamilyFont_font +com.turingtechnologies.materialscrollbar.R$id: int firstVisible +okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method getMethod +wangdaye.com.geometricweather.R$id: int item_weather_daily_air_title +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionViewClass +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationTextWithoutUnit(float) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_22 +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DialogWhenLarge +com.google.android.material.R$styleable: int CardView_cardCornerRadius +com.bumptech.glide.R$id: R$id() +wangdaye.com.geometricweather.R$string: int feedback_show_widget_card +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Subhead +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: java.lang.String getDarkModeName(android.content.Context) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTotalPrecipitationProbability(java.lang.Float) +com.google.android.material.R$style: int Animation_AppCompat_Tooltip +androidx.preference.R$styleable: int LinearLayoutCompat_android_gravity +okio.Okio$2: java.io.InputStream val$in +okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: okhttp3.internal.http2.Http2Connection this$0 +okhttp3.Route: java.net.InetSocketAddress socketAddress() +okhttp3.Cache$Entry: java.lang.String message +androidx.hilt.work.R$layout +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX getIndices() +com.google.android.material.R$attr: int tabPaddingTop +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_hide_bubble +okio.AsyncTimeout$2: void close() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: int UnitType +okio.Buffer: java.lang.String toString() +okhttp3.internal.http2.Http2Connection$6: Http2Connection$6(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okio.Buffer,int,boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.util.List getValue() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int o3 +com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context) +wangdaye.com.geometricweather.R$style: int Preference_DropDown +androidx.constraintlayout.widget.R$attr: int buttonGravity +wangdaye.com.geometricweather.db.entities.MinutelyEntity: boolean getDaylight() +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_elevation +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult +cyanogenmod.util.ColorUtils: float interp(int,float) +wangdaye.com.geometricweather.R$styleable: int TabItem_android_text +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_negativeButtonText +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeRealFeelTemperature() +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorColor +androidx.swiperefreshlayout.R$id: int normal +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +com.google.gson.LongSerializationPolicy: com.google.gson.JsonElement serialize(java.lang.Long) +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState RUNNING +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_alphabeticShortcut +wangdaye.com.geometricweather.R$styleable: int[] AppCompatTextView wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_selected -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void cancelSources() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Caption -androidx.preference.R$attr: int orderingFromXml +okhttp3.internal.http2.Http2Connection: boolean pushedStream(int) +androidx.work.R$id: int accessibility_custom_action_6 +androidx.appcompat.R$attr: int contentDescription +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dialog +okio.Buffer: okio.BufferedSink write(okio.ByteString) +com.turingtechnologies.materialscrollbar.R$color: int abc_hint_foreground_material_light +androidx.constraintlayout.widget.R$styleable: int StateListDrawableItem_android_drawable +com.xw.repo.bubbleseekbar.R$id: int bottom +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: int UnitType +com.google.android.material.R$id: int ignore +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String temperature +james.adaptiveicon.R$drawable: int abc_scrubber_control_off_mtrl_alpha +com.jaredrummler.android.colorpicker.R$style: R$style() +cyanogenmod.weatherservice.ServiceRequestResult: java.util.List getLocationLookupList() +wangdaye.com.geometricweather.R$styleable: int[] RoundCornerTransition +retrofit2.KotlinExtensions$awaitResponse$2$2: kotlinx.coroutines.CancellableContinuation $continuation +androidx.appcompat.R$attr: int selectableItemBackground +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object readKey(android.database.Cursor,int) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_DAY_VALIDATOR +okio.Buffer: okio.Buffer readFrom(java.io.InputStream) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedPathSegments(java.lang.String) +androidx.swiperefreshlayout.R$styleable: int[] GradientColor +retrofit2.ParameterHandler$1: ParameterHandler$1(retrofit2.ParameterHandler) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Invalid +okhttp3.Response$Builder: java.lang.String message +com.xw.repo.bubbleseekbar.R$string: int abc_menu_sym_shortcut_label +okhttp3.Cache$Entry +androidx.swiperefreshlayout.R$dimen: int compat_notification_large_icon_max_width +androidx.preference.R$dimen: int notification_top_pad +com.google.android.material.R$attr: int flow_horizontalStyle +com.bumptech.glide.R$styleable: int[] GradientColor +com.google.android.material.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.R$dimen: int abc_text_size_title_material_toolbar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: CaiYunMainlyResult$CurrentBean$TemperatureBean() +okhttp3.EventListener: void responseHeadersStart(okhttp3.Call) +androidx.preference.R$style: int TextAppearance_AppCompat_Inverse +com.google.android.material.slider.RangeSlider: int getThumbRadius() +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundTint +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatElevationResource(int) +android.didikee.donate.R$styleable: int MenuItem_android_enabled +cyanogenmod.app.ThemeVersion: java.lang.String THEME_VERSION_FIELD_NAME +com.google.android.material.R$styleable: int GradientColor_android_startY +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +android.didikee.donate.R$id: int alertTitle +com.google.android.material.R$id: int blocking +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Caption +com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_min +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemTextAppearance +com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_text +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: int getChartBottom() +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: ObservableConcatMapEager$ConcatMapEagerMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,int,io.reactivex.internal.util.ErrorMode) +okhttp3.FormBody: java.lang.String name(int) +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NUMBER +androidx.constraintlayout.widget.R$attr: int thumbTextPadding +com.xw.repo.bubbleseekbar.R$string: int abc_action_mode_done +wangdaye.com.geometricweather.R$styleable: int MaterialCheckBox_buttonTint +androidx.recyclerview.widget.RecyclerView: void setHasFixedSize(boolean) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_MENU_ACTION_VALIDATOR +androidx.activity.R$id: int line1 +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getBackgroundTintList() +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginBottom +okhttp3.internal.http.StatusLine: int HTTP_CONTINUE +androidx.appcompat.widget.ActionBarContextView: java.lang.CharSequence getTitle() +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.amap.api.location.AMapLocation: java.lang.String d(com.amap.api.location.AMapLocation,java.lang.String) +com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_alpha +com.google.android.gms.common.R$integer: R$integer() +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetLeft +wangdaye.com.geometricweather.R$id: int async +com.xw.repo.bubbleseekbar.R$dimen: int abc_control_inset_material +com.google.android.gms.common.api.Status +com.google.android.material.R$style: int ShapeAppearanceOverlay_DifferentCornerSize +androidx.appcompat.R$styleable: int AlertDialog_listItemLayout +okhttp3.internal.platform.Android10Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +wangdaye.com.geometricweather.R$array: int location_services +com.xw.repo.bubbleseekbar.R$color: int material_deep_teal_200 +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit[] values() +wangdaye.com.geometricweather.weather.apis.AtmoAuraIqaApi +wangdaye.com.geometricweather.R$id: int snackbar_action +androidx.appcompat.resources.R$styleable: int[] StateListDrawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setLogo(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_bias +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder socketFactory(javax.net.SocketFactory) +com.jaredrummler.android.colorpicker.R$id: int src_over +okhttp3.internal.http2.Http2Stream: void receiveData(okio.BufferedSource,int) +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceLargePopupMenu +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets +androidx.preference.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchMinWidth +wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_xml +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.disposables.Disposable upstream +androidx.recyclerview.R$styleable: int GradientColor_android_startY +okhttp3.CacheControl: boolean mustRevalidate() +cyanogenmod.weather.IRequestInfoListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long time +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onComplete() +androidx.preference.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLBTN_MUSIC_CONTROLS_VALIDATOR +com.google.android.material.R$styleable: int KeyAttribute_framePosition +okhttp3.internal.http1.Http1Codec: okio.BufferedSource source +android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String FONT_URI +android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +com.google.android.material.R$drawable: int abc_ratingbar_small_material +wangdaye.com.geometricweather.R$color: int material_grey_900 +wangdaye.com.geometricweather.R$color: int weather_source_caiyun +okhttp3.internal.publicsuffix.PublicSuffixDatabase: void readTheListUninterruptibly() +com.turingtechnologies.materialscrollbar.R$attr: int textColorSearchUrl +androidx.transition.R$id: int transition_layout_save +com.jaredrummler.android.colorpicker.R$attr: int spinBars +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar +com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_action_area +androidx.viewpager2.R$dimen: int notification_small_icon_background_padding com.google.android.material.appbar.AppBarLayout: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableLeft -wangdaye.com.geometricweather.db.entities.AlertEntity: java.util.Date date -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.AlertEntity,int) -androidx.appcompat.R$attr: int actionModeCloseButtonStyle -com.google.android.material.R$attr: int navigationIcon -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_READY -androidx.constraintlayout.widget.ConstraintLayout: int getMaxHeight() -wangdaye.com.geometricweather.R$attr: int viewInflaterClass -wangdaye.com.geometricweather.R$styleable: int Transition_constraintSetStart -wangdaye.com.geometricweather.R$attr: int dropdownPreferenceStyle -androidx.constraintlayout.widget.R$layout: int notification_action -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: CaiYunMainlyResult$ForecastDailyBean$WeatherBean() -com.jaredrummler.android.colorpicker.R$attr: int activityChooserViewStyle -cyanogenmod.weather.RequestInfo -cyanogenmod.providers.CMSettings$System: java.lang.String BLUETOOTH_ACCEPT_ALL_FILES -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_dialogTitle -retrofit2.Retrofit: okhttp3.HttpUrl baseUrl -wangdaye.com.geometricweather.R$styleable: int[] ColorPickerView -androidx.constraintlayout.widget.R$styleable: int Constraint_android_visibility -com.google.android.material.R$dimen: int design_bottom_navigation_active_item_max_width -androidx.vectordrawable.R$id: int accessibility_custom_action_0 -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -androidx.viewpager.R$style: R$style() -wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$styleable: int AnimatedStateListDrawableItem_android_id -james.adaptiveicon.R$attr: int titleMargin -android.didikee.donate.R$style: int Widget_AppCompat_Light_SearchView -androidx.viewpager2.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotationX -androidx.hilt.work.R$id: int info -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_disabled_holo_light -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionMode +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRealFeelTemperature(java.lang.Integer) +com.google.gson.stream.JsonReader: int pos +retrofit2.Utils$GenericArrayTypeImpl +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_collapsed +androidx.fragment.R$id: int right_side +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_inset +com.google.android.material.R$styleable: int ConstraintSet_flow_lastHorizontalBias +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_font +cyanogenmod.externalviews.KeyguardExternalViewProviderService: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider createExternalView(android.os.Bundle) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onComplete() +james.adaptiveicon.R$dimen: int abc_dialog_padding_top_material +androidx.appcompat.R$style: int Platform_V25_AppCompat +okhttp3.internal.http2.Http2Connection: long access$208(okhttp3.internal.http2.Http2Connection) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onNext(java.lang.Object) +com.google.android.material.R$styleable: int MaterialTextView_android_textAppearance +wangdaye.com.geometricweather.R$styleable: int DialogPreference_positiveButtonText +wangdaye.com.geometricweather.R$id: int widget_clock_day_weather +androidx.constraintlayout.widget.R$attr: int customColorDrawableValue +com.google.android.material.textfield.TextInputLayout: void setEndIconContentDescription(int) +okio.Buffer$UnsafeCursor: okio.Segment segment +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: boolean isValid() +androidx.loader.R$dimen: int notification_subtext_size +androidx.coordinatorlayout.R$color: R$color() +james.adaptiveicon.R$style: int Widget_AppCompat_Light_PopupMenu +com.jaredrummler.android.colorpicker.R$drawable: int abc_tab_indicator_material +androidx.preference.R$style: int Widget_AppCompat_RatingBar_Small +com.google.android.material.R$style: int Base_Widget_AppCompat_Spinner_Underlined +james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +com.google.android.material.slider.RangeSlider: void setThumbElevation(float) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_NoActionBar_Bridge +okhttp3.OkHttpClient: javax.net.SocketFactory socketFactory +androidx.appcompat.widget.ScrollingTabContainerView +androidx.hilt.R$style: int TextAppearance_Compat_Notification_Time +androidx.hilt.work.R$id: int accessibility_custom_action_26 +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource +io.reactivex.Observable: io.reactivex.Observable concatMapEagerDelayError(io.reactivex.functions.Function,boolean) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap +androidx.appcompat.R$styleable: int StateListDrawable_android_variablePadding +androidx.viewpager2.R$string +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_precise_anchor_extra_offset +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: MfForecastV2Result$ForecastProperties$HourForecast() +androidx.appcompat.R$id: int wrap_content +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle +okio.ForwardingTimeout: boolean hasDeadline() +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void drain() +androidx.preference.R$dimen: int notification_media_narrow_margin +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: io.reactivex.Observer downstream +io.reactivex.exceptions.ProtocolViolationException: ProtocolViolationException(java.lang.String) +com.google.android.material.R$attr: int flow_verticalStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setSunSetDate(java.util.Date) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxBackgroundColor +cyanogenmod.providers.CMSettings$Secure: java.lang.String[] NAVIGATION_RING_TARGETS +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: io.reactivex.Observer downstream +com.google.android.material.R$styleable: int ImageFilterView_overlay +com.google.android.material.R$drawable: int abc_list_selector_background_transition_holo_light +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition GeoPosition +com.google.android.material.slider.BaseSlider: float getThumbStrokeWidth() +wangdaye.com.geometricweather.R$dimen: int mtrl_fab_translation_z_pressed +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_default +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_menu_material +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTextPadding +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedHeightMinor() +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String treeDescription +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: int leftIndex +com.google.android.material.R$attr: int cornerFamily +androidx.transition.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastVerticalStyle +com.google.android.material.R$styleable: int AppCompatTheme_windowActionModeOverlay +cyanogenmod.app.suggest.AppSuggestManager: java.util.List getSuggestions(android.content.Intent) +wangdaye.com.geometricweather.R$attr: int cardViewStyle +wangdaye.com.geometricweather.R$id: int activity_weather_daily_indicator +james.adaptiveicon.R$attr: int subtitleTextAppearance +androidx.appcompat.resources.R$dimen: int compat_control_corner_material +okio.Pipe: long maxBufferSize +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getMoldIndex() +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_shutdown +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.util.Date date +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onNext(java.lang.Object) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle +com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Light +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onSuccess(java.lang.Object) +com.google.android.material.circularreveal.CircularRevealRelativeLayout +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.internal.util.AtomicThrowable error +cyanogenmod.weather.RequestInfo: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: double Longitude +wangdaye.com.geometricweather.R$color: int mtrl_btn_text_btn_bg_color_selector +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: int a +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_fontFamily +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String pubTime +com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_Switch com.xw.repo.bubbleseekbar.R$string: int search_menu_title -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.Observer downstream -androidx.preference.R$id: int progress_horizontal -androidx.hilt.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitleTextAppearance +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight +android.didikee.donate.R$attr: int toolbarNavigationButtonStyle +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView +com.google.android.material.R$styleable: int KeyAttribute_transitionPathRotate +androidx.viewpager.R$dimen: int notification_small_icon_background_padding +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String f +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedDescription +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: java.lang.String Unit +androidx.hilt.lifecycle.R$id: int line1 +android.didikee.donate.R$bool +androidx.versionedparcelable.CustomVersionedParcelable: CustomVersionedParcelable() +androidx.appcompat.R$styleable: int[] ViewStubCompat +com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.ValueAnimator startAngleRotate +io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function,boolean) +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_xml +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIconTintMode +android.didikee.donate.R$id: int up +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setVibratorIntensity(int) +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle NATIVE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String getUnit() +com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getPasswordVisibilityToggleDrawable() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +androidx.appcompat.R$drawable: int abc_ab_share_pack_mtrl_alpha +com.google.android.material.R$integer: R$integer() +androidx.work.impl.utils.futures.DirectExecutor +androidx.preference.R$styleable: int MenuView_android_horizontalDivider +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_enabled +androidx.appcompat.R$style: int Base_Theme_AppCompat +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getStreet_number() +com.google.android.material.R$drawable: int abc_text_select_handle_left_mtrl_light +androidx.preference.R$styleable: int[] CompoundButton +androidx.preference.R$dimen: int abc_text_size_menu_material +androidx.constraintlayout.widget.R$drawable: int abc_spinner_textfield_background_material +androidx.preference.R$string: R$string() +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getSupportBackgroundTintList() +retrofit2.HttpException: int code +okio.BufferedSink: okio.BufferedSink writeByte(int) +wangdaye.com.geometricweather.R$styleable: int[] KeyFramesVelocity +androidx.legacy.coreutils.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Surface +com.xw.repo.bubbleseekbar.R$id: int line1 +androidx.appcompat.resources.R$id: int accessibility_custom_action_16 +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +com.google.android.material.circularreveal.cardview.CircularRevealCardView: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +okhttp3.internal.ws.RealWebSocket: void onReadMessage(okio.ByteString) +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_2 +androidx.recyclerview.R$dimen: int item_touch_helper_swipe_escape_velocity +androidx.appcompat.R$id: int decor_content_parent +com.amap.api.location.AMapLocation: com.amap.api.location.AMapLocationQualityReport c +androidx.preference.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_adjustable +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_AES_256_CBC_SHA +okhttp3.internal.platform.Jdk9Platform: okhttp3.internal.platform.Jdk9Platform buildIfSupported() +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayVerticalWidgetConfigActivity +com.xw.repo.bubbleseekbar.R$attr: int layout_insetEdge +com.google.android.material.R$style: int Theme_MaterialComponents_DialogWhenLarge +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String hourlyForecast +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextColor +wangdaye.com.geometricweather.R$attr: int preferenceScreenStyle +cyanogenmod.app.LiveLockScreenInfo$1: java.lang.Object createFromParcel(android.os.Parcel) +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_CONDITION +wangdaye.com.geometricweather.db.entities.DailyEntity: void setHoursOfSun(float) +com.google.android.material.R$dimen: int mtrl_fab_min_touch_target +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +okhttp3.internal.http2.Http2: byte FLAG_END_HEADERS +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_checkableBehavior +io.reactivex.Observable: io.reactivex.Observable flatMapIterable(io.reactivex.functions.Function) +androidx.loader.R$styleable: int FontFamily_fontProviderFetchStrategy +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_tileMode +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_0 +androidx.customview.R$id +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int tabPaddingEnd +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light_normal_background +james.adaptiveicon.R$layout: int abc_dialog_title_material +androidx.appcompat.widget.AppCompatRadioButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.dynamicanimation.R$attr: int fontProviderQuery +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.google.android.material.R$color: int ripple_material_light +com.xw.repo.bubbleseekbar.R$color: int colorPrimaryDark +retrofit2.RequestBuilder: void addPathParam(java.lang.String,java.lang.String,boolean) +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: java.lang.String getMessage() +androidx.lifecycle.Transformations$2: androidx.lifecycle.LiveData mSource +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_12 +com.google.android.material.R$color: int mtrl_bottom_nav_colored_item_tint +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionButtonStyle +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorGravity +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide +okio.Pipe: okio.Source source() +androidx.swiperefreshlayout.R$dimen: int notification_large_icon_height +androidx.constraintlayout.widget.R$styleable: int Layout_minHeight +cyanogenmod.profiles.StreamSettings: StreamSettings(int,int,boolean) +androidx.hilt.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String city +cyanogenmod.app.CustomTile$ExpandedStyle: java.lang.String toString() +com.google.android.material.R$layout: int abc_list_menu_item_checkbox +androidx.preference.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +okhttp3.logging.LoggingEventListener: void dnsEnd(okhttp3.Call,java.lang.String,java.util.List) +android.didikee.donate.R$drawable: int abc_list_selector_background_transition_holo_dark +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_17 +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setSize(int) +com.google.android.material.R$styleable: int Slider_android_stepSize +okio.ForwardingSource: okio.Source delegate +com.github.rahatarmanahmed.cpv.CircularProgressView: void onDetachedFromWindow() +james.adaptiveicon.R$attr: int alertDialogTheme +cyanogenmod.externalviews.KeyguardExternalView$2: void onAttachedToWindow() +com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String to +wangdaye.com.geometricweather.R$attr: int counterTextColor +androidx.work.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.settings.activities.SelectProviderActivity +io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function,boolean,int) +androidx.hilt.lifecycle.R$anim: int fragment_open_exit +io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean done +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconVisible +androidx.appcompat.R$style: int TextAppearance_AppCompat_Body2 +com.google.android.material.R$dimen: int notification_small_icon_size_as_large +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_vertical +cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast() +com.bumptech.glide.load.engine.GlideException: long serialVersionUID +androidx.work.R$id: int action_image +androidx.constraintlayout.widget.Placeholder: int getEmptyVisibility() +android.didikee.donate.R$attr: int windowFixedWidthMinor +okio.Buffer: long readLongLe() +com.google.android.material.R$id: int autoComplete +androidx.preference.R$attr: int ratingBarStyleIndicator +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicator +wangdaye.com.geometricweather.R$drawable: int ic_dress +com.google.android.material.R$dimen: int tooltip_margin +com.xw.repo.bubbleseekbar.R$attr: int layout_anchorGravity +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceName(android.content.Context) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_radius +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_popupMenuStyle +androidx.constraintlayout.widget.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language HUNGARIAN +com.google.android.material.R$style: int Base_V22_Theme_AppCompat +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert +okhttp3.internal.http2.Http2Stream$StreamTimeout: okhttp3.internal.http2.Http2Stream this$0 +androidx.lifecycle.LifecycleService: void onCreate() +com.xw.repo.bubbleseekbar.R$styleable: int[] BubbleSeekBar +okio.BufferedSource: long indexOfElement(okio.ByteString,long) +com.google.android.material.R$attr: int buttonBarStyle +cyanogenmod.app.StatusBarPanelCustomTile$1: StatusBarPanelCustomTile$1() +com.google.android.material.R$styleable: int MaterialRadioButton_buttonTint +okio.AsyncTimeout: okio.Source source(okio.Source) +com.google.android.material.R$color: int material_grey_100 +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display1 +androidx.preference.R$color: int abc_tint_default +androidx.appcompat.R$attr: int barLength +androidx.legacy.coreutils.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetStart +com.github.rahatarmanahmed.cpv.BuildConfig +androidx.constraintlayout.widget.Guideline: void setVisibility(int) +androidx.preference.R$dimen: int abc_text_size_body_2_material +com.google.android.material.R$animator: R$animator() +com.amap.api.location.DPoint: int describeContents() +cyanogenmod.app.CustomTile$1: java.lang.Object createFromParcel(android.os.Parcel) +james.adaptiveicon.R$id: int info +androidx.appcompat.R$drawable: int abc_seekbar_tick_mark_material +androidx.activity.R$styleable: int GradientColor_android_centerColor +androidx.preference.R$dimen: int fastscroll_default_thickness +retrofit2.Utils$WildcardTypeImpl: java.lang.String toString() +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Title +james.adaptiveicon.R$style: int Platform_AppCompat +androidx.preference.R$styleable: int AppCompatTheme_windowNoTitle +wangdaye.com.geometricweather.R$string: int key_widget_clock_day_vertical +okhttp3.internal.cache.DiskLruCache$Editor: okhttp3.internal.cache.DiskLruCache this$0 +com.amap.api.location.AMapLocationClientOption: long r +androidx.constraintlayout.widget.R$attr: int colorControlActivated +androidx.dynamicanimation.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_2_00 +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.preference.R$styleable: int Preference_shouldDisableView +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableLeft +cyanogenmod.app.ProfileManager: boolean profileExists(java.util.UUID) +okhttp3.CipherSuite: java.util.Map INSTANCES +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_mode_close_item_material +androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String moonPhase +com.google.android.material.slider.RangeSlider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) +androidx.preference.R$styleable: int FontFamily_fontProviderCerts +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +androidx.preference.R$styleable: int Spinner_popupTheme +wangdaye.com.geometricweather.R$color: int foreground_material_dark +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTemperature(int) +com.xw.repo.bubbleseekbar.R$attr: int textColorSearchUrl +wangdaye.com.geometricweather.R$font: int product_sans_thin_italic +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endY +com.google.android.gms.location.DetectedActivity: android.os.Parcelable$Creator CREATOR +android.didikee.donate.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Borderless_Colored +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationText(android.content.Context,float) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String hourlyForecast +wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding +wangdaye.com.geometricweather.R$layout: int design_menu_item_action_area +androidx.constraintlayout.widget.R$dimen: int abc_text_size_menu_material +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeSplitBackground +androidx.loader.R$id: int action_image +okhttp3.internal.http2.Http2Connection$1 +com.google.android.material.R$attr: int chipCornerRadius +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_alpha +androidx.preference.R$styleable: int[] PreferenceFragmentCompat +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onKeyguardShowing(boolean) +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_trackTint +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onNext(java.lang.Object) +androidx.preference.R$integer: int config_tooltipAnimTime +com.jaredrummler.android.colorpicker.R$dimen: int notification_small_icon_background_padding +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.constraintlayout.widget.R$attr: int measureWithLargestChild +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: void run() +cyanogenmod.power.IPerformanceManager: int getPowerProfile() +io.reactivex.internal.observers.ForEachWhileObserver: void dispose() +com.google.gson.stream.JsonReader: java.lang.String nextName() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +com.google.android.material.R$attr: int fastScrollVerticalTrackDrawable +wangdaye.com.geometricweather.R$id: int material_clock_period_am_button +android.didikee.donate.R$style: int Widget_AppCompat_PopupMenu +androidx.appcompat.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.gson.internal.LinkedTreeMap: int size +wangdaye.com.geometricweather.R$layout: int preference_material +wangdaye.com.geometricweather.R$string: int night +com.google.android.material.R$attr: int insetForeground +com.google.android.material.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +okhttp3.internal.http2.Hpack$Writer: int smallestHeaderTableSizeSetting +androidx.recyclerview.widget.RecyclerView: void setViewCacheExtension(androidx.recyclerview.widget.RecyclerView$ViewCacheExtension) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_CBC_SHA +james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontStyle +com.google.android.material.R$style: int Base_Widget_AppCompat_PopupMenu +io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onNext +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_DEFAULT_THEME +androidx.preference.R$styleable: int ActionBar_title +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_pixel +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: double Value +androidx.constraintlayout.widget.R$attr: int staggered +cyanogenmod.profiles.BrightnessSettings: boolean mDirty +wangdaye.com.geometricweather.R$id: int circular_sky +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Selected +com.google.android.material.R$attr: int actionModeShareDrawable +okhttp3.Request$Builder: okhttp3.Request$Builder delete(okhttp3.RequestBody) +com.google.android.material.R$attr: int materialButtonStyle +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_colorPresets +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onError(java.lang.Throwable) +com.google.android.material.R$attr: int titleMargin +cyanogenmod.os.Build$CM_VERSION_CODES: int ELDERBERRY +androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableItem +com.turingtechnologies.materialscrollbar.R$color: int abc_secondary_text_material_light +retrofit2.OkHttpCall: boolean executed +com.google.android.material.R$styleable: int Layout_layout_constraintRight_toRightOf +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Small_Inverse +com.turingtechnologies.materialscrollbar.R$attr: int actionModeSplitBackground +wangdaye.com.geometricweather.db.entities.LocationEntity: void setChina(boolean) +com.google.android.material.R$styleable: int[] KeyCycle +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String getDescription() +com.google.android.material.R$id: int touch_outside +okhttp3.internal.cache.CacheStrategy$Factory: long nowMillis +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean getYesterday() +androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerColor +androidx.hilt.R$styleable: int GradientColor_android_endColor +androidx.transition.R$styleable: int GradientColorItem_android_offset +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void run() +retrofit2.Converter +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy UPPER_CAMEL_CASE_WITH_SPACES +wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_previous_black_24dp +cyanogenmod.externalviews.ExternalView$7: ExternalView$7(cyanogenmod.externalviews.ExternalView) +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onComplete() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Line2 +com.google.android.material.R$dimen: int mtrl_transition_shared_axis_slide_distance +androidx.preference.R$styleable: int MenuItem_alphabeticModifiers +android.didikee.donate.R$styleable: int MenuItem_iconTint +com.google.android.material.R$style: int TextAppearance_Compat_Notification_Line2 +android.didikee.donate.R$attr: int textAppearanceListItemSmall +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: int getMarginBottom() +androidx.lifecycle.LiveDataReactiveStreams: androidx.lifecycle.LiveData fromPublisher(org.reactivestreams.Publisher) +androidx.constraintlayout.utils.widget.ImageFilterView: void setContrast(float) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$id: int mtrl_picker_header_title_and_selection +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Slider +androidx.preference.R$id: int titleDividerNoCustom +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource[] values() +okhttp3.Cache$2 +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Borderless +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Connection$Listener listener +okhttp3.RequestBody$3: void writeTo(okio.BufferedSink) +io.reactivex.internal.util.AtomicThrowable +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView_DropDown +com.google.android.material.R$attr: int bottomSheetStyle +james.adaptiveicon.R$styleable: int Toolbar_subtitleTextColor +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +androidx.drawerlayout.R$styleable: int[] GradientColor +com.jaredrummler.android.colorpicker.R$string +com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_weight +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: java.lang.String getRelativeHumidityText(float) +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType QueryList +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetBottom +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_29 +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierDirection +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int no2 +com.google.android.material.R$string: int mtrl_picker_toggle_to_day_selection +okio.Timeout: Timeout() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.WeatherEntity,long) +androidx.loader.R$id: int line1 +androidx.appcompat.R$attr: int actionBarTheme +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: WeatherEntityDao(org.greenrobot.greendao.internal.DaoConfig) +wangdaye.com.geometricweather.R$color: int lightPrimary_4 +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getResPkg() +com.turingtechnologies.materialscrollbar.R$style: int Platform_V25_AppCompat +wangdaye.com.geometricweather.R$string: int settings_title_forecast_tomorrow_time +com.google.android.material.slider.Slider: void setThumbStrokeColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean url +wangdaye.com.geometricweather.R$attr: int titleMargin +android.didikee.donate.R$color: int abc_search_url_text +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_fabSize +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +cyanogenmod.providers.CMSettings$Secure: java.lang.String PRIVACY_GUARD_DEFAULT +io.reactivex.internal.schedulers.RxThreadFactory: java.lang.String toString() +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_divider +androidx.preference.R$layout: int preference_dialog_edittext +com.turingtechnologies.materialscrollbar.R$styleable: int ActivityChooserView_initialActivityCount +androidx.appcompat.R$anim: int abc_fade_out +james.adaptiveicon.R$anim: int abc_grow_fade_in_from_bottom +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplaceInTxArray +com.google.android.material.R$animator: int design_appbar_state_list_animator +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_disabled_material_dark +androidx.lifecycle.LifecycleRegistry: void popParentState() +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: int UnitType +androidx.appcompat.R$attr: int actionModeCutDrawable +com.turingtechnologies.materialscrollbar.R$color: int primary_text_default_material_dark +com.turingtechnologies.materialscrollbar.R$color: int material_grey_300 +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_Solid +androidx.constraintlayout.widget.R$attr: int contentInsetRight +okhttp3.internal.platform.ConscryptPlatform: java.security.Provider getProvider() +cyanogenmod.providers.CMSettings$Secure: java.lang.String LIVE_LOCK_SCREEN_ENABLED +wangdaye.com.geometricweather.R$attr: int helperText +io.reactivex.internal.util.VolatileSizeArrayList: int size() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_1 +android.didikee.donate.R$styleable: int SwitchCompat_android_thumb +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView_Menu +androidx.appcompat.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +androidx.constraintlayout.widget.R$color: int dim_foreground_material_light +androidx.lifecycle.extensions.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$attr: int state_collapsed +wangdaye.com.geometricweather.R$styleable: int MenuItem_contentDescription +okhttp3.internal.http1.Http1Codec: okhttp3.Headers readHeaders() +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_43 +io.reactivex.internal.observers.BlockingObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.core.R$id: int right_icon +android.didikee.donate.R$styleable: int AppCompatTextView_fontFamily +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_NOTIF_COUNT_VALIDATOR +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onComplete() +com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Class,java.lang.Class) +com.google.android.material.R$styleable: int CompoundButton_android_button +com.google.android.material.R$dimen: int mtrl_btn_padding_left +james.adaptiveicon.R$color: int accent_material_dark +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomSheetDialog +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min +wangdaye.com.geometricweather.R$id: int autoComplete +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: double Value +wangdaye.com.geometricweather.R$dimen: int mtrl_progress_indicator_size +cyanogenmod.providers.CMSettings$System$3 +com.google.android.material.R$styleable: int NavigationView_itemIconPadding +retrofit2.HttpServiceMethod$SuspendForBody: HttpServiceMethod$SuspendForBody(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter,boolean) +com.jaredrummler.android.colorpicker.R$styleable: int[] BackgroundStyle +com.google.android.material.R$styleable: int BottomAppBar_hideOnScroll +com.google.android.material.slider.RangeSlider: float getStepSize() +com.jaredrummler.android.colorpicker.R$id: int action_bar_title +androidx.lifecycle.LiveData: java.lang.Object mData +com.google.android.material.slider.Slider: void setHaloRadius(int) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_elevation +androidx.hilt.work.R$id: int text2 +androidx.constraintlayout.widget.R$id: int scrollIndicatorDown +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motionTarget +cyanogenmod.externalviews.KeyguardExternalView: void onKeyguardShowing(boolean) +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String content +cyanogenmod.providers.CMSettings$Global: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_TITLE +androidx.preference.R$styleable: int ListPreference_android_entryValues +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: RequestBuilder$ContentTypeOverridingRequestBody(okhttp3.RequestBody,okhttp3.MediaType) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarStyle +androidx.hilt.R$id: int actions +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_corner_radius_material +wangdaye.com.geometricweather.R$drawable: int notif_temp_86 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life +com.google.android.material.R$styleable: int TabLayout_tabIndicatorGravity +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onError(java.lang.Throwable) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onPanelClosed(int,android.view.Menu) +androidx.swiperefreshlayout.R$drawable +wangdaye.com.geometricweather.R$styleable: int ActionBar_itemPadding +retrofit2.OkHttpCall$NoContentResponseBody: okio.BufferedSource source() +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayTodayStyle +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +androidx.preference.R$style: int Preference_Information_Material +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: java.util.concurrent.atomic.AtomicReference mSubscriber +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf +wangdaye.com.geometricweather.R$attr: int tabMinWidth +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode[] $VALUES +com.google.android.material.R$styleable: int AppCompatTheme_colorControlActivated +com.google.android.material.R$styleable: int LinearLayoutCompat_android_orientation +wangdaye.com.geometricweather.R$drawable: int ic_tag_off +androidx.hilt.R$dimen: int notification_small_icon_background_padding +androidx.lifecycle.extensions.R$dimen: int compat_notification_large_icon_max_width +androidx.preference.R$styleable: int SwitchCompat_splitTrack +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceGroup +wangdaye.com.geometricweather.R$id: int line1 +cyanogenmod.providers.CMSettings$DelimitedListValidator: java.lang.String mDelimiter +com.jaredrummler.android.colorpicker.R$drawable: int notification_action_background +com.google.android.material.R$styleable: int CollapsingToolbarLayout_title +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_entries +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getHourlyForecast() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String messageShort +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_inputType +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onError(java.lang.Throwable) +com.bumptech.glide.load.ImageHeaderParser$ImageType: boolean hasAlpha +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 +wangdaye.com.geometricweather.R$string: int settings_title_widget_config +wangdaye.com.geometricweather.R$attr: int triggerReceiver +androidx.dynamicanimation.R$attr: int alpha +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber +wangdaye.com.geometricweather.R$drawable: int notif_temp_90 +cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener val$listener +androidx.preference.R$id: int accessibility_action_clickable_span +androidx.lifecycle.ReportFragment: void onActivityCreated(android.os.Bundle) +wangdaye.com.geometricweather.R$attr: int ratingBarStyleIndicator +androidx.lifecycle.extensions.R$dimen: int compat_control_corner_material +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.fragment.R$drawable: R$drawable() +com.google.android.material.R$styleable: int Constraint_android_transformPivotY +androidx.constraintlayout.widget.ConstraintHelper: void setIds(java.lang.String) +androidx.drawerlayout.R$attr: int fontProviderPackage +androidx.constraintlayout.widget.R$attr: int singleChoiceItemLayout +androidx.constraintlayout.widget.R$anim: int abc_fade_in +wangdaye.com.geometricweather.R$styleable: int[] RadialViewGroup +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RealFeelShaderTemperature +com.bumptech.glide.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: boolean IsDaylightSaving +com.google.android.material.R$id: int save_non_transition_alpha +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_120 +com.bumptech.glide.integration.okhttp.R$dimen: int notification_media_narrow_margin +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets +cyanogenmod.app.Profile: cyanogenmod.profiles.BrightnessSettings mBrightness +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay valueOf(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_percent +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +androidx.appcompat.R$id: int tag_transition_group +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getResidentPosition() +androidx.preference.R$style: int AlertDialog_AppCompat +androidx.constraintlayout.widget.R$styleable: int[] KeyPosition +androidx.appcompat.R$style: int TextAppearance_AppCompat_Caption +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: android.os.IBinder asBinder() io.reactivex.internal.util.NotificationLite: java.lang.String toString() -okhttp3.internal.Util: boolean isAndroidGetsocknameError(java.lang.AssertionError) -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: AndroidPlatform$AndroidTrustRootIndex(javax.net.ssl.X509TrustManager,java.lang.reflect.Method) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ctd -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setEn_US(java.lang.String) -com.jaredrummler.android.colorpicker.R$color: int abc_tint_btn_checkable -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: int getValue() +com.xw.repo.bubbleseekbar.R$dimen: int abc_config_prefDialogWidth +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int RainProbability +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_text_color +wangdaye.com.geometricweather.R$string: int feedback_unusable_geocoder +cyanogenmod.hardware.IThermalListenerCallback$Stub: cyanogenmod.hardware.IThermalListenerCallback asInterface(android.os.IBinder) +io.reactivex.internal.schedulers.AbstractDirectTask: java.util.concurrent.FutureTask DISPOSED +com.amap.api.location.AMapLocationQualityReport: boolean b +androidx.appcompat.R$styleable: int AlertDialog_listLayout +androidx.appcompat.widget.AppCompatAutoCompleteTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +wangdaye.com.geometricweather.R$id: int widget_clock_day_todayTemp +okhttp3.internal.http2.ErrorCode: int httpCode +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_seekBarIncrement io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int ON_COMPLETE -com.google.android.material.R$styleable: int KeyTrigger_motion_triggerOnCollision -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Large -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelBackground -cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: int MPH -androidx.appcompat.widget.AppCompatButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.xw.repo.bubbleseekbar.R$layout: int select_dialog_multichoice_material -cyanogenmod.weather.RequestInfo$1 -okhttp3.Cache$Entry: boolean matches(okhttp3.Request,okhttp3.Response) -wangdaye.com.geometricweather.R$string: int key_precipitation_notification_switch -com.jaredrummler.android.colorpicker.R$integer: int abc_config_activityDefaultDur -wangdaye.com.geometricweather.settings.activities.PreviewIconActivity: PreviewIconActivity() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -okhttp3.internal.http2.Header: Header(java.lang.String,java.lang.String) -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getThumbTintList() -com.jaredrummler.android.colorpicker.R$dimen: int disabled_alpha_material_light -cyanogenmod.weather.ICMWeatherManager: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_CHACHA20_POLY1305_SHA256 -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_width_major -com.google.android.material.R$styleable: int AppCompatTheme_actionMenuTextColor -androidx.preference.R$color: int abc_background_cache_hint_selector_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd -com.google.android.material.R$dimen: int abc_dialog_min_width_major -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityPaused(android.app.Activity) -cyanogenmod.externalviews.KeyguardExternalView: android.graphics.Point mDisplaySize -retrofit2.OkHttpCall: retrofit2.OkHttpCall clone() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: int UnitType -wangdaye.com.geometricweather.R$anim: int popup_show_top_left -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_visibility -android.didikee.donate.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setZh_CN(java.lang.String) -okio.Buffer: okio.BufferedSink writeLongLe(long) -com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context) -com.google.android.material.R$dimen: int design_snackbar_padding_horizontal -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult -androidx.preference.R$attr: int windowMinWidthMinor -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +android.didikee.donate.R$color: int primary_material_dark +androidx.preference.R$styleable: int AppCompatTheme_colorBackgroundFloating +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onComplete() +androidx.preference.R$attr: int buttonStyle +james.adaptiveicon.R$styleable: int ViewStubCompat_android_id +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowDx +cyanogenmod.weather.WeatherInfo$1: WeatherInfo$1() +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_ENABLED +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setForecastHourly(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean) +com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom +cyanogenmod.power.PerformanceManager: int mNumberOfProfiles +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation +androidx.preference.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +com.google.android.material.R$attr: int chipStrokeWidth +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentListStyle +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean get(int) +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +android.didikee.donate.R$anim: int abc_fade_out +androidx.activity.R$attr: int fontProviderAuthority +androidx.activity.R$attr: int ttcIndex +com.amap.api.fence.PoiItem: PoiItem(android.os.Parcel) +androidx.constraintlayout.widget.R$color: int error_color_material_light +androidx.constraintlayout.widget.R$styleable: int[] StateListDrawable +cyanogenmod.app.CustomTileListenerService: void registerAsSystemService(android.content.Context,android.content.ComponentName,int) +com.google.android.material.R$styleable: int[] ActionMenuView +androidx.vectordrawable.R$layout: int notification_template_icon_group +com.google.android.material.R$styleable: int Constraint_android_layout_marginEnd +com.google.android.material.R$attr: int chipSpacingVertical +org.greenrobot.greendao.AbstractDao: void save(java.lang.Object) +wangdaye.com.geometricweather.R$id: int parentRelative +androidx.appcompat.resources.R$dimen: int notification_large_icon_height +com.jaredrummler.android.colorpicker.R$id: int title_template +com.xw.repo.bubbleseekbar.R$id: int action_bar_title +com.google.android.material.R$dimen: int design_snackbar_elevation +com.google.android.material.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman$Node root +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean precipitation +com.google.android.material.R$attr: int materialCalendarHeaderToggleButton +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode[] values() +androidx.core.R$styleable: int FontFamilyFont_android_font +com.turingtechnologies.materialscrollbar.R$styleable: int[] Chip +cyanogenmod.app.Profile$DozeMode +com.google.android.material.R$attr: int progressBarPadding +okhttp3.internal.http2.PushObserver$1: void onReset(int,okhttp3.internal.http2.ErrorCode) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_CheckBox +wangdaye.com.geometricweather.db.entities.HistoryEntity: HistoryEntity() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: java.util.List brands +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_text_size +io.reactivex.Observable: io.reactivex.Observable publish(io.reactivex.functions.Function) +cyanogenmod.themes.IThemeProcessingListener$Stub: IThemeProcessingListener$Stub() +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: android.os.IBinder asBinder() +okio.Buffer$UnsafeCursor: Buffer$UnsafeCursor() +androidx.viewpager2.R$layout: int custom_dialog +com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyle +androidx.preference.R$dimen: int abc_button_inset_horizontal_material +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackTintList() +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable +androidx.coordinatorlayout.R$string: int status_bar_notification_info_overflow +cyanogenmod.content.Intent: Intent() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void dispose() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: java.lang.String Unit +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.R$id: int showTitle +wangdaye.com.geometricweather.R$color: int material_slider_thumb_color +androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context) +wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendHourlyProvider +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_setNotificationGroupBtn +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_Solid +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.functions.BiPredicate comparer +com.google.android.material.R$anim: int abc_tooltip_exit +com.amap.api.location.AMapLocationClientOption: long getHttpTimeOut() +io.reactivex.internal.util.EmptyComponent: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.weather.ICMWeatherManager: java.lang.String getActiveWeatherServiceProviderLabel() +wangdaye.com.geometricweather.R$dimen: int material_clock_hand_padding +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_padding +com.github.rahatarmanahmed.cpv.CircularProgressView$3: CircularProgressView$3(com.github.rahatarmanahmed.cpv.CircularProgressView) +androidx.constraintlayout.widget.R$color: int foreground_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPubTime() +com.google.android.material.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getProfileHasAppProfiles +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean isEmpty() +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void dispose() +cyanogenmod.themes.ThemeChangeRequest: java.util.Map mPerAppOverlays +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_collapsedSize +okhttp3.OkHttpClient: java.util.List connectionSpecs +wangdaye.com.geometricweather.R$drawable: int ic_settings +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_selectableItemBackground +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setNightIconDrawable(android.graphics.drawable.Drawable) +androidx.appcompat.R$layout: int abc_action_menu_layout +com.google.android.material.floatingactionbutton.FloatingActionButton: boolean getUseCompatPadding() +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +androidx.constraintlayout.widget.R$attr: int submitBackground +wangdaye.com.geometricweather.R$layout: int item_about_link +com.turingtechnologies.materialscrollbar.Indicator +com.baidu.location.Poi: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String uvIndex +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Chip +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float relativeHumidity +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: int getStatus() +com.google.android.material.R$styleable: int ActionBar_contentInsetRight +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.R$attr: int subtitleTextColor +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarStyle +androidx.preference.R$style: int Preference_DialogPreference +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.String aqiText +wangdaye.com.geometricweather.R$attr: int bsb_hide_bubble +androidx.viewpager2.R$drawable: int notification_bg_normal +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginLeft +okio.BufferedSink: long writeAll(okio.Source) +james.adaptiveicon.R$style: int Theme_AppCompat_Light_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowDx +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String locationKey +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_item_icon_padding +com.amap.api.fence.GeoFence: int getActivatesAction() +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_colorShape +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Small_Inverse +io.reactivex.Observable: java.lang.Iterable blockingMostRecent(java.lang.Object) +com.google.android.material.R$string: int abc_shareactionprovider_share_with_application +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onComplete() +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: java.lang.Object poll() +androidx.customview.R$id: int blocking +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +androidx.appcompat.R$id: int action_bar +androidx.constraintlayout.helper.widget.Flow: void setVerticalStyle(int) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_toBottomOf +androidx.appcompat.widget.Toolbar: android.view.MenuInflater getMenuInflater() +androidx.dynamicanimation.R$drawable: int notification_bg_low_pressed +okhttp3.internal.ws.RealWebSocket: okhttp3.Request originalRequest +com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar +okio.ForwardingTimeout: okio.Timeout clearDeadline() +okhttp3.internal.connection.RealConnection: void connectTunnel(int,int,int,okhttp3.Call,okhttp3.EventListener) +com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_colored +androidx.preference.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.R$id: int useLogo +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ProgressBar +com.xw.repo.bubbleseekbar.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline3 +wangdaye.com.geometricweather.R$id: int notification_multi_city +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_27 +com.turingtechnologies.materialscrollbar.R$attr: int searchIcon +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteAll +wangdaye.com.geometricweather.R$id: int gone +okhttp3.OkHttpClient: java.net.Proxy proxy +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.LifecycleRegistry mRegistry +androidx.preference.R$style: int TextAppearance_AppCompat_Small +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int layout_constraintTag +androidx.activity.R$attr +android.didikee.donate.R$attr: int popupWindowStyle +cyanogenmod.app.Profile: int mProfileType +okhttp3.internal.http2.Http2: java.lang.String formatFlags(byte,byte) +retrofit2.Retrofit$Builder: retrofit2.Retrofit build() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getLogo() +wangdaye.com.geometricweather.R$id: int item_weather_icon +com.xw.repo.bubbleseekbar.R$color: int highlighted_text_material_dark +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableStart +com.google.android.material.R$dimen: int design_navigation_icon_size +com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_minimum_range +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dark +okhttp3.FormBody$Builder: java.util.List values +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +cyanogenmod.os.Concierge$ParcelInfo +com.xw.repo.bubbleseekbar.R$attr: int actionModeCloseDrawable +androidx.swiperefreshlayout.R$color: int ripple_material_light +androidx.appcompat.resources.R$id: int accessibility_custom_action_17 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_item_background_holo_dark +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: ObservableCombineLatest$LatestCoordinator(io.reactivex.Observer,io.reactivex.functions.Function,int,int,boolean) +androidx.constraintlayout.motion.widget.MotionLayout: long getNanoTime() +okhttp3.Headers$Builder: okhttp3.Headers$Builder set(java.lang.String,java.lang.String) +com.turingtechnologies.materialscrollbar.TouchScrollBar +androidx.lifecycle.ComputableLiveData: java.lang.Object compute() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Button +androidx.appcompat.R$style: int Widget_AppCompat_PopupMenu +io.reactivex.Observable: io.reactivex.Maybe firstElement() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar +com.bumptech.glide.R$style: int Widget_Compat_NotificationActionContainer +androidx.appcompat.widget.Toolbar$SavedState: android.os.Parcelable$Creator CREATOR +androidx.preference.R$color: int abc_btn_colored_text_material +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Header$Listener access$100(okhttp3.internal.http2.Http2Stream) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$attr: int actionModeSelectAllDrawable +cyanogenmod.providers.CMSettings$System: boolean putFloat(android.content.ContentResolver,java.lang.String,float) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabGravity +wangdaye.com.geometricweather.R$attr: int minHeight +android.support.v4.os.IResultReceiver$Default: IResultReceiver$Default() +androidx.fragment.R$id: int accessibility_custom_action_8 com.google.android.material.R$drawable: int design_ic_visibility_off -com.google.gson.stream.JsonReader: java.lang.String peekedString -okhttp3.internal.http2.Http2: byte TYPE_PING -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: java.lang.String Unit -com.google.android.material.slider.BaseSlider: float getValueFrom() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onComplete() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWetBulbTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$attr: int windowActionBar -androidx.preference.R$styleable: int Preference_widgetLayout -com.jaredrummler.android.colorpicker.R$dimen: int cpv_required_padding -com.google.android.material.R$attr: int layout_editor_absoluteY -com.google.android.material.R$styleable: int AppCompatTheme_windowActionModeOverlay -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionModeOverlay -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitle -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int CloudCover -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_corner_radius -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_padding -okio.Pipe: okio.Source source -androidx.appcompat.R$styleable: int DrawerArrowToggle_drawableSize -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit[] values() -cyanogenmod.weather.WeatherInfo$Builder: int mConditionCode -androidx.preference.R$attr: int tint -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Badge -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.internal.disposables.SequentialDisposable task -androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveData(java.lang.String) -com.google.android.material.R$attr: int paddingBottomNoButtons -androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_creator -androidx.loader.R$attr: int fontVariationSettings -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_singleChoiceItemLayout -com.google.android.material.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog -wangdaye.com.geometricweather.R$drawable: int notif_temp_98 -androidx.core.R$id -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerX -androidx.work.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.R$styleable: int Constraint_layout_constraintDimensionRatio -cyanogenmod.weather.WeatherInfo: double getWindDirection() -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getLevel() -io.reactivex.internal.util.NotificationLite$DisposableNotification: io.reactivex.disposables.Disposable upstream -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -com.google.android.material.textfield.TextInputLayout: void setErrorIconTintList(android.content.res.ColorStateList) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_alterWindow -androidx.constraintlayout.widget.R$id: int end -com.jaredrummler.android.colorpicker.R$attr: int actionBarSize -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain24h -com.google.android.material.R$styleable: int Layout_layout_constraintHeight_min -wangdaye.com.geometricweather.R$drawable: int notification_template_icon_low_bg -com.google.android.material.R$dimen: int compat_notification_large_icon_max_height -okio.GzipSink: java.util.zip.Deflater deflater() -retrofit2.HttpServiceMethod$CallAdapted -androidx.customview.R$styleable: int GradientColor_android_gradientRadius -com.bumptech.glide.integration.okhttp.R$id: int action_text -wangdaye.com.geometricweather.R$attr: int switchStyle -android.didikee.donate.R$id: int search_voice_btn -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String url -androidx.recyclerview.R$id: int accessibility_custom_action_26 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: int UnitType -james.adaptiveicon.R$style: int AlertDialog_AppCompat -com.xw.repo.bubbleseekbar.R$dimen: int abc_seekbar_track_background_height_material -wangdaye.com.geometricweather.R$integer: int cpv_default_anim_duration -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getAqiText() -com.turingtechnologies.materialscrollbar.R$styleable: int ButtonBarLayout_allowStacking -com.turingtechnologies.materialscrollbar.R$dimen: int abc_select_dialog_padding_start_material -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit PERCENT -com.jaredrummler.android.colorpicker.R$attr: int autoSizeStepGranularity -wangdaye.com.geometricweather.R$drawable: int weather_haze_3 -org.greenrobot.greendao.DaoException: void safeInitCause(java.lang.Throwable) -okhttp3.EventListener: void responseBodyStart(okhttp3.Call) -androidx.preference.R$dimen: int notification_large_icon_width -com.google.android.material.chip.Chip -androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitationProbability -com.xw.repo.bubbleseekbar.R$color: int colorPrimaryDark -cyanogenmod.app.Profile$1: cyanogenmod.app.Profile[] newArray(int) -cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileManager sProfileManagerInstance -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean isEmpty() -wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_light -cyanogenmod.themes.IThemeService$Stub$Proxy: android.os.IBinder asBinder() -androidx.appcompat.R$attr: int ratingBarStyleIndicator +james.adaptiveicon.R$color: int bright_foreground_inverse_material_dark +cyanogenmod.app.Profile: java.lang.String getName() +androidx.preference.R$attr: int switchPreferenceCompatStyle +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$attr: int iconTint +androidx.constraintlayout.widget.R$styleable: int AlertDialog_showTitle +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.disposables.CompositeDisposable observers +androidx.appcompat.R$attr: int actionBarItemBackground +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Small +androidx.viewpager.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.R$layout: int widget_day_temp +com.jaredrummler.android.colorpicker.R$id: int add +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationX +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_switchPreferenceStyle +wangdaye.com.geometricweather.R$styleable: int OnSwipe_onTouchUp +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_DayTextView +androidx.preference.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +androidx.preference.R$dimen: int abc_search_view_preferred_height +com.xw.repo.bubbleseekbar.R$attr: int isLightTheme +com.jaredrummler.android.colorpicker.R$attr: int logo +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getWeek(android.content.Context) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$id: int icon_frame +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_text +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_selectionRequired +com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimsShown(boolean) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation: MfForecastResult$DailyForecast$Precipitation() +com.google.android.material.R$styleable: int FloatingActionButton_hideMotionSpec +androidx.appcompat.R$layout: int notification_action +com.baidu.location.e.o: java.util.List a(org.json.JSONObject,java.lang.String,int) +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability +wangdaye.com.geometricweather.R$string: int feedback_interpret_background_notification_content +com.google.android.material.R$dimen: int mtrl_calendar_text_input_padding_top +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getWeather() +wangdaye.com.geometricweather.R$attr: int textLocale +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier +okhttp3.internal.cache.DiskLruCache$Editor: boolean done +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.xw.repo.bubbleseekbar.R$attr: int buttonStyle +androidx.appcompat.R$attr: int controlBackground +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_EXISTING_UUID +com.xw.repo.bubbleseekbar.R$styleable: int[] ViewStubCompat +cyanogenmod.weather.RequestInfo: android.location.Location mLocation +james.adaptiveicon.R$dimen: int abc_action_bar_elevation_material +androidx.viewpager.R$id: int line3 +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_title +cyanogenmod.profiles.BrightnessSettings: cyanogenmod.profiles.BrightnessSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +cyanogenmod.providers.CMSettings$Secure$2 +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_thickness +com.google.android.material.R$styleable: int AppCompatTheme_panelBackground +okhttp3.Headers: int size() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: void setValue(java.lang.String) +com.amap.api.fence.GeoFence: int hashCode() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeApparentTemperature() +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getTotalPrecipitationProbability() +androidx.viewpager.R$id: int notification_main_column +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +com.turingtechnologies.materialscrollbar.R$styleable: int[] PopupWindow +androidx.preference.R$style: int PreferenceFragmentList +wangdaye.com.geometricweather.common.ui.activities.AllergenActivity +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter nighttimeWeatherCodeConverter +androidx.coordinatorlayout.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_ttcIndex +androidx.preference.R$styleable: int SwitchCompat_trackTint +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setCity(java.lang.String) +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_id +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: boolean disconnectedEarly +androidx.appcompat.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +wangdaye.com.geometricweather.R$string: int key_icon_provider +okio.Buffer$1: void write(int) +androidx.lifecycle.livedata.core.R: R() +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getDistanceVoice(android.content.Context,float) +wangdaye.com.geometricweather.R$id: int activity_allergen_recyclerView +androidx.preference.R$string: int abc_capital_on +com.turingtechnologies.materialscrollbar.R$id: int message +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX) +android.didikee.donate.R$drawable: int abc_list_selector_holo_dark +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.google.android.material.R$dimen: int abc_switch_padding +androidx.customview.R$styleable: int[] GradientColor +com.google.android.material.R$styleable: int Layout_layout_constraintTop_creator +okhttp3.CertificatePinner$Pin: int hashCode() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_verticalDivider +androidx.appcompat.R$id: int customPanel +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void cancel() +com.google.android.material.bottomnavigation.BottomNavigationView: void setLabelVisibilityMode(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: int UnitType +com.google.android.material.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: AccuCurrentResult$PrecipitationSummary$PastHour$Metric() +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String dept +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$layout: int container_snackbar_card +com.google.android.material.card.MaterialCardView: void setChecked(boolean) +retrofit2.BuiltInConverters$ToStringConverter: BuiltInConverters$ToStringConverter() +androidx.hilt.work.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_title +androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedWidthMinor +wangdaye.com.geometricweather.R$string: int settings_title_background_free +com.google.android.material.R$dimen: int mtrl_btn_elevation +wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingLeft +com.jaredrummler.android.colorpicker.R$attr: int voiceIcon +androidx.appcompat.R$layout: int abc_popup_menu_header_item_layout +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: int getMarginBottom() +androidx.preference.R$styleable: int DialogPreference_android_dialogIcon +androidx.dynamicanimation.R$dimen: int notification_top_pad_large_text +com.turingtechnologies.materialscrollbar.R$attr: int background +androidx.coordinatorlayout.R$id: R$id() +com.google.android.material.R$color: int design_dark_default_color_primary_dark +android.didikee.donate.R$drawable: int abc_tab_indicator_material +androidx.preference.R$styleable: int PopupWindow_overlapAnchor +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline1 +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future) +com.google.android.material.R$styleable: int Constraint_android_layout_marginLeft +wangdaye.com.geometricweather.R$id: int TOP_END +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy valueOf(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int Transform_android_scaleX +androidx.constraintlayout.widget.R$style: int AlertDialog_AppCompat +androidx.appcompat.R$attr: int colorControlHighlight +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_RC4_128_MD5 +okhttp3.FormBody: FormBody(java.util.List,java.util.List) +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_FONTS +androidx.dynamicanimation.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.R$styleable: int[] MaterialCheckBox +com.google.android.material.R$plurals: R$plurals() +com.xw.repo.bubbleseekbar.R$color: int abc_secondary_text_material_light +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_shapeAppearanceOverlay +androidx.constraintlayout.widget.R$attr: int closeIcon +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginStart +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_anim_duration +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_enabled +okhttp3.OkHttpClient$Builder: okhttp3.CertificatePinner certificatePinner +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isModifyInHour() +androidx.coordinatorlayout.R$id: int accessibility_custom_action_25 +androidx.vectordrawable.R$attr: int ttcIndex +androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyleSmall +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.ObservableSource source +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: java.lang.String English +cyanogenmod.app.LiveLockScreenInfo$1: LiveLockScreenInfo$1() +wangdaye.com.geometricweather.R$attr: int switchMinWidth +com.jaredrummler.android.colorpicker.R$attr: int hideOnContentScroll +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.recyclerview.R$styleable: int RecyclerView_android_descendantFocusability +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_rtl +com.turingtechnologies.materialscrollbar.R$attr: int strokeWidth +com.google.android.material.R$color: int mtrl_filled_background_color +com.google.android.material.R$dimen: int mtrl_progress_indicator_size +androidx.legacy.coreutils.R$dimen: int notification_big_circle_margin +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBarLayout_android_layout_gravity +com.google.android.material.R$attr: int backgroundInsetBottom +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorAccent +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +androidx.fragment.R$id: int text2 +okio.ForwardingSink: okio.Sink delegate() +io.reactivex.Observable: io.reactivex.Observable buffer(int,java.util.concurrent.Callable) +androidx.viewpager2.widget.ViewPager2: int getOrientation() +com.google.android.material.R$id: int material_label +com.google.android.material.R$id: int screen +com.google.android.material.R$string: int mtrl_picker_range_header_only_start_selected +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder dispatcher(okhttp3.Dispatcher) +com.google.android.material.R$attr: int moveWhenScrollAtTop +com.bumptech.glide.integration.okhttp.R$id: int icon_group +com.google.android.gms.base.R$drawable: int googleg_standard_color_18 +androidx.appcompat.widget.AppCompatSpinner: void setDropDownHorizontalOffset(int) +androidx.constraintlayout.widget.R$styleable: int ActionBar_homeLayout +okhttp3.internal.platform.AndroidPlatform: boolean api24IsCleartextTrafficPermitted(java.lang.String,java.lang.Class,java.lang.Object) +james.adaptiveicon.R$style: int Widget_AppCompat_PopupMenu_Overflow +androidx.vectordrawable.R$id: int notification_main_column_container +androidx.constraintlayout.utils.widget.ImageFilterView: float getCrossfade() +androidx.coordinatorlayout.R$id: int bottom +com.jaredrummler.android.colorpicker.R$id: int transparency_layout +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isSubActive(int) +org.greenrobot.greendao.AbstractDaoSession: java.util.Collection getAllDaos() +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotation +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_black +com.google.android.material.R$attr: int passwordToggleContentDescription +com.google.android.material.R$dimen: int action_bar_size +com.google.android.material.R$styleable: int MaterialToolbar_navigationIconColor +wangdaye.com.geometricweather.R$string: int about_gson +okhttp3.MultipartBody: long contentLength +cyanogenmod.themes.IThemeService$Stub: android.os.IBinder asBinder() +io.reactivex.internal.schedulers.AbstractDirectTask: void setFuture(java.util.concurrent.Future) +wangdaye.com.geometricweather.R$attr: int dependency +com.turingtechnologies.materialscrollbar.R$color: int abc_hint_foreground_material_dark +wangdaye.com.geometricweather.R$attr: int applyMotionScene +wangdaye.com.geometricweather.R$font: int product_sans_medium +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.R$attr: int dayInvalidStyle +com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context) +james.adaptiveicon.R$drawable: int abc_tab_indicator_material +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_queryHint +retrofit2.CallAdapter$Factory +android.didikee.donate.R$dimen: int abc_dropdownitem_text_padding_right +cyanogenmod.profiles.LockSettings: java.lang.String TAG +com.turingtechnologies.materialscrollbar.R$id: int ghost_view +androidx.viewpager.R$id: int info +android.support.v4.os.IResultReceiver$Stub$Proxy: IResultReceiver$Stub$Proxy(android.os.IBinder) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +androidx.preference.R$styleable: int AppCompatTheme_listMenuViewStyle +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_background +com.google.android.material.R$dimen: int mtrl_btn_pressed_z +wangdaye.com.geometricweather.db.entities.DailyEntity: float getHoursOfSun() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_android_windowIsFloating +cyanogenmod.hardware.CMHardwareManager: int FEATURE_THERMAL_MONITOR +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose w +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_127 +androidx.appcompat.R$id: int action_menu_presenter +wangdaye.com.geometricweather.R$attr: int windowActionModeOverlay +wangdaye.com.geometricweather.R$drawable: int abc_cab_background_internal_bg +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_PLAY_QUEUE_VALIDATOR +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconEnabled +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +com.google.android.material.navigation.NavigationView: void setItemHorizontalPaddingResource(int) +com.google.android.material.R$dimen: int material_clock_hand_stroke_width +com.google.android.material.R$styleable: int ActionBar_contentInsetEnd +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int AlertID +com.jaredrummler.android.colorpicker.R$attr: int fontProviderQuery +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_COLOR_AUTO_VALIDATOR +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: void run() +com.google.android.material.navigation.NavigationView: void setItemMaxLines(int) +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar +androidx.legacy.coreutils.R$drawable: int notification_bg_low_pressed +com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_background_color +androidx.preference.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +okhttp3.OkHttpClient: java.util.List networkInterceptors +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicBoolean stopWindows +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean cancelled +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginEnd +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType LoadAll +james.adaptiveicon.R$drawable: int abc_ic_star_half_black_48dp +com.google.android.material.R$attr: int cardMaxElevation +androidx.preference.R$layout +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Bridge +okhttp3.internal.http2.Hpack$Writer +okio.ByteString: java.lang.String utf8() +com.google.android.material.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_text_color +james.adaptiveicon.R$drawable: int notification_bg_low_normal +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: int retries +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Dbz +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul3H +androidx.hilt.R$styleable: int FontFamily_fontProviderPackage +cyanogenmod.profiles.RingModeSettings: void setValue(java.lang.String) +androidx.constraintlayout.widget.R$attr: int limitBoundsTo +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void run() +androidx.preference.R$attr: int actionBarPopupTheme +com.google.android.material.R$attr: int prefixTextColor +androidx.appcompat.R$drawable: int abc_ic_search_api_material +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: boolean isDisposed() +androidx.dynamicanimation.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String unitId +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float totalPrecipitationProbability +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setOnRefreshListener(androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnRefreshListener) +okhttp3.internal.http2.Hpack$Writer: Hpack$Writer(okio.Buffer) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: BaiduIPLocationService$1(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) +androidx.dynamicanimation.R$id: int title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: int status +androidx.preference.R$id: int spinner +cyanogenmod.themes.IThemeChangeListener$Stub: cyanogenmod.themes.IThemeChangeListener asInterface(android.os.IBinder) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_21 +okhttp3.internal.cache2.Relay +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String zh_TW +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_chainUseRtl +okio.ByteString: okio.ByteString decodeHex(java.lang.String) +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okhttp3.Handshake: java.util.List localCertificates +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_framePosition +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: BaiduIPLocationResult$ContentBean$AddressDetailBean() +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontStyle +com.google.android.material.R$attr: int textColorSearchUrl +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_positiveButtonText +com.google.android.material.R$styleable: int ActionMode_closeItemLayout +androidx.constraintlayout.widget.R$attr: int listMenuViewStyle +com.bumptech.glide.integration.okhttp.R$id: int forever +com.google.android.material.slider.RangeSlider: void setStepSize(float) +retrofit2.converter.gson.GsonRequestBodyConverter: java.nio.charset.Charset UTF_8 +cyanogenmod.hardware.ICMHardwareService: boolean setDisplayColorCalibration(int[]) +com.jaredrummler.android.colorpicker.R$drawable: int notification_template_icon_bg +androidx.lifecycle.LifecycleRegistry$1 +com.google.android.material.R$layout: int mtrl_calendar_day_of_week +com.google.android.material.R$styleable: int CardView_cardMaxElevation +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemTitle(java.lang.String) +androidx.appcompat.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +okhttp3.FormBody: int size() +wangdaye.com.geometricweather.R$id: int item_trend_hourly +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_RC4_128_SHA +cyanogenmod.externalviews.ExternalView$4: cyanogenmod.externalviews.ExternalView this$0 +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_padding_material +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +com.google.android.material.R$styleable: int PopupWindow_overlapAnchor +wangdaye.com.geometricweather.R$array: int air_quality_unit_voices +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +com.google.android.material.badge.BadgeDrawable$SavedState: android.os.Parcelable$Creator CREATOR +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void dispose() +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_disableDependentsState +androidx.appcompat.R$attr: int ttcIndex +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver) +okhttp3.Cookie$Builder: boolean secure +android.didikee.donate.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String country +androidx.appcompat.R$drawable: int abc_switch_thumb_material +androidx.core.widget.NestedScrollView: void setSmoothScrollingEnabled(boolean) +androidx.viewpager2.R$id: int accessibility_custom_action_26 +james.adaptiveicon.R$styleable: int Toolbar_menu +android.didikee.donate.R$styleable: int[] PopupWindow +cyanogenmod.profiles.BrightnessSettings: void writeToParcel(android.os.Parcel,int) +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: long serialVersionUID +wangdaye.com.geometricweather.R$attr: int constraintSet +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void cancel() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_pathMotionArc +cyanogenmod.content.Intent: java.lang.String EXTRA_PROTECTED_STATE +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_140 +wangdaye.com.geometricweather.R$id: int message +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$color: int abc_background_cache_hint_selector_material_light +cyanogenmod.externalviews.IExternalViewProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.google.android.material.R$styleable: int ConstraintSet_android_maxWidth +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textStyle +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontVariationSettings +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isDataConnectionEnabled() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_divider +com.google.android.material.R$dimen: int mtrl_calendar_header_selection_line_height +wangdaye.com.geometricweather.R$string: int settings_notification_hide_icon_off +com.jaredrummler.android.colorpicker.R$integer: int status_bar_notification_info_maxnum +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Tooltip +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias +cyanogenmod.app.ProfileGroup: void applyOverridesToNotification(android.app.Notification) +com.turingtechnologies.materialscrollbar.R$id: int transition_position +com.jaredrummler.android.colorpicker.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$attr: int reverseLayout +com.google.android.material.slider.Slider: android.content.res.ColorStateList getThumbStrokeColor() +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.ObservableSource first +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableEndCompat +cyanogenmod.weather.WeatherInfo: boolean equals(java.lang.Object) +okhttp3.internal.http.CallServerInterceptor$CountingSink: CallServerInterceptor$CountingSink(okio.Sink) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Menu +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingLeft +com.google.android.material.R$id: int snackbar_action +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getTempMin() +androidx.preference.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_layout +okio.Okio$1: okio.Timeout val$timeout +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver +okhttp3.Response$Builder: okhttp3.Response$Builder protocol(okhttp3.Protocol) +wangdaye.com.geometricweather.db.entities.HistoryEntity: int getNighttimeTemperature() +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int checkbox +com.google.android.material.appbar.AppBarLayout$Behavior: AppBarLayout$Behavior() +wangdaye.com.geometricweather.R$string: int widget_clock_day_details +okio.GzipSink: okio.Timeout timeout() +wangdaye.com.geometricweather.R$string: int feedback_resident_location_description +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder value(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_min +okhttp3.HttpUrl: boolean equals(java.lang.Object) +androidx.core.R$id: int notification_main_column +androidx.viewpager2.R$dimen: int compat_button_padding_horizontal_material +android.didikee.donate.R$style: int TextAppearance_AppCompat_Small_Inverse +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_popupMenuStyle +com.google.android.material.button.MaterialButton: void setBackgroundTintList(android.content.res.ColorStateList) +com.bumptech.glide.R$dimen: int compat_notification_large_icon_max_width +com.google.android.material.R$dimen: int hint_pressed_alpha_material_light +cyanogenmod.weather.WeatherLocation: java.lang.String access$702(cyanogenmod.weather.WeatherLocation,java.lang.String) +com.google.android.material.R$color: int error_color_material_light androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.R$id: int withinBounds -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position position -androidx.hilt.work.R$color: R$color() -androidx.preference.R$string: int preference_copied -okhttp3.HttpUrl: java.lang.String password() -android.didikee.donate.R$styleable: int MenuGroup_android_id -com.turingtechnologies.materialscrollbar.R$styleable: int[] CompoundButton -androidx.preference.R$styleable: int MultiSelectListPreference_entries -okhttp3.internal.ws.WebSocketReader: boolean isClient -james.adaptiveicon.R$style: int Base_V23_Theme_AppCompat_Light -androidx.preference.R$attr: int tooltipFrameBackground -wangdaye.com.geometricweather.R$drawable: int notif_temp_128 -androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_Alert -androidx.preference.R$attr: int hideOnContentScroll -james.adaptiveicon.R$dimen: int hint_alpha_material_light -cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.os.Parcel,cyanogenmod.app.LiveLockScreenInfo$1) -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeSplitBackground -androidx.customview.R$id: int normal -wangdaye.com.geometricweather.R$attr: int numericModifiers -okhttp3.internal.connection.RealConnection: boolean isMultiplexed() -cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(android.os.Parcel,cyanogenmod.weatherservice.ServiceRequestResult$1) -androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Light -io.reactivex.internal.util.EmptyComponent: void onSubscribe(io.reactivex.disposables.Disposable) -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat_Dark -androidx.hilt.work.R$drawable: int notification_bg_low_pressed -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastVerticalBias -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabText -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_ON -com.google.android.material.R$styleable: int Toolbar_titleTextAppearance -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour MATCH_CONSTRAINT -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer LEFT_VALUE -androidx.loader.R$styleable: int GradientColor_android_endY -androidx.constraintlayout.widget.R$drawable: int abc_seekbar_track_material -com.xw.repo.bubbleseekbar.R$dimen: int abc_control_padding_material -com.google.android.material.R$styleable: int CustomAttribute_customFloatValue -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginRight -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderFetchStrategy -cyanogenmod.power.IPerformanceManager$Stub$Proxy: IPerformanceManager$Stub$Proxy(android.os.IBinder) -com.amap.api.location.AMapLocation: int getErrorCode() -androidx.appcompat.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardElevation -wangdaye.com.geometricweather.main.MainActivity -com.bumptech.glide.R$id: R$id() -androidx.preference.R$id: int action_menu_presenter -com.google.android.material.R$id: int action_bar_spinner +androidx.appcompat.R$dimen: int abc_action_bar_content_inset_with_nav +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Date +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_70 +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: retrofit2.Call call +androidx.recyclerview.R$attr: int font +james.adaptiveicon.R$style: int Widget_AppCompat_ActivityChooserView +androidx.viewpager.widget.ViewPager: void setOffscreenPageLimit(int) +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String resPkg +com.xw.repo.bubbleseekbar.R$attr: int listPopupWindowStyle +android.didikee.donate.R$attr: int actionBarTabTextStyle +wangdaye.com.geometricweather.R$styleable: int Slider_trackColor +io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicLong requested +androidx.preference.R$attr: int actionModePopupWindowStyle +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionViewClass +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_DAY +okhttp3.logging.HttpLoggingInterceptor$Logger: void log(java.lang.String) okhttp3.internal.http2.Http2Connection$2: void execute() -androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context,android.util.AttributeSet) -androidx.core.R$integer: R$integer() -androidx.constraintlayout.widget.R$string: int abc_menu_shift_shortcut_label -com.jaredrummler.android.colorpicker.R$layout: int abc_popup_menu_item_layout -com.google.android.material.R$attr: int materialCalendarYearNavigationButton -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display2 -androidx.preference.R$styleable: int[] StateListDrawableItem -androidx.coordinatorlayout.widget.CoordinatorLayout: android.graphics.drawable.Drawable getStatusBarBackground() -com.google.android.material.button.MaterialButton: void setInsetBottom(int) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -wangdaye.com.geometricweather.R$string: int settings_title_icon_provider -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_voiceIcon -androidx.appcompat.resources.R$styleable: int ColorStateListItem_android_alpha -com.google.gson.stream.JsonWriter: int peek() -android.didikee.donate.R$dimen: int abc_text_size_menu_header_material -androidx.preference.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -wangdaye.com.geometricweather.R$dimen: int notification_action_icon_size -io.reactivex.Observable: io.reactivex.Observable concatMapSingle(io.reactivex.functions.Function) -io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.R$styleable: int[] FitSystemBarNestedScrollView -retrofit2.converter.gson.GsonResponseBodyConverter: java.lang.Object convert(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$attr: int coordinatorLayoutStyle -james.adaptiveicon.R$dimen: int tooltip_horizontal_padding -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context,android.util.AttributeSet,int) -org.greenrobot.greendao.AbstractDaoSession: java.util.List queryRaw(java.lang.Class,java.lang.String,java.lang.String[]) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeWidth -wangdaye.com.geometricweather.R$attr: int checkedIconEnabled -wangdaye.com.geometricweather.R$drawable: int indicator -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 -com.jaredrummler.android.colorpicker.R$drawable: int cpv_btn_background -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: int bufferSize -wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_4_material -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean hasKey(java.lang.Object) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_SHOW_WEATHER_VALIDATOR -cyanogenmod.weather.WeatherInfo: int describeContents() -wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_colored_ripple_color -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$color: int mtrl_calendar_item_stroke_color -okio.Buffer: okio.BufferedSink writeUtf8(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_81 -okhttp3.internal.cache.DiskLruCache$Snapshot: okio.Source getSource(int) -androidx.transition.R$id: int action_container -com.google.android.material.R$attr: int expandedTitleMarginTop -wangdaye.com.geometricweather.R$string: int precipitation_middle -androidx.lifecycle.ReportFragment: void dispatch(androidx.lifecycle.Lifecycle$Event) -androidx.appcompat.widget.SwitchCompat: java.lang.CharSequence getTextOff() -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low -retrofit2.RequestFactory$Builder: boolean gotPath -androidx.lifecycle.Lifecycling$1: androidx.lifecycle.LifecycleEventObserver val$observer -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -james.adaptiveicon.R$styleable: int Toolbar_subtitleTextAppearance -james.adaptiveicon.R$attr: int fontFamily -okio.ByteString: int compareTo(okio.ByteString) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String from -com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.String,java.lang.Throwable) -wangdaye.com.geometricweather.R$string: int abc_menu_alt_shortcut_label -wangdaye.com.geometricweather.daily.DailyWeatherActivity -wangdaye.com.geometricweather.R$id: int action_mode_close_button -androidx.cardview.R$styleable: int CardView_cardCornerRadius -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: void setStatus(int) -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo build() -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_auto_adjust_section_mark -android.didikee.donate.R$attr: int searchHintIcon -androidx.lifecycle.LifecycleRegistry: boolean mNewEventOccurred -com.google.android.gms.auth.api.signin.GoogleSignInOptions -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.util.AtomicThrowable errors -androidx.appcompat.R$id: int scrollIndicatorUp -wangdaye.com.geometricweather.R$color: int error_color_material_light -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_text_color -com.jaredrummler.android.colorpicker.R$id: int action_bar_container -com.xw.repo.bubbleseekbar.R$styleable: int RecycleListView_paddingBottomNoButtons -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -androidx.hilt.R$attr -com.google.android.material.R$style: int Theme_AppCompat_DayNight_NoActionBar -com.google.android.material.floatingactionbutton.FloatingActionButton: void setShadowPaddingEnabled(boolean) -androidx.recyclerview.R$id: int accessibility_custom_action_18 -android.didikee.donate.R$attr: int actionMenuTextColor -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.android.material.R$attr: int defaultDuration -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedQuery(java.lang.String) -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int sourceMode -com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_selected -james.adaptiveicon.R$styleable: int AppCompatTheme_dividerHorizontal -io.reactivex.internal.schedulers.AbstractDirectTask -androidx.transition.R$string -wangdaye.com.geometricweather.R$attr: int singleLine -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String key -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_dither -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTheme -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonStyle -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy APPEND_OR_REPLACE -com.google.android.material.R$dimen: int mtrl_calendar_day_corner -com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_80 -okhttp3.internal.http2.Header: java.lang.String TARGET_PATH_UTF8 -androidx.appcompat.R$styleable: int AppCompatTextView_drawableLeftCompat -io.reactivex.Observable: io.reactivex.Observable intervalRange(long,long,long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.loader.R$dimen: int notification_action_text_size -androidx.appcompat.R$attr: int maxButtonHeight -com.google.android.material.R$style: int TextAppearance_AppCompat_Display4 -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle -com.turingtechnologies.materialscrollbar.Indicator: int getIndicatorWidth() -com.turingtechnologies.materialscrollbar.R$attr: int initialActivityCount -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: java.lang.String icon -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customColorDrawableValue -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceFragment -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_summaryOn -androidx.legacy.coreutils.R$id: int async -com.google.android.gms.common.api.ResolvableApiException: ResolvableApiException(com.google.android.gms.common.api.Status) -androidx.preference.R$dimen: int compat_button_padding_vertical_material -io.reactivex.internal.observers.BlockingObserver: java.util.Queue queue -com.google.android.material.R$styleable: int MaterialCheckBox_buttonTint -james.adaptiveicon.R$attr: int icon -androidx.preference.R$attr: int drawableRightCompat -com.jaredrummler.android.colorpicker.R$anim: int abc_fade_out -androidx.appcompat.widget.Toolbar: void setLogo(int) -android.didikee.donate.R$style: int Widget_AppCompat_Light_PopupMenu -android.didikee.donate.R$styleable: int AppCompatTextView_drawableLeftCompat -wangdaye.com.geometricweather.R$styleable: int MockView_mock_diagonalsColor -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: int quality -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarStyle -com.google.android.material.R$attr: int boxBackgroundColor -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_DATAUSAGE -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void run() -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_normal -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -okhttp3.Response$Builder: okhttp3.Protocol protocol -androidx.lifecycle.LiveData: boolean hasActiveObservers() -com.google.android.material.floatingactionbutton.FloatingActionButton: int getRippleColor() -wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeSeekBar -androidx.preference.R$dimen: int fastscroll_minimum_range -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: boolean connected -com.google.android.material.R$id: int line3 -androidx.appcompat.widget.DropDownListView: void setSelector(android.graphics.drawable.Drawable) -retrofit2.ParameterHandler$HeaderMap: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getIconTint() -com.google.android.material.card.MaterialCardView: void setCheckedIconResource(int) -androidx.preference.R$id: int submit_area -androidx.viewpager2.R$id: int title -cyanogenmod.themes.ThemeChangeRequest$Builder: ThemeChangeRequest$Builder(android.content.res.ThemeConfig) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_textAllCaps -androidx.constraintlayout.widget.R$attr: int percentWidth -okhttp3.internal.ws.RealWebSocket$2: okhttp3.internal.ws.RealWebSocket this$0 -com.google.android.material.R$attr: int tabIndicator -wangdaye.com.geometricweather.R$id: int widget_remote_drawable -cyanogenmod.externalviews.KeyguardExternalView: void onScreenTurnedOn() -com.xw.repo.bubbleseekbar.R$attr: int fontProviderFetchStrategy -com.amap.api.fence.GeoFenceClient: void addGeoFence(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWeatherText -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_focused_holo -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: int TRANSACTION_setServiceRequestState -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float thunderstormPrecipitation -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) -androidx.recyclerview.widget.RecyclerView: void setItemViewCacheSize(int) -com.turingtechnologies.materialscrollbar.R$integer: int hide_password_duration -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark_focused -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: java.util.List day -androidx.preference.R$attr: int preserveIconSpacing -androidx.constraintlayout.utils.widget.MotionTelltales: void setText(java.lang.CharSequence) -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void dispose() -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setNavBar(java.lang.String) -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxDaoPlain -wangdaye.com.geometricweather.R$id: int dialog_time_setter_cancel -com.bumptech.glide.R$attr: int keylines -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setValue(java.util.List) -wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_date -androidx.constraintlayout.widget.R$attr: int barLength -androidx.constraintlayout.widget.R$attr: int customBoolean -okio.Timeout: boolean hasDeadline() -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Chip -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_ContextMenu -com.google.android.material.R$color: int accent_material_light -cyanogenmod.hardware.CMHardwareManager: int FEATURE_LONG_TERM_ORBITS -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizePresetSizes -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation valueOf(java.lang.String) -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: io.reactivex.Observer child -wangdaye.com.geometricweather.R$dimen: int hint_alpha_material_dark -wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconVisible -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric Metric -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconTintMode -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_width -androidx.preference.R$styleable: int MenuItem_iconTint -androidx.loader.R$id: int async -okhttp3.internal.cache2.Relay: void writeMetadata(long) -androidx.constraintlayout.widget.R$styleable: int SearchView_queryHint -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizePresetSizes -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_colored_material -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: int UnitType +androidx.constraintlayout.widget.R$id: int ignore +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_ALARMS +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: javax.net.ssl.X509TrustManager trustManager +cyanogenmod.providers.CMSettings$Global: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +androidx.appcompat.R$color: int abc_background_cache_hint_selector_material_light +androidx.appcompat.widget.AppCompatImageView: android.content.res.ColorStateList getSupportImageTintList() +com.google.android.gms.base.R$id: int adjust_width +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextBackground +androidx.room.RoomDatabase: RoomDatabase() +androidx.preference.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int HAS_REQUEST_HAS_VALUE +androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$id: int default_activity_button +androidx.constraintlayout.widget.R$id: int actions +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.ErrorCode errorCode +retrofit2.Platform: java.lang.Object invokeDefaultMethod(java.lang.reflect.Method,java.lang.Class,java.lang.Object,java.lang.Object[]) +com.turingtechnologies.materialscrollbar.R$drawable: int tooltip_frame_light +androidx.vectordrawable.animated.R$dimen: int compat_button_padding_horizontal_material +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Borderless +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitation +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy IDENTITY +wangdaye.com.geometricweather.R$attr: int backgroundColorStart +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Line2 +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$id: int end +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionLayout +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Colored +okhttp3.OkHttpClient: java.util.List protocols() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintEnd_toStartOf +com.google.android.material.R$styleable: int TextAppearance_android_shadowDx +cyanogenmod.app.ThemeVersion: int getVersion() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index aggregatedIndex +com.google.android.material.R$attr: int trackColor +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +com.google.android.material.R$styleable: int AppCompatTheme_android_windowIsFloating +com.google.android.material.R$color: int abc_secondary_text_material_light +wangdaye.com.geometricweather.R$attr: int closeItemLayout +james.adaptiveicon.R$styleable: int AppCompatTheme_actionButtonStyle +androidx.appcompat.widget.AppCompatButton: void setBackgroundResource(int) +androidx.drawerlayout.R$id: int chronometer +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean china +wangdaye.com.geometricweather.R$attr: int layout_constraintDimensionRatio +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String weathercn +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.util.Date StartTime +androidx.constraintlayout.widget.R$color: int primary_text_default_material_dark +retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.reflect.Type responseType +androidx.constraintlayout.widget.R$dimen: int abc_text_size_caption_material +wangdaye.com.geometricweather.common.basic.models.weather.Alert: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.R$color: int material_grey_800 +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog +androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_bottom_material +androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemTextAppearance +wangdaye.com.geometricweather.R$attr: int customColorDrawableValue +com.google.android.material.slider.RangeSlider: void setEnabled(boolean) +androidx.appcompat.resources.R$id: int accessibility_custom_action_14 +okio.RealBufferedSource: okio.Buffer buffer +james.adaptiveicon.R$layout: int notification_template_part_chronometer +androidx.viewpager.widget.ViewPager: void setPageMarginDrawable(int) +androidx.viewpager.R$style +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: IKeyguardExternalViewCallbacks$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +okhttp3.CacheControl: boolean noCache +james.adaptiveicon.R$styleable: int LinearLayoutCompat_measureWithLargestChild +retrofit2.adapter.rxjava2.BodyObservable: io.reactivex.Observable upstream +com.jaredrummler.android.colorpicker.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$drawable: int ic_drag +cyanogenmod.weather.RequestInfo: int describeContents() +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Bridge +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupWindow +com.jaredrummler.android.colorpicker.R$string: int abc_search_hint +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark_normal_background +okhttp3.Address: boolean equals(java.lang.Object) +com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_percent +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getFillAlpha() +androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context) +androidx.appcompat.R$styleable: int TextAppearance_android_shadowRadius +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cuv +androidx.recyclerview.R$id: int accessibility_custom_action_0 +androidx.preference.MultiSelectListPreferenceDialogFragmentCompat: MultiSelectListPreferenceDialogFragmentCompat() +retrofit2.ParameterHandler$Part: ParameterHandler$Part(java.lang.reflect.Method,int,okhttp3.Headers,retrofit2.Converter) +androidx.constraintlayout.utils.widget.ImageFilterButton: void setRound(float) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedHeightMajor +androidx.appcompat.R$drawable: int abc_seekbar_track_material +wangdaye.com.geometricweather.R$attr: int paddingStart +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource) +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type[] values() +androidx.preference.R$attr: int min +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean done +wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.converters.WeatherSourceConverter weatherSourceConverter +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_activated_mtrl_alpha +androidx.preference.R$dimen: int tooltip_y_offset_non_touch +androidx.appcompat.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeightLarge +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getBrandId() +androidx.appcompat.widget.AppCompatSpinner: java.lang.CharSequence getPrompt() +okhttp3.FormBody: long writeOrCountBytes(okio.BufferedSink,boolean) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: WeatherEntityDao$Properties() +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: boolean isDisposed() +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.preference.R$attr: int buttonPanelSideLayout +okhttp3.Address: okhttp3.Authenticator proxyAuthenticator +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit[] values() +com.google.android.material.timepicker.ClockFaceView +com.google.android.gms.base.R$string: int common_google_play_services_notification_ticker +com.google.android.material.R$styleable: int KeyCycle_android_translationY +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.CompletableObserver downstream +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_width_material +wangdaye.com.geometricweather.R$styleable: int Constraint_android_scaleX +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_barLength +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String so2 +android.didikee.donate.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customDimension +cyanogenmod.app.IProfileManager$Stub$Proxy: void removeNotificationGroup(android.app.NotificationGroup) +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_PONG wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: java.lang.String getPubTime() -androidx.preference.R$styleable: int[] FontFamily -androidx.vectordrawable.R$dimen: int notification_large_icon_height -androidx.appcompat.R$id: int title -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf -androidx.preference.R$attr: int tickMarkTintMode -cyanogenmod.externalviews.ExternalView$2: void run() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setShortDescription(java.lang.String) -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.Query queryRawCreateListArgs(java.lang.String,java.util.Collection) -com.amap.api.location.CoordinateConverter$CoordType: CoordinateConverter$CoordType(java.lang.String,int) -com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String,java.lang.Throwable) -androidx.constraintlayout.utils.widget.ImageFilterView: float getRound() -androidx.constraintlayout.widget.R$color: int abc_primary_text_disable_only_material_light -androidx.constraintlayout.widget.R$attr: int firstBaselineToTopHeight -wangdaye.com.geometricweather.R$drawable: int ic_star_outline -androidx.hilt.lifecycle.R$drawable: int notification_action_background -com.xw.repo.bubbleseekbar.R$styleable: int[] SearchView -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeShareDrawable -com.jaredrummler.android.colorpicker.R$attr: int fastScrollHorizontalThumbDrawable -androidx.vectordrawable.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.db.entities.AlertEntity: long getAlertId() -androidx.viewpager2.R$styleable: int GradientColor_android_endX -androidx.preference.R$attr: int entries -wangdaye.com.geometricweather.R$id: int widget_clock_day_lunar -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvDescription -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onPause() -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogLayout -retrofit2.RequestFactory$Builder: boolean gotBody -james.adaptiveicon.R$id: int line3 -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_alpha -cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.AppSuggestManager sInstance -okhttp3.internal.http2.Http2Connection: void awaitPong() -wangdaye.com.geometricweather.R$drawable: int notif_temp_88 -cyanogenmod.weather.WeatherInfo$Builder: java.lang.String mCity -androidx.preference.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -androidx.constraintlayout.widget.R$drawable: int btn_radio_on_mtrl -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme_Dark -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetLeft -wangdaye.com.geometricweather.R$dimen: int abc_text_size_button_material -androidx.constraintlayout.widget.R$styleable: int Variant_region_widthMoreThan +com.jaredrummler.android.colorpicker.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_orderInCategory +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void drainLoop() +wangdaye.com.geometricweather.R$attr: int bsb_bubble_text_color +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter +io.reactivex.internal.observers.DeferredScalarObserver +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String Key +com.google.android.material.R$color: int abc_tint_btn_checkable +com.google.android.material.R$attr: int chipSurfaceColor +com.google.android.material.R$styleable: int[] Insets +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetLeft +cyanogenmod.app.LiveLockScreenManager: boolean show(int,cyanogenmod.app.LiveLockScreenInfo) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric() +androidx.activity.R$dimen: int compat_button_padding_horizontal_material +com.turingtechnologies.materialscrollbar.R$attr: int colorAccent +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_holo_light +cyanogenmod.providers.CMSettings$Secure: java.lang.String DISPLAY_GAMMA_CALIBRATION_PREFIX +androidx.viewpager2.R$dimen +wangdaye.com.geometricweather.R$dimen: int abc_dialog_padding_top_material +james.adaptiveicon.R$attr: int paddingTopNoTitle +android.didikee.donate.R$drawable: int notification_action_background +androidx.appcompat.R$dimen: int abc_dialog_fixed_width_minor +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius +james.adaptiveicon.R$dimen: int abc_edit_text_inset_horizontal_material +okhttp3.Headers$Builder: okhttp3.Headers$Builder addAll(okhttp3.Headers) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeWidth(float) +com.google.android.material.R$styleable: int KeyCycle_transitionEasing +okhttp3.internal.tls.BasicTrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Title +androidx.recyclerview.R$id: int accessibility_custom_action_25 +james.adaptiveicon.R$drawable: int notification_template_icon_low_bg +com.turingtechnologies.materialscrollbar.TouchScrollBar: float getIndicatorOffset() +wangdaye.com.geometricweather.R$attr: int passwordToggleTintMode +wangdaye.com.geometricweather.R$animator: int mtrl_btn_unelevated_state_list_anim +okhttp3.Dispatcher: int queuedCallsCount() +james.adaptiveicon.R$attr: int checkedTextViewStyle +james.adaptiveicon.R$attr: int actionModePopupWindowStyle +wangdaye.com.geometricweather.R$styleable: int[] MotionHelper +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: boolean isDisposed() +android.didikee.donate.R$styleable: R$styleable() +com.amap.api.fence.GeoFence: void setActivatesAction(int) +androidx.preference.R$attr: int listLayout +com.google.android.material.R$styleable: int ViewBackgroundHelper_backgroundTintMode +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: java.lang.String toString() +androidx.transition.R$id: R$id() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindChillTemperature +com.google.android.material.R$style: int Widget_AppCompat_TextView +wangdaye.com.geometricweather.R$animator: int design_fab_show_motion_spec +androidx.lifecycle.extensions.R$drawable: int notification_bg_normal_pressed +com.jaredrummler.android.colorpicker.R$id: int bottom +android.didikee.donate.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +com.amap.api.fence.GeoFence: int getType() +androidx.hilt.lifecycle.R$styleable: int[] FontFamily +androidx.appcompat.R$attr: int thumbTextPadding +androidx.preference.R$styleable: int DialogPreference_android_dialogTitle +androidx.appcompat.R$layout: int select_dialog_singlechoice_material +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_top +com.google.android.material.R$styleable: int[] PopupWindow +com.google.android.material.bottomappbar.BottomAppBar: void setCradleVerticalOffset(float) +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_48dp +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +androidx.swiperefreshlayout.R$id: int action_text +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWeatherSource() +androidx.coordinatorlayout.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.R$id: int none +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_32 +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.functions.Function mapper +com.google.android.material.R$styleable: int TextInputLayout_counterOverflowTextColor +com.turingtechnologies.materialscrollbar.R$color: int secondary_text_default_material_dark +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable[] TERMINATED +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean delayErrors +com.google.android.material.R$attr: int tabBackground +cyanogenmod.weather.RequestInfo: int hashCode() +com.google.android.material.R$id: int dragStart +com.turingtechnologies.materialscrollbar.R$dimen: int notification_right_icon_size +androidx.preference.R$styleable: int Toolbar_contentInsetRight +com.bumptech.glide.load.engine.GlideException: com.bumptech.glide.load.Key key +android.didikee.donate.R$attr: int homeLayout +androidx.appcompat.resources.R$styleable: int[] FontFamily +okhttp3.internal.http.BridgeInterceptor +com.amap.api.fence.GeoFence: void setExpiration(long) +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_USER_KEY +com.jaredrummler.android.colorpicker.R$attr: int listLayout +wangdaye.com.geometricweather.R$id: int activity_widget_config_wall +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: java.lang.Runnable getWrappedRunnable() +com.jaredrummler.android.colorpicker.ColorPreferenceCompat: void setOnShowDialogListener(com.jaredrummler.android.colorpicker.ColorPreferenceCompat$OnShowDialogListener) +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_text_size +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_middle_mtrl_dark +okio.Segment: okio.Segment push(okio.Segment) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.lang.String pubTime +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableBottom +com.google.android.material.R$dimen: int mtrl_badge_horizontal_edge_offset +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: android.os.IBinder asBinder() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableEnd +wangdaye.com.geometricweather.R$styleable: int[] KeyAttribute +com.google.android.material.navigation.NavigationView: int getItemIconPadding() +cyanogenmod.app.BaseLiveLockManagerService: android.os.RemoteCallbackList mChangeListeners +com.google.android.material.card.MaterialCardView: float getCardViewRadius() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorAccent +androidx.legacy.coreutils.R$attr: int fontProviderPackage +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet,int,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeDegreeDayTemperature +com.google.gson.stream.MalformedJsonException +androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_4_material +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: int nameId +androidx.vectordrawable.R$dimen: int notification_subtext_size +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator REVERSE_LOOKUP_PROVIDER_VALIDATOR +wangdaye.com.geometricweather.R$attr: int activityChooserViewStyle +com.google.android.material.internal.BaselineLayout: int getBaseline() +com.google.android.material.textfield.TextInputLayout: void setErrorIconDrawable(int) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationX(float) +com.google.android.material.R$attr: int listChoiceBackgroundIndicator +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchPopulateAccessibilityEvent(android.view.accessibility.AccessibilityEvent) +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.ObservableSource second +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableTop +androidx.appcompat.R$id: int action_bar_title +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_section_text +com.turingtechnologies.materialscrollbar.R$attr: int titleMargins +androidx.preference.R$layout: int preference_widget_seekbar_material +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_4_material +androidx.preference.R$color: int background_floating_material_light +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_DES_CBC_SHA +okhttp3.MultipartBody$Builder: java.util.List parts +androidx.swiperefreshlayout.R$id: int info +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_subtitle +cyanogenmod.providers.CMSettings$System: java.lang.String REVERSE_LOOKUP_PROVIDER +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextEnabled +okio.Options: okio.ByteString get(int) +com.google.android.material.R$string: int material_minute_suffix +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +com.google.android.material.R$attr: int colorPrimaryVariant +androidx.viewpager.R$attr +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_enterFadeDuration +james.adaptiveicon.R$style: int Platform_V21_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_maxWidth +androidx.constraintlayout.widget.R$styleable: int Transform_android_transformPivotX +cyanogenmod.app.CMContextConstants: java.lang.String CM_PARTNER_INTERFACE +cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri mThumbnailUri +cyanogenmod.app.IProfileManager$Stub$Proxy: IProfileManager$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +okhttp3.internal.cache.DiskLruCache$Editor: boolean[] written +wangdaye.com.geometricweather.R$styleable: int Preference_android_fragment +org.greenrobot.greendao.AbstractDaoSession: java.util.List queryRaw(java.lang.Class,java.lang.String,java.lang.String[]) +com.google.android.material.chip.Chip: void setMaxWidth(int) +com.google.android.material.R$styleable: int BottomAppBar_fabAnimationMode +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyle +com.google.android.material.R$dimen: int abc_text_size_subtitle_material_toolbar +androidx.customview.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$string: int key_temperature_unit +androidx.coordinatorlayout.R$id: int action_divider +androidx.recyclerview.R$styleable: int GradientColor_android_endColor +com.xw.repo.bubbleseekbar.R$color: int colorPrimary +cyanogenmod.app.LiveLockScreenInfo: java.lang.String toString() +retrofit2.KotlinExtensions$suspendAndThrow$1 +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +androidx.constraintlayout.widget.R$string: int abc_menu_alt_shortcut_label +cyanogenmod.app.ProfileGroup: boolean validateOverrideUri(android.content.Context,android.net.Uri) +retrofit2.converter.gson.GsonConverterFactory: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_altSrc +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_goIcon +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String value +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_1 +com.google.android.material.R$layout: int mtrl_layout_snackbar_include +androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceTimedObserver parent +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onSubscribe(org.reactivestreams.Subscription) +wangdaye.com.geometricweather.R$string: int v7_preference_off +wangdaye.com.geometricweather.R$attr: int valueTextColor +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_track +androidx.constraintlayout.widget.R$id: int bottom +wangdaye.com.geometricweather.search.SearchActivity: SearchActivity() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_89 +androidx.core.R$id: int dialog_button androidx.constraintlayout.widget.R$id: int buttonPanel -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.util.AtomicThrowable error -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitation(java.lang.Float) -wangdaye.com.geometricweather.R$drawable: int star_2 -cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo mWeatherInfo -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.lang.Throwable error +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity +okio.InflaterSource: void close() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_disabled_alpha_material_light +wangdaye.com.geometricweather.R$styleable: int View_paddingEnd +androidx.dynamicanimation.R$id: int async +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerSlack +wangdaye.com.geometricweather.R$drawable: int notif_temp_0 +com.bumptech.glide.integration.okhttp.R$style: int Widget_Compat_NotificationActionText +okio.ByteString: okio.ByteString hmacSha256(okio.ByteString) +wangdaye.com.geometricweather.R$string: int common_google_play_services_install_title +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +androidx.constraintlayout.widget.R$attr: int constraintSetEnd +james.adaptiveicon.R$dimen: int abc_dialog_title_divider_material +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_16 +com.google.android.material.R$styleable: int TextInputLayout_placeholderTextColor +androidx.hilt.work.R$attr +wangdaye.com.geometricweather.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias +androidx.core.R$id: int accessibility_custom_action_16 +com.google.android.material.R$dimen: int mtrl_extended_fab_end_padding +com.amap.api.fence.DistrictItem: void writeToParcel(android.os.Parcel,int) +okhttp3.internal.http2.Hpack$Reader: boolean isStaticHeader(int) +wangdaye.com.geometricweather.R$string: int about_glide +com.jaredrummler.android.colorpicker.R$dimen: int cpv_color_preference_large +com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context) +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderQuery +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceLargePopupMenu +com.bumptech.glide.R$drawable: int notification_bg_low_pressed +androidx.preference.R$attr: R$attr() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.amap.api.location.LocationManagerBase: void unRegisterLocationListener(com.amap.api.location.AMapLocationListener) +wangdaye.com.geometricweather.R$style: int TestThemeWithLineHeightDisabled +com.turingtechnologies.materialscrollbar.R$styleable: int[] Snackbar +com.xw.repo.bubbleseekbar.R$id: int action_bar_activity_content +com.google.android.material.R$styleable: int Chip_iconStartPadding +android.didikee.donate.R$styleable: int SearchView_defaultQueryHint +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginRight +cyanogenmod.externalviews.ExternalViewProviderService$Provider: int DEFAULT_WINDOW_FLAGS +androidx.appcompat.R$attr: int actionOverflowButtonStyle +androidx.vectordrawable.R$id: int accessibility_custom_action_18 +com.google.android.material.R$styleable: int NavigationView_itemShapeInsetBottom +androidx.cardview.R$attr: int cardUseCompatPadding +com.google.gson.FieldNamingPolicy$2: FieldNamingPolicy$2(java.lang.String,int) +cyanogenmod.app.ILiveLockScreenManager: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +com.xw.repo.bubbleseekbar.R$layout: int abc_cascading_menu_item_layout +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_homeLayout +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_toLeftOf +wangdaye.com.geometricweather.R$attr: int layout_constraintStart_toEndOf +cyanogenmod.hardware.ICMHardwareService$Stub: android.os.IBinder asBinder() +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableEndCompat +okhttp3.Dispatcher: Dispatcher() +android.didikee.donate.R$styleable: int MenuItem_android_id +android.didikee.donate.R$color: int background_material_dark +com.google.android.material.R$styleable: int AppCompatTextView_drawableLeftCompat +androidx.lifecycle.ViewModel: void clear() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: java.lang.String Unit +okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String,java.lang.String) +james.adaptiveicon.R$attr: int buttonBarNeutralButtonStyle +okhttp3.internal.connection.StreamAllocation: boolean $assertionsDisabled +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX info +com.google.android.material.appbar.AppBarLayout: void setStatusBarForegroundColor(int) +com.bumptech.glide.R$dimen: int notification_small_icon_background_padding +okio.BufferedSink: okio.Buffer buffer() +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginRight +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.R$attr: int buttonBarNeutralButtonStyle +androidx.work.R$id: int accessibility_custom_action_0 +retrofit2.package-info +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_max_width +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig dailyEntityDaoConfig +com.google.android.material.R$styleable: int AppCompatTextHelper_android_textAppearance +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HURRICANE +wangdaye.com.geometricweather.R$color: int colorTextAlert +cyanogenmod.app.suggest.ApplicationSuggestion: int describeContents() +okio.ByteString: int codePointIndexToCharIndex(java.lang.String,int) +com.amap.api.fence.GeoFence: long getEnterTime() +com.google.android.material.R$attr: int touchAnchorSide +androidx.hilt.work.R$id: int action_container +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderFetchTimeout +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec codec() +com.xw.repo.bubbleseekbar.R$id: int title +androidx.appcompat.widget.ActionBarOverlayLayout: void setShowingForActionMode(boolean) +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +wangdaye.com.geometricweather.R$layout: int material_timepicker_dialog +com.jaredrummler.android.colorpicker.R$integer: int abc_config_activityShortDur +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer grassLevel +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTimestamp(long) +wangdaye.com.geometricweather.R$dimen: int mtrl_chip_text_size +androidx.coordinatorlayout.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int ViewPager2_android_orientation +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_61 +wangdaye.com.geometricweather.R$drawable: int widget_card_light_40 +androidx.appcompat.R$anim: R$anim() +wangdaye.com.geometricweather.R$id: int barrier +wangdaye.com.geometricweather.R$id: int activity_preview_icon_recyclerView +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource MEMORY_CACHE +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onScreenTurnedOn() +androidx.appcompat.R$attr: int paddingTopNoTitle +com.jaredrummler.android.colorpicker.R$attr: int dropdownListPreferredItemHeight +androidx.hilt.work.R$dimen: int compat_button_inset_vertical_material +okhttp3.HttpUrl: java.lang.String FRAGMENT_ENCODE_SET +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +androidx.appcompat.R$styleable: int FontFamilyFont_fontWeight +retrofit2.Retrofit: okhttp3.HttpUrl baseUrl() +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_visible +com.xw.repo.bubbleseekbar.R$attr: int tickMarkTint +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long serialVersionUID +wangdaye.com.geometricweather.R$layout: int support_simple_spinner_dropdown_item +androidx.vectordrawable.animated.R$style: int Widget_Compat_NotificationActionText +cyanogenmod.externalviews.IExternalViewProvider: void onResume() +wangdaye.com.geometricweather.R$color: int bright_foreground_disabled_material_light +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_subtitle_material_toolbar +okhttp3.OkHttpClient: OkHttpClient() +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: long serialVersionUID +androidx.appcompat.R$color: int abc_search_url_text +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endY +okhttp3.internal.ws.RealWebSocket$1: RealWebSocket$1(okhttp3.internal.ws.RealWebSocket) +androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getAbbreviation(android.content.Context) +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(boolean) +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeBackground +okio.AsyncTimeout$1: void write(okio.Buffer,long) +retrofit2.http.Headers +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: java.lang.Object invoke(java.lang.Object) +okhttp3.internal.http2.Http2Reader: okhttp3.internal.http2.Http2Reader$ContinuationSource continuation +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_default +com.xw.repo.bubbleseekbar.R$id: int checkbox +androidx.work.R$style: R$style() +wangdaye.com.geometricweather.R$styleable: int Transform_android_elevation +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_NoActionBar +android.didikee.donate.R$attr: int listPreferredItemPaddingLeft +cyanogenmod.library.R$styleable: int[] LiveLockScreen +retrofit2.adapter.rxjava2.Result: retrofit2.Response response +wangdaye.com.geometricweather.R$styleable: int SearchView_voiceIcon +wangdaye.com.geometricweather.R$styleable: int[] InkPageIndicator +android.didikee.donate.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_swoop_duration +wangdaye.com.geometricweather.common.ui.activities.AwakeUpdateActivity: AwakeUpdateActivity() +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setWeatherSource(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial +androidx.hilt.work.R$dimen +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_title +androidx.preference.R$layout: int abc_screen_toolbar +james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedHeightMajor +com.google.android.material.R$color: int design_default_color_on_secondary +org.greenrobot.greendao.AbstractDaoSession: void delete(java.lang.Object) +wangdaye.com.geometricweather.R$id: int stop +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_title +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String cityId +android.didikee.donate.R$style: int Widget_AppCompat_Light_ListView_DropDown +androidx.constraintlayout.widget.R$attr: int textColorSearchUrl +androidx.preference.R$styleable: int[] RecyclerView +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_space_shortcut_label +cyanogenmod.app.CMTelephonyManager: void setDataConnectionSelectedOnSub(int) +wangdaye.com.geometricweather.background.polling.work.worker.TodayForecastUpdateWorker +android.didikee.donate.R$styleable: int AppCompatTextView_drawableTint +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlHighlight +com.xw.repo.bubbleseekbar.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_44 +com.google.android.gms.common.SupportErrorDialogFragment +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitation(java.lang.Float) +com.google.android.material.R$id: int tag_accessibility_clickable_spans +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_container +androidx.core.R$drawable: int notification_bg +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_0_30 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String getValue() +com.jaredrummler.android.colorpicker.R$layout: int notification_template_icon_group +com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a e +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setProvince(java.lang.String) +androidx.preference.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode AUTO +com.google.android.material.slider.BaseSlider$SliderState +androidx.work.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCutDrawable +androidx.swiperefreshlayout.R$integer +cyanogenmod.app.CMTelephonyManager: void setDefaultPhoneSub(int) +androidx.constraintlayout.widget.R$styleable: int[] StateListDrawableItem +androidx.preference.R$attr: int summaryOn +androidx.hilt.work.R$attr: int fontWeight +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderFetchStrategy +okio.BufferedSource: java.io.InputStream inputStream() +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose[] values() +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge +io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,int) +com.google.android.material.R$styleable: int MaterialButton_android_insetBottom +com.google.android.material.R$style: int Base_TextAppearance_AppCompat +androidx.constraintlayout.widget.R$styleable: int[] ColorStateListItem +androidx.lifecycle.LifecycleRegistry: LifecycleRegistry(androidx.lifecycle.LifecycleOwner) +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks access$700(cyanogenmod.externalviews.KeyguardExternalView) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult +com.google.android.material.R$id: int test_radiobutton_android_button_tint +com.google.android.material.R$attr: int layout_constraintGuide_percent +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: CustomTileListenerService$ICustomTileListenerWrapper(cyanogenmod.app.CustomTileListenerService) +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setDeleteIntent(android.app.PendingIntent) +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_padding_horizontal +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeWetBulbTemperature() +android.didikee.donate.R$styleable: int Toolbar_titleTextAppearance +wangdaye.com.geometricweather.R$attr: int bottomNavigationStyle +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_22 +com.google.android.material.R$styleable: int Layout_layout_constraintGuide_begin +cyanogenmod.weather.WeatherInfo$DayForecast$1: cyanogenmod.weather.WeatherInfo$DayForecast[] newArray(int) +okhttp3.ConnectionSpec: boolean equals(java.lang.Object) +android.didikee.donate.R$color: int abc_tint_spinner +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_middle_mtrl_light +androidx.customview.R$style +com.google.android.material.R$attr: int listMenuViewStyle +com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace SRGB +wangdaye.com.geometricweather.R$color: int design_snackbar_background_color +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorTextAppearance +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_SearchView +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchTextAppearance +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotation +io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.ObservableSource) +androidx.lifecycle.SavedStateHandle$SavingStateLiveData +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState FAILED +androidx.appcompat.R$styleable: int MenuItem_android_enabled +wangdaye.com.geometricweather.R$styleable: int Constraint_android_scaleY +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderSelection +androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +android.didikee.donate.R$styleable: int ActionMode_height +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView_Menu +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: ObservableCreate$SerializedEmitter(io.reactivex.ObservableEmitter) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.util.concurrent.atomic.AtomicLong requested +wangdaye.com.geometricweather.R$attr: int snackbarTextViewStyle +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_android_gravity +wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_alphaChannelText +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizePresetSizes +androidx.appcompat.R$styleable: int Toolbar_android_gravity +okhttp3.internal.Util: boolean verifyAsIpAddress(java.lang.String) +android.didikee.donate.R$styleable: int ActionMode_backgroundSplit +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Bridge +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getEn_US() +wangdaye.com.geometricweather.R$string: int content_desc_weather_alert_button +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event[] values() +okio.Pipe: okio.Buffer buffer +cyanogenmod.profiles.AirplaneModeSettings$BooleanState: int STATE_ENABLED +wangdaye.com.geometricweather.R$id: int pathRelative +com.github.rahatarmanahmed.cpv.CircularProgressView: void onAttachedToWindow() +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit CM +androidx.preference.R$attr: int seekBarPreferenceStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setWeather(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean) +androidx.legacy.coreutils.R$dimen: int compat_button_padding_horizontal_material +com.bumptech.glide.R$id: int none +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void subscribeNext() +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sunrise_sunset +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Small +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit K +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onScreenTurnedOff() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_outline_box_expanded_padding +wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment: ServiceProviderSettingsFragment() +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_y_offset_non_touch +james.adaptiveicon.R$anim: int abc_slide_out_top +cyanogenmod.hardware.CMHardwareManager: java.lang.String TAG +cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String TIMEZONE_NAME +wangdaye.com.geometricweather.R$attr: int layout_constraintBaseline_creator +james.adaptiveicon.R$drawable: int abc_list_pressed_holo_dark +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarTitle +androidx.transition.R$id: int title +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +com.google.android.material.R$styleable: int MenuItem_actionProviderClass +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_days_of_week +androidx.lifecycle.extensions.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity +james.adaptiveicon.R$styleable +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode DARK +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Id +android.didikee.donate.R$dimen: int abc_dialog_fixed_width_major +com.github.rahatarmanahmed.cpv.R$attr +androidx.loader.R$styleable: int GradientColor_android_type +android.didikee.donate.R$styleable: int TextAppearance_android_shadowRadius +androidx.appcompat.widget.AppCompatTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +cyanogenmod.app.ProfileManager: java.util.UUID NO_PROFILE +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_17 +okhttp3.internal.http2.Http2Connection$4 +wangdaye.com.geometricweather.R$styleable: int ListPreference_entries +com.google.android.gms.signin.internal.zak: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_titleCondensed +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onSubscribe(org.reactivestreams.Subscription) +james.adaptiveicon.R$styleable: int AppCompatTextView_fontVariationSettings +cyanogenmod.profiles.RingModeSettings: RingModeSettings(java.lang.String,boolean) +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int cpv_animSteps +org.greenrobot.greendao.AbstractDaoSession: AbstractDaoSession(org.greenrobot.greendao.database.Database) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.util.List getValue() +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +com.google.android.material.R$attr: int subtitle +cyanogenmod.themes.ThemeChangeRequest +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean forecastHourly +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean +androidx.preference.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric Metric +com.google.android.material.R$styleable: int NavigationView_itemShapeInsetEnd +androidx.preference.R$styleable: int ActionBar_customNavigationLayout +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall this$0 +cyanogenmod.providers.CMSettings$Secure: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) +androidx.preference.R$drawable: int abc_ic_star_black_48dp +com.jaredrummler.android.colorpicker.R$id: int action_menu_divider +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void collapseNotificationPanel() +wangdaye.com.geometricweather.R$string: int settings_title_minimal_icon +wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_chainStyle +android.support.v4.os.IResultReceiver: void send(int,android.os.Bundle) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date getUpdateDate() +retrofit2.adapter.rxjava2.CallExecuteObservable: retrofit2.Call originalCall +androidx.appcompat.R$color +androidx.lifecycle.ProcessLifecycleOwner$3$1: androidx.lifecycle.ProcessLifecycleOwner$3 this$1 +com.turingtechnologies.materialscrollbar.R$drawable: int mtrl_tabs_default_indicator +wangdaye.com.geometricweather.R$attr: int bsb_thumb_text_size +androidx.constraintlayout.widget.R$id: int src_over +io.reactivex.Observable: io.reactivex.Observable doOnError(io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.R$drawable: int flag_pl +wangdaye.com.geometricweather.R$styleable: int Chip_chipIconTint +com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_out_bottom +com.xw.repo.bubbleseekbar.R$attr: int colorBackgroundFloating +okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String key +wangdaye.com.geometricweather.R$attr: int trackColorInactive +okio.Buffer: short readShortLe() +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onNext(java.lang.Object) +okhttp3.internal.platform.Platform: java.lang.Object readFieldOrNull(java.lang.Object,java.lang.Class,java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int tabUnboundedRipple +okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String etag +retrofit2.CallAdapter$Factory: java.lang.Class getRawType(java.lang.reflect.Type) +wangdaye.com.geometricweather.db.entities.WeatherEntity: long updateTime +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.util.List protocols +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Medium_Inverse +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.util.Date date +cyanogenmod.app.IProfileManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.google.android.material.slider.Slider: void setThumbElevation(float) +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void clear() +androidx.lifecycle.LifecycleRegistry: boolean mHandlingEvent +androidx.lifecycle.extensions.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.R$animator: R$animator() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.common.basic.models.weather.Alert: void descByTime(java.util.List) +androidx.preference.R$attr: int allowDividerAfterLastItem +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.R$attr: int minHideDelay +com.google.android.material.R$layout: int select_dialog_item_material +cyanogenmod.profiles.LockSettings: void writeXmlString(java.lang.StringBuilder,android.content.Context) +wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents +androidx.fragment.app.FragmentTabHost$SavedState +com.jaredrummler.android.colorpicker.R$styleable: int RecycleListView_paddingTopNoTitle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setFeelsLike(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean) +com.jaredrummler.android.colorpicker.R$style: int Base_V22_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$dimen: int design_appbar_elevation +james.adaptiveicon.R$styleable: int AppCompatTheme_windowMinWidthMinor +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Switch +androidx.hilt.lifecycle.R$drawable: int notify_panel_notification_icon_bg +cyanogenmod.app.Profile: java.util.Map connections +wangdaye.com.geometricweather.R$id: int alertTitle +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: FitSystemBarSwipeRefreshLayout(android.content.Context) +androidx.constraintlayout.widget.R$id: int content +androidx.constraintlayout.widget.R$attr: int subtitleTextAppearance +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_EMPTY_RENEGOTIATION_INFO_SCSV +cyanogenmod.power.IPerformanceManager$Stub: cyanogenmod.power.IPerformanceManager asInterface(android.os.IBinder) +wangdaye.com.geometricweather.R$id: int container_main_pollen_pager +cyanogenmod.themes.ThemeManager$ThemeChangeListener: void onFinish(boolean) +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_unregisterListener +james.adaptiveicon.R$styleable: int SwitchCompat_track +androidx.coordinatorlayout.R$attr: int fontVariationSettings +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar +com.google.android.material.chip.Chip: void setCloseIconEnabled(boolean) +com.google.android.material.R$id: int title +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.X509TrustManager) +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontStyle +androidx.constraintlayout.widget.R$id: int left +okhttp3.internal.ws.RealWebSocket$PingRunnable: okhttp3.internal.ws.RealWebSocket this$0 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getNo2() +com.google.android.material.circularreveal.CircularRevealRelativeLayout: CircularRevealRelativeLayout(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$color: int foreground_material_dark +com.xw.repo.bubbleseekbar.R$layout: int abc_search_dropdown_item_icons_2line +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.functions.Function mapper +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade RealFeelTemperatureShade +androidx.preference.R$anim: int abc_popup_enter +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginBottom() +androidx.constraintlayout.widget.R$id: int cos +android.didikee.donate.R$color: int abc_primary_text_material_light +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setPosition(int) +wangdaye.com.geometricweather.R$id: int dragEnd +wangdaye.com.geometricweather.R$id: int SHIFT +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +cyanogenmod.app.ICMTelephonyManager: boolean isSubActive(int) +wangdaye.com.geometricweather.R$id: int groups +wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaContainer +androidx.preference.R$color: int switch_thumb_normal_material_light +cyanogenmod.profiles.BrightnessSettings: int getValue() +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +com.google.android.material.R$attr: int windowFixedWidthMajor +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +okhttp3.internal.http2.Http2: byte FLAG_PADDED +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +okhttp3.RequestBody$2: int val$byteCount +cyanogenmod.app.ThemeVersion$ComponentVersion: int minVersion +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Title +androidx.constraintlayout.widget.R$drawable: int abc_btn_check_material_anim +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_orientation +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_setServiceClient +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitle +androidx.constraintlayout.widget.R$styleable: int[] KeyAttribute +androidx.constraintlayout.widget.R$style: int Animation_AppCompat_Dialog +androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: MfForecastResult$Forecast() +com.google.android.material.R$styleable: int AppCompatTextView_drawableTint +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Pollen pollen +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_15 +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Medium +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer aqiIndex +com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatElevation() +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_splitTrack +wangdaye.com.geometricweather.R$attr: int dragThreshold +androidx.preference.R$styleable: int LinearLayoutCompat_divider +okhttp3.internal.ws.WebSocketReader: void readControlFrame() +wangdaye.com.geometricweather.R$id: int activity_widget_config_widgetContainer +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_3_00 +androidx.hilt.work.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$styleable: int SwitchCompat_thumbTint +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter beginArray() +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HistoryEntityDao getHistoryEntityDao() +com.google.android.material.R$styleable: int TextAppearance_android_typeface +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.AlertEntity,long) +com.google.android.material.R$attr: int itemHorizontalPadding +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +wangdaye.com.geometricweather.R$attr: int boxCornerRadiusBottomEnd +wangdaye.com.geometricweather.R$dimen: int design_snackbar_elevation +com.google.android.material.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundTintList(android.content.res.ColorStateList) +androidx.cardview.widget.CardView: void setMinimumHeight(int) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_elevation +cyanogenmod.weatherservice.WeatherProviderService$1: WeatherProviderService$1(cyanogenmod.weatherservice.WeatherProviderService) +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.R$id: int showCustom +james.adaptiveicon.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +com.google.android.material.R$styleable: int RangeSlider_minSeparation +com.google.android.material.R$color: int material_slider_inactive_track_color +androidx.fragment.R$id: int icon +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickInactiveTintList() +retrofit2.OkHttpCall: okhttp3.Call rawCall +retrofit2.Response: retrofit2.Response success(java.lang.Object) +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Bridge +com.amap.api.location.AMapLocation: void setLocationDetail(java.lang.String) +wangdaye.com.geometricweather.R$attr: int saturation +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +androidx.constraintlayout.widget.R$string: int abc_menu_space_shortcut_label +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() +wangdaye.com.geometricweather.R$styleable: int Variant_region_heightLessThan +androidx.preference.R$anim: int fragment_fade_exit +cyanogenmod.app.ICMTelephonyManager$Stub: cyanogenmod.app.ICMTelephonyManager asInterface(android.os.IBinder) +androidx.appcompat.R$attr: int actionButtonStyle +james.adaptiveicon.R$styleable: int ActionBar_height +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_commitIcon +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String no2 +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: MfForecastResult$DailyForecast$Sun() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int Icon +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRealFeelShaderTemperature(java.lang.Integer) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX speed +wangdaye.com.geometricweather.R$attr: int tickMarkTintMode +okhttp3.WebSocket: boolean close(int,java.lang.String) +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_CONDITION_CODE +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: java.lang.String Unit +cyanogenmod.providers.CMSettings$Global: boolean putLong(android.content.ContentResolver,java.lang.String,long) +cyanogenmod.os.Build: java.lang.String UNKNOWN +androidx.preference.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +androidx.dynamicanimation.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$style: int Theme_AppCompat_Dialog_MinWidth +wangdaye.com.geometricweather.R$drawable: int ic_launcher_background +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onAnimationReset() +okhttp3.ResponseBody: void close() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar_Small +androidx.preference.R$attr: int listPreferredItemPaddingEnd +androidx.preference.R$attr: int selectableItemBackgroundBorderless +androidx.lifecycle.ProcessLifecycleOwner: void dispatchStopIfNeeded() +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Time +com.google.android.material.R$styleable: int KeyCycle_wavePeriod +okio.Okio: java.util.logging.Logger logger +retrofit2.RequestBuilder: void addHeaders(okhttp3.Headers) +androidx.appcompat.R$styleable: int[] StateListDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder createExternalView(android.os.Bundle) +androidx.hilt.R$dimen: int compat_button_inset_horizontal_material +com.google.android.material.R$dimen: int design_tab_text_size_2line +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getCardName(android.content.Context) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_PopupMenu +james.adaptiveicon.R$attr: int imageButtonStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_100 +androidx.preference.R$color: int material_blue_grey_800 +wangdaye.com.geometricweather.R$attr: int errorTextColor +com.google.android.material.R$dimen: int mtrl_progress_circular_inset +androidx.transition.R$attr: int fontProviderCerts +com.google.android.material.R$bool: int abc_allow_stacked_button_bar +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +androidx.constraintlayout.widget.R$attr: int percentY +com.github.rahatarmanahmed.cpv.CircularProgressView: android.graphics.RectF bounds +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean getSunRiseSet() +com.google.gson.FieldNamingPolicy$1: FieldNamingPolicy$1(java.lang.String,int) +androidx.preference.R$drawable: int abc_tab_indicator_mtrl_alpha +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +androidx.appcompat.R$attr: int searchHintIcon +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_icon_null_animation +com.jaredrummler.android.colorpicker.R$attr: int actionOverflowMenuStyle +androidx.vectordrawable.R$color: int secondary_text_default_material_light +com.turingtechnologies.materialscrollbar.R$attr: int controlBackground +okhttp3.ResponseBody$1: okio.BufferedSource source() +com.google.android.material.R$styleable: int Variant_region_heightLessThan +androidx.fragment.R$id: int accessibility_custom_action_25 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed +androidx.drawerlayout.R$styleable: int GradientColor_android_gradientRadius +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void dispose() +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: ParallelRunOn$BaseRunOnSubscriber(int,io.reactivex.internal.queue.SpscArrayQueue,io.reactivex.Scheduler$Worker) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int Priority +androidx.swiperefreshlayout.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$attr: int placeholderTextColor +com.google.android.material.R$styleable: int TextInputLayout_suffixText +cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.os.Parcel,cyanogenmod.app.LiveLockScreenInfo$1) +androidx.preference.R$interpolator: R$interpolator() +androidx.customview.R$styleable: int ColorStateListItem_android_color +android.didikee.donate.R$attr: int trackTint +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Button +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin +androidx.lifecycle.SavedStateHandle$1: SavedStateHandle$1(androidx.lifecycle.SavedStateHandle) +io.reactivex.Observable: io.reactivex.Observable sorted(java.util.Comparator) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: long idx +cyanogenmod.app.ProfileGroup: android.net.Uri mSoundOverride +okhttp3.RequestBody$3: okhttp3.MediaType contentType() +okio.HashingSink: okio.HashingSink sha1(okio.Sink) +io.reactivex.internal.queue.SpscArrayQueue: void soConsumerIndex(long) +com.google.android.material.R$style: int Base_Widget_AppCompat_Button +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Tooltip +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_windowAnimationStyle +com.jaredrummler.android.colorpicker.R$attr: int windowActionBar +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String componentToMixNMatchKey(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_text_size +androidx.preference.R$styleable: int AppCompatTextView_drawableLeftCompat +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_dividerPadding +androidx.recyclerview.widget.RecyclerView$SavedState +com.google.android.material.R$dimen: int material_filled_edittext_font_2_0_padding_top +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: boolean IsAlias +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPreStopped(android.app.Activity) +retrofit2.KotlinExtensions$awaitResponse$2$2: void onResponse(retrofit2.Call,retrofit2.Response) +wangdaye.com.geometricweather.R$id: int grassValue +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabText +okhttp3.internal.platform.AndroidPlatform$CloseGuard: AndroidPlatform$CloseGuard(java.lang.reflect.Method,java.lang.reflect.Method,java.lang.reflect.Method) +wangdaye.com.geometricweather.db.entities.WeatherEntity: long getTimeStamp() +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void request(long) +androidx.constraintlayout.widget.R$attr: int menu +cyanogenmod.weatherservice.WeatherProviderService: android.os.IBinder onBind(android.content.Intent) +com.google.android.material.datepicker.CalendarConstraints: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_arrowHeadLength +androidx.viewpager2.R$attr: int fontWeight +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: void setSurfaceAngle(float) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleTint +androidx.recyclerview.R$attr: int recyclerViewStyle +wangdaye.com.geometricweather.db.entities.WeatherEntity: long timeStamp +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_lightOnTouch +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView_DropDown +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +androidx.appcompat.R$attr: int drawableEndCompat +com.turingtechnologies.materialscrollbar.R$id: int filled +com.google.android.material.R$styleable: int Chip_textStartPadding +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_visible +james.adaptiveicon.R$attr: int panelBackground +okhttp3.internal.ws.WebSocketReader: int opcode +okhttp3.internal.connection.RouteDatabase: void failed(okhttp3.Route) +io.reactivex.internal.util.VolatileSizeArrayList: void clear() +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_seek_by_section +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial() +wangdaye.com.geometricweather.R$attr: int selectionRequired +androidx.preference.R$attr: int checkboxStyle +wangdaye.com.geometricweather.R$drawable: int abc_tab_indicator_mtrl_alpha +androidx.activity.R$id: R$id() +wangdaye.com.geometricweather.R$array: int notification_text_color_values +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView +androidx.hilt.lifecycle.R$styleable: R$styleable() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogTheme +androidx.preference.R$style: int Widget_AppCompat_ActionButton +com.jaredrummler.android.colorpicker.R$style: int Preference_Information +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.RequestBody delegate +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_scaleY +wangdaye.com.geometricweather.R$attr: int chipSpacingVertical +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String STYLE_URI +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_textOn +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_NAVIGATION_BAR +androidx.transition.ChangeBounds$7 androidx.preference.R$drawable: int abc_btn_check_to_on_mtrl_000 -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_9 -androidx.customview.R$styleable: int GradientColor_android_startY -android.didikee.donate.R$attr: int allowStacking -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetLeft -com.google.android.material.R$styleable: int KeyTrigger_onCross -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_second_track_size -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView_DropDown -com.google.android.material.R$styleable: int TextInputLayout_startIconTintMode -james.adaptiveicon.R$attr: int alertDialogStyle -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceGroup -com.google.android.material.R$attr: int verticalOffset -androidx.constraintlayout.widget.R$anim: int abc_tooltip_exit -androidx.constraintlayout.widget.R$styleable: int ActionBar_popupTheme -com.google.android.material.R$color: int material_on_surface_stroke -wangdaye.com.geometricweather.R$string: int feedback_not_yet_location -cyanogenmod.util.ColorUtils -okhttp3.internal.http1.Http1Codec: okhttp3.internal.connection.StreamAllocation streamAllocation -com.amap.api.fence.GeoFence: boolean equals(java.lang.Object) -io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicReference upstream -android.didikee.donate.R$dimen: int hint_alpha_material_light -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerNext() -com.turingtechnologies.materialscrollbar.R$style: int Widget_Compat_NotificationActionText -james.adaptiveicon.R$dimen: int abc_dialog_min_width_minor -android.didikee.donate.R$attr: int buttonStyleSmall +com.turingtechnologies.materialscrollbar.R$drawable: int avd_show_password +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircleRadius +androidx.appcompat.R$attr: int trackTintMode +wangdaye.com.geometricweather.R$id: int weather_icon +james.adaptiveicon.R$layout: int support_simple_spinner_dropdown_item +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityDestroyed(android.app.Activity) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.R$id: int chip1 +com.jaredrummler.android.colorpicker.R$drawable: int abc_edit_text_material +com.jaredrummler.android.colorpicker.R$style: int Preference_Material +okio.GzipSource: java.util.zip.Inflater inflater +androidx.preference.R$attr: int numericModifiers +wangdaye.com.geometricweather.remoteviews.config.Hilt_TextWidgetConfigActivity +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetStart +androidx.vectordrawable.R$id: int normal +okhttp3.Cookie: boolean equals(java.lang.Object) +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +okhttp3.internal.tls.OkHostnameVerifier: boolean verifyHostname(java.lang.String,java.lang.String) +okhttp3.HttpUrl: java.lang.String queryParameter(java.lang.String) +androidx.preference.R$color: int background_floating_material_dark +wangdaye.com.geometricweather.R$integer: int show_password_duration +androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_MAX +okio.Okio$3: void write(okio.Buffer,long) +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_tagView +okhttp3.RealCall: boolean executed +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +okhttp3.internal.connection.RealConnection: void connectSocket(int,int,okhttp3.Call,okhttp3.EventListener) +androidx.preference.R$string +com.xw.repo.bubbleseekbar.R$style: int Base_V28_Theme_AppCompat_Light +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_0 +com.google.android.material.bottomnavigation.BottomNavigationView: void setOnNavigationItemSelectedListener(com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemSelectedListener) +androidx.lifecycle.ComputableLiveData: java.util.concurrent.atomic.AtomicBoolean mInvalid +wangdaye.com.geometricweather.R$layout: int fragment_management +io.reactivex.internal.observers.DeferredScalarObserver: void onComplete() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SeekBar +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_subtitleTextStyle +androidx.appcompat.resources.R$drawable: int abc_vector_test +androidx.preference.SeekBarPreference: SeekBarPreference(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$id: int dialog_donate_wechat +com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat +com.xw.repo.bubbleseekbar.R$attr: int actionBarItemBackground +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemPaddingLeft +com.jaredrummler.android.colorpicker.R$attr: int popupMenuStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setDate(java.lang.String) +io.reactivex.observers.DisposableObserver: void onStart() +androidx.constraintlayout.widget.R$attr: int windowFixedWidthMajor +com.bumptech.glide.R$id: int italic +androidx.preference.R$dimen: int abc_action_bar_overflow_padding_start_material +com.jaredrummler.android.colorpicker.R$attr: int isLightTheme +androidx.viewpager2.widget.ViewPager2: int getItemDecorationCount() +androidx.appcompat.R$styleable: int AppCompatTheme_viewInflaterClass +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +cyanogenmod.profiles.StreamSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +androidx.viewpager2.R$dimen: int notification_content_margin_start +com.xw.repo.bubbleseekbar.R$styleable: int ActionMenuItemView_android_minWidth +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object SYNC_DISPOSED +androidx.preference.R$id: int recycler_view +androidx.appcompat.widget.ActionBarContainer: void setStackedBackground(android.graphics.drawable.Drawable) +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveShape +wangdaye.com.geometricweather.R$drawable: int ic_github_light +androidx.viewpager2.widget.ViewPager2$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$id: int BOTTOM_END +androidx.appcompat.R$drawable: int abc_btn_radio_material_anim +com.autonavi.aps.amapapi.model.AMapLocationServer: long o +wangdaye.com.geometricweather.R$string: int material_clock_toggle_content_description +wangdaye.com.geometricweather.R$styleable: int Badge_horizontalOffset +com.google.android.material.R$dimen: int mtrl_min_touch_target_size +com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_android_background +com.turingtechnologies.materialscrollbar.R$attr: int msb_handleOffColor +androidx.hilt.work.R$drawable: int notification_bg_low_normal +androidx.loader.R$id: int chronometer +androidx.hilt.R$drawable +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_horizontal_padding +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_9 +com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean +com.google.android.material.R$styleable: int[] MenuView +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Inverse +wangdaye.com.geometricweather.R$animator: int weather_cloudy_1 +cyanogenmod.app.LiveLockScreenManager: void logServiceException(java.lang.Exception) +io.reactivex.exceptions.CompositeException: CompositeException(java.lang.Iterable) +androidx.fragment.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.Observer downstream +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter +io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer) +wangdaye.com.geometricweather.R$string: int nighttime +com.google.android.material.R$attr: int cornerSizeTopLeft +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String iconUrl +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryInnerObserver BOUNDARY_DISPOSED +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: CaiYunMainlyResult$AlertsBean$ImagesBean() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: CaiYunMainlyResult$AlertsBean$DefenseBean() +androidx.viewpager.widget.PagerTabStrip: void setBackgroundResource(int) +com.xw.repo.bubbleseekbar.R$attr: int actionModeSplitBackground +com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_tick_mark_material +wangdaye.com.geometricweather.R$id: int homeAsUp +cyanogenmod.app.CustomTile$1: CustomTile$1() +com.google.android.material.bottomnavigation.BottomNavigationMenuView: BottomNavigationMenuView(android.content.Context) +retrofit2.ServiceMethod: ServiceMethod() +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onNext(java.lang.Object) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Subhead +androidx.core.R$attr: R$attr() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX +androidx.appcompat.widget.SearchView$SearchAutoComplete: int getSearchViewTextMinWidthDp() +okhttp3.CacheControl: boolean isPublic +androidx.preference.R$id: int tag_screen_reader_focusable +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableItem_android_drawable +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 +wangdaye.com.geometricweather.R$styleable: int Preference_android_singleLineTitle +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TabLayout_Colored +wangdaye.com.geometricweather.R$attr: int shapeAppearanceOverlay +com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingLeft +io.reactivex.internal.disposables.EmptyDisposable: boolean isEmpty() +com.turingtechnologies.materialscrollbar.R$id: int search_edit_frame +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowColor +androidx.appcompat.R$id: int accessibility_custom_action_17 +com.google.android.material.R$attr: int hideMotionSpec +okhttp3.internal.http2.Http2Connection: int maxConcurrentStreams() +androidx.preference.R$attr: int titleMargins +wangdaye.com.geometricweather.R$string: int about_page_indicator +com.google.gson.stream.JsonReader: double nextDouble() +wangdaye.com.geometricweather.R$attr: int fontProviderFetchStrategy +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType TransactionCallable +androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeBottomLeft +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderQuery +com.google.android.material.R$id: int material_hour_tv +okhttp3.internal.http.RealResponseBody: java.lang.String contentTypeString +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getSnow() +androidx.lifecycle.extensions.R$style: int Widget_Compat_NotificationActionContainer +com.google.android.material.R$drawable: int ic_mtrl_chip_checked_black +androidx.appcompat.R$attr: int titleMargins +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setAdaptiveWidthEnabled(boolean) +androidx.constraintlayout.widget.R$interpolator: int fast_out_slow_in +com.google.android.material.R$attr: int layout_editor_absoluteY +androidx.appcompat.R$style: int Widget_Compat_NotificationActionText +com.google.android.material.R$styleable: int AppCompatImageView_srcCompat +wangdaye.com.geometricweather.db.entities.DailyEntityDao: DailyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +androidx.hilt.work.R$drawable: int notification_bg_normal_pressed +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_material +wangdaye.com.geometricweather.R$drawable: int weather_haze_1 +james.adaptiveicon.R$id: int contentPanel +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemBitmap(android.graphics.Bitmap) +com.jaredrummler.android.colorpicker.R$styleable: int[] StateListDrawable +okio.HashingSource: HashingSource(okio.Source,java.lang.String) +androidx.preference.R$attr: int buttonBarPositiveButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_tileMode +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean done +android.didikee.donate.R$style: int Widget_AppCompat_Spinner_DropDown +androidx.appcompat.R$styleable: int GradientColor_android_endX +com.google.android.material.R$attr: int tooltipFrameBackground +wangdaye.com.geometricweather.R$layout: int widget_clock_day_week +retrofit2.RequestFactory: boolean hasBody +okio.SegmentedByteString: int hashCode() +okhttp3.internal.ws.WebSocketReader: okio.Buffer$UnsafeCursor maskCursor +androidx.fragment.app.Fragment$InstantiationException: Fragment$InstantiationException(java.lang.String,java.lang.Exception) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean +androidx.recyclerview.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: javax.inject.Provider disposableProvider +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: android.os.IBinder mRemote +cyanogenmod.app.CustomTile: cyanogenmod.app.CustomTile clone() +androidx.viewpager2.adapter.FragmentStateAdapter$2 +androidx.lifecycle.LiveData: void observe(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Observer) +com.turingtechnologies.materialscrollbar.R$attr: int state_collapsible +cyanogenmod.app.ThemeVersion$ComponentVersion: java.lang.String name +com.turingtechnologies.materialscrollbar.R$color: int design_default_color_primary_dark +com.google.android.material.textfield.TextInputLayout +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedHeightMajor +wangdaye.com.geometricweather.R$styleable: int MockView_mock_labelColor +okio.Pipe: okio.Sink sink() +wangdaye.com.geometricweather.R$id: int activity_widget_config_top +wangdaye.com.geometricweather.R$dimen: int notification_main_column_padding_top +androidx.work.R$layout: int notification_action_tombstone +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_android_minWidth +androidx.preference.R$styleable: int AppCompatTextView_drawableStartCompat +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_toId +androidx.appcompat.R$id: int accessibility_custom_action_27 +com.bumptech.glide.load.engine.GlideException: void setOrigin(java.lang.Exception) +androidx.dynamicanimation.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.R$id: int item_about_header_appVersion +androidx.appcompat.R$drawable: int abc_spinner_textfield_background_material +wangdaye.com.geometricweather.R$drawable: int ic_weather +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton +okhttp3.Cookie: java.lang.String value +com.turingtechnologies.materialscrollbar.R$attr: int cardMaxElevation +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.bottomnavigation.BottomNavigationView: void setOnNavigationItemReselectedListener(com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemReselectedListener) +com.google.android.material.R$string: int mtrl_picker_announce_current_selection +com.google.android.gms.base.R$id: int wide +com.google.android.material.R$layout: int abc_action_mode_close_item_material +com.google.android.material.R$style: int Base_AlertDialog_AppCompat_Light +androidx.lifecycle.ViewModelProviders +wangdaye.com.geometricweather.common.ui.widgets.DonateImageView +com.google.android.material.R$styleable: int[] MaterialCalendar +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction Direction +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingRight() +androidx.core.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.MinutelyEntity) +wangdaye.com.geometricweather.R$string: int settings_title_trend_horizontal_line_switch +cyanogenmod.app.ICMTelephonyManager: void setDataConnectionSelectedOnSub(int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRealFeelTemperature +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_Alert +androidx.preference.R$attr: int fontProviderCerts +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getUrl() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableStart +com.xw.repo.bubbleseekbar.R$id: int end +androidx.appcompat.widget.ActivityChooserView: androidx.appcompat.widget.ActivityChooserModel getDataModel() +com.jaredrummler.android.colorpicker.R$attr: int colorControlNormal +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_creator +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter name(java.lang.String) +okio.BufferedSink: okio.BufferedSink writeLong(long) +io.reactivex.Observable: io.reactivex.Observable concatMapSingle(io.reactivex.functions.Function,int) +cyanogenmod.providers.CMSettings$Global: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) +wangdaye.com.geometricweather.R$attr: int checked_background_color +androidx.hilt.work.R$attr: int fontProviderQuery +com.bumptech.glide.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$drawable: int weather_wind_pixel +org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory,int) +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int TextAppearance_fontFamily +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_circularRadius +androidx.constraintlayout.widget.R$attr: int flow_verticalBias +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: int UnitType +com.google.android.material.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier +wangdaye.com.geometricweather.R$attr: int chipStrokeColor +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat +androidx.activity.R$id: int notification_main_column_container +retrofit2.OkHttpCall: retrofit2.Response parseResponse(okhttp3.Response) +androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context,android.util.AttributeSet,int) +okhttp3.internal.connection.StreamAllocation: boolean reportedAcquired +james.adaptiveicon.R$id: int progress_horizontal +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_CBC_SHA +io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function) +androidx.appcompat.R$attr: int spinBars +androidx.constraintlayout.widget.R$id: int easeIn +com.google.android.material.textfield.TextInputLayout: void setExpandedHintEnabled(boolean) +okhttp3.internal.http2.Http2Reader: void readPriority(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_editor_absoluteX +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabView +com.bumptech.glide.R$id: int line3 +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String MobileLink +cyanogenmod.providers.CMSettings$System: boolean putInt(android.content.ContentResolver,java.lang.String,int) +wangdaye.com.geometricweather.R$dimen: int design_snackbar_action_text_color_alpha +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver +androidx.preference.R$styleable: int SearchView_goIcon +androidx.hilt.R$layout: R$layout() +wangdaye.com.geometricweather.R$attr: int contentInsetStartWithNavigation +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void subscribe() +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getRealFeelTemperature() +com.google.android.material.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.R$style: int Base_V28_Theme_AppCompat +okhttp3.Cache$Entry: okhttp3.Headers responseHeaders +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setStatus(int) +com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorCornerRadius(int) +androidx.lifecycle.extensions.R$id: int action_image +wangdaye.com.geometricweather.R$attr: int materialAlertDialogTheme +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_statusBarBackground +android.didikee.donate.R$style: int Base_V22_Theme_AppCompat_Light +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable) +com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.R$attr: int bsb_progress +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Dialog +androidx.vectordrawable.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.R$drawable: int notify_panel_notification_icon_bg +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String value +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode FOG +androidx.fragment.R$styleable: int[] FragmentContainerView +androidx.preference.R$color: int abc_search_url_text +cyanogenmod.externalviews.KeyguardExternalView$7: void run() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: java.lang.String Unit +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter daytimeWindDegreeConverter +androidx.viewpager.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_CHACHA20_POLY1305_SHA256 +com.google.android.material.R$id: int tag_accessibility_heading +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedWidthMinor +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +com.google.android.material.R$color: int abc_tint_seek_thumb +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +wangdaye.com.geometricweather.R$attr: int textColorAlertDialogListItem +androidx.constraintlayout.widget.R$drawable: int abc_cab_background_top_mtrl_alpha +cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult() +com.google.android.material.R$attr: int motionDebug +com.google.android.material.slider.BaseSlider$SliderState: android.os.Parcelable$Creator CREATOR +okhttp3.internal.http2.Http2Writer: void flush() +com.xw.repo.bubbleseekbar.R$color: int dim_foreground_disabled_material_dark +wangdaye.com.geometricweather.db.entities.AlertEntity: java.util.Date getDate() +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver +com.google.android.material.R$styleable: int NavigationView_itemShapeAppearanceOverlay +androidx.constraintlayout.widget.R$anim +cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String mName +androidx.appcompat.R$style: int Theme_AppCompat_Light_DarkActionBar +com.jaredrummler.android.colorpicker.R$id: int time +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: int UnitType +com.google.android.material.R$layout: int test_reflow_chipgroup +james.adaptiveicon.R$drawable: int abc_ratingbar_small_material +okio.Segment +com.google.android.material.R$attr: int suffixText +com.amap.api.fence.DistrictItem: java.lang.String c +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeRealFeelTemperature +androidx.transition.R$id: int action_container +com.google.android.material.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_weight -okio.Buffer: okio.Buffer writeTo(java.io.OutputStream) -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean offer(java.lang.Object,java.lang.Object) -androidx.hilt.work.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction Direction -androidx.preference.R$styleable: int AppCompatTheme_windowFixedWidthMajor -com.google.android.material.R$attr: int errorIconDrawable -cyanogenmod.app.Profile$TriggerState: int ON_A2DP_CONNECT -com.xw.repo.bubbleseekbar.R$attr: int colorControlHighlight -androidx.constraintlayout.widget.R$styleable: int AlertDialog_listLayout -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textSize -androidx.appcompat.R$string: int abc_menu_ctrl_shortcut_label -io.reactivex.internal.subscriptions.DeferredScalarSubscription: org.reactivestreams.Subscriber downstream -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfiles -androidx.viewpager.widget.ViewPager: ViewPager(android.content.Context,android.util.AttributeSet) -androidx.recyclerview.R$style -okhttp3.internal.http1.Http1Codec$FixedLengthSource: okhttp3.internal.http1.Http1Codec this$0 -com.github.rahatarmanahmed.cpv.CircularProgressView: float getProgress() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: void setBrands(java.util.List) -wangdaye.com.geometricweather.R$style: int content_text -androidx.loader.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type BOTTOM -com.amap.api.location.AMapLocationClientOption: boolean h -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView -cyanogenmod.weather.WeatherInfo: java.util.List mForecastList -android.didikee.donate.R$attr: int showText -james.adaptiveicon.R$color: int background_floating_material_dark -androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchRegionId -androidx.constraintlayout.widget.R$attr: int lastBaselineToBottomHeight -androidx.lifecycle.FullLifecycleObserver: void onStop(androidx.lifecycle.LifecycleOwner) -com.google.android.gms.common.server.response.SafeParcelResponse: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$styleable: int Chip_rippleColor -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int iconResStart -wangdaye.com.geometricweather.R$id: int save_non_transition_alpha -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_subtitleTextStyle -androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context,android.util.AttributeSet,int) -android.didikee.donate.R$style: int Base_V22_Theme_AppCompat -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvLevel(java.lang.String) -com.xw.repo.bubbleseekbar.R$id: int icon -okhttp3.internal.connection.RealConnection: RealConnection(okhttp3.ConnectionPool,okhttp3.Route) -androidx.appcompat.R$styleable: int AppCompatTheme_checkedTextViewStyle -com.turingtechnologies.materialscrollbar.R$drawable: int abc_item_background_holo_dark -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_content_padding_fullscreen -androidx.lifecycle.LiveData: LiveData() -androidx.appcompat.widget.ViewStubCompat: int getLayoutResource() -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_icon_size -androidx.appcompat.R$styleable: int AppCompatTheme_colorControlActivated -com.turingtechnologies.materialscrollbar.R$styleable: int[] CardView -com.google.android.material.R$attr: int framePosition -com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrimResource(int) -retrofit2.HttpException: java.lang.String message() -android.didikee.donate.R$anim: int abc_fade_in -io.reactivex.Observable: io.reactivex.Observable concatArrayDelayError(io.reactivex.ObservableSource[]) -cyanogenmod.themes.ThemeChangeRequest$Builder: java.util.Map mPerAppOverlays -okhttp3.logging.LoggingEventListener: okhttp3.logging.HttpLoggingInterceptor$Logger logger -okhttp3.HttpUrl: java.util.List queryParameterValues(java.lang.String) -okhttp3.internal.tls.BasicTrustRootIndex: int hashCode() -com.google.android.material.R$color: int background_floating_material_dark -com.google.android.material.R$styleable: int Slider_labelBehavior -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.disposables.Disposable upstream -androidx.core.R$styleable: int FontFamilyFont_android_font -com.google.android.material.R$styleable: int KeyPosition_keyPositionType -com.jaredrummler.android.colorpicker.R$attr: int tooltipText -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark_focused -io.reactivex.internal.subscribers.DeferredScalarSubscriber: DeferredScalarSubscriber(org.reactivestreams.Subscriber) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_chainUseRtl -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.WeatherEntity) -androidx.appcompat.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_btn_ripple_color -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_enabled -james.adaptiveicon.R$styleable: int ActionBar_icon -androidx.preference.R$attr: int summaryOff -wangdaye.com.geometricweather.R$styleable: int[] Slider -com.google.android.material.R$attr: int expandedTitleGravity -org.greenrobot.greendao.AbstractDaoSession: java.lang.Object callInTxNoException(java.util.concurrent.Callable) -wangdaye.com.geometricweather.R$animator: int mtrl_btn_state_list_anim -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_progress_in_float -com.google.android.material.R$color: int androidx_core_secondary_text_default_material_light -com.xw.repo.bubbleseekbar.R$attr: int state_above_anchor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: AccuCurrentResult$WetBulbTemperature$Metric() -retrofit2.Retrofit: java.util.List converterFactories -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver -retrofit2.Retrofit -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light_NoActionBar -cyanogenmod.weather.WeatherInfo: double mTodaysLowTemp -com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_max -com.google.android.material.tabs.TabLayout$TabView -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontVariationSettings -com.google.android.material.R$drawable: int abc_popup_background_mtrl_mult -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfile -com.xw.repo.BubbleSeekBar -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getLiveLockScreenEnabled -okhttp3.Headers: boolean equals(java.lang.Object) -okhttp3.internal.http2.Http2Connection$6: okio.Buffer val$buffer -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason valueOf(java.lang.String) -com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_Surface -wangdaye.com.geometricweather.weather.apis.AccuWeatherApi -wangdaye.com.geometricweather.R$id: int item -androidx.appcompat.R$id: int action_container -com.google.android.material.R$attr: int titleMarginStart -com.google.android.material.R$attr: int dropdownListPreferredItemHeight -io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) -com.google.android.material.R$attr: int crossfade -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DegreeDayTemperature -cyanogenmod.externalviews.KeyguardExternalView: void registerOnWindowAttachmentChangedListener(cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener) -androidx.appcompat.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_Alert -com.amap.api.location.AMapLocation: java.lang.String m(com.amap.api.location.AMapLocation,java.lang.String) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -androidx.lifecycle.LiveData: java.lang.Object mDataLock -cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(cyanogenmod.weatherservice.ServiceRequestResult$1) -androidx.appcompat.R$attr: int alertDialogButtonGroupStyle -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Caption -retrofit2.adapter.rxjava2.BodyObservable -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -wangdaye.com.geometricweather.R$id: int item_trend_hourly -wangdaye.com.geometricweather.R$string: int feedback_updated_in_background -cyanogenmod.providers.CMSettings$System: java.lang.String RECENTS_SHOW_SEARCH_BAR -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -com.google.android.material.R$styleable: int TextAppearance_android_fontFamily -okhttp3.HttpUrl$Builder: void push(java.lang.String,int,int,boolean,boolean) -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: double Value -com.google.android.material.R$attr: int endIconTint -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX() -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: boolean equals(java.lang.Object) -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_swoop_duration -androidx.appcompat.resources.R$integer: int status_bar_notification_info_maxnum -retrofit2.http.Field -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean delayErrors -io.reactivex.Observable: java.lang.Object blockingFirst() -wangdaye.com.geometricweather.R$integer: int status_bar_notification_info_maxnum -androidx.constraintlayout.helper.widget.Flow: void setVerticalAlign(int) -io.reactivex.internal.observers.InnerQueuedObserver -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getDirection() -androidx.preference.R$attr: int listPreferredItemHeight -androidx.lifecycle.ViewModelStore: ViewModelStore() -okhttp3.Cache: int hitCount -com.google.android.material.chip.Chip: void setBackgroundResource(int) -com.google.android.material.R$attr: int chipMinTouchTargetSize -com.jaredrummler.android.colorpicker.R$attr: int colorBackgroundFloating -androidx.preference.R$styleable: int TextAppearance_android_textSize -com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_android_alpha -io.reactivex.internal.util.VolatileSizeArrayList: void add(int,java.lang.Object) -androidx.appcompat.app.AlertController$RecycleListView -wangdaye.com.geometricweather.R$styleable: int Slider_android_valueTo -okhttp3.internal.ws.RealWebSocket$CancelRunnable -wangdaye.com.geometricweather.common.basic.models.weather.Wind: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getDegree() -androidx.appcompat.R$attr: int listMenuViewStyle -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_weightSum -androidx.preference.R$styleable: int LinearLayoutCompat_showDividers -com.google.android.material.R$attr: int buttonTint -androidx.appcompat.R$attr -androidx.customview.R$color: int ripple_material_light -androidx.coordinatorlayout.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.R$layout: int abc_popup_menu_item_layout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setUrl(java.lang.String) -io.reactivex.Observable: io.reactivex.Observable switchMap(io.reactivex.functions.Function) -cyanogenmod.externalviews.ExternalViewProviderService$1: cyanogenmod.externalviews.ExternalViewProviderService this$0 -cyanogenmod.profiles.BrightnessSettings: BrightnessSettings(android.os.Parcel) -com.turingtechnologies.materialscrollbar.R$id: int search_edit_frame -io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean checkTerminated(boolean,boolean,io.reactivex.Observer,boolean) -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabView -okio.Buffer: okio.Buffer writeIntLe(int) -android.didikee.donate.R$attr: int spinBars -com.google.android.material.R$dimen: int mtrl_slider_label_padding -androidx.constraintlayout.widget.R$layout: int abc_action_mode_bar -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$id: int item_weather_daily_air_content -james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlHighlight -wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_android_maxHeight -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderFetchTimeout -org.greenrobot.greendao.AbstractDao: void updateInsideSynchronized(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement,boolean) -com.google.android.material.R$attr: int buttonCompat -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification -androidx.constraintlayout.widget.R$id: int search_bar -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton -okhttp3.internal.http2.Http2Reader: void close() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setSunSet(java.lang.String) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerError(java.lang.Throwable) -androidx.recyclerview.R$styleable: int[] GradientColor -com.google.android.material.R$color: int highlighted_text_material_dark -androidx.hilt.R$attr: int fontWeight -com.jaredrummler.android.colorpicker.R$color: int abc_btn_colored_text_material -com.google.android.material.R$string: int material_hour_suffix -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -james.adaptiveicon.R$styleable: int MenuGroup_android_visible -androidx.constraintlayout.widget.R$styleable: int KeyCycle_transitionPathRotate -com.google.android.material.R$styleable: int AppCompatTextView_android_textAppearance -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onNext(java.lang.Object) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -com.xw.repo.bubbleseekbar.R$attr: int actionLayout -com.google.android.material.button.MaterialButton$SavedState -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: int nameId -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: AccuCurrentResult$ApparentTemperature$Metric() -com.google.android.material.R$styleable: int AppCompatSeekBar_tickMarkTint -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_pixel -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dialog -james.adaptiveicon.R$drawable: int abc_text_select_handle_left_mtrl_light -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SeekBar -androidx.lifecycle.extensions.R$styleable: int Fragment_android_name -androidx.lifecycle.extensions.R$id: int actions -com.turingtechnologies.materialscrollbar.R$styleable: int[] ScrollingViewBehavior_Layout -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderPackage -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_28 -okhttp3.internal.connection.RouteSelector: java.util.List proxies -com.google.android.material.R$styleable: int CustomAttribute_attributeName -io.reactivex.internal.subscriptions.SubscriptionHelper: void reportSubscriptionSet() -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIconTint -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionBar -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Time -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeSplitBackground -james.adaptiveicon.R$styleable: int TextAppearance_android_textFontWeight -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$KeySet keySet -org.greenrobot.greendao.AbstractDao: void deleteByKeyInTx(java.lang.Object[]) -androidx.constraintlayout.widget.R$attr: int layout_constraintRight_toRightOf -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconTint -retrofit2.Utils$WildcardTypeImpl: Utils$WildcardTypeImpl(java.lang.reflect.Type[],java.lang.reflect.Type[]) -com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getRippleColorStateList() -androidx.activity.R$styleable: int FontFamily_fontProviderAuthority -com.turingtechnologies.materialscrollbar.R$id: int image -androidx.preference.R$dimen: int abc_dropdownitem_text_padding_right -wangdaye.com.geometricweather.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -androidx.appcompat.widget.ViewStubCompat: void setVisibility(int) -okhttp3.RequestBody: void writeTo(okio.BufferedSink) -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_registerChangeListener -io.reactivex.internal.observers.BlockingObserver: void dispose() -wangdaye.com.geometricweather.R$id: int dragRight -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: int count -com.google.android.material.R$color: int mtrl_btn_transparent_bg_color -cyanogenmod.power.PerformanceManager: cyanogenmod.power.PerformanceManager sInstance -cyanogenmod.weatherservice.WeatherProviderService: WeatherProviderService() -android.didikee.donate.R$id: int select_dialog_listview -com.google.android.material.R$id: int SHOW_ALL -com.google.android.material.R$attr: int themeLineHeight -com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String,java.util.List) -com.jaredrummler.android.colorpicker.R$attr: int layout_keyline -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String f -androidx.appcompat.R$styleable: int ActionMenuItemView_android_minWidth -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onError(java.lang.Throwable) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: void run() -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality() -com.amap.api.fence.GeoFence: int e -okhttp3.internal.http2.Http2Connection$Builder -androidx.loader.R$styleable -okhttp3.OkHttpClient: boolean followRedirects() -okhttp3.internal.http2.Http2Connection: long unacknowledgedBytesRead -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListMenuView -com.bumptech.glide.integration.okhttp.R$id: int blocking -android.didikee.donate.R$styleable: int AppCompatTheme_actionDropDownStyle -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String EXTRA_ALARM_ID -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: double lat -com.google.android.material.R$style: int TextAppearance_Compat_Notification_Title -cyanogenmod.weather.CMWeatherManager: android.os.Handler mHandler -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: AccuDailyResult$DailyForecasts$Night$TotalLiquid() -com.google.android.material.R$styleable: int KeyCycle_framePosition -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_backgroundTint -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun Sun -cyanogenmod.hardware.CMHardwareManager: int getVibratorIntensity() -wangdaye.com.geometricweather.R$color: int colorRootDark_dark -wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_percent -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyStartText -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.lang.String getUnit() -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetEnd -okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: Http2Connection$ReaderRunnable$3(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[]) -com.bumptech.glide.integration.okhttp.R$color: R$color() -wangdaye.com.geometricweather.R$styleable: int RecyclerView_spanCount -wangdaye.com.geometricweather.R$id: int mtrl_child_content_container -com.google.android.material.R$attr: int editTextColor -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String insee -com.xw.repo.bubbleseekbar.R$attr: int checkboxStyle -cyanogenmod.app.ICMTelephonyManager$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.util.Date date -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_checkableBehavior -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: void invoke(java.lang.Throwable) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SearchView -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActivityChooserView -retrofit2.adapter.rxjava2.BodyObservable: BodyObservable(io.reactivex.Observable) -com.google.android.material.chip.Chip: void setCloseIconVisible(int) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -androidx.constraintlayout.widget.R$attr: int layoutDuringTransition -okhttp3.internal.cache.DiskLruCache: void setMaxSize(long) -io.reactivex.internal.observers.DeferredScalarDisposable -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Snackbar_FullWidth -com.google.android.material.R$anim: int design_bottom_sheet_slide_in -com.amap.api.location.AMapLocation: java.lang.String n -retrofit2.Retrofit$1 -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline4 -android.didikee.donate.R$drawable: int abc_textfield_activated_mtrl_alpha -com.google.android.material.slider.RangeSlider: void setThumbRadiusResource(int) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -com.google.android.material.R$styleable: int ProgressIndicator_minHideDelay -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_toBottomOf -androidx.hilt.R$drawable: int notification_icon_background -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean requestIsUnrepeatable(java.io.IOException,okhttp3.Request) -wangdaye.com.geometricweather.R$drawable: int ic_about -com.turingtechnologies.materialscrollbar.R$id: int parallax -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: int UnitType +james.adaptiveicon.R$style: int Animation_AppCompat_Dialog +james.adaptiveicon.R$styleable: int AppCompatTheme_controlBackground +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_FixedSize_Bridge +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_tooltipForegroundColor +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String TARGET_API +androidx.preference.R$styleable: int AppCompatTheme_buttonStyleSmall +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: long count +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_LEGACY_ICONPACK +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showDialog +androidx.lifecycle.SavedStateHandle: androidx.savedstate.SavedStateRegistry$SavedStateProvider mSavedStateProvider +wangdaye.com.geometricweather.R$layout: int widget_day_pixel +androidx.constraintlayout.widget.R$drawable: int tooltip_frame_dark +okhttp3.internal.http2.Http2Connection: int OKHTTP_CLIENT_WINDOW_SIZE +okhttp3.EventListener$1 +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable,int) +com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context,android.util.AttributeSet) +cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_INTERNALLY_ENABLED +org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType valueOf(java.lang.String) +androidx.lifecycle.ProcessLifecycleOwner$1: androidx.lifecycle.ProcessLifecycleOwner this$0 +androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_default +android.didikee.donate.R$styleable: int Toolbar_titleMargins +cyanogenmod.externalviews.ExternalView$2: cyanogenmod.externalviews.ExternalView this$0 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ASSIST_WAKE_SCREEN_VALIDATOR +okhttp3.Dispatcher: java.lang.Runnable idleCallback +okhttp3.internal.NamedRunnable +androidx.constraintlayout.widget.R$color: int ripple_material_light +androidx.work.impl.WorkDatabase_Impl +com.jaredrummler.android.colorpicker.R$dimen: int disabled_alpha_material_light +wangdaye.com.geometricweather.db.entities.AlertEntity: AlertEntity() +androidx.preference.R$string: int abc_searchview_description_submit +com.turingtechnologies.materialscrollbar.R$dimen: int notification_media_narrow_margin +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void updateVisibility() +com.google.android.material.R$id: int accessibility_custom_action_27 +wangdaye.com.geometricweather.R$dimen: int design_navigation_max_width +com.google.android.material.R$color: int radiobutton_themeable_attribute_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: java.lang.String desc +wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean hasKey(java.lang.Object) +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context,android.util.AttributeSet,int) +okhttp3.Response$Builder: okhttp3.Response$Builder networkResponse(okhttp3.Response) +okhttp3.internal.http2.Huffman$Node: int terminalBits +com.google.android.material.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$id: int activity_allergen_toolbar +com.turingtechnologies.materialscrollbar.R$drawable: int abc_action_bar_item_background_material +cyanogenmod.weather.RequestInfo: int access$202(cyanogenmod.weather.RequestInfo,int) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2 +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_CLOSE +androidx.transition.R$dimen: int notification_large_icon_width +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_activated_mtrl_alpha +com.google.android.material.R$styleable: int TextInputLayout_errorIconDrawable +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_black +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Button +androidx.constraintlayout.widget.Barrier: void setMargin(int) +wangdaye.com.geometricweather.R$layout: int widget_trend_daily +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setZenMode +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_Icon +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Dialog +androidx.appcompat.widget.SearchView$SavedState +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabTextStyle +retrofit2.ServiceMethod +com.jaredrummler.android.colorpicker.R$attr: int textAppearancePopupMenuHeader +com.amap.api.location.AMapLocation: void setAdCode(java.lang.String) +com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_chainStyle +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition ABOVE_LINE +wangdaye.com.geometricweather.R$styleable: int Preference_android_summary +androidx.preference.R$attr: int imageButtonStyle +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_divider +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getPm10Color(android.content.Context) +androidx.appcompat.widget.AppCompatButton: android.content.res.ColorStateList getSupportCompoundDrawablesTintList() +androidx.preference.R$color: int error_color_material_light +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button +com.jaredrummler.android.colorpicker.R$attr: int contentInsetLeft +okio.BufferedSource: int read(byte[],int,int) +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: ICMWeatherManager$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$styleable: int OnSwipe_moveWhenScrollAtTop +wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper +io.reactivex.Observable: java.util.concurrent.Future toFuture() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY_NIGHT +androidx.constraintlayout.widget.R$styleable: int MenuView_android_headerBackground +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setDayIconDrawable(android.graphics.drawable.Drawable) +cyanogenmod.externalviews.KeyguardExternalView$3: int val$x +com.jaredrummler.android.colorpicker.R$string: int abc_menu_enter_shortcut_label +androidx.hilt.work.R$id: int accessibility_custom_action_9 +androidx.vectordrawable.R$dimen: int notification_right_icon_size +com.jaredrummler.android.colorpicker.R$attr: int panelBackground +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_longpressed_holo +androidx.loader.R$drawable: R$drawable() +cyanogenmod.app.PartnerInterface: boolean setZenMode(int) +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeStepGranularity +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +wangdaye.com.geometricweather.db.entities.HistoryEntity: HistoryEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,int,int) +androidx.hilt.work.R$id: int icon_group +james.adaptiveicon.R$attr: int ratingBarStyle +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void errorAll(io.reactivex.Observer) +okhttp3.internal.http2.Http2Stream: int getId() +com.google.android.gms.common.data.BitmapTeleporter: android.os.Parcelable$Creator CREATOR +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_ALARM +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: java.lang.String Unit +androidx.appcompat.R$style: int TextAppearance_AppCompat_Large +com.google.android.material.R$styleable: int KeyAttribute_android_translationZ +io.reactivex.internal.util.VolatileSizeArrayList: int indexOf(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveVariesBy +cyanogenmod.app.BaseLiveLockManagerService: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +com.google.android.material.R$attr: int layout_constraintRight_toRightOf +androidx.preference.R$attr: int preferenceTheme +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_text_horizontal_edge_offset +androidx.preference.R$attr: int fastScrollVerticalTrackDrawable +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2 +wangdaye.com.geometricweather.R$color: int material_on_primary_emphasis_medium +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Toolbar +androidx.activity.R$id: int dialog_button +com.turingtechnologies.materialscrollbar.R$id: int navigation_header_container +wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetMinutelyEntityList() +androidx.constraintlayout.utils.widget.ImageFilterButton +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_textEndPadding +wangdaye.com.geometricweather.R$drawable: int notif_temp_129 +james.adaptiveicon.R$dimen: int abc_text_size_small_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: int getStatus() +com.google.android.material.R$styleable: int AppCompatTheme_actionButtonStyle +androidx.swiperefreshlayout.R$id: int notification_background +james.adaptiveicon.R$styleable: int[] LinearLayoutCompat_Layout +androidx.appcompat.widget.AbsActionBarView: AbsActionBarView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_start_color +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity humidity +com.google.android.gms.common.internal.BinderWrapper: android.os.Parcelable$Creator CREATOR +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.functions.Function combiner +com.google.android.material.R$attr: int errorContentDescription +androidx.hilt.lifecycle.R$attr: int fontProviderCerts +androidx.constraintlayout.widget.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemHorizontalPadding +androidx.preference.R$styleable: int Toolbar_titleMarginEnd +androidx.appcompat.widget.AppCompatSpinner: void setSupportBackgroundTintList(android.content.res.ColorStateList) +okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithoutIndexingIndexedName(int) +io.reactivex.internal.subscriptions.SubscriptionHelper: void reportMoreProduced(long) +androidx.transition.R$styleable: int FontFamily_fontProviderQuery +androidx.fragment.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.lifecycle.OnLifecycleEvent: androidx.lifecycle.Lifecycle$Event value() +james.adaptiveicon.R$id: int alertTitle +retrofit2.HttpServiceMethod$CallAdapted: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String weatherPhase +wangdaye.com.geometricweather.R$attr: int percentX +cyanogenmod.hardware.CMHardwareManager: java.lang.String getUniqueDeviceId() +androidx.viewpager2.R$attr: int fontStyle +com.google.android.material.R$styleable: int[] AnimatedStateListDrawableCompat +androidx.lifecycle.extensions.R$layout: int notification_action_tombstone +okio.Buffer: int REPLACEMENT_CHARACTER +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_creator +com.google.android.material.R$styleable: int[] RecyclerView +com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_fast_out_linear_in +androidx.viewpager2.R$string: R$string() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeDegreeDayTemperature() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.Window access$200(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Menu +com.google.android.material.R$attr: int listPreferredItemHeight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: int UnitType +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData this$0 +androidx.viewpager2.R$styleable: int GradientColor_android_centerY +com.google.android.material.R$layout: int design_navigation_item +androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context) +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String district +androidx.lifecycle.LiveData: void onInactive() +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchMinWidth +androidx.constraintlayout.widget.R$styleable: int SearchView_defaultQueryHint +androidx.appcompat.widget.AppCompatEditText: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_3DES_EDE_CBC_SHA +james.adaptiveicon.R$dimen: int abc_edit_text_inset_bottom_material +cyanogenmod.alarmclock.ClockContract: java.lang.String AUTHORITY +androidx.appcompat.R$styleable: int[] ActionBar +com.amap.api.location.AMapLocationClientOption: java.lang.String a +cyanogenmod.app.Profile$ProfileTrigger: int describeContents() +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_orientation +wangdaye.com.geometricweather.R$id: int textSpacerNoTitle +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: boolean validate(java.lang.String) +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_small_material +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String PROFILE +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_dark +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String weatherText +wangdaye.com.geometricweather.R$layout: int design_layout_snackbar +android.didikee.donate.R$id: int action_container +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: float getPressure(float) +james.adaptiveicon.R$styleable: int AppCompatTextView_android_textAppearance +wangdaye.com.geometricweather.R$attr: int thumbStrokeColor +androidx.preference.R$color: int abc_color_highlight_material +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,io.reactivex.Scheduler) +retrofit2.DefaultCallAdapterFactory$1: java.util.concurrent.Executor val$executor +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +james.adaptiveicon.R$id: int time +com.jaredrummler.android.colorpicker.R$id: int recycler_view +android.didikee.donate.R$styleable: int[] ActionMode +okhttp3.EventListener: void connectionReleased(okhttp3.Call,okhttp3.Connection) +android.didikee.donate.R$drawable: int abc_btn_radio_material +android.didikee.donate.R$styleable: int Toolbar_contentInsetRight +androidx.constraintlayout.utils.widget.ImageFilterButton: float getContrast() +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_textLocale +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX) +com.jaredrummler.android.colorpicker.R$attr: int backgroundStacked +androidx.hilt.work.R$anim +com.xw.repo.bubbleseekbar.R$style +com.google.android.material.R$styleable: int DrawerArrowToggle_thickness +androidx.preference.R$styleable: int Toolbar_titleTextColor +com.google.android.material.appbar.AppBarLayout: void setVisibility(int) +android.didikee.donate.R$attr: int titleMargin +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd +wangdaye.com.geometricweather.R$color: int material_deep_teal_500 +androidx.vectordrawable.R$id: int accessibility_custom_action_4 +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_ICONS +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Title +retrofit2.ParameterHandler$QueryMap: void apply(retrofit2.RequestBuilder,java.util.Map) +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void subscribe(io.reactivex.ObservableSource[],int) +james.adaptiveicon.R$id: int action_container +okhttp3.internal.tls.BasicCertificateChainCleaner: boolean verifySignature(java.security.cert.X509Certificate,java.security.cert.X509Certificate) +okio.Buffer: java.util.List segmentSizes() +androidx.appcompat.widget.AppCompatButton: android.graphics.PorterDuff$Mode getSupportCompoundDrawablesTintMode() +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_maxActionInlineWidth +androidx.recyclerview.widget.RecyclerView: int getBaseline() +com.google.android.material.R$styleable: int KeyPosition_percentX +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_69 +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getVibratorIntensity() +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setLegacyRequestDisallowInterceptTouchEventEnabled(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Text +com.google.android.material.R$dimen: int highlight_alpha_material_colored +com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Headline6 +com.google.android.material.R$styleable: int Slider_tickColorInactive +android.didikee.donate.R$style: int TextAppearance_AppCompat_Display3 +androidx.drawerlayout.R$styleable: int GradientColor_android_endY +cyanogenmod.weather.RequestInfo: int mTempUnit +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontStyle +cyanogenmod.app.CustomTileListenerService: boolean isBound() +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver parent +androidx.preference.R$styleable: int AppCompatTextView_autoSizeMinTextSize +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: void subscribe(org.reactivestreams.Subscriber) +cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileGroup getActiveProfileGroup(java.lang.String) +com.google.android.material.R$id: int selected +androidx.hilt.R$styleable: int FontFamily_fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_tooltipFrameBackground +androidx.preference.R$styleable: int MenuItem_android_numericShortcut +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Date +com.amap.api.location.AMapLocation$1: java.lang.Object[] newArray(int) +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_cut_mtrl_alpha +androidx.recyclerview.R$id: int accessibility_custom_action_1 +okhttp3.internal.http.BridgeInterceptor: BridgeInterceptor(okhttp3.CookieJar) +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Wind getWind() +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +com.google.android.material.R$attr: int transitionShapeAppearance +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconVisible +com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchCompat +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTemperature +com.xw.repo.bubbleseekbar.R$attr: int submitBackground +com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context) +androidx.appcompat.R$dimen: int abc_text_size_body_1_material okhttp3.logging.HttpLoggingInterceptor: void logHeader(okhttp3.Headers,int) -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_overflow_padding_end_material -androidx.cardview.R$attr: int cardCornerRadius -wangdaye.com.geometricweather.R$attr: int panelMenuListTheme -retrofit2.http.HTTP -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconEnabled -android.didikee.donate.R$id: int scrollView -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String THEME_ID -io.reactivex.internal.schedulers.AbstractDirectTask: java.util.concurrent.FutureTask FINISHED -com.google.android.material.R$styleable: int[] StateSet -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_PopupMenu -android.didikee.donate.R$drawable: int abc_list_longpressed_holo -androidx.appcompat.widget.AppCompatRadioButton: void setBackgroundResource(int) -com.google.android.material.R$integer: int mtrl_calendar_selection_text_lines -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginBottom -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Headline -androidx.constraintlayout.widget.R$string: int abc_toolbar_collapse_description -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void setInteractivity(boolean) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveData(java.lang.String,java.lang.Object) -androidx.drawerlayout.R$id: int async -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_MinWidth -com.xw.repo.bubbleseekbar.R$color: int notification_icon_bg_color -androidx.work.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility -androidx.appcompat.R$id: int icon_group -james.adaptiveicon.R$drawable: int abc_ic_star_half_black_36dp -androidx.vectordrawable.R$id: int right_icon -com.google.android.material.R$layout: int mtrl_layout_snackbar_include -androidx.preference.MultiSelectListPreference$SavedState -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder(cyanogenmod.weather.WeatherInfo) -io.reactivex.internal.schedulers.AbstractDirectTask: boolean isDisposed() -com.google.android.material.bottomnavigation.BottomNavigationView$SavedState: android.os.Parcelable$Creator CREATOR -androidx.viewpager.R$dimen: int notification_main_column_padding_top -androidx.appcompat.R$styleable: int[] StateListDrawable -com.turingtechnologies.materialscrollbar.R$styleable: int[] ViewBackgroundHelper -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextBackground -com.google.android.material.R$dimen: int abc_button_inset_horizontal_material -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: java.util.List getDeviceComponentVersions() -androidx.preference.R$attr: int defaultQueryHint -wangdaye.com.geometricweather.R$layout: int item_weather_daily_margin -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_NAVIGATION_BAR -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean done -james.adaptiveicon.R$string: int abc_searchview_description_submit -wangdaye.com.geometricweather.R$attr: int chipEndPadding -okhttp3.internal.tls.CertificateChainCleaner: okhttp3.internal.tls.CertificateChainCleaner get(javax.net.ssl.X509TrustManager) -com.google.android.material.R$attr: int minHideDelay -okhttp3.internal.cache.DiskLruCache$Snapshot: long[] lengths -com.google.android.material.R$styleable: int Constraint_layout_goneMarginTop -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_Alert -androidx.preference.R$styleable: int TextAppearance_android_fontFamily -android.didikee.donate.R$attr: int textAppearanceSearchResultTitle -androidx.hilt.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_DropDownUp -cyanogenmod.app.Profile$ProfileTrigger: int access$202(cyanogenmod.app.Profile$ProfileTrigger,int) -android.didikee.donate.R$id: int action_bar_title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX wind -wangdaye.com.geometricweather.R$styleable: int ActionBar_title -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_Switch -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean cancelled -com.google.android.material.bottomnavigation.BottomNavigationMenuView: com.google.android.material.bottomnavigation.BottomNavigationItemView getNewItem() -wangdaye.com.geometricweather.R$styleable: int[] View -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Tooltip -androidx.transition.R$id: int save_non_transition_alpha -wangdaye.com.geometricweather.R$id: int dialog_location_help_locationTitle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: double Value -wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_material_anim -okhttp3.internal.ws.WebSocketReader -cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.IAppSuggestManager getService() -com.turingtechnologies.materialscrollbar.R$attr: int dividerHorizontal -com.google.gson.internal.LinkedTreeMap: void removeInternal(com.google.gson.internal.LinkedTreeMap$Node,boolean) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_id -androidx.preference.R$integer -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat -androidx.appcompat.R$dimen: int abc_text_size_medium_material -com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context) -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: IWeatherProviderServiceClient$Stub() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -cyanogenmod.weather.WeatherLocation: int describeContents() -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_DarkActionBar -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontStyle -com.google.android.material.R$attr: int colorBackgroundFloating -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getPM25() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -wangdaye.com.geometricweather.R$id: int dialog_background_location_container -io.reactivex.internal.util.AtomicThrowable: boolean isTerminated() -androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$styleable: int AppCompatTheme_android_windowIsFloating -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: android.os.Bundle val$options -android.support.v4.os.IResultReceiver$Stub$Proxy: void send(int,android.os.Bundle) -com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_ContextMenu -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() -okhttp3.Handshake: java.util.List localCertificates -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onSubscribe(org.reactivestreams.Subscription) -cyanogenmod.weather.IWeatherServiceProviderChangeListener: void onWeatherServiceProviderChanged(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int[] SearchView -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWindDirection() -com.turingtechnologies.materialscrollbar.R$attr: int buttonGravity -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Headline -wangdaye.com.geometricweather.R$attr: int autoTransition -io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer) -androidx.customview.R$drawable: int notification_bg_normal -okhttp3.OkHttpClient: okhttp3.Authenticator authenticator() -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_GREEN_INDEX -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: long serialVersionUID -com.google.android.material.R$layout: int mtrl_calendar_days_of_week -wangdaye.com.geometricweather.R$id: int topPanel -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_ttcIndex -android.didikee.donate.R$attr: int backgroundTintMode -com.google.android.material.R$id: int ignore -okhttp3.internal.http1.Http1Codec$ChunkedSource -com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_checkbox -androidx.preference.R$id: int action_context_bar -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeight -com.google.android.material.R$id: int customPanel -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.UV uv -androidx.constraintlayout.widget.R$id: int customPanel -retrofit2.Utils$GenericArrayTypeImpl: boolean equals(java.lang.Object) -androidx.viewpager2.R$id: int line3 -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -androidx.legacy.coreutils.R$color: int notification_action_color_filter -james.adaptiveicon.R$dimen: int abc_action_bar_subtitle_top_margin_material -androidx.preference.R$styleable: int SearchView_queryHint -androidx.fragment.R$drawable: int notification_bg_low_pressed -androidx.recyclerview.R$id: int accessibility_custom_action_12 -androidx.appcompat.R$styleable: int ViewStubCompat_android_inflatedId -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String ShortPhrase -androidx.constraintlayout.widget.R$color: int bright_foreground_disabled_material_light -com.google.android.material.textfield.TextInputLayout: int getHintCurrentCollapsedTextColor() -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_colorShape -io.reactivex.exceptions.OnErrorNotImplementedException: OnErrorNotImplementedException(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_medium_material -com.google.android.material.R$attr: int layout_constrainedWidth -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int IceProbability -com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_horizontal_material -com.google.android.gms.common.api.internal.LifecycleCallback -wangdaye.com.geometricweather.R$string: int key_forecast_tomorrow -cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo$Builder setComponent(android.content.ComponentName) -androidx.preference.R$attr: int enableCopying -androidx.constraintlayout.widget.R$styleable: int KeyPosition_drawPath -com.google.gson.LongSerializationPolicy$1: com.google.gson.JsonElement serialize(java.lang.Long) -android.didikee.donate.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -wangdaye.com.geometricweather.R$id: int item_aqi_title -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarSize -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_queryBackground -androidx.vectordrawable.R$string: R$string() -androidx.appcompat.R$anim: int abc_slide_in_top -wangdaye.com.geometricweather.R$id: int clear_text -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconTint -androidx.preference.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_LIGHT -wangdaye.com.geometricweather.R$style: int week_weather_week_info -com.jaredrummler.android.colorpicker.R$attr: int initialExpandedChildrenCount -wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassLevel(java.lang.Integer) -com.google.android.material.R$anim: int abc_fade_in -androidx.fragment.R$anim: int fragment_fade_exit -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: boolean val$showing -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_popupBackground -androidx.lifecycle.extensions.R$id: int tag_accessibility_actions -android.didikee.donate.R$styleable: int ActionBar_contentInsetEnd -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Medium -androidx.preference.R$styleable: int Toolbar_titleTextAppearance -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: void setGravitySensorEnabled(boolean) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationX -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorAnimationDuration -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void drainLoop() -androidx.constraintlayout.widget.R$attr: int tintMode -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_negativeButtonText -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_disabled_holo_light -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider access$000(cyanogenmod.externalviews.KeyguardExternalView) -wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_layout -cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient mClient -okhttp3.Connection: okhttp3.Protocol protocol() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$integer: int mtrl_card_anim_duration_ms -com.google.android.material.R$drawable: int abc_cab_background_top_mtrl_alpha -androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context) -io.reactivex.internal.observers.InnerQueuedObserver: boolean done -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: float getProgress() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric Metric -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: AccuCurrentResult$PrecipitationSummary$Past24Hours() -com.bumptech.glide.integration.okhttp.R$id: int line1 -okio.ByteString: void readObject(java.io.ObjectInputStream) -com.google.android.material.R$id: int transition_position -com.xw.repo.bubbleseekbar.R$attr: int showAsAction -com.google.android.material.R$styleable: int LinearLayoutCompat_android_weightSum -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Medium -cyanogenmod.providers.CMSettings$Secure: java.lang.String ADB_NOTIFY -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit[] values() -wangdaye.com.geometricweather.R$attr: int actionModeCloseButtonStyle -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: int getStatus() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_button_material -androidx.constraintlayout.widget.R$attr: int flow_verticalAlign -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$StreamTimeout readTimeout -androidx.constraintlayout.widget.R$styleable: int View_paddingEnd -androidx.appcompat.R$layout: int abc_popup_menu_header_item_layout -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String insee -androidx.core.R$id: int accessibility_custom_action_23 -android.didikee.donate.R$id: int tabMode -androidx.constraintlayout.widget.R$attr: int region_widthLessThan -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_5 -androidx.viewpager2.R$drawable: int notification_template_icon_bg -androidx.appcompat.R$id: int activity_chooser_view_content -cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String TIMEZONE_OFFSET -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: double Value -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long end -androidx.preference.R$string: int abc_searchview_description_query -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Light -com.jaredrummler.android.colorpicker.R$attr: int negativeButtonText -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerX -androidx.appcompat.R$attr: int splitTrack -androidx.preference.R$styleable: int CoordinatorLayout_statusBarBackground -com.turingtechnologies.materialscrollbar.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.R$dimen: int widget_aa_text_size -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_CBC_SHA256 -cyanogenmod.app.BaseLiveLockManagerService$1: boolean getLiveLockScreenEnabled() -wangdaye.com.geometricweather.main.fragments.MainFragment: MainFragment() -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType QueryUnique -okhttp3.ConnectionPool: ConnectionPool() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$attr: int contentPaddingRight -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.internal.operators.observable.ObservableCache$Node node -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxBackgroundColor -james.adaptiveicon.R$dimen: int abc_text_size_body_2_material -androidx.preference.R$style: int Theme_AppCompat_DialogWhenLarge -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$dimen: int notification_big_circle_margin -androidx.constraintlayout.widget.R$attr: int fontWeight -android.didikee.donate.R$style: int Base_AlertDialog_AppCompat_Light -androidx.work.R$id: int blocking -androidx.hilt.lifecycle.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather -okhttp3.Response: java.lang.String message -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorButtonNormal -androidx.loader.R$id: int notification_main_column_container -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: java.lang.String styleId -wangdaye.com.geometricweather.R$styleable: int[] ColorStateListItem -com.turingtechnologies.materialscrollbar.R$styleable: int[] GradientColorItem -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemBackgroundRes(int) -androidx.preference.R$string: int abc_action_mode_done -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String Phrase_60 -androidx.drawerlayout.R$styleable: int GradientColor_android_centerColor -com.amap.api.fence.PoiItem: double getLatitude() -okhttp3.Cache$CacheResponseBody$1: void close() -androidx.preference.R$styleable: int FontFamilyFont_fontStyle -org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.database.Database db -wangdaye.com.geometricweather.R$attr: int trackColor -wangdaye.com.geometricweather.R$id: int parallax -androidx.appcompat.R$string: int abc_searchview_description_query -okio.RealBufferedSource: okio.Timeout timeout() -androidx.vectordrawable.animated.R$drawable: int notification_action_background -okhttp3.internal.cache.DiskLruCache: void evictAll() -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light -com.google.android.material.R$layout: int material_clock_display -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit ATM -com.jaredrummler.android.colorpicker.R$integer: int cancel_button_image_alpha -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void data(boolean,int,okio.BufferedSource,int) -androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$integer: int app_bar_elevation_anim_duration -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_AU -wangdaye.com.geometricweather.R$drawable: int widget_text -okhttp3.internal.platform.AndroidPlatform: boolean supportsAlpn() -com.google.android.material.R$attr: int materialCalendarHeaderSelection -com.amap.api.location.AMapLocationQualityReport: long f -androidx.viewpager2.widget.ViewPager2: void setCurrentItem(int) -androidx.constraintlayout.helper.widget.Flow: void setHorizontalGap(int) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupWindow -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: IKeyguardExternalViewCallbacks$Stub() -com.google.android.material.R$id: int middle -com.google.android.material.R$style: int Base_CardView -wangdaye.com.geometricweather.R$id: int widget_day_week_icon -androidx.constraintlayout.widget.R$styleable: int Transform_android_rotationX -com.google.android.material.R$attr: int colorPrimary -androidx.activity.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.R$styleable: int ViewPager2_android_orientation -wangdaye.com.geometricweather.R$attr: int switchTextOn -cyanogenmod.weather.RequestInfo$Builder: java.lang.String mCityName -androidx.appcompat.R$dimen: int compat_notification_large_icon_max_height -com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text -com.google.android.material.R$id: int text -wangdaye.com.geometricweather.R$id: int bidirectional -com.google.android.material.R$dimen: int design_tab_text_size_2line -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortRealFeeTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -com.google.android.material.R$color: int design_default_color_on_background -com.google.android.material.R$attr: int elevationOverlayColor -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: java.lang.String Localized -androidx.appcompat.resources.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult -androidx.preference.R$style: int Base_Widget_AppCompat_ListPopupWindow -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_android_windowIsFloating -cyanogenmod.providers.CMSettings$System: java.lang.String MENU_WAKE_SCREEN -com.google.android.material.chip.Chip: void setTextStartPaddingResource(int) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService newInstance(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi,io.reactivex.disposables.CompositeDisposable) -com.google.android.material.R$color: int mtrl_choice_chip_background_color -com.amap.api.location.AMapLocation: float getAccuracy() -wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_id -androidx.preference.R$attr: int subtitleTextStyle -wangdaye.com.geometricweather.R$attr: int thumbColor -retrofit2.ParameterHandler$2: void apply(retrofit2.RequestBuilder,java.lang.Object) -androidx.lifecycle.ReportFragment: void onPause() -wangdaye.com.geometricweather.R$drawable: int widget_card_light_80 -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoDestination -com.google.android.material.R$styleable: int AppCompatTheme_buttonStyle -james.adaptiveicon.R$dimen: int abc_progress_bar_height_material -wangdaye.com.geometricweather.R$dimen: int compat_button_padding_horizontal_material -com.jaredrummler.android.colorpicker.R$style: int Widget_Support_CoordinatorLayout -com.google.android.material.R$id: int chip2 -wangdaye.com.geometricweather.R$styleable: int TabItem_android_icon -androidx.fragment.app.Fragment$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$string: int key_notification_color -com.google.android.material.R$styleable: int Constraint_layout_constraintStart_toEndOf -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -cyanogenmod.platform.Manifest$permission: java.lang.String READ_MSIM_PHONE_STATE -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleTintList(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$id: int postLayout -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_weightSum -com.turingtechnologies.materialscrollbar.R$integer: int mtrl_btn_anim_delay_ms -com.google.android.material.R$attr: int constraints -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_DropDownItem_Spinner -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.Observer downstream -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void replay(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) -androidx.hilt.lifecycle.R$layout: int custom_dialog -com.google.android.material.R$attr: int layout_goneMarginRight -android.didikee.donate.R$styleable: int SearchView_layout -androidx.work.R$dimen: int compat_notification_large_icon_max_height -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd -com.xw.repo.bubbleseekbar.R$id: int radio -wangdaye.com.geometricweather.R$id: int fragment_container_view_tag -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitationProbability -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Title +androidx.constraintlayout.widget.R$styleable: int Transition_layoutDuringTransition +james.adaptiveicon.R$style: int Widget_AppCompat_ProgressBar +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginRight +okio.ForwardingTimeout: void throwIfReached() +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +com.google.android.material.R$id: int linear +wangdaye.com.geometricweather.R$layout: int widget_trend_hourly +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setZh_TW(java.lang.String) +androidx.lifecycle.extensions.R$dimen: int notification_large_icon_height +com.turingtechnologies.materialscrollbar.R$id: int parentPanel +androidx.viewpager2.R$id: int text2 +android.didikee.donate.R$attr: int navigationContentDescription +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabContentStart +com.google.android.material.R$id: int standard +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeTextType +androidx.preference.R$layout: int notification_template_custom_big +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_to_on_mtrl_000 +androidx.preference.R$styleable: int AppCompatTheme_actionModeFindDrawable +androidx.lifecycle.ProcessLifecycleOwnerInitializer: int update(android.net.Uri,android.content.ContentValues,java.lang.String,java.lang.String[]) +james.adaptiveicon.R$styleable: int AppCompatTheme_actionDropDownStyle +androidx.vectordrawable.animated.R$dimen: int compat_button_inset_vertical_material +cyanogenmod.app.CustomTileListenerService: java.lang.String TAG +cyanogenmod.app.ICMStatusBarManager$Stub: android.os.IBinder asBinder() +com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String VERSION_NAME +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_createCustomTileWithTag +androidx.lifecycle.extensions.R$layout: int notification_template_icon_group +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: int TRANSACTION_getSuggestions +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Spinner +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver +com.jaredrummler.android.colorpicker.R$id: int scrollIndicatorDown +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_bar_up_container +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_15 +com.google.android.material.chip.Chip: void setChipBackgroundColorResource(int) +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_android_textAppearance +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr Precip1hr +androidx.recyclerview.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_overflow_padding_start_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.lang.String getPubTime() +androidx.drawerlayout.R$styleable: int FontFamilyFont_ttcIndex +androidx.preference.R$dimen: int abc_control_corner_material +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onNext(java.lang.Object) +com.google.android.material.R$dimen: int mtrl_edittext_rectangle_top_offset +com.loc.k: int e +wangdaye.com.geometricweather.R$id: int widget_week_icon +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) +android.didikee.donate.R$styleable: int TextAppearance_android_textSize +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconTint +androidx.transition.R$id: int chronometer +androidx.preference.R$attr: int textAppearanceSearchResultTitle +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemShapeAppearance +androidx.preference.R$dimen: int abc_text_size_title_material_toolbar +james.adaptiveicon.R$drawable: int abc_ratingbar_material +okio.Buffer$UnsafeCursor: int end +com.google.android.material.R$id: int up +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.R$attr: int buttonTint +com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_linear +wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status valueOf(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_toRightOf +com.github.rahatarmanahmed.cpv.CircularProgressView: java.util.List access$100(com.github.rahatarmanahmed.cpv.CircularProgressView) +androidx.appcompat.R$id: int text +androidx.appcompat.R$drawable: int abc_ic_star_black_48dp +androidx.appcompat.resources.R$id: int action_container +okhttp3.Address: java.net.ProxySelector proxySelector() +androidx.lifecycle.LiveData: java.lang.Runnable mPostValueRunnable +wangdaye.com.geometricweather.R$string: int abc_capital_off +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getAqiColor(android.content.Context) +androidx.transition.R$id: int tag_transition_group +androidx.work.R$styleable: int GradientColor_android_centerX +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Title_Inverse +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_0 +androidx.hilt.lifecycle.R$style: int Widget_Compat_NotificationActionText +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindSpinner +androidx.dynamicanimation.R$id: int info +wangdaye.com.geometricweather.R$attr: int cpv_dialogType +android.didikee.donate.R$id: int never +com.google.android.material.R$styleable: int ProgressIndicator_indicatorColors +androidx.constraintlayout.widget.R$styleable: int MenuItem_tooltipText +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_content_inset_material +wangdaye.com.geometricweather.R$id: int always +android.support.v4.os.ResultReceiver$1 +androidx.coordinatorlayout.R$layout: int notification_template_custom_big +androidx.appcompat.R$drawable: int notification_icon_background +com.google.android.material.R$layout: int material_textinput_timepicker +cyanogenmod.themes.IThemeChangeListener$Stub: int TRANSACTION_onFinish_1 +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerNext(int,java.lang.Object) +androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +com.google.android.material.chip.ChipGroup: void setSingleLine(boolean) +com.google.android.material.R$styleable: int AppCompatTheme_panelMenuListWidth +wangdaye.com.geometricweather.R$drawable: int star_1 +okhttp3.internal.http2.ConnectionShutdownException: ConnectionShutdownException() +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_hideOnContentScroll +com.google.android.material.R$id: int notification_main_column_container +com.jaredrummler.android.colorpicker.R$attr: int switchTextOff +androidx.preference.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem +wangdaye.com.geometricweather.R$layout: int text_view_without_line_height +androidx.appcompat.R$anim: int abc_tooltip_exit +wangdaye.com.geometricweather.R$style: int Platform_V25_AppCompat +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.lang.String domain +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_primary +androidx.viewpager.R$id: int action_container +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float rain +androidx.coordinatorlayout.R$integer: R$integer() +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_measureWithLargestChild +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerComplete(io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver) +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification +androidx.preference.R$style: int Widget_AppCompat_AutoCompleteTextView +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int ActionBar_progressBarPadding +com.google.android.material.R$drawable: int abc_control_background_material +androidx.lifecycle.extensions.R$styleable: int[] FontFamilyFont +com.turingtechnologies.materialscrollbar.R$attr: int colorControlActivated +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_navigationIcon +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_thickness +androidx.fragment.R$layout +androidx.appcompat.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +com.google.android.material.R$styleable: int[] ThemeEnforcement +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_switchTextOff +okio.Okio$4 +wangdaye.com.geometricweather.R$attr: int transitionDisable +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderPackage +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderText +wangdaye.com.geometricweather.R$anim: int fragment_fade_enter +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +android.didikee.donate.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) +androidx.constraintlayout.widget.R$attr: int alphabeticModifiers +james.adaptiveicon.R$styleable: int DrawerArrowToggle_spinBars +wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_appStore james.adaptiveicon.R$styleable: int PopupWindow_android_popupAnimationStyle -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelBackground -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualObserver[] observers -androidx.vectordrawable.R$style: R$style() -com.jaredrummler.android.colorpicker.R$layout: int preference_dialog_edittext -okio.ByteString: ByteString(byte[]) -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -androidx.appcompat.R$drawable: int btn_radio_off_to_on_mtrl_animation -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_registerListener -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: long EpochStartTime -com.google.android.material.R$styleable: int ConstraintSet_deriveConstraintsFrom -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -androidx.preference.R$styleable: int[] ActionMenuItemView -androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableCompat -android.support.v4.os.ResultReceiver: ResultReceiver(android.os.Parcel) -wangdaye.com.geometricweather.R$string: int live -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setVisibility(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setSize(int) -com.jaredrummler.android.colorpicker.R$attr: int colorSwitchThumbNormal -com.google.android.material.slider.Slider: void setThumbRadiusResource(int) -com.turingtechnologies.materialscrollbar.R$string: int abc_action_bar_up_description -androidx.appcompat.widget.AppCompatSpinner: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -androidx.constraintlayout.widget.R$styleable: int OnSwipe_moveWhenScrollAtTop -wangdaye.com.geometricweather.R$string: int key_widget_clock_day_horizontal -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver,java.lang.Throwable) -androidx.preference.R$dimen: int abc_action_button_min_width_overflow_material -james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.R$layout: int preference_widget_checkbox +com.bumptech.glide.R$dimen: int notification_right_side_padding_top +com.google.android.material.chip.ChipGroup: java.util.List getCheckedChipIds() +com.google.android.material.R$attr: int rangeFillColor +com.google.android.material.R$style: int ShapeAppearanceOverlay_TopLeftCut +androidx.vectordrawable.R$id: int accessibility_custom_action_21 +retrofit2.OkHttpCall: retrofit2.OkHttpCall clone() +wangdaye.com.geometricweather.R$id: int reservedNamedId +com.bumptech.glide.R$id: int icon +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +com.google.android.gms.common.api.internal.zaab +com.google.android.material.R$color: int design_dark_default_color_secondary_variant +com.jaredrummler.android.colorpicker.R$styleable: int Preference_selectable +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTemperature +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_34 +com.google.android.material.R$style: int TextAppearance_AppCompat_Medium_Inverse +okio.GzipSource +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchPadding +wangdaye.com.geometricweather.R$styleable: int Slider_android_valueTo +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_backgroundStacked +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationZ +wangdaye.com.geometricweather.R$id: int item_icon_provider_clearIcon +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlActivated +com.google.android.material.navigation.NavigationView +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.util.Date DateTime +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onComplete() +com.google.android.material.R$attr: int counterTextAppearance +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Spinner_Underlined +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status IMPLICIT_INITIALIZING +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer stormHazard +com.google.android.material.slider.RangeSlider: float getThumbElevation() +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_menuCategory +androidx.appcompat.R$attr: int voiceIcon +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWetBulbTemperature(java.lang.Integer) +androidx.viewpager.R$style: int TextAppearance_Compat_Notification +com.google.android.material.R$styleable: int[] TabItem +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingBottom +com.google.android.material.R$attr: int labelBehavior +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getTreeIndex() +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: IWeatherProviderService$Stub$Proxy(android.os.IBinder) +android.support.v4.os.IResultReceiver$Stub: java.lang.String DESCRIPTOR +com.jaredrummler.android.colorpicker.R$styleable: int[] View +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display1 +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart +com.google.android.material.R$styleable: int Toolbar_logoDescription +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconTint +okhttp3.internal.cache2.Relay$RelaySource +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog_Alert +retrofit2.ParameterHandler$HeaderMap: retrofit2.Converter valueConverter +retrofit2.ParameterHandler$Field +com.google.android.material.R$attr: int errorIconTint +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorButtonNormal +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_SHOWERS +androidx.core.R$attr: int fontProviderFetchStrategy +android.didikee.donate.R$layout: int abc_alert_dialog_title_material +com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +io.reactivex.observers.DisposableObserver: void dispose() +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: boolean isDisposed() +com.turingtechnologies.materialscrollbar.R$attr: int preserveIconSpacing +com.google.android.material.R$styleable: int PopupWindow_android_popupBackground androidx.constraintlayout.widget.R$id: int flip +com.google.android.material.tabs.TabLayout: void addOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.R$dimen: int abc_disabled_alpha_material_light +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleEnabled(boolean) +com.google.android.material.R$styleable: int ThemeEnforcement_enforceTextAppearance +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_d +wangdaye.com.geometricweather.R$string: int feedback_live_wallpaper_day_night_type +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver[] CANCELLED +com.google.android.material.textfield.TextInputEditText: void setTextInputLayoutFocusedRectEnabled(boolean) +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteSelector routeSelector +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ListPopupWindow +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_summaryOn +wangdaye.com.geometricweather.R$style: int Animation_AppCompat_Tooltip +james.adaptiveicon.R$style: int Base_Theme_AppCompat +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_padding +wangdaye.com.geometricweather.R$attr: int customPixelDimension +okhttp3.Response: long receivedResponseAtMillis +androidx.appcompat.widget.AppCompatSpinner: int getDropDownHorizontalOffset() +com.google.android.material.R$style: int TextAppearance_AppCompat_Display2 +okhttp3.MediaType: java.lang.String QUOTED +io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean offer(java.lang.Object) +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.database.Database getDatabase() +wangdaye.com.geometricweather.R$color: int colorLine_dark +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintEnd_toStartOf +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.functions.Function,int,io.reactivex.ObservableSource[]) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: ChineseCityEntityDao$Properties() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties +androidx.appcompat.R$styleable: int StateListDrawable_android_enterFadeDuration +androidx.constraintlayout.widget.R$styleable: int Constraint_chainUseRtl +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation TOP +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitationDuration(java.lang.Float) +androidx.constraintlayout.widget.R$id: int forever +androidx.viewpager.R$styleable: int ColorStateListItem_alpha +androidx.vectordrawable.R$id: int text +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginEnd +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_weightSum +james.adaptiveicon.R$style: int Theme_AppCompat_Dialog +com.github.rahatarmanahmed.cpv.R$attr: int cpv_color +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.CMWeatherManager getInstance(android.content.Context) +androidx.hilt.R$id: int accessibility_custom_action_14 +androidx.appcompat.R$id: int right_icon +okhttp3.internal.cache.InternalCache: void trackConditionalCacheHit() +wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.converters.TimeZoneConverter timeZoneConverter +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView_Menu +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Large_Inverse +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_transitionPathRotate +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView +wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: DaoMaster$DevOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory) +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_wavePeriod +io.reactivex.Observable: io.reactivex.Observable unsubscribeOn(io.reactivex.Scheduler) +okhttp3.internal.Util: void closeQuietly(java.net.Socket) +cyanogenmod.weather.util.WeatherUtils +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: android.os.IBinder asBinder() +cyanogenmod.externalviews.ExternalViewProviderService$1: ExternalViewProviderService$1(cyanogenmod.externalviews.ExternalViewProviderService) +androidx.work.R$dimen: int notification_top_pad +com.google.android.material.R$dimen: int mtrl_btn_inset +android.didikee.donate.R$styleable: int ActionBar_navigationMode +androidx.transition.R$dimen: int notification_big_circle_margin +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_strokeWidth +com.jaredrummler.android.colorpicker.R$id: int expanded_menu +com.google.android.material.imageview.ShapeableImageView: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +androidx.constraintlayout.widget.R$layout: int notification_template_custom_big +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_item_horizontal_padding +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day +okhttp3.internal.connection.ConnectInterceptor +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +androidx.preference.R$dimen: int abc_action_button_min_height_material +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +okhttp3.internal.http2.Http2Connection: java.util.Set currentPushRequests +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +com.turingtechnologies.materialscrollbar.R$attr: int progressBarPadding +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: java.lang.String colorId +okhttp3.internal.cache.DiskLruCache: java.io.File journalFileTmp +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleColor(int) +androidx.constraintlayout.widget.R$string: int abc_searchview_description_search +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: AccuDailyResult$DailyForecasts$Day$Wind$Speed() +androidx.constraintlayout.widget.R$styleable: int MenuItem_actionLayout +com.google.android.material.R$attr: int theme +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar_Small +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitationProbability +cyanogenmod.providers.CMSettings$System: boolean isLegacySetting(java.lang.String) +androidx.preference.R$styleable: int ActionBar_contentInsetEndWithActions +com.google.android.material.R$styleable: int[] AppCompatTextView +androidx.coordinatorlayout.R$drawable: int notification_template_icon_low_bg +com.xw.repo.bubbleseekbar.R$attr: int tooltipFrameBackground +cyanogenmod.providers.CMSettings$DelimitedListValidator +androidx.legacy.coreutils.R$id: int action_divider +com.google.android.material.internal.ScrimInsetsFrameLayout: void setScrimInsetForeground(android.graphics.drawable.Drawable) +io.reactivex.observers.DisposableObserver: java.util.concurrent.atomic.AtomicReference upstream +androidx.preference.R$layout: int abc_alert_dialog_button_bar_material +androidx.preference.R$styleable: int SwitchPreference_android_summaryOff +com.google.android.material.R$attr: int pressedTranslationZ +androidx.appcompat.R$style: int Widget_AppCompat_TextView_SpinnerItem +androidx.vectordrawable.R$layout: R$layout() +wangdaye.com.geometricweather.R$string: int key_unit +com.jaredrummler.android.colorpicker.R$attr: int actionBarSplitStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_98 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_width +com.jaredrummler.android.colorpicker.R$drawable: int cpv_alpha +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +okhttp3.HttpUrl$Builder: java.util.List encodedQueryNamesAndValues +androidx.constraintlayout.widget.R$style: int Base_V23_Theme_AppCompat +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature +androidx.hilt.R$styleable: int FontFamilyFont_fontStyle +cyanogenmod.app.PartnerInterface: int ZEN_MODE_OFF +androidx.coordinatorlayout.R$drawable +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String BriefPhrase +wangdaye.com.geometricweather.R$string: int key_distance_unit +com.jaredrummler.android.colorpicker.R$layout: int expand_button +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_holo_dark +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: float degree +com.jaredrummler.android.colorpicker.R$attr: int fontProviderFetchTimeout +android.didikee.donate.R$attr: int actionBarWidgetTheme +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dark +android.didikee.donate.R$color: int bright_foreground_inverse_material_light +cyanogenmod.themes.ThemeManager: void unregisterThemeChangeListener(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: void setValue(java.util.List) +wangdaye.com.geometricweather.R$layout: int mtrl_picker_text_input_date +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: int UnitType +okhttp3.Handshake: java.util.List localCertificates() +androidx.appcompat.widget.AppCompatImageView: android.graphics.PorterDuff$Mode getSupportImageTintMode() +androidx.appcompat.R$styleable: int AppCompatTextView_drawableLeftCompat +wangdaye.com.geometricweather.R$layout: int dialog_minimal_icon +wangdaye.com.geometricweather.R$styleable: int Layout_maxWidth +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitationProbability +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent +cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(java.util.Map,java.util.Map,cyanogenmod.themes.ThemeChangeRequest$RequestType,long,cyanogenmod.themes.ThemeChangeRequest$1) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconTintMode +androidx.lifecycle.ViewModelStore +android.didikee.donate.R$styleable: int Toolbar_titleTextColor +com.google.android.material.R$style: int Platform_Widget_AppCompat_Spinner +androidx.appcompat.view.menu.ListMenuItemView: ListMenuItemView(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeight +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_day +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogIcon +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_14 +cyanogenmod.themes.ThemeChangeRequest: java.util.Map getThemeComponentsMap() +com.google.android.material.R$styleable: int ConstraintSet_chainUseRtl +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onComplete() +wangdaye.com.geometricweather.R$attr: int imageAspectRatio +androidx.preference.R$attr: int tooltipText +androidx.appcompat.resources.R$id: int tag_accessibility_pane_title +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Info +io.reactivex.internal.subscribers.StrictSubscriber: void cancel() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type WIND +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.internal.operators.observable.ObservableZip$ZipObserver[] observers +com.google.android.material.R$attr: int onCross +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassDescription +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit KPA +io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite COMPLETE +com.baidu.location.e.h$b: com.baidu.location.e.h$b a +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams mParams +com.jaredrummler.android.colorpicker.R$styleable: int[] MenuItem +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange Past6HourRange +androidx.appcompat.widget.SwitchCompat +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_scrollView +wangdaye.com.geometricweather.R$id: int textStart +james.adaptiveicon.R$styleable: int ActionBar_backgroundSplit +android.didikee.donate.R$styleable: int AlertDialog_buttonPanelSideLayout +org.greenrobot.greendao.AbstractDao: long insertWithoutSettingPk(java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int notif_temp_124 +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setLatitude(java.lang.String) +wangdaye.com.geometricweather.R$attr: int minTouchTargetSize +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue getOrCreateQueue() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SearchView_ActionBar +wangdaye.com.geometricweather.R$anim: int popup_show_top_right +cyanogenmod.app.suggest.ApplicationSuggestion$1: java.lang.Object[] newArray(int) +android.support.v4.os.ResultReceiver$MyRunnable +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf +wangdaye.com.geometricweather.R$drawable: int shortcuts_fog_foreground +com.amap.api.location.AMapLocation: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$string: int mtrl_picker_toggle_to_calendar_input_mode +com.google.android.material.R$dimen: int mtrl_card_checked_icon_margin +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: AccuLocationResult() +androidx.hilt.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$attr: int bsb_thumb_color +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: WindDegree(float,boolean) +wangdaye.com.geometricweather.R$attr: int layout_dodgeInsetEdges +wangdaye.com.geometricweather.common.basic.models.weather.Wind: Wind(java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabAnimationMode +androidx.constraintlayout.widget.R$attr: int actionProviderClass +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_textOff +com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_checkbox +androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView +io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.CompletableSource) +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.RealConnection connection +android.didikee.donate.R$styleable: int DrawerArrowToggle_color +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getWindChillTemperature() +androidx.appcompat.R$styleable: int SwitchCompat_android_textOn +com.google.android.material.R$dimen: int design_bottom_sheet_elevation +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_seekBarStyle +androidx.constraintlayout.widget.R$styleable: int OnSwipe_moveWhenScrollAtTop +io.reactivex.Observable: io.reactivex.Single reduceWith(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) +androidx.preference.R$styleable: int Fragment_android_tag +androidx.hilt.R$attr: int font +com.google.android.material.R$attr: int behavior_draggable +androidx.activity.R$layout: R$layout() +cyanogenmod.providers.CMSettings$System: java.lang.String FORWARD_LOOKUP_PROVIDER +androidx.preference.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +okhttp3.internal.cache2.Relay: okio.ByteString metadata() +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +androidx.constraintlayout.widget.R$layout: int abc_screen_content_include +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_30 +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_longpressed_holo +retrofit2.BuiltInConverters$StreamingResponseBodyConverter: okhttp3.ResponseBody convert(okhttp3.ResponseBody) +androidx.lifecycle.ComputableLiveData: androidx.lifecycle.LiveData getLiveData() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Small_Inverse +androidx.appcompat.widget.AppCompatEditText: void setBackgroundResource(int) +okhttp3.internal.http1.Http1Codec$ChunkedSource: Http1Codec$ChunkedSource(okhttp3.internal.http1.Http1Codec,okhttp3.HttpUrl) +androidx.customview.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.db.entities.HistoryEntity: int getDaytimeTemperature() +androidx.appcompat.R$attr: int titleMarginBottom +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogLayout +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_NoActionBar +okhttp3.Cache$2: Cache$2(okhttp3.Cache) +okhttp3.OkHttpClient: java.util.List networkInterceptors() +cyanogenmod.providers.CMSettings$Secure +wangdaye.com.geometricweather.R$string: int feedback_restart +wangdaye.com.geometricweather.R$id: int indicator +androidx.activity.R$style: int Widget_Compat_NotificationActionText +james.adaptiveicon.R$styleable: int ViewStubCompat_android_layout +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.functions.Function itemTimeoutIndicator +wangdaye.com.geometricweather.R$string: int widget_trend_daily +wangdaye.com.geometricweather.R$attr: int tabIconTintMode +okhttp3.internal.Util: boolean discard(okio.Source,int,java.util.concurrent.TimeUnit) +androidx.hilt.work.R$id: int fragment_container_view_tag +androidx.preference.R$style: int TextAppearance_AppCompat_Button +android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$id: int fragment +androidx.loader.R$dimen: int notification_large_icon_width +androidx.swiperefreshlayout.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: java.lang.String modeId +retrofit2.ParameterHandler$Part: retrofit2.Converter converter +com.google.android.material.R$styleable: int Tooltip_android_minWidth +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_COLOR_AUTO +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_19 +androidx.preference.R$attr: int fastScrollHorizontalThumbDrawable +okhttp3.internal.cache.DiskLruCache: boolean removeEntry(okhttp3.internal.cache.DiskLruCache$Entry) +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context,android.util.AttributeSet) +retrofit2.Response: Response(okhttp3.Response,java.lang.Object,okhttp3.ResponseBody) +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setEnabled(boolean) +cyanogenmod.util.ColorUtils: double calculateDeltaE(double,double,double,double,double,double) +wangdaye.com.geometricweather.R$id: int NO_DEBUG +com.xw.repo.bubbleseekbar.R$id: int search_mag_icon +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_HAIL +androidx.lifecycle.ClassesInfoCache: boolean hasLifecycleMethods(java.lang.Class) +cyanogenmod.themes.ThemeChangeRequest$RequestType: ThemeChangeRequest$RequestType(java.lang.String,int) +com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.AnimatorSet createIndeterminateAnimator(float) +androidx.transition.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_MIDDLE +wangdaye.com.geometricweather.R$id: int month_grid +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline Headline +wangdaye.com.geometricweather.db.entities.WeatherEntity: void delete() +wangdaye.com.geometricweather.R$id: int notification_base_realtimeTemp +com.bumptech.glide.integration.okhttp.R$id: int action_text +io.reactivex.Observable: io.reactivex.Observable zipWith(java.lang.Iterable,io.reactivex.functions.BiFunction) +io.reactivex.internal.subscriptions.SubscriptionArbiter: void setSubscription(org.reactivestreams.Subscription) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setValue(java.util.List) +wangdaye.com.geometricweather.R$layout: int dialog_learn_more_about_geocoder +wangdaye.com.geometricweather.R$id: int item_touch_helper_previous_elevation +androidx.preference.R$styleable: int[] AppCompatSeekBar +com.jaredrummler.android.colorpicker.R$attr: int windowFixedWidthMinor +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_background +wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_grey +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetEndWithActions +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Title +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_buttonPanelSideLayout +james.adaptiveicon.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +androidx.constraintlayout.widget.R$styleable: int View_android_focusable +androidx.recyclerview.R$drawable: int notify_panel_notification_icon_bg +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_setInteractivity +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_divider_material +okhttp3.logging.LoggingEventListener$Factory: okhttp3.EventListener create(okhttp3.Call) +cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo access$202(cyanogenmod.weatherservice.ServiceRequestResult,cyanogenmod.weather.WeatherInfo) +com.google.android.material.R$style: int Base_Widget_MaterialComponents_Snackbar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.util.List value +androidx.preference.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int getIsRainOrSnow() +androidx.core.R$attr: int fontVariationSettings +android.didikee.donate.R$styleable: int AppCompatTheme_windowActionBarOverlay +okhttp3.internal.connection.RealConnection: boolean supportsUrl(okhttp3.HttpUrl) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue getOrCreateQueue() +androidx.work.R$id: int accessibility_action_clickable_span +okhttp3.Dns +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onNext(java.lang.Object) +com.google.android.material.R$id: int message +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_INIT +com.google.android.material.R$attr: int actionMenuTextAppearance +io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String,int,boolean) +cyanogenmod.profiles.ConnectionSettings: void processOverride(android.content.Context) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeCloudCover(java.lang.Integer) +james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +okio.RealBufferedSink$1: void flush() +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +okio.Buffer: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onSubscribe(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$bool: int abc_allow_stacked_button_bar +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: long serialVersionUID +wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.R$styleable: int[] KeyFramesAcceleration +androidx.preference.R$id: int async +okhttp3.Cookie$Builder: java.lang.String domain +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void clear() +com.google.android.gms.common.internal.zas +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.disposables.Disposable upstream +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_checked +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getShowMotionSpec() +cyanogenmod.app.ProfileGroup$1: java.lang.Object createFromParcel(android.os.Parcel) +com.turingtechnologies.materialscrollbar.R$attr: int headerLayout +androidx.transition.R$id: int italic +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_DialogWhenLarge +androidx.appcompat.R$attr: int listPreferredItemHeight +androidx.appcompat.R$styleable: int AppCompatTheme_colorBackgroundFloating +wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_padding +james.adaptiveicon.R$id: int normal +com.google.android.material.R$attr: int indeterminateProgressStyle +cyanogenmod.themes.ThemeChangeRequest$1 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableEndCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: AccuCurrentResult$TemperatureSummary() +com.google.gson.stream.JsonReader: int stackSize +wangdaye.com.geometricweather.R$attr: int expandedTitleGravity +wangdaye.com.geometricweather.main.fragments.MainFragment +okhttp3.internal.connection.RealConnection: okio.BufferedSink sink +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_allowPresets +com.google.android.material.R$dimen: int design_snackbar_extra_spacing_horizontal +cyanogenmod.providers.DataUsageContract: java.lang.String SLOW_AVG +wangdaye.com.geometricweather.R$styleable: int[] MaterialCardView +com.google.android.material.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$styleable: int[] CoordinatorLayout +okhttp3.Cache$Entry: void writeCertList(okio.BufferedSink,java.util.List) +com.google.android.material.R$id: int accessibility_custom_action_7 +okio.AsyncTimeout$1: void close() +cyanogenmod.app.ProfileManager: android.content.Context mContext +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast +wangdaye.com.geometricweather.settings.activities.DailyTrendDisplayManageActivity: DailyTrendDisplayManageActivity() +cyanogenmod.app.CMStatusBarManager: void removeTile(java.lang.String,int) +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_title_material +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetEndWithActions +io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper DISPOSED +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_shapeAppearanceOverlay +wangdaye.com.geometricweather.R$array: int widget_card_style_values +androidx.constraintlayout.widget.R$id: int search_edit_frame +cyanogenmod.weather.WeatherInfo$Builder: double mTodaysLowTemp +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onLockscreenSlideOffsetChanged(float) +androidx.preference.R$styleable: int AppCompatTheme_dividerVertical +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedHeightMinor +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_LOW_POWER +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onScreenTurnedOff() +com.turingtechnologies.materialscrollbar.R$styleable: int RecycleListView_paddingTopNoTitle +wangdaye.com.geometricweather.R$attr: int subtitleTextAppearance +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: retrofit2.Call $this_awaitResponse$inlined +androidx.dynamicanimation.R$styleable: int GradientColor_android_type +com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_material_dark +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: double mLow +cyanogenmod.externalviews.ExternalViewProperties: int getX() +androidx.lifecycle.extensions.R$dimen: int notification_content_margin_start +okio.Buffer: long readAll(okio.Sink) +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getCollapseContentDescription() +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableEnd +androidx.preference.R$attr: int logoDescription +com.google.android.material.R$styleable: int MaterialCalendar_daySelectedStyle +james.adaptiveicon.R$attr: int actionModeCutDrawable +androidx.appcompat.resources.R$styleable: int[] StateListDrawableItem +androidx.preference.R$styleable: int Toolbar_contentInsetEnd +com.google.android.material.progressindicator.ProgressIndicator: void setTrackColor(int) +com.google.android.material.R$styleable: int Layout_layout_constraintGuide_percent +wangdaye.com.geometricweather.R$string: int abc_searchview_description_search +okhttp3.internal.connection.ConnectInterceptor: ConnectInterceptor(okhttp3.OkHttpClient) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitationDuration() +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetEndWithActions +com.google.android.material.R$dimen: int abc_dialog_list_padding_top_no_title +androidx.vectordrawable.animated.R$layout: int notification_template_part_time +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +androidx.hilt.lifecycle.R$id: int tag_accessibility_clickable_spans +androidx.constraintlayout.helper.widget.Flow: void setMaxElementsWrap(int) +wangdaye.com.geometricweather.R$attr: int contentInsetRight +cyanogenmod.weather.WeatherLocation: void writeToParcel(android.os.Parcel,int) +okio.Options: int intCount(okio.Buffer) +androidx.vectordrawable.animated.R$drawable: int notification_tile_bg +com.turingtechnologies.materialscrollbar.R$attr: int layout_collapseParallaxMultiplier +androidx.constraintlayout.widget.R$styleable: int Transition_constraintSetStart +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DrawingDelegate getCurrentDrawingDelegate() +androidx.work.impl.background.systemalarm.SystemAlarmService: SystemAlarmService() +cyanogenmod.weather.WeatherInfo: int getTemperatureUnit() +androidx.lifecycle.LiveData: int getVersion() +cyanogenmod.hardware.IThermalListenerCallback: void onThermalChanged(int) +okio.BufferedSource: long indexOfElement(okio.ByteString) +com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Button +com.google.android.material.R$styleable: int Constraint_animate_relativeTo +wangdaye.com.geometricweather.R$styleable: int KeyPosition_pathMotionArc +com.jaredrummler.android.colorpicker.R$attr: int switchTextOn +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long end +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderFetchTimeout +okhttp3.EventListener: void requestHeadersEnd(okhttp3.Call,okhttp3.Request) +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_COLOR_ADJUSTMENT +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: boolean isDisposed() +androidx.constraintlayout.widget.R$styleable: int Transform_android_translationX +androidx.constraintlayout.widget.R$styleable: int SearchView_suggestionRowLayout +wangdaye.com.geometricweather.R$attr: int positiveButtonText +com.google.android.gms.base.R$id: R$id() +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_Solid +androidx.appcompat.R$bool: int abc_allow_stacked_button_bar +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_xml +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconTint +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize +cyanogenmod.profiles.AirplaneModeSettings$BooleanState: int STATE_DISALED +androidx.hilt.work.R$id: int accessibility_custom_action_2 +okhttp3.OkHttpClient$Builder: java.util.List networkInterceptors() +androidx.lifecycle.SavedStateViewModelFactory: void onRequery(androidx.lifecycle.ViewModel) +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_ANY +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature +com.google.android.material.R$styleable: int KeyTrigger_onCross +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Small +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel +cyanogenmod.themes.ThemeManager$1$2: void run() +retrofit2.http.FormUrlEncoded +james.adaptiveicon.R$attr: int contentInsetStart +com.turingtechnologies.materialscrollbar.DragScrollBar: DragScrollBar(android.content.Context,android.util.AttributeSet,int) +james.adaptiveicon.R$id: int action_bar_subtitle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: AccuDailyResult$DailyForecasts$Day$Ice() +com.amap.api.location.CoordinateConverter: CoordinateConverter(android.content.Context) +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_inputType +com.amap.api.fence.PoiItem: double f +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStrokeWidth +wangdaye.com.geometricweather.R$attr: int progress_color +wangdaye.com.geometricweather.R$string: int mold +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource[] values() +androidx.swiperefreshlayout.R$layout: int custom_dialog +androidx.lifecycle.CompositeGeneratedAdaptersObserver +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintDimensionRatio +com.google.android.material.R$styleable: int AppBarLayoutStates_state_liftable +wangdaye.com.geometricweather.R$attr: int cpv_dialogTitle +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextAppearanceInactive +androidx.preference.R$id: int action_bar_container +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.functions.Function valueSelector +android.didikee.donate.R$id: int line3 +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int SignInButton_scopeUris +com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_bottom_material +com.google.android.material.R$styleable: int ProgressIndicator_minHideDelay +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_dither +com.google.android.material.R$styleable: int CustomAttribute_customColorValue +androidx.legacy.coreutils.R$dimen: int notification_main_column_padding_top +okhttp3.MultipartBody: int size() +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onComplete() +com.google.android.material.navigation.NavigationView: void setItemBackgroundResource(int) +androidx.preference.R$style: int PreferenceThemeOverlay_v14_Material +com.google.android.material.R$drawable: int abc_list_pressed_holo_dark +james.adaptiveicon.R$attr: int voiceIcon +androidx.appcompat.widget.ActionBarOverlayLayout: java.lang.CharSequence getTitle() +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float getPrecipitation(float) +androidx.constraintlayout.widget.R$style: int Base_V28_Theme_AppCompat_Light +okhttp3.internal.http1.Http1Codec: int STATE_WRITING_REQUEST_BODY +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Flush +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_snackbar_margin +android.didikee.donate.R$layout: int notification_template_part_chronometer +android.didikee.donate.R$attr: int dropDownListViewStyle +androidx.hilt.lifecycle.R$id: int async +androidx.core.R$drawable: R$drawable() +androidx.lifecycle.ReportFragment: void dispatch(android.app.Activity,androidx.lifecycle.Lifecycle$Event) +com.google.android.material.R$integer: int design_snackbar_text_max_lines +com.google.android.gms.common.SignInButton +androidx.appcompat.R$dimen: int tooltip_corner_radius +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_54 +androidx.appcompat.R$drawable: int abc_text_select_handle_left_mtrl_dark +androidx.preference.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void dispose() +androidx.fragment.app.FragmentManagerState +com.bumptech.glide.R$drawable: int notification_template_icon_low_bg +com.google.android.material.R$id: int home +com.google.android.material.R$string: int mtrl_picker_date_header_selected +com.google.android.material.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.entities.LocationEntity readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +wangdaye.com.geometricweather.R$styleable: int[] RecycleListView +com.google.android.material.R$attr: int yearTodayStyle +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_13 +androidx.appcompat.R$drawable: int abc_btn_radio_to_on_mtrl_015 +wangdaye.com.geometricweather.R$dimen: int notification_right_side_padding_top +com.amap.api.location.AMapLocationClient: boolean isStarted() +androidx.transition.R$id: int blocking +com.google.android.material.chip.Chip: void setHideMotionSpecResource(int) +wangdaye.com.geometricweather.R$attr: int barrierDirection +com.google.android.material.R$dimen: int mtrl_btn_padding_bottom +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getZh_TW() +android.didikee.donate.R$attr: int contentInsetLeft +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$dimen: int abc_alert_dialog_button_dimen +com.turingtechnologies.materialscrollbar.R$id: int scrollIndicatorDown +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.util.List _queryWeatherEntity_DailyEntityList(java.lang.String,java.lang.String) +androidx.viewpager2.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.R$layout: int test_toolbar +wangdaye.com.geometricweather.R$dimen: int material_helper_text_font_1_3_padding_horizontal +com.google.gson.stream.JsonReader: java.lang.String nextUnquotedValue() +wangdaye.com.geometricweather.common.basic.models.weather.Weather: boolean isDaylight(java.util.TimeZone) +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) +okhttp3.internal.http2.Http2: byte FLAG_END_STREAM +com.google.android.material.R$dimen: int mtrl_card_spacing +com.google.android.material.tabs.TabLayout: int getTabMaxWidth() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_shapeAppearanceOverlay +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onSuccess(java.lang.Object) +android.didikee.donate.R$styleable: int AppCompatTheme_windowActionModeOverlay +androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context,android.util.AttributeSet) +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +com.amap.api.location.CoordinateConverter: com.amap.api.location.DPoint d +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_summaryOff +androidx.appcompat.R$styleable: int TextAppearance_android_shadowColor +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object readKey(android.database.Cursor,int) +com.google.android.material.R$styleable: int Transform_android_rotation +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActivityChooserView +okio.Buffer: okio.Buffer writeShortLe(int) +android.didikee.donate.R$color: int primary_text_default_material_dark +wangdaye.com.geometricweather.R$id: int item_weather_daily_uv_title +wangdaye.com.geometricweather.R$drawable: int flag_hu +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.lang.String getUnit() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean getPoint() +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: org.reactivestreams.Subscriber downstream +com.google.android.material.R$styleable: int MenuGroup_android_id +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIcon +com.google.android.material.slider.BaseSlider: void setHaloRadius(int) +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onNext(java.lang.Object) +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +cyanogenmod.themes.IThemeService$Stub: cyanogenmod.themes.IThemeService asInterface(android.os.IBinder) +androidx.fragment.R$dimen: int compat_control_corner_material +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectionSpecs(java.util.List) +com.bumptech.glide.R$attr: int font +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum Maximum +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Borderless +androidx.lifecycle.ComputableLiveData: java.lang.Runnable mInvalidationRunnable +androidx.work.R$dimen: int compat_button_padding_vertical_material +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_barLength +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType SOSOMAP +com.google.android.gms.auth.api.signin.GoogleSignInOptions: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginStart +androidx.appcompat.R$attr: int panelMenuListWidth +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: float getBackgroundOverlayColorAlpha() +com.google.android.material.R$styleable: int Constraint_layout_constraintTag +org.greenrobot.greendao.AbstractDao: java.lang.String[] getPkColumns() +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean mainDone +androidx.cardview.R$styleable: int CardView_cardMaxElevation +wangdaye.com.geometricweather.R$transition +com.google.android.material.slider.BaseSlider: void setTrackActiveTintList(android.content.res.ColorStateList) +com.google.android.material.R$attr: int boxCornerRadiusTopStart +com.jaredrummler.android.colorpicker.ColorPickerView: void setSliderTrackerColor(int) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_visibility +okhttp3.internal.http.HttpDate$1 +wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitlePanelStyle +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +retrofit2.Call: void enqueue(retrofit2.Callback) +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.functions.Predicate predicate +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_borderlessButtonStyle +wangdaye.com.geometricweather.R$drawable: int weather_sleet_1 +com.turingtechnologies.materialscrollbar.R$styleable: int[] Toolbar +androidx.preference.R$styleable: int DialogPreference_dialogTitle +androidx.preference.R$styleable: int AppCompatTheme_borderlessButtonStyle +wangdaye.com.geometricweather.R$layout: int container_main_footer +androidx.preference.R$styleable: int LinearLayoutCompat_android_weightSum +cyanogenmod.profiles.RingModeSettings: java.lang.String getValue() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitationDuration() +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_daySelectedStyle +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +androidx.work.R$id: int notification_background +androidx.appcompat.resources.R$styleable: int GradientColor_android_tileMode +com.amap.api.location.AMapLocation: boolean o +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float thunderstormPrecipitation +com.google.android.material.R$dimen: int abc_dialog_padding_material +com.turingtechnologies.materialscrollbar.R$id: int chronometer +com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView_PrimarySurface +wangdaye.com.geometricweather.R$color: int design_fab_stroke_top_outer_color +cyanogenmod.weather.WeatherInfo: double access$702(cyanogenmod.weather.WeatherInfo,double) +com.google.android.material.button.MaterialButton: void setInternalBackground(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean mainDone +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.google.android.material.R$string: int abc_searchview_description_query +james.adaptiveicon.R$dimen: int hint_pressed_alpha_material_dark +androidx.appcompat.R$attr: int defaultQueryHint +io.reactivex.internal.util.HashMapSupplier: java.util.Map call() +com.amap.api.location.AMapLocation: double getAltitude() +cyanogenmod.weather.WeatherInfo: long access$1002(cyanogenmod.weather.WeatherInfo,long) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_WAKE_SCREEN_VALIDATOR +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.google.android.material.R$styleable: int Constraint_android_layout_marginBottom +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +androidx.preference.MultiSelectListPreferenceDialogFragmentCompat +com.google.android.material.R$styleable: int KeyAttribute_android_transformPivotY +androidx.transition.R$layout: R$layout() +com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getEndIconDrawable() +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +wangdaye.com.geometricweather.R$styleable: int ActionBar_subtitleTextStyle +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onNext(java.lang.Object) +android.didikee.donate.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMark +com.turingtechnologies.materialscrollbar.R$dimen: int notification_big_circle_margin +androidx.appcompat.R$color: int abc_primary_text_disable_only_material_dark +wangdaye.com.geometricweather.R$id: int chain +okhttp3.internal.http2.Http2Connection$3 +androidx.dynamicanimation.R$attr: int fontWeight +androidx.recyclerview.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.db.entities.WeatherEntityDao myDao +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: FlowableOnBackpressureError$BackpressureErrorSubscriber(org.reactivestreams.Subscriber) +com.jaredrummler.android.colorpicker.R$anim: int abc_popup_enter +wangdaye.com.geometricweather.R$attr: int windowFixedWidthMajor +com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_swipe_escape_velocity +androidx.recyclerview.widget.RecyclerView: void setEdgeEffectFactory(androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory) +wangdaye.com.geometricweather.R$dimen: int widget_little_weather_icon_size +io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator INSTANCE +androidx.appcompat.R$styleable: int SearchView_android_maxWidth +com.google.android.material.R$id: int test_checkbox_app_button_tint +com.amap.api.location.AMapLocation: boolean isFixLastLocation() +wangdaye.com.geometricweather.R$styleable: int[] MaterialTextView +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCloseDrawable +wangdaye.com.geometricweather.R$attr: int msb_barColor +android.support.v4.os.ResultReceiver +androidx.appcompat.R$styleable: int ViewBackgroundHelper_backgroundTintMode +com.google.android.material.appbar.AppBarLayout$BaseBehavior: AppBarLayout$BaseBehavior() +com.google.android.material.R$styleable: int MaterialCalendar_dayTodayStyle +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getHourlyForecast() +android.didikee.donate.R$styleable: int TextAppearance_android_textColorLink +wangdaye.com.geometricweather.R$attr: int yearStyle +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdp +okhttp3.OkHttpClient: okhttp3.CertificatePinner certificatePinner() +wangdaye.com.geometricweather.R$menu: int activity_preview_icon +com.bumptech.glide.R$styleable: int GradientColor_android_gradientRadius +androidx.preference.R$drawable: int notification_template_icon_bg +androidx.appcompat.R$id: int message +androidx.transition.R$style: int TextAppearance_Compat_Notification_Line2 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 +cyanogenmod.hardware.CMHardwareManager: java.lang.String getLtoSource() +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +okio.Pipe$PipeSource: okio.Timeout timeout() +com.bumptech.glide.integration.okhttp.R$dimen: int notification_large_icon_height +okhttp3.Cookie: java.lang.String path() +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCardForegroundColor() +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onComplete() +cyanogenmod.profiles.LockSettings: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String zh_CN +okhttp3.Cache: long size() +androidx.fragment.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$id: int dropdown_menu +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startColor +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onPause() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Title_Inverse +com.google.android.material.R$color: int design_fab_stroke_end_inner_color +okhttp3.internal.connection.RouteSelector +wangdaye.com.geometricweather.R$animator: int mtrl_fab_show_motion_spec +com.amap.api.fence.GeoFence: int e +androidx.dynamicanimation.R$dimen: int compat_button_inset_horizontal_material +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_RC4_40_SHA +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: java.lang.Object leaveTransform(java.lang.Object) +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType[] $VALUES +okhttp3.HttpUrl: boolean percentEncoded(java.lang.String,int,int) +cyanogenmod.platform.Manifest$permission: java.lang.String THIRD_PARTY_KEYGUARD +androidx.hilt.R$id: int line1 +androidx.preference.R$color: int switch_thumb_disabled_material_dark +com.google.android.material.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat +com.google.android.material.R$attr: int cornerSize +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: byte[] readPersistentBytes(java.lang.String) +io.reactivex.Observable: io.reactivex.Observable onTerminateDetach() +okhttp3.internal.io.FileSystem$1: okio.Sink appendingSink(java.io.File) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int THUNDERSTORMS +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderCerts +androidx.loader.R$styleable: int FontFamilyFont_font +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textStyle +androidx.constraintlayout.widget.R$attr: int backgroundTintMode +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter +com.google.android.material.R$dimen: int mtrl_calendar_month_horizontal_padding wangdaye.com.geometricweather.R$font: int product_sans_black_italic -com.amap.api.location.AMapLocationClientOption: boolean OPEN_ALWAYS_SCAN_WIFI -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconTint -com.google.android.material.R$drawable: int abc_edit_text_material -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextColor(android.content.res.ColorStateList) -okio.SegmentedByteString: okio.ByteString toAsciiUppercase() -androidx.hilt.lifecycle.R$id: int normal -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea -okhttp3.Request$Builder: Request$Builder() -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -cyanogenmod.app.PartnerInterface: android.content.Context mContext -androidx.preference.R$style: int Base_Widget_AppCompat_ActionMode -com.google.android.material.R$id: int material_timepicker_container -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: AccuCurrentResult$Past24HourTemperatureDeparture$Imperial() -androidx.dynamicanimation.R$styleable: int[] FontFamilyFont -androidx.constraintlayout.motion.widget.MotionLayout: void setState(androidx.constraintlayout.motion.widget.MotionLayout$TransitionState) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: ExternalViewProviderService$Provider$ProviderImpl(cyanogenmod.externalviews.ExternalViewProviderService$Provider,cyanogenmod.externalviews.ExternalViewProviderService$Provider) -io.reactivex.Observable: io.reactivex.Observable concatDelayError(io.reactivex.ObservableSource,int,boolean) -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -james.adaptiveicon.R$integer: R$integer() -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_behavior -okhttp3.Request$Builder: okhttp3.Request$Builder cacheControl(okhttp3.CacheControl) -com.amap.api.location.AMapLocationClientOption: boolean isNeedAddress() -com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_layout -wangdaye.com.geometricweather.R$attr: int roundPercent -androidx.preference.R$color: int material_grey_50 -android.didikee.donate.R$drawable: int abc_btn_radio_material -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemTextColor -io.reactivex.Observable: io.reactivex.Single toSortedList() -cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_MWI_NOTIFICATION -androidx.coordinatorlayout.R$layout: int custom_dialog -android.didikee.donate.R$styleable: int MenuView_android_verticalDivider -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$layout: int activity_about -androidx.appcompat.widget.AppCompatButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -james.adaptiveicon.R$layout: int notification_template_part_chronometer -androidx.legacy.coreutils.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.R$attr: int endIconDrawable -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal -androidx.constraintlayout.widget.R$attr: int flow_lastVerticalStyle -okio.Buffer: okio.BufferedSink writeByte(int) -androidx.constraintlayout.widget.R$id: int action_container -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircleAngle -androidx.hilt.R$styleable: int FontFamilyFont_font -androidx.recyclerview.R$dimen: int fastscroll_margin -cyanogenmod.providers.CMSettings$Secure: java.lang.String DISPLAY_GAMMA_CALIBRATION_PREFIX -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -cyanogenmod.app.Profile: cyanogenmod.profiles.LockSettings mScreenLockMode -wangdaye.com.geometricweather.R$attr: int imageAspectRatioAdjust -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.ObservableSource first -james.adaptiveicon.R$style: int Animation_AppCompat_Dialog -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIcon -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.R$attr: int flow_horizontalAlign -wangdaye.com.geometricweather.R$attr: int isMaterialTheme -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_SHOW_BATTERY_PERCENT_VALIDATOR -androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_checkbox -com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay_v14 -wangdaye.com.geometricweather.R$attr: int collapseIcon -wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status valueOf(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSuggest() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -androidx.preference.R$style: int TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String d() -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onComplete() -com.google.android.gms.signin.internal.zak -com.xw.repo.bubbleseekbar.R$attr: int contentInsetLeft -androidx.transition.R$styleable: int GradientColor_android_endColor -cyanogenmod.externalviews.ExternalViewProviderService$Provider: ExternalViewProviderService$Provider(cyanogenmod.externalviews.ExternalViewProviderService,android.os.Bundle) -com.xw.repo.bubbleseekbar.R$color: int accent_material_light -cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri getDownloadUri() -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: android.os.IBinder asBinder() -androidx.preference.R$styleable: int AppCompatTheme_colorError -com.google.android.material.R$dimen: int mtrl_calendar_month_vertical_padding -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -cyanogenmod.providers.CMSettings$Secure$1: CMSettings$Secure$1() -androidx.appcompat.R$styleable: int SwitchCompat_trackTintMode -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_48 -com.google.android.material.R$id: int mtrl_picker_header_selection_text -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Button -androidx.constraintlayout.widget.Barrier: void setMargin(int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -retrofit2.Platform$Android$MainThreadExecutor -okio.BufferedSink: java.io.OutputStream outputStream() -androidx.constraintlayout.widget.R$attr: int textAppearanceListItem -wangdaye.com.geometricweather.R$drawable: int ic_mold -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_showText -androidx.lifecycle.LiveData$1: void run() -wangdaye.com.geometricweather.R$styleable: int Fragment_android_tag -com.github.rahatarmanahmed.cpv.CircularProgressView$3: void onAnimationUpdate(android.animation.ValueAnimator) -androidx.drawerlayout.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$id: int labelGroup -com.turingtechnologies.materialscrollbar.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$attr: int disableDependentsState -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -androidx.cardview.widget.CardView: int getContentPaddingLeft() -androidx.coordinatorlayout.R$dimen: int notification_large_icon_height -androidx.core.R$dimen: int notification_media_narrow_margin -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_DOCUMENT -com.google.android.material.slider.RangeSlider: float getValueFrom() -cyanogenmod.themes.IThemeService$Stub$Proxy: int getProgress() -androidx.legacy.coreutils.R$id: int italic -james.adaptiveicon.R$attr: int listItemLayout -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetRight -com.xw.repo.bubbleseekbar.R$id: int info -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedWidthMinor -com.xw.repo.bubbleseekbar.R$attr: int bsb_second_track_size -com.google.android.material.R$layout: int abc_alert_dialog_button_bar_material -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_large_material -wangdaye.com.geometricweather.R$style: int Widget_Design_CollapsingToolbar -wangdaye.com.geometricweather.db.entities.AlertEntity: java.util.Date getDate() -androidx.appcompat.R$drawable: int abc_list_divider_material -wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Icon -com.google.android.material.R$style: int Widget_AppCompat_SeekBar -com.google.android.material.floatingactionbutton.FloatingActionButton: void setScaleX(float) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean cancelled -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context) -wangdaye.com.geometricweather.R$id: int widget_clock_day_time -androidx.lifecycle.extensions.R$drawable: int notification_icon_background -com.bumptech.glide.Registry$NoResultEncoderAvailableException: Registry$NoResultEncoderAvailableException(java.lang.Class) -androidx.lifecycle.MediatorLiveData: MediatorLiveData() -james.adaptiveicon.R$attr: int titleTextColor -com.turingtechnologies.materialscrollbar.R$attr: int displayOptions -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdt -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemTextAppearance -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_Solid -androidx.vectordrawable.animated.R$drawable: int notification_bg_normal_pressed -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void drain() -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource) -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean delayError -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_range_start_hint +okio.RealBufferedSource: java.lang.String readUtf8LineStrict(long) +wangdaye.com.geometricweather.R$id: int mtrl_calendar_selection_frame +cyanogenmod.media.MediaRecorder +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.preference.R$layout: int abc_search_view +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber,java.util.concurrent.atomic.AtomicReference) +wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +com.google.android.material.R$attr: int touchAnchorId +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: java.util.concurrent.atomic.AtomicInteger wip +james.adaptiveicon.R$styleable: int SearchView_iconifiedByDefault +james.adaptiveicon.R$styleable: int ViewBackgroundHelper_android_background +wangdaye.com.geometricweather.R$color: int design_default_color_surface +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property AqiIndex +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constrainedWidth +wangdaye.com.geometricweather.R$attr: int chipStrokeWidth +cyanogenmod.providers.CMSettings$Global: android.net.Uri getUriFor(java.lang.String) +com.amap.api.location.AMapLocation: java.lang.String f +cyanogenmod.externalviews.ExternalView: void executeQueue() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Headline +com.jaredrummler.android.colorpicker.R$string: R$string() +wangdaye.com.geometricweather.R$id: int mtrl_child_content_container +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar_Colored +cyanogenmod.themes.IThemeChangeListener$Stub: IThemeChangeListener$Stub() +cyanogenmod.util.ColorUtils: ColorUtils() +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: ObservableMergeWithMaybe$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +com.amap.api.location.AMapLocation: void setFixLastLocation(boolean) +com.xw.repo.bubbleseekbar.R$color: int ripple_material_light +androidx.appcompat.R$style: int Widget_AppCompat_Spinner_Underlined +cyanogenmod.app.CMStatusBarManager: android.content.Context mContext +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setLineColor(int) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderFetchTimeout +okhttp3.internal.cache.DiskLruCache$Entry: void setLengths(java.lang.String[]) +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMargins +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_queryHint +androidx.constraintlayout.widget.R$styleable: int Transition_autoTransition +okhttp3.internal.http2.Http2Writer: okio.BufferedSink sink +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: int UnitType +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherCode +io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler,boolean,int) +wangdaye.com.geometricweather.R$integer: R$integer() +androidx.core.R$id: int accessibility_custom_action_27 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedHeightMinor +com.google.android.material.R$id: int pathRelative +androidx.fragment.app.FragmentTabHost: FragmentTabHost(android.content.Context) +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortRealFeeTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabBarStyle +androidx.fragment.app.Fragment +androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_percent +wangdaye.com.geometricweather.R$dimen: int widget_standard_weather_icon_size +com.amap.api.fence.GeoFence: java.lang.String c +wangdaye.com.geometricweather.R$style: int Base_AlertDialog_AppCompat +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: java.util.List timelapsItems +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_ON_NEW_REQUEST +io.reactivex.internal.queue.SpscArrayQueue: void soProducerIndex(long) +com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$style: int Widget_AppCompat_Button_Small +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean cancelled +com.turingtechnologies.materialscrollbar.R$integer: int show_password_duration +okhttp3.CertificatePinner: java.util.Set pins +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat +okhttp3.HttpUrl: java.lang.String encodedUsername() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.List value +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_addProfile +androidx.preference.R$dimen: int abc_button_inset_vertical_material +androidx.viewpager.R$styleable: int GradientColor_android_centerY +com.turingtechnologies.materialscrollbar.R$attr: int tabMode +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int limit +android.didikee.donate.R$styleable: int SearchView_voiceIcon +androidx.preference.R$color: int bright_foreground_inverse_material_dark +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.constraintlayout.widget.R$attr: int actionOverflowMenuStyle +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +com.google.android.material.R$attr: int listPreferredItemHeightLarge +com.google.android.material.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +okhttp3.internal.http.HttpMethod: boolean permitsRequestBody(java.lang.String) +androidx.hilt.lifecycle.R$dimen +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: void run() +wangdaye.com.geometricweather.R$attr: int popupTheme +com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.Typeface getCollapsedTitleTypeface() +androidx.swiperefreshlayout.R$drawable: int notification_bg_low_normal +androidx.preference.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$attr: int dividerPadding +androidx.lifecycle.ComputableLiveData$2 +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: double lon +wangdaye.com.geometricweather.R$drawable: int notification_bg +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onScreenTurnedOn() +cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,int,int) +com.google.android.material.R$styleable: int[] ImageFilterView +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int OTHER_STATE_CONSUMED_OR_EMPTY +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$StreamTimeout writeTimeout +james.adaptiveicon.R$styleable: int AppCompatTheme_dialogCornerRadius +com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.animation.MotionSpec getHideMotionSpec() +androidx.hilt.R$id: int accessibility_custom_action_16 +androidx.vectordrawable.animated.R$id: int line1 io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.FlowableEmitter serialize() -wangdaye.com.geometricweather.R$attr: int homeAsUpIndicator -android.didikee.donate.R$drawable: int abc_textfield_search_activated_mtrl_alpha -wangdaye.com.geometricweather.R$attr: int thickness -androidx.constraintlayout.helper.widget.Flow: void setOrientation(int) -james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.background.receiver.widget.AbstractWidgetProvider -androidx.preference.R$attr: int actionModeCopyDrawable -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_switchTextOn -com.jaredrummler.android.colorpicker.R$styleable: int Preference_isPreferenceVisible -wangdaye.com.geometricweather.R$styleable: int FragmentContainerView_android_tag -androidx.viewpager.R$id: int title -com.turingtechnologies.materialscrollbar.R$id: int list_item -wangdaye.com.geometricweather.R$attr: int itemBackground -james.adaptiveicon.R$styleable: int MenuItem_actionLayout -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItem -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.R$styleable: int MaterialButton_backgroundTint -android.didikee.donate.R$styleable: int SearchView_searchHintIcon -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource[],io.reactivex.functions.Function) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String so2Desc -com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String aqiText +android.didikee.donate.R$styleable: int AppCompatTheme_seekBarStyle +okhttp3.Dispatcher: java.util.List queuedCalls() +cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder() +com.google.android.material.R$layout: int abc_screen_simple_overlay_action_mode +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingEnd +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_CompactMenu +androidx.appcompat.widget.AlertDialogLayout: AlertDialogLayout(android.content.Context) +wangdaye.com.geometricweather.R$attr: int tabIconTint wangdaye.com.geometricweather.R$styleable: int OnSwipe_maxAcceleration -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float ice -org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType[] values() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_23 -okhttp3.internal.http2.PushObserver$1: boolean onData(int,okio.BufferedSource,int,boolean) -androidx.transition.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.R$styleable: int[] AppBarLayout -androidx.appcompat.widget.SwitchCompat: void setTextOn(java.lang.CharSequence) -com.xw.repo.bubbleseekbar.R$id: int none -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetRight -androidx.viewpager.R$color -androidx.activity.R$styleable: int FontFamily_fontProviderPackage -com.jaredrummler.android.colorpicker.R$attr: int defaultQueryHint -com.google.android.material.R$color: int abc_primary_text_disable_only_material_dark -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -cyanogenmod.profiles.RingModeSettings: void setValue(java.lang.String) -cyanogenmod.themes.IThemeService: void rebuildResourceCache() -wangdaye.com.geometricweather.R$string: int mtrl_picker_save -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float so2 -com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetBottom -com.bumptech.glide.integration.okhttp.R$id: int italic -androidx.coordinatorlayout.R$style -com.google.android.material.R$styleable: int FontFamilyFont_android_ttcIndex -okio.Buffer: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) -com.google.android.material.R$id: int shortcut -wangdaye.com.geometricweather.R$attr: int behavior_autoShrink -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf -james.adaptiveicon.R$styleable: int SwitchCompat_thumbTint -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAVIGATION_BAR_MENU_ARROW_KEYS_VALIDATOR -androidx.customview.R$id: int action_image -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_registerThermalListener -com.turingtechnologies.materialscrollbar.R$attr: int fontWeight +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase moonPhase +com.bumptech.glide.integration.okhttp.R$attr: int coordinatorLayoutStyle +com.google.android.material.R$attr: int dividerPadding +wangdaye.com.geometricweather.R$dimen: int abc_alert_dialog_button_bar_height +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void complete() +androidx.appcompat.R$dimen: int tooltip_precise_anchor_threshold +androidx.dynamicanimation.R$styleable: int GradientColor_android_endColor +okhttp3.internal.http1.Http1Codec: okio.Sink createRequestBody(okhttp3.Request,long) +wangdaye.com.geometricweather.R$styleable: int FlowLayout_itemSpacing +androidx.preference.R$dimen: int abc_text_size_caption_material +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogIcon +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +com.google.android.material.R$styleable: int MenuItem_android_id +androidx.vectordrawable.R$drawable: int notification_template_icon_bg +androidx.preference.R$styleable: int FontFamily_fontProviderAuthority +androidx.lifecycle.SavedStateHandle$1: android.os.Bundle saveState() +com.amap.api.fence.GeoFenceClient: void setGeoFenceAble(java.lang.String,boolean) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.R$animator: int weather_haze_1 +android.didikee.donate.R$attr: int logoDescription +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer +androidx.hilt.lifecycle.R$styleable: int FragmentContainerView_android_tag +androidx.constraintlayout.widget.R$attr: int flow_lastVerticalBias +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_percent +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_function_shortcut_label +androidx.appcompat.widget.AppCompatRadioButton: android.content.res.ColorStateList getSupportBackgroundTintList() +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory getEdgeEffectFactory() +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption clone() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: void setUnit(java.lang.String) +com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Light +androidx.preference.R$color: int accent_material_light +wangdaye.com.geometricweather.R$dimen: int item_touch_helper_swipe_escape_velocity +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder callTimeout(java.time.Duration) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase getMoonPhase() +com.turingtechnologies.materialscrollbar.R$styleable: int[] TabItem +androidx.constraintlayout.widget.R$attr: int drawableLeftCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: AccuCurrentResult$Wind$Speed$Metric() +androidx.preference.R$styleable: int ActionBar_hideOnContentScroll +com.turingtechnologies.materialscrollbar.R$attr: int paddingBottomNoButtons +androidx.constraintlayout.motion.widget.MotionLayout: void setOnHide(float) +wangdaye.com.geometricweather.R$attr: int autoSizeTextType +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: ObservableConcatMapSingle$ConcatMapSingleMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,io.reactivex.internal.util.ErrorMode) +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemTitle(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource CN +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric Metric +com.google.android.material.R$attr: int badgeTextColor +com.jaredrummler.android.colorpicker.R$id: int uniform +androidx.constraintlayout.widget.R$id: int list_item +androidx.transition.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date getFrom() +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$layout: int preference_widget_switch_compat +okio.Buffer: okio.Buffer clone() +wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Panel +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder addConverterFactory(retrofit2.Converter$Factory) +androidx.preference.R$drawable: int abc_list_focused_holo +com.xw.repo.bubbleseekbar.R$drawable: int tooltip_frame_light +james.adaptiveicon.R$styleable: int TextAppearance_fontFamily +wangdaye.com.geometricweather.R$color: int mtrl_chip_surface_color +com.google.android.material.R$style: int Base_Widget_AppCompat_ListMenuView +retrofit2.RequestFactory$Builder: okhttp3.MediaType contentType +io.reactivex.observers.DisposableObserver: boolean isDisposed() +com.amap.api.location.AMapLocation$1: AMapLocation$1() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getO3() +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginStart +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable +androidx.work.R$styleable: int ColorStateListItem_android_alpha +okio.BufferedSource: long indexOf(byte,long) +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle +cyanogenmod.weather.WeatherInfo$Builder: long mTimestamp +cyanogenmod.platform.R$integer +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Title +cyanogenmod.externalviews.ExternalView: void onActivityDestroyed(android.app.Activity) +androidx.appcompat.R$attr: int menu +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetRight +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String ShortPhrase +com.google.android.material.R$attr: int buttonStyleSmall +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: cyanogenmod.weatherservice.IWeatherProviderServiceClient asInterface(android.os.IBinder) +androidx.viewpager.R$drawable: int notification_bg_low +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean delayError +io.reactivex.internal.subscribers.StrictSubscriber: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int MenuView_android_headerBackground +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather weather +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial() +wangdaye.com.geometricweather.R$styleable: int ArcProgress_text_color +wangdaye.com.geometricweather.R$string: int settings_notification_hide_in_lockScreen_on +androidx.fragment.R$id: int action_text +com.google.android.material.R$dimen: int abc_text_size_title_material +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex +wangdaye.com.geometricweather.R$attr: int actionModePopupWindowStyle +com.google.android.material.R$style: int Theme_MaterialComponents_Light_DarkActionBar +com.google.android.material.R$dimen: int mtrl_navigation_item_icon_size +androidx.appcompat.R$attr: int preserveIconSpacing +wangdaye.com.geometricweather.R$string: int feedback_view_style +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +com.github.rahatarmanahmed.cpv.CircularProgressView$2: CircularProgressView$2(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +com.google.gson.stream.JsonScope: int EMPTY_DOCUMENT +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String admin +androidx.vectordrawable.animated.R$id: int title +okhttp3.ConnectionPool: long cleanup(long) +androidx.preference.R$style: int Base_V21_Theme_AppCompat_Dialog +cyanogenmod.power.PerformanceManager: java.lang.String POWER_PROFILE_CHANGED +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: double speed +androidx.constraintlayout.widget.R$attr: int spinnerStyle +wangdaye.com.geometricweather.R$attr: int alphabeticModifiers +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotationY +androidx.recyclerview.R$attr +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int TROPICAL_STORM +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +io.reactivex.Observable: io.reactivex.Observable onErrorResumeNext(io.reactivex.functions.Function) +com.google.android.material.R$layout: int design_navigation_item_header +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_queryBackground +wangdaye.com.geometricweather.R$dimen: int tooltip_corner_radius +org.greenrobot.greendao.AbstractDao: java.util.List loadAllFromCursor(android.database.Cursor) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: double Value +com.google.android.material.R$attr: int flow_wrapMode +wangdaye.com.geometricweather.R$id: int progress_circular +androidx.appcompat.R$style: int TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Chip +cyanogenmod.app.ILiveLockScreenManagerProvider: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +okhttp3.internal.cache2.FileOperator: java.nio.channels.FileChannel fileChannel +retrofit2.ParameterHandler$FieldMap +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstHorizontalStyle +androidx.appcompat.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +wangdaye.com.geometricweather.common.basic.models.weather.Temperature +com.jaredrummler.android.colorpicker.R$style: int Preference_Category +androidx.appcompat.R$styleable: int[] AppCompatImageView +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onComplete() +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.R$styleable: int Slider_trackColorActive +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: AccuCurrentResult$Pressure() +okhttp3.internal.cache.DiskLruCache$Entry: void writeLengths(okio.BufferedSink) +retrofit2.Utils$GenericArrayTypeImpl: boolean equals(java.lang.Object) +androidx.appcompat.app.AppCompatDelegateImpl$ListMenuDecorView +android.didikee.donate.R$dimen: R$dimen() +wangdaye.com.geometricweather.R$font: int product_sans_bold_italic +androidx.preference.EditTextPreference: EditTextPreference(android.content.Context,android.util.AttributeSet) +androidx.appcompat.widget.Toolbar: void setCollapseIcon(int) +cyanogenmod.app.ILiveLockScreenManager: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +androidx.appcompat.R$style: int Widget_AppCompat_Button_Small +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_motionStagger +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_HOMESCREEN +okio.Buffer: okio.Buffer writeLong(long) +okhttp3.internal.http.HttpDate: java.lang.ThreadLocal STANDARD_DATE_FORMAT +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_disabled_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerY +androidx.preference.R$id: int expanded_menu +com.google.android.material.R$dimen: int material_filled_edittext_font_1_3_padding_bottom +cyanogenmod.app.Profile: java.util.ArrayList mSecondaryUuids +okio.GzipSink: boolean closed +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: CNWeatherResult$WeatherX() +com.xw.repo.bubbleseekbar.R$dimen: int notification_media_narrow_margin +okhttp3.internal.http2.Http2Connection$7: void execute() +com.google.android.material.chip.ChipGroup: void setChipSpacingResource(int) +com.jaredrummler.android.colorpicker.R$id +wangdaye.com.geometricweather.R$styleable: int CardView_cardUseCompatPadding +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textColorSearchUrl +wangdaye.com.geometricweather.R$id: int container_main_aqi_title +androidx.viewpager.R$dimen: int compat_button_padding_vertical_material +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type valueOf(java.lang.String) +androidx.loader.R$styleable: int GradientColorItem_android_color +com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_thumb_material +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView getTrendItemView() +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_creator +com.google.android.material.R$attr: int radioButtonStyle +com.amap.api.location.APSService: void onCreate(android.content.Context) +androidx.customview.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.R$color: int design_fab_stroke_end_outer_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWeatherEnd(java.lang.String) +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog_MinWidth +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionDropDownStyle +io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$id: int search_plate +androidx.appcompat.R$style: int Widget_AppCompat_Spinner_DropDown +okhttp3.internal.http2.Http2Stream: java.util.Deque headersQueue +cyanogenmod.profiles.ConnectionSettings: boolean isOverride() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA +com.bumptech.glide.integration.okhttp.R$id: int chronometer +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf +okhttp3.Cookie: okhttp3.Cookie parse(long,okhttp3.HttpUrl,java.lang.String) +android.didikee.donate.R$layout: int abc_action_menu_item_layout +androidx.core.R$styleable: int FontFamily_fontProviderQuery +com.google.android.material.R$attr: int flow_firstVerticalBias +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onNext(java.lang.Object) +com.jaredrummler.android.colorpicker.R$attr: int windowMinWidthMajor +com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabBar +androidx.lifecycle.LifecycleRegistry: void moveToState(androidx.lifecycle.Lifecycle$State) +wangdaye.com.geometricweather.R$attr: int circularRadius +okhttp3.internal.http2.Settings: int size() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: org.reactivestreams.Subscription upstream +com.google.android.material.R$styleable: int Constraint_pathMotionArc +androidx.legacy.coreutils.R$id: int line3 +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_clear +com.google.android.material.bottomnavigation.BottomNavigationView: void setElevation(float) +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean() +com.google.android.material.R$color: int tooltip_background_light +okio.Buffer: okio.BufferedSink emit() +androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Tooltip +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light +android.didikee.donate.R$style: int Theme_AppCompat_Dialog_Alert +com.google.android.material.R$color: int cardview_shadow_end_color +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: long serialVersionUID +com.google.android.material.R$attr: int checkedChip +androidx.preference.R$attr: int subMenuArrow +wangdaye.com.geometricweather.R$bool: int abc_action_bar_embed_tabs +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_APP_SWITCH_ACTION_VALIDATOR +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Info +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DarkActionBar +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs indexs +androidx.constraintlayout.widget.R$attr: int titleMarginTop +androidx.appcompat.R$layout: int abc_tooltip +android.didikee.donate.R$id: int right_icon +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onComplete() +androidx.appcompat.widget.SearchView: int getSuggestionCommitIconResId() +androidx.appcompat.R$color: int ripple_material_light +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setNo2(java.lang.Float) +androidx.vectordrawable.R$id: R$id() +androidx.viewpager2.R$styleable: int FontFamily_fontProviderPackage +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_4_material +wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +cyanogenmod.weather.CMWeatherManager: android.os.Handler mHandler +okio.Buffer: okio.BufferedSink writeUtf8(java.lang.String,int,int) +com.google.android.material.R$styleable: int Toolbar_contentInsetEnd +androidx.drawerlayout.R$id: int notification_background +wangdaye.com.geometricweather.db.entities.LocationEntity +com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_square_large +retrofit2.OkHttpCall$1: void callFailure(java.lang.Throwable) +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type[] getActualTypeArguments() +com.google.android.material.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent valueOf(java.lang.String) +wangdaye.com.geometricweather.R$layout: int widget_day_week_symmetry +androidx.vectordrawable.R$id: int accessibility_custom_action_29 +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_FixedSize_Bridge +wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_background_color +wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_height +cyanogenmod.media.MediaRecorder$AudioSource: MediaRecorder$AudioSource() +cyanogenmod.profiles.AirplaneModeSettings$1: AirplaneModeSettings$1() +okio.InflaterSource: okio.BufferedSource source +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getUrl() +androidx.preference.R$attr: int customNavigationLayout +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeBackground +wangdaye.com.geometricweather.R$attr: int tabUnboundedRipple +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animDuration +androidx.hilt.R$styleable: int GradientColor_android_startY +androidx.work.R$id: int accessibility_custom_action_3 +wangdaye.com.geometricweather.R$attr: int autoSizeMinTextSize +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableLeft +androidx.constraintlayout.widget.R$id: int src_atop +wangdaye.com.geometricweather.background.service.CMWeatherProviderService +org.greenrobot.greendao.AbstractDao: long executeInsert(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement,boolean) +com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context,android.util.AttributeSet,int) +com.google.android.gms.base.R$id: int standard +androidx.preference.R$styleable: int AppCompatTheme_colorAccent com.google.android.material.R$color: int background_material_dark -com.google.android.material.R$dimen: int mtrl_btn_pressed_z -okhttp3.internal.cache.CacheInterceptor$1: void close() -com.google.android.material.R$styleable: int[] ShapeableImageView -wangdaye.com.geometricweather.R$drawable: int notif_temp_45 -androidx.preference.R$color: int abc_tint_edittext -androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context) -com.google.gson.JsonParseException -com.jaredrummler.android.colorpicker.R$attr: int homeLayout -androidx.preference.R$dimen -androidx.appcompat.widget.SwitchCompat: void setTrackResource(int) -androidx.swiperefreshlayout.R$dimen: int compat_button_padding_horizontal_material -androidx.constraintlayout.widget.R$styleable: int MotionLayout_motionDebug -androidx.fragment.R$id: int accessibility_custom_action_26 -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status IN_PROGRESS -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: MfCurrentResult$Observation() -com.google.android.material.bottomappbar.BottomAppBar: androidx.appcompat.widget.ActionMenuView getActionMenuView() -androidx.constraintlayout.widget.R$attr: int motion_triggerOnCollision -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleEnabled(boolean) -wangdaye.com.geometricweather.R$drawable: int clock_hour_light -androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX() -androidx.constraintlayout.widget.R$id: int tag_transition_group -okhttp3.internal.http2.Http2Connection$ReaderRunnable$3 -androidx.lifecycle.LiveData$ObserverWrapper: LiveData$ObserverWrapper(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) -wangdaye.com.geometricweather.R$dimen: int abc_text_size_menu_material -androidx.activity.R$id: int accessibility_custom_action_22 -okhttp3.internal.http2.PushObserver: okhttp3.internal.http2.PushObserver CANCEL -androidx.preference.R$attr: int dialogPreferredPadding -androidx.appcompat.widget.ViewStubCompat: android.view.LayoutInflater getLayoutInflater() -com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_alpha -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric -androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int MenuView_preserveIconSpacing -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_horizontalDivider -wangdaye.com.geometricweather.R$string: int aqi_6 -wangdaye.com.geometricweather.R$bool: int enable_system_job_service_default -james.adaptiveicon.R$attr: int expandActivityOverflowButtonDrawable -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getDesiredWidth() -androidx.appcompat.R$attr: int windowMinWidthMajor -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_headline_material -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isSubActive -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onModeChanged(boolean) -io.reactivex.internal.util.ExceptionHelper$Termination: java.lang.Throwable fillInStackTrace() -com.google.android.material.R$drawable: int abc_ic_star_black_48dp -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: int count -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: org.reactivestreams.Subscriber downstream -wangdaye.com.geometricweather.R$styleable: int[] MockView -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +androidx.appcompat.widget.AppCompatImageButton: void setImageResource(int) +com.google.android.material.R$attr: int buttonCompat +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onComplete() +androidx.hilt.work.R$styleable: int GradientColor_android_centerY +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMenuItemView_android_minWidth +androidx.transition.R$attr: int fontProviderFetchStrategy +android.didikee.donate.R$dimen: int abc_search_view_preferred_width +wangdaye.com.geometricweather.R$layout: int expand_button +androidx.vectordrawable.animated.R$string: R$string() +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_icon +io.reactivex.Observable: io.reactivex.Maybe singleElement() +androidx.viewpager2.R$styleable: int GradientColor_android_endX +androidx.swiperefreshlayout.R$style: R$style() +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType WEBP +wangdaye.com.geometricweather.R$mipmap: int ic_launcher_round +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextView +okhttp3.logging.HttpLoggingInterceptor$Logger: okhttp3.logging.HttpLoggingInterceptor$Logger DEFAULT +androidx.multidex.MultiDexExtractor$ExtractedDex: long crc +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text +com.google.android.material.R$styleable: int Layout_minWidth +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxBackgroundColor +android.didikee.donate.R$styleable: int Toolbar_logoDescription +androidx.constraintlayout.widget.R$attr: int pivotAnchor +com.google.android.material.R$string: int mtrl_picker_date_header_unselected +com.google.android.material.R$id: int textinput_prefix_text +io.reactivex.Observable: io.reactivex.Observable onErrorReturn(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorFullWidth +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog +androidx.loader.R$integer: R$integer() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeMinTextSize +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_0 +androidx.preference.R$drawable: int abc_text_select_handle_right_mtrl_light +wangdaye.com.geometricweather.R$string: int key_widget_text +okhttp3.internal.cache.CacheStrategy: okhttp3.Request networkRequest +okio.Okio$2: okio.Timeout timeout() +androidx.constraintlayout.widget.R$layout: int abc_screen_toolbar +androidx.viewpager2.widget.ViewPager2: int getScrollState() +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mState +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dark +cyanogenmod.app.LiveLockScreenInfo$1: cyanogenmod.app.LiveLockScreenInfo createFromParcel(android.os.Parcel) +androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha +com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_pressed +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemBackground +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu +com.google.android.gms.common.api.ApiException +com.jaredrummler.android.colorpicker.ColorPreferenceCompat: ColorPreferenceCompat(android.content.Context,android.util.AttributeSet) +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void dispose() +com.google.android.material.R$attr: int colorError +com.google.android.material.R$string: int appbar_scrolling_view_behavior +com.google.gson.stream.JsonReader: int nextInt() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Tab +james.adaptiveicon.R$attr: int title +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: boolean delayError +okhttp3.internal.platform.AndroidPlatform: java.lang.Class sslParametersClass +com.google.android.material.R$id: int barrier +wangdaye.com.geometricweather.R$transition: int search_activity_shared_enter +org.greenrobot.greendao.DaoException: DaoException(java.lang.Throwable) +okhttp3.OkHttpClient: okhttp3.internal.cache.InternalCache internalCache +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility +android.didikee.donate.R$styleable: int ActionBar_logo +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +io.reactivex.internal.schedulers.AbstractDirectTask: boolean isDisposed() +com.google.android.material.R$attr: int drawableSize +com.google.android.material.R$attr: int titleMargins +com.google.android.material.slider.BaseSlider: int getAccessibilityFocusedVirtualViewId() +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintAnimationEnabled +okhttp3.internal.http2.Huffman: byte[] decode(byte[]) +james.adaptiveicon.R$drawable: int abc_dialog_material_background +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline6 +okio.Buffer: short readShort() +androidx.appcompat.R$styleable: int ActionBar_itemPadding +androidx.appcompat.R$attr: int tint +androidx.constraintlayout.widget.R$drawable: int abc_vector_test +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: void close() +okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeWithoutCheckedException(java.lang.Object,java.lang.Object[]) +androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_chainStyle +cyanogenmod.weather.CMWeatherManager +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Settings okHttpSettings +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.view.View onCreateView() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Medium +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShowMotionSpecResource(int) +wangdaye.com.geometricweather.R$styleable: int ListPreference_useSimpleSummaryProvider +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabText +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeBackground +com.xw.repo.bubbleseekbar.R$attr: int listChoiceBackgroundIndicator +james.adaptiveicon.R$id: int tabMode +com.xw.repo.bubbleseekbar.R$id: int customPanel +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItemSmall +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SearchView +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextColor +androidx.hilt.work.R$dimen: int notification_action_text_size +com.turingtechnologies.materialscrollbar.R$color: int notification_action_color_filter +com.google.android.material.R$attr: int gestureInsetBottomIgnored +androidx.appcompat.R$style: int TextAppearance_AppCompat_Tooltip +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +okhttp3.ConnectionSpec: ConnectionSpec(okhttp3.ConnectionSpec$Builder) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_toTopOf +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_switchPreferenceStyle +com.google.android.material.appbar.CollapsingToolbarLayout: int getCollapsedTitleGravity() +james.adaptiveicon.R$attr: int preserveIconSpacing +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_android_enabled +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String to +com.google.android.material.R$dimen: int design_fab_size_normal +com.google.gson.stream.JsonReader: void push(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: java.lang.String Unit +okhttp3.internal.ws.RealWebSocket: java.util.ArrayDeque pongQueue +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$array: int distance_unit_voices +androidx.lifecycle.SavedStateViewModelFactory: java.lang.Class[] VIEWMODEL_SIGNATURE +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListPopupWindow +androidx.appcompat.R$styleable: int[] ActionMode +com.turingtechnologies.materialscrollbar.R$id: int stretch +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindChillTemperature(java.lang.Integer) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder host(java.lang.String) +androidx.transition.R$drawable: int notification_action_background +androidx.appcompat.R$attr: int navigationIcon +wangdaye.com.geometricweather.R$drawable: int weather_clear_day +com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context,android.util.AttributeSet) +com.google.android.material.checkbox.MaterialCheckBox: android.content.res.ColorStateList getMaterialThemeColorsTintList() +io.reactivex.internal.subscribers.DeferredScalarSubscriber: DeferredScalarSubscriber(org.reactivestreams.Subscriber) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_30 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean yesterday +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline6 +io.reactivex.Observable: io.reactivex.Observable take(long) +androidx.appcompat.view.menu.StandardMenuPopup +androidx.constraintlayout.widget.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeFillColor +wangdaye.com.geometricweather.R$attr: int actionProviderClass +androidx.appcompat.widget.AppCompatImageView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +okio.Options +okio.InflaterSource: java.util.zip.Inflater inflater +androidx.recyclerview.widget.RecyclerView: int getMinFlingVelocity() +androidx.preference.R$id: int up +androidx.hilt.R$styleable: int FontFamilyFont_ttcIndex +androidx.preference.R$attr: int searchViewStyle +android.didikee.donate.R$string: int abc_searchview_description_voice +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex tomorrow +androidx.constraintlayout.widget.R$attr: int buttonCompat +androidx.fragment.R$style: int TextAppearance_Compat_Notification_Title +androidx.appcompat.resources.R$dimen: int notification_action_icon_size +com.google.android.material.R$attr: int cardForegroundColor +com.google.gson.stream.JsonReader: void consumeNonExecutePrefix() +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox +okhttp3.internal.ws.WebSocketWriter: WebSocketWriter(boolean,okio.BufferedSink,java.util.Random) +androidx.lifecycle.extensions.R$id: int accessibility_action_clickable_span +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Small +okhttp3.Dispatcher: int getMaxRequests() +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$string: int retrofit +com.xw.repo.bubbleseekbar.R$dimen: int notification_top_pad +androidx.viewpager2.R$id: int normal +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: int WeatherIcon +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableCompatState: int getChangingConfigurations() +wangdaye.com.geometricweather.R$id: int slide +androidx.constraintlayout.widget.R$styleable: int[] PropertySet +okio.ByteString: int hashCode() +wangdaye.com.geometricweather.main.Hilt_MainActivity +android.didikee.donate.R$layout: int abc_select_dialog_material +androidx.swiperefreshlayout.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_id +android.didikee.donate.R$color: int dim_foreground_disabled_material_light +com.xw.repo.bubbleseekbar.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.settings.fragments.AppearanceSettingsFragment: AppearanceSettingsFragment() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DialogWhenLarge +androidx.core.app.RemoteActionCompatParcelizer: androidx.core.app.RemoteActionCompat read(androidx.versionedparcelable.VersionedParcel) +androidx.core.widget.NestedScrollView: int getScrollRange() +androidx.preference.R$style: int Base_Theme_AppCompat_Light +retrofit2.BuiltInConverters$ToStringConverter +cyanogenmod.weather.CMWeatherManager$1$1: void run() +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_black +okio.HashingSource: okio.ByteString hash() +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: void onResponse(retrofit2.Call,retrofit2.Response) +com.google.android.material.R$styleable: int KeyPosition_transitionEasing +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +androidx.constraintlayout.widget.R$attr: int titleMargin +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory create() +com.google.gson.stream.JsonReader: int peeked +com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getIndicatorHeight() +com.turingtechnologies.materialscrollbar.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: double Value +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_tileMode +okhttp3.EventListener: void secureConnectEnd(okhttp3.Call,okhttp3.Handshake) +wangdaye.com.geometricweather.R$styleable: int RecyclerView_layoutManager +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer +com.xw.repo.bubbleseekbar.R$id: int default_activity_button +androidx.vectordrawable.R$id: int time +com.google.android.material.R$string: int fab_transformation_scrim_behavior +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_framePosition +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int START +com.google.android.material.R$dimen: int design_bottom_navigation_shadow_height +androidx.constraintlayout.widget.R$attr: int switchPadding +okio.Options: int size() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX) com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -io.reactivex.internal.util.NotificationLite$DisposableNotification: NotificationLite$DisposableNotification(io.reactivex.disposables.Disposable) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int INTERRUPTING -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: long serialVersionUID -james.adaptiveicon.R$attr: int queryHint -com.google.android.material.R$attr: int endIconContentDescription -wangdaye.com.geometricweather.R$styleable: int MenuItem_actionViewClass -com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_recyclerView -retrofit2.RequestFactory: okhttp3.MediaType contentType -androidx.appcompat.R$string: R$string() -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -wangdaye.com.geometricweather.R$attr: int layout -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: boolean isDisposed() -com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_CheckBox -com.jaredrummler.android.colorpicker.R$attr: int listMenuViewStyle -android.didikee.donate.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.R$dimen: int hint_pressed_alpha_material_light -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setIconTintList(android.content.res.ColorStateList) -androidx.core.R$layout: int notification_action -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getBrandId() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: double Value -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_maxActionInlineWidth -wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemTextAppearance -com.google.android.material.R$style: int Widget_AppCompat_TextView_SpinnerItem -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$styleable: int Toolbar_maxButtonHeight -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight -okhttp3.internal.cache.DiskLruCache$2: void onException(java.io.IOException) -androidx.loader.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: double Value -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_off_mtrl_alpha -androidx.appcompat.widget.Toolbar: void setTitleMarginEnd(int) -cyanogenmod.externalviews.IExternalViewProvider: void onPause() -cyanogenmod.profiles.BrightnessSettings$1 -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_27 -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: ObservableWindow$WindowSkipObserver(io.reactivex.Observer,long,long,int) -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleTextAppearance -androidx.activity.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX() -androidx.preference.R$attr: int fontVariationSettings -okhttp3.internal.cache.CacheInterceptor$1: okhttp3.internal.cache.CacheRequest val$cacheRequest -com.jaredrummler.android.colorpicker.R$id: int up -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.MinutelyEntity) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_cardForegroundColor -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void setResource(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: boolean hasPermissions(android.content.Context) -cyanogenmod.themes.IThemeService: void removeUpdates(cyanogenmod.themes.IThemeChangeListener) -james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -androidx.appcompat.R$color: int secondary_text_disabled_material_light -com.jaredrummler.android.colorpicker.R$attr: int splitTrack -com.google.android.material.R$styleable: int StateListDrawable_android_constantSize -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver) -wangdaye.com.geometricweather.main.dialogs.BackgroundLocationDialog -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotationY -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric -com.google.android.material.R$styleable: int Constraint_constraint_referenced_ids -wangdaye.com.geometricweather.R$styleable: int[] MaterialScrollBar -androidx.appcompat.R$attr: int windowFixedHeightMinor -androidx.core.app.JobIntentService: JobIntentService() -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.LocationEntityDao getLocationEntityDao() -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColor -com.google.android.material.R$dimen: int abc_dialog_fixed_height_minor -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark_normal -android.didikee.donate.R$style: int Widget_AppCompat_ActionButton_Overflow -com.google.gson.stream.JsonWriter -androidx.preference.R$drawable: int abc_textfield_search_default_mtrl_alpha -androidx.coordinatorlayout.R$id: int accessibility_custom_action_25 -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: double mHigh -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderAuthority -com.google.android.material.R$dimen: int mtrl_card_corner_radius -cyanogenmod.app.ThemeVersion$ComponentVersion: java.lang.String getName() -okhttp3.internal.http2.Http2Connection$Listener: void onSettings(okhttp3.internal.http2.Http2Connection) -androidx.activity.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit getInstance(java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: java.util.List timelapsItems -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_title_divider_material -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_android_textAppearance -androidx.appcompat.R$styleable: int Toolbar_title -androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView: void setSelector(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$attr: int max -wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitationProbability -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: java.util.List getValue() -okhttp3.MediaType: java.lang.String mediaType -retrofit2.ParameterHandler$1: retrofit2.ParameterHandler this$0 -com.bumptech.glide.Priority: com.bumptech.glide.Priority IMMEDIATE -androidx.viewpager.R$integer: int status_bar_notification_info_maxnum -com.jaredrummler.android.colorpicker.R$layout -androidx.constraintlayout.widget.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void dispose() -cyanogenmod.app.CMContextConstants$Features: java.lang.String STATUSBAR -androidx.transition.R$dimen -okio.HashingSink -okio.Buffer: long readAll(okio.Sink) -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.lang.String selected -androidx.appcompat.R$anim: int abc_tooltip_exit -androidx.viewpager2.R$styleable: int FontFamilyFont_fontWeight -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_COLOR_AUTO -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarSize -androidx.core.R$dimen: int compat_notification_large_icon_max_height -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_CBC_SHA -okhttp3.internal.http2.Http2Codec: java.lang.String TE -androidx.viewpager.R$style: int Widget_Compat_NotificationActionContainer -cyanogenmod.providers.CMSettings$System: java.lang.String BACK_WAKE_SCREEN -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX getBrandInfo() -wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_scrollView -com.google.android.material.circularreveal.cardview.CircularRevealCardView: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog -androidx.preference.R$attr: int tickMarkTint -okio.Buffer: long read(okio.Buffer,long) -wangdaye.com.geometricweather.common.basic.models.weather.Temperature -retrofit2.CallAdapter -com.google.android.material.R$style: int TextAppearance_AppCompat_Subhead_Inverse -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void drainLoop() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: int requestFusion(int) +com.bumptech.glide.R$attr: int layout_keyline +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean fused +androidx.hilt.lifecycle.R$drawable: int notification_action_background +com.google.gson.stream.JsonReader: char[] NON_EXECUTE_PREFIX +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_popupTheme +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitle_inputLayout +android.didikee.donate.R$attr: int toolbarStyle +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_normalContainer +james.adaptiveicon.R$styleable: int TextAppearance_android_textFontWeight +androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchAnchorSide +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_WARNING_INDEX +com.google.android.material.R$drawable: int notify_panel_notification_icon_bg +com.bumptech.glide.R$attr: int fontProviderFetchStrategy +androidx.constraintlayout.widget.R$styleable: int SearchView_submitBackground +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.db.entities.HourlyEntity: HourlyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindTitle +wangdaye.com.geometricweather.remoteviews.config.Hilt_WeekWidgetConfigActivity +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +android.didikee.donate.R$styleable: int AppCompatTheme_windowMinWidthMinor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: double Value +okhttp3.internal.http2.Http2Connection$4: Http2Connection$4(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,java.util.List) +cyanogenmod.app.ProfileManager: boolean notificationGroupExists(java.lang.String) +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderQuery +androidx.lifecycle.Lifecycling$1 +androidx.preference.R$anim: int abc_slide_out_top +androidx.vectordrawable.animated.R$id: int accessibility_action_clickable_span +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +androidx.vectordrawable.R$attr: int fontWeight +io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.Observer) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.internal.util.AtomicThrowable errors +james.adaptiveicon.R$dimen: int hint_alpha_material_dark +androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_anchor +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf +com.google.android.material.R$attr: int paddingEnd +androidx.constraintlayout.widget.R$styleable: int Spinner_android_dropDownWidth +retrofit2.BuiltInConverters$RequestBodyConverter: java.lang.Object convert(java.lang.Object) +wangdaye.com.geometricweather.R$color: int colorRootDark_dark +com.amap.api.fence.DistrictItem: java.util.List getPolyline() +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalAlign +okhttp3.MultipartBody: okhttp3.MediaType MIXED +androidx.fragment.R$id: int accessibility_custom_action_21 +androidx.hilt.R$id: int accessibility_custom_action_2 +androidx.coordinatorlayout.R$dimen: int notification_big_circle_margin +com.google.android.material.R$styleable: int[] CustomAttribute +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherCode +cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getProfileByName(java.lang.String) +androidx.recyclerview.R$drawable: int notification_bg +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_SCREEN_ON_VALIDATOR +cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(android.os.Parcel) +okhttp3.Cache$CacheResponseBody: okhttp3.MediaType contentType() +androidx.appcompat.R$color: int background_floating_material_light +androidx.preference.R$attr: int tickMarkTintMode +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitationProbability +androidx.hilt.lifecycle.R$dimen: int notification_top_pad_large_text +cyanogenmod.themes.ThemeManager$2$1: cyanogenmod.themes.ThemeManager$2 this$1 +androidx.appcompat.R$dimen: int hint_alpha_material_dark +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void innerError(io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver,java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animDuration +com.google.android.material.R$layout: int mtrl_layout_snackbar +com.google.android.material.chip.Chip: void setTextAppearanceResource(int) +com.google.android.material.R$style: int TextAppearance_Design_Counter +retrofit2.converter.gson.GsonRequestBodyConverter: okhttp3.MediaType MEDIA_TYPE +androidx.constraintlayout.widget.R$dimen: int notification_media_narrow_margin +androidx.legacy.coreutils.R$dimen: int notification_small_icon_size_as_large +cyanogenmod.themes.ThemeManager +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LIVE_LOCK_SCREEN_PREVIEW +cyanogenmod.app.CustomTile$ExpandedStyle: android.widget.RemoteViews getContentViews() +androidx.appcompat.R$style: int Widget_AppCompat_Light_PopupMenu +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info info +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +com.google.android.material.R$styleable: int AppBarLayoutStates_state_lifted +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_id +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: int getChartTop() +james.adaptiveicon.R$attr: int subtitle +com.google.android.material.R$animator: int mtrl_extended_fab_show_motion_spec +wangdaye.com.geometricweather.R$color: int design_box_stroke_color +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_contentScrim +cyanogenmod.os.Build$CM_VERSION_CODES: Build$CM_VERSION_CODES() +androidx.preference.R$color: int material_grey_300 +com.jaredrummler.android.colorpicker.R$layout: int abc_action_menu_layout +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setRingtone(java.lang.String) +retrofit2.DefaultCallAdapterFactory$1: DefaultCallAdapterFactory$1(retrofit2.DefaultCallAdapterFactory,java.lang.reflect.Type,java.util.concurrent.Executor) +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow +cyanogenmod.weather.WeatherInfo: double access$602(cyanogenmod.weather.WeatherInfo,double) +wangdaye.com.geometricweather.R$styleable: int GradientColorItem_android_offset +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIconTintMode +com.google.android.material.R$attr: int constraints +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_min_width_major +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar_Indicator +androidx.customview.R$id: int action_text +com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusTopStart +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedIndex +androidx.core.R$id: int accessibility_custom_action_1 +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: int getPollenColor(android.content.Context,java.lang.Integer) +okhttp3.Address: javax.net.ssl.SSLSocketFactory sslSocketFactory() +com.google.android.material.slider.BaseSlider: int getThumbRadius() +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean isEmpty() +com.xw.repo.bubbleseekbar.R$attr: int dividerPadding +wangdaye.com.geometricweather.R$attr: int imageButtonStyle +androidx.core.R$id: int accessibility_custom_action_20 +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerColor +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onKeyguardShowing(boolean) +cyanogenmod.weather.RequestInfo: boolean access$702(cyanogenmod.weather.RequestInfo,boolean) +android.didikee.donate.R$styleable: int SearchView_android_maxWidth +wangdaye.com.geometricweather.R$styleable: int Badge_badgeGravity +cyanogenmod.weather.CMWeatherManager$1$1 +okhttp3.internal.platform.Platform: boolean isAndroid() +androidx.activity.R$attr: int fontProviderFetchStrategy +com.github.rahatarmanahmed.cpv.CircularProgressView: int color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: java.lang.String newX +cyanogenmod.providers.CMSettings$System: java.lang.String USE_EDGE_SERVICE_FOR_GESTURES +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$xml: int widget_trend_hourly +wangdaye.com.geometricweather.R$styleable: int[] ActionBarLayout +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_black +wangdaye.com.geometricweather.R$drawable: int ic_delete +androidx.preference.R$color: int primary_text_disabled_material_light +androidx.appcompat.R$styleable: int AppCompatImageView_tintMode +okhttp3.CertificatePinner$Pin: java.lang.String pattern +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long end +androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver: ForceStopRunnable$BroadcastReceiver() +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Title_Inverse +androidx.viewpager2.R$dimen: int item_touch_helper_swipe_escape_velocity +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String ALARM_STATE +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: void run() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setEn_US(java.lang.String) +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorViewAlpha(int) +androidx.appcompat.widget.AppCompatTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +cyanogenmod.externalviews.KeyguardExternalView$1: cyanogenmod.externalviews.KeyguardExternalView this$0 +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object getKey(java.lang.Object) +wangdaye.com.geometricweather.R$color: int material_grey_600 +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerX +androidx.lifecycle.extensions.R$id: int normal +com.google.android.material.R$attr: int actionModeFindDrawable +com.google.android.material.chip.ChipGroup: void setSingleSelection(boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String sunSet +okhttp3.OkHttpClient: int connectTimeoutMillis() +com.google.android.material.timepicker.ClockFaceView: ClockFaceView(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$color: int material_deep_teal_500 +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListPopupWindow +androidx.appcompat.R$anim: int abc_grow_fade_in_from_bottom +androidx.recyclerview.widget.RecyclerView: int getMaxFlingVelocity() +wangdaye.com.geometricweather.R$style: int spinner_item +com.turingtechnologies.materialscrollbar.R$attr: int dialogTheme +androidx.preference.R$id: int action_text +com.xw.repo.bubbleseekbar.R$attr: int actionBarWidgetTheme +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedWidthMinor() +cyanogenmod.hardware.CMHardwareManager: byte[] readPersistentBytes(java.lang.String) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind +androidx.lifecycle.extensions.R$id: int italic +com.jaredrummler.android.colorpicker.R$attr: int dialogMessage +com.google.gson.stream.JsonReader: boolean isLenient() +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getEndIconContentDescription() +androidx.recyclerview.R$drawable: int notification_bg_normal +com.turingtechnologies.materialscrollbar.R$layout: int abc_popup_menu_item_layout +com.xw.repo.bubbleseekbar.R$id: int list_item +com.amap.api.location.AMapLocation: int GPS_ACCURACY_BAD +android.didikee.donate.R$dimen: int abc_dialog_fixed_height_major +androidx.preference.R$style: int Widget_AppCompat_Light_SearchView +org.greenrobot.greendao.AbstractDao: boolean isEntityUpdateable() +androidx.appcompat.widget.SwitchCompat: void setTrackDrawable(android.graphics.drawable.Drawable) +androidx.preference.R$styleable: int AppCompatTextView_textLocale +androidx.preference.R$attr: int ttcIndex +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.functions.BiPredicate comparer +androidx.preference.R$attr: int fragment +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_entries +com.google.android.material.R$dimen: int abc_list_item_height_small_material +cyanogenmod.app.LiveLockScreenManager: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +com.google.android.material.R$attr: int layout_constraintTop_toTopOf +androidx.preference.R$dimen: int abc_text_size_subtitle_material_toolbar +androidx.vectordrawable.animated.R$drawable: R$drawable() +james.adaptiveicon.R$drawable: int abc_cab_background_top_mtrl_alpha +androidx.appcompat.R$style: int Widget_AppCompat_ButtonBar +wangdaye.com.geometricweather.wallpaper.LiveWallpaperConfigActivity +retrofit2.adapter.rxjava2.Result: retrofit2.adapter.rxjava2.Result error(java.lang.Throwable) +okhttp3.internal.connection.RouteSelector: java.util.List postponedRoutes +okhttp3.CipherSuite +androidx.preference.R$style: int Base_V7_Widget_AppCompat_EditText +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_android_enabled +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColor(int) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener +io.reactivex.internal.observers.BlockingObserver +androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_backgroundTint +androidx.preference.R$attr: int fontProviderAuthority +androidx.viewpager.R$dimen: int notification_large_icon_height +okhttp3.HttpUrl: java.util.List percentDecode(java.util.List,boolean) +wangdaye.com.geometricweather.R$dimen: int hint_alpha_material_dark +androidx.vectordrawable.animated.R$id: int forever +androidx.activity.R$attr: int fontWeight +io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier INSTANCE +com.xw.repo.bubbleseekbar.R$attr: int textAppearancePopupMenuHeader +androidx.preference.R$attr: int drawableLeftCompat +okhttp3.OkHttpClient: boolean followRedirects() +okhttp3.internal.http.HttpMethod: boolean requiresRequestBody(java.lang.String) +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +cyanogenmod.profiles.ConnectionSettings$1: ConnectionSettings$1() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$styleable: int Chip_android_ellipsize +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_alert +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight +okhttp3.internal.http2.Http2Connection$IntervalPingRunnable +cyanogenmod.providers.ThemesContract$ThemesColumns: ThemesContract$ThemesColumns() +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder eventListenerFactory(okhttp3.EventListener$Factory) +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay +com.google.android.material.R$attr: int textAppearanceSubtitle2 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalGap +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: long serialVersionUID +com.google.android.material.R$styleable: int Toolbar_navigationContentDescription +wangdaye.com.geometricweather.R$drawable: int notif_temp_81 +androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackgroundColor(int) +cyanogenmod.app.CustomTile$ExpandedItem: android.graphics.Bitmap itemBitmapResource +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date modificationDate +com.google.android.material.R$styleable: int Chip_closeIconEndPadding +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_dialog_btn_min_width +androidx.core.R$id: int accessibility_custom_action_18 +androidx.dynamicanimation.R$string: R$string() +com.google.android.material.R$styleable: int Insets_paddingBottomSystemWindowInsets +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX() +com.google.android.material.R$style: int Base_CardView +androidx.viewpager2.R$attr: int fontProviderPackage +james.adaptiveicon.R$attr: int divider +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_blackContainer +androidx.preference.ListPreference +com.google.gson.FieldNamingPolicy: java.lang.String upperCaseFirstLetter(java.lang.String) +androidx.preference.R$styleable: R$styleable() +retrofit2.http.Headers: java.lang.String[] value() +cyanogenmod.hardware.CMHardwareManager: int FEATURE_HIGH_TOUCH_SENSITIVITY +com.google.android.material.R$integer: int mtrl_btn_anim_duration_ms +com.google.android.material.bottomappbar.BottomAppBar: float getFabCradleRoundedCornerRadius() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2 +okhttp3.Interceptor$Chain: okhttp3.Request request() +io.reactivex.Observable: io.reactivex.Observable concatMapMaybe(io.reactivex.functions.Function,int) +com.google.android.material.R$id: int reverseSawtooth +okhttp3.internal.ws.RealWebSocket: int receivedPongCount() +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: ILiveLockScreenChangeListener$Stub() +wangdaye.com.geometricweather.db.entities.LocationEntity: float getLatitude() +cyanogenmod.providers.CMSettings$System: java.lang.String[] LEGACY_SYSTEM_SETTINGS +com.google.android.material.R$styleable: int KeyTrigger_triggerId +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animDuration +com.jaredrummler.android.colorpicker.R$attr: int persistent +com.google.android.material.slider.Slider: void setTickInactiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_29 +androidx.activity.R$styleable: int GradientColorItem_android_offset +okhttp3.HttpUrl: void namesAndValuesToQueryString(java.lang.StringBuilder,java.util.List) +okio.Buffer: long readDecimalLong() +cyanogenmod.themes.ThemeManager: android.os.Handler mHandler +io.reactivex.Observable: io.reactivex.Single toSortedList() +okhttp3.internal.http.HttpHeaders: okhttp3.Headers varyHeaders(okhttp3.Response) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon +retrofit2.SkipCallbackExecutorImpl: SkipCallbackExecutorImpl() +androidx.preference.R$attr: int listPreferredItemPaddingLeft +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_thumb_text +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int CountMinute +androidx.preference.R$dimen: int notification_subtext_size +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_DayTextView +androidx.preference.R$styleable: int Preference_title +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterOverflowTextColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric +androidx.legacy.coreutils.R$attr +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setImages(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean) +com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreference +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constrainedHeight +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onNext(java.lang.Object) +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_keylines +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.viewpager2.adapter.FragmentStateAdapter$FragmentMaxLifecycleEnforcer$3 +wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_toRightOf +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getHour(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +androidx.preference.R$drawable: int abc_ic_go_search_api_material +androidx.appcompat.R$style: int Widget_AppCompat_Button_Colored +androidx.swiperefreshlayout.R$style: int Widget_Compat_NotificationActionContainer +okhttp3.internal.http2.Http2Codec: okhttp3.internal.http2.Http2Stream stream +androidx.appcompat.resources.R$id: int accessibility_custom_action_28 +androidx.recyclerview.R$drawable: int notification_bg_low_pressed +androidx.legacy.coreutils.R$style +okio.Util: java.nio.charset.Charset UTF_8 +androidx.hilt.R$id: int accessibility_custom_action_11 +cyanogenmod.providers.CMSettings$DiscreteValueValidator: boolean validate(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign +com.google.gson.stream.JsonReader: void checkLenient() +androidx.constraintlayout.widget.R$styleable: int Toolbar_logoDescription +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: int getChartBottom() +androidx.hilt.work.R$attr: int fontVariationSettings +com.jaredrummler.android.colorpicker.R$styleable: int View_android_focusable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature +androidx.appcompat.R$styleable: int FontFamilyFont_fontStyle +androidx.legacy.coreutils.R$dimen: int compat_notification_large_icon_max_height +io.reactivex.internal.util.NotificationLite: boolean accept(java.lang.Object,io.reactivex.Observer) +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: java.lang.String icon +com.google.android.material.appbar.AppBarLayout: int getUpNestedPreScrollRange() +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_height +james.adaptiveicon.R$attr: int progressBarStyle +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy +io.reactivex.internal.util.AtomicThrowable: boolean isTerminated() +okhttp3.FormBody$Builder: okhttp3.FormBody$Builder addEncoded(java.lang.String,java.lang.String) +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidth(int) +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_surface +okio.ByteString: okio.ByteString decodeBase64(java.lang.String) +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource RESOURCE_DISK_CACHE +wangdaye.com.geometricweather.R$attr: int touchAnchorId +android.didikee.donate.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.concurrent.Callable bufferSupplier +wangdaye.com.geometricweather.R$id: int invisible +com.google.android.material.R$attr: int boxStrokeWidthFocused +cyanogenmod.providers.CMSettings$System: java.lang.String ZEN_ALLOW_LIGHTS +com.google.android.material.R$styleable: int[] NavigationView +androidx.constraintlayout.widget.R$styleable: int Constraint_drawPath +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerId +wangdaye.com.geometricweather.R$attr: int tabTextColor +wangdaye.com.geometricweather.R$layout: int item_trend_hourly +wangdaye.com.geometricweather.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String getCode() +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawableItem_android_drawable +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarStyle +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicLong index +androidx.preference.PreferenceScreen: PreferenceScreen(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$layout: int design_layout_snackbar +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: android.os.IBinder asBinder() +android.didikee.donate.R$attr: int contentInsetRight +com.google.android.material.R$styleable: int TextInputLayout_errorContentDescription +androidx.appcompat.resources.R$id: int accessibility_custom_action_19 +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar_Small +wangdaye.com.geometricweather.R$id: int notification_big_icon_1 +com.xw.repo.bubbleseekbar.R$layout: int select_dialog_multichoice_material +androidx.appcompat.resources.R$id: int notification_main_column_container +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit PERCENT +com.xw.repo.bubbleseekbar.R$attr: int editTextBackground +okhttp3.internal.cache.DiskLruCache: long size() +okhttp3.WebSocketListener +cyanogenmod.providers.CMSettings$System: java.lang.String PEOPLE_LOOKUP_PROVIDER +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItemSmall +wangdaye.com.geometricweather.R$string: int action_preview +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA +com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_OK +wangdaye.com.geometricweather.R$id: int item_about_header_appName +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginBottom +com.turingtechnologies.materialscrollbar.R$attr: int coordinatorLayoutStyle +androidx.appcompat.widget.AppCompatSeekBar +com.xw.repo.bubbleseekbar.R$attr: int bsb_always_show_bubble_delay +androidx.constraintlayout.widget.R$attr: int transitionEasing wangdaye.com.geometricweather.R$id: int accessibility_custom_action_31 -com.google.android.material.imageview.ShapeableImageView: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -james.adaptiveicon.R$drawable: int abc_textfield_default_mtrl_alpha -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -androidx.appcompat.R$dimen: int notification_large_icon_width -okhttp3.Response: okhttp3.Response networkResponse -com.turingtechnologies.materialscrollbar.R$attr: int hoveredFocusedTranslationZ -android.didikee.donate.R$attr: int layout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: java.lang.String English -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_icon_padding -androidx.hilt.R$dimen: int notification_action_icon_size -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableBottom -com.google.android.gms.base.R$drawable -com.jaredrummler.android.colorpicker.R$id -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveDecay -androidx.preference.R$string: int abc_menu_space_shortcut_label -androidx.preference.R$attr: int paddingTopNoTitle -wangdaye.com.geometricweather.R$style: int my_switch -com.google.android.material.R$style: int Base_Theme_MaterialComponents -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_behavior -androidx.appcompat.view.menu.ActionMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() -com.google.android.material.textfield.TextInputLayout: com.google.android.material.textfield.EndIconDelegate getEndIconDelegate() -com.turingtechnologies.materialscrollbar.R$attr: int buttonPanelSideLayout -androidx.work.R$drawable -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder supportsTlsExtensions(boolean) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver -androidx.fragment.R$styleable: int Fragment_android_tag -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable[] values() -cyanogenmod.app.ProfileManager: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_unselected -androidx.constraintlayout.widget.R$drawable: int abc_seekbar_thumb_material -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: io.reactivex.functions.BiFunction combiner -wangdaye.com.geometricweather.settings.dialogs.WechatDonateDialog: WechatDonateDialog() -androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context) -androidx.constraintlayout.widget.R$style: int Animation_AppCompat_Tooltip -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_SUNRISE_SUNSET -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_selectableItemBackground -wangdaye.com.geometricweather.R$styleable: int[] ColorPanelView -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String h -com.jaredrummler.android.colorpicker.R$dimen: int abc_button_inset_horizontal_material -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.lang.Object invoke(java.lang.Object,java.lang.reflect.Method,java.lang.Object[]) -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Snackbar -android.didikee.donate.R$layout: int abc_expanded_menu_layout -androidx.activity.R$layout -com.google.android.material.R$styleable: int DrawerArrowToggle_barLength -com.google.android.material.R$string: int appbar_scrolling_view_behavior -androidx.appcompat.R$styleable: int[] LinearLayoutCompat -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle -com.google.android.material.R$styleable: int Layout_layout_constraintVertical_bias -com.google.android.material.R$id: int accessibility_action_clickable_span -androidx.constraintlayout.utils.widget.ImageFilterButton: void setBrightness(float) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerNext(io.reactivex.internal.observers.InnerQueuedObserver,java.lang.Object) -android.didikee.donate.R$styleable: int MenuItem_numericModifiers -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Medium_Inverse -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.lang.Throwable error -androidx.viewpager2.R$layout: int notification_template_part_chronometer -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -androidx.appcompat.R$dimen: int notification_main_column_padding_top -com.google.android.material.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_primary_mtrl_alpha -androidx.preference.R$styleable: int[] ButtonBarLayout -retrofit2.http.HeaderMap -com.google.android.material.R$dimen: int abc_config_prefDialogWidth -com.google.android.material.R$style: int Widget_AppCompat_Spinner_Underlined -com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierDirection -com.google.android.material.navigation.NavigationView: void setOverScrollMode(int) -okhttp3.internal.ws.WebSocketProtocol: int CLOSE_CLIENT_GOING_AWAY -androidx.dynamicanimation.R$id: int tag_unhandled_key_listeners -cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getProfileByName(java.lang.String) -androidx.hilt.work.R$id: int accessibility_custom_action_31 -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$anim: int abc_fade_in -com.google.android.material.R$dimen: int mtrl_snackbar_background_overlay_color_alpha -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: int hashCode() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -com.turingtechnologies.materialscrollbar.R$integer: int bottom_sheet_slide_duration -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getNumGammaControls() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_switch_track_mtrl_alpha -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_cancelLiveLockScreen -com.google.android.material.R$styleable: int KeyCycle_transitionPathRotate -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_registerCallback -wangdaye.com.geometricweather.R$id: int dragLeft -androidx.lifecycle.ComputableLiveData$1 -wangdaye.com.geometricweather.R$layout: int abc_action_bar_title_item -com.jaredrummler.android.colorpicker.R$attr: R$attr() -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error -androidx.hilt.lifecycle.R$color: int notification_icon_bg_color -cyanogenmod.profiles.StreamSettings -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorType -androidx.preference.R$id: int src_atop -androidx.constraintlayout.widget.R$styleable: int MenuItem_alphabeticModifiers -androidx.hilt.work.R$styleable: int GradientColorItem_android_offset -com.xw.repo.bubbleseekbar.R$dimen: int abc_button_padding_vertical_material -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_DarkActionBar -androidx.fragment.R$id: int notification_main_column -wangdaye.com.geometricweather.db.entities.AlertEntity: void setType(java.lang.String) -com.google.android.material.R$styleable: int ActionBar_subtitleTextStyle -androidx.fragment.R$integer: R$integer() -wangdaye.com.geometricweather.R$id: int refresh_layout -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getWindDescription(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit) -com.google.android.material.R$id: int material_value_index +android.didikee.donate.R$attr: int popupMenuStyle +com.google.android.material.card.MaterialCardView: void setCardBackgroundColor(int) +okhttp3.internal.http2.Http2Connection: boolean isHealthy(long) +wangdaye.com.geometricweather.R$drawable: int notif_temp_102 +com.bumptech.glide.R$dimen: int notification_large_icon_height +android.didikee.donate.R$attr: int queryHint +wangdaye.com.geometricweather.R$string: int abc_action_bar_up_description +okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date lastModified +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPopupWindowStyle +androidx.hilt.work.R$id: int async +com.google.android.material.R$attr: int layout_constraintDimensionRatio +com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar_FullWidth +androidx.appcompat.R$styleable: int AppCompatTheme_dropDownListViewStyle +com.turingtechnologies.materialscrollbar.R$styleable: int[] ForegroundLinearLayout +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +androidx.appcompat.R$styleable: int Toolbar_logoDescription +org.greenrobot.greendao.AbstractDao: void updateInsideSynchronized(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement,boolean) +androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_android_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerColor +io.reactivex.Observable: io.reactivex.Single toSortedList(int) +okhttp3.internal.cache.DiskLruCache$Editor: okio.Source newSource(int) +cyanogenmod.weather.WeatherLocation: java.lang.String getState() +wangdaye.com.geometricweather.R$integer: int mtrl_chip_anim_duration +androidx.lifecycle.ProcessLifecycleOwner: void activityPaused() +retrofit2.Retrofit$Builder: java.util.concurrent.Executor callbackExecutor +wangdaye.com.geometricweather.R$attr: int showDelay +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: float getDegree() +androidx.preference.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean done +androidx.constraintlayout.widget.R$attr: int ttcIndex +androidx.work.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$id: int SHOW_PROGRESS +okio.Buffer: okio.Buffer writeInt(int) +androidx.preference.R$styleable: int TextAppearance_android_textColor +cyanogenmod.themes.ThemeManager: java.lang.String access$100() +cyanogenmod.weather.util.WeatherUtils: double fahrenheitToCelsius(double) +wangdaye.com.geometricweather.R$attr: int dropDownListViewStyle +cyanogenmod.hardware.ICMHardwareService$Stub: ICMHardwareService$Stub() +com.google.android.material.R$drawable: int abc_cab_background_top_mtrl_alpha +androidx.preference.R$styleable: int PreferenceFragmentCompat_android_dividerHeight +cyanogenmod.themes.ThemeManager: long getLastThemeChangeTime() +com.bumptech.glide.load.HttpException: long serialVersionUID +com.google.android.material.R$styleable: int Insets_paddingLeftSystemWindowInsets +com.turingtechnologies.materialscrollbar.R$id: int listMode +com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyleIndicator +com.turingtechnologies.materialscrollbar.R$integer: int app_bar_elevation_anim_duration +com.google.android.material.R$styleable: int KeyAttribute_curveFit +wangdaye.com.geometricweather.R$attr: int panelBackground +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_phaseView +okhttp3.internal.http2.Http2Connection: boolean access$302(okhttp3.internal.http2.Http2Connection,boolean) +wangdaye.com.geometricweather.R$dimen: int abc_text_size_button_material +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_disabled_z +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_BINARY +com.google.android.material.R$dimen: int design_fab_border_width +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTopCompat +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean isDisposed() +okhttp3.internal.tls.BasicCertificateChainCleaner: int hashCode() +wangdaye.com.geometricweather.R$dimen: int preference_seekbar_padding_horizontal +androidx.vectordrawable.R$id: int line1 +retrofit2.RequestFactory$Builder: okhttp3.Headers parseHeaders(java.lang.String[]) +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +okhttp3.Request$Builder: okhttp3.Request$Builder url(java.lang.String) +wangdaye.com.geometricweather.R$id: int dialog_location_help_container +androidx.preference.R$interpolator: int fast_out_slow_in +wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_android_thumb +com.google.android.material.R$id: int design_bottom_sheet +wangdaye.com.geometricweather.R$layout: int dialog_location_help +okhttp3.Route: java.lang.String toString() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle +com.google.android.material.appbar.AppBarLayout$BaseBehavior$SavedState +james.adaptiveicon.R$id: int custom +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onError(java.lang.Throwable) android.didikee.donate.R$anim -com.google.android.material.R$styleable: int MaterialAutoCompleteTextView_android_inputType -androidx.preference.R$attr: int entryValues -wangdaye.com.geometricweather.R$attr: int order -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean point -wangdaye.com.geometricweather.db.entities.AlertEntity: AlertEntity() -android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyle -com.google.android.material.R$dimen: int mtrl_calendar_header_text_padding -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: ChineseCityEntity() -cyanogenmod.themes.IThemeService$Stub$Proxy -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_hint -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTemperature(int) -androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerY -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -androidx.appcompat.R$attr: int actionModeSelectAllDrawable -androidx.preference.R$color: int abc_btn_colored_borderless_text_material -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_toRightOf -james.adaptiveicon.R$attr: int colorAccent -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -wangdaye.com.geometricweather.R$id: int material_minute_tv -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle -androidx.appcompat.R$styleable: int FontFamilyFont_android_fontWeight -okhttp3.internal.cache.DiskLruCache: java.io.File getDirectory() -com.google.android.material.R$integer: int bottom_sheet_slide_duration -cyanogenmod.app.ICMTelephonyManager: java.util.List getSubInformation() -androidx.appcompat.widget.AppCompatImageButton: void setImageDrawable(android.graphics.drawable.Drawable) -com.xw.repo.bubbleseekbar.R$color: int highlighted_text_material_light -okhttp3.internal.tls.CertificateChainCleaner: CertificateChainCleaner() -com.xw.repo.bubbleseekbar.R$id: int bottom -com.google.android.material.R$id: int ghost_view_holder -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontWeight -androidx.dynamicanimation.R$id -wangdaye.com.geometricweather.R$styleable: int ActionBarLayout_android_layout_gravity -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_font -com.google.android.material.datepicker.RangeDateSelector: android.os.Parcelable$Creator CREATOR -cyanogenmod.os.Build$CM_VERSION: Build$CM_VERSION() -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -androidx.constraintlayout.widget.Guideline: void setGuidelineBegin(int) -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setBottomText(java.lang.String) -io.reactivex.Observable: io.reactivex.Observable takeUntil(io.reactivex.functions.Predicate) -com.google.android.material.R$color: int design_dark_default_color_error -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableItem_android_drawable -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: int Value -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.R$xml: int live_wallpaper -androidx.preference.R$color: int switch_thumb_material_dark -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: long idx -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose SignIn -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean profileExistsByName(java.lang.String) -com.amap.api.location.AMapLocation: int LOCATION_SUCCESS -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String IconPhrase -com.google.android.material.R$color: int abc_btn_colored_borderless_text_material -io.reactivex.internal.observers.DeferredScalarDisposable: void dispose() -androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_toLeftOf -androidx.appcompat.R$id: int expand_activities_button -com.xw.repo.bubbleseekbar.R$attr: int alertDialogTheme -com.jaredrummler.android.colorpicker.R$string: int abc_menu_sym_shortcut_label -cyanogenmod.themes.IThemeChangeListener: void onProgress(int) -wangdaye.com.geometricweather.R$id: int text_input_end_icon -james.adaptiveicon.R$style: int Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.R$anim: int popup_show_bottom_left -cyanogenmod.weatherservice.WeatherProviderService$1: WeatherProviderService$1(cyanogenmod.weatherservice.WeatherProviderService) -androidx.constraintlayout.helper.widget.Flow: void setPaddingTop(int) -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSwoopDuration -cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CURRENT_AND_FORECAST_WEATHER_URI -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Subhead -com.jaredrummler.android.colorpicker.R$id: int uniform -androidx.drawerlayout.R$styleable: R$styleable() -androidx.constraintlayout.widget.R$id: int radio -com.google.android.material.R$attr: int constraintSetStart -com.google.android.material.R$dimen: int abc_dropdownitem_text_padding_right -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int Layout_layout_editor_absoluteX -androidx.loader.R$color: int notification_action_color_filter -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig alertEntityDaoConfig -androidx.lifecycle.LiveData: void postValue(java.lang.Object) -okio.Buffer: java.lang.String readUtf8LineStrict() -okhttp3.MediaType: java.lang.String subtype -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Button -wangdaye.com.geometricweather.R$drawable: int donate_wechat -com.amap.api.fence.GeoFenceClient: android.app.PendingIntent createPendingIntent(java.lang.String) -okhttp3.internal.cache2.FileOperator -cyanogenmod.externalviews.ExternalView: void access$000(cyanogenmod.externalviews.ExternalView) -com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -com.turingtechnologies.materialscrollbar.R$drawable: int notification_tile_bg -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostResumed(android.app.Activity) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleTint -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_max_progress -okhttp3.HttpUrl: java.lang.String queryParameterName(int) -androidx.lifecycle.extensions.R$styleable: int FragmentContainerView_android_name -wangdaye.com.geometricweather.R$drawable: int notif_temp_52 -androidx.core.widget.ContentLoadingProgressBar: ContentLoadingProgressBar(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$color: int primary_text_disabled_material_dark -wangdaye.com.geometricweather.R$string: int temperature -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_addProfile -com.google.android.material.bottomsheet.BottomSheetBehavior$SavedState -okhttp3.MultipartBody$Part: okhttp3.Headers headers -wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeTitle -androidx.constraintlayout.widget.R$color: int bright_foreground_material_light -androidx.preference.R$styleable: int ActionBar_popupTheme -com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets -androidx.transition.R$drawable: int notification_bg -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxySelector(java.net.ProxySelector) -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder readTimeout(long,java.util.concurrent.TimeUnit) -com.google.android.material.R$style: int AndroidThemeColorAccentYellow -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_letter_spacing -wangdaye.com.geometricweather.R$attr: int bsb_second_track_color -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_icon -james.adaptiveicon.R$styleable: int AppCompatImageView_tintMode -com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimsShown(boolean) -androidx.preference.R$styleable: int ActionBar_elevation -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetEndWithActions -james.adaptiveicon.R$dimen: int abc_alert_dialog_button_bar_height -cyanogenmod.app.Profile: int mNameResId -com.google.android.material.R$id: int custom -com.amap.api.location.AMapLocationClientOption: long b -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableRight -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String weatherText -androidx.lifecycle.SavedStateHandle: java.lang.Object remove(java.lang.String) -com.turingtechnologies.materialscrollbar.R$dimen: int notification_action_text_size -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_icon_vertical_padding_material -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onSubscribe(org.reactivestreams.Subscription) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: int getStatus() -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setBootanimation(java.lang.String) -com.xw.repo.bubbleseekbar.R$dimen: int compat_button_inset_horizontal_material -androidx.constraintlayout.widget.R$dimen: int tooltip_corner_radius -androidx.viewpager2.R$styleable: int GradientColor_android_endY -retrofit2.ParameterHandler$QueryMap: ParameterHandler$QueryMap(java.lang.reflect.Method,int,retrofit2.Converter,boolean) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_NoActionBar -com.jaredrummler.android.colorpicker.R$id: int line3 -com.google.android.material.R$styleable: int MaterialCalendar_yearSelectedStyle -wangdaye.com.geometricweather.R$color: int abc_secondary_text_material_dark -com.google.android.material.R$dimen: int design_snackbar_padding_vertical -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_NoActionBar -com.turingtechnologies.materialscrollbar.R$attr: int behavior_autoHide -androidx.fragment.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float thunderstorm -com.turingtechnologies.materialscrollbar.TouchScrollBar: boolean getHide() -com.google.android.material.button.MaterialButtonToggleGroup -okio.ByteString: int decodeHexDigit(char) -com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_entries -androidx.viewpager2.R$styleable: int GradientColor_android_tileMode -androidx.dynamicanimation.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_container -androidx.work.R$drawable: int notify_panel_notification_icon_bg -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MOSTLY_CLOUDY_NIGHT -wangdaye.com.geometricweather.R$attr: int dialogIcon -com.google.android.material.textfield.TextInputLayout: void setErrorIconOnLongClickListener(android.view.View$OnLongClickListener) -okio.BufferedSink: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -cyanogenmod.power.IPerformanceManager$Stub$Proxy: boolean setPowerProfile(int) -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeAppearanceOverlay -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_cut_mtrl_alpha -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: CaiYunForecastResult() -com.loc.k: k(java.lang.String,java.lang.String) -androidx.recyclerview.R$attr: int alpha -com.google.android.material.R$styleable: int[] Spinner -io.reactivex.internal.subscriptions.BasicIntQueueSubscription -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum() -androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackground(int) -io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer,io.reactivex.functions.Consumer) -com.jaredrummler.android.colorpicker.R$color: int accent_material_light -androidx.constraintlayout.widget.R$styleable: int TextAppearance_textAllCaps -okio.Buffer: okio.BufferedSink writeIntLe(int) -retrofit2.http.Field: boolean encoded() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_124 -wangdaye.com.geometricweather.R$id: int container_main_sun_moon -cyanogenmod.profiles.RingModeSettings: RingModeSettings(android.os.Parcel) -wangdaye.com.geometricweather.R$string: int abc_action_mode_done -androidx.lifecycle.Transformations$1: androidx.arch.core.util.Function val$mapFunction -okhttp3.internal.http2.Http2Connection$Builder: okio.BufferedSource source -com.google.android.material.R$string: int chip_text -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float rainPrecipitation -com.google.android.material.slider.Slider: int getTrackWidth() -com.google.android.material.bottomappbar.BottomAppBar: float getFabTranslationY() -com.jaredrummler.android.colorpicker.R$attr: int switchTextOff -wangdaye.com.geometricweather.R$string: int app_name -com.jaredrummler.android.colorpicker.R$attr: int background -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -okio.Segment: int limit -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -cyanogenmod.externalviews.KeyguardExternalView$3: int val$width -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float pm25 -androidx.constraintlayout.widget.R$styleable: int Constraint_constraint_referenced_ids -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: org.reactivestreams.Publisher mPublisher -wangdaye.com.geometricweather.R$attr: int fontStyle -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean outputFused -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void drainAndDispose() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: int Id -com.turingtechnologies.materialscrollbar.R$attr: int actionModeCloseButtonStyle -james.adaptiveicon.R$style: int Widget_AppCompat_SearchView -com.jaredrummler.android.colorpicker.R$id: int wrap_content -okhttp3.HttpUrl: int port -com.google.android.material.circularreveal.CircularRevealFrameLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -android.didikee.donate.R$dimen: int abc_text_size_small_material +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintDimensionRatio +wangdaye.com.geometricweather.R$color: int mtrl_chip_close_icon_tint +androidx.appcompat.R$attr: int autoSizeStepGranularity +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView_Menu +android.didikee.donate.R$dimen: int notification_big_circle_margin +io.reactivex.internal.observers.ForEachWhileObserver: boolean isDisposed() +com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_default_thickness +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: boolean terminated +androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: android.graphics.Rect getWindowInsets() +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: ICMStatusBarManager$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_toBottomOf +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_GCM_SHA384 +androidx.appcompat.R$styleable: int PopupWindowBackgroundState_state_above_anchor +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getName() +com.jaredrummler.android.colorpicker.R$attr: int dialogIcon +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdw +com.bumptech.glide.R$attr: int fontProviderFetchTimeout +androidx.legacy.coreutils.R$id: int action_container +com.xw.repo.bubbleseekbar.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +com.google.android.material.R$style: int TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.R$integer: int mtrl_calendar_selection_text_lines +androidx.viewpager2.R$drawable: int notification_action_background +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CALL_RECORDING_FORMAT_VALIDATOR +james.adaptiveicon.R$styleable: int[] FontFamilyFont +androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed Speed +androidx.constraintlayout.widget.R$color: int primary_text_disabled_material_light +androidx.fragment.R$style: int TextAppearance_Compat_Notification +james.adaptiveicon.R$styleable: int Toolbar_title +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_2 +android.didikee.donate.R$attr: int color +com.google.android.material.R$id: int dragRight +org.greenrobot.greendao.AbstractDao: void deleteInTx(java.lang.Object[]) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupWindow +io.reactivex.exceptions.CompositeException: CompositeException(java.lang.Throwable[]) +wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper +wangdaye.com.geometricweather.R$string: int feedback_click_toggle +wangdaye.com.geometricweather.R$string: int settings_title_appearance +com.jaredrummler.android.colorpicker.ColorPickerView: java.lang.String getAlphaSliderText() +com.xw.repo.bubbleseekbar.R$color: int abc_background_cache_hint_selector_material_light +cyanogenmod.themes.ThemeManager: java.util.Set access$000(cyanogenmod.themes.ThemeManager) +com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextEnabled(boolean) +wangdaye.com.geometricweather.main.dialogs.LocationHelpDialog +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow +com.jaredrummler.android.colorpicker.R$styleable: int[] MultiSelectListPreference +android.didikee.donate.R$styleable: int AppCompatTheme_colorError +androidx.viewpager.R$id: int tag_transition_group +androidx.constraintlayout.widget.R$styleable: int MockView_mock_labelColor +com.google.android.material.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMaxWidth +com.github.rahatarmanahmed.cpv.CircularProgressView$5: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +okhttp3.internal.cache.DiskLruCache: java.lang.String CLEAN +cyanogenmod.providers.CMSettings$System: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) +wangdaye.com.geometricweather.R$anim +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_ON +cyanogenmod.app.Profile: java.util.UUID getUuid() +wangdaye.com.geometricweather.R$attr: int lastBaselineToBottomHeight +androidx.constraintlayout.widget.R$attr: int dragScale +james.adaptiveicon.R$color: int dim_foreground_material_dark +android.didikee.donate.R$style: int Base_Theme_AppCompat_DialogWhenLarge +james.adaptiveicon.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +androidx.hilt.R$layout: int notification_template_icon_group +com.baidu.location.indoor.mapversion.c.c$b: double f +wangdaye.com.geometricweather.R$layout: int widget_day_nano +wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeIndex(java.lang.Integer) +com.google.android.material.R$attr: int customBoolean +com.amap.api.location.AMapLocationClientOption: boolean e +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setHeadIconType(java.lang.String) +cyanogenmod.providers.CMSettings$Secure: java.lang.String LIVE_DISPLAY_COLOR_MATRIX +com.xw.repo.bubbleseekbar.R$id: int action_bar_subtitle +cyanogenmod.weatherservice.ServiceRequestResult: int hashCode() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +okhttp3.Cookie: Cookie(java.lang.String,java.lang.String,long,java.lang.String,java.lang.String,boolean,boolean,boolean,boolean) +okhttp3.internal.http2.Http2Connection: void awaitPong() +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_HOME_DOUBLE_TAP_ACTION +androidx.appcompat.R$drawable: int abc_list_focused_holo +androidx.preference.R$drawable: int abc_btn_radio_to_on_mtrl_000 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTag android.didikee.donate.R$styleable: int AppCompatTheme_dialogCornerRadius -androidx.recyclerview.R$id: int accessibility_custom_action_23 -androidx.vectordrawable.R$id: int dialog_button -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration -com.google.android.material.R$dimen: int mtrl_btn_padding_right -com.turingtechnologies.materialscrollbar.R$id: int ghost_view -com.jaredrummler.android.colorpicker.R$attr: int alertDialogCenterButtons -wangdaye.com.geometricweather.R$attr: int cardCornerRadius -com.google.android.material.R$dimen: int abc_text_size_title_material -com.google.android.material.R$id: int easeOut -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$200(com.github.rahatarmanahmed.cpv.CircularProgressView) -com.google.android.material.R$attr: int contentPaddingRight -com.google.android.material.R$styleable: int MenuItem_showAsAction -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog -wangdaye.com.geometricweather.R$styleable: int ActionBar_icon -com.github.rahatarmanahmed.cpv.CircularProgressView: void onAttachedToWindow() -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: java.lang.String getWindArrow() -com.jaredrummler.android.colorpicker.R$color: int highlighted_text_material_dark -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: boolean isDisposed() -androidx.hilt.lifecycle.R$dimen: int compat_button_padding_horizontal_material -okhttp3.internal.ws.WebSocketProtocol: int B0_MASK_OPCODE -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSteps -retrofit2.HttpException: java.lang.String getMessage(retrofit2.Response) -io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator valueOf(java.lang.String) -androidx.drawerlayout.R$color -com.google.android.material.R$style: int Theme_AppCompat -okio.AsyncTimeout: okio.Sink sink(okio.Sink) -wangdaye.com.geometricweather.R$id: int right_icon -com.google.android.material.R$styleable: int RecyclerView_spanCount -androidx.appcompat.resources.R$id: int accessibility_custom_action_26 -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.CompositeDisposable set -com.google.android.material.R$color: int abc_search_url_text_normal -com.bumptech.glide.R$attr: int layout_dodgeInsetEdges -cyanogenmod.power.PerformanceManager: int PROFILE_BIAS_PERFORMANCE -com.google.android.material.R$styleable: int MenuItem_android_icon -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getWindowAnimations() -com.google.android.material.R$color: int design_dark_default_color_primary_variant -androidx.appcompat.R$dimen: int abc_text_size_body_1_material -james.adaptiveicon.R$attr: int checkboxStyle -androidx.appcompat.widget.ScrollingTabContainerView: void setTabSelected(int) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorViewAlpha(int) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.subjects.UnicastSubject window -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ProgressBar_Horizontal -cyanogenmod.providers.CMSettings$Secure: float getFloat(android.content.ContentResolver,java.lang.String) -okhttp3.Cache$1: void update(okhttp3.Response,okhttp3.Response) -android.didikee.donate.R$dimen: int abc_dialog_fixed_width_major -com.turingtechnologies.materialscrollbar.R$id: int mtrl_child_content_container -androidx.appcompat.widget.ActionBarOverlayLayout: ActionBarOverlayLayout(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$layout: int mtrl_layout_snackbar -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy MISSING -io.reactivex.internal.observers.DeferredScalarDisposable: boolean isDisposed() -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getDefaultHintTextColor() -james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat -androidx.constraintlayout.widget.R$attr: int textAppearanceListItemSmall -cyanogenmod.weather.RequestInfo: RequestInfo(android.os.Parcel,cyanogenmod.weather.RequestInfo$1) -androidx.preference.R$attr: int closeItemLayout -com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart -androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_backgroundTint -cyanogenmod.profiles.ConnectionSettings$1 -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onLockscreenSlideOffsetChanged(float) -androidx.lifecycle.DefaultLifecycleObserver -androidx.hilt.R$drawable: int notification_template_icon_low_bg -androidx.hilt.work.R$layout: int custom_dialog -wangdaye.com.geometricweather.R$drawable: int notif_temp_16 -cyanogenmod.library.R$styleable: int[] LiveLockScreen -androidx.fragment.app.FragmentState -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableTop -androidx.constraintlayout.widget.R$attr: int showAsAction -okhttp3.internal.http2.PushObserver$1: PushObserver$1() -android.didikee.donate.R$id: int edit_query -io.reactivex.internal.observers.DeferredScalarDisposable: int TERMINATED -wangdaye.com.geometricweather.R$id: int action_divider -wangdaye.com.geometricweather.R$attr: int layoutManager -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: AccuCurrentResult$PrecipitationSummary$Past18Hours() -com.google.android.material.R$attr: int snackbarTextViewStyle -cyanogenmod.providers.CMSettings$Secure: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) -wangdaye.com.geometricweather.R$string: int abc_shareactionprovider_share_with_application -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: int UnitType -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemIconSize(int) -com.google.android.material.R$styleable: int OnSwipe_nestedScrollFlags -com.xw.repo.bubbleseekbar.R$attr: int contentDescription -androidx.preference.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: okhttp3.Request request() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -okio.GzipSink: void write(okio.Buffer,long) -james.adaptiveicon.R$color: int primary_dark_material_light -io.reactivex.internal.queue.SpscArrayQueue: void soConsumerIndex(long) -com.amap.api.location.AMapLocation: float getSpeed() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: long EpochTime -com.turingtechnologies.materialscrollbar.R$bool: int abc_config_actionMenuItemAllCaps -android.didikee.donate.R$style: int Theme_AppCompat_CompactMenu -androidx.constraintlayout.widget.R$styleable: int MotionScene_layoutDuringTransition -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer cloudCover -androidx.hilt.work.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textStyle -androidx.hilt.R$styleable: int[] GradientColor -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: void clear() -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeStyle -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar -com.google.android.material.R$styleable: int Constraint_android_alpha -androidx.viewpager.R$styleable: int FontFamilyFont_android_fontVariationSettings -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: boolean requestDismiss() -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable[] TERMINATED -okhttp3.internal.ws.RealWebSocket: java.util.ArrayDeque messageAndCloseQueue -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_orderInCategory -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_android_layout -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: boolean isLeft -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customPixelDimension -com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_id -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: int skip -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_stacked_tab_max_width -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_15 -androidx.preference.PreferenceGroup: void setOnExpandButtonClickListener(androidx.preference.PreferenceGroup$OnExpandButtonClickListener) -cyanogenmod.weather.CMWeatherManager$RequestStatus: int ALREADY_IN_PROGRESS -androidx.lifecycle.extensions.R$layout: int notification_action -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: void handleMessage(android.os.Message) -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_APP_SWITCH_ACTION -com.google.android.material.R$styleable: int MenuItem_android_onClick -androidx.constraintlayout.widget.R$attr: int altSrc -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_list_padding_top_no_title -com.github.rahatarmanahmed.cpv.CircularProgressView: void setMaxProgress(float) -androidx.preference.R$styleable: int Preference_allowDividerAbove -okhttp3.internal.http2.Http2Reader$ContinuationSource: okio.Timeout timeout() -androidx.swiperefreshlayout.R$dimen: int notification_media_narrow_margin -androidx.appcompat.R$style: int Widget_AppCompat_Light_ListPopupWindow -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationMode i -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: void truncate() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX speed -androidx.preference.R$anim: int abc_popup_enter -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.BiFunction resultSelector -io.reactivex.internal.operators.observable.ObservableReplay$Node: ObservableReplay$Node(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Category -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -cyanogenmod.profiles.StreamSettings: void setValue(int) -androidx.preference.R$id: int message -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: java.lang.String date -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator parent -com.google.android.material.R$styleable: int Slider_tickColorInactive -androidx.viewpager.R$dimen: int notification_large_icon_height -cyanogenmod.weather.IRequestInfoListener -cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri CONTENT_URI -androidx.constraintlayout.widget.R$layout: int abc_screen_simple -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String defenseIcon -android.didikee.donate.R$styleable: int AppCompatTheme_windowMinWidthMinor -com.google.android.material.R$attr: int layout_constraintHeight_default -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_rightToLeft -com.xw.repo.bubbleseekbar.R$color: int tooltip_background_dark -androidx.customview.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_entries -com.google.android.material.R$attr: int flow_firstVerticalBias -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setLegacyRequestDisallowInterceptTouchEventEnabled(boolean) -com.turingtechnologies.materialscrollbar.R$color: int material_grey_600 -com.google.android.material.R$styleable: int PopupWindow_android_popupBackground -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String unitId -com.google.android.material.tabs.TabLayout: void setUnboundedRippleResource(int) -com.google.android.material.R$layout: int mtrl_picker_actions -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow -io.reactivex.Observable: io.reactivex.Observable retry(io.reactivex.functions.Predicate) -wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_horizontal_material -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -androidx.constraintlayout.widget.R$styleable: int AlertDialog_buttonIconDimen -com.amap.api.location.AMapLocationClientOption: boolean g -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer getCloudCover() -wangdaye.com.geometricweather.R$id: int tag_icon_day -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: boolean handles(android.content.Intent) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setPubTime(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int abc_ic_clear_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX -androidx.constraintlayout.widget.R$attr: int theme -wangdaye.com.geometricweather.R$drawable: int widget_card_light_20 -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setWallpaper(java.lang.String) -android.support.v4.os.ResultReceiver$MyRunnable: android.os.Bundle mResultData -com.google.android.material.R$attr: int height -com.google.android.material.R$style: int Widget_AppCompat_ActionMode -com.turingtechnologies.materialscrollbar.R$layout: int design_layout_tab_icon -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_defaultQueryHint -com.google.android.material.R$attr: int customPixelDimension -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: void setFrom(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int cardMaxElevation -androidx.appcompat.R$id: int home -com.google.android.material.R$dimen: int mtrl_badge_long_text_horizontal_padding -com.github.rahatarmanahmed.cpv.CircularProgressView$5: void onAnimationCancel(android.animation.Animator) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: int getStatus() -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps -androidx.preference.R$styleable: int AppCompatTheme_windowFixedWidthMinor -com.turingtechnologies.materialscrollbar.R$attr: int colorControlActivated -wangdaye.com.geometricweather.R$attr: int fabSize -okhttp3.EventListener: void responseHeadersStart(okhttp3.Call) -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeContainer -cyanogenmod.themes.ThemeManager$2: cyanogenmod.themes.ThemeManager this$0 -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: void run() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCloseDrawable -wangdaye.com.geometricweather.R$string: int key_distance_unit -com.google.android.material.R$id: int material_clock_period_toggle -wangdaye.com.geometricweather.R$color: int abc_tint_default -okhttp3.internal.http2.Http2Connection$1: okhttp3.internal.http2.ErrorCode val$errorCode -io.reactivex.exceptions.OnErrorNotImplementedException: OnErrorNotImplementedException(java.lang.String,java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setApparentTemperature(java.lang.Integer) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean offer(java.lang.Object) -com.google.android.material.R$drawable: int mtrl_dropdown_arrow -android.didikee.donate.R$dimen: int notification_small_icon_background_padding -androidx.drawerlayout.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.R$styleable: int MaterialButton_cornerRadius -okhttp3.internal.Util: okio.ByteString UTF_8_BOM -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayWeekProvider: WidgetClockDayWeekProvider() -androidx.constraintlayout.widget.R$color: int abc_primary_text_disable_only_material_dark -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleEnabled -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents -androidx.appcompat.widget.ActionBarOverlayLayout: void setIcon(android.graphics.drawable.Drawable) -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setEncodedQueryParameter(java.lang.String,java.lang.String) -com.google.android.gms.base.R$attr: R$attr() -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_CONDITION_CODE -okhttp3.internal.ws.RealWebSocket: okhttp3.Request originalRequest -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontStyle -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_disabled_holo_light -io.reactivex.internal.util.EmptyComponent: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean isDisposed() -okhttp3.internal.http1.Http1Codec$ChunkedSink: void close() -androidx.viewpager2.R$attr: int stackFromEnd -wangdaye.com.geometricweather.R$id: int scrollIndicatorDown -wangdaye.com.geometricweather.R$dimen: int abc_dialog_padding_material -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.remoteviews.config.Hilt_TextWidgetConfigActivity -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_120 -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isSubActive(int) -com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.view.WindowManager mWindowManager -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarWidgetTheme -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_prompt -okhttp3.internal.http2.Http2Stream: boolean $assertionsDisabled -com.google.android.material.R$id: int contentPanel -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline6 -com.google.android.material.R$attr: int colorControlActivated -com.google.android.material.R$attr: int thumbTextPadding -okhttp3.internal.http2.Hpack$Reader: java.util.List getAndResetHeaderList() -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Bridge -androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$attr: int goIcon -io.reactivex.internal.subscribers.DeferredScalarSubscriber -wangdaye.com.geometricweather.R$layout: int custom_dialog -okhttp3.TlsVersion -wangdaye.com.geometricweather.R$string: int key_forecast_tomorrow_time -com.xw.repo.bubbleseekbar.R$id: int textSpacerNoButtons -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -com.google.android.material.R$id: int top -androidx.viewpager2.R$attr: int fontProviderQuery -com.google.android.material.R$dimen: int mtrl_calendar_landscape_header_width -wangdaye.com.geometricweather.R$attr: int fabAlignmentMode -wangdaye.com.geometricweather.R$id: int action_appStore -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analogContainer_dark -androidx.legacy.coreutils.R$attr: int fontProviderPackage -com.jaredrummler.android.colorpicker.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Dialog -okhttp3.internal.http2.Settings: int getMaxHeaderListSize(int) -androidx.appcompat.R$id: int action_bar -wangdaye.com.geometricweather.common.basic.models.weather.UV: int getUVColor(android.content.Context) -okhttp3.HttpUrl: java.lang.String PATH_SEGMENT_ENCODE_SET -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetStart -cyanogenmod.providers.CMSettings$Secure: java.lang.String THEME_PREV_BOOT_API_LEVEL -com.jaredrummler.android.colorpicker.R$attr: int lastBaselineToBottomHeight -okio.AsyncTimeout: boolean exit() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 -androidx.preference.R$styleable: int SearchView_goIcon -androidx.preference.R$drawable: int abc_cab_background_top_material -com.google.android.material.textfield.TextInputLayout: void setHintInternal(java.lang.CharSequence) -android.didikee.donate.R$styleable: int AppCompatTheme_windowMinWidthMajor -io.reactivex.Observable: io.reactivex.Observable fromCallable(java.util.concurrent.Callable) -androidx.appcompat.R$dimen: int notification_action_text_size -android.didikee.donate.R$id: int action_mode_close_button -wangdaye.com.geometricweather.R$dimen: int material_clock_face_margin_top -androidx.preference.R$color: int primary_text_disabled_material_light -io.reactivex.Observable: io.reactivex.Observable repeat(long) -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_suggestionRowLayout -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_1 -androidx.preference.R$id: int contentPanel -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String direction -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -cyanogenmod.externalviews.KeyguardExternalView$2: cyanogenmod.externalviews.KeyguardExternalView this$0 -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SeekBar -okio.Options: okio.ByteString[] byteStrings -wangdaye.com.geometricweather.R$dimen: int abc_text_size_title_material_toolbar -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.reflect.Type responseType -io.reactivex.Observable: java.lang.Object blockingFirst(java.lang.Object) -wangdaye.com.geometricweather.db.entities.DailyEntity: int getDaytimeTemperature() -cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCK_PASS_TO_SECURITY_VIEW -com.turingtechnologies.materialscrollbar.R$attr: int windowNoTitle -android.didikee.donate.R$style: int Widget_AppCompat_RatingBar_Small -okhttp3.internal.http.CallServerInterceptor -wangdaye.com.geometricweather.R$string: int sp_widget_text_setting -wangdaye.com.geometricweather.settings.activities.AboutActivity: AboutActivity() -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_FixedSize -androidx.preference.R$id: int text2 -androidx.constraintlayout.widget.R$dimen: int abc_dialog_min_width_minor -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: CaiYunMainlyResult$BrandInfoBeanXX() -okhttp3.Cache: int writeAbortCount() -io.reactivex.internal.observers.InnerQueuedObserver: boolean isDone() -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_controlView -androidx.appcompat.R$layout: int notification_template_part_chronometer -com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context) -com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_offset -cyanogenmod.themes.ThemeManager -wangdaye.com.geometricweather.R$attr: int actionModeWebSearchDrawable -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$color: int mtrl_text_btn_text_color_selector -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd -com.xw.repo.bubbleseekbar.R$attr: int tintMode -wangdaye.com.geometricweather.R$drawable: int flag_es -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceName(android.content.Context) -com.google.android.material.R$styleable: int ConstraintSet_android_elevation -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.disposables.Disposable upstream -cyanogenmod.app.suggest.IAppSuggestManager$Stub: android.os.IBinder asBinder() -com.google.android.material.button.MaterialButtonToggleGroup: void removeOnButtonCheckedListener(com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener) -wangdaye.com.geometricweather.R$drawable: int ic_circle_white -android.didikee.donate.R$drawable: int notification_template_icon_bg -androidx.lifecycle.ClassesInfoCache$MethodReference: ClassesInfoCache$MethodReference(int,java.lang.reflect.Method) -wangdaye.com.geometricweather.R$color: int colorTextLight2nd -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Button -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial Imperial -androidx.appcompat.widget.AppCompatSpinner -okio.AsyncTimeout: boolean inQueue -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void dispose() -com.xw.repo.bubbleseekbar.R$drawable: int abc_edit_text_material -okhttp3.HttpUrl: java.util.List pathSegments() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: int getStatus() -androidx.preference.R$styleable: int AppCompatSeekBar_tickMarkTint -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalGap -wangdaye.com.geometricweather.R$id: int treeValue -androidx.appcompat.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -com.turingtechnologies.materialscrollbar.R$attr: int labelVisibilityMode -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context,android.util.AttributeSet) +androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandle mHandle +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light +com.turingtechnologies.materialscrollbar.R$drawable: int abc_dialog_material_background +okhttp3.internal.http1.Http1Codec$ChunkedSource: okhttp3.HttpUrl url +wangdaye.com.geometricweather.R$id: int textinput_suffix_text +okhttp3.Connection +io.reactivex.exceptions.OnErrorNotImplementedException +wangdaye.com.geometricweather.R$string: int character_counter_content_description +androidx.legacy.coreutils.R$id: int chronometer +android.didikee.donate.R$id: int submenuarrow +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: AtmoAuraQAResult$MultiDaysIndexs$MultiIndex() +androidx.appcompat.R$style: int Widget_AppCompat_ListPopupWindow +com.google.android.material.chip.Chip: android.content.res.ColorStateList getCloseIconTint() +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getRealFeelShaderTemperature() +cyanogenmod.app.CustomTile: android.os.Parcelable$Creator CREATOR +androidx.hilt.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.common.basic.models.weather.Daily: float hoursOfSun +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean delayErrors +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getLtoDestination() +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$id +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogPreferredPadding +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void cancel() +androidx.lifecycle.extensions.R$layout: int custom_dialog +com.google.android.material.R$color: int material_blue_grey_800 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: long serialVersionUID +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Caption +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +com.google.android.material.R$color: int material_on_background_emphasis_medium +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DialogWhenLarge +androidx.vectordrawable.animated.R$attr: int fontProviderPackage +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_DropDownItem wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: CaiYunMainlyResult$AlertsBean() +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec build() +wangdaye.com.geometricweather.common.basic.models.weather.Wind: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree degree +androidx.appcompat.widget.Toolbar +wangdaye.com.geometricweather.R$string: int abc_menu_enter_shortcut_label +androidx.preference.R$styleable: int AppCompatTheme_actionBarSplitStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +okhttp3.MediaType: java.util.regex.Pattern TYPE_SUBTYPE +androidx.recyclerview.R$dimen: int compat_button_padding_horizontal_material +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void drain() +wangdaye.com.geometricweather.daily.DailyWeatherActivity: DailyWeatherActivity() +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterTextColor +com.google.android.material.R$style: int Widget_AppCompat_DropDownItem_Spinner +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +okhttp3.internal.http2.Http2Stream$FramingSource: okio.Timeout timeout() +com.google.android.material.R$attr: int startIconTintMode +okhttp3.internal.http2.Http2Reader$Handler: void priority(int,int,int,boolean) +androidx.appcompat.R$styleable: int TextAppearance_android_textFontWeight +okhttp3.internal.cache.DiskLruCache$Editor$1: okhttp3.internal.cache.DiskLruCache$Editor this$1 +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_behavior +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: AccuDailyResult$DailyForecasts$Night$Wind$Direction() +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_showMotionSpec +wangdaye.com.geometricweather.R$attr: int mock_labelBackgroundColor +com.google.android.material.R$styleable: int AppCompatTheme_alertDialogTheme +okhttp3.internal.http1.Http1Codec$FixedLengthSource: okhttp3.internal.http1.Http1Codec this$0 +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void dispose() +com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_ContextMenu +okhttp3.WebSocketListener: void onMessage(okhttp3.WebSocket,java.lang.String) +wangdaye.com.geometricweather.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowRadius +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String wind_speed +wangdaye.com.geometricweather.R$styleable: int Constraint_drawPath +okio.InflaterSource: okio.Timeout timeout() +okhttp3.internal.Util: okio.ByteString UTF_8_BOM +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void request(long) +com.jaredrummler.android.colorpicker.R$dimen: int hint_alpha_material_dark +androidx.constraintlayout.widget.R$color: int primary_text_disabled_material_dark +androidx.constraintlayout.helper.widget.Flow: void setFirstVerticalStyle(int) +androidx.hilt.work.R$attr: int fontProviderFetchStrategy +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String l() +james.adaptiveicon.R$dimen: int notification_main_column_padding_top +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_THUMBNAIL +androidx.hilt.work.R$drawable: int notify_panel_notification_icon_bg +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_NoActionBar +wangdaye.com.geometricweather.R$styleable: int ChipGroup_selectionRequired +wangdaye.com.geometricweather.R$attr: int wavePeriod +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endX +com.google.android.material.slider.Slider: void setTickActiveTintList(android.content.res.ColorStateList) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void cancel() +com.google.android.material.textfield.TextInputEditText: java.lang.CharSequence getHintFromLayout() +okhttp3.internal.cache.CacheInterceptor$1: okhttp3.internal.cache.CacheInterceptor this$0 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature WetBulbTemperature +androidx.appcompat.R$styleable: int MenuItem_actionProviderClass +android.didikee.donate.R$styleable: int CompoundButton_buttonTintMode +com.google.android.material.R$id: int mtrl_child_content_container +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: java.lang.Object invoke(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int Constraint_android_visibility +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_initialExpandedChildrenCount +android.support.v4.os.ResultReceiver$1: ResultReceiver$1() +android.didikee.donate.R$attr: int actionModeShareDrawable +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month_navigation +androidx.preference.R$styleable: int MultiSelectListPreference_entryValues +com.google.android.material.R$style: int TextAppearance_AppCompat_Body1 +androidx.preference.R$styleable: int[] FontFamily +cyanogenmod.externalviews.ExternalView$2: int val$width +com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_button_bar_material +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: boolean isAsync +okio.Segment: Segment() +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_chip_state_list_anim +cyanogenmod.hardware.CMHardwareManager: java.lang.String getLtoDestination() +cyanogenmod.providers.DataUsageContract: java.lang.String DATAUSAGE_AUTHORITY +com.jaredrummler.android.colorpicker.R$attr: int subtitleTextStyle +com.google.android.material.R$style: int Theme_MaterialComponents_BottomSheetDialog +com.turingtechnologies.materialscrollbar.R$animator: R$animator() +com.bumptech.glide.Registry$NoResultEncoderAvailableException: Registry$NoResultEncoderAvailableException(java.lang.Class) +okhttp3.internal.http2.Http2Stream: long unacknowledgedBytesRead +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean cancelled +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean) +wangdaye.com.geometricweather.R$attr: int cpv_animSyncDuration +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void runFinally() +androidx.hilt.R$id: int accessibility_custom_action_21 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_CBC_SHA +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void dispose() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: int UnitType +androidx.appcompat.R$attr: int commitIcon +com.google.android.material.R$attr: int transitionPathRotate +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: io.reactivex.disposables.CompositeDisposable compositeDisposable +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginTop +com.google.android.material.R$styleable: int Chip_checkedIcon +com.google.android.gms.base.R$attr: int circleCrop +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTextPadding +androidx.lifecycle.LifecycleService: int onStartCommand(android.content.Intent,int,int) +retrofit2.SkipCallbackExecutorImpl +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_radioButtonStyle +com.google.android.material.R$id: int action_mode_bar +androidx.appcompat.widget.AppCompatToggleButton +cyanogenmod.externalviews.KeyguardExternalView$8: boolean val$showing +wangdaye.com.geometricweather.R$styleable: int EditTextPreference_useSimpleSummaryProvider +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_search +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver otherObserver +wangdaye.com.geometricweather.R$styleable: int[] Fragment +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: long serialVersionUID +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context,android.util.AttributeSet) +com.amap.api.location.APSService: int onStartCommand(android.content.Intent,int,int) +androidx.vectordrawable.R$color +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setLockWallpaper(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstVerticalStyle +com.turingtechnologies.materialscrollbar.R$drawable: int design_bottom_navigation_item_background +wangdaye.com.geometricweather.R$attr: int switchTextOff +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken[] $VALUES +androidx.legacy.coreutils.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$attr: int selectableItemBackgroundBorderless +cyanogenmod.app.IProfileManager$Stub$Proxy +androidx.appcompat.resources.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.R$styleable: int Chip_closeIcon +androidx.appcompat.widget.Toolbar: int getContentInsetEndWithActions() +com.google.android.material.slider.RangeSlider: void setThumbStrokeColorResource(int) +okhttp3.internal.cache.DiskLruCache: void close() +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.subjects.Subject signaller +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_3 +androidx.coordinatorlayout.R$drawable: int notification_bg_low_normal +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode INTERNAL_ERROR +com.amap.api.location.AMapLocation: java.lang.String getAdCode() +androidx.appcompat.R$styleable: int TextAppearance_textLocale +androidx.lifecycle.SavedStateHandle: androidx.lifecycle.SavedStateHandle createHandle(android.os.Bundle,android.os.Bundle) +androidx.preference.R$id: int shortcut +com.jaredrummler.android.colorpicker.R$anim +com.google.android.material.R$color: int material_on_background_emphasis_high_type +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +android.didikee.donate.R$style: int TextAppearance_AppCompat_Display2 +okhttp3.internal.http2.Http2Connection$Builder: java.lang.String hostname +com.google.android.material.R$style: int AlertDialog_AppCompat +okhttp3.internal.http2.Http2Connection: long intervalPongsReceived +com.google.android.material.R$color: int cardview_light_background +com.turingtechnologies.materialscrollbar.R$id: int notification_main_column_container +androidx.recyclerview.R$layout: int notification_template_icon_group +com.xw.repo.bubbleseekbar.R$attr: int editTextColor +androidx.appcompat.R$styleable: int SearchView_defaultQueryHint +androidx.work.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.util.List getValue() +androidx.dynamicanimation.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar_Small +org.greenrobot.greendao.AbstractDao: java.lang.Object loadByRowId(long) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_LED_ON_VALIDATOR +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver +com.google.android.material.R$styleable: int AppCompatTheme_borderlessButtonStyle +okhttp3.MultipartBody$Builder +androidx.preference.R$layout: int preference_widget_checkbox +com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_default +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getTotal() +androidx.appcompat.widget.ActionBarContextView: int getContentHeight() +james.adaptiveicon.R$dimen: int abc_search_view_preferred_height +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType BAIDU +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.google.android.material.R$styleable: int RecyclerView_layoutManager +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_elevation +wangdaye.com.geometricweather.R$id: int action_bar_root +androidx.constraintlayout.utils.widget.ImageFilterView: float getBrightness() +retrofit2.http.HeaderMap +okhttp3.CertificatePinner$Pin: boolean matches(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ws +wangdaye.com.geometricweather.R$attr: int expanded +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onAnimationReset() +com.google.android.material.R$attr: int verticalOffset +com.google.android.material.R$dimen: int abc_dialog_title_divider_material +wangdaye.com.geometricweather.R$drawable: int shortcuts_thunderstorm_foreground +wangdaye.com.geometricweather.R$dimen: int preference_icon_minWidth +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlHighlight +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: float unitFactor +android.didikee.donate.R$styleable: int ActionBar_progressBarStyle +james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar_Indicator +androidx.transition.R$layout: int notification_action +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.Observer downstream +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_thickness +androidx.coordinatorlayout.R$id: int start +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +cyanogenmod.media.MediaRecorder$AudioSource +wangdaye.com.geometricweather.R$string: int sp_widget_day_setting +com.google.gson.stream.JsonReader: int PEEKED_TRUE +cyanogenmod.profiles.AirplaneModeSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +androidx.coordinatorlayout.R$id: int left +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_icon_vertical_padding_material +com.turingtechnologies.materialscrollbar.R$attr: int msb_barThickness +androidx.recyclerview.R$styleable: int[] GradientColor +com.google.gson.stream.JsonReader: java.lang.String peekedString +cyanogenmod.providers.CMSettings: java.lang.String ACTION_DATA_USAGE +wangdaye.com.geometricweather.common.ui.widgets.TagView +com.google.android.material.R$dimen: int compat_button_inset_vertical_material +retrofit2.Utils$GenericArrayTypeImpl: java.lang.reflect.Type componentType +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +androidx.constraintlayout.widget.R$id: int action_bar_activity_content +com.jaredrummler.android.colorpicker.R$dimen: int abc_alert_dialog_button_bar_height +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String IconPhrase +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: int getChartTop() +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: long dt +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_backgroundTintMode +com.xw.repo.bubbleseekbar.R$drawable: int abc_dialog_material_background +com.google.android.material.bottomappbar.BottomAppBar: void setBackgroundTint(android.content.res.ColorStateList) +com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_backgroundTint +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: int getMarginBottom() +io.reactivex.Observable: io.reactivex.Observable timer(long,java.util.concurrent.TimeUnit) +cyanogenmod.weather.WeatherInfo: double access$1202(cyanogenmod.weather.WeatherInfo,double) +com.turingtechnologies.materialscrollbar.R$attr: int cardViewStyle +androidx.constraintlayout.widget.R$id: int textSpacerNoTitle +androidx.constraintlayout.widget.R$attr: int indeterminateProgressStyle +com.google.android.gms.base.R$attr: R$attr() +com.google.android.material.internal.ParcelableSparseIntArray +com.xw.repo.bubbleseekbar.R$anim: int abc_tooltip_enter +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_4 +io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Runnable runnable +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void setDisposable(io.reactivex.disposables.Disposable) +com.bumptech.glide.R$attr +wangdaye.com.geometricweather.common.ui.activities.AlertActivity +com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$styleable: int ProgressIndicator_growMode +androidx.preference.R$color: int abc_secondary_text_material_dark +com.google.android.material.R$style: int Widget_MaterialComponents_Tooltip +com.google.android.material.switchmaterial.SwitchMaterial: android.content.res.ColorStateList getMaterialThemeColorsTrackTintList() +com.xw.repo.bubbleseekbar.R$styleable: int View_paddingEnd +androidx.appcompat.R$styleable: int AppCompatTheme_panelMenuListTheme +okhttp3.WebSocketListener: void onOpen(okhttp3.WebSocket,okhttp3.Response) +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder pushObserver(okhttp3.internal.http2.PushObserver) +androidx.appcompat.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.preference.R$color: int notification_action_color_filter +android.didikee.donate.R$id: int bottom +androidx.preference.R$id: int switchWidget +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorFullWidth +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void cancel(io.reactivex.internal.queue.SpscLinkedArrayQueue,io.reactivex.internal.queue.SpscLinkedArrayQueue) +com.xw.repo.bubbleseekbar.R$style: int Widget_Compat_NotificationActionText +androidx.coordinatorlayout.widget.CoordinatorLayout: androidx.core.view.WindowInsetsCompat getLastWindowInsets() +wangdaye.com.geometricweather.R$style: R$style() +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Info +androidx.recyclerview.R$styleable: int FontFamilyFont_ttcIndex +com.turingtechnologies.materialscrollbar.TouchScrollBar: float getHideRatio() +androidx.swiperefreshlayout.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabUnboundedRipple +com.google.android.material.R$id: int accessibility_custom_action_1 +androidx.work.R$styleable: int FontFamily_fontProviderQuery +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_editor_absoluteX +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitation +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableItem_android_drawable +wangdaye.com.geometricweather.R$layout: int mtrl_layout_snackbar +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setComponent(java.lang.String,java.lang.String) +okhttp3.MultipartBody: byte[] COLONSPACE +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property SunSetDate +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerComplete(int,boolean) +com.google.android.material.R$id: int navigation_header_container +androidx.lifecycle.SavedStateHandleController$1: SavedStateHandleController$1(androidx.lifecycle.Lifecycle,androidx.savedstate.SavedStateRegistry) +james.adaptiveicon.R$color: int switch_thumb_disabled_material_dark +com.google.android.material.R$attr: int linearSeamless +io.reactivex.Observable: io.reactivex.Single all(io.reactivex.functions.Predicate) +com.jaredrummler.android.colorpicker.R$id: int cpv_preference_preview_color_panel +androidx.viewpager.widget.PagerTabStrip: PagerTabStrip(android.content.Context) +android.didikee.donate.R$dimen: int abc_seekbar_track_background_height_material +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_font +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getSupportedFeatures_0 +androidx.recyclerview.R$styleable: int RecyclerView_android_clipToPadding +com.google.android.material.button.MaterialButton: void addOnCheckedChangeListener(com.google.android.material.button.MaterialButton$OnCheckedChangeListener) +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setBackgroundResource(int) +com.jaredrummler.android.colorpicker.R$attr: int backgroundTint +wangdaye.com.geometricweather.R$style: int Preference +androidx.hilt.work.R$color +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_subMenuArrow +wangdaye.com.geometricweather.R$color: int colorTextGrey2nd +cyanogenmod.app.CustomTile: android.net.Uri onClickUri +com.google.android.material.R$styleable: int TextInputLayout_boxStrokeErrorColor +com.jaredrummler.android.colorpicker.R$attr: int actionBarStyle +androidx.appcompat.R$styleable: int MenuGroup_android_id +androidx.preference.R$layout: int abc_dialog_title_material +androidx.appcompat.R$styleable: int ActionBar_contentInsetLeft +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle +com.xw.repo.bubbleseekbar.R$dimen: int notification_subtext_size +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue getOrCreateQueue() +androidx.appcompat.resources.R$attr: int fontStyle +com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding +androidx.constraintlayout.widget.R$attr: int dialogTheme +com.google.android.material.R$attr: int waveVariesBy +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$color: int notification_background_rootLight +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType GPS +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_visible +androidx.lifecycle.extensions.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.weather.json.mf.MfRainResult +androidx.lifecycle.Lifecycling: int getObserverConstructorType(java.lang.Class) +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.Observer downstream +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowColor +james.adaptiveicon.R$styleable: int MenuView_preserveIconSpacing +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea AdministrativeArea +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: long serialVersionUID +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Long id +com.google.android.material.R$styleable: int Motion_motionPathRotate +okhttp3.Cache: int writeSuccessCount +com.google.android.material.R$attr: int flow_lastHorizontalBias +com.google.android.material.R$styleable: int Layout_layout_constraintRight_toLeftOf +wangdaye.com.geometricweather.R$attr: int haloRadius +wangdaye.com.geometricweather.R$id: int container_main_pollen_indicator +wangdaye.com.geometricweather.R$color: int switch_thumb_disabled_material_dark +james.adaptiveicon.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.db.entities.AlertEntity: void setId(java.lang.Long) +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Today +androidx.appcompat.widget.SwitchCompat: int getCompoundPaddingRight() +com.google.android.material.R$animator: int linear_indeterminate_line1_head_interpolator +com.google.android.material.R$attr: int materialCalendarHeaderLayout +com.google.android.material.R$styleable: int Transform_android_rotationX +androidx.drawerlayout.widget.DrawerLayout: void setDrawerElevation(float) +com.xw.repo.bubbleseekbar.R$id: int shortcut +android.didikee.donate.R$drawable: int abc_btn_radio_to_on_mtrl_015 +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconTintMode +com.google.android.material.R$color: int primary_text_default_material_dark +com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy STRING +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: long serialVersionUID +com.jaredrummler.android.colorpicker.R$layout: int abc_screen_content_include +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onError(java.lang.Throwable) +androidx.appcompat.view.menu.ListMenuItemView: void setForceShowIcon(boolean) +com.xw.repo.bubbleseekbar.R$id: int search_go_btn +okhttp3.internal.tls.DistinguishedNameParser: int beg +android.didikee.donate.R$style: int Platform_V25_AppCompat +androidx.appcompat.R$attr: int iconTint +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_curveFit +retrofit2.Response: java.lang.Object body() +com.turingtechnologies.materialscrollbar.R$attr: int errorTextAppearance +android.support.v4.graphics.drawable.IconCompatParcelizer: void write(androidx.core.graphics.drawable.IconCompat,androidx.versionedparcelable.VersionedParcel) +cyanogenmod.app.ICustomTileListener: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +com.google.android.material.slider.BaseSlider: void addOnSliderTouchListener(com.google.android.material.slider.BaseOnSliderTouchListener) +androidx.loader.R$style: int TextAppearance_Compat_Notification_Title +androidx.constraintlayout.widget.R$id: int action_context_bar +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Inverse +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: boolean isValid() +androidx.hilt.R$id: int time +okhttp3.internal.http.CallServerInterceptor: boolean forWebSocket +androidx.lifecycle.ProcessLifecycleOwnerInitializer: android.net.Uri insert(android.net.Uri,android.content.ContentValues) +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_indeterminate +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type UNKNOWN +wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeTitle +com.google.android.material.R$styleable: int SearchView_goIcon +androidx.customview.R$color: int secondary_text_default_material_light +androidx.appcompat.R$layout: int abc_alert_dialog_button_bar_material +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerValue(boolean,java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorCornerRadius +androidx.viewpager2.R$layout: int notification_template_custom_big +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView_Menu +com.xw.repo.bubbleseekbar.R$styleable: int[] SwitchCompat +com.google.android.material.R$attr: int spanCount +androidx.preference.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onError(java.lang.Throwable) +com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_BAD +com.google.gson.stream.JsonReader: int NUMBER_CHAR_SIGN +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.R$string: int abc_activity_chooser_view_see_all +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: int UnitType +wangdaye.com.geometricweather.R$attr: int alertDialogButtonGroupStyle +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.disposables.Disposable upstream +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void lookupCity(cyanogenmod.weather.RequestInfo) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature WindChillTemperature +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_summary +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItem +wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_1_3_padding_bottom +androidx.appcompat.widget.AppCompatTextView: int getFirstBaselineToTopHeight() +com.jaredrummler.android.colorpicker.R$styleable: int[] DialogPreference +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String weatherSource +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.Boolean) +com.google.android.material.navigation.NavigationView: int getHeaderCount() +com.google.android.material.R$styleable: int[] CardView +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_NoActionBar_Bridge +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year +android.didikee.donate.R$drawable: int abc_tab_indicator_mtrl_alpha +androidx.constraintlayout.widget.R$attr: int layout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getDescription() +androidx.lifecycle.extensions.R$dimen: int notification_action_text_size +okhttp3.Challenge: java.lang.String scheme() +okhttp3.Response: boolean isSuccessful() +retrofit2.http.PUT: java.lang.String value() +com.google.android.material.R$styleable: int[] LinearLayoutCompat_Layout +com.google.android.material.R$id: int design_menu_item_action_area +com.google.android.gms.location.zzbd +com.google.android.material.R$attr: int windowActionModeOverlay +com.turingtechnologies.materialscrollbar.R$attr: int alphabeticModifiers +com.bumptech.glide.R$styleable: int CoordinatorLayout_statusBarBackground +wangdaye.com.geometricweather.R$id: int textTop +androidx.customview.R$layout: int notification_action_tombstone +androidx.constraintlayout.widget.R$styleable: int[] RecycleListView +cyanogenmod.power.PerformanceManager: cyanogenmod.power.IPerformanceManager sService +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: java.lang.String getActiveWeatherServiceProviderLabel() +androidx.constraintlayout.widget.R$attr: int drawableTint +androidx.constraintlayout.widget.R$dimen: int notification_small_icon_background_padding +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int activeCount +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotation +androidx.lifecycle.ComputableLiveData$3: void run() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoDestination +com.baidu.location.BDLocation: android.os.Parcelable$Creator CREATOR +androidx.lifecycle.Lifecycling: java.util.Map sClassToAdapters +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_thickness +cyanogenmod.app.ICustomTileListener +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +androidx.swiperefreshlayout.R$dimen: int notification_small_icon_background_padding +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setCityName(java.lang.String) +com.google.android.material.R$dimen: int material_font_1_3_box_collapsed_padding_top +james.adaptiveicon.R$dimen: int compat_control_corner_material +androidx.customview.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$drawable: int design_ic_visibility +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dark +androidx.preference.R$id: int notification_main_column +android.didikee.donate.R$styleable: int AppCompatTheme_colorControlNormal +androidx.constraintlayout.widget.R$styleable: int Motion_pathMotionArc +com.google.android.material.chip.Chip: void setCheckedIconTintResource(int) +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetEnd +com.xw.repo.bubbleseekbar.R$dimen: int abc_cascading_menus_min_smallest_width +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Error +androidx.appcompat.widget.Toolbar: int getCurrentContentInsetRight() +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onError(java.lang.Throwable) +com.google.android.material.R$styleable: int Constraint_flow_maxElementsWrap +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1 +androidx.constraintlayout.widget.R$color: int bright_foreground_disabled_material_dark +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.util.List getValue() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getZh_TW() +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +io.reactivex.Observable: io.reactivex.Single elementAt(long,java.lang.Object) +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: android.os.IBinder asBinder() +androidx.recyclerview.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$drawable: int notif_temp_66 +com.google.android.material.navigation.NavigationView$SavedState +okhttp3.internal.cache2.FileOperator: void write(long,okio.Buffer,long) +com.google.android.material.R$drawable: int tooltip_frame_light +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitationDuration +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_menuCategory +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService: ForegroundTomorrowForecastUpdateService() +james.adaptiveicon.R$styleable: int AppCompatTheme_toolbarStyle +cyanogenmod.providers.CMSettings$Secure$2: java.lang.String mDelimiter +retrofit2.ParameterHandler$Header: void apply(retrofit2.RequestBuilder,java.lang.Object) +cyanogenmod.app.ILiveLockScreenManagerProvider: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +com.jaredrummler.android.colorpicker.R$styleable: int Preference_widgetLayout +android.didikee.donate.R$attr: int windowMinWidthMajor +wangdaye.com.geometricweather.R$styleable: int TagView_checked +okhttp3.internal.cache.DiskLruCache: void checkNotClosed() +com.jaredrummler.android.colorpicker.R$id: int action_bar_container +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior: ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior(android.content.Context,android.util.AttributeSet) +androidx.preference.R$styleable: int GradientColor_android_endY +androidx.appcompat.R$style: int Theme_AppCompat_Dialog_Alert +com.google.android.material.R$attr: int headerLayout +com.google.android.material.R$attr: int number +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_thumb +android.didikee.donate.R$attr: int titleTextColor +io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.preference.R$styleable: int PopupWindow_android_popupBackground +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.slider.BaseSlider: void setHaloRadiusResource(int) +okio.Okio: okio.BufferedSource buffer(okio.Source) +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Listener listener +androidx.appcompat.R$id: int radio +james.adaptiveicon.R$attr: int itemPadding +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void dispose() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getGrassIndex() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +cyanogenmod.providers.CMSettings$System$3: CMSettings$System$3() +com.google.android.material.appbar.HeaderScrollingViewBehavior: HeaderScrollingViewBehavior() +wangdaye.com.geometricweather.R$string: int common_open_on_phone +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelMenuListWidth +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents +okio.Buffer: okio.Buffer writeLongLe(long) +james.adaptiveicon.R$attr: int fontWeight +androidx.preference.R$styleable: int SwitchPreference_android_switchTextOff +androidx.recyclerview.R$id: int blocking +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol getLocationProtocol() +io.reactivex.Observable: io.reactivex.Observable concatEager(java.lang.Iterable) +com.google.android.material.R$attr: int recyclerViewStyle +android.didikee.donate.R$dimen: int abc_text_size_caption_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String url +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context) +com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context) +okhttp3.internal.io.FileSystem: okhttp3.internal.io.FileSystem SYSTEM +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: java.util.concurrent.atomic.AtomicInteger active +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours +com.jaredrummler.android.colorpicker.R$attr: int windowActionBarOverlay +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_dotDiameter +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: void close() +com.google.android.material.R$styleable: int AppCompatTextView_drawableRightCompat +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date endDate +com.jaredrummler.android.colorpicker.R$color: R$color() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setContent(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean) +androidx.core.graphics.drawable.IconCompat +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_size +androidx.viewpager2.R$drawable: int notification_template_icon_low_bg +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +com.google.android.material.R$styleable: int ShapeAppearance_cornerSize +retrofit2.RequestFactory$Builder: retrofit2.RequestFactory build() +com.google.android.material.R$styleable: int Motion_animate_relativeTo +wangdaye.com.geometricweather.R$styleable: int Chip_chipMinTouchTargetSize +wangdaye.com.geometricweather.R$id: int text_input_end_icon +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_caption_material +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String name +wangdaye.com.geometricweather.R$string: int restart +androidx.appcompat.R$style: int Theme_AppCompat_DialogWhenLarge +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableStart +androidx.recyclerview.R$id: int accessibility_custom_action_29 +okhttp3.internal.ws.WebSocketProtocol: void validateCloseCode(int) +okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.Object createAndOpen(java.lang.String) +james.adaptiveicon.R$color: int abc_tint_seek_thumb +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer getDewPoint() +io.reactivex.internal.util.VolatileSizeArrayList: int hashCode() +james.adaptiveicon.R$drawable: int abc_ic_star_half_black_16dp +com.google.android.material.R$id: int accessibility_custom_action_18 +androidx.cardview.R$style +androidx.core.R$dimen +com.google.android.material.R$styleable: int Chip_chipIconSize +com.google.android.material.R$dimen: int abc_action_bar_stacked_max_height +com.jaredrummler.android.colorpicker.R$attr: int contentDescription +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Body1 +androidx.preference.R$styleable: int AppCompatTheme_alertDialogTheme +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +com.google.android.material.textfield.TextInputLayout: com.google.android.material.shape.MaterialShapeDrawable getBoxBackground() +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontStyle +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColor +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView +wangdaye.com.geometricweather.R$layout: int design_navigation_menu_item +com.bumptech.glide.R$styleable: int GradientColor_android_centerColor +androidx.appcompat.R$styleable: int[] FontFamily +james.adaptiveicon.R$styleable: int ActionBar_progressBarPadding +androidx.preference.R$id: int bottom +wangdaye.com.geometricweather.common.basic.models.weather.Daily: float getHoursOfSun() +com.google.android.material.appbar.AppBarLayout: int getTotalScrollRange() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean getTemperature() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Tooltip +com.jaredrummler.android.colorpicker.R$attr: int buttonStyleSmall +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_spinBars +androidx.activity.R$color +com.jaredrummler.android.colorpicker.R$color: int tooltip_background_dark +cyanogenmod.weather.WeatherLocation: java.lang.String mCountryId +androidx.activity.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSo2(java.lang.String) +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog +okhttp3.internal.platform.AndroidPlatform$CloseGuard: boolean warnIfOpen(java.lang.Object) +androidx.lifecycle.SavedStateHandleController: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +com.google.android.material.R$attr: int textAppearanceBody1 +okhttp3.internal.http2.Http2Stream$FramingSink: Http2Stream$FramingSink(okhttp3.internal.http2.Http2Stream) +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.util.List toDailyTrendDisplayList(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int RecyclerView_spanCount +androidx.preference.R$styleable: int AppCompatTheme_editTextBackground +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.R$drawable: int abc_scrubber_track_mtrl_alpha +com.google.android.material.R$style: int AndroidThemeColorAccentYellow +wangdaye.com.geometricweather.R$drawable: int ic_keyboard_black_24dp +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType ALIYUN +androidx.appcompat.R$layout: int abc_search_dropdown_item_icons_2line +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderToggleButton +com.turingtechnologies.materialscrollbar.R$id: int selected +wangdaye.com.geometricweather.R$string: int today +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalGap +androidx.preference.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +com.autonavi.aps.amapapi.model.AMapLocationServer +androidx.constraintlayout.widget.R$attr: int onCross +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getMinWidthMinor() +androidx.loader.R$attr: int fontProviderFetchStrategy +james.adaptiveicon.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.common.ui.widgets.TagView: void setUncheckedBackgroundColor(int) +retrofit2.RequestFactory$Builder +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_PREVIEW +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onResume() +com.baidu.location.indoor.mapversion.c.a$d: java.lang.String b +androidx.preference.R$styleable: int[] MenuView +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float total +okhttp3.Challenge: java.util.Map authParams +androidx.appcompat.R$attr: int queryBackground +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowDy +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Button +androidx.hilt.work.R$styleable: int FontFamily_fontProviderQuery +androidx.recyclerview.R$dimen: int notification_large_icon_height +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIcon +cyanogenmod.platform.R: R() +com.google.android.material.R$styleable: int Transition_transitionFlags +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.lang.String getRiseTime(android.content.Context) +com.xw.repo.bubbleseekbar.R$style: int Platform_AppCompat_Light +okhttp3.internal.http2.Hpack$Writer: void writeHeaders(java.util.List) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.Long id +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontStyle +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar +james.adaptiveicon.R$styleable: int AlertDialog_android_layout +wangdaye.com.geometricweather.R$id: int row_index_key +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorPrimaryDark +com.google.android.material.R$layout: int test_design_checkbox +com.xw.repo.bubbleseekbar.R$attr: int firstBaselineToTopHeight +org.greenrobot.greendao.DaoException: void safeInitCause(java.lang.Throwable) +com.google.android.material.R$attr: int layout_constraintVertical_weight +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_RAINSTORM +androidx.constraintlayout.widget.R$id: int uniform +okhttp3.MediaType: java.lang.String toString() +androidx.legacy.coreutils.R$dimen: int notification_action_text_size +com.bumptech.glide.integration.okhttp.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeCloudCover() +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource) +cyanogenmod.themes.ThemeChangeRequest: java.util.Map mThemeComponents +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedWidthMinor +wangdaye.com.geometricweather.db.entities.AlertEntity: long alertId +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: long serialVersionUID +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method removeMethod +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property CityId +androidx.customview.R$styleable: int GradientColor_android_endX +com.xw.repo.bubbleseekbar.R$id: int submenuarrow +james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +james.adaptiveicon.R$dimen: int abc_dialog_fixed_width_major +wangdaye.com.geometricweather.R$attr: int actionModeFindDrawable +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mVibrateMode +wangdaye.com.geometricweather.R$attr: int actionMenuTextColor +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: BaiduIPLocationResult$ContentBean() +com.jaredrummler.android.colorpicker.R$color: int background_material_dark +okhttp3.internal.http2.Header$Listener: void onHeaders(okhttp3.Headers) +okhttp3.internal.ws.WebSocketProtocol: int PAYLOAD_SHORT +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarItemBackground +james.adaptiveicon.R$attr: int multiChoiceItemLayout +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void run() +wangdaye.com.geometricweather.R$string: int settings_title_dark_mode +com.turingtechnologies.materialscrollbar.R$id: int textinput_helper_text +androidx.appcompat.R$drawable: int btn_radio_on_mtrl +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicator(android.graphics.drawable.Drawable) +retrofit2.ParameterHandler$Tag: ParameterHandler$Tag(java.lang.Class) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: MfWarningsResult$WarningTimelaps$WarningTimelapsItem() +androidx.coordinatorlayout.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getUrl() +androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$style: int Base_V23_Theme_AppCompat +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void remove() +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: java.util.concurrent.atomic.AtomicLong requested +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List chuanyi +com.google.android.material.R$attr: int dragDirection +android.didikee.donate.R$attr: int actionModeSelectAllDrawable +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_height +androidx.preference.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +androidx.work.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.util.Date date +cyanogenmod.app.BaseLiveLockManagerService: boolean hasPrivatePermissions() +wangdaye.com.geometricweather.R$attr: int chipIconEnabled +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleEnabled +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Title +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_disabled_holo_dark +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontStyle +androidx.lifecycle.extensions.R$anim: int fragment_close_exit +com.google.android.material.R$style: int Base_V28_Theme_AppCompat_Light +com.google.android.material.R$style: int Platform_MaterialComponents_Dialog +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetStartWithNavigation +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isDataConnectionSelectedOnSub(int) +com.bumptech.glide.integration.okhttp.R$id: int notification_background +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitation +cyanogenmod.weather.WeatherLocation: WeatherLocation() +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$string: int settings_title_notification_can_be_cleared +james.adaptiveicon.R$attr: int tintMode +androidx.vectordrawable.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar +com.jaredrummler.android.colorpicker.R$id: int cpv_hex +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge +okio.RealBufferedSource: java.lang.String readUtf8LineStrict() +okhttp3.internal.http1.Http1Codec$AbstractSource: okhttp3.internal.http1.Http1Codec this$0 +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree +com.google.android.material.R$dimen: int mtrl_tooltip_minWidth +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String HOMESCREEN_URI +androidx.vectordrawable.animated.R$color: int ripple_material_light +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX) +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: java.lang.String unitAbbreviation +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.preference.R$style: int TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.R$attr: int state_above_anchor +androidx.preference.R$attr: int windowActionBarOverlay +wangdaye.com.geometricweather.R$styleable: int Toolbar_navigationIcon +com.xw.repo.bubbleseekbar.R$id: int listMode +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_keyboardNavigationCluster +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_AppBarLayout +androidx.appcompat.R$attr: int listItemLayout +retrofit2.http.Multipart +okhttp3.internal.cache.DiskLruCache: boolean remove(java.lang.String) +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu androidx.preference.R$styleable: int AppCompatTextView_fontFamily -com.google.android.material.R$styleable: int TextAppearance_textAllCaps -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_font -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_rippleColor -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_vertical -androidx.core.R$id: int accessibility_custom_action_24 -okhttp3.internal.cache.DiskLruCache$Snapshot: okhttp3.internal.cache.DiskLruCache this$0 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitationDuration -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_pivotAnchor -androidx.preference.R$dimen: int tooltip_corner_radius -io.reactivex.Observable: io.reactivex.Completable switchMapCompletable(io.reactivex.functions.Function) -android.didikee.donate.R$color: int abc_secondary_text_material_light -androidx.preference.R$styleable: int AlertDialog_android_layout -com.google.android.material.R$style: int Base_AlertDialog_AppCompat -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_contentDescription -okhttp3.internal.io.FileSystem: void rename(java.io.File,java.io.File) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver inner -okhttp3.internal.http2.Http2Codec$StreamFinishingSource -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogCenterButtons -wangdaye.com.geometricweather.R$attr: int fabCradleMargin -com.google.android.material.R$styleable: int ActionBarLayout_android_layout_gravity -androidx.loader.R$dimen: int notification_large_icon_height -okhttp3.RealCall: java.lang.String redactedUrl() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day -androidx.activity.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec RESTRICTED_TLS -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object get(int) -androidx.lifecycle.R -okhttp3.internal.ws.RealWebSocket$1: RealWebSocket$1(okhttp3.internal.ws.RealWebSocket) -com.google.android.material.R$styleable: int NavigationView_itemShapeFillColor -com.google.android.gms.location.ActivityTransition: android.os.Parcelable$Creator CREATOR -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_cpuBoost_0 -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: int uv -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float pressure -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -wangdaye.com.geometricweather.R$anim: int design_bottom_sheet_slide_out -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial Imperial -wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_checkbox -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_normalContainer -com.google.android.material.button.MaterialButtonToggleGroup: void setupButtonChild(com.google.android.material.button.MaterialButton) -androidx.activity.R$attr: int fontProviderQuery -com.google.android.material.R$id: int src_in -okhttp3.HttpUrl: java.lang.String encodedUsername() -androidx.drawerlayout.R$styleable: int[] FontFamily -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1 -com.google.android.material.R$attr: int inverse -wangdaye.com.geometricweather.R$id: int motion_base -com.google.android.material.R$dimen: int mtrl_btn_stroke_size -wangdaye.com.geometricweather.R$id: int widget_text_container -androidx.appcompat.R$style: int TextAppearance_AppCompat_Caption +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: void setRootAlpha(int) +com.google.android.material.navigation.NavigationView: void setItemTextAppearance(int) +okhttp3.OkHttpClient$Builder: okhttp3.Authenticator proxyAuthenticator +androidx.viewpager.widget.PagerTitleStrip: void setNonPrimaryAlpha(float) +wangdaye.com.geometricweather.R$styleable: int CardView_cardMaxElevation +androidx.constraintlayout.widget.R$attr: int drawableTintMode +androidx.work.impl.background.systemjob.SystemJobService: SystemJobService() +androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingStart +com.amap.api.location.AMapLocation: java.lang.String getBuildingId() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setUrl(java.lang.String) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +okio.Buffer: okio.BufferedSink writeShort(int) +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(java.lang.String) +cyanogenmod.app.Profile$1 +com.xw.repo.bubbleseekbar.R$attr: int bsb_anim_duration +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayGammaCalibration +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +android.didikee.donate.R$bool: int abc_allow_stacked_button_bar +wangdaye.com.geometricweather.R$attr: int cpv_indeterminate +wangdaye.com.geometricweather.R$color: int mtrl_indicator_text_color +androidx.preference.R$styleable: int PreferenceTheme_preferenceScreenStyle +com.google.android.material.R$color: int cardview_shadow_start_color +james.adaptiveicon.R$styleable: int ActionBar_elevation +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAVBAR_LEFT_IN_LANDSCAPE_VALIDATOR +cyanogenmod.themes.IThemeService$Stub$Proxy: boolean processThemeResources(java.lang.String) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: long serialVersionUID +androidx.viewpager2.R$id: int tag_unhandled_key_event_manager +okhttp3.internal.Util: java.util.regex.Pattern VERIFY_AS_IP_ADDRESS +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarPopupTheme +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Line2 +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar +wangdaye.com.geometricweather.R$color: int design_fab_shadow_end_color +androidx.legacy.coreutils.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_6 +cyanogenmod.app.ICMTelephonyManager: void setDataConnectionState(boolean) +androidx.appcompat.widget.Toolbar: void setContentInsetEndWithActions(int) +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.lang.Object x509TrustManagerExtensions +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterOverflowTextAppearance +cyanogenmod.weather.WeatherInfo: android.os.Parcelable$Creator CREATOR +cyanogenmod.hardware.CMHardwareManager: int getSupportedFeatures() +android.didikee.donate.R$attr: int backgroundTintMode +androidx.constraintlayout.widget.R$layout: int abc_tooltip +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int) +android.didikee.donate.R$styleable: int View_android_focusable +org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) +androidx.dynamicanimation.R$id: int normal +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight +androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_toRightOf +androidx.appcompat.R$drawable: int abc_tab_indicator_material +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_checkable +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void dispose() +androidx.hilt.work.R$drawable: int notification_bg_normal +androidx.constraintlayout.widget.R$dimen: int abc_config_prefDialogWidth +com.google.android.material.R$styleable: int ConstraintSet_barrierDirection +com.google.android.material.R$attr: int textColorAlertDialogListItem +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String en_US +androidx.recyclerview.R$id +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabTextStyle +com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getHideRatio() +wangdaye.com.geometricweather.R$style: int Theme_Design_Light_BottomSheetDialog +androidx.recyclerview.R$attr: int fontStyle +com.xw.repo.bubbleseekbar.R$attr: int colorButtonNormal +com.google.android.material.R$styleable: int MotionLayout_applyMotionScene +wangdaye.com.geometricweather.R$styleable: int Chip_chipStartPadding +com.jaredrummler.android.colorpicker.R$styleable: int Preference_enableCopying +com.google.android.material.chip.Chip: void setBackgroundTintList(android.content.res.ColorStateList) +com.google.android.material.R$styleable: int Slider_haloColor +cyanogenmod.app.CustomTile$RemoteExpandedStyle +androidx.lifecycle.extensions.R$dimen: int notification_big_circle_margin +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_strokeWidth +cyanogenmod.app.Profile$NotificationLightMode: Profile$NotificationLightMode() +androidx.drawerlayout.R$attr: int fontProviderFetchStrategy +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int MISSED_STATE +androidx.legacy.coreutils.R$styleable: int[] FontFamilyFont +androidx.appcompat.R$color: int abc_tint_btn_checkable +androidx.constraintlayout.widget.R$dimen: int abc_dialog_corner_radius_material +wangdaye.com.geometricweather.R$id: int unchecked +androidx.recyclerview.R$dimen: int fastscroll_minimum_range +com.amap.api.fence.GeoFence: void setDistrictItemList(java.util.List) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize +wangdaye.com.geometricweather.R$attr: int checkedIconMargin +james.adaptiveicon.R$styleable: int MenuItem_actionProviderClass +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_2_30 +io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Runnable getWrappedRunnable() +androidx.appcompat.resources.R$dimen: int notification_small_icon_background_padding +androidx.loader.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.google.android.material.R$styleable: int[] TextInputLayout +okhttp3.Headers$Builder: okhttp3.Headers$Builder addLenient(java.lang.String) +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: java.lang.String getInterfaceDescriptor() wangdaye.com.geometricweather.R$id: int cpv_hex -androidx.appcompat.R$styleable: int AppCompatTheme_dialogCornerRadius -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -androidx.constraintlayout.widget.VirtualLayout -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionDropDownStyle -io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.SingleObserver) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_RC4_40_MD5 -okhttp3.internal.ws.RealWebSocket: int receivedPongCount() -androidx.appcompat.resources.R$id: int action_container -com.google.android.material.R$styleable: int Constraint_layout_constraintEnd_toEndOf -okhttp3.RealCall: okhttp3.RealCall clone() -cyanogenmod.providers.CMSettings$Global: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) -androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_tailColor -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function,boolean) -androidx.transition.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.R$drawable: int btn_radio_off_to_on_mtrl_animation -android.didikee.donate.R$dimen: R$dimen() -androidx.lifecycle.Lifecycling$1: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_material_light -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_BLUETOOTH -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_begin -retrofit2.Invocation -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void dispose() -androidx.preference.R$style: int Base_Widget_AppCompat_ProgressBar -wangdaye.com.geometricweather.R$id: int widget_clock_day_todayTemp -com.google.android.material.R$id: int design_menu_item_action_area_stub -androidx.work.R$attr -androidx.appcompat.R$dimen: int abc_list_item_padding_horizontal_material -com.jaredrummler.android.colorpicker.R$attr: int switchStyle -androidx.appcompat.resources.R$id: int accessibility_custom_action_28 -androidx.recyclerview.R$dimen: int notification_subtext_size -androidx.appcompat.widget.AppCompatImageView: void setSupportImageTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: int UnitType -com.google.android.gms.common.api.ResolvableApiException: android.app.PendingIntent getResolution() -wangdaye.com.geometricweather.R$color: int foreground_material_dark -cyanogenmod.library.R$attr: int type -com.google.android.material.R$dimen: int mtrl_transition_shared_axis_slide_distance -com.google.android.material.R$styleable: int[] LinearLayoutCompat_Layout -retrofit2.Platform: java.util.List defaultCallAdapterFactories(java.util.concurrent.Executor) -wangdaye.com.geometricweather.R$layout: int material_textinput_timepicker -io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,boolean) -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags -cyanogenmod.externalviews.IExternalViewProvider$Stub: java.lang.String DESCRIPTOR -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: boolean isDisposed() -okhttp3.HttpUrl: java.lang.String query() -wangdaye.com.geometricweather.R$attr: int actionBarTabStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_width -retrofit2.RequestBuilder: void addTag(java.lang.Class,java.lang.Object) -androidx.coordinatorlayout.widget.CoordinatorLayout: void setOnHierarchyChangeListener(android.view.ViewGroup$OnHierarchyChangeListener) -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_statusBarBackground -com.jaredrummler.android.colorpicker.R$attr: int coordinatorLayoutStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar -cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_REVERSE_LOOKUP -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_normal_material_dark -wangdaye.com.geometricweather.R$integer -james.adaptiveicon.R$style: int Widget_AppCompat_Button_Borderless -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconContentDescription -wangdaye.com.geometricweather.R$attr: int paddingBottomSystemWindowInsets -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setThunderstormPrecipitation(java.lang.Float) -androidx.constraintlayout.widget.R$id: int tag_accessibility_actions -james.adaptiveicon.R$attr: int actionModeCutDrawable -androidx.appcompat.R$id: int accessibility_custom_action_30 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_AM_PM_VALIDATOR -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Bridge -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BEGIN_OBJECT -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomNavigationView -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_keylines -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShrinkMotionSpec(com.google.android.material.animation.MotionSpec) -okhttp3.Cache$CacheRequestImpl: boolean done -androidx.recyclerview.R$drawable: int notification_bg -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.String Code -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleTintMode(android.graphics.PorterDuff$Mode) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconMode -wangdaye.com.geometricweather.R$layout: int material_clock_display -com.google.android.material.R$styleable: int AppCompatTheme_actionBarTheme -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_summary -com.google.android.material.R$attr: int drawableSize -james.adaptiveicon.R$attr: int actionModePopupWindowStyle -com.google.android.material.R$style: int Widget_AppCompat_RatingBar -com.xw.repo.bubbleseekbar.R$attr: int titleTextColor -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_28 -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void drain() -io.reactivex.internal.util.EmptyComponent: void cancel() -androidx.appcompat.R$attr: int windowActionBarOverlay -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.CMWeatherManager sInstance -androidx.vectordrawable.R$styleable: int GradientColor_android_gradientRadius -okio.HashingSink: okio.HashingSink hmacSha1(okio.Sink,okio.ByteString) -com.google.android.material.R$attr: int helperTextTextAppearance -cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_ENABLED -androidx.recyclerview.R$dimen: int compat_control_corner_material -androidx.transition.R$attr: int fontWeight -com.turingtechnologies.materialscrollbar.R$attr: int chipIconSize -com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context,android.util.AttributeSet) -androidx.preference.R$styleable: int ActionBar_homeLayout -com.turingtechnologies.materialscrollbar.R$style: int AlertDialog_AppCompat -com.google.android.material.R$attr: int lineSpacing -cyanogenmod.app.ICustomTileListener$Stub -androidx.viewpager2.R$dimen: int notification_top_pad -cyanogenmod.os.Build$CM_VERSION_CODES -com.jaredrummler.android.colorpicker.R$attr: int queryBackground -okio.BufferedSource: int read(byte[]) -android.didikee.donate.R$styleable: int AppCompatImageView_tint -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String unitId -wangdaye.com.geometricweather.R$color: int notification_background_primary -androidx.constraintlayout.widget.R$attr: int homeAsUpIndicator -wangdaye.com.geometricweather.R$attr: int cpv_colorPresets -com.google.android.gms.location.GeofencingRequest: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: AccuCurrentResult$PrecipitationSummary$Past12Hours() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoldLevel() +com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context,android.util.AttributeSet) +androidx.cardview.R$color: int cardview_shadow_end_color +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getRagweedLevel() +com.google.android.material.R$id: int search_bar +androidx.constraintlayout.widget.R$attr: int searchViewStyle +okhttp3.Cookie$Builder: Cookie$Builder() +androidx.constraintlayout.widget.R$styleable: int KeyPosition_drawPath +androidx.constraintlayout.widget.R$styleable: int MenuView_android_horizontalDivider +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean offer(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: AccuCurrentResult$Past24HourTemperatureDeparture$Metric() +cyanogenmod.app.ILiveLockScreenManagerProvider: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +wangdaye.com.geometricweather.R$attr: int contentPaddingLeft +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: int status +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_snackbar_margin_horizontal +wangdaye.com.geometricweather.R$string: int settings_summary_unit +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onActionModeFinished(android.view.ActionMode) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: java.lang.String getNewX() +androidx.core.R$id: int line1 +com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.subscribers.DeferredScalarSubscriber: long serialVersionUID +wangdaye.com.geometricweather.R$id: int material_timepicker_edit_text +wangdaye.com.geometricweather.R$animator: int weather_hail_2 +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_inputType +androidx.constraintlayout.widget.R$attr: int layout_goneMarginEnd +com.xw.repo.bubbleseekbar.R$layout: int abc_select_dialog_material +com.google.android.material.R$drawable: int notification_bg +com.google.android.material.R$id: int dragUp +wangdaye.com.geometricweather.location.services.LocationService: void cancel() +com.xw.repo.bubbleseekbar.R$attr: int paddingEnd +wangdaye.com.geometricweather.R$color: int colorRoot +androidx.customview.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_text_padding_left +wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_large_material +okhttp3.MultipartBody +androidx.core.R$color: int notification_icon_bg_color +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: boolean val$visible +wangdaye.com.geometricweather.R$color: int design_default_color_on_surface +wangdaye.com.geometricweather.R$animator: int weather_thunder_2 +wangdaye.com.geometricweather.db.entities.DailyEntity: void setCo(java.lang.Float) +wangdaye.com.geometricweather.R$drawable: int notif_temp_2 +android.didikee.donate.R$dimen: int abc_action_bar_default_padding_end_material +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getExtendMotionSpec() +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_bar_title_item +com.amap.api.fence.GeoFence: int STATUS_UNKNOWN +androidx.hilt.lifecycle.R$styleable: int Fragment_android_id +wangdaye.com.geometricweather.R$drawable: int notif_temp_94 +wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_range_start +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String notice +okhttp3.internal.http2.Http2Reader$ContinuationSource: int streamId +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarDivider +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int state +com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$styleable: int Layout_minWidth +io.reactivex.internal.util.NotificationLite$DisposableNotification +com.jaredrummler.android.colorpicker.R$style: int Preference_SeekBarPreference +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Suffix +okio.Buffer: void flush() +com.google.android.material.slider.BaseSlider: void setLabelBehavior(int) +okhttp3.internal.http.RealInterceptorChain: okhttp3.Request request +com.google.android.material.chip.Chip: void setIconEndPaddingResource(int) +androidx.hilt.work.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$drawable: int notif_temp_8 +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeCloudCover +androidx.preference.R$attr: int listPreferredItemPaddingStart +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorContentDescription +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode ENHANCE_YOUR_CALM +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator$SavedState: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$attr: int actionBarTabBarStyle +android.didikee.donate.R$id: int scrollView +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float snowPrecipitationProbability +androidx.constraintlayout.widget.R$styleable: int MenuItem_actionViewClass +retrofit2.Invocation: java.util.List arguments +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getNavBarThemePackageName() +androidx.lifecycle.extensions.R$id: int title +okio.GzipSource: okio.InflaterSource inflaterSource +com.amap.api.fence.DistrictItem: java.lang.String getCitycode() +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: RxJava2CallAdapterFactory(io.reactivex.Scheduler,boolean) +com.google.gson.FieldNamingPolicy: java.lang.String separateCamelCase(java.lang.String,java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$color: int error_color_material_dark +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportImageTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.location.utils.LocationException +retrofit2.OkHttpCall$ExceptionCatchingResponseBody +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextTextAppearance +retrofit2.RequestBuilder: java.util.regex.Pattern PATH_TRAVERSAL +androidx.fragment.R$dimen: R$dimen() +androidx.constraintlayout.widget.R$styleable: int PropertySet_android_visibility +androidx.appcompat.R$id: int accessibility_custom_action_1 +com.turingtechnologies.materialscrollbar.R$styleable: int[] StateListDrawable +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_backgroundSplit +androidx.lifecycle.ProcessLifecycleOwner: android.os.Handler mHandler +com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeTopRight +cyanogenmod.weather.WeatherInfo: double mTodaysHighTemp +com.google.gson.stream.JsonWriter: void push(int) +androidx.appcompat.R$styleable: int ActionBar_homeLayout +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_LABEL +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Caption +com.bumptech.glide.R$styleable: int FontFamily_fontProviderFetchTimeout +okhttp3.Cookie: java.lang.String domain() +com.google.android.material.textfield.TextInputLayout: void removeOnEditTextAttachedListener(com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener) +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_BLUE_INDEX +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarStyle +wangdaye.com.geometricweather.R$layout: int abc_popup_menu_item_layout +cyanogenmod.providers.CMSettings$Secure: java.lang.String POWER_MENU_ACTIONS +androidx.customview.R$attr: int ttcIndex +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setUnit(java.lang.String) +androidx.preference.R$styleable: int DrawerArrowToggle_barLength +james.adaptiveicon.R$drawable: int abc_seekbar_track_material +androidx.preference.R$style: int Widget_AppCompat_ListView +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_logo +androidx.recyclerview.R$attr: int fontProviderPackage +androidx.transition.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearStyle +androidx.loader.R$dimen: int notification_right_side_padding_top +androidx.appcompat.R$attr: int actionModeShareDrawable +wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +io.reactivex.internal.util.NotificationLite: java.lang.Throwable getError(java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.Integer cloudCover +wangdaye.com.geometricweather.R$drawable: int notif_temp_59 +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: MfLocationResult() +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int UNKNOWN +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getWeatherText() +com.jaredrummler.android.colorpicker.R$style: int Base_V22_Theme_AppCompat +androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_velocityMode +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_DES_CBC_SHA +wangdaye.com.geometricweather.R$string: int settings_summary_live_wallpaper +com.google.android.material.R$layout: int design_layout_snackbar_include +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_Search +com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_padding_vertical_material +com.google.android.material.R$styleable: int Chip_chipIconTint +androidx.fragment.app.FragmentManager +james.adaptiveicon.R$attr: int autoSizePresetSizes +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +androidx.preference.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast +androidx.vectordrawable.R$id: int icon +androidx.appcompat.R$drawable: int notify_panel_notification_icon_bg +androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setIndicatorPosition(int) +cyanogenmod.app.CustomTileListenerService: void unregisterAsSystemService() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat +androidx.constraintlayout.widget.R$dimen: int abc_control_inset_material +io.reactivex.Observable: io.reactivex.Observable cast(java.lang.Class) +okhttp3.internal.cache.CacheInterceptor$1 +com.autonavi.aps.amapapi.model.AMapLocationServer: void a(org.json.JSONObject) +wangdaye.com.geometricweather.R$color: int mtrl_textinput_default_box_stroke_color +androidx.preference.R$styleable: int DialogPreference_android_dialogMessage +com.google.android.material.R$attr: int shapeAppearanceOverlay +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_right_mtrl_dark +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_radius +retrofit2.RequestBuilder: okhttp3.HttpUrl baseUrl +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void rstStream(int,okhttp3.internal.http2.ErrorCode) +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean removeProfile(cyanogenmod.app.Profile) +wangdaye.com.geometricweather.R$string: int feedback_running_in_background +androidx.lifecycle.extensions.R$styleable: int Fragment_android_tag +okio.RealBufferedSource: java.lang.String readUtf8(long) +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onError(java.lang.Throwable) +androidx.preference.R$styleable: int AppCompatTheme_spinnerStyle +androidx.lifecycle.Transformations$2: void onChanged(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_creator +androidx.appcompat.R$styleable: int MenuItem_android_onClick +cyanogenmod.hardware.CMHardwareManager: int getNumGammaControls() +androidx.preference.R$styleable: int AppCompatTheme_actionModeBackground +cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.CustomTile customTile +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType RAW +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalGap +okhttp3.Cache: int requestCount +androidx.hilt.work.R$drawable: int notification_tile_bg +com.google.android.material.R$attr: int actionViewClass +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Alert_Bridge +com.turingtechnologies.materialscrollbar.R$attr: int editTextColor +wangdaye.com.geometricweather.R$attr: int layout_goneMarginStart +com.jaredrummler.android.colorpicker.R$drawable: int abc_item_background_holo_dark +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +androidx.appcompat.R$drawable: int abc_list_selector_holo_light +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.Scheduler$Worker worker +com.bumptech.glide.R$dimen: int compat_button_padding_vertical_material +androidx.constraintlayout.widget.R$styleable: int[] MotionHelper +wangdaye.com.geometricweather.R$attr: int errorIconTintMode +androidx.appcompat.R$styleable: int MenuView_android_headerBackground +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.appcompat.R$color: int material_grey_600 +androidx.preference.R$styleable: int PreferenceTheme_preferenceCategoryStyle +android.didikee.donate.R$styleable: int AppCompatTheme_listPopupWindowStyle +com.google.android.material.R$dimen: R$dimen() +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String Type +com.google.android.material.R$styleable: int Chip_chipBackgroundColor +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeStyle +com.google.android.gms.common.internal.ReflectedParcelable +okio.Buffer: long indexOfElement(okio.ByteString) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit MMHG +androidx.constraintlayout.widget.R$string: int abc_action_menu_overflow_description +android.didikee.donate.R$id: int search_bar +okio.SegmentedByteString: byte[] toByteArray() +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: int count +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitation +androidx.appcompat.R$styleable: int AppCompatTextView_fontFamily +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_left_mtrl_dark +wangdaye.com.geometricweather.R$styleable: int Chip_ensureMinTouchTargetSize +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$styleable: int Variant_region_widthLessThan +androidx.constraintlayout.utils.widget.MotionTelltales +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_splitTrack +okhttp3.internal.http2.Http2Connection$ReaderRunnable: okhttp3.internal.http2.Http2Connection this$0 +androidx.constraintlayout.widget.R$styleable: int SearchView_android_imeOptions +androidx.loader.R$style: int TextAppearance_Compat_Notification_Info +okio.ByteString: int indexOf(okio.ByteString,int) +com.xw.repo.bubbleseekbar.R$style: int Base_V28_Theme_AppCompat +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String unit +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String logo +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_btn_ripple_color +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemTextColor +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackground(android.graphics.drawable.Drawable) +androidx.work.R$attr +com.google.android.material.R$style: int Theme_AppCompat_CompactMenu +com.amap.api.location.AMapLocationClientOption: boolean isSensorEnable() +james.adaptiveicon.R$styleable: int ActionBar_contentInsetRight +com.google.android.material.R$attr: int shapeAppearanceMediumComponent +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTheme +androidx.swiperefreshlayout.R$id: int text2 +com.turingtechnologies.materialscrollbar.R$id: int labeled +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_ActionBar +com.bumptech.glide.R$integer +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isSubActive +com.google.android.material.transformation.ExpandableBehavior +androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogCenterButtons +wangdaye.com.geometricweather.R$anim: int abc_popup_enter +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginStart +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low_pressed +okhttp3.internal.ws.RealWebSocket$PingRunnable: RealWebSocket$PingRunnable(okhttp3.internal.ws.RealWebSocket) +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItem +com.jaredrummler.android.colorpicker.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Badge +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +com.google.android.material.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize +wangdaye.com.geometricweather.R$id: int test_checkbox_android_button_tint +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_android_windowAnimationStyle +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration precipitationDuration +com.jaredrummler.android.colorpicker.R$attr: int alphabeticModifiers +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onNext(java.lang.Object) +androidx.viewpager2.R$id: int accessibility_custom_action_15 +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +android.didikee.donate.R$drawable: int abc_ratingbar_small_material +androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge +okhttp3.internal.http2.Http2Connection$PingRunnable: boolean reply +okio.RealBufferedSource$1: int read(byte[],int,int) +com.jaredrummler.android.colorpicker.R$id: int actions +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_vertical_2lines +androidx.constraintlayout.widget.R$color: int bright_foreground_inverse_material_dark +wangdaye.com.geometricweather.R$style: int widget_text_clock_aa +com.google.android.material.R$styleable: int Constraint_layout_constraintCircleRadius +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton_CloseMode +com.turingtechnologies.materialscrollbar.R$drawable: int design_fab_background +com.turingtechnologies.materialscrollbar.R$drawable: int indicator +io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Thread runner +androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.FragmentActivity,androidx.lifecycle.ViewModelProvider$Factory) +androidx.appcompat.R$style: int Base_V26_Widget_AppCompat_Toolbar +com.google.android.material.R$attr: int maxWidth +androidx.dynamicanimation.R$dimen: int notification_action_icon_size +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getPowerProfile +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property HourlyForecast +wangdaye.com.geometricweather.R$attr: int itemRippleColor +androidx.hilt.lifecycle.R$id: int notification_main_column +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_percent +cyanogenmod.alarmclock.ClockContract$CitiesColumns +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider[] values() +wangdaye.com.geometricweather.common.ui.transitions.RoundCornerTransition +wangdaye.com.geometricweather.R$string: int settings_notification_hide_big_view_on +androidx.preference.R$styleable: int AppCompatTextView_drawableTopCompat +retrofit2.Converter$Factory: java.lang.Class getRawType(java.lang.reflect.Type) +okhttp3.internal.connection.RealConnection: int MAX_TUNNEL_ATTEMPTS +androidx.viewpager.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +com.google.android.material.R$styleable: int Slider_thumbStrokeWidth +wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onComplete() +com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_FENCE +wangdaye.com.geometricweather.R$layout: int cpv_preference_circle +androidx.preference.R$attr: int fontVariationSettings +androidx.fragment.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX() +androidx.preference.R$drawable: int abc_ab_share_pack_mtrl_alpha +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: int index +com.google.android.material.R$styleable: int MenuItem_android_icon +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Consumer) +okio.Timeout: okio.Timeout NONE +cyanogenmod.providers.ThemesContract$MixnMatchColumns +wangdaye.com.geometricweather.R$attr: int textInputStyle +okhttp3.CacheControl$Builder +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionMenuTextColor +com.google.android.material.R$attr: int warmth +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids +wangdaye.com.geometricweather.R$styleable: int[] KeyTimeCycle +wangdaye.com.geometricweather.R$xml: int perference_notification_color +okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory sslSocketFactory +cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_VISUALIZER_ENABLED +cyanogenmod.app.LiveLockScreenInfo$Builder: int mPriority +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode[] values() +com.google.android.material.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: int type -com.google.android.material.R$color: int mtrl_bottom_nav_colored_ripple_color -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: java.lang.Long set -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property District -com.google.android.material.R$styleable: int Constraint_flow_firstVerticalBias -androidx.hilt.lifecycle.R$styleable: int FragmentContainerView_android_name -wangdaye.com.geometricweather.R$dimen: int fastscroll_margin -com.google.android.material.R$styleable: int Chip_chipIconTint -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -androidx.hilt.R$id: int accessibility_custom_action_16 -com.xw.repo.bubbleseekbar.R$drawable: int abc_tab_indicator_material -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -androidx.appcompat.R$drawable: int abc_ic_menu_overflow_material -androidx.appcompat.R$drawable: int abc_action_bar_item_background_material -com.xw.repo.bubbleseekbar.R$dimen: int abc_search_view_preferred_width -wangdaye.com.geometricweather.R$id: int item_card_display_deleteBtn -wangdaye.com.geometricweather.R$string: int uv_index -com.bumptech.glide.integration.okhttp.R$styleable: int[] FontFamilyFont -okhttp3.HttpUrl: okhttp3.HttpUrl get(java.net.URI) -okhttp3.internal.platform.AndroidPlatform: void logCloseableLeak(java.lang.String,java.lang.Object) -io.reactivex.internal.subscriptions.BasicQueueSubscription: void clear() -io.reactivex.internal.functions.Functions$HashSetCallable: java.util.Set call() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: AccuCurrentResult$DewPoint() -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long skip -androidx.transition.R$attr: int fontStyle -james.adaptiveicon.R$attr: int listPreferredItemPaddingLeft -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_7 -okhttp3.internal.http2.Http2Connection: long access$708(okhttp3.internal.http2.Http2Connection) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf +wangdaye.com.geometricweather.R$attr: int background_color +com.amap.api.location.AMapLocationQualityReport: void setGPSSatellites(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_38 +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_CompactMenu +com.google.gson.internal.JsonReaderInternalAccess: void promoteNameToValue(com.google.gson.stream.JsonReader) +wangdaye.com.geometricweather.R$attr: int percentY +android.support.v4.app.INotificationSideChannel: void cancelAll(java.lang.String) +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeStyle +cyanogenmod.profiles.LockSettings$1: cyanogenmod.profiles.LockSettings createFromParcel(android.os.Parcel) +androidx.preference.R$styleable: int[] SwitchCompat +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setCircularRevealScrimColor(int) +cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: int KPH +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String timezone +com.bumptech.glide.R$style: R$style() +androidx.constraintlayout.widget.R$styleable: int KeyPosition_curveFit +okio.AsyncTimeout: void enter() +android.didikee.donate.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_light +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_als +com.jaredrummler.android.colorpicker.R$dimen: int abc_select_dialog_padding_start_material +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getLockWallpaperThemePackageName() +wangdaye.com.geometricweather.R$string: int mtrl_picker_a11y_prev_month +com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_ripple_color +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory create(javax.inject.Provider,javax.inject.Provider) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +wangdaye.com.geometricweather.R$color: int design_dark_default_color_secondary_variant +androidx.coordinatorlayout.R$id: int accessibility_custom_action_13 +androidx.hilt.R$id: int accessibility_custom_action_4 +com.turingtechnologies.materialscrollbar.R$attr: int queryHint +com.google.android.material.R$id: int bottom +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotationY +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeDegreeDayTemperature +androidx.appcompat.widget.SearchView: void setMaxWidth(int) +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_switch +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_entryValues +wangdaye.com.geometricweather.db.entities.DailyEntity: int daytimeTemperature +androidx.work.R$attr: int fontProviderQuery +com.google.android.material.R$dimen: int mtrl_calendar_action_padding +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +wangdaye.com.geometricweather.R$id: int middle +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_color +wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_1 +androidx.lifecycle.ServiceLifecycleDispatcher: android.os.Handler mHandler +androidx.lifecycle.extensions.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.R$id: int star_1 +com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$attr: int backgroundTintMode +wangdaye.com.geometricweather.R$id: int notification_big_icon_3 +androidx.cardview.widget.CardView: void setPreventCornerOverlap(boolean) +wangdaye.com.geometricweather.R$id: int switchWidget +cyanogenmod.externalviews.KeyguardExternalView$3: cyanogenmod.externalviews.KeyguardExternalView this$0 +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: boolean inCompletable +cyanogenmod.app.CustomTile$GridExpandedStyle: void setGridItems(java.util.ArrayList) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SearchView_ActionBar +androidx.recyclerview.R$style: R$style() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: AccuCurrentResult$PrecipitationSummary$Precipitation$Metric() +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Line2 +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +androidx.appcompat.R$attr: int progressBarPadding +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_navigationMode +android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogTheme +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView +androidx.lifecycle.viewmodel.R +androidx.activity.R$id: int italic +com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context,android.util.AttributeSet,int) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.constraintlayout.widget.R$attr: int colorSwitchThumbNormal +androidx.preference.R$id: int end +wangdaye.com.geometricweather.R$layout: int item_weather_daily_line +com.turingtechnologies.materialscrollbar.R$attr: int colorPrimaryDark +com.turingtechnologies.materialscrollbar.R$styleable: int View_android_theme +androidx.preference.R$styleable: int SeekBarPreference_adjustable +wangdaye.com.geometricweather.R$styleable: int LiveLockScreen_settingsActivity +com.turingtechnologies.materialscrollbar.R$styleable: int[] SearchView +androidx.preference.R$style: int Preference_DropDown +com.google.android.material.internal.ScrimInsetsFrameLayout: void setDrawBottomInsetForeground(boolean) +com.jaredrummler.android.colorpicker.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: double Value +okhttp3.HttpUrl: java.lang.String encodedQuery() +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +android.didikee.donate.R$layout: int notification_template_custom_big +com.turingtechnologies.materialscrollbar.R$id: int right_side +com.jaredrummler.android.colorpicker.R$attr: int progressBarPadding +com.google.android.material.R$styleable: int CompoundButton_buttonTintMode +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitationDuration +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_1 +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void drainNormal() +com.google.android.material.R$attr: int alertDialogStyle +retrofit2.ParameterHandler$Header: java.lang.String name +androidx.lifecycle.extensions.R$id: int tag_accessibility_pane_title +wangdaye.com.geometricweather.R$attr: int telltales_tailColor +androidx.appcompat.R$styleable: int[] Spinner +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_105 +androidx.preference.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_backgroundTint +com.google.android.material.R$attr: int boxBackgroundColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: java.lang.String Unit +com.turingtechnologies.materialscrollbar.R$id: int progress_circular +com.jaredrummler.android.colorpicker.R$id: int info +androidx.vectordrawable.animated.R$style +androidx.lifecycle.ServiceLifecycleDispatcher +androidx.preference.R$attr: int toolbarNavigationButtonStyle +android.didikee.donate.R$layout: int abc_screen_toolbar +wangdaye.com.geometricweather.R$integer: int cancel_button_image_alpha +wangdaye.com.geometricweather.R$layout: int preference_category +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeShareDrawable +retrofit2.Invocation: Invocation(java.lang.reflect.Method,java.util.List) +wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_multichoice +com.jaredrummler.android.colorpicker.R$color: int abc_tint_btn_checkable +androidx.constraintlayout.widget.R$styleable: int[] AppCompatTextView +io.reactivex.internal.observers.BasicIntQueueDisposable: java.lang.Object poll() +com.jaredrummler.android.colorpicker.R$id: int transparency_text +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSearchResultTitle +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List minutelyEntityList +androidx.preference.R$attr: int tint +james.adaptiveicon.R$attr: int fontProviderCerts +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_maxWidth +androidx.preference.R$attr: int listChoiceIndicatorSingleAnimated +com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_inflatedId +wangdaye.com.geometricweather.R$string: int feedback_interpret_notification_group_title +com.google.android.material.timepicker.ChipTextInputComboView +okhttp3.internal.cache.CacheStrategy +com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$style: int cpv_ColorPickerViewStyle +okhttp3.Authenticator$1: Authenticator$1() +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +androidx.preference.R$attr: int layout_anchor +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onStop +com.google.android.material.R$styleable: int Constraint_layout_constraintRight_toRightOf +androidx.lifecycle.LifecycleRegistryOwner +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean active +wangdaye.com.geometricweather.R$dimen: int abc_select_dialog_padding_start_material +com.google.android.material.R$dimen: int tooltip_vertical_padding +io.reactivex.internal.disposables.DisposableHelper: boolean isDisposed() +android.didikee.donate.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixTextColor +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_keyline +androidx.fragment.R$id: int accessibility_custom_action_2 +okhttp3.internal.ws.WebSocketWriter +wangdaye.com.geometricweather.R$styleable: int[] CollapsingToolbarLayout +okhttp3.internal.cache.DiskLruCache: java.util.concurrent.Executor executor +android.didikee.donate.R$styleable: int ActionBar_backgroundStacked +com.xw.repo.bubbleseekbar.R$style: int Platform_V25_AppCompat +androidx.preference.R$styleable: int[] Spinner +okhttp3.Request: okhttp3.RequestBody body() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +james.adaptiveicon.R$attr: int actionModeWebSearchDrawable +com.google.gson.stream.JsonWriter: java.lang.String[] REPLACEMENT_CHARS +androidx.appcompat.R$dimen: int abc_cascading_menus_min_smallest_width +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_max +james.adaptiveicon.R$id: int checkbox +androidx.coordinatorlayout.R$id: int accessibility_custom_action_1 +wangdaye.com.geometricweather.R$transition: int search_activity_return +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +androidx.preference.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +okhttp3.RealCall: boolean isCanceled() +com.google.android.material.R$attr: int statusBarForeground +com.google.android.material.R$animator: int linear_indeterminate_line1_tail_interpolator +okhttp3.internal.http.StatusLine: okhttp3.Protocol protocol +androidx.fragment.app.FragmentTabHost: void setOnTabChangedListener(android.widget.TabHost$OnTabChangeListener) +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_translation_z_hovered_focused +okio.HashingSink: okio.HashingSink sha512(okio.Sink) +io.reactivex.Observable: io.reactivex.Observable takeUntil(io.reactivex.functions.Predicate) +wangdaye.com.geometricweather.R$drawable: int weather_rain_3 +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onComplete() +com.amap.api.location.AMapLocation: java.lang.String k(com.amap.api.location.AMapLocation,java.lang.String) +android.didikee.donate.R$styleable: int Spinner_android_dropDownWidth +androidx.constraintlayout.widget.R$attr: int visibilityMode +cyanogenmod.themes.ThemeManager: void requestThemeChange(java.util.Map,boolean) +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +com.google.android.material.R$color: int design_dark_default_color_on_error +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: AccuAqiResult() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonSetDate +com.xw.repo.bubbleseekbar.R$styleable: int[] GradientColor +com.google.gson.stream.JsonReader: int PEEKED_BEGIN_OBJECT +okio.AsyncTimeout: int TIMEOUT_WRITE_SIZE +cyanogenmod.app.CustomTile$1 +james.adaptiveicon.R$style: int Widget_AppCompat_PopupWindow +com.baidu.location.indoor.mapversion.c.a$d: void b(java.lang.String) +androidx.swiperefreshlayout.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object getKey(java.lang.Object) +com.jaredrummler.android.colorpicker.R$dimen: int abc_control_inset_material +com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +androidx.fragment.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit IN +androidx.appcompat.R$attr: int editTextStyle +retrofit2.adapter.rxjava2.package-info +com.google.android.material.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.R$attr: int horizontalOffset +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_typeface +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +okio.Buffer$2: int read(byte[],int,int) +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf +com.google.android.material.R$styleable: int ImageFilterView_contrast +com.google.android.material.internal.NavigationMenuItemView: void setIconSize(int) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterTextAppearance +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dividerHorizontal +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String BOOT_ANIM_URI +com.bumptech.glide.R$id: int glide_custom_view_target_tag +wangdaye.com.geometricweather.common.basic.models.weather.History: int getNighttimeTemperature() +okhttp3.internal.http1.Http1Codec$FixedLengthSink: boolean closed +retrofit2.converter.gson.GsonRequestBodyConverter: okhttp3.RequestBody convert(java.lang.Object) +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State[] values() +androidx.appcompat.R$dimen: int abc_text_size_subhead_material +okhttp3.OkHttpClient: okhttp3.EventListener$Factory eventListenerFactory() +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_curveFit +androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_Tooltip +okio.InflaterSource: long read(okio.Buffer,long) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setPrecipitation(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean) +com.google.gson.stream.JsonReader: int[] pathIndices +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleContentDescription +com.google.android.material.R$styleable: int[] Badge +okio.Buffer: int read(byte[],int,int) +android.didikee.donate.R$attr: int dialogTheme +androidx.vectordrawable.R$dimen: int notification_small_icon_size_as_large +com.google.android.material.internal.CheckableImageButton$SavedState +org.greenrobot.greendao.database.DatabaseOpenHelper: void onCreate(org.greenrobot.greendao.database.Database) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_always_show_bubble +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String nextAT() +okhttp3.internal.platform.AndroidPlatform: int MAX_LOG_LENGTH +io.reactivex.internal.util.HashMapSupplier +com.amap.api.location.AMapLocationClientOption: float getDeviceModeDistanceFilter() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setFillColor(int) +okhttp3.internal.NamedRunnable: void run() +androidx.appcompat.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +androidx.hilt.lifecycle.R$id: int right_side +wangdaye.com.geometricweather.R$drawable: int ic_filter_off +androidx.constraintlayout.widget.R$attr: int crossfade +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: double lat +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_unselected +androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnStart() +io.reactivex.Observable: io.reactivex.Completable ignoreElements() +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_dark +com.google.android.material.appbar.AppBarLayout: void setOrientation(int) +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_color +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ProgressBar +wangdaye.com.geometricweather.R$string: int feedback_resident_location +okio.ForwardingTimeout: okio.Timeout deadlineNanoTime(long) +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setWeatherCondition(int) +io.reactivex.Observable: io.reactivex.Single reduce(java.lang.Object,io.reactivex.functions.BiFunction) +com.google.android.material.R$attr: int customFloatValue +androidx.appcompat.R$color: int bright_foreground_disabled_material_dark +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_percent +com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorCornerRadius() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: double Value +android.didikee.donate.R$color: int material_blue_grey_950 +cyanogenmod.externalviews.KeyguardExternalView$4 +com.google.android.material.button.MaterialButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +androidx.fragment.R$anim: int fragment_close_exit +com.xw.repo.bubbleseekbar.R$id: int action_menu_presenter +cyanogenmod.externalviews.ExternalViewProperties +com.google.android.material.R$styleable: int[] MaterialCardView +com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_RadioButton +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabText +androidx.appcompat.R$styleable: int Toolbar_contentInsetEndWithActions +okhttp3.internal.ws.RealWebSocket: java.lang.String key +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.concurrent.atomic.AtomicInteger active +androidx.legacy.coreutils.R$dimen: int notification_media_narrow_margin +androidx.appcompat.R$id: int search_button +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight +androidx.lifecycle.ComputableLiveData: void invalidate() +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_elevation +okhttp3.Headers: Headers(java.lang.String[]) +com.google.android.material.R$id: int action_mode_bar_stub +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getCheckedIcon() +androidx.hilt.lifecycle.R$drawable: int notification_bg_low_pressed +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabView +cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,int,int) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$id: int widget_week_icon_5 +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String toStr() +com.loc.k: java.lang.String c +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setDistanceToTriggerSync(int) +james.adaptiveicon.R$attr: int actionBarDivider +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +androidx.constraintlayout.widget.R$id: int action_mode_bar_stub +com.google.android.material.R$attr: int popupMenuStyle +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$attr: int showMotionSpec +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.WeatherEntityDao weatherEntityDao +com.google.android.material.R$color: int button_material_light +android.didikee.donate.R$attr: int dialogPreferredPadding +androidx.preference.R$style: int Preference_Category_Material +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String THEME_ID +com.google.android.material.floatingactionbutton.FloatingActionButton: void setElevation(float) +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void trySchedule() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: java.lang.Long rise +androidx.lifecycle.process.R +com.google.android.material.R$styleable: int Chip_chipIconEnabled +androidx.appcompat.R$style: int Base_AlertDialog_AppCompat +com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context) +com.jaredrummler.android.colorpicker.R$attr: int alertDialogStyle +androidx.preference.R$attr: int orderingFromXml +com.google.android.material.R$styleable: int TextInputLayout_android_hint +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.MinutelyEntity,long) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: AccuCurrentResult$ApparentTemperature$Imperial() +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog_MinWidth +androidx.lifecycle.extensions.R$layout +androidx.appcompat.R$attr: int actionViewClass +okio.RealBufferedSink: void close() +wangdaye.com.geometricweather.R$layout: int notification_big +com.loc.k: java.lang.String b() +com.google.android.material.slider.BaseSlider: float getThumbElevation() +cyanogenmod.power.PerformanceManager: cyanogenmod.power.PerformanceManager getInstance(android.content.Context) +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +com.turingtechnologies.materialscrollbar.R$bool: int mtrl_btn_textappearance_all_caps +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_4_material +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActivityChooserView +androidx.preference.R$id: int action_bar_title +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorPrimary +androidx.dynamicanimation.R$id: int action_image +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: int UnitType +io.reactivex.Observable: io.reactivex.Single toSortedList(java.util.Comparator,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed Speed +com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int State_android_id +com.google.gson.stream.JsonReader: int nextNonWhitespace(boolean) +androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_activated_mtrl_alpha +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActivityChooserView +com.google.android.material.R$drawable: int material_ic_calendar_black_24dp +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void run() +james.adaptiveicon.R$attr: int height +android.didikee.donate.R$style: int Widget_AppCompat_ImageButton +androidx.constraintlayout.widget.R$attr: int popupMenuStyle +james.adaptiveicon.R$color: int ripple_material_dark +android.didikee.donate.R$styleable: int SearchView_android_inputType +com.xw.repo.bubbleseekbar.R$attr: int bsb_always_show_bubble +com.xw.repo.bubbleseekbar.R$attr: int buttonIconDimen +wangdaye.com.geometricweather.R$id: int activity_allergen_container +com.xw.repo.bubbleseekbar.R$string: R$string() +wangdaye.com.geometricweather.R$drawable: int dialog_background +androidx.preference.R$style: int Widget_AppCompat_PopupMenu +androidx.preference.R$styleable: int LinearLayoutCompat_measureWithLargestChild +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_tint +androidx.constraintlayout.widget.R$string: int abc_menu_function_shortcut_label +okhttp3.ConnectionSpec$Builder: java.lang.String[] cipherSuites +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level[] $VALUES +androidx.core.R$style: int TextAppearance_Compat_Notification +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_alphabeticShortcut +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display4 +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemStrokeWidth +com.baidu.location.e.n: java.util.List a(org.json.JSONObject,java.lang.String,int) +androidx.constraintlayout.widget.R$layout: int notification_action +okhttp3.internal.connection.RealConnection: void connect(int,int,int,int,boolean,okhttp3.Call,okhttp3.EventListener) +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void replay(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Dialog +androidx.preference.R$styleable: int RecyclerView_reverseLayout +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy[] values() +james.adaptiveicon.R$styleable: int MenuItem_actionViewClass +com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonPhaseAngle +okio.RealBufferedSource: boolean request(long) +androidx.viewpager2.R$styleable: int RecyclerView_android_clipToPadding +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_disabled_material_dark +androidx.appcompat.widget.AppCompatImageButton: android.graphics.PorterDuff$Mode getSupportImageTintMode() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy +cyanogenmod.library.R: R() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +com.google.android.material.R$attr: int drawableStartCompat +androidx.appcompat.R$attr: int fontFamily +com.google.android.material.R$drawable: int design_snackbar_background +com.autonavi.aps.amapapi.model.AMapLocationServer: boolean i() +com.google.android.material.R$attr: int windowNoTitle +retrofit2.http.FieldMap +wangdaye.com.geometricweather.R$styleable: int[] MotionLayout +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +androidx.loader.R$id: R$id() +androidx.constraintlayout.widget.R$id: int tabMode wangdaye.com.geometricweather.R$styleable: int MaterialButton_elevation -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_goIcon -james.adaptiveicon.R$styleable: int MenuItem_android_visible -okhttp3.Cache: void abortQuietly(okhttp3.internal.cache.DiskLruCache$Editor) -james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton_Overflow -androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$styleable: int PreferenceTheme_seekBarPreferenceStyle -androidx.preference.R$attr: int layout_insetEdge -com.google.android.material.R$styleable: int[] TextInputEditText -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) -wangdaye.com.geometricweather.R$id: int dragEnd -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Button -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light -com.jaredrummler.android.colorpicker.R$id: int regular -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf -com.google.android.gms.common.internal.zaw -androidx.constraintlayout.widget.R$drawable: int abc_ab_share_pack_mtrl_alpha -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dark -androidx.lifecycle.Observer -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_elevation -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_listItemLayout -androidx.viewpager2.R$dimen -com.bumptech.glide.R$attr -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Surface -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_item_min_width -io.reactivex.Observable: io.reactivex.Observable throttleLast(long,java.util.concurrent.TimeUnit) -com.xw.repo.bubbleseekbar.R$attr: int buttonBarStyle -okio.BufferedSource: boolean request(long) -androidx.lifecycle.extensions.R$integer: R$integer() -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacing -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NAME +wangdaye.com.geometricweather.R$drawable: int abc_list_pressed_holo_dark +com.google.android.material.imageview.ShapeableImageView: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +io.reactivex.internal.util.ArrayListSupplier: java.util.concurrent.Callable asCallable() +okhttp3.HttpUrl$Builder: boolean isDotDot(java.lang.String) +androidx.appcompat.widget.ActivityChooserView$InnerLayout: ActivityChooserView$InnerLayout(android.content.Context,android.util.AttributeSet) +androidx.fragment.R$id: int action_divider +wangdaye.com.geometricweather.R$styleable: int[] ActionMode +james.adaptiveicon.R$id: int action_divider +okhttp3.internal.http2.Http2Stream: okio.Sink getSink() +com.xw.repo.bubbleseekbar.R$attr: int defaultQueryHint +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder onlyIfCached() +com.turingtechnologies.materialscrollbar.R$drawable: int notification_tile_bg +android.didikee.donate.R$attr: int buttonBarPositiveButtonStyle +androidx.legacy.coreutils.R$dimen: int notification_action_icon_size +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display2 +androidx.preference.R$attr: int progressBarPadding +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.Headers,okhttp3.RequestBody) +okhttp3.WebSocketListener: void onClosing(okhttp3.WebSocket,int,java.lang.String) +com.google.android.material.R$styleable: int ConstraintSet_android_rotationX +android.didikee.donate.R$styleable: int ActionBar_homeAsUpIndicator +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$id: int bottomRecyclerView +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeight +cyanogenmod.weather.WeatherInfo: int mTempUnit +okhttp3.Address: Address(java.lang.String,int,okhttp3.Dns,javax.net.SocketFactory,javax.net.ssl.SSLSocketFactory,javax.net.ssl.HostnameVerifier,okhttp3.CertificatePinner,okhttp3.Authenticator,java.net.Proxy,java.util.List,java.util.List,java.net.ProxySelector) +cyanogenmod.app.Profile: void setAirplaneMode(cyanogenmod.profiles.AirplaneModeSettings) +androidx.appcompat.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +james.adaptiveicon.R$attr: int backgroundTintMode +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy +com.google.gson.FieldNamingPolicy: java.lang.String translateName(java.lang.reflect.Field) +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_2 android.didikee.donate.R$integer: int abc_config_activityShortDur -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial Imperial -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_default_mtrl_alpha -wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_horizontal_padding -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_switchPreferenceStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_padding_horizontal -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Small -james.adaptiveicon.R$attr: int actionBarItemBackground -com.google.android.material.R$string: int mtrl_chip_close_icon_content_description -androidx.fragment.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_24 -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_48dp -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -com.google.android.material.slider.RangeSlider: void setTrackHeight(int) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: boolean val$visible -org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory,int) -wangdaye.com.geometricweather.R$attr: int behavior_hideable -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setPrecipitationProbability(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean) -androidx.constraintlayout.widget.R$string: int abc_action_mode_done -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeBackground -com.google.android.material.appbar.AppBarLayout: int getPendingAction() -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_BottomSheet -com.google.android.material.R$string: int mtrl_picker_text_input_date_range_start_hint -wangdaye.com.geometricweather.R$array: int speed_unit_voices -com.google.android.material.R$styleable: int MaterialButton_iconGravity -com.google.android.material.R$attr: int layout_constraintWidth_default -com.jaredrummler.android.colorpicker.R$styleable: int[] MenuGroup -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.ChineseCityEntity) -androidx.constraintlayout.widget.R$attr: int layout_constraintEnd_toEndOf -com.amap.api.fence.GeoFenceClient: boolean isPause() -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_US -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver inner -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivityStopped(android.app.Activity) -androidx.appcompat.R$id: int accessibility_custom_action_7 -com.google.android.material.R$attr: int flow_padding -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -androidx.dynamicanimation.R$styleable: int FontFamilyFont_font -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -okio.SegmentedByteString: java.lang.String utf8() -com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_default -androidx.preference.R$styleable: int MenuView_preserveIconSpacing -wangdaye.com.geometricweather.R$string: int settings_title_dark_mode -com.bumptech.glide.integration.okhttp.R$attr: int layout_keyline -com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_800 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: double Value -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCutDrawable -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_android_minHeight -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_delete_shortcut_label -com.baidu.location.indoor.c: c(int) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeWetBulbTemperature -com.google.gson.stream.JsonReader: long MIN_INCOMPLETE_INTEGER -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver,java.lang.Throwable) +com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Solid +com.turingtechnologies.materialscrollbar.R$attr: int iconPadding +androidx.customview.R$layout +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_drawPath +okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache this$0 +com.google.android.material.R$dimen: int mtrl_extended_fab_icon_text_spacing +androidx.constraintlayout.widget.R$id: int wrap +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +androidx.constraintlayout.widget.R$color: int material_grey_850 +androidx.preference.R$drawable: int btn_checkbox_checked_mtrl +com.jaredrummler.android.colorpicker.R$dimen: int abc_button_padding_horizontal_material +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +androidx.core.R$drawable: int notification_bg_low_normal +cyanogenmod.app.Profile: void readFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfRain +com.google.android.material.R$styleable: int ChipGroup_chipSpacingVertical +io.reactivex.internal.observers.DeferredScalarDisposable: void error(java.lang.Throwable) +androidx.appcompat.view.menu.ActionMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() +androidx.lifecycle.Transformations$2$1 +cyanogenmod.app.ProfileManager: int PROFILES_STATE_ENABLED +okhttp3.HttpUrl: java.lang.String PATH_SEGMENT_ENCODE_SET_URI +android.didikee.donate.R$color: int bright_foreground_disabled_material_dark +okhttp3.internal.http2.Http2Stream$FramingSource: boolean closed +okhttp3.internal.tls.OkHostnameVerifier: java.util.List getSubjectAltNames(java.security.cert.X509Certificate,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.List getDefense() +okio.Buffer: okio.ByteString hmac(java.lang.String,okio.ByteString) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWetBulbTemperature(java.lang.Integer) +james.adaptiveicon.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String windspeed +androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_horizontal_material +wangdaye.com.geometricweather.R$layout: int abc_activity_chooser_view_list_item +com.google.android.material.R$color: int design_dark_default_color_secondary +cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile[] getProfiles() +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge +com.xw.repo.bubbleseekbar.R$attr: int windowActionBar +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List kongtiao +okio.SegmentedByteString +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) +cyanogenmod.providers.ThemesContract: android.net.Uri AUTHORITY_URI +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode[] values() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: float getAlpha() +com.google.android.material.R$styleable: int MotionTelltales_telltales_tailColor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: AccuDailyResult$DailyForecasts$Night$WindGust$Speed() +cyanogenmod.externalviews.ExternalViewProviderService$1$1: android.os.Bundle val$options +androidx.lifecycle.Lifecycling: androidx.lifecycle.GeneratedAdapter createGeneratedAdapter(java.lang.reflect.Constructor,java.lang.Object) +james.adaptiveicon.R$id: int wrap_content +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleVerticalOffset +okhttp3.internal.Util: okio.ByteString UTF_32_BE_BOM +androidx.constraintlayout.widget.R$color: int bright_foreground_disabled_material_light +com.amap.api.location.AMapLocationClientOption: java.lang.String toString() +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_4 +cyanogenmod.profiles.ConnectionSettings: void setValue(int) +androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_bias +androidx.lifecycle.LiveData: int START_VERSION +com.google.android.material.R$string: int clear_text_end_icon_content_description +com.google.android.material.R$styleable: int CustomAttribute_customStringValue +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: int status +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +okhttp3.internal.ws.RealWebSocket$2: RealWebSocket$2(okhttp3.internal.ws.RealWebSocket,okhttp3.Request) +com.turingtechnologies.materialscrollbar.R$attr: int actionProviderClass +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onNext(java.lang.Object) +okhttp3.internal.http2.Hpack$Reader: void insertIntoDynamicTable(int,okhttp3.internal.http2.Header) +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_title +com.turingtechnologies.materialscrollbar.R$layout: int abc_search_view +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$id: int widget_clock_day_date +cyanogenmod.providers.CMSettings$NameValueCache: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) +androidx.preference.R$attr: int listPreferredItemHeight +com.bumptech.glide.R$id: int time +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onContentChanged() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: CaiYunForecastResult() +org.greenrobot.greendao.AbstractDaoSession: java.util.List loadAll(java.lang.Class) +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_disabled +okhttp3.HttpUrl: HttpUrl(okhttp3.HttpUrl$Builder) +androidx.appcompat.resources.R$drawable: int notification_bg +com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_FENCESTATUS +android.didikee.donate.R$attr: int listPreferredItemHeightLarge +cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit +androidx.preference.R$layout: int support_simple_spinner_dropdown_item +okhttp3.Protocol: java.lang.String toString() +com.google.android.material.appbar.CollapsingToolbarLayout: void setTitleEnabled(boolean) +wangdaye.com.geometricweather.R$styleable: int MotionScene_layoutDuringTransition +com.google.android.material.R$styleable: int[] MaterialButton +androidx.hilt.work.R$styleable: int FontFamilyFont_ttcIndex +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Snackbar_Message +wangdaye.com.geometricweather.R$drawable: int ic_google_play +com.turingtechnologies.materialscrollbar.R$string: int password_toggle_content_description +okhttp3.Address: boolean equalsNonHost(okhttp3.Address) +com.google.android.material.R$attr: int flow_verticalAlign +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: int PrecipitationProbability +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +androidx.coordinatorlayout.R$id: int dialog_button +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_top +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarItemBackground +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setCheckable(boolean) +wangdaye.com.geometricweather.R$integer: int abc_config_activityShortDur +com.google.android.material.R$style: int Theme_AppCompat_DayNight +cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_SLEEP_ON_RELEASE +androidx.preference.R$style: int PreferenceThemeOverlay +com.amap.api.location.CoordinateConverter$1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: void setStatus(int) +com.google.android.material.R$color: int secondary_text_default_material_dark +wangdaye.com.geometricweather.R$string: int content_desc_search_filter_on +com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_showOldColor +com.google.gson.internal.LazilyParsedNumber: float floatValue() +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$layout: int abc_screen_simple_overlay_action_mode +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_creator +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String LongPhrase +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitationProbability(java.lang.Float) +android.support.v4.app.INotificationSideChannel$Default: INotificationSideChannel$Default() +okhttp3.internal.Util: java.lang.String format(java.lang.String,java.lang.Object[]) +com.google.android.material.R$dimen: int mtrl_snackbar_action_text_color_alpha +cyanogenmod.app.Profile +androidx.drawerlayout.R$drawable: int notify_panel_notification_icon_bg +com.xw.repo.bubbleseekbar.R$dimen: int abc_button_padding_horizontal_material +wangdaye.com.geometricweather.R$color: int radiobutton_themeable_attribute_color +androidx.preference.R$id: int start +com.turingtechnologies.materialscrollbar.R$drawable: int abc_spinner_mtrl_am_alpha +androidx.preference.R$styleable: int ActionMode_background +cyanogenmod.weather.RequestInfo$1: java.lang.Object createFromParcel(android.os.Parcel) +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +androidx.recyclerview.R$id: int notification_main_column_container +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +com.jaredrummler.android.colorpicker.R$attr: int preserveIconSpacing +com.google.android.material.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitationProbability() +com.google.android.material.R$dimen: int abc_action_button_min_height_material +wangdaye.com.geometricweather.R$dimen: int compat_notification_large_icon_max_width +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Small +com.jaredrummler.android.colorpicker.R$styleable: int[] RecycleListView +android.didikee.donate.R$styleable: int SearchView_searchHintIcon +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +androidx.fragment.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.R$styleable: R$styleable() +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onComplete() +wangdaye.com.geometricweather.R$bool: int abc_allow_stacked_button_bar +james.adaptiveicon.R$attr: int controlBackground +com.google.android.material.R$styleable: int MaterialCalendar_dayInvalidStyle +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeight +io.reactivex.Observable: io.reactivex.Observable concatArrayEagerDelayError(io.reactivex.ObservableSource[]) +cyanogenmod.power.PerformanceManager: int PROFILE_BIAS_POWER_SAVE +cyanogenmod.hardware.CMHardwareManager: int getVibratorMinIntensity() +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_radius +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$x +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onSubscribe(org.reactivestreams.Subscription) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered +io.reactivex.Observable: io.reactivex.disposables.Disposable forEach(io.reactivex.functions.Consumer) +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchPadding +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String sourceUrl +com.google.android.gms.location.GeofencingRequest: android.os.Parcelable$Creator CREATOR +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Small +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemIconDisabledAlpha +androidx.constraintlayout.widget.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date sunRiseDate +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize +io.reactivex.internal.observers.ForEachWhileObserver: long serialVersionUID +androidx.transition.R$style: int Widget_Compat_NotificationActionText +cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderService$Stub mBinder +com.turingtechnologies.materialscrollbar.MaterialScrollBar: boolean getHide() +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constrainedHeight +io.reactivex.Observable: io.reactivex.Observable retryWhen(io.reactivex.functions.Function) +retrofit2.OptionalConverterFactory$OptionalConverter: java.util.Optional convert(okhttp3.ResponseBody) +cyanogenmod.power.PerformanceManagerInternal: void activityResumed(android.content.Intent) +com.google.android.gms.dynamite.DynamiteModule$DynamiteLoaderClassLoader +okhttp3.Cache: void initialize() +io.reactivex.Observable: io.reactivex.Observable error(java.lang.Throwable) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +com.xw.repo.bubbleseekbar.R$dimen: int notification_right_icon_size +androidx.vectordrawable.animated.R$styleable: int GradientColorItem_android_offset +androidx.constraintlayout.widget.R$attr: int borderlessButtonStyle +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setHostname +okhttp3.internal.http2.PushObserver$1: PushObserver$1() +io.reactivex.internal.util.NotificationLite: boolean isComplete(java.lang.Object) +androidx.coordinatorlayout.R$id: int text2 +androidx.recyclerview.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$drawable: int mtrl_popupmenu_background +com.turingtechnologies.materialscrollbar.R$dimen: int hint_pressed_alpha_material_light +androidx.fragment.R$layout: int notification_template_part_time +androidx.appcompat.R$color: int primary_text_disabled_material_dark +com.jaredrummler.android.colorpicker.R$color: int secondary_text_default_material_dark +wangdaye.com.geometricweather.R$string: int key_location_service +androidx.vectordrawable.animated.R$drawable: int notification_bg_low_normal +androidx.constraintlayout.widget.R$styleable: int[] MenuGroup +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWindDirection() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float visibility +wangdaye.com.geometricweather.R$id: int item_about_library_content +okhttp3.internal.http2.Http2Connection$1: void execute() +wangdaye.com.geometricweather.R$xml: int widget_day +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_2 +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String timezone +wangdaye.com.geometricweather.R$drawable: int notif_temp_27 +wangdaye.com.geometricweather.R$drawable: int notif_temp_92 +androidx.preference.R$styleable: int Toolbar_titleMarginTop +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSnowPrecipitationProbability(java.lang.Float) +okhttp3.ResponseBody: java.lang.String string() +androidx.constraintlayout.widget.R$dimen: int abc_list_item_padding_horizontal_material +wangdaye.com.geometricweather.R$id: int chronometer +com.jaredrummler.android.colorpicker.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar +cyanogenmod.themes.ThemeManager: void requestThemeChange(java.lang.String,java.util.List) +wangdaye.com.geometricweather.R$dimen: int cpv_color_preference_normal +wangdaye.com.geometricweather.R$attr: int colorOnPrimarySurface +androidx.appcompat.widget.Toolbar: int getTitleMarginTop() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: ExternalViewProviderService$Provider$ProviderImpl$3(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldDescription +com.google.android.material.R$styleable: int ClockHandView_materialCircleRadius +com.google.android.material.R$id: int mtrl_calendar_frame +androidx.appcompat.widget.Toolbar: androidx.appcompat.widget.ActionMenuPresenter getOuterActionMenuPresenter() +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_color +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +wangdaye.com.geometricweather.R$array: int duration_units +com.google.android.material.R$dimen: int mtrl_slider_thumb_radius +cyanogenmod.weather.IRequestInfoListener$Stub +wangdaye.com.geometricweather.R$styleable: int[] Insets +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_visible +okio.Buffer: int read(byte[]) +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginLeft +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String EnglishName +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: boolean isLeft +james.adaptiveicon.R$dimen: int abc_text_size_caption_material +wangdaye.com.geometricweather.R$id: int wide +androidx.customview.R$styleable: int FontFamilyFont_android_font +androidx.loader.R$dimen: int notification_action_text_size +com.google.android.material.internal.ForegroundLinearLayout: void setForegroundGravity(int) +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: long serialVersionUID +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float ParticulateMatter2_5 +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.Query queryRawCreate(java.lang.String,java.lang.Object[]) +androidx.constraintlayout.widget.R$styleable: int ActionBarLayout_android_layout_gravity +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemRippleColor +androidx.appcompat.widget.SearchView +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Medium +okhttp3.internal.http2.Http2Stream: void close(okhttp3.internal.http2.ErrorCode) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReferenceArray values +com.google.android.material.chip.Chip: void setChipStartPaddingResource(int) +com.turingtechnologies.materialscrollbar.R$color: int button_material_light +com.jaredrummler.android.colorpicker.R$attr: int actionBarDivider +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory +androidx.constraintlayout.widget.R$attr: int layout_constraintBaseline_creator +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.view.WindowManager access$500(cyanogenmod.externalviews.KeyguardExternalViewProviderService) +androidx.constraintlayout.widget.R$attr: int targetId +james.adaptiveicon.R$string: int abc_shareactionprovider_share_with_application +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_backgroundTint +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleMargin +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setBrandId(java.lang.String) +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.MinutelyEntityDao minutelyEntityDao +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean delayError +com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onModeChanged(boolean) +com.turingtechnologies.materialscrollbar.R$string: int abc_shareactionprovider_share_with_application +okhttp3.HttpUrl: java.lang.String scheme +com.jaredrummler.android.colorpicker.R$id: int multiply +james.adaptiveicon.R$styleable: int SearchView_suggestionRowLayout +cyanogenmod.externalviews.KeyguardExternalView: void onBouncerShowing(boolean) +com.google.android.material.timepicker.TimePickerView: void setOnPeriodChangeListener(com.google.android.material.timepicker.TimePickerView$OnPeriodChangeListener) +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter daytimeWeatherCodeConverter +com.google.android.material.R$id: int SHOW_PATH +androidx.preference.R$styleable: int AppCompatTheme_actionModeStyle +cyanogenmod.app.CMContextConstants: java.lang.String CM_APP_SUGGEST_SERVICE +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_iconSpaceReserved +io.reactivex.Observable: io.reactivex.Observable defaultIfEmpty(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial Imperial +androidx.fragment.R$attr +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setTitle(java.lang.String) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable mLastDispatchRunnable +okhttp3.internal.ws.WebSocketWriter$FrameSink: boolean closed +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: CNWeatherResult() +androidx.appcompat.R$styleable: int TextAppearance_android_shadowDx +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_21 +androidx.lifecycle.SavedStateHandle: java.util.Set keys() +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerColor +androidx.dynamicanimation.R$style +androidx.coordinatorlayout.widget.CoordinatorLayout: void setVisibility(int) +wangdaye.com.geometricweather.R$id: int textSpacerNoButtons +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.WeatherEntity) +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +okhttp3.RealCall: okio.AsyncTimeout timeout +com.jaredrummler.android.colorpicker.R$id: int search_mag_icon +okhttp3.Route: okhttp3.Address address() +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_subtitleTextStyle +com.google.android.material.R$color: int design_dark_default_color_on_background +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +wangdaye.com.geometricweather.R$string: int key_item_animation_switch +wangdaye.com.geometricweather.R$attr: int logoDescription +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.util.Locale locale +wangdaye.com.geometricweather.R$attr: int boxStrokeWidthFocused +wangdaye.com.geometricweather.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +cyanogenmod.app.ProfileManager: void updateNotificationGroup(android.app.NotificationGroup) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationX +com.google.android.material.R$styleable: int AlertDialog_buttonPanelSideLayout +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_toggle_margin_bottom +androidx.coordinatorlayout.R$attr: int layout_anchor +cyanogenmod.themes.ThemeManager: boolean isThemeApplying() +james.adaptiveicon.R$styleable: int AppCompatTheme_tooltipFrameBackground +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_switchTextOff +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listMenuViewStyle +androidx.appcompat.R$styleable: int ActionBar_divider +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: ObservableMergeWithSingle$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver) +androidx.appcompat.R$dimen: int abc_text_size_headline_material +com.bumptech.glide.integration.okhttp.R$id: int info +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean +wangdaye.com.geometricweather.R$styleable: int DrawerLayout_unfold +cyanogenmod.themes.IThemeChangeListener$Stub: java.lang.String DESCRIPTOR +james.adaptiveicon.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +androidx.coordinatorlayout.R$attr: int keylines +androidx.coordinatorlayout.R$id: int tag_accessibility_heading +com.bumptech.glide.R$string: int status_bar_notification_info_overflow +cyanogenmod.profiles.BrightnessSettings: void setOverride(boolean) +com.google.gson.stream.JsonReader: int limit +androidx.appcompat.widget.Toolbar: void setLogoDescription(int) +wangdaye.com.geometricweather.R$attr: int barrierAllowsGoneWidgets +com.google.android.material.R$styleable: int Constraint_android_rotation +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionLayout +okhttp3.internal.http2.Http2: okio.ByteString CONNECTION_PREFACE +retrofit2.ParameterHandler$2: ParameterHandler$2(retrofit2.ParameterHandler) +retrofit2.http.HEAD +com.github.rahatarmanahmed.cpv.CircularProgressView: int animSyncDuration +io.reactivex.internal.util.NotificationLite: java.lang.Object complete() +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getThunderstorm() +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: long index +wangdaye.com.geometricweather.R$attr: int round +androidx.work.R$styleable: int[] GradientColorItem +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderPackage +com.google.android.material.textfield.TextInputLayout$SavedState +wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_grey +androidx.recyclerview.R$id: int async +wangdaye.com.geometricweather.R$string: int feedback_ignore_battery_optimizations_title +androidx.constraintlayout.widget.R$styleable: int[] Transition +com.google.android.material.R$attr: int textAllCaps +wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_pivotX +okhttp3.internal.tls.OkHostnameVerifier: okhttp3.internal.tls.OkHostnameVerifier INSTANCE +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure +androidx.appcompat.R$styleable: int SearchView_suggestionRowLayout +okhttp3.internal.ws.WebSocketProtocol: int B1_FLAG_MASK +androidx.appcompat.view.menu.ExpandedMenuView: int getWindowAnimations() +retrofit2.http.HTTP +androidx.core.R$id +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver +wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Dialog +androidx.viewpager.R$dimen: int notification_media_narrow_margin +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_11 +com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Filter +wangdaye.com.geometricweather.R$drawable: int widget_clock_day_week +com.amap.api.location.AMapLocation: int ERROR_CODE_AIRPLANEMODE_WIFIOFF +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country +androidx.lifecycle.extensions.R$id: int fragment_container_view_tag +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position position +com.google.android.material.circularreveal.CircularRevealFrameLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_showAsAction +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer RIGHT_CLOSE +james.adaptiveicon.R$dimen: int notification_large_icon_width +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacingHorizontal +com.google.android.material.R$dimen: int mtrl_btn_corner_radius +androidx.viewpager.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_dialog_background_inset +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getPrefixTextColor() +cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String TAG +com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Dialog +com.google.android.material.R$dimen: int design_navigation_max_width +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void dispose() +wangdaye.com.geometricweather.R$id: int decelerateAndComplete +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeShareDrawable +androidx.preference.PreferenceManager: void setOnDisplayPreferenceDialogListener(androidx.preference.PreferenceManager$OnDisplayPreferenceDialogListener) +wangdaye.com.geometricweather.R$id: int cpv_color_panel_new +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List advices +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial Imperial +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitationProbability +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +wangdaye.com.geometricweather.R$styleable: int[] OnSwipe +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(java.net.URL) +android.didikee.donate.R$color: int abc_color_highlight_material +wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_vertical_setting +wangdaye.com.geometricweather.R$attr: int listChoiceIndicatorSingleAnimated +com.google.android.material.slider.RangeSlider: float getValueFrom() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: AccuDailyResult$Headline() +james.adaptiveicon.R$styleable: int MenuGroup_android_orderInCategory +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_pressed_holo_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: void setValue(java.util.List) +androidx.viewpager.widget.ViewPager: void setCurrentItem(int) +androidx.recyclerview.widget.LinearLayoutManager$SavedState +androidx.activity.R$styleable: int[] FontFamily +james.adaptiveicon.R$attr: int popupWindowStyle +io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.fuseable.SimpleQueue queue() +okio.SegmentedByteString: int lastIndexOf(byte[],int) +wangdaye.com.geometricweather.R$string: int wind_2 +wangdaye.com.geometricweather.R$attr: int itemHorizontalPadding +androidx.work.BackoffPolicy: androidx.work.BackoffPolicy EXPONENTIAL +androidx.lifecycle.extensions.R$anim: R$anim() +retrofit2.OkHttpCall: java.lang.Object[] args +cyanogenmod.weather.CMWeatherManager$RequestStatus: int SUBMITTED_TOO_SOON +cyanogenmod.weather.RequestInfo +androidx.lifecycle.FullLifecycleObserver +com.google.android.material.R$styleable: int Constraint_layout_editor_absoluteX +io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.R$attr: int expandedTitleMarginTop +wangdaye.com.geometricweather.R$id: int container +androidx.preference.R$style: int Theme_AppCompat_Dialog_Alert +okhttp3.internal.cache.DiskLruCache: java.io.File getDirectory() +cyanogenmod.weather.WeatherLocation: java.lang.String mCity +androidx.appcompat.R$styleable: int MenuItem_actionLayout +androidx.versionedparcelable.ParcelImpl +wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_background_color +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +cyanogenmod.themes.IThemeService$Stub$Proxy: boolean isThemeApplying() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial Imperial +androidx.preference.R$id: int uniform +android.didikee.donate.R$styleable: int Toolbar_contentInsetLeft +wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotationX +androidx.constraintlayout.widget.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdt +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: long serialVersionUID +okhttp3.internal.Util: java.lang.String[] concat(java.lang.String[],java.lang.String) +android.didikee.donate.R$string: int abc_searchview_description_search +okhttp3.internal.http1.Http1Codec: void detachTimeout(okio.ForwardingTimeout) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf +com.google.android.material.R$styleable: int[] OnClick +androidx.appcompat.R$drawable: int abc_ratingbar_indicator_material +cyanogenmod.providers.CMSettings$Secure: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +com.turingtechnologies.materialscrollbar.R$attr: int titleTextStyle +wangdaye.com.geometricweather.R$attr: int titleEnabled +okhttp3.ResponseBody: java.io.InputStream byteStream() +androidx.appcompat.R$styleable: int GradientColor_android_type +okio.Pipe$PipeSource: okio.Timeout timeout +androidx.preference.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +wangdaye.com.geometricweather.R$style: int Widget_Design_BottomSheet_Modal +com.google.android.material.R$id: int text2 +wangdaye.com.geometricweather.R$attr: int touchRegionId +androidx.appcompat.widget.AppCompatEditText: android.text.Editable getText() +com.amap.api.fence.GeoFenceManagerBase: void addPolygonGeoFence(java.util.List,java.lang.String) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_letter_spacing +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.util.List value +com.baidu.location.e.h$c: com.baidu.location.e.h$c e +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: java.util.List getValue() +com.google.android.material.R$styleable: int TextAppearance_android_shadowRadius +com.bumptech.glide.R$id: int action_container +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_getLiveLockScreenEnabled +android.didikee.donate.R$color: int primary_dark_material_light +androidx.preference.R$styleable: int ActionMode_subtitleTextStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMarkTintMode +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: long upDateTime +com.google.android.material.R$attr: int searchIcon +com.xw.repo.bubbleseekbar.R$attr: int alpha +com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_android_color +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light_NoActionBar +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +androidx.preference.R$drawable: int abc_btn_check_material_anim +com.turingtechnologies.materialscrollbar.R$style: int Base_DialogWindowTitleBackground_AppCompat +okhttp3.internal.http2.Http2Stream$FramingSink: void write(okio.Buffer,long) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +androidx.core.R$id: int actions +cyanogenmod.app.Profile: boolean mStatusBarIndicator +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_weightSum +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setSunRise(java.lang.String) +io.reactivex.internal.observers.ForEachWhileObserver +androidx.viewpager.R$id: int tag_unhandled_key_event_manager +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeTextType +io.reactivex.Observable: io.reactivex.Maybe reduce(io.reactivex.functions.BiFunction) +androidx.coordinatorlayout.R$styleable: R$styleable() +androidx.swiperefreshlayout.R$dimen +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void request(long) +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog_MinWidth +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver +androidx.constraintlayout.widget.R$styleable: int Layout_minWidth +okhttp3.CacheControl$Builder: boolean onlyIfCached +wangdaye.com.geometricweather.R$attr: int cardPreventCornerOverlap +com.google.android.material.chip.Chip: void setCloseIconVisible(int) +androidx.appcompat.R$attr: int listPreferredItemHeightLarge +androidx.hilt.work.R$drawable: R$drawable() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorBackgroundFloating +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_height_fullscreen +cyanogenmod.weather.CMWeatherManager$2$2 +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupMenu_Overflow +androidx.preference.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +androidx.appcompat.R$attr: int background +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.android.material.R$styleable: int MaterialButton_android_insetTop +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customStringValue +james.adaptiveicon.R$styleable: int SwitchCompat_thumbTintMode +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String TODAYS_LOW_TEMPERATURE +wangdaye.com.geometricweather.common.basic.GeoViewModel +james.adaptiveicon.R$attr: int suggestionRowLayout +com.google.android.material.R$styleable: int Constraint_pivotAnchor +wangdaye.com.geometricweather.R$string: int settings_title_weather_source +androidx.activity.R$styleable: R$styleable() +okhttp3.internal.cache.DiskLruCache$Snapshot: okio.Source getSource(int) +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory createAsync() +com.jaredrummler.android.colorpicker.R$id: int edit_query +androidx.preference.R$style: int Widget_AppCompat_PopupMenu_Overflow +okio.AsyncTimeout$1: java.lang.String toString() +wangdaye.com.geometricweather.R$style: int Widget_Design_NavigationView +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathEnd() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: java.lang.String Localized +androidx.coordinatorlayout.R$id: int accessibility_custom_action_23 +androidx.viewpager2.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWindDirection +com.xw.repo.bubbleseekbar.R$integer: int config_tooltipAnimTime +android.didikee.donate.R$styleable: int MenuView_android_horizontalDivider +cyanogenmod.profiles.StreamSettings: boolean isDirty() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: boolean isDisposed() +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver +androidx.core.R$id: int accessibility_custom_action_15 +android.support.v4.os.IResultReceiver$Stub$Proxy: android.support.v4.os.IResultReceiver sDefaultImpl +cyanogenmod.weather.CMWeatherManager$2$2: int val$status +okhttp3.internal.http2.Http2Reader$ContinuationSource: okio.BufferedSource source +android.didikee.donate.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +com.google.android.material.R$attr: int itemTextAppearanceActive +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorPrimaryDark +wangdaye.com.geometricweather.R$id: int widget_clock_day_icon +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_cut_mtrl_alpha +okhttp3.internal.http2.Settings: void merge(okhttp3.internal.http2.Settings) +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_summaryOff +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_GCM_SHA256 +com.google.android.material.R$id: int accessibility_custom_action_24 +com.turingtechnologies.materialscrollbar.R$styleable: int[] RecycleListView +com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar +com.xw.repo.bubbleseekbar.R$attr: int fontVariationSettings +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_material +cyanogenmod.weather.WeatherInfo: java.lang.String getCity() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onNext(java.lang.Object) +androidx.preference.R$styleable: int Preference_isPreferenceVisible +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List forecasts +cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.ICMStatusBarManager getStatusBarInterface() +androidx.lifecycle.LiveData$AlwaysActiveObserver: androidx.lifecycle.LiveData this$0 +com.turingtechnologies.materialscrollbar.R$styleable: int[] FontFamilyFont +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Inverse +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog +androidx.preference.R$styleable: int[] SwitchPreference +android.didikee.donate.R$color: R$color() +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getDescription() +wangdaye.com.geometricweather.R$string: int exposed_dropdown_menu_content_description +com.turingtechnologies.materialscrollbar.R$color: int secondary_text_default_material_light +okhttp3.Request$Builder: okhttp3.Request$Builder head() +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String weatherText +wangdaye.com.geometricweather.R$animator: int weather_clear_night_1 +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onNext(java.lang.Object) +androidx.lifecycle.LifecycleRegistry: void handleLifecycleEvent(androidx.lifecycle.Lifecycle$Event) +com.google.android.material.R$styleable: int Chip_closeIconStartPadding +androidx.activity.ComponentActivity +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_menu_header_material +com.turingtechnologies.materialscrollbar.R$styleable: int[] CompoundButton +james.adaptiveicon.R$attr: int trackTintMode +androidx.fragment.R$id: int time +androidx.appcompat.R$styleable: int ActivityChooserView_initialActivityCount +androidx.appcompat.widget.Toolbar: android.widget.TextView getSubtitleTextView() +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconMargin +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_viewInflaterClass +com.google.android.material.R$dimen: int mtrl_calendar_day_corner +cyanogenmod.weatherservice.WeatherProviderService: void attachBaseContext(android.content.Context) +com.amap.api.fence.GeoFence: void setCurrentLocation(com.amap.api.location.AMapLocation) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.ChineseCityEntity,int) +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: IThermalListenerCallback$Stub$Proxy(android.os.IBinder) +james.adaptiveicon.R$attr: int actionBarSize +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_normal_pressed +androidx.preference.EditTextPreferenceDialogFragmentCompat +wangdaye.com.geometricweather.R$attr: int sizePercent +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Content +androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: boolean isDisposed() +androidx.appcompat.R$styleable: int ActionBar_indeterminateProgressStyle +com.google.android.material.R$styleable: int MenuItem_android_numericShortcut +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.util.List _queryWeatherEntity_MinutelyEntityList(java.lang.String,java.lang.String) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +com.google.android.material.R$color: int abc_decor_view_status_guard +com.google.gson.stream.JsonWriter: void flush() +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Caption +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean cancelled +androidx.lifecycle.extensions.R$drawable: int notification_bg_normal +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getHint() +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextStyle +com.amap.api.location.AMapLocationClient: void setApiKey(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginBottom +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_iconStartPadding +android.support.v4.os.ResultReceiver$1: android.support.v4.os.ResultReceiver createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_DAILY_OVERVIEW +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: int UnitType +com.google.android.material.R$styleable: int FontFamilyFont_fontVariationSettings +com.xw.repo.bubbleseekbar.R$attr: int layout_anchor +androidx.appcompat.R$styleable: int AppCompatTextView_lineHeight +okhttp3.internal.platform.Jdk9Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +io.reactivex.internal.disposables.CancellableDisposable: CancellableDisposable(io.reactivex.functions.Cancellable) +androidx.preference.R$drawable: int abc_cab_background_top_mtrl_alpha +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setGeoLanguage(com.amap.api.location.AMapLocationClientOption$GeoLanguage) +okhttp3.Request$Builder: okhttp3.Request$Builder addHeader(java.lang.String,java.lang.String) +james.adaptiveicon.R$styleable: int AlertDialog_multiChoiceItemLayout +androidx.preference.R$id: int top +okhttp3.internal.http.RealInterceptorChain: okhttp3.Response proceed(okhttp3.Request) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getIcePrecipitation() +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_elevation +com.google.android.material.appbar.AppBarLayout: void setStatusBarForeground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer treeIndex +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_SmallComponent +androidx.preference.R$dimen: int abc_dialog_min_width_minor +com.google.android.material.slider.Slider: float getThumbElevation() +wangdaye.com.geometricweather.R$drawable: int material_ic_clear_black_24dp +androidx.vectordrawable.R$id: int accessibility_custom_action_6 +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupWindow +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme +com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.R$color: int notification_background_m +com.google.android.material.R$style: int Platform_MaterialComponents_Light +androidx.preference.R$bool: int config_materialPreferenceIconSpaceReserved +androidx.constraintlayout.widget.R$attr: int drawableEndCompat +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: okhttp3.internal.http2.Http2Codec this$0 +androidx.fragment.R$attr: int fontProviderFetchTimeout +com.google.android.material.slider.BaseSlider: float[] getActiveRange() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day +com.google.android.material.R$styleable: int Transform_android_elevation +wangdaye.com.geometricweather.R$styleable: int ActionMode_titleTextStyle +com.google.android.material.card.MaterialCardView: int getContentPaddingRight() +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification +androidx.constraintlayout.widget.R$attr: int colorControlHighlight +okio.Buffer: long size +cyanogenmod.externalviews.KeyguardExternalView: android.content.Context access$600(cyanogenmod.externalviews.KeyguardExternalView) +androidx.recyclerview.widget.LinearLayoutManager +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windDircEnd +james.adaptiveicon.R$dimen: int abc_text_size_title_material_toolbar +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_showMotionSpec +wangdaye.com.geometricweather.R$attr: int tabIndicator +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.common.basic.models.weather.Astro: boolean isValid() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: int getCity_code() +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer moldLevel +com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_thumb_material +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String dept +okhttp3.internal.http2.Http2Connection$Builder: okio.BufferedSource source +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_orientation +com.google.android.material.internal.CheckableImageButton$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$plurals +com.google.android.material.R$id: int container +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonStyleSmall +com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_layout +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: AccuCurrentResult$PrecipitationSummary() +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_shapeAppearanceOverlay +com.google.android.material.R$id: int top +androidx.coordinatorlayout.R$attr: int font +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +com.amap.api.fence.DistrictItem: int describeContents() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void dispose() +com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage[] values() +com.google.android.material.R$styleable: int KeyCycle_waveVariesBy +cyanogenmod.platform.R$xml: R$xml() +com.google.android.material.chip.Chip: void setChipCornerRadiusResource(int) +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_height_material +james.adaptiveicon.R$style: int Widget_AppCompat_Spinner +com.xw.repo.bubbleseekbar.R$id: int action_bar_spinner +com.google.android.material.R$dimen: int mtrl_btn_disabled_z +androidx.constraintlayout.widget.R$string: int abc_searchview_description_clear +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setDescription(java.lang.String) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean cancelled +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: java.lang.Throwable error +androidx.work.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitation +wangdaye.com.geometricweather.R$attr: int fontWeight +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int FINISHED +android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +androidx.cardview.R$color: int cardview_light_background +okhttp3.ResponseBody$BomAwareReader: void close() +androidx.constraintlayout.widget.R$bool: int abc_allow_stacked_button_bar +okhttp3.ConnectionSpec$Builder: ConnectionSpec$Builder(boolean) +androidx.core.widget.NestedScrollView: void setOnScrollChangeListener(androidx.core.widget.NestedScrollView$OnScrollChangeListener) +androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context) +androidx.constraintlayout.widget.R$color: int material_grey_100 +androidx.appcompat.resources.R$id: int accessibility_custom_action_1 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_98 +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintTextAppearance james.adaptiveicon.R$dimen: R$dimen() -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onStop() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX() -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: java.lang.Object invoke(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_elevation -com.google.android.material.R$color: int mtrl_choice_chip_text_color -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast -com.google.android.material.R$styleable: int Constraint_android_translationZ -james.adaptiveicon.R$styleable: int FontFamily_fontProviderFetchTimeout -okio.SegmentedByteString: okio.ByteString toAsciiLowercase() -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getUnitId() -cyanogenmod.app.IProfileManager: boolean profileExistsByName(java.lang.String) -cyanogenmod.externalviews.ExternalView: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) -androidx.appcompat.R$drawable: int abc_item_background_holo_dark -android.didikee.donate.R$styleable: int[] AppCompatImageView -androidx.preference.R$styleable: int ActionBar_navigationMode -com.google.android.material.R$attr: int fontProviderFetchStrategy -james.adaptiveicon.R$dimen: int abc_action_bar_default_padding_end_material -com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context) -cyanogenmod.providers.WeatherContract: WeatherContract() -com.baidu.location.e.l$b: com.baidu.location.e.l$b d -androidx.appcompat.R$string: int abc_shareactionprovider_share_with_application -wangdaye.com.geometricweather.R$string: int content_desc_check_details -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity -com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -androidx.appcompat.R$drawable: int abc_ic_star_black_36dp -androidx.lifecycle.SavedStateViewModelFactory -androidx.recyclerview.R$style: int Widget_Compat_NotificationActionText -com.google.android.material.R$attr: int materialCalendarMonthNavigationButton -androidx.preference.SwitchPreference: SwitchPreference(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int prefetch -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -androidx.drawerlayout.R$styleable -com.google.android.material.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -androidx.legacy.coreutils.R$dimen: int compat_notification_large_icon_max_width -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton -wangdaye.com.geometricweather.R$attr: int dragScale -okio.ByteString -wangdaye.com.geometricweather.R$color: int bright_foreground_material_light -com.jaredrummler.android.colorpicker.R$id: int line1 +okio.Buffer: void clear() +cyanogenmod.app.StatusBarPanelCustomTile: void writeToParcel(android.os.Parcel,int) +okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.Request request +com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeBottomRight +cyanogenmod.profiles.ConnectionSettings: void writeToParcel(android.os.Parcel,int) +cyanogenmod.weather.RequestInfo: int getRequestType() +okio.BufferedSource: long indexOf(okio.ByteString,long) +wangdaye.com.geometricweather.R$attr: int behavior_expandedOffset +okhttp3.internal.http1.Http1Codec$FixedLengthSink: void write(okio.Buffer,long) +com.google.android.material.R$id: int month_navigation_next +okhttp3.OkHttpClient$Builder: boolean followSslRedirects +wangdaye.com.geometricweather.R$color: int colorAccent_light +androidx.recyclerview.widget.RecyclerView: void removeOnChildAttachStateChangeListener(androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Body1 +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +okio.RealBufferedSource: int read(java.nio.ByteBuffer) +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource[],io.reactivex.functions.Function,int) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: boolean done +com.google.android.material.appbar.ViewOffsetBehavior: ViewOffsetBehavior(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: boolean isDisposed() +james.adaptiveicon.R$attr: int colorControlHighlight +androidx.swiperefreshlayout.R$dimen: int notification_small_icon_size_as_large +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +androidx.appcompat.R$layout: int select_dialog_item_material +androidx.constraintlayout.widget.R$interpolator +okhttp3.internal.Util: okhttp3.RequestBody EMPTY_REQUEST +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplBase +androidx.preference.R$styleable: int Preference_android_icon +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setNeedAddress(boolean) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_stroke_width_default +com.turingtechnologies.materialscrollbar.R$attr: int msb_textColor +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircleAngle +androidx.lifecycle.LifecycleService: androidx.lifecycle.ServiceLifecycleDispatcher mDispatcher +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCopyDrawable +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.Disposable upstream +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ListPopupWindow +wangdaye.com.geometricweather.R$attr: int percentHeight +org.greenrobot.greendao.AbstractDaoSession: java.util.Map entityToDao +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_curveFit +com.google.android.material.R$attr: int materialCalendarHeaderCancelButton +com.google.android.material.R$attr: int nestedScrollFlags +androidx.viewpager.R$id: int action_text +androidx.legacy.coreutils.R$dimen: int notification_large_icon_width +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_EditText +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer totalCloudCover +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.google.android.material.R$styleable: int MenuItem_contentDescription +com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetTop +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipStrokeColor() +com.google.android.material.R$attr: int contentPadding +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean getLiveLockScreenEnabled() +com.google.android.material.R$color: int design_default_color_on_surface +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle +com.jaredrummler.android.colorpicker.R$attr: int fastScrollHorizontalTrackDrawable +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver +androidx.coordinatorlayout.R$id: int icon +com.turingtechnologies.materialscrollbar.R$id: int normal +com.google.android.material.R$string: int material_hour_selection +com.jaredrummler.android.colorpicker.R$anim: int abc_grow_fade_in_from_bottom +cyanogenmod.providers.CMSettings$System: java.lang.String DOUBLE_TAP_SLEEP_GESTURE +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onScreenTurnedOff +cyanogenmod.hardware.CMHardwareManager: boolean setDisplayColorCalibration(int[]) +wangdaye.com.geometricweather.R$id: int deltaRelative +androidx.appcompat.R$styleable: int GradientColor_android_endColor +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getLabelVisibilityMode() +androidx.recyclerview.R$integer: int status_bar_notification_info_maxnum +com.google.android.material.R$styleable: int SearchView_voiceIcon +io.reactivex.internal.observers.DeferredScalarObserver: void onNext(java.lang.Object) +com.google.android.material.R$styleable: int[] MotionScene +androidx.constraintlayout.widget.R$attr: int listPopupWindowStyle +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.StreamAllocation streamAllocation +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMenuItemView +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +okhttp3.internal.cache.DiskLruCache$Entry +wangdaye.com.geometricweather.R$styleable: int Preference_android_key +james.adaptiveicon.R$string: int abc_activity_chooser_view_see_all +androidx.preference.R$attr: int preferenceFragmentListStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_55 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_RadioButton +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: java.lang.String aqi +com.google.android.material.R$id: int mtrl_picker_header_title_and_selection +com.turingtechnologies.materialscrollbar.R$layout: int abc_popup_menu_header_item_layout +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_alpha +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotationX +cyanogenmod.themes.ThemeChangeRequest$1: java.lang.Object createFromParcel(android.os.Parcel) +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void dispose() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial +androidx.preference.R$color: int primary_dark_material_dark +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: void onFailure(retrofit2.Call,java.lang.Throwable) +wangdaye.com.geometricweather.R$dimen: int mtrl_progress_circular_radius +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void cancelAllBut(int) +james.adaptiveicon.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setDirection(java.lang.String) +androidx.lifecycle.Lifecycling: androidx.lifecycle.GenericLifecycleObserver getCallback(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.disposables.CompositeDisposable set +com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation: java.lang.Float cumul24H +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.ConstraintLayout +androidx.preference.R$id: int textSpacerNoTitle +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low_normal +okio.RealBufferedSource$1 +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onNext(java.lang.Object) +com.google.android.material.R$styleable: int ActionMode_backgroundSplit +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Large_Inverse +com.jaredrummler.android.colorpicker.R$attr: int dialogTitle +com.google.android.material.bottomappbar.BottomAppBar: com.google.android.material.bottomappbar.BottomAppBar$Behavior getBehavior() +okhttp3.internal.connection.StreamAllocation: okhttp3.ConnectionPool connectionPool +wangdaye.com.geometricweather.R$string: int refresh_at +okhttp3.internal.http2.Http2Connection$Builder +io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable valueOf(java.lang.String) +com.google.android.material.R$styleable: int Layout_layout_constrainedHeight +androidx.drawerlayout.R$drawable: int notification_bg_low_pressed +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void clear() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoonPhaseAngle() +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder setType(okhttp3.MediaType) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen +com.jaredrummler.android.colorpicker.R$color: int accent_material_dark +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$attr: int colorControlHighlight +androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String tag +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable +androidx.activity.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.common.rxjava.BaseObserver: BaseObserver() +wangdaye.com.geometricweather.R$dimen: int appcompat_dialog_background_inset +androidx.viewpager.R$attr: int fontStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: void setValue(java.lang.String) +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.MinutelyEntity) +com.google.android.material.R$attr: int transitionDisable +androidx.appcompat.R$attr: int allowStacking +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getRealFeelTemperature() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: double Value +androidx.appcompat.R$drawable: int abc_list_pressed_holo_dark +androidx.appcompat.widget.AppCompatButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onSubscribe(io.reactivex.disposables.Disposable) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: void setValue(java.lang.String) +com.google.android.material.navigation.NavigationView: android.content.res.ColorStateList getItemTextColor() +cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_LOCATION_ADVANCED +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.google.gson.stream.JsonWriter: boolean lenient +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moldLevel +androidx.preference.R$attr: int track +wangdaye.com.geometricweather.settings.dialogs.AdaptiveIconDialog: AdaptiveIconDialog() +com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$string: int circular_progress_view +androidx.drawerlayout.R$id: int action_divider +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemIconSize(int) +com.google.android.material.R$styleable: int Layout_layout_constraintHeight_percent +androidx.appcompat.widget.ListPopupWindow +okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method openMethod +com.google.android.material.R$xml: int standalone_badge_gravity_bottom_end +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationZ +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: Http1Codec$UnknownLengthSource(okhttp3.internal.http1.Http1Codec) +cyanogenmod.externalviews.KeyguardExternalView$6: KeyguardExternalView$6(cyanogenmod.externalviews.KeyguardExternalView,boolean) +com.google.android.material.R$styleable: int AppCompatTheme_editTextStyle +okhttp3.HttpUrl$Builder: java.lang.String canonicalizeHost(java.lang.String,int,int) +cyanogenmod.hardware.ICMHardwareService: boolean unRegisterThermalListener(cyanogenmod.hardware.IThermalListenerCallback) +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnLongClickIntent(android.app.PendingIntent) +androidx.preference.R$id: int action_menu_divider +wangdaye.com.geometricweather.R$color: int design_dark_default_color_background +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SearchView +cyanogenmod.weather.WeatherInfo$DayForecast$Builder +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: long updatedOn +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getLongTemperatureText(android.content.Context,int) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +android.didikee.donate.R$color: int abc_primary_text_disable_only_material_dark +com.turingtechnologies.materialscrollbar.R$string: int bottom_sheet_behavior +okio.GzipSource: byte FNAME +androidx.constraintlayout.widget.R$styleable: int Layout_android_orientation +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar +com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_new +com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimVisibleHeightTrigger(int) +com.google.android.material.R$styleable: int MaterialRadioButton_useMaterialThemeColors +wangdaye.com.geometricweather.R$string: int minutely_overview +com.google.android.material.R$drawable: int abc_item_background_holo_dark +com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.externalviews.KeyguardExternalView$4: KeyguardExternalView$4(cyanogenmod.externalviews.KeyguardExternalView) +okio.DeflaterSink: void write(okio.Buffer,long) +com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_max +com.google.android.material.R$attr: int iconStartPadding +com.google.android.material.R$attr: int viewInflaterClass +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: java.lang.Object invoke(java.lang.Object) +com.xw.repo.bubbleseekbar.R$integer +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_material +androidx.lifecycle.Lifecycling: java.lang.String getAdapterName(java.lang.String) +io.reactivex.internal.queue.SpscArrayQueue: int calcElementOffset(long,int) +androidx.activity.R$id: int action_text +androidx.viewpager.widget.PagerTabStrip +androidx.preference.R$id: int time +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShrinkMotionSpec(com.google.android.material.animation.MotionSpec) +okhttp3.OkHttpClient: okhttp3.Authenticator authenticator() +james.adaptiveicon.R$color: int button_material_light +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator PROXIMITY_ON_WAKE_VALIDATOR +com.amap.api.location.LocationManagerBase: void disableBackgroundLocation(boolean) +com.google.android.material.R$attr: int floatingActionButtonStyle +androidx.hilt.R$id: int accessibility_custom_action_18 +androidx.constraintlayout.widget.R$attr: int contentInsetStartWithNavigation +okhttp3.CipherSuite: okhttp3.CipherSuite init(java.lang.String,int) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetEnd +androidx.dynamicanimation.animation.DynamicAnimation: void removeUpdateListener(androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationUpdateListener) +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_CANCEL_REQUEST +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean cancelled +com.google.android.gms.common.api.UnsupportedApiCallException +androidx.preference.R$attr: int dropdownPreferenceStyle +androidx.preference.R$styleable: int[] MultiSelectListPreference +okhttp3.Response$Builder: okhttp3.Response$Builder headers(okhttp3.Headers) +com.google.android.material.textfield.TextInputLayout: void setErrorIconVisible(boolean) +com.jaredrummler.android.colorpicker.R$styleable: int BackgroundStyle_android_selectableItemBackground +wangdaye.com.geometricweather.R$attr: int layout_insetEdge +com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_900 +wangdaye.com.geometricweather.R$color: int material_grey_850 +io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource) +androidx.lifecycle.extensions.R$id: int notification_background +android.didikee.donate.R$color: int secondary_text_default_material_dark +cyanogenmod.app.CMContextConstants$Features: java.lang.String APP_SUGGEST +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean daylight +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light +com.jaredrummler.android.colorpicker.R$id: int end +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endY +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat valueOf(java.lang.String) +io.reactivex.Observable: io.reactivex.Observable amb(java.lang.Iterable) +androidx.preference.PreferenceGroup$SavedState +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.util.Map groups +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerY +androidx.constraintlayout.widget.R$attr: int path_percent +androidx.lifecycle.LiveData$ObserverWrapper: LiveData$ObserverWrapper(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) +androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_radio +wangdaye.com.geometricweather.R$attr: int layout_collapseParallaxMultiplier +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_LargeComponent +com.google.android.material.R$styleable: int TextAppearance_fontVariationSettings +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: android.os.IBinder asBinder() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_COLOR_VALIDATOR +androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMaxWidth +io.reactivex.internal.util.NotificationLite: java.lang.Object next(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$attr: int checkedTextViewStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.swiperefreshlayout.R$styleable: int[] GradientColorItem +com.google.android.material.bottomappbar.BottomAppBar$Behavior: BottomAppBar$Behavior(android.content.Context,android.util.AttributeSet) +androidx.swiperefreshlayout.widget.SwipeRefreshLayout +com.jaredrummler.android.colorpicker.R$color: int abc_tint_edittext +james.adaptiveicon.R$id: int action_bar_title +com.amap.api.location.AMapLocation: int LOCATION_TYPE_SAME_REQ +com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchPreferenceCompat +com.google.android.material.R$animator: int mtrl_chip_state_list_anim +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +com.xw.repo.bubbleseekbar.R$attr: int titleMarginTop +com.google.android.material.datepicker.MaterialCalendarGridView +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_strokeWidth +cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup mDefaultGroup +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: java.util.concurrent.TimeUnit unit +androidx.appcompat.R$attr: int closeItemLayout +wangdaye.com.geometricweather.R$id: int staticPostLayout +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getTotal() +androidx.preference.R$dimen: int abc_text_size_headline_material +io.reactivex.internal.util.NotificationLite: boolean acceptFull(java.lang.Object,org.reactivestreams.Subscriber) +com.amap.api.location.AMapLocation: java.lang.String getAddress() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_enabled +com.google.android.gms.base.R$styleable: int LoadingImageView_imageAspectRatioAdjust +com.amap.api.location.AMapLocation: double a(com.amap.api.location.AMapLocation,double) +com.google.android.material.slider.RangeSlider: void setLabelBehavior(int) +wangdaye.com.geometricweather.R$string: int key_precipitation_unit +com.google.android.material.R$attr: int selectableItemBackground +cyanogenmod.app.ICustomTileListener$Stub$Proxy: android.os.IBinder asBinder() +com.google.android.gms.common.internal.safeparcel.SafeParcelReader$ParseException +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_CompactMenu +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_NoActionBar +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarSize +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +androidx.constraintlayout.widget.R$attr: int navigationContentDescription +androidx.constraintlayout.widget.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getUvDescription() +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getDensityVoice(android.content.Context,float) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: MinutelyEntity() +okhttp3.OkHttpClient: int readTimeoutMillis() +cyanogenmod.app.Profile: void setScreenLockMode(cyanogenmod.profiles.LockSettings) +com.google.android.material.R$style: int AlertDialog_AppCompat_Light +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: io.reactivex.CompletableSource other +androidx.preference.R$layout: int abc_activity_chooser_view_list_item +io.reactivex.Observable: void subscribe(io.reactivex.Observer) +wangdaye.com.geometricweather.R$id: int notification_big_temp_3 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_imageButtonStyle +com.jaredrummler.android.colorpicker.R$attr: int dialogCornerRadius +com.google.android.material.R$id: int ghost_view_holder +androidx.swiperefreshlayout.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.R$dimen: int little_weather_icon_size +com.amap.api.location.AMapLocation: java.lang.String toString() +james.adaptiveicon.R$attr: int spinnerDropDownItemStyle +okhttp3.internal.ws.WebSocketReader: boolean isFinalFrame +wangdaye.com.geometricweather.R$dimen: int design_navigation_padding_bottom +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean done +com.google.android.material.R$styleable: int AppCompatTheme_textColorSearchUrl +com.google.android.material.R$styleable: int ConstraintSet_layout_editor_absoluteX +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_android_maxHeight +androidx.viewpager.R$attr: int fontWeight +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: ObservableWindow$WindowSkipObserver(io.reactivex.Observer,long,long,int) +androidx.appcompat.R$styleable: int GradientColorItem_android_color +okhttp3.HttpUrl: java.lang.String host +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent +androidx.fragment.R$styleable: int FontFamily_fontProviderPackage +okhttp3.internal.http2.Huffman$Node: okhttp3.internal.http2.Huffman$Node[] children +android.didikee.donate.R$styleable: int[] View +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_light io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: io.reactivex.disposables.Disposable upstream -org.greenrobot.greendao.database.DatabaseOpenHelper: void onCreate(org.greenrobot.greendao.database.Database) -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.functions.BiPredicate comparer -okhttp3.Route: int hashCode() -androidx.constraintlayout.widget.R$drawable: int abc_dialog_material_background -com.google.android.material.R$string: int mtrl_picker_invalid_range -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.internal.util.AtomicThrowable errors -androidx.vectordrawable.R$id: int italic -wangdaye.com.geometricweather.R$layout: int container_main_pollen +com.jaredrummler.android.colorpicker.R$attr: int fontProviderAuthority +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.drawerlayout.R$dimen: int notification_right_icon_size +okhttp3.logging.HttpLoggingInterceptor: void redactHeader(java.lang.String) +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplace +com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_view +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findJvmPlatform() +wangdaye.com.geometricweather.R$font: int product_sans_medium_italic +androidx.appcompat.R$id: int actions +androidx.core.R$id: int action_container +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +okio.ByteString: int indexOf(byte[]) +wangdaye.com.geometricweather.R$styleable: int[] ViewStubCompat +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.db.entities.HourlyEntity: int getTemperature() +androidx.constraintlayout.widget.R$attr: int tintMode +androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +okhttp3.internal.http.StatusLine: okhttp3.internal.http.StatusLine parse(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +com.google.android.material.R$styleable: int FontFamily_fontProviderFetchTimeout +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String) +androidx.drawerlayout.R$id: int info +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setStatus(int) +okhttp3.internal.http2.Huffman$Node: Huffman$Node(int,int) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getO3() +com.jaredrummler.android.colorpicker.R$layout: int abc_action_bar_up_container +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Info +androidx.activity.R$drawable +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Co +androidx.hilt.work.R$id: int accessibility_action_clickable_span +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,java.util.concurrent.Callable,boolean) +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_search +androidx.appcompat.R$attr: int collapseIcon +com.xw.repo.BubbleSeekBar: int getProgress() +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_OutlinedButton +retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.reflect.Type responseType() +com.jaredrummler.android.colorpicker.R$styleable: int[] TextAppearance +androidx.appcompat.R$id: int accessibility_custom_action_10 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf +com.bumptech.glide.R$id: int notification_main_column +androidx.coordinatorlayout.widget.CoordinatorLayout$SavedState: android.os.Parcelable$Creator CREATOR +okio.Timeout: long timeoutNanos() +android.didikee.donate.R$id: int withText +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar +okhttp3.Request$Builder: Request$Builder() +android.didikee.donate.R$styleable: int AlertDialog_singleChoiceItemLayout +androidx.constraintlayout.utils.widget.ImageFilterView: void setRound(float) +com.jaredrummler.android.colorpicker.R$id: int checkbox +cyanogenmod.providers.ThemesContract: ThemesContract() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionMenuTextColor +wangdaye.com.geometricweather.R$array: int notification_background_colors +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_maxElementsWrap +org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType Session +com.google.android.material.R$drawable: int material_ic_keyboard_arrow_next_black_24dp +androidx.preference.R$styleable: int AlertDialog_singleChoiceItemLayout +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void otherError(java.lang.Throwable) +com.google.android.material.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void onFailure(retrofit2.Call,java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_menu +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setBackgroundColorStart(int) +wangdaye.com.geometricweather.R$attr: int overlapAnchor +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: java.lang.Throwable error +com.jaredrummler.android.colorpicker.R$attr: int iconSpaceReserved +james.adaptiveicon.R$styleable: int[] ListPopupWindow +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconTint com.bumptech.glide.R$attr: int layout_behavior -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX -okhttp3.Authenticator$1: Authenticator$1() -wangdaye.com.geometricweather.R$attr: int popupMenuStyle -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.disposables.CompositeDisposable disposables -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_Chip -androidx.preference.R$style: int TextAppearance_AppCompat_Inverse -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_NFC -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayVerticalWidgetConfigActivity: Hilt_ClockDayVerticalWidgetConfigActivity() -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_gradientRadius -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarSplitStyle -cyanogenmod.app.CustomTileListenerService: void onCustomTilePosted(cyanogenmod.app.StatusBarPanelCustomTile) -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_actionTextColorAlpha -org.greenrobot.greendao.AbstractDao: void deleteByKeyInTx(java.lang.Iterable) -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_menuCategory -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_height_material -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_11 +cyanogenmod.app.ICustomTileListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +androidx.viewpager2.widget.ViewPager2: androidx.recyclerview.widget.RecyclerView$Adapter getAdapter() +wangdaye.com.geometricweather.R$string: int material_timepicker_minute +androidx.appcompat.resources.R$id: int tag_accessibility_clickable_spans +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DIALER_OPENCNAM_AUTH_TOKEN_VALIDATOR +com.google.android.material.R$attr: int selectionRequired +com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_bottom_material +com.google.android.material.textfield.TextInputLayout: void setTypeface(android.graphics.Typeface) +cyanogenmod.providers.CMSettings$Secure: java.lang.String getString(android.content.ContentResolver,java.lang.String) +wangdaye.com.geometricweather.R$drawable: int weather_hail_1 +android.didikee.donate.R$style: int Base_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.db.entities.LocationEntity: void setTimeZone(java.util.TimeZone) +com.xw.repo.bubbleseekbar.R$attr: int navigationContentDescription +retrofit2.RequestFactory$Builder: java.util.regex.Pattern PARAM_URL_REGEX +android.didikee.donate.R$styleable: int ViewStubCompat_android_inflatedId +androidx.vectordrawable.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$id: int enterAlways +androidx.constraintlayout.widget.R$drawable: int abc_seekbar_tick_mark_material +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean cancelled +androidx.lifecycle.livedata.R +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min +androidx.core.R$styleable: int FontFamilyFont_android_fontWeight +androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitleTextAppearance +com.google.android.material.R$styleable: int AppCompatTheme_colorBackgroundFloating +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: void run() +com.bumptech.glide.R$drawable: int notification_bg_normal +cyanogenmod.providers.CMSettings$System: CMSettings$System() +wangdaye.com.geometricweather.R$string: int week_1 +com.xw.repo.bubbleseekbar.R$attr: int showDividers +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_showText +androidx.loader.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Date +wangdaye.com.geometricweather.R$id: int activity_chooser_view_content +androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_top_material +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupWindow +cyanogenmod.externalviews.IExternalViewProvider$Stub: IExternalViewProvider$Stub() +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog +io.reactivex.Observable: io.reactivex.Observable lift(io.reactivex.ObservableOperator) +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_padding_top_material +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getRotation() +androidx.preference.R$id: int image +androidx.vectordrawable.R$id: int accessibility_custom_action_19 +androidx.preference.R$drawable: int abc_switch_track_mtrl_alpha +androidx.preference.R$attr: int textAppearanceListItemSecondary +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.ReportFragment$ActivityInitializationListener mInitializationListener +androidx.preference.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +com.google.android.material.R$color: int abc_primary_text_disable_only_material_dark +com.xw.repo.bubbleseekbar.R$attr: int listMenuViewStyle +cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getProfile(android.os.ParcelUuid) +com.google.android.material.R$styleable: int Layout_layout_constraintTop_toTopOf +android.didikee.donate.R$style: int Widget_AppCompat_SearchView_ActionBar +com.bumptech.glide.integration.okhttp.R$id: int actions +com.jaredrummler.android.colorpicker.R$attr: int checkboxStyle +com.turingtechnologies.materialscrollbar.R$anim: int abc_fade_in +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String threshold +android.didikee.donate.R$attr: int listPreferredItemHeightSmall +io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_CONSUMED +androidx.appcompat.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$styleable: int[] State +com.google.android.material.R$styleable: int SnackbarLayout_actionTextColorAlpha +androidx.lifecycle.MutableLiveData: void postValue(java.lang.Object) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_elevation +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_divider_thickness +androidx.lifecycle.extensions.R$drawable: int notification_bg_low_normal +cyanogenmod.externalviews.ExternalView$6: ExternalView$6(cyanogenmod.externalviews.ExternalView) +com.google.android.material.circularreveal.cardview.CircularRevealCardView +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CONDITION +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object getKey(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void dispose() +io.reactivex.Observable: io.reactivex.Observable timeInterval(java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +james.adaptiveicon.R$color: int primary_dark_material_dark +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property District +james.adaptiveicon.R$id: int textSpacerNoTitle +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarSplitStyle +androidx.constraintlayout.widget.R$attr: int flow_padding +androidx.hilt.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$attr: int entries +androidx.constraintlayout.widget.R$id: int text +com.google.android.material.slider.Slider: float getValueFrom() +android.didikee.donate.R$styleable: int TextAppearance_fontFamily +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_icon_padding +com.google.android.material.R$attr: int borderWidth +retrofit2.http.HTTP: boolean hasBody() +com.github.rahatarmanahmed.cpv.CircularProgressView$8: CircularProgressView$8(com.github.rahatarmanahmed.cpv.CircularProgressView,float,float) +androidx.preference.R$attr: int height com.google.android.material.appbar.AppBarLayout: void addOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$BaseOnOffsetChangedListener) -androidx.drawerlayout.R$layout: R$layout() -com.amap.api.fence.PoiItem: java.lang.String getTypeCode() -wangdaye.com.geometricweather.R$styleable: int SwitchImageButton_drawable_res_on -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_visible -com.google.android.material.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_checkedTextViewStyle -com.google.android.material.R$attr: int tabIconTint -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_statusBarForeground -wangdaye.com.geometricweather.R$styleable: int[] ProgressIndicator -io.reactivex.Observable: io.reactivex.Observable flatMapSingle(io.reactivex.functions.Function) -androidx.appcompat.widget.SearchView: void setSearchableInfo(android.app.SearchableInfo) -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_DialogWhenLarge -com.google.android.material.R$style: int Widget_MaterialComponents_Light_ActionBar_Solid -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property CurrentPosition -com.xw.repo.bubbleseekbar.R$id: int chronometer -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay valueOf(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: long requested() -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] PREVAILING_RULE -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionMenuTextAppearance -cyanogenmod.os.Build: Build() -androidx.vectordrawable.animated.R$drawable: int notification_template_icon_bg -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_APP_SWITCH_LONG_PRESS_ACTION -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: void run() -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: io.reactivex.Observer downstream -androidx.fragment.R$drawable: int notification_bg_normal_pressed -okhttp3.internal.http1.Http1Codec$ChunkedSource: boolean hasMoreChunks -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.android.material.R$styleable: int[] View -com.bumptech.glide.R$styleable: int GradientColorItem_android_offset -com.google.android.material.R$styleable: int ActionBar_progressBarPadding -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWindLevel -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_baselineAligned -okhttp3.Cache$Entry: java.lang.String RECEIVED_MILLIS -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onNext(java.lang.Object) -androidx.constraintlayout.widget.R$attr: int dropDownListViewStyle -androidx.lifecycle.SavedStateHandle: boolean contains(java.lang.String) -wangdaye.com.geometricweather.R$string: int key_language -android.didikee.donate.R$attr: int buttonBarNegativeButtonStyle -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetLeft +androidx.appcompat.R$drawable: int abc_ratingbar_material +androidx.preference.R$attr: int defaultValue +androidx.lifecycle.LiveData: void considerNotify(androidx.lifecycle.LiveData$ObserverWrapper) +android.didikee.donate.R$styleable: int AppCompatTheme_panelMenuListWidth +androidx.preference.R$styleable: int PreferenceFragmentCompat_android_layout +androidx.recyclerview.R$dimen: int item_touch_helper_swipe_escape_max_velocity +com.google.android.material.R$styleable: int AppCompatTextView_drawableBottomCompat +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_normalContainer +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderPackage +com.google.android.material.R$id: int text_input_end_icon +cyanogenmod.providers.ThemesContract$ThemesColumns +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.String TABLENAME +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String HOUR +retrofit2.HttpServiceMethod: retrofit2.HttpServiceMethod parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method,retrofit2.RequestFactory) +com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_backgroundTintMode +com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_top_outer_color +wangdaye.com.geometricweather.R$id: int widget_day_week_week_1 +androidx.cardview.widget.CardView: android.content.res.ColorStateList getCardBackgroundColor() +androidx.hilt.lifecycle.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ButtonBar +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeMinTextSize +okio.SegmentPool: okio.Segment next +cyanogenmod.externalviews.ExternalView$1: cyanogenmod.externalviews.ExternalView this$0 +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType[] $VALUES +com.google.android.material.R$layout: int material_clock_display +wangdaye.com.geometricweather.R$id: int position +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: ObservableConcatWithMaybe$ConcatWithObserver(io.reactivex.Observer,io.reactivex.MaybeSource) +com.google.android.material.R$attr: int layout_constraintLeft_toLeftOf +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_layout +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_alpha +androidx.constraintlayout.widget.R$styleable: int MockView_mock_labelBackgroundColor +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_iconifiedByDefault +wangdaye.com.geometricweather.R$styleable: int View_android_focusable +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge +androidx.vectordrawable.R$drawable: int notification_bg_normal_pressed +android.didikee.donate.R$attr: int borderlessButtonStyle +okhttp3.internal.http2.Http2Connection$Builder: boolean client +cyanogenmod.app.CustomTile$ExpandedStyle: int getStyle() +james.adaptiveicon.R$style: int Theme_AppCompat_CompactMenu +androidx.preference.R$style: int Preference_DialogPreference_Material +androidx.preference.R$id: int icon +com.google.android.material.R$id: int action_bar_root +com.turingtechnologies.materialscrollbar.R$attr: int showDividers +wangdaye.com.geometricweather.R$styleable: int[] ActionMenuView +com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$layout: int abc_popup_menu_item_layout +wangdaye.com.geometricweather.R$id: int dialog_location_help_manageTitle +androidx.preference.R$drawable: int abc_ic_star_half_black_36dp +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextContainer +androidx.appcompat.R$styleable: int FontFamilyFont_android_fontStyle +okhttp3.HttpUrl: java.lang.String FRAGMENT_ENCODE_SET_URI +com.xw.repo.bubbleseekbar.R$styleable: int[] ViewBackgroundHelper +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onComplete() +james.adaptiveicon.R$drawable: int abc_textfield_activated_mtrl_alpha +cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,cyanogenmod.app.CustomTile,android.os.UserHandle,long) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_toLeftOf +okhttp3.internal.Util: java.nio.charset.Charset UTF_8 +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_16 +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_xml +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ProgressBar +wangdaye.com.geometricweather.R$attr: int endIconTintMode +android.didikee.donate.R$style: int Base_Widget_AppCompat_Spinner +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void dispose() +com.google.android.material.R$drawable: int design_fab_background +cyanogenmod.profiles.AirplaneModeSettings: boolean isDirty() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$attr: int fabCradleVerticalOffset +okhttp3.internal.http2.Hpack: Hpack() +com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusBottomStart() +androidx.preference.PreferenceGroup: void setOnExpandButtonClickListener(androidx.preference.PreferenceGroup$OnExpandButtonClickListener) +com.google.android.material.chip.ChipGroup: void setDividerDrawableVertical(android.graphics.drawable.Drawable) +cyanogenmod.app.ProfileManager +com.turingtechnologies.materialscrollbar.R$attr: int cardPreventCornerOverlap +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +cyanogenmod.app.CMTelephonyManager: CMTelephonyManager(android.content.Context) +okhttp3.internal.http2.Settings: int set +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long readKey(android.database.Cursor,int) +androidx.appcompat.R$styleable: int MenuItem_android_orderInCategory +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_dark +androidx.preference.R$anim: R$anim() +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextColor(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: CaiYunMainlyResult$BrandInfoBeanXX() +com.google.android.material.R$styleable: int MotionLayout_showPaths +com.turingtechnologies.materialscrollbar.Handle +com.google.android.material.R$dimen: int abc_action_button_min_width_overflow_material +com.google.android.material.R$dimen: int abc_control_corner_material +wangdaye.com.geometricweather.R$attr: int radius_from +androidx.preference.R$styleable: int[] LinearLayoutCompat +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_toRightOf +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constrainedHeight +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.externalviews.ExternalView$6 +com.turingtechnologies.materialscrollbar.R$styleable: int View_android_focusable +wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_HIGH +androidx.preference.R$attr: int queryHint +androidx.recyclerview.R$id: int accessibility_custom_action_21 +okhttp3.Cache: int ENTRY_METADATA +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: boolean isDisposed() +com.bumptech.glide.R$id: int async +com.jaredrummler.android.colorpicker.R$styleable: int[] ColorStateListItem +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_RC4_128_SHA +okhttp3.CacheControl: java.lang.String headerValue +androidx.appcompat.R$attr: int seekBarStyle +com.google.android.material.R$id: int jumpToStart +androidx.preference.R$attr: int titleMargin +android.support.v4.app.INotificationSideChannel$Stub$Proxy: void cancel(java.lang.String,int,java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textColorSearchUrl +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint DewPoint +androidx.legacy.coreutils.R$id: int async +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: java.lang.String English +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginTop(int) +com.google.android.material.R$color: int material_on_primary_emphasis_high_type +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_switchTextOn +wangdaye.com.geometricweather.db.entities.DaoMaster +androidx.constraintlayout.widget.R$color: int material_deep_teal_200 +androidx.constraintlayout.helper.widget.Layer: void setElevation(float) +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Info +cyanogenmod.weatherservice.ServiceRequest$Status: ServiceRequest$Status(java.lang.String,int) +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void cancelLiveLockScreen(java.lang.String,int,int) +androidx.lifecycle.extensions.R$id: int action_container +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +com.baidu.location.indoor.mapversion.c.a$d: java.lang.String a +androidx.appcompat.widget.Toolbar: int getContentInsetStartWithNavigation() +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceFragmentCompat +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: io.reactivex.Scheduler$Worker worker +androidx.transition.R$integer +androidx.legacy.coreutils.R$layout: int notification_template_custom_big +james.adaptiveicon.R$styleable: int AppCompatImageView_tintMode +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +com.google.android.material.R$styleable: int FloatingActionButton_android_enabled +wangdaye.com.geometricweather.R$string: int real_feel_shade_temperature +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +com.google.android.material.R$styleable: int MenuItem_android_menuCategory +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_action_inline_max_width +androidx.loader.R$layout: int notification_template_icon_group +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_popupBackground +com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_Dialog +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImpl +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial Imperial +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +okhttp3.internal.http1.Http1Codec$ChunkedSink: void close() +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_summaryOn +androidx.appcompat.widget.AppCompatCheckBox: int getCompoundPaddingLeft() +com.google.android.material.R$color: int design_error +com.xw.repo.BubbleSeekBar: void setProgress(float) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ARABIC +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult +cyanogenmod.weather.WeatherLocation: java.lang.String access$602(cyanogenmod.weather.WeatherLocation,java.lang.String) +com.turingtechnologies.materialscrollbar.R$id: int action_menu_presenter +androidx.core.R$id: int forever +androidx.coordinatorlayout.R$string +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver +com.google.android.material.R$styleable: int ConstraintSet_android_scaleY +com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.platform.Manifest$permission: java.lang.String READ_THEMES +com.amap.api.fence.PoiItem: void setProvince(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int shortcuts_rain +androidx.appcompat.R$attr: int titleMarginStart +androidx.preference.R$styleable: int[] View +androidx.lifecycle.DefaultLifecycleObserver: void onStop(androidx.lifecycle.LifecycleOwner) +okhttp3.ConnectionPool: void put(okhttp3.internal.connection.RealConnection) +androidx.swiperefreshlayout.R$attr: int alpha +com.google.android.material.R$attr: int searchViewStyle +okhttp3.OkHttpClient: java.net.ProxySelector proxySelector +androidx.preference.R$style: int TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.R$attr: int bsb_max +com.google.android.material.button.MaterialButtonToggleGroup: void setCheckedId(int) +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long count +retrofit2.adapter.rxjava2.BodyObservable +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_ttcIndex +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_cursor_material +okhttp3.internal.platform.AndroidPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog +androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +android.didikee.donate.R$styleable: int AppCompatTheme_actionModePasteDrawable +androidx.loader.R$styleable +androidx.fragment.R$id: int info +cyanogenmod.util.ColorUtils$1: int compare(com.android.internal.util.cm.palette.Palette$Swatch,com.android.internal.util.cm.palette.Palette$Swatch) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.UV getUV() +wangdaye.com.geometricweather.common.basic.models.weather.Base: long getPublishTime() +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeColor +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_subtitle +androidx.viewpager2.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moonContainer +wangdaye.com.geometricweather.R$attr: int itemHorizontalTranslationEnabled +cyanogenmod.themes.IThemeService$Stub: java.lang.String DESCRIPTOR +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.amap.api.location.AMapLocation: void setMock(boolean) +james.adaptiveicon.R$dimen: int abc_button_inset_vertical_material +com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout_PrimarySurface +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean cancelled +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_alpha +com.google.android.material.R$dimen: int mtrl_calendar_selection_baseline_to_top_fullscreen +cyanogenmod.externalviews.KeyguardExternalView: void unregisterOnWindowAttachmentChangedListener(cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener) +okhttp3.internal.Internal +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.preference.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.R$string: int abc_prepend_shortcut_label +androidx.constraintlayout.widget.R$string: int abc_shareactionprovider_share_with +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean disposed +james.adaptiveicon.R$layout: int abc_screen_content_include +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode +androidx.preference.R$layout: int abc_alert_dialog_material +androidx.transition.R$styleable +wangdaye.com.geometricweather.R$string: int abc_shareactionprovider_share_with_application +james.adaptiveicon.R$styleable: int CompoundButton_buttonTint +com.turingtechnologies.materialscrollbar.R$styleable: int[] TabLayout +androidx.dynamicanimation.R$styleable: int[] FontFamily +com.google.android.material.R$attr: int snackbarTextViewStyle +wangdaye.com.geometricweather.R$color: int androidx_core_ripple_material_light +cyanogenmod.weather.WeatherInfo +cyanogenmod.app.ICustomTileListener$Stub: ICustomTileListener$Stub() +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onError(java.lang.Throwable) +com.google.android.material.R$styleable: int ConstraintSet_android_translationY +cyanogenmod.profiles.ConnectionSettings: cyanogenmod.profiles.ConnectionSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +wangdaye.com.geometricweather.R$string: int key_notification_text_color +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Title +android.didikee.donate.R$attr: int barLength +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: java.util.concurrent.atomic.AtomicReference inner +com.google.android.material.button.MaterialButtonToggleGroup +wangdaye.com.geometricweather.R$styleable: int SearchView_submitBackground +com.google.gson.stream.JsonWriter: void close() +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +okhttp3.internal.platform.JdkWithJettyBootPlatform: okhttp3.internal.platform.Platform buildIfSupported() +com.google.android.material.R$id: int search_src_text +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontStyle +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlActivated +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather weather +androidx.vectordrawable.animated.R$id: int tag_transition_group +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setValue(java.util.List) +james.adaptiveicon.R$style: int Base_DialogWindowTitle_AppCompat +com.google.android.material.internal.VisibilityAwareImageButton: int getUserSetVisibility() +cyanogenmod.externalviews.IExternalViewProvider$Stub: cyanogenmod.externalviews.IExternalViewProvider asInterface(android.os.IBinder) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: int phenomenonId +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String tempMax +androidx.constraintlayout.widget.R$id: int dialog_button +androidx.appcompat.widget.ViewStubCompat: ViewStubCompat(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long readKey(android.database.Cursor,int) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.lang.String titleHtml +com.google.gson.stream.JsonReader: int NUMBER_CHAR_DIGIT +androidx.preference.R$dimen: int compat_button_inset_vertical_material +james.adaptiveicon.R$color: int material_blue_grey_950 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator FORWARD_LOOKUP_PROVIDER_VALIDATOR +wangdaye.com.geometricweather.R$attr: int layout_constraintEnd_toEndOf +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX brandInfo +androidx.hilt.work.R$id +cyanogenmod.weatherservice.ServiceRequestResult$Builder: java.util.List mLocationLookupList +io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.CompletableSource) +cyanogenmod.power.IPerformanceManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeShareDrawable +androidx.hilt.R$color: int notification_action_color_filter +com.turingtechnologies.materialscrollbar.R$color: int mtrl_bottom_nav_colored_item_tint +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$Event upEvent(androidx.lifecycle.Lifecycle$State) +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_summaryOn +androidx.preference.R$attr: int contentInsetLeft +wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_elevation +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType DIMENSION_TYPE +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeWindChillTemperature +com.google.android.material.R$style: int Widget_MaterialComponents_CheckedTextView +com.xw.repo.bubbleseekbar.R$drawable: int abc_spinner_textfield_background_material +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getNo2Color(android.content.Context) +okhttp3.internal.http2.Http2Reader: void readSettings(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeBackground +com.amap.api.location.LocationManagerBase: com.amap.api.location.AMapLocation getLastKnownLocation() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +androidx.preference.R$id: int textSpacerNoButtons +android.didikee.donate.R$string: int abc_action_bar_home_description +cyanogenmod.app.suggest.AppSuggestManager +androidx.preference.R$layout: int abc_action_bar_title_item +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge +androidx.appcompat.widget.FitWindowsLinearLayout: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) +androidx.preference.R$styleable: int RecycleListView_paddingBottomNoButtons +com.google.android.gms.location.zzo +androidx.vectordrawable.animated.R$id: int icon +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowMinWidthMinor +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date moonRiseDate +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_wrapMode +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeManager getInstance(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetLeft +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_CompactMenu +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +cyanogenmod.themes.ThemeChangeRequest$RequestType +wangdaye.com.geometricweather.R$attr: int maxHeight +androidx.lifecycle.extensions.R$anim: int fragment_fast_out_extra_slow_in +wangdaye.com.geometricweather.R$id: int fitToContents +wangdaye.com.geometricweather.R$styleable: int Constraint_constraint_referenced_ids +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String frenchDepartment +com.jaredrummler.android.colorpicker.R$attr: int enabled +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_1 +android.didikee.donate.R$attr: int state_above_anchor +wangdaye.com.geometricweather.R$id: int test_radiobutton_android_button_tint +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_Alert +androidx.appcompat.widget.ActionBarContainer: void setVisibility(int) +androidx.appcompat.R$drawable: int abc_cab_background_top_mtrl_alpha +com.amap.api.location.AMapLocation: void setLongitude(double) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +androidx.appcompat.R$styleable: int AppCompatTheme_android_windowIsFloating +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String getCityId() +cyanogenmod.app.ProfileGroup: void readFromParcel(android.os.Parcel) +io.reactivex.internal.operators.observable.ObservableGroupBy$State: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +wangdaye.com.geometricweather.R$id: int snap +wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_item_tint +androidx.appcompat.R$styleable: int MenuView_subMenuArrow +wangdaye.com.geometricweather.R$attr: int buttonCompat +cyanogenmod.app.LiveLockScreenInfo: int describeContents() +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card +cyanogenmod.app.ICMStatusBarManager: void removeCustomTileWithTag(java.lang.String,java.lang.String,int,int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTintMode +james.adaptiveicon.R$attr: int indeterminateProgressStyle +cyanogenmod.hardware.DisplayMode$1: java.lang.Object[] newArray(int) +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_id +wangdaye.com.geometricweather.R$attr: int cardUseCompatPadding +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio +wangdaye.com.geometricweather.R$dimen: int material_font_1_3_box_collapsed_padding_top +androidx.constraintlayout.widget.R$attr: int windowActionModeOverlay +androidx.preference.R$drawable: int notification_bg_low_normal +androidx.recyclerview.R$dimen: int notification_big_circle_margin +io.reactivex.internal.queue.SpscArrayQueue: java.lang.Object poll() +com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreferenceCompat +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow +androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy +com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_top +com.google.android.material.textfield.TextInputLayout: void setEndIconContentDescription(java.lang.CharSequence) +com.jaredrummler.android.colorpicker.R$color: int button_material_light +wangdaye.com.geometricweather.R$attr: int fastScrollHorizontalTrackDrawable +com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_out_top +androidx.customview.R$layout: int notification_template_part_chronometer +androidx.fragment.R$id: int forever +com.google.android.material.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf +com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat +com.turingtechnologies.materialscrollbar.R$layout: int notification_template_icon_group +android.didikee.donate.R$attr: int radioButtonStyle +cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String toString() +androidx.dynamicanimation.R$id: int icon +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_menu_material +wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity +androidx.recyclerview.R$layout +wangdaye.com.geometricweather.R$attr: int currentPageIndicatorColor +com.jaredrummler.android.colorpicker.R$style: int AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.Long getId() +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) +com.jaredrummler.android.colorpicker.R$string: int abc_menu_function_shortcut_label +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_Test +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String defenseText +retrofit2.OptionalConverterFactory$OptionalConverter: OptionalConverterFactory$OptionalConverter(retrofit2.Converter) +com.google.android.material.R$id: int right_icon +com.turingtechnologies.materialscrollbar.R$attr: int closeIconVisible +androidx.lifecycle.LiveData: int mActiveCount +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: io.reactivex.Observer downstream +androidx.lifecycle.extensions.R$styleable: int[] ColorStateListItem +androidx.activity.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$string: int key_card_alpha +androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_Toolbar +com.jaredrummler.android.colorpicker.R$attr: int backgroundSplit +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerNext(int,java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int ic_menu_up +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver) +com.jaredrummler.android.colorpicker.ColorPanelView: int getShape() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer relativeHumidity +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int sourceMode +okhttp3.internal.cache.CacheStrategy: boolean isCacheable(okhttp3.Response,okhttp3.Request) +okhttp3.internal.http2.Http2Connection: long unacknowledgedBytesRead +wangdaye.com.geometricweather.R$id: int activity_widget_config_styleSpinner +cyanogenmod.providers.DataUsageContract: android.net.Uri BASE_CONTENT_URI +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_NULL_SHA +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type[] values() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem +wangdaye.com.geometricweather.R$dimen: int widget_aa_text_size +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onError(java.lang.Throwable) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.util.ErrorMode errorMode +io.reactivex.Observable: io.reactivex.Observable wrap(io.reactivex.ObservableSource) +okhttp3.internal.http.HttpHeaders: java.lang.String repeat(char,int) +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type rawType +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ImageButton +androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingLeft +james.adaptiveicon.R$layout: int abc_alert_dialog_material +wangdaye.com.geometricweather.R$attr: int strokeWidth +james.adaptiveicon.R$attr: int alpha +com.google.android.material.R$styleable: int[] Transform +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_small_material +wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_lifted +com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreferenceCompat_Material +com.xw.repo.bubbleseekbar.R$attr: int bsb_is_float_type +androidx.customview.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerX +okhttp3.internal.connection.RouteException: java.io.IOException getLastConnectException() +cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup getDefaultGroup() +cyanogenmod.providers.CMSettings$System: java.lang.String HEADSET_CONNECT_PLAYER +android.didikee.donate.R$styleable: int DrawerArrowToggle_thickness +com.turingtechnologies.materialscrollbar.R$style: int AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.R$string: int path_password_strike_through +androidx.appcompat.R$dimen: int abc_dialog_padding_material +wangdaye.com.geometricweather.R$color: int abc_decor_view_status_guard +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_102 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: java.lang.String Name +wangdaye.com.geometricweather.R$string: int action_appStore +okhttp3.internal.connection.StreamAllocation +wangdaye.com.geometricweather.R$dimen: int widget_content_text_size +android.didikee.donate.R$string: int abc_capital_off +wangdaye.com.geometricweather.R$id: int mtrl_calendar_days_of_week +james.adaptiveicon.R$styleable: int ActionBar_background +wangdaye.com.geometricweather.R$id: int widget_trend_hourly +okhttp3.internal.connection.RealConnection: okio.BufferedSource source +androidx.appcompat.R$attr: int fontProviderFetchTimeout +com.google.android.material.R$dimen: int mtrl_badge_with_text_radius +com.google.android.material.R$style: int Widget_MaterialComponents_CardView +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.R$attr: int deltaPolarRadius +com.google.android.material.bottomappbar.BottomAppBar: void setTitle(java.lang.CharSequence) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_placeholder_content +com.google.android.material.R$attr: int tickMark +wangdaye.com.geometricweather.R$style: int Widget_Design_TextInputLayout +cyanogenmod.app.BaseLiveLockManagerService$1: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit KM +com.google.android.material.R$styleable: int BottomNavigationView_backgroundTint +okhttp3.internal.http.HttpCodec: void cancel() +androidx.preference.R$attr: int fontStyle +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Daylight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.Date getPubTime() +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadPong(okio.ByteString) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_58 +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getHintTextColor() +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context,android.util.AttributeSet) +okhttp3.internal.http1.Http1Codec$ChunkedSink: okhttp3.internal.http1.Http1Codec this$0 +retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: OkHttpCall$ExceptionCatchingResponseBody$1(retrofit2.OkHttpCall$ExceptionCatchingResponseBody,okio.Source) +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_light +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_padding_start_material james.adaptiveicon.R$attr: int overlapAnchor -com.jaredrummler.android.colorpicker.R$attr: int cpv_previewSize -cyanogenmod.library.R$id -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onComplete() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_23 -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Snackbar_Message -cyanogenmod.app.IPartnerInterface$Stub$Proxy: java.lang.String getInterfaceDescriptor() -retrofit2.RequestBuilder: void canonicalizeForPath(okio.Buffer,java.lang.String,int,int,boolean) -cyanogenmod.externalviews.IExternalViewProvider: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderQuery -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SLEET -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerComplete() -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.functions.BiPredicate predicate -androidx.core.R$layout: int notification_template_icon_group -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object remove(int) -wangdaye.com.geometricweather.R$styleable: int View_android_focusable -android.didikee.donate.R$styleable: int Toolbar_popupTheme -wangdaye.com.geometricweather.R$id: int widget_day_time -android.didikee.donate.R$attr: int paddingTopNoTitle -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicator(int) -androidx.preference.R$styleable: int SwitchPreference_android_summaryOff -com.google.android.material.R$id: int content -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_query -cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl mImpl -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int[] BottomSheetBehavior_Layout -cyanogenmod.app.BaseLiveLockManagerService$1 -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundResource(int) -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderPackage -androidx.preference.R$integer: int config_tooltipAnimTime -com.xw.repo.bubbleseekbar.R$attr: int goIcon -james.adaptiveicon.R$style: int Base_Theme_AppCompat_CompactMenu -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback(retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter,java.util.concurrent.CompletableFuture) -com.google.android.material.textfield.TextInputLayout: void setHelperText(java.lang.CharSequence) -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_title -androidx.appcompat.widget.SwitchCompat: void setSwitchTypeface(android.graphics.Typeface) -androidx.constraintlayout.widget.R$styleable: int MockView_mock_labelColor -cyanogenmod.externalviews.KeyguardExternalView$10: cyanogenmod.externalviews.KeyguardExternalView this$0 -okhttp3.Handshake: java.util.List peerCertificates() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginRight -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: MinutelyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -wangdaye.com.geometricweather.R$array: int air_quality_units -androidx.appcompat.widget.SwitchCompat: int getThumbScrollRange() -androidx.constraintlayout.widget.R$drawable: int btn_checkbox_checked_mtrl -cyanogenmod.providers.CMSettings$System: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pressure -androidx.preference.R$dimen: int abc_list_item_height_small_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: double Value -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollEnabled -okio.ByteString: int indexOf(byte[]) -cyanogenmod.app.suggest.IAppSuggestProvider: boolean handles(android.content.Intent) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display3 -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf -wangdaye.com.geometricweather.R$attr: int colorSwitchThumbNormal -okio.Buffer: java.util.List segmentSizes() -wangdaye.com.geometricweather.R$style: int TestStyleWithLineHeight -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setIcePrecipitationProbability(java.lang.Float) -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setIndicatorColor(int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: double seaLevel -com.google.android.material.chip.Chip: void setChipText(java.lang.CharSequence) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupMenu -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: io.reactivex.internal.fuseable.SimpleQueue queue -androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$id: int month_navigation_next -androidx.transition.R$id: int chronometer -wangdaye.com.geometricweather.R$styleable: int CardView_android_minHeight -james.adaptiveicon.R$color: int material_grey_600 -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void drain() -androidx.appcompat.R$attr: int buttonBarNegativeButtonStyle -androidx.constraintlayout.utils.widget.ImageFilterButton: float getContrast() -wangdaye.com.geometricweather.R$id: int activity_allergen_container -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setPrecipitation(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf -androidx.preference.R$styleable: int[] GradientColorItem -android.didikee.donate.R$attr: int listPreferredItemHeightLarge -com.xw.repo.bubbleseekbar.R$attr: int layout_anchorGravity -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Caption -androidx.preference.R$styleable: int[] ActionMode -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String languageId -cyanogenmod.weather.RequestInfo: java.lang.String getCityName() -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_statusBarBackground -androidx.constraintlayout.widget.R$attr: int waveOffset -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeCloudCover() -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showColorShades -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_to_on_mtrl_000 -cyanogenmod.weather.WeatherLocation: java.lang.String access$302(cyanogenmod.weather.WeatherLocation,java.lang.String) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Caption -wangdaye.com.geometricweather.R$id: int expanded_menu -androidx.appcompat.R$style: int Widget_AppCompat_DropDownItem_Spinner -com.google.android.material.R$dimen: int mtrl_calendar_dialog_background_inset -androidx.preference.R$drawable: int notification_bg_normal_pressed -cyanogenmod.externalviews.KeyguardExternalView$9: KeyguardExternalView$9(cyanogenmod.externalviews.KeyguardExternalView) -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.ObservableSource[],io.reactivex.functions.Function) -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: boolean isDisposed() -androidx.appcompat.widget.AppCompatRadioButton: android.graphics.PorterDuff$Mode getSupportButtonTintMode() -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableStartCompat -androidx.preference.R$styleable: int CheckBoxPreference_android_summaryOn -wangdaye.com.geometricweather.R$string: int settings_summary_background_free_on -androidx.customview.R$attr: int fontProviderCerts -com.google.android.material.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.R$attr: int passwordToggleEnabled -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_creator -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getShortAbbreviation(android.content.Context) -com.bumptech.glide.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.R$id: int titleDividerNoCustom -com.bumptech.glide.R$styleable: int GradientColor_android_centerColor -com.google.android.material.R$styleable: int Constraint_flow_horizontalStyle -wangdaye.com.geometricweather.R$color: int colorTextTitle_light -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String p -androidx.preference.R$attr: int textAppearanceListItemSecondary -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: androidx.lifecycle.LiveData mLiveData -wangdaye.com.geometricweather.R$id: int widget_clock_day_weather -wangdaye.com.geometricweather.R$drawable: int notif_temp_31 -androidx.constraintlayout.widget.R$anim -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListMenuView -androidx.constraintlayout.widget.R$dimen: int abc_control_padding_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial -androidx.preference.R$attr: int iconTint -cyanogenmod.app.ProfileGroup: ProfileGroup(android.os.Parcel) -com.turingtechnologies.materialscrollbar.R$attr: int itemIconSize -okhttp3.internal.ws.RealWebSocket$Streams: boolean client -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: int Id -com.google.android.material.R$attr: int chipMinHeight -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_title -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer realFeelTemperature -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DarkActionBar -com.google.android.material.navigation.NavigationView -androidx.viewpager.R$dimen: R$dimen() -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean isCancelled() -com.google.android.material.R$dimen: int cardview_compat_inset_shadow -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_creator -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: double Value -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_unregisterChangeListener -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Large_Inverse -androidx.vectordrawable.animated.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$string: int abc_capital_on -com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextColor(android.content.res.ColorStateList) -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void dispose() -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_20 -cyanogenmod.hardware.CMHardwareManager: int[] getDisplayColorCalibrationArray() -com.turingtechnologies.materialscrollbar.Indicator: int getIndicatorHeight() -james.adaptiveicon.R$id: int src_in -com.google.android.material.R$attr: int content -com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$styleable: int[] PreferenceFragmentCompat -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: java.lang.Runnable getWrappedRunnable() -okhttp3.Connection -com.google.android.material.R$dimen: int design_fab_size_normal -okhttp3.CipherSuite: okhttp3.CipherSuite init(java.lang.String,int) -james.adaptiveicon.R$dimen: int abc_action_bar_overflow_padding_start_material -cyanogenmod.app.IProfileManager: void removeNotificationGroup(android.app.NotificationGroup) -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitationDuration(java.lang.Float) -com.turingtechnologies.materialscrollbar.R$attr: int actionBarStyle -androidx.preference.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -androidx.constraintlayout.widget.R$style: int Platform_V21_AppCompat_Light -androidx.appcompat.R$styleable: int MenuItem_iconTint -okhttp3.CipherSuite: java.util.Comparator ORDER_BY_NAME -com.bumptech.glide.R$dimen: int notification_right_icon_size -androidx.activity.R$style: int Widget_Compat_NotificationActionContainer -android.didikee.donate.R$dimen: int notification_right_side_padding_top +androidx.appcompat.R$drawable: int abc_dialog_material_background +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setDisplayState(boolean) +io.reactivex.Observable: io.reactivex.Observable ofType(java.lang.Class) +com.turingtechnologies.materialscrollbar.R$styleable: int[] CoordinatorLayout +okhttp3.internal.cache.DiskLruCache: long getMaxSize() +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog +androidx.core.R$dimen: R$dimen() +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method putMethod +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void updateWeather(cyanogenmod.weather.RequestInfo) +com.google.android.material.R$styleable: int Constraint_layout_goneMarginEnd +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTag +androidx.appcompat.R$id: int topPanel +androidx.hilt.work.R$styleable: int GradientColor_android_startX +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: long serialVersionUID +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CheckedTextView +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +androidx.work.R$id: int action_divider +androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityCreated(android.app.Activity,android.os.Bundle) +com.google.android.material.R$id: int search_mag_icon +com.google.android.material.R$styleable: int StateListDrawable_android_variablePadding +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_divider +com.google.android.material.R$dimen: int mtrl_progress_circular_radius +wangdaye.com.geometricweather.R$id: int selection_type +wangdaye.com.geometricweather.db.entities.AlertEntity: void setCityId(java.lang.String) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void startFirstTimeout(io.reactivex.ObservableSource) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric +okhttp3.Cache: int writeAbortCount() +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Headline +androidx.appcompat.widget.SearchView$SearchAutoComplete: void setThreshold(int) +com.bumptech.glide.integration.okhttp.R$color: R$color() +okhttp3.OkHttpClient$1: int code(okhttp3.Response$Builder) +okhttp3.OkHttpClient$Builder: boolean followRedirects +cyanogenmod.os.Build$CM_VERSION_CODES: int DRAGON_FRUIT +wangdaye.com.geometricweather.R$styleable: int Toolbar_logoDescription +androidx.appcompat.R$id: int add +androidx.appcompat.R$styleable: int AppCompatTextView_textLocale +wangdaye.com.geometricweather.R$id: int activity_widget_config_viewStyleTitle +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_9 +androidx.hilt.R$integer +okhttp3.internal.http2.Http2Stream: void cancelStreamIfNecessary() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$string: int feedback_initializing +com.turingtechnologies.materialscrollbar.R$attr: int arrowHeadLength +androidx.fragment.R$style: int TextAppearance_Compat_Notification_Info +androidx.appcompat.widget.ActionBarOverlayLayout: void setWindowCallback(android.view.Window$Callback) +com.google.android.material.bottomappbar.BottomAppBar: float getFabCradleMargin() +androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context,android.util.AttributeSet) +org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,int) +wangdaye.com.geometricweather.R$id: int item_card_display +wangdaye.com.geometricweather.R$color: int design_dark_default_color_error +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean pressure +androidx.customview.R$styleable: int FontFamilyFont_fontStyle +androidx.transition.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextEnabled +androidx.viewpager2.R$layout +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener access$102(cyanogenmod.weather.RequestInfo,cyanogenmod.weather.IRequestInfoListener) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_creator +com.google.android.material.R$style: int Base_Widget_AppCompat_SeekBar +androidx.preference.R$style: int Platform_V21_AppCompat +com.google.android.material.textfield.TextInputLayout: void setCounterTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX +wangdaye.com.geometricweather.R$attr: int bsb_always_show_bubble_delay +wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableTransition +wangdaye.com.geometricweather.R$dimen: int abc_cascading_menus_min_smallest_width +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat DEFAULT +androidx.coordinatorlayout.R$styleable: int GradientColor_android_endY +androidx.preference.R$styleable: int AppCompatTheme_colorError +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderCerts +androidx.coordinatorlayout.widget.CoordinatorLayout: int getNestedScrollAxes() +wangdaye.com.geometricweather.R$dimen: int material_font_2_0_box_collapsed_padding_top +androidx.constraintlayout.widget.R$attr: int logo +retrofit2.http.QueryName +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_UUID +io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,boolean) +com.amap.api.location.AMapLocationClientOption: long getInterval() +androidx.cardview.R$dimen: int cardview_default_elevation +androidx.hilt.work.R$id: R$id() +com.xw.repo.bubbleseekbar.R$drawable: int notify_panel_notification_icon_bg +okhttp3.ConnectionPool: java.lang.Runnable cleanupRunnable +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +com.google.android.material.R$attr: int textAppearanceLargePopupMenu +com.google.android.material.R$color: int mtrl_chip_ripple_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: android.os.IBinder mRemote +cyanogenmod.hardware.CMHardwareManager: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableStart +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: int capacityHint +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_FULL +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_viewInflaterClass +com.xw.repo.bubbleseekbar.R$id: int info +androidx.constraintlayout.widget.ConstraintLayout: int getPaddingWidth() +com.xw.repo.bubbleseekbar.R$attr: int gapBetweenBars +androidx.constraintlayout.widget.R$id: int dragEnd +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListPopupWindow +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored +androidx.coordinatorlayout.R$styleable: int GradientColor_android_gradientRadius +com.google.android.material.R$attr: int titleMarginTop +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_weight +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_chainStyle +io.reactivex.internal.disposables.EmptyDisposable: boolean offer(java.lang.Object) +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_horizontalDivider +com.jaredrummler.android.colorpicker.R$attr: int fastScrollEnabled +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +androidx.appcompat.R$anim: int abc_slide_out_bottom +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onComplete() +okhttp3.internal.http2.Http2Codec: java.lang.String PROXY_CONNECTION +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_android_windowAnimationStyle +androidx.hilt.R$id: int accessibility_custom_action_29 +com.google.android.gms.location.ActivityTransition: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$attr: int colorSwitchThumbNormal +androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_RadioButton +wangdaye.com.geometricweather.R$drawable: int widget_multi_city +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar_Small +wangdaye.com.geometricweather.R$id: int SHOW_PATH +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_2 +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.util.Date time +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: java.util.concurrent.atomic.AtomicReference upstream +androidx.lifecycle.ReflectiveGenericLifecycleObserver +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActivityChooserView +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onError(java.lang.Throwable) +androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +androidx.lifecycle.ComputableLiveData$3: androidx.lifecycle.ComputableLiveData this$0 +io.reactivex.internal.disposables.SequentialDisposable: SequentialDisposable() +androidx.work.impl.background.systemjob.SystemJobService +androidx.recyclerview.widget.RecyclerView: void setAdapter(androidx.recyclerview.widget.RecyclerView$Adapter) +com.jaredrummler.android.colorpicker.R$attr: int autoCompleteTextViewStyle +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onDetach() +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: ILiveLockScreenManager$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$attr: int enforceTextAppearance +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: ObservableThrottleLatest$ThrottleLatestObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker,boolean) +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void dispose() +androidx.viewpager2.R$attr: R$attr() +james.adaptiveicon.R$styleable: int Toolbar_navigationContentDescription +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemRippleColor +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_track_mtrl_alpha +okhttp3.HttpUrl: void pathSegmentsToString(java.lang.StringBuilder,java.util.List) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitationProbability(java.lang.Float) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar +androidx.constraintlayout.widget.R$attr: int layout_constrainedWidth +okhttp3.internal.platform.Android10Platform: Android10Platform(java.lang.Class) +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: io.reactivex.disposables.Disposable upstream +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String IconPhrase +androidx.constraintlayout.widget.R$attr: int maxButtonHeight +androidx.activity.R$id: int time +okio.Segment: Segment(byte[],int,int,boolean,boolean) +cyanogenmod.providers.CMSettings$Secure: boolean putInt(android.content.ContentResolver,java.lang.String,int) +androidx.transition.R$drawable: int notification_bg_low +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: boolean isDisposed() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$id: int event +wangdaye.com.geometricweather.R$string: int wind_direction +com.google.android.material.R$styleable: int SearchView_submitBackground +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onComplete() +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSwoopDuration +android.didikee.donate.R$styleable: int AppCompatTheme_editTextColor +androidx.constraintlayout.widget.R$attr: int dialogCornerRadius +wangdaye.com.geometricweather.R$styleable: int TextInputEditText_textInputLayoutFocusedRectEnabled +wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_grey +androidx.constraintlayout.widget.R$string: int abc_search_hint +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getHourlyEntityList() +okhttp3.internal.http.HttpHeaders: int skipWhitespace(java.lang.String,int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul12H +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline3 +wangdaye.com.geometricweather.R$id: int dragRight +com.bumptech.glide.R$id: int text +androidx.appcompat.widget.SearchView: void setQuery(java.lang.CharSequence) +androidx.fragment.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$string: int common_signin_button_text +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_NavigationView +androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +wangdaye.com.geometricweather.R$id: int scrollView +wangdaye.com.geometricweather.R$styleable: int[] Transform +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_arrowHeadLength +wangdaye.com.geometricweather.R$styleable: int Motion_motionStagger +james.adaptiveicon.R$layout: int abc_action_menu_layout +androidx.appcompat.R$attr: int dividerVertical +android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +com.google.android.material.R$id: int startVertical +androidx.lifecycle.AndroidViewModel: android.app.Application getApplication() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView_DropDown +com.turingtechnologies.materialscrollbar.R$attr: int tabSelectedTextColor +okhttp3.internal.http2.Http2Reader$ContinuationSource: int length +androidx.hilt.R$styleable: int[] GradientColor +okhttp3.internal.http2.Http2Writer: void windowUpdate(int,long) +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation observation +com.turingtechnologies.materialscrollbar.R$style: int Base_AlertDialog_AppCompat_Light +androidx.lifecycle.ProcessLifecycleOwner: void activityStarted() +com.google.android.material.R$styleable: int Constraint_flow_firstVerticalStyle +androidx.constraintlayout.widget.R$attr: int actionModeShareDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +com.google.android.gms.base.R$string: int common_google_play_services_update_text +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_textAppearance +cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_APP_SUGGESTIONS +com.turingtechnologies.materialscrollbar.R$integer: int mtrl_btn_anim_delay_ms +com.google.android.material.R$dimen: int material_text_view_test_line_height +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$attr: int fastScrollVerticalTrackDrawable +androidx.appcompat.R$attr: int lineHeight +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_listItemLayout +androidx.constraintlayout.widget.R$attr: int actionBarSize +com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_material_light +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +com.google.android.material.R$id: int accessibility_action_clickable_span +androidx.constraintlayout.widget.R$styleable: int SearchView_android_focusable +com.jaredrummler.android.colorpicker.R$style: int PreferenceFragment +androidx.coordinatorlayout.R$color: int notification_icon_bg_color +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_SmallComponent +androidx.lifecycle.ProcessLifecycleOwner$1 wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_speed -io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function) -com.xw.repo.BubbleSeekBar: float getMin() -wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingLeft -com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_FENCESTATUS -cyanogenmod.app.CMContextConstants: java.lang.String CM_STATUS_BAR_SERVICE -wangdaye.com.geometricweather.R$styleable: int[] ListPreference -com.bumptech.glide.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$attr: int dotGap -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_LAST_PROFILE_NAME -com.google.android.material.R$styleable: int Constraint_transitionEasing -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_entryValues -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_default -com.google.android.material.R$styleable: int[] AlertDialog -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -com.google.android.material.R$attr: int borderWidth -okhttp3.internal.connection.RouteException: java.io.IOException getFirstConnectException() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -cyanogenmod.providers.DataUsageContract -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: ObservableRange$RangeDisposable(io.reactivex.Observer,long,long) -wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_maxWidth -com.google.android.material.floatingactionbutton.FloatingActionButton: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] publicSuffixExceptionListBytes -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_hint -androidx.appcompat.R$attr: int listPreferredItemHeight -com.xw.repo.bubbleseekbar.R$string: int abc_action_bar_home_description -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService this$0 -wangdaye.com.geometricweather.R$attr: int cpv_allowPresets -james.adaptiveicon.R$attr: int listPreferredItemHeightLarge -android.didikee.donate.R$dimen: int abc_edit_text_inset_top_material -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -com.google.android.material.R$attr: int mock_label -io.reactivex.internal.queue.SpscArrayQueue: java.util.concurrent.atomic.AtomicLong consumerIndex -james.adaptiveicon.R$styleable: int View_paddingEnd -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_small_material -android.didikee.donate.R$styleable: int SearchView_searchIcon -wangdaye.com.geometricweather.R$attr: int hideOnContentScroll -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onComplete() -androidx.appcompat.widget.AppCompatRadioButton: void setButtonDrawable(int) -androidx.preference.R$color: int tooltip_background_dark -com.google.gson.JsonIOException: JsonIOException(java.lang.String,java.lang.Throwable) -androidx.drawerlayout.R$styleable: int GradientColor_android_centerY -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.Observer downstream -okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeOptionalWithoutCheckedException(java.lang.Object,java.lang.Object[]) -androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -com.google.gson.stream.JsonReader: void close() -androidx.appcompat.R$styleable: int ActionBar_title -android.didikee.donate.R$attr: int actionBarWidgetTheme -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: java.lang.String level -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -com.google.android.material.R$styleable: int AlertDialog_multiChoiceItemLayout -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Colored -androidx.preference.R$styleable: int DrawerArrowToggle_arrowShaftLength -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removeAllQueryParameters(java.lang.String) -com.google.gson.internal.$Gson$Types$WildcardTypeImpl -androidx.constraintlayout.widget.Group: Group(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$string: int abc_menu_function_shortcut_label -com.google.android.material.button.MaterialButton: void addOnCheckedChangeListener(com.google.android.material.button.MaterialButton$OnCheckedChangeListener) -androidx.preference.R$attr: int fontProviderFetchStrategy -com.google.gson.stream.JsonReader: int nextInt() -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_container -com.google.android.material.R$id: int add -androidx.preference.R$styleable: int MenuItem_android_icon -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_end -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: boolean requestDismissAndStartActivity(android.content.Intent) -james.adaptiveicon.R$drawable: int abc_popup_background_mtrl_mult -android.didikee.donate.R$style: int Widget_AppCompat_ImageButton -com.turingtechnologies.materialscrollbar.R$id: int multiply -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_constraintSet -androidx.appcompat.R$color: int material_grey_800 -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dark -okhttp3.internal.platform.AndroidPlatform -io.reactivex.subjects.PublishSubject$PublishDisposable: PublishSubject$PublishDisposable(io.reactivex.Observer,io.reactivex.subjects.PublishSubject) -com.google.android.material.R$dimen: int mtrl_slider_track_side_padding -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleDrawable(int) -retrofit2.Platform: boolean isDefaultMethod(java.lang.reflect.Method) -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_normal -androidx.hilt.R$id: int accessibility_custom_action_31 -io.reactivex.observers.DisposableObserver: void onStart() -cyanogenmod.providers.CMSettings$Secure$2: java.lang.String mDelimiter -wangdaye.com.geometricweather.R$xml: int widget_trend_hourly -io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable INSTANCE -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Inverse -com.google.android.material.R$id: int chip_group -com.turingtechnologies.materialscrollbar.Indicator: void setSizeCustom(int) -android.didikee.donate.R$anim: R$anim() -wangdaye.com.geometricweather.common.basic.models.weather.Alert: android.os.Parcelable$Creator CREATOR -com.google.android.material.datepicker.CalendarConstraints$DateValidator -com.google.android.material.R$style: int Base_Widget_AppCompat_ActivityChooserView +androidx.preference.R$attr: int buttonBarNegativeButtonStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_textAllCaps +com.turingtechnologies.materialscrollbar.R$drawable: int abc_control_background_material +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: CompletableFutureCallAdapterFactory$BodyCallAdapter(java.lang.reflect.Type) +com.google.gson.FieldNamingPolicy$3 +androidx.appcompat.R$layout: int select_dialog_multichoice_material +com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextInputEditText +androidx.appcompat.widget.ActionBarContextView: int getAnimatedVisibility() +wangdaye.com.geometricweather.R$drawable: int weather_snow_2 +androidx.constraintlayout.utils.widget.ImageFilterView: float getWarmth() +androidx.fragment.R$id: int blocking +cyanogenmod.platform.R$drawable: R$drawable() +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onSubscribe(io.reactivex.disposables.Disposable) +james.adaptiveicon.R$style: int Widget_Compat_NotificationActionText +cyanogenmod.weather.util.WeatherUtils: boolean isValidTempUnit(int) +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert +androidx.constraintlayout.widget.R$attr: int windowMinWidthMajor +androidx.drawerlayout.widget.DrawerLayout: android.graphics.drawable.Drawable getStatusBarBackgroundDrawable() +wangdaye.com.geometricweather.R$dimen: int item_touch_helper_swipe_escape_max_velocity +org.greenrobot.greendao.AbstractDao: void deleteByKeyInsideSynchronized(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement) +wangdaye.com.geometricweather.R$anim: int abc_popup_exit +android.didikee.donate.R$styleable: int LinearLayoutCompat_showDividers +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: ObservableSwitchMap$SwitchMapInnerObserver(io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver,long,int) +cyanogenmod.library.R$styleable +com.github.rahatarmanahmed.cpv.CircularProgressView$2: void onAnimationEnd(android.animation.Animator) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startX +androidx.appcompat.R$attr: int textAppearancePopupMenuHeader +wangdaye.com.geometricweather.R$attr: int counterTextAppearance +cyanogenmod.app.IProfileManager: void updateProfile(cyanogenmod.app.Profile) +io.reactivex.Observable: io.reactivex.Observable concatMapSingle(io.reactivex.functions.Function) +com.github.rahatarmanahmed.cpv.R$dimen +com.google.android.material.R$dimen: int abc_text_size_menu_header_material +james.adaptiveicon.R$attr: int thumbTintMode +androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver +cyanogenmod.profiles.AirplaneModeSettings: cyanogenmod.profiles.AirplaneModeSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +androidx.constraintlayout.widget.R$styleable: int[] PopupWindowBackgroundState +okhttp3.internal.http.HttpHeaders: boolean hasBody(okhttp3.Response) +androidx.fragment.R$id: int accessibility_custom_action_16 +androidx.hilt.work.R$dimen: int compat_button_padding_horizontal_material +retrofit2.ParameterHandler$PartMap: ParameterHandler$PartMap(java.lang.reflect.Method,int,retrofit2.Converter,java.lang.String) +androidx.appcompat.resources.R$id: int right_side +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index o3 +androidx.lifecycle.SavedStateHandle: java.util.Map mLiveDatas +androidx.appcompat.R$styleable: int DrawerArrowToggle_arrowHeadLength +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange +androidx.vectordrawable.R$attr: int fontProviderPackage +com.google.android.material.R$drawable: int btn_radio_off_to_on_mtrl_animation +com.google.android.material.R$style: int ShapeAppearanceOverlay_BottomRightCut +cyanogenmod.themes.ThemeManager: android.os.Handler access$200() +james.adaptiveicon.R$string: int abc_searchview_description_voice +com.amap.api.location.CoordinateConverter: com.amap.api.location.CoordinateConverter from(com.amap.api.location.CoordinateConverter$CoordType) +androidx.loader.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixTextAppearance +com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_overlapAnchor +androidx.vectordrawable.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.savedstate.SavedStateRegistry mSavedStateRegistry +androidx.constraintlayout.widget.R$styleable: int[] ConstraintSet +io.reactivex.internal.subscriptions.SubscriptionHelper: void cancel() +james.adaptiveicon.R$drawable: int abc_item_background_holo_light +android.didikee.donate.R$dimen: int abc_text_size_medium_material +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorSize +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_weight +androidx.coordinatorlayout.R$id: int accessibility_custom_action_6 +okio.GzipSink: okio.BufferedSink sink +okhttp3.CacheControl: okhttp3.CacheControl FORCE_NETWORK +cyanogenmod.app.IPartnerInterface$Stub$Proxy: android.os.IBinder mRemote +androidx.preference.R$id: int on +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport parent +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getIcePrecipitationProbability() +cyanogenmod.hardware.IThermalListenerCallback$Stub: int TRANSACTION_onThermalChanged_0 +androidx.appcompat.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +wangdaye.com.geometricweather.R$attr: int endIconTint +androidx.constraintlayout.widget.R$dimen: int abc_text_size_subhead_material +androidx.appcompat.R$style: int Widget_AppCompat_TextView +retrofit2.OkHttpCall$NoContentResponseBody: okhttp3.MediaType contentType() +io.reactivex.Observable: io.reactivex.Observable repeat() +io.reactivex.exceptions.ProtocolViolationException +com.google.android.material.R$attr: int motion_triggerOnCollision +androidx.preference.R$layout: int preference_list_fragment +james.adaptiveicon.R$styleable: int Toolbar_subtitleTextAppearance +wangdaye.com.geometricweather.R$drawable: int weather_hail_pixel +androidx.appcompat.R$color: int accent_material_light +okio.AsyncTimeout: okio.AsyncTimeout awaitTimeout() +wangdaye.com.geometricweather.R$styleable: int[] LoadingImageView +wangdaye.com.geometricweather.R$layout: int activity_allergen +androidx.work.R$style: int TextAppearance_Compat_Notification_Title +androidx.appcompat.R$styleable: int FontFamily_fontProviderAuthority +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mVersionSystemProperty +wangdaye.com.geometricweather.R$attr: int textAppearanceSubtitle2 +wangdaye.com.geometricweather.R$styleable: int TouchScrollBar_msb_hideDelayInMilliseconds +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ct +com.google.android.material.R$styleable: int Toolbar_logo +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: AccuCurrentResult$Ceiling$Imperial() +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long,boolean) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +wangdaye.com.geometricweather.R$color: int abc_background_cache_hint_selector_material_light +androidx.drawerlayout.R$string: int status_bar_notification_info_overflow +com.turingtechnologies.materialscrollbar.R$id: int search_voice_btn +com.google.gson.stream.JsonWriter: JsonWriter(java.io.Writer) +retrofit2.RequestFactory$Builder: boolean hasBody +wangdaye.com.geometricweather.R$attr: int mock_label +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FREEZING_RAIN +android.didikee.donate.R$styleable: int ActionBar_displayOptions +wangdaye.com.geometricweather.R$attr: int customFloatValue +com.google.android.material.R$styleable: int TextAppearance_android_textColorLink +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String b() +cyanogenmod.app.CMTelephonyManager: int ASK_FOR_SUBSCRIPTION_ID +com.google.android.material.textfield.TextInputLayout: void setPrefixTextAppearance(int) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_percent +androidx.recyclerview.widget.StaggeredGridLayoutManager$SavedState +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderFetchTimeout +com.google.android.material.R$styleable: int Constraint_layout_constraintBaseline_creator +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_drawableSize +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.R$string: int action_about +wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_offset +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean cancelled +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_GREEN_INDEX +androidx.appcompat.R$attr: int drawableLeftCompat +androidx.legacy.coreutils.R$attr: R$attr() +com.google.android.material.R$color: int material_on_surface_emphasis_medium +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconCheckable +wangdaye.com.geometricweather.R$string: int donate +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getUnitId() +cyanogenmod.weather.ICMWeatherManager: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) +wangdaye.com.geometricweather.R$string: int week_3 +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityCreated(android.app.Activity,android.os.Bundle) +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSize +androidx.constraintlayout.widget.R$string: int abc_shareactionprovider_share_with_application +androidx.lifecycle.ViewModelStoreOwner +okio.RealBufferedSink$1: void close() +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: long serialVersionUID +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemBackground(int) +androidx.preference.R$attr: int contentDescription +okhttp3.internal.Util: java.nio.charset.Charset UTF_16_BE +com.turingtechnologies.materialscrollbar.R$id: int search_go_btn +androidx.hilt.R$dimen +com.google.android.material.R$id: int cut +wangdaye.com.geometricweather.common.ui.activities.AwakeUpdateActivity +wangdaye.com.geometricweather.R$attr: int keylines +wangdaye.com.geometricweather.R$bool: int enable_system_foreground_service_default +com.google.android.gms.auth.api.signin.GoogleSignInAccount: android.os.Parcelable$Creator CREATOR +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$string: int key_notification_hide_icon +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver +androidx.viewpager2.R$styleable: int GradientColor_android_endColor +io.reactivex.Observable: io.reactivex.Observable defer(java.util.concurrent.Callable) +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_borderless_material +com.google.android.material.bottomnavigation.BottomNavigationMenuView: BottomNavigationMenuView(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$attr: int windowMinWidthMajor +okhttp3.internal.http.HttpHeaders: HttpHeaders() +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_unregisterWeatherServiceProviderChangeListener +androidx.preference.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +wangdaye.com.geometricweather.R$attr: int itemShapeAppearanceOverlay +wangdaye.com.geometricweather.R$id: int dragDown +wangdaye.com.geometricweather.R$string: int precipitation_overview +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstHorizontalBias +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void pushPromise(int,int,java.util.List) +james.adaptiveicon.R$styleable: int AppCompatTheme_panelMenuListWidth +com.google.android.material.R$string: int mtrl_picker_navigate_to_year_description +androidx.legacy.coreutils.R$id: int forever +androidx.coordinatorlayout.R$dimen: int notification_right_icon_size +androidx.coordinatorlayout.R$attr: int ttcIndex +com.google.android.material.chip.Chip: float getTextEndPadding() +retrofit2.Utils: okhttp3.ResponseBody buffer(okhttp3.ResponseBody) +androidx.fragment.R$style: R$style() +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_elevation_material +com.bumptech.glide.R$layout +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginBottom +wangdaye.com.geometricweather.R$drawable: int abc_list_longpressed_holo +com.google.android.material.R$attr: int buttonTintMode +wangdaye.com.geometricweather.R$layout: int preference_category_material +okhttp3.internal.http.HttpHeaders: java.util.Set varyFields(okhttp3.Headers) +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_ALARMS +wangdaye.com.geometricweather.R$drawable: int ic_tag_plus +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableStart +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorAnimationDuration +com.amap.api.fence.GeoFence: com.amap.api.location.AMapLocation r +android.didikee.donate.R$dimen: int abc_panel_menu_list_width +wangdaye.com.geometricweather.R$id: int disableHome +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_132 +androidx.customview.R$styleable: int GradientColor_android_endY +com.google.android.material.R$attr: int cornerSizeTopRight +androidx.appcompat.widget.AlertDialogLayout: AlertDialogLayout(android.content.Context,android.util.AttributeSet) +androidx.fragment.app.FragmentManagerImpl +wangdaye.com.geometricweather.R$attr: int textAppearanceButton +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_percent +androidx.constraintlayout.widget.R$styleable: int PropertySet_motionProgress +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemBackground +okhttp3.internal.Util: java.util.Comparator NATURAL_ORDER +androidx.lifecycle.ReflectiveGenericLifecycleObserver: ReflectiveGenericLifecycleObserver(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: long id +androidx.constraintlayout.widget.ConstraintLayout: void setMinWidth(int) +okhttp3.Authenticator: okhttp3.Authenticator NONE +com.turingtechnologies.materialscrollbar.R$string: int abc_action_menu_overflow_description +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_anchor +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean isDisposed() +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver observer +cyanogenmod.app.BaseLiveLockManagerService: void cancelLiveLockScreen(java.lang.String,int,int) +androidx.recyclerview.widget.RecyclerView: void setOnFlingListener(androidx.recyclerview.widget.RecyclerView$OnFlingListener) +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void run() +okhttp3.internal.http2.Hpack$Reader: int headerTableSizeSetting +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$300() +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +io.reactivex.Observable: io.reactivex.Observable serialize() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onComplete() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customColorValue +androidx.work.impl.utils.futures.AbstractFuture: java.lang.Object value +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextAppearanceActive +okhttp3.RealCall$1: okhttp3.RealCall this$0 +androidx.hilt.lifecycle.R$attr: int fontVariationSettings +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean cancelled +okio.AsyncTimeout$Watchdog: void run() +okhttp3.internal.http1.Http1Codec$FixedLengthSink: okhttp3.internal.http1.Http1Codec this$0 +com.google.android.material.R$drawable: int abc_ic_star_black_36dp +android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +cyanogenmod.themes.ThemeManager$2: cyanogenmod.themes.ThemeManager this$0 +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.MinutelyEntity) +android.support.v4.app.INotificationSideChannel +androidx.preference.R$styleable: int[] AppCompatTextView +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_range_end_hint +com.amap.api.location.AMapLocationQualityReport: com.amap.api.location.AMapLocationClientOption$AMapLocationMode a +androidx.preference.R$attr: int title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String type +com.google.android.material.R$styleable: int ConstraintSet_android_minWidth +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionMenuTextColor +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_barColor +cyanogenmod.app.PartnerInterface: void setAirplaneModeEnabled(boolean) +james.adaptiveicon.R$attr: int progressBarPadding +retrofit2.KotlinExtensions$awaitResponse$2$2 +com.github.rahatarmanahmed.cpv.R$dimen: R$dimen() +androidx.work.R$layout: int custom_dialog +wangdaye.com.geometricweather.R$layout: int preference_dialog_edittext +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: boolean isChinese() +cyanogenmod.app.LiveLockScreenInfo: void cloneInto(cyanogenmod.app.LiveLockScreenInfo) +com.xw.repo.bubbleseekbar.R$attr: int panelBackground +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean unRegisterThermalListener(cyanogenmod.hardware.IThermalListenerCallback) +com.github.rahatarmanahmed.cpv.R$bool: R$bool() +james.adaptiveicon.R$styleable: int AlertDialog_listItemLayout +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_5 +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setTitleText(java.lang.String) +androidx.core.R$styleable: int ColorStateListItem_alpha +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxyAuthenticator(okhttp3.Authenticator) +retrofit2.http.Query +cyanogenmod.app.IPartnerInterface: void reboot() +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Body2 +androidx.work.R$id: int text2 +androidx.recyclerview.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_orderInCategory +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_homeLayout +androidx.constraintlayout.widget.R$id: R$id() +okhttp3.internal.io.FileSystem: okio.Source source(java.io.File) +android.didikee.donate.R$style: int Widget_AppCompat_ListView +james.adaptiveicon.R$attr: int actionBarItemBackground +retrofit2.adapter.rxjava2.CallExecuteObservable +com.google.android.material.button.MaterialButton: void setBackgroundResource(int) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean tryCancel() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_CBC_SHA256 +wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.AlertEntity) +com.google.android.material.tabs.TabLayout: void setTabsFromPagerAdapter(androidx.viewpager.widget.PagerAdapter) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: double Value +com.google.android.material.R$dimen: int abc_text_size_subhead_material +wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullException: ResourceUtils$NullException() +james.adaptiveicon.R$id: int line1 +androidx.hilt.R$styleable: int GradientColor_android_tileMode +com.google.android.material.R$styleable: int Constraint_flow_horizontalBias +james.adaptiveicon.R$styleable: int AppCompatTheme_listDividerAlertDialog +com.google.android.material.R$styleable: int AppCompatTheme_alertDialogCenterButtons +androidx.constraintlayout.widget.R$styleable: int Toolbar_title +cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings(android.os.Parcel) +androidx.hilt.work.R$id: int accessibility_custom_action_25 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setSpeed(java.lang.String) +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog +wangdaye.com.geometricweather.R$string: int done +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onError(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: long serialVersionUID +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom +okhttp3.internal.platform.ConscryptPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.util.ErrorMode errorMode +androidx.constraintlayout.widget.R$attr: int region_heightMoreThan +wangdaye.com.geometricweather.R$attr: int rippleColor +androidx.preference.R$id: int scrollView +com.google.android.material.R$anim: int abc_slide_in_bottom +wangdaye.com.geometricweather.R$string: int abc_menu_shift_shortcut_label +com.google.android.material.R$id: int accessibility_custom_action_26 +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_Underlined +androidx.preference.R$styleable: int Spinner_android_prompt +com.google.android.material.internal.NavigationMenuItemView: void setIconTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$color: int lightPrimary_3 +androidx.preference.R$id: int accessibility_custom_action_10 +io.reactivex.internal.disposables.EmptyDisposable: int requestFusion(int) +cyanogenmod.os.Build: android.util.SparseArray sdkMap +okio.Buffer: okio.BufferedSink writeHexadecimalUnsignedLong(long) +androidx.viewpager2.R$id: int time +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Spinner_Underlined +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: long serialVersionUID +com.google.android.material.R$styleable: int LinearLayoutCompat_android_weightSum +com.google.android.material.R$styleable: int View_theme +com.google.android.material.R$style: int Widget_AppCompat_Light_SearchView +com.google.android.material.R$dimen: int abc_list_item_height_material +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.TimeUnit unit +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionMode +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextAppearanceInactive +com.google.android.material.R$attr: int chipEndPadding +okhttp3.internal.http2.Http2Stream: okio.Timeout readTimeout() +com.google.android.material.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: java.lang.Integer depth +androidx.constraintlayout.widget.R$id: int italic androidx.constraintlayout.widget.R$styleable: int ActionBar_hideOnContentScroll -wangdaye.com.geometricweather.R$attr: int navigationContentDescription -wangdaye.com.geometricweather.R$styleable: int[] PreferenceFragment -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontStyle -james.adaptiveicon.R$color: int primary_text_disabled_material_light -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.MinutelyEntityDao getMinutelyEntityDao() -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_20 -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle getInstance(java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedIndex(java.lang.Integer) -wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_ripple_color -androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context) -com.google.android.material.R$attr: int materialCircleRadius -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: double Value -wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_light -androidx.preference.R$style: int TextAppearance_AppCompat_Title -okhttp3.internal.platform.Android10Platform: Android10Platform(java.lang.Class) -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setScrollBarHidden(boolean) -wangdaye.com.geometricweather.R$styleable: int[] ExtendedFloatingActionButton_Behavior_Layout -wangdaye.com.geometricweather.R$array: int dark_mode_values -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -androidx.dynamicanimation.R$layout: int notification_template_custom_big -android.didikee.donate.R$layout: int abc_alert_dialog_button_bar_material -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean disposed -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconTintMode -wangdaye.com.geometricweather.R$id: int guideline -androidx.coordinatorlayout.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$id: int stretch -com.google.android.material.R$styleable: int AppCompatTheme_actionBarStyle -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_height_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: double Value -okhttp3.logging.HttpLoggingInterceptor$Level: HttpLoggingInterceptor$Level(java.lang.String,int) -androidx.constraintlayout.widget.R$styleable: int MenuItem_actionLayout -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWeatherText -okhttp3.internal.http.HttpDate$1: java.lang.Object initialValue() -wangdaye.com.geometricweather.R$attr: int dialogTitle -com.bumptech.glide.integration.okhttp.R$drawable: int notification_tile_bg -com.jaredrummler.android.colorpicker.R$id: int spinner -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.util.concurrent.CountDownLatch readCompleteLatch -com.google.android.material.R$styleable: int DrawerArrowToggle_spinBars -androidx.loader.R$id: int blocking -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService: ForegroundNormalUpdateService() -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_end -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: long serialVersionUID -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: void dispose() -android.didikee.donate.R$layout: int abc_action_bar_title_item -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setEn_US(java.lang.String) -okhttp3.Address: java.util.List protocols -androidx.lifecycle.livedata.R -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$attr: int contentInsetEnd -androidx.constraintlayout.widget.R$attr: int checkboxStyle -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton -okhttp3.internal.connection.RouteSelector$Selection: boolean hasNext() -com.xw.repo.bubbleseekbar.R$attr: int singleChoiceItemLayout -androidx.coordinatorlayout.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.R$id: int src_atop -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarButtonStyle -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: int getCity_code() -com.google.android.material.R$attr: int barrierDirection -com.xw.repo.bubbleseekbar.R$dimen: int abc_panel_menu_list_width -com.google.android.material.textfield.TextInputLayout: void setEditText(android.widget.EditText) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_visibility -wangdaye.com.geometricweather.R$string: int precipitation_probability -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -retrofit2.OkHttpCall$1 -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_dither -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_percent -wangdaye.com.geometricweather.background.polling.work.worker.AsyncWorker -wangdaye.com.geometricweather.db.entities.WeatherEntity: int getTemperature() -androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$dimen: int material_timepicker_dialog_buttons_margin_top -androidx.constraintlayout.widget.R$attr: int navigationMode -james.adaptiveicon.R$drawable: int abc_ic_star_black_16dp -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index pm10 -com.google.android.material.floatingactionbutton.FloatingActionButton: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) -retrofit2.Retrofit: java.util.List callAdapterFactories -james.adaptiveicon.R$styleable: int Toolbar_android_gravity -com.google.android.material.R$styleable: int TextInputLayout_counterEnabled -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_middle_mtrl_dark -androidx.viewpager.R$dimen: int notification_action_icon_size -com.turingtechnologies.materialscrollbar.R$layout: R$layout() -wangdaye.com.geometricweather.R$attr: int singleSelection -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_listItemLayout +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTint +androidx.hilt.R$styleable: int[] FontFamily +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.R$color: int material_grey_50 +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +com.google.android.material.R$styleable: int ForegroundLinearLayout_android_foregroundGravity +android.didikee.donate.R$attr: int itemPadding +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_editor_absoluteX +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_RadioButton +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getAbbreviation(android.content.Context) +wangdaye.com.geometricweather.R$string: int tag_uv +androidx.core.R$styleable: int FontFamilyFont_ttcIndex +android.didikee.donate.R$dimen: int abc_button_inset_vertical_material +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_weightSum +androidx.appcompat.R$dimen: int notification_right_side_padding_top +com.xw.repo.bubbleseekbar.R$attr: int actionBarPopupTheme +com.turingtechnologies.materialscrollbar.R$string: int abc_shareactionprovider_share_with +wangdaye.com.geometricweather.R$styleable: int Constraint_android_alpha +okhttp3.logging.LoggingEventListener +com.google.android.material.R$style: int Base_V26_Theme_AppCompat_Light +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton_Overflow +okhttp3.Dispatcher: java.util.List runningCalls() +com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingRight +wangdaye.com.geometricweather.R$attr: int cpv_alphaChannelText +com.google.android.material.R$color: int material_timepicker_button_stroke +com.google.android.material.R$styleable: int ActionBar_customNavigationLayout +wangdaye.com.geometricweather.R$style: int TestStyleWithoutLineHeight +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: float getMax() +androidx.fragment.R$anim: R$anim() +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleTextColor +io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit) +com.google.android.material.chip.Chip: Chip(android.content.Context) +wangdaye.com.geometricweather.R$string: int preference_copied +okhttp3.Address: java.lang.String toString() +cyanogenmod.hardware.ThermalListenerCallback$State: java.lang.String toString(int) +android.didikee.donate.R$attr: int contentInsetStartWithNavigation +android.support.v4.os.IResultReceiver +com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_alpha +com.jaredrummler.android.colorpicker.R$styleable: int Preference_enabled +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_readPersistentBytes +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: double Value +androidx.appcompat.resources.R$drawable: int notification_bg_low_normal +com.amap.api.location.AMapLocationQualityReport: void setNetUseTime(long) +com.jaredrummler.android.colorpicker.ColorPickerView: void setBorderColor(int) +wangdaye.com.geometricweather.R$string: int key_notification_style +cyanogenmod.app.Profile$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.lifecycle.EmptyActivityLifecycleCallbacks: EmptyActivityLifecycleCallbacks() +androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnBind() +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_DarkActionBar +androidx.appcompat.resources.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$array: int widget_text_color_values +okhttp3.Cache$2: boolean hasNext() +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: boolean requestDismiss() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.ObservableSource fallback +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_xml +okhttp3.internal.http2.Http2Stream$FramingSink: void flush() +io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.ObservableSource) +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMode +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.BiFunction resultSelector +com.bumptech.glide.integration.okhttp.R$attr: int layout_behavior +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void drain() +io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable NEVER +androidx.vectordrawable.R$id: int accessibility_custom_action_27 +wangdaye.com.geometricweather.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMark +io.reactivex.Observable: io.reactivex.Observable fromArray(java.lang.Object[]) +okhttp3.logging.LoggingEventListener: LoggingEventListener(okhttp3.logging.HttpLoggingInterceptor$Logger) +com.jaredrummler.android.colorpicker.R$attr: int dividerVertical +wangdaye.com.geometricweather.R$style: int Preference_DropDown_Material +cyanogenmod.weather.ICMWeatherManager$Stub +wangdaye.com.geometricweather.R$drawable: int ic_eye +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event UPDATE +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource) +io.reactivex.internal.subscribers.StrictSubscriber: void request(long) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) +okio.SegmentedByteString: byte[] internalArray() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setEn_US(java.lang.String) +androidx.activity.R$id: int icon +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String dailyForecast +androidx.appcompat.R$style: int Widget_AppCompat_AutoCompleteTextView +okio.Utf8 +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String DATE_CREATED +com.google.android.material.R$attr: int flow_verticalBias +androidx.core.R$drawable: int notification_icon_background +com.xw.repo.bubbleseekbar.R$attr: int showAsAction +wangdaye.com.geometricweather.R$styleable: int Spinner_android_dropDownWidth +android.didikee.donate.R$dimen: int abc_alert_dialog_button_bar_height +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_navigationIcon +androidx.activity.R$id: int blocking +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionMode +androidx.constraintlayout.widget.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: int getMarginTop() +androidx.coordinatorlayout.R$dimen +com.google.gson.stream.JsonReader$1: JsonReader$1() +com.google.android.material.R$attr: int minWidth +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_TextInputLayout +androidx.preference.R$drawable: int notification_bg +james.adaptiveicon.R$string: int abc_searchview_description_search +com.google.android.material.R$id: int bounce +androidx.vectordrawable.R$id: int notification_background +androidx.appcompat.widget.AppCompatImageButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +androidx.appcompat.R$dimen: int abc_control_corner_material +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginEnd +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherPhase +io.reactivex.Observable: io.reactivex.Observable switchMap(io.reactivex.functions.Function,int) +androidx.work.R$id: int action_text +androidx.fragment.R$id: int accessibility_custom_action_27 +com.google.android.material.R$styleable: int AppCompatTheme_windowMinWidthMajor +wangdaye.com.geometricweather.R$layout: int design_navigation_item_subheader +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar +retrofit2.http.HTTP: java.lang.String method() +retrofit2.OkHttpCall$NoContentResponseBody +com.google.android.material.R$color: int bright_foreground_material_dark +james.adaptiveicon.R$styleable: int[] AppCompatSeekBar +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Co +com.jaredrummler.android.colorpicker.R$attr: int navigationIcon +wangdaye.com.geometricweather.R$attr: int editTextColor +okhttp3.Response: okhttp3.Response cacheResponse +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline4 +okio.Util: short reverseBytesShort(short) +com.xw.repo.bubbleseekbar.R$attr: int actionModePopupWindowStyle +okhttp3.internal.io.FileSystem$1: void delete(java.io.File) +okhttp3.internal.http2.Http2Writer: void dataFrame(int,byte,okio.Buffer,int) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void clear() +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean tryOnError(java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontContainer +com.google.android.material.R$styleable: int FontFamily_fontProviderAuthority +io.reactivex.Observable: io.reactivex.Observable concatArray(io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_end +wangdaye.com.geometricweather.R$integer: int config_tooltipAnimTime +james.adaptiveicon.R$id: int blocking +com.jaredrummler.android.colorpicker.R$color: int abc_background_cache_hint_selector_material_dark +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetEndWithActions +com.turingtechnologies.materialscrollbar.R$attr: int colorError +com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyleSmall +androidx.legacy.coreutils.R$styleable: int[] GradientColorItem +androidx.preference.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$attr: int singleChoiceItemLayout +okhttp3.OkHttpClient: boolean followSslRedirects() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarButtonStyle +wangdaye.com.geometricweather.R$attr: int layout_goneMarginBottom +androidx.preference.R$styleable: int AppCompatSeekBar_tickMark +androidx.appcompat.widget.FitWindowsViewGroup: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) +androidx.coordinatorlayout.R$attr: int alpha +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean done +androidx.cardview.R$styleable: int CardView_cardPreventCornerOverlap +cyanogenmod.hardware.ICMHardwareService: boolean writePersistentBytes(java.lang.String,byte[]) +androidx.lifecycle.ReportFragment: void setProcessListener(androidx.lifecycle.ReportFragment$ActivityInitializationListener) +androidx.constraintlayout.widget.R$id: int path +androidx.activity.R$id: int right_icon +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light_focused +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.util.List _queryWeatherEntity_HourlyEntityList(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$id: int fragment_drawer +com.google.android.material.R$styleable: int TabLayout_tabRippleColor +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_weightSum +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy +com.google.android.material.R$dimen: int mtrl_calendar_day_width +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean hasKey(java.lang.Object) +okhttp3.internal.http1.Http1Codec$FixedLengthSource: long read(okio.Buffer,long) +com.google.android.gms.common.api.AvailabilityException +androidx.transition.R$id: int actions +com.google.android.gms.common.internal.ClientIdentity +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginStart +com.jaredrummler.android.colorpicker.R$attr: int selectableItemBackground +james.adaptiveicon.R$color: int abc_hint_foreground_material_light +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream getStream(int) +com.xw.repo.bubbleseekbar.R$color: int notification_icon_bg_color +androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache$CallbackInfo createInfo(java.lang.Class,java.lang.reflect.Method[]) +wangdaye.com.geometricweather.R$id: int notification_background +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker +com.google.android.material.R$styleable: int MaterialButton_strokeColor +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger +androidx.preference.R$style: int Base_V7_Widget_AppCompat_Toolbar +androidx.lifecycle.extensions.R$dimen: int notification_large_icon_width +io.reactivex.internal.subscriptions.BasicQueueSubscription: long serialVersionUID +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void drain() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherText(java.lang.String) +com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColorStateList(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.google.android.material.R$styleable: int ConstraintSet_flow_firstHorizontalStyle +james.adaptiveicon.R$id: int notification_background +com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_disable_only_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCutDrawable +com.google.android.material.R$dimen: int abc_action_bar_content_inset_material +okhttp3.internal.cache.CacheStrategy$Factory: long computeFreshnessLifetime() +retrofit2.Retrofit$Builder: okhttp3.HttpUrl baseUrl +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeTopLeft +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Latitude +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +androidx.lifecycle.extensions.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_DialogWhenLarge +androidx.hilt.R$dimen: int notification_large_icon_height +okhttp3.internal.connection.RealConnection: okhttp3.internal.http2.Http2Connection http2Connection +okio.BufferedSource: long readDecimalLong() +androidx.appcompat.widget.AppCompatTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarSplitStyle +android.didikee.donate.R$styleable: int MenuItem_showAsAction +com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getTextSize() +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: OkHttpCall$ExceptionCatchingResponseBody(okhttp3.ResponseBody) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction +androidx.constraintlayout.widget.R$attr: int fontProviderFetchTimeout +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean disposeAll() +james.adaptiveicon.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +androidx.preference.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$styleable: int Fragment_android_name +wangdaye.com.geometricweather.R$styleable: int Constraint_android_minHeight +androidx.vectordrawable.animated.R$drawable: int notification_bg_normal +io.reactivex.internal.subscriptions.SubscriptionArbiter: void request(long) +io.reactivex.exceptions.ProtocolViolationException: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceScreenStyle +androidx.appcompat.widget.AppCompatCheckBox: void setSupportButtonTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric Metric +androidx.constraintlayout.widget.R$id: int notification_main_column +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconTint +okhttp3.internal.http2.Http2Codec: okhttp3.Interceptor$Chain chain +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTodaysHigh(double) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: void setSpeed(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean) +wangdaye.com.geometricweather.R$string: int content_des_delete_flag +androidx.appcompat.R$style: int Widget_AppCompat_ActionMode +io.reactivex.internal.util.VolatileSizeArrayList: boolean contains(java.lang.Object) +james.adaptiveicon.R$attr: int backgroundSplit +io.reactivex.internal.util.ExceptionHelper$Termination: ExceptionHelper$Termination() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionBar +com.jaredrummler.android.colorpicker.R$id: int search_bar +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: MfCurrentResult$Observation$Wind() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constrainedHeight +com.amap.api.location.AMapLocation: java.lang.String getCoordType() +androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupMenu +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_sunText +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCopyDrawable +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.DailyEntityDao dailyEntityDao +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_4 +androidx.preference.R$styleable: int PreferenceTheme_dialogPreferenceStyle +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +com.turingtechnologies.materialscrollbar.R$dimen: R$dimen() +com.turingtechnologies.materialscrollbar.R$attr: int listLayout +androidx.constraintlayout.widget.R$id: int spacer +okhttp3.internal.http.HttpHeaders: long contentLength(okhttp3.Headers) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date getPublishDate() +com.github.rahatarmanahmed.cpv.CircularProgressViewListener +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status COMPLETED +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeWidth +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean getVisibility() +cyanogenmod.themes.ThemeManager: java.lang.String TAG +wangdaye.com.geometricweather.R$attr: int errorIconTint +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: android.os.IBinder asBinder() +com.google.android.material.R$dimen: int clock_face_margin_start retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type[] getLowerBounds() -androidx.appcompat.R$id: int tag_unhandled_key_event_manager -androidx.appcompat.R$style: int Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$styleable: int[] KeyTimeCycle -com.turingtechnologies.materialscrollbar.R$id: int topPanel -androidx.appcompat.widget.ActionBarContextView -androidx.constraintlayout.widget.R$attr: int onCross -com.loc.k: java.lang.String b -android.didikee.donate.R$attr: int height -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void dispose() -okhttp3.internal.Util: javax.net.ssl.X509TrustManager platformTrustManager() -androidx.vectordrawable.animated.R$dimen: int compat_control_corner_material -androidx.preference.EditTextPreference: EditTextPreference(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_alpha -wangdaye.com.geometricweather.R$style: int CardView_Light -com.google.android.material.internal.ScrimInsetsFrameLayout -androidx.viewpager.widget.PagerTabStrip: void setBackgroundColor(int) -okio.BufferedSource: long indexOf(okio.ByteString,long) -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator -org.greenrobot.greendao.AbstractDao: void update(java.lang.Object) -com.google.android.material.R$attr: int color -android.support.v4.app.INotificationSideChannel$Stub$Proxy: void cancel(java.lang.String,int,java.lang.String) -com.google.android.material.R$dimen: int mtrl_card_elevation -com.amap.api.location.AMapLocationClientOption: boolean isSensorEnable() -wangdaye.com.geometricweather.db.entities.HourlyEntity: boolean getDaylight() -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: java.lang.String icon -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onComplete() -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: java.lang.String DESCRIPTOR -retrofit2.Utils: java.lang.reflect.Type getParameterLowerBound(int,java.lang.reflect.ParameterizedType) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_customNavigationLayout -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type[] getActualTypeArguments() -androidx.preference.R$styleable: int MenuView_android_verticalDivider -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindLevel(java.lang.String) -wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_bias -android.didikee.donate.R$styleable: int ActionBarLayout_android_layout_gravity -androidx.appcompat.R$color: int highlighted_text_material_dark -androidx.appcompat.R$styleable: int MenuItem_showAsAction -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -okhttp3.internal.http.StatusLine: okhttp3.Protocol protocol -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Bridge -com.google.android.material.R$attr: int windowActionBarOverlay -com.google.android.material.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -org.greenrobot.greendao.AbstractDao: long count() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: java.util.List brands -cyanogenmod.os.Build$CM_VERSION_CODES: int BOYSENBERRY -cyanogenmod.themes.ThemeManager$1 -androidx.preference.R$attr: int autoSizeMinTextSize -androidx.appcompat.widget.AppCompatTextView: android.content.res.ColorStateList getSupportBackgroundTintList() -com.google.android.material.R$attr: int activityChooserViewStyle -com.google.android.material.R$attr: int headerLayout -androidx.lifecycle.ComputableLiveData$1: void onActive() -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Body1 -cyanogenmod.providers.CMSettings$System: int getIntForUser(android.content.ContentResolver,java.lang.String,int) -androidx.constraintlayout.widget.R$attr: int roundPercent -okhttp3.internal.cache.CacheRequest: okio.Sink body() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_indicator_material -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_icon -androidx.viewpager.R$attr: int alpha -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -com.google.android.material.circularreveal.CircularRevealGridLayout: void setCircularRevealScrimColor(int) -james.adaptiveicon.R$style: int AlertDialog_AppCompat_Light -com.xw.repo.bubbleseekbar.R$color: int dim_foreground_disabled_material_light -androidx.lifecycle.ClassesInfoCache$MethodReference: java.lang.reflect.Method mMethod -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getHourlyForecast() -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context) -com.jaredrummler.android.colorpicker.R$dimen: int abc_alert_dialog_button_bar_height -wangdaye.com.geometricweather.R$drawable: int material_ic_menu_arrow_up_black_24dp -wangdaye.com.geometricweather.R$id: int dialog_resident_location_container -okhttp3.Callback -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_95 -com.google.android.material.R$styleable: int Toolbar_navigationIcon -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -androidx.constraintlayout.widget.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.R$styleable: int LoadingImageView_circleCrop -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ListPopupWindow -com.google.android.material.R$styleable: int RecyclerView_layoutManager -com.bumptech.glide.R$styleable: int FontFamilyFont_android_font -androidx.dynamicanimation.R$color: int notification_action_color_filter -com.google.android.material.R$styleable: int CompoundButton_android_button -cyanogenmod.app.CustomTile$ExpandedStyle$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: java.lang.String getAddress() -androidx.preference.R$attr: int lastBaselineToBottomHeight -androidx.activity.R$id: int notification_main_column -com.google.android.material.R$color: int switch_thumb_disabled_material_light -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_DAILY_OVERVIEW -wangdaye.com.geometricweather.R$id: int center -okhttp3.internal.cache.DiskLruCache$Editor -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicBoolean once -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableItem_android_id -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_3 +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Dialog_Bridge +androidx.preference.R$styleable: int TextAppearance_android_fontFamily +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver this$0 +wangdaye.com.geometricweather.R$attr: int textInputLayoutFocusedRectEnabled +wangdaye.com.geometricweather.R$styleable: int TabItem_android_layout +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: java.lang.String English +cyanogenmod.weather.WeatherInfo$Builder: double mTodaysHighTemp +james.adaptiveicon.R$styleable: int ActionBar_popupTheme +androidx.recyclerview.R$styleable: int ColorStateListItem_android_alpha +james.adaptiveicon.R$style: int Widget_AppCompat_Button_Borderless_Colored +com.jaredrummler.android.colorpicker.R$attr: int searchHintIcon +retrofit2.Invocation +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long size +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_start_padding_icon +okhttp3.Response$Builder: okhttp3.Response priorResponse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean aqi +android.didikee.donate.R$style: int Widget_AppCompat_ListPopupWindow +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow snow +androidx.coordinatorlayout.R$id: int accessibility_custom_action_19 +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: long serialVersionUID +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitation +androidx.constraintlayout.widget.R$id: int message +wangdaye.com.geometricweather.R$color: int primary_material_dark +androidx.customview.R$attr: int fontWeight +androidx.lifecycle.extensions.R$dimen: int notification_top_pad_large_text +com.google.android.material.R$attr: int icon +okhttp3.internal.http2.Header: java.lang.String toString() +com.turingtechnologies.materialscrollbar.R$id: int icon_group +com.jaredrummler.android.colorpicker.R$layout: int cpv_dialog_color_picker +androidx.dynamicanimation.R$color: int ripple_material_light +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: long serialVersionUID +cyanogenmod.providers.CMSettings$Validator: boolean validate(java.lang.String) +cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(android.os.Parcel,cyanogenmod.weatherservice.ServiceRequestResult$1) +wangdaye.com.geometricweather.R$drawable: int notification_template_icon_low_bg +okio.RealBufferedSource: okio.Timeout timeout() +cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(int,cyanogenmod.app.ThemeComponent,java.lang.String,int,int) +io.reactivex.exceptions.OnErrorNotImplementedException: OnErrorNotImplementedException(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_maxWidth +androidx.constraintlayout.widget.R$styleable: int PopupWindow_android_popupBackground +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Integer aqiIndex +androidx.constraintlayout.widget.R$id: int screen +wangdaye.com.geometricweather.R$id: int notification_base_titleContainer +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderAuthority +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_MinWidth_Bridge +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin +wangdaye.com.geometricweather.db.entities.AlertEntityDao: wangdaye.com.geometricweather.db.entities.AlertEntity readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_max +androidx.dynamicanimation.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_square_side +android.didikee.donate.R$layout: int select_dialog_item_material +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog +wangdaye.com.geometricweather.R$attr: int startIconTintMode +io.reactivex.internal.subscribers.StrictSubscriber: boolean done +com.jaredrummler.android.colorpicker.R$string: int abc_shareactionprovider_share_with_application +com.google.android.material.R$id: int buttonPanel +james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat_Dark +cyanogenmod.providers.CMSettings$Secure: java.lang.String FEATURE_TOUCH_HOVERING +com.google.android.material.R$id: int filled +cyanogenmod.themes.IThemeService: void rebuildResourceCache() +androidx.hilt.lifecycle.R$dimen: int notification_subtext_size +james.adaptiveicon.R$id: int notification_main_column +okio.Buffer: int readUtf8CodePoint() +james.adaptiveicon.R$attr: int windowNoTitle +com.bumptech.glide.R$id: int bottom +wangdaye.com.geometricweather.R$string: int cpv_presets +com.google.android.material.R$attr: int region_heightMoreThan +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast +com.google.android.material.R$styleable: int Layout_layout_goneMarginTop +okio.ByteString: boolean startsWith(okio.ByteString) +com.google.android.material.R$styleable: int TextInputLayout_errorTextColor io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.util.concurrent.TimeUnit unit -androidx.work.R$dimen -cyanogenmod.weather.IRequestInfoListener$Stub: IRequestInfoListener$Stub() -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -okhttp3.internal.http.HttpDate: java.text.DateFormat[] BROWSER_COMPATIBLE_DATE_FORMATS -androidx.activity.R$styleable: int FontFamilyFont_font -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -com.google.android.material.button.MaterialButton: void setBackgroundTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$attr: int counterOverflowTextAppearance -androidx.drawerlayout.R$style: R$style() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: LocationEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_dialog_btn_min_width -androidx.constraintlayout.widget.R$id: int search_edit_frame -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_alpha -com.google.android.material.R$styleable: int MenuItem_actionViewClass -android.didikee.donate.R$styleable: int DrawerArrowToggle_gapBetweenBars -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_DAY -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean gate -wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_elevation -okhttp3.ConnectionPool$1: void run() -wangdaye.com.geometricweather.R$string: int settings_title_notification_style -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status ERROR -com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_inset_horizontal_material -com.xw.repo.bubbleseekbar.R$attr: int autoSizePresetSizes -androidx.work.NetworkType: androidx.work.NetworkType[] values() -james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_ttcIndex -okhttp3.internal.http2.Header: java.lang.String TARGET_AUTHORITY_UTF8 -okhttp3.internal.http1.Http1Codec: java.lang.String readHeaderLine() -wangdaye.com.geometricweather.R$attr: int cornerFamily -com.bumptech.glide.MemoryCategory: float getMultiplier() -com.google.android.material.R$styleable: int SnackbarLayout_elevation -com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetTop -james.adaptiveicon.R$attr: int titleMargins -okhttp3.internal.http.RealInterceptorChain: int readTimeoutMillis() -androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_material -wangdaye.com.geometricweather.R$drawable: int notif_temp_107 -com.google.android.material.R$id: int material_clock_display -wangdaye.com.geometricweather.R$array: int weather_sources -james.adaptiveicon.R$drawable: int abc_btn_borderless_material -com.google.android.material.R$id: int decor_content_parent -wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text_size -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_iconEndPadding -androidx.constraintlayout.widget.R$attr: int actionOverflowMenuStyle -com.google.android.material.R$attr: int thumbTint -wangdaye.com.geometricweather.R$string: int key_subtitle_data -com.google.android.material.R$color: int abc_btn_colored_text_material -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Small -com.turingtechnologies.materialscrollbar.R$layout: int design_layout_snackbar -androidx.hilt.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$string: int feedback_readd_location -androidx.preference.UnPressableLinearLayout: UnPressableLinearLayout(android.content.Context,android.util.AttributeSet) -org.greenrobot.greendao.DaoException: DaoException(java.lang.String) -james.adaptiveicon.R$styleable: int TextAppearance_fontVariationSettings -cyanogenmod.hardware.ICMHardwareService$Stub: android.os.IBinder asBinder() -androidx.hilt.lifecycle.R$color: int secondary_text_default_material_light -androidx.transition.R$id: int forever -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindSpeedStart() -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedWidthMinor() -androidx.fragment.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_constraint_referenced_ids -androidx.coordinatorlayout.R$id: int action_divider -okhttp3.internal.http2.Settings: void clear() -com.google.android.material.R$styleable: int MaterialButtonToggleGroup_selectionRequired -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_MIN_INDEX -androidx.preference.R$id: R$id() -cyanogenmod.themes.IThemeService$Stub$Proxy: void applyDefaultTheme() -com.turingtechnologies.materialscrollbar.R$bool: int abc_allow_stacked_button_bar -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light_focused -wangdaye.com.geometricweather.R$attr: int materialCalendarStyle -com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_isThemeBeingProcessed +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context,android.util.AttributeSet,int) +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) +wangdaye.com.geometricweather.R$styleable: int[] SwitchImageButton +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: java.lang.String desc +android.didikee.donate.R$attr: int backgroundTint +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: void setBrands(java.util.List) +wangdaye.com.geometricweather.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +androidx.viewpager2.R$attr: int stackFromEnd +wangdaye.com.geometricweather.common.basic.models.weather.Alert: long alertId +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleTextAppearance +com.jaredrummler.android.colorpicker.R$attr: int allowDividerAfterLastItem +wangdaye.com.geometricweather.R$array: int pressure_unit_voices +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderAuthority +androidx.appcompat.R$styleable: int MenuItem_android_numericShortcut +okhttp3.internal.http2.Http2Codec: java.util.List http2HeadersList(okhttp3.Request) +androidx.swiperefreshlayout.R$drawable: int notification_bg_low +cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onListenerConnected() +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.String toString() +androidx.appcompat.resources.R$styleable: int ColorStateListItem_android_alpha +androidx.constraintlayout.widget.R$styleable: int Transform_android_rotation +com.google.android.material.R$dimen: int mtrl_btn_padding_top +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_progressBarStyle +com.bumptech.glide.integration.okhttp.R$attr: int layout_keyline +okio.Buffer: okio.Buffer$UnsafeCursor readAndWriteUnsafe(okio.Buffer$UnsafeCursor) +androidx.recyclerview.R$id: int accessibility_custom_action_6 +james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +com.google.android.material.R$dimen: int design_navigation_separator_vertical_padding +retrofit2.Response: int code() +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.lang.String getSetTime(android.content.Context) +cyanogenmod.app.ThemeVersion$ComponentVersion: int id +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabInlineLabel +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_maxElementsWrap +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: int mConditionCode +io.reactivex.internal.subscribers.StrictSubscriber: long serialVersionUID +wangdaye.com.geometricweather.R$string: int page_indicator +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +androidx.preference.R$layout: int abc_select_dialog_material +androidx.vectordrawable.R$dimen: int notification_small_icon_background_padding +com.xw.repo.bubbleseekbar.R$attr: int actionBarTabBarStyle +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: java.lang.Float temperature +retrofit2.adapter.rxjava2.BodyObservable: void subscribeActual(io.reactivex.Observer) +com.google.android.material.R$color: int primary_material_dark +wangdaye.com.geometricweather.R$dimen: int cardview_default_elevation +androidx.recyclerview.widget.RecyclerView: void setOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$style: int EmptyTheme +androidx.appcompat.R$style: int Base_Theme_AppCompat_CompactMenu +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: java.lang.String Unit +com.google.android.material.R$dimen: int abc_text_size_display_3_material +androidx.activity.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.android.material.R$id: int progress_horizontal +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void dispose() +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +androidx.appcompat.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean isEntityUpdateable() +okhttp3.internal.http2.Hpack: int PREFIX_5_BITS +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_corner_radius_medium +com.jaredrummler.android.colorpicker.R$id: int spacer +okhttp3.Cache: int hitCount() +com.turingtechnologies.materialscrollbar.R$styleable: R$styleable() +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +com.jaredrummler.android.colorpicker.R$id: int spinner +wangdaye.com.geometricweather.R$attr: int textAppearanceBody1 +androidx.core.R$id: int accessibility_custom_action_21 +com.google.android.material.R$style: int Animation_Design_BottomSheetDialog +wangdaye.com.geometricweather.R$styleable: int MaterialRadioButton_useMaterialThemeColors +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setCountry(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_expanded +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean cancelled +com.xw.repo.bubbleseekbar.R$styleable: int[] LinearLayoutCompat_Layout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindSpeedEnd() +wangdaye.com.geometricweather.R$xml: int widget_clock_day_week +com.google.android.material.R$style: int TextAppearance_AppCompat_Body2 +androidx.preference.R$styleable: int SearchView_voiceIcon +retrofit2.OkHttpCall$1: retrofit2.OkHttpCall this$0 +wangdaye.com.geometricweather.R$id: int header_title +wangdaye.com.geometricweather.R$id: int widget_clock_day_center +androidx.appcompat.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getBoxStrokeErrorColor() +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit) +cyanogenmod.hardware.CMHardwareManager +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +com.google.android.material.snackbar.Snackbar$SnackbarLayout: Snackbar$SnackbarLayout(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int Slider_thumbStrokeWidth +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_dropdownPreferenceStyle +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_middle_mtrl_dark +cyanogenmod.media.MediaRecorder$AudioSource: int HOTWORD +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_min +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundColor(int) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_progress_in_float +okhttp3.HttpUrl$Builder: java.lang.String encodedUsername +wangdaye.com.geometricweather.R$attr: int contentDescription +androidx.constraintlayout.widget.R$id: int motion_base +okhttp3.internal.connection.RouteSelector$Selection: int nextRouteIndex +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: long idx +retrofit2.http.PATCH: java.lang.String value() +wangdaye.com.geometricweather.R$attr: int switchPadding +okhttp3.EventListener: void connectEnd(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol) +com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +com.jaredrummler.android.colorpicker.R$dimen: int notification_right_icon_size +com.google.android.material.circularreveal.CircularRevealGridLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItem com.jaredrummler.android.colorpicker.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -james.adaptiveicon.R$attr: int autoSizePresetSizes -com.jaredrummler.android.colorpicker.R$attr: int collapseIcon -androidx.preference.R$styleable: int AppCompatTheme_actionModeCloseDrawable -okhttp3.Dispatcher: int getMaxRequests() -androidx.preference.R$styleable: int AlertDialog_buttonPanelSideLayout -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_baselineAligned -com.google.android.material.R$attr: int panelMenuListWidth -androidx.vectordrawable.R$styleable: int FontFamilyFont_android_ttcIndex -com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$styleable: int[] FontFamily -com.google.android.material.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -androidx.customview.R$drawable: int notification_template_icon_bg -okhttp3.internal.connection.StreamAllocation: void streamFailed(java.io.IOException) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: void setFrom(java.lang.String) -wangdaye.com.geometricweather.R$array: int pressure_units -com.google.android.material.R$attr: int textAppearanceListItem -com.google.android.material.textfield.TextInputLayout: void setHint(java.lang.CharSequence) -androidx.swiperefreshlayout.R$id: int action_text -com.google.android.material.R$attr: int buttonStyleSmall -com.google.android.material.R$string: int material_timepicker_text_input_mode_description -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_android_windowFullscreen -com.google.android.material.R$layout: int select_dialog_multichoice_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean -androidx.core.R$id: int tag_unhandled_key_listeners -androidx.versionedparcelable.CustomVersionedParcelable: CustomVersionedParcelable() -okhttp3.Route: boolean requiresTunnel() -wangdaye.com.geometricweather.location.services.LocationService: boolean hasPermissions(android.content.Context) -androidx.coordinatorlayout.R$dimen: int compat_button_inset_horizontal_material -okhttp3.internal.http.HttpHeaders: void receiveHeaders(okhttp3.CookieJar,okhttp3.HttpUrl,okhttp3.Headers) -wangdaye.com.geometricweather.R$string: int wait_refresh -wangdaye.com.geometricweather.settings.activities.SettingsActivity: SettingsActivity() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver) -wangdaye.com.geometricweather.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeRealFeelTemperature -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setLabel(int) -androidx.appcompat.R$attr: int windowActionModeOverlay -androidx.constraintlayout.widget.R$styleable: int KeyPosition_motionTarget -com.google.android.material.R$dimen: int design_tab_text_size -com.google.gson.stream.JsonReader: char[] NON_EXECUTE_PREFIX -cyanogenmod.app.Profile$NotificationLightMode: int DEFAULT -wangdaye.com.geometricweather.R$color: int button_material_light -androidx.work.R$id: int accessibility_custom_action_0 -cyanogenmod.externalviews.ExternalView$7: ExternalView$7(cyanogenmod.externalviews.ExternalView) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_radius -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: int UnitType -com.google.android.material.R$color: int material_slider_inactive_track_color -androidx.constraintlayout.widget.R$id: int search_badge -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_gapBetweenBars -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeTopLeft -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowDx -retrofit2.http.Path -com.google.android.material.chip.Chip: void setChipStrokeWidth(float) -okio.RealBufferedSource: long read(okio.Buffer,long) -okhttp3.CacheControl: boolean onlyIfCached() -com.google.android.material.R$styleable: int Constraint_android_translationX -io.reactivex.Observable: io.reactivex.Observable error(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$attr: int tintMode -androidx.appcompat.view.menu.ActionMenuItemView: void setIcon(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow snow -cyanogenmod.providers.ThemesContract$ThemesColumns: android.net.Uri CONTENT_URI -io.reactivex.internal.functions.Functions$HashSetCallable: java.lang.Object call() -com.google.android.material.R$styleable: int ActionBar_progressBarStyle -com.google.android.material.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -com.google.android.material.bottomnavigation.BottomNavigationPresenter$SavedState -wangdaye.com.geometricweather.R$id: int activity_widget_config_scrollContainer -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_89 -com.google.android.material.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -com.google.android.material.R$attr: int tabPadding -wangdaye.com.geometricweather.R$attr: int itemIconTint -com.google.android.material.R$styleable: int MaterialButton_iconTint -androidx.swiperefreshlayout.R$styleable: int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_ON_VALIDATOR -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: void dispose() -com.google.android.material.R$styleable: int TextInputLayout_boxStrokeErrorColor -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_6 -james.adaptiveicon.R$styleable: int AppCompatTheme_switchStyle -wangdaye.com.geometricweather.R$attr: int yearSelectedStyle -com.google.android.material.chip.Chip: void setCloseIconEndPaddingResource(int) -retrofit2.ParameterHandler$QueryMap: void apply(retrofit2.RequestBuilder,java.util.Map) -com.google.android.material.R$id: int accessibility_custom_action_20 -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType[] a +androidx.appcompat.R$style: int AlertDialog_AppCompat_Light +android.didikee.donate.R$drawable: int abc_vector_test +com.google.android.material.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.Observer downstream +okio.DeflaterSink: void deflate(boolean) +okhttp3.internal.tls.DistinguishedNameParser: DistinguishedNameParser(javax.security.auth.x500.X500Principal) +androidx.preference.R$attr: int dialogPreferredPadding +androidx.appcompat.R$id: int accessibility_custom_action_13 +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_getCurrentHotwordPackageName +cyanogenmod.themes.ThemeManager$1$2: ThemeManager$1$2(cyanogenmod.themes.ThemeManager$1,boolean) +wangdaye.com.geometricweather.R$attr: int thumbColor +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.subjects.Subject signaller +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_shapeAppearanceOverlay +wangdaye.com.geometricweather.R$styleable: int RecycleListView_paddingTopNoTitle +okhttp3.HttpUrl: java.lang.String percentDecode(java.lang.String,int,int,boolean) +okhttp3.internal.cache.DiskLruCache: void initialize() +okhttp3.internal.cache2.Relay$RelaySource: okio.Timeout timeout() +com.google.android.material.R$dimen: int mtrl_extended_fab_corner_radius +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_title +wangdaye.com.geometricweather.R$drawable: int notif_temp_85 +com.google.android.material.R$string: int mtrl_picker_out_of_range +androidx.appcompat.widget.AppCompatEditText: android.content.res.ColorStateList getSupportBackgroundTintList() +androidx.appcompat.R$styleable: int SwitchCompat_thumbTextPadding +cyanogenmod.profiles.RingModeSettings: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$attr: int dialogCornerRadius +cyanogenmod.app.LiveLockScreenInfo$Builder: LiveLockScreenInfo$Builder() +com.google.android.material.R$layout: int material_chip_input_combo +com.xw.repo.bubbleseekbar.R$color: int background_floating_material_light +wangdaye.com.geometricweather.db.entities.AlertEntity: long time +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDate(java.util.Date) +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection findHealthyConnection(int,int,int,int,boolean,boolean) +androidx.loader.R$style +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +okhttp3.internal.ws.RealWebSocket$Close: RealWebSocket$Close(int,okio.ByteString,long) +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_divider +android.didikee.donate.R$id: int multiply +com.turingtechnologies.materialscrollbar.R$attr: int subMenuArrow +com.google.android.material.tabs.TabLayout: void setInlineLabelResource(int) +wangdaye.com.geometricweather.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.R$drawable: int ic_alipay +androidx.work.R$string: R$string() +cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_GAMMA_CALIBRATION +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getFormattedId() +androidx.appcompat.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +okhttp3.OkHttpClient: boolean followSslRedirects +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_maxWidth +com.bumptech.glide.load.HttpException: HttpException(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogTheme +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton_CloseMode +retrofit2.ParameterHandler$Body: void apply(retrofit2.RequestBuilder,java.lang.Object) +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderCerts +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIFIAP +okhttp3.internal.ws.WebSocketWriter: okio.Sink newMessageSink(int,long) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Body2 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_cut_mtrl_alpha +com.google.android.material.R$attr: int expandedTitleTextAppearance +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.Integer angle +io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeLevel +wangdaye.com.geometricweather.R$styleable: int Preference_android_order +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: java.util.concurrent.atomic.AtomicReference other +wangdaye.com.geometricweather.R$attr: int motionDebug +wangdaye.com.geometricweather.R$styleable: int Transition_transitionFlags +cyanogenmod.weather.WeatherInfo: boolean access$000(int) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstVerticalStyle +com.google.android.gms.dynamic.RemoteCreator$RemoteCreatorException +james.adaptiveicon.R$styleable: int ActivityChooserView_initialActivityCount +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Surface +com.jaredrummler.android.colorpicker.R$styleable: int View_android_theme +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_srcCompat +androidx.drawerlayout.R$styleable: int GradientColor_android_type +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onError(java.lang.Throwable) +cyanogenmod.themes.ThemeManager: void applyDefaultTheme() +androidx.lifecycle.Lifecycle: Lifecycle() +okhttp3.internal.http2.Http2Reader: int lengthWithoutPadding(int,byte,short) +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarButtonStyle +androidx.preference.R$color: int button_material_dark +androidx.lifecycle.DefaultLifecycleObserver: void onPause(androidx.lifecycle.LifecycleOwner) +okhttp3.Cache$CacheResponseBody +androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontStyle +org.greenrobot.greendao.DaoException: DaoException(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginBottom +org.greenrobot.greendao.AbstractDao: void delete(java.lang.Object) +james.adaptiveicon.R$attr: int colorError +com.google.android.material.chip.ChipGroup: int getChipCount() +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setPostalCode(java.lang.String) +james.adaptiveicon.R$styleable: int[] ActionBar +androidx.appcompat.widget.SwitchCompat: android.content.res.ColorStateList getTrackTintList() +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableLeftCompat +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTag +com.jaredrummler.android.colorpicker.R$layout: int preference_dialog_edittext +okio.RealBufferedSource: long readHexadecimalUnsignedLong() +android.didikee.donate.R$id: int customPanel +androidx.preference.R$styleable: int AppCompatTheme_colorControlNormal +wangdaye.com.geometricweather.R$string: int settings_notification_hide_big_view_off +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCloseDrawable +okhttp3.internal.http2.Http2Stream$FramingSource: Http2Stream$FramingSource(okhttp3.internal.http2.Http2Stream,long) +james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.lifecycle.extensions.R$id: int action_divider +com.google.android.material.tabs.TabLayout: void setTabMode(int) +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance +wangdaye.com.geometricweather.R$id: int item_alert_title +cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CONTENT_URI +androidx.recyclerview.widget.StaggeredGridLayoutManager: StaggeredGridLayoutManager(android.content.Context,android.util.AttributeSet,int,int) +org.greenrobot.greendao.AbstractDao: long insert(java.lang.Object) +wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.LocationEntity) +androidx.constraintlayout.widget.R$attr: int percentWidth +com.jaredrummler.android.colorpicker.ColorPickerView: int getColor() +com.amap.api.fence.GeoFence: com.amap.api.location.DPoint n +cyanogenmod.themes.ThemeChangeRequest$Builder: void buildChangeRequestFromThemeConfig(android.content.res.ThemeConfig) +com.google.android.material.R$dimen: int fastscroll_minimum_range +com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_begin +io.reactivex.Observable: io.reactivex.Observable timeout0(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.ObservableSource) +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_toolbarId +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_CompactMenu +wangdaye.com.geometricweather.R$dimen: int fastscroll_default_thickness +androidx.appcompat.widget.AppCompatTextView +com.google.android.material.R$styleable: int ActionBar_titleTextStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableRight +androidx.activity.R$styleable: int GradientColor_android_endY +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setGpsFirst(boolean) +okhttp3.internal.http1.Http1Codec$ChunkedSource: boolean hasMoreChunks +org.greenrobot.greendao.AbstractDaoSession: java.lang.Object callInTxNoException(java.util.concurrent.Callable) +james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_fontFamily +com.turingtechnologies.materialscrollbar.R$attr: int subtitle +androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.FragmentActivity) +androidx.coordinatorlayout.R$id: int tag_accessibility_clickable_spans +com.turingtechnologies.materialscrollbar.R$attr: int lineSpacing +okhttp3.Cache$CacheResponseBody$1: okhttp3.Cache$CacheResponseBody this$0 +wangdaye.com.geometricweather.R$id: int container_main_aqi_progress +com.xw.repo.bubbleseekbar.R$attr: int windowFixedHeightMinor +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +androidx.loader.R$drawable: int notification_bg_normal +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Small +cyanogenmod.power.PerformanceManager: cyanogenmod.power.IPerformanceManager getService() +okio.ByteString: int indexOf(okio.ByteString) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchTouchEvent(android.view.MotionEvent) +android.didikee.donate.R$attr: int trackTintMode +androidx.preference.R$styleable: int PreferenceTheme_preferenceTheme +com.turingtechnologies.materialscrollbar.R$attr: int dialogCornerRadius +retrofit2.RequestFactory: RequestFactory(retrofit2.RequestFactory$Builder) +okio.Buffer: int readInt() +com.google.android.material.R$dimen: int abc_text_size_headline_material +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: ObservableConcatMapCompletable$ConcatMapCompletableObserver(io.reactivex.CompletableObserver,io.reactivex.functions.Function,io.reactivex.internal.util.ErrorMode,int) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +com.google.android.material.R$dimen: int mtrl_calendar_year_horizontal_padding +com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context) +wangdaye.com.geometricweather.R$id: int mtrl_view_tag_bottom_padding +androidx.appcompat.widget.ActionBarOverlayLayout: void setUiOptions(int) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Inverse +com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context,android.util.AttributeSet,int) +com.autonavi.aps.amapapi.model.AMapLocationServer: org.json.JSONObject l +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: boolean done +com.google.gson.LongSerializationPolicy$2: LongSerializationPolicy$2(java.lang.String,int) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator +wangdaye.com.geometricweather.db.entities.DailyEntity: void setCityId(java.lang.String) +com.github.rahatarmanahmed.cpv.R$bool: int cpv_default_anim_autostart +androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_height_minor +wangdaye.com.geometricweather.R$attr: int queryHint +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: long serialVersionUID +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderCerts +james.adaptiveicon.R$attr: int editTextColor +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean profileExistsByName(java.lang.String) +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.util.concurrent.atomic.AtomicBoolean listRead +okhttp3.internal.connection.RealConnection: okhttp3.ConnectionPool connectionPool +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_0 +james.adaptiveicon.R$dimen: int abc_list_item_padding_horizontal_material +androidx.preference.R$styleable: int SearchView_queryBackground +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState UNDEFINED +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver,java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetStartWithNavigation +com.google.android.material.R$id: int textinput_placeholder +com.turingtechnologies.materialscrollbar.Indicator: int getTextSize() +cyanogenmod.themes.ThemeChangeRequest$Builder: long mWallpaperId +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_UV_INDEX +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +io.reactivex.Observable: io.reactivex.Observable dematerialize() +com.google.android.material.R$attr: int constraintSetStart +com.google.android.material.button.MaterialButtonToggleGroup: int getFirstVisibleChildIndex() +androidx.cardview.R$attr: int cardCornerRadius +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: boolean isDisposed() +com.google.android.material.R$attr: int subtitleTextStyle +okio.RealBufferedSink: okio.BufferedSink writeIntLe(int) +okhttp3.internal.http2.Http2: byte TYPE_SETTINGS +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context) +androidx.fragment.R$styleable: int FragmentContainerView_android_name +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressCircleDiameter() +wangdaye.com.geometricweather.R$id: int motion_base +okhttp3.internal.platform.OptionalMethod: OptionalMethod(java.lang.Class,java.lang.String,java.lang.Class[]) +okio.ByteString: okio.ByteString encodeString(java.lang.String,java.nio.charset.Charset) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver +com.google.android.material.R$styleable: int MaterialButton_shapeAppearance +wangdaye.com.geometricweather.R$animator: int start_shine_1 +okhttp3.Cache$2: boolean canRemove +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +androidx.appcompat.R$styleable: int[] PopupWindowBackgroundState +androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_material +androidx.appcompat.widget.SearchView: androidx.cursoradapter.widget.CursorAdapter getSuggestionsAdapter() +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType UpdateInTxIterable +androidx.appcompat.R$style: int Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_elevation +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginTop +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getNO2() +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void trimHead() +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_OBJECT +retrofit2.Utils$GenericArrayTypeImpl: java.lang.String toString() +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_clear +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Borderless +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: java.lang.String Unit +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +androidx.work.R$attr: int fontProviderPackage +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_FONT +okhttp3.internal.http1.Http1Codec: okio.Sink newFixedLengthSink(long) +cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(android.os.Parcel) +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_duration +okhttp3.internal.connection.RouteSelector$Selection: okhttp3.Route next() +com.amap.api.fence.GeoFence: boolean equals(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer +androidx.preference.R$color: int primary_dark_material_light +com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context,android.util.AttributeSet) +cyanogenmod.app.ProfileGroup: java.lang.String TAG +com.turingtechnologies.materialscrollbar.R$style: int Base_V23_Theme_AppCompat_Light +com.google.android.material.R$attr: int goIcon +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_pivotY +wangdaye.com.geometricweather.R$string: int key_forecast_today +okhttp3.logging.LoggingEventListener: void responseBodyStart(okhttp3.Call) +wangdaye.com.geometricweather.R$anim: int fragment_close_enter +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_cardForegroundColor +androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_layout +wangdaye.com.geometricweather.R$string: int edit +androidx.preference.R$layout: int preference_material +androidx.preference.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +androidx.constraintlayout.widget.R$attr: int actionModeCloseDrawable +com.google.android.material.R$styleable: int FlowLayout_itemSpacing +wangdaye.com.geometricweather.R$styleable: int KeyPosition_framePosition +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_percent +wangdaye.com.geometricweather.R$string: int content_des_swipe_right_to_delete +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA +wangdaye.com.geometricweather.R$attr: int cardMaxElevation +wangdaye.com.geometricweather.R$attr: int cornerRadius +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int limit +androidx.lifecycle.SavedStateHandle +cyanogenmod.app.CustomTile$ExpandedItem: android.app.PendingIntent onClickPendingIntent +wangdaye.com.geometricweather.R$drawable: int notif_temp_121 +wangdaye.com.geometricweather.R$layout: int preference_dropdown +androidx.appcompat.R$styleable: int[] ListPopupWindow +com.google.android.material.R$styleable: int MenuItem_android_orderInCategory +com.jaredrummler.android.colorpicker.R$string: int abc_action_mode_done +com.google.android.material.chip.Chip: void setCloseIcon(android.graphics.drawable.Drawable) +james.adaptiveicon.R$drawable: int tooltip_frame_dark +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_id +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconDrawable +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_DES_CBC_SHA +wangdaye.com.geometricweather.R$attr: int listPreferredItemHeightLarge +wangdaye.com.geometricweather.R$drawable: int shortcuts_wind_foreground +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_contentDescription +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder asBinder() +com.google.android.material.R$layout: int mtrl_alert_select_dialog_item +androidx.appcompat.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastHorizontalBias +cyanogenmod.weatherservice.ServiceRequestResult: android.os.Parcelable$Creator CREATOR +androidx.activity.R$dimen: int notification_small_icon_size_as_large +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: FitSystemBarViewPager(android.content.Context,android.util.AttributeSet) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SHOW_ALARM_ICON_VALIDATOR +com.google.android.material.R$styleable: int Chip_chipSurfaceColor +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_dropDownWidth +okio.Buffer: boolean isOpen() +wangdaye.com.geometricweather.R$styleable: int MaterialShape_shapeAppearanceOverlay +androidx.loader.R$id: int blocking +com.jaredrummler.android.colorpicker.R$attr: int fontProviderCerts +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionModeOverlay +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.functions.Function mapper +androidx.constraintlayout.widget.R$id: int deltaRelative +wangdaye.com.geometricweather.R$animator: int start_shine_2 +android.didikee.donate.R$id: int action_menu_divider +okhttp3.internal.http2.Http2Reader$Handler +com.google.android.material.R$dimen: int material_helper_text_font_1_3_padding_horizontal +james.adaptiveicon.R$attr: int actionBarStyle +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.ILiveLockScreenManager getService() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Medium +androidx.appcompat.R$id: int submenuarrow +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dialog +okhttp3.HttpUrl: okhttp3.HttpUrl get(java.lang.String) +com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_swipe_escape_max_velocity +com.google.android.material.R$layout: int mtrl_picker_header_title_text +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 +android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedWidthMajor +com.xw.repo.bubbleseekbar.R$attr: int autoCompleteTextViewStyle +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_Solid +wangdaye.com.geometricweather.R$string: int wind_3 +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_enabled +com.jaredrummler.android.colorpicker.R$id: int search_badge +com.google.android.material.chip.Chip: void setCloseIconHovered(boolean) +james.adaptiveicon.R$drawable: int abc_ratingbar_indicator_material +cyanogenmod.weather.WeatherInfo$DayForecast: double mLow +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String to +androidx.appcompat.R$drawable: int abc_list_divider_mtrl_alpha +androidx.preference.R$attr: int subtitleTextColor +com.google.android.material.R$styleable: int AppCompatTheme_dialogCornerRadius +androidx.appcompat.R$dimen: int highlight_alpha_material_light +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.google.android.gms.common.annotation.KeepName +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayDetailsProvider +com.google.android.material.R$attr: int listPopupWindowStyle +com.google.android.material.R$style: int Widget_MaterialComponents_Button_UnelevatedButton +okhttp3.internal.http2.Huffman$Node +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: boolean inputExhausted +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity +androidx.lifecycle.LiveData: boolean hasObservers() +androidx.preference.R$styleable: int ColorStateListItem_android_alpha +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void otherComplete() +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onError(java.lang.Throwable) +com.amap.api.location.AMapLocationQualityReport: java.lang.String e +com.google.android.material.R$style: int TestThemeWithLineHeightDisabled +wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_xml +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_SearchResult_Title +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_focusable +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_track_size +com.jaredrummler.android.colorpicker.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat +com.google.android.material.R$id: int parent_matrix +com.xw.repo.bubbleseekbar.R$styleable: int[] LinearLayoutCompat +okhttp3.Dns$1: java.util.List lookup(java.lang.String) +androidx.activity.R$id: int action_divider +com.turingtechnologies.materialscrollbar.R$attr: int maxActionInlineWidth +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_directionValue +androidx.appcompat.R$id: int accessibility_custom_action_6 androidx.preference.R$styleable: int SwitchPreference_switchTextOff -james.adaptiveicon.R$attr: int textAppearanceLargePopupMenu -okhttp3.internal.http1.Http1Codec$FixedLengthSink: Http1Codec$FixedLengthSink(okhttp3.internal.http1.Http1Codec,long) -com.xw.repo.bubbleseekbar.R$dimen: int compat_control_corner_material -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void drain() -wangdaye.com.geometricweather.R$attr: int fabCradleVerticalOffset -wangdaye.com.geometricweather.R$styleable: int[] DialogPreference -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String MinutesText -com.google.android.material.R$styleable: int SearchView_commitIcon -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy REPLACE -androidx.viewpager2.widget.ViewPager2: void setAdapter(androidx.recyclerview.widget.RecyclerView$Adapter) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver) -androidx.preference.R$attr: int listMenuViewStyle -androidx.preference.R$styleable: int AppCompatTheme_editTextStyle -james.adaptiveicon.R$id: int action_text -com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreference -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okhttp3.internal.http2.Http2Reader: void readSettings(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -io.reactivex.internal.util.VolatileSizeArrayList: int lastIndexOf(java.lang.Object) -androidx.appcompat.widget.SearchView: void setInputType(int) -com.xw.repo.bubbleseekbar.R$id -wangdaye.com.geometricweather.db.entities.LocationEntity: float longitude -wangdaye.com.geometricweather.R$string: int wind_7 -com.google.android.material.chip.Chip: float getCloseIconSize() -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Time -org.greenrobot.greendao.database.DatabaseOpenHelper: void onUpgrade(org.greenrobot.greendao.database.Database,int,int) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display4 -androidx.hilt.work.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String getValue() -androidx.preference.R$attr: int alertDialogTheme -com.google.android.material.R$attr: int cardMaxElevation -okio.Buffer: long indexOf(okio.ByteString) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_top_material -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_10 -android.didikee.donate.R$attr: int commitIcon -androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMarkTint -okhttp3.internal.tls.OkHostnameVerifier: java.util.List getSubjectAltNames(java.security.cert.X509Certificate,int) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getSerialNumber() -wangdaye.com.geometricweather.R$color: int colorAccent +com.turingtechnologies.materialscrollbar.R$attr: int behavior_peekHeight +com.google.android.material.chip.Chip: float getCloseIconStartPadding() +com.jaredrummler.android.colorpicker.R$dimen: int notification_large_icon_height +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +okhttp3.internal.ws.RealWebSocket$Close: okio.ByteString reason +androidx.swiperefreshlayout.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event INITIALIZE +wangdaye.com.geometricweather.db.entities.HistoryEntity +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button retrofit2.ParameterHandler$Query -androidx.appcompat.R$dimen: int abc_text_size_menu_material -androidx.appcompat.R$styleable: int[] ActionBar -androidx.preference.R$dimen: int abc_disabled_alpha_material_light -okhttp3.internal.ws.RealWebSocket: boolean close(int,java.lang.String) -cyanogenmod.themes.ThemeManager: java.util.Set access$300(cyanogenmod.themes.ThemeManager) -okhttp3.Interceptor$Chain: okhttp3.Connection connection() -com.google.android.material.chip.Chip: void setChipStartPadding(float) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRealFeelTemperature(java.lang.Integer) -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_switchTextOn -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadClose(int,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableStart -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constrainedHeight -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light -io.reactivex.Observable: io.reactivex.Observable takeLast(int) -com.amap.api.location.AMapLocationClientOption: android.os.Parcelable$Creator CREATOR -androidx.preference.R$id: int select_dialog_listview -com.google.android.material.chip.Chip: void setCloseIconEnabled(boolean) -com.turingtechnologies.materialscrollbar.R$attr: int tabTextColor -cyanogenmod.externalviews.KeyguardExternalViewProviderService: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider createExternalView(android.os.Bundle) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_android_lineHeight +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onNext(java.lang.Object) +androidx.preference.R$layout: int abc_action_mode_bar +wangdaye.com.geometricweather.R$id: int BOTTOM_START +okhttp3.Callback +androidx.appcompat.R$dimen: int notification_top_pad_large_text +james.adaptiveicon.R$styleable: int Toolbar_buttonGravity +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_numericModifiers +okhttp3.internal.http2.Hpack$Reader: int headerCount +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getChipIcon() +io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String,int) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight +com.turingtechnologies.materialscrollbar.R$attr: int windowFixedHeightMinor +androidx.appcompat.R$id: int alertTitle +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onError(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: io.reactivex.Observer downstream +android.didikee.donate.R$styleable: int ActionBar_divider +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +com.jaredrummler.android.colorpicker.R$attr: int logoDescription +androidx.preference.R$styleable: int AppCompatTextView_drawableTint +cyanogenmod.providers.DataUsageContract: java.lang.String ACTIVE +com.google.android.material.R$dimen: int material_clock_display_padding +james.adaptiveicon.R$styleable: int MenuItem_android_alphabeticShortcut +com.autonavi.aps.amapapi.model.AMapLocationServer: void a(boolean) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +androidx.preference.R$styleable: int Toolbar_titleTextAppearance +wangdaye.com.geometricweather.R$styleable: int AlertDialog_android_layout +retrofit2.Converter$Factory +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeBottomRight +com.google.android.material.R$attr: int paddingBottomSystemWindowInsets +okio.RealBufferedSink: okio.Timeout timeout() +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Connection connection +james.adaptiveicon.R$styleable: int MenuItem_android_menuCategory +com.google.android.material.R$styleable: int TextInputLayout_suffixTextAppearance +com.jaredrummler.android.colorpicker.R$id: int titleDividerNoCustom +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light_normal_background +retrofit2.ParameterHandler$Header +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void dispose() +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_gradientRadius +com.google.android.material.R$drawable: int material_ic_edit_black_24dp +com.amap.api.location.AMapLocation: void setAoiName(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday() +androidx.lifecycle.extensions.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$attr: int motionProgress +com.google.android.material.R$styleable: int AnimatedStateListDrawableItem_android_drawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: void setTo(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginBottom +wangdaye.com.geometricweather.R$attr: int expandedTitleMarginBottom +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTint +io.reactivex.internal.disposables.ArrayCompositeDisposable: void dispose() +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.internal.util.AtomicThrowable errors +androidx.preference.R$string: int abc_toolbar_collapse_description +androidx.constraintlayout.widget.R$attr: int editTextColor +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar +com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Dialog +com.github.rahatarmanahmed.cpv.CircularProgressView$9: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_enterFadeDuration +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber) +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_elevation +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.Object adapt(retrofit2.Call) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context) +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +android.didikee.donate.R$styleable: int Toolbar_titleMarginBottom +okhttp3.internal.connection.RouteSelector$Selection: boolean hasNext() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: IKeyguardExternalViewProvider$Stub$Proxy(android.os.IBinder) +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +androidx.appcompat.widget.AppCompatSpinner: void setDropDownWidth(int) +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: boolean cancelled +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_background_transition_holo_dark +com.jaredrummler.android.colorpicker.R$attr: int cpv_alphaChannelVisible +com.jaredrummler.android.colorpicker.R$id: int right +androidx.recyclerview.widget.RecyclerView: void addOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +androidx.loader.R$dimen: int notification_content_margin_start +com.google.android.material.R$integer: int hide_password_duration +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_fontFamily +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_label_cutout_padding +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textSize +wangdaye.com.geometricweather.R$attr: int fontFamily +androidx.preference.R$attr: int switchPadding +io.reactivex.Observable: io.reactivex.Observable sample(io.reactivex.ObservableSource,boolean) +wangdaye.com.geometricweather.R$string: int content_des_add_current_location +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_edittext +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton +com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Indeterminate +com.google.android.material.R$attr: int textAppearanceSubtitle1 +com.google.android.material.R$id: int action_menu_divider +androidx.work.R$dimen: int notification_main_column_padding_top +com.google.android.material.R$attr: int prefixTextAppearance +androidx.appcompat.widget.ButtonBarLayout: void setAllowStacking(boolean) +cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder access$202(cyanogenmod.externalviews.KeyguardExternalView,android.os.IBinder) +james.adaptiveicon.R$bool: R$bool() +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setWallpaper(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_strokeColor +androidx.appcompat.R$dimen: int compat_button_inset_vertical_material +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver) +android.didikee.donate.R$styleable: int ActionMode_background +androidx.viewpager2.R$id: int right_icon +com.xw.repo.bubbleseekbar.R$string: int abc_menu_enter_shortcut_label +com.google.android.material.R$styleable: R$styleable() +com.google.android.material.R$styleable: int FontFamily_fontProviderFetchStrategy +cyanogenmod.app.ILiveLockScreenManager$Stub: android.os.IBinder asBinder() +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: ObservableSequenceEqual$EqualCoordinator(io.reactivex.Observer,int,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) +james.adaptiveicon.R$attr: int textAllCaps +androidx.vectordrawable.animated.R$dimen: int compat_button_inset_horizontal_material +com.google.android.material.R$styleable: int MenuItem_android_titleCondensed +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String weatherSource +io.reactivex.internal.observers.DeferredScalarObserver: io.reactivex.disposables.Disposable upstream +com.xw.repo.BubbleSeekBar +android.didikee.donate.R$styleable: int Toolbar_contentInsetStartWithNavigation +androidx.preference.R$attr: int colorControlHighlight +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_47 +androidx.preference.PreferenceScreen +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_keyline +com.google.android.material.button.MaterialButton: int getInsetBottom() +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotationX +com.turingtechnologies.materialscrollbar.R$id: int up +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setUvIndex(java.lang.String) +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void request(long) +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_thumb +androidx.appcompat.R$drawable: int abc_ic_voice_search_api_material +androidx.preference.R$styleable: int RecyclerView_layoutManager +retrofit2.Callback: void onFailure(retrofit2.Call,java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPadding +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_inset +com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Dialog +androidx.constraintlayout.widget.R$styleable: int GradientColorItem_android_offset +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onNext(java.lang.Object) +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeStepGranularity +androidx.dynamicanimation.R$attr: int fontProviderPackage +com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_android_alpha +retrofit2.Retrofit$1: java.lang.Class val$service +androidx.viewpager2.widget.ViewPager2: int getCurrentItem() +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomNavigationView +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorError +okhttp3.internal.http2.Http2Connection: void flush() +androidx.preference.R$attr: int actionLayout +com.google.android.material.R$id: int chip3 +wangdaye.com.geometricweather.R$color: int mtrl_calendar_item_stroke_color +androidx.constraintlayout.widget.R$styleable: int State_android_id +androidx.appcompat.R$id: int normal +com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_bottom_start +wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int closeIconSize +androidx.appcompat.R$layout: R$layout() +james.adaptiveicon.R$styleable: int View_paddingStart +cyanogenmod.hardware.DisplayMode: DisplayMode(android.os.Parcel,cyanogenmod.hardware.DisplayMode$1) +androidx.viewpager2.widget.ViewPager2: int getPageSize() +okhttp3.internal.ws.WebSocketReader: okhttp3.internal.ws.WebSocketReader$FrameCallback frameCallback +android.didikee.donate.R$id: int progress_circular +com.google.android.material.behavior.SwipeDismissBehavior +okhttp3.internal.http2.Http2Writer: void frameHeader(int,int,byte,byte) +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource CAIYUN androidx.preference.R$styleable: int AppCompatTheme_dialogCornerRadius -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen -wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragDirection -androidx.hilt.R$string: R$string() -wangdaye.com.geometricweather.R$styleable: int SearchView_suggestionRowLayout -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onError(java.lang.Throwable) -androidx.preference.R$styleable: int Preference_android_icon -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void collapseNotificationPanel() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCutDrawable -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Spinner_Underlined -com.google.android.material.R$styleable: int MaterialButton_android_checkable -wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_1 -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit) -androidx.constraintlayout.widget.R$color: int error_color_material_light -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTopCompat -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric -com.google.android.material.R$attr: int fastScrollVerticalTrackDrawable -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Time -okhttp3.ConnectionPool: void put(okhttp3.internal.connection.RealConnection) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams access$300(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_hideMotionSpec -androidx.preference.R$id: int recycler_view -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: void setUnit(java.lang.String) -androidx.appcompat.R$id: int accessibility_custom_action_12 -androidx.constraintlayout.widget.R$styleable: int MenuView_preserveIconSpacing -androidx.viewpager2.R$dimen: int compat_button_padding_horizontal_material -io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_29 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_selectableItemBackground +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_Alert +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX() +cyanogenmod.weatherservice.ServiceRequest$Status +com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatHoveredFocusedTranslationZ() +wangdaye.com.geometricweather.R$attr: int colorControlActivated +wangdaye.com.geometricweather.R$string: int abc_activitychooserview_choose_application +wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotationY +james.adaptiveicon.AdaptiveIconView: void setIcon(james.adaptiveicon.AdaptiveIcon) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Time +com.google.android.gms.internal.location.zzac +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircleRadius +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getErrorContentDescription() +android.didikee.donate.R$styleable: int Toolbar_maxButtonHeight +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogCenterButtons +okhttp3.RequestBody$1: okhttp3.MediaType val$contentType +androidx.constraintlayout.widget.R$id: int unchecked +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeApparentTemperature +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onNext(java.lang.Object) +com.xw.repo.bubbleseekbar.R$id: int action_bar_root +com.google.android.gms.location.LocationSettingsRequest +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onCross +androidx.appcompat.resources.R$layout: int notification_template_part_chronometer +com.xw.repo.bubbleseekbar.R$layout: int abc_search_view +wangdaye.com.geometricweather.R$drawable: int notif_temp_60 +wangdaye.com.geometricweather.R$color: int colorTextTitle_light +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingTop +com.github.rahatarmanahmed.cpv.R$dimen: int cpv_default_thickness +com.google.android.material.transformation.ExpandableTransformationBehavior: ExpandableTransformationBehavior() +wangdaye.com.geometricweather.db.entities.AlertEntityDao: org.greenrobot.greendao.query.Query weatherEntity_AlertEntityListQuery +com.google.android.material.R$styleable: int MaterialCalendarItem_itemFillColor +okio.RealBufferedSink: okio.BufferedSink writeHexadecimalUnsignedLong(long) +cyanogenmod.themes.IThemeProcessingListener$Stub: java.lang.String DESCRIPTOR +io.reactivex.internal.observers.InnerQueuedObserver: void onError(java.lang.Throwable) +okhttp3.Cache$Entry: okhttp3.Response response(okhttp3.internal.cache.DiskLruCache$Snapshot) +androidx.preference.R$attr: int layout +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getRealFeelShaderTemperature() +wangdaye.com.geometricweather.R$styleable: int Transform_android_translationZ +io.reactivex.internal.util.VolatileSizeArrayList: boolean removeAll(java.util.Collection) +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void drain() +wangdaye.com.geometricweather.R$styleable: int Transform_android_transformPivotY +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstHorizontalBias +wangdaye.com.geometricweather.R$id: int scroll +androidx.appcompat.widget.SearchView: int getMaxWidth() +wangdaye.com.geometricweather.R$styleable: int State_constraints +androidx.preference.R$color: int ripple_material_dark +androidx.work.R$layout: R$layout() +wangdaye.com.geometricweather.R$layout: int widget_clock_day_rectangle +com.turingtechnologies.materialscrollbar.R$dimen: int abc_search_view_preferred_height +com.google.android.material.R$styleable: int Layout_layout_constraintLeft_creator +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatSeekBar +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: int Id +wangdaye.com.geometricweather.R$styleable: int Preference_android_iconSpaceReserved +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken valueOf(java.lang.String) +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_3 +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_enforceMaterialTheme +com.jaredrummler.android.colorpicker.R$styleable: int[] SeekBarPreference +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.observers.InnerQueuedObserver current +wangdaye.com.geometricweather.R$id: int dialog_location_help_locationContainer +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void innerComplete() +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_toRightOf +androidx.legacy.coreutils.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windSpeedEnd +androidx.constraintlayout.widget.R$attr: int titleMarginStart +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.lang.String pubTime +com.google.android.material.slider.Slider +james.adaptiveicon.R$id: int search_mag_icon +cyanogenmod.providers.CMSettings$Secure: long getLong(android.content.ContentResolver,java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_textOn +android.didikee.donate.R$style: int Widget_AppCompat_ListMenuView +android.didikee.donate.R$attr: int windowFixedHeightMinor +com.google.android.material.R$dimen: int abc_seekbar_track_background_height_material +wangdaye.com.geometricweather.location.services.LocationService: void requestLocation(android.content.Context,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) +androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_toId +com.turingtechnologies.materialscrollbar.R$attr: int navigationViewStyle +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property CityId +androidx.recyclerview.R$color: R$color() +android.didikee.donate.R$id: int progress_horizontal +android.didikee.donate.R$style: int Widget_AppCompat_RatingBar +io.reactivex.internal.subscribers.StrictSubscriber: void onComplete() +cyanogenmod.providers.CMSettings$System: java.lang.String APP_SWITCH_WAKE_SCREEN +io.reactivex.internal.disposables.EmptyDisposable: void clear() +com.google.android.material.R$styleable: int Layout_android_layout_height +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarPopupTheme +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: void detach() +com.google.android.material.R$attr: int suffixTextColor +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onComplete() +com.amap.api.location.UmidtokenInfo: com.amap.api.location.AMapLocationClient d +com.jaredrummler.android.colorpicker.R$layout: int abc_screen_simple_overlay_action_mode +androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Dialog +androidx.lifecycle.GeneratedAdapter +androidx.preference.R$styleable: int AlertDialog_listLayout +okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache this$0 +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dialog +androidx.legacy.coreutils.R$id: int line1 +okhttp3.internal.http2.Http2Reader$ContinuationSource: Http2Reader$ContinuationSource(okio.BufferedSource) +androidx.viewpager2.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$attr: int behavior_draggable +androidx.hilt.work.R$attr: int fontProviderPackage +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean done +io.reactivex.internal.observers.InnerQueuedObserver: long serialVersionUID +androidx.appcompat.widget.ActionBarOverlayLayout: void setWindowTitle(java.lang.CharSequence) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_percent +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_transitionEasing +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingEnd +com.google.android.gms.location.LocationSettingsStates +com.xw.repo.bubbleseekbar.R$attr: int alertDialogCenterButtons +wangdaye.com.geometricweather.R$attr: int endIconContentDescription +com.jaredrummler.android.colorpicker.R$attr: int titleTextStyle +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintEnd_toEndOf +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$attr: int progressBarPadding +androidx.viewpager2.R$styleable: int GradientColor_android_startX +io.reactivex.internal.observers.DeferredScalarObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.recyclerview.R$layout: int notification_template_custom_big +androidx.vectordrawable.R$styleable: int GradientColor_android_endColor +retrofit2.ParameterHandler$Part: java.lang.reflect.Method method +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: MfForecastV2Result$Geometry() +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setOnceLocation(boolean) +androidx.preference.R$style: int Base_Widget_AppCompat_ImageButton +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Spinner_Underlined +android.didikee.donate.R$dimen: int abc_dialog_padding_material +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_numericShortcut +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +com.jaredrummler.android.colorpicker.R$attr: int popupTheme +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeShareDrawable +okhttp3.internal.cache.DiskLruCache: long ANY_SEQUENCE_NUMBER +android.didikee.donate.R$color: int dim_foreground_disabled_material_dark +androidx.constraintlayout.widget.R$attr: int paddingStart +com.google.android.material.progressindicator.ProgressIndicator: void setInverse(boolean) +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: long serialVersionUID +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_icon_size +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeSplitBackground +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_DropDown +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layoutDescription +android.didikee.donate.R$attr: int actionBarPopupTheme +wangdaye.com.geometricweather.R$dimen: int cpv_dialog_preview_width +android.didikee.donate.R$attr: int buttonStyle +wangdaye.com.geometricweather.R$styleable: int Toolbar_logo +org.greenrobot.greendao.AbstractDao: void updateInsideSynchronized(java.lang.Object,android.database.sqlite.SQLiteStatement,boolean) +com.google.android.material.R$attr: int behavior_skipCollapsed +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_content_inset_with_nav +wangdaye.com.geometricweather.R$attr: int textAppearanceListItemSecondary +org.greenrobot.greendao.AbstractDao: void attachEntity(java.lang.Object) +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +androidx.activity.R$drawable: int notification_icon_background +okhttp3.internal.http1.Http1Codec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial +okhttp3.internal.ws.WebSocketWriter: boolean isClient +wangdaye.com.geometricweather.R$xml: int perference_unit +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: double Value +wangdaye.com.geometricweather.R$id: int fill_horizontal +wangdaye.com.geometricweather.R$style: int Widget_Design_TabLayout +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_checked +androidx.constraintlayout.widget.R$styleable: int CompoundButton_android_button +wangdaye.com.geometricweather.R$id: int design_menu_item_text +androidx.customview.R$attr: R$attr() +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType WEBP_A +androidx.swiperefreshlayout.R$drawable: int notification_bg +cyanogenmod.app.IProfileManager: void updateNotificationGroup(android.app.NotificationGroup) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonStyle +com.google.android.material.transformation.TransformationChildCard: TransformationChildCard(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_disableDependentsState +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory sInstance +wangdaye.com.geometricweather.R$id: int container_main_details_recyclerView +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setSubtitleText(java.lang.String) +androidx.lifecycle.ViewModelProviders$DefaultFactory +wangdaye.com.geometricweather.R$string: int settings_notification_hide_in_lockScreen_off androidx.hilt.work.R$id: int accessibility_custom_action_8 -cyanogenmod.providers.DataUsageContract: android.net.Uri CONTENT_URI -android.didikee.donate.R$styleable: int DrawerArrowToggle_thickness -androidx.viewpager.widget.ViewPager: void addOnAdapterChangeListener(androidx.viewpager.widget.ViewPager$OnAdapterChangeListener) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Body1 -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_overflow_material -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: long updatedOn -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void dispose() -com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_simple -androidx.work.R$styleable: int FontFamilyFont_android_font -com.google.android.material.R$dimen: int notification_large_icon_height -androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_small_material -wangdaye.com.geometricweather.R$id: int large -androidx.appcompat.R$drawable -com.baidu.location.g.a -wangdaye.com.geometricweather.R$styleable: int MotionLayout_layoutDescription -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Time -androidx.constraintlayout.widget.R$styleable: int PropertySet_motionProgress -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_toLeftOf -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastVerticalBias -com.google.android.material.R$styleable: int Transition_constraintSetStart -com.google.android.material.R$id: int material_clock_period_am_button -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval valueOf(java.lang.String) -androidx.constraintlayout.widget.R$id: int action_image -com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_colored -com.google.android.material.R$integer: R$integer() -wangdaye.com.geometricweather.R$layout: int preference_widget_checkbox -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: void onProgress(int) -retrofit2.KotlinExtensions$awaitResponse$2$2: void onResponse(retrofit2.Call,retrofit2.Response) -wangdaye.com.geometricweather.R$color: int mtrl_card_view_foreground -wangdaye.com.geometricweather.R$string: int date_format_long -androidx.constraintlayout.widget.R$styleable: int SearchView_android_inputType -androidx.hilt.lifecycle.R$id: int accessibility_action_clickable_span -com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_fast_out_linear_in -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setAlerts(java.util.List) -io.reactivex.Observable: io.reactivex.Observable subscribeOn(io.reactivex.Scheduler) -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: void dispose() -cyanogenmod.app.PartnerInterface -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: ObservableMergeWithSingle$MergeWithObserver(io.reactivex.Observer) -androidx.vectordrawable.animated.R$attr: int fontStyle -android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onSuccess(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String getFrom() -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void dispose() -android.didikee.donate.R$styleable: int Toolbar_titleMargin -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderQuery -android.support.v4.app.RemoteActionCompatParcelizer: void write(androidx.core.app.RemoteActionCompat,androidx.versionedparcelable.VersionedParcel) -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderQuery -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.appcompat.R$attr: int listPreferredItemHeightLarge -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onComplete() -androidx.drawerlayout.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getHourlyEntityList() -android.didikee.donate.R$styleable: int[] ActionBar -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoldIndex() -wangdaye.com.geometricweather.R$string: int common_google_play_services_wear_update_text -com.xw.repo.bubbleseekbar.R$attr: int splitTrack -com.amap.api.location.AMapLocationClient: void startAssistantLocation() -androidx.appcompat.R$dimen: int abc_action_bar_subtitle_top_margin_material -cyanogenmod.media.MediaRecorder$AudioSource: int HOTWORD -com.google.android.material.R$dimen: int mtrl_calendar_selection_baseline_to_top_fullscreen -android.didikee.donate.R$dimen: int abc_edit_text_inset_horizontal_material -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_tint -com.jaredrummler.android.colorpicker.R$color: int primary_text_disabled_material_light -com.bumptech.glide.R$id: int time -com.jaredrummler.android.colorpicker.R$attr: int backgroundTint -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: io.reactivex.Scheduler$Worker worker -okhttp3.logging.LoggingEventListener: void responseHeadersStart(okhttp3.Call) -com.google.android.material.R$id: int end -androidx.recyclerview.R$id: int tag_transition_group -cyanogenmod.externalviews.ExternalView$6: void run() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getWeather() -com.jaredrummler.android.colorpicker.R$id: int search_go_btn -okhttp3.HttpUrl: java.lang.String USERNAME_ENCODE_SET -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long index -cyanogenmod.themes.IThemeProcessingListener -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean delayErrors -com.google.android.material.R$color: int secondary_text_default_material_dark -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: MfHistoryResult$Position() -com.turingtechnologies.materialscrollbar.R$style: int Base_CardView -com.google.android.material.R$attr: int splitTrack -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean wind -androidx.fragment.R$styleable: int GradientColorItem_android_color -androidx.customview.R$drawable: int notification_bg_low_normal -com.google.android.material.slider.RangeSlider$RangeSliderState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String date -com.google.android.gms.location.LocationSettingsRequest -com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a d -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Primary -androidx.preference.R$style: int Platform_Widget_AppCompat_Spinner -com.jaredrummler.android.colorpicker.R$id: int title_template -wangdaye.com.geometricweather.R$string: int settings_title_daily_trend_display -com.turingtechnologies.materialscrollbar.R$attr: int thickness -okio.RealBufferedSource$1: int read() -com.google.android.material.circularreveal.CircularRevealFrameLayout -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -james.adaptiveicon.R$styleable: int MenuItem_android_numericShortcut -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: android.net.Uri NO_RINGTONE_URI -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode valueOf(java.lang.String) -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_BOOT_ANIM -com.google.android.material.R$attr: int flow_wrapMode -com.google.android.material.R$attr: int expanded -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_bias -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.bumptech.glide.R$attr: int statusBarBackground -androidx.appcompat.widget.ActionMenuView -okio.SegmentedByteString: boolean rangeEquals(int,byte[],int,int) -okio.Pipe -androidx.appcompat.R$dimen: int notification_large_icon_height -com.google.android.material.chip.Chip: float getChipEndPadding() -androidx.preference.R$style: int Platform_V25_AppCompat_Light -okhttp3.Address: okhttp3.Dns dns -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_CBC_SHA256 -io.reactivex.internal.util.HashMapSupplier: java.util.concurrent.Callable asCallable() -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_horizontal_padding -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: int hashCode() -com.turingtechnologies.materialscrollbar.R$attr: int closeIcon -com.google.android.material.R$styleable: int FloatingActionButton_elevation -androidx.preference.R$styleable: int SearchView_android_maxWidth -androidx.coordinatorlayout.R$dimen: int compat_button_padding_horizontal_material -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int mtrl_dropdown_arrow -okhttp3.internal.http2.Http2Stream$FramingSource: okio.Buffer receiveBuffer -com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage[] values() -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType valueOf(java.lang.String) -androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context) -androidx.hilt.R$id: int tag_unhandled_key_listeners -okhttp3.internal.platform.Jdk9Platform: java.lang.reflect.Method setProtocolMethod -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setWeekText(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int abc_cab_background_top_mtrl_alpha -cyanogenmod.app.CustomTile$ExpandedStyle: int LIST_STYLE -com.google.android.material.R$styleable: int KeyAttribute_framePosition -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_progress -androidx.constraintlayout.widget.R$styleable: int MenuItem_numericModifiers -james.adaptiveicon.R$styleable: int ActionMode_closeItemLayout -wangdaye.com.geometricweather.R$string: int current_location -androidx.appcompat.R$styleable: int Toolbar_titleMarginStart -wangdaye.com.geometricweather.R$string: int week_6 -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: int getAnimationMode() -com.google.android.material.R$layout: int material_timepicker -androidx.lifecycle.LiveData$ObserverWrapper: boolean shouldBeActive() -androidx.core.R$style: int TextAppearance_Compat_Notification_Time -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionMode -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeRealFeelShaderTemperature -wangdaye.com.geometricweather.R$attr: int tickColorInactive -cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_VIBRATE -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWetBulbTemperature(java.lang.Integer) -okio.DeflaterSink: void deflate(boolean) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_69 -retrofit2.KotlinExtensions$await$4$2: void onResponse(retrofit2.Call,retrofit2.Response) -com.google.gson.stream.JsonReader: void skipValue() -retrofit2.ParameterHandler$Field: ParameterHandler$Field(java.lang.String,retrofit2.Converter,boolean) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRainPrecipitationProbability() -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_Layout_layout_scrollFlags -android.didikee.donate.R$dimen: int abc_text_size_title_material_toolbar -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_selection_text -androidx.core.R$drawable: int notification_template_icon_low_bg -io.reactivex.Observable: io.reactivex.Observable skip(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -cyanogenmod.platform.R -io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Predicate onNext -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingStart +androidx.appcompat.R$dimen: int abc_search_view_preferred_width +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getPlaceholderTextColor() +androidx.preference.R$styleable: int AppCompatTheme_actionBarWidgetTheme +wangdaye.com.geometricweather.common.basic.GeoActivity: GeoActivity() +wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_entries +com.jaredrummler.android.colorpicker.ColorPickerDialog: ColorPickerDialog() +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_light +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +okhttp3.internal.http2.Http2Connection$PingRunnable: Http2Connection$PingRunnable(okhttp3.internal.http2.Http2Connection,boolean,int,int) +androidx.coordinatorlayout.R$id: int accessibility_custom_action_18 +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_disableDependentsState +androidx.swiperefreshlayout.R$styleable: int[] SwipeRefreshLayout +com.turingtechnologies.materialscrollbar.R$drawable: int design_snackbar_background +james.adaptiveicon.R$styleable: int MenuItem_android_titleCondensed +android.didikee.donate.R$styleable: int MenuView_preserveIconSpacing +org.greenrobot.greendao.AbstractDao: java.lang.Object readEntity(android.database.Cursor,int) +okhttp3.internal.ws.WebSocketWriter$FrameSink: long contentLength +androidx.preference.R$style: int Base_Widget_AppCompat_PopupMenu +com.google.android.material.R$styleable: int Toolbar_subtitleTextColor +james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context) +com.amap.api.location.AMapLocation: int LOCATION_TYPE_LAST_LOCATION_CACHE +com.google.android.material.R$string: int mtrl_picker_text_input_day_abbr +okhttp3.Call +cyanogenmod.profiles.AirplaneModeSettings: void processOverride(android.content.Context) +com.bumptech.glide.R$id: int action_divider +com.xw.repo.bubbleseekbar.R$attr: int windowFixedHeightMajor +androidx.preference.R$attr: int trackTintMode +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthFocused(int) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display3 +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerColor +com.jaredrummler.android.colorpicker.R$attr: int actionModeCopyDrawable +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String messageLong +androidx.appcompat.resources.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_xml +androidx.constraintlayout.widget.R$drawable: int btn_radio_on_to_off_mtrl_animation +cyanogenmod.hardware.CMHardwareManager: CMHardwareManager(android.content.Context) +androidx.fragment.R$styleable: int Fragment_android_id +james.adaptiveicon.R$styleable: int MenuView_android_itemIconDisabledAlpha +androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Body1 +androidx.constraintlayout.widget.R$styleable: int View_paddingEnd +android.didikee.donate.R$styleable: int MenuItem_android_checkable +com.google.android.material.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +okhttp3.internal.ws.RealWebSocket: boolean send(okio.ByteString,int) +okhttp3.HttpUrl$Builder: java.lang.String scheme +com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_padding_vertical_material +cyanogenmod.providers.CMSettings$Secure: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) +com.github.rahatarmanahmed.cpv.R$attr: int cpv_indeterminate +wangdaye.com.geometricweather.main.layouts.TrendHorizontalLinearLayoutManager +wangdaye.com.geometricweather.R$id: int activity_widget_config +androidx.vectordrawable.R$styleable: int[] GradientColorItem +androidx.viewpager.R$styleable: int GradientColorItem_android_offset +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderAuthority +com.google.android.material.R$dimen: int mtrl_badge_radius +com.google.gson.stream.JsonReader: void skipQuotedValue(char) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long lastId +androidx.recyclerview.R$dimen: int notification_small_icon_size_as_large +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float tWindchill +androidx.fragment.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul24H +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type UNKNOWN +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_black +wangdaye.com.geometricweather.R$id: int item_weather_daily_uv_icon +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight +androidx.swiperefreshlayout.widget.SwipeRefreshLayout$SavedState: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.R$id: int custom +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListMenuView +wangdaye.com.geometricweather.R$drawable: int clock_hour_light +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_4 +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_shadow_height +com.google.android.material.R$styleable: int CardView_android_minHeight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: java.lang.String Unit +androidx.coordinatorlayout.R$id: int accessibility_custom_action_28 +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Light +com.jaredrummler.android.colorpicker.R$attr: int maxButtonHeight +wangdaye.com.geometricweather.R$attr: int materialCalendarDay +com.google.android.material.R$anim: int mtrl_bottom_sheet_slide_in +wangdaye.com.geometricweather.R$styleable: int[] AnimatableIconView +wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_grey +com.google.android.material.internal.FlowLayout: void setItemSpacing(int) +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_updateDefaultLiveLockScreen +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.R$styleable: int[] FontFamily +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.R$color: int abc_primary_text_material_light +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver +androidx.preference.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_middle_mtrl_light +james.adaptiveicon.R$styleable: int ActionBar_divider +androidx.fragment.R$layout: int notification_template_icon_group +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupMenu +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain Rain +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +okhttp3.Response: okhttp3.Request request +com.xw.repo.bubbleseekbar.R$id: int bottom_sides +com.google.android.material.R$styleable: int SwitchCompat_android_thumb +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_android_gravity +androidx.core.R$integer: int status_bar_notification_info_maxnum +androidx.appcompat.R$styleable: int SwitchCompat_switchMinWidth +androidx.appcompat.widget.AppCompatTextView: android.content.res.ColorStateList getSupportBackgroundTintList() +androidx.appcompat.R$style: int Theme_AppCompat_Dialog +com.google.android.material.R$attr: int limitBoundsTo +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Medium_Inverse +wangdaye.com.geometricweather.R$layout: int dialog_donate_wechat +androidx.constraintlayout.widget.R$attr: int barLength +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light_normal_background +wangdaye.com.geometricweather.R$id: int on +com.github.rahatarmanahmed.cpv.CircularProgressView: void initAttributes(android.util.AttributeSet,int) +androidx.appcompat.R$attr: int switchTextAppearance +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_appBar +cyanogenmod.power.PerformanceManager: boolean checkService() +com.amap.api.location.CoordinateConverter$CoordType +androidx.appcompat.R$attr: int color +androidx.preference.R$attr: int iconSpaceReserved +com.google.android.gms.common.SignInButton: void setOnClickListener(android.view.View$OnClickListener) +com.google.android.material.R$dimen: int material_clock_period_toggle_margin_left +com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_swipe_escape_max_velocity +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_trendRecyclerView +io.reactivex.Observable: io.reactivex.Observable groupJoin(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +cyanogenmod.providers.CMSettings$System: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) +androidx.recyclerview.R$id: int accessibility_custom_action_17 +com.google.android.material.R$color: int mtrl_textinput_focused_box_stroke_color +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) +org.greenrobot.greendao.database.DatabaseOpenHelper: void onOpen(android.database.sqlite.SQLiteDatabase) +com.google.android.material.R$styleable: int Layout_android_layout_marginTop +com.amap.api.location.AMapLocationClient: void setLocationListener(com.amap.api.location.AMapLocationListener) +wangdaye.com.geometricweather.R$animator: int mtrl_card_state_list_anim +com.google.android.gms.common.stats.StatsEvent +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +okhttp3.EventListener: void dnsStart(okhttp3.Call,java.lang.String) +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +com.google.android.material.tabs.TabLayout: int getTabMinWidth() +androidx.constraintlayout.widget.R$styleable: int[] KeyTrigger com.google.android.material.R$styleable: int Transition_constraintSetEnd -androidx.recyclerview.R$layout: R$layout() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_padding_horizontal_material -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constrainedWidth -wangdaye.com.geometricweather.R$drawable: int ic_menu_up -com.google.android.material.R$styleable: int Layout_layout_constraintBaseline_creator -wangdaye.com.geometricweather.R$id: int dialog_time_setter_time_picker -androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackgroundColor(int) -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void cancelRequest(int) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeDescription -androidx.preference.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float totalPrecipitation -androidx.preference.R$style: int Base_V26_Theme_AppCompat -android.didikee.donate.R$attr: int homeAsUpIndicator -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean isDisposed() -androidx.appcompat.R$id: int accessibility_custom_action_6 -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_menuCategory -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String unitId -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode CLEAR -wangdaye.com.geometricweather.db.entities.DailyEntity: int daytimeTemperature -androidx.dynamicanimation.R$drawable: int notification_action_background -okhttp3.ResponseBody: okhttp3.MediaType contentType() -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource[] values() -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getBootanimationThemePackageName() -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void dispose() -retrofit2.converter.gson.GsonRequestBodyConverter: java.lang.Object convert(java.lang.Object) -androidx.constraintlayout.widget.R$color: int secondary_text_default_material_dark -cyanogenmod.app.ThemeComponent -okio.Okio: okio.Sink sink(java.io.OutputStream) -androidx.preference.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_top_inner_color -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getSnow() -com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyle -com.google.android.material.datepicker.MaterialCalendarGridView -androidx.preference.R$styleable: int View_paddingStart -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.appcompat.resources.R$drawable: int abc_vector_test +com.amap.api.location.AMapLocation: java.lang.String getRoad() +com.github.rahatarmanahmed.cpv.CircularProgressView: void setProgress(float) +com.amap.api.location.AMapLocation: java.lang.String k +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +james.adaptiveicon.R$id: int text2 +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Counter_Overflow +androidx.lifecycle.ViewModelProviders: ViewModelProviders() +androidx.core.R$layout: int notification_action_tombstone +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_disableDependentsState +wangdaye.com.geometricweather.R$array: int week_icon_mode_values +com.google.android.material.R$attr: int itemStrokeWidth +androidx.appcompat.R$attr: int activityChooserViewStyle +androidx.vectordrawable.R$layout: int custom_dialog +com.google.android.material.R$id: int default_activity_button +org.greenrobot.greendao.AbstractDao: java.lang.Object loadUniqueAndCloseCursor(android.database.Cursor) +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark_normal_background +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +wangdaye.com.geometricweather.R$attr: int type +com.turingtechnologies.materialscrollbar.R$attr: int firstBaselineToTopHeight +com.amap.api.location.AMapLocation: boolean c(com.amap.api.location.AMapLocation,boolean) +wangdaye.com.geometricweather.R$attr: int voiceIcon +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean tryOnError(java.lang.Throwable) +com.amap.api.fence.GeoFence: com.amap.api.fence.PoiItem getPoiItem() +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedTextWithoutUnit(float) +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +androidx.preference.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle +androidx.preference.R$attr: int colorBackgroundFloating +wangdaye.com.geometricweather.R$styleable: int ClockHandView_materialCircleRadius +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: AccuDailyResult$DailyForecasts$Day$Wind() +android.didikee.donate.R$attr: int colorPrimaryDark +james.adaptiveicon.R$id: int action_mode_bar +com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_DropDownUp +com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimAnimationDuration(long) +com.google.android.material.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +wangdaye.com.geometricweather.R$color: int colorRoot_light +cyanogenmod.weatherservice.WeatherProviderService$1: void cancelRequest(int) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_max +androidx.constraintlayout.utils.widget.ImageFilterButton: float getRoundPercent() +com.google.android.material.R$attr: int actionTextColorAlpha +okhttp3.HttpUrl$Builder: boolean isDot(java.lang.String) +cyanogenmod.externalviews.KeyguardExternalView: void onDetachedFromWindow() +wangdaye.com.geometricweather.R$drawable: int notif_temp_133 +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +org.greenrobot.greendao.AbstractDao: AbstractDao(org.greenrobot.greendao.internal.DaoConfig) +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActivityChooserView +wangdaye.com.geometricweather.R$color: int notification_icon_bg_color +androidx.vectordrawable.R$id: int action_text +com.amap.api.fence.GeoFence: int TYPE_DISTRICT +androidx.preference.R$styleable: int AnimatedStateListDrawableItem_android_drawable +james.adaptiveicon.R$id: int edit_query +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void drain() +okio.SegmentedByteString: int indexOf(byte[],int) +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: ObservableReplay$BoundedReplayBuffer() +james.adaptiveicon.R$styleable: int Toolbar_android_gravity +com.jaredrummler.android.colorpicker.R$color: int abc_background_cache_hint_selector_material_light +wangdaye.com.geometricweather.R$layout: int design_layout_snackbar_include +cyanogenmod.profiles.LockSettings: int getValue() +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_AIR_QUALITY +wangdaye.com.geometricweather.R$attr: int fabCradleRoundedCornerRadius +wangdaye.com.geometricweather.R$styleable: int[] MaterialCalendarItem +androidx.core.widget.ContentLoadingProgressBar: ContentLoadingProgressBar(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetDailyEntityList() +cyanogenmod.app.Profile$Type: Profile$Type() +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +androidx.appcompat.R$layout: int abc_activity_chooser_view_list_item +okhttp3.internal.http2.Hpack$Reader: int readByte() +androidx.appcompat.R$dimen: int abc_dialog_fixed_width_major +cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mOnLongClick +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.internal.util.AtomicThrowable errors +com.google.android.material.R$id: int end +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ +com.google.android.material.R$styleable: int Toolbar_subtitle +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: void dispose() +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_2 +cyanogenmod.weather.IRequestInfoListener$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$styleable: int[] MaterialAlertDialog +retrofit2.Invocation: retrofit2.Invocation of(java.lang.reflect.Method,java.util.List) +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void dispose() +com.google.android.material.R$attr: int imageButtonStyle +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_82 +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderPackage +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_lightOnTouch +androidx.constraintlayout.widget.Guideline: void setGuidelinePercent(float) +androidx.lifecycle.LiveData: void postValue(java.lang.Object) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_selectableItemBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setTempMax(java.lang.String) +com.turingtechnologies.materialscrollbar.TouchScrollBar: TouchScrollBar(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context) +com.jaredrummler.android.colorpicker.R$attr: R$attr() +androidx.coordinatorlayout.R$id: int tag_unhandled_key_listeners +com.google.android.material.R$attr: int ratingBarStyle +com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode[] values() +wangdaye.com.geometricweather.R$attr: int tabPaddingBottom +retrofit2.ParameterHandler: ParameterHandler() +androidx.swiperefreshlayout.R$dimen: int compat_control_corner_material +androidx.constraintlayout.widget.R$styleable: int Constraint_barrierMargin +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String toValue(java.util.List) +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +wangdaye.com.geometricweather.R$attr: int fastScrollVerticalThumbDrawable +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_CRITICAL +androidx.recyclerview.R$drawable: int notification_template_icon_bg +androidx.coordinatorlayout.R$id: int tag_accessibility_actions +com.google.android.material.R$styleable: int ScrimInsetsFrameLayout_insetForeground +wangdaye.com.geometricweather.R$attr: int snackbarStyle +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +androidx.hilt.R$layout: int notification_template_part_time +android.didikee.donate.R$id: int action_text +androidx.legacy.coreutils.R$attr: int font +androidx.vectordrawable.R$id: int accessibility_custom_action_16 +com.google.android.material.R$styleable: int ActionBar_logo +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dark +james.adaptiveicon.R$style: int Widget_AppCompat_Toolbar +cyanogenmod.power.PerformanceManager: java.lang.String TAG +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout +wangdaye.com.geometricweather.R$id: int triangle +okhttp3.CacheControl: int maxStaleSeconds +wangdaye.com.geometricweather.R$dimen: int notification_big_circle_margin +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onError(java.lang.Throwable) +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableBottom +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getVibrateMode() +androidx.preference.Preference: void setOnPreferenceChangeListener(androidx.preference.Preference$OnPreferenceChangeListener) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.functions.Function mapper +com.google.android.material.R$style: int Widget_AppCompat_Button_Borderless +james.adaptiveicon.R$id +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean isRecoverable(java.io.IOException,boolean) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getIce() +com.xw.repo.bubbleseekbar.R$color: int notification_action_color_filter +cyanogenmod.weatherservice.ServiceRequestResult: boolean equals(java.lang.Object) +android.didikee.donate.R$styleable: int AppCompatTheme_colorBackgroundFloating +cyanogenmod.profiles.AirplaneModeSettings$1: cyanogenmod.profiles.AirplaneModeSettings[] newArray(int) +com.google.android.material.R$styleable: int Toolbar_titleMarginTop +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int ThunderstormProbability +androidx.lifecycle.Lifecycle$Event +com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: java.lang.String Unit +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_translation_z_pressed +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_MinWidth_Bridge +okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,okio.ByteString) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int Chip_android_checkable +wangdaye.com.geometricweather.R$drawable: int notif_temp_93 +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemPaddingLeft +okio.HashingSource: okio.HashingSource sha1(okio.Source) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void dispose() +androidx.preference.R$styleable: int MenuItem_android_orderInCategory +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit[] values() +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light_BottomSheetDialog +com.baidu.location.e.h$c: com.baidu.location.e.h$c[] values() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: void run() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_min +com.xw.repo.bubbleseekbar.R$color: int abc_tint_default +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: KeyguardExternalViewProviderService$Provider$ProviderImpl$4(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: CNWeatherResult$WeatherX$InfoX() +androidx.hilt.work.R$id: int text +okhttp3.internal.platform.Platform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) +wangdaye.com.geometricweather.R$integer: int google_play_services_version +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.MinutelyEntity,int) +androidx.lifecycle.extensions.R$styleable: int FragmentContainerView_android_tag +com.google.android.gms.internal.location.zzbg +androidx.preference.R$id: int split_action_bar +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: int UnitType +wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary_dark +com.jaredrummler.android.colorpicker.R$attr: int colorPrimaryDark +com.google.gson.stream.JsonWriter: boolean getSerializeNulls() +cyanogenmod.app.Profile: java.util.List readSecondaryUuidsFromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event valueOf(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_always_show_bubble_delay +com.google.android.material.R$attr: int fontStyle +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void execute() +james.adaptiveicon.R$attr: int actionOverflowButtonStyle +wangdaye.com.geometricweather.common.basic.models.weather.Weather: Weather(wangdaye.com.geometricweather.common.basic.models.weather.Base,wangdaye.com.geometricweather.common.basic.models.weather.Current,wangdaye.com.geometricweather.common.basic.models.weather.History,java.util.List,java.util.List,java.util.List,java.util.List) +wangdaye.com.geometricweather.R$color: int dim_foreground_material_dark +androidx.appcompat.R$attr: int drawableStartCompat +com.google.android.material.chip.Chip: void setBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button +androidx.fragment.R$string: R$string() +com.google.android.material.button.MaterialButtonToggleGroup: java.lang.CharSequence getAccessibilityClassName() +wangdaye.com.geometricweather.R$drawable: int weather_clear_night +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModelProvider$NewInstanceFactory getInstance() +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: cyanogenmod.weather.IWeatherServiceProviderChangeListener asInterface(android.os.IBinder) +androidx.fragment.R$anim +androidx.lifecycle.ViewModelStore: java.util.HashMap mMap +wangdaye.com.geometricweather.R$styleable: int[] GradientColorItem +cyanogenmod.app.IProfileManager$Stub$Proxy: android.os.IBinder mRemote +androidx.preference.R$styleable: int DrawerArrowToggle_thickness +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +wangdaye.com.geometricweather.GeometricWeather +com.jaredrummler.android.colorpicker.R$color: int abc_tint_switch_track +okhttp3.internal.http2.Http2Connection$3: Http2Connection$3(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_gravity +android.didikee.donate.R$styleable: int[] LinearLayoutCompat +wangdaye.com.geometricweather.R$attr: int dialogPreferenceStyle +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver) +androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveShape +com.google.android.material.R$layout: int material_time_chip +wangdaye.com.geometricweather.R$id: int autoCompleteToEnd +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.CompletableObserver downstream +com.jaredrummler.android.colorpicker.R$styleable: int[] RecyclerView +com.turingtechnologies.materialscrollbar.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +androidx.preference.R$attr: int textLocale +com.google.android.material.R$drawable: int abc_popup_background_mtrl_mult +androidx.viewpager2.R$style: int Widget_Compat_NotificationActionContainer +cyanogenmod.weather.WeatherInfo$DayForecast: double getHigh() +com.google.android.gms.tasks.DuplicateTaskCompletionException: java.lang.IllegalStateException of(com.google.android.gms.tasks.Task) +wangdaye.com.geometricweather.R$attr: int buttonIconDimen +android.support.v4.os.ResultReceiver: boolean mLocal +androidx.swiperefreshlayout.R$styleable: int GradientColorItem_android_color +cyanogenmod.hardware.IThermalListenerCallback$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_width_minor +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +androidx.swiperefreshlayout.R$dimen: int notification_media_narrow_margin +androidx.hilt.lifecycle.R$id: int icon +com.baidu.location.e.p +com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_singlechoice_material +com.google.android.material.R$styleable: int Layout_android_layout_marginBottom +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int ON_NEXT +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitationProbability +androidx.work.R$id: int accessibility_custom_action_26 +androidx.work.R$drawable: int notification_bg_low +cyanogenmod.weather.WeatherInfo$DayForecast: int mConditionCode +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: boolean hasPermissions(android.content.Context) +retrofit2.RequestBuilder: okhttp3.Request$Builder requestBuilder +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +androidx.appcompat.R$id: int action_menu_divider +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyBottomRight +wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_backgroundTint +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogCornerRadius +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_maxWidth +androidx.constraintlayout.widget.R$attr: int layout_constraintRight_toLeftOf +androidx.viewpager.R$string +androidx.appcompat.R$styleable: int MenuGroup_android_menuCategory +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu +android.didikee.donate.R$id: int end +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_visible +retrofit2.Utils: java.lang.RuntimeException parameterError(java.lang.reflect.Method,java.lang.Throwable,int,java.lang.String,java.lang.Object[]) +com.turingtechnologies.materialscrollbar.R$color: int abc_background_cache_hint_selector_material_dark +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSo2(java.lang.Float) +retrofit2.ParameterHandler$Headers: void apply(retrofit2.RequestBuilder,java.lang.Object) +androidx.appcompat.R$styleable: int Toolbar_contentInsetRight +wangdaye.com.geometricweather.R$attr: int layout_editor_absoluteY +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_interval +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: float unitFactor +com.autonavi.aps.amapapi.model.AMapLocationServer: void e(java.lang.String) +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder immutable() +okhttp3.internal.cache.DiskLruCache$Editor: void detach() +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: boolean isDisposed() +wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_text_input_mode +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetStart +androidx.preference.R$styleable: int AppCompatTheme_editTextStyle +androidx.preference.R$integer: int abc_config_activityDefaultDur +androidx.viewpager2.R$id: int accessibility_custom_action_1 +androidx.vectordrawable.R$drawable: int notification_bg +androidx.preference.R$layout: int abc_action_mode_close_item_material +okhttp3.RealCall: boolean forWebSocket +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_overflow_padding_end_material +okio.GzipSource: byte SECTION_BODY +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_elevation +androidx.constraintlayout.widget.R$dimen: int tooltip_precise_anchor_threshold +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer LEFT_VALUE +androidx.constraintlayout.widget.R$styleable: int Toolbar_android_gravity +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Borderless_Colored +com.google.android.material.R$attr: int layout_constraintTop_toBottomOf +com.google.android.material.R$styleable: int KeyTimeCycle_android_scaleY +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.Map rights +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String NO_RINGTONE +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_VALIDATOR +wangdaye.com.geometricweather.R$attr: int hideMotionSpec com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_reverseLayout -android.didikee.donate.R$drawable: int abc_tab_indicator_mtrl_alpha -wangdaye.com.geometricweather.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -com.google.gson.FieldNamingPolicy: FieldNamingPolicy(java.lang.String,int,com.google.gson.FieldNamingPolicy$1) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabStyle -androidx.constraintlayout.widget.R$attr: int drawableRightCompat -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplBase: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float NitrogenDioxide -cyanogenmod.profiles.BrightnessSettings: boolean mDirty -com.jaredrummler.android.colorpicker.R$attr: int expandActivityOverflowButtonDrawable -com.turingtechnologies.materialscrollbar.R$attr: int titleMarginBottom -androidx.appcompat.widget.SwitchCompat: boolean getSplitTrack() -wangdaye.com.geometricweather.location.utils.LocationException -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: double Value -com.google.android.material.R$styleable: int CompoundButton_buttonCompat -android.didikee.donate.R$style: int Theme_AppCompat_NoActionBar -androidx.preference.R$style: int Widget_AppCompat_ProgressBar_Horizontal -com.jaredrummler.android.colorpicker.R$id: int icon_frame -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Medium -cyanogenmod.hardware.CMHardwareManager: boolean isSunlightEnhancementSelfManaged() -com.xw.repo.bubbleseekbar.R$attr: int font -com.jaredrummler.android.colorpicker.R$string: int abc_action_menu_overflow_description -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_enterFadeDuration -androidx.swiperefreshlayout.R$id: int tag_accessibility_heading -okhttp3.internal.http2.Header: okio.ByteString TARGET_SCHEME -wangdaye.com.geometricweather.R$string: int cancel -okio.HashingSink: javax.crypto.Mac mac -com.amap.api.location.AMapLocationClientOption: boolean isOnceLocation() -james.adaptiveicon.R$attr: int tickMarkTintMode -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeSplitBackground -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: java.util.List history -wangdaye.com.geometricweather.R$attr: int actionModePopupWindowStyle -cyanogenmod.app.CustomTile$ExpandedStyle: void writeToParcel(android.os.Parcel,int) -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge -com.xw.repo.bubbleseekbar.R$attr: int homeAsUpIndicator -com.google.android.material.R$anim -androidx.appcompat.widget.ActivityChooserView -wangdaye.com.geometricweather.R$drawable: int ic_cloud -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_l -com.google.android.material.button.MaterialButton: int getIconSize() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean getPoint() -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf -wangdaye.com.geometricweather.R$color: int mtrl_scrim_color -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionBarLayout -com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.AnimatorSet createIndeterminateAnimator(float) -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: CompletableFutureCallAdapterFactory$ResponseCallAdapter(java.lang.reflect.Type) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_itemPadding -androidx.core.R$drawable: int notification_icon_background -androidx.preference.R$style: int PreferenceFragment_Material -androidx.constraintlayout.widget.R$layout: int abc_cascading_menu_item_layout -com.google.android.material.R$styleable: int SnackbarLayout_animationMode -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -cyanogenmod.app.Profile: int getDozeMode() -androidx.constraintlayout.widget.R$attr: int pathMotionArc -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String unit -org.greenrobot.greendao.AbstractDao: void delete(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int Preference_enableCopying -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.util.Date getDate() -okhttp3.internal.connection.RealConnection: void connectTunnel(int,int,int,okhttp3.Call,okhttp3.EventListener) -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_precise_anchor_extra_offset -android.didikee.donate.R$attr: int listItemLayout -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarItemBackground -wangdaye.com.geometricweather.R$string: int key_notification_background_color -wangdaye.com.geometricweather.R$attr: int textStartPadding -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingRight -wangdaye.com.geometricweather.R$id: int postLayout -androidx.appcompat.R$attr: int listPreferredItemPaddingEnd -wangdaye.com.geometricweather.R$attr: int popupWindowStyle -okhttp3.Cache$CacheResponseBody: java.lang.String contentLength -androidx.preference.R$styleable: int CheckBoxPreference_disableDependentsState -com.amap.api.location.AMapLocation: void setProvince(java.lang.String) -wangdaye.com.geometricweather.db.entities.AlertEntity: void setColor(int) -wangdaye.com.geometricweather.R$style: int Preference_Material -androidx.appcompat.R$id: int on -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -wangdaye.com.geometricweather.R$id: int ghost_view_holder -james.adaptiveicon.R$color: int switch_thumb_normal_material_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String unit -okio.SegmentPool: okio.Segment take() -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: boolean validate(java.lang.String) -cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(java.lang.String,java.lang.String,android.net.Uri,android.net.Uri) -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType START -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindDircEnd(java.lang.String) -cyanogenmod.util.ColorUtils: int generateAlertColorFromDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$color: int material_grey_800 +android.didikee.donate.R$styleable: int TextAppearance_fontVariationSettings +com.google.android.material.R$styleable: int TabLayout_tabMaxWidth +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_selected +okio.BufferedSource: long readHexadecimalUnsignedLong() +com.google.android.gms.location.LocationSettingsResult +com.xw.repo.bubbleseekbar.R$dimen: int abc_alert_dialog_button_bar_height +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_5_30 +androidx.constraintlayout.widget.R$styleable: int[] ViewStubCompat +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode COMPRESSION_ERROR +wangdaye.com.geometricweather.R$styleable: int MockView_mock_diagonalsColor +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setId(java.lang.Long) +wangdaye.com.geometricweather.R$attr: int colorSecondary +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog +androidx.loader.R$style: int TextAppearance_Compat_Notification_Line2 +com.amap.api.location.AMapLocation: int x +com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_text_color +com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_top_material +androidx.hilt.lifecycle.R$id: int right_icon +okhttp3.internal.http2.Http2Connection: int DEGRADED_PING +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Body2 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean) +cyanogenmod.app.StatusBarPanelCustomTile$1: cyanogenmod.app.StatusBarPanelCustomTile[] newArray(int) +androidx.loader.R$styleable: int GradientColor_android_endY +io.reactivex.internal.subscribers.DeferredScalarSubscriber: org.reactivestreams.Subscription upstream +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: java.util.concurrent.TimeUnit unit +retrofit2.Call: okio.Timeout timeout() +com.google.android.material.R$attr: int homeLayout +com.amap.api.location.AMapLocationClientOption: boolean o +com.amap.api.fence.GeoFenceClient: java.util.List getAllGeoFence() +androidx.appcompat.R$styleable: int GradientColor_android_gradientRadius +okhttp3.internal.http2.Hpack$Reader: Hpack$Reader(int,int,okio.Source) +androidx.appcompat.widget.AppCompatButton: void setSupportCompoundDrawablesTintMode(android.graphics.PorterDuff$Mode) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_enabled +androidx.vectordrawable.R$styleable: int GradientColorItem_android_color +com.google.android.material.R$styleable: int AppCompatTheme_popupWindowStyle +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setWeather(java.lang.String) +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_DESTROY +androidx.hilt.lifecycle.R$layout: int notification_template_custom_big +androidx.drawerlayout.R$dimen: int compat_notification_large_icon_max_height +androidx.legacy.coreutils.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_PRECIPITATION +com.google.android.material.R$styleable: int CustomAttribute_customColorDrawableValue +com.amap.api.location.LocationManagerBase: void stopAssistantLocation() +androidx.viewpager2.R$dimen: int notification_top_pad_large_text +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabTextAppearance +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight +com.google.android.material.R$attr: int indicatorSize +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SUNNY +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setO3(java.lang.Float) +androidx.legacy.coreutils.R$styleable +android.didikee.donate.R$anim: int abc_fade_in +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_container +com.google.android.material.R$dimen: int mtrl_high_ripple_default_alpha +com.google.android.material.R$color: int material_timepicker_clockface +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeMinTextSize +androidx.preference.R$styleable: int AppCompatTextView_textAllCaps +com.xw.repo.bubbleseekbar.R$attr: int selectableItemBackground +com.google.android.material.R$styleable: int ActionBar_contentInsetLeft +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleContentDescription(java.lang.CharSequence) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_12 +cyanogenmod.providers.CMSettings$Global: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) +androidx.constraintlayout.widget.R$dimen: int abc_text_size_title_material +com.bumptech.glide.R$color +wangdaye.com.geometricweather.R$attr: int showMotionSpec +com.google.android.material.R$styleable: int KeyCycle_curveFit +androidx.preference.R$styleable: int PreferenceFragment_android_dividerHeight +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Borderless +android.didikee.donate.R$drawable: int abc_ic_menu_share_mtrl_alpha +com.jaredrummler.android.colorpicker.R$dimen: int abc_cascading_menus_min_smallest_width +wangdaye.com.geometricweather.R$drawable: int ic_github_dark +androidx.fragment.R$id: int tag_unhandled_key_listeners +androidx.appcompat.R$layout: int abc_list_menu_item_radio +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconSize(int) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitation +androidx.viewpager.widget.ViewPager: ViewPager(android.content.Context) +android.didikee.donate.R$style: int Theme_AppCompat_Light +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +androidx.appcompat.widget.AppCompatButton: int[] getAutoSizeTextAvailableSizes() +retrofit2.OkHttpCall$1: void onResponse(okhttp3.Call,okhttp3.Response) +com.baidu.location.e.h$a: com.baidu.location.e.h$a[] values() +com.xw.repo.bubbleseekbar.R$color: int abc_secondary_text_material_dark +com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_text_padding_left +com.xw.repo.bubbleseekbar.R$styleable: int[] SearchView +okhttp3.internal.connection.StreamAllocation: int refusedStreamCount +retrofit2.Retrofit: retrofit2.Converter nextRequestBodyConverter(retrofit2.Converter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[]) +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit) +com.google.android.material.progressindicator.ProgressIndicator: void setIndeterminate(boolean) +okhttp3.internal.http2.Http2Writer: void synReply(boolean,int,java.util.List) +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void dispose() +wangdaye.com.geometricweather.R$styleable: int FitSystemBarNestedScrollView_sv_side +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List daisan +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_text_size +androidx.constraintlayout.widget.Constraints +androidx.transition.R$dimen: int notification_right_side_padding_top +androidx.constraintlayout.widget.R$attr: int activityChooserViewStyle +com.turingtechnologies.materialscrollbar.R$attr: int state_lifted +androidx.preference.R$style: int Widget_Compat_NotificationActionText +androidx.constraintlayout.widget.Constraints: androidx.constraintlayout.widget.ConstraintSet getConstraintSet() +androidx.constraintlayout.widget.R$id: int invisible +com.jaredrummler.android.colorpicker.R$style: int Base_AlertDialog_AppCompat_Light +com.google.android.material.R$dimen: int mtrl_btn_hovered_z +com.google.android.material.textfield.TextInputLayout: com.google.android.material.internal.CheckableImageButton getEndIconView() +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: void setValue(java.lang.Object) +okhttp3.OkHttpClient$Builder: java.net.ProxySelector proxySelector +androidx.lifecycle.extensions.R$styleable: int[] FontFamily +okhttp3.internal.cache.FaultHidingSink: void flush() +okhttp3.CertificatePinner$Builder: okhttp3.CertificatePinner build() +androidx.appcompat.R$style: int Widget_AppCompat_Button_Borderless_Colored +androidx.viewpager.widget.ViewPager: int getClientWidth() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeFindDrawable +androidx.hilt.lifecycle.R$dimen: int notification_main_column_padding_top +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabBar +cyanogenmod.app.suggest.IAppSuggestManager$Stub: IAppSuggestManager$Stub() +wangdaye.com.geometricweather.R$string: int feedback_search_location +androidx.customview.view.AbsSavedState: android.os.Parcelable$Creator CREATOR +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA +okhttp3.internal.http2.Hpack$Writer: int SETTINGS_HEADER_TABLE_SIZE +com.google.android.material.R$styleable: int MaterialButton_iconTintMode +wangdaye.com.geometricweather.R$drawable: int widget_week +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String getCityId() +com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_material +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: IAppSuggestProvider$Stub() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +com.google.android.material.R$attr: int scrimAnimationDuration +androidx.appcompat.R$styleable: int[] ActionMenuItemView +wangdaye.com.geometricweather.db.entities.DailyEntity: void setWeatherSource(java.lang.String) +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String n +androidx.preference.R$color: int bright_foreground_disabled_material_dark +cyanogenmod.externalviews.KeyguardExternalView$8: KeyguardExternalView$8(cyanogenmod.externalviews.KeyguardExternalView,boolean) +androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Time +com.google.android.material.R$styleable: int Layout_layout_constraintVertical_chainStyle +androidx.preference.R$style: int Base_V7_Theme_AppCompat_Dialog +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_visibility +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_22 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Badge +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,int) +okio.ByteString: int lastIndexOf(okio.ByteString,int) +okhttp3.internal.Util: Util() +wangdaye.com.geometricweather.R$attr: int closeIconTint +androidx.loader.R$color: int ripple_material_light +okhttp3.internal.http2.Huffman: void addCode(int,int,byte) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification +android.didikee.donate.R$style: int TextAppearance_AppCompat_Body2 +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.reflect.Type responseType() +com.turingtechnologies.materialscrollbar.R$attr: int popupMenuStyle +androidx.appcompat.R$bool: R$bool() +androidx.lifecycle.LifecycleRegistry: void setCurrentState(androidx.lifecycle.Lifecycle$State) +wangdaye.com.geometricweather.R$id: int design_navigation_view +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void dispose() +androidx.hilt.R$string +androidx.cardview.R$dimen: R$dimen() +wangdaye.com.geometricweather.R$styleable: int Layout_maxHeight +james.adaptiveicon.R$color: int background_floating_material_dark +androidx.core.R$id: int accessibility_custom_action_13 +com.jaredrummler.android.colorpicker.R$color: int abc_btn_colored_borderless_text_material +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_GCM_SHA384 +androidx.appcompat.R$styleable: int AppCompatTheme_android_windowAnimationStyle +com.turingtechnologies.materialscrollbar.R$color: int primary_material_light +androidx.appcompat.R$styleable: int AppCompatTheme_homeAsUpIndicator +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onComplete() +okhttp3.OkHttpClient$Builder: int pingInterval +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_creator +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position position +androidx.constraintlayout.widget.R$id: int textSpacerNoButtons +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +cyanogenmod.weather.ICMWeatherManager: void lookupCity(cyanogenmod.weather.RequestInfo) +com.autonavi.aps.amapapi.model.AMapLocationServer: void b(org.json.JSONObject) +okhttp3.Handshake +wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_gitHub +androidx.appcompat.widget.SearchView: void setQueryRefinementEnabled(boolean) +android.didikee.donate.R$drawable: int abc_btn_check_material +androidx.appcompat.widget.AppCompatSpinner$SavedState: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarStyle +androidx.fragment.R$dimen: int notification_right_icon_size +james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMarkTintMode +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showDialog +wangdaye.com.geometricweather.R$drawable: int cpv_preset_checked +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_GLOBAL +wangdaye.com.geometricweather.main.MainActivityViewModel +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startColor +androidx.fragment.R$layout: int notification_action +android.didikee.donate.R$id: int action_bar_spinner +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +james.adaptiveicon.R$drawable: int abc_btn_radio_to_on_mtrl_015 +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_padding_right +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhaseText +androidx.viewpager2.R$layout: int notification_action +cyanogenmod.app.ILiveLockScreenChangeListener$Stub +wangdaye.com.geometricweather.db.entities.MinutelyEntity: long time +android.didikee.donate.R$id: int search_mag_icon +retrofit2.OkHttpCall$1: void onFailure(okhttp3.Call,java.io.IOException) +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge +wangdaye.com.geometricweather.R$dimen: int abc_text_size_body_1_material +com.google.android.material.R$style: int CardView_Dark +retrofit2.RequestBuilder: void addHeader(java.lang.String,java.lang.String) +okhttp3.internal.http.RealInterceptorChain: int connectTimeout +cyanogenmod.providers.CMSettings$Global: java.lang.String SYS_PROP_CM_SETTING_VERSION +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: double Value +androidx.lifecycle.ClassesInfoCache: ClassesInfoCache() +androidx.drawerlayout.R$styleable: int GradientColor_android_startColor +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_layout +com.google.android.material.R$color: int mtrl_error +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_writePersistentBytes +okio.Buffer: long completeSegmentByteCount() +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_closeIcon +okhttp3.internal.platform.JdkWithJettyBootPlatform: void afterHandshake(javax.net.ssl.SSLSocket) +androidx.viewpager2.R$style +com.google.android.material.R$id: int accessibility_custom_action_0 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_48dp +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_toolbarStyle +okhttp3.internal.http2.Settings: int[] values +com.google.android.material.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setStatus(int) +com.google.android.material.R$attr: int boxBackgroundMode +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_y_offset_non_touch +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean,int,int) +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Selected +com.xw.repo.bubbleseekbar.R$anim: int abc_slide_out_bottom +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_popupTheme +com.google.android.material.R$styleable: int Constraint_flow_lastVerticalStyle +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Editor edit(java.lang.String,long) +james.adaptiveicon.R$styleable: int DrawerArrowToggle_color +com.google.android.material.R$styleable: int ConstraintSet_transitionPathRotate +com.amap.api.location.AMapLocationClientOption: boolean d +com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetBottom +com.amap.api.location.AMapLocation: java.lang.String g +com.jaredrummler.android.colorpicker.R$id: int contentPanel +androidx.appcompat.R$attr: int buttonStyleSmall +okio.HashingSink: okio.HashingSink hmacSha256(okio.Sink,okio.ByteString) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +wangdaye.com.geometricweather.R$string: int cpv_transparency +androidx.constraintlayout.widget.R$id: int normal +wangdaye.com.geometricweather.R$layout: int activity_about +okhttp3.Cache$1: void trackConditionalCacheHit() +androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Light +com.google.android.material.R$string: int mtrl_picker_range_header_selected +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ProgressBar +android.didikee.donate.R$attr: int actionViewClass +com.google.android.material.R$styleable: int PopupWindow_android_popupAnimationStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_10 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.util.Date getPubTime() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline1 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial Imperial +androidx.constraintlayout.widget.R$styleable: int Layout_layout_editor_absoluteY +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorButtonNormal +androidx.hilt.lifecycle.R$id: int tag_accessibility_heading +androidx.viewpager2.R$drawable: int notification_tile_bg +okhttp3.internal.http2.Http2Stream$FramingSink: boolean finished +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void drain() +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_DarkActionBar +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void dispose() +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_Solid +android.didikee.donate.R$style: int Base_Widget_AppCompat_EditText +com.google.android.material.R$id: int search_badge +com.google.gson.JsonIOException: JsonIOException(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$color: int design_snackbar_background_color +androidx.appcompat.widget.Toolbar: void setNavigationContentDescription(java.lang.CharSequence) +androidx.appcompat.R$id: int line1 +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: AccuLocationResult$AdministrativeArea() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox +retrofit2.ParameterHandler$RelativeUrl: int p +androidx.preference.R$layout: int abc_popup_menu_header_item_layout +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty1H +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_text_size +androidx.vectordrawable.R$attr okhttp3.ResponseBody: long contentLength() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String getKey(wangdaye.com.geometricweather.db.entities.LocationEntity) -androidx.loader.R$style: int TextAppearance_Compat_Notification_Title -io.reactivex.Observable: io.reactivex.Observable cache() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_7 -io.reactivex.Observable: java.util.concurrent.Future toFuture() -com.bumptech.glide.integration.okhttp.R$attr: int layout_anchorGravity -cyanogenmod.providers.CMSettings$Global: int getInt(android.content.ContentResolver,java.lang.String) -androidx.preference.R$styleable: int GradientColorItem_android_offset -androidx.core.R$styleable: int GradientColor_android_endColor -cyanogenmod.util.ColorUtils: com.android.internal.util.cm.palette.Palette$Swatch getDominantSwatch(com.android.internal.util.cm.palette.Palette) -okhttp3.Dns$1 -james.adaptiveicon.R$style: int Base_V22_Theme_AppCompat_Light -com.google.android.material.textfield.TextInputLayout: void setEndIconOnLongClickListener(android.view.View$OnLongClickListener) -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorColor(int) -okio.RealBufferedSource: int select(okio.Options) -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle HOURLY -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: java.lang.String Name -com.xw.repo.bubbleseekbar.R$styleable: int ActivityChooserView_initialActivityCount -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: int unitArrayIndex -com.google.android.material.R$styleable: int[] StateListDrawable -okhttp3.internal.tls.BasicTrustRootIndex -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$FramingSource source -wangdaye.com.geometricweather.db.entities.DailyEntity: long getTime() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void dispose() -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Light -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.slider.RangeSlider: void setThumbStrokeColorResource(int) -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedText(android.content.Context,float) -io.reactivex.subjects.PublishSubject$PublishDisposable: void onComplete() -wangdaye.com.geometricweather.R$xml: int widget_day_week -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean done -okhttp3.internal.platform.Android10Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable[] values() -retrofit2.ParameterHandler$QueryMap: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_switchStyle -androidx.loader.R$styleable: int FontFamily_fontProviderFetchStrategy -okhttp3.internal.platform.JdkWithJettyBootPlatform: void afterHandshake(javax.net.ssl.SSLSocket) -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowColor -com.google.android.material.R$drawable: int abc_ic_star_black_16dp -com.turingtechnologies.materialscrollbar.R$layout: int design_bottom_sheet_dialog -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_buttonIconDimen -com.google.gson.FieldNamingPolicy$1 -androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar_Small -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setPresenter(com.google.android.material.bottomnavigation.BottomNavigationPresenter) -androidx.preference.R$style: int Base_Theme_AppCompat -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_title_baseline_to_top_fullscreen -cyanogenmod.externalviews.ExternalViewProviderService -james.adaptiveicon.R$styleable: int Toolbar_menu -com.google.android.material.datepicker.MaterialDatePicker: MaterialDatePicker() -androidx.customview.R$styleable: int ColorStateListItem_alpha -androidx.preference.internal.PreferenceImageView -com.jaredrummler.android.colorpicker.R$style: int Preference_Material -com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_colored -wangdaye.com.geometricweather.R$drawable: int notif_temp_108 -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_COLOR_ENHANCE -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -cyanogenmod.themes.ThemeManager$1$1: void run() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean precipitationProbability -androidx.appcompat.R$color: int background_material_light -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_DialogWhenLarge -retrofit2.OptionalConverterFactory: retrofit2.Converter$Factory INSTANCE -com.amap.api.location.AMapLocationQualityReport -androidx.activity.R$id: int line1 -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: PrecipitationDuration(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -com.bumptech.glide.integration.okhttp.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$attr: int currentPageIndicatorColor -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_width_material -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_searchViewStyle -okio.Okio$2: okio.Timeout val$timeout -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer getDewPoint() -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_AUTO_OUTDOOR_MODE -com.google.android.material.R$id: int decelerateAndComplete -com.google.android.material.R$style: int TextAppearance_AppCompat_Display3 -okhttp3.internal.Util: java.util.TimeZone UTC -androidx.appcompat.R$style: int Theme_AppCompat_DayNight -androidx.preference.R$drawable: int abc_text_select_handle_middle_mtrl_light -androidx.preference.R$drawable: int abc_edit_text_material -wangdaye.com.geometricweather.R$styleable: int Insets_paddingRightSystemWindowInsets -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionMenuTextAppearance -wangdaye.com.geometricweather.R$interpolator: int mtrl_fast_out_linear_in +com.jaredrummler.android.colorpicker.R$attr: int customNavigationLayout +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerColor +com.github.rahatarmanahmed.cpv.CircularProgressView: void updatePaint() +wangdaye.com.geometricweather.R$string: int abc_action_mode_done +retrofit2.ParameterHandler$HeaderMap: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.bumptech.glide.load.ImageHeaderParser$ImageType +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getLongitude() +wangdaye.com.geometricweather.R$dimen: int tooltip_y_offset_touch +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_listLayout +android.didikee.donate.R$styleable: int SwitchCompat_splitTrack +androidx.loader.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$attr: int statusBarForeground +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getAbbreviation(android.content.Context) +com.jaredrummler.android.colorpicker.R$bool: int abc_config_actionMenuItemAllCaps +cyanogenmod.util.ColorUtils$1: ColorUtils$1() +james.adaptiveicon.AdaptiveIconView: james.adaptiveicon.AdaptiveIcon getIcon() +io.reactivex.Observable: io.reactivex.Observable debounce(io.reactivex.functions.Function) +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_logo +android.didikee.donate.R$styleable: int SearchView_queryBackground +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getSnowPrecipitationProbability() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionModeOverlay +com.google.android.material.R$styleable: int AppCompatTheme_colorPrimary +androidx.preference.PreferenceDialogFragmentCompat: PreferenceDialogFragmentCompat() +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation +android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +org.greenrobot.greendao.AbstractDao: java.lang.String[] getNonPkColumns() +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber this$1 +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onUnsubscribed() +com.jaredrummler.android.colorpicker.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: AccuCurrentResult$PrecipitationSummary$PastHour$Imperial() +androidx.lifecycle.Lifecycling: boolean isLifecycleParent(java.lang.Class) +james.adaptiveicon.R$styleable: int ActionMode_height +james.adaptiveicon.R$attr: int selectableItemBackground +com.google.android.material.R$attr: int showDelay +okhttp3.Response$Builder: okhttp3.Protocol protocol +cyanogenmod.util.ColorUtils +wangdaye.com.geometricweather.R$string: int phase_full +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Wind wind +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationY +wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog +androidx.viewpager.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$attr: int isLightTheme +androidx.appcompat.resources.R$styleable: int StateListDrawableItem_android_drawable +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getUvIndex() +androidx.appcompat.widget.AppCompatButton: int getAutoSizeStepGranularity() +com.google.android.material.R$color: int material_timepicker_modebutton_tint +james.adaptiveicon.R$style: int Widget_AppCompat_Button_Borderless +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setCo(java.lang.String) +androidx.constraintlayout.widget.R$color: int bright_foreground_inverse_material_light +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_BOOT_ANIM +retrofit2.Platform$Android$MainThreadExecutor: android.os.Handler handler +okio.Sink: void close() +com.google.android.material.appbar.CollapsingToolbarLayout: java.lang.CharSequence getTitle() +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDaylight(boolean) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.R$bool: int cpv_default_is_indeterminate +cyanogenmod.app.PartnerInterface: cyanogenmod.app.IPartnerInterface getService() +androidx.constraintlayout.widget.R$attr: int textAppearanceLargePopupMenu +wangdaye.com.geometricweather.R$attr: int actionBarWidgetTheme +wangdaye.com.geometricweather.R$attr: int customStringValue +okhttp3.CertificatePinner$Builder: CertificatePinner$Builder() +com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_Tooltip +com.google.android.material.R$attr: int clickAction +androidx.recyclerview.R$id: int icon_group +com.google.android.material.circularreveal.CircularRevealLinearLayout: CircularRevealLinearLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog_Alert +cyanogenmod.externalviews.KeyguardExternalView$3: int val$width +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModePasteDrawable +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback(retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter,java.util.concurrent.CompletableFuture) +com.google.android.material.R$style: int Theme_MaterialComponents_NoActionBar +com.google.android.material.R$layout: int test_toolbar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial Imperial +com.turingtechnologies.materialscrollbar.R$attr: int logo +okio.BufferedSource: void readFully(okio.Buffer,long) +com.xw.repo.bubbleseekbar.R$attr: int windowFixedWidthMinor +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat +cyanogenmod.hardware.CMHardwareManager: int[] getVibratorIntensityArray() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText +com.google.android.material.R$id: int mtrl_calendar_days_of_week +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_summaryOff +androidx.appcompat.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Name +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerComplete() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeApparentTemperature() +com.google.android.material.tabs.TabLayout: void setInlineLabel(boolean) +cyanogenmod.app.Profile: java.util.UUID mUuid +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_color +com.google.android.material.card.MaterialCardView: android.graphics.RectF getBoundsAsRectF() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: AccuCurrentResult() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric +wangdaye.com.geometricweather.R$layout: int dialog_resident_location +cyanogenmod.app.Profile: void setProfileType(int) +androidx.appcompat.R$styleable: int AppCompatTextView_drawableTopCompat +com.turingtechnologies.materialscrollbar.R$attr: int msb_lightOnTouch +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Light +io.reactivex.Observable: io.reactivex.Observable skip(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$styleable: int SwitchCompat_switchTextAppearance +com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_DIGIT +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar +okhttp3.internal.connection.ConnectionSpecSelector: okhttp3.ConnectionSpec configureSecureSocket(javax.net.ssl.SSLSocket) +com.google.android.material.R$dimen: int abc_action_button_min_width_material +androidx.constraintlayout.widget.R$attr: int windowNoTitle +io.reactivex.Observable: io.reactivex.Observable retry(long) +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$002(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display2 +androidx.constraintlayout.utils.widget.ImageFilterView: void setBrightness(float) +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int consumed +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarStyle +com.xw.repo.bubbleseekbar.R$attr: int bsb_rtl +wangdaye.com.geometricweather.R$string: int wind_8 +wangdaye.com.geometricweather.R$dimen: int design_navigation_icon_padding +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textColorSearchUrl +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_backgroundSplit +wangdaye.com.geometricweather.R$layout: int cpv_color_item_square +james.adaptiveicon.R$id: int spacer +com.xw.repo.bubbleseekbar.R$attr: int buttonPanelSideLayout +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +com.turingtechnologies.materialscrollbar.R$attr: int actionMenuTextColor +com.google.android.material.R$styleable: int[] StateListDrawableItem +wangdaye.com.geometricweather.common.basic.models.weather.Daily: long getTime() +wangdaye.com.geometricweather.R$drawable: int design_ic_visibility_off +wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_top_start +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onComplete() +androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_material +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitle +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_Underlined +androidx.preference.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle[] values() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitation(java.lang.Float) +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +android.didikee.donate.R$id: int select_dialog_listview +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +com.amap.api.location.DPoint: DPoint(double,double) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric() +androidx.hilt.lifecycle.R$attr: int alpha +wangdaye.com.geometricweather.R$id: int currentLocationButton +androidx.viewpager.R$dimen: int compat_button_inset_horizontal_material +androidx.appcompat.R$dimen: int abc_text_size_display_1_material +androidx.constraintlayout.widget.R$dimen: int abc_text_size_small_material +androidx.lifecycle.Lifecycling: Lifecycling() +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +androidx.appcompat.R$styleable: int ActionBar_displayOptions +retrofit2.http.Part: java.lang.String value() +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfile +androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy[] values() +com.bumptech.glide.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWindLevel() +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType MAPABC +androidx.hilt.lifecycle.R$id: int tag_transition_group +cyanogenmod.app.IProfileManager: boolean profileExists(android.os.ParcelUuid) +wangdaye.com.geometricweather.R$integer: int cpv_default_anim_sync_duration +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_TextView_SpinnerItem +androidx.appcompat.R$id: int progress_horizontal +io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,int) +wangdaye.com.geometricweather.R$attr: int buttonBarPositiveButtonStyle +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void complete() +android.didikee.donate.R$styleable: int MenuView_android_itemTextAppearance +com.google.android.material.R$styleable: int KeyTimeCycle_transitionEasing +cyanogenmod.weatherservice.ServiceRequest +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_16dp +androidx.preference.R$color: int bright_foreground_material_light +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +wangdaye.com.geometricweather.db.entities.HourlyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +okhttp3.ConnectionPool: int idleConnectionCount() +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String saint +wangdaye.com.geometricweather.R$styleable: int[] View +io.reactivex.internal.util.NotificationLite$DisposableNotification: long serialVersionUID +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColorHint +com.bumptech.glide.load.engine.GlideException: void printStackTrace(java.io.PrintWriter) +okhttp3.internal.http2.Header: okio.ByteString TARGET_METHOD +io.reactivex.internal.schedulers.AbstractDirectTask: java.util.concurrent.FutureTask FINISHED +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: java.lang.Object enterTransform(java.lang.Object) +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceLargePopupMenu +cyanogenmod.app.ThemeVersion$ComponentVersion: int getMinVersion() +androidx.preference.R$attr: int actionOverflowButtonStyle +com.google.android.material.R$styleable: int ConstraintSet_transitionEasing +wangdaye.com.geometricweather.settings.dialogs.TimeSetterDialog +com.xw.repo.bubbleseekbar.R$dimen: int abc_switch_padding +androidx.constraintlayout.widget.R$id: int action_container +com.google.android.material.R$styleable: int MenuItem_android_checked +com.google.android.material.R$styleable: int BottomAppBar_fabCradleMargin +wangdaye.com.geometricweather.R$drawable: int weather_fog_pixel +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State calculateTargetState(androidx.lifecycle.LifecycleObserver) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial +androidx.hilt.R$styleable: int FragmentContainerView_android_tag +com.amap.api.location.AMapLocation: int ERROR_CODE_UNKNOWN +com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Light_Dialog +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceCaption +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: java.lang.String Unit +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +android.didikee.donate.R$attr: int listDividerAlertDialog +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int LIGHT_SNOW_SHOWERS +android.didikee.donate.R$dimen: int abc_control_padding_material +com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_layout +okio.RealBufferedSource$1: java.lang.String toString() +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentStyle +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_suggestionRowLayout +com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float snowPrecipitationProbability +androidx.fragment.R$id: int accessibility_custom_action_1 +wangdaye.com.geometricweather.R$anim: int popup_hide +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DarkActionBar +androidx.recyclerview.R$layout: int notification_template_part_time +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSearchResultSubtitle +com.google.android.material.R$id: int labeled +cyanogenmod.externalviews.KeyguardExternalView: void executeQueue() +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language PORTUGUESE_BR +androidx.activity.R$styleable: int GradientColor_android_type +com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabTextColors() +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTemperature(android.content.Context,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +com.turingtechnologies.materialscrollbar.R$attr: int checkedIcon +androidx.preference.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.util.Date getDate() +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_customNavigationLayout +androidx.viewpager2.R$id: int accessibility_custom_action_14 +com.jaredrummler.android.colorpicker.R$dimen: int notification_small_icon_size_as_large +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: org.reactivestreams.Subscriber mSubscriber +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LIVE_LOCK_SCREEN_THUMBNAIL +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabText +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCollapsedPaddingTop +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_hideOnContentScroll +cyanogenmod.themes.IThemeService$Stub: IThemeService$Stub() +cyanogenmod.power.PerformanceManager: boolean getProfileHasAppProfiles(int) +cyanogenmod.media.MediaRecorder: java.lang.String EXTRA_CURRENT_PACKAGE_NAME +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: java.util.ArrayDeque buffers +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.Object clone() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25 pm25 +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeColor(int) +com.google.android.material.R$attr: int fabCradleRoundedCornerRadius +wangdaye.com.geometricweather.R$id: int material_minute_tv +androidx.vectordrawable.R$id: int accessibility_custom_action_17 +com.turingtechnologies.materialscrollbar.R$attr: int homeLayout +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarButtonStyle +okhttp3.RealCall$1: void timedOut() +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationX +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor valueOf(java.lang.String) +androidx.constraintlayout.widget.R$id: int shortcut +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Spinner_Underlined +androidx.constraintlayout.widget.R$styleable: int[] ActivityChooserView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setZh_CN(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_menu +retrofit2.ParameterHandler +wangdaye.com.geometricweather.db.entities.DaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) +cyanogenmod.providers.CMSettings$Secure: boolean shouldInterceptSystemProvider(java.lang.String) +okhttp3.OkHttpClient$1: boolean equalsNonHost(okhttp3.Address,okhttp3.Address) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position +android.didikee.donate.R$dimen: int notification_subtext_size +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicReference upstream +com.xw.repo.bubbleseekbar.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.R$styleable: int Transition_autoTransition +androidx.coordinatorlayout.R$id: int notification_main_column_container +com.jaredrummler.android.colorpicker.R$attr: int titleTextColor +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_PrimarySurface +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_creator +androidx.preference.R$styleable: int ListPreference_entries +com.google.android.material.slider.Slider: void setTickTintList(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$attr: int flow_firstHorizontalBias +okhttp3.internal.Util: boolean skipAll(okio.Source,int,java.util.concurrent.TimeUnit) +androidx.viewpager.widget.ViewPager: int getPageMargin() +androidx.appcompat.R$styleable: int MenuGroup_android_enabled +com.google.android.material.appbar.MaterialToolbar: void setElevation(float) +wangdaye.com.geometricweather.R$attr: int flow_verticalAlign +com.google.android.material.textfield.TextInputLayout: void setHintEnabled(boolean) +wangdaye.com.geometricweather.R$styleable: int Chip_textStartPadding +com.jaredrummler.android.colorpicker.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String weatherSource +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean getSpeed() +wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_day +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_menuCategory +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform PLATFORM +com.xw.repo.bubbleseekbar.R$attr: int toolbarNavigationButtonStyle +com.amap.api.location.AMapLocation: java.lang.String getFloor() +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Medium_Inverse +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$attr: int titleMarginBottom +com.google.android.material.R$styleable: int Toolbar_titleMarginBottom +androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.google.android.material.R$styleable: int CardView_cardElevation +okhttp3.internal.http2.Http2Reader$Handler: void ping(boolean,int,int) +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor LIGHT +android.support.v4.os.ResultReceiver$MyResultReceiver: ResultReceiver$MyResultReceiver(android.support.v4.os.ResultReceiver) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_maxWidth +cyanogenmod.weather.CMWeatherManager: java.util.Map mWeatherUpdateRequestListeners +com.google.android.material.R$drawable: int abc_btn_colored_material +androidx.constraintlayout.widget.R$id: int contentPanel +com.google.android.material.R$integer: int mtrl_btn_anim_delay_ms +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderLayout +james.adaptiveicon.R$styleable: int AppCompatTheme_colorAccent +androidx.drawerlayout.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$styleable: int ListPreference_android_entries +com.google.android.material.R$drawable: int abc_ab_share_pack_mtrl_alpha +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getHelperText() +com.turingtechnologies.materialscrollbar.R$drawable: int avd_hide_password +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_margin +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver +okhttp3.internal.ws.WebSocketProtocol: java.lang.String ACCEPT_MAGIC +okhttp3.CookieJar$1: java.util.List loadForRequest(okhttp3.HttpUrl) +android.didikee.donate.R$styleable: int MenuGroup_android_checkableBehavior +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float icePrecipitation +james.adaptiveicon.R$styleable: int ActionBar_progressBarStyle +androidx.work.InputMerger: InputMerger() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: int getStatus() +wangdaye.com.geometricweather.R$font: int product_sans_italic +androidx.preference.R$styleable: int GradientColor_android_centerX +retrofit2.Platform: java.lang.reflect.Constructor lookupConstructor +androidx.appcompat.widget.ActionBarContainer +cyanogenmod.app.LiveLockScreenManager: void cancel(int) +james.adaptiveicon.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$drawable: int notif_temp_12 +wangdaye.com.geometricweather.R$attr: int paddingTopNoTitle +com.baidu.location.e.l$b: int e +com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage valueOf(java.lang.String) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_enter +com.google.android.material.R$styleable: int TabLayout_tabGravity +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onPause() +okhttp3.internal.cache.CacheStrategy$Factory: long cacheResponseAge() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String insee +retrofit2.Utils: java.lang.reflect.Type getSupertype(java.lang.reflect.Type,java.lang.Class,java.lang.Class) +androidx.work.R$id: int async +androidx.preference.R$attr: int splitTrack +com.google.android.material.R$color: int mtrl_on_primary_text_btn_text_color_selector +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setOnClickListener(android.view.View$OnClickListener) +wangdaye.com.geometricweather.R$string: int abc_searchview_description_submit +wangdaye.com.geometricweather.R$attr: int cpv_alphaChannelVisible +androidx.viewpager.R$attr: int fontProviderAuthority +james.adaptiveicon.R$attr: int colorControlActivated +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: java.lang.Object v1 +com.google.android.material.textfield.TextInputLayout: void setEndIconCheckable(boolean) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBaseline_creator +android.didikee.donate.R$attr: int showAsAction +androidx.constraintlayout.widget.R$attr: int flow_verticalGap +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getWallpaperThemePackageName() +cyanogenmod.app.ICustomTileListener$Stub +com.google.android.material.R$styleable: int TextAppearance_android_textColorHint +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_dialogTitle +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnLayoutChangeListener(com.google.android.material.snackbar.BaseTransientBottomBar$OnLayoutChangeListener) +androidx.fragment.R$anim: int fragment_open_exit +androidx.lifecycle.MethodCallsLogger: MethodCallsLogger() +okhttp3.ConnectionPool: long keepAliveDurationNs +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_pressedTranslationZ +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Toolbar +androidx.constraintlayout.widget.R$styleable: int Variant_region_widthMoreThan +com.google.android.material.R$styleable: int BottomNavigationView_itemRippleColor +com.google.android.material.R$string: int item_view_role_description +androidx.recyclerview.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$attr: int cpv_startAngle +com.google.android.material.internal.FlowLayout: void setSingleLine(boolean) +androidx.appcompat.R$drawable: int abc_list_longpressed_holo +androidx.constraintlayout.widget.R$attr: int fontProviderQuery +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.Lifecycle mLifecycle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.util.List value +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlActivated +wangdaye.com.geometricweather.R$attr: int autoSizeStepGranularity +androidx.hilt.work.R$id: int title +com.jaredrummler.android.colorpicker.R$id: int transparency_title +io.reactivex.Observable: io.reactivex.Observable startWith(java.lang.Object) +androidx.legacy.coreutils.R$attr: int fontWeight +com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_circle_large +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void cancelRequest(int) +com.google.android.material.R$attr: int shapeAppearanceSmallComponent +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String LongPhrase +com.google.android.material.R$color: int mtrl_chip_close_icon_tint +retrofit2.KotlinExtensions +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getMinutelyEntityList() +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle +com.google.android.gms.base.R$string: int common_signin_button_text_long +cyanogenmod.hardware.ICMHardwareService: java.lang.String getLtoSource() +okhttp3.internal.platform.AndroidPlatform$CloseGuard +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerX +com.google.android.material.R$attr: int layout_constraintBaseline_toBaselineOf +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +androidx.lifecycle.LifecycleRegistry: boolean mNewEventOccurred +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onError(java.lang.Throwable) +androidx.appcompat.R$attr: int actionModeSelectAllDrawable +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox +androidx.viewpager2.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_left_mtrl_dark +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_only_end_selected +com.google.android.material.R$drawable: int notification_bg_low_pressed +androidx.vectordrawable.R$dimen: int notification_large_icon_height +com.jaredrummler.android.colorpicker.R$attr: int expandActivityOverflowButtonDrawable +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA +androidx.transition.R$drawable +androidx.preference.R$bool: int abc_config_actionMenuItemAllCaps +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_tooltipForegroundColor +wangdaye.com.geometricweather.R$attr: int boxBackgroundMode +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String cityId +com.jaredrummler.android.colorpicker.R$attr: int windowNoTitle +androidx.core.R$layout: int notification_template_custom_big +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_MIN_INDEX +wangdaye.com.geometricweather.R$xml: int widget_clock_day_horizontal +cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.CMStatusBarManager sCMStatusBarManagerInstance +androidx.preference.R$style: int Widget_AppCompat_TextView +okio.Options: okio.ByteString[] byteStrings +androidx.fragment.app.Fragment$InstantiationException +androidx.recyclerview.R$color: int notification_icon_bg_color +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$id: int search_src_text +com.google.android.material.R$id: int decelerate +cyanogenmod.providers.CMSettings$2 +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: java.lang.Float max +androidx.appcompat.R$id: int off +androidx.customview.R$styleable: R$styleable() +androidx.appcompat.resources.R$id: int accessibility_custom_action_0 +com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableItem +wangdaye.com.geometricweather.R$array: int precipitation_unit_voices +wangdaye.com.geometricweather.R$styleable: int Spinner_android_prompt +com.google.android.material.internal.CheckableImageButton: void setPressed(boolean) +james.adaptiveicon.R$styleable: int AppCompatTheme_spinnerStyle +io.reactivex.internal.observers.LambdaObserver: boolean hasCustomOnError() +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherText(java.lang.String) +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +okio.ByteString: java.lang.String hex() +okio.ByteString: okio.ByteString md5() +com.google.android.material.R$styleable: int Transition_layoutDuringTransition +wangdaye.com.geometricweather.R$color: int primary_text_default_material_dark +wangdaye.com.geometricweather.R$style: int TestStyleWithThemeLineHeightAttribute +okhttp3.internal.http2.StreamResetException: StreamResetException(okhttp3.internal.http2.ErrorCode) +android.didikee.donate.R$styleable: int SearchView_layout +androidx.hilt.lifecycle.R$id: int blocking +com.google.android.gms.common.internal.zas: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$attr: int cpv_thickness +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: int requestFusion(int) +androidx.preference.R$attr: int listItemLayout +androidx.dynamicanimation.R$styleable: int GradientColor_android_gradientRadius +com.google.android.material.R$styleable: int AppCompatTheme_switchStyle +com.google.android.material.R$styleable: int TextInputLayout_suffixTextColor +com.google.android.material.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.google.android.material.R$styleable: int[] AnimatedStateListDrawableTransition +androidx.appcompat.R$dimen: int notification_action_text_size +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog +com.google.android.material.bottomnavigation.BottomNavigationView: int getItemIconSize() +androidx.appcompat.R$styleable: int AppCompatTheme_actionDropDownStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +cyanogenmod.profiles.LockSettings: void processOverride(android.content.Context,com.android.internal.policy.IKeyguardService) +androidx.constraintlayout.widget.R$styleable: int View_theme +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_onAttachedToWindow +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: boolean inMaybe +androidx.coordinatorlayout.R$layout: R$layout() +io.reactivex.internal.functions.Functions$NaturalComparator +androidx.constraintlayout.widget.R$id: int baseline +io.reactivex.internal.subscriptions.EmptySubscription: boolean isEmpty() +android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Light +okhttp3.internal.ws.WebSocketReader: void readHeader() +androidx.lifecycle.LiveData$LifecycleBoundObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +com.google.android.material.R$attr: int alphabeticModifiers +io.reactivex.disposables.ReferenceDisposable: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Bridge +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupMenu +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_material_light +com.google.android.material.R$styleable: int[] AppCompatSeekBar +wangdaye.com.geometricweather.R$style: int Widget_Design_CollapsingToolbar +com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HOT +wangdaye.com.geometricweather.R$layout: int cpv_dialog_color_picker +okhttp3.internal.http1.Http1Codec: okhttp3.OkHttpClient client +com.google.android.material.chip.Chip: void setCheckableResource(int) +androidx.constraintlayout.widget.R$color: int secondary_text_disabled_material_light +androidx.lifecycle.LifecycleRegistry: void sync() +androidx.core.R$styleable: int GradientColor_android_gradientRadius +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function6) +androidx.preference.R$styleable: int ViewStubCompat_android_layout +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_updatesContinuously +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_font +androidx.preference.R$styleable: int Toolbar_logo +com.google.android.material.tabs.TabLayout: void setTabTextColors(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: AccuCurrentResult$WindGust$Speed$Imperial() +com.xw.repo.bubbleseekbar.R$integer: int abc_config_activityDefaultDur +com.xw.repo.bubbleseekbar.R$color: int primary_dark_material_dark +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeDegreeDayTemperature +io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper valueOf(java.lang.String) +androidx.appcompat.widget.AppCompatEditText: void setBackgroundDrawable(android.graphics.drawable.Drawable) +com.loc.k: java.lang.String d +androidx.appcompat.widget.AppCompatButton: int getAutoSizeTextType() +androidx.appcompat.view.menu.ListMenuItemView: void setCheckable(boolean) +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_padding_end_material +android.didikee.donate.R$style: int Widget_AppCompat_ActionButton +androidx.loader.content.Loader: void registerOnLoadCanceledListener(androidx.loader.content.Loader$OnLoadCanceledListener) +okhttp3.logging.LoggingEventListener: void secureConnectStart(okhttp3.Call) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String co +androidx.work.R$style: int TextAppearance_Compat_Notification_Line2 +com.amap.api.location.AMapLocationClientOption: void setOpenAlwaysScanWifi(boolean) +wangdaye.com.geometricweather.R$attr: int allowDividerBelow +android.support.v4.app.INotificationSideChannel$Stub$Proxy: void cancelAll(java.lang.String) +wangdaye.com.geometricweather.main.utils.MainPalette: android.os.Parcelable$Creator CREATOR +okhttp3.internal.http.HttpMethod: HttpMethod() +androidx.hilt.work.R$id: int forever +wangdaye.com.geometricweather.R$string: int key_dark_mode +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_title +android.didikee.donate.R$styleable: int ActionBar_progressBarPadding +okhttp3.internal.http1.Http1Codec$FixedLengthSink: void close() +androidx.viewpager2.R$id: int tag_accessibility_clickable_spans +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) +com.google.android.material.R$attr: int tabUnboundedRipple +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life life +androidx.transition.R$styleable: int GradientColor_android_tileMode +androidx.appcompat.widget.AppCompatSpinner$SavedState +androidx.cardview.widget.CardView: int getContentPaddingTop() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +androidx.constraintlayout.widget.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature ApparentTemperature +com.google.android.material.internal.CheckableImageButton: void setPressable(boolean) +wangdaye.com.geometricweather.R$string: int phase_first +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onWindowAttributesChanged(android.view.WindowManager$LayoutParams) +androidx.loader.R$styleable: int GradientColor_android_endX +io.reactivex.internal.observers.DeferredScalarDisposable: int TERMINATED +androidx.vectordrawable.R$id: int accessibility_custom_action_12 +james.adaptiveicon.R$styleable: int ActionBar_title +com.google.android.material.R$dimen: int design_fab_elevation +androidx.coordinatorlayout.R$id: int accessibility_custom_action_27 +androidx.legacy.coreutils.R$styleable: int GradientColor_android_startColor +androidx.drawerlayout.R$dimen: int notification_top_pad +com.github.rahatarmanahmed.cpv.CircularProgressView: float initialStartAngle +com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextColor +cyanogenmod.app.ThemeVersion$ComponentVersion: cyanogenmod.app.ThemeComponent component +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: java.lang.String Unit +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric Metric +androidx.preference.R$attr: int subtitle +androidx.viewpager2.R$id: int item_touch_helper_previous_elevation +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getDailyForecast() +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean disposed +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat PREFER_ARGB_8888 +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_Solid +com.turingtechnologies.materialscrollbar.R$integer: int abc_config_activityShortDur +com.google.android.material.textfield.TextInputLayout: int getCounterMaxLength() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonPhaseAngle(java.lang.Integer) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Level +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf +io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged(io.reactivex.functions.BiPredicate) +com.google.android.material.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$string: int abc_capital_off +androidx.appcompat.R$id: int scrollIndicatorDown +com.google.android.material.R$dimen: int mtrl_calendar_pre_l_text_clip_padding +androidx.recyclerview.R$styleable: int FontFamilyFont_font +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_allowPresets +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: java.util.List rainForecasts +com.google.android.material.stateful.ExtendableSavedState +com.amap.api.fence.GeoFence: int STATUS_OUT +retrofit2.http.DELETE +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: int uv +cyanogenmod.hardware.CMHardwareManager: int FEATURE_TAP_TO_WAKE +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource DATA_DISK_CACHE +com.bumptech.glide.R$styleable: int GradientColor_android_endY +okio.Buffer: okio.Buffer readFrom(java.io.InputStream,long) +james.adaptiveicon.R$style: int Base_V26_Theme_AppCompat_Light +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float ceiling +cyanogenmod.providers.CMSettings$System: java.lang.String BACK_WAKE_SCREEN +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ListView_DropDown +okhttp3.internal.http.HttpCodec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_77 +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_elevation +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_Switch +androidx.appcompat.R$styleable: int Spinner_android_popupBackground +com.jaredrummler.android.colorpicker.R$id: int shortcut +okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallbackPossible +okhttp3.internal.Util: java.util.concurrent.ThreadFactory threadFactory(java.lang.String,boolean) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_LOW_POWER_VALIDATOR +androidx.appcompat.R$styleable: int AppCompatTheme_colorControlNormal +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void addLast(io.reactivex.internal.operators.observable.ObservableReplay$Node) +cyanogenmod.hardware.CMHardwareManager: int[] getDisplayColorCalibration() +okhttp3.HttpUrl: java.net.URI uri() +androidx.preference.R$style: int TextAppearance_Compat_Notification_Title +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.ChineseCityEntity) +androidx.appcompat.R$attr: int drawableRightCompat +com.google.android.material.R$color: int abc_btn_colored_text_material +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.R$attr: int scrimAnimationDuration +com.google.android.material.R$styleable: int TextInputLayout_helperText +com.google.android.material.R$styleable: int KeyTimeCycle_waveShape +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: CaiYunMainlyResult$ForecastDailyBean() +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_Chip +retrofit2.OkHttpCall: okhttp3.Call getRawCall() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: long beginTime +wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar +com.google.android.material.R$styleable: int BottomNavigationView_itemBackground +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextStyle +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.subjects.UnicastSubject window +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +com.google.android.material.R$animator: int mtrl_extended_fab_change_size_collapse_motion_spec +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_36dp +wangdaye.com.geometricweather.R$animator: int weather_haze_3 +james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogStyle +com.jaredrummler.android.colorpicker.R$styleable: int RecycleListView_paddingBottomNoButtons +com.baidu.location.e.l$b: com.baidu.location.e.l$b[] values() +androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$id: int action_text +wangdaye.com.geometricweather.R$color: int colorSearchBarBackground_dark +com.google.android.material.card.MaterialCardView: float getRadius() +androidx.constraintlayout.widget.R$styleable: int Constraint_android_maxHeight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getAlertId() +okhttp3.CookieJar: java.util.List loadForRequest(okhttp3.HttpUrl) +com.xw.repo.bubbleseekbar.R$attr: int iconTintMode +androidx.constraintlayout.widget.R$attr: int telltales_tailColor +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onDetach() +androidx.activity.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setSnowPrecipitationProbability(java.lang.Float) +wangdaye.com.geometricweather.R$layout: int container_main_aqi +wangdaye.com.geometricweather.settings.fragments.AbstractSettingsFragment +com.google.android.material.R$styleable: int TextInputLayout_prefixTextAppearance +com.google.android.material.R$attr: int enforceMaterialTheme +com.jaredrummler.android.colorpicker.R$layout: int cpv_color_item_circle +com.google.android.material.R$string: int material_clock_toggle_content_description +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_always_show_bubble_delay +okhttp3.Headers +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startY +cyanogenmod.profiles.RingModeSettings: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarDivider +androidx.work.R$styleable: int GradientColor_android_centerColor +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_gradientRadius +androidx.appcompat.R$drawable: int abc_btn_radio_to_on_mtrl_000 +okio.RealBufferedSink: okio.BufferedSink writeUtf8CodePoint(int) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Medium +androidx.appcompat.R$id: int accessibility_custom_action_5 +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_material_light +retrofit2.Retrofit: retrofit2.CallAdapter nextCallAdapter(retrofit2.CallAdapter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[]) +androidx.transition.R$dimen: int notification_media_narrow_margin androidx.hilt.lifecycle.R$drawable: int notification_bg_low -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_COLOR -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max -io.reactivex.Observable: io.reactivex.Maybe singleElement() -com.google.android.material.R$attr: int onHide -androidx.lifecycle.Lifecycling: int resolveObserverCallbackType(java.lang.Class) -com.google.android.material.R$layout: int test_design_radiobutton -com.jaredrummler.android.colorpicker.R$id: int circle -androidx.appcompat.widget.AppCompatRadioButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_numericModifiers -androidx.viewpager.R$drawable: int notify_panel_notification_icon_bg -com.bumptech.glide.R$id: int async -wangdaye.com.geometricweather.R$anim: int design_snackbar_in -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber this$1 -androidx.preference.R$styleable: int StateListDrawable_android_constantSize -androidx.appcompat.R$style: int Widget_AppCompat_ActionButton -cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_ACCESS -wangdaye.com.geometricweather.R$attr: int passwordToggleTint -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_processWeatherUpdateRequest_0 -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dark -androidx.preference.R$style: int Theme_AppCompat_NoActionBar -androidx.appcompat.R$layout: int notification_template_custom_big -androidx.lifecycle.extensions.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$attr: int barrierAllowsGoneWidgets -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endX -androidx.appcompat.widget.SearchView: int getSuggestionCommitIconResId() -com.baidu.location.e.l$b: int i -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle -com.turingtechnologies.materialscrollbar.R$attr: int logoDescription -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Caption -androidx.fragment.R$drawable: int notification_template_icon_low_bg -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void clear() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_z -android.didikee.donate.R$styleable: int Spinner_android_prompt -retrofit2.Response: okhttp3.Response raw() -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String access$300(cyanogenmod.app.Profile$ProfileTrigger) -cyanogenmod.weather.WeatherInfo$DayForecast: boolean equals(java.lang.Object) -androidx.lifecycle.LiveData: int mVersion -androidx.preference.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -com.google.android.material.R$dimen: int mtrl_textinput_box_label_cutout_padding -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setZenModeWithDuration -okio.Segment: okio.Segment next -androidx.preference.R$attr: int textAppearanceSearchResultTitle -okio.SegmentedByteString: okio.ByteString md5() -androidx.hilt.lifecycle.R$id: int line3 -com.google.android.material.internal.ForegroundLinearLayout: int getForegroundGravity() -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void applyAndAckSettings(boolean,okhttp3.internal.http2.Settings) -com.google.android.material.R$id: int aligned -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar -android.didikee.donate.R$string: int abc_capital_off -wangdaye.com.geometricweather.R$styleable: int[] MultiSelectListPreference -wangdaye.com.geometricweather.R$layout: int notification_base -androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl -james.adaptiveicon.R$id: R$id() -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindTitle -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.Integer alti -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat -com.bumptech.glide.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.coordinatorlayout.R$id: int accessibility_custom_action_17 -okio.ForwardingTimeout: okio.Timeout deadlineNanoTime(long) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.concurrent.atomic.AtomicReference error -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_translation_z_pressed -android.support.v4.os.ResultReceiver: void onReceiveResult(int,android.os.Bundle) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification -com.google.android.material.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.preference.R$dimen: int abc_text_size_display_1_material -android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light -wangdaye.com.geometricweather.R$id: int text_input_error_icon -okhttp3.internal.cache.CacheStrategy: okhttp3.Request networkRequest -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer ragweedLevel -com.google.android.material.R$dimen: int design_snackbar_extra_spacing_horizontal -wangdaye.com.geometricweather.R$attr: int drawPath -wangdaye.com.geometricweather.R$id: int widget_week_temp_2 -com.google.android.material.R$styleable: int AppCompatTextView_fontVariationSettings -wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundTodayForecastUpdateService: Hilt_ForegroundTodayForecastUpdateService() -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String description -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial -retrofit2.http.Path: java.lang.String value() -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust -cyanogenmod.app.CMContextConstants: java.lang.String CM_TELEPHONY_MANAGER_SERVICE -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date getPublishDate() -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: CompositeException$CompositeExceptionCausalChain() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -com.google.android.material.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ChipGroup -cyanogenmod.providers.DataUsageContract: java.lang.String SLOW_SAMPLES -okhttp3.internal.http2.Http2Connection: java.util.Set currentPushRequests -androidx.activity.R$id: int blocking -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabStyle -com.bumptech.glide.R$dimen: int compat_button_padding_vertical_material -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar_Small -wangdaye.com.geometricweather.R$id: int animateToStart -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_popupTheme -androidx.appcompat.R$color: int abc_hint_foreground_material_dark -androidx.legacy.coreutils.R$id: int tag_unhandled_key_listeners -androidx.viewpager2.R$attr -androidx.constraintlayout.widget.R$attr: int mock_labelColor -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -cyanogenmod.app.Profile: java.lang.String TAG -androidx.recyclerview.R$dimen: int item_touch_helper_swipe_escape_velocity -com.google.android.material.R$color: int material_on_background_emphasis_high_type -androidx.cardview.R$attr: int cardBackgroundColor -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Subhead -androidx.hilt.work.R$anim: int fragment_open_exit -com.google.android.material.slider.Slider: void setEnabled(boolean) -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.ICMWeatherManager sWeatherManagerService -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: java.util.concurrent.atomic.AtomicReference upstream -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onListenerConnected() -androidx.hilt.work.R$color: int ripple_material_light -androidx.appcompat.R$styleable: int StateListDrawable_android_visible -wangdaye.com.geometricweather.R$id: int snackbar_text -com.xw.repo.bubbleseekbar.R$attr: int layout_dodgeInsetEdges -wangdaye.com.geometricweather.R$color: int androidx_core_secondary_text_default_material_light -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_behavior -okhttp3.internal.connection.RealConnection: okio.BufferedSink sink -com.jaredrummler.android.colorpicker.R$id: int action_bar_spinner -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_switchStyle -androidx.viewpager2.R$styleable: int RecyclerView_stackFromEnd -com.google.android.material.R$animator: int mtrl_chip_state_list_anim -com.google.android.material.R$attr: int tabIndicatorColor -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Tooltip -androidx.preference.R$styleable: int Preference_android_singleLineTitle -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int dialog_background -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_ellipsize -wangdaye.com.geometricweather.R$styleable: int MaterialRadioButton_buttonTint -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1 -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: long serialVersionUID -com.google.android.material.R$style: int Theme_AppCompat_Light -androidx.annotation.Keep -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_orientation -androidx.appcompat.widget.SwitchCompat: void setSplitTrack(boolean) -okhttp3.internal.Util -com.google.android.material.R$interpolator: int mtrl_fast_out_slow_in -androidx.transition.R$dimen: int compat_control_corner_material -okhttp3.internal.Internal: okhttp3.Call newWebSocketCall(okhttp3.OkHttpClient,okhttp3.Request) -io.reactivex.Observable: io.reactivex.Observable doOnLifecycle(io.reactivex.functions.Consumer,io.reactivex.functions.Action) -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_item_horizontal_padding -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onNext(java.lang.Object) -androidx.lifecycle.MutableLiveData: MutableLiveData() -com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context) -androidx.preference.R$attr: int ttcIndex -wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardContainer -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: ObservableDebounceTimed$DebounceEmitter(java.lang.Object,long,io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceTimedObserver) -com.google.android.material.R$attr: int closeIconTint -androidx.preference.R$style: int Base_Theme_AppCompat_Dialog -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_maxButtonHeight -com.google.android.material.R$style: int Widget_MaterialComponents_TextView -com.google.android.material.button.MaterialButton: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric -androidx.constraintlayout.widget.R$styleable: int[] MotionLayout -cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_WEATHER_MANAGER -com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_800 -com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -androidx.appcompat.R$styleable: int AppCompatTextView_drawableBottomCompat -com.google.android.material.R$dimen: int material_clock_hand_center_dot_radius -okhttp3.internal.http2.Http2Connection$5: Http2Connection$5(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,java.util.List,boolean) -cyanogenmod.app.LiveLockScreenInfo: void cloneInto(cyanogenmod.app.LiveLockScreenInfo) -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: ObservableUnsubscribeOn$UnsubscribeObserver(io.reactivex.Observer,io.reactivex.Scheduler) -androidx.hilt.lifecycle.R$styleable: int FragmentContainerView_android_tag -com.xw.repo.bubbleseekbar.R$color: int primary_material_light -james.adaptiveicon.R$styleable: int MenuItem_android_onClick -james.adaptiveicon.R$style: int Theme_AppCompat_NoActionBar -com.jaredrummler.android.colorpicker.R$attr: int progressBarPadding -io.reactivex.internal.operators.observable.ObserverResourceWrapper: io.reactivex.Observer downstream -androidx.viewpager.R$integer -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: MfHistoryResult$History$Temperature() -androidx.recyclerview.R$id: int action_image -wangdaye.com.geometricweather.background.receiver.MainReceiver -com.jaredrummler.android.colorpicker.R$attr: int actionMenuTextColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: int UnitType -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_toBottomOf -wangdaye.com.geometricweather.R$id: int pin -com.google.android.material.R$attr: int startIconContentDescription -androidx.appcompat.R$style: int Base_Theme_AppCompat_DialogWhenLarge -cyanogenmod.app.IProfileManager: boolean addProfile(cyanogenmod.app.Profile) -wangdaye.com.geometricweather.R$attr: int cpv_showOldColor -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_maxWidth -androidx.appcompat.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer relativeHumidity -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabAnimationMode -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: int UnitType -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: java.lang.String English -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_28 -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -androidx.preference.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +com.turingtechnologies.materialscrollbar.R$color: int ripple_material_dark +androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Time +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModePasteDrawable +com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_weight +okhttp3.internal.tls.BasicTrustRootIndex: int hashCode() +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.preference.R$dimen: int abc_action_bar_overflow_padding_end_material +androidx.constraintlayout.widget.R$styleable: int Motion_motionStagger +com.google.android.material.R$dimen: int design_navigation_elevation +com.google.android.material.datepicker.PickerFragment +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: ObservableMergeWithCompletable$MergeWithObserver(io.reactivex.Observer) +androidx.preference.R$color: int error_color_material_dark +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onComplete() +com.google.android.material.R$styleable: int MaterialCalendar_android_windowFullscreen +cyanogenmod.app.StatusBarPanelCustomTile: int describeContents() +cyanogenmod.providers.CMSettings$Secure: int getInt(android.content.ContentResolver,java.lang.String) +com.github.rahatarmanahmed.cpv.CircularProgressView$9: void onAnimationUpdate(android.animation.ValueAnimator) +com.jaredrummler.android.colorpicker.R$attr: int ttcIndex +cyanogenmod.weather.RequestInfo$Builder: android.location.Location mLocation +androidx.constraintlayout.widget.R$styleable: int[] DrawerArrowToggle +androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context,android.util.AttributeSet,int) +okio.Okio: okio.Sink sink(java.nio.file.Path,java.nio.file.OpenOption[]) +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult +androidx.loader.R$color: int secondary_text_default_material_light +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int limit +androidx.fragment.R$styleable: R$styleable() +androidx.appcompat.widget.ActionBarOverlayLayout: int getNestedScrollAxes() +android.didikee.donate.R$styleable: int MenuItem_android_checked +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7 +retrofit2.RequestFactory: retrofit2.RequestFactory parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method) +com.google.android.material.slider.RangeSlider: void setTickActiveTintList(android.content.res.ColorStateList) +com.google.android.material.R$attr: int isMaterialTheme +androidx.appcompat.R$attr: int alphabeticModifiers +androidx.appcompat.widget.FitWindowsLinearLayout +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +com.google.android.material.R$styleable: int Tooltip_android_padding +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_focused_holo +com.google.android.material.R$drawable: int tooltip_frame_dark +com.xw.repo.bubbleseekbar.R$attr: int actionBarSize +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderQuery +androidx.hilt.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.UV getUV() +wangdaye.com.geometricweather.R$drawable: int notif_temp_56 +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteInTxArray +androidx.fragment.R$dimen: int compat_notification_large_icon_max_height +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +com.google.android.material.R$styleable: int Chip_android_textColor +wangdaye.com.geometricweather.R$drawable: int ic_exercise +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayColorCalibration(int[]) +androidx.preference.R$style: int Base_AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int Variant_region_widthMoreThan +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_track_mtrl_alpha +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Time +retrofit2.Call +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeCloudCover +androidx.coordinatorlayout.widget.CoordinatorLayout: void setFitsSystemWindows(boolean) +cyanogenmod.weather.WeatherLocation: android.os.Parcelable$Creator CREATOR +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int tabPaddingStart +android.didikee.donate.R$dimen: int abc_switch_padding +androidx.constraintlayout.widget.R$attr: int motionTarget +okhttp3.HttpUrl: java.util.List queryNamesAndValues +com.xw.repo.bubbleseekbar.R$attr: int actionModeStyle +androidx.legacy.coreutils.R$integer: R$integer() +io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.ObservableSource) +androidx.constraintlayout.widget.R$drawable: int notification_bg_normal_pressed +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_textAppearance +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getUvIndex() +wangdaye.com.geometricweather.R$string: int content_des_pm25 +james.adaptiveicon.R$attr: int alertDialogButtonGroupStyle +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: float getSpeed(float) +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontVariationSettings +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) +com.google.android.material.R$styleable: int Transform_android_translationX +com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog_Alert +androidx.viewpager.R$styleable: int FontFamily_fontProviderCerts +com.jaredrummler.android.colorpicker.R$attr: int dialogPreferredPadding +com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay_v14_Material +com.google.android.material.R$styleable: int AlertDialog_android_layout +retrofit2.DefaultCallAdapterFactory$1: retrofit2.Call adapt(retrofit2.Call) +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +androidx.loader.R$dimen: int notification_main_column_padding_top +com.google.android.material.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +androidx.appcompat.R$attr: int windowFixedHeightMajor +james.adaptiveicon.R$styleable: int Toolbar_logoDescription +com.google.android.material.bottomnavigation.BottomNavigationPresenter$SavedState: android.os.Parcelable$Creator CREATOR +android.didikee.donate.R$dimen: int abc_control_inset_material +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_menu +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha +com.google.android.material.R$color: int material_deep_teal_200 +com.google.android.material.R$attr: int triggerSlack +okhttp3.Handshake: Handshake(okhttp3.TlsVersion,okhttp3.CipherSuite,java.util.List,java.util.List) +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level[] values() +retrofit2.RequestFactory$Builder: java.lang.String httpMethod +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HEAVY_SNOW +androidx.loader.R$string: R$string() +androidx.preference.R$styleable: int AppCompatTheme_actionModeCloseDrawable +wangdaye.com.geometricweather.R$layout: int widget_week +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void collapseNotificationPanel() +android.didikee.donate.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionState(android.os.Bundle) +com.jaredrummler.android.colorpicker.R$attr: int actionModeWebSearchDrawable +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight +androidx.viewpager2.R$id +com.xw.repo.bubbleseekbar.R$attr: int bsb_show_progress_in_float +com.jaredrummler.android.colorpicker.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Circular +androidx.appcompat.R$id: int image +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_height +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +james.adaptiveicon.R$layout: int abc_search_dropdown_item_icons_2line +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +com.google.android.material.R$style: int TestThemeWithLineHeight +com.google.android.material.R$dimen: int design_bottom_navigation_active_text_size +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_75 +retrofit2.KotlinExtensions$awaitResponse$2$2: void onFailure(retrofit2.Call,java.lang.Throwable) +wangdaye.com.geometricweather.R$string: int feedback_refresh_notification_now +androidx.loader.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.R$drawable: int notif_temp_13 +androidx.multidex.MultiDexExtractor$ExtractedDex +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf +androidx.preference.R$layout: int preference_widget_seekbar +cyanogenmod.weather.WeatherLocation: java.lang.String mCityId +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitationDuration +wangdaye.com.geometricweather.R$drawable: int ic_play_store +okhttp3.internal.platform.Jdk9Platform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) +wangdaye.com.geometricweather.R$attr: int coordinatorLayoutStyle +wangdaye.com.geometricweather.R$id: int icon_only +okhttp3.OkHttpClient: okhttp3.CookieJar cookieJar() +com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuGroup +androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$integer: int mtrl_tab_indicator_anim_duration_ms +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_subhead_material +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_material_dark +androidx.vectordrawable.R$id: int info +okhttp3.internal.http2.Hpack$Writer: void writeByteString(okio.ByteString) +androidx.appcompat.R$dimen: int compat_control_corner_material +androidx.preference.R$attr: int actionModeSelectAllDrawable +androidx.constraintlayout.widget.R$dimen: int notification_big_circle_margin +androidx.appcompat.R$color: int button_material_dark +androidx.appcompat.R$dimen: int abc_button_padding_vertical_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: AccuCurrentResult$Ceiling$Metric() +com.baidu.location.e.h$a: com.baidu.location.e.h$a a +androidx.constraintlayout.widget.R$dimen: int abc_switch_padding +androidx.constraintlayout.widget.R$styleable: int Constraint_android_elevation +androidx.recyclerview.R$styleable: int GradientColor_android_centerX +com.jaredrummler.android.colorpicker.R$style: int Preference_DropDown +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: androidx.core.graphics.PathParser$PathDataNode[] getPathData() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.util.Date EndTime +cyanogenmod.themes.ThemeManager: void logThemeServiceException(java.lang.Exception) +com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void dispose() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments text +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro sun() +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeightLarge +androidx.preference.R$style: int TextAppearance_AppCompat_Subhead_Inverse +okhttp3.Cookie: long expiresAt +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int TORNADO +com.google.android.material.R$attr: int flow_firstVerticalStyle +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_summaryOn +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabStyle +wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_descendantFocusability +cyanogenmod.app.Profile: void validateRingtones(android.content.Context) +okhttp3.Request$Builder: okhttp3.Request$Builder tag(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingRight +com.turingtechnologies.materialscrollbar.R$integer: int design_snackbar_text_max_lines +androidx.preference.R$style: int Widget_AppCompat_EditText +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer degreeDayTemperature +com.turingtechnologies.materialscrollbar.R$attr: int behavior_autoHide +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_liftOnScroll +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void dispose() +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_2 +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeSplitBackground +wangdaye.com.geometricweather.R$id: int scrollIndicatorDown +com.bumptech.glide.R$styleable: int FontFamily_fontProviderCerts +android.didikee.donate.R$drawable: int abc_list_selector_disabled_holo_dark +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetEnd +wangdaye.com.geometricweather.db.entities.DailyEntity: void setAqiText(java.lang.String) +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type getRawType() +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.work.R$id: int time +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: double Latitude +androidx.preference.R$styleable: int AppCompatTheme_windowActionBar +com.turingtechnologies.materialscrollbar.R$id: int design_navigation_view +wangdaye.com.geometricweather.R$styleable: int Spinner_android_popupBackground +wangdaye.com.geometricweather.R$id: int cos +retrofit2.OptionalConverterFactory$OptionalConverter +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_trackTintMode +com.google.android.material.R$drawable: int mtrl_ic_cancel +wangdaye.com.geometricweather.R$drawable: int notif_temp_61 +wangdaye.com.geometricweather.R$attr: int chipSpacingHorizontal +com.amap.api.location.AMapLocationClientOption$GeoLanguage: AMapLocationClientOption$GeoLanguage(java.lang.String,int) +io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier[] values() +cyanogenmod.app.CustomTile$ExpandedStyle: int GRID_STYLE +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void run() +cyanogenmod.providers.CMSettings$Secure: android.net.Uri getUriFor(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: java.lang.String Unit +android.didikee.donate.R$styleable: int AppCompatImageView_android_src +androidx.viewpager.widget.ViewPager: void addOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: int phenomenonId +okhttp3.internal.http1.Http1Codec: okhttp3.internal.connection.StreamAllocation streamAllocation +androidx.activity.R$id: int accessibility_custom_action_23 +androidx.loader.R$attr: int fontProviderFetchTimeout +com.google.android.material.R$styleable: int AppCompatTheme_windowActionBar +com.google.android.material.R$id: int submit_area +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String getWeathercn() +james.adaptiveicon.R$style: int Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_NoActionBar +com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_Primary +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_subMenuArrow +com.google.android.material.R$attr: int expandedHintEnabled +androidx.preference.R$attr: int alphabeticModifiers +com.google.android.material.R$attr: int titleTextAppearance +com.jaredrummler.android.colorpicker.R$attr: int buttonBarButtonStyle +androidx.hilt.work.R$id: int accessibility_custom_action_20 +androidx.constraintlayout.utils.widget.ImageFilterButton: float getSaturation() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvLevel +com.jaredrummler.android.colorpicker.R$string: int abc_toolbar_collapse_description +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getDescription() com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -com.github.rahatarmanahmed.cpv.CircularProgressView: void updateBounds() -androidx.constraintlayout.widget.R$id: int tag_screen_reader_focusable -com.google.android.material.R$style: int Base_Animation_AppCompat_DropDownUp -okhttp3.Response: Response(okhttp3.Response$Builder) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: double Value -wangdaye.com.geometricweather.R$attr: int materialAlertDialogBodyTextStyle -androidx.appcompat.R$styleable: int AppCompatTheme_editTextColor -retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.reflect.Type responseType() -com.amap.api.location.AMapLocation: java.lang.String getBuildingId() -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -androidx.appcompat.widget.SearchView: java.lang.CharSequence getQuery() -androidx.constraintlayout.motion.widget.MotionHelper: void setProgress(float) -com.google.android.material.R$attr: int fontProviderAuthority -com.google.android.material.R$id: int action_bar_activity_content -androidx.preference.R$attr: int colorButtonNormal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX() -com.xw.repo.bubbleseekbar.R$color: int secondary_text_disabled_material_light -com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalGap -okhttp3.WebSocketListener: void onFailure(okhttp3.WebSocket,java.lang.Throwable,okhttp3.Response) -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Dialog -com.google.android.material.R$style: int Widget_AppCompat_ActionButton -androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModelProvider$NewInstanceFactory getInstance() -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.HistoryEntity,int) -androidx.work.R$attr: int fontProviderFetchTimeout -com.google.android.material.textfield.TextInputLayout: void setStartIconContentDescription(java.lang.CharSequence) -wangdaye.com.geometricweather.R$styleable: int[] Tooltip -cyanogenmod.weather.WeatherInfo$1: cyanogenmod.weather.WeatherInfo createFromParcel(android.os.Parcel) -com.google.android.material.R$dimen: int abc_action_bar_default_padding_end_material -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWetBulbTemperature -cyanogenmod.app.CMTelephonyManager: java.lang.String TAG -androidx.preference.R$color: int abc_search_url_text_normal -androidx.appcompat.R$styleable: int AppCompatImageView_android_src -androidx.hilt.R$id: int accessibility_custom_action_0 -okhttp3.internal.http.HttpCodec -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: int getWindowType() -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean mAskedShow -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_BRIGHTNESS_CONTROL -com.xw.repo.bubbleseekbar.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.R$attr: int suffixTextColor -com.google.android.material.R$styleable: int KeyPosition_sizePercent -android.didikee.donate.R$styleable: int Toolbar_subtitle -com.google.android.material.R$dimen: int abc_text_size_display_3_material -cyanogenmod.providers.CMSettings$Global: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setStatus(int) -androidx.core.widget.NestedScrollView: void setSmoothScrollingEnabled(boolean) -wangdaye.com.geometricweather.R$attr: int bsb_second_track_size -android.didikee.donate.R$id: int search_bar -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidth(int) -com.google.android.material.R$styleable: int AppBarLayout_android_keyboardNavigationCluster -wangdaye.com.geometricweather.R$string: int glide -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit valueOf(java.lang.String) -cyanogenmod.providers.DataUsageContract: java.lang.String FAST_AVG -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: boolean isDisposed() -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: boolean equals(java.lang.Object) -okio.Okio$1: okio.Timeout val$timeout -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Toolbar -com.amap.api.location.AMapLocation: java.lang.String getErrorInfo() -cyanogenmod.app.BaseLiveLockManagerService$1: BaseLiveLockManagerService$1(cyanogenmod.app.BaseLiveLockManagerService) -androidx.preference.R$color: int switch_thumb_normal_material_dark -androidx.preference.R$attr: int drawerArrowStyle -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed Speed -cyanogenmod.app.CMTelephonyManager: android.content.Context mContext -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xntd -com.google.android.material.slider.BaseSlider: void setThumbStrokeColor(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline2 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleContentDescription(java.lang.CharSequence) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextColor -cyanogenmod.providers.CMSettings$Secure: java.util.Map VALIDATORS -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUpdateDate(java.util.Date) -okio.Okio$1: java.io.OutputStream val$out -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_large_material -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_end -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setApparentTemperature(java.lang.Integer) +com.google.android.material.R$styleable: int ActionBar_hideOnContentScroll +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_font +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +james.adaptiveicon.R$color: int bright_foreground_disabled_material_light +com.google.android.material.circularreveal.CircularRevealRelativeLayout: CircularRevealRelativeLayout(android.content.Context) +com.google.android.material.R$styleable: int Snackbar_snackbarStyle +androidx.constraintlayout.widget.R$styleable: int[] MotionLayout +androidx.constraintlayout.widget.R$styleable: int Transform_android_transformPivotY +wangdaye.com.geometricweather.search.SearchActivityViewModel +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onCross +android.support.v4.os.ResultReceiver: ResultReceiver(android.os.Parcel) +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +wangdaye.com.geometricweather.R$animator: int weather_fog_3 +wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_week_setting +androidx.customview.R$styleable: int GradientColor_android_gradientRadius +androidx.constraintlayout.widget.R$dimen: int abc_floating_window_z +wangdaye.com.geometricweather.R$string: int precipitation_heavy +wangdaye.com.geometricweather.R$drawable: int ic_forecast +okhttp3.internal.connection.ConnectionSpecSelector: java.util.List connectionSpecs +androidx.customview.R$id: int info +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String chief +androidx.work.R$id: int icon +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_switchTextOff +com.google.android.material.R$styleable: int RecyclerView_reverseLayout +androidx.coordinatorlayout.R$id: int accessibility_custom_action_30 +androidx.lifecycle.extensions.R$dimen: int notification_small_icon_size_as_large +com.turingtechnologies.materialscrollbar.R$attr: int helperTextTextAppearance +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfPrecipitation +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getUvDescription() +androidx.preference.R$color: int dim_foreground_disabled_material_light +com.google.android.material.R$attr: int itemIconPadding +androidx.appcompat.R$layout: int abc_action_bar_up_container +io.reactivex.Observable: io.reactivex.Observable retry(io.reactivex.functions.Predicate) +james.adaptiveicon.R$styleable: int SwitchCompat_android_textOff +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_height_minor +com.amap.api.location.AMapLocation: java.lang.String l +cyanogenmod.weather.CMWeatherManager$RequestStatus: int FAILED +com.google.android.material.R$id: int tag_transition_group +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.ObservableSource[],io.reactivex.functions.Function,int) +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_HEAVY +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_7 +okio.ForwardingTimeout: okio.Timeout delegate() +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error +com.google.android.material.R$color: int mtrl_btn_transparent_bg_color +androidx.preference.internal.PreferenceImageView +androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context) +androidx.hilt.lifecycle.R$color +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String getTime(android.content.Context,java.util.Date) +com.google.android.material.textfield.TextInputLayout: void setPlaceholderText(java.lang.CharSequence) +wangdaye.com.geometricweather.R$id: int circular +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: long serialVersionUID +androidx.coordinatorlayout.R$id: int actions +androidx.constraintlayout.widget.R$styleable: int Transition_transitionDisable +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +okhttp3.internal.cache.DiskLruCache$1 +wangdaye.com.geometricweather.R$attr: int popupWindowStyle +wangdaye.com.geometricweather.R$layout: int widget_day_rectangle +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_activated_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_height +com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_radio +io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) +androidx.appcompat.view.menu.ListMenuItemView +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelMenuListWidth +com.google.android.material.R$styleable: int Constraint_layout_constraintCircle +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_size_normal +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: ObservableRetryBiPredicate$RetryBiObserver(io.reactivex.Observer,io.reactivex.functions.BiPredicate,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$id: int subtitle +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ZEN_ALLOW_LIGHTS_VALIDATOR +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_buttonGravity +wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogTitle +wangdaye.com.geometricweather.R$string: int settings_title_list_animation_switch +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getProvince() +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_title +androidx.appcompat.R$style: int Widget_AppCompat_ActivityChooserView +cyanogenmod.app.CustomTile: void cloneInto(cyanogenmod.app.CustomTile) +james.adaptiveicon.R$drawable: int tooltip_frame_light +androidx.lifecycle.ViewModelProvider$KeyedFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) +androidx.appcompat.resources.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.R$attr: int progressBarStyle +androidx.viewpager2.R$id: int accessibility_custom_action_11 +okio.Pipe$PipeSource +com.xw.repo.bubbleseekbar.R$attr: int icon +okhttp3.internal.http2.Http2Connection: void shutdown(okhttp3.internal.http2.ErrorCode) +androidx.lifecycle.ComputableLiveData$1: void onActive() +okhttp3.Cache: java.lang.String key(okhttp3.HttpUrl) +wangdaye.com.geometricweather.R$string: int real_feel_temperature +io.reactivex.Observable: io.reactivex.Single any(io.reactivex.functions.Predicate) +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: java.lang.String styleId +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float snow +androidx.preference.MultiSelectListPreference$SavedState +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: long serialVersionUID +wangdaye.com.geometricweather.R$color: int bright_foreground_disabled_material_dark +androidx.constraintlayout.widget.R$attr: int listPreferredItemHeight +com.github.rahatarmanahmed.cpv.R$color: int cpv_default_color +com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeTopLeft +wangdaye.com.geometricweather.R$layout: int material_clockface_textview +okhttp3.Cache: void trackResponse(okhttp3.internal.cache.CacheStrategy) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: void completion() +androidx.constraintlayout.widget.ConstraintHelper: int[] getReferencedIds() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum() +androidx.core.R$styleable: int GradientColor_android_startColor +cyanogenmod.weather.CMWeatherManager$1$1: java.lang.String val$providerName +cyanogenmod.profiles.ConnectionSettings: int mConnectionId +james.adaptiveicon.R$styleable: int Toolbar_navigationIcon +wangdaye.com.geometricweather.R$styleable: int MaterialButton_backgroundTintMode +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int SourceId +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabRippleColor +okhttp3.Cookie$Builder: java.lang.String name +okhttp3.internal.http2.Hpack$Reader: okhttp3.internal.http2.Header[] dynamicTable +com.google.android.gms.common.stats.WakeLockEvent +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_pixel +com.xw.repo.bubbleseekbar.R$attr: int selectableItemBackgroundBorderless +james.adaptiveicon.R$attr: int colorAccent +androidx.preference.R$interpolator +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty3H +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_height_material +wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String type +androidx.preference.R$color: int highlighted_text_material_light +com.google.android.material.R$drawable: int abc_ic_arrow_drop_right_black_24dp +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: MfEphemerisResult$Properties$Ephemeris() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid +com.turingtechnologies.materialscrollbar.R$attr: int state_liftable +retrofit2.HttpServiceMethod$SuspendForBody: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) +okhttp3.internal.http2.Http2Reader: void readPushPromise(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +androidx.viewpager.widget.PagerTabStrip: void setTabIndicatorColorResource(int) +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitle_inputter +com.google.android.material.R$styleable: int AppCompatTextView_fontFamily +wangdaye.com.geometricweather.R$drawable: int weather_hail +james.adaptiveicon.R$dimen: int notification_media_narrow_margin +okhttp3.internal.ws.RealWebSocket: void awaitTermination(int,java.util.concurrent.TimeUnit) +okhttp3.WebSocket: void cancel() +com.google.android.material.R$id: int accessibility_custom_action_25 +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_0 +androidx.preference.R$attr: int contentInsetEndWithActions +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Object,java.util.List) +wangdaye.com.geometricweather.R$id: int searchIcon +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getAlarmThemePackageName() +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getTemperatureText(android.content.Context,int) +com.google.android.material.R$attr: int layout_collapseParallaxMultiplier +androidx.hilt.R$id: int accessibility_custom_action_24 +android.didikee.donate.R$styleable: int SearchView_iconifiedByDefault +okio.ByteString: okio.ByteString toAsciiUppercase() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderTitle +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_disabled_elevation +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton +androidx.preference.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback +wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Top_Right +androidx.preference.R$attr: int fastScrollEnabled +wangdaye.com.geometricweather.R$drawable: int notif_temp_122 +wangdaye.com.geometricweather.R$string: int key_week_icon_mode +com.turingtechnologies.materialscrollbar.R$id: int container +com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_disabled_color +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String city +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: java.lang.String unitAbbreviation +wangdaye.com.geometricweather.R$attr: int persistent +androidx.vectordrawable.R$dimen: int notification_right_side_padding_top +androidx.appcompat.resources.R$id: int forever +androidx.appcompat.R$id: int search_edit_frame +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +wangdaye.com.geometricweather.R$string: int common_google_play_services_install_text +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemFillColor +com.google.android.material.R$dimen: int notification_large_icon_height +okhttp3.internal.http.HttpHeaders: int parseSeconds(java.lang.String,int) +retrofit2.DefaultCallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +androidx.preference.R$styleable: int AppCompatTheme_panelMenuListTheme +okio.RealBufferedSink: okio.Buffer buffer() +androidx.preference.R$attr: int closeItemLayout +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowRadius +retrofit2.HttpServiceMethod: okhttp3.Call$Factory callFactory +io.reactivex.observers.DisposableObserver: DisposableObserver() +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void run() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +androidx.lifecycle.OnLifecycleEvent +org.greenrobot.greendao.DaoException: DaoException(java.lang.String,java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorFullWidth +androidx.loader.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.R$attr: int icon +com.amap.api.location.APSService: APSService() +com.google.gson.FieldNamingPolicy$5: java.lang.String translateName(java.lang.reflect.Field) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Headline +cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_SHOW_BRIGHTNESS_SLIDER +com.turingtechnologies.materialscrollbar.R$id: int unlabeled +androidx.work.R$styleable: int FontFamily_fontProviderPackage +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteInTxIterable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setEn_US(java.lang.String) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: int getRootAlpha() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List alert +okhttp3.internal.http2.Header: int hpackSize +com.google.android.material.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$id: int transparency_seekbar +com.google.android.material.R$dimen: int cardview_default_elevation +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: KeyguardExternalViewProviderService$Provider$ProviderImpl$2(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +com.google.android.material.R$id: int password_toggle +androidx.appcompat.widget.Toolbar: android.widget.TextView getTitleTextView() +androidx.appcompat.R$attr: int alertDialogTheme +androidx.appcompat.R$styleable: int ActionBar_contentInsetStartWithNavigation +android.didikee.donate.R$styleable: int PopupWindow_android_popupAnimationStyle +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: ObservableConcatWithCompletable$ConcatWithObserver(io.reactivex.Observer,io.reactivex.CompletableSource) +wangdaye.com.geometricweather.R$style: int Base_V23_Theme_AppCompat +james.adaptiveicon.R$drawable: int abc_action_bar_item_background_material +androidx.viewpager.R$layout: int notification_template_icon_group +androidx.appcompat.R$bool: int abc_config_actionMenuItemAllCaps +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_titleTextStyle +wangdaye.com.geometricweather.R$attr: int homeAsUpIndicator +com.turingtechnologies.materialscrollbar.R$attr: int theme +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +androidx.swiperefreshlayout.R$drawable: int notification_template_icon_bg +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setIcon(int) +james.adaptiveicon.R$styleable: int[] CompoundButton +androidx.cardview.R$style: int Base_CardView +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean otherDone +androidx.preference.R$attr: int ratingBarStyleSmall +androidx.appcompat.R$color: int abc_decor_view_status_guard_light +james.adaptiveicon.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +androidx.appcompat.resources.R$id: int accessibility_custom_action_13 +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_rippleColor +com.google.android.material.slider.Slider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) +cyanogenmod.externalviews.KeyguardExternalView: android.content.Context mContext +androidx.appcompat.R$attr: int iconTintMode +com.xw.repo.bubbleseekbar.R$id: int scrollView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: AccuCurrentResult$WetBulbTemperature$Metric() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: boolean isDaylight() +cyanogenmod.weather.WeatherInfo$Builder: double mHumidity +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_headerBackground +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_navigationContentDescription +androidx.viewpager2.R$id: int accessibility_custom_action_27 +com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Entry +com.amap.api.location.DPoint: DPoint(android.os.Parcel) +androidx.preference.R$styleable: int Toolbar_contentInsetLeft +okhttp3.internal.cache.DiskLruCache$Entry: java.io.IOException invalidLengths(java.lang.String[]) +james.adaptiveicon.R$attr: int windowMinWidthMinor +com.amap.api.fence.GeoFence: java.util.List getDistrictItemList() +androidx.work.R$drawable: int notification_bg +androidx.constraintlayout.widget.ConstraintLayout: int getMaxHeight() +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +cyanogenmod.hardware.DisplayMode$1: cyanogenmod.hardware.DisplayMode createFromParcel(android.os.Parcel) +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarSize +com.google.android.material.R$color: int primary_material_light +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getRealFeelShaderTemperature() +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +com.google.android.material.R$styleable: int Layout_android_layout_marginRight +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onSubscribe(org.reactivestreams.Subscription) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1 +com.jaredrummler.android.colorpicker.R$attr: int titleTextAppearance +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode RAIN +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,io.reactivex.functions.Function,java.util.concurrent.Callable) +com.bumptech.glide.R$styleable: int FontFamilyFont_fontStyle +com.google.android.material.R$color: int abc_tint_switch_track +com.turingtechnologies.materialscrollbar.R$id: int transition_layout_save +wangdaye.com.geometricweather.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$string: int humidity +cyanogenmod.externalviews.KeyguardExternalView: void registerKeyguardExternalViewCallback(cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: int index +androidx.preference.R$styleable: int ActionBar_icon +okio.ForwardingSource: ForwardingSource(okio.Source) +wangdaye.com.geometricweather.R$style: int CardView +androidx.activity.ComponentActivity$2 +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginStart +com.google.android.material.R$style: int Base_Theme_AppCompat +cyanogenmod.app.BaseLiveLockManagerService$1: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +io.reactivex.exceptions.OnErrorNotImplementedException: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin +androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView: void setSelector(android.graphics.drawable.Drawable) +androidx.preference.R$styleable: int[] AnimatedStateListDrawableItem +androidx.customview.R$attr: int fontProviderFetchStrategy +cyanogenmod.weather.RequestInfo: int TYPE_WEATHER_BY_WEATHER_LOCATION_REQ +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: void setDirection(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX) +wangdaye.com.geometricweather.R$attr: int toolbarId +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean getWeather() +com.google.android.material.R$id: int mtrl_motion_snapshot_view +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean cancelled +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$width +com.amap.api.fence.PoiItem: java.lang.String getAdname() +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customPixelDimension +androidx.constraintlayout.motion.widget.MotionLayout: androidx.constraintlayout.motion.widget.DesignTool getDesignTool() +androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollEnabled +retrofit2.KotlinExtensions$await$4$2: void onResponse(retrofit2.Call,retrofit2.Response) +james.adaptiveicon.R$string: int abc_action_bar_up_description +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode[] values() +wangdaye.com.geometricweather.R$attr: int searchHintIcon +org.greenrobot.greendao.AbstractDao: void saveInTx(java.lang.Iterable) +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstHorizontalBias +james.adaptiveicon.R$drawable: int abc_item_background_holo_dark +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_logo +com.bumptech.glide.integration.okhttp.R$string: int status_bar_notification_info_overflow +androidx.coordinatorlayout.R$styleable: int[] GradientColorItem +androidx.preference.R$attr: int listPreferredItemHeightSmall +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableLeft +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.preference.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +androidx.preference.R$attr: int dialogMessage +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_WEATHER +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.Observer downstream +android.didikee.donate.R$id: int showHome +okhttp3.internal.connection.ConnectionSpecSelector: ConnectionSpecSelector(java.util.List) +androidx.core.R$layout +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_disabled_material_light +wangdaye.com.geometricweather.common.basic.models.weather.Weather: void setYesterday(wangdaye.com.geometricweather.common.basic.models.weather.History) +okio.Base64: byte[] MAP +okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date servedDate +androidx.core.R$styleable: int GradientColor_android_centerX +james.adaptiveicon.R$id: int title +com.google.android.material.floatingactionbutton.FloatingActionButton: void setRippleColor(int) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitationProbability(java.lang.Float) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: double Value +io.reactivex.internal.util.EmptyComponent: void onError(java.lang.Throwable) +androidx.preference.R$style: int Widget_AppCompat_ActionBar +android.didikee.donate.R$id: int split_action_bar +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent ICON +androidx.transition.R$layout: int notification_template_custom_big +retrofit2.HttpException +james.adaptiveicon.R$styleable: int[] RecycleListView +wangdaye.com.geometricweather.R$drawable: int selectable_item_background_borderless +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum Minimum +wangdaye.com.geometricweather.R$drawable: int mtrl_ic_cancel +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification +com.google.android.material.R$styleable: int AppCompatTheme_colorAccent +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getVisibility() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +com.google.android.gms.location.ActivityRecognitionResult: android.os.Parcelable$Creator CREATOR +com.amap.api.location.AMapLocation: java.lang.String COORD_TYPE_WGS84 +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_36dp +com.google.android.material.R$dimen: int mtrl_calendar_year_vertical_padding +io.reactivex.internal.util.NotificationLite +androidx.appcompat.R$string: int abc_menu_delete_shortcut_label +com.google.android.material.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean() +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_23 +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_statusBarBackground +wangdaye.com.geometricweather.R$id: int reverseSawtooth +androidx.appcompat.R$string: int abc_searchview_description_clear +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode[] values() +io.reactivex.Observable: io.reactivex.Observable concatMap(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_interval +androidx.core.R$integer +androidx.appcompat.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_2 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu +androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: java.lang.Object item +com.google.android.material.R$styleable: int DrawerArrowToggle_drawableSize +okhttp3.Cache$1: okhttp3.Response get(okhttp3.Request) +android.didikee.donate.R$styleable: int View_theme +wangdaye.com.geometricweather.R$attr: int errorEnabled +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Body1 +com.google.android.material.R$attr: int buttonStyle +okhttp3.logging.LoggingEventListener: long startNs +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: double Value +org.greenrobot.greendao.AbstractDaoSession: long insert(java.lang.Object) +okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.RealWebSocket$Streams streams +com.amap.api.location.AMapLocationClientOption: void setScanWifiInterval(long) +androidx.appcompat.R$dimen: int abc_button_padding_horizontal_material +androidx.appcompat.R$drawable: int abc_popup_background_mtrl_mult +androidx.hilt.R$style: int TextAppearance_Compat_Notification_Line2 +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: int getCircularRevealScrimColor() +androidx.appcompat.R$styleable: int MenuItem_iconTint +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.util.List Area +wangdaye.com.geometricweather.R$drawable: int material_cursor_drawable +com.google.android.material.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +androidx.preference.R$id: int topPanel +james.adaptiveicon.R$attr: int closeIcon +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_28 +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_normal_pressed +com.google.android.material.R$dimen: int abc_action_bar_elevation_material +cyanogenmod.app.Profile: void setStatusBarIndicator(boolean) +cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemTitle(java.lang.String) +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: ObservableSkipLast$SkipLastObserver(io.reactivex.Observer,int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.google.android.material.R$attr: int colorOnSurface +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder callFactory(okhttp3.Call$Factory) +okhttp3.OkHttpClient$Builder: javax.net.ssl.HostnameVerifier hostnameVerifier +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_toTopOf +com.bumptech.glide.integration.okhttp.R$dimen: int notification_right_icon_size +androidx.hilt.R$styleable: int GradientColor_android_startX +okhttp3.internal.http2.Settings +wangdaye.com.geometricweather.R$color: int mtrl_filled_background_color +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language FRENCH +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_51 +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_alphabeticShortcut +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder authenticator(okhttp3.Authenticator) +cyanogenmod.providers.DataUsageContract: java.lang.String CONTENT_TYPE +androidx.constraintlayout.widget.R$attr: int buttonBarButtonStyle +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String level +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_wrapMode +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode BOUNDARY +com.turingtechnologies.materialscrollbar.R$id: int none +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +androidx.appcompat.resources.R$style: R$style() +okio.AsyncTimeout$1: void flush() +androidx.viewpager.R$color: R$color() +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontStyle +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Light +androidx.fragment.R$id: int async androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog -com.google.android.material.R$styleable: int Layout_layout_constraintEnd_toStartOf -androidx.recyclerview.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginTop -androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonTintMode -androidx.recyclerview.R$dimen -okhttp3.EventListener$Factory: okhttp3.EventListener create(okhttp3.Call) -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_background_corner_radius -androidx.preference.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -okhttp3.internal.http2.Hpack$Writer: void writeInt(int,int,int) -com.google.android.material.R$styleable: int Tooltip_android_text -okhttp3.OkHttpClient: okhttp3.ConnectionPool connectionPool() -androidx.constraintlayout.widget.R$id: int dragRight -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_COLOR -okio.HashingSink: okio.HashingSink sha1(okio.Sink) -com.turingtechnologies.materialscrollbar.R$attr: int dividerVertical -androidx.appcompat.R$attr: int navigationContentDescription -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setThunderstormPrecipitationProbability(java.lang.Float) -com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_dark -androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyle -okhttp3.ResponseBody$1: long contentLength() -okhttp3.internal.http2.Http2Writer: void headers(int,java.util.List) -androidx.constraintlayout.widget.R$attr: int titleMarginTop -okhttp3.internal.http.StatusLine: StatusLine(okhttp3.Protocol,int,java.lang.String) -cyanogenmod.externalviews.ExternalView$1: void onServiceConnected(android.content.ComponentName,android.os.IBinder) -androidx.appcompat.R$dimen: int abc_edit_text_inset_top_material -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingEnd -wangdaye.com.geometricweather.R$animator -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -james.adaptiveicon.R$dimen: int hint_alpha_material_dark -wangdaye.com.geometricweather.R$color: int mtrl_chip_ripple_color -com.google.android.material.R$string: int mtrl_picker_date_header_title -wangdaye.com.geometricweather.R$string: int feedback_request_location_in_background -james.adaptiveicon.R$drawable: int abc_ic_clear_material -wangdaye.com.geometricweather.R$attr: int buttonStyleSmall -wangdaye.com.geometricweather.R$id: int dialog_location_help_locationContainer -androidx.appcompat.R$color: int ripple_material_light -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long serialVersionUID -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String dataUptime -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView_DropDown -androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -wangdaye.com.geometricweather.R$styleable: int OnSwipe_onTouchUp -wangdaye.com.geometricweather.R$drawable: int weather_snow_3 -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked -wangdaye.com.geometricweather.R$attr: int floatingActionButtonStyle -cyanogenmod.externalviews.IExternalViewProvider$Stub: android.os.IBinder asBinder() -android.didikee.donate.R$styleable: int ActionBar_progressBarPadding -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_anchor -wangdaye.com.geometricweather.R$layout: int design_text_input_end_icon -wangdaye.com.geometricweather.R$attr: int colorOnSecondary -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_55 -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: KeyguardExternalViewProviderService$Provider$ProviderImpl$4(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_3 -androidx.recyclerview.R$id: int accessibility_custom_action_0 -okhttp3.internal.http.HttpHeaders: boolean hasVaryAll(okhttp3.Headers) -androidx.preference.R$dimen: int tooltip_margin -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextColor -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_visible -retrofit2.ParameterHandler$Header: java.lang.String name -com.google.android.gms.auth.api.signin.internal.GoogleSignInOptionsExtensionParcelable -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_min_width -cyanogenmod.app.CMContextConstants$Features: java.lang.String PARTNER -androidx.appcompat.resources.R$layout: int notification_action -com.google.android.material.R$id: int mtrl_picker_text_input_range_end -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_OutlinedButton -androidx.preference.R$styleable: int MenuGroup_android_checkableBehavior +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: CircularRevealCoordinatorLayout(android.content.Context) +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +okhttp3.CipherSuite$1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindSpeedStart(java.lang.String) +com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +com.google.android.material.R$styleable: int KeyCycle_waveShape +cyanogenmod.profiles.LockSettings +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_MIGRATE_SETTINGS_FOR_USER +wangdaye.com.geometricweather.R$id: int ignoreRequest +okio.Buffer: int read(java.nio.ByteBuffer) +retrofit2.http.Field: boolean encoded() +okhttp3.ConnectionSpec: void apply(javax.net.ssl.SSLSocket,boolean) +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startColor +androidx.transition.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer dewPoint +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type PRECIPITATION +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setDraggableFromAnywhere(boolean) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: boolean isDisposed() +android.didikee.donate.R$color: int bright_foreground_material_dark +com.amap.api.location.AMapLocationClientOption: AMapLocationClientOption(android.os.Parcel) +androidx.lifecycle.SavedStateViewModelFactory +androidx.appcompat.widget.SearchView: int getPreferredHeight() +wangdaye.com.geometricweather.R$layout: int design_navigation_menu +wangdaye.com.geometricweather.R$id: int activity_weather_daily_toolbar +androidx.constraintlayout.widget.R$id: int dragLeft +cyanogenmod.providers.CMSettings$System: boolean putLong(android.content.ContentResolver,java.lang.String,long) +com.xw.repo.bubbleseekbar.R$drawable: int abc_control_background_material +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Date +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver parent +wangdaye.com.geometricweather.R$dimen: int notification_media_narrow_margin +com.xw.repo.bubbleseekbar.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$integer: int abc_config_activityShortDur +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Medium_Inverse +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: java.lang.String DESCRIPTOR +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.disposables.Disposable upstream +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +androidx.preference.R$attr: int commitIcon +androidx.constraintlayout.widget.R$dimen: int abc_dialog_padding_material +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean hasKey(java.lang.Object) +androidx.preference.R$styleable: int AppCompatSeekBar_android_thumb +androidx.work.R$styleable: R$styleable() +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getNumberOfProfiles +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: AccuCurrentResult$PrecipitationSummary$Precipitation() +androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +wangdaye.com.geometricweather.R$styleable: int RadialViewGroup_materialCircleRadius +com.turingtechnologies.materialscrollbar.R$attr: int fontWeight +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabBar +android.didikee.donate.R$drawable: int abc_cab_background_internal_bg +okio.ByteString: java.lang.String base64Url() +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level BODY +androidx.appcompat.R$attr: int displayOptions +androidx.activity.R$id: int info +androidx.constraintlayout.widget.R$string: int abc_action_bar_up_description +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type TOP +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: double Value +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_fontFamily +com.google.android.material.R$styleable: int KeyTimeCycle_waveOffset +androidx.appcompat.R$attr: int paddingBottomNoButtons +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_search +retrofit2.Response: okhttp3.Headers headers() +androidx.viewpager.R$id: int blocking +io.reactivex.internal.disposables.DisposableHelper: boolean validate(io.reactivex.disposables.Disposable,io.reactivex.disposables.Disposable) +com.google.android.material.R$style: int TextAppearance_AppCompat_Inverse +cyanogenmod.power.IPerformanceManager$Stub: IPerformanceManager$Stub() +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onComplete() +wangdaye.com.geometricweather.R$attr: int thumbStrokeWidth +androidx.recyclerview.widget.RecyclerView: long getNanoTime() +androidx.preference.R$styleable: int FontFamilyFont_android_font +androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context,android.util.AttributeSet) +androidx.work.R$styleable: int FontFamilyFont_android_fontVariationSettings +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: java.lang.String DESCRIPTOR +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.functions.Function mapper +androidx.lifecycle.LiveData$LifecycleBoundObserver: androidx.lifecycle.LiveData this$0 +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_TextView +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String ShortPhrase +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_motionProgress +com.amap.api.location.AMapLocation: double getLatitude() +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +androidx.preference.R$anim: int abc_popup_exit +retrofit2.Retrofit$1 +androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.R$styleable: int AppCompatTheme_windowActionModeOverlay +androidx.lifecycle.ViewModel: java.lang.Object setTagIfAbsent(java.lang.String,java.lang.Object) +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog +cyanogenmod.themes.IThemeService$Stub$Proxy: int getLastThemeChangeRequestType() +wangdaye.com.geometricweather.R$attr: int flow_verticalBias +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getDate(java.lang.String) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_4 +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1(retrofit2.Call) +wangdaye.com.geometricweather.R$styleable: int ActionBar_subtitle +androidx.cardview.R$dimen: int cardview_compat_inset_shadow +retrofit2.ParameterHandler$Field: retrofit2.Converter valueConverter +androidx.preference.R$drawable: int tooltip_frame_light +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: IWeatherProviderServiceClient$Stub() +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetRight +com.google.android.material.R$styleable: int SwitchCompat_trackTint +com.google.android.material.R$attr: int extendedFloatingActionButtonStyle +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$attr: int itemTextColor +wangdaye.com.geometricweather.R$id: int widget_week_temp_1 +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_hovered_focused +james.adaptiveicon.R$drawable: int abc_textfield_default_mtrl_alpha +androidx.preference.R$styleable: int[] CoordinatorLayout_Layout +android.didikee.donate.R$attr: int ratingBarStyle +okhttp3.internal.connection.ConnectionSpecSelector: boolean connectionFailed(java.io.IOException) +androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityStopped(android.app.Activity) +androidx.core.R$id: int accessibility_custom_action_30 +io.reactivex.internal.util.HashMapSupplier: java.util.concurrent.Callable asCallable() +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_PopupMenu +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice +com.google.android.gms.location.zzo: android.os.Parcelable$Creator CREATOR +androidx.legacy.coreutils.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.R$attr: int divider +com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_normal +cyanogenmod.app.Profile: boolean isConditionalType() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitation() +cyanogenmod.providers.CMSettings$System: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView +wangdaye.com.geometricweather.R$styleable: int[] SwitchMaterial +androidx.viewpager2.R$styleable: int GradientColor_android_startY +com.google.android.gms.common.Feature +androidx.preference.internal.PreferenceImageView: void setMaxHeight(int) +androidx.preference.R$dimen: int abc_dialog_list_padding_top_no_title +com.jaredrummler.android.colorpicker.R$attr: int layout_anchor +com.jaredrummler.android.colorpicker.R$anim: int abc_slide_out_bottom +wangdaye.com.geometricweather.R$layout: int material_clock_period_toggle +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onSubscribe(org.reactivestreams.Subscription) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean isEmpty() +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: void truncateFinal() +com.bumptech.glide.integration.okhttp.R$id: int right_icon +com.google.android.material.textfield.TextInputLayout: void setHintInternal(java.lang.CharSequence) +androidx.preference.R$style: int Base_Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconMargin +wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_strokeWidth +wangdaye.com.geometricweather.R$id: int item_weather_daily_overview_icon +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean disposed +com.google.android.material.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: int phenomenoMaxColorId +okhttp3.internal.Util$1 +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +androidx.hilt.R$color: int ripple_material_light +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onSubscribe(io.reactivex.disposables.Disposable) +okhttp3.FormBody$Builder: okhttp3.FormBody$Builder add(java.lang.String,java.lang.String) +com.google.android.material.stateful.ExtendableSavedState: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$attr: int dividerHorizontal +com.xw.repo.bubbleseekbar.R$styleable: int[] MenuItem +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_begin +androidx.legacy.coreutils.R$layout: int notification_template_part_chronometer +android.didikee.donate.R$style: int Platform_AppCompat_Light +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +androidx.preference.R$id: int action_menu_presenter +androidx.vectordrawable.animated.R$id: int italic +wangdaye.com.geometricweather.R$drawable: int ic_close +wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_2_material +androidx.lifecycle.LifecycleService: androidx.lifecycle.Lifecycle getLifecycle() +com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_layout +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display3 +cyanogenmod.app.LiveLockScreenInfo: int priority +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver) +androidx.hilt.R$id: int accessibility_custom_action_22 +okio.ForwardingSink: void write(okio.Buffer,long) +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_clear_material +androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +com.turingtechnologies.materialscrollbar.R$attr: int iconGravity +wangdaye.com.geometricweather.R$string: int material_minute_selection +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline1 +androidx.dynamicanimation.R$styleable: int[] FontFamilyFont +com.google.android.material.R$attr: int autoSizeStepGranularity +com.google.android.gms.base.R$styleable: R$styleable() +cyanogenmod.app.suggest.ApplicationSuggestion$1: ApplicationSuggestion$1() +androidx.appcompat.R$styleable: int FontFamilyFont_android_fontWeight +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListPopupWindow +com.google.android.material.R$id: int accessibility_custom_action_13 +androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackgroundResource(int) +com.google.android.material.R$drawable: int abc_btn_radio_material_anim +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_height_material +com.google.android.material.textfield.TextInputLayout: void setErrorTextAppearance(int) +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_subMenuArrow +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour FIXED +james.adaptiveicon.R$id: int action_menu_presenter +wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_default +com.google.android.material.R$styleable: int TextInputLayout_android_enabled +com.google.gson.LongSerializationPolicy: LongSerializationPolicy(java.lang.String,int,com.google.gson.LongSerializationPolicy$1) +james.adaptiveicon.R$color: int secondary_text_disabled_material_light +com.google.android.material.R$id: int chain +androidx.preference.R$styleable: int MenuItem_android_icon +okhttp3.CacheControl: int maxStaleSeconds() +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver +androidx.appcompat.R$color: int switch_thumb_disabled_material_dark +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableRight +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String ShortPhrase +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours +androidx.preference.R$drawable: int abc_list_pressed_holo_dark +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int describeContents() +james.adaptiveicon.R$layout: int abc_action_bar_title_item +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_scaleY +androidx.appcompat.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$color: int mtrl_tabs_colored_ripple_color android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_RadioButton -okhttp3.internal.http2.ConnectionShutdownException: ConnectionShutdownException() -wangdaye.com.geometricweather.R$string: int email -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature -com.xw.repo.bubbleseekbar.R$attr: int title -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -androidx.appcompat.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_selected -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_cancelRequest -com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onError(java.lang.Throwable) -io.reactivex.disposables.ReferenceDisposable: void onDisposed(java.lang.Object) -wangdaye.com.geometricweather.R$string: int phase_waning_crescent -com.google.android.material.R$dimen: int material_filled_edittext_font_2_0_padding_top -androidx.appcompat.widget.SwitchCompat: void setThumbTextPadding(int) -androidx.fragment.R$dimen: int notification_media_narrow_margin -com.google.android.material.textfield.TextInputLayout: com.google.android.material.shape.MaterialShapeDrawable getBoxBackground() -wangdaye.com.geometricweather.R$color: int background_material_dark -cyanogenmod.profiles.StreamSettings$1: StreamSettings$1() -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_weightSum -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Headline -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub -com.google.android.material.R$styleable: int ConstraintLayout_Layout_constraintSet -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String src -androidx.customview.R$drawable: int notification_template_icon_low_bg -androidx.preference.R$attr: int buttonGravity -android.didikee.donate.R$attr: int alertDialogTheme -android.didikee.donate.R$attr: int logo -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginTop -androidx.coordinatorlayout.R$id: int accessibility_custom_action_13 -androidx.viewpager2.R$styleable: int FontFamily_fontProviderPackage -androidx.viewpager2.R$dimen: int compat_notification_large_icon_max_width -com.google.android.material.R$styleable: int TabItem_android_icon +androidx.lifecycle.extensions.R$id: int blocking +okhttp3.internal.connection.StreamAllocation: okhttp3.Call call +cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_VIBRATE +james.adaptiveicon.R$color: int primary_material_light +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.Function leftEnd +wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_xml +wangdaye.com.geometricweather.R$string: int feedback_location_failed +cyanogenmod.weatherservice.WeatherProviderService$1 +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_multiChoiceItemLayout +androidx.drawerlayout.widget.DrawerLayout: void setDrawerListener(androidx.drawerlayout.widget.DrawerLayout$DrawerListener) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.google.android.material.R$attr: int hintEnabled +android.didikee.donate.R$styleable: int[] TextAppearance +cyanogenmod.app.CustomTile$ExpandedItem$1: CustomTile$ExpandedItem$1() +com.google.android.material.R$styleable: int Toolbar_titleTextColor +okhttp3.internal.http2.Http2Connection$6: int val$streamId +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node findByObject(java.lang.Object) +androidx.preference.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Dialog +cyanogenmod.profiles.StreamSettings: void setValue(int) +cyanogenmod.app.IProfileManager: android.app.NotificationGroup[] getNotificationGroups() +com.google.android.material.R$attr: int percentWidth +wangdaye.com.geometricweather.R$attr: int percentWidth +wangdaye.com.geometricweather.R$dimen: int abc_config_prefDialogWidth +androidx.legacy.coreutils.R$styleable: int GradientColor_android_startX +com.google.android.material.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_ttcIndex +androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableCompat +androidx.constraintlayout.widget.R$styleable: int MotionLayout_currentState +android.didikee.donate.R$style: int Base_V22_Theme_AppCompat +androidx.preference.R$style: int Widget_AppCompat_Button +com.amap.api.location.AMapLocationClientOption: long getScanWifiInterval() +okhttp3.CacheControl: int maxAgeSeconds() +wangdaye.com.geometricweather.remoteviews.config.Hilt_TextWidgetConfigActivity: Hilt_TextWidgetConfigActivity() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Colored +androidx.preference.R$attr: int reverseLayout +james.adaptiveicon.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +androidx.preference.R$id: int expand_activities_button +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontWeight +retrofit2.ParameterHandler: retrofit2.ParameterHandler iterable() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String direction +androidx.lifecycle.LiveData: LiveData(java.lang.Object) +cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitation() +com.google.android.material.R$bool +com.google.android.material.R$styleable: int MenuItem_tooltipText +cyanogenmod.content.Intent: java.lang.String EXTRA_RECENTS_LONG_PRESS_RELEASE +okio.Options: int[] trie +androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context,android.util.AttributeSet) +okhttp3.internal.cache.DiskLruCache: boolean hasJournalErrors +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitation +androidx.coordinatorlayout.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.R$color: int foreground_material_light +androidx.preference.R$attr: int popupMenuStyle +androidx.appcompat.resources.R$attr: int fontProviderFetchTimeout +com.xw.repo.bubbleseekbar.R$styleable: int[] FontFamilyFont +org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Iterable,boolean) +androidx.appcompat.R$dimen: int hint_pressed_alpha_material_dark +com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_indicator_material +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SeekBar_Discrete +androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver: ConstraintProxyUpdateReceiver() +com.google.android.material.R$style: int EmptyTheme +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setOffset(boolean) +com.jaredrummler.android.colorpicker.R$attr: int shouldDisableView +com.google.android.material.R$string: int character_counter_pattern +okhttp3.OkHttpClient$Builder: okhttp3.internal.cache.InternalCache internalCache +com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker +androidx.preference.PreferenceFragmentCompat: PreferenceFragmentCompat() +cyanogenmod.providers.CMSettings: boolean LOCAL_LOGV +com.google.android.gms.location.ActivityTransitionRequest +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleGravity(int) +cyanogenmod.externalviews.KeyguardExternalView: boolean access$802(cyanogenmod.externalviews.KeyguardExternalView,boolean) +com.amap.api.location.CoordUtil: boolean isLoadedSo() +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function7) +cyanogenmod.themes.ThemeManager$2 +com.google.android.material.R$attr: int contrast +okhttp3.EventListener$2 +retrofit2.SkipCallbackExecutorImpl: retrofit2.SkipCallbackExecutor INSTANCE +androidx.core.widget.NestedScrollView: int getMaxScrollAmount() +com.google.android.material.R$id: int customPanel +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult +james.adaptiveicon.R$attr: int textAppearanceLargePopupMenu +com.turingtechnologies.materialscrollbar.R$attr: R$attr() +androidx.hilt.lifecycle.R$id: int time +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_HIGH +okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_1 +androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory mFactory +okio.Buffer: okio.Buffer copyTo(java.io.OutputStream) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Caption +androidx.drawerlayout.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$style: int Base_Widget_Design_TabLayout +cyanogenmod.app.Profile$TriggerState +com.xw.repo.bubbleseekbar.R$style: int Platform_V21_AppCompat_Light +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +androidx.transition.R$layout: int notification_template_part_chronometer +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.viewpager2.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids +androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_inflatedId +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_seek_by_section +retrofit2.ParameterHandler$QueryMap: boolean encoded +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionMode +com.google.android.material.slider.Slider: int getLabelBehavior() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_EditText +james.adaptiveicon.R$layout: int notification_template_part_time +com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Theme_AppCompat +com.google.android.material.R$styleable: int Slider_thumbStrokeColor +androidx.work.Worker +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy SOURCE +cyanogenmod.os.Concierge$ParcelInfo: void complete() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: MfWarningsResult$WarningAdvice() +androidx.appcompat.R$anim: int abc_slide_out_top +wangdaye.com.geometricweather.R$drawable: int notif_temp_14 +com.xw.repo.bubbleseekbar.R$id: int blocking +wangdaye.com.geometricweather.R$attr: int fastScrollEnabled +james.adaptiveicon.R$dimen: int abc_button_inset_horizontal_material +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView +com.turingtechnologies.materialscrollbar.R$attr: int panelMenuListTheme +com.google.android.material.R$dimen: int abc_text_size_menu_material +wangdaye.com.geometricweather.R$string: int content_desc_search_filter_off +androidx.preference.R$style: int TextAppearance_AppCompat_Display1 +androidx.preference.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.R$attr: int bottom_text_size +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_5 +cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder(cyanogenmod.weather.WeatherInfo) +wangdaye.com.geometricweather.R$dimen: int mtrl_switch_thumb_elevation +wangdaye.com.geometricweather.R$drawable: int notif_temp_9 +com.google.android.material.slider.RangeSlider +androidx.lifecycle.LifecycleDispatcher: LifecycleDispatcher() +androidx.appcompat.widget.SearchView: int getSuggestionRowLayout() +androidx.preference.R$attr: int buttonTintMode +androidx.loader.R$id: int icon +com.google.android.material.R$color: int mtrl_navigation_item_background_color +android.didikee.donate.R$styleable: int Toolbar_logo +androidx.preference.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_2 +android.didikee.donate.R$style: int Widget_AppCompat_Spinner +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_minHeight +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void setCancellable(io.reactivex.functions.Cancellable) +wangdaye.com.geometricweather.R$id: int sort_button +androidx.appcompat.widget.ListPopupWindow: void setOnItemSelectedListener(android.widget.AdapterView$OnItemSelectedListener) +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_visible +okhttp3.FormBody: java.lang.String encodedValue(int) +com.jaredrummler.android.colorpicker.R$id: int activity_chooser_view_content +com.bumptech.glide.R$drawable: int notification_bg_low_normal +androidx.core.app.CoreComponentFactory: CoreComponentFactory() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result +wangdaye.com.geometricweather.R$attr: int progressIndicatorStyle +cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(java.util.Map,java.util.Map,cyanogenmod.themes.ThemeChangeRequest$RequestType,long) +okio.Buffer: okio.Buffer write(byte[]) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorPrimaryDark +com.jaredrummler.android.colorpicker.R$id: int message +androidx.lifecycle.ComputableLiveData$1: androidx.lifecycle.ComputableLiveData this$0 +james.adaptiveicon.R$attr: int tint +com.google.android.material.R$styleable: int FontFamilyFont_android_fontWeight +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundDrawable(android.graphics.drawable.Drawable) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Title +com.amap.api.location.AMapLocationClientOption: boolean isNeedAddress() +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean hasKey(java.lang.Object) +androidx.work.R$bool +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabText +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyleSmall +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial +androidx.constraintlayout.widget.R$styleable: int OnSwipe_maxAcceleration +com.google.android.material.R$styleable: int View_android_focusable +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_statusBarBackground +wangdaye.com.geometricweather.R$string: int clear_text_end_icon_content_description +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_50 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String value +cyanogenmod.app.BaseLiveLockManagerService$1: void cancelLiveLockScreen(java.lang.String,int,int) +wangdaye.com.geometricweather.R$styleable: int MaterialButton_shapeAppearance +androidx.preference.R$id: int scrollIndicatorUp +androidx.recyclerview.widget.RecyclerView: void setChildDrawingOrderCallback(androidx.recyclerview.widget.RecyclerView$ChildDrawingOrderCallback) +androidx.appcompat.R$styleable: int AppCompatTextView_drawableTint +com.jaredrummler.android.colorpicker.R$attr: int stackFromEnd +androidx.activity.R$id +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_3 +wangdaye.com.geometricweather.R$layout: int widget_clock_day_symmetry +io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_textColorHint +com.google.android.material.textfield.TextInputLayout: void setErrorIconTintMode(android.graphics.PorterDuff$Mode) +okhttp3.internal.http2.Http2Writer: boolean closed +cyanogenmod.app.Profile$Type +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: int UnitType +android.didikee.donate.R$styleable: int[] DrawerArrowToggle +com.jaredrummler.android.colorpicker.R$string: int abc_activity_chooser_view_see_all +androidx.coordinatorlayout.R$attr: int layout_anchorGravity +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias +okhttp3.internal.ws.WebSocketProtocol +okhttp3.CacheControl: boolean onlyIfCached +androidx.constraintlayout.widget.R$string: int abc_menu_ctrl_shortcut_label +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: boolean isCanceled() +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder addInterceptor(okhttp3.Interceptor) +androidx.preference.R$styleable: int AppCompatTheme_listPopupWindowStyle +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_12 +androidx.constraintlayout.widget.R$styleable: int Layout_barrierMargin +com.turingtechnologies.materialscrollbar.R$attr: int errorEnabled +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleContainer +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum +com.google.android.gms.common.internal.DowngradeableSafeParcel +androidx.constraintlayout.widget.R$styleable: int Constraint_android_alpha +com.google.android.material.R$id: int src_over +androidx.appcompat.R$dimen: int abc_text_size_caption_material +io.reactivex.disposables.RunnableDisposable: java.lang.String toString() +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_color +wangdaye.com.geometricweather.R$styleable: int Preference_defaultValue +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi mApi +androidx.lifecycle.ProcessLifecycleOwner$3 +james.adaptiveicon.R$attr: int dividerVertical +androidx.appcompat.R$integer: int abc_config_activityDefaultDur +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_transitionPathRotate +okio.RealBufferedSink: java.io.OutputStream outputStream() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarPopupTheme +okio.RealBufferedSource: boolean rangeEquals(long,okio.ByteString,int,int) +androidx.lifecycle.Transformations$1: Transformations$1(androidx.lifecycle.MediatorLiveData,androidx.arch.core.util.Function) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio +com.google.android.material.R$attr: int materialCalendarDay +com.google.android.material.R$styleable: int TextInputLayout_hintTextAppearance +wangdaye.com.geometricweather.R$dimen: int widget_grid_4 +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +com.google.android.material.textfield.TextInputLayout: int getBoxStrokeWidthFocused() +okhttp3.internal.Util: java.nio.charset.Charset ISO_8859_1 +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_arrowShaftLength +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WINDY +wangdaye.com.geometricweather.R$string: int settings_title_permanent_service +okio.Pipe$PipeSink: void close() +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String Link +com.jaredrummler.android.colorpicker.R$id: int image +androidx.appcompat.R$styleable: int MenuGroup_android_orderInCategory +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: int TRANSACTION_onWeatherServiceProviderChanged_0 +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_17 +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$array: int pressure_units +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Body1 +androidx.appcompat.R$drawable: int notification_bg_normal +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onKeyguardDismissed +androidx.hilt.work.R$id: int accessibility_custom_action_1 +com.google.android.material.tabs.TabLayout: int getTabCount() +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetEnd +com.google.android.material.slider.RangeSlider: void setThumbStrokeColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_minWidth +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +wangdaye.com.geometricweather.R$id: int add +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_label_padding +com.turingtechnologies.materialscrollbar.R$string: int character_counter_content_description +com.jaredrummler.android.colorpicker.R$styleable: int[] ViewStubCompat +wangdaye.com.geometricweather.R$id: int uniform +wangdaye.com.geometricweather.R$attr: int staggered +wangdaye.com.geometricweather.R$string: int common_google_play_services_enable_text +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.QueryBuilder queryBuilder() +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_collapseContentDescription +okhttp3.internal.ws.RealWebSocket: boolean writeOneFrame() +wangdaye.com.geometricweather.R$drawable: int notif_temp_58 +wangdaye.com.geometricweather.R$string: int key_notification_background_color +okhttp3.Request$Builder: okhttp3.Request$Builder method(java.lang.String,okhttp3.RequestBody) +com.bumptech.glide.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.R$dimen: int mtrl_large_touch_target +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA +com.xw.repo.bubbleseekbar.R$styleable: int[] AlertDialog +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_list_padding_top_no_title +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean profileExists(android.os.ParcelUuid) +org.greenrobot.greendao.AbstractDao: java.lang.String[] getAllColumns() +cyanogenmod.platform.R$integer: R$integer() +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() +com.turingtechnologies.materialscrollbar.R$attr: int tint +android.didikee.donate.R$styleable: int[] LinearLayoutCompat_Layout +org.greenrobot.greendao.AbstractDao: java.lang.Object loadCurrent(android.database.Cursor,int,boolean) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: java.lang.Integer freezing +com.autonavi.aps.amapapi.model.AMapLocationServer: int c() +com.xw.repo.bubbleseekbar.R$attr: int paddingBottomNoButtons +androidx.constraintlayout.widget.R$id: int image +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeProcessingListener mThemeProcessingListener +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moon +wangdaye.com.geometricweather.R$drawable: int notif_temp_128 +okhttp3.internal.http2.Http2Connection$1: okhttp3.internal.http2.ErrorCode val$errorCode +com.google.android.material.R$styleable: int[] View +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason SWITCH_TO_SOURCE_SERVICE +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: io.reactivex.Observer downstream +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_menu +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_30 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogStyle +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_precise_anchor_threshold +okio.ByteString: char[] HEX_DIGITS +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.hilt.R$styleable: int FragmentContainerView_android_name +okhttp3.CacheControl: CacheControl(okhttp3.CacheControl$Builder) +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream removeStream(int) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap +com.google.android.material.R$attr: int autoSizeTextType +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX getNames() +james.adaptiveicon.R$styleable: int[] AppCompatImageView +androidx.appcompat.R$attr: int alpha +okhttp3.internal.cache.CacheInterceptor$1: CacheInterceptor$1(okhttp3.internal.cache.CacheInterceptor,okio.BufferedSource,okhttp3.internal.cache.CacheRequest,okio.BufferedSink) +androidx.hilt.work.R$id: int blocking +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_timeText +cyanogenmod.app.IProfileManager: void resetAll() +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemTextColor +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String getUpdateIntervalName(android.content.Context) +com.amap.api.fence.GeoFenceManagerBase: android.app.PendingIntent createPendingIntent(java.lang.String) +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Dialog +wangdaye.com.geometricweather.R$drawable: int abc_popup_background_mtrl_mult +com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentStyle +androidx.recyclerview.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.hilt.work.R$styleable: int FragmentContainerView_android_tag +wangdaye.com.geometricweather.R$id: int stretch +androidx.appcompat.R$styleable: int ViewStubCompat_android_inflatedId +com.google.android.material.R$id: int action_menu_presenter +androidx.preference.R$layout: int abc_list_menu_item_layout +retrofit2.Retrofit: java.util.concurrent.Executor callbackExecutor() +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getCO() +wangdaye.com.geometricweather.R$color: int cpv_default_color +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void otherComplete() +cyanogenmod.providers.CMSettings$System: int getInt(android.content.ContentResolver,java.lang.String,int) +androidx.appcompat.R$id: int accessibility_custom_action_2 +io.reactivex.exceptions.MissingBackpressureException +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_FAST_AVG +com.xw.repo.bubbleseekbar.R$color: int abc_tint_edittext +okhttp3.internal.ws.RealWebSocket$CancelRunnable: RealWebSocket$CancelRunnable(okhttp3.internal.ws.RealWebSocket) +com.google.android.material.datepicker.MaterialTextInputPicker: MaterialTextInputPicker() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getRagweedDescription() +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long REQUEST_MASK +james.adaptiveicon.R$attr: int windowMinWidthMajor +com.google.android.material.R$attr: int layout_scrollInterpolator +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingLeft +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String weatherSource +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItemSecondary +androidx.preference.R$id: int tag_unhandled_key_event_manager +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.AbstractDaoSession session +android.didikee.donate.R$attr: int theme +wangdaye.com.geometricweather.R$styleable: int Transform_android_rotationX +wangdaye.com.geometricweather.R$xml: int widget_week +cyanogenmod.weather.WeatherInfo: java.lang.String toString() +wangdaye.com.geometricweather.R$attr: int autoCompleteTextViewStyle +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int SearchView_closeIcon +com.turingtechnologies.materialscrollbar.R$layout: int design_menu_item_action_area +com.google.android.material.R$attr: int itemShapeInsetBottom +androidx.preference.R$styleable: int StateListDrawable_android_constantSize +wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_liftable +com.amap.api.fence.GeoFence$1: GeoFence$1() +wangdaye.com.geometricweather.R$id: int design_bottom_sheet +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onComplete() +okio.Options: Options(okio.ByteString[],int[]) +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_android_minHeight +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: long updateTime wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: CNWeatherResult$Realtime$Wind() -com.google.android.material.R$drawable: int material_ic_menu_arrow_up_black_24dp -androidx.constraintlayout.widget.R$id: int action_text -com.google.android.material.R$id: int action_text -wangdaye.com.geometricweather.R$styleable: int[] TabItem -android.didikee.donate.R$id: int always -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property AqiIndex -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textFontWeight -wangdaye.com.geometricweather.R$dimen: int appcompat_dialog_background_inset -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_measureWithLargestChild -io.reactivex.Observable: io.reactivex.Observable switchMapMaybe(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$color: int colorSearchBarBackground_dark -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_CardView -com.bumptech.glide.integration.okhttp.R$drawable: int notification_template_icon_low_bg -okhttp3.internal.http2.Http2Stream$FramingSource: Http2Stream$FramingSource(okhttp3.internal.http2.Http2Stream,long) -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_circularRadius -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SeekBar_Discrete -com.jaredrummler.android.colorpicker.R$id: int submit_area -com.xw.repo.bubbleseekbar.R$attr: int colorError -com.google.android.material.R$dimen: int abc_alert_dialog_button_dimen -james.adaptiveicon.R$styleable: int Toolbar_titleMarginBottom -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_SPEED_UNIT -james.adaptiveicon.R$drawable: int abc_edit_text_material -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: int TRANSACTION_onLiveLockScreenChanged_0 -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Empty -wangdaye.com.geometricweather.R$id: int subtitle -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: void onFailure(retrofit2.Call,java.lang.Throwable) -wangdaye.com.geometricweather.R$dimen: int mtrl_card_dragged_z -okhttp3.internal.Util: java.util.Map immutableMap(java.util.Map) -com.google.android.material.R$dimen: int mtrl_textinput_box_stroke_width_focused -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean disposed -com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWeekWidgetConfigActivity -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.gms.location.LocationSettingsResult: android.os.Parcelable$Creator CREATOR -androidx.appcompat.R$color: int abc_primary_text_disable_only_material_light -okhttp3.internal.http2.Http2Codec: java.lang.String CONNECTION -android.didikee.donate.R$styleable: int ActionMode_subtitleTextStyle -androidx.preference.R$attr: int drawableSize -okhttp3.internal.http.CallServerInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.R$attr: int itemMaxLines -com.google.android.material.R$styleable: int[] AppCompatTextView -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long,boolean,int) -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void replay() -okhttp3.internal.http2.Http2Codec: Http2Codec(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http2.Http2Connection) -androidx.lifecycle.extensions.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$color: int mtrl_btn_transparent_bg_color -androidx.preference.R$styleable: int AppCompatTextView_autoSizeMinTextSize -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -androidx.recyclerview.widget.LinearLayoutManager$SavedState: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$styleable: int[] ThemeEnforcement -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_android_src -io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$attr: int expandedTitleMarginBottom +android.didikee.donate.R$styleable: int AppCompatTheme_controlBackground +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_isThemeApplying +wangdaye.com.geometricweather.R$attr: int chipStandaloneStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: AccuDailyResult$DailyForecasts() +androidx.fragment.R$id: int accessibility_custom_action_17 +androidx.hilt.work.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_background_overlay_color_alpha +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +androidx.preference.R$drawable: int abc_text_select_handle_right_mtrl_dark +cyanogenmod.app.CustomTile$ExpandedStyle$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$string: int content_des_minutely_precipitation +androidx.preference.R$styleable: int GradientColor_android_centerY +androidx.preference.R$styleable: int[] ListPopupWindow +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Body1 +androidx.work.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: double val +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_NULL_SHA +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit ATM +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul6H +com.turingtechnologies.materialscrollbar.R$dimen: int compat_notification_large_icon_max_width +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerY +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onError(java.lang.Throwable) +com.google.android.material.R$dimen: int material_clock_size +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBaseline_creator +james.adaptiveicon.R$attr: int textAppearanceListItemSmall +com.google.android.material.bottomappbar.BottomAppBar: float getFabTranslationX() +androidx.constraintlayout.widget.R$id: int rectangles +com.google.android.material.R$attr: int staggered +okhttp3.Headers: java.lang.String value(int) +android.didikee.donate.R$styleable: int AppCompatTheme_tooltipForegroundColor +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean validate(long) +wangdaye.com.geometricweather.R$drawable +com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWindLevel +okio.AsyncTimeout$2: okio.AsyncTimeout this$0 +cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder mService +com.google.android.material.R$styleable: int Chip_closeIconSize +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver parent +com.jaredrummler.android.colorpicker.R$dimen: int cpv_color_preference_normal +androidx.fragment.R$dimen: int compat_button_padding_horizontal_material +androidx.recyclerview.widget.RecyclerView +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Insert +wangdaye.com.geometricweather.R$drawable: int abc_cab_background_top_mtrl_alpha +okio.RealBufferedSource: java.lang.String readUtf8() +com.google.android.material.R$styleable: int ConstraintSet_android_orientation +wangdaye.com.geometricweather.R$styleable: int Slider_thumbRadius +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_36dp +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_125 +io.reactivex.internal.subscriptions.DeferredScalarSubscription: java.lang.Object poll() +wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_enforceTextAppearance +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_123 +com.google.android.material.R$attr: int contentPaddingRight +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setCityId(java.lang.String) +androidx.appcompat.R$attr: int actionBarTabStyle +james.adaptiveicon.R$attr: int track +com.google.android.material.appbar.AppBarLayout: int getTopInset() +androidx.constraintlayout.widget.R$attr: int radioButtonStyle +android.didikee.donate.R$layout: int notification_action +androidx.loader.R$id: int text2 +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintStart_toStartOf +androidx.lifecycle.MediatorLiveData: MediatorLiveData() +androidx.viewpager2.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitationDuration +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: long contentLength() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getBrandId() +okhttp3.logging.LoggingEventListener: void responseBodyEnd(okhttp3.Call,long) +com.turingtechnologies.materialscrollbar.R$dimen: int disabled_alpha_material_dark +androidx.preference.R$string: int abc_action_bar_home_description +com.amap.api.location.AMapLocationQualityReport: java.lang.Object clone() +androidx.appcompat.widget.SearchView: void setInputType(int) +com.google.android.material.R$attr: int trackTint +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void request(long) +androidx.viewpager.R$styleable: int FontFamilyFont_font +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() +okhttp3.internal.http2.Http2Writer: void writeMedium(okio.BufferedSink,int) +wangdaye.com.geometricweather.R$id: int packed +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +com.google.android.material.R$style: int TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String getLanguageName(android.content.Context) +retrofit2.Utils$ParameterizedTypeImpl: java.lang.String toString() +wangdaye.com.geometricweather.R$attr: int checkedButton +okhttp3.internal.http2.Hpack$Writer: int headerTableSizeSetting +android.didikee.donate.R$drawable: int abc_text_select_handle_middle_mtrl_dark +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display3 +androidx.vectordrawable.R$dimen: int notification_action_text_size +android.didikee.donate.R$attr: int title +com.google.android.material.R$styleable: int Layout_minHeight +wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean isEntityUpdateable() +com.google.android.material.R$styleable: int AppCompatTextView_fontVariationSettings +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: boolean done +okio.HashingSink: okio.HashingSink md5(okio.Sink) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: ObservableSampleWithObservable$SampleMainNoLast(io.reactivex.Observer,io.reactivex.ObservableSource) +com.google.android.material.R$styleable: int Toolbar_contentInsetEndWithActions +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeFindDrawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String getUnit() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_small_material +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_NoActionBar +cyanogenmod.weatherservice.ServiceRequestResult: void writeToParcel(android.os.Parcel,int) +cyanogenmod.app.IPartnerInterface$Stub$Proxy: void setMobileDataEnabled(boolean) +androidx.swiperefreshlayout.R$id: int tag_screen_reader_focusable +cyanogenmod.app.CustomTile$ExpandedStyle: cyanogenmod.app.CustomTile$ExpandedItem[] getExpandedItems() +wangdaye.com.geometricweather.R$id: int activity_widget_config_viewStyleContainer +androidx.appcompat.R$styleable: int Toolbar_buttonGravity +android.didikee.donate.R$styleable: int Spinner_android_prompt +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) +com.google.android.gms.common.server.response.SafeParcelResponse +wangdaye.com.geometricweather.R$layout: int design_navigation_item_header +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationZ +james.adaptiveicon.R$styleable: int FontFamily_fontProviderQuery +com.google.android.material.R$drawable: int abc_ic_menu_overflow_material +androidx.dynamicanimation.R$id: int action_divider +android.didikee.donate.R$attr: int colorPrimary +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: ObservableTimer$TimerObserver(io.reactivex.Observer) +com.turingtechnologies.materialscrollbar.R$attr: int dialogPreferredPadding +okio.BufferedSink: okio.BufferedSink writeInt(int) +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_maxProgress +cyanogenmod.themes.ThemeManager: java.util.Set mChangeListeners +wangdaye.com.geometricweather.R$attr: int checkedTextViewStyle +com.google.android.material.R$string: int path_password_eye +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorError +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_toId +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean recover(java.io.IOException,okhttp3.internal.connection.StreamAllocation,boolean,okhttp3.Request) +wangdaye.com.geometricweather.R$id: int dialog_background_location_setButton +androidx.customview.R$style: int TextAppearance_Compat_Notification +androidx.appcompat.R$attr: int paddingEnd +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_card_spacing +cyanogenmod.app.BaseLiveLockManagerService: void enforceAccessPermission() +androidx.preference.R$id: int accessibility_custom_action_14 +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_motionProgress +james.adaptiveicon.R$attr: int switchTextAppearance +com.jaredrummler.android.colorpicker.R$id: int text +androidx.appcompat.R$drawable: int abc_ic_star_black_36dp +androidx.preference.R$styleable: int MenuItem_iconTint +okio.Buffer: byte[] DIGITS +androidx.preference.R$style: int TextAppearance_AppCompat_Title +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconTint +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: int getTemperature() +james.adaptiveicon.R$drawable: int abc_popup_background_mtrl_mult +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder retryOnConnectionFailure(boolean) +com.turingtechnologies.materialscrollbar.R$attr: int actionModeCloseDrawable +com.xw.repo.bubbleseekbar.R$drawable: int abc_tab_indicator_mtrl_alpha +okhttp3.internal.http.HttpDate: java.lang.String[] BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS +wangdaye.com.geometricweather.R$array: int weather_source_values +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getDegreeDayTemperature() +com.jaredrummler.android.colorpicker.R$string: int expand_button_title +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_creator +androidx.activity.R$id: int accessibility_custom_action_5 +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_seekBarPreferenceStyle +okio.ForwardingTimeout: ForwardingTimeout(okio.Timeout) +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder tlsVersions(java.lang.String[]) +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder supportsTlsExtensions(boolean) +okhttp3.internal.Version: java.lang.String userAgent() +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void dispose() +androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight +com.google.android.material.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +com.google.android.material.chip.Chip: void setChipTextResource(int) +com.turingtechnologies.materialscrollbar.R$layout: int abc_activity_chooser_view_list_item +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatPressedTranslationZResource(int) +wangdaye.com.geometricweather.R$dimen: int notification_small_icon_background_padding +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getSerialNumber() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Daylight +androidx.preference.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void drain() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitation +com.google.android.material.R$dimen: int design_bottom_navigation_item_max_width +androidx.preference.R$styleable: int BackgroundStyle_selectableItemBackground +cyanogenmod.app.Profile: cyanogenmod.profiles.RingModeSettings mRingMode +android.didikee.donate.R$drawable: int abc_ic_menu_overflow_material +retrofit2.ParameterHandler$FieldMap: retrofit2.Converter valueConverter +com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode Device_Sensors +com.google.android.material.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +androidx.appcompat.R$color: int material_deep_teal_200 +retrofit2.OkHttpCall$NoContentResponseBody: long contentLength +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_PopupMenu +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startColor +com.xw.repo.bubbleseekbar.R$attr: int colorPrimary +androidx.core.widget.NestedScrollView: float getTopFadingEdgeStrength() +androidx.viewpager2.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: long EpochTime +com.google.android.material.R$attr: int materialCalendarHeaderSelection +wangdaye.com.geometricweather.R$color: int switch_thumb_material_light +io.reactivex.Observable: io.reactivex.Observable concatMapMaybe(io.reactivex.functions.Function) +android.didikee.donate.R$dimen: int abc_action_bar_elevation_material +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar +james.adaptiveicon.R$styleable: int ViewBackgroundHelper_backgroundTintMode +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: void run() +wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarButtonStyle +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Light +wangdaye.com.geometricweather.R$dimen: int design_tab_scrollable_min_width +cyanogenmod.platform.R$xml +androidx.activity.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.R$interpolator: int mtrl_fast_out_linear_in +wangdaye.com.geometricweather.db.entities.WeatherEntityDao +androidx.loader.R$layout: int notification_action +androidx.viewpager2.R$attr: int fastScrollHorizontalThumbDrawable +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver CANCELLED +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean active +android.didikee.donate.R$styleable: int Toolbar_collapseContentDescription +com.google.android.material.R$style: int Base_Widget_AppCompat_ListView_Menu +io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function,io.reactivex.functions.Function) +androidx.transition.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWindDirection() +wangdaye.com.geometricweather.R$integer: int mtrl_btn_anim_duration_ms +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Primary +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low_normal +androidx.loader.R$attr: int fontWeight +androidx.appcompat.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.R$xml: R$xml() +com.turingtechnologies.materialscrollbar.R$attr: int colorSecondary +james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupMenu +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification +com.google.android.material.R$styleable: int[] FlowLayout +com.jaredrummler.android.colorpicker.R$string: int abc_menu_sym_shortcut_label +wangdaye.com.geometricweather.R$color: int colorTextTitle +com.google.android.material.R$styleable: int[] Toolbar +com.amap.api.location.AMapLocation: int describeContents() +com.google.android.material.chip.Chip: void setChipCornerRadius(float) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void run() +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarContainer +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorBackgroundFloating +androidx.fragment.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +androidx.appcompat.R$styleable: int AppCompatTheme_colorPrimaryDark +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_bottom_padding +com.xw.repo.bubbleseekbar.R$attr: int toolbarStyle +com.google.android.material.R$attr: int contentInsetStartWithNavigation +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_sliderColor +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.AnimatorSet indeterminateAnimator +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HOME_WAKE_SCREEN_VALIDATOR +androidx.core.R$id: int tag_transition_group +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_13 +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderQuery +okio.ForwardingSource: long read(okio.Buffer,long) +com.bumptech.glide.integration.okhttp.R$layout: int notification_action_tombstone +retrofit2.adapter.rxjava2.CallEnqueueObservable: retrofit2.Call originalCall +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RealFeelTemperature +androidx.preference.PreferenceManager: void setOnNavigateToScreenListener(androidx.preference.PreferenceManager$OnNavigateToScreenListener) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8 +com.google.android.material.R$styleable: int Transform_android_translationZ +cyanogenmod.providers.CMSettings$Secure: java.lang.String __MAGICAL_TEST_PASSING_ENABLER +okhttp3.internal.http2.Http2Stream: void closeLater(okhttp3.internal.http2.ErrorCode) +com.google.android.material.internal.ParcelableSparseBooleanArray: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$styleable: int Toolbar_menu +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void dispose() +okhttp3.ConnectionSpec$Builder: boolean tls +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSrc(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstVerticalBias +com.bumptech.glide.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.R$id: int src_atop +com.google.android.material.R$style: int ShapeAppearanceOverlay +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: int getStatus() +androidx.constraintlayout.widget.R$layout: int abc_action_bar_title_item +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: void run() +androidx.loader.R$styleable: int FontFamilyFont_android_font +com.google.android.material.R$attr: int layout_constraintCircleRadius +android.didikee.donate.R$styleable: int MenuGroup_android_enabled +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String speed +androidx.appcompat.R$styleable: int ActionBar_backgroundSplit +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: java.util.Date Date +com.turingtechnologies.materialscrollbar.R$color: int ripple_material_light +android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedHeightMajor +cyanogenmod.themes.ThemeManager$2$1: ThemeManager$2$1(cyanogenmod.themes.ThemeManager$2,java.lang.String) +okhttp3.internal.http.RealInterceptorChain: java.util.List interceptors +james.adaptiveicon.R$layout: int abc_activity_chooser_view_list_item +okhttp3.internal.cache.DiskLruCache: java.lang.String MAGIC +com.turingtechnologies.materialscrollbar.R$attr: int dropdownListPreferredItemHeight +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int COLD +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: CircularProgressViewAdapter() +androidx.preference.R$styleable: int ActionBar_progressBarStyle +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +androidx.dynamicanimation.R$integer: R$integer() +cyanogenmod.themes.ThemeManager$1$1: ThemeManager$1$1(cyanogenmod.themes.ThemeManager$1,int) +com.google.android.gms.location.ActivityTransitionResult: android.os.Parcelable$Creator CREATOR +retrofit2.HttpServiceMethod$SuspendForBody: retrofit2.CallAdapter callAdapter +androidx.lifecycle.SavedStateHandle$1: androidx.lifecycle.SavedStateHandle this$0 +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeightLarge +com.jaredrummler.android.colorpicker.R$id: int submenuarrow +com.baidu.location.f +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.google.android.material.R$dimen: int default_dimension +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String getTo() +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String toStr(int) +androidx.viewpager2.R$styleable: int GradientColor_android_startColor +com.xw.repo.bubbleseekbar.R$attr: int alertDialogTheme +com.xw.repo.bubbleseekbar.R$anim: int abc_grow_fade_in_from_bottom +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onAttach(android.os.IBinder) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle +androidx.core.R$layout: int notification_action +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$GeoLanguage getGeoLanguage() +cyanogenmod.externalviews.KeyguardExternalView$10: cyanogenmod.externalviews.KeyguardExternalView this$0 +com.google.android.material.R$styleable: int MaterialCheckBox_useMaterialThemeColors +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode valueOf(java.lang.String) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_17 +androidx.core.content.FileProvider: FileProvider() +androidx.constraintlayout.widget.R$id: int bounce +androidx.preference.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: double Value +androidx.lifecycle.MediatorLiveData$Source: androidx.lifecycle.LiveData mLiveData +wangdaye.com.geometricweather.R$id: int flip +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_submitBackground +wangdaye.com.geometricweather.R$attr: int suffixText +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontWeight +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.disposables.Disposable upstream +com.bumptech.glide.integration.okhttp.R$attr: int ttcIndex +okio.RealBufferedSink$1: java.lang.String toString() +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontStyle +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Time +cyanogenmod.profiles.AirplaneModeSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.preference.R$id: int right_side +androidx.work.R$id: int accessibility_custom_action_31 +io.reactivex.internal.operators.observable.ObserverResourceWrapper: boolean isDisposed() +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemPosition(int) +com.google.android.material.R$styleable: int RecyclerView_spanCount +com.google.android.gms.location.zzay +com.google.android.material.slider.BaseSlider: void setThumbStrokeColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial Imperial +okhttp3.OkHttpClient$1: okhttp3.internal.connection.RealConnection get(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) +androidx.fragment.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$color: int checkbox_themeable_attribute_color +com.xw.repo.bubbleseekbar.R$layout: int notification_template_icon_group +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextColor +androidx.work.impl.utils.futures.DirectExecutor: void execute(java.lang.Runnable) +com.google.android.material.R$layout: int abc_popup_menu_item_layout +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +wangdaye.com.geometricweather.background.receiver.widget.WidgetTextProvider: WidgetTextProvider() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +wangdaye.com.geometricweather.R$attr: int altSrc +okhttp3.internal.http2.Http2Stream$FramingSink: okhttp3.internal.http2.Http2Stream this$0 +okhttp3.internal.ws.WebSocketWriter: okhttp3.internal.ws.WebSocketWriter$FrameSink frameSink +android.didikee.donate.R$attr: int tickMarkTintMode +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener getRequestListener() +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceTheme +androidx.hilt.lifecycle.R$dimen: int notification_action_text_size +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Spinner +androidx.appcompat.widget.ActionMenuView: android.graphics.drawable.Drawable getOverflowIcon() +com.autonavi.aps.amapapi.model.AMapLocationServer: long k() +wangdaye.com.geometricweather.R$anim: int abc_grow_fade_in_from_bottom +androidx.preference.R$attr: int order +com.google.android.material.R$styleable: int OnSwipe_nestedScrollFlags +androidx.preference.R$layout: int abc_search_dropdown_item_icons_2line +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit KGFPSQCM +io.reactivex.internal.observers.BasicIntQueueDisposable: int requestFusion(int) +com.google.android.material.R$layout: int material_time_input +androidx.preference.R$drawable: int abc_ic_arrow_drop_right_black_24dp +androidx.swiperefreshlayout.R$id: int title +androidx.dynamicanimation.R$id: int action_container +wangdaye.com.geometricweather.main.MainActivity: MainActivity() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingStart +androidx.hilt.R$id: int tag_unhandled_key_event_manager +cyanogenmod.providers.CMSettings$System: java.lang.String DIALER_OPENCNAM_AUTH_TOKEN +james.adaptiveicon.R$attr: int tooltipFrameBackground +com.google.android.material.R$styleable: int TextAppearance_android_textColor +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListMenuView +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onNext(java.lang.Object) +james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: ExecutorScheduler$ExecutorWorker$BooleanRunnable(java.lang.Runnable) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_singleChoiceItemLayout +cyanogenmod.app.ProfileManager: void removeProfile(cyanogenmod.app.Profile) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.util.Date Rise +androidx.constraintlayout.widget.R$attr: int viewInflaterClass +android.didikee.donate.R$drawable: int abc_text_select_handle_left_mtrl_dark +androidx.preference.R$styleable: int PopupWindow_android_popupAnimationStyle +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_background +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_padding +androidx.appcompat.R$attr: int textAppearanceLargePopupMenu +com.google.android.material.R$attr: int cardViewStyle retrofit2.BuiltInConverters$StreamingResponseBodyConverter: retrofit2.BuiltInConverters$StreamingResponseBodyConverter INSTANCE -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerNext(int,java.lang.Object) -com.google.android.material.R$styleable: int SnackbarLayout_backgroundTintMode -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onNext(java.lang.Object) -okhttp3.Cookie$Builder: boolean secure -androidx.constraintlayout.widget.R$attr: int textAppearanceLargePopupMenu -wangdaye.com.geometricweather.settings.dialogs.AnimatableIconDialog: AnimatableIconDialog() -com.google.android.material.R$id: int submit_area -okhttp3.OkHttpClient$Builder: okhttp3.Dispatcher dispatcher -cyanogenmod.providers.CMSettings$DiscreteValueValidator: java.lang.String[] mValues -com.turingtechnologies.materialscrollbar.R$string: int fab_transformation_sheet_behavior -com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_103 -okhttp3.internal.http2.Header: int hashCode() -okhttp3.OkHttpClient$Builder: int connectTimeout -com.google.android.gms.auth.api.signin.GoogleSignInAccount: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$color: int material_on_background_emphasis_medium -androidx.preference.R$style: int Widget_AppCompat_CompoundButton_Switch -okhttp3.Request$Builder: okhttp3.Request$Builder url(java.net.URL) -wangdaye.com.geometricweather.R$attr: int contentInsetRight -androidx.preference.R$styleable: int PreferenceFragment_android_divider -android.didikee.donate.R$id: int checkbox -okhttp3.internal.http1.Http1Codec$AbstractSource: void endOfInput(boolean,java.io.IOException) -okio.ForwardingTimeout: void throwIfReached() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeFindDrawable -com.google.android.material.R$styleable: int Layout_android_layout_marginEnd -wangdaye.com.geometricweather.R$layout: int widget_day_oreo_google_sans -androidx.appcompat.R$styleable: int AppCompatTheme_listMenuViewStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -com.amap.api.location.AMapLocation: int b(com.amap.api.location.AMapLocation,int) -okio.ByteString: byte getByte(int) -cyanogenmod.weatherservice.WeatherProviderService: void onRequestCancelled(cyanogenmod.weatherservice.ServiceRequest) -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Bridge -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalGap -io.reactivex.Observable: io.reactivex.Observable range(int,int) -com.google.android.material.R$id: int NO_DEBUG -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String getDescription() +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.Observer downstream +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object readKey(android.database.Cursor,int) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text +androidx.viewpager.R$drawable: int notification_icon_background +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView_DropDown +androidx.constraintlayout.widget.R$styleable: int Layout_constraint_referenced_ids +cyanogenmod.profiles.ConnectionSettings: boolean mDirty +androidx.appcompat.R$drawable: int abc_tab_indicator_mtrl_alpha +cyanogenmod.app.IPartnerInterface: boolean setZenMode(int) +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: long endValidityTime +androidx.vectordrawable.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_handleColor +com.turingtechnologies.materialscrollbar.R$attr: int scrimAnimationDuration +wangdaye.com.geometricweather.R$layout: int design_navigation_item +okhttp3.internal.connection.RouteSelector: java.util.List inetSocketAddresses +com.jaredrummler.android.colorpicker.R$layout: int select_dialog_item_material +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_item_max_width +com.turingtechnologies.materialscrollbar.R$attr: int actionModeStyle +com.google.android.material.textfield.TextInputLayout: void setEndIconTintList(android.content.res.ColorStateList) +com.google.android.material.R$attr: int thumbTextPadding +com.google.gson.stream.JsonReader: boolean lenient +okio.Buffer: okio.BufferedSink emitCompleteSegments() +wangdaye.com.geometricweather.db.entities.LocationEntity: void setWeatherSource(wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource) +okhttp3.ConnectionSpec: java.lang.String toString() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String ragweedDescription +wangdaye.com.geometricweather.R$drawable: int abc_vector_test +androidx.fragment.app.FragmentTabHost$SavedState: android.os.Parcelable$Creator CREATOR +com.jaredrummler.android.colorpicker.R$color: int primary_text_default_material_light +androidx.viewpager2.R$id: int forever +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: java.lang.String Unit +androidx.appcompat.view.menu.ActionMenuItemView: void setPopupCallback(androidx.appcompat.view.menu.ActionMenuItemView$PopupCallback) +android.didikee.donate.R$styleable: int TextAppearance_android_shadowColor +okio.Buffer$1: java.lang.String toString() cyanogenmod.hardware.ICMHardwareService: java.lang.String getUniqueDeviceId() -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: int getMarginTop() -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicator -cyanogenmod.themes.ThemeManager: boolean isThemeApplying() -androidx.hilt.lifecycle.R$dimen: int compat_notification_large_icon_max_width -androidx.preference.R$string -androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context) -android.didikee.donate.R$dimen: int abc_search_view_preferred_width -androidx.vectordrawable.animated.R$layout: int custom_dialog -cyanogenmod.externalviews.ExternalView$8: cyanogenmod.externalviews.ExternalView this$0 -androidx.preference.R$drawable: int abc_ic_arrow_drop_right_black_24dp -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: ILiveLockScreenChangeListener$Stub$Proxy(android.os.IBinder) -androidx.lifecycle.SingleGeneratedAdapterObserver: androidx.lifecycle.GeneratedAdapter mGeneratedAdapter -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardBackgroundColor +wangdaye.com.geometricweather.R$string: int mtrl_exceed_max_badge_number_suffix +android.support.v4.app.RemoteActionCompatParcelizer +wangdaye.com.geometricweather.common.basic.models.weather.History: java.util.Date date +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getNighttimeWeatherCode() +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_disabled +cyanogenmod.hardware.ICMHardwareService: boolean requireAdaptiveBacklightForSunlightEnhancement() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_SearchView +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_right_mtrl_light +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextTextColor +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_3DES_EDE_CBC_SHA +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult +com.google.android.material.R$drawable: int abc_edit_text_material +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean isDisposed() +com.google.android.material.R$id: int line3 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getCeiling() +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_menuCategory +androidx.appcompat.R$string: int abc_activity_chooser_view_see_all +androidx.preference.R$id +wangdaye.com.geometricweather.R$styleable: int SwitchImageButton_drawable_res_on +cyanogenmod.app.CustomTile$ListExpandedStyle: void setListItems(java.util.ArrayList) +androidx.appcompat.widget.AppCompatButton: int getAutoSizeMaxTextSize() +wangdaye.com.geometricweather.R$attr: int textColorSearchUrl +com.google.android.material.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +androidx.appcompat.R$styleable: int View_paddingEnd +androidx.lifecycle.ClassesInfoCache$MethodReference: int mCallType +wangdaye.com.geometricweather.R$id: int widget_week_temp_4 +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windDirection +com.google.android.material.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.R$string: int feedback_clock_font +androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogStyle +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$color: int design_fab_shadow_start_color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric() +com.turingtechnologies.materialscrollbar.R$layout: int abc_tooltip +com.turingtechnologies.materialscrollbar.R$id: int radio +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +com.google.gson.internal.LinkedTreeMap: LinkedTreeMap(java.util.Comparator) +androidx.core.R$integer: R$integer() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_256_CCM_8_SHA256 +wangdaye.com.geometricweather.R$xml: int icon_provider_animator_filter +okhttp3.internal.http2.Hpack$Reader: void adjustDynamicTableByteCount() +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerSlack +cyanogenmod.profiles.LockSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.appcompat.R$attr: int contentInsetStartWithNavigation +cyanogenmod.weather.WeatherLocation: java.lang.String access$502(cyanogenmod.weather.WeatherLocation,java.lang.String) +wangdaye.com.geometricweather.R$id: int visible +james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +com.xw.repo.bubbleseekbar.R$id: int search_close_btn +androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context,android.util.AttributeSet) +androidx.cardview.R$attr: int contentPaddingRight +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification +com.google.android.material.imageview.ShapeableImageView: void setStrokeColorResource(int) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconSize +androidx.recyclerview.R$styleable: int RecyclerView_layoutManager +androidx.lifecycle.Transformations$1 +androidx.work.impl.WorkManagerInitializer +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedFragment(java.lang.String) +androidx.preference.R$style: int Widget_AppCompat_Button_Small +com.google.android.material.R$string: int mtrl_picker_day_of_week_column_header +androidx.viewpager2.R$styleable: int FontFamily_fontProviderAuthority +androidx.appcompat.resources.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum +com.amap.api.fence.DistrictItem: java.lang.String a +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_2 +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver INNER_DISPOSED +androidx.constraintlayout.widget.R$id: int action_mode_close_button +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +androidx.lifecycle.LiveData: void setValue(java.lang.Object) +androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat_Light +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_set +com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getRippleColorStateList() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_arrow_drop_right_black_24dp +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_maxLines +androidx.activity.R$drawable: int notification_tile_bg +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_cancelLiveLockScreen +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: boolean inSingle +com.google.android.material.R$styleable: int TextInputLayout_android_textColorHint +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedWidthMajor +androidx.legacy.coreutils.R$id: int action_image +com.google.android.gms.common.api.ResolvableApiException: void startResolutionForResult(android.app.Activity,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitation +androidx.activity.R$string +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoDownloadInterval +wangdaye.com.geometricweather.R$drawable: int ic_email +com.google.android.material.R$id: int mtrl_picker_header_selection_text +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_recyclerView +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$id: int item_about_translator_flag +james.adaptiveicon.R$styleable: int TextAppearance_textLocale +cyanogenmod.externalviews.KeyguardExternalView$3: KeyguardExternalView$3(cyanogenmod.externalviews.KeyguardExternalView,int,int,int,int,boolean,android.graphics.Rect) +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date setDate +com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.drawable.Drawable getContentScrim() +wangdaye.com.geometricweather.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.R$attr: int paddingRightSystemWindowInsets +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property AqiText +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +androidx.appcompat.R$attr: int trackTint +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontStyle +james.adaptiveicon.R$style: int Widget_AppCompat_ProgressBar_Horizontal +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_layout +androidx.constraintlayout.widget.R$styleable: int ActionMode_titleTextStyle +androidx.preference.R$id: int forever +androidx.preference.R$attr: int subtitleTextAppearance +androidx.appcompat.R$drawable: int abc_cab_background_internal_bg +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float icePrecipitation +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitationDuration +androidx.preference.R$styleable: int ActionMenuItemView_android_minWidth +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver parent +com.google.android.material.R$id: int packed +android.didikee.donate.R$dimen: int abc_edit_text_inset_bottom_material +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +androidx.lifecycle.extensions.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$id: int widget_day_week_title +wangdaye.com.geometricweather.common.basic.models.weather.UV: boolean isValidIndex() +com.google.android.material.R$attr: int valueTextColor +james.adaptiveicon.R$attr: int backgroundStacked +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light +androidx.legacy.coreutils.R$dimen: int notification_top_pad_large_text +com.jaredrummler.android.colorpicker.R$layout: R$layout() +com.xw.repo.bubbleseekbar.R$styleable: int RecycleListView_paddingTopNoTitle +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(java.lang.Iterable,io.reactivex.functions.Function) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MOSTLY_CLOUDY_NIGHT +cyanogenmod.weatherservice.WeatherProviderService: java.lang.String SERVICE_META_DATA +wangdaye.com.geometricweather.R$layout: int item_weather_daily_overview +androidx.lifecycle.GenericLifecycleObserver +com.xw.repo.bubbleseekbar.R$dimen: int abc_button_inset_vertical_material +wangdaye.com.geometricweather.R$styleable: int CompoundButton_android_button +androidx.constraintlayout.widget.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: int Degrees +androidx.constraintlayout.widget.R$attr: int toolbarNavigationButtonStyle +androidx.core.R$styleable +androidx.preference.R$style: int Base_V22_Theme_AppCompat +androidx.recyclerview.widget.RecyclerView$LayoutManager$Properties +com.google.android.material.tabs.TabItem: TabItem(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_width +cyanogenmod.app.PartnerInterface +com.google.android.material.R$color: int design_default_color_on_primary +androidx.constraintlayout.widget.R$attr: int listItemLayout +cyanogenmod.media.MediaRecorder: java.lang.String EXTRA_HOTWORD_INPUT_STATE +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: ObservableWithLatestFromMany$WithLatestInnerObserver(io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver,int) +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CUSTOM_VALUES +android.didikee.donate.R$drawable: int abc_ic_star_half_black_48dp +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: void setFrom(java.util.Date) +wangdaye.com.geometricweather.R$styleable: int Motion_animate_relativeTo +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.lang.Throwable error +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_queryHint +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State BLOCKED +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Time +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText +com.google.android.material.R$styleable: int KeyTimeCycle_transitionPathRotate +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_month_abbr +com.google.android.material.R$layout: int notification_template_part_chronometer +com.google.android.material.textfield.TextInputLayout: void setEndIconActivated(boolean) +com.google.android.material.R$style: int Base_V23_Theme_AppCompat +com.turingtechnologies.materialscrollbar.R$attr: int actionModeSelectAllDrawable +io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.SingleSource) +com.google.android.material.R$styleable: int SearchView_commitIcon +androidx.appcompat.R$attr: int dialogTheme +com.google.android.material.R$drawable: int btn_radio_on_to_off_mtrl_animation +com.google.android.material.R$styleable: int SwitchCompat_android_textOn +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: java.lang.String icon +wangdaye.com.geometricweather.R$id: int activity_settings_toolbar +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +com.jaredrummler.android.colorpicker.R$attr: int actionButtonStyle +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Menu +android.didikee.donate.R$attr: int showDividers +androidx.cardview.R$attr: int contentPadding +android.didikee.donate.R$anim: int abc_shrink_fade_out_from_bottom +com.google.android.material.R$attr: int selectorSize +com.xw.repo.bubbleseekbar.R$attr: int dialogTheme +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalGap +androidx.appcompat.widget.AppCompatSpinner: void setPopupBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetLeft +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency PressureTendency +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language UNSIMPLIFIED_CHINESE +androidx.fragment.app.BackStackRecord +androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior: CoordinatorLayout$Behavior() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat +androidx.dynamicanimation.R$id: int right_icon +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +james.adaptiveicon.R$color: int background_material_dark +com.google.android.material.R$id: int transition_layout_save +com.google.android.material.R$styleable: int Layout_barrierAllowsGoneWidgets +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_xml +com.google.android.material.R$styleable: int MaterialCardView_shapeAppearanceOverlay +wangdaye.com.geometricweather.R$id: int container_main_aqi +androidx.preference.R$styleable: int TextAppearance_android_shadowDx +androidx.appcompat.widget.ActionMenuView: void setOverflowReserved(boolean) +com.google.android.material.R$styleable: int Slider_tickVisible +androidx.constraintlayout.widget.R$styleable: int Toolbar_maxButtonHeight +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button +wangdaye.com.geometricweather.R$attr: int hintTextColor +com.bumptech.glide.load.engine.GlideException: java.util.List getCauses() +retrofit2.Utils +androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$attr: int tickMarkTintMode +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.R$styleable: int Slider_android_value +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language KOREAN +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.functions.Function mapper +wangdaye.com.geometricweather.R$string: int content_desc_app_store +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_top +androidx.constraintlayout.widget.R$attr: int thumbTintMode +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_orientation +cyanogenmod.profiles.ConnectionSettings: int mValue +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +com.github.rahatarmanahmed.cpv.CircularProgressView: void onMeasure(int,int) +okhttp3.Cache: void trackConditionalCacheHit() +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getDirection() +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver +android.didikee.donate.R$style: int Widget_AppCompat_ButtonBar +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textStyle +james.adaptiveicon.R$layout: int abc_screen_simple_overlay_action_mode +androidx.preference.R$anim: int abc_shrink_fade_out_from_bottom +com.google.android.material.R$attr: int layout_behavior +james.adaptiveicon.R$attr: int buttonBarNegativeButtonStyle +androidx.preference.R$attr: int textAppearanceListItemSmall +retrofit2.RequestFactory$Builder: retrofit2.Retrofit retrofit +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleDrawable +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_4 +com.jaredrummler.android.colorpicker.R$attr: int subtitleTextColor +cyanogenmod.externalviews.KeyguardExternalView$11: KeyguardExternalView$11(cyanogenmod.externalviews.KeyguardExternalView,float) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalGap +com.google.android.material.R$string: int mtrl_picker_confirm +okhttp3.internal.ws.WebSocketProtocol: WebSocketProtocol() +com.google.android.material.R$attr: int percentY +androidx.recyclerview.R$id: int accessibility_custom_action_31 +androidx.loader.R$attr: int fontStyle +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setCity(java.lang.String) +okhttp3.internal.ws.RealWebSocket$Close +com.google.android.gms.internal.location.zzj +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_inverse +androidx.hilt.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getEn_US() +androidx.viewpager2.R$dimen: int notification_media_narrow_margin +okhttp3.Cookie$Builder: boolean hostOnly +androidx.preference.R$attr: int preferenceFragmentCompatStyle +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_LED_OFF_VALIDATOR +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTheme +androidx.preference.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: int UnitType +com.turingtechnologies.materialscrollbar.R$layout: int design_layout_tab_icon +okhttp3.internal.platform.AndroidPlatform +wangdaye.com.geometricweather.R$string: int local_time +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endColor +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +androidx.recyclerview.R$styleable: int GradientColor_android_endX +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CUSTOM_VALUES_VALIDATOR +androidx.preference.R$style: int TextAppearance_AppCompat_Medium_Inverse +com.jaredrummler.android.colorpicker.R$id: int text2 +com.google.android.material.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit) +androidx.preference.R$attr: int menu +org.greenrobot.greendao.AbstractDao: java.lang.Object loadCurrentOther(org.greenrobot.greendao.AbstractDao,android.database.Cursor,int) +wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Text +com.jaredrummler.android.colorpicker.R$attr: int tickMark +androidx.vectordrawable.animated.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderQuery +com.bumptech.glide.integration.okhttp.R$dimen: int notification_top_pad_large_text +okio.Buffer: okio.Buffer write(okio.ByteString) +androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentX +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sColorValidator +androidx.transition.R$id: int line3 +okhttp3.internal.http2.Hpack$Writer: int evictToRecoverBytes(int) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +com.google.android.material.R$dimen: int mtrl_extended_fab_disabled_elevation +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorGravity +com.google.android.material.R$attr: int curveFit +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 +androidx.coordinatorlayout.widget.CoordinatorLayout$SavedState +wangdaye.com.geometricweather.R$layout: int abc_search_view +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontStyle +com.google.android.material.R$attr: int windowActionBar +androidx.constraintlayout.widget.R$id: int action_menu_presenter +com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getSupportBackgroundTintList() +androidx.appcompat.R$id: int accessibility_custom_action_22 +android.didikee.donate.R$color: int material_grey_900 +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.R$styleable: int[] TextInputEditText +wangdaye.com.geometricweather.R$attr: int goIcon +com.google.android.material.R$integer: int mtrl_chip_anim_duration +com.google.android.material.R$dimen: int material_cursor_inset_top +com.xw.repo.bubbleseekbar.R$style: int Base_V22_Theme_AppCompat +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.internal.connection.StreamAllocation streamAllocation +androidx.preference.R$attr: int drawableTopCompat +wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacingHorizontal +retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler parseParameterAnnotation(int,java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation) +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit +wangdaye.com.geometricweather.R$id: int notification_big_week_3 +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator +wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_night +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActivityChooserView +com.google.android.material.R$styleable: int ConstraintSet_android_rotationY +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModePasteDrawable +com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_text_size_2line +androidx.recyclerview.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.appcompat.R$attr: int firstBaselineToTopHeight +android.didikee.donate.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean isDisposed() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX +wangdaye.com.geometricweather.R$drawable: int weather_sleet_2 +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +okhttp3.FormBody: okhttp3.MediaType contentType() +com.turingtechnologies.materialscrollbar.R$style +cyanogenmod.weather.WeatherInfo$Builder: java.lang.String mCity +com.google.android.material.R$dimen: int design_fab_translation_z_hovered_focused +wangdaye.com.geometricweather.R$array: int dark_modes +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +com.bumptech.glide.R$dimen: int notification_main_column_padding_top +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeight +com.jaredrummler.android.colorpicker.R$color: int primary_dark_material_dark +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_hint +com.google.gson.stream.JsonWriter: int peek() +com.google.android.material.timepicker.TimeModel +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean cancelled +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: io.reactivex.ObservableEmitter serialize() +com.turingtechnologies.materialscrollbar.R$attr: int showAsAction +androidx.recyclerview.widget.LinearLayoutManager$SavedState: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +androidx.loader.R$attr: int fontProviderQuery +androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitleTextColor +androidx.dynamicanimation.R$styleable: int GradientColor_android_centerY +com.google.gson.stream.JsonWriter: java.lang.String[] HTML_SAFE_REPLACEMENT_CHARS +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotation +retrofit2.Utils: boolean equals(java.lang.reflect.Type,java.lang.reflect.Type) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date moonSetDate +wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_dark +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircleAngle +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: java.lang.String DESCRIPTOR +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetLeft +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context) +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableBottom +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +android.didikee.donate.R$styleable: int Spinner_android_entries +androidx.fragment.R$id: int fragment_container_view_tag +android.didikee.donate.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +com.turingtechnologies.materialscrollbar.R$drawable: R$drawable() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDailyForecast(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_percent +androidx.constraintlayout.widget.R$attr: int maxAcceleration +androidx.hilt.work.R$color: int notification_icon_bg_color +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_switchTextOff +wangdaye.com.geometricweather.R$styleable: int[] DialogPreference +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_positiveButtonText +wangdaye.com.geometricweather.R$styleable: int MenuItem_iconTintMode +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_cancelLiveLockScreen +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Medium +cyanogenmod.app.ProfileManager: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) +com.jaredrummler.android.colorpicker.R$color: int abc_color_highlight_material +wangdaye.com.geometricweather.R$string: int gitHub +androidx.core.R$attr: int fontProviderCerts +androidx.cardview.R$color: int cardview_shadow_start_color +james.adaptiveicon.R$styleable: int Toolbar_collapseIcon +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_COMPONENT_ID +cyanogenmod.media.MediaRecorder: java.lang.String ACTION_HOTWORD_INPUT_CHANGED +io.reactivex.internal.observers.BlockingObserver: void onError(java.lang.Throwable) +androidx.preference.R$styleable: int MenuItem_android_alphabeticShortcut +cyanogenmod.providers.CMSettings$System: java.lang.String T9_SEARCH_INPUT_LOCALE +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableStartCompat +james.adaptiveicon.R$drawable: int abc_btn_default_mtrl_shape +okio.SegmentPool: long MAX_SIZE +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SeekBar +okhttp3.internal.platform.AndroidPlatform: AndroidPlatform(java.lang.Class,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +com.google.android.material.R$attr: int thumbTintMode +wangdaye.com.geometricweather.R$layout: int custom_dialog +androidx.constraintlayout.widget.R$styleable: int MockView_mock_showDiagonals +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitationProbability +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_medium_material +com.google.android.gms.common.zzj +android.didikee.donate.R$styleable: int AppCompatTextView_textLocale +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias +com.google.android.material.snackbar.SnackbarContentLayout: SnackbarContentLayout(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$attr: int actionModeBackground +androidx.constraintlayout.widget.R$attr: int alertDialogButtonGroupStyle +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onSearchRequested() +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FAIR_NIGHT com.jaredrummler.android.colorpicker.R$color: int button_material_dark -android.didikee.donate.R$styleable: int SearchView_defaultQueryHint -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Info -com.github.rahatarmanahmed.cpv.CircularProgressView: int animDuration -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String LOCKSCREEN_URI -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String logo -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtended(boolean) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitationProbability -okhttp3.CertificatePinner$Pin: java.lang.String WILDCARD -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer aqiIndex -androidx.appcompat.R$styleable: int[] ListPopupWindow -com.turingtechnologies.materialscrollbar.R$id: int radio -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedHeightMinor -wangdaye.com.geometricweather.R$id: int star_2 -com.google.android.material.R$styleable: int TextAppearance_android_shadowDy -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric Metric -wangdaye.com.geometricweather.R$attr: int tabPaddingBottom -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getLogoDescription() -com.google.android.material.R$style: int Widget_AppCompat_ListView_Menu -okhttp3.internal.http.CallServerInterceptor: CallServerInterceptor(boolean) -com.jaredrummler.android.colorpicker.R$attr: int actionBarSplitStyle -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String LongPhrase -com.google.android.material.R$attr: int mock_diagonalsColor -okhttp3.EventListener$2: okhttp3.EventListener val$listener -androidx.preference.R$anim: int fragment_close_exit -com.jaredrummler.android.colorpicker.R$styleable: int ActivityChooserView_initialActivityCount -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.List Sources -com.amap.api.location.DPoint: double b -android.didikee.donate.R$attr: int subtitleTextColor -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_spinBars -android.didikee.donate.R$attr: int hideOnContentScroll -cyanogenmod.themes.ThemeChangeRequest$1: java.lang.Object createFromParcel(android.os.Parcel) -com.google.android.material.R$styleable: int MotionHelper_onHide -io.reactivex.internal.util.ArrayListSupplier: java.lang.Object apply(java.lang.Object) -androidx.constraintlayout.widget.R$attr: int content -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontWeight -androidx.loader.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.settings.dialogs.TimeSetterDialog -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void alternateService(int,java.lang.String,okio.ByteString,java.lang.String,int,long) -cyanogenmod.profiles.StreamSettings: boolean isDirty() -io.reactivex.exceptions.CompositeException: long serialVersionUID -wangdaye.com.geometricweather.R$dimen: int mtrl_transition_shared_axis_slide_distance -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableLeft -com.turingtechnologies.materialscrollbar.R$dimen: int abc_alert_dialog_button_bar_height -wangdaye.com.geometricweather.R$attr: int autoCompleteTextViewStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_137 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitation -wangdaye.com.geometricweather.R$id: int item_about_library -com.amap.api.location.UmidtokenInfo$a: UmidtokenInfo$a() -wangdaye.com.geometricweather.R$styleable: int Preference_widgetLayout -okhttp3.internal.platform.AndroidPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -androidx.preference.R$styleable: int View_android_theme -wangdaye.com.geometricweather.R$attr: int msb_rightToLeft -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display4 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getEn_US() -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -com.jaredrummler.android.colorpicker.R$layout: int notification_action_tombstone -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -androidx.constraintlayout.widget.VirtualLayout: void setVisibility(int) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL_VALIDATOR -com.xw.repo.bubbleseekbar.R$attr: int keylines -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -android.didikee.donate.R$styleable: int[] MenuItem -androidx.fragment.app.FragmentContainerView: void setLayoutTransition(android.animation.LayoutTransition) -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_2 -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onSubscribe(org.reactivestreams.Subscription) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_DES_CBC_SHA -okhttp3.ConnectionSpec: okhttp3.CipherSuite[] APPROVED_CIPHER_SUITES -james.adaptiveicon.R$id: int customPanel -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric Metric -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_order -wangdaye.com.geometricweather.R$attr: int reverseLayout -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_THEMES -com.google.android.gms.dynamic.RemoteCreator$RemoteCreatorException -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_navigationContentDescription -okio.BufferedSource: long readLongLe() -io.reactivex.internal.observers.DeferredScalarDisposable: void complete() -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean pressure -android.didikee.donate.R$styleable: int DrawerArrowToggle_arrowHeadLength -androidx.work.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange -com.jaredrummler.android.colorpicker.R$attr: int popupMenuStyle -androidx.coordinatorlayout.R$styleable -com.google.android.gms.location.LocationRequest -androidx.hilt.R$drawable: int notification_action_background -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_SHA256 -android.didikee.donate.R$attr: int trackTintMode -androidx.activity.R$styleable: int GradientColorItem_android_color -androidx.constraintlayout.widget.R$styleable: int AlertDialog_singleChoiceItemLayout -com.google.android.material.R$dimen: int abc_search_view_preferred_height -wangdaye.com.geometricweather.R$styleable: int[] ClockHandView -okio.Buffer: void write(okio.Buffer,long) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getDescription() -androidx.hilt.R$id: int accessibility_custom_action_25 -okhttp3.internal.http.HttpCodec: int DISCARD_STREAM_TIMEOUT_MILLIS -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: float getAlpha() -androidx.appcompat.widget.Toolbar: int getTitleMarginEnd() -com.jaredrummler.android.colorpicker.R$attr: int autoSizeMinTextSize -com.baidu.location.e.l$b -wangdaye.com.geometricweather.R$drawable: int shortcuts_wind -com.turingtechnologies.materialscrollbar.R$attr: int actionDropDownStyle -androidx.vectordrawable.animated.R$style: int Widget_Compat_NotificationActionContainer -cyanogenmod.hardware.ICMHardwareService: boolean get(int) -wangdaye.com.geometricweather.R$string: int common_google_play_services_install_button -wangdaye.com.geometricweather.R$attr: int bsb_anim_duration -wangdaye.com.geometricweather.R$color: int mtrl_textinput_disabled_color -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.functions.Function,int,io.reactivex.ObservableSource[]) -androidx.constraintlayout.widget.R$attr: int windowActionModeOverlay -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: ObservableTimeoutTimed$TimeoutObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker) -androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy -androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_android_color -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void run() -androidx.preference.R$styleable: int AppCompatTheme_viewInflaterClass -james.adaptiveicon.R$style -wangdaye.com.geometricweather.R$drawable: int cpv_alpha -androidx.preference.R$id: int up -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit FTPS -com.bumptech.glide.R$attr: int layout_keyline -android.didikee.donate.R$drawable: int abc_text_select_handle_right_mtrl_light -wangdaye.com.geometricweather.R$attr: int materialCalendarDay -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu -cyanogenmod.app.suggest.ApplicationSuggestion -androidx.drawerlayout.R$styleable: int GradientColor_android_startX -com.google.android.material.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: int UnitType -wangdaye.com.geometricweather.R$styleable: int Chip_hideMotionSpec -androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context,android.util.AttributeSet) -androidx.appcompat.widget.Toolbar: void setLogo(android.graphics.drawable.Drawable) -cyanogenmod.profiles.ConnectionSettings: int getConnectionId() -com.google.android.material.R$styleable: int SearchView_closeIcon -wangdaye.com.geometricweather.R$styleable: int SearchView_android_inputType -wangdaye.com.geometricweather.R$dimen: int abc_list_item_padding_horizontal_material -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixTextColor -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_padding_right -james.adaptiveicon.R$styleable: int SwitchCompat_splitTrack -androidx.constraintlayout.widget.R$attr: int framePosition -androidx.preference.R$drawable: int abc_ic_star_black_48dp -okio.HashingSink: okio.HashingSink sha256(okio.Sink) -androidx.vectordrawable.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.R$styleable: int Transition_android_id -androidx.lifecycle.ClassesInfoCache$MethodReference: void invokeCallback(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) -com.google.android.material.R$attr: int sliderStyle -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.functions.Function zipper -androidx.preference.R$styleable: int AppCompatTheme_colorControlNormal -okhttp3.internal.tls.CertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) -com.jaredrummler.android.colorpicker.R$attr: int textAllCaps -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner -com.google.android.material.R$style: int Widget_AppCompat_RatingBar_Indicator -okhttp3.Cache$2: boolean hasNext() -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeSplitBackground -retrofit2.ParameterHandler$2: ParameterHandler$2(retrofit2.ParameterHandler) -androidx.appcompat.R$styleable: int GradientColor_android_centerX -androidx.appcompat.R$attr: int customNavigationLayout -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_track_size -com.jaredrummler.android.colorpicker.R$attr: int actionModeSplitBackground -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_backgroundSplit -com.bumptech.glide.R$dimen: int notification_media_narrow_margin -io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean) -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType USER_REQUEST -androidx.appcompat.R$styleable: int ActionBar_elevation -cyanogenmod.app.BaseLiveLockManagerService$1: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void drain() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int getIsRainOrSnow() -cyanogenmod.weather.CMWeatherManager$RequestStatus -com.google.android.material.R$styleable: int Layout_layout_constraintLeft_creator -com.google.android.material.R$styleable: int PropertySet_motionProgress -com.google.android.gms.tasks.DuplicateTaskCompletionException: java.lang.IllegalStateException of(com.google.android.gms.tasks.Task) -android.didikee.donate.R$attr: int switchStyle -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol HTTP -com.turingtechnologies.materialscrollbar.R$attr: int splitTrack -retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object result -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode[] values() -com.bumptech.glide.R$attr: int layout_anchorGravity -com.google.android.material.textfield.TextInputLayout: void setHintTextAppearance(int) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_6 -james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedWidthMajor -wangdaye.com.geometricweather.R$dimen: int main_title_text_size -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree windDegree -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getAbbreviation(android.content.Context) -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_keyboardNavigationCluster -james.adaptiveicon.R$color: int dim_foreground_disabled_material_dark -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperText -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -cyanogenmod.weather.CMWeatherManager$1$1: java.lang.String val$providerName -okhttp3.internal.cache.DiskLruCache: java.lang.String MAGIC -androidx.appcompat.R$dimen: int abc_search_view_preferred_width -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification -androidx.constraintlayout.widget.R$styleable: int MotionLayout_applyMotionScene -androidx.activity.ComponentActivity$3 -com.google.android.material.R$drawable: int notification_icon_background -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf -james.adaptiveicon.R$id: int up -com.xw.repo.bubbleseekbar.R$id: int action_divider -cyanogenmod.profiles.AirplaneModeSettings$1: cyanogenmod.profiles.AirplaneModeSettings[] newArray(int) -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: java.util.concurrent.Callable bufferSupplier -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$attr: int textAppearanceSearchResultSubtitle -okhttp3.internal.io.FileSystem$1: long size(java.io.File) -com.amap.api.fence.GeoFence: java.lang.String c -retrofit2.RequestFactory: okhttp3.HttpUrl baseUrl -androidx.constraintlayout.widget.R$drawable: int abc_ic_clear_material -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizePresetSizes -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationX -androidx.appcompat.resources.R$id: int accessibility_custom_action_18 -okio.AsyncTimeout$1: void write(okio.Buffer,long) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_47 -com.jaredrummler.android.colorpicker.R$attr: int layout_anchor -okio.ByteString: java.lang.String toString() -okhttp3.internal.io.FileSystem: okio.Sink appendingSink(java.io.File) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.fuseable.SimpleQueue queue -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setCityId(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int Motion_animate_relativeTo -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getLatitude() -wangdaye.com.geometricweather.R$attr: int placeholderTextAppearance -wangdaye.com.geometricweather.R$id: int widget_week_container -android.didikee.donate.R$dimen: int abc_text_size_headline_material -androidx.preference.R$layout -wangdaye.com.geometricweather.R$styleable: int Chip_chipMinTouchTargetSize -io.reactivex.Observable: io.reactivex.Observable doAfterNext(io.reactivex.functions.Consumer) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getWeatherText() -james.adaptiveicon.R$attr: int windowFixedHeightMajor -androidx.viewpager.widget.ViewPager -com.google.android.material.R$styleable: int AppCompatTheme_listMenuViewStyle -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findAndroidPlatform() -cyanogenmod.app.CMStatusBarManager -okhttp3.internal.ws.RealWebSocket: long queueSize() +androidx.swiperefreshlayout.R$string +androidx.appcompat.R$attr: int textAppearanceSearchResultSubtitle +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endX +com.google.android.material.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +com.google.android.material.theme.MaterialComponentsViewInflater: MaterialComponentsViewInflater() +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void drain() +retrofit2.Utils: java.lang.RuntimeException methodError(java.lang.reflect.Method,java.lang.String,java.lang.Object[]) +android.didikee.donate.R$attr: int buttonBarButtonStyle +com.google.android.material.R$id: int material_textinput_timepicker +wangdaye.com.geometricweather.R$drawable: int mtrl_dialog_background +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_keyline +com.jaredrummler.android.colorpicker.R$styleable: int[] MenuView +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context,android.util.AttributeSet) +androidx.viewpager2.widget.ViewPager2: void setCurrentItem(int) +com.jaredrummler.android.colorpicker.R$attr: int preferenceCategoryStyle +com.google.android.material.R$styleable: int MockView_mock_diagonalsColor +com.google.gson.stream.JsonReader: int PEEKED_DOUBLE_QUOTED_NAME +androidx.appcompat.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: java.lang.String Hex +android.didikee.donate.R$attr: int actionModeWebSearchDrawable +cyanogenmod.providers.CMSettings$DelimitedListValidator: android.util.ArraySet mValidValueSet +androidx.viewpager.R$styleable: int FontFamilyFont_ttcIndex +android.didikee.donate.R$styleable: int ActionBar_titleTextStyle +org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Iterable) +androidx.vectordrawable.animated.R$color +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource source +androidx.transition.R$styleable: int FontFamilyFont_android_font +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.Observer downstream +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceVoice(android.content.Context) +androidx.constraintlayout.utils.widget.ImageFilterButton: float getWarmth() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.lang.String unit +wangdaye.com.geometricweather.R$layout: int mtrl_picker_text_input_date_range +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onAttach(android.os.IBinder) +androidx.swiperefreshlayout.R$id: int line1 +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setBootanimation(java.lang.String) +androidx.appcompat.R$styleable: int CompoundButton_buttonTint +com.google.android.material.chip.Chip: void setCheckedIconEnabledResource(int) +com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_old +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_android_textAppearance +com.bumptech.glide.load.HttpException: HttpException(java.lang.String,int,java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_elevation_material +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_24 +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_ellipsize +com.google.android.material.R$styleable: int Layout_constraint_referenced_ids +com.jaredrummler.android.colorpicker.ColorPanelView: int getBorderColor() +james.adaptiveicon.R$attr: int actionModeSelectAllDrawable +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.HourlyEntity) +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogLayout +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_Solid +androidx.activity.R$dimen: int compat_control_corner_material +androidx.appcompat.app.ActionBar +androidx.dynamicanimation.R$styleable: R$styleable() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: double Value +com.google.android.material.R$attr: int state_lifted +com.google.android.material.R$style: int Widget_AppCompat_Spinner_DropDown +com.google.android.material.R$layout: int mtrl_alert_dialog_actions +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixText +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: BaiduIPLocationService_Factory(javax.inject.Provider,javax.inject.Provider) +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_UnelevatedButton +com.xw.repo.bubbleseekbar.R$color: int material_grey_50 +androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +okhttp3.internal.connection.RealConnection: okhttp3.Handshake handshake +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_cut_mtrl_alpha +wangdaye.com.geometricweather.R$drawable: int notif_temp_62 +androidx.constraintlayout.widget.R$styleable: int ActionBar_icon +wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Top_Left +androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_large_material +wangdaye.com.geometricweather.R$string: int abc_searchview_description_query +android.didikee.donate.R$attr: int buttonBarNegativeButtonStyle +androidx.transition.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$string: int character_counter_pattern +james.adaptiveicon.R$style: int Widget_AppCompat_ActionMode +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_stacked_tab_max_width +wangdaye.com.geometricweather.R$attr: int cpv_animSwoopDuration +cyanogenmod.profiles.LockSettings$1: java.lang.Object[] newArray(int) +android.didikee.donate.R$style: int Animation_AppCompat_Dialog +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.Class serverProviderClass +androidx.preference.R$styleable: int[] ActionBarLayout +com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabBarStyle +wangdaye.com.geometricweather.R$string: int settings_title_card_order +com.xw.repo.bubbleseekbar.R$id +com.google.android.material.R$styleable: int Constraint_flow_firstVerticalBias +com.google.android.material.R$styleable: int TextInputLayout_endIconMode +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_grey +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver +com.google.android.material.slider.Slider: void setEnabled(boolean) +com.google.android.material.circularreveal.CircularRevealFrameLayout: void setCircularRevealScrimColor(int) +com.jaredrummler.android.colorpicker.R$drawable: int cpv_btn_background_pressed +com.amap.api.location.AMapLocation: void setCountry(java.lang.String) +android.didikee.donate.R$attr: int customNavigationLayout +com.google.android.material.R$styleable: int TextInputLayout_startIconTintMode +okio.Buffer: boolean rangeEquals(okio.Segment,int,okio.ByteString,int,int) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_maxWidth +com.xw.repo.bubbleseekbar.R$attr: int switchTextAppearance +android.didikee.donate.R$dimen: int abc_button_padding_horizontal_material +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setLongitude(java.lang.String) +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$attr: int ratingBarStyleSmall +wangdaye.com.geometricweather.db.entities.AlertEntity: int getPriority() +androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_Dialog +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: Pollen(java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar +com.turingtechnologies.materialscrollbar.Indicator: void setSizeCustom(int) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconStartPadding +com.jaredrummler.android.colorpicker.R$string: int abc_menu_space_shortcut_label +com.jaredrummler.android.colorpicker.R$attr: int font +com.turingtechnologies.materialscrollbar.R$attr: int fontStyle +wangdaye.com.geometricweather.R$attr: int checkedIconSize +com.bumptech.glide.integration.okhttp.R$dimen: int compat_notification_large_icon_max_width +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WEATHER_CODE_MIN +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm25Desc +androidx.appcompat.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +com.google.android.material.tabs.TabLayout$TabView: int getContentWidth() +com.xw.repo.bubbleseekbar.R$attr: int initialActivityCount +io.reactivex.Observable: java.lang.Object as(io.reactivex.ObservableConverter) +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void drain() +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: long serialVersionUID +androidx.activity.ImmLeaksCleaner +androidx.constraintlayout.widget.R$attr: int layout_goneMarginStart +io.reactivex.internal.util.ArrayListSupplier: io.reactivex.functions.Function asFunction() +com.google.android.material.R$styleable: int KeyCycle_android_translationX +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial +com.google.android.material.R$style: int TextAppearance_Design_Suffix +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat +com.amap.api.fence.PoiItem: void setTypeCode(java.lang.String) +james.adaptiveicon.AdaptiveIconView: android.graphics.Path getPath() +wangdaye.com.geometricweather.R$string: int mtrl_badge_numberless_content_description +james.adaptiveicon.R$attr: int colorButtonNormal +com.jaredrummler.android.colorpicker.R$attr: int actionProviderClass +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchKeyShortcutEvent(android.view.KeyEvent) +okhttp3.OkHttpClient: int writeTimeoutMillis() +wangdaye.com.geometricweather.settings.fragments.NotificationColorSettingsFragment +cyanogenmod.app.ProfileGroup: java.lang.String mName +com.github.rahatarmanahmed.cpv.CircularProgressView$4: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 +okhttp3.HttpUrl: java.lang.String encodedPassword() +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualObserver[] observers +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end +wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_creator +james.adaptiveicon.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$color: int colorLevel_4 +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextAppearanceActive +okhttp3.internal.http2.Header: okio.ByteString name +com.google.android.material.R$styleable: int CollapsingToolbarLayout_toolbarId +io.reactivex.internal.queue.SpscArrayQueue: SpscArrayQueue(int) +io.reactivex.internal.subscriptions.SubscriptionArbiter: SubscriptionArbiter(boolean) +wangdaye.com.geometricweather.R$attr: int flow_wrapMode +wangdaye.com.geometricweather.R$id: int masked +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_WARM_FALLING +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: long serialVersionUID +androidx.constraintlayout.widget.R$dimen: int notification_large_icon_height +androidx.preference.R$attr: int dialogPreferenceStyle +wangdaye.com.geometricweather.R$attr: int contentInsetStart +cyanogenmod.profiles.RingModeSettings: boolean isOverride() +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] findMatchingRule(java.lang.String[]) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_height +wangdaye.com.geometricweather.R$string: int apparent_temperature +cyanogenmod.weather.util.WeatherUtils: WeatherUtils() +com.google.android.material.button.MaterialButton: void setIconGravity(int) +com.bumptech.glide.integration.okhttp.R$id: int glide_custom_view_target_tag +androidx.appcompat.R$attr: int collapseContentDescription +wangdaye.com.geometricweather.R$id: int fragment_container_view_tag +com.google.android.material.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderAuthority +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getScaleX() +com.amap.api.fence.DistrictItem$1: DistrictItem$1() +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior: ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior() +okio.AsyncTimeout: boolean exit() +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onComplete() +cyanogenmod.profiles.ConnectionSettings: int getConnectionId() +wangdaye.com.geometricweather.R$drawable: int notif_temp_76 +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: ObservableThrottleFirstTimed$DebounceTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker) +wangdaye.com.geometricweather.R$id: int hideable +androidx.constraintlayout.widget.R$dimen: int compat_control_corner_material +com.google.android.material.R$layout: int mtrl_picker_text_input_date +androidx.preference.R$anim: int abc_tooltip_exit +cyanogenmod.app.Profile$DozeMode: Profile$DozeMode() +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_36dp +com.xw.repo.bubbleseekbar.R$drawable: int notification_tile_bg +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void cancel() +okhttp3.internal.cache.DiskLruCache$Snapshot: long getLength(int) +wangdaye.com.geometricweather.R$color: int colorTextSubtitle +com.google.android.material.R$id: int layout +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_1_material +okio.BufferedSink: okio.BufferedSink write(byte[]) +androidx.preference.R$styleable: int AppCompatTextView_drawableRightCompat +com.turingtechnologies.materialscrollbar.Indicator: int getIndicatorHeight() +cyanogenmod.app.CMStatusBarManager: boolean localLOGV +com.amap.api.location.AMapLocationClient: void disableBackgroundLocation(boolean) +com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_E +okhttp3.Cache: void remove(okhttp3.Request) +androidx.preference.R$drawable: int abc_ic_voice_search_api_material +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +androidx.transition.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.R$dimen: int design_fab_image_size +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +com.google.android.material.R$styleable: int KeyCycle_android_scaleY +androidx.loader.R$id: int info +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: MfForecastResult$DailyForecast$Humidity() +com.google.android.material.R$dimen: int abc_text_size_medium_material +wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonTintMode +com.xw.repo.bubbleseekbar.R$attr: int actionBarTabStyle +okio.GzipSource: okio.BufferedSource source +com.google.android.material.timepicker.TimePickerView: void setOnDoubleTapListener(com.google.android.material.timepicker.TimePickerView$OnDoubleTapListener) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours +okio.Buffer$UnsafeCursor: long expandBuffer(int) +okhttp3.OkHttpClient$1: OkHttpClient$1() +okhttp3.CipherSuite: okhttp3.CipherSuite forJavaName(java.lang.String) +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_body_2_material +androidx.preference.R$styleable: int Preference_android_key +okhttp3.internal.ws.RealWebSocket$PingRunnable: void run() +okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,byte[]) +com.google.android.gms.auth.api.signin.internal.GoogleSignInOptionsExtensionParcelable: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeFindDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleVerticalOffset +com.google.android.material.R$id: int mtrl_picker_text_input_date +com.turingtechnologies.materialscrollbar.R$attr: int selectableItemBackgroundBorderless +androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor INSTANCE +cyanogenmod.os.Build: Build() +okhttp3.MediaType: MediaType(java.lang.String,java.lang.String,java.lang.String,java.lang.String) +com.google.android.material.R$drawable: int abc_text_select_handle_right_mtrl_dark +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Tooltip +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +androidx.customview.view.AbsSavedState$1 +okio.BufferedSource: java.lang.String readUtf8LineStrict() +cyanogenmod.app.ProfileManager: java.lang.String INTENT_ACTION_PROFILE_UPDATED +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeWindChillTemperature() +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setFont(java.lang.String) +com.google.android.material.slider.RangeSlider: java.util.List getValues() +wangdaye.com.geometricweather.R$attr: int bsb_always_show_bubble +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SWAP_VOLUME_KEYS_ON_ROTATION_VALIDATOR +androidx.appcompat.app.WindowDecorActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeightSmall +com.google.android.material.R$styleable: int ConstraintSet_android_translationX +android.didikee.donate.R$dimen: int abc_action_button_min_width_material +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_warmth +okhttp3.internal.http2.Http2Connection$PingRunnable +android.didikee.donate.R$id: int list_item +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_showDelay +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String Link +okio.SegmentedByteString: byte getByte(int) +com.amap.api.location.AMapLocationClientOption: long getGpsFirstTimeout() +wangdaye.com.geometricweather.R$color: int design_default_color_background +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign +wangdaye.com.geometricweather.R$style: int Animation_Design_BottomSheetDialog +wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_Dialog +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +android.didikee.donate.R$dimen: int abc_text_size_body_1_material +wangdaye.com.geometricweather.R$style: int Widget_Design_FloatingActionButton +james.adaptiveicon.R$color: int switch_thumb_normal_material_light +cyanogenmod.app.IProfileManager: void removeNotificationGroup(android.app.NotificationGroup) +androidx.customview.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getDurationText(android.content.Context,float) +androidx.viewpager2.widget.ViewPager2: void setOffscreenPageLimit(int) +android.didikee.donate.R$drawable: int abc_dialog_material_background +androidx.cardview.widget.CardView: int getContentPaddingBottom() +okhttp3.logging.HttpLoggingInterceptor$Logger$1: void log(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_percent +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_NOWIFIANDAP +cyanogenmod.app.Profile: int getDozeMode() +wangdaye.com.geometricweather.R$attr: int searchViewStyle +androidx.vectordrawable.R$attr: int fontProviderAuthority +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +okhttp3.internal.http2.Http2Connection$Builder: java.net.Socket socket +cyanogenmod.hardware.CMHardwareManager: boolean get(int) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: double seaLevel +wangdaye.com.geometricweather.R$string: int key_hide_lunar +io.reactivex.Observable: io.reactivex.Observable concatMap(io.reactivex.functions.Function,int) +okhttp3.Dispatcher: int runningCallsCount() +com.google.android.material.bottomappbar.BottomAppBar: com.google.android.material.bottomappbar.BottomAppBarTopEdgeTreatment getTopEdgeTreatment() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: KeyguardExternalViewProviderService$Provider$ProviderImpl(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider,cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider) +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onDrop(java.lang.Object) +io.reactivex.Observable: void blockingForEach(io.reactivex.functions.Consumer) +androidx.appcompat.app.AppCompatActivity +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_liftOnScrollTargetViewId +james.adaptiveicon.R$drawable: int abc_cab_background_internal_bg +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver) +androidx.appcompat.R$attr: int colorSwitchThumbNormal +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_height_major +com.google.android.material.slider.RangeSlider: void setThumbStrokeWidth(float) +androidx.hilt.lifecycle.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_landscape_header_width +retrofit2.RequestBuilder: okhttp3.Request$Builder get() +com.google.android.material.R$dimen: int mtrl_high_ripple_hovered_alpha +androidx.constraintlayout.widget.R$attr: int dropDownListViewStyle +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean isDisposed() +cyanogenmod.app.CMStatusBarManager: java.lang.String TAG +com.xw.repo.bubbleseekbar.R$string: int abc_menu_alt_shortcut_label +android.didikee.donate.R$styleable: int AppCompatTheme_textColorSearchUrl +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: void run() +com.google.android.material.R$integer: int abc_config_activityDefaultDur +com.google.android.gms.common.stats.WakeLockEvent: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.R$string: int abc_toolbar_collapse_description +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_maxLines +android.didikee.donate.R$styleable: int[] ActivityChooserView +retrofit2.RequestFactory: okhttp3.MediaType contentType +androidx.coordinatorlayout.widget.CoordinatorLayout: android.graphics.drawable.Drawable getStatusBarBackground() +com.google.android.material.R$style: int Base_Widget_MaterialComponents_AutoCompleteTextView +com.google.android.material.R$style: int Widget_Design_AppBarLayout +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemDrawable(int) +com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyleIndicator +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_weight +androidx.appcompat.R$color: int abc_hint_foreground_material_dark +okhttp3.HttpUrl$Builder +com.jaredrummler.android.colorpicker.R$attr: int actionBarPopupTheme +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder validateEagerly(boolean) +com.jaredrummler.android.colorpicker.R$attr: int cpv_allowPresets +androidx.hilt.R$id: int text2 +android.didikee.donate.R$style: int TextAppearance_AppCompat_Menu +androidx.preference.R$dimen: int abc_action_bar_default_padding_start_material +retrofit2.Platform: java.util.concurrent.Executor defaultCallbackExecutor() +okhttp3.OkHttpClient: okhttp3.CookieJar cookieJar +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Tooltip +james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyleSmall +com.google.gson.stream.JsonWriter: int stackSize +com.google.android.material.R$styleable: int MaterialCardView_checkedIconSize +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog +androidx.hilt.work.R$styleable: int GradientColorItem_android_offset +james.adaptiveicon.R$layout: int abc_action_mode_close_item_material +io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable[] values() +androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_icon +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.profiles.ConnectionSettings: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$id: int scrollIndicatorUp +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_colored_ripple_color +okhttp3.ConnectionPool$1: void run() +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onComplete() +com.google.android.material.R$color: int mtrl_btn_text_color_selector +androidx.preference.R$id: int submit_area +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_91 +cyanogenmod.externalviews.ExternalViewProviderService$Provider: ExternalViewProviderService$Provider(cyanogenmod.externalviews.ExternalViewProviderService,android.os.Bundle) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Long id +james.adaptiveicon.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$drawable: int ic_launcher_round +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void accept(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_title_material +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Headline +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: org.reactivestreams.Subscription upstream +com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemTextColor() +androidx.appcompat.widget.SearchView: void setOnQueryTextListener(androidx.appcompat.widget.SearchView$OnQueryTextListener) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: AccuDailyResult$DailyForecasts$Day$WindGust$Direction() +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Borderless +wangdaye.com.geometricweather.R$id: int transparency_layout +androidx.hilt.R$dimen: int compat_notification_large_icon_max_width +okhttp3.internal.Util$1: int compare(java.lang.Object,java.lang.Object) +androidx.appcompat.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +cyanogenmod.weather.CMWeatherManager: java.util.Map access$300(cyanogenmod.weather.CMWeatherManager) +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$string: int material_timepicker_select_time +cyanogenmod.externalviews.KeyguardExternalView: android.content.ServiceConnection access$500(cyanogenmod.externalviews.KeyguardExternalView) +cyanogenmod.weather.CMWeatherManager$1: cyanogenmod.weather.CMWeatherManager this$0 +com.google.android.material.R$attr: int tabMinWidth +androidx.loader.R$id: int action_divider +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.Date pubTime +com.google.android.material.R$styleable: int Constraint_layout_goneMarginStart +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_SLEEP_ON_RELEASE_VALIDATOR +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherPhase(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial +com.amap.api.location.AMapLocation: java.lang.String g(com.amap.api.location.AMapLocation,java.lang.String) +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_DayNight +com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_radio +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDate(java.util.Date) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMark +android.didikee.donate.R$drawable: int abc_control_background_material +android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +androidx.fragment.R$drawable: int notification_icon_background +com.google.android.material.R$color: int mtrl_outlined_icon_tint +androidx.appcompat.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: MfHistoryResult$History() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabTextStyle +wangdaye.com.geometricweather.R$style: int Widget_Design_TextInputEditText +wangdaye.com.geometricweather.R$string: int settings_summary_background_free_off +androidx.preference.R$styleable: int CoordinatorLayout_keylines +wangdaye.com.geometricweather.R$id: int layout +cyanogenmod.externalviews.KeyguardExternalView: void binderDied() +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean tillTheEnd +james.adaptiveicon.R$styleable: int AppCompatTheme_dialogTheme +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5 +com.google.android.material.R$animator: int mtrl_fab_transformation_sheet_collapse_spec +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setBadgeIfNeeded(com.google.android.material.bottomnavigation.BottomNavigationItemView) +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: AMapLocationClientOption$AMapLocationProtocol(java.lang.String,int,int) +androidx.work.R$styleable: int FontFamilyFont_android_fontWeight +androidx.appcompat.R$styleable: int AppCompatTheme_editTextStyle +okhttp3.internal.connection.StreamAllocation: void streamFinished(boolean,okhttp3.internal.http.HttpCodec,long,java.io.IOException) +io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription[] values() +com.amap.api.location.LocationManagerBase: void startAssistantLocation() +okhttp3.CacheControl: CacheControl(boolean,boolean,int,int,boolean,boolean,boolean,int,int,boolean,boolean,boolean,java.lang.String) +android.didikee.donate.R$style: int Widget_AppCompat_AutoCompleteTextView +com.baidu.location.indoor.mapversion.c.a$d: short[][] g +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: long StartEpochDateTime +androidx.lifecycle.extensions.R$string: R$string() +wangdaye.com.geometricweather.R$id: int notification_big_temp_5 +androidx.loader.R$dimen: int notification_small_icon_size_as_large +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_16dp +com.bumptech.glide.R$drawable +com.amap.api.fence.GeoFence: void setPendingIntentAction(java.lang.String) +androidx.fragment.R$id: int action_container +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode HTTP_1_1_REQUIRED +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String timezone +androidx.hilt.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +retrofit2.BuiltInConverters: boolean checkForKotlinUnit +okio.GzipSink +cyanogenmod.app.Profile: java.util.Collection getConnectionSettings() +wangdaye.com.geometricweather.R$string: int feedback_refresh_notification_after_back +wangdaye.com.geometricweather.R$attr: int editTextPreferenceStyle +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_at +androidx.preference.R$styleable: int SearchView_layout +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.preference.R$attr: int contentInsetStart +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String LanguageCode +com.google.android.material.slider.RangeSlider: java.lang.CharSequence getAccessibilityClassName() +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_min_height +wangdaye.com.geometricweather.R$layout: int preference_information +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_MENU_ACTION +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setVisibility(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String city +com.baidu.location.indoor.c: c(int) +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_direction +wangdaye.com.geometricweather.R$attr: int subtitle +androidx.constraintlayout.widget.R$color: int abc_decor_view_status_guard_light +wangdaye.com.geometricweather.R$layout: int design_text_input_end_icon +wangdaye.com.geometricweather.R$id: int toggle +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: KeyguardExternalViewProviderService$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService) +wangdaye.com.geometricweather.R$color: int design_error +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context) +androidx.preference.R$styleable: int ViewBackgroundHelper_android_background +androidx.appcompat.R$attr: int alertDialogStyle +androidx.preference.R$style: int Base_V28_Theme_AppCompat_Light +androidx.preference.R$id: int accessibility_custom_action_20 +androidx.hilt.R$id: int chronometer +com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingBottom() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end +com.google.android.material.chip.Chip: void setElevation(float) +wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_begin +wangdaye.com.geometricweather.R$id: int widget_week_week_5 +androidx.preference.R$drawable: int abc_cab_background_internal_bg +com.jaredrummler.android.colorpicker.R$attr: int positiveButtonText +cyanogenmod.weather.RequestInfo: java.lang.String toString() +androidx.appcompat.resources.R$dimen: int notification_media_narrow_margin +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +cyanogenmod.providers.CMSettings$Secure: java.lang.String SYS_PROP_CM_SETTING_VERSION +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontStyle +cyanogenmod.app.StatusBarPanelCustomTile: int getUserId() +james.adaptiveicon.R$attr: int buttonStyle +cyanogenmod.app.IProfileManager: void addNotificationGroup(android.app.NotificationGroup) +androidx.appcompat.R$drawable: int notification_template_icon_low_bg +androidx.appcompat.view.menu.ListMenuItemView: ListMenuItemView(android.content.Context,android.util.AttributeSet) +androidx.hilt.R$id: int tag_accessibility_heading +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_16dp +com.google.gson.stream.JsonReader: int PEEKED_SINGLE_QUOTED_NAME +okhttp3.internal.ws.RealWebSocket: boolean awaitingPong +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRealFeelShaderTemperature(java.lang.Integer) +okhttp3.Cookie: boolean domainMatch(java.lang.String,java.lang.String) +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: boolean hasError() +okhttp3.MultipartBody: long writeOrCountBytes(okio.BufferedSink,boolean) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float total +com.google.gson.stream.JsonWriter: void writeDeferredName() +com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Widget_AppCompat_Toolbar +android.didikee.donate.R$attr: int subtitleTextStyle +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_divider +androidx.activity.R$id: int line3 +com.google.android.material.chip.Chip: void setChipMinHeightResource(int) +org.greenrobot.greendao.AbstractDaoSession: void registerDao(java.lang.Class,org.greenrobot.greendao.AbstractDao) +okhttp3.Address: java.util.List protocols +androidx.viewpager2.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService this$0 +wangdaye.com.geometricweather.R$styleable: int Toolbar_android_minHeight +cyanogenmod.themes.ThemeChangeRequest$1: cyanogenmod.themes.ThemeChangeRequest createFromParcel(android.os.Parcel) +james.adaptiveicon.R$dimen: int tooltip_y_offset_touch +cyanogenmod.app.BaseLiveLockManagerService +androidx.work.R$id: int accessibility_custom_action_4 +com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_percent +wangdaye.com.geometricweather.R$id: int recycler_view +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_NoActionBar +com.google.android.material.R$styleable: int KeyTimeCycle_android_translationZ +androidx.appcompat.widget.AppCompatCheckedTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerColor +okio.ByteString +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonStyleSmall +wangdaye.com.geometricweather.R$styleable: int Transform_android_transformPivotX +wangdaye.com.geometricweather.R$color: int cardview_dark_background +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider NATIVE +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String getWeatherText() +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: double lat +com.google.android.material.R$attr: int maxAcceleration +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FREEZING_DRIZZLE +james.adaptiveicon.R$attr: int thumbTextPadding +okhttp3.OkHttpClient: boolean followRedirects +cyanogenmod.app.CustomTile +wangdaye.com.geometricweather.R$attr: int navigationIconColor +androidx.vectordrawable.R$style +android.didikee.donate.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_EditText +com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_Alert +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.slider.RangeSlider: void setMinSeparationValue(float) +com.google.android.material.textfield.TextInputLayout: android.widget.TextView getPrefixTextView() +okio.SegmentedByteString: okio.ByteString toAsciiUppercase() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService get() +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_trackTint +cyanogenmod.hardware.CMHardwareManager: int FEATURE_UNIQUE_DEVICE_ID +cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onCustomTilePosted +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicator +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object readKey(android.database.Cursor,int) +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_INTENSITY_INDEX +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView +james.adaptiveicon.R$style: int Base_Theme_AppCompat_DialogWhenLarge +androidx.hilt.work.R$attr: int fontProviderAuthority +cyanogenmod.themes.ThemeManager$ThemeChangeListener: void onProgress(int) +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getRippleColor() +cyanogenmod.content.Intent: java.lang.String ACTION_PROTECTED +androidx.preference.R$styleable: int[] AppCompatTheme +com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark_focused +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_section_mark +com.google.android.material.R$styleable: int StateListDrawable_android_constantSize +wangdaye.com.geometricweather.R$animator: int weather_sleet_3 +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf +wangdaye.com.geometricweather.R$drawable: int abc_textfield_activated_mtrl_alpha +wangdaye.com.geometricweather.R$string: int default_location +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation LEFT +okhttp3.internal.Internal: int code(okhttp3.Response$Builder) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_max +com.google.android.material.R$attr: int layout_editor_absoluteX +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startY +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +androidx.dynamicanimation.R$string +androidx.constraintlayout.widget.R$id: int action_bar_spinner +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context) +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_ripple_color +com.google.android.material.R$styleable: int[] ButtonBarLayout +androidx.appcompat.widget.AppCompatImageView: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaTitle +cyanogenmod.providers.CMSettings$Secure: java.lang.String ADB_NOTIFY wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_49 -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_font -androidx.preference.R$styleable: int AppCompatTheme_actionModeShareDrawable -james.adaptiveicon.R$styleable: int ActionMenuItemView_android_minWidth -androidx.preference.R$anim: int btn_checkbox_to_checked_icon_null_animation -james.adaptiveicon.R$attr: int preserveIconSpacing -wangdaye.com.geometricweather.R$id: int dimensions -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_8 -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.jaredrummler.android.colorpicker.ColorPickerView: java.lang.String getAlphaSliderText() -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconTint -cyanogenmod.providers.CMSettings$Global: float getFloat(android.content.ContentResolver,java.lang.String) -androidx.fragment.app.FragmentState: android.os.Parcelable$Creator CREATOR -androidx.preference.PreferenceManager: void setOnDisplayPreferenceDialogListener(androidx.preference.PreferenceManager$OnDisplayPreferenceDialogListener) -retrofit2.Call: void enqueue(retrofit2.Callback) -androidx.preference.R$attr: int listChoiceBackgroundIndicator -androidx.dynamicanimation.R$id: R$id() -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void subscribe() -com.google.android.material.R$attr: int counterMaxLength -androidx.constraintlayout.widget.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_homeAsUpIndicator -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean isDisposed() -io.reactivex.Observable: java.lang.Object to(io.reactivex.functions.Function) -androidx.hilt.work.R$drawable: int notification_bg -androidx.appcompat.resources.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.R$drawable: int ic_weather_alert -james.adaptiveicon.R$dimen: int abc_switch_padding -com.xw.repo.bubbleseekbar.R$attr: int closeItemLayout -wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_bottom_material -org.greenrobot.greendao.AbstractDao: java.lang.Object getKey(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPadding -androidx.lifecycle.SavedStateViewModelFactory: androidx.savedstate.SavedStateRegistry mSavedStateRegistry -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Consumer) -androidx.hilt.work.R$color: int notification_action_color_filter -okhttp3.internal.http.CallServerInterceptor$CountingSink -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onTimeout(long) -wangdaye.com.geometricweather.R$id: int save_overlay_view -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast -wangdaye.com.geometricweather.R$styleable: int[] MaterialCalendar -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_months -androidx.constraintlayout.widget.R$attr: int maxButtonHeight -android.didikee.donate.R$styleable: int LinearLayoutCompat_dividerPadding -wangdaye.com.geometricweather.R$attr: int counterTextColor -androidx.appcompat.resources.R$attr: int fontProviderQuery -com.google.android.material.slider.Slider: Slider(android.content.Context,android.util.AttributeSet) -okhttp3.internal.ws.RealWebSocket$CancelRunnable: okhttp3.internal.ws.RealWebSocket this$0 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_top_material -wangdaye.com.geometricweather.R$id: int mtrl_calendar_main_pane -androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -wangdaye.com.geometricweather.R$attr: int statusBarBackground -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_srcCompat -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setWeatherLocation(cyanogenmod.weather.WeatherLocation) -com.google.android.material.R$color: int dim_foreground_material_dark -com.google.android.material.R$style: int Widget_AppCompat_EditText -com.google.gson.stream.JsonReader: long nextLong() -androidx.preference.R$dimen: int preference_seekbar_value_minWidth -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_requestDismissAndStartActivity_1 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric Metric -android.didikee.donate.R$layout: int abc_action_menu_layout -james.adaptiveicon.R$drawable: int abc_scrubber_track_mtrl_alpha -com.xw.repo.bubbleseekbar.R$attr: int titleMarginBottom -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: long serialVersionUID -android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_cancel -androidx.lifecycle.ProcessLifecycleOwner: void activityStarted() -androidx.customview.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.common.basic.models.weather.Weather -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric -androidx.constraintlayout.helper.widget.Layer: void setPivotX(float) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onNext(java.lang.Object) -okhttp3.Protocol: okhttp3.Protocol QUIC -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setCurrent(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean) -com.google.android.material.navigation.NavigationView: int getItemHorizontalPadding() -android.didikee.donate.R$attr: int windowMinWidthMajor -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetLeft -com.google.android.material.R$styleable: int AppCompatTextView_lineHeight -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginTop -okhttp3.internal.tls.BasicCertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) -androidx.lifecycle.Transformations$2$1 -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder hasSensitiveData(boolean) -cyanogenmod.app.Profile$LockMode -com.amap.api.fence.GeoFenceManagerBase: void removeGeoFence() -com.google.android.material.R$id: int tabMode -com.google.android.material.R$styleable: int ConstraintLayout_Layout_chainUseRtl -okhttp3.Headers: void checkValue(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer cloudCover -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void innerComplete() -cyanogenmod.providers.ThemesContract: android.net.Uri AUTHORITY_URI -com.amap.api.fence.GeoFence: java.lang.String getFenceId() -androidx.vectordrawable.R$styleable: int FontFamilyFont_fontWeight +androidx.preference.R$id: int accessibility_custom_action_4 +okhttp3.internal.connection.RealConnection: int allocationLimit +cyanogenmod.profiles.RingModeSettings: RingModeSettings() +com.google.android.material.R$styleable: int KeyTimeCycle_android_rotationY +cyanogenmod.providers.CMSettings$Global: boolean isLegacySetting(java.lang.String) +com.amap.api.location.AMapLocation: java.lang.String getCity() +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: MoonPhase(java.lang.Integer,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_enabled +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.xw.repo.bubbleseekbar.R$attr: int panelMenuListWidth +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dialog +androidx.lifecycle.LiveData$AlwaysActiveObserver: boolean shouldBeActive() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial() +androidx.cardview.widget.CardView: void setCardBackgroundColor(android.content.res.ColorStateList) +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEVELOPMENT_SHORTCUT +com.github.rahatarmanahmed.cpv.CircularProgressView: void init(android.util.AttributeSet,int) +okhttp3.internal.http2.Hpack$Writer: int dynamicTableByteCount +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_elevation +okhttp3.internal.ws.WebSocketReader: void readMessageFrame() +com.google.android.gms.common.server.converter.StringToIntConverter$zaa: android.os.Parcelable$Creator CREATOR +androidx.recyclerview.widget.RecyclerView: void setRecyclerListener(androidx.recyclerview.widget.RecyclerView$RecyclerListener) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose getLocationPurpose() +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorHeight +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontStyle +androidx.constraintlayout.widget.R$color: int secondary_text_default_material_dark +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeCloudCover() +retrofit2.ParameterHandler$QueryMap: java.lang.reflect.Method method +wangdaye.com.geometricweather.R$id: int confirm_button +com.google.android.material.R$dimen: int design_tab_scrollable_min_width +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onDetach +wangdaye.com.geometricweather.R$styleable: int ActionBar_progressBarStyle +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: void run() +com.turingtechnologies.materialscrollbar.R$attr: int thickness +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: ExecutorScheduler$ExecutorWorker$InterruptibleRunnable(java.lang.Runnable,io.reactivex.internal.disposables.DisposableContainer) +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_reboot +androidx.cardview.widget.CardView: void setRadius(float) +com.google.android.material.R$dimen: int abc_text_size_body_1_material +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_checkableBehavior +com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +wangdaye.com.geometricweather.R$attr: int initialActivityCount +com.google.android.material.slider.Slider: void setTrackActiveTintList(android.content.res.ColorStateList) +androidx.preference.R$drawable: int abc_ic_star_half_black_16dp +com.turingtechnologies.materialscrollbar.R$id: int fill +com.google.android.material.R$attr: int actionLayout +com.google.android.material.tabs.TabLayout: int getTabGravity() +com.jaredrummler.android.colorpicker.R$styleable: int PopupWindowBackgroundState_state_above_anchor +com.google.android.material.R$styleable: int Layout_layout_constraintWidth_percent +com.turingtechnologies.materialscrollbar.R$color: int foreground_material_light +wangdaye.com.geometricweather.R$animator: int weather_clear_day_2 +com.google.android.material.internal.NavigationMenuItemView: void setNeedsEmptyIcon(boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCloseDrawable +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton_CloseMode +com.jaredrummler.android.colorpicker.R$id: int action_mode_close_button +com.xw.repo.bubbleseekbar.R$string: int abc_menu_space_shortcut_label +com.bumptech.glide.Registry$NoSourceEncoderAvailableException +okhttp3.Route: java.net.InetSocketAddress inetSocketAddress +androidx.appcompat.R$color: int abc_color_highlight_material +androidx.fragment.R$id: int line1 +com.turingtechnologies.materialscrollbar.R$attr: int bottomAppBarStyle +androidx.lifecycle.LifecycleEventObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +androidx.lifecycle.SavedStateHandleController: void tryToAddRecreator(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) +wangdaye.com.geometricweather.R$styleable: int SearchView_defaultQueryHint +com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_android_alpha +androidx.constraintlayout.widget.R$id: int postLayout +wangdaye.com.geometricweather.R$styleable: int ArcProgress_text_size +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_orderInCategory +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyTopRight +com.bumptech.glide.R$attr: int fontProviderQuery +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionBarOverlay +retrofit2.ParameterHandler$RawPart: void apply(retrofit2.RequestBuilder,okhttp3.MultipartBody$Part) +com.google.android.material.chip.Chip: void setSingleLine(boolean) +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: ServiceLifecycleDispatcher$DispatchRunnable(androidx.lifecycle.LifecycleRegistry,androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: java.lang.String pubTime +wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_orientation +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getWetBulbTemperature() +com.google.android.material.R$dimen: int disabled_alpha_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_menu +androidx.lifecycle.FullLifecycleObserver: void onStop(androidx.lifecycle.LifecycleOwner) androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display2 -androidx.constraintlayout.widget.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle[] values() -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetEnd -wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_hovered_alpha -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.R$attr: int touchAnchorSide -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: double Value -wangdaye.com.geometricweather.R$drawable: int ic_email -androidx.viewpager2.R$styleable: int GradientColor_android_type -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_color -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.google.android.material.R$styleable: int ProgressIndicator_indicatorSize -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -com.google.android.material.R$styleable: int Chip_android_text -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -android.didikee.donate.R$layout: int abc_dialog_title_material -cyanogenmod.providers.CMSettings$Secure: java.lang.String[] NAVIGATION_RING_TARGETS -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: double Value -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.lang.String pubTime -com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrim(android.graphics.drawable.Drawable) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarItemBackground -wangdaye.com.geometricweather.R$dimen: int design_snackbar_max_width -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer LEFT_CLOSE -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_height_major -androidx.recyclerview.R$styleable: int RecyclerView_stackFromEnd -com.github.rahatarmanahmed.cpv.CircularProgressView: float indeterminateSweep -androidx.appcompat.widget.Toolbar: void setTitleMarginTop(int) -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetEndWithActions -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.lang.Object enterTransform(java.lang.Object) -androidx.preference.R$dimen: int abc_dropdownitem_icon_width -okhttp3.Dispatcher: void cancelAll() -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light_normal_background -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_toTopOf -cyanogenmod.app.ProfileManager: android.content.Context mContext -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipBackgroundColor -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setTime(long) -okhttp3.CertificatePinner$Pin: int hashCode() -androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.R$attr: int flow_wrapMode -com.google.android.material.slider.Slider: void setLabelBehavior(int) -androidx.preference.R$id: int action_bar_spinner -com.jaredrummler.android.colorpicker.R$dimen: int cpv_item_horizontal_padding -com.google.android.gms.location.ActivityTransitionResult -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -retrofit2.http.Query: boolean encoded() -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getPackage() -androidx.hilt.R$id: int icon_group -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty3H -com.google.android.material.R$integer: int mtrl_badge_max_character_count -com.google.android.material.textfield.TextInputLayout: int getCounterMaxLength() -androidx.activity.R$style: int TextAppearance_Compat_Notification -com.google.android.material.R$styleable: int TextInputLayout_shapeAppearanceOverlay -okhttp3.internal.cache2.Relay$RelaySource: okio.Timeout timeout() -androidx.appcompat.R$styleable: int ActionBar_divider -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_stroke_size -wangdaye.com.geometricweather.R$styleable: int Preference_enabled -cyanogenmod.weather.WeatherInfo: double getTodaysLow() -com.bumptech.glide.load.engine.GlideException: java.lang.Exception exception -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterTextAppearance -androidx.appcompat.resources.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: java.lang.String timezone -com.google.android.material.R$attr: int rippleColor -androidx.dynamicanimation.R$drawable: int notification_bg_normal -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_128_GCM_SHA256 -androidx.loader.R$dimen: int notification_small_icon_background_padding -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Dialog -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_0 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeWindSpeed -wangdaye.com.geometricweather.db.entities.AlertEntityDao: AlertEntityDao(org.greenrobot.greendao.internal.DaoConfig) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature RealFeelTemperature -com.google.android.material.R$attr: int toolbarNavigationButtonStyle -james.adaptiveicon.R$attr: int srcCompat -androidx.constraintlayout.widget.R$attr: int divider -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer treeIndex -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitationDuration() -wangdaye.com.geometricweather.R$string: int key_hide_subtitle -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button -com.google.android.material.slider.BaseSlider: void setTrackInactiveTintList(android.content.res.ColorStateList) -james.adaptiveicon.R$attr: int voiceIcon -com.google.android.material.R$attr: int paddingEnd -cyanogenmod.providers.CMSettings$Global: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) -androidx.work.impl.WorkDatabase -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onError(java.lang.Throwable) -io.reactivex.internal.subscribers.StrictSubscriber: void cancel() -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.Observer downstream -com.google.android.material.R$styleable: int KeyTimeCycle_motionTarget -androidx.constraintlayout.widget.R$attr: int color -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_arrowShaftLength -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -okhttp3.internal.http2.Http2Reader$ContinuationSource: long read(okio.Buffer,long) -okhttp3.RealCall$1: void timedOut() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String no2 -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: CallEnqueueObservable$CallCallback(retrofit2.Call,io.reactivex.Observer) -wangdaye.com.geometricweather.R$string: int material_clock_toggle_content_description -androidx.appcompat.view.menu.ListMenuItemView: ListMenuItemView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$attr: int layout_constraintVertical_chainStyle -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -okhttp3.internal.Util$2 -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_scaleX -androidx.work.R$id: int accessibility_custom_action_1 +james.adaptiveicon.R$styleable: int AppCompatTheme_activityChooserViewStyle +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_height_material +okhttp3.internal.tls.DistinguishedNameParser: int end +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: void truncate() +com.autonavi.aps.amapapi.model.AMapLocationServer: AMapLocationServer(java.lang.String) +androidx.preference.EditTextPreference$SavedState +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onError(java.lang.Throwable) +androidx.preference.R$style: int PreferenceFragment_Material +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver +com.google.android.material.R$layout: int abc_list_menu_item_icon +androidx.hilt.R$styleable: int Fragment_android_id +androidx.vectordrawable.animated.R$id: int actions +androidx.dynamicanimation.animation.SpringAnimation +com.google.android.material.R$dimen: int design_bottom_navigation_active_item_max_width +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_OFF_VALIDATOR +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatPressedTranslationZ(float) +okhttp3.internal.http2.Http2Stream$FramingSink: long EMIT_BUFFER_SIZE +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_sync_duration +retrofit2.DefaultCallAdapterFactory$1 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_65 +android.didikee.donate.R$id: int search_badge +wangdaye.com.geometricweather.R$attr: int actionBarTabBarStyle +androidx.hilt.R$styleable: int FontFamilyFont_android_fontWeight +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DialogWhenLarge +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$dimen: int little_margin +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display1 +androidx.preference.R$styleable: int Preference_android_fragment +androidx.constraintlayout.widget.R$styleable: int KeyCycle_curveFit +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: java.lang.String Unit +androidx.preference.R$attr: int iconTintMode +com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Dialog +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_checkedTextViewStyle +com.turingtechnologies.materialscrollbar.R$attr: int elevation +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String MinutesText +cyanogenmod.app.IProfileManager$Stub$Proxy: void resetAll() +com.google.android.material.R$layout: int abc_dialog_title_material +androidx.preference.R$attr: int toolbarStyle +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_DarkActionBar +com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_layout +com.jaredrummler.android.colorpicker.R$attr: int titleMargins +cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient access$202(cyanogenmod.weatherservice.WeatherProviderService,cyanogenmod.weatherservice.IWeatherProviderServiceClient) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getDewPoint() +android.didikee.donate.R$color: int material_grey_850 +com.google.android.material.R$attr: int tabMode +james.adaptiveicon.R$drawable: int abc_ic_ab_back_material +androidx.constraintlayout.widget.R$styleable: int Constraint_android_id +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_textAppearance +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_behavior +wangdaye.com.geometricweather.R$drawable: int weather_wind +cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(cyanogenmod.weather.WeatherInfo$1) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_android_maxHeight +wangdaye.com.geometricweather.R$attr: int lineHeight +wangdaye.com.geometricweather.R$layout: int image_frame +androidx.constraintlayout.widget.R$styleable: int KeyPosition_motionTarget +cyanogenmod.externalviews.ExternalView$2: void run() +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver parent +okhttp3.internal.http1.Http1Codec$AbstractSource: okio.ForwardingTimeout timeout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String primary +androidx.appcompat.R$style: int Base_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.R$string: int settings_title_temperature_unit +okhttp3.HttpUrl: void percentDecode(okio.Buffer,java.lang.String,int,int,boolean) +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDefaultPhoneSub(int) +androidx.preference.R$styleable: int MenuView_android_verticalDivider +com.google.android.material.R$styleable: int[] LinearLayoutCompat +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_searchHintIcon +wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_dark +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.disposables.Disposable upstream +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_homeAsUpIndicator +com.turingtechnologies.materialscrollbar.R$attr: int state_collapsed +com.google.android.material.datepicker.CalendarConstraints$DateValidator +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: long timeout +androidx.lifecycle.extensions.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$string: int transition_activity_search_bar +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.MinutelyEntity) com.google.android.material.textfield.TextInputLayout: int getEndIconMode() -android.didikee.donate.R$drawable: int abc_list_pressed_holo_dark -android.didikee.donate.R$id: int submenuarrow -androidx.swiperefreshlayout.R$id: int line3 -com.google.android.material.R$styleable: int ConstraintSet_android_rotation -okhttp3.internal.platform.Platform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.X509TrustManager) -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_icon_btn_padding_left -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BEGIN_ARRAY -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: java.util.List getSuggestions(android.content.Intent) -android.didikee.donate.R$style: int Widget_AppCompat_Toolbar -androidx.constraintlayout.widget.R$id: int autoCompleteToStart -io.reactivex.Observable: io.reactivex.Observable sorted() -com.amap.api.location.AMapLocation: java.lang.String q -com.google.android.material.R$attr: int layout_constraintStart_toEndOf -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation -james.adaptiveicon.R$styleable: int SwitchCompat_android_thumb -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor getInstance(java.lang.String) -com.google.android.material.chip.Chip: void setRippleColor(android.content.res.ColorStateList) -okhttp3.Challenge: java.util.Map authParams -androidx.constraintlayout.widget.R$attr: int preserveIconSpacing -james.adaptiveicon.R$attr: int homeLayout -android.didikee.donate.R$anim: int abc_slide_in_bottom -okio.Buffer: okio.Buffer clone() -androidx.constraintlayout.widget.R$color: int dim_foreground_disabled_material_dark -james.adaptiveicon.R$drawable: int abc_spinner_textfield_background_material -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -com.google.android.material.R$styleable: int MenuView_android_windowAnimationStyle -wangdaye.com.geometricweather.R$styleable: int DrawerLayout_unfold -com.google.android.material.R$styleable: int KeyTimeCycle_transitionPathRotate -androidx.preference.R$id: int search_mag_icon -androidx.appcompat.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.R$integer: int design_tab_indicator_anim_duration_ms -androidx.preference.R$drawable: int btn_checkbox_checked_mtrl -androidx.coordinatorlayout.R$attr: int fontProviderQuery -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_previewSize -androidx.transition.R$id: int tag_unhandled_key_event_manager -androidx.constraintlayout.widget.R$attr: int drawableTopCompat -androidx.fragment.app.FragmentManager: void removeOnBackStackChangedListener(androidx.fragment.app.FragmentManager$OnBackStackChangedListener) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial Imperial -com.google.android.material.R$color: int cardview_shadow_start_color -com.google.android.material.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean isDisposed() -com.google.android.material.R$dimen: int mtrl_calendar_day_horizontal_padding -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_bottom -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents -cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_SOUND_SETTINGS -androidx.appcompat.R$attr: int logoDescription -com.jaredrummler.android.colorpicker.R$id: int right_icon -com.google.android.material.datepicker.Month: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$styleable: int Constraint_android_visibility -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onUnsubscribed() -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_min -androidx.hilt.work.R$layout: R$layout() -okhttp3.internal.http2.Hpack: java.util.Map NAME_TO_FIRST_INDEX -james.adaptiveicon.R$drawable: int abc_list_divider_mtrl_alpha -com.google.android.material.R$id: int search_mag_icon -james.adaptiveicon.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -james.adaptiveicon.R$styleable: int AppCompatTheme_popupMenuStyle -okhttp3.CacheControl: okhttp3.CacheControl parse(okhttp3.Headers) -wangdaye.com.geometricweather.R$styleable: int[] FontFamilyFont -cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile[] getProfiles() -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -androidx.viewpager2.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.List value -okhttp3.Dispatcher: void setMaxRequests(int) -com.google.android.material.R$dimen: int mtrl_btn_icon_padding -androidx.preference.R$styleable: int ActionBar_displayOptions -com.google.android.material.R$styleable: int KeyCycle_android_rotationX -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List hourly_forecast -com.google.android.material.R$styleable: int Constraint_layout_constraintCircleRadius -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Inverse -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthFocusedResource(int) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Spinner_Underlined -androidx.lifecycle.Lifecycle$Event -okhttp3.MediaType: java.lang.String toString() -com.google.android.material.R$styleable: int Constraint_android_orientation -okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy -com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Badge -wangdaye.com.geometricweather.R$xml: int cm_weather_provider_options -wangdaye.com.geometricweather.common.basic.models.weather.History: int getDaytimeTemperature() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: java.lang.String type -wangdaye.com.geometricweather.R$drawable: int widget_clock_day_horizontal -androidx.preference.R$id: int accessibility_action_clickable_span -okhttp3.HttpUrl: HttpUrl(okhttp3.HttpUrl$Builder) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_tooltipText -androidx.constraintlayout.widget.R$attr: int customStringValue -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: void setTo(java.lang.String) -androidx.recyclerview.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer degreeDayTemperature -com.google.android.material.R$attr: int telltales_velocityMode -wangdaye.com.geometricweather.R$layout: int widget_clock_day_mini -wangdaye.com.geometricweather.R$attr: int cpv_previewSize -com.bumptech.glide.R$id: int info -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isMaybe -retrofit2.ParameterHandler$QueryName: boolean encoded -wangdaye.com.geometricweather.R$drawable: int notif_temp_114 -wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_srcCompat -okhttp3.internal.http.HttpHeaders: int skipUntil(java.lang.String,int,java.lang.String) -wangdaye.com.geometricweather.R$attr: int actionMenuTextAppearance -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_default -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_font -androidx.appcompat.R$drawable: int abc_ratingbar_indicator_material -cyanogenmod.providers.CMSettings$Secure: long getLong(android.content.ContentResolver,java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int searchHintIcon -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setSlingshotDistance(int) -com.bumptech.glide.R$id: int end -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Caption -com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getSupportImageTintMode() -wangdaye.com.geometricweather.R$attr: int hintAnimationEnabled -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_NULL_SHA +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginStart +wangdaye.com.geometricweather.R$attr: int bottomAppBarStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_end_icon_margin_start +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder eventListener(okhttp3.EventListener) +com.google.android.material.R$styleable: int TextInputLayout_boxStrokeWidth +androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +wangdaye.com.geometricweather.R$anim: int mtrl_card_lowers_interpolator +androidx.hilt.lifecycle.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconTintMode +okhttp3.internal.ws.RealWebSocket$Streams: boolean client +cyanogenmod.themes.IThemeService$Stub$Proxy: boolean isThemeBeingProcessed(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +android.support.v4.os.IResultReceiver$Stub: boolean setDefaultImpl(android.support.v4.os.IResultReceiver) +com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusBottomEnd +wangdaye.com.geometricweather.R$attr: int itemTextAppearanceActive +wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_title +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_ttcIndex +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_to_on_mtrl_015 +androidx.viewpager.R$dimen +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float unitFactor +android.didikee.donate.R$styleable: int ActionBar_homeLayout +okio.ForwardingSink: java.lang.String toString() +okhttp3.Request: java.lang.String header(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_headerBackground +com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context,android.util.AttributeSet,int) +androidx.dynamicanimation.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WindChillTemperature +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_subhead_material +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CONDITION_CODE +androidx.preference.R$style: int Widget_AppCompat_SeekBar +androidx.hilt.R$id: int italic +wangdaye.com.geometricweather.R$drawable: int shortcuts_rain_foreground +com.jaredrummler.android.colorpicker.R$layout: int preference_category_material +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: java.lang.Integer poll() +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_iconTintMode +james.adaptiveicon.R$dimen +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_LIGHT +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.HistoryEntity,long) +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getTagName(android.content.Context) +com.google.android.material.R$style: int Base_Widget_Design_TabLayout +androidx.constraintlayout.widget.R$styleable: int Motion_animate_relativeTo +android.didikee.donate.R$id: int text +androidx.vectordrawable.animated.R$dimen: int notification_action_text_size +com.bumptech.glide.R$attr: R$attr() +com.google.android.material.R$attr: int expandedTitleMarginBottom +okio.ByteString: boolean rangeEquals(int,byte[],int,int) +com.google.android.material.R$attr: int flow_lastVerticalStyle +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String PUBLIC_SUFFIX_RESOURCE +androidx.customview.R$styleable: int FontFamilyFont_android_fontVariationSettings +retrofit2.KotlinExtensions$await$2$2: KotlinExtensions$await$2$2(kotlinx.coroutines.CancellableContinuation) +com.turingtechnologies.materialscrollbar.R$attr: int editTextBackground +wangdaye.com.geometricweather.background.polling.work.worker.AsyncUpdateWorker: AsyncUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) +android.didikee.donate.R$dimen: int abc_progress_bar_height_material +com.google.android.material.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_android_maxWidth +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_46 +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_max_progress +androidx.appcompat.R$attr: int actionBarDivider +com.xw.repo.bubbleseekbar.R$attr: int bsb_touch_to_seek +com.google.android.material.R$dimen: int tooltip_y_offset_touch +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: ObservableTimeout$TimeoutFallbackObserver(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String LocalizedType +wangdaye.com.geometricweather.main.MainActivity: void onSearchBarClicked(android.view.View) +wangdaye.com.geometricweather.R$string: int wind_10 +okhttp3.internal.http2.Http2Connection +wangdaye.com.geometricweather.R$id: int tag_accessibility_pane_title +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void subscribe(io.reactivex.Observer) +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Province +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionBarOverlay +wangdaye.com.geometricweather.R$dimen: int mtrl_progress_circular_inset +androidx.hilt.work.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedText(android.content.Context,float) +androidx.constraintlayout.widget.R$attr: int chainUseRtl +com.google.android.material.R$id: int material_timepicker_cancel_button +com.google.android.material.R$styleable: int ActionBar_icon +androidx.transition.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogTheme +cyanogenmod.providers.CMSettings$Global: java.lang.String WAKE_WHEN_PLUGGED_OR_UNPLUGGED +androidx.appcompat.R$color: int notification_action_color_filter +androidx.constraintlayout.widget.R$styleable: int MotionLayout_showPaths +androidx.constraintlayout.widget.Barrier: void setAllowsGoneWidget(boolean) +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Line2 +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_legacy_text_color_selector +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getDailyEntityList() +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setWifiActiveScan(boolean) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarStyle +retrofit2.ParameterHandler$QueryName: retrofit2.Converter nameConverter +androidx.preference.R$style: int Theme_AppCompat_DayNight +androidx.swiperefreshlayout.R$id: int accessibility_action_clickable_span +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_DarkActionBar +okio.RealBufferedSource: short readShortLe() +wangdaye.com.geometricweather.R$attr: int counterOverflowTextColor +wangdaye.com.geometricweather.R$attr: int region_widthLessThan +james.adaptiveicon.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void subscribeNext() +com.google.android.material.slider.Slider: void setHaloTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure measure +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +com.google.android.material.R$attr: int brightness +com.amap.api.fence.GeoFence: float m +androidx.recyclerview.R$dimen: int compat_control_corner_material +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: okhttp3.internal.http1.Http1Codec this$0 +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float thunderstorm +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource CAIYUN +com.github.rahatarmanahmed.cpv.CircularProgressView$2: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +androidx.appcompat.widget.ButtonBarLayout +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Tooltip +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: int getStrokeColor() +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean outputFused +cyanogenmod.hardware.ICMHardwareService: boolean setDisplayGammaCalibration(int,int[]) +android.didikee.donate.R$layout: int abc_action_menu_layout +androidx.vectordrawable.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_backgroundTint +com.amap.api.fence.DistrictItem: android.os.Parcelable$Creator getCreator() +androidx.lifecycle.service.R +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Bridge +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context) +okhttp3.internal.http1.Http1Codec: int STATE_READ_RESPONSE_HEADERS +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: void complete() +com.google.android.material.R$styleable: int MenuItem_android_enabled +retrofit2.Utils: java.lang.RuntimeException methodError(java.lang.reflect.Method,java.lang.Throwable,java.lang.String,java.lang.Object[]) +androidx.activity.R$styleable: int GradientColor_android_startX +com.jaredrummler.android.colorpicker.R$attr: int thickness +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable publish() +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getDensityText(android.content.Context,float) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.util.List SupplementalAdminAreas +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean content +androidx.viewpager2.R$dimen: int compat_notification_large_icon_max_height +androidx.preference.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.lang.String pubTime +com.google.android.material.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$id: int save_overlay_view +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String[] SELECT_VALUE +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode SYSTEM +com.jaredrummler.android.colorpicker.R$styleable: int[] ViewBackgroundHelper +android.didikee.donate.R$id: int src_in +wangdaye.com.geometricweather.R$styleable: int View_theme +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox +androidx.preference.R$drawable: R$drawable() +cyanogenmod.profiles.BrightnessSettings: void readFromParcel(android.os.Parcel) +androidx.viewpager.widget.PagerTabStrip: void setDrawFullUnderline(boolean) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalGap +okhttp3.CipherSuite: java.lang.String javaName +com.turingtechnologies.materialscrollbar.R$style: int Platform_V21_AppCompat +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.Observer downstream +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_disabled_holo_light +com.xw.repo.bubbleseekbar.R$attr: int titleMargins +androidx.appcompat.widget.ActionMenuPresenter$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setLogo(java.lang.String) +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String DAYS_OF_WEEK +wangdaye.com.geometricweather.R$styleable: int ActionMode_backgroundSplit +com.xw.repo.bubbleseekbar.R$id: int buttonPanel +okhttp3.logging.LoggingEventListener: void dnsStart(okhttp3.Call,java.lang.String) +retrofit2.ParameterHandler$Part +io.reactivex.exceptions.CompositeException: java.lang.Throwable getRootCause(java.lang.Throwable) +com.google.android.gms.common.api.internal.LifecycleCallback: com.google.android.gms.common.api.internal.LifecycleFragment getChimeraLifecycleFragmentImpl(com.google.android.gms.common.api.internal.LifecycleActivity) +com.google.android.material.R$style: int Widget_MaterialComponents_NavigationView +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: ObservableTakeUntil$TakeUntilMainObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver) +com.google.android.material.behavior.SwipeDismissBehavior: void setListener(com.google.android.material.behavior.SwipeDismissBehavior$OnDismissListener) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_creator +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getTotal() +com.amap.api.fence.GeoFence: java.util.List getPointList() +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getIconResEnd() +androidx.swiperefreshlayout.R$drawable: int notification_action_background +android.didikee.donate.R$anim: int abc_popup_enter +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_6_00 +com.google.android.material.R$attr: int contentPaddingLeft +cyanogenmod.providers.CMSettings$NameValueCache: android.content.IContentProvider mContentProvider +com.turingtechnologies.materialscrollbar.R$attr: int divider +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getRagweedDescription() +android.didikee.donate.R$style: int Base_DialogWindowTitleBackground_AppCompat +androidx.work.impl.foreground.SystemForegroundService: SystemForegroundService() +androidx.constraintlayout.widget.R$styleable: int[] Motion +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowDy +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Time +com.google.android.material.R$styleable: int ConstraintSet_pivotAnchor +android.didikee.donate.R$attr: int splitTrack +okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.WebSocketWriter writer +com.google.android.material.R$id: int header_title +james.adaptiveicon.R$styleable: int Toolbar_titleTextAppearance +cyanogenmod.weatherservice.ServiceRequestResult$1: cyanogenmod.weatherservice.ServiceRequestResult createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$styleable: int[] Slider +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat +androidx.customview.R$color: int ripple_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_showMotionSpec +com.jaredrummler.android.colorpicker.ColorPickerView: int getPreferredHeight() +android.didikee.donate.R$string: R$string() +com.baidu.location.indoor.mapversion.c.c$b: double e +wangdaye.com.geometricweather.R$styleable: int Badge_number +okhttp3.OkHttpClient: int pingInterval +cyanogenmod.weather.RequestInfo: RequestInfo(android.os.Parcel,cyanogenmod.weather.RequestInfo$1) +com.google.android.material.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean getDirection() +com.google.android.material.R$color: int design_default_color_error +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline4 +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_background_transition_holo_light +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_suggestionRowLayout +cyanogenmod.weatherservice.WeatherProviderService$1: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: double Value +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean isDisposed() +com.turingtechnologies.materialscrollbar.R$attr: int tabTextAppearance +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_toLeftOf +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Light +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Bridge +wangdaye.com.geometricweather.R$string: int key_widget_multi_city +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: java.lang.Integer max +wangdaye.com.geometricweather.R$id: int group_divider +androidx.preference.Preference$BaseSavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeAppearance +okio.Timeout: okio.Timeout clearDeadline() +okhttp3.OkHttpClient$Builder: okhttp3.Cache cache +com.xw.repo.bubbleseekbar.R$styleable: int RecycleListView_paddingBottomNoButtons +cyanogenmod.providers.CMSettings$System: android.net.Uri CONTENT_URI +com.google.android.material.R$color: int design_dark_default_color_on_primary +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: AndroidPlatform$AndroidTrustRootIndex(javax.net.ssl.X509TrustManager,java.lang.reflect.Method) +android.didikee.donate.R$dimen: int abc_dialog_title_divider_material +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light_normal +androidx.constraintlayout.widget.R$attr: int dividerHorizontal +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: double Dbz +androidx.customview.R$styleable: int FontFamily_fontProviderFetchStrategy +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +cyanogenmod.weatherservice.WeatherProviderService: void onRequestSubmitted(cyanogenmod.weatherservice.ServiceRequest) +com.google.android.material.R$id: int zero_corner_chip +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_Toolbar +com.google.android.material.R$dimen: int mtrl_extended_fab_elevation +cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING_RAMP_UP_TIME +wangdaye.com.geometricweather.R$attr: int chipGroupStyle +okhttp3.Cookie +cyanogenmod.content.Intent: java.lang.String ACTION_APP_FAILURE +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_icon +com.turingtechnologies.materialscrollbar.R$id: int action_bar_title +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeRealFeelShaderTemperature() +com.google.android.material.R$attr: int animationMode +okhttp3.internal.http2.Http2Codec: java.lang.String TRANSFER_ENCODING +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_rangeFillColor +com.google.android.material.R$id: int accessibility_custom_action_6 +cyanogenmod.weather.RequestInfo: int access$602(cyanogenmod.weather.RequestInfo,int) +cyanogenmod.app.ProfileGroup$Mode +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentListStyle +com.google.android.material.circularreveal.CircularRevealFrameLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +retrofit2.ParameterHandler$Header: retrofit2.Converter valueConverter +androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context,android.util.AttributeSet) +androidx.hilt.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColorSchemeColor(int) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +androidx.lifecycle.extensions.R$anim: int fragment_open_exit +android.didikee.donate.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +com.google.android.material.R$string: int abc_capital_on +wangdaye.com.geometricweather.R$anim: int abc_fade_in +androidx.preference.R$styleable: int ActionBar_homeAsUpIndicator +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: boolean isEmpty() +cyanogenmod.hardware.ICMHardwareService: int[] getDisplayGammaCalibration(int) +wangdaye.com.geometricweather.R$xml: int standalone_badge +androidx.vectordrawable.R$string: R$string() +com.turingtechnologies.materialscrollbar.R$id: int notification_background +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListPopupWindow +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintStart_toEndOf +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode REFUSED_STREAM +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitationDuration +okhttp3.internal.cache2.Relay: long upstreamPos +com.jaredrummler.android.colorpicker.R$styleable: int ActionBarLayout_android_layout_gravity +cyanogenmod.power.PerformanceManager: cyanogenmod.power.PerformanceManager sInstance +com.turingtechnologies.materialscrollbar.R$drawable: int abc_vector_test +retrofit2.http.HTTP: java.lang.String path() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List wuran +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton +okhttp3.RequestBody$1: RequestBody$1(okhttp3.MediaType,okio.ByteString) +androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy +com.google.android.material.snackbar.SnackbarContentLayout: android.widget.TextView getMessageView() +android.didikee.donate.R$attr: int subtitleTextAppearance +com.amap.api.location.AMapLocation: int LOCATION_TYPE_WIFI +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTint +com.google.android.material.R$style: int CardView +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endColor +androidx.constraintlayout.widget.R$color: int bright_foreground_material_dark +androidx.appcompat.R$drawable: int abc_control_background_material +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPrefixText() +wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_max +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_motionProgress +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: long serialVersionUID +okhttp3.internal.http2.Http2Connection: long bytesLeftInWriteWindow +com.jaredrummler.android.colorpicker.R$color: int material_grey_300 +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.String TABLENAME +retrofit2.adapter.rxjava2.RxJava2CallAdapter: io.reactivex.Scheduler scheduler +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void setDisposable(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg +com.amap.api.location.AMapLocationClientOption: java.lang.Object clone() +wangdaye.com.geometricweather.R$attr: int editTextStyle +com.jaredrummler.android.colorpicker.R$attr: int closeItemLayout +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_track_color +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_PICKED_UUID +androidx.work.R$id: int accessibility_custom_action_16 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogCornerRadius +com.jaredrummler.android.colorpicker.R$id: int parentPanel +io.reactivex.internal.queue.SpscArrayQueue: void clear() +androidx.appcompat.resources.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.AlertEntityDao alertEntityDao +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitation +com.github.rahatarmanahmed.cpv.R$attr: int cpv_thickness +com.google.android.material.R$attr: int shrinkMotionSpec +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pm10 +androidx.constraintlayout.widget.R$drawable: int abc_item_background_holo_dark +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isSnow() +wangdaye.com.geometricweather.R$color: int abc_background_cache_hint_selector_material_dark +androidx.appcompat.R$color: int material_deep_teal_500 +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginTop +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder dns(okhttp3.Dns) +com.google.android.material.R$layout: int mtrl_calendar_horizontal +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +androidx.preference.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment: void setOnWeatherSourceChangedListener(wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment$OnWeatherSourceChangedListener) +android.didikee.donate.R$color: int bright_foreground_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int[] ListPopupWindow +james.adaptiveicon.R$attr: int logo +androidx.appcompat.R$id: int accessibility_custom_action_25 +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_checkbox +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarItemBackground +androidx.lifecycle.ClassesInfoCache$MethodReference: ClassesInfoCache$MethodReference(int,java.lang.reflect.Method) +cyanogenmod.app.CustomTile$Builder: CustomTile$Builder(android.content.Context) +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Delete +wangdaye.com.geometricweather.R$bool: R$bool() +com.google.android.material.bottomnavigation.BottomNavigationView +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_width_minor +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_font +com.jaredrummler.android.colorpicker.R$id: int search_go_btn +wangdaye.com.geometricweather.R$drawable: int weather_sleet_pixel +com.jaredrummler.android.colorpicker.R$attr: int actionBarTheme +androidx.work.R$id: int accessibility_custom_action_20 +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) +james.adaptiveicon.R$styleable: int DrawerArrowToggle_arrowHeadLength +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType[] values() +androidx.constraintlayout.widget.R$styleable: int AlertDialog_android_layout +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean isPrecipitation() +wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line1_head_interpolator +androidx.constraintlayout.widget.R$styleable: int Constraint_motionProgress +wangdaye.com.geometricweather.R$array: int speed_unit_values +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String MODIFY_ALARMS_PERMISSION +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_Overflow +androidx.swiperefreshlayout.R$attr: int fontWeight cyanogenmod.providers.CMSettings$System: java.util.Map VALIDATORS -wangdaye.com.geometricweather.R$attr: int behavior_saveFlags -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -com.bumptech.glide.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupMenu -androidx.preference.R$id: int notification_background -okio.BufferedSource: long indexOf(okio.ByteString) -retrofit2.RequestFactory: okhttp3.Request create(java.lang.Object[]) -wangdaye.com.geometricweather.R$dimen: int notification_main_column_padding_top -androidx.appcompat.widget.LinearLayoutCompat: void setDividerPadding(int) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button -cyanogenmod.app.suggest.IAppSuggestProvider -com.jaredrummler.android.colorpicker.R$attr: int stackFromEnd -android.didikee.donate.R$styleable: int AppCompatTheme_imageButtonStyle -okhttp3.internal.cache.DiskLruCache$Entry: java.io.File[] cleanFiles -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.Observer downstream -cyanogenmod.app.Profile$Type: int CONDITIONAL -androidx.viewpager2.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$id: int circle_center -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -com.google.android.material.R$dimen: int material_font_1_3_box_collapsed_padding_top -androidx.core.R$id: int tag_accessibility_actions -androidx.appcompat.R$attr: int dialogCornerRadius -okio.SegmentedByteString: int lastIndexOf(byte[],int) -okhttp3.WebSocketListener -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean) -wangdaye.com.geometricweather.R$style: int Widget_Support_CoordinatorLayout -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_PLAY_QUEUE_VALIDATOR -androidx.vectordrawable.animated.R$integer: int status_bar_notification_info_maxnum -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorFullWidth -wangdaye.com.geometricweather.R$layout: int design_navigation_item_subheader -com.jaredrummler.android.colorpicker.R$attr: int persistent -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.DailyEntityDao dailyEntityDao -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedHeightMajor -wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Panel -com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_android_popupBackground -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_halo_radius -androidx.appcompat.widget.FitWindowsFrameLayout: FitWindowsFrameLayout(android.content.Context,android.util.AttributeSet) -androidx.fragment.app.SuperNotCalledException: SuperNotCalledException(java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float snowPrecipitationProbability -wangdaye.com.geometricweather.R$attr: int adjustable -cyanogenmod.weather.WeatherInfo -cyanogenmod.weatherservice.ServiceRequestResult$1: ServiceRequestResult$1() -okhttp3.internal.http2.Header: Header(okio.ByteString,java.lang.String) -cyanogenmod.weather.CMWeatherManager$2$2: CMWeatherManager$2$2(cyanogenmod.weather.CMWeatherManager$2,cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener,int,java.util.List) -com.amap.api.fence.GeoFence: void setType(int) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void onDetachedFromWindow() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: int UnitType -androidx.preference.R$attr: int iconifiedByDefault -androidx.lifecycle.SavedStateHandleController: SavedStateHandleController(java.lang.String,androidx.lifecycle.SavedStateHandle) -com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -androidx.appcompat.R$id: int title_template -wangdaye.com.geometricweather.R$string: int settings_summary_service_provider -retrofit2.SkipCallbackExecutorImpl: SkipCallbackExecutorImpl() -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Id -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_exitFadeDuration -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroupForPackage -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.R$id: int custom -com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_out_bottom -com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_top_mtrl_alpha -wangdaye.com.geometricweather.R$attr: int flow_horizontalStyle -james.adaptiveicon.R$styleable: int CompoundButton_buttonTintMode -wangdaye.com.geometricweather.R$drawable: int ic_circle_medium -androidx.appcompat.R$styleable: int GradientColor_android_centerY -okhttp3.internal.platform.OptionalMethod: java.lang.Object invoke(java.lang.Object,java.lang.Object[]) -androidx.recyclerview.R$id: int time -androidx.legacy.coreutils.R$drawable -okhttp3.Dispatcher: void executed(okhttp3.RealCall) -androidx.preference.R$attr: int checkBoxPreferenceStyle -androidx.appcompat.R$attr: int textAppearanceLargePopupMenu -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored -androidx.viewpager.widget.ViewPager: void setPageMarginDrawable(int) -com.google.android.material.R$styleable: int ProgressIndicator_android_indeterminate -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: int hasRain -androidx.lifecycle.FullLifecycleObserverAdapter$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$Event -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.CMWeatherManager getInstance(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_weight -com.google.android.material.R$attr: int drawableRightCompat -com.google.android.gms.location.ActivityTransitionRequest: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Borderless -androidx.constraintlayout.widget.R$attr: int mock_showDiagonals -com.google.android.material.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type BASELINE -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer aqiIndex -com.google.android.material.behavior.HideBottomViewOnScrollBehavior: HideBottomViewOnScrollBehavior() -androidx.work.R$styleable: int[] GradientColorItem -androidx.recyclerview.widget.RecyclerView: void setNestedScrollingEnabled(boolean) -androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog -com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context,android.util.AttributeSet) -androidx.preference.R$layout: int preference_material -com.google.android.material.chip.Chip: void setBackgroundTintList(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_list_item_padding_horizontal_material -androidx.swiperefreshlayout.R$attr: int font -cyanogenmod.weather.WeatherLocation: java.lang.String access$102(cyanogenmod.weather.WeatherLocation,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_percent -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void dispose() -okhttp3.FormBody: okhttp3.MediaType CONTENT_TYPE -android.didikee.donate.R$color: int abc_search_url_text_selected -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_max -wangdaye.com.geometricweather.R$id: int experience -com.github.rahatarmanahmed.cpv.CircularProgressView: int getColor() -com.xw.repo.bubbleseekbar.R$attr: int bsb_track_size -com.xw.repo.bubbleseekbar.R$attr: int gapBetweenBars -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_text_size -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: int getChartTop() -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeFillColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: int UnitType -androidx.hilt.lifecycle.R$anim: int fragment_fade_enter -wangdaye.com.geometricweather.R$attr: int tabSelectedTextColor -com.github.rahatarmanahmed.cpv.CircularProgressView: void setColor(int) -wangdaye.com.geometricweather.R$drawable: int abc_ic_search_api_material -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: MfWarningsResult$WarningConsequence() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CUSTOM_VALUES_VALIDATOR -cyanogenmod.weather.WeatherInfo: double mTodaysHighTemp -com.google.android.material.R$styleable: int TextInputLayout_boxBackgroundColor -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onError(java.lang.Throwable) -okhttp3.internal.http2.Http2Writer: void writeContinuationFrames(int,long) -wangdaye.com.geometricweather.settings.fragments.SettingsFragment -androidx.preference.R$style: int Base_V28_Theme_AppCompat -com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_disable_only_material_light -okhttp3.Response: java.lang.String toString() -com.xw.repo.bubbleseekbar.R$layout: int abc_action_bar_title_item -android.didikee.donate.R$id: int normal -androidx.preference.R$styleable: int ActionBar_divider -com.google.android.material.R$string: int mtrl_picker_a11y_prev_month -cyanogenmod.themes.ThemeManager: void applyDefaultTheme() -james.adaptiveicon.R$attr: int dialogPreferredPadding -com.google.android.material.R$styleable: int StateSet_defaultState -com.google.android.material.R$attr: int actionBarTheme -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getRain() -com.bumptech.glide.integration.okhttp.R$dimen: R$dimen() -okhttp3.internal.ws.WebSocketProtocol: int B1_FLAG_MASK -wangdaye.com.geometricweather.R$drawable: int notif_temp_20 -androidx.constraintlayout.widget.R$id: int edit_query -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontStyle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4 -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -cyanogenmod.app.Profile: void setStreamSettings(cyanogenmod.profiles.StreamSettings) -com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableTransition -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List alertEntityList -androidx.appcompat.R$color: int abc_tint_edittext -androidx.appcompat.resources.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$color: int mtrl_outlined_stroke_color -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String d -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: boolean requestDismissAndStartActivity(android.content.Intent) -androidx.constraintlayout.widget.R$layout: int abc_screen_content_include -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalStyle -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabView -androidx.constraintlayout.widget.R$attr: int multiChoiceItemLayout -com.github.rahatarmanahmed.cpv.CircularProgressView$8: float val$maxSweep -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline6 -androidx.fragment.R$id: int accessibility_custom_action_25 -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.lang.String getSetTime(android.content.Context) -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -androidx.preference.R$styleable: int MenuItem_android_checked -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void dispose() +com.github.rahatarmanahmed.cpv.CircularProgressView: int size +androidx.recyclerview.R$id: int action_text +wangdaye.com.geometricweather.R$dimen: int test_mtrl_calendar_day_cornerSize +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setScaleY(float) +wangdaye.com.geometricweather.R$dimen: int tooltip_y_offset_non_touch +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService: ForegroundNormalUpdateService() +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_CompactMenu +androidx.fragment.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupMenu_Overflow +io.reactivex.internal.functions.Functions$HashSetCallable: java.lang.Object call() +wangdaye.com.geometricweather.R$attr: int collapseContentDescription +com.google.android.material.R$layout: int mtrl_picker_header_fullscreen +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_5 +cyanogenmod.providers.CMSettings$Secure: java.lang.String PRIVACY_GUARD_NOTIFICATION +wangdaye.com.geometricweather.R$attr: int itemShapeInsetBottom +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String alertId +james.adaptiveicon.R$id: int src_atop +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onScreenTurnedOff() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao chineseCityEntityDao +com.turingtechnologies.materialscrollbar.R$styleable: int[] CoordinatorLayout_Layout +cyanogenmod.app.CustomTile$Builder: android.content.Intent mOnSettingsClick +com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabView +com.amap.api.location.AMapLocation: void setOffset(boolean) +com.amap.api.location.AMapLocationQualityReport: java.lang.String getNetworkType() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float o3 +com.amap.api.fence.GeoFence: float getRadius() +com.google.android.material.R$styleable: int CompoundButton_buttonTint +android.didikee.donate.R$dimen: int abc_action_bar_default_padding_start_material +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitle +wangdaye.com.geometricweather.R$drawable: int flag_sr +androidx.preference.R$styleable: int AppCompatTheme_colorPrimary +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String PrimaryPostalCode +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listMenuViewStyle +androidx.vectordrawable.R$id: int tag_transition_group +okio.SegmentedByteString: SegmentedByteString(okio.Buffer,int) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default androidx.hilt.R$styleable: int FontFamilyFont_android_font -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: int UnitType -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String sunRise -cyanogenmod.app.Profile$DozeMode: int DEFAULT -com.google.android.material.R$styleable: int AppCompatTheme_viewInflaterClass -androidx.viewpager2.R$id: int action_container -cyanogenmod.app.Profile: java.util.Map networkConnectionSubIds -wangdaye.com.geometricweather.R$attr: int hideOnScroll -androidx.constraintlayout.widget.R$color: int foreground_material_light -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void subscribeNext() -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayHorizontalProvider -cyanogenmod.platform.Manifest$permission: java.lang.String READ_ALARMS -androidx.hilt.lifecycle.R$drawable: R$drawable() -okhttp3.Dispatcher: int runningCallsCount() -androidx.core.view.GestureDetectorCompat: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleTextAppearance -okhttp3.OkHttpClient$Builder: OkHttpClient$Builder() -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onComplete() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.LocationEntity) -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_transformation_sheet_expand_spec -android.didikee.donate.R$attr: int preserveIconSpacing -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowDx -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String icon -com.jaredrummler.android.colorpicker.R$attr: int buttonTintMode -androidx.preference.R$layout: int abc_screen_simple -com.bumptech.glide.R$styleable: int GradientColor_android_endColor -com.google.android.material.snackbar.SnackbarContentLayout: android.widget.TextView getMessageView() -io.reactivex.Observable: io.reactivex.Observable flatMapMaybe(io.reactivex.functions.Function) -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setMobileDataEnabled_1 -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_36dp -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.R$style: int cpv_ColorPickerViewStyle -androidx.activity.R$id: int accessibility_custom_action_27 -wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.google.android.material.R$styleable: int Badge_maxCharacterCount -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarPopupTheme -com.jaredrummler.android.colorpicker.R$attr: int suggestionRowLayout -android.didikee.donate.R$attr: int contentInsetEndWithActions -com.google.android.material.R$attr: int tickVisible -com.google.android.material.R$id: int italic -androidx.viewpager.widget.ViewPager: void removeOnAdapterChangeListener(androidx.viewpager.widget.ViewPager$OnAdapterChangeListener) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.String Name -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorButtonNormal -com.turingtechnologies.materialscrollbar.R$anim: int design_bottom_sheet_slide_in -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable -androidx.coordinatorlayout.widget.CoordinatorLayout: androidx.core.view.WindowInsetsCompat getLastWindowInsets() -androidx.hilt.lifecycle.R$dimen: int notification_large_icon_height -androidx.viewpager.R$dimen: int compat_button_padding_horizontal_material -com.autonavi.aps.amapapi.model.AMapLocationServer: void d(java.lang.String) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cwd -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_EditText -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: java.util.Date updateTime -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getSo2Color(android.content.Context) -james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getWeatherSource() -android.didikee.donate.R$dimen: int abc_edit_text_inset_bottom_material -james.adaptiveicon.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassDescription(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Layout_constraint_referenced_ids -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getHeaderHeight() -androidx.appcompat.R$attr: int actionBarSize -androidx.constraintlayout.widget.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.R$id: int parentPanel -com.turingtechnologies.materialscrollbar.R$animator: R$animator() -retrofit2.ParameterHandler$FieldMap: void apply(retrofit2.RequestBuilder,java.util.Map) -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryInnerObserver boundaryObserver -androidx.appcompat.resources.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider BAIDU -com.google.android.material.chip.Chip: void setMaxWidth(int) -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function) -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableEnd -retrofit2.SkipCallbackExecutorImpl: int hashCode() -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String longitude -wangdaye.com.geometricweather.R$attr: int checkedIconTint -wangdaye.com.geometricweather.R$drawable: int notif_temp_75 -androidx.preference.R$id: int accessibility_custom_action_15 -androidx.fragment.R$id: int accessibility_custom_action_13 -androidx.constraintlayout.widget.R$style: int Platform_Widget_AppCompat_Spinner -androidx.appcompat.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginStart -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_spinnerStyle -com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrimColor(int) -wangdaye.com.geometricweather.R$attr: int itemIconPadding -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Toolbar -retrofit2.ParameterHandler$Query: boolean encoded -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit MPH -okhttp3.Dns: java.util.List lookup(java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_color -org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession() -okio.Buffer: boolean rangeEquals(long,okio.ByteString) -james.adaptiveicon.R$drawable: int abc_btn_radio_material -wangdaye.com.geometricweather.R$style: int Preference_SeekBarPreference_Material -okhttp3.internal.http2.PushObserver: boolean onHeaders(int,java.util.List,boolean) +wangdaye.com.geometricweather.R$id: int notification_base_icon +com.xw.repo.bubbleseekbar.R$color: int tooltip_background_dark +okhttp3.internal.http.BridgeInterceptor: java.lang.String cookieHeader(java.util.List) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String logo +com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$attr: int tabIconTint +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State getCurrentState() +com.turingtechnologies.materialscrollbar.R$id: int home +com.xw.repo.bubbleseekbar.R$attr: int popupMenuStyle +com.amap.api.fence.PoiItem: java.lang.String getTel() +com.google.android.material.R$attr: int circularInset +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_71 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator __MAGICAL_TEST_PASSING_ENABLER_VALIDATOR +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: ObservableFlatMap$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver,long) +com.github.rahatarmanahmed.cpv.CircularProgressView: void addListener(com.github.rahatarmanahmed.cpv.CircularProgressViewListener) +com.xw.repo.bubbleseekbar.R$id: int action_image +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Borderless +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceUrl() +okhttp3.internal.connection.RealConnection$1: RealConnection$1(okhttp3.internal.connection.RealConnection,boolean,okio.BufferedSource,okio.BufferedSink,okhttp3.internal.connection.StreamAllocation) +android.didikee.donate.R$dimen: int hint_pressed_alpha_material_light +com.autonavi.aps.amapapi.model.AMapLocationServer: void a(java.lang.String) +androidx.appcompat.resources.R$dimen: int compat_button_inset_vertical_material +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_CAMELLIA_256_CBC_SHA +com.google.android.material.navigation.NavigationView: int getItemHorizontalPadding() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_87 +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getThumbTintList() +android.support.v4.app.INotificationSideChannel$Stub: boolean setDefaultImpl(android.support.v4.app.INotificationSideChannel) +androidx.recyclerview.R$drawable: int notification_action_background +okhttp3.Request$Builder: okhttp3.Request build() +cyanogenmod.app.CustomTileListenerService: java.lang.String SERVICE_INTERFACE +androidx.core.app.RemoteActionCompatParcelizer +com.bumptech.glide.integration.okhttp.R$attr +androidx.preference.R$style: int Theme_AppCompat_DayNight_DarkActionBar +wangdaye.com.geometricweather.R$dimen: int design_snackbar_min_width +androidx.constraintlayout.widget.R$styleable: int MotionLayout_layoutDescription +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance +james.adaptiveicon.R$drawable: int notification_bg_normal_pressed +androidx.appcompat.R$id: int uniform +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginBottom +io.reactivex.internal.util.NotificationLite: java.lang.Object disposable(io.reactivex.disposables.Disposable) +android.didikee.donate.R$styleable: int TextAppearance_android_shadowDy +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ListView_DropDown +okhttp3.ResponseBody: byte[] bytes() +com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderText(int) +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitleTextAppearance +cyanogenmod.weather.WeatherInfo: double getHumidity() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: AccuCurrentResult$Visibility$Metric() +james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabStyle +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ImageButton +androidx.appcompat.R$styleable: int Toolbar_contentInsetEnd +com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String,java.lang.Throwable) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams access$400(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipSurfaceColor +com.amap.api.fence.GeoFence: float l +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_134 +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_2 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm10 +com.google.android.material.R$drawable: int notification_bg_normal +com.jaredrummler.android.colorpicker.R$style: int Preference_PreferenceScreen +com.google.android.material.R$layout: int mtrl_calendar_month_navigation +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar +androidx.constraintlayout.widget.R$attr: int windowActionBarOverlay +com.google.android.material.R$id: int scrollIndicatorUp +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getReadableDb() +androidx.appcompat.R$attr: int listChoiceIndicatorMultipleAnimated +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_unRegisterThermalListener +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags +com.google.android.material.R$color: int switch_thumb_disabled_material_light +androidx.work.R$styleable: int[] FontFamilyFont +com.google.android.material.R$style: int ThemeOverlay_AppCompat_DayNight +android.didikee.donate.R$dimen: int abc_floating_window_z +androidx.appcompat.R$styleable: int ActionBar_subtitle +io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate) +androidx.constraintlayout.widget.R$attr: int mock_diagonalsColor +com.google.android.material.R$styleable: int AppBarLayout_Layout_layout_scrollFlags +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_body_1_material +com.google.android.material.R$color: int mtrl_bottom_nav_ripple_color +com.google.android.material.R$styleable: int Toolbar_contentInsetStartWithNavigation +com.turingtechnologies.materialscrollbar.R$attr: int windowMinWidthMinor +wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_bias +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void disposeInner() +androidx.recyclerview.widget.RecyclerView: void addOnItemTouchListener(androidx.recyclerview.widget.RecyclerView$OnItemTouchListener) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.amap.api.location.LocationManagerBase +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogPreferredPadding +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.concurrent.atomic.AtomicReference error +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_closeIcon +com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_colorShape +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setNestedScrollingEnabled(boolean) +android.didikee.donate.R$styleable: int[] AlertDialog +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableStartCompat +com.xw.repo.bubbleseekbar.R$attr: int state_above_anchor +com.google.android.material.R$attr: int fabCustomSize +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_switchTextOff +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: double Value +androidx.constraintlayout.widget.R$styleable: int[] Toolbar +androidx.preference.R$styleable: int AppCompatTheme_popupMenuStyle +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription,long) +okhttp3.Headers: java.util.List values(java.lang.String) +io.reactivex.internal.queue.SpscArrayQueue: int calcElementOffset(long) +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: android.os.IBinder asBinder() +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_enabled +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void setInteractivity(boolean) +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$styleable: int GradientColorItem_android_color +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderCerts +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status FAILED +com.google.android.material.R$attr: int bottomAppBarStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_wrapMode +com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar +io.reactivex.subjects.PublishSubject$PublishDisposable: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierMargin +wangdaye.com.geometricweather.R$drawable: int notif_temp_30 +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getThermalState() +androidx.constraintlayout.widget.R$dimen: int disabled_alpha_material_light +com.google.android.material.card.MaterialCardView: void setCheckedIconMargin(int) +com.google.android.gms.internal.location.zzl +androidx.appcompat.resources.R$style: int Widget_Compat_NotificationActionText +androidx.appcompat.R$style: int Base_Widget_AppCompat_ProgressBar +okhttp3.Cache$CacheRequestImpl$1 +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: java.lang.Integer fresh +androidx.viewpager.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: long getTime() +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_count +androidx.preference.R$attr: int editTextColor +cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_ACCESS +androidx.core.R$id: int tag_unhandled_key_listeners +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: void onLiveLockScreenChanged(cyanogenmod.app.LiveLockScreenInfo) +androidx.appcompat.R$styleable: int AppCompatTheme_editTextColor +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_129 wangdaye.com.geometricweather.R$style: int Platform_V21_AppCompat -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,byte[]) -com.google.android.material.R$id: int circle_center -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_CheckBox -cyanogenmod.profiles.RingModeSettings: void setOverride(boolean) -com.xw.repo.bubbleseekbar.R$attr: int fontFamily -com.jaredrummler.android.colorpicker.R$attr: int goIcon -androidx.constraintlayout.widget.R$color: int notification_icon_bg_color -androidx.recyclerview.R$id: int tag_accessibility_heading -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -james.adaptiveicon.R$styleable: int PopupWindow_android_popupBackground -james.adaptiveicon.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlHighlight -com.google.android.material.R$style: int Base_AlertDialog_AppCompat_Light -io.reactivex.Observable: io.reactivex.Observable concatEager(java.lang.Iterable,int,int) -retrofit2.DefaultCallAdapterFactory: java.util.concurrent.Executor callbackExecutor -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(cyanogenmod.app.CustomTile$1) -wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_android_entries -androidx.preference.R$styleable: int ActionMode_height -com.jaredrummler.android.colorpicker.R$dimen: int notification_large_icon_width -com.google.android.material.R$drawable: int abc_item_background_holo_light -wangdaye.com.geometricweather.R$styleable: int Chip_android_ellipsize -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: void setDefenseIcon(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_radioButtonStyle -com.xw.repo.bubbleseekbar.R$style: int Widget_Compat_NotificationActionContainer -okhttp3.internal.http2.Http2: byte TYPE_WINDOW_UPDATE -com.jaredrummler.android.colorpicker.R$attr: int isLightTheme -androidx.appcompat.widget.ActionBarOverlayLayout: void setShowingForActionMode(boolean) -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void cancel() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintEnabled -james.adaptiveicon.R$attr: int searchViewStyle -androidx.preference.R$attr: int thumbTextPadding -wangdaye.com.geometricweather.R$anim: int abc_slide_out_top -androidx.viewpager.R$dimen: int compat_button_padding_vertical_material -cyanogenmod.weather.RequestInfo: java.lang.String access$802(cyanogenmod.weather.RequestInfo,java.lang.String) -wangdaye.com.geometricweather.R$attr: int boxCornerRadiusBottomEnd -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_to_on_mtrl_015 -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption clone() -androidx.constraintlayout.widget.R$styleable: int[] FontFamily +com.google.android.material.R$styleable: int RecyclerView_android_orientation +cyanogenmod.providers.CMSettings$Global: java.lang.String WEATHER_TEMPERATURE_UNIT +okhttp3.internal.platform.Platform: javax.net.ssl.SSLContext getSSLContext() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean requestDismissAndStartActivity(android.content.Intent) +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String binarySearchBytes(byte[],byte[][],int) +com.google.android.material.R$attr: int layout_constraintHeight_max +wangdaye.com.geometricweather.R$id: int container_main_pollen_title +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure Pressure +androidx.constraintlayout.widget.R$styleable: int TextAppearance_fontFamily +com.google.android.material.R$attr: int percentHeight +okhttp3.internal.cache.DiskLruCache: void setMaxSize(long) +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_START +com.google.android.material.internal.NavigationMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setTranslateY(float) +okio.ForwardingTimeout +com.google.android.material.radiobutton.MaterialRadioButton: void setUseMaterialThemeColors(boolean) +androidx.appcompat.R$id: int parentPanel +okhttp3.internal.cache.FaultHidingSink: boolean hasErrors +com.google.android.material.card.MaterialCardView: void setStrokeWidth(int) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.disposables.Disposable upstream +android.didikee.donate.R$attr: int windowFixedWidthMajor +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontStyle +android.didikee.donate.R$attr: int queryBackground +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language[] values() +okhttp3.logging.HttpLoggingInterceptor: HttpLoggingInterceptor(okhttp3.logging.HttpLoggingInterceptor$Logger) +wangdaye.com.geometricweather.R$layout: int item_icon_provider_get_more +okio.RealBufferedSource: long readDecimalLong() +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTheme +androidx.hilt.work.R$id: int accessibility_custom_action_27 +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analogContainer_dark +androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_default_mtrl_alpha +android.didikee.donate.R$dimen: int abc_text_size_subhead_material +androidx.viewpager2.R$styleable: int FontFamilyFont_android_ttcIndex +com.bumptech.glide.R$styleable: int[] CoordinatorLayout_Layout +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_delete_shortcut_label +wangdaye.com.geometricweather.R$string: int wind_7 +androidx.appcompat.R$anim: int abc_slide_in_bottom +com.google.android.material.R$attr: int materialAlertDialogTitlePanelStyle +wangdaye.com.geometricweather.R$string: int settings_title_card_display +cyanogenmod.profiles.BrightnessSettings: int mValue +com.bumptech.glide.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$attr: int ratingBarStyleSmall +androidx.appcompat.R$styleable: int TextAppearance_android_shadowDy +com.google.android.material.R$attr: int windowFixedHeightMajor +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.AlertEntity) +androidx.preference.R$attr: int isLightTheme +androidx.preference.R$styleable: int Preference_android_shouldDisableView +com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.google.android.material.R$attr: int percentX +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_liftable +wangdaye.com.geometricweather.R$dimen: int design_snackbar_action_inline_max_width +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textFontWeight +androidx.vectordrawable.animated.R$layout: R$layout() +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontWeight +androidx.viewpager2.R$id: int accessibility_custom_action_20 +androidx.preference.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_interval +androidx.vectordrawable.animated.R$drawable: int notification_action_background +com.google.android.material.R$attr: int track +com.xw.repo.bubbleseekbar.R$attr: int goIcon +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +androidx.hilt.R$id: int accessibility_custom_action_3 +cyanogenmod.providers.CMSettings$Global: boolean shouldInterceptSystemProvider(java.lang.String) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void drainAndDispose() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: int UnitType +androidx.preference.R$styleable: int ViewBackgroundHelper_backgroundTint +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabSelectedTextColor +androidx.appcompat.R$string: R$string() wangdaye.com.geometricweather.R$array: int ui_styles -com.google.android.material.R$anim: int abc_slide_out_bottom -android.didikee.donate.R$attr: int arrowHeadLength -okhttp3.internal.http2.Http2Connection$5: boolean val$inFinished -androidx.customview.R$styleable: int FontFamilyFont_android_fontStyle -androidx.drawerlayout.R$id: int line1 -androidx.customview.R$dimen: R$dimen() -com.bumptech.glide.integration.okhttp.R$color: int notification_icon_bg_color -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Tooltip -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: AtmoAuraQAResult$Measure() -wangdaye.com.geometricweather.R$id: int activity_settings -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean isDisposed() -io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean tryCancel() -okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.WebSocketWriter writer -androidx.lifecycle.extensions.R$id: int line3 -james.adaptiveicon.R$dimen: int abc_disabled_alpha_material_light -android.didikee.donate.R$id: int line1 -wangdaye.com.geometricweather.main.dialogs.LearnMoreAboutResidentLocationDialog: LearnMoreAboutResidentLocationDialog() -androidx.loader.R$id: int line3 -com.github.rahatarmanahmed.cpv.R$bool: R$bool() -android.didikee.donate.R$id: int showTitle -okhttp3.internal.http2.Http2Codec: okhttp3.internal.http2.Http2Connection connection -androidx.appcompat.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.settings.dialogs.TimeSetterDialog: TimeSetterDialog() -androidx.lifecycle.Transformations$2: androidx.arch.core.util.Function val$switchMapFunction -androidx.constraintlayout.widget.R$attr: int indeterminateProgressStyle -android.didikee.donate.R$color: int abc_search_url_text_normal -android.didikee.donate.R$dimen: int abc_text_size_display_1_material -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okhttp3.internal.cache.DiskLruCache$Entry: DiskLruCache$Entry(okhttp3.internal.cache.DiskLruCache,java.lang.String) -okhttp3.internal.http2.Http2Connection: int INTERVAL_PING -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: IAppSuggestProvider$Stub() -androidx.preference.R$styleable: int SearchView_suggestionRowLayout -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float thunderstorm -wangdaye.com.geometricweather.settings.dialogs.MinimalIconDialog: MinimalIconDialog() -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_pressed -okio.Pipe: boolean sourceClosed -wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity: MultiCityWidgetConfigActivity() -androidx.appcompat.resources.R$id: int tag_transition_group -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationZ -com.google.android.material.R$drawable: int tooltip_frame_dark -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation mWeatherLocation -com.google.android.material.slider.BaseSlider: float getValueOfTouchPositionAbsolute() -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult -okhttp3.CipherSuite$1: CipherSuite$1() -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$000() -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type[] getActualTypeArguments() -androidx.appcompat.widget.AppCompatRadioButton: int getCompoundPaddingLeft() -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_showText -com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding -androidx.transition.ChangeBounds$7: androidx.transition.ChangeBounds$ViewBounds mViewBounds -okio.Buffer: java.lang.String readString(long,java.nio.charset.Charset) -androidx.transition.R$id: int italic -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date sunriseTime -androidx.appcompat.resources.R$id: int text2 -okhttp3.Cookie: java.util.regex.Pattern MONTH_PATTERN -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean isDisposed() -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onError(java.lang.Throwable) -okhttp3.EventListener: void requestBodyStart(okhttp3.Call) -androidx.preference.R$style: int Theme_AppCompat_Dialog -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_ASSIST_ACTION_VALIDATOR -cyanogenmod.app.Profile: Profile(android.os.Parcel) -androidx.appcompat.R$styleable: int Toolbar_titleMargin -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeightLarge -com.xw.repo.bubbleseekbar.R$id: int uniform -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver parent -cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo() -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_stacked_tab_max_width -james.adaptiveicon.R$styleable: int Toolbar_collapseContentDescription -wangdaye.com.geometricweather.R$color: int material_slider_thumb_color -com.google.android.material.R$attr: int layout_insetEdge -james.adaptiveicon.R$attr: int buttonBarButtonStyle -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow -androidx.appcompat.R$attr: int textAppearanceListItem -androidx.constraintlayout.widget.R$styleable: int Variant_constraints -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWeatherPhase() -com.google.android.material.R$interpolator: R$interpolator() -androidx.preference.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -com.jaredrummler.android.colorpicker.R$drawable: int cpv_ic_arrow_right_black_24dp -okio.Buffer: void flush() -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -androidx.loader.R$id: int normal -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric Metric -androidx.preference.R$anim: int fragment_fade_exit -okhttp3.internal.http2.Http2Reader: boolean client -androidx.viewpager2.R$styleable: int[] ColorStateListItem -io.reactivex.Observable: io.reactivex.Single toList(int) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassLevel -androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.Fragment,androidx.lifecycle.ViewModelProvider$Factory) -okio.BufferedSource: boolean rangeEquals(long,okio.ByteString,int,int) -wangdaye.com.geometricweather.common.basic.models.weather.Base: long getPublishTime() -com.xw.repo.bubbleseekbar.R$id: int home -wangdaye.com.geometricweather.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$string: int hours_of_sun -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor[] values() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setWeather(java.lang.String) -com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_checkbox -com.google.android.material.R$style: int Widget_MaterialComponents_CardView -android.didikee.donate.R$attr: int textAppearanceSmallPopupMenu -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$Adapter getAdapter() -androidx.preference.R$style: int Base_V23_Theme_AppCompat_Light -androidx.appcompat.R$styleable: int Toolbar_contentInsetEnd -com.google.android.material.R$styleable: int Layout_layout_constraintBottom_toBottomOf -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_toolbarStyle -com.google.android.material.R$drawable: int abc_list_selector_background_transition_holo_dark -androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityStopped(android.app.Activity) -cyanogenmod.profiles.StreamSettings: StreamSettings(int,int,boolean) -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: android.os.IBinder mRemote -cyanogenmod.app.ILiveLockScreenManagerProvider -wangdaye.com.geometricweather.R$styleable: int Preference_android_defaultValue -com.google.android.material.R$layout: int mtrl_alert_dialog_title -androidx.core.R$styleable: int[] FontFamilyFont -com.google.android.material.appbar.AppBarLayout: int getLiftOnScrollTargetViewId() -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayVerticalProvider: WidgetClockDayVerticalProvider() -androidx.appcompat.widget.AppCompatImageView: void setImageDrawable(android.graphics.drawable.Drawable) -com.amap.api.fence.GeoFence: void setPendingIntentAction(java.lang.String) -android.didikee.donate.R$style: int Theme_AppCompat_Light -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy APPEND -okio.HashingSink: HashingSink(okio.Sink,okio.ByteString,java.lang.String) -okhttp3.internal.http.HttpDate$1 -james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object getKey(java.lang.Object) -android.didikee.donate.R$attr: int drawerArrowStyle -wangdaye.com.geometricweather.R$id: int transparency_text -com.google.gson.stream.JsonWriter: void newline() -retrofit2.OkHttpCall: java.lang.Object clone() -androidx.constraintlayout.widget.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_radio -androidx.appcompat.R$styleable: int ActionBar_contentInsetRight -androidx.loader.R$attr -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: AMapLocationClientOption$AMapLocationMode(java.lang.String,int) -androidx.preference.R$string: int abc_menu_delete_shortcut_label -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: CMSettings$InclusiveIntegerRangeValidator(int,int) -cyanogenmod.app.CMTelephonyManager: void setDataConnectionState(boolean) -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_android_gravity -com.jaredrummler.android.colorpicker.R$attr: int searchViewStyle -wangdaye.com.geometricweather.R$id: int widget_week_week_5 -com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.R$dimen: int preference_dropdown_padding_start -cyanogenmod.app.suggest.AppSuggestManager: boolean handles(android.content.Intent) -cyanogenmod.weather.RequestInfo: int TYPE_WEATHER_BY_GEO_LOCATION_REQ -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction Direction -okhttp3.MultipartBody: okhttp3.MediaType MIXED -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.functions.Consumer disposer -com.google.android.material.transformation.FabTransformationBehavior -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: long serialVersionUID -okio.ByteString: byte[] internalArray() -androidx.preference.R$styleable: int Toolbar_buttonGravity -okhttp3.internal.http2.Http2Connection: long intervalPingsSent -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_min -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_showMotionSpec -wangdaye.com.geometricweather.R$id: int noScroll -androidx.coordinatorlayout.R$drawable: int notification_bg -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCopyDrawable -androidx.preference.R$attr: int buttonIconDimen -androidx.preference.R$drawable: int abc_list_selector_disabled_holo_light -com.turingtechnologies.materialscrollbar.R$layout -com.google.android.material.R$attr: int listPreferredItemHeightSmall -com.jaredrummler.android.colorpicker.R$attr: int buttonBarPositiveButtonStyle -okhttp3.internal.http2.Http2Connection: void writePingAndAwaitPong() -wangdaye.com.geometricweather.db.entities.DaoSession: DaoSession(org.greenrobot.greendao.database.Database,org.greenrobot.greendao.identityscope.IdentityScopeType,java.util.Map) -com.xw.repo.bubbleseekbar.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: AccuCurrentResult$WetBulbTemperature() -okhttp3.internal.connection.RealConnection$1: RealConnection$1(okhttp3.internal.connection.RealConnection,boolean,okio.BufferedSource,okio.BufferedSink,okhttp3.internal.connection.StreamAllocation) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String[] VALID_KEYS -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -com.bumptech.glide.R$style: R$style() -james.adaptiveicon.R$color: int primary_text_default_material_light -androidx.appcompat.widget.ScrollingTabContainerView: void setAllowCollapse(boolean) -wangdaye.com.geometricweather.R$layout: int mtrl_picker_text_input_date_range -okhttp3.internal.http2.Http2Codec: okio.Sink createRequestBody(okhttp3.Request,long) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String caiyun -androidx.constraintlayout.widget.R$attr: int layout_constrainedHeight -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String weatherIcon -com.google.android.material.R$attr: int tabIndicatorFullWidth +com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_FENCEID +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: int UnitType +wangdaye.com.geometricweather.R$font: int google_sans +androidx.constraintlayout.widget.ConstraintLayout: void setConstraintSet(androidx.constraintlayout.widget.ConstraintSet) +androidx.appcompat.R$styleable: int AppCompatImageView_android_src +androidx.vectordrawable.R$id: int right_side +com.xw.repo.bubbleseekbar.R$color: int material_grey_100 +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconMode +wangdaye.com.geometricweather.R$id: int customPanel +com.google.android.material.R$dimen: int mtrl_snackbar_margin +androidx.constraintlayout.widget.R$attr: int actionButtonStyle +androidx.preference.R$attr: int listPopupWindowStyle +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onError(java.lang.Throwable) +com.google.android.material.R$styleable: int[] ConstraintSet +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date getPublishDate() +com.google.android.material.R$attr: int itemTextAppearance +com.google.android.material.R$attr: int liftOnScroll +wangdaye.com.geometricweather.R$dimen: int widget_design_title_text_size +james.adaptiveicon.R$attr: int colorPrimary +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconVisible +com.google.android.material.R$style: int Theme_AppCompat_Light_DialogWhenLarge +androidx.constraintlayout.widget.R$attr: int flow_lastHorizontalStyle +android.didikee.donate.R$styleable: int PopupWindow_overlapAnchor +wangdaye.com.geometricweather.R$string: int gson +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink +android.didikee.donate.R$styleable: int AppCompatTheme_colorPrimary +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String WidgetPhrase +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColorLink +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol +okhttp3.internal.http.HttpHeaders: java.util.List parseChallenges(okhttp3.Headers,java.lang.String) +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: java.lang.String Unit +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_ActionBar +wangdaye.com.geometricweather.R$drawable: int material_ic_edit_black_24dp +android.didikee.donate.R$attr: int paddingBottomNoButtons +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: KeyguardExternalViewProviderService$Provider$ProviderImpl$7(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +com.jaredrummler.android.colorpicker.R$style: int Base_V26_Theme_AppCompat_Light +cyanogenmod.content.Intent: java.lang.String ACTION_THEME_REMOVED +retrofit2.Retrofit: retrofit2.Converter nextResponseBodyConverter(retrofit2.Converter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[]) +cyanogenmod.app.PartnerInterface: int ZEN_MODE_NO_INTERRUPTIONS +com.google.android.material.R$style: int TextAppearance_AppCompat_Tooltip +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_android_alpha +okhttp3.internal.http2.Http2Reader$Handler: void headers(boolean,int,int,java.util.List) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.ChineseCityEntity) +androidx.recyclerview.widget.RecyclerView: java.lang.CharSequence getAccessibilityClassName() +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +com.google.android.material.R$styleable: int[] MaterialCalendarItem +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_notificationGroupExistsByName +androidx.preference.R$attr: int negativeButtonText +androidx.preference.R$anim: int abc_slide_in_bottom +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_barLength +io.reactivex.internal.observers.DeferredScalarDisposable: int DISPOSED +com.bumptech.glide.integration.okhttp.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$attr: int unchecked_background_color +androidx.appcompat.R$dimen: int disabled_alpha_material_dark +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: long serialVersionUID +okhttp3.OkHttpClient: okhttp3.Dns dns() +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onError(java.lang.Throwable) +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +androidx.lifecycle.ProcessLifecycleOwnerInitializer: android.database.Cursor query(android.net.Uri,java.lang.String[],java.lang.String,java.lang.String[],java.lang.String) +androidx.constraintlayout.widget.R$color: int dim_foreground_disabled_material_dark +com.google.android.material.R$styleable: int RangeSlider_values +james.adaptiveicon.R$id: int progress_circular +com.google.android.material.R$attr: int colorBackgroundFloating +com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_Tooltip +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver this$0 +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +com.google.android.material.R$styleable: int Chip_android_textAppearance +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl build() +okhttp3.CertificatePinner$Pin: java.lang.String hashAlgorithm +com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace[] values() +androidx.constraintlayout.widget.R$string: int abc_searchview_description_voice +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +androidx.appcompat.R$styleable: int AppCompatTheme_searchViewStyle +okhttp3.internal.http2.Http2Stream: void waitForIo() +com.google.android.gms.internal.location.zzac: android.os.Parcelable$Creator CREATOR +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) +cyanogenmod.providers.CMSettings$Secure: java.lang.String RING_HOME_BUTTON_BEHAVIOR +cyanogenmod.externalviews.ExternalViewProperties: android.view.View mView +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_typeface +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.R$attr: int searchHintIcon +android.didikee.donate.R$drawable: int abc_spinner_textfield_background_material +okhttp3.internal.cache.CacheStrategy$Factory: CacheStrategy$Factory(long,okhttp3.Request,okhttp3.Response) +androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyle +com.google.android.material.R$styleable: int ConstraintSet_animate_relativeTo +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void onDetachedFromWindow() +james.adaptiveicon.R$style: int Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String getX() +androidx.appcompat.R$color: int abc_background_cache_hint_selector_material_dark +wangdaye.com.geometricweather.R$styleable: int Preference_widgetLayout +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max +com.google.android.material.R$id: int accessibility_custom_action_8 +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCheckedIconTint() +com.github.rahatarmanahmed.cpv.CircularProgressView$3 +com.turingtechnologies.materialscrollbar.R$id: int multiply +android.didikee.donate.R$id: int edit_query +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean access$502(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,boolean) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: java.lang.Object poll() +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.ICMWeatherManager getService() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean getImages() +com.turingtechnologies.materialscrollbar.R$dimen: int cardview_default_elevation +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardMaxElevation +androidx.drawerlayout.R$color +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +com.google.android.material.R$dimen: int material_cursor_width +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.ChineseCityEntity,long) +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_android_windowFullscreen +com.google.android.material.appbar.AppBarLayout: int getDownNestedScrollRange() +com.jaredrummler.android.colorpicker.R$attr: int queryHint +wangdaye.com.geometricweather.db.entities.MinutelyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_isThemeBeingProcessed +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator PEOPLE_LOOKUP_PROVIDER_VALIDATOR +com.google.android.material.appbar.AppBarLayout$BaseBehavior$SavedState: android.os.Parcelable$Creator CREATOR +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDefaultDisplayMode +androidx.constraintlayout.widget.R$attr: int actionModeCopyDrawable +androidx.appcompat.R$string: int abc_menu_sym_shortcut_label +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String insee +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_MIGRATE_SETTINGS +wangdaye.com.geometricweather.R$attr: int boxCornerRadiusBottomStart +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setLabelVisibilityMode(int) +james.adaptiveicon.R$attr: int paddingStart +androidx.swiperefreshlayout.R$attr: int fontProviderAuthority +james.adaptiveicon.R$color: int button_material_dark +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver INNER_DISPOSED +okhttp3.internal.http.RealInterceptorChain: int writeTimeout +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu +androidx.preference.R$attr: int key +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ImageButton +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: void enqueue(retrofit2.Callback) +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setArcBackgroundColor(int) +androidx.constraintlayout.widget.R$layout: int select_dialog_item_material +com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Panel +okhttp3.Headers: boolean equals(java.lang.Object) +com.google.android.material.R$attr: int materialCalendarYearNavigationButton +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable[] EMPTY +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int prefetch +androidx.drawerlayout.R$attr: int fontVariationSettings +androidx.fragment.app.Fragment: void setOnStartEnterTransitionListener(androidx.fragment.app.Fragment$OnStartEnterTransitionListener) +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String cityId +androidx.preference.R$attr: int actionModeFindDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogCenterButtons +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onError(java.lang.Throwable) +androidx.loader.R$dimen: int compat_button_inset_horizontal_material +android.didikee.donate.R$styleable: int ActionBar_contentInsetRight +james.adaptiveicon.R$layout: int abc_list_menu_item_layout +androidx.preference.R$dimen: int abc_text_size_display_4_material +androidx.fragment.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float so2 +wangdaye.com.geometricweather.settings.dialogs.MinimalIconDialog +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status[] $VALUES +com.google.android.material.tabs.TabLayout: void setElevation(float) androidx.lifecycle.ViewModelProvider: java.lang.String DEFAULT_KEY -retrofit2.OkHttpCall$NoContentResponseBody: okio.BufferedSource source() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_RC4_40_SHA -com.xw.repo.bubbleseekbar.R$attr: int navigationMode -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent BOOT_ANIM -cyanogenmod.weather.WeatherInfo$Builder: double mWindSpeed -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: MfForecastResult$Forecast$Rain() -com.google.android.material.R$styleable: int Layout_barrierMargin -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_61 -com.google.android.material.R$styleable: int CollapsingToolbarLayout_title -wangdaye.com.geometricweather.db.entities.DaoMaster: int SCHEMA_VERSION -androidx.appcompat.resources.R$layout: int notification_template_custom_big -com.google.android.material.R$styleable: int MaterialCardView_checkedIconSize -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_elevation_material -james.adaptiveicon.R$styleable: int[] ViewStubCompat -io.reactivex.internal.subscriptions.SubscriptionHelper: void deferredRequest(java.util.concurrent.atomic.AtomicReference,java.util.concurrent.atomic.AtomicLong,long) -androidx.constraintlayout.widget.R$styleable: int MenuView_android_horizontalDivider -androidx.dynamicanimation.R$drawable: int notification_template_icon_low_bg -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.Observer downstream -android.didikee.donate.R$string: int app_name -androidx.coordinatorlayout.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPublishTime(long) -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_behavior -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_selectable -android.didikee.donate.R$styleable: int Toolbar_android_gravity -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +com.xw.repo.bubbleseekbar.R$attr: int fontWeight +com.google.android.material.R$styleable: int ActionBar_background +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView +com.amap.api.location.AMapLocation: int getSatellites() +androidx.preference.R$style: int Widget_AppCompat_ButtonBar +wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_layout +okhttp3.Credentials: java.lang.String basic(java.lang.String,java.lang.String) +androidx.constraintlayout.widget.R$color: int error_color_material_dark +android.didikee.donate.R$styleable: int SearchView_searchIcon +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: ObservableSubscribeOn$SubscribeOnObserver(io.reactivex.Observer) +wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_strokeColor +okhttp3.Handshake: okhttp3.Handshake get(javax.net.ssl.SSLSession) +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: long serialVersionUID +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_button_material +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type[] typeArguments +cyanogenmod.themes.ThemeChangeRequest: java.util.Map getPerAppOverlays() +james.adaptiveicon.R$drawable: int abc_btn_check_to_on_mtrl_015 +android.didikee.donate.R$id: int notification_background +androidx.recyclerview.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$styleable: int Slider_trackHeight +com.google.android.material.R$drawable: int abc_ic_star_half_black_16dp +com.google.android.material.R$drawable: int material_ic_keyboard_arrow_right_black_24dp +androidx.vectordrawable.R$drawable: int notification_icon_background +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_measureWithLargestChild +com.xw.repo.bubbleseekbar.R$layout: int select_dialog_item_material +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerCloseError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int cpv_showAlphaSlider +com.google.android.material.R$styleable: int AppCompatTheme_checkedTextViewStyle +com.google.android.material.progressindicator.ProgressIndicator: void setCircularRadius(int) +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarStyle +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +io.reactivex.internal.util.VolatileSizeArrayList: java.util.List subList(int,int) +androidx.appcompat.R$styleable: int[] MenuView +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_8 +androidx.drawerlayout.R$id: R$id() +wangdaye.com.geometricweather.R$drawable: int abc_ic_clear_material +com.turingtechnologies.materialscrollbar.R$layout: int design_layout_tab_text +okhttp3.internal.http2.Http2Connection$ReaderRunnable +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit MPH +retrofit2.converter.gson.GsonConverterFactory: com.google.gson.Gson gson +androidx.appcompat.R$styleable: int ActionBar_contentInsetEnd +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.widget.AbsActionBarView: void setVisibility(int) +androidx.constraintlayout.widget.R$attr: int barrierMargin +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context,android.util.AttributeSet) +androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_font +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light +wangdaye.com.geometricweather.R$style: int Preference_SwitchPreferenceCompat_Material +okhttp3.internal.http2.Hpack$Reader: int nextHeaderIndex +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int SNOOZE_STATE +com.google.android.material.button.MaterialButton: void setOnPressedChangeListenerInternal(com.google.android.material.button.MaterialButton$OnPressedChangeListener) +com.google.android.material.R$attr: int textAppearanceCaption +androidx.appcompat.resources.R$id: int tag_unhandled_key_listeners +com.google.android.gms.signin.internal.zag +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_android_windowIsFloating +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_divider_mtrl_alpha +androidx.preference.R$styleable: int ActionBar_progressBarPadding +androidx.constraintlayout.widget.R$drawable: int abc_spinner_mtrl_am_alpha +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTag +com.google.android.material.chip.Chip: void setLines(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_105 +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_windowAnimationStyle +wangdaye.com.geometricweather.R$styleable: int[] ColorPreference +androidx.appcompat.widget.DropDownListView: void setListSelectionHidden(boolean) +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy NONE +wangdaye.com.geometricweather.R$id: int search_bar +wangdaye.com.geometricweather.R$attr: int textAppearanceLineHeightEnabled +androidx.work.R$color: int notification_action_color_filter +androidx.preference.R$layout: int abc_tooltip +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +wangdaye.com.geometricweather.R$string: int feedback_refresh_ui_after_refresh +cyanogenmod.hardware.CMHardwareManager: boolean registerThermalListener(cyanogenmod.hardware.ThermalListenerCallback) +com.amap.api.location.AMapLocationClient: com.amap.api.location.LocationManagerBase a(android.content.Context,android.content.Intent) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean done +android.didikee.donate.R$attr: int textAppearanceListItem +com.google.android.material.R$styleable: int Toolbar_titleMargins +android.didikee.donate.R$styleable: int Toolbar_popupTheme +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setEncodedPathSegment(int,java.lang.String) +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean gate +cyanogenmod.externalviews.KeyguardExternalView$3 +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dark +com.google.android.material.R$style: int Theme_MaterialComponents_Light +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Dialog +wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_to_on_mtrl_000 +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: LiveDataReactiveStreams$PublisherLiveData(org.reactivestreams.Publisher) +com.bumptech.glide.R$styleable: int GradientColor_android_type +com.jaredrummler.android.colorpicker.R$attr: int titleMarginEnd +androidx.dynamicanimation.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String LocalizedName +retrofit2.internal.EverythingIsNonNull +io.reactivex.Observable: io.reactivex.Observable cache() +androidx.constraintlayout.widget.R$styleable: int[] State +okhttp3.RequestBody$3: long contentLength() +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onScreenTurnedOff() +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.Observer downstream +androidx.activity.R$layout: int notification_template_part_chronometer +androidx.viewpager2.R$id: int dialog_button +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runBackfused() +androidx.appcompat.view.menu.ActionMenuItemView: void setIcon(android.graphics.drawable.Drawable) +okhttp3.EventListener: okhttp3.EventListener NONE +com.google.android.gms.common.internal.ClientIdentity: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$attr: int suffixTextAppearance +wangdaye.com.geometricweather.R$dimen: int trend_item_width +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_3 +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: int colorId +androidx.preference.R$styleable: int AppCompatTheme_colorControlHighlight +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getOpPkg() +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: AccuLocationResult$GeoPosition$Elevation$Metric() +okhttp3.CacheControl: boolean isPrivate +cyanogenmod.app.CMContextConstants$Features: java.lang.String PROFILES +androidx.lifecycle.extensions.R$styleable: R$styleable() +com.google.android.material.R$attr: int region_widthLessThan +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage DATA_CACHE +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onNext(java.lang.Object) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_requestDismissAndStartActivity_1 +okio.GzipSource: void consumeHeader() +wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +wangdaye.com.geometricweather.R$string: int feedback_readd_location_after_changing_source +com.turingtechnologies.materialscrollbar.R$styleable: int[] ScrollingViewBehavior_Layout +com.xw.repo.bubbleseekbar.R$attr: int homeLayout +cyanogenmod.hardware.DisplayMode: java.lang.String name +androidx.appcompat.widget.ActivityChooserView$InnerLayout +com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_EditTextPreference_Material +james.adaptiveicon.R$styleable: int ActionBar_subtitleTextStyle +wangdaye.com.geometricweather.R$color: int colorAccent_dark +wangdaye.com.geometricweather.R$attr: int contentInsetEndWithActions +wangdaye.com.geometricweather.R$string: int settings_title_forecast_tomorrow +android.support.v4.app.INotificationSideChannel$Stub$Proxy +com.google.android.material.R$styleable: int ConstraintSet_android_transformPivotY +androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice Ice +androidx.fragment.R$styleable: int FontFamily_fontProviderAuthority +cyanogenmod.app.ILiveLockScreenManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.google.android.material.floatingactionbutton.FloatingActionButton: int getCustomSize() +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: ObservableCreate$CreateEmitter(io.reactivex.Observer) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: double Value +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +okhttp3.internal.Util +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection build() +com.google.android.material.R$styleable: int AppCompatSeekBar_tickMarkTintMode +wangdaye.com.geometricweather.R$styleable: int ActionMode_height +androidx.viewpager.R$id: int notification_background +com.google.android.material.R$style: int Base_Widget_MaterialComponents_CheckedTextView +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE_BACKUP +okhttp3.internal.platform.Platform: boolean isCleartextTrafficPermitted(java.lang.String) +androidx.preference.R$dimen: int abc_text_size_menu_header_material +james.adaptiveicon.R$color: int abc_tint_btn_checkable +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analogContainer_light +okhttp3.CertificatePinner: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setStatus(int) +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: boolean isDisposed() +androidx.recyclerview.R$id: int forever +androidx.preference.R$attr: int buttonTint +androidx.hilt.work.R$dimen: int notification_large_icon_height +james.adaptiveicon.R$attr: int hideOnContentScroll +com.jaredrummler.android.colorpicker.R$string: int summary_collapsed_preference_list +android.didikee.donate.R$style: int Widget_AppCompat_Button_Colored +io.reactivex.internal.observers.InnerQueuedObserver: int fusionMode() +io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,io.reactivex.ObservableSource) +android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +wangdaye.com.geometricweather.R$attr: int liftOnScrollTargetViewId +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_summaryOn +androidx.loader.R$dimen: int notification_action_icon_size +james.adaptiveicon.R$id: int icon_group +okhttp3.internal.tls.CertificateChainCleaner: okhttp3.internal.tls.CertificateChainCleaner get(java.security.cert.X509Certificate[]) +androidx.preference.R$dimen: int abc_action_bar_default_padding_end_material +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_scaleY +com.google.android.material.R$styleable: int AppCompatTheme_viewInflaterClass +io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite[] values() +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setForecast(java.util.List) +androidx.constraintlayout.widget.R$styleable: int Layout_barrierDirection +androidx.recyclerview.R$attr: int alpha +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCityId(java.lang.String) +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: FlowableObserveOn$BaseObserveOnSubscriber(io.reactivex.Scheduler$Worker,boolean,int) +androidx.preference.R$attr: int displayOptions +androidx.constraintlayout.widget.R$styleable: int MotionLayout_motionProgress +cyanogenmod.weather.CMWeatherManager$2$1: int val$status +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility +androidx.preference.R$styleable: int TextAppearance_android_textSize +cyanogenmod.externalviews.KeyguardExternalView$6: boolean val$screenOn +okhttp3.HttpUrl: int pathSize() +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_5 +wangdaye.com.geometricweather.db.entities.LocationEntity: void setLongitude(float) +androidx.lifecycle.SavedStateViewModelFactory: android.app.Application mApplication +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setIcePrecipitationProbability(java.lang.Float) +android.didikee.donate.R$styleable: int[] RecycleListView +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: int rightIndex +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_spinnerStyle +androidx.fragment.R$id: int accessibility_custom_action_3 +com.turingtechnologies.materialscrollbar.TouchScrollBar: int getMode() +androidx.customview.R$dimen: int compat_notification_large_icon_max_width +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider access$000(cyanogenmod.externalviews.KeyguardExternalView) +wangdaye.com.geometricweather.R$array: int live_wallpaper_weather_kind_values +androidx.core.R$dimen: int notification_content_margin_start +retrofit2.converter.gson.GsonConverterFactory +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarDivider +com.turingtechnologies.materialscrollbar.R$attr: int singleSelection +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +com.xw.repo.bubbleseekbar.R$string: int abc_activity_chooser_view_see_all +androidx.appcompat.widget.ActivityChooserView: void setProvider(androidx.core.view.ActionProvider) +androidx.swiperefreshlayout.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$layout: int container_main_daily_trend_card +cyanogenmod.app.ThemeComponent +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onError(java.lang.Throwable) +retrofit2.ParameterHandler$HeaderMap: int p +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dark +com.google.android.material.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm10Desc() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedLevel(java.lang.Integer) +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +androidx.dynamicanimation.R$dimen: int notification_media_narrow_margin +okhttp3.internal.ws.RealWebSocket$CancelRunnable: okhttp3.internal.ws.RealWebSocket this$0 +okhttp3.HttpUrl: okhttp3.HttpUrl$Builder newBuilder() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: void setStatus(int) +io.reactivex.Observable: io.reactivex.Observable concatDelayError(java.lang.Iterable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: java.util.List brands +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveShape +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_36 +wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Light +androidx.appcompat.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +cyanogenmod.providers.CMSettings$Global: float getFloat(android.content.ContentResolver,java.lang.String,float) +android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +okhttp3.internal.http2.Hpack$Reader: int dynamicTableByteCount +wangdaye.com.geometricweather.common.basic.models.weather.Alert: Alert(android.os.Parcel) +androidx.viewpager2.widget.ViewPager2$SavedState +androidx.constraintlayout.widget.R$dimen: R$dimen() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: void setUnit(java.lang.String) +android.didikee.donate.R$layout: int select_dialog_singlechoice_material +com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.R$dimen: int widget_current_weather_icon_size +wangdaye.com.geometricweather.R$styleable: int Transition_autoTransition +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_material +com.xw.repo.bubbleseekbar.R$id: int titleDividerNoCustom +androidx.lifecycle.MediatorLiveData: void addSource(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_right_mtrl_light +cyanogenmod.os.Concierge$ParcelInfo: int mParcelableVersion +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int FUSED +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status valueOf(java.lang.String) +james.adaptiveicon.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +com.jaredrummler.android.colorpicker.R$styleable: int Preference_dependency +wangdaye.com.geometricweather.R$drawable: int ic_grass +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +okhttp3.internal.cache.CacheStrategy: okhttp3.Response cacheResponse +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Borderless +wangdaye.com.geometricweather.R$string: int expand_button_title +com.amap.api.fence.GeoFence$1: java.lang.Object createFromParcel(android.os.Parcel) +cyanogenmod.externalviews.ExternalView: void onDetachedFromWindow() +androidx.preference.R$style: int Base_Theme_AppCompat_Dialog +okhttp3.CertificatePinner: okhttp3.CertificatePinner withCertificateChainCleaner(okhttp3.internal.tls.CertificateChainCleaner) +retrofit2.Retrofit$1: java.lang.Object invoke(java.lang.Object,java.lang.reflect.Method,java.lang.Object[]) +androidx.hilt.work.R$bool: R$bool() +com.google.android.material.slider.RangeSlider: int getTrackSidePadding() +retrofit2.BuiltInConverters$BufferingResponseBodyConverter: retrofit2.BuiltInConverters$BufferingResponseBodyConverter INSTANCE +com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_NOGPSPROVIDER +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_cornerSize +okhttp3.Cookie: java.util.regex.Pattern TIME_PATTERN +com.google.android.material.R$style: int Widget_MaterialComponents_Button +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +com.bumptech.glide.load.engine.GlideException: java.lang.String detailMessage +wangdaye.com.geometricweather.R$attr: int prefixTextColor +androidx.preference.R$styleable: int TextAppearance_android_typeface +io.reactivex.Observable: io.reactivex.Observable switchOnNextDelayError(io.reactivex.ObservableSource,int) +wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_night +com.google.android.material.R$id: int guideline +androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_113 +android.didikee.donate.R$color: int highlighted_text_material_dark +com.bumptech.glide.integration.okhttp.R$style +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl +com.google.android.material.R$style: int Base_Widget_AppCompat_ButtonBar +androidx.appcompat.R$attr: int backgroundStacked +cyanogenmod.app.Profile: int compareTo(java.lang.Object) +com.google.android.material.R$style: int Theme_MaterialComponents_Bridge +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_iconifiedByDefault +retrofit2.OkHttpCall: void enqueue(retrofit2.Callback) +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: java.util.concurrent.atomic.AtomicReference observers +androidx.coordinatorlayout.R$layout: int notification_action +wangdaye.com.geometricweather.R$styleable: int[] Snackbar +wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_toBottomOf +androidx.recyclerview.R$dimen +com.google.android.material.button.MaterialButton: void setStrokeWidthResource(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: int UnitType +james.adaptiveicon.R$attr: int switchMinWidth +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver,java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_toLeftOf +cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$Validator PROTECTED_COMPONENTS_VALIDATOR +james.adaptiveicon.R$attr: int contentInsetLeft +androidx.preference.R$attr: int actionBarItemBackground +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_radius +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorSchemeResources(int[]) +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_popupTheme +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetEnd +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleTintMode +wangdaye.com.geometricweather.R$id: int widget_day_week_subtitle +io.reactivex.internal.schedulers.ScheduledDirectTask +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX getBrandInfo() +androidx.loader.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.R$layout: int widget_clock_day_temp +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_end +wangdaye.com.geometricweather.R$styleable: int AlertDialog_showTitle +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$KeySet keySet +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean isEmpty() +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: java.lang.String toString() +com.jaredrummler.android.colorpicker.R$drawable: int preference_list_divider_material +com.google.android.material.chip.ChipGroup: int getChipSpacingHorizontal() +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetStart +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: java.util.List getBrands() +androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context,android.util.AttributeSet) +androidx.preference.R$layout: int select_dialog_singlechoice_material +retrofit2.http.QueryMap +com.google.android.material.R$styleable: int KeyTimeCycle_android_rotationX +wangdaye.com.geometricweather.R$id: int glide_custom_view_target_tag +com.xw.repo.bubbleseekbar.R$attr: int windowFixedWidthMajor +wangdaye.com.geometricweather.R$drawable: int notif_temp_26 +retrofit2.Retrofit$Builder: java.util.List callAdapterFactories +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_Solid +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ut +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialButtonToggleGroup +com.google.gson.stream.JsonReader: int NUMBER_CHAR_DECIMAL +okhttp3.internal.platform.OptionalMethod: java.lang.reflect.Method getPublicMethod(java.lang.Class,java.lang.String,java.lang.Class[]) +com.google.android.material.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +wangdaye.com.geometricweather.R$styleable: int Badge_backgroundColor +io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit) +androidx.preference.R$styleable: int SwitchCompat_switchTextAppearance +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthTextView +androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemIconDisabledAlpha +okio.Buffer: okio.Buffer writeString(java.lang.String,int,int,java.nio.charset.Charset) +androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_layout +wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_lineHeight +wangdaye.com.geometricweather.R$attr: int textAppearanceListItem +retrofit2.ParameterHandler$Query: retrofit2.Converter valueConverter +com.jaredrummler.android.colorpicker.R$attr: int contentInsetStartWithNavigation +androidx.loader.R$id: int action_text +androidx.preference.R$id: int accessibility_custom_action_24 +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_body_2_material +wangdaye.com.geometricweather.R$id: int icon +androidx.preference.R$attr: int preferenceCategoryStyle +android.didikee.donate.R$drawable: int abc_textfield_activated_mtrl_alpha +okhttp3.internal.Util$2: java.lang.String val$name +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_112 +androidx.appcompat.R$id: int tabMode +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_enabled +com.jaredrummler.android.colorpicker.R$drawable: int cpv_btn_background +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeAppearance +androidx.fragment.R$anim: int fragment_fade_exit +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent[] values() +androidx.preference.R$drawable: int abc_dialog_material_background +androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor[] values() +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.identityscope.IdentityScope identityScope +com.google.android.material.R$id: int italic +io.reactivex.Observable: io.reactivex.Observable scanWith(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: double Value +wangdaye.com.geometricweather.R$styleable: int[] KeyCycle +com.google.android.material.R$attr: int fastScrollHorizontalThumbDrawable +androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitationDuration(java.lang.Float) +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec MODERN_TLS +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarStyle +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onFailed() +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge +androidx.preference.R$attr: int background +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_cancelOngoingRequests +wangdaye.com.geometricweather.R$string: int material_hour_selection +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_arrowShaftLength +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean isDisposed() +wangdaye.com.geometricweather.R$color: int abc_primary_text_disable_only_material_dark +com.amap.api.location.AMapLocation: java.lang.String i +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_enterFadeDuration +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_AES_128_CBC_SHA +com.xw.repo.bubbleseekbar.R$string +wangdaye.com.geometricweather.R$styleable: int Transform_android_rotation +androidx.constraintlayout.widget.R$id: int easeInOut +androidx.hilt.R$id: int accessibility_custom_action_20 +androidx.drawerlayout.R$id: int line3 +androidx.appcompat.R$drawable: int abc_list_pressed_holo_light +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit MGPCUM +com.google.android.material.slider.BaseSlider: float getMinSeparation() +okhttp3.internal.http2.Http2Reader$Handler: void settings(boolean,okhttp3.internal.http2.Settings) +androidx.appcompat.widget.DropDownListView: void setSelectorEnabled(boolean) +okhttp3.internal.cache2.Relay: long bufferMaxSize +androidx.hilt.lifecycle.R$id: int fragment_container_view_tag +okhttp3.MediaType: java.nio.charset.Charset charset(java.nio.charset.Charset) +wangdaye.com.geometricweather.R$drawable: int notif_temp_67 +com.google.android.material.datepicker.MaterialCalendarGridView: MaterialCalendarGridView(android.content.Context,android.util.AttributeSet) +androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnDestroy() +androidx.constraintlayout.widget.R$anim: int abc_grow_fade_in_from_bottom +retrofit2.HttpException: retrofit2.Response response() +wangdaye.com.geometricweather.R$attr: int errorIconDrawable +wangdaye.com.geometricweather.R$string: int not_set +wangdaye.com.geometricweather.R$styleable: int[] ViewBackgroundHelper +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endX +androidx.dynamicanimation.R$styleable +androidx.constraintlayout.widget.R$style: int Platform_V25_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_exitFadeDuration +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit LPSQM +cyanogenmod.weather.CMWeatherManager: java.util.Set mProviderChangedListeners +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode valueOf(java.lang.String) +wangdaye.com.geometricweather.R$attr: int color +cyanogenmod.alarmclock.CyanogenModAlarmClock: CyanogenModAlarmClock() +com.turingtechnologies.materialscrollbar.R$attr: int multiChoiceItemLayout +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HourlyEntityDao hourlyEntityDao +androidx.appcompat.R$drawable: int tooltip_frame_light +androidx.viewpager.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.R$drawable: int notif_temp_63 +com.xw.repo.bubbleseekbar.R$id: int right_side +androidx.constraintlayout.helper.widget.Layer: void setScaleY(float) +androidx.fragment.app.BackStackState: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalStyle +androidx.appcompat.widget.AppCompatRadioButton: void setButtonDrawable(int) +com.jaredrummler.android.colorpicker.R$attr: int tickMarkTintMode +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void drain() +androidx.appcompat.widget.AppCompatSpinner: android.content.Context getPopupContext() +android.didikee.donate.R$dimen: int abc_action_bar_default_height_material +com.jaredrummler.android.colorpicker.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$id: int item_weather_icon_title +androidx.appcompat.view.menu.ListMenuItemView: void setChecked(boolean) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_19 +james.adaptiveicon.R$color: int tooltip_background_light +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void dispose() +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_ActionBar +androidx.constraintlayout.widget.R$id: int checkbox +cyanogenmod.power.IPerformanceManager$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String ragweedDescription +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_bias +com.google.android.material.R$styleable: int Toolbar_contentInsetLeft +android.didikee.donate.R$drawable: int abc_btn_check_to_on_mtrl_015 +androidx.appcompat.R$styleable: int[] ViewBackgroundHelper +io.reactivex.Observable: io.reactivex.Observable skipWhile(io.reactivex.functions.Predicate) +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void removeScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +com.baidu.location.e.m: java.util.List a(org.json.JSONObject,java.lang.String,int) +com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getTextSize() +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_ChipGroup +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle +cyanogenmod.providers.CMSettings$System: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_iconResStart +androidx.hilt.lifecycle.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDbz(java.lang.Integer) +android.didikee.donate.R$styleable: int Toolbar_contentInsetEnd +com.google.android.gms.base.R$styleable: int LoadingImageView_imageAspectRatio +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderTitle +com.jaredrummler.android.colorpicker.R$styleable: int[] StateListDrawableItem +androidx.legacy.coreutils.R$id: int title +james.adaptiveicon.R$attr: int iconTintMode +com.google.android.material.R$style: R$style() +cyanogenmod.weather.RequestInfo: RequestInfo() +james.adaptiveicon.R$styleable: int SearchView_android_inputType +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.util.List getIndices() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_CheckBox +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder cookieJar(okhttp3.CookieJar) +com.xw.repo.bubbleseekbar.R$id: int spacer +androidx.appcompat.widget.LinearLayoutCompat: void setHorizontalGravity(int) +com.google.android.material.textfield.TextInputLayout: int getBoxBackgroundColor() +wangdaye.com.geometricweather.R$drawable: int weather_haze_3 +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog +com.turingtechnologies.materialscrollbar.R$color: int design_bottom_navigation_shadow_color +com.jaredrummler.android.colorpicker.R$id: int wrap_content +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.R$style: int Base_V23_Theme_AppCompat_Light +android.didikee.donate.R$style: int TextAppearance_AppCompat_Inverse +okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_2 +com.turingtechnologies.materialscrollbar.R$dimen: int abc_disabled_alpha_material_dark +androidx.core.app.CoreComponentFactory +okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,java.lang.String) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_NULL_SHA +androidx.lifecycle.SingleGeneratedAdapterObserver +james.adaptiveicon.R$dimen: int notification_right_icon_size +com.turingtechnologies.materialscrollbar.R$dimen: int abc_progress_bar_height_material +androidx.appcompat.R$attr: int actionOverflowMenuStyle +okio.Util +androidx.viewpager.R$id: int line1 +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxDao +androidx.core.R$attr: int fontProviderPackage +androidx.appcompat.R$styleable: int ActionBar_hideOnContentScroll +com.google.gson.stream.JsonWriter: boolean isLenient() +com.google.gson.stream.JsonReader: int PEEKED_NUMBER +wangdaye.com.geometricweather.R$layout: int text_view_with_theme_line_height +wangdaye.com.geometricweather.background.polling.permanent.observer.TimeObserverService +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitation +androidx.constraintlayout.widget.R$attr: int tickMark +com.xw.repo.bubbleseekbar.R$dimen: int abc_list_item_padding_horizontal_material +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: int size +com.turingtechnologies.materialscrollbar.R$attr: int chipCornerRadius +androidx.coordinatorlayout.R$id: int tag_screen_reader_focusable +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherText +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: java.util.List DailyForecasts +com.amap.api.location.AMapLocation: java.lang.String getDescription() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ImageButton +wangdaye.com.geometricweather.R$attr: int closeIcon +wangdaye.com.geometricweather.R$attr: int actionModeWebSearchDrawable +androidx.preference.R$style +android.didikee.donate.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +android.didikee.donate.R$style: int Widget_AppCompat_PopupWindow +androidx.appcompat.R$id: int title +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_width +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_listLayout +androidx.hilt.work.R$styleable: int FontFamily_fontProviderFetchStrategy +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver +cyanogenmod.app.IPartnerInterface$Stub: android.os.IBinder asBinder() +com.jaredrummler.android.colorpicker.R$drawable: int notification_tile_bg +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator +okhttp3.HttpUrl$Builder: java.lang.String encodedFragment +android.didikee.donate.R$drawable: int abc_scrubber_track_mtrl_alpha +wangdaye.com.geometricweather.R$color: int design_default_color_secondary_variant +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_day_abbr +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_saturation +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onError(java.lang.Throwable) +james.adaptiveicon.R$attr: int arrowShaftLength +retrofit2.Call: boolean isExecuted() +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void clear() +cyanogenmod.app.Profile: void setTrigger(cyanogenmod.app.Profile$ProfileTrigger) +com.google.android.material.R$attr: int chipStartPadding +wangdaye.com.geometricweather.R$style: int Base_V28_Theme_AppCompat_Light +james.adaptiveicon.R$drawable: int abc_cab_background_top_material +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +com.google.android.material.R$styleable: int MenuView_android_itemBackground +cyanogenmod.profiles.LockSettings$1 +androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_height_major +cyanogenmod.app.CustomTile$RemoteExpandedStyle: void setRemoteViews(android.widget.RemoteViews) +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource valueOf(java.lang.String) +androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int IconCode +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String name +android.didikee.donate.R$dimen: int abc_dialog_list_padding_top_no_title +com.google.android.material.floatingactionbutton.FloatingActionButton: void setHideMotionSpecResource(int) +wangdaye.com.geometricweather.common.basic.models.weather.Wind +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int lastIndex +okhttp3.Request: java.util.Map tags +okhttp3.internal.http2.Http2Connection$ReaderRunnable: Http2Connection$ReaderRunnable(okhttp3.internal.http2.Http2Connection,okhttp3.internal.http2.Http2Reader) +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_3 +com.xw.repo.bubbleseekbar.R$integer: int cancel_button_image_alpha +androidx.constraintlayout.widget.R$styleable: int Constraint_barrierAllowsGoneWidgets +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder readTimeout(java.time.Duration) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: ObservableConcatMap$SourceObserver$InnerObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver) +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: void dispose() +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour PastHour +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getSnow() +androidx.recyclerview.R$drawable +androidx.activity.R$color: int secondary_text_default_material_light +com.google.android.material.R$styleable: int MaterialCardView_cardForegroundColor +okhttp3.CertificatePinner: okhttp3.CertificatePinner DEFAULT +wangdaye.com.geometricweather.R$styleable: int[] ConstraintLayout_placeholder +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String getDefenseText() +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Fullscreen +cyanogenmod.externalviews.KeyguardExternalView$5: cyanogenmod.externalviews.KeyguardExternalView this$0 +androidx.drawerlayout.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$styleable: int Insets_paddingLeftSystemWindowInsets +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.util.AtomicThrowable errors +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TEMPERATURE +com.jaredrummler.android.colorpicker.R$attr: int allowDividerAbove +com.jaredrummler.android.colorpicker.R$drawable: int cpv_ic_arrow_right_black_24dp +com.google.android.material.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_switchTextOff +okio.HashingSource: okio.HashingSource md5(okio.Source) +com.turingtechnologies.materialscrollbar.R$id: int search_bar +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor +retrofit2.Retrofit$1: Retrofit$1(retrofit2.Retrofit,java.lang.Class) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_shapeAppearance +com.jaredrummler.android.colorpicker.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric +androidx.constraintlayout.widget.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$style: int Base_Theme_MaterialComponents_CompactMenu +com.jaredrummler.android.colorpicker.R$layout: int abc_screen_toolbar +androidx.appcompat.widget.LinearLayoutCompat +androidx.appcompat.widget.SearchView: java.lang.CharSequence getQuery() +okhttp3.internal.cache2.Relay: okio.Source upstream +androidx.swiperefreshlayout.R$layout: R$layout() +com.google.android.material.chip.Chip: java.lang.CharSequence getCloseIconContentDescription() +com.turingtechnologies.materialscrollbar.R$id: int image +android.didikee.donate.R$drawable: int abc_btn_default_mtrl_shape +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_1_00 +com.jaredrummler.android.colorpicker.R$id: int scrollView +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.Number) +androidx.hilt.work.R$id: int chronometer +wangdaye.com.geometricweather.R$drawable: int ic_chronus +androidx.appcompat.R$attr: int dropdownListPreferredItemHeight +androidx.preference.R$styleable: int TextAppearance_textAllCaps +cyanogenmod.profiles.ConnectionSettings: boolean isDirty() +com.google.android.material.R$attr: int actionProviderClass +okhttp3.internal.http2.Http2Stream$FramingSink: boolean closed +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedWidthMinor +com.bumptech.glide.integration.okhttp.R$drawable: int notification_template_icon_low_bg +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar +androidx.core.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.android.material.R$color: int design_dark_default_color_primary +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.fuseable.SimpleQueue queue +cyanogenmod.weatherservice.ServiceRequestResult +james.adaptiveicon.R$styleable: int[] FontFamily +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_padding_top_material +cyanogenmod.themes.IThemeService$Stub$Proxy: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_checkedChip +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleTextColor +com.google.android.material.R$id: int group_divider +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: boolean isDisposed() +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView +androidx.constraintlayout.widget.R$attr: int iconifiedByDefault +androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getDistrict() +android.didikee.donate.R$styleable: int AppCompatTheme_viewInflaterClass +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitationProbability +androidx.viewpager2.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status[] values() +cyanogenmod.externalviews.IExternalViewProvider +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getDegreeDayTemperature() +cyanogenmod.app.Profile: int getExpandedDesktopMode() +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnw +wangdaye.com.geometricweather.R$array: int distance_units +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout_Colored +okhttp3.OkHttpClient$Builder: int connectTimeout +androidx.appcompat.widget.Toolbar: void setOverflowIcon(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean done +okhttp3.Cache: void evictAll() +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetEndWithActions +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterEnabled +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicInteger windows +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.util.AtomicThrowable error +androidx.appcompat.R$dimen: int abc_progress_bar_height_material +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitationDuration(java.lang.Float) +androidx.appcompat.widget.AppCompatImageButton: void setBackgroundResource(int) +retrofit2.RequestBuilder: okhttp3.MediaType contentType +wangdaye.com.geometricweather.db.entities.HourlyEntity: boolean getDaylight() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dividerHorizontal +androidx.work.R$id: int accessibility_custom_action_28 +android.didikee.donate.R$id: int notification_main_column +androidx.recyclerview.R$styleable: int[] RecyclerView +androidx.constraintlayout.widget.R$attr: int mock_showDiagonals +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: long read(okio.Buffer,long) +wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_chainStyle +com.jaredrummler.android.colorpicker.R$attr: int dividerHorizontal +cyanogenmod.weather.CMWeatherManager$2$2: java.util.List val$weatherLocations +com.google.android.material.card.MaterialCardView: void setCardElevation(float) +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String getProviderName(android.content.Context) +androidx.preference.R$dimen: int abc_seekbar_track_background_height_material +androidx.appcompat.R$attr: int paddingStart +androidx.constraintlayout.widget.Guideline: void setGuidelineEnd(int) +wangdaye.com.geometricweather.R$id: int notification_base_time +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_hideMotionSpec +okhttp3.Cache$CacheResponseBody$1 +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_constantSize +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_2_material +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) +retrofit2.RequestFactory$Builder: java.lang.Class boxIfPrimitive(java.lang.Class) +io.reactivex.Observable: io.reactivex.Observable switchOnNext(io.reactivex.ObservableSource,int) +androidx.appcompat.R$color: int abc_decor_view_status_guard +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType MAPBAR +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: int phenomenoMaxColorId +androidx.constraintlayout.widget.R$attr: int maxHeight +okhttp3.internal.http2.Http2Stream: boolean closeInternal(okhttp3.internal.http2.ErrorCode) +wangdaye.com.geometricweather.R$attr: int waveDecay +com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Light +androidx.appcompat.R$styleable: int FontFamilyFont_fontVariationSettings +com.jaredrummler.android.colorpicker.R$layout: int preference +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onNext(java.lang.Object) +io.reactivex.internal.util.EmptyComponent +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_PopupMenu +com.jaredrummler.android.colorpicker.R$attr: int cpv_showAlphaSlider +com.bumptech.glide.load.resource.gif.GifFrameLoader +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder followSslRedirects(boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX) +com.jaredrummler.android.colorpicker.R$id: int scrollIndicatorUp +okhttp3.internal.tls.DistinguishedNameParser: int pos +androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Caption +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: double Value +androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +androidx.cardview.widget.CardView: boolean getPreventCornerOverlap() io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator -com.bumptech.glide.R$id: int top -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Bridge -androidx.swiperefreshlayout.R$attr -androidx.lifecycle.ComputableLiveData$3: androidx.lifecycle.ComputableLiveData this$0 -james.adaptiveicon.R$attr: int paddingTopNoTitle -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.internal.disposables.SequentialDisposable task -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.R$styleable: int TagView_checked_background_color -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.ObservableSource source -com.xw.repo.bubbleseekbar.R$styleable: int GradientColorItem_android_color -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button -com.google.android.material.R$styleable: int Chip_android_ellipsize -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.R$string: int settings_title_notification_color -androidx.preference.R$attr: int dialogTheme -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabView -androidx.preference.R$drawable: int abc_ic_menu_cut_mtrl_alpha -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getLongDate(android.content.Context) -com.google.android.material.R$layout: int mtrl_alert_select_dialog_item -androidx.hilt.lifecycle.R$layout: int notification_template_custom_big -androidx.constraintlayout.widget.R$drawable: int abc_btn_colored_material -androidx.preference.R$attr: int defaultValue -androidx.preference.R$styleable: int SeekBarPreference_seekBarIncrement -com.google.android.material.R$drawable: int notification_bg_low_pressed -com.google.android.material.R$animator: int mtrl_extended_fab_change_size_collapse_motion_spec -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft -com.google.gson.JsonParseException: JsonParseException(java.lang.String,java.lang.Throwable) -cyanogenmod.app.ThemeVersion$ComponentVersion: int getCurrentVersion() -androidx.hilt.R$style: R$style() -com.bumptech.glide.integration.okhttp.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$attr: int triggerId -cyanogenmod.app.CustomTile$ExpandedStyle: int NO_STYLE -androidx.preference.R$styleable: int BackgroundStyle_android_selectableItemBackground -wangdaye.com.geometricweather.R$attr: int colorControlActivated -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderPackage -androidx.constraintlayout.widget.R$drawable: int notification_template_icon_bg -androidx.vectordrawable.animated.R$layout: int notification_template_part_chronometer -okhttp3.internal.http.StatusLine: int HTTP_TEMP_REDIRECT -wangdaye.com.geometricweather.R$array: int distance_unit_values -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable -cyanogenmod.app.PartnerInterface: java.lang.String getCurrentHotwordPackageName() -androidx.hilt.R$integer: int status_bar_notification_info_maxnum -com.jaredrummler.android.colorpicker.R$dimen: int abc_search_view_preferred_height -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric -com.github.rahatarmanahmed.cpv.R$color: R$color() -james.adaptiveicon.R$string: int search_menu_title -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsModify(boolean) -com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode FIRST_VISIBLE -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: FlowableConcatMap$ConcatMapInner(io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport) -com.google.android.material.R$styleable: int Layout_maxWidth -cyanogenmod.profiles.RingModeSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.preference.R$drawable: int abc_list_selector_disabled_holo_dark -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dialog -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_CAMELLIA_256_CBC_SHA -androidx.lifecycle.extensions.R$id: int action_text -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: boolean IsDaylight -androidx.constraintlayout.widget.R$dimen: int disabled_alpha_material_light -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_toolbar -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setIcePrecipitation(java.lang.Float) -wangdaye.com.geometricweather.R$attr: int paddingStart -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitationDuration() -androidx.constraintlayout.widget.R$attr: int itemPadding -com.google.android.material.R$styleable: int FontFamily_fontProviderFetchStrategy -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long serialVersionUID -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_CONDITION -com.google.android.gms.base.R$drawable: int common_full_open_on_phone -androidx.legacy.coreutils.R$color -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -com.google.android.material.R$attr: int commitIcon -androidx.work.R$dimen: int notification_large_icon_width -james.adaptiveicon.R$color: int primary_material_dark -com.google.android.material.R$attr: int startIconDrawable -androidx.appcompat.R$attr: int tickMark -androidx.constraintlayout.widget.R$style -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_altSrc -wangdaye.com.geometricweather.R$id: int barrier -com.jaredrummler.android.colorpicker.R$attr: int actionViewClass -androidx.recyclerview.R$id: int accessibility_custom_action_27 -wangdaye.com.geometricweather.R$drawable: int ic_forecast -androidx.viewpager2.R$id: int accessibility_custom_action_6 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_android_textAppearance -wangdaye.com.geometricweather.R$drawable: int notif_temp_106 -androidx.lifecycle.AndroidViewModel: AndroidViewModel(android.app.Application) +android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider this$1 +androidx.appcompat.R$styleable: int AppCompatTextView_drawableStartCompat +android.didikee.donate.R$dimen: int abc_action_bar_overflow_padding_start_material +com.google.android.material.R$id: int material_timepicker_ok_button +cyanogenmod.externalviews.ExternalView: void access$000(cyanogenmod.externalviews.ExternalView) +androidx.preference.SeekBarPreference +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: java.lang.Float value +com.amap.api.location.AMapLocationClientOption: boolean isMockEnable() +com.google.android.material.R$dimen: int mtrl_textinput_box_corner_radius_small +okhttp3.internal.Util: java.nio.charset.Charset UTF_32_LE +com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage DEFAULT +androidx.preference.R$styleable: int SearchView_defaultQueryHint +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon Moon +androidx.loader.content.Loader: void unregisterOnLoadCanceledListener(androidx.loader.content.Loader$OnLoadCanceledListener) +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_activated_mtrl_alpha +com.google.android.material.textfield.TextInputLayout: void setSuffixText(java.lang.CharSequence) +cyanogenmod.profiles.StreamSettings +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: int UnitType +com.xw.repo.bubbleseekbar.R$attr: int actionMenuTextColor +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Title_Inverse +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle CITIES +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean getPrecipitationProbability() +com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_simple_overlay_action_mode +androidx.appcompat.R$style: int Base_Widget_AppCompat_EditText +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State getStateAfter(androidx.lifecycle.Lifecycle$Event) +okhttp3.Challenge: Challenge(java.lang.String,java.lang.String) +androidx.work.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DegreeDayTemperature +androidx.appcompat.R$layout: int abc_select_dialog_material +okhttp3.RealCall: java.io.IOException timeoutExit(java.io.IOException) +wangdaye.com.geometricweather.R$attr: int dotDiameter +cyanogenmod.themes.IThemeService$Stub$Proxy: void removeUpdates(cyanogenmod.themes.IThemeChangeListener) +okhttp3.internal.cache.CacheInterceptor$1: okhttp3.internal.cache.CacheRequest val$cacheRequest +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +com.github.rahatarmanahmed.cpv.CircularProgressView$7: void onAnimationUpdate(android.animation.ValueAnimator) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: AccuCurrentResult$RealFeelTemperature$Metric() +androidx.appcompat.widget.AppCompatTextView: int getAutoSizeTextType() +android.didikee.donate.R$style: int TextAppearance_AppCompat_Subhead +retrofit2.OkHttpCall: java.lang.Throwable creationFailure +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: java.lang.String Unit +okhttp3.internal.platform.Platform: int INFO +com.google.gson.stream.JsonReader: int PEEKED_SINGLE_QUOTED +androidx.preference.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +wangdaye.com.geometricweather.R$color: int material_timepicker_clockface +com.turingtechnologies.materialscrollbar.R$id: int action_bar +james.adaptiveicon.R$layout: int select_dialog_singlechoice_material +com.google.android.material.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: MfWarningsResult$WarningMaxCountItems() +com.amap.api.fence.DistrictItem +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getCity() +cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder asBinder() com.google.android.gms.base.R$id: int auto -com.google.android.material.R$id: int material_label -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_39 -wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_dark -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: int offset -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getCo() -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_focused_holo -james.adaptiveicon.R$dimen: int abc_text_size_title_material_toolbar -com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialButton -com.google.android.gms.common.ConnectionResult -com.jaredrummler.android.colorpicker.R$attr: int spanCount -okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithIncrementalIndexingIndexedName(int) -androidx.appcompat.resources.R$id: int italic -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onComplete() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -wangdaye.com.geometricweather.R$attr: int tabMinWidth -androidx.hilt.work.R$id: int action_divider -androidx.appcompat.R$styleable: int Toolbar_subtitleTextAppearance -androidx.constraintlayout.widget.R$drawable: int abc_list_pressed_holo_light -androidx.cardview.widget.CardView: void setUseCompatPadding(boolean) -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -com.google.android.material.R$attr: int layout_constraintGuide_begin -wangdaye.com.geometricweather.R$string: int ice -androidx.appcompat.resources.R$id: int forever -wangdaye.com.geometricweather.R$layout: int dialog_location_permission_statement -retrofit2.ParameterHandler$HeaderMap: ParameterHandler$HeaderMap(java.lang.reflect.Method,int,retrofit2.Converter) -cyanogenmod.weather.RequestInfo: boolean access$702(cyanogenmod.weather.RequestInfo,boolean) -wangdaye.com.geometricweather.R$color: int accent_material_dark -retrofit2.ParameterHandler$QueryMap: java.lang.reflect.Method method -cyanogenmod.providers.CMSettings$Secure: int getInt(android.content.ContentResolver,java.lang.String) -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource LOCAL -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getSummary(android.content.Context,java.util.List) -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getErrorContentDescription() -wangdaye.com.geometricweather.R$string: int widget_day_week -wangdaye.com.geometricweather.R$drawable: int selectable_ripple -com.google.android.material.R$id: int material_timepicker_cancel_button -androidx.preference.R$color: int abc_hint_foreground_material_light -androidx.viewpager.R$styleable: int GradientColor_android_endY -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.appcompat.R$style: int Base_DialogWindowTitleBackground_AppCompat -wangdaye.com.geometricweather.R$dimen: int material_clock_size -com.google.android.material.R$attr: int indicatorSize -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String SECONDARY_COLOR -okhttp3.internal.http2.Http2Connection$PingRunnable: boolean reply -wangdaye.com.geometricweather.R$attr: int progressBarStyle -okhttp3.EventListener$1: EventListener$1() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean done -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemIconSize -androidx.lifecycle.ComputableLiveData$1: ComputableLiveData$1(androidx.lifecycle.ComputableLiveData) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Caption -androidx.legacy.coreutils.R$id: R$id() -androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnStart() -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTemperature -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderTitle -io.reactivex.internal.observers.DeferredScalarObserver: long serialVersionUID -com.google.android.material.R$styleable: int TextAppearance_android_textStyle -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_SmallComponent -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadPing(okio.ByteString) -okhttp3.internal.http2.Http2Connection: void close(okhttp3.internal.http2.ErrorCode,okhttp3.internal.http2.ErrorCode) -com.google.android.material.R$attr: int waveDecay -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Body2 -android.didikee.donate.R$id: int expand_activities_button -android.didikee.donate.R$id: int search_button -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_5 -com.bumptech.glide.R$id: int icon_group -wangdaye.com.geometricweather.R$attr: int switchTextAppearance -wangdaye.com.geometricweather.R$drawable: int weather_hail_2 -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_DayNight -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.internal.util.AtomicThrowable errors -okhttp3.internal.cache.DiskLruCache$1 -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_color_selector -androidx.lifecycle.ReportFragment$ActivityInitializationListener -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void rstStream(int,okhttp3.internal.http2.ErrorCode) -cyanogenmod.app.IPartnerInterface$Stub$Proxy: void setAirplaneModeEnabled(boolean) -io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler,boolean) -androidx.appcompat.resources.R$id: int accessibility_custom_action_25 -android.didikee.donate.R$styleable: int AppCompatTheme_colorControlHighlight -com.google.android.material.R$styleable: int KeyTimeCycle_motionProgress -wangdaye.com.geometricweather.R$id: int fragment_drawer -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_EditText -android.support.v4.os.IResultReceiver$Stub$Proxy: android.os.IBinder mRemote -androidx.hilt.lifecycle.R$anim: int fragment_close_enter -androidx.core.R$styleable: int GradientColor_android_startX -com.turingtechnologies.materialscrollbar.R$layout: int design_bottom_navigation_item -androidx.appcompat.R$style: int Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.R$style: int spinner_item -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endColor -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_RC4_128_SHA -wangdaye.com.geometricweather.R$attr: int fontProviderQuery -cyanogenmod.profiles.LockSettings: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String ShortPhrase -okhttp3.ConnectionPool: int maxIdleConnections -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_thumb -wangdaye.com.geometricweather.R$string: int character_counter_content_description -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.internal.disposables.SequentialDisposable upstream -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: wangdaye.com.geometricweather.db.entities.ChineseCityEntity readEntity(android.database.Cursor,int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_60 -cyanogenmod.externalviews.ExternalViewProviderService: boolean DEBUG -androidx.preference.R$dimen: int abc_dropdownitem_text_padding_left -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_107 -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void dispose() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean requestDismiss() -com.google.android.material.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -com.google.android.material.R$styleable: int[] Constraint -androidx.cardview.R$styleable: int CardView_cardElevation -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_title -com.google.android.material.R$layout: int abc_action_menu_item_layout -com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_fast_out_slow_in -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.AbstractDaoSession session -androidx.customview.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -okhttp3.internal.connection.RealConnection: okhttp3.internal.ws.RealWebSocket$Streams newWebSocketStreams(okhttp3.internal.connection.StreamAllocation) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_material -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorTextAppearance -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification +james.adaptiveicon.R$anim: int abc_popup_enter +androidx.viewpager2.R$id: int accessibility_action_clickable_span +com.google.android.material.card.MaterialCardView: void setCheckable(boolean) +cyanogenmod.app.Profile$LockMode: int DISABLE +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPopupWindowStyle +wangdaye.com.geometricweather.R$drawable: int abc_list_divider_mtrl_alpha +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_light +com.turingtechnologies.materialscrollbar.R$attr: int font +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginBottom +james.adaptiveicon.R$drawable: int abc_ic_arrow_drop_right_black_24dp +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findAndroidPlatform() +com.bumptech.glide.GeneratedAppGlideModule +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onComplete() +com.google.android.material.R$layout: int abc_activity_chooser_view +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_summaryOff +wangdaye.com.geometricweather.R$styleable: int[] AppBarLayout_Layout +james.adaptiveicon.R$anim: int abc_popup_exit +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Overline +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer uvIndex +androidx.core.widget.NestedScrollView$SavedState +androidx.fragment.R$string +wangdaye.com.geometricweather.R$string: int sp_widget_daily_trend_setting +okhttp3.internal.http2.Http2Reader$Handler: void data(boolean,int,okio.BufferedSource,int) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.Integer alti +wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_light +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getGrassDescription() +okio.Okio: okio.BufferedSink buffer(okio.Sink) +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean disposed +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_EditText +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircle +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +okhttp3.internal.http2.Hpack$Writer: int nextHeaderIndex +androidx.constraintlayout.widget.R$id: int on +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_title +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginStart +okio.RealBufferedSink: okio.BufferedSink emitCompleteSegments() +com.google.android.material.textfield.TextInputLayout: void setStartIconContentDescription(int) +james.adaptiveicon.R$dimen: int abc_seekbar_track_background_height_material +io.reactivex.internal.queue.SpscArrayQueue: void soElement(int,java.lang.Object) +retrofit2.ParameterHandler: retrofit2.ParameterHandler array() +com.jaredrummler.android.colorpicker.R$id: int radio +com.google.android.gms.base.R$color: R$color() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonStyleSmall +com.google.android.material.R$attr: int toolbarStyle +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +com.xw.repo.bubbleseekbar.R$attr: int barLength +com.xw.repo.bubbleseekbar.R$attr: int allowStacking +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String en_US +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: int UnitType +androidx.viewpager2.widget.ViewPager2: int getOffscreenPageLimit() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.R$string: int date_format_long +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_search_api_material +okhttp3.EventListener: void callEnd(okhttp3.Call) +com.amap.api.fence.GeoFenceManagerBase: void setGeoFenceAble(java.lang.String,boolean) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +wangdaye.com.geometricweather.R$drawable: int notif_temp_3 +wangdaye.com.geometricweather.R$attr: int layout_behavior +androidx.viewpager.R$id: int action_image +okhttp3.Cache$Entry: java.lang.String SENT_MILLIS +cyanogenmod.app.CustomTileListenerService: void onCustomTilePosted(cyanogenmod.app.StatusBarPanelCustomTile) +io.reactivex.internal.observers.ForEachWhileObserver: void onError(java.lang.Throwable) +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnClickUri(android.net.Uri) +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedWritableDb(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getZh_TW() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalStyle +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_min +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_item_min_width +android.didikee.donate.R$styleable: int SearchView_android_imeOptions +wangdaye.com.geometricweather.R$attr: int cardForegroundColor +androidx.appcompat.R$attr: int homeAsUpIndicator +com.google.android.material.R$drawable: int mtrl_popupmenu_background +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_CREATE +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_ContextMenu +wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMarkTintMode +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) +androidx.preference.R$styleable: int MenuGroup_android_orderInCategory +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean checkTerminated(boolean,boolean,io.reactivex.Observer) +wangdaye.com.geometricweather.R$attr: int bsb_auto_adjust_section_mark +androidx.preference.R$id: int accessibility_custom_action_16 +androidx.lifecycle.SavedStateHandleController$1: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.R$string: int settings_title_notification_style +wangdaye.com.geometricweather.R$layout: int item_weather_daily_title +io.reactivex.internal.observers.ForEachWhileObserver: boolean done +okhttp3.internal.http2.Http2Stream +com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout_Colored +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.core.R$styleable: int[] FontFamily +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver +androidx.legacy.coreutils.R$attr: int fontProviderQuery +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ListView_DropDown +com.google.android.material.button.MaterialButton: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +androidx.preference.R$styleable: int AppCompatTheme_actionModeSplitBackground +android.didikee.donate.R$dimen: int notification_small_icon_background_padding +androidx.lifecycle.extensions.R$dimen: int notification_top_pad +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_TextView +androidx.drawerlayout.R$styleable: int GradientColor_android_endX +androidx.appcompat.R$anim: int abc_shrink_fade_out_from_bottom +androidx.preference.R$styleable: int TextAppearance_textLocale +com.jaredrummler.android.colorpicker.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_transformPivotY +androidx.lifecycle.ReportFragment: androidx.lifecycle.ReportFragment get(android.app.Activity) +okhttp3.RequestBody$2: RequestBody$2(okhttp3.MediaType,int,byte[],int) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: ObservableFlatMap$MergeObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean,int,int) +cyanogenmod.externalviews.ExternalView$4: void run() +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_switchTextOff +androidx.preference.R$attr: int windowFixedHeightMajor +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabInlineLabel +androidx.constraintlayout.widget.R$dimen: int tooltip_y_offset_non_touch +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: AccuCurrentResult$PrecipitationSummary$Past24Hours() +com.github.rahatarmanahmed.cpv.R: R() +androidx.loader.R$styleable: int[] ColorStateListItem +androidx.hilt.R$drawable: int notification_template_icon_bg +cyanogenmod.weather.ICMWeatherManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: AccuDailyResult$DailyForecasts$Day$Rain() wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status LOADING -com.google.android.material.R$styleable: int Layout_android_layout_marginStart -androidx.preference.UnPressableLinearLayout -android.didikee.donate.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -cyanogenmod.app.ProfileManager: java.util.UUID NO_PROFILE -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean visibility -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric -com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException: DefaultImageHeaderParser$Reader$EndOfFileException() -wangdaye.com.geometricweather.R$style: int Widget_Design_FloatingActionButton -wangdaye.com.geometricweather.R$drawable: int abc_action_bar_item_background_material -james.adaptiveicon.R$style: int Widget_AppCompat_Spinner -androidx.recyclerview.R$id: int actions -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTopCompat -james.adaptiveicon.R$attr: int navigationIcon -wangdaye.com.geometricweather.R$attr: int preferenceFragmentStyle -com.xw.repo.bubbleseekbar.R$id: int progress_circular -com.google.android.material.R$attr: int colorPrimaryVariant -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setUrl(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean) -com.google.android.material.R$styleable: int PropertySet_android_visibility -com.xw.repo.bubbleseekbar.R$attr: int fontWeight -com.github.rahatarmanahmed.cpv.CircularProgressView$4: void onAnimationUpdate(android.animation.ValueAnimator) -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: java.util.ArrayList cVersions -okio.Buffer: int readUtf8CodePoint() -androidx.hilt.lifecycle.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.R$id: int notification_base_realtimeTemp -com.google.android.material.R$styleable: int AppCompatTheme_borderlessButtonStyle -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_AIR_QUALITY -okhttp3.internal.http2.Hpack$Reader: int evictToRecoverBytes(int) -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabGravity -com.google.android.material.R$styleable: int TabItem_android_text -cyanogenmod.weather.WeatherInfo: boolean access$000(int) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: java.lang.String Localized -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.widget.AppCompatCheckBox: void setSupportBackgroundTintList(android.content.res.ColorStateList) -androidx.appcompat.widget.Toolbar: void setTitleTextColor(android.content.res.ColorStateList) -com.jaredrummler.android.colorpicker.R$color: int primary_material_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX -com.bumptech.glide.Registry$NoImageHeaderParserException -androidx.constraintlayout.widget.R$styleable: int PopupWindowBackgroundState_state_above_anchor -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LIVE_LOCK_SCREEN -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: int UnitType -androidx.appcompat.R$color: int bright_foreground_inverse_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: java.lang.String Unit -okhttp3.OkHttpClient: int connectTimeout -androidx.vectordrawable.animated.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: double Value -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display4 -com.google.android.material.R$attr: int layout_constraintRight_toRightOf -androidx.preference.R$styleable: int ActionBar_contentInsetStartWithNavigation -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.Property getPkProperty() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric() -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTextPadding -androidx.dynamicanimation.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition -com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabTextStyle -io.reactivex.internal.util.VolatileSizeArrayList: boolean contains(java.lang.Object) -com.bumptech.glide.integration.okhttp.R$id: int tag_unhandled_key_listeners -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.util.concurrent.atomic.AtomicLong requested -wangdaye.com.geometricweather.R$styleable: int Toolbar_navigationContentDescription -androidx.appcompat.R$layout: int abc_alert_dialog_title_material -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean isPrecipitation() -okhttp3.internal.cache.CacheInterceptor$1: okio.BufferedSink val$cacheBody -com.google.android.material.R$id: int mtrl_picker_text_input_range_start -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_textEndPadding -androidx.recyclerview.R$drawable: int notification_template_icon_low_bg -androidx.viewpager.widget.ViewPager: void setOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) -wangdaye.com.geometricweather.R$string: int feedback_align_end -wangdaye.com.geometricweather.R$attr: int chipSpacingHorizontal -com.google.android.material.R$attr: int logoDescription -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_4 -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -android.didikee.donate.R$drawable: int abc_cab_background_top_mtrl_alpha -androidx.recyclerview.R$id: int italic -androidx.loader.R$dimen: int notification_media_narrow_margin -android.didikee.donate.R$dimen: int abc_disabled_alpha_material_light -androidx.appcompat.widget.AppCompatAutoCompleteTextView: android.content.res.ColorStateList getSupportBackgroundTintList() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$width -com.turingtechnologies.materialscrollbar.R$id: int wrap_content -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_1 -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_text_size -com.google.android.material.R$string: int abc_menu_sym_shortcut_label -james.adaptiveicon.R$attr: int actionOverflowMenuStyle -androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy -com.google.android.material.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_top_mtrl_alpha -okhttp3.internal.Util: java.util.List immutableList(java.lang.Object[]) -okhttp3.internal.http.HttpMethod: boolean requiresRequestBody(java.lang.String) -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DialogWhenLarge -com.google.android.material.R$attr: int listItemLayout -io.reactivex.internal.observers.BasicIntQueueDisposable: long serialVersionUID -wangdaye.com.geometricweather.R$attr: int cornerSizeTopRight -com.xw.repo.bubbleseekbar.R$attr: int logo -okhttp3.internal.tls.BasicCertificateChainCleaner: okhttp3.internal.tls.TrustRootIndex trustRootIndex -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_grey -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeBackground -androidx.constraintlayout.widget.R$styleable: int Spinner_android_prompt -wangdaye.com.geometricweather.db.entities.AlertEntity: void setDescription(java.lang.String) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver -okio.Sink: void write(okio.Buffer,long) -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_anchor -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColor(int) -okhttp3.internal.http.RealInterceptorChain: okhttp3.Request request -android.didikee.donate.R$drawable: int abc_text_select_handle_middle_mtrl_dark -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: int fusionMode -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlNormal -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context,android.util.AttributeSet,int) -androidx.lifecycle.SavedStateHandle: androidx.lifecycle.SavedStateHandle createHandle(android.os.Bundle,android.os.Bundle) -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_day_of_week -com.google.android.material.R$color: int bright_foreground_inverse_material_light -com.jaredrummler.android.colorpicker.R$attr: int paddingBottomNoButtons -androidx.preference.R$id: int fragment_container_view_tag -androidx.constraintlayout.widget.R$styleable: int SearchView_layout -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService access$400() -okhttp3.internal.http2.Http2Connection$3: okhttp3.internal.http2.Http2Connection this$0 -cyanogenmod.providers.CMSettings$Secure$1: java.lang.String mDelimiter -androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_android_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableItem_android_id -com.jaredrummler.android.colorpicker.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -com.google.android.material.R$attr: int actionModePopupWindowStyle -james.adaptiveicon.R$dimen: int abc_text_size_medium_material -wangdaye.com.geometricweather.R$id: int action_bar_title -com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Choice -com.turingtechnologies.materialscrollbar.R$styleable: int[] CoordinatorLayout -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_splitTrack -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_btn_state_list_anim -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_statusBarBackground -androidx.viewpager.R$styleable: int FontFamily_fontProviderFetchTimeout -james.adaptiveicon.R$styleable: int CompoundButton_buttonTint -androidx.appcompat.R$style: int TextAppearance_AppCompat_Display3 -androidx.constraintlayout.widget.R$attr: int customColorDrawableValue -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean removeProfile(cyanogenmod.app.Profile) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat -cyanogenmod.app.CustomTileListenerService: java.lang.String access$200(cyanogenmod.app.CustomTileListenerService) -com.google.android.material.R$styleable: int FloatingActionButton_fabSize -james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog -com.google.android.material.R$styleable: int CoordinatorLayout_statusBarBackground -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: boolean won -androidx.appcompat.resources.R$attr: R$attr() -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setBackgroundColorEnd(int) -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_elevation -james.adaptiveicon.R$styleable: int[] AlertDialog -wangdaye.com.geometricweather.R$attr: int behavior_expandedOffset -okio.Pipe$PipeSink: void flush() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: double Value -cyanogenmod.weatherservice.ServiceRequestResult: java.util.List access$302(cyanogenmod.weatherservice.ServiceRequestResult,java.util.List) -androidx.appcompat.R$styleable: int CompoundButton_buttonCompat -io.reactivex.internal.subscriptions.SubscriptionArbiter: void setSubscription(org.reactivestreams.Subscription) -androidx.swiperefreshlayout.R$integer -androidx.preference.R$attr: int disableDependentsState -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: int size -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModePasteDrawable -com.google.android.material.R$attr: int placeholderTextColor -wangdaye.com.geometricweather.R$integer: int cancel_button_image_alpha -wangdaye.com.geometricweather.R$transition: int search_activity_shared_enter -androidx.appcompat.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -wangdaye.com.geometricweather.R$color: int lightPrimary_3 -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String iconUrl -retrofit2.BuiltInConverters$StreamingResponseBodyConverter: BuiltInConverters$StreamingResponseBodyConverter() -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_dark -cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderService$Stub mBinder -com.google.android.material.R$styleable: int MockView_mock_label -okio.GzipSource: okio.BufferedSource source -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -com.google.android.gms.location.LocationSettingsRequest: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_padding_top_material -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getUnitId() -androidx.constraintlayout.widget.R$attr: int autoCompleteTextViewStyle -androidx.lifecycle.Transformations$2$1: Transformations$2$1(androidx.lifecycle.Transformations$2) -com.google.android.material.button.MaterialButton: void setInternalBackground(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.util.List getValue() -okhttp3.Cookie$Builder: java.lang.String domain -androidx.hilt.work.R$styleable: int GradientColor_android_startColor -io.reactivex.Observable: io.reactivex.Observable doOnComplete(io.reactivex.functions.Action) -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory valueOf(java.lang.String) -okio.BufferedSink: okio.BufferedSink writeByte(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial -com.github.rahatarmanahmed.cpv.CircularProgressView: int animSwoopDuration -wangdaye.com.geometricweather.R$drawable: int weather_thunder_1 -okhttp3.OkHttpClient$Builder: okhttp3.EventListener$Factory eventListenerFactory -com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_in_top -androidx.coordinatorlayout.R$id: int left -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day Day -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_dark -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.viewpager.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitation() -james.adaptiveicon.R$color: int ripple_material_dark -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Light -androidx.core.R$color: int notification_icon_bg_color -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedFragment(java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int panelMenuListWidth -cyanogenmod.app.ILiveLockScreenManagerProvider: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -okhttp3.Address: javax.net.ssl.HostnameVerifier hostnameVerifier -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Insert -com.google.android.material.R$animator: int mtrl_extended_fab_hide_motion_spec -cyanogenmod.power.IPerformanceManager$Stub$Proxy: int getNumberOfProfiles() -wangdaye.com.geometricweather.R$string: int key_exchange_day_night_temp_switch -cyanogenmod.weatherservice.ServiceRequestResult: void writeToParcel(android.os.Parcel,int) -androidx.preference.R$attr: int editTextStyle -wangdaye.com.geometricweather.R$attr: int chipSurfaceColor -org.greenrobot.greendao.database.DatabaseOpenHelper: boolean loadSQLCipherNativeLibs -com.google.android.material.R$style: int TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.R$plurals: int mtrl_badge_content_description -androidx.hilt.work.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_58 -com.google.android.material.R$dimen: int material_text_view_test_line_height -com.jaredrummler.android.colorpicker.R$string: int abc_menu_meta_shortcut_label -androidx.hilt.R$anim: int fragment_open_enter -okhttp3.internal.http2.Http2Connection$3: Http2Connection$3(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[]) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: int UnitType -okhttp3.internal.http2.Header: okio.ByteString RESPONSE_STATUS -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCutDrawable -wangdaye.com.geometricweather.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -androidx.appcompat.R$style: int TextAppearance_AppCompat_Large -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemBitmap(android.graphics.Bitmap) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -androidx.constraintlayout.widget.R$styleable: int SearchView_goIcon -wangdaye.com.geometricweather.R$id: int notification_multi_city_1 -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTemperature -com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$attr: int actionBarTabTextStyle -wangdaye.com.geometricweather.R$string: int content_des_delete_flag -okhttp3.internal.http2.Huffman -wangdaye.com.geometricweather.common.basic.models.weather.Weather: boolean isValid(float) -okhttp3.internal.http2.Http2Connection$1: int val$streamId -android.didikee.donate.R$id: int action_bar_spinner -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation observation -androidx.vectordrawable.R$styleable: int GradientColor_android_tileMode -okhttp3.internal.http2.Http2Writer: void synReply(boolean,int,java.util.List) -com.bumptech.glide.integration.okhttp.R$attr: int fontVariationSettings -androidx.transition.R$drawable: int notification_bg_low_normal -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(io.reactivex.Scheduler) -com.google.android.material.chip.Chip: float getChipMinHeight() -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getCityId() -okhttp3.HttpUrl: int hashCode() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeColor -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_weight -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constrainedWidth -okhttp3.internal.http2.Http2Codec: okhttp3.internal.connection.StreamAllocation streamAllocation -okhttp3.Handshake: java.util.List peerCertificates -androidx.constraintlayout.widget.R$id: int packed -com.google.android.material.R$styleable: int AnimatedStateListDrawableItem_android_drawable -wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_grey -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontStyle -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runAsync() -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_titleTextStyle -james.adaptiveicon.R$attr: int imageButtonStyle -wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabText -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial -james.adaptiveicon.R$id: int search_close_btn -wangdaye.com.geometricweather.R$attr: int pivotAnchor -androidx.viewpager2.R$id: int line1 -okio.GzipSink: void flush() -com.xw.repo.bubbleseekbar.R$attr: int defaultQueryHint -io.reactivex.internal.util.VolatileSizeArrayList: boolean removeAll(java.util.Collection) -androidx.drawerlayout.R$id: int icon_group -okhttp3.internal.http1.Http1Codec$ChunkedSource: Http1Codec$ChunkedSource(okhttp3.internal.http1.Http1Codec,okhttp3.HttpUrl) -com.google.android.material.R$id: int time -androidx.preference.R$styleable: int DialogPreference_dialogLayout -wangdaye.com.geometricweather.R$drawable: int notif_temp_53 -androidx.preference.R$id: int multiply -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_icon_text_spacing -androidx.preference.R$dimen: int abc_button_inset_vertical_material -com.xw.repo.bubbleseekbar.R$string -com.bumptech.glide.integration.okhttp.R$styleable: int[] ColorStateListItem -androidx.constraintlayout.widget.R$id: int bounce -com.bumptech.glide.integration.okhttp.R$layout: int notification_template_part_time -com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierMargin -androidx.constraintlayout.widget.R$styleable: int MenuView_android_windowAnimationStyle -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_DES_CBC_SHA -androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_2_material -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver otherObserver -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -cyanogenmod.os.Concierge$ParcelInfo: int mSizePosition -androidx.core.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_stacked_max_height -cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileGroup getActiveProfileGroup(java.lang.String) -com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.drawable.Drawable getStatusBarScrim() -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void runFinally() -com.turingtechnologies.materialscrollbar.R$color: int cardview_shadow_end_color -androidx.preference.R$style: int Base_V7_Theme_AppCompat_Dialog -android.didikee.donate.R$styleable: int Toolbar_title -android.didikee.donate.R$id: int action_menu_presenter -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark -wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_Material -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: cyanogenmod.externalviews.IExternalViewProviderFactory asInterface(android.os.IBinder) -androidx.fragment.R$attr -wangdaye.com.geometricweather.R$styleable: int SearchView_defaultQueryHint -com.jaredrummler.android.colorpicker.R$attr: int initialActivityCount -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onActionModeFinished(android.view.ActionMode) -androidx.hilt.work.R$styleable: int FontFamily_fontProviderQuery -androidx.appcompat.view.menu.MenuPopupHelper -com.google.android.material.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge -cyanogenmod.providers.CMSettings$Secure: long getLongForUser(android.content.ContentResolver,java.lang.String,int) -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit[] values() -okhttp3.ResponseBody: okio.BufferedSource source() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setPubTime(java.lang.String) -android.didikee.donate.R$styleable: int ActionBar_background -androidx.constraintlayout.widget.R$dimen: int abc_dialog_title_divider_material -cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder access$200(cyanogenmod.externalviews.KeyguardExternalView) -com.google.android.material.transformation.ExpandableBehavior -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.Disposable upstream -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Small -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String UVIndexText -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator -com.google.android.material.card.MaterialCardView: int getCheckedIconSize() -com.google.android.material.R$attr: int closeIconVisible -com.google.android.material.R$drawable: int design_ic_visibility -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_UUID -com.google.android.material.R$id: int animateToEnd -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontWeight -androidx.customview.R$dimen: int compat_button_padding_vertical_material -okhttp3.MultipartBody: okhttp3.MediaType contentType -james.adaptiveicon.R$layout: int notification_template_part_time -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setWifiScan(boolean) -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Light -androidx.legacy.coreutils.R$id: int action_container -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DialogWhenLarge -wangdaye.com.geometricweather.R$style: int TestStyleWithoutLineHeight -com.google.android.material.transformation.ExpandableTransformationBehavior -com.xw.repo.bubbleseekbar.R$attr: int panelBackground -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Info -androidx.constraintlayout.widget.R$attr: int selectableItemBackgroundBorderless -androidx.constraintlayout.widget.R$attr: int chainUseRtl -androidx.customview.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.preference.R$attr: int windowActionBarOverlay -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: retrofit2.Call call -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: java.lang.String icon +com.google.android.material.R$styleable: int[] ShapeAppearance +wangdaye.com.geometricweather.R$color: int material_slider_active_tick_marks_color +androidx.constraintlayout.widget.R$styleable: int Transition_constraintSetEnd +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: long timeout +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour WRAP_CONTENT +com.amap.api.fence.GeoFence: GeoFence() +com.google.android.material.R$dimen: int abc_action_bar_default_height_material +wangdaye.com.geometricweather.R$drawable: int ic_launcher +androidx.preference.R$attr: int alertDialogStyle +androidx.preference.R$drawable: int preference_list_divider_material +com.turingtechnologies.materialscrollbar.R$id: int content +androidx.lifecycle.LiveData$ObserverWrapper: int mLastVersion +androidx.hilt.work.R$id: int accessibility_custom_action_10 +androidx.preference.R$styleable: int View_android_theme +android.didikee.donate.R$drawable: int abc_item_background_holo_dark +androidx.hilt.R$id: int tag_accessibility_clickable_spans +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: io.reactivex.functions.Consumer onDrop +com.google.android.material.R$dimen: int tooltip_precise_anchor_extra_offset +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_UID +okhttp3.CertificatePinner: java.lang.String pin(java.security.cert.Certificate) +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBaseline_creator +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_searchIcon +com.amap.api.location.CoordUtil: int convertToGcj(double[],double[]) +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackTintList() +james.adaptiveicon.R$dimen: int abc_edit_text_inset_top_material +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_variablePadding +okio.ByteString: ByteString(byte[]) +androidx.preference.R$style: int TextAppearance_AppCompat_Medium +cyanogenmod.app.Profile: boolean getStatusBarIndicator() +james.adaptiveicon.R$drawable: int abc_text_select_handle_right_mtrl_dark +androidx.preference.R$style: int Widget_AppCompat_RatingBar_Indicator +androidx.viewpager2.R$styleable: int GradientColor_android_type +com.google.android.material.R$color: int abc_primary_text_material_light +androidx.appcompat.R$styleable: int Toolbar_collapseContentDescription +androidx.constraintlayout.widget.R$layout: int abc_popup_menu_item_layout +android.didikee.donate.R$layout: int abc_expanded_menu_layout +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float totalPrecipitation24h +cyanogenmod.weather.WeatherInfo: int getConditionCode() +android.didikee.donate.R$id: int action_mode_close_button +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onNext(java.lang.Object) +com.google.android.material.R$attr: int enforceTextAppearance +androidx.swiperefreshlayout.R$integer: R$integer() +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.R$animator: int weather_snow_1 +androidx.preference.R$string: int abc_searchview_description_clear +androidx.appcompat.R$styleable: int AppCompatTheme_imageButtonStyle +androidx.preference.R$styleable: int AppCompatTheme_alertDialogStyle +com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree windDegree +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: wangdaye.com.geometricweather.db.entities.MinutelyEntity readEntity(android.database.Cursor,int) +retrofit2.BuiltInConverters$ToStringConverter: retrofit2.BuiltInConverters$ToStringConverter INSTANCE +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getRingtoneThemePackageName() +com.turingtechnologies.materialscrollbar.R$attr: int counterOverflowTextAppearance +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: int Level +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_BottomSheet +okhttp3.WebSocket: boolean send(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int tabInlineLabel +wangdaye.com.geometricweather.R$string: int wind_speed +androidx.preference.R$dimen: int abc_panel_menu_list_width +androidx.loader.R$layout: int notification_template_part_chronometer +com.google.android.material.R$id: int asConfigured +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_holo_dark +androidx.preference.R$styleable: int[] FragmentContainerView +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_searchViewStyle +wangdaye.com.geometricweather.R$styleable: int[] BackgroundStyle +com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_OFF +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer degreeDayTemperature +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_NOENOUGHSATELLITES +androidx.recyclerview.R$styleable: int GradientColorItem_android_offset +androidx.viewpager.R$dimen: int notification_small_icon_size_as_large +androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context,android.util.AttributeSet) +retrofit2.RequestBuilder: okhttp3.MultipartBody$Builder multipartBuilder +james.adaptiveicon.R$attr: int layout +retrofit2.ParameterHandler$1: void apply(retrofit2.RequestBuilder,java.lang.Object) +androidx.lifecycle.Lifecycle: java.util.concurrent.atomic.AtomicReference mInternalScopeRef +retrofit2.ParameterHandler$Body +cyanogenmod.externalviews.KeyguardExternalView$1: KeyguardExternalView$1(cyanogenmod.externalviews.KeyguardExternalView) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.Observer downstream +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_11 +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_16dp +okhttp3.internal.platform.ConscryptPlatform: okhttp3.internal.platform.ConscryptPlatform buildIfSupported() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SeekBar +wangdaye.com.geometricweather.R$id: int dialog_location_help_providerContainer +okio.Buffer: int write(java.nio.ByteBuffer) +cyanogenmod.app.suggest.IAppSuggestProvider +androidx.appcompat.R$style: int Widget_AppCompat_SearchView_ActionBar +androidx.constraintlayout.widget.R$string: int abc_menu_shift_shortcut_label +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.R$attr: int enableCopying +com.google.android.material.R$styleable: int ConstraintSet_android_transformPivotX +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter endArray() +com.google.android.material.R$dimen: int mtrl_extended_fab_start_padding +org.greenrobot.greendao.database.DatabaseOpenHelper: void setLoadSQLCipherNativeLibs(boolean) +androidx.appcompat.R$styleable: int[] LinearLayoutCompat +com.google.android.material.R$attr: int errorTextAppearance +com.google.android.material.R$styleable: int AppCompatTheme_colorControlHighlight +android.didikee.donate.R$style: int Theme_AppCompat_NoActionBar +cyanogenmod.weather.WeatherInfo: java.lang.String access$1402(cyanogenmod.weather.WeatherInfo,java.lang.String) +com.google.gson.stream.JsonReader: int PEEKED_UNQUOTED +com.google.android.material.R$attr: int titleEnabled +wangdaye.com.geometricweather.R$drawable: int notif_temp_11 +androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Name +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: AccuCurrentResult$PrecipitationSummary$Past9Hours() +james.adaptiveicon.R$dimen: int abc_dropdownitem_text_padding_left +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String unitId +com.google.android.material.R$drawable: int abc_list_selector_background_transition_holo_dark +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_width_major +com.bumptech.glide.R$drawable: int notification_bg_low +androidx.constraintlayout.motion.widget.MotionLayout: int getStartState() +okhttp3.internal.connection.StreamAllocation$StreamAllocationReference +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setUnit(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_statusBarForeground +androidx.customview.R$dimen: int notification_content_margin_start +androidx.recyclerview.widget.RecyclerView: boolean isLayoutSuppressed() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: double Value +androidx.preference.R$style: int ThemeOverlay_AppCompat_Dialog +androidx.work.R$styleable: int[] FontFamily +com.google.gson.stream.JsonReader: int PEEKED_DOUBLE_QUOTED +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: java.util.concurrent.atomic.AtomicReference upstream +com.amap.api.fence.GeoFenceClient: boolean isPause() +com.jaredrummler.android.colorpicker.R$color: int dim_foreground_disabled_material_dark +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onCreatePanelMenu(int,android.view.Menu) +wangdaye.com.geometricweather.R$string: int mtrl_picker_cancel +androidx.appcompat.R$styleable: int[] AlertDialog +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.query.QueryBuilder queryBuilder(java.lang.Class) +androidx.constraintlayout.widget.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean currentPosition +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_backgroundTintMode +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition[] values() +io.reactivex.internal.subscriptions.EmptySubscription: void cancel() +androidx.preference.R$style: int Preference_CheckBoxPreference_Material +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeShareDrawable +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_android_elevation +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias +wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_backgroundColorStart +io.reactivex.Observable: io.reactivex.Observable startWith(io.reactivex.ObservableSource) +com.xw.repo.BubbleSeekBar: void setThumbColor(int) +androidx.dynamicanimation.R$drawable: int notification_bg +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation getWeatherLocation() +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +wangdaye.com.geometricweather.R$id: int item_about_link_text +wangdaye.com.geometricweather.R$drawable: int notif_temp_19 +androidx.lifecycle.Transformations$2: Transformations$2(androidx.arch.core.util.Function,androidx.lifecycle.MediatorLiveData) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogStyle +androidx.viewpager2.R$styleable: int ViewPager2_android_orientation +com.google.android.material.R$dimen: int abc_edit_text_inset_bottom_material +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator +androidx.appcompat.R$style: int Widget_AppCompat_ProgressBar androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dialog -com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context) -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language HUNGARIAN -androidx.activity.R$dimen: R$dimen() -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_19 -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource) -com.google.android.gms.base.R$styleable: int LoadingImageView_imageAspectRatioAdjust -wangdaye.com.geometricweather.R$drawable: int abc_ic_go_search_api_material -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline3 -okio.AsyncTimeout: okio.Source source(okio.Source) -com.jaredrummler.android.colorpicker.R$attr: int actionProviderClass -com.github.rahatarmanahmed.cpv.CircularProgressView: void startAnimation() -androidx.customview.R$id: int action_container -wangdaye.com.geometricweather.R$id: int widget_day_title -io.reactivex.internal.subscriptions.SubscriptionArbiter: void drainLoop() -cyanogenmod.hardware.IThermalListenerCallback: void onThermalChanged(int) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_tooltipText -androidx.preference.ListPreference -com.jaredrummler.android.colorpicker.R$attr: int fontProviderAuthority -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onError(java.lang.Throwable) -androidx.preference.R$drawable: int notification_action_background -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getType() -io.reactivex.Observable: io.reactivex.Observable intervalRange(long,long,long,long,java.util.concurrent.TimeUnit) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_focused_holo -androidx.appcompat.widget.ActionBarContextView: int getAnimatedVisibility() -androidx.appcompat.resources.R$dimen: R$dimen() -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetEnd -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onComplete() -cyanogenmod.weather.util.WeatherUtils: boolean isValidTempUnit(int) -wangdaye.com.geometricweather.R$drawable: int abc_list_pressed_holo_dark -com.jaredrummler.android.colorpicker.R$attr: int subtitleTextColor -wangdaye.com.geometricweather.R$attr: int bottomNavigationStyle -androidx.core.R$styleable: int FontFamily_fontProviderCerts -io.reactivex.internal.util.NotificationLite$ErrorNotification: int hashCode() -com.google.android.material.R$style: int ShapeAppearanceOverlay -com.google.android.material.R$layout: int mtrl_calendar_month -com.google.android.material.R$styleable: int MenuItem_contentDescription -com.github.rahatarmanahmed.cpv.CircularProgressView$1: void onAnimationUpdate(android.animation.ValueAnimator) -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_textOff -retrofit2.http.Part -wangdaye.com.geometricweather.R$id: int graph_wrap -com.xw.repo.bubbleseekbar.R$color: int tooltip_background_light -wangdaye.com.geometricweather.R$id: int title_template -cyanogenmod.app.IProfileManager: boolean isEnabled() -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleContentDescription -android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: long index -androidx.appcompat.R$anim: int abc_popup_exit -com.baidu.location.indoor.mapversion.c.c$b: java.lang.String a -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.R$layout: int cpv_preference_square -androidx.cardview.widget.CardView: boolean getUseCompatPadding() -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object readKey(android.database.Cursor,int) -com.xw.repo.bubbleseekbar.R$id: int submit_area -wangdaye.com.geometricweather.R$attr: int tabGravity -androidx.appcompat.R$dimen: int abc_button_inset_horizontal_material -cyanogenmod.profiles.LockSettings: void writeXmlString(java.lang.StringBuilder,android.content.Context) -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: BodyObservable$BodyObserver(io.reactivex.Observer) -androidx.appcompat.R$styleable: int Toolbar_contentInsetLeft -com.turingtechnologies.materialscrollbar.R$color: int highlighted_text_material_light -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode AUTOMATIC -okio.Buffer: long indexOfElement(okio.ByteString) -android.support.v4.app.INotificationSideChannel$Stub$Proxy -james.adaptiveicon.R$layout: int abc_search_dropdown_item_icons_2line -com.google.android.material.R$dimen: int mtrl_calendar_text_input_padding_top -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat -okhttp3.Protocol: okhttp3.Protocol SPDY_3 -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Longitude -androidx.appcompat.R$styleable: int MenuItem_android_onClick -okhttp3.internal.http2.Settings: okhttp3.internal.http2.Settings set(int,int) -androidx.core.R$styleable: int FontFamily_fontProviderFetchTimeout -com.google.android.material.R$styleable: int Layout_layout_constraintDimensionRatio -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_black -wangdaye.com.geometricweather.R$attr: int horizontalOffset -wangdaye.com.geometricweather.R$attr: int seekBarIncrement -com.turingtechnologies.materialscrollbar.R$id: int icon_group -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_textLocale -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String locationKey -wangdaye.com.geometricweather.R$styleable: int Constraint_animate_relativeTo -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void dispose() -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_9 +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: android.content.res.ColorStateList getSupportBackgroundTintList() +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder followRedirects(boolean) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature Temperature +androidx.preference.R$color: int abc_primary_text_material_light +com.bumptech.glide.R$dimen: int compat_button_inset_horizontal_material +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Empty +androidx.preference.R$styleable: int MenuView_android_itemTextAppearance +androidx.preference.R$styleable: int ActionBar_backgroundSplit +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality() +com.bumptech.glide.integration.okhttp.R$dimen: int notification_large_icon_width +androidx.constraintlayout.widget.R$attr: int listPreferredItemHeightSmall +james.adaptiveicon.R$styleable: int ActionBar_logo +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +androidx.preference.CheckBoxPreference: CheckBoxPreference(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastVerticalStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: double Value +com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a f +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.WeatherEntity,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: void setBrands(java.util.List) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen +com.amap.api.location.AMapLocationQualityReport: void setLocationMode(com.amap.api.location.AMapLocationClientOption$AMapLocationMode) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +okhttp3.internal.http2.Hpack$Writer: okhttp3.internal.http2.Header[] dynamicTable +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +com.google.android.material.R$styleable: int MenuGroup_android_enabled +android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.google.android.material.R$drawable: int material_ic_menu_arrow_down_black_24dp +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitationDuration +androidx.constraintlayout.widget.R$attr: int colorPrimaryDark +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_arrowHeadLength +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent LOCKSCREEN +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILES_STATE +wangdaye.com.geometricweather.R$attr: int tabIndicatorColor +com.google.android.material.button.MaterialButton: int getTextWidth() +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor GREY +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_normal +james.adaptiveicon.R$attr: int actionBarWidgetTheme +com.google.android.material.R$styleable: int StateListDrawable_android_enterFadeDuration +androidx.hilt.work.R$dimen: int notification_media_narrow_margin +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void dispose() +com.google.android.material.bottomsheet.BottomSheetBehavior$SavedState +wangdaye.com.geometricweather.R$attr: int passwordToggleTint +androidx.lifecycle.AbstractSavedStateViewModelFactory: android.os.Bundle mDefaultArgs +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayStyle +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginStart(int) +wangdaye.com.geometricweather.R$drawable: int abc_dialog_material_background +com.google.android.material.R$attr: int colorOnPrimary +androidx.preference.R$dimen: int abc_dialog_min_width_major com.google.android.material.R$styleable: int AlertDialog_showTitle -wangdaye.com.geometricweather.R$string: int abc_searchview_description_search -androidx.viewpager.widget.ViewPager: int getCurrentItem() -wangdaye.com.geometricweather.R$string: int real_feel_shade_temperature -androidx.transition.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$dimen: int daily_trend_item_height -com.google.android.material.R$attr: int chipIconSize -com.google.android.material.internal.ParcelableSparseArray: android.os.Parcelable$Creator CREATOR -androidx.recyclerview.widget.RecyclerView: void setAdapter(androidx.recyclerview.widget.RecyclerView$Adapter) -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setOffset(boolean) -com.google.android.material.R$dimen: int mtrl_card_checked_icon_size -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Subtitle1 -cyanogenmod.themes.ThemeManager$ThemeChangeListener -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -wangdaye.com.geometricweather.R$id: int widget_day_subtitle -okio.Buffer: byte[] readByteArray() -androidx.viewpager.R$drawable: int notification_icon_background -androidx.constraintlayout.widget.R$attr: int actionModeCopyDrawable -com.google.android.material.appbar.AppBarLayout$Behavior: AppBarLayout$Behavior(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$drawable: int live_wallpaper_thumbnail -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,boolean) -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Small -android.didikee.donate.R$drawable: int abc_list_selector_disabled_holo_dark -io.reactivex.Observable: io.reactivex.Observable startWithArray(java.lang.Object[]) -com.jaredrummler.android.colorpicker.R$attr: int viewInflaterClass -androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -james.adaptiveicon.R$dimen: int abc_dropdownitem_text_padding_left -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType[] a -okio.Buffer: long readLongLe() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.Date pubTime -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeDegreeDayTemperature() -com.google.android.material.R$style: int TextAppearance_AppCompat_Menu -okhttp3.Request: java.lang.String header(java.lang.String) -okhttp3.internal.connection.RealConnection: void connect(int,int,int,int,boolean,okhttp3.Call,okhttp3.EventListener) -retrofit2.http.Url -androidx.loader.R$styleable: int GradientColor_android_startX -james.adaptiveicon.R$attr: int listPreferredItemHeightSmall -okhttp3.internal.ws.RealWebSocket$Message -com.google.android.material.internal.FlowLayout: int getRowCount() -androidx.hilt.work.R$style: R$style() -cyanogenmod.os.Build: java.lang.String getNameForSDKInt(int) -cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.CustomTile customTile -androidx.customview.R$style: int Widget_Compat_NotificationActionContainer -androidx.constraintlayout.widget.R$drawable: int abc_btn_default_mtrl_shape -androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotationY -com.google.android.material.R$style: int Widget_Design_FloatingActionButton -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRainPrecipitationProbability(java.lang.Float) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarStyle -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: MinutelyEntityDao(org.greenrobot.greendao.internal.DaoConfig) -com.bumptech.glide.R$layout: int notification_action -androidx.fragment.R$id: int tag_screen_reader_focusable -com.google.android.material.R$id: int list_item -cyanogenmod.app.LiveLockScreenInfo$1: java.lang.Object[] newArray(int) -com.baidu.location.e.l$b: java.lang.String b(com.baidu.location.e.l$b) -androidx.constraintlayout.widget.R$attr: int flow_wrapMode -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_thumb_text -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ProgressBar_Horizontal -james.adaptiveicon.R$drawable: int notify_panel_notification_icon_bg -android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogStyle -androidx.hilt.work.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$attr: int widgetLayout -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.disposables.Disposable upstream -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowColor -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemRippleColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemTextColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: double Value -james.adaptiveicon.R$dimen: int notification_small_icon_size_as_large -com.google.android.material.R$color: int abc_tint_switch_track -com.xw.repo.bubbleseekbar.R$attr: int dropdownListPreferredItemHeight -com.google.android.material.R$attr: int windowActionModeOverlay -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_seekBarIncrement -com.google.android.material.R$dimen: int mtrl_snackbar_margin -org.greenrobot.greendao.AbstractDao: AbstractDao(org.greenrobot.greendao.internal.DaoConfig,org.greenrobot.greendao.AbstractDaoSession) -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int) -wangdaye.com.geometricweather.R$attr: int placeholderText -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginRight -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_margin -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Body_Text -androidx.preference.R$attr: int singleLineTitle -com.google.android.material.R$styleable: int Slider_android_valueTo -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.fuseable.SimplePlainQueue queue -okio.RealBufferedSource: boolean request(long) -okio.Pipe$PipeSink: void write(okio.Buffer,long) -com.google.android.material.R$id: int async -androidx.appcompat.R$styleable: int ActionBar_backgroundSplit -androidx.appcompat.R$string: int abc_action_bar_up_description -james.adaptiveicon.R$dimen: int abc_text_size_title_material -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconTint -james.adaptiveicon.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -io.reactivex.Observable: io.reactivex.Observable scan(io.reactivex.functions.BiFunction) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listMenuViewStyle -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void drainLoop() -com.google.android.material.R$color: int abc_primary_text_material_light -james.adaptiveicon.R$color: int abc_btn_colored_borderless_text_material -com.google.android.material.R$styleable: int MotionLayout_showPaths -wangdaye.com.geometricweather.R$attr: int autoSizeStepGranularity -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setValue(java.util.List) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getRealFeelShaderTemperature() -wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_max -okhttp3.Request$Builder: okhttp3.Request$Builder delete(okhttp3.RequestBody) -wangdaye.com.geometricweather.R$id: int material_clock_display -okhttp3.Cookie: java.lang.String name -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: double Value -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline4 -cyanogenmod.power.IPerformanceManager$Stub -cyanogenmod.externalviews.KeyguardExternalView$11: KeyguardExternalView$11(cyanogenmod.externalviews.KeyguardExternalView,float) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextStyle -com.google.gson.stream.JsonReader: void checkLenient() -com.turingtechnologies.materialscrollbar.R$attr: int chipCornerRadius -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Toolbar -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItem -androidx.appcompat.R$style: int Base_V26_Theme_AppCompat -okhttp3.internal.ws.WebSocketReader: void readControlFrame() -com.bumptech.glide.integration.okhttp.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$string: int common_google_play_services_updating_text -com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchPreferenceCompat -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_default -okhttp3.internal.cache.DiskLruCache: java.lang.String CLEAN -cyanogenmod.weather.WeatherInfo$DayForecast: int mConditionCode -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: int phenomenonId -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport parent -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTint -com.amap.api.location.AMapLocation: java.lang.String n(com.amap.api.location.AMapLocation,java.lang.String) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setStreet_number(java.lang.String) -com.google.android.material.R$styleable: int BottomAppBar_fabCradleMargin -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean registerThermalListener(cyanogenmod.hardware.IThermalListenerCallback) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyleSmall -com.google.android.material.R$style: int Base_Widget_MaterialComponents_CheckedTextView -wangdaye.com.geometricweather.R$array: int distance_units -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_horizontal_padding -androidx.appcompat.resources.R$attr: int fontProviderCerts -androidx.hilt.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.R$styleable: int Preference_allowDividerAbove -cyanogenmod.externalviews.KeyguardExternalViewProviderService: void onCreate() -androidx.constraintlayout.widget.R$attr: int editTextBackground +androidx.activity.R$layout: int notification_template_part_time +james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +androidx.appcompat.R$id: int accessibility_custom_action_12 +androidx.hilt.work.R$id: int time +retrofit2.Retrofit: java.util.Map serviceMethodCache +wangdaye.com.geometricweather.R$color: int notification_background_o +okio.AsyncTimeout: okio.AsyncTimeout next +com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonCompat +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit valueOf(java.lang.String) +com.google.android.gms.location.ActivityTransition +androidx.preference.R$attr: int showAsAction +com.google.android.material.appbar.AppBarLayout: void removeOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$BaseOnOffsetChangedListener) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: int quality +com.bumptech.glide.integration.okhttp.R$attr: int keylines +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: boolean eager +okhttp3.internal.http2.Hpack: okhttp3.internal.http2.Header[] STATIC_HEADER_TABLE +androidx.preference.R$styleable: int MenuGroup_android_checkableBehavior +androidx.constraintlayout.utils.widget.ImageFilterView: void setRoundPercent(float) +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableEnd +android.didikee.donate.R$attr: int textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitationProbability +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit MUGPCUM +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginTop +androidx.preference.R$style: int Theme_AppCompat_Light_DarkActionBar +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNo2() +wangdaye.com.geometricweather.background.polling.basic.ForegroundUpdateService +androidx.constraintlayout.widget.R$attr: int drawableBottomCompat +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long readKey(android.database.Cursor,int) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onError(java.lang.Throwable) +okio.AsyncTimeout: AsyncTimeout() +cyanogenmod.providers.WeatherContract$WeatherColumns: WeatherContract$WeatherColumns() +android.didikee.donate.R$styleable: int SearchView_submitBackground +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,java.util.concurrent.Callable) +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float ceiling +wangdaye.com.geometricweather.R$string: int key_weather_source +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_icon_size +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_margin +com.google.android.material.R$styleable: int TextInputLayout_placeholderText +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Runnable actual +cyanogenmod.weatherservice.WeatherProviderService: android.os.Handler mHandler +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalGap +com.amap.api.location.UmidtokenInfo: boolean c +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_prompt +androidx.appcompat.R$attr: int listLayout +com.github.rahatarmanahmed.cpv.R$attr: int cpv_maxProgress +com.xw.repo.bubbleseekbar.R$attr: int backgroundSplit +wangdaye.com.geometricweather.R$xml: int icon_provider_config +wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_bottom_end +wangdaye.com.geometricweather.R$attr: int tabInlineLabel +okio.ForwardingTimeout: long timeoutNanos() +androidx.work.R$bool: int enable_system_foreground_service_default +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Type +com.google.android.material.R$dimen: int mtrl_textinput_box_stroke_width_default +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: java.lang.String English +wangdaye.com.geometricweather.R$dimen: int design_snackbar_max_width +com.google.android.material.R$attr: int chipSpacingHorizontal +retrofit2.ParameterHandler$1: retrofit2.ParameterHandler this$0 +com.google.android.material.R$attr: int pivotAnchor +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display2 +io.reactivex.internal.observers.DeferredScalarDisposable +com.google.android.material.R$dimen: int cardview_default_radius +okhttp3.HttpUrl: int port() +io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver INSTANCE +com.baidu.location.indoor.mapversion.c.a$d: double a(double) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: double Value +com.google.android.material.R$styleable: int Layout_layout_constraintEnd_toStartOf +com.jaredrummler.android.colorpicker.R$attr: int buttonBarStyle +androidx.preference.R$attr: int dialogCornerRadius +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorPrimary +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_63 +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_background_transition_holo_dark +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getUnitId() +androidx.appcompat.R$styleable: int PopupWindow_overlapAnchor +cyanogenmod.weatherservice.ServiceRequestResult: java.util.List mLocationLookupList +com.google.android.material.R$id: int NO_DEBUG +com.turingtechnologies.materialscrollbar.R$id: int progress_horizontal +com.jaredrummler.android.colorpicker.R$style: int Base_V28_Theme_AppCompat_Light +com.google.android.material.R$attr: int showText +androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_android_alpha +androidx.preference.R$styleable: int ButtonBarLayout_allowStacking +androidx.hilt.lifecycle.R$styleable: int GradientColorItem_android_offset +com.jaredrummler.android.colorpicker.R$integer: int config_tooltipAnimTime +wangdaye.com.geometricweather.R$drawable: int shortcuts_hail +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onStart() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: int status +james.adaptiveicon.R$attr: int maxButtonHeight +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintStart_toEndOf +wangdaye.com.geometricweather.R$style: int ThemeOverlay_Design_TextInputEditText +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country Country +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_minHeight +androidx.viewpager2.R$id: int accessibility_custom_action_31 +androidx.appcompat.R$styleable: int DrawerArrowToggle_barLength +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_visible +com.turingtechnologies.materialscrollbar.R$attr: int iconTintMode +androidx.appcompat.resources.R$styleable: int GradientColor_android_gradientRadius +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +com.jaredrummler.android.colorpicker.R$attr: int switchPadding +androidx.preference.EditTextPreferenceDialogFragmentCompat: EditTextPreferenceDialogFragmentCompat() +cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING_START_VOLUME +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_wrapMode +com.google.android.material.R$styleable: int CardView_contentPadding +androidx.coordinatorlayout.R$color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: java.lang.String Localized +com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context,android.util.AttributeSet,int) +com.amap.api.location.UmidtokenInfo$1 +wangdaye.com.geometricweather.R$styleable: int LoadingImageView_circleCrop +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SearchView_ActionBar +com.google.android.material.R$attr: int collapseIcon +com.google.android.material.R$styleable: int MotionLayout_layoutDescription +com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusBottomStart +wangdaye.com.geometricweather.R$attr: int actionBarTheme +android.didikee.donate.R$dimen: int notification_small_icon_size_as_large +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl mImpl +cyanogenmod.externalviews.KeyguardExternalView: void onScreenTurnedOff() +androidx.customview.R$styleable: int GradientColor_android_tileMode +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$drawable: int material_ic_calendar_black_24dp +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String MobileLink +wangdaye.com.geometricweather.R$attr: int behavior_saveFlags +okhttp3.internal.http2.Hpack$Writer: void adjustDynamicTableByteCount() +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +android.didikee.donate.R$style: int TextAppearance_AppCompat_Medium_Inverse +okhttp3.internal.http2.PushObserver$1: boolean onData(int,okio.BufferedSource,int,boolean) +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks mKeyguardExternalViewCallbacks +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void dispose() +com.google.android.material.R$styleable: int TabLayout_tabIndicator +com.google.android.material.R$styleable: int MenuItem_showAsAction +androidx.customview.R$drawable: int notification_template_icon_bg +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.IWeatherServiceProviderChangeListener mProviderChangeListener +android.didikee.donate.R$color: int button_material_light +com.turingtechnologies.materialscrollbar.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.R$attr: int layout_goneMarginLeft +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme_Light +com.google.android.material.R$attr: int actionButtonStyle +james.adaptiveicon.R$dimen: int tooltip_margin +com.google.android.material.R$attr: int thumbTint +androidx.appcompat.widget.AppCompatTextView: void setSupportCompoundDrawablesTintMode(android.graphics.PorterDuff$Mode) +com.xw.repo.bubbleseekbar.R$style: int Base_V23_Theme_AppCompat_Light +com.amap.api.fence.DistrictItem: java.lang.String getAdcode() +androidx.fragment.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_timeIcon +androidx.constraintlayout.widget.R$attr: int textAppearanceSearchResultSubtitle +android.didikee.donate.R$id: int icon_group +com.amap.api.location.AMapLocationClient: java.lang.String getVersion() +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegments(java.lang.String) +wangdaye.com.geometricweather.R$attr: int region_widthMoreThan +androidx.swiperefreshlayout.R$id: int icon +wangdaye.com.geometricweather.R$anim: int fragment_main_pop_enter +james.adaptiveicon.R$dimen: int abc_dialog_min_width_major +okio.Buffer: okio.BufferedSink writeByte(int) +androidx.transition.R$dimen: int compat_notification_large_icon_max_height +com.jaredrummler.android.colorpicker.R$color: int material_deep_teal_500 +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_android_minHeight +androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat_Dark +androidx.preference.R$attr: int actionModeCopyDrawable +androidx.constraintlayout.widget.R$styleable: int[] TextAppearance +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_width_minor +com.jaredrummler.android.colorpicker.R$layout: int preference_information_material +wangdaye.com.geometricweather.R$styleable: int StateListDrawableItem_android_drawable +retrofit2.Platform: Platform(boolean) +androidx.hilt.lifecycle.R$dimen: int notification_large_icon_width +cyanogenmod.externalviews.IExternalViewProvider$Stub: android.os.IBinder asBinder() +cyanogenmod.weatherservice.ServiceRequestResult$1: cyanogenmod.weatherservice.ServiceRequestResult[] newArray(int) +com.amap.api.location.APSServiceBase +james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_CheckBox +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSteps +androidx.constraintlayout.utils.widget.ImageFilterView: void setCrossfade(float) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_UnelevatedButton +androidx.appcompat.widget.AppCompatTextView: androidx.core.text.PrecomputedTextCompat$Params getTextMetricsParamsCompat() +androidx.preference.R$anim: int fragment_fast_out_extra_slow_in +cyanogenmod.app.ProfileManager: ProfileManager(android.content.Context) +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer getCloudCover() +wangdaye.com.geometricweather.R$styleable: int State_android_id +androidx.customview.R$id: int tag_transition_group +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom +wangdaye.com.geometricweather.R$drawable: int abc_ic_go_search_api_material +wangdaye.com.geometricweather.R$dimen: int abc_floating_window_z +wangdaye.com.geometricweather.R$array: int automatic_refresh_rates +com.google.android.material.R$layout: int test_toolbar_surface +androidx.lifecycle.LifecycleRegistry$ObserverWithState: void dispatchEvent(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.R$styleable: int Constraint_android_orientation +wangdaye.com.geometricweather.R$string: int translator +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Menu +androidx.appcompat.widget.ActionMenuPresenter$ActionButtonSubmenu +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ImageButton +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Integer getAqiIndex() +okhttp3.internal.http1.Http1Codec: int STATE_OPEN_RESPONSE_BODY +androidx.preference.R$dimen: int notification_content_margin_start +androidx.appcompat.R$drawable: int notification_bg +androidx.core.R$styleable: int[] FontFamilyFont +androidx.preference.R$style: int Preference_SeekBarPreference_Material +com.google.android.material.button.MaterialButton: void setShouldDrawSurfaceColorStroke(boolean) +wangdaye.com.geometricweather.R$dimen: int abc_dialog_padding_material +com.google.gson.stream.JsonToken +androidx.lifecycle.FullLifecycleObserverAdapter: androidx.lifecycle.FullLifecycleObserver mFullLifecycleObserver +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean access$602(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginTop +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_TEMPERATURE +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_second_track_color +cyanogenmod.providers.CMSettings$Secure: int getInt(android.content.ContentResolver,java.lang.String,int) +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +android.didikee.donate.R$styleable: int TextAppearance_android_textColorHint +okhttp3.Authenticator: okhttp3.Request authenticate(okhttp3.Route,okhttp3.Response) +com.google.android.material.R$styleable: int TextInputLayout_helperTextTextAppearance +com.google.android.material.R$attr: int buttonPanelSideLayout +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +android.support.v4.os.IResultReceiver$Stub$Proxy +com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$anim: int abc_popup_exit +io.reactivex.internal.observers.InnerQueuedObserver: int fusionMode +okhttp3.internal.http2.Http2Reader$ContinuationSource: long read(okio.Buffer,long) +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMenuView +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_focusable +wangdaye.com.geometricweather.R$id: int mtrl_card_checked_layer_id +androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingRight +com.turingtechnologies.materialscrollbar.CustomIndicator: int getIndicatorHeight() +okhttp3.OkHttpClient$1: okhttp3.internal.connection.RouteDatabase routeDatabase(okhttp3.ConnectionPool) +wangdaye.com.geometricweather.R$id: int star_2 +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton +cyanogenmod.hardware.CMHardwareManager: boolean setVibratorIntensity(int) +com.google.android.material.R$id: int accessibility_custom_action_2 +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: java.lang.Integer proba6H +com.amap.api.fence.GeoFence: int ADDGEOFENCE_SUCCESS +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao getChineseCityEntityDao() +wangdaye.com.geometricweather.R$attr: int cpv_sliderColor +androidx.preference.R$styleable: int AppCompatTheme_actionModeCutDrawable +androidx.transition.R$color +androidx.constraintlayout.widget.R$drawable: int abc_edit_text_material +io.reactivex.Observable: io.reactivex.Observable doAfterTerminate(io.reactivex.functions.Action) +androidx.legacy.coreutils.R$drawable: int notification_bg_low +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +androidx.constraintlayout.widget.R$id: int multiply +james.adaptiveicon.R$dimen: int abc_action_bar_overflow_padding_start_material +wangdaye.com.geometricweather.R$layout: int notification_action_tombstone +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_keylines +com.jaredrummler.android.colorpicker.R$attr: int actionModeCloseButtonStyle +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: java.lang.Float windChill wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float rainPrecipitation -cyanogenmod.weather.WeatherInfo$DayForecast: double getLow() -wangdaye.com.geometricweather.R$id: int image -okhttp3.Request$Builder: okhttp3.Request$Builder tag(java.lang.Object) -cyanogenmod.app.ProfileGroup: java.lang.String mName -com.baidu.location.indoor.mapversion.c.c$b: java.lang.String g -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: java.util.concurrent.atomic.AtomicReference upstream -io.reactivex.internal.subscribers.StrictSubscriber: void onNext(java.lang.Object) -retrofit2.Retrofit: retrofit2.Retrofit$Builder newBuilder() -com.turingtechnologies.materialscrollbar.R$style: int Platform_V25_AppCompat -com.google.android.material.R$layout: int text_view_with_line_height_from_layout -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: ExternalViewProviderService$Provider$ProviderImpl$1(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -androidx.hilt.work.R$id: int accessibility_custom_action_17 -okhttp3.WebSocket: okhttp3.Request request() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position position -com.google.android.material.progressindicator.ProgressIndicator: int getTrackColor() -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat -com.google.android.material.textview.MaterialTextView -okhttp3.Dispatcher: int getMaxRequestsPerHost() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display3 -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type getOwnerType() -androidx.hilt.work.R$id: int accessibility_custom_action_20 -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -androidx.appcompat.widget.Toolbar: void setNavigationOnClickListener(android.view.View$OnClickListener) -cyanogenmod.weather.WeatherLocation$Builder -wangdaye.com.geometricweather.R$styleable: int Constraint_drawPath -com.google.android.material.R$style: int TextAppearance_AppCompat_Large_Inverse -com.google.android.material.R$styleable: int Toolbar_contentInsetLeft -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain rain -com.xw.repo.bubbleseekbar.R$id: int content -okhttp3.internal.cache.DiskLruCache: long size() -androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context,android.util.AttributeSet) -okhttp3.internal.http2.Http2: byte TYPE_PUSH_PROMISE -okhttp3.Request$Builder: Request$Builder(okhttp3.Request) -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String key() -wangdaye.com.geometricweather.R$string: int key_view_type -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.R$drawable: int notif_temp_49 -wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -androidx.appcompat.R$integer: R$integer() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_COLOR_VALIDATOR +androidx.recyclerview.R$styleable: int ColorStateListItem_android_color +james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Light +androidx.constraintlayout.widget.R$styleable: int[] CustomAttribute +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onStop() +androidx.preference.R$id: int accessibility_custom_action_18 +androidx.appcompat.resources.R$string: int status_bar_notification_info_overflow +com.jaredrummler.android.colorpicker.ColorPickerView: void setOnColorChangedListener(com.jaredrummler.android.colorpicker.ColorPickerView$OnColorChangedListener) +androidx.vectordrawable.animated.R$id: int icon_group +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +cyanogenmod.themes.ThemeChangeRequest$Builder: ThemeChangeRequest$Builder() +james.adaptiveicon.R$attr: int windowFixedHeightMajor +androidx.preference.R$dimen: int fastscroll_minimum_range +com.turingtechnologies.materialscrollbar.R$attr: int trackTintMode +androidx.activity.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: java.lang.String Unit +androidx.appcompat.R$attr: int autoSizeMaxTextSize +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: AccuCurrentResult$Visibility() +com.google.gson.stream.JsonReader: int NUMBER_CHAR_NONE +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getWindowAnimations() +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline2 +wangdaye.com.geometricweather.R$style: int title_text +wangdaye.com.geometricweather.R$attr: int constraintSetEnd +wangdaye.com.geometricweather.R$attr: int thumbElevation +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintTextAppearance +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_orientation +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean add(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) +androidx.constraintlayout.widget.R$id: int edit_query +com.google.android.material.button.MaterialButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.viewpager2.R$id: int notification_main_column +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: int capacityHint +james.adaptiveicon.R$styleable: int AppCompatTheme_seekBarStyle +io.reactivex.internal.util.VolatileSizeArrayList: void add(int,java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_48dp +androidx.appcompat.R$drawable: int abc_ic_arrow_drop_right_black_24dp +wangdaye.com.geometricweather.R$layout: int activity_card_display_manage +cyanogenmod.app.CustomTile$ExpandedItem$1 +androidx.core.R$color: int notification_action_color_filter +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver +com.xw.repo.bubbleseekbar.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_18 +androidx.loader.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_android_background +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_percent +okio.RealBufferedSink: okio.BufferedSink writeLongLe(long) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Toolbar +androidx.swiperefreshlayout.R$drawable: R$drawable() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionMode +androidx.preference.R$attr: int activityChooserViewStyle +androidx.work.R$id: int action_container +wangdaye.com.geometricweather.R$attr: int tabBackground +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display3 +okhttp3.internal.cache.CacheInterceptor: okhttp3.Response cacheWritingResponse(okhttp3.internal.cache.CacheRequest,okhttp3.Response) +wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_big_view +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setOnceLocationLatest(boolean) +com.google.android.material.appbar.AppBarLayout: void setTargetElevation(float) +retrofit2.HttpServiceMethod: HttpServiceMethod(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter) +androidx.core.R$dimen: int notification_main_column_padding_top +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.hilt.work.R$bool +androidx.lifecycle.FullLifecycleObserverAdapter$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$Event +com.google.android.material.slider.BaseSlider: void setHaloTintList(android.content.res.ColorStateList) +androidx.hilt.work.R$bool: int enable_system_foreground_service_default +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float ice +com.google.android.material.R$styleable: int ConstraintSet_layout_constrainedHeight +okhttp3.Request: java.lang.String toString() +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onNext(java.lang.Object) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric Metric +android.didikee.donate.R$attr: int buttonBarStyle +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setForecastDaily(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean) +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog +androidx.lifecycle.ProcessLifecycleOwner$2: void onCreate() +androidx.hilt.work.R$dimen: int compat_control_corner_material +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_enqueueLiveLockScreen +okhttp3.internal.cache.DiskLruCache: okio.BufferedSink journalWriter +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String so2Desc +com.turingtechnologies.materialscrollbar.R$color: int mtrl_scrim_color +wangdaye.com.geometricweather.R$id: int item_weather_icon_image +android.support.v4.os.ResultReceiver$MyRunnable: android.os.Bundle mResultData +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_83 +androidx.appcompat.R$drawable: int abc_ic_clear_material +android.didikee.donate.R$attr: int indeterminateProgressStyle +okhttp3.MultipartBody: okhttp3.MediaType FORM +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMargin +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$color: int weather_source_cn +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf +com.google.android.material.R$styleable: int Transition_android_id +android.didikee.donate.R$style: int Widget_AppCompat_RatingBar_Indicator +androidx.activity.R$id: int notification_background +okio.BufferedSource: long indexOf(byte) +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored +com.google.android.material.R$dimen: int mtrl_btn_text_btn_padding_right +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_DOTS +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline5 +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String getEffectiveTldPlusOne(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int navigationIcon +android.didikee.donate.R$styleable: int AppCompatTheme_actionButtonStyle +androidx.appcompat.R$dimen: int abc_switch_padding +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int LOW_NOTIFICATION_STATE +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayoutStates +androidx.preference.R$styleable: int AppCompatTheme_checkboxStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_today_stroke +com.jaredrummler.android.colorpicker.R$attr: int progressBarStyle +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: java.lang.String[] getPermissions() +wangdaye.com.geometricweather.R$dimen: int compat_control_corner_material +com.google.android.material.chip.Chip: void setTextStartPaddingResource(int) +wangdaye.com.geometricweather.R$color: int lightPrimary_1 +com.amap.api.location.AMapLocation: double t +androidx.preference.R$styleable: int Toolbar_popupTheme +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_addNotificationGroup +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMode +com.jaredrummler.android.colorpicker.R$color: int dim_foreground_disabled_material_light +com.google.android.material.R$attr: int tabStyle +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf +cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getActiveProfile() +wangdaye.com.geometricweather.R$attr: int materialCalendarMonthNavigationButton +retrofit2.RequestBuilder: void addFormField(java.lang.String,java.lang.String,boolean) +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose[] a +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RealFeelShaderTemperature +com.google.android.material.R$attr: int listChoiceIndicatorMultipleAnimated +com.bumptech.glide.R$dimen: int notification_large_icon_width +androidx.drawerlayout.R$drawable: int notification_action_background +android.didikee.donate.R$style: int TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.R$styleable: int[] AlertDialog +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility +android.didikee.donate.R$attr: int initialActivityCount +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +okhttp3.Connection: java.net.Socket socket() +okhttp3.Response$Builder: okhttp3.Response build() +cyanogenmod.app.IPartnerInterface$Stub$Proxy: boolean setZenModeWithDuration(int,long) +wangdaye.com.geometricweather.R$string: int widget_day_week +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetRight +okhttp3.internal.http.HttpDate$1: java.text.DateFormat initialValue() +com.google.android.material.R$color: int mtrl_chip_text_color +com.baidu.location.e.h$b: com.baidu.location.e.h$b[] values() +wangdaye.com.geometricweather.R$styleable: int ActionBar_navigationMode +com.google.android.material.R$attr: int actionBarPopupTheme +androidx.appcompat.widget.ActionMenuView: void setPresenter(androidx.appcompat.widget.ActionMenuPresenter) +okio.GzipSource: byte SECTION_DONE +androidx.viewpager.widget.ViewPager: void removeOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) +com.github.rahatarmanahmed.cpv.CircularProgressView$6: CircularProgressView$6(com.github.rahatarmanahmed.cpv.CircularProgressView) +cyanogenmod.externalviews.ExternalViewProviderService: boolean DEBUG +cyanogenmod.themes.IThemeService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginTop +james.adaptiveicon.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +com.baidu.location.e.l$b: int d(com.baidu.location.e.l$b) +com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Light +okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part create(okhttp3.RequestBody) +androidx.drawerlayout.R$styleable: int GradientColorItem_android_offset +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingLeft +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnAttachStateChangeListener(com.google.android.material.snackbar.BaseTransientBottomBar$OnAttachStateChangeListener) +wangdaye.com.geometricweather.R$dimen: int cpv_dialog_preview_height +androidx.legacy.coreutils.R$dimen: R$dimen() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric() +com.google.android.material.R$drawable: int abc_list_longpressed_holo +cyanogenmod.themes.IThemeService: void requestThemeChangeUpdates(cyanogenmod.themes.IThemeChangeListener) +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String dn +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: boolean isDisposed() +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +androidx.preference.SwitchPreferenceCompat: SwitchPreferenceCompat(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$layout: int abc_action_menu_item_layout +retrofit2.RequestFactory$Builder: boolean gotQuery +androidx.constraintlayout.widget.R$color: int abc_btn_colored_borderless_text_material +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest build() +io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean isEmpty() +wangdaye.com.geometricweather.R$string: int wind_4 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getCo() +com.bumptech.glide.Priority: com.bumptech.glide.Priority HIGH +com.google.android.material.R$attr: int multiChoiceItemLayout +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveOffset +james.adaptiveicon.R$id: int action_bar +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$FramingSource source +wangdaye.com.geometricweather.R$styleable: int Preference_shouldDisableView +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_spinnerStyle +androidx.constraintlayout.widget.R$attr: int flow_lastVerticalStyle +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircle +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerX +com.turingtechnologies.materialscrollbar.R$attr: int collapseIcon +android.didikee.donate.R$styleable: int SearchView_commitIcon +wangdaye.com.geometricweather.R$attr: int tabPaddingTop +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: int TRANSACTION_createExternalView_0 +androidx.viewpager2.R$drawable: int notification_template_icon_bg +androidx.appcompat.resources.R$id: int accessibility_action_clickable_span +androidx.appcompat.widget.AppCompatCheckBox: void setSupportBackgroundTintList(android.content.res.ColorStateList) +com.jaredrummler.android.colorpicker.R$style: int Widget_Support_CoordinatorLayout +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode getInstance(java.lang.String) +wangdaye.com.geometricweather.R$id: int withText +androidx.appcompat.R$id: int activity_chooser_view_content +com.google.android.material.R$layout: int mtrl_calendar_days_of_week +cyanogenmod.weather.RequestInfo: java.lang.String getCityName() +okhttp3.internal.http2.Http2Connection$PingRunnable: okhttp3.internal.http2.Http2Connection this$0 +cyanogenmod.profiles.LockSettings: LockSettings(android.os.Parcel) +androidx.swiperefreshlayout.R$id: int italic +android.didikee.donate.R$styleable: int[] AppCompatTextView +androidx.constraintlayout.widget.R$styleable: int[] GradientColorItem +com.xw.repo.bubbleseekbar.R$color: int secondary_text_disabled_material_dark +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver +androidx.preference.R$styleable: int[] PreferenceGroup +okhttp3.logging.HttpLoggingInterceptor: java.nio.charset.Charset UTF8 +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +androidx.customview.R$id: int normal +cyanogenmod.os.Concierge$ParcelInfo: int mParcelableSize +com.amap.api.location.AMapLocationClientOption: boolean u +com.google.android.material.R$dimen: int disabled_alpha_material_dark +cyanogenmod.providers.CMSettings$Secure: int getIntForUser(android.content.ContentResolver,java.lang.String,int) +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_mode_bar +androidx.lifecycle.ComputableLiveData$2: void run() +wangdaye.com.geometricweather.R$styleable: int Chip_chipStrokeColor +androidx.transition.R$dimen: R$dimen() +androidx.loader.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String name +okio.Buffer: okio.BufferedSink write(okio.Source,long) +androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Line2 +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_go_search_api_material +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onComplete() +androidx.core.widget.NestedScrollView: int getNestedScrollAxes() +androidx.cardview.widget.CardView: float getRadius() +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode OVERRIDE +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SPANISH +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.ObservableSource second +com.google.android.material.R$dimen: int notification_large_icon_width +james.adaptiveicon.R$attr: int actionModeSplitBackground +androidx.appcompat.widget.SwitchCompat: void setThumbTextPadding(int) +androidx.preference.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +okhttp3.OkHttpClient: java.util.List connectionSpecs() +com.google.android.material.textfield.TextInputLayout: void setErrorTextColor(android.content.res.ColorStateList) +android.didikee.donate.R$drawable: int abc_edit_text_material +okhttp3.CertificatePinner$Pin: java.lang.String toString() +wangdaye.com.geometricweather.R$attr: int endIconCheckable +com.google.android.material.card.MaterialCardView: android.graphics.drawable.Drawable getCheckedIcon() +wangdaye.com.geometricweather.R$xml: int widget_clock_day_vertical +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: java.lang.String Unit +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean isUnbounded() +android.didikee.donate.R$styleable: int AppCompatTheme_imageButtonStyle +com.amap.api.location.AMapLocationClientOption +com.google.android.material.R$styleable: int MaterialShape_shapeAppearanceOverlay +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver inner +wangdaye.com.geometricweather.R$styleable: int[] TextInputLayout +wangdaye.com.geometricweather.R$mipmap: R$mipmap() +com.xw.repo.bubbleseekbar.R$attr: int lineHeight +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +androidx.appcompat.R$styleable: int GradientColor_android_centerX +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +androidx.lifecycle.ReportFragment +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView +wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_divider +okio.BufferedSource: byte readByte() +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnClickIntent(android.app.PendingIntent) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onError(java.lang.Throwable) +androidx.appcompat.R$color: int primary_material_dark +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getDaytimeWindDegree() +okio.ForwardingSink: okio.Timeout timeout() +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_tooltipText +wangdaye.com.geometricweather.R$styleable: int Tooltip_backgroundTint +androidx.lifecycle.LiveData$LifecycleBoundObserver: LiveData$LifecycleBoundObserver(androidx.lifecycle.LiveData,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Observer) +androidx.constraintlayout.motion.widget.MotionLayout: void setInterpolatedProgress(float) +androidx.constraintlayout.widget.R$id: int split_action_bar +wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconTint +androidx.drawerlayout.R$attr +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +wangdaye.com.geometricweather.R$color: int mtrl_btn_ripple_color +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTheme +androidx.appcompat.resources.R$dimen: int compat_notification_large_icon_max_height +com.bumptech.glide.integration.okhttp.R$id: int title +io.reactivex.Observable: io.reactivex.Single toSortedList(java.util.Comparator) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_4 +okhttp3.HttpUrl: java.lang.String topPrivateDomain() +com.xw.repo.bubbleseekbar.R$styleable: int[] ColorStateListItem +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.String toString() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button +com.jaredrummler.android.colorpicker.R$attr: int adjustable +com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_linear_out_slow_in +okio.Buffer: okio.ByteString hmacSha1(okio.ByteString) +androidx.recyclerview.R$integer +androidx.work.R$dimen: int notification_action_text_size +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_content_inset_material +wangdaye.com.geometricweather.R$id: int dialog_background_location_container +androidx.preference.R$id: int action_bar_spinner +android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat +com.google.android.material.R$color: int design_default_color_secondary +androidx.appcompat.R$styleable: int TextAppearance_fontFamily +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange Past12HourRange +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableBottom +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String zh_CN +com.xw.repo.bubbleseekbar.R$attr: int backgroundStacked +wangdaye.com.geometricweather.R$styleable: int Toolbar_collapseIcon +cyanogenmod.weather.CMWeatherManager: java.util.Map mLookupNameRequestListeners +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_ACTIVE +androidx.dynamicanimation.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_width_overflow_material +wangdaye.com.geometricweather.db.entities.LocationEntity: java.util.TimeZone timeZone +okhttp3.OkHttpClient: okhttp3.Cache cache() +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardUseCompatPadding +io.reactivex.Observable: io.reactivex.Observable compose(io.reactivex.ObservableTransformer) +androidx.preference.PreferenceManager: void setOnPreferenceTreeClickListener(androidx.preference.PreferenceManager$OnPreferenceTreeClickListener) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX weather +androidx.constraintlayout.widget.R$styleable: int ActionMode_background +cyanogenmod.providers.CMSettings$3: boolean validate(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentY +android.support.v4.app.INotificationSideChannel$Stub$Proxy: void notify(java.lang.String,int,java.lang.String,android.app.Notification) +androidx.coordinatorlayout.R$styleable: int[] FontFamily +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_36dp +com.jaredrummler.android.colorpicker.R$attr: int collapseIcon +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat PREFER_RGB_565 +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: long period +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) +com.bumptech.glide.R$id: int info +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(long,java.util.concurrent.TimeUnit) +org.greenrobot.greendao.database.DatabaseOpenHelper: java.lang.String name +androidx.preference.R$string: int abc_shareactionprovider_share_with_application +androidx.vectordrawable.R$id +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked +androidx.coordinatorlayout.R$id +androidx.appcompat.widget.AppCompatEditText: void setTextClassifier(android.view.textclassifier.TextClassifier) +com.google.android.material.behavior.HideBottomViewOnScrollBehavior: HideBottomViewOnScrollBehavior(android.content.Context,android.util.AttributeSet) +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_SECURE +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$drawable: int notif_temp_54 +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_longpressed_holo +wangdaye.com.geometricweather.R$styleable: int[] Spinner +com.google.android.material.R$styleable: int ImageFilterView_brightness +com.turingtechnologies.materialscrollbar.R$id: int mtrl_child_content_container +com.jaredrummler.android.colorpicker.R$styleable: int Preference_summary +com.google.android.material.tabs.TabLayout: void setUnboundedRipple(boolean) +cyanogenmod.app.BaseLiveLockManagerService$1: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_inverse_material_dark +wangdaye.com.geometricweather.R$id: int dark +androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context,android.util.AttributeSet) +okhttp3.Request: okhttp3.CacheControl cacheControl() +wangdaye.com.geometricweather.R$id: int switch_layout +com.google.android.material.R$animator: int mtrl_fab_show_motion_spec +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: MfRainResult$Position() +com.google.android.material.R$anim: int abc_fade_in +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_bias +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: boolean isDisposed() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$styleable: int Transition_android_id +wangdaye.com.geometricweather.R$attr: int telltales_velocityMode +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_controlBackground +androidx.vectordrawable.R$id: int action_image +com.google.android.material.R$styleable: int TextInputLayout_endIconDrawable +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation build() +wangdaye.com.geometricweather.common.ui.widgets.TagView: int getUncheckedBackgroundColor() +com.google.android.material.textfield.TextInputLayout: void setErrorContentDescription(java.lang.CharSequence) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void access$600(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +com.amap.api.fence.DistrictItem: void setDistrictName(java.lang.String) +james.adaptiveicon.R$dimen: int tooltip_precise_anchor_extra_offset +okhttp3.CertificatePinner: java.util.List findMatchingPins(java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$dimen: int mtrl_fab_min_touch_target +com.bumptech.glide.integration.okhttp.R$integer +com.xw.repo.bubbleseekbar.R$style: int Platform_V25_AppCompat_Light +androidx.lifecycle.ViewModelStoreOwner: androidx.lifecycle.ViewModelStore getViewModelStore() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display3 +androidx.viewpager2.R$attr: int font +retrofit2.RequestBuilder: void addTag(java.lang.Class,java.lang.Object) +okio.RealBufferedSource: long indexOfElement(okio.ByteString) +com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipIconTint() +com.amap.api.fence.GeoFence: int ERROR_CODE_UNKNOWN +wangdaye.com.geometricweather.R$style: int Preference_CheckBoxPreference +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy +androidx.customview.R$dimen: int notification_top_pad +androidx.fragment.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric +com.xw.repo.bubbleseekbar.R$attr: int colorControlActivated +com.google.android.material.floatingactionbutton.FloatingActionButton: void setScaleX(float) +wangdaye.com.geometricweather.R$attr: int defaultDuration +androidx.constraintlayout.widget.R$id: int reverseSawtooth +com.baidu.location.e.l$b: java.lang.String a(com.baidu.location.e.l$b) +wangdaye.com.geometricweather.R$drawable: int notif_temp_96 +wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_small_material +cyanogenmod.app.StatusBarPanelCustomTile$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$styleable: int MenuItem_actionViewClass +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +okhttp3.logging.HttpLoggingInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +com.google.android.material.R$attr: int alpha +cyanogenmod.profiles.RingModeSettings$1: java.lang.Object[] newArray(int) +okio.Okio$4: java.net.Socket val$socket +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getStartIconContentDescription() +androidx.constraintlayout.widget.R$attr: int layoutDuringTransition +okio.ByteString: okio.ByteString EMPTY +com.turingtechnologies.materialscrollbar.R$attr: int chipGroupStyle +com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_selected +wangdaye.com.geometricweather.R$string: int aqi_2 +androidx.appcompat.R$dimen: int disabled_alpha_material_light +androidx.constraintlayout.widget.R$styleable: int SearchView_android_maxWidth +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String EXTRA_ALARM_ID +cyanogenmod.platform.Manifest$permission: java.lang.String READ_ALARMS +androidx.fragment.R$id: int accessibility_custom_action_13 +com.google.android.material.R$color: int abc_search_url_text +retrofit2.RequestFactory: java.lang.reflect.Method method +androidx.preference.R$attr: int windowFixedWidthMajor +wangdaye.com.geometricweather.R$attr: int mock_showLabel +com.jaredrummler.android.colorpicker.R$attr: int backgroundTintMode +androidx.preference.R$style: int Preference_SwitchPreference_Material +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +androidx.core.R$style: R$style() +wangdaye.com.geometricweather.R$attr: int checkboxStyle +wangdaye.com.geometricweather.R$attr: int startIconContentDescription +androidx.vectordrawable.R$attr: int fontProviderQuery +androidx.constraintlayout.widget.R$string: int abc_capital_on +androidx.core.R$id: int accessibility_custom_action_28 +androidx.transition.R$attr: R$attr() +android.didikee.donate.R$styleable: int ActionBar_popupTheme +androidx.appcompat.R$id: int action_divider +androidx.swiperefreshlayout.R$id: int async +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_width_overflow_material +okhttp3.MultipartBody: okhttp3.MediaType contentType +androidx.viewpager2.R$attr: int recyclerViewStyle +okhttp3.internal.platform.OptionalMethod: java.lang.Class returnType +okhttp3.internal.http1.Http1Codec$FixedLengthSink: okio.Timeout timeout() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getPm25() +androidx.constraintlayout.widget.R$styleable: int ActionBar_customNavigationLayout +com.turingtechnologies.materialscrollbar.R$id: int blocking +wangdaye.com.geometricweather.R$attr: int height +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline2 +wangdaye.com.geometricweather.R$attr: int cpv_allowCustom +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean delayErrors +androidx.constraintlayout.utils.widget.ImageFilterView: float getContrast() +androidx.work.R$color +wangdaye.com.geometricweather.R$id: int design_menu_item_action_area_stub +wangdaye.com.geometricweather.R$attr: int onPositiveCross +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindSpeed +com.xw.repo.bubbleseekbar.R$drawable: int abc_switch_thumb_material +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setGpsFirstTimeout(long) +com.google.gson.stream.JsonWriter: void replaceTop(int) +cyanogenmod.app.Profile$NotificationLightMode: int DEFAULT +okhttp3.Cache$CacheRequestImpl: okhttp3.internal.cache.DiskLruCache$Editor editor +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: AccuCurrentResult$Past24HourTemperatureDeparture() +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +androidx.appcompat.widget.Toolbar: int getCurrentContentInsetEnd() +cyanogenmod.externalviews.KeyguardExternalView$1: void onServiceDisconnected(android.content.ComponentName) +com.amap.api.fence.PoiItem: java.lang.String getProvince() +com.google.android.material.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration +wangdaye.com.geometricweather.db.entities.MinutelyEntity: int getMinuteInterval() +wangdaye.com.geometricweather.R$id: int left +wangdaye.com.geometricweather.R$layout: int mtrl_layout_snackbar_include +androidx.fragment.app.Fragment$SavedState +androidx.constraintlayout.widget.R$style +cyanogenmod.weather.WeatherLocation: boolean equals(java.lang.Object) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_SNOW_AND_SLEET +wangdaye.com.geometricweather.R$id: int item_details_icon +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_1 +androidx.preference.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer windChillTemperature +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_getActiveWeatherServiceProviderLabel +androidx.preference.R$attr: int buttonStyleSmall +com.google.android.material.textfield.TextInputLayout: android.widget.TextView getSuffixTextView() +cyanogenmod.weather.RequestInfo: java.lang.String mKey +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findPlatform() +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemTextAppearance +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onComplete() +com.google.android.material.R$string: int mtrl_picker_a11y_prev_month +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.util.ErrorMode errorMode +androidx.constraintlayout.widget.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$attr: int thumbRadius +com.jaredrummler.android.colorpicker.R$color: int foreground_material_light +retrofit2.adapter.rxjava2.Result: Result(retrofit2.Response,java.lang.Throwable) +com.amap.api.location.AMapLocationListener: void onLocationChanged(com.amap.api.location.AMapLocation) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean delayErrors +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_QUICK_QS_PULLDOWN +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber +com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Choice +androidx.appcompat.widget.SwitchCompat: void setTextOff(java.lang.CharSequence) +james.adaptiveicon.R$string: int abc_search_hint +com.google.android.material.internal.NavigationMenuView +cyanogenmod.app.suggest.IAppSuggestManager: java.util.List getSuggestions(android.content.Intent) +com.google.android.material.R$styleable: int TextInputLayout_hintEnabled +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.R$id: int month_navigation_previous +retrofit2.Utils$GenericArrayTypeImpl: int hashCode() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setAqi(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: AccuAlertResult$Area() +android.didikee.donate.R$attr: int navigationMode +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription valueOf(java.lang.String) +okio.ByteString: okio.ByteString substring(int,int) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setNighttimeTemperature(int) +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +okio.BufferedSource: java.lang.String readString(long,java.nio.charset.Charset) +cyanogenmod.weather.WeatherInfo: java.util.List access$1102(cyanogenmod.weather.WeatherInfo,java.util.List) +com.xw.repo.bubbleseekbar.R$dimen: int hint_alpha_material_dark +com.turingtechnologies.materialscrollbar.R$drawable: int notify_panel_notification_icon_bg +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String[] VALID_KEYS +androidx.dynamicanimation.R$drawable: int notification_tile_bg +androidx.preference.R$attr: int spinnerStyle +okio.Okio$2: java.lang.String toString() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitationProbability +androidx.constraintlayout.widget.R$attr: int backgroundSplit +okhttp3.HttpUrl: java.util.List queryStringToNamesAndValues(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Platform_AppCompat_Light +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean setActiveProfileByName(java.lang.String) +com.google.android.gms.internal.location.zzl: android.os.Parcelable$Creator CREATOR +okhttp3.internal.cache.DiskLruCache$Entry: long sequenceNumber +cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_FORWARD_LOOKUP +androidx.appcompat.resources.R$dimen: int notification_big_circle_margin +com.amap.api.location.AMapLocation: void setDescription(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int Slider_android_enabled +okhttp3.OkHttpClient: java.util.List interceptors +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer getDbz() +com.google.android.material.R$drawable: int ic_mtrl_chip_checked_circle +com.google.android.material.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +james.adaptiveicon.R$styleable: int View_android_focusable +wangdaye.com.geometricweather.R$attr: int actionModeShareDrawable +wangdaye.com.geometricweather.R$attr: int panelMenuListWidth +wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity: DailyTrendWidgetConfigActivity() +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_disableDependentsState +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter beginObject() +okio.Buffer: java.lang.String readUtf8(long) +retrofit2.Retrofit: retrofit2.CallAdapter callAdapter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) +wangdaye.com.geometricweather.R$styleable: int[] Motion +wangdaye.com.geometricweather.R$styleable: int TextAppearance_fontVariationSettings +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_hideOnScroll +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial Imperial +androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_tailColor +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_vertical_padding +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +com.google.android.gms.common.api.ApiException: int getStatusCode() +okhttp3.Credentials: java.lang.String basic(java.lang.String,java.lang.String,java.nio.charset.Charset) +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_curveFit +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeWidthFocused +androidx.fragment.app.Fragment: Fragment() +okio.ForwardingSink: void close() +wangdaye.com.geometricweather.R$string +wangdaye.com.geometricweather.R$color: int colorLine +androidx.vectordrawable.animated.R$dimen: int compat_control_corner_material +com.google.android.material.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(android.os.Parcel) +com.google.android.material.R$id: int expand_activities_button +androidx.constraintlayout.widget.R$attr: int flow_lastHorizontalBias +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +androidx.constraintlayout.widget.R$style: int Platform_AppCompat +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +androidx.appcompat.resources.R$id: int accessibility_custom_action_18 +androidx.appcompat.R$color: int switch_thumb_normal_material_dark +com.google.android.material.R$styleable: int Toolbar_popupTheme +okhttp3.Dispatcher: void setMaxRequests(int) cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: ILiveLockScreenManagerProvider$Stub() -androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache$CallbackInfo getInfo(java.lang.Class) -cyanogenmod.externalviews.KeyguardExternalViewProviderService: int onStartCommand(android.content.Intent,int,int) -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light -com.google.gson.JsonSyntaxException -androidx.preference.R$styleable: int GradientColor_android_type -androidx.recyclerview.R$attr: int spanCount -android.didikee.donate.R$color: int abc_btn_colored_text_material -androidx.customview.R$attr -retrofit2.Converter$Factory: retrofit2.Converter stringConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -com.xw.repo.bubbleseekbar.R$attr: int backgroundTintMode -cyanogenmod.externalviews.KeyguardExternalView -com.turingtechnologies.materialscrollbar.R$attr: int tickMarkTint -com.xw.repo.bubbleseekbar.R$color: int dim_foreground_material_dark -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getThumbStrokeColor() -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method putMethod -com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_filled_box_default_background_color -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Small -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_Primary -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean isEmpty() -okio.Buffer: okio.Buffer writeUtf8(java.lang.String,int,int) -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Time -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -com.xw.repo.bubbleseekbar.R$layout: int abc_activity_chooser_view -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableItem_android_id -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontStyle -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String INCREASING_VOLUME -cyanogenmod.app.IProfileManager: void resetAll() -androidx.constraintlayout.widget.R$attr: int defaultState -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onAttach(android.os.IBinder) -com.google.android.gms.common.api.internal.zabl -okio.Base64: byte[] URL_MAP -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl mImpl -io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future) -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onComplete() -androidx.preference.R$string: int v7_preference_on -james.adaptiveicon.R$style: int Base_V26_Theme_AppCompat -android.didikee.donate.R$style: int Base_Theme_AppCompat_CompactMenu -okhttp3.internal.http2.Http2Reader$ContinuationSource: int streamId -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA -androidx.preference.R$attr: int selectableItemBackground -io.reactivex.internal.functions.Functions$NaturalComparator: int compare(java.lang.Object,java.lang.Object) -com.jaredrummler.android.colorpicker.R$attr: int spinnerStyle -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dividerVertical -com.google.gson.JsonParseException: long serialVersionUID -androidx.vectordrawable.animated.R$drawable: int notification_bg -retrofit2.Retrofit: retrofit2.Converter nextRequestBodyConverter(retrofit2.Converter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[]) -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginEnd -com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException: long serialVersionUID -com.google.android.material.R$attr: int materialCalendarStyle -com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_track_material -com.xw.repo.bubbleseekbar.R$layout: int select_dialog_item_material -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPressure(java.lang.Float) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -wangdaye.com.geometricweather.R$id: int notification_big_temp_2 -com.google.android.material.R$attr: int customNavigationLayout -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -wangdaye.com.geometricweather.R$string: int grass -androidx.appcompat.resources.R$dimen: int notification_small_icon_background_padding -okhttp3.internal.cache.DiskLruCache$3: java.lang.Object next() -android.didikee.donate.R$color: int background_material_dark -com.google.android.material.chip.Chip: void setBackground(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onComplete() -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerError(int,java.lang.Throwable) -androidx.work.R$dimen: int notification_large_icon_height -androidx.fragment.R$attr: int fontProviderQuery -james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelMenuListTheme -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode DARK -androidx.appcompat.R$id: int italic -androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_Toolbar -androidx.appcompat.R$styleable: int[] FontFamily -cyanogenmod.profiles.ConnectionSettings: int mConnectionId -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_icon -io.reactivex.internal.observers.BasicIntQueueDisposable: boolean isDisposed() -james.adaptiveicon.R$dimen: int notification_subtext_size -james.adaptiveicon.R$attr: int commitIcon -cyanogenmod.platform.Manifest$permission: java.lang.String READ_WEATHER -androidx.appcompat.R$id: int action_bar_activity_content -androidx.fragment.R$styleable: int GradientColor_android_centerY -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_content_inset_with_nav -com.google.gson.FieldNamingPolicy$2 -androidx.dynamicanimation.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.R$id: int cpv_color_panel_new -android.didikee.donate.R$styleable: int MenuItem_alphabeticModifiers -com.google.android.material.R$styleable: int Transform_android_elevation -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginEnd -androidx.core.R$styleable: int FontFamilyFont_font -androidx.preference.R$id: int unchecked +org.greenrobot.greendao.AbstractDao: void updateInTx(java.lang.Object[]) +com.google.android.material.R$layout: int mtrl_alert_select_dialog_singlechoice +androidx.preference.R$id: int checkbox +okhttp3.HttpUrl: java.net.URL url() +com.github.rahatarmanahmed.cpv.CircularProgressView: void updateBounds() +cyanogenmod.providers.CMSettings$Secure: java.lang.String ENABLED_EVENT_LIVE_LOCKS_KEY +io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.CompletableObserver) +androidx.fragment.R$styleable: int Fragment_android_tag +wangdaye.com.geometricweather.R$id: int widget_clock_day_subtitle +androidx.hilt.lifecycle.R$dimen: int notification_content_margin_start +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_creator +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: FlowableOnBackpressureBuffer$BackpressureBufferSubscriber(org.reactivestreams.Subscriber,int,boolean,boolean,io.reactivex.functions.Action) +wangdaye.com.geometricweather.R$styleable: int Slider_tickColor +androidx.appcompat.R$attr: int checkboxStyle +james.adaptiveicon.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String VIBRATE +com.google.android.material.R$color: int material_slider_active_tick_marks_color +com.google.android.material.slider.Slider: void setValueFrom(float) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconDrawable +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_icon +com.bumptech.glide.load.engine.GlideException: java.lang.Class dataClass +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_icon_vertical_padding_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: void setValue(java.lang.String) +androidx.preference.R$styleable: int MenuItem_android_checked +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onSuccess(java.lang.Object) +androidx.preference.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +wangdaye.com.geometricweather.R$attr: int toolbarStyle +com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_pressed +androidx.preference.R$attr: int editTextBackground +cyanogenmod.app.ProfileGroup +android.didikee.donate.R$styleable: int AppCompatTheme_dividerHorizontal +okhttp3.internal.http1.Http1Codec$FixedLengthSink: void flush() +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void dispose() +androidx.vectordrawable.animated.R$attr: int fontWeight +androidx.dynamicanimation.R$id: int text +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityStopped(android.app.Activity) +okhttp3.internal.ws.RealWebSocket$Close: int code +com.turingtechnologies.materialscrollbar.R$attr: int state_above_anchor +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.preference.R$styleable: int AppCompatImageView_tint +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +com.google.android.material.R$styleable: int MaterialButton_android_checkable +androidx.appcompat.R$styleable: int[] AppCompatTextHelper +wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_horizontal +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_text_size +androidx.appcompat.widget.Toolbar: void setTitle(java.lang.CharSequence) +okhttp3.internal.http2.Header$Listener +androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart +androidx.preference.R$style: int Widget_AppCompat_ActionMode +org.greenrobot.greendao.AbstractDao: java.lang.String getTablename() +cyanogenmod.weather.CMWeatherManager: CMWeatherManager(android.content.Context) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_2 +androidx.constraintlayout.widget.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +com.google.android.material.R$styleable: int MaterialTextAppearance_android_letterSpacing +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplaceInTxIterable +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: double speed +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getScaleY() +androidx.lifecycle.extensions.R$drawable: int notification_bg_low +cyanogenmod.weather.WeatherInfo$Builder: int mTempUnit +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.R$attr: int materialTimePickerTheme +com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_light +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onDetach +com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_bias +cyanogenmod.weather.WeatherInfo$DayForecast: java.lang.String toString() +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Subtitle2 +wangdaye.com.geometricweather.R$attr: int buttonStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: double Value +james.adaptiveicon.R$id: int icon +cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,int) +okhttp3.internal.http2.Http2: byte TYPE_WINDOW_UPDATE +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextStyle +com.turingtechnologies.materialscrollbar.R$attr: int materialCardViewStyle +androidx.fragment.R$id: int accessibility_custom_action_9 +androidx.constraintlayout.widget.R$id: int sawtooth +james.adaptiveicon.R$attr: int titleMarginEnd +com.jaredrummler.android.colorpicker.R$attr: int fastScrollVerticalThumbDrawable +com.bumptech.glide.R$layout: R$layout() +okhttp3.internal.ws.RealWebSocket: void tearDown() +okhttp3.internal.ws.RealWebSocket: void onReadClose(int,java.lang.String) +android.didikee.donate.R$styleable: int AlertDialog_listItemLayout +okhttp3.internal.http2.Http2Connection: void access$000(okhttp3.internal.http2.Http2Connection) +io.reactivex.internal.disposables.SequentialDisposable: SequentialDisposable(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogLayout +com.google.android.material.R$drawable: int abc_ic_star_half_black_48dp +com.loc.k: int e() +androidx.constraintlayout.widget.R$attr: int layout_optimizationLevel +androidx.viewpager2.R$styleable: int FontFamily_fontProviderCerts +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathOffset(float) +androidx.appcompat.widget.Toolbar: void setPopupTheme(int) +com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPickerView +com.google.android.material.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +androidx.appcompat.widget.LinearLayoutCompat: float getWeightSum() +android.didikee.donate.R$styleable: int MenuItem_android_icon +com.google.android.material.slider.RangeSlider: void setThumbStrokeWidthResource(int) +com.google.android.material.R$style: int Base_V21_Theme_AppCompat +com.google.android.material.circularreveal.cardview.CircularRevealCardView: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void otherError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_spinBars +wangdaye.com.geometricweather.background.receiver.widget.WidgetTextProvider +androidx.coordinatorlayout.R$dimen: int compat_notification_large_icon_max_height +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +com.google.android.material.R$integer: int bottom_sheet_slide_duration +okhttp3.internal.http.HttpDate$1: java.lang.Object initialValue() +cyanogenmod.app.ProfileManager: boolean profileExists(java.lang.String) +cyanogenmod.weatherservice.WeatherProviderService$1: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) +androidx.preference.SeekBarPreference$SavedState: android.os.Parcelable$Creator CREATOR +androidx.preference.R$styleable: int Preference_enabled +com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_small_material +com.google.android.material.R$dimen: int mtrl_low_ripple_focused_alpha +cyanogenmod.externalviews.ExternalView: void onActivityResumed(android.app.Activity) +androidx.preference.R$styleable: int MenuItem_android_menuCategory +wangdaye.com.geometricweather.R$string: int briefings +james.adaptiveicon.R$styleable: int CompoundButton_buttonCompat +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DewPoint +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTint +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_chainStyle +androidx.appcompat.R$layout: int abc_action_mode_bar +com.google.android.material.R$styleable: int BottomNavigationView_itemIconTint +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_disabled_material_dark +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void cancelSources() +androidx.constraintlayout.widget.R$id: int dragUp +androidx.preference.R$anim: int fragment_close_enter +cyanogenmod.app.BaseLiveLockManagerService: void notifyChangeListeners(cyanogenmod.app.LiveLockScreenInfo) +wangdaye.com.geometricweather.R$string: R$string() +wangdaye.com.geometricweather.R$attr: int sv_side +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: CaiYunMainlyResult$ForecastHourlyBean() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +com.bumptech.glide.integration.okhttp.R$string: R$string() +com.google.android.material.R$dimen: int design_snackbar_min_width +androidx.preference.R$attr: int arrowHeadLength +com.turingtechnologies.materialscrollbar.R$id: int async +androidx.dynamicanimation.R$layout: int notification_template_custom_big +androidx.viewpager2.R$attr: int layoutManager +cyanogenmod.externalviews.IExternalViewProvider: void onPause() +com.google.android.material.R$styleable: int Layout_layout_constraintBottom_creator +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_collapsed +wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragDirection +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_transformation_sheet_expand_spec +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec RESTRICTED_TLS +com.google.android.material.R$styleable: int MaterialButton_rippleColor +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getSo2() +androidx.lifecycle.ProcessLifecycleOwnerInitializer: ProcessLifecycleOwnerInitializer() +com.xw.repo.bubbleseekbar.R$layout: int abc_activity_chooser_view_list_item +com.google.android.material.bottomappbar.BottomAppBar: void setHideOnScroll(boolean) +com.bumptech.glide.load.engine.CallbackException: long serialVersionUID +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date updateDate +com.xw.repo.bubbleseekbar.R$attr: int colorError +androidx.constraintlayout.widget.R$attr: int arrowShaftLength +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void onResponse(retrofit2.Call,retrofit2.Response) +com.google.android.material.R$styleable: int Slider_labelBehavior +androidx.preference.R$layout: int preference_dropdown +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getDensityVoice(android.content.Context,float) +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_ttcIndex +android.didikee.donate.R$attr: int actionModeSplitBackground +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments comments +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_layoutManager +androidx.work.impl.utils.futures.DirectExecutor: java.lang.String toString() +james.adaptiveicon.R$style: int Widget_AppCompat_Button +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +androidx.preference.R$bool +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onScreenTurnedOn() +wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_day_selection +androidx.work.R$id: int info +wangdaye.com.geometricweather.R$attr: int fastScrollHorizontalThumbDrawable +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_to_on_mtrl_000 +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_transitionEasing +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLastLocationLifeCycle(long) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display4 +okhttp3.internal.cache2.Relay$RelaySource: void close() +com.google.android.material.R$styleable: int OnSwipe_onTouchUp +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerComplete(int) +wangdaye.com.geometricweather.R$attr: int roundPercent +wangdaye.com.geometricweather.R$array: int week_widget_styles +com.google.android.material.R$attr: int autoTransition +wangdaye.com.geometricweather.R$style: int Theme_Design +androidx.fragment.R$id: int tag_accessibility_actions +cyanogenmod.power.PerformanceManager: int PROFILE_BALANCED +retrofit2.RequestFactory$Builder: java.lang.String relativeUrl +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitationProbability +com.google.android.material.card.MaterialCardView: void setStrokeColor(android.content.res.ColorStateList) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.bumptech.glide.R$attr: int ttcIndex +androidx.appcompat.R$attr: int actionBarTabBarStyle +androidx.coordinatorlayout.R$styleable: int GradientColorItem_android_color +okhttp3.Response: java.lang.String header(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_109 +cyanogenmod.providers.CMSettings$DiscreteValueValidator: CMSettings$DiscreteValueValidator(java.lang.String[]) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dropDownListViewStyle +androidx.core.R$id: int action_text +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit[] values() +wangdaye.com.geometricweather.db.entities.DailyEntity: DailyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.util.Date,java.util.Date,java.util.Date,java.util.Date,java.lang.Integer,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,float) +android.didikee.donate.R$style: int Base_Widget_AppCompat_Toolbar +androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context) +com.google.gson.internal.LazilyParsedNumber: double doubleValue() +androidx.coordinatorlayout.R$id: int info +james.adaptiveicon.R$color: int abc_primary_text_disable_only_material_light +androidx.fragment.R$id: int accessibility_custom_action_11 +androidx.core.R$attr: int fontStyle +androidx.constraintlayout.widget.R$attr: int motionStagger +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String advice +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX) +android.didikee.donate.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getIndeterminateDrawable() +wangdaye.com.geometricweather.R$attr: int yearTodayStyle +com.google.android.material.R$attr: int iconPadding +com.google.android.material.R$attr: int itemTextColor +cyanogenmod.themes.IThemeChangeListener$Stub +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_normal +com.google.android.material.R$styleable: int Constraint_layout_constraintRight_toLeftOf +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetEndWithActions +com.google.android.material.chip.Chip: void setCloseIconVisible(boolean) +com.amap.api.fence.GeoFence: void setCustomId(java.lang.String) +com.google.android.material.R$attr: int textAppearanceHeadline4 +com.jaredrummler.android.colorpicker.R$dimen: int notification_big_circle_margin +james.adaptiveicon.R$attr: int drawerArrowStyle +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer realFeelShaderTemperature +com.jaredrummler.android.colorpicker.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$attr: int bsb_seek_by_section +com.google.android.material.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids +okhttp3.EventListener: void connectFailed(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol,java.io.IOException) +com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector[] values() +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_TEXT +com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_padding +wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_horizontal_setting +androidx.preference.R$styleable: int CompoundButton_buttonTint +wangdaye.com.geometricweather.R$attr: int actionModeBackground +wangdaye.com.geometricweather.R$string: int common_google_play_services_notification_ticker +com.google.android.material.R$attr: int boxStrokeWidth +wangdaye.com.geometricweather.R$dimen: int current_weather_icon_size +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.MediaType contentType() +cyanogenmod.profiles.ConnectionSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_bias +com.jaredrummler.android.colorpicker.R$layout: int preference_recyclerview +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +james.adaptiveicon.R$styleable: int[] AppCompatTheme +androidx.preference.R$styleable: int FragmentContainerView_android_tag +com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_inset_horizontal_material +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_content_padding_fullscreen +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro moon() +androidx.preference.R$style: int Theme_AppCompat_Light_NoActionBar +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +android.didikee.donate.R$styleable: int CompoundButton_android_button +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_snackbar_background_corner_radius +android.didikee.donate.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardContainer +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: io.reactivex.functions.BiFunction combiner +io.reactivex.Observable: io.reactivex.Observable mergeArrayDelayError(io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_scrollContainer +com.google.android.gms.common.server.converter.StringToIntConverter$zaa +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_NFC +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getCurrentPosition() +com.google.android.material.R$attr: int tabPaddingStart +okhttp3.internal.connection.StreamAllocation: void cancel() +okio.DeflaterSink: void finishDeflate() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_registerCallback +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.History yesterday +androidx.constraintlayout.widget.R$styleable: int Constraint_visibilityMode +androidx.preference.R$drawable: int abc_list_selector_holo_light +androidx.preference.R$styleable: int ActionBar_homeLayout +androidx.activity.R$attr: int fontStyle +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration +androidx.lifecycle.Transformations$2 +android.didikee.donate.R$styleable: int AppCompatTheme_activityChooserViewStyle +androidx.vectordrawable.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$id: int action_about +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: boolean requestDismiss() +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationY +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_track_size +io.reactivex.internal.util.EmptyComponent: boolean isDisposed() +androidx.appcompat.view.menu.CascadingMenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +com.xw.repo.bubbleseekbar.R$styleable: int[] PopupWindowBackgroundState +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegments(java.lang.String,boolean) +okhttp3.internal.http2.Http2Writer: void rstStream(int,okhttp3.internal.http2.ErrorCode) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer cloudCover +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +androidx.activity.R$id: int accessibility_custom_action_26 +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_enterFadeDuration +android.didikee.donate.R$anim: int abc_grow_fade_in_from_bottom +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: void setTo(java.lang.String) +james.adaptiveicon.R$id: int action_bar_spinner +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean() +com.jaredrummler.android.colorpicker.R$layout: int notification_template_part_time +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +androidx.constraintlayout.motion.widget.MotionLayout: android.os.Bundle getTransitionState() +wangdaye.com.geometricweather.R$anim: int abc_shrink_fade_out_from_bottom +com.jaredrummler.android.colorpicker.ColorPickerView: void setColor(int) +androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityPreCreated(android.app.Activity,android.os.Bundle) +okio.Timeout$1: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getContent() +okhttp3.internal.platform.OptionalMethod: boolean isSupported(java.lang.Object) +androidx.transition.R$id: int info +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: boolean requestDismiss() +androidx.fragment.R$styleable: int FontFamily_fontProviderQuery +androidx.recyclerview.R$attr: int fontProviderCerts +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: void setKeyLineVisibility(boolean) +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityStopped(android.app.Activity) +com.xw.repo.bubbleseekbar.R$attr: int tooltipForegroundColor +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_padding +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_android_maxWidth +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runAsync() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: void setCaiyun(java.lang.String) +com.google.android.material.R$dimen: int compat_control_corner_material +androidx.appcompat.R$attr: int colorError +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias +okhttp3.internal.http2.Http2Stream: void receiveFin() +james.adaptiveicon.R$styleable: int Toolbar_collapseContentDescription +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_shapeAppearance +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_font +com.google.android.material.R$color: int abc_btn_colored_borderless_text_material +com.turingtechnologies.materialscrollbar.R$attr: int colorPrimary +com.jaredrummler.android.colorpicker.R$attr: int defaultQueryHint +androidx.hilt.R$id: int accessibility_custom_action_0 +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: java.lang.String modeId +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedHeightMinor +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver +wangdaye.com.geometricweather.R$attr: int editTextBackground +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_2 +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dark +androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar_Small +com.google.android.material.R$layout: int test_chip_zero_corner_radius +androidx.work.R$id: int accessibility_custom_action_18 +wangdaye.com.geometricweather.R$dimen: int widget_large_title_text_size +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView_Menu +com.google.android.material.R$attr: int customColorValue +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_listItemLayout +androidx.core.R$id: int tag_accessibility_pane_title +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.R$interpolator: int fast_out_slow_in +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_PAUSE +androidx.hilt.work.R$attr: int font +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedPassword(java.lang.String) +wangdaye.com.geometricweather.R$id: int seekbar_value +android.didikee.donate.R$attr: int editTextColor +androidx.appcompat.R$dimen: int abc_text_size_display_3_material +androidx.vectordrawable.R$styleable: int FontFamilyFont_fontWeight +androidx.preference.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: long serialVersionUID +androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onCreate() +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDataConnectionState(boolean) +androidx.customview.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +com.google.android.material.R$styleable: int Toolbar_contentInsetRight +androidx.appcompat.R$attr: int popupMenuStyle +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_warmth +com.google.android.material.slider.BaseSlider: void setValueTo(float) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitationProbability() +androidx.appcompat.R$layout: int abc_screen_content_include +androidx.appcompat.R$dimen: int compat_notification_large_icon_max_height +androidx.appcompat.R$color: R$color() +com.google.gson.stream.JsonReader: java.io.Reader in +wangdaye.com.geometricweather.R$attr: int textAppearanceOverline +wangdaye.com.geometricweather.R$id: int percent +okhttp3.HttpUrl$Builder: int effectivePort() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: wangdaye.com.geometricweather.db.entities.ChineseCityEntity readEntity(android.database.Cursor,int) +androidx.appcompat.R$attr: int listPreferredItemHeightSmall +com.google.android.material.R$styleable: int Layout_chainUseRtl +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCloseDrawable +androidx.preference.R$drawable: int btn_radio_off_mtrl +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean delayErrors +cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$Validator PROTECTED_COMPONENTS_MANAGER_VALIDATOR +okhttp3.Address: okhttp3.Dns dns +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +okhttp3.Challenge: java.lang.String realm() +android.didikee.donate.R$attr: R$attr() +cyanogenmod.externalviews.ExternalView: android.content.Context mContext +androidx.appcompat.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$dimen: int material_emphasis_high_type +com.turingtechnologies.materialscrollbar.R$drawable: int design_ic_visibility_off +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_android_max +com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_inflatedId +androidx.customview.R$id: int italic +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_overflow_padding_start_material +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onError(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: java.lang.Object singleItem +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabBar +com.jaredrummler.android.colorpicker.R$attr: int layoutManager +androidx.core.widget.ContentLoadingProgressBar +androidx.constraintlayout.helper.widget.Flow: void setPaddingRight(int) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Info +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.recyclerview.R$attr: int fontWeight +wangdaye.com.geometricweather.R$id: int month_navigation_next +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DailyForecast +com.google.android.material.R$attr: int colorPrimarySurface +okhttp3.internal.ws.RealWebSocket: int receivedPongCount +wangdaye.com.geometricweather.R$id: int outline +androidx.coordinatorlayout.R$id: int accessibility_custom_action_12 +android.didikee.donate.R$dimen: int abc_search_view_preferred_height +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LAUNCHER +androidx.preference.R$styleable: int AppCompatImageView_tintMode +androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context) +wangdaye.com.geometricweather.R$attr: int animate_relativeTo +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListMenuView +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetEnd +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay +com.jaredrummler.android.colorpicker.R$layout: int abc_action_mode_close_item_material +wangdaye.com.geometricweather.R$styleable: int OnSwipe_limitBoundsTo +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_3_material +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_startAngle +androidx.constraintlayout.widget.R$styleable: int[] SwitchCompat +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textStyle +com.google.gson.stream.JsonReader: int PEEKED_EOF +cyanogenmod.app.Profile: int mNameResId +com.google.android.material.R$styleable: int Layout_layout_editor_absoluteY +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_Solid +androidx.constraintlayout.widget.R$styleable: int TextAppearance_fontVariationSettings +com.baidu.location.indoor.c: int a +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: void run() +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher +com.amap.api.location.AMapLocation: int getConScenario() +okhttp3.internal.http2.Huffman: void encode(okio.ByteString,okio.BufferedSink) +com.google.android.material.chip.Chip: void setCloseIconPressed(boolean) +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder pingIntervalMillis(int) +com.xw.repo.bubbleseekbar.R$attr: int arrowHeadLength +androidx.drawerlayout.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_20 +androidx.constraintlayout.widget.R$attr: int maxWidth +okio.HashingSource: java.security.MessageDigest messageDigest +androidx.preference.R$id: int normal +okio.Util: Util() +androidx.swiperefreshlayout.R$attr: int fontProviderFetchStrategy +okhttp3.CookieJar: void saveFromResponse(okhttp3.HttpUrl,java.util.List) +com.baidu.location.e.p: p(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_titleCondensed +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeWindSpeed() +okhttp3.Cache: okhttp3.internal.cache.InternalCache internalCache +okhttp3.internal.http2.Http2Reader$ContinuationSource: int left +com.google.android.material.R$styleable: int FontFamilyFont_android_fontStyle +androidx.recyclerview.widget.StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem: android.os.Parcelable$Creator CREATOR +androidx.vectordrawable.animated.R$dimen: int compat_button_padding_vertical_material +com.amap.api.fence.GeoFenceClient: com.amap.api.fence.GeoFenceManagerBase a(android.content.Context) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void drainFused() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling +cyanogenmod.externalviews.KeyguardExternalView: android.graphics.Point mDisplaySize +com.google.android.material.appbar.CollapsingToolbarLayout: int getScrimVisibleHeightTrigger() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String windDirection +androidx.hilt.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeBottomLeft +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_drawableSize +com.google.android.material.R$styleable: int Layout_layout_constraintVertical_bias +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit[] values() +android.didikee.donate.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +com.google.android.material.R$attr: int hintTextAppearance +wangdaye.com.geometricweather.R$attr: int iconEndPadding +com.google.android.material.R$attr: int boxCornerRadiusBottomEnd +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type TEMPERATURE +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_menuCategory +okhttp3.internal.cache.DiskLruCache$Editor +com.google.android.material.slider.BaseSlider: void setThumbRadius(int) +wangdaye.com.geometricweather.R$string: int date_format_widget_long +com.bumptech.glide.integration.okhttp.R$dimen: R$dimen() +okio.Buffer: okio.Buffer buffer() +androidx.core.os.CancellationSignal +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_itemPadding com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextAppearance -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_liftOnScrollTargetViewId -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: int bufferSize -androidx.constraintlayout.widget.R$drawable: int abc_seekbar_tick_mark_material -com.google.android.material.R$color: int mtrl_calendar_item_stroke_color -com.google.android.material.R$styleable: int Constraint_android_maxWidth -com.google.android.material.R$styleable: int Constraint_pathMotionArc -io.reactivex.Observable: void blockingSubscribe() -com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_alphaChannelVisible -androidx.coordinatorlayout.R$drawable: int notification_template_icon_bg -androidx.constraintlayout.widget.R$color: int material_grey_100 -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog -com.turingtechnologies.materialscrollbar.R$styleable -wangdaye.com.geometricweather.R$id: int item_weather_daily_title_icon -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.Integer index -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Medium_Inverse -com.google.android.gms.common.api.GoogleApiActivity: GoogleApiActivity() -com.google.android.material.tabs.TabLayout: void setUnboundedRipple(boolean) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_21 -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherSuccess(java.lang.Object) -wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$dimen: int design_title_text_size -com.google.android.material.R$styleable: int[] MaterialAlertDialog -com.google.android.material.R$anim: int abc_shrink_fade_out_from_bottom -androidx.preference.R$styleable: int AppCompatTheme_borderlessButtonStyle -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setMockEnable(boolean) -androidx.preference.R$attr: int iconSpaceReserved -com.google.android.material.R$styleable: int Constraint_android_maxHeight -androidx.viewpager2.R$color: int notification_icon_bg_color -androidx.preference.R$color: int notification_action_color_filter -com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_top_outer_color -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -james.adaptiveicon.R$attr: int thumbTint -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_LOW_COLOR_VALIDATOR -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getRealFeelTemperature() -wangdaye.com.geometricweather.R$id: int showHome -androidx.preference.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -com.google.android.material.R$attr: int trackColorActive -androidx.fragment.app.BackStackRecord -com.amap.api.location.CoordUtil: boolean a -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setForecastDaily(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver -com.jaredrummler.android.colorpicker.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_5 -androidx.lifecycle.SavedStateHandle: java.util.Set keys() -com.xw.repo.bubbleseekbar.R$id: int right_side -wangdaye.com.geometricweather.R$animator: int weather_hail_1 -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dialog -androidx.drawerlayout.R$attr: int fontStyle -okhttp3.internal.cache2.Relay$RelaySource: Relay$RelaySource(okhttp3.internal.cache2.Relay) -okhttp3.internal.ws.RealWebSocket$PingRunnable: okhttp3.internal.ws.RealWebSocket this$0 -androidx.appcompat.widget.AppCompatImageButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -okhttp3.internal.http1.Http1Codec: int STATE_IDLE -retrofit2.RequestFactory$Builder: void parseMethodAnnotation(java.lang.annotation.Annotation) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_subtitle -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupMenu_Overflow -androidx.preference.R$id: int search_close_btn -com.google.android.material.R$drawable: int ic_keyboard_black_24dp -org.greenrobot.greendao.AbstractDao: AbstractDao(org.greenrobot.greendao.internal.DaoConfig) -android.didikee.donate.R$color: int primary_material_light -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy UPPER_CAMEL_CASE_WITH_SPACES -wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardSpinner -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: long serialVersionUID -androidx.appcompat.widget.AppCompatAutoCompleteTextView -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_submit -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemIconDisabledAlpha -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_118 -com.google.android.material.R$string: int material_hour_selection -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow24h -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: java.util.List rainForecasts -okio.ByteString: okio.ByteString substring(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: java.lang.String Unit -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -okhttp3.internal.connection.RouteSelector: void resetNextInetSocketAddress(java.net.Proxy) -com.amap.api.location.AMapLocation: int ERROR_CODE_AIRPLANEMODE_WIFIOFF -com.google.android.material.R$drawable: int notification_bg_normal_pressed -androidx.preference.R$styleable: int EditTextPreference_useSimpleSummaryProvider -wangdaye.com.geometricweather.R$attr: int background -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerReceiver -com.google.android.material.R$color: int design_default_color_surface -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_alphabeticShortcut -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void disposeInner() -androidx.hilt.R$id: int accessibility_action_clickable_span -com.google.android.material.R$id: int message -androidx.dynamicanimation.R$dimen: int notification_right_side_padding_top -com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context) -androidx.preference.R$attr: int listPreferredItemPaddingRight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: AccuCurrentResult$RealFeelTemperatureShade$Imperial() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button -com.google.android.material.textfield.TextInputLayout: void setDefaultHintTextColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: AccuDailyResult$DailyForecasts$Temperature$Maximum() -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_MENU_ACTION -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder cookieJar(okhttp3.CookieJar) -androidx.work.R$id: int title -com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearanceInactive -wangdaye.com.geometricweather.R$style: int material_icon -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.R$style: int TextAppearance_Design_Error -androidx.preference.R$drawable: int abc_ratingbar_material -com.google.android.material.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger -okhttp3.internal.ws.WebSocketWriter: okio.Buffer sinkBuffer -com.google.android.material.internal.NavigationMenuItemView: void setIconPadding(int) -com.xw.repo.bubbleseekbar.R$attr: int windowFixedHeightMinor -androidx.hilt.lifecycle.R$layout -cyanogenmod.externalviews.ExternalViewProperties: int mHeight -cyanogenmod.app.Profile: void setStatusBarIndicator(boolean) -androidx.preference.R$attr: int maxButtonHeight -com.google.android.material.R$styleable: int TabLayout_tabIndicator -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_Surface -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long serialVersionUID -androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.R$styleable: int Motion_motionStagger -android.didikee.donate.R$styleable: int SwitchCompat_splitTrack -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Title -androidx.recyclerview.R$id: int notification_background -wangdaye.com.geometricweather.db.entities.LocationEntity: void setDistrict(java.lang.String) -androidx.loader.R$styleable: int GradientColor_android_centerY -retrofit2.ParameterHandler: retrofit2.ParameterHandler iterable() -cyanogenmod.app.Profile$TriggerType -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: long serialVersionUID -androidx.work.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX brandInfo -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm10Desc() -wangdaye.com.geometricweather.R$id: int test_checkbox_android_button_tint -okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withWriteTimeout(int,java.util.concurrent.TimeUnit) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_23 -com.google.android.material.R$styleable: int NavigationView_itemTextAppearance -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: void setUnit(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_inverse -androidx.appcompat.R$styleable: int AppCompatTheme_editTextBackground -androidx.constraintlayout.widget.R$attr: int maxVelocity -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String m -com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_end -okhttp3.MediaType: okhttp3.MediaType parse(java.lang.String) -cyanogenmod.weather.WeatherInfo: java.lang.String mKey -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListPopupWindow -wangdaye.com.geometricweather.R$styleable: int Preference_android_singleLineTitle -cyanogenmod.app.Profile$ProfileTrigger$1 -okio.InflaterSource: void close() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX -com.bumptech.glide.R$attr: int fontProviderFetchStrategy -okhttp3.Cookie: long parseExpires(java.lang.String,int,int) -com.google.android.material.R$styleable: int ConstraintSet_android_transformPivotX -okio.Options: java.lang.Object get(int) -androidx.constraintlayout.motion.widget.MotionLayout: int getStartState() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String EnglishName -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -androidx.constraintlayout.widget.R$styleable: int State_android_id -androidx.appcompat.R$attr: int actionModeWebSearchDrawable -androidx.appcompat.R$styleable: int MenuItem_numericModifiers -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float Lead -androidx.work.impl.workers.DiagnosticsWorker -com.google.android.material.R$dimen: int mtrl_calendar_header_content_padding_fullscreen -com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationX(float) -androidx.constraintlayout.widget.Group: Group(android.content.Context) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_layout -com.amap.api.location.AMapLocation: boolean b(com.amap.api.location.AMapLocation,boolean) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView -androidx.constraintlayout.widget.R$attr: int textLocale -com.jaredrummler.android.colorpicker.R$id: int decor_content_parent -com.amap.api.fence.PoiItem -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_subtitle -com.google.android.material.navigation.NavigationView: void setItemIconPadding(int) -okhttp3.internal.platform.Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type[] values() -androidx.lifecycle.ViewModelStoreOwner: androidx.lifecycle.ViewModelStore getViewModelStore() -androidx.preference.R$attr: int statusBarBackground -wangdaye.com.geometricweather.R$styleable: int[] KeyFramesVelocity -android.didikee.donate.R$style: int Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_trendRecyclerView -wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_layout -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableLeft -wangdaye.com.geometricweather.R$dimen: int test_mtrl_calendar_day_cornerSize -cyanogenmod.app.suggest.ApplicationSuggestion: int describeContents() -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.MinutelyEntityDao minutelyEntityDao -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_corner_radius -com.google.android.material.R$styleable: int Chip_closeIconEnabled -com.xw.repo.bubbleseekbar.R$styleable: int[] StateListDrawableItem -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language FOLLOW_SYSTEM -wangdaye.com.geometricweather.R$style: int widget_text_clock_analog_Dark -com.jaredrummler.android.colorpicker.R$string: R$string() -androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_4_material -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_27 -wangdaye.com.geometricweather.R$attr: int contentDescription -com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Entry -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State CREATED -androidx.preference.R$style: int Base_Widget_AppCompat_ActivityChooserView -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BLUETOOTH_ACCEPT_ALL_FILES_VALIDATOR -com.xw.repo.bubbleseekbar.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents -wangdaye.com.geometricweather.R$string: int material_minute_suffix -androidx.constraintlayout.widget.R$attr: int customIntegerValue -wangdaye.com.geometricweather.R$style: int Base_DialogWindowTitleBackground_AppCompat -cyanogenmod.weather.RequestInfo: java.lang.String mCityName -com.google.android.material.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -com.turingtechnologies.materialscrollbar.R$id: int text2 -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getThunderstormPrecipitationProbability() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_end -android.didikee.donate.R$attr: int switchMinWidth -wangdaye.com.geometricweather.R$string: int appbar_scrolling_view_behavior -androidx.constraintlayout.widget.R$interpolator -wangdaye.com.geometricweather.R$attr: int enforceMaterialTheme -cyanogenmod.themes.ThemeManager$1$2: ThemeManager$1$2(cyanogenmod.themes.ThemeManager$1,boolean) -com.google.android.material.card.MaterialCardView: void setBackground(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void otherComplete() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable) -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void dispose() -androidx.preference.R$attr: int actionModeSplitBackground -cyanogenmod.power.IPerformanceManager$Stub: IPerformanceManager$Stub() -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float Ozone -wangdaye.com.geometricweather.R$attr: int alpha -androidx.constraintlayout.widget.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -androidx.drawerlayout.R$styleable: int GradientColor_android_centerX -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionBar -com.google.android.material.internal.FlowLayout: void setItemSpacing(int) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Type -com.google.android.material.floatingactionbutton.FloatingActionButton: void setExpandedComponentIdHint(int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -android.didikee.donate.R$styleable: int SearchView_voiceIcon -wangdaye.com.geometricweather.R$attr: int thumbStrokeColor -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontVariationSettings -android.didikee.donate.R$style: int TextAppearance_AppCompat_Headline -wangdaye.com.geometricweather.R$id: int confirm_button -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_DialogWhenLarge -com.google.android.material.R$layout: int mtrl_picker_text_input_date_range -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircleAngle -okio.RealBufferedSink: okio.BufferedSink writeIntLe(int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast -com.google.android.material.R$styleable: int[] BottomSheetBehavior_Layout -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_closeIcon +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onNext(java.lang.Object) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$y +androidx.preference.R$styleable: int FontFamilyFont_fontWeight +retrofit2.KotlinExtensions: java.lang.Object await(retrofit2.Call,kotlin.coroutines.Continuation) +androidx.appcompat.R$attr: int splitTrack +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar_Indicator +androidx.vectordrawable.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$styleable: int Layout_layout_goneMarginEnd +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW_FLURRIES +com.google.android.material.R$styleable: int Constraint_android_rotationY +wangdaye.com.geometricweather.R$layout: int material_clockface_view +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_keyline +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_visible +okhttp3.internal.NamedRunnable: NamedRunnable(java.lang.String,java.lang.Object[]) +androidx.coordinatorlayout.R$layout +wangdaye.com.geometricweather.R$styleable: int Toolbar_menu +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getMinWidthMajor() +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_maximum_default_fullscreen_minor_axis +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA +james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.viewpager.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenVoice(android.content.Context,java.lang.Integer) +com.google.gson.internal.LazilyParsedNumber: long longValue() +androidx.fragment.R$dimen: int notification_small_icon_size_as_large +retrofit2.http.Header: java.lang.String value() +okhttp3.Cache: int ENTRY_COUNT +wangdaye.com.geometricweather.R$styleable: int[] MaterialShape +okhttp3.internal.io.FileSystem$1: void rename(java.io.File,java.io.File) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: long serialVersionUID +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pm25 +okio.GzipSource: byte SECTION_HEADER +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_range +wangdaye.com.geometricweather.R$color: int test_mtrl_calendar_day_selected +okhttp3.internal.http1.Http1Codec$ChunkedSink: boolean closed +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object readKey(android.database.Cursor,int) +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_activated_mtrl_alpha +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: MfWarningsResult$WarningComments() +androidx.preference.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RealFeelTemperature +androidx.viewpager.R$id: int actions +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endY +androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_PROVIDER +okhttp3.internal.http2.Http2Connection: long awaitPongsReceived +androidx.preference.R$style: int Base_Widget_AppCompat_Button_Small +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_attributeName +com.turingtechnologies.materialscrollbar.R$attr: int thumbTextPadding +wangdaye.com.geometricweather.R$dimen: int widget_grid_3 +james.adaptiveicon.R$drawable: int abc_text_select_handle_right_mtrl_light +wangdaye.com.geometricweather.R$color: int tooltip_background_light +android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar +androidx.work.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.viewpager2.R$id: int async +androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchRegionId +okhttp3.internal.ws.WebSocketWriter$FrameSink: okhttp3.internal.ws.WebSocketWriter this$0 +androidx.lifecycle.LiveData: androidx.arch.core.internal.SafeIterableMap mObservers +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_lineHeight +androidx.preference.R$style: int Base_V21_Theme_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_padding_end_material +cyanogenmod.hardware.ICMHardwareService$Stub: cyanogenmod.hardware.ICMHardwareService asInterface(android.os.IBinder) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents +androidx.recyclerview.R$dimen: int notification_right_side_padding_top +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd +com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Subtitle2 +com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_CUSTOMID +androidx.appcompat.R$style: int Widget_AppCompat_ListView_DropDown +okhttp3.internal.http.HttpHeaders: void parseChallengeHeader(java.util.List,okio.Buffer) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ApparentTemperature +androidx.constraintlayout.widget.R$anim: int abc_popup_exit +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_dither +androidx.lifecycle.ProcessLifecycleOwnerInitializer: java.lang.String getType(android.net.Uri) +com.autonavi.aps.amapapi.model.AMapLocationServer: void f(java.lang.String) +androidx.activity.R$id: int tag_unhandled_key_listeners +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollEnabled +wangdaye.com.geometricweather.R$style: int PreferenceFragment_Material +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast +com.google.android.material.datepicker.RangeDateSelector: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$drawable: int notif_temp_125 +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_1 +com.google.android.material.R$dimen: int abc_dialog_fixed_height_minor +wangdaye.com.geometricweather.R$layout: int mtrl_picker_fullscreen +androidx.transition.R$styleable: int ColorStateListItem_android_color +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.Integer index +androidx.fragment.R$id: int accessibility_custom_action_6 +com.google.android.material.R$styleable: int Snackbar_snackbarTextViewStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setValue(java.util.List) +androidx.lifecycle.Lifecycling$1: Lifecycling$1(androidx.lifecycle.LifecycleEventObserver) +androidx.constraintlayout.widget.R$style: int Platform_V21_AppCompat +okio.Okio: okio.Source source(java.io.InputStream,okio.Timeout) +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_showMotionSpec +com.bumptech.glide.integration.okhttp.R$dimen: int notification_action_icon_size +com.jaredrummler.android.colorpicker.R$id: int chronometer +okio.Okio$1: Okio$1(okio.Timeout,java.io.OutputStream) +com.jaredrummler.android.colorpicker.R$layout: int abc_screen_simple +androidx.constraintlayout.widget.R$dimen: int tooltip_corner_radius +okio.GzipSource: void updateCrc(okio.Buffer,long,long) +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: long produced +okhttp3.Response$Builder: okhttp3.Response$Builder cacheResponse(okhttp3.Response) +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner inner +com.google.android.material.R$styleable: int MaterialCalendarItem_itemTextColor +androidx.appcompat.R$styleable: int AlertDialog_multiChoiceItemLayout +com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +androidx.transition.R$drawable: int notify_panel_notification_icon_bg +androidx.legacy.coreutils.R$layout: int notification_action +com.jaredrummler.android.colorpicker.R$attr: int dialogLayout +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getRelativeHumidity() +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: float getIntervalInHour() +okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory newSslSocketFactory(javax.net.ssl.X509TrustManager) +okhttp3.ConnectionSpec: java.lang.String[] tlsVersions +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_button_material +androidx.preference.R$string: int abc_menu_meta_shortcut_label +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_min +com.jaredrummler.android.colorpicker.R$attr: int actionMenuTextAppearance +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerError(java.lang.Throwable) +androidx.drawerlayout.R$dimen: int notification_small_icon_background_padding +androidx.preference.R$styleable: int ViewBackgroundHelper_backgroundTintMode +androidx.viewpager2.R$id: int accessibility_custom_action_12 +androidx.dynamicanimation.R$color: int notification_icon_bg_color +android.didikee.donate.R$id: int expanded_menu +androidx.appcompat.R$color: int switch_thumb_disabled_material_light +com.xw.repo.bubbleseekbar.R$color: int primary_text_default_material_light +androidx.hilt.work.R$id: int accessibility_custom_action_14 +com.google.android.material.R$attr: int startIconCheckable +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +androidx.lifecycle.extensions.R$integer +cyanogenmod.app.suggest.ApplicationSuggestion$1: cyanogenmod.app.suggest.ApplicationSuggestion createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$string: int action_alert +androidx.appcompat.R$styleable: int ActionMode_closeItemLayout +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeStepGranularity +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean isDisposed() +androidx.preference.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +james.adaptiveicon.R$styleable: int Spinner_android_dropDownWidth +com.jaredrummler.android.colorpicker.R$dimen: int compat_button_inset_vertical_material +com.google.android.material.R$style: int Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$attr: int colorOnSecondary +cyanogenmod.providers.CMSettings$Secure: long getLong(android.content.ContentResolver,java.lang.String,long) +com.google.android.material.R$style: int Theme_Design_Light_BottomSheetDialog +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxIo +wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setBottomText(java.lang.String) +androidx.hilt.R$id: int accessibility_action_clickable_span +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getWindDegree() +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_customNavigationLayout +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +android.didikee.donate.R$id: int action_mode_bar +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatHoveredFocusedTranslationZ(float) +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: LocationEntityDao$Properties() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitation +cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getProfile(java.lang.String) +com.jaredrummler.android.colorpicker.R$attr: int panelMenuListWidth +androidx.preference.R$attr: int windowFixedWidthMinor +com.xw.repo.bubbleseekbar.R$layout: int notification_template_part_time +com.google.android.material.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder tlsVersions(okhttp3.TlsVersion[]) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSuggest(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_transformPivotY +org.greenrobot.greendao.AbstractDaoSession: void update(java.lang.Object) +com.google.android.material.R$attr: int endIconCheckable +cyanogenmod.app.BaseLiveLockManagerService: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState FINISHED +wangdaye.com.geometricweather.R$animator: int weather_rain_1 +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_days_of_week_height +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification +android.didikee.donate.R$attr: int maxButtonHeight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: CaiYunMainlyResult$ForecastDailyBean$WeatherBean() +io.reactivex.Observable: io.reactivex.Observable combineLatest(java.lang.Iterable,io.reactivex.functions.Function,int) +androidx.constraintlayout.widget.R$dimen: int notification_main_column_padding_top +retrofit2.BuiltInConverters$ToStringConverter: java.lang.Object convert(java.lang.Object) +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String insee +okhttp3.internal.http2.Http2Reader: void readConnectionPreface(okhttp3.internal.http2.Http2Reader$Handler) +androidx.preference.R$styleable: int Preference_android_layout +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_fontVariationSettings +cyanogenmod.app.PartnerInterface: PartnerInterface(android.content.Context) +cyanogenmod.app.Profile: cyanogenmod.profiles.ConnectionSettings getSettingsForConnection(int) +com.bumptech.glide.integration.okhttp.R$id: int tag_unhandled_key_listeners +androidx.viewpager2.widget.ViewPager2: void setOrientation(int) +androidx.constraintlayout.widget.R$attr: int minHeight +androidx.vectordrawable.R$id: int accessibility_custom_action_3 +com.google.android.material.R$styleable: int AlertDialog_buttonIconDimen +androidx.preference.R$attr: int buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingLeft +okhttp3.internal.Internal: okhttp3.Call newWebSocketCall(okhttp3.OkHttpClient,okhttp3.Request) +cyanogenmod.weather.WeatherInfo$Builder: double mWindDirection +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onError(java.lang.Throwable) +com.google.android.material.R$styleable: int MaterialButton_iconPadding +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_content_inset_with_nav +com.google.android.material.R$attr: int spinBars +okhttp3.CacheControl$Builder: int maxAgeSeconds +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type AIR_QUALITY +androidx.constraintlayout.widget.R$styleable: int[] AlertDialog +androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +okhttp3.internal.ws.WebSocketReader: WebSocketReader(boolean,okio.BufferedSource,okhttp3.internal.ws.WebSocketReader$FrameCallback) +com.google.android.material.R$attr: int windowMinWidthMinor +androidx.preference.R$styleable: int MenuItem_actionViewClass +com.xw.repo.bubbleseekbar.R$attr: int contentInsetEndWithActions +org.greenrobot.greendao.database.DatabaseOpenHelper: void onUpgrade(android.database.sqlite.SQLiteDatabase,int,int) +wangdaye.com.geometricweather.R$color: int bright_foreground_material_dark +okio.Timeout: long timeoutNanos +android.didikee.donate.R$styleable: int Toolbar_subtitleTextColor +android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +androidx.constraintlayout.widget.R$attr: int textAppearanceSearchResultTitle +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_padding_start_material +androidx.constraintlayout.widget.ConstraintLayout: int getMinWidth() +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setNo2Desc(java.lang.String) +wangdaye.com.geometricweather.R$string: int key_precipitation_notification_switch +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: void setValue(java.util.List) +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.appcompat.R$style: int Widget_AppCompat_PopupWindow +com.jaredrummler.android.colorpicker.R$attr: int colorBackgroundFloating +okio.SegmentedByteString: boolean equals(java.lang.Object) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removeAllQueryParameters(java.lang.String) +androidx.preference.R$drawable: int abc_btn_check_to_on_mtrl_015 +cyanogenmod.content.Intent: java.lang.String ACTION_PROTECTED_CHANGED +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIconTint +com.xw.repo.bubbleseekbar.R$attr: int fontProviderCerts +cyanogenmod.externalviews.KeyguardExternalView: java.lang.String EXTRA_PERMISSION_LIST +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: cyanogenmod.externalviews.IExternalViewProviderFactory asInterface(android.os.IBinder) +okio.ForwardingTimeout: okio.Timeout delegate +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_popupTheme +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) +androidx.constraintlayout.widget.R$attr: int contentInsetEnd +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_android_textAppearance +com.google.gson.stream.JsonReader: char readEscapeCharacter() +com.google.android.material.R$color: int mtrl_bottom_nav_item_tint +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setHideMotionSpecResource(int) +wangdaye.com.geometricweather.R$styleable: int RoundCornerTransition_radius_to +com.turingtechnologies.materialscrollbar.R$attr: int actionModeCopyDrawable +wangdaye.com.geometricweather.R$id: int treeValue wangdaye.com.geometricweather.R$attr: int mock_diagonalsColor -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setCityId(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int[] MotionScene +com.amap.api.location.AMapLocationQualityReport: long f +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_MENU_LONG_PRESS_ACTION_VALIDATOR +org.greenrobot.greendao.AbstractDaoSession: java.lang.Object load(java.lang.Class,java.lang.Object) +wangdaye.com.geometricweather.R$id: int test_checkbox_app_button_tint +androidx.vectordrawable.animated.R$layout +james.adaptiveicon.R$styleable: int LinearLayoutCompat_divider +androidx.constraintlayout.widget.R$styleable: int OnClick_targetId +androidx.viewpager2.R$layout: int notification_template_part_chronometer +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar +okhttp3.logging.HttpLoggingInterceptor$Logger$1 +com.google.android.material.R$color: int mtrl_textinput_default_box_stroke_color +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +androidx.preference.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +com.google.android.material.R$styleable: int[] MaterialToolbar +okio.Options: void buildTrieRecursive(long,okio.Buffer,int,java.util.List,int,int,java.util.List) +androidx.appcompat.resources.R$id: int tag_accessibility_heading +okhttp3.internal.Util$1: int compare(java.lang.String,java.lang.String) +retrofit2.http.DELETE: java.lang.String value() +androidx.lifecycle.extensions.R$id: int tag_accessibility_clickable_spans +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.R$attr: int shrinkMotionSpec +androidx.transition.R$id: int transition_current_scene +com.google.android.material.R$attr: int layout_goneMarginEnd +okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache$Editor currentEditor +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Bridge +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: java.lang.Long poll() +androidx.appcompat.R$style: int Platform_AppCompat +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: cyanogenmod.app.ILiveLockScreenManagerProvider asInterface(android.os.IBinder) +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_WIFI_INFO +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$id: int chronometer +com.google.android.material.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +androidx.constraintlayout.widget.R$layout: int abc_cascading_menu_item_layout +wangdaye.com.geometricweather.R$id: int mtrl_picker_title_text +okio.Pipe$PipeSink: okio.Timeout timeout() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_scaleY +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_width_material +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerX +androidx.constraintlayout.widget.R$attr: int layout_goneMarginRight +com.turingtechnologies.materialscrollbar.R$id: int alertTitle +cyanogenmod.app.ThemeComponent: int id +androidx.hilt.work.R$anim: R$anim() +wangdaye.com.geometricweather.R$attr: int onNegativeCross +wangdaye.com.geometricweather.R$id: int ragweedTitle +wangdaye.com.geometricweather.R$drawable: int weather_haze +cyanogenmod.app.IProfileManager$Stub$Proxy: android.os.IBinder asBinder() +okhttp3.ResponseBody: java.io.Reader reader +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1(kotlin.coroutines.Continuation,java.lang.Exception) +cyanogenmod.app.CustomTile$Builder +com.google.android.material.appbar.CollapsingToolbarLayout: void setVisibility(int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_tintMode +wangdaye.com.geometricweather.R$dimen: int design_fab_size_normal +com.google.android.material.R$styleable: int AppBarLayout_liftOnScrollTargetViewId +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerId +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMode +com.github.rahatarmanahmed.cpv.CircularProgressView$9 +androidx.work.WorkInfo$State +androidx.preference.R$style: int Base_Widget_AppCompat_ListMenuView +com.google.android.material.tabs.TabLayout: void setScrollAnimatorListener(android.animation.Animator$AnimatorListener) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderTextColor +com.google.android.material.R$dimen: int abc_dialog_min_width_minor +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_NoActionBar +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +com.google.android.material.R$attr: int colorSurface +okhttp3.OkHttpClient$Builder +com.jaredrummler.android.colorpicker.R$string: int abc_capital_off +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_MAX_INDEX +android.didikee.donate.R$style: int TextAppearance_AppCompat_Body1 +okhttp3.internal.http1.Http1Codec: okhttp3.Response$Builder readResponseHeaders(boolean) +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState valueOf(java.lang.String) +com.xw.repo.bubbleseekbar.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.R$drawable: int flag_de +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isPrecipitation() +wangdaye.com.geometricweather.main.dialogs.LearnMoreAboutResidentLocationDialog +okhttp3.internal.http1.Http1Codec$FixedLengthSink: long bytesRemaining +androidx.appcompat.app.AppCompatDelegateImpl$PanelFeatureState$SavedState +com.google.android.material.R$attr: int actionModeSelectAllDrawable +androidx.hilt.lifecycle.R$anim: int fragment_close_exit +androidx.transition.R$id: int tag_unhandled_key_listeners +cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean hasKey(java.lang.Object) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_position +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Ceiling +com.google.android.material.R$attr: int subtitleTextAppearance +com.google.android.gms.common.ConnectionResult +com.google.android.gms.common.server.FavaDiagnosticsEntity: android.os.Parcelable$Creator CREATOR +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDefaultSmsSub +okhttp3.Cookie$Builder +androidx.vectordrawable.R$id: int accessibility_custom_action_15 +io.reactivex.internal.subscriptions.DeferredScalarSubscription: DeferredScalarSubscription(org.reactivestreams.Subscriber) +androidx.preference.R$styleable: int PreferenceGroup_orderingFromXml +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: long index +androidx.preference.R$attr: int iconTint +android.didikee.donate.R$attr: int searchViewStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: int status +okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot removeSnapshot +com.google.android.material.R$dimen: int mtrl_card_checked_icon_size +wangdaye.com.geometricweather.R$id: int activity_widget_config_container +cyanogenmod.providers.CMSettings$System: java.lang.String LOCKSCREEN_PIN_SCRAMBLE_LAYOUT +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_closeItemLayout +com.google.android.material.R$styleable: int ViewStubCompat_android_layout +androidx.vectordrawable.animated.R$dimen: int notification_main_column_padding_top +androidx.constraintlayout.widget.R$color: int abc_search_url_text_selected +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: double Value +okhttp3.logging.LoggingEventListener$1 +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_baselineAligned +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActivityChooserView +com.google.android.material.R$attr: int deriveConstraintsFrom +androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_height_material +com.google.android.material.R$dimen: int mtrl_high_ripple_focused_alpha +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error +wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacingVertical +wangdaye.com.geometricweather.R$drawable: int ic_map_clock +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getBackgroundColor() +com.turingtechnologies.materialscrollbar.R$attr: int switchTextAppearance +androidx.constraintlayout.widget.R$id: int tag_screen_reader_focusable +androidx.viewpager2.R$dimen: int notification_right_side_padding_top +androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_editor_absoluteX +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Surface +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +com.turingtechnologies.materialscrollbar.R$styleable: int[] FlowLayout +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionMode +com.google.gson.stream.JsonReader: int peekNumber() +james.adaptiveicon.R$styleable: int AppCompatTextView_textAllCaps +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float getMilliMeters(float) +okhttp3.HttpUrl: java.lang.String QUERY_ENCODE_SET +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setPrecipitationColor(int) +com.google.android.gms.base.R$attr: int imageAspectRatioAdjust +com.bumptech.glide.R$drawable: int notification_tile_bg +com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_android_alpha +com.google.gson.internal.LazilyParsedNumber: java.lang.String toString() +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int) +android.didikee.donate.R$color: int abc_hint_foreground_material_light +okio.RealBufferedSink: okio.BufferedSink write(okio.ByteString) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getSunSet() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_max +james.adaptiveicon.R$attr: int isLightTheme +james.adaptiveicon.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +retrofit2.ParameterHandler$QueryMap: ParameterHandler$QueryMap(java.lang.reflect.Method,int,retrofit2.Converter,boolean) +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile build() +com.jaredrummler.android.colorpicker.R$attr: int colorSwitchThumbNormal +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconGravity +james.adaptiveicon.R$styleable: int ActionBarLayout_android_layout_gravity +wangdaye.com.geometricweather.R$layout: int mtrl_picker_dialog +okhttp3.internal.connection.RouteDatabase: boolean shouldPostpone(okhttp3.Route) wangdaye.com.geometricweather.common.basic.models.weather.History: int daytimeTemperature -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTrendTemperature(android.content.Context,java.lang.Integer,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -androidx.constraintlayout.widget.R$dimen: int tooltip_precise_anchor_threshold -okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeOptional(java.lang.Object,java.lang.Object[]) -wangdaye.com.geometricweather.R$attr: int flow_maxElementsWrap -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.R$mipmap -wangdaye.com.geometricweather.R$array: R$array() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton_CloseMode -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipMinTouchTargetSize -cyanogenmod.hardware.ICMHardwareService: byte[] readPersistentBytes(java.lang.String) -cyanogenmod.platform.Manifest$permission: java.lang.String HARDWARE_ABSTRACTION_ACCESS -wangdaye.com.geometricweather.background.service.Hilt_CMWeatherProviderService: Hilt_CMWeatherProviderService() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: wangdaye.com.geometricweather.db.entities.HourlyEntity readEntity(android.database.Cursor,int) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display2 -io.reactivex.internal.util.NotificationLite: boolean isSubscription(java.lang.Object) -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Settings peerSettings -com.xw.repo.bubbleseekbar.R$attr: int editTextBackground -com.google.android.gms.location.LocationSettingsStates: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.subscribers.DeferredScalarSubscriber: long serialVersionUID -okio.Buffer: okio.ByteString hmac(java.lang.String,okio.ByteString) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_TextView_SpinnerItem -androidx.preference.R$styleable: int PreferenceFragment_android_dividerHeight -com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentCompatStyle -wangdaye.com.geometricweather.R$attr: int paddingEnd -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_disabled_material_dark -com.jaredrummler.android.colorpicker.R$color: int abc_tint_edittext -wangdaye.com.geometricweather.R$attr: int cpv_animAutostart -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status CANCELLED -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) -androidx.preference.R$drawable: int abc_dialog_material_background -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetEndWithActions -androidx.hilt.R$id: int accessibility_custom_action_21 -com.amap.api.location.APSServiceBase: android.os.IBinder onBind(android.content.Intent) -android.didikee.donate.R$string: int abc_searchview_description_search -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_subheader -androidx.preference.R$styleable: int Toolbar_titleMarginEnd -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerSlack -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Light -okhttp3.internal.connection.RealConnection$1: void close() -okhttp3.Interceptor$Chain: okhttp3.Response proceed(okhttp3.Request) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: long serialVersionUID -james.adaptiveicon.R$drawable: int abc_btn_radio_to_on_mtrl_015 -com.google.android.material.R$styleable: int Constraint_motionStagger -wangdaye.com.geometricweather.R$dimen: int tooltip_precise_anchor_threshold -com.jaredrummler.android.colorpicker.R$id: int chronometer -android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMark -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_margin -androidx.vectordrawable.R$styleable: int GradientColor_android_startY -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_divider_material -wangdaye.com.geometricweather.R$layout: int cpv_preference_circle -cyanogenmod.app.BaseLiveLockManagerService: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataSpinner -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_NoActionBar_Bridge -androidx.core.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String admin2 -com.bumptech.glide.load.resource.gif.GifFrameLoader: void setOnEveryFrameReadyListener(com.bumptech.glide.load.resource.gif.GifFrameLoader$OnEveryFrameListener) -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onComplete() -retrofit2.Retrofit$1: retrofit2.Platform platform -com.google.android.material.R$anim: int abc_fade_out -wangdaye.com.geometricweather.R$attr: int contentInsetEndWithActions -androidx.drawerlayout.R$styleable: int GradientColor_android_endColor -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.View onCreatePanelView(int) -okhttp3.internal.cache.DiskLruCache$Editor$1 -com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalBias -cyanogenmod.externalviews.KeyguardExternalView$4: cyanogenmod.externalviews.KeyguardExternalView this$0 -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleGravity -com.google.android.material.R$styleable: int[] KeyPosition -okhttp3.ResponseBody$BomAwareReader: java.io.Reader delegate -com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_indicator_material -wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_day_selection -com.jaredrummler.android.colorpicker.R$id: int async -android.didikee.donate.R$dimen: int abc_switch_padding -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int NOT_AVAILABLE -androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context) -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitleTextColor -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeStyle -com.xw.repo.bubbleseekbar.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_13 -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_change_size_expand_motion_spec -james.adaptiveicon.R$styleable: int AppCompatTextView_lineHeight -androidx.appcompat.R$layout: int notification_template_part_time -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -okio.GzipSink: GzipSink(okio.Sink) -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getStartIconContentDescription() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility Visibility -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_corner -okhttp3.internal.connection.RealConnection: int MAX_TUNNEL_ATTEMPTS -retrofit2.ServiceMethod: ServiceMethod() -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryInnerObserver BOUNDARY_DISPOSED -com.google.android.material.R$attr: int autoSizeMinTextSize -wangdaye.com.geometricweather.R$attr: int alphabeticModifiers -androidx.core.R$id: int forever -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node removeInternalByKey(java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int mainTextColorResId -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$attr: int expandedTitleMarginStart -retrofit2.ParameterHandler$RelativeUrl -com.google.gson.stream.JsonReader: java.lang.String nextQuotedValue(char) -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object getAndNullValue() -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintStart_toEndOf -androidx.core.R$id: int blocking -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginLeft -wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_week_setting -james.adaptiveicon.R$id: int action_bar_title -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_5 -okio.Pipe: okio.Source source() -androidx.viewpager.widget.PagerTitleStrip -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void dispose() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary DegreeDaySummary -androidx.preference.R$style: int Widget_AppCompat_DrawerArrowToggle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_PrimarySurface -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_android_src -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: android.os.IBinder mRemote -io.reactivex.internal.observers.DeferredScalarObserver: void onComplete() -com.google.gson.FieldNamingPolicy: java.lang.String translateName(java.lang.reflect.Field) -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$attr: int rv_side -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: MfForecastResult$ProbabilityForecast$ProbabilitySnow() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -wangdaye.com.geometricweather.R$drawable: int notif_temp_7 -com.google.android.gms.location.LocationAvailability: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Id -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sun_icon -okhttp3.ResponseBody$1: ResponseBody$1(okhttp3.MediaType,long,okio.BufferedSource) -okhttp3.FormBody: java.lang.String encodedValue(int) -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayDetailsProvider: WidgetClockDayDetailsProvider() -com.jaredrummler.android.colorpicker.R$attr: int srcCompat -io.reactivex.observers.TestObserver$EmptyObserver: void onError(java.lang.Throwable) -okio.Buffer: java.lang.String readUtf8() -com.google.android.material.button.MaterialButton: void setIconGravity(int) -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: java.lang.Object poll() -wangdaye.com.geometricweather.R$color: int weather_source_caiyun -com.amap.api.location.AMapLocation: void setSatellites(int) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean disposed -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.R$attr: int titleMargins -com.jaredrummler.android.colorpicker.R$layout: int notification_template_part_time -com.google.android.material.R$string: int mtrl_picker_navigate_to_year_description -com.bumptech.glide.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: CaiYunMainlyResult$CurrentBean$HumidityBean() -android.didikee.donate.R$attr: int listPreferredItemPaddingRight +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory LOW +com.google.android.material.R$attr: int colorPrimaryDark +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float rain +cyanogenmod.providers.CMSettings$System$2: boolean validate(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum +androidx.vectordrawable.animated.R$dimen: R$dimen() +com.jaredrummler.android.colorpicker.R$attr: int windowFixedWidthMajor +wangdaye.com.geometricweather.R$styleable: int Chip_android_textColor +com.github.rahatarmanahmed.cpv.CircularProgressView: android.graphics.Paint paint +androidx.appcompat.app.ActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_fontFamily +androidx.hilt.work.R$style: int Widget_Compat_NotificationActionContainer +androidx.appcompat.view.menu.MenuPopupHelper +com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_android_background +retrofit2.Utils$WildcardTypeImpl: int hashCode() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setPubTime(java.util.Date) cyanogenmod.app.IPartnerInterface$Stub$Proxy: android.os.IBinder asBinder() -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableStartCompat -okio.Timeout$1: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) -com.google.android.material.R$styleable: int KeyTimeCycle_android_rotationY -androidx.recyclerview.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$string: int settings_category_basic -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: void setDirection(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX) -com.google.android.material.R$styleable: int Toolbar_popupTheme -com.google.android.material.slider.BaseSlider: void setEnabled(boolean) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_disabled_holo_dark -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionDropDownStyle -androidx.appcompat.R$id: int accessibility_custom_action_17 -androidx.transition.R$dimen: int notification_subtext_size -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.ProgressIndicatorSpec getSpec() -com.google.android.material.R$attr: int layout_goneMarginLeft -com.google.android.material.R$drawable: int ic_mtrl_chip_checked_circle -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCityId -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActivityChooserView +com.jaredrummler.android.colorpicker.R$style: int Preference_DropDown_Material +com.bumptech.glide.integration.okhttp.R$id: int text2 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed Speed +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: java.lang.String Unit +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerX +com.google.gson.stream.JsonWriter: void setIndent(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setBrandId(java.lang.String) +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String INCREASING_VOLUME +androidx.viewpager2.R$id: int accessibility_custom_action_22 +com.jaredrummler.android.colorpicker.R$attr: int trackTint +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String pollutant +androidx.appcompat.widget.AppCompatCheckBox +com.google.android.material.R$id: int accessibility_custom_action_28 +com.google.android.material.snackbar.SnackbarContentLayout: void setMaxInlineActionWidth(int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum Minimum +wangdaye.com.geometricweather.R$attr: int preferenceTheme +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_disabled_holo_light +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMargin +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SeekBar +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String country +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void disposeInner() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_visibility +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onComplete() +wangdaye.com.geometricweather.db.entities.DailyEntity: int getDaytimeTemperature() +com.google.android.material.R$id: int scrollable +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +androidx.constraintlayout.widget.R$style: int Base_V22_Theme_AppCompat +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listDividerAlertDialog +androidx.constraintlayout.widget.R$attr: int contentInsetEndWithActions +wangdaye.com.geometricweather.R$dimen: int mtrl_transition_shared_axis_slide_distance +com.google.android.material.R$styleable: int Chip_android_maxWidth +wangdaye.com.geometricweather.R$string: int feedback_readd_location +okhttp3.internal.http.HttpDate: java.text.DateFormat[] BROWSER_COMPATIBLE_DATE_FORMATS +cyanogenmod.externalviews.ExternalView: void onActivityStarted(android.app.Activity) +androidx.constraintlayout.widget.ConstraintHelper +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX +android.didikee.donate.R$string: int abc_activitychooserview_choose_application +android.didikee.donate.R$attr: int actionOverflowButtonStyle +james.adaptiveicon.R$attr: int actionModeCopyDrawable +androidx.core.R$dimen: int notification_small_icon_size_as_large +androidx.lifecycle.extensions.R$drawable: int notification_template_icon_low_bg +com.google.android.material.R$attr: R$attr() +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay() +androidx.preference.R$id: int src_in +com.google.android.material.chip.ChipGroup: void setShowDividerHorizontal(int) +wangdaye.com.geometricweather.R$dimen: int abc_button_padding_horizontal_material +androidx.vectordrawable.R$dimen: R$dimen() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius +com.jaredrummler.android.colorpicker.R$attr: int showDividers +okhttp3.Dispatcher: Dispatcher(java.util.concurrent.ExecutorService) +androidx.preference.R$styleable: int AppCompatTheme_actionBarTabTextStyle +com.loc.k: k(java.lang.String) +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: MfEphemerisResult() +wangdaye.com.geometricweather.R$id: int visible_removing_fragment_view_tag com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardPreventCornerOverlap -androidx.preference.R$id: int alertTitle -com.turingtechnologies.materialscrollbar.R$integer: int mtrl_tab_indicator_anim_duration_ms -com.amap.api.fence.GeoFence: GeoFence(android.os.Parcel) -cyanogenmod.themes.IThemeService$Stub$Proxy: android.os.IBinder mRemote -com.bumptech.glide.R$styleable: int GradientColor_android_centerX -com.xw.repo.bubbleseekbar.R$attr: int subMenuArrow -androidx.lifecycle.MediatorLiveData: androidx.arch.core.internal.SafeIterableMap mSources -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -androidx.constraintlayout.widget.R$styleable: int ActionBar_divider -androidx.preference.R$styleable: int Preference_summary -com.google.android.gms.base.R$string: int common_google_play_services_update_title -com.xw.repo.bubbleseekbar.R$id: int scrollIndicatorDown -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_height -okio.Buffer: okio.Buffer writeString(java.lang.String,java.nio.charset.Charset) -androidx.work.R$id: int accessibility_custom_action_15 -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView_DropDown -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String suggest -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_toolbar -cyanogenmod.app.CMContextConstants: java.lang.String CM_ICON_CACHE_SERVICE -wangdaye.com.geometricweather.R$dimen: int abc_switch_padding -androidx.appcompat.resources.R$dimen: int notification_subtext_size -james.adaptiveicon.R$styleable: int DrawerArrowToggle_drawableSize -com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_pressed -james.adaptiveicon.R$id: int action_menu_presenter -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_iconTint -androidx.viewpager2.R$layout: int notification_template_icon_group -okhttp3.internal.ws.WebSocketReader: boolean closed -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object call() -com.jaredrummler.android.colorpicker.R$attr: int actionModeShareDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: java.lang.String Unit -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void dispose() -com.google.android.material.R$dimen: int design_bottom_sheet_elevation -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onPositiveCross -androidx.hilt.work.R$styleable: int GradientColor_android_endY -com.github.rahatarmanahmed.cpv.CircularProgressView$9 -cyanogenmod.app.ICMTelephonyManager -com.xw.repo.bubbleseekbar.R$attr: int bsb_always_show_bubble_delay -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIFIAP -io.reactivex.Observable: io.reactivex.Observable interval(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -android.didikee.donate.R$attr: int maxButtonHeight -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.WeatherEntity) -androidx.legacy.coreutils.R$color: R$color() -wangdaye.com.geometricweather.R$drawable: int ic_launcher_foreground -androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy: ConstraintProxy$StorageNotLowProxy() -androidx.transition.R$dimen: int notification_right_side_padding_top -com.google.android.material.R$drawable: int abc_btn_radio_material -androidx.legacy.coreutils.R$drawable: int notify_panel_notification_icon_bg -james.adaptiveicon.R$styleable: int AppCompatTheme_android_windowAnimationStyle -cyanogenmod.weather.CMWeatherManager$2$2: int val$status -okhttp3.internal.http2.Huffman$Node -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean delayError -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_height_material -com.turingtechnologies.materialscrollbar.R$attr: int divider -wangdaye.com.geometricweather.R$string: int bottomsheet_action_expand_halfway -com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_Tooltip -wangdaye.com.geometricweather.R$styleable: int Slider_labelBehavior -androidx.drawerlayout.R$id: int actions -android.didikee.donate.R$styleable: int MenuItem_android_visible -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro[] astros -com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_top_material -wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontTitle +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_Icon +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dark +james.adaptiveicon.R$style: int Widget_AppCompat_ListView_DropDown +androidx.appcompat.R$styleable: int MenuItem_android_visible +okhttp3.internal.http1.Http1Codec$FixedLengthSource: Http1Codec$FixedLengthSource(okhttp3.internal.http1.Http1Codec,long) +okhttp3.internal.http.RetryAndFollowUpInterceptor +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_PARSER +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.R$string: int feedback_location_help_title +wangdaye.com.geometricweather.R$attr: int elevationOverlayColor +wangdaye.com.geometricweather.common.basic.models.weather.Alert: long getTime() +androidx.appcompat.resources.R$id: int action_image +androidx.transition.R$styleable: int FontFamilyFont_ttcIndex +androidx.legacy.coreutils.R$attr: int fontProviderCerts +com.google.android.material.R$styleable: int AppCompatTextView_textAllCaps +cyanogenmod.app.Profile$ProfileTrigger: int access$200(cyanogenmod.app.Profile$ProfileTrigger) +cyanogenmod.themes.ThemeChangeRequest$1: java.lang.Object[] newArray(int) +james.adaptiveicon.R$attr: int buttonTintMode +androidx.hilt.R$layout: int notification_action_tombstone +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$id: int dragLeft +okhttp3.RealCall: okhttp3.OkHttpClient client +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableTop +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Longitude +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: boolean cancelled +com.google.android.material.button.MaterialButton: void setIconTint(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean) +androidx.appcompat.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_light +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button +james.adaptiveicon.R$style: int Widget_AppCompat_ListView +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_gravity +com.google.android.material.R$drawable: int abc_btn_radio_to_on_mtrl_000 +wangdaye.com.geometricweather.common.ui.activities.AllergenActivity: AllergenActivity() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float thunderstormPrecipitationProbability +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_weight +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextColor +androidx.preference.R$attr +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_wrapMode +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_Design_TabLayout +james.adaptiveicon.R$styleable: int PopupWindowBackgroundState_state_above_anchor +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeTextType +james.adaptiveicon.R$styleable: int AppCompatTheme_listMenuViewStyle +androidx.preference.R$drawable: int notification_template_icon_low_bg +com.jaredrummler.android.colorpicker.R$attr: int layout_keyline +com.google.android.material.R$attr: int boxStrokeErrorColor +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onSubscribe(org.reactivestreams.Subscription) +james.adaptiveicon.R$color: int primary_text_default_material_dark +androidx.appcompat.resources.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.R$attr: int dialogIcon +wangdaye.com.geometricweather.R$styleable: int[] TabLayout +wangdaye.com.geometricweather.R$id: int wrap_content +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_singleChoiceItemLayout +androidx.dynamicanimation.R$color: R$color() +androidx.preference.R$id: int text2 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowMinWidthMinor +cyanogenmod.hardware.ICMHardwareService$Stub +wangdaye.com.geometricweather.db.entities.LocationEntity: void setDistrict(java.lang.String) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder query(java.lang.String) +com.google.android.material.R$attr: int layout_dodgeInsetEdges +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig historyEntityDaoConfig +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String url +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void setLiveLockScreenEnabled(boolean) +android.didikee.donate.R$style: int Widget_AppCompat_EditText +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: int hashCode() +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.chip.Chip: void setChipDrawable(com.google.android.material.chip.ChipDrawable) +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +com.google.android.material.switchmaterial.SwitchMaterial +wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody build() +com.google.android.material.slider.RangeSlider: void setTrackInactiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_BottomSheetDialog +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathStart(float) +okhttp3.Response$Builder: Response$Builder() +wangdaye.com.geometricweather.R$drawable: int ic_clock_black_24dp +com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getProgressDrawable() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_SearchView +james.adaptiveicon.R$id: int action_context_bar +wangdaye.com.geometricweather.R$attr: int placeholder_emptyVisibility +okhttp3.ConnectionPool: boolean connectionBecameIdle(okhttp3.internal.connection.RealConnection) +com.google.android.material.R$dimen: int material_clock_hand_center_dot_radius +com.google.android.material.R$styleable: int[] DrawerArrowToggle +wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_range_end +com.google.android.material.R$styleable: int LinearLayoutCompat_android_gravity +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.util.List text +android.didikee.donate.R$drawable: int abc_cab_background_top_mtrl_alpha +wangdaye.com.geometricweather.R$layout: int design_text_input_start_icon +wangdaye.com.geometricweather.R$drawable: int mtrl_ic_arrow_drop_up +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemBackgroundRes(int) +wangdaye.com.geometricweather.R$drawable: int googleg_disabled_color_18 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: CaiYunForecastResult$PrecipitationBean() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties +okhttp3.internal.http.RealInterceptorChain: okhttp3.Response proceed(okhttp3.Request,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http.HttpCodec,okhttp3.internal.connection.RealConnection) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric +com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_NORMAL +wangdaye.com.geometricweather.R$attr: int materialCalendarMonth +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean getCurrent() +android.didikee.donate.R$styleable: int ActionBar_background +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconSize +androidx.appcompat.R$id: int default_activity_button +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] publicSuffixExceptionListBytes +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_7 +wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_ripple_color +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox +com.google.android.material.textfield.TextInputLayout: void setCounterMaxLength(int) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_AutoCompleteTextView +androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableCompat +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircle +okio.Buffer: long indexOf(byte,long,long) +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Snackbar +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIconTintList(android.content.res.ColorStateList) +androidx.preference.R$styleable: int Toolbar_logoDescription +wangdaye.com.geometricweather.R$layout: int activity_settings +androidx.lifecycle.extensions.R$id: int tag_accessibility_heading +androidx.appcompat.widget.AppCompatTextView: int[] getAutoSizeTextAvailableSizes() +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: $Gson$Types$WildcardTypeImpl(java.lang.reflect.Type[],java.lang.reflect.Type[]) +wangdaye.com.geometricweather.R$string: int abc_capital_on +androidx.lifecycle.R: R() +com.google.android.material.textfield.TextInputEditText: com.google.android.material.textfield.TextInputLayout getTextInputLayout() +androidx.lifecycle.Lifecycle: androidx.lifecycle.Lifecycle$State getCurrentState() +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceTheme +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String value +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabBackground +androidx.drawerlayout.R$attr: int fontProviderCerts +androidx.hilt.lifecycle.R$integer +com.amap.api.location.AMapLocation: int s +okhttp3.MediaType: java.lang.String subtype() +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_background +com.bumptech.glide.integration.okhttp.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$styleable: int MotionLayout_applyMotionScene +wangdaye.com.geometricweather.R$drawable: int widget_trend_hourly +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathStart() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_padding_left +com.xw.repo.bubbleseekbar.R$attr: int progressBarStyle +androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_PEOPLE_LOOKUP_VALIDATOR +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String cityId +cyanogenmod.hardware.CMHardwareManager: int[] getDisplayColorCalibrationArray() +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemSummary(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int SearchView_searchHintIcon +androidx.core.R$styleable: int FontFamily_fontProviderFetchStrategy +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_LOCATION_PERMISSION +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int) +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent valueOf(java.lang.String) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Small +androidx.preference.R$attr: int iconifiedByDefault +wangdaye.com.geometricweather.R$drawable: int abc_cab_background_top_material +com.google.android.material.R$attr: int layout_constraintHeight_percent +com.amap.api.fence.GeoFence: int ERROR_NO_VALIDFENCE +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String d() +cyanogenmod.providers.CMSettings$Global: java.lang.String WIFI_AUTO_PRIORITIES_CONFIGURATION +okhttp3.Headers$Builder: okhttp3.Headers$Builder set(java.lang.String,java.util.Date) +androidx.hilt.work.R$drawable: int notification_bg +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.constraintlayout.widget.R$attr: int actionBarSplitStyle +com.bumptech.glide.integration.okhttp.R$attr: int fontVariationSettings +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +com.jaredrummler.android.colorpicker.R$attr: int panelMenuListTheme +com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat +androidx.constraintlayout.widget.R$id: int progress_horizontal +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_EXPORT_WITH_RC4_40_MD5 +com.google.android.material.slider.RangeSlider: void setTrackHeight(int) +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_3 +com.jaredrummler.android.colorpicker.ColorPickerView +cyanogenmod.externalviews.ExternalView$1: ExternalView$1(cyanogenmod.externalviews.ExternalView) +com.google.android.material.R$dimen: int mtrl_calendar_header_height_fullscreen +com.google.android.material.R$styleable: int ActionBar_itemPadding +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginTop +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBaseline_creator +androidx.appcompat.R$styleable: int MenuItem_contentDescription +android.didikee.donate.R$color: int primary_text_disabled_material_light +james.adaptiveicon.R$color: int notification_action_color_filter +androidx.appcompat.R$attr: int lastBaselineToBottomHeight +okhttp3.RealCall$AsyncCall +androidx.activity.R$integer +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean modifyInHour +com.google.android.material.slider.RangeSlider: void setTickVisible(boolean) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type valueOf(java.lang.String) +androidx.fragment.R$color: R$color() +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isModify +wangdaye.com.geometricweather.R$attr: int helperTextEnabled +com.google.android.material.slider.BaseSlider: java.util.List getValues() +james.adaptiveicon.R$attr: int defaultQueryHint +wangdaye.com.geometricweather.R$layout: int notification_base_big +james.adaptiveicon.R$styleable: int AppCompatImageView_tint +com.jaredrummler.android.colorpicker.R$id: int shades_divider +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColor +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_fabCustomSize +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModePasteDrawable +wangdaye.com.geometricweather.R$style: int CardView_Dark +com.google.android.material.R$styleable: int MenuView_preserveIconSpacing +androidx.core.R$id: int italic +james.adaptiveicon.R$color: int abc_search_url_text_selected +okio.Buffer: long indexOf(byte,long) +wangdaye.com.geometricweather.R$attr: int cornerSizeBottomRight +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel +androidx.appcompat.widget.ActivityChooserView +wangdaye.com.geometricweather.R$attr: int windowFixedWidthMinor +com.google.android.material.R$styleable: int AppCompatTextView_drawableEndCompat +androidx.vectordrawable.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: java.util.Date updateTime +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getSunRise() +com.google.android.material.chip.Chip: void setChipStrokeColor(android.content.res.ColorStateList) +com.baidu.location.indoor.mapversion.c.c$b: java.lang.String g +androidx.appcompat.R$string: int abc_menu_space_shortcut_label +androidx.appcompat.widget.LinearLayoutCompat: void setBaselineAligned(boolean) +james.adaptiveicon.R$attr: int dividerPadding +com.bumptech.glide.R$attr: int alpha +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRealFeelTemperature(java.lang.Integer) +com.google.android.material.R$styleable: int AppCompatTheme_actionMenuTextColor +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItem +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_25 +com.xw.repo.bubbleseekbar.R$layout: int select_dialog_singlechoice_material +cyanogenmod.themes.ThemeManager$2$1: void run() +okhttp3.internal.http2.Http2Connection: long degradedPingsSent +wangdaye.com.geometricweather.R$styleable: int KeyCycle_wavePeriod +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX indices +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroup +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator MENU_WAKE_SCREENN_VALIDATOR +androidx.appcompat.R$attr: int listPopupWindowStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_textLocale +androidx.appcompat.R$styleable: int Toolbar_maxButtonHeight +com.google.android.material.R$styleable: int TabLayout_tabIconTintMode +com.google.android.material.R$id: int aligned +com.xw.repo.bubbleseekbar.R$attr: int font +wangdaye.com.geometricweather.R$styleable: int Slider_tickColorInactive +com.turingtechnologies.materialscrollbar.R$anim: int design_bottom_sheet_slide_out +androidx.preference.R$styleable: int StateListDrawable_android_enterFadeDuration +androidx.constraintlayout.helper.widget.Flow: void setHorizontalAlign(int) +androidx.appcompat.view.menu.ActionMenuItemView: void setChecked(boolean) +androidx.constraintlayout.widget.R$styleable: int[] ActionMenuItemView +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_numericModifiers +wangdaye.com.geometricweather.R$id: int sides +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ab_share_pack_mtrl_alpha +com.google.android.material.chip.Chip: void setChipIconTintResource(int) +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String getProviderId() +cyanogenmod.app.Profile: void setName(java.lang.String) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Long getId() +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_min +com.google.android.gms.internal.location.zzbe: android.os.Parcelable$Creator CREATOR +com.jaredrummler.android.colorpicker.R$attr: int iconTintMode +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_Switch +com.google.android.material.R$styleable: int Layout_layout_constraintTop_toBottomOf +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.R$id: int container_main_aqi_recyclerView +wangdaye.com.geometricweather.R$attr: int listDividerAlertDialog +okio.Options: okio.Options of(okio.ByteString[]) +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +com.google.android.material.R$string: int error_icon_content_description +cyanogenmod.app.CustomTile: CustomTile(android.os.Parcel) +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_dark +okhttp3.MediaType: boolean equals(java.lang.Object) +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: WeatherProviderService$ServiceHandler(cyanogenmod.weatherservice.WeatherProviderService,android.os.Looper) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Tooltip +okio.Buffer: okio.Segment writableSegment(int) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +okhttp3.internal.connection.RealConnection +com.turingtechnologies.materialscrollbar.R$styleable: int ScrimInsetsFrameLayout_insetForeground +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getUVDescription() +org.greenrobot.greendao.database.DatabaseOpenHelper: void onOpen(org.greenrobot.greendao.database.Database) +com.google.android.material.floatingactionbutton.FloatingActionButton: void hide(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) +android.didikee.donate.R$drawable: int abc_ic_arrow_drop_right_black_24dp +okhttp3.internal.http1.Http1Codec: okio.BufferedSink sink +androidx.preference.R$layout: int abc_list_menu_item_checkbox +androidx.loader.R$styleable: int[] GradientColorItem +okhttp3.internal.ws.RealWebSocket: void cancel() +okio.AsyncTimeout: long timeoutAt +androidx.lifecycle.Transformations$1: androidx.lifecycle.MediatorLiveData val$result +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setTime(long) +wangdaye.com.geometricweather.R$attr: int warmth +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_maxHeight +com.bumptech.glide.integration.okhttp.R$attr: int layout_anchor +com.google.android.material.R$style: int CardView_Light +cyanogenmod.power.IPerformanceManager$Stub$Proxy: boolean getProfileHasAppProfiles(int) +androidx.activity.R$color: int ripple_material_light +cyanogenmod.hardware.CMHardwareManager: int FEATURE_VIBRATOR +okio.ForwardingSource: okio.Source delegate() +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableItem_android_id +okhttp3.Cache: int networkCount() +androidx.lifecycle.FullLifecycleObserver: void onResume(androidx.lifecycle.LifecycleOwner) +com.google.android.material.R$layout: int mtrl_picker_header_toggle +androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemBackground +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetBottom +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: Http2Codec$StreamFinishingSource(okhttp3.internal.http2.Http2Codec,okio.Source) +james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +cyanogenmod.weather.WeatherInfo: double mHumidity +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitation(java.lang.Float) +com.google.android.material.textfield.TextInputLayout: void setEndIconOnLongClickListener(android.view.View$OnLongClickListener) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Time +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float co +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_weightSum +okhttp3.internal.tls.BasicTrustRootIndex: BasicTrustRootIndex(java.security.cert.X509Certificate[]) +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_PING +androidx.work.impl.WorkDatabase +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler +com.google.android.material.R$id: int icon_group +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver) +cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo mWeatherInfo +com.xw.repo.bubbleseekbar.R$attr: int actionModeWebSearchDrawable +com.jaredrummler.android.colorpicker.R$anim: int abc_fade_out +okio.BufferedSource: long readAll(okio.Sink) +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(android.os.Parcel) +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage ENCODE +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat +android.didikee.donate.R$color: int background_floating_material_dark +retrofit2.adapter.rxjava2.CallEnqueueObservable: CallEnqueueObservable(retrofit2.Call) +com.google.android.material.R$styleable: int Tooltip_android_minHeight +com.google.android.material.R$attr: int barrierDirection +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +okhttp3.internal.http.RealInterceptorChain: okhttp3.Connection connection() +androidx.dynamicanimation.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.R$attr: int bsb_thumb_radius_on_dragging +androidx.preference.R$dimen: int notification_large_icon_height +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.Scheduler$Worker worker +androidx.appcompat.R$styleable: int GradientColor_android_centerColor +androidx.appcompat.R$style: int Base_Theme_AppCompat_DialogWhenLarge +wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_colorShape +retrofit2.OkHttpCall: boolean isExecuted() +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderFetchTimeout +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void cancel() +androidx.constraintlayout.widget.R$color: int abc_tint_btn_checkable +com.amap.api.fence.GeoFenceManagerBase +com.google.android.material.R$color: int mtrl_fab_bg_color_selector +androidx.swiperefreshlayout.R$id: int tag_accessibility_heading +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver +okhttp3.CipherSuite: CipherSuite(java.lang.String) +androidx.preference.R$styleable: int Preference_selectable +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setState(java.lang.String) +androidx.lifecycle.extensions.R$id: int forever +wangdaye.com.geometricweather.R$style: int Platform_AppCompat +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int boxStrokeWidth +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconEndPadding +wangdaye.com.geometricweather.R$attr: int seekBarPreferenceStyle +androidx.hilt.work.R$styleable: int GradientColor_android_gradientRadius +james.adaptiveicon.R$style: int Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Action +wangdaye.com.geometricweather.R$attr: int textStartPadding +wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_android_alpha +androidx.constraintlayout.widget.R$drawable: int btn_checkbox_checked_mtrl +okhttp3.RealCall: okhttp3.Response getResponseWithInterceptorChain() +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_APP_SWITCH_ACTION +wangdaye.com.geometricweather.R$styleable: int[] ExtendedFloatingActionButton_Behavior_Layout +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status REJECTED +android.didikee.donate.R$attr: int listMenuViewStyle +com.xw.repo.bubbleseekbar.R$drawable: int abc_action_bar_item_background_material +androidx.preference.R$styleable: int ActionBar_logo +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTextView +com.amap.api.fence.PoiItem: double getLatitude() +androidx.lifecycle.extensions.R$attr: R$attr() +androidx.viewpager2.R$drawable: int notification_bg_low_normal +androidx.preference.R$attr: int actionBarWidgetTheme +androidx.preference.R$style: int Theme_AppCompat_NoActionBar +androidx.activity.OnBackPressedDispatcher$LifecycleOnBackPressedCancellable +wangdaye.com.geometricweather.R$id: int exitUntilCollapsed +com.bumptech.glide.R$id: int notification_main_column_container +androidx.coordinatorlayout.R$layout: int notification_template_part_chronometer +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableEndCompat +com.turingtechnologies.materialscrollbar.R$id: int customPanel +okio.HashingSource +androidx.vectordrawable.R$id: int accessibility_custom_action_25 +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void attachEntity(wangdaye.com.geometricweather.db.entities.WeatherEntity) +androidx.recyclerview.R$dimen: int notification_top_pad +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_transitionPathRotate +okhttp3.OkHttpClient: java.util.List DEFAULT_PROTOCOLS +wangdaye.com.geometricweather.R$dimen: int cpv_color_preference_large +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_Primary +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +cyanogenmod.app.CustomTile$ExpandedItem: int describeContents() +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type LEFT +com.google.android.material.R$styleable: int TextInputLayout_counterTextAppearance +okhttp3.Handshake: okhttp3.CipherSuite cipherSuite() +androidx.transition.R$dimen: int notification_action_text_size +cyanogenmod.weather.WeatherLocation$1: cyanogenmod.weather.WeatherLocation[] newArray(int) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontWeight +james.adaptiveicon.R$styleable: int[] AppCompatTextView +androidx.vectordrawable.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_barThickness +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.lang.Object invoke(java.lang.Object,java.lang.reflect.Method,java.lang.Object[]) +wangdaye.com.geometricweather.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$styleable: int MenuView_android_windowAnimationStyle +androidx.appcompat.R$color: int primary_text_disabled_material_light +okhttp3.internal.connection.RealConnection: boolean noNewStreams +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: long serialVersionUID +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HistoryEntityDao historyEntityDao +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$attr: int layoutDescription +wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity +okhttp3.internal.http2.Http2Reader$ContinuationSource +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_numericShortcut +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Title +android.didikee.donate.R$style: int Base_Theme_AppCompat_CompactMenu +com.google.android.material.textfield.TextInputLayout: void setHintTextAppearance(int) +androidx.preference.R$styleable: int PreferenceImageView_android_maxWidth +androidx.activity.R$id: int chronometer +cyanogenmod.providers.DataUsageContract: java.lang.String LABEL +io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onSubscribe +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int sourceMode +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxy(java.net.Proxy) +com.turingtechnologies.materialscrollbar.R$attr: int spinBars +androidx.constraintlayout.widget.R$styleable: int MenuItem_actionProviderClass +androidx.preference.R$dimen: int abc_button_padding_horizontal_material +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7 +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: java.lang.String address +com.turingtechnologies.materialscrollbar.R$drawable: int notification_icon_background +androidx.activity.R$color: int notification_action_color_filter +androidx.preference.R$styleable: int AppCompatTheme_actionBarTabStyle +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.constraintlayout.widget.R$attr: int showTitle +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleEnabled +io.reactivex.Observable: io.reactivex.Maybe lastElement() +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_bottom +com.google.android.material.R$styleable: int Badge_number +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: int leftIndex +okhttp3.internal.connection.RealConnection: java.net.Socket rawSocket +androidx.work.R$dimen: int notification_small_icon_background_padding +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_typeface +cyanogenmod.app.CMTelephonyManager: java.util.List getSubInformation() +com.jaredrummler.android.colorpicker.R$dimen: int abc_alert_dialog_button_dimen +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.ObservableSource source +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTint +com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_android_popupBackground +wangdaye.com.geometricweather.settings.fragments.SettingsFragment: SettingsFragment() +wangdaye.com.geometricweather.background.receiver.widget.AbstractWidgetProvider: AbstractWidgetProvider() +okhttp3.internal.cache.CacheStrategy$Factory: boolean hasConditions(okhttp3.Request) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginStart +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3 +androidx.preference.R$styleable: int DrawerArrowToggle_arrowShaftLength +android.didikee.donate.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +androidx.recyclerview.R$drawable: int notification_bg_low_normal +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$layout: int select_dialog_multichoice_material +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf +com.jaredrummler.android.colorpicker.R$id: int listMode +com.amap.api.location.APSService: void onDestroy() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginLeft +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HAIL +androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal +wangdaye.com.geometricweather.R$attr: int actionBarItemBackground +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginBottom +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle +com.bumptech.glide.integration.okhttp.R$layout: int notification_action +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicInteger wip +retrofit2.CallAdapter$Factory: CallAdapter$Factory() +androidx.fragment.R$style +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_progress +com.turingtechnologies.materialscrollbar.R$attr: int buttonStyle +retrofit2.CallAdapter$Factory: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.preference.R$styleable: int SwitchCompat_thumbTextPadding +androidx.coordinatorlayout.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.R$string: int content_des_moonset +android.didikee.donate.R$styleable: int ViewBackgroundHelper_backgroundTint +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer realFeelShaderTemperature +com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy[] values() +james.adaptiveicon.R$styleable: int MenuItem_alphabeticModifiers +okio.Okio$2: long read(okio.Buffer,long) +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayVerticalWidgetConfigActivity: Hilt_ClockDayVerticalWidgetConfigActivity() +com.xw.repo.bubbleseekbar.R$attr: int measureWithLargestChild +androidx.core.R$styleable: int ColorStateListItem_android_alpha +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node tail +wangdaye.com.geometricweather.R$string: int common_google_play_services_wear_update_text +okhttp3.internal.cache.CacheStrategy$Factory: long receivedResponseMillis +androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableTransition +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMarkTint +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents +androidx.transition.R$color: int notification_icon_bg_color +androidx.hilt.work.R$integer +io.reactivex.Observable: io.reactivex.Observable retry() +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_visible +com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text +androidx.hilt.lifecycle.R$color: R$color() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric Metric +com.google.android.material.chip.Chip: void setIconStartPaddingResource(int) +androidx.appcompat.R$dimen: int abc_search_view_preferred_height +androidx.vectordrawable.animated.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$drawable: int notif_temp_130 +androidx.appcompat.widget.Toolbar: void setSubtitle(int) +wangdaye.com.geometricweather.R$drawable: int shortcuts_snow_foreground +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textFontWeight +androidx.hilt.R$dimen: int compat_button_padding_vertical_material +androidx.hilt.lifecycle.R$color: int ripple_material_light +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy +com.google.android.material.appbar.AppBarLayout: float getTargetElevation() +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder path(java.lang.String) +androidx.core.R$id: int tag_accessibility_heading +james.adaptiveicon.R$styleable: int RecycleListView_paddingBottomNoButtons +androidx.hilt.R$styleable: int FontFamilyFont_android_ttcIndex +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_clipToPadding +androidx.constraintlayout.motion.widget.MotionLayout: float getVelocity() +androidx.viewpager.R$integer +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabContentStart +androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingEnd +wangdaye.com.geometricweather.R$attr: int helperTextTextColor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: java.lang.String Unit +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void dispose() +wangdaye.com.geometricweather.R$string: int key_exchange_day_night_temp_switch +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language +james.adaptiveicon.R$style: int Base_Animation_AppCompat_Tooltip +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +okhttp3.internal.http2.Http2Connection$Listener$1 +androidx.vectordrawable.R$layout: int notification_template_part_time +com.turingtechnologies.materialscrollbar.R$attr: int chipSpacingVertical +okhttp3.internal.Util: java.util.TimeZone UTC +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: java.util.Date StartDateTime +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Small +com.google.android.material.R$styleable: int Constraint_layout_goneMarginLeft +com.turingtechnologies.materialscrollbar.R$attr: int windowFixedWidthMajor +androidx.preference.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_year_abbr +android.didikee.donate.R$drawable: int abc_spinner_mtrl_am_alpha +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: long serialVersionUID +cyanogenmod.app.CMContextConstants$Features +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_NoActionBar +wangdaye.com.geometricweather.R$attr: int colorControlNormal +com.turingtechnologies.materialscrollbar.AlphabetIndicator: AlphabetIndicator(android.content.Context) +com.google.android.material.R$attr: int backgroundStacked +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableRight +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_text_input_padding_top +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +cyanogenmod.themes.ThemeManager: void registerProcessingListener(cyanogenmod.themes.ThemeManager$ThemeProcessingListener) +wangdaye.com.geometricweather.R$dimen: R$dimen() +cyanogenmod.externalviews.KeyguardExternalViewProviderService +android.didikee.donate.R$styleable: int TextAppearance_android_typeface +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: ObservableRefCount$RefConnection(io.reactivex.internal.operators.observable.ObservableRefCount) +okio.BufferedSink: okio.BufferedSink writeShort(int) +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_bg_color_selector +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean humidity +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onNext(java.lang.Object) +com.google.android.material.textfield.TextInputLayout: void setErrorIconDrawable(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_ctrl_shortcut_label +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: BaiduIPLocationService(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi,io.reactivex.disposables.CompositeDisposable) +com.jaredrummler.android.colorpicker.R$attr: int autoSizeStepGranularity +androidx.recyclerview.R$id: int notification_main_column +androidx.fragment.R$attr: int fontProviderCerts +androidx.loader.R$style: int Widget_Compat_NotificationActionText +androidx.preference.R$styleable: int DialogPreference_dialogIcon +androidx.appcompat.R$attr: int icon +androidx.lifecycle.ViewModelProvider$KeyedFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +androidx.preference.R$dimen: int abc_edit_text_inset_top_material +com.turingtechnologies.materialscrollbar.R$attr: int titleMarginTop +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onComplete() +androidx.preference.R$color: int tooltip_background_light +com.google.android.material.R$styleable: int ConstraintSet_android_layout_height +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State mState +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Entry +com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context,android.util.AttributeSet) +okio.Buffer: okio.BufferedSink writeLong(long) +okhttp3.Cache$Entry: java.lang.String RECEIVED_MILLIS +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_12 com.google.android.material.R$id: int coordinator -com.google.android.material.R$styleable: int AppBarLayoutStates_state_liftable -okio.Buffer: boolean rangeEquals(long,okio.ByteString,int,int) -okhttp3.internal.http2.Http2Connection: void failConnection() -androidx.preference.R$color: int material_grey_100 -com.google.android.material.floatingactionbutton.FloatingActionButton: void setVisibility(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setDirection(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_divider -com.xw.repo.bubbleseekbar.R$attr: int tint -androidx.cardview.widget.CardView: void setRadius(float) -wangdaye.com.geometricweather.R$dimen: int widget_title_text_size -okio.ByteString: char[] HEX_DIGITS -okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE -cyanogenmod.app.Profile: void readTriggersFromXml(org.xmlpull.v1.XmlPullParser,android.content.Context,cyanogenmod.app.Profile) -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: long serialVersionUID -wangdaye.com.geometricweather.R$color: int material_blue_grey_800 -com.xw.repo.bubbleseekbar.R$attr: int bsb_seek_by_section -james.adaptiveicon.R$layout: int abc_popup_menu_item_layout -io.reactivex.internal.subscriptions.EmptySubscription: java.lang.Object poll() -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_NoActionBar -com.google.android.material.R$attr: int moveWhenScrollAtTop -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixTextColor -androidx.vectordrawable.R$id: R$id() -wangdaye.com.geometricweather.R$attr: int srcCompat -wangdaye.com.geometricweather.R$string: int translator -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_HUMIDITY -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_body_2_material +android.didikee.donate.R$styleable: int DrawerArrowToggle_barLength +androidx.preference.R$id: int accessibility_custom_action_11 +androidx.vectordrawable.animated.R$id +com.bumptech.glide.integration.okhttp.R$id: int text +wangdaye.com.geometricweather.main.dialogs.HourlyWeatherDialog: HourlyWeatherDialog() +james.adaptiveicon.R$drawable: int abc_list_selector_holo_dark +wangdaye.com.geometricweather.R$attr: int arcMode +wangdaye.com.geometricweather.R$string: int common_google_play_services_install_button +com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_normal +wangdaye.com.geometricweather.R$attr: int cpv_progress +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +androidx.constraintlayout.widget.R$id: int layout +wangdaye.com.geometricweather.R$drawable: int snackbar_background +com.google.android.material.R$attr: int fastScrollVerticalThumbDrawable +com.google.android.gms.common.server.response.zan +androidx.appcompat.R$dimen: int abc_control_inset_material +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +cyanogenmod.themes.ThemeManager$ThemeChangeListener +androidx.appcompat.R$style: int TextAppearance_AppCompat +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_constantSize +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_20 +retrofit2.Response: okhttp3.Response rawResponse +james.adaptiveicon.R$attr: int contentInsetEndWithActions +com.google.android.material.R$styleable: int Constraint_layout_constraintTop_toTopOf +com.jaredrummler.android.colorpicker.R$style: int Base_V26_Widget_AppCompat_Toolbar +com.jaredrummler.android.colorpicker.R$dimen: int compat_button_padding_vertical_material +androidx.constraintlayout.widget.R$color: int button_material_light +androidx.preference.R$id: int notification_main_column_container +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ProgressBar +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_shadow_height +com.google.android.material.circularreveal.CircularRevealGridLayout: int getCircularRevealScrimColor() +com.amap.api.location.AMapLocation: int f(com.amap.api.location.AMapLocation,int) +android.didikee.donate.R$style: int Base_Widget_AppCompat_ImageButton +okhttp3.internal.http2.Http2Codec +cyanogenmod.app.Profile: cyanogenmod.profiles.AirplaneModeSettings mAirplaneMode +androidx.vectordrawable.animated.R$id: int notification_background +com.google.android.material.card.MaterialCardView: int getContentPaddingTop() +androidx.preference.R$styleable: int SearchView_android_imeOptions +cyanogenmod.app.ILiveLockScreenManager +androidx.transition.R$styleable: int FontFamilyFont_android_fontStyle +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_meta_shortcut_label +com.google.android.material.navigation.NavigationView: void setItemBackground(android.graphics.drawable.Drawable) +io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier[] values() +com.google.android.material.R$styleable: int SwitchCompat_track +androidx.appcompat.resources.R$dimen: int compat_button_padding_vertical_material +androidx.preference.R$styleable: int AppCompatTheme_windowActionBarOverlay +com.google.android.material.card.MaterialCardView: void setRippleColorResource(int) +okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.internal.cache.CacheStrategy getCandidate() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int level +androidx.appcompat.R$style: int TextAppearance_AppCompat_Small_Inverse +androidx.preference.R$attr: int buttonGravity +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackActiveTintList() +androidx.constraintlayout.widget.R$id: int NO_DEBUG +com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage EN +androidx.constraintlayout.widget.R$attr: int trackTint +wangdaye.com.geometricweather.R$string: int mtrl_picker_confirm +com.xw.repo.bubbleseekbar.R$id: int action_container +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: java.lang.String DESCRIPTOR +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long index +androidx.hilt.lifecycle.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int[] BottomNavigationView +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dividerVertical +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void replay() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: int UnitType +com.xw.repo.bubbleseekbar.R$attr: int bsb_auto_adjust_section_mark +io.reactivex.internal.observers.DeferredScalarDisposable: io.reactivex.Observer downstream +androidx.preference.R$attr: int controlBackground +wangdaye.com.geometricweather.R$string: int ceiling +androidx.constraintlayout.widget.R$styleable: int[] MenuView +androidx.work.R$color: int secondary_text_default_material_light +com.google.android.material.R$styleable: int Constraint_constraint_referenced_ids +cyanogenmod.providers.CMSettings$NameValueCache: long mValuesVersion +com.google.android.material.button.MaterialButton: int getIconPadding() +com.google.android.material.R$styleable: int[] SwitchMaterial +com.google.android.material.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Borderless +okhttp3.Handshake: java.security.Principal localPrincipal() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupWindow +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxBackgroundMode +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_background_corner_radius +okhttp3.internal.http2.Hpack$Reader: void clearDynamicTable() +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setHttpTimeOut(long) +androidx.appcompat.widget.ActionBarContainer: void setTabContainer(androidx.appcompat.widget.ScrollingTabContainerView) +cyanogenmod.profiles.ConnectionSettings: boolean mOverride +okhttp3.internal.Internal: void put(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionMode +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language TURKISH +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onNext(java.lang.Object) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogCenterButtons +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: io.reactivex.internal.fuseable.SimplePlainQueue queue +okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_FIN +cyanogenmod.app.ILiveLockScreenManager$Stub: cyanogenmod.app.ILiveLockScreenManager asInterface(android.os.IBinder) +com.google.android.material.R$color: int material_on_surface_stroke +okhttp3.internal.cache2.Relay: void writeMetadata(long) +com.xw.repo.bubbleseekbar.R$id: int src_atop +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.preference.R$style: int PreferenceCategoryTitleTextStyle +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Body2 +android.didikee.donate.R$styleable: int Toolbar_titleMarginTop +cyanogenmod.providers.CMSettings: java.lang.String TAG +cyanogenmod.weather.CMWeatherManager$1 +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_end +okhttp3.CacheControl$Builder: CacheControl$Builder() +com.google.android.material.R$styleable: int SwitchCompat_switchMinWidth +james.adaptiveicon.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +androidx.hilt.R$id: int right_side +androidx.preference.R$string: int abc_searchview_description_query +wangdaye.com.geometricweather.R$string: int wet_bulb_temperature +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_divider_mtrl_alpha +io.reactivex.Observable: io.reactivex.Single collectInto(java.lang.Object,io.reactivex.functions.BiConsumer) +cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(android.os.Parcel,cyanogenmod.themes.ThemeChangeRequest$1) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lon +okhttp3.internal.http2.Http2Reader$Handler: void windowUpdate(int,long) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.Map buffers +androidx.appcompat.R$styleable: int ColorStateListItem_android_color +com.google.android.material.R$styleable: int Toolbar_navigationIcon +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: int nameId +com.turingtechnologies.materialscrollbar.R$attr: int layout_insetEdge +cyanogenmod.platform.Manifest$permission: java.lang.String BIND_WEATHER_PROVIDER_SERVICE +com.xw.repo.bubbleseekbar.R$attr: int editTextStyle +cyanogenmod.app.CustomTile$ExpandedStyle: int styleId +wangdaye.com.geometricweather.R$drawable: int widget_clock_day_details +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX) +com.google.android.material.R$attr: int onTouchUp +androidx.fragment.R$id: int accessibility_custom_action_26 +cyanogenmod.app.LiveLockScreenInfo$Builder +com.google.android.material.internal.CheckableImageButton +androidx.constraintlayout.widget.R$color: int abc_tint_switch_track +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_FULL_COLOR +wangdaye.com.geometricweather.common.basic.models.weather.Alert +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_singleSelection +androidx.appcompat.R$id: int text2 +androidx.preference.R$attr: int widgetLayout +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_android_minHeight +com.google.android.material.R$attr: int materialCardViewStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String getCaiyun() +wangdaye.com.geometricweather.R$animator: int mtrl_chip_state_list_anim +com.amap.api.fence.GeoFenceManagerBase: boolean removeGeoFence(com.amap.api.fence.GeoFence) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarSize +androidx.hilt.R$integer: int status_bar_notification_info_maxnum +android.didikee.donate.R$dimen: int disabled_alpha_material_dark +wangdaye.com.geometricweather.R$id: int item_card_display_sortButton +androidx.appcompat.R$dimen: int compat_button_padding_horizontal_material +io.reactivex.internal.util.EmptyComponent: void dispose() +retrofit2.http.FieldMap: boolean encoded() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String getValue() +androidx.appcompat.R$attr: int listChoiceIndicatorSingleAnimated +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderCerts +cyanogenmod.app.CMTelephonyManager: boolean isDataConnectionSelectedOnSub(int) +com.google.android.gms.location.zzbe: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String value +wangdaye.com.geometricweather.R$styleable: int ClockFaceView_valueTextColor +com.xw.repo.bubbleseekbar.R$id: int action_bar +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart +com.google.android.material.navigation.NavigationView: android.content.res.ColorStateList getItemIconTintList() +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onComplete() +wangdaye.com.geometricweather.R$string: int get_more_store +james.adaptiveicon.R$attr: int actionBarPopupTheme +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display2 +com.google.android.material.R$styleable: int FloatingActionButton_shapeAppearanceOverlay +androidx.preference.R$attr: int searchIcon +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollEnabled +com.xw.repo.bubbleseekbar.R$layout: int abc_screen_simple +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEV_FORCE_SHOW_NAVBAR +com.google.android.material.R$id: int multiply +cyanogenmod.profiles.ConnectionSettings$1 +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_id +androidx.legacy.coreutils.R$drawable: int notification_tile_bg +androidx.appcompat.widget.ActionBarOverlayLayout: ActionBarOverlayLayout(android.content.Context,android.util.AttributeSet) +james.adaptiveicon.R$color: int abc_btn_colored_borderless_text_material +okhttp3.internal.ws.WebSocketReader: okio.Buffer messageFrameBuffer wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color Color -com.google.android.material.R$styleable: int TextInputEditText_textInputLayoutFocusedRectEnabled -com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_weight -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() -wangdaye.com.geometricweather.R$drawable: int flag_ro -com.jaredrummler.android.colorpicker.R$id: int scrollView -wangdaye.com.geometricweather.R$attr: int chipStrokeColor -okhttp3.internal.ws.RealWebSocket: boolean send(okio.ByteString,int) -retrofit2.Converter -com.google.android.material.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode -androidx.coordinatorlayout.R$id: int tag_accessibility_clickable_spans -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance -com.google.android.material.slider.Slider: Slider(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintDimensionRatio -wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context) -wangdaye.com.geometricweather.R$id: int container_main_details_recyclerView -okhttp3.Cache: int writeSuccessCount() -wangdaye.com.geometricweather.remoteviews.config.Hilt_HourlyTrendWidgetConfigActivity -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerY -com.jaredrummler.android.colorpicker.R$attr: int displayOptions -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String findMostSpecific(java.lang.String) -com.google.android.material.R$id: int spacer -okhttp3.Authenticator -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.lang.Object key -androidx.appcompat.R$attr: int subtitleTextStyle -okhttp3.ResponseBody: java.nio.charset.Charset charset() -android.didikee.donate.R$attr: int actionProviderClass -james.adaptiveicon.R$color: int bright_foreground_material_light -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: int index -com.jaredrummler.android.colorpicker.ColorPanelView: void setShape(int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -androidx.fragment.R$anim: int fragment_close_exit -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -androidx.hilt.R$layout: R$layout() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX names -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_voice -wangdaye.com.geometricweather.R$id: int material_hour_text_input -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric -androidx.vectordrawable.R$layout -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Long id -com.google.android.material.R$attr: int drawableBottomCompat -com.amap.api.location.DPoint: double a -wangdaye.com.geometricweather.R$animator: int mtrl_fab_hide_motion_spec -james.adaptiveicon.R$color: int switch_thumb_disabled_material_dark -wangdaye.com.geometricweather.R$styleable: int Slider_tickColorInactive -wangdaye.com.geometricweather.R$drawable: int notif_temp_42 -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory sslSocketFactory() -cyanogenmod.app.LiveLockScreenInfo$Builder: LiveLockScreenInfo$Builder() -androidx.core.R$id: int accessibility_custom_action_28 -com.turingtechnologies.materialscrollbar.R$attr: int actionBarWidgetTheme -androidx.viewpager2.R$attr: int fastScrollHorizontalThumbDrawable -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Small -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder addConverterFactory(retrofit2.Converter$Factory) -androidx.drawerlayout.R$id: int info -com.jaredrummler.android.colorpicker.R$string -android.didikee.donate.R$style: int Base_Widget_AppCompat_ButtonBar -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_fontVariationSettings -wangdaye.com.geometricweather.R$id: int search_badge -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_CompactMenu -com.turingtechnologies.materialscrollbar.R$id: int end -com.turingtechnologies.materialscrollbar.R$attr: int autoSizeTextType -androidx.constraintlayout.widget.R$dimen: int abc_switch_padding -cyanogenmod.providers.CMSettings: java.lang.String AUTHORITY -wangdaye.com.geometricweather.R$string: int material_timepicker_minute -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeWindChillTemperature -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_maxHeight -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,okio.ByteString) -androidx.constraintlayout.widget.R$dimen: int abc_dialog_list_padding_top_no_title -com.jaredrummler.android.colorpicker.R$color: int background_floating_material_dark -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Light -androidx.preference.R$styleable: int SwitchPreference_android_disableDependentsState -com.amap.api.fence.GeoFence: int STATUS_LOCFAIL -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getThunderstormPrecipitation() -cyanogenmod.app.CustomTile$ExpandedItem$1: java.lang.Object[] newArray(int) -androidx.preference.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -com.google.android.material.R$styleable: int TextInputLayout_endIconTintMode -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Menu -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties -com.google.android.material.R$drawable: int abc_text_select_handle_left_mtrl_dark -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_Material -com.google.android.material.R$color: int tooltip_background_light -okhttp3.Headers: okhttp3.Headers of(java.util.Map) -com.google.android.material.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startY -com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_space_shortcut_label -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: int PrecipitationProbability -androidx.appcompat.widget.AppCompatSpinner: void setBackgroundDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$id: int activity_widget_config -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Body1 -androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_3_material -james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat_Dark -com.google.android.material.R$string: int item_view_role_description -okhttp3.Address: javax.net.ssl.HostnameVerifier hostnameVerifier() -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicReference upstream -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Long id -com.xw.repo.bubbleseekbar.R$attr: int imageButtonStyle -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String timezone -wangdaye.com.geometricweather.remoteviews.config.AbstractWidgetConfigActivity: AbstractWidgetConfigActivity() -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: WeatherInfo$DayForecast$Builder(int) -com.google.android.material.R$styleable: int NavigationView_itemShapeInsetStart -wangdaye.com.geometricweather.R$id: int snackbar_action -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_dark -androidx.hilt.R$id: int line1 -androidx.hilt.lifecycle.R$attr: int font -wangdaye.com.geometricweather.R$color: int switch_thumb_normal_material_light -androidx.legacy.coreutils.R$id: int notification_main_column_container -io.reactivex.Observable: io.reactivex.Observable compose(io.reactivex.ObservableTransformer) -com.google.android.gms.common.R$string: int common_google_play_services_unknown_issue +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode nighttimeWeatherCode +androidx.vectordrawable.animated.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$string: int feedback_click_again_to_exit +io.reactivex.Observable: io.reactivex.Observable timeout0(long,java.util.concurrent.TimeUnit,io.reactivex.ObservableSource,io.reactivex.Scheduler) +androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_percent +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_17 +androidx.dynamicanimation.R$layout: int notification_template_part_chronometer +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean emitLast +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Subtitle1 +com.google.android.material.R$attr: int titleMarginStart +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_corner_radius_material +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogTheme +wangdaye.com.geometricweather.R$id: int widget_remote_progress +com.google.android.material.R$styleable: int MaterialButtonToggleGroup_checkedButton +com.github.rahatarmanahmed.cpv.CircularProgressView$7: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +okhttp3.internal.platform.Platform: java.lang.String getPrefix() +androidx.drawerlayout.R$dimen: int notification_large_icon_height +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +com.google.android.material.R$styleable: int[] MenuGroup +android.didikee.donate.R$attr: int drawableSize +wangdaye.com.geometricweather.R$color: int design_default_color_primary +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +cyanogenmod.externalviews.KeyguardExternalView$6 +androidx.hilt.work.R$id: int accessibility_custom_action_12 +wangdaye.com.geometricweather.R$id: int ALT +com.google.android.material.R$id: int tag_accessibility_pane_title +androidx.constraintlayout.widget.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$color: int mtrl_error +io.reactivex.internal.util.NotificationLite$ErrorNotification +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startX +com.google.android.material.R$id: int test_radiobutton_app_button_tint +cyanogenmod.os.Build: java.lang.String getString(java.lang.String) +io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function,boolean) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver +io.reactivex.Observable: io.reactivex.Observable retry(io.reactivex.functions.BiPredicate) +wangdaye.com.geometricweather.R$id: int widget_week_card +com.google.android.material.R$styleable: int Chip_chipEndPadding +cyanogenmod.externalviews.KeyguardExternalView$2: void onDetachedFromWindow() +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight +com.turingtechnologies.materialscrollbar.R$dimen: int abc_list_item_padding_horizontal_material +androidx.vectordrawable.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_DropDownItem_Spinner +androidx.appcompat.R$dimen: int notification_right_icon_size +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin +wangdaye.com.geometricweather.R$layout: int select_dialog_multichoice_material +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: java.lang.String Localized +okhttp3.internal.connection.RealConnection: void connectTls(okhttp3.internal.connection.ConnectionSpecSelector) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int IceProbability +com.xw.repo.bubbleseekbar.R$layout: int abc_screen_toolbar +wangdaye.com.geometricweather.R$attr: int listMenuViewStyle +wangdaye.com.geometricweather.R$id: int standard +com.jaredrummler.android.colorpicker.R$id: int action_image +james.adaptiveicon.R$attr: int background +android.didikee.donate.R$layout +com.xw.repo.bubbleseekbar.R$attr: int preserveIconSpacing +com.google.android.material.R$drawable: int notification_tile_bg +okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache$Snapshot snapshot() +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCountry +android.didikee.donate.R$drawable: int notification_template_icon_low_bg +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline2 +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks mCallback +androidx.lifecycle.LiveData$LifecycleBoundObserver: androidx.lifecycle.LifecycleOwner mOwner +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +wangdaye.com.geometricweather.R$string: int feedback_live_wallpaper_weather_kind +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation TOP +com.amap.api.location.AMapLocationClientOption$1 +com.google.android.material.slider.BaseSlider: void setThumbElevation(float) +android.didikee.donate.R$styleable: int SwitchCompat_thumbTint +com.google.android.material.R$interpolator: int mtrl_linear_out_slow_in +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Editor edit(java.lang.String) +wangdaye.com.geometricweather.R$color: int material_on_primary_emphasis_high_type +wangdaye.com.geometricweather.R$id: int home +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.concurrent.atomic.AtomicReference upstream +com.xw.repo.bubbleseekbar.R$id: int split_action_bar +android.didikee.donate.R$attr: int preserveIconSpacing +androidx.activity.R$integer: R$integer() +com.google.android.material.R$styleable: int Badge_badgeGravity +com.google.android.material.R$attr: int boxCornerRadiusTopEnd +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Wind wind +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_RINGTONES +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +androidx.preference.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +okio.Util: boolean arrayRangeEquals(byte[],int,byte[],int,int) +wangdaye.com.geometricweather.R$drawable: int weather_sleet_3 +cyanogenmod.app.BaseLiveLockManagerService$1 +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex inTwoDays androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.preference.R$attr: int actionModePasteDrawable -com.google.android.material.R$styleable: int AppCompatTheme_android_windowIsFloating -androidx.loader.R$styleable: int FontFamilyFont_fontWeight -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -io.reactivex.Observable: io.reactivex.Observable defer(java.util.concurrent.Callable) -androidx.lifecycle.ClassesInfoCache: java.lang.reflect.Method[] getDeclaredMethods(java.lang.Class) -cyanogenmod.externalviews.KeyguardExternalView: boolean mIsInteractive -okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory newSslSocketFactory(javax.net.ssl.X509TrustManager) -androidx.fragment.R$styleable: int GradientColor_android_tileMode -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -android.didikee.donate.R$attr: int defaultQueryHint -com.google.android.material.datepicker.DateValidatorPointForward: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$attr: int listPreferredItemHeightLarge -androidx.preference.R$styleable: int Preference_allowDividerBelow -james.adaptiveicon.R$attr: int contentDescription -androidx.activity.R$layout: int custom_dialog -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onSearchRequested() -androidx.legacy.coreutils.R$id: int normal -wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullResourceIdException: ResourceUtils$NullResourceIdException() -androidx.viewpager.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$style: int subtitle_text -com.google.android.material.R$color: int switch_thumb_material_dark -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean done -okhttp3.Dispatcher: java.util.Deque runningSyncCalls -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric Metric -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum Minimum -com.google.android.gms.location.DetectedActivity: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$id: int action_bar_root -android.support.v4.app.INotificationSideChannel$Stub: INotificationSideChannel$Stub() -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderFetchTimeout -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.PushObserver pushObserver -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String zh_CN -androidx.coordinatorlayout.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object getKey(java.lang.Object) -com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_Alert -retrofit2.adapter.rxjava2.Result: retrofit2.Response response -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: java.lang.String Unit -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: void setTo(java.lang.String) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.vectordrawable.animated.R$id: int action_text -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric Metric -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.util.List value -com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_close_icon_tint -james.adaptiveicon.R$styleable: int MenuItem_android_orderInCategory -com.google.android.material.bottomappbar.BottomAppBar: int getFabAnimationMode() -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle -okhttp3.internal.http2.Hpack: java.util.Map nameToFirstIndex() -okio.Pipe$PipeSink -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String hourlyForecast -okhttp3.internal.platform.Jdk9Platform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) -androidx.coordinatorlayout.R$styleable: int GradientColor_android_gradientRadius -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_RESUME -com.xw.repo.bubbleseekbar.R$dimen: int compat_button_inset_vertical_material -cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String access$200() -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog -com.google.gson.LongSerializationPolicy: com.google.gson.JsonElement serialize(java.lang.Long) -okhttp3.EventListener$1 -com.turingtechnologies.materialscrollbar.R$layout: int abc_tooltip -okio.InflaterSource: long read(okio.Buffer,long) -cyanogenmod.library.R$attr: int settingsActivity -androidx.constraintlayout.widget.R$styleable: int MenuItem_contentDescription -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: MfForecastResult() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitationDuration() -wangdaye.com.geometricweather.R$string: int material_timepicker_text_input_mode_description -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long index +wangdaye.com.geometricweather.R$styleable: int CardView_android_minWidth +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_speedValue +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_12 +androidx.lifecycle.ProcessLifecycleOwner$2 +androidx.hilt.work.R$integer: int status_bar_notification_info_maxnum +com.bumptech.glide.integration.okhttp.R$layout: R$layout() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric Metric +com.github.rahatarmanahmed.cpv.CircularProgressView: float currentProgress +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRelativeHumidity() +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean isDisposed() +androidx.vectordrawable.R$styleable: int FontFamilyFont_android_font +okhttp3.internal.http2.Http2Connection$7: okhttp3.internal.http2.ErrorCode val$errorCode +wangdaye.com.geometricweather.R$id: int mtrl_calendar_months +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric +io.reactivex.exceptions.CompositeException: void printStackTrace(java.io.PrintStream) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String getPubTime() +androidx.appcompat.resources.R$integer: R$integer() +androidx.constraintlayout.widget.R$drawable: int abc_text_cursor_material +cyanogenmod.profiles.LockSettings: int mValue +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String treeDescription +cyanogenmod.app.BaseLiveLockManagerService: boolean getLiveLockScreenEnabled() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setModifyInHour(boolean) +wangdaye.com.geometricweather.R$string: int copy +org.greenrobot.greendao.DaoException: long serialVersionUID +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitation +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setHourText(java.lang.String) +james.adaptiveicon.R$color: int switch_thumb_normal_material_dark +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: boolean requestDismissAndStartActivity(android.content.Intent) +retrofit2.BuiltInConverters$StreamingResponseBodyConverter: java.lang.Object convert(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$attr: int singleLine +com.jaredrummler.android.colorpicker.R$drawable: int abc_switch_thumb_material +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: long serialVersionUID +james.adaptiveicon.R$style: int Theme_AppCompat_DialogWhenLarge +cyanogenmod.app.StatusBarPanelCustomTile: int getId() +james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionModeOverlay +android.didikee.donate.R$styleable: int AppCompatTheme_buttonStyle +com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_android_entries +com.amap.api.location.AMapLocation: int d(com.amap.api.location.AMapLocation,int) +androidx.appcompat.R$attr +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_showDividers +wangdaye.com.geometricweather.R$attr: int buttonStyleSmall +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedReadableDb(java.lang.String) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer relativeHumidityMax +androidx.preference.R$style: int Preference_Information +com.google.android.material.R$attr: int paddingStart +androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_android_thumb +io.reactivex.Observable: io.reactivex.Observable fromIterable(java.lang.Iterable) +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.reflect.Type responseType() +com.google.android.gms.location.GeofencingRequest +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tMin +androidx.appcompat.widget.SwitchCompat: void setThumbPosition(float) +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth +okhttp3.Connection: okhttp3.Route route() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +androidx.dynamicanimation.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getCloseIcon() +com.xw.repo.bubbleseekbar.R$attr: int elevation +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_light +retrofit2.Retrofit$Builder: Retrofit$Builder(retrofit2.Retrofit) +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: android.os.IBinder mRemote +okhttp3.Response: okhttp3.Request request() +com.jaredrummler.android.colorpicker.R$drawable: int abc_vector_test +wangdaye.com.geometricweather.R$attr: int entryValues +cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.os.Parcel) +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.R$xml: int widget_multi_city +cyanogenmod.providers.CMSettings$Secure: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) +com.google.android.material.R$id: int image +com.google.android.material.R$styleable: int MaterialCardView_checkedIconTint +com.google.gson.internal.JsonReaderInternalAccess: JsonReaderInternalAccess() +com.google.android.material.R$attr: int horizontalOffset +cyanogenmod.library.R$id: int experience +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Small_Inverse +com.google.android.material.R$attr: int colorControlHighlight +retrofit2.Retrofit: okhttp3.Call$Factory callFactory +okhttp3.internal.connection.RouteSelector$Selection: java.util.List getAll() +androidx.preference.Preference +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: void requestLocation(android.content.Context,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) +androidx.appcompat.R$styleable: int MenuView_android_windowAnimationStyle +androidx.loader.R$string: int status_bar_notification_info_overflow +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: SinglePostCompleteSubscriber(org.reactivestreams.Subscriber) +wangdaye.com.geometricweather.R$styleable: int MaterialTextView_lineHeight +io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean isDisposed() +wangdaye.com.geometricweather.R$id: int search_badge +com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getStreet() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalBias +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode fromHttp2(int) +com.google.android.material.slider.RangeSlider: void setMinSeparation(float) +android.didikee.donate.R$style: int Widget_AppCompat_ProgressBar_Horizontal +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTotalPrecipitationProbability(java.lang.Float) +wangdaye.com.geometricweather.background.receiver.widget.WidgetMultiCityProvider: WidgetMultiCityProvider() +com.google.android.material.R$id: int rectangles +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.lang.reflect.Method checkServerTrusted +com.google.android.gms.signin.internal.zab: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int CardView_android_minHeight +cyanogenmod.library.R$id: int event +cyanogenmod.providers.CMSettings$Global: long getLong(android.content.ContentResolver,java.lang.String,long) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String value +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String getUvIndex() +com.turingtechnologies.materialscrollbar.R$string +androidx.preference.R$styleable: int AppCompatTheme_tooltipForegroundColor +androidx.drawerlayout.R$dimen: int compat_notification_large_icon_max_width +androidx.loader.R$dimen: int compat_notification_large_icon_max_width +android.didikee.donate.R$attr: int spinBars +com.google.android.material.R$styleable: int MaterialCalendar_yearTodayStyle +com.google.android.material.R$styleable: int TextInputLayout_hintTextColor +com.google.android.material.R$attr: int stackFromEnd +cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getProfileByName(java.lang.String) +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_height_minor +okhttp3.internal.connection.RealConnection: java.util.List allocations +com.google.android.material.R$styleable: int AppCompatTheme_actionBarDivider +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$string: int ellipsis +okio.Buffer$UnsafeCursor: void close() +okhttp3.internal.cache.DiskLruCache: void rebuildJournal() +com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextStyle +com.google.android.material.R$id: int accessibility_custom_action_5 +androidx.appcompat.R$style: int Base_Widget_AppCompat_Spinner_Underlined +wangdaye.com.geometricweather.R$id: int chip_group +androidx.constraintlayout.widget.R$id: int action_menu_divider +okhttp3.OkHttpClient: okhttp3.Cache cache +androidx.appcompat.widget.AppCompatSpinner +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long serialVersionUID +okhttp3.CertificatePinner +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_right_mtrl_light +james.adaptiveicon.R$string +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind wind +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getVisibility() +androidx.transition.R$layout: int notification_template_icon_group +okhttp3.internal.connection.RealConnection: long idleAtNanos +androidx.hilt.R$id: int notification_background +com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedHeightMinor +android.didikee.donate.R$attr: int actionBarItemBackground +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +com.google.android.material.R$attr: int endIconTintMode +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_tooltipFrameBackground +wangdaye.com.geometricweather.common.basic.models.weather.Base: long getTimeStamp() +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_6 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_SYSTEM +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$attr: int itemShapeAppearance +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Title +com.google.android.gms.dynamite.DynamiteModule$DynamiteLoaderClassLoader: java.lang.ClassLoader sClassLoader +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRainPrecipitationProbability(java.lang.Float) +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_progressBarStyle +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldLevel(java.lang.Integer) +wangdaye.com.geometricweather.R$dimen: int abc_button_padding_vertical_material +james.adaptiveicon.R$anim: int abc_shrink_fade_out_from_bottom +com.google.android.material.R$styleable: int ImageFilterView_crossfade +wangdaye.com.geometricweather.R$styleable: int Constraint_transitionPathRotate +android.didikee.donate.R$style: int Widget_AppCompat_ActivityChooserView +androidx.recyclerview.R$styleable: int FontFamilyFont_fontWeight +androidx.viewpager2.R$id: int accessibility_custom_action_19 +com.google.android.material.R$string: int mtrl_picker_date_header_title +wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_dark +androidx.preference.R$styleable: int[] SeekBarPreference +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection connection() +androidx.lifecycle.LifecycleEventObserver +androidx.appcompat.widget.LinearLayoutCompat: void setGravity(int) +androidx.drawerlayout.R$id: int action_image +androidx.core.R$id: int accessibility_custom_action_9 +cyanogenmod.app.CMStatusBarManager: CMStatusBarManager(android.content.Context) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: MfForecastResult$Position() +wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaSeekBar +okhttp3.Connection: okhttp3.Protocol protocol() +androidx.constraintlayout.widget.R$attr: int actionBarStyle +com.google.android.material.R$styleable: int PropertySet_layout_constraintTag +com.google.android.material.snackbar.SnackbarContentLayout +androidx.constraintlayout.widget.R$anim: int abc_popup_enter +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_FloatingActionButton +androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.Fragment) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getPm10() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX +com.google.android.material.R$styleable: int KeyAttribute_android_rotationX +cyanogenmod.app.Profile: cyanogenmod.profiles.LockSettings mScreenLockMode +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onNext(java.lang.Object) +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button +androidx.lifecycle.extensions.R$id: int text +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_NoActionBar +android.didikee.donate.R$style: int Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.R$id: int square +cyanogenmod.externalviews.ExternalViewProperties: int getWidth() +androidx.coordinatorlayout.R$drawable: R$drawable() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DOUBLE_TAP_SLEEP_GESTURE_VALIDATOR +com.xw.repo.bubbleseekbar.R$attr: int alertDialogButtonGroupStyle +androidx.dynamicanimation.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_with_text_radius +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActivityChooserView +androidx.preference.R$attr: int titleTextColor +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onNext(java.lang.Object) +com.google.android.material.circularreveal.CircularRevealFrameLayout: CircularRevealFrameLayout(android.content.Context,android.util.AttributeSet) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableDelegateState: int getChangingConfigurations() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +okhttp3.CertificatePinner: void check(java.lang.String,java.security.cert.Certificate[]) +androidx.activity.R$style +wangdaye.com.geometricweather.R$styleable: int MaterialAutoCompleteTextView_android_inputType io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.functions.Function) -androidx.coordinatorlayout.R$attr: int fontProviderFetchTimeout -cyanogenmod.providers.CMSettings$Secure: java.lang.String STATS_COLLECTION_REPORTED -com.google.android.material.R$styleable: int Constraint_android_translationY -com.turingtechnologies.materialscrollbar.R$style: int Animation_Design_BottomSheetDialog -okhttp3.logging.LoggingEventListener: void dnsStart(okhttp3.Call,java.lang.String) -androidx.appcompat.R$color: int primary_material_dark -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionBar -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: void throwIfCaught() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: java.util.List getBrands() -com.google.android.material.R$attr: int dividerPadding -okhttp3.internal.http2.Http2Connection$2: okhttp3.internal.http2.Http2Connection this$0 -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String LocalizedType -androidx.appcompat.R$styleable: int[] MenuItem -androidx.constraintlayout.widget.R$dimen: int notification_big_circle_margin -cyanogenmod.weather.WeatherLocation: java.lang.String mCountryId -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode INADEQUATE_SECURITY -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeCloudCover(java.lang.Integer) -wangdaye.com.geometricweather.R$layout: int test_toolbar_custom_background -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State SUCCEEDED -okhttp3.Response: okhttp3.Response cacheResponse() -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_CompactMenu -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize -okhttp3.Response$Builder: Response$Builder(okhttp3.Response) -okio.ByteString: byte[] data -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_y_offset_touch -wangdaye.com.geometricweather.R$styleable: int[] LinearLayoutCompat_Layout -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_Chip -cyanogenmod.providers.CMSettings$Global: java.lang.String WEATHER_TEMPERATURE_UNIT -com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowDy -androidx.loader.R$styleable: int FontFamilyFont_ttcIndex -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -androidx.preference.UnPressableLinearLayout: UnPressableLinearLayout(android.content.Context) -androidx.preference.R$styleable: int View_android_focusable -wangdaye.com.geometricweather.R$layout: int item_icon_provider_get_more -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void windowUpdate(int,long) -androidx.work.R$layout: int notification_template_part_time -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_NoActionBar -androidx.constraintlayout.widget.R$layout: int abc_search_view -com.google.android.gms.common.internal.BinderWrapper: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_vertical_padding -androidx.preference.R$styleable: int PreferenceTheme_preferenceStyle -androidx.appcompat.R$attr: int textColorSearchUrl -james.adaptiveicon.R$attr: int listPreferredItemPaddingRight -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_bar_up_container -androidx.hilt.work.R$anim: int fragment_close_enter -com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Dialog -com.google.android.material.R$styleable: int ActionBar_itemPadding -androidx.preference.MultiSelectListPreferenceDialogFragmentCompat -com.google.android.material.R$dimen: int abc_text_size_small_material -androidx.preference.R$attr: int reverseLayout -cyanogenmod.platform.Manifest$permission: java.lang.String BIND_WEATHER_PROVIDER_SERVICE -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize -com.xw.repo.bubbleseekbar.R$layout: int abc_action_mode_bar -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onComplete() -wangdaye.com.geometricweather.R$attr: int chipSpacing -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: ObservableSubscribeOn$SubscribeOnObserver(io.reactivex.Observer) -cyanogenmod.hardware.CMHardwareManager: boolean deletePersistentObject(java.lang.String) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Large -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowColor -cyanogenmod.app.CustomTile$ListExpandedStyle: CustomTile$ListExpandedStyle() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: boolean isDisposed() -androidx.lifecycle.SingleGeneratedAdapterObserver -com.google.android.material.R$string: int abc_action_bar_up_description -io.reactivex.Observable: io.reactivex.Observable debounce(io.reactivex.functions.Function) -androidx.preference.R$styleable: int SwitchCompat_showText -retrofit2.OkHttpCall: okhttp3.Request request() -androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: java.lang.String Name -androidx.activity.R$attr: int ttcIndex -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State ENQUEUED -wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_android_textAppearance -wangdaye.com.geometricweather.R$id: int dialog_location_help_providerContainer -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnt -wangdaye.com.geometricweather.R$drawable: int abc_btn_default_mtrl_shape -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Tooltip -com.jaredrummler.android.colorpicker.R$attr: int textAppearancePopupMenuHeader -okio.GzipSource: okio.InflaterSource inflaterSource -retrofit2.http.QueryName: boolean encoded() -okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: void execute() -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Latitude -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_SmallComponent -io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) -androidx.constraintlayout.widget.R$dimen: int abc_disabled_alpha_material_light -cyanogenmod.themes.IThemeService$Stub$Proxy: boolean processThemeResources(java.lang.String) -okhttp3.internal.http.StatusLine: java.lang.String toString() -io.reactivex.internal.subscribers.DeferredScalarSubscriber: org.reactivestreams.Subscription upstream -james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyle -wangdaye.com.geometricweather.R$id: int aligned -com.turingtechnologies.materialscrollbar.AlphabetIndicator: AlphabetIndicator(android.content.Context) -okio.ByteString: int lastIndexOf(byte[]) -androidx.constraintlayout.widget.R$attr: int font -io.reactivex.internal.observers.BlockingObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okhttp3.internal.http2.Http2Codec: java.lang.String HOST -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: java.lang.String Unit -android.didikee.donate.R$styleable: int[] AppCompatTextHelper -wangdaye.com.geometricweather.R$attr: int collapsedTitleTextAppearance -wangdaye.com.geometricweather.R$style: int Preference_Category_Material -com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator -com.google.android.gms.common.internal.zau -cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(java.util.Map,java.util.Map,cyanogenmod.themes.ThemeChangeRequest$RequestType,long,cyanogenmod.themes.ThemeChangeRequest$1) -com.google.android.material.R$style: int TextAppearance_Design_Hint -com.google.android.material.R$styleable: int AppCompatTheme_actionMenuTextAppearance -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegment(java.lang.String) -com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode Device_Sensors -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator -com.google.android.material.R$styleable: int[] CardView -cyanogenmod.weather.CMWeatherManager$2 -androidx.core.widget.NestedScrollView: void setNestedScrollingEnabled(boolean) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdtd -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void dispose() -androidx.preference.R$styleable: int Spinner_android_entries -androidx.appcompat.R$styleable: int[] ActivityChooserView -wangdaye.com.geometricweather.R$id: int left -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial Imperial -com.bumptech.glide.R$id: int forever -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionBarOverlay -james.adaptiveicon.R$dimen: int abc_dialog_fixed_width_minor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String getWeather() -androidx.appcompat.widget.AppCompatImageView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -androidx.customview.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Body_Text -com.google.android.material.slider.Slider: void setThumbElevation(float) +io.reactivex.internal.observers.BasicIntQueueDisposable: long serialVersionUID androidx.constraintlayout.widget.R$attr: int thickness -com.google.android.material.R$dimen: int mtrl_edittext_rectangle_top_offset -okhttp3.RealCall: void enqueue(okhttp3.Callback) -androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_velocityMode -com.google.android.gms.common.api.GoogleApiClient -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dialog -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean delayErrors -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent -com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_internal_bg -com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_EditTextPreference -com.xw.repo.bubbleseekbar.R$string: int abc_shareactionprovider_share_with +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabAnimationMode +androidx.swiperefreshlayout.R$dimen: int compat_button_inset_horizontal_material +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleTintList(android.content.res.ColorStateList) +androidx.fragment.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$drawable: int notif_temp_136 +androidx.hilt.work.R$id: int info +com.google.android.material.R$color: int accent_material_dark +androidx.core.R$dimen: int compat_notification_large_icon_max_width +androidx.customview.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.R$color: int abc_hint_foreground_material_dark +com.google.android.material.R$dimen: int abc_text_size_title_material_toolbar +androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context) +com.google.android.material.R$styleable: int ActionBar_displayOptions +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_toBottomOf +androidx.appcompat.R$styleable: int[] SwitchCompat +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_trackTintMode +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: boolean tryOnError(java.lang.Throwable) +okio.HashingSink: HashingSink(okio.Sink,okio.ByteString,java.lang.String) +wangdaye.com.geometricweather.R$drawable: int notif_temp_53 +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_background_transition_holo_light +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupMenu +androidx.appcompat.R$attr: int state_above_anchor +androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context) +io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.SingleObserver) +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog_Alert +okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Level getLevel() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean getPressure() +androidx.recyclerview.R$id: int tag_accessibility_clickable_spans +androidx.preference.R$styleable: int CheckBoxPreference_disableDependentsState +androidx.recyclerview.R$id: int text +com.amap.api.location.APSServiceBase: android.os.IBinder onBind(android.content.Intent) +wangdaye.com.geometricweather.R$id: int cpv_color_panel_view +wangdaye.com.geometricweather.R$string: int mtrl_picker_out_of_range +android.support.v4.os.ResultReceiver$1: java.lang.Object[] newArray(int) +androidx.coordinatorlayout.R$drawable: int notification_action_background +okio.SegmentedByteString: void write(okio.Buffer) +wangdaye.com.geometricweather.R$dimen: int clock_face_margin_start +org.greenrobot.greendao.AbstractDao: void attachEntity(java.lang.Object,java.lang.Object,boolean) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +okio.BufferedSource: java.lang.String readString(java.nio.charset.Charset) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_scaleY +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_chainStyle +androidx.appcompat.R$attr: int theme +androidx.constraintlayout.widget.R$attr: int switchMinWidth +okio.BufferedSource: void require(long) +wangdaye.com.geometricweather.R$styleable: int LoadingImageView_imageAspectRatioAdjust +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.Observer downstream +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_logo +androidx.activity.R$id: int accessibility_custom_action_17 +cyanogenmod.providers.CMSettings$2: boolean validate(java.lang.String) +retrofit2.Platform: retrofit2.Platform findPlatform() +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: int getCollapsedSize() +androidx.constraintlayout.widget.R$id: int topPanel +androidx.viewpager2.R$id: int accessibility_custom_action_3 +androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.Fragment,androidx.lifecycle.ViewModelProvider$Factory) +com.google.android.material.R$attr: int actionOverflowButtonStyle +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar +androidx.loader.R$styleable: int ColorStateListItem_android_color +com.google.android.material.R$attr: int dayStyle +androidx.preference.R$style: int Base_V26_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode THUNDER +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void setDisposable(io.reactivex.disposables.Disposable) +android.didikee.donate.R$dimen: int abc_edit_text_inset_horizontal_material +org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.database.Database db +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_left +androidx.constraintlayout.widget.R$attr: int percentX +androidx.preference.R$layout: int abc_expanded_menu_layout +android.didikee.donate.R$string: int abc_toolbar_collapse_description +com.amap.api.location.AMapLocation: java.lang.String getPoiName() +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void disposeAfter() +wangdaye.com.geometricweather.R$id: int staticLayout +com.google.android.material.R$attr: int barrierMargin +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun +com.google.android.material.R$id: int month_navigation_bar +androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_button_bar_material +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_3 +wangdaye.com.geometricweather.R$attr: int settingsActivity +wangdaye.com.geometricweather.R$attr: int isPreferenceVisible +io.reactivex.internal.util.NotificationLite: boolean isDisposable(java.lang.Object) +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_thumb_radius +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: int UnitType +io.reactivex.Observable: io.reactivex.Observable join(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +james.adaptiveicon.R$id: int src_over +com.github.rahatarmanahmed.cpv.CircularProgressView: int getColor() +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeight +androidx.coordinatorlayout.R$drawable: int notification_bg_normal_pressed +com.google.android.material.R$dimen: int abc_panel_menu_list_width +androidx.preference.R$style: int Preference +androidx.appcompat.R$style: int Base_V22_Theme_AppCompat_Light +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String weather +com.google.android.material.R$string: int abc_menu_space_shortcut_label +com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.Typeface getExpandedTitleTypeface() +okhttp3.logging.LoggingEventListener: void requestBodyEnd(okhttp3.Call,long) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX) +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_default_mtrl_shape +retrofit2.adapter.rxjava2.HttpException +com.google.gson.internal.LinkedTreeMap: java.util.Set keySet() +androidx.appcompat.R$attr: int tooltipFrameBackground +androidx.preference.R$dimen: int abc_dialog_fixed_height_minor +androidx.customview.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light_focused +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) wangdaye.com.geometricweather.R$attr: int borderlessButtonStyle -wangdaye.com.geometricweather.R$styleable: int OnSwipe_maxVelocity -androidx.preference.R$attr: int actionModeFindDrawable -com.amap.api.fence.DistrictItem: java.lang.String getDistrictName() -androidx.constraintlayout.widget.R$styleable -com.loc.k: int e -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_y_offset_touch -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_width_major -androidx.constraintlayout.widget.R$styleable: int Toolbar_title -wangdaye.com.geometricweather.R$transition: int search_activity_shared_return -com.google.android.material.R$id: int wrap -cyanogenmod.app.CMContextConstants$Features: java.lang.String WEATHER_SERVICES -android.didikee.donate.R$attr: int popupTheme -androidx.preference.R$drawable: int abc_btn_colored_material -com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow snow -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Description -androidx.dynamicanimation.R$drawable: int notification_icon_background -androidx.swiperefreshlayout.R$id: int tag_accessibility_clickable_spans -androidx.constraintlayout.widget.R$attr: int viewInflaterClass -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dark -com.amap.api.location.AMapLocation: int LOCATION_TYPE_AMAP -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode valueOf(java.lang.String) -okhttp3.logging.LoggingEventListener: void responseHeadersEnd(okhttp3.Call,okhttp3.Response) -okio.ByteString: boolean startsWith(byte[]) -io.reactivex.Observable: java.lang.Object blockingSingle() -androidx.appcompat.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -com.amap.api.location.AMapLocation: java.lang.String b -retrofit2.Response: retrofit2.Response error(int,okhttp3.ResponseBody) -com.bumptech.glide.integration.okhttp.R$attr: int fontStyle -androidx.dynamicanimation.R$id: int line1 -androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog -com.google.android.material.R$attr: int alertDialogCenterButtons -androidx.constraintlayout.widget.R$id: int gone -androidx.lifecycle.Lifecycle: java.util.concurrent.atomic.AtomicReference mInternalScopeRef -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getMoonSetDate() -androidx.core.R$styleable: int FontFamilyFont_ttcIndex -androidx.legacy.coreutils.R$id: int action_image -android.didikee.donate.R$attr: int suggestionRowLayout -com.jaredrummler.android.colorpicker.R$attr: int cpv_dialogType -androidx.activity.R$attr: R$attr() -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy -okio.InflaterSource -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox -androidx.fragment.R$styleable: int GradientColor_android_gradientRadius -com.xw.repo.bubbleseekbar.R$attr: int statusBarBackground -wangdaye.com.geometricweather.R$styleable: int Constraint_android_elevation -androidx.constraintlayout.widget.R$styleable: int[] ViewStubCompat -com.github.rahatarmanahmed.cpv.CircularProgressView: void addListener(com.github.rahatarmanahmed.cpv.CircularProgressViewListener) -cyanogenmod.themes.ThemeManager: java.util.Set mChangeListeners -com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy DEFAULT -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit -androidx.preference.R$id: int icon_frame -wangdaye.com.geometricweather.R$string: int feedback_short_term_precipitation_alert -com.jaredrummler.android.colorpicker.R$attr: int checkboxStyle -com.amap.api.fence.PoiItem: java.lang.String getPoiName() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String windIcon -cyanogenmod.app.BaseLiveLockManagerService: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -wangdaye.com.geometricweather.R$string: int sunrise_sunset -android.didikee.donate.R$attr: int seekBarStyle -wangdaye.com.geometricweather.R$attr: int summaryOn -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex inTwoDays -okhttp3.Cookie: java.util.regex.Pattern TIME_PATTERN -com.xw.repo.bubbleseekbar.R$color: int button_material_dark -wangdaye.com.geometricweather.R$styleable: int[] ArcProgress -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xss -cyanogenmod.weather.WeatherInfo: int access$502(cyanogenmod.weather.WeatherInfo,int) -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextColor -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType GPS -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_windowAnimationStyle -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_11 -okhttp3.internal.ws.RealWebSocket$Message: RealWebSocket$Message(int,okio.ByteString) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline2 -com.google.gson.stream.JsonReader: void skipQuotedValue(char) -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getThumbTintList() -wangdaye.com.geometricweather.R$styleable: int MotionLayout_motionProgress -androidx.constraintlayout.widget.R$attr: int arrowHeadLength -wangdaye.com.geometricweather.R$drawable: int notif_temp_38 -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_DarkActionBar -com.google.android.material.R$id: int deltaRelative -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getTreeDescription() -android.didikee.donate.R$id: int showCustom -wangdaye.com.geometricweather.R$drawable: int shortcuts_hail_foreground -android.didikee.donate.R$styleable: int AppCompatTheme_windowNoTitle -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -com.xw.repo.bubbleseekbar.R$id: int start -androidx.viewpager2.R$color -com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout_PrimarySurface -androidx.core.R$dimen: int notification_right_side_padding_top -com.xw.repo.bubbleseekbar.R$id: int buttonPanel -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableEndCompat -androidx.preference.R$style: int AlertDialog_AppCompat_Light -cyanogenmod.hardware.DisplayMode: int describeContents() -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean cancelled -wangdaye.com.geometricweather.R$styleable: int CardView_cardBackgroundColor -androidx.appcompat.widget.ListPopupWindow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: double Value -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_radioButtonStyle -androidx.hilt.lifecycle.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWindDirection() -okio.Buffer$1: void write(int) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: KeyguardExternalViewProviderService$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService) -cyanogenmod.weather.CMWeatherManager$RequestStatus: int NO_MATCH_FOUND -com.google.android.material.R$color: int material_on_surface_emphasis_medium -android.didikee.donate.R$attr: int navigationContentDescription -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_Alert -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.MinutelyEntity,long) -androidx.appcompat.R$attr: int actionBarWidgetTheme -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int getColor() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_134 -com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getPasswordVisibilityToggleDrawable() -com.google.android.material.R$styleable: int Spinner_android_prompt -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDefaultSmsSub(int) -wangdaye.com.geometricweather.R$layout: int item_about_translator -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: java.lang.String unitAbbreviation +com.xw.repo.bubbleseekbar.R$attr: int bsb_seek_step_section +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: io.reactivex.FlowableEmitter serialize() +androidx.viewpager2.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context) +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void setDisposable(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void refresh() +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_2 +com.baidu.location.e.l$b: com.baidu.location.e.l$b a +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +androidx.appcompat.R$drawable: int abc_ic_star_half_black_48dp +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object getKey(java.lang.Object) +com.google.android.material.R$styleable: int Slider_labelStyle +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_right_mtrl_dark +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status INITIALIZING +androidx.appcompat.widget.AppCompatImageButton: void setImageBitmap(android.graphics.Bitmap) +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setScrollBarHidden(boolean) +android.didikee.donate.R$drawable: int abc_ic_star_black_48dp +com.google.android.material.circularreveal.CircularRevealLinearLayout: int getCircularRevealScrimColor() +androidx.preference.R$attr: int spinBars +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_summaryOff +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +androidx.constraintlayout.widget.R$attr: int altSrc +okhttp3.Response: okhttp3.Headers headers() +com.amap.api.location.AMapLocationClientOption: void setDownloadCoordinateConvertLibrary(boolean) +retrofit2.RequestFactory$Builder: void parseMethodAnnotation(java.lang.annotation.Annotation) +cyanogenmod.externalviews.ExternalView$2: boolean val$visible +com.google.android.material.button.MaterialButton: void setRippleColorResource(int) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_overflow_padding_end_material +android.didikee.donate.R$style: int TextAppearance_AppCompat_Button +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: long serialVersionUID +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +androidx.appcompat.R$dimen: int abc_action_bar_elevation_material +wangdaye.com.geometricweather.R$id: int item_weather_daily_overview_text +com.xw.repo.bubbleseekbar.R$attr: int background +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder maxStale(int,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$color: int abc_search_url_text_normal +cyanogenmod.app.CMContextConstants: java.lang.String CM_THEME_SERVICE +android.didikee.donate.R$styleable: int ActivityChooserView_initialActivityCount +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_LOCERRORCODE +cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder mService +androidx.preference.R$dimen: R$dimen() +com.turingtechnologies.materialscrollbar.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_day_foreground +wangdaye.com.geometricweather.R$layout: int design_bottom_sheet_dialog +com.xw.repo.bubbleseekbar.R$attr: int actionButtonStyle +androidx.transition.R$styleable: int GradientColor_android_startColor +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressViewEndOffset() +cyanogenmod.weather.WeatherLocation: java.lang.String mKey +cyanogenmod.providers.DataUsageContract: java.lang.String UID +androidx.preference.R$string: int abc_action_mode_done +androidx.constraintlayout.widget.R$style: int Base_V23_Theme_AppCompat_Light +androidx.drawerlayout.R$integer +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endY +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_creator +androidx.transition.R$dimen: int notification_content_margin_start +androidx.preference.R$attr: int expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_title +androidx.appcompat.resources.R$attr: int font +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +com.xw.repo.bubbleseekbar.R$attr: int contentInsetStart +retrofit2.HttpException: int code() +okhttp3.internal.http2.Http2Connection$6: void execute() +cyanogenmod.weather.WeatherLocation: int hashCode() +androidx.constraintlayout.widget.R$drawable: int abc_popup_background_mtrl_mult +okhttp3.internal.platform.Platform: void connectSocket(java.net.Socket,java.net.InetSocketAddress,int) +com.google.android.material.R$styleable: int BottomAppBar_backgroundTint +james.adaptiveicon.R$dimen: int disabled_alpha_material_light +androidx.coordinatorlayout.R$id: int async +androidx.appcompat.R$attr: int alertDialogButtonGroupStyle +james.adaptiveicon.R$id: int search_edit_frame +wangdaye.com.geometricweather.R$layout: int widget_text_end +android.didikee.donate.R$string: int abc_shareactionprovider_share_with_application +com.google.android.material.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_width_material +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: long serialVersionUID +james.adaptiveicon.R$dimen: int notification_top_pad_large_text +com.jaredrummler.android.colorpicker.R$attr: int allowDividerBelow +androidx.recyclerview.R$id: int text2 +cyanogenmod.app.Profile$TriggerState: int ON_A2DP_CONNECT +wangdaye.com.geometricweather.R$layout: int item_card_display +io.reactivex.internal.subscriptions.SubscriptionHelper: void request(long) +android.didikee.donate.R$layout: int notification_template_part_time +androidx.coordinatorlayout.R$integer: int status_bar_notification_info_maxnum +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.util.concurrent.locks.Condition condition +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListMenuView +com.google.android.material.R$styleable: int TabLayout_tabTextAppearance +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Light +com.google.android.material.R$attr: int chipMinTouchTargetSize +com.google.android.material.chip.Chip +wangdaye.com.geometricweather.R$string: int sensible_temp +wangdaye.com.geometricweather.R$style: int Base_V26_Theme_AppCompat_Light +androidx.appcompat.resources.R$styleable +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents +wangdaye.com.geometricweather.R$color: int design_default_color_primary_dark +wangdaye.com.geometricweather.background.polling.work.worker.AsyncUpdateWorker +androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_material +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_toolbar +wangdaye.com.geometricweather.R$color: int highlighted_text_material_dark +androidx.preference.R$styleable: int AppCompatTheme_windowFixedWidthMinor +com.xw.repo.bubbleseekbar.R$attr: int autoSizeMinTextSize +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_divider_material +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabTextStyle +com.google.android.material.R$dimen: int abc_action_bar_icon_vertical_padding_material +com.google.android.material.R$attr: int singleLine +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Invalid +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnSettingsClickIntent(android.content.Intent) +cyanogenmod.app.IPartnerInterface$Stub$Proxy: boolean setZenMode(int) +com.google.android.material.R$style: int Base_Widget_AppCompat_EditText +com.google.android.material.R$styleable: int AppCompatTextView_drawableStartCompat +com.jaredrummler.android.colorpicker.R$attr: int fontVariationSettings +retrofit2.DefaultCallAdapterFactory +com.google.android.material.datepicker.SingleDateSelector +com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.String) +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getNestedScrollAxes() +com.google.android.material.R$color: int material_cursor_color +com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_internal_bg +cyanogenmod.providers.CMSettings$System: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Button +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingRight +io.reactivex.internal.disposables.DisposableHelper: boolean isDisposed(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationY +androidx.appcompat.R$string: int abc_menu_function_shortcut_label +androidx.preference.R$attr: int buttonCompat +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.util.Date date +com.turingtechnologies.materialscrollbar.R$attr: int autoSizeMinTextSize +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundTintMode +androidx.lifecycle.extensions.R$id: int right_icon +cyanogenmod.weather.RequestInfo: int mRequestType +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_PopupMenu +com.amap.api.fence.PoiItem$1: PoiItem$1() +androidx.constraintlayout.widget.R$id: int none +com.amap.api.fence.GeoFence: com.amap.api.fence.PoiItem f +android.didikee.donate.R$styleable +wangdaye.com.geometricweather.R$color: int material_cursor_color +wangdaye.com.geometricweather.R$string: int transition_activity_search_txt +cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mDeleteIntent +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle +com.turingtechnologies.materialscrollbar.R$attr: int behavior_hideable +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_animate_relativeTo +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setDropDownBackgroundResource(int) +androidx.lifecycle.LiveData$ObserverWrapper +androidx.vectordrawable.animated.R$string +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarPopupTheme +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property MinuteInterval +androidx.appcompat.resources.R$styleable: int GradientColorItem_android_color +okio.Buffer: okio.Buffer$UnsafeCursor readUnsafe() +com.google.android.material.R$id: int select_dialog_listview +okio.Buffer$UnsafeCursor: int next() +com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_900 +wangdaye.com.geometricweather.R$id: int moldTitle +com.xw.repo.bubbleseekbar.R$color: int primary_material_light +com.turingtechnologies.materialscrollbar.R$id: int title_template +androidx.viewpager2.adapter.FragmentStateAdapter$5 +wangdaye.com.geometricweather.R$color: int colorTextDark +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.viewpager2.R$styleable: int RecyclerView_reverseLayout +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_CompactMenu +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +retrofit2.ParameterHandler$Query: ParameterHandler$Query(java.lang.String,retrofit2.Converter,boolean) +androidx.vectordrawable.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getLogo() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: AccuDailyResult$DailyForecasts$Temperature$Maximum() +wangdaye.com.geometricweather.R$attr: int tabIndicatorFullWidth +androidx.appcompat.widget.Toolbar: void setCollapsible(boolean) +androidx.coordinatorlayout.R$id: int accessibility_custom_action_16 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextBackground +com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int CloudCover +androidx.preference.R$attr: int dialogTitle +androidx.viewpager.R$dimen: int compat_button_inset_vertical_material +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setStatusBar(java.lang.String) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.Observer downstream +androidx.vectordrawable.R$string +okhttp3.Cookie: boolean secure +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_width_material +wangdaye.com.geometricweather.R$attr: int bsb_track_color +com.amap.api.fence.PoiItem: PoiItem() +androidx.viewpager.widget.ViewPager: void addOnAdapterChangeListener(androidx.viewpager.widget.ViewPager$OnAdapterChangeListener) +com.google.android.material.R$styleable: int[] ClockHandView +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.lang.String Phase +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_baselineAligned +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_end +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property CityId +wangdaye.com.geometricweather.R$styleable: int[] CompoundButton +androidx.preference.R$id: int content +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_toTopOf +androidx.legacy.coreutils.R$color: R$color() +androidx.preference.R$styleable: int AppCompatTheme_windowMinWidthMajor +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Long getId() +android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMarkTintMode +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +com.google.android.material.R$styleable: int KeyTimeCycle_wavePeriod +androidx.preference.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +com.google.android.material.R$style: int Theme_AppCompat +androidx.legacy.coreutils.R$dimen: int notification_top_pad +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Tooltip +com.google.android.material.R$id: int fixed +com.amap.api.location.AMapLocationQualityReport: boolean isWifiAble() +wangdaye.com.geometricweather.R$drawable: int donate_wechat +androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Light +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type ERROR +android.didikee.donate.R$attr: int ratingBarStyleIndicator +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_handleColor +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(java.lang.Iterable,io.reactivex.functions.Function,int) +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.DatabaseOpenHelper$EncryptedHelper encryptedHelper +okhttp3.internal.http1.Http1Codec$ChunkedSource +com.google.android.material.button.MaterialButton: void setElevation(float) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle +androidx.legacy.coreutils.R$integer +com.google.android.material.R$styleable: int GradientColor_android_endY +com.google.android.material.R$styleable: int[] ViewPager2 +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Inverse +cyanogenmod.app.ThemeVersion: int CM11 +james.adaptiveicon.R$color: int abc_btn_colored_text_material +okhttp3.MediaType: int hashCode() +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_borderWidth +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getLongDate(android.content.Context) +androidx.appcompat.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$attr: int duration +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onError(java.lang.Throwable) +okio.Pipe$PipeSource: okio.Pipe this$0 +androidx.viewpager.R$styleable: int GradientColor_android_endY +james.adaptiveicon.R$attr: int actionBarTabTextStyle +com.google.android.material.R$styleable: int[] ActionMenuItemView +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: java.lang.String DESCRIPTOR +cyanogenmod.weather.RequestInfo: RequestInfo(cyanogenmod.weather.RequestInfo$1) +wangdaye.com.geometricweather.R$attr: int colorOnError +okio.Pipe: boolean sinkClosed +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicInteger windows +androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragScale +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String quality +com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display4 +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: long beginTime +com.bumptech.glide.integration.okhttp.R$drawable: int notify_panel_notification_icon_bg +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType PNG_A +wangdaye.com.geometricweather.R$id: int dialog_donate_wechat_img +androidx.preference.R$drawable: int notification_bg_low_pressed +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int CANCELLED +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Pollen getPollen() +androidx.core.app.JobIntentService: JobIntentService() +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +com.xw.repo.bubbleseekbar.R$attr: int panelMenuListTheme +com.google.android.material.R$id: int material_hour_text_input +wangdaye.com.geometricweather.R$attr: int spinBars +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationZ +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontWeight +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderFetchTimeout +cyanogenmod.app.suggest.ApplicationSuggestion$1: cyanogenmod.app.suggest.ApplicationSuggestion[] newArray(int) +com.google.android.material.R$id: int material_minute_text_input +androidx.preference.R$drawable: int abc_ic_clear_material +androidx.constraintlayout.widget.R$styleable: int MenuItem_alphabeticModifiers +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_1 +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onComplete() +okhttp3.internal.ws.WebSocketWriter: void writePing(okio.ByteString) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Small +com.google.android.material.R$id: int time +com.xw.repo.bubbleseekbar.R$layout: int notification_action_tombstone +androidx.work.R$dimen: int notification_big_circle_margin +com.google.android.material.R$layout: int mtrl_picker_header_dialog +io.reactivex.internal.disposables.SequentialDisposable: boolean isDisposed() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_image_size +james.adaptiveicon.R$attr: int listLayout +androidx.activity.R$styleable: int FontFamily_fontProviderQuery +retrofit2.http.POST: java.lang.String value() +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Light_ActionBar_Solid +com.bumptech.glide.R$dimen: int notification_action_text_size +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_material +androidx.preference.R$attr: int layout_keyline +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_caption_material +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_1 +com.xw.repo.bubbleseekbar.R$layout: int abc_action_menu_layout +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean done +cyanogenmod.app.CustomTile$ExpandedStyle: void internalSetExpandedItems(java.util.ArrayList) +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_container +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.R$id: int center_vertical +androidx.loader.R$styleable: int ColorStateListItem_alpha +androidx.appcompat.widget.AppCompatButton: void setAutoSizeTextTypeWithDefaults(int) +retrofit2.Response: java.lang.String message() +androidx.work.ListenableWorker: ListenableWorker(android.content.Context,androidx.work.WorkerParameters) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator +com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage ZH +androidx.fragment.R$style: int TextAppearance_Compat_Notification_Time +com.xw.repo.bubbleseekbar.R$drawable: int tooltip_frame_dark +cyanogenmod.externalviews.KeyguardExternalView$7 +androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context,android.util.AttributeSet) +okhttp3.internal.http2.Http2Reader: void readData(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_BottomSheet +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: double Value +com.google.android.material.R$styleable: int Toolbar_titleMarginStart +androidx.preference.R$dimen: int abc_alert_dialog_button_dimen +com.jaredrummler.android.colorpicker.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$color: int button_material_light +wangdaye.com.geometricweather.R$id: int notification_multi_city_text_1 +wangdaye.com.geometricweather.R$color: int design_default_color_on_error +com.turingtechnologies.materialscrollbar.R$styleable: int[] DrawerArrowToggle +androidx.preference.R$attr: int paddingEnd +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_night_2 +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_max +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_vertical +androidx.preference.R$attr: int colorPrimary +androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityPaused(android.app.Activity) +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_switchTextOn +com.jaredrummler.android.colorpicker.R$styleable: int GradientColorItem_android_color +james.adaptiveicon.R$layout: int abc_search_view +wangdaye.com.geometricweather.R$id: int listMode +com.jaredrummler.android.colorpicker.R$attr: int goIcon +okhttp3.internal.ws.RealWebSocket: void onReadPong(okio.ByteString) +androidx.constraintlayout.widget.R$drawable: int abc_textfield_default_mtrl_alpha +cyanogenmod.os.Build: java.lang.String CYANOGENMOD_VERSION +com.google.android.material.R$attr: int barLength +com.turingtechnologies.materialscrollbar.R$styleable: int[] CardView +com.google.android.material.textfield.TextInputLayout: void setEditText(android.widget.EditText) +cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.CMTelephonyManager sCMTelephonyManagerInstance +androidx.lifecycle.FullLifecycleObserverAdapter$1 +androidx.appcompat.widget.AppCompatRadioButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +androidx.preference.R$attr: int entries +cyanogenmod.externalviews.ExternalView$5: void run() +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetStart +androidx.hilt.R$id: int fragment_container_view_tag +okio.InflaterSource: InflaterSource(okio.BufferedSource,java.util.zip.Inflater) +retrofit2.ParameterHandler$Path: boolean encoded +com.jaredrummler.android.colorpicker.R$dimen: int cpv_required_padding +okio.BufferedSource: long readLong() +wangdaye.com.geometricweather.main.dialogs.LearnMoreAboutResidentLocationDialog: LearnMoreAboutResidentLocationDialog() +androidx.appcompat.resources.R$id: int accessibility_custom_action_29 +com.google.android.material.bottomnavigation.BottomNavigationView: int getItemTextAppearanceActive() +com.turingtechnologies.materialscrollbar.R$anim: int abc_fade_out +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_25 +androidx.activity.R$id: int accessibility_custom_action_6 +androidx.constraintlayout.widget.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge +james.adaptiveicon.R$styleable: int MenuItem_android_enabled +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginTop +io.reactivex.internal.subscriptions.SubscriptionHelper: void deferredRequest(java.util.concurrent.atomic.AtomicReference,java.util.concurrent.atomic.AtomicLong,long) +cyanogenmod.externalviews.KeyguardExternalViewProviderService: KeyguardExternalViewProviderService() +cyanogenmod.weather.WeatherInfo: double getTodaysHigh() +okio.RealBufferedSink: okio.BufferedSink write(byte[]) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: java.util.concurrent.atomic.AtomicInteger active +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String INSTALL_TIME +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.Integer alti +okhttp3.Cache: int networkCount +okhttp3.internal.connection.RealConnection: okhttp3.internal.connection.RealConnection testConnection(okhttp3.ConnectionPool,okhttp3.Route,java.net.Socket,long) +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_font +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +com.google.android.material.floatingactionbutton.FloatingActionButton: int getExpandedComponentIdHint() +androidx.preference.R$drawable +com.google.android.material.R$styleable: int Chip_android_ellipsize +retrofit2.Retrofit +com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_horizontal +androidx.legacy.coreutils.R$styleable: int ColorStateListItem_alpha +com.jaredrummler.android.colorpicker.R$attr: int switchMinWidth +wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_android_orderingFromXml +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: MfForecastV2Result$ForecastProperties() +com.google.android.material.R$styleable: int CardView_contentPaddingLeft +okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithIncrementalIndexingNewName() +com.google.android.material.transformation.FabTransformationSheetBehavior +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$id: int action_divider +com.google.android.material.R$styleable: int TabLayout_tabMinWidth +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +cyanogenmod.weather.CMWeatherManager$1: void onWeatherServiceProviderChanged(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.Function leftEnd +retrofit2.Platform$Android: java.util.concurrent.Executor defaultCallbackExecutor() +com.jaredrummler.android.colorpicker.R$style: int Platform_V21_AppCompat +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ButtonBar +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void addScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +com.jaredrummler.android.colorpicker.R$attr: int multiChoiceItemLayout +wangdaye.com.geometricweather.R$id: int widget_clock_day_card +androidx.recyclerview.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterEnabled +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_grey +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: java.lang.String getGroupName() +androidx.constraintlayout.motion.widget.MotionLayout: void setTransition(int) +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onNegativeCross +cyanogenmod.profiles.StreamSettings: int mValue +com.google.android.material.R$id: int tabMode +androidx.preference.R$attr: int firstBaselineToTopHeight +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +retrofit2.http.Field +androidx.constraintlayout.widget.R$styleable: int Spinner_android_popupBackground +io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer) +com.google.android.material.R$styleable: int Constraint_flow_verticalAlign +androidx.preference.R$style: int Widget_Support_CoordinatorLayout +cyanogenmod.hardware.CMHardwareManager: int getVibratorDefaultIntensity() +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType valueOf(java.lang.String) +cyanogenmod.app.ProfileGroup: boolean mDirty +androidx.constraintlayout.widget.R$color: int switch_thumb_material_dark +james.adaptiveicon.R$styleable: int TextAppearance_android_shadowRadius +com.turingtechnologies.materialscrollbar.R$id: int action_mode_bar +androidx.preference.R$color: int abc_search_url_text_selected +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display3 +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_CompactMenu +androidx.preference.R$attr: int actionBarTabBarStyle +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemOnClickIntent(android.app.PendingIntent) +wangdaye.com.geometricweather.R$integer: int cpv_default_progress +com.jaredrummler.android.colorpicker.R$drawable: int tooltip_frame_light +okhttp3.Call: void enqueue(okhttp3.Callback) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.disposables.Disposable upstream +android.didikee.donate.R$attr: int windowActionModeOverlay +okhttp3.internal.tls.CertificateChainCleaner: CertificateChainCleaner() +com.google.android.material.R$attr: int tabIndicatorHeight +com.google.android.material.appbar.CollapsingToolbarLayout: void setMaxLines(int) +androidx.appcompat.R$style: int TextAppearance_AppCompat_Inverse +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +retrofit2.ParameterHandler$HeaderMap: void apply(retrofit2.RequestBuilder,java.util.Map) +com.google.android.material.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderFetchTimeout +cyanogenmod.providers.DataUsageContract: java.lang.String SLOW_SAMPLES +androidx.preference.R$styleable: int SearchView_iconifiedByDefault +androidx.hilt.R$id: int tag_screen_reader_focusable +okhttp3.HttpUrl: java.lang.String fragment() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: double Value +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_tileMode +okhttp3.internal.http.HttpCodec: void flushRequest() +com.google.android.material.R$styleable: int Toolbar_titleTextAppearance +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PRIMARY_COLOR +cyanogenmod.externalviews.ExternalView$3 +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_1 +james.adaptiveicon.R$color: int material_grey_850 +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_labelVisibilityMode +com.google.android.material.R$dimen: int design_bottom_navigation_icon_size +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean +wangdaye.com.geometricweather.R$drawable: int notif_temp_103 +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: java.lang.Integer clouds +com.bumptech.glide.R$styleable: int GradientColor_android_centerY +com.google.android.material.tabs.TabItem: TabItem(android.content.Context) +wangdaye.com.geometricweather.main.layouts.MainLayoutManager +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty6H +okio.Okio: boolean isAndroidGetsocknameError(java.lang.AssertionError) +com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorColors(int[]) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +okhttp3.internal.http2.Http2Connection$Listener: void onSettings(okhttp3.internal.http2.Http2Connection) +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType valueOf(java.lang.String) +wangdaye.com.geometricweather.R$style: int PreferenceCategoryTitleTextStyle +com.google.android.material.tabs.TabLayout: void setupWithViewPager(androidx.viewpager.widget.ViewPager) +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_doneButton +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getBrandId() +wangdaye.com.geometricweather.R$styleable: int RangeSlider_values +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_FULL_COLOR_VALIDATOR +com.google.android.material.bottomnavigation.BottomNavigationItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode valueOf(java.lang.String) +okhttp3.HttpUrl: void canonicalize(okio.Buffer,java.lang.String,int,int,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTextPadding +wangdaye.com.geometricweather.R$string: int cancel +wangdaye.com.geometricweather.R$string: int content_desc_back +com.turingtechnologies.materialscrollbar.MaterialScrollBar: int getMode() +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onSubscribe(org.reactivestreams.Subscription) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language getInstance(java.lang.String) +android.support.v4.app.INotificationSideChannel$Stub: java.lang.String DESCRIPTOR +com.xw.repo.bubbleseekbar.R$attr: int bsb_track_color +androidx.legacy.coreutils.R$id: int right_icon +com.google.gson.internal.$Gson$Types$WildcardTypeImpl +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node getHead() +james.adaptiveicon.R$dimen: int tooltip_corner_radius +androidx.core.graphics.drawable.IconCompatParcelizer: IconCompatParcelizer() +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customFloatValue +james.adaptiveicon.R$layout: int abc_screen_toolbar +android.didikee.donate.R$styleable: int AppCompatTheme_editTextBackground +com.google.android.material.timepicker.TimeModel: android.os.Parcelable$Creator CREATOR +androidx.recyclerview.R$styleable: int FontFamily_fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$string: int abc_action_bar_up_description +cyanogenmod.app.Profile$ProfileTrigger: void getXmlString(java.lang.StringBuilder,android.content.Context) +com.google.android.material.R$attr: int drawableTopCompat +okhttp3.internal.http2.Hpack$Reader: java.util.List getAndResetHeaderList() +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type UV_INDEX +com.turingtechnologies.materialscrollbar.R$anim: int abc_popup_enter +okhttp3.OkHttpClient$Builder: java.util.List networkInterceptors +cyanogenmod.app.ProfileGroup: ProfileGroup(android.os.Parcel,cyanogenmod.app.ProfileGroup$1) +james.adaptiveicon.R$style +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onNegativeCross +wangdaye.com.geometricweather.R$attr: int itemIconTint +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.ObservableEmitter serialize() +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +okio.Base64: java.lang.String encodeUrl(byte[]) +com.jaredrummler.android.colorpicker.R$id: int action_bar +cyanogenmod.app.suggest.IAppSuggestProvider: boolean handles(android.content.Intent) +wangdaye.com.geometricweather.R$dimen: int tooltip_horizontal_padding +androidx.preference.R$styleable: int AlertDialog_android_layout +androidx.constraintlayout.widget.R$attr: int backgroundTint +android.didikee.donate.R$id: int icon +wangdaye.com.geometricweather.R$drawable: int notif_temp_132 +androidx.constraintlayout.widget.R$id: int autoComplete +android.didikee.donate.R$id: int buttonPanel +retrofit2.Converter$Factory: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlNormal -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherPhase -androidx.core.R$styleable: int GradientColor_android_centerX -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat -james.adaptiveicon.R$styleable: int[] AppCompatTheme -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_hovered_alpha -io.reactivex.internal.operators.observable.ObserverResourceWrapper: boolean isDisposed() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_id -android.didikee.donate.R$color: int dim_foreground_disabled_material_light -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -com.github.rahatarmanahmed.cpv.R$string: R$string() -com.google.android.material.R$style: int TextAppearance_AppCompat_Large -cyanogenmod.externalviews.ExternalView$4: cyanogenmod.externalviews.ExternalView this$0 -wangdaye.com.geometricweather.R$integer: int cpv_default_start_angle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial Imperial -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) -okhttp3.FormBody: java.lang.String encodedName(int) -androidx.preference.R$styleable: int FontFamilyFont_android_fontStyle -androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context,android.util.AttributeSet,int) -androidx.lifecycle.LiveData: int mActiveCount -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableBottomCompat -androidx.viewpager.R$id: int action_container -io.reactivex.Observable: io.reactivex.Observable throttleFirst(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -cyanogenmod.weatherservice.IWeatherProviderService: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) -com.google.android.material.textfield.TextInputLayout: void addOnEditTextAttachedListener(com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener) -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextInputEditText -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: long produced -androidx.preference.R$drawable: int abc_scrubber_primary_mtrl_alpha -okio.AsyncTimeout: java.io.IOException newTimeoutException(java.io.IOException) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeApparentTemperature() -com.jaredrummler.android.colorpicker.R$string: int cpv_custom -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_DrawerArrowToggle -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ID -com.google.android.material.R$styleable: int MenuItem_android_orderInCategory -com.bumptech.glide.R$dimen: int compat_notification_large_icon_max_width -androidx.vectordrawable.R$id: int tag_screen_reader_focusable -okio.Timeout: long deadlineNanoTime() -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginBottom() -okhttp3.internal.http1.Http1Codec$AbstractSource: long bytesRead -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegments(java.lang.String,boolean) -cyanogenmod.weather.IRequestInfoListener$Stub: int TRANSACTION_onLookupCityRequestCompleted -androidx.preference.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.R$id: int mtrl_calendar_months -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void run() -okhttp3.Address: javax.net.SocketFactory socketFactory() -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -retrofit2.Retrofit: retrofit2.ServiceMethod loadServiceMethod(java.lang.reflect.Method) -com.google.android.material.slider.Slider: int getLabelBehavior() -okhttp3.internal.ws.WebSocketReader: void processNextFrame() -androidx.fragment.R$id: int accessibility_custom_action_0 -com.google.android.material.slider.BaseSlider: void setHaloRadiusResource(int) -wangdaye.com.geometricweather.R$attr: int thumbElevation -androidx.appcompat.R$style: int Base_AlertDialog_AppCompat -com.google.android.material.R$layout: int abc_action_mode_bar -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getCheckedIcon() -androidx.appcompat.widget.ActionBarContainer: void setSplitBackground(android.graphics.drawable.Drawable) -retrofit2.BuiltInConverters$BufferingResponseBodyConverter: retrofit2.BuiltInConverters$BufferingResponseBodyConverter INSTANCE -cyanogenmod.os.Build$CM_VERSION_CODES: int DRAGON_FRUIT -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPopupWindowStyle -okio.Buffer: byte[] readByteArray(long) -androidx.hilt.work.R$dimen: int compat_button_padding_vertical_material -cyanogenmod.app.StatusBarPanelCustomTile: int id -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type upperBound -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetStart -okhttp3.internal.http.HttpHeaders: java.util.List parseChallenges(okhttp3.Headers,java.lang.String) -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_anchor -wangdaye.com.geometricweather.R$dimen: int design_snackbar_action_text_color_alpha -wangdaye.com.geometricweather.R$string: int ragweed -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_textStartPadding -androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_bias -cyanogenmod.providers.CMSettings$System: long getLongForUser(android.content.ContentResolver,java.lang.String,int) -cyanogenmod.externalviews.KeyguardExternalView: void onKeyguardDismissed() -androidx.preference.R$color: int abc_background_cache_hint_selector_material_dark -com.github.rahatarmanahmed.cpv.R$attr: int cpv_startAngle -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -androidx.preference.R$id: int line3 -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void complete() -androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_srcCompat -com.google.android.material.textfield.TextInputLayout: void setEndIconCheckable(boolean) -com.google.android.material.R$styleable: int CollapsingToolbarLayout_maxLines -com.amap.api.location.AMapLocation: java.lang.String f(com.amap.api.location.AMapLocation,java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetLeft -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_Bridge -wangdaye.com.geometricweather.R$id: int activity_weather_daily_pager -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.disposables.CompositeDisposable set -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: AccuDailyResult$DailyForecasts$Temperature() -wangdaye.com.geometricweather.R$drawable: int abc_tab_indicator_material -wangdaye.com.geometricweather.R$string: int settings_title_appearance -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_text_padding_right -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void cancel() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar -androidx.hilt.work.R$id -androidx.appcompat.R$styleable: int AppCompatTheme_colorBackgroundFloating -com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorColors -androidx.vectordrawable.animated.R$string: int status_bar_notification_info_overflow -okhttp3.Cache$Entry: okhttp3.Response response(okhttp3.internal.cache.DiskLruCache$Snapshot) -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -androidx.legacy.coreutils.R$id: int action_divider -androidx.constraintlayout.widget.R$drawable: int abc_btn_check_to_on_mtrl_000 -com.jaredrummler.android.colorpicker.R$attr: int tickMarkTintMode -androidx.preference.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.UV getUV() -com.google.android.material.R$style: int AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.R$drawable: int ic_sunrise -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWeatherPhase -com.google.android.material.R$anim: int mtrl_card_lowers_interpolator -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetLeft -android.didikee.donate.R$drawable: int abc_btn_check_to_on_mtrl_000 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX) -com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.R$styleable: int Slider_haloRadius -com.amap.api.fence.GeoFence: float i -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getReadableDb() -androidx.constraintlayout.widget.R$style: int Base_DialogWindowTitle_AppCompat -com.turingtechnologies.materialscrollbar.R$id: int action_bar_root -androidx.drawerlayout.R$layout: int notification_template_custom_big -com.google.android.material.R$layout: int mtrl_calendar_year -androidx.core.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.preference.R$styleable: int ActionBar_icon -okhttp3.Response: long sentRequestAtMillis -androidx.loader.R$id: int chronometer -androidx.appcompat.widget.AppCompatRadioButton: android.content.res.ColorStateList getSupportBackgroundTintList() -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontWeight -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_elevation_material -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.RequestBody) -androidx.dynamicanimation.R$integer: int status_bar_notification_info_maxnum -io.reactivex.internal.operators.observable.ObserverResourceWrapper -com.google.android.material.appbar.AppBarLayout: int getTopInset() -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_summaryOff -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_TextView -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -androidx.constraintlayout.widget.R$styleable: int Toolbar_navigationIcon -com.bumptech.glide.integration.okhttp.R$id: int info -retrofit2.HttpServiceMethod: okhttp3.Call$Factory callFactory -retrofit2.Utils: void throwIfFatal(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: java.lang.Object value -james.adaptiveicon.R$styleable: int SwitchCompat_showText -james.adaptiveicon.R$styleable: int AppCompatTheme_checkboxStyle -android.didikee.donate.R$styleable: int AppCompatTheme_actionMenuTextColor -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_y_offset_non_touch -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String direction -james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Dialog -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayHorizontalWidgetConfigActivity -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_NoActionBar_Bridge -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void innerComplete() -androidx.work.impl.foreground.SystemForegroundService -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: MfForecastResult$Position() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.gms.base.R$id: int adjust_width -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_color -androidx.legacy.coreutils.R$styleable: int GradientColorItem_android_color -com.google.android.material.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.R$id: int notification_multi_city_3 -cyanogenmod.app.ILiveLockScreenManager: void setLiveLockScreenEnabled(boolean) -cyanogenmod.library.R$styleable -wangdaye.com.geometricweather.R$string: int feedback_running_in_background -androidx.vectordrawable.R$styleable: int GradientColor_android_endColor -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -io.reactivex.Observable: io.reactivex.Observable timeout0(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$attr: int customBoolean -android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyleSmall -com.google.android.gms.common.R$integer: int google_play_services_version -com.xw.repo.bubbleseekbar.R$color: int notification_action_color_filter -com.baidu.location.BDLocation: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$attr: int mock_showLabel -com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_percent -androidx.constraintlayout.widget.ConstraintHelper: int[] getReferencedIds() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogCenterButtons -androidx.constraintlayout.widget.R$attr: int nestedScrollFlags -com.google.android.gms.common.api.GoogleApiActivity -wangdaye.com.geometricweather.R$attr: int showTitle -wangdaye.com.geometricweather.R$transition: int search_activity_return -android.didikee.donate.R$drawable: int abc_ic_ab_back_material -wangdaye.com.geometricweather.R$attr: int fontWeight -wangdaye.com.geometricweather.R$string: int settings_notification_hide_icon_off -com.google.android.material.R$styleable: int BottomAppBar_fabCradleVerticalOffset -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: java.lang.String Unit -com.xw.repo.bubbleseekbar.R$attr: int bsb_rtl -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: boolean isDisposed() -com.google.gson.stream.JsonReader: int PEEKED_BUFFERED -retrofit2.HttpServiceMethod: java.lang.Object invoke(java.lang.Object[]) -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginTop -com.amap.api.location.LocationManagerBase: void stopLocation() -androidx.preference.R$id: int search_src_text -com.google.android.material.R$styleable: int AppCompatTextView_drawableStartCompat -com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_creator -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 -com.jaredrummler.android.colorpicker.R$layout: int notification_template_part_chronometer -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoSource -androidx.viewpager.R$styleable: int GradientColor_android_startX -androidx.transition.R$styleable: int FontFamilyFont_fontVariationSettings -cyanogenmod.weather.RequestInfo$1: java.lang.Object[] newArray(int) -androidx.core.R$id: int accessibility_custom_action_5 -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode valueOf(java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -retrofit2.RequestBuilder: void addHeader(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$attr: int expandActivityOverflowButtonDrawable -androidx.fragment.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX getNames() -wangdaye.com.geometricweather.R$id: int outgoing -com.loc.h: void getLocation(java.lang.String) -androidx.appcompat.widget.Toolbar: void setOnMenuItemClickListener(androidx.appcompat.widget.Toolbar$OnMenuItemClickListener) -com.google.android.material.chip.Chip: void setChipIconSize(float) -okio.RealBufferedSink$1: void close() -wangdaye.com.geometricweather.R$drawable: int abc_btn_check_to_on_mtrl_015 -androidx.hilt.work.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.R$dimen: int mtrl_slider_label_square_side -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitationDuration -androidx.viewpager.R$dimen: int notification_right_icon_size -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onError(java.lang.Throwable) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) -com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Widget_AppCompat_Toolbar -androidx.recyclerview.R$integer: R$integer() -wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -com.jaredrummler.android.colorpicker.R$attr: int colorError -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: HalfDay(java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration,wangdaye.com.geometricweather.common.basic.models.weather.Wind,java.lang.Integer) -androidx.preference.R$drawable: int abc_ic_search_api_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: double Value -com.google.android.material.R$layout: int test_toolbar_elevation -james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedHeightMinor -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItemSecondary -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_roundPercent -okhttp3.CookieJar: java.util.List loadForRequest(okhttp3.HttpUrl) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_verticalDivider -com.google.android.material.transformation.ExpandableTransformationBehavior: ExpandableTransformationBehavior() -androidx.loader.R$style: R$style() +androidx.appcompat.R$drawable: int abc_btn_borderless_material +androidx.transition.R$dimen: int notification_small_icon_background_padding +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_24 +com.turingtechnologies.materialscrollbar.R$attr: int bottomSheetDialogTheme +com.google.android.material.R$styleable: int MaterialButton_strokeWidth +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric +james.adaptiveicon.R$styleable: int TextAppearance_android_textStyle +com.google.android.material.R$drawable: int abc_btn_check_to_on_mtrl_015 +com.google.android.material.R$style: int TextAppearance_AppCompat_Button +okhttp3.MediaType: java.util.regex.Pattern PARAMETER +wangdaye.com.geometricweather.R$id: int scale +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_33 +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTheme +com.google.android.material.R$id: int mtrl_picker_fullscreen +com.google.android.material.R$attr: int preserveIconSpacing +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getNighttimeWindDegree() +com.google.android.material.chip.Chip: void setChipIconSizeResource(int) +androidx.hilt.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setIndicatorColor(int) +cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(android.os.Parcel,cyanogenmod.app.CustomTile$1) +com.google.android.material.internal.NavigationMenuItemView: void setCheckable(boolean) +androidx.constraintlayout.widget.R$attr: int textAppearanceListItem +com.google.android.material.chip.Chip: void setChipStrokeWidth(float) +androidx.constraintlayout.widget.R$styleable: int KeyCycle_transitionPathRotate +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String unit +okio.Okio: okio.Sink sink(java.net.Socket) +android.didikee.donate.R$styleable: int AppCompatTheme_buttonStyleSmall +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: ObservableZip$ZipCoordinator(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarDivider +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_weight +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_5 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: void setIcon(java.lang.String) +com.google.android.material.R$attr: int trackColorActive +androidx.constraintlayout.widget.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchPadding +androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_3_material +com.google.android.material.R$id: int startHorizontal +androidx.lifecycle.ComputableLiveData$2: androidx.lifecycle.ComputableLiveData this$0 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelMenuListWidth +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String[] ROWS +retrofit2.Response: retrofit2.Response success(java.lang.Object,okhttp3.Response) +com.turingtechnologies.materialscrollbar.R$attr: int switchMinWidth +android.didikee.donate.R$color: int switch_thumb_material_light +wangdaye.com.geometricweather.R$layout: int select_dialog_item_material +cyanogenmod.providers.CMSettings$Secure: float getFloat(android.content.ContentResolver,java.lang.String,float) +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableRight +com.google.android.material.R$styleable: int Toolbar_maxButtonHeight +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType valueOf(java.lang.String) +com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy valueOf(java.lang.String) +com.google.android.material.R$color: int test_mtrl_calendar_day_selected +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type rawType +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type[] getUpperBounds() +wangdaye.com.geometricweather.R$array: int automatic_refresh_rate_values +androidx.appcompat.R$attr: int searchIcon +okhttp3.Interceptor +retrofit2.RequestFactory: java.lang.String relativeUrl +wangdaye.com.geometricweather.R$styleable: int PropertySet_visibilityMode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.lang.String getPubTime() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActivityChooserView +com.google.android.material.R$styleable: int[] CompoundButton +androidx.preference.R$attr: int dividerHorizontal +wangdaye.com.geometricweather.R$layout: int activity_preview_icon +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onNext(java.lang.Object) +io.reactivex.Observable: io.reactivex.Single first(java.lang.Object) +com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_text_padding_left +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationX +com.google.android.gms.location.LocationResult: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$id: int accessibility_custom_action_19 +okhttp3.Cache$CacheRequestImpl: boolean done +wangdaye.com.geometricweather.R$attr: int listPopupWindowStyle +com.google.android.material.R$attr: int sizePercent +androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_material +io.reactivex.Observable: io.reactivex.Observable doOnNext(io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean() +okhttp3.Cache$CacheRequestImpl: okio.Sink body() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +com.google.android.material.R$styleable: int KeyTimeCycle_android_alpha +androidx.hilt.R$style: int Widget_Compat_NotificationActionContainer +androidx.viewpager2.R$styleable: int RecyclerView_spanCount +okio.Buffer: okio.Buffer writeIntLe(int) +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int requestFusion(int) +wangdaye.com.geometricweather.R$id: int action_mode_close_button +cyanogenmod.themes.ThemeManager$2$1 +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode[] a +com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_min +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Spinner +okhttp3.internal.http2.Http2Reader$Handler: void pushPromise(int,int,java.util.List) +androidx.appcompat.R$style: int Base_V23_Theme_AppCompat_Light +androidx.constraintlayout.motion.widget.MotionLayout: int getCurrentState() +androidx.drawerlayout.R$dimen: int notification_large_icon_width +androidx.appcompat.R$style: int Widget_AppCompat_ListView_Menu +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarSplitStyle +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.Window mWindow +android.didikee.donate.R$attr: int switchTextAppearance +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: ObservableWindowBoundarySupplier$WindowBoundaryMainObserver(io.reactivex.Observer,int,java.util.concurrent.Callable) +com.amap.api.location.AMapLocation: void setLocationType(int) +androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +james.adaptiveicon.R$drawable +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_textAppearance +com.google.android.material.radiobutton.MaterialRadioButton +okhttp3.internal.http2.Http2Connection: void pushRequestLater(int,java.util.List) +io.reactivex.Observable: io.reactivex.Observable doOnTerminate(io.reactivex.functions.Action) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_SHOW_BATTERY_PERCENT_VALIDATOR +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_WAKE_SCREEN_VALIDATOR +com.google.android.material.R$style: int Widget_AppCompat_EditText +androidx.hilt.work.R$id: int accessibility_custom_action_23 +com.xw.repo.bubbleseekbar.R$id: int below_section_mark +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Small +androidx.preference.R$style: int Base_Widget_AppCompat_ListView +androidx.constraintlayout.widget.R$drawable: int abc_btn_borderless_material +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.String weatherText +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: SingleToObservable$SingleToObservableObserver(io.reactivex.Observer) +okhttp3.Address: javax.net.SocketFactory socketFactory +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String type +com.google.android.gms.base.R$string: int common_google_play_services_update_title +james.adaptiveicon.R$attr: int actionOverflowMenuStyle +okhttp3.Dispatcher: void finished(okhttp3.RealCall) +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_fullscreen +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +androidx.dynamicanimation.R$dimen: int notification_top_pad +androidx.constraintlayout.widget.R$styleable: int KeyCycle_transitionEasing +io.reactivex.internal.operators.observable.ObservableGroupBy$State +android.didikee.donate.R$styleable: int View_paddingEnd +com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_disabled_material_light +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.String dailyWeatherIcon +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: java.lang.String Unit +androidx.recyclerview.R$attr: int fastScrollHorizontalTrackDrawable +wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationY +androidx.appcompat.R$attr: int buttonPanelSideLayout +androidx.appcompat.R$attr: int titleTextAppearance +androidx.core.R$styleable: int GradientColor_android_startX +androidx.appcompat.R$string: int abc_menu_ctrl_shortcut_label +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.internal.disposables.SequentialDisposable task +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_minHeight +james.adaptiveicon.R$color: int secondary_text_disabled_material_dark +androidx.preference.MultiSelectListPreference +com.google.android.material.R$styleable: int MaterialButton_elevation +androidx.hilt.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.R$dimen: int widget_grid_2 +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_PopupMenu +okio.Buffer: okio.Buffer writeUtf8(java.lang.String) +james.adaptiveicon.R$id: int activity_chooser_view_content +com.jaredrummler.android.colorpicker.R$id: int textSpacerNoButtons +com.google.android.material.appbar.AppBarLayout: void setStatusBarForegroundResource(int) +com.bumptech.glide.integration.okhttp.R$color: int secondary_text_default_material_light +androidx.preference.R$drawable: int btn_radio_on_to_off_mtrl_animation +wangdaye.com.geometricweather.R$id: int radio +androidx.constraintlayout.widget.R$attr: int customIntegerValue +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: androidx.lifecycle.SavedStateHandle mHandle +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder allEnabledTlsVersions() +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_keyboardNavigationCluster +com.google.android.material.R$style: int Widget_MaterialComponents_BottomSheet +androidx.preference.R$style: int TextAppearance_Compat_Notification +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_icon_vertical_padding_material +androidx.dynamicanimation.R$drawable: int notification_action_background +com.xw.repo.bubbleseekbar.R$attr: int hideOnContentScroll +cyanogenmod.app.CMContextConstants$Features: java.lang.String TELEPHONY +wangdaye.com.geometricweather.R$id: int widget_day_week_week_5 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm10() +com.turingtechnologies.materialscrollbar.R$attr: int msb_handleColor +androidx.appcompat.R$drawable: int btn_checkbox_checked_mtrl +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getRequiredWidth() +wangdaye.com.geometricweather.R$dimen: int material_emphasis_disabled +okio.RealBufferedSource: void readFully(byte[]) +androidx.appcompat.R$color: int abc_primary_text_material_light +wangdaye.com.geometricweather.R$color: int abc_tint_switch_track +cyanogenmod.providers.WeatherContract +com.amap.api.fence.DistrictItem: DistrictItem(android.os.Parcel) +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastVerticalStyle +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleMargin +com.google.android.material.transformation.FabTransformationSheetBehavior: FabTransformationSheetBehavior(android.content.Context,android.util.AttributeSet) +androidx.preference.R$dimen: int tooltip_corner_radius +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent +com.google.android.material.R$layout: int material_timepicker +james.adaptiveicon.R$color: int background_material_light +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginEnd +androidx.transition.R$drawable: int notification_template_icon_low_bg +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: ObservableReplay$ReplayObserver(io.reactivex.internal.operators.observable.ObservableReplay$ReplayBuffer) +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_color_selector +com.xw.repo.bubbleseekbar.R$color: int material_grey_600 +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastVerticalBias +retrofit2.Utils: boolean hasUnresolvableType(java.lang.reflect.Type) +okhttp3.internal.http.RealInterceptorChain: RealInterceptorChain(java.util.List,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http.HttpCodec,okhttp3.internal.connection.RealConnection,int,okhttp3.Request,okhttp3.Call,okhttp3.EventListener,int,int,int) +com.google.android.material.R$styleable: int ActionBar_contentInsetStart +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: double gust +android.didikee.donate.R$styleable: int AppCompatTheme_searchViewStyle +androidx.constraintlayout.widget.R$attr: int titleTextColor +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.turingtechnologies.materialscrollbar.R$dimen: int notification_right_side_padding_top +androidx.vectordrawable.R$attr: int font +wangdaye.com.geometricweather.location.services.LocationService: android.app.Notification getLocationNotification(android.content.Context) +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_Solid +androidx.activity.R$id: int accessibility_custom_action_4 +cyanogenmod.providers.CMSettings$Global: int getInt(android.content.ContentResolver,java.lang.String,int) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean isDisposed() +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColorItem_android_color +okhttp3.internal.connection.StreamAllocation: okhttp3.Route route() +wangdaye.com.geometricweather.db.entities.AlertEntityDao: AlertEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +androidx.vectordrawable.animated.R$dimen: int notification_action_icon_size +com.google.android.material.R$id: int middle +com.turingtechnologies.materialscrollbar.R$drawable: int abc_spinner_textfield_background_material +cyanogenmod.app.ProfileManager: void addNotificationGroup(android.app.NotificationGroup) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_shapeAppearanceOverlay +com.amap.api.location.AMapLocationClientOption: boolean isOnceLocation() +androidx.constraintlayout.widget.R$styleable: int SearchView_searchIcon +james.adaptiveicon.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +com.amap.api.location.AMapLocation: java.lang.String m +android.didikee.donate.R$styleable: int AppCompatTheme_dialogPreferredPadding +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection +okhttp3.OkHttpClient$Builder: okhttp3.Dns dns +io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_EMPTY +androidx.transition.R$styleable: int FontFamilyFont_android_fontWeight +androidx.constraintlayout.widget.R$styleable: int Toolbar_buttonGravity +wangdaye.com.geometricweather.R$styleable: int Preference_android_shouldDisableView +com.google.android.material.R$styleable: int KeyCycle_motionTarget +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display1 +cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient mClient +com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrimColor(int) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button +androidx.appcompat.R$styleable +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconTint +wangdaye.com.geometricweather.R$id: int textinput_helper_text +cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() +androidx.appcompat.R$styleable: int Toolbar_title android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayDetailsWidgetConfigActivity: Hilt_ClockDayDetailsWidgetConfigActivity() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setSo2(java.lang.Float) -androidx.fragment.R$styleable: int Fragment_android_id -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_toolbarId -androidx.constraintlayout.widget.R$attr: int actionProviderClass -com.amap.api.location.AMapLocation: int LOCATION_TYPE_FAST -io.reactivex.internal.subscriptions.DeferredScalarSubscription -com.google.android.material.R$drawable: int test_custom_background -androidx.activity.ComponentActivity -james.adaptiveicon.R$styleable: int AppCompatTheme_checkedTextViewStyle -androidx.core.R$styleable: int FontFamilyFont_fontStyle -androidx.constraintlayout.widget.R$attr: int layout_constraintStart_toStartOf -androidx.coordinatorlayout.R$dimen: int notification_right_icon_size -cyanogenmod.app.ILiveLockScreenManager$Stub -com.google.android.material.circularreveal.CircularRevealRelativeLayout -androidx.preference.R$style: int Widget_AppCompat_EditText -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType USER_REQUEST_MIXNMATCH -james.adaptiveicon.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_alphabeticShortcut -com.google.android.gms.location.ActivityTransition +com.google.android.material.chip.Chip: float getCloseIconEndPadding() +okio.Buffer: long read(okio.Buffer,long) +retrofit2.Utils: int indexOf(java.lang.Object[],java.lang.Object) +androidx.appcompat.R$attr: int buttonStyle +james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +androidx.appcompat.widget.Toolbar: int getContentInsetLeft() +wangdaye.com.geometricweather.R$attr: int chainUseRtl +com.google.android.material.progressindicator.ProgressIndicator: void setProgress(int) +androidx.appcompat.R$id: int accessibility_custom_action_14 +okio.AsyncTimeout$1: okio.Sink val$sink +com.google.android.material.R$styleable: int[] Layout +cyanogenmod.weather.WeatherInfo: double getWindSpeed() +com.google.android.material.R$id: int material_timepicker_view +androidx.appcompat.R$layout: int support_simple_spinner_dropdown_item +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRainPrecipitation(java.lang.Float) +okhttp3.ConnectionSpec: java.util.List cipherSuites() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle +james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_font +okhttp3.internal.connection.StreamAllocation: okhttp3.EventListener eventListener +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX names +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date getSetDate() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_textAppearance +androidx.appcompat.R$drawable: int btn_radio_off_mtrl +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusTopStart +com.google.android.material.R$style: int TextAppearance_Design_Hint +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display2 +cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,android.content.ComponentName) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_BATTERY_STYLE_VALIDATOR +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableItem_android_id +androidx.appcompat.resources.R$id: int accessibility_custom_action_27 +cyanogenmod.providers.CMSettings$Secure: java.lang.String STATS_COLLECTION +androidx.constraintlayout.widget.R$attr: int customDimension +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: java.util.concurrent.atomic.AtomicReference queue +androidx.swiperefreshlayout.R$attr: int fontProviderFetchTimeout +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: KeyguardExternalViewProviderService$Provider$ProviderImpl$9(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,int,int,int,int,boolean,android.graphics.Rect) +wangdaye.com.geometricweather.R$id: int alerts +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator LIVE_DISPLAY_HINTED_VALIDATOR +com.google.android.material.R$styleable: int FontFamilyFont_android_font +com.google.android.material.R$styleable: int MaterialCalendarItem_itemShapeAppearanceOverlay +com.google.gson.stream.JsonReader: int NUMBER_CHAR_FRACTION_DIGIT +wangdaye.com.geometricweather.R$dimen: int abc_button_inset_horizontal_material +wangdaye.com.geometricweather.R$id: int mtrl_picker_header_toggle +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Inverse +androidx.lifecycle.ProcessLifecycleOwner: ProcessLifecycleOwner() +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstVerticalBias +com.xw.repo.bubbleseekbar.R$attr: int actionOverflowButtonStyle +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub +wangdaye.com.geometricweather.R$id: int time +wangdaye.com.geometricweather.R$drawable: int notif_temp_134 +wangdaye.com.geometricweather.R$layout: int widget_day_vertical +androidx.preference.PreferenceCategory +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_off_mtrl_alpha +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pressure +com.google.android.material.R$style: int Theme_AppCompat_DayNight_NoActionBar +james.adaptiveicon.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.constraintlayout.widget.R$id: int ignoreRequest +androidx.preference.R$attr: int preferenceInformationStyle +james.adaptiveicon.R$attr: int windowFixedHeightMinor +com.google.android.material.R$styleable: int AppCompatTheme_windowNoTitle +james.adaptiveicon.R$id: int forever +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +com.amap.api.location.APSService: boolean c +cyanogenmod.providers.CMSettings$Global: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) +okhttp3.ResponseBody: java.io.Reader charStream() +wangdaye.com.geometricweather.R$drawable: int ic_location +wangdaye.com.geometricweather.R$id: int action_bar_subtitle +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_progressBarPadding +com.turingtechnologies.materialscrollbar.R$styleable: int FlowLayout_lineSpacing +cyanogenmod.hardware.CMHardwareManager: int[] getDisplayGammaCalibration(int) +cyanogenmod.weather.IRequestInfoListener$Stub: IRequestInfoListener$Stub() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListPopupWindow +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dark +com.xw.repo.bubbleseekbar.R$attr: int indeterminateProgressStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setPubTime(java.lang.String) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_internal_bg +androidx.appcompat.R$color: int highlighted_text_material_dark +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox +androidx.lifecycle.DefaultLifecycleObserver: void onStart(androidx.lifecycle.LifecycleOwner) +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_setBtn +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: double Value +com.google.android.material.slider.RangeSlider: int getFocusedThumbIndex() +com.xw.repo.bubbleseekbar.R$color: int foreground_material_light +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void subscribeNext() +okhttp3.WebSocketListener: void onFailure(okhttp3.WebSocket,java.lang.Throwable,okhttp3.Response) +androidx.constraintlayout.widget.R$attr: int layout_constraintBaseline_toBaselineOf +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_Test +cyanogenmod.providers.CMSettings$System: java.lang.String TOUCHSCREEN_GESTURE_HAPTIC_FEEDBACK +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeApparentTemperature +okhttp3.logging.LoggingEventListener: void secureConnectEnd(okhttp3.Call,okhttp3.Handshake) +com.github.rahatarmanahmed.cpv.R$string +com.jaredrummler.android.colorpicker.R$id: int search_button +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ch +cyanogenmod.weather.CMWeatherManager: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener) +androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMarkTint +com.google.android.gms.common.server.response.zal: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.R$attr: int searchHintIcon +com.google.android.material.R$id: int accessibility_custom_action_17 +androidx.lifecycle.AndroidViewModel: android.app.Application mApplication +com.google.android.material.R$layout: int material_clockface_view +james.adaptiveicon.R$dimen: int abc_text_size_button_material +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_font +cyanogenmod.power.IPerformanceManager$Stub +wangdaye.com.geometricweather.R$styleable: int Motion_drawPath +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderFetchStrategy +com.google.android.material.button.MaterialButton +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onComplete() +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onError(java.lang.Throwable) +okhttp3.OkHttpClient: okhttp3.CertificatePinner certificatePinner +retrofit2.Retrofit$Builder: Retrofit$Builder() +wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.DailyEntity) +com.google.android.material.R$styleable: int KeyAttribute_motionProgress +androidx.lifecycle.ViewModel: ViewModel() +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleEnabled +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode SLEET +com.google.android.material.R$dimen: int abc_text_size_display_4_material +com.google.android.material.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance +androidx.preference.R$attr: int allowDividerBelow +com.google.android.material.R$id: int cos +androidx.drawerlayout.R$styleable: int[] FontFamily +androidx.work.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CollapsingToolbar +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream newStream(int,java.util.List,boolean) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +io.reactivex.internal.queue.SpscArrayQueue: int mask +com.xw.repo.bubbleseekbar.R$styleable: int GradientColorItem_android_color +androidx.viewpager2.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_pixel +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextBackground +com.xw.repo.bubbleseekbar.R$attr: int actionDropDownStyle +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +com.turingtechnologies.materialscrollbar.R$attr: int autoSizeTextType +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_title_material_toolbar +cyanogenmod.os.Build: java.lang.String CYANOGENMOD_DISPLAY_VERSION +androidx.cardview.R$styleable: int CardView_cardCornerRadius +wangdaye.com.geometricweather.R$string: int key_pressure_unit +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +androidx.appcompat.R$id: int search_src_text +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconTintMode +androidx.viewpager.R$layout: int notification_template_custom_big +com.google.android.material.R$attr: int selectableItemBackgroundBorderless +androidx.constraintlayout.utils.widget.ImageFilterButton: void setRoundPercent(float) +io.reactivex.internal.util.VolatileSizeArrayList: boolean add(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Determinate +com.google.android.material.R$attr: int layout_constraintBaseline_creator +androidx.constraintlayout.widget.R$bool: R$bool() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String country +okio.Pipe$PipeSink +com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerReceiver +androidx.constraintlayout.widget.R$interpolator: R$interpolator() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_97 +androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context) +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$GeoLanguage t +androidx.preference.R$color: int foreground_material_light +com.google.gson.JsonParseException +androidx.appcompat.R$color: int androidx_core_secondary_text_default_material_light +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle +com.google.android.gms.common.api.ResolvableApiException +androidx.fragment.R$integer +cyanogenmod.externalviews.IExternalViewProvider$Stub +androidx.work.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.R$style: int Theme_AppCompat_Light +android.didikee.donate.R$attr: int tickMarkTint +androidx.appcompat.widget.ActionMenuPresenter$OverflowPopup +com.google.gson.LongSerializationPolicy$2 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getSunSetDate() +com.google.android.material.R$id: int on +com.jaredrummler.android.colorpicker.R$dimen: int abc_floating_window_z +com.turingtechnologies.materialscrollbar.R$layout: int notification_template_part_chronometer +androidx.work.R$styleable: int GradientColor_android_type +android.didikee.donate.R$dimen: int hint_pressed_alpha_material_dark +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void errorAll(io.reactivex.Observer) +com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onProgressUpdateEnd(float) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_8 +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +com.amap.api.fence.GeoFence: android.app.PendingIntent getPendingIntent() +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteDatabase routeDatabase() +androidx.cardview.R$attr: int cardBackgroundColor +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: double lon +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_subtitleTextStyle +com.turingtechnologies.materialscrollbar.R$integer: int mtrl_tab_indicator_anim_duration_ms +androidx.preference.R$color: int abc_secondary_text_material_light +androidx.lifecycle.ClassesInfoCache: java.util.Map mCallbackMap +androidx.recyclerview.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$string: int settings_title_alert_notification_switch +okio.RealBufferedSource: void close() +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: ObservableWindow$WindowExactObserver(io.reactivex.Observer,long,int) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_cut_mtrl_alpha +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_searchViewStyle +wangdaye.com.geometricweather.common.basic.models.weather.Minutely +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit[] values() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: int UnitType +cyanogenmod.platform.Manifest$permission: java.lang.String PUBLISH_CUSTOM_TILE +com.bumptech.glide.integration.okhttp.R$dimen: int compat_control_corner_material +androidx.constraintlayout.widget.R$layout: int support_simple_spinner_dropdown_item +com.google.android.material.R$color: int design_fab_shadow_start_color +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart +androidx.preference.R$bool: R$bool() +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_1 +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_4 +com.baidu.location.indoor.mapversion.c.c$b +com.amap.api.location.AMapLocation: int ERROR_CODE_INVALID_PARAMETER +com.bumptech.glide.R$string: R$string() +androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$drawable: int abc_text_select_handle_right_mtrl_light +james.adaptiveicon.R$attr: int actionLayout +cyanogenmod.power.PerformanceManager: int PROFILE_POWER_SAVE +wangdaye.com.geometricweather.R$styleable: int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor +androidx.preference.R$style: int Animation_AppCompat_Tooltip +androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStoreOwner,androidx.lifecycle.ViewModelProvider$Factory) +wangdaye.com.geometricweather.R$drawable: int flag_nl +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: void setColor(boolean) +wangdaye.com.geometricweather.R$id: int coordinator +wangdaye.com.geometricweather.R$attr: int preferenceCategoryTitleTextAppearance +androidx.viewpager.R$drawable: int notification_action_background +okio.RealBufferedSource: java.io.InputStream inputStream() +cyanogenmod.content.Intent: java.lang.String ACTION_INITIALIZE_CM_HARDWARE +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date time +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_visible +wangdaye.com.geometricweather.R$drawable: int abc_seekbar_tick_mark_material +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView +wangdaye.com.geometricweather.R$styleable: int ActionBar_popupTheme +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() +com.google.gson.stream.JsonWriter: void beforeValue() +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSteps +james.adaptiveicon.R$anim +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings +okhttp3.EventListener: void responseBodyEnd(okhttp3.Call,long) +okhttp3.internal.ws.RealWebSocket$PingRunnable +com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabStyle +androidx.legacy.coreutils.R$dimen: int notification_small_icon_background_padding +retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: retrofit2.OkHttpCall$ExceptionCatchingResponseBody this$0 +wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_day_foreground +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_left_mtrl_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setZh_TW(java.lang.String) +androidx.lifecycle.Lifecycling +wangdaye.com.geometricweather.R$id: int pin +androidx.constraintlayout.widget.R$style: int Base_DialogWindowTitle_AppCompat +android.didikee.donate.R$attr: int editTextStyle +retrofit2.converter.gson.GsonConverterFactory: retrofit2.converter.gson.GsonConverterFactory create() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherText(java.lang.String) +com.google.android.material.R$id: int SHOW_PROGRESS +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource) +com.google.android.material.R$styleable: int[] AlertDialog +com.google.android.material.R$id: int TOP_START +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat +com.turingtechnologies.materialscrollbar.R$style: R$style() +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchPadding +wangdaye.com.geometricweather.R$style: int Preference_SeekBarPreference +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type BASELINE +wangdaye.com.geometricweather.main.MainActivity +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day +com.google.android.material.R$attr: int backgroundInsetStart +cyanogenmod.profiles.AirplaneModeSettings: void setValue(int) +com.google.android.material.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.hilt.work.R$color: R$color() +wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +cyanogenmod.externalviews.ExternalViewProviderService$1$1 +james.adaptiveicon.R$color: int abc_primary_text_material_dark +io.reactivex.exceptions.CompositeException +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSearchResultTitle +androidx.appcompat.R$anim: int abc_popup_enter +com.google.android.material.R$attr: int dialogCornerRadius +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: java.lang.String styleId +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.preference.R$id: int fragment_container_view_tag +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder pingInterval(long,java.util.concurrent.TimeUnit) +com.google.android.material.button.MaterialButton: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDate(java.util.Date) +com.google.android.gms.base.R$drawable +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnClickListener(android.view.View$OnClickListener) +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onComplete() +wangdaye.com.geometricweather.R$id: int start +james.adaptiveicon.R$drawable: R$drawable() +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mLightsMode +wangdaye.com.geometricweather.R$attr: int fabCustomSize +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String url +android.didikee.donate.R$attr: int contentInsetEndWithActions +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: AtmoAuraQAResult$Advice$AdviceContext() +okhttp3.internal.http2.Http2Stream$FramingSource: boolean finished +cyanogenmod.app.Profile: Profile(java.lang.String) +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void cancel() +androidx.fragment.R$styleable: int GradientColor_android_centerX +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_menu_material +com.bumptech.glide.MemoryCategory +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Subhead +com.google.android.material.textfield.TextInputLayout: void setHint(int) +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void schedule() +androidx.constraintlayout.widget.R$layout: int abc_search_view +james.adaptiveicon.R$styleable: int FontFamilyFont_android_font +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_29 +com.google.android.material.R$attr: int buttonBarNegativeButtonStyle +com.amap.api.location.AMapLocation: java.lang.String m(com.amap.api.location.AMapLocation,java.lang.String) +com.google.android.material.R$attr: int materialCircleRadius +com.google.android.material.R$styleable: int AppBarLayout_liftOnScroll +android.didikee.donate.R$styleable: int ActionBar_contentInsetEnd +com.google.android.material.R$attr: int arcMode +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertInTxIterable +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xms +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean cancelled +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability +com.google.android.gms.signin.internal.zag: android.os.Parcelable$Creator CREATOR +okhttp3.internal.connection.RouteDatabase +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: AccuDailyResult$DailyForecasts$Day() +androidx.constraintlayout.widget.R$id: int action_text +androidx.recyclerview.R$styleable: int GradientColor_android_startX +cyanogenmod.weather.WeatherInfo$Builder: double mWindSpeed +wangdaye.com.geometricweather.R$layout: int preference_recyclerview +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_RED_INDEX +wangdaye.com.geometricweather.R$styleable: int Chip_chipSurfaceColor +wangdaye.com.geometricweather.R$id: int transition_current_scene +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String logo +androidx.lifecycle.ViewModelProvider +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_query +androidx.appcompat.widget.AppCompatSpinner: void setBackgroundResource(int) +androidx.appcompat.R$style: int TextAppearance_Compat_Notification +com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat_Light +com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_swipe_escape_velocity +androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_2_material +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabBarStyle +com.google.android.material.R$drawable: int mtrl_ic_arrow_drop_down +com.google.android.material.R$styleable: int View_paddingStart +com.google.android.material.R$id: int circle_center +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.R$attr: int actionMenuTextAppearance +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogCornerRadius +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.os.RemoteCallbackList mCallbacks +androidx.appcompat.R$drawable: int abc_ratingbar_small_material +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextColor +com.google.android.material.chip.Chip: float getIconStartPadding() +androidx.preference.R$styleable: int AppCompatTextView_autoSizeStepGranularity +androidx.lifecycle.extensions.R$attr: int fontProviderFetchTimeout +cyanogenmod.weather.RequestInfo: java.lang.String access$802(cyanogenmod.weather.RequestInfo,java.lang.String) +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_cursor_material +wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_1 +cyanogenmod.hardware.CMHardwareManager: int FEATURE_PERSISTENT_STORAGE +com.google.android.material.circularreveal.CircularRevealFrameLayout: CircularRevealFrameLayout(android.content.Context) +androidx.preference.R$styleable: int DialogPreference_android_negativeButtonText +com.bumptech.glide.R$style: int Widget_Compat_NotificationActionText +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.Observer downstream +com.google.android.material.R$style: int Base_Widget_AppCompat_ImageButton +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_VALUE +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadMessage(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_creator +androidx.core.R$color +com.google.android.material.R$attr: int strokeWidth +okhttp3.MultipartBody: okhttp3.MultipartBody$Part part(int) +androidx.preference.R$styleable: int AppCompatTheme_android_windowAnimationStyle +androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStoreOwner) +retrofit2.Retrofit$Builder: okhttp3.Call$Factory callFactory +androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +okhttp3.HttpUrl: java.lang.String password() +com.google.android.material.R$attr: int tabMaxWidth +wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_date +com.amap.api.fence.GeoFence$1 +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.internal.util.AtomicThrowable errors +com.bumptech.glide.integration.okhttp.R$id: int action_divider +wangdaye.com.geometricweather.R$id: int material_minute_text_input +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtendMotionSpec(com.google.android.material.animation.MotionSpec) +com.google.android.material.R$dimen: int mtrl_calendar_bottom_padding +android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +wangdaye.com.geometricweather.R$id: int notification_big_temp_1 +com.google.gson.stream.JsonScope +com.google.android.material.button.MaterialButton$SavedState +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Filter +wangdaye.com.geometricweather.db.entities.DailyEntityDao: DailyEntityDao(org.greenrobot.greendao.internal.DaoConfig) +com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_disable_only_material_dark +okhttp3.internal.http2.Http2Stream: long bytesLeftInWriteWindow +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_arrowShaftLength +androidx.appcompat.resources.R$id: int right_icon +androidx.appcompat.R$attr: int buttonBarButtonStyle +okhttp3.ResponseBody$1: long contentLength() +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_toLeftOf +com.google.android.material.R$color: int abc_hint_foreground_material_dark +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: long serialVersionUID +androidx.constraintlayout.widget.R$color: int abc_primary_text_material_light +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_28 +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardCornerRadius +com.amap.api.location.AMapLocation: int ERROR_CODE_NOCGI_WIFIOFF +androidx.preference.R$styleable: int Preference_android_singleLineTitle +james.adaptiveicon.R$styleable: int AppCompatTheme_popupWindowStyle +com.xw.repo.bubbleseekbar.R$attr: int statusBarBackground +androidx.loader.R$styleable: int FontFamily_fontProviderFetchTimeout +okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_minWidth +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int getMainTextColorResId() +com.google.android.material.R$styleable: int ConstraintSet_flow_verticalBias +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_5 +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_3 +android.didikee.donate.R$style: int ThemeOverlay_AppCompat +retrofit2.ParameterHandler$FieldMap: int p +cyanogenmod.weather.IRequestInfoListener: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) +com.google.android.material.R$layout +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: int TRANSACTION_onLiveLockScreenChanged_0 +wangdaye.com.geometricweather.R$styleable: int ActionBar_background +androidx.lifecycle.LifecycleRegistry +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit INHG +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_backgroundSplit +androidx.appcompat.R$layout: int notification_template_icon_group +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontStyle +james.adaptiveicon.R$drawable: int abc_list_selector_disabled_holo_light +androidx.activity.R$id: int accessibility_custom_action_18 +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.Object NextOffsetChange +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_pixel +com.google.android.material.floatingactionbutton.FloatingActionButton +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_16 +io.reactivex.Observable: java.lang.Object blockingSingle(java.lang.Object) +com.google.android.material.snackbar.BaseTransientBottomBar$Behavior +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$drawable: int notif_temp_50 +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_fontVariationSettings +androidx.recyclerview.R$color: int secondary_text_default_material_light +androidx.lifecycle.MethodCallsLogger: java.util.Map mCalledMethods +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitationProbability +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Today +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton +com.google.android.material.R$attr: int perpendicularPath_percent +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String type +androidx.transition.R$layout: int notification_action_tombstone +com.google.android.material.R$attr: int prefixText +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColor +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_spinBars +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop +wangdaye.com.geometricweather.R$dimen: int large_margin +com.google.android.material.R$styleable: int Constraint_android_scaleY +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Red +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_seekBarStyle +androidx.work.R$id: int accessibility_custom_action_30 +com.turingtechnologies.materialscrollbar.R$attr: int chipStrokeWidth +com.baidu.location.indoor.mapversion.c.c$b: java.lang.String a +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleDrawable +com.google.android.material.R$dimen: int mtrl_shape_corner_size_large_component +cyanogenmod.hardware.CMHardwareManager: int FEATURE_ADAPTIVE_BACKLIGHT +okio.RealBufferedSource: long indexOfElement(okio.ByteString,long) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum() +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeTitle +com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_id +androidx.lifecycle.LifecycleRegistry$ObserverWithState +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTINUATION +io.reactivex.internal.observers.InnerQueuedObserver: boolean done +james.adaptiveicon.R$attr: int alphabeticModifiers +james.adaptiveicon.R$dimen: int abc_text_size_display_4_material +cyanogenmod.platform.Manifest +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean weather +wangdaye.com.geometricweather.R$dimen: int widget_time_text_size +com.turingtechnologies.materialscrollbar.R$drawable: int abc_popup_background_mtrl_mult +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String sourceId +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean terminated +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_22 +androidx.constraintlayout.widget.R$attr: int layout_constraintTop_creator +okhttp3.Cache$CacheRequestImpl$1: Cache$CacheRequestImpl$1(okhttp3.Cache$CacheRequestImpl,okio.Sink,okhttp3.Cache,okhttp3.internal.cache.DiskLruCache$Editor) +androidx.vectordrawable.R$id: int accessibility_custom_action_14 +androidx.preference.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +androidx.activity.R$style: int TextAppearance_Compat_Notification_Title +androidx.viewpager.R$dimen: int notification_right_side_padding_top +androidx.hilt.R$id: int accessibility_custom_action_1 +okhttp3.internal.connection.RealConnection: okhttp3.Route route() +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$attr: int inverse +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer treeLevel +androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandleController create(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle,java.lang.String,android.os.Bundle) +androidx.lifecycle.ReportFragment: void onStop() +androidx.appcompat.R$styleable: int SearchView_queryBackground +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$styleable: int[] TextAppearance +wangdaye.com.geometricweather.R$color: int abc_tint_default +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +okhttp3.internal.http2.Settings: boolean isSet(int) +okhttp3.internal.http2.Http2Reader: void readGoAway(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +cyanogenmod.app.Profile: void setTrigger(int,java.lang.String,int,java.lang.String) +androidx.fragment.R$string: int status_bar_notification_info_overflow +okio.BufferedSink: okio.BufferedSink writeUtf8(java.lang.String,int,int) com.google.android.material.R$xml: R$xml() -okhttp3.internal.http1.Http1Codec$AbstractSource -androidx.lifecycle.ComputableLiveData: java.util.concurrent.Executor mExecutor -wangdaye.com.geometricweather.R$string: int settings_title_alert_notification_switch -com.turingtechnologies.materialscrollbar.R$attr: int seekBarStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: int getStatus() -io.reactivex.subjects.PublishSubject$PublishDisposable: void dispose() -com.google.android.material.R$dimen: int abc_control_padding_material -wangdaye.com.geometricweather.R$attr: int deltaPolarAngle -androidx.hilt.R$color -com.google.android.material.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginTop +androidx.preference.R$styleable: int MultiSelectListPreference_entries +com.google.android.material.R$attr: int tabIconTintMode +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Small_Inverse +com.google.android.material.R$styleable: int SnackbarLayout_backgroundTintMode +androidx.constraintlayout.widget.R$dimen: int tooltip_precise_anchor_extra_offset +okio.Buffer: okio.ByteString snapshot() +androidx.appcompat.widget.AppCompatSpinner: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_3 +james.adaptiveicon.R$drawable: int abc_switch_track_mtrl_alpha +okhttp3.internal.tls.OkHostnameVerifier: OkHostnameVerifier() +com.jaredrummler.android.colorpicker.R$attr: int cpv_allowCustom +wangdaye.com.geometricweather.R$drawable: int notification_bg_normal_pressed +androidx.appcompat.R$styleable: int AppCompatTheme_listMenuViewStyle +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void drainLoop() +wangdaye.com.geometricweather.R$color: int material_on_primary_disabled +cyanogenmod.app.suggest.AppSuggestManager: android.content.Context mContext +io.reactivex.Observable: io.reactivex.Single elementAtOrError(long) +retrofit2.Retrofit: java.util.List callAdapterFactories() +androidx.lifecycle.extensions.R$id: int line1 +com.google.android.material.R$attr: int expandedTitleMarginEnd +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void dispose() +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_2 +cyanogenmod.app.ILiveLockScreenManagerProvider: boolean getLiveLockScreenEnabled() +android.didikee.donate.R$attr: int overlapAnchor +okhttp3.internal.http.HttpCodec: int DISCARD_STREAM_TIMEOUT_MILLIS +okhttp3.internal.http2.Http2Codec: java.util.List HTTP_2_SKIPPED_REQUEST_HEADERS +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather weather +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void run() +james.adaptiveicon.R$color: int notification_icon_bg_color +james.adaptiveicon.R$dimen: int abc_text_size_display_2_material +okhttp3.internal.http.RealResponseBody +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSuggest() +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean isDisposed() +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.disposables.Disposable upstream +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.Observer downstream +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setNavBar(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed Speed +com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_checked_circle +com.google.android.material.R$styleable: int TabLayout_tabPaddingStart +wangdaye.com.geometricweather.settings.dialogs.AnimatableIconDialog +androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandle getHandle() +wangdaye.com.geometricweather.R$id: int title +com.xw.repo.bubbleseekbar.R$id: int actions +com.jaredrummler.android.colorpicker.R$attr: int contentInsetEnd +com.google.android.material.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +cyanogenmod.app.IProfileManager: boolean notificationGroupExistsByName(java.lang.String) +androidx.appcompat.R$dimen: int abc_dialog_corner_radius_material +androidx.loader.R$styleable: int GradientColor_android_startX +cyanogenmod.power.IPerformanceManager$Stub$Proxy: android.os.IBinder asBinder() +com.jaredrummler.android.colorpicker.R$dimen: int hint_pressed_alpha_material_dark +cyanogenmod.externalviews.IExternalViewProvider: void onStart() +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setBackgroundColor(int) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_text +androidx.preference.R$styleable: int LinearLayoutCompat_android_orientation +org.greenrobot.greendao.AbstractDao: void detachAll() +com.jaredrummler.android.colorpicker.R$attr: int fontProviderPackage +okhttp3.Cache$CacheRequestImpl$1: okhttp3.Cache val$this$0 +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_max +wangdaye.com.geometricweather.R$styleable: int MenuItem_alphabeticModifiers +wangdaye.com.geometricweather.R$anim: int fragment_fast_out_extra_slow_in +com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_internal_bg +androidx.fragment.R$color: int secondary_text_default_material_light +androidx.fragment.R$integer: R$integer() +android.didikee.donate.R$style: int Widget_AppCompat_SeekBar +wangdaye.com.geometricweather.R$string: int temperature +com.turingtechnologies.materialscrollbar.R$attr: int actionBarTheme +okhttp3.internal.ws.RealWebSocket$1: void run() +okhttp3.internal.cache.DiskLruCache$Entry: long[] lengths +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle getInstance(java.lang.String) +io.reactivex.internal.operators.observable.ObservableGroupBy$State: long serialVersionUID +androidx.preference.R$dimen: int preference_seekbar_value_minWidth +wangdaye.com.geometricweather.R$string: int tag_aqi +cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_ENABLED +wangdaye.com.geometricweather.R$integer: int mtrl_card_anim_duration_ms +androidx.core.R$drawable: int notification_template_icon_bg +androidx.appcompat.R$styleable: int View_theme +android.didikee.donate.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +com.google.android.material.R$styleable: int[] TabLayout +okhttp3.internal.http2.Huffman$Node: int symbol +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_FLAG_CONTROL +wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentWidth +wangdaye.com.geometricweather.R$color: int abc_tint_seek_thumb +androidx.viewpager2.R$id: int accessibility_custom_action_6 +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Info +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_overflow_material +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: androidx.lifecycle.LiveData mLiveData +com.bumptech.glide.integration.okhttp.R$id: int blocking +com.amap.api.location.AMapLocation: int getLocationType() +cyanogenmod.app.LiveLockScreenManager: void setLiveLockScreenEnabled(boolean) +cyanogenmod.app.Profile$ProfileTrigger: int access$202(cyanogenmod.app.Profile$ProfileTrigger,int) +androidx.loader.R$dimen: int compat_button_padding_horizontal_material +androidx.lifecycle.HasDefaultViewModelProviderFactory +com.jaredrummler.android.colorpicker.R$styleable: int[] CoordinatorLayout +androidx.appcompat.widget.FitWindowsViewGroup +androidx.appcompat.R$styleable: int AlertDialog_buttonIconDimen +wangdaye.com.geometricweather.R$id: int material_clock_period_pm_button +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void innerError(java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_container +androidx.preference.R$styleable: int AppCompatTheme_imageButtonStyle +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +androidx.swiperefreshlayout.R$attr: int swipeRefreshLayoutProgressSpinnerBackgroundColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setZh_CN(java.lang.String) +cyanogenmod.app.ILiveLockScreenManagerProvider: void cancelLiveLockScreen(java.lang.String,int,int) +wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWeekWidgetConfigActivity +okio.RealBufferedSink: java.lang.String toString() +com.google.android.material.R$drawable: int abc_action_bar_item_background_material +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_1_material +cyanogenmod.externalviews.ExternalView$2: int val$y +com.google.android.material.R$attr: int tickMarkTintMode +okio.Segment: void writeTo(okio.Segment,int) +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_count +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String province +wangdaye.com.geometricweather.R$string: int key_widget_trend_daily +wangdaye.com.geometricweather.R$color: int colorLevel_6 +wangdaye.com.geometricweather.R$drawable: int notif_temp_104 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getDate() +android.didikee.donate.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setIcePrecipitation(java.lang.Float) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +io.reactivex.Observable: io.reactivex.Observable hide() +io.reactivex.Observable: io.reactivex.Observable timeInterval(io.reactivex.Scheduler) +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_menuCategory +com.google.android.material.R$string: int character_counter_content_description +com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a a() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String getUnit() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getBrandId() +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Country +okhttp3.Route: java.net.Proxy proxy() +okhttp3.internal.ws.RealWebSocket$Streams: okio.BufferedSink sink +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +androidx.customview.R$styleable: int GradientColor_android_centerY +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconTintMode +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderTitle +cyanogenmod.os.Concierge: int PARCELABLE_VERSION +wangdaye.com.geometricweather.R$attr: int commitIcon +com.google.android.material.R$attr: int seekBarStyle +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabText +cyanogenmod.providers.CMSettings$3: CMSettings$3() +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constrainedHeight +androidx.preference.R$attr: int paddingStart +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +io.reactivex.internal.disposables.DisposableHelper +androidx.constraintlayout.widget.R$attr: int listDividerAlertDialog +james.adaptiveicon.R$attr: int windowActionBarOverlay +okhttp3.internal.cache.CacheRequest: void abort() +wangdaye.com.geometricweather.db.entities.AlertEntity: void setAlertId(long) +com.jaredrummler.android.colorpicker.R$style: int Base_V23_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleDrawable +okio.GzipSource: long read(okio.Buffer,long) +okhttp3.internal.http2.Hpack$Reader: void readHeaders() +com.turingtechnologies.materialscrollbar.R$id: int textinput_error +okhttp3.internal.cache2.Relay: void commit(long) +com.google.gson.stream.JsonReader: void beginObject() +okio.Pipe$PipeSource: long read(okio.Buffer,long) +androidx.hilt.work.R$styleable: int GradientColor_android_centerX +androidx.constraintlayout.widget.R$styleable +android.didikee.donate.R$id: int beginning +wangdaye.com.geometricweather.R$id: int item_about_title +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherComplete() +com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context) +com.xw.repo.bubbleseekbar.R$id: int group_divider +okhttp3.internal.cache.DiskLruCache: boolean initialized +androidx.recyclerview.R$id: int accessibility_custom_action_30 +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onProgressUpdateEnd(float) +retrofit2.ParameterHandler$FieldMap: java.lang.reflect.Method method +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: AccuDailyResult$DailyForecasts$Day$TotalLiquid() +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context,android.util.AttributeSet) +cyanogenmod.app.Profile: Profile(android.os.Parcel,cyanogenmod.app.Profile$1) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_3DES_EDE_CBC_MD5 +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.util.Date getDate() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setUpdateTime(long) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +androidx.preference.R$drawable: int abc_list_divider_material +wangdaye.com.geometricweather.R$attr: int tickColorActive +retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: boolean cancel(boolean) +wangdaye.com.geometricweather.R$string: int mtrl_picker_a11y_next_month +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.String TABLENAME +androidx.activity.R$dimen: int notification_media_narrow_margin +androidx.appcompat.R$styleable: int ActionBar_navigationMode +wangdaye.com.geometricweather.R$styleable: int ChipGroup_checkedChip +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Light +androidx.viewpager.R$id: int time +io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) +androidx.preference.R$drawable: int notification_bg_low +james.adaptiveicon.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$id: int notification_big_icon_4 +androidx.lifecycle.ReportFragment: void onResume() +com.google.android.material.R$dimen: int mtrl_calendar_day_today_stroke +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SLOVENIAN +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void slideLockscreenIn() +com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_overlapAnchor +androidx.lifecycle.Transformations$3 +com.google.android.material.switchmaterial.SwitchMaterial: android.content.res.ColorStateList getMaterialThemeColorsThumbTintList() +androidx.appcompat.R$dimen: int abc_dialog_title_divider_material +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getMoldDescription() +androidx.customview.R$layout: int notification_action +okhttp3.WebSocket: okhttp3.Request request() +androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor valueOf(java.lang.String) +androidx.preference.R$id: int group_divider +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog_Alert +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Body2 +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.util.concurrent.atomic.AtomicLong requested +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dialog +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int INSTALLING +androidx.appcompat.R$attr: int subMenuArrow +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_toTopOf +androidx.constraintlayout.widget.R$attr: int navigationMode +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_1 +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_titleCondensed +androidx.hilt.R$id: int accessibility_custom_action_31 +androidx.preference.R$string: int abc_menu_sym_shortcut_label +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_27 +androidx.coordinatorlayout.R$drawable: int notification_bg +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableItem_android_id +com.xw.repo.bubbleseekbar.R$id: int action_divider +okhttp3.Response$Builder: okhttp3.Response$Builder request(okhttp3.Request) +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_tint +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: ExternalViewProviderService$Provider$ProviderImpl(cyanogenmod.externalviews.ExternalViewProviderService$Provider,cyanogenmod.externalviews.ExternalViewProviderService$Provider) +androidx.constraintlayout.widget.R$attr: int buttonIconDimen +androidx.constraintlayout.widget.R$attr: int alertDialogCenterButtons +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_item_min_width +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotationY +com.xw.repo.bubbleseekbar.R$styleable: int PopupWindowBackgroundState_state_above_anchor +com.jaredrummler.android.colorpicker.R$id: int action_context_bar +wangdaye.com.geometricweather.R$dimen: int hint_pressed_alpha_material_light +wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_2_0_padding_bottom +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle +androidx.preference.R$layout: int expand_button +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_navigationContentDescription +cyanogenmod.externalviews.KeyguardExternalView$11: cyanogenmod.externalviews.KeyguardExternalView this$0 +okhttp3.internal.Internal: boolean isInvalidHttpUrlHost(java.lang.IllegalArgumentException) +com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +com.google.android.material.R$styleable: int Chip_chipStrokeWidth +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeStyle +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +androidx.cardview.widget.CardView: boolean getUseCompatPadding() +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +androidx.core.R$dimen: int compat_button_padding_horizontal_material +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_RESULT_VALUE +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_orderInCategory +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_updateWeather_0 +androidx.preference.R$attr: int radioButtonStyle +android.didikee.donate.R$style: int Widget_AppCompat_Button_Borderless_Colored +com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_DropDownUp +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_HOME_BUTTON +androidx.loader.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List guomin +wangdaye.com.geometricweather.R$attr: int fontStyle +com.google.android.material.R$attr: int closeIconStartPadding +androidx.appcompat.R$attr: int elevation +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isIce() +androidx.swiperefreshlayout.R$id: int action_divider +okio.GzipSource: void close() +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$attr: int layout_scrollFlags +wangdaye.com.geometricweather.R$dimen: int standard_weather_icon_size +cyanogenmod.app.ProfileGroup: void setVibrateMode(cyanogenmod.app.ProfileGroup$Mode) +okio.RealBufferedSource: java.lang.String readUtf8Line() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Small +wangdaye.com.geometricweather.db.entities.LocationEntity: java.util.TimeZone getTimeZone() +cyanogenmod.alarmclock.ClockContract$CitiesColumns: android.net.Uri CONTENT_URI +cyanogenmod.themes.IThemeService$Stub +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode THUNDERSTORM +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTextHelper +androidx.appcompat.widget.AppCompatTextView: void setBackgroundResource(int) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_DropDownItem_Spinner +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter endObject() +wangdaye.com.geometricweather.R$drawable: int ic_mtrl_checked_circle +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: int count +com.jaredrummler.android.colorpicker.R$layout: int abc_search_dropdown_item_icons_2line +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int HIDE_NOTIFICATION_STATE +androidx.constraintlayout.widget.R$styleable: int Transition_transitionFlags +wangdaye.com.geometricweather.R$styleable: int[] ListPopupWindow +com.google.android.material.R$dimen: int mtrl_calendar_header_height +com.google.android.material.transformation.ExpandableTransformationBehavior +com.google.android.material.R$layout: int notification_action_tombstone +androidx.appcompat.R$style: int Widget_AppCompat_RatingBar +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: boolean done +wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndTitle +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit getInstance(java.lang.String) +com.google.android.gms.common.SupportErrorDialogFragment: SupportErrorDialogFragment() +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerError(java.lang.Throwable) +wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_title +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String AUTHOR +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: int getTemperature(int) +com.jaredrummler.android.colorpicker.R$dimen: int compat_button_inset_horizontal_material +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Small +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer iso0 +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$color: int mtrl_btn_text_btn_ripple_color +com.google.android.material.R$attr: int mock_labelBackgroundColor +okio.Segment: int pos +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout +com.turingtechnologies.materialscrollbar.R$id: int smallLabel +cyanogenmod.app.StatusBarPanelCustomTile: int id +com.turingtechnologies.materialscrollbar.R$attr: int snackbarStyle +com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Surface +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconTint +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_fontVariationSettings +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Time +android.didikee.donate.R$id: int always +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display2 +retrofit2.Platform$Android +wangdaye.com.geometricweather.R$attr: int closeIconEndPadding +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: android.os.IBinder mRemote +com.google.android.material.slider.RangeSlider: void setTrackActiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_icon_size +androidx.constraintlayout.widget.R$attr: int actionBarTheme +androidx.constraintlayout.widget.R$styleable: int Transition_pathMotionArc +androidx.viewpager2.R$id: int accessibility_custom_action_0 +com.google.gson.stream.JsonReader: int peekedNumberLength +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_SNOW_SHOWERS +wangdaye.com.geometricweather.R$styleable: int ActionMenuItemView_android_minWidth +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintDimensionRatio +com.google.android.material.R$attr: int cornerRadius +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Caption +retrofit2.Call: okhttp3.Request request() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListPopupWindow +androidx.constraintlayout.widget.R$styleable: int MotionLayout_motionDebug +androidx.lifecycle.extensions.R$attr: int fontProviderFetchStrategy +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setFillAlpha(float) +android.didikee.donate.R$drawable: int abc_ic_star_black_36dp +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_order +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: io.reactivex.internal.operators.observable.ObservableAmb$AmbCoordinator parent +okio.HashingSource: HashingSource(okio.Source,okio.ByteString,java.lang.String) +okhttp3.HttpUrl$Builder: int port +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_3 +androidx.appcompat.app.ActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +androidx.hilt.work.R$anim: int fragment_fade_exit +androidx.appcompat.R$id: int line3 +androidx.coordinatorlayout.R$id: int text +wangdaye.com.geometricweather.R$string: int material_timepicker_pm +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionMode +com.google.android.material.R$attr: int closeIconTint +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.util.List value +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitationDuration +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitation +com.bumptech.glide.R$styleable: int ColorStateListItem_alpha +com.google.android.material.R$attr: int minTouchTargetSize +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_baselineAligned +androidx.hilt.R$id: int icon_group +com.google.android.material.R$styleable: int MenuView_android_itemIconDisabledAlpha +io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.MaybeSource) +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void dispose() +com.google.android.material.R$attr: int deltaPolarAngle +androidx.appcompat.R$attr: int textAppearanceListItemSmall +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getShortAbbreviation(android.content.Context) +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type VERTICAL_DIMENSION +wangdaye.com.geometricweather.R$styleable: int Transition_motionInterpolator +cyanogenmod.externalviews.ExternalViewProviderService +androidx.preference.R$attr: int buttonIconDimen +androidx.appcompat.resources.R$styleable: int GradientColor_android_startX +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Title +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function8) +androidx.coordinatorlayout.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: int UnitType +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_dividerPadding +com.turingtechnologies.materialscrollbar.R$styleable: int[] GradientColorItem +com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchPreference +io.reactivex.Observable: io.reactivex.Observable concatMapDelayError(io.reactivex.functions.Function) +cyanogenmod.themes.IThemeChangeListener: void onFinish(boolean) +james.adaptiveicon.R$style: int Platform_Widget_AppCompat_Spinner +james.adaptiveicon.R$id: int action_bar_activity_content +io.reactivex.internal.disposables.ArrayCompositeDisposable: io.reactivex.disposables.Disposable replaceResource(int,io.reactivex.disposables.Disposable) +okhttp3.internal.http.HttpDate$1: HttpDate$1() +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_2 +androidx.work.R$id: int accessibility_custom_action_8 +com.github.rahatarmanahmed.cpv.CircularProgressView$1 +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.ObservableSource source +androidx.recyclerview.widget.RecyclerView: void setItemViewCacheSize(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: void setTo(java.lang.String) +android.didikee.donate.R$id: int checkbox +com.jaredrummler.android.colorpicker.R$attr: int radioButtonStyle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_CBC_SHA +com.google.android.material.R$anim: int design_snackbar_in +androidx.drawerlayout.R$styleable: int FontFamilyFont_fontWeight +okhttp3.CookieJar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: CaiYunMainlyResult$CurrentBean$HumidityBean() +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_DarkActionBar +io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicReference missedSubscription +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setAppOverlay(java.lang.String,java.lang.String) +okio.Timeout$1: okio.Timeout deadlineNanoTime(long) +okhttp3.RealCall: void enqueue(okhttp3.Callback) +androidx.appcompat.R$string: int abc_menu_shift_shortcut_label +androidx.fragment.R$id: int italic +com.amap.api.location.AMapLocation: java.lang.String h(com.amap.api.location.AMapLocation,java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: int UnitType +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow3h +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit H +androidx.constraintlayout.widget.R$styleable: int MockView_mock_diagonalsColor +com.google.android.material.R$attr: int materialButtonToggleGroupStyle +wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemIconDisabledAlpha +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_horizontal_padding +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: android.os.IBinder mRemote +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_Switch +android.didikee.donate.R$layout: int abc_list_menu_item_checkbox +androidx.recyclerview.R$id: int tag_unhandled_key_listeners +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: long produced +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void cancel() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +james.adaptiveicon.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +cyanogenmod.power.IPerformanceManager$Stub$Proxy: void cpuBoost(int) +androidx.preference.R$styleable: int Preference_android_summary +androidx.preference.internal.PreferenceImageView: int getMaxWidth() +cyanogenmod.app.CMContextConstants$Features: java.lang.String PERFORMANCE +cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper access$100(cyanogenmod.app.CustomTileListenerService) +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +androidx.appcompat.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +okhttp3.internal.http1.Http1Codec: okio.Sink newChunkedSink() +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_48dp +com.xw.repo.bubbleseekbar.R$style: int Base_V23_Theme_AppCompat +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_summaryOff +androidx.lifecycle.LiveData$1: androidx.lifecycle.LiveData this$0 +androidx.appcompat.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$styleable: int PopupWindow_overlapAnchor +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_UNKNOWN +okhttp3.internal.http.HttpHeaders: boolean hasVaryAll(okhttp3.Headers) +androidx.loader.R$id: int text +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String brandId +com.google.android.material.R$id: int tag_accessibility_actions +androidx.transition.R$styleable: int FontFamilyFont_fontWeight +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ButtonBar +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getThunderstormPrecipitationProbability() +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_COLOR +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: io.reactivex.disposables.Disposable upstream +cyanogenmod.hardware.CMHardwareManager: int getThermalState() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onNext(java.lang.Object) +androidx.customview.R$styleable: int[] FontFamilyFont +okhttp3.Cache$CacheResponseBody: java.lang.String contentType +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_cancelRequest +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_requestThemeChange +androidx.loader.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.R$drawable: int ic_navigation +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_lightContainer +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motion_postLayoutCollision +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: android.os.IBinder mRemote +com.google.android.material.R$styleable: int MenuItem_alphabeticModifiers +wangdaye.com.geometricweather.R$attr: int materialCircleRadius +androidx.preference.R$id: int title +androidx.appcompat.R$layout: int abc_list_menu_item_layout +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_textAppearance +james.adaptiveicon.R$id: int italic +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setContentDescription(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_arrowSize +wangdaye.com.geometricweather.R$layout: int container_main_pollen +androidx.coordinatorlayout.R$id: int accessibility_custom_action_20 +androidx.appcompat.R$styleable: int AppCompatTheme_checkboxStyle +com.google.android.material.R$attr: int startIconContentDescription +androidx.viewpager2.R$dimen: int notification_right_icon_size +okhttp3.internal.http2.Http2Connection: void writePingAndAwaitPong() +wangdaye.com.geometricweather.R$string: int feedback_click_to_get_more +androidx.constraintlayout.widget.R$attr: int layout_constraintTop_toTopOf +androidx.preference.R$anim: int abc_grow_fade_in_from_bottom +cyanogenmod.app.Profile: void setNotificationLightMode(int) +cyanogenmod.weatherservice.WeatherProviderService: WeatherProviderService() +okio.HashingSource: long read(okio.Buffer,long) +com.google.android.material.R$color: int abc_primary_text_disable_only_material_light +androidx.appcompat.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$id: int activity_preview_icon_toolbar +androidx.constraintlayout.widget.R$styleable: int Transition_motionInterpolator +io.reactivex.disposables.RunnableDisposable: RunnableDisposable(java.lang.Runnable) +androidx.activity.R$styleable: int FontFamilyFont_fontVariationSettings +okhttp3.Request: java.lang.String method +io.reactivex.internal.disposables.SequentialDisposable: boolean update(io.reactivex.disposables.Disposable) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_5 +com.jaredrummler.android.colorpicker.R$dimen: int cpv_item_size +androidx.customview.R$styleable: int FontFamilyFont_android_fontWeight +james.adaptiveicon.R$attr: int actionModeStyle +wangdaye.com.geometricweather.R$id: int ragweedIcon +com.google.android.material.R$dimen: int abc_disabled_alpha_material_light +androidx.hilt.R$anim: int fragment_close_enter +cyanogenmod.app.CustomTile: java.lang.String resourcesPackageName +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getUnitId() +cyanogenmod.themes.IThemeService: boolean isThemeApplying() +com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_Tooltip +com.jaredrummler.android.colorpicker.ColorPreference +com.amap.api.location.UmidtokenInfo$a +androidx.preference.R$styleable: int Toolbar_subtitle +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetEnd +androidx.appcompat.R$attr: int fontProviderAuthority +okhttp3.internal.http2.Http2Connection: long awaitPingsSent +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getAlertEntityList() +com.turingtechnologies.materialscrollbar.R$attr: int backgroundTintMode +androidx.preference.R$attr: int actionModeCutDrawable +com.turingtechnologies.materialscrollbar.R$attr: int actionBarDivider +cyanogenmod.app.PartnerInterface: void setMobileDataEnabled(boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getLocationKey() +james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getIcePrecipitation() +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_creator +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetRight +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_material androidx.viewpager2.R$dimen: int notification_action_icon_size -androidx.fragment.R$string -okhttp3.Cookie: boolean secure() -okhttp3.internal.http1.Http1Codec$FixedLengthSink: long bytesRemaining -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_WARM_RISING -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox -androidx.work.R$id: int accessibility_custom_action_9 -com.google.android.material.R$styleable: int TextAppearance_android_textFontWeight -com.google.android.material.R$dimen: int fastscroll_default_thickness -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonPhaseDescription(java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: java.lang.String desc -com.google.android.material.R$integer: int show_password_duration -androidx.work.R$id: int accessibility_custom_action_21 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_control_background_material -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_visible -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onError(java.lang.Throwable) -okio.Timeout: okio.Timeout deadline(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_switchTextOn -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplace -android.didikee.donate.R$dimen: int disabled_alpha_material_light -com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getProgressDrawable() -com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Text -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: void execute() -androidx.lifecycle.LiveData$1: LiveData$1(androidx.lifecycle.LiveData) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX -james.adaptiveicon.R$styleable: int Toolbar_popupTheme -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_disabled_z -com.google.android.material.R$styleable: int TextInputLayout_endIconContentDescription -wangdaye.com.geometricweather.R$color: int mtrl_filled_icon_tint -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitationProbability -androidx.constraintlayout.widget.R$styleable: int Constraint_barrierDirection -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_DialogWhenLarge -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: void run() -wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_Toolbar -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.Disposable upstream -androidx.work.R$id: int accessibility_custom_action_26 -androidx.constraintlayout.widget.R$drawable: int abc_item_background_holo_dark -wangdaye.com.geometricweather.R$drawable: int notif_temp_35 -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_EMPTY_RENEGOTIATION_INFO_SCSV -com.google.android.material.R$color: int mtrl_scrim_color -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache create(okhttp3.internal.io.FileSystem,java.io.File,int,int,long) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display1 -okhttp3.Headers: void checkName(java.lang.String) -cyanogenmod.providers.CMSettings$System: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -com.google.android.material.R$dimen: int material_font_2_0_box_collapsed_padding_top -androidx.appcompat.widget.AppCompatTextView: void setLastBaselineToBottomHeight(int) -com.google.android.material.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -cyanogenmod.externalviews.KeyguardExternalView$3: int val$height -wangdaye.com.geometricweather.R$styleable: int Preference_android_iconSpaceReserved -wangdaye.com.geometricweather.R$drawable: int ic_plus -androidx.appcompat.resources.R$drawable: int notification_icon_background -androidx.lifecycle.extensions.R$drawable: int notification_bg_normal -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircle -com.google.gson.FieldNamingPolicy$1: FieldNamingPolicy$1(java.lang.String,int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPopupWindowStyle -com.turingtechnologies.materialscrollbar.R$attr: int listChoiceBackgroundIndicator -androidx.loader.R$id: int text2 -androidx.hilt.R$color: int secondary_text_default_material_light -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date endDate -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeShareDrawable -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingStart -com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context) -okhttp3.RealCall: okhttp3.Call clone() -androidx.appcompat.R$style: int TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase getMoonPhase() -com.google.android.material.R$styleable: int ConstraintSet_android_layout_width -androidx.customview.R$dimen: int notification_content_margin_start -androidx.viewpager.R$string -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_activated_mtrl_alpha -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver inner -retrofit2.Converter: java.lang.Object convert(java.lang.Object) -androidx.work.R$drawable: int notification_bg_low -androidx.appcompat.widget.AppCompatImageButton: void setImageURI(android.net.Uri) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: java.lang.Object item -wangdaye.com.geometricweather.R$id: int baseline -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setNo2(java.lang.Float) -com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox -com.google.android.material.R$attr: int buttonStyle -cyanogenmod.providers.ThemesContract$ThemesColumns: ThemesContract$ThemesColumns() -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowDy -io.reactivex.internal.util.NotificationLite: java.lang.Object disposable(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer LEFT_VALUE -androidx.preference.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -com.xw.repo.bubbleseekbar.R$dimen -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindDircStart(java.lang.String) -androidx.hilt.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_pressed -wangdaye.com.geometricweather.db.entities.LocationEntity: java.util.TimeZone timeZone -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyBottomRight -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActivityChooserView -androidx.appcompat.R$attr: int divider -androidx.preference.R$style: int Widget_AppCompat_ActionButton -okhttp3.internal.cache2.Relay$RelaySource: okhttp3.internal.cache2.Relay this$0 -androidx.constraintlayout.widget.R$drawable: int abc_btn_borderless_material -okhttp3.FormBody: long contentLength() -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstVerticalBias -okio.AsyncTimeout: long IDLE_TIMEOUT_NANOS -androidx.lifecycle.LiveData: boolean mDispatchInvalidated -james.adaptiveicon.R$id: int checkbox -com.google.android.material.R$styleable: int OnSwipe_touchAnchorSide -androidx.preference.R$styleable: int Toolbar_collapseContentDescription -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitationProbability -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_default_mtrl_alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setZh_TW(java.lang.String) -com.jaredrummler.android.colorpicker.R$id: int action_bar_activity_content -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.R$string: int copy -androidx.constraintlayout.widget.R$color: int abc_color_highlight_material -androidx.appcompat.R$styleable: int ActionBar_homeLayout -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport parent -retrofit2.OkHttpCall: retrofit2.Call clone() -wangdaye.com.geometricweather.R$attr: int bsb_seek_step_section -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitationProbability -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingTop -androidx.drawerlayout.R$styleable: int FontFamilyFont_ttcIndex -com.google.android.material.R$id: int cancel_button -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent -android.didikee.donate.R$styleable: int Toolbar_contentInsetStartWithNavigation -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2 -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference upstream -androidx.preference.EditTextPreference$SavedState: android.os.Parcelable$Creator CREATOR -com.google.android.material.slider.BaseSlider: void setThumbElevationResource(int) -com.google.android.material.appbar.CollapsingToolbarLayout: void setMaxLines(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int Minute -wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_day_foreground -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetRight -cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener -androidx.fragment.R$string: R$string() -androidx.fragment.R$id: int accessibility_custom_action_31 -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_dividerPadding -okhttp3.internal.ws.WebSocketProtocol: long PAYLOAD_BYTE_MAX -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterTextAppearance -androidx.lifecycle.ProcessLifecycleOwnerInitializer: int update(android.net.Uri,android.content.ContentValues,java.lang.String,java.lang.String[]) -com.turingtechnologies.materialscrollbar.R$attr: int buttonIconDimen -okhttp3.internal.http2.Hpack$Writer: boolean useCompression -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -com.xw.repo.bubbleseekbar.R$layout: int notification_template_part_time -com.google.android.material.R$dimen: int abc_edit_text_inset_top_material -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_rtl -androidx.appcompat.R$integer: int config_tooltipAnimTime -androidx.appcompat.R$attr: int listChoiceIndicatorSingleAnimated -androidx.preference.R$color: int preference_fallback_accent_color -androidx.legacy.coreutils.R$layout: int notification_action -wangdaye.com.geometricweather.R$drawable: int ic_uv -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -wangdaye.com.geometricweather.R$id: int item_trend_daily -android.didikee.donate.R$drawable: int notification_bg_low_normal -com.google.android.material.R$attr: int expandedTitleMarginStart -com.google.android.material.R$style: int Base_Widget_MaterialComponents_Snackbar -com.jaredrummler.android.colorpicker.R$attr: int listChoiceBackgroundIndicator -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_12 -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$styleable: int SearchView_android_imeOptions -com.google.android.material.R$dimen: int mtrl_shape_corner_size_medium_component -cyanogenmod.weather.CMWeatherManager$1 -com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_OK -com.turingtechnologies.materialscrollbar.R$attr: int cardPreventCornerOverlap -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textFontWeight -okhttp3.Cookie$Builder: boolean persistent -wangdaye.com.geometricweather.R$styleable: int CardView_contentPadding -androidx.preference.R$style: int TextAppearance_Compat_Notification_Info -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarStyle -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_textColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric() -com.github.rahatarmanahmed.cpv.CircularProgressView$9: CircularProgressView$9(com.github.rahatarmanahmed.cpv.CircularProgressView) -okhttp3.internal.cache.DiskLruCache$Entry: void setLengths(java.lang.String[]) -com.google.android.material.R$styleable: int AppCompatTheme_colorControlActivated -androidx.appcompat.R$styleable: int ActionMode_background -wangdaye.com.geometricweather.R$bool: int cpv_default_is_indeterminate -wangdaye.com.geometricweather.R$id: int item_weather_daily_uv_icon -com.amap.api.location.AMapLocation: void setDescription(java.lang.String) -com.google.android.material.R$styleable: int MotionScene_layoutDuringTransition -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setDate(java.lang.String) -androidx.constraintlayout.widget.R$attr: int mock_label -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -androidx.appcompat.R$styleable: int TextAppearance_android_textColorHint -android.didikee.donate.R$id: int search_badge -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.Observer downstream -androidx.constraintlayout.widget.R$attr: int actionButtonStyle -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_dither -com.google.android.material.R$attr: int customColorValue -okhttp3.CipherSuite: java.lang.String secondaryName(java.lang.String) -androidx.coordinatorlayout.R$attr: int layout_dodgeInsetEdges -com.google.android.material.R$styleable: int Constraint_android_rotation -wangdaye.com.geometricweather.R$drawable: int notif_temp_92 -com.google.android.material.R$id: int scrollView -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: long produced -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SearchView -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$style: int Widget_Support_CoordinatorLayout -com.google.android.material.R$drawable: int btn_radio_on_to_off_mtrl_animation -io.reactivex.Observable: io.reactivex.Observable timeInterval(java.util.concurrent.TimeUnit) -cyanogenmod.hardware.CMHardwareManager: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) -cyanogenmod.app.IProfileManager: boolean notificationGroupExistsByName(java.lang.String) -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType[] $VALUES -androidx.preference.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.R$id: int src_in -wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_grey -com.google.android.material.R$attr: int contentPadding -androidx.recyclerview.widget.RecyclerView: void suppressLayout(boolean) -wangdaye.com.geometricweather.common.basic.models.weather.History -androidx.appcompat.R$anim: int abc_slide_out_top -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onScreenTurnedOn -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -okhttp3.internal.ws.WebSocketWriter$FrameSink: long contentLength -io.reactivex.internal.subscribers.StrictSubscriber: io.reactivex.internal.util.AtomicThrowable error -androidx.preference.R$attr: int colorError -androidx.appcompat.view.menu.ListMenuItemView: void setSubMenuArrowVisible(boolean) -okhttp3.internal.http.RealInterceptorChain: okhttp3.Call call() -androidx.legacy.coreutils.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircleAngle -com.google.android.material.R$color: int design_fab_stroke_top_inner_color -com.google.android.material.R$animator: int mtrl_fab_show_motion_spec -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onNext(java.lang.Object) -cyanogenmod.themes.IThemeService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindSpeed(java.lang.Float) -androidx.fragment.R$styleable -androidx.appcompat.widget.ButtonBarLayout: ButtonBarLayout(android.content.Context,android.util.AttributeSet) -okio.Buffer: okio.Buffer writeTo(java.io.OutputStream,long) -androidx.appcompat.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -com.google.android.material.chip.Chip: float getChipCornerRadius() -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: void setDrawable(boolean) -androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.R$layout: int item_about_line -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportImageTintList(android.content.res.ColorStateList) -androidx.fragment.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: java.lang.String Unit +android.didikee.donate.R$id: int info +androidx.vectordrawable.R$integer +androidx.work.R$attr: int fontProviderCerts +com.google.android.material.R$style: int Platform_V21_AppCompat_Light +wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: void onUpgrade(org.greenrobot.greendao.database.Database,int,int) +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String _ID +wangdaye.com.geometricweather.R$dimen: int abc_text_size_subtitle_material_toolbar +androidx.viewpager.R$id +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_ASSIST_LONG_PRESS_ACTION +androidx.hilt.lifecycle.R$id: int visible_removing_fragment_view_tag +com.google.android.material.R$styleable: int[] RangeSlider +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.xw.repo.bubbleseekbar.R$attr: int buttonTint +wangdaye.com.geometricweather.R$style: int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +com.google.android.material.R$styleable: int TabLayout_tabUnboundedRipple +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_grey +io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator[] values() +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarNeutralButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_android_thumb +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onError(java.lang.Throwable) +james.adaptiveicon.R$styleable: int SearchView_android_imeOptions +io.reactivex.internal.observers.LambdaObserver: void dispose() +cyanogenmod.content.Intent: java.lang.String ACTION_RECENTS_LONG_PRESS +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow24h +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain1h +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: AccuCurrentResult$PrecipitationSummary$Past12Hours() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$width +androidx.appcompat.widget.Toolbar: int getPopupTheme() +okhttp3.internal.Util: okhttp3.ResponseBody EMPTY_RESPONSE +androidx.fragment.R$styleable: int FontFamilyFont_android_fontWeight +cyanogenmod.providers.CMSettings$Secure: java.lang.String PROTECTED_COMPONENTS +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial +okhttp3.internal.platform.Platform: boolean isConscryptPreferred() +okhttp3.internal.http.HttpMethod: boolean redirectsWithBody(java.lang.String) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onNext(java.lang.Object) +androidx.preference.R$styleable: int RecyclerView_android_descendantFocusability +okhttp3.internal.http2.Hpack$Writer: void clearDynamicTable() +com.google.android.material.R$styleable: int Chip_textEndPadding +wangdaye.com.geometricweather.R$anim: int fragment_fade_exit +androidx.appcompat.R$style: int Base_V22_Theme_AppCompat +wangdaye.com.geometricweather.R$string: int feedback_about_geocoder +com.xw.repo.bubbleseekbar.R$id: int action_mode_close_button +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_tooltipFrameBackground +androidx.work.R$id: int right_side +cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_DEFAULT +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean isDisposed() +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_type +com.bumptech.glide.R$color: int secondary_text_default_material_light +io.reactivex.observers.TestObserver$EmptyObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NAME +wangdaye.com.geometricweather.R$dimen: int design_navigation_item_icon_padding +okhttp3.MultipartBody$Part: MultipartBody$Part(okhttp3.Headers,okhttp3.RequestBody) +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItemSmall +com.google.android.material.bottomappbar.BottomAppBar: boolean getHideOnScroll() +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog_Alert +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_titleTextStyle +org.greenrobot.greendao.AbstractDao: void deleteByKey(java.lang.Object) +wangdaye.com.geometricweather.R$color: int design_dark_default_color_secondary +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display4 +cyanogenmod.weather.ICMWeatherManager$Stub: android.os.IBinder asBinder() +androidx.constraintlayout.widget.R$color: int switch_thumb_material_light +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginLeft +androidx.lifecycle.FullLifecycleObserver: void onCreate(androidx.lifecycle.LifecycleOwner) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String longitude +com.google.android.material.timepicker.ClockHandView: ClockHandView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalStyle +com.google.android.material.slider.BaseSlider: int getTrackHeight() +androidx.appcompat.R$attr: int drawerArrowStyle +androidx.legacy.coreutils.R$style: R$style() +okhttp3.internal.ws.WebSocketProtocol: long PAYLOAD_SHORT_MAX +android.didikee.donate.R$attr: int buttonStyleSmall +com.google.android.material.R$styleable: int Slider_trackColorInactive +cyanogenmod.app.Profile$ProfileTrigger: int getState() +com.google.android.material.R$dimen: int material_helper_text_font_1_3_padding_top +androidx.appcompat.R$attr: int multiChoiceItemLayout +com.turingtechnologies.materialscrollbar.R$attr: int layout_keyline +androidx.vectordrawable.animated.R$dimen: int notification_subtext_size +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_orderInCategory +okhttp3.Cookie: java.lang.String domain +cyanogenmod.app.Profile: void setBrightness(cyanogenmod.profiles.BrightnessSettings) +wangdaye.com.geometricweather.R$id: int tabMode +androidx.appcompat.R$drawable: int abc_scrubber_control_off_mtrl_alpha +wangdaye.com.geometricweather.remoteviews.config.Hilt_MultiCityWidgetConfigActivity +androidx.constraintlayout.widget.R$id: int percent +com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_material_dark +androidx.viewpager.R$color: int ripple_material_light +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_baselineAligned +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments textAvalanche +com.google.android.material.R$animator: int mtrl_card_state_list_anim +cyanogenmod.externalviews.KeyguardExternalView$11 +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_slideLockscreenIn +androidx.preference.R$attr: int switchTextAppearance +okhttp3.internal.http1.Http1Codec$UnknownLengthSource +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.List AirAndPollen +androidx.preference.R$styleable: int AppCompatTheme_actionModeShareDrawable +com.google.android.material.R$dimen: int abc_search_view_preferred_width +android.didikee.donate.R$dimen: int abc_dialog_fixed_width_minor +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_creator +wangdaye.com.geometricweather.R$styleable: int ActionMode_closeItemLayout +com.amap.api.fence.PoiItem: void setPoiType(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: AccuLocationResult$Region() +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType USER_REQUEST +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Body2 +okhttp3.ResponseBody$1: ResponseBody$1(okhttp3.MediaType,long,okio.BufferedSource) +android.didikee.donate.R$color +wangdaye.com.geometricweather.R$id: int scrollable +androidx.preference.R$styleable: int GradientColor_android_endColor +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid TotalLiquid +com.jaredrummler.android.colorpicker.R$drawable: int abc_popup_background_mtrl_mult +wangdaye.com.geometricweather.R$drawable: int shortcuts_fog +com.google.android.material.R$attr: int contentInsetStart +com.google.android.material.R$styleable: int Constraint_android_orientation +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator +retrofit2.Utils$ParameterizedTypeImpl: boolean equals(java.lang.Object) +okhttp3.internal.cache.DiskLruCache: void processJournal() +wangdaye.com.geometricweather.R$layout: int material_clock_period_toggle_land +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_vertical_padding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_FALLBACK_SCSV +androidx.viewpager.R$styleable: int GradientColor_android_tileMode +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +com.google.android.material.R$attr: int colorPrimary +okhttp3.Cache$CacheRequestImpl: Cache$CacheRequestImpl(okhttp3.Cache,okhttp3.internal.cache.DiskLruCache$Editor) +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeTopRight +okhttp3.internal.http2.Http2Stream$FramingSource: long read(okio.Buffer,long) +android.didikee.donate.R$styleable: int SwitchCompat_trackTint +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Switch +com.turingtechnologies.materialscrollbar.R$attr: int listItemLayout +com.github.rahatarmanahmed.cpv.R$styleable: R$styleable() +android.didikee.donate.R$integer: int status_bar_notification_info_maxnum +android.didikee.donate.R$drawable: int notify_panel_notification_icon_bg +okhttp3.OkHttpClient: javax.net.SocketFactory socketFactory() +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +android.didikee.donate.R$attr: int progressBarStyle +okhttp3.internal.Util$1: Util$1() +okhttp3.Request$Builder: okhttp3.Request$Builder patch(okhttp3.RequestBody) +james.adaptiveicon.R$attr: int actionBarSplitStyle +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_elevation +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation +com.google.android.material.R$xml +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: AccuCurrentResult$Past24HourTemperatureDeparture$Imperial() +wangdaye.com.geometricweather.R$id: int material_clock_period_toggle +io.reactivex.internal.subscriptions.DeferredScalarSubscription +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: ObservableSequenceEqualSingle$EqualCoordinator(io.reactivex.SingleObserver,int,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) +wangdaye.com.geometricweather.R$id: int checked +com.google.android.material.R$styleable: int AppCompatTheme_buttonStyleSmall +wangdaye.com.geometricweather.R$styleable: int ActionBar_displayOptions +androidx.transition.R$styleable: int FontFamily_fontProviderAuthority +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +androidx.constraintlayout.widget.R$attr: int customPixelDimension +android.didikee.donate.R$color: int abc_btn_colored_text_material +okhttp3.Dispatcher: boolean $assertionsDisabled +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDefaultSmsSub(int) +android.support.v4.os.ResultReceiver$MyResultReceiver: void send(int,android.os.Bundle) +androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_weight +com.google.android.material.timepicker.ChipTextInputComboView: void setOnClickListener(android.view.View$OnClickListener) +com.google.android.material.R$styleable: int[] RadialViewGroup +androidx.drawerlayout.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getMoldDescription() +android.support.v4.app.RemoteActionCompatParcelizer: androidx.core.app.RemoteActionCompat read(androidx.versionedparcelable.VersionedParcel) +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +com.google.android.material.R$style: int Widget_AppCompat_Light_PopupMenu +com.amap.api.location.AMapLocation: int getGpsAccuracyStatus() +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date to +com.bumptech.glide.R$layout: int notification_template_part_time +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_variablePadding +android.didikee.donate.R$attr: int hideOnContentScroll +androidx.viewpager.widget.ViewPager com.amap.api.location.CoordinateConverter$1: int[] a -androidx.vectordrawable.R$id: int actions -com.amap.api.fence.PoiItem: java.lang.String d -com.amap.api.location.AMapLocation: void setTrustedLevel(int) -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$id: int design_menu_item_action_area_stub -okhttp3.internal.tls.BasicCertificateChainCleaner: boolean verifySignature(java.security.cert.X509Certificate,java.security.cert.X509Certificate) -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_DEFAULT_INDEX -androidx.recyclerview.R$id: int accessibility_custom_action_21 -cyanogenmod.app.IPartnerInterface$Stub$Proxy: java.lang.String getCurrentHotwordPackageName() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: AccuDailyResult$DailyForecasts$Night$Ice() -com.google.android.material.R$styleable: int[] NavigationView -wangdaye.com.geometricweather.db.entities.LocationEntity: void setTimeZone(java.util.TimeZone) -com.google.android.material.R$attr: int state_dragged -androidx.constraintlayout.widget.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -androidx.appcompat.R$dimen: int abc_text_size_body_2_material -androidx.lifecycle.extensions.R$styleable: int GradientColorItem_android_color -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.preference.R$styleable: int AppCompatTheme_colorButtonNormal -com.google.android.material.R$style: int Widget_Design_TabLayout -android.didikee.donate.R$attr: int windowMinWidthMinor -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconTint -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.util.List textHtml -com.google.android.material.chip.ChipGroup: void setSingleSelection(boolean) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_29 -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean isDisposed() -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.ObservableSource source -androidx.hilt.R$styleable -com.google.android.material.R$attr: int cornerSize -cyanogenmod.profiles.ConnectionSettings: java.lang.String EXTRA_SUB_ID -wangdaye.com.geometricweather.R$id: int widget_trend_daily -com.jaredrummler.android.colorpicker.R$attr: int windowMinWidthMinor -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startColor -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String pkg -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: AccuCurrentResult$WindChillTemperature() -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) -androidx.preference.R$id: int info -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -com.amap.api.location.CoordinateConverter -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_93 -io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Runnable runnable -androidx.cardview.R$dimen: int cardview_compat_inset_shadow -com.google.android.material.R$layout: int mtrl_picker_fullscreen -androidx.recyclerview.widget.RecyclerView: java.lang.CharSequence getAccessibilityClassName() -androidx.core.R$styleable: int GradientColor_android_endY -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_seekBarIncrement -okio.RealBufferedSink: okio.Sink sink -okhttp3.internal.http.HttpHeaders: boolean hasBody(okhttp3.Response) -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void error(java.lang.Throwable) -androidx.fragment.R$layout: int notification_template_custom_big -com.turingtechnologies.materialscrollbar.R$id: int filled -androidx.constraintlayout.motion.widget.MotionLayout: androidx.constraintlayout.motion.widget.DesignTool getDesignTool() -okio.Buffer: java.lang.String readUtf8Line() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean syncFused -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf -com.google.android.material.R$attr: int paddingLeftSystemWindowInsets -okhttp3.Response: okhttp3.Response priorResponse() -wangdaye.com.geometricweather.R$attr: int indeterminateProgressStyle -androidx.coordinatorlayout.R$attr: int statusBarBackground -wangdaye.com.geometricweather.R$style: int notification_content_text -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX brandInfo -cyanogenmod.alarmclock.ClockContract$CitiesColumns -com.google.android.material.R$styleable: int RecyclerView_android_descendantFocusability -james.adaptiveicon.R$style: int Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.R$id: int pathRelative -androidx.appcompat.R$id: int parentPanel -okio.AsyncTimeout: long IDLE_TIMEOUT_MILLIS -cyanogenmod.externalviews.ExternalViewProviderService: android.os.IBinder onBind(android.content.Intent) -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: long serialVersionUID -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeMinTextSize -androidx.preference.R$styleable: int[] SwitchCompat -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: int UnitType -wangdaye.com.geometricweather.R$attr: int unchecked_background_color -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_getActiveWeatherServiceProviderLabel -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_enter_shortcut_label -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.R$id: int icon_frame -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupMenu -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.jaredrummler.android.colorpicker.R$attr: int actionButtonStyle -retrofit2.HttpException: retrofit2.Response response() -wangdaye.com.geometricweather.R$attr: int allowDividerAfterLastItem +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +com.turingtechnologies.materialscrollbar.R$id: int mtrl_internal_children_alpha_tag +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +cyanogenmod.providers.CMSettings: java.lang.String AUTHORITY +androidx.appcompat.resources.R$drawable: int notification_bg_normal_pressed +androidx.constraintlayout.widget.R$id: int SHOW_PROGRESS +com.amap.api.location.DPoint: double getLongitude() +com.google.android.material.R$dimen: int mtrl_btn_icon_btn_padding_left +retrofit2.RequestBuilder: java.lang.String relativeUrl +androidx.constraintlayout.widget.R$style: int Platform_V25_AppCompat +android.didikee.donate.R$dimen: int abc_text_size_title_material_toolbar +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitationDuration +androidx.work.R$style: int TextAppearance_Compat_Notification_Time +com.google.android.material.card.MaterialCardView: int getStrokeWidth() +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: boolean equals(java.lang.Object) +com.google.android.material.R$styleable: int Constraint_android_layout_marginTop +james.adaptiveicon.R$color: int switch_thumb_material_light +com.google.android.gms.common.R$integer +retrofit2.RequestFactory$Builder: void parseHttpMethodAndPath(java.lang.String,java.lang.String,boolean) +com.google.android.material.R$string: int mtrl_picker_range_header_title +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView_Menu +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_night_1 +okhttp3.internal.http1.Http1Codec$AbstractSource: boolean closed com.google.android.material.R$attr: int buttonBarButtonStyle -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void dispose() -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode FOG -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -james.adaptiveicon.R$drawable: int notification_bg -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean isDisposed() -androidx.drawerlayout.R$dimen: int notification_right_side_padding_top -androidx.constraintlayout.widget.R$attr: int allowStacking -wangdaye.com.geometricweather.R$drawable: int ic_back -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_LOW_COLOR -cyanogenmod.platform.R$xml -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: int UnitType -wangdaye.com.geometricweather.R$attr: int yearTodayStyle -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: long subscriberCount -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: boolean equals(java.lang.Object) -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -androidx.preference.R$id: int group_divider -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDegreeDayTemperature(java.lang.Integer) -james.adaptiveicon.R$id: int notification_main_column -androidx.transition.R$attr: int fontProviderPackage -cyanogenmod.providers.CMSettings$Secure: java.lang.String FEATURE_TOUCH_HOVERING -com.xw.repo.bubbleseekbar.R$id: int action_menu_divider -com.google.android.material.R$attr: int startIconTintMode -androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -androidx.multidex.MultiDexExtractor$ExtractedDex: MultiDexExtractor$ExtractedDex(java.io.File,java.lang.String) -androidx.appcompat.widget.ContentFrameLayout: void setAttachListener(androidx.appcompat.widget.ContentFrameLayout$OnAttachListener) -com.google.android.material.R$styleable: int Chip_android_textAppearance -com.google.android.material.R$attr: int tabIndicatorGravity -androidx.hilt.R$layout: int notification_template_part_chronometer -androidx.preference.R$dimen: int abc_edit_text_inset_top_material -androidx.drawerlayout.R$attr: int fontProviderFetchStrategy -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorPrimaryDark -cyanogenmod.externalviews.KeyguardExternalView: void binderDied() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_3_material -androidx.lifecycle.Transformations$1: void onChanged(java.lang.Object) -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -james.adaptiveicon.R$styleable: int[] MenuGroup -androidx.preference.R$styleable: int[] PreferenceImageView -androidx.constraintlayout.widget.R$attr: int dragScale -com.amap.api.location.AMapLocationClient: void stopLocation() -wangdaye.com.geometricweather.R$attr: int radius_to -com.jaredrummler.android.colorpicker.R$drawable: int abc_spinner_textfield_background_material -okhttp3.CacheControl: CacheControl(boolean,boolean,int,int,boolean,boolean,boolean,int,int,boolean,boolean,boolean,java.lang.String) -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Borderless -okhttp3.internal.http.StatusLine: okhttp3.internal.http.StatusLine parse(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: int UnitType -androidx.dynamicanimation.R$id: int normal -androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context) -wangdaye.com.geometricweather.R$attr: int bsb_section_text_interval -android.didikee.donate.R$style: int Theme_AppCompat_Dialog -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getGrassIndex() -okhttp3.OkHttpClient$Builder: java.util.List networkInterceptors -com.google.android.material.R$color: int mtrl_tabs_colored_ripple_color -com.google.android.material.R$dimen: int mtrl_btn_inset -com.google.android.material.bottomnavigation.BottomNavigationItemView: com.google.android.material.badge.BadgeDrawable getBadge() -androidx.coordinatorlayout.R$styleable: int[] FontFamily -com.jaredrummler.android.colorpicker.R$attr: int actionBarDivider -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List ganmao -androidx.preference.R$styleable: int AppCompatTheme_spinnerStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Subhead -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder minFresh(int,java.util.concurrent.TimeUnit) -cyanogenmod.providers.CMSettings$Global: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -retrofit2.ParameterHandler$QueryName -android.didikee.donate.R$attr: int buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_text_size -wangdaye.com.geometricweather.R$attr: int dividerHorizontal -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_wrapMode -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleEnabled -com.turingtechnologies.materialscrollbar.R$animator -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_framePosition -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_EditText -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: java.lang.String mKey -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_android_maxWidth -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean() -com.google.android.material.R$attr: int errorEnabled -androidx.drawerlayout.R$dimen: int compat_control_corner_material -androidx.constraintlayout.widget.R$id: int action_bar -wangdaye.com.geometricweather.R$id: int widget_text_weather -androidx.constraintlayout.widget.R$attr: int titleMargins -james.adaptiveicon.R$styleable: int ActionBar_contentInsetRight -androidx.viewpager2.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$color: int bright_foreground_material_dark -io.reactivex.Observable: io.reactivex.Observable switchMapSingleDelayError(io.reactivex.functions.Function) -com.xw.repo.bubbleseekbar.R$dimen: int notification_top_pad +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void run() +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleContentDescription +com.google.android.material.R$styleable: int KeyCycle_framePosition +androidx.customview.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getDate(java.lang.String) +com.google.android.material.card.MaterialCardView +androidx.appcompat.R$dimen: int abc_text_size_subtitle_material_toolbar +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean isDisposed() +androidx.transition.R$styleable: int GradientColor_android_centerColor +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_shapeAppearance +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_android_lineHeight +androidx.preference.R$drawable: int abc_action_bar_item_background_material +androidx.appcompat.resources.R$style: int Widget_Compat_NotificationActionContainer +androidx.work.R$id: int accessibility_custom_action_7 +com.jaredrummler.android.colorpicker.R$string: int abc_shareactionprovider_share_with +com.google.android.material.R$dimen: int mtrl_switch_thumb_elevation +androidx.constraintlayout.widget.R$dimen: int notification_small_icon_size_as_large +com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text +com.google.android.gms.common.api.ApiException: com.google.android.gms.common.api.Status getStatus() +android.didikee.donate.R$string: int abc_capital_on +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onError(java.lang.Throwable) +com.google.android.material.R$layout: int mtrl_picker_header_selection_text +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarStyle +james.adaptiveicon.R$id: int list_item +com.google.android.gms.common.util.DynamiteApi +cyanogenmod.themes.IThemeService: long getLastThemeChangeTime() +androidx.legacy.coreutils.R$drawable: int notification_template_icon_low_bg +com.google.android.material.transformation.FabTransformationBehavior: FabTransformationBehavior(android.content.Context,android.util.AttributeSet) +cyanogenmod.providers.CMSettings$Global: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) +com.google.android.material.R$attr: int growMode +io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function) +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year +james.adaptiveicon.R$drawable: int abc_switch_thumb_material +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void dispose() +androidx.appcompat.R$attr: int numericModifiers +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_textLocale +android.didikee.donate.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +androidx.preference.R$drawable: int abc_scrubber_control_off_mtrl_alpha +okhttp3.Cookie: int dateCharacterOffset(java.lang.String,int,int,boolean) +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadMessage(okio.ByteString) +wangdaye.com.geometricweather.R$color: int material_on_surface_emphasis_high_type +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List hourly_forecast +androidx.lifecycle.LifecycleRegistry: void pushParentState(androidx.lifecycle.Lifecycle$State) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int Minute +androidx.dynamicanimation.R$attr: int font +com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getIndicatorHeight() +wangdaye.com.geometricweather.R$string: int phase_waxing_crescent +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: void setStatus(int) +android.didikee.donate.R$attr: int track +android.didikee.donate.R$styleable: int[] ColorStateListItem +com.jaredrummler.android.colorpicker.R$layout: int preference_category +androidx.lifecycle.Lifecycle: void removeObserver(androidx.lifecycle.LifecycleObserver) +com.google.android.material.slider.BaseSlider: void setThumbStrokeWidth(float) +com.google.android.material.R$styleable: int ThemeEnforcement_enforceMaterialTheme +androidx.viewpager.R$color +com.google.android.material.R$attr: int itemTextAppearanceInactive +com.google.android.material.R$attr: int textAppearanceBody2 +okio.RealBufferedSource: boolean rangeEquals(long,okio.ByteString) +okhttp3.internal.http1.Http1Codec$AbstractSource: long bytesRead cyanogenmod.providers.CMSettings$Global: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) -okhttp3.MultipartBody: byte[] COLONSPACE -com.turingtechnologies.materialscrollbar.R$attr: int layout_anchorGravity -wangdaye.com.geometricweather.R$attr: int settingsActivity -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_tooltipForegroundColor -james.adaptiveicon.R$styleable: int[] ActionMenuItemView -com.google.android.material.R$style: int Theme_MaterialComponents_Light_NoActionBar -com.turingtechnologies.materialscrollbar.R$attr: int thumbTint -androidx.fragment.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.gson.LongSerializationPolicy -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationY -james.adaptiveicon.R$color: int secondary_text_disabled_material_dark -androidx.viewpager2.R$dimen: int compat_button_inset_vertical_material -androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_default +retrofit2.ParameterHandler$RawPart +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.lang.String Link +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTintMode +com.turingtechnologies.materialscrollbar.R$attr: int closeIcon +com.google.android.material.R$style: int Base_Theme_AppCompat_DialogWhenLarge +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_elevation +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial Imperial +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setTemperatureUnit(int) +androidx.appcompat.resources.R$styleable: int FontFamilyFont_ttcIndex +com.xw.repo.bubbleseekbar.R$id: int add +retrofit2.adapter.rxjava2.Result: retrofit2.adapter.rxjava2.Result response(retrofit2.Response) +com.google.gson.stream.JsonReader: int PEEKED_BEGIN_ARRAY +james.adaptiveicon.R$styleable: int View_paddingEnd +wangdaye.com.geometricweather.R$attr: int bsb_bubble_color +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog +cyanogenmod.themes.IThemeService: boolean isThemeBeingProcessed(java.lang.String) +androidx.recyclerview.R$attr: int fastScrollHorizontalThumbDrawable +android.didikee.donate.R$dimen: int abc_action_bar_content_inset_with_nav +io.reactivex.internal.util.NotificationLite$SubscriptionNotification: long serialVersionUID +cyanogenmod.app.CustomTile$ExpandedListItem +io.reactivex.Observable: io.reactivex.Observable concatArrayEager(int,int,io.reactivex.ObservableSource[]) +com.google.android.material.tabs.TabLayout$TabView: void setSelected(boolean) +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getUnitId() +okio.ByteString: void writeObject(java.io.ObjectOutputStream) +androidx.preference.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_dotGap +cyanogenmod.power.PerformanceManager: void cpuBoost(int) +com.amap.api.location.APSService: void onCreate() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer RIGHT_VALUE +wangdaye.com.geometricweather.R$styleable: int KeyCycle_framePosition +androidx.constraintlayout.widget.R$styleable: int KeyPosition_framePosition +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActivityChooserView +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_PopupMenu +wangdaye.com.geometricweather.R$drawable: int notif_temp_109 +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Colored +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int HIGH_NOTIFICATION_STATE +io.reactivex.Observable: io.reactivex.Observable share() +cyanogenmod.app.CustomTile: java.lang.String label +androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format_use +com.google.android.material.internal.ScrimInsetsFrameLayout: void setDrawTopInsetForeground(boolean) +com.turingtechnologies.materialscrollbar.R$style: int Base_V23_Theme_AppCompat +androidx.lifecycle.Lifecycling: int REFLECTIVE_CALLBACK +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: java.lang.Object v1 +wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newSession() +androidx.appcompat.widget.ViewStubCompat: void setInflatedId(int) +androidx.cardview.R$style: int CardView +androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_text_size +android.didikee.donate.R$attr: int actionModePasteDrawable +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit valueOf(java.lang.String) +android.didikee.donate.R$style: int Widget_AppCompat_DropDownItem_Spinner +okhttp3.internal.cache.FaultHidingSink: void write(okio.Buffer,long) +com.xw.repo.bubbleseekbar.R$id: int search_edit_frame +org.greenrobot.greendao.AbstractDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +wangdaye.com.geometricweather.R$string: int content_des_swipe_left_to_delete +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: int mMin +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_EMPTY +retrofit2.HttpException: retrofit2.Response response +io.reactivex.internal.util.NotificationLite: java.lang.Object subscription(org.reactivestreams.Subscription) +wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_pressed_alpha +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getWeatherSource() +androidx.appcompat.R$dimen: int abc_action_bar_default_height_material +androidx.transition.R$dimen: int notification_main_column_padding_top +com.google.android.material.R$attr: int maxImageSize +cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String getPackageName() +androidx.preference.R$styleable: int CompoundButton_buttonCompat +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat +androidx.customview.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$drawable: int abc_cab_background_internal_bg +androidx.appcompat.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +androidx.appcompat.R$attr: int actionModeFindDrawable +okhttp3.MultipartBody: okhttp3.MediaType contentType() +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: int skip +com.google.android.material.R$id: int material_clock_period_toggle +androidx.lifecycle.extensions.R$anim +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getDate() +android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.os.IBinder mRemote +androidx.constraintlayout.widget.R$dimen: int notification_large_icon_width +cyanogenmod.app.CustomTile$RemoteExpandedStyle: CustomTile$RemoteExpandedStyle() +okio.SegmentedByteString: okio.ByteString substring(int,int) +wangdaye.com.geometricweather.R$attr: int state_dragged +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_tooltipForegroundColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSo2() +androidx.viewpager2.R$color: int secondary_text_default_material_light +okhttp3.internal.connection.RouteDatabase: RouteDatabase() +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event valueOf(java.lang.String) +androidx.coordinatorlayout.R$id: int action_text +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_12 +wangdaye.com.geometricweather.R$color: int error_color_material_dark +androidx.vectordrawable.R$attr: int fontStyle +wangdaye.com.geometricweather.R$attr: int prefixText +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_height +androidx.preference.R$styleable: int AppCompatTheme_tooltipFrameBackground +okio.ByteString: byte[] toByteArray() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindDirection +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_weatherContainer +com.google.android.material.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +james.adaptiveicon.R$attr: int actionModeFindDrawable +com.xw.repo.bubbleseekbar.R$color: int abc_background_cache_hint_selector_material_dark +wangdaye.com.geometricweather.R$style: int material_image_button +wangdaye.com.geometricweather.R$layout: int widget_day_week_tile +com.xw.repo.bubbleseekbar.R$attr: int buttonStyleSmall +com.xw.repo.bubbleseekbar.R$layout: int abc_expanded_menu_layout +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_hide_motion_spec +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void setInteractivity(boolean) +androidx.constraintlayout.widget.R$attr +com.amap.api.location.AMapLocation: java.lang.String r +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed +com.google.android.material.R$styleable: int KeyTimeCycle_android_scaleX +io.reactivex.Observable: io.reactivex.Observable generate(io.reactivex.functions.Consumer) +io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,boolean) +com.xw.repo.bubbleseekbar.R$string: int abc_menu_function_shortcut_label +androidx.fragment.R$id: int accessibility_custom_action_28 +com.google.android.material.R$style: int Base_Widget_AppCompat_ActivityChooserView +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconPadding +androidx.preference.R$attr: int windowMinWidthMajor +okio.AsyncTimeout: okio.Sink sink(okio.Sink) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherText(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconDrawable +wangdaye.com.geometricweather.R$attr: int drawableSize +com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_Dialog +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_enabled +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixText +okio.Segment: okio.Segment pop() +com.google.android.material.R$styleable: int TextAppearance_android_fontFamily +com.google.android.material.R$styleable: int KeyTimeCycle_motionProgress +cyanogenmod.providers.CMSettings$Global: java.lang.String ZEN_DISABLE_DUCKING_DURING_MEDIA_PLAYBACK +com.bumptech.glide.load.HttpException: int UNKNOWN +androidx.appcompat.R$attr: int iconifiedByDefault +androidx.appcompat.R$styleable: int[] StateListDrawableItem +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SearchView +cyanogenmod.themes.IThemeService$Stub$Proxy: int getProgress() +com.google.android.material.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +com.google.android.material.snackbar.Snackbar$SnackbarLayout +androidx.appcompat.widget.AppCompatCheckBox: android.content.res.ColorStateList getSupportButtonTintList() +androidx.preference.R$id: int accessibility_custom_action_27 +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: java.lang.Object value +cyanogenmod.app.ILiveLockScreenManager: void cancelLiveLockScreen(java.lang.String,int,int) +com.google.android.material.chip.Chip: void setChipIconSize(float) +com.turingtechnologies.materialscrollbar.R$color: int abc_color_highlight_material +androidx.cardview.R$attr: int cardViewStyle +androidx.preference.UnPressableLinearLayout +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ImageButton +androidx.loader.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_icon +androidx.preference.R$dimen: int tooltip_vertical_padding +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_headerLayout +io.reactivex.Observable: io.reactivex.Observable timestamp(java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX +androidx.constraintlayout.widget.R$attr: int commitIcon +com.google.android.material.R$anim: int mtrl_bottom_sheet_slide_out +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isRain() +cyanogenmod.app.BaseLiveLockManagerService: BaseLiveLockManagerService() +androidx.constraintlayout.widget.R$drawable: int abc_ic_search_api_material +cyanogenmod.themes.ThemeChangeRequest: int DEFAULT_WALLPAPER_ID +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction +com.xw.repo.bubbleseekbar.R$color: int secondary_text_default_material_dark +androidx.preference.R$color: int accent_material_dark +com.baidu.location.e.h$b: com.baidu.location.e.h$b valueOf(java.lang.String) +okhttp3.OkHttpClient: OkHttpClient(okhttp3.OkHttpClient$Builder) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_Solid +androidx.recyclerview.widget.RecyclerView: void suppressLayout(boolean) +com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusTopStart +androidx.appcompat.widget.SwitchCompat: android.graphics.drawable.Drawable getThumbDrawable() +wangdaye.com.geometricweather.R$string: int settings_category_forecast +com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Dialog +com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.R$styleable: int AppCompatTheme_colorAccent +okhttp3.internal.Util: boolean equal(java.lang.Object,java.lang.Object) +androidx.activity.R$string: R$string() +wangdaye.com.geometricweather.R$attr: int initialExpandedChildrenCount +com.google.android.material.R$style: int Base_Animation_AppCompat_DropDownUp +androidx.preference.DropDownPreference +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_lineHeight +androidx.hilt.lifecycle.R$integer: int status_bar_notification_info_maxnum +cyanogenmod.os.Build$CM_VERSION: int SDK_INT +androidx.appcompat.R$styleable: int ActionMode_backgroundSplit +com.turingtechnologies.materialscrollbar.R$integer: int config_tooltipAnimTime +android.support.v4.app.INotificationSideChannel$Stub$Proxy: INotificationSideChannel$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.R$styleable: int Chip_chipEndPadding +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_EditText +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterTextColor +androidx.preference.R$id: int accessibility_custom_action_23 +androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: int minuteInterval +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayWeekProvider +android.didikee.donate.R$drawable: int abc_seekbar_tick_mark_material +com.xw.repo.bubbleseekbar.R$id: int title_template +retrofit2.Retrofit: java.util.concurrent.Executor callbackExecutor +wangdaye.com.geometricweather.R$bool: int cpv_default_anim_autostart +androidx.preference.R$styleable: int AppCompatTheme_actionModePasteDrawable +androidx.preference.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.R$drawable: int weather_rain +androidx.hilt.R$attr: int alpha +androidx.vectordrawable.animated.R$id: int notification_main_column +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addQueryParameter(java.lang.String,java.lang.String) +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setLabel(java.lang.String) +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: java.util.concurrent.CompletableFuture future +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +okhttp3.internal.cache.CacheStrategy$Factory: long sentRequestMillis +com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_max +androidx.coordinatorlayout.R$id: int accessibility_custom_action_22 +james.adaptiveicon.R$attr: int textColorAlertDialogListItem +androidx.preference.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.R$drawable: int ic_star_outline +james.adaptiveicon.R$style: int Base_Widget_AppCompat_EditText +okio.Pipe$PipeSink: void write(okio.Buffer,long) diff --git a/release/3.001/mapping/gplayRelease/usage.txt b/release/3.002/mapping/gplayRelease/usage.txt similarity index 100% rename from release/3.001/mapping/gplayRelease/usage.txt rename to release/3.002/mapping/gplayRelease/usage.txt diff --git a/release/3.001/mapping/pubRelease/configuration.txt b/release/3.002/mapping/pubRelease/configuration.txt similarity index 100% rename from release/3.001/mapping/pubRelease/configuration.txt rename to release/3.002/mapping/pubRelease/configuration.txt diff --git a/release/3.001/mapping/pubRelease/mapping.txt b/release/3.002/mapping/pubRelease/mapping.txt similarity index 99% rename from release/3.001/mapping/pubRelease/mapping.txt rename to release/3.002/mapping/pubRelease/mapping.txt index d0f39a348..c500b75ae 100644 --- a/release/3.001/mapping/pubRelease/mapping.txt +++ b/release/3.002/mapping/pubRelease/mapping.txt @@ -1,7 +1,7 @@ # compiler: R8 # compiler_version: 2.1.86 # min_api: 19 -# pg_map_id: 2676c5a +# pg_map_id: cbdf03c # common_typos_disable android.didikee.donate.AlipayDonate -> android.didikee.donate.a: 1:1:boolean hasInstalledAlipayClient(android.content.Context):73:73 -> a @@ -97986,30 +97986,30 @@ wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC 1:1:wangdaye.com.geometricweather.main.utils.StatementManager getStatementManager():485:485 -> G 1:1:javax.inject.Provider getStatementManagerProvider():489:489 -> H 2:3:javax.inject.Provider getStatementManagerProvider():491:492 -> H - 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity injectClockDayDetailsWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity):650:650 -> I - 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity injectClockDayHorizontalWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity):656:656 -> J - 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity injectClockDayVerticalWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity):662:662 -> K - 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity injectClockDayWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity):668:668 -> L - 1:1:wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity injectDailyTrendWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity):674:674 -> M - 1:1:wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity injectDayWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity):680:680 -> N - 1:1:wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity injectDayWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity):686:686 -> O - 1:1:wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity injectHourlyTrendWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity):692:692 -> P - 1:1:wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity injectMultiCityWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity):698:698 -> Q - 1:1:wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity injectTextWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity):704:704 -> R - 1:1:wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity injectWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity):710:710 -> S - 1:1:void injectWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity):641:641 -> a - 1:1:void injectClockDayWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity):600:600 -> b - 1:1:void injectHourlyTrendWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity):623:623 -> c - 1:1:void injectDailyTrendWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity):606:606 -> d - 1:1:void injectDayWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity):612:612 -> e + 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity injectClockDayDetailsWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity):643:643 -> I + 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity injectClockDayHorizontalWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity):649:649 -> J + 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity injectClockDayVerticalWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity):655:655 -> K + 1:1:wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity injectClockDayWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity):661:661 -> L + 1:1:wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity injectDailyTrendWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity):667:667 -> M + 1:1:wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity injectDayWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity):673:673 -> N + 1:1:wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity injectDayWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity):679:679 -> O + 1:1:wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity injectHourlyTrendWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity):685:685 -> P + 1:1:wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity injectMultiCityWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity):691:691 -> Q + 1:1:wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity injectTextWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity):697:697 -> R + 1:1:wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity injectWeekWidgetConfigActivity2(wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity):703:703 -> S + 1:1:void injectWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity):634:634 -> a + 1:1:void injectClockDayWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity):599:599 -> b + 1:1:void injectHourlyTrendWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity):619:619 -> c + 1:1:void injectDailyTrendWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity):604:604 -> d + 1:1:void injectDayWeekWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity):609:609 -> e void injectSearchActivity(wangdaye.com.geometricweather.search.SearchActivity) -> f 1:1:void injectClockDayDetailsWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity):582:582 -> g void injectMainActivity(wangdaye.com.geometricweather.main.MainActivity) -> h - 1:1:void injectTextWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity):635:635 -> i + 1:1:void injectTextWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity):629:629 -> i 1:1:java.util.Set getActivityViewModelFactory():562:562 -> j 1:1:void injectClockDayHorizontalWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity):588:588 -> k - 1:1:void injectMultiCityWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity):629:629 -> l - 1:1:void injectDayWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity):617:617 -> m + 1:1:void injectMultiCityWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity):624:624 -> l + 1:1:void injectDayWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity):614:614 -> m 1:1:void injectClockDayVerticalWidgetConfigActivity(wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity):594:594 -> n 1:1:wangdaye.com.geometricweather.main.MainActivityViewModel_AssistedFactory access$1800(wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl):452:452 -> o 1:1:wangdaye.com.geometricweather.main.MainActivityRepository access$1900(wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl):452:452 -> p @@ -98029,15 +98029,15 @@ wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl$SwitchingProvider -> wangdaye.com.geometricweather.a$c$b$a: wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl this$2 -> b int id -> a - 1:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl,int):799:800 -> - 1:1:java.lang.Object get():806:806 -> get - 2:2:java.lang.Object get():823:823 -> get - 3:3:java.lang.Object get():825:825 -> get - 4:4:java.lang.Object get():820:820 -> get - 5:5:java.lang.Object get():817:817 -> get - 6:6:java.lang.Object get():814:814 -> get - 7:7:java.lang.Object get():811:811 -> get - 8:8:java.lang.Object get():808:808 -> get + 1:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ActivityRetainedCImpl$ActivityCImpl,int):792:793 -> + 1:1:java.lang.Object get():799:799 -> get + 2:2:java.lang.Object get():816:816 -> get + 3:3:java.lang.Object get():818:818 -> get + 4:4:java.lang.Object get():813:813 -> get + 5:5:java.lang.Object get():810:810 -> get + 6:6:java.lang.Object get():807:807 -> get + 7:7:java.lang.Object get():804:804 -> get + 8:8:java.lang.Object get():801:801 -> get wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$Builder -> wangdaye.com.geometricweather.a$d: wangdaye.com.geometricweather.location.di.ApiModule apiModule -> a wangdaye.com.geometricweather.weather.di.ApiModule apiModule2 -> b @@ -98055,38 +98055,38 @@ wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ServiceCBuilder -> wangdaye.com.geometricweather.a$e: wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC this$0 -> b android.app.Service service -> a - 1:1:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC):832:832 -> - 2:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$1):832:832 -> - 1:1:dagger.hilt.android.components.ServiceComponent build():832:832 -> a - 1:1:dagger.hilt.android.internal.builders.ServiceComponentBuilder service(android.app.Service):832:832 -> b - 1:2:wangdaye.com.geometricweather.GeometricWeather_HiltComponents$ServiceC build():843:844 -> c - 1:1:wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ServiceCBuilder service(android.app.Service):837:837 -> d + 1:1:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC):825:825 -> + 2:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$1):825:825 -> + 1:1:dagger.hilt.android.components.ServiceComponent build():825:825 -> a + 1:1:dagger.hilt.android.internal.builders.ServiceComponentBuilder service(android.app.Service):825:825 -> b + 1:2:wangdaye.com.geometricweather.GeometricWeather_HiltComponents$ServiceC build():836:837 -> c + 1:1:wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ServiceCBuilder service(android.app.Service):830:830 -> d wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$ServiceCImpl -> wangdaye.com.geometricweather.a$f: wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC this$0 -> a - 1:1:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,android.app.Service,wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$1):848:848 -> - 2:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,android.app.Service):849:849 -> - 1:1:void injectForegroundTodayForecastUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService):868:868 -> a - 1:1:void injectForegroundNormalUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService):862:862 -> b - 1:1:void injectForegroundTomorrowForecastUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService):874:874 -> c - 1:1:void injectCMWeatherProviderService(wangdaye.com.geometricweather.background.service.CMWeatherProviderService):879:879 -> d - 1:1:void injectAwakeForegroundUpdateService(wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService):856:856 -> e - 1:2:wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService injectAwakeForegroundUpdateService2(wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService):884:885 -> f - 1:2:wangdaye.com.geometricweather.background.service.CMWeatherProviderService injectCMWeatherProviderService2(wangdaye.com.geometricweather.background.service.CMWeatherProviderService):912:913 -> g - 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService injectForegroundNormalUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService):891:892 -> h - 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService injectForegroundTodayForecastUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService):898:899 -> i - 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService injectForegroundTomorrowForecastUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService):905:906 -> j + 1:1:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,android.app.Service,wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$1):841:841 -> + 2:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,android.app.Service):842:842 -> + 1:1:void injectForegroundTodayForecastUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService):859:859 -> a + 1:1:void injectForegroundNormalUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService):853:853 -> b + 1:1:void injectForegroundTomorrowForecastUpdateService(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService):865:865 -> c + 1:1:void injectCMWeatherProviderService(wangdaye.com.geometricweather.background.service.CMWeatherProviderService):870:870 -> d + 1:1:void injectAwakeForegroundUpdateService(wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService):848:848 -> e + 1:2:wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService injectAwakeForegroundUpdateService2(wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService):875:876 -> f + 1:2:wangdaye.com.geometricweather.background.service.CMWeatherProviderService injectCMWeatherProviderService2(wangdaye.com.geometricweather.background.service.CMWeatherProviderService):903:904 -> g + 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService injectForegroundNormalUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService):882:883 -> h + 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService injectForegroundTodayForecastUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService):889:890 -> i + 1:2:wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService injectForegroundTomorrowForecastUpdateService2(wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService):896:897 -> j wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC$SwitchingProvider -> wangdaye.com.geometricweather.a$g: wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC this$0 -> b int id -> a - 1:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,int):921:922 -> - 1:1:java.lang.Object get():928:928 -> get - 2:2:java.lang.Object get():945:945 -> get - 3:3:java.lang.Object get():947:947 -> get - 4:4:java.lang.Object get():942:942 -> get - 5:5:java.lang.Object get():939:939 -> get - 6:6:java.lang.Object get():936:936 -> get - 7:7:java.lang.Object get():933:933 -> get - 8:8:java.lang.Object get():930:930 -> get + 1:2:void (wangdaye.com.geometricweather.DaggerGeometricWeather_HiltComponents_ApplicationC,int):912:913 -> + 1:1:java.lang.Object get():919:919 -> get + 2:2:java.lang.Object get():936:936 -> get + 3:3:java.lang.Object get():938:938 -> get + 4:4:java.lang.Object get():933:933 -> get + 5:5:java.lang.Object get():930:930 -> get + 6:6:java.lang.Object get():927:927 -> get + 7:7:java.lang.Object get():924:924 -> get + 8:8:java.lang.Object get():921:921 -> get wangdaye.com.geometricweather.GeometricWeather -> wangdaye.com.geometricweather.GeometricWeather: wangdaye.com.geometricweather.GeometricWeather sInstance -> f java.util.Set mActivitySet -> c @@ -99633,10 +99633,10 @@ wangdaye.com.geometricweather.common.retrofit.interceptors.GzipInterceptor -> wa wangdaye.com.geometricweather.common.retrofit.interceptors.ReportExceptionInterceptor -> wangdaye.com.geometricweather.j.b.b.b: 1:1:void ():9:9 -> wangdaye.com.geometricweather.common.rxjava.BaseObserver -> wangdaye.com.geometricweather.j.c.a: - 1:1:void ():5:5 -> - 1:1:void onError(java.lang.Throwable):22:22 -> onError - 1:1:void onNext(java.lang.Object):14:14 -> onNext - 2:2:void onNext(java.lang.Object):16:16 -> onNext + 1:1:void ():7:7 -> + 1:1:void onError(java.lang.Throwable):24:24 -> onError + 1:1:void onNext(java.lang.Object):16:16 -> onNext + 2:2:void onNext(java.lang.Object):18:18 -> onNext wangdaye.com.geometricweather.common.rxjava.ObserverContainer -> wangdaye.com.geometricweather.j.c.b: io.reactivex.disposables.CompositeDisposable compositeDisposable -> b io.reactivex.Observer observer -> c @@ -112393,299 +112393,305 @@ wangdaye.com.geometricweather.weather.apis.MfWeatherApi -> wangdaye.com.geometri io.reactivex.Observable getForecast(double,double,java.lang.String,java.lang.String) -> f io.reactivex.Observable getEphemeris(double,double,java.lang.String,java.lang.String) -> g wangdaye.com.geometricweather.weather.converters.AccuResultConverter -> wangdaye.com.geometricweather.q.f.a: - 1:5:java.lang.String arrayToString(java.lang.String[]):544:548 -> a - 6:6:java.lang.String arrayToString(java.lang.String[]):551:551 -> a - 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):55:58 -> b - 5:5:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):62:62 -> b - 6:8:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):64:66 -> b - 9:15:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):71:77 -> b - 16:16:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):80:80 -> b - 17:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):84:84 -> b - 18:24:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):93:99 -> b - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):113:113 -> c - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):115:116 -> c - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):120:120 -> c - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):124:124 -> c - 6:11:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):126:131 -> c - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):135:135 -> c - 13:14:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):151:152 -> c - 15:15:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):154:154 -> c - 16:23:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):159:166 -> c - 24:31:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):168:175 -> c - 32:33:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):180:181 -> c - 34:35:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):183:184 -> c - 36:37:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):186:187 -> c - 38:38:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):185:185 -> c - 39:39:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):190:190 -> c - 1:1:java.lang.String convertUnit(android.content.Context,java.lang.String):485:485 -> d - 2:2:java.lang.String convertUnit(android.content.Context,java.lang.String):490:490 -> d - 3:3:java.lang.String convertUnit(android.content.Context,java.lang.String):493:493 -> d - 4:4:java.lang.String convertUnit(android.content.Context,java.lang.String):496:496 -> d - 1:1:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):511:511 -> e - 2:3:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):513:514 -> e - 4:6:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):516:518 -> e - 7:9:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):520:520 -> e - 10:10:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):522:522 -> e - 11:14:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):524:527 -> e - 15:15:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):530:530 -> e - 16:17:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):533:534 -> e - 1:2:wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen getAirAndPollen(java.util.List,java.lang.String):357:358 -> f - 1:3:java.util.List getAlertList(java.util.List):428:430 -> g - 4:5:java.util.List getAlertList(java.util.List):433:434 -> g - 6:6:java.util.List getAlertList(java.util.List):436:436 -> g - 7:7:java.util.List getAlertList(java.util.List):439:439 -> g - 8:8:java.util.List getAlertList(java.util.List):430:430 -> g - 9:10:java.util.List getAlertList(java.util.List):443:444 -> g - 1:3:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.util.List):307:309 -> h - 4:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.util.List):312:313 -> h - 1:1:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):198:198 -> i - 2:3:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):200:201 -> i - 4:4:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):206:206 -> i - 5:5:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):208:208 -> i - 6:8:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):210:212 -> i - 9:9:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):216:216 -> i - 10:10:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):219:219 -> i - 11:13:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):221:223 -> i - 14:18:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):226:230 -> i - 19:19:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):233:233 -> i - 20:22:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):235:237 -> i - 23:24:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):242:243 -> i - 25:25:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):245:245 -> i - 26:26:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):248:248 -> i - 27:27:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):250:250 -> i - 28:30:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):252:254 -> i - 31:31:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):258:258 -> i - 32:32:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):261:261 -> i - 33:35:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):263:265 -> i - 36:40:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):268:272 -> i - 41:41:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):275:275 -> i - 42:44:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):277:279 -> i - 45:46:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):284:285 -> i - 47:47:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):287:287 -> i - 48:48:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):292:292 -> i - 49:51:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):295:297 -> i - 52:52:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):201:201 -> i - 1:7:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):325:331 -> j - 8:9:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):333:334 -> j - 10:11:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):336:337 -> j - 12:13:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):339:340 -> j - 1:3:wangdaye.com.geometricweather.common.basic.models.weather.UV getDailyUV(java.util.List):346:348 -> k - 1:3:java.util.List getHourlyList(java.util.List):366:368 -> l - 4:4:java.util.List getHourlyList(java.util.List):374:374 -> l - 5:5:java.util.List getHourlyList(java.util.List):376:376 -> l - 6:6:java.util.List getHourlyList(java.util.List):392:392 -> l - 7:7:java.util.List getHourlyList(java.util.List):368:368 -> l - 1:1:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):407:407 -> m - 2:4:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):409:411 -> m - 5:5:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):415:415 -> m - 6:6:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):417:417 -> m - 7:8:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):419:420 -> m - 9:9:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):411:411 -> m - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):462:462 -> n - 2:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):464:464 -> n - 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):474:474 -> n - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):478:478 -> n - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):480:480 -> n - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):476:476 -> n - 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):472:472 -> n - 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):469:469 -> n - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):467:467 -> n - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):460:460 -> n - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):458:458 -> n - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):455:455 -> n + 1:5:java.lang.String arrayToString(java.lang.String[]):548:552 -> a + 6:6:java.lang.String arrayToString(java.lang.String[]):555:555 -> a + 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):57:60 -> b + 5:5:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):64:64 -> b + 6:8:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):66:68 -> b + 9:15:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):73:79 -> b + 16:16:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):82:82 -> b + 17:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):86:86 -> b + 18:24:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult,java.lang.String):95:101 -> b + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):116:116 -> c + 2:3:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):118:119 -> c + 4:4:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):123:123 -> c + 5:5:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):127:127 -> c + 6:11:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):129:134 -> c + 12:12:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):138:138 -> c + 13:14:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):154:155 -> c + 15:15:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):157:157 -> c + 16:23:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):162:169 -> c + 24:31:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):171:178 -> c + 32:33:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):183:184 -> c + 34:35:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):186:187 -> c + 36:37:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):189:190 -> c + 38:38:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):188:188 -> c + 39:39:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):193:193 -> c + 40:40:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):195:195 -> c + 41:41:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult,java.util.List):197:197 -> c + 1:1:java.lang.String convertUnit(android.content.Context,java.lang.String):489:489 -> d + 2:2:java.lang.String convertUnit(android.content.Context,java.lang.String):494:494 -> d + 3:3:java.lang.String convertUnit(android.content.Context,java.lang.String):497:497 -> d + 4:4:java.lang.String convertUnit(android.content.Context,java.lang.String):500:500 -> d + 1:1:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):515:515 -> e + 2:3:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):517:518 -> e + 4:6:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):520:522 -> e + 7:9:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):524:524 -> e + 10:10:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):526:526 -> e + 11:14:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):528:531 -> e + 15:15:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):534:534 -> e + 16:17:java.lang.String convertUnit(android.content.Context,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit,wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit):537:538 -> e + 1:2:wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen getAirAndPollen(java.util.List,java.lang.String):361:362 -> f + 1:3:java.util.List getAlertList(java.util.List):432:434 -> g + 4:5:java.util.List getAlertList(java.util.List):437:438 -> g + 6:6:java.util.List getAlertList(java.util.List):440:440 -> g + 7:7:java.util.List getAlertList(java.util.List):443:443 -> g + 8:8:java.util.List getAlertList(java.util.List):434:434 -> g + 9:10:java.util.List getAlertList(java.util.List):447:448 -> g + 1:3:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.util.List):311:313 -> h + 4:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.util.List):316:317 -> h + 1:1:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):202:202 -> i + 2:3:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):204:205 -> i + 4:4:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):210:210 -> i + 5:5:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):212:212 -> i + 6:8:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):214:216 -> i + 9:9:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):220:220 -> i + 10:10:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):223:223 -> i + 11:13:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):225:227 -> i + 14:18:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):230:234 -> i + 19:19:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):237:237 -> i + 20:22:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):239:241 -> i + 23:24:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):246:247 -> i + 25:25:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):249:249 -> i + 26:26:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):252:252 -> i + 27:27:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):254:254 -> i + 28:30:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):256:258 -> i + 31:31:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):262:262 -> i + 32:32:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):265:265 -> i + 33:35:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):267:269 -> i + 36:40:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):272:276 -> i + 41:41:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):279:279 -> i + 42:44:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):281:283 -> i + 45:46:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):288:289 -> i + 47:47:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):291:291 -> i + 48:48:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):296:296 -> i + 49:51:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):299:301 -> i + 52:52:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult):205:205 -> i + 1:7:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):329:335 -> j + 8:9:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):337:338 -> j + 10:11:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):340:341 -> j + 12:13:wangdaye.com.geometricweather.common.basic.models.weather.Pollen getDailyPollen(java.util.List):343:344 -> j + 1:3:wangdaye.com.geometricweather.common.basic.models.weather.UV getDailyUV(java.util.List):350:352 -> k + 1:3:java.util.List getHourlyList(java.util.List):370:372 -> l + 4:4:java.util.List getHourlyList(java.util.List):378:378 -> l + 5:5:java.util.List getHourlyList(java.util.List):380:380 -> l + 6:6:java.util.List getHourlyList(java.util.List):396:396 -> l + 7:7:java.util.List getHourlyList(java.util.List):372:372 -> l + 1:1:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):411:411 -> m + 2:4:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):413:415 -> m + 5:5:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):419:419 -> m + 6:6:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):421:421 -> m + 7:8:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):423:424 -> m + 9:9:java.util.List getMinutelyList(java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult):415:415 -> m + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):466:466 -> n + 2:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):468:468 -> n + 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):478:478 -> n + 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):482:482 -> n + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):484:484 -> n + 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):480:480 -> n + 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):476:476 -> n + 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):473:473 -> n + 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):471:471 -> n + 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):464:464 -> n + 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):462:462 -> n + 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(int):459:459 -> n int toInt(double) -> o wangdaye.com.geometricweather.weather.converters.CNResultConverter -> wangdaye.com.geometricweather.q.f.b: - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):51:51 -> a - 2:2:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):53:53 -> a - 3:4:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):56:57 -> a - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):59:59 -> a - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):61:61 -> a - 7:8:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):63:64 -> a - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):68:68 -> a - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):72:72 -> a - 11:12:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):74:75 -> a - 13:14:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):98:99 -> a - 15:16:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):104:105 -> a - 17:24:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):108:115 -> a - 25:26:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):117:118 -> a - 27:27:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):124:124 -> a - 28:28:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):127:127 -> a - 29:30:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):130:131 -> a - 31:31:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):128:128 -> a - 32:32:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):135:135 -> a - 33:33:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):138:138 -> a - 1:1:int getAlertColor(java.lang.String):556:556 -> b - 2:2:int getAlertColor(java.lang.String):559:559 -> b - 3:3:int getAlertColor(java.lang.String):566:566 -> b - 4:4:int getAlertColor(java.lang.String):562:562 -> b - 5:5:int getAlertColor(java.lang.String):578:578 -> b - 6:6:int getAlertColor(java.lang.String):574:574 -> b - 1:3:java.util.List getAlertList(java.util.List):359:361 -> c - 4:4:java.util.List getAlertList(java.util.List):363:363 -> c - 5:5:java.util.List getAlertList(java.util.List):365:365 -> c - 6:6:java.util.List getAlertList(java.util.List):368:368 -> c - 7:7:java.util.List getAlertList(java.util.List):370:370 -> c - 8:8:java.util.List getAlertList(java.util.List):372:372 -> c - 9:10:java.util.List getAlertList(java.util.List):376:377 -> c - 11:11:java.util.List getAlertList(java.util.List):368:368 -> c - 12:13:java.util.List getAlertList(java.util.List):382:383 -> c - 1:1:int getAlertPriority(java.lang.String):526:526 -> d - 2:2:int getAlertPriority(java.lang.String):529:529 -> d - 1:1:java.lang.Float getCO(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):466:466 -> e - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):274:274 -> f - 2:4:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):276:278 -> f - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):290:290 -> f - 1:4:java.util.List getDailyList(android.content.Context,java.util.List):146:149 -> g - 5:5:java.util.List getDailyList(android.content.Context,java.util.List):151:151 -> g - 6:6:java.util.List getDailyList(android.content.Context,java.util.List):153:153 -> g - 7:7:java.util.List getDailyList(android.content.Context,java.util.List):156:156 -> g - 8:10:java.util.List getDailyList(android.content.Context,java.util.List):158:160 -> g - 11:11:java.util.List getDailyList(android.content.Context,java.util.List):162:162 -> g - 12:13:java.util.List getDailyList(android.content.Context,java.util.List):192:193 -> g - 14:14:java.util.List getDailyList(android.content.Context,java.util.List):195:195 -> g - 15:17:java.util.List getDailyList(android.content.Context,java.util.List):200:202 -> g - 18:18:java.util.List getDailyList(android.content.Context,java.util.List):204:204 -> g - 19:20:java.util.List getDailyList(android.content.Context,java.util.List):234:235 -> g - 21:21:java.util.List getDailyList(android.content.Context,java.util.List):237:237 -> g - 22:23:java.util.List getDailyList(android.content.Context,java.util.List):242:243 -> g - 24:24:java.util.List getDailyList(android.content.Context,java.util.List):247:247 -> g - 25:26:java.util.List getDailyList(android.content.Context,java.util.List):264:265 -> g - 27:27:java.util.List getDailyList(android.content.Context,java.util.List):263:263 -> g - 28:28:java.util.List getDailyList(android.content.Context,java.util.List):153:153 -> g - 1:2:java.util.Date getDate(java.lang.String):474:475 -> h - 1:6:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):297:302 -> i - 7:8:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):304:305 -> i - 9:9:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):307:307 -> i - 10:11:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):318:319 -> i - 12:12:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):321:321 -> i - 13:14:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):324:325 -> i - 15:15:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):327:327 -> i - 16:16:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):329:329 -> i - 17:17:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):321:321 -> i - 1:1:float getHoursOfDay(java.util.Date,java.util.Date):480:480 -> j - 1:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):388:389 -> k - 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):392:392 -> k - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):460:460 -> k - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):457:457 -> k - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):451:451 -> k - 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):446:446 -> k - 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):440:440 -> k - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):430:430 -> k - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):425:425 -> k - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):421:421 -> k - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):417:417 -> k - 13:13:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):399:399 -> k - 14:14:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):395:395 -> k - 1:1:float getWindDegree(java.lang.String):488:488 -> l + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):50:50 -> a + 2:2:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):54:54 -> a + 3:3:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):56:56 -> a + 4:5:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):59:60 -> a + 6:6:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):62:62 -> a + 7:7:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):64:64 -> a + 8:9:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):66:67 -> a + 10:10:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):71:71 -> a + 11:11:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):75:75 -> a + 12:13:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):77:78 -> a + 14:15:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):101:102 -> a + 16:17:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):107:108 -> a + 18:25:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):111:118 -> a + 26:27:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):120:121 -> a + 28:28:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):127:127 -> a + 29:29:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):130:130 -> a + 30:31:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):133:134 -> a + 32:32:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):131:131 -> a + 33:33:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):138:138 -> a + 34:34:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):140:140 -> a + 35:36:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):142:143 -> a + 1:1:int getAlertColor(java.lang.String):560:560 -> b + 2:2:int getAlertColor(java.lang.String):563:563 -> b + 3:3:int getAlertColor(java.lang.String):570:570 -> b + 4:4:int getAlertColor(java.lang.String):566:566 -> b + 5:5:int getAlertColor(java.lang.String):582:582 -> b + 6:6:int getAlertColor(java.lang.String):578:578 -> b + 1:3:java.util.List getAlertList(java.util.List):363:365 -> c + 4:4:java.util.List getAlertList(java.util.List):367:367 -> c + 5:5:java.util.List getAlertList(java.util.List):369:369 -> c + 6:6:java.util.List getAlertList(java.util.List):372:372 -> c + 7:7:java.util.List getAlertList(java.util.List):374:374 -> c + 8:8:java.util.List getAlertList(java.util.List):376:376 -> c + 9:10:java.util.List getAlertList(java.util.List):380:381 -> c + 11:11:java.util.List getAlertList(java.util.List):372:372 -> c + 12:13:java.util.List getAlertList(java.util.List):386:387 -> c + 1:1:int getAlertPriority(java.lang.String):530:530 -> d + 2:2:int getAlertPriority(java.lang.String):533:533 -> d + 1:1:java.lang.Float getCO(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):470:470 -> e + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):278:278 -> f + 2:4:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):280:282 -> f + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getDailyAirQuality(android.content.Context,java.lang.String):294:294 -> f + 1:4:java.util.List getDailyList(android.content.Context,java.util.List):150:153 -> g + 5:5:java.util.List getDailyList(android.content.Context,java.util.List):155:155 -> g + 6:6:java.util.List getDailyList(android.content.Context,java.util.List):157:157 -> g + 7:7:java.util.List getDailyList(android.content.Context,java.util.List):160:160 -> g + 8:10:java.util.List getDailyList(android.content.Context,java.util.List):162:164 -> g + 11:11:java.util.List getDailyList(android.content.Context,java.util.List):166:166 -> g + 12:13:java.util.List getDailyList(android.content.Context,java.util.List):196:197 -> g + 14:14:java.util.List getDailyList(android.content.Context,java.util.List):199:199 -> g + 15:17:java.util.List getDailyList(android.content.Context,java.util.List):204:206 -> g + 18:18:java.util.List getDailyList(android.content.Context,java.util.List):208:208 -> g + 19:20:java.util.List getDailyList(android.content.Context,java.util.List):238:239 -> g + 21:21:java.util.List getDailyList(android.content.Context,java.util.List):241:241 -> g + 22:23:java.util.List getDailyList(android.content.Context,java.util.List):246:247 -> g + 24:24:java.util.List getDailyList(android.content.Context,java.util.List):251:251 -> g + 25:26:java.util.List getDailyList(android.content.Context,java.util.List):268:269 -> g + 27:27:java.util.List getDailyList(android.content.Context,java.util.List):267:267 -> g + 28:28:java.util.List getDailyList(android.content.Context,java.util.List):157:157 -> g + 1:2:java.util.Date getDate(java.lang.String):478:479 -> h + 1:6:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):301:306 -> i + 7:8:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):308:309 -> i + 9:9:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):311:311 -> i + 10:11:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):322:323 -> i + 12:12:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):325:325 -> i + 13:14:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):328:329 -> i + 15:15:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):331:331 -> i + 16:16:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):333:333 -> i + 17:17:java.util.List getHourlyList(long,java.util.Date,java.util.Date,java.util.List):325:325 -> i + 1:1:float getHoursOfDay(java.util.Date,java.util.Date):484:484 -> j + 1:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):392:393 -> k + 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):396:396 -> k + 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):464:464 -> k + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):461:461 -> k + 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):455:455 -> k + 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):450:450 -> k + 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):444:444 -> k + 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):434:434 -> k + 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):429:429 -> k + 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):425:425 -> k + 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):421:421 -> k + 13:13:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):403:403 -> k + 14:14:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):399:399 -> k + 1:1:float getWindDegree(java.lang.String):492:492 -> l wangdaye.com.geometricweather.weather.converters.CaiyunResultConverter -> wangdaye.com.geometricweather.q.f.c: - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):47:47 -> a - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):49:50 -> a - 4:6:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):52:54 -> a - 7:8:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):57:58 -> a - 9:10:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):60:61 -> a - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):83:83 -> a - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):85:85 -> a - 13:13:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):88:88 -> a - 14:14:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):91:91 -> a - 15:15:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):89:89 -> a - 16:17:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):95:96 -> a - 18:20:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):99:101 -> a - 21:22:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):103:104 -> a - 23:24:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):106:107 -> a - 25:26:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):115:116 -> a - 27:28:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):119:120 -> a - 29:29:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):117:117 -> a - 30:33:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):124:127 -> a - 34:34:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):123:123 -> a - 35:35:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):130:130 -> a - 36:36:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):133:133 -> a - 1:3:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):139:139 -> b - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):144:144 -> b - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):151:151 -> b - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):158:158 -> b - 7:7:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):165:165 -> b - 8:8:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):172:172 -> b - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):179:179 -> b - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):186:186 -> b - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):191:191 -> b - 1:1:int getAlertColor(java.lang.String):804:804 -> c - 2:2:int getAlertColor(java.lang.String):807:807 -> c - 3:3:int getAlertColor(java.lang.String):814:814 -> c - 4:4:int getAlertColor(java.lang.String):810:810 -> c - 5:5:int getAlertColor(java.lang.String):826:826 -> c - 6:6:int getAlertColor(java.lang.String):822:822 -> c - 1:3:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):509:511 -> d - 4:4:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):513:513 -> d - 5:5:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):515:515 -> d - 6:7:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):519:520 -> d - 8:8:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):511:511 -> d - 9:10:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):524:525 -> d - 1:1:int getAlertPriority(java.lang.String):774:774 -> e - 2:2:int getAlertPriority(java.lang.String):777:777 -> e - 1:9:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):210:218 -> f - 10:10:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):220:220 -> f - 11:12:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):222:223 -> f - 13:15:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):225:227 -> f - 16:16:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):229:229 -> f - 17:17:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):245:245 -> f - 18:18:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):259:259 -> f - 19:19:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):261:261 -> f - 20:20:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):264:264 -> f - 21:21:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):267:267 -> f - 22:22:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):265:265 -> f - 23:25:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):273:275 -> f - 26:26:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):277:277 -> f - 27:27:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):293:293 -> f - 28:28:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):307:307 -> f - 29:29:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):309:309 -> f - 30:30:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):312:312 -> f - 31:31:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):315:315 -> f - 32:32:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):313:313 -> f - 33:34:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):321:322 -> f - 35:36:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):327:328 -> f - 37:38:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):356:357 -> f - 39:39:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):220:220 -> f - 1:8:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):383:390 -> g - 9:10:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):392:393 -> g - 11:14:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):396:399 -> g - 15:15:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):401:401 -> g - 16:16:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):393:393 -> g - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):486:486 -> h - 2:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):489:489 -> h - 3:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):492:493 -> h - 1:1:java.lang.String getMinuteWeatherText(double,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):469:469 -> i - 2:2:java.lang.String getMinuteWeatherText(double,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):475:475 -> i - 1:1:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):433:433 -> j - 2:7:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):435:440 -> j - 8:8:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):442:442 -> j - 9:11:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):444:446 -> j - 12:12:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):448:448 -> j - 13:13:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):447:447 -> j - 14:14:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):453:453 -> j - 15:15:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):452:452 -> j - 16:16:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):442:442 -> j - 1:2:java.lang.Float getPrecipitationProbability(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean,int):370:371 -> k - 1:1:java.lang.String getUVDescription(java.lang.String):754:754 -> l - 2:2:java.lang.String getUVDescription(java.lang.String):767:767 -> l - 1:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):653:654 -> m - 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):657:657 -> m - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):725:725 -> m - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):722:722 -> m - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):716:716 -> m - 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):711:711 -> m - 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):705:705 -> m - 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):695:695 -> m - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):690:690 -> m - 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):686:686 -> m - 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):682:682 -> m - 13:13:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):664:664 -> m - 14:14:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):660:660 -> m - 1:1:java.lang.String getWeatherText(java.lang.String):530:530 -> n - 2:2:java.lang.String getWeatherText(java.lang.String):534:534 -> n + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):49:49 -> a + 2:3:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):51:52 -> a + 4:6:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):54:56 -> a + 7:8:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):59:60 -> a + 9:10:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):62:63 -> a + 11:11:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):85:85 -> a + 12:12:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):87:87 -> a + 13:13:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):90:90 -> a + 14:14:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):93:93 -> a + 15:15:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):91:91 -> a + 16:17:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):97:98 -> a + 18:20:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):101:103 -> a + 21:22:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):105:106 -> a + 23:24:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):108:109 -> a + 25:26:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):117:118 -> a + 27:28:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):121:122 -> a + 29:29:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):119:119 -> a + 30:33:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):126:129 -> a + 34:34:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):125:125 -> a + 35:35:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):132:132 -> a + 36:36:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):134:134 -> a + 37:38:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):136:137 -> a + 1:3:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):144:144 -> b + 4:4:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):152:152 -> b + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):159:159 -> b + 6:6:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):166:166 -> b + 7:7:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):173:173 -> b + 8:8:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):180:180 -> b + 9:9:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):187:187 -> b + 10:10:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):194:194 -> b + 11:11:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(android.content.Context,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):199:199 -> b + 1:1:int getAlertColor(java.lang.String):816:816 -> c + 2:2:int getAlertColor(java.lang.String):819:819 -> c + 3:3:int getAlertColor(java.lang.String):826:826 -> c + 4:4:int getAlertColor(java.lang.String):822:822 -> c + 5:5:int getAlertColor(java.lang.String):838:838 -> c + 6:6:int getAlertColor(java.lang.String):834:834 -> c + 1:3:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):521:523 -> d + 4:4:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):525:525 -> d + 5:5:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):527:527 -> d + 6:7:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):531:532 -> d + 8:8:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):523:523 -> d + 9:10:java.util.List getAlertList(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):536:537 -> d + 1:1:int getAlertPriority(java.lang.String):786:786 -> e + 2:2:int getAlertPriority(java.lang.String):789:789 -> e + 1:9:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):218:226 -> f + 10:10:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):228:228 -> f + 11:12:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):230:231 -> f + 13:15:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):233:235 -> f + 16:16:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):237:237 -> f + 17:17:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):253:253 -> f + 18:18:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):267:267 -> f + 19:19:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):269:269 -> f + 20:20:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):272:272 -> f + 21:21:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):275:275 -> f + 22:22:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):273:273 -> f + 23:25:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):281:283 -> f + 26:26:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):285:285 -> f + 27:27:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):301:301 -> f + 28:28:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):315:315 -> f + 29:29:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):317:317 -> f + 30:30:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):320:320 -> f + 31:31:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):323:323 -> f + 32:32:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):321:321 -> f + 33:34:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):329:330 -> f + 35:36:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):335:336 -> f + 37:38:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):338:339 -> f + 39:40:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):368:369 -> f + 41:41:java.util.List getDailyList(android.content.Context,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean):228:228 -> f + 1:8:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):395:402 -> g + 9:10:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):404:405 -> g + 11:14:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):408:411 -> g + 15:15:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):413:413 -> g + 16:16:java.util.List getHourlyList(java.util.Date,java.util.Date,java.util.Date,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean):405:405 -> g + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):498:498 -> h + 2:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):501:501 -> h + 3:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getMinuteWeatherCode(double,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):504:505 -> h + 1:1:java.lang.String getMinuteWeatherText(double,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):481:481 -> i + 2:2:java.lang.String getMinuteWeatherText(double,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):487:487 -> i + 1:1:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):445:445 -> j + 2:7:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):447:452 -> j + 8:8:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):454:454 -> j + 9:11:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):456:458 -> j + 12:12:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):460:460 -> j + 13:13:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):459:459 -> j + 14:14:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):465:465 -> j + 15:15:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):464:464 -> j + 16:16:java.util.List getMinutelyList(java.util.Date,java.util.Date,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):454:454 -> j + 1:2:java.lang.Float getPrecipitationProbability(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean,int):382:383 -> k + 1:1:java.lang.String getUVDescription(java.lang.String):766:766 -> l + 2:2:java.lang.String getUVDescription(java.lang.String):779:779 -> l + 1:2:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):665:666 -> m + 3:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):669:669 -> m + 4:4:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):737:737 -> m + 5:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):734:734 -> m + 6:6:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):728:728 -> m + 7:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):723:723 -> m + 8:8:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):717:717 -> m + 9:9:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):707:707 -> m + 10:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):702:702 -> m + 11:11:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):698:698 -> m + 12:12:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):694:694 -> m + 13:13:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):676:676 -> m + 14:14:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):672:672 -> m + 1:1:java.lang.String getWeatherText(java.lang.String):542:542 -> n + 2:2:java.lang.String getWeatherText(java.lang.String):546:546 -> n java.lang.String getWindDirection(float) -> o - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):197:197 -> p - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):200:201 -> p - 1:1:boolean isPrecipitation(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):501:501 -> q + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):205:205 -> p + 2:3:wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult):208:209 -> p + 1:1:boolean isPrecipitation(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode):513:513 -> q wangdaye.com.geometricweather.weather.converters.CommonConverter -> wangdaye.com.geometricweather.q.f.d: 1:1:java.lang.String getAqiQuality(android.content.Context,java.lang.Integer):49:49 -> a 2:11:java.lang.String getAqiQuality(android.content.Context,java.lang.Integer):51:60 -> a @@ -112718,90 +112724,92 @@ wangdaye.com.geometricweather.weather.converters.CommonConverter -> wangdaye.com 4:5:boolean isDaylight(java.util.Date,java.util.Date,java.util.Date):117:118 -> d 6:7:boolean isDaylight(java.util.Date,java.util.Date,java.util.Date):120:121 -> d wangdaye.com.geometricweather.weather.converters.MfResultConverter -> wangdaye.com.geometricweather.q.f.e: - 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):53:56 -> a - 5:7:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):58:60 -> a - 8:10:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):62:64 -> a - 11:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):69:75 -> a - 18:18:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):78:78 -> a - 19:21:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):80:82 -> a - 22:28:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):91:97 -> a - 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):105:108 -> b - 5:5:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):112:112 -> b - 6:8:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):114:116 -> b - 9:15:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):121:127 -> b - 16:16:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):130:130 -> b - 17:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):134:134 -> b - 18:24:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):143:149 -> b - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):163:163 -> c - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):165:166 -> c - 4:4:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):170:170 -> c - 5:5:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):174:174 -> c - 6:6:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):176:176 -> c - 7:9:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):200:202 -> c - 10:10:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):205:205 -> c - 11:12:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):218:219 -> c - 13:16:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):221:224 -> c - 17:19:wangdaye.com.geometricweather.common.basic.models.weather.Weather convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):227:229 -> c - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):238:238 -> d - 2:8:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):245:251 -> d - 9:14:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):253:258 -> d - 15:20:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):260:265 -> d - 21:26:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):267:272 -> d - 27:27:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):275:275 -> d - 1:1:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):286:286 -> e - 2:3:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):288:289 -> e - 4:4:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):296:296 -> e - 5:5:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):298:298 -> e - 6:6:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):338:338 -> e - 7:7:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):340:340 -> e - 8:8:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):377:377 -> e - 9:10:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):381:382 -> e - 11:12:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):384:385 -> e - 13:13:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):289:289 -> e - 1:3:java.util.List getHourlyList(java.util.List):393:395 -> f - 4:4:java.util.List getHourlyList(java.util.List):401:401 -> f - 5:5:java.util.List getHourlyList(java.util.List):403:403 -> f - 6:6:java.util.List getHourlyList(java.util.List):405:405 -> f - 7:7:java.util.List getHourlyList(java.util.List):409:409 -> f - 8:8:java.util.List getHourlyList(java.util.List):395:395 -> f - 1:1:float getHoursOfDay(java.util.Date,java.util.Date):580:580 -> g - 1:1:java.util.List getMinutelyList(long,long,wangdaye.com.geometricweather.weather.json.mf.MfRainResult):435:435 -> h - 1:1:int getWarningColor(int):521:521 -> i - 2:2:int getWarningColor(int):523:523 -> i - 3:3:int getWarningColor(int):525:525 -> i - 4:4:int getWarningColor(int):527:527 -> i + 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):56:59 -> a + 5:7:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):61:63 -> a + 8:10:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):65:67 -> a + 11:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):72:78 -> a + 18:18:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):81:81 -> a + 19:21:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):83:85 -> a + 22:28:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):94:100 -> a + 1:4:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):109:112 -> b + 5:5:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):116:116 -> b + 6:8:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):118:120 -> b + 9:15:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):125:131 -> b + 16:16:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):134:134 -> b + 17:17:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):138:138 -> b + 18:24:wangdaye.com.geometricweather.common.basic.models.Location convert(wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfLocationResult):147:153 -> b + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):168:168 -> c + 2:3:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):170:171 -> c + 4:4:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):175:175 -> c + 5:5:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):179:179 -> c + 6:6:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):181:181 -> c + 7:9:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):205:207 -> c + 10:10:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):210:210 -> c + 11:12:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):223:224 -> c + 13:16:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):226:229 -> c + 17:17:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):231:231 -> c + 18:20:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):233:235 -> c + 21:21:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper convert(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):237:237 -> c + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):244:244 -> d + 2:8:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):251:257 -> d + 9:14:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):259:264 -> d + 15:20:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):266:271 -> d + 21:26:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):273:278 -> d + 27:27:wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality(java.util.Date,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):281:281 -> d + 1:1:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):292:292 -> e + 2:3:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):294:295 -> e + 4:4:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):302:302 -> e + 5:5:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):304:304 -> e + 6:6:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):344:344 -> e + 7:7:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):346:346 -> e + 8:8:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):383:383 -> e + 9:10:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):387:388 -> e + 11:12:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):390:391 -> e + 13:13:java.util.List getDailyList(android.content.Context,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):295:295 -> e + 1:3:java.util.List getHourlyList(java.util.List):399:401 -> f + 4:4:java.util.List getHourlyList(java.util.List):407:407 -> f + 5:5:java.util.List getHourlyList(java.util.List):409:409 -> f + 6:6:java.util.List getHourlyList(java.util.List):411:411 -> f + 7:7:java.util.List getHourlyList(java.util.List):415:415 -> f + 8:8:java.util.List getHourlyList(java.util.List):401:401 -> f + 1:1:float getHoursOfDay(java.util.Date,java.util.Date):586:586 -> g + 1:1:java.util.List getMinutelyList(long,long,wangdaye.com.geometricweather.weather.json.mf.MfRainResult):441:441 -> h + 1:1:int getWarningColor(int):527:527 -> i + 2:2:int getWarningColor(int):529:529 -> i + 3:3:int getWarningColor(int):531:531 -> i + 4:4:int getWarningColor(int):533:533 -> i java.lang.String getWarningText(int) -> j java.lang.String getWarningType(int) -> k - 1:5:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):456:460 -> l - 6:6:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):465:465 -> l - 7:7:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):467:467 -> l - 8:8:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):469:469 -> l - 9:9:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):460:460 -> l - 10:10:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):474:474 -> l - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):533:533 -> m - 2:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):537:538 -> m - 4:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):540:541 -> m - 6:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):543:544 -> m - 8:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):546:548 -> m - 11:17:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):550:556 -> m - 18:20:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):558:560 -> m - 21:21:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):562:562 -> m - 22:22:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):564:564 -> m - 23:23:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):566:566 -> m - 24:24:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):568:568 -> m - 25:26:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):570:571 -> m - 27:27:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):574:574 -> m - 28:28:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):572:572 -> m - 29:29:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):569:569 -> m - 30:30:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):567:567 -> m - 31:31:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):565:565 -> m - 32:32:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):563:563 -> m - 33:33:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):561:561 -> m - 34:34:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):557:557 -> m - 35:35:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):549:549 -> m - 36:36:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):545:545 -> m - 37:37:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):542:542 -> m - 38:38:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):539:539 -> m + 1:5:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):462:466 -> l + 6:6:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):471:471 -> l + 7:7:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):473:473 -> l + 8:8:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):475:475 -> l + 9:9:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):466:466 -> l + 10:10:java.util.List getWarningsList(wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult):480:480 -> l + 1:1:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):539:539 -> m + 2:3:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):543:544 -> m + 4:5:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):546:547 -> m + 6:7:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):549:550 -> m + 8:10:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):552:554 -> m + 11:17:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):556:562 -> m + 18:20:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):564:566 -> m + 21:21:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):568:568 -> m + 22:22:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):570:570 -> m + 23:23:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):572:572 -> m + 24:24:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):574:574 -> m + 25:26:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):576:577 -> m + 27:27:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):580:580 -> m + 28:28:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):578:578 -> m + 29:29:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):575:575 -> m + 30:30:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):573:573 -> m + 31:31:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):571:571 -> m + 32:32:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):569:569 -> m + 33:33:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):567:567 -> m + 34:34:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):563:563 -> m + 35:35:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):555:555 -> m + 36:36:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):551:551 -> m + 37:37:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):548:548 -> m + 38:38:wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode(java.lang.String):545:545 -> m int toInt(double) -> n wangdaye.com.geometricweather.weather.di.ApiModule -> wangdaye.com.geometricweather.q.g.a: 1:1:void ():21:21 -> @@ -113772,7 +113780,7 @@ wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps - 1:1:void ():84:84 -> wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem -> wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: 1:1:void ():90:90 -> -wangdaye.com.geometricweather.weather.services.-$$Lambda$AccuWeatherService$cLkkMO61WGnVYpqncVN04FRg8V0 -> wangdaye.com.geometricweather.q.h.a: +wangdaye.com.geometricweather.weather.services.-$$Lambda$AccuWeatherService$hbwHChbrgkGgbN77MwoFgM-IZRY -> wangdaye.com.geometricweather.q.h.a: android.content.Context f$0 -> a wangdaye.com.geometricweather.common.basic.models.Location f$1 -> b java.lang.Object apply(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -> a @@ -113795,11 +113803,11 @@ wangdaye.com.geometricweather.weather.services.-$$Lambda$CNWeatherService$ze4Uyy wangdaye.com.geometricweather.weather.services.CNWeatherService f$0 -> a java.lang.String f$3 -> d void subscribe(io.reactivex.ObservableEmitter) -> a -wangdaye.com.geometricweather.weather.services.-$$Lambda$CaiYunWeatherService$dB5VocieteWWS5mEAUgJULrpUiI -> wangdaye.com.geometricweather.q.h.f: +wangdaye.com.geometricweather.weather.services.-$$Lambda$CaiYunWeatherService$ruGrHasJPsr9A3XYAYoXyiba9eo -> wangdaye.com.geometricweather.q.h.f: android.content.Context f$0 -> a wangdaye.com.geometricweather.common.basic.models.Location f$1 -> b java.lang.Object apply(java.lang.Object,java.lang.Object) -> a -wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$EFmSX82XGLyKAAfJ91z98fHnCzc -> wangdaye.com.geometricweather.q.h.g: +wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$30rS34ntymBSqayLEKMV5ea0z5w -> wangdaye.com.geometricweather.q.h.g: android.content.Context f$0 -> a wangdaye.com.geometricweather.common.basic.models.Location f$1 -> b java.lang.Object apply(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -> a @@ -113809,177 +113817,179 @@ wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$FhYpuN wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$IrTBydFX34ABG8enbJ5SHQhKB7U -> wangdaye.com.geometricweather.q.h.i: wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$IrTBydFX34ABG8enbJ5SHQhKB7U INSTANCE -> a void subscribe(io.reactivex.ObservableEmitter) -> a -wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$svFGHLJb3C3HZtwfE08FZrLJAHg -> wangdaye.com.geometricweather.q.h.j: +wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$ZFI9mhUNhuVzmceSANmkzEGtuVM -> wangdaye.com.geometricweather.q.h.j: + wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$ZFI9mhUNhuVzmceSANmkzEGtuVM INSTANCE -> a + void subscribe(io.reactivex.ObservableEmitter) -> a +wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$svFGHLJb3C3HZtwfE08FZrLJAHg -> wangdaye.com.geometricweather.q.h.k: wangdaye.com.geometricweather.weather.services.-$$Lambda$MfWeatherService$svFGHLJb3C3HZtwfE08FZrLJAHg INSTANCE -> a void subscribe(io.reactivex.ObservableEmitter) -> a -wangdaye.com.geometricweather.weather.services.AccuWeatherService -> wangdaye.com.geometricweather.q.h.k: +wangdaye.com.geometricweather.weather.services.AccuWeatherService -> wangdaye.com.geometricweather.q.h.l: wangdaye.com.geometricweather.weather.apis.AccuWeatherApi mApi -> a io.reactivex.disposables.CompositeDisposable mCompositeDisposable -> b - 1:3:void (wangdaye.com.geometricweather.weather.apis.AccuWeatherApi,io.reactivex.disposables.CompositeDisposable):90:92 -> - 1:1:void cancel():279:279 -> a - 1:1:java.util.List requestLocation(android.content.Context,java.lang.String):163:163 -> d - 2:2:java.util.List requestLocation(android.content.Context,java.lang.String):166:166 -> d - 3:3:java.util.List requestLocation(android.content.Context,java.lang.String):171:171 -> d - 4:4:java.util.List requestLocation(android.content.Context,java.lang.String):173:173 -> d - 5:5:java.util.List requestLocation(android.content.Context,java.lang.String):176:176 -> d - 6:9:java.util.List requestLocation(android.content.Context,java.lang.String):178:181 -> d - 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):190:190 -> e - 2:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):194:197 -> e - 6:14:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):199:207 -> e - 15:15:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):206:206 -> e - 16:20:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):213:217 -> e - 21:22:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):219:220 -> e - 23:23:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):222:222 -> e - 24:24:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):225:225 -> e - 25:25:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):222:222 -> e - 26:27:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):227:228 -> e - 1:1:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):97:97 -> f - 2:4:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):99:99 -> f - 5:7:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):102:102 -> f - 8:10:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):105:105 -> f - 11:11:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):108:108 -> f - 12:12:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):112:112 -> f - 13:13:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):108:108 -> f - 14:14:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):114:114 -> f - 15:15:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):113:113 -> f - 16:18:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):117:117 -> f - 19:21:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):120:120 -> f - 22:22:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):124:124 -> f - 23:23:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):123:123 -> f - 24:24:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):127:127 -> f - 25:26:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):141:142 -> f - 1:1:void lambda$requestWeather$0(io.reactivex.ObservableEmitter):114:114 -> g - 1:1:void lambda$requestWeather$1(io.reactivex.ObservableEmitter):124:124 -> h - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather lambda$requestWeather$2(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult):134:134 -> i - 2:2:wangdaye.com.geometricweather.common.basic.models.weather.Weather lambda$requestWeather$2(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult):131:131 -> i - 1:2:boolean queryEquals(java.lang.String,java.lang.String):283:284 -> j - 1:1:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):290:290 -> k - 2:3:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):293:294 -> k -wangdaye.com.geometricweather.weather.services.AccuWeatherService$1 -> wangdaye.com.geometricweather.q.h.k$a: + 1:3:void (wangdaye.com.geometricweather.weather.apis.AccuWeatherApi,io.reactivex.disposables.CompositeDisposable):89:91 -> + 1:1:void cancel():278:278 -> a + 1:1:java.util.List requestLocation(android.content.Context,java.lang.String):162:162 -> d + 2:2:java.util.List requestLocation(android.content.Context,java.lang.String):165:165 -> d + 3:3:java.util.List requestLocation(android.content.Context,java.lang.String):170:170 -> d + 4:4:java.util.List requestLocation(android.content.Context,java.lang.String):172:172 -> d + 5:5:java.util.List requestLocation(android.content.Context,java.lang.String):175:175 -> d + 6:9:java.util.List requestLocation(android.content.Context,java.lang.String):177:180 -> d + 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):189:189 -> e + 2:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):193:196 -> e + 6:14:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):198:206 -> e + 15:15:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):205:205 -> e + 16:20:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):212:216 -> e + 21:22:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):218:219 -> e + 23:23:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):221:221 -> e + 24:24:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):224:224 -> e + 25:25:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):221:221 -> e + 26:27:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):226:227 -> e + 1:1:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):96:96 -> f + 2:4:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):98:98 -> f + 5:7:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):101:101 -> f + 8:10:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):104:104 -> f + 11:11:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):107:107 -> f + 12:12:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):111:111 -> f + 13:13:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):107:107 -> f + 14:14:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):113:113 -> f + 15:15:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):112:112 -> f + 16:18:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):116:116 -> f + 19:21:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):119:119 -> f + 22:22:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):123:123 -> f + 23:23:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):122:122 -> f + 24:24:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):126:126 -> f + 25:26:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):140:141 -> f + 1:1:void lambda$requestWeather$0(io.reactivex.ObservableEmitter):113:113 -> g + 1:1:void lambda$requestWeather$1(io.reactivex.ObservableEmitter):123:123 -> h + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper lambda$requestWeather$2(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult):133:133 -> i + 2:2:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper lambda$requestWeather$2(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult,java.util.List,wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult):130:130 -> i + 1:2:boolean queryEquals(java.lang.String,java.lang.String):282:283 -> j + 1:1:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):289:289 -> k + 2:3:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):292:293 -> k +wangdaye.com.geometricweather.weather.services.AccuWeatherService$1 -> wangdaye.com.geometricweather.q.h.l$a: wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback val$callback -> c wangdaye.com.geometricweather.common.basic.models.Location val$location -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):142:142 -> - 1:2:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):146:147 -> a - 3:3:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):149:149 -> a - 1:1:void onFailed():155:155 -> onFailed - 1:1:void onSucceed(java.lang.Object):142:142 -> onSucceed -wangdaye.com.geometricweather.weather.services.AccuWeatherService$2 -> wangdaye.com.geometricweather.q.h.k$b: + 1:1:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):141:141 -> + 1:3:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):144:146 -> a + 4:4:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):148:148 -> a + 1:1:void onFailed():154:154 -> onFailed + 1:1:void onSucceed(java.lang.Object):141:141 -> onSucceed +wangdaye.com.geometricweather.weather.services.AccuWeatherService$2 -> wangdaye.com.geometricweather.q.h.l$b: wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback val$finalCallback -> c wangdaye.com.geometricweather.common.basic.models.Location val$location -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback):228:228 -> - 1:4:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):232:235 -> a - 5:5:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):234:234 -> a - 6:6:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):237:237 -> a - 1:3:void onFailed():243:243 -> onFailed - 1:1:void onSucceed(java.lang.Object):228:228 -> onSucceed -wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback -> wangdaye.com.geometricweather.q.h.k$c: + 1:1:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback):227:227 -> + 1:4:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):231:234 -> a + 5:5:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):233:233 -> a + 6:6:void onSucceed(wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult):236:236 -> a + 1:3:void onFailed():242:242 -> onFailed + 1:1:void onSucceed(java.lang.Object):227:227 -> onSucceed +wangdaye.com.geometricweather.weather.services.AccuWeatherService$CacheLocationRequestCallback -> wangdaye.com.geometricweather.q.h.l$c: android.content.Context mContext -> a wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback mCallback -> b - 1:3:void (android.content.Context,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):54:56 -> - 1:5:void requestLocationSuccess(java.lang.String,java.util.List):61:65 -> a - 6:6:void requestLocationSuccess(java.lang.String,java.util.List):67:67 -> a - 1:8:void requestLocationFailed(java.lang.String):72:79 -> b -wangdaye.com.geometricweather.weather.services.AccuWeatherService$EmptyAqiResult -> wangdaye.com.geometricweather.q.h.k$d: - 1:1:void ():86:86 -> - 2:2:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService$1):86:86 -> -wangdaye.com.geometricweather.weather.services.AccuWeatherService$EmptyMinuteResult -> wangdaye.com.geometricweather.q.h.k$e: - 1:1:void ():83:83 -> - 2:2:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService$1):83:83 -> -wangdaye.com.geometricweather.weather.services.CNWeatherService -> wangdaye.com.geometricweather.q.h.l: + 1:3:void (android.content.Context,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):53:55 -> + 1:5:void requestLocationSuccess(java.lang.String,java.util.List):60:64 -> a + 6:6:void requestLocationSuccess(java.lang.String,java.util.List):66:66 -> a + 1:8:void requestLocationFailed(java.lang.String):71:78 -> b +wangdaye.com.geometricweather.weather.services.AccuWeatherService$EmptyAqiResult -> wangdaye.com.geometricweather.q.h.l$d: + 1:1:void ():85:85 -> + 2:2:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService$1):85:85 -> +wangdaye.com.geometricweather.weather.services.AccuWeatherService$EmptyMinuteResult -> wangdaye.com.geometricweather.q.h.l$e: + 1:1:void ():82:82 -> + 2:2:void (wangdaye.com.geometricweather.weather.services.AccuWeatherService$1):82:82 -> +wangdaye.com.geometricweather.weather.services.CNWeatherService -> wangdaye.com.geometricweather.q.h.m: io.reactivex.disposables.CompositeDisposable mCompositeDisposable -> b wangdaye.com.geometricweather.weather.apis.CNWeatherApi mApi -> a - 1:3:void (wangdaye.com.geometricweather.weather.apis.CNWeatherApi,io.reactivex.disposables.CompositeDisposable):37:39 -> - 1:1:void cancel():180:180 -> a - 1:2:java.util.List requestLocation(android.content.Context,java.lang.String):69:70 -> d - 3:3:java.util.List requestLocation(android.content.Context,java.lang.String):73:73 -> d - 4:7:java.util.List requestLocation(android.content.Context,java.lang.String):75:78 -> d - 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):86:86 -> e - 2:4:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):89:91 -> e - 5:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):87:87 -> e - 6:7:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):97:98 -> e - 8:8:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):95:95 -> e - 1:3:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):45:47 -> f - 1:1:wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource getSource():184:184 -> g - 1:1:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):116:116 -> h - 2:3:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):118:119 -> h - 4:4:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):122:122 -> h - 5:5:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):125:125 -> h + 1:3:void (wangdaye.com.geometricweather.weather.apis.CNWeatherApi,io.reactivex.disposables.CompositeDisposable):36:38 -> + 1:1:void cancel():179:179 -> a + 1:2:java.util.List requestLocation(android.content.Context,java.lang.String):68:69 -> d + 3:3:java.util.List requestLocation(android.content.Context,java.lang.String):72:72 -> d + 4:7:java.util.List requestLocation(android.content.Context,java.lang.String):74:77 -> d + 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):85:85 -> e + 2:4:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):88:90 -> e + 5:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):86:86 -> e + 6:7:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):96:97 -> e + 8:8:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):94:94 -> e + 1:3:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):44:46 -> f + 1:1:wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource getSource():183:183 -> g + 1:1:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):115:115 -> h + 2:3:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):117:118 -> h + 4:4:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):121:121 -> h + 5:5:void lambda$searchLocationsInThread$0(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter):124:124 -> h void lambda$searchLocationsInThread$0$CNWeatherService(android.content.Context,java.lang.String,java.lang.String,java.lang.String,io.reactivex.ObservableEmitter) -> i - 1:1:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):151:151 -> j - 2:3:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):153:154 -> j - 4:4:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):156:156 -> j - 5:5:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):159:159 -> j + 1:1:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):150:150 -> j + 2:3:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):152:153 -> j + 4:4:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):155:155 -> j + 5:5:void lambda$searchLocationsInThread$1(android.content.Context,float,float,io.reactivex.ObservableEmitter):158:158 -> j void lambda$searchLocationsInThread$1$CNWeatherService(android.content.Context,float,float,io.reactivex.ObservableEmitter) -> k - 1:1:void searchLocationsInThread(android.content.Context,float,float,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):150:150 -> l - 2:3:void searchLocationsInThread(android.content.Context,float,float,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):160:161 -> l - 1:3:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):111:113 -> m - 4:4:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):115:115 -> m - 5:6:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):126:127 -> m -wangdaye.com.geometricweather.weather.services.CNWeatherService$1 -> wangdaye.com.geometricweather.q.h.l$a: + 1:1:void searchLocationsInThread(android.content.Context,float,float,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):149:149 -> l + 2:3:void searchLocationsInThread(android.content.Context,float,float,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):159:160 -> l + 1:3:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):110:112 -> m + 4:4:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):114:114 -> m + 5:6:void searchLocationsInThread(android.content.Context,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):125:126 -> m +wangdaye.com.geometricweather.weather.services.CNWeatherService$1 -> wangdaye.com.geometricweather.q.h.m$a: wangdaye.com.geometricweather.common.basic.models.Location val$location -> c android.content.Context val$context -> b wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback val$callback -> d - 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):47:47 -> - 1:1:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):50:50 -> a - 2:3:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):52:53 -> a - 4:4:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):55:55 -> a - 1:1:void onFailed():61:61 -> onFailed - 1:1:void onSucceed(java.lang.Object):47:47 -> onSucceed -wangdaye.com.geometricweather.weather.services.CNWeatherService$2 -> wangdaye.com.geometricweather.q.h.l$b: + 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):46:46 -> + 1:4:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):49:52 -> a + 5:5:void onSucceed(wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult):54:54 -> a + 1:1:void onFailed():60:60 -> onFailed + 1:1:void onSucceed(java.lang.Object):46:46 -> onSucceed +wangdaye.com.geometricweather.weather.services.CNWeatherService$2 -> wangdaye.com.geometricweather.q.h.m$b: wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback val$callback -> b java.lang.String val$finalDistrict -> c - 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback,java.lang.String):127:127 -> - 1:2:void onSucceed(java.util.List):130:131 -> a - 3:3:void onSucceed(java.util.List):133:133 -> a - 1:1:void onFailed():139:139 -> onFailed - 1:1:void onSucceed(java.lang.Object):127:127 -> onSucceed -wangdaye.com.geometricweather.weather.services.CNWeatherService$3 -> wangdaye.com.geometricweather.q.h.l$c: + 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback,java.lang.String):126:126 -> + 1:2:void onSucceed(java.util.List):129:130 -> a + 3:3:void onSucceed(java.util.List):132:132 -> a + 1:1:void onFailed():138:138 -> onFailed + 1:1:void onSucceed(java.lang.Object):126:126 -> onSucceed +wangdaye.com.geometricweather.weather.services.CNWeatherService$3 -> wangdaye.com.geometricweather.q.h.m$c: wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback val$callback -> b float val$longitude -> d float val$latitude -> c - 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback,float,float):161:161 -> - 1:2:void onSucceed(java.util.List):164:165 -> a - 3:3:void onSucceed(java.util.List):167:167 -> a - 1:1:void onFailed():173:173 -> onFailed - 1:1:void onSucceed(java.lang.Object):161:161 -> onSucceed -wangdaye.com.geometricweather.weather.services.CaiYunWeatherService -> wangdaye.com.geometricweather.q.h.m: + 1:1:void (wangdaye.com.geometricweather.weather.services.CNWeatherService,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback,float,float):160:160 -> + 1:2:void onSucceed(java.util.List):163:164 -> a + 3:3:void onSucceed(java.util.List):166:166 -> a + 1:1:void onFailed():172:172 -> onFailed + 1:1:void onSucceed(java.lang.Object):160:160 -> onSucceed +wangdaye.com.geometricweather.weather.services.CaiYunWeatherService -> wangdaye.com.geometricweather.q.h.n: io.reactivex.disposables.CompositeDisposable mCompositeDisposable -> d wangdaye.com.geometricweather.weather.apis.CaiYunApi mApi -> c - 1:3:void (wangdaye.com.geometricweather.weather.apis.CaiYunApi,wangdaye.com.geometricweather.weather.apis.CNWeatherApi,io.reactivex.disposables.CompositeDisposable):34:36 -> - 1:2:void cancel():91:92 -> a - 1:6:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):42:42 -> f - 7:9:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):58:60 -> f - 10:10:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):64:64 -> f - 11:11:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):58:58 -> f - 12:12:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):68:68 -> f - 13:14:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):70:71 -> f - 1:1:wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource getSource():97:97 -> g - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather lambda$requestWeather$0(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):69:69 -> n -wangdaye.com.geometricweather.weather.services.CaiYunWeatherService$1 -> wangdaye.com.geometricweather.q.h.m$a: + 1:3:void (wangdaye.com.geometricweather.weather.apis.CaiYunApi,wangdaye.com.geometricweather.weather.apis.CNWeatherApi,io.reactivex.disposables.CompositeDisposable):33:35 -> + 1:2:void cancel():90:91 -> a + 1:6:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):41:41 -> f + 7:9:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):57:59 -> f + 10:10:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):63:63 -> f + 11:11:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):57:57 -> f + 12:12:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):67:67 -> f + 13:14:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):69:70 -> f + 1:1:wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource getSource():96:96 -> g + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper lambda$requestWeather$0(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult,wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult):68:68 -> n +wangdaye.com.geometricweather.weather.services.CaiYunWeatherService$1 -> wangdaye.com.geometricweather.q.h.n$a: wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback val$callback -> c wangdaye.com.geometricweather.common.basic.models.Location val$location -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.CaiYunWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):71:71 -> - 1:2:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):75:76 -> a - 3:3:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):78:78 -> a - 1:1:void onFailed():84:84 -> onFailed - 1:1:void onSucceed(java.lang.Object):71:71 -> onSucceed -wangdaye.com.geometricweather.weather.services.MfWeatherService -> wangdaye.com.geometricweather.q.h.n: + 1:1:void (wangdaye.com.geometricweather.weather.services.CaiYunWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):70:70 -> + 1:3:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):73:75 -> a + 4:4:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):77:77 -> a + 1:1:void onFailed():83:83 -> onFailed + 1:1:void onSucceed(java.lang.Object):70:70 -> onSucceed +wangdaye.com.geometricweather.weather.services.MfWeatherService -> wangdaye.com.geometricweather.q.h.o: wangdaye.com.geometricweather.weather.apis.AtmoAuraIqaApi mAtmoAuraApi -> b io.reactivex.disposables.CompositeDisposable mCompositeDisposable -> c wangdaye.com.geometricweather.weather.apis.MfWeatherApi mMfApi -> a 1:4:void (wangdaye.com.geometricweather.weather.apis.MfWeatherApi,wangdaye.com.geometricweather.weather.apis.AtmoAuraIqaApi,io.reactivex.disposables.CompositeDisposable):94:97 -> - 1:1:void cancel():293:293 -> a - 1:1:java.util.List requestLocation(android.content.Context,java.lang.String):182:182 -> d - 2:2:java.util.List requestLocation(android.content.Context,java.lang.String):184:184 -> d - 3:7:java.util.List requestLocation(android.content.Context,java.lang.String):187:191 -> d - 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):201:201 -> e - 2:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):205:208 -> e - 6:14:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):210:218 -> e - 15:15:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):217:217 -> e - 16:20:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):224:228 -> e - 21:22:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):230:231 -> e - 23:26:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):233:233 -> e - 27:28:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):238:239 -> e + 1:1:void cancel():295:295 -> a + 1:1:java.util.List requestLocation(android.content.Context,java.lang.String):184:184 -> d + 2:2:java.util.List requestLocation(android.content.Context,java.lang.String):186:186 -> d + 3:7:java.util.List requestLocation(android.content.Context,java.lang.String):189:193 -> d + 1:1:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):203:203 -> e + 2:5:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):207:210 -> e + 6:14:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):212:220 -> e + 15:15:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):219:219 -> e + 16:20:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):226:230 -> e + 21:22:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):232:233 -> e + 23:26:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):235:235 -> e + 27:28:void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):240:241 -> e 1:1:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):102:102 -> f 2:4:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):104:104 -> f 5:7:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):107:107 -> f @@ -113988,82 +113998,86 @@ wangdaye.com.geometricweather.weather.services.MfWeatherService -> wangdaye.com. 14:16:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):121:121 -> f 17:17:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):125:125 -> f 18:18:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):123:123 -> f - 19:25:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):129:135 -> f - 26:26:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):144:144 -> f - 27:27:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):136:136 -> f - 28:29:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):138:139 -> f - 30:30:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):136:136 -> f - 31:31:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):141:141 -> f - 32:32:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):140:140 -> f - 33:33:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):147:147 -> f - 34:35:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):158:159 -> f + 19:27:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):129:137 -> f + 28:28:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):146:146 -> f + 29:29:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):138:138 -> f + 30:31:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):140:141 -> f + 32:32:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):138:138 -> f + 33:33:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):143:143 -> f + 34:34:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):142:142 -> f + 35:35:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):149:149 -> f + 36:37:void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):160:161 -> f 1:1:void lambda$requestWeather$0(io.reactivex.ObservableEmitter):125:125 -> g - 1:1:void lambda$requestWeather$1(io.reactivex.ObservableEmitter):141:141 -> h - 1:1:void lambda$requestWeather$2(io.reactivex.ObservableEmitter):144:144 -> i - 1:1:wangdaye.com.geometricweather.common.basic.models.weather.Weather lambda$requestWeather$3(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):148:148 -> j - 1:2:boolean queryEquals(java.lang.String,java.lang.String):297:298 -> k - 1:1:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):304:304 -> l - 2:3:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):307:308 -> l -wangdaye.com.geometricweather.weather.services.MfWeatherService$1 -> wangdaye.com.geometricweather.q.h.n$a: + 1:1:void lambda$requestWeather$1(io.reactivex.ObservableEmitter):130:130 -> h + 1:1:void lambda$requestWeather$2(io.reactivex.ObservableEmitter):143:143 -> i + 1:1:void lambda$requestWeather$3(io.reactivex.ObservableEmitter):146:146 -> j + 1:1:wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper lambda$requestWeather$4(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult,wangdaye.com.geometricweather.weather.json.mf.MfForecastResult,wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult,wangdaye.com.geometricweather.weather.json.mf.MfRainResult,wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult,wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult):150:150 -> k + 1:2:boolean queryEquals(java.lang.String,java.lang.String):299:300 -> l + 1:1:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):306:306 -> m + 2:3:boolean queryEqualsIgnoreEmpty(java.lang.String,java.lang.String):309:310 -> m +wangdaye.com.geometricweather.weather.services.MfWeatherService$1 -> wangdaye.com.geometricweather.q.h.o$a: wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback val$callback -> c wangdaye.com.geometricweather.common.basic.models.Location val$location -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.MfWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):159:159 -> - 1:2:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):163:164 -> a - 3:3:void onSucceed(wangdaye.com.geometricweather.common.basic.models.weather.Weather):166:166 -> a - 1:1:void onFailed():172:172 -> onFailed - 1:1:void onSucceed(java.lang.Object):159:159 -> onSucceed -wangdaye.com.geometricweather.weather.services.MfWeatherService$2 -> wangdaye.com.geometricweather.q.h.n$b: + 1:1:void (wangdaye.com.geometricweather.weather.services.MfWeatherService,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback):161:161 -> + 1:3:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):164:166 -> a + 4:4:void onSucceed(wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper):168:168 -> a + 1:1:void onFailed():174:174 -> onFailed + 1:1:void onSucceed(java.lang.Object):161:161 -> onSucceed +wangdaye.com.geometricweather.weather.services.MfWeatherService$2 -> wangdaye.com.geometricweather.q.h.o$b: wangdaye.com.geometricweather.common.basic.models.Location val$location -> c wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback val$finalCallback -> b - 1:1:void (wangdaye.com.geometricweather.weather.services.MfWeatherService,wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback,wangdaye.com.geometricweather.common.basic.models.Location):239:239 -> - 1:3:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):243:245 -> a - 4:6:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):248:248 -> a - 7:7:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):251:251 -> a - 1:3:void onFailed():258:258 -> onFailed - 1:1:void onSucceed(java.lang.Object):239:239 -> onSucceed -wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback -> wangdaye.com.geometricweather.q.h.n$c: + 1:1:void (wangdaye.com.geometricweather.weather.services.MfWeatherService,wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback,wangdaye.com.geometricweather.common.basic.models.Location):241:241 -> + 1:3:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):245:247 -> a + 4:6:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):250:250 -> a + 7:7:void onSucceed(wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result):253:253 -> a + 1:3:void onFailed():260:260 -> onFailed + 1:1:void onSucceed(java.lang.Object):241:241 -> onSucceed +wangdaye.com.geometricweather.weather.services.MfWeatherService$CacheLocationRequestCallback -> wangdaye.com.geometricweather.q.h.o$c: android.content.Context mContext -> a wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback mCallback -> b 1:3:void (android.content.Context,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback):57:59 -> 1:5:void requestLocationSuccess(java.lang.String,java.util.List):64:68 -> a 6:6:void requestLocationSuccess(java.lang.String,java.util.List):70:70 -> a 1:8:void requestLocationFailed(java.lang.String):75:82 -> b -wangdaye.com.geometricweather.weather.services.MfWeatherService$EmptyAtmoAuraQAResult -> wangdaye.com.geometricweather.q.h.n$d: +wangdaye.com.geometricweather.weather.services.MfWeatherService$EmptyAtmoAuraQAResult -> wangdaye.com.geometricweather.q.h.o$d: 1:1:void ():86:86 -> 2:2:void (wangdaye.com.geometricweather.weather.services.MfWeatherService$1):86:86 -> -wangdaye.com.geometricweather.weather.services.MfWeatherService$EmptyWarningsResult -> wangdaye.com.geometricweather.q.h.n$e: +wangdaye.com.geometricweather.weather.services.MfWeatherService$EmptyWarningsResult -> wangdaye.com.geometricweather.q.h.o$e: 1:1:void ():89:89 -> 2:2:void (wangdaye.com.geometricweather.weather.services.MfWeatherService$1):89:89 -> -wangdaye.com.geometricweather.weather.services.WeatherService -> wangdaye.com.geometricweather.q.h.o: - 1:1:void ():18:18 -> +wangdaye.com.geometricweather.weather.services.WeatherService -> wangdaye.com.geometricweather.q.h.p: + 1:1:void ():20:20 -> void cancel() -> a - 1:1:java.lang.String convertChinese(java.lang.String):142:142 -> b - 1:1:java.lang.String formatLocationString(java.lang.String):43:43 -> c - 2:3:java.lang.String formatLocationString(java.lang.String):47:48 -> c - 4:11:java.lang.String formatLocationString(java.lang.String):50:57 -> c - 12:30:java.lang.String formatLocationString(java.lang.String):59:77 -> c - 31:38:java.lang.String formatLocationString(java.lang.String):80:87 -> c - 39:44:java.lang.String formatLocationString(java.lang.String):89:94 -> c - 45:48:java.lang.String formatLocationString(java.lang.String):97:100 -> c - 49:53:java.lang.String formatLocationString(java.lang.String):103:107 -> c - 54:59:java.lang.String formatLocationString(java.lang.String):110:115 -> c - 60:61:java.lang.String formatLocationString(java.lang.String):118:119 -> c - 62:63:java.lang.String formatLocationString(java.lang.String):122:123 -> c - 64:64:java.lang.String formatLocationString(java.lang.String):125:125 -> c - 65:66:java.lang.String formatLocationString(java.lang.String):128:129 -> c - 67:68:java.lang.String formatLocationString(java.lang.String):131:132 -> c - 69:70:java.lang.String formatLocationString(java.lang.String):134:135 -> c - 71:71:java.lang.String formatLocationString(java.lang.String):126:126 -> c - 72:72:java.lang.String formatLocationString(java.lang.String):116:116 -> c - 73:73:java.lang.String formatLocationString(java.lang.String):108:108 -> c - 74:74:java.lang.String formatLocationString(java.lang.String):101:101 -> c - 75:75:java.lang.String formatLocationString(java.lang.String):95:95 -> c + 1:1:java.lang.String convertChinese(java.lang.String):152:152 -> b + 1:1:java.lang.String formatLocationString(java.lang.String):53:53 -> c + 2:3:java.lang.String formatLocationString(java.lang.String):57:58 -> c + 4:11:java.lang.String formatLocationString(java.lang.String):60:67 -> c + 12:30:java.lang.String formatLocationString(java.lang.String):69:87 -> c + 31:38:java.lang.String formatLocationString(java.lang.String):90:97 -> c + 39:44:java.lang.String formatLocationString(java.lang.String):99:104 -> c + 45:48:java.lang.String formatLocationString(java.lang.String):107:110 -> c + 49:53:java.lang.String formatLocationString(java.lang.String):113:117 -> c + 54:59:java.lang.String formatLocationString(java.lang.String):120:125 -> c + 60:61:java.lang.String formatLocationString(java.lang.String):128:129 -> c + 62:63:java.lang.String formatLocationString(java.lang.String):132:133 -> c + 64:64:java.lang.String formatLocationString(java.lang.String):135:135 -> c + 65:66:java.lang.String formatLocationString(java.lang.String):138:139 -> c + 67:68:java.lang.String formatLocationString(java.lang.String):141:142 -> c + 69:70:java.lang.String formatLocationString(java.lang.String):144:145 -> c + 71:71:java.lang.String formatLocationString(java.lang.String):136:136 -> c + 72:72:java.lang.String formatLocationString(java.lang.String):126:126 -> c + 73:73:java.lang.String formatLocationString(java.lang.String):118:118 -> c + 74:74:java.lang.String formatLocationString(java.lang.String):111:111 -> c + 75:75:java.lang.String formatLocationString(java.lang.String):105:105 -> c java.util.List requestLocation(android.content.Context,java.lang.String) -> d void requestLocation(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback) -> e void requestWeather(android.content.Context,wangdaye.com.geometricweather.common.basic.models.Location,wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback) -> f -wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback -> wangdaye.com.geometricweather.q.h.o$a: +wangdaye.com.geometricweather.weather.services.WeatherService$RequestLocationCallback -> wangdaye.com.geometricweather.q.h.p$a: void requestLocationSuccess(java.lang.String,java.util.List) -> a void requestLocationFailed(java.lang.String) -> b -wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback -> wangdaye.com.geometricweather.q.h.o$b: +wangdaye.com.geometricweather.weather.services.WeatherService$RequestWeatherCallback -> wangdaye.com.geometricweather.q.h.p$b: void requestWeatherFailed(wangdaye.com.geometricweather.common.basic.models.Location) -> a void requestWeatherSuccess(wangdaye.com.geometricweather.common.basic.models.Location) -> b +wangdaye.com.geometricweather.weather.services.WeatherService$WeatherResultWrapper -> wangdaye.com.geometricweather.q.h.p$c: + wangdaye.com.geometricweather.common.basic.models.weather.Weather result -> a + 1:2:void (wangdaye.com.geometricweather.common.basic.models.weather.Weather):25:26 -> diff --git a/release/3.001/mapping/pubRelease/resources.txt b/release/3.002/mapping/pubRelease/resources.txt similarity index 99% rename from release/3.001/mapping/pubRelease/resources.txt rename to release/3.002/mapping/pubRelease/resources.txt index d93418a6a..ad9f81061 100644 --- a/release/3.001/mapping/pubRelease/resources.txt +++ b/release/3.002/mapping/pubRelease/resources.txt @@ -308,7 +308,7 @@ Referenced Strings: 2gcj 3 3.0 - 3.001_pub + 3.002_pub 30 300% 304 @@ -1245,6 +1245,7 @@ Referenced Strings: LOADING LOCAL LOCAL_PREFERENCE + LOCAL_PREFERENCE_MF LOCATION LOCATION_ENTITY LOCKSCREEN diff --git a/release/3.001/mapping/pubRelease/seeds.txt b/release/3.002/mapping/pubRelease/seeds.txt similarity index 100% rename from release/3.001/mapping/pubRelease/seeds.txt rename to release/3.002/mapping/pubRelease/seeds.txt index efc64bfa0..6d982584a 100644 --- a/release/3.001/mapping/pubRelease/seeds.txt +++ b/release/3.002/mapping/pubRelease/seeds.txt @@ -1,54526 +1,54526 @@ -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_disabled_material_dark -androidx.constraintlayout.widget.R$styleable: int Transition_autoTransition -cyanogenmod.providers.CMSettings$System: java.lang.String getString(android.content.ContentResolver,java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: void setSpeed(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean) -androidx.work.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$attr: int mock_diagonalsColor -com.google.android.material.R$attr: int fastScrollVerticalTrackDrawable -okhttp3.internal.http2.Hpack$Reader: int headerTableSizeSetting -cyanogenmod.providers.CMSettings$System: java.lang.String DIALER_OPENCNAM_ACCOUNT_SID -android.didikee.donate.R$id: int search_mag_icon -com.google.android.material.R$styleable: int[] MotionScene -androidx.dynamicanimation.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String getMoonPhase(android.content.Context) -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginStart -com.bumptech.glide.integration.okhttp.R$dimen: int notification_media_narrow_margin -com.google.android.material.chip.Chip: float getIconStartPadding() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_DropDown -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedWidthMinor -cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING_RAMP_UP_TIME -okhttp3.Connection: java.net.Socket socket() -com.google.gson.stream.JsonReader: boolean nextBoolean() -androidx.preference.R$attr: int goIcon -com.google.android.material.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -com.google.android.material.R$attr: int rangeFillColor -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_RAINSTORM -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9 -androidx.constraintlayout.widget.R$styleable: int ActionBar_divider -android.support.v4.os.IResultReceiver$Stub$Proxy: IResultReceiver$Stub$Proxy(android.os.IBinder) -androidx.fragment.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_23 -androidx.preference.R$drawable: int notification_bg_low_pressed -okhttp3.internal.platform.AndroidPlatform: int MAX_LOG_LENGTH -com.tencent.bugly.crashreport.CrashReport$UserStrategy: com.tencent.bugly.BuglyStrategy$a getCrashHandleCallback() -retrofit2.RequestBuilder: okhttp3.Request$Builder get() -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemDrawable(int) -wangdaye.com.geometricweather.R$id: int test_radiobutton_android_button_tint -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int lastIndex -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method getMethod -wangdaye.com.geometricweather.R$id: int standard -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float co -androidx.annotation.Keep -androidx.appcompat.widget.Toolbar: void setCollapseContentDescription(java.lang.CharSequence) -wangdaye.com.geometricweather.R$string: int follow_system -com.google.android.material.R$style: int Base_DialogWindowTitleBackground_AppCompat -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: double Value -okhttp3.internal.http2.Http2Connection: long awaitPingsSent -james.adaptiveicon.R$styleable: int AlertDialog_showTitle -cyanogenmod.weather.WeatherLocation$1: cyanogenmod.weather.WeatherLocation[] newArray(int) -com.google.android.material.R$attr: int behavior_autoHide -com.tencent.bugly.crashreport.common.info.AppInfo: java.util.Map d(android.content.Context) -com.google.android.material.button.MaterialButtonToggleGroup: void removeOnButtonCheckedListener(com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener) -wangdaye.com.geometricweather.R$id: int activity_settings_container -androidx.appcompat.R$color: int dim_foreground_material_light -androidx.constraintlayout.widget.R$attr: int targetId -cyanogenmod.weather.WeatherLocation: java.lang.String toString() -com.tencent.bugly.crashreport.biz.a: android.content.ContentValues a(com.tencent.bugly.crashreport.biz.UserInfoBean) -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -androidx.preference.R$drawable: int abc_ic_star_black_36dp -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconDrawable -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastVerticalBias -okhttp3.internal.connection.RealConnection: long idleAtNanos -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Surface -okhttp3.internal.http2.PushObserver: okhttp3.internal.http2.PushObserver CANCEL -com.xw.repo.bubbleseekbar.R$color: int secondary_text_disabled_material_dark -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -androidx.fragment.R$styleable: int FontFamilyFont_android_fontStyle -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColorHint -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_4_30 -com.bumptech.glide.integration.okhttp.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain Rain -wangdaye.com.geometricweather.db.entities.LocationEntity: java.util.TimeZone timeZone -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao chineseCityEntityDao -wangdaye.com.geometricweather.db.entities.HourlyEntity: int temperature -com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_simple -com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_material_light -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_homeAsUpIndicator -wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) -wangdaye.com.geometricweather.R$id: int title_template -com.amap.api.fence.DistrictItem: java.lang.String b -com.bumptech.glide.integration.okhttp.R$dimen: int notification_large_icon_height -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat DEFAULT -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: double Longitude -com.google.android.material.R$style: int Platform_V21_AppCompat_Light -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_DrawerArrowToggle -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType QueryList -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Light -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabText -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_font -androidx.drawerlayout.R$id: int action_container -androidx.legacy.coreutils.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhaseText -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function7) -androidx.lifecycle.ProcessLifecycleOwnerInitializer: boolean onCreate() -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean requireAdaptiveBacklightForSunlightEnhancement() -com.google.android.material.button.MaterialButton: android.graphics.drawable.Drawable getIcon() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView_DropDown -androidx.transition.R$string -androidx.lifecycle.extensions.R$layout: int notification_action -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress_color -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$attr: int rippleColor -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstHorizontalBias -com.google.android.gms.base.R$string: int common_google_play_services_update_title -com.turingtechnologies.materialscrollbar.R$attr: int cardViewStyle -androidx.preference.R$attr: int fontProviderFetchStrategy -androidx.loader.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.R$attr: int bsb_bubble_text_size -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Button -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Headline -com.google.android.material.textfield.TextInputEditText: com.google.android.material.textfield.TextInputLayout getTextInputLayout() -cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(cyanogenmod.weather.WeatherInfo$1) -com.amap.api.location.APSService: void onCreate() -com.google.android.material.R$styleable: int[] PopupWindowBackgroundState -androidx.preference.R$styleable: int[] CheckBoxPreference -wangdaye.com.geometricweather.R$drawable: int ic_android -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -okhttp3.internal.ws.RealWebSocket: java.util.ArrayDeque messageAndCloseQueue -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -retrofit2.ParameterHandler$QueryMap: retrofit2.Converter valueConverter -com.xw.repo.bubbleseekbar.R$id: int src_over -androidx.preference.R$styleable: int Preference_android_enabled -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontWeight -androidx.appcompat.R$integer: int status_bar_notification_info_maxnum -io.reactivex.internal.util.NotificationLite -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierDirection -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_disabled_elevation -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void run() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA -wangdaye.com.geometricweather.R$attr: int preferenceFragmentListStyle -com.github.rahatarmanahmed.cpv.R$color -com.google.android.material.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -android.didikee.donate.R$id: int buttonPanel -androidx.constraintlayout.widget.R$attr: int actionBarTabTextStyle -com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar -wangdaye.com.geometricweather.R$attr: int errorContentDescription -wangdaye.com.geometricweather.R$styleable: int MaterialShape_shapeAppearance -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -android.didikee.donate.R$styleable: int AppCompatTheme_colorPrimary +cyanogenmod.themes.ThemeManager$ThemeProcessingListener: void onFinishedProcessing(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int actionModeShareDrawable +com.turingtechnologies.materialscrollbar.R$id: int activity_chooser_view_content +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_background +com.google.gson.LongSerializationPolicy$2: com.google.gson.JsonElement serialize(java.lang.Long) +com.google.android.material.R$string: int bottom_sheet_behavior +com.turingtechnologies.materialscrollbar.R$string: int abc_action_mode_done +androidx.swiperefreshlayout.R$style: int Widget_Compat_NotificationActionText +com.google.android.material.timepicker.ChipTextInputComboView: ChipTextInputComboView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextStyle +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: void handleMessage(android.os.Message) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: double Value +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer moldLevel +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setAppChannel(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColorLink +com.google.android.material.R$attr: int subtitleTextStyle +okhttp3.ConnectionSpec$Builder +androidx.preference.R$dimen: int notification_right_side_padding_top +com.google.android.material.R$styleable: int MotionTelltales_telltales_tailScale +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_track_mtrl_alpha +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_pixel +androidx.coordinatorlayout.R$attr: int statusBarBackground +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context,android.util.AttributeSet) +okio.Pipe$PipeSource +com.google.android.material.R$id: int mtrl_card_checked_layer_id +com.google.android.material.R$drawable: int notification_bg_low_normal +cyanogenmod.app.ThemeVersion: cyanogenmod.app.ThemeVersion$ComponentVersion getComponentVersion(cyanogenmod.app.ThemeComponent) +com.google.android.material.R$drawable: int abc_cab_background_top_mtrl_alpha +android.didikee.donate.R$id: int always +androidx.legacy.coreutils.R$id: int action_text +wangdaye.com.geometricweather.R$styleable: int Chip_textStartPadding +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +cyanogenmod.weather.RequestInfo$1: RequestInfo$1() +wangdaye.com.geometricweather.R$id: int item_details +com.tencent.bugly.proguard.z: java.util.Map a(int,boolean) +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void cancelRequest(int) +com.google.android.material.R$string: int mtrl_picker_text_input_month_abbr +com.jaredrummler.android.colorpicker.R$attr: int toolbarNavigationButtonStyle +okhttp3.internal.tls.BasicCertificateChainCleaner: int MAX_SIGNERS +okio.GzipSink: void updateCrc(okio.Buffer,long) +com.baidu.location.e.h$c: com.baidu.location.e.h$c e +com.google.android.material.R$styleable: int SearchView_android_inputType +androidx.preference.R$attr: int listPreferredItemHeightSmall +android.didikee.donate.R$styleable: int Toolbar_titleMarginBottom +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode AUTO +com.google.gson.FieldNamingPolicy$2 +com.google.android.gms.location.DetectedActivity: android.os.Parcelable$Creator CREATOR +cyanogenmod.themes.ThemeChangeRequest$RequestType +wangdaye.com.geometricweather.R$styleable: int Transform_android_rotationY +wangdaye.com.geometricweather.R$id: int widget_day_week_center +wangdaye.com.geometricweather.R$string: int settings_title_notification_temp_icon +androidx.lifecycle.LiveData$ObserverWrapper: androidx.lifecycle.LiveData this$0 +io.reactivex.Observable: io.reactivex.Completable flatMapCompletable(io.reactivex.functions.Function,boolean) +android.didikee.donate.R$styleable: int Toolbar_menu +wangdaye.com.geometricweather.R$attr: int preferenceFragmentCompatStyle +wangdaye.com.geometricweather.R$string: int feedback_location_permissions_title +wangdaye.com.geometricweather.R$attr: int collapsedTitleTextAppearance +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addFormDataPart(java.lang.String,java.lang.String,okhttp3.RequestBody) +com.tencent.bugly.crashreport.CrashReport: java.util.Set getAllUserDataKeys(android.content.Context) +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +wangdaye.com.geometricweather.R$dimen: int design_tab_max_width +com.turingtechnologies.materialscrollbar.R$attr: int showDividers +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: void complete() +com.amap.api.location.AMapLocationClientOption$2: int[] a +androidx.recyclerview.R$id: int accessibility_custom_action_18 +androidx.appcompat.widget.AppCompatButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.hilt.R$id: int italic +io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.xw.repo.bubbleseekbar.R$layout: int abc_popup_menu_header_item_layout +com.google.android.material.R$dimen: int material_filled_edittext_font_1_3_padding_top +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginBottom +wangdaye.com.geometricweather.R$drawable: int notification_template_icon_low_bg +com.google.android.material.R$styleable: int MenuGroup_android_enabled +androidx.appcompat.R$id: int line1 +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_showMotionSpec +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTemperature +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.Observer downstream +retrofit2.http.GET +wangdaye.com.geometricweather.R$array: int notification_background_colors +android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.os.IBinder asBinder() +com.google.android.material.R$attr: int closeIcon +com.xw.repo.bubbleseekbar.R$styleable: int PopupWindowBackgroundState_state_above_anchor +com.google.android.material.R$attr: int checkedIconSize +com.amap.api.location.AMapLocation: java.lang.String r +wangdaye.com.geometricweather.R$layout: int material_radial_view_group +wangdaye.com.geometricweather.R$dimen: int design_appbar_elevation +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor[] values() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: wangdaye.com.geometricweather.location.services.LocationService$LocationCallback val$callback +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +com.google.android.material.R$dimen: int abc_list_item_height_material +cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$attr: int telltales_velocityMode +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() +wangdaye.com.geometricweather.R$id: int top +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_default +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startColor +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) +okhttp3.RequestBody: RequestBody() +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void dispose() +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customIntegerValue +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Small +androidx.constraintlayout.widget.R$attr: int theme +wangdaye.com.geometricweather.R$drawable: int notif_temp_79 +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void dispose() +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_2 +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_weightSum +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionMenuTextAppearance +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String cityId +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: void run() +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startX +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Selected +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_is_float_type +androidx.preference.R$string: int abc_menu_shift_shortcut_label +android.didikee.donate.R$styleable: int AlertDialog_multiChoiceItemLayout +androidx.constraintlayout.widget.R$dimen: int hint_pressed_alpha_material_light +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getNumberOfProfiles +androidx.coordinatorlayout.R$drawable: R$drawable() +com.bumptech.glide.R$id: int forever +wangdaye.com.geometricweather.R$attr: int divider +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig alertEntityDaoConfig +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig locationEntityDaoConfig +androidx.preference.R$style: int Base_V7_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_text_size +james.adaptiveicon.R$color: int ripple_material_dark +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState valueOf(java.lang.String) +com.github.rahatarmanahmed.cpv.CircularProgressView$9: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri FORECAST_WEATHER_URI +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionMode +wangdaye.com.geometricweather.R$dimen: int tooltip_vertical_padding +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dividerVertical +wangdaye.com.geometricweather.R$style: int EmptyTheme +androidx.preference.R$color: int primary_text_default_material_dark +androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Time +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: void run() +com.google.android.material.R$styleable: int RecyclerView_android_clipToPadding +androidx.fragment.R$id: int line1 +androidx.lifecycle.Transformations: androidx.lifecycle.LiveData switchMap(androidx.lifecycle.LiveData,androidx.arch.core.util.Function) +com.amap.api.fence.GeoFence: int STATUS_IN +okhttp3.internal.http1.Http1Codec$ChunkedSource: long NO_CHUNK_YET +androidx.constraintlayout.widget.R$id: int expand_activities_button +wangdaye.com.geometricweather.R$bool: int abc_allow_stacked_button_bar +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean requestDismissAndStartActivity(android.content.Intent) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String uvDescription +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setPubTime(java.lang.String) +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setTime(long) +com.tencent.bugly.proguard.al +okhttp3.HttpUrl: java.util.List pathSegments() +androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_large_material +io.reactivex.internal.subscribers.DeferredScalarSubscriber: org.reactivestreams.Subscription upstream +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitationProbability +io.reactivex.Observable: io.reactivex.Observable concatMapEagerDelayError(io.reactivex.functions.Function,boolean) +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String YEAR +androidx.preference.R$attr: int buttonBarNegativeButtonStyle +com.google.android.material.R$attr: int statusBarScrim +okhttp3.internal.http2.Http2Codec: okhttp3.internal.http2.Http2Stream stream +com.google.android.material.R$attr: int targetId +okhttp3.internal.cache.DiskLruCache$Entry: long[] lengths +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource DATA_DISK_CACHE +james.adaptiveicon.R$styleable: int Toolbar_contentInsetStart +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.autonavi.aps.amapapi.model.AMapLocationServer: void b(java.lang.String) +com.bumptech.glide.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$attr: int textLocale +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderQuery +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean done +com.google.android.material.R$styleable: int FontFamilyFont_ttcIndex james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$id: int activity_chooser_view_content -com.amap.api.fence.GeoFenceManagerBase: void addPolygonGeoFence(java.util.List,java.lang.String) -com.google.android.material.R$dimen: int design_snackbar_elevation -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: int UnitType -androidx.preference.R$styleable: int Preference_singleLineTitle -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_fontFamily -cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,cyanogenmod.app.CustomTile,android.os.UserHandle) -james.adaptiveicon.R$color -wangdaye.com.geometricweather.R$drawable: int notif_temp_117 -com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_tick_mark_material -androidx.appcompat.widget.FitWindowsFrameLayout -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onDetach() -androidx.viewpager.R$dimen: int compat_notification_large_icon_max_width -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: boolean isDisposed() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: void setValue(java.util.List) -androidx.appcompat.R$drawable: int abc_list_selector_disabled_holo_light -wangdaye.com.geometricweather.R$id: int container_main_pollen_subtitle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_54 -androidx.preference.R$id: int custom -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean setNativeIsAppForeground(boolean) -wangdaye.com.geometricweather.R$id: int SYM -com.google.android.material.R$styleable: int AppCompatTheme_dialogTheme -wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_srcCompat -okhttp3.Cache$CacheResponseBody: java.lang.String contentType -cyanogenmod.providers.CMSettings$Global: boolean shouldInterceptSystemProvider(java.lang.String) -james.adaptiveicon.R$drawable: int abc_vector_test -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_fontFamily -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder pingInterval(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -com.google.android.material.slider.BaseSlider: void setStepSize(float) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Body1 -com.bumptech.glide.integration.okhttp.R$dimen: int notification_small_icon_size_as_large -androidx.lifecycle.ComputableLiveData$1: androidx.lifecycle.ComputableLiveData this$0 -james.adaptiveicon.R$attr: int windowNoTitle -com.google.android.material.floatingactionbutton.FloatingActionButton: void setScaleX(float) -com.tencent.bugly.proguard.ap: void a(com.tencent.bugly.proguard.j) -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetEndWithActions -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setType(java.lang.String) -com.google.android.material.R$id: int material_clock_period_am_button -com.google.android.material.R$drawable: int btn_radio_off_mtrl -io.reactivex.Observable: io.reactivex.Observable retry(io.reactivex.functions.BiPredicate) -com.bumptech.glide.load.ImageHeaderParser$ImageType -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setCityId(java.lang.String) -wangdaye.com.geometricweather.R$string: int get_more_github -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogStyle -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_LAST_PROFILE_UUID -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather -com.jaredrummler.android.colorpicker.R$attr: int dialogIcon -james.adaptiveicon.R$attr: int defaultQueryHint -androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$string: int status_bar_notification_info_overflow -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatPressedTranslationZ(float) -androidx.lifecycle.ReportFragment: void dispatchResume(androidx.lifecycle.ReportFragment$ActivityInitializationListener) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableItem -wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_percent -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar -androidx.lifecycle.Transformations$2$1: androidx.lifecycle.Transformations$2 this$0 -com.google.android.material.R$dimen: int mtrl_btn_disabled_elevation -io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Consumer onError -com.google.android.material.R$id: int SHOW_PROGRESS -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -androidx.appcompat.widget.SwitchCompat: void setChecked(boolean) -com.jaredrummler.android.colorpicker.R$dimen: int abc_disabled_alpha_material_dark -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView -androidx.preference.R$attr: int panelBackground -com.tencent.bugly.proguard.i$a: int b -okhttp3.Call: void enqueue(okhttp3.Callback) -androidx.preference.R$attr: int itemPadding -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onSuccess(java.lang.Object) -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a readTargetDumpInfo(java.lang.String,java.lang.String,boolean) -androidx.hilt.lifecycle.R$anim: int fragment_open_exit -com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_start -okhttp3.Cache: int writeAbortCount() -okhttp3.internal.connection.StreamAllocation: okhttp3.Call call -okhttp3.Cache$CacheResponseBody$1: okhttp3.Cache$CacheResponseBody this$0 -wangdaye.com.geometricweather.R$drawable: int ic_settings -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable,int) -io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper[] values() -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -androidx.appcompat.R$attr: int subtitleTextStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Long id -com.google.android.material.R$drawable: int tooltip_frame_light -wangdaye.com.geometricweather.R$attr: int constraintSetStart -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: IKeyguardExternalViewCallbacks$Stub() -com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeTitle -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Header$Listener headersListener -androidx.recyclerview.R$styleable: int[] RecyclerView -com.google.android.material.R$attr: int track -io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable,io.reactivex.functions.Function) -james.adaptiveicon.R$id: int buttonPanel -wangdaye.com.geometricweather.R$string: int settings_title_week_icon_mode -com.google.android.material.R$style: int Widget_AppCompat_ProgressBar_Horizontal -com.tencent.bugly.crashreport.common.info.a: java.lang.Boolean x() -wangdaye.com.geometricweather.R$drawable: int shortcuts_snow_foreground -androidx.appcompat.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.R$animator: int weather_thunder_2 -com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.floatingactionbutton.FloatingActionButtonImpl getImpl() -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_homeAsUpIndicator -com.google.android.material.R$attr: int endIconCheckable -androidx.appcompat.R$id: int src_in -wangdaye.com.geometricweather.R$attr: int iconTintMode -com.jaredrummler.android.colorpicker.R$id: int action_container -com.jaredrummler.android.colorpicker.R$dimen: int abc_button_inset_vertical_material -wangdaye.com.geometricweather.R$attr: int layout -okio.BufferedSource: boolean rangeEquals(long,okio.ByteString) -com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean m -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_3 -wangdaye.com.geometricweather.R$drawable: int ic_github_dark -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow -android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedHeightMajor -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeWetBulbTemperature() -okhttp3.logging.HttpLoggingInterceptor: java.util.Set headersToRedact -com.jaredrummler.android.colorpicker.R$dimen: int abc_button_inset_horizontal_material -android.didikee.donate.R$drawable: int abc_list_selector_holo_dark -wangdaye.com.geometricweather.R$string: int live -com.jaredrummler.android.colorpicker.R$attr: int showTitle -androidx.vectordrawable.animated.R$id: int tag_accessibility_clickable_spans -androidx.preference.R$dimen: int hint_alpha_material_dark -com.turingtechnologies.materialscrollbar.R$attr: int panelMenuListWidth -androidx.work.R$id: int notification_main_column -com.google.android.material.R$attr: int tabContentStart -okio.Okio: okio.Sink appendingSink(java.io.File) -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType COLOR_DRAWABLE_TYPE -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_49 -cyanogenmod.weather.WeatherInfo: int mTempUnit -androidx.drawerlayout.R$id -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline6 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -androidx.constraintlayout.widget.R$attr: int flow_firstHorizontalBias -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 -wangdaye.com.geometricweather.db.entities.DaoMaster: DaoMaster(android.database.sqlite.SQLiteDatabase) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_thumb_text -com.google.android.material.R$styleable: int MaterialButtonToggleGroup_checkedButton -com.xw.repo.bubbleseekbar.R$attr: int layout_dodgeInsetEdges -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex -wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundDialog: RunningInBackgroundDialog() -com.turingtechnologies.materialscrollbar.R$attr: int tabMode -androidx.activity.R$attr: int fontProviderFetchStrategy -androidx.swiperefreshlayout.R$style: R$style() -com.google.android.material.R$attr: int collapseIcon -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginRight -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -android.didikee.donate.R$dimen: int abc_action_bar_icon_vertical_padding_material -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String grassDescription -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_seekbar_material -com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.StrategyBean f -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX aqi -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int ISOLATED_THUNDERSTORMS -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List weather -wangdaye.com.geometricweather.R$layout: int select_dialog_item_material -com.amap.api.fence.GeoFence: void setDistrictItemList(java.util.List) -cyanogenmod.profiles.BrightnessSettings: void setOverride(boolean) -com.amap.api.location.AMapLocationQualityReport: int getGPSSatellites() -androidx.appcompat.widget.AppCompatRadioButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.util.AtomicThrowable error -com.xw.repo.bubbleseekbar.R$attr: int showText -retrofit2.OptionalConverterFactory$OptionalConverter: java.lang.Object convert(java.lang.Object) -james.adaptiveicon.R$style: int AlertDialog_AppCompat -com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_normal -wangdaye.com.geometricweather.R$color: int primary_text_disabled_material_light -com.google.android.material.R$attr: int windowActionModeOverlay -com.google.android.material.appbar.CollapsingToolbarLayout -okhttp3.internal.cache.DiskLruCache$3: DiskLruCache$3(okhttp3.internal.cache.DiskLruCache) -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarStyle -cyanogenmod.app.IProfileManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.lifecycle.LifecycleDispatcher: java.util.concurrent.atomic.AtomicBoolean sInitialized -wangdaye.com.geometricweather.R$attr: int font -androidx.hilt.R$integer: R$integer() -cyanogenmod.externalviews.KeyguardExternalView$10: KeyguardExternalView$10(cyanogenmod.externalviews.KeyguardExternalView) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float o3 -com.google.android.material.imageview.ShapeableImageView: void setStrokeWidth(float) -com.turingtechnologies.materialscrollbar.R$id: int expand_activities_button -androidx.recyclerview.R$id: int accessibility_custom_action_4 -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean isEmpty() -james.adaptiveicon.R$color: int material_blue_grey_800 -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -wangdaye.com.geometricweather.R$drawable: int abc_control_background_material -cyanogenmod.externalviews.ExternalView$2: android.graphics.Rect val$clipRect -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar_Small -androidx.recyclerview.R$id: int accessibility_custom_action_16 -androidx.recyclerview.R$drawable -wangdaye.com.geometricweather.R$string: int material_timepicker_select_time -androidx.customview.R$dimen: int notification_big_circle_margin -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean cancelled -androidx.preference.R$layout: int abc_action_bar_title_item -retrofit2.converter.gson.GsonConverterFactory: retrofit2.converter.gson.GsonConverterFactory create() -androidx.preference.internal.PreferenceImageView: int getMaxHeight() -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_ARRAY -cyanogenmod.externalviews.ExternalView$2: ExternalView$2(cyanogenmod.externalviews.ExternalView,int,int,int,int,boolean,android.graphics.Rect) -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: ObservableReplay$InnerDisposable(io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver,io.reactivex.Observer) -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSubtitle2 -android.didikee.donate.R$bool: R$bool() -okhttp3.internal.http2.Http2Connection: long degradedPongsReceived -androidx.appcompat.widget.SwitchCompat: int getThumbTextPadding() -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int activeCount -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ProgressBar_Horizontal -com.turingtechnologies.materialscrollbar.R$attr: int selectableItemBackgroundBorderless -james.adaptiveicon.R$styleable: int[] FontFamily -okhttp3.internal.platform.Platform: Platform() -wangdaye.com.geometricweather.R$string: int exposed_dropdown_menu_content_description -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_gapBetweenBars -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentStyle -cyanogenmod.app.Profile: void setStatusBarIndicator(boolean) -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotation -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyEndText -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionMenuTextAppearance -okio.HashingSource: okio.HashingSource hmacSha1(okio.Source,okio.ByteString) -wangdaye.com.geometricweather.db.entities.LocationEntity: java.util.TimeZone getTimeZone() -okhttp3.Request: okhttp3.Headers headers() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX() -io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.ObservableSource) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_TextView_SpinnerItem -androidx.appcompat.R$style: int Theme_AppCompat_Light_DialogWhenLarge -androidx.customview.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: AtmoAuraQAResult() -com.google.android.material.slider.BaseSlider: void setTrackActiveTintList(android.content.res.ColorStateList) -io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable[] values() -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String getProviderName(android.content.Context) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.R$style: int Theme_AppCompat -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView_DropDown -io.reactivex.internal.util.AtomicThrowable: boolean addThrowable(java.lang.Throwable) -com.google.android.material.R$id: int normal -com.google.android.material.R$attr: int materialAlertDialogTitleIconStyle -com.google.android.material.R$attr: int alphabeticModifiers -james.adaptiveicon.R$id: int right_icon -okio.BufferedSource: void require(long) -com.google.android.material.R$attr: int bottomSheetDialogTheme -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: boolean active -james.adaptiveicon.R$layout: int abc_screen_simple -wangdaye.com.geometricweather.R$color: int secondary_text_default_material_dark -com.google.android.material.R$dimen: int design_snackbar_max_width -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean cancelOnReplace -androidx.preference.R$styleable: int BackgroundStyle_android_selectableItemBackground -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog -androidx.lifecycle.LifecycleRegistry$ObserverWithState: LifecycleRegistry$ObserverWithState(androidx.lifecycle.LifecycleObserver,androidx.lifecycle.Lifecycle$State) -androidx.preference.R$attr: int lineHeight -androidx.appcompat.R$attr: int subtitle -wangdaye.com.geometricweather.R$style: int Base_AlertDialog_AppCompat_Light -com.tencent.bugly.proguard.af: af() -com.google.android.material.R$string: int abc_activitychooserview_choose_application -android.didikee.donate.R$style: int Platform_AppCompat_Light -com.google.android.material.R$styleable: int Constraint_flow_firstHorizontalBias -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -okio.RealBufferedSink: okio.Buffer buffer() -androidx.appcompat.widget.ActivityChooserView$InnerLayout -wangdaye.com.geometricweather.R$id: int event -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: java.lang.String type -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.ProgressIndicatorSpec getSpec() -com.google.android.material.R$attr: int alertDialogCenterButtons -androidx.drawerlayout.R$id: int chronometer -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Latitude -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_alpha -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_stacked_tab_max_width -okhttp3.Request: java.util.List headers(java.lang.String) -androidx.hilt.R$id: int icon_group -cyanogenmod.app.CMContextConstants$Features: java.lang.String PARTNER -wangdaye.com.geometricweather.R$id: int snapMargins -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_inflatedId -androidx.fragment.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.DailyEntity,int) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_color -wangdaye.com.geometricweather.R$attr: int cornerSizeTopRight -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMode -androidx.loader.R$dimen: int notification_subtext_size -retrofit2.ParameterHandler: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit INHG -androidx.vectordrawable.animated.R$id: int tag_unhandled_key_event_manager -com.jaredrummler.android.colorpicker.ColorPickerView: int getPreferredHeight() -androidx.preference.R$layout: int notification_template_part_chronometer -okhttp3.HttpUrl: java.util.List pathSegments() -wangdaye.com.geometricweather.R$layout: int item_weather_daily_pollen -androidx.preference.R$drawable: int abc_spinner_textfield_background_material -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabText -retrofit2.adapter.rxjava2.BodyObservable -androidx.appcompat.R$styleable: int Toolbar_contentInsetEnd -retrofit2.OkHttpCall$ExceptionCatchingResponseBody -com.tencent.bugly.crashreport.CrashReport: void setAppVersion(android.content.Context,java.lang.String) -com.turingtechnologies.materialscrollbar.R$id: int notification_main_column_container -androidx.hilt.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getDegreeDayTemperature() -okhttp3.internal.platform.AndroidPlatform: java.lang.Class sslParametersClass -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator PROXIMITY_ON_WAKE_VALIDATOR -com.turingtechnologies.materialscrollbar.R$attr: int colorControlHighlight -androidx.appcompat.R$styleable: int Toolbar_logo -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_queryBackground -com.google.android.material.R$attr: int colorOnError -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -com.turingtechnologies.materialscrollbar.Handle -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerColor -okio.Buffer: okio.Buffer writeByte(int) -retrofit2.ParameterHandler$FieldMap -retrofit2.RequestFactory$Builder: boolean gotQueryMap -androidx.appcompat.R$id: int forever -androidx.lifecycle.extensions.R$drawable: int notification_bg_low -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$color: int mtrl_textinput_hovered_box_stroke_color -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial Imperial -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial -com.tencent.bugly.proguard.u: void a(int,com.tencent.bugly.proguard.am,java.lang.String,java.lang.String,com.tencent.bugly.proguard.t,long,boolean) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -okhttp3.internal.http2.Http2Stream: void checkOutNotClosed() -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource valueOf(java.lang.String) -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_19 -james.adaptiveicon.R$styleable: int RecycleListView_paddingTopNoTitle -cyanogenmod.providers.CMSettings$Global: long getLong(android.content.ContentResolver,java.lang.String,long) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.lang.String getPubTime() -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColorHint -cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicReference actual -com.bumptech.glide.R$id: int top -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: io.reactivex.Scheduler scheduler -androidx.appcompat.R$style: int Widget_AppCompat_ListView -wangdaye.com.geometricweather.R$id: int widget_clock_day_time -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_BottomNavigationView -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display1 -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void otherError(java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int colorPrimary -wangdaye.com.geometricweather.R$attr: int visibilityMode -androidx.preference.R$attr: int preferenceTheme -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorAnimationDuration -com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_icon -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context,android.util.AttributeSet,int) -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_material_light -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language UNSIMPLIFIED_CHINESE -com.xw.repo.bubbleseekbar.R$attr: int trackTint -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: double Value -androidx.core.R$styleable: int GradientColor_android_type -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customColorDrawableValue -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_disableDependentsState -android.didikee.donate.R$layout: int abc_action_bar_title_item -com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_circle_large -com.bumptech.glide.integration.okhttp.R$id: int actions -okio.Util: void checkOffsetAndCount(long,long,long) -cyanogenmod.app.ProfileManager: void addNotificationGroup(android.app.NotificationGroup) -com.tencent.bugly.proguard.ar: void a(java.lang.StringBuilder,int) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_imageButtonStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean getPrecipitationProbability() -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: long serialVersionUID +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_ContextMenu +androidx.fragment.R$id: int text +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextBackground +james.adaptiveicon.R$styleable: int AppCompatTheme_colorAccent +androidx.constraintlayout.widget.R$id: int content +com.google.android.material.R$attr: int materialCardViewStyle +io.reactivex.internal.queue.SpscArrayQueue: java.lang.Object lvElement(int) +cyanogenmod.externalviews.IExternalViewProvider: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_square_large +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelMenuListWidth +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherPhase +androidx.appcompat.resources.R$id: int line1 +androidx.appcompat.widget.ViewStubCompat: int getInflatedId() +androidx.appcompat.R$id: int uniform +androidx.dynamicanimation.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.CMHardwareManager getInstance(android.content.Context) +cyanogenmod.app.StatusBarPanelCustomTile: long getPostTime() +james.adaptiveicon.R$styleable: int DrawerArrowToggle_barLength +wangdaye.com.geometricweather.R$color: int bright_foreground_disabled_material_light +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_HAIL +androidx.constraintlayout.widget.R$attr: int popupWindowStyle wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setUnit(java.lang.String) -androidx.constraintlayout.widget.R$dimen: int tooltip_horizontal_padding -android.didikee.donate.R$styleable: int AppCompatTextView_lineHeight -retrofit2.converter.gson.GsonRequestBodyConverter: GsonRequestBodyConverter(com.google.gson.Gson,com.google.gson.TypeAdapter) -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver -wangdaye.com.geometricweather.R$color: int test_mtrl_calendar_day_selected -androidx.legacy.coreutils.R$drawable: int notification_action_background -james.adaptiveicon.R$color: int abc_secondary_text_material_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX() -okio.Base64: java.lang.String encode(byte[],byte[]) -androidx.constraintlayout.widget.ConstraintLayout: int getMinHeight() -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dark -cyanogenmod.externalviews.KeyguardExternalView: void onKeyguardShowing(boolean) -com.google.android.material.R$color: int design_default_color_surface -com.amap.api.fence.PoiItem: java.lang.String getCity() -androidx.appcompat.resources.R$attr: int font -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchPadding -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea -androidx.preference.R$attr: int collapseIcon -androidx.coordinatorlayout.R$styleable -androidx.constraintlayout.widget.R$style: int Base_V28_Theme_AppCompat_Light -com.google.android.material.button.MaterialButton: int getIconPadding() -androidx.appcompat.R$style: int Widget_AppCompat_Button_Borderless_Colored -okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String access$000(okhttp3.internal.cache.DiskLruCache$Snapshot) -com.google.android.material.R$style: int Theme_Design_NoActionBar -androidx.constraintlayout.utils.widget.ImageFilterButton: float getRound() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorEnabled -james.adaptiveicon.R$style: int Base_V26_Theme_AppCompat_Light -androidx.dynamicanimation.R$layout -wangdaye.com.geometricweather.R$layout: int abc_screen_content_include -com.amap.api.fence.GeoFenceClient: com.amap.api.fence.GeoFenceManagerBase a(android.content.Context) -james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedHeightMajor -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType DIMENSION_TYPE -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean cancelled -androidx.constraintlayout.widget.R$styleable: int ActionMode_subtitleTextStyle -wangdaye.com.geometricweather.R$drawable: int abc_switch_thumb_material -cyanogenmod.content.Intent: java.lang.String ACTION_RECENTS_LONG_PRESS -james.adaptiveicon.R$styleable: int AppCompatTheme_panelMenuListWidth -okhttp3.internal.http.StatusLine: okhttp3.internal.http.StatusLine parse(java.lang.String) -com.turingtechnologies.materialscrollbar.R$integer: int design_snackbar_text_max_lines -wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_collapsible -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_normal_material_dark -com.google.android.material.R$styleable: int[] TextInputEditText -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView -james.adaptiveicon.R$layout: int abc_alert_dialog_material -com.tencent.bugly.crashreport.crash.b: void c(com.tencent.bugly.crashreport.crash.CrashDetailBean) -androidx.preference.R$id: int action_menu_presenter -com.bumptech.glide.integration.okhttp.R$style: R$style() -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter -androidx.dynamicanimation.R$attr: int fontProviderAuthority -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogTheme -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: long serialVersionUID -androidx.constraintlayout.widget.R$id: int actions -wangdaye.com.geometricweather.R$styleable: int[] ListPreference -androidx.preference.R$anim: R$anim() -com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusTopStart() -okhttp3.CertificatePinner -com.tencent.bugly.proguard.m: long g -wangdaye.com.geometricweather.R$attr: int headerLayout -androidx.preference.R$styleable: int AppCompatTheme_selectableItemBackground -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.Observer downstream -androidx.recyclerview.R$drawable: int notification_action_background -com.tencent.bugly.crashreport.common.info.a: java.util.Map ai -androidx.appcompat.widget.SearchView: void setImeOptions(int) -androidx.appcompat.R$styleable: int CompoundButton_android_button -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -android.didikee.donate.R$styleable: int AppCompatTextView_textLocale -com.jaredrummler.android.colorpicker.R$layout: int abc_screen_content_include -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void otherError(java.lang.Throwable) -okhttp3.Address: java.net.ProxySelector proxySelector -com.google.android.material.R$dimen: int material_clock_face_margin_top -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.disposables.Disposable upstream -com.google.android.material.slider.BaseSlider$SliderState -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_menu -androidx.customview.view.AbsSavedState -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierDirection -androidx.appcompat.R$attr: int colorControlNormal -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarItemBackground -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_circularInset -androidx.constraintlayout.widget.R$dimen: int abc_text_size_headline_material -androidx.customview.R$id: int chronometer -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: double lon -com.google.android.material.R$style: int Base_V28_Theme_AppCompat -androidx.preference.R$attr: int firstBaselineToTopHeight -cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_LAUNCH -wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextSpinner -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.Observer downstream -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Small -cyanogenmod.app.CustomTile: android.graphics.Bitmap remoteIcon -com.xw.repo.bubbleseekbar.R$color: int accent_material_dark -com.google.android.material.R$id: int action_image -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode DARK -okio.Pipe: long maxBufferSize -okio.BufferedSink: okio.BufferedSink write(byte[]) -com.google.android.material.textfield.TextInputLayout: void setEnabled(boolean) -androidx.appcompat.widget.AppCompatImageView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -com.tencent.bugly.proguard.q: android.database.sqlite.SQLiteDatabase getReadableDatabase() -okhttp3.internal.http2.Hpack$Writer: int smallestHeaderTableSizeSetting -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: AccuDailyResult$DailyForecasts$Temperature$Minimum() -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: int hashCode() -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit FT -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_holo_dark -androidx.viewpager2.R$styleable: int[] RecyclerView -com.google.android.material.R$attr: int panelMenuListWidth -wangdaye.com.geometricweather.R$drawable: int notif_temp_125 -com.google.android.material.R$styleable: int TextInputLayout_boxStrokeColor -okhttp3.internal.ws.WebSocketReader: okio.Buffer controlFrameBuffer -com.turingtechnologies.materialscrollbar.R$attr: int paddingTopNoTitle -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: void invoke(java.lang.Throwable) -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_NAME -androidx.constraintlayout.widget.R$styleable: int SearchView_submitBackground -androidx.appcompat.resources.R$drawable: int abc_vector_test -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircleRadius -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getVibratorIntensity -wangdaye.com.geometricweather.db.entities.LocationEntity: void setFormattedId(java.lang.String) -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.concurrent.atomic.AtomicInteger active -james.adaptiveicon.R$dimen: int abc_dialog_min_width_major -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_summaryOff -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setStatus(int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPopupWindowStyle -android.didikee.donate.R$id: int middle -wangdaye.com.geometricweather.R$id: int motion_base -okio.SegmentedByteString: java.lang.String base64() -io.reactivex.Observable: io.reactivex.Single elementAt(long,java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int requestFusion(int) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitation -wangdaye.com.geometricweather.R$string: int copy -wangdaye.com.geometricweather.R$attr: int subtitleTextStyle -wangdaye.com.geometricweather.R$color: int switch_thumb_disabled_material_dark -androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context) -james.adaptiveicon.R$attr: int selectableItemBackground -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void attachEntity(wangdaye.com.geometricweather.db.entities.WeatherEntity) -androidx.customview.R$attr: int ttcIndex -okio.Sink: okio.Timeout timeout() -androidx.appcompat.view.menu.ListMenuItemView: android.view.LayoutInflater getInflater() -com.tencent.bugly.crashreport.CrashReport$WebViewInterface: java.lang.CharSequence getContentDescription() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String windLevel -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListPopupWindow -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String name -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Subhead -androidx.legacy.coreutils.R$drawable: int notification_bg -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -okhttp3.internal.http2.Http2Reader$Handler: void windowUpdate(int,long) -cyanogenmod.externalviews.ExternalView: void onActivityPaused(android.app.Activity) -androidx.hilt.work.R$attr: R$attr() -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Title -com.google.android.material.R$styleable: int MenuItem_android_title -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onComplete() -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getWindDegree() -androidx.activity.R$id: int accessibility_custom_action_13 -androidx.preference.R$drawable: int abc_textfield_search_activated_mtrl_alpha -okio.RealBufferedSource: java.lang.String readUtf8() -com.turingtechnologies.materialscrollbar.R$bool: int abc_action_bar_embed_tabs -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.preference.R$styleable: int PreferenceTheme_preferenceCategoryStyle -com.tencent.bugly.proguard.ap: java.util.Map g -com.google.android.material.R$styleable: int ActionBar_contentInsetStartWithNavigation -androidx.preference.R$color: int material_grey_900 -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -wangdaye.com.geometricweather.R$attr: int actionBarTheme -com.google.android.material.R$attr: int listPreferredItemPaddingLeft -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -androidx.preference.R$styleable: int[] AppCompatImageView -okhttp3.HttpUrl: okhttp3.HttpUrl$Builder newBuilder() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: AccuCurrentResult$Wind$Speed() -com.google.android.material.R$id: int mtrl_picker_header_selection_text -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List area -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight -com.google.android.material.R$attr: int materialCircleRadius -androidx.constraintlayout.widget.R$color: int primary_material_light -okhttp3.internal.http2.Http2 -androidx.dynamicanimation.R$drawable: int notification_bg_low_normal -com.google.android.material.R$attr: int ensureMinTouchTargetSize -org.greenrobot.greendao.AbstractDaoSession: java.util.Collection getAllDaos() -androidx.constraintlayout.utils.widget.ImageFilterView: void setBrightness(float) -com.google.android.material.R$attr: int tickColorInactive -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_CRITICAL -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setCityName(java.lang.String) -android.didikee.donate.R$color: int switch_thumb_material_dark -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_textAllCaps -com.google.android.material.R$styleable: int FloatingActionButton_useCompatPadding -com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode[] values() -retrofit2.RequestBuilder: void addHeaders(okhttp3.Headers) -com.google.android.material.R$integer: int mtrl_calendar_header_orientation -cyanogenmod.app.ProfileManager: int PROFILES_STATE_DISABLED -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.util.Date Set -androidx.constraintlayout.widget.R$id: int action_bar_container -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutely -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: ThemeVersion$ThemeVersionImpl3() -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onError(java.lang.Throwable) -androidx.lifecycle.LiveData: int getVersion() -androidx.constraintlayout.widget.R$bool: int abc_action_bar_embed_tabs -android.didikee.donate.R$anim: int abc_shrink_fade_out_from_bottom -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: boolean validate(java.lang.String) -wangdaye.com.geometricweather.R$id: int tag_accessibility_pane_title -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_Underlined -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: long serialVersionUID -androidx.appcompat.R$styleable: int Spinner_popupTheme -com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_default_thickness -androidx.lifecycle.Lifecycle: void removeObserver(androidx.lifecycle.LifecycleObserver) -james.adaptiveicon.R$color: int abc_primary_text_material_dark -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotationY -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: double Value -androidx.hilt.lifecycle.R$id: int line1 -okhttp3.internal.cache.DiskLruCache$Snapshot: okio.Source[] sources -okio.Pipe$PipeSink: Pipe$PipeSink(okio.Pipe) -androidx.appcompat.widget.AppCompatCheckedTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -androidx.viewpager2.R$id: int tag_accessibility_pane_title -android.didikee.donate.R$styleable: int AppCompatTheme_colorBackgroundFloating -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$GeoLanguage getGeoLanguage() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf -io.reactivex.Observable: io.reactivex.Observable switchOnNext(io.reactivex.ObservableSource,int) -androidx.work.R$id: int text -okio.Timeout: void throwIfReached() -okhttp3.Cache$CacheResponseBody$1: void close() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: int UnitType -cyanogenmod.externalviews.KeyguardExternalView: boolean onPreDraw() -android.didikee.donate.R$styleable: int MenuItem_actionProviderClass -androidx.preference.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day -com.google.android.material.R$attr: int chipMinTouchTargetSize -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void truncateFinal() -com.tencent.bugly.proguard.x: boolean a(java.lang.Throwable) -com.bumptech.glide.R$id: int glide_custom_view_target_tag -okhttp3.internal.ws.RealWebSocket -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_material_dark -androidx.lifecycle.FullLifecycleObserverAdapter: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -com.jaredrummler.android.colorpicker.R$attr: int buttonBarButtonStyle -com.github.rahatarmanahmed.cpv.R$attr: int cpv_color -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterOverflowTextAppearance -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_displayOptions -androidx.constraintlayout.widget.R$attr: int fontProviderFetchStrategy -james.adaptiveicon.R$styleable: int Toolbar_titleMarginStart -com.google.android.material.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -androidx.constraintlayout.widget.R$style: int Platform_AppCompat -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType[] $VALUES -wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Panel -com.google.android.material.R$dimen: int mtrl_slider_label_radius -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: io.reactivex.SingleSource other -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Inverse -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColor -com.xw.repo.bubbleseekbar.R$styleable: int[] RecycleListView -androidx.recyclerview.R$id: int accessibility_custom_action_22 -com.amap.api.location.APSServiceBase: void onCreate() -okhttp3.RealCall: okhttp3.internal.connection.StreamAllocation streamAllocation() -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_layoutManager -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver -androidx.hilt.R$id: int line1 -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult -wangdaye.com.geometricweather.R$attr: int positiveButtonText -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int status -okio.HashingSource: okio.HashingSource sha1(okio.Source) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTag -okhttp3.internal.ws.WebSocketWriter: byte[] maskKey -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_android_layout -okhttp3.FormBody: long writeOrCountBytes(okio.BufferedSink,boolean) -wangdaye.com.geometricweather.R$array: int pressure_unit_values -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property CurrentPosition -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedHeightMajor -android.didikee.donate.R$drawable: int abc_ic_menu_overflow_material -james.adaptiveicon.R$id: int checkbox -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeStyle -androidx.viewpager.R$attr: int fontProviderCerts -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableStart -androidx.fragment.R$id: int accessibility_custom_action_13 -com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_padding_vertical_material -androidx.hilt.work.R$styleable: int FontFamily_fontProviderFetchStrategy -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_LOCATION -androidx.constraintlayout.widget.R$attr: int layout_constraintTop_toTopOf -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeBackground -com.google.gson.stream.JsonReader: void skipToEndOfLine() -wangdaye.com.geometricweather.R$styleable: int OnSwipe_nestedScrollFlags -androidx.coordinatorlayout.R$id: int bottom -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -androidx.appcompat.R$style: int Widget_AppCompat_ListView_DropDown -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String INSTALL_TIME -com.google.android.material.R$attr: int actionModeSelectAllDrawable -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.Scheduler$Worker worker -com.google.android.material.R$drawable: int abc_vector_test -androidx.work.R$styleable: int FontFamily_fontProviderCerts -android.didikee.donate.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -io.reactivex.Observable: java.lang.Iterable blockingIterable(int) -wangdaye.com.geometricweather.R$id: int container_main_details -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_Solid -com.tencent.bugly.proguard.w: com.tencent.bugly.proguard.w a() -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status valueOf(java.lang.String) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: long getUpdateTime() -com.google.android.material.R$attr: int fontProviderQuery -androidx.constraintlayout.widget.R$attr: int clickAction -wangdaye.com.geometricweather.R$id: int dialog_background_location_title -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationY -retrofit2.converter.gson.GsonRequestBodyConverter: com.google.gson.Gson gson -com.google.android.material.R$attr: int targetId -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit -com.tencent.bugly.proguard.p: int a(java.lang.String,java.lang.String,java.lang.String[],com.tencent.bugly.proguard.o,boolean) -com.google.android.material.R$color: int mtrl_outlined_stroke_color -android.didikee.donate.R$styleable: int ActionBar_progressBarStyle -wangdaye.com.geometricweather.R$id: int right -androidx.legacy.coreutils.R$dimen: R$dimen() -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_maxProgress -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_pivotY -androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_large_material -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder certificatePinner(okhttp3.CertificatePinner) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int bufferSize -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSnowPrecipitationProbability(java.lang.Float) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String logo -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Visibility -wangdaye.com.geometricweather.R$styleable: int Constraint_barrierDirection -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer dewPoint -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Small_Inverse -com.amap.api.location.AMapLocation: java.lang.String q -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_RC4_128_SHA -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: void run() -com.tencent.bugly.proguard.ak: void a(com.tencent.bugly.proguard.i) -cyanogenmod.content.Intent: java.lang.String ACTION_APP_FAILURE -okhttp3.Cache$Entry: int code -com.jaredrummler.android.colorpicker.R$id: int scrollIndicatorUp -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver parent -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int itemShapeInsetStart -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getUvIndex() -com.google.android.material.R$styleable: int State_constraints -android.didikee.donate.R$attr: int initialActivityCount -com.google.android.material.R$drawable: int abc_list_longpressed_holo -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelBackground -androidx.hilt.R$styleable: int ColorStateListItem_alpha -okhttp3.Challenge: okhttp3.Challenge withCharset(java.nio.charset.Charset) -com.tencent.bugly.proguard.ao: void a(com.tencent.bugly.proguard.i) -com.google.android.material.R$styleable: int ConstraintSet_deriveConstraintsFrom -androidx.appcompat.R$attr: int actionBarTheme -androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_62 -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_backgroundTint -okhttp3.internal.connection.RouteSelector: java.util.List proxies -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: boolean isDisposed() -com.google.android.material.chip.Chip: void setChipIconSizeResource(int) -com.xw.repo.bubbleseekbar.R$attr: int buttonStyle -com.google.android.material.chip.Chip: void setCheckable(boolean) -wangdaye.com.geometricweather.R$styleable: int ActionMode_subtitleTextStyle -androidx.drawerlayout.R$color: int ripple_material_light -cyanogenmod.providers.CMSettings$Secure: float getFloat(android.content.ContentResolver,java.lang.String) -wangdaye.com.geometricweather.R$attr: int fontWeight -wangdaye.com.geometricweather.R$attr: int lineHeight -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType GOOGLE -com.tencent.bugly.crashreport.common.info.a: java.lang.Object at -cyanogenmod.weather.WeatherLocation: java.lang.String access$702(cyanogenmod.weather.WeatherLocation,java.lang.String) -io.reactivex.internal.util.ExceptionHelper$Termination: long serialVersionUID -com.google.android.material.R$styleable: int TabItem_android_layout -androidx.preference.R$attr: int checkedTextViewStyle -androidx.dynamicanimation.R$id: int action_text -com.jaredrummler.android.colorpicker.R$attr: int dialogPreferenceStyle -android.support.v4.app.INotificationSideChannel$Stub$Proxy: INotificationSideChannel$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: java.util.List value -androidx.work.R$styleable: int GradientColor_android_gradientRadius -android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupWindow -okio.Segment: boolean owner -cyanogenmod.weather.RequestInfo: RequestInfo(android.os.Parcel,cyanogenmod.weather.RequestInfo$1) -androidx.loader.R$style: int Widget_Compat_NotificationActionText -james.adaptiveicon.R$drawable: int abc_seekbar_track_material -com.google.android.material.R$attr: int waveOffset -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeSplitBackground -androidx.preference.R$dimen: int abc_switch_padding -com.tencent.bugly.crashreport.common.info.a: long i -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customStringValue -android.didikee.donate.R$id: int beginning -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog -james.adaptiveicon.R$color: int primary_text_default_material_dark -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_toLeftOf -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure -androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnCreate() -androidx.hilt.lifecycle.R$attr: int alpha -androidx.core.widget.NestedScrollView: void setOnScrollChangeListener(androidx.core.widget.NestedScrollView$OnScrollChangeListener) -okio.Buffer: okio.ByteString sha256() -wangdaye.com.geometricweather.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getAbbreviation(android.content.Context) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: MfHistoryResult() -androidx.coordinatorlayout.R$styleable: int[] FontFamily -com.xw.repo.bubbleseekbar.R$attr: int arrowHeadLength -com.amap.api.location.AMapLocation: java.lang.String getStreetNum() -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_24 -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: android.os.IBinder mRemote -androidx.swiperefreshlayout.R$id: int forever -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickInactiveTintList() -com.xw.repo.bubbleseekbar.R$integer: int abc_config_activityShortDur -com.xw.repo.bubbleseekbar.R$id: int action_mode_close_button -androidx.lifecycle.MediatorLiveData: androidx.arch.core.internal.SafeIterableMap mSources -com.xw.repo.bubbleseekbar.R$styleable: int[] Toolbar -androidx.constraintlayout.widget.R$attr: int maxWidth -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$dimen: int abc_dialog_list_padding_top_no_title -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: android.os.IBinder asBinder() -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_holo_light -retrofit2.Invocation: java.lang.reflect.Method method -com.google.android.material.R$attr: int counterOverflowTextColor -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onComplete() -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getWeatherText() -com.tencent.bugly.crashreport.crash.e: java.lang.Thread$UncaughtExceptionHandler e -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBaseline_creator -wangdaye.com.geometricweather.R$id: int dialog_background_location_summary -com.tencent.bugly.crashreport.inner.InnerApi: InnerApi() -androidx.preference.R$dimen: int abc_dialog_list_padding_top_no_title -okhttp3.HttpUrl: void namesAndValuesToQueryString(java.lang.StringBuilder,java.util.List) -androidx.constraintlayout.widget.R$attr: int drawableRightCompat -android.didikee.donate.R$styleable: int Spinner_android_entries -com.jaredrummler.android.colorpicker.R$id: int textSpacerNoTitle -wangdaye.com.geometricweather.R$attr: int msb_hideDelayInMilliseconds -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat -android.didikee.donate.R$dimen: int abc_text_size_small_material -com.google.android.material.appbar.AppBarLayout: int getDownNestedScrollRange() -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_subhead_material -cyanogenmod.profiles.BrightnessSettings$1: cyanogenmod.profiles.BrightnessSettings[] newArray(int) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator QS_SHOW_BRIGHTNESS_SLIDER_VALIDATOR -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeWidth(float) -android.didikee.donate.R$attr: int trackTint -androidx.customview.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$color: int material_cursor_color -com.turingtechnologies.materialscrollbar.R$id: int scrollable -com.google.android.material.R$dimen: int material_clock_hand_stroke_width -com.tencent.bugly.crashreport.common.info.b: java.lang.String q() -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_maxLines -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void dispose() -androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_default -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getNo2() -com.xw.repo.bubbleseekbar.R$attr: int tickMarkTintMode -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat -com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomAppBar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean modifyInHour -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerComplete(io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver) -androidx.appcompat.R$color: R$color() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight -com.jaredrummler.android.colorpicker.R$string: int abc_action_mode_done -com.jaredrummler.android.colorpicker.R$attr: int cpv_showDialog -androidx.viewpager2.R$dimen: int notification_action_text_size -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabBackground -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: MaybeToObservable$MaybeToObservableObserver(io.reactivex.Observer) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Headline -retrofit2.Converter$Factory -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Co -androidx.appcompat.widget.ActivityChooserModel: void setOnChooseActivityListener(androidx.appcompat.widget.ActivityChooserModel$OnChooseActivityListener) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedWidthMinor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonStyleSmall -androidx.viewpager2.R$string -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min -androidx.constraintlayout.widget.R$styleable: int Motion_motionPathRotate -wangdaye.com.geometricweather.R$dimen: int widget_title_text_size -io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged(io.reactivex.functions.Function) -androidx.preference.R$style: int Base_Widget_AppCompat_ActionMode -james.adaptiveicon.R$attr: int colorButtonNormal -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_2_material -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableTop -androidx.preference.R$styleable: int CompoundButton_buttonTint -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_disabled_holo_dark -androidx.hilt.R$id: int title -androidx.lifecycle.LifecycleRegistry: void setCurrentState(androidx.lifecycle.Lifecycle$State) -cyanogenmod.weatherservice.ServiceRequestResult$1: ServiceRequestResult$1() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconTint -com.google.android.material.R$styleable: int[] Badge -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog_MinWidth -okhttp3.internal.platform.Android10Platform: void enableSessionTickets(javax.net.ssl.SSLSocket) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onLockscreenSlideOffsetChanged(float) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_material_dark -androidx.constraintlayout.widget.R$color: int ripple_material_light -com.xw.repo.bubbleseekbar.R$attr: int popupTheme -wangdaye.com.geometricweather.R$id: int barrier -com.google.android.material.R$style: int Widget_MaterialComponents_ChipGroup -androidx.constraintlayout.widget.R$styleable: int PopupWindow_overlapAnchor -cyanogenmod.externalviews.KeyguardExternalView: void onKeyguardDismissed() -androidx.constraintlayout.widget.R$styleable: int RecycleListView_paddingBottomNoButtons -androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnStart() -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme_Dark -com.google.android.material.R$styleable: int AnimatedStateListDrawableItem_android_drawable -wangdaye.com.geometricweather.R$anim: int design_snackbar_in -androidx.appcompat.R$drawable: int abc_ic_arrow_drop_right_black_24dp -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.BiFunction resultSelector -android.didikee.donate.R$styleable: int CompoundButton_buttonCompat -android.didikee.donate.R$drawable: int abc_ic_star_black_48dp -wangdaye.com.geometricweather.R$string: int not_set -com.google.android.material.R$attr: int layout_scrollFlags -com.tencent.bugly.crashreport.common.info.a: void d(java.lang.String) -com.google.android.material.slider.RangeSlider: int getLabelBehavior() -cyanogenmod.app.ThemeVersion: int getVersion() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_left -com.google.android.material.R$styleable: int MaterialButton_android_insetBottom -androidx.constraintlayout.widget.R$id: int search_button -wangdaye.com.geometricweather.R$attr: int cornerSize -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customDimension -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorHeight(int) -cyanogenmod.profiles.LockSettings: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: long serialVersionUID -androidx.viewpager.R$integer: R$integer() -com.turingtechnologies.materialscrollbar.R$string -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_text_color -com.google.gson.FieldNamingPolicy$5 -wangdaye.com.geometricweather.R$styleable: int Insets_paddingRightSystemWindowInsets -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -androidx.vectordrawable.R$styleable: int GradientColor_android_centerX -com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout -com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace[] values() -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable -androidx.constraintlayout.widget.R$dimen: int abc_control_padding_material -androidx.preference.R$drawable: int abc_text_select_handle_middle_mtrl_light -androidx.constraintlayout.widget.R$attr: int motion_postLayoutCollision -com.google.android.material.behavior.HideBottomViewOnScrollBehavior: HideBottomViewOnScrollBehavior(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int TabLayout_tabInlineLabel -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_textOn -wangdaye.com.geometricweather.R$attr: int bsb_auto_adjust_section_mark -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -com.amap.api.location.APSService: APSService() -com.jaredrummler.android.colorpicker.R$anim: int abc_tooltip_enter -androidx.constraintlayout.widget.R$color: int material_grey_50 -androidx.activity.R$styleable: int FontFamilyFont_android_fontWeight -okhttp3.ResponseBody: okio.BufferedSource source() -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: void close() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorPrimaryDark -james.adaptiveicon.R$attr: int homeLayout -com.tencent.bugly.crashreport.crash.c: java.lang.String n -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Snackbar -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: double Value -com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: java.util.HashSet a -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void otherError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$styleable: int View_paddingStart -com.google.android.material.R$attr: int insetForeground -android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$string: int settings_title_trend_horizontal_line_switch -androidx.lifecycle.ComputableLiveData$2: ComputableLiveData$2(androidx.lifecycle.ComputableLiveData) -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getIconResEnd() -com.turingtechnologies.materialscrollbar.R$attr: int behavior_peekHeight -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List diaoyu -android.didikee.donate.R$color -androidx.appcompat.R$styleable: int Toolbar_titleTextColor -cyanogenmod.externalviews.ExternalViewProviderService -com.google.android.material.R$dimen: int abc_button_inset_horizontal_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Text -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_corner_radius_medium -cyanogenmod.providers.CMSettings$DelimitedListValidator: android.util.ArraySet mValidValueSet -androidx.viewpager2.R$drawable: int notification_bg_low -com.tencent.bugly.crashreport.common.strategy.a: a(android.content.Context,java.util.List) -io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent[] values() -okio.Utf8: long size(java.lang.String) -com.xw.repo.bubbleseekbar.R$color: int tooltip_background_dark -com.google.android.material.R$color: int secondary_text_disabled_material_dark -androidx.preference.R$dimen: int abc_list_item_height_small_material -wangdaye.com.geometricweather.R$styleable: int[] ColorPanelView -android.didikee.donate.R$styleable: int MenuItem_android_visible -androidx.viewpager.R$id: int action_text -okhttp3.OkHttpClient$1: void addLenient(okhttp3.Headers$Builder,java.lang.String) -android.didikee.donate.R$styleable: int AppCompatTheme_popupWindowStyle -io.reactivex.Observable: io.reactivex.Observable interval(long,long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: void setUnit(java.lang.String) -com.google.android.material.R$id: int invisible -com.turingtechnologies.materialscrollbar.R$attr: int gapBetweenBars -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: AccuCurrentResult$RealFeelTemperatureShade() -cyanogenmod.app.ProfileManager: boolean profileExists(java.util.UUID) -androidx.recyclerview.R$styleable: int RecyclerView_android_orientation -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: long serialVersionUID -wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_material -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_14 -androidx.customview.R$dimen: int compat_button_inset_horizontal_material -androidx.constraintlayout.widget.R$styleable: int[] StateListDrawable -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getReadableDb() -com.tencent.bugly.proguard.ao: void a(java.lang.StringBuilder,int) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_transformPivotX -com.tencent.bugly.proguard.ar: java.lang.String c -wangdaye.com.geometricweather.R$styleable: int Fragment_android_tag -okhttp3.CertificatePinner$Builder: okhttp3.CertificatePinner$Builder add(java.lang.String,java.lang.String[]) -okhttp3.Headers: java.lang.String[] namesAndValues -com.bumptech.glide.MemoryCategory -com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getIconTintMode() -cyanogenmod.themes.ThemeChangeRequest: int DEFAULT_WALLPAPER_ID -com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.UV uv -com.tencent.bugly.crashreport.CrashReport: void postException(java.lang.Thread,int,java.lang.String,java.lang.String,java.lang.String,java.util.Map) -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String level -wangdaye.com.geometricweather.R$layout: int item_weather_daily_title_large -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType PNG -wangdaye.com.geometricweather.R$styleable: int Constraint_chainUseRtl -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetEndWithActions -androidx.recyclerview.R$id: int icon -okhttp3.internal.cache.DiskLruCache: java.util.LinkedHashMap lruEntries -io.reactivex.internal.operators.observable.ObservableReplay$Node: long serialVersionUID -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationText(android.content.Context,float) -androidx.preference.R$dimen: int notification_content_margin_start -com.google.android.material.R$dimen: int mtrl_progress_circular_inset -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -androidx.appcompat.widget.ActionBarOverlayLayout: void setIcon(android.graphics.drawable.Drawable) -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacingHorizontal -androidx.recyclerview.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: AccuDailyResult$DailyForecasts$Day() -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerY -com.turingtechnologies.materialscrollbar.R$attr: int itemPadding -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_queryBackground -androidx.constraintlayout.widget.R$layout: R$layout() -com.google.android.material.chip.ChipGroup: void setSingleLine(int) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: long serialVersionUID -androidx.preference.UnPressableLinearLayout -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constrainedWidth -com.google.android.material.circularreveal.CircularRevealGridLayout: void setCircularRevealScrimColor(int) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawableItem_android_drawable -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat -com.amap.api.fence.GeoFence: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$id: int direct -androidx.transition.R$id: int icon_group -wangdaye.com.geometricweather.R$drawable: int shortcuts_wind -cyanogenmod.app.Profile: cyanogenmod.profiles.BrightnessSettings mBrightness -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: int status -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextColor(android.content.res.ColorStateList) -okhttp3.internal.http.HttpHeaders: java.lang.String readToken(okio.Buffer) -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemIconDisabledAlpha -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -androidx.cardview.widget.CardView: void setCardBackgroundColor(android.content.res.ColorStateList) -androidx.viewpager2.R$styleable: int RecyclerView_android_orientation -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart -androidx.dynamicanimation.animation.DynamicAnimation: void removeUpdateListener(androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationUpdateListener) -com.tencent.bugly.proguard.a: void a(java.lang.String,java.lang.Object) -androidx.drawerlayout.R$styleable: int GradientColor_android_startX -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: long serialVersionUID -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: android.os.IBinder asBinder() -okio.BufferedSource: okio.Buffer buffer() -com.tencent.bugly.crashreport.crash.jni.a: android.content.Context a -com.tencent.bugly.crashreport.crash.c: int a -androidx.lifecycle.extensions.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$attr: int endIconTint -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry geometry -com.google.android.material.button.MaterialButton: void setIconPadding(int) -wangdaye.com.geometricweather.R$style: int Theme_Design_NoActionBar -wangdaye.com.geometricweather.R$string: int content_desc_search_filter_off -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_weightSum -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_framePosition -okhttp3.internal.http2.Http2Stream$FramingSource: long maxByteCount -cyanogenmod.themes.ThemeManager$2 -android.didikee.donate.R$drawable: int abc_list_selector_disabled_holo_dark -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: androidx.lifecycle.Lifecycle$Event mEvent -wangdaye.com.geometricweather.R$color: int accent_material_light -com.amap.api.fence.DistrictItem: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceCategoryStyle -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void dispose() -wangdaye.com.geometricweather.R$styleable: int SearchView_voiceIcon -okhttp3.RequestBody: RequestBody() -com.tencent.bugly.crashreport.R -okhttp3.internal.http.HttpHeaders: long contentLength(okhttp3.Headers) -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_textOn -james.adaptiveicon.R$styleable: int SwitchCompat_splitTrack -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customBoolean -wangdaye.com.geometricweather.R$color: int mtrl_tabs_icon_color_selector -com.google.android.material.R$dimen: int fastscroll_minimum_range -io.reactivex.Observable: io.reactivex.Observable concat(java.lang.Iterable) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Tooltip -okio.AsyncTimeout$Watchdog: AsyncTimeout$Watchdog() -com.google.android.material.R$dimen: int mtrl_btn_text_btn_icon_padding -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder sslSocketFactory(javax.net.ssl.SSLSocketFactory) -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_DIALOG_THEME -cyanogenmod.weather.RequestInfo$Builder: boolean mIsQueryOnly -androidx.hilt.lifecycle.R$id: int dialog_button -androidx.preference.R$styleable: int ActionBar_titleTextStyle -wangdaye.com.geometricweather.R$attr: int textAllCaps -wangdaye.com.geometricweather.R$dimen: int widget_current_weather_icon_size -com.google.android.material.R$styleable: int TextInputLayout_startIconCheckable -com.tencent.bugly.proguard.u: java.util.Map e -androidx.dynamicanimation.R$id: int notification_background -wangdaye.com.geometricweather.R$color: int colorRoot -io.reactivex.internal.util.NotificationLite: boolean isError(java.lang.Object) -io.reactivex.internal.subscriptions.EmptySubscription: boolean offer(java.lang.Object,java.lang.Object) -okhttp3.internal.http2.Http2Connection$ReaderRunnable: Http2Connection$ReaderRunnable(okhttp3.internal.http2.Http2Connection,okhttp3.internal.http2.Http2Reader) -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isSubActive -com.google.android.material.R$style: int Widget_AppCompat_Button -okio.Buffer: okio.Buffer writeTo(java.io.OutputStream) -wangdaye.com.geometricweather.R$font: R$font() -androidx.constraintlayout.widget.R$attr: int ratingBarStyleSmall -androidx.fragment.R$attr: int fontWeight -androidx.appcompat.R$attr: int actionBarStyle -com.google.android.material.R$dimen: int design_bottom_navigation_item_min_width -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String TODAYS_HIGH_TEMPERATURE -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_40 -androidx.preference.R$styleable: int MenuGroup_android_checkableBehavior -com.google.android.material.R$attr: int contentInsetEnd -cyanogenmod.app.CustomTile$GridExpandedStyle: void setGridItems(java.util.ArrayList) -androidx.appcompat.R$attr: int textColorSearchUrl -androidx.preference.R$layout: int preference_widget_switch_compat -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_radius -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogCenterButtons -wangdaye.com.geometricweather.R$string: int donate -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: android.content.res.ColorStateList getSupportBackgroundTintList() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -com.xw.repo.bubbleseekbar.R$integer -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver) -retrofit2.Utils$GenericArrayTypeImpl: java.lang.reflect.Type componentType -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date setDate -james.adaptiveicon.R$style: int Widget_AppCompat_Button -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedWidthMajor -com.jaredrummler.android.colorpicker.R$string: int abc_shareactionprovider_share_with -androidx.activity.R$integer: int status_bar_notification_info_maxnum -com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonCompat -okhttp3.Headers$Builder: java.lang.String get(java.lang.String) -com.amap.api.location.DPoint$1 -wangdaye.com.geometricweather.R$attr: int actionTextColorAlpha -james.adaptiveicon.R$color: int secondary_text_default_material_dark -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval valueOf(java.lang.String) -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: CompletableFutureCallAdapterFactory$BodyCallAdapter(java.lang.reflect.Type) -okhttp3.internal.cache.DiskLruCache$Entry: void writeLengths(okio.BufferedSink) -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setAppOverlay(java.lang.String,java.lang.String) -cyanogenmod.app.ILiveLockScreenManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: CaiYunForecastResult() -com.google.android.material.R$styleable: int Constraint_flow_verticalAlign -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderFetchStrategy -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_dividerHeight -androidx.preference.R$style: int ThemeOverlay_AppCompat_ActionBar -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver INNER_DISPOSED -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionButtonStyle -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: MfHistoryResult$History$Snow() -wangdaye.com.geometricweather.R$styleable: int SignInButton_buttonSize -wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity: ClockDayVerticalWidgetConfigActivity() -okhttp3.internal.http2.Http2Connection: okhttp3.Protocol getProtocol() -androidx.appcompat.R$attr: int titleTextStyle -androidx.appcompat.R$attr: int listPreferredItemHeightLarge -androidx.appcompat.app.ToolbarActionBar -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd -com.turingtechnologies.materialscrollbar.R$dimen: int compat_control_corner_material -com.google.android.material.R$style: int Base_V28_Theme_AppCompat_Light -james.adaptiveicon.R$attr: int dividerPadding -okhttp3.Cache$CacheRequestImpl: okio.Sink cacheOut -okhttp3.internal.http2.Http2Codec: void writeRequestHeaders(okhttp3.Request) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_indeterminateProgressStyle -cyanogenmod.weatherservice.WeatherProviderService$1 -androidx.recyclerview.R$styleable -okhttp3.internal.cache.DiskLruCache: boolean closed -androidx.hilt.R$styleable: int GradientColor_android_endY -androidx.recyclerview.widget.RecyclerView: void setScrollState(int) -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEVELOPMENT_SHORTCUT -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_NULL_SHA -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.reflect.Type responseType -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: java.lang.Object[] row -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCloseDrawable -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String treeDescription -com.amap.api.fence.GeoFenceManagerBase: void setGeoFenceListener(com.amap.api.fence.GeoFenceListener) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String TypeID -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onAttach(android.os.IBinder) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathOffset(float) -com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_inflatedId -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog -okhttp3.WebSocketListener: void onMessage(okhttp3.WebSocket,java.lang.String) -okhttp3.internal.connection.RealConnection: void connectTunnel(int,int,int,okhttp3.Call,okhttp3.EventListener) -androidx.viewpager.widget.PagerTitleStrip: void setNonPrimaryAlpha(float) -james.adaptiveicon.R$attr: int isLightTheme -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -com.google.android.material.transformation.ExpandableTransformationBehavior: ExpandableTransformationBehavior(android.content.Context,android.util.AttributeSet) -okhttp3.Cache$Entry: okhttp3.Handshake handshake -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_transitionEasing -androidx.dynamicanimation.R$id: int right_icon -androidx.vectordrawable.R$string -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Id -io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function) -androidx.work.R$dimen: int notification_right_side_padding_top -androidx.preference.R$attr: int windowActionBarOverlay -androidx.appcompat.widget.AppCompatImageView: void setImageURI(android.net.Uri) -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long serialVersionUID -androidx.appcompat.R$attr: int buttonBarStyle -androidx.appcompat.R$attr: int logoDescription -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_change_size_collapse_motion_spec -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Icon -okio.Buffer: java.lang.Object clone() -wangdaye.com.geometricweather.R$style: int TestStyleWithLineHeight -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_corner_radius -com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String VERSION_NAME -com.tencent.bugly.proguard.i: long a(long,int,boolean) -cyanogenmod.providers.CMSettings$Global: java.lang.String WAKE_WHEN_PLUGGED_OR_UNPLUGGED -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_createCustomTileWithTag -com.google.android.gms.base.R$attr: int scopeUris -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_NOTIF_COUNT -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty12H -androidx.appcompat.R$dimen: int abc_dialog_fixed_height_minor -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.R$attr: int checkboxStyle -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.Function leftEnd -android.didikee.donate.R$style: int Widget_AppCompat_Spinner_Underlined -androidx.preference.R$attr: int iconSpaceReserved -cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onListenerConnected() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitationProbability() -okhttp3.internal.Util: java.net.InetAddress decodeIpv6(java.lang.String,int,int) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Button -androidx.hilt.work.R$id: int accessibility_custom_action_8 -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback -okhttp3.HttpUrl: java.net.URL url() -com.google.android.material.appbar.AppBarLayout: int getTopInset() -com.tencent.bugly.a: void onDbCreate(android.database.sqlite.SQLiteDatabase) -com.google.android.material.R$styleable: int KeyCycle_motionProgress -wangdaye.com.geometricweather.R$color: int abc_color_highlight_material -cyanogenmod.app.Profile: java.lang.String mName -wangdaye.com.geometricweather.R$color: int colorRootDark_light -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endX -com.tencent.bugly.crashreport.common.info.a: java.util.Map V -androidx.work.R$color: R$color() -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_framePosition -okhttp3.WebSocket: long queueSize() -com.google.android.material.R$dimen: int material_font_2_0_box_collapsed_padding_top -cyanogenmod.app.ICMStatusBarManager$Stub -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeShareDrawable -androidx.preference.R$styleable: int Toolbar_navigationIcon -okhttp3.EventListener: void responseBodyEnd(okhttp3.Call,long) -wangdaye.com.geometricweather.R$attr: int seekBarIncrement -com.turingtechnologies.materialscrollbar.R$color: int abc_background_cache_hint_selector_material_dark -androidx.vectordrawable.animated.R$attr: int fontProviderAuthority -cyanogenmod.externalviews.ExternalViewProviderService$1$1: java.lang.Object call() -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: int limit -androidx.lifecycle.ReportFragment: void onStart() -wangdaye.com.geometricweather.R$id: int notification_main_column -com.google.android.material.R$attr: int textLocale -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setPubTime(java.util.Date) -com.bumptech.glide.R$styleable: int GradientColor_android_endY -androidx.core.R$id: int notification_background -wangdaye.com.geometricweather.R$string: int abc_searchview_description_clear -cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.ICMStatusBarManager getStatusBarInterface() -wangdaye.com.geometricweather.R$styleable: int Spinner_android_entries -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int) -com.google.android.material.R$dimen: int abc_control_inset_material -com.google.android.material.R$dimen: int design_snackbar_min_width -com.google.android.material.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay_v14 -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_CompactMenu -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: int UnitType -com.google.android.material.floatingactionbutton.FloatingActionButton: int getExpandedComponentIdHint() -com.google.android.material.R$styleable: int Transform_android_elevation -com.google.android.material.chip.Chip: void setHideMotionSpecResource(int) -com.google.android.material.R$dimen: int mtrl_btn_corner_radius -androidx.transition.R$drawable: int notification_icon_background -com.tencent.bugly.crashreport.biz.b: long f -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: IKeyguardExternalViewCallbacks$Stub$Proxy(android.os.IBinder) -androidx.constraintlayout.widget.R$integer: int status_bar_notification_info_maxnum -okhttp3.RealCall$AsyncCall: okhttp3.Request request() -wangdaye.com.geometricweather.R$id: int baseline -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.R$styleable: int ActionBar_title -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.util.concurrent.locks.Lock lock -wangdaye.com.geometricweather.R$string: int feedback_updating_weather_data -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_109 -okio.SegmentPool: long MAX_SIZE -wangdaye.com.geometricweather.R$drawable: int ic_temperature_celsius -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicLong index -androidx.constraintlayout.widget.R$id: int dragRight -com.jaredrummler.android.colorpicker.R$color: int preference_fallback_accent_color -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$color: int mtrl_tabs_legacy_text_color_selector -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dialog -com.xw.repo.bubbleseekbar.R$attr: int textColorSearchUrl -com.google.android.gms.common.stats.WakeLockEvent -androidx.preference.R$styleable: int ActionBar_contentInsetEnd -com.google.android.material.R$attr: int shapeAppearanceLargeComponent -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedHeightMajor -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -io.reactivex.Observable: io.reactivex.Observable subscribeOn(io.reactivex.Scheduler) -com.google.android.material.R$styleable: int TextInputLayout_suffixText -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setUploadProcess(boolean) -okio.Okio$3: void flush() -androidx.vectordrawable.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitationDuration -androidx.preference.R$attr: int drawableBottomCompat -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_Solid -androidx.appcompat.R$attr: int suggestionRowLayout -com.google.android.material.chip.Chip: void setCloseIconEnabledResource(int) -androidx.recyclerview.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_default -com.xw.repo.bubbleseekbar.R$style: int Platform_V21_AppCompat -androidx.coordinatorlayout.R$id: R$id() -wangdaye.com.geometricweather.common.ui.widgets.TagView -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -okhttp3.internal.Util: boolean nonEmptyIntersection(java.util.Comparator,java.lang.String[],java.lang.String[]) -androidx.appcompat.R$attr: int drawableTint -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_IME_SWITCHER_VALIDATOR -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: void run() -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -com.xw.repo.bubbleseekbar.R$styleable: int[] SwitchCompat -com.google.android.material.R$styleable: int Slider_haloColor -com.google.android.material.R$attr: int flow_firstVerticalBias -james.adaptiveicon.R$dimen: int abc_dropdownitem_text_padding_right -com.jaredrummler.android.colorpicker.R$attr: int voiceIcon -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense -com.turingtechnologies.materialscrollbar.R$attr: int actionOverflowButtonStyle -com.google.android.material.R$color: int material_on_surface_emphasis_medium -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginRight -com.tencent.bugly.CrashModule: boolean d -androidx.vectordrawable.animated.R$layout: R$layout() -okio.HashingSource: javax.crypto.Mac mac -androidx.constraintlayout.helper.widget.Flow: void setVerticalAlign(int) -io.reactivex.internal.util.NotificationLite: java.lang.Object disposable(io.reactivex.disposables.Disposable) -com.jaredrummler.android.colorpicker.R$attr: int toolbarNavigationButtonStyle -com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$attr: int boxBackgroundMode -okhttp3.internal.http1.Http1Codec$FixedLengthSink: Http1Codec$FixedLengthSink(okhttp3.internal.http1.Http1Codec,long) -com.baidu.location.e.h$a: com.baidu.location.e.h$a a -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_34 -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String weatherText -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addQueryParameter(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_second_track_size -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: java.lang.String WeatherCode -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getShowMotionSpec() -wangdaye.com.geometricweather.R$styleable: int MenuItem_actionViewClass -android.didikee.donate.R$id: int checkbox -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.R$styleable: int StateListDrawable_android_exitFadeDuration -okhttp3.internal.http.StatusLine: java.lang.String toString() -cyanogenmod.hardware.CMHardwareManager: int getArrayValue(int[],int,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: java.lang.String pubTime -okhttp3.OkHttpClient: java.net.Proxy proxy -androidx.transition.R$id: int ghost_view -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getResidentPosition() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: KeyguardExternalViewProviderService$Provider$ProviderImpl$4(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getIcePrecipitationProbability() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeIndex -com.turingtechnologies.materialscrollbar.R$dimen: int hint_alpha_material_dark -androidx.transition.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_visible -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonStyleSmall -androidx.loader.R$dimen: int compat_control_corner_material -androidx.constraintlayout.widget.R$drawable: int abc_tab_indicator_material -wangdaye.com.geometricweather.R$attr: int layout_constraintEnd_toStartOf -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_popupMenuStyle -okhttp3.internal.ws.WebSocketWriter$FrameSink: okio.Timeout timeout() -okhttp3.Cookie$Builder: java.lang.String domain -androidx.preference.R$drawable: int ic_arrow_down_24dp -com.google.android.gms.common.server.response.SafeParcelResponse -com.tencent.bugly.proguard.j: java.lang.String b -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer cloudCover -com.google.android.material.R$attr: int bottomSheetStyle -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean emitLast -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerSlack -cyanogenmod.app.ThemeVersion$ComponentVersion -androidx.coordinatorlayout.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: double Value -com.google.android.material.R$styleable: int ActionBar_contentInsetEndWithActions -android.didikee.donate.R$styleable: int AppCompatTheme_checkedTextViewStyle -com.amap.api.location.AMapLocation: int b(com.amap.api.location.AMapLocation,int) -wangdaye.com.geometricweather.R$layout: int preference_widget_seekbar -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSmallPopupMenu -com.xw.repo.bubbleseekbar.R$style: int Base_DialogWindowTitleBackground_AppCompat -cyanogenmod.providers.ThemesContract$PreviewColumns: ThemesContract$PreviewColumns() -com.tencent.bugly.proguard.p: android.database.Cursor a(com.tencent.bugly.proguard.p,boolean,java.lang.String,java.lang.String[],java.lang.String,java.lang.String[],java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.tencent.bugly.proguard.o) -io.reactivex.Observable: io.reactivex.Observable startWithArray(java.lang.Object[]) -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert -androidx.coordinatorlayout.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$color: int material_on_primary_emphasis_high_type -wangdaye.com.geometricweather.R$drawable: int flag_tr -okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] publicSuffixExceptionListBytes -io.reactivex.Observable: io.reactivex.Observable flatMapMaybe(io.reactivex.functions.Function) -james.adaptiveicon.R$drawable: int abc_text_select_handle_middle_mtrl_light -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.Observer downstream -com.google.android.material.R$dimen: int mtrl_calendar_landscape_header_width -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Time -wangdaye.com.geometricweather.R$attr: int duration -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.disposables.CompositeDisposable set -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderFetchStrategy -com.google.android.material.R$attr: int textAppearanceBody2 -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setDraggableFromAnywhere(boolean) -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_title -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: long subscriberCount -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather -cyanogenmod.profiles.BrightnessSettings: int mValue -com.google.android.material.R$style: int Widget_MaterialComponents_BottomSheet -retrofit2.ParameterHandler$Headers: int p -com.google.android.material.R$styleable: int[] KeyCycle -android.didikee.donate.R$styleable: int TextAppearance_android_textStyle -wangdaye.com.geometricweather.R$styleable: int[] InkPageIndicator -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_dividerHeight -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_reboot -com.google.android.material.R$styleable: int MenuItem_android_icon -androidx.hilt.work.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List minutelyForecast -cyanogenmod.app.BaseLiveLockManagerService$1: boolean getLiveLockScreenEnabled() -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver a() -com.tencent.bugly.crashreport.common.strategy.a -wangdaye.com.geometricweather.R$attr: int counterTextColor -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: AccuLocationResult$Region() -androidx.viewpager2.R$dimen -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -androidx.constraintlayout.widget.R$drawable: int abc_list_pressed_holo_dark -androidx.appcompat.R$styleable: int MenuItem_android_onClick -com.google.android.material.R$color: int dim_foreground_disabled_material_dark -wangdaye.com.geometricweather.R$id: int accelerate -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetEnd -cyanogenmod.app.CMContextConstants$Features: CMContextConstants$Features() -com.tencent.bugly.crashreport.common.strategy.StrategyBean: long e -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_ttcIndex -cyanogenmod.weather.CMWeatherManager: int requestWeatherUpdate(cyanogenmod.weather.WeatherLocation,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean cancelled -okhttp3.internal.connection.StreamAllocation: void release() -com.bumptech.glide.integration.okhttp.R$id: int line3 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarDivider -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.R$attr: int backgroundInsetEnd -androidx.recyclerview.R$id: int tag_unhandled_key_event_manager -okhttp3.HttpUrl$Builder: int schemeDelimiterOffset(java.lang.String,int,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: AccuCurrentResult$WindChillTemperature$Metric() -okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE_BACKUP -androidx.vectordrawable.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.R$attr: int actionOverflowMenuStyle -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterOverflowTextAppearance -okio.Buffer: long writeAll(okio.Source) -com.google.android.material.R$styleable: int MaterialCalendarItem_itemShapeAppearanceOverlay -com.google.android.material.chip.ChipGroup: void setSingleSelection(int) -com.turingtechnologies.materialscrollbar.R$id: int line1 -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemBitmap(android.graphics.Bitmap) -wangdaye.com.geometricweather.R$styleable: int MaterialRadioButton_buttonTint -androidx.preference.R$styleable: int ActionMenuItemView_android_minWidth -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.functions.Function bufferClose -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontStyle -androidx.preference.R$attr: int buttonTint -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_imageButtonStyle -androidx.appcompat.R$styleable: int SwitchCompat_android_textOff -com.google.android.material.R$id: int rounded -androidx.viewpager2.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_disableDependentsState -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginBottom -retrofit2.http.Field -androidx.appcompat.widget.ScrollingTabContainerView: ScrollingTabContainerView(android.content.Context) -androidx.core.R$id: int accessibility_custom_action_4 -okhttp3.internal.connection.StreamAllocation: void release(okhttp3.internal.connection.RealConnection) -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getChipDrawable() -androidx.appcompat.widget.SearchView: void setQueryHint(java.lang.CharSequence) -wangdaye.com.geometricweather.R$string: int tag_wind -com.google.android.material.R$styleable: int Toolbar_contentInsetLeft -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean feelsLike -com.google.android.material.R$dimen: int tooltip_vertical_padding -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_edittext -com.google.android.material.R$string: int mtrl_picker_invalid_format_use -androidx.preference.R$style: int Base_Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.R$drawable: int notif_temp_88 -cyanogenmod.app.ICMTelephonyManager: boolean isSubActive(int) -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_switchPreferenceStyle -wangdaye.com.geometricweather.R$drawable: int ic_star -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startY -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_isSunlightEnhancementSelfManaged -wangdaye.com.geometricweather.R$color: int secondary_text_disabled_material_light -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_vertical -androidx.preference.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.xw.repo.bubbleseekbar.R$id: int tag_unhandled_key_listeners -com.tencent.bugly.proguard.i: java.util.HashMap a(java.util.Map,int,boolean) -androidx.swiperefreshlayout.R$dimen: int notification_small_icon_size_as_large -james.adaptiveicon.R$styleable: int MenuView_subMenuArrow -wangdaye.com.geometricweather.settings.activities.AboutActivity -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.util.Map O -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: double Value -androidx.coordinatorlayout.R$styleable: int ColorStateListItem_android_color -okhttp3.internal.platform.Jdk9Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType[] values() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxBackgroundColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_48dp -android.didikee.donate.R$styleable: int LinearLayoutCompat_showDividers -androidx.constraintlayout.widget.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: AccuCurrentResult$LocalSource() -androidx.constraintlayout.widget.R$id: int ignore -com.google.android.material.R$dimen: int mtrl_navigation_item_shape_vertical_margin -com.google.android.material.R$attr: int layout_constraintRight_toRightOf -com.xw.repo.bubbleseekbar.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$drawable: int mtrl_dialog_background -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean done -com.turingtechnologies.materialscrollbar.R$attr: int layout_scrollInterpolator -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Snackbar -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: ICMHardwareService$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getRelativeHumidity() -com.google.android.material.R$attr: int showDividers -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowMinWidthMinor -com.google.android.material.R$interpolator: R$interpolator() -androidx.swiperefreshlayout.R$attr: int fontWeight -wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_tintMode -androidx.viewpager.widget.PagerTitleStrip: void setGravity(int) -wangdaye.com.geometricweather.R$dimen: int notification_big_circle_margin -okhttp3.internal.http2.Http2Codec: java.lang.String UPGRADE -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onPause() -okio.ForwardingTimeout: okio.Timeout delegate() -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: io.reactivex.Observer downstream -okio.HashingSource: okio.HashingSource md5(okio.Source) -androidx.preference.R$attr: int showDividers -okhttp3.internal.http2.Hpack$Reader: int dynamicTableIndex(int) -cyanogenmod.externalviews.ExternalView$6: void run() -com.google.android.material.R$attr: int materialButtonStyle -androidx.appcompat.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWindDirection -wangdaye.com.geometricweather.R$id: int widget_day_week_week_5 -wangdaye.com.geometricweather.R$attr: int layout_behavior -com.google.android.gms.common.api.Scope: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$dimen: int hint_pressed_alpha_material_light -com.google.android.material.R$styleable: int Layout_layout_constraintCircleRadius -retrofit2.RequestBuilder -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -wangdaye.com.geometricweather.R$string: int content_des_swipe_right_to_delete -androidx.coordinatorlayout.R$id: int accessibility_custom_action_15 -com.google.android.material.R$styleable: int Constraint_android_layout_marginRight -androidx.constraintlayout.motion.widget.MotionLayout: float getVelocity() -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer windChillTemperature -okhttp3.internal.cache.InternalCache: void remove(okhttp3.Request) -androidx.preference.R$style: int Preference_CheckBoxPreference_Material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: int getStatus() -okhttp3.FormBody: java.util.List encodedValues -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: boolean daylight -cyanogenmod.weather.WeatherInfo$DayForecast: double getLow() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getSunRise() -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_title_baseline_to_top_fullscreen -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: int unitArrayIndex -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarWidgetTheme -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_isThemeApplying -androidx.preference.R$anim: int abc_fade_out -okhttp3.internal.platform.ConscryptPlatform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) -androidx.appcompat.widget.AppCompatSpinner: void setPopupBackgroundDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$attr: int layout_goneMarginTop -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void dispose() -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moon_icon -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -android.didikee.donate.R$layout: int abc_action_menu_layout -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_begin -androidx.constraintlayout.widget.R$attr: int flow_verticalBias -wangdaye.com.geometricweather.R$attr: int percentWidth -androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context) -androidx.work.NetworkType: androidx.work.NetworkType valueOf(java.lang.String) -androidx.legacy.coreutils.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.R$id: int titleDividerNoCustom -com.google.android.material.R$id: int transition_layout_save -wangdaye.com.geometricweather.R$styleable: int ActionMode_background -okhttp3.OkHttpClient$Builder: OkHttpClient$Builder() -android.didikee.donate.R$styleable: int ActionBar_progressBarPadding -androidx.lifecycle.ViewModel: void closeWithRuntimeException(java.lang.Object) -androidx.preference.R$attr: int trackTint -wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_light -cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: int MPH -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node findByEntry(java.util.Map$Entry) -james.adaptiveicon.R$styleable: int[] LinearLayoutCompat_Layout -android.didikee.donate.R$color: int material_grey_100 -okio.AsyncTimeout: long IDLE_TIMEOUT_NANOS -okhttp3.internal.io.FileSystem$1: void delete(java.io.File) -com.tencent.bugly.crashreport.CrashReport$WebViewInterface: void addJavascriptInterface(com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface,java.lang.String) -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customColorDrawableValue -com.jaredrummler.android.colorpicker.R$attr: int actionModeBackground -com.jaredrummler.android.colorpicker.R$id: int left -com.google.android.material.R$styleable: int Toolbar_contentInsetStart -com.google.android.material.R$styleable: int Transform_android_transformPivotY -wangdaye.com.geometricweather.R$style: int material_button -com.jaredrummler.android.colorpicker.R$attr: int collapseIcon -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIcon(android.graphics.drawable.Drawable) -androidx.preference.R$styleable: int AppCompatTheme_panelMenuListWidth -com.google.android.material.R$style: int Widget_Compat_NotificationActionContainer -james.adaptiveicon.R$color: int secondary_text_disabled_material_dark -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupWindow -androidx.constraintlayout.widget.R$dimen: int notification_large_icon_width -cyanogenmod.profiles.StreamSettings: cyanogenmod.profiles.StreamSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void innerComplete(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver) -wangdaye.com.geometricweather.R$dimen: int little_weather_icon_container_size -wangdaye.com.geometricweather.R$id: int transparency_title -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar_TextView -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: java.lang.String icon -com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar -com.google.gson.stream.JsonReader: char[] buffer -cyanogenmod.util.ColorUtils: double calculateDeltaE(double,double,double,double,double,double) -wangdaye.com.geometricweather.R$color: int mtrl_tabs_icon_color_selector_colored -androidx.preference.R$drawable: int abc_text_cursor_material -androidx.preference.R$attr: int autoSizeMaxTextSize -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.turingtechnologies.materialscrollbar.R$integer: int hide_password_duration -cyanogenmod.weatherservice.ServiceRequestResult$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int UVIndex -androidx.constraintlayout.utils.widget.MotionTelltales -com.google.android.material.R$styleable: int ConstraintSet_flow_lastHorizontalBias -androidx.hilt.work.R$dimen: int notification_small_icon_background_padding -androidx.constraintlayout.utils.widget.ImageFilterButton: void setRound(float) -androidx.preference.R$drawable: int abc_ratingbar_small_material -okhttp3.internal.cache.DiskLruCache: void evictAll() -okio.Okio$3 -wangdaye.com.geometricweather.R$attr: int fontProviderQuery -james.adaptiveicon.R$styleable: int Toolbar_titleMarginEnd -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_max -androidx.recyclerview.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.R$id: int month_navigation_previous -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.hilt.work.R$layout: int custom_dialog -wangdaye.com.geometricweather.R$layout: int activity_daily_trend_display_manage -com.google.android.material.slider.Slider: int getFocusedThumbIndex() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_weight -com.tencent.bugly.proguard.z: byte[] a(int,byte[],byte[]) -com.google.android.material.R$id: int line3 -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Badge -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_23 -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox -okio.Buffer: okio.Buffer writeString(java.lang.String,java.nio.charset.Charset) -androidx.appcompat.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTopCompat -com.jaredrummler.android.colorpicker.R$dimen: int abc_config_prefDialogWidth -cyanogenmod.content.Intent: java.lang.String EXTRA_RECENTS_LONG_PRESS_RELEASE -wangdaye.com.geometricweather.R$color: int mtrl_filled_stroke_color -com.google.android.material.R$color: int bright_foreground_disabled_material_light -android.didikee.donate.R$attr: int listItemLayout -io.reactivex.internal.subscribers.DeferredScalarSubscriber: boolean hasValue -com.amap.api.location.AMapLocationClientOption: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$color: int background_material_dark -androidx.appcompat.resources.R$id: int icon_group -com.google.android.material.slider.Slider: void setThumbStrokeWidthResource(int) -androidx.recyclerview.R$id: int accessibility_custom_action_14 -com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -okhttp3.internal.http.RealInterceptorChain: int writeTimeoutMillis() -cyanogenmod.app.ILiveLockScreenManager -okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part createFormData(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: java.lang.String Unit -com.tencent.bugly.crashreport.common.info.a: boolean W -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void clear() -com.google.android.material.R$styleable: int OnSwipe_dragScale -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type UNKNOWN -androidx.lifecycle.ReportFragment$LifecycleCallbacks -androidx.transition.R$styleable: int GradientColorItem_android_offset -android.didikee.donate.R$anim: int abc_popup_enter -com.google.gson.stream.JsonWriter -cyanogenmod.weather.WeatherLocation$1 -android.didikee.donate.R$styleable: int AppCompatTheme_windowNoTitle -james.adaptiveicon.R$styleable: int MenuItem_android_enabled -wangdaye.com.geometricweather.R$color: int colorRipple -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_getSubInformation_0 -cyanogenmod.themes.IThemeService: boolean processThemeResources(java.lang.String) -androidx.savedstate.Recreator -com.google.android.material.R$styleable: int Layout_layout_constraintTop_creator -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.String TABLENAME -com.tencent.bugly.proguard.i: boolean a(int,boolean) -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.R$color: int mtrl_tabs_colored_ripple_color -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle CIRCULAR -wangdaye.com.geometricweather.R$dimen: int notification_media_narrow_margin -james.adaptiveicon.R$attr: int color -androidx.constraintlayout.widget.R$drawable: int abc_ic_go_search_api_material -androidx.drawerlayout.R$layout: R$layout() -androidx.preference.R$id: int scrollIndicatorDown -androidx.preference.R$dimen: int abc_action_button_min_width_material -androidx.fragment.R$layout: int notification_action_tombstone -com.tencent.bugly.crashreport.crash.c: boolean k() -okhttp3.internal.platform.JdkWithJettyBootPlatform: JdkWithJettyBootPlatform(java.lang.reflect.Method,java.lang.reflect.Method,java.lang.reflect.Method,java.lang.Class,java.lang.Class) -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.Observer downstream -com.google.android.material.R$styleable: int ShapeableImageView_strokeWidth -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: AccuMinuteResult$SummaryBean() -wangdaye.com.geometricweather.R$styleable: int MenuItem_alphabeticModifiers -com.amap.api.location.AMapLocation: double getLatitude() -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onError(java.lang.Throwable) -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy SOURCE -james.adaptiveicon.R$attr: int subtitleTextColor -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias -androidx.appcompat.R$styleable: int AppCompatTheme_dividerVertical -com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_light -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: ObservableBuffer$BufferSkipObserver(io.reactivex.Observer,int,int,java.util.concurrent.Callable) -cyanogenmod.weather.WeatherInfo: long mTimestamp -wangdaye.com.geometricweather.R$styleable: int OnClick_clickAction -okhttp3.internal.http.RealInterceptorChain: okhttp3.Response proceed(okhttp3.Request) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeApparentTemperature -androidx.recyclerview.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$attr: int actionBarTabBarStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Spinner -com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_backgroundTintMode -com.amap.api.location.DPoint: DPoint(android.os.Parcel) -com.google.android.material.R$attr: int counterTextColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: AccuCurrentResult$Precip1hr$Imperial() -androidx.legacy.coreutils.R$layout: int notification_action_tombstone -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_3DES_EDE_CBC_SHA -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language GERMAN -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer grassIndex -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -james.adaptiveicon.R$attr: int autoSizeTextType -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_material_dark -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_RINGTONE -io.reactivex.internal.observers.DeferredScalarObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_corner_material -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_dither -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Suffix -com.google.android.material.chip.Chip: void setIconEndPadding(float) -com.google.android.material.R$styleable: int ActionBar_homeLayout -com.google.android.material.R$styleable: int MaterialButton_iconTintMode -com.turingtechnologies.materialscrollbar.R$attr: int toolbarStyle -com.amap.api.location.AMapLocation: java.lang.String d -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_AutoCompleteTextView -com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Solid -okio.InflaterSource: boolean refill() -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode INTERNAL_ERROR -android.didikee.donate.R$drawable: int abc_btn_radio_material -okhttp3.internal.Util: okio.ByteString UTF_32_LE_BOM -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemPaddingLeft -com.google.android.material.R$styleable: int ActionBar_hideOnContentScroll -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ProgressBar -wangdaye.com.geometricweather.R$styleable: int[] ButtonBarLayout -androidx.fragment.R$styleable: int FontFamilyFont_android_fontWeight -androidx.appcompat.widget.AppCompatSpinner: void setAdapter(android.widget.Adapter) -james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -cyanogenmod.externalviews.KeyguardExternalView$3: android.graphics.Rect val$clipRect -com.xw.repo.bubbleseekbar.R$string: int abc_action_bar_up_description -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_cut_mtrl_alpha -androidx.preference.R$style: int Preference_PreferenceScreen -com.tencent.bugly.crashreport.crash.jni.b: java.lang.String a(java.io.BufferedInputStream) -james.adaptiveicon.R$style: int Widget_AppCompat_Button_Colored -androidx.preference.R$attr: int autoCompleteTextViewStyle -androidx.activity.R$color -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String weatherText -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_SPEED_UNIT -io.reactivex.Observable: java.lang.Object blockingSingle() -com.tencent.bugly.proguard.ak: java.lang.String g -cyanogenmod.app.Profile: int compareTo(java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_2_00 -androidx.appcompat.R$dimen: int tooltip_y_offset_touch -io.reactivex.Observable: void blockingForEach(io.reactivex.functions.Consumer) -androidx.constraintlayout.widget.R$attr: int buttonCompat -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setIndicatorPosition(int) -okhttp3.internal.cache.InternalCache: void update(okhttp3.Response,okhttp3.Response) -okhttp3.internal.http1.Http1Codec: okhttp3.internal.connection.StreamAllocation streamAllocation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSo2() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitation -androidx.constraintlayout.widget.R$id: int line3 -androidx.preference.R$styleable: int MenuItem_actionProviderClass -androidx.appcompat.resources.R$styleable: int GradientColor_android_centerColor -com.tencent.bugly.crashreport.crash.h5.b: java.lang.String b() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX -wangdaye.com.geometricweather.R$attr: int startIconTintMode -io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.ObservableSource) -androidx.preference.Preference: void setOnPreferenceChangeListener(androidx.preference.Preference$OnPreferenceChangeListener) -androidx.vectordrawable.R$dimen: int notification_main_column_padding_top -androidx.preference.R$dimen: int abc_floating_window_z -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterTextAppearance -com.google.android.material.internal.ParcelableSparseIntArray -androidx.constraintlayout.widget.R$styleable: int Constraint_android_maxHeight -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.Integer alti -androidx.constraintlayout.widget.R$id: int chain -androidx.preference.R$attr: int actionModeCloseDrawable -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog_Alert -okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,okio.ByteString) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: boolean cancelled -com.google.android.material.R$style: int Theme_MaterialComponents_Light_NoActionBar -com.google.android.material.internal.CheckableImageButton -androidx.appcompat.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -com.google.android.gms.base.R$string: int common_google_play_services_unsupported_text -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void dispose() -io.reactivex.Observable: io.reactivex.Observable share() -okhttp3.internal.cache.CacheRequest: void abort() -androidx.preference.R$attr: int iconTint -cyanogenmod.providers.CMSettings$NameValueCache: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) -com.google.android.material.timepicker.RadialViewGroup: RadialViewGroup(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$styleable: int Spinner_android_popupBackground -io.reactivex.internal.observers.LambdaObserver: void dispose() -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_CompactMenu -retrofit2.RequestFactory: okhttp3.MediaType contentType -wangdaye.com.geometricweather.R$id: int left -com.google.android.material.R$styleable: int Constraint_android_maxHeight -androidx.core.R$id: int tag_accessibility_heading -james.adaptiveicon.R$styleable: int SwitchCompat_switchTextAppearance -wangdaye.com.geometricweather.R$attr: int autoSizePresetSizes -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startX -android.didikee.donate.R$styleable: int AppCompatTextView_drawableLeftCompat -com.google.android.material.R$color: int material_on_surface_stroke -androidx.appcompat.resources.R$dimen: int notification_small_icon_background_padding -androidx.preference.R$styleable: int[] ActionBarLayout -wangdaye.com.geometricweather.R$string: int settings_title_dark_mode -okhttp3.FormBody$Builder: java.util.List values -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -com.google.android.material.R$styleable: int Layout_android_layout_height -com.google.android.material.R$attr: int colorControlNormal -com.google.android.material.R$drawable: int abc_ic_menu_share_mtrl_alpha -okhttp3.MultipartBody -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_LED_OFF_VALIDATOR -androidx.drawerlayout.R$id: int text -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getDegreeDayTemperature() -james.adaptiveicon.R$attr: int displayOptions -okhttp3.HttpUrl$Builder -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: double Value -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDate(java.util.Date) -james.adaptiveicon.R$styleable: int MenuItem_actionViewClass -com.google.android.material.R$style: int Widget_Design_Snackbar -com.amap.api.fence.GeoFence: void setCenter(com.amap.api.location.DPoint) -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Pollen pollen -io.reactivex.Observable: java.lang.Object to(io.reactivex.functions.Function) -com.google.android.material.R$drawable: int abc_textfield_search_default_mtrl_alpha -androidx.lifecycle.MutableLiveData -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_height -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: org.reactivestreams.Publisher mPublisher -wangdaye.com.geometricweather.R$styleable: int Chip_chipIconSize -androidx.preference.R$dimen: int abc_search_view_preferred_height -wangdaye.com.geometricweather.db.entities.AlertEntityDao: org.greenrobot.greendao.query.Query weatherEntity_AlertEntityListQuery -androidx.hilt.lifecycle.R$id: int action_text -james.adaptiveicon.R$attr: int windowFixedWidthMajor -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider mExternalViewProvider -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: double Value -androidx.appcompat.R$drawable: int notification_icon_background -androidx.appcompat.R$style: int Base_Theme_AppCompat_DialogWhenLarge -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.R$color: int androidx_core_ripple_material_light -com.google.android.material.R$attr: int behavior_halfExpandedRatio -okhttp3.Headers: Headers(okhttp3.Headers$Builder) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -android.didikee.donate.R$styleable: int SearchView_android_inputType -com.google.android.material.R$attr: int listPopupWindowStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: double Value -androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_Icon -okhttp3.internal.tls.DistinguishedNameParser: int beg -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onKeyguardShowing -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_disabled_z -cyanogenmod.hardware.ICMHardwareService: int[] getVibratorIntensity() -cyanogenmod.themes.ThemeManager$1 -wangdaye.com.geometricweather.R$attr: int circularInset -com.google.android.material.chip.ChipGroup: void setSelectionRequired(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textSize -androidx.appcompat.widget.ListPopupWindow: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -wangdaye.com.geometricweather.R$id: int mtrl_calendar_days_of_week -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dark -okhttp3.CacheControl: int maxStaleSeconds -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_APP_SWITCH_ACTION_VALIDATOR -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator LIVE_DISPLAY_HINTED_VALIDATOR -androidx.appcompat.widget.LinearLayoutCompat: void setShowDividers(int) -cyanogenmod.app.suggest.AppSuggestManager: android.graphics.drawable.Drawable loadIcon(cyanogenmod.app.suggest.ApplicationSuggestion) -androidx.work.R$id: int accessibility_custom_action_25 -android.didikee.donate.R$dimen: int abc_text_size_display_4_material -james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionModeOverlay -androidx.preference.R$color: int abc_secondary_text_material_dark -com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.a a(android.content.Context,java.util.List) -com.tencent.bugly.proguard.s: java.net.HttpURLConnection a(java.lang.String,byte[],java.lang.String,java.util.Map) -okhttp3.internal.ws.RealWebSocket: java.lang.String receivedCloseReason -com.google.android.material.R$attr: int windowActionBar -android.didikee.donate.R$style: int Widget_AppCompat_RatingBar_Indicator -com.google.android.material.R$dimen: int mtrl_progress_indicator_full_rounded_corner_radius -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motionTarget -wangdaye.com.geometricweather.R$dimen: int cpv_column_width -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Title -com.tencent.bugly.proguard.ak: java.util.ArrayList y -com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy[] values() -wangdaye.com.geometricweather.R$string: int aqi_1 -android.didikee.donate.R$id: int add -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Tooltip -com.tencent.bugly.proguard.k: void a(java.lang.StringBuilder,int) -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul3H -wangdaye.com.geometricweather.R$attr: int materialButtonToggleGroupStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_switchStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric -androidx.coordinatorlayout.widget.CoordinatorLayout: int getSuggestedMinimumWidth() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position -android.didikee.donate.R$attr: int height -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.R$attr: int suffixTextColor -com.google.android.material.R$styleable: int RecyclerView_android_clipToPadding -com.google.android.material.R$attr: int itemShapeInsetBottom -androidx.legacy.coreutils.R$integer -wangdaye.com.geometricweather.R$attr: int fastScrollEnabled -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonPhaseAngle(java.lang.Integer) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_iconTintMode -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_height -james.adaptiveicon.R$drawable: int abc_action_bar_item_background_material -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_setLiveLockScreenEnabled -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: CNWeatherResult$WeatherX() -wangdaye.com.geometricweather.common.basic.models.weather.Alert: void descByTime(java.util.List) -androidx.transition.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.vectordrawable.R$id: int action_container -wangdaye.com.geometricweather.R$style: int Preference_DropDown -com.jaredrummler.android.colorpicker.R$attr: int alertDialogCenterButtons -com.google.android.material.R$styleable: int CustomAttribute_customIntegerValue -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getContent() -androidx.appcompat.widget.SwitchCompat: android.graphics.PorterDuff$Mode getTrackTintMode() -androidx.preference.EditTextPreferenceDialogFragmentCompat: EditTextPreferenceDialogFragmentCompat() -androidx.viewpager2.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_105 -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginBottom -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarWidgetTheme -androidx.appcompat.R$styleable: int MenuView_android_windowAnimationStyle -okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor setLevel(okhttp3.logging.HttpLoggingInterceptor$Level) -cyanogenmod.providers.CMSettings$System: long getLong(android.content.ContentResolver,java.lang.String,long) -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startColor -com.google.android.material.textfield.TextInputLayout: com.google.android.material.internal.CheckableImageButton getEndIconToUpdateDummyDrawable() -wangdaye.com.geometricweather.background.service.CMWeatherProviderService -com.jaredrummler.android.colorpicker.ColorPickerDialog -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -com.google.android.material.R$layout: int custom_dialog -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_dialogPreferenceStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarSize -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String name -androidx.legacy.coreutils.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$attr: int itemMaxLines -androidx.preference.R$styleable: int DialogPreference_negativeButtonText -com.tencent.bugly.crashreport.crash.anr.b -cyanogenmod.externalviews.ExternalView: boolean onPreDraw() -com.google.android.gms.internal.location.zzbe -com.tencent.bugly.crashreport.common.info.b: java.lang.String d() -james.adaptiveicon.R$styleable: int MenuItem_showAsAction -androidx.preference.R$attr: int textAppearanceSearchResultTitle -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_navigationMode -androidx.appcompat.R$styleable: int AppCompatTextView_drawableBottomCompat -james.adaptiveicon.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: void setSurfaceAngle(float) -android.didikee.donate.R$attr: int alpha -com.tencent.bugly.crashreport.biz.b: long d() -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation mWeatherLocation -wangdaye.com.geometricweather.R$string: int wait_refresh -com.google.android.gms.base.R$id: int dark -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getCo() -androidx.constraintlayout.widget.R$id: int animateToStart -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTopCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean -com.google.android.material.chip.Chip: float getChipEndPadding() -com.google.android.material.R$styleable: int Variant_region_heightMoreThan -cyanogenmod.weather.ICMWeatherManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Bridge -io.reactivex.internal.disposables.CancellableDisposable: boolean isDisposed() -androidx.preference.R$attr: int backgroundSplit -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_measureWithLargestChild -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -android.didikee.donate.R$id: int edit_query -okhttp3.internal.ws.WebSocketWriter$FrameSink: WebSocketWriter$FrameSink(okhttp3.internal.ws.WebSocketWriter) -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSearchResultTitle -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Medium -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter nighttimeWeatherCodeConverter -androidx.drawerlayout.R$color: int secondary_text_default_material_light -com.google.android.material.R$styleable: int KeyTrigger_triggerId -cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(cyanogenmod.app.CustomTile$1) -com.turingtechnologies.materialscrollbar.R$attr: int voiceIcon -com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SYSTEM_PROFILES_ENABLED_VALIDATOR -androidx.recyclerview.R$id: int tag_accessibility_clickable_spans -cyanogenmod.app.Profile: java.util.Collection getStreamSettings() -com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getSupportImageTintList() -androidx.appcompat.R$attr: int autoSizePresetSizes -com.jaredrummler.android.colorpicker.R$color: int background_material_dark -wangdaye.com.geometricweather.R$id: int cpv_color_panel_new -james.adaptiveicon.R$styleable: int TextAppearance_android_textFontWeight -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder addConverterFactory(retrofit2.Converter$Factory) -okhttp3.internal.cache.DiskLruCache: long maxSize -com.google.android.material.R$styleable: int MaterialButton_iconGravity -cyanogenmod.app.Profile$TriggerType -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -com.google.android.material.R$dimen: int design_bottom_navigation_margin -androidx.appcompat.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.R$styleable: int[] ConstraintSet -androidx.preference.R$color: int bright_foreground_inverse_material_dark -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format_example -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setAlpnProtocols -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: BuglyBroadcastReceiver() -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_SECURE_SETTINGS -okhttp3.internal.cache2.Relay: long upstreamPos -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onComplete() -androidx.constraintlayout.helper.widget.Layer: void setTranslationX(float) -com.google.android.material.R$attr: int layout_constrainedWidth -com.google.android.material.R$styleable: int StateListDrawable_android_variablePadding -cyanogenmod.profiles.ConnectionSettings$1 -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_state_dragged -wangdaye.com.geometricweather.R$style: int Preference_SwitchPreferenceCompat -okio.HashingSource -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationZ -wangdaye.com.geometricweather.R$id: int bidirectional -androidx.loader.R$styleable: int[] ColorStateListItem -androidx.vectordrawable.R$drawable: int notification_action_background -com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_text_size -androidx.constraintlayout.motion.widget.MotionLayout: androidx.constraintlayout.motion.widget.DesignTool getDesignTool() -com.google.android.material.R$styleable: int Constraint_android_orientation -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_percent -com.amap.api.fence.GeoFence: int o -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Tooltip -james.adaptiveicon.R$dimen: int hint_pressed_alpha_material_light -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog_MinWidth -com.turingtechnologies.materialscrollbar.R$attr: int layout_anchor -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ApparentTemperature -wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_checked_circle -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_scaleY -io.reactivex.Observable: io.reactivex.Observable range(int,int) -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] PREVAILING_RULE -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Integer aqiIndex -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_listLayout -androidx.preference.R$attr: int seekBarStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX temperature -com.google.android.material.R$styleable: int BottomNavigationView_backgroundTint -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicReference upstream -androidx.recyclerview.R$styleable: int FontFamilyFont_android_ttcIndex -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMargin -wangdaye.com.geometricweather.R$styleable: int Constraint_drawPath -wangdaye.com.geometricweather.R$drawable: int shortcuts_refresh -androidx.preference.R$attr: int colorButtonNormal -wangdaye.com.geometricweather.R$id: int activity_preview_icon_container -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onNext(java.lang.Object) -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object ASYNC_DISPOSED -wangdaye.com.geometricweather.R$styleable: int MenuItem_iconTintMode -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_DEFAULT_THEME -com.turingtechnologies.materialscrollbar.R$attr: int thickness -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf -com.google.android.material.circularreveal.CircularRevealLinearLayout -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void schedule() -cyanogenmod.profiles.AirplaneModeSettings$BooleanState: int STATE_ENABLED -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Spinner_Underlined -okhttp3.internal.http2.Http2Stream: okio.Sink getSink() -com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context,android.util.AttributeSet,int) -androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory mFactory -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean wind -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onComplete() -androidx.recyclerview.R$attr: int recyclerViewStyle -io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function,boolean,int) -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long count -wangdaye.com.geometricweather.R$layout: int item_weather_daily_astro -com.google.gson.stream.JsonReader: int peekNumber() -io.reactivex.Observable: io.reactivex.Observable doOnSubscribe(io.reactivex.functions.Consumer) -androidx.preference.R$layout: int abc_cascading_menu_item_layout -com.jaredrummler.android.colorpicker.ColorPickerView: int getSliderTrackerColor() -androidx.preference.R$id: int notification_main_column -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_end_icon_margin_start -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton_CloseMode -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_QUICK_QS_PULLDOWN_VALIDATOR -androidx.hilt.R$anim: R$anim() -com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_PrimarySurface -com.xw.repo.bubbleseekbar.R$id: int group_divider -com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorAccent -com.jaredrummler.android.colorpicker.R$attr: int displayOptions -cyanogenmod.profiles.StreamSettings: boolean mOverride -com.google.android.gms.base.R$id: int wide -com.google.android.gms.common.internal.safeparcel.SafeParcelReader$ParseException -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_activityChooserViewStyle -androidx.appcompat.resources.R$styleable: int GradientColor_android_endY -androidx.vectordrawable.animated.R$attr -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Alert -androidx.vectordrawable.animated.R$id: int right_side -okhttp3.internal.platform.AndroidPlatform$CloseGuard: AndroidPlatform$CloseGuard(java.lang.reflect.Method,java.lang.reflect.Method,java.lang.reflect.Method) -com.baidu.location.e.h$c: com.baidu.location.e.h$c[] values() -com.jaredrummler.android.colorpicker.R$id: int none -okhttp3.Cookie: boolean hostOnly -wangdaye.com.geometricweather.R$styleable: int ActionBar_progressBarPadding -com.amap.api.fence.GeoFenceListener: void onGeoFenceCreateFinished(java.util.List,int,java.lang.String) -wangdaye.com.geometricweather.db.entities.HistoryEntity: int nighttimeTemperature -wangdaye.com.geometricweather.R$layout: int item_weather_daily_line -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_ttcIndex -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_backgroundTint -com.turingtechnologies.materialscrollbar.R$id: int parent_matrix -retrofit2.RequestFactory$Builder: retrofit2.RequestFactory build() -com.google.android.material.R$attr: int divider -com.google.android.material.chip.Chip: void setChipTextResource(int) -androidx.hilt.work.R$dimen: int compat_button_padding_horizontal_material -androidx.appcompat.widget.ActionBarOverlayLayout: void setLogo(int) -com.amap.api.location.AMapLocation: void setConScenario(int) -cyanogenmod.externalviews.KeyguardExternalView$4: KeyguardExternalView$4(cyanogenmod.externalviews.KeyguardExternalView) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: Pollen(java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListPopupWindow -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property TimeZone -cyanogenmod.providers.CMSettings$NameValueCache: android.net.Uri mUri -cyanogenmod.app.ICustomTileListener: void onListenerConnected() -com.google.android.material.R$id: int material_minute_tv -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_start_padding_icon -androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonTintMode -org.greenrobot.greendao.AbstractDao: void delete(java.lang.Object) -com.google.android.material.R$attr: int expandedTitleGravity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX() -wangdaye.com.geometricweather.R$id: int sin -androidx.appcompat.R$attr: int actionBarItemBackground -androidx.core.R$styleable: int[] FontFamily -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_DropDownItem_Spinner -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DegreeDayTemperature -okhttp3.ResponseBody: ResponseBody() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: double Value -com.google.android.material.R$styleable: int MaterialCardView_rippleColor -com.amap.api.location.AMapLocationClientOption$AMapLocationMode -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode valueOf(java.lang.String) -wangdaye.com.geometricweather.R$id: int widget_clock_day_title -androidx.preference.R$styleable: int Preference_summary -wangdaye.com.geometricweather.R$dimen: int progress_view_size -androidx.constraintlayout.widget.R$style: int Base_DialogWindowTitleBackground_AppCompat -james.adaptiveicon.R$id: int action_context_bar -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onComplete() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Id -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void checkUploadRecordCrash() -wangdaye.com.geometricweather.R$color: int mtrl_btn_bg_color_selector -okio.ByteString: int indexOf(byte[],int) -com.bumptech.glide.integration.okhttp3.OkHttpGlideModule: OkHttpGlideModule() -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_font -com.google.android.material.R$styleable: int AppCompatTextView_fontFamily -android.didikee.donate.R$attr: int textAppearanceListItemSmall -android.didikee.donate.R$id: int action_bar -androidx.constraintlayout.widget.R$attr: int expandActivityOverflowButtonDrawable -androidx.constraintlayout.widget.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -wangdaye.com.geometricweather.R$styleable: int AlertDialog_singleChoiceItemLayout -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.db.entities.AlertEntity: AlertEntity() -androidx.constraintlayout.widget.R$drawable: int abc_btn_check_material_anim -androidx.loader.R$id: int async -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout -androidx.constraintlayout.widget.Group: void setElevation(float) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property CloudCover -androidx.viewpager2.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_25 -androidx.coordinatorlayout.R$styleable: int[] CoordinatorLayout_Layout -com.google.android.material.R$styleable: int Constraint_layout_goneMarginEnd -okhttp3.HttpUrl: java.util.List percentDecode(java.util.List,boolean) -androidx.preference.R$styleable: int AppCompatTextView_drawableBottomCompat -okio.Okio$3: void write(okio.Buffer,long) -wangdaye.com.geometricweather.R$drawable: int notif_temp_29 -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: io.reactivex.Scheduler scheduler -cyanogenmod.providers.CMSettings$Secure: java.lang.String FEATURE_TOUCH_HOVERING -cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_RINGTONE -io.reactivex.Observable: io.reactivex.Observable timeInterval() -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyBottomRight -wangdaye.com.geometricweather.R$id: int text2 -androidx.preference.EditTextPreference -okhttp3.RealCall: boolean executed -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: java.lang.Object index() -retrofit2.OptionalConverterFactory$OptionalConverter: OptionalConverterFactory$OptionalConverter(retrofit2.Converter) -com.google.android.material.R$styleable: int[] MaterialTextView -androidx.vectordrawable.R$styleable: int GradientColor_android_startX -retrofit2.Utils: void checkNotPrimitive(java.lang.reflect.Type) -androidx.constraintlayout.widget.R$attr: int placeholder_emptyVisibility -org.greenrobot.greendao.AbstractDao: java.lang.Object loadCurrent(android.database.Cursor,int,boolean) -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_daySelectedStyle -wangdaye.com.geometricweather.R$id: int moldValue -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String insee -com.google.android.material.R$styleable: int ForegroundLinearLayout_android_foreground -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int UPDATING -wangdaye.com.geometricweather.R$attr: int indicatorColor -androidx.appcompat.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -android.didikee.donate.R$color: int secondary_text_default_material_light -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.CompletableObserver downstream -com.bumptech.glide.load.HttpException: HttpException(java.lang.String,int,java.lang.Throwable) -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver -com.turingtechnologies.materialscrollbar.R$attr: int headerLayout -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: AccuLocationResult() -com.google.android.material.R$styleable: int NavigationView_itemIconSize -com.tencent.bugly.crashreport.crash.c: long g -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.constraintlayout.widget.R$attr: int telltales_velocityMode -james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_CheckBox -com.tencent.bugly.crashreport.common.info.a: com.tencent.bugly.crashreport.common.info.a b() -androidx.fragment.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_cut_mtrl_alpha -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: MinutelyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -android.didikee.donate.R$dimen: int notification_main_column_padding_top -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -james.adaptiveicon.R$styleable: int ActionBar_backgroundStacked -androidx.viewpager2.R$id: int accessibility_action_clickable_span -com.google.android.material.R$dimen: int mtrl_calendar_action_confirm_button_min_width -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitationProbability() -com.tencent.bugly.proguard.r: byte[] g -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableBottom -androidx.vectordrawable.animated.R$dimen: int notification_top_pad -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAVBAR_LEFT_IN_LANDSCAPE_VALIDATOR -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: double Value -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endY -retrofit2.HttpServiceMethod: retrofit2.CallAdapter createCallAdapter(retrofit2.Retrofit,java.lang.reflect.Method,java.lang.reflect.Type,java.lang.annotation.Annotation[]) -okhttp3.internal.http2.Hpack: okio.ByteString checkLowercase(okio.ByteString) -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mVibrateMode -com.google.android.material.transformation.FabTransformationScrimBehavior -retrofit2.adapter.rxjava2.BodyObservable: io.reactivex.Observable upstream -com.tencent.bugly.proguard.y: int c -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogStyle -okhttp3.internal.cache.DiskLruCache$Editor$1: void onException(java.io.IOException) -androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationY -androidx.preference.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_progress -wangdaye.com.geometricweather.R$string: int status_bar_notification_info_overflow -androidx.preference.R$styleable: int ButtonBarLayout_allowStacking -com.xw.repo.bubbleseekbar.R$dimen: int abc_button_inset_horizontal_material -com.google.android.material.R$style: int ShapeAppearanceOverlay_BottomRightCut -wangdaye.com.geometricweather.R$animator: int weather_clear_day_1 -james.adaptiveicon.R$color: int material_deep_teal_200 -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void removeScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,java.io.File) -wangdaye.com.geometricweather.R$style: int Preference_Information_Material -androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context,android.util.AttributeSet,int) -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: android.content.Context b -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -wangdaye.com.geometricweather.R$attr: int fastScrollVerticalTrackDrawable -androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_CheckBox -androidx.preference.R$styleable: int MenuItem_android_menuCategory -com.bumptech.glide.R$dimen: int notification_small_icon_size_as_large -androidx.lifecycle.ViewModelProviders: ViewModelProviders() -com.jaredrummler.android.colorpicker.R$id: int action_mode_close_button -cyanogenmod.weather.WeatherLocation: java.lang.String getCountry() -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getDefaultLiveLockScreen -okhttp3.internal.http2.Http2Codec: okhttp3.Response$Builder readHttp2HeadersList(okhttp3.Headers,okhttp3.Protocol) -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: ObservableIntervalRange$IntervalRangeObserver(io.reactivex.Observer,long,long) -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties -androidx.appcompat.R$styleable: int SearchView_android_maxWidth -wangdaye.com.geometricweather.R$id: int mtrl_picker_fullscreen -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_hint -cyanogenmod.weather.WeatherInfo$DayForecast: void writeToParcel(android.os.Parcel,int) -androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$attr: int paddingEnd -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay[] values() -cyanogenmod.app.Profile$LockMode: Profile$LockMode() -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline4 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextBackground -androidx.vectordrawable.R$style -wangdaye.com.geometricweather.R$id: int time -androidx.preference.R$id: int accessibility_custom_action_0 -okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: Http2Connection$IntervalPingRunnable(okhttp3.internal.http2.Http2Connection) -com.google.android.material.slider.BaseSlider: void setSeparationUnit(int) -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: java.lang.String toString() -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetLeft -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getDetail() -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -androidx.fragment.R$id: int notification_main_column -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_right_mtrl_dark -wangdaye.com.geometricweather.R$styleable: int Slider_haloRadius -wangdaye.com.geometricweather.R$dimen: int material_emphasis_disabled -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayVerticalWidgetConfigActivity -androidx.appcompat.widget.LinearLayoutCompat: int getDividerWidth() -wangdaye.com.geometricweather.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.R$drawable: int ic_tag_off -okhttp3.Address: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setLongitude(java.lang.String) -wangdaye.com.geometricweather.R$string: int key_item_animation_switch -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String WidgetPhrase -com.amap.api.location.AMapLocationClientOption: boolean isOnceLocation() -cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING -android.didikee.donate.R$attr: int subtitleTextAppearance -androidx.transition.R$styleable: int GradientColor_android_endY -com.google.android.material.R$id: int labelGroup -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_subMenuArrow -androidx.work.R$id: int action_image -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream pushStream(int,java.util.List,boolean) -cyanogenmod.weather.CMWeatherManager$2: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) -androidx.constraintlayout.widget.R$id: int search_mag_icon -james.adaptiveicon.R$styleable: int Toolbar_collapseIcon -com.turingtechnologies.materialscrollbar.R$id: int customPanel -com.amap.api.fence.GeoFence: android.app.PendingIntent d -cyanogenmod.app.Profile: java.util.Map mTriggers -wangdaye.com.geometricweather.R$style: int Platform_Widget_AppCompat_Spinner -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: java.lang.Object resource -androidx.appcompat.R$styleable: int GradientColor_android_startY -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_gravity -com.google.android.material.R$style: int ThemeOverlay_AppCompat_DayNight -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderCerts -android.didikee.donate.R$styleable: int DrawerArrowToggle_barLength -androidx.appcompat.R$drawable: int notification_bg_normal_pressed -androidx.preference.R$attr: int tint -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setPosition(int) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintStart_toStartOf -androidx.viewpager2.adapter.FragmentStateAdapter$5 -com.turingtechnologies.materialscrollbar.R$string: int hide_bottom_view_on_scroll_behavior -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarSplitStyle -retrofit2.ParameterHandler$QueryName: ParameterHandler$QueryName(retrofit2.Converter,boolean) -com.google.android.material.R$drawable: int abc_ic_search_api_material -androidx.swiperefreshlayout.R$color: int ripple_material_light -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_summaryOn -wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWidgetConfigActivity -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode -androidx.appcompat.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.drawerlayout.R$dimen: int compat_control_corner_material -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: boolean isDisposed() -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_tintMode -androidx.appcompat.R$color: int abc_search_url_text_selected -com.google.android.gms.signin.internal.zak: android.os.Parcelable$Creator CREATOR -com.tencent.bugly.proguard.v: java.util.Map o -wangdaye.com.geometricweather.common.basic.models.weather.Alert: Alert(long,java.util.Date,long,java.lang.String,java.lang.String,java.lang.String,int,int) -com.google.android.material.checkbox.MaterialCheckBox: android.content.res.ColorStateList getMaterialThemeColorsTintList() -wangdaye.com.geometricweather.R$id: int chronometer -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_background -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar -com.google.android.material.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -com.google.android.material.R$attr: int tabIndicator -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$drawable: int notification_icon_background -cyanogenmod.app.suggest.ApplicationSuggestion: int describeContents() -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_maxButtonHeight -cyanogenmod.weather.WeatherInfo: int access$902(cyanogenmod.weather.WeatherInfo,int) -androidx.lifecycle.ComputableLiveData: ComputableLiveData() -com.google.android.material.R$style: int Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean hasKey(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: int UnitType -androidx.preference.R$layout: int abc_list_menu_item_icon -com.google.android.material.R$attr: int commitIcon -com.google.android.material.R$string: int mtrl_picker_toggle_to_year_selection -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: long serialVersionUID -okio.DeflaterSink: void deflate(boolean) -androidx.swiperefreshlayout.R$attr: int fontProviderQuery -okhttp3.ConnectionPool: okhttp3.internal.connection.RealConnection get(okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) -org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Iterable) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextTextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String ShortPhrase -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_1_material -james.adaptiveicon.R$id: int action_container -androidx.customview.R$dimen: int notification_main_column_padding_top -com.tencent.bugly.proguard.aq: java.util.Map f -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -com.google.android.material.textfield.TextInputLayout: void setEndIconMode(int) -com.google.android.material.R$color: int mtrl_tabs_legacy_text_color_selector -androidx.loader.R$styleable: R$styleable() -com.jaredrummler.android.colorpicker.R$color: int secondary_text_disabled_material_light -com.google.android.material.R$styleable: int AppCompatTheme_listDividerAlertDialog -com.xw.repo.bubbleseekbar.R$anim -androidx.legacy.coreutils.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction Direction -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: AccuDailyResult$DailyForecasts$Day$Wind$Speed() -okhttp3.internal.ws.RealWebSocket: okhttp3.WebSocketListener listener -okhttp3.internal.http2.Http2: byte TYPE_WINDOW_UPDATE -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.internal.disposables.SequentialDisposable upstream -james.adaptiveicon.R$styleable: int MenuItem_android_icon -wangdaye.com.geometricweather.R$string: int settings_title_notification_background -okhttp3.OkHttpClient$Builder: okhttp3.CertificatePinner certificatePinner -com.google.android.material.R$attr: int state_collapsed -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_baseline_to_top_fullscreen -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_textAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableTop -cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.ICMTelephonyManager getService() -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_iconTintMode -wangdaye.com.geometricweather.R$attr: int tickColorActive -androidx.constraintlayout.widget.R$attr: int thickness -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_lightOnTouch -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -okhttp3.internal.connection.StreamAllocation: StreamAllocation(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.Call,okhttp3.EventListener,java.lang.Object) -com.google.android.material.datepicker.Month: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$attr: int dividerVertical -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitation() -wangdaye.com.geometricweather.R$layout: int container_snackbar -cyanogenmod.providers.CMSettings$System: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -wangdaye.com.geometricweather.R$styleable: int[] StateListDrawableItem -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_menu_material -androidx.cardview.R$color: int cardview_shadow_start_color -com.google.android.material.R$color: int mtrl_calendar_selected_range -androidx.preference.R$attr: int homeLayout -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeight -wangdaye.com.geometricweather.R$attr: int titleMarginBottom -androidx.constraintlayout.widget.R$drawable: int abc_seekbar_tick_mark_material -okhttp3.Cache$CacheResponseBody: long contentLength() -androidx.constraintlayout.widget.R$attr: int background -wangdaye.com.geometricweather.R$style: int Base_DialogWindowTitle_AppCompat -okhttp3.RequestBody$3 -com.google.android.material.R$attr: int dayInvalidStyle -okhttp3.internal.http2.Hpack: int PREFIX_4_BITS -androidx.preference.R$styleable: int AppCompatTheme_windowFixedWidthMajor -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean isDisposed() -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Colored -com.tencent.bugly.crashreport.common.info.b: java.lang.String k(android.content.Context) -androidx.preference.R$id: int accessibility_custom_action_31 -androidx.core.R$dimen: int notification_top_pad -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_COLOR_ENHANCE_VALIDATOR -okhttp3.RealCall$AsyncCall: boolean $assertionsDisabled -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_singlechoice_material -androidx.fragment.R$color: int notification_action_color_filter -com.jaredrummler.android.colorpicker.R$id: int action_menu_presenter -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_arrowSize -cyanogenmod.themes.IThemeService$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.constraintlayout.widget.R$styleable: int ActionMode_titleTextStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean() -androidx.lifecycle.ClassesInfoCache$CallbackInfo: java.util.Map mHandlerToEvent -androidx.appcompat.widget.AppCompatAutoCompleteTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.google.android.material.R$string: int exposed_dropdown_menu_content_description -com.tencent.bugly.crashreport.crash.c: void g() -cyanogenmod.weatherservice.ServiceRequest: void reject(int) -com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_bottom_material -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_elevation -androidx.lifecycle.ComputableLiveData: androidx.lifecycle.LiveData getLiveData() -androidx.appcompat.R$styleable: int SwitchCompat_switchMinWidth -okhttp3.HttpUrl$Builder: boolean isDot(java.lang.String) -okhttp3.internal.http2.Http2Connection$Builder: Http2Connection$Builder(boolean) -androidx.lifecycle.Transformations$2: Transformations$2(androidx.arch.core.util.Function,androidx.lifecycle.MediatorLiveData) -com.google.android.material.R$dimen: int mtrl_calendar_action_padding -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setStreet(java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeCloudCover -com.amap.api.location.AMapLocation -james.adaptiveicon.R$attr: int selectableItemBackgroundBorderless -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowDy -wangdaye.com.geometricweather.R$drawable: int notif_temp_48 -wangdaye.com.geometricweather.R$drawable: int notif_temp_131 -com.jaredrummler.android.colorpicker.R$attr: int actionModeCloseButtonStyle -com.tencent.bugly.proguard.i: short[] e(int,boolean) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: java.util.concurrent.atomic.AtomicReference upstream -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getUnitId() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String MobileLink -androidx.lifecycle.livedata.R -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_disabled -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter this$0 -com.jaredrummler.android.colorpicker.R$attr: int seekBarIncrement -wangdaye.com.geometricweather.R$style: int widget_text_clock_analog_Dark -wangdaye.com.geometricweather.R$id: int widget_week_icon -androidx.constraintlayout.widget.R$styleable: int MenuView_android_headerBackground -james.adaptiveicon.R$attr: int buttonTintMode -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float rainPrecipitationProbability -com.google.android.material.R$styleable: int ViewBackgroundHelper_backgroundTintMode -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton -wangdaye.com.geometricweather.weather.apis.MfWeatherApi -com.google.android.material.R$layout: int text_view_with_line_height_from_layout -com.turingtechnologies.materialscrollbar.R$attr: int counterOverflowTextAppearance -cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle() -cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -com.turingtechnologies.materialscrollbar.R$attr: int foregroundInsidePadding -com.xw.repo.bubbleseekbar.R$color: int abc_tint_edittext -wangdaye.com.geometricweather.R$styleable: int KeyPosition_curveFit -androidx.recyclerview.R$attr: int stackFromEnd -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setUpdateTime(long) -cyanogenmod.app.CMStatusBarManager: java.lang.String TAG -com.google.gson.stream.JsonReader: int PEEKED_FALSE -androidx.constraintlayout.widget.R$styleable: int[] Toolbar -james.adaptiveicon.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark -com.google.gson.stream.JsonReader: int NUMBER_CHAR_DIGIT -com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_close_circle -com.amap.api.location.AMapLocation: java.lang.String e -okio.Buffer: void require(long) -androidx.fragment.R$layout: int custom_dialog -androidx.fragment.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorFullWidth -retrofit2.http.QueryMap -com.tencent.bugly.crashreport.biz.UserInfoBean: java.lang.String d -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startX -androidx.appcompat.R$id: int src_over -com.bumptech.glide.R$attr: int fontProviderFetchTimeout -com.bumptech.glide.R$id: int left -cyanogenmod.themes.ThemeChangeRequest$Builder: ThemeChangeRequest$Builder(android.content.res.ThemeConfig) -androidx.appcompat.R$style: int Base_V22_Theme_AppCompat_Light -androidx.preference.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -androidx.constraintlayout.widget.Barrier: void setDpMargin(int) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextTextColor -com.jaredrummler.android.colorpicker.R$dimen: int notification_main_column_padding_top -retrofit2.RequestBuilder: RequestBuilder(java.lang.String,okhttp3.HttpUrl,java.lang.String,okhttp3.Headers,okhttp3.MediaType,boolean,boolean,boolean) -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_padding_left -io.reactivex.Observable: io.reactivex.Observable onErrorResumeNext(io.reactivex.functions.Function) -android.didikee.donate.R$styleable: int ActionBar_contentInsetEndWithActions -androidx.appcompat.R$styleable: int[] AppCompatTextView -cyanogenmod.app.Profile: java.lang.String getName() -james.adaptiveicon.R$styleable: int MenuView_android_itemIconDisabledAlpha -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.turingtechnologies.materialscrollbar.R$attr: int cardCornerRadius -okio.Buffer: okio.BufferedSink writeShort(int) -wangdaye.com.geometricweather.R$styleable: int ListPreference_android_entryValues -com.jaredrummler.android.colorpicker.R$styleable: int BackgroundStyle_selectableItemBackground -retrofit2.converter.gson.GsonResponseBodyConverter: com.google.gson.Gson gson -androidx.appcompat.widget.AppCompatButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -androidx.constraintlayout.widget.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -com.tencent.bugly.proguard.j: void b(byte,int) -wangdaye.com.geometricweather.R$dimen: int tooltip_y_offset_non_touch -android.support.v4.app.INotificationSideChannel$Default: void cancelAll(java.lang.String) -com.google.android.material.floatingactionbutton.FloatingActionButton: void setUseCompatPadding(boolean) -com.google.android.material.R$layout: int select_dialog_item_material -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeRealFeelTemperature() -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_summaryOn -okhttp3.internal.http.BridgeInterceptor -androidx.vectordrawable.animated.R$styleable: int[] GradientColor -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void onFailure(retrofit2.Call,java.lang.Throwable) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: long serialVersionUID -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getMoldDescription() -com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a f -com.google.gson.stream.JsonReader: int peeked -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay night() -com.amap.api.location.AMapLocation: void setTrustedLevel(int) -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: io.reactivex.Observer downstream -com.baidu.location.indoor.mapversion.c.c$b: java.lang.String g -androidx.swiperefreshlayout.R$dimen: int notification_right_icon_size -com.google.android.material.R$color: int abc_background_cache_hint_selector_material_light -io.reactivex.internal.util.VolatileSizeArrayList: VolatileSizeArrayList(int) -io.reactivex.internal.observers.BasicIntQueueDisposable: boolean isDisposed() -com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.String,java.lang.Throwable) -android.didikee.donate.R$attr: int actionDropDownStyle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.os.RemoteCallbackList mCallbacks -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_READY -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer ragweedIndex -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_spinnerStyle -com.jaredrummler.android.colorpicker.R$attr: int windowNoTitle -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String getLogFromNative() -androidx.hilt.work.R$styleable: int FontFamilyFont_fontVariationSettings -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: int getCollapsedPadding() -com.xw.repo.BubbleSeekBar: void setOnProgressChangedListener(com.xw.repo.BubbleSeekBar$OnProgressChangedListener) -androidx.preference.R$styleable: int MenuItem_android_titleCondensed -com.google.android.material.R$styleable: int AppBarLayout_elevation -com.google.android.material.datepicker.Month -androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context) -androidx.constraintlayout.widget.R$id: int spread -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixText -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarPopupTheme -androidx.work.impl.background.systemalarm.SystemAlarmService: SystemAlarmService() -com.tencent.bugly.a: a() -com.xw.repo.bubbleseekbar.R$styleable: int[] ViewBackgroundHelper -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow snow -wangdaye.com.geometricweather.R$attr: int onShow -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogTheme -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function,boolean) -cyanogenmod.providers.CMSettings$CMSettingNotFoundException -okio.Buffer: long indexOfElement(okio.ByteString,long) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setTranslateY(float) -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_left_mtrl_dark -com.xw.repo.bubbleseekbar.R$style: int Platform_AppCompat -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: float getIntervalInHour() -james.adaptiveicon.R$attr: int textColorAlertDialogListItem -com.google.android.material.R$styleable: int[] MotionLayout -com.turingtechnologies.materialscrollbar.R$drawable: int abc_spinner_textfield_background_material -wangdaye.com.geometricweather.R$string: int date_format_widget_short -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_RESUME -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_3 -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Bridge -okhttp3.internal.http.HttpHeaders: int skipWhitespace(java.lang.String,int) -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low_normal -androidx.appcompat.R$dimen: int abc_text_size_title_material_toolbar -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_title -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingStart -james.adaptiveicon.R$attr: int editTextBackground -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_enabled -androidx.preference.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 -com.google.android.material.R$style: int Theme_MaterialComponents -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeBottomRight -okhttp3.internal.http2.StreamResetException: okhttp3.internal.http2.ErrorCode errorCode -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: long serialVersionUID -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.util.Map R -androidx.constraintlayout.widget.R$id: int search_plate -android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.constraintlayout.widget.R$attr: int state_above_anchor -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_INIT -wangdaye.com.geometricweather.db.entities.HourlyEntity: long time -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog -okio.RealBufferedSink: okio.Timeout timeout() -okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.WebSocketWriter writer -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -com.tencent.bugly.crashreport.common.info.PlugInBean: PlugInBean(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$attr: int fontProviderFetchTimeout -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleTintMode -com.google.android.material.textfield.TextInputEditText: void setTextInputLayoutFocusedRectEnabled(boolean) -wangdaye.com.geometricweather.R$string: int abc_shareactionprovider_share_with -io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String,int,boolean) -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_material -androidx.work.R$id: int accessibility_custom_action_22 -androidx.preference.R$styleable: int AppCompatTheme_actionBarSplitStyle -com.turingtechnologies.materialscrollbar.R$attr: int fabCradleMargin -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_suggestionRowLayout -androidx.dynamicanimation.R$layout: int notification_action_tombstone -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void onChanged(java.lang.Object) -androidx.lifecycle.extensions.R$styleable -androidx.appcompat.widget.AppCompatRadioButton: void setBackgroundResource(int) -androidx.appcompat.view.menu.ExpandedMenuView: ExpandedMenuView(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$attr: int dialogMessage -retrofit2.OkHttpCall$NoContentResponseBody: long contentLength() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -androidx.fragment.R$id: int icon_group -okhttp3.internal.http2.Settings: int HEADER_TABLE_SIZE -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_CONDITION_CODE -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_TextView_SpinnerItem -com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context,android.util.AttributeSet) -androidx.recyclerview.R$dimen -wangdaye.com.geometricweather.R$styleable: int[] MenuView -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String wind_speed -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActivityChooserView -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status PENDING -android.didikee.donate.R$id: int custom -io.reactivex.Observable: io.reactivex.Observable mergeArray(int,int,io.reactivex.ObservableSource[]) -com.google.gson.FieldNamingPolicy$1 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_tooltipFrameBackground -androidx.appcompat.R$attr: int actionModeStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_77 -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onNext(java.lang.Object) -androidx.appcompat.view.menu.ActionMenuItemView: void setItemInvoker(androidx.appcompat.view.menu.MenuBuilder$ItemInvoker) -retrofit2.http.Path: java.lang.String value() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_type -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -okhttp3.WebSocketListener: WebSocketListener() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_DropDown -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getAqiColor(android.content.Context) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -com.jaredrummler.android.colorpicker.R$styleable: int[] RecycleListView -androidx.lifecycle.extensions.R$id: int right_side -okio.BufferedSource: int readUtf8CodePoint() -com.xw.repo.bubbleseekbar.R$id: int title_template -com.google.android.material.R$styleable: int ConstraintLayout_Layout_chainUseRtl -okio.ByteString: okio.ByteString substring(int,int) -com.xw.repo.bubbleseekbar.R$color: int material_grey_900 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setAqi(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customColorValue -com.tencent.bugly.crashreport.common.info.a: java.lang.String w -io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable INSTANCE -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Bridge -com.tencent.bugly.proguard.z: void a(java.lang.Class,java.lang.String,java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_shape_horizontal_margin -androidx.core.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_35 -androidx.activity.R$id: R$id() -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerComplete() -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: MfWarningsResult$WarningAdvice() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_go_search_api_material -com.amap.api.location.APSService -com.turingtechnologies.materialscrollbar.R$attr: int buttonPanelSideLayout -com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Dialog -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -com.amap.api.location.AMapLocation: java.lang.String getErrorInfo() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String getValue() -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleContentDescription -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeFindDrawable -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: boolean IsDaylight -androidx.recyclerview.R$id: int accessibility_custom_action_27 -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_contentDescription -okhttp3.HttpUrl$Builder: java.lang.String toString() -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature -androidx.preference.R$styleable: int Preference_android_key -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderCerts -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_WAKE_SCREEN_VALIDATOR -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: long serialVersionUID -androidx.preference.R$id: int accessibility_custom_action_20 -com.google.android.material.bottomappbar.BottomAppBar: void setFabCradleRoundedCornerRadius(float) -androidx.preference.R$styleable: int DrawerArrowToggle_color -com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_percent -com.google.android.material.R$attr: int percentY -androidx.vectordrawable.R$layout -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -androidx.hilt.work.R$anim: int fragment_fade_exit -androidx.preference.R$attr: int dialogPreferredPadding -android.didikee.donate.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -androidx.hilt.lifecycle.R$dimen: int notification_media_narrow_margin -james.adaptiveicon.R$dimen: int abc_action_bar_default_height_material -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableStart -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryInnerObserver BOUNDARY_DISPOSED -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: double Value -androidx.cardview.R$styleable: int CardView_contentPadding -androidx.preference.R$layout: int notification_template_part_time -com.autonavi.aps.amapapi.model.AMapLocationServer: void e(java.lang.String) -androidx.preference.R$styleable: int AppCompatTheme_colorAccent -com.jaredrummler.android.colorpicker.R$layout: int abc_cascading_menu_item_layout -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_title -com.jaredrummler.android.colorpicker.R$attr: int stackFromEnd -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_saturation -cyanogenmod.platform.R$attr -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode CLOUDY -cyanogenmod.platform.R$bool: R$bool() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_1 -okio.SegmentedByteString: byte[] internalArray() -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetTop -wangdaye.com.geometricweather.R$attr: int backgroundInsetStart -james.adaptiveicon.R$styleable: int AppCompatTheme_actionDropDownStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize -androidx.preference.R$color: int dim_foreground_disabled_material_dark -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingBottom -wangdaye.com.geometricweather.db.entities.HourlyEntity: HourlyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -wangdaye.com.geometricweather.R$id: int mtrl_child_content_container -okhttp3.internal.connection.RealConnection: RealConnection(okhttp3.ConnectionPool,okhttp3.Route) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_popupWindowStyle -com.xw.repo.bubbleseekbar.R$dimen: int compat_button_padding_horizontal_material -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicReference boundaryObserver -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType WEBP -james.adaptiveicon.R$style: int Base_Widget_AppCompat_SeekBar -com.google.android.material.R$id: int SHOW_PATH -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_toRightOf -wangdaye.com.geometricweather.R$attr: int cornerFamilyBottomLeft -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String PrimaryPostalCode -com.google.android.material.R$layout: int abc_screen_content_include -androidx.customview.R$styleable: int FontFamilyFont_android_font -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest build() -androidx.appcompat.R$attr: int navigationContentDescription -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String escapedAV() -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String type -androidx.preference.R$style: int TextAppearance_AppCompat_Menu -com.xw.repo.bubbleseekbar.R$layout: int abc_screen_toolbar -wangdaye.com.geometricweather.R$array: int distance_unit_voices -io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper[] values() -okio.Buffer: void clear() -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode FOG -wangdaye.com.geometricweather.R$id: int ignore -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setDatetime(java.lang.String) -okhttp3.internal.cache.DiskLruCache$1: void run() -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_content_inset_material -wangdaye.com.geometricweather.R$dimen: int abc_seekbar_track_background_height_material -androidx.lifecycle.ComputableLiveData$3 -wangdaye.com.geometricweather.R$array: int week_icon_mode_values -com.xw.repo.bubbleseekbar.R$id: int progress_horizontal -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_checkboxStyle -androidx.hilt.work.R$styleable: int FontFamilyFont_android_ttcIndex -com.tencent.bugly.crashreport.common.strategy.StrategyBean: StrategyBean() -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_HOME_LONG_PRESS_ACTION -androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_weight -androidx.viewpager2.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_DialogWhenLarge -cyanogenmod.app.ICMTelephonyManager -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: java.lang.Object poll() -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_default_mtrl_alpha -io.reactivex.internal.observers.BlockingObserver: void dispose() -wangdaye.com.geometricweather.R$drawable: int googleg_disabled_color_18 -androidx.lifecycle.LiveData$LifecycleBoundObserver: boolean shouldBeActive() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf -com.google.android.material.R$styleable: int KeyTrigger_onNegativeCross -com.turingtechnologies.materialscrollbar.R$attr: int layout -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: long serialVersionUID -android.didikee.donate.R$drawable: int abc_list_selector_background_transition_holo_light -wangdaye.com.geometricweather.R$id: int item_about_link -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_height -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.R$drawable: int abc_btn_borderless_material -wangdaye.com.geometricweather.R$color: int abc_tint_default -androidx.preference.R$id: int accessibility_custom_action_6 -androidx.preference.R$attr: int actionBarItemBackground -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingLeft -okhttp3.internal.connection.RealConnection$1 -com.google.android.gms.common.server.response.zak -com.google.android.material.R$styleable: int Slider_android_valueFrom -okhttp3.internal.cache.DiskLruCache$Editor$1: okhttp3.internal.cache.DiskLruCache$Editor this$1 -com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage[] a -androidx.constraintlayout.widget.R$styleable: int SearchView_goIcon -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_1 -cyanogenmod.app.IPartnerInterface: boolean setZenMode(int) -wangdaye.com.geometricweather.R$attr: int labelBehavior -com.tencent.bugly.crashreport.common.info.a: java.lang.String t() -com.turingtechnologies.materialscrollbar.R$id: int scrollView -com.amap.api.location.AMapLocationClient: AMapLocationClient(android.content.Context) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: AccuCurrentResult$WindGust$Speed$Imperial() -androidx.constraintlayout.widget.R$id: int ignoreRequest -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle -androidx.coordinatorlayout.R$id: int tag_accessibility_actions -com.google.android.material.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton -androidx.core.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderDivider -com.turingtechnologies.materialscrollbar.R$id: int info -android.didikee.donate.R$styleable: int AppCompatTheme_colorPrimaryDark -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_chainStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX) -wangdaye.com.geometricweather.R$attr: int background -androidx.swiperefreshlayout.R$color: int secondary_text_default_material_light -com.jaredrummler.android.colorpicker.R$string -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -cyanogenmod.app.PartnerInterface: PartnerInterface(android.content.Context) -com.turingtechnologies.materialscrollbar.R$id: int labeled -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotationX -androidx.appcompat.R$style: int AlertDialog_AppCompat -okhttp3.OkHttpClient: boolean followSslRedirects -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_menuCategory -androidx.appcompat.R$id: int accessibility_custom_action_7 -androidx.work.R$id: int accessibility_custom_action_27 -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_toTopOf -cyanogenmod.themes.ThemeManager: void requestThemeChange(java.util.Map,boolean) -com.turingtechnologies.materialscrollbar.R$attr: int switchTextAppearance -james.adaptiveicon.R$drawable: int abc_list_selector_holo_light -com.jaredrummler.android.colorpicker.R$dimen: int notification_media_narrow_margin -com.google.android.material.R$id: int accessibility_custom_action_16 -androidx.appcompat.resources.R$layout: int notification_action -okhttp3.RequestBody: void writeTo(okio.BufferedSink) -wangdaye.com.geometricweather.R$attr: int bsb_second_track_color -okio.SegmentPool -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void createCustomTileWithTag(java.lang.String,java.lang.String,java.lang.String,int,cyanogenmod.app.CustomTile,int[],int) -com.google.android.material.chip.Chip: void setChipStartPadding(float) -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable -androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -androidx.preference.R$style: int PreferenceThemeOverlay -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_always_show_bubble_delay -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setAddress_detail(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_seekBarStyle -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy -cyanogenmod.app.CMStatusBarManager: CMStatusBarManager(android.content.Context) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: java.util.List coordinates -com.tencent.bugly.crashreport.common.info.a: void e(java.lang.String) -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$dimen: int notification_content_margin_start -james.adaptiveicon.R$dimen -cyanogenmod.weather.CMWeatherManager$2$2: java.util.List val$weatherLocations -androidx.coordinatorlayout.R$attr: int layout_anchor -wangdaye.com.geometricweather.R$array: int pollen_unit_voices -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -okio.ByteString: okio.ByteString substring(int) -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getAlarmThemePackageName() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: int UnitType -com.google.android.material.R$color: int design_fab_stroke_end_outer_color -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvDescription(java.lang.String) -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeFindDrawable -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetRight -androidx.constraintlayout.widget.R$color: int abc_background_cache_hint_selector_material_light -okio.RealBufferedSource: int read(java.nio.ByteBuffer) -okhttp3.Cache$Entry: long receivedResponseMillis -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX() -okhttp3.CacheControl: boolean mustRevalidate() -io.reactivex.exceptions.UndeliverableException: long serialVersionUID -androidx.core.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_3 -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Button -androidx.fragment.R$dimen: int notification_large_icon_height -com.google.android.material.button.MaterialButton: void setBackgroundColor(int) -cyanogenmod.platform.R$attr: R$attr() -wangdaye.com.geometricweather.R$attr: int fabCradleVerticalOffset -wangdaye.com.geometricweather.R$styleable: int StateSet_defaultState -androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: io.reactivex.internal.operators.observable.ObservableRefCount parent -com.google.android.material.R$styleable: int Chip_checkedIconTint -com.turingtechnologies.materialscrollbar.R$styleable: int[] ColorStateListItem -com.google.android.material.R$attr: int buttonBarStyle -okhttp3.internal.http2.Huffman: int[] CODES -androidx.legacy.coreutils.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_menuCategory -wangdaye.com.geometricweather.R$layout: int widget_day_oreo -androidx.constraintlayout.utils.widget.ImageFilterView: float getCrossfade() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedHeightMajor -wangdaye.com.geometricweather.R$integer: int mtrl_btn_anim_duration_ms -okhttp3.OkHttpClient: javax.net.ssl.HostnameVerifier hostnameVerifier() -androidx.swiperefreshlayout.R$attr: int ttcIndex -com.bumptech.glide.integration.okhttp.R$attr: int font -okhttp3.internal.http2.Settings: void merge(okhttp3.internal.http2.Settings) -cyanogenmod.app.StatusBarPanelCustomTile: int getUid() -wangdaye.com.geometricweather.R$attr: int layout_constraintEnd_toEndOf -wangdaye.com.geometricweather.R$drawable: int abc_switch_track_mtrl_alpha -wangdaye.com.geometricweather.R$attr: int snackbarButtonStyle -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getShortWindDescription() -com.turingtechnologies.materialscrollbar.R$attr: int popupWindowStyle -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetBottom -androidx.preference.R$attr: int summaryOn -wangdaye.com.geometricweather.R$styleable: int Chip_chipBackgroundColor -com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_layout -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItemSecondary -com.google.android.material.R$styleable: int[] MotionHelper -com.google.android.material.R$layout: int design_bottom_sheet_dialog -james.adaptiveicon.R$styleable: int CompoundButton_buttonCompat -androidx.appcompat.R$styleable: int AppCompatTheme_radioButtonStyle -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: void setColor(boolean) -androidx.viewpager2.R$attr: int spanCount -androidx.core.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$styleable: int[] LinearLayoutCompat_Layout -androidx.vectordrawable.animated.R$attr: int alpha -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String WALLPAPER_URI -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: void cancel() -com.google.android.material.textfield.TextInputLayout: android.widget.EditText getEditText() -wangdaye.com.geometricweather.R$layout: int mtrl_picker_text_input_date_range -androidx.appcompat.view.menu.ListMenuItemView: void setChecked(boolean) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView_DropDown -com.turingtechnologies.materialscrollbar.R$dimen: int abc_floating_window_z -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginEnd -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: android.os.IBinder mRemote -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Bridge -com.google.android.material.R$styleable: int AppCompatTextView_drawableStartCompat -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25 -androidx.work.R$style -com.tencent.bugly.crashreport.crash.d: com.tencent.bugly.crashreport.crash.d a -cyanogenmod.media.MediaRecorder: java.lang.String EXTRA_HOTWORD_INPUT_STATE -james.adaptiveicon.R$dimen: int disabled_alpha_material_light -james.adaptiveicon.R$layout: int abc_action_menu_item_layout -com.google.gson.stream.JsonWriter: void string(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_thumb_elevation -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_disableDependentsState -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setUrl(java.lang.String) -com.amap.api.fence.PoiItem: void setPoiName(java.lang.String) -androidx.lifecycle.ComputableLiveData: java.lang.Runnable mInvalidationRunnable -wangdaye.com.geometricweather.R$string: int thanks -wangdaye.com.geometricweather.R$style: int widget_background_card -com.tencent.bugly.crashreport.common.info.b: java.lang.String o() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.LocationEntity) -okhttp3.OkHttpClient: okhttp3.ConnectionPool connectionPool -androidx.hilt.R$id: int accessibility_custom_action_0 -android.didikee.donate.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_holo_light -com.xw.repo.bubbleseekbar.R$attr: int tintMode -wangdaye.com.geometricweather.R$string: int preference_copied -com.tencent.bugly.proguard.f: short a -androidx.recyclerview.R$dimen: int notification_small_icon_background_padding -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void dispose() -wangdaye.com.geometricweather.R$id: int mtrl_calendar_year_selector_frame -cyanogenmod.profiles.ConnectionSettings: int mValue -androidx.preference.R$style: int PreferenceSummaryTextStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitationDuration(java.lang.Float) -com.google.android.material.R$attr: int chipGroupStyle -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState valueOf(java.lang.String) -wangdaye.com.geometricweather.R$attr: int fastScrollHorizontalTrackDrawable -androidx.constraintlayout.widget.R$styleable: int View_paddingEnd -androidx.customview.R$id: int normal -com.turingtechnologies.materialscrollbar.R$bool: int abc_allow_stacked_button_bar -com.google.android.material.timepicker.ClockFaceView -com.google.android.material.R$styleable: int AppCompatTheme_dividerHorizontal -io.reactivex.disposables.ReferenceDisposable: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_snackbar_background_corner_radius -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstVerticalBias -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset -com.tencent.bugly.crashreport.crash.jni.a: com.tencent.bugly.crashreport.common.strategy.a d -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State mState -wangdaye.com.geometricweather.R$drawable: int ic_launcher_foreground -androidx.hilt.lifecycle.R$layout: R$layout() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ENABLE -wangdaye.com.geometricweather.R$string: int total -androidx.appcompat.R$attr: int submitBackground -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_textColor -wangdaye.com.geometricweather.R$styleable: int ActionBar_homeAsUpIndicator -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -cyanogenmod.profiles.LockSettings: void writeToParcel(android.os.Parcel,int) -com.google.gson.LongSerializationPolicy$1 -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date lastModified -com.jaredrummler.android.colorpicker.R$styleable: int[] StateListDrawableItem -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial Imperial -com.google.gson.stream.JsonReader: int PEEKED_BUFFERED -androidx.drawerlayout.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: java.lang.String Unit -androidx.preference.R$string: int abc_shareactionprovider_share_with_application -okhttp3.internal.http2.Http2Connection$1: okhttp3.internal.http2.Http2Connection this$0 -okhttp3.MediaType: java.lang.String mediaType -com.xw.repo.bubbleseekbar.R$attr: int initialActivityCount -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_icon_width -com.google.android.material.R$styleable: int Transition_transitionFlags -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX direction -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onAttach(android.os.IBinder) -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light -androidx.viewpager2.R$id: int line3 -com.google.android.material.R$dimen: int mtrl_tooltip_minWidth -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_gravity -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void run() -com.jaredrummler.android.colorpicker.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.google.android.material.R$dimen: int mtrl_calendar_bottom_padding -androidx.preference.R$attr: int dropdownListPreferredItemHeight -okio.RealBufferedSource: java.lang.String readString(long,java.nio.charset.Charset) -wangdaye.com.geometricweather.R$layout: int material_clock_period_toggle -androidx.viewpager.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.R$id: int notification_big -androidx.work.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: double lat -com.google.android.material.R$styleable: int[] ViewPager2 -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button -androidx.preference.internal.PreferenceImageView: void setMaxHeight(int) -org.greenrobot.greendao.AbstractDao: java.lang.Object loadByRowId(long) -okio.Options: int[] trie -androidx.hilt.work.R$id: R$id() -com.google.android.material.R$attr: int layout_scrollInterpolator -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_Alert -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String weathercn -com.google.android.material.chip.ChipGroup: java.util.List getCheckedChipIds() -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void dispose() -androidx.preference.R$layout: int abc_dialog_title_material -androidx.viewpager.R$attr: int fontWeight -androidx.appcompat.R$attr: int commitIcon -androidx.preference.R$attr: int titleTextStyle -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_keyline -okhttp3.internal.http2.Header: okio.ByteString TARGET_AUTHORITY -com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_internal_bg -wangdaye.com.geometricweather.R$color: int design_default_color_on_surface -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: long index -james.adaptiveicon.R$id: int search_mag_icon -okhttp3.Credentials -com.google.android.material.R$string: int mtrl_picker_cancel -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -androidx.activity.ImmLeaksCleaner -wangdaye.com.geometricweather.R$layout: int dialog_location_permission_statement -android.didikee.donate.R$color: int abc_secondary_text_material_light -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property No2 -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver -io.reactivex.Observable: io.reactivex.Observable fromCallable(java.util.concurrent.Callable) -okhttp3.internal.http.BridgeInterceptor: okhttp3.CookieJar cookieJar -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy APPEND -okhttp3.internal.cache.CacheStrategy$Factory: boolean hasConditions(okhttp3.Request) -wangdaye.com.geometricweather.R$styleable: int MaterialButton_icon -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeCloudCover() -james.adaptiveicon.R$styleable: int ViewStubCompat_android_id -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_searchIcon -androidx.appcompat.R$style: int Widget_AppCompat_Spinner -androidx.constraintlayout.widget.R$attr: int layout -okhttp3.Response: okhttp3.CacheControl cacheControl() -com.google.android.material.R$attr: int layout_constraintCircleRadius -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_disabled_material_dark -androidx.preference.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -okhttp3.CipherSuite: java.util.Comparator ORDER_BY_NAME -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference other -com.tencent.bugly.proguard.e: char[] a -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric -com.google.android.material.R$styleable: int MaterialButton_iconSize -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_BOOT_ANIM -androidx.swiperefreshlayout.R$style: int Widget_Compat_NotificationActionText -com.turingtechnologies.materialscrollbar.R$attr: int boxStrokeColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: void setValue(java.lang.String) -androidx.preference.R$styleable: int AppCompatTheme_actionButtonStyle -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.http.HttpCodec httpCodec -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_min -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean isDisposed() -okhttp3.CertificatePinner$Builder -cyanogenmod.app.Profile: cyanogenmod.profiles.LockSettings getScreenLockMode() -androidx.activity.R$styleable: int FontFamily_fontProviderFetchTimeout -cyanogenmod.hardware.ICMHardwareService: int[] getDisplayColorCalibration() -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedQueryParameter(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$integer: int cancel_button_image_alpha -androidx.appcompat.R$attr: int color -cyanogenmod.power.PerformanceManager: int mNumberOfProfiles -james.adaptiveicon.R$styleable: int MenuItem_android_orderInCategory -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setPivotX(float) -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_grey -androidx.preference.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitationDuration -com.google.android.material.R$layout: int material_radial_view_group -androidx.activity.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.R$attr: int flow_horizontalStyle -wangdaye.com.geometricweather.R$id: int widget_clock_day_todayTemp -com.google.android.material.R$color: int abc_hint_foreground_material_dark -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_curveFit -androidx.constraintlayout.widget.R$color: int background_floating_material_dark -wangdaye.com.geometricweather.R$id: int right_icon -android.support.v4.app.INotificationSideChannel$Default: void cancel(java.lang.String,int,java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int contentDescription -com.google.android.material.R$attr: int itemShapeFillColor -okhttp3.internal.http2.Header$Listener: void onHeaders(okhttp3.Headers) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindChillTemperature -com.jaredrummler.android.colorpicker.R$dimen: int disabled_alpha_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_AutoCompleteTextView -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_clipToPadding -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetRight -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: void setOnWeatherIconChangingListener(wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView$OnWeatherIconChangingListener) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableEnd -com.google.gson.stream.JsonReader: void consumeNonExecutePrefix() -androidx.fragment.R$anim: R$anim() -wangdaye.com.geometricweather.background.receiver.widget.WidgetTextProvider -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindSpeed(java.lang.Float) -org.greenrobot.greendao.AbstractDaoMaster: AbstractDaoMaster(org.greenrobot.greendao.database.Database,int) -androidx.preference.R$styleable: int[] PreferenceImageView -androidx.preference.R$id -com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_Surface -androidx.constraintlayout.widget.VirtualLayout: void setElevation(float) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_elevation -com.amap.api.fence.GeoFence: GeoFence(android.os.Parcel) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: boolean hasError() -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,long,java.util.concurrent.TimeUnit) -com.tencent.bugly.proguard.i$a -cyanogenmod.providers.CMSettings$Secure: java.lang.String KILL_APP_LONGPRESS_BACK -com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a e -androidx.preference.R$attr: int preserveIconSpacing -wangdaye.com.geometricweather.R$attr: int animationMode -com.google.android.material.R$attr: int backgroundInsetStart -wangdaye.com.geometricweather.R$attr: int flow_verticalStyle -cyanogenmod.app.IProfileManager$Stub$Proxy: void addNotificationGroup(android.app.NotificationGroup) -wangdaye.com.geometricweather.R$string: int mtrl_picker_save -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_2 -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setCity(java.lang.String) -retrofit2.ParameterHandler$Field: ParameterHandler$Field(java.lang.String,retrofit2.Converter,boolean) -androidx.appcompat.R$style: int Widget_AppCompat_ListMenuView -io.reactivex.internal.subscriptions.DeferredScalarSubscription: void complete(java.lang.Object) -cyanogenmod.providers.CMSettings$System: float getFloat(android.content.ContentResolver,java.lang.String) -androidx.cardview.R$styleable: int CardView_cardPreventCornerOverlap -okhttp3.internal.ws.WebSocketWriter: WebSocketWriter(boolean,okio.BufferedSink,java.util.Random) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginStart -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_popupTheme -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.WeatherEntity) -okhttp3.internal.cache2.Relay: okio.ByteString metadata() -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: ObservableRepeatWhen$RepeatWhenObserver(io.reactivex.Observer,io.reactivex.subjects.Subject,io.reactivex.ObservableSource) -cyanogenmod.weather.CMWeatherManager$1: CMWeatherManager$1(cyanogenmod.weather.CMWeatherManager) -com.xw.repo.bubbleseekbar.R$styleable: int[] LinearLayoutCompat_Layout -androidx.appcompat.R$attr: int spinnerDropDownItemStyle -androidx.hilt.work.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$string: int key_list_animation_switch -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void startTimeout(long) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean getImages() -wangdaye.com.geometricweather.R$styleable: int Transition_transitionFlags -com.google.android.material.floatingactionbutton.FloatingActionButton: void setVisibility(int) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weatherservice.ServiceRequest$Status mStatus -androidx.activity.R$dimen: int notification_large_icon_width -com.tencent.bugly.proguard.p: boolean a(com.tencent.bugly.proguard.r) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_16 -retrofit2.Retrofit: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) -com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabStyle -androidx.constraintlayout.widget.R$attr: int menu -com.jaredrummler.android.colorpicker.R$color: int material_deep_teal_500 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlNormal -com.google.android.material.R$style: int Base_Widget_AppCompat_ActivityChooserView -com.google.android.material.R$integer: int app_bar_elevation_anim_duration -retrofit2.OkHttpCall: okhttp3.Request request() -androidx.activity.R$id: int accessibility_custom_action_12 -androidx.lifecycle.LiveData: void removeObservers(androidx.lifecycle.LifecycleOwner) -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_shapeAppearanceOverlay -com.google.android.material.R$styleable: int KeyTimeCycle_android_translationX -com.google.android.material.transformation.FabTransformationBehavior -com.google.android.material.R$attr: int cardMaxElevation -cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_ACCESS_PRIVATE -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginLeft -retrofit2.adapter.rxjava2.ResultObservable: io.reactivex.Observable upstream -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableRight -androidx.constraintlayout.widget.R$dimen: int abc_dialog_title_divider_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_3 -io.reactivex.internal.queue.SpscArrayQueue: java.lang.Object poll() -androidx.appcompat.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity: MultiCityWidgetConfigActivity() -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$attr: int tabGravity -cyanogenmod.weatherservice.ServiceRequestResult$Builder: cyanogenmod.weather.WeatherInfo mWeatherInfo -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_prompt -cyanogenmod.weather.CMWeatherManager$1 -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemFillColor -com.turingtechnologies.materialscrollbar.R$color: int cardview_shadow_end_color -android.didikee.donate.R$style: int TextAppearance_AppCompat_Small -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Info -okhttp3.internal.connection.RealConnection: okhttp3.Route route() -com.google.android.gms.common.images.WebImage: android.os.Parcelable$Creator CREATOR -androidx.preference.R$style: int Widget_AppCompat_Button_Borderless -androidx.work.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$layout: int activity_preview_icon -wangdaye.com.geometricweather.R$attr: int moveWhenScrollAtTop -com.xw.repo.bubbleseekbar.R$style: int Base_V22_Theme_AppCompat -com.google.android.material.R$attr: int maxHeight -androidx.constraintlayout.widget.R$dimen: int tooltip_corner_radius -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: android.os.IBinder asBinder() -james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogStyle -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: void requestLocation(android.content.Context,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) -com.bumptech.glide.load.engine.GlideException: java.lang.Class dataClass -com.google.android.material.theme.MaterialComponentsViewInflater: MaterialComponentsViewInflater() -wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotationX -com.google.android.material.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm25Desc(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getIce() -androidx.constraintlayout.motion.widget.MotionLayout: float getProgress() -androidx.preference.R$styleable: int ActionBar_popupTheme -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: void dispose() -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMenuItemView -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_DrawerArrowToggle -okhttp3.CipherSuite: okhttp3.CipherSuite init(java.lang.String,int) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_switchStyle -io.reactivex.Observable: io.reactivex.Single toList(int) -androidx.appcompat.widget.SearchView: int getImeOptions() -org.greenrobot.greendao.AbstractDao: java.lang.Object getKey(java.lang.Object) -com.google.android.material.R$id: int mtrl_picker_title_text -okio.Segment: boolean shared -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_summary -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.R$attr: int startIconCheckable -io.reactivex.Observable: io.reactivex.Observable create(io.reactivex.ObservableOnSubscribe) -com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar_Colored -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconSizeRes(int) -okhttp3.internal.http2.Http2Reader: java.util.List readHeaderBlock(int,short,byte,int) -androidx.lifecycle.LiveData: void postValue(java.lang.Object) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display2 -com.google.android.material.R$styleable: int TextAppearance_textLocale -androidx.appcompat.R$attr: int titleMargin -wangdaye.com.geometricweather.R$id: int disableHome -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream getStream(int) -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void dispose() -com.google.android.material.R$attr: int startIconDrawable -okio.RealBufferedSink: okio.BufferedSink writeHexadecimalUnsignedLong(long) -okhttp3.internal.http2.Http2Connection -retrofit2.ParameterHandler$Part -com.google.android.material.button.MaterialButtonToggleGroup: void setCheckedId(int) -androidx.appcompat.R$styleable: int AppCompatTheme_toolbarStyle -okhttp3.internal.cache.DiskLruCache: void close() -okio.Buffer$UnsafeCursor -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.internal.fuseable.QueueDisposable qd -okhttp3.Challenge: java.lang.String realm() -wangdaye.com.geometricweather.R$attr: int tintMode -wangdaye.com.geometricweather.R$attr: int barrierMargin -com.amap.api.location.AMapLocation: java.lang.String k(com.amap.api.location.AMapLocation,java.lang.String) -com.turingtechnologies.materialscrollbar.R$drawable: int design_ic_visibility_off -com.tencent.bugly.b: boolean c -cyanogenmod.app.LiveLockScreenManager: boolean getLiveLockScreenEnabled() -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark -androidx.lifecycle.LifecycleRegistry: void pushParentState(androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String getWeatherPhase() -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit IN -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplBase: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.loader.R$id: int action_text -androidx.appcompat.widget.AppCompatCheckBox: void setSupportButtonTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$id: int disablePostScroll -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_creator -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_fontVariationSettings -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_overflow_material -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,io.reactivex.Scheduler) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation valueOf(java.lang.String) -com.google.android.material.R$dimen: int mtrl_btn_focused_z -okhttp3.internal.cache.DiskLruCache$1: okhttp3.internal.cache.DiskLruCache this$0 -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMinWidth -androidx.activity.R$id -wangdaye.com.geometricweather.location.services.LocationService: void cancel() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String uvLevel -com.google.android.material.R$styleable: int[] StateListDrawable -wangdaye.com.geometricweather.R$color: int abc_primary_text_material_light -com.tencent.bugly.proguard.aj: aj(byte,java.lang.String,byte[]) -cyanogenmod.app.ProfileManager: void addProfile(cyanogenmod.app.Profile) -androidx.hilt.lifecycle.R$id: int forever -com.tencent.bugly.crashreport.common.info.a: a(android.content.Context) -com.google.android.material.R$dimen: int mtrl_tooltip_arrowSize -android.didikee.donate.R$styleable: int TextAppearance_android_typeface -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog -com.xw.repo.bubbleseekbar.R$style: int Platform_Widget_AppCompat_Spinner -com.tencent.bugly.proguard.m: m() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -okhttp3.internal.http2.Http2Connection$4: okhttp3.internal.http2.Http2Connection this$0 -wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_peek_height_min -androidx.lifecycle.Transformations$1: Transformations$1(androidx.lifecycle.MediatorLiveData,androidx.arch.core.util.Function) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: java.lang.String Localized -com.turingtechnologies.materialscrollbar.R$attr: int colorSwitchThumbNormal -androidx.recyclerview.widget.LinearLayoutManager: LinearLayoutManager(android.content.Context,android.util.AttributeSet,int,int) -com.tencent.bugly.crashreport.crash.CrashDetailBean: long G -okhttp3.internal.http2.Http2Connection: void shutdown(okhttp3.internal.http2.ErrorCode) -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_summaryOff -com.jaredrummler.android.colorpicker.R$attr: int textAllCaps -com.amap.api.location.UmidtokenInfo$a: void onLocationChanged(com.amap.api.location.AMapLocation) -wangdaye.com.geometricweather.R$drawable: int weather_rain_pixel -androidx.constraintlayout.widget.R$styleable: int OnClick_clickAction -com.xw.repo.bubbleseekbar.R$id: int action_bar_activity_content -androidx.appcompat.R$styleable: int AppCompatTheme_colorAccent -cyanogenmod.app.CustomTile$1: CustomTile$1() -okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory sslSocketFactory() -androidx.lifecycle.extensions.R$color: int notification_action_color_filter -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionProviderClass -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog -wangdaye.com.geometricweather.R$attr: int trackTint -com.google.android.material.R$attr: int helperTextTextColor -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getWeatherText() -com.jaredrummler.android.colorpicker.R$color: int material_grey_600 -wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_elevation -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.util.List value -androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMark -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Priority -androidx.preference.R$style: int Widget_AppCompat_ListView -com.tencent.bugly.proguard.y: void a(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_textOff -com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationY(float) -androidx.transition.R$id: int transition_transform -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -wangdaye.com.geometricweather.R$xml: int perference -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint DewPoint -wangdaye.com.geometricweather.R$attr: int chipIconEnabled -com.xw.repo.bubbleseekbar.R$attr: int bsb_always_show_bubble -james.adaptiveicon.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -androidx.viewpager2.R$id: int accessibility_custom_action_3 -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level BASIC -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType SOSOMAP -androidx.preference.R$dimen: int abc_action_bar_stacked_tab_max_width -com.google.android.material.R$attr: int paddingLeftSystemWindowInsets -okhttp3.internal.platform.Jdk9Platform: java.lang.reflect.Method setProtocolMethod -com.jaredrummler.android.colorpicker.R$attr: int closeIcon -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat -com.tencent.bugly.Bugly: java.lang.String[] c -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -io.reactivex.Observable: io.reactivex.Observable error(java.util.concurrent.Callable) -io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite[] values() -okhttp3.Cache$CacheResponseBody: okhttp3.MediaType contentType() -wangdaye.com.geometricweather.R$array: int dark_mode_values -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_DialogWhenLarge -androidx.hilt.lifecycle.R$color: int notification_action_color_filter -cyanogenmod.app.CMContextConstants: java.lang.String CM_ICON_CACHE_SERVICE -io.reactivex.internal.observers.DeferredScalarDisposable: void error(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorCornerRadius -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long count -okio.GzipSink: void writeHeader() -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startX -androidx.lifecycle.Lifecycle$State: boolean isAtLeast(androidx.lifecycle.Lifecycle$State) -cyanogenmod.platform.Manifest$permission: java.lang.String BIND_CUSTOM_TILE_LISTENER_SERVICE -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_horizontalDivider -com.amap.api.location.AMapLocation: java.lang.String m(com.amap.api.location.AMapLocation,java.lang.String) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Time -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.disposables.Disposable upstream -com.google.android.material.R$styleable: int ConstraintSet_android_elevation -androidx.multidex.MultiDexExtractor$ExtractedDex -androidx.lifecycle.LifecycleService: void onDestroy() -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_elevation -james.adaptiveicon.R$layout: int select_dialog_multichoice_material -com.google.android.material.R$attr: int backgroundOverlayColorAlpha -okio.Base64: byte[] MAP -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginBottom -com.google.android.material.chip.ChipGroup: int getChipCount() -androidx.preference.R$dimen: int abc_action_bar_subtitle_top_margin_material -io.reactivex.internal.subscribers.StrictSubscriber: org.reactivestreams.Subscriber downstream -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogTitle -okio.BufferedSource: byte[] readByteArray() -james.adaptiveicon.R$id: int home -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_ASSIST_ACTION -com.jaredrummler.android.colorpicker.R$id: int contentPanel -cyanogenmod.weather.CMWeatherManager: java.util.Set access$000(cyanogenmod.weather.CMWeatherManager) -james.adaptiveicon.R$dimen: int notification_subtext_size -androidx.appcompat.R$integer: int config_tooltipAnimTime -android.didikee.donate.R$styleable: int Toolbar_android_gravity -io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,long,java.util.concurrent.TimeUnit) -cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) -androidx.work.R$id: int info -androidx.appcompat.widget.ActionMenuView: int getWindowAnimations() -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Button -com.google.android.material.tabs.TabLayout: void setElevation(float) -com.google.android.material.R$styleable: int TabLayout_tabIndicatorGravity -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback -okio.AsyncTimeout$1: okio.Sink val$sink -com.google.android.material.R$styleable: int GradientColor_android_endY -com.tencent.bugly.crashreport.common.info.AppInfo -wangdaye.com.geometricweather.common.basic.GeoDialog -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_statusBarScrim -androidx.constraintlayout.widget.R$attr: int buttonIconDimen -wangdaye.com.geometricweather.R$styleable: int Badge_maxCharacterCount -com.google.android.material.R$styleable: int TabLayout_tabPaddingStart -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Tooltip -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric -com.bumptech.glide.integration.okhttp.R$drawable: R$drawable() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void dispose() -androidx.constraintlayout.widget.R$id: int async -androidx.appcompat.R$drawable: int abc_seekbar_track_material -james.adaptiveicon.R$styleable: int SearchView_layout -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontStyle -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionViewClass -com.google.android.material.tabs.TabLayout: void setTabRippleColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float icePrecipitation -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.R$attr: int singleLine -androidx.preference.PreferenceCategory -wangdaye.com.geometricweather.R$drawable: int ic_chronus -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderLayout -android.didikee.donate.R$string: int abc_action_mode_done -androidx.appcompat.R$attr -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeSplitBackground -okhttp3.internal.http2.Http2Stream: long bytesLeftInWriteWindow -wangdaye.com.geometricweather.R$attr: int expandedTitleMarginBottom -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_alphabeticShortcut -com.google.android.material.R$attr: int checkedIconVisible -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitationProbability(java.lang.Float) -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSwoopDuration -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_anchor -com.tencent.bugly.proguard.u: boolean c() -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox -com.turingtechnologies.materialscrollbar.R$drawable: int design_snackbar_background -com.turingtechnologies.materialscrollbar.R$attr: int actionBarPopupTheme -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.R$string: int current_location -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: boolean hasPermissions(android.content.Context) -okhttp3.ConnectionPool: long keepAliveDurationNs -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: double Value -com.google.android.material.card.MaterialCardView: void setCheckedIconSize(int) -com.bumptech.glide.R$attr: int ttcIndex -com.google.android.material.R$dimen: int abc_action_bar_overflow_padding_start_material -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_LOW -com.google.android.material.progressindicator.ProgressIndicator: void setCircularRadius(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: AccuCurrentResult$Visibility$Metric() -androidx.hilt.work.R$styleable: int GradientColor_android_startColor -com.google.android.material.transformation.TransformationChildLayout: TransformationChildLayout(android.content.Context) -wangdaye.com.geometricweather.R$id: int activity_weather_daily_indicator -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderAuthority -com.google.android.material.R$styleable: int[] CompoundButton -com.google.android.material.R$styleable: int MaterialButton_backgroundTintMode -com.turingtechnologies.materialscrollbar.R$id: int reservedNamedId -james.adaptiveicon.R$dimen: int abc_seekbar_track_progress_height_material -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: io.reactivex.internal.fuseable.SimpleQueue queue -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: AccuCurrentResult$Wind$Speed$Imperial() -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_inverse_material_dark -androidx.appcompat.widget.Toolbar: void setTitle(java.lang.CharSequence) -cyanogenmod.providers.CMSettings$System: boolean shouldInterceptSystemProvider(java.lang.String) -okio.AsyncTimeout: int TIMEOUT_WRITE_SIZE -cyanogenmod.app.ProfileManager: cyanogenmod.app.IProfileManager sService -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_editor_absoluteX -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_pressed_z -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationZ -cyanogenmod.profiles.StreamSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -com.google.android.material.card.MaterialCardView: void setCardBackgroundColor(int) -com.google.android.material.tabs.TabLayout: void setTabTextColors(android.content.res.ColorStateList) -com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(java.util.Map,java.lang.String) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean isDisposed() -androidx.constraintlayout.widget.R$attr: int windowFixedHeightMajor -okio.DeflaterSink: boolean closed -wangdaye.com.geometricweather.db.entities.AlertEntity: int getColor() -com.google.android.material.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String CITY_ID -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.R$style: int Preference_PreferenceScreen -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_RadioButton -io.reactivex.Observable: io.reactivex.Single single(java.lang.Object) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_19 -com.tencent.bugly.proguard.z: java.lang.String a(java.io.File,int,boolean) -com.jaredrummler.android.colorpicker.R$layout: int preference_dropdown_material -com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_inset_vertical_material -androidx.vectordrawable.animated.R$dimen: int notification_top_pad_large_text -com.google.android.material.R$styleable: int SwitchCompat_splitTrack -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle[] values() -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: int colorId -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode CANCEL -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_2 -androidx.lifecycle.extensions.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setEn_US(java.lang.String) -androidx.appcompat.R$styleable: int MenuItem_numericModifiers -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_scaleY -wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_showOldColor -com.xw.repo.bubbleseekbar.R$id: int search_badge -androidx.appcompat.R$attr: int iconTint -androidx.constraintlayout.widget.R$attr: int colorPrimaryDark -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.Class serverProviderClass -okhttp3.Dispatcher: int getMaxRequests() -cyanogenmod.externalviews.ExternalView$1: cyanogenmod.externalviews.ExternalView this$0 -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColorItem_android_color -com.google.android.material.R$string: int path_password_eye_mask_visible -androidx.appcompat.R$styleable: int[] LinearLayoutCompat -wangdaye.com.geometricweather.R$attr: int behavior_peekHeight -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator -com.google.android.material.R$attr: int transitionShapeAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: AccuCurrentResult$PrecipitationSummary$Precipitation() -androidx.preference.R$color: int background_floating_material_dark -com.baidu.location.indoor.mapversion.c.a$d: double d(double) -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setGpsFirst(boolean) -okhttp3.internal.http2.Http2Codec: java.lang.String KEEP_ALIVE -androidx.appcompat.widget.SwitchCompat: void setThumbTintMode(android.graphics.PorterDuff$Mode) -androidx.constraintlayout.widget.R$attr: int checkboxStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindDircStart(java.lang.String) -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWidgetConfigActivity: Hilt_DayWidgetConfigActivity() -androidx.appcompat.R$color: int material_deep_teal_500 -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String weatherDescription -androidx.appcompat.widget.ButtonBarLayout -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: int UnitType -androidx.constraintlayout.widget.R$attr: int textAppearanceLargePopupMenu -androidx.preference.R$layout: int notification_template_icon_group -okhttp3.Response: int code() -okhttp3.RequestBody$3: okhttp3.MediaType val$contentType -androidx.appcompat.R$dimen: int abc_text_size_body_1_material -com.google.android.material.R$layout: int mtrl_picker_header_selection_text -wangdaye.com.geometricweather.R$attr: int buttonBarNegativeButtonStyle -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.functions.BiPredicate comparer -com.google.gson.FieldNamingPolicy$1: java.lang.String translateName(java.lang.reflect.Field) -androidx.dynamicanimation.R$styleable: int ColorStateListItem_android_alpha -androidx.appcompat.R$color: int material_grey_300 -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableRight -androidx.recyclerview.R$id: int accessibility_custom_action_18 -com.tencent.bugly.proguard.aj: byte[] d -com.google.android.material.R$styleable: int ConstraintSet_flow_firstHorizontalStyle -retrofit2.Invocation: Invocation(java.lang.reflect.Method,java.util.List) -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void dispose() -okhttp3.logging.HttpLoggingInterceptor$Level -com.google.android.material.chip.Chip: void setCloseIconSizeResource(int) -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeService getService() -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType LoadAll -wangdaye.com.geometricweather.R$dimen: int title_text_size -androidx.appcompat.R$attr: int ratingBarStyleIndicator -cyanogenmod.providers.CMSettings$DiscreteValueValidator -okhttp3.internal.http2.Http2Stream: boolean $assertionsDisabled -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_6 -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_bias -com.google.android.material.R$attr: int layout_constraintBottom_toBottomOf -androidx.constraintlayout.widget.R$id: int split_action_bar -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onNext(java.lang.Object) -android.didikee.donate.R$id: int normal -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollVerticalTrackDrawable -androidx.viewpager2.R$drawable -wangdaye.com.geometricweather.R$attr: int customNavigationLayout -com.google.android.material.R$styleable: int Layout_layout_constraintGuide_end -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_horizontal -android.didikee.donate.R$attr: int listMenuViewStyle -com.google.android.material.R$attr: int startIconTintMode -cyanogenmod.platform.R$array -androidx.appcompat.R$styleable: int Toolbar_subtitleTextAppearance -com.google.android.material.R$styleable: int Snackbar_snackbarButtonStyle -androidx.swiperefreshlayout.R$dimen: int notification_large_icon_height -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onError(java.lang.Throwable) -androidx.appcompat.R$attr: int toolbarNavigationButtonStyle -android.didikee.donate.R$attr: int actionMenuTextAppearance -io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.CompletableObserver) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void dispose() -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: void invoke(java.lang.Throwable) -androidx.appcompat.R$id: int accessibility_custom_action_18 -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.disposables.Disposable upstream -james.adaptiveicon.R$styleable: int MenuGroup_android_visible -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar -androidx.legacy.coreutils.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$color: int material_grey_600 -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_13 -com.tencent.bugly.nativecrashreport.R -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_disabled_material_dark -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabText -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: long bytesRead -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.lang.String getPubTime() -wangdaye.com.geometricweather.R$layout: int container_alert_display_view -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight -wangdaye.com.geometricweather.R$string: int page_indicator -androidx.recyclerview.R$drawable: int notify_panel_notification_icon_bg -androidx.appcompat.widget.ActionMenuView: void setPopupTheme(int) -wangdaye.com.geometricweather.R$styleable: int Chip_android_textSize -cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient access$202(cyanogenmod.weatherservice.WeatherProviderService,cyanogenmod.weatherservice.IWeatherProviderServiceClient) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List dailyForecasts -okhttp3.MultipartBody: okhttp3.MediaType type() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.Observer downstream -okhttp3.internal.http2.Http2Connection$7: int val$streamId -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem -io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) -cyanogenmod.app.suggest.AppSuggestManager: AppSuggestManager(android.content.Context) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Medium_Inverse -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUpdateDate(java.util.Date) -com.jaredrummler.android.colorpicker.R$attr: int actionBarWidgetTheme -com.google.android.material.R$styleable: int ActionBar_divider -androidx.preference.R$styleable: int AppCompatSeekBar_tickMark -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer aqiIndex -androidx.preference.R$styleable: int DrawerArrowToggle_spinBars -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: ObservableJoin$JoinDisposable(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Light -androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dark -android.didikee.donate.R$layout: int abc_expanded_menu_layout -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onComplete() -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_3 -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorColor(int) -androidx.preference.R$id: int line1 -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_day_of_week -androidx.hilt.R$id: int tag_unhandled_key_event_manager -okhttp3.Headers$Builder: okhttp3.Headers$Builder addLenient(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$attr: int shouldDisableView -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property CityId -androidx.appcompat.R$color: int highlighted_text_material_dark -androidx.preference.R$styleable: int AppCompatTheme_alertDialogStyle -androidx.preference.R$style: int Preference_Category -androidx.appcompat.R$style: int TextAppearance_AppCompat_Caption -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: long serialVersionUID -android.didikee.donate.R$attr: int searchHintIcon -okhttp3.RequestBody$1: okio.ByteString val$content -com.google.android.material.card.MaterialCardView: void setMaxCardElevation(float) -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_SmallComponent -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: long idx -okio.SegmentedByteString: okio.ByteString sha1() -com.google.android.material.R$drawable: int abc_ic_star_black_48dp -com.jaredrummler.android.colorpicker.R$id: int up -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableItem_android_drawable -androidx.hilt.lifecycle.R$id: int visible_removing_fragment_view_tag -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver) -com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_900 -wangdaye.com.geometricweather.R$attr: int listLayout -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog_MinWidth -okhttp3.internal.platform.AndroidPlatform$CloseGuard: okhttp3.internal.platform.AndroidPlatform$CloseGuard get() -com.tencent.bugly.b: void a(android.content.Context,java.lang.String,boolean,com.tencent.bugly.BuglyStrategy) -com.google.android.material.slider.RangeSlider: java.lang.CharSequence getAccessibilityClassName() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean disposed -io.reactivex.internal.queue.SpscArrayQueue: void soProducerIndex(long) -android.didikee.donate.R$attr: int textColorAlertDialogListItem -android.didikee.donate.R$attr: int paddingEnd -androidx.appcompat.widget.AppCompatTextView: void setSupportCompoundDrawablesTintList(android.content.res.ColorStateList) -androidx.appcompat.widget.SearchView: void setOnCloseListener(androidx.appcompat.widget.SearchView$OnCloseListener) -androidx.viewpager.R$color: int notification_action_color_filter -cyanogenmod.providers.CMSettings$Validator -wangdaye.com.geometricweather.R$string: int aqi_6 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -androidx.appcompat.R$styleable: int GradientColor_android_endY -androidx.loader.R$id: int right_side -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Choice -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust WindGust -okhttp3.internal.tls.BasicTrustRootIndex: int hashCode() -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: kotlin.coroutines.Continuation $continuation -okio.Util: void sneakyRethrow(java.lang.Throwable) -android.didikee.donate.R$layout: int abc_popup_menu_header_item_layout -com.google.android.material.chip.Chip: void setCheckedIcon(android.graphics.drawable.Drawable) -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_subtitleTextStyle -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String readKey(android.database.Cursor,int) -okhttp3.internal.ws.RealWebSocket$Streams -androidx.constraintlayout.widget.R$id: int percent -okhttp3.OkHttpClient$Builder: java.util.List connectionSpecs -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: float getProgress() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView_Menu -okhttp3.Response$Builder: long sentRequestAtMillis -com.google.android.material.R$dimen: int abc_switch_padding -androidx.appcompat.R$attr: int selectableItemBackgroundBorderless -com.google.android.material.R$xml: int standalone_badge_gravity_top_start -androidx.viewpager.widget.ViewPager: void removeOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) -com.jaredrummler.android.colorpicker.R$id: int title -okhttp3.internal.ws.WebSocketReader: void readUntilNonControlFrame() -android.didikee.donate.R$style: int Widget_AppCompat_ImageButton -com.amap.api.location.AMapLocation: int LOCATION_TYPE_GPS -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.amap.api.location.AMapLocationClientOption: void setLocationProtocol(com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol) -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object readKey(android.database.Cursor,int) -cyanogenmod.themes.ThemeManager: void registerThemeChangeListener(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeTextType -com.google.android.material.R$styleable: int KeyTimeCycle_android_translationZ -androidx.viewpager2.widget.ViewPager2: void setUserInputEnabled(boolean) -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onComplete() -com.turingtechnologies.materialscrollbar.R$styleable -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_sym_shortcut_label -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: java.lang.String toString() -okio.RealBufferedSink: okio.BufferedSink write(okio.Source,long) -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfile -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderPackage -com.baidu.location.indoor.mapversion.c.a$d: java.lang.String b -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -androidx.activity.R$styleable: int[] ColorStateListItem -io.reactivex.Observable: io.reactivex.Observable concatMapIterable(io.reactivex.functions.Function) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver -wangdaye.com.geometricweather.R$drawable: int abc_ic_voice_search_api_material -okhttp3.internal.http1.Http1Codec$ChunkedSource: long NO_CHUNK_YET -wangdaye.com.geometricweather.R$array: int language_values -okhttp3.MediaType: boolean equals(java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int ActionBar_hideOnContentScroll -wangdaye.com.geometricweather.R$id: int activity_widget_config_widgetContainer -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String getNotice() -com.google.android.gms.base.R$attr: int imageAspectRatioAdjust -com.xw.repo.bubbleseekbar.R$styleable: int[] MenuItem -androidx.hilt.work.R$dimen: int compat_notification_large_icon_max_height -androidx.appcompat.R$id: int radio -com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context,android.util.AttributeSet) -androidx.appcompat.widget.ActionBarContextView: void setContentHeight(int) -androidx.viewpager2.R$styleable: int ViewPager2_android_orientation -com.google.android.material.R$string: int material_minute_suffix -com.google.android.gms.common.internal.ClientIdentity: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_activated_mtrl_alpha -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: java.lang.Object leaveTransform(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog -androidx.preference.R$styleable: int SwitchCompat_thumbTextPadding -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.HistoryEntity,long) -com.xw.repo.bubbleseekbar.R$attr: int gapBetweenBars -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetStart -androidx.lifecycle.extensions.R$layout: int notification_template_part_time -com.google.android.material.R$dimen: int mtrl_extended_fab_elevation -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_tileMode -androidx.constraintlayout.widget.R$anim: int abc_tooltip_enter -james.adaptiveicon.R$anim: int abc_fade_out -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX getTemperature() -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationX -android.didikee.donate.R$id: int shortcut -wangdaye.com.geometricweather.R$animator: int weather_hail_1 -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: void setValue(java.lang.Object) -wangdaye.com.geometricweather.R$string: int settings_title_notification_temp_icon -com.tencent.bugly.crashreport.BuglyLog: BuglyLog() -okhttp3.Cache: int writeSuccessCount() -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: cyanogenmod.app.ThemeVersion$ComponentVersion getDeviceComponentVersion(cyanogenmod.app.ThemeComponent) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_corner_radius_small -wangdaye.com.geometricweather.R$attr: int itemIconPadding -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light -wangdaye.com.geometricweather.R$attr: int listChoiceBackgroundIndicator -wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -wangdaye.com.geometricweather.R$string: int week_5 -androidx.appcompat.R$id: R$id() -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -android.didikee.donate.R$dimen: int abc_text_size_button_material -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit[] values() -wangdaye.com.geometricweather.R$dimen: int abc_text_size_large_material -com.turingtechnologies.materialscrollbar.R$style: int Base_V28_Theme_AppCompat_Light -com.xw.repo.bubbleseekbar.R$attr: int colorButtonNormal -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_hovered_focused -com.google.android.material.R$dimen: int mtrl_extended_fab_end_padding -com.amap.api.location.DPoint$1: DPoint$1() -androidx.constraintlayout.widget.R$styleable: int[] OnSwipe -androidx.preference.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float totalPrecipitationProbability -okhttp3.internal.http1.Http1Codec$FixedLengthSink: okio.ForwardingTimeout timeout -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTextPadding -wangdaye.com.geometricweather.R$id: int header_title -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -wangdaye.com.geometricweather.R$dimen: int spinner_drop_width -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_itemPadding -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node getHead() -cyanogenmod.hardware.ICMHardwareService: java.lang.String getSerialNumber() -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonPhaseAngle -io.reactivex.Observable: io.reactivex.Observable filter(io.reactivex.functions.Predicate) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView -wangdaye.com.geometricweather.common.basic.models.weather.Weather: boolean isDaylight(java.util.TimeZone) -com.google.android.material.R$styleable: int[] CustomAttribute -com.amap.api.location.UmidtokenInfo -com.google.android.material.R$attr: int maxWidth -wangdaye.com.geometricweather.R$drawable: int flag_el -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Subhead -com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Light -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_baselineAligned -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean tryEmitScalar(java.util.concurrent.Callable) -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_closeItemLayout -retrofit2.Utils: boolean equals(java.lang.reflect.Type,java.lang.reflect.Type) -james.adaptiveicon.R$id: int action_mode_bar_stub -com.tencent.bugly.crashreport.biz.b: void b(android.content.Context,com.tencent.bugly.BuglyStrategy) -cyanogenmod.weather.CMWeatherManager: int requestWeatherUpdate(android.location.Location,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircleAngle -android.didikee.donate.R$id: int never -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_only_end_selected -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService: ForegroundTodayForecastUpdateService() -androidx.preference.R$attr: int dialogLayout -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColorHint -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$styleable: int[] GradientColorItem -io.reactivex.internal.observers.BasicIntQueueDisposable: long serialVersionUID -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Province -wangdaye.com.geometricweather.R$styleable: int Constraint_barrierMargin -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherPhase -okio.Pipe: Pipe(long) -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dark -com.jaredrummler.android.colorpicker.R$color: int accent_material_light -cyanogenmod.weather.ICMWeatherManager: void cancelRequest(int) -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter open(int,java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int[] TabLayout -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorBackgroundFloating -androidx.loader.R$dimen: int notification_right_side_padding_top -com.turingtechnologies.materialscrollbar.R$attr: int fontVariationSettings -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_controlBackground -wangdaye.com.geometricweather.R$id: int disableScroll -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_y_offset_touch -androidx.transition.R$color: int ripple_material_light -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -androidx.appcompat.R$id: int decor_content_parent -okio.Buffer: java.lang.String readUtf8() -wangdaye.com.geometricweather.R$drawable: int ic_map_clock -james.adaptiveicon.R$attr: int actionModeWebSearchDrawable -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_id -com.google.android.material.R$styleable: int TextInputLayout_counterTextColor -com.google.android.material.R$styleable: int KeyPosition_sizePercent -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long lastId -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY -okhttp3.internal.tls.TrustRootIndex -io.reactivex.internal.util.ArrayListSupplier: java.util.List apply(java.lang.Object) -okio.Buffer: okio.Buffer writeLongLe(long) -wangdaye.com.geometricweather.R$attr: int enforceTextAppearance -androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_Dialog -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_holo_dark -com.google.android.material.R$dimen: int disabled_alpha_material_dark -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation LEFT -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Primary -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getDirection() -okhttp3.Callback -androidx.preference.R$styleable: int ActionBar_elevation -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_3_material -androidx.constraintlayout.widget.R$anim: int abc_slide_in_top -com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetEnd -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_divider -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_stroke_color_selector -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo build() -cyanogenmod.app.Profile$ProfileTrigger: int mState -com.google.android.material.R$layout: int mtrl_alert_select_dialog_item -wangdaye.com.geometricweather.R$color: int darkPrimary_1 -wangdaye.com.geometricweather.R$anim: int popup_show_top_right -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_weightSum -androidx.coordinatorlayout.R$id: int normal -com.google.android.material.R$styleable: int Layout_layout_constraintRight_toRightOf -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_behavior -androidx.hilt.work.R$dimen: int notification_main_column_padding_top -com.xw.repo.bubbleseekbar.R$id: int up -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemIconSize() -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState MOVING -androidx.hilt.R$id: int accessibility_custom_action_7 -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: AccuAqiResult() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -retrofit2.BuiltInConverters$VoidResponseBodyConverter: retrofit2.BuiltInConverters$VoidResponseBodyConverter INSTANCE -androidx.viewpager2.widget.ViewPager2: void setCurrentItem(int) -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_show_motion_spec -com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_ContextMenu -androidx.lifecycle.LiveData: void onInactive() -okhttp3.CertificatePinner$Pin: java.lang.String WILDCARD -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.R$attr: int textEndPadding -retrofit2.RequestBuilder: boolean hasBody -androidx.appcompat.widget.ActionMenuView: ActionMenuView(android.content.Context,android.util.AttributeSet) -androidx.hilt.R$anim: int fragment_open_enter -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_summaryOff -wangdaye.com.geometricweather.R$array: int precipitation_unit_values -androidx.appcompat.widget.DropDownListView: void setListSelectionHidden(boolean) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.util.AtomicThrowable errors -androidx.appcompat.R$attr: int buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.R$id: int easeOut -androidx.preference.R$styleable: int ViewBackgroundHelper_android_background -com.google.android.material.R$dimen: int mtrl_textinput_box_label_cutout_padding -androidx.activity.R$id: int accessibility_custom_action_26 -androidx.preference.R$styleable: int PreferenceFragment_android_dividerHeight -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_state_list_animator -com.tencent.bugly.CrashModule: com.tencent.bugly.BuglyStrategy$a b -okhttp3.internal.cache2.Relay: void writeHeader(okio.ByteString,long,long) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver[] observers -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean forecastDaily -com.google.android.material.R$styleable: int Toolbar_title -wangdaye.com.geometricweather.R$style: int TestStyleWithLineHeightAppearance -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_THEMES -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String getFrom() -james.adaptiveicon.R$attr: int alphabeticModifiers -androidx.appcompat.widget.AppCompatImageButton: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) -com.google.android.material.R$id: int text2 -cyanogenmod.externalviews.KeyguardExternalView$6: KeyguardExternalView$6(cyanogenmod.externalviews.KeyguardExternalView,boolean) -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function6) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.internal.disposables.SequentialDisposable task -com.amap.api.location.CoordinateConverter: float calculateLineDistance(com.amap.api.location.DPoint,com.amap.api.location.DPoint) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -cyanogenmod.app.ProfileGroup: android.net.Uri getSoundOverride() -com.google.android.material.R$styleable: int LinearLayoutCompat_showDividers -wangdaye.com.geometricweather.R$id: int widget_day_time -androidx.appcompat.R$id: int action_bar_container -com.google.android.material.R$id: int material_clock_period_toggle -com.google.android.material.R$attr: int layout_constraintEnd_toStartOf -androidx.transition.R$layout: int notification_template_part_chronometer -androidx.lifecycle.extensions.R$id: int text -com.google.android.material.R$styleable: int KeyPosition_percentWidth -androidx.viewpager.R$attr: int fontStyle -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$string: int settings_title_precipitation_notification_switch -androidx.constraintlayout.widget.R$attr: int buttonGravity -android.didikee.donate.R$style: int Widget_AppCompat_Button_Small -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Spinner -com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_end_color -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -androidx.hilt.lifecycle.R$dimen: int compat_notification_large_icon_max_width -androidx.hilt.work.R$styleable: int FontFamily_fontProviderQuery -androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_android_color -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeFindDrawable -com.turingtechnologies.materialscrollbar.R$style -androidx.appcompat.widget.Toolbar: androidx.appcompat.widget.ActionMenuPresenter getOuterActionMenuPresenter() -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform PLATFORM -androidx.hilt.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.R$style: int Animation_Design_BottomSheetDialog -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language FOLLOW_SYSTEM -com.tencent.bugly.proguard.y: void a(java.lang.String,java.lang.String,java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable) -com.tencent.bugly.crashreport.common.info.b: java.lang.String e -okhttp3.OkHttpClient$1: OkHttpClient$1() -com.google.android.material.R$styleable: int AppBarLayoutStates_state_liftable -wangdaye.com.geometricweather.R$layout: int item_line -com.google.android.gms.location.LocationRequest -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String MobileLink -androidx.hilt.lifecycle.R$color -james.adaptiveicon.R$attr: int actionModeCutDrawable -io.reactivex.internal.disposables.CancellableDisposable -cyanogenmod.weather.IRequestInfoListener -retrofit2.Retrofit$1: retrofit2.Platform platform -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -wangdaye.com.geometricweather.R$attr: int values -androidx.preference.PreferenceGroup: PreferenceGroup(android.content.Context,android.util.AttributeSet) -androidx.preference.R$attr: int actionViewClass -androidx.appcompat.widget.ActionBarContainer: void setSplitBackground(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_night -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Button -wangdaye.com.geometricweather.R$attr: int checkedButton -androidx.lifecycle.extensions.R$styleable: int GradientColorItem_android_offset -androidx.hilt.lifecycle.R$id: int blocking -com.google.android.material.R$styleable: int CollapsingToolbarLayout_maxLines -wangdaye.com.geometricweather.R$id: int action_settings -wangdaye.com.geometricweather.R$string: int learn_more -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onAttach_0 -androidx.viewpager.R$dimen: int compat_notification_large_icon_max_height -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_GLOBAL -com.tencent.bugly.crashreport.common.info.b: java.lang.String a(android.content.Context) -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit MI -james.adaptiveicon.R$styleable: int Toolbar_subtitleTextColor -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_sheet_modal_elevation -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_menu_layout -com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_colorShape -wangdaye.com.geometricweather.R$styleable: int[] DrawerArrowToggle -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -cyanogenmod.weatherservice.WeatherProviderService: java.util.Set mWeakRequestsSet -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region -com.bumptech.glide.integration.okhttp.R$styleable: int[] GradientColorItem -james.adaptiveicon.R$attr: int imageButtonStyle -com.google.android.material.R$dimen: int abc_select_dialog_padding_start_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: int status -com.github.rahatarmanahmed.cpv.CircularProgressView$1: CircularProgressView$1(com.github.rahatarmanahmed.cpv.CircularProgressView) -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getSnow() -com.google.android.material.R$attr: int itemTextAppearanceActive -wangdaye.com.geometricweather.R$string: int key_widget_clock_day_vertical -io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.ObservableSource,io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstHorizontalStyle -cyanogenmod.app.ThemeVersion: ThemeVersion() -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getMinWidthMajor() -com.tencent.bugly.proguard.p: int a(com.tencent.bugly.proguard.p,java.lang.String,java.lang.String,java.lang.String[],com.tencent.bugly.proguard.o) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: CNWeatherResult$Life$Info() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display2 -okhttp3.Response: okhttp3.Request request() -com.google.android.material.R$styleable: int AppCompatTextView_textLocale -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_margin -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -com.jaredrummler.android.colorpicker.R$id: int select_dialog_listview -retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: retrofit2.OkHttpCall$ExceptionCatchingResponseBody this$0 -wangdaye.com.geometricweather.R$drawable: int notif_temp_12 -androidx.preference.R$styleable: int Preference_icon -com.jaredrummler.android.colorpicker.R$attr: int colorBackgroundFloating -androidx.preference.R$styleable: int AppCompatTheme_windowFixedHeightMinor -wangdaye.com.geometricweather.background.receiver.MainReceiver -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_track_material -james.adaptiveicon.R$style: int Base_V23_Theme_AppCompat -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircle -james.adaptiveicon.R$attr: int autoCompleteTextViewStyle -okio.InflaterSource: InflaterSource(okio.Source,java.util.zip.Inflater) -androidx.preference.R$styleable: int AppCompatTheme_colorPrimaryDark -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getCityId() -androidx.vectordrawable.R$drawable: int notification_template_icon_bg -cyanogenmod.app.CustomTile$ExpandedStyle: cyanogenmod.app.CustomTile$ExpandedItem[] getExpandedItems() -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Info -androidx.appcompat.R$id: int expand_activities_button -com.google.android.material.R$attr: int startIconCheckable -cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_PROFILES -com.google.android.material.internal.FlowLayout: int getItemSpacing() -okhttp3.internal.http2.Http2: java.lang.String[] BINARY -com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPanelView -androidx.preference.R$attr: int color -androidx.appcompat.resources.R$id: int action_text -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int isRainOrSnow -com.google.android.material.R$styleable: int MaterialCalendar_daySelectedStyle -com.google.android.material.R$id: int confirm_button -android.didikee.donate.R$styleable: int ViewBackgroundHelper_backgroundTintMode -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastVerticalStyle -androidx.constraintlayout.widget.R$attr: int navigationIcon -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_content_inset_material -androidx.activity.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.R$styleable: int ConstraintSet_flow_wrapMode -com.google.android.material.R$attr: int flow_lastVerticalStyle -com.google.android.material.R$style: int TextAppearance_Design_Counter -androidx.constraintlayout.widget.R$attr: int showDividers -okhttp3.internal.http2.Http2Stream$StreamTimeout: void exitAndThrowIfTimedOut() -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_title -com.xw.repo.bubbleseekbar.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -james.adaptiveicon.R$drawable: int abc_textfield_activated_mtrl_alpha -com.tencent.bugly.proguard.a: void a(java.util.ArrayList,java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String value -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_rtl -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color Color -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_background_transition_holo_light -androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragScale -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_icon -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: android.os.IBinder mRemote -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -androidx.fragment.app.Fragment$SavedState: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_Underlined -androidx.constraintlayout.widget.R$dimen: int abc_text_size_medium_material -com.amap.api.location.AMapLocation: void setLongitude(double) -com.google.android.material.R$drawable: int abc_ic_star_half_black_48dp -wangdaye.com.geometricweather.R$anim: int abc_grow_fade_in_from_bottom -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_middle_mtrl_light -com.google.android.material.R$styleable: int CustomAttribute_customDimension -io.reactivex.Observable: io.reactivex.Observable throttleFirst(long,java.util.concurrent.TimeUnit) -com.google.android.material.R$styleable: int ConstraintSet_android_pivotY -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_Surface -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_holo_light -okhttp3.WebSocketListener: void onClosing(okhttp3.WebSocket,int,java.lang.String) -androidx.preference.R$attr: int overlapAnchor -androidx.fragment.R$integer: R$integer() -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_drawableSize -androidx.loader.R$id: int action_image -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void removeCustomTileFromListener(cyanogenmod.app.ICustomTileListener,java.lang.String,java.lang.String,int) -androidx.fragment.app.Fragment: void setOnStartEnterTransitionListener(androidx.fragment.app.Fragment$OnStartEnterTransitionListener) -org.greenrobot.greendao.AbstractDaoSession: void update(java.lang.Object) -androidx.constraintlayout.widget.R$layout: int notification_template_custom_big -com.google.android.material.circularreveal.CircularRevealLinearLayout: void setCircularRevealScrimColor(int) -com.bumptech.glide.Priority: com.bumptech.glide.Priority HIGH -io.reactivex.Observable: io.reactivex.Observable timeout0(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.ObservableSource) -cyanogenmod.themes.IThemeService$Stub$Proxy: void removeUpdates(cyanogenmod.themes.IThemeChangeListener) -io.reactivex.internal.subscribers.DeferredScalarSubscriber: long serialVersionUID -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_scaleX -com.github.rahatarmanahmed.cpv.R$bool: int cpv_default_is_indeterminate -com.turingtechnologies.materialscrollbar.R$attr: int actionBarItemBackground -james.adaptiveicon.R$style: int Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.R$id: int center_horizontal -retrofit2.Retrofit$1: Retrofit$1(retrofit2.Retrofit,java.lang.Class) -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_12 -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabInlineLabel -org.greenrobot.greendao.AbstractDao: void attachEntity(java.lang.Object,java.lang.Object,boolean) -com.google.android.material.R$string: int abc_menu_meta_shortcut_label -wangdaye.com.geometricweather.R$attr: int editTextPreferenceStyle -wangdaye.com.geometricweather.R$attr: int cpv_borderColor -cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup[] getNotificationGroups() -wangdaye.com.geometricweather.R$xml: R$xml() -com.google.android.material.R$id: int wrap -androidx.dynamicanimation.R$drawable: int notification_tile_bg -androidx.appcompat.R$attr: int overlapAnchor -wangdaye.com.geometricweather.R$drawable: int abc_ic_clear_material -android.didikee.donate.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_android_entryValues -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a readFirstDumpInfo(java.lang.String,boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: int UnitType -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object PARENT_DISPOSED -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPrePaused(android.app.Activity) -com.jaredrummler.android.colorpicker.R$attr: int trackTint -wangdaye.com.geometricweather.R$styleable: int[] ForegroundLinearLayout -androidx.preference.R$layout: int abc_action_menu_layout -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_3 -wangdaye.com.geometricweather.R$array: int notification_text_color_values -james.adaptiveicon.R$attr: int collapseContentDescription -androidx.preference.R$styleable: int ViewBackgroundHelper_backgroundTintMode -okio.Segment: byte[] data -org.greenrobot.greendao.AbstractDao: long insertOrReplace(java.lang.Object) -com.google.android.material.R$color: int abc_search_url_text_selected -wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionTitle -com.amap.api.location.AMapLocation: int p -androidx.appcompat.R$id: int accessibility_custom_action_2 -okhttp3.internal.ws.RealWebSocket$Message: RealWebSocket$Message(int,okio.ByteString) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -android.didikee.donate.R$styleable: int[] CompoundButton -com.google.android.material.R$dimen: int mtrl_calendar_navigation_top_padding -androidx.viewpager2.widget.ViewPager2: int getScrollState() -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean offer(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour PastHour -wangdaye.com.geometricweather.location.services.LocationService: android.app.NotificationChannel getLocationNotificationChannel(android.content.Context) -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRealFeelTemperature(java.lang.Integer) -james.adaptiveicon.R$drawable: int abc_list_pressed_holo_dark -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeight -androidx.legacy.coreutils.R$styleable -com.jaredrummler.android.colorpicker.R$styleable: int View_paddingStart -android.didikee.donate.R$attr: int switchMinWidth -wangdaye.com.geometricweather.common.basic.models.weather.Weather -wangdaye.com.geometricweather.R$styleable: int FragmentContainerView_android_tag -com.google.android.material.R$color: int design_default_color_secondary_variant -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -io.reactivex.exceptions.CompositeException: java.util.List exceptions -james.adaptiveicon.R$layout: int abc_list_menu_item_layout -com.google.android.material.R$attr: int motionInterpolator -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_off_mtrl_alpha -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 -com.google.android.gms.common.SignInButton: void setColorScheme(int) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: long serialVersionUID -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSuggest(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String url -com.google.android.material.internal.ScrimInsetsFrameLayout: void setDrawBottomInsetForeground(boolean) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_default_mtrl_alpha -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenText(android.content.Context,java.lang.Integer) -androidx.constraintlayout.widget.R$attr: int attributeName -androidx.recyclerview.widget.RecyclerView: void setItemViewCacheSize(int) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -wangdaye.com.geometricweather.R$style: int Widget_Design_TextInputLayout -okio.Buffer: okio.Buffer write(byte[],int,int) -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_fontVariationSettings -com.jaredrummler.android.colorpicker.R$id: int action_bar_activity_content -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_viewInflaterClass -cyanogenmod.app.CustomTile$ExpandedStyle$1 -android.didikee.donate.R$styleable: int Toolbar_contentInsetEnd -cyanogenmod.providers.CMSettings$Secure$1: java.lang.String mDelimiter -wangdaye.com.geometricweather.R$color: int notification_background_rootLight -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_36dp -wangdaye.com.geometricweather.R$string: int common_google_play_services_install_text -cyanogenmod.weather.RequestInfo: java.lang.String access$802(cyanogenmod.weather.RequestInfo,java.lang.String) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int TORNADO -androidx.constraintlayout.widget.R$id: int src_atop -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Primary -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getSpeed() -androidx.constraintlayout.widget.Guideline: void setGuidelineBegin(int) -androidx.cardview.R$dimen: int cardview_default_elevation -androidx.swiperefreshlayout.R$color -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline3 -androidx.appcompat.R$styleable: int SwitchCompat_thumbTint -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: AccuDailyResult$DailyForecasts$DegreeDaySummary() -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property City -androidx.work.R$style: int TextAppearance_Compat_Notification_Line2 -okio.ByteString: int indexOf(okio.ByteString) -wangdaye.com.geometricweather.R$attr: int tabIndicatorGravity -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginRight -wangdaye.com.geometricweather.R$color: int lightPrimary_2 -okhttp3.CacheControl: java.lang.String headerValue() -com.google.android.material.R$styleable: int ConstraintSet_android_orientation -com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_id -com.google.android.material.R$attr: int srcCompat -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatElevation(float) -androidx.preference.R$drawable: int notification_bg_low_normal -james.adaptiveicon.R$dimen: int abc_control_inset_material -androidx.constraintlayout.widget.R$attr: int fontProviderQuery -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_primary_mtrl_alpha -androidx.fragment.R$dimen: int compat_button_inset_vertical_material -androidx.preference.R$anim: int abc_popup_exit -cyanogenmod.providers.CMSettings$System: CMSettings$System() -com.google.android.material.R$styleable: int PopupWindow_overlapAnchor -wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_default_mtrl_alpha -androidx.loader.R$attr: int ttcIndex -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean getNames() -androidx.viewpager.widget.ViewPager$SavedState -james.adaptiveicon.R$attr: int contentInsetRight -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setSunRiseSet(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean) -james.adaptiveicon.R$color: int background_floating_material_light -wangdaye.com.geometricweather.R$string: int settings_summary_unit -com.amap.api.fence.GeoFenceClient: com.amap.api.fence.GeoFenceManagerBase b -okhttp3.Cache: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) -okio.ByteString: okio.ByteString of(byte[]) -wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay_v14 -androidx.hilt.work.R$dimen: int notification_right_side_padding_top -androidx.appcompat.R$styleable: int ActionMode_titleTextStyle -wangdaye.com.geometricweather.R$attr: int bottom_text -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.String weatherText -androidx.core.widget.NestedScrollView$SavedState -androidx.appcompat.R$attr: int navigationIcon -com.tencent.bugly.proguard.z: boolean b -okio.BufferedSource -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String K -com.bumptech.glide.R$id: int right_side -com.tencent.bugly.proguard.u: byte[] a(byte[]) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_NoActionBar -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation[] values() -retrofit2.Call: okhttp3.Request request() -cyanogenmod.app.CustomTile$ExpandedStyle: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$styleable: int Layout_constraint_referenced_ids -com.bumptech.glide.R$id: int right -androidx.appcompat.R$id: int action_bar -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: int phenomenonId -com.google.android.material.bottomnavigation.BottomNavigationView: android.view.MenuInflater getMenuInflater() -com.xw.repo.bubbleseekbar.R$string: int abc_menu_space_shortcut_label -okio.Buffer: byte[] readByteArray() -androidx.work.R$style: int Widget_Compat_NotificationActionContainer -io.reactivex.internal.observers.BlockingObserver: void onError(java.lang.Throwable) -okhttp3.internal.http2.Http2Stream$FramingSink: boolean closed -androidx.preference.R$styleable: int[] ActionMenuItemView -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_CompactMenu -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_divider -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setPrefixString(java.lang.String) -androidx.hilt.lifecycle.R$string: R$string() -wangdaye.com.geometricweather.R$styleable: int Slider_trackColorActive -io.reactivex.internal.observers.BasicIntQueueDisposable: BasicIntQueueDisposable() -androidx.constraintlayout.widget.R$attr: int logoDescription -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig weatherEntityDaoConfig -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_singleLine -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.OkHttpClient client -com.baidu.location.indoor.mapversion.c.a$d: short[][] g -android.didikee.donate.R$styleable: int AppCompatTheme_panelMenuListWidth -com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_Switch -androidx.legacy.coreutils.R$styleable: R$styleable() -android.didikee.donate.R$dimen: int abc_dialog_min_width_minor -com.google.android.material.R$dimen: int design_snackbar_action_inline_max_width -com.xw.repo.bubbleseekbar.R$dimen: int abc_control_padding_material -com.baidu.location.BDLocation -com.turingtechnologies.materialscrollbar.R$layout: int abc_expanded_menu_layout -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min -cyanogenmod.weather.WeatherLocation: java.lang.String access$502(cyanogenmod.weather.WeatherLocation,java.lang.String) -androidx.appcompat.widget.AppCompatEditText: void setTextClassifier(android.view.textclassifier.TextClassifier) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_108 -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat -androidx.hilt.work.R$anim: int fragment_close_enter -com.google.gson.stream.JsonReader: int NUMBER_CHAR_FRACTION_DIGIT -androidx.constraintlayout.widget.R$styleable: int SearchView_android_inputType -com.tencent.bugly.proguard.j: java.nio.ByteBuffer a -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedPathSegments(java.lang.String) -cyanogenmod.app.ProfileGroup: ProfileGroup(java.lang.String,java.util.UUID,boolean) -android.didikee.donate.R$style: int Widget_AppCompat_PopupMenu_Overflow -androidx.activity.R$id: int accessibility_action_clickable_span -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_dither -wangdaye.com.geometricweather.R$styleable: int Chip_android_text -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String p -cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$Validator PROTECTED_COMPONENTS_MANAGER_VALIDATOR -androidx.preference.R$drawable: int abc_list_selector_holo_light -okhttp3.Cache$2: java.lang.String nextUrl -com.bumptech.glide.integration.okhttp.R$attr: int layout_anchor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: int UnitType -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_maxWidth -com.google.android.material.R$attr: int actionBarStyle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onActionModeFinished(android.view.ActionMode) -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_goIcon -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void dispose() -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation TOP -wangdaye.com.geometricweather.R$attr: int imageAspectRatio -androidx.preference.R$styleable: int AppCompatTextView_autoSizeMinTextSize -com.tencent.bugly.crashreport.common.info.AppInfo: java.util.List a(java.util.Map) -androidx.swiperefreshlayout.R$layout: int notification_action_tombstone -androidx.preference.R$id: int action_container -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: io.reactivex.Observer observer -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -com.bumptech.glide.load.engine.GlideException: java.lang.Throwable fillInStackTrace() -wangdaye.com.geometricweather.R$id: int item_trend_daily -cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,android.content.ComponentName) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_z -com.google.android.material.R$style: int Widget_AppCompat_Spinner -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow -androidx.preference.R$styleable: int MenuItem_android_alphabeticShortcut -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.Object adapt(retrofit2.Call) -wangdaye.com.geometricweather.R$styleable: int MenuView_android_windowAnimationStyle -androidx.constraintlayout.widget.R$drawable: int abc_ab_share_pack_mtrl_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource LocalSource -com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(java.lang.Object[],java.lang.String) -androidx.hilt.lifecycle.R$styleable: int[] FontFamilyFont -com.google.android.material.R$id: int accessibility_custom_action_5 -wangdaye.com.geometricweather.R$style: int Animation_AppCompat_Tooltip -okio.Okio$1: void write(okio.Buffer,long) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_OutlinedButton -cyanogenmod.app.StatusBarPanelCustomTile$1: StatusBarPanelCustomTile$1() -androidx.lifecycle.ProcessLifecycleOwnerInitializer: ProcessLifecycleOwnerInitializer() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeWindSpeed -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_normal -wangdaye.com.geometricweather.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginLeft -cyanogenmod.providers.CMSettings$System: java.lang.String DOUBLE_TAP_SLEEP_GESTURE -com.google.android.material.bottomappbar.BottomAppBar$SavedState -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat -okhttp3.internal.tls.BasicTrustRootIndex: java.util.Map subjectToCaCerts -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_transitionPathRotate -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_THEME_PACKAGE -androidx.core.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_Tooltip -com.jaredrummler.android.colorpicker.R$color: int material_grey_900 -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.FlowableEmitter serialize() -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog_Alert -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_switchTextOff -android.didikee.donate.R$dimen: int abc_action_button_min_height_material -com.jaredrummler.android.colorpicker.R$attr: int overlapAnchor -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setLockWallpaper(java.lang.String) -wangdaye.com.geometricweather.R$array: int speed_unit_values -com.amap.api.location.AMapLocation: void setGpsAccuracyStatus(int) -okhttp3.HttpUrl: java.lang.String encodedUsername() -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColorLink -com.xw.repo.bubbleseekbar.R$color: int abc_tint_default -androidx.work.R$styleable: int GradientColor_android_endX -com.google.android.material.chip.Chip: void setCloseIconTintResource(int) -com.turingtechnologies.materialscrollbar.R$attr: int colorBackgroundFloating -wangdaye.com.geometricweather.settings.fragments.SettingsFragment: SettingsFragment() -androidx.hilt.lifecycle.R$dimen: int notification_action_icon_size -com.amap.api.fence.GeoFenceClient: void addGeoFence(com.amap.api.location.DPoint,float,java.lang.String) -com.google.android.material.R$attr: int layout_constraintRight_creator -androidx.transition.R$styleable: int[] FontFamily -androidx.appcompat.R$styleable: int AppCompatTheme_colorButtonNormal -cyanogenmod.app.CMTelephonyManager: void setDefaultSmsSub(int) -james.adaptiveicon.R$attr: int showAsAction -androidx.preference.R$color: int abc_tint_btn_checkable -cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$Validator PROTECTED_COMPONENTS_VALIDATOR -com.google.android.material.R$layout: int mtrl_calendar_month_navigation -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius -james.adaptiveicon.R$attr: int splitTrack -wangdaye.com.geometricweather.R$dimen: int large_margin -com.tencent.bugly.proguard.u: void a(java.lang.Runnable,long) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String getUnit() -wangdaye.com.geometricweather.R$layout: int preference_dialog_edittext -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: long contentLength() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HOME_WAKE_SCREEN_VALIDATOR -com.jaredrummler.android.colorpicker.R$dimen: int notification_small_icon_background_padding -com.google.android.material.R$attr: int chipBackgroundColor -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.ErrorCode errorCode -com.turingtechnologies.materialscrollbar.R$id: int chronometer -wangdaye.com.geometricweather.R$drawable: int notif_temp_31 -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -androidx.recyclerview.R$id: int text2 -wangdaye.com.geometricweather.R$attr: int tickColorInactive -okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withReadTimeout(int,java.util.concurrent.TimeUnit) -androidx.vectordrawable.animated.R$drawable: R$drawable() -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String U -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: long timeout -com.jaredrummler.android.colorpicker.R$attr: int textColorAlertDialogListItem -com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String FLAVOR -com.amap.api.location.AMapLocationClientOption: boolean isDownloadCoordinateConvertLibrary() -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenVoice(android.content.Context,java.lang.Integer) -androidx.recyclerview.R$styleable: R$styleable() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: AccuCurrentResult$PrecipitationSummary$PastHour$Metric() -okhttp3.internal.Internal: okhttp3.internal.connection.RealConnection get(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) -com.amap.api.location.UmidtokenInfo: android.os.Handler a -james.adaptiveicon.R$attr: int contentDescription -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String ID -james.adaptiveicon.R$styleable: int AppCompatTheme_editTextColor -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_tooltipFrameBackground -android.didikee.donate.R$dimen: int notification_right_icon_size -com.google.android.material.R$attr: int contentPadding -com.amap.api.location.AMapLocationClientOption: boolean isNeedAddress() -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatSeekBar -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.util.ErrorMode errorMode -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int TROPICAL_STORM -androidx.appcompat.widget.SearchView: int getInputType() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: ObservableConcatMap$ConcatMapDelayErrorObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) -okio.HashingSink: java.security.MessageDigest messageDigest -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: AtmoAuraQAResult$Advice() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlActivated -com.amap.api.location.AMapLocationClientOption: boolean e -cyanogenmod.themes.ThemeManager: boolean processThemeResources(java.lang.String) -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean validate(org.reactivestreams.Subscription,org.reactivestreams.Subscription) -com.google.android.material.textfield.TextInputLayout: int getBoxStrokeWidth() -com.xw.repo.bubbleseekbar.R$attr: int colorControlNormal -com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_pressed -androidx.constraintlayout.widget.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar -com.google.android.material.datepicker.DateValidatorPointForward: android.os.Parcelable$Creator CREATOR -com.amap.api.fence.PoiItem: java.lang.String getProvince() -androidx.dynamicanimation.R$style: int Widget_Compat_NotificationActionText -androidx.appcompat.R$attr: int textAppearancePopupMenuHeader -wangdaye.com.geometricweather.R$attr: int triggerReceiver -androidx.appcompat.R$styleable: int ActionMode_background -androidx.constraintlayout.widget.R$styleable: int Motion_pathMotionArc -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: android.content.Context a(com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler) -androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context) -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginStart(int) -com.turingtechnologies.materialscrollbar.TouchScrollBar: TouchScrollBar(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -android.didikee.donate.R$id: int action_bar_title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: int status -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Light_ActionBar_Solid -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -com.google.android.material.R$style: int TextAppearance_AppCompat -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitationProbability -com.google.android.material.R$styleable: int KeyPosition_motionTarget -android.didikee.donate.R$drawable: int abc_tab_indicator_mtrl_alpha -com.google.gson.stream.JsonReader: java.lang.String nextUnquotedValue() -cyanogenmod.app.IPartnerInterface: void reboot() -com.google.android.material.R$styleable: int AppCompatTheme_searchViewStyle -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean isDisposed() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String ID -androidx.preference.R$style: int Widget_AppCompat_SearchView -okhttp3.internal.http2.Http2Connection$Listener: okhttp3.internal.http2.Http2Connection$Listener REFUSE_INCOMING_STREAMS -com.amap.api.fence.GeoFence: void setType(int) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable -androidx.hilt.work.R$id: int accessibility_custom_action_15 -james.adaptiveicon.R$id: int search_edit_frame -james.adaptiveicon.R$attr: int dialogTheme -wangdaye.com.geometricweather.R$string: int settings_title_live_wallpaper -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_track -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_SCREEN_ON -io.reactivex.Observable: io.reactivex.Single firstOrError() -androidx.preference.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.R$id: int circle_center -wangdaye.com.geometricweather.R$styleable: int Chip_textStartPadding -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_constantSize -androidx.loader.R$dimen: int notification_content_margin_start -androidx.constraintlayout.widget.R$dimen: int hint_alpha_material_dark -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_color -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline5 -cyanogenmod.hardware.ThermalListenerCallback$State -androidx.customview.R$drawable: R$drawable() -cyanogenmod.providers.DataUsageContract: java.lang.String LABEL -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: ObservableSampleWithObservable$SampleMainNoLast(io.reactivex.Observer,io.reactivex.ObservableSource) -okhttp3.internal.ws.RealWebSocket: long CANCEL_AFTER_CLOSE_MILLIS -cyanogenmod.app.Profile: void setRingMode(cyanogenmod.profiles.RingModeSettings) -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable -androidx.appcompat.R$styleable: int DrawerArrowToggle_thickness -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void collapseNotificationPanel() -com.xw.repo.bubbleseekbar.R$dimen: int abc_list_item_padding_horizontal_material -com.tencent.bugly.proguard.a: java.lang.String b -androidx.appcompat.R$styleable: int AppCompatTheme_windowMinWidthMinor -com.google.android.material.R$style: int Widget_MaterialComponents_TextView -androidx.appcompat.R$id: int search_go_btn -wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: DaoMaster$DevOpenHelper(android.content.Context,java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int View_theme -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust WindGust -com.turingtechnologies.materialscrollbar.R$attr: int behavior_hideable -androidx.appcompat.widget.SwitchCompat: void setThumbDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$attr: int state_collapsible -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean error(java.lang.Throwable) -cyanogenmod.app.Profile: cyanogenmod.profiles.RingModeSettings getRingMode() -com.xw.repo.bubbleseekbar.R$attr: int bsb_second_track_color -wangdaye.com.geometricweather.R$styleable: int[] CoordinatorLayout_Layout -com.amap.api.location.DPoint: double a -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_getCurrentLiveLockScreen -retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: boolean cancel(boolean) -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String j() -androidx.hilt.lifecycle.R$id: R$id() -com.turingtechnologies.materialscrollbar.R$attr: int height -wangdaye.com.geometricweather.R$styleable: int[] ShapeableImageView -com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalAlign -com.jaredrummler.android.colorpicker.R$dimen: int cpv_item_horizontal_padding -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_bottom -androidx.hilt.work.R$drawable: int notification_template_icon_bg -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_menu_material -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition ABOVE_LINE -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipMinHeight -com.amap.api.location.CoordUtil: CoordUtil() -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_brightness -com.google.android.material.R$dimen: int abc_action_bar_content_inset_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX getDirection() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getAqi() -androidx.preference.R$attr: int titleMargin -androidx.appcompat.R$id: int contentPanel -wangdaye.com.geometricweather.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String getValue() -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -okhttp3.internal.http2.Http2Stream$FramingSource: void receive(okio.BufferedSource,long) -okhttp3.FormBody: int size() -com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean l -okhttp3.RequestBody$3: okhttp3.MediaType contentType() -com.turingtechnologies.materialscrollbar.R$attr: int allowStacking -cyanogenmod.app.LiveLockScreenInfo: java.lang.String toString() -androidx.appcompat.R$styleable: int[] ViewStubCompat -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -androidx.legacy.coreutils.R$id -okio.Pipe: okio.Sink sink() -com.github.rahatarmanahmed.cpv.CircularProgressView: void setIndeterminate(boolean) -androidx.drawerlayout.R$styleable: int[] GradientColorItem -androidx.preference.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.R$dimen: int mtrl_transition_shared_axis_slide_distance -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -io.reactivex.exceptions.CompositeException: void printStackTrace() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_121 -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_ab_back_material -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getO3() -wangdaye.com.geometricweather.R$id: int currentLocationButton -androidx.appcompat.R$style: int Platform_Widget_AppCompat_Spinner -androidx.constraintlayout.widget.R$attr: int layout_constraintBaseline_creator -james.adaptiveicon.R$styleable: int ActionBar_background -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight -androidx.appcompat.R$styleable: int AppCompatTheme_dialogPreferredPadding -com.google.android.material.card.MaterialCardView: void setStrokeWidth(int) -okio.Buffer: okio.Buffer writeUtf8(java.lang.String,int,int) -com.google.android.material.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean isPrecipitation() -androidx.fragment.R$drawable: int notification_bg -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform get() -okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method getMethod -androidx.constraintlayout.widget.R$color: int error_color_material_light -okhttp3.internal.cache.CacheInterceptor -okhttp3.internal.http1.Http1Codec$AbstractSource: Http1Codec$AbstractSource(okhttp3.internal.http1.Http1Codec,okhttp3.internal.http1.Http1Codec$1) -james.adaptiveicon.R$id: int action_menu_presenter -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light -com.jaredrummler.android.colorpicker.R$attr: int preferenceCategoryStyle -cyanogenmod.power.PerformanceManager -cyanogenmod.weatherservice.ServiceRequest: void fail() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: java.lang.String Unit -wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_android_maxWidth -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void dispose() -com.google.gson.internal.LinkedTreeMap: int size() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: double Value -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_showDividers -james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Dialog -androidx.constraintlayout.widget.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -androidx.appcompat.R$style: int Theme_AppCompat_Dialog_MinWidth -androidx.work.R$bool: int enable_system_foreground_service_default -wangdaye.com.geometricweather.R$drawable: int notif_temp_73 -com.google.android.material.R$styleable: int Chip_closeIconEnabled -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_disableDependentsState -com.jaredrummler.android.colorpicker.R$attr: int iconSpaceReserved -androidx.constraintlayout.widget.R$attr: int buttonStyle -retrofit2.Retrofit$Builder: java.util.List callAdapterFactories -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_ENABLED_VALIDATOR -androidx.vectordrawable.animated.R$string -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_MinWidth -androidx.fragment.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_UK -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial -okhttp3.internal.ws.WebSocketProtocol: void validateCloseCode(int) -wangdaye.com.geometricweather.common.ui.transitions.RoundCornerTransition -com.google.android.material.R$styleable: int Constraint_layout_constraintRight_toLeftOf -androidx.loader.R$drawable: int notification_template_icon_low_bg -com.tencent.bugly.proguard.an -androidx.appcompat.R$styleable: int AppCompatTheme_switchStyle -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Id -androidx.appcompat.widget.AppCompatSpinner: void setBackgroundResource(int) -android.didikee.donate.R$id: int right_icon -androidx.vectordrawable.animated.R$id: int line1 -okhttp3.internal.tls.CertificateChainCleaner -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State CANCELLED -okio.RealBufferedSink: okio.BufferedSink writeLongLe(long) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -wangdaye.com.geometricweather.R$id: int toggle -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void dispose() -com.amap.api.fence.DistrictItem: DistrictItem() -okio.Base64: byte[] URL_MAP -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextTextColor -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderPackage -androidx.dynamicanimation.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.textfield.TextInputLayout: com.google.android.material.shape.MaterialShapeDrawable getBoxBackground() -com.jaredrummler.android.colorpicker.R$styleable: int Preference_isPreferenceVisible -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_min_width_major -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -com.tencent.bugly.proguard.ak: java.lang.String e -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endColor -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorHeight -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: int fusionMode -androidx.lifecycle.viewmodel.R: R() -androidx.transition.R$id: int text2 -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Menu -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight -wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_DropDownUp -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -okhttp3.Response$Builder: okhttp3.Response networkResponse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX getAqi() -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_16dp -okhttp3.internal.ws.WebSocketReader: void processNextFrame() -okhttp3.internal.http2.Http2Connection$3: void execute() -cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri getThumbailUri() -com.tencent.bugly.crashreport.crash.b: java.util.List a(java.util.List) -io.reactivex.internal.util.NotificationLite$SubscriptionNotification -android.didikee.donate.R$styleable: int AppCompatImageView_tintMode -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textStyle -androidx.preference.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -androidx.preference.R$drawable: int abc_seekbar_track_material -com.google.android.material.R$styleable: int Toolbar_subtitleTextAppearance -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCountryId -okhttp3.internal.http.HttpHeaders: okhttp3.Headers varyHeaders(okhttp3.Headers,okhttp3.Headers) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() -okhttp3.internal.http2.Http2: byte TYPE_PUSH_PROMISE -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: boolean val$visible -android.didikee.donate.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Title_Inverse -androidx.lifecycle.ViewModel -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextColor -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display4 -com.turingtechnologies.materialscrollbar.R$attr: int keylines -wangdaye.com.geometricweather.R$id: int widget_day_week_week_2 -androidx.appcompat.R$style: int Theme_AppCompat_Light_DarkActionBar -okhttp3.ResponseBody$BomAwareReader: ResponseBody$BomAwareReader(okio.BufferedSource,java.nio.charset.Charset) -okio.Timeout: long deadlineNanoTime() -okhttp3.Dispatcher: boolean $assertionsDisabled -com.jaredrummler.android.colorpicker.R$attr: int actionBarPopupTheme -wangdaye.com.geometricweather.R$bool: int mtrl_btn_textappearance_all_caps -com.jaredrummler.android.colorpicker.R$styleable: int Preference_order -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: AccuCurrentResult$WindChillTemperature$Imperial() -androidx.lifecycle.extensions.R$drawable: int notification_bg_normal -james.adaptiveicon.R$styleable: int AppCompatTheme_viewInflaterClass -wangdaye.com.geometricweather.db.entities.LocationEntity: void setLongitude(float) -okio.Buffer: okio.ByteString snapshot(int) -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setWind(double,double,int) -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: retrofit2.Callback val$callback -com.google.android.material.R$dimen: int notification_small_icon_size_as_large -android.didikee.donate.R$attr: int submitBackground -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: java.lang.String getNotificationStyleName(android.content.Context) -androidx.transition.R$styleable: int GradientColor_android_startColor -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_preserveIconSpacing -com.turingtechnologies.materialscrollbar.R$id: int group_divider -com.tencent.bugly.crashreport.common.info.a: java.lang.String g(java.lang.String) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layoutDescription -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_maxHeight -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextEnabled -com.tencent.bugly.proguard.u: boolean d() -wangdaye.com.geometricweather.R$attr: int listPreferredItemHeight -wangdaye.com.geometricweather.R$string: int sp_widget_week_setting -com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_DropDownUp -com.google.android.material.chip.Chip: void setCheckedIconEnabled(boolean) -io.reactivex.internal.util.NotificationLite: boolean accept(java.lang.Object,io.reactivex.Observer) -wangdaye.com.geometricweather.R$attr: int imageAspectRatioAdjust -cyanogenmod.providers.CMSettings$Secure: boolean putFloat(android.content.ContentResolver,java.lang.String,float) -androidx.preference.R$styleable: int SwitchPreference_android_summaryOff -com.google.android.material.R$string: int fab_transformation_sheet_behavior -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer degreeDayTemperature -androidx.activity.R$styleable: int FontFamily_fontProviderQuery -androidx.hilt.R$id -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_AU -com.xw.repo.bubbleseekbar.R$attr: int editTextBackground -wangdaye.com.geometricweather.R$string: int feedback_restart -com.google.android.material.R$attr: int homeLayout -james.adaptiveicon.R$id: int shortcut -io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource) -com.xw.repo.bubbleseekbar.R$attr: int activityChooserViewStyle -com.tencent.bugly.proguard.l: boolean a(boolean,boolean) -androidx.legacy.coreutils.R$id: int action_container -androidx.constraintlayout.widget.R$id: int animateToEnd -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight -retrofit2.Response: Response(okhttp3.Response,java.lang.Object,okhttp3.ResponseBody) -androidx.constraintlayout.utils.widget.ImageFilterView: float getWarmth() -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense -androidx.fragment.app.Fragment -wangdaye.com.geometricweather.R$anim: int mtrl_bottom_sheet_slide_in -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_min -wangdaye.com.geometricweather.R$attr: int liftOnScrollTargetViewId -com.tencent.bugly.proguard.ar: java.util.Map g -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle -androidx.preference.R$dimen: int abc_dialog_fixed_width_minor -com.amap.api.location.LocationManagerBase: void startAssistantLocation() -okio.Util: Util() -androidx.appcompat.resources.R$id: int right_side -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_padding_bottom -androidx.hilt.lifecycle.R$anim: R$anim() -androidx.vectordrawable.animated.R$drawable: int notification_bg_normal -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_RC4_128_MD5 -wangdaye.com.geometricweather.R$drawable: int mtrl_tabs_default_indicator -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_HOMESCREEN -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float o3 -wangdaye.com.geometricweather.R$styleable: int ArcProgress_text -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_indeterminateProgressStyle -androidx.constraintlayout.widget.R$id: int tag_unhandled_key_listeners -androidx.preference.R$styleable: int FontFamilyFont_android_font -androidx.preference.R$styleable: int SearchView_android_focusable -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean access$502(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,boolean) -james.adaptiveicon.R$attr: int backgroundTintMode -wangdaye.com.geometricweather.R$drawable: int clock_dial_light -com.google.android.material.R$attr: int chipIconVisible -com.google.android.material.R$dimen: int mtrl_extended_fab_start_padding -wangdaye.com.geometricweather.db.entities.AlertEntity: void setPriority(int) -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_btn_unelevated_state_list_anim -wangdaye.com.geometricweather.R$id: int expand_activities_button -wangdaye.com.geometricweather.R$color: int mtrl_btn_transparent_bg_color -okhttp3.Cache: long size() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.util.List _queryWeatherEntity_AlertEntityList(java.lang.String,java.lang.String) -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableBottom -wangdaye.com.geometricweather.R$drawable: int notif_temp_58 -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabSelectedTextColor -androidx.loader.R$style: R$style() -wangdaye.com.geometricweather.R$attr: int themeLineHeight -wangdaye.com.geometricweather.R$dimen: int tooltip_horizontal_padding -androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -wangdaye.com.geometricweather.R$id: int src_atop -com.google.android.material.R$styleable: int CustomAttribute_customPixelDimension -com.amap.api.location.AMapLocation: int LOCATION_TYPE_WIFI -cyanogenmod.providers.CMSettings$System: java.util.Map VALIDATORS -androidx.lifecycle.extensions.R$id: int notification_main_column_container -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_pathMotionArc -wangdaye.com.geometricweather.R$layout: int item_weather_daily_uv -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Time -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void rstStream(int,okhttp3.internal.http2.ErrorCode) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: double Value -com.xw.repo.bubbleseekbar.R$attr: int editTextColor -retrofit2.RequestFactory: okhttp3.Headers headers -android.didikee.donate.R$styleable: int SearchView_queryHint -com.google.android.material.R$attr: int layout_constraintTop_toBottomOf -com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_track_material -okhttp3.internal.cache2.Relay: java.io.RandomAccessFile file -okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot nextSnapshot -androidx.preference.R$attr: int colorSwitchThumbNormal -com.turingtechnologies.materialscrollbar.R$integer: R$integer() -io.reactivex.internal.observers.InnerQueuedObserver -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onComplete() -com.google.android.material.R$id: int jumpToEnd -com.google.android.material.R$id: int mtrl_picker_header_title_and_selection -androidx.viewpager.widget.PagerTabStrip: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$id: int notification_main_column -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy KEEP -org.greenrobot.greendao.AbstractDao: void deleteInTx(java.lang.Iterable) -io.reactivex.internal.queue.SpscArrayQueue: int mask -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode daytimeWeatherCode -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: AccuDailyResult$DailyForecasts$Night$Ice() -com.turingtechnologies.materialscrollbar.R$styleable: int[] ForegroundLinearLayout -com.xw.repo.bubbleseekbar.R$color: int background_floating_material_dark -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: ObservablePublishSelector$TargetObserver(io.reactivex.Observer) -androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getCurrentLiveLockScreen -androidx.dynamicanimation.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String province -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removeAllEncodedQueryParameters(java.lang.String) -cyanogenmod.app.LiveLockScreenInfo: void cloneInto(cyanogenmod.app.LiveLockScreenInfo) -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String unitId -com.bumptech.glide.integration.okhttp.R$id: int bottom -androidx.activity.R$drawable: int notification_template_icon_bg -androidx.hilt.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.R$id: int container_main_details_title -com.baidu.location.indoor.mapversion.c.c$b: java.lang.String b -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onSubscribe(org.reactivestreams.Subscription) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String power -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL_VALIDATOR -com.tencent.bugly.proguard.p: java.util.Map a(int,com.tencent.bugly.proguard.o) -com.google.android.material.R$attr: int drawableBottomCompat -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_addNotificationGroup -androidx.viewpager.R$styleable: int FontFamily_fontProviderFetchStrategy -com.xw.repo.bubbleseekbar.R$attr: int contentInsetStartWithNavigation -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginEnd -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onSubscribe(org.reactivestreams.Subscription) -com.xw.repo.bubbleseekbar.R$attr: int showTitle -wangdaye.com.geometricweather.R$color: int design_default_color_on_secondary -io.reactivex.internal.util.EmptyComponent: void onSubscribe(org.reactivestreams.Subscription) -okhttp3.Cookie: long expiresAt() -android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -androidx.appcompat.resources.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String country -com.google.android.material.R$style: int Theme_AppCompat_DayNight_DarkActionBar -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setStatus(int) -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: java.lang.Runnable getWrappedRunnable() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String ShortPhrase -okhttp3.logging.LoggingEventListener: void connectionReleased(okhttp3.Call,okhttp3.Connection) -cyanogenmod.app.ProfileGroup$1 -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) -androidx.preference.R$attr: int colorPrimary -androidx.constraintlayout.widget.Placeholder: android.view.View getContent() -com.google.android.material.R$styleable: int View_android_theme -com.amap.api.fence.GeoFence: boolean isAble() -com.google.android.material.R$attr: int hideOnScroll -androidx.loader.R$styleable: int GradientColor_android_centerX -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void innerComplete() -com.google.android.material.R$layout: int material_chip_input_combo -androidx.hilt.work.R$color: int secondary_text_default_material_light -james.adaptiveicon.R$id: int blocking -androidx.preference.R$attr: int paddingEnd -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetRight -com.google.android.material.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -com.google.android.material.R$dimen: int mtrl_btn_padding_left -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitation -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER_X -okhttp3.ConnectionSpec$Builder -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setRecordUserInfoOnceADay(boolean) -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindTitle -com.google.android.material.R$attr: int buttonStyleSmall -okio.ForwardingSource: okio.Source delegate() -okhttp3.WebSocket: boolean send(okio.ByteString) -com.github.rahatarmanahmed.cpv.R$attr -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_removeNotificationGroup -com.tencent.bugly.proguard.d: void b(int) -wangdaye.com.geometricweather.R$id: int textinput_helper_text -okio.Base64 -androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver -io.reactivex.internal.functions.Functions$HashSetCallable: java.lang.Object call() -com.amap.api.fence.GeoFence: float l -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchGenericMotionEvent(android.view.MotionEvent) -james.adaptiveicon.R$id: int add -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SeekBar_Discrete -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginLeft -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode AUTO -androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor INSTANCE -wangdaye.com.geometricweather.R$style: int notification_content_text -cyanogenmod.externalviews.ExternalView$2: int val$y -james.adaptiveicon.R$styleable: int TextAppearance_android_shadowDx -com.google.android.material.internal.NavigationMenuItemView: void setActionView(android.view.View) -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean active -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum Maximum -androidx.appcompat.R$styleable: int AlertDialog_singleChoiceItemLayout -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_16dp -wangdaye.com.geometricweather.R$attr: int layout_constraintDimensionRatio -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_motionProgress -androidx.appcompat.R$style: int Widget_AppCompat_Light_ListView_DropDown -android.didikee.donate.R$attr: int arrowShaftLength -wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_android_maxHeight -androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.card.MaterialCardView: void setStrokeColor(android.content.res.ColorStateList) -androidx.dynamicanimation.animation.DynamicAnimation -okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman INSTANCE -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onComplete() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -com.google.android.material.snackbar.Snackbar$SnackbarLayout: Snackbar$SnackbarLayout(android.content.Context) -androidx.customview.R$styleable: int FontFamilyFont_ttcIndex -androidx.coordinatorlayout.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$styleable: int Toolbar_android_minHeight -androidx.preference.R$styleable: int AppCompatTheme_editTextColor -com.amap.api.fence.GeoFence: void setFenceId(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int ActionMenuItemView_android_minWidth -com.tencent.bugly.Bugly: java.lang.Boolean isDev -androidx.constraintlayout.widget.R$attr: int layout_constraintCircleAngle -com.google.android.material.R$id: int flip -com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.ValueAnimator progressAnimator -james.adaptiveicon.R$drawable: int abc_cab_background_internal_bg -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean setNativeAppVersion(java.lang.String) -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_padding_end_material -androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo$Builder setPriority(int) -com.google.android.material.R$styleable: int Layout_layout_constraintDimensionRatio -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getPm10Color(android.content.Context) -com.google.android.material.R$attr: int contentPaddingLeft -androidx.appcompat.R$drawable: int notify_panel_notification_icon_bg -james.adaptiveicon.R$layout: int abc_list_menu_item_icon -com.google.android.material.R$anim: int design_snackbar_in -wangdaye.com.geometricweather.R$styleable: int ListPreference_useSimpleSummaryProvider -wangdaye.com.geometricweather.R$styleable: int Transition_autoTransition -androidx.transition.R$drawable: int notification_bg -org.greenrobot.greendao.database.DatabaseOpenHelper: boolean loadSQLCipherNativeLibs -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoldLevel() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setValue(java.util.List) -com.xw.repo.bubbleseekbar.R$layout: int notification_action -wangdaye.com.geometricweather.db.entities.MinutelyEntity -okhttp3.internal.http2.Http2Connection$5 -androidx.swiperefreshlayout.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$style: int Animation_MaterialComponents_BottomSheetDialog -androidx.preference.R$style: int AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.R$styleable: int[] TabLayout -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize -com.google.gson.FieldNamingPolicy: FieldNamingPolicy(java.lang.String,int,com.google.gson.FieldNamingPolicy$1) -androidx.appcompat.R$color: int material_grey_50 -androidx.appcompat.R$dimen: int abc_action_button_min_width_material -com.tencent.bugly.proguard.u: java.lang.Object a(com.tencent.bugly.proguard.u) -com.tencent.bugly.crashreport.common.info.a: java.lang.String m -wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchAnchorSide -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_2 -wangdaye.com.geometricweather.R$string: int key_hide_lunar -androidx.constraintlayout.widget.R$interpolator: R$interpolator() -james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.R$dimen: int default_drawer_width -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$dimen: int abc_disabled_alpha_material_dark -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.util.concurrent.atomic.AtomicBoolean cancelled -okhttp3.internal.platform.OptionalMethod: boolean isSupported(java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ProgressBar -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_creator -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getO3() -androidx.appcompat.widget.ActionBarOverlayLayout: int getNestedScrollAxes() -james.adaptiveicon.R$styleable: int[] AlertDialog -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.db.entities.AlertEntity: int getPriority() -com.xw.repo.bubbleseekbar.R$attr: int fontProviderFetchTimeout -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean disposed -wangdaye.com.geometricweather.R$string: int greenDAO -androidx.appcompat.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setEnableANRCrashMonitor(boolean) -james.adaptiveicon.R$styleable: int Toolbar_menu -com.turingtechnologies.materialscrollbar.DragScrollBar: float getHideRatio() -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundTint -androidx.hilt.work.R$id: int tag_accessibility_clickable_spans -okhttp3.CookieJar$1: void saveFromResponse(okhttp3.HttpUrl,java.util.List) -okio.Buffer: java.util.List segmentSizes() -cyanogenmod.profiles.RingModeSettings -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void dispose() -androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -androidx.appcompat.R$id: int accessibility_custom_action_20 -com.tencent.bugly.proguard.u: long a(boolean) -com.google.android.material.R$attr: int spinnerDropDownItemStyle -okio.SegmentedByteString: okio.ByteString substring(int) -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -com.baidu.location.e.m -wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_pressed_alpha -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getKey() -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onComplete() -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_15 -retrofit2.BuiltInConverters: boolean checkForKotlinUnit -retrofit2.ParameterHandler$Body: java.lang.reflect.Method method -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onComplete() -com.google.android.material.R$style: int TextAppearance_AppCompat_Headline -androidx.appcompat.widget.AppCompatTextView: void setSupportCompoundDrawablesTintMode(android.graphics.PorterDuff$Mode) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listDividerAlertDialog -com.jaredrummler.android.colorpicker.R$integer: int abc_config_activityShortDur -com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_filled_box_default_background_color -androidx.lifecycle.ReflectiveGenericLifecycleObserver: androidx.lifecycle.ClassesInfoCache$CallbackInfo mInfo -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean isCanceled() -com.google.android.material.R$style: int TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarButtonStyle -com.google.android.gms.base.R$attr: R$attr() -wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_title -com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_Tooltip -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_enqueueLiveLockScreen -wangdaye.com.geometricweather.R$drawable: int ic_tree -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_width -androidx.work.impl.utils.futures.AbstractFuture$Failure$1: AbstractFuture$Failure$1(java.lang.String) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver -okhttp3.internal.ws.WebSocketProtocol: int PAYLOAD_LONG -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getThermalState() -cyanogenmod.weatherservice.IWeatherProviderService: void cancelOngoingRequests() -androidx.customview.R$attr: int alpha -com.tencent.bugly.proguard.p: boolean c -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierMargin -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -com.jaredrummler.android.colorpicker.R$attr: int tintMode -okhttp3.CacheControl: boolean immutable -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display2 -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource REMOTE -cyanogenmod.weatherservice.WeatherProviderService: java.lang.String SERVICE_INTERFACE -androidx.constraintlayout.widget.R$id: int home -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent -cyanogenmod.app.CustomTile: java.lang.String contentDescription -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onError(java.lang.Throwable) -androidx.preference.R$attr: int buttonBarStyle -wangdaye.com.geometricweather.R$style: int notification_large_title_text -wangdaye.com.geometricweather.R$styleable: int Preference_android_enabled -com.bumptech.glide.integration.okhttp.R$drawable: int notification_icon_background -com.xw.repo.bubbleseekbar.R$attr: int displayOptions -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: CaiYunForecastResult$PrecipitationBean() -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionMode -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderFetchTimeout -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.fragment.R$styleable: int[] GradientColor -com.amap.api.fence.GeoFence: long getEnterTime() -androidx.appcompat.R$attr: int drawableSize -androidx.dynamicanimation.R$integer -wangdaye.com.geometricweather.R$layout: int material_timepicker_textinput_display -com.google.android.material.R$attr: int labelStyle -com.google.android.material.R$dimen: int abc_alert_dialog_button_dimen -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Caption -okhttp3.internal.http2.Http2Writer: void ping(boolean,int,int) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_numericShortcut -okhttp3.internal.http2.Hpack$Writer: int SETTINGS_HEADER_TABLE_SIZE_LIMIT -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_14 -androidx.hilt.lifecycle.R$styleable: int Fragment_android_name -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_2 -com.google.android.material.R$styleable: int Layout_layout_constraintGuide_begin -wangdaye.com.geometricweather.R$styleable: int Preference_singleLineTitle -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State RUNNING -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -okhttp3.Response$Builder: okhttp3.Response$Builder addHeader(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: java.util.Date StartDateTime -com.google.android.material.tabs.TabItem: TabItem(android.content.Context,android.util.AttributeSet) -cyanogenmod.app.ProfileGroup: boolean mDirty -com.jaredrummler.android.colorpicker.R$style: int Platform_V25_AppCompat_Light -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder callTimeout(long,java.util.concurrent.TimeUnit) -retrofit2.ParameterHandler$Query: retrofit2.Converter valueConverter -io.reactivex.subjects.PublishSubject$PublishDisposable: void dispose() -com.jaredrummler.android.colorpicker.R$style: int Preference_Information -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_showSeekBarValue -com.google.android.material.R$styleable: int Layout_layout_constraintStart_toStartOf -okhttp3.internal.Util: java.lang.String[] EMPTY_STRING_ARRAY -com.google.android.gms.dynamic.RemoteCreator$RemoteCreatorException: RemoteCreator$RemoteCreatorException(java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: MfEphemerisResult$Properties$Ephemeris() -com.turingtechnologies.materialscrollbar.R$attr: int actionBarDivider -androidx.preference.R$styleable: int AppCompatTheme_actionBarTheme -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationX -com.google.android.material.appbar.MaterialToolbar: void setNavigationIcon(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotation -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_Switch -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_dialogPreferenceStyle -james.adaptiveicon.R$styleable: int ActionMode_closeItemLayout -james.adaptiveicon.R$id: int radio -com.autonavi.aps.amapapi.model.AMapLocationServer: AMapLocationServer(java.lang.String) -com.tencent.bugly.proguard.al: void a(com.tencent.bugly.proguard.i) -james.adaptiveicon.R$string: int abc_action_bar_home_description -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String brandId -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicReference upstream -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String alertId -okhttp3.Cache$CacheRequestImpl$1: okhttp3.internal.cache.DiskLruCache$Editor val$editor -com.google.android.material.R$color: int test_mtrl_calendar_day -okhttp3.internal.Util: okio.ByteString UTF_8_BOM -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_RESET -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum -com.bumptech.glide.load.engine.GlideException: void setLoggingDetails(com.bumptech.glide.load.Key,com.bumptech.glide.load.DataSource,java.lang.Class) -androidx.appcompat.R$attr: int splitTrack -com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace SRGB -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: float intervalInHour -com.turingtechnologies.materialscrollbar.R$attr: int tabInlineLabel -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours -androidx.viewpager2.R$attr: int reverseLayout -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.UV uv -com.google.android.material.R$styleable: int MenuItem_contentDescription -com.google.android.material.R$color: int material_on_primary_emphasis_medium -com.xw.repo.bubbleseekbar.R$attr: int indeterminateProgressStyle -androidx.transition.R$drawable: int notification_bg_low -androidx.viewpager.R$drawable: int notification_icon_background -androidx.hilt.work.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight -cyanogenmod.content.Intent: java.lang.String CATEGORY_THEME_PACKAGE_INSTALLED_STATE_CHANGE -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.google.android.material.R$color: int mtrl_textinput_filled_box_default_background_color -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void dispose() -com.jaredrummler.android.colorpicker.R$attr: int listLayout -wangdaye.com.geometricweather.R$id: int widget_day_subtitle -okhttp3.internal.connection.RouteSelector: RouteSelector(okhttp3.Address,okhttp3.internal.connection.RouteDatabase,okhttp3.Call,okhttp3.EventListener) -androidx.appcompat.R$color: int switch_thumb_disabled_material_light -com.jaredrummler.android.colorpicker.R$layout: int abc_select_dialog_material -com.google.android.gms.location.DetectedActivity -androidx.hilt.work.R$drawable: int notification_bg_low -com.google.android.material.chip.Chip: android.text.TextUtils$TruncateAt getEllipsize() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeRealFeelTemperature -wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeManager getInstance(android.content.Context) -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void run() -com.turingtechnologies.materialscrollbar.R$id: int message -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: AccuDailyResult$DailyForecasts$Day$Snow() -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontVariationSettings -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: boolean inputExhausted -androidx.constraintlayout.widget.R$string: int abc_menu_alt_shortcut_label -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_SETTINGS -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String ACTION_SET_ALARM_ENABLED -androidx.customview.R$attr: int font -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.internal.disposables.SequentialDisposable task -wangdaye.com.geometricweather.R$id: int activity_weather_daily_subtitle -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.core.R$id: int text2 -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Button -okhttp3.Cache$Entry: okhttp3.Headers responseHeaders -okhttp3.Call: boolean isExecuted() -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: int phenomenonId -wangdaye.com.geometricweather.R$attr: int chipSpacing -wangdaye.com.geometricweather.R$styleable: int Slider_labelStyle -androidx.vectordrawable.animated.R$id: int notification_background -com.google.android.material.R$color: int mtrl_choice_chip_text_color -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_horizontal_padding -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_NoActionBar -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float thunderstorm -androidx.vectordrawable.R$dimen: int compat_button_inset_vertical_material -io.reactivex.internal.subscriptions.EmptySubscription: void cancel() -cyanogenmod.externalviews.ExternalView: void setProviderComponent(android.content.ComponentName) -cyanogenmod.app.suggest.IAppSuggestManager$Stub: cyanogenmod.app.suggest.IAppSuggestManager asInterface(android.os.IBinder) -com.google.android.material.R$color: int mtrl_textinput_default_box_stroke_color -androidx.legacy.coreutils.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Link -retrofit2.ParameterHandler$HeaderMap -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_container -james.adaptiveicon.R$styleable: int ViewBackgroundHelper_backgroundTintMode -androidx.appcompat.widget.Toolbar: int getPopupTheme() -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_primary_mtrl_alpha -wangdaye.com.geometricweather.R$anim: int mtrl_bottom_sheet_slide_out -androidx.constraintlayout.widget.R$attr: int actionMenuTextColor -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_dark -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean isEmpty() -androidx.appcompat.R$string: int abc_menu_space_shortcut_label -com.tencent.bugly.proguard.v: com.tencent.bugly.proguard.u i -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: int requestFusion(int) -androidx.core.R$dimen: int compat_button_inset_vertical_material -io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,int) -com.google.android.material.R$attr: int alertDialogStyle -okhttp3.internal.Util: int delimiterOffset(java.lang.String,int,int,java.lang.String) -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_grey -cyanogenmod.themes.ThemeChangeRequest: java.util.Map getPerAppOverlays() -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_fontVariationSettings -okhttp3.internal.cache.DiskLruCache$Entry: void setLengths(java.lang.String[]) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -android.didikee.donate.R$attr: int progressBarStyle -com.google.android.material.R$styleable: int MaterialCardView_checkedIconTint -com.google.android.gms.common.SignInButton: SignInButton(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_material_dark -retrofit2.Retrofit$1: java.lang.Object[] emptyArgs -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline1 -androidx.constraintlayout.widget.R$styleable: int[] State -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -androidx.customview.R$id: int action_image -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.R$styleable: int Badge_badgeGravity -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void removeCustomTileWithTag(java.lang.String,java.lang.String,int,int) -com.google.android.material.R$styleable: int AppCompatTheme_editTextStyle -androidx.preference.R$styleable: int AppCompatTheme_windowActionBar -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetRight -com.google.android.gms.common.api.ApiException: java.lang.String getStatusMessage() -androidx.appcompat.R$id: int search_voice_btn -cyanogenmod.externalviews.ExternalViewProviderService$1 -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getRippleColor() -com.google.android.material.internal.StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: ObservableCombineLatest$LatestCoordinator(io.reactivex.Observer,io.reactivex.functions.Function,int,int,boolean) -wangdaye.com.geometricweather.R$attr: int paddingBottomNoButtons -android.didikee.donate.R$id: int actions -com.google.android.material.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.db.entities.LocationEntity: void setCountry(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_fabSize -com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Display -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeFindDrawable -okhttp3.Headers: okhttp3.Headers of(java.lang.String[]) -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Light -okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.internal.cache.CacheStrategy get() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) -wangdaye.com.geometricweather.R$drawable: int ic_filter -androidx.activity.R$id: int accessibility_custom_action_6 -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance -com.tencent.bugly.crashreport.biz.b: com.tencent.bugly.crashreport.biz.a a -io.reactivex.Observable: java.util.concurrent.Future toFuture() -com.google.android.material.R$id: int mtrl_view_tag_bottom_padding -wangdaye.com.geometricweather.R$integer: int mtrl_card_anim_delay_ms -androidx.preference.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -com.jaredrummler.android.colorpicker.R$id: int activity_chooser_view_content -com.google.android.material.R$dimen: int design_snackbar_action_text_color_alpha -io.reactivex.Observable: io.reactivex.Observable concatMapDelayError(io.reactivex.functions.Function) -com.google.gson.stream.JsonReader: char readEscapeCharacter() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.functions.Function mapper -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_percent -androidx.constraintlayout.widget.R$id: int jumpToEnd -com.google.android.material.R$attr: int itemTextAppearanceInactive -com.tencent.bugly.crashreport.crash.d: void a(com.tencent.bugly.crashreport.crash.d,java.lang.Thread,int,java.lang.String,java.lang.String,java.lang.String,java.util.Map) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean -androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context) -android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Dialog -com.google.android.material.card.MaterialCardView: void setProgress(float) -android.didikee.donate.R$attr: int textAppearanceSmallPopupMenu -com.google.android.material.R$style: int TextAppearance_Design_Placeholder -com.google.android.material.R$string: int character_counter_pattern -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedWidthMajor -wangdaye.com.geometricweather.R$styleable: int Chip_chipMinHeight -retrofit2.OkHttpCall: boolean isCanceled() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_elevation -androidx.activity.R$id: int tag_accessibility_heading -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean profileExists(android.os.ParcelUuid) -cyanogenmod.app.CustomTile$Builder: android.net.Uri mOnClickUri -okhttp3.internal.http2.Hpack: Hpack() -james.adaptiveicon.R$color: int material_deep_teal_500 -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstHorizontalStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: java.lang.String Unit -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String Link -com.google.android.material.R$drawable: int abc_list_selector_background_transition_holo_dark -wangdaye.com.geometricweather.R$id: int title -com.turingtechnologies.materialscrollbar.R$drawable: int design_bottom_navigation_item_background -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: java.io.IOException thrownException -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$StreamTimeout writeTimeout -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_pressed_holo_light -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense -wangdaye.com.geometricweather.R$attr: int thumbTextPadding -com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalStyle -androidx.lifecycle.ClassesInfoCache$CallbackInfo: ClassesInfoCache$CallbackInfo(java.util.Map) -androidx.preference.R$dimen: int abc_search_view_preferred_width -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_expandedHintEnabled -com.google.android.material.R$attr: int logoDescription -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_99 -okio.AsyncTimeout$2 -androidx.hilt.lifecycle.R$attr: int fontProviderAuthority -okhttp3.internal.ws.WebSocketProtocol: WebSocketProtocol() -androidx.preference.R$attr: int tickMarkTint -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_48 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listMenuViewStyle -com.google.android.material.R$attr: int curveFit -com.google.android.material.chip.Chip: void setChipIconEnabled(boolean) -cyanogenmod.power.IPerformanceManager$Stub$Proxy: android.os.IBinder asBinder() -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.util.concurrent.atomic.AtomicReference latest -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType COLOR_TYPE -wangdaye.com.geometricweather.R$styleable: int[] Preference -okio.SegmentedByteString: java.lang.String hex() -wangdaye.com.geometricweather.R$font: int product_sans_bold -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogTitle -androidx.transition.R$styleable: int FontFamily_fontProviderAuthority -cyanogenmod.weatherservice.WeatherProviderService$1: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: void setUnit(java.lang.String) -android.didikee.donate.R$id: int select_dialog_listview -james.adaptiveicon.R$dimen: int disabled_alpha_material_dark -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_commitIcon -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Tooltip -androidx.legacy.coreutils.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_4 -com.jaredrummler.android.colorpicker.R$dimen: int abc_seekbar_track_background_height_material -androidx.preference.R$style: int Base_Widget_AppCompat_Spinner_Underlined -com.google.android.material.R$styleable: int Transform_android_scaleX -android.support.v4.app.INotificationSideChannel$Stub: android.support.v4.app.INotificationSideChannel getDefaultImpl() -androidx.constraintlayout.widget.R$style: int Platform_V25_AppCompat -okhttp3.MultipartBody: long contentLength() -cyanogenmod.weather.IRequestInfoListener$Stub: int TRANSACTION_onWeatherRequestCompleted -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_GCM_SHA256 -wangdaye.com.geometricweather.R$drawable: int notif_temp_57 -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode[] values() -com.jaredrummler.android.colorpicker.R$attr: int logo -okio.Buffer: long read(okio.Buffer,long) -androidx.preference.R$styleable: int MenuGroup_android_orderInCategory -com.turingtechnologies.materialscrollbar.R$attr: int backgroundTintMode -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_hideMotionSpec -androidx.appcompat.R$styleable: int[] DrawerArrowToggle -com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.b p -androidx.preference.R$anim: int abc_fade_in -androidx.fragment.R$id: int accessibility_custom_action_23 -wangdaye.com.geometricweather.R$style: int Animation_AppCompat_DropDownUp -com.tencent.bugly.crashreport.crash.b: b(int,android.content.Context,com.tencent.bugly.proguard.u,com.tencent.bugly.proguard.p,com.tencent.bugly.crashreport.common.strategy.a,com.tencent.bugly.BuglyStrategy$a,com.tencent.bugly.proguard.o) -cyanogenmod.providers.CMSettings$Secure: java.lang.String STATS_COLLECTION -cyanogenmod.profiles.BrightnessSettings: boolean isOverride() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_8 -com.xw.repo.bubbleseekbar.R$attr: int windowActionModeOverlay -okhttp3.RealCall: void captureCallStackTrace() -okhttp3.internal.cache.DiskLruCache$Snapshot: long getLength(int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_59 -com.google.android.material.R$color: int mtrl_filled_background_color -com.xw.repo.BubbleSeekBar: float getProgressFloat() -com.google.android.material.R$dimen: int abc_action_button_min_width_overflow_material -com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_tick_mark_material -com.turingtechnologies.materialscrollbar.R$layout: int mtrl_layout_snackbar_include -androidx.appcompat.widget.AppCompatTextView: int getAutoSizeMaxTextSize() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onComplete() -com.google.android.material.bottomappbar.BottomAppBar: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() -wangdaye.com.geometricweather.R$drawable: int abc_btn_borderless_material -retrofit2.Retrofit: boolean validateEagerly -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap -com.google.android.material.chip.Chip: void setLayoutDirection(int) -okhttp3.internal.http2.Http2Stream: java.util.Deque headersQueue -androidx.loader.R$styleable: int GradientColor_android_centerY -okio.Buffer: okio.Buffer copyTo(java.io.OutputStream,long,long) -androidx.activity.R$dimen: int compat_button_inset_vertical_material -com.bumptech.glide.R$drawable: int notification_icon_background -com.google.android.material.slider.Slider: float getStepSize() -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -com.google.android.material.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -com.google.android.material.chip.ChipGroup: void setChipSpacingHorizontalResource(int) -com.jaredrummler.android.colorpicker.R$attr: int subtitleTextStyle -com.tencent.bugly.crashreport.CrashReport: java.lang.String getAppID() -io.reactivex.internal.observers.DeferredScalarDisposable: void dispose() -androidx.swiperefreshlayout.R$id: int time -okio.RealBufferedSink$1: void write(byte[],int,int) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: void run() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String en_US -wangdaye.com.geometricweather.R$id: int widget_week_temp_3 -com.google.android.material.R$drawable: int mtrl_popupmenu_background_dark -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float snowPrecipitationProbability -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: void run() -io.reactivex.Observable: io.reactivex.Observable concatArrayEagerDelayError(int,int,io.reactivex.ObservableSource[]) -android.didikee.donate.R$drawable: int notification_action_background -android.didikee.donate.R$layout: int abc_dialog_title_material -com.jaredrummler.android.colorpicker.R$color: int highlighted_text_material_light -james.adaptiveicon.R$string: int abc_action_bar_up_description -retrofit2.RequestFactory$Builder: java.lang.String relativeUrl -wangdaye.com.geometricweather.R$attr: int flow_verticalGap -james.adaptiveicon.R$string: int search_menu_title -androidx.coordinatorlayout.R$id: int notification_main_column -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_LIFE_DETAILS -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitation -wangdaye.com.geometricweather.R$id: int pathRelative -android.didikee.donate.R$style: int Platform_V21_AppCompat -androidx.lifecycle.ComputableLiveData: ComputableLiveData(java.util.concurrent.Executor) -com.google.android.material.R$attr: int layout_constraintWidth_max -com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.content.res.ColorStateList getItemTextColor() -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_trackTint -com.tencent.bugly.proguard.q: boolean a(android.database.sqlite.SQLiteDatabase) -com.tencent.bugly.crashreport.common.info.a: java.lang.String M() -wangdaye.com.geometricweather.R$drawable: int notif_temp_61 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean -androidx.appcompat.resources.R$id: int async -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: MfForecastResult$DailyForecast$Humidity() -android.didikee.donate.R$attr: int isLightTheme -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_default -okio.Buffer: long indexOf(byte,long) -cyanogenmod.providers.CMSettings$System: java.lang.String BACK_WAKE_SCREEN -cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener: void onAttachedToWindow() -androidx.preference.R$attr: int stackFromEnd -androidx.vectordrawable.animated.R$id: int dialog_button -wangdaye.com.geometricweather.R$array: int air_quality_co_unit_values -androidx.appcompat.widget.AppCompatRadioButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Info -cyanogenmod.app.Profile: int describeContents() -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_stroke_width_focused -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer relativeHumidityMin -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver otherObserver -com.google.android.material.R$attr: int iconifiedByDefault -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundResource(int) -com.google.gson.stream.JsonWriter: int peek() -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.Scheduler scheduler -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String b() -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display4 -androidx.dynamicanimation.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.R$color: int design_fab_shadow_start_color -retrofit2.RequestFactory: retrofit2.ParameterHandler[] parameterHandlers -com.xw.repo.bubbleseekbar.R$attr: int editTextStyle -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int NO_REQUEST_NO_VALUE -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_cursor_material -androidx.constraintlayout.widget.R$drawable: int abc_list_longpressed_holo -androidx.appcompat.widget.FitWindowsFrameLayout: FitWindowsFrameLayout(android.content.Context,android.util.AttributeSet) -androidx.customview.R$styleable: int GradientColor_android_endX -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Menu -com.baidu.location.e.l$b: int c(com.baidu.location.e.l$b) -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -com.bumptech.glide.integration.okhttp.R$id: int title -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String cityId -wangdaye.com.geometricweather.R$attr: int titleTextStyle -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_28 -androidx.core.R$attr: int fontStyle -android.didikee.donate.R$attr: int closeIcon -androidx.customview.R$dimen: int notification_action_text_size -androidx.constraintlayout.widget.R$attr: int textAppearanceListItemSmall -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator -okio.RealBufferedSource: long indexOfElement(okio.ByteString) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionMenuTextColor -cyanogenmod.providers.CMSettings$System: java.lang.String PROXIMITY_ON_WAKE -cyanogenmod.externalviews.KeyguardExternalView: void performAction(java.lang.Runnable) -com.google.android.material.R$styleable: int TextInputLayout_suffixTextAppearance -com.tencent.bugly.proguard.an: byte[] c -wangdaye.com.geometricweather.db.entities.HourlyEntity -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicLong index -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_11 -androidx.viewpager.R$id: int italic -okhttp3.internal.cache.DiskLruCache: java.lang.String READ -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTint -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: MfWarningsResult$WarningConsequence() -androidx.appcompat.widget.SearchView: int getSuggestionRowLayout() -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius -okhttp3.internal.Util: java.util.TimeZone UTC -androidx.constraintlayout.widget.R$string: int abc_action_menu_overflow_description -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_94 -com.bumptech.glide.integration.okhttp.R$color: R$color() -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_seekBarPreferenceStyle -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogTitle -androidx.appcompat.widget.SearchView: int getPreferredHeight() -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String ALARM_ID -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_SHOWERS -okio.RealBufferedSink: void write(okio.Buffer,long) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_creator -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat valueOf(java.lang.String) -com.google.android.material.R$styleable: int NavigationView_itemShapeInsetEnd -cyanogenmod.profiles.ConnectionSettings: void setValue(int) -com.turingtechnologies.materialscrollbar.R$attr: int layout_insetEdge -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature temperature -com.turingtechnologies.materialscrollbar.R$id: int textSpacerNoTitle -com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_horizontal_material -androidx.lifecycle.MediatorLiveData: void removeSource(androidx.lifecycle.LiveData) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_27 -androidx.appcompat.R$string: int abc_toolbar_collapse_description -com.google.android.material.R$styleable: int[] Tooltip -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setNighttimeTemperature(int) -wangdaye.com.geometricweather.common.basic.models.weather.Astro: boolean isValid() -io.reactivex.internal.observers.ForEachWhileObserver -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabView -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void drain() -wangdaye.com.geometricweather.common.basic.models.weather.Wind: boolean isValidSpeed() -wangdaye.com.geometricweather.R$xml: int perference_notification_color -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_1 -wangdaye.com.geometricweather.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setEn_US(java.lang.String) -wangdaye.com.geometricweather.R$string: int settings_summary_background_free_off -james.adaptiveicon.R$attr: int buttonStyleSmall -androidx.coordinatorlayout.R$layout -com.jaredrummler.android.colorpicker.R$attr: int borderlessButtonStyle -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SearchView -cyanogenmod.providers.CMSettings$1: boolean validate(java.lang.String) -wangdaye.com.geometricweather.R$id: int middle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction Direction -androidx.appcompat.widget.SearchView: void setQueryRefinementEnabled(boolean) -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_layout -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getSuffixTextColor() -androidx.appcompat.R$styleable: int SearchView_defaultQueryHint -io.reactivex.internal.subscriptions.EmptySubscription: java.lang.String toString() -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.ChineseCityEntity) -androidx.viewpager2.R$attr: int font -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyTitle -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Large_Inverse -com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$id: int widget_day_week_title -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit NMI -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_HelperText -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setOnPageSwipeListener(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout$OnPagerSwipeListener) -com.jaredrummler.android.colorpicker.R$layout: int select_dialog_item_material -androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_width_material -okhttp3.FormBody: java.util.List encodedNames -com.tencent.bugly.proguard.z: java.lang.String b(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$attr: int track -com.tencent.bugly.proguard.am: java.lang.String c -wangdaye.com.geometricweather.R$drawable: int notif_temp_51 -com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_chainStyle -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorColor -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: ObservableTimeoutTimed$TimeoutObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker) -androidx.preference.R$attr: int iconifiedByDefault -com.xw.repo.bubbleseekbar.R$color: int tooltip_background_light -android.didikee.donate.R$style: int Theme_AppCompat_Dialog_Alert -androidx.activity.R$id: int action_text -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_visibility -com.turingtechnologies.materialscrollbar.R$attr: int actionBarTheme -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindLevel -okhttp3.ResponseBody$BomAwareReader -okio.BufferedSource: void skip(long) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void onAttachedToWindow() -com.google.android.material.R$id: int date_picker_actions -androidx.customview.R$styleable: int[] ColorStateListItem -cyanogenmod.profiles.BrightnessSettings: int getValue() -com.tencent.bugly.proguard.y$a: boolean a -androidx.constraintlayout.widget.R$dimen: int tooltip_vertical_padding -androidx.preference.R$string: R$string() -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String MobileLink -com.google.android.material.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView_PrimarySurface -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer snowHazard6h -androidx.appcompat.R$styleable: int AppCompatTextView_drawableStartCompat -com.tencent.bugly.proguard.c: void a(byte[]) -okio.Buffer: okio.BufferedSink writeInt(int) -androidx.vectordrawable.R$layout: int notification_template_part_time -com.google.android.material.R$attr: int boxCollapsedPaddingTop -androidx.preference.R$styleable: int AppCompatTheme_seekBarStyle -com.google.android.material.button.MaterialButton: void setIconTintMode(android.graphics.PorterDuff$Mode) -androidx.appcompat.R$interpolator: int fast_out_slow_in -com.tencent.bugly.proguard.v: void a(com.tencent.bugly.proguard.an,boolean,int,java.lang.String,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: int status -okhttp3.internal.http2.Http2Reader$Handler: void ackSettings() -james.adaptiveicon.R$styleable: int AppCompatTheme_textColorSearchUrl -okhttp3.internal.cache2.Relay$RelaySource -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: long serialVersionUID -okio.ForwardingTimeout: ForwardingTimeout(okio.Timeout) -androidx.appcompat.R$styleable: int TextAppearance_android_shadowDy -androidx.preference.R$color: int abc_primary_text_material_light -androidx.constraintlayout.widget.R$dimen: int abc_seekbar_track_progress_height_material -androidx.constraintlayout.widget.R$layout: int abc_activity_chooser_view_list_item -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_chip_text_size -james.adaptiveicon.R$styleable: int[] ViewBackgroundHelper -com.google.android.material.R$styleable: int AppCompatTheme_actionModeShareDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int RelativeHumidity -androidx.vectordrawable.animated.R$drawable: int notification_tile_bg -com.google.android.material.R$attr: int chipSpacing -androidx.appcompat.R$string: int abc_searchview_description_submit -androidx.appcompat.R$styleable: int MenuItem_android_titleCondensed -androidx.preference.R$attr: int contentInsetStartWithNavigation -androidx.preference.R$style: int Widget_AppCompat_ListView_DropDown -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onComplete() -com.tencent.bugly.proguard.m: java.lang.String b -com.google.android.material.R$styleable: int CardView_cardMaxElevation -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_defaultQueryHint -cyanogenmod.weatherservice.ServiceRequestResult: java.util.List mLocationLookupList -wangdaye.com.geometricweather.R$string: int wind_chill_temperature -okhttp3.internal.cache.DiskLruCache: long ANY_SEQUENCE_NUMBER -androidx.lifecycle.Lifecycle$Event -com.google.android.material.circularreveal.cardview.CircularRevealCardView: int getCircularRevealScrimColor() -com.tencent.bugly.crashreport.biz.UserInfoBean: int describeContents() -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: io.reactivex.disposables.Disposable upstream -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_shutdown -wangdaye.com.geometricweather.R$drawable: int notif_temp_130 -androidx.dynamicanimation.R$attr: R$attr() -cyanogenmod.app.ProfileManager: void setActiveProfile(java.lang.String) -androidx.transition.R$id: int async -com.turingtechnologies.materialscrollbar.R$attr: int actionModeFindDrawable -wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundTodayForecastUpdateService: Hilt_ForegroundTodayForecastUpdateService() -io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicLong missedProduced -androidx.activity.R$dimen -androidx.activity.R$id: int accessibility_custom_action_23 -okhttp3.internal.ws.RealWebSocket$CancelRunnable: void run() -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void disposeAfter() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HURRICANE -androidx.preference.R$id: int uniform -okhttp3.HttpUrl: java.lang.String scheme -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setAppReportDelay(long) -androidx.appcompat.resources.R$attr: int fontProviderFetchTimeout -android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupMenu -com.google.android.material.R$attr: int layout_constraintLeft_toLeftOf -com.google.android.material.circularreveal.cardview.CircularRevealCardView -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_NoActionBar -com.turingtechnologies.materialscrollbar.R$interpolator: R$interpolator() -android.didikee.donate.R$attr: int collapseIcon -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: ICMWeatherManager$Stub$Proxy(android.os.IBinder) -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnLayoutChangeListener(com.google.android.material.snackbar.BaseTransientBottomBar$OnLayoutChangeListener) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: java.lang.String Unit -androidx.preference.R$attr: int useSimpleSummaryProvider -cyanogenmod.profiles.ConnectionSettings: int mSubId -androidx.hilt.work.R$id: int text2 -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -com.google.android.material.R$styleable: int AppBarLayout_liftOnScroll -androidx.versionedparcelable.CustomVersionedParcelable -okhttp3.internal.Util: boolean equal(java.lang.Object,java.lang.Object) -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.identityscope.IdentityScopeLong identityScopeLong -androidx.preference.R$styleable: int LinearLayoutCompat_measureWithLargestChild -wangdaye.com.geometricweather.R$dimen: int widget_time_text_size -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorGravity -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCityId() -com.google.android.material.R$attr: int errorTextAppearance -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_variablePadding -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Empty -com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_Surface -com.tencent.bugly.crashreport.common.strategy.StrategyBean: int describeContents() -com.google.android.material.R$styleable: int MaterialCardView_checkedIconSize -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_MIN -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_DropDownItem_Spinner -androidx.preference.R$style: int Preference_SwitchPreference_Material -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar -androidx.appcompat.resources.R$styleable: int StateListDrawableItem_android_drawable -okio.ForwardingTimeout: okio.Timeout clearTimeout() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer wetBulbTemperature -com.google.android.material.R$id: int checked -com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_horizontal_material -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginStart -androidx.loader.R$styleable: int GradientColor_android_startY -androidx.preference.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -androidx.vectordrawable.R$integer: R$integer() -androidx.preference.R$dimen: int abc_edit_text_inset_horizontal_material -androidx.appcompat.widget.AppCompatImageButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$dimen: int compat_control_corner_material -io.reactivex.internal.observers.ForEachWhileObserver: void onComplete() -androidx.appcompat.R$attr: int backgroundSplit -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthResource(int) -okhttp3.CertificatePinner$Builder: CertificatePinner$Builder() -cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo$Builder setComponent(android.content.ComponentName) -wangdaye.com.geometricweather.R$layout: int container_main_details -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -wangdaye.com.geometricweather.R$style: int Preference_DialogPreference -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startY -com.google.android.material.R$attr: int textAppearanceLargePopupMenu -okhttp3.internal.http1.Http1Codec$FixedLengthSource: void close() -androidx.appcompat.R$styleable: int MenuItem_actionProviderClass -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: android.os.IBinder mRemote -androidx.preference.R$attr: int allowStacking -okio.Okio$1 -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getDisplayColorCalibration() -androidx.hilt.work.R$styleable: int Fragment_android_name -android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogStyle -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.Observer downstream -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runAsync() -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,java.lang.String) -okhttp3.internal.http1.Http1Codec$ChunkedSource: void readChunkSize() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconTint -androidx.fragment.R$integer: int status_bar_notification_info_maxnum -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Title -androidx.preference.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property City -androidx.appcompat.R$styleable: int[] Spinner -androidx.constraintlayout.widget.R$color -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_colored_material -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitationProbability() -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark_normal -com.google.android.material.R$styleable: int Constraint_layout_goneMarginTop -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String LOCKSCREEN_URI -androidx.preference.R$styleable: int SwitchCompat_trackTint -androidx.core.R$id: R$id() -androidx.appcompat.R$drawable: int abc_vector_test -com.google.android.material.R$attr: int layout_optimizationLevel -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback(retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter,java.util.concurrent.CompletableFuture) -wangdaye.com.geometricweather.R$id: int material_clock_display -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float thunderstormPrecipitationProbability -android.didikee.donate.R$styleable: int MenuItem_iconTintMode -james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -james.adaptiveicon.R$dimen: int tooltip_y_offset_non_touch -wangdaye.com.geometricweather.R$drawable: int ic_router -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_is_float_type -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getRagweedLevel() -com.google.android.material.tabs.TabLayout: int getTabMaxWidth() -androidx.recyclerview.widget.RecyclerView: long getNanoTime() -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: boolean val$clearPrevious -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.disposables.Disposable upstream -cyanogenmod.weather.WeatherInfo: double access$602(cyanogenmod.weather.WeatherInfo,double) -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_BRIGHTNESS_CONTROL -android.didikee.donate.R$dimen: int abc_disabled_alpha_material_light -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void dispose() -com.google.android.material.R$style: int Theme_MaterialComponents_Light -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathOffset() -james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String regist(java.lang.String,boolean,int) -com.xw.repo.bubbleseekbar.R$attr: int windowFixedHeightMinor -okio.ByteString: int lastIndexOf(okio.ByteString,int) -com.google.android.material.R$styleable: int AppCompatTheme_android_windowAnimationStyle -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SearchView -androidx.preference.R$dimen: int abc_text_size_menu_header_material -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableRightCompat -com.turingtechnologies.materialscrollbar.DragScrollBar: int getMode() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SearchView_ActionBar -androidx.vectordrawable.animated.R$id: int line3 -wangdaye.com.geometricweather.R$style: int Preference_CheckBoxPreference -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_RED_INDEX -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_6 -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.common.info.a c -wangdaye.com.geometricweather.R$string: int hours_of_sun -com.jaredrummler.android.colorpicker.R$id: int end -wangdaye.com.geometricweather.R$dimen: int trend_item_width -io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit) -cyanogenmod.app.CustomTile$ExpandedItem: int describeContents() -com.turingtechnologies.materialscrollbar.DragScrollBar -androidx.appcompat.R$attr: int title -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getVisibility() -com.jaredrummler.android.colorpicker.R$string: int cpv_custom -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_DarkActionBar -com.google.android.material.R$attr: int actionMenuTextAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int[] SwitchCompat -okhttp3.OkHttpClient$Builder: okhttp3.Cache cache -com.google.android.material.R$styleable: int KeyTimeCycle_android_rotationX -com.google.gson.stream.JsonReader: int stackSize -androidx.appcompat.R$id: int uniform -cyanogenmod.app.Profile: java.util.UUID getUuid() -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Menu -okhttp3.HttpUrl$Builder: int port -com.jaredrummler.android.colorpicker.R$color: R$color() -com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode FIRST_VISIBLE -james.adaptiveicon.R$styleable: int MenuGroup_android_menuCategory -wangdaye.com.geometricweather.R$color: int material_grey_850 -androidx.constraintlayout.widget.ConstraintLayout: void setId(int) -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostResumed(android.app.Activity) -androidx.swiperefreshlayout.R$id: int icon -wangdaye.com.geometricweather.R$attr: int updatesContinuously -androidx.viewpager.R$dimen: int notification_content_margin_start -com.xw.repo.bubbleseekbar.R$layout -cyanogenmod.app.Profile$NotificationLightMode -com.google.android.material.R$drawable: int btn_radio_on_to_off_mtrl_animation -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle -retrofit2.adapter.rxjava2.BodyObservable: BodyObservable(io.reactivex.Observable) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.Observer downstream -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean j -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitationProbability(java.lang.Float) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_5 -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_buttonPanelSideLayout -androidx.constraintlayout.widget.R$attr: int actionModeCloseButtonStyle -androidx.lifecycle.ProcessLifecycleOwner$3: androidx.lifecycle.ProcessLifecycleOwner this$0 -androidx.hilt.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$attr: int cornerFamilyTopRight -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button -com.google.android.material.R$id: int accessibility_custom_action_9 -androidx.appcompat.R$drawable: int abc_list_selector_background_transition_holo_dark -androidx.coordinatorlayout.R$styleable: int GradientColor_android_endX -androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_max -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeSplitBackground -com.google.android.material.R$integer: int mtrl_calendar_selection_text_lines -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -com.tencent.bugly.proguard.ap: boolean a -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundColor(int) -wangdaye.com.geometricweather.R$layout: int test_toolbar_elevation -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onError(java.lang.Throwable) -androidx.work.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.R$attr: int drawPath -androidx.preference.R$dimen: int notification_small_icon_size_as_large -com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_borderColor -androidx.drawerlayout.R$drawable: int notification_action_background -cyanogenmod.hardware.DisplayMode: int describeContents() -androidx.recyclerview.R$id: int normal -androidx.constraintlayout.motion.widget.MotionLayout: int getEndState() -com.google.android.material.R$styleable: int MenuItem_alphabeticModifiers -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getId() -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_11 -androidx.preference.internal.PreferenceImageView: int getMaxWidth() -androidx.dynamicanimation.R$integer: R$integer() -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getBoxStrokeErrorColor() -okhttp3.internal.http2.Http2Stream: void cancelStreamIfNecessary() -wangdaye.com.geometricweather.R$styleable: int[] CompoundButton -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_action_text_color_alpha -androidx.appcompat.R$attr: int trackTintMode -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: long serialVersionUID -androidx.preference.R$style: int Preference_SwitchPreference -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getRealFeelShaderTemperature() -wangdaye.com.geometricweather.R$drawable: int flag_hu -androidx.lifecycle.ClassesInfoCache$CallbackInfo: java.util.Map mEventToHandlers -wangdaye.com.geometricweather.R$styleable: int Constraint_android_minHeight -io.reactivex.internal.util.NotificationLite: boolean acceptFull(java.lang.Object,org.reactivestreams.Subscriber) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int THUNDERSTORMS -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory createAsync() -wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Icon -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Title -androidx.appcompat.widget.ActionMenuView: void setExpandedActionViewsExclusive(boolean) -com.google.android.material.R$style: int TextAppearance_Design_Counter_Overflow -com.github.rahatarmanahmed.cpv.R$attr: int cpv_thickness -androidx.core.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$attr: int actionModeSplitBackground -androidx.appcompat.R$id: int textSpacerNoButtons -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startColor -com.amap.api.location.AMapLocation: boolean a(com.amap.api.location.AMapLocation,boolean) -com.bumptech.glide.R$dimen: int notification_large_icon_height -cyanogenmod.weatherservice.IWeatherProviderService$Stub: cyanogenmod.weatherservice.IWeatherProviderService asInterface(android.os.IBinder) -io.reactivex.internal.util.EmptyComponent: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_middle_mtrl_light -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemPaddingLeft -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 -androidx.constraintlayout.widget.R$attr: int mock_showDiagonals -androidx.work.impl.workers.DiagnosticsWorker: DiagnosticsWorker(android.content.Context,androidx.work.WorkerParameters) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPrimary() -cyanogenmod.profiles.LockSettings: void readFromParcel(android.os.Parcel) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -james.adaptiveicon.R$drawable: int notification_bg_normal -androidx.preference.R$styleable: int Preference_defaultValue -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: int UnitType -okhttp3.CipherSuite: java.lang.String toString() -com.google.android.material.R$dimen: int abc_button_padding_horizontal_material -wangdaye.com.geometricweather.R$dimen: int appcompat_dialog_background_inset -androidx.preference.R$style: int Preference_PreferenceScreen_Material -com.google.android.material.button.MaterialButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -android.didikee.donate.R$id: int withText -okhttp3.internal.http2.Http2Writer: void windowUpdate(int,long) -wangdaye.com.geometricweather.R$attr: int expandedTitleGravity -com.google.android.material.R$attr: int stackFromEnd -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -androidx.viewpager2.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setBackgroundColorStart(int) -androidx.transition.R$id: int action_divider -android.didikee.donate.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -james.adaptiveicon.R$attr: int fontProviderFetchTimeout -retrofit2.ParameterHandler$Path: ParameterHandler$Path(java.lang.reflect.Method,int,java.lang.String,retrofit2.Converter,boolean) -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState[] values() -wangdaye.com.geometricweather.R$string: int feedback_align_end -com.google.android.material.button.MaterialButton: void setBackground(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf -com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.anr.b w -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -androidx.preference.R$color: int dim_foreground_material_light -com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Indeterminate -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.viewpager2.R$id: int text -androidx.swiperefreshlayout.R$dimen: int compat_button_padding_horizontal_material -androidx.preference.R$attr: int progressBarStyle -com.google.android.gms.common.api.AvailabilityException: androidx.collection.ArrayMap zaa -androidx.appcompat.R$attr: int dividerHorizontal -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_overflow_padding_start_material -androidx.constraintlayout.widget.R$id: int autoCompleteToStart -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_attributeName -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition valueOf(java.lang.String) -james.adaptiveicon.R$attr: int drawableSize -com.google.android.material.R$attr: int drawableEndCompat -wangdaye.com.geometricweather.R$array: int temperature_units_short -com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_top -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: ObservableCreate$SerializedEmitter(io.reactivex.ObservableEmitter) -okhttp3.Response: java.lang.String header(java.lang.String) -androidx.fragment.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.R$styleable: int GradientColorItem_android_color -com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getIndeterminateDrawable() -wangdaye.com.geometricweather.common.basic.GeoViewModel -com.google.android.material.navigation.NavigationView: android.graphics.drawable.Drawable getItemBackground() -org.greenrobot.greendao.AbstractDao: void updateInsideSynchronized(java.lang.Object,android.database.sqlite.SQLiteStatement,boolean) -androidx.hilt.R$layout: int custom_dialog -androidx.recyclerview.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf -wangdaye.com.geometricweather.R$styleable: int MaterialButton_shapeAppearanceOverlay -androidx.work.impl.diagnostics.DiagnosticsReceiver -androidx.preference.ListPreference$SavedState: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$color: int abc_tint_switch_track -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog -wangdaye.com.geometricweather.R$string: int sunrise_sunset -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView_DropDown -james.adaptiveicon.R$attr: int subtitleTextStyle -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_UNDERSCORES -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getUniqueDeviceId() -okhttp3.Request: okhttp3.CacheControl cacheControl -cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile[] getProfiles() -wangdaye.com.geometricweather.R$string: int feedback_refresh_ui_after_refresh -okhttp3.internal.http2.Http2Stream: int getId() -androidx.appcompat.widget.ButtonBarLayout: ButtonBarLayout(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$styleable: int Toolbar_titleMarginEnd -androidx.constraintlayout.widget.R$dimen: int abc_text_size_large_material -io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context) -com.google.android.material.R$style: int Widget_AppCompat_ActionButton_CloseMode -okhttp3.MediaType: java.lang.String charset -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String unregist() -androidx.hilt.R$style: R$style() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_ContextMenu -com.google.android.material.R$style: int EmptyTheme -androidx.hilt.lifecycle.R$dimen: int notification_action_text_size -androidx.recyclerview.widget.StaggeredGridLayoutManager -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String aqiText -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTheme -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.functions.Function mapper -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void startTimeout(long) -androidx.recyclerview.R$attr: int fastScrollHorizontalThumbDrawable -com.tencent.bugly.proguard.n: android.content.SharedPreferences c(com.tencent.bugly.proguard.n) -com.google.android.material.R$styleable: int CoordinatorLayout_keylines -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_title_material_toolbar -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen -androidx.appcompat.R$layout: int abc_action_mode_close_item_material -cyanogenmod.app.ILiveLockScreenManager$Stub: android.os.IBinder asBinder() -james.adaptiveicon.R$attr: int textAppearanceListItem -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void dispose() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$attr: int dependency -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_end -wangdaye.com.geometricweather.R$drawable: int notif_temp_121 -androidx.preference.R$styleable: int MultiSelectListPreference_entries -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.AbstractDao getDao(java.lang.Class) -com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String,java.lang.Throwable) -retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: OkHttpCall$ExceptionCatchingResponseBody$1(retrofit2.OkHttpCall$ExceptionCatchingResponseBody,okio.Source) -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_y_offset_non_touch -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: int UnitType -com.google.android.material.R$styleable: int[] ViewBackgroundHelper -io.reactivex.internal.disposables.SequentialDisposable: boolean replace(io.reactivex.disposables.Disposable) -com.google.android.material.R$dimen: int abc_floating_window_z -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: java.lang.String English -wangdaye.com.geometricweather.R$id: int widget_clock_day_date -androidx.vectordrawable.animated.R$id: int icon_group -okhttp3.internal.cache2.Relay$RelaySource: okio.Timeout timeout() -androidx.hilt.lifecycle.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: AccuLocationResult$AdministrativeArea() -io.reactivex.internal.queue.SpscArrayQueue: void soElement(int,java.lang.Object) -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter -okio.BufferedSource: int select(okio.Options) -wangdaye.com.geometricweather.R$id: int percent -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low_pressed -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_keylines -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: ObservableWithLatestFrom$WithLatestFromObserver(io.reactivex.Observer,io.reactivex.functions.BiFunction) -com.google.android.material.slider.Slider: void setTrackHeight(int) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_alpha -wangdaye.com.geometricweather.R$id: int checked -wangdaye.com.geometricweather.R$color: int primary_material_dark -okhttp3.EventListener: okhttp3.EventListener NONE -wangdaye.com.geometricweather.db.entities.HistoryEntity: HistoryEntity() -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder minFresh(int,java.util.concurrent.TimeUnit) -com.bumptech.glide.R$styleable: int GradientColor_android_centerColor -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_CheckBox -com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_OFF -androidx.preference.R$id: int left -com.bumptech.glide.load.HttpException: int getStatusCode() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.R$color: int bright_foreground_inverse_material_light -okhttp3.internal.http.CallServerInterceptor$CountingSink: CallServerInterceptor$CountingSink(okio.Sink) -androidx.hilt.lifecycle.R$id: int fragment_container_view_tag -com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat -android.didikee.donate.R$styleable: int MenuView_android_itemIconDisabledAlpha -com.github.rahatarmanahmed.cpv.CircularProgressView: float getProgress() -androidx.appcompat.R$attr: int spinBars -wangdaye.com.geometricweather.R$attr: int fontProviderAuthority -androidx.legacy.coreutils.R$layout: int notification_template_icon_group -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationX -okio.BufferedSource: java.lang.String readUtf8Line() -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_item_max_width -com.google.android.material.chip.Chip: void setElevation(float) -okhttp3.MultipartBody: java.lang.String boundary() -cyanogenmod.weather.ICMWeatherManager: java.lang.String getActiveWeatherServiceProviderLabel() -com.google.android.material.R$styleable: int Constraint_transitionPathRotate -androidx.preference.R$layout: int abc_activity_chooser_view_list_item -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String weather -okhttp3.Cache$CacheResponseBody: okio.BufferedSource bodySource -cyanogenmod.themes.IThemeChangeListener -okio.Buffer: okio.Buffer write(okio.ByteString) -androidx.recyclerview.R$attr: int fontProviderCerts -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -com.google.gson.FieldNamingPolicy$3 -cyanogenmod.weather.RequestInfo -cyanogenmod.app.CustomTile: java.lang.Object clone() -androidx.lifecycle.LiveData$LifecycleBoundObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage DATA_CACHE -com.google.android.material.R$styleable: int Constraint_flow_horizontalAlign -com.google.android.material.R$styleable: int[] ListPopupWindow -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.MinutelyEntity) -com.tencent.bugly.crashreport.common.info.a: java.lang.Object ay -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_container -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_OVERLAYS -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_130 -com.google.android.material.R$styleable: int OnSwipe_dragThreshold -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.WeatherEntity,int) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -com.amap.api.location.AMapLocationClientOption$1: java.lang.Object[] newArray(int) -androidx.appcompat.R$styleable: int MenuGroup_android_orderInCategory -androidx.legacy.coreutils.R$id: int icon_group -wangdaye.com.geometricweather.db.entities.WeatherEntityDao -androidx.lifecycle.ClassesInfoCache$MethodReference: int hashCode() -androidx.core.R$layout: R$layout() -okhttp3.internal.http2.Http2Connection$3: okhttp3.internal.http2.Http2Connection this$0 -wangdaye.com.geometricweather.R$id: int month_navigation_next -androidx.viewpager.R$id: int blocking -cyanogenmod.app.CMContextConstants$Features: java.lang.String THEMES -com.turingtechnologies.materialscrollbar.R$drawable: int abc_dialog_material_background -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$x -cyanogenmod.app.IProfileManager: void removeNotificationGroup(android.app.NotificationGroup) -okhttp3.internal.http2.Http2Stream: Http2Stream(int,okhttp3.internal.http2.Http2Connection,boolean,boolean,okhttp3.Headers) -androidx.appcompat.R$color: int switch_thumb_normal_material_light -com.google.android.material.R$styleable: int Slider_trackColorActive -androidx.appcompat.resources.R$id: int accessibility_custom_action_21 -cyanogenmod.app.CustomTileListenerService: boolean isBound() -com.tencent.bugly.crashreport.common.info.a: java.lang.String ab -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean k -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: ObservableSampleTimed$SampleTimedNoLast(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getNighttimeWeatherCode() -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_light -wangdaye.com.geometricweather.R$id: int material_timepicker_container -androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -androidx.vectordrawable.R$dimen: int notification_small_icon_size_as_large -com.google.android.material.textfield.TextInputLayout -com.jaredrummler.android.colorpicker.R$attr: int backgroundTint -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Name -androidx.lifecycle.LifecycleRegistry: boolean mNewEventOccurred -james.adaptiveicon.R$drawable: int abc_ic_star_black_48dp -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setUseSessionTickets -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: retrofit2.Call $this_await$inlined -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer windChillTemperature -androidx.appcompat.R$attr: int actionButtonStyle -com.bumptech.glide.integration.okhttp.R$id: int time -okhttp3.internal.connection.RealConnection: boolean isHealthy(boolean) -com.xw.repo.bubbleseekbar.R$attr: int actionOverflowButtonStyle -com.google.android.material.R$styleable: int Slider_trackHeight -com.bumptech.glide.R$color -wangdaye.com.geometricweather.R$string: int feedback_location_permissions_statement -android.support.v4.os.ResultReceiver$1: java.lang.Object createFromParcel(android.os.Parcel) -com.google.android.material.R$id: int zero_corner_chip -androidx.work.impl.workers.CombineContinuationsWorker -wangdaye.com.geometricweather.R$styleable: int Spinner_android_popupBackground -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setCountryId(java.lang.String) -com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_bias -wangdaye.com.geometricweather.R$id: int dialog_time_setter_done -wangdaye.com.geometricweather.db.entities.WeatherEntity: void refresh() -wangdaye.com.geometricweather.R$style: int TestThemeWithLineHeightDisabled -com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextColor -okio.RealBufferedSink$1: void flush() -io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean offer(java.lang.Object) -androidx.preference.R$string: int not_set -cyanogenmod.providers.CMSettings$Secure$1: boolean validate(java.lang.String) -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_13 -com.google.android.material.R$styleable: int TabLayout_tabBackground -com.jaredrummler.android.colorpicker.R$attr: int colorControlNormal -james.adaptiveicon.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -com.turingtechnologies.materialscrollbar.R$attr: int actionBarSplitStyle -cyanogenmod.providers.CMSettings$Global: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -cyanogenmod.app.ProfileManager: java.lang.String ACTION_PROFILE_PICKER -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void dispose() -androidx.constraintlayout.widget.R$attr: int windowFixedWidthMajor -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: void dispose() -com.jaredrummler.android.colorpicker.R$id: int decor_content_parent -com.google.android.material.R$styleable: int Constraint_flow_lastVerticalBias -androidx.viewpager.R$id: int text2 -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_font -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button -com.tencent.bugly.proguard.am: java.util.Map k -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy valueOf(java.lang.String) -androidx.preference.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int IconCode -androidx.customview.R$color: int notification_icon_bg_color -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: long serialVersionUID -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxyAuthenticator(okhttp3.Authenticator) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeColor -androidx.viewpager.widget.ViewPager: void setScrollingCacheEnabled(boolean) -android.didikee.donate.R$styleable: int LinearLayoutCompat_measureWithLargestChild -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_progress -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.R$array: int live_wallpaper_day_night_type_values -okhttp3.Cookie: java.lang.String name -cyanogenmod.themes.ThemeManager: boolean isThemeApplying() -com.google.android.material.R$attr: int layout_insetEdge -android.didikee.donate.R$attr: int paddingBottomNoButtons -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_TextView -wangdaye.com.geometricweather.R$attr: int drawableBottomCompat -androidx.preference.R$styleable: int ColorStateListItem_android_alpha -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_overflow_padding_end_material -androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$attr: int itemShapeInsetTop -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerColor -james.adaptiveicon.R$attr: int listChoiceBackgroundIndicator -androidx.preference.SeekBarPreference$SavedState -okhttp3.Cookie: java.lang.String toString() -androidx.preference.R$id: int accessibility_custom_action_3 -james.adaptiveicon.R$color: int foreground_material_dark -james.adaptiveicon.R$attr: int barLength -com.google.android.material.chip.Chip: void setChipStrokeWidthResource(int) -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getCounterOverflowTextColor() -com.google.android.material.R$string: int path_password_eye -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_keyline -cyanogenmod.weather.CMWeatherManager$1: cyanogenmod.weather.CMWeatherManager this$0 -com.xw.repo.bubbleseekbar.R$id: int search_bar -com.turingtechnologies.materialscrollbar.R$layout: int abc_popup_menu_item_layout -androidx.preference.R$drawable: int abc_text_select_handle_right_mtrl_light -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotationY -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_homeAsUpIndicator -wangdaye.com.geometricweather.R$animator: int touch_raise -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_animate_relativeTo -com.amap.api.location.AMapLocationClientOption: java.lang.String a -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: TraceFileHelper() -androidx.recyclerview.R$id: int notification_background -android.didikee.donate.R$color: int primary_text_disabled_material_light -androidx.appcompat.R$id: int search_src_text -cyanogenmod.externalviews.ExternalViewProviderService$1$1: android.os.Bundle val$options -cyanogenmod.app.CustomTileListenerService$1 -androidx.preference.R$attr: int actionModeWebSearchDrawable -androidx.coordinatorlayout.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_left_black_24dp -androidx.vectordrawable.R$color: int notification_action_color_filter -io.reactivex.exceptions.ProtocolViolationException: ProtocolViolationException(java.lang.String) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_ListPopupWindow -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.preference.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Spinner -com.tencent.bugly.BuglyStrategy: boolean m -com.tencent.bugly.proguard.ad: byte[] a(byte[]) -wangdaye.com.geometricweather.R$id: int mtrl_calendar_main_pane -androidx.constraintlayout.widget.R$color: int abc_tint_switch_track -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: int index -cyanogenmod.providers.CMSettings$System$3 -io.reactivex.internal.disposables.ArrayCompositeDisposable: ArrayCompositeDisposable(int) -androidx.hilt.lifecycle.R$dimen: int notification_top_pad -cyanogenmod.app.CustomTile$ExpandedStyle$1: cyanogenmod.app.CustomTile$ExpandedStyle[] newArray(int) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void slideLockscreenIn() -io.reactivex.Observable: io.reactivex.Observable throttleFirst(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -android.didikee.donate.R$color: int material_deep_teal_200 -com.turingtechnologies.materialscrollbar.R$interpolator -com.amap.api.location.APSServiceBase -io.reactivex.internal.subscribers.StrictSubscriber: void onError(java.lang.Throwable) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_constraintSet -com.amap.api.location.AMapLocationClientOption: float v -com.google.android.material.R$anim: int abc_slide_out_bottom -retrofit2.RequestFactory$Builder: java.util.Set relativeUrlParamNames -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: android.graphics.Rect val$clipRect -com.jaredrummler.android.colorpicker.R$attr: int windowFixedHeightMinor -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_item_icon_padding -cyanogenmod.themes.ThemeChangeRequest: java.util.Map mThemeComponents -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_MULTIPLE_LEDS_ENABLE_VALIDATOR -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_DarkActionBar -okio.AsyncTimeout$2: okio.AsyncTimeout this$0 -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SearchView_ActionBar -androidx.preference.R$id: int screen -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: boolean hasCompleted() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_DES_CBC_SHA -com.google.android.material.R$id: int floating -wangdaye.com.geometricweather.R$color: int colorRootDark_dark -james.adaptiveicon.R$id: int action_divider -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.MinutelyEntity) -androidx.lifecycle.LiveData: LiveData(java.lang.Object) -com.tencent.bugly.proguard.p: boolean b(com.tencent.bugly.proguard.r) -cyanogenmod.providers.DataUsageContract: java.lang.String SLOW_SAMPLES -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme_Dark -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float rainPrecipitation -retrofit2.http.QueryName: boolean encoded() -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource) -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogCornerRadius -com.google.gson.stream.JsonReader: int lineStart -okhttp3.WebSocketListener: void onMessage(okhttp3.WebSocket,okio.ByteString) -cyanogenmod.profiles.StreamSettings: void writeToParcel(android.os.Parcel,int) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver -androidx.hilt.work.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.R$string: int feedback_location_permissions_title -androidx.appcompat.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -com.google.android.material.chip.ChipGroup: void setOnHierarchyChangeListener(android.view.ViewGroup$OnHierarchyChangeListener) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_android_windowIsFloating -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.util.List getIndices() -cyanogenmod.providers.CMSettings$Secure: java.lang.String[] NAVIGATION_RING_TARGETS -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.HourlyEntity) -androidx.preference.R$color: int dim_foreground_material_dark -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat PREFER_RGB_565 -james.adaptiveicon.R$styleable: int SearchView_submitBackground -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemIconDisabledAlpha -okhttp3.internal.cache.DiskLruCache$Editor: boolean done -com.tencent.bugly.proguard.q: void onCreate(android.database.sqlite.SQLiteDatabase) -okhttp3.HttpUrl$Builder: int slashCount(java.lang.String,int,int) -com.amap.api.location.AMapLocation: int c(com.amap.api.location.AMapLocation,int) -wangdaye.com.geometricweather.main.Hilt_MainActivity -com.google.android.material.R$bool: int abc_allow_stacked_button_bar -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_24 -cyanogenmod.app.CMContextConstants -retrofit2.adapter.rxjava2.Result: Result(retrofit2.Response,java.lang.Throwable) -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setRequestType(cyanogenmod.themes.ThemeChangeRequest$RequestType) -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoSource -cyanogenmod.app.Profile: void setName(java.lang.String) -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_middle_mtrl_dark -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_MIGRATE_SETTINGS_FOR_USER -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -wangdaye.com.geometricweather.R$color: int cardview_shadow_start_color -com.google.android.material.R$string: int mtrl_picker_date_header_selected -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RealFeelShaderTemperature -wangdaye.com.geometricweather.R$attr: int motionPathRotate -com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_default_box_stroke_color -wangdaye.com.geometricweather.R$string: int common_google_play_services_unsupported_text -androidx.activity.R$style: int TextAppearance_Compat_Notification -androidx.constraintlayout.widget.R$attr: int layout_constraintTop_toBottomOf -com.google.android.material.R$styleable: int Transition_pathMotionArc -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: float getDistance(float) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.CompositeDisposable set -wangdaye.com.geometricweather.R$dimen: int tooltip_vertical_padding -androidx.vectordrawable.R$id: int accessibility_custom_action_10 -com.tencent.bugly.a -com.google.android.material.R$styleable: int FontFamily_fontProviderAuthority -okhttp3.ConnectionSpec: java.lang.String toString() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX aqi -com.tencent.bugly.crashreport.crash.d: com.tencent.bugly.crashreport.common.info.a c -wangdaye.com.geometricweather.R$style: int Animation_AppCompat_Dialog -com.jaredrummler.android.colorpicker.R$layout: int abc_search_view -com.bumptech.glide.R$styleable: int FontFamilyFont_fontWeight -james.adaptiveicon.R$drawable: int abc_text_select_handle_right_mtrl_dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial Imperial -com.google.android.material.R$attr: int colorPrimaryVariant -com.google.android.material.R$attr: int tabPaddingTop -wangdaye.com.geometricweather.R$id: int widget_trend_daily -com.tencent.bugly.proguard.y$a: y$a(java.lang.String) -com.turingtechnologies.materialscrollbar.R$id: int smallLabel -android.didikee.donate.R$attr: int drawableSize -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator REVERSE_LOOKUP_PROVIDER_VALIDATOR -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleTintList(android.content.res.ColorStateList) -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getLongDate(android.content.Context) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitation -james.adaptiveicon.R$color: int ripple_material_light -androidx.appcompat.R$style: int TextAppearance_AppCompat_Display3 -cyanogenmod.profiles.StreamSettings: int mStreamId -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitationDuration -com.google.android.material.R$style: int Base_Widget_AppCompat_SeekBar -com.google.android.material.chip.Chip: com.google.android.material.resources.TextAppearance getTextAppearance() -com.tencent.bugly.proguard.ag: byte[] a(byte[]) -android.didikee.donate.R$id: int src_in -com.google.android.material.navigation.NavigationView: int getItemHorizontalPadding() -wangdaye.com.geometricweather.R$string: int content_des_so2 -com.xw.repo.bubbleseekbar.R$drawable: int notification_action_background -androidx.constraintlayout.widget.R$attr: int buttonBarPositiveButtonStyle -com.turingtechnologies.materialscrollbar.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow3h -com.google.android.material.R$attr: int indicatorColor -com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.ar a(java.util.List,int) -androidx.activity.R$id: int notification_main_column_container -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: MfForecastResult$ProbabilityForecast$ProbabilitySnow() -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemTitle(java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float icePrecipitationProbability -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIMAX -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl -io.reactivex.Observable: io.reactivex.Observable compose(io.reactivex.ObservableTransformer) -androidx.coordinatorlayout.R$integer: int status_bar_notification_info_maxnum -com.xw.repo.bubbleseekbar.R$attr: int paddingStart -com.tencent.bugly.proguard.ah: java.lang.String d -com.jaredrummler.android.colorpicker.ColorPanelView: void setBorderColor(int) -james.adaptiveicon.R$attr: int buttonBarButtonStyle -com.google.android.material.R$style: int Theme_MaterialComponents_Bridge -androidx.constraintlayout.widget.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.lang.String pubTime -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String type -okhttp3.CacheControl: int sMaxAgeSeconds -cyanogenmod.alarmclock.CyanogenModAlarmClock: CyanogenModAlarmClock() -okhttp3.internal.tls.CertificateChainCleaner: okhttp3.internal.tls.CertificateChainCleaner get(java.security.cert.X509Certificate[]) -com.google.gson.FieldNamingPolicy$5: FieldNamingPolicy$5(java.lang.String,int) -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_menuCategory -androidx.viewpager2.R$styleable: int GradientColorItem_android_offset -james.adaptiveicon.R$styleable: int AppCompatTheme_colorPrimary -okhttp3.MultipartBody: okhttp3.MediaType PARALLEL -androidx.preference.R$drawable: int abc_scrubber_primary_mtrl_alpha -androidx.preference.R$id: int multiply -com.jaredrummler.android.colorpicker.R$style: int AlertDialog_AppCompat -cyanogenmod.providers.CMSettings$Global: java.lang.String[] LEGACY_GLOBAL_SETTINGS -androidx.constraintlayout.widget.R$id: int tag_transition_group -androidx.appcompat.resources.R$id: int icon -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.util.Date date -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade RealFeelTemperatureShade -wangdaye.com.geometricweather.R$string: int aqi_5 -okhttp3.internal.http2.Huffman$Node -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.String dailyWeatherDescription -wangdaye.com.geometricweather.db.entities.HourlyEntity: int getTemperature() -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String h -androidx.viewpager.R$styleable: int FontFamily_fontProviderQuery -androidx.preference.R$styleable: int MenuGroup_android_visible -com.google.android.material.R$attr: int placeholder_emptyVisibility -androidx.drawerlayout.R$id: int normal -com.google.android.material.R$style: int TextAppearance_AppCompat_Caption -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type TEMPERATURE -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_3_material -com.baidu.location.e.h$a: com.baidu.location.e.h$a valueOf(java.lang.String) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_DrawerArrowToggle -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String DESKCLOCK_PACKAGE -com.xw.repo.bubbleseekbar.R$attr: int suggestionRowLayout -james.adaptiveicon.R$attr: int actionProviderClass -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_FULL -com.google.android.material.R$dimen: int material_filled_edittext_font_2_0_padding_bottom -com.google.android.material.R$style: int TextAppearance_AppCompat_Tooltip -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: AccuCurrentResult$PrecipitationSummary$Past9Hours() -com.google.android.material.R$attr: int checkedButton -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconSize(int) -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_orderInCategory -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onKeyguardShowing(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWeatherEnd() -android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -okhttp3.internal.connection.RealConnection: java.net.Socket socket -androidx.preference.R$styleable: int Fragment_android_id -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstVerticalStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_picker_background_inset -com.google.gson.internal.LinkedTreeMap: int size -wangdaye.com.geometricweather.R$layout: int notification_multi_city -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean isDisposed() -androidx.work.R$attr: int fontProviderAuthority -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemRippleColor -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_title -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int) -cyanogenmod.app.IProfileManager$Stub -com.tencent.bugly.proguard.n: java.util.Map e -wangdaye.com.geometricweather.R$drawable: int mtrl_popupmenu_background -android.didikee.donate.R$attr: int seekBarStyle -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalGap -androidx.lifecycle.LiveData$1 -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView -androidx.appcompat.widget.AppCompatCheckBox: void setBackgroundDrawable(android.graphics.drawable.Drawable) -androidx.core.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_2 -com.github.rahatarmanahmed.cpv.CircularProgressView: float indeterminateRotateOffset -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: android.net.Uri NO_RINGTONE_URI -android.didikee.donate.R$drawable: int abc_btn_borderless_material -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_longpressed_holo -com.google.android.material.R$layout: int mtrl_calendar_day_of_week -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton -androidx.constraintlayout.widget.R$styleable: int Motion_drawPath -cyanogenmod.app.suggest.IAppSuggestManager$Stub: int TRANSACTION_getSuggestions -androidx.swiperefreshlayout.R$styleable: int GradientColorItem_android_offset -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LIVE_LOCK_SCREEN -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_popupMenuStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListMenuView -wangdaye.com.geometricweather.R$id: int sawtooth -com.turingtechnologies.materialscrollbar.R$attr: int actionBarSize -wangdaye.com.geometricweather.R$string: int feedback_show_widget_card_alpha -androidx.vectordrawable.R$id: int chronometer -wangdaye.com.geometricweather.R$id: int notification_big_temp_1 -wangdaye.com.geometricweather.R$styleable: int Motion_transitionEasing -androidx.constraintlayout.widget.R$id: int default_activity_button -james.adaptiveicon.R$style: int Platform_V25_AppCompat_Light -wangdaye.com.geometricweather.R$animator: int mtrl_fab_show_motion_spec -com.google.android.material.R$attr: int elevation -androidx.appcompat.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -wangdaye.com.geometricweather.R$style: int Widget_Design_FloatingActionButton -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableEndCompat -cyanogenmod.app.Profile: void setAirplaneMode(cyanogenmod.profiles.AirplaneModeSettings) -com.tencent.bugly.BuglyStrategy$a: java.util.Map onCrashHandleStart(int,java.lang.String,java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconTintMode -com.tencent.bugly.proguard.v -com.google.android.gms.internal.location.zzj: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Borderless -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat -androidx.transition.R$attr: int alpha -androidx.viewpager2.R$id: int tag_unhandled_key_listeners -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: io.reactivex.disposables.Disposable upstream -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -com.google.android.material.R$attr: int backgroundTint -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setPrecipitation(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean) -androidx.hilt.work.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: java.lang.String Localized -androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$anim: int design_bottom_sheet_slide_out -okhttp3.internal.http2.Http2Connection$4: int val$streamId -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isSubActive(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_DarkActionBar -james.adaptiveicon.R$styleable: int ActionBar_contentInsetEnd -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -okio.AsyncTimeout: okio.Sink sink(okio.Sink) -com.google.android.material.slider.BaseSlider: void setFocusedThumbIndex(int) -wangdaye.com.geometricweather.R$id: int transition_scene_layoutid_cache -androidx.appcompat.R$styleable: int AppCompatTheme_android_windowIsFloating -com.google.android.material.R$attr: int cardUseCompatPadding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindSpeedStart() -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_android_gravity -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: java.lang.String LocalizedText -com.google.android.material.textfield.TextInputLayout: android.widget.TextView getPrefixTextView() -wangdaye.com.geometricweather.R$layout: int container_main_header -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date publishDate -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FAIR_DAY -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database wrap(android.database.sqlite.SQLiteDatabase) -com.xw.repo.bubbleseekbar.R$styleable: int[] FontFamily -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -com.jaredrummler.android.colorpicker.R$id: int search_close_btn -com.google.android.material.R$style: int Widget_AppCompat_RatingBar_Indicator -com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_toBottomOf -androidx.hilt.work.R$dimen: int compat_notification_large_icon_max_width -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -android.didikee.donate.R$styleable: int ActionBar_backgroundStacked -androidx.preference.R$id: int scrollView -androidx.preference.R$styleable: int[] MenuView -com.google.android.material.R$string: int icon_content_description -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginEnd() -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: long serialVersionUID -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getStrokeColorStateList() -james.adaptiveicon.R$style: int Widget_AppCompat_ListPopupWindow -retrofit2.RequestBuilder: okhttp3.Headers$Builder headersBuilder -cyanogenmod.app.Profile$NotificationLightMode: Profile$NotificationLightMode() -com.xw.repo.bubbleseekbar.R$attr: int voiceIcon -wangdaye.com.geometricweather.R$layout: int notification_big -androidx.appcompat.R$styleable: int AppCompatTheme_editTextStyle -androidx.constraintlayout.widget.R$styleable: int Constraint_constraint_referenced_ids -com.amap.api.location.UmidtokenInfo: UmidtokenInfo() -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: void subscribe(org.reactivestreams.Subscriber) -com.google.android.material.R$styleable: int AppCompatImageView_tintMode -wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_calendar_input_mode -com.tencent.bugly.proguard.am: long q -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar -com.google.android.material.R$styleable: int RangeSlider_minSeparation -wangdaye.com.geometricweather.R$drawable: int weather_rain -com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_showText -wangdaye.com.geometricweather.R$string: int mtrl_picker_a11y_next_month -cyanogenmod.app.BaseLiveLockManagerService: BaseLiveLockManagerService() -wangdaye.com.geometricweather.R$attr: int spanCount -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_CardView -wangdaye.com.geometricweather.R$color: int design_default_color_primary_dark -wangdaye.com.geometricweather.R$color: int mtrl_fab_ripple_color -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void replay(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification -com.google.gson.stream.JsonReader: int[] pathIndices -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification -android.support.v4.os.IResultReceiver$Stub: java.lang.String DESCRIPTOR -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_summaryOff -wangdaye.com.geometricweather.R$color: int material_blue_grey_950 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLBTN_MUSIC_CONTROLS_VALIDATOR -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: java.lang.String Unit -androidx.preference.PreferenceManager: void setOnPreferenceTreeClickListener(androidx.preference.PreferenceManager$OnPreferenceTreeClickListener) -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startY -com.google.android.material.bottomappbar.BottomAppBar: float getFabTranslationX() -androidx.loader.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.R$string: int key_refresh_rate -okhttp3.Protocol: okhttp3.Protocol SPDY_3 -wangdaye.com.geometricweather.R$id: int notification_big_week_1 -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_gapBetweenBars -com.google.android.material.R$styleable: int NavigationView_android_fitsSystemWindows -com.jaredrummler.android.colorpicker.R$styleable: int Preference_key -androidx.lifecycle.viewmodel.savedstate.R -wangdaye.com.geometricweather.remoteviews.config.Hilt_WeekWidgetConfigActivity: Hilt_WeekWidgetConfigActivity() -wangdaye.com.geometricweather.R$drawable: int flag_es -wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_tint -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature WetBulbTemperature -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: int complete -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: int count -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: java.lang.String WeatherCode -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context) -androidx.viewpager2.R$attr: int fastScrollEnabled -androidx.hilt.work.R$styleable: int ColorStateListItem_alpha -androidx.constraintlayout.widget.R$dimen: int hint_alpha_material_light -com.github.rahatarmanahmed.cpv.CircularProgressView$9: CircularProgressView$9(com.github.rahatarmanahmed.cpv.CircularProgressView) -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: ThemesContract$ThemesColumns$InstallState() -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_thumb -okio.Buffer$2: java.lang.String toString() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Toolbar -androidx.transition.R$styleable: int FontFamilyFont_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeWindSpeed() -wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullException -androidx.constraintlayout.widget.R$attr: int telltales_tailColor -androidx.preference.R$styleable: int[] PreferenceFragment -com.turingtechnologies.materialscrollbar.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -james.adaptiveicon.R$dimen: int compat_button_inset_vertical_material -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableLeft -wangdaye.com.geometricweather.R$color: int mtrl_indicator_text_color -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_barLength -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog_Alert -okio.GzipSource: okio.InflaterSource inflaterSource -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_AES_256_CBC_SHA -com.google.android.material.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -androidx.activity.R$id: int text -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginEnd -wangdaye.com.geometricweather.R$attr: int touchAnchorId -wangdaye.com.geometricweather.R$drawable: int abc_spinner_mtrl_am_alpha -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SeekBar -okio.Timeout: long timeoutNanos() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.lang.String pubTime -androidx.appcompat.R$id: int action_bar_subtitle -com.xw.repo.bubbleseekbar.R$color: int primary_dark_material_dark -cyanogenmod.providers.CMSettings$DiscreteValueValidator: java.lang.String[] mValues -androidx.preference.R$styleable: int AppCompatTheme_actionBarItemBackground -com.jaredrummler.android.colorpicker.R$id: int custom -com.jaredrummler.android.colorpicker.R$attr: int allowStacking -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_percent -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_arrow_drop_right_black_24dp -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -com.google.android.material.R$styleable: int OnSwipe_nestedScrollFlags -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver -com.google.android.material.R$color: int mtrl_chip_text_color -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_Switch -okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.internal.cache.CacheStrategy getCandidate() -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeStepGranularity -okhttp3.internal.http.RealResponseBody: long contentLength() -cyanogenmod.hardware.IThermalListenerCallback$Stub: IThermalListenerCallback$Stub() -wangdaye.com.geometricweather.R$styleable: int MaterialButton_cornerRadius -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_3 -wangdaye.com.geometricweather.R$layout: int notification_template_icon_group -androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context,android.util.AttributeSet) -androidx.appcompat.widget.AppCompatButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -okhttp3.internal.ws.RealWebSocket$PingRunnable -io.reactivex.internal.disposables.EmptyDisposable: boolean isEmpty() -com.google.android.material.R$color: int mtrl_on_primary_text_btn_text_color_selector -james.adaptiveicon.R$styleable: int Toolbar_subtitle -com.google.android.material.R$id: int alertTitle -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void drain() -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: BasicIntQueueSubscription() -com.google.android.material.circularreveal.CircularRevealLinearLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$color: int background_floating_material_light -com.google.android.material.R$layout: int text_view_with_line_height_from_style -wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_item_tint -androidx.constraintlayout.widget.R$anim: int abc_shrink_fade_out_from_bottom -com.amap.api.location.AMapLocation: void setProvince(java.lang.String) -androidx.preference.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -com.google.android.material.chip.ChipGroup: int getChipSpacingVertical() -androidx.activity.R$id: int accessibility_custom_action_19 -com.google.android.material.R$attr: int layout_goneMarginLeft -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintEnd_toStartOf -com.google.android.material.R$styleable: int TabLayout_tabIndicatorFullWidth -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_negativeButtonText -okhttp3.internal.platform.Platform: java.lang.Object getStackTraceForCloseable(java.lang.String) -wangdaye.com.geometricweather.R$color: int secondary_text_default_material_light -com.google.android.material.R$styleable: int TabLayout_tabSelectedTextColor -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_FLAG_CONTROL -james.adaptiveicon.R$id: int async -cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder(java.util.List) -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_liftOnScrollTargetViewId -wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog_title -okhttp3.Response$Builder: okhttp3.Handshake handshake -okhttp3.internal.http1.Http1Codec$ChunkedSource: okhttp3.HttpUrl url -androidx.appcompat.R$attr: int paddingEnd -com.google.android.gms.common.api.ResolvableApiException -androidx.constraintlayout.widget.R$styleable: int StateSet_defaultState -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.List defense -androidx.appcompat.widget.ActivityChooserView: void setExpandActivityOverflowButtonDrawable(android.graphics.drawable.Drawable) -androidx.constraintlayout.widget.R$styleable: int[] MenuGroup -com.amap.api.fence.PoiItem -cyanogenmod.weather.RequestInfo: RequestInfo() -android.didikee.donate.R$attr: int activityChooserViewStyle -okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,long,okio.BufferedSource) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean() -com.google.android.material.R$dimen: int mtrl_btn_text_btn_padding_left -androidx.appcompat.R$layout: int abc_screen_content_include -androidx.lifecycle.extensions.R$anim: int fragment_fast_out_extra_slow_in -retrofit2.RequestFactory$Builder: void validatePathName(int,java.lang.String) -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String zh_TW -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String coDesc -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.R$dimen: int abc_disabled_alpha_material_light -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleContentDescription -androidx.legacy.coreutils.R$drawable: int notification_bg_low_pressed -com.google.android.material.button.MaterialButtonToggleGroup: void setupButtonChild(com.google.android.material.button.MaterialButton) -androidx.preference.TwoStatePreference$SavedState: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$id: int progress_horizontal -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: ObservableCombineLatest$CombinerObserver(io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator,int) -james.adaptiveicon.R$drawable: int abc_ic_go_search_api_material -com.google.android.material.chip.Chip: void setBackgroundTintList(android.content.res.ColorStateList) -com.google.android.material.R$styleable: int KeyCycle_framePosition -wangdaye.com.geometricweather.R$id: int scrollView -wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_icon -wangdaye.com.geometricweather.R$string: int wind_1 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_NOTIF_COUNT_VALIDATOR -androidx.constraintlayout.widget.R$attr: int gapBetweenBars -com.google.android.material.R$id: int time -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: CaiYunMainlyResult$CurrentBean$HumidityBean() -androidx.preference.R$style: int Widget_AppCompat_Button_Colored -androidx.hilt.work.R$color: R$color() -com.google.android.material.R$attr: int hintAnimationEnabled -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.preference.R$string: int v7_preference_off -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onScreenTurnedOn() -androidx.viewpager.widget.ViewPager: void setOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) -com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_backgroundTint -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_liftOnScroll -androidx.constraintlayout.widget.R$attr: int contentInsetStart -okhttp3.internal.http2.Http2Connection$1: int val$streamId -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_maxHeight -cyanogenmod.app.IPartnerInterface$Stub$Proxy: void setAirplaneModeEnabled(boolean) -com.tencent.bugly.proguard.y: java.lang.String f() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial -wangdaye.com.geometricweather.R$attr: int actionModeCopyDrawable -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.functions.Consumer disposer -com.jaredrummler.android.colorpicker.R$attr: int cpv_showColorShades -com.google.android.material.R$drawable: int mtrl_ic_error -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_voice -com.google.android.material.R$attr: int keyPositionType -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: java.lang.String getCloudCoverText(int) -com.xw.repo.bubbleseekbar.R$style: int Platform_V25_AppCompat -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Tooltip -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_ALL -wangdaye.com.geometricweather.background.service.TileService: TileService() -androidx.hilt.lifecycle.R$attr: R$attr() -com.jaredrummler.android.colorpicker.R$attr: int font -com.xw.repo.bubbleseekbar.R$attr: int actionModeCopyDrawable -com.tencent.bugly.crashreport.common.info.a: java.lang.String as -cyanogenmod.app.IProfileManager -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_bg_color_selector -okhttp3.Call$Factory: okhttp3.Call newCall(okhttp3.Request) -androidx.preference.R$id: int topPanel -android.didikee.donate.R$styleable: int AppCompatTheme_dialogPreferredPadding -android.didikee.donate.R$styleable: int SwitchCompat_android_textOn -okhttp3.Headers$Builder: okhttp3.Headers$Builder addAll(okhttp3.Headers) -com.xw.repo.bubbleseekbar.R$id: int action_image -cyanogenmod.providers.CMSettings$System: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) -okio.AsyncTimeout$1: java.lang.String toString() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: MfForecastResult$DailyForecast$Sun() -com.turingtechnologies.materialscrollbar.R$attr: int indeterminateProgressStyle -com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -wangdaye.com.geometricweather.R$drawable: int ic_location -wangdaye.com.geometricweather.R$id: int dialog_resident_location_container -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean done -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_body_2_material -androidx.appcompat.R$styleable: int SwitchCompat_trackTintMode -wangdaye.com.geometricweather.R$attr: int bsb_show_section_text -com.xw.repo.bubbleseekbar.R$attr: int windowFixedHeightMajor -com.google.gson.stream.JsonReader: java.lang.String nextQuotedValue(char) -james.adaptiveicon.R$dimen: int abc_text_size_menu_material -com.google.android.gms.location.zzbd -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_Layout_layout_scrollFlags -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night -com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_id -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_focused_holo -com.xw.repo.bubbleseekbar.R$drawable: int abc_edit_text_material -wangdaye.com.geometricweather.R$attr: int viewInflaterClass -com.google.gson.stream.JsonWriter: boolean isHtmlSafe() -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getIconTint() -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: long serialVersionUID -wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullException: ResourceUtils$NullException() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String zh_TW -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicator -okhttp3.MultipartBody$Builder: MultipartBody$Builder() -com.turingtechnologies.materialscrollbar.R$id: int bottom -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setHourlyForecast(java.lang.String) -androidx.appcompat.view.menu.ActionMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: ObservablePublish$InnerDisposable(io.reactivex.Observer) -james.adaptiveicon.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -androidx.transition.R$styleable: int FontFamily_fontProviderCerts -androidx.coordinatorlayout.R$styleable: R$styleable() -com.google.android.material.R$styleable: int AppCompatTextView_autoSizeTextType -androidx.appcompat.R$styleable: int ViewStubCompat_android_layout -androidx.loader.R$id: int forever -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_material_light -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginStart -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onNext(java.lang.Object) -com.google.android.material.appbar.CollapsingToolbarLayout: void setVisibility(int) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabView -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Hint -com.turingtechnologies.materialscrollbar.R$attr: int cardMaxElevation -androidx.constraintlayout.widget.R$attr: int alertDialogStyle -com.google.android.material.chip.Chip: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$color: int material_cursor_color -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarStyle -androidx.constraintlayout.widget.R$styleable: int Layout_constraint_referenced_ids -androidx.appcompat.R$color: int dim_foreground_disabled_material_dark -okhttp3.OkHttpClient: okhttp3.EventListener$Factory eventListenerFactory -androidx.work.R$layout: int notification_template_custom_big -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontStyle -cyanogenmod.platform.R$array: R$array() -james.adaptiveicon.R$attr: int actionOverflowButtonStyle -androidx.core.R$dimen: int notification_large_icon_height -okhttp3.internal.http2.Http2Writer: void synReply(boolean,int,java.util.List) -wangdaye.com.geometricweather.R$string: int feedback_request_location_permission_failed -androidx.activity.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.R$styleable: int[] MaterialCardView -com.tencent.bugly.crashreport.CrashReport$UserStrategy: CrashReport$UserStrategy(android.content.Context) -wangdaye.com.geometricweather.R$attr: int cpv_progress -okhttp3.internal.http2.Http2: byte FLAG_PADDED -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -okio.SegmentedByteString: byte[][] segments -wangdaye.com.geometricweather.R$array: int notification_styles -com.jaredrummler.android.colorpicker.R$style: int Preference_Information_Material -com.google.android.material.R$attr: int alertDialogButtonGroupStyle -com.amap.api.location.AMapLocation: java.lang.String n(com.amap.api.location.AMapLocation,java.lang.String) -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -wangdaye.com.geometricweather.R$layout: int widget_day_oreo_google_sans -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onStart() -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderQuery -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$002(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_grey -okhttp3.MediaType: int hashCode() -com.turingtechnologies.materialscrollbar.R$id: int wrap_content -com.google.android.material.R$attr: int trackHeight -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginEnd -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: long serialVersionUID -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textStyle -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -androidx.constraintlayout.widget.R$attr: int viewInflaterClass -cyanogenmod.app.Profile: java.util.UUID mUuid -androidx.work.impl.utils.futures.DirectExecutor: java.lang.String toString() -okhttp3.ResponseBody$1: okio.BufferedSource source() -androidx.preference.R$id: int search_plate -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_toolbarStyle -androidx.preference.R$color: int bright_foreground_disabled_material_light -com.tencent.bugly.proguard.v: android.content.Context c -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeTextType -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean delayErrors -androidx.preference.R$id: int tag_unhandled_key_listeners -androidx.appcompat.R$id: int tag_accessibility_heading -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -androidx.appcompat.widget.Toolbar: int getContentInsetLeft() -com.google.gson.internal.LazilyParsedNumber -androidx.constraintlayout.widget.R$id: int spacer -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean i -cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCK_PASS_TO_SECURITY_VIEW -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_70 -wangdaye.com.geometricweather.R$interpolator: int mtrl_fast_out_linear_in -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String weatherSource -okhttp3.Cookie: Cookie(okhttp3.Cookie$Builder) -cyanogenmod.app.IPartnerInterface$Stub -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_COLOR -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: MfCurrentResult$Position() -org.greenrobot.greendao.AbstractDao: java.util.List queryRaw(java.lang.String,java.lang.String[]) -androidx.constraintlayout.widget.R$attr: int listPreferredItemHeightLarge -wangdaye.com.geometricweather.R$attr: int percentHeight -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm -androidx.appcompat.R$attr: int windowFixedHeightMajor -okhttp3.OkHttpClient$1 -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_requestThemeChange -okio.RealBufferedSink: okio.BufferedSink write(okio.ByteString) -retrofit2.ParameterHandler$FieldMap: java.lang.reflect.Method method -org.greenrobot.greendao.AbstractDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -okhttp3.internal.http.HttpDate: java.util.Date parse(java.lang.String) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String name -androidx.coordinatorlayout.R$attr: int ttcIndex -wangdaye.com.geometricweather.main.dialogs.LocationPermissionStatementDialog -androidx.work.R$drawable: int notification_action_background -androidx.viewpager.R$drawable: int notification_template_icon_low_bg -cyanogenmod.providers.CMSettings$Global: java.lang.String SYS_PROP_CM_SETTING_VERSION -retrofit2.RequestFactory$Builder: boolean gotBody -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.ObservableSource[],io.reactivex.functions.Function,int) -io.reactivex.internal.schedulers.ScheduledRunnable: long serialVersionUID -android.didikee.donate.R$dimen: int abc_progress_bar_height_material -androidx.appcompat.R$attr: int ratingBarStyle -android.didikee.donate.R$styleable: int MenuGroup_android_menuCategory -androidx.appcompat.R$style: int Base_V23_Theme_AppCompat_Light -com.xw.repo.bubbleseekbar.R$attr: int actionProviderClass -androidx.appcompat.resources.R$styleable: int GradientColor_android_centerY -okhttp3.Request$Builder: java.util.Map tags -okhttp3.internal.http2.Huffman -cyanogenmod.weather.CMWeatherManager: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener) -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderAuthority -androidx.preference.R$anim: int fragment_fade_enter -com.google.android.material.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Solid -com.google.gson.JsonParseException: long serialVersionUID -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_entries -com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingStart -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX names -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: AccuCurrentResult$TemperatureSummary$Past6HourRange() -com.turingtechnologies.materialscrollbar.R$layout: int design_layout_snackbar -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer grassIndex -wangdaye.com.geometricweather.R$style: int Base_V26_Theme_AppCompat_Light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: double Value -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.ObservableSource first -com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusBottomStart() -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void drainLoop() -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: java.util.concurrent.TimeUnit unit -com.jaredrummler.android.colorpicker.R$attr: int iconTintMode -com.google.android.gms.internal.common.zzq -androidx.constraintlayout.widget.R$layout: int abc_expanded_menu_layout -wangdaye.com.geometricweather.common.basic.models.weather.Daily -wangdaye.com.geometricweather.R$attr: int mock_labelColor -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyle -androidx.core.R$id: int text -com.turingtechnologies.materialscrollbar.R$anim: int abc_tooltip_enter -wangdaye.com.geometricweather.R$dimen: int disabled_alpha_material_dark -okhttp3.internal.cache.DiskLruCache: void completeEdit(okhttp3.internal.cache.DiskLruCache$Editor,boolean) -androidx.preference.R$attr: int showText -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getPivotY() -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean cancelled -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Long getId() -okhttp3.internal.http.HttpHeaders: boolean skipWhitespaceAndCommas(okio.Buffer) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_height -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_enterFadeDuration -com.google.android.material.R$id: int dragRight -james.adaptiveicon.R$styleable: int MenuItem_iconTintMode -com.google.android.material.R$style: int Base_Widget_AppCompat_Button -okhttp3.internal.http2.Http2Stream: boolean isLocallyInitiated() -wangdaye.com.geometricweather.R$id: int cancel_button -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: org.reactivestreams.Subscriber downstream -com.google.android.gms.auth.api.signin.GoogleSignInOptions -okhttp3.internal.ws.RealWebSocket: java.util.concurrent.ScheduledFuture cancelFuture -cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.CMTelephonyManager sCMTelephonyManagerInstance -androidx.dynamicanimation.R$id: int blocking -com.google.android.material.R$styleable: int Layout_layout_goneMarginEnd -com.amap.api.location.AMapLocationQualityReport: long getNetUseTime() -com.google.android.material.R$drawable: int ic_mtrl_checked_circle -androidx.lifecycle.ViewModel: java.lang.Object setTagIfAbsent(java.lang.String,java.lang.Object) -com.github.rahatarmanahmed.cpv.CircularProgressViewListener -androidx.hilt.lifecycle.R$dimen: int notification_main_column_padding_top -android.didikee.donate.R$drawable: int notification_template_icon_low_bg -okhttp3.internal.http2.Http2Connection$Listener: void onStream(okhttp3.internal.http2.Http2Stream) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_LANDSCAPE -androidx.constraintlayout.widget.R$styleable: int[] SearchView -okio.RealBufferedSink: void flush() -com.google.android.material.R$color: int mtrl_bottom_nav_ripple_color -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String quality -okhttp3.Response: long sentRequestAtMillis -com.tencent.bugly.proguard.z: java.lang.Object a(byte[],android.os.Parcelable$Creator) -com.google.android.material.R$styleable: int Layout_android_layout_marginEnd -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleSwitch -wangdaye.com.geometricweather.R$id: int dialog_location_help_locationIcon -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getRealFeelTemperature() -androidx.lifecycle.extensions.R$id: int tag_transition_group -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerX -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator -com.tencent.bugly.crashreport.common.info.a: android.content.SharedPreferences E -cyanogenmod.alarmclock.ClockContract$CitiesColumns -android.didikee.donate.R$string: int app_name -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void drain() -com.google.android.material.textfield.TextInputLayout: int getBoxStrokeWidthFocused() -androidx.core.R$id: int accessibility_custom_action_31 -cyanogenmod.profiles.BrightnessSettings: BrightnessSettings(android.os.Parcel) -com.google.android.material.R$id: int src_over -androidx.constraintlayout.widget.R$styleable: int KeyPosition_transitionEasing -com.google.android.material.R$drawable: int abc_list_divider_material -androidx.appcompat.R$styleable: int Toolbar_android_minHeight -com.google.android.material.R$styleable: int CompoundButton_buttonTint -com.google.android.material.circularreveal.CircularRevealGridLayout: int getCircularRevealScrimColor() -androidx.appcompat.widget.Toolbar: void setLogoDescription(java.lang.CharSequence) -wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_item -androidx.vectordrawable.R$attr: int fontProviderAuthority -androidx.appcompat.R$id: int action_bar_activity_content -com.xw.repo.bubbleseekbar.R$layout: int abc_tooltip -com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String s -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderAuthority -com.amap.api.location.AMapLocation: boolean b(com.amap.api.location.AMapLocation,boolean) -okhttp3.internal.http2.Settings: int getMaxHeaderListSize(int) -com.tencent.bugly.crashreport.crash.jni.b: java.lang.String b(java.lang.String) -com.google.android.material.R$styleable: int[] Layout -com.google.android.material.R$styleable: int Slider_labelStyle -com.tencent.bugly.crashreport.common.info.a: void b(java.lang.String,java.lang.String) -androidx.appcompat.R$dimen: int notification_top_pad_large_text -com.google.android.material.R$styleable: int[] MenuView -com.tencent.bugly.proguard.v: long q -com.google.android.material.R$color: R$color() -james.adaptiveicon.R$attr: int toolbarStyle -com.jaredrummler.android.colorpicker.R$attr: int checkBoxPreferenceStyle -com.tencent.bugly.proguard.f: boolean equals(java.lang.Object) -com.google.android.material.R$styleable: int MaterialCalendar_yearSelectedStyle -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Bridge -androidx.preference.ListPreference: ListPreference(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ListPopupWindow -com.google.android.material.R$layout: int material_clock_display -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: boolean isLeft -androidx.lifecycle.SavedStateHandleController: void tryToAddRecreator(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) -wangdaye.com.geometricweather.background.polling.basic.ForegroundUpdateService: ForegroundUpdateService() -android.didikee.donate.R$attr: int listPopupWindowStyle -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Description -androidx.preference.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$drawable: int ic_top -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void removeEmptyNativeRecordFiles() -com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_disable_only_material_light -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_creator -com.xw.repo.bubbleseekbar.R$string: int abc_capital_off -androidx.preference.R$color: int material_grey_100 -com.turingtechnologies.materialscrollbar.R$style: int Platform_V25_AppCompat_Light -androidx.hilt.R$id: int icon -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_trackTintMode -androidx.preference.R$attr: int actionOverflowButtonStyle -androidx.hilt.lifecycle.R$id: int tag_accessibility_heading -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleTextAppearance -okhttp3.OkHttpClient: java.util.List protocols -cyanogenmod.externalviews.IExternalViewProviderFactory -cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_USE_MAIN_TILES -android.didikee.donate.R$dimen: int abc_dropdownitem_icon_width -com.jaredrummler.android.colorpicker.R$drawable: int tooltip_frame_light -wangdaye.com.geometricweather.R$id: int notification_big_icon_2 -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: MfHistoryResult$History$Wind() -androidx.hilt.work.R$id: int accessibility_custom_action_25 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean delayErrors -androidx.recyclerview.widget.RecyclerView: int getBaseline() -wangdaye.com.geometricweather.R$attr: int autoSizeStepGranularity -com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context,android.util.AttributeSet) -com.tencent.bugly.crashreport.common.info.a: com.tencent.bugly.crashreport.a D -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_toTopOf -wangdaye.com.geometricweather.R$styleable: int Slider_tickColor -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.google.android.material.R$styleable: int AppCompatTextView_lineHeight -androidx.constraintlayout.widget.R$styleable: int Variant_region_heightLessThan -cyanogenmod.weatherservice.ServiceRequest: void cancel() -com.google.android.material.appbar.AppBarLayout: void addOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener) -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_font -cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri getDownloadUri() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setLogo(java.lang.String) -com.jaredrummler.android.colorpicker.R$drawable: int cpv_ic_arrow_right_black_24dp -com.google.android.material.R$dimen: int design_navigation_separator_vertical_padding -androidx.constraintlayout.widget.R$id: int honorRequest -com.google.android.material.R$attr: int helperTextTextAppearance -wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetDailyEntityList() -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_16dp -okio.Buffer: okio.Buffer emitCompleteSegments() -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType valueOf(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_5 -com.google.gson.LongSerializationPolicy -io.reactivex.Observable: io.reactivex.Observable cacheWithInitialCapacity(int) -androidx.customview.R$id: int line3 -okhttp3.internal.cache.DiskLruCache: boolean journalRebuildRequired() -android.support.v4.app.INotificationSideChannel$Default -androidx.cardview.widget.CardView: float getRadius() -com.google.android.material.chip.Chip: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_UUID -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.QueryBuilder queryBuilder() -androidx.viewpager2.widget.ViewPager2: int getPageSize() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int LOW_NOTIFICATION_STATE -okhttp3.internal.cache2.Relay: long FILE_HEADER_SIZE -retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object L$0 -androidx.appcompat.R$drawable: int abc_textfield_search_activated_mtrl_alpha -androidx.preference.R$attr: int dropdownPreferenceStyle -com.turingtechnologies.materialscrollbar.R$color: int abc_btn_colored_borderless_text_material -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_NoActionBar -okhttp3.internal.http.HttpMethod: boolean invalidatesCache(java.lang.String) -io.reactivex.internal.util.HashMapSupplier -com.xw.repo.bubbleseekbar.R$style: int Base_V23_Theme_AppCompat -retrofit2.ParameterHandler$QueryName: boolean encoded -com.google.android.material.R$attr: int titleTextStyle -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode Device_Sensors -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder allEnabledTlsVersions() -androidx.preference.R$string -com.turingtechnologies.materialscrollbar.R$id: int action_bar_activity_content -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderFetchStrategy -okhttp3.internal.http2.Http2Connection: long intervalPingsSent -cyanogenmod.app.ICMStatusBarManager: void removeCustomTileWithTag(java.lang.String,java.lang.String,int,int) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Tooltip -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.internal.disposables.SequentialDisposable upstream -okhttp3.OkHttpClient$Builder: int readTimeout -androidx.recyclerview.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_140 -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_22 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setIndices(java.util.List) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked -android.didikee.donate.R$attr: int actionOverflowButtonStyle -androidx.preference.R$style: int TextAppearance_AppCompat_Body2 -com.turingtechnologies.materialscrollbar.R$id: int italic -james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar -okio.ByteString: byte[] data -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_fabCustomSize -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ShapeableImageView -com.tencent.bugly.proguard.z: z() -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -android.didikee.donate.R$styleable: int MenuItem_iconTint -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) -androidx.fragment.R$attr: int fontProviderCerts -androidx.activity.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex inTwoDays -com.jaredrummler.android.colorpicker.R$attr: int selectableItemBackground -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Small -androidx.constraintlayout.widget.R$dimen: int abc_text_size_small_material -com.tencent.bugly.proguard.aa: com.tencent.bugly.proguard.ab a(int) -androidx.appcompat.R$drawable: int notification_bg_low -androidx.viewpager2.R$dimen: int fastscroll_default_thickness -wangdaye.com.geometricweather.R$color: int material_on_background_emphasis_medium -com.google.android.material.R$dimen: int mtrl_fab_min_touch_target -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SearchView -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String OVERLAYS_URI -wangdaye.com.geometricweather.R$attr: int preferenceTheme -androidx.appcompat.widget.SwitchCompat: android.graphics.drawable.Drawable getTrackDrawable() -wangdaye.com.geometricweather.R$id: int rounded -com.tencent.bugly.crashreport.R$string -james.adaptiveicon.R$color: int abc_tint_edittext -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorGravity -okhttp3.internal.http2.Http2Reader$Handler: void ping(boolean,int,int) -james.adaptiveicon.R$drawable: int abc_btn_radio_material -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_show_motion_spec -com.tencent.bugly.proguard.an: an() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: int UnitType -okhttp3.CacheControl$Builder: boolean noCache -androidx.lifecycle.MediatorLiveData: void onInactive() -androidx.recyclerview.R$dimen: int compat_notification_large_icon_max_height -androidx.constraintlayout.widget.R$attr: int touchAnchorSide -okhttp3.internal.Util: int delimiterOffset(java.lang.String,int,int,char) -wangdaye.com.geometricweather.R$attr: int boxCornerRadiusBottomStart -com.google.android.material.textfield.TextInputLayout: void removeOnEditTextAttachedListener(com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener) -io.reactivex.exceptions.OnErrorNotImplementedException: long serialVersionUID -org.greenrobot.greendao.AbstractDao: java.lang.String getTablename() -androidx.preference.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_maximum_default_fullscreen_minor_axis -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_1_material -androidx.preference.R$styleable: int Preference_iconSpaceReserved -wangdaye.com.geometricweather.R$dimen: int preference_seekbar_padding_horizontal -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_translation_z_hovered_focused -androidx.preference.R$id: int start -com.turingtechnologies.materialscrollbar.R$attr: int cornerRadius -androidx.preference.PreferenceCategory: PreferenceCategory(android.content.Context,android.util.AttributeSet) -okhttp3.internal.ws.WebSocketWriter: void writePong(okio.ByteString) -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onRequested() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: AccuCurrentResult$WindGust$Speed$Metric() -com.google.android.material.R$styleable: int PropertySet_layout_constraintTag -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -com.jaredrummler.android.colorpicker.R$attr: int actionBarTheme -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconMargin -cyanogenmod.app.Profile: int mDozeMode -okhttp3.internal.platform.OptionalMethod: java.lang.reflect.Method getMethod(java.lang.Class) -com.turingtechnologies.materialscrollbar.R$id: int search_close_btn -retrofit2.OkHttpCall: void enqueue(retrofit2.Callback) -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_checkable -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date sunSetDate -com.google.android.material.R$attr: int popupMenuStyle -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog -androidx.activity.R$dimen: int notification_right_side_padding_top -com.google.android.material.R$dimen: int mtrl_btn_text_btn_padding_right -wangdaye.com.geometricweather.R$id: int widget_day_weather -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removeAllQueryParameters(java.lang.String) -androidx.appcompat.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -com.google.android.material.R$layout: int test_toolbar_custom_background -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_minHeight -androidx.appcompat.R$attr: int tint -com.google.android.material.R$styleable: int CompoundButton_buttonTintMode -com.google.android.material.R$dimen: int cardview_compat_inset_shadow -okhttp3.CipherSuite -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginEnd -com.xw.repo.bubbleseekbar.R$attr: int divider -io.reactivex.Observable: io.reactivex.Observable scanWith(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetBottom -com.tencent.bugly.crashreport.common.info.b: java.lang.String b() -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean setDisposable(io.reactivex.disposables.Disposable,int) -com.google.android.material.transformation.FabTransformationSheetBehavior: FabTransformationSheetBehavior() -cyanogenmod.profiles.StreamSettings: int getStreamId() -wangdaye.com.geometricweather.R$attr: int bsb_anim_duration -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: java.lang.String Localized -wangdaye.com.geometricweather.R$styleable: int ArcProgress_text_size -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List advices -com.turingtechnologies.materialscrollbar.R$attr: int drawerArrowStyle -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize -com.bumptech.glide.integration.okhttp.R$id: int notification_background -androidx.legacy.coreutils.R$string: R$string() -com.google.android.material.R$styleable: int AppCompatTheme_actionModeFindDrawable -okhttp3.internal.http2.Http2Writer: Http2Writer(okio.BufferedSink,boolean) -com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_menu_item_layout -androidx.lifecycle.ViewModel: void onCleared() -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_interval -com.bumptech.glide.integration.okhttp.R$dimen: int notification_top_pad -com.google.android.material.textfield.TextInputLayout: int getBoxBackgroundColor() -com.jaredrummler.android.colorpicker.R$attr: int autoSizeMaxTextSize -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String sunRise -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean isDisposed() -androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: io.reactivex.Observer downstream -android.didikee.donate.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customIntegerValue -androidx.preference.R$id: int seekbar_value -com.xw.repo.bubbleseekbar.R$drawable: int abc_switch_thumb_material -com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context,android.util.AttributeSet) -com.google.gson.stream.JsonReader: double nextDouble() -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BEGIN_ARRAY -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTotalPrecipitation(java.lang.Float) -androidx.preference.R$drawable: int abc_textfield_activated_mtrl_alpha -wangdaye.com.geometricweather.R$drawable: int cpv_btn_background_pressed -android.didikee.donate.R$style: int TextAppearance_AppCompat_Subhead -androidx.preference.R$dimen: int hint_alpha_material_light -wangdaye.com.geometricweather.main.layouts.MainLayoutManager: MainLayoutManager() -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_elevation -androidx.preference.DialogPreference -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BLUETOOTH_ICON -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlHighlight -okhttp3.Dns: okhttp3.Dns SYSTEM -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_stackFromEnd -com.google.android.material.R$style: int Widget_MaterialComponents_CollapsingToolbar -com.jaredrummler.android.colorpicker.R$string: int abc_action_bar_home_description -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabView -androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_tint -com.google.android.material.R$dimen: int abc_search_view_preferred_height -james.adaptiveicon.R$color: int switch_thumb_material_dark -okhttp3.internal.io.FileSystem$1: okio.Source source(java.io.File) -wangdaye.com.geometricweather.R$drawable: int shortcuts_cloudy_foreground -androidx.fragment.R$style: int Widget_Compat_NotificationActionContainer -androidx.appcompat.R$drawable: int abc_btn_check_to_on_mtrl_000 -androidx.preference.R$styleable: int ViewBackgroundHelper_backgroundTint -com.amap.api.fence.GeoFenceClient: boolean removeGeoFence(com.amap.api.fence.GeoFence) -okhttp3.internal.http2.Http2Connection: void sendDegradedPingLater() -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context,android.util.AttributeSet) -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$KeySet keySet -androidx.swiperefreshlayout.R$attr: int swipeRefreshLayoutProgressSpinnerBackgroundColor -com.google.android.material.navigation.NavigationView: void setOverScrollMode(int) -androidx.transition.R$color -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginEnd -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_MENU_ACTION -io.reactivex.Observable: io.reactivex.Observable never() -io.reactivex.Observable: io.reactivex.Observable concatMapSingle(io.reactivex.functions.Function,int) -android.didikee.donate.R$styleable: int Toolbar_contentInsetLeft -androidx.appcompat.R$dimen: int disabled_alpha_material_light -com.jaredrummler.android.colorpicker.R$attr: int spanCount -com.google.android.material.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: java.lang.String Unit -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: void truncate() -com.google.android.material.R$styleable: int[] TabItem -androidx.fragment.R$styleable: R$styleable() -androidx.preference.R$styleable: int Toolbar_buttonGravity -retrofit2.ParameterHandler$Field: java.lang.String name -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_86 -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeWidth -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActivityChooserView -wangdaye.com.geometricweather.R$attr: int textInputLayoutFocusedRectEnabled -com.tencent.bugly.proguard.ae -io.reactivex.Observable: io.reactivex.Observable materialize() -com.google.android.material.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator -android.didikee.donate.R$layout: int abc_alert_dialog_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setCoDesc(java.lang.String) -android.support.v4.os.IResultReceiver$Default: void send(int,android.os.Bundle) -okhttp3.internal.http2.Http2Reader$ContinuationSource: void close() -androidx.constraintlayout.widget.R$id: int gone -okhttp3.internal.http2.Http2Connection: void close(okhttp3.internal.http2.ErrorCode,okhttp3.internal.http2.ErrorCode) -okhttp3.ConnectionPool: int connectionCount() -androidx.appcompat.resources.R$style -com.google.android.material.R$styleable: int TabLayout_tabTextAppearance -wangdaye.com.geometricweather.R$dimen: int item_touch_helper_swipe_escape_max_velocity -cyanogenmod.app.IProfileManager: void resetAll() -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int ON_COMPLETE -wangdaye.com.geometricweather.R$interpolator: int mtrl_linear_out_slow_in -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onNext(java.lang.Object) -android.didikee.donate.R$id: int spacer -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_search_api_material -wangdaye.com.geometricweather.R$attr: int scopeUris -okhttp3.Request$Builder: Request$Builder(okhttp3.Request) -com.tencent.bugly.proguard.d: void b() -androidx.transition.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableEnd -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_DES_CBC_SHA -io.reactivex.internal.observers.DeferredScalarObserver: void onComplete() -android.didikee.donate.R$attr: int backgroundStacked -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setNightIconDrawable(android.graphics.drawable.Drawable) -androidx.hilt.R$id: int tag_unhandled_key_listeners -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -com.tencent.bugly.proguard.i: int a(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_progress_in_float -com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_inset_horizontal_material -okhttp3.Dns$1 -okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithIncrementalIndexingIndexedName(int) -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$color: R$color() -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mState -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getWetBulbTemperature() -androidx.appcompat.R$attr: int listLayout -androidx.preference.R$styleable: int SearchView_searchIcon -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorContentDescription -androidx.vectordrawable.animated.R$id: R$id() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabStyle -androidx.viewpager.R$styleable: int GradientColorItem_android_offset -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode[] getDisplayModes() -com.amap.api.location.AMapLocationClientOption: boolean isMockEnable() -wangdaye.com.geometricweather.R$attr: int flow_firstHorizontalStyle -androidx.preference.R$attr: int font -androidx.hilt.lifecycle.R$style: int Widget_Compat_NotificationActionText -androidx.hilt.work.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.converters.WeatherSourceConverter weatherSourceConverter -com.google.android.material.R$styleable: int View_paddingEnd -wangdaye.com.geometricweather.R$id: int action_bar_spinner -wangdaye.com.geometricweather.R$id: int startHorizontal -com.google.android.material.R$dimen: int design_fab_image_size -okhttp3.EventListener: void callFailed(okhttp3.Call,java.io.IOException) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_navigationContentDescription -retrofit2.http.Tag -wangdaye.com.geometricweather.R$styleable: int[] ArcProgress -cyanogenmod.externalviews.ExternalView$5: void run() -wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_1_material -com.jaredrummler.android.colorpicker.R$attr: int switchPadding -io.reactivex.exceptions.CompositeException: void printStackTrace(java.io.PrintWriter) -com.google.android.material.R$id: int search_voice_btn -wangdaye.com.geometricweather.R$attr: int flow_horizontalGap -androidx.constraintlayout.widget.R$styleable: int TextAppearance_fontVariationSettings -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder hostnameVerifier(javax.net.ssl.HostnameVerifier) -com.google.android.material.transformation.TransformationChildLayout: TransformationChildLayout(android.content.Context,android.util.AttributeSet) -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_dither -androidx.preference.R$attr: int measureWithLargestChild -wangdaye.com.geometricweather.R$string: int key_card_alpha -cyanogenmod.providers.DataUsageContract: android.net.Uri BASE_CONTENT_URI -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: boolean done -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -wangdaye.com.geometricweather.R$attr: int textStartPadding -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: int UnitType -james.adaptiveicon.R$attr: int colorControlHighlight -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button -androidx.preference.R$styleable: int CheckBoxPreference_summaryOn -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String VIBRATE -androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy: ConstraintProxy$BatteryNotLowProxy() -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean isCancelled() -okhttp3.Cookie: long expiresAt -retrofit2.Platform: retrofit2.Platform PLATFORM -wangdaye.com.geometricweather.R$string: int action_manage -okhttp3.internal.platform.JdkWithJettyBootPlatform: okhttp3.internal.platform.Platform buildIfSupported() -okhttp3.Cookie: java.lang.String value -androidx.appcompat.R$drawable: int abc_btn_colored_material -androidx.preference.R$styleable: int SeekBarPreference_updatesContinuously -okhttp3.Address: java.net.Proxy proxy -okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part create(okhttp3.RequestBody) -wangdaye.com.geometricweather.R$attr: int tabBackground -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer speed -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String info -android.support.v4.os.IResultReceiver$Stub: boolean setDefaultImpl(android.support.v4.os.IResultReceiver) -wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_EXCESSIVE -androidx.work.R$dimen: int notification_top_pad_large_text -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) -androidx.fragment.R$attr: int font -androidx.preference.R$drawable: int abc_list_longpressed_holo -android.didikee.donate.R$dimen: int abc_dropdownitem_text_padding_right -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Line2 -com.amap.api.location.AMapLocationClient: void startAssistantLocation() -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int limit -androidx.appcompat.R$attr: int windowActionBar -com.google.android.material.R$styleable: int LinearLayoutCompat_divider -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeight -com.google.android.material.chip.Chip: void setCheckableResource(int) -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.disposables.Disposable upstream -androidx.legacy.coreutils.R$dimen: int notification_main_column_padding_top -android.didikee.donate.R$dimen: int abc_search_view_preferred_width -androidx.preference.R$styleable: int ActionBar_icon -cyanogenmod.externalviews.KeyguardExternalView$6: boolean val$screenOn -androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetLeft -androidx.viewpager2.R$drawable: int notification_bg_normal_pressed -androidx.preference.R$style: int TextAppearance_AppCompat_Display1 -androidx.preference.R$style: int Preference_Category_Material -com.google.android.material.R$attr: int applyMotionScene -com.google.android.material.R$attr: int cardViewStyle -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -com.turingtechnologies.materialscrollbar.R$id: int top -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitle_inputLayout -com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_LOW -com.google.android.material.R$dimen: int mtrl_large_touch_target -com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_Dialog -okhttp3.Dispatcher: void setIdleCallback(java.lang.Runnable) -wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.entities.LocationEntity readEntity(android.database.Cursor,int) -androidx.appcompat.resources.R$dimen: int compat_button_padding_vertical_material -org.greenrobot.greendao.AbstractDao: java.lang.String[] getPkColumns() -cyanogenmod.os.Build$CM_VERSION -com.google.android.material.R$layout: int mtrl_picker_header_fullscreen -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: cyanogenmod.app.ThemeVersion$ComponentVersion fwCompVersionToSdkVersion(android.content.ThemeVersion$ComponentVersion) -cyanogenmod.providers.CMSettings$Secure: java.lang.String __MAGICAL_TEST_PASSING_ENABLER -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_section_mark -com.tencent.bugly.proguard.af: void a(java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int submitBackground -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dividerHorizontal -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Toolbar -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setDefense(java.util.List) -com.turingtechnologies.materialscrollbar.R$drawable: int mtrl_tabs_default_indicator -cyanogenmod.app.Profile$TriggerType: Profile$TriggerType() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int o3 -com.turingtechnologies.materialscrollbar.R$styleable: int[] DrawerArrowToggle -com.google.android.material.R$string: int mtrl_picker_date_header_unselected -com.google.android.material.R$dimen: int design_bottom_navigation_active_text_size -retrofit2.converter.gson.GsonResponseBodyConverter: com.google.gson.TypeAdapter adapter -androidx.preference.R$attr: int actionButtonStyle -androidx.work.R$id: int italic -android.didikee.donate.R$dimen: int abc_text_size_large_material -com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorCornerRadius() -androidx.appcompat.R$color: int abc_primary_text_disable_only_material_dark -wangdaye.com.geometricweather.R$drawable: int widget_card_light_0 -wangdaye.com.geometricweather.R$layout: int material_time_input -androidx.hilt.R$styleable: int GradientColorItem_android_color -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_tintMode -com.jaredrummler.android.colorpicker.R$attr: int enabled -io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.CompletableSource) -cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String itemTitle -androidx.appcompat.widget.AppCompatImageButton: void setImageDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$attr: int unchecked_background_color -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -com.bumptech.glide.integration.okhttp.R$id -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModePasteDrawable -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 -androidx.appcompat.resources.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarSwitch -com.xw.repo.bubbleseekbar.R$attr: R$attr() -wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day -com.tencent.bugly.proguard.ak: java.util.ArrayList A -retrofit2.ParameterHandler$RawPart: void apply(retrofit2.RequestBuilder,okhttp3.MultipartBody$Part) -androidx.activity.R$style: int TextAppearance_Compat_Notification_Line2 -james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat_Light -com.jaredrummler.android.colorpicker.R$id: int cpv_preference_preview_color_panel -androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -okhttp3.internal.http2.Http2Reader: int lengthWithoutPadding(int,byte,short) -com.google.android.material.R$styleable: int TextInputLayout_expandedHintEnabled -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: java.lang.String Unit -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Province -wangdaye.com.geometricweather.R$color: int material_timepicker_button_stroke -androidx.preference.R$layout: int abc_popup_menu_header_item_layout -cyanogenmod.app.Profile: int mProfileType -wangdaye.com.geometricweather.R$attr: int counterEnabled -com.xw.repo.bubbleseekbar.R$attr: int contentInsetLeft -androidx.coordinatorlayout.R$integer: R$integer() -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getOpPkg() -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: PrecipitationProbability(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -com.google.android.material.textfield.TextInputLayout: void setHintTextColor(android.content.res.ColorStateList) -com.google.android.material.R$integer -wangdaye.com.geometricweather.R$styleable: int ActionMode_closeItemLayout -com.github.rahatarmanahmed.cpv.CircularProgressView$2 -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onSubscribe(io.reactivex.disposables.Disposable) -james.adaptiveicon.R$styleable: int SwitchCompat_thumbTint -androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor valueOf(java.lang.String) -com.google.android.material.transformation.FabTransformationBehavior: FabTransformationBehavior() -wangdaye.com.geometricweather.R$attr: int radioButtonStyle -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemTextAppearance -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String cityId -com.xw.repo.bubbleseekbar.R$attr: int bsb_show_progress_in_float -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_spanCount -com.google.android.material.R$styleable: int Slider_thumbColor -com.turingtechnologies.materialscrollbar.R$styleable: int[] ThemeEnforcement -cyanogenmod.profiles.ConnectionSettings: int describeContents() -com.google.android.material.card.MaterialCardView: int getContentPaddingTop() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_android_src -retrofit2.Utils$GenericArrayTypeImpl: int hashCode() -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: io.reactivex.Observer observer -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Caption -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft -io.reactivex.Observable: java.lang.Iterable blockingNext() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabView -com.google.android.material.navigation.NavigationView: void setCheckedItem(android.view.MenuItem) -android.didikee.donate.R$id: int search_edit_frame -com.xw.repo.bubbleseekbar.R$layout: int abc_cascading_menu_item_layout -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -com.google.android.material.R$dimen: int design_navigation_icon_padding -androidx.lifecycle.Transformations$2$1: Transformations$2$1(androidx.lifecycle.Transformations$2) -com.amap.api.location.DPoint: int describeContents() -cyanogenmod.externalviews.KeyguardExternalView: java.lang.String access$400() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX getNames() -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: android.os.IBinder asBinder() -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: void setAlpha(float) -okhttp3.internal.platform.ConscryptPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum Maximum -com.google.android.material.R$style: int Base_V26_Theme_AppCompat -cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getProfile(java.util.UUID) -androidx.constraintlayout.widget.R$attr: int textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.R$styleable: int Transition_android_id -com.xw.repo.bubbleseekbar.R$id: int search_mag_icon -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -wangdaye.com.geometricweather.R$drawable: int flag_cs -android.didikee.donate.R$dimen: int abc_dialog_list_padding_top_no_title -androidx.dynamicanimation.R$styleable: int GradientColorItem_android_color -com.tencent.bugly.crashreport.common.info.a: java.util.Map ad -okio.Okio$1: okio.Timeout val$timeout -okhttp3.internal.cache.DiskLruCache$Editor: okhttp3.internal.cache.DiskLruCache this$0 -wangdaye.com.geometricweather.R$layout: int item_weather_daily_overview -cyanogenmod.app.LiveLockScreenManager: void cancel(int) -james.adaptiveicon.R$color: int ripple_material_dark -androidx.customview.R$id: int time -okhttp3.Response: okhttp3.Headers headers() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.Long id -wangdaye.com.geometricweather.R$color: int primary_dark_material_light -wangdaye.com.geometricweather.R$attr: int endIconMode -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: boolean inMaybe -james.adaptiveicon.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -com.google.android.material.R$id: int mtrl_calendar_frame -wangdaye.com.geometricweather.R$styleable: int[] PreferenceTheme -com.tencent.bugly.crashreport.common.strategy.StrategyBean: long q -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cw -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer stormHazard -com.xw.repo.bubbleseekbar.R$string: int abc_menu_enter_shortcut_label -wangdaye.com.geometricweather.R$attr: int dialogTheme -cyanogenmod.hardware.IThermalListenerCallback$Stub: cyanogenmod.hardware.IThermalListenerCallback asInterface(android.os.IBinder) -io.reactivex.internal.util.NotificationLite: io.reactivex.disposables.Disposable getDisposable(java.lang.Object) -androidx.appcompat.resources.R$id: int blocking -wangdaye.com.geometricweather.R$string: int feedback_click_to_get_more -com.jaredrummler.android.colorpicker.R$styleable: int[] CheckBoxPreference -wangdaye.com.geometricweather.R$id: int chip1 -com.turingtechnologies.materialscrollbar.R$id: int list_item -android.didikee.donate.R$drawable: int notification_tile_bg -androidx.constraintlayout.widget.R$attr: int triggerReceiver -com.turingtechnologies.materialscrollbar.TouchScrollBar: float getHideRatio() -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_20 -com.google.android.material.R$styleable: int Motion_pathMotionArc -com.google.android.material.button.MaterialButton: void setRippleColorResource(int) -io.reactivex.Observable: java.lang.Iterable blockingMostRecent(java.lang.Object) -androidx.preference.R$id: int radio -android.didikee.donate.R$styleable: int TextAppearance_android_shadowDy -cyanogenmod.platform.R$bool -androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$style: int Platform_AppCompat -androidx.coordinatorlayout.R$style: int Widget_Support_CoordinatorLayout -okio.BufferedSink -retrofit2.HttpServiceMethod: HttpServiceMethod(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter) -com.google.android.material.textfield.TextInputLayout: void setEndIconCheckable(boolean) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getAqiIndex() -wangdaye.com.geometricweather.R$drawable: int avd_hide_password -androidx.activity.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult -androidx.drawerlayout.R$drawable: int notification_bg_low_normal -cyanogenmod.app.IProfileManager$Stub$Proxy -com.google.android.material.R$attr: int triggerId -androidx.vectordrawable.R$styleable: int FontFamilyFont_android_font -androidx.constraintlayout.widget.R$styleable: int Transform_android_translationX -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void dispose() -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Small -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String[] ROWS -androidx.recyclerview.R$id: int tag_accessibility_heading -android.didikee.donate.R$style: int TextAppearance_AppCompat_Headline -com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException -com.google.android.material.R$drawable: int abc_ic_menu_cut_mtrl_alpha -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String messageLong -androidx.preference.Preference$BaseSavedState -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display3 -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_android_windowIsFloating -com.google.android.material.R$attr: int cornerFamilyBottomLeft -wangdaye.com.geometricweather.R$attr: int divider -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pressure -wangdaye.com.geometricweather.R$anim: int x2_decelerate_interpolator -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.MinutelyEntity) -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_NoActionBar_Bridge -cyanogenmod.themes.ThemeManager: void logThemeServiceException(java.lang.Exception) -okio.Buffer: void flush() -android.didikee.donate.R$styleable: int ActionBar_homeAsUpIndicator -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetStart -com.google.android.gms.dynamic.RemoteCreator$RemoteCreatorException -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_pressedTranslationZ -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void subscribeNext() -com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode valueOf(java.lang.String) -wangdaye.com.geometricweather.R$string: int key_widget_minimal_icon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: int status -com.baidu.location.e.l$b: void a(java.lang.StringBuffer,java.lang.String,java.lang.String,int) -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextAppearanceActive(int) -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig historyEntityDaoConfig -androidx.preference.R$id: int accessibility_custom_action_21 -cyanogenmod.profiles.ConnectionSettings: java.lang.String ACTION_MODIFY_NETWORK_MODE -com.jaredrummler.android.colorpicker.R$attr: int switchPreferenceCompatStyle -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_WARM_RISING -androidx.constraintlayout.widget.R$styleable: int[] ViewBackgroundHelper -com.amap.api.location.AMapLocation: java.lang.String w -com.google.gson.internal.LinkedTreeMap: java.lang.Object put(java.lang.Object,java.lang.Object) -androidx.appcompat.R$dimen: int abc_config_prefDialogWidth -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Alert -androidx.transition.R$styleable -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_baselineAligned -com.google.android.material.R$dimen: int mtrl_calendar_month_horizontal_padding -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WindChillTemperature -james.adaptiveicon.R$dimen: int abc_edit_text_inset_bottom_material -androidx.preference.R$attr: int selectableItemBackgroundBorderless -retrofit2.BuiltInConverters$VoidResponseBodyConverter: java.lang.Object convert(java.lang.Object) -com.xw.repo.bubbleseekbar.R$id: int action_bar_title -androidx.transition.R$id: int save_non_transition_alpha -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_6 -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onComplete() -androidx.work.R$id: int accessibility_custom_action_9 -androidx.preference.R$id: int up -androidx.core.app.RemoteActionCompatParcelizer: androidx.core.app.RemoteActionCompat read(androidx.versionedparcelable.VersionedParcel) -james.adaptiveicon.R$color: int abc_btn_colored_text_material -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_padding -com.google.android.material.card.MaterialCardView: int getCheckedIconMargin() -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit) -com.jaredrummler.android.colorpicker.R$attr: int thickness -android.didikee.donate.R$layout: int abc_action_bar_up_container -androidx.preference.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.R$attr: int bsb_section_text_interval -androidx.appcompat.R$styleable: int CompoundButton_buttonTint -okhttp3.internal.cache.DiskLruCache -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String b(com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler) -androidx.preference.R$styleable: int StateListDrawable_android_visible -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableRightCompat -com.tencent.bugly.proguard.f: byte[] k -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource RESOURCE_DISK_CACHE -james.adaptiveicon.R$attr: int titleMarginEnd -androidx.preference.R$styleable: int AppCompatTheme_buttonStyleSmall -wangdaye.com.geometricweather.R$string: int abc_capital_off -com.xw.repo.bubbleseekbar.R$attr: int splitTrack -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_elevation -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_commitIcon -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconSize -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function9) -com.jaredrummler.android.colorpicker.R$layout: int preference_category -androidx.constraintlayout.widget.R$attr: int maxAcceleration -wangdaye.com.geometricweather.R$animator: int design_fab_hide_motion_spec -androidx.preference.R$styleable: int DrawerArrowToggle_gapBetweenBars -io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.android.material.R$style: int ThemeOverlay_AppCompat -com.google.android.material.R$styleable: int ImageFilterView_round -androidx.preference.R$attr: int seekBarIncrement -com.google.android.material.R$attr: int thumbStrokeColor -com.tencent.bugly.proguard.p: com.tencent.bugly.proguard.p a -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: boolean isDisposed() -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias -androidx.preference.R$style: int Preference -com.google.android.material.R$id: int standard -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void run() -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderFetchStrategy -com.bumptech.glide.R$attr: int layout_keyline -com.google.android.material.R$id: int outgoing -com.amap.api.location.CoordUtil -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: java.util.ArrayDeque observers -com.bumptech.glide.Registry$NoModelLoaderAvailableException -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomSheet_Modal -androidx.constraintlayout.widget.R$drawable: int notification_icon_background -com.google.android.material.R$dimen: int abc_dialog_fixed_width_major -androidx.preference.R$id: int tag_accessibility_heading -com.google.android.material.textfield.TextInputLayout: void setEndIconContentDescription(java.lang.CharSequence) -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: io.reactivex.Observer downstream -com.google.android.material.R$attr: int layout_constraintDimensionRatio -james.adaptiveicon.R$style: int Widget_AppCompat_PopupMenu_Overflow -android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Light -androidx.room.MultiInstanceInvalidationService: MultiInstanceInvalidationService() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric -wangdaye.com.geometricweather.R$dimen: int material_clock_hand_padding -com.google.android.material.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -androidx.fragment.R$id: int italic -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: AccuCurrentResult$DewPoint$Metric() -androidx.fragment.R$id: int fragment_container_view_tag -wangdaye.com.geometricweather.R$id: int alertTitle -cyanogenmod.weather.WeatherLocation: java.lang.String access$102(cyanogenmod.weather.WeatherLocation,java.lang.String) -androidx.viewpager.R$styleable: int[] ColorStateListItem -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_collapseContentDescription -androidx.appcompat.R$string -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: boolean isDisposed() -okhttp3.internal.connection.RouteDatabase: void connected(okhttp3.Route) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setDirection(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -retrofit2.adapter.rxjava2.Result: retrofit2.Response response -cyanogenmod.profiles.AirplaneModeSettings: void readFromParcel(android.os.Parcel) -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean isDisposed() -okhttp3.internal.cache.DiskLruCache$1: DiskLruCache$1(okhttp3.internal.cache.DiskLruCache) -com.google.android.material.R$color: int primary_dark_material_light -wangdaye.com.geometricweather.R$drawable: int ic_alipay -cyanogenmod.providers.CMSettings$Secure: int getInt(android.content.ContentResolver,java.lang.String,int) -okhttp3.internal.http2.Http2Connection$PingRunnable: Http2Connection$PingRunnable(okhttp3.internal.http2.Http2Connection,boolean,int,int) -com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_minimum_range -android.didikee.donate.R$id: int up -wangdaye.com.geometricweather.R$drawable: int notif_temp_7 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableLeft -okio.Util -androidx.drawerlayout.R$dimen: int notification_large_icon_height -com.xw.repo.bubbleseekbar.R$drawable: int notification_template_icon_bg -com.xw.repo.bubbleseekbar.R$attr: int iconTint -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float total -james.adaptiveicon.R$attr: int goIcon -androidx.constraintlayout.widget.R$attr: int listLayout -androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityStopped(android.app.Activity) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_android_windowAnimationStyle -wangdaye.com.geometricweather.R$drawable: int abc_tab_indicator_material -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: java.lang.String getPathName() -com.github.rahatarmanahmed.cpv.CircularProgressView: int getColor() -androidx.dynamicanimation.R$styleable: int ColorStateListItem_alpha -com.google.android.material.R$drawable: int abc_ic_star_black_16dp -com.google.android.material.R$color: int mtrl_tabs_ripple_color -okhttp3.internal.cache.DiskLruCache$3: void remove() -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontWeight -androidx.hilt.work.R$dimen: int notification_action_text_size -com.bumptech.glide.integration.okhttp.R$dimen: int compat_notification_large_icon_max_height -androidx.hilt.lifecycle.R$id: int info -com.bumptech.glide.R$id: int notification_main_column -james.adaptiveicon.R$integer -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWindChillTemperature(java.lang.Integer) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -com.google.android.material.button.MaterialButton: void setShouldDrawSurfaceColorStroke(boolean) -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_enterFadeDuration -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX names -com.google.android.material.R$attr: int customStringValue -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_id -retrofit2.Response: okhttp3.Headers headers() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day Day -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupMenu -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollEnabled -androidx.appcompat.view.menu.ActionMenuItemView: void setExpandedFormat(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setO3(java.lang.String) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_dither -com.bumptech.glide.R$styleable: int GradientColor_android_startX -com.google.android.material.R$styleable: int MotionLayout_motionProgress -okio.RealBufferedSource: short readShortLe() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_orientation -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.disposables.CompositeDisposable disposables -okhttp3.logging.LoggingEventListener$Factory: LoggingEventListener$Factory() -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_8 -androidx.preference.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Caption -androidx.appcompat.widget.ActionBarOverlayLayout: java.lang.CharSequence getTitle() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text_color -androidx.appcompat.R$attr: int buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String unit -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_font -cyanogenmod.app.CMStatusBarManager: void removeTile(java.lang.String,int) -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getWeatherText() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.R$string: int key_card_style -com.jaredrummler.android.colorpicker.R$attr: int persistent -com.google.android.material.R$styleable: int BottomNavigationView_menu -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableEnd -wangdaye.com.geometricweather.R$string: int fab_transformation_scrim_behavior -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: ObservableWindowBoundary$WindowBoundaryMainObserver(io.reactivex.Observer,int) -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -androidx.preference.R$id: int default_activity_button -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarWidgetTheme -androidx.preference.R$styleable: int AppCompatTextView_fontVariationSettings -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircle -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Title -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$attr: int text_color -androidx.constraintlayout.widget.R$attr: int round -androidx.legacy.content.WakefulBroadcastReceiver: WakefulBroadcastReceiver() -androidx.lifecycle.ReportFragment: void dispatch(android.app.Activity,androidx.lifecycle.Lifecycle$Event) -android.didikee.donate.R$styleable: int ActionMode_backgroundSplit -androidx.core.R$layout: int notification_action -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setIndicatorColor(int) -com.google.android.material.R$id: int tag_accessibility_clickable_spans -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_BottomSheetDialog -com.tencent.bugly.proguard.r: java.lang.String d -androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_tintMode -james.adaptiveicon.R$id: int italic -com.xw.repo.bubbleseekbar.R$id: int tag_transition_group -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setHostname -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_maxWidth -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter beginObject() -wangdaye.com.geometricweather.R$styleable: int Transition_layoutDuringTransition -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelBackground -okhttp3.internal.http2.Http2Connection: long access$708(okhttp3.internal.http2.Http2Connection) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX getBrandInfo() -com.xw.repo.bubbleseekbar.R$dimen: int hint_pressed_alpha_material_light -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setAppVersion(java.lang.String) -wangdaye.com.geometricweather.R$animator: int design_appbar_state_list_animator -cyanogenmod.app.CustomTileListenerService: void registerAsSystemService(android.content.Context,android.content.ComponentName,int) -james.adaptiveicon.R$id -com.tencent.bugly.crashreport.common.info.a: java.lang.Boolean am -androidx.appcompat.R$styleable: int MenuItem_contentDescription -com.jaredrummler.android.colorpicker.R$attr: int listPopupWindowStyle -okhttp3.RealCall: okhttp3.Response execute() -android.didikee.donate.R$styleable: int ActionBar_contentInsetEnd -wangdaye.com.geometricweather.R$array: int ui_style_values -com.xw.repo.bubbleseekbar.R$color: int abc_secondary_text_material_dark -com.google.android.material.R$id: int material_clock_display -com.bumptech.glide.R$styleable: int FontFamily_fontProviderPackage -androidx.vectordrawable.animated.R$dimen: int notification_content_margin_start -okhttp3.Response: int code -com.bumptech.glide.R$id: int forever -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onDetach -androidx.appcompat.R$attr: int listChoiceBackgroundIndicator -com.google.android.material.R$dimen: int material_cursor_inset_top -com.amap.api.fence.GeoFence: void setPointList(java.util.List) -wangdaye.com.geometricweather.R$layout: int design_layout_snackbar -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathStart(float) -okhttp3.internal.tls.DistinguishedNameParser -wangdaye.com.geometricweather.R$id: int editText -com.xw.repo.bubbleseekbar.R$style: int Base_V23_Theme_AppCompat_Light -cyanogenmod.themes.IThemeChangeListener: void onProgress(int) -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void cancel() -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -wangdaye.com.geometricweather.R$styleable: int Preference_persistent -okio.GzipSink: java.util.zip.CRC32 crc -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontWeight -com.tencent.bugly.proguard.p: int a(java.lang.String,java.lang.String,java.lang.String[],com.tencent.bugly.proguard.o) -com.jaredrummler.android.colorpicker.R$attr: int fontProviderCerts -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -okhttp3.internal.cache.CacheStrategy -io.reactivex.internal.disposables.DisposableHelper: boolean trySet(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Title -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_padding -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver -com.bumptech.glide.integration.okhttp.R$drawable: int notify_panel_notification_icon_bg -androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.viewpager.R$dimen: int notification_top_pad -com.google.android.gms.base.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableItem_android_drawable -androidx.hilt.lifecycle.R$drawable: int notification_bg_low -james.adaptiveicon.R$styleable: int SwitchCompat_switchMinWidth -retrofit2.ParameterHandler$HeaderMap: int p -androidx.hilt.work.R$dimen: R$dimen() -androidx.fragment.R$id: int accessibility_custom_action_26 -wangdaye.com.geometricweather.R$attr: int waveShape -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -android.didikee.donate.R$color: int material_grey_900 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: AccuCurrentResult$PrecipitationSummary$Precipitation$Metric() -com.amap.api.fence.DistrictItem: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$styleable: int ActivityChooserView_initialActivityCount -com.tencent.bugly.crashreport.common.info.a: java.lang.String N -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: CaiYunMainlyResult$YesterdayBean() -android.didikee.donate.R$styleable: int MenuItem_android_menuCategory -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_showTitle -com.google.android.material.R$attr: int enforceMaterialTheme -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float pSea -androidx.preference.R$attr: int tickMark -androidx.coordinatorlayout.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String aqi -com.google.android.material.R$styleable: int GradientColor_android_endX -com.google.android.gms.common.internal.safeparcel.SafeParcelable -com.amap.api.fence.GeoFence: int ADDGEOFENCE_SUCCESS -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean mAskedShow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial Imperial -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollEnabled -androidx.lifecycle.extensions.R$integer -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Line2 -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: int getStrokeColor() -io.reactivex.internal.util.AtomicThrowable: AtomicThrowable() -androidx.preference.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -androidx.lifecycle.CompositeGeneratedAdaptersObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.R$attr: int colorSecondary -androidx.constraintlayout.widget.R$attr: int textColorSearchUrl -wangdaye.com.geometricweather.db.entities.HourlyEntity: boolean getDaylight() -wangdaye.com.geometricweather.R$attr: int trackColor -androidx.constraintlayout.motion.widget.MotionLayout: void setInterpolatedProgress(float) -cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl mImpl -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ButtonBar -com.google.android.material.R$id: int touch_outside -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getWeatherSource() -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String[] SELECT_VALUE -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -okhttp3.internal.cache2.Relay: okio.Buffer buffer -com.google.android.material.R$attr: int actionBarPopupTheme -androidx.vectordrawable.R$id: int info -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_startAngle -android.didikee.donate.R$integer: int abc_config_activityShortDur -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabView -android.didikee.donate.R$attr: int actionProviderClass -wangdaye.com.geometricweather.R$attr: int expandActivityOverflowButtonDrawable -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator -com.jaredrummler.android.colorpicker.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_120 -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA -androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -wangdaye.com.geometricweather.R$attr: int actionOverflowButtonStyle -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getContent() -androidx.appcompat.R$style: int Base_Widget_AppCompat_Spinner -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onPause -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginBottom -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderQuery -androidx.appcompat.R$style: int Base_V28_Theme_AppCompat -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_end -okhttp3.internal.http.RetryAndFollowUpInterceptor: java.lang.Object callStackTrace -android.didikee.donate.R$style: int TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherSource(java.lang.String) -com.google.android.material.R$id: int material_value_index -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActivityChooserView -okhttp3.Response: long receivedResponseAtMillis() -wangdaye.com.geometricweather.R$color: int cardview_dark_background -android.didikee.donate.R$styleable: int Toolbar_android_minHeight -androidx.constraintlayout.motion.widget.MotionLayout: void setOnHide(float) -com.google.android.gms.location.ActivityTransitionResult: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: long requested() -com.google.android.material.R$dimen: int mtrl_progress_circular_radius -wangdaye.com.geometricweather.R$font -wangdaye.com.geometricweather.R$id: int notification_big_temp_5 -androidx.preference.R$drawable: int abc_ic_voice_search_api_material -com.amap.api.fence.GeoFenceClient: int GEOFENCE_OUT -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constrainedHeight -wangdaye.com.geometricweather.R$attr: int preferenceFragmentCompatStyle -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetEnd -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.Map buffers -com.google.android.material.R$id: int action_menu_presenter -wangdaye.com.geometricweather.R$layout: int fragment_main -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Headline -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Primary -com.jaredrummler.android.colorpicker.R$style: int Base_V23_Theme_AppCompat -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_level -androidx.coordinatorlayout.R$layout: R$layout() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation Precipitation -androidx.constraintlayout.widget.R$styleable: int[] Spinner -cyanogenmod.content.Intent: java.lang.String EXTRA_PROTECTED_STATE -com.tencent.bugly.crashreport.CrashReport: CrashReport() -okhttp3.internal.http.HttpDate -androidx.constraintlayout.widget.R$drawable: int abc_textfield_default_mtrl_alpha -james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: int unitArrayIndex -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_APP_SWITCH_ACTION -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -retrofit2.Platform$Android$MainThreadExecutor: void execute(java.lang.Runnable) -com.jaredrummler.android.colorpicker.R$id: int blocking -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_inset -okhttp3.internal.platform.AndroidPlatform -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String Phrase_60 -androidx.appcompat.R$id: int submit_area -com.google.android.material.R$styleable: int MaterialButton_iconPadding -androidx.lifecycle.ViewModelStores: androidx.lifecycle.ViewModelStore of(androidx.fragment.app.Fragment) -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_pressed_holo_light -com.google.android.gms.base.R$string: int common_google_play_services_install_button -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setGeoLanguage(com.amap.api.location.AMapLocationClientOption$GeoLanguage) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalGap -androidx.constraintlayout.widget.R$attr: int dialogTheme -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_container -james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogCenterButtons -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCollapsedPaddingTop -com.amap.api.location.UmidtokenInfo$1 -com.google.android.material.textfield.TextInputLayout: void setStartIconDrawable(android.graphics.drawable.Drawable) -androidx.appcompat.resources.R$attr: int fontProviderAuthority -cyanogenmod.platform.R$integer -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_checkable -com.bumptech.glide.R$styleable: int CoordinatorLayout_keylines -com.google.android.material.R$attr: int selectionRequired -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String f -com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_800 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dropDownListViewStyle -androidx.appcompat.R$color: int material_blue_grey_900 -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: int getChartTop() -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_material -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -com.google.android.material.R$dimen: int abc_text_size_small_material -com.google.android.material.R$string: int mtrl_picker_invalid_format_example -okhttp3.internal.platform.Platform: byte[] concatLengthPrefixed(java.util.List) -com.google.android.material.R$style: int Widget_AppCompat_ActionBar_Solid -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner -com.tencent.bugly.proguard.p: com.tencent.bugly.proguard.p a() -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HourlyEntityDao getHourlyEntityDao() -androidx.preference.R$styleable: int PreferenceTheme_preferenceStyle -wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitleIconStyle -com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getBackgroundTintMode() -com.google.android.material.R$styleable: int MenuItem_actionProviderClass -com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$attr: int layout_goneMarginEnd -com.tencent.bugly.proguard.am: int a -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -wangdaye.com.geometricweather.R$attr: int isPreferenceVisible -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$attr: int dialogLayout -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder pingInterval(java.time.Duration) -okhttp3.ConnectionPool: void evictAll() -com.google.android.material.R$integer: int bottom_sheet_slide_duration -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: float getDensity(float) -android.didikee.donate.R$styleable: int AlertDialog_buttonPanelSideLayout -james.adaptiveicon.R$style: int TextAppearance_AppCompat -james.adaptiveicon.R$styleable: int[] FontFamilyFont -com.xw.repo.bubbleseekbar.R$attr: int windowMinWidthMajor -androidx.viewpager2.R$dimen: int compat_button_inset_horizontal_material -android.didikee.donate.R$drawable: int abc_edit_text_material -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_CompactMenu -retrofit2.RequestBuilder: java.lang.String PATH_SEGMENT_ALWAYS_ENCODE_SET -cyanogenmod.providers.CMSettings$System: java.lang.String ASSIST_WAKE_SCREEN -androidx.lifecycle.LiveData$1: androidx.lifecycle.LiveData this$0 -wangdaye.com.geometricweather.R$id: int SHOW_ALL -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object getKey(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int KeyPosition_drawPath -james.adaptiveicon.R$styleable: int AppCompatTextView_textLocale -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog -wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_alpha -androidx.lifecycle.SavedStateHandle$1: android.os.Bundle saveState() -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_night_2 -wangdaye.com.geometricweather.R$string: int ragweed -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_63 -com.turingtechnologies.materialscrollbar.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$color: int mtrl_btn_stroke_color_selector -androidx.appcompat.R$styleable: int GradientColor_android_tileMode -retrofit2.OkHttpCall: retrofit2.Converter responseConverter -okio.RealBufferedSource: java.lang.String readUtf8LineStrict() -io.reactivex.Observable: io.reactivex.Observable window(long,long) -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_menu -okhttp3.FormBody$Builder: okhttp3.FormBody$Builder add(java.lang.String,java.lang.String) -com.jaredrummler.android.colorpicker.R$bool: int abc_action_bar_embed_tabs -james.adaptiveicon.R$attr: int arrowHeadLength -androidx.constraintlayout.widget.R$attr: int textAppearancePopupMenuHeader -com.amap.api.fence.PoiItem: void setLatitude(double) -androidx.constraintlayout.widget.R$dimen: int notification_small_icon_background_padding -androidx.constraintlayout.widget.R$dimen: int abc_seekbar_track_background_height_material -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.functions.Function mapper -com.google.android.material.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_height_material -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMargins -wangdaye.com.geometricweather.R$color: int foreground_material_light -androidx.appcompat.R$drawable: int abc_seekbar_thumb_material -cyanogenmod.hardware.CMHardwareManager: android.content.Context mContext -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean isEmpty() -retrofit2.Utils$WildcardTypeImpl: Utils$WildcardTypeImpl(java.lang.reflect.Type[],java.lang.reflect.Type[]) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_CBC_SHA -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float Lead -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_visible -androidx.swiperefreshlayout.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Prefix -okio.Buffer: boolean rangeEquals(long,okio.ByteString,int,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String getTo() -androidx.drawerlayout.R$id: int action_image -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: long endValidityTime -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu -com.google.android.material.R$styleable: int Layout_layout_constrainedWidth -com.google.android.material.R$styleable: int[] Chip -androidx.constraintlayout.widget.R$color: int accent_material_dark -androidx.constraintlayout.widget.R$styleable: int[] Layout -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node header -okhttp3.internal.http2.PushObserver: boolean onHeaders(int,java.util.List,boolean) -james.adaptiveicon.R$styleable: int RecycleListView_paddingBottomNoButtons -androidx.lifecycle.SavedStateHandle: androidx.lifecycle.SavedStateHandle createHandle(android.os.Bundle,android.os.Bundle) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPublishDate(java.util.Date) -wangdaye.com.geometricweather.R$drawable: int design_bottom_navigation_item_background -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitationDuration -androidx.vectordrawable.animated.R$dimen: R$dimen() -wangdaye.com.geometricweather.R$color: int colorTextAlert -com.google.android.material.floatingactionbutton.FloatingActionButton: void setRippleColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_icon -androidx.appcompat.R$string: int abc_menu_shift_shortcut_label -cyanogenmod.app.Profile$ExpandedDesktopMode: int ENABLE -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean mShouldShow -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_AM_PM -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void drain() -com.google.android.material.R$styleable: int[] AppCompatSeekBar -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List ganmao -androidx.coordinatorlayout.R$id: int tag_screen_reader_focusable -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconTintMode -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_visible -okio.Buffer: java.io.OutputStream outputStream() -retrofit2.adapter.rxjava2.RxJava2CallAdapter -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_visible -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String NAME_EQ_PLACEHOLDER -android.didikee.donate.R$styleable: int Toolbar_title -com.jaredrummler.android.colorpicker.R$attr: int cpv_alphaChannelText -com.google.android.gms.common.data.BitmapTeleporter -androidx.appcompat.R$attr: int spinnerStyle -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getRealFeelShaderTemperature() -androidx.constraintlayout.widget.R$id: int action_bar_root -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a: java.util.Map d -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabBarStyle -com.turingtechnologies.materialscrollbar.R$color: int ripple_material_dark -com.google.android.material.R$styleable: int Constraint_android_rotation -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_minWidth -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean -com.google.android.material.R$styleable: int Badge_number -androidx.hilt.work.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$attr: int bsb_show_section_mark -androidx.constraintlayout.widget.R$id: int dialog_button -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_min -androidx.preference.R$dimen: int disabled_alpha_material_dark -com.amap.api.fence.GeoFence: void setMaxDis2Center(float) -com.google.android.material.R$layout: int select_dialog_singlechoice_material -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void innerSuccess(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver,java.lang.Object) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object readKey(android.database.Cursor,int) -com.google.android.material.progressindicator.ProgressIndicator: void setIndeterminateDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$attr: int buttonGravity -androidx.viewpager.R$color: R$color() -wangdaye.com.geometricweather.R$id: int item_alert_title -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() -com.google.android.material.R$dimen: int abc_action_button_min_width_material -com.google.android.material.R$styleable: int RecycleListView_paddingTopNoTitle -wangdaye.com.geometricweather.R$string: int password_toggle_content_description -okhttp3.Headers: java.util.Set names() -com.google.android.material.snackbar.SnackbarContentLayout -com.google.android.material.appbar.AppBarLayout: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() -com.google.android.material.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.R$string: int forecast -com.jaredrummler.android.colorpicker.R$color: int foreground_material_light -androidx.lifecycle.ServiceLifecycleDispatcher: ServiceLifecycleDispatcher(androidx.lifecycle.LifecycleOwner) -android.didikee.donate.R$attr: int collapseContentDescription -okhttp3.internal.http2.Header: okio.ByteString RESPONSE_STATUS -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function) -okhttp3.internal.platform.Platform: void log(int,java.lang.String,java.lang.Throwable) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_SHOW_BATTERY_PERCENT_VALIDATOR -com.turingtechnologies.materialscrollbar.R$attr: int labelVisibilityMode -okio.AsyncTimeout$2: long read(okio.Buffer,long) -androidx.coordinatorlayout.R$dimen: int notification_big_circle_margin -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogCornerRadius -androidx.viewpager2.R$id: int accessibility_custom_action_30 -com.turingtechnologies.materialscrollbar.R$style: int Platform_AppCompat_Light -okhttp3.internal.platform.Jdk9Platform: java.lang.reflect.Method getProtocolMethod -com.tencent.bugly.a: java.lang.String version -androidx.lifecycle.ProcessLifecycleOwner$2: void onStart() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitationProbability -com.xw.repo.bubbleseekbar.R$id: int titleDividerNoCustom -okio.GzipSink: okio.BufferedSink sink -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBaseline_creator -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver(io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver) -wangdaye.com.geometricweather.R$layout: int cpv_color_item_circle -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void run() -androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentStyle -com.google.android.gms.common.api.AvailabilityException -androidx.preference.R$drawable: int notification_bg_normal_pressed -androidx.appcompat.R$color: int ripple_material_dark -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_ttcIndex -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: KeyguardExternalViewProviderService$Provider$ProviderImpl$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragDirection -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getTotalPrecipitation() -androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -androidx.appcompat.widget.LinearLayoutCompat: void setDividerPadding(int) -com.google.android.material.R$id: int smallLabel -wangdaye.com.geometricweather.R$attr: int cornerFamilyBottomRight -android.didikee.donate.R$color: int primary_text_disabled_material_dark -com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents -androidx.lifecycle.extensions.R$integer: R$integer() -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressCircleDiameter() -android.didikee.donate.R$layout: int abc_list_menu_item_icon -wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_gitHub -okhttp3.internal.ws.WebSocketReader: okio.Buffer$UnsafeCursor maskCursor -androidx.lifecycle.LiveData$AlwaysActiveObserver: androidx.lifecycle.LiveData this$0 -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerY -okhttp3.OkHttpClient: okhttp3.WebSocket newWebSocket(okhttp3.Request,okhttp3.WebSocketListener) -androidx.constraintlayout.widget.R$attr: int transitionEasing -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_background_overlay_color_alpha -com.jaredrummler.android.colorpicker.R$attr: int coordinatorLayoutStyle -com.google.android.material.R$id: int accessibility_custom_action_0 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setSunRise(java.lang.String) -com.amap.api.fence.GeoFenceClient: void pauseGeoFence() -com.jaredrummler.android.colorpicker.R$attr: int queryHint -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Colored -com.amap.api.location.AMapLocation: java.lang.String k -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric() -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_2 -android.didikee.donate.R$styleable: int AppCompatTheme_buttonStyle -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadClose(int,java.lang.String) -com.google.android.material.R$styleable: int ProgressIndicator_indicatorType -okhttp3.internal.http2.Http2Stream$StreamTimeout: Http2Stream$StreamTimeout(okhttp3.internal.http2.Http2Stream) -com.google.android.material.slider.RangeSlider -com.google.android.material.timepicker.TimeModel: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$styleable: int ConstraintSet_android_pivotX -wangdaye.com.geometricweather.R$id: int dialog_background_location_container -com.tencent.bugly.proguard.v: long r -wangdaye.com.geometricweather.R$string: int aqi_2 -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getSerialNumber() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowMinWidthMinor -androidx.preference.R$style: int Theme_AppCompat_CompactMenu -okhttp3.CacheControl: boolean isPublic() -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_2 -androidx.lifecycle.extensions.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.R$styleable: int CollapsingToolbarLayout_toolbarId -com.turingtechnologies.materialscrollbar.R$id: int design_navigation_view -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type[] values() -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context) -com.tencent.bugly.crashreport.CrashReport: void testANRCrash() -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_to_on_mtrl_000 -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: SinglePostCompleteSubscriber(org.reactivestreams.Subscriber) -androidx.customview.R$id: int async -androidx.appcompat.R$styleable: int StateListDrawable_android_dither -androidx.preference.R$attr: int lastBaselineToBottomHeight -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -com.xw.repo.bubbleseekbar.R$attr: int background -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_8 -okhttp3.internal.http2.Http2Stream$FramingSource: okio.Timeout timeout() -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onError(java.lang.Throwable) -com.google.android.material.R$color: int design_dark_default_color_secondary_variant -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setPubTime(java.lang.String) -com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -okhttp3.internal.http2.Http2Reader: void readConnectionPreface(okhttp3.internal.http2.Http2Reader$Handler) -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.preference.R$attr: int orderingFromXml -com.bumptech.glide.R$styleable: int GradientColor_android_tileMode -androidx.appcompat.R$attr: int switchPadding -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_attributeName -okio.DeflaterSink: DeflaterSink(okio.Sink,java.util.zip.Deflater) -wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_light -androidx.preference.R$attr: int actionBarTabTextStyle -com.google.android.material.R$styleable: int ActionBar_contentInsetRight -com.tencent.bugly.crashreport.biz.b: boolean b -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_1 -androidx.appcompat.R$styleable: int MenuView_android_verticalDivider -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: AccuDailyResult$DailyForecasts$Night$TotalLiquid() -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode[] values() -com.google.android.material.R$attr: int path_percent -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$attr: int titleMargin -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_summaryOn -com.google.android.material.R$styleable: int ProgressIndicator_indicatorColors -cyanogenmod.hardware.ICMHardwareService: java.lang.String getLtoSource() -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: void slideLockscreenIn() -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.R$drawable: int notif_temp_112 -james.adaptiveicon.R$style: int Widget_AppCompat_Spinner -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_58 -com.google.android.material.R$color: int abc_search_url_text -okhttp3.WebSocket: okhttp3.Request request() -okio.BufferedSink: okio.BufferedSink emit() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -com.google.android.material.R$attr: int tabBackground -com.google.android.material.R$id: int notification_background -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_summaryOff -wangdaye.com.geometricweather.R$attr: int bsb_thumb_radius_on_dragging -androidx.constraintlayout.widget.R$attr: int preserveIconSpacing -james.adaptiveicon.R$string: R$string() -androidx.lifecycle.ProcessLifecycleOwner: long TIMEOUT_MS -com.tencent.bugly.a: java.lang.String versionKey -androidx.lifecycle.ProcessLifecycleOwner$3$1: androidx.lifecycle.ProcessLifecycleOwner$3 this$1 -androidx.lifecycle.LiveDataReactiveStreams: LiveDataReactiveStreams() -wangdaye.com.geometricweather.R$styleable: int NavigationView_headerLayout -io.reactivex.internal.subscribers.StrictSubscriber -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem -android.didikee.donate.R$styleable: int CompoundButton_buttonTint -com.turingtechnologies.materialscrollbar.R$color: R$color() -okhttp3.Interceptor -androidx.constraintlayout.widget.R$id: int startVertical -androidx.customview.R$layout: int notification_template_part_time -com.tencent.bugly.proguard.j: byte[] b() -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature -cyanogenmod.app.CustomTileListenerService: java.lang.String access$200(cyanogenmod.app.CustomTileListenerService) -androidx.constraintlayout.widget.R$styleable: int Constraint_android_scaleX -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer treeIndex -wangdaye.com.geometricweather.common.basic.models.weather.History: int getNighttimeTemperature() -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_space_shortcut_label -wangdaye.com.geometricweather.main.Hilt_MainActivity: Hilt_MainActivity() -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_AutoCompleteTextView -androidx.viewpager2.R$id: int item_touch_helper_previous_elevation -androidx.transition.R$id: int title -com.google.android.material.R$styleable: int[] ExtendedFloatingActionButton -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -cyanogenmod.app.Profile$LockMode -okhttp3.internal.cache2.Relay: void writeMetadata(long) -androidx.appcompat.R$styleable: int AppCompatTheme_spinnerStyle -wangdaye.com.geometricweather.R$id: int wrap_content -androidx.vectordrawable.R$attr: int fontProviderCerts -okhttp3.ConnectionSpec$Builder: java.lang.String[] cipherSuites -com.google.android.material.R$styleable: int OnSwipe_touchAnchorId -okio.Timeout$1 -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarButtonStyle -com.google.android.material.R$color: int mtrl_bottom_nav_colored_ripple_color -com.tencent.bugly.proguard.ae: java.lang.String a -wangdaye.com.geometricweather.R$dimen: int hint_pressed_alpha_material_light -cyanogenmod.hardware.ICMHardwareService: boolean set(int,boolean) -androidx.legacy.coreutils.R$dimen: int notification_right_icon_size -okhttp3.internal.http1.Http1Codec: okio.Source newUnknownLengthSource() -androidx.constraintlayout.widget.R$styleable: int ActionBar_homeAsUpIndicator -com.xw.repo.bubbleseekbar.R$id: int decor_content_parent -okio.Pipe: boolean sourceClosed -okio.RealBufferedSource: long indexOf(byte,long,long) -cyanogenmod.externalviews.KeyguardExternalView: boolean access$802(cyanogenmod.externalviews.KeyguardExternalView,boolean) -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onError(java.lang.Throwable) -cyanogenmod.app.Profile: boolean mDirty -androidx.appcompat.R$styleable: int AppCompatTheme_activityChooserViewStyle -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerValue(boolean,java.lang.Object) -androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_toLeftOf -com.google.gson.FieldNamingPolicy$6 -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: BaiduIPLocationResult$ContentBean$AddressDetailBean() -okio.Pipe$PipeSource: Pipe$PipeSource(okio.Pipe) -com.google.android.material.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -com.google.android.material.R$attr: int actionModeCloseDrawable -com.tencent.bugly.proguard.i: int a(com.tencent.bugly.proguard.i$a,java.nio.ByteBuffer) -wangdaye.com.geometricweather.R$drawable: int notif_temp_28 -com.tencent.bugly.crashreport.common.info.a: android.content.Context F -james.adaptiveicon.R$styleable: int Toolbar_titleTextAppearance -okhttp3.Cache: void flush() -com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context,android.util.AttributeSet) -okhttp3.MultipartBody: long contentLength -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getThunderstormPrecipitationProbability() -com.google.android.material.R$color: int material_on_background_disabled -androidx.appcompat.R$styleable: int Toolbar_contentInsetStart -retrofit2.Retrofit: okhttp3.HttpUrl baseUrl -com.turingtechnologies.materialscrollbar.R$string: int path_password_eye_mask_strike_through -wangdaye.com.geometricweather.R$styleable: int Transform_android_scaleY -androidx.constraintlayout.widget.R$layout: int abc_dialog_title_material -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_ActionBar -com.google.android.material.bottomappbar.BottomAppBar: void setBackgroundTint(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$color: int abc_background_cache_hint_selector_material_dark -com.tencent.bugly.proguard.ah: ah() -wangdaye.com.geometricweather.R$styleable: int FlowLayout_itemSpacing -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean address_detail -com.xw.repo.bubbleseekbar.R$styleable: int[] DrawerArrowToggle -com.tencent.bugly.crashreport.crash.anr.b: java.lang.String g -com.google.android.material.textfield.TextInputLayout: void setSuffixTextColor(android.content.res.ColorStateList) -com.jaredrummler.android.colorpicker.R$attr: int cpv_dialogType -com.tencent.bugly.crashreport.common.info.PlugInBean -androidx.versionedparcelable.ParcelImpl -com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean k -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: CaiYunMainlyResult$AlertsBean() -james.adaptiveicon.R$style: int Widget_AppCompat_Light_SearchView -androidx.recyclerview.R$drawable: R$drawable() -androidx.work.R$id: int notification_main_column_container -okhttp3.Cache: okhttp3.Response get(okhttp3.Request) -wangdaye.com.geometricweather.R$drawable: int shortcuts_thunderstorm -com.tencent.bugly.crashreport.crash.anr.b: void b(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPubTime(java.lang.String) -com.google.android.material.R$styleable: int TextAppearance_fontVariationSettings -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Spinner_Underlined -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver -com.google.android.material.R$styleable: int SwitchCompat_track -androidx.constraintlayout.widget.R$attr: int paddingEnd -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.os.Bundle getOptions() -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_progress -com.google.android.material.R$attr: int cornerFamilyTopRight -com.google.android.material.R$styleable: int Constraint_android_layout_marginBottom -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextColor -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: ObservableTakeLast$TakeLastObserver(io.reactivex.Observer,int) -com.google.android.material.R$styleable: int TextAppearance_android_textColorHint -android.didikee.donate.R$id: int text -cyanogenmod.weather.ICMWeatherManager$Stub: cyanogenmod.weather.ICMWeatherManager asInterface(android.os.IBinder) -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -wangdaye.com.geometricweather.R$styleable: int[] LiveLockScreen -okhttp3.Dispatcher: java.util.Deque runningAsyncCalls -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX wind -james.adaptiveicon.R$attr: int actionModeSelectAllDrawable -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$attr: int windowFixedWidthMajor -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetStart -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer realFeelTemperature -wangdaye.com.geometricweather.R$id: int ifRoom -com.autonavi.aps.amapapi.model.AMapLocationServer -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: ExternalViewProviderService$Provider$ProviderImpl$3(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -com.amap.api.fence.GeoFence: int getType() -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end -com.google.android.material.R$color: int mtrl_btn_text_color_selector -com.google.android.material.R$attr: int autoSizeMaxTextSize -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: java.lang.Object invoke(java.lang.Object) -androidx.appcompat.R$anim: int abc_popup_enter -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: int sourceColor -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Info -androidx.constraintlayout.widget.R$attr: int listPreferredItemHeightSmall -androidx.preference.R$attr: int alertDialogTheme -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_track -okhttp3.OkHttpClient$Builder: java.util.List interceptors -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowColor -com.tencent.bugly.proguard.n: java.util.Map b(com.tencent.bugly.proguard.n) -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_motionTarget -androidx.constraintlayout.helper.widget.Layer: void setScaleY(float) -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: java.lang.Object value -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_18 -com.google.android.material.navigation.NavigationView: void setNavigationItemSelectedListener(com.google.android.material.navigation.NavigationView$OnNavigationItemSelectedListener) -com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabTextColors() -com.bumptech.glide.R$drawable: int notification_bg_low_pressed -okhttp3.internal.proxy.NullProxySelector: java.util.List select(java.net.URI) -cyanogenmod.weatherservice.IWeatherProviderService$Stub: java.lang.String DESCRIPTOR -androidx.loader.R$styleable: int FontFamilyFont_fontStyle -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: ObservableDoFinally$DoFinallyObserver(io.reactivex.Observer,io.reactivex.functions.Action) -androidx.lifecycle.SavedStateViewModelFactory: SavedStateViewModelFactory(android.app.Application,androidx.savedstate.SavedStateRegistryOwner,android.os.Bundle) -androidx.appcompat.R$attr: int contentInsetRight -androidx.core.R$styleable: int ColorStateListItem_android_color -com.google.android.material.R$styleable: int NavigationView_menu -androidx.preference.R$attr: int fontProviderAuthority -com.google.android.material.R$styleable: int ViewBackgroundHelper_android_background -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.util.List Intervals -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_normalContainer -com.amap.api.location.AMapLocation: int getLocationType() -com.google.android.material.R$dimen: int abc_text_size_display_2_material -cyanogenmod.app.IPartnerInterface: java.lang.String getCurrentHotwordPackageName() -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationZ -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -okhttp3.HttpUrl: java.lang.String query() -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder callFactory(okhttp3.Call$Factory) -wangdaye.com.geometricweather.R$string: int maxi_temp -io.reactivex.internal.util.VolatileSizeArrayList: void clear() -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit MMHG -com.google.android.material.R$styleable: int[] AlertDialog -androidx.customview.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.R$id: int grassValue -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: CNWeatherResult$Realtime$Weather() -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoDownloadInterval -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String description -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: void setServiceRequestState(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.ServiceRequestResult,int) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_track_size -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_text_color -wangdaye.com.geometricweather.R$string: int feedback_select_location_provider -wangdaye.com.geometricweather.R$color: int lightPrimary_1 -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox -wangdaye.com.geometricweather.R$layout: int cpv_preference_circle -androidx.constraintlayout.utils.widget.ImageFilterButton: float getRoundPercent() -wangdaye.com.geometricweather.R$color: int abc_background_cache_hint_selector_material_light -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark_normal_background -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_elevation -androidx.swiperefreshlayout.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.common.basic.models.weather.Base: long getPublishTime() -com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context) -wangdaye.com.geometricweather.settings.dialogs.WechatDonateDialog -com.google.android.material.R$layout: int notification_action -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar -cyanogenmod.weather.ICMWeatherManager$Stub: android.os.IBinder asBinder() -com.google.android.material.R$styleable: int KeyAttribute_framePosition -com.google.android.material.slider.Slider: int getThumbRadius() -wangdaye.com.geometricweather.R$drawable: int ic_google_play -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setStatus(int) -wangdaye.com.geometricweather.R$attr: int layout_goneMarginRight -okio.ForwardingSource: java.lang.String toString() -com.google.android.material.button.MaterialButtonToggleGroup -com.amap.api.location.AMapLocationClientOption: long c -james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMarkTintMode -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge -androidx.appcompat.R$dimen: int hint_alpha_material_dark -com.google.android.material.R$styleable: int AppCompatTheme_alertDialogStyle -com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorType() -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason INITIALIZE -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_requestThemeChangeUpdates -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorColor -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -com.google.android.material.internal.StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException: StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException(java.lang.Throwable) -com.google.android.material.R$attr: int layout_goneMarginStart -com.google.android.material.R$attr: int thumbTintMode -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: java.lang.String[] getPermissions() -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense -androidx.appcompat.R$color: int error_color_material_light -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_CheckBox -com.tencent.bugly.proguard.f: byte[] e -cyanogenmod.util.ColorUtils: int[] SOLID_COLORS -james.adaptiveicon.R$styleable: int AppCompatTheme_controlBackground -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Empty -com.google.android.material.textfield.TextInputLayout: void setErrorIconVisible(boolean) -com.google.android.material.textfield.TextInputLayout: void addOnEndIconChangedListener(com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener) -androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_alpha -retrofit2.KotlinExtensions$await$2$2: kotlinx.coroutines.CancellableContinuation $continuation -wangdaye.com.geometricweather.R$color: int design_box_stroke_color -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_anchor -androidx.constraintlayout.widget.R$styleable: int Constraint_android_maxWidth -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_homeAsUpIndicator -androidx.core.R$id: int right_icon -androidx.recyclerview.R$attr: int spanCount -james.adaptiveicon.R$attr: int textAppearanceListItemSmall -androidx.appcompat.widget.Toolbar: int getCurrentContentInsetEnd() -james.adaptiveicon.R$attr: int windowActionBarOverlay -androidx.appcompat.R$attr: int progressBarStyle -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_id -retrofit2.ParameterHandler$Headers -androidx.appcompat.R$styleable: int TextAppearance_android_shadowRadius -com.google.android.material.R$string: int path_password_strike_through -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroups -androidx.appcompat.R$id: int icon -androidx.appcompat.R$styleable: int AppCompatTheme_colorBackgroundFloating -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_tileMode -androidx.appcompat.R$style: int Widget_AppCompat_DropDownItem_Spinner -com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode LAST_ELEMENT -androidx.constraintlayout.widget.R$color: int abc_btn_colored_text_material -wangdaye.com.geometricweather.R$id: int item_weather_daily_title_title -wangdaye.com.geometricweather.R$drawable: int weather_thunder -com.google.android.material.R$anim: int abc_tooltip_exit -wangdaye.com.geometricweather.R$drawable: int notif_temp_47 -cyanogenmod.app.PartnerInterface: void setMobileDataEnabled(boolean) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxBackgroundMode -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getTotalPrecipitationProbability() -wangdaye.com.geometricweather.R$bool: int workmanager_test_configuration -com.bumptech.glide.integration.okhttp.R$id: int blocking -wangdaye.com.geometricweather.R$styleable: int NavigationView_elevation -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float SulfurDioxide -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.Query queryRawCreate(java.lang.String,java.lang.Object[]) -androidx.appcompat.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -com.turingtechnologies.materialscrollbar.R$id: int async -androidx.vectordrawable.animated.R$style: int Widget_Compat_NotificationActionText -com.xw.repo.bubbleseekbar.R$id: int parentPanel -androidx.preference.R$dimen: int preference_seekbar_padding_horizontal -wangdaye.com.geometricweather.R$layout: int design_navigation_item_header -com.jaredrummler.android.colorpicker.R$attr: int spinBars -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onSearchRequested() -com.google.android.material.R$attr: int layout_constraintHorizontal_chainStyle -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display2 -com.jaredrummler.android.colorpicker.R$attr: int commitIcon -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy valueOf(java.lang.String) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Title -com.tencent.bugly.BuglyStrategy: java.lang.String getDeviceID() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void dispose() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.appcompat.widget.Toolbar: int getContentInsetStartWithNavigation() -cyanogenmod.weather.WeatherInfo$Builder: double mTodaysLowTemp -androidx.hilt.lifecycle.R$drawable: int notification_template_icon_bg -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_cursor_material -cyanogenmod.app.LiveLockScreenManager: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onError(java.lang.Throwable) -com.google.android.material.R$attr: int mock_labelBackgroundColor -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvLevel(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat -androidx.swiperefreshlayout.R$id: int right_side -wangdaye.com.geometricweather.R$id: int filterBtn -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -com.jaredrummler.android.colorpicker.R$id: int spinner -com.google.android.material.R$string: int material_clock_display_divider -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode getInstance(java.lang.String) -androidx.preference.R$attr: int tooltipText -androidx.viewpager.R$dimen: int notification_top_pad_large_text -com.turingtechnologies.materialscrollbar.R$attr: int popupTheme -okio.Buffer -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean daylight -wangdaye.com.geometricweather.R$drawable: int material_ic_menu_arrow_down_black_24dp -com.turingtechnologies.materialscrollbar.R$dimen: int abc_alert_dialog_button_bar_height -com.google.android.material.R$attr: int tickVisible -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.lang.String getRiseTime(android.content.Context) -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: ILiveLockScreenManager$Stub$Proxy(android.os.IBinder) -okhttp3.internal.Util: boolean discard(okio.Source,int,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit -com.jaredrummler.android.colorpicker.R$attr: int actionOverflowMenuStyle -wangdaye.com.geometricweather.R$attr: int indeterminateProgressStyle -androidx.activity.R$id: int title -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String primary -androidx.appcompat.widget.ActivityChooserView: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextColor(android.content.res.ColorStateList) -james.adaptiveicon.R$style: int Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text -james.adaptiveicon.R$styleable: int AppCompatTheme_actionMenuTextColor -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: java.lang.Object[] latest -androidx.fragment.app.FragmentTabHost$SavedState -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_ellipsize -cyanogenmod.platform.R: R() -androidx.preference.R$attr: int actionModeFindDrawable -okhttp3.MultipartBody: okio.ByteString boundary -android.didikee.donate.R$layout: int abc_screen_simple_overlay_action_mode -com.jaredrummler.android.colorpicker.R$anim: int abc_slide_in_bottom -wangdaye.com.geometricweather.R$attr: int transitionEasing -james.adaptiveicon.R$attr: int actionBarTabBarStyle -androidx.swiperefreshlayout.R$id: int icon_group -com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_disable_only_material_light -com.tencent.bugly.proguard.aa -okhttp3.Protocol: okhttp3.Protocol H2_PRIOR_KNOWLEDGE -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean precipitationProbability -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSearchResultSubtitle -okio.BufferedSource: java.lang.String readUtf8(long) -androidx.preference.R$drawable: int abc_list_pressed_holo_light -com.google.android.material.card.MaterialCardView: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.R$drawable: int material_ic_calendar_black_24dp -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao getChineseCityEntityDao() -androidx.appcompat.R$color: int dim_foreground_material_dark -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void cancel() -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getPlaceholderTextColor() -com.google.android.material.R$id: int start -androidx.swiperefreshlayout.R$dimen: int notification_small_icon_background_padding -androidx.constraintlayout.widget.R$id: int bounce -androidx.core.R$dimen: int notification_small_icon_background_padding -okhttp3.internal.http2.Hpack$Writer -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void drain() -androidx.constraintlayout.widget.R$styleable: int Spinner_android_prompt -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge -androidx.appcompat.R$attr: int searchHintIcon -androidx.work.impl.background.systemalarm.RescheduleReceiver: RescheduleReceiver() -com.google.android.material.R$style: int Widget_Design_CollapsingToolbar -androidx.viewpager.R$styleable: int GradientColorItem_android_color -com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_android_alpha -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -android.didikee.donate.R$drawable: int abc_text_select_handle_middle_mtrl_light -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit valueOf(java.lang.String) -androidx.constraintlayout.widget.R$anim: int abc_popup_exit -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getCounterOverflowDescription() -com.google.android.material.R$styleable: int StateSet_defaultState -cyanogenmod.util.ColorUtils: float[] temperatureToRGB(int) -cyanogenmod.providers.CMSettings$Secure -wangdaye.com.geometricweather.R$attr: int textColorSearchUrl -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -com.tencent.bugly.crashreport.biz.UserInfoBean: long k -androidx.preference.R$style: int TextAppearance_AppCompat_Body1 -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_5 -cyanogenmod.providers.CMSettings$Secure$2: boolean validate(java.lang.String) -com.google.android.material.R$styleable: int TabLayout_tabMaxWidth -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge -com.bumptech.glide.R$styleable: int FontFamilyFont_fontVariationSettings -android.didikee.donate.R$id: int multiply -wangdaye.com.geometricweather.R$styleable: int Constraint_motionStagger -androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPopupWindowStyle -androidx.lifecycle.MethodCallsLogger: boolean approveCall(java.lang.String,int) -androidx.constraintlayout.motion.widget.MotionLayout: void setInteractionEnabled(boolean) -androidx.appcompat.R$style: int TextAppearance_AppCompat_SearchResult_Title -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_WARNING_INDEX -com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String a(android.content.Context) -okhttp3.internal.http2.Http2Connection$4: void execute() -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableRightCompat -wangdaye.com.geometricweather.R$string: int day -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_extendMotionSpec -cyanogenmod.app.Profile$ProfileTrigger: int access$202(cyanogenmod.app.Profile$ProfileTrigger,int) -com.google.android.material.R$styleable: int BottomNavigationView_itemRippleColor -com.google.gson.stream.JsonReader: int PEEKED_DOUBLE_QUOTED_NAME -com.google.android.material.progressindicator.ProgressIndicator: int getCircularRadius() -com.tencent.bugly.proguard.y: java.lang.StringBuilder e -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.CMWeatherManager sInstance -james.adaptiveicon.R$id: int src_atop -com.google.android.material.R$id: int mtrl_picker_text_input_date -androidx.preference.MultiSelectListPreference: MultiSelectListPreference(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context) -com.amap.api.location.LocationManagerBase: void stopLocation() -com.google.android.material.slider.Slider: float getValue() -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_android_elevation -android.didikee.donate.R$drawable: int abc_text_select_handle_left_mtrl_dark -androidx.constraintlayout.widget.R$attr: int dragScale -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -james.adaptiveicon.R$id: int search_voice_btn -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder domain(java.lang.String) -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnClickUri(android.net.Uri) -wangdaye.com.geometricweather.R$attr: int text -com.google.android.material.R$styleable: int AppCompatTextView_autoSizeMinTextSize -cyanogenmod.externalviews.KeyguardExternalViewProviderService: void onCreate() -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dark -androidx.coordinatorlayout.R$style: int Widget_Compat_NotificationActionContainer -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_ttcIndex -com.tencent.bugly.crashreport.common.info.b: java.lang.String b(android.content.Context) -com.google.android.material.R$styleable: int[] BottomNavigationView -androidx.constraintlayout.widget.R$styleable: int SearchView_searchHintIcon -androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior: CoordinatorLayout$Behavior() -androidx.cardview.widget.CardView -androidx.lifecycle.extensions.R$color: int ripple_material_light -androidx.hilt.work.R$dimen: int notification_right_icon_size -okhttp3.internal.http2.Http2Writer: void flush() -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onNext(java.lang.Object) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.CompletableObserver downstream -com.google.android.material.R$styleable: int[] TextInputLayout -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_outline_box_expanded_padding -com.google.android.material.R$styleable: int[] Slider -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvDescription -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconSize -cyanogenmod.weather.RequestInfo: int access$602(cyanogenmod.weather.RequestInfo,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode AUTOMATIC -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeStepGranularity -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_title_divider_material -wangdaye.com.geometricweather.R$styleable: int StateListDrawableItem_android_drawable -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,int) -com.turingtechnologies.materialscrollbar.R$styleable: int[] PopupWindowBackgroundState -androidx.lifecycle.SavedStateHandle: java.lang.Object remove(java.lang.String) -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3 -io.reactivex.internal.operators.observable.ObserverResourceWrapper: java.util.concurrent.atomic.AtomicReference upstream -okhttp3.internal.http.HttpMethod: boolean redirectsWithBody(java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: java.lang.String icon -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onTimeout(long) -com.tencent.bugly.proguard.ai: java.util.ArrayList c -androidx.preference.R$styleable: int SwitchCompat_switchMinWidth -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe() -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: io.reactivex.ObservableEmitter serialize() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getEn_US() -com.google.android.material.appbar.HeaderBehavior: HeaderBehavior(android.content.Context,android.util.AttributeSet) -okio.ForwardingTimeout: void throwIfReached() -androidx.viewpager.R$layout: int notification_action -com.amap.api.fence.DistrictItem: java.lang.String a -androidx.appcompat.resources.R$attr: int fontProviderCerts -com.tencent.bugly.proguard.am: java.lang.String v -cyanogenmod.profiles.LockSettings: int describeContents() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_MENU_LONG_PRESS_ACTION_VALIDATOR -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getShortAbbreviation(android.content.Context) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.List value -com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getCurrentDrawable() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_THEME_MANAGER -androidx.appcompat.R$attr: int textAppearanceLargePopupMenu -com.google.android.material.R$styleable: int Slider_thumbRadius -androidx.appcompat.widget.ActionBarContainer: void setPrimaryBackground(android.graphics.drawable.Drawable) -com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: FloatingActionButton$BaseBehavior(android.content.Context,android.util.AttributeSet) -retrofit2.ParameterHandler$Headers: ParameterHandler$Headers(java.lang.reflect.Method,int) -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: int requestFusion(int) -androidx.appcompat.R$styleable: int ActionBar_progressBarStyle -android.didikee.donate.R$dimen: int notification_large_icon_width -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$color: int highlighted_text_material_dark -com.google.gson.stream.JsonReader: void endObject() -wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_dark -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemTextAppearanceActive() -james.adaptiveicon.R$bool: int abc_action_bar_embed_tabs -androidx.customview.R$dimen: int compat_notification_large_icon_max_height -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontStyle -androidx.preference.R$attr: int popupMenuStyle -wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_2_0_padding_bottom -cyanogenmod.externalviews.KeyguardExternalView$6: cyanogenmod.externalviews.KeyguardExternalView this$0 -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setVibratorIntensity -androidx.preference.R$id: int action_bar_root -com.xw.repo.bubbleseekbar.R$color: int abc_tint_btn_checkable -android.didikee.donate.R$styleable: int PopupWindow_android_popupBackground -wangdaye.com.geometricweather.R$string: int feedback_resident_location -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() -wangdaye.com.geometricweather.settings.dialogs.AnimatableIconDialog: AnimatableIconDialog() -androidx.viewpager.R$attr: int fontProviderPackage -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceTimedObserver parent -wangdaye.com.geometricweather.R$styleable: int NavigationView_android_fitsSystemWindows -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconCheckable -wangdaye.com.geometricweather.R$string: int settings_title_item_animation_switch -com.turingtechnologies.materialscrollbar.R$color: int secondary_text_disabled_material_light -com.google.android.material.R$styleable: int MaterialButton_rippleColor -androidx.vectordrawable.animated.R$dimen: int notification_right_icon_size -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_constraint_referenced_ids -james.adaptiveicon.R$dimen: int compat_button_inset_horizontal_material -androidx.appcompat.widget.AppCompatEditText: android.view.textclassifier.TextClassifier getTextClassifier() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginRight -cyanogenmod.themes.ThemeChangeRequest$Builder: long mWallpaperId -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Info -androidx.appcompat.R$dimen: int abc_dropdownitem_text_padding_left -com.google.android.material.stateful.ExtendableSavedState -androidx.lifecycle.Lifecycling: java.lang.reflect.Constructor generatedConstructor(java.lang.Class) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetRight -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_4_material -wangdaye.com.geometricweather.R$layout: int design_bottom_sheet_dialog -androidx.preference.R$style: int PreferenceThemeOverlay_v14_Material -com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Filter -android.didikee.donate.R$styleable: int MenuView_android_windowAnimationStyle -okhttp3.RealCall: void cancel() -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.Handler access$100(cyanogenmod.externalviews.KeyguardExternalViewProviderService) -wangdaye.com.geometricweather.R$styleable: int Chip_chipStrokeColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric -wangdaye.com.geometricweather.R$attr: int textAppearanceButton -androidx.appcompat.R$attr: int multiChoiceItemLayout -wangdaye.com.geometricweather.R$styleable: int CardView_cardPreventCornerOverlap -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality airQuality -androidx.drawerlayout.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.R$string: int default_location -james.adaptiveicon.R$attr: int fontStyle -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean setActiveProfileByName(java.lang.String) -androidx.appcompat.R$attr: int colorSwitchThumbNormal -com.google.android.material.R$id: int autoCompleteToEnd -androidx.cardview.widget.CardView: void setMaxCardElevation(float) -org.greenrobot.greendao.AbstractDao: java.util.List loadAllFromCursor(android.database.Cursor) -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.AlertEntity) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm25Desc() -wangdaye.com.geometricweather.R$style: int Base_CardView -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX() -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: java.util.concurrent.CompletableFuture future -io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator[] values() -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_text_size -cyanogenmod.themes.ThemeChangeRequest$Builder: java.util.Map mThemeComponents -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: int Degrees -androidx.loader.R$id: int tag_unhandled_key_listeners -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackInactiveTintList() -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -androidx.preference.R$dimen: int item_touch_helper_swipe_escape_velocity -wangdaye.com.geometricweather.R$drawable: int mtrl_ic_error -com.google.android.material.R$anim: int abc_popup_exit -okhttp3.CacheControl: int maxAgeSeconds -com.google.android.material.R$dimen: int mtrl_calendar_navigation_bottom_padding -androidx.core.R$color: int androidx_core_secondary_text_default_material_light -cyanogenmod.app.ICMStatusBarManager$Stub: android.os.IBinder asBinder() -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: okhttp3.internal.http2.Http2Stream val$newStream -com.google.android.gms.internal.location.zzl: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_30 -com.google.android.material.floatingactionbutton.FloatingActionButton: void setElevation(float) -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -androidx.hilt.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: int temperature -com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_Primary -com.jaredrummler.android.colorpicker.R$styleable: int GradientColorItem_android_offset -com.google.android.material.R$styleable: int ActionBar_subtitleTextStyle -com.google.android.material.R$layout: int notification_template_part_chronometer -okhttp3.internal.http.HttpDate: java.lang.String[] BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS -androidx.preference.PreferenceManager: void setOnNavigateToScreenListener(androidx.preference.PreferenceManager$OnNavigateToScreenListener) -androidx.constraintlayout.widget.R$id: int dragEnd -wangdaye.com.geometricweather.R$styleable: int TagView_unchecked_background_color -wangdaye.com.geometricweather.R$attr: int cpv_sliderColor -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView_Menu -james.adaptiveicon.R$attr: int buttonBarPositiveButtonStyle -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox -androidx.core.R$id: int async -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pm25 -io.reactivex.Observable: io.reactivex.Observable switchMapSingleDelayError(io.reactivex.functions.Function) -okhttp3.internal.http2.Http2Connection: long awaitPongsReceived -androidx.constraintlayout.widget.R$attr: int queryBackground -com.xw.repo.bubbleseekbar.R$string: int abc_activity_chooser_view_see_all -androidx.constraintlayout.motion.widget.MotionLayout: void setScene(androidx.constraintlayout.motion.widget.MotionScene) -com.turingtechnologies.materialscrollbar.R$id: int touch_outside -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: boolean val$showing -okio.SegmentedByteString: int indexOf(byte[],int) -android.didikee.donate.R$dimen: int abc_text_size_title_material_toolbar -com.google.android.material.R$dimen: int mtrl_slider_thumb_elevation -com.jaredrummler.android.colorpicker.R$attr: int buttonPanelSideLayout -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$layout: int abc_screen_simple_overlay_action_mode -com.jaredrummler.android.colorpicker.R$attr: int buttonGravity -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onNext(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_elevation -okhttp3.internal.connection.StreamAllocation: java.lang.String toString() -androidx.loader.app.LoaderManagerImpl$LoaderViewModel: LoaderManagerImpl$LoaderViewModel() -androidx.vectordrawable.animated.R$id: int notification_main_column_container -com.google.android.material.R$style: int AndroidThemeColorAccentYellow -com.jaredrummler.android.colorpicker.ColorPanelView -androidx.constraintlayout.widget.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -androidx.fragment.R$styleable: int[] FragmentContainerView -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer uvIndex -okio.RealBufferedSource: short readShort() -androidx.customview.R$id: int text2 -cyanogenmod.app.Profile -com.turingtechnologies.materialscrollbar.R$anim: int design_bottom_sheet_slide_out -james.adaptiveicon.R$styleable: int SearchView_commitIcon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String getUnit() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.legacy.coreutils.R$styleable: int GradientColor_android_type -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_weightSum -androidx.constraintlayout.widget.R$attr: int content -com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context) -com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_Tooltip -com.google.android.material.R$attr: int fabCustomSize -wangdaye.com.geometricweather.R$styleable: int[] PreferenceFragmentCompat -wangdaye.com.geometricweather.R$styleable: int[] AppBarLayoutStates -com.google.android.material.R$attr: int preserveIconSpacing -androidx.core.R$styleable: int FontFamilyFont_android_fontVariationSettings -io.reactivex.Observable: java.lang.Object blockingFirst() -androidx.viewpager2.R$drawable: int notification_icon_background -okhttp3.internal.http2.Http2Connection: void access$000(okhttp3.internal.http2.Http2Connection) -androidx.hilt.work.R$id: int accessibility_custom_action_23 -com.google.android.material.R$attr: int percentHeight -androidx.hilt.R$style -wangdaye.com.geometricweather.R$attr: int textAppearanceBody2 -wangdaye.com.geometricweather.R$id: int star_container -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTextHelper -androidx.recyclerview.R$dimen: int notification_action_icon_size -okhttp3.internal.http2.PushObserver: boolean onData(int,okio.BufferedSource,int,boolean) -com.jaredrummler.android.colorpicker.R$id: int home -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -okhttp3.internal.http.RealInterceptorChain: int connectTimeoutMillis() -com.google.android.material.R$styleable: int Constraint_flow_verticalBias -com.bumptech.glide.integration.okhttp.R$id: int normal -com.google.android.material.tabs.TabLayout: void setTabIconTintResource(int) -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -okhttp3.OkHttpClient$Builder: int callTimeout -okhttp3.internal.platform.Jdk9Platform: Jdk9Platform(java.lang.reflect.Method,java.lang.reflect.Method) -wangdaye.com.geometricweather.R$styleable: int[] KeyFramesVelocity -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_meta_shortcut_label -androidx.hilt.R$color: int notification_action_color_filter -androidx.appcompat.R$style: int Base_Widget_AppCompat_SeekBar -com.google.android.material.R$style: int Widget_Support_CoordinatorLayout -wangdaye.com.geometricweather.R$id: int notification_multi_city_1 -android.didikee.donate.R$styleable: int[] MenuGroup -androidx.cardview.R$styleable: int CardView_cardUseCompatPadding -cyanogenmod.app.CMContextConstants$Features: java.lang.String APP_SUGGEST -com.google.android.material.R$drawable: int abc_btn_radio_to_on_mtrl_000 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabTextStyle -androidx.viewpager2.R$dimen: R$dimen() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_icon_btn_padding_left -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_EditText -androidx.appcompat.widget.AppCompatButton: void setAutoSizeTextTypeWithDefaults(int) -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColorLink -wangdaye.com.geometricweather.R$drawable: int btn_radio_on_mtrl -cyanogenmod.externalviews.ExternalViewProperties: int getHeight() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void dispose() -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean timerRunning -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_transformPivotY -com.google.android.material.R$attr: int staggered -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTitle(java.lang.CharSequence) -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontStyle -com.amap.api.location.AMapLocation: java.lang.String getDistrict() -okhttp3.internal.cache2.FileOperator: void read(long,okio.Buffer,long) -okhttp3.ConnectionSpec -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: android.os.IBinder asBinder() -androidx.appcompat.R$attr: int seekBarStyle -com.google.android.material.chip.ChipGroup: void setSingleLine(boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMinWidth -androidx.preference.R$string: int abc_shareactionprovider_share_with -com.google.android.material.R$styleable: int TextInputLayout_counterTextAppearance -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getTempMax() -androidx.recyclerview.widget.StaggeredGridLayoutManager$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation -androidx.cardview.R$styleable: int CardView_cardMaxElevation -androidx.preference.R$interpolator: int fast_out_slow_in -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: void truncate() -androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_Switch -james.adaptiveicon.R$attr: int navigationMode -com.google.android.material.progressindicator.ProgressIndicator: int getCircularInset() -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.entities.DaoSession daoSession -wangdaye.com.geometricweather.R$id: int TOP_START -wangdaye.com.geometricweather.db.entities.AlertEntity: long alertId -okhttp3.MultipartBody: okhttp3.MediaType DIGEST -wangdaye.com.geometricweather.R$attr: int layout_constraintTop_toTopOf -com.google.android.material.R$styleable: int MotionTelltales_telltales_velocityMode -retrofit2.RequestBuilder: okhttp3.HttpUrl$Builder urlBuilder -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean isDisposed() -androidx.vectordrawable.R$styleable: int[] FontFamilyFont -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetRight -com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_checked_circle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: int UnitType -wangdaye.com.geometricweather.R$attr: int tabSelectedTextColor -android.didikee.donate.R$color: int abc_tint_default -okhttp3.internal.http2.Http2Connection$Builder: okio.BufferedSink sink -okhttp3.Response$Builder: Response$Builder() -com.xw.repo.bubbleseekbar.R$attr: int listDividerAlertDialog -james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -com.turingtechnologies.materialscrollbar.R$string: int mtrl_chip_close_icon_content_description -com.google.android.material.R$styleable: int TextInputLayout_errorContentDescription -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_36 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String level -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -com.google.android.material.R$styleable: int ConstraintSet_motionStagger -androidx.appcompat.widget.AppCompatRadioButton: android.content.res.ColorStateList getSupportBackgroundTintList() -com.amap.api.location.AMapLocationClientOption$1: java.lang.Object createFromParcel(android.os.Parcel) -okio.BufferedSource: short readShortLe() -androidx.constraintlayout.widget.R$string: int abc_searchview_description_voice -com.tencent.bugly.crashreport.CrashReport$WebViewInterface: java.lang.String getUrl() -okhttp3.CacheControl: int minFreshSeconds -androidx.preference.DropDownPreference -com.google.android.material.R$dimen: int mtrl_calendar_title_baseline_to_top -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: AccuDailyResult() -wangdaye.com.geometricweather.R$attr: int preferenceInformationStyle -androidx.constraintlayout.widget.R$dimen: int abc_text_size_body_2_material -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_enabled -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Long id -androidx.preference.R$styleable: int BackgroundStyle_selectableItemBackground -james.adaptiveicon.R$styleable: int MenuItem_iconTint -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type rawType -com.tencent.bugly.crashreport.biz.UserInfoBean: java.util.Map s -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarSplitStyle -wangdaye.com.geometricweather.R$string: int feedback_live_wallpaper_weather_kind -com.google.android.material.R$layout: int test_toolbar_elevation -james.adaptiveicon.R$styleable: int MenuView_android_itemBackground -cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo mWeatherInfo -androidx.transition.R$id: int transition_layout_save -cyanogenmod.externalviews.IExternalViewProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.R$color: int design_dark_default_color_surface -cyanogenmod.weatherservice.WeatherProviderService: void onRequestCancelled(cyanogenmod.weatherservice.ServiceRequest) -wangdaye.com.geometricweather.R$attr: int toolbarNavigationButtonStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_halo_radius -com.xw.repo.bubbleseekbar.R$attr: int bsb_second_track_size -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -com.tencent.bugly.crashreport.common.info.b: java.lang.String g(android.content.Context) -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Content -com.bumptech.glide.MemoryCategory: float multiplier -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.HourlyEntity) -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit getInstance(java.lang.String) -com.tencent.bugly.crashreport.CrashReport: void setHandleNativeCrashInJava(boolean) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void dispose() -androidx.constraintlayout.widget.R$drawable: int abc_list_divider_mtrl_alpha -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginEnd -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial Imperial -androidx.preference.R$style: int TextAppearance_Compat_Notification_Time -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: IAppSuggestManager$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode -android.didikee.donate.R$attr: int subMenuArrow -com.google.android.material.R$attr: int customIntegerValue -com.google.android.material.tabs.TabLayout: int getTabIndicatorGravity() -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getPressureText(android.content.Context,float) -androidx.appcompat.view.menu.ListMenuItemView: void setSubMenuArrowVisible(boolean) -androidx.viewpager.R$attr: int alpha -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -com.xw.repo.bubbleseekbar.R$style: int Platform_V21_AppCompat_Light -retrofit2.OkHttpCall$NoContentResponseBody: okhttp3.MediaType contentType() -androidx.customview.R$styleable: int FontFamilyFont_android_fontVariationSettings -james.adaptiveicon.R$styleable: int[] ActivityChooserView -androidx.constraintlayout.widget.R$styleable: int Constraint_android_minHeight -android.didikee.donate.R$dimen: int abc_dialog_min_width_major -okhttp3.internal.tls.OkHostnameVerifier: boolean verify(java.lang.String,javax.net.ssl.SSLSession) -wangdaye.com.geometricweather.R$string: int abc_action_menu_overflow_description -androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_small_material -com.google.android.material.datepicker.CompositeDateValidator: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_middle_mtrl_light -android.didikee.donate.R$attr: int actionBarItemBackground -com.google.android.material.R$attr: int tabRippleColor -androidx.cardview.widget.CardView: int getContentPaddingLeft() -androidx.appcompat.R$color: int secondary_text_disabled_material_dark -com.google.android.material.R$styleable: int[] ActionMode -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.lang.Throwable error -okhttp3.internal.tls.OkHostnameVerifier: java.util.List allSubjectAltNames(java.security.cert.X509Certificate) -io.reactivex.internal.disposables.CancellableDisposable: long serialVersionUID -com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusTopEnd() -com.bumptech.glide.integration.okhttp.R$styleable: int[] CoordinatorLayout -androidx.constraintlayout.widget.R$string: int abc_menu_shift_shortcut_label -com.google.android.material.R$attr: int chipIconEnabled -wangdaye.com.geometricweather.R$string: int key_clock_font -com.google.android.gms.location.ActivityTransitionResult -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_2 -okhttp3.logging.LoggingEventListener: void dnsStart(okhttp3.Call,java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: java.lang.String Localized -androidx.appcompat.R$color: int abc_tint_spinner -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type rawType -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display1 -androidx.appcompat.R$attr: int collapseContentDescription -androidx.customview.R$layout -com.tencent.bugly.crashreport.biz.a: android.content.Context a -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth -wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_day -com.google.android.material.R$attr: int snackbarStyle -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onTimeout(long) -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void drain() -okhttp3.MediaType: java.lang.String type() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: int status -cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mOnLongClick -okio.GzipSource: GzipSource(okio.Source) -com.google.android.material.R$styleable: int Variant_region_widthMoreThan -android.didikee.donate.R$id: int action_bar_activity_content -com.baidu.location.BDLocation: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_CheckedTextView -com.google.android.material.R$attr: int minHeight -com.tencent.bugly.proguard.ap: java.lang.String d -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.util.Date date -androidx.loader.R$color: int secondary_text_default_material_light -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -okhttp3.internal.http2.Hpack$Writer: void insertIntoDynamicTable(okhttp3.internal.http2.Header) -com.google.android.material.R$attr: int nestedScrollFlags -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: androidx.lifecycle.LifecycleRegistry mRegistry -com.jaredrummler.android.colorpicker.R$attr: int cpv_previewSize -com.turingtechnologies.materialscrollbar.R$id: int select_dialog_listview -retrofit2.RequestFactory: java.lang.String httpMethod -androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -com.turingtechnologies.materialscrollbar.R$id: int action_mode_bar -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_gapBetweenBars -androidx.coordinatorlayout.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.R$string: int settings_title_click_widget_to_refresh -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onNext(java.lang.Object) -com.google.android.material.R$layout: int design_navigation_menu_item -androidx.appcompat.R$attr: int hideOnContentScroll -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -com.google.android.material.R$styleable: int MenuGroup_android_menuCategory -androidx.appcompat.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void removeInner(io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) -retrofit2.Utils$GenericArrayTypeImpl: boolean equals(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$dimen: int cardview_default_elevation -com.xw.repo.bubbleseekbar.R$styleable: int[] ActivityChooserView -androidx.constraintlayout.widget.R$drawable: int notification_template_icon_bg -androidx.fragment.R$attr: int fontProviderFetchTimeout -retrofit2.RequestBuilder: okhttp3.RequestBody body -android.didikee.donate.R$styleable: int Spinner_android_prompt -androidx.core.R$dimen: int notification_big_circle_margin -com.google.android.material.R$style: int TextAppearance_AppCompat_Inverse -com.amap.api.fence.GeoFence: void setEnterTime(long) -androidx.preference.R$attr: int widgetLayout -com.google.android.material.R$styleable: int MenuItem_android_id -cyanogenmod.app.Profile$DozeMode -androidx.preference.R$attr: int colorControlNormal -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.lang.String type -okhttp3.internal.cache2.Relay: okio.Source newSource() -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_linearSeamless -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_5 -androidx.preference.R$anim: int abc_grow_fade_in_from_bottom -io.reactivex.Observable: io.reactivex.Observable concatArrayEager(io.reactivex.ObservableSource[]) -cyanogenmod.externalviews.IExternalViewProvider: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: java.lang.String Unit -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_surface -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -cyanogenmod.themes.ThemeManager$ThemeChangeListener -androidx.hilt.lifecycle.R$attr: int fontProviderQuery -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxBackgroundColor -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Body1 -com.google.android.material.R$styleable: int Spinner_popupTheme -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth -james.adaptiveicon.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -james.adaptiveicon.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -cyanogenmod.app.CustomTileListenerService -androidx.dynamicanimation.R$dimen: int compat_notification_large_icon_max_width -okio.SegmentPool: SegmentPool() -cyanogenmod.externalviews.ExternalView$2: int val$x -wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -okio.BufferedSource: java.lang.String readUtf8() -androidx.loader.R$styleable: int GradientColor_android_endX -com.tencent.bugly.proguard.u: java.lang.Object t -wangdaye.com.geometricweather.R$layout: int test_reflow_chipgroup -wangdaye.com.geometricweather.R$anim: int x2_accelerate_interpolator -androidx.constraintlayout.widget.R$integer: R$integer() -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit K -androidx.work.R$id: int tag_accessibility_clickable_spans -com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_weight -androidx.activity.R$id: int right_icon -com.jaredrummler.android.colorpicker.R$dimen: int abc_alert_dialog_button_bar_height -cyanogenmod.app.ThemeVersion$ComponentVersion: int getId() -okhttp3.HttpUrl: java.lang.String fragment() -wangdaye.com.geometricweather.R$attr: int showSeekBarValue -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_android_windowAnimationStyle -androidx.lifecycle.FullLifecycleObserverAdapter: androidx.lifecycle.FullLifecycleObserver mFullLifecycleObserver -androidx.preference.R$attr: int barLength -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotation -androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModel get(java.lang.String,java.lang.Class) -androidx.recyclerview.widget.RecyclerView: java.lang.CharSequence getAccessibilityClassName() -androidx.appcompat.R$styleable: int MenuView_android_itemTextAppearance -androidx.constraintlayout.widget.R$styleable: int[] LinearLayoutCompat_Layout -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_weight -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleTint -wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_material -retrofit2.ParameterHandler$Query: void apply(retrofit2.RequestBuilder,java.lang.Object) -okhttp3.logging.LoggingEventListener: LoggingEventListener(okhttp3.logging.HttpLoggingInterceptor$Logger) -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: void run() -wangdaye.com.geometricweather.R$drawable: int weather_haze_pixel -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_orderInCategory -okio.BufferedSource: java.lang.String readString(long,java.nio.charset.Charset) -com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingBottom() -com.turingtechnologies.materialscrollbar.R$string: int fab_transformation_sheet_behavior -androidx.appcompat.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int INTERRUPTED -androidx.constraintlayout.widget.R$attr: int layout_goneMarginRight -cyanogenmod.app.ILiveLockScreenManagerProvider: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: void setType(java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setO3(java.lang.Float) -james.adaptiveicon.R$color: int background_material_dark -androidx.viewpager.R$styleable: int FontFamilyFont_android_fontWeight -com.jaredrummler.android.colorpicker.R$layout: int abc_popup_menu_header_item_layout -wangdaye.com.geometricweather.R$attr: int msb_autoHide -androidx.constraintlayout.widget.R$styleable: int TextAppearance_textAllCaps -okhttp3.EventListener: okhttp3.EventListener$Factory factory(okhttp3.EventListener) -androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$id: int action_bar -androidx.fragment.R$attr: int alpha -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTag -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property PublishDate -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMenuItemView_android_minWidth -androidx.constraintlayout.widget.R$styleable: int[] MockView -james.adaptiveicon.R$attr: int editTextStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: java.util.List getBrands() -wangdaye.com.geometricweather.R$dimen: int daily_trend_item_height -okhttp3.OkHttpClient: java.util.List networkInterceptors -com.google.android.material.R$dimen: int mtrl_btn_hovered_z -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener getRequestListener() -com.tencent.bugly.proguard.z: byte[] b(int,byte[],byte[]) -wangdaye.com.geometricweather.R$attr: int cornerSizeTopLeft -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemSummary(java.lang.String) -com.google.android.material.R$attr: int counterTextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: java.lang.String Unit -wangdaye.com.geometricweather.R$attr: int spinBars -com.google.android.material.R$layout: int abc_cascading_menu_item_layout -cyanogenmod.os.Concierge$ParcelInfo: int mSizePosition -okhttp3.Dispatcher: boolean promoteAndExecute() -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatSeekBar -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDbz(java.lang.Integer) -androidx.appcompat.R$dimen: int abc_text_size_button_material -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_BottomRightCut -com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.c r -androidx.vectordrawable.R$dimen: int notification_action_text_size -androidx.constraintlayout.widget.R$color: int bright_foreground_material_dark -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Medium -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge -cyanogenmod.externalviews.KeyguardExternalView$3: boolean val$visible -androidx.coordinatorlayout.R$id: int accessibility_custom_action_5 -cyanogenmod.app.Profile$LockMode: int DISABLE -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_allowCustom -wangdaye.com.geometricweather.R$string: int key_forecast_today_time -wangdaye.com.geometricweather.R$id: int source -retrofit2.http.OPTIONS: java.lang.String value() -android.didikee.donate.R$styleable: int SearchView_android_focusable -com.google.android.material.R$styleable: int CardView_cardElevation -wangdaye.com.geometricweather.R$dimen: int mtrl_card_checked_icon_margin -okhttp3.internal.http2.Huffman: void addCode(int,int,byte) -com.jaredrummler.android.colorpicker.R$attr: int colorPrimary -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$ItemAnimator getItemAnimator() -com.google.android.material.R$attr: int multiChoiceItemLayout -androidx.preference.R$style: int Widget_AppCompat_ListMenuView -wangdaye.com.geometricweather.R$styleable: int Chip_showMotionSpec -android.didikee.donate.R$color: int abc_tint_spinner -okio.RealBufferedSink: okio.BufferedSink writeInt(int) -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor getInstance(java.lang.String) -okhttp3.internal.platform.Android10Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -androidx.customview.R$color: R$color() -okhttp3.internal.http.RealInterceptorChain: int writeTimeout -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.db.entities.DaoSession daoSession -com.jaredrummler.android.colorpicker.R$attr: int titleMarginStart -com.google.android.material.R$animator: int mtrl_fab_hide_motion_spec -okhttp3.internal.connection.ConnectInterceptor -wangdaye.com.geometricweather.R$drawable: int notif_temp_92 -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setThunderstormPrecipitationProbability(java.lang.Float) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonStyleSmall -androidx.lifecycle.Transformations$1 -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderQuery -androidx.work.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -okhttp3.internal.ws.RealWebSocket: okhttp3.Call call -com.google.android.gms.base.R$string: int common_google_play_services_wear_update_text -wangdaye.com.geometricweather.R$attr: int bottomSheetDialogTheme -okhttp3.CacheControl: int sMaxAgeSeconds() -cyanogenmod.app.ProfileManager: boolean profileExists(java.lang.String) -com.google.android.material.R$styleable: int TextInputLayout_boxStrokeWidthFocused -cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemOnClickIntent(android.app.PendingIntent) -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_background_transition_holo_dark -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit) -androidx.constraintlayout.utils.widget.ImageFilterButton: void setContrast(float) -com.google.android.material.bottomappbar.BottomAppBar: int getBottomInset() -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.R$drawable: int abc_cab_background_internal_bg -okio.HashingSource: HashingSource(okio.Source,java.lang.String) -com.google.android.material.R$dimen: int mtrl_extended_fab_bottom_padding -wangdaye.com.geometricweather.remoteviews.config.AbstractWidgetConfigActivity -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_UNKNOWN -com.tencent.bugly.proguard.ak: java.util.Map B -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CONDITION -com.google.android.material.R$id: int wrap_content -androidx.preference.R$dimen: int abc_config_prefDialogWidth -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Item -com.amap.api.location.AMapLocation: java.lang.String getPoiName() -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -okio.Buffer$UnsafeCursor: int next() -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase moonPhase -com.amap.api.location.AMapLocationQualityReport: void setGpsStatus(int) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Button -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_textAppearance -cyanogenmod.app.suggest.AppSuggestManager: java.lang.String TAG -androidx.preference.R$style: int Preference_SwitchPreferenceCompat_Material -androidx.preference.R$anim: int abc_tooltip_exit -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatHoveredFocusedTranslationZResource(int) -wangdaye.com.geometricweather.R$attr: int textAppearancePopupMenuHeader -com.google.android.material.R$style: int TextAppearance_AppCompat_Title -retrofit2.RequestFactory$Builder: boolean gotQueryName -cyanogenmod.app.IProfileManager$Stub$Proxy: void resetAll() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginEnd -okio.RealBufferedSource: int select(okio.Options) -android.didikee.donate.R$color: int foreground_material_dark -wangdaye.com.geometricweather.R$string: int mtrl_exceed_max_badge_number_content_description -wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView -androidx.constraintlayout.widget.R$attr: int minHeight -com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Light -com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context) -androidx.activity.R$id: int italic -wangdaye.com.geometricweather.R$id: int widget_day_card -okio.Base64: java.lang.String encodeUrl(byte[]) -com.turingtechnologies.materialscrollbar.R$integer: int cancel_button_image_alpha -wangdaye.com.geometricweather.R$attr: int max -androidx.activity.R$dimen: int notification_subtext_size -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.R$attr: int layout_constraintBaseline_creator -com.google.android.material.R$styleable: int TabLayout_tabIndicatorColor -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Light -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_NoActionBar -okio.GzipSource: byte FHCRC -androidx.hilt.R$attr: int fontProviderAuthority -com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat -com.xw.repo.bubbleseekbar.R$attr: int navigationMode -cyanogenmod.app.Profile: boolean mStatusBarIndicator -com.google.android.material.R$color: int switch_thumb_disabled_material_light -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_min_width_minor -androidx.recyclerview.R$id: int accessibility_custom_action_31 -androidx.preference.R$attr: int titleMarginEnd -androidx.constraintlayout.widget.ConstraintLayout: void setMinWidth(int) -wangdaye.com.geometricweather.R$id: int progress -wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_grey -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -androidx.appcompat.R$attr: int searchIcon -androidx.transition.R$integer: int status_bar_notification_info_maxnum -james.adaptiveicon.R$attr: int titleMargin -com.jaredrummler.android.colorpicker.R$attr: int contentInsetStartWithNavigation -com.google.android.material.R$color: int switch_thumb_material_light -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default -wangdaye.com.geometricweather.R$id: int content -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String WeatherText -androidx.preference.R$attr: int initialExpandedChildrenCount -com.google.android.material.timepicker.TimePickerView: TimePickerView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$color: int button_material_dark -okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.WebSocketReader reader -com.xw.repo.bubbleseekbar.R$attr: int switchMinWidth -com.tencent.bugly.proguard.v: java.lang.String m -cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(android.os.Parcel) -com.google.android.gms.common.R$integer: int google_play_services_version -wangdaye.com.geometricweather.R$attr: int radius_from -wangdaye.com.geometricweather.R$string: int settings_title_background_free -androidx.dynamicanimation.animation.SpringAnimation -com.google.android.material.chip.Chip: void setChipIconTintResource(int) -com.tencent.bugly.crashreport.common.info.a: java.lang.String Y -com.google.android.material.R$layout: int abc_action_bar_title_item -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$attr: int autoCompleteTextViewStyle -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_TextInputLayout -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent -androidx.dynamicanimation.R$drawable: int notification_bg_low_pressed -androidx.transition.R$id: int actions -com.google.gson.internal.LinkedTreeMap: void removeInternal(com.google.gson.internal.LinkedTreeMap$Node,boolean) -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider[] values() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric -wangdaye.com.geometricweather.R$attr: int backgroundTintMode -okhttp3.internal.http2.Http2Writer: void writeMedium(okio.BufferedSink,int) -com.google.android.material.R$dimen: int mtrl_alert_dialog_picker_background_inset -wangdaye.com.geometricweather.R$id: int notification_big_temp_2 -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_icon -okhttp3.internal.http2.Http2: java.lang.String[] FRAME_NAMES -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Small -androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableTransition -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_query -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.functions.Function itemTimeoutIndicator -com.amap.api.fence.GeoFenceManagerBase: void removeGeoFence() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber) -androidx.core.R$id: int accessibility_custom_action_7 -com.jaredrummler.android.colorpicker.R$styleable: int[] TextAppearance -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -retrofit2.http.DELETE -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource MF -androidx.legacy.coreutils.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: AtmoAuraQAResult$MultiDaysIndexs$MultiIndex() -wangdaye.com.geometricweather.R$attr: int editTextColor -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft -com.google.android.material.R$attr: int autoSizeMinTextSize -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabInlineLabel -com.tencent.bugly.crashreport.crash.a: long a -com.google.android.material.R$styleable: int AppCompatTheme_homeAsUpIndicator -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_DayTextView -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String comment -wangdaye.com.geometricweather.R$menu -androidx.preference.R$attr: int enableCopying -wangdaye.com.geometricweather.R$animator: int weather_haze_1 -androidx.preference.R$styleable: int SwitchCompat_trackTintMode -wangdaye.com.geometricweather.R$id: int never -androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -androidx.constraintlayout.widget.R$styleable: int[] ConstraintLayout_Layout -wangdaye.com.geometricweather.R$array: int pollen_units -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setFitSide(int) -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: ObservableRetryPredicate$RepeatObserver(io.reactivex.Observer,long,io.reactivex.functions.Predicate,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) -okhttp3.Response$Builder: okhttp3.Request request -retrofit2.OkHttpCall$1: retrofit2.OkHttpCall this$0 -com.amap.api.location.UmidtokenInfo: java.lang.String b -androidx.preference.R$id: int search_close_btn -wangdaye.com.geometricweather.R$attr: int numericModifiers -okhttp3.internal.cache.CacheStrategy: okhttp3.Response cacheResponse -com.google.android.material.R$styleable: int Motion_drawPath -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_icon_btn_padding_left -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupMenu -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarDivider -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -com.google.android.material.R$style: int TextAppearance_Design_Hint -androidx.transition.R$style: int TextAppearance_Compat_Notification_Line2 -okhttp3.EventListener: void responseHeadersStart(okhttp3.Call) -com.google.android.material.R$dimen: int mtrl_calendar_selection_baseline_to_top_fullscreen -androidx.preference.R$layout: int abc_tooltip -com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_android_background -wangdaye.com.geometricweather.R$attr: int itemTextAppearanceActive -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String cityId -com.google.android.material.R$styleable: int Layout_layout_constraintCircle -okhttp3.Challenge: java.util.Map authParams() -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.Observer downstream -androidx.appcompat.resources.R$id: int accessibility_custom_action_17 -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: ObservableSampleWithObservable$SampleMainObserver(io.reactivex.Observer,io.reactivex.ObservableSource) -androidx.hilt.work.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String getWeatherText() -androidx.appcompat.R$string: int abc_menu_function_shortcut_label -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: void setStatus(int) -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_corner_radius_material -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.Integer angle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_checkedTextViewStyle -com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_square_large -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder shouldCollapsePanel(boolean) -com.google.android.material.R$style: int Base_V7_Theme_AppCompat -wangdaye.com.geometricweather.R$id: int cpv_color_image_view -com.google.android.material.R$attr: int itemStrokeColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setLevel(java.lang.String) -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy[] values() -androidx.constraintlayout.widget.R$attr: int applyMotionScene -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder onlyIfCached() -com.turingtechnologies.materialscrollbar.R$attr: int chipIconVisible -androidx.recyclerview.widget.RecyclerView: int getScrollState() -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Inverse -com.tencent.bugly.Bugly: java.lang.String[] b -com.jaredrummler.android.colorpicker.R$layout: int select_dialog_singlechoice_material -okio.AsyncTimeout: okio.Source source(okio.Source) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: IKeyguardExternalViewProvider$Stub$Proxy(android.os.IBinder) -io.reactivex.internal.disposables.SequentialDisposable: void dispose() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.Object NextOffsetChange -androidx.appcompat.R$styleable: int MenuItem_iconTint -okio.ByteString: java.lang.String hex() -androidx.recyclerview.R$dimen: int fastscroll_minimum_range -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -io.reactivex.exceptions.OnErrorNotImplementedException -com.google.android.material.R$attr: int actionBarWidgetTheme -cyanogenmod.app.CustomTile$ExpandedStyle: int getStyle() -androidx.appcompat.R$styleable: int[] ButtonBarLayout -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCityId(java.lang.String) -wangdaye.com.geometricweather.R$id: int chip3 -com.xw.repo.bubbleseekbar.R$styleable: int[] Spinner -androidx.recyclerview.R$id: int time -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Bridge -com.google.android.material.R$styleable: int MotionScene_layoutDuringTransition -androidx.coordinatorlayout.R$id: int accessibility_custom_action_11 -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickTintList() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onComplete() -com.google.android.material.R$styleable: int ForegroundLinearLayout_android_foregroundGravity -wangdaye.com.geometricweather.background.receiver.widget.AbstractWidgetProvider: AbstractWidgetProvider() -io.reactivex.internal.subscriptions.BasicQueueSubscription -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_elevation -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onError(java.lang.Throwable) -com.tencent.bugly.crashreport.crash.a: boolean d -io.reactivex.Observable: io.reactivex.Observable concatMapMaybe(io.reactivex.functions.Function,int) -androidx.appcompat.widget.ViewStubCompat: void setInflatedId(int) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_height -cyanogenmod.app.IProfileManager$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode SNOW -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long size -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarDivider -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_17 -androidx.preference.R$string: int abc_activity_chooser_view_see_all -androidx.appcompat.widget.LinearLayoutCompat: void setHorizontalGravity(int) -com.amap.api.fence.GeoFence: int STATUS_STAYED -com.google.android.material.imageview.ShapeableImageView: void setStrokeColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$styleable: int MaterialCheckBox_buttonTint -androidx.swiperefreshlayout.R$id: int dialog_button -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowRadius -androidx.preference.PreferenceGroup: void setOnExpandButtonClickListener(androidx.preference.PreferenceGroup$OnExpandButtonClickListener) -wangdaye.com.geometricweather.R$attr: int showPaths -io.reactivex.internal.util.NotificationLite: boolean isComplete(java.lang.Object) -okio.AsyncTimeout: void scheduleTimeout(okio.AsyncTimeout,long,boolean) -com.google.android.material.R$styleable: int TextInputLayout_helperTextEnabled -androidx.constraintlayout.widget.R$styleable: int[] MotionScene -android.didikee.donate.R$styleable: int[] ActionMenuView -james.adaptiveicon.R$styleable: int AppCompatTheme_dropDownListViewStyle -james.adaptiveicon.R$attr: int closeItemLayout -com.jaredrummler.android.colorpicker.R$dimen: int abc_control_inset_material -androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.R$styleable: int Constraint_android_layout_width -okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE_TEMP -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: void setValue(java.lang.String) -androidx.vectordrawable.animated.R$dimen: int notification_main_column_padding_top -io.reactivex.internal.observers.ForEachWhileObserver: void dispose() -io.reactivex.internal.subscribers.StrictSubscriber: void onSubscribe(org.reactivestreams.Subscription) -wangdaye.com.geometricweather.R$id: int labeled -androidx.constraintlayout.widget.R$id: int middle -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_title_baseline_to_top -androidx.constraintlayout.widget.R$attr: int actionOverflowButtonStyle -com.tencent.bugly.crashreport.common.info.a: java.lang.String ar -com.tencent.bugly.crashreport.biz.b: void a() -com.amap.api.fence.GeoFence: int STATUS_OUT -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setPubTime(java.util.Date) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_enabled -androidx.preference.R$styleable: int Toolbar_subtitleTextAppearance -okio.BufferedSource: long indexOf(byte,long,long) -com.google.android.material.R$id: int home -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_adjustable -com.google.android.material.R$dimen: int abc_text_size_body_1_material -androidx.core.R$dimen: int compat_control_corner_material -retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: retrofit2.Call call -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$RequestType mRequestType -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_27 -com.turingtechnologies.materialscrollbar.R$attr: int fontFamily -wangdaye.com.geometricweather.R$styleable: int Transform_android_transformPivotY -com.xw.repo.bubbleseekbar.R$layout: int notification_template_part_time -james.adaptiveicon.R$dimen: int abc_action_bar_subtitle_top_margin_material -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.R$string: int settings_title_forecast_tomorrow_time -okhttp3.Response$Builder: okhttp3.Response$Builder networkResponse(okhttp3.Response) -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -cyanogenmod.profiles.AirplaneModeSettings: boolean isOverride() -cyanogenmod.themes.IThemeService: boolean isThemeApplying() -androidx.constraintlayout.widget.R$styleable: int ActionBar_icon -wangdaye.com.geometricweather.R$styleable: int[] BottomSheetBehavior_Layout -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.jaredrummler.android.colorpicker.R$attr: int defaultValue -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconTintMode -com.google.android.material.R$drawable: int material_ic_keyboard_arrow_left_black_24dp -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getThumbStrokeColor() -androidx.drawerlayout.R$dimen: int notification_main_column_padding_top -io.reactivex.Observable: io.reactivex.Observable debounce(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.dynamicanimation.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$string: int abc_menu_enter_shortcut_label -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX) -com.google.android.material.R$styleable: int BottomAppBar_fabAlignmentMode -com.google.android.material.R$attr: int circularInset -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum Minimum -wangdaye.com.geometricweather.db.entities.DailyEntity: float getHoursOfSun() -com.google.gson.stream.JsonReader: char[] NON_EXECUTE_PREFIX -james.adaptiveicon.R$style: int Base_V26_Theme_AppCompat -android.didikee.donate.R$attr: int subtitle -android.didikee.donate.R$color: int abc_search_url_text_pressed -androidx.core.R$id: int accessibility_custom_action_8 -androidx.preference.R$style: int TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation: MfForecastResult$DailyForecast$Precipitation() -androidx.preference.R$styleable: int AppCompatSeekBar_android_thumb -com.google.android.material.floatingactionbutton.FloatingActionButton -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date sunsetTime -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: SavedStateHandle$SavingStateLiveData(androidx.lifecycle.SavedStateHandle,java.lang.String,java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTintMode -androidx.dynamicanimation.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object getKey(java.lang.Object) -androidx.appcompat.widget.SwitchCompat: java.lang.CharSequence getTextOff() -wangdaye.com.geometricweather.R$color: int colorLevel_5 -androidx.preference.R$styleable: int[] SwitchCompat -james.adaptiveicon.R$dimen: int abc_alert_dialog_button_bar_height -androidx.constraintlayout.widget.R$attr: int customFloatValue -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_Bridge -wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_dividerHeight -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -androidx.customview.R$id: int text -androidx.preference.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.R$id: int widget_clock_day_subtitle -androidx.vectordrawable.animated.R$style: R$style() -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.fuseable.SimpleQueue queue -james.adaptiveicon.R$styleable: int AppCompatTheme_colorError -com.google.android.material.R$color: int material_timepicker_button_stroke -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: ObservableGroupJoin$LeftRightObserver(io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport,boolean) -wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_day_foreground -wangdaye.com.geometricweather.R$layout: int material_clock_period_toggle_land -okhttp3.internal.http2.Http2Writer: void close() -okhttp3.Cookie$Builder: java.lang.String value -androidx.preference.R$styleable: int[] AppCompatTextView -cyanogenmod.weather.CMWeatherManager$RequestStatus: int ALREADY_IN_PROGRESS -com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyleSmall -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeWidth -androidx.core.R$id: int chronometer -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showDialog -androidx.fragment.R$id: int accessibility_custom_action_18 -com.google.android.gms.common.Feature -com.google.android.material.R$styleable: int ConstraintSet_flow_firstVerticalStyle -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onNext(java.lang.Object) -androidx.vectordrawable.R$attr -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_enabled -cyanogenmod.content.Intent: java.lang.String ACTION_PROTECTED_CHANGED -okio.BufferedSource: int readIntLe() -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDataConnectionSelectedOnSub(int) -okhttp3.logging.HttpLoggingInterceptor: boolean isPlaintext(okio.Buffer) -com.google.android.material.R$styleable: int TextInputLayout_shapeAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String LocalizedName -androidx.hilt.lifecycle.R$layout: int notification_template_part_chronometer -androidx.preference.R$styleable: int PreferenceFragmentCompat_android_dividerHeight -android.didikee.donate.R$attr: int actionBarTabTextStyle -wangdaye.com.geometricweather.background.polling.work.worker.TomorrowForecastUpdateWorker: TomorrowForecastUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_visibility -com.google.android.material.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_creator -cyanogenmod.weather.RequestInfo$1: cyanogenmod.weather.RequestInfo[] newArray(int) -wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format_use -com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrim(android.graphics.drawable.Drawable) -com.tencent.bugly.proguard.z: void b(java.lang.String) -androidx.appcompat.R$style: int Widget_AppCompat_SeekBar_Discrete -com.xw.repo.bubbleseekbar.R$dimen: int notification_content_margin_start -androidx.appcompat.R$id: int tabMode -androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context,android.util.AttributeSet) -androidx.preference.R$integer: int config_tooltipAnimTime -io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean isCancelled() -wangdaye.com.geometricweather.R$font: int product_sans_medium_italic -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection build() -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.disposables.Disposable upstream -okhttp3.internal.ws.RealWebSocket: boolean $assertionsDisabled -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language KOREAN -wangdaye.com.geometricweather.R$attr: int warmth -cyanogenmod.weather.WeatherLocation: java.lang.String mPostal -androidx.preference.R$styleable: int SearchView_android_imeOptions -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language PORTUGUESE -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: android.os.IBinder mRemote -androidx.swiperefreshlayout.widget.SwipeRefreshLayout$SavedState: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$attr: int hideMotionSpec -wangdaye.com.geometricweather.R$id: int ignoreRequest -androidx.fragment.R$id: R$id() -com.tencent.bugly.crashreport.crash.CrashDetailBean: int b -okhttp3.internal.http2.Http2Reader: void readGoAway(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_max -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Borderless -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabView -androidx.viewpager.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.R$dimen: int material_timepicker_dialog_buttons_margin_top -cyanogenmod.app.Profile$1: java.lang.Object[] newArray(int) -com.bumptech.glide.integration.okhttp.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property District -androidx.constraintlayout.widget.R$styleable: int Toolbar_collapseIcon -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void setDumpFilePath(java.lang.String) -com.tencent.bugly.crashreport.a: boolean appendLogToNative(java.lang.String,java.lang.String,java.lang.String) -com.google.android.material.R$id: int cut -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -com.xw.repo.bubbleseekbar.R$id: int submit_area -com.google.android.material.slider.Slider: void setThumbStrokeColorResource(int) -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.util.Map z -wangdaye.com.geometricweather.db.entities.WeatherEntity: long updateTime -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: java.util.concurrent.atomic.AtomicReference observers -androidx.constraintlayout.widget.R$styleable: int AlertDialog_listItemLayout -wangdaye.com.geometricweather.R$style: int CardView_Dark -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabBar -okhttp3.CertificatePinner$Builder: okhttp3.CertificatePinner build() -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_crossfade -androidx.preference.R$styleable: int SwitchCompat_android_textOn -wangdaye.com.geometricweather.background.service.CMWeatherProviderService: CMWeatherProviderService() -wangdaye.com.geometricweather.R$attr: int materialCircleRadius -com.google.android.gms.base.R$string: int common_google_play_services_enable_button -com.google.android.material.R$styleable: int FloatingActionButton_shapeAppearance -com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonTint -okhttp3.internal.ws.WebSocketProtocol: long PAYLOAD_BYTE_MAX -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderToggleButton -wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_id -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -androidx.preference.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -james.adaptiveicon.R$color: int abc_color_highlight_material -okhttp3.internal.http.RetryAndFollowUpInterceptor: int retryAfter(okhttp3.Response,int) -androidx.constraintlayout.widget.R$attr: int deltaPolarRadius -androidx.appcompat.R$styleable: int AppCompatTheme_seekBarStyle -com.jaredrummler.android.colorpicker.R$styleable -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.lang.Object key -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_weightSum -androidx.legacy.coreutils.R$id: R$id() -wangdaye.com.geometricweather.R$drawable: int weather_thunder_pixel -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView -cyanogenmod.app.ProfileGroup$2 -androidx.lifecycle.ComputableLiveData$3: androidx.lifecycle.ComputableLiveData this$0 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Type -wangdaye.com.geometricweather.R$styleable: int MaterialTextView_lineHeight -wangdaye.com.geometricweather.R$id: int action_mode_close_button -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments -androidx.coordinatorlayout.R$id: int icon_group -cyanogenmod.app.ProfileGroup: boolean isDefaultGroup() -wangdaye.com.geometricweather.R$styleable: int[] ImageFilterView -androidx.dynamicanimation.R$id -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder maxAge(int,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$styleable: int[] OnSwipe -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onError(java.lang.Throwable) -androidx.preference.R$attr: int listChoiceBackgroundIndicator -androidx.hilt.work.R$id: int right_icon -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void dispose() -com.google.android.material.R$attr: int buttonBarPositiveButtonStyle -androidx.lifecycle.Lifecycle$State: Lifecycle$State(java.lang.String,int) -wangdaye.com.geometricweather.R$string: int settings_category_forecast -com.google.android.material.R$styleable: int ActionBar_icon -com.google.android.material.chip.Chip: void setMaxLines(int) -retrofit2.http.Header: java.lang.String value() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Caption -android.didikee.donate.R$styleable: int AppCompatTheme_buttonStyleSmall -okio.RealBufferedSource: int readIntLe() -androidx.lifecycle.ViewModel: void clear() -androidx.fragment.R$attr: int fontProviderAuthority -androidx.constraintlayout.widget.R$dimen: int abc_text_size_title_material_toolbar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setPubTime(java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontWeight -okhttp3.internal.tls.OkHostnameVerifier: boolean verify(java.lang.String,java.security.cert.X509Certificate) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: int UnitType -com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabBarStyle -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.Observer downstream -io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean isEmpty() -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -com.jaredrummler.android.colorpicker.R$styleable: int Preference_defaultValue -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver: ForceStopRunnable$BroadcastReceiver() -james.adaptiveicon.R$attr: int textAppearanceSearchResultTitle -com.jaredrummler.android.colorpicker.R$styleable: int[] ViewBackgroundHelper -com.github.rahatarmanahmed.cpv.CircularProgressView: void onAttachedToWindow() -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: io.reactivex.internal.fuseable.SimpleQueue queue -com.jaredrummler.android.colorpicker.ColorPickerView: java.lang.String getAlphaSliderText() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -com.amap.api.fence.GeoFenceManagerBase: android.app.PendingIntent createPendingIntent(java.lang.String) -com.amap.api.fence.GeoFence: float m -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupMenu -com.turingtechnologies.materialscrollbar.R$dimen: int compat_notification_large_icon_max_height -com.google.gson.FieldNamingPolicy$3: java.lang.String translateName(java.lang.reflect.Field) -androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_closeItemLayout -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object getKey(java.lang.Object) -james.adaptiveicon.R$styleable: int DrawerArrowToggle_arrowHeadLength -cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_TARGETS -com.google.android.material.R$id: int tag_screen_reader_focusable -androidx.constraintlayout.widget.Barrier: void setMargin(int) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator -wangdaye.com.geometricweather.R$animator: int weather_snow_2 -androidx.appcompat.R$color: int tooltip_background_light -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_dark -com.xw.repo.bubbleseekbar.R$styleable: int RecycleListView_paddingBottomNoButtons -okhttp3.Dns: java.util.List lookup(java.lang.String) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -wangdaye.com.geometricweather.R$layout: int activity_widget_config -wangdaye.com.geometricweather.R$attr: int pathMotionArc -android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMarkTint -com.google.android.material.R$attr: int strokeWidth -androidx.preference.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void drain() -retrofit2.RequestFactory$Builder: retrofit2.Retrofit retrofit -wangdaye.com.geometricweather.R$string: int feedback_resident_location_description -cyanogenmod.app.ThemeVersion$ComponentVersion: cyanogenmod.app.ThemeComponent getComponent() -okio.RealBufferedSource: boolean exhausted() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry: java.lang.String type -com.google.android.material.R$integer: int hide_password_duration -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_checkedTextViewStyle -wangdaye.com.geometricweather.R$id: int circular -androidx.constraintlayout.widget.R$styleable: int Transform_android_rotationY -wangdaye.com.geometricweather.R$styleable: int Badge_verticalOffset -com.bumptech.glide.R$dimen: int notification_action_icon_size -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_btn_ripple_color -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String city -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Colored -james.adaptiveicon.R$attr: int buttonStyle -cyanogenmod.providers.CMSettings$System: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) -cyanogenmod.app.ProfileGroup: android.net.Uri getRingerOverride() -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_registerCallback -androidx.coordinatorlayout.R$id: int end -androidx.loader.R$id: int time -cyanogenmod.weather.RequestInfo$Builder: int mRequestType -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_14 -androidx.customview.R$dimen: int notification_action_icon_size -retrofit2.RequestFactory$Builder: java.lang.Class boxIfPrimitive(java.lang.Class) -retrofit2.RequestBuilder: okhttp3.MultipartBody$Builder multipartBuilder -androidx.constraintlayout.widget.R$attr: int colorError -wangdaye.com.geometricweather.R$anim: int abc_shrink_fade_out_from_bottom -androidx.preference.R$attr: int drawableLeftCompat -retrofit2.RequestFactory: retrofit2.RequestFactory parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method) -com.tencent.bugly.proguard.l: boolean a(long,long) -androidx.constraintlayout.helper.widget.Flow: void setFirstVerticalBias(float) -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void dispose() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_default -wangdaye.com.geometricweather.R$id: int backBtn -wangdaye.com.geometricweather.R$drawable: int notif_temp_108 -androidx.appcompat.widget.SwitchCompat: void setShowText(boolean) -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.Long getId() -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: boolean cancelled -com.google.android.material.R$dimen: int mtrl_chip_text_size -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPasswordVisibilityToggleContentDescription() -wangdaye.com.geometricweather.R$attr: int transitionDisable -androidx.hilt.lifecycle.R$layout: int notification_action -androidx.viewpager2.widget.ViewPager2: int getOrientation() -okhttp3.internal.http2.Http2Connection: long access$608(okhttp3.internal.http2.Http2Connection) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.R$attr: int wavePeriod -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setLibBuglySOFilePath(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: java.lang.String Unit -androidx.coordinatorlayout.R$id: int accessibility_custom_action_23 -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -james.adaptiveicon.R$integer: int cancel_button_image_alpha -com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Action -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_16dp -wangdaye.com.geometricweather.R$attr: int layout_constraintStart_toEndOf -com.amap.api.location.AMapLocationQualityReport: void setNetworkType(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int notif_temp_19 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_visibility -androidx.appcompat.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.R$attr: int chipSurfaceColor -wangdaye.com.geometricweather.R$dimen: int abc_dialog_padding_material -com.google.android.material.R$attr: int colorBackgroundFloating -okio.Buffer: okio.ByteString readByteString(long) -android.didikee.donate.R$id: int submit_area -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemBackground -okhttp3.internal.http2.Http2Codec: void cancel() -okio.RealBufferedSource: java.lang.String toString() -androidx.lifecycle.SavedStateHandle: SavedStateHandle(java.util.Map) -okhttp3.ResponseBody$BomAwareReader: boolean closed -androidx.preference.R$attr: int alertDialogStyle -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_card_elevation -com.tencent.bugly.proguard.z: java.lang.String b(java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int scrimVisibleHeightTrigger -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: double Value -androidx.appcompat.R$style: int Widget_AppCompat_Button_Borderless -io.reactivex.internal.subscriptions.BasicQueueSubscription: void clear() -com.google.android.material.R$styleable: int MenuGroup_android_checkableBehavior -okhttp3.internal.ws.WebSocketProtocol: java.lang.String ACCEPT_MAGIC -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType WEBP_A -com.turingtechnologies.materialscrollbar.R$dimen: int notification_big_circle_margin -android.didikee.donate.R$attr: int homeAsUpIndicator -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.String aqiText -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenText(android.content.Context,int) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -org.greenrobot.greendao.AbstractDaoSession: java.util.List loadAll(java.lang.Class) -okhttp3.internal.http2.Http2Reader$ContinuationSource: int length -com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_scrollable_min_width -com.tencent.bugly.proguard.aq: java.lang.String e -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.lang.Object invoke(java.lang.Object,java.lang.reflect.Method,java.lang.Object[]) -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onComplete() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FREEZING_RAIN -okio.Okio$1: Okio$1(okio.Timeout,java.io.OutputStream) -com.jaredrummler.android.colorpicker.R$layout: int notification_template_part_chronometer -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextAppearanceInactive(int) -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean b() -com.google.android.material.R$color: int androidx_core_ripple_material_light -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.fragment.R$styleable: int GradientColor_android_startY -androidx.hilt.R$id: int accessibility_custom_action_18 -com.amap.api.location.DPoint: void setLongitude(double) -okhttp3.Cache$Entry: okhttp3.Response response(okhttp3.internal.cache.DiskLruCache$Snapshot) -com.google.android.material.R$dimen: int abc_list_item_padding_horizontal_material -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_strokeColor -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation valueOf(java.lang.String) -wangdaye.com.geometricweather.R$layout: int item_location -androidx.appcompat.widget.Toolbar: void setNavigationIcon(android.graphics.drawable.Drawable) -androidx.appcompat.R$color: int androidx_core_secondary_text_default_material_light -com.google.android.material.R$attr: int limitBoundsTo -wangdaye.com.geometricweather.R$xml: int widget_multi_city -wangdaye.com.geometricweather.R$layout: int widget_day_rectangle -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontStyle -androidx.appcompat.widget.AppCompatImageView: android.content.res.ColorStateList getSupportImageTintList() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String TITLE -com.google.android.gms.location.zzo -com.google.android.material.R$styleable: int KeyAttribute_transitionPathRotate -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type VERTICAL_DIMENSION -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode TRUNCATE -androidx.preference.R$dimen: int abc_dialog_padding_top_material -com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.a a() -androidx.preference.MultiSelectListPreferenceDialogFragmentCompat -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_padding_start_material -okio.ByteString: okio.ByteString md5() -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void again(java.lang.Object) -androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontWeight -cyanogenmod.app.CustomTile$ExpandedItem$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle getInstance(java.lang.String) -cyanogenmod.os.Concierge$ParcelInfo: Concierge$ParcelInfo(android.os.Parcel,int) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayWeekWidgetConfigActivity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: void setValue(java.util.List) -com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_colored -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber -com.google.android.material.snackbar.Snackbar$SnackbarLayout -com.google.android.material.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -com.google.gson.internal.LinkedTreeMap: int modCount -cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.CMWeatherManager$2 this$1 -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_showAsAction -com.baidu.location.indoor.c: c(int) -androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -james.adaptiveicon.R$styleable: int Toolbar_titleMarginTop -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitationDuration -retrofit2.Utils$WildcardTypeImpl: java.lang.String toString() -cyanogenmod.alarmclock.ClockContract: java.lang.String AUTHORITY -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitationProbability() -wangdaye.com.geometricweather.R$xml: int icon_provider_config -androidx.constraintlayout.widget.R$attr: int curveFit -com.tencent.bugly.crashreport.common.info.a: java.util.Map J() -androidx.preference.R$color: int abc_btn_colored_text_material -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textStyle -wangdaye.com.geometricweather.R$string: int feedback_delete_succeed -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status LOADING -androidx.hilt.R$dimen: int compat_button_padding_vertical_material -org.greenrobot.greendao.database.DatabaseOpenHelper: android.content.Context context -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitationProbability -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CollapsingToolbar -wangdaye.com.geometricweather.R$attr: int behavior_overlapTop -com.google.gson.internal.LinkedTreeMap: java.util.Comparator comparator -android.didikee.donate.R$attr: int toolbarStyle -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox -okhttp3.internal.http2.Http2Reader$Handler: void headers(boolean,int,int,java.util.List) -wangdaye.com.geometricweather.R$styleable: int CompoundButton_android_button -androidx.appcompat.R$styleable: int[] View -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Subhead -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemBackground -com.google.android.material.R$attr: int errorContentDescription -retrofit2.ParameterHandler$1: void apply(retrofit2.RequestBuilder,java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_transformPivotY -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String timezone -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: java.lang.String DESCRIPTOR -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -com.google.android.material.R$styleable: int ConstraintSet_android_rotation -wangdaye.com.geometricweather.R$drawable: int material_cursor_drawable -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getResPkg() -james.adaptiveicon.R$styleable: int ActionBar_subtitleTextStyle -androidx.appcompat.resources.R$id: int accessibility_custom_action_11 -android.didikee.donate.R$styleable: int AppCompatTextView_textAllCaps -android.didikee.donate.R$drawable: int abc_btn_colored_material -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_1 -androidx.preference.R$styleable: int AppCompatTheme_actionBarStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeApparentTemperature -com.google.android.material.R$styleable: int TextInputLayout_prefixText -com.turingtechnologies.materialscrollbar.R$id: int tag_unhandled_key_listeners -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableCompatState: int getChangingConfigurations() -retrofit2.RequestFactory$Builder: boolean gotQuery -androidx.appcompat.R$dimen: int abc_dialog_title_divider_material -okio.RealBufferedSource: java.lang.String readString(java.nio.charset.Charset) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onTimeoutError(long,java.lang.Throwable) -cyanogenmod.app.CMContextConstants: java.lang.String CM_PERFORMANCE_SERVICE -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: boolean requestDismiss() -cyanogenmod.hardware.CMHardwareManager: boolean registerThermalListener(cyanogenmod.hardware.ThermalListenerCallback) -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: long serialVersionUID -androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.LifecycleRegistry mRegistry -androidx.appcompat.R$style: int Widget_AppCompat_Spinner_DropDown -wangdaye.com.geometricweather.R$attr: int submitBackground -com.google.android.material.R$attr: int overlapAnchor -androidx.appcompat.R$attr: int textAppearanceSearchResultSubtitle -com.google.android.material.internal.ParcelableSparseBooleanArray: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$styleable: int TextAppearance_textLocale -okhttp3.internal.platform.AndroidPlatform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) -wangdaye.com.geometricweather.R$string: int feedback_unusable_geocoder -androidx.swiperefreshlayout.R$drawable: int notification_tile_bg -androidx.hilt.R$styleable: int GradientColor_android_centerColor -okio.SegmentedByteString: java.lang.String string(java.nio.charset.Charset) -wangdaye.com.geometricweather.R$styleable: int[] MaterialCalendar -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: boolean isDisposed() -com.jaredrummler.android.colorpicker.R$id: int group_divider -wangdaye.com.geometricweather.R$attr: int windowFixedWidthMinor -androidx.appcompat.R$id: int progress_circular -james.adaptiveicon.R$color: int abc_hint_foreground_material_dark -com.google.android.material.R$id: int aligned -com.google.android.material.R$styleable: int Constraint_android_layout_marginStart -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setAdaptiveWidthEnabled(boolean) -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -androidx.constraintlayout.widget.R$id: int radio -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarPopupTheme -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_collapsedSize -android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMark -wangdaye.com.geometricweather.R$id: int showTitle -com.turingtechnologies.materialscrollbar.R$anim: int abc_tooltip_exit -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle -androidx.appcompat.widget.AppCompatSpinner: android.content.Context getPopupContext() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getWetBulbTemperature() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWindLevel() -wangdaye.com.geometricweather.R$attr: int preferenceFragmentStyle -okhttp3.Protocol: Protocol(java.lang.String,int,java.lang.String) -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerNext() -com.google.android.material.R$attr: int itemHorizontalPadding -okhttp3.internal.http.RealInterceptorChain: int connectTimeout -androidx.legacy.coreutils.R$attr: int fontStyle -androidx.preference.R$styleable: int AppCompatTheme_windowFixedWidthMinor -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -android.didikee.donate.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.R$layout: int container_main_first_card_header -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf -androidx.drawerlayout.R$id: int time -com.tencent.bugly.proguard.i: void a() -androidx.constraintlayout.widget.R$attr: int progressBarPadding -androidx.legacy.coreutils.R$layout: int notification_action -okio.Segment: okio.Segment sharedCopy() -androidx.hilt.R$id: int text -androidx.customview.R$styleable: int GradientColorItem_android_offset -androidx.appcompat.R$attr: int windowActionModeOverlay -wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_background_color -com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean j -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$b -androidx.constraintlayout.widget.R$attr: int dropdownListPreferredItemHeight -wangdaye.com.geometricweather.R$id: int search_src_text -james.adaptiveicon.R$styleable: int TextAppearance_android_textColorHint -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: void setY(java.lang.String) -com.turingtechnologies.materialscrollbar.R$string: int abc_search_hint -okhttp3.internal.http2.Hpack$Writer: int nextHeaderIndex -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeight -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2 -android.didikee.donate.R$styleable: int SwitchCompat_android_thumb -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSearchResultSubtitle -wangdaye.com.geometricweather.R$style: int Preference_SeekBarPreference_Material -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean checkTerminate() -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_allowDividerAfterLastItem -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setProvince(java.lang.String) -com.google.android.material.R$string: int mtrl_picker_toggle_to_text_input_mode -com.tencent.bugly.proguard.i: void a(byte) -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginBottom -com.tencent.bugly.proguard.p: java.util.Map a(int,com.tencent.bugly.proguard.o,boolean) -androidx.constraintlayout.widget.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.R$dimen: int design_snackbar_elevation -wangdaye.com.geometricweather.R$string: int key_notification_temp_icon -com.google.android.material.R$attr: int chipStyle -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -james.adaptiveicon.R$styleable: int View_paddingStart -androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStore,androidx.lifecycle.ViewModelProvider$Factory) -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getDirection() -com.google.android.material.R$styleable: int ProgressIndicator_trackColor -android.didikee.donate.R$style: int TextAppearance_AppCompat_Inverse -okhttp3.internal.cache2.Relay: int sourceCount -androidx.fragment.R$dimen: int notification_big_circle_margin -com.google.android.material.R$styleable: int TextInputLayout_counterMaxLength -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onNext(java.lang.Object) -androidx.preference.R$styleable: int AppCompatTheme_colorControlActivated -androidx.customview.R$id: int right_side -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_fontFamily -androidx.preference.R$styleable: int PopupWindow_android_popupBackground -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_25 -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HourlyEntityDao hourlyEntityDao -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_trackTintMode -com.turingtechnologies.materialscrollbar.R$attr: int title -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Borderless -wangdaye.com.geometricweather.R$attr: int scrimBackground -androidx.appcompat.widget.Toolbar: void setCollapsible(boolean) -wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_date -com.bumptech.glide.R$string -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: org.reactivestreams.Subscriber downstream -wangdaye.com.geometricweather.db.entities.DailyEntityDao -com.tencent.bugly.b: boolean e -androidx.constraintlayout.widget.R$dimen: int abc_dialog_min_width_minor -androidx.dynamicanimation.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit PERCENT -com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableTransition -cyanogenmod.themes.IThemeService -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarButtonStyle -com.google.android.material.internal.NavigationMenuItemView: void setIconTintList(android.content.res.ColorStateList) -com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(com.tencent.bugly.proguard.k,java.lang.String) -com.google.android.material.datepicker.DateValidatorPointForward -okhttp3.internal.platform.Jdk9Platform -wangdaye.com.geometricweather.R$color: int mtrl_scrim_color -androidx.preference.R$id: int accessibility_custom_action_22 -com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_top_outer_color -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_maxImageSize -com.google.android.material.R$layout: int design_text_input_end_icon -com.google.android.material.bottomappbar.BottomAppBar: android.content.res.ColorStateList getBackgroundTint() -wangdaye.com.geometricweather.R$color: int colorTextSubtitle -androidx.appcompat.R$color: int material_blue_grey_950 -okio.DeflaterSink -wangdaye.com.geometricweather.main.dialogs.HourlyWeatherDialog -okhttp3.OkHttpClient$Builder: okhttp3.Authenticator proxyAuthenticator -com.tencent.bugly.proguard.am: void a(com.tencent.bugly.proguard.j) -androidx.fragment.R$styleable: int GradientColor_android_centerY -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveDecay -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_small_material -android.didikee.donate.R$styleable: int AppCompatImageView_tint -com.amap.api.location.AMapLocation: void setLocationDetail(java.lang.String) -cyanogenmod.app.ProfileGroup$1: cyanogenmod.app.ProfileGroup createFromParcel(android.os.Parcel) -okhttp3.internal.http2.Hpack$Writer: Hpack$Writer(okio.Buffer) -cyanogenmod.profiles.RingModeSettings: RingModeSettings(android.os.Parcel) -com.tencent.bugly.proguard.af: byte[] b(byte[]) -okhttp3.internal.cache.DiskLruCache: java.lang.String REMOVE -androidx.hilt.R$dimen: R$dimen() -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColorSchemeColor(int) -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink -com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -james.adaptiveicon.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_elevation -com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_backgroundTintMode -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CUSTOM_VALUES_VALIDATOR -wangdaye.com.geometricweather.R$array: int location_services -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_9 -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: java.lang.String Unit -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity: TextWidgetConfigActivity() -androidx.activity.R$id: int accessibility_custom_action_11 -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_toLeftOf -androidx.hilt.work.R$id: int line3 -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getNO2() -androidx.constraintlayout.widget.R$attr: int thumbTintMode -wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_chainStyle -androidx.appcompat.resources.R$id: int tag_unhandled_key_listeners -androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingStart -androidx.appcompat.R$styleable: int SwitchCompat_thumbTextPadding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: void setTo(java.lang.String) -com.tencent.bugly.proguard.aj: aj() -androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context,android.util.AttributeSet,int) -okio.Okio$1: void flush() -androidx.appcompat.R$id: int action_divider -com.bumptech.glide.R$dimen: int notification_subtext_size -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean done -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: void setX(java.lang.String) -cyanogenmod.weather.util.WeatherUtils: double celsiusToFahrenheit(double) -wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_doneBtn -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: boolean isDisposed() -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_counter_margin_start -com.jaredrummler.android.colorpicker.R$id: int textSpacerNoButtons -james.adaptiveicon.R$dimen: int abc_action_bar_elevation_material -james.adaptiveicon.R$attr: int logoDescription -androidx.appcompat.widget.AppCompatEditText: void setBackgroundResource(int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -androidx.work.R$styleable: int GradientColor_android_centerY -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: int hashCode() -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.AlertEntityDao getAlertEntityDao() -androidx.appcompat.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_27 -androidx.core.R$color: int androidx_core_ripple_material_light -androidx.appcompat.widget.AppCompatCheckBox: void setSupportButtonTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language HUNGARIAN -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String BriefPhrase -androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windSpeedEnd -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind wind -androidx.vectordrawable.R$styleable: int ColorStateListItem_android_color -androidx.appcompat.R$color: int background_floating_material_dark -com.turingtechnologies.materialscrollbar.R$layout: int design_menu_item_action_area -androidx.constraintlayout.widget.R$id: int tag_accessibility_pane_title -androidx.preference.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_textColorHint -com.turingtechnologies.materialscrollbar.R$attr: int switchPadding -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.Observer downstream -com.google.android.material.R$style: int Widget_AppCompat_TextView_SpinnerItem -androidx.constraintlayout.helper.widget.Flow: void setVerticalBias(float) -androidx.preference.R$drawable: int abc_ic_search_api_material -androidx.appcompat.resources.R$id: int accessibility_custom_action_10 -com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Light -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomSheet -androidx.constraintlayout.widget.R$color: int abc_tint_default -com.turingtechnologies.materialscrollbar.R$color: int primary_material_dark -okio.Sink: void close() -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_icon_padding -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.Lifecycle mLifecycle -androidx.fragment.R$attr: int fontProviderPackage -androidx.viewpager2.R$drawable: int notification_template_icon_low_bg -cyanogenmod.providers.CMSettings$Secure: java.lang.String APP_PERFORMANCE_PROFILES_ENABLED -james.adaptiveicon.R$id: int multiply -androidx.appcompat.R$attr: int queryHint -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets -android.support.v4.os.IResultReceiver$Default: IResultReceiver$Default() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String windDirection -james.adaptiveicon.R$attr: int actionBarItemBackground -okhttp3.OkHttpClient$Builder: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner -androidx.recyclerview.R$id: int notification_main_column_container -com.jaredrummler.android.colorpicker.R$styleable: int[] GradientColor -com.google.android.material.R$id: int easeOut -androidx.fragment.R$styleable: int FontFamilyFont_fontWeight -cyanogenmod.library.R$styleable: int LiveLockScreen_type -com.bumptech.glide.R$string: R$string() -com.autonavi.aps.amapapi.model.AMapLocationServer: void b(org.json.JSONObject) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -androidx.constraintlayout.widget.R$attr: int buttonBarButtonStyle -io.reactivex.Observable: io.reactivex.Observable switchMapSingle(io.reactivex.functions.Function) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: WeatherContract$WeatherColumns$WeatherCode() -com.amap.api.location.AMapLocationQualityReport: boolean g -androidx.appcompat.R$styleable: int LinearLayoutCompat_divider -com.google.android.gms.common.server.converter.StringToIntConverter$zaa: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.util.Date EndTime -androidx.hilt.work.R$dimen: int compat_button_padding_vertical_material -com.jaredrummler.android.colorpicker.R$attr: int fontProviderAuthority -android.didikee.donate.R$styleable: int AppCompatTheme_dialogCornerRadius -retrofit2.RequestBuilder: char[] HEX_DIGITS -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_71 -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -okio.SegmentedByteString: okio.ByteString toAsciiLowercase() -cyanogenmod.content.Intent: java.lang.String ACTION_THEME_UPDATED -com.google.android.material.R$attr: int itemIconPadding -wangdaye.com.geometricweather.R$attr: int layout_constraintCircleRadius -wangdaye.com.geometricweather.R$id: int notification_multi_city_text_3 -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -com.amap.api.location.AMapLocation: void setAdCode(java.lang.String) -io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.functions.Consumer) -androidx.lifecycle.extensions.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.R$id: int view_offset_helper -androidx.preference.R$styleable: int AppCompatTheme_colorControlHighlight -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: AccuDailyResult$DailyForecasts$Sun() -androidx.lifecycle.Lifecycling: int getObserverConstructorType(java.lang.Class) -wangdaye.com.geometricweather.R$animator: int weather_clear_night_1 -androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionListener(androidx.constraintlayout.motion.widget.MotionLayout$TransitionListener) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight -androidx.preference.R$color -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String logo -androidx.preference.R$styleable: int AppCompatTextView_textLocale -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: java.lang.String icon -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -wangdaye.com.geometricweather.db.entities.WeatherEntity: long getTimeStamp() -androidx.activity.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_end -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.lang.Throwable error -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_top_padding -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -android.didikee.donate.R$dimen: int abc_cascading_menus_min_smallest_width -androidx.appcompat.R$styleable: int PopupWindow_android_popupAnimationStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView_DropDown -retrofit2.KotlinExtensions$awaitResponse$2$2: void onResponse(retrofit2.Call,retrofit2.Response) -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_top -io.reactivex.Observable: io.reactivex.Observable delaySubscription(io.reactivex.ObservableSource) -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void setLiveLockScreenEnabled(boolean) -com.google.android.material.chip.Chip: void setTextAppearance(com.google.android.material.resources.TextAppearance) -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getLongTemperatureText(android.content.Context,int) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean delayErrors -wangdaye.com.geometricweather.R$id: int transition_position -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontStyle -com.turingtechnologies.materialscrollbar.R$attr: int fabCradleRoundedCornerRadius -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: int unitArrayIndex -androidx.recyclerview.R$id: int italic -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeAppearanceOverlay -com.turingtechnologies.materialscrollbar.MaterialScrollBar -wangdaye.com.geometricweather.R$attr: int msb_recyclerView -androidx.viewpager2.widget.ViewPager2: void setAdapter(androidx.recyclerview.widget.RecyclerView$Adapter) -com.google.android.material.R$styleable: int AppBarLayoutStates_state_lifted -androidx.viewpager.R$id: int notification_main_column -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -com.google.android.material.R$attr: int trackTintMode -wangdaye.com.geometricweather.R$string: int widget_trend_daily -androidx.appcompat.app.AppCompatViewInflater: AppCompatViewInflater() -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$color: int bright_foreground_material_dark -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onSearchRequested(android.view.SearchEvent) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_hideOnContentScroll -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: AndroidPlatform$AndroidTrustRootIndex(javax.net.ssl.X509TrustManager,java.lang.reflect.Method) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver -androidx.preference.R$attr: int editTextPreferenceStyle -wangdaye.com.geometricweather.R$style: int Platform_AppCompat -com.google.android.material.R$id: int chain -androidx.activity.R$styleable: int ColorStateListItem_alpha -io.reactivex.Observable: io.reactivex.Observable skip(long) -androidx.customview.R$id: int blocking -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String admin2 -com.google.android.material.R$color: int mtrl_choice_chip_ripple_color -com.jaredrummler.android.colorpicker.R$color: int foreground_material_dark -com.amap.api.fence.PoiItem: java.lang.String getAddress() -androidx.dynamicanimation.R$string -androidx.drawerlayout.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: double Value -androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context) -okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeWithoutCheckedException(java.lang.Object,java.lang.Object[]) -com.google.android.material.R$styleable: int KeyPosition_pathMotionArc -wangdaye.com.geometricweather.R$id: int dragDown -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_scaleX -androidx.viewpager2.R$layout: int custom_dialog -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_onAttachedToWindow -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeApparentTemperature -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean isDisposed() -androidx.work.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: double Value -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Body1 -androidx.hilt.lifecycle.R$attr: int fontProviderFetchStrategy -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean) -androidx.constraintlayout.widget.R$attr: int customColorValue -wangdaye.com.geometricweather.R$styleable: int[] CollapsingToolbarLayout -com.jaredrummler.android.colorpicker.R$layout: int preference_category_material -com.google.gson.stream.JsonReader: void beginArray() -wangdaye.com.geometricweather.R$styleable: int Preference_fragment -androidx.work.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.R$color: int error_color_material_light -com.jaredrummler.android.colorpicker.R$attr: int titleTextStyle -james.adaptiveicon.R$layout: int abc_alert_dialog_title_material -androidx.fragment.R$drawable -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constrainedHeight -androidx.appcompat.R$color: int primary_dark_material_light -com.google.android.gms.location.GeofencingRequest -com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarTextViewStyle -wangdaye.com.geometricweather.R$anim: int abc_slide_in_bottom -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderAuthority -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_switchTextOff -james.adaptiveicon.R$attr: int backgroundSplit -androidx.dynamicanimation.R$id: int text -androidx.swiperefreshlayout.R$id: int tag_unhandled_key_event_manager -androidx.appcompat.widget.Toolbar: int getCurrentContentInsetStart() -okhttp3.internal.Util: boolean containsInvalidHostnameAsciiCodes(java.lang.String) -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: void run() -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotationY -com.google.android.material.R$attr: int motionStagger -com.tencent.bugly.crashreport.common.info.a: long a -com.tencent.bugly.crashreport.common.info.b: int w() -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean isDisposed() -okhttp3.internal.tls.DistinguishedNameParser: DistinguishedNameParser(javax.security.auth.x500.X500Principal) -wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_grey -androidx.customview.R$style: int TextAppearance_Compat_Notification_Info -com.tencent.bugly.crashreport.biz.a: boolean d -androidx.preference.R$styleable: int Toolbar_maxButtonHeight -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int NOT_AVAILABLE -cyanogenmod.app.Profile$NotificationLightMode: int ENABLE -james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.google.android.material.R$styleable: int TabLayout_tabUnboundedRipple -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableStartCompat -com.github.rahatarmanahmed.cpv.R$attr: int cpv_startAngle -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedWidthMinor -retrofit2.RequestBuilder: void setRelativeUrl(java.lang.Object) -com.amap.api.fence.GeoFenceManagerBase: void addRoundGeoFence(com.amap.api.location.DPoint,float,java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed Speed -androidx.constraintlayout.widget.R$drawable: int abc_ic_voice_search_api_material -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Tooltip -com.jaredrummler.android.colorpicker.R$layout: int abc_activity_chooser_view_list_item -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit MUGPCUM -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Request followUpRequest(okhttp3.Response,okhttp3.Route) -cyanogenmod.providers.CMSettings$Global: boolean isLegacySetting(java.lang.String) -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type[] values() -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginEnd -androidx.preference.R$dimen: int compat_button_padding_horizontal_material -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: long serialVersionUID -james.adaptiveicon.R$styleable: int ColorStateListItem_android_alpha -okio.ByteString: okio.ByteString digest(java.lang.String) -com.tencent.bugly.proguard.j: void a(int,int) -androidx.appcompat.widget.Toolbar: int getContentInsetStart() -okhttp3.internal.http2.Settings: void clear() -com.tencent.bugly.proguard.u: void a(com.tencent.bugly.proguard.u,int) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastHorizontalBias -okhttp3.CipherSuite: java.util.Map INSTANCES -wangdaye.com.geometricweather.R$string: int feedback_short_term_precipitation_alert -androidx.dynamicanimation.R$styleable: int[] FontFamilyFont -androidx.appcompat.R$attr: int lastBaselineToBottomHeight -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -androidx.constraintlayout.widget.R$attr: int motion_triggerOnCollision -wangdaye.com.geometricweather.R$dimen: int design_snackbar_min_width -okhttp3.internal.http2.Http2Connection$Builder: java.net.Socket socket -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String country -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String Phrase -com.jaredrummler.android.colorpicker.R$id: int transparency_title -androidx.dynamicanimation.R$drawable: int notification_bg_low -com.google.android.material.navigation.NavigationView: android.content.res.ColorStateList getItemTextColor() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf -com.google.android.material.bottomappbar.BottomAppBar: void setTitle(java.lang.CharSequence) -cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_WAKE_SCREEN -wangdaye.com.geometricweather.R$id: int gridView -com.google.android.material.textfield.TextInputLayout: void setErrorEnabled(boolean) -android.didikee.donate.R$style: int Theme_AppCompat_NoActionBar -wangdaye.com.geometricweather.R$style -com.google.android.material.R$attr: int haloColor -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -androidx.appcompat.R$style: int Widget_AppCompat_SearchView -wangdaye.com.geometricweather.R$drawable: int notif_temp_34 -wangdaye.com.geometricweather.R$drawable: int notif_temp_42 -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: java.util.concurrent.atomic.AtomicInteger wip -okio.Buffer: okio.BufferedSink writeDecimalLong(long) -androidx.swiperefreshlayout.R$id: int notification_background -wangdaye.com.geometricweather.R$anim: int abc_slide_out_top -androidx.work.R$layout: int notification_template_part_chronometer -com.github.rahatarmanahmed.cpv.CircularProgressView: java.util.List listeners -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.internal.disposables.SequentialDisposable upstream -androidx.customview.R$dimen: int compat_button_padding_vertical_material -io.reactivex.Observable: io.reactivex.Single contains(java.lang.Object) -okhttp3.internal.ws.RealWebSocket$PingRunnable: void run() -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio -com.google.android.material.slider.Slider: void setHaloRadiusResource(int) -wangdaye.com.geometricweather.R$styleable: int Variant_region_widthMoreThan -androidx.preference.R$styleable: int AppCompatTheme_dialogTheme -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_tooltipForegroundColor -okio.ForwardingSink: ForwardingSink(okio.Sink) -android.didikee.donate.R$dimen: int abc_action_bar_stacked_max_height -androidx.cardview.widget.CardView: void setCardElevation(float) -wangdaye.com.geometricweather.R$id: int resident_icon -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource getInstance(java.lang.String) -androidx.hilt.R$dimen: int compat_button_padding_horizontal_material -com.jaredrummler.android.colorpicker.R$styleable: int[] Preference -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline3 -com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_disable_only_material_dark -androidx.preference.R$styleable: int AlertDialog_buttonIconDimen -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: io.reactivex.MaybeSource other -com.google.android.material.R$dimen: int material_emphasis_medium -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline2 -okhttp3.internal.http.CallServerInterceptor$CountingSink: void write(okio.Buffer,long) -com.github.rahatarmanahmed.cpv.CircularProgressView -wangdaye.com.geometricweather.R$style: int content_text -com.jaredrummler.android.colorpicker.R$integer: int status_bar_notification_info_maxnum -james.adaptiveicon.R$style: int Widget_AppCompat_ListView_DropDown -android.didikee.donate.R$attr: int colorControlActivated -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HOT -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void drain() -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver -androidx.preference.R$styleable: int AppCompatTheme_borderlessButtonStyle -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdp -androidx.appcompat.R$attr: int dividerPadding -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getDescription() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX) -wangdaye.com.geometricweather.R$id: int parent_matrix -androidx.recyclerview.R$string -wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity: DayWidgetConfigActivity() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogTheme -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_scaleX -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelBackground -okhttp3.internal.cache.CacheStrategy$Factory: CacheStrategy$Factory(long,okhttp3.Request,okhttp3.Response) -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback -androidx.hilt.work.R$attr: int fontWeight -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty6H -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconSize -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_HourlyEntityListQuery -androidx.vectordrawable.R$id: int forever -wangdaye.com.geometricweather.R$dimen: int cpv_color_preference_large -androidx.appcompat.R$drawable: int abc_list_pressed_holo_dark -androidx.cardview.R$attr: int contentPadding -retrofit2.Utils: java.lang.reflect.Type getSupertype(java.lang.reflect.Type,java.lang.Class,java.lang.Class) -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Info -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_4_material -cyanogenmod.themes.IThemeService$Stub: cyanogenmod.themes.IThemeService asInterface(android.os.IBinder) -cyanogenmod.providers.DataUsageContract: java.lang.String CONTENT_TYPE -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetRight -androidx.preference.DropDownPreference: DropDownPreference(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_stacked_max_height -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_AutoCompleteTextView -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: IWeatherProviderServiceClient$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setPubTime(java.util.Date) -androidx.preference.R$color: int material_grey_50 -cyanogenmod.app.CMTelephonyManager: void setSubState(int,boolean) -wangdaye.com.geometricweather.R$id: int material_value_index -okhttp3.MultipartBody: int size() -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void dispose() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Counter_Overflow -io.reactivex.internal.observers.InnerQueuedObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: int UnitType -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_31 -androidx.preference.R$id: int group_divider -androidx.constraintlayout.widget.R$style: int Base_V26_Theme_AppCompat -okhttp3.internal.http2.Http2Stream: void receiveHeaders(java.util.List) -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks mKeyguardExternalViewCallbacks -com.google.android.gms.base.R$string: int common_google_play_services_install_text -androidx.constraintlayout.widget.R$bool: R$bool() -androidx.fragment.app.DialogFragment -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: void detach() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_137 -com.github.rahatarmanahmed.cpv.CircularProgressView$5 -com.google.android.gms.common.internal.zaw: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyleSmall -android.didikee.donate.R$dimen: int abc_select_dialog_padding_start_material -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -cyanogenmod.weather.WeatherLocation: java.lang.String getCity() -androidx.lifecycle.ClassesInfoCache: boolean hasLifecycleMethods(java.lang.Class) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_toLeftOf -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: long EpochSet -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: void setHistogramAlpha(float) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox -okhttp3.internal.connection.RealConnection: java.lang.String toString() -com.baidu.location.e.h$a: com.baidu.location.e.h$a[] values() -okio.Okio: okio.AsyncTimeout timeout(java.net.Socket) -io.reactivex.internal.schedulers.ScheduledDirectTask: ScheduledDirectTask(java.lang.Runnable) -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_navigationContentDescription -androidx.constraintlayout.utils.widget.ImageFilterView: void setSaturation(float) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Title -io.reactivex.Observable: io.reactivex.Observable intervalRange(long,long,long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.lifecycle.LifecycleRegistry -androidx.lifecycle.ProcessLifecycleOwner$1: ProcessLifecycleOwner$1(androidx.lifecycle.ProcessLifecycleOwner) -com.google.android.material.R$dimen: int abc_text_size_subtitle_material_toolbar -james.adaptiveicon.R$style: int Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_container -com.amap.api.location.AMapLocationClient: com.amap.api.location.AMapLocation getLastKnownLocation() -androidx.activity.R$drawable: int notification_bg_normal -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setUserInfoActivity(java.lang.Class) -com.google.android.material.navigation.NavigationView: void setItemHorizontalPaddingResource(int) -androidx.legacy.coreutils.R$layout -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -wangdaye.com.geometricweather.R$string: int content_des_no_precipitation -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_53 -com.google.android.material.R$attr: int dayStyle -androidx.lifecycle.ProcessLifecycleOwner$2: ProcessLifecycleOwner$2(androidx.lifecycle.ProcessLifecycleOwner) -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline4 -okhttp3.internal.Internal: void apply(okhttp3.ConnectionSpec,javax.net.ssl.SSLSocket,boolean) -com.xw.repo.bubbleseekbar.R$attr: int listPopupWindowStyle -com.google.gson.stream.JsonReader: java.lang.String nextString() -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_bias -android.didikee.donate.R$color: int material_grey_600 -cyanogenmod.weatherservice.WeatherProviderService: WeatherProviderService() -okhttp3.internal.Util: boolean isAndroidGetsocknameError(java.lang.AssertionError) -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_OBJECT -james.adaptiveicon.R$attr: int buttonGravity -wangdaye.com.geometricweather.R$id: int bottom -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -com.google.android.material.R$style: int Base_Animation_AppCompat_Dialog -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: long maxAge -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Body2 -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -com.google.android.material.R$attr: int textAppearanceSubtitle2 -cyanogenmod.platform.Manifest$permission: java.lang.String MANAGE_PERSISTENT_STORAGE -androidx.constraintlayout.widget.R$attr: int tooltipFrameBackground -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Chip -wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedDescription(java.lang.String) -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_TopRightDifferentCornerSize -wangdaye.com.geometricweather.R$string: int feedback_ignore_battery_optimizations_content -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: double Value -com.google.android.material.button.MaterialButton: int getCornerRadius() -android.didikee.donate.R$id: int decor_content_parent -wangdaye.com.geometricweather.R$plurals -androidx.work.impl.WorkDatabase -androidx.constraintlayout.widget.R$interpolator -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: java.util.List getSubInformation() -wangdaye.com.geometricweather.R$array: int clock_font -com.google.android.material.R$styleable: int RecycleListView_paddingBottomNoButtons -androidx.preference.R$styleable: int Spinner_android_dropDownWidth -com.google.android.material.R$styleable: int KeyTimeCycle_android_translationY -wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionContainer -androidx.lifecycle.extensions.R$dimen: int notification_small_icon_background_padding -com.xw.repo.bubbleseekbar.R$attr: int tickMark -android.didikee.donate.R$drawable: int abc_btn_radio_to_on_mtrl_000 -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: CaiYunMainlyResult$AlertsBean$ImagesBean() -wangdaye.com.geometricweather.R$attr: int titleTextAppearance -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: int UnitType -androidx.preference.R$attr: int subtitleTextColor -wangdaye.com.geometricweather.R$string: int abc_searchview_description_query -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixTextAppearance -wangdaye.com.geometricweather.db.entities.HourlyEntityDao -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_clear_material -androidx.coordinatorlayout.R$drawable: int notification_bg -androidx.preference.R$styleable: int CoordinatorLayout_keylines -okio.Pipe$PipeSource: okio.Timeout timeout -wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_night_foreground -com.google.android.material.R$id: int scrollable -com.tencent.bugly.crashreport.common.info.a: java.lang.Object aw -wangdaye.com.geometricweather.R$color: int button_material_light -androidx.activity.R$drawable: int notification_icon_background -com.google.android.material.R$id: int fill -android.didikee.donate.R$attr: int dropDownListViewStyle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingTop -com.amap.api.location.AMapLocationClientOption: long getHttpTimeOut() -wangdaye.com.geometricweather.R$drawable: int notif_temp_46 -wangdaye.com.geometricweather.R$styleable: int[] MaterialButtonToggleGroup -android.didikee.donate.R$style: int Base_Widget_AppCompat_Toolbar -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_normal -androidx.appcompat.resources.R$id: int tag_accessibility_clickable_spans -james.adaptiveicon.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setBottomText(java.lang.String) -androidx.preference.R$styleable: int AppCompatTheme_windowNoTitle -androidx.appcompat.R$style: int Widget_Compat_NotificationActionContainer -com.bumptech.glide.R$attr: R$attr() -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData -com.turingtechnologies.materialscrollbar.R$drawable: int abc_spinner_mtrl_am_alpha -androidx.appcompat.resources.R$styleable: int[] FontFamilyFont -com.google.android.material.tabs.TabLayout$TabView: void setSelected(boolean) -androidx.appcompat.widget.AppCompatRadioButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableLeft -cyanogenmod.app.CustomTile$ExpandedStyle: int GRID_STYLE -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.R$id: int notification_big_week_4 -com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Object) -com.amap.api.fence.PoiItem: java.lang.String b -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_popupMenuStyle -com.google.android.material.R$styleable: int CompoundButton_buttonCompat -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetLeft -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.main.dialogs.BackgroundLocationDialog: BackgroundLocationDialog() -androidx.lifecycle.ViewModel: ViewModel() -wangdaye.com.geometricweather.R$styleable: int RecycleListView_paddingTopNoTitle -androidx.appcompat.widget.ActionMenuPresenter$OverflowPopup -com.turingtechnologies.materialscrollbar.R$styleable: int[] Chip -androidx.viewpager.widget.ViewPager: void removeOnAdapterChangeListener(androidx.viewpager.widget.ViewPager$OnAdapterChangeListener) -androidx.constraintlayout.widget.R$styleable: int[] Transition -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.internal.fuseable.SimpleQueue queue -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_EditText -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_menu_item -okhttp3.Cache$Entry: void writeTo(okhttp3.internal.cache.DiskLruCache$Editor) -retrofit2.OkHttpCall: okhttp3.Call createRawCall() -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_icon_null_animation -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleGravity() -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: java.util.concurrent.TimeUnit unit -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeight -com.tencent.bugly.crashreport.crash.CrashDetailBean: byte[] y -androidx.constraintlayout.widget.R$color: int abc_secondary_text_material_dark -com.google.android.material.R$attr: int listPreferredItemHeightLarge -com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_pressed -com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector DAY -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum Minimum -com.google.android.material.R$attr: int actionProviderClass -okhttp3.Cookie$Builder: boolean httpOnly -androidx.constraintlayout.widget.R$drawable -androidx.hilt.lifecycle.R$dimen: int compat_button_padding_vertical_material -okhttp3.internal.http.HttpHeaders: int skipUntil(java.lang.String,int,java.lang.String) -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundTintList(android.content.res.ColorStateList) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: boolean requestDismissAndStartActivity(android.content.Intent) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getShortDate(android.content.Context) -androidx.preference.R$style: int Theme_AppCompat_Light_Dialog_Alert -androidx.constraintlayout.widget.R$attr: int customNavigationLayout -cyanogenmod.externalviews.ExternalViewProviderService$1$1: ExternalViewProviderService$1$1(cyanogenmod.externalviews.ExternalViewProviderService$1,android.os.Bundle) -androidx.constraintlayout.widget.R$style: int Base_V28_Theme_AppCompat -com.google.android.material.R$attr: int contentPaddingRight -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Info -com.xw.repo.bubbleseekbar.R$attr: int showDividers -com.google.android.material.R$integer: int mtrl_btn_anim_duration_ms -androidx.hilt.R$dimen: int notification_large_icon_height -com.google.android.material.R$attr: int gestureInsetBottomIgnored -android.didikee.donate.R$attr: int buttonStyleSmall -wangdaye.com.geometricweather.R$string: int settings_title_appearance -retrofit2.RequestFactory$Builder: boolean isKotlinSuspendFunction -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintDimensionRatio -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription,long) -com.google.android.material.R$layout: int abc_select_dialog_material -com.google.android.gms.common.server.response.FastJsonResponse$Field: com.google.android.gms.common.server.response.zaj CREATOR -wangdaye.com.geometricweather.R$attr: int yearTodayStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed -com.google.android.material.R$styleable: int ConstraintSet_flow_firstVerticalBias -cyanogenmod.app.Profile: android.os.Parcelable$Creator CREATOR -com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onProgressUpdateEnd(float) -com.jaredrummler.android.colorpicker.R$attr: int autoCompleteTextViewStyle -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$dimen: int abc_floating_window_z -com.google.android.material.R$style: int Base_Widget_AppCompat_ImageButton -com.google.android.material.R$styleable: int TabLayout_tabPaddingBottom -wangdaye.com.geometricweather.R$id: int item_alert_subtitle -androidx.preference.R$styleable: int TextAppearance_android_textSize -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display1 -okhttp3.Cookie: java.util.regex.Pattern TIME_PATTERN -com.tencent.bugly.crashreport.common.info.a: java.lang.String k() -okhttp3.internal.ws.WebSocketWriter: okio.Sink newMessageSink(int,long) -io.reactivex.exceptions.CompositeException: int size() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_ADJUST_SOUNDS_ENABLED_VALIDATOR -com.turingtechnologies.materialscrollbar.R$attr: int listPopupWindowStyle -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setCurrent(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean) -cyanogenmod.app.ICMStatusBarManager$Stub: cyanogenmod.app.ICMStatusBarManager asInterface(android.os.IBinder) -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha -com.google.gson.JsonIOException: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$styleable: int[] NavigationView -com.github.rahatarmanahmed.cpv.R$string: int app_name -androidx.preference.R$styleable: int AppCompatImageView_tint -io.reactivex.Observable: io.reactivex.Observable concatMap(io.reactivex.functions.Function,int) -io.reactivex.internal.util.NotificationLite: java.lang.Object next(java.lang.Object) -com.google.android.material.R$styleable: int MenuItem_android_onClick -wangdaye.com.geometricweather.R$styleable: int MotionLayout_motionDebug -wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_horizontal_setting -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindDegree -wangdaye.com.geometricweather.R$animator: int weather_thunder_1 -com.tencent.bugly.proguard.ai: java.util.ArrayList b -com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_FENCESTATUS -com.google.android.material.R$attr: int imageButtonStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: java.lang.String Unit -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.util.concurrent.atomic.AtomicLong requested -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getUnitId() -io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier INSTANCE -com.google.android.material.R$styleable: int CardView_android_minHeight -android.didikee.donate.R$color: int dim_foreground_disabled_material_light -androidx.appcompat.widget.Toolbar: void setNavigationOnClickListener(android.view.View$OnClickListener) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Medium -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light -com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_material -com.tencent.bugly.crashreport.common.info.a: boolean z -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderPackage -com.google.android.material.R$styleable: int Toolbar_android_gravity -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String w -com.google.android.material.R$styleable: int Constraint_barrierAllowsGoneWidgets -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_editor_absoluteY -com.google.android.material.R$styleable: int AppCompatImageView_srcCompat -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_android_minHeight -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onSucceed(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$integer: int config_tooltipAnimTime -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDaylight(boolean) -androidx.lifecycle.ProcessLifecycleOwnerInitializer: android.net.Uri insert(android.net.Uri,android.content.ContentValues) -com.github.rahatarmanahmed.cpv.R$attr: int cpv_progress -james.adaptiveicon.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -james.adaptiveicon.R$id: int textSpacerNoTitle -okhttp3.Connection -wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.appcompat.resources.R$drawable: int notification_tile_bg -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_height_major -androidx.activity.R$styleable: int FontFamily_fontProviderPackage -androidx.preference.R$id: int action_divider -okhttp3.internal.connection.RouteSelector: java.util.List postponedRoutes -com.xw.repo.bubbleseekbar.R$id: int content -com.google.android.material.R$styleable: int Layout_layout_constraintLeft_creator -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacing -com.google.android.material.slider.BaseSlider: java.util.List getValues() -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontStyle -com.tencent.bugly.proguard.z: java.lang.String a(android.content.Context,java.lang.String) -com.tencent.bugly.crashreport.crash.b -wangdaye.com.geometricweather.R$attr: int customBoolean -androidx.coordinatorlayout.R$layout: int notification_action -com.xw.repo.bubbleseekbar.R$color: int dim_foreground_material_dark -james.adaptiveicon.R$id: int submenuarrow -com.google.android.material.R$id: int accessibility_custom_action_21 -okhttp3.internal.http1.Http1Codec$FixedLengthSink: okio.Timeout timeout() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary TemperatureSummary -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setNewX(java.lang.String) -androidx.appcompat.R$style: int Widget_Compat_NotificationActionText -androidx.constraintlayout.widget.R$dimen: int tooltip_y_offset_touch -androidx.preference.R$attr: int editTextColor -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_minWidth -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetStartWithNavigation -okhttp3.internal.cache.DiskLruCache: void setMaxSize(long) -com.google.android.material.R$attr: int actionModeCutDrawable -com.tencent.bugly.crashreport.CrashReport: void closeNativeReport() -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType START -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -com.google.android.material.R$layout: int abc_search_view -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhase -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_NoActionBar -com.google.android.material.R$styleable: int AppBarLayout_Layout_layout_scrollFlags -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_thickness -james.adaptiveicon.R$anim: int abc_slide_in_bottom -com.turingtechnologies.materialscrollbar.R$attr: int cardBackgroundColor -com.google.android.material.R$style: int Base_AlertDialog_AppCompat -wangdaye.com.geometricweather.R$layout: int widget_remote -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -com.google.android.material.R$styleable: int AppCompatTheme_actionBarWidgetTheme -androidx.appcompat.R$styleable: int AppCompatTheme_selectableItemBackground -wangdaye.com.geometricweather.R$id: int widget_week_icon_1 -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginTop -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_77 -androidx.preference.R$id: int action_context_bar -com.bumptech.glide.R$drawable: int notification_bg_normal -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -okhttp3.Route: okhttp3.Address address() -com.tencent.bugly.proguard.u: boolean e() -androidx.appcompat.R$drawable: int abc_action_bar_item_background_material -com.google.android.material.R$styleable: int NavigationView_itemShapeFillColor -com.google.android.material.transformation.TransformationChildCard -androidx.work.R$id: R$id() -wangdaye.com.geometricweather.R$styleable: int LiveLockScreen_settingsActivity -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: Http1Codec$UnknownLengthSource(okhttp3.internal.http1.Http1Codec) -com.amap.api.fence.PoiItem: android.os.Parcelable$Creator getCreator() -retrofit2.Retrofit$Builder: Retrofit$Builder() -okhttp3.HttpUrl: java.lang.String FRAGMENT_ENCODE_SET_URI -com.google.android.material.R$attr: int passwordToggleTint -androidx.preference.R$attr: int drawableTopCompat -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode SYSTEM -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable -wangdaye.com.geometricweather.R$drawable: int abc_list_focused_holo -okhttp3.internal.http2.Http2: byte FLAG_ACK -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_bias -com.google.android.material.R$dimen: int abc_list_item_height_large_material -com.turingtechnologies.materialscrollbar.R$id: int multiply -com.google.android.material.textfield.TextInputLayout: void setEndIconDrawable(int) -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float rain -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -androidx.appcompat.resources.R$id: int normal -com.amap.api.location.DPoint -cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileManager getInstance(android.content.Context) -wangdaye.com.geometricweather.R$id: int stop -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.UV getUV() -wangdaye.com.geometricweather.R$styleable: int[] MaterialRadioButton -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: int UnitType -androidx.vectordrawable.R$id: int notification_main_column_container -okhttp3.RequestBody$2: int val$offset -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_textLocale -androidx.constraintlayout.widget.R$attr: int textAppearanceListItem -com.google.android.material.R$attr: int cornerFamilyTopLeft -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginEnd -androidx.transition.R$id: int line3 -com.google.android.material.internal.FlowLayout: void setItemSpacing(int) -com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: int getStatus() -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitationDuration() -cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String CITY_NAME -org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType valueOf(java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int toolbarNavigationButtonStyle -com.xw.repo.bubbleseekbar.R$id: int home -wangdaye.com.geometricweather.R$color: int design_default_color_secondary -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMarkTint -com.google.android.material.R$id: int content -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionDropDownStyle -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sunrise_sunset -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onComplete() -com.google.android.material.R$dimen: int material_clock_period_toggle_margin_left -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_gravity -com.jaredrummler.android.colorpicker.R$dimen -android.support.v4.app.INotificationSideChannel$Default: android.os.IBinder asBinder() -com.xw.repo.bubbleseekbar.R$attr: int bsb_min -com.tencent.bugly.proguard.ai: void a(com.tencent.bugly.proguard.j) -wangdaye.com.geometricweather.R$attr: int actionBarStyle -com.google.android.material.R$dimen: int material_font_1_3_box_collapsed_padding_top -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: Minutely(java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer) -androidx.core.R$attr -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: MfForecastV2Result() -com.baidu.location.indoor.c -retrofit2.ParameterHandler$PartMap: java.lang.String transferEncoding -androidx.constraintlayout.widget.R$color: int abc_tint_seek_thumb -androidx.constraintlayout.widget.R$string: int abc_searchview_description_clear -com.jaredrummler.android.colorpicker.R$id: int expand_activities_button -androidx.preference.R$dimen: int abc_text_size_display_2_material -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_menu_header_material -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: ObservableUnsubscribeOn$UnsubscribeObserver(io.reactivex.Observer,io.reactivex.Scheduler) -io.reactivex.internal.disposables.DisposableHelper: void reportDisposableSet() -androidx.lifecycle.SingleGeneratedAdapterObserver: SingleGeneratedAdapterObserver(androidx.lifecycle.GeneratedAdapter) -androidx.preference.R$attr: int titleMarginBottom -com.bumptech.glide.integration.okhttp.R$attr: int layout_dodgeInsetEdges -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display3 -androidx.constraintlayout.widget.R$dimen: int abc_disabled_alpha_material_light -com.google.android.material.R$attr: int moveWhenScrollAtTop -androidx.viewpager.R$dimen: int compat_button_padding_vertical_material -com.jaredrummler.android.colorpicker.ColorPanelView: void setColor(int) -com.google.android.material.circularreveal.CircularRevealGridLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -wangdaye.com.geometricweather.R$color: int preference_fallback_accent_color -wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean isEntityUpdateable() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_Design_TextInputEditText -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: void setFrom(java.lang.String) -io.reactivex.subjects.PublishSubject$PublishDisposable: void onNext(java.lang.Object) -androidx.appcompat.R$drawable: int abc_tab_indicator_mtrl_alpha -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -cyanogenmod.hardware.ICMHardwareService: byte[] readPersistentBytes(java.lang.String) -com.xw.repo.bubbleseekbar.R$dimen: int compat_notification_large_icon_max_height -androidx.core.R$id: int accessibility_custom_action_17 -okhttp3.Response$Builder: okhttp3.Response$Builder sentRequestAtMillis(long) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getVibratorIntensity() -androidx.hilt.R$styleable: int FontFamily_fontProviderCerts -androidx.preference.R$dimen: int abc_text_size_display_3_material -okhttp3.internal.ws.WebSocketWriter: okio.Buffer sinkBuffer -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean isDisposed() -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: boolean isDisposed() -okhttp3.internal.http2.Hpack$Writer: int maxDynamicTableByteCount -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetStart -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_subtitleTextStyle -com.tencent.bugly.proguard.am: java.lang.String i -androidx.appcompat.widget.Toolbar: void setCollapseContentDescription(int) -okio.Buffer: okio.BufferedSink write(byte[],int,int) -cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder mService -androidx.recyclerview.R$style: R$style() -com.jaredrummler.android.colorpicker.R$attr: int titleMargins -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SERBIAN -androidx.customview.R$styleable: int FontFamily_fontProviderAuthority -io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate) -okhttp3.internal.http2.Hpack$Writer: okio.Buffer out -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_pixel -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type ownerType -androidx.preference.R$attr: int actionMenuTextColor -com.google.android.material.R$styleable: int AppBarLayoutStates_state_collapsed -androidx.preference.R$styleable: int AlertDialog_singleChoiceItemLayout -com.google.android.material.R$dimen: int design_navigation_elevation -com.google.android.material.bottomnavigation.BottomNavigationView: android.view.Menu getMenu() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature temperature -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollHorizontalThumbDrawable -com.google.android.material.R$drawable: int abc_control_background_material -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginBottom(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.lang.String getUnit() -wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource) -com.xw.repo.bubbleseekbar.R$attr: int alertDialogCenterButtons -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -org.greenrobot.greendao.AbstractDao: java.util.List loadAllAndCloseCursor(android.database.Cursor) -cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileManager sProfileManagerInstance -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_action_area_stub -okhttp3.internal.http2.Http2Connection: Http2Connection(okhttp3.internal.http2.Http2Connection$Builder) -androidx.constraintlayout.widget.R$color: int button_material_dark -androidx.appcompat.R$id: int multiply -com.google.android.material.R$attr: int actionModeWebSearchDrawable -androidx.loader.R$styleable: int GradientColorItem_android_offset -okhttp3.internal.http2.Settings: int get(int) -okhttp3.internal.cache.DiskLruCache: java.lang.String DIRTY -androidx.constraintlayout.widget.R$styleable: int ActionBar_elevation -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_disabled_material_dark -cyanogenmod.app.LiveLockScreenManager -android.didikee.donate.R$styleable: int AppCompatTheme_listMenuViewStyle -cyanogenmod.platform.Manifest$permission: java.lang.String READ_ALARMS -com.google.android.material.R$drawable: int abc_seekbar_thumb_material -wangdaye.com.geometricweather.R$color: int design_default_color_on_primary -cyanogenmod.externalviews.ExternalView$7: ExternalView$7(cyanogenmod.externalviews.ExternalView) -androidx.appcompat.R$attr: int logo -androidx.fragment.R$id: int right_side -androidx.appcompat.R$color: int abc_secondary_text_material_light -androidx.constraintlayout.widget.R$id: int cos -okio.RealBufferedSink: okio.BufferedSink writeUtf8(java.lang.String,int,int) -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a: long a -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_SearchResult_Title -com.amap.api.location.AMapLocation: int ERROR_CODE_SERVICE_FAIL -okhttp3.internal.cache.DiskLruCache$3: boolean hasNext() -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver inner -androidx.preference.R$drawable: int abc_list_divider_mtrl_alpha -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String g() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop -retrofit2.BuiltInConverters$RequestBodyConverter: java.lang.Object convert(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchMinWidth -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPadding -wangdaye.com.geometricweather.R$layout: int item_weather_daily_value -androidx.appcompat.R$styleable: int SwitchCompat_thumbTintMode -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sunContainer -androidx.swiperefreshlayout.R$attr: R$attr() -com.tencent.bugly.crashreport.common.info.a: java.lang.String N() -com.tencent.bugly.proguard.v: com.tencent.bugly.crashreport.common.strategy.a g -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float o3 -androidx.appcompat.widget.ActionBarContextView: void setSubtitle(java.lang.CharSequence) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setPubTime(java.lang.String) -cyanogenmod.content.Intent: java.lang.String ACTION_INITIALIZE_CM_HARDWARE -androidx.appcompat.resources.R$id: R$id() -androidx.viewpager.widget.PagerTitleStrip: PagerTitleStrip(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$attr: int navigationContentDescription -okhttp3.HttpUrl$Builder: boolean isDotDot(java.lang.String) -androidx.appcompat.resources.R$id: int accessibility_custom_action_29 -wangdaye.com.geometricweather.R$string: int key_widget_multi_city -james.adaptiveicon.R$styleable: int ActionMode_subtitleTextStyle -com.google.android.material.R$attr: int materialAlertDialogTitleTextStyle -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayColorCalibration(int[]) -wangdaye.com.geometricweather.common.basic.models.weather.History: int getDaytimeTemperature() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void setInteractivity(boolean) -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: java.lang.String b(java.io.BufferedReader) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Button -androidx.hilt.R$id: int accessibility_custom_action_20 -androidx.preference.Preference -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -okhttp3.internal.http.RequestLine: RequestLine() -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String LAST_UPDATE_TIME -wangdaye.com.geometricweather.R$string: int key_widget_config -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_snackbar_margin -androidx.recyclerview.R$color: int ripple_material_light -com.google.android.material.R$style: int Widget_AppCompat_AutoCompleteTextView -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar -cyanogenmod.providers.CMSettings$System: java.lang.String DIALER_OPENCNAM_AUTH_TOKEN -okhttp3.CacheControl: boolean noCache -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: io.reactivex.Observer downstream -okhttp3.internal.Util: boolean skipAll(okio.Source,int,java.util.concurrent.TimeUnit) -androidx.drawerlayout.R$styleable: int FontFamilyFont_fontVariationSettings -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_colorShape -com.google.android.material.R$dimen: int notification_action_text_size -androidx.constraintlayout.widget.R$attr: int layoutDuringTransition -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedHeightMajor() -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Medium -okhttp3.internal.http2.Huffman: byte[] decode(byte[]) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setOnRefreshListener(androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnRefreshListener) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_DropDown -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getType() -com.turingtechnologies.materialscrollbar.R$attr: int tabSelectedTextColor -com.github.rahatarmanahmed.cpv.CircularProgressView$1 -com.jaredrummler.android.colorpicker.ColorPickerView: void setSliderTrackerColor(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric -androidx.fragment.R$styleable: int ColorStateListItem_android_color -com.jaredrummler.android.colorpicker.R$id: int action_mode_bar_stub -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory sInstance -wangdaye.com.geometricweather.R$layout: int abc_screen_simple -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.io.FileSystem fileSystem -retrofit2.Retrofit$Builder: retrofit2.Platform platform -okhttp3.OkHttpClient$Builder: java.net.ProxySelector proxySelector -com.google.android.material.R$id: int item_touch_helper_previous_elevation -okhttp3.HttpUrl: java.lang.String fragment -com.google.android.material.R$attr: int fontWeight -com.google.android.material.slider.BaseSlider: float[] getActiveRange() -com.jaredrummler.android.colorpicker.R$attr: int actionModeStyle -androidx.appcompat.widget.SearchView$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius -androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context,android.util.AttributeSet) -com.amap.api.location.AMapLocationClientOption: long r -okhttp3.internal.io.FileSystem$1: okio.Sink sink(java.io.File) -com.jaredrummler.android.colorpicker.ColorPickerView: void setOnColorChangedListener(com.jaredrummler.android.colorpicker.ColorPickerView$OnColorChangedListener) -android.didikee.donate.R$styleable: int TextAppearance_textAllCaps -com.google.android.material.chip.ChipGroup: void setFlexWrap(int) -com.jaredrummler.android.colorpicker.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$styleable: int CardView_android_minHeight -android.didikee.donate.R$style: int Base_V23_Theme_AppCompat -wangdaye.com.geometricweather.R$color: int colorTextSubtitle_light -com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_colored -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX) -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.R$string: int feedback_initializing -com.github.rahatarmanahmed.cpv.CircularProgressView: void setThickness(int) -androidx.constraintlayout.widget.R$attr: int sizePercent -androidx.appcompat.widget.AppCompatRadioButton -com.tencent.bugly.proguard.an: byte[] i -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotationX -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitationProbability -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_5 -com.tencent.bugly.crashreport.crash.anr.b: com.tencent.bugly.proguard.w e -androidx.appcompat.R$style: int TextAppearance_AppCompat_Menu -androidx.constraintlayout.widget.R$dimen: int notification_top_pad_large_text -okhttp3.internal.io.FileSystem$1: void rename(java.io.File,java.io.File) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Small -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_LOW_COLOR_VALIDATOR -androidx.preference.R$attr: int tooltipForegroundColor -androidx.hilt.R$styleable: int GradientColor_android_endColor -com.jaredrummler.android.colorpicker.R$id: int notification_main_column_container -androidx.preference.R$dimen: int notification_subtext_size -androidx.appcompat.resources.R$layout: R$layout() -com.google.android.material.R$id: int title_template -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -james.adaptiveicon.R$color: int primary_text_disabled_material_light -androidx.preference.R$style: int Base_Theme_AppCompat -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver -androidx.vectordrawable.animated.R$styleable: int[] FontFamilyFont -androidx.appcompat.R$styleable: int AppCompatTheme_imageButtonStyle -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_editor_absoluteX -okhttp3.internal.connection.RouteSelector$Selection: int nextRouteIndex -androidx.appcompat.R$style: int TextAppearance_AppCompat_Inverse -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_material -androidx.cardview.R$styleable: int CardView_contentPaddingBottom -androidx.appcompat.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean url -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lat -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_toolbarStyle -retrofit2.BuiltInConverters$BufferingResponseBodyConverter: retrofit2.BuiltInConverters$BufferingResponseBodyConverter INSTANCE -com.turingtechnologies.materialscrollbar.R$animator: int design_appbar_state_list_animator -wangdaye.com.geometricweather.R$dimen -com.google.android.material.internal.VisibilityAwareImageButton: int getUserSetVisibility() -retrofit2.OkHttpCall$1: void onResponse(okhttp3.Call,okhttp3.Response) -wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_day_selection -okhttp3.internal.http2.Http2Connection$7: Http2Connection$7(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okhttp3.internal.http2.ErrorCode) -wangdaye.com.geometricweather.db.entities.HistoryEntity: HistoryEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,int,int) -android.didikee.donate.R$attr: int dropdownListPreferredItemHeight -retrofit2.ParameterHandler$HeaderMap: ParameterHandler$HeaderMap(java.lang.reflect.Method,int,retrofit2.Converter) -cyanogenmod.providers.CMSettings$Global: CMSettings$Global() -com.google.android.material.R$layout: int material_timepicker_textinput_display -androidx.constraintlayout.widget.R$attr: int imageButtonStyle -com.tencent.bugly.crashreport.common.info.b: java.lang.String f() -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory NORMAL -androidx.work.R$styleable: int FontFamily_fontProviderQuery -com.google.android.material.slider.RangeSlider: int getTrackSidePadding() -androidx.preference.R$drawable: int abc_ic_arrow_drop_right_black_24dp -androidx.constraintlayout.widget.R$dimen: int compat_button_padding_vertical_material -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle -james.adaptiveicon.R$drawable: int abc_ic_menu_cut_mtrl_alpha -okio.Buffer: int readUtf8CodePoint() -androidx.appcompat.R$attr: int fontProviderCerts -androidx.appcompat.R$styleable: int ActionBar_title -okhttp3.Request: java.lang.Object tag(java.lang.Class) -james.adaptiveicon.R$color: int abc_primary_text_disable_only_material_dark -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String getKey(wangdaye.com.geometricweather.db.entities.LocationEntity) -wangdaye.com.geometricweather.R$id: int triangle -com.google.android.material.R$style: int Base_Widget_AppCompat_Toolbar -com.google.android.material.chip.Chip: void setCloseIconEndPaddingResource(int) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_default -com.xw.repo.bubbleseekbar.R$style: int Base_V26_Widget_AppCompat_Toolbar -okhttp3.internal.http2.Http2Connection: int openStreamCount() -androidx.appcompat.widget.AppCompatImageButton: android.content.res.ColorStateList getSupportImageTintList() -androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_width_overflow_material -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.R$drawable: int notif_temp_59 -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State[] $VALUES -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCopyDrawable -androidx.customview.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_switchStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight -androidx.viewpager.R$attr: int font -com.google.android.material.R$dimen: int design_snackbar_padding_vertical -android.didikee.donate.R$styleable: int ActionMode_subtitleTextStyle -com.google.android.material.internal.ParcelableSparseArray: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Toolbar -cyanogenmod.util.ColorUtils$1 -com.google.android.material.appbar.MaterialToolbar -com.jaredrummler.android.colorpicker.R$string: int abc_menu_enter_shortcut_label -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setAppChannel(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: AccuDailyResult$DailyForecasts$Night$Wind$Speed() -androidx.preference.R$layout: int preference_dropdown_material -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit valueOf(java.lang.String) -androidx.lifecycle.extensions.R$id: int icon -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthFocused(int) -wangdaye.com.geometricweather.R$styleable: int TextInputEditText_textInputLayoutFocusedRectEnabled -androidx.appcompat.resources.R$dimen: R$dimen() -com.xw.repo.bubbleseekbar.R$color: int highlighted_text_material_dark -androidx.preference.R$styleable: int[] TextAppearance -okio.Buffer: int read(byte[],int,int) -okhttp3.internal.NamedRunnable: void execute() -androidx.preference.R$styleable: int[] FontFamilyFont -io.reactivex.internal.observers.DeferredScalarObserver: DeferredScalarObserver(io.reactivex.Observer) -okhttp3.internal.cache.DiskLruCache$Entry: DiskLruCache$Entry(okhttp3.internal.cache.DiskLruCache,java.lang.String) -androidx.lifecycle.extensions.R$id: int action_container -androidx.fragment.R$id: int line3 -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int SILENT_STATE -okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withReadTimeout(int,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: int getPollenColor(android.content.Context,java.lang.Integer) -com.turingtechnologies.materialscrollbar.R$string: int path_password_eye -androidx.customview.R$styleable: int GradientColor_android_centerY -com.google.android.material.R$attr: int expandedHintEnabled -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView -james.adaptiveicon.R$attr: int iconTint -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderAuthority -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low_normal -com.google.android.material.R$color: int design_dark_default_color_background -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -retrofit2.HttpServiceMethod$SuspendForBody: HttpServiceMethod$SuspendForBody(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter,boolean) -cyanogenmod.providers.DataUsageContract: java.lang.String ENABLE -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Menu -androidx.appcompat.R$styleable: int MenuView_preserveIconSpacing -androidx.core.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.R$animator: int weather_fog_1 -com.google.android.material.R$styleable: int Slider_tickColor -com.amap.api.location.AMapLocationClientOption: long getInterval() -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -com.google.android.material.R$styleable: int Layout_layout_goneMarginTop -com.turingtechnologies.materialscrollbar.R$layout: int notification_template_part_time -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getRippleColor() -cyanogenmod.themes.IThemeService$Stub$Proxy: int getLastThemeChangeRequestType() -androidx.constraintlayout.widget.R$dimen: int compat_notification_large_icon_max_height -com.jaredrummler.android.colorpicker.R$id: int transparency_layout -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_HOME_DOUBLE_TAP_ACTION_VALIDATOR -james.adaptiveicon.R$styleable: int AppCompatImageView_android_src -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCutDrawable -androidx.preference.R$color: int error_color_material_dark -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -okhttp3.internal.http.RealInterceptorChain: int readTimeoutMillis() -wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_sliderColor -androidx.constraintlayout.widget.R$styleable: int[] Transform -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String IconPhrase -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableItem_android_drawable -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextTextAppearance -wangdaye.com.geometricweather.R$string: int settings_category_notification -androidx.work.R$styleable: int FontFamily_fontProviderAuthority -james.adaptiveicon.R$styleable: int SwitchCompat_switchPadding -cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String access$200() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorBackgroundFloating -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfIce -androidx.constraintlayout.widget.R$styleable: int SearchView_iconifiedByDefault -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast -james.adaptiveicon.R$attr: int buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_44 -retrofit2.ParameterHandler$QueryMap: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.tencent.bugly.crashreport.crash.anr.a: long c -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ListView_DropDown -com.google.android.material.R$color: int error_color_material_dark -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarWidgetTheme -com.google.android.material.R$color: int abc_tint_switch_track -androidx.preference.R$styleable: int TextAppearance_android_typeface -retrofit2.ParameterHandler$1 -wangdaye.com.geometricweather.R$styleable: int[] MaterialScrollBar -okio.SegmentedByteString -okhttp3.internal.cache.DiskLruCache: void delete() -com.tencent.bugly.crashreport.BuglyLog: void i(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$drawable: int shortcuts_sleet_foreground -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemBackgroundResource(int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_7 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listMenuViewStyle -com.google.android.material.R$string: R$string() -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.util.AtomicThrowable error -com.turingtechnologies.materialscrollbar.R$attr: int bottomSheetStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: AccuDailyResult$DailyForecasts$Night() -androidx.lifecycle.extensions.R$id: R$id() -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_shrinkMotionSpec -androidx.appcompat.widget.ViewStubCompat: int getLayoutResource() -androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableCompat -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_toggle_margin_bottom -wangdaye.com.geometricweather.R$id: int rectangles -androidx.constraintlayout.widget.R$id: int title_template -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_17 -com.xw.repo.bubbleseekbar.R$color: int abc_color_highlight_material -androidx.preference.R$id: int on -androidx.legacy.coreutils.R$id: int notification_main_column_container -cyanogenmod.platform.R$xml -androidx.constraintlayout.widget.R$styleable: int[] MenuItem -com.turingtechnologies.materialscrollbar.R$attr: int actionModeCutDrawable -androidx.preference.R$attr: int dropDownListViewStyle -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSearchResultSubtitle -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String key -com.google.android.material.R$dimen: int notification_content_margin_start -cyanogenmod.power.IPerformanceManager$Stub$Proxy -androidx.lifecycle.Transformations$2: androidx.arch.core.util.Function val$switchMapFunction -com.turingtechnologies.materialscrollbar.R$attr: int layout_dodgeInsetEdges -androidx.viewpager2.R$attr: int fontProviderCerts -okio.RealBufferedSource: long indexOf(byte,long) -android.didikee.donate.R$attr: int allowStacking -androidx.appcompat.widget.AppCompatTextView: androidx.core.text.PrecomputedTextCompat$Params getTextMetricsParamsCompat() -com.google.android.material.R$styleable: int AppCompatTheme_windowFixedWidthMajor -com.google.android.material.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.db.entities.DailyEntity: DailyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.util.Date,java.util.Date,java.util.Date,java.util.Date,java.lang.Integer,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,float) -com.baidu.location.e.l$b: java.lang.String a(com.baidu.location.e.l$b) -com.google.android.gms.base.R$color -androidx.preference.R$styleable: int[] FragmentContainerView -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableEndCompat -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_material -com.bumptech.glide.GeneratedAppGlideModule: GeneratedAppGlideModule() -androidx.preference.R$styleable: int SeekBarPreference_seekBarIncrement -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: int hashCode() -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Light -okhttp3.internal.tls.BasicTrustRootIndex -androidx.constraintlayout.widget.R$drawable: int abc_seekbar_track_material -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: android.graphics.Rect getWindowInsets() -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textSize -androidx.preference.R$dimen: int abc_seekbar_track_background_height_material -okhttp3.internal.io.FileSystem: long size(java.io.File) -wangdaye.com.geometricweather.R$attr: int bsb_section_text_position -com.google.android.material.R$dimen: int abc_dialog_fixed_height_major -wangdaye.com.geometricweather.R$attr: int panelMenuListTheme -androidx.loader.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getGrassIndex() -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_ASSIST_LONG_PRESS_ACTION -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.String TABLENAME -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dividerVertical -com.google.android.material.R$styleable: int TextInputLayout_endIconMode -okhttp3.Cookie: boolean secure() -androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -androidx.fragment.R$attr: R$attr() -wangdaye.com.geometricweather.R$attr: int sizePercent -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getHintTextColor() -com.google.android.material.R$dimen: int material_filled_edittext_font_1_3_padding_top -androidx.appcompat.R$id: int wrap_content -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -wangdaye.com.geometricweather.R$styleable: int[] RecycleListView -com.google.android.material.R$styleable: int ProgressIndicator_linearSeamless -com.google.android.material.R$drawable: int abc_ic_arrow_drop_right_black_24dp -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_focused_holo -androidx.hilt.lifecycle.R$id: int right_side -james.adaptiveicon.R$layout: int abc_alert_dialog_button_bar_material -wangdaye.com.geometricweather.db.entities.DailyEntity: void setAqiText(java.lang.String) -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -androidx.constraintlayout.widget.R$styleable: int ActionBar_navigationMode -io.reactivex.internal.observers.DeferredScalarDisposable: java.lang.Object value -androidx.viewpager.widget.PagerTabStrip: void setBackgroundResource(int) -androidx.preference.R$styleable: int Toolbar_popupTheme -okhttp3.internal.http.RealInterceptorChain: int index -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedHeightMinor -androidx.constraintlayout.widget.R$attr: int backgroundTintMode -james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -wangdaye.com.geometricweather.R$dimen: int mtrl_card_dragged_z -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void access$700(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.R$dimen: int normal_margin -wangdaye.com.geometricweather.R$color: int lightPrimary_4 -retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object invokeSuspend(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String type -androidx.transition.R$id: int text -androidx.loader.R$styleable: int GradientColor_android_endColor -io.reactivex.Observable: io.reactivex.Observable error(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List dailyForecast -com.amap.api.location.AMapLocation: void setStreet(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int flag_si -okhttp3.internal.http2.Settings: int MAX_FRAME_SIZE -com.tencent.bugly.crashreport.crash.CrashDetailBean: long r -androidx.preference.R$style: int TextAppearance_AppCompat_Display4 -com.xw.repo.bubbleseekbar.R$id: int action_text -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setAppPackageName(java.lang.String) -androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context,android.util.AttributeSet,int) -james.adaptiveicon.R$id: int forever -androidx.preference.R$attr: int autoSizePresetSizes -androidx.constraintlayout.widget.R$attr: int colorControlNormal -okio.Okio: okio.Sink sink(java.nio.file.Path,java.nio.file.OpenOption[]) -okio.BufferedSink: void flush() -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder hasSensitiveData(boolean) -androidx.legacy.coreutils.R$id: int right_icon -com.turingtechnologies.materialscrollbar.R$id: int action_bar_container -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar -cyanogenmod.platform.Manifest$permission: java.lang.String MANAGE_ALARMS -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver -androidx.coordinatorlayout.R$dimen: int notification_right_icon_size -androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogTheme -com.turingtechnologies.materialscrollbar.R$attr: int navigationViewStyle -okhttp3.internal.Internal: void setCache(okhttp3.OkHttpClient$Builder,okhttp3.internal.cache.InternalCache) -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy -androidx.preference.R$id: int textSpacerNoTitle -androidx.hilt.lifecycle.R$id: int tag_screen_reader_focusable -androidx.work.R$layout -okhttp3.internal.http2.PushObserver: void onReset(int,okhttp3.internal.http2.ErrorCode) -com.google.android.material.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY_NIGHT -wangdaye.com.geometricweather.db.entities.LocationEntity: void setCurrentPosition(boolean) -androidx.appcompat.R$attr: int buttonPanelSideLayout -com.google.android.material.R$styleable: int TextInputLayout_startIconContentDescription -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_74 -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetEndWithActions -okhttp3.HttpUrl: java.lang.String queryParameterValue(int) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -cyanogenmod.weather.WeatherInfo: int getConditionCode() -cyanogenmod.app.ICustomTileListener$Stub: android.os.IBinder asBinder() -androidx.customview.R$styleable: int GradientColor_android_centerColor -com.google.android.material.R$dimen: int mtrl_min_touch_target_size -android.didikee.donate.R$string: int abc_searchview_description_submit -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWeatherStart() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_Solid -com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_BAD -wangdaye.com.geometricweather.R$id: int snap -cyanogenmod.weather.WeatherInfo: double mTodaysLowTemp -cyanogenmod.weatherservice.IWeatherProviderService: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) -androidx.swiperefreshlayout.R$style -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarPopupTheme -androidx.lifecycle.extensions.R$dimen: int notification_subtext_size -cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult() -com.google.android.material.R$styleable: int SwitchCompat_switchPadding -androidx.preference.R$styleable: int TextAppearance_android_textColorLink -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean getUrl() -com.jaredrummler.android.colorpicker.R$style: int Preference_PreferenceScreen -wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService: AwakeForegroundUpdateService() -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean,int,int) -androidx.preference.R$attr: int iconTintMode -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -com.tencent.bugly.crashreport.common.strategy.a: int a -androidx.hilt.lifecycle.R$styleable: int Fragment_android_tag -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_useCompatPadding -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: FlowableOnBackpressureBuffer$BackpressureBufferSubscriber(org.reactivestreams.Subscriber,int,boolean,boolean,io.reactivex.functions.Action) -com.jaredrummler.android.colorpicker.R$drawable: int cpv_btn_background -com.jaredrummler.android.colorpicker.R$attr: int indeterminateProgressStyle -cyanogenmod.app.Profile$DozeMode: Profile$DozeMode() -androidx.constraintlayout.widget.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar -androidx.preference.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: int UnitType -androidx.core.R$id: int title -com.amap.api.location.AMapLocation: java.lang.String h -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleMargin -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_min -androidx.preference.R$attr: int dividerVertical -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Borderless -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onComplete() -android.didikee.donate.R$attr: int buttonBarStyle -androidx.transition.R$drawable: int notification_template_icon_low_bg -com.google.android.material.R$styleable: int Slider_tickColorInactive -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderTitle -com.google.android.material.R$styleable: int FontFamily_fontProviderFetchTimeout -com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_backgroundTint -com.google.android.material.R$drawable: int abc_item_background_holo_dark -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_state_dragged -okhttp3.internal.Util: int skipTrailingAsciiWhitespace(java.lang.String,int,int) -com.google.android.material.R$styleable: int KeyPosition_transitionEasing -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Body1 -com.turingtechnologies.materialscrollbar.R$attr: int msb_hideDelayInMilliseconds -cyanogenmod.hardware.ICMHardwareService: boolean setVibratorIntensity(int) -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_dark -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_ttcIndex -com.bumptech.glide.R$styleable: int GradientColor_android_startColor -com.google.gson.stream.JsonWriter: java.lang.String separator -com.google.android.material.transformation.FabTransformationScrimBehavior: FabTransformationScrimBehavior(android.content.Context,android.util.AttributeSet) -io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit) -io.reactivex.Observable: io.reactivex.Observable skipUntil(io.reactivex.ObservableSource) -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_trackTint -androidx.appcompat.R$attr: int actionModeWebSearchDrawable -androidx.hilt.work.R$layout: int notification_template_part_time -cyanogenmod.providers.CMSettings$System: java.lang.String __MAGICAL_TEST_PASSING_ENABLER -wangdaye.com.geometricweather.R$string: int ceiling -com.google.android.material.chip.Chip: void setChipDrawable(com.google.android.material.chip.ChipDrawable) -wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_container -cyanogenmod.weather.WeatherInfo$DayForecast: int getConditionCode() -androidx.preference.R$style: int TextAppearance_AppCompat_Large -androidx.constraintlayout.widget.R$id: int SHOW_PATH -james.adaptiveicon.R$string: int abc_action_menu_overflow_description -wangdaye.com.geometricweather.R$layout: int material_radial_view_group -com.google.android.material.R$id: int BOTTOM_END -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ListPopupWindow -okhttp3.internal.http2.Http2Connection: void writeSynResetLater(int,okhttp3.internal.http2.ErrorCode) -com.turingtechnologies.materialscrollbar.R$color: int material_grey_900 -androidx.fragment.R$styleable: int GradientColor_android_endX -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HEADSET_CONNECT_PLAYER_VALIDATOR -com.tencent.bugly.crashreport.common.info.a: com.tencent.bugly.crashreport.common.info.a af -androidx.preference.R$drawable: int notification_bg_normal -androidx.lifecycle.CompositeGeneratedAdaptersObserver -android.didikee.donate.R$anim -io.reactivex.internal.functions.Functions$NaturalComparator: int compare(java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox -com.google.android.material.button.MaterialButtonToggleGroup: java.lang.CharSequence getAccessibilityClassName() -android.didikee.donate.R$id: int parentPanel -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetEnd -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getNo2() -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -androidx.appcompat.R$style: int Base_Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.R$styleable: int BackgroundStyle_android_selectableItemBackground -wangdaye.com.geometricweather.R$styleable: int[] FloatingActionButton_Behavior_Layout -com.google.android.material.R$styleable: int FloatingActionButton_android_enabled -androidx.lifecycle.LifecycleRegistry$ObserverWithState -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: ObservableZip$ZipCoordinator(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial Imperial -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_setServiceClient -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: void spValue(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void setDisposable(io.reactivex.disposables.Disposable) -com.google.android.gms.common.api.GoogleApiActivity: GoogleApiActivity() -com.google.android.material.bottomnavigation.BottomNavigationView: int getLabelVisibilityMode() -androidx.appcompat.R$attr: int titleTextColor -androidx.coordinatorlayout.widget.CoordinatorLayout: android.graphics.drawable.Drawable getStatusBarBackground() -androidx.viewpager.R$styleable: int FontFamily_fontProviderFetchTimeout -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean cancelled -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DarkActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial -com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context) -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setMockEnable(boolean) -androidx.appcompat.R$dimen: int abc_text_size_headline_material -androidx.coordinatorlayout.R$integer -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object readKey(android.database.Cursor,int) -com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_default -android.didikee.donate.R$style: int Widget_AppCompat_DrawerArrowToggle -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: ObservableAmb$AmbInnerObserver(io.reactivex.internal.operators.observable.ObservableAmb$AmbCoordinator,int,io.reactivex.Observer) -androidx.preference.R$styleable: int Toolbar_logo -wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableTransition -okhttp3.Request$Builder: okhttp3.Request$Builder url(okhttp3.HttpUrl) -androidx.constraintlayout.widget.R$dimen: int tooltip_y_offset_non_touch -io.reactivex.Observable: io.reactivex.Observable window(java.util.concurrent.Callable,int) -cyanogenmod.app.CMTelephonyManager: void setDataConnectionState(boolean) -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource[] values() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -io.reactivex.Observable: io.reactivex.Observable doOnError(io.reactivex.functions.Consumer) -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.tencent.bugly.crashreport.crash.anr.a: java.lang.String f -androidx.preference.R$layout: int abc_screen_simple -android.didikee.donate.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$string: int settings_title_minimal_icon -com.google.android.material.R$styleable: int Constraint_layout_constraintRight_toRightOf -com.google.android.material.R$attr: int materialButtonToggleGroupStyle -okhttp3.Headers: void checkValue(java.lang.String,java.lang.String) -androidx.appcompat.widget.LinearLayoutCompat: int getGravity() -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean,int) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context,android.util.AttributeSet,int) -androidx.vectordrawable.animated.R$string: int status_bar_notification_info_overflow -androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.amap.api.location.AMapLocationClient: java.lang.String getVersion() -com.tencent.bugly.crashreport.biz.b: java.lang.Class l -androidx.hilt.R$id: int action_image -okio.GzipSink -cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener -io.reactivex.exceptions.OnErrorNotImplementedException: OnErrorNotImplementedException(java.lang.String,java.lang.Throwable) -james.adaptiveicon.R$drawable: int abc_list_longpressed_holo -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -android.didikee.donate.R$style -com.google.android.material.R$id: int ignore -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontStyle -com.github.rahatarmanahmed.cpv.BuildConfig -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_medium_material -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Body1 -wangdaye.com.geometricweather.R$string: int mtrl_picker_a11y_prev_month -okhttp3.WebSocket: void cancel() -androidx.constraintlayout.widget.R$attr: int radioButtonStyle -retrofit2.Utils$WildcardTypeImpl: boolean equals(java.lang.Object) -io.reactivex.disposables.ReferenceDisposable: boolean isDisposed() -okhttp3.CertificatePinner: void check(java.lang.String,java.security.cert.Certificate[]) -wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context,android.util.AttributeSet,int) -retrofit2.http.POST -retrofit2.RequestFactory -com.google.android.material.R$id: int spread_inside -com.google.android.material.slider.Slider: void setThumbStrokeWidth(float) -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMargin -com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.resources.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$layout: int preference_category_material -com.google.android.material.R$style: int CardView_Dark -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActivityChooserView -okhttp3.internal.cache.CacheStrategy$Factory: boolean isFreshnessLifetimeHeuristic() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_max -androidx.preference.R$string: int abc_action_mode_done -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Caption -androidx.appcompat.R$attr: int textAppearanceListItemSecondary -com.turingtechnologies.materialscrollbar.R$drawable: int abc_switch_thumb_material -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void addScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -androidx.constraintlayout.widget.R$drawable: int abc_btn_default_mtrl_shape -wangdaye.com.geometricweather.R$string: int date_format_widget_oreo_style -wangdaye.com.geometricweather.R$attr: int itemStrokeWidth -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.Integer alti -androidx.preference.R$attr: int actionBarTheme -androidx.hilt.lifecycle.R$drawable: int notify_panel_notification_icon_bg -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_25 -com.google.android.material.R$attr: int popupWindowStyle -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onNext(retrofit2.Response) -com.google.android.material.R$string: int mtrl_exceed_max_badge_number_suffix -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Subhead -io.reactivex.internal.util.VolatileSizeArrayList: long serialVersionUID -okhttp3.internal.http2.Http2Connection$Builder: int pingIntervalMillis -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSubtitle1 -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textSize -wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_xml -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context) -androidx.viewpager2.R$dimen: int compat_notification_large_icon_max_height -com.google.android.material.R$styleable: int ProgressIndicator_growMode -wangdaye.com.geometricweather.R$attr: int switchMinWidth -okhttp3.HttpUrl$Builder: int portColonOffset(java.lang.String,int,int) -retrofit2.HttpServiceMethod -wangdaye.com.geometricweather.R$id: int italic -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setExpandedStyle(cyanogenmod.app.CustomTile$ExpandedStyle) -wangdaye.com.geometricweather.R$styleable: int[] SwitchPreferenceCompat -androidx.appcompat.widget.SearchView: void setSearchableInfo(android.app.SearchableInfo) -android.didikee.donate.R$attr: int actionModeFindDrawable -wangdaye.com.geometricweather.R$attr: int cardViewStyle -com.google.android.material.R$dimen: int design_bottom_sheet_peek_height_min -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: boolean done -androidx.appcompat.R$styleable: int SearchView_layout -com.google.android.material.circularreveal.CircularRevealLinearLayout: int getCircularRevealScrimColor() -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_CELL -androidx.fragment.R$id: int accessibility_custom_action_31 -james.adaptiveicon.R$styleable: int[] ActionMode -androidx.appcompat.R$attr: int windowMinWidthMinor -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void fail(java.lang.Throwable,io.reactivex.Observer,io.reactivex.internal.queue.SpscLinkedArrayQueue) -wangdaye.com.geometricweather.R$styleable: int Slider_trackHeight -wangdaye.com.geometricweather.R$styleable: int Preference_icon -wangdaye.com.geometricweather.R$string: int material_clock_display_divider -com.google.android.material.R$style: int Base_Theme_MaterialComponents_CompactMenu -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_backgroundTint -com.google.android.material.R$attr: int searchViewStyle -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs indexs -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeight -retrofit2.ServiceMethod: ServiceMethod() -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.Observer downstream -com.google.android.material.tabs.TabLayout: void setTabMode(int) -androidx.preference.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -com.tencent.bugly.proguard.a: byte[] a(java.lang.Object) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.R$dimen: int abc_text_size_body_2_material -cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(int,cyanogenmod.app.ThemeComponent,int) -com.google.android.material.R$xml: R$xml() -com.google.android.material.R$styleable: int AppCompatTheme_listPopupWindowStyle -com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_BLOCK -okhttp3.internal.Version -wangdaye.com.geometricweather.R$id: int stretch -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -androidx.constraintlayout.widget.R$drawable: int abc_dialog_material_background -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_24 -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SMOKY -wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -androidx.activity.R$style: int Widget_Compat_NotificationActionText -com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_toLeftOf -com.xw.repo.bubbleseekbar.R$anim: int abc_slide_out_top -android.didikee.donate.R$style: int Base_Widget_AppCompat_ProgressBar -wangdaye.com.geometricweather.R$string: int key_notification_hide_icon -com.amap.api.location.AMapLocation: int getTrustedLevel() -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_24 -com.google.android.material.floatingactionbutton.FloatingActionButton: int getSize() -com.bumptech.glide.integration.okhttp.R$attr: int statusBarBackground -wangdaye.com.geometricweather.R$id: int material_textinput_timepicker -com.xw.repo.bubbleseekbar.R$styleable: int[] CoordinatorLayout_Layout -com.google.android.material.textfield.TextInputEditText: java.lang.CharSequence getHintFromLayout() -com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_LOCERRORCODE -androidx.lifecycle.ReportFragment: void onActivityCreated(android.os.Bundle) -com.turingtechnologies.materialscrollbar.R$id: int masked -com.xw.repo.bubbleseekbar.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -androidx.vectordrawable.R$drawable -androidx.recyclerview.R$attr: int fontVariationSettings -com.google.android.material.R$layout: int material_time_input -james.adaptiveicon.R$attr: int spinBars -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_to_on_mtrl_015 -androidx.appcompat.resources.R$id: int notification_main_column_container -wangdaye.com.geometricweather.R$layout: int activity_live_wallpaper_config -com.tencent.bugly.proguard.v: int b -androidx.hilt.work.R$id: int accessibility_custom_action_16 -james.adaptiveicon.R$attr: int windowFixedWidthMinor -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean isDisposed() -androidx.constraintlayout.widget.R$attr: int actionBarItemBackground -cyanogenmod.app.CustomTileListenerService: void onCustomTilePosted(cyanogenmod.app.StatusBarPanelCustomTile) -wangdaye.com.geometricweather.R$id: int enterAlwaysCollapsed -androidx.preference.R$styleable: int Toolbar_navigationContentDescription -cyanogenmod.externalviews.ExternalViewProviderService: boolean DEBUG -androidx.preference.R$attr: int negativeButtonText -com.google.android.material.R$drawable: int abc_list_divider_mtrl_alpha -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Inverse -androidx.preference.R$styleable: int[] Fragment -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceScreenStyle -com.google.android.gms.base.R$drawable -wangdaye.com.geometricweather.R$styleable: int ClockFaceView_valueTextColor -cyanogenmod.externalviews.KeyguardExternalView$1: KeyguardExternalView$1(cyanogenmod.externalviews.KeyguardExternalView) -android.didikee.donate.R$attr: int actionModeBackground -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onComplete() -wangdaye.com.geometricweather.R$xml: int widget_clock_day_horizontal -wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_EditText -com.bumptech.glide.R$styleable: int FontFamilyFont_android_font -androidx.lifecycle.SavedStateHandle$1: SavedStateHandle$1(androidx.lifecycle.SavedStateHandle) -com.jaredrummler.android.colorpicker.R$drawable: int notification_icon_background -android.didikee.donate.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onComplete() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout_Colored -james.adaptiveicon.R$attr: int listPreferredItemHeight -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: int mMax -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_CBC_SHA -androidx.appcompat.widget.AppCompatButton: void setSupportCompoundDrawablesTintList(android.content.res.ColorStateList) -com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_base -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_drawableSize -com.google.android.material.floatingactionbutton.FloatingActionButton: void setImageResource(int) -james.adaptiveicon.R$color: int material_grey_600 -androidx.activity.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.R$integer: int app_bar_elevation_anim_duration -cyanogenmod.themes.IThemeProcessingListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.String TABLENAME -com.jaredrummler.android.colorpicker.R$layout: int preference_information -com.tencent.bugly.proguard.u: boolean a(java.util.Map) -androidx.lifecycle.R -com.google.android.material.R$styleable: int[] Transform -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.Window mWindow -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: double Value -wangdaye.com.geometricweather.R$attr: int cpv_colorPresets -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String READ_ALARMS_PERMISSION -androidx.constraintlayout.widget.R$color: int abc_decor_view_status_guard -com.jaredrummler.android.colorpicker.R$id: int icon_frame -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap -com.turingtechnologies.materialscrollbar.R$styleable: int ScrimInsetsFrameLayout_insetForeground -cyanogenmod.profiles.LockSettings$1: java.lang.Object[] newArray(int) -android.didikee.donate.R$drawable: int abc_btn_default_mtrl_shape -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constrainedWidth -androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$id: int shades_divider -com.tencent.bugly.crashreport.biz.a: void a(int,boolean,long) -android.didikee.donate.R$color: int abc_search_url_text_selected -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterMaxLength -wangdaye.com.geometricweather.R$string: int feedback_show_widget_card -okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache$Snapshot snapshot() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorBackgroundFloating -androidx.lifecycle.DefaultLifecycleObserver: void onCreate(androidx.lifecycle.LifecycleOwner) -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability -androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -com.google.android.material.R$attr: int flow_verticalBias -android.didikee.donate.R$drawable: int abc_text_select_handle_right_mtrl_light -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator -com.google.android.material.R$styleable: int ImageFilterView_brightness -wangdaye.com.geometricweather.R$styleable: int[] DialogPreference -james.adaptiveicon.R$drawable: int abc_ic_star_half_black_16dp -android.didikee.donate.R$attr: int textAllCaps -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_disabled_holo_dark -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_percent -com.google.android.material.R$attr: int placeholderTextAppearance -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NULL -wangdaye.com.geometricweather.R$attr: int errorIconTintMode -com.turingtechnologies.materialscrollbar.R$attr: int msb_rightToLeft -com.jaredrummler.android.colorpicker.R$color: int error_color_material_light -androidx.appcompat.R$drawable: int abc_list_divider_mtrl_alpha -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_horizontal_padding -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: boolean IsDayTime -com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum Maximum -cyanogenmod.app.ProfileGroup$1: java.lang.Object[] newArray(int) -androidx.vectordrawable.R$id: int action_divider -com.google.android.material.R$styleable: int ProgressIndicator_showDelay -com.tencent.bugly.crashreport.crash.anr.b: void d() -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -james.adaptiveicon.R$attr: int actionButtonStyle -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isDataConnectionSelectedOnSub(int) -wangdaye.com.geometricweather.R$id: int test_checkbox_app_button_tint -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextAppearanceInactive(int) -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setContentDescription(int) -wangdaye.com.geometricweather.R$attr: int bsb_hide_bubble -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColorHint -com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -com.google.android.material.behavior.HideBottomViewOnScrollBehavior -com.amap.api.location.AMapLocation: void setLocationType(int) -com.tencent.bugly.proguard.ak: java.util.Map C -wangdaye.com.geometricweather.R$attr: int initialExpandedChildrenCount -com.google.android.material.R$attr: int errorIconTint -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display3 -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void startFirstTimeout(io.reactivex.ObservableSource) -com.tencent.bugly.Bugly: Bugly() -wangdaye.com.geometricweather.R$id: int grassIcon -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetStart -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.amap.api.location.AMapLocationQualityReport: void setGPSSatellites(int) -cyanogenmod.hardware.CMHardwareManager: int[] getVibratorIntensityArray() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Colored -com.google.android.material.slider.BaseSlider: float getThumbElevation() -okhttp3.internal.ws.WebSocketWriter: void writePing(okio.ByteString) -wangdaye.com.geometricweather.R$attr: int firstBaselineToTopHeight -androidx.constraintlayout.widget.R$color: int secondary_text_disabled_material_dark -androidx.swiperefreshlayout.R$color: R$color() -androidx.constraintlayout.widget.R$layout: int abc_screen_simple -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -androidx.core.R$id: int accessibility_custom_action_6 -wangdaye.com.geometricweather.R$id: int widget_clock_day_icon -com.xw.repo.bubbleseekbar.R$color: int colorPrimary -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getCloseIcon() -androidx.swiperefreshlayout.R$drawable: int notification_icon_background -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display1 -androidx.coordinatorlayout.R$id: int accessibility_custom_action_7 -okhttp3.internal.http2.Http2Connection$6: void execute() -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_title_material -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.R$id: int save_overlay_view -okhttp3.ConnectionPool$1: ConnectionPool$1(okhttp3.ConnectionPool) -androidx.loader.R$styleable: int GradientColor_android_startX -androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver -com.google.android.material.R$dimen: int design_snackbar_padding_vertical_2lines -com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -io.reactivex.internal.util.NotificationLite: java.lang.Object subscription(org.reactivestreams.Subscription) -wangdaye.com.geometricweather.R$id: int item_about_header_appName -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context,android.util.AttributeSet) -com.tencent.bugly.proguard.ak: java.util.Map h -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String weatherSource -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat -com.google.android.material.R$attr: int windowFixedWidthMajor -okhttp3.internal.cache.InternalCache: void trackResponse(okhttp3.internal.cache.CacheStrategy) -com.bumptech.glide.load.engine.GlideException: void setLoggingDetails(com.bumptech.glide.load.Key,com.bumptech.glide.load.DataSource) -android.didikee.donate.R$styleable: int ActionBar_divider -com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog -android.didikee.donate.R$style: int Widget_AppCompat_PopupWindow -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver -androidx.constraintlayout.widget.R$drawable: int abc_btn_colored_material -wangdaye.com.geometricweather.R$layout: int container_main_aqi -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -wangdaye.com.geometricweather.R$xml: int perference_unit -androidx.hilt.R$anim: int fragment_fade_exit -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String co -androidx.constraintlayout.widget.Guideline: void setGuidelinePercent(float) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.google.gson.stream.JsonReader$1: void promoteNameToValue(com.google.gson.stream.JsonReader) -okhttp3.OkHttpClient: okhttp3.Dispatcher dispatcher -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: KeyguardExternalViewProviderService$Provider$ProviderImpl$7(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.R$attr: int textAppearanceSearchResultTitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setBrandId(java.lang.String) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton -com.google.android.material.R$attr: int materialCalendarYearNavigationButton -com.turingtechnologies.materialscrollbar.R$attr: int checkedTextViewStyle -androidx.dynamicanimation.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String toStr(int) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition GeoPosition -com.turingtechnologies.materialscrollbar.R$attr: int closeIconTint -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotation -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -wangdaye.com.geometricweather.common.basic.models.weather.Wind: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getDegree() -com.tencent.bugly.crashreport.crash.anr.b: boolean a() -wangdaye.com.geometricweather.R$id: int tag_unhandled_key_listeners -com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.StrategyBean c() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void run() -com.google.android.material.R$layout: int abc_popup_menu_item_layout -com.tencent.bugly.crashreport.biz.a: a(android.content.Context,boolean) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation LEFT -androidx.constraintlayout.helper.widget.Flow: void setHorizontalBias(float) -wangdaye.com.geometricweather.R$drawable: int notif_temp_90 -com.google.gson.JsonIOException: JsonIOException(java.lang.String) -com.xw.repo.BubbleSeekBar: void setThumbColor(int) -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_day_abbr -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_subtitleTextStyle -retrofit2.ParameterHandler$Query: ParameterHandler$Query(java.lang.String,retrofit2.Converter,boolean) -com.google.android.material.R$id: int mtrl_picker_text_input_range_start -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6 -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_list_padding_top_no_title -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Source -androidx.viewpager.R$id: int right_side -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerComplete() -io.reactivex.Observable: io.reactivex.Observable timestamp(java.util.concurrent.TimeUnit) -com.google.android.material.R$styleable: int Constraint_flow_maxElementsWrap -okhttp3.CacheControl: boolean isPrivate() -james.adaptiveicon.R$attr: int progressBarStyle -cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener -androidx.transition.R$id: int tag_transition_group -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY_DAY -com.bumptech.glide.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: int status -androidx.appcompat.R$drawable: int abc_ic_star_black_16dp -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: double Value -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -retrofit2.OptionalConverterFactory: OptionalConverterFactory() -androidx.preference.R$id: int seekbar -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String value -com.google.android.material.R$styleable: int ConstraintSet_flow_lastVerticalStyle -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onComplete() -androidx.appcompat.widget.Toolbar: void setPopupTheme(int) -com.tencent.bugly.proguard.aj: java.lang.String b -com.tencent.bugly.crashreport.common.info.a: java.lang.String A() -com.turingtechnologies.materialscrollbar.R$id: int blocking -com.tencent.bugly.proguard.i: void a(byte[]) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconCheckable -cyanogenmod.app.Profile: int getTriggerState(int,java.lang.String) -androidx.lifecycle.LifecycleService: int onStartCommand(android.content.Intent,int,int) -androidx.appcompat.widget.AppCompatSpinner$DropdownPopup -com.tencent.bugly.proguard.f: void a(java.lang.StringBuilder,int) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListPopupWindow -android.didikee.donate.R$dimen: int abc_button_inset_vertical_material -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context,android.util.AttributeSet) -okhttp3.internal.http2.Http2Connection: long degradedPingsSent -cyanogenmod.app.CustomTile$ExpandedStyle: android.widget.RemoteViews getContentViews() -com.turingtechnologies.materialscrollbar.R$attr: int snackbarButtonStyle -androidx.transition.R$layout: int notification_template_icon_group -com.google.android.material.R$attr: int tooltipStyle -com.tencent.bugly.crashreport.common.info.a: java.lang.String P() -com.google.android.material.R$id: int decelerate -androidx.constraintlayout.widget.R$styleable: int Variant_region_widthMoreThan -cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo getWeatherInfo() -okhttp3.internal.http2.Http2Stream$FramingSource: boolean closed -wangdaye.com.geometricweather.R$attr: int thumbTint -cyanogenmod.util.ColorUtils$1: int compare(com.android.internal.util.cm.palette.Palette$Swatch,com.android.internal.util.cm.palette.Palette$Swatch) -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory create() -android.didikee.donate.R$id: int action_bar_subtitle -androidx.preference.R$styleable: int TextAppearance_android_shadowRadius -com.turingtechnologies.materialscrollbar.AlphabetIndicator: AlphabetIndicator(android.content.Context) -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -com.tencent.bugly.proguard.r: java.lang.String c -wangdaye.com.geometricweather.R$id: int widget_week_container -cyanogenmod.platform.Manifest -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onLockscreenSlideOffsetChanged(float) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_AutoCompleteTextView -com.jaredrummler.android.colorpicker.R$style: int AlertDialog_AppCompat_Light -com.google.android.material.R$dimen: int notification_right_side_padding_top -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getNavigationContentDescription() -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ProgressBar -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric -com.jaredrummler.android.colorpicker.R$bool -okhttp3.ConnectionSpec$Builder: boolean tls -com.google.android.material.bottomappbar.BottomAppBar$Behavior: BottomAppBar$Behavior(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$id: int titleDividerNoCustom -com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextEnabled(boolean) -com.tencent.bugly.crashreport.crash.jni.b: java.lang.String a(java.lang.String) -cyanogenmod.hardware.ICMHardwareService$Stub -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabText -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Borderless -androidx.preference.R$attr: int backgroundStacked -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_maxButtonHeight -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable -james.adaptiveicon.R$attr: int queryBackground -androidx.appcompat.R$color -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListMenuView -wangdaye.com.geometricweather.R$drawable: int ic_donate -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWetBulbTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$attr: int placeholderTextColor -okio.BufferedSink: okio.BufferedSink writeIntLe(int) -androidx.appcompat.widget.AppCompatSpinner: void setDropDownVerticalOffset(int) -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification -cyanogenmod.app.suggest.IAppSuggestProvider: java.util.List getSuggestions(android.content.Intent) -com.tencent.bugly.crashreport.crash.anr.b: java.util.concurrent.atomic.AtomicInteger a -com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: int humidity -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_color -wangdaye.com.geometricweather.R$id: int reverseSawtooth -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.appcompat.widget.AppCompatTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.google.android.material.R$styleable: int ConstraintSet_android_translationX -cyanogenmod.app.CustomTile$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.R$string: int content_des_pm25 -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_height_material -androidx.loader.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$attr: int minWidth -okhttp3.MediaType: okhttp3.MediaType get(java.lang.String) -com.google.gson.stream.JsonReader: int PEEKED_UNQUOTED -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy TRANSFORMED -com.google.android.material.button.MaterialButton: void setIconSize(int) -okio.HashingSource: okio.HashingSource sha256(okio.Source) -com.tencent.bugly.proguard.i: java.lang.String b -androidx.appcompat.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.R$drawable: int flag_pl -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginTop -wangdaye.com.geometricweather.R$dimen: int cardview_default_radius -okhttp3.internal.http2.Http2Reader$Handler: void data(boolean,int,okio.BufferedSource,int) -androidx.preference.R$styleable: int PreferenceTheme_dialogPreferenceStyle -com.jaredrummler.android.colorpicker.R$style: int Base_V23_Theme_AppCompat_Light -androidx.vectordrawable.R$id: int accessibility_custom_action_26 -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_transformation_sheet_expand_spec -com.google.android.material.R$styleable: int LinearLayoutCompat_measureWithLargestChild -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level BODY -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfiles -io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_READY -com.google.android.material.R$attr: int drawableTopCompat -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: int UnitType -okhttp3.internal.cache.DiskLruCache: boolean initialized -okhttp3.internal.http2.Hpack$Writer: boolean emitDynamicTableSizeUpdate -wangdaye.com.geometricweather.R$styleable: int[] MockView -com.xw.repo.bubbleseekbar.R$color: int material_grey_800 -androidx.lifecycle.ProcessLifecycleOwner: int mResumedCounter -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -androidx.preference.R$styleable: R$styleable() -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -okhttp3.internal.ws.RealWebSocket$Streams: RealWebSocket$Streams(boolean,okio.BufferedSource,okio.BufferedSink) -okhttp3.FormBody$Builder: java.util.List names -androidx.preference.R$attr: int controlBackground -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -android.didikee.donate.R$style: int Widget_AppCompat_Toolbar -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeTextType -io.reactivex.Observable: io.reactivex.Observable startWith(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int dragDirection -androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context) -androidx.appcompat.widget.ActionBarOverlayLayout: int getActionBarHideOffset() -androidx.preference.R$style: int Widget_AppCompat_ActionMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: void setUnit(java.lang.String) -okhttp3.OkHttpClient$Builder: okhttp3.internal.cache.InternalCache internalCache -androidx.appcompat.widget.AppCompatImageView -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabView -com.jaredrummler.android.colorpicker.R$dimen: int abc_floating_window_z -com.turingtechnologies.materialscrollbar.R$attr: int progressBarStyle -com.google.android.material.R$attr: int deltaPolarAngle -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCardBackgroundColor() -cyanogenmod.app.ProfileGroup$Mode -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_size -okio.Buffer: int REPLACEMENT_CHARACTER -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeBackground -cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getProfile(android.os.ParcelUuid) -wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_dark -wangdaye.com.geometricweather.R$drawable: int weather_rain_1 -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void dispose() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: java.lang.String getPubTime() -okhttp3.OkHttpClient: int callTimeout -io.reactivex.internal.subscriptions.SubscriptionHelper: void reportMoreProduced(long) -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.database.Database db -com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.R$id: int item_weather_daily_overview_text -com.xw.repo.bubbleseekbar.R$id: int default_activity_button -com.jaredrummler.android.colorpicker.R$id: int search_mag_icon -retrofit2.http.Query: java.lang.String value() -okhttp3.internal.http2.Huffman: int encodedLength(okio.ByteString) -com.bumptech.glide.R$dimen: int notification_top_pad_large_text -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: ObservableRetryBiPredicate$RetryBiObserver(io.reactivex.Observer,io.reactivex.functions.BiPredicate,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) -androidx.preference.R$styleable: int MenuItem_android_orderInCategory -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.R$array: int weather_source_voices -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_max_width -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Slider -wangdaye.com.geometricweather.R$id: int tag_accessibility_heading -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onComplete() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul3H -androidx.appcompat.widget.AppCompatTextView: java.lang.CharSequence getText() -com.google.android.material.R$styleable: int KeyAttribute_android_rotation -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontVariationSettings -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeShareDrawable -okhttp3.CacheControl$Builder: boolean noTransform -wangdaye.com.geometricweather.R$string: int settings_notification_can_be_cleared_off -com.google.android.material.R$dimen: int mtrl_low_ripple_focused_alpha -com.jaredrummler.android.colorpicker.R$style: int Preference_PreferenceScreen_Material -androidx.coordinatorlayout.R$attr: int fontProviderPackage -androidx.drawerlayout.R$styleable: int GradientColor_android_startColor -com.amap.api.location.CoordUtil: void setLoadedSo(boolean) -com.amap.api.location.AMapLocation: boolean c(com.amap.api.location.AMapLocation,boolean) -wangdaye.com.geometricweather.R$string: int fab_transformation_sheet_behavior -com.google.android.gms.common.util.DynamiteApi -wangdaye.com.geometricweather.R$string: int content_des_pm10 -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.lang.String Link -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_precise_anchor_extra_offset -io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_EMPTY -com.google.android.material.R$anim: int mtrl_card_lowers_interpolator -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onAnimationReset() -com.google.android.material.R$attr: int allowStacking -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_lineHeight -androidx.vectordrawable.animated.R$id: int tag_accessibility_pane_title -android.didikee.donate.R$styleable: int SearchView_closeIcon -cyanogenmod.externalviews.ExternalView$5 -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getDistrict() -wangdaye.com.geometricweather.R$id: int notification_big_icon_3 -okhttp3.OkHttpClient: okhttp3.internal.cache.InternalCache internalCache -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleTextAppearance -wangdaye.com.geometricweather.R$layout: int dialog_running_in_background -cyanogenmod.providers.CMSettings$System -wangdaye.com.geometricweather.R$styleable: int Slider_thumbStrokeWidth -com.google.android.material.R$styleable: int Spinner_android_popupBackground -com.google.android.material.R$id: int listMode -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -com.google.android.material.chip.Chip: void setChipIconTint(android.content.res.ColorStateList) -okhttp3.internal.Util: void closeQuietly(java.io.Closeable) -com.tencent.bugly.proguard.i: int a(int,int,boolean) -androidx.appcompat.R$style: int Widget_AppCompat_ProgressBar_Horizontal -com.jaredrummler.android.colorpicker.R$id: int src_atop -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: java.lang.String a(java.io.BufferedReader) -wangdaye.com.geometricweather.R$drawable: int abc_textfield_activated_mtrl_alpha -retrofit2.ParameterHandler$PartMap: ParameterHandler$PartMap(java.lang.reflect.Method,int,retrofit2.Converter,java.lang.String) -androidx.appcompat.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_toRightOf -androidx.constraintlayout.widget.R$id: int left -com.google.android.material.R$dimen: int mtrl_extended_fab_disabled_translation_z -androidx.preference.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -androidx.preference.R$style: int Base_Widget_AppCompat_TextView -com.amap.api.fence.GeoFence: com.amap.api.location.AMapLocation r -androidx.constraintlayout.widget.R$styleable: int MenuView_subMenuArrow -com.tencent.bugly.crashreport.crash.h5.b -wangdaye.com.geometricweather.R$animator: int weather_cloudy_1 -com.tencent.bugly.proguard.u: java.lang.String p -wangdaye.com.geometricweather.R$attr: int constraintSetEnd -android.didikee.donate.R$styleable: int[] SwitchCompat -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: io.reactivex.subjects.UnicastSubject this$0 -okhttp3.internal.http.RetryAndFollowUpInterceptor -androidx.appcompat.R$attr: int actionBarTabStyle -androidx.constraintlayout.widget.R$id: int textSpacerNoTitle -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImpl: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActivityChooserView -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableBottom -com.google.android.material.chip.Chip: void setCloseIconEndPadding(float) -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_buttonIconDimen -android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.background.receiver.widget.WidgetTextProvider: WidgetTextProvider() -androidx.transition.R$styleable: int FontFamilyFont_android_font -com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context,android.util.AttributeSet,int) -com.xw.repo.bubbleseekbar.R$id: int textSpacerNoTitle -androidx.preference.R$layout: int preference_widget_seekbar_material -wangdaye.com.geometricweather.R$color: int design_dark_default_color_secondary -androidx.preference.R$styleable: int StateListDrawable_android_dither -androidx.work.R$id: int action_container -wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentX -wangdaye.com.geometricweather.R$attr: int tickMark -com.google.android.material.R$dimen: int mtrl_card_checked_icon_size -androidx.fragment.R$id: int icon -androidx.vectordrawable.R$id: int italic -androidx.fragment.R$id: int notification_background -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWetBulbTemperature(java.lang.Integer) -com.jaredrummler.android.colorpicker.R$id: int content -com.google.android.material.R$styleable: int OnClick_clickAction -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.WeatherLocation mWeatherLocation -com.google.android.material.R$styleable: int TabLayout_tabContentStart -retrofit2.Retrofit$Builder: boolean validateEagerly -androidx.appcompat.R$styleable: int View_paddingEnd -androidx.hilt.R$anim: int fragment_close_enter -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleGravity -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_SHA -cyanogenmod.app.IPartnerInterface$Stub: cyanogenmod.app.IPartnerInterface asInterface(android.os.IBinder) -android.didikee.donate.R$dimen: int abc_dialog_fixed_width_major -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: AccuCurrentResult$Temperature$Imperial() -androidx.cardview.widget.CardView: CardView(android.content.Context) -com.google.android.material.R$styleable: int BottomAppBar_fabAnimationMode -androidx.preference.R$attr: int windowFixedWidthMajor -com.amap.api.fence.GeoFenceManagerBase: void pauseGeoFence() -cyanogenmod.weatherservice.WeatherProviderService: void onRequestSubmitted(cyanogenmod.weatherservice.ServiceRequest) -cyanogenmod.themes.IThemeService$Stub$Proxy: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.AlertEntity,int) -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_enterFadeDuration -androidx.appcompat.R$styleable: int ActionBar_popupTheme -okhttp3.internal.ws.RealWebSocket$2: RealWebSocket$2(okhttp3.internal.ws.RealWebSocket,okhttp3.Request) -androidx.recyclerview.R$styleable: int[] FontFamilyFont -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_material -retrofit2.CompletableFutureCallAdapterFactory: CompletableFutureCallAdapterFactory() -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.DailyEntity) -androidx.viewpager2.R$attr: int layoutManager -cyanogenmod.os.Build -james.adaptiveicon.R$id: int up -androidx.customview.R$dimen: int compat_control_corner_material -androidx.preference.R$styleable: int PreferenceTheme_dropdownPreferenceStyle -android.didikee.donate.R$styleable: int SearchView_submitBackground -androidx.preference.R$styleable: int AppCompatTheme_searchViewStyle -androidx.constraintlayout.widget.R$style: int Widget_Compat_NotificationActionText -androidx.preference.R$drawable: int abc_scrubber_track_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int ActionBarLayout_android_layout_gravity -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.util.Map i -com.amap.api.location.AMapLocationClientOption$1 -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_SIMULATION_LOCATION -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_percent -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableEnd -okhttp3.internal.connection.RouteSelector$Selection: okhttp3.Route next() -com.tencent.bugly.crashreport.crash.d: com.tencent.bugly.crashreport.crash.d a(android.content.Context) -wangdaye.com.geometricweather.R$id: int cpv_arrow_right -androidx.activity.R$dimen: int notification_top_pad_large_text -androidx.appcompat.widget.AppCompatTextView: android.content.res.ColorStateList getSupportBackgroundTintList() -com.google.android.material.R$styleable: int SearchView_android_imeOptions -androidx.hilt.R$dimen: int notification_subtext_size -com.google.android.material.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -androidx.appcompat.R$styleable: int TextAppearance_android_textFontWeight -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_divider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean -com.xw.repo.bubbleseekbar.R$dimen: int abc_cascading_menus_min_smallest_width -com.tencent.bugly.proguard.o: java.lang.String b() -androidx.lifecycle.DefaultLifecycleObserver: void onPause(androidx.lifecycle.LifecycleOwner) -wangdaye.com.geometricweather.R$array: int air_quality_unit_values -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_maxActionInlineWidth -cyanogenmod.providers.CMSettings$Secure: java.lang.String KEYBOARD_BRIGHTNESS -james.adaptiveicon.R$color: int abc_primary_text_material_light -androidx.hilt.R$styleable: int FragmentContainerView_android_tag -com.bumptech.glide.integration.okhttp.R$attr: int keylines -androidx.cardview.widget.CardView: int getContentPaddingTop() -com.amap.api.location.AMapLocation: int GPS_ACCURACY_GOOD -com.tencent.bugly.crashreport.CrashReport: void putSdkData(android.content.Context,java.lang.String,java.lang.String) -android.didikee.donate.R$attr: int spinnerStyle -com.tencent.bugly.crashreport.CrashReport$UserStrategy: com.tencent.bugly.crashreport.CrashReport$CrashHandleCallback a -androidx.lifecycle.Transformations$3: boolean mFirstTime -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Title -androidx.dynamicanimation.R$id: int action_container -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void dispose() -com.google.android.material.checkbox.MaterialCheckBox -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableLeftCompat -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: android.graphics.Rect getWindowInsets() -com.tencent.bugly.proguard.z: byte[] a(byte[],int) -androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedWidthMajor -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline5 -androidx.constraintlayout.widget.ConstraintLayout: void setOptimizationLevel(int) -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerClose(boolean,io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver) -androidx.preference.R$style: int Base_Theme_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView -com.google.android.gms.location.ActivityTransitionEvent -androidx.appcompat.resources.R$id: int accessibility_custom_action_19 -androidx.preference.R$style -com.tencent.bugly.crashreport.crash.e: java.lang.String a(java.lang.Throwable,int) -com.jaredrummler.android.colorpicker.R$attr: int fontFamily -android.didikee.donate.R$attr: int buttonBarButtonStyle -com.tencent.bugly.proguard.am: java.util.Map z -com.bumptech.glide.R$styleable: int[] CoordinatorLayout_Layout -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_spinnerStyle -wangdaye.com.geometricweather.R$string: int about_glide -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX -com.google.android.material.R$attr: int boxBackgroundColor -wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetMinutelyEntityList() -androidx.recyclerview.widget.RecyclerView: void setAccessibilityDelegateCompat(androidx.recyclerview.widget.RecyclerViewAccessibilityDelegate) -androidx.constraintlayout.widget.R$layout: int select_dialog_item_material -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties: MfEphemerisResult$Properties() -androidx.appcompat.widget.ListPopupWindow -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleDrawable -wangdaye.com.geometricweather.R$attr: int pivotAnchor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric Metric -wangdaye.com.geometricweather.R$id: int widget_week_temp -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX getBrandInfo() -androidx.preference.R$attr: int textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -okhttp3.EventListener: void requestBodyStart(okhttp3.Call) -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayDetailsWidgetConfigActivity -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_barColor -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean,int) -com.google.android.material.R$style: int TextAppearance_Design_Suffix -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.Handler mHandler -androidx.work.ArrayCreatingInputMerger: ArrayCreatingInputMerger() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: int Id -com.jaredrummler.android.colorpicker.R$attr: int windowFixedWidthMinor -com.tencent.bugly.crashreport.CrashReport: void initCrashReport(android.content.Context) -androidx.lifecycle.extensions.R$attr: int ttcIndex -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments comments -com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_material_light -android.didikee.donate.R$styleable: int Toolbar_subtitleTextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow Snow -androidx.preference.R$id: int action_bar_subtitle -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_item_max_width -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayDetailsProvider: WidgetClockDayDetailsProvider() -okhttp3.MediaType: java.lang.String toString() -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalBias -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean mShouldShow -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_corner_radius -cyanogenmod.weather.WeatherInfo$1: java.lang.Object[] newArray(int) -cyanogenmod.providers.DataUsageContract: java.lang.String EXTRA -android.didikee.donate.R$styleable -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert -androidx.hilt.R$id: int accessibility_custom_action_5 -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode PROTOCOL_ERROR -com.xw.repo.bubbleseekbar.R$attr: int preserveIconSpacing -androidx.viewpager.R$id: int normal -androidx.legacy.coreutils.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric Metric -androidx.appcompat.R$string: int abc_capital_off -com.google.android.material.bottomsheet.BottomSheetBehavior$SavedState -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindLevel(java.lang.String) -com.tencent.bugly.proguard.k: java.lang.String toString() -wangdaye.com.geometricweather.R$attr: int badgeStyle -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Time -com.google.android.material.chip.Chip: void setCheckedIconVisible(boolean) -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour valueOf(java.lang.String) -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: long serialVersionUID -org.greenrobot.greendao.AbstractDao: java.util.List loadAll() -com.xw.repo.bubbleseekbar.R$anim: int abc_slide_out_bottom -wangdaye.com.geometricweather.R$dimen: int compat_button_inset_horizontal_material -androidx.constraintlayout.widget.R$id: int dragStart -cyanogenmod.externalviews.ExternalViewProperties: boolean isVisible() -androidx.coordinatorlayout.R$dimen: int notification_subtext_size -com.google.android.material.R$attr: int constraintSetStart -android.didikee.donate.R$color: int abc_primary_text_disable_only_material_light -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_2G3G -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status FAILED -okio.SegmentedByteString: int hashCode() -james.adaptiveicon.R$attr: int actionOverflowMenuStyle -com.google.android.gms.common.internal.zzc: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$string: int transition_activity_search_bar -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: org.reactivestreams.Subscriber downstream -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pm10 -wangdaye.com.geometricweather.db.entities.DaoSession: void clear() -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconTint -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_light -androidx.lifecycle.Lifecycle: androidx.lifecycle.Lifecycle$State getCurrentState() -wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_selectionRequired -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 -com.google.android.material.chip.Chip: Chip(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$layout: int preference_dropdown -com.bumptech.glide.R$styleable: int FontFamily_fontProviderCerts -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf -androidx.preference.R$style: int Preference_DialogPreference_EditTextPreference_Material -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean done -androidx.recyclerview.R$styleable: int RecyclerView_layoutManager -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetTop -com.google.android.material.R$animator: int mtrl_card_state_list_anim -android.support.v4.os.ResultReceiver$1: ResultReceiver$1() -com.amap.api.location.AMapLocationClient: void setApiKey(java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.turingtechnologies.materialscrollbar.R$bool: int abc_config_actionMenuItemAllCaps -androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentHeight -cyanogenmod.themes.ThemeManager$1$1 -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setValue(java.util.List) -wangdaye.com.geometricweather.R$drawable: int ic_menu_up -com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingRight() -cyanogenmod.weather.CMWeatherManager: android.content.Context mContext -androidx.preference.R$attr: int drawableStartCompat -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setMax(float) -com.google.android.material.R$string: int mtrl_picker_save -com.turingtechnologies.materialscrollbar.R$dimen: R$dimen() -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder scheme(java.lang.String) -androidx.constraintlayout.widget.R$attr: int moveWhenScrollAtTop -io.reactivex.Observable: io.reactivex.Single first(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric() -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level valueOf(java.lang.String) -com.google.android.material.card.MaterialCardView: void setClickable(boolean) -androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_default_mtrl_alpha -androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_height_major -wangdaye.com.geometricweather.R$drawable: int notif_temp_134 -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider getInstance(java.lang.String) -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabView -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder mRemote -androidx.work.R$string: int status_bar_notification_info_overflow -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: ObservableSwitchMap$SwitchMapObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) -androidx.lifecycle.LifecycleService: androidx.lifecycle.ServiceLifecycleDispatcher mDispatcher -com.xw.repo.bubbleseekbar.R$styleable: int[] AlertDialog -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawableItem_android_drawable -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_SUNRISE_SUNSET -androidx.customview.R$id: int notification_background -android.didikee.donate.R$styleable: int[] AppCompatSeekBar -wangdaye.com.geometricweather.R$styleable: int[] ActionMode -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: int UnitType -androidx.recyclerview.R$styleable: int FontFamilyFont_android_font -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -com.google.android.material.R$dimen: int mtrl_textinput_start_icon_margin_end -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: android.graphics.Rect val$clipRect -cyanogenmod.weather.CMWeatherManager$2$2: cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener val$listener -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatSeekBar -com.google.android.material.R$styleable: int MenuItem_actionViewClass -androidx.constraintlayout.widget.R$id: int action_bar_activity_content -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: int nameId -okhttp3.internal.cache.CacheInterceptor: boolean isContentSpecificHeader(java.lang.String) -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.Query queryRawCreateListArgs(java.lang.String,java.util.Collection) -androidx.preference.R$styleable: int MenuItem_iconTintMode -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: ObservableRefCount$RefConnection(io.reactivex.internal.operators.observable.ObservableRefCount) -androidx.preference.R$dimen: int compat_button_padding_vertical_material -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceStyle -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog_Alert -com.jaredrummler.android.colorpicker.R$string: int cpv_default_title -okhttp3.internal.http2.Hpack: int PREFIX_5_BITS -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerError(io.reactivex.internal.observers.InnerQueuedObserver,java.lang.Throwable) -androidx.hilt.work.R$dimen: int notification_action_icon_size -okhttp3.HttpUrl: java.lang.String encodedQuery() -com.google.android.material.R$dimen: int abc_action_bar_default_padding_end_material -com.google.gson.FieldNamingPolicy$2: FieldNamingPolicy$2(java.lang.String,int) -com.google.android.material.button.MaterialButton: void setInternalBackground(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSo2Desc(java.lang.String) -okhttp3.Dispatcher: int runningCallsForHost(okhttp3.RealCall$AsyncCall) -com.google.android.material.R$attr: int trackColorInactive -okhttp3.internal.http2.Http2: byte FLAG_NONE -wangdaye.com.geometricweather.R$attr: int subtitleTextAppearance -com.google.android.material.slider.RangeSlider: void setHaloRadius(int) -androidx.constraintlayout.widget.R$id: int SHOW_ALL -androidx.preference.R$styleable: int[] GradientColorItem -androidx.appcompat.widget.AppCompatRadioButton: void setSupportButtonTintList(android.content.res.ColorStateList) -cyanogenmod.app.CMTelephonyManager: java.util.List getSubInformation() -com.jaredrummler.android.colorpicker.R$attr: int key -androidx.recyclerview.R$drawable: int notification_template_icon_bg -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_NULL_SHA -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onError(java.lang.Throwable) -androidx.coordinatorlayout.R$id: int async -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.google.android.material.R$layout: int mtrl_picker_fullscreen -androidx.lifecycle.Lifecycling -com.jaredrummler.android.colorpicker.R$id: int cpv_hex -androidx.work.R$id: int accessibility_custom_action_14 -androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_percent -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: boolean isDisposed() -android.didikee.donate.R$drawable: int abc_list_selector_disabled_holo_light -com.xw.repo.bubbleseekbar.R$attr: int windowFixedWidthMajor -org.greenrobot.greendao.AbstractDao: long executeInsert(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement,boolean) -wangdaye.com.geometricweather.R$attr: int homeAsUpIndicator -com.google.gson.stream.MalformedJsonException: long serialVersionUID -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -androidx.cardview.R$styleable: int CardView_android_minHeight -androidx.hilt.work.R$styleable: int GradientColor_android_startY -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ab_share_pack_mtrl_alpha -com.google.android.material.R$dimen: int abc_dialog_list_padding_top_no_title -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int pm10 -wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_chronus -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: KeyguardExternalViewProviderService$Provider$ProviderImpl$3(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) -wangdaye.com.geometricweather.R$styleable: int Transform_android_transformPivotX -androidx.constraintlayout.widget.R$drawable: int abc_cab_background_top_mtrl_alpha -com.jaredrummler.android.colorpicker.R$dimen: int abc_list_item_padding_horizontal_material -com.google.android.material.R$xml: int standalone_badge_offset -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_orientation -com.jaredrummler.android.colorpicker.R$layout: int abc_popup_menu_item_layout -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -androidx.work.WorkInfo$State -cyanogenmod.app.Profile$ProfileTrigger: void writeToParcel(android.os.Parcel,int) -cyanogenmod.providers.CMSettings$Secure: java.lang.String PRIVACY_GUARD_NOTIFICATION -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipMinTouchTargetSize -com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_PrimarySurface -androidx.cardview.R$dimen: int cardview_compat_inset_shadow -okhttp3.internal.tls.DistinguishedNameParser: int getByte(int) -com.turingtechnologies.materialscrollbar.R$id: int right_side -wangdaye.com.geometricweather.R$styleable: int[] RadialViewGroup -wangdaye.com.geometricweather.R$styleable: int SearchView_queryHint -com.turingtechnologies.materialscrollbar.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -androidx.appcompat.widget.SwitchCompat: int getThumbOffset() -okio.SegmentPool: okio.Segment next -androidx.lifecycle.LifecycleOwner: androidx.lifecycle.Lifecycle getLifecycle() -com.tencent.bugly.proguard.z: byte[] b(byte[],int) -androidx.appcompat.widget.AppCompatCheckedTextView -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context,android.util.AttributeSet) -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getBackgroundDrawable() -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityCreated(android.app.Activity,android.os.Bundle) -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_summaryOff -androidx.work.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.R$id: int spacer -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onError(java.lang.Throwable) -okhttp3.Dispatcher: java.util.Deque readyAsyncCalls -com.tencent.bugly.crashreport.common.info.a: java.lang.String ac -androidx.preference.R$attr: int switchPreferenceCompatStyle -androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy -androidx.appcompat.resources.R$id: int accessibility_custom_action_25 -androidx.appcompat.widget.AlertDialogLayout: AlertDialogLayout(android.content.Context) -com.xw.repo.bubbleseekbar.R$attr: int borderlessButtonStyle -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabBar -james.adaptiveicon.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: long beginTime -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable -com.amap.api.location.AMapLocation: int ERROR_CODE_INVALID_PARAMETER -androidx.constraintlayout.widget.R$attr: int layout_constraintRight_toLeftOf -wangdaye.com.geometricweather.R$id: int textSpacerNoButtons -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -android.didikee.donate.R$color: int accent_material_light -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_LEGACY_THEME -okio.Buffer: okio.Segment head -wangdaye.com.geometricweather.R$layout: int preference_category -androidx.viewpager2.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark_focused -com.tencent.bugly.proguard.p: android.database.Cursor a(boolean,java.lang.String,java.lang.String[],java.lang.String,java.lang.String[],java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.tencent.bugly.proguard.o) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginBottom -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_76 -cyanogenmod.app.ILiveLockScreenManager: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_shadow_height -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float total -com.bumptech.glide.integration.okhttp.R$color: int ripple_material_light -com.google.android.material.button.MaterialButton: void setCornerRadiusResource(int) -androidx.appcompat.R$attr: int dialogTheme -wangdaye.com.geometricweather.R$id: int parent -androidx.viewpager2.widget.ViewPager2: int getOffscreenPageLimit() -android.didikee.donate.R$style: int Base_Widget_AppCompat_ImageButton -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.util.SparseArray getBadgeDrawables() -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_strokeColor -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableEnd -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeRealFeelShaderTemperature -com.google.android.material.slider.BaseSlider: int getLabelBehavior() -wangdaye.com.geometricweather.R$layout: int item_trend_hourly -okhttp3.internal.http2.Http2Stream: void setHeadersListener(okhttp3.internal.http2.Header$Listener) -cyanogenmod.weather.RequestInfo$1: RequestInfo$1() -com.google.android.material.R$drawable: int abc_list_pressed_holo_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: double Value -com.amap.api.fence.DistrictItem: java.lang.String getDistrictName() -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int otherState -com.google.android.material.R$id: int packed -wangdaye.com.geometricweather.R$dimen: int little_weather_icon_size -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_textOn -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_start_padding -wangdaye.com.geometricweather.R$attr: int behavior_autoShrink -android.didikee.donate.R$attr: int dividerHorizontal -com.github.rahatarmanahmed.cpv.CircularProgressView$8: float val$maxSweep -androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context) -androidx.preference.R$dimen: int notification_large_icon_height -okhttp3.internal.ws.RealWebSocket: boolean awaitingPong -com.turingtechnologies.materialscrollbar.R$attr: int bottomAppBarStyle -retrofit2.converter.gson.package-info -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Title -com.google.android.gms.location.places.PlaceReport -androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int View_android_focusable -okhttp3.internal.Internal: boolean isInvalidHttpUrlHost(java.lang.IllegalArgumentException) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitationProbability() -com.google.android.material.slider.BaseSlider: void setTickVisible(boolean) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_interval -com.google.android.material.R$styleable: int Toolbar_android_minHeight -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a: TraceFileHelper$a() -androidx.constraintlayout.widget.R$styleable: int MotionScene_defaultDuration -com.baidu.location.indoor.c: void clear() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.R$dimen: int fastscroll_default_thickness -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windDircEnd -androidx.fragment.app.FragmentManager -com.xw.repo.bubbleseekbar.R$attr: int trackTintMode -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light_BottomSheetDialog -wangdaye.com.geometricweather.R$styleable: int ViewPager2_android_orientation -com.jaredrummler.android.colorpicker.R$attr: int entries -androidx.preference.R$attr: int trackTintMode -okhttp3.OkHttpClient$Builder: java.net.Proxy proxy -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_Chip -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: java.lang.Object item -androidx.drawerlayout.R$id: int action_text -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: io.reactivex.disposables.Disposable upstream -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node removeInternalByKey(java.lang.Object) -okhttp3.internal.http2.Http2Connection: void updateConnectionFlowControl(long) -cyanogenmod.app.PartnerInterface: cyanogenmod.app.PartnerInterface sPartnerInterfaceInstance -okio.Okio$4 -androidx.constraintlayout.widget.R$id: int search_close_btn -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setTempMin(java.lang.String) -com.google.android.material.R$dimen: int mtrl_calendar_day_today_stroke -androidx.preference.R$dimen: int abc_action_bar_overflow_padding_end_material -wangdaye.com.geometricweather.R$color: int material_slider_inactive_track_color -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabText -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource) -androidx.appcompat.R$styleable: int[] CompoundButton -com.github.rahatarmanahmed.cpv.CircularProgressView: int thickness -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitationDuration -okhttp3.TlsVersion: java.lang.String javaName -cyanogenmod.providers.CMSettings$System: java.lang.String SYSTEM_PROFILES_ENABLED -com.google.android.material.R$attr: int tabStyle -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarSize -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -okhttp3.internal.http2.Header -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: ExternalViewProviderService$Provider$ProviderImpl$5(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -android.didikee.donate.R$styleable: int View_android_theme -wangdaye.com.geometricweather.R$string: int precipitation_middle -androidx.preference.R$attr: int textAppearanceListItemSecondary -wangdaye.com.geometricweather.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -androidx.appcompat.R$attr: int buttonTint -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarStyle -cyanogenmod.weather.WeatherInfo: int getTemperatureUnit() -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -androidx.core.R$styleable: int[] GradientColor -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_font -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.jaredrummler.android.colorpicker.R$id: int preset -retrofit2.HttpServiceMethod$SuspendForResponse: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) -androidx.appcompat.R$attr: int listChoiceIndicatorMultipleAnimated -wangdaye.com.geometricweather.R$color: int abc_primary_text_disable_only_material_light -android.didikee.donate.R$styleable: int MenuItem_android_title -androidx.constraintlayout.widget.R$drawable: int notification_bg_low_pressed -com.turingtechnologies.materialscrollbar.R$styleable: int[] GradientColor -androidx.loader.R$styleable: int FontFamilyFont_ttcIndex -com.turingtechnologies.materialscrollbar.R$id: int action_mode_bar_stub -io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper valueOf(java.lang.String) -androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.lifecycle.extensions.R$layout: int custom_dialog -androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerX -com.jaredrummler.android.colorpicker.R$attr: int maxHeight -com.google.android.material.R$string: int mtrl_picker_toggle_to_day_selection -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm25() -com.tencent.bugly.proguard.u: void a(int,long) -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceLargePopupMenu -okhttp3.Address: int hashCode() -androidx.lifecycle.Lifecycling: int resolveObserverCallbackType(java.lang.Class) -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.disposables.CompositeDisposable disposables -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias -org.greenrobot.greendao.AbstractDao: void save(java.lang.Object) -wangdaye.com.geometricweather.R$string: int widget_trend_hourly -okhttp3.internal.cache.CacheInterceptor$1: long read(okio.Buffer,long) -wangdaye.com.geometricweather.R$drawable: int weather_sleet_2 -com.google.android.material.card.MaterialCardView: float getRadius() -wangdaye.com.geometricweather.R$attr: int icon -cyanogenmod.app.CustomTile: android.content.Intent onSettingsClick -okhttp3.internal.connection.RealConnection: okio.BufferedSink sink -com.bumptech.glide.manager.SupportRequestManagerFragment: SupportRequestManagerFragment() -wangdaye.com.geometricweather.db.entities.WeatherEntity: long publishTime -wangdaye.com.geometricweather.R$animator: int mtrl_btn_state_list_anim -androidx.constraintlayout.widget.R$styleable: int[] TextAppearance -androidx.preference.R$bool: int config_materialPreferenceIconSpaceReserved -com.google.android.material.R$dimen: int mtrl_edittext_rectangle_top_offset -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_30 -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isPrecipitation() -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickActiveTintList() -com.turingtechnologies.materialscrollbar.R$attr: int behavior_fitToContents -com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat_Dark -com.google.android.material.R$styleable: int FontFamilyFont_android_fontStyle -com.xw.repo.bubbleseekbar.R$id: int text -wangdaye.com.geometricweather.R$styleable: int Preference_android_summary -wangdaye.com.geometricweather.R$id: int container_main_pollen_title -androidx.constraintlayout.widget.R$dimen: int abc_text_size_menu_material -okhttp3.internal.ws.WebSocketWriter$FrameSink: int formatOpcode -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorTextAppearance -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setTime(long) -cyanogenmod.externalviews.IExternalViewProvider$Stub -io.reactivex.Observable: io.reactivex.Observable timestamp(io.reactivex.Scheduler) -android.didikee.donate.R$styleable: int Toolbar_maxButtonHeight -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -cyanogenmod.app.IPartnerInterface$Stub$Proxy: android.os.IBinder mRemote -cyanogenmod.providers.CMSettings$Secure$2: java.lang.String mDelimiter -wangdaye.com.geometricweather.R$drawable: int ic_launcher -james.adaptiveicon.R$id: int action_mode_bar -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert -com.google.android.material.R$color: int material_slider_halo_color -wangdaye.com.geometricweather.R$attr: int progress_width -androidx.appcompat.R$id: int actions -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String l() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean -retrofit2.http.HTTP -wangdaye.com.geometricweather.R$styleable: int[] SwitchPreference -com.bumptech.glide.R$styleable: int GradientColor_android_gradientRadius -okio.Source: void close() -com.google.android.material.textfield.TextInputLayout: void setHint(int) -wangdaye.com.geometricweather.R$styleable: int Layout_constraint_referenced_ids -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: boolean connected -androidx.customview.R$style: int TextAppearance_Compat_Notification_Time -com.google.android.material.R$dimen: int tooltip_margin -com.tencent.bugly.Bugly: java.lang.String SDK_IS_DEV -com.google.android.material.R$styleable: int MaterialButton_strokeColor -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf -androidx.preference.R$styleable: int SwitchPreference_summaryOn -com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_bottom_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfRain -com.google.android.material.badge.BadgeDrawable$SavedState: android.os.Parcelable$Creator CREATOR -okhttp3.Dispatcher: java.util.List runningCalls() -androidx.preference.R$string: int abc_capital_off -androidx.work.R$id: int tag_unhandled_key_event_manager -com.google.android.material.R$styleable: int[] MaterialButtonToggleGroup -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric -android.support.v4.os.ResultReceiver: void send(int,android.os.Bundle) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setValue(java.util.List) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.util.concurrent.atomic.AtomicLong requested -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: android.os.IBinder asBinder() -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableRight -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_backgroundSplit -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_behavior -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: boolean isValidIndex() -com.google.android.material.R$styleable: int AppCompatTheme_actionBarDivider -com.turingtechnologies.materialscrollbar.R$string: int abc_toolbar_collapse_description -wangdaye.com.geometricweather.R$xml: int icon_provider_shortcut_filter -wangdaye.com.geometricweather.R$layout: int dialog_providers_previewer -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDataConnectionSelectedOnSub -wangdaye.com.geometricweather.R$color: int notification_background_primary -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: void setTo(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_height -wangdaye.com.geometricweather.R$array: int live_wallpaper_day_night_types -com.google.android.material.R$attr: int actionBarTabStyle -android.didikee.donate.R$drawable: int abc_popup_background_mtrl_mult -com.turingtechnologies.materialscrollbar.R$string: int abc_capital_on -wangdaye.com.geometricweather.R$anim: int popup_hide -androidx.preference.R$color: int secondary_text_disabled_material_light -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.util.concurrent.locks.Condition condition -retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.Object adapt(retrofit2.Call) -wangdaye.com.geometricweather.R$attr: int dialogLayout -wangdaye.com.geometricweather.R$dimen: int notification_top_pad_large_text -cyanogenmod.providers.CMSettings: CMSettings() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyleSmall -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMenuItemView -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onComplete() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.converters.TimeZoneConverter timeZoneConverter -com.tencent.bugly.crashreport.common.info.a: com.tencent.bugly.crashreport.common.info.a a(android.content.Context) -androidx.cardview.widget.CardView: void setMinimumHeight(int) -androidx.activity.R$styleable: int[] GradientColor -androidx.constraintlayout.widget.R$styleable: int Transform_android_transformPivotY -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind -com.amap.api.fence.GeoFence: int ERROR_CODE_FAILURE_CONNECTION -wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_backgroundColorStart -okhttp3.logging.HttpLoggingInterceptor: boolean bodyHasUnknownEncoding(okhttp3.Headers) -com.google.android.material.R$attr: int fabCradleMargin -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelBackground -com.jaredrummler.android.colorpicker.R$attr: int multiChoiceItemLayout -cyanogenmod.hardware.CMHardwareManager: int FEATURE_THERMAL_MONITOR -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getVisibility() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorError -com.turingtechnologies.materialscrollbar.R$dimen: int notification_right_icon_size -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_inputType -androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView -com.google.android.material.slider.BaseSlider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) -wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_height_major -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.R$id: int linear -okhttp3.internal.Util: java.lang.String canonicalizeHost(java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getDailyEntityList() -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Menu -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context) -androidx.appcompat.R$styleable: int MenuItem_iconTintMode -androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedHeightMinor -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2 -wangdaye.com.geometricweather.R$styleable: int SearchView_defaultQueryHint -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_menuCategory -cyanogenmod.app.ProfileGroup$1: java.lang.Object createFromParcel(android.os.Parcel) -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onComplete() -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type NONE -cyanogenmod.externalviews.IExternalViewProvider: void onDetach() -androidx.viewpager2.R$id: int info -androidx.vectordrawable.animated.R$string: R$string() -okhttp3.internal.http2.Settings: int getInitialWindowSize() -androidx.preference.R$attr: int preferenceFragmentListStyle -com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) -com.google.android.material.R$id: int add -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_DESTROY -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void dispose() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA -androidx.preference.R$drawable: int abc_text_select_handle_left_mtrl_light -com.jaredrummler.android.colorpicker.R$attr: int layout_behavior -com.tencent.bugly.crashreport.CrashReport: boolean setJavascriptMonitor(com.tencent.bugly.crashreport.CrashReport$WebViewInterface,boolean) -androidx.constraintlayout.widget.R$dimen: int abc_text_size_button_material -com.tencent.bugly.proguard.ak: com.tencent.bugly.proguard.ai w -android.didikee.donate.R$dimen: int abc_disabled_alpha_material_dark -androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context) -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_showMotionSpec -com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable -com.google.android.material.R$attr: int overlay -io.reactivex.Observable: io.reactivex.Single reduce(java.lang.Object,io.reactivex.functions.BiFunction) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_12 -com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_margin -cyanogenmod.hardware.CMHardwareManager: CMHardwareManager(android.content.Context) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$integer: int mtrl_btn_anim_delay_ms -androidx.fragment.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: double Value -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_exitFadeDuration -androidx.appcompat.resources.R$dimen: int notification_main_column_padding_top -com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusTopEnd -wangdaye.com.geometricweather.R$attr: int allowDividerAbove -wangdaye.com.geometricweather.background.receiver.widget.WidgetDayProvider -androidx.preference.R$dimen: int abc_text_size_title_material_toolbar -wangdaye.com.geometricweather.R$dimen: int cpv_default_thickness -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listDividerAlertDialog -androidx.hilt.lifecycle.R$dimen: int compat_notification_large_icon_max_height -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider access$002(cyanogenmod.externalviews.KeyguardExternalView,cyanogenmod.externalviews.IKeyguardExternalViewProvider) -androidx.drawerlayout.R$attr: int alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: java.lang.String getNewX() -android.didikee.donate.R$attr: int selectableItemBackgroundBorderless -wangdaye.com.geometricweather.R$styleable: int[] TextInputLayout -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.DailyEntity) -android.didikee.donate.R$attr: int dialogTheme -wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMarkTintMode -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircleAngle -wangdaye.com.geometricweather.R$drawable: int notif_temp_97 -androidx.lifecycle.LiveData: void removeObserver(androidx.lifecycle.Observer) -androidx.core.R$attr: int font -androidx.drawerlayout.R$id: int notification_main_column_container -wangdaye.com.geometricweather.R$drawable: int notif_temp_64 -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String quotedAV() -androidx.constraintlayout.widget.R$id: int linear -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_checkableBehavior -androidx.preference.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -com.google.gson.stream.JsonReader: int nextInt() -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.viewpager2.R$styleable: int GradientColor_android_gradientRadius -cyanogenmod.weather.CMWeatherManager$2$2: cyanogenmod.weather.CMWeatherManager$2 this$1 -cyanogenmod.app.ProfileGroup: ProfileGroup(android.os.Parcel) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.util.List getValue() -com.google.android.material.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -com.google.android.material.R$id: int unchecked -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitation() -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWeatherPhase() -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleDrawable -io.reactivex.internal.queue.SpscArrayQueue: void clear() -james.adaptiveicon.R$color: int notification_icon_bg_color -james.adaptiveicon.R$styleable: int AppCompatTheme_imageButtonStyle -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String mixNMatchKeyToComponent(java.lang.String) -cyanogenmod.app.ProfileGroup -androidx.preference.R$styleable: int[] SwitchPreference -com.amap.api.location.AMapLocationClientOption: long getGpsFirstTimeout() -wangdaye.com.geometricweather.R$color: int material_deep_teal_500 -okio.DeflaterSink: void finishDeflate() -com.google.android.material.R$id: int NO_DEBUG -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context,android.util.AttributeSet,int) -com.github.rahatarmanahmed.cpv.CircularProgressView: void onSizeChanged(int,int,int,int) -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeWindSpeed() -wangdaye.com.geometricweather.R$drawable: int ic_gauge -wangdaye.com.geometricweather.R$styleable: int ListPreference_entryValues -androidx.customview.R$drawable: int notify_panel_notification_icon_bg -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_elevation -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy -com.google.android.material.slider.Slider: void setHaloRadius(int) -wangdaye.com.geometricweather.R$styleable: int[] Insets -com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_default -wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Light -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator -okhttp3.logging.LoggingEventListener: void callEnd(okhttp3.Call) -androidx.vectordrawable.R$id: int tag_transition_group -com.google.android.material.chip.Chip: void setChipStrokeColor(android.content.res.ColorStateList) -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CONDITION_CODE -com.tencent.bugly.proguard.s: byte[] a(java.lang.String,byte[],com.tencent.bugly.proguard.v,java.util.Map) -com.xw.repo.bubbleseekbar.R$attr: int iconTintMode -com.tencent.bugly.crashreport.common.info.PlugInBean: java.lang.String c -androidx.customview.R$id: int actions -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec RESTRICTED_TLS -androidx.preference.R$layout: int image_frame -androidx.coordinatorlayout.R$attr: int font -okhttp3.Authenticator$1: okhttp3.Request authenticate(okhttp3.Route,okhttp3.Response) -androidx.preference.R$attr: int fontProviderCerts -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderAuthority -androidx.transition.R$attr: int font -androidx.viewpager2.R$id: int accessibility_custom_action_15 -com.google.android.material.R$color: int cardview_dark_background -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void setDisposable(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -androidx.appcompat.R$dimen: int abc_text_size_caption_material -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int CLOUDY -wangdaye.com.geometricweather.R$attr: int measureWithLargestChild -com.google.android.material.R$color: int design_default_color_on_secondary -wangdaye.com.geometricweather.R$style: int Platform_AppCompat_Light -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_text_size -okhttp3.internal.http2.Hpack$Writer: boolean useCompression -wangdaye.com.geometricweather.R$styleable: int FlowLayout_lineSpacing -wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_text_padding_right -androidx.constraintlayout.widget.R$styleable: int[] ConstraintLayout_placeholder -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetStart -androidx.swiperefreshlayout.R$layout: int notification_template_part_time -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit H -retrofit2.ParameterHandler$PartMap: void apply(retrofit2.RequestBuilder,java.util.Map) -androidx.vectordrawable.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onSucceed(java.lang.Object) -com.bumptech.glide.integration.okhttp.R$attr: int fontWeight -com.xw.repo.bubbleseekbar.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionBarOverlay -android.didikee.donate.R$color: int abc_search_url_text -androidx.preference.R$styleable: int MenuItem_android_enabled -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: int UnitType -james.adaptiveicon.R$styleable: int DrawerArrowToggle_drawableSize -androidx.preference.R$style: int Theme_AppCompat_DialogWhenLarge -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_popupTheme -androidx.appcompat.R$attr: int menu -androidx.appcompat.widget.AppCompatCheckedTextView: void setCheckMarkDrawable(int) -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.String) -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mRingerMode -com.google.android.material.R$integer: int mtrl_card_anim_duration_ms -wangdaye.com.geometricweather.R$id: int action_mode_bar -cyanogenmod.providers.CMSettings$Secure: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) -okhttp3.ConnectionSpec: boolean equals(java.lang.Object) -android.support.v4.os.ResultReceiver: void onReceiveResult(int,android.os.Bundle) -james.adaptiveicon.R$styleable: int AppCompatTheme_tooltipFrameBackground -cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String SERVICE_INTERFACE -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_dither -androidx.vectordrawable.animated.R$id: int title -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit MPS -com.bumptech.glide.R$id: int info -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_btn_checkable -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleGravity(int) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.concurrent.atomic.AtomicReference upstream -io.reactivex.internal.util.EmptyComponent: void request(long) -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String B -com.tencent.bugly.crashreport.biz.b: b() -com.google.android.material.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier -androidx.dynamicanimation.R$layout: int notification_action -com.google.android.material.R$layout: int design_navigation_item_subheader -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int SnowProbability -okhttp3.Authenticator: okhttp3.Authenticator NONE -io.reactivex.internal.observers.DeferredScalarObserver: long serialVersionUID -okio.Pipe$PipeSource: long read(okio.Buffer,long) -androidx.appcompat.R$styleable: int LinearLayoutCompat_measureWithLargestChild -androidx.hilt.work.R$layout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric -io.reactivex.internal.disposables.DisposableHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context,android.util.AttributeSet,int) -android.support.v4.app.INotificationSideChannel$Stub$Proxy -androidx.constraintlayout.widget.R$id: int layout -androidx.viewpager.widget.PagerTitleStrip -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.internal.util.AtomicThrowable errors -com.jaredrummler.android.colorpicker.R$attr: int editTextBackground -com.google.android.material.slider.Slider: void setHaloTintList(android.content.res.ColorStateList) -androidx.lifecycle.extensions.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.R$string: int content_desc_search_filter_on -okhttp3.Request$Builder: okhttp3.Request$Builder tag(java.lang.Object) -android.didikee.donate.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -retrofit2.Retrofit: java.util.Map serviceMethodCache -okhttp3.internal.connection.RealConnection: void connectTls(okhttp3.internal.connection.ConnectionSpecSelector) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial Imperial -com.google.android.material.R$styleable: int OnSwipe_moveWhenScrollAtTop -androidx.coordinatorlayout.R$id: int accessibility_custom_action_3 -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_right_mtrl_dark -cyanogenmod.externalviews.KeyguardExternalView$4: void run() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: void setValue(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_percent -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context,android.util.AttributeSet,int) -okhttp3.logging.LoggingEventListener: void responseBodyStart(okhttp3.Call) -com.jaredrummler.android.colorpicker.R$attr: int initialActivityCount -wangdaye.com.geometricweather.R$style: int Preference_Information -androidx.preference.R$styleable: int DialogPreference_android_dialogMessage -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light_NoActionBar -android.didikee.donate.R$styleable: int[] RecycleListView -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyle -com.turingtechnologies.materialscrollbar.R$attr: int divider -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setBuglyLogUpload(boolean) -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: boolean isValid() -com.google.android.material.R$style: int Platform_V25_AppCompat -okhttp3.internal.platform.ConscryptPlatform: okhttp3.internal.platform.ConscryptPlatform buildIfSupported() -androidx.drawerlayout.R$string: int status_bar_notification_info_overflow -androidx.appcompat.R$string: int abc_shareactionprovider_share_with -james.adaptiveicon.R$dimen: int abc_select_dialog_padding_start_material -androidx.viewpager.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance -wangdaye.com.geometricweather.R$id: int design_menu_item_text -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void dispose() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -com.jaredrummler.android.colorpicker.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -wangdaye.com.geometricweather.R$drawable: int abc_cab_background_top_material -com.amap.api.fence.GeoFence: int hashCode() -com.xw.repo.bubbleseekbar.R$attr: int isLightTheme -androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Large -androidx.hilt.R$attr: int fontStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf -com.tencent.bugly.proguard.aj: void a(com.tencent.bugly.proguard.j) -android.didikee.donate.R$styleable: int AppCompatTheme_windowMinWidthMinor -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_LargeComponent -wangdaye.com.geometricweather.R$string: int key_notification_text_color -com.google.android.material.R$attr: int iconTint -androidx.appcompat.R$styleable: int AppCompatTextView_drawableTint -james.adaptiveicon.R$dimen: int abc_seekbar_track_background_height_material -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Borderless -com.google.android.material.circularreveal.cardview.CircularRevealCardView: CircularRevealCardView(android.content.Context) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarItemBackground -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button -android.didikee.donate.R$style: int Widget_AppCompat_ListView -androidx.recyclerview.widget.RecyclerView: void setScrollingTouchSlop(int) -com.google.android.gms.common.internal.safeparcel.SafeParcelReader$ParseException: SafeParcelReader$ParseException(java.lang.String,android.os.Parcel) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: java.lang.Float value -androidx.preference.R$drawable: int abc_textfield_default_mtrl_alpha -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: HistoryEntityDao(org.greenrobot.greendao.internal.DaoConfig) -androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$dimen: int large_title_text_size -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -com.google.android.material.R$styleable: int Constraint_flow_firstVerticalStyle -com.tencent.bugly.proguard.ak: com.tencent.bugly.proguard.ah n -com.turingtechnologies.materialscrollbar.R$attr: int maxButtonHeight -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_6_00 -androidx.appcompat.R$id: int accessibility_custom_action_12 -okhttp3.internal.http2.Header: java.lang.String TARGET_SCHEME_UTF8 -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalAlign -cyanogenmod.externalviews.ExternalViewProperties: int mHeight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object[] toArray() -com.tencent.bugly.proguard.x: boolean b -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_START_VOLUME_VALIDATOR -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String dataUptime -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1 -com.xw.repo.bubbleseekbar.R$string: int abc_menu_delete_shortcut_label -okhttp3.internal.ws.WebSocketWriter$FrameSink -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_padding_left -retrofit2.Utils$GenericArrayTypeImpl: java.lang.String toString() -androidx.appcompat.R$attr: int listChoiceIndicatorSingleAnimated -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter jsonValue(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setDescription(java.lang.String) -androidx.appcompat.view.menu.ListMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setValue(java.util.List) -com.google.android.material.R$color: int abc_tint_spinner -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_android_maxWidth -wangdaye.com.geometricweather.R$style: int Theme_Design_Light -io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicReference missedSubscription -androidx.constraintlayout.widget.R$styleable: int MenuItem_actionLayout -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -com.xw.repo.bubbleseekbar.R$id: int message -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationY -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_shapeAppearance -com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a a() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List alert -androidx.hilt.R$id: int async -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ListView_DropDown -com.google.android.material.slider.BaseSlider: void setThumbStrokeWidth(float) -android.didikee.donate.R$id: int showCustom -cyanogenmod.hardware.ICMHardwareService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.transition.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginBottom -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircleAngle -io.reactivex.Observable: io.reactivex.Observable dematerialize() -androidx.lifecycle.extensions.R$drawable -okhttp3.Dispatcher: int getMaxRequestsPerHost() -androidx.preference.R$string: int abc_action_menu_overflow_description -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol[] values() -com.tencent.bugly.proguard.n: java.util.List c(int) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default -okhttp3.Challenge: int hashCode() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitation() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitationProbability -com.google.android.material.R$drawable: int abc_btn_radio_material_anim -wangdaye.com.geometricweather.R$string: int content_des_minutely_precipitation -com.tencent.bugly.proguard.f: java.util.Map i -com.google.android.material.R$styleable: int[] Motion -com.turingtechnologies.materialscrollbar.R$id: int search_bar -android.didikee.donate.R$attr: int titleTextStyle -wangdaye.com.geometricweather.R$id: int filled -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_elevation -wangdaye.com.geometricweather.R$dimen: int mtrl_fab_translation_z_hovered_focused -wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemIconDisabledAlpha -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.HistoryEntity) -androidx.preference.R$attr: int switchPreferenceStyle -wangdaye.com.geometricweather.R$dimen: int abc_search_view_preferred_width -com.google.android.material.R$color: int mtrl_textinput_hovered_box_stroke_color -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindChillTemperature(java.lang.Integer) -androidx.appcompat.widget.Toolbar: void setCollapseIcon(int) -androidx.constraintlayout.widget.R$string: int abc_searchview_description_submit -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int getIsRainOrSnow() -com.google.android.material.R$string: int character_counter_overflowed_content_description -wangdaye.com.geometricweather.R$styleable: int Transition_motionInterpolator -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_controlBackground -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelMenuListTheme -wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassIndex(java.lang.Integer) -com.google.android.material.R$color: int mtrl_text_btn_text_color_selector -okhttp3.internal.NamedRunnable: java.lang.String name -com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context) -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: long serialVersionUID -androidx.constraintlayout.widget.R$attr: int goIcon -cyanogenmod.weatherservice.ServiceRequestResult$1: java.lang.Object[] newArray(int) -androidx.constraintlayout.widget.R$attr: int percentHeight -com.google.android.material.R$attr: int searchHintIcon -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1(retrofit2.Call) -androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchAnchorSide -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: ICMStatusBarManager$Stub$Proxy(android.os.IBinder) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: void run() -cyanogenmod.app.Profile: cyanogenmod.profiles.ConnectionSettings getConnectionSettingWithSubId(int) -wangdaye.com.geometricweather.R$id: int container_main_aqi_progress -cyanogenmod.providers.CMSettings$System: java.lang.String LOCKSCREEN_PIN_SCRAMBLE_LAYOUT -androidx.preference.R$styleable: int ListPreference_useSimpleSummaryProvider -james.adaptiveicon.R$styleable: int ActionBarLayout_android_layout_gravity -com.jaredrummler.android.colorpicker.R$attr: int paddingBottomNoButtons -com.loc.k: int e() -com.tencent.bugly.crashreport.crash.d: com.tencent.bugly.crashreport.crash.d a() -wangdaye.com.geometricweather.R$string: int settings_notification_hide_big_view_off -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedPassword(java.lang.String) -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: java.util.concurrent.atomic.AtomicReference inner -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyle -okhttp3.OkHttpClient: boolean retryOnConnectionFailure() -androidx.preference.R$style: int Widget_AppCompat_AutoCompleteTextView -okhttp3.internal.cache.DiskLruCache: void processJournal() -okhttp3.internal.Util: java.nio.charset.Charset UTF_16_LE -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner -wangdaye.com.geometricweather.R$layout: int container_circular_sky_view -android.didikee.donate.R$styleable: int AlertDialog_singleChoiceItemLayout -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_4 -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceInformationStyle -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_orientation -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onNext(java.lang.Object) -android.didikee.donate.R$dimen: int abc_text_size_caption_material -wangdaye.com.geometricweather.R$layout: int item_pollen_daily -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime -wangdaye.com.geometricweather.db.entities.AlertEntity: void setWeatherSource(java.lang.String) -com.google.android.material.R$styleable: int[] AppCompatTextView -androidx.constraintlayout.utils.widget.ImageFilterButton: float getCrossfade() -wangdaye.com.geometricweather.R$style: int Theme_Design_BottomSheetDialog -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_maxElementsWrap -androidx.appcompat.R$styleable: int MenuItem_alphabeticModifiers -com.jaredrummler.android.colorpicker.R$drawable: int abc_switch_thumb_material -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow12h -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_section_mark -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: CNWeatherResult$WeatherX$InfoX() -wangdaye.com.geometricweather.R$drawable: int shortcuts_refresh_foreground -android.didikee.donate.R$drawable: int abc_item_background_holo_dark -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableEnd -cyanogenmod.weather.WeatherInfo: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int passwordToggleTintMode -androidx.viewpager.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult -androidx.preference.R$dimen: int abc_dialog_title_divider_material -wangdaye.com.geometricweather.R$string: int widget_clock_day_horizontal -wangdaye.com.geometricweather.R$string: int briefings -cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener: void onLookupCityRequestCompleted(int,java.util.List) -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListMenuView -wangdaye.com.geometricweather.R$attr: int dialogPreferenceStyle -com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String APPLICATION_ID -com.google.android.material.button.MaterialButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -androidx.appcompat.R$drawable: int abc_list_divider_material -androidx.lifecycle.LiveData$ObserverWrapper: boolean shouldBeActive() -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void dispose() -com.amap.api.location.AMapLocation: int describeContents() -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Small -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean isDisposed() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric Metric -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter -androidx.lifecycle.LifecycleRegistry$ObserverWithState: void dispatchEvent(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -androidx.preference.R$styleable: int GradientColor_android_tileMode -androidx.preference.R$color: int primary_dark_material_light -com.amap.api.location.AMapLocation: int ERROR_CODE_NOCGI_WIFIOFF -androidx.transition.R$drawable: int notification_action_background -io.reactivex.Observable: io.reactivex.Observable sample(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer ragweedLevel -wangdaye.com.geometricweather.R$style: int material_icon -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum Maximum -androidx.vectordrawable.animated.R$id: int async -com.google.android.material.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge -androidx.preference.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider this$1 -com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context,android.util.AttributeSet) -okio.Options: okio.ByteString[] byteStrings -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_trackTintMode -com.tencent.bugly.crashreport.crash.d -com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindowBackgroundState_state_above_anchor -james.adaptiveicon.R$drawable: int abc_btn_check_material -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitation(java.lang.Float) -android.didikee.donate.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.R$drawable: int widget_clock_day_details -wangdaye.com.geometricweather.R$array: int week_widget_styles -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginBottom -cyanogenmod.app.Profile$ProfileTrigger: int getType() -com.tencent.bugly.proguard.ad: ad() -com.bumptech.glide.R$styleable: int GradientColor_android_centerY -androidx.preference.R$attr: int theme -androidx.drawerlayout.R$layout: int notification_template_icon_group -retrofit2.converter.gson.GsonResponseBodyConverter: GsonResponseBodyConverter(com.google.gson.Gson,com.google.gson.TypeAdapter) -com.google.android.material.R$style: int Base_Widget_AppCompat_ListView -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeColor(int) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -android.didikee.donate.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableBottomCompat -com.xw.repo.bubbleseekbar.R$color: int primary_text_disabled_material_dark -okhttp3.EventListener: void connectFailed(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol,java.io.IOException) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalStyle -com.jaredrummler.android.colorpicker.R$attr: int trackTintMode -androidx.constraintlayout.widget.R$styleable: int ActionBar_backgroundSplit -okhttp3.internal.platform.ConscryptPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: retrofit2.Call $this_await$inlined -okhttp3.Protocol: okhttp3.Protocol valueOf(java.lang.String) -com.google.android.material.badge.BadgeDrawable$SavedState -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List alertEntityList -androidx.lifecycle.Lifecycle$Event: Lifecycle$Event(java.lang.String,int) -androidx.appcompat.R$attr: int actionOverflowMenuStyle -com.google.android.material.slider.Slider: int getTrackSidePadding() -androidx.fragment.app.FragmentTabHost: FragmentTabHost(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int Slider_android_valueTo -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: androidx.lifecycle.LifecycleOwner mLifecycle -com.google.android.material.chip.Chip: Chip(android.content.Context) -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Medium -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteInTxIterable -james.adaptiveicon.R$drawable: int abc_switch_thumb_material -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: java.lang.Long rise -androidx.viewpager.R$drawable: int notify_panel_notification_icon_bg -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_icon -androidx.appcompat.resources.R$styleable: int GradientColor_android_startColor -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean,int,int) -androidx.lifecycle.ViewModelStore: androidx.lifecycle.ViewModel get(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_scrollMode -androidx.viewpager2.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.db.entities.MinutelyEntity: boolean getDaylight() -wangdaye.com.geometricweather.R$drawable: int abc_ab_share_pack_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$attr: int actionModeSplitBackground -com.xw.repo.bubbleseekbar.R$attr: int titleMargins -androidx.hilt.work.R$anim -com.tencent.bugly.BuglyStrategy: boolean isEnableANRCrashMonitor() -androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMarkTintMode -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,long,java.util.concurrent.TimeUnit) -com.tencent.bugly.proguard.v: int d -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver -com.google.android.material.R$dimen: int design_bottom_navigation_label_padding -com.turingtechnologies.materialscrollbar.R$attr: int isLightTheme -wangdaye.com.geometricweather.R$drawable: int notif_temp_128 -com.google.android.material.R$styleable: int Motion_animate_relativeTo -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_commitIcon -androidx.activity.R$id: int accessibility_custom_action_1 -androidx.constraintlayout.widget.R$styleable: int ActionBar_title -android.support.v4.app.INotificationSideChannel$Stub -com.google.android.material.R$styleable: int MaterialButton_android_checkable -com.turingtechnologies.materialscrollbar.R$color: int secondary_text_default_material_dark -androidx.lifecycle.extensions.R$attr: int font -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator -com.tencent.bugly.proguard.ak: com.tencent.bugly.proguard.ah x -james.adaptiveicon.R$color: int material_blue_grey_950 -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeService sService -cyanogenmod.weatherservice.IWeatherProviderService -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.functions.Function valueSelector -androidx.appcompat.R$attr: int fontFamily -cyanogenmod.profiles.StreamSettings: StreamSettings(int,int,boolean) -com.tencent.bugly.crashreport.common.info.a: boolean B -androidx.hilt.work.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.R$attr: int panelMenuListWidth -okio.Buffer: int read(java.nio.ByteBuffer) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_width_major -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_constantSize -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedVoice(android.content.Context,float) -androidx.activity.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.R$id: int icon -androidx.constraintlayout.widget.R$attr: int actionModeFindDrawable -androidx.appcompat.R$style: R$style() -com.tencent.bugly.proguard.am: java.lang.String s -wangdaye.com.geometricweather.R$string: int wind_4 -com.xw.repo.bubbleseekbar.R$layout: int abc_screen_content_include -io.reactivex.internal.util.NotificationLite: java.lang.Object complete() -androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackgroundColor(int) -james.adaptiveicon.R$id: int notification_main_column -com.xw.repo.bubbleseekbar.R$attr: int panelMenuListTheme -okhttp3.OkHttpClient: int callTimeoutMillis() -androidx.work.R$dimen: int notification_action_text_size -james.adaptiveicon.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation -com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String t -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: boolean handles(android.content.Intent) -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long end -androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$attr: int hintEnabled -androidx.appcompat.R$anim: int abc_slide_out_top -cyanogenmod.weather.WeatherLocation: java.lang.String getCityId() -wangdaye.com.geometricweather.R$styleable: int Spinner_android_dropDownWidth -retrofit2.Callback: void onFailure(retrofit2.Call,java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$color: int design_snackbar_background_color -com.google.android.material.R$styleable: int[] MockView -wangdaye.com.geometricweather.settings.activities.AboutActivity: AboutActivity() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getProvince() -com.google.android.material.R$color: int design_dark_default_color_surface -androidx.loader.R$dimen: int notification_action_icon_size -okhttp3.internal.ws.RealWebSocket: okhttp3.Request request() -james.adaptiveicon.R$styleable: int AppCompatTheme_activityChooserViewStyle -james.adaptiveicon.R$color: int dim_foreground_disabled_material_light -wangdaye.com.geometricweather.R$attr: int shapeAppearanceMediumComponent -com.xw.repo.bubbleseekbar.R$id: int activity_chooser_view_content -io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.observers.InnerQueuedObserverSupport parent -androidx.appcompat.R$styleable: int Toolbar_menu -androidx.activity.R$id: int right_side -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String unitId -retrofit2.ParameterHandler$FieldMap: void apply(retrofit2.RequestBuilder,java.util.Map) -wangdaye.com.geometricweather.R$id: int top -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabView -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitationProbability -androidx.preference.R$style: int PreferenceCategoryTitleTextStyle -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_switchTextOff -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int CLEAR_NIGHT -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: java.lang.Runnable getWrappedRunnable() -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onError(java.lang.Throwable) -cyanogenmod.app.ProfileGroup: java.util.UUID mUuid -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: java.util.concurrent.atomic.AtomicBoolean once -com.google.android.material.card.MaterialCardView: void setCheckedIcon(android.graphics.drawable.Drawable) -io.reactivex.Observable: io.reactivex.Maybe lastElement() -okhttp3.internal.http2.Hpack$Reader: okio.ByteString getName(int) -wangdaye.com.geometricweather.R$attr: int passwordToggleTint -androidx.work.R$layout: R$layout() -okhttp3.internal.Internal: okhttp3.internal.connection.RouteDatabase routeDatabase(okhttp3.ConnectionPool) -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: java.lang.String getWindArrow() -wangdaye.com.geometricweather.R$drawable: int flag_ko -com.tencent.bugly.crashreport.crash.CrashDetailBean: boolean N -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display2 -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator -wangdaye.com.geometricweather.R$style: int widget_text_clock_analog -cyanogenmod.app.ProfileManager: ProfileManager(android.content.Context) -androidx.dynamicanimation.R$attr: int fontProviderCerts -com.amap.api.location.AMapLocation: java.lang.String getProvince() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_textColor -wangdaye.com.geometricweather.R$styleable: int View_paddingStart -wangdaye.com.geometricweather.R$font: int product_sans_regular -androidx.appcompat.resources.R$id: int action_container -cyanogenmod.externalviews.KeyguardExternalView$4: cyanogenmod.externalviews.KeyguardExternalView this$0 -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy ERROR -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_updateNotificationGroup -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onComplete() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_EditText -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String content -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setCountry(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startY -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -com.google.android.material.R$attr: int saturation -androidx.constraintlayout.widget.R$attr: int flow_firstHorizontalStyle -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -james.adaptiveicon.R$layout: int abc_action_mode_bar -okhttp3.ResponseBody$1: okhttp3.MediaType contentType() -wangdaye.com.geometricweather.R$attr: int tint -com.turingtechnologies.materialscrollbar.R$id: int action_bar_title -okhttp3.OkHttpClient$1: void apply(okhttp3.ConnectionSpec,javax.net.ssl.SSLSocket,boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setWeather(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean) -wangdaye.com.geometricweather.R$styleable: int[] BubbleSeekBar -okhttp3.Cache: int requestCount() -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setAdaptiveWidthEnabled(boolean) -okhttp3.internal.cache.CacheStrategy$Factory -com.turingtechnologies.materialscrollbar.R$id: int snackbar_text -androidx.preference.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.google.android.material.R$style: int Widget_AppCompat_Light_PopupMenu -androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -androidx.hilt.R$id: int normal -androidx.core.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: WeatherEntityDao(org.greenrobot.greendao.internal.DaoConfig) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalStyle -okhttp3.internal.http2.Http2Stream: int id -io.reactivex.Observable: io.reactivex.Observable switchOnNextDelayError(io.reactivex.ObservableSource) -com.amap.api.fence.DistrictItem: java.lang.String c -com.google.android.material.R$styleable: int PropertySet_android_visibility -androidx.appcompat.R$style: int TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSo2() -wangdaye.com.geometricweather.db.entities.HistoryEntity -androidx.cardview.R$styleable: int[] CardView -com.tencent.bugly.crashreport.R$string: R$string() -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer cloudCover -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.TableStatements statements -com.google.android.material.R$attr: int toolbarId -wangdaye.com.geometricweather.R$attr: int thumbColor -org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,int) -com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Small_Inverse -com.google.android.material.R$styleable: int FlowLayout_lineSpacing -wangdaye.com.geometricweather.R$styleable: int[] AppCompatTextView -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: boolean isValid() -com.jaredrummler.android.colorpicker.R$attr: int arrowShaftLength -io.reactivex.Observable: io.reactivex.Observable distinct() -com.bumptech.glide.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.R$attr: int tabPaddingTop -cyanogenmod.hardware.CMHardwareManager: java.util.List BOOLEAN_FEATURES -com.xw.repo.bubbleseekbar.R$id: int wrap_content -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setZh_TW(java.lang.String) -com.jaredrummler.android.colorpicker.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableCompat -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixTextColor -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerY -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: boolean isDisposed() -wangdaye.com.geometricweather.R$id: int item_about_library -com.google.android.material.R$styleable: int[] AnimatedStateListDrawableCompat -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onKeyguardDismissed -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_showText -androidx.recyclerview.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial Imperial -org.greenrobot.greendao.AbstractDao: void attachEntity(java.lang.Object) -androidx.preference.R$color: int abc_tint_default -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabView -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okhttp3.internal.cache.DiskLruCache: void trimToSize() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeight -wangdaye.com.geometricweather.R$attr: int layout_goneMarginStart -com.jaredrummler.android.colorpicker.R$attr: int switchTextAppearance -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setContentDescription(java.lang.String) -com.google.android.material.button.MaterialButton -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: java.util.concurrent.atomic.AtomicBoolean shouldConnect -com.jaredrummler.android.colorpicker.R$id: int default_activity_button -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_layout -james.adaptiveicon.R$dimen: int abc_action_bar_icon_vertical_padding_material -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_behavior -androidx.appcompat.R$style: int Base_Widget_AppCompat_SearchView -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void windowUpdate(int,long) -android.didikee.donate.R$styleable: int AppCompatTheme_colorAccent -androidx.preference.R$style: int Widget_AppCompat_SearchView_ActionBar -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_typeface -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Title_Inverse -okhttp3.OkHttpClient: int readTimeout -wangdaye.com.geometricweather.R$attr: int backgroundColorStart -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -androidx.lifecycle.ProcessLifecycleOwner: void attach(android.content.Context) -androidx.transition.R$dimen: int notification_content_margin_start -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.lang.String selected -androidx.appcompat.R$integer: int cancel_button_image_alpha -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.Observer downstream -com.jaredrummler.android.colorpicker.R$attr: int seekBarStyle -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.ObservableSource second -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX -androidx.preference.R$styleable: int Preference_widgetLayout -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setThunderstormPrecipitation(java.lang.Float) -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: java.lang.Object mLatest -io.reactivex.Observable: io.reactivex.Observable flatMapIterable(io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -com.google.android.material.R$styleable: int ImageFilterView_crossfade -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: io.reactivex.Observer child -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPadding -androidx.hilt.work.R$drawable: int notification_bg_low_pressed -androidx.constraintlayout.widget.R$attr: int colorBackgroundFloating -com.google.android.material.R$styleable: int MenuView_subMenuArrow -wangdaye.com.geometricweather.R$drawable: int notif_temp_78 -okhttp3.internal.Util: java.lang.String hostHeader(okhttp3.HttpUrl,boolean) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Colored -james.adaptiveicon.R$attr: int colorControlNormal -com.google.android.material.R$styleable: int Constraint_constraint_referenced_ids -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_checked -org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType None -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedHeightMinor() -androidx.appcompat.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.R$attr: int region_heightLessThan -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Light_Dialog -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) -android.didikee.donate.R$style: int Widget_AppCompat_ListPopupWindow -james.adaptiveicon.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_android_entries -com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_light -androidx.recyclerview.R$dimen: int notification_main_column_padding_top -cyanogenmod.externalviews.IExternalViewProvider: void onAttach(android.os.IBinder) -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.MediaType contentType -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void dispose() -james.adaptiveicon.R$attr: int contentInsetLeft -io.reactivex.Observable: io.reactivex.Observable startWith(java.lang.Iterable) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_wavePeriod -wangdaye.com.geometricweather.R$id: int widget_trend_hourly -androidx.viewpager2.widget.ViewPager2: void setLayoutDirection(int) -com.google.android.material.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -androidx.core.R$drawable: int notification_bg -androidx.preference.R$styleable: int DialogPreference_android_negativeButtonText -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List probabilityForecast -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitation -com.google.android.gms.internal.base.zai -io.reactivex.Observable: io.reactivex.Observable zip(java.lang.Iterable,io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$integer -com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object remove(int) -okhttp3.internal.http.HttpHeaders: java.util.Set varyFields(okhttp3.Response) -wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_descendantFocusability -androidx.constraintlayout.widget.R$color: int switch_thumb_material_dark -androidx.constraintlayout.widget.R$color: int tooltip_background_dark -androidx.constraintlayout.widget.R$styleable: int Motion_transitionEasing -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_only_start_selected -androidx.drawerlayout.R$styleable: int GradientColor_android_centerY -com.google.android.material.textfield.TextInputLayout: void setTextInputAccessibilityDelegate(com.google.android.material.textfield.TextInputLayout$AccessibilityDelegate) -androidx.appcompat.R$drawable: int abc_list_selector_holo_dark -androidx.loader.R$styleable: int GradientColor_android_type -android.didikee.donate.R$color: int secondary_text_default_material_dark -wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextTitle -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.constraintlayout.widget.R$attr: int colorAccent -okio.Buffer: boolean request(long) -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_textOn -com.tencent.bugly.Bugly: android.content.Context applicationContext -android.didikee.donate.R$style: int Theme_AppCompat_Light -com.xw.repo.bubbleseekbar.R$attr: int windowFixedWidthMinor -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_APP_SWITCH_LONG_PRESS_ACTION_VALIDATOR -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -androidx.recyclerview.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.hilt.work.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.remoteviews.config.Hilt_DailyTrendWidgetConfigActivity -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_share_mtrl_alpha -wangdaye.com.geometricweather.R$layout: int material_timepicker -com.google.android.material.chip.Chip: void setEnsureMinTouchTargetSize(boolean) -com.google.android.material.R$styleable: int[] AppCompatTextHelper -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginEnd -androidx.preference.R$color: int foreground_material_light -com.google.android.material.R$styleable: int[] KeyTimeCycle -com.tencent.bugly.proguard.u: long a(int) -retrofit2.http.POST: java.lang.String value() -okhttp3.internal.http2.Http2Connection: void pushResetLater(int,okhttp3.internal.http2.ErrorCode) -androidx.preference.R$dimen: int preference_seekbar_padding_vertical -com.jaredrummler.android.colorpicker.R$color: int abc_btn_colored_borderless_text_material -com.xw.repo.bubbleseekbar.R$string: int abc_menu_sym_shortcut_label -wangdaye.com.geometricweather.R$attr: int textAppearanceListItemSecondary -okhttp3.OkHttpClient$Builder: boolean followSslRedirects -cyanogenmod.providers.CMSettings$Global: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) -com.tencent.bugly.proguard.i: java.lang.Object[] a(java.lang.Object[],int,boolean) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedDescription -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Large -io.reactivex.disposables.ReferenceDisposable -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_max -okhttp3.internal.cache.DiskLruCache$3: java.lang.Object next() -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mPostal -okhttp3.Request$Builder: java.lang.String method -androidx.constraintlayout.widget.R$id: int scrollIndicatorUp -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_strokeColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String url -cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: int leftIndex -wangdaye.com.geometricweather.R$id: int withinBounds -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: java.lang.String unitAbbreviation -androidx.coordinatorlayout.R$id: int tag_unhandled_key_listeners -okhttp3.internal.ws.WebSocketWriter: void writeClose(int,okio.ByteString) -com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored -wangdaye.com.geometricweather.R$attr: int title -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRealFeelShaderTemperature -com.tencent.bugly.proguard.ah -androidx.swiperefreshlayout.R$layout: int notification_template_part_chronometer -androidx.preference.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -com.google.android.material.tabs.TabLayout$TabView: int getContentWidth() -wangdaye.com.geometricweather.R$dimen: int design_fab_size_mini -com.xw.repo.bubbleseekbar.R$attr: int subtitleTextStyle -wangdaye.com.geometricweather.R$attr: int isLightTheme -okio.Okio$3: void close() -androidx.preference.R$style: int Widget_AppCompat_PopupMenu_Overflow -com.bumptech.glide.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon -com.google.android.material.R$attr: int textStartPadding -okhttp3.internal.http1.Http1Codec$FixedLengthSink: okhttp3.internal.http1.Http1Codec this$0 -com.amap.api.location.AMapLocation: int a(com.amap.api.location.AMapLocation,int) -androidx.preference.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int getSubTextColorResId() -androidx.coordinatorlayout.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Time -com.turingtechnologies.materialscrollbar.R$attr: int coordinatorLayoutStyle -androidx.constraintlayout.widget.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.util.Map v -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setWeather(java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int titleMarginEnd -com.google.android.material.tabs.TabLayout: int getTabScrollRange() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCloudCover(java.lang.Integer) -com.google.android.material.R$styleable: int Constraint_barrierMargin -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver -androidx.preference.R$attr: int ttcIndex -androidx.recyclerview.widget.RecyclerView -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_disableDependentsState -okhttp3.EventListener: void callStart(okhttp3.Call) -androidx.fragment.R$dimen: int notification_large_icon_width -androidx.lifecycle.extensions.R$styleable: int GradientColorItem_android_color -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder validateEagerly(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: AtmoAuraQAResult$MultiDaysIndexs() -com.google.android.material.R$id: int parentPanel -com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_DropDownUp -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_2 -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_width -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$id: int search_src_text -cyanogenmod.providers.WeatherContract: java.lang.String AUTHORITY -io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onNext -androidx.constraintlayout.widget.R$attr: int colorControlActivated -com.tencent.bugly.crashreport.crash.c: java.lang.String j -androidx.viewpager.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.fragment.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$styleable: int[] MaterialAutoCompleteTextView -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean done -androidx.constraintlayout.utils.widget.ImageFilterButton: void setBrightness(float) -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -wangdaye.com.geometricweather.R$drawable: int notif_temp_102 -androidx.constraintlayout.widget.R$color: int abc_primary_text_material_dark -okio.Buffer: void readFully(byte[]) -retrofit2.CallAdapter$Factory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -wangdaye.com.geometricweather.R$layout: int item_weather_icon -okhttp3.Dispatcher: void finished(okhttp3.RealCall) -wangdaye.com.geometricweather.R$attr: int textAppearanceLargePopupMenu -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.String toString() -android.didikee.donate.R$style: int Base_Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer apparentTemperature -okhttp3.internal.http1.Http1Codec$ChunkedSink: void flush() -okhttp3.Cache$Entry: boolean isHttps() -wangdaye.com.geometricweather.db.entities.DailyEntity: float hoursOfSun -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircleAngle -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean registerThermalListener(cyanogenmod.hardware.IThermalListenerCallback) -com.google.android.material.R$dimen: int compat_button_padding_vertical_material -com.tencent.bugly.crashreport.common.info.a: java.lang.String f -com.turingtechnologies.materialscrollbar.R$attr: int lastBaselineToBottomHeight -wangdaye.com.geometricweather.main.dialogs.LearnMoreAboutResidentLocationDialog: LearnMoreAboutResidentLocationDialog() -androidx.constraintlayout.utils.widget.ImageFilterView: void setWarmth(float) -com.google.android.material.R$styleable: int MaterialButton_android_insetRight -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onComplete() -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: long serialVersionUID -androidx.appcompat.widget.AppCompatRadioButton: void setSupportButtonTintMode(android.graphics.PorterDuff$Mode) -androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_searchViewStyle -james.adaptiveicon.R$layout: int abc_action_menu_layout -cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getActiveProfile() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_width_major -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconPadding -androidx.preference.R$attr: int textColorSearchUrl -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: java.lang.String Unit -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCity() -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeTitle -okio.Buffer: int write(java.nio.ByteBuffer) -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void subscribe() -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_visible -androidx.preference.R$style: int Widget_AppCompat_CompoundButton_CheckBox -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.reflect.Type responseType() -androidx.appcompat.R$attr: int actionBarDivider -androidx.constraintlayout.widget.R$attr: int dividerPadding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindSpeedEnd() -wangdaye.com.geometricweather.R$color: int abc_tint_btn_checkable -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_rightToLeft -wangdaye.com.geometricweather.R$styleable: int[] ChipGroup -wangdaye.com.geometricweather.R$styleable: int Chip_chipIconVisible -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabText -androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_visible -com.google.gson.stream.JsonReader: int peekKeyword() -okhttp3.internal.http1.Http1Codec: long headerLimit -cyanogenmod.app.PartnerInterface: int ZEN_MODE_IMPORTANT_INTERRUPTIONS -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Badge -com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.badge.BadgeDrawable getBadge() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric -androidx.loader.R$color: R$color() -wangdaye.com.geometricweather.R$layout: int notification_action -com.google.android.material.textfield.TextInputLayout: void setPrefixTextColor(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorGravity -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeSpinner -com.tencent.bugly.crashreport.crash.c: android.content.Context q -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: FlowableOnBackpressureError$BackpressureErrorSubscriber(org.reactivestreams.Subscriber) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -wangdaye.com.geometricweather.R$styleable: int[] ThemeEnforcement -com.google.android.material.R$styleable: int Motion_motionStagger -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain rain -com.amap.api.fence.GeoFence: int e -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset -com.jaredrummler.android.colorpicker.R$id: int notification_background -okhttp3.internal.http.HttpHeaders: boolean hasVaryAll(okhttp3.Headers) -com.google.android.material.R$attr: int behavior_peekHeight -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: void setUnit(java.lang.String) -com.amap.api.location.AMapLocation: java.lang.String z -androidx.constraintlayout.widget.R$attr: int roundPercent -okhttp3.Cookie: okhttp3.Cookie parse(okhttp3.HttpUrl,java.lang.String) -cyanogenmod.weather.WeatherInfo: WeatherInfo() -okhttp3.internal.Util$2: java.lang.String val$name -androidx.legacy.coreutils.R$id: int line1 -com.google.android.material.R$styleable: int TextInputLayout_startIconDrawable -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getThumbStrokeColor() -cyanogenmod.app.CustomTileListenerService: java.lang.String TAG -com.github.rahatarmanahmed.cpv.CircularProgressView$9: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -wangdaye.com.geometricweather.R$attr: int prefixTextAppearance -okio.BufferedSink: okio.BufferedSink writeByte(int) -androidx.drawerlayout.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String windIcon -com.turingtechnologies.materialscrollbar.CustomIndicator: int getIndicatorHeight() -com.jaredrummler.android.colorpicker.R$attr: int navigationIcon -cyanogenmod.providers.CMSettings$System: boolean putFloat(android.content.ContentResolver,java.lang.String,float) -androidx.appcompat.widget.Toolbar: void setContentInsetStartWithNavigation(int) -com.google.android.material.R$styleable: int KeyTrigger_motion_postLayoutCollision -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent -com.google.android.material.R$layout: int abc_list_menu_item_icon -okhttp3.internal.connection.RealConnection: okhttp3.Request createTunnel(int,int,okhttp3.Request,okhttp3.HttpUrl) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: long serialVersionUID -io.reactivex.internal.util.VolatileSizeArrayList: boolean removeAll(java.util.Collection) -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast$Builder setHigh(double) -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody -com.tencent.bugly.crashreport.crash.anr.b: b(android.content.Context,com.tencent.bugly.crashreport.common.strategy.a,com.tencent.bugly.crashreport.common.info.a,com.tencent.bugly.proguard.w,com.tencent.bugly.crashreport.crash.b) -androidx.loader.R$id: int notification_background -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -wangdaye.com.geometricweather.R$attr: int contentInsetRight -androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context) -androidx.vectordrawable.R$id: int accessibility_custom_action_0 -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextColor(android.content.res.ColorStateList) -com.tencent.bugly.proguard.i: i(byte[],int) -com.google.android.material.slider.BaseSlider: int getTrackSidePadding() -androidx.constraintlayout.widget.R$attr: int constraints -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: org.reactivestreams.Subscriber downstream -com.turingtechnologies.materialscrollbar.R$styleable: int ButtonBarLayout_allowStacking -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean isCancelled() -com.google.android.material.R$attr: int percentWidth -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation -cyanogenmod.app.Profile: void setTrigger(cyanogenmod.app.Profile$ProfileTrigger) -wangdaye.com.geometricweather.R$attr: int cardCornerRadius -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.lang.String getPubTime() -com.tencent.bugly.proguard.ad: byte[] b(byte[]) -com.tencent.bugly.proguard.b: b(java.lang.Exception) -io.reactivex.exceptions.CompositeException -com.jaredrummler.android.colorpicker.R$id: int edit_query -wangdaye.com.geometricweather.R$style: int Test_Theme_MaterialComponents_MaterialCalendar -cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings() -com.baidu.location.indoor.mapversion.c.c$b: double c -com.baidu.location.e.o: java.util.List a(org.json.JSONObject,java.lang.String,int) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_homeLayout -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_creator -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void trySchedule() -androidx.hilt.lifecycle.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: float getDegree() -androidx.hilt.work.R$anim: int fragment_open_exit -james.adaptiveicon.R$attr: int textColorSearchUrl -wangdaye.com.geometricweather.R$dimen: int design_navigation_separator_vertical_padding -okhttp3.MultipartBody: okhttp3.MediaType originalType -wangdaye.com.geometricweather.R$attr: int layout_keyline -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -com.google.android.material.R$styleable: int Chip_android_ellipsize -com.bumptech.glide.integration.okhttp.R$string: R$string() -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_AUTO_OUTDOOR_MODE -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogTheme -wangdaye.com.geometricweather.R$id: int wrap -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter this$0 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pm25 -com.google.android.material.R$id: int decor_content_parent -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet) -androidx.drawerlayout.R$styleable: int GradientColor_android_endX -androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy: ConstraintProxy$NetworkStateProxy() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: CaiYunMainlyResult$IndicesBeanX$IndicesBean() -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setEnabled(boolean) -androidx.work.R$attr: int fontProviderPackage -androidx.appcompat.resources.R$dimen: int notification_action_text_size -com.google.android.material.R$attr: int measureWithLargestChild -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle -androidx.appcompat.R$styleable: int MenuGroup_android_enabled -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteSelector$Selection routeSelection -okhttp3.Cache$2: java.lang.Object next() -okhttp3.internal.http.RealInterceptorChain: okhttp3.Call call -com.tencent.bugly.crashreport.common.strategy.a: void a(long) -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor LIGHT -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA -com.google.android.material.R$styleable: int Chip_chipBackgroundColor -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean isDisposed() -io.reactivex.subjects.PublishSubject$PublishDisposable: void onError(java.lang.Throwable) -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$LayoutManager getLayoutManager() -androidx.lifecycle.LifecycleRegistry: void forwardPass(androidx.lifecycle.LifecycleOwner) -androidx.preference.R$id: int tag_unhandled_key_event_manager -com.amap.api.location.LocationManagerBase: void disableBackgroundLocation(boolean) -wangdaye.com.geometricweather.R$styleable: int KeyPosition_sizePercent -cyanogenmod.app.CustomTile: int icon -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCutDrawable -wangdaye.com.geometricweather.common.basic.models.weather.Alert: void deduplication(java.util.List) -androidx.preference.R$attr: int ratingBarStyle -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayModes -androidx.viewpager.R$styleable: int GradientColor_android_centerColor -androidx.activity.R$id: int accessibility_custom_action_16 -androidx.swiperefreshlayout.R$string: R$string() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: CaiYunMainlyResult$ForecastDailyBean() -com.tencent.bugly.crashreport.common.info.b: int l(android.content.Context) -io.reactivex.internal.subscriptions.SubscriptionArbiter: void drain() -com.tencent.bugly.proguard.z: java.lang.String a() -androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerColor -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_progress_in_float -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void cancel(io.reactivex.internal.queue.SpscLinkedArrayQueue,io.reactivex.internal.queue.SpscLinkedArrayQueue) -wangdaye.com.geometricweather.R$attr: int layout_scrollFlags -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -cyanogenmod.profiles.RingModeSettings: void writeToParcel(android.os.Parcel,int) -androidx.constraintlayout.widget.R$color: int bright_foreground_material_light -android.didikee.donate.R$styleable: int AppCompatTheme_windowMinWidthMajor -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String originUrl -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_Solid -androidx.appcompat.widget.AppCompatSpinner$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$drawable: int ic_temperature_fahrenheit -com.tencent.bugly.proguard.j: void a(java.util.Map,int) -com.turingtechnologies.materialscrollbar.DragScrollBar: float getHandleOffset() -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMode -wangdaye.com.geometricweather.R$attr: int onHide -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: ObservableTimeoutTimed$TimeoutFallbackObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker,io.reactivex.ObservableSource) -com.tencent.bugly.crashreport.CrashReport: java.util.Map getSdkExtraData(android.content.Context) -com.google.android.material.slider.BaseSlider: float getValueOfTouchPosition() -androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar -android.didikee.donate.R$layout: int abc_activity_chooser_view -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getCo() -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -okhttp3.internal.Util: java.nio.charset.Charset UTF_32_LE -com.google.android.material.appbar.CollapsingToolbarLayout: void setMaxLines(int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_19 -androidx.coordinatorlayout.R$dimen: int compat_notification_large_icon_max_height -com.google.android.material.R$styleable: int AlertDialog_listItemLayout -cyanogenmod.themes.ThemeManager$1: ThemeManager$1(cyanogenmod.themes.ThemeManager) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_alterWindow -cyanogenmod.app.CustomTile: android.app.PendingIntent onClick -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getMilliMetersTextWithoutUnit(float) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.turingtechnologies.materialscrollbar.R$layout: R$layout() -androidx.preference.R$style: int Base_V7_Theme_AppCompat_Dialog -okhttp3.HttpUrl: okhttp3.HttpUrl get(java.net.URL) -com.xw.repo.bubbleseekbar.R$color: int secondary_text_disabled_material_light -james.adaptiveicon.R$id: int action_bar_subtitle -android.didikee.donate.R$styleable: int ActionBar_indeterminateProgressStyle -com.turingtechnologies.materialscrollbar.R$attr: int paddingStart -androidx.vectordrawable.animated.R$styleable: int GradientColorItem_android_offset -androidx.constraintlayout.widget.R$dimen: int notification_subtext_size -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int limit -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_FONTS -com.tencent.bugly.crashreport.crash.d: android.content.Context e -androidx.appcompat.R$styleable: int CompoundButton_buttonCompat -okhttp3.MultipartBody: java.util.List parts -androidx.recyclerview.R$dimen: int notification_right_side_padding_top -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Body1 -io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,boolean) -androidx.customview.R$styleable: int[] FontFamilyFont -com.turingtechnologies.materialscrollbar.R$color: int secondary_text_default_material_light -androidx.core.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintDimensionRatio -wangdaye.com.geometricweather.R$attr: int brightness -com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context) -com.turingtechnologies.materialscrollbar.R$layout -wangdaye.com.geometricweather.R$attr: int content -wangdaye.com.geometricweather.R$id: int textinput_placeholder -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.util.concurrent.CompletableFuture adapt(retrofit2.Call) -com.turingtechnologies.materialscrollbar.R$attr: int chipMinHeight -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingLeft -com.bumptech.glide.integration.okhttp.R$drawable: int notification_tile_bg -okhttp3.internal.http2.Http2Reader$Handler: void pushPromise(int,int,java.util.List) -cyanogenmod.platform.R$string -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonStyle -com.tencent.bugly.proguard.am: java.lang.String b -wangdaye.com.geometricweather.R$id: int widget_day_week_week_4 -com.google.android.material.chip.Chip: void setChipIconResource(int) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$layout: int test_action_chip -com.google.android.material.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -okhttp3.Cache: void abortQuietly(okhttp3.internal.cache.DiskLruCache$Editor) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer rainHazard6h -com.google.android.material.R$styleable: int TabLayout_tabIconTintMode -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: android.os.IBinder mRemote -androidx.appcompat.R$styleable: int SwitchCompat_splitTrack -okhttp3.internal.Util$2: java.lang.Thread newThread(java.lang.Runnable) -androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_width_major -io.reactivex.internal.util.ExceptionHelper$Termination: java.lang.Throwable fillInStackTrace() -wangdaye.com.geometricweather.R$attr: int textAppearanceOverline -com.google.android.material.R$attr: int layout_constraintWidth_default -com.turingtechnologies.materialscrollbar.R$attr: int titleMargin -wangdaye.com.geometricweather.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: int phenomenoMaxColorId -com.turingtechnologies.materialscrollbar.R$attr: int checkedIcon -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_creator -androidx.preference.R$drawable: int abc_ic_star_half_black_36dp -wangdaye.com.geometricweather.R$id: int item_card_display_deleteBtn -okhttp3.internal.http2.Http2: byte TYPE_PRIORITY -com.google.android.material.R$styleable: int TextInputLayout_boxStrokeErrorColor -com.tencent.bugly.crashreport.biz.UserInfoBean: long e -com.google.android.material.R$styleable: int TextInputLayout_endIconTintMode -cyanogenmod.power.IPerformanceManager$Stub: android.os.IBinder asBinder() -com.google.android.material.R$id: int material_clock_hand -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_behavior -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: long EpochTime -okhttp3.EventListener$1: EventListener$1() -androidx.recyclerview.R$id: int accessibility_custom_action_9 -com.jaredrummler.android.colorpicker.R$attr: int submitBackground -cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_ANSWER -androidx.constraintlayout.widget.R$id: int action_container -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCutDrawable -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.lang.String Phase -androidx.viewpager2.R$dimen: int compat_button_inset_vertical_material -androidx.preference.R$attr: int thickness -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_xml -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,int) -androidx.customview.R$styleable: int GradientColor_android_startX -androidx.lifecycle.extensions.R$dimen: int notification_right_icon_size -com.tencent.bugly.proguard.u: void a(long,boolean) -cyanogenmod.externalviews.KeyguardExternalView: void registerKeyguardExternalViewCallback(cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber) -retrofit2.RequestBuilder: okhttp3.Request$Builder requestBuilder -wangdaye.com.geometricweather.R$attr: int layout_constraintCircle -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tMin -okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.Request request -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMaxWidth -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$000() -android.didikee.donate.R$styleable: int MenuItem_numericModifiers -androidx.drawerlayout.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.R$attr: int selectableItemBackground -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setNightIndicatorRotation(float) -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onComplete() -com.xw.repo.bubbleseekbar.R$attr: int fontVariationSettings -androidx.customview.R$dimen: int notification_content_margin_start -james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat -androidx.lifecycle.MethodCallsLogger -android.didikee.donate.R$attr: int windowMinWidthMajor -com.tencent.bugly.proguard.ak: boolean u -okio.Buffer: byte getByte(long) -com.turingtechnologies.materialscrollbar.R$color: int background_material_dark -wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress -androidx.appcompat.R$style: int Widget_AppCompat_Light_PopupMenu -com.google.android.material.R$attr: int percentX -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart -cyanogenmod.platform.Manifest$permission: java.lang.String PUBLISH_CUSTOM_TILE -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onComplete() -androidx.appcompat.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode -com.google.android.material.R$integer: int abc_config_activityShortDur -james.adaptiveicon.R$dimen: int abc_button_inset_vertical_material -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarSplitStyle -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_10 -io.reactivex.internal.operators.observable.ObservableReplay$Node: java.lang.Object value -wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_EditTextPreference_Material -james.adaptiveicon.R$styleable: int ActionBar_icon -com.google.android.material.R$drawable: int abc_text_select_handle_right_mtrl_light -wangdaye.com.geometricweather.R$attr: int layout_goneMarginLeft -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -com.google.android.material.R$styleable: int[] AnimatedStateListDrawableTransition -retrofit2.ParameterHandler$PartMap: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.google.android.material.internal.ScrimInsetsFrameLayout -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float co -com.turingtechnologies.materialscrollbar.R$attr: int editTextColor -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -androidx.constraintlayout.widget.R$color: int material_deep_teal_500 -okhttp3.internal.http2.Http2Codec: okio.Sink createRequestBody(okhttp3.Request,long) -androidx.constraintlayout.widget.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -com.google.android.material.R$id: int mtrl_calendar_day_selector_frame -androidx.appcompat.R$dimen: int compat_notification_large_icon_max_width -androidx.preference.R$id: int select_dialog_listview -okhttp3.internal.http1.Http1Codec: okio.Sink newChunkedSink() -wangdaye.com.geometricweather.R$styleable: int Layout_minHeight -com.google.android.material.card.MaterialCardView: void setCheckedIconResource(int) -androidx.appcompat.R$style: int Platform_V25_AppCompat -androidx.constraintlayout.widget.R$attr: int arrowShaftLength -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_creator -com.google.android.material.chip.Chip: void setTextAppearance(int) -wangdaye.com.geometricweather.R$styleable: int Tooltip_backgroundTint -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State DESTROYED -androidx.loader.R$id: R$id() -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_radius_on_dragging -com.google.android.material.chip.Chip: void setChecked(boolean) -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$style: int Base_V26_Theme_AppCompat -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Title -com.google.android.material.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -androidx.activity.R$styleable: int FontFamilyFont_android_fontVariationSettings -okhttp3.internal.http2.Http2: byte FLAG_END_PUSH_PROMISE -com.turingtechnologies.materialscrollbar.R$id: int icon -androidx.core.R$dimen: R$dimen() -com.bumptech.glide.load.engine.GlideException -com.jaredrummler.android.colorpicker.R$attr: int isLightTheme -com.tencent.bugly.proguard.w -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -okhttp3.CipherSuite: java.lang.String secondaryName(java.lang.String) -wangdaye.com.geometricweather.R$color: int secondary_text_disabled_material_dark -okhttp3.internal.cache.DiskLruCache: void validateKey(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int titleMargins -com.google.android.material.R$attr: int indicatorCornerRadius -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeStepGranularity -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object getAndNullValue() -james.adaptiveicon.R$attr: int progressBarPadding -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle -com.jaredrummler.android.colorpicker.R$color: int primary_text_default_material_dark -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: ChineseCityEntityDao$Properties() -okhttp3.Address: java.util.List protocols -com.turingtechnologies.materialscrollbar.R$dimen: int notification_top_pad -com.tencent.bugly.crashreport.crash.e: com.tencent.bugly.crashreport.common.strategy.a c -cyanogenmod.providers.CMSettings$System: java.lang.String NAVIGATION_BAR_MENU_ARROW_KEYS -androidx.appcompat.R$styleable: int Toolbar_navigationContentDescription -com.google.android.material.slider.Slider: float getValueTo() -androidx.vectordrawable.R$layout: int notification_template_custom_big -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType USER_REQUEST -com.tencent.bugly.crashreport.biz.b: int c -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_buttonGravity -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: double Value -com.google.android.material.chip.Chip: float getChipMinHeight() -com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_action_area -wangdaye.com.geometricweather.R$styleable: int Constraint_android_orientation -okhttp3.internal.ws.WebSocketWriter$FrameSink: void write(okio.Buffer,long) -com.google.android.material.slider.RangeSlider: void setThumbRadius(int) -androidx.viewpager.R$id: int right_icon -androidx.work.NetworkType: androidx.work.NetworkType CONNECTED -wangdaye.com.geometricweather.R$dimen: int current_weather_icon_container_size -cyanogenmod.providers.CMSettings$Secure: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_122 -cyanogenmod.hardware.CMHardwareManager: boolean requireAdaptiveBacklightForSunlightEnhancement() -com.xw.repo.bubbleseekbar.R$id: int forever -com.google.android.gms.common.SupportErrorDialogFragment -wangdaye.com.geometricweather.R$string: int key_temperature_unit -androidx.preference.R$color: int abc_search_url_text_normal -androidx.preference.R$attr: int contentInsetEndWithActions -wangdaye.com.geometricweather.R$attr: int maxAcceleration -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActivityChooserView -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: android.content.Context b -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -okhttp3.internal.Util: okio.ByteString UTF_16_LE_BOM -android.didikee.donate.R$styleable: int SearchView_queryBackground -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconTintMode -org.greenrobot.greendao.AbstractDao: void updateInTx(java.lang.Iterable) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_Solid -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onError(java.lang.Throwable) -androidx.lifecycle.ViewModelStoreOwner -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: long serialVersionUID -wangdaye.com.geometricweather.R$attr: int titleMarginStart -wangdaye.com.geometricweather.R$color: int design_default_color_on_error -android.didikee.donate.R$styleable: int AppCompatTextView_drawableStartCompat -android.didikee.donate.R$string: R$string() -com.google.android.material.textfield.TextInputLayout: void setDefaultHintTextColor(android.content.res.ColorStateList) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: java.util.concurrent.atomic.AtomicInteger wip -wangdaye.com.geometricweather.R$string: int key_align_end -androidx.appcompat.resources.R$attr: int fontProviderPackage -androidx.preference.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -wangdaye.com.geometricweather.R$drawable: int notif_temp_118 -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle DAILY -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense -com.jaredrummler.android.colorpicker.R$attr: int state_above_anchor -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconTint -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_goIcon -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldLevel -com.google.android.material.R$id: int scale -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language DUTCH -android.didikee.donate.R$styleable: int ActionBar_icon -androidx.preference.R$attr: int thumbTintMode -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_menuCategory -okhttp3.internal.io.FileSystem: void deleteContents(java.io.File) -androidx.appcompat.R$attr: int actionModePasteDrawable -androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -cyanogenmod.hardware.CMHardwareManager: int[] getDisplayColorCalibrationArray() -com.tencent.bugly.proguard.y$a: long b(com.tencent.bugly.proguard.y$a) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_FloatingActionButton -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -okhttp3.internal.cache2.FileOperator: void write(long,okio.Buffer,long) -androidx.viewpager2.R$styleable: int RecyclerView_stackFromEnd -com.google.android.material.slider.BaseSlider: int getFocusedThumbIndex() -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Bridge -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogLayout -james.adaptiveicon.R$attr: int actionModePasteDrawable -android.didikee.donate.R$layout: int support_simple_spinner_dropdown_item -androidx.appcompat.R$styleable: int ActionBar_progressBarPadding -okio.ByteString: java.lang.String string(java.nio.charset.Charset) -androidx.activity.R$id: int accessibility_custom_action_15 -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerColor -okhttp3.internal.Util$2 -wangdaye.com.geometricweather.R$attr: int closeIconEnabled -wangdaye.com.geometricweather.R$dimen: int design_snackbar_text_size -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onComplete() -com.google.android.material.R$styleable: int Layout_chainUseRtl -com.tencent.bugly.crashreport.CrashReport: void setBuglyDbName(java.lang.String) -android.support.v4.os.IResultReceiver$Stub$Proxy: android.support.v4.os.IResultReceiver sDefaultImpl -com.turingtechnologies.materialscrollbar.R$attr: int initialActivityCount -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontWeight -cyanogenmod.providers.CMSettings$System$1: CMSettings$System$1() -androidx.preference.R$drawable: int abc_ratingbar_material -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context,android.util.AttributeSet) -androidx.activity.R$styleable: int GradientColor_android_endColor -android.didikee.donate.R$string: int abc_searchview_description_voice -androidx.hilt.work.R$id: int text -cyanogenmod.providers.CMSettings$1: CMSettings$1() -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeightLarge -android.didikee.donate.R$dimen: int hint_alpha_material_dark -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean delayError -android.didikee.donate.R$dimen: int disabled_alpha_material_dark -com.google.android.material.slider.RangeSlider: void setEnabled(boolean) -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean replace(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) -okio.GzipSource: byte FEXTRA -io.reactivex.internal.schedulers.ScheduledRunnable -com.google.android.material.R$styleable: int KeyCycle_wavePeriod -androidx.preference.R$dimen: int abc_button_padding_horizontal_material -org.greenrobot.greendao.database.DatabaseOpenHelper: void onCreate(android.database.sqlite.SQLiteDatabase) -okio.AsyncTimeout$2: void close() -okhttp3.internal.cache2.Relay -wangdaye.com.geometricweather.R$color: int bright_foreground_inverse_material_dark -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String city -androidx.recyclerview.widget.RecyclerView$LayoutManager$Properties: RecyclerView$LayoutManager$Properties() -androidx.fragment.R$integer -com.google.android.material.R$dimen: int mtrl_slider_halo_radius -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_homeAsUpIndicator -wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_content -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void completion() -androidx.appcompat.R$style: int TextAppearance_AppCompat_Medium -cyanogenmod.library.R$attr: int type -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl access$000(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider) -okhttp3.logging.LoggingEventListener$1 -retrofit2.BuiltInConverters$BufferingResponseBodyConverter: BuiltInConverters$BufferingResponseBodyConverter() -com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_Dialog -james.adaptiveicon.R$color: int button_material_light -wangdaye.com.geometricweather.R$attr: int queryBackground -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: double Value -io.reactivex.Observable: io.reactivex.Observable doOnLifecycle(io.reactivex.functions.Consumer,io.reactivex.functions.Action) -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void error(java.lang.Throwable) -james.adaptiveicon.R$styleable: int ActionBar_contentInsetLeft -wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_shapeAppearanceOverlay -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.background.polling.basic.Hilt_AwakeForegroundUpdateService: Hilt_AwakeForegroundUpdateService() -com.tencent.bugly.crashreport.biz.UserInfoBean: int b -okhttp3.internal.connection.RealConnection: int MAX_TUNNEL_ATTEMPTS -cyanogenmod.profiles.AirplaneModeSettings: void processOverride(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_minHeight -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_MAX_INDEX -okhttp3.internal.tls.CertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) -okhttp3.internal.connection.StreamAllocation: boolean hasMoreRoutes() -com.google.android.material.R$attr: int tint -androidx.transition.R$id: int normal -okhttp3.CacheControl: int maxStaleSeconds() -com.bumptech.glide.integration.okhttp.R$id: int async -com.turingtechnologies.materialscrollbar.R$drawable: int notification_action_background -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTopCompat -androidx.work.R$id: int accessibility_custom_action_5 -com.google.android.material.R$drawable: int design_fab_background -android.didikee.donate.R$styleable: int Toolbar_titleMarginBottom -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void emit() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: void cancel() -com.google.android.material.slider.Slider: void setThumbRadiusResource(int) -com.amap.api.location.AMapLocationQualityReport: java.lang.String getAdviseMessage() -androidx.lifecycle.ProcessLifecycleOwner: void activityStarted() -android.didikee.donate.R$color: int primary_dark_material_light -wangdaye.com.geometricweather.R$style: int widget_week_icon -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String unitId -com.tencent.bugly.crashreport.crash.c: void i() -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetLeft -android.support.v4.os.ResultReceiver: ResultReceiver(android.os.Handler) -androidx.appcompat.resources.R$id: int accessibility_custom_action_12 -okhttp3.internal.cache.DiskLruCache$2: boolean $assertionsDisabled -androidx.fragment.R$id: int accessibility_custom_action_19 -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -androidx.drawerlayout.R$id: int tag_unhandled_key_listeners -cyanogenmod.externalviews.ExternalView$7: void run() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSrc(java.lang.String) -androidx.lifecycle.ViewModelProvider$Factory -com.google.android.material.R$styleable: int MaterialTextAppearance_lineHeight -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_backgroundStacked -com.google.android.material.R$id: int design_menu_item_text -androidx.core.R$id: int tag_accessibility_actions -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_summaryOn -androidx.hilt.work.R$anim: R$anim() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Toolbar -androidx.work.R$dimen: int notification_right_icon_size -okhttp3.HttpUrl$Builder: void resolvePath(java.lang.String,int,int) -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_ALLERGEN -com.google.android.material.R$attr: int thumbColor -androidx.fragment.R$layout -wangdaye.com.geometricweather.R$drawable: int donate_wechat -androidx.recyclerview.R$dimen: R$dimen() -androidx.constraintlayout.widget.R$attr: int indeterminateProgressStyle -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.util.Date time -wangdaye.com.geometricweather.R$styleable: int Transform_android_scaleX -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer relativeHumidity -james.adaptiveicon.R$attr: int checkboxStyle -okhttp3.Response$Builder: okhttp3.Response$Builder headers(okhttp3.Headers) -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference upstream -com.jaredrummler.android.colorpicker.ColorPreferenceCompat: ColorPreferenceCompat(android.content.Context,android.util.AttributeSet) -com.tencent.bugly.proguard.f: int h -androidx.preference.R$string: int abc_menu_enter_shortcut_label -wangdaye.com.geometricweather.R$layout: int material_chip_input_combo -androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_default -androidx.constraintlayout.widget.R$id: int parentPanel -james.adaptiveicon.R$color: int abc_background_cache_hint_selector_material_dark -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Tooltip -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() -androidx.constraintlayout.widget.R$attr: int onHide -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function8) -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getCloudCover() -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type LEFT -wangdaye.com.geometricweather.common.basic.GeoDialog: GeoDialog() -wangdaye.com.geometricweather.R$attr: int onTouchUp -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endY -androidx.appcompat.R$drawable: int abc_control_background_material -com.jaredrummler.android.colorpicker.R$color: int dim_foreground_material_dark -androidx.loader.R$style: int TextAppearance_Compat_Notification -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_thickness -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.entities.WeatherEntity readEntity(android.database.Cursor,int) -com.google.android.material.floatingactionbutton.FloatingActionButton: void show(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_switchTextOff -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderCerts -androidx.hilt.R$anim: int fragment_fade_enter -wangdaye.com.geometricweather.common.basic.models.weather.Wind: int getWindColor(android.content.Context) -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxDaoPlain -androidx.appcompat.app.AppCompatDelegateImpl$PanelFeatureState$SavedState -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State RESUMED -com.google.android.material.R$attr: int contentScrim -okio.Timeout: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) -cyanogenmod.weatherservice.ServiceRequest$Status -androidx.preference.R$styleable: int ActionBar_displayOptions -wangdaye.com.geometricweather.R$string: int settings_title_temperature_unit -androidx.lifecycle.FullLifecycleObserver: void onStop(androidx.lifecycle.LifecycleOwner) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMargins -androidx.preference.R$dimen: int notification_top_pad -androidx.appcompat.R$dimen: int abc_button_padding_horizontal_material -com.google.android.material.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon -wangdaye.com.geometricweather.R$attr: int shapeAppearance -wangdaye.com.geometricweather.main.dialogs.LocationHelpDialog -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer getCloudCover() -wangdaye.com.geometricweather.R$id: int invisible -androidx.core.R$id: int blocking -androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -cyanogenmod.app.IPartnerInterface$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.preference.R$styleable: int GradientColor_android_startX -android.didikee.donate.R$style: int Base_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.R$styleable: int MotionScene_layoutDuringTransition -io.reactivex.internal.operators.observable.ObserverResourceWrapper -com.xw.repo.bubbleseekbar.R$attr: int bsb_hide_bubble -com.jaredrummler.android.colorpicker.R$dimen: int notification_right_icon_size -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerCloseError(java.lang.Throwable) -com.google.android.material.R$dimen: int abc_text_size_button_material -cyanogenmod.app.ProfileGroup: void readFromParcel(android.os.Parcel) -com.google.android.material.R$attr: int flow_verticalGap -com.google.android.material.R$drawable: int abc_textfield_activated_mtrl_alpha -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onComplete() -cyanogenmod.app.CMTelephonyManager: java.lang.String TAG -androidx.appcompat.R$dimen: int abc_select_dialog_padding_start_material -com.google.android.material.progressindicator.ProgressIndicator: int[] getIndicatorColors() -cyanogenmod.providers.CMSettings$System: int getInt(android.content.ContentResolver,java.lang.String,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: BaiduIPLocationResult() -androidx.constraintlayout.widget.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -james.adaptiveicon.R$string: int abc_searchview_description_search -android.didikee.donate.R$style: int Widget_AppCompat_ListView_DropDown -androidx.appcompat.R$layout: int support_simple_spinner_dropdown_item -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: AccuCurrentResult$ApparentTemperature$Imperial() -androidx.transition.R$style: int TextAppearance_Compat_Notification -com.google.android.material.R$styleable: int KeyCycle_android_rotationX -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String DAYS_OF_WEEK -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onLockscreenSlideOffsetChanged(float) -com.turingtechnologies.materialscrollbar.R$layout: int design_layout_tab_icon -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date endDate -com.tencent.bugly.crashreport.common.info.b: java.lang.String g() -com.amap.api.location.AMapLocation: java.lang.String getStreet() -cyanogenmod.profiles.StreamSettings: int mValue -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.internal.util.AtomicThrowable errors -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: void onResponse(retrofit2.Call,retrofit2.Response) -androidx.loader.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.viewpager2.R$id: int action_container -com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.drawable.Drawable getStatusBarScrim() -retrofit2.ParameterHandler$1: retrofit2.ParameterHandler this$0 -okhttp3.ResponseBody: java.io.InputStream byteStream() -com.jaredrummler.android.colorpicker.R$styleable: int[] CoordinatorLayout -wangdaye.com.geometricweather.R$layout: int widget_day_week_symmetry -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_android_maxWidth -wangdaye.com.geometricweather.R$string: int settings_title_notification -androidx.work.impl.WorkManagerInitializer -okhttp3.internal.Internal: void addLenient(okhttp3.Headers$Builder,java.lang.String,java.lang.String) -com.google.android.material.card.MaterialCardView: void setBackgroundInternal(android.graphics.drawable.Drawable) -com.amap.api.location.CoordinateConverter -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void clear() -okhttp3.internal.http2.Settings: int set -okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_3 -retrofit2.Invocation: java.lang.reflect.Method method() -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_ctrl_shortcut_label -com.google.android.material.R$drawable: int material_ic_edit_black_24dp -androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.google.android.material.R$id: int guideline -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean isEnabled() -com.google.android.material.appbar.AppBarLayout$Behavior: AppBarLayout$Behavior(android.content.Context,android.util.AttributeSet) -retrofit2.Response: okhttp3.Response raw() -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getSuffixText() -wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_light -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status[] values() -androidx.lifecycle.LiveData: boolean mDispatchInvalidated -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingEnd -androidx.loader.R$string -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_toLeftOf -com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_thumb -androidx.preference.R$attr: int dialogMessage -wangdaye.com.geometricweather.R$attr: int placeholder_emptyVisibility -android.didikee.donate.R$attr: int actionOverflowMenuStyle -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_EXPORT_WITH_DES40_CBC_SHA -com.google.android.material.R$styleable: int ActionBar_title -wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment: ServiceProviderSettingsFragment() -androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context) -androidx.work.R$id: int accessibility_custom_action_23 -android.didikee.donate.R$id: int action_bar_container -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar -com.google.android.material.R$attr: int itemPadding -androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_android_alpha -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_to_on_mtrl_015 -com.jaredrummler.android.colorpicker.R$attr: int popupWindowStyle -okio.HashingSink: okio.HashingSink hmacSha1(okio.Sink,okio.ByteString) -wangdaye.com.geometricweather.R$attr: int liftOnScroll -android.didikee.donate.R$color: int highlighted_text_material_dark -okhttp3.internal.ws.WebSocketWriter$FrameSink: boolean closed -com.xw.repo.bubbleseekbar.R$attr: int height -james.adaptiveicon.R$attr: int listDividerAlertDialog -cyanogenmod.app.ILiveLockScreenManagerProvider: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_clipToPadding -com.google.android.material.R$dimen: int abc_action_bar_icon_vertical_padding_material -wangdaye.com.geometricweather.db.entities.AlertEntity: void setDescription(java.lang.String) -com.google.android.material.R$string: int abc_action_bar_home_description -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_titleCondensed -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$width -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: void setUnit(java.lang.String) -androidx.constraintlayout.widget.R$layout: int notification_template_part_time -cyanogenmod.app.CustomTile$ExpandedItem$1: cyanogenmod.app.CustomTile$ExpandedItem[] newArray(int) -androidx.work.R$id: int accessibility_custom_action_13 -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense -android.didikee.donate.R$attr: int editTextColor -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getZh_CN() -androidx.preference.R$drawable: int tooltip_frame_dark -com.google.android.material.bottomnavigation.BottomNavigationItemView: int getItemPosition() -androidx.preference.R$style: int Widget_Compat_NotificationActionContainer -com.google.android.material.R$style: int Widget_AppCompat_Button_Borderless_Colored -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -com.google.android.material.appbar.MaterialToolbar: void setNavigationIconColor(int) -androidx.appcompat.R$attr: int buttonGravity -cyanogenmod.app.ILiveLockScreenManager: void cancelLiveLockScreen(java.lang.String,int,int) -okhttp3.internal.http1.Http1Codec$AbstractSource: okio.Timeout timeout() -androidx.dynamicanimation.R$string: R$string() -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onNext(java.lang.Object) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorPrimary -com.google.android.material.R$styleable: int ConstraintSet_animate_relativeTo -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Alert_Bridge -androidx.core.R$dimen: int notification_large_icon_width -androidx.appcompat.R$id: int accessibility_custom_action_8 -androidx.appcompat.resources.R$styleable: int[] GradientColorItem -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_MEDIUM_COLOR_VALIDATOR -com.xw.repo.bubbleseekbar.R$layout: int abc_action_mode_close_item_material -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Co -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeRealFeelShaderTemperature() -androidx.appcompat.widget.LinearLayoutCompat: int getShowDividers() -retrofit2.DefaultCallAdapterFactory -okhttp3.HttpUrl: java.lang.String PASSWORD_ENCODE_SET -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getDistanceVoice(android.content.Context,float) -com.google.android.material.R$attr: int constraint_referenced_ids -androidx.constraintlayout.widget.R$dimen: int abc_select_dialog_padding_start_material -io.reactivex.Observable: io.reactivex.Observable buffer(java.util.concurrent.Callable) -androidx.preference.R$id: int message -com.google.android.material.slider.BaseSlider: float getValueTo() -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_alpha -androidx.appcompat.R$style: int Widget_AppCompat_Spinner_Underlined -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -com.google.gson.internal.LazilyParsedNumber: float floatValue() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver -cyanogenmod.providers.CMSettings$Global: android.net.Uri getUriFor(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int cardview_default_elevation -com.tencent.bugly.proguard.x: boolean b(java.lang.Throwable) -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() -com.bumptech.glide.integration.okhttp.R$layout: int notification_template_custom_big -com.google.android.material.R$styleable: int[] ChipGroup -cyanogenmod.alarmclock.ClockContract$CitiesColumns: android.net.Uri CONTENT_URI -androidx.appcompat.resources.R$id: int accessibility_custom_action_24 -androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.settings.fragments.UnitSettingsFragment -wangdaye.com.geometricweather.R$drawable: int ic_cold -com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context,android.util.AttributeSet) -androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandle getHandle() -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.subjects.Subject signaller -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setEncodedPathSegment(int,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX -wangdaye.com.geometricweather.R$attr: int splitTrack -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_typeface -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_popupTheme -wangdaye.com.geometricweather.R$string: int wind_direction -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex tomorrow -androidx.constraintlayout.widget.R$drawable: int abc_item_background_holo_dark -okhttp3.Protocol -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerComplete(io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_popupTheme -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: Http2Connection$ReaderRunnable$2(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[],boolean,okhttp3.internal.http2.Settings) -cyanogenmod.weather.WeatherInfo: double access$802(cyanogenmod.weather.WeatherInfo,double) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRealFeelTemperature -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_drawPath -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startY -android.didikee.donate.R$color: int bright_foreground_material_light -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -cyanogenmod.profiles.ConnectionSettings: boolean isDirty() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_animate_relativeTo -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: org.reactivestreams.Subscription upstream -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Title -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_defaultQueryHint -androidx.preference.R$styleable: int PreferenceFragment_android_divider -androidx.lifecycle.Transformations$1: androidx.lifecycle.MediatorLiveData val$result -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_checkableBehavior -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Dialog -okhttp3.internal.cache.CacheRequest -io.reactivex.Observable: io.reactivex.Observable rangeLong(long,long) -retrofit2.Retrofit: okhttp3.Call$Factory callFactory() -com.loc.k: java.lang.String b() -okhttp3.internal.http2.PushObserver$1 -android.didikee.donate.R$styleable: int TextAppearance_android_textColorHint -androidx.constraintlayout.widget.R$integer: int config_tooltipAnimTime -androidx.preference.R$styleable: int[] CoordinatorLayout -james.adaptiveicon.R$dimen: int abc_action_bar_content_inset_with_nav -com.google.android.material.R$dimen: int design_bottom_navigation_text_size -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Entry -com.turingtechnologies.materialscrollbar.R$attr: int autoSizeStepGranularity -androidx.legacy.coreutils.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.R$color: int colorRootDark -retrofit2.ParameterHandler$Part: retrofit2.Converter converter -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: float degree -com.jaredrummler.android.colorpicker.R$dimen: int abc_alert_dialog_button_dimen -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView -cyanogenmod.weather.ICMWeatherManager: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) -com.turingtechnologies.materialscrollbar.R$layout: int abc_search_dropdown_item_icons_2line -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: int count -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.List Sources -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_android_max -cyanogenmod.alarmclock.ClockContract$InstancesColumns -wangdaye.com.geometricweather.R$styleable: int[] Variant -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_material_dark -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -androidx.constraintlayout.widget.R$attr: int collapseIcon -okhttp3.Response$Builder: okhttp3.Response$Builder cacheResponse(okhttp3.Response) -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: long produced -com.google.android.material.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon -androidx.work.R$id: int tag_accessibility_heading -androidx.appcompat.R$styleable: int MenuItem_android_numericShortcut -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_normal -okhttp3.HttpUrl: java.util.List queryParameterValues(java.lang.String) -cyanogenmod.externalviews.KeyguardExternalView$9 -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Body1 -wangdaye.com.geometricweather.R$styleable: int Toolbar_navigationContentDescription -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_enabled -com.google.android.material.R$color: int abc_secondary_text_material_light -cyanogenmod.profiles.RingModeSettings: boolean isDirty() -io.reactivex.Observable: io.reactivex.Single reduceWith(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) -androidx.constraintlayout.widget.R$attr: int autoSizeTextType -com.google.android.material.R$attr: int actionBarItemBackground -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onNext(java.lang.Object) -androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context) -wangdaye.com.geometricweather.R$attr: int controlBackground -androidx.constraintlayout.widget.R$drawable: int abc_tab_indicator_mtrl_alpha -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Small -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -android.didikee.donate.R$styleable: int TextAppearance_android_shadowColor -com.google.android.material.R$id: int split_action_bar -com.google.android.material.R$id: int end -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_SLEET -com.google.android.material.textfield.TextInputLayout: void setHelperTextColor(android.content.res.ColorStateList) -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder hostOnlyDomain(java.lang.String) -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_16dp -cyanogenmod.app.ProfileManager: void updateProfile(cyanogenmod.app.Profile) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -com.google.android.material.bottomappbar.BottomAppBar: com.google.android.material.bottomappbar.BottomAppBarTopEdgeTreatment getTopEdgeTreatment() -com.google.gson.LongSerializationPolicy$1: LongSerializationPolicy$1(java.lang.String,int) -com.jaredrummler.android.colorpicker.R$attr: int preserveIconSpacing -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer moldIndex -wangdaye.com.geometricweather.R$string: int abc_action_bar_home_description -androidx.appcompat.R$attr: int actionModeCopyDrawable -cyanogenmod.themes.ThemeManager: ThemeManager(android.content.Context) -androidx.preference.R$styleable: int Preference_android_fragment -com.google.android.material.R$attr: int contentDescription -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_baselineAligned -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_type -androidx.preference.R$dimen: int abc_edit_text_inset_top_material -com.bumptech.glide.R$drawable -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_0 -wangdaye.com.geometricweather.db.entities.LocationEntity: void setProvince(java.lang.String) -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_PLAY_QUEUE -com.google.android.material.R$string: int abc_prepend_shortcut_label -okhttp3.Callback: void onResponse(okhttp3.Call,okhttp3.Response) -okhttp3.internal.ws.WebSocketReader: okio.Buffer messageFrameBuffer -io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit) -com.google.android.material.R$styleable: int KeyPosition_keyPositionType -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -androidx.lifecycle.ProcessLifecycleOwner: boolean mStopSent -androidx.constraintlayout.widget.R$attr: int contrast -com.xw.repo.bubbleseekbar.R$color: int notification_action_color_filter -cyanogenmod.themes.ThemeChangeRequest: java.util.Map mPerAppOverlays -android.support.v4.graphics.drawable.IconCompatParcelizer -com.turingtechnologies.materialscrollbar.R$attr: int textStartPadding -androidx.lifecycle.MediatorLiveData$Source: androidx.lifecycle.Observer mObserver -cyanogenmod.app.IPartnerInterface: void setAirplaneModeEnabled(boolean) -com.google.android.material.button.MaterialButton: void setRippleColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_transformPivotX -androidx.preference.R$id: int buttonPanel -com.google.android.material.R$styleable: int TabLayout_tabPadding -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_CBC_SHA -androidx.constraintlayout.widget.R$id: int activity_chooser_view_content -cyanogenmod.app.IProfileManager$Stub: IProfileManager$Stub() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_begin -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogTheme -androidx.vectordrawable.R$styleable: int FontFamilyFont_android_ttcIndex -cyanogenmod.profiles.BrightnessSettings: boolean isDirty() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: ObservableConcatMapMaybe$ConcatMapMaybeMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,io.reactivex.internal.util.ErrorMode) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Small -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_submitBackground -androidx.appcompat.R$color: int accent_material_light -androidx.constraintlayout.widget.R$string: int abc_search_hint -com.google.android.material.R$style: int TextAppearance_AppCompat_Display1 -com.google.android.material.appbar.AppBarLayout: void removeOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$BaseOnOffsetChangedListener) -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_activated_mtrl_alpha -wangdaye.com.geometricweather.R$attr: int constraints -androidx.vectordrawable.R$dimen: int compat_control_corner_material -androidx.drawerlayout.R$layout -cyanogenmod.externalviews.ExternalViewProviderService$Provider: ExternalViewProviderService$Provider(cyanogenmod.externalviews.ExternalViewProviderService,android.os.Bundle) -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void clear() -cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileGroup getActiveProfileGroup(java.lang.String) -com.google.android.material.R$dimen: int abc_action_bar_default_padding_start_material -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onNext(java.lang.Object) -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Dialog -android.didikee.donate.R$drawable: int abc_ratingbar_small_material -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -okio.BufferedSource: long readHexadecimalUnsignedLong() -wangdaye.com.geometricweather.background.receiver.widget.WidgetDayWeekProvider -wangdaye.com.geometricweather.search.Hilt_SearchActivity: Hilt_SearchActivity() -wangdaye.com.geometricweather.R$id: int item_about_translator_subtitle -androidx.viewpager.widget.ViewPager: void addOnAdapterChangeListener(androidx.viewpager.widget.ViewPager$OnAdapterChangeListener) -androidx.constraintlayout.widget.R$attr -com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: java.lang.String Code -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void drainNormal() -androidx.core.R$layout -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX -com.amap.api.location.AMapLocationClientOption: boolean d -wangdaye.com.geometricweather.R$attr: int motion_triggerOnCollision -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_actionTextColorAlpha -cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(int,java.lang.String,int,java.lang.String) -androidx.appcompat.R$integer: int abc_config_activityDefaultDur -com.google.android.material.chip.Chip: void setTextStartPadding(float) -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showDialog -android.didikee.donate.R$style: int Widget_AppCompat_SearchView -com.tencent.bugly.proguard.f: void a(com.tencent.bugly.proguard.j) -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Chip -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_2 -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.tencent.bugly.proguard.ak: java.util.Map r -cyanogenmod.providers.ThemesContract$ThemesColumns: ThemesContract$ThemesColumns() -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_29 -com.tencent.bugly.crashreport.biz.UserInfoBean -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property HoursOfSun -com.tencent.bugly.crashreport.crash.anr.b: com.tencent.bugly.crashreport.crash.b h -com.turingtechnologies.materialscrollbar.R$attr: int msb_lightOnTouch -com.google.android.material.tabs.TabLayout: int getTabMinWidth() -com.tencent.bugly.proguard.ap: long h -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List hourly_forecast -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode fromHttp2(int) -androidx.core.R$styleable: int GradientColor_android_centerY -androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder retryOnConnectionFailure(boolean) -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginStart -androidx.appcompat.R$attr: int actionBarPopupTheme -okhttp3.internal.connection.RealConnection$1: okhttp3.internal.connection.StreamAllocation val$streamAllocation -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.CompositeDisposable set -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -cyanogenmod.os.Concierge$ParcelInfo: int mStartPosition -wangdaye.com.geometricweather.R$styleable: int ChipGroup_checkedChip -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animDuration -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColor -okhttp3.Headers$Builder: okhttp3.Headers build() -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: long serialVersionUID -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -com.tencent.bugly.proguard.f: int g -com.google.android.material.R$style: int CardView_Light -androidx.preference.R$color: int material_grey_800 -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$attr: int tickMarkTintMode -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerX -com.google.android.material.R$attr: int windowMinWidthMinor -okhttp3.internal.platform.Android10Platform: okhttp3.internal.platform.Platform buildIfSupported() -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onNext(java.lang.Object) -androidx.constraintlayout.widget.R$attr: int listDividerAlertDialog -wangdaye.com.geometricweather.common.basic.GeoActivity: GeoActivity() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum() -androidx.hilt.lifecycle.R$attr: int fontProviderFetchTimeout -androidx.recyclerview.R$styleable: int RecyclerView_android_descendantFocusability -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -okhttp3.internal.connection.StreamAllocation -androidx.appcompat.R$id: int line1 -okio.Okio$2: long read(okio.Buffer,long) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String from -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mSoundMode -wangdaye.com.geometricweather.R$styleable: int CardView_cardElevation -wangdaye.com.geometricweather.R$color: int colorTextDark2nd -androidx.lifecycle.ProcessLifecycleOwner$3$1: void onActivityPostResumed(android.app.Activity) -com.google.android.material.R$style: int Theme_MaterialComponents_Light_BarSize -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode valueOf(java.lang.String) -wangdaye.com.geometricweather.R$color: int colorTextGrey -com.google.android.material.R$attr: int dayTodayStyle -okio.SegmentedByteString: boolean rangeEquals(int,byte[],int,int) -com.google.android.material.R$color: int design_dark_default_color_error -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -androidx.appcompat.R$styleable: int ViewStubCompat_android_inflatedId -okio.Buffer: okio.Buffer writeShort(int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -com.turingtechnologies.materialscrollbar.R$attr: int fabCustomSize -androidx.constraintlayout.widget.R$id: R$id() -androidx.hilt.R$attr: int font -com.tencent.bugly.crashreport.common.info.b: java.lang.String f(android.content.Context) -androidx.appcompat.widget.SwitchCompat: int getThumbScrollRange() -wangdaye.com.geometricweather.R$id: int month_grid -androidx.lifecycle.ReportFragment: ReportFragment() -com.google.android.material.R$styleable: int Constraint_visibilityMode -com.google.android.material.R$styleable: int[] AppBarLayout -james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context,android.util.AttributeSet) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_29 -androidx.appcompat.resources.R$id: int accessibility_custom_action_23 -com.google.android.material.R$styleable: int AppCompatTheme_actionModeBackground -androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(int,java.lang.String) -james.adaptiveicon.AdaptiveIconView: android.graphics.Path getPath() -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void settings(boolean,okhttp3.internal.http2.Settings) -androidx.drawerlayout.R$color: int notification_icon_bg_color -james.adaptiveicon.R$styleable: int MenuView_android_windowAnimationStyle -okhttp3.internal.http2.Http2Reader$ContinuationSource: short padding -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_color -androidx.appcompat.R$bool: R$bool() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Subhead_Inverse -androidx.work.R$drawable: int notification_bg -com.google.android.material.R$dimen: int mtrl_textinput_counter_margin_start -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowMinWidthMajor -android.didikee.donate.R$styleable: int SwitchCompat_switchTextAppearance -com.google.android.material.R$style: int Widget_AppCompat_ActionMode -androidx.viewpager.R$color: int ripple_material_light -okhttp3.internal.ws.RealWebSocket$1: RealWebSocket$1(okhttp3.internal.ws.RealWebSocket) -androidx.preference.R$attr: int layout_dodgeInsetEdges -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode INADEQUATE_SECURITY -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SWAP_VOLUME_KEYS_ON_ROTATION_VALIDATOR -com.google.android.material.R$id: int titleDividerNoCustom -com.tencent.bugly.proguard.ak: java.lang.String t -androidx.vectordrawable.animated.R$color: int secondary_text_default_material_light -androidx.appcompat.widget.Toolbar: void setSubtitle(int) -com.google.android.material.R$styleable: int AppCompatTheme_windowNoTitle -com.jaredrummler.android.colorpicker.ColorPreference: void setOnShowDialogListener(com.jaredrummler.android.colorpicker.ColorPreference$OnShowDialogListener) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -com.tencent.bugly.crashreport.crash.h5.a: java.lang.String h -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_voice_search_api_material -android.support.v4.os.ResultReceiver$MyRunnable: android.os.Bundle mResultData -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getStrokeWidth() -androidx.preference.PreferenceScreen -wangdaye.com.geometricweather.R$attr: int itemPadding -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type valueOf(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentY -androidx.appcompat.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -okhttp3.internal.cache2.Relay: void commit(long) -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: java.lang.String Unit -com.google.android.material.R$id: int baseline -com.xw.repo.bubbleseekbar.R$anim: int abc_fade_out -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String mName -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: cyanogenmod.externalviews.IExternalViewProviderFactory asInterface(android.os.IBinder) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: int UnitType -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void dispose() -androidx.appcompat.R$styleable: int[] AppCompatTheme -okio.Segment -androidx.constraintlayout.widget.R$dimen: int abc_text_size_subtitle_material_toolbar -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_18 -androidx.customview.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial -wangdaye.com.geometricweather.R$interpolator: int fast_out_slow_in -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense -com.xw.repo.bubbleseekbar.R$dimen: int abc_disabled_alpha_material_light -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalGap -androidx.appcompat.widget.AppCompatSpinner: android.content.res.ColorStateList getSupportBackgroundTintList() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_128 -com.jaredrummler.android.colorpicker.R$attr: int summaryOn -com.google.android.material.R$attr: int mock_labelColor -cyanogenmod.app.BaseLiveLockManagerService$1: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -com.tencent.bugly.proguard.ag: byte[] b(byte[]) -wangdaye.com.geometricweather.R$layout: int test_action_chip -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_titleCondensed -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation getWeatherLocation() -androidx.viewpager.widget.PagerTitleStrip: PagerTitleStrip(android.content.Context) -com.google.android.material.R$attr: int layout -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets -wangdaye.com.geometricweather.R$id: int spread -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Inverse -com.google.android.material.R$attr: int toolbarNavigationButtonStyle -okhttp3.ResponseBody: java.io.Reader reader -wangdaye.com.geometricweather.db.entities.LocationEntity: void setCityId(java.lang.String) -androidx.appcompat.widget.ActionBarContainer: ActionBarContainer(android.content.Context) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitationDuration(java.lang.Float) -wangdaye.com.geometricweather.R$styleable: int[] ListPopupWindow -com.tencent.bugly.CrashModule: java.lang.String[] getTables() -com.tencent.bugly.crashreport.common.info.b: java.lang.String[] c -androidx.appcompat.widget.FitWindowsLinearLayout: FitWindowsLinearLayout(android.content.Context,android.util.AttributeSet) -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage[] values() -wangdaye.com.geometricweather.R$styleable: int[] ActionMenuView -com.google.android.material.R$attr: int boxStrokeWidth -wangdaye.com.geometricweather.R$drawable: int weather_hail_1 -com.google.android.material.R$styleable: int AppCompatTheme_checkboxStyle -com.google.android.material.chip.Chip: float getChipStrokeWidth() -wangdaye.com.geometricweather.R$id: int widget_week_icon_2 -okhttp3.internal.cache.DiskLruCache$Entry: long sequenceNumber -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_DifferentCornerSize -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelMenuListTheme -androidx.recyclerview.widget.StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setArcBackgroundColor(int) -io.reactivex.Observable: io.reactivex.Observable concatMapEagerDelayError(io.reactivex.functions.Function,boolean) -james.adaptiveicon.R$drawable: int abc_text_cursor_material -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_always_show_bubble_delay -wangdaye.com.geometricweather.R$color: int design_default_color_error -com.google.android.material.bottomappbar.BottomAppBar: int getFabAnimationMode() -android.didikee.donate.R$drawable: int abc_btn_check_to_on_mtrl_015 -okhttp3.MultipartBody$Builder: java.util.List parts -androidx.vectordrawable.R$id: int tag_accessibility_actions -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Slider -com.google.android.material.slider.Slider: void setValueTo(float) -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long index -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: Precipitation(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderFetchStrategy -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DeterminateDrawable getProgressDrawable() -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_OFF -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Switch -androidx.constraintlayout.widget.Placeholder: int getEmptyVisibility() -com.google.android.material.progressindicator.ProgressIndicator: int getGrowMode() -androidx.viewpager2.widget.ViewPager2: androidx.recyclerview.widget.RecyclerView$Adapter getAdapter() -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_DialogWhenLarge -androidx.lifecycle.Lifecycling: Lifecycling() -io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.location.services.LocationService: void requestLocation(android.content.Context,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) -androidx.appcompat.R$drawable: int abc_edit_text_material -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$dimen: int abc_text_size_caption_material -com.turingtechnologies.materialscrollbar.R$drawable: int avd_show_password -com.google.android.material.R$styleable: int[] ConstraintLayout_Layout -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType valueOf(java.lang.String) -android.didikee.donate.R$attr: int windowNoTitle -com.xw.repo.bubbleseekbar.R$color: int material_grey_850 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -retrofit2.RequestFactory$Builder -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_disabled_z -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassLevel -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position -androidx.preference.R$anim: int btn_checkbox_to_checked_icon_null_animation -androidx.swiperefreshlayout.R$styleable -androidx.preference.EditTextPreference: void setOnBindEditTextListener(androidx.preference.EditTextPreference$OnBindEditTextListener) -androidx.dynamicanimation.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$dimen: int standard_weather_icon_container_size -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void dispose() -com.google.android.material.slider.BaseSlider: void setThumbStrokeColorResource(int) -com.google.android.material.R$styleable: int OnSwipe_touchAnchorSide -com.google.android.material.R$attr: int textAppearanceListItemSmall -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setApparentTemperature(java.lang.Integer) -androidx.constraintlayout.widget.R$styleable: int[] Constraint -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: java.lang.String desc -com.jaredrummler.android.colorpicker.R$anim: int abc_shrink_fade_out_from_bottom -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$id: int SHIFT -wangdaye.com.geometricweather.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionMenuTextAppearance -androidx.appcompat.R$styleable: int AppCompatTheme_buttonStyleSmall -androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.xw.repo.bubbleseekbar.R$layout: int abc_popup_menu_header_item_layout -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeCloudCover -james.adaptiveicon.R$styleable: int Spinner_android_entries -androidx.appcompat.resources.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.R$id: int activity_about_container -androidx.appcompat.widget.AppCompatButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_orderInCategory -androidx.constraintlayout.widget.R$styleable: int Transform_android_scaleX -retrofit2.KotlinExtensions$awaitResponse$2$2 -com.google.android.material.R$layout: int mtrl_picker_header_title_text -androidx.constraintlayout.widget.R$dimen: int abc_button_inset_vertical_material -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle -com.jaredrummler.android.colorpicker.R$dimen: int compat_control_corner_material -cyanogenmod.app.Profile: Profile(android.os.Parcel) -com.google.android.material.R$styleable: int PopupWindowBackgroundState_state_above_anchor -androidx.appcompat.resources.R$drawable: int notification_bg -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_summaryOn -okhttp3.internal.connection.ConnectionSpecSelector: ConnectionSpecSelector(java.util.List) -com.google.android.material.chip.Chip: void setTextEndPaddingResource(int) -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast build() -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_hideOnScroll -wangdaye.com.geometricweather.R$layout: int abc_action_bar_up_container -james.adaptiveicon.R$styleable: int[] AppCompatImageView -androidx.constraintlayout.widget.R$styleable: int State_android_id -wangdaye.com.geometricweather.R$layout: int cpv_preference_square -cyanogenmod.externalviews.KeyguardExternalView$1: cyanogenmod.externalviews.KeyguardExternalView this$0 -okhttp3.internal.http.StatusLine -com.google.android.material.R$style: int TextAppearance_AppCompat_Body1 -com.google.android.material.R$styleable: int Chip_chipStrokeWidth -wangdaye.com.geometricweather.R$styleable: int Preference_android_widgetLayout -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_percent -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_overflow_material -wangdaye.com.geometricweather.main.utils.MainPalette: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_android_textAppearance -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -james.adaptiveicon.R$dimen: int abc_button_padding_vertical_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: double Value -okio.ForwardingTimeout -com.google.android.material.R$attr: int selectorSize -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport parent -androidx.constraintlayout.widget.R$styleable: int AlertDialog_multiChoiceItemLayout -androidx.constraintlayout.widget.R$attr: int fontProviderPackage -com.google.android.material.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.constraintlayout.widget.R$id: int sin -com.tencent.bugly.proguard.v: com.tencent.bugly.crashreport.common.info.a f -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List dailyForecast -com.tencent.bugly.proguard.n: void a(int,java.util.List) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_92 -androidx.constraintlayout.widget.R$attr: int region_widthLessThan -com.google.android.material.R$drawable: int notification_action_background -android.didikee.donate.R$styleable: int ColorStateListItem_android_color -androidx.hilt.R$drawable: int notification_template_icon_low_bg -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DrawingDelegate getCurrentDrawingDelegate() -com.google.android.material.R$attr: int chipStrokeWidth -wangdaye.com.geometricweather.R$id: int mtrl_picker_header_toggle -com.tencent.bugly.crashreport.biz.UserInfoBean: int o -androidx.constraintlayout.widget.R$styleable: int ActionBar_background -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX names -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.Scheduler scheduler -android.didikee.donate.R$dimen: int abc_seekbar_track_background_height_material -android.didikee.donate.R$color: int abc_primary_text_disable_only_material_dark -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: AccuDailyResult$DailyForecasts$Day$Wind$Direction() -wangdaye.com.geometricweather.R$attr: int progressBarPadding -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void run() -com.github.rahatarmanahmed.cpv.CircularProgressView: void init(android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$id: int material_timepicker_view -wangdaye.com.geometricweather.R$drawable: int notif_temp_114 -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Title -cyanogenmod.externalviews.KeyguardExternalView: android.content.Context mContext -androidx.constraintlayout.widget.R$styleable: int Toolbar_menu -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherText -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setDayIndicatorRotation(float) -okhttp3.internal.http2.Hpack -android.didikee.donate.R$color: int material_grey_300 -android.didikee.donate.R$styleable: int TextAppearance_android_textFontWeight -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_listItemLayout -com.turingtechnologies.materialscrollbar.R$id: int parallax -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -retrofit2.Retrofit: java.util.concurrent.Executor callbackExecutor() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitation() -wangdaye.com.geometricweather.R$attr: int arrowShaftLength -cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mDeleteIntent -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.functions.Function mapper -com.turingtechnologies.materialscrollbar.R$string: int search_menu_title -wangdaye.com.geometricweather.R$id: int chip2 -wangdaye.com.geometricweather.R$string: int key_forecast_tomorrow -retrofit2.Response: okhttp3.ResponseBody errorBody -wangdaye.com.geometricweather.R$string: int v7_preference_on -james.adaptiveicon.R$dimen: int tooltip_precise_anchor_extra_offset -com.tencent.bugly.proguard.p: com.tencent.bugly.proguard.p a(android.content.Context,java.util.List) -com.bumptech.glide.integration.okhttp.R$dimen: R$dimen() -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer RIGHT_VALUE -com.turingtechnologies.materialscrollbar.R$animator: R$animator() -android.didikee.donate.R$attr: int actionBarStyle -com.google.android.material.R$styleable: int RecyclerView_reverseLayout -wangdaye.com.geometricweather.R$id: int alerts -com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_checked_black -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_statusBarScrim -androidx.preference.R$styleable: int[] RecyclerView -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: void onReceive(android.content.Context,android.content.Intent) -androidx.core.R$id: int icon_group -androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$styleable: int[] ConstraintSet -james.adaptiveicon.R$attr: int titleTextColor -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeBackground -androidx.recyclerview.widget.RecyclerView: void setItemAnimator(androidx.recyclerview.widget.RecyclerView$ItemAnimator) -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_type -com.jaredrummler.android.colorpicker.R$dimen: int cpv_dialog_preview_height -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void collapseNotificationPanel() -com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$attr: int textAppearanceSearchResultSubtitle -io.reactivex.Observable: io.reactivex.observers.TestObserver test(boolean) -androidx.appcompat.widget.ViewStubCompat: void setVisibility(int) -androidx.viewpager.R$string: R$string() -androidx.appcompat.resources.R$dimen: int notification_media_narrow_margin -io.reactivex.internal.subscribers.DeferredScalarSubscriber: org.reactivestreams.Subscription upstream -wangdaye.com.geometricweather.R$attr: int materialCalendarFullscreenTheme -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_constraintSet -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Bridge -com.google.gson.internal.LinkedTreeMap -androidx.appcompat.app.ActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -wangdaye.com.geometricweather.R$string: int time -androidx.hilt.work.R$style -okhttp3.Headers: java.lang.String toString() -com.google.android.material.R$dimen: int mtrl_low_ripple_hovered_alpha -com.xw.repo.bubbleseekbar.R$anim: int abc_slide_in_top -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleTint -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: int mMin -okhttp3.HttpUrl: okhttp3.HttpUrl get(java.lang.String) -androidx.constraintlayout.widget.R$attr: int constraintSetEnd -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_125 -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ScheduledExecutorService access$500(okhttp3.internal.http2.Http2Connection) -com.tencent.bugly.crashreport.crash.b: void b(com.tencent.bugly.crashreport.crash.CrashDetailBean) -com.jaredrummler.android.colorpicker.R$id: int scrollIndicatorDown -okio.BufferedSource: long indexOf(okio.ByteString) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetEndWithActions -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: void run() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconStartPadding -com.tencent.bugly.CrashModule: boolean hasInitialized() -wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_bottom_material -com.amap.api.location.AMapLocation: int GPS_ACCURACY_UNKNOWN -wangdaye.com.geometricweather.R$color: int design_error -com.google.android.material.R$attr: int layout_constraintCircleAngle -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String g -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: AndroidPlatform$AndroidCertificateChainCleaner(java.lang.Object,java.lang.reflect.Method) -com.google.android.material.floatingactionbutton.FloatingActionButton: void setExpandedComponentIdHint(int) -androidx.appcompat.R$color: int abc_btn_colored_borderless_text_material -com.jaredrummler.android.colorpicker.R$attr: int colorControlHighlight -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: java.lang.Object item -androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -com.google.android.material.slider.BaseSlider: void setTickTintList(android.content.res.ColorStateList) -com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_end -com.google.android.gms.common.api.ApiException: ApiException(com.google.android.gms.common.api.Status) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_GCM_SHA256 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean getPrecipitation() -androidx.fragment.R$id: int normal -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: java.lang.Float min -wangdaye.com.geometricweather.R$id: int mtrl_calendar_selection_frame -cyanogenmod.app.PartnerInterface: cyanogenmod.app.IPartnerInterface sService -com.amap.api.fence.GeoFenceManagerBase: java.util.List getAllGeoFence() -wangdaye.com.geometricweather.R$styleable: int Chip_chipSurfaceColor -wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Text -androidx.hilt.lifecycle.R$dimen: int notification_content_margin_start -androidx.preference.R$id: int customPanel -com.google.android.material.R$styleable: int LinearLayoutCompat_dividerPadding -okhttp3.internal.Util: java.nio.charset.Charset UTF_16_BE -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onDetach() -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_keyboardNavigationCluster -james.adaptiveicon.R$style: int Widget_Compat_NotificationActionText -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_min -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationZ -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_creator -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionDropDownStyle -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int prefetch -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_backgroundTintMode -com.google.android.material.R$attr: int ratingBarStyleSmall -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.Disposable upstream -retrofit2.ParameterHandler$1: ParameterHandler$1(retrofit2.ParameterHandler) -androidx.preference.R$color: int tooltip_background_light -wangdaye.com.geometricweather.R$string: int content_des_moonrise -androidx.transition.R$id: int italic -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float rainPrecipitationProbability -androidx.constraintlayout.widget.R$id: int progress_horizontal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.lang.String getPubTime() -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_wavePeriod -com.google.android.material.R$style -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_bottom_padding -wangdaye.com.geometricweather.remoteviews.config.Hilt_TextWidgetConfigActivity: Hilt_TextWidgetConfigActivity() -androidx.coordinatorlayout.R$attr: int fontWeight -wangdaye.com.geometricweather.remoteviews.config.Hilt_TextWidgetConfigActivity -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_116 -wangdaye.com.geometricweather.R$attr: int titleMargins -androidx.appcompat.widget.AppCompatEditText: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_NoActionBar -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setLabel(java.lang.String) -wangdaye.com.geometricweather.R$string: int key_appearance -com.amap.api.location.LocationManagerBase: boolean isStarted() -wangdaye.com.geometricweather.R$string: int settings_title_notification_custom_color -io.reactivex.internal.observers.ForEachWhileObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void delete() -com.google.android.material.R$styleable: int Tooltip_android_text -com.google.android.material.R$attr: int mock_showDiagonals -androidx.preference.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endX -retrofit2.Retrofit$Builder: Retrofit$Builder(retrofit2.Platform) -cyanogenmod.platform.R$string: R$string() -wangdaye.com.geometricweather.R$styleable: int Variant_region_widthLessThan -wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindLevel -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.TimeUnit unit -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -com.google.android.material.R$color: int secondary_text_disabled_material_light -android.didikee.donate.R$attr: int checkedTextViewStyle -androidx.appcompat.R$styleable: int[] ActionBar -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog -com.google.gson.stream.JsonReader: int PEEKED_SINGLE_QUOTED -wangdaye.com.geometricweather.R$dimen: int abc_text_size_body_1_material -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List phenomenonsItems -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_pixel -com.google.android.material.R$dimen: int mtrl_navigation_elevation -androidx.lifecycle.ClassesInfoCache: ClassesInfoCache() -wangdaye.com.geometricweather.R$drawable: int flag_ja -androidx.lifecycle.ReflectiveGenericLifecycleObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -okhttp3.RealCall: java.lang.String toLoggableString() -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceFragmentCompat -com.google.android.material.R$drawable: int material_ic_menu_arrow_down_black_24dp -cyanogenmod.providers.CMSettings$Global -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf -com.xw.repo.bubbleseekbar.R$attr: int listMenuViewStyle -okhttp3.OkHttpClient$Builder: int connectTimeout -android.didikee.donate.R$anim: int abc_popup_exit -wangdaye.com.geometricweather.weather.json.mf.MfRainResult -cyanogenmod.externalviews.IKeyguardExternalViewProvider -androidx.preference.R$string: int abc_searchview_description_submit -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textFontWeight -wangdaye.com.geometricweather.R$string: int settings_title_forecast_today -androidx.hilt.work.R$id: int tag_accessibility_pane_title -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Tooltip -androidx.constraintlayout.widget.R$color: int accent_material_light -okhttp3.internal.ws.WebSocketReader: okio.BufferedSource source -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constrainedWidth -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_translation_z_pressed -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListPopupWindow -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogTheme -com.tencent.bugly.BuglyStrategy: java.lang.Class getUserInfoActivity() -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties properties -androidx.vectordrawable.animated.R$dimen: int notification_subtext_size -android.didikee.donate.R$attr: int listChoiceBackgroundIndicator -wangdaye.com.geometricweather.R$attr: int logo -wangdaye.com.geometricweather.R$attr: int msb_barColor -okhttp3.Response$Builder: okhttp3.Response$Builder body(okhttp3.ResponseBody) -wangdaye.com.geometricweather.R$string: int degree_day_temperature -retrofit2.Platform: retrofit2.Platform get() -androidx.constraintlayout.widget.R$styleable: int KeyPosition_keyPositionType -androidx.appcompat.resources.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.R$color: int design_default_color_surface -com.google.android.material.R$attr: int helperTextEnabled -com.google.android.material.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Spinner_Underlined -com.loc.k: int e -androidx.recyclerview.widget.RecyclerView: void setRecycledViewPool(androidx.recyclerview.widget.RecyclerView$RecycledViewPool) -wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_backgroundTintMode -com.bumptech.glide.R$attr: int statusBarBackground -io.reactivex.Observable: io.reactivex.Observable intervalRange(long,long,long,long,java.util.concurrent.TimeUnit) -okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method warnIfOpenMethod -wangdaye.com.geometricweather.R$attr: int persistent -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Fullscreen -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_toggle -android.didikee.donate.R$attr: int checkboxStyle -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_bias -okio.Pipe -okhttp3.internal.connection.ConnectionSpecSelector: boolean connectionFailed(java.io.IOException) -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_focused_z -androidx.constraintlayout.utils.widget.ImageFilterView: void setOverlay(boolean) -com.bumptech.glide.R$styleable: R$styleable() -android.didikee.donate.R$styleable: int RecycleListView_paddingBottomNoButtons -cyanogenmod.app.CustomTile$ExpandedStyle: int describeContents() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setNo2Desc(java.lang.String) -wangdaye.com.geometricweather.R$id: int action_manage -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void request(long) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getIcePrecipitationProbability() -androidx.constraintlayout.helper.widget.Layer -io.reactivex.internal.observers.BasicIntQueueDisposable: void dispose() -org.greenrobot.greendao.AbstractDao: void saveInTx(java.lang.Object[]) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_4_material -androidx.constraintlayout.widget.ConstraintHelper -io.reactivex.Observable: io.reactivex.Observable ambArray(io.reactivex.ObservableSource[]) -retrofit2.KotlinExtensions$suspendAndThrow$1 -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_timeIcon -cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri APPLIED_URI -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayGammaCalibration -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -com.tencent.bugly.proguard.d: void a(java.lang.String,java.lang.Object) -retrofit2.RequestFactory$Builder: java.lang.annotation.Annotation[] methodAnnotations -com.github.rahatarmanahmed.cpv.CircularProgressView$2: void onAnimationEnd(android.animation.Animator) -james.adaptiveicon.R$drawable -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$styleable: int CardView_cardCornerRadius -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_year_abbr -com.google.android.material.card.MaterialCardView: void setBackground(android.graphics.drawable.Drawable) -com.tencent.bugly.proguard.z: java.util.Map a -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: android.os.IBinder asBinder() -retrofit2.ParameterHandler$RawPart: void apply(retrofit2.RequestBuilder,java.lang.Object) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver) -androidx.constraintlayout.widget.R$attr: int layout_constraintRight_toRightOf -io.reactivex.internal.schedulers.AbstractDirectTask -com.github.rahatarmanahmed.cpv.CircularProgressView: int size -com.xw.repo.bubbleseekbar.R$attr: int actionModeWebSearchDrawable -androidx.customview.R$string -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode[] values() -com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.aq a(com.tencent.bugly.crashreport.biz.UserInfoBean) -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String formattedId -cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient mClient -com.google.android.material.R$styleable: int[] ButtonBarLayout -wangdaye.com.geometricweather.R$animator: int weather_sleet_2 -androidx.legacy.coreutils.R$id: int text2 -com.google.android.material.R$attr: int drawableTintMode -io.reactivex.internal.schedulers.AbstractDirectTask: void dispose() -com.turingtechnologies.materialscrollbar.R$attr: int tooltipFrameBackground -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Button -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_exitFadeDuration -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function9) -io.reactivex.Observable: io.reactivex.Single isEmpty() -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -androidx.constraintlayout.widget.Group: Group(android.content.Context) -com.jaredrummler.android.colorpicker.R$attr: int listItemLayout -androidx.preference.R$styleable: int PreferenceTheme_switchPreferenceStyle -com.google.android.gms.common.api.internal.LifecycleCallback: com.google.android.gms.common.api.internal.LifecycleFragment getChimeraLifecycleFragmentImpl(com.google.android.gms.common.api.internal.LifecycleActivity) -com.jaredrummler.android.colorpicker.R$attr: int cpv_borderColor -wangdaye.com.geometricweather.db.entities.DailyEntity: void setPm10(java.lang.Float) -retrofit2.Response: int code() -com.google.android.material.R$string: int mtrl_picker_text_input_day_abbr -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: int Id -wangdaye.com.geometricweather.R$drawable: int notif_temp_115 -cyanogenmod.hardware.ICMHardwareService: int getSupportedFeatures() -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List hourlyForecast -com.google.android.material.R$attr: int checkedTextViewStyle -okio.BufferedSink: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) -androidx.core.R$id: int accessibility_custom_action_12 -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode HAZE -cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.IAppSuggestManager getService() -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_weightSum -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: java.lang.String Hex -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Medium -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_item_min_width -android.didikee.donate.R$id: int textSpacerNoTitle -android.didikee.donate.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: ObservableCreate$CreateEmitter(io.reactivex.Observer) -androidx.core.R$drawable: int notification_icon_background -retrofit2.KotlinExtensions$await$4$2: void onFailure(retrofit2.Call,java.lang.Throwable) -com.google.android.material.R$styleable: int AppCompatTheme_dropDownListViewStyle -android.didikee.donate.R$styleable: int CompoundButton_android_button -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex yesterday -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: io.reactivex.Observer downstream -okhttp3.internal.connection.RouteDatabase: void failed(okhttp3.Route) -okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_ENCODE_SET -androidx.core.app.RemoteActionCompatParcelizer: void write(androidx.core.app.RemoteActionCompat,androidx.versionedparcelable.VersionedParcel) -com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_button_bar_material -androidx.viewpager2.widget.ViewPager2 -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerError(int,java.lang.Throwable) -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String m -okhttp3.internal.http2.Settings: int size() -com.google.android.material.R$style: int Theme_AppCompat_DialogWhenLarge -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Link -wangdaye.com.geometricweather.R$layout: int preference_widget_checkbox -okio.GzipSink: void flush() -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: ObservableConcatMap$SourceObserver$InnerObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver) -androidx.hilt.work.R$styleable: int FontFamilyFont_ttcIndex -james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_alphabeticShortcut -com.google.android.material.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitationProbability -androidx.hilt.work.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String getTo() -wangdaye.com.geometricweather.R$drawable: int notif_temp_15 -androidx.recyclerview.R$attr: int fontProviderAuthority -io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean) -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 -wangdaye.com.geometricweather.R$string: int key_icon_provider -retrofit2.adapter.rxjava2.Result: retrofit2.adapter.rxjava2.Result response(retrofit2.Response) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$dimen: int hint_pressed_alpha_material_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX() -androidx.preference.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_dither -com.google.android.material.R$string: int abc_action_menu_overflow_description -okhttp3.internal.http2.Http2: java.lang.String formatFlags(byte,byte) -com.github.rahatarmanahmed.cpv.R$styleable -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_background_transition_holo_light -androidx.appcompat.widget.SearchView: SearchView(android.content.Context) -android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.support.v4.app.INotificationSideChannel sDefaultImpl -androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context,android.util.AttributeSet) -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: boolean isExecuted() -com.jaredrummler.android.colorpicker.R$attr: int drawableSize -com.google.android.material.R$attr: int brightness -com.google.android.material.R$styleable: int StateListDrawable_android_constantSize -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.jaredrummler.android.colorpicker.R$dimen: int abc_cascading_menus_min_smallest_width -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder cipherSuites(okhttp3.CipherSuite[]) -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_color -wangdaye.com.geometricweather.R$dimen: int little_margin -io.reactivex.Observable: io.reactivex.Observable timestamp(java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimAlpha(int) -com.github.rahatarmanahmed.cpv.CircularProgressView$7 -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motion_triggerOnCollision -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: AccuDailyResult$DailyForecasts$Night$LocalSource() -wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_Dialog -androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragDirection -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1(kotlin.coroutines.Continuation,java.lang.Exception) -android.didikee.donate.R$drawable: int notification_bg_low_pressed -androidx.lifecycle.ReportFragment: androidx.lifecycle.ReportFragment get(android.app.Activity) -wangdaye.com.geometricweather.R$id: int staticPostLayout -com.google.android.material.R$styleable: int SnackbarLayout_elevation -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_height -okhttp3.internal.http2.Http2Connection: int lastGoodStreamId -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_updatesContinuously -wangdaye.com.geometricweather.R$drawable: int notif_temp_99 -androidx.constraintlayout.widget.R$attr: int saturation -wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_android_alpha -androidx.fragment.R$id: int blocking -androidx.appcompat.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light_focused -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_liftOnScroll -androidx.hilt.work.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_lightOnTouch -com.jaredrummler.android.colorpicker.R$attr: int windowMinWidthMajor -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_Solid -androidx.appcompat.widget.FitWindowsLinearLayout: FitWindowsLinearLayout(android.content.Context) -androidx.work.R$drawable -okhttp3.internal.platform.JdkWithJettyBootPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -wangdaye.com.geometricweather.R$styleable: int SignInButton_scopeUris -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_strokeWidth -androidx.constraintlayout.widget.R$attr: int maxHeight -com.google.android.material.R$attr: int displayOptions -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: int getIconSize() -com.tencent.bugly.proguard.s: com.tencent.bugly.proguard.s a(android.content.Context) -androidx.appcompat.R$style: int TextAppearance_AppCompat -androidx.work.R$id: int accessibility_custom_action_4 -io.reactivex.internal.util.NotificationLite: java.lang.String toString() -wangdaye.com.geometricweather.R$styleable: int OnSwipe_onTouchUp -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintDimensionRatio -wangdaye.com.geometricweather.R$string: int path_password_eye_mask_strike_through -androidx.constraintlayout.utils.widget.ImageFilterView: void setCrossfade(float) -james.adaptiveicon.R$string: int abc_searchview_description_voice -okio.BufferedSource: boolean request(long) -androidx.preference.R$id: int action_mode_bar_stub -androidx.appcompat.R$styleable: int DrawerArrowToggle_spinBars -okhttp3.internal.connection.StreamAllocation$StreamAllocationReference: java.lang.Object callStackTrace -androidx.appcompat.resources.R$attr -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_minWidth -retrofit2.ParameterHandler$RelativeUrl -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: boolean isDisposed() -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_font -com.google.android.material.R$string: int material_timepicker_clock_mode_description -androidx.preference.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver,java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeShareDrawable -com.google.android.material.R$styleable: int[] ShapeableImageView -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$id: int clear_text -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -wangdaye.com.geometricweather.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -android.didikee.donate.R$attr: int dividerPadding -androidx.preference.R$style: int Base_V21_Theme_AppCompat -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: boolean disconnectedEarly -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTheme -okio.BufferedSink: okio.Buffer buffer() -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_5 -wangdaye.com.geometricweather.R$drawable: int ic_temperature_kelvin -androidx.appcompat.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -com.xw.repo.bubbleseekbar.R$styleable: int View_paddingEnd -cyanogenmod.weatherservice.WeatherProviderService$1: void cancelRequest(int) -com.google.android.material.R$styleable: int[] KeyAttribute -com.google.android.material.R$styleable: int Toolbar_titleMarginEnd -androidx.constraintlayout.widget.R$attr: int paddingBottomNoButtons -com.google.android.material.R$dimen: int design_bottom_sheet_modal_elevation -com.google.android.material.R$styleable: int KeyAttribute_android_translationZ -androidx.preference.R$styleable: int[] ActivityChooserView -cyanogenmod.app.BaseLiveLockManagerService$1 -cyanogenmod.hardware.CMHardwareManager: int getVibratorDefaultIntensity() -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTotalPrecipitationProbability(java.lang.Float) -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: androidx.lifecycle.LifecycleOwner mLifecycle -androidx.appcompat.R$styleable: int AlertDialog_listItemLayout -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dialog -okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallbackPossible(javax.net.ssl.SSLSocket) -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void headers(boolean,int,int,java.util.List) -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection -okhttp3.OkHttpClient: okhttp3.CertificatePinner certificatePinner() -com.google.android.material.R$dimen: int mtrl_btn_icon_padding -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeStyle -androidx.preference.R$styleable: int DialogPreference_android_dialogIcon -wangdaye.com.geometricweather.R$attr: int iconSpaceReserved -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Toolbar -james.adaptiveicon.R$dimen: int abc_switch_padding -cyanogenmod.app.IProfileManager: void updateProfile(cyanogenmod.app.Profile) -io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Action onComplete -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow -wangdaye.com.geometricweather.R$attr: int tabIndicatorAnimationDuration -android.didikee.donate.R$styleable: int[] ViewStubCompat -com.jaredrummler.android.colorpicker.R$style: int Preference_Category -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: void onFinishedProcessing(java.lang.String) -wangdaye.com.geometricweather.R$attr: int drawerArrowStyle -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabUnboundedRipple -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_hint -wangdaye.com.geometricweather.R$attr: int inner_margins -com.turingtechnologies.materialscrollbar.R$id: int mini -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -retrofit2.Retrofit: void validateServiceInterface(java.lang.Class) -james.adaptiveicon.R$styleable: int ViewBackgroundHelper_android_background -com.google.android.material.slider.RangeSlider: void setHaloRadiusResource(int) -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.R$attr: int percentY -wangdaye.com.geometricweather.R$string: int key_widget_clock_day_details -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void drain() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String LongPhrase -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_controlBackground -com.google.android.material.R$string: int mtrl_picker_range_header_title -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean currentPosition -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_25 -com.google.android.material.R$styleable: int MotionTelltales_telltales_tailScale -androidx.cardview.widget.CardView: void setUseCompatPadding(boolean) -androidx.preference.SeekBarPreference: SeekBarPreference(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -com.google.android.material.R$styleable: int ChipGroup_selectionRequired -androidx.constraintlayout.widget.R$id: int parent -androidx.recyclerview.R$dimen: int compat_control_corner_material -io.reactivex.Observable: io.reactivex.Single lastOrError() -android.support.v4.app.INotificationSideChannel$Default: void notify(java.lang.String,int,java.lang.String,android.app.Notification) -androidx.constraintlayout.widget.R$attr: int layout_constraintStart_toStartOf -com.google.android.material.navigation.NavigationView: void setElevation(float) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_tooltipFrameBackground -wangdaye.com.geometricweather.background.polling.work.worker.AsyncUpdateWorker -com.tencent.bugly.crashreport.inner.InnerApi: void postU3dCrashAsync(java.lang.String,java.lang.String,java.lang.String) -cyanogenmod.app.Profile: void setProfileType(int) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_padding -com.turingtechnologies.materialscrollbar.R$id: int action_divider -androidx.cardview.R$attr: int contentPaddingBottom -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setNavBar(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: double Value -wangdaye.com.geometricweather.R$color: int primary_text_default_material_light -com.google.android.material.R$drawable: int material_ic_keyboard_arrow_next_black_24dp -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: ObservableTakeLastTimed$TakeLastTimedObserver(io.reactivex.Observer,long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,boolean) -cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder access$202(cyanogenmod.externalviews.KeyguardExternalView,android.os.IBinder) -wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog -androidx.preference.R$id: int switchWidget -androidx.lifecycle.LiveData: void considerNotify(androidx.lifecycle.LiveData$ObserverWrapper) -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_android_enabled -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean getTemperature() -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$dimen: int hourly_trend_item_height -com.tencent.bugly.BuglyStrategy: boolean l -wangdaye.com.geometricweather.R$id: int fragment_container_view_tag -james.adaptiveicon.R$style: int Widget_AppCompat_DropDownItem_Spinner -com.amap.api.fence.PoiItem: java.lang.String c -androidx.hilt.R$anim: int fragment_close_exit -wangdaye.com.geometricweather.R$styleable: int Slider_android_stepSize -wangdaye.com.geometricweather.R$attr: int flow_maxElementsWrap -wangdaye.com.geometricweather.R$attr: int singleSelection -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Light -cyanogenmod.providers.CMSettings: boolean LOCAL_LOGV -wangdaye.com.geometricweather.R$id: int sort_button -com.tencent.bugly.crashreport.biz.UserInfoBean: UserInfoBean() -wangdaye.com.geometricweather.R$style: int Preference_DropDown_Material -androidx.preference.R$string: int status_bar_notification_info_overflow -androidx.viewpager.R$dimen: int notification_action_icon_size -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItem -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List maxCountItems -com.google.android.material.R$styleable: int StateListDrawable_android_enterFadeDuration -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge -androidx.hilt.work.R$dimen: int compat_button_inset_vertical_material -androidx.transition.R$styleable: int GradientColor_android_centerX -retrofit2.KotlinExtensions$awaitResponse$2$2: kotlinx.coroutines.CancellableContinuation $continuation -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetBottom -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_padding_end_material -wangdaye.com.geometricweather.R$id: int action_container -com.jaredrummler.android.colorpicker.R$styleable: int Preference_enableCopying -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Bridge -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: IExternalViewProviderFactory$Stub() -wangdaye.com.geometricweather.R$attr: int selectionRequired -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: MfHistoryResult$History$Weather() -com.google.android.material.appbar.CollapsingToolbarLayout: void setTitle(java.lang.CharSequence) -com.jaredrummler.android.colorpicker.R$drawable: int abc_item_background_holo_light -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_textOff -com.google.android.material.R$styleable: int TextInputLayout_prefixTextColor -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onComplete() -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_singleSelection -androidx.constraintlayout.widget.R$anim: int abc_slide_out_bottom -androidx.recyclerview.widget.RecyclerView: boolean getClipToPadding() -com.jaredrummler.android.colorpicker.R$attr: int imageButtonStyle -cyanogenmod.providers.ThemesContract$ThemesColumns -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_ripple_color -android.didikee.donate.R$color: int material_blue_grey_900 -androidx.appcompat.R$styleable: int AppCompatTheme_colorControlNormal -com.google.android.material.R$attr: int boxStrokeColor -com.tencent.bugly.proguard.ai -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialButtonToggleGroup -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_fontVariationSettings -com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -okhttp3.HttpUrl: boolean isHttps() -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotation -okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String,java.util.Date) -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type[] getLowerBounds() -com.google.android.material.R$string: int mtrl_picker_invalid_range -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.Long id -james.adaptiveicon.R$attr: int titleMarginStart -james.adaptiveicon.R$id: int alertTitle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.amap.api.fence.GeoFence: void setCurrentLocation(com.amap.api.location.AMapLocation) -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog_Alert -androidx.constraintlayout.widget.R$styleable: int ActionBar_homeLayout -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,java.util.concurrent.Callable) -com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_text_color -com.google.android.material.slider.RangeSlider: int getHaloRadius() -com.google.android.material.R$attr: int tabPaddingBottom -androidx.swiperefreshlayout.R$attr -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_navigationContentDescription -okhttp3.Route: Route(okhttp3.Address,java.net.Proxy,java.net.InetSocketAddress) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$styleable: int AppCompatSeekBar_android_thumb -wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_orderingFromXml -android.didikee.donate.R$styleable: int Toolbar_contentInsetRight -com.google.android.material.R$animator: int linear_indeterminate_line1_head_interpolator -wangdaye.com.geometricweather.R$layout: int widget_day_week_rectangle -androidx.appcompat.R$attr: int selectableItemBackground -okhttp3.internal.http2.Http2Connection: boolean pushedStream(int) -androidx.loader.R$drawable: int notification_tile_bg -com.google.android.material.behavior.HideBottomViewOnScrollBehavior: HideBottomViewOnScrollBehavior() -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endX -james.adaptiveicon.R$layout: int abc_search_dropdown_item_icons_2line -okio.RealBufferedSource$1: java.lang.String toString() -okhttp3.internal.http1.Http1Codec: okio.BufferedSource source -cyanogenmod.app.ILiveLockScreenManagerProvider: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -wangdaye.com.geometricweather.R$attr: int iconResEnd -com.amap.api.location.AMapLocation: double a(com.amap.api.location.AMapLocation,double) -com.xw.repo.bubbleseekbar.R$layout: int select_dialog_multichoice_material -com.turingtechnologies.materialscrollbar.R$attr: int imageButtonStyle -androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cps -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setSunDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -androidx.preference.R$attr: int tickMarkTintMode -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_order -android.didikee.donate.R$attr: int actionLayout -wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_night -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf -androidx.lifecycle.ComputableLiveData: void invalidate() -androidx.viewpager2.R$id: int right_icon -androidx.loader.R$styleable: int ColorStateListItem_android_color -androidx.appcompat.widget.ActionBarOverlayLayout: ActionBarOverlayLayout(android.content.Context,android.util.AttributeSet) -androidx.dynamicanimation.R$color -wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_3_material -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorError -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_activityChooserViewStyle -wangdaye.com.geometricweather.R$drawable: int ic_precipitation -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator PEOPLE_LOOKUP_PROVIDER_VALIDATOR -com.amap.api.fence.PoiItem: void setAddress(java.lang.String) -androidx.swiperefreshlayout.R$dimen: int notification_media_narrow_margin -com.turingtechnologies.materialscrollbar.R$attr: int chipStandaloneStyle -androidx.preference.R$styleable: int SwitchCompat_track -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize -com.tencent.bugly.crashreport.crash.CrashDetailBean: long a -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ButtonBar -com.tencent.bugly.BuglyStrategy: boolean isReplaceOldChannel() -com.amap.api.fence.DistrictItem$1: DistrictItem$1() -okhttp3.Cache$Entry: okhttp3.Headers varyHeaders -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_fontFamily -androidx.preference.R$styleable: int ActionBar_progressBarPadding -com.jaredrummler.android.colorpicker.R$id: int progress_circular -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_elevation -com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Circular -androidx.viewpager.widget.PagerTabStrip: PagerTabStrip(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_title_material -cyanogenmod.weatherservice.WeatherProviderService: java.lang.String SERVICE_META_DATA -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust WindGust -james.adaptiveicon.R$styleable: int TextAppearance_textAllCaps -com.bumptech.glide.integration.okhttp.R$attr: int fontStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String getFrom() -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: double gust -com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_RadioButton -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: int sourceMode -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onComplete() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String temperature -com.google.android.material.R$id: int accessibility_custom_action_26 -com.google.android.material.R$style: int Platform_V21_AppCompat -androidx.constraintlayout.widget.R$attr: int actionModeSelectAllDrawable -com.google.android.material.R$styleable: int KeyAttribute_android_scaleY -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -androidx.fragment.R$id: int accessibility_custom_action_16 -androidx.constraintlayout.widget.R$styleable: int MotionLayout_layoutDescription -cyanogenmod.weather.RequestInfo: android.location.Location mLocation -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: long idx -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int CloudCover -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.disposables.Disposable upstream -androidx.appcompat.widget.SearchView$SearchAutoComplete: void setThreshold(int) -wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_borderColor -androidx.coordinatorlayout.R$dimen: R$dimen() -com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_stacked_tab_max_width -okhttp3.Route: boolean requiresTunnel() -retrofit2.Platform: int defaultCallAdapterFactoriesSize() -com.turingtechnologies.materialscrollbar.R$id: int content -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TEMPERATURE -androidx.appcompat.R$attr: int colorControlActivated -cyanogenmod.weather.WeatherInfo: java.lang.String mCity -android.didikee.donate.R$layout: int abc_action_mode_close_item_material -wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassLevel(java.lang.Integer) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: int UnitType -androidx.appcompat.R$attr: int showDividers -wangdaye.com.geometricweather.R$styleable: int Chip_chipIcon -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicator(android.graphics.drawable.Drawable) -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -androidx.preference.R$attr: int showTitle -androidx.constraintlayout.widget.R$color: int abc_color_highlight_material -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteInTxArray -androidx.core.R$styleable: R$styleable() -androidx.loader.R$styleable: int ColorStateListItem_android_alpha -cyanogenmod.app.ICustomTileListener$Stub$Proxy: android.os.IBinder asBinder() -com.google.android.material.R$styleable: int KeyTimeCycle_transitionPathRotate -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String threshold -com.google.android.gms.location.LocationResult: android.os.Parcelable$Creator CREATOR -androidx.loader.R$layout: R$layout() -com.google.android.material.R$styleable: int[] ForegroundLinearLayout -androidx.appcompat.R$attr: int backgroundStacked -james.adaptiveicon.R$attr: int colorPrimaryDark -com.tencent.bugly.crashreport.crash.e: java.lang.String b(java.lang.Throwable,int) -androidx.viewpager2.R$styleable: int GradientColor_android_endY -android.didikee.donate.R$drawable: int abc_btn_radio_to_on_mtrl_015 -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_default -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_closeIcon -com.turingtechnologies.materialscrollbar.R$attr: int buttonTint -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_EMPTY -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode HAIL -wangdaye.com.geometricweather.R$attr: int endIconContentDescription -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_thumb -com.google.android.material.button.MaterialButton: int getIconSize() -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_android_minHeight -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginEnd -com.tencent.bugly.crashreport.common.info.b: long h() -com.turingtechnologies.materialscrollbar.R$attr: int tickMarkTintMode -okhttp3.internal.io.FileSystem: okhttp3.internal.io.FileSystem SYSTEM -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_103 -androidx.appcompat.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getBackgroundTintList() -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColorItem_android_offset -androidx.constraintlayout.widget.R$attr: int motionPathRotate -com.tencent.bugly.crashreport.crash.a: int compareTo(java.lang.Object) -com.google.android.material.R$color: int mtrl_card_view_ripple -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_LargeComponent -wangdaye.com.geometricweather.R$style: int Platform_V25_AppCompat -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTintMode -com.google.android.material.R$styleable: int AppBarLayoutStates_state_collapsible -io.reactivex.internal.observers.DeferredScalarDisposable: boolean tryDispose() -com.xw.repo.bubbleseekbar.R$attr: int windowNoTitle -com.turingtechnologies.materialscrollbar.R$attr: int defaultQueryHint -okhttp3.CacheControl: okhttp3.CacheControl FORCE_NETWORK -cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(android.os.Parcel,cyanogenmod.app.CustomTile$1) -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -cyanogenmod.hardware.CMHardwareManager: boolean get(int) -com.bumptech.glide.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.R$attr: int startIconTint -wangdaye.com.geometricweather.R$id: int widget_week_icon_4 -cyanogenmod.util.ColorUtils: ColorUtils() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_checkable -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_overflow_padding_end_material -com.tencent.bugly.crashreport.crash.b: boolean a(com.tencent.bugly.crashreport.crash.CrashDetailBean,int) -androidx.appcompat.widget.SwitchCompat: int getSwitchPadding() -androidx.work.R$id: int accessibility_custom_action_28 -james.adaptiveicon.R$drawable: int abc_tab_indicator_mtrl_alpha -com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_DropDownUp -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_RAMP_UP_TIME_VALIDATOR -androidx.viewpager.widget.ViewPager: void setOffscreenPageLimit(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.lang.String unit -androidx.legacy.coreutils.R$attr: int fontVariationSettings -okhttp3.Response$Builder: okhttp3.Response$Builder message(java.lang.String) -androidx.core.R$drawable: R$drawable() -com.tencent.bugly.crashreport.common.info.b: java.lang.String a() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionMenuTextAppearance -com.google.android.material.R$id: int topPanel -androidx.constraintlayout.widget.R$attr: int tickMarkTint -com.google.android.material.R$styleable: int MenuItem_android_checkable -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_17 -androidx.appcompat.resources.R$id: int italic -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearStyle -wangdaye.com.geometricweather.R$id: int item_about_library_content -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.R$integer: int mtrl_calendar_selection_text_lines -androidx.customview.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.hilt.R$id: int accessibility_custom_action_23 -androidx.cardview.R$style: R$style() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float totalPrecipitationProbability -androidx.preference.R$styleable: int AppCompatTheme_actionMenuTextAppearance -com.google.android.material.R$styleable: int ConstraintSet_barrierDirection -androidx.preference.R$id: int text -wangdaye.com.geometricweather.R$styleable: int Toolbar_collapseIcon -james.adaptiveicon.R$styleable: int AppCompatTheme_seekBarStyle -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setCity(java.lang.String) -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.R$id: int tag_accessibility_pane_title -com.amap.api.location.AMapLocation: AMapLocation(android.location.Location) -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: java.lang.String Unit -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain -com.google.android.material.appbar.AppBarLayout: void setVisibility(int) -androidx.preference.R$dimen: int abc_control_padding_material -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CUSTOM_ENABLE_VALIDATOR -androidx.hilt.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$attr: int defaultQueryHint -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_31 -com.google.android.material.textfield.TextInputLayout: void setHint(java.lang.CharSequence) -okhttp3.Cookie: java.lang.String name() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void dispose() -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollHorizontalTrackDrawable -wangdaye.com.geometricweather.R$attr: int seekBarPreferenceStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: int UnitType -androidx.appcompat.R$styleable: int SwitchCompat_showText -com.google.android.material.R$plurals -androidx.constraintlayout.widget.R$styleable: int Constraint_barrierMargin -com.tencent.bugly.crashreport.crash.CrashDetailBean: android.os.Parcelable$Creator CREATOR -okio.Buffer: boolean isOpen() -com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_CUSTOMID -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MOSTLY_CLOUDY_NIGHT -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog -okhttp3.internal.http2.PushObserver$1: boolean onData(int,okio.BufferedSource,int,boolean) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8 -james.adaptiveicon.R$color: int foreground_material_light -james.adaptiveicon.R$style: int Widget_AppCompat_AutoCompleteTextView -androidx.appcompat.R$styleable: int ActionBar_customNavigationLayout -com.google.android.material.R$styleable: int[] CoordinatorLayout -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String time -wangdaye.com.geometricweather.db.entities.HourlyEntity: HourlyEntity() -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getCounterTextColor() -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LOCKSCREEN -com.google.android.material.R$dimen: int abc_progress_bar_height_material -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_Solid -androidx.appcompat.R$styleable: int AppCompatTheme_windowActionModeOverlay -cyanogenmod.app.CMStatusBarManager: void publishTileAsUser(java.lang.String,int,cyanogenmod.app.CustomTile,android.os.UserHandle) -com.xw.repo.bubbleseekbar.R$id: int info -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric() -com.bumptech.glide.integration.okhttp.R$style: int Widget_Support_CoordinatorLayout -androidx.preference.R$style: int Platform_AppCompat_Light -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentListStyle -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_pressed_holo_dark -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric Metric -wangdaye.com.geometricweather.R$id: int chain -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void otherComplete() -com.turingtechnologies.materialscrollbar.R$attr: int fontStyle -android.didikee.donate.R$drawable: int abc_switch_track_mtrl_alpha -com.amap.api.location.AMapLocation$1: AMapLocation$1() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_CBC_SHA256 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_title_material -androidx.customview.widget.ExploreByTouchHelper: int mHoveredVirtualViewId -android.didikee.donate.R$style: int Base_Animation_AppCompat_Dialog -androidx.appcompat.R$dimen: int hint_pressed_alpha_material_dark -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit HPA -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -androidx.appcompat.R$drawable: int abc_text_select_handle_left_mtrl_dark -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -androidx.vectordrawable.R$id: int title -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_material_light -com.xw.repo.bubbleseekbar.R$style: int Widget_Compat_NotificationActionText -androidx.constraintlayout.widget.ConstraintLayout: int getMaxHeight() -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_content_inset_with_nav -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: AccuCurrentResult$PrecipitationSummary$Past24Hours() -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemBackground -androidx.preference.R$dimen: int abc_text_size_subtitle_material_toolbar -androidx.constraintlayout.widget.R$interpolator: int fast_out_slow_in -com.jaredrummler.android.colorpicker.R$attr: int editTextColor -io.reactivex.internal.schedulers.AbstractDirectTask: boolean isDisposed() -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getDensityText(android.content.Context,float) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setDetail(java.lang.String) -com.google.android.material.R$styleable: int AppCompatSeekBar_tickMark -com.tencent.bugly.proguard.y: java.lang.String k -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int Icon -okhttp3.internal.Util: byte[] EMPTY_BYTE_ARRAY -cyanogenmod.os.Build: java.lang.String getString(java.lang.String) -com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu -com.turingtechnologies.materialscrollbar.R$color: int primary_text_disabled_material_dark -io.reactivex.internal.util.NotificationLite: boolean acceptFull(java.lang.Object,io.reactivex.Observer) -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: ChineseCityEntity(java.lang.Long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int arrowHeadLength -android.didikee.donate.R$styleable: int ActionBarLayout_android_layout_gravity -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf -android.support.v4.app.RemoteActionCompatParcelizer: RemoteActionCompatParcelizer() -androidx.viewpager2.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$styleable: int MotionScene_defaultDuration -androidx.hilt.lifecycle.R$styleable: int[] ColorStateListItem -com.tencent.bugly.crashreport.crash.anr.b: boolean j -wangdaye.com.geometricweather.common.basic.models.weather.Daily: float hoursOfSun -wangdaye.com.geometricweather.R$drawable: int notif_temp_40 -androidx.appcompat.R$styleable: int SearchView_iconifiedByDefault -com.google.android.material.R$styleable: int ConstraintSet_android_scaleY -com.google.android.material.chip.ChipGroup -androidx.hilt.R$dimen: int notification_content_margin_start -io.reactivex.internal.util.VolatileSizeArrayList: boolean retainAll(java.util.Collection) -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotation -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyBottomLeft -com.jaredrummler.android.colorpicker.R$color: int material_deep_teal_200 -cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemDrawable(int) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer iso0 -androidx.recyclerview.R$styleable: int GradientColor_android_endColor -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter beginArray() -wangdaye.com.geometricweather.R$string: int key_widget_trend_daily -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification -io.reactivex.internal.util.VolatileSizeArrayList: java.util.ArrayList list -androidx.lifecycle.extensions.R$styleable: int Fragment_android_tag -com.turingtechnologies.materialscrollbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -androidx.activity.R$color: int notification_icon_bg_color -com.google.android.material.R$string: int bottomsheet_action_expand_halfway -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: cyanogenmod.app.ThemeVersion$ComponentVersion getDeviceComponentVersion(cyanogenmod.app.ThemeComponent) -com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_android_popupBackground -androidx.hilt.R$id: int accessibility_custom_action_28 -james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedHeightMinor -james.adaptiveicon.R$styleable: int ActionBar_progressBarPadding -cyanogenmod.app.ICustomTileListener: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -okhttp3.logging.LoggingEventListener: void callFailed(okhttp3.Call,java.io.IOException) -androidx.appcompat.R$style: int Theme_AppCompat_NoActionBar -androidx.constraintlayout.widget.R$styleable: int[] KeyAttribute -com.turingtechnologies.materialscrollbar.R$color: int abc_hint_foreground_material_light -okhttp3.internal.http1.Http1Codec: int STATE_OPEN_REQUEST_BODY -com.google.android.material.R$styleable: int Chip_iconStartPadding -androidx.appcompat.R$styleable: int FontFamily_fontProviderFetchStrategy -com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_top -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver parent -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$styleable: int View_paddingEnd -com.xw.repo.bubbleseekbar.R$id: int add -com.google.android.material.R$attr: int dialogTheme -androidx.fragment.R$styleable: int GradientColorItem_android_color -androidx.preference.R$style: int Base_Widget_AppCompat_SearchView -androidx.constraintlayout.widget.R$styleable: int SearchView_android_focusable -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog -cyanogenmod.hardware.DisplayMode: DisplayMode(android.os.Parcel,cyanogenmod.hardware.DisplayMode$1) -cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String getName() -wangdaye.com.geometricweather.R$id: int searchBar -cyanogenmod.app.CustomTile$ExpandedListItem -wangdaye.com.geometricweather.R$string: int icon_content_description -androidx.preference.PreferenceDialogFragmentCompat -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric Metric -com.tencent.bugly.crashreport.biz.UserInfoBean: int q -com.xw.repo.bubbleseekbar.R$id: int spacer -com.google.android.material.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf -com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getTextSize() -com.google.android.material.R$attr: int dividerHorizontal -androidx.appcompat.R$dimen: int abc_panel_menu_list_width -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Error -android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_30 -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node root -com.turingtechnologies.materialscrollbar.R$attr: int closeIconVisible -com.xw.repo.bubbleseekbar.R$style -androidx.lifecycle.extensions.R$id: int tag_unhandled_key_listeners -cyanogenmod.app.PartnerInterface -wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_style -com.google.android.material.R$drawable: int abc_ic_clear_material -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void run() -okhttp3.CertificatePinner: boolean equals(java.lang.Object) -androidx.coordinatorlayout.R$style -okhttp3.logging.HttpLoggingInterceptor$Logger$1: HttpLoggingInterceptor$Logger$1() -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: float getMax() -wangdaye.com.geometricweather.R$dimen: int preference_seekbar_padding_vertical -wangdaye.com.geometricweather.R$id: int container_main_pollen_indicator -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void setCancellable(io.reactivex.functions.Cancellable) -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -james.adaptiveicon.R$attr: int track -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: float unitFactor -com.google.android.gms.location.ActivityRecognitionResult -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void replay(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animAutostart -cyanogenmod.themes.ThemeChangeRequest: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_motionProgress -okhttp3.logging.LoggingEventListener: void dnsEnd(okhttp3.Call,java.lang.String,java.util.List) -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -androidx.appcompat.resources.R$id: int accessibility_action_clickable_span -com.turingtechnologies.materialscrollbar.R$attr: int showMotionSpec -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void cancelLiveLockScreen(java.lang.String,int,int) -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getIdType(int) -androidx.appcompat.resources.R$id: int dialog_button -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SearchView_ActionBar -com.amap.api.location.AMapLocation: int LOCATION_SUCCESS -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String MobileLink -io.reactivex.Observable: io.reactivex.Observable repeatWhen(io.reactivex.functions.Function) -androidx.appcompat.resources.R$id: int text2 -wangdaye.com.geometricweather.R$styleable: int ArcProgress_arc_angle -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_MIN_INDEX -com.google.android.material.R$color: int design_box_stroke_color -com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_checkbox -com.google.android.material.R$styleable: int Chip_closeIconEndPadding -androidx.transition.R$id: int transition_scene_layoutid_cache -wangdaye.com.geometricweather.R$attr: int drawableTint -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: int status -androidx.viewpager.R$id: int title -androidx.preference.R$attr: int panelMenuListTheme -wangdaye.com.geometricweather.R$attr: int actionBarWidgetTheme -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Medium -androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String EnglishName -okhttp3.Cookie -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX brandInfo -cyanogenmod.providers.CMSettings$System: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalAlign -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -androidx.appcompat.R$styleable: int TextAppearance_fontFamily -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.internal.disposables.SequentialDisposable task -wangdaye.com.geometricweather.R$attr: int cpv_animSteps -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerId -com.xw.repo.bubbleseekbar.R$attr: int navigationContentDescription -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding MEMORY -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint -androidx.legacy.coreutils.R$styleable: int GradientColor_android_endColor -com.xw.repo.bubbleseekbar.R$attr: int actionLayout -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextBackground -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: double Value -com.amap.api.fence.GeoFence: java.util.List getDistrictItemList() -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -okhttp3.internal.http2.StreamResetException: StreamResetException(okhttp3.internal.http2.ErrorCode) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature -wangdaye.com.geometricweather.R$attr: int helperTextEnabled -android.didikee.donate.R$attr: int actionBarTabBarStyle -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: long index -okhttp3.internal.connection.RealConnection: void startHttp2(int) -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleContentDescription(java.lang.CharSequence) -androidx.appcompat.R$style: int Theme_AppCompat_DialogWhenLarge -androidx.recyclerview.widget.RecyclerView: void setAdapter(androidx.recyclerview.widget.RecyclerView$Adapter) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView_DropDown -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: java.lang.Object v2 -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomSheetDialog -androidx.work.R$styleable: int GradientColor_android_startColor -com.google.android.material.R$styleable: int ProgressIndicator_circularRadius -wangdaye.com.geometricweather.R$id: int refresh_layout -androidx.preference.R$attr: int buttonStyle -io.reactivex.Observable: io.reactivex.Single singleOrError() -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowDx -james.adaptiveicon.R$attr: int queryHint -com.google.android.material.R$dimen: int abc_list_item_height_material -retrofit2.Utils: int indexOf(java.lang.Object[],java.lang.Object) -androidx.activity.R$dimen: int notification_action_icon_size -androidx.activity.R$dimen: int notification_top_pad -androidx.lifecycle.Transformations: androidx.lifecycle.LiveData distinctUntilChanged(androidx.lifecycle.LiveData) -android.didikee.donate.R$styleable: int[] MenuView -com.tencent.bugly.a: void init(android.content.Context,boolean,com.tencent.bugly.BuglyStrategy) -com.google.android.material.R$attr: int actionTextColorAlpha -com.tencent.bugly.crashreport.BuglyLog: void e(java.lang.String,java.lang.String,java.lang.Throwable) -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String J -cyanogenmod.hardware.ICMHardwareService$Stub: android.os.IBinder asBinder() -com.tencent.bugly.proguard.j: void a(byte[],int) -com.google.android.material.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -okhttp3.internal.connection.RouteDatabase: java.util.Set failedRoutes -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type[] typeArguments -wangdaye.com.geometricweather.R$drawable: int weather_snow_3 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours Past24Hours -androidx.constraintlayout.widget.R$drawable: int tooltip_frame_dark -okhttp3.internal.Util: okio.ByteString UTF_32_BE_BOM -cyanogenmod.app.Profile: java.util.Map networkConnectionSubIds -com.google.android.material.R$styleable: int AppCompatTheme_listMenuViewStyle -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setBottomTextColor(int) -androidx.fragment.R$id: int accessibility_custom_action_15 -com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.e a(com.tencent.bugly.crashreport.crash.c) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedIndex(java.lang.Integer) -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity -androidx.lifecycle.Observer: void onChanged(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationX -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState FINISHED -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_ab_back_material -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: long date -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontVariationSettings -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_PULSE_VALIDATOR -androidx.appcompat.R$styleable: int DrawerArrowToggle_arrowHeadLength -androidx.preference.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -androidx.drawerlayout.widget.DrawerLayout: void setScrimColor(int) -okhttp3.internal.cache2.Relay: okio.Source upstream -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) -com.google.android.material.R$attr: int actionLayout -james.adaptiveicon.R$style: int Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property DegreeDayTemperature -androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -androidx.appcompat.widget.ActionBarContainer: void setStackedBackground(android.graphics.drawable.Drawable) -com.google.android.material.R$attr: int colorOnBackground -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: void execute() -com.turingtechnologies.materialscrollbar.R$string: int path_password_strike_through -androidx.constraintlayout.widget.R$id: int search_edit_frame -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf -com.google.android.material.R$styleable: int[] StateSet -wangdaye.com.geometricweather.R$styleable: int TabItem_android_icon -com.amap.api.location.AMapLocationClient: boolean isStarted() -com.google.android.material.R$layout: int mtrl_picker_dialog -cyanogenmod.os.Concierge$ParcelInfo: void complete() -okhttp3.HttpUrl$Builder: java.util.List encodedPathSegments -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfSnow -androidx.cardview.R$styleable: int CardView_cardBackgroundColor -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startColor -okhttp3.internal.http2.Http2Codec: java.util.List HTTP_2_SKIPPED_REQUEST_HEADERS -okhttp3.HttpUrl: java.lang.String USERNAME_ENCODE_SET -james.adaptiveicon.R$attr: int fontFamily -okhttp3.FormBody: java.lang.String encodedValue(int) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginBottom -androidx.preference.R$style: int Widget_AppCompat_Light_ListPopupWindow -android.didikee.donate.R$attr: int colorControlNormal -android.didikee.donate.R$attr: int progressBarPadding -com.google.android.material.R$attr: int triggerSlack -org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType[] values() -com.jaredrummler.android.colorpicker.R$id: int search_badge -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxDao -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm10Desc -james.adaptiveicon.R$attr: int listPopupWindowStyle -androidx.viewpager.R$attr -android.didikee.donate.R$styleable: int MenuGroup_android_checkableBehavior -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_CompactMenu -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onComplete() -com.google.android.material.R$styleable: int SwitchCompat_thumbTextPadding -wangdaye.com.geometricweather.R$xml: int widget_week -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_textAppearance -androidx.constraintlayout.widget.VirtualLayout: void setVisibility(int) -androidx.preference.R$layout: int preference_material -okhttp3.internal.Internal -okhttp3.internal.http2.Http2Reader: void readPriority(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalBias -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: ObservableGroupJoin$GroupJoinDisposable(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -android.didikee.donate.R$attr: int actionBarWidgetTheme -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode Battery_Saving -okhttp3.HttpUrl$Builder: java.util.List encodedQueryNamesAndValues -wangdaye.com.geometricweather.R$animator: int weather_hail_3 -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setOnceLocationLatest(boolean) -okhttp3.internal.ws.RealWebSocket$PingRunnable: okhttp3.internal.ws.RealWebSocket this$0 -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_lightIcon -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List consequences -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_popupTheme -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_40 -james.adaptiveicon.R$attr: int alertDialogButtonGroupStyle -com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String a(int) -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Time -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver parent -wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity -android.didikee.donate.R$id: int action_divider -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: float getAlpha() -cyanogenmod.providers.CMSettings$Secure: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) -androidx.preference.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -androidx.appcompat.R$styleable: int MenuView_subMenuArrow -cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(android.os.Parcel) -com.tencent.bugly.BuglyStrategy: long d -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: int UnitType -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void drainLoop() -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_disabled -com.xw.repo.bubbleseekbar.R$color: int primary_dark_material_light -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -com.tencent.bugly.proguard.z: byte[] a(byte[],int,int,java.lang.String) -james.adaptiveicon.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -okhttp3.logging.HttpLoggingInterceptor: void redactHeader(java.lang.String) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered -androidx.appcompat.R$id: int accessibility_custom_action_0 -androidx.fragment.R$styleable: int FontFamily_fontProviderQuery -io.reactivex.internal.functions.Functions$HashSetCallable: java.util.Set call() -androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_activated_mtrl_alpha -com.google.android.material.R$styleable: int Constraint_flow_wrapMode -wangdaye.com.geometricweather.R$attr: int buttonTint -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getSnow() -androidx.constraintlayout.widget.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$dimen: int design_tab_scrollable_min_width -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetEnd -androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$styleable: int MenuItem_android_numericShortcut -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endColor -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light -com.xw.repo.bubbleseekbar.R$id: int action_divider -com.google.android.material.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -cyanogenmod.power.PerformanceManagerInternal: void cpuBoost(int) -com.xw.repo.bubbleseekbar.R$styleable: int[] MenuView -wangdaye.com.geometricweather.R$drawable: int notif_temp_20 -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2 -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_normal_material_light -com.tencent.bugly.b: boolean a(com.tencent.bugly.crashreport.common.info.a) -com.xw.repo.bubbleseekbar.R$attr: int ttcIndex -com.tencent.bugly.proguard.ah: java.lang.String a -androidx.lifecycle.LifecycleDispatcher: LifecycleDispatcher() -cyanogenmod.themes.ThemeManager: void unregisterProcessingListener(cyanogenmod.themes.ThemeManager$ThemeProcessingListener) -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginStart -androidx.preference.R$styleable: int Preference_android_order -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenManager sInstance -wangdaye.com.geometricweather.R$string: int abc_searchview_description_search -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_padding_end_material -james.adaptiveicon.R$styleable: int AppCompatTheme_switchStyle -com.turingtechnologies.materialscrollbar.R$attr: int dividerVertical -com.tencent.bugly.proguard.n: boolean b(com.tencent.bugly.proguard.n,int) -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) -com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_simple_overlay_action_mode -com.turingtechnologies.materialscrollbar.R$attr: int helperText -androidx.lifecycle.Lifecycling$1: androidx.lifecycle.LifecycleEventObserver val$observer -com.google.android.material.R$id: int src_atop -com.google.android.material.R$styleable: int Constraint_android_scaleX -androidx.appcompat.resources.R$attr: int fontWeight -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean o -okhttp3.internal.http2.Http2Connection: void writeSynReply(int,boolean,java.util.List) -cyanogenmod.app.CustomTile$Builder: boolean mCollapsePanel -wangdaye.com.geometricweather.R$attr: int bsb_seek_step_section -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: java.lang.String mKey -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 -com.amap.api.location.CoordinateConverter: com.amap.api.location.DPoint convert() -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetStartWithNavigation -com.turingtechnologies.materialscrollbar.R$anim: R$anim() -com.google.android.material.R$attr: int defaultDuration -com.google.android.material.R$styleable: int MaterialButton_android_background -okhttp3.HttpUrl$Builder: java.lang.String encodedPassword -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getName() -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_left_mtrl_light -okhttp3.internal.http1.Http1Codec: void writeRequestHeaders(okhttp3.Request) -androidx.viewpager2.R$attr: int fontProviderPackage -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType JPEG -androidx.preference.R$styleable: int AppCompatTheme_windowActionBarOverlay -android.didikee.donate.R$styleable: int TextAppearance_android_textColorLink -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode -com.google.android.material.R$id: int animateToStart -androidx.hilt.work.R$anim: int fragment_fast_out_extra_slow_in -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WEATHER_CODE_MIN -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: int UnitType -retrofit2.Converter$Factory: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -com.google.android.gms.common.ConnectionResult: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$id: int bottom_sides -androidx.preference.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitation -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_requestDismissAndStartActivity_1 -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setMax(float) -androidx.core.app.JobIntentService: JobIntentService() -com.google.android.material.R$attr: int behavior_overlapTop -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogTheme -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeightLarge -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: AccuCurrentResult$PressureTendency() -com.google.android.material.R$dimen: int abc_control_padding_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: int getStatus() -androidx.appcompat.view.menu.ActionMenuItemView: void setTitle(java.lang.CharSequence) -okhttp3.CertificatePinner$Pin: int hashCode() -cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getActiveProfile() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_inset_vertical_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindSpeedEnd(java.lang.String) -com.google.android.material.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.constraintlayout.widget.R$dimen: int abc_dialog_corner_radius_material -james.adaptiveicon.R$style: int Widget_AppCompat_ActivityChooserView -okio.RealBufferedSink: int write(java.nio.ByteBuffer) -wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout -com.google.android.material.R$styleable: int Tooltip_android_layout_margin -androidx.loader.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$id: int notification_multi_city_2 -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: MfRainResult$Position() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Borderless -androidx.constraintlayout.widget.R$dimen: int abc_disabled_alpha_material_dark -com.tencent.bugly.crashreport.crash.CrashDetailBean: CrashDetailBean(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -com.google.android.material.chip.ChipGroup: void setChipSpacingResource(int) -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_positiveButtonText -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours Past18Hours -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setIcon(android.graphics.Bitmap) -james.adaptiveicon.R$layout: int select_dialog_item_material -androidx.preference.R$styleable: int AppCompatTheme_colorPrimary -com.turingtechnologies.materialscrollbar.R$string: int password_toggle_content_description -com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_button_bar_material -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean isEmpty() -com.google.android.material.R$styleable: int[] ActionMenuItemView -okhttp3.internal.cache2.Relay$RelaySource: long read(okio.Buffer,long) -com.amap.api.location.APSServiceBase: void onDestroy() -androidx.appcompat.R$id: int topPanel -james.adaptiveicon.R$styleable: int ActionBar_titleTextStyle -okhttp3.HttpUrl: boolean percentEncoded(java.lang.String,int,int) -androidx.vectordrawable.animated.R$styleable: int[] GradientColorItem -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_variablePadding -com.google.android.material.R$styleable: int AppCompatTheme_windowFixedHeightMajor -com.github.rahatarmanahmed.cpv.CircularProgressView$6: void onAnimationUpdate(android.animation.ValueAnimator) -com.google.android.material.circularreveal.CircularRevealLinearLayout: CircularRevealLinearLayout(android.content.Context) -androidx.constraintlayout.widget.R$attr: int dragThreshold -cyanogenmod.profiles.StreamSettings$1: cyanogenmod.profiles.StreamSettings createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$string: int mtrl_exceed_max_badge_number_suffix -com.tencent.bugly.proguard.ar -androidx.constraintlayout.widget.R$color: int material_blue_grey_950 -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: io.reactivex.disposables.Disposable upstream -com.jaredrummler.android.colorpicker.R$id: int async -androidx.lifecycle.LiveData: androidx.arch.core.internal.SafeIterableMap mObservers -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int RainProbability -org.greenrobot.greendao.AbstractDao: boolean isStandardSQLite -androidx.constraintlayout.widget.R$id: int invisible -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_showText -cyanogenmod.externalviews.KeyguardExternalView$2: void setInteractivity(boolean) -okhttp3.internal.http.RetryAndFollowUpInterceptor: void cancel() -retrofit2.http.HTTP: boolean hasBody() -com.google.android.material.R$layout: int mtrl_calendar_month -wangdaye.com.geometricweather.R$styleable: int[] ShapeAppearance -com.tencent.bugly.crashreport.common.info.a: java.lang.String H -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onComplete() -cyanogenmod.app.StatusBarPanelCustomTile: int getUserId() -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextColor(int) -androidx.preference.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -cyanogenmod.profiles.StreamSettings: int describeContents() -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemTitle(java.lang.String) -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String LABEL -james.adaptiveicon.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.functions.Function mapper -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.Scheduler scheduler -wangdaye.com.geometricweather.R$string: int common_google_play_services_enable_button -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dark -com.google.android.material.R$attr: int initialActivityCount -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: int mConditionCode -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_DASHES -com.jaredrummler.android.colorpicker.ColorPanelView: int getBorderColor() -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSteps -androidx.lifecycle.ProcessLifecycleOwner$3$1 -wangdaye.com.geometricweather.R$styleable: int Chip_chipEndPadding -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -androidx.viewpager2.R$id: int accessibility_custom_action_23 -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -retrofit2.HttpServiceMethod: retrofit2.Converter createResponseConverter(retrofit2.Retrofit,java.lang.reflect.Method,java.lang.reflect.Type) -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver -com.amap.api.fence.GeoFence: java.lang.String getPendingIntentAction() -com.google.android.material.R$layout: int abc_action_menu_item_layout -androidx.drawerlayout.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getRealFeelTemperature() -androidx.preference.R$attr: int popupTheme -okhttp3.internal.http2.Hpack$Writer: void adjustDynamicTableByteCount() -com.autonavi.aps.amapapi.model.AMapLocationServer: org.json.JSONObject toJson(int) -android.didikee.donate.R$attr: int radioButtonStyle -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_handleColor -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SearchView_ActionBar -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle -androidx.preference.R$styleable: int DialogPreference_android_dialogTitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String o3 -androidx.viewpager.R$dimen: int notification_small_icon_background_padding -com.google.android.gms.tasks.RuntimeExecutionException -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: io.reactivex.Observer downstream -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTextAppearance(int) -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onError(java.lang.Throwable) -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year -androidx.viewpager.R$integer: int status_bar_notification_info_maxnum -com.bumptech.glide.R$style -androidx.hilt.R$string -android.didikee.donate.R$styleable: int AppCompatTheme_radioButtonStyle -wangdaye.com.geometricweather.background.receiver.widget.WidgetDayWeekProvider: WidgetDayWeekProvider() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getHourlyEntityList() -wangdaye.com.geometricweather.R$id: int bounce -wangdaye.com.geometricweather.R$drawable: int widget_card_light_100 -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean cancelled -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) -com.google.android.material.slider.BaseSlider: int getTrackWidth() -okhttp3.logging.LoggingEventListener: void requestBodyStart(okhttp3.Call) -androidx.lifecycle.livedata.R: R() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onNext(java.lang.Object) -androidx.preference.R$layout: int select_dialog_singlechoice_material -com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_top_mtrl_alpha -okhttp3.internal.cache2.Relay: int SOURCE_UPSTREAM -androidx.hilt.work.R$attr -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ListView_DropDown -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: android.os.IBinder asBinder() -cyanogenmod.externalviews.ExternalViewProviderService$1$1 -com.turingtechnologies.materialscrollbar.R$attr: int iconTint -com.google.android.material.R$styleable: int MenuView_preserveIconSpacing -androidx.appcompat.R$styleable: int[] MenuGroup -com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay_v14_Material -wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_alphaChannelText -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -androidx.lifecycle.ClassesInfoCache$MethodReference -com.tencent.bugly.crashreport.crash.c: void l() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm10 -com.jaredrummler.android.colorpicker.R$drawable: int abc_dialog_material_background -androidx.vectordrawable.R$id: int accessibility_custom_action_22 -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getTagValue() -cyanogenmod.providers.CMSettings$Secure: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) -androidx.work.impl.utils.futures.AbstractFuture: androidx.work.impl.utils.futures.AbstractFuture$Waiter waiters -com.bumptech.glide.integration.okhttp.R$id: int left -com.google.android.material.R$layout: int mtrl_picker_text_input_date_range -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_color -okio.ForwardingSink: okio.Timeout timeout() -androidx.hilt.lifecycle.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: int quality -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Caption -androidx.preference.R$styleable: int PreferenceFragment_android_layout -androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context,android.util.AttributeSet,int) -james.adaptiveicon.R$color: int bright_foreground_inverse_material_dark -androidx.appcompat.R$style: int Base_Theme_AppCompat_CompactMenu -androidx.vectordrawable.animated.R$id: int icon -wangdaye.com.geometricweather.R$layout: int material_timepicker_dialog -com.xw.repo.bubbleseekbar.R$anim: int abc_shrink_fade_out_from_bottom -cyanogenmod.app.CustomTile$ExpandedStyle$1: cyanogenmod.app.CustomTile$ExpandedStyle createFromParcel(android.os.Parcel) -androidx.appcompat.widget.ViewStubCompat: ViewStubCompat(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$drawable: int btn_radio_on_mtrl -io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,java.util.concurrent.Callable) -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomAppBar -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Colored -cyanogenmod.themes.IThemeService$Stub$Proxy -cyanogenmod.weather.RequestInfo: RequestInfo(android.os.Parcel) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf -androidx.hilt.lifecycle.R$anim: int fragment_open_enter -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -com.google.android.material.R$styleable: int NavigationView_itemMaxLines -cyanogenmod.power.PerformanceManager: int getNumberOfProfiles() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setSunRiseDate(java.util.Date) -com.bumptech.glide.load.engine.GlideException: java.util.List causes -cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_VISUALIZER_ENABLED -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_seekBarStyle -androidx.cardview.R$color: R$color() -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.R$style: int Animation_AppCompat_Dialog -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HistoryEntityDao getHistoryEntityDao() -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String pkg -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int TagView_checked_background_color -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onError(java.lang.Throwable) -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderCerts -com.google.android.material.appbar.AppBarLayout: int getUpNestedPreScrollRange() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_disabled_alpha_material_dark -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_10 -okhttp3.internal.cache.DiskLruCache: long getMaxSize() -androidx.transition.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Green -androidx.hilt.R$anim: int fragment_open_exit -androidx.hilt.R$drawable: int notification_tile_bg -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Tooltip -androidx.preference.R$style: int Theme_AppCompat_Light_Dialog -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -com.turingtechnologies.materialscrollbar.R$attr: int floatingActionButtonStyle -androidx.loader.R$styleable: int FontFamily_fontProviderPackage -okhttp3.Response$Builder: okhttp3.Response$Builder code(int) -com.google.android.material.R$id: int visible -com.google.android.material.bottomsheet.BottomSheetBehavior -wangdaye.com.geometricweather.R$styleable: int Constraint_constraint_referenced_ids -com.amap.api.location.AMapLocation: int LOCATION_TYPE_LAST_LOCATION_CACHE -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_ContextMenu -com.turingtechnologies.materialscrollbar.R$id: int search_plate -cyanogenmod.weather.WeatherInfo: int access$302(cyanogenmod.weather.WeatherInfo,int) -androidx.constraintlayout.widget.R$id: int uniform -com.google.gson.stream.JsonWriter: java.lang.String deferredName -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: AccuCurrentResult() -com.turingtechnologies.materialscrollbar.R$styleable: int[] FlowLayout -wangdaye.com.geometricweather.R$attr: int colorControlNormal -com.google.android.material.R$styleable: int BottomNavigationView_itemTextColor -androidx.lifecycle.LifecycleRegistry: boolean mHandlingEvent -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView -okhttp3.internal.http2.Header$Listener -wangdaye.com.geometricweather.R$styleable: int ActionMode_titleTextStyle -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animAutostart -wangdaye.com.geometricweather.R$attr: int iconSize -androidx.appcompat.R$dimen: int abc_text_size_large_material -androidx.vectordrawable.R$id: int accessibility_custom_action_7 -android.didikee.donate.R$id: int action_menu_presenter -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_android_enabled -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize -com.bumptech.glide.R$dimen: int notification_action_text_size -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Small -androidx.vectordrawable.animated.R$drawable: int notify_panel_notification_icon_bg -james.adaptiveicon.R$drawable: int abc_switch_track_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionViewClass -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onError(java.lang.Throwable) -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_visible -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -james.adaptiveicon.R$attr: int listLayout -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.CMWeatherManager getInstance(android.content.Context) -wangdaye.com.geometricweather.R$string: int wind -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_track_color -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShowMotionSpecResource(int) -com.google.android.material.textfield.MaterialAutoCompleteTextView -androidx.lifecycle.SavedStateHandle: java.lang.Object get(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode valueOf(java.lang.String) -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onComplete() -com.google.android.material.R$color: int material_on_background_emphasis_medium -io.reactivex.internal.observers.InnerQueuedObserver: boolean isDone() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindSpeed -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_disableDependentsState -androidx.lifecycle.LiveData: java.lang.Object mDataLock -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_search -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_tint -com.tencent.bugly.proguard.q: void onDowngrade(android.database.sqlite.SQLiteDatabase,int,int) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean disposed -wangdaye.com.geometricweather.common.basic.models.weather.Alert: Alert(android.os.Parcel) -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getHelperText() -wangdaye.com.geometricweather.R$xml -wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_icon -com.jaredrummler.android.colorpicker.R$styleable: int[] PopupWindow -com.tencent.bugly.proguard.aq: byte b -androidx.drawerlayout.R$dimen: R$dimen() -com.bumptech.glide.integration.okhttp.R$id: int icon_group -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit$Calculator unitCalculator -com.jaredrummler.android.colorpicker.R$dimen: int abc_control_corner_material -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean setNativeLaunchTime(long) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: MfForecastResult$ProbabilityForecast$ProbabilityRain() -wangdaye.com.geometricweather.R$color: int primary_dark_material_dark -androidx.preference.R$styleable: int[] RecycleListView -wangdaye.com.geometricweather.R$id: int dropdown_menu -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_itemPadding -androidx.recyclerview.R$color: int notification_action_color_filter -com.google.android.material.R$attr: int paddingEnd -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_pivotAnchor -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void innerError(io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver,java.lang.Throwable) -wangdaye.com.geometricweather.R$id: int activity_widget_config_scrollContainer -androidx.appcompat.widget.ActionBarOverlayLayout: void setIcon(int) -com.turingtechnologies.materialscrollbar.Indicator: void setScroll(float) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void disposeInner() -com.xw.repo.bubbleseekbar.R$id: int action_bar_container -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: java.lang.String quali -androidx.lifecycle.extensions.R$id: int blocking -com.tencent.bugly.proguard.aj: byte a -wangdaye.com.geometricweather.R$attr: int labelVisibilityMode -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionBarLayout -james.adaptiveicon.R$styleable: int[] MenuGroup -wangdaye.com.geometricweather.R$array: int pollen_unit_values -cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemTitle(java.lang.String) -com.jaredrummler.android.colorpicker.ColorPreferenceCompat -com.turingtechnologies.materialscrollbar.R$attr: int backgroundTint -retrofit2.ParameterHandler$RelativeUrl: java.lang.reflect.Method method -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall -androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet) -okhttp3.CacheControl: boolean noTransform() -com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_toTopOf -cyanogenmod.weather.IRequestInfoListener$Stub: android.os.IBinder asBinder() -com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_ripple_color -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Tooltip -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_29 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Subhead -androidx.transition.R$id: int forever -androidx.appcompat.R$color: int switch_thumb_disabled_material_dark -wangdaye.com.geometricweather.R$string: int phase_waxing_gibbous -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -okhttp3.Response$Builder: okhttp3.Response$Builder protocol(okhttp3.Protocol) -android.didikee.donate.R$drawable: int abc_tab_indicator_material -com.xw.repo.bubbleseekbar.R$id: int tabMode -com.tencent.bugly.proguard.y: boolean l -androidx.appcompat.R$string: int abc_prepend_shortcut_label -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin -okhttp3.OkHttpClient$Builder: javax.net.ssl.SSLSocketFactory sslSocketFactory -androidx.viewpager2.R$id: int accessibility_custom_action_27 -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -com.google.android.material.R$dimen: int mtrl_fab_translation_z_hovered_focused -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILES_STATE -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -androidx.lifecycle.SavedStateViewModelFactory: android.app.Application mApplication -androidx.coordinatorlayout.R$dimen: int notification_main_column_padding_top -androidx.hilt.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.R$id: int item_about_translator_flag -androidx.appcompat.R$color: int background_material_dark -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_Chip -androidx.constraintlayout.widget.R$string: int abc_menu_enter_shortcut_label -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginBottom -com.tencent.bugly.BuglyStrategy: boolean g -okhttp3.Request$Builder: okhttp3.Request$Builder url(java.net.URL) -androidx.appcompat.R$style: int Base_Widget_AppCompat_ProgressBar -org.greenrobot.greendao.AbstractDaoSession: java.util.List queryRaw(java.lang.Class,java.lang.String,java.lang.String[]) -wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text_size -wangdaye.com.geometricweather.R$string: int key_forecast_today -androidx.appcompat.widget.Toolbar: void setTitleMarginTop(int) -androidx.hilt.lifecycle.R$drawable: int notification_bg_normal -okhttp3.internal.http.HttpHeaders: okio.ByteString TOKEN_DELIMITERS -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEVICE_HOSTNAME -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog -com.google.android.gms.signin.internal.zag: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$drawable: int notif_temp_84 -wangdaye.com.geometricweather.R$string: int feedback_updated_in_background -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: java.lang.String getUIStyleName(android.content.Context) -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_text -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void dispose() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: java.lang.String Unit -com.google.android.material.R$attr: int warmth -com.turingtechnologies.materialscrollbar.R$attr: int expandActivityOverflowButtonDrawable -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -retrofit2.OkHttpCall: boolean executed -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_DayNight -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -james.adaptiveicon.R$id: int decor_content_parent -androidx.appcompat.R$dimen: int abc_text_size_subhead_material -okhttp3.Request: okhttp3.Request$Builder newBuilder() -android.didikee.donate.R$integer: int abc_config_activityDefaultDur -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Time -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -io.reactivex.Observable: io.reactivex.Observable concatMapIterable(io.reactivex.functions.Function,int) -james.adaptiveicon.R$color: R$color() -androidx.lifecycle.Lifecycling: androidx.lifecycle.GenericLifecycleObserver getCallback(java.lang.Object) -com.tencent.bugly.proguard.c: void a(java.lang.String,java.lang.Object) -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder socket(java.net.Socket) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_scaleX -com.google.android.material.R$color: int design_dark_default_color_on_primary -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_ON -androidx.preference.R$layout: int abc_search_view -cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.IAppSuggestManager sImpl -com.tencent.bugly.crashreport.CrashReport$CrashHandleCallback -com.google.android.material.textfield.TextInputLayout: void setErrorIconOnLongClickListener(android.view.View$OnLongClickListener) -androidx.constraintlayout.widget.R$attr: int buttonBarStyle -com.google.android.material.R$dimen: int design_fab_translation_z_hovered_focused -com.github.rahatarmanahmed.cpv.CircularProgressView: boolean autostartAnimation -com.tencent.bugly.crashreport.crash.jni.b: com.tencent.bugly.crashreport.crash.CrashDetailBean a(android.content.Context,java.util.Map,com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler) -com.turingtechnologies.materialscrollbar.R$attr: int itemIconTint -wangdaye.com.geometricweather.R$styleable: int[] KeyPosition -com.google.android.material.appbar.AppBarLayout: android.graphics.drawable.Drawable getStatusBarForeground() -wangdaye.com.geometricweather.R$drawable: int notif_temp_17 -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_top_padding -com.jaredrummler.android.colorpicker.R$attr: int lineHeight -wangdaye.com.geometricweather.R$attr: int min -com.google.android.material.R$attr: int subtitleTextAppearance -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_focused -wangdaye.com.geometricweather.R$dimen: int material_text_view_test_line_height -androidx.customview.R$id: int icon -james.adaptiveicon.R$styleable: int ActionBar_contentInsetStart -androidx.constraintlayout.widget.R$attr: int fontStyle -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -androidx.dynamicanimation.R$id: int tag_unhandled_key_listeners -james.adaptiveicon.R$drawable: int abc_ic_clear_material -cyanogenmod.hardware.DisplayMode$1: cyanogenmod.hardware.DisplayMode[] newArray(int) -com.baidu.location.e.l$b: java.lang.String a(com.baidu.location.e.l$b,org.json.JSONObject) -com.tencent.bugly.crashreport.common.info.a: java.lang.String L -com.turingtechnologies.materialscrollbar.R$bool: R$bool() -wangdaye.com.geometricweather.R$styleable: int Variant_region_heightMoreThan -wangdaye.com.geometricweather.R$id: int notification_base_realtimeTemp -com.tencent.bugly.proguard.v: boolean s -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: LifecycleDispatcher$DispatcherActivityCallback() -okhttp3.internal.http1.Http1Codec: int STATE_READING_RESPONSE_BODY -androidx.activity.R$dimen: int compat_notification_large_icon_max_height -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -androidx.drawerlayout.R$id: int italic -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean offer(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_132 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getHeadIconType() -com.google.android.material.R$dimen: int design_navigation_item_horizontal_padding -okio.AsyncTimeout: okio.AsyncTimeout awaitTimeout() -okhttp3.internal.http2.Http2Codec: java.lang.String PROXY_CONNECTION -wangdaye.com.geometricweather.R$styleable: int Toolbar_maxButtonHeight -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State SUCCEEDED -com.google.android.material.R$styleable: int Chip_chipIconVisible -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder followRedirects(boolean) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getStrokeAlpha() -com.turingtechnologies.materialscrollbar.R$id: int action_bar -androidx.appcompat.R$style: int Widget_AppCompat_RatingBar_Indicator -com.google.android.material.R$attr: int itemBackground -androidx.preference.R$attr: int fontVariationSettings -cyanogenmod.profiles.BrightnessSettings: boolean mDirty -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean outputFused -com.tencent.bugly.BuglyStrategy: long getAppReportDelay() -androidx.constraintlayout.widget.R$integer: int abc_config_activityDefaultDur -com.turingtechnologies.materialscrollbar.R$attr: int scrimAnimationDuration -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalBias -androidx.appcompat.R$styleable: int AppCompatTextView_drawableEndCompat -cyanogenmod.app.CMTelephonyManager: CMTelephonyManager(android.content.Context) -com.google.android.material.R$id: int src_in -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property CityId -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windDirection -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCo(java.lang.Float) -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -androidx.preference.R$styleable: int AppCompatTheme_listDividerAlertDialog -wangdaye.com.geometricweather.R$attr: int backgroundStacked -com.turingtechnologies.materialscrollbar.R$drawable: int abc_control_background_material -com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.proguard.w d -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_default_mtrl_alpha -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -com.github.rahatarmanahmed.cpv.CircularProgressView$5: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -androidx.constraintlayout.widget.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -wangdaye.com.geometricweather.R$drawable: int ic_uv -androidx.activity.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_3_30 -wangdaye.com.geometricweather.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_hd -androidx.appcompat.resources.R$dimen: int notification_right_icon_size -com.google.android.material.R$id: int icon -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPadding -wangdaye.com.geometricweather.R$string: int feedback_about_geocoder -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_78 -wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_HIGH -james.adaptiveicon.R$drawable: int abc_scrubber_primary_mtrl_alpha -com.google.android.gms.common.server.response.zan: android.os.Parcelable$Creator CREATOR -androidx.lifecycle.ViewModel: java.util.Map mBagOfTags -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -com.google.android.gms.base.R$attr: int buttonSize -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: int getChartTop() -wangdaye.com.geometricweather.R$layout: int widget_week_3 -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -com.google.gson.FieldNamingPolicy$2: java.lang.String translateName(java.lang.reflect.Field) -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable -androidx.constraintlayout.widget.R$style: int Animation_AppCompat_Tooltip -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity -io.reactivex.Observable: io.reactivex.Observable switchMapMaybeDelayError(io.reactivex.functions.Function) -androidx.viewpager2.R$id: int notification_background -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_STOP -retrofit2.Utils: java.lang.RuntimeException methodError(java.lang.reflect.Method,java.lang.Throwable,java.lang.String,java.lang.Object[]) -cyanogenmod.providers.CMSettings$NameValueCache -androidx.customview.R$id: int italic -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Time -com.baidu.location.e.l$b: com.baidu.location.e.l$b c -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean -com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_top_inner_color -okio.Buffer: long readLong() -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: void dispose() -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework -com.tencent.bugly.crashreport.common.info.a: int ag -androidx.preference.R$layout: int preference_recyclerview -okio.BufferedSource: long readAll(okio.Sink) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupMenu -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setPivotY(float) -com.turingtechnologies.materialscrollbar.R$attr: int chipStrokeWidth -androidx.work.R$color -cyanogenmod.app.ProfileGroup: void setVibrateMode(cyanogenmod.app.ProfileGroup$Mode) -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_content_inset_with_nav -okio.Buffer: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) -okhttp3.EventListener -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.functions.BiPredicate predicate -com.google.android.material.R$id: int accessibility_custom_action_22 -com.google.android.material.R$attr: int textAppearanceBody1 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_android_windowAnimationStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: AccuCurrentResult$DewPoint() -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getWetBulbTemperature() -com.xw.repo.bubbleseekbar.R$attr: int buttonBarNeutralButtonStyle -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderAuthority -androidx.appcompat.R$style: int Base_Theme_AppCompat -androidx.constraintlayout.widget.R$string: int status_bar_notification_info_overflow -androidx.lifecycle.LiveData$LifecycleBoundObserver -com.xw.repo.bubbleseekbar.R$id: int end -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice Ice -james.adaptiveicon.R$color: int abc_tint_btn_checkable -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginStart -com.tencent.bugly.BuglyStrategy: java.lang.String a -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_vertical_2lines -com.google.android.material.slider.BaseSlider: void removeOnSliderTouchListener(com.google.android.material.slider.BaseOnSliderTouchListener) -androidx.preference.R$styleable: int GradientColor_android_gradientRadius -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void dispose() -androidx.drawerlayout.R$styleable: int ColorStateListItem_alpha -androidx.hilt.work.R$styleable: int FontFamilyFont_fontStyle -cyanogenmod.weather.WeatherInfo: double getWindSpeed() -okhttp3.internal.Util: int indexOfControlOrNonAscii(java.lang.String) -androidx.customview.R$string: int status_bar_notification_info_overflow -okhttp3.Cache: Cache(java.io.File,long,okhttp3.internal.io.FileSystem) -okhttp3.internal.cache2.Relay$RelaySource: Relay$RelaySource(okhttp3.internal.cache2.Relay) -com.tencent.bugly.proguard.p: void b(int) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: long serialVersionUID -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onSuccess(java.lang.Object) -androidx.appcompat.R$styleable: int AppCompatTextView_fontVariationSettings -com.google.gson.stream.JsonScope: JsonScope() -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: ObservableTakeUntil$TakeUntilMainObserver(io.reactivex.Observer) -io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean,int) -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean unbounded -androidx.preference.R$styleable: int AppCompatTheme_dividerHorizontal -com.google.android.material.textfield.TextInputLayout: void setEndIconDrawable(android.graphics.drawable.Drawable) -androidx.viewpager2.R$id: int line1 -androidx.legacy.coreutils.R$id: int chronometer -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Settings okHttpSettings -androidx.appcompat.R$drawable: int abc_ic_go_search_api_material -com.google.android.material.R$id: int chip_group -com.google.android.material.R$color: int design_fab_shadow_start_color -androidx.recyclerview.R$attr: int fastScrollVerticalTrackDrawable -com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String a(byte[]) -retrofit2.BuiltInConverters: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) -wangdaye.com.geometricweather.R$color: int switch_thumb_disabled_material_light -com.amap.api.location.AMapLocation$1: java.lang.Object createFromParcel(android.os.Parcel) -cyanogenmod.providers.CMSettings$Secure: CMSettings$Secure() -androidx.appcompat.widget.LinearLayoutCompat: android.graphics.drawable.Drawable getDividerDrawable() -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setHourText(java.lang.String) -io.reactivex.internal.observers.BasicIntQueueDisposable: boolean offer(java.lang.Object) -james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_Toolbar -okhttp3.internal.ws.WebSocketWriter: boolean writerClosed -wangdaye.com.geometricweather.R$attr: int dayStyle -com.google.android.material.R$styleable: int CardView_contentPadding -cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings(android.os.Parcel) -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_type -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.R$drawable: int widget_card_light_60 -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayout_Layout -okhttp3.internal.connection.RealConnection -com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context,android.util.AttributeSet,int) -com.tencent.bugly.proguard.u: int b(com.tencent.bugly.proguard.u) -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addFormDataPart(java.lang.String,java.lang.String,okhttp3.RequestBody) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW -androidx.constraintlayout.widget.R$id: int src_in -androidx.swiperefreshlayout.R$drawable: R$drawable() -com.tencent.bugly.crashreport.common.info.a: java.lang.String G -wangdaye.com.geometricweather.R$attr: int enableCopying -wangdaye.com.geometricweather.R$attr: int floatingActionButtonStyle -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getIconResStart() -androidx.preference.R$style: int Base_Widget_AppCompat_SeekBar -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_layoutManager -james.adaptiveicon.R$attr: int measureWithLargestChild -wangdaye.com.geometricweather.R$layout: int item_about_title -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end -okhttp3.internal.http2.Hpack$Reader: int maxDynamicTableByteCount() -androidx.constraintlayout.widget.R$drawable: int abc_ic_clear_material -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.Observer downstream -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: SwipeRefreshLayout(android.content.Context,android.util.AttributeSet) -androidx.coordinatorlayout.R$styleable: int GradientColor_android_tileMode -com.google.android.material.R$id: int material_timepicker_cancel_button -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_font -androidx.appcompat.R$attr: int buttonIconDimen -androidx.viewpager2.R$id: int accessibility_custom_action_20 -androidx.vectordrawable.animated.R$layout: int custom_dialog -okio.AsyncTimeout: java.io.IOException newTimeoutException(java.io.IOException) -com.xw.repo.bubbleseekbar.R$attr: int actionBarTheme -com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_COCOS2DX_JS -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: java.lang.String DESCRIPTOR -androidx.viewpager2.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric -com.github.rahatarmanahmed.cpv.CircularProgressView$8: void onAnimationUpdate(android.animation.ValueAnimator) -androidx.recyclerview.R$drawable: int notification_bg_low_pressed -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1 -androidx.viewpager.R$drawable -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.LocationEntity) -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorBackgroundFloating -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String weatherSource -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: float val$swipeProgress -com.google.gson.stream.JsonScope -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayHorizontalProvider: WidgetClockDayHorizontalProvider() -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode SLEET -com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextInputEditText -androidx.appcompat.R$layout -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$string: int key_unit -james.adaptiveicon.R$style: int Base_Animation_AppCompat_Dialog -wangdaye.com.geometricweather.R$attr: int tabRippleColor -androidx.preference.PreferenceGroup$SavedState -wangdaye.com.geometricweather.R$string: int widget_clock_day_details -androidx.transition.R$dimen: int compat_button_inset_vertical_material -com.tencent.bugly.crashreport.crash.anr.a: java.lang.String e -androidx.hilt.R$drawable: int notification_bg_low_pressed -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableStart -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void openComplete(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver) -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode WIND -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textFontWeight -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_shift_shortcut_label -androidx.preference.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -okio.RealBufferedSource: okio.ByteString readByteString(long) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean getSunRiseSet() -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_NoActionBar -com.google.android.material.button.MaterialButton$SavedState -androidx.constraintlayout.widget.R$attr: int srcCompat -com.google.android.material.R$attr: int state_lifted -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType valueOf(java.lang.String) -com.xw.repo.bubbleseekbar.R$style: int Base_V26_Theme_AppCompat_Light -io.reactivex.internal.subscriptions.SubscriptionArbiter: void cancel() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: int UnitType -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: boolean isDisposed() -androidx.fragment.R$styleable: int GradientColor_android_centerX -androidx.viewpager2.R$styleable: int ColorStateListItem_android_color -androidx.constraintlayout.widget.R$attr: int activityChooserViewStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isIsModify() -androidx.loader.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_transformPivotY -com.tencent.bugly.crashreport.CrashReport: void setAppPackage(android.content.Context,java.lang.String) -com.tencent.bugly.crashreport.crash.a: java.lang.String c -wangdaye.com.geometricweather.R$color: int primary_text_disabled_material_dark -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display2 -androidx.drawerlayout.R$dimen: int notification_top_pad_large_text -com.amap.api.location.AMapLocationClientOption: boolean g -cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_VIBRATE -androidx.constraintlayout.widget.R$attr: int contentInsetEnd -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.appcompat.widget.AppCompatTextView: void setTextFuture(java.util.concurrent.Future) -io.reactivex.internal.observers.DeferredScalarDisposable: int requestFusion(int) -cyanogenmod.app.ProfileGroup$1: ProfileGroup$1() -androidx.preference.R$attr: int expandActivityOverflowButtonDrawable -androidx.work.R$attr -okhttp3.Request$Builder: okhttp3.Headers$Builder headers -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_maxWidth -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean images -androidx.preference.R$style: int Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.R$string: int abc_menu_function_shortcut_label -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_bias -com.jaredrummler.android.colorpicker.R$attr: int contentInsetStart -com.google.android.material.textfield.TextInputLayout: void setError(java.lang.CharSequence) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: double Value -org.greenrobot.greendao.database.DatabaseOpenHelper: void setLoadSQLCipherNativeLibs(boolean) -com.tencent.bugly.proguard.j: void a(java.lang.String,int) -com.turingtechnologies.materialscrollbar.R$color: int material_grey_50 -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_divider -com.amap.api.fence.GeoFence: java.lang.String c -androidx.versionedparcelable.CustomVersionedParcelable: CustomVersionedParcelable() -okio.Okio: okio.Sink sink(java.io.OutputStream) -cyanogenmod.weather.RequestInfo: android.location.Location access$502(cyanogenmod.weather.RequestInfo,android.location.Location) -androidx.viewpager2.R$layout: R$layout() -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_ActionBar -androidx.appcompat.R$attr: int actionModePopupWindowStyle -androidx.drawerlayout.R$id: int blocking -wangdaye.com.geometricweather.R$layout: int notification_template_custom_big -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onAttach(android.os.IBinder) -com.loc.h: void getLocation(java.lang.String) -androidx.preference.R$styleable: int Preference_enableCopying -android.didikee.donate.R$color: int notification_action_color_filter -androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_EditText -okio.ByteString: int size() -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_scrollView -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_fitsSystemWindows -androidx.fragment.R$styleable: int FontFamilyFont_android_font -okhttp3.internal.http2.Http2Connection$PingRunnable: int payload1 -cyanogenmod.os.Build$CM_VERSION: int SDK_INT -james.adaptiveicon.R$styleable: int AppCompatTextView_textAllCaps -com.google.android.material.R$attr: int viewInflaterClass -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: int UnitType -com.google.android.material.bottomappbar.BottomAppBar: int getRightInset() -okhttp3.Cache$CacheRequestImpl: okio.Sink body() -retrofit2.OkHttpCall$NoContentResponseBody: okhttp3.MediaType contentType -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String LocalizedName -wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_dark -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String description -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_border_width -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomAppBar_Colored -com.google.android.material.R$styleable: int ChipGroup_singleSelection -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.Long id -wangdaye.com.geometricweather.R$styleable: int Slider_labelBehavior -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean add(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) -okhttp3.RequestBody$3: RequestBody$3(okhttp3.MediaType,java.io.File) -cyanogenmod.app.CMContextConstants: java.lang.String CM_PROFILE_SERVICE -cyanogenmod.app.CustomTile$ExpandedStyle: int REMOTE_STYLE -com.google.android.material.R$styleable: int Layout_layout_constraintCircleAngle -okhttp3.internal.connection.RouteException -com.xw.repo.bubbleseekbar.R$color: int dim_foreground_disabled_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_cornerRadius -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getShortTemperatureText(android.content.Context,int) -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder eventListener(okhttp3.EventListener) -okhttp3.Cookie: java.lang.String value() -wangdaye.com.geometricweather.R$string: int common_google_play_services_update_text -okhttp3.ConnectionPool: ConnectionPool(int,long,java.util.concurrent.TimeUnit) -cyanogenmod.weather.WeatherInfo: java.util.List mForecastList -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_dither -com.turingtechnologies.materialscrollbar.R$attr: int layout_behavior -io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper CANCELLED -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Date -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button -wangdaye.com.geometricweather.R$array: int widget_card_styles -james.adaptiveicon.R$dimen: int abc_text_size_display_1_material -androidx.hilt.work.R$id: int action_text -com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Theme_AppCompat_Light -androidx.work.R$styleable: int GradientColorItem_android_offset -okhttp3.ConnectionSpec$Builder: java.lang.String[] tlsVersions -com.turingtechnologies.materialscrollbar.R$anim: int abc_grow_fade_in_from_bottom -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitationDuration() -androidx.preference.R$bool: int abc_allow_stacked_button_bar -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -wangdaye.com.geometricweather.R$string: int introduce -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) -cyanogenmod.weatherservice.ServiceRequestResult$Builder: cyanogenmod.weatherservice.ServiceRequestResult build() -com.tencent.bugly.crashreport.common.info.b: long s() -androidx.lifecycle.MediatorLiveData: void addSource(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_scrollMode -com.xw.repo.bubbleseekbar.R$id: int select_dialog_listview -okhttp3.logging.HttpLoggingInterceptor$Logger: void log(java.lang.String) -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_direction -wangdaye.com.geometricweather.R$layout: int item_about_translator -androidx.lifecycle.extensions.R$dimen: int compat_notification_large_icon_max_height -cyanogenmod.themes.ThemeChangeRequest -androidx.hilt.R$anim -com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyleIndicator -wangdaye.com.geometricweather.GeometricWeather: GeometricWeather() -androidx.viewpager.R$id: int notification_main_column_container -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: AccuDailyResult$DailyForecasts$Moon() -okhttp3.internal.http2.PushObserver: boolean onRequest(int,java.util.List) -androidx.appcompat.R$layout: int abc_tooltip -okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method openMethod -retrofit2.ParameterHandler$2: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isRain() -com.google.android.material.R$drawable: int avd_show_password -com.google.android.material.R$styleable: int[] ExtendedFloatingActionButton_Behavior_Layout -wangdaye.com.geometricweather.R$drawable: int ic_navigation -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type ownerType -com.xw.repo.bubbleseekbar.R$drawable: int abc_vector_test -wangdaye.com.geometricweather.R$id: int widget_text_date -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_to_on_mtrl_000 -com.google.android.gms.common.ConnectionResult -android.didikee.donate.R$id: int none -wangdaye.com.geometricweather.R$color: int abc_btn_colored_text_material -cyanogenmod.app.StatusBarPanelCustomTile: int describeContents() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -androidx.appcompat.R$color: int secondary_text_default_material_dark -wangdaye.com.geometricweather.R$string: int content_des_add_current_location -com.xw.repo.bubbleseekbar.R$id: int screen -androidx.preference.R$attr: int listPopupWindowStyle -okhttp3.OkHttpClient: okhttp3.Authenticator authenticator() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_editor_absoluteX -androidx.recyclerview.widget.RecyclerView: void setPreserveFocusAfterLayout(boolean) -androidx.vectordrawable.R$styleable: int FontFamilyFont_fontWeight -cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup[] getProfileGroups() -androidx.preference.Preference: void setOnPreferenceClickListener(androidx.preference.Preference$OnPreferenceClickListener) -james.adaptiveicon.R$drawable: int abc_scrubber_track_mtrl_alpha -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textStyle -com.google.android.material.R$attr: int backgroundTintMode -wangdaye.com.geometricweather.R$attr: int unfold -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: int getMarginTop() -okhttp3.Request: java.lang.String header(java.lang.String) -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_2G -androidx.appcompat.R$styleable: int RecycleListView_paddingBottomNoButtons -androidx.work.R$id: int right_side -androidx.appcompat.widget.Toolbar: void setOnMenuItemClickListener(androidx.appcompat.widget.Toolbar$OnMenuItemClickListener) -okhttp3.OkHttpClient: java.util.List interceptors() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: MfForecastResult$Position() -wangdaye.com.geometricweather.R$drawable: int ic_building -com.turingtechnologies.materialscrollbar.R$dimen: int notification_main_column_padding_top -androidx.appcompat.R$styleable: int AppCompatTheme_actionButtonStyle -androidx.constraintlayout.helper.widget.Layer: void setPivotX(float) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SeekBar -androidx.constraintlayout.widget.R$styleable: int Constraint_drawPath -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onSubscribe(org.reactivestreams.Subscription) -android.didikee.donate.R$attr: int buttonBarNegativeButtonStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarSize -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_allowCustom -okhttp3.internal.http1.Http1Codec: void detachTimeout(okio.ForwardingTimeout) -io.reactivex.Observable: io.reactivex.Single toSortedList(java.util.Comparator) -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_padding_end_material -androidx.appcompat.widget.AppCompatRadioButton: android.graphics.PorterDuff$Mode getSupportButtonTintMode() -cyanogenmod.power.PerformanceManager: int PROFILE_HIGH_PERFORMANCE -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorType -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: javax.inject.Provider disposableProvider -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void dispose() -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.DatabaseOpenHelper$EncryptedHelper encryptedHelper -com.google.android.material.R$layout: int abc_action_menu_layout -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) -wangdaye.com.geometricweather.R$layout: int container_main_hourly_trend_card -com.amap.api.location.AMapLocationClientOption: boolean isOpenAlwaysScanWifi() -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabText -androidx.lifecycle.SavedStateHandle$1 -okhttp3.Request$Builder: okhttp3.Request$Builder url(java.lang.String) -com.tencent.bugly.proguard.w: java.util.concurrent.atomic.AtomicInteger a -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog -androidx.preference.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.settings.fragments.SettingsFragment -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_margin -okhttp3.internal.http2.Http2Stream -com.google.android.material.bottomnavigation.BottomNavigationView: void setSelectedItemId(int) -wangdaye.com.geometricweather.R$attr: int minTouchTargetSize -wangdaye.com.geometricweather.R$id: int none -wangdaye.com.geometricweather.R$drawable: int abc_text_cursor_material -com.google.gson.LongSerializationPolicy: LongSerializationPolicy(java.lang.String,int,com.google.gson.LongSerializationPolicy$1) -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void testCrash() -wangdaye.com.geometricweather.R$attr: int layout_scrollInterpolator -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String getWeatherSource() -androidx.hilt.work.R$styleable -androidx.appcompat.resources.R$layout: int notification_template_part_time -retrofit2.OkHttpCall: retrofit2.Response parseResponse(okhttp3.Response) -cyanogenmod.weather.util.WeatherUtils -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_1 -com.autonavi.aps.amapapi.model.AMapLocationServer: int c() -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: java.util.Date Rise -wangdaye.com.geometricweather.R$drawable: int clock_minute_dark -cyanogenmod.weather.IWeatherServiceProviderChangeListener -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.Observer downstream -androidx.work.R$id: int accessibility_custom_action_11 -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Current getCurrent() -androidx.preference.Preference: Preference(android.content.Context) -wangdaye.com.geometricweather.R$drawable: int notif_temp_80 -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabView -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_backgroundStacked -androidx.appcompat.R$attr: int drawableLeftCompat -com.google.android.gms.common.images.ImageManager$ImageReceiver -james.adaptiveicon.R$id: int action_bar_spinner -androidx.swiperefreshlayout.R$string -wangdaye.com.geometricweather.R$dimen: int notification_right_side_padding_top -com.google.android.material.R$dimen: int abc_edit_text_inset_top_material -james.adaptiveicon.R$styleable: int FontFamilyFont_fontVariationSettings -com.google.android.material.R$drawable: int mtrl_tabs_default_indicator -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onNext(java.lang.Object) -com.google.android.material.R$string: int item_view_role_description -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.StreamAllocation streamAllocation -wangdaye.com.geometricweather.R$styleable: int[] ProgressIndicator -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_android_maxWidth -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_width_material -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyBar -cyanogenmod.alarmclock.ClockContract$InstancesColumns: android.net.Uri CONTENT_URI -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date getRiseDate() -androidx.preference.R$styleable: int DrawerArrowToggle_drawableSize -android.didikee.donate.R$drawable: R$drawable() -androidx.preference.R$attr: int dialogPreferenceStyle -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_3 -okio.RealBufferedSource: java.lang.String readUtf8(long) -androidx.constraintlayout.widget.R$styleable: int MenuView_android_verticalDivider -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderPackage -androidx.constraintlayout.widget.R$id: int group_divider -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: double Value -androidx.preference.R$styleable: int[] Preference -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DIALER_OPENCNAM_ACCOUNT_SID_VALIDATOR -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPopupWindowStyle -androidx.appcompat.widget.Toolbar: void setOverflowIcon(android.graphics.drawable.Drawable) -androidx.preference.R$attr: int listDividerAlertDialog -androidx.preference.R$attr: int keylines -wangdaye.com.geometricweather.R$string: int feedback_refresh_notification_now -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: ResultObservable$ResultObserver(io.reactivex.Observer) -com.tencent.bugly.crashreport.common.info.a: int D() -com.google.android.material.chip.Chip: void setCloseIconVisible(int) -com.google.android.material.textfield.TextInputLayout: void setPlaceholderText(java.lang.CharSequence) -cyanogenmod.app.Profile: java.lang.String TAG -androidx.appcompat.R$color: int abc_primary_text_material_light -wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.LocationEntity) -okhttp3.TlsVersion: okhttp3.TlsVersion[] $VALUES -cyanogenmod.providers.CMSettings$System: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$string: int common_google_play_services_notification_channel_name -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColorLink -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language CHINESE -cyanogenmod.app.ILiveLockScreenManager$Stub: cyanogenmod.app.ILiveLockScreenManager asInterface(android.os.IBinder) -com.google.android.material.R$style: int Widget_AppCompat_TextView -androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_minimum_range -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowColor -com.jaredrummler.android.colorpicker.R$attr: int actionDropDownStyle -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionLayout -com.google.android.material.R$styleable: int FontFamilyFont_fontWeight -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onScreenTurnedOn() -com.google.android.material.R$attr: int layout_constraintWidth_min -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getAlertList() -wangdaye.com.geometricweather.R$styleable: int ActionBar_icon -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onError(java.lang.Throwable) -androidx.hilt.lifecycle.R$drawable: int notification_tile_bg -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_TextView -androidx.appcompat.widget.AppCompatTextView: android.view.textclassifier.TextClassifier getTextClassifier() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf -androidx.viewpager.R$integer -com.google.android.material.R$styleable: int SwitchCompat_thumbTint -okio.Timeout: okio.Timeout clearTimeout() -com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_indicator_material -cyanogenmod.weather.WeatherLocation: int describeContents() -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItem -com.google.android.material.R$attr: int actionModeBackground -com.google.android.material.button.MaterialButton: void setIconGravity(int) -android.didikee.donate.R$drawable: int abc_ic_arrow_drop_right_black_24dp -androidx.preference.R$drawable: int abc_seekbar_tick_mark_material -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitationDuration -okhttp3.internal.http2.Settings: int[] values -androidx.preference.R$style: int Base_Widget_AppCompat_ProgressBar -wangdaye.com.geometricweather.R$mipmap: int ic_launcher -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum -androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableCompat -androidx.hilt.R$integer -okhttp3.internal.connection.RealConnection: okhttp3.ConnectionPool connectionPool -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onError(java.lang.Throwable) -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_FixedSize -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onNext(retrofit2.Response) -james.adaptiveicon.AdaptiveIconView: void setIcon(james.adaptiveicon.AdaptiveIcon) -wangdaye.com.geometricweather.R$drawable: int notif_temp_89 -james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -retrofit2.Utils$ParameterizedTypeImpl -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_RESULT_VALUE -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getAbbreviation(android.content.Context) -android.didikee.donate.R$styleable: int[] LinearLayoutCompat -wangdaye.com.geometricweather.R$styleable: int Preference_selectable -okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 -com.jaredrummler.android.colorpicker.R$attr: int fontProviderFetchStrategy -androidx.appcompat.widget.Toolbar: void setLogo(int) -com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_in_bottom -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getTreeLevel() -wangdaye.com.geometricweather.R$id: int exitUntilCollapsed -com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_bottom_margin -james.adaptiveicon.R$styleable: int TextAppearance_android_shadowColor -okhttp3.MediaType -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView_Menu -androidx.appcompat.R$style: int Base_V7_Theme_AppCompat -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setIconResStart(int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPm10(java.lang.Float) -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLocationCacheEnable(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX -androidx.lifecycle.LiveData$AlwaysActiveObserver: LiveData$AlwaysActiveObserver(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) -okhttp3.internal.http2.Settings: int MAX_HEADER_LIST_SIZE -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult -james.adaptiveicon.R$layout: int abc_popup_menu_header_item_layout -com.bumptech.glide.R$styleable: int FontFamily_fontProviderAuthority -com.turingtechnologies.materialscrollbar.R$styleable: int[] FloatingActionButton_Behavior_Layout -android.didikee.donate.R$style: int Widget_AppCompat_Light_ListView_DropDown -retrofit2.Converter$Factory: java.lang.Class getRawType(java.lang.reflect.Type) -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: ObservableThrottleLatest$ThrottleLatestObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker,boolean) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String TARGET_API -wangdaye.com.geometricweather.R$styleable: int Chip_chipIconTint -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour MATCH_PARENT -com.google.android.material.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_1 -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -androidx.preference.R$styleable: int[] EditTextPreference -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_RC4_128_MD5 -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getLiveLockScreenThemePackageName() -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: long serialVersionUID -androidx.appcompat.R$id: int dialog_button -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Time -retrofit2.RequestBuilder: void setBody(okhttp3.RequestBody) -com.google.android.material.R$styleable: int CardView_contentPaddingTop -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle -com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -androidx.appcompat.R$layout: int custom_dialog -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: void setFrom(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableRight -androidx.appcompat.R$styleable: int SearchView_commitIcon -wangdaye.com.geometricweather.R$attr: int text_size -wangdaye.com.geometricweather.R$styleable: int Constraint_android_alpha -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Body2 -androidx.dynamicanimation.R$id: int chronometer -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: java.lang.Object v1 -androidx.vectordrawable.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.R$styleable: int[] MaterialAlertDialogTheme -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval[] values() -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_transitionPathRotate -androidx.multidex.MultiDexExtractor$ExtractedDex: MultiDexExtractor$ExtractedDex(java.io.File,java.lang.String) -james.adaptiveicon.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -okhttp3.internal.http1.Http1Codec: void flushRequest() -okhttp3.internal.ws.WebSocketReader: boolean isFinalFrame -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitationDuration -com.google.android.gms.common.api.ApiException -james.adaptiveicon.R$attr: int textAppearanceLargePopupMenu -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.DailyEntityDao dailyEntityDao -wangdaye.com.geometricweather.main.dialogs.BackgroundLocationDialog -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_dark -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_statusBarForeground -androidx.constraintlayout.widget.R$attr: int percentX -androidx.constraintlayout.widget.R$styleable: int PopupWindowBackgroundState_state_above_anchor -android.support.v4.os.ResultReceiver$MyRunnable: ResultReceiver$MyRunnable(android.support.v4.os.ResultReceiver,int,android.os.Bundle) -androidx.constraintlayout.widget.R$id: int add -wangdaye.com.geometricweather.R$drawable: int notification_tile_bg -androidx.core.R$id: int action_divider -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_Dialog -james.adaptiveicon.R$attr: int radioButtonStyle -androidx.appcompat.R$attr: int isLightTheme -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_unselected -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken STRING -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Menu -retrofit2.HttpServiceMethod$SuspendForResponse: HttpServiceMethod$SuspendForResponse(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter) -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: io.reactivex.internal.disposables.SequentialDisposable direct -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_baselineAligned -android.didikee.donate.R$drawable: int abc_scrubber_control_off_mtrl_alpha -com.xw.repo.bubbleseekbar.R$color: int notification_icon_bg_color -retrofit2.Retrofit$1 -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.HistoryEntity) -cyanogenmod.hardware.CMHardwareManager: int FEATURE_VIBRATOR -wangdaye.com.geometricweather.R$attr: int materialCalendarMonthNavigationButton -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginTop -com.bumptech.glide.R$dimen: int compat_button_padding_vertical_material -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_CONDITION -com.google.android.material.circularreveal.CircularRevealRelativeLayout: CircularRevealRelativeLayout(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int ActionBar_navigationMode -wangdaye.com.geometricweather.R$attr: int flow_wrapMode -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.util.AtomicThrowable error -com.google.android.material.R$styleable: int MenuItem_android_enabled -okhttp3.internal.ws.RealWebSocket: long MAX_QUEUE_SIZE -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean getLiveLockScreenEnabled() -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: MfCurrentResult$Observation$Wind() -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String district -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_percent -okhttp3.Cookie: java.lang.String path -cyanogenmod.providers.CMSettings$System: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) -okhttp3.internal.Version: java.lang.String userAgent() -androidx.hilt.R$attr: int fontProviderCerts -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -james.adaptiveicon.R$styleable: int View_theme -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_8 -com.google.gson.stream.JsonReader: long nextLong() -cyanogenmod.weather.CMWeatherManager$RequestStatus: CMWeatherManager$RequestStatus() -com.xw.repo.bubbleseekbar.R$id: int italic -androidx.hilt.lifecycle.R$layout: int notification_action_tombstone -androidx.swiperefreshlayout.R$dimen: int compat_notification_large_icon_max_width -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_titleTextStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_selectableItemBackground -androidx.appcompat.R$styleable: int AppCompatTheme_listMenuViewStyle -okio.DeflaterSink: void close() -com.google.android.material.R$styleable: int OnClick_targetId -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void request(long) -wangdaye.com.geometricweather.R$string: int precipitation_probability -android.didikee.donate.R$styleable: int AppCompatTheme_tooltipFrameBackground -okhttp3.internal.platform.Android10Platform: Android10Platform(java.lang.Class) -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: int retries -androidx.preference.R$dimen: int abc_seekbar_track_progress_height_material -androidx.fragment.app.FragmentActivity: FragmentActivity() -okhttp3.logging.LoggingEventListener: void connectEnd(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol) -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleTextColor -com.turingtechnologies.materialscrollbar.R$dimen: int abc_progress_bar_height_material -androidx.activity.R$integer: R$integer() -com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_text_size -com.google.android.material.R$attr: int contentInsetRight -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitation() -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType[] values() -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_0_30 -wangdaye.com.geometricweather.R$attr: int foregroundInsidePadding -cyanogenmod.themes.ThemeManager$ThemeChangeListener: void onFinish(boolean) -james.adaptiveicon.R$styleable: int[] AppCompatTextView -com.tencent.bugly.proguard.z: void b(long) -com.bumptech.glide.integration.okhttp.R$style: int Widget_Compat_NotificationActionText -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onError(java.lang.Throwable) -com.google.android.material.R$id: int jumpToStart -androidx.preference.R$styleable: int AppCompatTheme_homeAsUpIndicator -okhttp3.OkHttpClient: OkHttpClient() -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void onResponse(retrofit2.Call,retrofit2.Response) -wangdaye.com.geometricweather.db.entities.DailyEntity -io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: java.lang.Throwable error -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_titleCondensed -androidx.vectordrawable.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.R$id: int line1 -io.reactivex.disposables.RunnableDisposable: void onDisposed(java.lang.Runnable) -com.google.android.material.R$styleable: int Slider_tickColorActive -android.didikee.donate.R$styleable: int SearchView_searchIcon -retrofit2.Retrofit: retrofit2.ServiceMethod loadServiceMethod(java.lang.reflect.Method) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReferenceArray values -androidx.customview.R$drawable: int notification_bg_low -io.reactivex.internal.util.EmptyComponent -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeWindChillTemperature() -com.google.android.material.internal.NavigationMenuItemView: void setIconPadding(int) -com.google.android.material.R$drawable: int abc_switch_track_mtrl_alpha -okhttp3.internal.ws.WebSocketReader: void readMessage() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: AccuCurrentResult$RealFeelTemperatureShade$Imperial() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: java.lang.String address -wangdaye.com.geometricweather.R$styleable: int Transform_android_rotationX -com.google.android.material.R$color: int material_grey_600 -com.google.android.material.internal.ForegroundLinearLayout: int getForegroundGravity() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_begin -cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: int FAHRENHEIT -io.reactivex.internal.util.NotificationLite$DisposableNotification: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginStart -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_snackbar_margin_horizontal -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language CZECH -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.IBinder onBind(android.content.Intent) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean -androidx.work.R$id: int accessibility_custom_action_15 -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthTextView -retrofit2.DefaultCallAdapterFactory$1: java.lang.reflect.Type val$responseType -io.reactivex.internal.util.EmptyComponent: void dispose() -okio.ByteString: int lastIndexOf(okio.ByteString) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_CLOCK_VALIDATOR -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getTreeLevel() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float rainPrecipitation -android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -com.google.android.material.R$attr: int flow_firstHorizontalStyle -com.google.android.material.R$attr: int listChoiceBackgroundIndicator -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card -com.tencent.bugly.crashreport.biz.b: java.lang.Class b() -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_DarkActionBar -androidx.appcompat.R$styleable: int AlertDialog_listLayout -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_resetAll -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView -com.google.android.material.bottomsheet.BottomSheetBehavior$SavedState: android.os.Parcelable$Creator CREATOR -androidx.work.R$layout: int custom_dialog -okhttp3.internal.http1.Http1Codec$ChunkedSink: okio.Timeout timeout() -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent WALLPAPER -com.google.android.material.R$styleable: int BottomAppBar_backgroundTint -james.adaptiveicon.R$string: int status_bar_notification_info_overflow -com.bumptech.glide.R$attr: int layout_anchor -okhttp3.Cache: void evictAll() -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSnowPrecipitation(java.lang.Float) -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_visible -androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveOffset -cyanogenmod.hardware.DisplayMode$1: java.lang.Object createFromParcel(android.os.Parcel) -com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: void reportJSException(java.lang.String) -cyanogenmod.app.CustomTile$ExpandedListItem: CustomTile$ExpandedListItem() -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_scrollContainer -okio.ByteString: boolean endsWith(okio.ByteString) -wangdaye.com.geometricweather.R$drawable: int abc_list_pressed_holo_light -com.google.android.material.R$attr: int inverse -com.jaredrummler.android.colorpicker.R$id: int listMode -retrofit2.OkHttpCall: okhttp3.Call rawCall -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton -cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.ICMStatusBarManager sService -james.adaptiveicon.R$styleable: int AppCompatTheme_panelMenuListTheme -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setStatus(int) -androidx.appcompat.widget.ActionMenuView: android.graphics.drawable.Drawable getOverflowIcon() -androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_layout -androidx.coordinatorlayout.R$dimen: int notification_large_icon_width -com.google.android.material.chip.Chip: void setChipMinHeightResource(int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float thunderstormPrecipitation -com.jaredrummler.android.colorpicker.R$attr: int widgetLayout -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorButtonNormal -io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver INSTANCE -androidx.preference.R$style: int Animation_AppCompat_DropDownUp -androidx.constraintlayout.widget.R$anim: int abc_fade_out -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorPrimaryDark -androidx.appcompat.R$styleable: int AppCompatTextView_textAllCaps -com.google.android.material.R$attr: int startIconTint -com.google.android.material.R$dimen: int mtrl_calendar_header_divider_thickness -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: int status -wangdaye.com.geometricweather.R$id: int container_main_aqi_recyclerView -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_voice -com.google.android.material.R$color: int abc_primary_text_disable_only_material_light -cyanogenmod.app.StatusBarPanelCustomTile -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property China -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarStyle -androidx.work.R$id: int icon -androidx.coordinatorlayout.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: java.lang.String styleId -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderPackage -com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_customNavigationLayout -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.os.Bundle mOptions -androidx.preference.R$attr: int fontWeight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial() -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginTop -wangdaye.com.geometricweather.R$string: int content_des_moonset -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -com.bumptech.glide.R$attr: int alpha -cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.CMStatusBarManager sCMStatusBarManagerInstance -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSo2Desc() -cyanogenmod.app.PartnerInterface: cyanogenmod.app.PartnerInterface getInstance(android.content.Context) -cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_NETWORK_SETTINGS -com.google.android.material.R$styleable: int Chip_chipIconEnabled -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: int size -com.baidu.location.e.l$b: com.baidu.location.e.l$b[] values() -james.adaptiveicon.R$drawable: int abc_textfield_search_default_mtrl_alpha -com.tencent.bugly.CrashModule: com.tencent.bugly.CrashModule getInstance() -wangdaye.com.geometricweather.R$attr: int helperTextTextColor -androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentY -androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context) -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: AlertEntityDao$Properties() -androidx.preference.R$attr: int switchTextOff -androidx.appcompat.R$dimen: int notification_right_side_padding_top -android.didikee.donate.R$styleable: int MenuView_android_itemBackground -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedWidthMajor -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.util.List getValue() -okio.RealBufferedSource: long read(okio.Buffer,long) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_height_minor -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAV_BUTTONS_VALIDATOR -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabUnboundedRipple -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -android.support.v4.os.IResultReceiver$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.amap.api.fence.GeoFence: int k -com.xw.repo.bubbleseekbar.R$id: int action_menu_presenter -com.autonavi.aps.amapapi.model.AMapLocationServer: long k() -androidx.constraintlayout.widget.R$attr: int thumbTextPadding -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ProgressBar_Horizontal -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.disposables.Disposable upstream -james.adaptiveicon.R$attr: int seekBarStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.lifecycle.SavedStateHandleController$1: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -james.adaptiveicon.R$color: int highlighted_text_material_dark -okio.RealBufferedSink: java.lang.String toString() -wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean isEntityUpdateable() -com.google.android.material.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_focused_z -com.xw.repo.bubbleseekbar.R$attr: int layout_anchorGravity -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ProgressBar -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -okhttp3.internal.tls.BasicCertificateChainCleaner -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -androidx.appcompat.R$drawable: int abc_ic_voice_search_api_material -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: ObservableSwitchMapSingle$SwitchMapSingleMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -cyanogenmod.weather.WeatherInfo: java.lang.String getCity() -retrofit2.ParameterHandler$2 -wangdaye.com.geometricweather.R$id: int progress_circular -androidx.lifecycle.Transformations$3: void onChanged(java.lang.Object) -com.google.android.material.R$id: int layout -wangdaye.com.geometricweather.R$attr: int isMaterialTheme -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_alphabeticModifiers -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality() -cyanogenmod.app.CMContextConstants: java.lang.String CM_THEME_SERVICE -com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding valueOf(java.lang.String) -wangdaye.com.geometricweather.R$id: int action_menu_divider -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float totalPrecipitation -androidx.recyclerview.R$id: int accessibility_custom_action_1 -james.adaptiveicon.R$attr: int thumbTint -androidx.vectordrawable.animated.R$drawable: int notification_action_background -com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_800 -okio.RealBufferedSource: long indexOf(byte) -wangdaye.com.geometricweather.R$attr: int cpv_animSwoopDuration -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -androidx.hilt.work.R$dimen: int notification_content_margin_start -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onComplete() -wangdaye.com.geometricweather.R$id: int masked -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onNext(java.lang.Object) -androidx.constraintlayout.widget.R$id: int action_bar_spinner -io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier valueOf(java.lang.String) -androidx.constraintlayout.widget.R$color: int primary_text_disabled_material_dark -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void collapseNotificationPanel() -androidx.appcompat.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.R$drawable: int widget_trend_hourly -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String unitId -james.adaptiveicon.R$drawable: int abc_list_divider_mtrl_alpha -androidx.viewpager2.R$id: int italic -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index -okhttp3.CertificatePinner: java.lang.String pin(java.security.cert.Certificate) -okhttp3.internal.http1.Http1Codec$AbstractSource: void endOfInput(boolean,java.io.IOException) -androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -androidx.appcompat.R$attr: int customNavigationLayout -com.google.android.material.R$styleable: int Slider_thumbStrokeWidth -retrofit2.adapter.rxjava2.CallExecuteObservable: void subscribeActual(io.reactivex.Observer) -wangdaye.com.geometricweather.R$attr: int layout_anchor -com.tencent.bugly.proguard.j: void a(java.lang.Object,int) -wangdaye.com.geometricweather.main.fragments.ManagementFragment: ManagementFragment() -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_visible -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView_DropDown -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer rainProductAvailable -androidx.appcompat.R$styleable: int DrawerArrowToggle_color -androidx.constraintlayout.widget.R$drawable: int btn_radio_on_to_off_mtrl_animation -wangdaye.com.geometricweather.R$attr: int waveDecay -wangdaye.com.geometricweather.R$id: int glide_custom_view_target_tag -wangdaye.com.geometricweather.R$string: int phase_new -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getIcePrecipitation() -com.github.rahatarmanahmed.cpv.R$string: R$string() -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State[] values() -wangdaye.com.geometricweather.R$dimen: int mtrl_progress_indicator_size -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setPostalCode(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_93 -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_section_text -androidx.appcompat.R$attr: int actionModeShareDrawable -com.jaredrummler.android.colorpicker.R$dimen: int notification_top_pad_large_text -androidx.hilt.lifecycle.R$drawable: int notification_bg_low_normal -androidx.lifecycle.LiveData$1: LiveData$1(androidx.lifecycle.LiveData) -android.didikee.donate.R$dimen -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_MENU_LONG_PRESS_ACTION -wangdaye.com.geometricweather.R$id: int dialog_time_setter_container -com.tencent.bugly.crashreport.crash.jni.a -com.google.gson.stream.JsonReader: int NUMBER_CHAR_DECIMAL -androidx.fragment.R$id: int text -androidx.preference.R$id: int action_text -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: boolean isDisposed() -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.String toString() -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_enabled -wangdaye.com.geometricweather.R$attr: int bsb_show_progress_in_float -androidx.viewpager2.R$drawable: int notification_bg_low_pressed -retrofit2.ParameterHandler$Header -io.reactivex.internal.schedulers.AbstractDirectTask: AbstractDirectTask(java.lang.Runnable) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean getPressure() -io.reactivex.internal.operators.observable.ObservableReplay$Node -com.google.android.material.R$attr: int number -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveShape -androidx.preference.R$color: int switch_thumb_material_light -okhttp3.Response: java.lang.String header(java.lang.String,java.lang.String) -android.didikee.donate.R$styleable: int DrawerArrowToggle_arrowHeadLength -android.didikee.donate.R$styleable: int[] ActionMode -wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_alpha -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_iconSpaceReserved -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid -wangdaye.com.geometricweather.R$attr: int fontProviderFetchTimeout -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_elevation -androidx.appcompat.R$style: int TextAppearance_AppCompat_Large -androidx.drawerlayout.R$style: int Widget_Compat_NotificationActionText -androidx.hilt.work.R$id: int icon -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeAlpha(float) -cyanogenmod.externalviews.KeyguardExternalView: void onAttachedToWindow() -com.google.android.material.R$style: int Base_Widget_AppCompat_ListPopupWindow -androidx.activity.R$id: int async -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitationProbability(java.lang.Float) -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_entryValues -androidx.transition.R$dimen: int notification_main_column_padding_top -com.jaredrummler.android.colorpicker.R$color: int abc_tint_edittext -androidx.appcompat.R$styleable: int TextAppearance_android_textColorHint -com.google.android.material.R$id: int text_input_error_icon -wangdaye.com.geometricweather.R$styleable: int SignInButton_colorScheme -androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context,android.util.AttributeSet) -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int POWER_OFF_ALARM_STATE -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -okhttp3.ConnectionSpec: boolean tls -com.xw.repo.bubbleseekbar.R$attr: int selectableItemBackgroundBorderless -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderFetchTimeout -com.google.android.material.R$style: int Base_Widget_AppCompat_TextView -com.tencent.bugly.crashreport.common.strategy.a: void a(com.tencent.bugly.crashreport.common.strategy.StrategyBean,boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX -cyanogenmod.profiles.ConnectionSettings -com.google.android.material.R$layout: int abc_screen_simple -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -james.adaptiveicon.R$drawable: int abc_textfield_search_material -cyanogenmod.externalviews.KeyguardExternalView$5: void run() -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer apparentTemperature -com.turingtechnologies.materialscrollbar.R$attr: int actionModeBackground -androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onCreate() -androidx.constraintlayout.widget.R$attr: int actionBarSize -androidx.lifecycle.HasDefaultViewModelProviderFactory -androidx.recyclerview.R$layout: int notification_template_part_time -androidx.preference.R$styleable: int ActionMode_background -com.google.android.material.R$styleable: int BottomNavigationView_itemBackground -okhttp3.internal.connection.RealConnection$1: okhttp3.internal.connection.RealConnection this$0 -wangdaye.com.geometricweather.R$attr: int flow_horizontalBias -android.didikee.donate.R$id: int contentPanel -androidx.vectordrawable.R$id: int icon -com.tencent.bugly.proguard.ak: java.util.ArrayList p -com.google.android.material.progressindicator.ProgressIndicator: void setAnimatorDurationScaleProvider(com.google.android.material.progressindicator.AnimatorDurationScaleProvider) -james.adaptiveicon.R$drawable: int abc_ratingbar_indicator_material -okhttp3.Handshake: java.util.List peerCertificates -okhttp3.internal.http2.Hpack$Writer: okhttp3.internal.http2.Header[] dynamicTable -androidx.appcompat.R$styleable: int Spinner_android_dropDownWidth -james.adaptiveicon.R$color: int tooltip_background_light -wangdaye.com.geometricweather.R$string: int abc_searchview_description_submit -okhttp3.Request$Builder: okhttp3.Request$Builder method(java.lang.String,okhttp3.RequestBody) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Badge -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -wangdaye.com.geometricweather.R$menu: int activity_preview_icon -com.tencent.bugly.crashreport.crash.h5.a: java.lang.String i -com.bumptech.glide.integration.okhttp.R$dimen: int notification_small_icon_background_padding -okhttp3.internal.platform.Jdk9Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -io.reactivex.observers.DisposableObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_2 -retrofit2.RequestFactory$Builder: java.lang.reflect.Method method -wangdaye.com.geometricweather.R$id: int transition_current_scene -androidx.vectordrawable.animated.R$dimen: int compat_button_inset_horizontal_material -com.tencent.bugly.proguard.m: long a -androidx.constraintlayout.widget.R$layout: int abc_screen_content_include -com.amap.api.fence.GeoFenceClient: void removeGeoFence() -okhttp3.internal.http.BridgeInterceptor: BridgeInterceptor(okhttp3.CookieJar) -com.turingtechnologies.materialscrollbar.R$id: int spacer -com.turingtechnologies.materialscrollbar.R$attr: int splitTrack -com.google.android.material.R$style: int Widget_MaterialComponents_Slider -wangdaye.com.geometricweather.R$attr: int msb_scrollMode -wangdaye.com.geometricweather.R$styleable: int DialogPreference_negativeButtonText -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_lunar -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sBooleanValidator -cyanogenmod.providers.CMSettings$DelimitedListValidator: java.lang.String mDelimiter -androidx.appcompat.widget.SearchView: void setOnQueryTextListener(androidx.appcompat.widget.SearchView$OnQueryTextListener) -androidx.constraintlayout.widget.R$styleable: int KeyPosition_sizePercent -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.R$attr: int theme -wangdaye.com.geometricweather.R$drawable: int ic_weather_alert -wangdaye.com.geometricweather.R$color: int mtrl_chip_background_color -androidx.legacy.coreutils.R$id: int action_divider -android.didikee.donate.R$color: int primary_dark_material_dark -wangdaye.com.geometricweather.R$dimen: int mtrl_edittext_rectangle_top_offset -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onError(java.lang.Throwable) -androidx.appcompat.widget.AppCompatImageView: void setImageBitmap(android.graphics.Bitmap) -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_verticalDivider -androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_123 -wangdaye.com.geometricweather.R$style: R$style() -androidx.appcompat.resources.R$layout: int custom_dialog -androidx.preference.R$dimen: int notification_media_narrow_margin -androidx.constraintlayout.widget.R$id: int decor_content_parent -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder supportsTlsExtensions(boolean) -okhttp3.CacheControl: okhttp3.CacheControl FORCE_CACHE -wangdaye.com.geometricweather.R$string: int material_slider_range_end -com.google.android.material.R$id: int search_go_btn -androidx.preference.R$styleable: int AppCompatTheme_actionBarTabStyle -okhttp3.Response$Builder -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: CaiYunMainlyResult$BrandInfoBeanXX() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tSea -com.google.android.gms.base.R$string: int common_google_play_services_notification_channel_name -wangdaye.com.geometricweather.db.entities.LocationEntity: float latitude -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_creator -wangdaye.com.geometricweather.R$attr: int colorSecondaryVariant -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_icon -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_toLeftOf -okio.Timeout: okio.Timeout clearDeadline() -okio.ByteString: okio.ByteString toAsciiLowercase() -cyanogenmod.weather.IRequestInfoListener$Stub: int TRANSACTION_onLookupCityRequestCompleted -wangdaye.com.geometricweather.R$string: int common_google_play_services_enable_text -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_recyclerView -androidx.constraintlayout.widget.R$attr: int motionProgress -androidx.constraintlayout.widget.R$attr: int progressBarStyle -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dark -com.jaredrummler.android.colorpicker.R$layout: int abc_screen_toolbar -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowDx -wangdaye.com.geometricweather.R$styleable: int Preference_shouldDisableView -io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dividerHorizontal -wangdaye.com.geometricweather.R$string: int cpv_select -retrofit2.BuiltInConverters$BufferingResponseBodyConverter: okhttp3.ResponseBody convert(okhttp3.ResponseBody) -androidx.appcompat.resources.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius -androidx.viewpager2.R$styleable: int ColorStateListItem_android_alpha -androidx.vectordrawable.R$style: int Widget_Compat_NotificationActionText -com.google.android.material.internal.ScrimInsetsFrameLayout: void setDrawTopInsetForeground(boolean) -io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.SingleSource) -com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(long,java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconDrawable -androidx.constraintlayout.widget.R$id: int jumpToStart -androidx.preference.R$styleable: int AppCompatTheme_actionModeFindDrawable -wangdaye.com.geometricweather.R$dimen: int notification_large_icon_width -com.jaredrummler.android.colorpicker.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_icon_size -wangdaye.com.geometricweather.R$styleable: int Constraint_animate_relativeTo -james.adaptiveicon.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,long,java.util.concurrent.TimeUnit) -okhttp3.internal.cache2.Relay: okio.ByteString PREFIX_DIRTY -androidx.legacy.coreutils.R$id: int info -james.adaptiveicon.R$attr: int actionModeStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ButtonBar -okhttp3.Request$Builder: okhttp3.HttpUrl url -wangdaye.com.geometricweather.R$attr: int bsb_thumb_radius -com.turingtechnologies.materialscrollbar.R$id: int stretch -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowDx -cyanogenmod.hardware.ICMHardwareService$Stub: ICMHardwareService$Stub() -com.jaredrummler.android.colorpicker.R$dimen: int notification_large_icon_width -com.google.android.material.bottomappbar.BottomAppBar: int getLeftInset() -cyanogenmod.externalviews.ExternalViewProviderService: cyanogenmod.externalviews.ExternalViewProviderService$Provider createExternalView(android.os.Bundle) -com.google.android.gms.common.internal.zag -com.jaredrummler.android.colorpicker.R$styleable: int ActionBarLayout_android_layout_gravity -com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_top_mtrl_alpha -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility Visibility -wangdaye.com.geometricweather.R$attr: int errorIconTint -com.google.android.material.R$styleable: int Layout_layout_constraintHeight_max -wangdaye.com.geometricweather.R$styleable: int[] LinearLayoutCompat -cyanogenmod.weather.WeatherInfo$DayForecast$1: java.lang.Object createFromParcel(android.os.Parcel) -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_subMenuArrow -com.tencent.bugly.proguard.y$a: java.io.File a(com.tencent.bugly.proguard.y$a) -com.bumptech.glide.R$integer: R$integer() -androidx.appcompat.R$attr: int dropdownListPreferredItemHeight -androidx.constraintlayout.widget.R$color: int bright_foreground_disabled_material_light -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_29 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_width_minor -okhttp3.MediaType: okhttp3.MediaType parse(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: java.lang.String colorId -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastHorizontalStyle -wangdaye.com.geometricweather.R$dimen: int abc_control_inset_material -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_font -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$color: int material_slider_inactive_tick_marks_color -okhttp3.CertificatePinner$Pin: java.lang.String toString() -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: MpscLinkedQueue$LinkedQueueNode() -wangdaye.com.geometricweather.R$attr: int cardMaxElevation -androidx.cardview.R$color: int cardview_dark_background -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationX -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_hint -com.xw.repo.bubbleseekbar.R$attr: int bsb_is_float_type -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -okhttp3.Cookie: java.lang.String domain -james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlHighlight -androidx.preference.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_removeCustomTileWithTag -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle -okio.Buffer: okio.Buffer writeIntLe(int) -com.tencent.bugly.proguard.n: void a(com.tencent.bugly.proguard.n,int,java.util.List) -wangdaye.com.geometricweather.R$styleable: int SearchView_android_imeOptions -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetBottom -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.R$attr: int thumbStrokeWidth -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: void setValue(java.util.List) -androidx.constraintlayout.widget.R$attr: int paddingTopNoTitle -wangdaye.com.geometricweather.R$color: int weather_source_accu -com.google.android.material.R$dimen: int mtrl_textinput_outline_box_expanded_padding -wangdaye.com.geometricweather.R$attr: int mock_labelBackgroundColor -androidx.vectordrawable.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfPrecipitation -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_borderlessButtonStyle -io.reactivex.Observable: io.reactivex.Observable throttleWithTimeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -retrofit2.Utils$WildcardTypeImpl: int hashCode() -androidx.hilt.work.R$id: int right_side -retrofit2.Platform$Android: java.lang.Object invokeDefaultMethod(java.lang.reflect.Method,java.lang.Class,java.lang.Object,java.lang.Object[]) -cyanogenmod.app.ICMTelephonyManager: boolean isDataConnectionSelectedOnSub(int) -com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.e s -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableDelegateState -cyanogenmod.app.ThemeVersion$ComponentVersion: java.lang.String getName() -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableCompatState -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getRagweedDescription() -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: int getChartBottom() -androidx.hilt.lifecycle.R$id: int actions -com.google.android.material.R$style: int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -androidx.appcompat.R$attr: int switchStyle -android.didikee.donate.R$id: int icon -okhttp3.internal.cache.FaultHidingSink: void write(okio.Buffer,long) -okhttp3.RequestBody$1: void writeTo(okio.BufferedSink) -com.jaredrummler.android.colorpicker.R$style: int Base_AlertDialog_AppCompat_Light -com.google.android.material.R$styleable: int Chip_ensureMinTouchTargetSize -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox -okhttp3.internal.NamedRunnable -androidx.dynamicanimation.R$dimen: int notification_action_text_size -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView -androidx.viewpager.R$id: int forever -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -androidx.loader.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.ChineseCityEntity) -wangdaye.com.geometricweather.R$styleable: int PropertySet_visibilityMode -androidx.preference.R$id: int accessibility_custom_action_30 -okio.GzipSink: GzipSink(okio.Sink) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: java.lang.String Unit -com.amap.api.location.DPoint: boolean equals(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceGroup -androidx.recyclerview.R$dimen: int item_touch_helper_swipe_escape_max_velocity -io.reactivex.Observable: io.reactivex.Observable timeout0(long,java.util.concurrent.TimeUnit,io.reactivex.ObservableSource,io.reactivex.Scheduler) -com.google.android.material.floatingactionbutton.FloatingActionButton: int getRippleColor() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver inner -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$id: int smallLabel -cyanogenmod.app.Profile: java.util.ArrayList mSecondaryUuids -androidx.hilt.work.R$attr: int fontStyle -androidx.constraintlayout.widget.R$dimen: int abc_text_size_title_material -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void run() -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_textAppearance -wangdaye.com.geometricweather.R$attr: int checkedIcon -cyanogenmod.app.ProfileGroup: ProfileGroup(java.util.UUID,boolean) -com.jaredrummler.android.colorpicker.R$id: int submenuarrow -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.profiles.StreamSettings$1 -androidx.core.app.CoreComponentFactory -com.xw.repo.bubbleseekbar.R$dimen: int compat_button_inset_horizontal_material -cyanogenmod.providers.CMSettings$Global: java.lang.String getString(android.content.ContentResolver,java.lang.String) -android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -com.google.android.material.R$attr: int dropdownListPreferredItemHeight -androidx.appcompat.R$id: int action_menu_presenter -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_item_min_width -okhttp3.CacheControl: boolean noCache() -wangdaye.com.geometricweather.R$layout: int widget_clock_day_details -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderAuthority -com.jaredrummler.android.colorpicker.R$attr: int subtitleTextColor -androidx.appcompat.R$styleable: int MenuItem_android_checkable -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegments(java.lang.String,boolean) -androidx.constraintlayout.widget.R$attr: int maxVelocity -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf -com.autonavi.aps.amapapi.model.AMapLocationServer: long o -com.google.android.material.R$attr: int drawableSize -okio.ForwardingTimeout: okio.ForwardingTimeout setDelegate(okio.Timeout) -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int INSTALLED -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme_Light -cyanogenmod.profiles.AirplaneModeSettings: int mValue -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean unRegisterThermalListener(cyanogenmod.hardware.IThermalListenerCallback) -wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_summary -io.reactivex.Observable: io.reactivex.Completable ignoreElements() -retrofit2.KotlinExtensions: java.lang.Object create(retrofit2.Retrofit) -androidx.constraintlayout.widget.R$id: int line1 -androidx.preference.R$styleable: int PreferenceTheme_preferenceTheme -com.google.android.material.R$styleable: int ConstraintSet_android_minHeight -com.google.android.material.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_title -com.google.android.material.R$attr: int materialTimePickerTheme -android.didikee.donate.R$style: int Base_Theme_AppCompat -okio.ForwardingTimeout: long timeoutNanos() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_DropDownItem_Spinner -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_textAppearance -com.google.android.material.R$anim: int abc_grow_fade_in_from_bottom -com.google.android.material.R$attr: int trackColorActive -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean isEmpty() -cyanogenmod.weather.WeatherInfo: int mWindSpeedUnit -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String STATUSBAR_URI -okhttp3.internal.http2.Hpack$Reader: int evictToRecoverBytes(int) -androidx.constraintlayout.widget.R$attr: int touchAnchorId -androidx.appcompat.R$drawable: int abc_text_select_handle_middle_mtrl_light -okhttp3.internal.http2.Http2Connection$2: Http2Connection$2(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,long) -androidx.appcompat.R$attr: int listPreferredItemPaddingStart -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind -wangdaye.com.geometricweather.R$string: int life_details -org.greenrobot.greendao.AbstractDao: void deleteAll() -com.google.android.material.R$styleable: int NavigationView_shapeAppearance -androidx.recyclerview.R$drawable: int notification_bg_low -androidx.preference.R$style: int Base_Theme_AppCompat_Dialog -androidx.constraintlayout.widget.R$id: int custom -cyanogenmod.providers.CMSettings$DelimitedListValidator: boolean mAllowEmptyList -androidx.recyclerview.widget.LinearLayoutManager -com.tencent.bugly.proguard.y: boolean m -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode CLEAR -wangdaye.com.geometricweather.R$id: int end -com.turingtechnologies.materialscrollbar.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_focused_alpha -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long serialVersionUID -wangdaye.com.geometricweather.R$id: int tabMode -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -androidx.lifecycle.LifecycleRegistry$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$State -androidx.dynamicanimation.R$id: int icon_group -androidx.appcompat.widget.AppCompatTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -androidx.appcompat.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: long updatedOn -androidx.fragment.R$dimen: int notification_content_margin_start -com.google.android.material.R$style: int Widget_AppCompat_SearchView -androidx.recyclerview.R$id: int accessibility_custom_action_5 -com.turingtechnologies.materialscrollbar.R$color: int mtrl_fab_ripple_color -retrofit2.Platform$Android: java.util.concurrent.Executor defaultCallbackExecutor() -com.jaredrummler.android.colorpicker.R$anim: int abc_popup_enter -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setOverlay(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfIce -com.google.android.material.R$styleable: int BottomAppBar_hideOnScroll -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerColor -androidx.viewpager2.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.R$attr: int thickness -okhttp3.internal.ws.WebSocketWriter$FrameSink: void close() -com.turingtechnologies.materialscrollbar.R$attr: int windowActionBarOverlay -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_16dp -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitation(java.lang.Float) -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display1 -com.google.android.material.R$drawable: int notification_bg_low_normal -okhttp3.internal.connection.RouteException: java.io.IOException getLastConnectException() -androidx.fragment.app.FragmentManagerImpl -wangdaye.com.geometricweather.R$attr: int onNegativeCross -com.google.android.material.R$styleable: int TextInputLayout_android_enabled -com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat -okhttp3.internal.Util: java.util.List immutableList(java.util.List) -okhttp3.Interceptor$Chain: okhttp3.Connection connection() -com.google.android.material.R$styleable: int[] NavigationView -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Item -wangdaye.com.geometricweather.R$xml: int perference_appearance -androidx.preference.R$drawable: int abc_ic_go_search_api_material -com.google.android.material.R$string: int mtrl_picker_a11y_next_month -okhttp3.OkHttpClient$1: void put(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) -com.bumptech.glide.R$styleable: int GradientColor_android_centerX -com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_icon -androidx.appcompat.R$id: int select_dialog_listview -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit getInstance(java.lang.String) -com.google.android.material.R$styleable: int MotionLayout_layoutDescription -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabView -com.turingtechnologies.materialscrollbar.R$color: int button_material_light -james.adaptiveicon.R$styleable: int AppCompatTheme_selectableItemBackground -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String mslp -com.google.android.material.navigation.NavigationView: android.view.MenuInflater getMenuInflater() -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingRight -wangdaye.com.geometricweather.R$id: int selection_type -retrofit2.converter.gson.GsonResponseBodyConverter -cyanogenmod.themes.ThemeChangeRequest: cyanogenmod.themes.ThemeChangeRequest$RequestType mRequestType -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setScaleX(float) -wangdaye.com.geometricweather.remoteviews.config.AbstractWidgetConfigActivity: AbstractWidgetConfigActivity() -androidx.constraintlayout.utils.widget.ImageFilterView -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_splitTrack -cyanogenmod.themes.ThemeManager: java.lang.String TAG -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: void run() -android.didikee.donate.R$styleable: int AppCompatTextView_drawableRightCompat -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: java.lang.Float max -james.adaptiveicon.R$anim: int abc_slide_out_top -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void subscribe(io.reactivex.Observer) -com.google.android.material.R$styleable: int AppCompatTextView_drawableLeftCompat -com.xw.repo.bubbleseekbar.R$style: int Platform_V25_AppCompat_Light -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_default -cyanogenmod.profiles.RingModeSettings: void setOverride(boolean) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_subtitle -androidx.hilt.lifecycle.R$styleable: int Fragment_android_id -androidx.appcompat.R$attr: int paddingStart -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetStart -com.tencent.bugly.crashreport.common.info.PlugInBean: PlugInBean(java.lang.String,java.lang.String,java.lang.String) -androidx.appcompat.R$styleable: int SwitchCompat_switchTextAppearance -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleGravity(int) -com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipBackgroundColor() -com.google.android.material.R$id: int customPanel -wangdaye.com.geometricweather.R$animator -com.google.android.material.R$styleable: int KeyAttribute_android_transformPivotY -wangdaye.com.geometricweather.R$attr: int collapsedSize -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_112 -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_hideMotionSpec -com.google.android.material.slider.BaseSlider: int getActiveThumbIndex() -android.didikee.donate.R$layout: int notification_template_part_chronometer -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(okhttp3.HttpUrl) -wangdaye.com.geometricweather.R$string: int material_clock_toggle_content_description -com.google.android.material.R$styleable: int[] ClockFaceView -james.adaptiveicon.R$drawable: int abc_list_selector_background_transition_holo_light -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: AccuLocationResult$GeoPosition() -retrofit2.Utils: java.lang.RuntimeException methodError(java.lang.reflect.Method,java.lang.String,java.lang.Object[]) -com.turingtechnologies.materialscrollbar.R$id: int container -okhttp3.internal.http2.Http2Reader: void readSettings(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -com.google.android.material.slider.RangeSlider$RangeSliderState: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status valueOf(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: AccuCurrentResult$Visibility() -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_rippleColor -okhttp3.CipherSuite: java.lang.String javaName() -com.google.android.material.R$styleable: int[] AnimatedStateListDrawableItem -wangdaye.com.geometricweather.R$attr: int actionMenuTextColor -io.reactivex.Observable: io.reactivex.Observable unsubscribeOn(io.reactivex.Scheduler) -androidx.constraintlayout.widget.R$attr: int dividerVertical -wangdaye.com.geometricweather.R$color: int colorPrimary -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_positiveButtonText -com.turingtechnologies.materialscrollbar.R$id: int filled -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintAnimationEnabled -androidx.constraintlayout.widget.R$attr: int submitBackground -androidx.viewpager.R$attr: R$attr() -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_submit -retrofit2.ParameterHandler$Path: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.jaredrummler.android.colorpicker.R$attr: int titleTextColor -io.reactivex.Observable: io.reactivex.Observable retry(long,io.reactivex.functions.Predicate) -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_singleChoiceItemLayout -android.didikee.donate.R$styleable: int PopupWindow_android_popupAnimationStyle -android.didikee.donate.R$styleable: int[] PopupWindowBackgroundState -androidx.preference.R$styleable: int SwitchPreference_android_summaryOn -androidx.swiperefreshlayout.R$id: int line1 -com.xw.repo.bubbleseekbar.R$anim: int abc_tooltip_exit -com.google.android.material.R$animator: int mtrl_extended_fab_change_size_expand_motion_spec -com.tencent.bugly.crashreport.crash.anr.b: void b() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconGravity -com.google.android.material.button.MaterialButton: int getInsetTop() -cyanogenmod.providers.CMSettings$Secure: java.lang.String PROTECTED_COMPONENTS -cyanogenmod.providers.CMSettings$Secure: java.lang.String CM_SETUP_WIZARD_COMPLETED -androidx.work.impl.WorkManagerInitializer: WorkManagerInitializer() -androidx.constraintlayout.widget.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -androidx.legacy.coreutils.R$drawable: int notify_panel_notification_icon_bg -okhttp3.Cache$CacheRequestImpl$1: okhttp3.Cache$CacheRequestImpl this$1 -com.jaredrummler.android.colorpicker.R$styleable: int Preference_allowDividerAbove -io.reactivex.internal.schedulers.ScheduledDirectTask -james.adaptiveicon.R$style: int Platform_V21_AppCompat_Light -wangdaye.com.geometricweather.R$id: int path -wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_android_src -androidx.appcompat.R$color: int abc_search_url_text_normal -androidx.preference.R$layout: int abc_alert_dialog_title_material -androidx.vectordrawable.R$color: R$color() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: long serialVersionUID -okhttp3.Address: Address(java.lang.String,int,okhttp3.Dns,javax.net.SocketFactory,javax.net.ssl.SSLSocketFactory,javax.net.ssl.HostnameVerifier,okhttp3.CertificatePinner,okhttp3.Authenticator,java.net.Proxy,java.util.List,java.util.List,java.net.ProxySelector) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: int getStatus() -com.turingtechnologies.materialscrollbar.R$id: int fill -okhttp3.Request$Builder: okhttp3.Request$Builder header(java.lang.String,java.lang.String) -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status[] values() -androidx.lifecycle.LifecycleRegistry: androidx.arch.core.internal.FastSafeIterableMap mObserverMap -com.google.android.material.R$styleable: int Badge_horizontalOffset -io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable,int,int) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Caption -wangdaye.com.geometricweather.R$color: int material_deep_teal_200 -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_height_material -james.adaptiveicon.R$attr: int contentInsetEnd -com.google.android.material.R$style: int ShapeAppearanceOverlay_Cut -com.xw.repo.bubbleseekbar.R$attr: int actionDropDownStyle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$OnFlingListener getOnFlingListener() -androidx.hilt.work.R$id: int tag_accessibility_heading -androidx.preference.R$id: int info -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_PARSER -com.xw.repo.bubbleseekbar.R$id: int progress_circular -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_unregisterWeatherServiceProviderChangeListener -wangdaye.com.geometricweather.R$id: int widget_day_icon -com.google.android.material.R$attr: int shapeAppearanceSmallComponent -james.adaptiveicon.R$attr: int showTitle -okhttp3.CertificatePinner$Builder: java.util.List pins -com.xw.repo.bubbleseekbar.R$dimen: int abc_alert_dialog_button_bar_height -com.bumptech.glide.R$drawable: int notification_template_icon_low_bg -io.reactivex.Observable: io.reactivex.Single last(java.lang.Object) -androidx.appcompat.widget.AppCompatImageButton: void setBackgroundResource(int) -james.adaptiveicon.R$styleable: int ColorStateListItem_alpha -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_orientation -cyanogenmod.app.CustomTile$1: cyanogenmod.app.CustomTile[] newArray(int) -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Surface -androidx.work.R$string: R$string() -androidx.vectordrawable.animated.R$color: R$color() -androidx.preference.R$drawable: int abc_textfield_search_default_mtrl_alpha -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPublishTime(long) -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_toId -com.google.android.material.navigation.NavigationView: void setItemIconPaddingResource(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: java.lang.String Unit -com.xw.repo.bubbleseekbar.R$attr: int actionViewClass -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon -wangdaye.com.geometricweather.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -okhttp3.HttpUrl: okhttp3.HttpUrl resolve(java.lang.String) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int INTERRUPTING -androidx.preference.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -androidx.core.widget.ContentLoadingProgressBar: ContentLoadingProgressBar(android.content.Context) -okhttp3.CipherSuite$1 -okhttp3.CertificatePinner: void check(java.lang.String,java.util.List) -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_MODE -androidx.vectordrawable.animated.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundNormalUpdateService: Hilt_ForegroundNormalUpdateService() -io.reactivex.internal.subscriptions.DeferredScalarSubscription: void request(long) -com.xw.repo.bubbleseekbar.R$id: int listMode -androidx.constraintlayout.widget.R$attr: int flow_lastVerticalBias -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_delete_shortcut_label -android.didikee.donate.R$bool -cyanogenmod.externalviews.KeyguardExternalView$3: KeyguardExternalView$3(cyanogenmod.externalviews.KeyguardExternalView,int,int,int,int,boolean,android.graphics.Rect) -androidx.drawerlayout.R$styleable: int ColorStateListItem_android_alpha -com.tencent.bugly.proguard.f: java.lang.String d -james.adaptiveicon.R$styleable: int Toolbar_titleMargins -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onComplete() -com.google.android.material.R$string: int abc_toolbar_collapse_description -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontStyle -androidx.hilt.work.R$id: int accessibility_custom_action_12 -com.turingtechnologies.materialscrollbar.R$id: int topPanel -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: FlowableCreate$BaseEmitter(org.reactivestreams.Subscriber) -retrofit2.OkHttpCall$1 -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -wangdaye.com.geometricweather.R$layout: int widget_clock_day_temp -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: int UnitType -androidx.constraintlayout.helper.widget.Flow: void setPaddingRight(int) -com.amap.api.location.AMapLocationClientOption: AMapLocationClientOption(android.os.Parcel) -androidx.loader.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.appcompat.R$styleable: int AppCompatTextView_android_textAppearance -okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory sslSocketFactory -androidx.viewpager2.R$attr: int fastScrollHorizontalTrackDrawable -androidx.vectordrawable.animated.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.R$styleable: int MenuItem_android_orderInCategory -android.didikee.donate.R$id: int text2 -wangdaye.com.geometricweather.R$dimen: int fastscroll_margin -com.tencent.bugly.crashreport.crash.h5.a: long k -com.google.android.material.R$attr: int titleMarginEnd -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endX -com.google.android.material.R$id: int accessibility_custom_action_2 -cyanogenmod.weather.CMWeatherManager: android.os.Handler access$100(cyanogenmod.weather.CMWeatherManager) -wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -androidx.viewpager2.R$attr: int alpha -wangdaye.com.geometricweather.R$styleable: int Preference_allowDividerBelow -wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentWidth -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_icon -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -android.didikee.donate.R$attr -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BACKGROUND -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_iconTint -wangdaye.com.geometricweather.R$drawable: int weather_sleet_3 -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: long serialVersionUID -com.jaredrummler.android.colorpicker.R$color: int material_grey_50 -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.preference.R$style: int Base_Theme_AppCompat_DialogWhenLarge -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_DOCUMENT -wangdaye.com.geometricweather.R$id: int mtrl_calendar_frame -com.google.android.gms.common.internal.zau: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_background -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void drain() -androidx.preference.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -james.adaptiveicon.R$dimen: int hint_alpha_material_light -wangdaye.com.geometricweather.R$attr: int layout_constraintTop_toBottomOf -wangdaye.com.geometricweather.R$string: int expand_button_title -com.google.android.material.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -retrofit2.Utils: java.lang.reflect.Type[] EMPTY_TYPE_ARRAY -com.google.android.material.R$styleable: int Layout_barrierAllowsGoneWidgets -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec COMPATIBLE_TLS -okio.Segment: okio.Segment unsharedCopy() -io.reactivex.internal.disposables.ArrayCompositeDisposable: void dispose() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul24H -androidx.appcompat.R$styleable: int AppCompatTheme_actionMenuTextColor -retrofit2.Retrofit$Builder: Retrofit$Builder(retrofit2.Retrofit) -androidx.preference.R$id: int blocking -com.google.android.material.R$dimen: int notification_right_icon_size -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyleSmall -com.google.android.material.R$color: int bright_foreground_material_light -com.google.android.material.R$style: int Platform_MaterialComponents -com.tencent.bugly.crashreport.crash.c: void a(long) -androidx.vectordrawable.R$id: int accessibility_custom_action_21 -retrofit2.ParameterHandler$Path: java.lang.reflect.Method method -wangdaye.com.geometricweather.R$string: int widget_multi_city -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: long serialVersionUID -cyanogenmod.weather.CMWeatherManager$1$1: cyanogenmod.weather.CMWeatherManager$1 this$1 -cyanogenmod.weather.WeatherLocation$1: WeatherLocation$1() -androidx.swiperefreshlayout.R$id: int notification_main_column -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setUnit(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getBrandId() -android.didikee.donate.R$style: R$style() -com.google.android.material.R$attr: int region_widthLessThan -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: java.lang.String getActiveWeatherServiceProviderLabel() -androidx.constraintlayout.widget.R$attr: int queryHint -com.bumptech.glide.R$layout: int notification_action -com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_PrimarySurface -androidx.lifecycle.extensions.R$anim: int fragment_fade_exit -androidx.appcompat.resources.R$id: int accessibility_custom_action_26 -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getWindChillTemperature() -androidx.lifecycle.LifecycleDispatcher: void init(android.content.Context) -androidx.constraintlayout.widget.R$attr: int titleMarginEnd -androidx.hilt.R$dimen: int compat_button_inset_vertical_material -cyanogenmod.media.MediaRecorder$AudioSource: MediaRecorder$AudioSource() -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontWeight -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_android_orderingFromXml -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Time -okhttp3.internal.http2.Http2Reader: void close() -androidx.lifecycle.OnLifecycleEvent -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_toBottomOf -james.adaptiveicon.R$id: int textSpacerNoButtons -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customFloatValue -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) -com.google.android.material.R$color: int material_blue_grey_950 -okhttp3.internal.connection.RealConnection$1: RealConnection$1(okhttp3.internal.connection.RealConnection,boolean,okio.BufferedSource,okio.BufferedSink,okhttp3.internal.connection.StreamAllocation) -com.google.android.material.slider.BaseSlider: void addOnSliderTouchListener(com.google.android.material.slider.BaseOnSliderTouchListener) -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItemSmall -wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -wangdaye.com.geometricweather.R$color: int mtrl_chip_ripple_color -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontStyle -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: int capacityHint -cyanogenmod.app.LiveLockScreenInfo$Builder: LiveLockScreenInfo$Builder() -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setNeedAddress(boolean) -okhttp3.Address: java.util.List connectionSpecs() -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Today -com.google.android.material.R$attr: int prefixTextColor -com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.an a(byte[],boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_checkboxStyle -wangdaye.com.geometricweather.R$color: int highlighted_text_material_dark -com.google.android.gms.common.api.AvailabilityException: java.lang.String getMessage() -androidx.work.ArrayCreatingInputMerger -com.google.android.material.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_button_material -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer bulletinCote -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -androidx.loader.R$id: int text -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionBarOverlay -com.google.android.material.R$dimen: int abc_text_size_menu_material -com.google.android.gms.common.internal.DowngradeableSafeParcel -android.didikee.donate.R$attr: int track -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: java.lang.String Unit -io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit) -com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.RealConnection connection -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_dropdownPreferenceStyle -wangdaye.com.geometricweather.R$attr: int startIconContentDescription -androidx.appcompat.widget.AppCompatImageView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.tencent.bugly.proguard.s: java.util.Map a -androidx.appcompat.R$styleable: int MenuView_android_itemBackground -com.tencent.bugly.proguard.z: boolean a(java.lang.Runnable) -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: void onWeatherServiceProviderChanged(java.lang.String) -androidx.hilt.R$styleable: int GradientColor_android_gradientRadius -com.turingtechnologies.materialscrollbar.R$color: int mtrl_text_btn_text_color_selector -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_transitionPathRotate -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature WindChillTemperature -wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_list -androidx.activity.R$id: int action_divider -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String providerId -com.google.android.material.R$styleable: int ViewBackgroundHelper_backgroundTint -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -okhttp3.CacheControl: boolean noStore -cyanogenmod.themes.ThemeManager$1$2: void run() -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Writer writer -android.support.v4.os.ResultReceiver: boolean mLocal -androidx.appcompat.R$styleable: int MenuGroup_android_checkableBehavior -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setWeatherLocation(cyanogenmod.weather.WeatherLocation) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_textAllCaps -android.didikee.donate.R$attr: int windowFixedWidthMinor -com.google.android.material.R$styleable: int KeyCycle_transitionPathRotate -com.jaredrummler.android.colorpicker.R$attr: int fontProviderQuery -com.bumptech.glide.Registry$NoSourceEncoderAvailableException -androidx.appcompat.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -androidx.lifecycle.ReportFragment: void dispatch(androidx.lifecycle.Lifecycle$Event) -com.turingtechnologies.materialscrollbar.R$attr: int cardElevation -com.turingtechnologies.materialscrollbar.R$attr: int errorEnabled -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object getKey(java.lang.Object) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setOnChildScrollUpCallback(androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnChildScrollUpCallback) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionBar -androidx.cardview.R$dimen -okio.DeflaterSink: java.lang.String toString() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$style: int Platform_V21_AppCompat_Light -androidx.appcompat.app.WindowDecorActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: double Value -com.google.android.material.R$color: int switch_thumb_normal_material_dark -androidx.lifecycle.ViewModelStore: void put(java.lang.String,androidx.lifecycle.ViewModel) -com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyleSmall -okio.Pipe$PipeSink: okio.Timeout timeout -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableLeft -androidx.customview.R$styleable: int GradientColor_android_startColor -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_behavior -wangdaye.com.geometricweather.R$id: int treeValue -wangdaye.com.geometricweather.R$string: int mtrl_picker_day_of_week_column_header -androidx.constraintlayout.widget.R$styleable: int Toolbar_navigationContentDescription -cyanogenmod.externalviews.ExternalView$7 -com.google.android.material.slider.RangeSlider: int getTrackHeight() -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.R$attr: int actionBarTabTextStyle -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowMinWidthMinor -wangdaye.com.geometricweather.R$styleable: int Chip_checkedIcon -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onLockscreenSlideOffsetChanged(float) -okhttp3.Cache$1: okhttp3.Cache this$0 -androidx.constraintlayout.widget.R$attr: int backgroundTint -wangdaye.com.geometricweather.R$string: int mini_temp -cyanogenmod.app.CustomTile$ExpandedStyle: cyanogenmod.app.CustomTile$ExpandedItem[] expandedItems -com.turingtechnologies.materialscrollbar.R$dimen: int notification_small_icon_size_as_large -com.turingtechnologies.materialscrollbar.R$attr: int dialogPreferredPadding -androidx.fragment.app.SuperNotCalledException: SuperNotCalledException(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constrainedWidth -android.didikee.donate.R$styleable: int AppCompatTheme_actionMenuTextAppearance -com.google.android.material.R$color: int button_material_dark -com.google.android.material.R$dimen: int mtrl_btn_text_size -wangdaye.com.geometricweather.R$attr: int indicatorCornerRadius -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerX -com.turingtechnologies.materialscrollbar.R$id: int search_button -com.google.android.material.R$attr: int headerLayout -wangdaye.com.geometricweather.background.polling.permanent.observer.TimeObserverService: TimeObserverService() -okhttp3.internal.cache.DiskLruCache: java.io.File getDirectory() -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -com.google.android.material.R$attr: int constraintSetEnd -retrofit2.BuiltInConverters -com.google.android.material.R$attr: int titleMarginStart -james.adaptiveicon.R$layout: R$layout() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_pivotX -androidx.appcompat.widget.SwitchCompat: int getCompoundPaddingLeft() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_middle_mtrl_light -okio.BufferedSink: okio.BufferedSink write(byte[],int,int) -wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context,android.util.AttributeSet) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_LAUNCH_VALIDATOR -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.coordinatorlayout.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents -wangdaye.com.geometricweather.R$id: int dragEnd -retrofit2.ParameterHandler$Path: int p -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerNext(java.lang.Object) -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_left_mtrl_light -androidx.coordinatorlayout.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$id: int normal -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_dither -wangdaye.com.geometricweather.db.entities.DaoMaster: void dropAllTables(org.greenrobot.greendao.database.Database,boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_headerBackground -com.xw.repo.bubbleseekbar.R$attr: int selectableItemBackground -androidx.preference.R$styleable: int MenuView_android_itemIconDisabledAlpha -wangdaye.com.geometricweather.R$drawable: int weather_rain_2 -androidx.hilt.work.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.R$id: int container_main_footer_editButton -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Alert_Bridge -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setBrandId(java.lang.String) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmPic1 -james.adaptiveicon.R$style: int Animation_AppCompat_Dialog -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -com.google.android.material.snackbar.SnackbarContentLayout: SnackbarContentLayout(android.content.Context) -okhttp3.internal.http2.Http2Connection$7 -com.baidu.location.e.l$b: java.lang.String b(com.baidu.location.e.l$b) -com.google.android.material.R$styleable: int TextAppearance_android_shadowDx -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_collapsed -androidx.hilt.work.R$drawable: R$drawable() -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_startAngle -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_ttcIndex -androidx.preference.R$drawable: int abc_cab_background_top_material -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int describeContents() -android.didikee.donate.R$styleable: int Toolbar_contentInsetEndWithActions -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: int UnitType -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTypeface(android.graphics.Typeface) -wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_background_color -wangdaye.com.geometricweather.R$drawable: int widget_clock_day_week -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: CustomTileListenerService$ICustomTileListenerWrapper(cyanogenmod.app.CustomTileListenerService) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressViewStartOffset() -androidx.constraintlayout.widget.R$styleable: int OnSwipe_onTouchUp -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet,int) -androidx.fragment.R$id: int tag_transition_group -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function7) -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setThunderstormPrecipitationProbability(java.lang.Float) -james.adaptiveicon.R$styleable: int Toolbar_android_minHeight -androidx.recyclerview.R$drawable: int notification_bg_normal_pressed -android.didikee.donate.R$dimen: int abc_button_padding_horizontal_material -com.jaredrummler.android.colorpicker.R$layout: int abc_action_mode_bar -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler -androidx.work.impl.utils.futures.AbstractFuture: androidx.work.impl.utils.futures.AbstractFuture$Listener listeners -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean cancelled -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_visible -androidx.coordinatorlayout.R$id: int accessibility_custom_action_0 -cyanogenmod.app.CMContextConstants: java.lang.String CM_LIVE_LOCK_SCREEN_SERVICE -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country Country -com.google.android.material.R$dimen: int mtrl_snackbar_message_margin_horizontal -com.turingtechnologies.materialscrollbar.R$attr: int hoveredFocusedTranslationZ -androidx.dynamicanimation.R$drawable: int notification_action_background -okhttp3.Response: boolean isRedirect() -retrofit2.Utils: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) -com.xw.repo.bubbleseekbar.R$attr: int bsb_show_thumb_text -okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot removeSnapshot -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -io.reactivex.internal.util.EmptyComponent: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIcon -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: int TRANSACTION_getSuggestions -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap -com.xw.repo.bubbleseekbar.R$layout: int notification_template_icon_group -android.didikee.donate.R$attr: int actionModeCopyDrawable -com.tencent.bugly.proguard.u: byte[] b(byte[]) -com.jaredrummler.android.colorpicker.R$id: int start -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getRequiredWidth() -androidx.coordinatorlayout.R$id: int text -wangdaye.com.geometricweather.R$animator: int start_shine_1 -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_labelVisibilityMode -com.jaredrummler.android.colorpicker.R$attr: int actionModeShareDrawable -androidx.preference.EditTextPreference$SavedState -androidx.lifecycle.ClassesInfoCache -com.xw.repo.bubbleseekbar.R$id: int alertTitle -androidx.activity.R$styleable: int FontFamilyFont_font -io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer,io.reactivex.functions.Consumer) -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setLabel(int) -wangdaye.com.geometricweather.R$attr: int materialButtonStyle -wangdaye.com.geometricweather.R$styleable: int[] AppBarLayout -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_lookupCity -com.google.android.material.R$id: int fade -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float so2 -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_activated_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_summaryOff -androidx.preference.R$style: int TextAppearance_AppCompat_Small -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall this$0 -androidx.preference.R$attr: int closeIcon -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_DrawerArrowToggle -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.preference.PreferenceManager -wangdaye.com.geometricweather.R$styleable: int[] MaterialShape -com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String b -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.lang.Object enterTransform(java.lang.Object) -androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context) -com.turingtechnologies.materialscrollbar.R$id: int mtrl_internal_children_alpha_tag -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup -androidx.preference.R$style: int Base_V22_Theme_AppCompat -wangdaye.com.geometricweather.R$layout: int abc_action_mode_close_item_material -androidx.lifecycle.ViewModelStores: ViewModelStores() -wangdaye.com.geometricweather.R$color: int colorLine_light -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display3 -cyanogenmod.app.Profile$ProfileTrigger: cyanogenmod.app.Profile$ProfileTrigger fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -android.didikee.donate.R$bool: int abc_action_bar_embed_tabs -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$string: R$string() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float ceiling -cyanogenmod.app.CustomTile$Builder: int mIcon -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int ON_NEXT -androidx.appcompat.R$drawable: int abc_ic_clear_material -com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.a b -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableLeftCompat -androidx.loader.R$color -com.jaredrummler.android.colorpicker.R$attr: int shouldDisableView -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: float getSpeed(float) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -com.amap.api.location.AMapLocation: int LOCATION_TYPE_SAME_REQ -wangdaye.com.geometricweather.R$styleable: int MenuItem_actionProviderClass -com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean i -androidx.drawerlayout.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: java.lang.Integer min -com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabStyle -com.google.android.material.button.MaterialButtonToggleGroup: int getLastVisibleChildIndex() -cyanogenmod.profiles.BrightnessSettings: void readFromParcel(android.os.Parcel) -androidx.appcompat.R$drawable: int abc_popup_background_mtrl_mult -com.google.android.material.R$styleable: int ConstraintSet_android_visibility -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startY -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void request(long) -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayWeekProvider -okio.InflaterSource: boolean closed -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_3DES_EDE_CBC_SHA -com.bumptech.glide.load.engine.GlideException: long serialVersionUID -com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_chainStyle -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onAttach_0 -androidx.constraintlayout.widget.R$attr: int motionDebug -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node tail -com.google.android.material.R$attr: int tabMaxWidth -retrofit2.adapter.rxjava2.CallExecuteObservable: retrofit2.Call originalCall -androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_material -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setEncodedQueryParameter(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$color: int notification_background_l -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onError(java.lang.Throwable) -com.google.android.material.R$styleable: int NavigationView_itemHorizontalPadding -okhttp3.internal.connection.RouteSelector$Selection: java.util.List routes -com.tencent.bugly.CrashModule: com.tencent.bugly.CrashModule e -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.util.Date getDate() -com.google.android.gms.common.internal.zag: zag(com.google.android.gms.common.api.internal.OnConnectionFailedListener) -com.google.android.material.R$attr: int errorIconDrawable -cyanogenmod.weatherservice.IWeatherProviderService: void cancelRequest(int) -androidx.preference.R$dimen: int notification_main_column_padding_top -cyanogenmod.app.ProfileGroup: void setSoundMode(cyanogenmod.app.ProfileGroup$Mode) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStartPadding -com.google.android.material.R$attr: int cornerSizeBottomRight -retrofit2.BuiltInConverters$UnitResponseBodyConverter: BuiltInConverters$UnitResponseBodyConverter() -io.reactivex.internal.subscriptions.BasicQueueSubscription: java.lang.Object poll() -com.google.android.material.R$attr: int actionModePopupWindowStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -wangdaye.com.geometricweather.R$drawable: int flag_de -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setValue(java.util.List) -cyanogenmod.providers.CMSettings$Secure: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) -com.google.android.material.R$attr: int touchAnchorSide -cyanogenmod.app.ProfileGroup: android.net.Uri mSoundOverride -com.github.rahatarmanahmed.cpv.R$styleable: int[] CircularProgressView -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void drainFused() -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_12 -wangdaye.com.geometricweather.R$attr: int constraint_referenced_ids -okhttp3.internal.cache2.Relay: java.lang.Thread upstreamReader -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void drainLoop() -io.reactivex.Observable: io.reactivex.Observable timeInterval(io.reactivex.Scheduler) -cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener: void onWeatherServiceProviderChanged(java.lang.String) -com.google.android.material.R$dimen: int design_snackbar_background_corner_radius -wangdaye.com.geometricweather.remoteviews.config.Hilt_DailyTrendWidgetConfigActivity: Hilt_DailyTrendWidgetConfigActivity() -com.google.android.material.R$attr: int color -com.google.gson.LongSerializationPolicy$2: LongSerializationPolicy$2(java.lang.String,int) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onComplete() -androidx.constraintlayout.widget.R$string: int abc_searchview_description_query -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -com.xw.repo.bubbleseekbar.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -cyanogenmod.app.CustomTile$ExpandedItem$1: CustomTile$ExpandedItem$1() -wangdaye.com.geometricweather.R$attr: int textInputStyle -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setSize(float) -okhttp3.internal.http2.Http2Connection: boolean access$300(okhttp3.internal.http2.Http2Connection) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_weight -wangdaye.com.geometricweather.R$id: int month_navigation_bar -androidx.appcompat.R$attr: int buttonCompat -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_visibility -okhttp3.Headers: java.lang.String get(java.lang.String[],java.lang.String) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getWeatherKind() -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -com.tencent.bugly.proguard.p: boolean a(int,java.lang.String,byte[],com.tencent.bugly.proguard.o) -com.google.android.material.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.preference.R$styleable: int Toolbar_android_minHeight -androidx.recyclerview.R$drawable: int notification_icon_background -okhttp3.internal.ws.RealWebSocket: void runWriter() -james.adaptiveicon.R$attr: int editTextColor -james.adaptiveicon.R$style -com.google.android.material.R$string: int abc_menu_ctrl_shortcut_label -okhttp3.internal.http.RequestLine -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWetBulbTemperature(java.lang.Integer) -okio.RealBufferedSink$1: void write(int) -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -androidx.activity.R$id: int action_image -androidx.drawerlayout.R$id: int icon_group -com.tencent.bugly.crashreport.common.info.a: java.lang.String e() -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_ON -androidx.appcompat.R$attr: int listPreferredItemHeightSmall -okhttp3.internal.platform.Android10Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -cyanogenmod.externalviews.KeyguardExternalView$8 -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context) -androidx.appcompat.R$attr: int listDividerAlertDialog -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_subtitle_material_toolbar -com.google.android.material.R$styleable: int BottomNavigationView_elevation -com.turingtechnologies.materialscrollbar.R$string: int appbar_scrolling_view_behavior -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getActiveProfile -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabText -okhttp3.internal.http2.Http2Connection: java.util.Set currentPushRequests -okio.RealBufferedSource: okio.Timeout timeout() -androidx.dynamicanimation.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -androidx.preference.R$style: int Widget_AppCompat_ListView_Menu -okhttp3.Handshake: java.security.Principal peerPrincipal() -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginTop() -retrofit2.RequestFactory$Builder: boolean hasBody -io.reactivex.internal.subscribers.DeferredScalarSubscriber -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShrinkMotionSpecResource(int) -wangdaye.com.geometricweather.R$drawable: int ic_github_light -com.tencent.bugly.crashreport.common.info.a: java.lang.Object av -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark -androidx.preference.R$id: int italic -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void clear() -io.reactivex.observers.TestObserver$EmptyObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int PREDISMISSED_STATE -cyanogenmod.app.suggest.IAppSuggestManager: boolean handles(android.content.Intent) -androidx.viewpager2.R$dimen: int notification_content_margin_start -com.jaredrummler.android.colorpicker.R$attr: int buttonStyle -wangdaye.com.geometricweather.R$layout: int widget_text_end -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PRIMARY_COLOR -com.jaredrummler.android.colorpicker.R$attr: int suggestionRowLayout -androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_textLocale -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyBottomLeft -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: java.lang.String Source -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -cyanogenmod.providers.CMSettings$Secure: long getLongForUser(android.content.ContentResolver,java.lang.String,int) -com.tencent.bugly.crashreport.crash.anr.a: java.lang.String d -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endY -com.google.android.gms.common.server.FavaDiagnosticsEntity: android.os.Parcelable$Creator CREATOR -cyanogenmod.externalviews.ExternalView: void onAttachedToWindow() -com.tencent.bugly.crashreport.common.strategy.StrategyBean: long x -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver -com.google.android.material.textfield.TextInputLayout: void setEndIconActivated(boolean) -androidx.fragment.R$attr -com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColor(int) -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeightSmall -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_iconTint -retrofit2.RequestFactory$Builder: boolean isFormEncoded -androidx.swiperefreshlayout.R$dimen: int notification_top_pad_large_text -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windDircStart -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.R$attr: int summaryOn -androidx.appcompat.R$drawable: int abc_ab_share_pack_mtrl_alpha -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar -androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -com.google.android.gms.common.internal.BinderWrapper: android.os.Parcelable$Creator CREATOR -com.tencent.bugly.crashreport.common.info.b: boolean t() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int RainProbability -androidx.dynamicanimation.R$id: int text2 -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationMode getLocationMode() -retrofit2.http.Field: java.lang.String value() -com.turingtechnologies.materialscrollbar.R$id: int ghost_view -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.util.Date EffectiveDate -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionMode -com.google.android.material.R$color: int design_fab_stroke_end_inner_color -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitationProbability -wangdaye.com.geometricweather.R$attr: int drawableRightCompat -com.jaredrummler.android.colorpicker.R$style: int Platform_Widget_AppCompat_Spinner -androidx.hilt.R$styleable: int[] ColorStateListItem -android.didikee.donate.R$color: int foreground_material_light -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActivityChooserView -wangdaye.com.geometricweather.R$style: int Preference_Category_Material -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onError(java.lang.Throwable) -com.google.android.material.R$styleable: int AppBarLayout_expanded -androidx.constraintlayout.widget.R$id: int action_mode_bar_stub -com.google.android.material.R$styleable: int FloatingActionButton_fabCustomSize -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language RUSSIAN -androidx.constraintlayout.widget.R$color: int abc_tint_btn_checkable -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleColor(int) -com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Dialog -com.google.android.material.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_titleTextStyle -androidx.constraintlayout.widget.R$styleable: int MockView_mock_labelBackgroundColor -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -james.adaptiveicon.R$style: int Widget_AppCompat_ListView -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String y -cyanogenmod.weather.RequestInfo: RequestInfo(cyanogenmod.weather.RequestInfo$1) -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.ObservableEmitter emitter -cyanogenmod.profiles.RingModeSettings: java.lang.String getValue() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getCoDesc() -androidx.core.R$attr: int fontProviderPackage -retrofit2.BuiltInConverters$ToStringConverter -retrofit2.BuiltInConverters$StreamingResponseBodyConverter: retrofit2.BuiltInConverters$StreamingResponseBodyConverter INSTANCE -com.tencent.bugly.crashreport.CrashReport: void testNativeCrash() -androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$attr: int borderWidth -com.google.android.material.R$attr: int listPreferredItemHeight -androidx.lifecycle.reactivestreams.R: R() -cyanogenmod.app.IProfileManager$Stub$Proxy: void updateNotificationGroup(android.app.NotificationGroup) -android.didikee.donate.R$drawable: int abc_textfield_search_default_mtrl_alpha -androidx.core.R$attr: int fontWeight -com.google.android.material.R$dimen: int mtrl_calendar_year_horizontal_padding -wangdaye.com.geometricweather.R$string: int action_about -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog -cyanogenmod.weather.WeatherInfo$Builder: boolean isValidTempUnit(int) -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_textAllCaps -wangdaye.com.geometricweather.R$array: int widget_text_colors -androidx.preference.R$attr: int editTextStyle -com.amap.api.location.DPoint$1: java.lang.Object[] newArray(int) -com.google.android.material.R$dimen: int material_emphasis_high_type -androidx.preference.R$styleable: int[] SeekBarPreference -androidx.appcompat.view.menu.ListMenuItemView: ListMenuItemView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.navigation.NavigationView$SavedState -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetEnd -retrofit2.Retrofit$1: retrofit2.Retrofit this$0 -androidx.appcompat.R$attr: int listPreferredItemPaddingRight -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -okhttp3.internal.platform.AndroidPlatform: javax.net.ssl.SSLContext getSSLContext() -cyanogenmod.app.Profile$DozeMode: int ENABLE -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void request(long) -com.tencent.bugly.proguard.ap: java.lang.String e -com.google.android.material.chip.Chip: void setCheckedIconEnabledResource(int) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -wangdaye.com.geometricweather.R$attr: int actionModeBackground -com.google.android.material.textfield.TextInputLayout: void setStartIconTintMode(android.graphics.PorterDuff$Mode) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String opPkg -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_long_text_horizontal_padding -androidx.loader.R$dimen: int notification_right_icon_size -com.turingtechnologies.materialscrollbar.R$attr: int iconStartPadding -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitationDuration() -okio.Buffer: okio.BufferedSink emitCompleteSegments() -androidx.hilt.R$attr: int fontProviderFetchStrategy -com.turingtechnologies.materialscrollbar.R$string: int bottom_sheet_behavior -com.google.android.material.chip.Chip: void setRippleColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_TextView -com.xw.repo.bubbleseekbar.R$attr: int autoSizeMaxTextSize -wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_vertical_2lines -androidx.constraintlayout.widget.R$string: int abc_searchview_description_search -wangdaye.com.geometricweather.R$id: int textSpacerNoTitle -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_keyline -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.R$layout: int material_time_chip -com.xw.repo.bubbleseekbar.R$anim: R$anim() -com.turingtechnologies.materialscrollbar.R$attr: int scrimVisibleHeightTrigger -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -okhttp3.FormBody: void writeTo(okio.BufferedSink) -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitationDuration() -com.jaredrummler.android.colorpicker.R$attr: int adjustable -androidx.constraintlayout.widget.R$id: int customPanel -androidx.hilt.lifecycle.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String Type -com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetBottom -androidx.fragment.app.FragmentTabHost: void setOnTabChangedListener(android.widget.TabHost$OnTabChangeListener) -wangdaye.com.geometricweather.R$attr: int homeLayout -android.didikee.donate.R$color: int abc_secondary_text_material_dark -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_horizontal_padding -com.google.android.material.R$attr: int radioButtonStyle -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_DarkActionBar -okhttp3.CacheControl$Builder: int maxStaleSeconds -okhttp3.internal.connection.StreamAllocation: okhttp3.ConnectionPool connectionPool -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNo2() -okhttp3.internal.http2.Http2Reader: void readPriority(okhttp3.internal.http2.Http2Reader$Handler,int) -androidx.preference.R$attr: int buttonBarButtonStyle -com.google.android.material.R$styleable: int[] ImageFilterView -androidx.work.impl.utils.futures.AbstractFuture$Waiter: java.lang.Thread thread -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionMenuTextColor -okhttp3.Request: okhttp3.CacheControl cacheControl() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Toolbar -com.tencent.bugly.crashreport.common.strategy.a: android.content.Context a(com.tencent.bugly.crashreport.common.strategy.a) -wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_velocityMode -com.google.android.material.R$attr: int indicatorColors -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerError(java.lang.Throwable) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -androidx.hilt.work.R$id: int accessibility_custom_action_19 -com.tencent.bugly.proguard.y: com.tencent.bugly.proguard.y$a a(com.tencent.bugly.proguard.y$a) -okhttp3.internal.ws.WebSocketReader: int opcode -okhttp3.RealCall: okhttp3.internal.http.RetryAndFollowUpInterceptor retryAndFollowUpInterceptor -wangdaye.com.geometricweather.R$string: int feedback_request_location_in_background -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar_Small -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_color -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onComplete() -androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context) -wangdaye.com.geometricweather.R$id: int seekbar -com.turingtechnologies.materialscrollbar.R$color: int ripple_material_light -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Info -okhttp3.Headers: java.util.List values(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_visible -com.google.android.material.R$attr: int navigationIcon -james.adaptiveicon.R$drawable: int abc_list_selector_disabled_holo_light -com.tencent.bugly.proguard.p: java.util.List c(int) -wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_title -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Info -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$ExpandedStyle mExpandedStyle -com.xw.repo.bubbleseekbar.R$id: int async -androidx.appcompat.widget.SwitchCompat: void setTextOff(java.lang.CharSequence) -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_height_material -androidx.vectordrawable.R$id: int accessibility_custom_action_13 -androidx.lifecycle.MediatorLiveData: void onActive() -wangdaye.com.geometricweather.R$layout: int material_clockface_view -com.google.android.material.R$attr: int drawableStartCompat -com.google.android.material.R$attr: int materialCalendarHeaderLayout -androidx.constraintlayout.widget.R$attr: int divider -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_AES_128_CBC_SHA -com.tencent.bugly.proguard.r -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_creator -okhttp3.internal.http2.Http2Reader$ContinuationSource: Http2Reader$ContinuationSource(okio.BufferedSource) -androidx.work.R$style: R$style() -androidx.appcompat.resources.R$styleable: int GradientColor_android_centerX -android.didikee.donate.R$dimen: int abc_floating_window_z -com.google.android.material.textfield.TextInputLayout: int getBoxBackgroundMode() -okhttp3.internal.http1.Http1Codec: java.lang.String readHeaderLine() -retrofit2.RequestBuilder: void addHeader(java.lang.String,java.lang.String) -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory getEdgeEffectFactory() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap -wangdaye.com.geometricweather.R$string: int tag_aqi -com.jaredrummler.android.colorpicker.R$style: int Base_DialogWindowTitle_AppCompat -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float thunderstorm -androidx.constraintlayout.widget.R$color: int secondary_text_default_material_dark -com.google.gson.stream.JsonReader: int PEEKED_LONG -com.google.android.material.R$styleable: int ActionMode_background -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_toRightOf -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.common.basic.models.weather.History -wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonCompat -wangdaye.com.geometricweather.R$id: int container_main_pollen_pager -androidx.drawerlayout.R$id: int line3 -com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontWeight -io.reactivex.internal.subscribers.StrictSubscriber: void onComplete() -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context) -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_colored_material -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -com.turingtechnologies.materialscrollbar.R$layout: int notification_template_custom_big -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_controlBackground -com.google.android.material.R$dimen: int mtrl_btn_letter_spacing -androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -cyanogenmod.app.Profile$NotificationLightMode: int DEFAULT -wangdaye.com.geometricweather.R$anim: int abc_tooltip_enter -android.didikee.donate.R$styleable: int AppCompatTheme_homeAsUpIndicator -androidx.appcompat.widget.AppCompatTextView: android.graphics.PorterDuff$Mode getSupportCompoundDrawablesTintMode() -com.google.android.material.R$attr: int isLightTheme -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type[] getUpperBounds() -james.adaptiveicon.R$styleable: int LinearLayoutCompat_dividerPadding -com.google.android.material.R$attr: int keylines -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getRain() -io.reactivex.internal.subscriptions.DeferredScalarSubscription: DeferredScalarSubscription(org.reactivestreams.Subscriber) -androidx.lifecycle.LiveData: java.lang.Object getValue() -androidx.preference.R$dimen: int abc_action_bar_icon_vertical_padding_material -androidx.preference.R$attr: int enabled -androidx.appcompat.R$dimen: int abc_text_size_display_4_material -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_stroke_width_default -cyanogenmod.util.ColorUtils: double[] sColorTable -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -androidx.preference.R$styleable: int ActionBar_subtitle -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_HUMIDITY -retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.reflect.Type responseType -com.google.android.material.R$id: int accessibility_custom_action_11 -com.google.gson.stream.JsonReader: boolean fillBuffer(int) -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderFetchTimeout -androidx.viewpager.R$dimen: int compat_button_inset_vertical_material -io.reactivex.Observable: io.reactivex.Observable skipWhile(io.reactivex.functions.Predicate) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Small -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_start_icon_margin_end -android.didikee.donate.R$id: int action_bar_root -android.support.v4.os.ResultReceiver$1 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_menu_header_material -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark_normal -okio.BufferedSink: okio.BufferedSink write(okio.Source,long) -androidx.vectordrawable.R$styleable: int FontFamilyFont_font -com.google.android.material.R$styleable: int MaterialButton_android_insetTop -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_AUTO_OUTDOOR_MODE_VALIDATOR -androidx.constraintlayout.motion.widget.MotionHelper: float getProgress() -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTextPadding -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_measureWithLargestChild -com.jaredrummler.android.colorpicker.R$attr: int buttonStyleSmall -okhttp3.internal.http2.Http2Connection$3 -com.github.rahatarmanahmed.cpv.R -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void run() -androidx.transition.R$attr: int ttcIndex -cyanogenmod.app.LiveLockScreenManager: void setLiveLockScreenEnabled(boolean) -androidx.lifecycle.ViewModel: java.lang.Object getTag(java.lang.String) -com.google.android.gms.common.api.GoogleApiClient: void unregisterConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) -wangdaye.com.geometricweather.common.basic.models.weather.Temperature -com.amap.api.fence.PoiItem: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -okhttp3.HttpUrl: java.util.List queryStringToNamesAndValues(java.lang.String) -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Body1 -com.amap.api.location.AMapLocation: boolean A -com.tencent.bugly.proguard.am: java.lang.String u -androidx.drawerlayout.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$id: int widget_day_week_card -androidx.appcompat.R$styleable: int Spinner_android_prompt -androidx.preference.R$id: int home -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicInteger windows -com.google.android.material.R$drawable: int abc_text_select_handle_middle_mtrl_light -wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_height -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingEnd -james.adaptiveicon.R$layout: int abc_list_menu_item_radio -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display3 -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode -com.bumptech.glide.R$style: int Widget_Compat_NotificationActionContainer -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver -androidx.hilt.work.R$id: int tag_transition_group -androidx.appcompat.R$styleable: int ActionBar_contentInsetEnd -cyanogenmod.externalviews.KeyguardExternalView$7 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelMenuListTheme -com.tencent.bugly.crashreport.biz.a: void a() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarItemBackground -com.google.android.material.R$styleable: int Variant_region_widthLessThan -com.google.android.material.R$styleable: int MockView_mock_showDiagonals -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstHorizontalStyle -wangdaye.com.geometricweather.R$attr: int suffixTextAppearance -wangdaye.com.geometricweather.R$attr: int boxStrokeWidthFocused -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getLevel() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableBottom -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType valueOf(java.lang.String) -wangdaye.com.geometricweather.R$id: int up -androidx.appcompat.R$color: int abc_tint_btn_checkable -androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_material_anim -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean recover(java.io.IOException,okhttp3.internal.connection.StreamAllocation,boolean,okhttp3.Request) -com.google.android.material.R$styleable: int Badge_verticalOffset -cyanogenmod.media.MediaRecorder$AudioSource: int HOTWORD -okhttp3.Response: java.util.List challenges() -cyanogenmod.profiles.BrightnessSettings: void setValue(int) -com.jaredrummler.android.colorpicker.R$id: int radio -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_SYSTEM -androidx.appcompat.R$attr: int fontProviderQuery -com.google.android.material.R$styleable: int KeyCycle_motionTarget -wangdaye.com.geometricweather.R$attr: int errorTextAppearance -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_RECENT_BUTTON -cyanogenmod.themes.ThemeManager$2: void onFinishedProcessing(java.lang.String) -io.reactivex.internal.schedulers.ScheduledRunnable: int THREAD_INDEX -androidx.work.impl.utils.futures.AbstractFuture$Failure$1: java.lang.Throwable fillInStackTrace() -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode SUPPRESS -wangdaye.com.geometricweather.R$styleable: int Badge_badgeTextColor -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemBackground -androidx.appcompat.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -androidx.constraintlayout.widget.R$dimen: int abc_list_item_padding_horizontal_material -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Body1 -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: io.reactivex.CompletableSource other -androidx.preference.R$style: int Widget_AppCompat_ProgressBar_Horizontal -androidx.hilt.lifecycle.R$id: int italic -wangdaye.com.geometricweather.R$styleable: int View_paddingEnd -com.amap.api.location.AMapLocationClientOption: long getScanWifiInterval() -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.internal.util.AtomicThrowable errors -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextBackground -androidx.lifecycle.Lifecycling: boolean isLifecycleParent(java.lang.Class) -android.didikee.donate.R$dimen: int abc_control_corner_material -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String n -androidx.preference.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -com.google.android.material.slider.RangeSlider: void setTrackHeight(int) -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_disabled_holo_light -com.google.android.material.R$id: int labeled -androidx.constraintlayout.widget.R$layout: int abc_action_bar_up_container -androidx.preference.R$styleable: int SearchView_defaultQueryHint -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max -androidx.appcompat.R$layout: int abc_dialog_title_material -james.adaptiveicon.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -com.xw.repo.bubbleseekbar.R$dimen: int notification_small_icon_background_padding -okio.Buffer$1: okio.Buffer this$0 -androidx.activity.R$id: int chronometer -cyanogenmod.power.PerformanceManager: PerformanceManager(android.content.Context) -com.google.android.material.bottomappbar.BottomAppBar: void setElevation(float) -com.github.rahatarmanahmed.cpv.CircularProgressView: void onDetachedFromWindow() -retrofit2.ParameterHandler$Path: boolean encoded -androidx.preference.R$color: int abc_btn_colored_borderless_text_material -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha -cyanogenmod.hardware.CMHardwareManager: java.lang.String getUniqueDeviceId() -com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_radio -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog -james.adaptiveicon.R$color: int dim_foreground_disabled_material_dark -com.bumptech.glide.integration.okhttp.R$id: int info -com.tencent.bugly.crashreport.biz.UserInfoBean: java.lang.String m -retrofit2.Response: java.lang.String toString() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -cyanogenmod.weather.CMWeatherManager: java.util.Map mWeatherUpdateRequestListeners -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_id -com.xw.repo.bubbleseekbar.R$styleable: int[] ListPopupWindow -io.reactivex.Observable: void blockingSubscribe(io.reactivex.Observer) -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView_DropDown -com.google.android.material.R$drawable: int notification_bg_low -androidx.appcompat.R$layout: int abc_alert_dialog_button_bar_material -com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_internal_bg -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void complete() -com.google.gson.internal.LazilyParsedNumber: int hashCode() -android.didikee.donate.R$anim: int abc_grow_fade_in_from_bottom -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition[] values() -android.didikee.donate.R$layout: int abc_select_dialog_material -cyanogenmod.app.Profile$1: cyanogenmod.app.Profile[] newArray(int) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.lang.String MobileLink -wangdaye.com.geometricweather.R$drawable: int ic_toolbar_close -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Alert_Bridge -android.didikee.donate.R$color: int material_blue_grey_800 -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask -com.tencent.bugly.proguard.aq: boolean h -androidx.coordinatorlayout.R$string: R$string() -wangdaye.com.geometricweather.R$attr: int itemIconSize -com.google.android.material.R$dimen: int mtrl_tooltip_minHeight -com.google.android.material.R$attr: int colorAccent -com.turingtechnologies.materialscrollbar.R$attr: int layout_keyline -android.didikee.donate.R$styleable: int[] MenuItem -io.reactivex.exceptions.UndeliverableException: UndeliverableException(java.lang.Throwable) -androidx.viewpager.widget.PagerTabStrip: int getMinHeight() -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float snow -androidx.viewpager2.R$id: int chronometer -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onComplete() -androidx.coordinatorlayout.R$dimen -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light -androidx.preference.R$styleable: int Toolbar_subtitleTextColor -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.common.basic.models.options.DarkMode -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableLeftCompat -james.adaptiveicon.R$styleable: int MenuGroup_android_id -wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity -com.google.android.material.R$id: int circle_center -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_verticalDivider -com.jaredrummler.android.colorpicker.R$attr: int editTextPreferenceStyle -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onSubscribe(org.reactivestreams.Subscription) -com.google.android.material.R$attr: int listLayout -wangdaye.com.geometricweather.R$layout: int abc_popup_menu_item_layout -androidx.recyclerview.R$styleable: int RecyclerView_android_clipToPadding -com.google.android.material.R$styleable: int Chip_chipSurfaceColor -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: android.os.IBinder mRemote -com.google.android.material.R$styleable: int Constraint_layout_editor_absoluteX -wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconTint -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Tab -wangdaye.com.geometricweather.R$string: int refresh -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String PUBLIC_SUFFIX_RESOURCE -cyanogenmod.weather.WeatherInfo$DayForecast: boolean equals(java.lang.Object) -androidx.hilt.work.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_elevation -wangdaye.com.geometricweather.R$id: int notification_base -androidx.appcompat.R$style: int Base_DialogWindowTitle_AppCompat -org.greenrobot.greendao.AbstractDao: AbstractDao(org.greenrobot.greendao.internal.DaoConfig,org.greenrobot.greendao.AbstractDaoSession) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_max -androidx.appcompat.R$styleable: int MenuItem_android_menuCategory -wangdaye.com.geometricweather.db.entities.AlertEntity: long getAlertId() -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String moonPhase -androidx.appcompat.R$color: int primary_material_dark -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RelativeHumidity -com.xw.repo.bubbleseekbar.R$dimen: int abc_disabled_alpha_material_dark -androidx.preference.R$styleable: int AlertDialog_showTitle -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconSize -wangdaye.com.geometricweather.R$attr: int statusBarForeground -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onNext(java.lang.Object) -com.bumptech.glide.load.engine.GlideException: void printStackTrace() -wangdaye.com.geometricweather.R$styleable: int AlertDialog_buttonIconDimen -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction Direction -com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_NOGPSPROVIDER -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_24 -okio.ForwardingSink: void flush() -androidx.preference.R$styleable: int AppCompatTheme_actionModeSplitBackground -androidx.coordinatorlayout.R$layout: int notification_template_part_time -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_queryHint -com.jaredrummler.android.colorpicker.ColorPreferenceCompat: void setOnShowDialogListener(com.jaredrummler.android.colorpicker.ColorPreferenceCompat$OnShowDialogListener) -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalStyle -android.didikee.donate.R$style: int TextAppearance_AppCompat_Display3 -androidx.preference.R$color: int button_material_light -com.tencent.bugly.crashreport.CrashReport -androidx.work.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.util.Locale getLocale() -okhttp3.internal.platform.Platform: java.lang.String toString() -okhttp3.HttpUrl$Builder: HttpUrl$Builder() -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void trimHead() -androidx.constraintlayout.widget.R$attr: int customDimension -androidx.lifecycle.LifecycleRegistry: void moveToState(androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.R$styleable: int Transition_constraintSetEnd -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String x -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: boolean delayError -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DialogWhenLarge -androidx.appcompat.widget.SwitchCompat: void setThumbTintList(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_size -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getRagweedLevel() -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber -androidx.appcompat.R$styleable: int[] ActivityChooserView -wangdaye.com.geometricweather.R$layout: int abc_activity_chooser_view_list_item -wangdaye.com.geometricweather.R$attr: int chipStartPadding -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -wangdaye.com.geometricweather.R$color: int foreground_material_dark -androidx.vectordrawable.animated.R$drawable: int notification_bg_low -io.reactivex.internal.functions.Functions$NaturalComparator -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long count -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDefaultPhoneSub(int) -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyle -com.google.android.material.R$attr: int lineHeight -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_android_windowIsFloating -android.didikee.donate.R$style: int Widget_AppCompat_EditText -wangdaye.com.geometricweather.common.basic.models.weather.Weather: boolean isValid(float) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginRight -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -com.google.android.material.R$drawable: int abc_ic_star_half_black_16dp -wangdaye.com.geometricweather.R$attr: int gestureInsetBottomIgnored -retrofit2.OkHttpCall: java.lang.Throwable creationFailure -androidx.appcompat.R$id: int info -androidx.dynamicanimation.R$styleable: int GradientColor_android_type -com.google.android.material.R$styleable: int Toolbar_contentInsetStartWithNavigation -androidx.hilt.lifecycle.R$attr: int fontVariationSettings -com.google.gson.stream.JsonReader: void beginObject() -wangdaye.com.geometricweather.R$id: int item_about_title -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_PEOPLE_LOOKUP_VALIDATOR -androidx.lifecycle.ClassesInfoCache$MethodReference: int mCallType -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: long remaining -cyanogenmod.library.R$styleable: int LiveLockScreen_settingsActivity -androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemBackground -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_chainStyle -androidx.fragment.app.DialogFragment: DialogFragment() -com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_checkbox -androidx.appcompat.R$dimen: int abc_dialog_fixed_width_major -androidx.preference.R$style: int Widget_AppCompat_DropDownItem_Spinner -retrofit2.Call: boolean isExecuted() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: org.reactivestreams.Subscriber downstream -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UpdateDate -androidx.hilt.R$id: int action_container -cyanogenmod.app.IProfileManager$Stub$Proxy: void removeNotificationGroup(android.app.NotificationGroup) -androidx.constraintlayout.widget.R$attr: int backgroundStacked -android.didikee.donate.R$color: int abc_background_cache_hint_selector_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleTextAppearance -james.adaptiveicon.R$styleable: int MenuView_preserveIconSpacing -androidx.constraintlayout.widget.R$id: int italic -wangdaye.com.geometricweather.R$id: int item_aqi_progress -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property CityId -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_shapeAppearance -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -io.reactivex.internal.observers.InnerQueuedObserver: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver -androidx.lifecycle.process.R -androidx.hilt.work.R$style: R$style() -okhttp3.Cookie: boolean pathMatch(okhttp3.HttpUrl,java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: java.lang.String English -com.tencent.bugly.proguard.aq -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierMargin -android.didikee.donate.R$styleable: int[] AppCompatTextView -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: Http2Codec$StreamFinishingSource(okhttp3.internal.http2.Http2Codec,okio.Source) -cyanogenmod.providers.CMSettings$Secure: java.lang.String DISPLAY_GAMMA_CALIBRATION_PREFIX -androidx.appcompat.R$drawable: int abc_cab_background_top_material -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onComplete() -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okio.BufferedSource source() -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_textAppearance -androidx.constraintlayout.widget.R$string: int abc_menu_sym_shortcut_label -okhttp3.internal.connection.RouteSelector: java.util.List inetSocketAddresses -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindSpeedStart(java.lang.String) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCutDrawable -wangdaye.com.geometricweather.R$id -wangdaye.com.geometricweather.common.basic.GeoActivity -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather weather -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_RED_INDEX -com.google.android.material.R$styleable: int Toolbar_subtitle -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_3G -cyanogenmod.weather.WeatherInfo: long access$1002(cyanogenmod.weather.WeatherInfo,long) -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object readKey(android.database.Cursor,int) -james.adaptiveicon.R$drawable: int abc_btn_radio_to_on_mtrl_015 -androidx.appcompat.R$drawable: int abc_text_select_handle_right_mtrl_light -wangdaye.com.geometricweather.R$attr: int textAppearanceSubtitle2 -com.tencent.bugly.proguard.a: java.util.HashMap d -com.google.android.material.R$styleable: int KeyPosition_percentHeight -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_QUICK_QS_PULLDOWN -android.didikee.donate.R$styleable: int ActionBar_contentInsetStartWithNavigation -com.google.android.material.R$dimen: int disabled_alpha_material_light -okhttp3.Cache: int ENTRY_BODY -com.google.android.material.internal.CheckableImageButton: void setPressable(boolean) -io.reactivex.internal.disposables.EmptyDisposable: int requestFusion(int) -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitationProbability -androidx.recyclerview.R$color: int notification_icon_bg_color -androidx.appcompat.resources.R$id: int forever -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setTextColor(int) -com.amap.api.location.AMapLocation: void setLocationQualityReport(com.amap.api.location.AMapLocationQualityReport) -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchTextAppearance -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme -okhttp3.internal.http1.Http1Codec$ChunkedSink: void write(okio.Buffer,long) -androidx.preference.R$styleable: int Toolbar_contentInsetEndWithActions -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: int Degrees -wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_top_material -androidx.viewpager2.R$drawable: int notification_tile_bg -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Spinner -com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.StrategyBean b(com.tencent.bugly.crashreport.common.strategy.a) -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_26 -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rx() -androidx.vectordrawable.R$id: int line3 -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$202(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_preserveIconSpacing -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: double Value -androidx.appcompat.R$drawable: int abc_btn_radio_to_on_mtrl_015 -wangdaye.com.geometricweather.db.entities.HistoryEntity: long getTime() -cyanogenmod.providers.CMSettings$NameValueCache: long mValuesVersion -androidx.preference.R$style: int Widget_AppCompat_Light_ActivityChooserView -androidx.work.R$dimen: int notification_main_column_padding_top -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontVariationSettings -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: android.os.IBinder asBinder() -androidx.constraintlayout.widget.R$id: int shortcut -okhttp3.Request$Builder: okhttp3.Request$Builder delete() -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit MM -androidx.core.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.R$drawable: int selectable_item_background -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -cyanogenmod.power.PerformanceManagerInternal: void launchBoost() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul12H -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour MATCH_CONSTRAINT -com.google.android.material.R$attr: int buttonStyle -okhttp3.ResponseBody$BomAwareReader: void close() -io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable INSTANCE -wangdaye.com.geometricweather.R$styleable: int Spinner_popupTheme -wangdaye.com.geometricweather.R$id: int contentPanel -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState[] values() -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onNext(java.lang.Object) -cyanogenmod.weatherservice.ServiceRequestResult: java.lang.String mKey -com.tencent.bugly.proguard.ah: void a(java.lang.StringBuilder,int) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void disposeAll() -com.turingtechnologies.materialscrollbar.TouchScrollBar -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: java.lang.String textConsequence -wangdaye.com.geometricweather.R$styleable: int Chip_iconEndPadding -james.adaptiveicon.R$attr: int searchHintIcon -com.google.android.material.R$styleable: int Motion_transitionEasing -com.turingtechnologies.materialscrollbar.R$id: int action_container -com.tencent.bugly.proguard.am: java.lang.String w -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: long serialVersionUID -okhttp3.MultipartBody: okhttp3.MediaType contentType() -wangdaye.com.geometricweather.R$xml: int perference_service_provider -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -com.google.android.material.R$color: int mtrl_navigation_item_background_color -com.turingtechnologies.materialscrollbar.R$attr: int strokeColor -androidx.constraintlayout.widget.R$id: int icon -androidx.coordinatorlayout.R$id: int italic -androidx.constraintlayout.widget.R$dimen: int compat_button_inset_vertical_material -retrofit2.OkHttpCall: java.lang.Object clone() -okhttp3.Address: okhttp3.CertificatePinner certificatePinner -wangdaye.com.geometricweather.R$attr: int summaryOff -androidx.constraintlayout.widget.R$attr: int textAppearanceListItemSecondary -androidx.constraintlayout.widget.R$attr: int icon -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.reflect.Type responseType() -com.google.android.material.R$attr: int actionBarTheme -wangdaye.com.geometricweather.R$dimen: int material_text_view_test_line_height_override -wangdaye.com.geometricweather.R$string: int abc_shareactionprovider_share_with_application -com.bumptech.glide.integration.okhttp.R$dimen: int compat_control_corner_material -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -androidx.dynamicanimation.R$id: int italic -retrofit2.KotlinExtensions$await$4$2: void onResponse(retrofit2.Call,retrofit2.Response) -okhttp3.Credentials: Credentials() -okhttp3.internal.http2.Http2: byte FLAG_COMPRESSED -com.amap.api.location.AMapLocation: java.lang.String j(com.amap.api.location.AMapLocation,java.lang.String) -androidx.cardview.R$attr -wangdaye.com.geometricweather.db.entities.AlertEntityDao: AlertEntityDao(org.greenrobot.greendao.internal.DaoConfig) -wangdaye.com.geometricweather.R$style: int Widget_Compat_NotificationActionText -androidx.preference.R$attr: int windowActionBar -cyanogenmod.app.StatusBarPanelCustomTile: android.os.UserHandle user -com.xw.repo.bubbleseekbar.R$id: int action_context_bar -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Subhead -com.google.android.material.internal.CheckableImageButton: void setCheckable(boolean) -androidx.constraintlayout.widget.R$styleable: int Constraint_chainUseRtl -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer treeLevel -okhttp3.internal.NamedRunnable: NamedRunnable(java.lang.String,java.lang.Object[]) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabTextColor -androidx.lifecycle.extensions.R$dimen: int notification_small_icon_size_as_large -com.google.android.material.R$attr: int textAppearanceHeadline6 -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: long serialVersionUID -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: android.os.IBinder asBinder() -com.bumptech.glide.R$id: int tag_unhandled_key_event_manager -androidx.lifecycle.LiveData$LifecycleBoundObserver: androidx.lifecycle.LifecycleOwner mOwner -com.google.android.material.R$styleable: int MotionLayout_motionDebug -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_ActionBar -james.adaptiveicon.R$attr: int iconifiedByDefault -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: long endTime -cyanogenmod.profiles.LockSettings$1: cyanogenmod.profiles.LockSettings[] newArray(int) -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_LED_ON -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.Observer downstream -james.adaptiveicon.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -wangdaye.com.geometricweather.weather.apis.AtmoAuraIqaApi -wangdaye.com.geometricweather.R$attr: int sliderStyle -androidx.transition.R$dimen: int notification_small_icon_background_padding -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_bottom -cyanogenmod.weather.CMWeatherManager: java.util.Map mLookupNameRequestListeners -com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(java.lang.Object,java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$attr: int actionModeWebSearchDrawable -wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_light -james.adaptiveicon.R$color: int abc_tint_spinner -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizePresetSizes -androidx.hilt.work.R$id: int accessibility_custom_action_17 -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean setNativeAppChannel(java.lang.String) -com.jaredrummler.android.colorpicker.R$attr: int track -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String cityId -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionBar -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display3 -wangdaye.com.geometricweather.db.entities.MinutelyEntity: int getMinuteInterval() -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String WRITE_ALARMS_PERMISSION -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setFitSide(int) -androidx.preference.R$style: int Preference_Information_Material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX indices -com.tencent.bugly.proguard.ak: long b -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status REJECTED -androidx.appcompat.R$dimen: int abc_seekbar_track_progress_height_material -cyanogenmod.themes.ThemeManager$2: cyanogenmod.themes.ThemeManager this$0 -com.xw.repo.bubbleseekbar.R$attr: int buttonGravity -com.github.rahatarmanahmed.cpv.CircularProgressView: void resetAnimation() -james.adaptiveicon.R$drawable: int abc_ic_star_half_black_48dp -wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingStart -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -com.google.android.material.R$attr: int behavior_hideable -okhttp3.internal.http2.Http2Writer: void connectionPreface() -cyanogenmod.providers.CMSettings$System: java.lang.String SWAP_VOLUME_KEYS_ON_ROTATION -com.tencent.bugly.proguard.i: com.tencent.bugly.proguard.k a(com.tencent.bugly.proguard.k,int,boolean) -wangdaye.com.geometricweather.R$attr: int flow_padding -okhttp3.HttpUrl: java.lang.String username -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceName(android.content.Context) -retrofit2.http.OPTIONS -com.tencent.bugly.crashreport.CrashReport: void setSessionIntervalMills(long) -james.adaptiveicon.R$integer: int abc_config_activityShortDur -com.google.android.material.R$string: int material_timepicker_hour -com.jaredrummler.android.colorpicker.R$layout: int notification_template_part_time -retrofit2.http.HEAD: java.lang.String value() -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low_pressed -com.tencent.bugly.crashreport.BuglyLog: void v(java.lang.String,java.lang.String) -cyanogenmod.platform.Manifest$permission: java.lang.String THIRD_PARTY_KEYGUARD -com.google.android.material.R$color: int design_default_color_on_surface -androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context,android.util.AttributeSet) -androidx.coordinatorlayout.R$id -okhttp3.internal.http1.Http1Codec$ChunkedSink: Http1Codec$ChunkedSink(okhttp3.internal.http1.Http1Codec) -io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.android.material.R$layout: int design_navigation_menu -wangdaye.com.geometricweather.R$attr: int dragScale -androidx.viewpager.R$id: int line3 -wangdaye.com.geometricweather.R$attr: int state_dragged -wangdaye.com.geometricweather.R$style: int Widget_Design_NavigationView -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar -androidx.customview.view.AbsSavedState: android.os.Parcelable$Creator CREATOR -androidx.work.NetworkType: androidx.work.NetworkType[] values() -com.google.android.material.R$styleable: int Constraint_pathMotionArc -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: android.os.IBinder asBinder() -androidx.transition.R$id -com.google.android.material.R$styleable: int NavigationView_android_maxWidth -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: long serialVersionUID -wangdaye.com.geometricweather.R$drawable: int notification_bg -com.google.android.material.R$styleable: int TextInputLayout_android_textColorHint -com.google.android.material.R$styleable: int MaterialCardView_checkedIcon -com.tencent.bugly.crashreport.common.info.a: java.lang.String j() -android.didikee.donate.R$color: int button_material_light -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_count -com.google.android.material.R$dimen: int mtrl_slider_label_padding -com.google.android.material.R$layout: int abc_list_menu_item_layout -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String CountryID -com.jaredrummler.android.colorpicker.R$id: int notification_main_column -wangdaye.com.geometricweather.background.polling.work.worker.AsyncUpdateWorker: AsyncUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) -com.turingtechnologies.materialscrollbar.R$attr: int arrowShaftLength -com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_linear -androidx.constraintlayout.widget.R$id: int image -okhttp3.internal.http.RealInterceptorChain: okhttp3.Request request() -org.greenrobot.greendao.AbstractDao: void readEntity(android.database.Cursor,java.lang.Object,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial -okhttp3.internal.http2.Http2Writer: void frameHeader(int,int,byte,byte) -androidx.appcompat.R$styleable: int TextAppearance_android_textStyle -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_line -com.google.android.material.R$dimen: int abc_text_size_display_4_material -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String componentToImageColName(java.lang.String) -androidx.lifecycle.FullLifecycleObserver: void onStart(androidx.lifecycle.LifecycleOwner) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void drain() -com.xw.repo.bubbleseekbar.R$attr: int logoDescription -wangdaye.com.geometricweather.R$attr: int tabUnboundedRipple -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_10 -cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String mPackage -com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String) -okhttp3.logging.LoggingEventListener: long startNs -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge -com.tencent.bugly.crashreport.crash.b: java.util.List b(java.util.List) -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Call delegate -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int HIDE_NOTIFICATION_STATE -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_height -com.google.android.material.R$color: int design_default_color_error -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void cancel() -cyanogenmod.profiles.RingModeSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -okio.ByteString: okio.ByteString sha512() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitation() -androidx.hilt.work.R$string: R$string() -com.google.android.material.R$styleable: int Badge_backgroundColor -retrofit2.adapter.rxjava2.Result: retrofit2.Response response() -okhttp3.CacheControl: boolean isPublic -com.turingtechnologies.materialscrollbar.R$id: int time -com.google.android.material.card.MaterialCardView: void setCheckedIconMargin(int) -androidx.lifecycle.extensions.R$style: R$style() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_creator -com.google.android.material.R$styleable: int[] MaterialCalendarItem -wangdaye.com.geometricweather.R$attr: int tabIndicatorHeight -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_TextView_SpinnerItem -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder host(java.lang.String) -wangdaye.com.geometricweather.R$string: int retrofit -okhttp3.Dispatcher: Dispatcher(java.util.concurrent.ExecutorService) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_1 -com.xw.repo.bubbleseekbar.R$bool: R$bool() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -androidx.preference.R$id: int recycler_view -androidx.work.R$styleable: int ColorStateListItem_alpha -okhttp3.FormBody$Builder: FormBody$Builder() -androidx.work.NetworkType: androidx.work.NetworkType METERED -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -com.google.android.material.R$style: int Widget_AppCompat_ButtonBar -com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableTransition -com.google.android.material.R$style: int Base_Widget_Design_TabLayout -com.bumptech.glide.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerY -com.google.android.material.R$dimen: int mtrl_card_dragged_z -com.google.android.gms.location.LocationAvailability: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$string: int settings_title_forecast_today_time -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean mAskedShow -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemBackground(android.graphics.drawable.Drawable) -retrofit2.Platform: java.lang.Object invokeDefaultMethod(java.lang.reflect.Method,java.lang.Class,java.lang.Object,java.lang.Object[]) -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void updateWeather(cyanogenmod.weather.RequestInfo) -com.jaredrummler.android.colorpicker.R$attr: int srcCompat -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Inverse -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -androidx.appcompat.widget.AppCompatCheckBox -androidx.viewpager2.R$attr: int fastScrollVerticalThumbDrawable -androidx.appcompat.widget.Toolbar: int getTitleMarginTop() -androidx.activity.R$styleable: int FontFamilyFont_android_ttcIndex -cyanogenmod.externalviews.ExternalView: java.util.LinkedList mQueue -wangdaye.com.geometricweather.R$styleable: int PopupWindowBackgroundState_state_above_anchor -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit valueOf(java.lang.String) -com.tencent.bugly.crashreport.BuglyLog -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Body2 -io.reactivex.internal.subscriptions.SubscriptionArbiter: long requested -android.didikee.donate.R$styleable: int PopupWindow_overlapAnchor -cyanogenmod.app.PartnerInterface: void setAirplaneModeEnabled(boolean) -wangdaye.com.geometricweather.R$id: int beginOnFirstDraw -james.adaptiveicon.R$styleable: int SearchView_voiceIcon -com.google.android.material.R$dimen: int mtrl_transition_shared_axis_slide_distance -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_menuCategory -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: java.util.concurrent.TimeUnit unit -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display2 -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -androidx.recyclerview.R$id: int accessibility_custom_action_11 -cyanogenmod.app.BaseLiveLockManagerService: void enforcePrivateAccessPermission() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: java.lang.String newX -androidx.preference.R$string: int preference_copied -androidx.preference.R$styleable: int DialogPreference_positiveButtonText -wangdaye.com.geometricweather.R$anim: int fragment_open_exit -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter daytimeWindDegreeConverter -cyanogenmod.externalviews.ExternalView$4: ExternalView$4(cyanogenmod.externalviews.ExternalView) -com.jaredrummler.android.colorpicker.R$id: int action_bar_container -androidx.viewpager.R$styleable: int GradientColor_android_startX -com.turingtechnologies.materialscrollbar.R$attr: int chipSpacingVertical -com.google.android.material.R$attr: int touchAnchorId -com.google.android.material.R$styleable: int ActionBar_itemPadding -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_timeText -androidx.preference.R$dimen: int abc_disabled_alpha_material_dark -com.tencent.bugly.proguard.j: void a(long,int) -io.reactivex.internal.schedulers.RxThreadFactory: long serialVersionUID -cyanogenmod.app.Profile: java.util.List readSecondaryUuidsFromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitation -com.turingtechnologies.materialscrollbar.R$id: int left -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$id: int material_label -wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_week_setting -androidx.preference.ListPreferenceDialogFragmentCompat: ListPreferenceDialogFragmentCompat() -com.turingtechnologies.materialscrollbar.R$integer -cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient access$200(cyanogenmod.weatherservice.WeatherProviderService) -android.didikee.donate.R$style: int Platform_V21_AppCompat_Light -wangdaye.com.geometricweather.R$styleable: int[] PropertySet -com.google.android.material.R$dimen: int abc_control_corner_material -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.b n -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_default -com.google.android.material.R$color: int abc_tint_default -androidx.constraintlayout.widget.R$color: int abc_hint_foreground_material_light -android.didikee.donate.R$attr: int titleMargins -io.reactivex.internal.util.EmptyComponent: io.reactivex.Observer asObserver() -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: java.lang.Float temperature -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: io.reactivex.Scheduler$Worker worker -cyanogenmod.weatherservice.WeatherProviderService: java.util.Set access$100(cyanogenmod.weatherservice.WeatherProviderService) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property SunSetDate -wangdaye.com.geometricweather.R$drawable: int widget_multi_city -retrofit2.converter.gson.GsonRequestBodyConverter: com.google.gson.TypeAdapter adapter -com.google.android.material.R$attr: int bottomAppBarStyle -androidx.appcompat.R$style: int Base_V26_Widget_AppCompat_Toolbar -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder allEnabledCipherSuites() -james.adaptiveicon.R$styleable: int MenuItem_android_alphabeticShortcut -com.google.android.material.R$attr: int itemShapeInsetEnd -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather weather -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.util.List _queryWeatherEntity_MinutelyEntityList(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_error -com.google.android.material.R$attr: int paddingStart -com.google.android.gms.common.server.response.FastSafeParcelableJsonResponse -wangdaye.com.geometricweather.R$styleable: int MockView_mock_showDiagonals -com.jaredrummler.android.colorpicker.R$id: int transparency_text -wangdaye.com.geometricweather.R$drawable: int abc_ic_search_api_material -retrofit2.Platform: boolean isDefaultMethod(java.lang.reflect.Method) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture -com.google.android.material.R$attr: int contentPaddingBottom -com.turingtechnologies.materialscrollbar.R$attr: int contentDescription -com.xw.repo.bubbleseekbar.R$attr: int elevation -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_disabled_material_light -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.Observer downstream -androidx.lifecycle.LifecycleEventObserver -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: void run() -wangdaye.com.geometricweather.R$drawable: int shortcuts_fog_foreground -wangdaye.com.geometricweather.R$drawable: int mtrl_ic_cancel -okhttp3.internal.connection.RealConnection: void onSettings(okhttp3.internal.http2.Http2Connection) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets -com.google.android.material.R$attr: int layout_constraintRight_toLeftOf -com.tencent.bugly.proguard.y$a: java.io.File b -wangdaye.com.geometricweather.common.basic.models.weather.UV: UV(java.lang.Integer,java.lang.String,java.lang.String) -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$300() -com.google.android.material.snackbar.BaseTransientBottomBar$Behavior: BaseTransientBottomBar$Behavior() -androidx.appcompat.R$drawable: int abc_btn_radio_to_on_mtrl_000 -com.turingtechnologies.materialscrollbar.R$attr: int chipCornerRadius -com.jaredrummler.android.colorpicker.R$color: int tooltip_background_dark -cyanogenmod.profiles.ConnectionSettings$BooleanState: int STATE_DISALED -androidx.preference.R$dimen: int abc_list_item_height_material -com.google.android.material.R$styleable: int[] MotionTelltales -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_22 -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_4_material -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float snow -com.xw.repo.bubbleseekbar.R$color: int abc_hint_foreground_material_dark -androidx.preference.R$color: int material_grey_850 -androidx.core.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: int UnitType -james.adaptiveicon.R$drawable: int abc_ic_arrow_drop_right_black_24dp -wangdaye.com.geometricweather.R$string: int material_timepicker_am -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_tooltipFrameBackground -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderDivider -com.bumptech.glide.integration.okhttp.R$attr: int layout_behavior -com.tencent.bugly.proguard.k: void a(com.tencent.bugly.proguard.i) -wangdaye.com.geometricweather.R$drawable: int notif_temp_16 -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void errorAll(io.reactivex.Observer) -wangdaye.com.geometricweather.R$styleable: int Chip_rippleColor -okhttp3.internal.Util: okhttp3.ResponseBody EMPTY_RESPONSE -androidx.appcompat.R$dimen: int abc_text_size_display_3_material -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationTextWithoutUnit(float) -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize -com.google.android.material.R$styleable: int Constraint_android_maxWidth -wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_title -androidx.hilt.R$styleable: int Fragment_android_name -com.google.android.material.R$styleable: int CollapsingToolbarLayout_statusBarScrim -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String treeDescription -com.google.android.material.tabs.TabLayout$TabView: void setTab(com.google.android.material.tabs.TabLayout$Tab) -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_subtitle -androidx.constraintlayout.widget.R$attr: int alertDialogTheme -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderCerts -okhttp3.internal.http2.Http2Reader$ContinuationSource: void readContinuationHeader() -android.didikee.donate.R$styleable: int Toolbar_titleMargins -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: int getStatus() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getCityId() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getWeatherSource() -wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_grey -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String componentToMixNMatchKey(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ActionBar_hideOnContentScroll -cyanogenmod.providers.DataUsageContract: android.net.Uri CONTENT_URI -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_homeLayout -androidx.appcompat.R$dimen: int abc_action_bar_content_inset_material -android.didikee.donate.R$styleable: int MenuItem_android_titleCondensed -androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_backgroundTintMode -wangdaye.com.geometricweather.R$attr: int yearStyle -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SPANISH -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_unregisterChangeListener -androidx.appcompat.widget.AppCompatButton: android.content.res.ColorStateList getSupportBackgroundTintList() -androidx.constraintlayout.widget.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_orientation -androidx.loader.R$id: int action_divider -okhttp3.internal.http.HttpHeaders: long contentLength(okhttp3.Response) -androidx.recyclerview.R$id: int right_side -cyanogenmod.os.Build$CM_VERSION_CODES: int APRICOT -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_toRightOf -com.google.gson.stream.JsonWriter: void beforeValue() -com.google.android.gms.tasks.RuntimeExecutionException: RuntimeExecutionException(java.lang.Throwable) -com.google.android.material.R$styleable: int Layout_layout_constraintHeight_percent -com.google.android.material.R$styleable: int Constraint_android_transformPivotY -com.google.android.material.R$styleable: int MaterialShape_shapeAppearanceOverlay -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemPaddingRight -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat -com.google.android.material.R$attr: int arcMode -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_text_color -okhttp3.Cache: int ENTRY_METADATA -androidx.constraintlayout.widget.R$attr: int titleTextStyle -com.google.android.material.R$color: int mtrl_navigation_item_text_color -wangdaye.com.geometricweather.common.ui.activities.AllergenActivity -androidx.dynamicanimation.R$styleable: int GradientColor_android_startY -james.adaptiveicon.R$attr: int buttonPanelSideLayout -com.amap.api.location.AMapLocation: void setFixLastLocation(boolean) -okhttp3.internal.proxy.NullProxySelector: NullProxySelector() -com.google.android.material.R$styleable: int AppCompatTextView_android_textAppearance -com.github.rahatarmanahmed.cpv.CircularProgressView: void stopAnimation() -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.ICMHardwareService getService() -okhttp3.internal.http2.Http2Writer: void settings(okhttp3.internal.http2.Settings) -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -cyanogenmod.themes.IThemeProcessingListener$Stub: IThemeProcessingListener$Stub() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableStart -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_background -retrofit2.Response: retrofit2.Response success(java.lang.Object,okhttp3.Response) -android.didikee.donate.R$layout: int select_dialog_item_material -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_orientation -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sUriValidator -com.bumptech.glide.request.RequestCoordinator$RequestState: boolean isComplete -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getDaytimeWindDegree() -wangdaye.com.geometricweather.R$color: int notification_action_color_filter -com.xw.repo.bubbleseekbar.R$layout: int support_simple_spinner_dropdown_item -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.RequestBody delegate -android.didikee.donate.R$styleable: int AppCompatTheme_textColorSearchUrl -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_29 -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String ICON_URI -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.Headers,okhttp3.RequestBody) -retrofit2.http.Part -com.google.android.material.R$string: int mtrl_picker_confirm -org.greenrobot.greendao.AbstractDao: int pkOrdinal -wangdaye.com.geometricweather.settings.activities.DailyTrendDisplayManageActivity -androidx.preference.R$id: int shortcut -okio.Buffer: okio.ByteString snapshot() -cyanogenmod.app.suggest.IAppSuggestManager$Stub -android.didikee.donate.R$layout: int abc_list_menu_item_checkbox -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: SwipeRefreshLayout(android.content.Context) -androidx.drawerlayout.R$id: int actions -androidx.appcompat.R$color: int button_material_dark -androidx.vectordrawable.animated.R$attr: int fontWeight -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_days_of_week_height -androidx.lifecycle.FullLifecycleObserver: void onDestroy(androidx.lifecycle.LifecycleOwner) -androidx.legacy.coreutils.R$drawable: int notification_bg_normal -androidx.viewpager.R$attr: int ttcIndex -cyanogenmod.app.ThemeVersion$ComponentVersion: cyanogenmod.app.ThemeComponent component -wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_large_component -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderCerts -com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_entries -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void request(long) -com.tencent.bugly.proguard.t: void a(boolean) -com.tencent.bugly.crashreport.biz.b: long j -com.jaredrummler.android.colorpicker.R$id: int action_context_bar -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.Observer downstream -com.google.android.material.R$color: int abc_hint_foreground_material_light -wangdaye.com.geometricweather.R$styleable: int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams mParams -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.functions.Function mapper -android.didikee.donate.R$id: int titleDividerNoCustom -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Filter -com.google.android.material.bottomsheet.BottomSheetBehavior: BottomSheetBehavior() -okhttp3.internal.http.StatusLine: java.lang.String message -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircleRadius -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelMenuListWidth -com.google.android.material.R$dimen: int mtrl_extended_fab_min_height -androidx.fragment.R$style: int TextAppearance_Compat_Notification_Title -androidx.constraintlayout.widget.R$attr: int backgroundSplit -androidx.preference.R$styleable: int RecyclerView_android_descendantFocusability -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node findByObject(java.lang.Object) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents -okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV2 -android.didikee.donate.R$attr: int buttonGravity -wangdaye.com.geometricweather.R$id: int experience -com.tencent.bugly.crashreport.crash.jni.a: void handleNativeException(int,int,long,long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,int,java.lang.String,java.lang.String) -okhttp3.Address: java.net.Proxy proxy() -io.reactivex.Observable: io.reactivex.Observable window(java.util.concurrent.Callable) -android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_cancel -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableLeft -com.google.android.material.R$id: int autoComplete -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -com.amap.api.location.AMapLocationClientOption: boolean q -com.tencent.bugly.proguard.p: boolean a(int,java.lang.String,com.tencent.bugly.proguard.o,boolean) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerError(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_minHeight -okio.Buffer: long readAll(okio.Sink) -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context) -com.google.android.material.R$styleable: int Constraint_layout_constraintStart_toEndOf -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_25 -androidx.lifecycle.ProcessLifecycleOwner$2: androidx.lifecycle.ProcessLifecycleOwner this$0 -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver this$0 -james.adaptiveicon.R$drawable: int abc_ratingbar_material -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -retrofit2.OkHttpCall$NoContentResponseBody: okio.BufferedSource source() -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption clone() -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback -io.reactivex.exceptions.CompositeException: java.lang.Throwable getCause() -androidx.viewpager2.R$id: int notification_main_column -androidx.preference.R$attr: int hideOnContentScroll -androidx.hilt.lifecycle.R$dimen: int notification_subtext_size -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.R$attr: int flow_lastVerticalBias -okhttp3.internal.tls.OkHostnameVerifier: boolean verifyHostname(java.lang.String,java.lang.String) -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleContentDescription(int) -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light -wangdaye.com.geometricweather.R$drawable: int weather_hail_3 -com.tencent.bugly.crashreport.crash.c: int k -okhttp3.internal.http.HttpHeaders: okio.ByteString QUOTED_STRING_DELIMITERS -androidx.hilt.R$layout: int notification_action -com.baidu.location.indoor.mapversion.c.a$d: a$d(java.lang.String) -androidx.appcompat.resources.R$drawable: int notification_bg_low -androidx.appcompat.R$string: int abc_menu_delete_shortcut_label -com.tencent.bugly.crashreport.biz.b: void c(android.content.Context,com.tencent.bugly.BuglyStrategy) -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_transitionPathRotate -com.google.android.material.appbar.AppBarLayout: void removeOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener) -com.google.android.material.R$styleable: int OnSwipe_maxVelocity -com.google.android.material.R$attr: int layout_behavior -android.didikee.donate.R$styleable: int[] View -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_roundPercent -com.tencent.bugly.proguard.aq: java.util.Map i -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout_PrimarySurface -com.google.android.material.appbar.ViewOffsetBehavior: ViewOffsetBehavior() -androidx.constraintlayout.widget.R$id: int src_over -com.jaredrummler.android.colorpicker.R$attr: int summary -androidx.appcompat.R$dimen: int abc_action_bar_overflow_padding_end_material -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer degreeDayTemperature -com.tencent.bugly.crashreport.biz.UserInfoBean: java.lang.String c -okhttp3.Response: okhttp3.Response$Builder newBuilder() -wangdaye.com.geometricweather.R$id: int actions -okhttp3.internal.http.HttpHeaders: int parseSeconds(java.lang.String,int) -androidx.lifecycle.ViewModelProvider$NewInstanceFactory: ViewModelProvider$NewInstanceFactory() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintAnimationEnabled -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: int getStatus() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorPrimary -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_0 -com.google.android.material.R$style: int Theme_AppCompat_NoActionBar -com.google.android.material.R$styleable: int AppCompatTheme_actionBarTheme -cyanogenmod.app.CustomTile$ListExpandedStyle -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_hide_bubble -com.turingtechnologies.materialscrollbar.R$styleable: int View_theme -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderFetchTimeout -okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeOptional(java.lang.Object,java.lang.Object[]) -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dialog -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_type -cyanogenmod.library.R$styleable: R$styleable() -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: boolean isDisposed() -com.jaredrummler.android.colorpicker.R$attr: int cpv_allowCustom -android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean tryOnError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: void setFrom(java.lang.String) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Medium_Inverse -com.tencent.bugly.proguard.x: java.lang.String c -okhttp3.internal.cache.DiskLruCache: int redundantOpCount -com.google.android.material.R$styleable: int GradientColor_android_gradientRadius -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView -okhttp3.internal.http2.Hpack$Reader: Hpack$Reader(int,int,okio.Source) -okhttp3.ConnectionSpec$Builder: ConnectionSpec$Builder(okhttp3.ConnectionSpec) -com.tencent.bugly.crashreport.biz.b: void a(com.tencent.bugly.crashreport.common.strategy.StrategyBean,boolean) -android.didikee.donate.R$drawable: int abc_textfield_default_mtrl_alpha -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmTp2 -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_prompt -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginTop -androidx.appcompat.R$id: int screen -wangdaye.com.geometricweather.R$id: int widget_week -androidx.constraintlayout.widget.R$attr: int defaultState -wangdaye.com.geometricweather.R$id: int notification_base_aqiAndWind -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_padding_horizontal -com.google.android.material.R$styleable: int SwitchCompat_switchMinWidth -com.google.android.material.R$styleable: int AppCompatTheme_colorControlNormal -androidx.preference.R$styleable: int ListPreference_entryValues -com.bumptech.glide.R$styleable: int ColorStateListItem_android_alpha -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: ObservableRepeatUntil$RepeatUntilObserver(io.reactivex.Observer,io.reactivex.functions.BooleanSupplier,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean tryOnError(java.lang.Throwable) -wangdaye.com.geometricweather.R$array: int clock_font_values -cyanogenmod.providers.CMSettings$System: java.lang.String HOME_WAKE_SCREEN -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2 -com.google.android.gms.internal.location.zzbc: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$attr: int minWidth -wangdaye.com.geometricweather.R$interpolator: R$interpolator() -cyanogenmod.weather.WeatherInfo: java.lang.String toString() -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_days_of_week -android.didikee.donate.R$attr: int singleChoiceItemLayout -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: AccuHourlyResult() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: void setValue(java.lang.String) -androidx.coordinatorlayout.R$id: int title -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginStart -com.amap.api.fence.PoiItem: java.lang.String e -wangdaye.com.geometricweather.R$attr: int passwordToggleEnabled -com.xw.repo.bubbleseekbar.R$attr: int bsb_seek_step_section -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setLabelVisibilityMode(int) -com.tencent.bugly.proguard.u: com.tencent.bugly.proguard.p c -cyanogenmod.externalviews.KeyguardExternalView$2: boolean requestDismiss() -james.adaptiveicon.R$styleable: int ActionBar_backgroundSplit -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: java.lang.Integer proba6H -wangdaye.com.geometricweather.R$attr: int checkedIconVisible -androidx.hilt.work.R$styleable: int[] Fragment -com.xw.repo.bubbleseekbar.R$attr: int bsb_show_section_text -androidx.constraintlayout.widget.R$attr: int waveShape -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean getWeather() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitation() -androidx.swiperefreshlayout.R$id: int normal -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean -androidx.constraintlayout.widget.R$id: int list_item -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void dispose() -com.google.android.material.R$styleable: int TextInputLayout_boxBackgroundMode -android.didikee.donate.R$color: int abc_btn_colored_borderless_text_material -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_background -com.google.android.material.R$attr: int tabIconTintMode -com.tencent.bugly.proguard.j: void a(java.util.Collection,int) -wangdaye.com.geometricweather.R$id: int custom -com.google.android.material.transformation.TransformationChildCard: TransformationChildCard(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String getCityId() -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: long serialVersionUID -androidx.preference.R$style: int Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.R$attr: int tabInlineLabel -com.google.android.material.R$interpolator: int mtrl_linear_out_slow_in -cyanogenmod.weather.WeatherInfo$DayForecast$1: WeatherInfo$DayForecast$1() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowNoTitle -android.didikee.donate.R$drawable: int abc_ic_ab_back_material -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -androidx.loader.R$drawable: int notification_bg -com.turingtechnologies.materialscrollbar.R$attr: int counterTextAppearance -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_title -androidx.preference.R$styleable: int ActionBar_itemPadding -androidx.preference.R$drawable: int preference_list_divider_material -wangdaye.com.geometricweather.R$attr: int materialAlertDialogTheme -com.google.android.material.slider.BaseSlider: float getValueOfTouchPositionAbsolute() -com.jaredrummler.android.colorpicker.R$id: int icon_group -com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -com.google.android.material.R$color: int mtrl_outlined_icon_tint -com.google.android.material.floatingactionbutton.FloatingActionButton: void setImageDrawable(android.graphics.drawable.Drawable) -androidx.appcompat.R$styleable: int Toolbar_title -android.didikee.donate.R$attr: int titleMarginEnd -android.didikee.donate.R$attr: int showDividers -com.google.android.material.R$styleable: int[] StateListDrawableItem -wangdaye.com.geometricweather.R$id: int widget_day_week_weather -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric Metric -com.tencent.bugly.crashreport.common.info.b: java.lang.String r() -com.xw.repo.bubbleseekbar.R$attr: int switchStyle -com.google.android.material.bottomnavigation.BottomNavigationMenuView: BottomNavigationMenuView(android.content.Context) -androidx.preference.R$styleable: int SeekBarPreference_adjustable -com.tencent.bugly.proguard.ai: void a(com.tencent.bugly.proguard.i) -androidx.coordinatorlayout.R$color -com.xw.repo.bubbleseekbar.R$layout: int abc_action_menu_item_layout -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: int bufferSize -okhttp3.Headers$Builder: okhttp3.Headers$Builder set(java.lang.String,java.util.Date) -androidx.activity.R$dimen: int notification_main_column_padding_top -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_inputType -androidx.lifecycle.ComputableLiveData$2 -wangdaye.com.geometricweather.R$string: int key_widget_day -androidx.hilt.R$id: int info -okhttp3.Dispatcher: java.util.Deque runningSyncCalls -android.didikee.donate.R$styleable: int View_android_focusable -androidx.activity.R$id: int accessibility_custom_action_21 -com.google.android.gms.base.R$string: int common_google_play_services_enable_title -com.bumptech.glide.load.engine.GlideException: java.lang.Exception exception -androidx.constraintlayout.widget.R$attr: int defaultDuration -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: ObservableDebounceTimed$DebounceEmitter(java.lang.Object,long,io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceTimedObserver) -androidx.preference.R$attr: int borderlessButtonStyle -com.google.android.material.R$attr: int backgroundColor -wangdaye.com.geometricweather.R$styleable: int[] TabItem -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void dispose() -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicReference upstream -com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: void setInternalAutoHideListener(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) -com.google.android.material.R$style: int Base_AlertDialog_AppCompat_Light -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -android.didikee.donate.R$string: int abc_shareactionprovider_share_with -androidx.appcompat.widget.Toolbar: android.widget.TextView getTitleTextView() -androidx.preference.R$drawable: int abc_scrubber_control_off_mtrl_alpha -wangdaye.com.geometricweather.R$attr: int ensureMinTouchTargetSize -wangdaye.com.geometricweather.R$id: int noScroll -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -androidx.preference.R$drawable: int abc_btn_default_mtrl_shape -james.adaptiveicon.R$drawable: int abc_ic_star_black_16dp -com.google.android.material.R$styleable: int SearchView_searchIcon -androidx.preference.R$styleable: int FontFamilyFont_fontWeight -cyanogenmod.profiles.ConnectionSettings$BooleanState: ConnectionSettings$BooleanState() -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -okhttp3.Cache$Entry: java.lang.String message -androidx.constraintlayout.widget.R$attr: int drawableSize -io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit) -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: boolean isDisposed() -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_22 -cyanogenmod.profiles.ConnectionSettings$1: ConnectionSettings$1() -androidx.dynamicanimation.R$drawable -com.xw.repo.bubbleseekbar.R$integer: int cancel_button_image_alpha -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: ObservableSwitchMap$SwitchMapInnerObserver(io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver,long,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean forecastHourly -androidx.preference.R$attr: int logoDescription -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void onStrategyChanged(com.tencent.bugly.crashreport.common.strategy.StrategyBean) -com.tencent.bugly.crashreport.common.info.b: long j() -com.google.android.material.R$color: int abc_btn_colored_text_material -androidx.fragment.R$id: int visible_removing_fragment_view_tag -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onStart() -wangdaye.com.geometricweather.R$string: int content_desc_check_details -com.google.android.material.R$dimen: int abc_dialog_fixed_width_minor -wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_focused_alpha -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowMinWidthMajor -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Tooltip -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: double lon -androidx.hilt.work.R$id: int accessibility_custom_action_7 -android.didikee.donate.R$attr: int icon -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_longpressed_holo -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro moon() -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int sourceMode -android.didikee.donate.R$style: int Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$id: int clip_horizontal -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundTintMode -androidx.appcompat.R$id: int accessibility_custom_action_17 -okio.Buffer: long size -cyanogenmod.hardware.IThermalListenerCallback$Stub: android.os.IBinder asBinder() -cyanogenmod.app.suggest.ApplicationSuggestion$1: ApplicationSuggestion$1() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_toolbar_default_height -cyanogenmod.hardware.CMHardwareManager: int[] getDisplayGammaCalibration(int) -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Dialog -com.tencent.bugly.proguard.p: com.tencent.bugly.proguard.r a(android.database.Cursor) -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: java.lang.Long poll() -com.google.android.material.R$styleable: int Constraint_motionProgress -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Category -wangdaye.com.geometricweather.R$id: int dialog_location_help_container -wangdaye.com.geometricweather.R$attr: int insetForeground -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.HourlyEntity,int) -cyanogenmod.externalviews.ExternalViewProperties: android.graphics.Rect mHitRect -androidx.preference.R$attr: int windowFixedHeightMajor -okhttp3.internal.http2.Http2Stream: long unacknowledgedBytesRead -retrofit2.Utils$GenericArrayTypeImpl: Utils$GenericArrayTypeImpl(java.lang.reflect.Type) -retrofit2.Platform$Android: Platform$Android() -wangdaye.com.geometricweather.R$id: int visible_removing_fragment_view_tag -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver otherObserver -wangdaye.com.geometricweather.R$layout: int text_view_with_theme_line_height -com.google.android.material.R$styleable: int Chip_checkedIconEnabled -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Surface -okio.RealBufferedSource: okio.Buffer buffer -androidx.constraintlayout.widget.R$color: int material_blue_grey_800 -androidx.dynamicanimation.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: double Value -io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function) -cyanogenmod.themes.ThemeManager$1$1: int val$progress -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_DarkActionBar -com.amap.api.location.AMapLocation: java.lang.String r -com.turingtechnologies.materialscrollbar.R$attr: int chipIcon -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String frenchDepartment -androidx.constraintlayout.widget.R$attr: int flow_horizontalStyle -wangdaye.com.geometricweather.R$id: int container -okio.BufferedSink: okio.BufferedSink emitCompleteSegments() -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setApparentTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$styleable: int[] TextInputEditText -android.didikee.donate.R$drawable: int abc_action_bar_item_background_material -cyanogenmod.app.ICMTelephonyManager: void setSubState(int,boolean) -com.google.android.material.slider.RangeSlider: void setThumbElevationResource(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm10(java.lang.String) -io.reactivex.Observable: io.reactivex.observers.TestObserver test() -androidx.appcompat.R$id: int scrollIndicatorDown -com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onModeChanged(boolean) -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarStyle -cyanogenmod.weather.CMWeatherManager$RequestStatus: int NO_MATCH_FOUND -com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior -androidx.legacy.coreutils.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: long StartEpochDateTime -androidx.appcompat.widget.LinearLayoutCompat: void setOrientation(int) -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Header$Listener access$100(okhttp3.internal.http2.Http2Stream) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: java.lang.String Unit -wangdaye.com.geometricweather.R$string: int settings_notification_hide_icon_off -okhttp3.Response: long sentRequestAtMillis() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String o3Desc -com.google.android.material.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -cyanogenmod.weather.WeatherInfo: int getWindSpeedUnit() -androidx.fragment.R$style: R$style() -cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String toString() -okhttp3.internal.tls.OkHostnameVerifier -com.google.android.material.R$attr: int counterMaxLength -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Circular -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.util.Date getPubTime() -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_SLOW_AVG -androidx.appcompat.view.menu.ActionMenuItemView: void setPopupCallback(androidx.appcompat.view.menu.ActionMenuItemView$PopupCallback) -wangdaye.com.geometricweather.R$id: int SHOW_PATH -androidx.hilt.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_minHeight -james.adaptiveicon.R$attr: int autoSizePresetSizes -androidx.appcompat.R$styleable: int GradientColor_android_centerX -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_divider_material -androidx.core.widget.NestedScrollView$SavedState: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableItem_android_id -okhttp3.internal.http2.Header: java.lang.String TARGET_METHOD_UTF8 -androidx.preference.R$styleable: int LinearLayoutCompat_android_weightSum -wangdaye.com.geometricweather.R$color: int colorLine_dark -androidx.appcompat.R$anim: int abc_tooltip_exit -okhttp3.internal.platform.Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -com.jaredrummler.android.colorpicker.R$layout: int notification_template_custom_big -cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(java.lang.String,java.lang.String,android.net.Uri,android.net.Uri) -okio.RealBufferedSink: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) -com.google.android.material.slider.BaseSlider: void setTickActiveTintList(android.content.res.ColorStateList) -com.google.android.material.R$style: int Widget_MaterialComponents_FloatingActionButton -wangdaye.com.geometricweather.R$drawable: int btn_radio_off_to_on_mtrl_animation -com.google.android.material.R$id: int deltaRelative -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconEndPadding -wangdaye.com.geometricweather.R$drawable: int ic_plus -androidx.coordinatorlayout.R$id: int icon -com.google.android.material.R$styleable: int TextInputLayout_endIconDrawable -wangdaye.com.geometricweather.R$color: int bright_foreground_disabled_material_light -androidx.preference.R$style: int ThemeOverlay_AppCompat_DayNight -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: java.util.concurrent.atomic.AtomicReference timer -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onNext(java.lang.Object) -com.google.android.material.R$id: int accessibility_custom_action_6 -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_material -androidx.hilt.work.R$attr: int fontProviderFetchTimeout -com.google.android.gms.common.R$string -androidx.appcompat.R$anim: int abc_fade_in -com.google.android.material.R$id: int dialog_button -wangdaye.com.geometricweather.R$string: int app_name -com.google.android.material.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification -com.turingtechnologies.materialscrollbar.R$attr: int searchHintIcon -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_DEFAULT -cyanogenmod.weather.CMWeatherManager$1$1 -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ButtonBar -com.turingtechnologies.materialscrollbar.R$id: int search_voice_btn -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.util.List value -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.lang.String titleHtml -cyanogenmod.alarmclock.ClockContract -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionBarLayout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX() -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_radius_on_dragging -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_PopupMenu -okio.RealBufferedSource: int readUtf8CodePoint() -cyanogenmod.weather.CMWeatherManager: void cancelRequest(int) -wangdaye.com.geometricweather.R$styleable: int Slider_tickVisible -androidx.appcompat.R$dimen: int abc_dropdownitem_text_padding_right -okhttp3.MultipartBody$Part: okhttp3.RequestBody body -com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getIndicatorHeight() -androidx.dynamicanimation.R$attr: int ttcIndex -okhttp3.internal.http2.Http2: byte TYPE_GOAWAY -com.google.android.material.R$dimen: int abc_text_size_subhead_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setZh_TW(java.lang.String) -androidx.preference.R$styleable: int MenuItem_contentDescription -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String getType() -com.tencent.bugly.proguard.w: boolean c() -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_font -io.reactivex.internal.observers.DeferredScalarDisposable: void complete() -com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean isDisposed() -cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_MSIM_PHONE_STATE -androidx.preference.R$styleable: int SeekBarPreference_showSeekBarValue -android.didikee.donate.R$style: int Widget_AppCompat_SeekBar_Discrete -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_width -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource LOCAL -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: CaiYunMainlyResult$CurrentBean$TemperatureBean() -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabBackground -wangdaye.com.geometricweather.R$layout: int preference_widget_switch -android.didikee.donate.R$id: int customPanel -wangdaye.com.geometricweather.R$id: int notification_big_icon_5 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_47 -com.google.android.material.internal.ForegroundLinearLayout: void setForeground(android.graphics.drawable.Drawable) -androidx.preference.R$styleable: int FontFamilyFont_android_fontWeight -androidx.legacy.coreutils.R$styleable: int GradientColorItem_android_offset -androidx.preference.R$dimen: int tooltip_corner_radius -retrofit2.OkHttpCall$NoContentResponseBody: long contentLength -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCopyDrawable -androidx.core.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_wavePeriod -cyanogenmod.externalviews.KeyguardExternalView$1: void onServiceDisconnected(android.content.ComponentName) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_tooltipFrameBackground -james.adaptiveicon.R$color: int primary_dark_material_dark -com.tencent.bugly.proguard.i: java.lang.Object a(java.lang.Object,int,boolean) -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_AIR_QUALITY -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_COLOR_AUTO_VALIDATOR -androidx.appcompat.widget.Toolbar: int getCurrentContentInsetRight() -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onComplete() -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onComplete() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton -androidx.preference.R$id: int visible_removing_fragment_view_tag -androidx.work.R$id: int accessibility_custom_action_8 -com.baidu.location.e.h$c: com.baidu.location.e.h$c d -io.reactivex.internal.subscribers.StrictSubscriber: boolean done -com.google.android.material.R$styleable: int[] RecycleListView -com.amap.api.location.AMapLocation: void setCountry(java.lang.String) -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: void setKeyLineVisibility(boolean) -io.reactivex.Observable: io.reactivex.Observable concatMapEager(io.reactivex.functions.Function,int,int) -com.tencent.bugly.crashreport.common.info.a: boolean R() -androidx.work.R$id: int accessibility_custom_action_18 -okhttp3.Cache$2: java.lang.String next() -cyanogenmod.app.Profile$ProfileTrigger -wangdaye.com.geometricweather.R$string: int material_timepicker_pm -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_22 -io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function) -com.google.android.material.datepicker.DateValidatorPointBackward: android.os.Parcelable$Creator CREATOR -androidx.appcompat.R$styleable: int GradientColorItem_android_offset -androidx.preference.R$drawable: int btn_radio_off_to_on_mtrl_animation -androidx.appcompat.R$layout: int abc_alert_dialog_material -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -okhttp3.internal.http2.Http2: int INITIAL_MAX_FRAME_SIZE -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_tooltipText -okhttp3.internal.http.StatusLine: int code -com.google.android.material.R$string: int abc_searchview_description_voice -com.google.android.material.R$dimen: int material_clock_number_text_size -androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy[] values() -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_precise_anchor_threshold -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_font -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.R$array: int live_wallpaper_weather_kind_values -wangdaye.com.geometricweather.R$layout: int widget_multi_city_horizontal -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: ObservableGroupJoin$LeftRightEndObserver(io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport,boolean,int) -cyanogenmod.weather.WeatherInfo: WeatherInfo(android.os.Parcel,cyanogenmod.weather.WeatherInfo$1) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getHeaderHeight() -org.greenrobot.greendao.database.DatabaseOpenHelper: void onUpgrade(android.database.sqlite.SQLiteDatabase,int,int) -com.google.android.gms.base.R$drawable: int googleg_disabled_color_18 -wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMarkTint -androidx.appcompat.resources.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer wetBulbTemperature -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isDataConnectionEnabled -okhttp3.HttpUrl: okhttp3.HttpUrl parse(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle getInstance(java.lang.String) -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -androidx.hilt.work.R$drawable: int notification_icon_background -androidx.appcompat.R$drawable: int abc_btn_radio_material -wangdaye.com.geometricweather.R$dimen: int mtrl_progress_circular_radius -android.didikee.donate.R$styleable: int AppCompatTheme_viewInflaterClass -android.didikee.donate.R$dimen: int abc_action_bar_content_inset_with_nav -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: MfForecastV2Result$Geometry() -wangdaye.com.geometricweather.R$string: int settings_title_list_animation_switch -android.didikee.donate.R$attr: int listLayout -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Icon -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -com.turingtechnologies.materialscrollbar.R$attr: int textAppearancePopupMenuHeader -com.google.android.material.R$color: int mtrl_filled_stroke_color -androidx.customview.R$dimen: int compat_button_inset_vertical_material -okhttp3.EventListener: void requestHeadersEnd(okhttp3.Call,okhttp3.Request) -okio.Buffer: int read(byte[]) -com.bumptech.glide.integration.okhttp.R$styleable: int[] CoordinatorLayout_Layout -io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler) -com.google.android.material.R$attr: int endIconTintMode -androidx.constraintlayout.widget.R$dimen: int abc_config_prefDialogWidth -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart -wangdaye.com.geometricweather.R$styleable: int ChipGroup_selectionRequired -androidx.appcompat.R$styleable: int[] Toolbar -com.google.android.material.R$attr: int floatingActionButtonStyle -androidx.vectordrawable.animated.R$integer -com.google.android.material.R$id: int mini -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle NATIVE -androidx.appcompat.R$style: int Base_Widget_AppCompat_ButtonBar -com.jaredrummler.android.colorpicker.R$attr: int reverseLayout -com.jaredrummler.android.colorpicker.R$attr: int viewInflaterClass -okhttp3.internal.http2.Hpack$Writer: void writeInt(int,int,int) -com.google.android.gms.common.api.UnsupportedApiCallException -com.baidu.location.e.l$b: l$b(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int,com.baidu.location.e.l$1) -androidx.transition.R$id: int ghost_view_holder -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardBackgroundColor -retrofit2.HttpException: java.lang.String message() -cyanogenmod.app.CustomTile$ExpandedItem: int itemDrawableResourceId -androidx.preference.R$attr: int maxWidth -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarButtonStyle -androidx.loader.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.R$style: int Base_V26_Widget_AppCompat_Toolbar -androidx.appcompat.R$string: int abc_activity_chooser_view_see_all -cyanogenmod.themes.ThemeChangeRequest$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl -wangdaye.com.geometricweather.R$id: int blocking -okhttp3.OkHttpClient: boolean followRedirects -com.jaredrummler.android.colorpicker.R$anim: int abc_fade_in -androidx.work.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed Speed -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Time -okhttp3.OkHttpClient$1: int code(okhttp3.Response$Builder) -wangdaye.com.geometricweather.R$id: int dialog_location_help_locationContainer -com.tencent.bugly.crashreport.common.info.b: java.lang.String e(android.content.Context) -androidx.lifecycle.ClassesInfoCache: java.util.Map mHasLifecycleMethods -com.google.android.material.R$style: int TestStyleWithLineHeight -com.google.android.material.R$styleable: int KeyTimeCycle_waveOffset -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconTint -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_normal_material_dark -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setBackgroundResource(int) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextStyle -wangdaye.com.geometricweather.db.entities.MinutelyEntity: long time -androidx.viewpager.R$dimen: int notification_right_side_padding_top -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource) -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerNext() -androidx.constraintlayout.widget.R$attr: int borderlessButtonStyle -com.google.android.material.internal.BaselineLayout -androidx.appcompat.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -com.google.android.material.R$id: int BOTTOM_START -com.turingtechnologies.materialscrollbar.R$anim: int design_bottom_sheet_slide_in -androidx.lifecycle.ViewModelProvider$KeyedFactory: ViewModelProvider$KeyedFactory() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_popupWindowStyle -android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -com.tencent.bugly.crashreport.crash.d: com.tencent.bugly.crashreport.crash.b d -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_middle_mtrl_dark -androidx.legacy.coreutils.R$id: int italic -androidx.preference.R$styleable: int EditTextPreference_useSimpleSummaryProvider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling Ceiling -wangdaye.com.geometricweather.R$attr: int deriveConstraintsFrom -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String u -androidx.appcompat.resources.R$dimen: int compat_button_inset_vertical_material -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onPause() -james.adaptiveicon.R$styleable: int ButtonBarLayout_allowStacking -cyanogenmod.externalviews.ExternalViewProviderService$Provider: int DEFAULT_WINDOW_TYPE -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemBackgroundRes(int) -com.google.android.material.R$styleable: int KeyCycle_android_translationX -com.google.android.material.R$color: int ripple_material_light -androidx.appcompat.app.ToolbarActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -wangdaye.com.geometricweather.R$styleable: int Preference_android_persistent -com.amap.api.location.AMapLocationClient: AMapLocationClient(android.content.Context,android.content.Intent) -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_BLUETOOTH -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setTopIconDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerClose(boolean,io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver) -androidx.swiperefreshlayout.R$layout: int notification_template_custom_big -androidx.work.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: boolean isChinese() -wangdaye.com.geometricweather.R$id: int action_bar_root -com.google.android.material.R$style: int Base_V22_Theme_AppCompat -com.google.android.material.R$attr: int layout_editor_absoluteX -james.adaptiveicon.R$id: int scrollIndicatorUp -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(boolean) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.Observer downstream -com.xw.repo.bubbleseekbar.R$attr: int color -com.tencent.bugly.crashreport.biz.a: void a(java.util.List) -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_switchTextOn -wangdaye.com.geometricweather.common.basic.models.weather.UV: boolean isValidIndex() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -james.adaptiveicon.R$styleable: int AppCompatTextView_fontFamily -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: org.reactivestreams.Subscription upstream -androidx.preference.R$attr: int toolbarStyle -androidx.appcompat.resources.R$dimen: int notification_action_icon_size -okhttp3.internal.http2.Header: java.lang.String TARGET_AUTHORITY_UTF8 -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderQuery -cyanogenmod.profiles.LockSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -com.google.android.gms.common.api.Status: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context) -com.tencent.bugly.proguard.n: android.content.Context c -wangdaye.com.geometricweather.R$styleable: int SearchView_layout -com.google.android.material.chip.Chip: void setChipIconSize(float) -okio.Segment: int SHARE_MINIMUM -com.google.android.material.R$dimen: int abc_action_bar_stacked_tab_max_width -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderCerts -androidx.appcompat.R$styleable: int AlertDialog_android_layout -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit valueOf(java.lang.String) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setIconDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset -cyanogenmod.app.ProfileManager: java.lang.String INTENT_ACTION_PROFILE_UPDATED -okhttp3.internal.http1.Http1Codec$AbstractSource: boolean closed -okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withWriteTimeout(int,java.util.concurrent.TimeUnit) -androidx.vectordrawable.R$id: int right_icon -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginEnd -androidx.preference.R$style: int Widget_AppCompat_ActionButton_CloseMode -android.didikee.donate.R$id: int scrollIndicatorDown -androidx.hilt.work.R$id: int icon_group -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: int Degrees -com.google.android.material.R$id: int accessibility_custom_action_19 -com.google.android.material.R$attr: int cardElevation -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onComplete() -androidx.appcompat.R$dimen: int compat_button_padding_vertical_material -androidx.swiperefreshlayout.R$color: int notification_icon_bg_color -okhttp3.internal.http2.Settings: boolean getEnablePush(boolean) -cyanogenmod.weather.CMWeatherManager$1$1: java.lang.String val$providerName -androidx.transition.R$drawable: int notify_panel_notification_icon_bg -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.StatusBarPanelCustomTile clone() -com.google.android.material.R$styleable: int Layout_layout_constraintBaseline_creator -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemShapeAppearance -androidx.drawerlayout.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum() -cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String mName -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: JdkWithJettyBootPlatform$JettyNegoProvider(java.util.List) -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTheme -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayInvalidStyle -androidx.preference.R$styleable: int Spinner_popupTheme -androidx.viewpager.R$styleable: int GradientColor_android_startColor -androidx.appcompat.widget.AppCompatTextView: int getAutoSizeTextType() -com.jaredrummler.android.colorpicker.R$attr: int actionProviderClass -okhttp3.internal.http2.Http2: byte TYPE_CONTINUATION -okio.Buffer$UnsafeCursor: long offset -android.didikee.donate.R$styleable: int SwitchCompat_trackTintMode -james.adaptiveicon.R$attr: int autoSizeStepGranularity -androidx.work.ListenableWorker -com.google.android.material.R$string: int hide_bottom_view_on_scroll_behavior -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String datetime -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_toId -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework -com.amap.api.fence.GeoFence: void setActivatesAction(int) -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_dividerPadding -james.adaptiveicon.R$style: int Widget_Compat_NotificationActionContainer -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State valueOf(java.lang.String) -androidx.work.NetworkType: androidx.work.NetworkType NOT_ROAMING -com.google.android.material.R$attr: int editTextStyle -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.Observer downstream -com.google.android.material.R$id: int postLayout -cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo access$202(cyanogenmod.weatherservice.ServiceRequestResult,cyanogenmod.weather.WeatherInfo) -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light -com.google.android.material.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$interpolator: int mtrl_linear -james.adaptiveicon.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -retrofit2.Retrofit$Builder: java.util.List callAdapterFactories() -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider access$000(cyanogenmod.externalviews.KeyguardExternalView) -androidx.drawerlayout.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$attr: int listPreferredItemHeightSmall -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Medium -androidx.appcompat.R$attr: int alertDialogTheme -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginTop -androidx.work.R$styleable: int FontFamily_fontProviderFetchStrategy -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_Layout_layout_scrollFlags -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.Date pubTime -wangdaye.com.geometricweather.R$attr: int cpv_animAutostart -androidx.appcompat.R$id: int expanded_menu -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_right -androidx.constraintlayout.widget.R$styleable: int OnSwipe_nestedScrollFlags -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_default -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String e() -androidx.dynamicanimation.R$styleable: int GradientColor_android_centerColor -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver -com.tencent.bugly.crashreport.common.info.a: java.lang.String j -androidx.preference.R$styleable: int ListPreference_entries -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_section_text -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_updateProfile -cyanogenmod.externalviews.ExternalView$5: ExternalView$5(cyanogenmod.externalviews.ExternalView) -com.jaredrummler.android.colorpicker.R$attr: int alertDialogStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeStepGranularity -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: float getMax() -okhttp3.internal.tls.CertificateChainCleaner: okhttp3.internal.tls.CertificateChainCleaner get(javax.net.ssl.X509TrustManager) -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -okhttp3.CacheControl: boolean noStore() -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode WRITE_AHEAD_LOGGING -com.jaredrummler.android.colorpicker.R$id: int split_action_bar -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void pushPromise(int,int,java.util.List) -okhttp3.internal.http1.Http1Codec$FixedLengthSink: void flush() -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Button -com.google.android.material.chip.Chip: void setCloseIconPressed(boolean) -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_background_corner_radius -android.didikee.donate.R$dimen: int abc_seekbar_track_progress_height_material -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_max -androidx.loader.R$id: int info -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTodaysLow(double) -com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String r -cyanogenmod.app.LiveLockScreenInfo$1: cyanogenmod.app.LiveLockScreenInfo createFromParcel(android.os.Parcel) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ListPopupWindow -androidx.constraintlayout.widget.R$styleable: int Transition_motionInterpolator -com.google.android.material.R$attr: int tabIconTint -androidx.transition.R$layout: int notification_template_part_time -androidx.appcompat.R$styleable: int AppCompatTheme_searchViewStyle -androidx.preference.R$id: int accessibility_custom_action_24 -android.didikee.donate.R$attr: int dividerVertical -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_textAllCaps -androidx.preference.R$style: int Widget_AppCompat_Spinner_Underlined -com.xw.repo.bubbleseekbar.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: java.util.List getBrands() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.Float speed -wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_selected -cyanogenmod.weatherservice.ServiceRequestResult$1: cyanogenmod.weatherservice.ServiceRequestResult createFromParcel(android.os.Parcel) -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_dither -com.tencent.bugly.proguard.ak: java.util.Map s -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar_Small -wangdaye.com.geometricweather.remoteviews.config.Hilt_HourlyTrendWidgetConfigActivity -com.xw.repo.bubbleseekbar.R$attr: int toolbarStyle -com.google.android.material.R$attr: int itemStrokeWidth -cyanogenmod.providers.DataUsageContract: java.lang.String[] PROJECTION_ALL -james.adaptiveicon.R$attr: int preserveIconSpacing -com.tencent.bugly.proguard.y$a: java.lang.String c -wangdaye.com.geometricweather.background.polling.work.worker.TodayForecastUpdateWorker: TodayForecastUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) -okhttp3.Headers$Builder: java.util.List namesAndValues -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCloseDrawable -okhttp3.Challenge: java.lang.String scheme -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortTemperature(android.content.Context,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -androidx.appcompat.R$attr: int textAppearanceSmallPopupMenu -android.didikee.donate.R$dimen: int notification_subtext_size -okhttp3.ConnectionPool: int maxIdleConnections -okhttp3.HttpUrl: java.lang.String password -retrofit2.converter.gson.GsonConverterFactory: com.google.gson.Gson gson -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: void setTextColors(int) -com.turingtechnologies.materialscrollbar.R$attr: int navigationIcon -wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_material -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginRight -james.adaptiveicon.R$drawable: int abc_edit_text_material -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_phaseView -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month_labeled -cyanogenmod.app.StatusBarPanelCustomTile$1: cyanogenmod.app.StatusBarPanelCustomTile[] newArray(int) -com.google.android.material.slider.Slider: android.content.res.ColorStateList getHaloTintList() -james.adaptiveicon.R$attr: int switchTextAppearance -wangdaye.com.geometricweather.R$drawable: int notif_temp_135 -cyanogenmod.app.IPartnerInterface$Stub$Proxy: void shutdown() -com.google.gson.stream.JsonReader: boolean skipTo(java.lang.String) -com.xw.repo.bubbleseekbar.R$style: int Base_AlertDialog_AppCompat_Light -androidx.appcompat.R$drawable: int abc_ratingbar_small_material -com.jaredrummler.android.colorpicker.R$color: int primary_text_default_material_light -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber -androidx.preference.R$layout: int abc_select_dialog_material -com.xw.repo.bubbleseekbar.R$attr: int backgroundSplit -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setTitle(java.lang.String) -androidx.drawerlayout.R$integer: R$integer() -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.IndeterminateDrawable getIndeterminateDrawable() -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: double lat -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTint -androidx.customview.R$style: int TextAppearance_Compat_Notification -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_arrowShaftLength -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItemSmall -androidx.appcompat.R$styleable: int AppCompatTheme_popupWindowStyle -androidx.preference.R$dimen: int notification_right_icon_size -james.adaptiveicon.R$anim -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setStatus(int) -androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_JAVA_CRASH -wangdaye.com.geometricweather.R$styleable: int Constraint_transitionEasing -androidx.viewpager2.R$attr -james.adaptiveicon.R$color: int bright_foreground_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial -retrofit2.RequestBuilder: void addQueryParam(java.lang.String,java.lang.String,boolean) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayTodayStyle -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.MinutelyEntity,int) -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveOffset -cyanogenmod.externalviews.ExternalView$3: ExternalView$3(cyanogenmod.externalviews.ExternalView) -cyanogenmod.app.ICustomTileListener: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -com.turingtechnologies.materialscrollbar.R$attr: int multiChoiceItemLayout -wangdaye.com.geometricweather.R$string: int feedback_background_location_summary -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeFindDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.IRequestInfoListener mListener -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean cancelled -wangdaye.com.geometricweather.R$styleable: int CardView_cardBackgroundColor -com.amap.api.fence.DistrictItem -androidx.constraintlayout.widget.R$id: int title -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarStyle -okhttp3.OkHttpClient$1: boolean equalsNonHost(okhttp3.Address,okhttp3.Address) -wangdaye.com.geometricweather.R$array: int air_quality_unit_voices -android.didikee.donate.R$style: int Base_Widget_AppCompat_SearchView -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginStart -androidx.vectordrawable.animated.R$styleable: int GradientColorItem_android_color -com.jaredrummler.android.colorpicker.R$color: int button_material_light -androidx.constraintlayout.widget.R$dimen: int notification_big_circle_margin -android.support.v4.os.IResultReceiver$Default -wangdaye.com.geometricweather.R$attr: int layout_insetEdge -androidx.preference.R$attr: int dialogTheme -com.turingtechnologies.materialscrollbar.DragScrollBar: DragScrollBar(android.content.Context,android.util.AttributeSet) -cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onListenerConnected_0 -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Long id -android.didikee.donate.R$styleable: int ViewStubCompat_android_id -james.adaptiveicon.R$attr: int listMenuViewStyle -androidx.preference.R$attr: int listPreferredItemHeightSmall -wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitleTextColor -com.google.android.material.R$styleable: int Toolbar_titleMarginBottom -retrofit2.http.PATCH: java.lang.String value() -com.baidu.location.e.h$b: com.baidu.location.e.h$b a -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMargins -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onBouncerShowing(boolean) -okhttp3.internal.http2.Settings: boolean isSet(int) -com.google.android.material.R$styleable: int[] KeyPosition -com.google.android.material.transformation.TransformationChildCard: TransformationChildCard(android.content.Context) -okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory newSslSocketFactory(javax.net.ssl.X509TrustManager) -james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedWidthMinor -com.google.android.material.R$style: int Platform_V25_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardPreventCornerOverlap -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService this$0 -com.tencent.bugly.crashreport.biz.a -wangdaye.com.geometricweather.R$attr: int windowFixedWidthMajor -wangdaye.com.geometricweather.R$array: int pressure_units -com.google.android.material.R$color: int design_dark_default_color_secondary -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_min -james.adaptiveicon.R$styleable -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream removeStream(int) -cyanogenmod.providers.CMSettings$Global: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) -io.reactivex.Observable: io.reactivex.Observable flatMapSingle(io.reactivex.functions.Function) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: int getStatus() -androidx.activity.R$styleable: int ColorStateListItem_android_alpha -com.google.android.material.R$attr: int chipEndPadding -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -com.google.android.material.R$styleable: int ActionBar_homeAsUpIndicator -com.xw.repo.bubbleseekbar.R$attr: int checkedTextViewStyle -androidx.preference.R$dimen: int tooltip_y_offset_non_touch -com.xw.repo.bubbleseekbar.R$id: int contentPanel -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay -com.bumptech.glide.R$styleable: int ColorStateListItem_alpha -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_Test -wangdaye.com.geometricweather.R$id: int tag_icon_top -androidx.appcompat.R$dimen: int abc_action_bar_stacked_max_height -androidx.appcompat.R$style: int Theme_AppCompat_Empty -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle valueOf(java.lang.String) -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_pressed_holo_dark -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth -cyanogenmod.hardware.CMHardwareManager: boolean setVibratorIntensity(int) -android.didikee.donate.R$id: int radio -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getO3() -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarItemBackground -androidx.hilt.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.R$drawable: int ic_launcher_round -androidx.preference.R$drawable: int abc_spinner_mtrl_am_alpha -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent[] values() -wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundODialog: RunningInBackgroundODialog() -androidx.transition.R$styleable: int FontFamilyFont_ttcIndex -retrofit2.Utils$ParameterizedTypeImpl: int hashCode() -androidx.lifecycle.extensions.R$drawable: int notification_action_background -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_MAX_INDEX -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum Minimum -androidx.viewpager.R$drawable: int notification_bg_low_normal -androidx.hilt.work.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.R$drawable: int avd_show_password -cyanogenmod.app.CustomTile: java.lang.String resourcesPackageName -com.tencent.bugly.proguard.h -wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_material -wangdaye.com.geometricweather.R$integer: int cpv_default_start_angle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String uvIndex -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.disposables.Disposable upstream -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_backgroundSplit -com.bumptech.glide.load.engine.GlideException: java.lang.Exception getOrigin() -cyanogenmod.app.LiveLockScreenInfo: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_LIGHT -androidx.customview.R$styleable: int FontFamily_fontProviderQuery -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_motionTarget -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.util.NotificationLite$DisposableNotification: io.reactivex.disposables.Disposable upstream -androidx.viewpager2.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.appcompat.R$dimen: int abc_text_size_display_2_material -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -okhttp3.internal.http2.Hpack$Reader: int nextHeaderIndex -okhttp3.Response: okhttp3.Handshake handshake -androidx.lifecycle.ComputableLiveData$1 -androidx.appcompat.R$styleable: int AppCompatTheme_listDividerAlertDialog -androidx.appcompat.app.AppCompatActivity -com.tencent.bugly.crashreport.crash.jni.b -okio.BufferedSource: short readShort() -com.tencent.bugly.crashreport.biz.b: boolean j() -androidx.drawerlayout.R$layout: int notification_action_tombstone -com.jaredrummler.android.colorpicker.ColorPickerView -okhttp3.internal.http2.Http2Reader$ContinuationSource: byte flags -wangdaye.com.geometricweather.R$dimen: int abc_list_item_padding_horizontal_material -androidx.dynamicanimation.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_start -androidx.preference.R$styleable: int SwitchPreference_android_switchTextOff -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeFindDrawable -james.adaptiveicon.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -com.google.android.gms.internal.common.zzq: zzq(com.google.android.gms.internal.common.zzo) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog -cyanogenmod.weather.CMWeatherManager$1$1: CMWeatherManager$1$1(cyanogenmod.weather.CMWeatherManager$1,java.lang.String) -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setRingtone(java.lang.String) -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_localTimeText -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_medium_material -com.google.android.material.R$styleable: int Slider_thumbElevation -okio.BufferedSink: okio.BufferedSink writeHexadecimalUnsignedLong(long) -com.xw.repo.bubbleseekbar.R$attr: int logo -org.greenrobot.greendao.AbstractDao: java.lang.Object load(java.lang.Object) -wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWeekWidgetConfigActivity: Hilt_DayWeekWidgetConfigActivity() -androidx.appcompat.R$color: int bright_foreground_material_light -com.google.android.material.R$attr: int chipIconSize -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: boolean isDisposed() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitationProbability -com.google.android.material.chip.Chip: void setCheckedIconTint(android.content.res.ColorStateList) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: int UnitType -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor[] values() -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog -androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context,android.util.AttributeSet,int) -okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_ENCODE_SET_URI -com.amap.api.location.CoordinateConverter: com.amap.api.location.CoordinateConverter$CoordType c -cyanogenmod.externalviews.KeyguardExternalView$6: void run() -com.google.android.gms.base.R$color: int common_google_signin_btn_tint -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -androidx.appcompat.R$styleable: int ActionBar_icon -retrofit2.http.QueryName -james.adaptiveicon.R$color: int abc_secondary_text_material_dark -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean pressure -james.adaptiveicon.R$styleable: int AppCompatTheme_popupWindowStyle -wangdaye.com.geometricweather.R$id: int item_pollen_daily -com.turingtechnologies.materialscrollbar.R$id: int title -wangdaye.com.geometricweather.common.basic.models.weather.Wind -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu -retrofit2.CallAdapter$Factory: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemRippleColor(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Menu -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -androidx.constraintlayout.widget.R$style: int Base_AlertDialog_AppCompat_Light -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type[] getActualTypeArguments() -wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_text_padding_left -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_31 -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -com.google.android.gms.tasks.DuplicateTaskCompletionException: java.lang.IllegalStateException of(com.google.android.gms.tasks.Task) -wangdaye.com.geometricweather.R$color: int design_fab_shadow_mid_color -io.reactivex.Observable: io.reactivex.Observable switchMap(io.reactivex.functions.Function) -james.adaptiveicon.R$styleable: int ActionMode_titleTextStyle -cyanogenmod.themes.IThemeProcessingListener: void onFinishedProcessing(java.lang.String) -com.bumptech.glide.R$id: int action_text -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.util.List getValue() -com.xw.repo.bubbleseekbar.R$string: int status_bar_notification_info_overflow -com.google.android.material.R$styleable: int Toolbar_contentInsetRight -com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabRippleColor() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$drawable: int notif_temp_56 -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean isEmpty() -androidx.preference.R$drawable: int abc_cab_background_internal_bg -wangdaye.com.geometricweather.R$string: int content_des_co -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_NAVIGATION_BAR -wangdaye.com.geometricweather.R$id: int item_weather_daily_uv_title -com.google.android.material.R$drawable: int ic_mtrl_chip_checked_circle -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetLeft -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_searchViewStyle -androidx.constraintlayout.widget.R$attr: int popupTheme -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderPackage -androidx.appcompat.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.vectordrawable.R$id: int notification_main_column -org.greenrobot.greendao.AbstractDaoSession: long insertOrReplace(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceBody2 -androidx.core.R$dimen: int compat_button_inset_horizontal_material -androidx.appcompat.R$id: int action_mode_bar_stub -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatImageView -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_maxActionInlineWidth -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataContainer -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String suggest -com.jaredrummler.android.colorpicker.R$layout: int cpv_dialog_color_picker -androidx.appcompat.R$color: int primary_material_light -cyanogenmod.weather.util.WeatherUtils: WeatherUtils() -com.bumptech.glide.load.HttpException: long serialVersionUID -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void goAway(int,okhttp3.internal.http2.ErrorCode,okio.ByteString) -android.didikee.donate.R$styleable: int ActionMode_height -wangdaye.com.geometricweather.R$attr: int autoCompleteTextViewStyle -androidx.hilt.work.R$id -com.jaredrummler.android.colorpicker.R$layout: int preference -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_orderInCategory -okhttp3.logging.LoggingEventListener: void connectStart(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy) -androidx.loader.R$layout: int notification_action -androidx.work.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getLatitude() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: double Value -androidx.viewpager.R$id: int action_container -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDegreeDayTemperature(java.lang.Integer) -androidx.fragment.R$styleable: int Fragment_android_id -wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_light -com.google.android.material.R$attr: int motionDebug -android.didikee.donate.R$id: int search_close_btn -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.room.RoomDatabase$JournalMode -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -com.turingtechnologies.materialscrollbar.R$dimen: int hint_alpha_material_light -com.google.android.material.card.MaterialCardView: void setUseCompatPadding(boolean) -wangdaye.com.geometricweather.R$id: int action_mode_bar_stub -androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1 -androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$style: int TestThemeWithLineHeight -wangdaye.com.geometricweather.R$layout: int dialog_resident_location -wangdaye.com.geometricweather.db.entities.MinutelyEntity: boolean daylight -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextBackground -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean tryOnError(java.lang.Throwable) -androidx.preference.R$attr: int actionBarPopupTheme -androidx.vectordrawable.R$id: int accessibility_custom_action_14 -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_anchor -androidx.preference.R$attr: int backgroundTintMode -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconEnabled -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ImageButton -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Update -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShrinkMotionSpec(com.google.android.material.animation.MotionSpec) -com.google.android.material.R$attr: int boxCornerRadiusTopEnd -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_editTextPreferenceStyle -okio.BufferedSource: long indexOf(byte,long) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -androidx.work.R$id: int right_icon -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List ziwaixian -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.amap.api.fence.PoiItem: java.lang.String getPoiId() -androidx.appcompat.widget.AppCompatCheckBox: void setSupportBackgroundTintList(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startX -androidx.appcompat.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_thumb_radius -cyanogenmod.app.CustomTile$Builder: android.graphics.Bitmap mRemoteIcon -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction -cyanogenmod.providers.DataUsageContract: java.lang.String FAST_SAMPLES -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegment(java.lang.String) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int ISOLATED_THUNDERSHOWERS -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -okhttp3.Protocol: okhttp3.Protocol get(java.lang.String) -wangdaye.com.geometricweather.R$color: int material_on_background_emphasis_high_type -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCheckedIconTint() -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconPadding -com.jaredrummler.android.colorpicker.R$attr: int drawerArrowStyle -okhttp3.Cache$2: java.util.Iterator delegate -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: io.reactivex.internal.disposables.DisposableContainer tasks -androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_checkbox -wangdaye.com.geometricweather.R$id: int text_input_start_icon -androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_to_on_mtrl_015 -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.LifecycleOwner get() -androidx.lifecycle.ViewModelProvider$OnRequeryFactory: void onRequery(androidx.lifecycle.ViewModel) -retrofit2.Converter$Factory: retrofit2.Converter stringConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: java.lang.String Unit -androidx.hilt.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial Imperial -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onScreenTurnedOff() -cyanogenmod.weatherservice.ServiceRequestResult$Builder: java.util.List mLocationLookupList -okhttp3.logging.LoggingEventListener: void responseHeadersStart(okhttp3.Call) -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean fused -androidx.appcompat.R$string: int abc_menu_alt_shortcut_label -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setDisplayState(boolean) -wangdaye.com.geometricweather.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility -androidx.preference.R$drawable: int abc_btn_check_material_anim -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicInteger wip -wangdaye.com.geometricweather.R$string: int key_widget_week -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionModeOverlay -com.turingtechnologies.materialscrollbar.R$dimen: int notification_right_side_padding_top -androidx.constraintlayout.widget.R$styleable: int View_android_focusable -androidx.preference.R$attr: int drawableTint -androidx.vectordrawable.animated.R$id: int action_image -android.support.v4.os.IResultReceiver: void send(int,android.os.Bundle) -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean delayError -com.google.android.material.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -retrofit2.Utils: Utils() -wangdaye.com.geometricweather.R$integer: int status_bar_notification_info_maxnum -androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context) -cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationDefault() -wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.functions.Function combiner -androidx.appcompat.R$id: int action_bar_title -wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_tailColor -wangdaye.com.geometricweather.R$string: int wind_12 -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -com.tencent.bugly.crashreport.common.strategy.StrategyBean: long y -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -com.bumptech.glide.R$id: int start -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayMode -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String BOOTANIMATION_THUMBNAIL -com.turingtechnologies.materialscrollbar.R$attr: int overlapAnchor -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRealFeelShaderTemperature(java.lang.Integer) -com.amap.api.location.AMapLocationQualityReport: AMapLocationQualityReport() -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework -wangdaye.com.geometricweather.R$attr: int badgeGravity -com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_in_top -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setContent(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean) -com.google.android.material.R$attr: int statusBarBackground -androidx.appcompat.R$attr: int editTextStyle -com.tencent.bugly.crashreport.crash.anr.a: java.lang.String g -androidx.hilt.R$dimen: int compat_control_corner_material -androidx.appcompat.R$id: int tag_accessibility_clickable_spans -com.tencent.bugly.crashreport.CrashReport: boolean isLastSessionCrash() -okhttp3.internal.http2.Http2Connection: boolean access$302(okhttp3.internal.http2.Http2Connection,boolean) -androidx.preference.R$string: int abc_searchview_description_query -androidx.appcompat.R$color: int material_grey_850 -retrofit2.Call: retrofit2.Call clone() -com.amap.api.fence.PoiItem: void setPoiType(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_1 -androidx.preference.R$styleable: int AppCompatTextView_drawableTintMode -com.xw.repo.bubbleseekbar.R$attr: int autoSizeMinTextSize -com.google.android.material.slider.BaseSlider: void setValuesInternal(java.util.ArrayList) -com.jaredrummler.android.colorpicker.R$attr: int titleMarginBottom -androidx.viewpager2.widget.ViewPager2: int getCurrentItem() -com.jaredrummler.android.colorpicker.R$dimen: int notification_top_pad -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_FONT -androidx.appcompat.R$layout: int abc_list_menu_item_icon -com.google.android.material.timepicker.ClockFaceView: ClockFaceView(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_background -com.jaredrummler.android.colorpicker.R$attr: int buttonIconDimen -androidx.appcompat.widget.AppCompatEditText: java.lang.CharSequence getText() -wangdaye.com.geometricweather.R$string: int allergen -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableStartCompat -androidx.viewpager2.R$styleable: int FontFamily_fontProviderFetchStrategy -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean disposed -com.tencent.bugly.crashreport.crash.jni.a: void handleNativeException2(int,int,long,long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,int,java.lang.String,java.lang.String,java.lang.String[]) -com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_alpha -com.google.gson.stream.JsonToken: JsonToken(java.lang.String,int) -io.reactivex.Observable: io.reactivex.Observable window(long,long,int) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: int getCity_code() -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_summaryOn -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: Http2Connection$ReaderRunnable$1(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[],okhttp3.internal.http2.Http2Stream) -androidx.appcompat.R$id: int action_image -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String getValue() -androidx.recyclerview.R$styleable: int GradientColor_android_startX -okhttp3.internal.http.HttpCodec: void finishRequest() -androidx.constraintlayout.widget.R$attr: int panelBackground -okhttp3.internal.http2.Http2Connection$7: void execute() -com.google.android.material.tabs.TabLayout: void setTabsFromPagerAdapter(androidx.viewpager.widget.PagerAdapter) -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getUnitId() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String BriefPhrase -com.google.android.material.R$styleable: int BottomNavigationView_itemTextAppearanceInactive -com.google.android.material.R$styleable: int Chip_chipMinHeight -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getDurationText(android.content.Context,float) -androidx.preference.R$dimen: int abc_edit_text_inset_bottom_material -okio.Segment: int SIZE -retrofit2.CompletableFutureCallAdapterFactory: retrofit2.CallAdapter$Factory INSTANCE -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property ResidentPosition -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onComplete() -com.amap.api.fence.DistrictItem: void setDistrictName(java.lang.String) -com.google.android.gms.base.R$string: int common_signin_button_text -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationVoice(android.content.Context,float) -com.google.android.material.R$id: int save_overlay_view -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_android_layout -james.adaptiveicon.R$attr: int subtitleTextAppearance -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void setCancellable(io.reactivex.functions.Cancellable) -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_vertical_padding -com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage valueOf(java.lang.String) -androidx.lifecycle.AndroidViewModel: android.app.Application getApplication() -james.adaptiveicon.R$styleable: int SwitchCompat_track -james.adaptiveicon.R$color: int material_grey_50 -io.reactivex.internal.observers.BasicIntQueueDisposable: boolean offer(java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer iso0 -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_dark -cyanogenmod.power.IPerformanceManager$Stub$Proxy: android.os.IBinder mRemote -com.xw.repo.bubbleseekbar.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$anim: int abc_slide_out_bottom -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: java.util.List brands -androidx.preference.R$styleable: int MenuItem_numericModifiers -androidx.transition.R$dimen: int compat_button_inset_horizontal_material -androidx.vectordrawable.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.R$layout: int custom_dialog -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderDivider -wangdaye.com.geometricweather.db.entities.AlertEntity: void setTime(long) -com.google.android.material.R$styleable: int ActionMode_titleTextStyle -com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_thumb_material -com.google.android.material.textfield.TextInputLayout$SavedState: android.os.Parcelable$Creator CREATOR -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -james.adaptiveicon.R$styleable: int ActionBar_hideOnContentScroll -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalStyle -androidx.vectordrawable.animated.R$dimen: int compat_notification_large_icon_max_width -com.google.android.material.R$id: int test_radiobutton_android_button_tint -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onNext(java.lang.Object) -androidx.viewpager2.widget.ViewPager2: void setOrientation(int) -cyanogenmod.externalviews.ExternalView: void onActivityDestroyed(android.app.Activity) -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motion_postLayoutCollision -com.xw.repo.bubbleseekbar.R$styleable: int[] ViewStubCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_variablePadding -androidx.appcompat.widget.ActionMenuPresenter$ActionButtonSubmenu -com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_selected -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickActiveTintList() -okhttp3.internal.http2.Http2Connection$1 -com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.StrategyBean e -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.jaredrummler.android.colorpicker.R$styleable: int[] ColorStateListItem -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low -com.turingtechnologies.materialscrollbar.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$dimen: int design_fab_elevation -androidx.work.impl.workers.DiagnosticsWorker -wangdaye.com.geometricweather.R$styleable: int Layout_maxHeight -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient build() -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_ALARMS -wangdaye.com.geometricweather.R$id: int chains -okhttp3.Address: javax.net.SocketFactory socketFactory() -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setStatusBar(java.lang.String) -com.google.android.material.slider.Slider: int getHaloRadius() -androidx.cardview.R$dimen: int cardview_default_radius -androidx.dynamicanimation.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.R$styleable: int ConstraintSet_motionProgress -okio.Timeout: long deadlineNanoTime -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.Boolean) -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontStyle -androidx.drawerlayout.R$dimen: int notification_subtext_size -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy NONE -okio.BufferedSink: okio.BufferedSink write(okio.ByteString) -com.google.gson.LongSerializationPolicy$2 -androidx.viewpager.R$styleable: int FontFamilyFont_android_fontVariationSettings -james.adaptiveicon.R$styleable: int Toolbar_maxButtonHeight -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_2 -wangdaye.com.geometricweather.common.ui.activities.AlertActivity: AlertActivity() -com.google.android.material.R$styleable: int KeyPosition_percentY -com.google.android.material.R$drawable: int abc_action_bar_item_background_material -okhttp3.RequestBody$2: RequestBody$2(okhttp3.MediaType,int,byte[],int) -com.google.android.material.R$styleable: int[] MaterialAlertDialogTheme -androidx.drawerlayout.R$drawable: int notification_bg -com.google.android.material.R$attr: int layout_constraintBottom_creator -wangdaye.com.geometricweather.R$drawable: int notif_temp_87 -okhttp3.internal.connection.StreamAllocation: java.net.Socket deallocate(boolean,boolean,boolean) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_placeholder_content -okio.Segment: okio.Segment split(int) -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderFetchStrategy -james.adaptiveicon.R$id: int src_over -retrofit2.ParameterHandler$RelativeUrl: ParameterHandler$RelativeUrl(java.lang.reflect.Method,int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_126 -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$attr: int fabCustomSize -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Body2 -com.google.android.material.R$color: int radiobutton_themeable_attribute_color -com.google.android.material.R$layout: int material_textinput_timepicker -com.google.android.material.internal.NavigationMenuItemView: void setHorizontalPadding(int) -com.google.android.material.tabs.TabItem -com.bumptech.glide.R$color: R$color() -androidx.viewpager2.widget.ViewPager2$SavedState: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void subscribeNext() -com.tencent.bugly.crashreport.CrashReport: int getUserSceneTagId(android.content.Context) -com.github.rahatarmanahmed.cpv.CircularProgressView: void startAnimation() -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setZenMode -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: int UnitType -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean isUserOpened() -androidx.core.R$style: int TextAppearance_Compat_Notification_Time -androidx.appcompat.R$integer -okhttp3.internal.cache.DiskLruCache: okio.BufferedSink journalWriter -androidx.appcompat.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -com.tencent.bugly.proguard.ap: com.tencent.bugly.proguard.ao m -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerError(int,java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarTextViewStyle -androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_1_material -wangdaye.com.geometricweather.R$style: int PreferenceFragmentList -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$layout: int design_navigation_menu -okio.Buffer: void readFully(okio.Buffer,long) -com.google.android.material.R$styleable: int Insets_paddingLeftSystemWindowInsets -com.google.android.gms.base.R$id: int standard -com.google.android.material.R$style: int Base_Widget_AppCompat_ListView_DropDown -com.google.android.material.R$id: int transition_current_scene -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: double Value -io.reactivex.internal.subscriptions.BasicQueueSubscription: int requestFusion(int) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver -com.google.android.material.R$style: int Theme_Design_Light_NoActionBar -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_text_color -okhttp3.internal.connection.RouteDatabase -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: void endOfInput(java.io.IOException) -com.tencent.bugly.crashreport.CrashReport$UserStrategy: void setCrashHandleCallback(com.tencent.bugly.crashreport.CrashReport$CrashHandleCallback) -james.adaptiveicon.R$attr: int actionModeCloseButtonStyle -com.google.android.material.R$anim: int design_snackbar_out -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.lang.Object NULL_KEY -wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_activated_mtrl_alpha -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean done -androidx.drawerlayout.R$styleable: R$styleable() -okhttp3.Cache$CacheRequestImpl$1 -com.google.android.material.R$dimen: int mtrl_btn_z -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onNext(java.lang.Object) -com.google.android.material.button.MaterialButton: void addOnCheckedChangeListener(com.google.android.material.button.MaterialButton$OnCheckedChangeListener) -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextAppearanceActive(int) -androidx.fragment.R$id: int time -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_menu_material -com.bumptech.glide.load.engine.CallbackException: CallbackException(java.lang.Throwable) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.R$id: int transition_layout_save -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_logo -androidx.vectordrawable.animated.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_popupWindowStyle -androidx.lifecycle.ViewModelStores -androidx.hilt.lifecycle.R$color: int secondary_text_default_material_light -androidx.preference.R$style: int Preference_Material -androidx.dynamicanimation.R$id: int tag_transition_group -androidx.coordinatorlayout.R$attr: R$attr() -com.amap.api.fence.GeoFence: int ERROR_CODE_FAILURE_AUTH -com.google.android.gms.location.LocationSettingsResult -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_readPersistentBytes -androidx.appcompat.R$attr: int drawableTopCompat -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickInactiveTintList() -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setMoonDrawable(android.graphics.drawable.Drawable) -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.google.android.gms.base.R$attr: int imageAspectRatio -androidx.constraintlayout.widget.R$styleable: int[] DrawerArrowToggle -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle -android.didikee.donate.R$style: int TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.R$style: int title_text -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton_Overflow -com.jaredrummler.android.colorpicker.R$attr: int spinnerDropDownItemStyle -wangdaye.com.geometricweather.R$styleable: int MotionLayout_layoutDescription -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedWidthMinor -com.tencent.bugly.crashreport.crash.c: void a(java.lang.Thread,java.lang.Throwable,boolean,java.lang.String,byte[],boolean) -androidx.preference.R$styleable: int AppCompatTextView_drawableTopCompat -wangdaye.com.geometricweather.R$drawable: int ic_cloud -wangdaye.com.geometricweather.db.entities.DaoMaster: void createAllTables(org.greenrobot.greendao.database.Database,boolean) -androidx.transition.R$layout -com.google.android.material.R$styleable: int MenuGroup_android_enabled -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date publishDate -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour[] values() -wangdaye.com.geometricweather.R$attr: int dividerVertical -androidx.preference.SwitchPreference -okhttp3.internal.connection.RealConnection: int successCount -com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_hovered_box_stroke_color -androidx.preference.R$style: int TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView_Menu -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_6 -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean set(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) -androidx.appcompat.R$styleable: int[] PopupWindowBackgroundState -com.amap.api.location.AMapLocation: int x -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -cyanogenmod.weather.RequestInfo$Builder: android.location.Location mLocation -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_padding_end_material -com.google.android.material.R$styleable: int Constraint_android_transformPivotX -androidx.preference.R$attr: int textAppearanceListItemSmall -com.google.android.material.R$id: int none -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: ObservableWindowBoundarySupplier$WindowBoundaryMainObserver(io.reactivex.Observer,int,java.util.concurrent.Callable) -wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendHourlyProvider -wangdaye.com.geometricweather.R$attr: int chipStrokeWidth -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context) -androidx.preference.R$styleable: int AppCompatImageView_android_src -com.google.android.material.circularreveal.CircularRevealRelativeLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -android.didikee.donate.R$style: int TextAppearance_AppCompat_Caption -androidx.viewpager.widget.PagerTitleStrip: int getMinHeight() -com.tencent.bugly.proguard.u: boolean b() -com.tencent.bugly.crashreport.crash.c: void c() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int Minute -androidx.preference.R$attr: int suggestionRowLayout -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconSize -com.google.android.material.slider.BaseSlider: void setLabelBehavior(int) -androidx.preference.R$id: int accessibility_custom_action_2 -com.google.android.material.R$styleable: int AppCompatTheme_spinnerStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int ThunderstormProbability -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids -androidx.constraintlayout.widget.R$attr: int overlay -com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonCompat -androidx.loader.R$drawable: int notification_action_background -com.jaredrummler.android.colorpicker.R$attr: int theme -wangdaye.com.geometricweather.R$attr: int keyPositionType -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_strokeColor -com.tencent.bugly.crashreport.common.info.a: java.lang.String O() -androidx.preference.R$styleable: int PreferenceFragment_allowDividerAfterLastItem -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -androidx.appcompat.resources.R$id: int text -wangdaye.com.geometricweather.R$attr: int iconGravity -cyanogenmod.weather.WeatherInfo$Builder: long mTimestamp -com.tencent.bugly.proguard.m -okhttp3.internal.http2.Http2Writer: int maxFrameSize -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextInputLayout -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String getUvIndex() -okhttp3.Cache$CacheRequestImpl: okhttp3.Cache this$0 -com.google.android.material.slider.BaseSlider: void setThumbElevation(float) -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: android.os.IBinder asBinder() -com.xw.repo.bubbleseekbar.R$attr: int autoCompleteTextViewStyle -wangdaye.com.geometricweather.R$id: int incoming -wangdaye.com.geometricweather.R$id: int position -com.jaredrummler.android.colorpicker.R$styleable: int[] ListPopupWindow -io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action) -com.amap.api.location.CoordinateConverter$CoordType: CoordinateConverter$CoordType(java.lang.String,int) -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Dialog -androidx.constraintlayout.widget.R$styleable: int Constraint_barrierAllowsGoneWidgets -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: double Value -android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_cancelAll -com.google.android.material.R$id: int action_container -okhttp3.internal.platform.AndroidPlatform: AndroidPlatform(java.lang.Class,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod) -com.google.android.material.R$styleable: int ConstraintSet_android_id -com.tencent.bugly.crashreport.biz.UserInfoBean: int p -james.adaptiveicon.R$styleable: int ActionBar_title -androidx.appcompat.widget.DialogTitle -com.google.android.material.R$id: int contentPanel -androidx.recyclerview.widget.RecyclerView$SavedState -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf -androidx.preference.R$color: int abc_color_highlight_material -com.jaredrummler.android.colorpicker.R$attr: int itemPadding -com.bumptech.glide.R$id: int normal -wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_subtitle_keywords -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -com.bumptech.glide.R$styleable: int ColorStateListItem_android_color -com.bumptech.glide.load.engine.CallbackException: long serialVersionUID -james.adaptiveicon.R$styleable: int AppCompatTheme_dialogPreferredPadding -okhttp3.Response: okhttp3.Response cacheResponse -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult -androidx.constraintlayout.widget.R$drawable: int abc_edit_text_material -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActivityChooserView -okhttp3.Request: java.lang.String method() -androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveData(java.lang.String) -androidx.recyclerview.R$id: int accessibility_custom_action_23 -com.turingtechnologies.materialscrollbar.R$id: int screen -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onComplete() -okhttp3.internal.platform.Platform: void connectSocket(java.net.Socket,java.net.InetSocketAddress,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setLocationKey(java.lang.String) -james.adaptiveicon.R$dimen: int tooltip_margin -com.google.android.material.R$attr: int actionBarSize -androidx.preference.R$layout: int preference -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_appBar -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_keylines -androidx.customview.R$styleable: int[] FontFamily -okhttp3.CookieJar$1: CookieJar$1() -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String getNativeKeyValueList() -com.xw.repo.bubbleseekbar.R$dimen: int abc_control_inset_material -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -okhttp3.OkHttpClient$1: okhttp3.internal.connection.RouteDatabase routeDatabase(okhttp3.ConnectionPool) -retrofit2.BuiltInConverters: BuiltInConverters() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -wangdaye.com.geometricweather.R$xml: int widget_text -androidx.vectordrawable.R$styleable: int GradientColorItem_android_color -com.tencent.bugly.proguard.ap: com.tencent.bugly.proguard.ao f -androidx.preference.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$attr: int barrierAllowsGoneWidgets -androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_material -cyanogenmod.weather.WeatherLocation$Builder: WeatherLocation$Builder(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$string: int settings_category_basic -androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyleSmall -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean visibility -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog -okhttp3.internal.Util: java.lang.String trimSubstring(java.lang.String,int,int) -androidx.drawerlayout.R$id: int title -okhttp3.internal.http.HttpDate: long MAX_DATE -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_always_show_bubble -com.google.android.gms.base.R$attr -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_arrowShaftLength -com.tencent.bugly.proguard.x: boolean a(java.lang.Class,java.lang.String,java.lang.Object[]) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: int UnitType -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.db.entities.DailyEntity: void setTime(long) -cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_SHOW_BRIGHTNESS_SLIDER -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DialogWhenLarge -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -wangdaye.com.geometricweather.R$font: int product_sans_black_italic -wangdaye.com.geometricweather.db.entities.WeatherEntity: long getPublishTime() -androidx.work.R$attr: int ttcIndex -io.reactivex.internal.observers.LambdaObserver: void onError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$id: int image -james.adaptiveicon.R$layout: int abc_list_menu_item_checkbox -okhttp3.Cookie: long parseExpires(java.lang.String,int,int) -wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_height_minor -com.google.android.material.appbar.HeaderScrollingViewBehavior: HeaderScrollingViewBehavior(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.motion.widget.MotionHelper: void setProgress(float) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_top_material -androidx.appcompat.R$id: int submenuarrow -androidx.constraintlayout.widget.R$attr: int drawableStartCompat -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent OVERLAY -cyanogenmod.media.MediaRecorder$AudioSource -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_normal -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SHOW_ALARM_ICON_VALIDATOR -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy -james.adaptiveicon.R$styleable: int ViewStubCompat_android_inflatedId -androidx.work.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.R$string: int wind_11 -io.reactivex.Observable: io.reactivex.Observable flatMapSingle(io.reactivex.functions.Function,boolean) -com.google.android.gms.common.data.BitmapTeleporter: android.os.Parcelable$Creator CREATOR -androidx.hilt.work.R$id: int fragment_container_view_tag -androidx.preference.R$styleable: int Preference_order -wangdaye.com.geometricweather.Hilt_GeometricWeather: Hilt_GeometricWeather() -android.didikee.donate.R$attr: int autoCompleteTextViewStyle -androidx.appcompat.R$style: int Widget_AppCompat_DrawerArrowToggle -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder dispatcher(okhttp3.Dispatcher) -com.jaredrummler.android.colorpicker.R$attr: int windowFixedHeightMajor -com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.graphics.drawable.Drawable getItemBackground() -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type[] values() -james.adaptiveicon.R$style: int Base_Theme_AppCompat -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton -cyanogenmod.weather.WeatherLocation: java.lang.String mCountryId -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String MINUTES -wangdaye.com.geometricweather.R$string: int ellipsis -android.didikee.donate.R$attr: int listPreferredItemPaddingRight -com.google.android.material.R$attr: int flow_lastHorizontalBias -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_end_padding_icon -cyanogenmod.weather.RequestInfo: java.lang.String toString() -wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_xml -wangdaye.com.geometricweather.R$layout: int design_layout_tab_text -cyanogenmod.power.PerformanceManager: cyanogenmod.power.PerformanceManager getInstance(android.content.Context) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: android.os.IBinder call() -cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_NORMAL -okio.Source: okio.Timeout timeout() -com.jaredrummler.android.colorpicker.R$id: int shortcut -androidx.appcompat.R$styleable: int ViewBackgroundHelper_android_background -io.reactivex.Observable: io.reactivex.Observable flatMapMaybe(io.reactivex.functions.Function,boolean) -okhttp3.internal.http2.Http2Writer: void applyAndAckSettings(okhttp3.internal.http2.Settings) -wangdaye.com.geometricweather.R$array: int precipitation_units -androidx.appcompat.R$attr: int backgroundTintMode -okhttp3.internal.cache.CacheInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -wangdaye.com.geometricweather.R$attr: int boxCornerRadiusBottomEnd -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowNoTitle -com.google.android.material.button.MaterialButton$SavedState: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$id: int outline -androidx.appcompat.widget.AppCompatTextView: void setAutoSizeTextTypeWithDefaults(int) -cyanogenmod.hardware.ICMHardwareService: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindChillTemperature -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver -com.google.android.material.R$id: R$id() -androidx.coordinatorlayout.R$styleable: int[] FontFamilyFont -android.didikee.donate.R$styleable: int ViewStubCompat_android_inflatedId -okhttp3.RealCall$AsyncCall: void execute() -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean china -wangdaye.com.geometricweather.R$anim: int abc_tooltip_exit -com.google.android.material.R$animator: int mtrl_extended_fab_change_size_collapse_motion_spec -com.tencent.bugly.crashreport.common.info.a: java.util.Map ak -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver,java.lang.Throwable) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback) -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: java.lang.Integer poll() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_label_cutout_padding -com.tencent.bugly.crashreport.crash.e: void a(java.lang.Thread,java.lang.Throwable,boolean,java.lang.String,byte[]) -androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -okio.Segment: int limit -com.google.android.material.slider.RangeSlider: float getStepSize() -james.adaptiveicon.R$styleable: int[] Spinner -com.google.android.material.chip.Chip: float getChipIconSize() -com.google.android.material.R$styleable: int RecyclerView_android_descendantFocusability -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.AlertEntity,long) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String so2Desc -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getDegreeDayTemperature() -com.google.android.material.R$color: int mtrl_chip_background_color -androidx.constraintlayout.widget.R$styleable: int Toolbar_logoDescription -cyanogenmod.providers.CMSettings$System: java.lang.String ZEN_ALLOW_LIGHTS -androidx.viewpager2.R$id: int tag_accessibility_clickable_spans -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorFullWidth -androidx.lifecycle.LiveData$ObserverWrapper: LiveData$ObserverWrapper(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) -android.didikee.donate.R$dimen: int hint_alpha_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetStart -android.didikee.donate.R$id: int expand_activities_button -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIFI -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_backgroundTint -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_toBottomOf -okhttp3.internal.http2.Hpack$Reader: void adjustDynamicTableByteCount() -androidx.preference.PreferenceGroup -androidx.viewpager2.R$id: int accessibility_custom_action_17 -com.google.android.material.internal.NavigationMenuItemView: void setIconSize(int) -com.google.android.material.R$attr: int materialButtonOutlinedStyle -cyanogenmod.weather.CMWeatherManager: CMWeatherManager(android.content.Context) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: boolean isDisposed() -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherText -com.xw.repo.BubbleSeekBar: float getMin() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean requestDismissAndStartActivity(android.content.Intent) -okhttp3.internal.platform.Platform: java.lang.Object readFieldOrNull(java.lang.Object,java.lang.Class,java.lang.String) -wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_baselineAligned -androidx.customview.R$drawable: int notification_icon_background -androidx.recyclerview.widget.LinearLayoutManager$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: MfForecastResult$DailyForecast$Weather() -wangdaye.com.geometricweather.R$attr: int alphabeticModifiers -androidx.appcompat.R$attr: int titleMargins -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon -wangdaye.com.geometricweather.R$string: int key_widget_clock_day_week -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties -retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type[] getUpperBounds() -com.jaredrummler.android.colorpicker.R$string: int v7_preference_off -androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_edit_text_material -cyanogenmod.app.StatusBarPanelCustomTile$1: java.lang.Object createFromParcel(android.os.Parcel) -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -androidx.constraintlayout.widget.R$attr: int hideOnContentScroll -okhttp3.internal.http1.Http1Codec: void writeRequest(okhttp3.Headers,java.lang.String) -com.tencent.bugly.crashreport.crash.anr.b: android.os.FileObserver i -james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintStart_toEndOf -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.appcompat.resources.R$dimen: int notification_top_pad_large_text -okhttp3.internal.http2.Huffman: void encode(okio.ByteString,okio.BufferedSink) -wangdaye.com.geometricweather.R$attr: int layout_constraintRight_creator -androidx.preference.R$attr: int searchViewStyle -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemBackground -androidx.constraintlayout.helper.widget.Flow: void setFirstHorizontalBias(float) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver -wangdaye.com.geometricweather.R$styleable: int MotionLayout_showPaths -androidx.appcompat.widget.AppCompatEditText: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_switchTextOn -androidx.constraintlayout.widget.R$styleable: int KeyPosition_curveFit -cyanogenmod.providers.CMSettings$Secure: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -com.jaredrummler.android.colorpicker.R$styleable: int[] ButtonBarLayout -com.jaredrummler.android.colorpicker.R$dimen: int cpv_column_width -wangdaye.com.geometricweather.settings.dialogs.AdaptiveIconDialog -io.reactivex.internal.subscriptions.BasicQueueSubscription: void request(long) -com.google.android.material.R$attr: int labelVisibilityMode -cyanogenmod.hardware.CMHardwareManager: boolean writePersistentString(java.lang.String,java.lang.String) -james.adaptiveicon.R$style: int Base_AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.R$string: int abc_menu_ctrl_shortcut_label -wangdaye.com.geometricweather.R$drawable: int abc_cab_background_top_mtrl_alpha -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_28 -james.adaptiveicon.R$attr -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar -androidx.hilt.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$styleable: int[] MotionTelltales -okhttp3.internal.connection.RouteException: java.io.IOException firstException -james.adaptiveicon.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -com.google.android.material.R$attr: int navigationContentDescription -androidx.constraintlayout.widget.R$id: int right_side -androidx.constraintlayout.widget.R$id: int rectangles -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) -wangdaye.com.geometricweather.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.R$styleable: int[] CoordinatorLayout_Layout -com.xw.repo.bubbleseekbar.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf -com.amap.api.fence.PoiItem: java.lang.String getTel() -android.didikee.donate.R$string -androidx.appcompat.resources.R$dimen: int notification_large_icon_width -com.turingtechnologies.materialscrollbar.R$attr: int dialogCornerRadius -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle -androidx.constraintlayout.widget.R$styleable: int Constraint_motionProgress -wangdaye.com.geometricweather.R$id: int parallax -okhttp3.OkHttpClient: okhttp3.Authenticator proxyAuthenticator -wangdaye.com.geometricweather.common.basic.models.weather.Current: Current(java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability,wangdaye.com.geometricweather.common.basic.models.weather.Wind,wangdaye.com.geometricweather.common.basic.models.weather.UV,wangdaye.com.geometricweather.common.basic.models.weather.AirQuality,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.String,java.lang.String) -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_max_width -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit -com.jaredrummler.android.colorpicker.R$attr: int dialogCornerRadius -wangdaye.com.geometricweather.R$drawable: int notif_temp_10 -androidx.constraintlayout.widget.R$id: int triangle -androidx.vectordrawable.R$styleable: int GradientColor_android_tileMode -androidx.appcompat.R$string: int abc_shareactionprovider_share_with_application -com.tencent.bugly.crashreport.crash.e: android.content.Context a -okhttp3.Cache: void initialize() -androidx.lifecycle.MethodCallsLogger: MethodCallsLogger() -com.turingtechnologies.materialscrollbar.R$anim: int abc_shrink_fade_out_from_bottom -james.adaptiveicon.R$dimen: int abc_list_item_padding_horizontal_material -com.google.android.material.chip.Chip: void setChipMinHeight(float) -androidx.preference.R$styleable: int[] CompoundButton -com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_background_color -com.bumptech.glide.integration.okhttp.R$id: int tag_unhandled_key_event_manager -okio.ForwardingSink: okio.Sink delegate -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float windSpeed -wangdaye.com.geometricweather.R$drawable: int notif_temp_4 -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: BaiduIPLocationService$1(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge -com.google.android.material.R$styleable: int ConstraintSet_flow_verticalGap -androidx.preference.R$id: int bottom -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeTextType -com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Dialog -io.reactivex.internal.util.VolatileSizeArrayList: boolean add(java.lang.Object) -androidx.work.BackoffPolicy: androidx.work.BackoffPolicy valueOf(java.lang.String) -androidx.appcompat.R$dimen: int highlight_alpha_material_colored -androidx.constraintlayout.widget.R$drawable: int notification_tile_bg -com.xw.repo.bubbleseekbar.R$dimen -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ProgressBar -com.turingtechnologies.materialscrollbar.R$id: int transition_current_scene -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getWeatherSource() -wangdaye.com.geometricweather.R$attr: int mock_showDiagonals -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List timelaps -androidx.preference.R$styleable: int MultiSelectListPreference_android_entryValues -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onComplete() -james.adaptiveicon.R$styleable: int[] LinearLayoutCompat -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_NoActionBar_Bridge -androidx.fragment.R$id: int line1 -wangdaye.com.geometricweather.R$id: int startVertical -com.jaredrummler.android.colorpicker.R$attr: int arrowHeadLength -com.google.android.material.R$string: int abc_search_hint -androidx.preference.R$attr: int windowFixedHeightMinor -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_11 -cyanogenmod.profiles.AirplaneModeSettings$BooleanState: AirplaneModeSettings$BooleanState() -com.tencent.bugly.crashreport.CrashReport: void initCrashReport(android.content.Context,java.lang.String,boolean,com.tencent.bugly.crashreport.CrashReport$UserStrategy) -wangdaye.com.geometricweather.db.entities.DailyEntity: int getNighttimeTemperature() -androidx.coordinatorlayout.R$id: int line1 -androidx.appcompat.widget.AppCompatSpinner: android.graphics.drawable.Drawable getPopupBackground() -wangdaye.com.geometricweather.R$styleable: int KeyPosition_motionTarget -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_PrimarySurface -com.google.android.material.slider.RangeSlider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) -io.reactivex.internal.util.EmptyComponent: void onError(java.lang.Throwable) -androidx.preference.R$attr: int spinBars -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginLeft -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Hint -androidx.preference.R$styleable: int AppCompatTextView_autoSizeStepGranularity -wangdaye.com.geometricweather.R$attr: int background_color -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_height -okhttp3.Interceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemShapeAppearanceOverlay -com.jaredrummler.android.colorpicker.R$styleable: int[] GradientColorItem -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -io.reactivex.Observable: io.reactivex.Observable sorted() -wangdaye.com.geometricweather.R$id: int large -okhttp3.MultipartBody: okhttp3.MediaType FORM -retrofit2.ParameterHandler$HeaderMap: retrofit2.Converter valueConverter -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -androidx.appcompat.R$style: int Widget_AppCompat_ActionMode -james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontWeight -okhttp3.internal.connection.RouteSelector -androidx.dynamicanimation.R$dimen: int notification_right_side_padding_top -androidx.coordinatorlayout.R$dimen: int notification_right_side_padding_top -com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Panel -cyanogenmod.os.Build$CM_VERSION_CODES -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -androidx.lifecycle.LifecycleRegistry$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$Event -com.tencent.bugly.proguard.i: double a(double,int,boolean) -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetTop -okio.BufferedSource: long indexOf(okio.ByteString,long) -com.google.android.material.R$styleable: int MaterialCardView_checkedIconMargin -androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void drain() -androidx.appcompat.R$attr: int homeAsUpIndicator -james.adaptiveicon.R$styleable: int MenuItem_numericModifiers -okhttp3.internal.cache2.Relay: int SOURCE_FILE -james.adaptiveicon.R$id: int action_menu_divider -com.google.android.material.textfield.TextInputLayout: int getErrorTextCurrentColor() -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getThemePackageNameForComponent(java.lang.String) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: long serialVersionUID -androidx.drawerlayout.widget.DrawerLayout: android.graphics.drawable.Drawable getStatusBarBackgroundDrawable() -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_share_mtrl_alpha -com.jaredrummler.android.colorpicker.R$attr: int customNavigationLayout -wangdaye.com.geometricweather.R$attr: int preferenceStyle -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Alert -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.String dailyWeatherIcon -james.adaptiveicon.R$attr: int actionBarPopupTheme -androidx.lifecycle.extensions.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_close_circle -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_disabled -com.bumptech.glide.integration.okhttp.R$id: int italic -androidx.preference.R$dimen: int abc_action_bar_stacked_max_height -okhttp3.internal.http2.Http2Connection: int OKHTTP_CLIENT_WINDOW_SIZE -androidx.lifecycle.extensions.R$layout: int notification_template_icon_group -okhttp3.RequestBody$3: long contentLength() -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.savedstate.SavedStateRegistry mSavedStateRegistry -androidx.appcompat.R$styleable: int View_android_theme -cyanogenmod.weather.WeatherLocation: java.lang.String mKey -com.google.android.material.R$styleable: int ConstraintSet_android_translationZ -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,io.reactivex.functions.Function,java.util.concurrent.Callable) -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void run() -android.didikee.donate.R$styleable: int Toolbar_navigationContentDescription -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light -com.google.android.material.R$drawable: int abc_ic_ab_back_material -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature -com.turingtechnologies.materialscrollbar.R$attr: int borderlessButtonStyle -wangdaye.com.geometricweather.R$id: int activity_widget_config -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_29 -androidx.customview.R$color -cyanogenmod.app.suggest.IAppSuggestProvider: boolean handles(android.content.Intent) -okhttp3.internal.http2.Http2: byte FLAG_END_STREAM -cyanogenmod.app.CMContextConstants: java.lang.String CM_APP_SUGGEST_SERVICE -wangdaye.com.geometricweather.db.entities.DailyEntity: void setCityId(java.lang.String) -okhttp3.OkHttpClient: okhttp3.Call newCall(okhttp3.Request) -wangdaye.com.geometricweather.R$id: int widget_day_week_icon -com.google.android.material.R$styleable: int[] ClockHandView -com.tencent.bugly.crashreport.crash.a: long b -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean addProfile(cyanogenmod.app.Profile) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_127 -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_MinWidth -com.tencent.bugly.crashreport.CrashReport$UserStrategy: com.tencent.bugly.crashreport.CrashReport$CrashHandleCallback getCrashHandleCallback() -com.jaredrummler.android.colorpicker.R$attr: int switchMinWidth -com.tencent.bugly.proguard.a: byte[] a() -androidx.lifecycle.ViewModelProvider$OnRequeryFactory -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: java.lang.String English -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Title_Inverse -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_min -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemStrokeColor -androidx.viewpager.R$layout: int notification_template_part_time -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean forWebSocket -com.google.android.material.R$styleable: int Spinner_android_dropDownWidth -cyanogenmod.weather.RequestInfo$1: java.lang.Object[] newArray(int) -androidx.appcompat.widget.AppCompatCheckBox: android.content.res.ColorStateList getSupportButtonTintList() -com.google.android.material.R$styleable: int SnackbarLayout_actionTextColorAlpha -wangdaye.com.geometricweather.R$drawable: int widget_clock_day_horizontal -com.google.android.material.chip.Chip: void setCloseIconContentDescription(java.lang.CharSequence) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric Metric -cyanogenmod.weatherservice.ServiceRequest: void complete(cyanogenmod.weatherservice.ServiceRequestResult) -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_EXISTING_UUID -androidx.hilt.R$styleable: R$styleable() -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode ENHANCE_YOUR_CALM -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain Rain -wangdaye.com.geometricweather.R$styleable: int MaterialButton_strokeWidth -android.didikee.donate.R$layout: int abc_alert_dialog_button_bar_material -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_orientation -okhttp3.Request$Builder: okhttp3.Request$Builder post(okhttp3.RequestBody) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.R$string: int key_distance_unit -okhttp3.Cache$Entry: java.util.List readCertificateList(okio.BufferedSource) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_110 -wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionIcon -android.didikee.donate.R$attr: int spinnerDropDownItemStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyTopRight -androidx.appcompat.widget.Toolbar: void setSubtitleTextColor(android.content.res.ColorStateList) -com.google.android.gms.common.internal.zzv -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric -okio.HashingSource: okio.ByteString hash() -com.google.android.material.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -okhttp3.internal.http1.Http1Codec$ChunkedSink: okio.ForwardingTimeout timeout -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_PROVIDER_WITH_EVENT -com.google.android.material.tabs.TabLayout: int getTabMode() -io.reactivex.Observable: io.reactivex.Observable combineLatest(java.lang.Iterable,io.reactivex.functions.Function,int) -com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Light_Dialog -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setOnClickListener(android.view.View$OnClickListener) -androidx.work.R$layout: int notification_template_icon_group -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton_CloseMode -androidx.preference.R$dimen: int abc_dialog_fixed_height_minor -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_2 -com.google.android.material.R$layout: int abc_action_mode_close_item_material -androidx.constraintlayout.widget.R$id: int search_badge -android.didikee.donate.R$style: int TextAppearance_AppCompat_Large -androidx.constraintlayout.helper.widget.Flow -com.google.android.material.R$styleable: int ConstraintSet_flow_maxElementsWrap -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_weather -androidx.work.R$styleable: int FontFamily_fontProviderFetchTimeout -com.google.android.material.switchmaterial.SwitchMaterial: android.content.res.ColorStateList getMaterialThemeColorsThumbTintList() -io.reactivex.exceptions.CompositeException: java.lang.String getMessage() -wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line2_tail_interpolator -androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitleTextColor -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarDivider -android.didikee.donate.R$drawable: int abc_list_selector_background_transition_holo_dark -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Subhead_Inverse -com.turingtechnologies.materialscrollbar.R$attr: int icon -androidx.appcompat.R$styleable: int TextAppearance_android_typeface -androidx.lifecycle.AndroidViewModel -androidx.appcompat.R$drawable: int abc_ic_search_api_material -androidx.lifecycle.extensions.R$style: int Widget_Compat_NotificationActionContainer -androidx.constraintlayout.widget.R$attr: int layout_constrainedHeight -com.google.android.material.R$attr: int useMaterialThemeColors -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onDetach() -com.tencent.bugly.crashreport.crash.anr.b: void a(java.lang.String) -androidx.preference.R$style: int Base_Widget_AppCompat_ListView_Menu -wangdaye.com.geometricweather.R$attr: int materialAlertDialogBodyTextStyle -androidx.core.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_shape_vertical_margin -androidx.preference.R$styleable: int ActionBar_customNavigationLayout -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMarkTintMode -com.google.android.material.R$id: int stop -okhttp3.internal.http2.Huffman: Huffman() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String resPkg -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec newStream(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,boolean) -james.adaptiveicon.R$styleable: int ActionBar_contentInsetRight -wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_right_black_24dp -androidx.preference.R$styleable: int CompoundButton_buttonTintMode -com.jaredrummler.android.colorpicker.R$attr: int actionModeCutDrawable -retrofit2.RequestFactory$Builder: void parseHttpMethodAndPath(java.lang.String,java.lang.String,boolean) -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_padding -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -wangdaye.com.geometricweather.R$style: int Theme_Design -retrofit2.HttpServiceMethod$SuspendForResponse: retrofit2.CallAdapter callAdapter -androidx.dynamicanimation.R$id: int action_divider -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -cyanogenmod.weatherservice.IWeatherProviderService: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) -com.google.android.material.R$id: int tag_accessibility_heading -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Subhead -com.google.android.material.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger -androidx.coordinatorlayout.R$drawable: int notify_panel_notification_icon_bg -androidx.transition.R$dimen: int notification_big_circle_margin -androidx.work.impl.WorkDatabase_Impl: WorkDatabase_Impl() -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState SETUP -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void dispose() -androidx.constraintlayout.widget.R$id: int reverseSawtooth -com.jaredrummler.android.colorpicker.R$attr: int dialogTitle -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_Switch -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemSummary(java.lang.String) -androidx.appcompat.widget.ActionBarContextView: java.lang.CharSequence getSubtitle() -androidx.appcompat.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconTintMode -androidx.loader.R$dimen: int notification_media_narrow_margin -cyanogenmod.providers.CMSettings$Secure: java.lang.String LIVE_DISPLAY_COLOR_MATRIX -wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontContainer -androidx.core.R$style: int TextAppearance_Compat_Notification_Line2 -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener access$900(cyanogenmod.externalviews.KeyguardExternalView) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlActivated -androidx.hilt.work.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.R$attr: int arc_angle -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Headline -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_DEFAULT_INDEX -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: ChineseCityEntity() -androidx.appcompat.R$styleable: int ActivityChooserView_initialActivityCount -okhttp3.internal.Util$1 -com.bumptech.glide.load.engine.GlideException: java.util.List getCauses() -com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getIndicatorWidth() -androidx.fragment.R$id: int action_image -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval getInstance(java.lang.String) -wangdaye.com.geometricweather.R$menu: int activity_settings -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Overline -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.entities.DailyEntity readEntity(android.database.Cursor,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: java.lang.String Unit -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_black -wangdaye.com.geometricweather.R$string: int date_format_long -androidx.preference.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -com.jaredrummler.android.colorpicker.R$attr: int dialogTheme -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_closeItemLayout -com.bumptech.glide.R$attr: int fontProviderQuery -android.didikee.donate.R$styleable: int MenuItem_android_orderInCategory -okhttp3.internal.http2.Http2Connection: void writePing(boolean,int,int) -io.reactivex.Observable: io.reactivex.Observable retry(long) -androidx.appcompat.R$drawable: int notification_template_icon_low_bg -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Headline -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.Integer alti -androidx.appcompat.R$drawable: int btn_radio_on_to_off_mtrl_animation -wangdaye.com.geometricweather.R$attr: int bsb_min -androidx.constraintlayout.utils.widget.ImageFilterView: float getBrightness() -okhttp3.Cache$CacheResponseBody -cyanogenmod.app.Profile$DozeMode: int DISABLE -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_LEGACY_ICONPACK -okhttp3.internal.http2.PushObserver$1: PushObserver$1() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property AqiText -androidx.preference.R$style: int Widget_AppCompat_ActionBar -com.tencent.bugly.nativecrashreport.R$string -okhttp3.internal.http2.Http2Stream$FramingSource: okio.Buffer receiveBuffer -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onError(java.lang.Throwable) -androidx.drawerlayout.R$drawable: int notification_bg_low_pressed -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_disabled -wangdaye.com.geometricweather.R$string: int key_click_widget_to_refresh -cyanogenmod.app.CustomTile: boolean sensitiveData -androidx.appcompat.widget.ListPopupWindow: void setOnItemSelectedListener(android.widget.AdapterView$OnItemSelectedListener) -androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog -com.google.android.material.R$attr: int textAppearanceHeadline2 -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -androidx.constraintlayout.widget.R$styleable: int ActionMode_closeItemLayout -com.google.gson.stream.JsonReader: java.lang.String[] pathNames -androidx.appcompat.R$styleable: int SearchView_android_inputType -okhttp3.Cache: java.util.Iterator urls() -wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_1_3_padding_bottom -androidx.core.R$id: int action_image -androidx.preference.R$color: int button_material_dark -wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_icon_tint -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_LargeTouch -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintStart_toStartOf -androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$dimen: int mtrl_fab_min_touch_target -wangdaye.com.geometricweather.R$color: int cpv_default_color -androidx.appcompat.R$color: int abc_btn_colored_text_material -com.google.android.gms.base.R$styleable: int[] LoadingImageView -okhttp3.Interceptor$Chain: int connectTimeoutMillis() -cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_INTERNALLY_ENABLED -com.tencent.bugly.proguard.i: i() -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language valueOf(java.lang.String) -android.didikee.donate.R$drawable: int abc_cab_background_internal_bg -com.google.android.material.R$styleable: int[] Spinner -com.google.android.material.R$styleable: int[] KeyTrigger -wangdaye.com.geometricweather.R$drawable: int notif_temp_1 -androidx.constraintlayout.widget.R$attr: int track -androidx.customview.R$id: int icon_group -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$styleable: int ActionBar_progressBarStyle -android.didikee.donate.R$dimen: int abc_dropdownitem_text_padding_left -com.google.android.material.R$attr: int layout_constraintHorizontal_bias -retrofit2.RequestBuilder: java.lang.String canonicalizeForPath(java.lang.String,boolean) -androidx.vectordrawable.R$id: int accessibility_custom_action_1 -com.google.android.material.R$styleable: int Layout_minHeight -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleEnabled(boolean) -com.google.android.material.R$xml: int standalone_badge_gravity_bottom_end -wangdaye.com.geometricweather.R$id: int wide -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm10Desc(java.lang.String) -androidx.recyclerview.widget.RecyclerView: void suppressLayout(boolean) -wangdaye.com.geometricweather.R$drawable: int notif_temp_22 -wangdaye.com.geometricweather.R$styleable: int Transition_staggered -com.tencent.bugly.crashreport.common.info.a: long Q() -com.google.android.material.datepicker.MaterialCalendar: MaterialCalendar() -com.google.android.material.R$styleable: int[] ProgressIndicator -cyanogenmod.externalviews.ExternalViewProviderService: android.os.IBinder onBind(android.content.Intent) -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: void invoke(java.lang.Throwable) -com.google.gson.LongSerializationPolicy$2: com.google.gson.JsonElement serialize(java.lang.Long) -androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModelProvider$Factory mFactory -com.google.android.material.R$styleable: int ViewStubCompat_android_inflatedId -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindChillTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$attr: int switchTextAppearance -wangdaye.com.geometricweather.R$string: int air_quality -com.tencent.bugly.proguard.u: long o -com.bumptech.glide.load.engine.GlideException: java.util.List getRootCauses() -androidx.work.impl.utils.futures.AbstractFuture: java.lang.Object value -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather weather -androidx.recyclerview.widget.RecyclerView: void setLayoutManager(androidx.recyclerview.widget.RecyclerView$LayoutManager) -com.jaredrummler.android.colorpicker.R$color: int primary_material_light -androidx.swiperefreshlayout.R$id: int tag_accessibility_heading -cyanogenmod.externalviews.ExternalView$4: cyanogenmod.externalviews.ExternalView this$0 -com.google.android.material.R$styleable: int NavigationView_shapeAppearanceOverlay -com.amap.api.location.AMapLocation: double getLongitude() -androidx.constraintlayout.widget.R$dimen: int abc_panel_menu_list_width -okhttp3.internal.http1.Http1Codec: okio.Source newChunkedSource(okhttp3.HttpUrl) -com.google.android.material.internal.ScrimInsetsFrameLayout: void setScrimInsetForeground(android.graphics.drawable.Drawable) -androidx.appcompat.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_SLEEP_ON_RELEASE_VALIDATOR -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getRain() -wangdaye.com.geometricweather.common.basic.models.Location: android.os.Parcelable$Creator CREATOR -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: boolean mObserving -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ImageButton -androidx.fragment.R$id: int tag_unhandled_key_listeners -androidx.lifecycle.LifecycleRegistry: void popParentState() -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Line2 -okhttp3.Response: boolean isSuccessful() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.floatingactionbutton.FloatingActionButton: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() -okhttp3.internal.Internal: java.net.Socket deduplicate(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation) -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String binarySearchBytes(byte[],byte[][],int) -com.bumptech.glide.integration.okhttp.R$attr: int ttcIndex -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onComplete() -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveOffset -androidx.appcompat.R$layout: int abc_search_view -com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorType(int) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Switch -cyanogenmod.hardware.ThermalListenerCallback$State: ThermalListenerCallback$State() -androidx.lifecycle.LiveData: void assertMainThread(java.lang.String) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingLeft -cyanogenmod.externalviews.KeyguardExternalView: void executeQueue() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -androidx.coordinatorlayout.widget.CoordinatorLayout: java.util.List getDependencySortedChildren() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_android_thumb -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_ttcIndex -okio.GzipSink: void writeFooter() -wangdaye.com.geometricweather.R$dimen: int mtrl_progress_indicator_full_rounded_corner_radius -com.jaredrummler.android.colorpicker.R$attr: int contentInsetLeft -androidx.preference.R$id: R$id() -androidx.constraintlayout.widget.R$attr: int actionProviderClass -okhttp3.Cookie: boolean httpOnly() -com.google.android.material.R$attr: int layout_anchorGravity -com.google.android.material.R$integer: int config_tooltipAnimTime -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_seek_by_section -cyanogenmod.profiles.RingModeSettings: cyanogenmod.profiles.RingModeSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void request(long) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: java.lang.String desc -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String weatherSource -androidx.preference.R$dimen: int compat_notification_large_icon_max_height -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setDeviceModeDistanceFilter(float) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon Moon -wangdaye.com.geometricweather.R$color: int material_on_surface_emphasis_medium -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getZh_CN() -okhttp3.OkHttpClient: okhttp3.Authenticator proxyAuthenticator() -androidx.appcompat.R$style: int TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction -okio.HashingSink: okio.HashingSink sha1(okio.Sink) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -androidx.lifecycle.LifecycleRegistry: java.lang.ref.WeakReference mLifecycleOwner -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyBottomRight -com.tencent.bugly.b: boolean a -wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_2_0_padding_top -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_android_textAppearance -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyleSmall -androidx.activity.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_2 -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onSuccess(java.lang.Object) -wangdaye.com.geometricweather.R$id: int action_bar_container -com.bumptech.glide.R$id -cyanogenmod.content.Intent: java.lang.String ACTION_SCREEN_CAMERA_GESTURE -androidx.recyclerview.widget.RecyclerView: void setRecyclerListener(androidx.recyclerview.widget.RecyclerView$RecyclerListener) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextColor -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: void writeTo(okio.BufferedSink) -androidx.preference.R$bool: int abc_action_bar_embed_tabs -okhttp3.Call$Factory -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_seekBarStyle -androidx.activity.R$styleable: int FontFamilyFont_fontWeight -androidx.transition.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$integer: int abc_config_activityDefaultDur -com.amap.api.location.AMapLocation: void setLatitude(double) -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status FAILED -com.tencent.bugly.crashreport.biz.a: void a(com.tencent.bugly.crashreport.biz.a) -wangdaye.com.geometricweather.R$anim: int fragment_fade_exit -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription(org.reactivestreams.Subscriber,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) -wangdaye.com.geometricweather.R$attr: int windowActionBarOverlay -androidx.constraintlayout.widget.R$style -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling -androidx.appcompat.R$color: int abc_hint_foreground_material_dark -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: long serialVersionUID -androidx.preference.R$drawable: int notification_template_icon_low_bg -com.google.android.material.chip.Chip: void setRippleColorResource(int) -com.google.android.material.R$styleable: int Transition_transitionDisable -com.google.android.material.R$drawable: R$drawable() -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: CircularRevealCoordinatorLayout(android.content.Context) -android.didikee.donate.R$id: int activity_chooser_view_content -okhttp3.internal.http2.Http2Connection: void failConnection() -james.adaptiveicon.R$styleable: int DrawerArrowToggle_gapBetweenBars -androidx.preference.R$styleable: int AppCompatTheme_actionModeBackground -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void dispose() -androidx.lifecycle.FullLifecycleObserverAdapter: FullLifecycleObserverAdapter(androidx.lifecycle.FullLifecycleObserver,androidx.lifecycle.LifecycleEventObserver) -retrofit2.BuiltInConverters$RequestBodyConverter: BuiltInConverters$RequestBodyConverter() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: long serialVersionUID -io.reactivex.internal.util.VolatileSizeArrayList: boolean addAll(int,java.util.Collection) -androidx.appcompat.R$bool -io.reactivex.internal.util.EmptyComponent: boolean isDisposed() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlNormal -wangdaye.com.geometricweather.R$dimen: int mtrl_min_touch_target_size -wangdaye.com.geometricweather.R$attr: int itemShapeAppearanceOverlay -wangdaye.com.geometricweather.R$attr: int labelStyle -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: OkHttpCall$ExceptionCatchingResponseBody(okhttp3.ResponseBody) -com.google.android.material.R$drawable: int abc_scrubber_primary_mtrl_alpha -james.adaptiveicon.R$attr: int submitBackground -okio.Buffer$UnsafeCursor: boolean readWrite -com.google.android.material.tabs.TabLayout: void setOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalGap -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endColor -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void fail(java.lang.Throwable,io.reactivex.Observer,io.reactivex.internal.queue.SpscLinkedArrayQueue) -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -io.reactivex.Observable: io.reactivex.Observable doOnDispose(io.reactivex.functions.Action) -com.google.android.material.R$dimen: int abc_text_size_headline_material -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.util.concurrent.atomic.AtomicReference current -androidx.core.R$styleable: int GradientColor_android_endY -androidx.preference.R$attr: int actionModePopupWindowStyle -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_light -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -androidx.constraintlayout.widget.R$attr: int animate_relativeTo -com.google.android.material.R$color: int abc_tint_seek_thumb -okhttp3.ResponseBody$1 -okhttp3.ConnectionSpec: java.util.List tlsVersions() -com.google.android.material.R$styleable: int NavigationView_itemShapeAppearance -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: io.reactivex.internal.disposables.SequentialDisposable timed -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setNestedScrollingEnabled(boolean) -com.google.android.material.R$style: int Platform_AppCompat -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableStart -wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaSeekBar -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onSubscribe(io.reactivex.disposables.Disposable) -okio.DeflaterSink: java.util.zip.Deflater deflater -com.google.android.material.datepicker.SingleDateSelector: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -androidx.hilt.work.R$id: int time -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.internal.operators.observable.ObservableCache parent -androidx.recyclerview.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean -james.adaptiveicon.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -androidx.appcompat.widget.SearchView: void setOnSearchClickListener(android.view.View$OnClickListener) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_bias -androidx.appcompat.resources.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_container -wangdaye.com.geometricweather.R$string: int action_alert -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean -androidx.core.R$integer: int status_bar_notification_info_maxnum -androidx.appcompat.widget.ViewStubCompat: android.view.LayoutInflater getLayoutInflater() -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.String getWeatherText() -io.reactivex.observers.DisposableObserver: java.util.concurrent.atomic.AtomicReference upstream -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Long getId() -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityStopped(android.app.Activity) -cyanogenmod.weather.IRequestInfoListener$Stub: IRequestInfoListener$Stub() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String getValue() -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: boolean isDisposed() -cyanogenmod.providers.ThemesContract -cyanogenmod.os.Concierge: int PARCELABLE_VERSION -android.didikee.donate.R$styleable: int AlertDialog_android_layout -androidx.appcompat.R$dimen: int abc_disabled_alpha_material_dark -wangdaye.com.geometricweather.R$attr: int iconTint -io.reactivex.Observable: io.reactivex.Observable concatEager(io.reactivex.ObservableSource,int,int) -okio.Pipe$PipeSink -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: java.lang.String getProbabilityText(android.content.Context,float) -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$layout: int dialog_donate_wechat -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property District -androidx.work.R$id: int line3 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature Temperature -wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_small_material -androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_material -com.turingtechnologies.materialscrollbar.R$attr: int iconPadding -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String wind_direct -com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_enforceMaterialTheme -okio.RealBufferedSource: void close() -androidx.preference.R$styleable: int PreferenceGroup_initialExpandedChildrenCount -com.google.android.material.R$string: int mtrl_picker_day_of_week_column_header -okhttp3.internal.connection.RealConnection: boolean isMultiplexed() -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void dispose() -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getCityId() -com.jaredrummler.android.colorpicker.R$layout: int select_dialog_multichoice_material -okhttp3.ResponseBody$BomAwareReader: java.nio.charset.Charset charset -androidx.hilt.lifecycle.R$attr: int fontWeight -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Button -james.adaptiveicon.R$attr: int trackTintMode -com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: java.lang.String Unit -com.google.android.material.R$styleable: int CardView_cardPreventCornerOverlap -wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_1 -okhttp3.internal.http2.Http2Stream: boolean hasResponseHeaders -androidx.activity.R$id: int tag_accessibility_actions -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerValue(boolean,java.lang.Object) -com.google.android.material.R$color: int checkbox_themeable_attribute_color -cyanogenmod.app.BaseLiveLockManagerService: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingBottom -james.adaptiveicon.R$attr: int theme -okhttp3.internal.http1.Http1Codec: int STATE_OPEN_RESPONSE_BODY -wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_dividerHeight -cyanogenmod.weather.WeatherLocation: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$attr: int customNavigationLayout -com.google.android.material.datepicker.DateValidatorPointBackward -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -wangdaye.com.geometricweather.main.fragments.MainFragment -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -james.adaptiveicon.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$color: int mtrl_outlined_icon_tint -james.adaptiveicon.R$drawable: int notify_panel_notification_icon_bg -androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentX -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar_Small -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: void setUnit(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_alpha -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_track -androidx.fragment.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection -wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardTitle -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: double mHigh -wangdaye.com.geometricweather.R$string: int action_settings -androidx.appcompat.R$id: int none -com.google.android.material.R$styleable: int AppCompatTextView_drawableTopCompat -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_large_material -androidx.constraintlayout.widget.R$attr: int voiceIcon -com.tencent.bugly.crashreport.common.info.a: java.lang.Boolean an -android.didikee.donate.R$color: int button_material_dark -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: long requested() -android.didikee.donate.R$id: int time -com.tencent.bugly.proguard.f: byte f -com.tencent.bugly.crashreport.CrashReport: void postException(int,java.lang.String,java.lang.String,java.lang.String,java.util.Map) -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_checkbox -io.reactivex.Observable: io.reactivex.Observable take(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: int capacityHint -com.google.android.material.R$id: int progress_horizontal -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: double Value -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache -wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary_dark -androidx.vectordrawable.R$id: int icon_group -androidx.preference.R$styleable: int[] ActionBar -com.tencent.bugly.crashreport.common.info.a: java.lang.Object ax -cyanogenmod.app.Profile$ExpandedDesktopMode -okio.ByteString: okio.ByteString encodeString(java.lang.String,java.nio.charset.Charset) -android.didikee.donate.R$id: int notification_main_column -androidx.work.R$styleable: int[] FontFamilyFont -androidx.constraintlayout.widget.R$attr: int mock_showLabel -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_showDelay -com.google.android.material.R$styleable: int MaterialCalendarItem_itemTextColor -wangdaye.com.geometricweather.R$id: int activity_weather_daily_title -wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardContainer -androidx.recyclerview.R$string: R$string() -androidx.appcompat.R$styleable: int[] ActionBarLayout -android.didikee.donate.R$attr: int gapBetweenBars -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_BRIGHTNESS_CONTROL_VALIDATOR -com.google.gson.stream.JsonReader: int pos -wangdaye.com.geometricweather.R$layout: int activity_search -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_fabSize -cyanogenmod.weather.WeatherInfo: WeatherInfo(cyanogenmod.weather.WeatherInfo$1) -wangdaye.com.geometricweather.R$dimen: int material_clock_size -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_shapeAppearance -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -okhttp3.internal.connection.ConnectionSpecSelector -wangdaye.com.geometricweather.R$id: int parentPanel -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_disabled_material_light -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_creator -okhttp3.OkHttpClient: int pingIntervalMillis() -io.reactivex.Observable: io.reactivex.Observable onErrorReturnItem(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth -androidx.preference.R$styleable: int CheckBoxPreference_android_disableDependentsState -com.github.rahatarmanahmed.cpv.CircularProgressView: float startAngle -androidx.constraintlayout.widget.R$styleable: int ActionBar_logo -androidx.lifecycle.Lifecycling: int REFLECTIVE_CALLBACK -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_switchTextOn -okhttp3.Request: Request(okhttp3.Request$Builder) -com.tencent.bugly.crashreport.common.info.b: java.lang.String d(android.content.Context) -com.google.android.material.button.MaterialButton: void setStrokeColorResource(int) -james.adaptiveicon.R$color: int tooltip_background_dark -com.google.gson.stream.JsonWriter: int stackSize -cyanogenmod.externalviews.KeyguardExternalView$3: int val$x -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button -androidx.vectordrawable.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.R$attr: int behavior_autoHide -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type valueOf(java.lang.String) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void cancel() -com.google.android.material.radiobutton.MaterialRadioButton -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void drainLoop() -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.String toString() -wangdaye.com.geometricweather.R$attr: int indicatorSize -com.google.android.material.R$attr: int collapsedTitleTextAppearance -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property CityId -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 -androidx.preference.R$id: int split_action_bar -androidx.appcompat.R$attr: int textAllCaps -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_fontFamily -wangdaye.com.geometricweather.R$drawable: int widget_day_week -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Title -androidx.appcompat.R$dimen: int disabled_alpha_material_dark -wangdaye.com.geometricweather.R$attr: int tooltipFrameBackground -androidx.preference.R$id: int notification_main_column_container -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalBias -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitationDuration -wangdaye.com.geometricweather.R$styleable: int Preference_summary -wangdaye.com.geometricweather.R$attr: int srcCompat -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_16dp -james.adaptiveicon.R$drawable: int tooltip_frame_light -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeight -com.google.android.material.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getFormattedId() -com.xw.repo.bubbleseekbar.R$attr: int bsb_track_size -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Borderless_Colored -com.turingtechnologies.materialscrollbar.R$attr: int actionMenuTextColor -android.didikee.donate.R$drawable: int abc_ab_share_pack_mtrl_alpha -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: okhttp3.Request request() -com.google.android.material.timepicker.ChipTextInputComboView -com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_square -com.google.android.material.R$style: int Base_DialogWindowTitle_AppCompat -com.github.rahatarmanahmed.cpv.CircularProgressView$6 -com.google.android.material.R$attr: int icon -androidx.customview.R$styleable: int FontFamilyFont_android_fontStyle -androidx.transition.R$drawable -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver -james.adaptiveicon.R$attr: int contentInsetStart -com.tencent.bugly.crashreport.crash.anr.a: java.util.Map b -wangdaye.com.geometricweather.settings.activities.PreviewIconActivity -androidx.drawerlayout.R$color: int notification_action_color_filter -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: long serialVersionUID -com.google.android.material.R$dimen: int design_snackbar_text_size -okio.RealBufferedSource$1: int available() -com.xw.repo.BubbleSeekBar: void setProgress(float) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setStatus(int) -androidx.viewpager2.R$styleable: int FontFamily_fontProviderAuthority -com.amap.api.location.AMapLocationClientOption: float getDeviceModeDistanceFilter() -com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableCompat -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeStyle -wangdaye.com.geometricweather.R$string: int summary_collapsed_preference_list -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_creator -com.bumptech.glide.load.HttpException: HttpException(java.lang.String,int) -com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_FENCE -com.tencent.bugly.proguard.an: java.lang.String f -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_variablePadding -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ListPopupWindow -android.didikee.donate.R$dimen: int abc_dialog_fixed_width_minor -androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -android.didikee.donate.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -wangdaye.com.geometricweather.R$id: int src_in -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: boolean completed -androidx.appcompat.R$dimen: int abc_action_bar_default_padding_start_material -androidx.appcompat.resources.R$dimen: int compat_button_padding_horizontal_material -android.didikee.donate.R$attr: int voiceIcon -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastHorizontalStyle -androidx.viewpager2.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.R$string: int feedback_request_permission -com.google.android.material.bottomappbar.BottomAppBar: void setCradleVerticalOffset(float) -io.reactivex.Observable: io.reactivex.Observable join(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -cyanogenmod.externalviews.ExternalView$8: cyanogenmod.externalviews.ExternalView this$0 -okhttp3.internal.http2.Http2Connection$2: long val$unacknowledgedBytesRead -wangdaye.com.geometricweather.settings.fragments.NotificationColorSettingsFragment: NotificationColorSettingsFragment() -wangdaye.com.geometricweather.common.basic.models.weather.Base: Base(java.lang.String,long,java.util.Date,long,java.util.Date,long) -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(java.net.URL) -wangdaye.com.geometricweather.R$id: int gone -android.didikee.donate.R$attr: int switchStyle -cyanogenmod.providers.CMSettings$Secure: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -wangdaye.com.geometricweather.R$layout: int dialog_time_setter -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: long read(okio.Buffer,long) -wangdaye.com.geometricweather.R$id: int search_close_btn -okhttp3.internal.connection.RouteDatabase: RouteDatabase() -com.tencent.bugly.proguard.p: java.util.Map a(com.tencent.bugly.proguard.p,int,com.tencent.bugly.proguard.o) -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog -androidx.preference.R$id: int src_over -com.bumptech.glide.load.HttpException: int statusCode -com.turingtechnologies.materialscrollbar.R$id: R$id() -com.tencent.bugly.crashreport.common.info.a: java.lang.String w() -com.tencent.bugly.proguard.ar: byte a -androidx.activity.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$attr: int cpv_showColorShades -androidx.loader.R$id: int title -com.google.android.material.R$styleable: int TextInputLayout_helperText -okio.RealBufferedSource$1: RealBufferedSource$1(okio.RealBufferedSource) -androidx.core.R$styleable: int ColorStateListItem_alpha -androidx.lifecycle.ViewModel: boolean mCleared -androidx.coordinatorlayout.R$id: int action_divider -wangdaye.com.geometricweather.R$layout: int item_card_display -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar_Small -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_focused -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: boolean setOther(io.reactivex.disposables.Disposable) -james.adaptiveicon.R$attr: int spinnerDropDownItemStyle -androidx.preference.R$attr: int backgroundTint -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.AlertEntity) -com.tencent.bugly.proguard.v: com.tencent.bugly.proguard.t k -wangdaye.com.geometricweather.R$attr: int triggerId -androidx.core.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$attr: int colorOnBackground -com.amap.api.fence.GeoFence: boolean q -wangdaye.com.geometricweather.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationZ -com.tencent.bugly.crashreport.crash.b: void c(java.util.List) -androidx.recyclerview.R$integer -androidx.appcompat.R$style: int Base_V26_Theme_AppCompat -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: boolean isDisposed() -androidx.preference.R$styleable: int ViewStubCompat_android_layout -james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMarkTint -com.google.android.material.R$styleable: int CoordinatorLayout_statusBarBackground -androidx.recyclerview.R$id: int action_text -androidx.activity.R$styleable: int FontFamilyFont_ttcIndex -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dark -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_RadioButton -com.turingtechnologies.materialscrollbar.Indicator: void setText(int) -com.google.android.material.R$attr: int fastScrollEnabled -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr -com.xw.repo.bubbleseekbar.R$attr: int titleTextStyle -com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context) -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List alertList -com.bumptech.glide.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.R$id: int activity_alert_recyclerView -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_Tooltip -wangdaye.com.geometricweather.R$id: int treeTitle -okio.Util: java.nio.charset.Charset UTF_8 -cyanogenmod.themes.ThemeManager$2$1 -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.Float getSpeed() -androidx.work.R$bool -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_overflow_padding_end_material -androidx.hilt.R$id: int right_side -com.turingtechnologies.materialscrollbar.R$attr: int iconGravity -android.didikee.donate.R$layout: int abc_action_mode_bar -wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_hovered_alpha -james.adaptiveicon.R$id: int action_bar_container -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderPackage -androidx.work.R$id: int accessibility_custom_action_0 -okio.ByteString: int lastIndexOf(byte[],int) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SeekBar -com.tencent.bugly.proguard.p: android.content.ContentValues c(com.tencent.bugly.proguard.r) -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_getActiveWeatherServiceProviderLabel -androidx.dynamicanimation.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIconTint -okhttp3.internal.cache.CacheInterceptor$1: okhttp3.internal.cache.CacheInterceptor this$0 -wangdaye.com.geometricweather.db.entities.AlertEntity -cyanogenmod.externalviews.KeyguardExternalView: void setProviderComponent(android.content.ComponentName) -io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.MaybeSource) -androidx.fragment.app.FragmentManagerViewModel -wangdaye.com.geometricweather.R$drawable: int abc_ic_arrow_drop_right_black_24dp -com.google.android.material.R$style: int Widget_Design_NavigationView -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_INTENSITY_INDEX -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_disableDependentsState -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void dispose() -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_width_minor -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMenuView -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline5 -cyanogenmod.app.CustomTile$ExpandedItem$1: java.lang.Object createFromParcel(android.os.Parcel) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -com.google.android.material.button.MaterialButton: void setPressed(boolean) -okio.Buffer: okio.BufferedSink writeUtf8CodePoint(int) -okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV3 -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec CLEARTEXT -com.amap.api.location.AMapLocation: java.lang.String getCity() -androidx.appcompat.R$attr: int checkboxStyle -wangdaye.com.geometricweather.R$style: int CardView_Light -wangdaye.com.geometricweather.R$string: int mtrl_chip_close_icon_content_description -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode -androidx.preference.R$styleable: int AppCompatTheme_colorButtonNormal -cyanogenmod.externalviews.KeyguardExternalView$3: int val$width -wangdaye.com.geometricweather.R$drawable: int abc_edit_text_material -android.didikee.donate.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -okhttp3.RealCall: RealCall(okhttp3.OkHttpClient,okhttp3.Request,boolean) -androidx.appcompat.R$style: int Theme_AppCompat_CompactMenu -cyanogenmod.util.ColorUtils: com.android.internal.util.cm.palette.Palette$Swatch getDominantSwatch(com.android.internal.util.cm.palette.Palette) -com.google.android.material.textfield.TextInputLayout: void setPrefixTextAppearance(int) -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundDrawable(android.graphics.drawable.Drawable) -okhttp3.internal.ws.RealWebSocket$Message -wangdaye.com.geometricweather.R$anim: int fragment_main_exit -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setUrl(java.lang.String) -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro sun() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabTextStyle -retrofit2.Converter: java.lang.Object convert(java.lang.Object) -com.google.android.material.R$attr: int subMenuArrow -com.google.android.material.R$styleable: int TextInputLayout_hintTextAppearance -androidx.cardview.R$styleable: R$styleable() -okhttp3.internal.Util$1: int compare(java.lang.Object,java.lang.Object) -androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Light -com.google.android.material.R$styleable: int Transition_staggered -com.jaredrummler.android.colorpicker.R$layout: R$layout() -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void remove() -com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_EditTextPreference_Material -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_Solid -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: org.reactivestreams.Subscription upstream -android.didikee.donate.R$styleable: int AppCompatTheme_actionButtonStyle -androidx.constraintlayout.widget.R$attr: int fontWeight -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerY -com.amap.api.fence.PoiItem$1: java.lang.Object createFromParcel(android.os.Parcel) -james.adaptiveicon.R$attr: int drawerArrowStyle -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void clear() -com.google.android.material.R$drawable: int abc_textfield_search_activated_mtrl_alpha -com.google.android.material.R$attr: int tabPadding -com.google.android.material.R$attr: int flow_verticalAlign -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -androidx.drawerlayout.R$attr: int fontProviderAuthority -android.didikee.donate.R$styleable: int ActionBar_subtitleTextStyle -com.tencent.bugly.proguard.v: v(android.content.Context,int,int,byte[],java.lang.String,java.lang.String,com.tencent.bugly.proguard.t,boolean,boolean) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_transitionPathRotate -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_SearchResult_Title -androidx.appcompat.R$id: int off -com.google.android.material.R$animator: int mtrl_btn_state_list_anim -com.google.android.material.R$styleable: int TextAppearance_android_fontFamily -androidx.hilt.work.R$id: int tag_screen_reader_focusable -com.jaredrummler.android.colorpicker.R$color: int tooltip_background_light -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float NitrogenMonoxide -com.turingtechnologies.materialscrollbar.R$attr: int itemHorizontalTranslationEnabled -okio.RealBufferedSource: void readFully(okio.Buffer,long) -com.jaredrummler.android.colorpicker.R$drawable: int notify_panel_notification_icon_bg -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour WRAP_CONTENT -okhttp3.OkHttpClient$Builder: int pingInterval -okhttp3.logging.LoggingEventListener: void responseHeadersEnd(okhttp3.Call,okhttp3.Response) -androidx.cardview.R$styleable -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endX -com.google.android.material.navigation.NavigationView: android.view.MenuItem getCheckedItem() -wangdaye.com.geometricweather.R$anim: int fragment_close_exit -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void updateVisibility() -androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat_Dark -androidx.hilt.R$styleable: int FontFamily_fontProviderAuthority -androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_3_material -com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreferenceCompat -androidx.preference.R$styleable: int PopupWindow_android_popupAnimationStyle -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature temperature -com.google.android.material.R$drawable: int abc_text_select_handle_left_mtrl_dark -com.google.android.material.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog -com.google.android.material.R$drawable: int abc_text_select_handle_right_mtrl_dark -com.google.android.material.R$styleable: int Constraint_layout_constraintBaseline_creator -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -io.reactivex.internal.disposables.DisposableHelper: void dispose() -com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingTop() -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_enterFadeDuration -cyanogenmod.util.ColorUtils -james.adaptiveicon.R$layout: int select_dialog_singlechoice_material -android.support.v4.app.INotificationSideChannel$Stub: INotificationSideChannel$Stub() -okio.Buffer: okio.BufferedSink writeLongLe(long) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: int IconCode -com.google.android.material.datepicker.PickerFragment -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_track_color -okhttp3.OkHttpClient$1: void setCache(okhttp3.OkHttpClient$Builder,okhttp3.internal.cache.InternalCache) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onPreparePanel(int,android.view.View,android.view.Menu) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderTextAppearance -androidx.appcompat.resources.R$id: int right_icon -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixText -androidx.preference.R$dimen: int compat_button_inset_horizontal_material -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircle -com.jaredrummler.android.colorpicker.R$attr: int windowFixedWidthMajor -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar -androidx.constraintlayout.widget.R$styleable: int[] RecycleListView -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void replay() -james.adaptiveicon.R$drawable: int notification_action_background -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LOCK_WALLPAPER_PREVIEW -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontWeight -com.google.gson.stream.JsonReader: void skipValue() -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$id: int homeAsUp -com.amap.api.location.CoordinateConverter: com.amap.api.location.CoordinateConverter from(com.amap.api.location.CoordinateConverter$CoordType) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_position -wangdaye.com.geometricweather.R$styleable: int Chip_chipIconEnabled -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_3DES_EDE_CBC_SHA -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTag -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIconTintList(android.content.res.ColorStateList) -com.google.android.material.R$id: int action_bar_title -android.didikee.donate.R$dimen: int abc_action_bar_default_padding_end_material -wangdaye.com.geometricweather.R$attr: int dropDownListViewStyle -okhttp3.internal.publicsuffix.PublicSuffixDatabase: void readTheList() -androidx.constraintlayout.widget.R$styleable: int Constraint_barrierDirection -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String f -androidx.preference.R$style: int Theme_AppCompat_Light_NoActionBar -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property SunRiseDate -androidx.constraintlayout.widget.R$styleable: int[] KeyTrigger -androidx.swiperefreshlayout.R$dimen: int notification_action_icon_size -androidx.constraintlayout.widget.R$styleable: int[] MenuView -androidx.transition.R$layout: int notification_template_custom_big -com.tencent.bugly.proguard.z: long b() -androidx.core.R$id -androidx.work.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$attr: int layout_editor_absoluteX -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_subtitleTextStyle -com.google.android.material.appbar.AppBarLayout$Behavior: AppBarLayout$Behavior() -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.reflect.Type componentType -com.jaredrummler.android.colorpicker.R$attr: int preferenceTheme -androidx.activity.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabContentStart -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids -cyanogenmod.weather.RequestInfo: android.location.Location getLocation() -com.tencent.bugly.crashreport.common.info.a: int H() -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode resolve(android.content.Context) -androidx.lifecycle.LifecycleRegistry: void removeObserver(androidx.lifecycle.LifecycleObserver) -androidx.appcompat.resources.R$id: int accessibility_custom_action_13 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_LOW_POWER_VALIDATOR -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_Primary -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.util.concurrent.atomic.AtomicBoolean listRead -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun -wangdaye.com.geometricweather.R$layout: int container_main_sun_moon -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabStyle -okhttp3.internal.cache.CacheStrategy$Factory: int ageSeconds -com.turingtechnologies.materialscrollbar.R$layout: int notification_template_part_chronometer -com.turingtechnologies.materialscrollbar.Indicator: void setRTL(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_title -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig locationEntityDaoConfig -androidx.preference.R$drawable: int abc_seekbar_thumb_material -androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarWidgetTheme -okhttp3.internal.platform.AndroidPlatform: boolean api23IsCleartextTrafficPermitted(java.lang.String,java.lang.Class,java.lang.Object) -com.bumptech.glide.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$attr: int tabMinWidth -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onError(java.lang.Throwable) -androidx.preference.R$attr: int subMenuArrow -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_WAKE_SCREEN_VALIDATOR -wangdaye.com.geometricweather.location.services.LocationService: boolean hasPermissions(android.content.Context) -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter -com.google.android.material.R$color: int design_fab_shadow_mid_color -cyanogenmod.app.Profile: java.util.Collection getConnectionSettings() -androidx.preference.R$styleable: int AppCompatTheme_tooltipFrameBackground -cyanogenmod.power.PerformanceManager: cyanogenmod.power.IPerformanceManager getService() -androidx.preference.R$style: int Widget_AppCompat_PopupWindow -com.google.android.material.R$attr: int enforceTextAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_seekBarStyle -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: double Value -androidx.preference.R$style: int TextAppearance_AppCompat_Display2 -com.google.android.material.R$styleable: int AppCompatTheme_actionBarItemBackground -wangdaye.com.geometricweather.R$styleable: int PropertySet_android_visibility -com.google.android.material.internal.ForegroundLinearLayout: void setForegroundGravity(int) -com.jaredrummler.android.colorpicker.R$layout: int abc_screen_simple_overlay_action_mode -com.google.android.material.R$dimen: int abc_action_bar_overflow_padding_end_material -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -okio.ForwardingSource: okio.Source delegate -okhttp3.internal.connection.RealConnection: okhttp3.Handshake handshake() -android.didikee.donate.R$style: int Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event UPDATE -retrofit2.ParameterHandler$Part: java.lang.reflect.Method method -wangdaye.com.geometricweather.R$color: int mtrl_chip_close_icon_tint -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline1 -cyanogenmod.app.ICMStatusBarManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCutDrawable -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: MinutelyEntityDao(org.greenrobot.greendao.internal.DaoConfig) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX -androidx.appcompat.widget.AppCompatRadioButton: void setButtonDrawable(int) -com.google.android.material.textfield.TextInputLayout: void setEndIconTintMode(android.graphics.PorterDuff$Mode) -androidx.preference.R$attr: int windowMinWidthMinor -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel -androidx.preference.EditTextPreference: EditTextPreference(android.content.Context,android.util.AttributeSet) -androidx.lifecycle.extensions.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_orderInCategory -wangdaye.com.geometricweather.R$styleable: int ChipGroup_singleSelection -james.adaptiveicon.R$style: int Theme_AppCompat_Light_NoActionBar -com.google.gson.stream.JsonReader: void skipUnquotedValue() -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getIce() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric Metric -androidx.preference.R$dimen: int abc_progress_bar_height_material -com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage DEFAULT -com.google.android.material.radiobutton.MaterialRadioButton: void setUseMaterialThemeColors(boolean) -wangdaye.com.geometricweather.R$style: int material_image_button -com.tencent.bugly.CrashModule: int MODULE_ID -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitationProbability -androidx.hilt.R$dimen: int notification_small_icon_background_padding -androidx.customview.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: double lat -androidx.appcompat.R$attr: int maxButtonHeight -com.google.android.material.R$attr: int textAppearanceSearchResultSubtitle -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeTopLeft -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_title_material -androidx.appcompat.R$styleable: int ActionBar_homeLayout -androidx.drawerlayout.R$styleable: int GradientColor_android_startY -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_color_selector -androidx.appcompat.widget.AppCompatCheckBox: void setButtonDrawable(int) -wangdaye.com.geometricweather.R$xml: int cm_weather_provider_options -androidx.hilt.work.R$styleable: int ColorStateListItem_android_alpha -androidx.lifecycle.AndroidViewModel: android.app.Application mApplication -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_collapseContentDescription -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Large_Inverse -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_GREEN_INDEX -wangdaye.com.geometricweather.R$drawable: int ic_sunrise -retrofit2.OkHttpCall: retrofit2.OkHttpCall clone() -cyanogenmod.weather.IRequestInfoListener: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) -androidx.preference.R$dimen: int tooltip_margin -okhttp3.internal.cache.CacheRequest: okio.Sink body() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onSubscribe(io.reactivex.disposables.Disposable) -retrofit2.Converter -com.google.android.material.R$attr: int lastBaselineToBottomHeight -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType INT_TYPE -androidx.preference.R$style: int Widget_AppCompat_Toolbar -com.google.android.material.R$anim: int design_bottom_sheet_slide_in -androidx.drawerlayout.R$id: int icon -com.google.android.material.R$style: int TextAppearance_Compat_Notification_Time -com.google.android.material.R$styleable: int AppCompatTheme_borderlessButtonStyle -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundDrawable(android.graphics.drawable.Drawable) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -androidx.lifecycle.extensions.R$dimen: int compat_notification_large_icon_max_width -androidx.activity.R$attr: int fontProviderFetchTimeout -com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setColor(boolean) -androidx.viewpager2.R$layout: int notification_template_part_time -com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Light_Dialog -androidx.lifecycle.LifecycleRegistry: java.util.ArrayList mParentStates -wangdaye.com.geometricweather.R$styleable: int Layout_barrierMargin -com.google.android.material.R$attr: int layout_constraintBottom_toTopOf -android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -okhttp3.internal.cache2.Relay: boolean isClosed() -io.reactivex.internal.observers.BlockingObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_width -cyanogenmod.app.Profile: void removeProfileGroup(java.util.UUID) -androidx.core.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation: java.lang.Float cumul24H -james.adaptiveicon.R$attr: int ratingBarStyle -james.adaptiveicon.R$styleable: int PopupWindow_android_popupAnimationStyle -androidx.lifecycle.MediatorLiveData$Source: MediatorLiveData$Source(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) -wangdaye.com.geometricweather.R$dimen: int material_emphasis_medium -androidx.hilt.lifecycle.R$attr: int font -cyanogenmod.weatherservice.IWeatherProviderService$Stub -com.google.android.material.R$attr: int fontProviderAuthority -com.tencent.bugly.crashreport.common.info.a: boolean al -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver -okhttp3.internal.http1.Http1Codec$FixedLengthSink: void write(okio.Buffer,long) -com.amap.api.location.AMapLocation$1: java.lang.Object[] newArray(int) -androidx.swiperefreshlayout.R$drawable -com.amap.api.location.AMapLocation: java.lang.String getProvider() -android.support.v4.app.RemoteActionCompatParcelizer -com.google.android.material.R$style: int Widget_AppCompat_Spinner_Underlined -com.tencent.bugly.proguard.ak: java.lang.String f -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_checkboxStyle -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_typeface -cyanogenmod.profiles.LockSettings: LockSettings() -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setInterval(long) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.String TABLENAME -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_setPowerProfile -androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_switch -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextAppearanceActive(int) -androidx.cardview.R$style: int CardView_Light -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabRippleColor -okio.Pipe$PipeSink: void close() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.R$id: int animateToStart -androidx.constraintlayout.widget.R$attr: int mock_label -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton -androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context,android.util.AttributeSet,int) -com.amap.api.location.UmidtokenInfo: void setLocAble(boolean) -androidx.appcompat.R$style: int Animation_AppCompat_DropDownUp -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: android.os.IBinder mRemote -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_medium_component -com.google.android.material.R$styleable: int TextInputLayout_suffixTextColor -com.amap.api.location.DPoint: DPoint() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float icePrecipitation -com.google.android.material.R$styleable: int CardView_cardUseCompatPadding -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView -wangdaye.com.geometricweather.R$string: int sp_widget_hourly_trend_setting -androidx.constraintlayout.widget.R$styleable: int Transform_android_rotationX -com.amap.api.location.AMapLocation: int LOCATION_TYPE_OFFLINE -com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_top_material -androidx.preference.internal.PreferenceImageView -james.adaptiveicon.R$styleable: int AppCompatSeekBar_android_thumb -androidx.appcompat.widget.ScrollingTabContainerView -cyanogenmod.app.Profile: void setScreenLockMode(cyanogenmod.profiles.LockSettings) -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.customview.R$dimen: int notification_small_icon_background_padding -com.xw.repo.bubbleseekbar.R$attr: int searchIcon -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_android_elevation -com.tencent.bugly.proguard.n: long a -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_stacked_tab_max_width -android.didikee.donate.R$styleable: int MenuView_android_headerBackground -com.google.android.material.R$styleable: int BottomNavigationView_labelVisibilityMode -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean cancelled -okhttp3.Cache$Entry: void writeCertList(okio.BufferedSink,java.util.List) -okhttp3.internal.ws.WebSocketReader: byte[] maskKey -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_maxWidth -wangdaye.com.geometricweather.R$attr: int buttonSize -wangdaye.com.geometricweather.R$string: int widget_day_week -androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context,android.util.AttributeSet) -cyanogenmod.weather.WeatherInfo: double mTemperature -com.google.android.material.R$color: int design_default_color_on_background -com.google.android.material.R$styleable: int FloatingActionButton_borderWidth -com.amap.api.location.UmidtokenInfo$a -com.google.android.material.slider.RangeSlider: float getMinSeparation() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light_normal -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogIcon -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Headline -androidx.appcompat.widget.AppCompatRadioButton: int getCompoundPaddingLeft() -com.bumptech.glide.integration.okhttp.R$attr -com.tencent.bugly.proguard.ap: void a(com.tencent.bugly.proguard.i) -com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.proguard.aj a(java.lang.String,android.content.Context,java.lang.String) -okhttp3.internal.http2.Http2Codec: java.lang.String ENCODING -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean done -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_useCompatPadding -com.google.android.material.R$styleable: int MotionLayout_showPaths -com.turingtechnologies.materialscrollbar.R$attr: int closeIconSize -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void drain() -cyanogenmod.weather.RequestInfo$1: cyanogenmod.weather.RequestInfo createFromParcel(android.os.Parcel) -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_PopupMenu -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,boolean) -com.google.android.material.R$id: int text -android.didikee.donate.R$color: int background_floating_material_dark -okio.GzipSource: java.util.zip.Inflater inflater -androidx.swiperefreshlayout.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarTitle -com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context) -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: ParallelRunOn$BaseRunOnSubscriber(int,io.reactivex.internal.queue.SpscArrayQueue,io.reactivex.Scheduler$Worker) -wangdaye.com.geometricweather.R$drawable: int notif_temp_3 -com.jaredrummler.android.colorpicker.R$attr: int actionBarTabStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: double Value -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_windowAnimationStyle -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_registerWeatherServiceProviderChangeListener -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_toRightOf -androidx.preference.R$attr: int initialActivityCount -io.reactivex.Observable: io.reactivex.Observable doOnComplete(io.reactivex.functions.Action) -com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(java.lang.String,java.lang.String) -androidx.fragment.R$style: int TextAppearance_Compat_Notification_Line2 -com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getIndicatorWidth() -com.amap.api.location.DPoint$1: java.lang.Object createFromParcel(android.os.Parcel) -com.turingtechnologies.materialscrollbar.R$string: int abc_activity_chooser_view_see_all -cyanogenmod.app.ICMTelephonyManager: void setDataConnectionState(boolean) -com.baidu.location.e.m: java.util.List a(org.json.JSONObject,java.lang.String,int) -james.adaptiveicon.R$styleable: int AppCompatTheme_homeAsUpIndicator -io.reactivex.internal.observers.DeferredScalarDisposable: int DISPOSED -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void disposeBoundary() -com.google.android.material.R$style: int Theme_MaterialComponents_NoActionBar -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler a -james.adaptiveicon.R$attr: int backgroundStacked -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableLeft -com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException: DefaultImageHeaderParser$Reader$EndOfFileException() -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_2 -cyanogenmod.app.ProfileGroup$1: cyanogenmod.app.ProfileGroup[] newArray(int) -wangdaye.com.geometricweather.R$id: int activity_alert_container -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.R$dimen: int action_bar_size -android.didikee.donate.R$style: int AlertDialog_AppCompat_Light -com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context,android.util.AttributeSet) -androidx.lifecycle.GenericLifecycleObserver -com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingBottom -retrofit2.OkHttpCall: okhttp3.Call$Factory callFactory -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: boolean isNoDirection() -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_letter_spacing -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_WIFI_COMBO_MARGIN_END -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: boolean isDisposed() -com.google.android.material.R$attr: int barrierDirection -retrofit2.RequestFactory$Builder: void validateResolvableType(int,java.lang.reflect.Type) -cyanogenmod.weather.WeatherLocation -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationY -wangdaye.com.geometricweather.R$layout: int cpv_dialog_presets -james.adaptiveicon.R$drawable: int notification_template_icon_bg -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: long serialVersionUID -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Wind wind -androidx.constraintlayout.widget.R$dimen: int abc_button_padding_vertical_material -androidx.loader.R$drawable: int notification_icon_background -androidx.constraintlayout.widget.R$style: int Animation_AppCompat_DropDownUp -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onSuccess(java.lang.Object) -james.adaptiveicon.R$id: int screen -com.google.gson.stream.JsonReader: java.lang.String toString() -androidx.viewpager2.R$color: int ripple_material_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setZh_CN(java.lang.String) -retrofit2.RequestFactory: okhttp3.Request create(java.lang.Object[]) -com.turingtechnologies.materialscrollbar.R$attr: int tabRippleColor -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_viewInflaterClass -com.xw.repo.bubbleseekbar.R$color: int colorPrimaryDark -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent -com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Light -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void cancel() -okhttp3.internal.http1.Http1Codec: okio.Source newFixedLengthSource(long) -wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_horizontal -wangdaye.com.geometricweather.R$color: int dim_foreground_disabled_material_dark -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -com.google.android.material.R$styleable: int CustomAttribute_customColorDrawableValue -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitationProbability -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicReference upstream -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_Toolbar -io.reactivex.internal.queue.SpscArrayQueue: int calcElementOffset(long) -wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_layout -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status[] values() -androidx.hilt.lifecycle.R$dimen: int compat_button_inset_vertical_material -androidx.vectordrawable.R$id: int text2 -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_borderless_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getEn_US() -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionProviderClass -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeSplitBackground -com.google.android.material.R$styleable: int SwitchCompat_showText -androidx.preference.R$styleable: int AnimatedStateListDrawableItem_android_id -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: MfRainResult$RainForecast() -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicator -androidx.dynamicanimation.R$drawable: int notification_bg -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitationDuration(java.lang.Float) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: KeyguardExternalViewProviderService$Provider$ProviderImpl$6(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary -androidx.constraintlayout.widget.R$dimen: int tooltip_precise_anchor_extra_offset -com.google.android.material.bottomappbar.BottomAppBar$SavedState: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_motionProgress -androidx.appcompat.R$dimen: int highlight_alpha_material_light -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life -androidx.viewpager.R$styleable: int FontFamilyFont_font -com.google.android.material.R$attr: int circularRadius -androidx.constraintlayout.helper.widget.Flow: void setFirstVerticalStyle(int) -okhttp3.internal.http2.PushObserver$1: boolean onHeaders(int,java.util.List,boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemMaxLines -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_weightSum -james.adaptiveicon.R$attr: int layout -com.google.android.material.R$attr: int layout_constraintBaseline_toBaselineOf -cyanogenmod.externalviews.KeyguardExternalView: void onLockscreenSlideOffsetChanged(float) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Subtitle1 -com.jaredrummler.android.colorpicker.R$attr: int searchIcon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String getUnit() -wangdaye.com.geometricweather.R$style: int my_switch -com.google.android.material.R$attr: int content -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedHeightMinor -com.google.android.material.R$styleable: int MaterialCalendar_rangeFillColor -com.google.android.material.R$dimen: int mtrl_calendar_day_width -io.reactivex.internal.observers.LambdaObserver: LambdaObserver(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Consumer) -androidx.appcompat.view.menu.ActionMenuItemView: void setCheckable(boolean) -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_inverse_material_dark -androidx.preference.R$styleable: int AppCompatTheme_actionModeCopyDrawable -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy REPLACE -com.tencent.bugly.crashreport.biz.a: long b(com.tencent.bugly.crashreport.biz.a) -james.adaptiveicon.R$drawable: int abc_text_select_handle_middle_mtrl_dark -androidx.coordinatorlayout.R$styleable: int GradientColor_android_type -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void dispose() -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents -wangdaye.com.geometricweather.R$array: int distance_units -james.adaptiveicon.R$attr: int titleMargins -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_16 -android.didikee.donate.R$dimen: int abc_edit_text_inset_bottom_material -wangdaye.com.geometricweather.R$color: int design_fab_stroke_top_inner_color -androidx.loader.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.R$id: int layout -androidx.preference.R$id: int action_bar -cyanogenmod.providers.CMSettings$System: java.lang.String TOUCHSCREEN_GESTURE_HAPTIC_FEEDBACK -com.turingtechnologies.materialscrollbar.R$attr: int controlBackground -io.reactivex.internal.util.NotificationLite: java.lang.Object getValue(java.lang.Object) -androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getLogo() -com.google.android.material.R$drawable: int abc_btn_check_to_on_mtrl_015 -wangdaye.com.geometricweather.R$dimen: int design_fab_size_normal -io.reactivex.Observable: java.lang.Iterable blockingIterable() -okhttp3.internal.http2.Http2Connection: int DEGRADED_PING -retrofit2.DefaultCallAdapterFactory$1: DefaultCallAdapterFactory$1(retrofit2.DefaultCallAdapterFactory,java.lang.reflect.Type,java.util.concurrent.Executor) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_textLocale -android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -com.amap.api.location.AMapLocation: java.lang.String toStr() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: void setValue(java.lang.String) -retrofit2.Utils -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_elevation -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object readKey(android.database.Cursor,int) -com.google.android.material.R$attr: int voiceIcon -com.tencent.bugly.proguard.ai: void a(java.lang.StringBuilder,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemTextAppearance -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dialog -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: long unique -androidx.coordinatorlayout.R$styleable: int GradientColorItem_android_color -com.google.android.gms.location.ActivityRecognitionResult: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$id: int start -okhttp3.Address: okhttp3.Dns dns() -androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStoreOwner) -com.turingtechnologies.materialscrollbar.R$attr: int msb_handleColor -wangdaye.com.geometricweather.common.ui.widgets.TagView: void setCheckedBackgroundColor(int) -wangdaye.com.geometricweather.R$layout: int dialog_background_location -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: double Value -com.baidu.location.indoor.mapversion.c.a$d: java.lang.String h -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView_Menu -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_speed -wangdaye.com.geometricweather.R$color: int mtrl_textinput_filled_box_default_background_color -retrofit2.Callback: void onResponse(retrofit2.Call,retrofit2.Response) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: void setDefenseText(java.lang.String) -com.tencent.bugly.crashreport.crash.c: void e() -androidx.preference.R$styleable: int[] MultiSelectListPreference -androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.Lifecycle getLifecycle() -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_fontVariationSettings -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetRight -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver -androidx.preference.R$drawable: int notification_action_background -okhttp3.internal.cache.DiskLruCache$Editor$1 -com.turingtechnologies.materialscrollbar.R$attr: int singleLine -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -com.turingtechnologies.materialscrollbar.R$id: int home -androidx.appcompat.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.R$drawable: int flag_br -androidx.constraintlayout.widget.R$attr: int dropDownListViewStyle -com.google.android.material.R$attr: int barLength -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getDewPoint() -wangdaye.com.geometricweather.R$styleable: int PropertySet_layout_constraintTag -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Selected -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_buttonGravity -com.tencent.bugly.crashreport.common.info.b: java.lang.String h(android.content.Context) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeWetBulbTemperature() -androidx.appcompat.R$attr: int panelMenuListWidth -retrofit2.Utils$ParameterizedTypeImpl: java.lang.String toString() -wangdaye.com.geometricweather.R$drawable: int notif_temp_2 -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String CountryCode -com.google.android.material.R$styleable: int Badge_maxCharacterCount -com.google.android.gms.internal.location.zzac: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$styleable: int SnackbarLayout_backgroundTint -wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_top_start -android.didikee.donate.R$layout: int notification_template_icon_group -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_17 -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getNavBarThemePackageName() -androidx.appcompat.widget.AppCompatSpinner$SavedState -androidx.hilt.lifecycle.R$id: int tag_accessibility_pane_title -cyanogenmod.power.IPerformanceManager: boolean setPowerProfile(int) -retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler[] parameterHandlers -androidx.lifecycle.extensions.R$attr: int alpha -androidx.fragment.R$anim: int fragment_close_exit -com.github.rahatarmanahmed.cpv.CircularProgressView: float currentProgress -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_percent -androidx.work.impl.workers.ConstraintTrackingWorker -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.lang.Throwable error -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int requestFusion(int) -androidx.constraintlayout.widget.R$styleable: int Transform_android_translationY -android.support.v4.graphics.drawable.IconCompatParcelizer: androidx.core.graphics.drawable.IconCompat read(androidx.versionedparcelable.VersionedParcel) -okio.ByteString: int indexOf(byte[]) -androidx.hilt.lifecycle.R$id: int icon -android.didikee.donate.R$id: int line1 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_73 -wangdaye.com.geometricweather.R$string: int gitHub -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_0 -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_padding_top_material -androidx.preference.R$dimen: int abc_action_bar_default_height_material -com.google.android.material.R$style: int Widget_AppCompat_SeekBar_Discrete -androidx.constraintlayout.widget.R$attr: int autoTransition -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle -androidx.appcompat.widget.AppCompatTextView: void setFirstBaselineToTopHeight(int) -wangdaye.com.geometricweather.R$string: int ice -james.adaptiveicon.R$style: int Theme_AppCompat_Dialog -androidx.customview.R$drawable: int notification_action_background -com.tencent.bugly.CrashModule: int c -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_Overflow -androidx.preference.R$id: int top -androidx.preference.R$styleable: int LinearLayoutCompat_dividerPadding -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_NOTIFICATIONS -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -wangdaye.com.geometricweather.main.MainActivity: MainActivity() -com.google.android.material.R$styleable: int Transform_android_translationX -androidx.preference.R$bool: int abc_config_actionMenuItemAllCaps -androidx.lifecycle.extensions.R$id: int tag_screen_reader_focusable -com.google.android.material.chip.Chip: void setLines(int) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Menu -androidx.loader.content.Loader: void unregisterListener(androidx.loader.content.Loader$OnLoadCompleteListener) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_shapeAppearance -james.adaptiveicon.R$id: int scrollView -androidx.appcompat.R$style: int Base_Animation_AppCompat_Tooltip -org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory,int) -androidx.appcompat.R$attr: int actionBarSplitStyle -james.adaptiveicon.R$attr: int actionBarStyle -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_4 -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: ObservableSkipLast$SkipLastObserver(io.reactivex.Observer,int) -com.google.android.material.R$color: int design_default_color_background -com.google.android.material.R$styleable: int ConstraintSet_drawPath -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_change_size_expand_motion_spec -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -okhttp3.internal.ws.RealWebSocket$Close: int code -androidx.core.R$style: int TextAppearance_Compat_Notification_Title -james.adaptiveicon.R$styleable: int AppCompatTheme_editTextStyle -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: MfWarningsResult$WarningComments$WarningTextBlocItem() -androidx.appcompat.R$dimen: int tooltip_corner_radius -io.reactivex.Observable: io.reactivex.Observable interval(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -retrofit2.OkHttpCall$1: void callFailure(java.lang.Throwable) -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_CLOCK -androidx.preference.R$attr: int windowNoTitle -com.google.android.material.R$id: int largeLabel -com.turingtechnologies.materialscrollbar.R$attr: int colorPrimary -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: void onProgress(int) -androidx.vectordrawable.R$layout: int notification_action -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean outputFused -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder eventListenerFactory(okhttp3.EventListener$Factory) -com.google.android.material.R$styleable: int MenuGroup_android_id -com.amap.api.location.AMapLocation: java.lang.String d(com.amap.api.location.AMapLocation,java.lang.String) -android.didikee.donate.R$color: int switch_thumb_disabled_material_dark -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SearchView -com.google.android.material.R$id: int parentRelative -androidx.work.R$id: int action_divider -com.bumptech.glide.integration.okhttp.R$dimen: int notification_right_icon_size -com.tencent.bugly.proguard.u: com.tencent.bugly.proguard.u a() -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTintMode -com.google.android.material.R$styleable: int ConstraintSet_layout_constrainedWidth -okhttp3.Cookie$Builder: boolean secure -okhttp3.Cache: void delete() -com.google.android.material.R$styleable: int[] Insets -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat -retrofit2.RequestFactory: boolean isKotlinSuspendFunction -com.google.android.material.internal.FlowLayout -io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.jaredrummler.android.colorpicker.R$attr: int layoutManager -com.jaredrummler.android.colorpicker.R$id: int image -androidx.appcompat.R$drawable: int abc_spinner_mtrl_am_alpha -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_grey -com.google.android.material.R$dimen: int abc_text_size_display_3_material -androidx.viewpager.R$dimen: int notification_small_icon_size_as_large -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderQuery -com.tencent.bugly.crashreport.CrashReport: void setSdkExtraData(android.content.Context,java.lang.String,java.lang.String) -com.tencent.bugly.crashreport.crash.CrashDetailBean: int Q -com.google.android.material.R$styleable: int KeyTrigger_onPositiveCross -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderFetchTimeout -com.google.android.material.R$dimen: int mtrl_badge_with_text_radius -androidx.preference.R$styleable: int SwitchCompat_switchPadding -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: java.lang.String Unit -com.google.android.material.R$styleable: int MaterialRadioButton_useMaterialThemeColors -com.jaredrummler.android.colorpicker.R$bool: int config_materialPreferenceIconSpaceReserved -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline3 -wangdaye.com.geometricweather.R$plurals: R$plurals() -wangdaye.com.geometricweather.R$string: int phase_full -wangdaye.com.geometricweather.R$id: int visible -com.google.android.material.R$id: int unlabeled -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$string: int abc_capital_on -com.turingtechnologies.materialscrollbar.R$string: int abc_action_bar_home_description -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -io.reactivex.Observable: void blockingSubscribe() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowDy -com.google.android.material.R$attr: int framePosition -com.google.android.material.R$attr: int toolbarStyle -androidx.preference.R$attr: int contentInsetLeft -io.reactivex.Observable: java.lang.Object as(io.reactivex.ObservableConverter) -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface getInstance(com.tencent.bugly.crashreport.CrashReport$WebViewInterface) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCloseDrawable -androidx.lifecycle.SavedStateViewModelFactory: java.lang.Class[] ANDROID_VIEWMODEL_SIGNATURE -com.google.android.material.R$id: int mtrl_calendar_months -james.adaptiveicon.R$attr: int tooltipText -com.google.gson.JsonSyntaxException: long serialVersionUID -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose -okhttp3.MediaType: java.lang.String subtype -androidx.hilt.R$id: int fragment_container_view_tag -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_NIGHT_VALIDATOR -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: io.reactivex.FlowableEmitter serialize() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle -androidx.preference.R$color: int foreground_material_dark -androidx.appcompat.widget.ActionMenuView: void setOverflowReserved(boolean) -androidx.preference.R$dimen: R$dimen() -android.didikee.donate.R$attr: int iconifiedByDefault -james.adaptiveicon.R$attr: int itemPadding -okio.RealBufferedSource: int readInt() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDailyForecast(java.lang.String) -okhttp3.CacheControl: int minFreshSeconds() -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetBottom -com.xw.repo.bubbleseekbar.R$attr: int track -okio.ByteString: okio.ByteString of(java.nio.ByteBuffer) -com.tencent.bugly.proguard.am: java.lang.String d -com.google.android.gms.common.internal.zax: zax(android.content.Context) -okio.BufferedSource: byte readByte() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Large -okhttp3.Response$Builder: okhttp3.Response$Builder header(java.lang.String,java.lang.String) -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLocationMode(com.amap.api.location.AMapLocationClientOption$AMapLocationMode) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Light -com.xw.repo.bubbleseekbar.R$id: int textSpacerNoButtons -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchTouchEvent(android.view.MotionEvent) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: ObservableConcatMap$SourceObserver(io.reactivex.Observer,io.reactivex.functions.Function,int) -com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode valueOf(java.lang.String) -com.google.android.material.R$string: int mtrl_picker_toggle_to_calendar_input_mode -okhttp3.internal.cache2.FileOperator -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActivityChooserView -androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnBind() -com.google.android.material.R$dimen: int fastscroll_margin -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1(androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber,java.lang.Throwable) -androidx.lifecycle.LifecycleRegistryOwner -androidx.appcompat.widget.AppCompatImageView: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) -androidx.constraintlayout.widget.R$attr: int actionModeBackground -androidx.constraintlayout.widget.R$drawable: int notification_bg_normal -androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context,android.util.AttributeSet) -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_WIFI_INFO -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer getDbz() -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_layout -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() -android.didikee.donate.R$styleable: int[] ButtonBarLayout -androidx.constraintlayout.widget.R$attr: int staggered -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SearchView_ActionBar -okhttp3.Cache$Entry: long sentRequestMillis -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int aqi -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_89 -com.tencent.bugly.crashreport.crash.anr.a: java.lang.String a -androidx.lifecycle.extensions.R$id: int async -androidx.appcompat.widget.AppCompatImageView: void setSupportBackgroundTintList(android.content.res.ColorStateList) -okhttp3.FormBody$Builder: okhttp3.FormBody build() -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long time -com.google.android.material.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -okhttp3.internal.ws.RealWebSocket$1: okhttp3.internal.ws.RealWebSocket this$0 -com.google.android.material.circularreveal.CircularRevealGridLayout: CircularRevealGridLayout(android.content.Context,android.util.AttributeSet) -cyanogenmod.profiles.BrightnessSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$attr: int fontFamily -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_lineHeight -android.didikee.donate.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Line2 -okhttp3.internal.http2.Http2Codec -wangdaye.com.geometricweather.R$drawable: int abc_seekbar_thumb_material -com.turingtechnologies.materialscrollbar.R$styleable: int[] ViewStubCompat -com.xw.repo.bubbleseekbar.R$attr: int fontWeight -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType END -androidx.appcompat.widget.Toolbar: void setLogoDescription(int) -com.google.android.material.R$drawable: int abc_ratingbar_material -cyanogenmod.externalviews.ExternalViewProperties: int[] mScreenCoords -retrofit2.OkHttpCall: okhttp3.Call getRawCall() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SearchView -james.adaptiveicon.R$attr: int alpha -com.google.android.material.bottomnavigation.BottomNavigationView: int getSelectedItemId() -com.turingtechnologies.materialscrollbar.R$attr: int actionModeCopyDrawable -wangdaye.com.geometricweather.R$dimen: int design_navigation_padding_bottom -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemTextAppearanceInactive() -cyanogenmod.providers.CMSettings$Secure: java.lang.String ADB_NOTIFY -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String country -com.jaredrummler.android.colorpicker.R$styleable: int[] ViewStubCompat -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat -androidx.loader.content.Loader: void registerOnLoadCanceledListener(androidx.loader.content.Loader$OnLoadCanceledListener) -retrofit2.Response: java.lang.Object body -okhttp3.Cache$Entry: java.lang.String url -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_48dp -wangdaye.com.geometricweather.R$attr: int layout_collapseParallaxMultiplier -okhttp3.internal.http2.Http2Connection: void close() -cyanogenmod.app.ICMStatusBarManager$Stub: ICMStatusBarManager$Stub() -androidx.coordinatorlayout.R$id: int action_container -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_corner_radius -androidx.drawerlayout.R$dimen: int compat_notification_large_icon_max_height -android.didikee.donate.R$styleable: int[] SearchView -androidx.work.R$dimen: int notification_media_narrow_margin -com.google.android.material.R$styleable: int Constraint_flow_verticalGap -wangdaye.com.geometricweather.R$dimen: int design_fab_translation_z_pressed -wangdaye.com.geometricweather.R$layout: int activity_about -cyanogenmod.externalviews.ExternalView$1 -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$color: int primary_text_disabled_material_light -okhttp3.internal.http2.Http2Stream$FramingSink: void emitFrame(boolean) -com.google.android.material.R$attr: int tabTextColor -okhttp3.Cache: java.io.File directory() -com.jaredrummler.android.colorpicker.R$id: int normal -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu -com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetBottom -wangdaye.com.geometricweather.R$drawable: int notif_temp_100 -okhttp3.internal.http2.Huffman$Node: okhttp3.internal.http2.Huffman$Node[] children -com.turingtechnologies.materialscrollbar.R$id: int save_non_transition_alpha -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.fuseable.SimpleQueue queue -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: boolean requestDismiss() -androidx.work.R$id: int notification_background -io.reactivex.Observable: io.reactivex.Observable defer(java.util.concurrent.Callable) -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderConfirmButton -androidx.constraintlayout.widget.R$drawable: int abc_btn_check_material -android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Light -cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet) -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter name(java.lang.String) -androidx.constraintlayout.widget.R$drawable: int abc_ic_search_api_material -wangdaye.com.geometricweather.R$anim: R$anim() -retrofit2.OkHttpCall -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_gapBetweenBars -androidx.hilt.work.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_gradientRadius -com.xw.repo.bubbleseekbar.R$attr: int customNavigationLayout -com.jaredrummler.android.colorpicker.R$attr: int cpv_alphaChannelVisible -com.xw.repo.bubbleseekbar.R$dimen: int notification_subtext_size -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5 -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -com.google.android.material.R$attr: int singleLine -androidx.constraintlayout.widget.R$color: int bright_foreground_disabled_material_dark -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void dispose() -wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_hide_motion_spec -android.didikee.donate.R$style: int Widget_AppCompat_Button_Borderless_Colored -androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonCompat -androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchRegionId -androidx.coordinatorlayout.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWeatherText -com.google.android.material.R$styleable: int ProgressIndicator_android_indeterminate -wangdaye.com.geometricweather.R$styleable: int Motion_pathMotionArc -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: double lat -androidx.constraintlayout.widget.R$styleable: int SearchView_layout -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_COLOR_AUTO -com.turingtechnologies.materialscrollbar.R$id: int tag_unhandled_key_event_manager -cyanogenmod.hardware.CMHardwareManager: int FEATURE_UNIQUE_DEVICE_ID -androidx.drawerlayout.R$dimen: int notification_action_text_size -com.tencent.bugly.proguard.v: v(android.content.Context,int,int,byte[],java.lang.String,java.lang.String,com.tencent.bugly.proguard.t,boolean,int,int,boolean,java.util.Map) -androidx.hilt.lifecycle.R$id: int action_image -wangdaye.com.geometricweather.R$attr: int shapeAppearanceOverlay -com.google.android.gms.signin.internal.zab -okhttp3.internal.http1.Http1Codec: okhttp3.Response$Builder readResponseHeaders(boolean) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getWeatherText() -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_xmlIcon -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean requestIsUnrepeatable(java.io.IOException,okhttp3.Request) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableBottomCompat -cyanogenmod.externalviews.ExternalViewProviderService$1$1: cyanogenmod.externalviews.ExternalViewProviderService$1 this$1 -androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Dialog -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getPm25() -com.google.android.material.R$styleable: int AppCompatTheme_popupWindowStyle -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: int TRANSACTION_onWeatherServiceProviderChanged_0 -com.jaredrummler.android.colorpicker.R$attr: int logoDescription -wangdaye.com.geometricweather.R$id: int material_minute_text_input -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_padding_top_material -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getBackgroundColor() -com.jaredrummler.android.colorpicker.R$drawable: int abc_tab_indicator_mtrl_alpha -com.google.android.material.R$styleable: int[] MaterialAlertDialog -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_disabled_material_dark -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_gravity -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constrainedWidth -wangdaye.com.geometricweather.R$color: int abc_tint_seek_thumb -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: CaiYunMainlyResult$CurrentBean$PressureBean() -androidx.appcompat.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.R$id: int cpv_preference_preview_color_panel -okhttp3.internal.http1.Http1Codec$FixedLengthSource -androidx.dynamicanimation.R$attr: int fontVariationSettings -androidx.constraintlayout.widget.Barrier: void setType(int) -okhttp3.internal.http2.Http2: java.io.IOException ioException(java.lang.String,java.lang.Object[]) -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getWritableDb() -com.google.android.material.R$string: int mtrl_picker_invalid_format -cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder(cyanogenmod.weather.WeatherInfo) -androidx.appcompat.R$style: int Base_V28_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$color: int colorSearchBarBackground_light -com.google.android.material.R$anim: int design_bottom_sheet_slide_out -com.google.android.material.R$id: int material_label -androidx.vectordrawable.animated.R$id -androidx.recyclerview.widget.RecyclerView: void setViewCacheExtension(androidx.recyclerview.widget.RecyclerView$ViewCacheExtension) -wangdaye.com.geometricweather.R$string: int key_exchange_day_night_temp_switch -androidx.appcompat.resources.R$style: int Widget_Compat_NotificationActionContainer -com.xw.repo.bubbleseekbar.R$styleable: int ActionBarLayout_android_layout_gravity -com.jaredrummler.android.colorpicker.R$dimen: int preference_icon_minWidth -wangdaye.com.geometricweather.common.basic.models.weather.Daily: float getHoursOfSun() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -wangdaye.com.geometricweather.R$array: int air_quality_co_unit_voices -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int DUST -okhttp3.HttpUrl: java.lang.String host -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor GREY -com.google.android.gms.location.ActivityTransitionRequest -com.google.android.material.textfield.TextInputLayout: void setStartIconCheckable(boolean) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ImageButton -androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.google.android.material.card.MaterialCardView: void setStrokeColor(int) -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerX -com.google.android.material.R$id: int decelerateAndComplete -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Address createAddress(okhttp3.HttpUrl) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -com.turingtechnologies.materialscrollbar.R$attr: int colorPrimaryDark -wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_margin_left -io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged() -com.bumptech.glide.R$color: int notification_icon_bg_color -androidx.constraintlayout.widget.R$id: int multiply -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenVoice(android.content.Context,int) -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Settings peerSettings -androidx.constraintlayout.widget.R$drawable: int abc_switch_thumb_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean getSpeed() -wangdaye.com.geometricweather.R$dimen: int compat_control_corner_material -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableBottom -wangdaye.com.geometricweather.R$attr: int msb_textColor -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableBottom -com.turingtechnologies.materialscrollbar.R$color: int cardview_dark_background -io.reactivex.disposables.RunnableDisposable -cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weatherservice.IWeatherProviderServiceClient mClient -androidx.preference.R$id: int search_badge -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean delayErrors -wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconEnabled -wangdaye.com.geometricweather.db.entities.LocationEntityDao: LocationEntityDao(org.greenrobot.greendao.internal.DaoConfig) -com.google.android.material.slider.Slider: android.content.res.ColorStateList getThumbStrokeColor() -com.google.android.material.R$style: int Base_V23_Theme_AppCompat_Light -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okhttp3.ResponseBody delegate -wangdaye.com.geometricweather.R$id: int notification_base_titleContainer -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String value -com.amap.api.fence.PoiItem: java.lang.String i -com.google.android.material.R$attr: int itemSpacing -androidx.appcompat.R$styleable: int ActionMenuItemView_android_minWidth -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmTp1 -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRainPrecipitationProbability(java.lang.Float) -androidx.coordinatorlayout.R$styleable: int ColorStateListItem_alpha -cyanogenmod.app.Profile$Type: int CONDITIONAL -wangdaye.com.geometricweather.R$color: int design_icon_tint -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationY -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean setNativeAppPackage(java.lang.String) -wangdaye.com.geometricweather.R$attr: int closeIcon -com.google.android.material.R$attr: int textAppearanceHeadline3 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean -com.google.android.material.R$string: int mtrl_picker_text_input_date_range_end_hint -com.google.android.material.R$color: int cardview_light_background -androidx.preference.R$styleable: int MenuItem_alphabeticModifiers -androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -james.adaptiveicon.R$styleable: int SwitchCompat_trackTint -okhttp3.internal.http.RealResponseBody: long contentLength -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type lowerBound -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRealFeelShaderTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$styleable: int MaterialAutoCompleteTextView_android_inputType -com.google.android.material.internal.NavigationMenuItemView: void setTitle(java.lang.CharSequence) -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_135 -james.adaptiveicon.R$attr: int panelMenuListWidth -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Borderless -androidx.recyclerview.R$id: int title -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_CAMELLIA_256_CBC_SHA -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation -james.adaptiveicon.R$attr: int actionModeSplitBackground -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator -androidx.appcompat.R$drawable: int abc_ic_menu_share_mtrl_alpha -androidx.fragment.R$styleable: int GradientColor_android_startColor -com.google.android.material.chip.ChipGroup: void setChipSpacingVertical(int) -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_checkableBehavior -com.google.android.material.R$attr: int labelBehavior -io.reactivex.internal.observers.InnerQueuedObserver: boolean isDisposed() -androidx.preference.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -james.adaptiveicon.R$attr: int buttonBarNeutralButtonStyle -androidx.constraintlayout.widget.Group -android.didikee.donate.R$id: int action_bar_spinner -androidx.appcompat.R$drawable: int abc_text_select_handle_middle_mtrl_dark -com.tencent.bugly.proguard.an: void a(com.tencent.bugly.proguard.j) -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position position -retrofit2.Response: retrofit2.Response error(okhttp3.ResponseBody,okhttp3.Response) -com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderAuthority -android.didikee.donate.R$styleable: int RecycleListView_paddingTopNoTitle -com.tencent.bugly.proguard.y$a -com.google.android.material.R$animator: int mtrl_extended_fab_hide_motion_spec -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearSelectedStyle -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder secure() -com.google.android.material.R$color: int highlighted_text_material_light -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$attr: int materialAlertDialogTheme -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.database.Database db -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_background_transition_holo_dark -androidx.preference.R$style: int Preference_DropDown_Material -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_height -com.turingtechnologies.materialscrollbar.R$styleable: int RecycleListView_paddingTopNoTitle -cyanogenmod.weather.WeatherLocation: java.lang.String mCityId -com.google.android.material.R$styleable: int[] ViewStubCompat -james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int[] ActionBar -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_stacked_tab_max_width -okhttp3.ConnectionPool: long cleanup(long) -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_ALARM -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LIVE_LOCK_SCREEN_PREVIEW -com.amap.api.location.AMapLocation: int getSatellites() -com.turingtechnologies.materialscrollbar.R$id: int submenuarrow -com.amap.api.fence.PoiItem: java.lang.String j -androidx.activity.R$id: int notification_main_column -wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndContainer -james.adaptiveicon.R$styleable: int Spinner_android_popupBackground -androidx.transition.R$styleable: R$styleable() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: void setValue(java.lang.String) -retrofit2.http.FieldMap: boolean encoded() -com.jaredrummler.android.colorpicker.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.R$dimen: int hint_alpha_material_dark -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathEnd(float) -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTintMode -wangdaye.com.geometricweather.R$layout: int test_toolbar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: int status -okio.Buffer$2: int read(byte[],int,int) -wangdaye.com.geometricweather.R$dimen: int clock_face_margin_start -com.google.android.material.chip.Chip: void setTextStartPaddingResource(int) -com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_android_popupAnimationStyle -wangdaye.com.geometricweather.R$id: int widget_remote_progress -com.tencent.bugly.crashreport.common.info.b: java.lang.String e() -com.google.android.material.floatingactionbutton.FloatingActionButton: int getSizeDimension() -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void setDisposable(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$attr: int mock_labelBackgroundColor -okhttp3.RequestBody$1: long contentLength() -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_clear_material -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.recyclerview.R$styleable: int[] ColorStateListItem -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String DELETE_AFTER_USE -wangdaye.com.geometricweather.R$styleable: int[] TouchScrollBar -wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeIndex(java.lang.Integer) -com.google.android.material.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -androidx.vectordrawable.R$id: int accessibility_action_clickable_span -com.turingtechnologies.materialscrollbar.R$color: int material_grey_600 -wangdaye.com.geometricweather.R$attr: int minHideDelay -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: java.lang.String Name -com.tencent.bugly.proguard.aq: long a -androidx.appcompat.R$styleable: int AppCompatTheme_dividerHorizontal -okhttp3.internal.http2.Http2Writer -com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchPreference -com.google.android.material.R$string: int abc_menu_delete_shortcut_label -com.google.android.material.chip.ChipGroup: void setShowDividerVertical(int) -androidx.appcompat.R$dimen: int notification_content_margin_start -io.reactivex.Observable: io.reactivex.Observable takeWhile(io.reactivex.functions.Predicate) -com.google.android.material.R$styleable: int CustomAttribute_customColorValue -wangdaye.com.geometricweather.R$attr: int colorOnError -okio.Buffer: okio.BufferedSink writeUtf8(java.lang.String) -retrofit2.HttpServiceMethod$CallAdapted: HttpServiceMethod$CallAdapted(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter) -com.google.android.material.R$style: int TestThemeWithLineHeight -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Title -com.google.android.material.R$style: int Widget_Design_TextInputLayout -androidx.lifecycle.MethodCallsLogger: java.util.Map mCalledMethods -com.tencent.bugly.proguard.am: java.lang.String t -com.turingtechnologies.materialscrollbar.R$attr: int fontWeight -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_elevation -cyanogenmod.providers.DataUsageContract: java.lang.String CONTENT_ITEM_TYPE -androidx.swiperefreshlayout.R$id: int info -com.turingtechnologies.materialscrollbar.R$dimen: int abc_switch_padding -com.google.android.material.R$attr: int itemMaxLines -james.adaptiveicon.R$id: int image -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowRadius -androidx.constraintlayout.widget.R$styleable: int[] ActionMenuItemView -wangdaye.com.geometricweather.R$dimen: int notification_action_text_size -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf -androidx.hilt.lifecycle.R$anim: int fragment_close_enter -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton_Overflow -androidx.work.BackoffPolicy: androidx.work.BackoffPolicy[] values() -androidx.constraintlayout.motion.widget.MotionLayout: void setTransition(androidx.constraintlayout.motion.widget.MotionScene$Transition) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Small -com.turingtechnologies.materialscrollbar.R$attr: int commitIcon -wangdaye.com.geometricweather.R$id: int widget_week_icon_5 -androidx.appcompat.widget.AppCompatTextView: int getAutoSizeMinTextSize() -com.jaredrummler.android.colorpicker.R$attr: int actionBarDivider -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display1 -com.google.android.material.R$attr: int buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: AccuDailyResult$DailyForecasts$Temperature$Maximum() -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getWallpaperThemePackageName() -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_elevation -com.google.android.material.snackbar.SnackbarContentLayout: android.widget.Button getActionView() -wangdaye.com.geometricweather.R$id: int clear_text -retrofit2.DefaultCallAdapterFactory: java.util.concurrent.Executor callbackExecutor -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_editor_absoluteY -com.google.android.material.textfield.TextInputLayout: void setErrorIconTintList(android.content.res.ColorStateList) -james.adaptiveicon.R$style: int Widget_AppCompat_ListMenuView -com.amap.api.location.DPoint: int hashCode() -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackInactiveTintList() -cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(android.os.Parcel,cyanogenmod.weatherservice.ServiceRequestResult$1) -androidx.preference.R$styleable: int ActionBar_subtitleTextStyle -com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_thumb_material -androidx.preference.R$styleable: int[] ActionMode -com.tencent.bugly.CrashModule: void init(android.content.Context,boolean,com.tencent.bugly.BuglyStrategy) -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.ReportFragment$ActivityInitializationListener mInitializationListener -androidx.constraintlayout.widget.R$attr: int logo -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_default_mtrl_alpha -com.google.android.material.R$id: int staticLayout -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder readTimeout(long,java.util.concurrent.TimeUnit) -okhttp3.ConnectionPool: boolean connectionBecameIdle(okhttp3.internal.connection.RealConnection) -com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.proguard.o f -com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean o -com.google.android.material.chip.Chip: void setTextEndPadding(float) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Medium_Inverse -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState CLEARED -okio.SegmentedByteString: java.lang.String base64Url() -wangdaye.com.geometricweather.R$styleable: int[] ExtendedFloatingActionButton_Behavior_Layout -okio.Options: void buildTrieRecursive(long,okio.Buffer,int,java.util.List,int,int,java.util.List) -wangdaye.com.geometricweather.R$id: int mtrl_picker_header_selection_text -androidx.lifecycle.SavedStateHandleController$1: SavedStateHandleController$1(androidx.lifecycle.Lifecycle,androidx.savedstate.SavedStateRegistry) -androidx.work.R$id: int accessibility_custom_action_7 -androidx.constraintlayout.widget.R$attr: int visibilityMode -wangdaye.com.geometricweather.R$styleable: int TextAppearance_fontFamily -androidx.preference.R$string: int v7_preference_on -com.google.android.material.R$styleable: int Transform_android_rotationY -com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_OK -androidx.customview.R$integer: R$integer() -androidx.constraintlayout.widget.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$string: int feedback_running_in_background -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long serialVersionUID -androidx.swiperefreshlayout.R$dimen: int notification_big_circle_margin -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Info -james.adaptiveicon.R$attr: int tickMark -wangdaye.com.geometricweather.R$string: int mold -cyanogenmod.app.IProfileManager: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$string: int action_appStore -androidx.hilt.lifecycle.R$styleable: int[] GradientColorItem -androidx.fragment.R$styleable: int GradientColor_android_gradientRadius -retrofit2.Call: retrofit2.Response execute() -androidx.lifecycle.LifecycleOwner -android.didikee.donate.R$styleable: int Toolbar_titleMarginEnd -okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE -cyanogenmod.externalviews.KeyguardExternalView$8: void run() -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: long serialVersionUID -com.google.android.material.chip.Chip: void setIconEndPaddingResource(int) -com.google.android.material.R$styleable: int ConstraintSet_flow_firstHorizontalBias -cyanogenmod.library.R -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: CNWeatherResult$Realtime$Wind() -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_title -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: long dt -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Selected -com.google.android.material.R$attr: int sliderStyle -com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_text_padding_left -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeShareDrawable -androidx.appcompat.R$attr: int listPreferredItemPaddingEnd -com.google.android.material.R$style: int Base_V7_Widget_AppCompat_EditText -androidx.customview.R$styleable: int GradientColor_android_tileMode -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog -com.tencent.bugly.BuglyStrategy: boolean isEnableUserInfo() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircle -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: io.reactivex.Observer downstream -android.didikee.donate.R$dimen: int notification_content_margin_start -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_RINGTONES -wangdaye.com.geometricweather.R$attr: int behavior_draggable -com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColorResource(int) -androidx.swiperefreshlayout.R$drawable: int notification_bg -com.tencent.bugly.proguard.z: java.lang.String a(byte[]) -com.google.android.material.R$id: int square -wangdaye.com.geometricweather.R$style: int Base_V26_Widget_AppCompat_Toolbar -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -wangdaye.com.geometricweather.R$styleable: int[] AppCompatSeekBar -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarDivider -com.tencent.bugly.proguard.i: java.lang.Object[] b(java.lang.Object,int,boolean) -io.reactivex.internal.queue.SpscArrayQueue: java.lang.Object lvElement(int) -androidx.recyclerview.R$id: int blocking -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_dialogTitle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: double Value -okhttp3.internal.http2.Http2Stream$StreamTimeout: java.io.IOException newTimeoutException(java.io.IOException) -android.support.v4.os.ResultReceiver$1: java.lang.Object[] newArray(int) -com.google.android.material.R$id: int right_side -okhttp3.logging.LoggingEventListener: void responseBodyEnd(okhttp3.Call,long) -com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler -com.jaredrummler.android.colorpicker.R$attr: int gapBetweenBars -org.greenrobot.greendao.AbstractDaoMaster: int getSchemaVersion() -androidx.lifecycle.extensions.R$dimen: int notification_top_pad_large_text -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_13 -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getCurrentDisplayMode -okhttp3.internal.ws.WebSocketProtocol: int PAYLOAD_SHORT -cyanogenmod.profiles.StreamSettings$1: StreamSettings$1() -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver -com.baidu.location.e.h$c: com.baidu.location.e.h$c valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconTintMode -wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_light -androidx.activity.R$id: int forever -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_DialogWhenLarge -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_COLOR -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: AccuCurrentResult$Precip1hr() -com.xw.repo.bubbleseekbar.R$drawable: int notification_icon_background -com.google.android.material.R$style: int Base_Widget_AppCompat_ButtonBar -okhttp3.MediaType: java.nio.charset.Charset charset() -james.adaptiveicon.R$styleable: int LinearLayoutCompat_divider -com.tencent.bugly.crashreport.crash.CrashDetailBean -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String no2 -androidx.preference.R$attr: int listPreferredItemPaddingRight -com.jaredrummler.android.colorpicker.R$anim: int abc_popup_exit -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_grey -androidx.preference.R$styleable: int StateListDrawable_android_exitFadeDuration -wangdaye.com.geometricweather.R$string: int precipitation -com.google.android.material.R$attr: int layout_constraintVertical_bias -com.google.android.material.R$dimen: int mtrl_snackbar_action_text_color_alpha -androidx.preference.R$styleable: int MenuView_android_verticalDivider -com.google.android.material.R$style: int Base_Widget_AppCompat_ListView_Menu -com.google.android.material.slider.RangeSlider: void setThumbStrokeWidthResource(int) -com.jaredrummler.android.colorpicker.R$layout: int abc_action_mode_close_item_material -io.reactivex.Observable: io.reactivex.Maybe singleElement() -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_tileMode -okhttp3.CertificatePinner: int hashCode() -androidx.fragment.R$color: int ripple_material_light -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_right_mtrl_light -wangdaye.com.geometricweather.R$styleable: int RadialViewGroup_materialCircleRadius -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton -com.jaredrummler.android.colorpicker.R$color: int material_grey_300 -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_7 -com.xw.repo.bubbleseekbar.R$anim: int abc_tooltip_enter -androidx.constraintlayout.widget.R$layout: int abc_activity_chooser_view -wangdaye.com.geometricweather.R$string: int content_desc_back -cyanogenmod.app.Profile: cyanogenmod.profiles.ConnectionSettings getSettingsForConnection(int) -wangdaye.com.geometricweather.R$attr: int state_above_anchor -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: int UnitType -com.google.android.material.R$styleable: int Constraint_android_elevation -androidx.customview.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.HourlyEntity,long) -androidx.constraintlayout.widget.R$styleable: int[] ButtonBarLayout -androidx.constraintlayout.widget.VirtualLayout -androidx.preference.R$attr: int windowMinWidthMajor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String logo -androidx.appcompat.R$id: int tag_unhandled_key_listeners -okio.Okio: boolean isAndroidGetsocknameError(java.lang.AssertionError) -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder pushObserver(okhttp3.internal.http2.PushObserver) -james.adaptiveicon.R$string: int abc_capital_on -com.google.android.material.R$attr: int currentState -com.google.android.material.R$dimen: int abc_dialog_padding_material -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.util.List DataSets -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_font -com.tencent.bugly.crashreport.biz.UserInfoBean: long a -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline6 -retrofit2.Platform: java.util.List defaultConverterFactories() -com.google.android.material.datepicker.CalendarConstraints: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.R$attr: int paddingStart -android.support.v4.graphics.drawable.IconCompatParcelizer: void write(androidx.core.graphics.drawable.IconCompat,androidx.versionedparcelable.VersionedParcel) -okhttp3.internal.http2.Http2: okio.ByteString CONNECTION_PREFACE -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean isShouldHandleInJava() -retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object result -com.turingtechnologies.materialscrollbar.R$attr: int autoSizeMaxTextSize -wangdaye.com.geometricweather.R$attr: int layout_goneMarginBottom -okio.RealBufferedSink: boolean closed -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int prefetch -androidx.appcompat.R$id: int progress_horizontal -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.History yesterday -com.google.android.material.R$attr: int backgroundSplit -androidx.lifecycle.FullLifecycleObserver: void onCreate(androidx.lifecycle.LifecycleOwner) -okhttp3.internal.http2.ConnectionShutdownException: ConnectionShutdownException() -retrofit2.http.Part: java.lang.String value() -com.xw.repo.bubbleseekbar.R$layout: int abc_activity_chooser_view -cyanogenmod.themes.IThemeProcessingListener$Stub: int TRANSACTION_onFinishedProcessing_0 -cyanogenmod.app.LiveLockScreenInfo: java.lang.Object clone() -android.didikee.donate.R$attr: int colorPrimaryDark -cyanogenmod.app.CustomTile$ExpandedStyle: java.lang.String toString() -androidx.appcompat.resources.R$styleable: int GradientColor_android_startX -androidx.activity.R$styleable: int GradientColor_android_startColor -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: boolean isDisposed() -com.tencent.bugly.proguard.z: java.io.BufferedReader a(java.lang.String,java.lang.String) -androidx.core.app.RemoteActionCompat -androidx.preference.R$styleable: int Toolbar_titleMarginEnd -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginRight -androidx.constraintlayout.widget.R$dimen: int abc_search_view_preferred_width -cyanogenmod.app.LiveLockScreenInfo: int describeContents() -okhttp3.Cookie$Builder: boolean hostOnly -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_ALARMS -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object getKey(java.lang.Object) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabBar -okhttp3.internal.http2.Http2Stream: boolean closeInternal(okhttp3.internal.http2.ErrorCode) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationX(float) -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver[] observers -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -com.google.android.material.R$layout: int design_menu_item_action_area -android.didikee.donate.R$attr: int colorSwitchThumbNormal -androidx.transition.R$attr -com.google.android.material.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -com.jaredrummler.android.colorpicker.R$attr: int cpv_allowPresets -com.google.android.material.R$attr: int state_above_anchor -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstHorizontalBias -okhttp3.RequestBody$2: long contentLength() -com.google.android.material.bottomappbar.BottomAppBar: float getFabTranslationY() -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.ChineseCityEntity) -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -cyanogenmod.power.IPerformanceManager$Stub$Proxy: IPerformanceManager$Stub$Proxy(android.os.IBinder) -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_UnelevatedButton -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -wangdaye.com.geometricweather.db.entities.LocationEntity: LocationEntity() -com.google.android.gms.common.server.response.zak: android.os.Parcelable$Creator CREATOR -androidx.hilt.R$attr: int ttcIndex -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: long serialVersionUID -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: MfHistoryResult$History$Temperature() -com.tencent.bugly.proguard.i: byte a(byte,int,boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_keyline -androidx.preference.R$id: int src_in -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: int Value -com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_text_padding_right -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_radius -cyanogenmod.app.Profile: java.util.Map streams -com.google.android.material.R$id: int textinput_prefix_text -androidx.fragment.R$anim: int fragment_fast_out_extra_slow_in -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -androidx.viewpager.R$styleable: int ColorStateListItem_android_color -com.google.android.material.tabs.TabLayout: void addOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) -wangdaye.com.geometricweather.R$attr: int cpv_startAngle -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_indicator_material -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -cyanogenmod.providers.CMSettings$Secure: float getFloat(android.content.ContentResolver,java.lang.String,float) -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.functions.Function zipper -io.reactivex.internal.queue.SpscArrayQueue: long producerLookAhead -okhttp3.HttpUrl: java.lang.String FRAGMENT_ENCODE_SET -com.google.android.material.R$dimen: int design_tab_max_width -io.reactivex.internal.observers.LambdaObserver: void onComplete() -androidx.constraintlayout.widget.R$color: int abc_tint_spinner -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BEGIN_OBJECT -androidx.preference.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow24h -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -io.reactivex.internal.subscriptions.EmptySubscription: boolean isEmpty() -com.google.android.material.R$styleable: int SnackbarLayout_backgroundTintMode -wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Light_Dialog -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setLogo(java.lang.String) -wangdaye.com.geometricweather.R$string: int humidity -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_2 -okhttp3.internal.http.HttpDate: HttpDate() -androidx.recyclerview.R$styleable: int RecyclerView_spanCount -james.adaptiveicon.R$drawable: int notification_tile_bg -okio.AsyncTimeout$2: java.lang.String toString() -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design -com.amap.api.location.AMapLocationClient: void disableBackgroundLocation(boolean) -okhttp3.internal.http1.Http1Codec$AbstractSource: long bytesRead -com.tencent.bugly.crashreport.CrashReport: void setAuditEnable(android.content.Context,boolean) -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getDensityText(android.content.Context,float) -com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabTextStyle -wangdaye.com.geometricweather.R$integer: int mtrl_calendar_year_selector_span -androidx.hilt.work.R$styleable: int[] FragmentContainerView -cyanogenmod.externalviews.ExternalView: cyanogenmod.externalviews.IExternalViewProvider mExternalViewProvider -androidx.constraintlayout.utils.widget.ImageFilterView: void setContrast(float) -wangdaye.com.geometricweather.R$attr: int bottomNavigationStyle -androidx.constraintlayout.widget.R$color: int material_grey_850 -james.adaptiveicon.R$styleable: int AppCompatTheme_popupMenuStyle -okhttp3.CacheControl$Builder -io.reactivex.internal.subscribers.StrictSubscriber: io.reactivex.internal.util.AtomicThrowable error -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean isDisposed() -android.didikee.donate.R$attr: int state_above_anchor -com.loc.k: k(java.lang.String) -com.google.android.material.R$id: int search_button -james.adaptiveicon.R$attr: int windowMinWidthMajor -okio.AsyncTimeout$Watchdog: void run() -io.reactivex.internal.util.HashMapSupplier: java.util.concurrent.Callable asCallable() -wangdaye.com.geometricweather.R$attr: int errorTextColor -com.amap.api.location.AMapLocation: java.lang.String m -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.functions.Predicate predicate -com.google.android.material.R$id: int motion_base -com.google.android.material.R$attr: int controlBackground -com.tencent.bugly.crashreport.biz.b: long c() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getTreeDescription() -com.turingtechnologies.materialscrollbar.TouchScrollBar: int getMode() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: java.lang.String Unit -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -com.baidu.location.e.l$b: java.lang.String f -com.turingtechnologies.materialscrollbar.R$attr: int hideOnContentScroll -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_xml -com.jaredrummler.android.colorpicker.R$attr: int showText -com.baidu.location.e.h$a: com.baidu.location.e.h$a b -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_size -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void clear() -androidx.transition.R$attr: int fontProviderPackage -com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getTextSize() -com.bumptech.glide.integration.okhttp.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_android_layout -wangdaye.com.geometricweather.R$string: int about_greenDAO -android.didikee.donate.R$attr: int popupTheme -okhttp3.internal.cache.DiskLruCache$Editor: okhttp3.internal.cache.DiskLruCache$Entry entry -com.tencent.bugly.proguard.ab -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationY -okhttp3.internal.cache.DiskLruCache$2: void onException(java.io.IOException) -androidx.drawerlayout.R$styleable: int FontFamilyFont_fontStyle -androidx.constraintlayout.widget.R$drawable: int abc_vector_test -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvIndex -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: long serialVersionUID -okhttp3.Dispatcher: int queuedCallsCount() -androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context) -cyanogenmod.weatherservice.WeatherProviderService$1: WeatherProviderService$1(cyanogenmod.weatherservice.WeatherProviderService) -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$string: int abc_menu_space_shortcut_label -cyanogenmod.profiles.BrightnessSettings: int describeContents() -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber -cyanogenmod.profiles.AirplaneModeSettings$1 -androidx.preference.R$styleable: int Preference_isPreferenceVisible -com.google.android.material.R$color: int primary_text_default_material_light -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_lightContainer -com.google.android.material.R$style: int Theme_AppCompat_Light -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -androidx.recyclerview.R$attr -com.bumptech.glide.integration.okhttp.R$drawable: int notification_action_background -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarButtonStyle -com.google.android.material.R$styleable: int ProgressIndicator_indicatorCornerRadius -cyanogenmod.app.ProfileGroup: void setLightsMode(cyanogenmod.app.ProfileGroup$Mode) -wangdaye.com.geometricweather.R$string: int material_timepicker_hour -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.appcompat.R$interpolator -okhttp3.internal.connection.ConnectionSpecSelector: java.util.List connectionSpecs -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_maxElementsWrap -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource) -com.google.android.material.R$styleable: int SnackbarLayout_animationMode -wangdaye.com.geometricweather.R$styleable: int RoundCornerTransition_radius_to -androidx.work.impl.WorkDatabase: WorkDatabase() -com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_layout -james.adaptiveicon.R$attr: int listPreferredItemPaddingLeft -okhttp3.Dispatcher -androidx.activity.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric Metric -androidx.viewpager2.R$dimen: int notification_small_icon_background_padding -okhttp3.Address -androidx.coordinatorlayout.R$drawable: int notification_tile_bg -androidx.preference.R$color: int material_deep_teal_500 -io.reactivex.Observable: io.reactivex.Observable scan(java.lang.Object,io.reactivex.functions.BiFunction) -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String g -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: CaiYunMainlyResult$CurrentBean() -androidx.constraintlayout.widget.R$attr: int contentInsetEndWithActions -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.ObservableSource source -androidx.legacy.coreutils.R$id: int title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean() -com.amap.api.location.AMapLocation: int LOCATION_TYPE_AMAP -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogStyle -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_26 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Body1 -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog -james.adaptiveicon.R$styleable: int ActionBar_popupTheme -com.google.android.material.R$drawable: int abc_switch_thumb_material -okio.BufferedSource: byte[] readByteArray(long) -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTextView -androidx.lifecycle.extensions.R$id: int tag_accessibility_clickable_spans -com.google.android.material.card.MaterialCardView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -retrofit2.RequestBuilder: okhttp3.HttpUrl baseUrl -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_separator -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.preference.R$dimen: int abc_text_size_title_material -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_7 -com.google.android.material.R$styleable: int Constraint_android_layout_height -androidx.preference.R$string: int abc_toolbar_collapse_description -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -androidx.constraintlayout.widget.R$drawable: int abc_btn_borderless_material -wangdaye.com.geometricweather.R$dimen: int design_navigation_item_horizontal_padding -james.adaptiveicon.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.R$attr: int telltales_velocityMode -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Snapshot get(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMargin -cyanogenmod.providers.CMSettings$System: java.lang.String REVERSE_LOOKUP_PROVIDER -androidx.appcompat.R$drawable: int abc_textfield_activated_mtrl_alpha -james.adaptiveicon.R$color: int background_floating_material_dark -androidx.appcompat.widget.AppCompatRatingBar -com.tencent.bugly.crashreport.common.info.a: java.lang.String T() -io.reactivex.internal.observers.BlockingObserver: java.lang.Object TERMINATED -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getRotation() -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float NitrogenDioxide -okio.HashingSink -com.google.android.material.R$id: int textSpacerNoTitle -wangdaye.com.geometricweather.R$string: int feedback_click_again_to_exit -wangdaye.com.geometricweather.R$drawable: int flag_nl -androidx.fragment.R$id: int accessibility_custom_action_27 -wangdaye.com.geometricweather.R$dimen: R$dimen() -wangdaye.com.geometricweather.settings.fragments.AbstractSettingsFragment -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconTint -com.google.android.material.R$style: int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day -com.amap.api.location.AMapLocationClientOption: boolean h -wangdaye.com.geometricweather.R$drawable: int shortcuts_snow -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onNext(java.lang.Object) -cyanogenmod.app.ThemeVersion: java.util.List getComponentVersions() -wangdaye.com.geometricweather.R$id: int spread_inside -cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit -wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_light -com.jaredrummler.android.colorpicker.R$attr: int layout_insetEdge -androidx.lifecycle.MediatorLiveData$Source: int mVersion -androidx.appcompat.R$attr: int borderlessButtonStyle -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_21 -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -cyanogenmod.weather.WeatherInfo: WeatherInfo(android.os.Parcel) -com.google.android.material.R$id: int expanded_menu -cyanogenmod.externalviews.KeyguardExternalViewProviderService -wangdaye.com.geometricweather.R$attr: int layout_constraintTag -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_orderInCategory -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTintMode -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_checkable -wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitle -com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_JAVA_CATCH -com.xw.repo.bubbleseekbar.R$styleable: int View_android_focusable -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabTextStyle -androidx.hilt.work.R$styleable: int GradientColor_android_startX -androidx.preference.R$styleable: int AlertDialog_buttonPanelSideLayout -com.amap.api.location.LocationManagerBase: void stopAssistantLocation() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -com.tencent.bugly.proguard.v: com.tencent.bugly.proguard.s h -androidx.legacy.coreutils.R$dimen: int notification_action_text_size -com.google.android.material.R$id: int chip1 -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -okhttp3.internal.platform.Platform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.X509TrustManager) -okhttp3.internal.connection.RealConnection: void onStream(okhttp3.internal.http2.Http2Stream) -androidx.appcompat.R$anim: int abc_fade_out -com.jaredrummler.android.colorpicker.R$styleable: int[] DialogPreference -androidx.fragment.R$dimen: int notification_top_pad -android.didikee.donate.R$layout: int notification_template_custom_big -androidx.appcompat.R$attr: int alertDialogStyle -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_text_size -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder readTimeout(java.time.Duration) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -wangdaye.com.geometricweather.R$attr: int order -androidx.lifecycle.extensions.R$layout -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_id -com.google.android.material.R$styleable: int ViewStubCompat_android_id -androidx.lifecycle.extensions.R$attr: R$attr() -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_max -com.xw.repo.bubbleseekbar.R$attr: int titleMarginBottom -io.reactivex.exceptions.MissingBackpressureException: long serialVersionUID -com.xw.repo.bubbleseekbar.R$dimen: int abc_floating_window_z -com.google.android.material.R$drawable: int abc_btn_check_material -wangdaye.com.geometricweather.R$drawable: int notif_temp_53 -com.google.android.material.transformation.ExpandableTransformationBehavior: ExpandableTransformationBehavior() -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endY -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean getAddress_detail() -androidx.appcompat.R$styleable: int AppCompatTheme_colorError -com.google.android.material.R$attr: int cornerSize -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason SWITCH_TO_SOURCE_SERVICE -androidx.appcompat.R$attr: int listMenuViewStyle -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: double speed -okhttp3.internal.http2.Http2Reader: void readPushPromise(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -androidx.appcompat.widget.ActionMenuView -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setDistrict(java.lang.String) -retrofit2.ParameterHandler$RawPart: retrofit2.ParameterHandler$RawPart INSTANCE -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getDescription() -okhttp3.internal.http2.Http2Connection$5: int val$streamId -com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_end_outer_color -com.google.android.material.R$layout: int design_layout_snackbar -okhttp3.internal.platform.AndroidPlatform: void connectSocket(java.net.Socket,java.net.InetSocketAddress,int) -androidx.appcompat.R$anim -androidx.coordinatorlayout.widget.CoordinatorLayout: int getNestedScrollAxes() -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectionPool(okhttp3.ConnectionPool) -androidx.preference.MultiSelectListPreferenceDialogFragmentCompat: MultiSelectListPreferenceDialogFragmentCompat() -com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_disabled_material_light -cyanogenmod.app.ICMStatusBarManager: void createCustomTileWithTag(java.lang.String,java.lang.String,java.lang.String,int,cyanogenmod.app.CustomTile,int[],int) -james.adaptiveicon.R$attr: int state_above_anchor -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.HistoryEntity,int) -com.google.android.material.R$drawable -wangdaye.com.geometricweather.R$id: int scale -retrofit2.adapter.rxjava2.CallExecuteObservable -cyanogenmod.providers.CMSettings$DiscreteValueValidator: boolean validate(java.lang.String) -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.lang.Object next() -com.google.android.material.textfield.TextInputLayout: void setEndIconContentDescription(int) -androidx.appcompat.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -com.google.android.material.slider.BaseSlider: float getThumbStrokeWidth() -com.xw.repo.bubbleseekbar.R$drawable: int notify_panel_notification_icon_bg -com.google.android.material.R$id: int shortcut -androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableTransition -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void schedule() -com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_text_color -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber -com.google.android.material.R$attr: int isMaterialTheme -okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] WILDCARD_LABEL -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: int UnitType -androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_4_material -androidx.coordinatorlayout.R$styleable: int ColorStateListItem_android_alpha -james.adaptiveicon.R$styleable: int AppCompatTheme_listMenuViewStyle -okhttp3.internal.cache.DiskLruCache: java.io.File directory -androidx.constraintlayout.widget.R$attr: int framePosition -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: void setParent(io.reactivex.internal.operators.observable.ObservablePublish$PublishObserver) -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy[] values() -wangdaye.com.geometricweather.R$styleable: int[] MaterialAlertDialog -com.tencent.bugly.proguard.p: java.util.List a(int) -io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function,boolean,int) -cyanogenmod.app.Profile: boolean getStatusBarIndicator() -androidx.loader.R$id: int chronometer -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginStart -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitationDuration(java.lang.Float) -okhttp3.internal.http2.Http2Connection: void start(boolean) -androidx.constraintlayout.widget.R$id: int packed -com.tencent.bugly.crashreport.crash.jni.b: void c(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int Base_AlertDialog_AppCompat -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Headline -androidx.constraintlayout.widget.R$attr: int layout_editor_absoluteY -okhttp3.Cache$2: boolean hasNext() -com.google.android.material.R$styleable: int ConstraintSet_flow_verticalAlign -wangdaye.com.geometricweather.R$styleable: int MaterialButton_strokeColor -com.tencent.bugly.crashreport.crash.c: int f -androidx.customview.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.R$drawable: int clock_dial_dark -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitationDuration() -com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationZ(float) -wangdaye.com.geometricweather.R$attr: int layout_constraintBaseline_toBaselineOf -cyanogenmod.app.ICMStatusBarManager: void unregisterListener(cyanogenmod.app.ICustomTileListener,int) -com.xw.repo.bubbleseekbar.R$attr: int alpha -james.adaptiveicon.R$styleable: int[] ViewStubCompat -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_icon_color_selector -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer rainHazard3h -wangdaye.com.geometricweather.R$color: int design_dark_default_color_secondary_variant -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_2 -okhttp3.internal.http2.Http2Codec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) -androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$color: int design_fab_shadow_end_color -androidx.constraintlayout.widget.R$id: int parentRelative -wangdaye.com.geometricweather.R$id: int activity_settings -androidx.fragment.R$styleable: int FontFamilyFont_ttcIndex -androidx.appcompat.widget.AppCompatSeekBar -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -okhttp3.internal.cache.CacheInterceptor: okhttp3.Response cacheWritingResponse(okhttp3.internal.cache.CacheRequest,okhttp3.Response) -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree nighttimeWindDegree -james.adaptiveicon.R$styleable: int MenuItem_android_menuCategory -com.google.android.material.R$styleable: int Constraint_flow_horizontalBias -com.bumptech.glide.module.AppGlideModule: AppGlideModule() -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource CAIYUN -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_labelVisibilityMode -androidx.work.ListenableWorker: ListenableWorker(android.content.Context,androidx.work.WorkerParameters) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_onClick -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_baselineAligned -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_spinBars -androidx.hilt.R$layout: int notification_template_icon_group -okio.RealBufferedSink$1 -androidx.hilt.R$id: int dialog_button -com.google.android.material.R$color: int abc_primary_text_disable_only_material_dark -wangdaye.com.geometricweather.R$attr: int bottom_text_size -com.google.android.material.R$style: int ShapeAppearanceOverlay_TopRightDifferentCornerSize -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Button -okhttp3.internal.cache.DiskLruCache: void flush() -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: long getLtoDownloadInterval() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: AtmoAuraQAResult$Advice$AdviceContext() -com.google.android.material.R$styleable: int TextAppearance_android_shadowColor -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator -com.google.android.material.R$layout: int mtrl_calendar_days_of_week -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton_CloseMode -okhttp3.internal.http2.Settings: int DEFAULT_INITIAL_WINDOW_SIZE -androidx.constraintlayout.widget.R$id: int off -androidx.hilt.work.R$anim: int fragment_close_exit -com.google.android.material.R$dimen: int abc_dialog_padding_top_material -androidx.room.RoomDatabase: RoomDatabase() -com.google.android.material.R$color: int material_grey_900 -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderTitle -com.tencent.bugly.proguard.y$a: boolean c(com.tencent.bugly.proguard.y$a) -wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity: DailyTrendWidgetConfigActivity() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType valueOf(java.lang.String) -com.google.android.gms.common.api.UnsupportedApiCallException: com.google.android.gms.common.Feature zza -com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar_TextView -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.LifecycleRegistry mRegistry -okhttp3.internal.connection.RealConnection: boolean noNewStreams -com.xw.repo.bubbleseekbar.R$id: int submenuarrow -com.turingtechnologies.materialscrollbar.DateAndTimeIndicator -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_maxButtonHeight -androidx.viewpager2.R$id: int accessibility_custom_action_26 -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_statusBarForeground -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_ActionBar -com.jaredrummler.android.colorpicker.R$attr: int alertDialogTheme -com.jaredrummler.android.colorpicker.R$attr: int title -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor valueOf(java.lang.String) -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status CLEARED -androidx.work.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain1h -com.turingtechnologies.materialscrollbar.R$dimen: int notification_media_narrow_margin -androidx.core.content.FileProvider: FileProvider() -androidx.appcompat.R$color: int bright_foreground_disabled_material_light -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType USER_REQUEST_MIXNMATCH -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_Alert -com.tencent.bugly.proguard.i: long[] g(int,boolean) -retrofit2.Utils: boolean hasUnresolvableType(java.lang.reflect.Type) -wangdaye.com.geometricweather.db.entities.WeatherEntity: long getUpdateTime() -cyanogenmod.profiles.ConnectionSettings: int mConnectionId -com.google.gson.stream.JsonScope: int EMPTY_OBJECT -androidx.transition.R$style: int Widget_Compat_NotificationActionText -wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_range -io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription[] values() -androidx.preference.R$style: int TextAppearance_AppCompat_Title -io.reactivex.internal.subscribers.StrictSubscriber: void onNext(java.lang.Object) -com.bumptech.glide.integration.okhttp.R$id: int notification_main_column_container -com.google.android.material.R$integer: int design_tab_indicator_anim_duration_ms -okhttp3.logging.package-info -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Placeholder -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String to -com.google.android.material.R$styleable: int MaterialToolbar_navigationIconColor -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: AccuCurrentResult$WindChillTemperature() -androidx.viewpager2.R$id -androidx.appcompat.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.R$styleable: int MaterialCheckBox_useMaterialThemeColors -androidx.constraintlayout.widget.R$attr: int spinBars -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onComplete() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitationProbability -io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$attr: int defaultDuration -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$dimen: int notification_action_text_size -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: long serialVersionUID -androidx.appcompat.resources.R$dimen: int compat_notification_large_icon_max_height -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: void run() -com.google.android.material.R$styleable: int ActionMode_subtitleTextStyle -androidx.drawerlayout.R$string: R$string() -androidx.constraintlayout.widget.R$style: int Base_V23_Theme_AppCompat_Light -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction -androidx.appcompat.R$string: int abc_menu_ctrl_shortcut_label -androidx.preference.R$styleable: int SwitchPreferenceCompat_summaryOn -com.jaredrummler.android.colorpicker.R$attr: int buttonBarStyle -wangdaye.com.geometricweather.R$styleable: int MenuView_preserveIconSpacing -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_arrowHeadLength -com.turingtechnologies.materialscrollbar.R$id: int shortcut -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light -wangdaye.com.geometricweather.R$string: int content_des_delete_flag -androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -wangdaye.com.geometricweather.R$drawable: int notif_temp_49 -retrofit2.DefaultCallAdapterFactory$1: java.util.concurrent.Executor val$executor -okhttp3.OkHttpClient$Builder: java.util.List networkInterceptors() -cyanogenmod.app.IProfileManager$Stub: java.lang.String DESCRIPTOR -androidx.lifecycle.viewmodel.savedstate.R: R() -androidx.appcompat.R$attr: int srcCompat -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity -androidx.viewpager2.R$id: int accessibility_custom_action_5 -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noTransform() -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference upstream -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String timezone -james.adaptiveicon.R$drawable: int abc_list_focused_holo -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_pivotAnchor -wangdaye.com.geometricweather.R$color: int colorTextLight -androidx.hilt.work.R$id: int accessibility_custom_action_5 -android.didikee.donate.R$color: int bright_foreground_material_dark -androidx.lifecycle.Transformations$2$1 -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_body_1_material -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float snowPrecipitation -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: boolean isValid() -com.google.android.material.R$attr: int motion_postLayoutCollision -com.turingtechnologies.materialscrollbar.R$dimen: int notification_subtext_size -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long firstEmission -io.reactivex.internal.observers.InnerQueuedObserver: InnerQueuedObserver(io.reactivex.internal.observers.InnerQueuedObserverSupport,int) -androidx.lifecycle.ProcessLifecycleOwner$3 -com.github.rahatarmanahmed.cpv.CircularProgressView: android.graphics.Paint paint -com.google.android.material.R$color: int material_grey_850 -androidx.preference.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -androidx.appcompat.R$attr: int height -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: boolean handles(android.content.Intent) -androidx.preference.R$dimen: int abc_action_button_min_height_material -io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onError -com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuItem -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_SECURE -wangdaye.com.geometricweather.R$id: int dimensions -wangdaye.com.geometricweather.R$styleable: int LiveLockScreen_type -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_16 -com.xw.repo.bubbleseekbar.R$attr: int colorSwitchThumbNormal -androidx.appcompat.resources.R$style: R$style() -com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException: RecyclableBufferedInputStream$InvalidMarkException(java.lang.String) -androidx.appcompat.widget.LinearLayoutCompat: int getBaselineAlignedChildIndex() -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getDesiredWidth() -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification -retrofit2.http.Headers -com.jaredrummler.android.colorpicker.R$style: int PreferenceFragmentList_Material -androidx.preference.R$attr: int colorError -okio.Pipe$PipeSink: void write(okio.Buffer,long) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService newInstance(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi,io.reactivex.disposables.CompositeDisposable) -okhttp3.EventListener$2: okhttp3.EventListener val$listener -cyanogenmod.providers.ThemesContract$MixnMatchColumns -com.turingtechnologies.materialscrollbar.R$attr: int dropDownListViewStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit getInstance(java.lang.String) -wangdaye.com.geometricweather.R$integer: int mtrl_badge_max_character_count -androidx.appcompat.view.menu.MenuPopup -james.adaptiveicon.R$styleable: int CompoundButton_android_button -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_second_track_color -androidx.preference.R$style: int Base_Animation_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardMaxElevation -androidx.preference.R$color: int abc_search_url_text -cyanogenmod.weather.WeatherLocation: java.lang.String mCountry -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActivityChooserView -androidx.work.Worker -androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_id -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_spinnerStyle -okhttp3.RealCall$AsyncCall: java.lang.String host() -com.baidu.location.e.h$c: com.baidu.location.e.h$c a -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric -com.google.android.material.R$style: int ShapeAppearanceOverlay_DifferentCornerSize -com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode Battery_Saving -james.adaptiveicon.R$styleable: int AppCompatImageView_tintMode -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_enforceMaterialTheme -wangdaye.com.geometricweather.R$id: int container_main_sun_moon -android.didikee.donate.R$color: int dim_foreground_disabled_material_dark -androidx.legacy.coreutils.R$attr: int fontProviderFetchTimeout -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setAirplaneModeEnabled_0 -okhttp3.internal.http.HttpCodec -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_26 -androidx.drawerlayout.R$styleable: int GradientColor_android_centerColor -androidx.appcompat.widget.AppCompatEditText: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -androidx.legacy.coreutils.R$dimen: int compat_notification_large_icon_max_height -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_right -james.adaptiveicon.R$dimen: int abc_search_view_preferred_height -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: int UnitType -androidx.constraintlayout.widget.R$bool: int abc_allow_stacked_button_bar -wangdaye.com.geometricweather.R$styleable: int[] SwitchCompat -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitationDuration(java.lang.Float) -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconContentDescription -androidx.constraintlayout.widget.R$styleable: int Variant_constraints -com.turingtechnologies.materialscrollbar.R$attr: int windowMinWidthMajor -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language POLISH -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String getNativeLog() -wangdaye.com.geometricweather.R$id: int transparency_layout -androidx.customview.R$dimen: int notification_top_pad -androidx.recyclerview.widget.RecyclerView: void addOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -com.google.android.material.slider.Slider: void setValueFrom(float) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setRotation(float) -cyanogenmod.weather.CMWeatherManager: int lookupCity(java.lang.String,cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener) -com.google.android.material.datepicker.CalendarConstraints$DateValidator -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_vertical_padding -com.xw.repo.bubbleseekbar.R$attr: int dialogCornerRadius -com.google.android.material.R$styleable: int Transition_constraintSetEnd -wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemTextAppearance -com.turingtechnologies.materialscrollbar.R$attr: int buttonStyle -cyanogenmod.weather.WeatherInfo: double mWindDirection -com.google.android.material.R$styleable: int SearchView_android_maxWidth -io.reactivex.Observable: io.reactivex.Observable buffer(int,java.util.concurrent.Callable) -com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context) -james.adaptiveicon.R$drawable: int abc_seekbar_thumb_material -wangdaye.com.geometricweather.R$attr: int counterTextAppearance -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRealFeelTemperature(java.lang.Integer) -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void dispose() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_100 -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_directionValue -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionButtonStyle -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type RIGHT -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: MfForecastResult$Forecast$Wind() -androidx.preference.R$dimen: int abc_control_corner_material -androidx.constraintlayout.widget.R$styleable: int OnSwipe_limitBoundsTo -james.adaptiveicon.R$layout: int abc_action_mode_close_item_material -androidx.appcompat.R$dimen: int abc_text_size_display_1_material -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -io.reactivex.internal.util.NotificationLite$SubscriptionNotification: java.lang.String toString() -androidx.appcompat.R$attr: int titleMarginBottom -androidx.fragment.R$styleable: int GradientColor_android_endColor -androidx.appcompat.resources.R$string: R$string() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTag -androidx.hilt.work.R$id: int tag_unhandled_key_listeners -androidx.activity.R$drawable: R$drawable() -com.google.android.material.R$style: int TextAppearance_Design_Prefix -wangdaye.com.geometricweather.db.entities.AlertEntity: long time -wangdaye.com.geometricweather.R$string: int mtrl_picker_cancel -wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity -wangdaye.com.geometricweather.R$color: int material_grey_300 -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_explanation -com.google.android.material.R$attr: int closeIconVisible -wangdaye.com.geometricweather.R$dimen: int tooltip_y_offset_touch -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.db.entities.WeatherEntityDao myDao -com.tencent.bugly.proguard.u: java.lang.Object j -wangdaye.com.geometricweather.R$layout: int item_weather_icon_title -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.R$id: int notification_big_week_5 -wangdaye.com.geometricweather.db.entities.AlertEntityDao -androidx.drawerlayout.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$styleable: int Snackbar_snackbarTextViewStyle -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf -androidx.customview.R$dimen -com.google.android.material.R$attr: int perpendicularPath_percent -androidx.preference.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingStart -androidx.legacy.coreutils.R$dimen: int notification_action_icon_size -com.google.android.material.R$layout: int text_view_with_line_height_from_appearance -com.google.android.material.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event[] $VALUES -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_disabled_holo_light -androidx.preference.R$attr: int buttonPanelSideLayout -androidx.constraintlayout.widget.R$id: int path -com.jaredrummler.android.colorpicker.R$attr: int dropdownPreferenceStyle -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object SYNC_DISPOSED -wangdaye.com.geometricweather.location.utils.LocationException: LocationException(int,java.lang.String) -com.google.android.material.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$attr: int bsb_thumb_text_size -androidx.recyclerview.R$id: int accessibility_custom_action_0 -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Button -wangdaye.com.geometricweather.R$string: int week_6 -com.tencent.bugly.crashreport.common.info.a: long s -cyanogenmod.profiles.ConnectionSettings: int getSubId() -androidx.preference.MultiSelectListPreference -com.google.android.material.R$styleable: int CustomAttribute_customFloatValue -wangdaye.com.geometricweather.R$layout: int widget_day_nano -cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,android.content.ComponentName) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_US -wangdaye.com.geometricweather.db.entities.AlertEntity: void setContent(java.lang.String) -wangdaye.com.geometricweather.R$attr: int checkedIconMargin -wangdaye.com.geometricweather.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_30 -com.jaredrummler.android.colorpicker.R$string: int cpv_select -wangdaye.com.geometricweather.R$string: int feedback_black_text -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moldLevel -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarSize -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_disabled_material_light -com.jaredrummler.android.colorpicker.R$id: int chronometer -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.recyclerview.R$id: int accessibility_custom_action_8 -com.google.android.material.R$styleable: int KeyTimeCycle_android_elevation -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_constantSize -wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_tailScale -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setWallpaper(java.lang.String) -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.Observer downstream -androidx.lifecycle.ProcessLifecycleOwner$1 -wangdaye.com.geometricweather.R$string: int geometric_weather -androidx.cardview.R$attr: int cardViewStyle -androidx.cardview.widget.CardView: void setCardBackgroundColor(int) -androidx.appcompat.widget.Toolbar: void setLogo(android.graphics.drawable.Drawable) -androidx.appcompat.R$attr: int thickness -androidx.preference.R$style: int Preference_Information -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_end_padding -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -com.google.android.material.R$styleable: int AppCompatTheme_actionModeStyle -com.turingtechnologies.materialscrollbar.R$attr: int chipBackgroundColor -com.google.android.material.appbar.AppBarLayout: void setLiftOnScroll(boolean) -com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Dialog -cyanogenmod.weather.CMWeatherManager$2: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onDrop(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$attr: int insetForeground -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String LongPhrase -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setBootanimation(java.lang.String) -androidx.work.R$styleable: int FontFamilyFont_android_fontStyle -okhttp3.internal.tls.DistinguishedNameParser: int end -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: AccuDailyResult$DailyForecasts$AirAndPollen() -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_container -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: ObservableTimeout$TimeoutFallbackObserver(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.ObservableSource) -android.didikee.donate.R$drawable: int abc_text_select_handle_right_mtrl_dark -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -com.tencent.bugly.crashreport.common.strategy.StrategyBean: void writeToParcel(android.os.Parcel,int) -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean a(com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler,int,java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int displayOptions -androidx.lifecycle.ViewModelProviders$DefaultFactory -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableStart -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.LocationEntityDao locationEntityDao -wangdaye.com.geometricweather.R$id: int item_details_title -cyanogenmod.profiles.RingModeSettings: RingModeSettings(java.lang.String,boolean) -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removePathSegment(int) -io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate,int) -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy MISSING -com.xw.repo.bubbleseekbar.R$attr: int dividerVertical -james.adaptiveicon.R$drawable: int abc_list_selector_background_transition_holo_dark -androidx.appcompat.resources.R$id: int tag_accessibility_heading -cyanogenmod.profiles.ConnectionSettings: void readFromParcel(android.os.Parcel) -com.google.gson.stream.JsonScope: int NONEMPTY_ARRAY -androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$attr: int flow_maxElementsWrap -cyanogenmod.profiles.BrightnessSettings$1: cyanogenmod.profiles.BrightnessSettings createFromParcel(android.os.Parcel) -com.amap.api.location.AMapLocationClientOption: boolean l -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode LIGHT -com.google.android.material.R$style: int Widget_AppCompat_ImageButton -com.tencent.bugly.proguard.c: com.tencent.bugly.proguard.i f -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton -io.reactivex.Observable: java.lang.Object blockingFirst(java.lang.Object) -androidx.preference.R$drawable: int abc_btn_borderless_material -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean getDirection() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -okhttp3.RealCall: okhttp3.Response getResponseWithInterceptorChain() -androidx.appcompat.R$dimen: int abc_action_button_min_height_material -wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_details_setting -com.google.android.material.R$attr: int endIconDrawable -cyanogenmod.providers.CMSettings$NameValueCache: android.content.IContentProvider lazyGetProvider(android.content.ContentResolver) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeApparentTemperature() -com.tencent.bugly.proguard.x: java.lang.String a -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_titleTextStyle -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5 -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onComplete() -com.google.android.material.R$styleable: int AppCompatTheme_actionBarSize -wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_weight -wangdaye.com.geometricweather.R$anim: int popup_show_top_left -wangdaye.com.geometricweather.R$attr: int onPositiveCross -androidx.lifecycle.extensions.R$id: int actions -androidx.constraintlayout.widget.R$id: int dragDown -android.didikee.donate.R$attr: int thickness -androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getCollapseIcon() -androidx.constraintlayout.widget.R$attr: int triggerId -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_DEFAULT_INDEX -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: void run() -james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Light -android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyle -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_width_overflow_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean weather -android.didikee.donate.R$drawable: int abc_ic_star_black_16dp -okio.InflaterSource: void close() -wangdaye.com.geometricweather.R$attr: int placeholderText -wangdaye.com.geometricweather.R$dimen: int preference_icon_minWidth -androidx.preference.R$drawable: int abc_list_selector_disabled_holo_dark -okhttp3.OkHttpClient$Builder: java.util.List networkInterceptors -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_transitionEasing -james.adaptiveicon.R$id: int topPanel -com.turingtechnologies.materialscrollbar.R$attr: int showAsAction -com.google.android.material.R$styleable: int KeyAttribute_motionProgress -androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnDestroy() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean() -wangdaye.com.geometricweather.R$attr: int helperTextTextAppearance -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display4 -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_registerThemeProcessingListener -cyanogenmod.weatherservice.WeatherProviderService$1: cyanogenmod.weatherservice.WeatherProviderService this$0 -james.adaptiveicon.R$dimen: int abc_action_bar_overflow_padding_end_material -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.coordinatorlayout.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_text_padding -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_3 -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber this$1 -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long index -com.google.android.material.R$attr: int badgeTextColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setZh_TW(java.lang.String) -androidx.preference.R$color: int abc_secondary_text_material_light -wangdaye.com.geometricweather.R$layout: int dialog_animatable_icon -wangdaye.com.geometricweather.R$dimen: int abc_cascading_menus_min_smallest_width -com.google.android.material.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean -android.didikee.donate.R$styleable: int ActionMode_titleTextStyle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias -android.didikee.donate.R$id: int submenuarrow -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_PONG -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarSize -james.adaptiveicon.R$drawable: int abc_text_select_handle_right_mtrl_light -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitationDuration() -androidx.coordinatorlayout.R$id: int right_icon -android.didikee.donate.R$id: int listMode -com.google.android.material.textfield.TextInputLayout: android.widget.TextView getSuffixTextView() -com.google.android.material.R$dimen: int mtrl_switch_thumb_elevation -com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonCompat -android.didikee.donate.R$id: int notification_background -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onNext(java.lang.Object) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean hasKey(java.lang.Object) -com.google.android.material.R$attr: int layout_constraintLeft_creator -androidx.work.R$drawable: int notification_icon_background -okhttp3.internal.http1.Http1Codec: void cancel() -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -retrofit2.Retrofit$Builder -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_popupTheme -wangdaye.com.geometricweather.settings.activities.SelectProviderActivity: SelectProviderActivity() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_PopupMenu -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_alphabeticModifiers -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_cardForegroundColor -cyanogenmod.weather.CMWeatherManager$1: void onWeatherServiceProviderChanged(java.lang.String) -com.google.android.material.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTintMode -androidx.preference.R$styleable: int SwitchPreference_disableDependentsState -wangdaye.com.geometricweather.R$drawable: int weather_sleet_pixel -wangdaye.com.geometricweather.R$id: R$id() -com.google.android.material.R$styleable: int SearchView_goIcon -wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationX -okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.Response cacheResponse -androidx.preference.R$layout: int preference_dialog_edittext -androidx.viewpager2.R$layout: int notification_action -io.reactivex.internal.subscriptions.EmptySubscription -androidx.hilt.lifecycle.R$color: int notification_icon_bg_color -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_splitTrack -wangdaye.com.geometricweather.R$color: int colorLevel_4 -okhttp3.internal.http2.Hpack$Reader: int readInt(int,int) -android.didikee.donate.R$attr: int contentInsetEnd -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status COMPLETED -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property PublishTime -android.didikee.donate.R$attr: int color -wangdaye.com.geometricweather.R$id: int parentRelative -android.didikee.donate.R$attr: int buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.R$drawable: int ic_forecast -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_text_color -androidx.appcompat.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA -com.tencent.bugly.proguard.q: int b -com.tencent.bugly.crashreport.biz.a: void b() -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getCOColor(android.content.Context) -cyanogenmod.externalviews.ExternalViewProviderService$1: android.os.IBinder createExternalView(android.os.Bundle) -com.tencent.bugly.crashreport.CrashReport: void postCatchedException(java.lang.Throwable,java.lang.Thread,boolean) -com.google.android.material.slider.BaseSlider: float getStepSize() -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_ActionBar -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -androidx.hilt.R$id: int accessibility_custom_action_12 -cyanogenmod.themes.ThemeChangeRequest$RequestType -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_maxElementsWrap -androidx.viewpager2.R$id: int text2 -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -androidx.lifecycle.extensions.R$style -com.google.android.material.R$styleable: int Layout_layout_constraintVertical_chainStyle -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String chief -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_VALIDATOR -androidx.lifecycle.LiveData$LifecycleBoundObserver: void detachObserver() -com.google.android.material.chip.Chip: void setCheckedIconTintResource(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric Metric -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.R$color: int background_floating_material_dark -com.tencent.bugly.crashreport.crash.h5.b: java.lang.String b -com.amap.api.location.AMapLocation: java.lang.String b(com.amap.api.location.AMapLocation,java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_behavior -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$id: int transition_layout_save -androidx.constraintlayout.widget.R$attr: int windowFixedHeightMinor -androidx.appcompat.R$id: int group_divider -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetStartWithNavigation -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDefaultDisplayMode -androidx.appcompat.R$style: int TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX getNames() -okhttp3.Dispatcher: java.lang.Runnable idleCallback -androidx.constraintlayout.widget.R$string: int abc_menu_meta_shortcut_label -com.google.android.material.R$attr: int thumbRadius -androidx.work.R$drawable: int notification_bg_low_pressed -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void removeSome(int) -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogIcon -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.google.android.material.R$style: int Widget_MaterialComponents_CheckedTextView -androidx.preference.R$attr: int allowDividerAfterLastItem -androidx.preference.R$styleable: int AppCompatTheme_windowFixedHeightMajor -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: ThemeVersion$ThemeVersionImpl2() -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void truncate() -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingTop -com.tencent.bugly.proguard.p: boolean a(com.tencent.bugly.proguard.p,int,java.lang.String,com.tencent.bugly.proguard.o) -retrofit2.CallAdapter$Factory: java.lang.Class getRawType(java.lang.reflect.Type) -androidx.preference.R$styleable: int GradientColor_android_endY -com.google.android.material.R$dimen: int mtrl_tooltip_cornerSize -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COL_KEY -wangdaye.com.geometricweather.R$attr: int cornerFamilyTopLeft -androidx.transition.R$dimen: int compat_notification_large_icon_max_width -com.google.android.material.R$layout: int test_reflow_chipgroup -androidx.coordinatorlayout.widget.CoordinatorLayout$SavedState: android.os.Parcelable$Creator CREATOR -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedWidthMinor() -wangdaye.com.geometricweather.R$color: int dim_foreground_disabled_material_light -androidx.preference.R$styleable: int ActionBar_background -wangdaye.com.geometricweather.R$attr: int chipIconSize -james.adaptiveicon.R$bool: int abc_allow_stacked_button_bar -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView_Menu -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabText -androidx.fragment.R$dimen: int notification_subtext_size -com.google.android.gms.internal.common.zzq: com.google.android.gms.internal.common.zzo zza -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams access$400(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -com.google.android.gms.location.DetectedActivity: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_modal_elevation -androidx.cardview.widget.CardView: int getContentPaddingRight() -wangdaye.com.geometricweather.R$drawable: int notification_bg_low -androidx.appcompat.R$attr: int editTextBackground -com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a d -wangdaye.com.geometricweather.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -wangdaye.com.geometricweather.R$string: int transition_activity_search_txt -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onBouncerShowing(boolean) -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.Lifecycle getLifecycle() -io.reactivex.Observable: io.reactivex.Observable defaultIfEmpty(java.lang.Object) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton -com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_colored -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode lvNext() -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderQuery -androidx.preference.R$styleable: int GradientColor_android_endX -com.google.android.material.bottomnavigation.BottomNavigationView: android.graphics.drawable.Drawable getItemBackground() -android.didikee.donate.R$id: int list_item -io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite COMPLETE -androidx.appcompat.widget.AppCompatEditText: android.content.res.ColorStateList getSupportBackgroundTintList() -androidx.preference.R$style: int TextAppearance_AppCompat_Button -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_5 -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle -okhttp3.ResponseBody: java.nio.charset.Charset charset() -com.google.android.material.R$layout: int material_timepicker_dialog -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_shapeAppearanceOverlay -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: int hasSeaBulletin -androidx.work.R$styleable: int GradientColor_android_startX -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder addCallAdapterFactory(retrofit2.CallAdapter$Factory) -androidx.appcompat.R$id: int action_mode_close_button -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean done -com.jaredrummler.android.colorpicker.R$dimen: int hint_pressed_alpha_material_dark -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String dept -wangdaye.com.geometricweather.R$styleable: int ActionBar_customNavigationLayout -cyanogenmod.weather.RequestInfo: java.lang.String getCityName() -io.reactivex.internal.operators.observable.ObservableGroupBy$State: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -wangdaye.com.geometricweather.R$anim: int popup_show_bottom_right -com.google.android.material.R$style: int Widget_MaterialComponents_Tooltip -wangdaye.com.geometricweather.R$bool: int abc_action_bar_embed_tabs -androidx.appcompat.widget.SwitchCompat: int getCompoundPaddingRight() -wangdaye.com.geometricweather.R$attr: int contentPaddingTop -james.adaptiveicon.R$drawable: int abc_ab_share_pack_mtrl_alpha -com.google.android.material.R$color: int abc_primary_text_material_light -android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMarkTintMode -com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatPressedTranslationZ() -androidx.appcompat.R$id: int message -io.reactivex.Observable: io.reactivex.Observable buffer(java.util.concurrent.Callable,java.util.concurrent.Callable) -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_toolbarId -androidx.hilt.work.R$anim: int fragment_open_enter -com.jaredrummler.android.colorpicker.R$style: int Widget_Support_CoordinatorLayout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setDesc(java.lang.String) -wangdaye.com.geometricweather.R$id: int autoComplete -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf -com.google.android.material.R$dimen: int mtrl_navigation_item_icon_padding -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: org.reactivestreams.Subscription upstream -wangdaye.com.geometricweather.R$drawable: int mtrl_popupmenu_background_dark -com.google.android.material.R$styleable: int Layout_layout_constraintWidth_min -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceTheme -com.google.android.material.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -wangdaye.com.geometricweather.R$id: int item_weather_daily_pollen -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_outline_box_expanded_padding -com.google.android.material.R$styleable: int Tooltip_android_padding -androidx.appcompat.R$color: int primary_dark_material_dark -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State min(androidx.lifecycle.Lifecycle$State,androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.R$drawable: int notif_temp_68 -com.turingtechnologies.materialscrollbar.R$id: int textinput_error -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit valueOf(java.lang.String) -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onError(java.lang.Throwable) -com.tencent.bugly.crashreport.biz.b: void a(long) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind -com.google.android.material.R$style: int Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle CITIES -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object getKey(java.lang.Object) -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitation -com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage ZH -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder createExternalView(android.os.Bundle) -android.didikee.donate.R$attr: int windowFixedWidthMajor -com.google.android.material.R$attr: int closeItemLayout -wangdaye.com.geometricweather.R$id: int groups -com.google.android.material.R$dimen: int mtrl_slider_track_height -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_widget_height -com.google.android.material.datepicker.MaterialTextInputPicker: MaterialTextInputPicker() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onNext(java.lang.Object) -android.didikee.donate.R$attr: R$attr() -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$FramingSource source -wangdaye.com.geometricweather.R$id: int material_timepicker_cancel_button -androidx.appcompat.R$attr: int singleChoiceItemLayout -androidx.appcompat.R$id: int shortcut -wangdaye.com.geometricweather.R$styleable: int NavigationView_android_maxWidth -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActivityChooserView -com.turingtechnologies.materialscrollbar.R$id: int unlabeled -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -james.adaptiveicon.R$style: int Animation_AppCompat_DropDownUp -androidx.drawerlayout.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String getUnit() -androidx.preference.R$drawable: int abc_list_divider_material -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_icon -com.tencent.bugly.crashreport.common.strategy.StrategyBean: long f -androidx.work.OverwritingInputMerger: OverwritingInputMerger() -androidx.appcompat.R$attr: int tickMarkTint -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ImageButton -androidx.constraintlayout.widget.R$color: int switch_thumb_normal_material_dark -com.google.android.material.R$styleable: int AlertDialog_multiChoiceItemLayout -wangdaye.com.geometricweather.R$string: int feedback_enable_location_information -com.google.android.material.R$styleable: int MaterialButton_strokeWidth -androidx.appcompat.widget.AppCompatButton: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -com.google.android.material.R$layout: int mtrl_calendar_months -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: ExternalViewProviderService$Provider$ProviderImpl$1(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -androidx.viewpager.R$id: int line1 -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: boolean isDisposed() -com.tencent.bugly.proguard.b: b(java.lang.String) -io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable valueOf(java.lang.String) -com.google.android.material.chip.Chip: void setChipIconVisible(int) -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode DEFAULT -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: boolean terminated -com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onAnimationReset() -io.reactivex.internal.queue.SpscArrayQueue: SpscArrayQueue(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum -com.google.android.material.R$id: int ghost_view -com.jaredrummler.android.colorpicker.R$attr: int paddingEnd -james.adaptiveicon.R$attr: int gapBetweenBars -com.turingtechnologies.materialscrollbar.R$attr: int spinnerStyle -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean filterSigabrtSysLog() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Snackbar_Message -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalAlign -okhttp3.internal.connection.RealConnection: okhttp3.internal.ws.RealWebSocket$Streams newWebSocketStreams(okhttp3.internal.connection.StreamAllocation) -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: long serialVersionUID -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: java.util.ArrayList cVersions -wangdaye.com.geometricweather.common.basic.models.weather.History: java.util.Date getDate() -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getRagweedIndex() -androidx.preference.EditTextPreferenceDialogFragmentCompat -com.google.android.material.R$dimen: int mtrl_navigation_item_icon_size -wangdaye.com.geometricweather.R$attr: int chipGroupStyle -com.bumptech.glide.request.RequestCoordinator$RequestState -com.google.android.material.slider.RangeSlider: float getValueFrom() -wangdaye.com.geometricweather.R$attr: int bsb_section_text_color -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_WIND -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_checkedChip -androidx.preference.R$styleable: int MenuView_android_windowAnimationStyle -com.google.android.material.R$styleable: int MockView_mock_label -okio.BufferedSource: boolean exhausted() -androidx.preference.R$styleable: int FontFamilyFont_font -androidx.core.widget.NestedScrollView: float getVerticalScrollFactorCompat() -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setLineColor(int) -androidx.constraintlayout.widget.ConstraintLayout: int getOptimizationLevel() -androidx.preference.Preference: void setOnPreferenceChangeInternalListener(androidx.preference.Preference$OnPreferenceChangeInternalListener) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton_CloseMode -okhttp3.OkHttpClient: boolean retryOnConnectionFailure -wangdaye.com.geometricweather.R$styleable: int OnClick_targetId -androidx.preference.R$attr: int order -com.xw.repo.bubbleseekbar.R$id: int notification_main_column -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method putMethod -io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,boolean) -androidx.constraintlayout.widget.Barrier: int getType() -androidx.appcompat.widget.SwitchCompat: boolean getTargetCheckedState() -androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupWindow -com.google.gson.stream.JsonReader: void push(int) -androidx.hilt.lifecycle.R$dimen: int notification_large_icon_width -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_divider_material -androidx.fragment.R$id: int accessibility_custom_action_4 -com.jaredrummler.android.colorpicker.R$styleable: int[] MenuItem -com.google.android.material.R$styleable: int[] ActionBar -androidx.constraintlayout.utils.widget.ImageFilterView: float getSaturation() -com.google.android.material.R$string: int mtrl_picker_navigate_to_year_description -androidx.constraintlayout.helper.widget.Layer: void setRotation(float) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: AccuCurrentResult$Wind$Speed$Metric() -android.didikee.donate.R$styleable: int AppCompatTheme_activityChooserViewStyle -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable publish() -james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast -androidx.drawerlayout.R$id: int info -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getPm25Color(android.content.Context) -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String W -io.reactivex.observers.DisposableObserver: DisposableObserver() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_LED_ON_VALIDATOR -io.reactivex.internal.disposables.SequentialDisposable: long serialVersionUID -wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_colored_ripple_color -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed Speed -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: java.lang.Object v1 -com.bumptech.glide.R$id: int time -androidx.appcompat.R$dimen: int notification_large_icon_width -com.google.android.material.bottomnavigation.BottomNavigationView: void setOnNavigationItemSelectedListener(com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemSelectedListener) -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.R$drawable: int ic_pm -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTheme -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getCardValue() -androidx.preference.R$id: int unchecked -androidx.preference.R$styleable: int MenuItem_android_checkable -wangdaye.com.geometricweather.R$string: int content_des_sunset -com.jaredrummler.android.colorpicker.R$drawable: int cpv_preset_checked -cyanogenmod.externalviews.ExternalViewProviderService$1: ExternalViewProviderService$1(cyanogenmod.externalviews.ExternalViewProviderService) -androidx.appcompat.widget.SwitchCompat: void setTrackTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial() -wangdaye.com.geometricweather.R$array: int temperature_units -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_27 -androidx.appcompat.resources.R$attr: int fontProviderFetchStrategy -androidx.preference.R$id: int listMode -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Display_TextInputEditText -okio.Buffer$UnsafeCursor: void close() -com.google.android.material.R$styleable: int MenuGroup_android_orderInCategory -androidx.preference.R$styleable: int AppCompatTheme_listMenuViewStyle -cyanogenmod.themes.IThemeProcessingListener$Stub -android.didikee.donate.R$color: int secondary_text_disabled_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int[] SnackbarLayout -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: io.reactivex.Observer downstream -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType[] values() -wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragThreshold -com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_weight -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_wrapMode -com.amap.api.location.CoordinateConverter: com.amap.api.location.DPoint d -okhttp3.internal.http2.Header: int hashCode() -com.tencent.bugly.proguard.ao: ao() -james.adaptiveicon.R$id: int wrap_content -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_6 -android.didikee.donate.R$styleable: int AppCompatTextView_drawableTint -androidx.appcompat.resources.R$styleable: int StateListDrawable_android_exitFadeDuration -androidx.core.app.JobIntentService -io.reactivex.internal.util.NotificationLite$ErrorNotification: boolean equals(java.lang.Object) -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$id: int activity_allergen_toolbar -com.amap.api.fence.PoiItem$1: PoiItem$1() -androidx.appcompat.resources.R$id -wangdaye.com.geometricweather.R$attr: int drawableSize -cyanogenmod.profiles.StreamSettings: boolean isDirty() -com.google.gson.stream.JsonReader: void close() -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$GeoLanguage t -androidx.preference.R$style: int Widget_AppCompat_Spinner -androidx.appcompat.R$attr: int actionModeSelectAllDrawable -com.google.android.material.R$styleable: int MaterialCalendar_dayStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_102 -cyanogenmod.library.R$id: int event -com.google.android.material.R$color: int material_deep_teal_500 -com.google.gson.internal.LinkedTreeMap: boolean $assertionsDisabled -wangdaye.com.geometricweather.R$dimen: int abc_dialog_min_width_major -androidx.hilt.lifecycle.R$integer: R$integer() -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay -wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendHourlyProvider: WidgetTrendHourlyProvider() -androidx.appcompat.widget.Toolbar: void setContentInsetEndWithActions(int) -com.google.gson.stream.JsonReader -wangdaye.com.geometricweather.settings.activities.SettingsActivity -com.google.android.material.R$id: int message -okhttp3.RealCall: okhttp3.Request request() -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_scaleY -wangdaye.com.geometricweather.R$attr: int fragment -retrofit2.KotlinExtensions: java.lang.Object await(retrofit2.Call,kotlin.coroutines.Continuation) -retrofit2.RequestFactory$Builder: java.lang.String PARAM -androidx.appcompat.R$interpolator: R$interpolator() -androidx.appcompat.R$id: int textSpacerNoTitle -com.google.android.material.internal.NavigationMenuItemView: void setMaxLines(int) -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_spanCount -com.google.android.material.R$dimen: int abc_action_button_min_height_material -okhttp3.internal.http2.Settings: int ENABLE_PUSH -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial() -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.R$string: int feedback_ignore_battery_optimizations_title -wangdaye.com.geometricweather.R$id: int add -androidx.constraintlayout.utils.widget.ImageFilterButton: void setCrossfade(float) -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_fontFamily -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_off_mtrl_alpha -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarButtonStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_homeAsUpIndicator -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.IRequestInfoListener mRequestInfoListener -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Overline -androidx.appcompat.R$styleable: int ActionMode_height -com.jaredrummler.android.colorpicker.R$attr: int subMenuArrow -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_139 -wangdaye.com.geometricweather.R$string: int about_app -retrofit2.adapter.rxjava2.Result: boolean isError() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_SCREEN_ON_VALIDATOR -wangdaye.com.geometricweather.R$layout: int item_aqi -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours Past9Hours -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -retrofit2.OkHttpCall: retrofit2.Response execute() -wangdaye.com.geometricweather.R$styleable: int PropertySet_motionProgress -wangdaye.com.geometricweather.R$color: int mtrl_fab_icon_text_color_selector -james.adaptiveicon.R$styleable: int Toolbar_contentInsetLeft -com.xw.repo.bubbleseekbar.R$styleable: int[] StateListDrawableItem -androidx.lifecycle.MutableLiveData: void postValue(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceFragment -org.greenrobot.greendao.AbstractDao: void deleteInTxInternal(java.lang.Iterable,java.lang.Iterable) -wangdaye.com.geometricweather.R$styleable: int[] PreferenceGroup -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: ObservableBufferBoundary$BufferBoundaryObserver(io.reactivex.Observer,io.reactivex.ObservableSource,io.reactivex.functions.Function,java.util.concurrent.Callable) -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type WIND -androidx.activity.ComponentActivity: ComponentActivity() -wangdaye.com.geometricweather.R$color: int material_grey_800 -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_position -io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void drain() -androidx.cardview.R$color: int cardview_light_background -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: AccuCurrentResult$Temperature() -androidx.appcompat.view.menu.ListMenuItemView -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -com.jaredrummler.android.colorpicker.R$id: int tag_unhandled_key_event_manager -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void setResource(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.Guideline: void setVisibility(int) -cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.CustomTile getCustomTile() -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setFillAlpha(float) -cyanogenmod.app.BaseLiveLockManagerService: void enforceAccessPermission() -androidx.constraintlayout.widget.ConstraintHelper: void setReferencedIds(int[]) -androidx.appcompat.R$style: int Base_V23_Theme_AppCompat -androidx.preference.R$drawable: int abc_ic_star_black_48dp -wangdaye.com.geometricweather.R$layout: int cpv_preference_square_large -okio.ByteString: java.lang.String base64() -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int errorEnabled -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onError(java.lang.Throwable) -androidx.recyclerview.R$id: int accessibility_custom_action_6 -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property CityId -com.google.android.material.tabs.TabLayout: int getSelectedTabPosition() -androidx.core.app.CoreComponentFactory: CoreComponentFactory() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeWindSpeed -com.xw.repo.bubbleseekbar.R$id: int chronometer -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: MfLocationResult() -com.turingtechnologies.materialscrollbar.R$attr: int counterEnabled -wangdaye.com.geometricweather.R$animator: int weather_snow_1 -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.database.Database getDatabase() -com.google.android.material.R$color: int abc_search_url_text_pressed -androidx.preference.R$dimen: int abc_dialog_corner_radius_material -com.google.android.material.R$attr: int region_heightLessThan -cyanogenmod.themes.IThemeService$Stub: android.os.IBinder asBinder() -androidx.appcompat.resources.R$drawable: R$drawable() -retrofit2.RequestBuilder: java.util.regex.Pattern PATH_TRAVERSAL -com.google.android.material.R$style: int Widget_AppCompat_ListMenuView -james.adaptiveicon.R$styleable: int AppCompatTheme_colorButtonNormal -wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarStyle -cyanogenmod.app.ProfileManager: java.lang.String PROFILES_STATE_CHANGED_ACTION -androidx.constraintlayout.widget.R$layout: int abc_action_menu_item_layout -wangdaye.com.geometricweather.R$color: int design_fab_stroke_end_outer_color -android.didikee.donate.R$string: int abc_action_menu_overflow_description -androidx.loader.R$styleable: int GradientColor_android_tileMode -cyanogenmod.app.CMStatusBarManager: boolean localLOGV -cyanogenmod.profiles.RingModeSettings$1: java.lang.Object[] newArray(int) -com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context) -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: java.lang.reflect.Method findByIssuerAndSignatureMethod -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_NOTIFICATIONS -androidx.preference.R$style: int TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.R$animator: int mtrl_fab_transformation_sheet_expand_spec -cyanogenmod.app.LiveLockScreenInfo$1: cyanogenmod.app.LiveLockScreenInfo[] newArray(int) -com.github.rahatarmanahmed.cpv.CircularProgressView: float maxProgress -androidx.preference.R$styleable: int AppCompatTheme_actionBarSize -androidx.preference.R$id: int accessibility_custom_action_7 -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue getOrCreateQueue() -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: long serialVersionUID -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String getCaiyun() -wangdaye.com.geometricweather.R$id: int grassTitle -com.google.android.material.internal.FlowLayout: int getLineSpacing() -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_48dp -okhttp3.internal.http2.Hpack$Reader -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature RealFeelTemperature -wangdaye.com.geometricweather.R$id: int star_2 -wangdaye.com.geometricweather.R$id: int bottomBar -wangdaye.com.geometricweather.R$styleable: int[] SwitchMaterial -androidx.preference.R$attr: int buttonTintMode -com.xw.repo.bubbleseekbar.R$styleable: int[] CompoundButton -com.xw.repo.bubbleseekbar.R$attr: int tooltipForegroundColor -com.google.android.material.R$color: int background_material_light -wangdaye.com.geometricweather.db.entities.MinutelyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -com.google.android.material.slider.BaseSlider$SliderState: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$attr: int layout_constraintLeft_toRightOf -cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() -wangdaye.com.geometricweather.R$id: int item_icon_provider_title -androidx.vectordrawable.R$id: int accessibility_custom_action_5 -androidx.vectordrawable.R$dimen -cyanogenmod.power.PerformanceManager: int[] POSSIBLE_POWER_PROFILES -wangdaye.com.geometricweather.R$dimen: int preference_seekbar_value_minWidth -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity -com.google.android.material.R$bool: int abc_config_actionMenuItemAllCaps -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onError(java.lang.Throwable) -com.google.android.material.R$layout: int select_dialog_multichoice_material -androidx.appcompat.R$attr: int actionModeCloseButtonStyle -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isBody -okhttp3.ConnectionPool: int idleConnectionCount() -androidx.lifecycle.SavedStateHandleController$1: androidx.savedstate.SavedStateRegistry val$registry -okhttp3.Cookie$Builder: okhttp3.Cookie build() -com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowRadius -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Button -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -cyanogenmod.weather.RequestInfo$1 -wangdaye.com.geometricweather.R$dimen: int abc_alert_dialog_button_dimen -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_2_30 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: AccuCurrentResult$Wind$Direction() -wangdaye.com.geometricweather.R$color: int abc_search_url_text_selected -androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_toId -com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_text_size -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabStyle -androidx.constraintlayout.widget.R$attr: int layout_goneMarginLeft -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.viewpager2.R$id: int tag_accessibility_heading -androidx.preference.R$drawable: int abc_list_selector_disabled_holo_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_75 -androidx.work.R$id: int actions -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ProgressBar -com.google.android.material.R$styleable: int ConstraintSet_flow_lastVerticalBias -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit[] values() -cyanogenmod.weather.WeatherInfo -com.google.android.material.tabs.TabLayout: void addOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) -io.reactivex.exceptions.CompositeException: java.lang.String message -androidx.hilt.R$styleable: int GradientColor_android_startY -androidx.hilt.lifecycle.R$id: int chronometer -james.adaptiveicon.R$dimen: int abc_dropdownitem_icon_width -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter -cyanogenmod.providers.CMSettings$Global: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) -wangdaye.com.geometricweather.R$styleable: int ArcProgress_max -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: cyanogenmod.app.CustomTileListenerService this$0 -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer realFeelTemperature -androidx.preference.R$id: int dialog_button -androidx.activity.R$drawable: int notification_action_background -io.reactivex.subjects.PublishSubject$PublishDisposable: io.reactivex.Observer downstream -retrofit2.Retrofit: retrofit2.Converter stringConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit getInstance(java.lang.String) -cyanogenmod.app.ThemeVersion$ComponentVersion: int minVersion -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date moonsetTime -io.reactivex.Observable: io.reactivex.Observable concatDelayError(java.lang.Iterable) -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean isDaylight() -androidx.vectordrawable.R$id: int async -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int pm25 -com.xw.repo.bubbleseekbar.R$drawable: int abc_tab_indicator_material -io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.MaybeSource) -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: boolean isDisposed() -androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.R$drawable: int weather_haze -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeMinTextSize -com.google.android.material.R$string: int mtrl_picker_out_of_range -androidx.cardview.R$style: int Base_CardView -wangdaye.com.geometricweather.R$style: int Theme_Design_Light_NoActionBar -androidx.work.R$drawable: int notification_bg_normal_pressed -okhttp3.internal.ws.RealWebSocket: void loopReader() -com.turingtechnologies.materialscrollbar.R$id: int center -com.tencent.bugly.crashreport.common.info.a: java.lang.Object az -androidx.constraintlayout.widget.R$id: int action_image -com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context) -com.google.android.material.R$layout: int mtrl_picker_text_input_date -com.google.android.material.R$attr: int suggestionRowLayout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWeatherEnd(java.lang.String) -okio.BufferedSink: okio.BufferedSink writeShort(int) -okhttp3.OkHttpClient$Builder: java.util.List protocols -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onComplete() -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Large -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property CityId -com.tencent.bugly.crashreport.crash.CrashDetailBean: int describeContents() -okhttp3.logging.HttpLoggingInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -wangdaye.com.geometricweather.R$id: int cpv_hex -androidx.hilt.lifecycle.R$styleable: int FragmentContainerView_android_tag -io.reactivex.internal.functions.Functions$HashSetCallable -okhttp3.internal.connection.RouteSelector: int nextProxyIndex -wangdaye.com.geometricweather.R$array: int weather_sources -wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_android_foregroundGravity -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_toTopOf -androidx.appcompat.R$id: int accessibility_custom_action_3 -okio.Buffer: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) -com.google.android.material.R$attr: int expandedTitleTextAppearance -androidx.constraintlayout.widget.R$styleable: int SearchView_voiceIcon -com.amap.api.fence.GeoFence: android.app.PendingIntent getPendingIntent() -com.google.android.material.R$style: int Theme_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$string: int content_des_drag_flag -cyanogenmod.app.IProfileManager: android.app.NotificationGroup getNotificationGroup(android.os.ParcelUuid) -com.google.android.material.R$styleable: int Chip_checkedIconVisible -androidx.lifecycle.ClassesInfoCache: java.lang.reflect.Method[] getDeclaredMethods(java.lang.Class) -android.didikee.donate.R$styleable: int AlertDialog_listLayout -james.adaptiveicon.R$styleable: int AlertDialog_singleChoiceItemLayout -androidx.hilt.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig minutelyEntityDaoConfig -com.google.android.material.R$id: int scrollIndicatorUp -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motionTarget -cyanogenmod.externalviews.IExternalViewProvider: void onStart() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf -com.turingtechnologies.materialscrollbar.R$styleable: int[] ButtonBarLayout -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_Solid -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEV_FORCE_SHOW_NAVBAR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getLocationKey() -james.adaptiveicon.R$color: int highlighted_text_material_light -androidx.preference.R$attr: int searchIcon -androidx.preference.R$drawable: int abc_ic_ab_back_material -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String province -cyanogenmod.providers.CMSettings$CMSettingNotFoundException: CMSettings$CMSettingNotFoundException(java.lang.String) -androidx.customview.R$styleable: int GradientColor_android_endY -androidx.appcompat.R$drawable: int abc_ic_star_black_36dp -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification -cyanogenmod.providers.CMSettings$System: java.lang.String USE_EDGE_SERVICE_FOR_GESTURES -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusTopStart -wangdaye.com.geometricweather.R$string: int settings_notification_background_off -com.amap.api.location.AMapLocation: java.lang.String getBuildingId() -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_height_major -okhttp3.internal.cache2.Relay: boolean complete -androidx.preference.R$color: int primary_material_dark -io.reactivex.exceptions.CompositeException: java.util.List getExceptions() -com.jaredrummler.android.colorpicker.R$attr: int colorPrimaryDark -com.google.android.material.R$id: int mtrl_picker_header_toggle -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$color: int design_default_color_primary_dark -okhttp3.internal.connection.StreamAllocation: void acquire(okhttp3.internal.connection.RealConnection,boolean) -okhttp3.Address: java.util.List connectionSpecs -cyanogenmod.weather.CMWeatherManager$2: CMWeatherManager$2(cyanogenmod.weather.CMWeatherManager) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias -androidx.work.R$style: int TextAppearance_Compat_Notification -androidx.appcompat.R$styleable: int SwitchCompat_android_textOn -wangdaye.com.geometricweather.R$id: int item_about_library_title -wangdaye.com.geometricweather.R$id: int transparency_text -cyanogenmod.app.CMContextConstants: java.lang.String CM_PARTNER_INTERFACE -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.google.android.material.R$styleable: int Layout_layout_constraintEnd_toEndOf -androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontVariationSettings -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_SPEED -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: java.lang.String English -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin -androidx.preference.R$style: int Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$styleable: int Layout_android_orientation -androidx.coordinatorlayout.R$id: int accessibility_custom_action_6 -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int HIGH_NOTIFICATION_STATE -james.adaptiveicon.R$attr: int navigationIcon -androidx.constraintlayout.widget.R$styleable: int MockView_mock_label -androidx.lifecycle.EmptyActivityLifecycleCallbacks -okio.Okio$1: java.io.OutputStream val$out -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderPackage -retrofit2.internal.EverythingIsNonNull -wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_selected -wangdaye.com.geometricweather.R$color: int colorLevel_3 -androidx.lifecycle.ProcessLifecycleOwner: android.os.Handler mHandler -com.tencent.bugly.proguard.j: void a(byte,int) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Large -cyanogenmod.profiles.BrightnessSettings$1 -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime realtime -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitation(java.lang.Float) -com.google.android.material.chip.Chip: void setMaxWidth(int) -androidx.constraintlayout.widget.R$attr: int spinnerDropDownItemStyle -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_sun -wangdaye.com.geometricweather.R$string: int resident_location -cyanogenmod.themes.IThemeService$Stub$Proxy: void rebuildResourceCache() -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_visible -wangdaye.com.geometricweather.R$string: int key_week_icon_mode -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_3 -com.google.android.material.R$id: int submit_area -androidx.preference.R$layout: int preference_widget_switch -com.amap.api.fence.GeoFence: java.lang.String getFenceId() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_21 -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf -james.adaptiveicon.R$id: int edit_query -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onError(java.lang.Throwable) -com.google.android.material.R$attr: int menu -com.xw.repo.bubbleseekbar.R$layout: int abc_expanded_menu_layout -com.turingtechnologies.materialscrollbar.R$layout: int design_layout_snackbar_include -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense -okhttp3.internal.platform.ConscryptPlatform: ConscryptPlatform() -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context) -wangdaye.com.geometricweather.common.basic.models.weather.Daily: Daily(java.util.Date,long,wangdaye.com.geometricweather.common.basic.models.weather.HalfDay,wangdaye.com.geometricweather.common.basic.models.weather.HalfDay,wangdaye.com.geometricweather.common.basic.models.weather.Astro,wangdaye.com.geometricweather.common.basic.models.weather.Astro,wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase,wangdaye.com.geometricweather.common.basic.models.weather.AirQuality,wangdaye.com.geometricweather.common.basic.models.weather.Pollen,wangdaye.com.geometricweather.common.basic.models.weather.UV,float) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric Metric -james.adaptiveicon.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -com.turingtechnologies.materialscrollbar.R$attr: int background -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_to_on_mtrl_000 -androidx.lifecycle.ViewModelProviders$DefaultFactory: ViewModelProviders$DefaultFactory(android.app.Application) -androidx.constraintlayout.widget.R$styleable: int MenuItem_contentDescription -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerId -com.google.android.material.R$styleable: int SearchView_defaultQueryHint -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarPositiveButtonStyle -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetEnd -android.didikee.donate.R$drawable: int abc_btn_check_to_on_mtrl_000 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.util.List value -androidx.preference.R$style: int TextAppearance_AppCompat_Medium_Inverse -com.tencent.bugly.proguard.z: java.lang.String b(byte[]) -cyanogenmod.hardware.CMHardwareManager: int getVibratorWarningIntensity() -wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_dark -cyanogenmod.app.CustomTileListenerService: void removeCustomTile(java.lang.String,java.lang.String,int) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -okhttp3.internal.cache.DiskLruCache$Entry: java.lang.String key -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.disposables.Disposable upstream -com.google.android.material.circularreveal.CircularRevealRelativeLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -wangdaye.com.geometricweather.R$id: int indicator -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_lightContainer -androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -com.google.android.material.slider.Slider: void setTickInactiveTintList(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$attr: int contentInsetRight -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_EditText -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarItemBackground -androidx.preference.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$string: int abc_action_menu_overflow_description -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum -androidx.constraintlayout.widget.R$styleable: int[] MotionHelper -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_NoActionBar -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTypeface(android.graphics.Typeface) -cyanogenmod.profiles.LockSettings: void setValue(int) -androidx.hilt.work.R$styleable: int FontFamily_fontProviderPackage -com.google.android.material.R$anim: int abc_fade_out -com.xw.repo.bubbleseekbar.R$id: int expanded_menu -com.google.android.material.R$attr: int contentInsetStart -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginLeft -com.tencent.bugly.crashreport.crash.CrashDetailBean: int t -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long,boolean) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listMenuViewStyle -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$attr: int cpv_dialogTitle -james.adaptiveicon.R$layout: int abc_search_view -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void dispose() -com.google.android.material.R$integer: R$integer() -androidx.viewpager.R$id: int tag_unhandled_key_listeners -io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Object call() -james.adaptiveicon.R$styleable: int AppCompatTheme_actionButtonStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowMinWidthMinor -james.adaptiveicon.R$layout: int abc_expanded_menu_layout -androidx.constraintlayout.widget.Constraints -androidx.preference.R$id: int icon -wangdaye.com.geometricweather.R$layout: int test_design_checkbox -com.google.gson.JsonParseException: JsonParseException(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceBody1 -androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context,android.util.AttributeSet,int) -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_primary_mtrl_alpha -com.xw.repo.bubbleseekbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -androidx.constraintlayout.widget.R$id: int bottom -wangdaye.com.geometricweather.R$id: int item_weather_daily_uv_icon -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setCheckable(boolean) -androidx.constraintlayout.widget.R$id: int submit_area -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.constraintlayout.widget.R$styleable: int ActionBar_popupTheme -com.google.android.material.R$styleable: int MenuView_android_windowAnimationStyle -com.tencent.bugly.crashreport.crash.h5.b: java.lang.String a -androidx.transition.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WetBulbTemperature -okio.AsyncTimeout: long timeoutAt -androidx.constraintlayout.widget.R$attr: int layout_constraintDimensionRatio -androidx.recyclerview.R$layout: R$layout() -wangdaye.com.geometricweather.R$id: int icon_only -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid TotalLiquid -androidx.dynamicanimation.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getAbbreviation(android.content.Context) -com.google.android.material.R$layout: int mtrl_calendar_vertical -com.google.android.gms.common.zzj: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$attr: int minHideDelay -okhttp3.internal.http2.Http2Stream: void close(okhttp3.internal.http2.ErrorCode) -wangdaye.com.geometricweather.R$string: int material_timepicker_clock_mode_description -james.adaptiveicon.R$color: int switch_thumb_disabled_material_dark -okhttp3.internal.http2.Http2Writer: void headers(int,java.util.List) -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast -cyanogenmod.app.suggest.ApplicationSuggestion -com.google.android.material.R$styleable: int Constraint_android_translationY -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -com.google.android.material.R$attr: int valueTextColor -androidx.legacy.coreutils.R$layout: R$layout() -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String direction -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setPoint(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean) -wangdaye.com.geometricweather.R$attr: int bsb_seek_by_section -com.google.android.gms.base.R$drawable: int googleg_standard_color_18 -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) -com.jaredrummler.android.colorpicker.R$attr: int isPreferenceVisible -com.jaredrummler.android.colorpicker.R$layout: int abc_action_bar_title_item -androidx.cardview.widget.CardView: float getMaxCardElevation() -com.google.android.material.R$styleable: int Constraint_layout_editor_absoluteY -com.turingtechnologies.materialscrollbar.R$attr: int listDividerAlertDialog -com.google.android.material.R$styleable: int MaterialCalendarItem_itemStrokeColor -com.tencent.bugly.crashreport.common.info.a: java.util.Map ae -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getWeatherKind() -com.bumptech.glide.integration.okhttp.R$dimen: int notification_large_icon_width -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_disableDependentsState -wangdaye.com.geometricweather.R$string: int abc_menu_sym_shortcut_label -com.google.android.material.appbar.CollapsingToolbarLayout: void setTitleEnabled(boolean) -wangdaye.com.geometricweather.R$id: int save_non_transition_alpha -wangdaye.com.geometricweather.R$string: int go_to_set -okhttp3.CertificatePinner$Pin: okio.ByteString hash -retrofit2.Response: retrofit2.Response error(int,okhttp3.ResponseBody) -com.google.android.material.R$id: int snackbar_action -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setEnabled(boolean) -okhttp3.Cookie: java.util.regex.Pattern MONTH_PATTERN -com.turingtechnologies.materialscrollbar.R$id: int coordinator -androidx.swiperefreshlayout.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.R$attr: int checkedIconTint -com.google.android.material.R$attr: int chipSpacingHorizontal -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarStyle -com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_creator -cyanogenmod.providers.DataUsageContract -com.google.gson.internal.LazilyParsedNumber: java.lang.Object writeReplace() -androidx.appcompat.R$style: int Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.R$attr: int hideOnContentScroll -android.didikee.donate.R$styleable: int MenuItem_actionLayout -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog -androidx.appcompat.R$styleable: int DrawerArrowToggle_drawableSize -androidx.swiperefreshlayout.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.db.entities.WeatherEntity: void update() -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: java.lang.Object poll() -androidx.preference.R$color: int primary_text_default_material_dark -com.tencent.bugly.proguard.z: java.util.Map a(int,boolean) -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -com.google.android.material.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_MULTIPLE_LEDS_ENABLE -io.reactivex.internal.observers.InnerQueuedObserver: void onNext(java.lang.Object) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setScaleY(float) -wangdaye.com.geometricweather.R$attr: int actionModeShareDrawable -androidx.appcompat.widget.AppCompatTextView: void setBackgroundResource(int) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: android.os.IBinder asBinder() -com.google.android.material.R$styleable: int KeyTrigger_triggerReceiver -com.autonavi.aps.amapapi.model.AMapLocationServer: void d(java.lang.String) -androidx.appcompat.R$styleable: int AppCompatImageView_srcCompat -android.didikee.donate.R$styleable: int AppCompatImageView_android_src -okhttp3.internal.Util: java.nio.charset.Charset bomAwareCharset(okio.BufferedSource,java.nio.charset.Charset) -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection connection -wangdaye.com.geometricweather.R$id: int activity_widget_config_scrollView -okio.SegmentedByteString: int segment(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind Wind -com.google.android.material.R$styleable: int Toolbar_logoDescription -io.reactivex.internal.subscribers.StrictSubscriber: long serialVersionUID -androidx.constraintlayout.widget.R$attr: int titleMarginTop -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline2 -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_text_size -androidx.constraintlayout.motion.widget.MotionLayout -com.amap.api.location.AMapLocation: int getConScenario() -androidx.swiperefreshlayout.R$id: int action_container -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextColor -com.google.android.material.R$id: int triangle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean access$602(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_top -androidx.vectordrawable.R$styleable: int FontFamilyFont_fontStyle -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderQuery -com.google.android.material.bottomappbar.BottomAppBar: int getFabAlignmentMode() -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderFetchStrategy -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar -androidx.appcompat.R$color: int bright_foreground_material_dark -android.didikee.donate.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTINUATION -androidx.appcompat.widget.Toolbar: int getTitleMarginStart() -com.jaredrummler.android.colorpicker.R$styleable: int ButtonBarLayout_allowStacking -androidx.appcompat.R$string: int abc_searchview_description_search -wangdaye.com.geometricweather.R$attr: int materialCardViewStyle -androidx.loader.R$id: int line1 -androidx.activity.R$id: int normal -androidx.constraintlayout.widget.R$attr: int actionBarDivider -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Dialog_Bridge -androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$string: int hourly_overview -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox -android.didikee.donate.R$attr: int actionModeShareDrawable -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingRight -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listMenuViewStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date getFrom() -androidx.appcompat.widget.SearchView: void setOnQueryTextFocusChangeListener(android.view.View$OnFocusChangeListener) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindLevel -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_showDividers -wangdaye.com.geometricweather.R$color: int material_slider_active_tick_marks_color -okhttp3.Cache$2: boolean canRemove -androidx.constraintlayout.utils.widget.ImageFilterButton: void setSaturation(float) -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context) -wangdaye.com.geometricweather.R$id: int search_go_btn -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_maxWidth -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_toolbarId -cyanogenmod.app.Profile$TriggerState -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moldIndex -cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings(int,boolean) -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_keylines -com.google.android.material.R$attr: int paddingRightSystemWindowInsets -cyanogenmod.hardware.DisplayMode$1: cyanogenmod.hardware.DisplayMode createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$attr: int maxImageSize -androidx.hilt.lifecycle.R$anim -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_default -androidx.swiperefreshlayout.R$id: int italic -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_buttonPanelSideLayout -retrofit2.Response: retrofit2.Response success(java.lang.Object) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver inner -com.amap.api.location.AMapLocation: void setPoiName(java.lang.String) -james.adaptiveicon.R$styleable: int MenuGroup_android_checkableBehavior -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -android.didikee.donate.R$attr: int itemPadding -com.google.android.material.R$id: int mtrl_internal_children_alpha_tag -android.didikee.donate.R$style: int Theme_AppCompat -androidx.hilt.work.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setStatus(int) -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_MediumComponent -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getThunderstormPrecipitation() -androidx.cardview.R$styleable: int CardView_contentPaddingTop -com.jaredrummler.android.colorpicker.R$id: int spacer -wangdaye.com.geometricweather.R$string: int wind_9 -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_color -com.google.android.material.R$styleable: int FontFamilyFont_android_font -com.google.android.material.R$string: int material_minute_selection -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCustomSize(int) -com.google.android.material.textfield.TextInputLayout: void setEndIconOnClickListener(android.view.View$OnClickListener) -androidx.legacy.coreutils.R$style: int Widget_Compat_NotificationActionContainer -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean) -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_keyline -com.bumptech.glide.load.engine.GlideException: java.lang.String detailMessage -androidx.lifecycle.extensions.R$attr: int fontProviderFetchStrategy -com.google.android.material.R$string: int abc_action_mode_done -androidx.preference.R$styleable: int PreferenceTheme_seekBarPreferenceStyle -io.reactivex.Observable: io.reactivex.Maybe elementAt(long) -com.google.android.material.R$styleable: int Chip_chipEndPadding -wangdaye.com.geometricweather.R$layout: int abc_popup_menu_header_item_layout -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Title -okhttp3.Challenge: java.nio.charset.Charset charset() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String ShortPhrase -androidx.swiperefreshlayout.R$attr: int alpha -androidx.vectordrawable.animated.R$layout: int notification_action -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogMessage -retrofit2.Response: boolean isSuccessful() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_101 -com.google.android.material.R$attr: int reverseLayout -wangdaye.com.geometricweather.R$styleable: int ButtonBarLayout_allowStacking -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.ICMWeatherManager getService() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getDatetime() -com.google.android.material.R$attr: int flow_horizontalStyle -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: boolean isDisposed() -com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -wangdaye.com.geometricweather.R$styleable: int Preference_android_icon -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setThunderstormPrecipitation(java.lang.Float) -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter endObject() -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_second_track_color -okhttp3.internal.connection.ConnectInterceptor: ConnectInterceptor(okhttp3.OkHttpClient) -wangdaye.com.geometricweather.R$style: int Theme_Design_Light_BottomSheetDialog -androidx.appcompat.R$attr: int actionModeCutDrawable -wangdaye.com.geometricweather.R$drawable: int notif_temp_37 -wangdaye.com.geometricweather.background.polling.permanent.observer.FakeForegroundService: FakeForegroundService() -androidx.preference.R$attr: int entryValues -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_currentPageIndicatorColor -android.didikee.donate.R$style: int Widget_AppCompat_ActionMode -wangdaye.com.geometricweather.R$id: int widget_week_week_5 -com.tencent.bugly.crashreport.a -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentListStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindDirection(java.lang.String) -com.google.android.material.R$drawable: int material_ic_clear_black_24dp -com.google.android.material.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean done -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius -com.turingtechnologies.materialscrollbar.R$drawable: int abc_item_background_holo_light -io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Runnable runnable -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog -okhttp3.HttpUrl: int port() -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_THEME_COMPONENTS -com.google.android.material.R$styleable: int AppCompatTextHelper_android_textAppearance -retrofit2.HttpException: retrofit2.Response response -com.xw.repo.bubbleseekbar.R$string: int abc_menu_ctrl_shortcut_label -wangdaye.com.geometricweather.R$styleable: int[] MenuGroup -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginBottom -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActivityChooserView -com.google.android.material.R$id: int material_hour_text_input -com.github.rahatarmanahmed.cpv.CircularProgressView$3: void onAnimationUpdate(android.animation.ValueAnimator) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -com.tencent.bugly.proguard.c: byte[] a() -okhttp3.internal.cache.DiskLruCache$Editor: boolean[] written -retrofit2.ParameterHandler$1: void apply(retrofit2.RequestBuilder,java.lang.Iterable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial Imperial -com.google.android.material.imageview.ShapeableImageView: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -com.google.gson.stream.JsonWriter: void setIndent(java.lang.String) -androidx.lifecycle.ViewModelStore: java.util.Set keys() -com.google.android.material.card.MaterialCardView: android.graphics.RectF getBoundsAsRectF() -okhttp3.HttpUrl: int port -wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_checkedButton -androidx.drawerlayout.R$dimen: int notification_small_icon_background_padding -android.didikee.donate.R$drawable: int abc_switch_thumb_material -com.bumptech.glide.integration.okhttp.R$dimen: int notification_action_text_size -okhttp3.internal.cache.DiskLruCache$Entry -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.AndroidPlatform$CloseGuard closeGuard -androidx.hilt.lifecycle.R$id: int normal -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_enabled -com.google.android.material.bottomnavigation.BottomNavigationPresenter$SavedState -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionLayout -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded -androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.FragmentActivity,androidx.lifecycle.ViewModelProvider$Factory) -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_searchIcon -cyanogenmod.weather.ICMWeatherManager: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) -androidx.appcompat.R$style: int ThemeOverlay_AppCompat -com.amap.api.location.AMapLocation: boolean isMock() -wangdaye.com.geometricweather.R$string: int material_hour_selection -androidx.preference.R$style: int PreferenceFragmentList_Material -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_viewInflaterClass -okhttp3.internal.http2.Huffman$Node: int terminalBits -androidx.constraintlayout.widget.R$color: int androidx_core_secondary_text_default_material_light -james.adaptiveicon.R$color: int material_grey_850 -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchMinWidth -com.tencent.bugly.proguard.aj: void a(java.lang.StringBuilder,int) -com.google.android.material.chip.Chip: void setIconStartPaddingResource(int) -com.google.android.material.R$styleable: int ActionBar_progressBarPadding -androidx.preference.R$styleable: int Preference_android_title -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX -androidx.preference.R$anim: int abc_slide_out_bottom -cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.ICMStatusBarManager mStatusBarService -androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$attr: int hintAnimationEnabled -androidx.lifecycle.LifecycleService: void onStart(android.content.Intent,int) -okhttp3.HttpUrl: java.lang.String QUERY_ENCODE_SET -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int OTHER_STATE_CONSUMED_OR_EMPTY -com.tencent.bugly.proguard.s: byte[] b(java.net.HttpURLConnection) -androidx.preference.R$attr: int alertDialogButtonGroupStyle -androidx.appcompat.R$drawable: int abc_btn_default_mtrl_shape -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizePresetSizes -okhttp3.internal.connection.RealConnection: boolean isEligible(okhttp3.Address,okhttp3.Route) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: java.lang.Float windChill -com.google.android.material.textfield.TextInputLayout: void setErrorIconDrawable(int) -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider BAIDU -androidx.appcompat.R$id: int right_icon -androidx.transition.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onCross -io.reactivex.Observable: io.reactivex.Observable skip(long,java.util.concurrent.TimeUnit) -androidx.preference.R$styleable: int PreferenceTheme_preferenceScreenStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton -androidx.swiperefreshlayout.R$id -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetEndWithActions -androidx.constraintlayout.widget.R$dimen: int compat_button_inset_horizontal_material -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_exitFadeDuration -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_toTopOf -androidx.preference.R$id: int accessibility_custom_action_17 -cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.ICMStatusBarManager getService() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -androidx.hilt.R$drawable: int notification_icon_background -com.google.android.material.circularreveal.CircularRevealLinearLayout: CircularRevealLinearLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: MfCurrentResult() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf -okhttp3.internal.http2.Http2Connection$2: okhttp3.internal.http2.Http2Connection this$0 -android.didikee.donate.R$styleable: int MenuItem_android_icon -androidx.appcompat.R$styleable: int[] MenuView -com.google.android.material.R$attr: int onCross -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: ObservableWindow$WindowExactObserver(io.reactivex.Observer,long,int) -james.adaptiveicon.R$drawable: int abc_list_selector_holo_dark -androidx.appcompat.R$attr: int actionModeSplitBackground -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_Underlined -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getCollapseContentDescription() -androidx.core.R$id: int action_text -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleTextAppearance -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void cancelLiveLockScreen(java.lang.String,int,int) -androidx.appcompat.widget.ActionBarContainer: void setVisibility(int) -androidx.preference.R$styleable: int ActionBar_hideOnContentScroll -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void dispose() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconCheckable -androidx.activity.R$style: int TextAppearance_Compat_Notification_Title -androidx.legacy.coreutils.R$attr: int ttcIndex -androidx.core.R$styleable: int GradientColor_android_endX -cyanogenmod.weather.WeatherInfo$DayForecast -androidx.vectordrawable.R$styleable: int ColorStateListItem_android_alpha -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startColor -androidx.preference.R$attr: int actionLayout -androidx.appcompat.R$styleable: int AppCompatTextView_drawableTopCompat -cyanogenmod.themes.IThemeChangeListener$Stub: IThemeChangeListener$Stub() -wangdaye.com.geometricweather.R$dimen: int compat_button_inset_vertical_material -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: boolean isAsync -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_VALUE -cyanogenmod.app.Profile: java.util.Map profileGroups -wangdaye.com.geometricweather.R$attr: int navigationIconColor -com.google.android.material.R$layout: int test_toolbar -okhttp3.internal.http1.Http1Codec$ChunkedSink: boolean closed -okhttp3.internal.http.RetryAndFollowUpInterceptor: void setCallStackTrace(java.lang.Object) -cyanogenmod.externalviews.KeyguardExternalView$8: cyanogenmod.externalviews.KeyguardExternalView this$0 -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline4 -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Subhead -cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem(android.os.Parcel) -com.bumptech.glide.load.ImageHeaderParser$ImageType: boolean hasAlpha() -com.google.android.material.R$styleable: int KeyPosition_curveFit -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: AtmoAuraQAResult$Measure() -cyanogenmod.app.LiveLockScreenInfo -wangdaye.com.geometricweather.R$drawable: int notif_temp_55 -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_creator -okio.GzipSource: byte SECTION_DONE -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -androidx.fragment.R$style: int TextAppearance_Compat_Notification -com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableEndCompat -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_min -com.turingtechnologies.materialscrollbar.R$style: int Platform_V21_AppCompat_Light -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_NULL_SHA -okhttp3.internal.http2.Huffman$Node: Huffman$Node(int,int) -wangdaye.com.geometricweather.R$font: int google_sans -wangdaye.com.geometricweather.R$id: int textinput_suffix_text -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_creator -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String latitude -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCopyDrawable -wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity: WeekWidgetConfigActivity() -wangdaye.com.geometricweather.R$attr: int colorPrimaryVariant -com.google.android.material.circularreveal.CircularRevealRelativeLayout: CircularRevealRelativeLayout(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogCornerRadius -okhttp3.Headers$Builder: okhttp3.Headers$Builder addUnsafeNonAscii(java.lang.String,java.lang.String) -com.google.android.material.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -androidx.lifecycle.ProcessLifecycleOwner -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_item_icon_padding -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWetBulbTemperature -com.google.android.material.R$color: int error_color_material_light -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_LIVE_LOCK_SCREEN -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setSubState(int,boolean) -androidx.lifecycle.LifecycleRegistry: void backwardPass(androidx.lifecycle.LifecycleOwner) -wangdaye.com.geometricweather.R$attr: int tooltipForegroundColor -androidx.appcompat.R$id: int scrollIndicatorUp -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String IconPhrase -okio.Pipe: okio.Source source() -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide -james.adaptiveicon.R$dimen: int abc_disabled_alpha_material_light -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogMessage -james.adaptiveicon.R$attr: int titleTextAppearance -wangdaye.com.geometricweather.R$id: int tag_icon_night -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum Minimum -cyanogenmod.profiles.AirplaneModeSettings: cyanogenmod.profiles.AirplaneModeSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowMinWidthMajor -android.didikee.donate.R$anim: R$anim() -androidx.activity.R$id: int info -com.google.android.material.tabs.TabItem: TabItem(android.content.Context) -okhttp3.Cookie$Builder: java.lang.String name -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: double Value -okio.BufferedSink: okio.BufferedSink writeUtf8(java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int radioButtonStyle -androidx.cardview.R$attr: int cardElevation -androidx.lifecycle.extensions.R$drawable: int notification_template_icon_bg -androidx.lifecycle.extensions.R$styleable: int FragmentContainerView_android_tag -com.tencent.bugly.crashreport.common.info.a: java.lang.Object au -wangdaye.com.geometricweather.R$id: int transitionToEnd -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstHorizontalBias -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: int UnitType -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarItemBackground -androidx.fragment.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.R$string: int feedback_hide_lunar -com.amap.api.location.AMapLocation: void setAoiName(java.lang.String) -com.google.android.material.button.MaterialButton: int getTextHeight() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int COLD -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_EditText -okhttp3.Address: okhttp3.HttpUrl url -wangdaye.com.geometricweather.R$styleable: int Toolbar_logo -com.google.android.material.R$attr: int cornerSizeTopRight -androidx.constraintlayout.widget.R$id: int screen -androidx.constraintlayout.widget.R$styleable: int MenuItem_actionProviderClass -cyanogenmod.providers.CMSettings$2 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_off_mtrl_alpha -okhttp3.internal.http2.Hpack: java.util.Map nameToFirstIndex() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_list_item_padding_horizontal_material -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property AqiIndex -com.turingtechnologies.materialscrollbar.R$attr: int paddingEnd -com.google.android.material.R$color: int abc_primary_text_material_dark -com.turingtechnologies.materialscrollbar.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.settings.dialogs.MinimalIconDialog -okio.Buffer$2: int read() -wangdaye.com.geometricweather.R$drawable: int clock_minute_light -james.adaptiveicon.R$styleable: int[] DrawerArrowToggle -okhttp3.internal.cache.DiskLruCache: void checkNotClosed() -androidx.transition.R$layout: R$layout() -wangdaye.com.geometricweather.R$anim: int abc_fade_in -okio.ByteString: okio.ByteString hmacSha512(okio.ByteString) -androidx.coordinatorlayout.R$id: int notification_background -androidx.preference.R$styleable: int SeekBarPreference_android_layout -okhttp3.ConnectionPool: java.util.Deque connections -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -retrofit2.HttpException -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle -cyanogenmod.themes.ThemeManager$2: ThemeManager$2(cyanogenmod.themes.ThemeManager) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableBottomCompat -com.jaredrummler.android.colorpicker.R$attr: int windowActionModeOverlay -androidx.hilt.work.R$attr: int alpha -com.bumptech.glide.integration.okhttp.R$attr: R$attr() -cyanogenmod.app.StatusBarPanelCustomTile$1: cyanogenmod.app.StatusBarPanelCustomTile createFromParcel(android.os.Parcel) -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertInTxArray -com.google.android.material.R$style: int Base_Widget_MaterialComponents_Slider -com.xw.repo.bubbleseekbar.R$id: int blocking -androidx.hilt.R$attr: int fontVariationSettings -cyanogenmod.weather.WeatherInfo$Builder: WeatherInfo$Builder(java.lang.String,double,int) -androidx.constraintlayout.widget.R$attr: int panelMenuListWidth -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -wangdaye.com.geometricweather.R$styleable: int ArcProgress_text_color -android.didikee.donate.R$attr: int imageButtonStyle -androidx.appcompat.R$styleable: int AppCompatImageView_tint -com.amap.api.location.AMapLocation: void setSatellites(int) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_enter -wangdaye.com.geometricweather.R$string: int wet_bulb_temperature -androidx.preference.R$id: int icon_frame -androidx.preference.R$styleable: int Preference_title -androidx.loader.R$id: int tag_transition_group -com.amap.api.location.AMapLocation: java.lang.String getAddress() -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void setCancellable(io.reactivex.functions.Cancellable) -okio.BufferedSource: long readLong() -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.disposables.CompositeDisposable set -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List minutelyEntityList -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Subtitle2 -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Date -com.google.android.material.R$styleable: int[] ConstraintSet -cyanogenmod.weather.WeatherInfo$1: cyanogenmod.weather.WeatherInfo[] newArray(int) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String LocalizedType -androidx.viewpager.R$styleable: int FontFamilyFont_android_font -cyanogenmod.weather.util.WeatherUtils: double fahrenheitToCelsius(double) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.disposables.CompositeDisposable observers -wangdaye.com.geometricweather.R$id: int radio -com.tencent.bugly.proguard.z: java.lang.String a(java.util.Date) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onBouncerShowing(boolean) -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_altSrc -androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -androidx.customview.R$attr: int fontStyle -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintStart_toStartOf -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_fontFamily -com.tencent.bugly.crashreport.crash.b: android.content.ContentValues e(com.tencent.bugly.crashreport.crash.CrashDetailBean) -androidx.preference.R$styleable: int ActionBar_logo -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setNumberString(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_toRightOf -androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_height_minor -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView getTrendItemView() -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int UNKNOWN -androidx.appcompat.widget.SearchView: SearchView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) -com.google.android.material.R$styleable: int Chip_hideMotionSpec -com.google.android.material.R$id: int mtrl_picker_fullscreen -com.google.android.material.R$id: int search_close_btn -androidx.constraintlayout.widget.R$dimen: int abc_button_padding_horizontal_material -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ProgressBar_Horizontal -james.adaptiveicon.R$attr: int tickMarkTint -com.tencent.bugly.proguard.k: k() -androidx.vectordrawable.animated.R$drawable -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_creator -okhttp3.internal.http2.Settings: int getMaxFrameSize(int) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -retrofit2.Retrofit$Builder: retrofit2.Retrofit build() -com.google.android.gms.common.api.internal.zaab: void unregisterConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) -com.turingtechnologies.materialscrollbar.R$color: int error_color_material_dark -okio.HashingSink: okio.HashingSink hmacSha512(okio.Sink,okio.ByteString) -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_elevation -cyanogenmod.alarmclock.ClockContract$AlarmsColumns -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService: ForegroundNormalUpdateService() -androidx.viewpager.R$string -wangdaye.com.geometricweather.R$attr: int actionModeCloseDrawable -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -retrofit2.Retrofit: java.util.List callAdapterFactories -wangdaye.com.geometricweather.R$string: int key_notification_can_be_cleared -okio.AsyncTimeout$2: AsyncTimeout$2(okio.AsyncTimeout,okio.Source) -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_OVERLAYS -okhttp3.internal.platform.AndroidPlatform: boolean isCleartextTrafficPermitted(java.lang.String) -com.tencent.bugly.proguard.u: void a(com.tencent.bugly.proguard.u,java.lang.Runnable,long) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getMoldIndex() -wangdaye.com.geometricweather.R$attr: int popupTheme -cyanogenmod.power.PerformanceManager: int PROFILE_POWER_SAVE -cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: CMSettings$InclusiveIntegerRangeValidator(int,int) -com.google.android.material.slider.RangeSlider: void setTrackTintList(android.content.res.ColorStateList) -androidx.hilt.R$color -androidx.preference.R$styleable: int Toolbar_titleMargin -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: ILiveLockScreenManagerProvider$Stub$Proxy(android.os.IBinder) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver -wangdaye.com.geometricweather.R$anim: int fragment_open_enter -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge -james.adaptiveicon.R$attr: int backgroundTint -androidx.core.R$id: int accessibility_custom_action_29 -androidx.recyclerview.widget.GridLayoutManager -wangdaye.com.geometricweather.R$id: int message -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setVibratorIntensity(int) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setCo(java.lang.Float) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginRight -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_tagView -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: long serialVersionUID -james.adaptiveicon.R$styleable: int TextAppearance_fontFamily -wangdaye.com.geometricweather.background.receiver.widget.WidgetMultiCityProvider: WidgetMultiCityProvider() -wangdaye.com.geometricweather.R$styleable: int MaterialButton_backgroundTintMode -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: java.util.List history -com.google.android.material.button.MaterialButtonToggleGroup: java.util.List getCheckedButtonIds() -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_fabCustomSize -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void setResource(io.reactivex.disposables.Disposable) -androidx.appcompat.R$layout: int select_dialog_singlechoice_material -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -androidx.appcompat.R$color: int material_grey_900 -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowDy -androidx.lifecycle.LiveData: java.lang.Object NOT_SET -com.xw.repo.bubbleseekbar.R$drawable: int tooltip_frame_dark -wangdaye.com.geometricweather.R$style: int Preference_SwitchPreference_Material -androidx.preference.R$attr: R$attr() -org.greenrobot.greendao.AbstractDao: java.lang.String[] getAllColumns() -androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat_Light -androidx.work.BackoffPolicy: androidx.work.BackoffPolicy EXPONENTIAL -androidx.viewpager2.R$styleable: int[] FontFamilyFont -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Tab -com.jaredrummler.android.colorpicker.R$drawable: int abc_ab_share_pack_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$attr: int alertDialogTheme -okio.GzipSource: okio.BufferedSource source -androidx.constraintlayout.widget.R$styleable: int ActionMode_background -androidx.appcompat.widget.AppCompatImageView: android.content.res.ColorStateList getSupportBackgroundTintList() -androidx.recyclerview.R$attr: int ttcIndex -okio.RealBufferedSink: okio.Buffer buffer -androidx.core.graphics.drawable.IconCompatParcelizer -james.adaptiveicon.R$styleable: int MenuItem_android_id -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display3 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeBackground -com.google.android.material.R$color: int design_default_color_on_error -android.didikee.donate.R$dimen: int disabled_alpha_material_light -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_track_mtrl_alpha -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogCenterButtons -com.google.android.material.R$attr: int iconGravity -com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat_Dark -com.google.gson.stream.JsonScope: int DANGLING_NAME -okio.Buffer: okio.Buffer readFrom(java.io.InputStream) -retrofit2.Utils: void throwIfFatal(java.lang.Throwable) -android.didikee.donate.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -androidx.vectordrawable.R$id: int accessibility_custom_action_9 -androidx.preference.R$attr: int splitTrack -com.jaredrummler.android.colorpicker.R$attr: int backgroundSplit -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose Transport -cyanogenmod.themes.ThemeManager$1$2: boolean val$isSuccess -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_ttcIndex -com.turingtechnologies.materialscrollbar.R$color: int cardview_light_background -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_dialog_btn_min_width -wangdaye.com.geometricweather.R$attr: int actionModeWebSearchDrawable -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.lang.String unit -androidx.dynamicanimation.R$dimen: int notification_large_icon_height -cyanogenmod.externalviews.KeyguardExternalView$2: boolean requestDismissAndStartActivity(android.content.Intent) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getMinutelyEntityList() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherPhase -androidx.recyclerview.R$attr: R$attr() -wangdaye.com.geometricweather.db.entities.DailyEntity: long getTime() -com.github.rahatarmanahmed.cpv.CircularProgressView: void setProgress(float) -com.google.android.material.R$styleable: int KeyAttribute_android_rotationX -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_default_mtrl_alpha -okio.AsyncTimeout$1: okio.AsyncTimeout this$0 -wangdaye.com.geometricweather.R$id: int bottomRecyclerView -com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetLeft -wangdaye.com.geometricweather.R$string: int common_signin_button_text_long -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult -android.didikee.donate.R$styleable: int AppCompatTheme_dividerHorizontal -com.google.android.material.R$attr: int cardForegroundColor -androidx.appcompat.R$style: int Widget_AppCompat_SearchView_ActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_android_minWidth -wangdaye.com.geometricweather.R$layout: int material_clock_display -androidx.constraintlayout.widget.R$layout: int abc_screen_simple_overlay_action_mode -com.xw.repo.bubbleseekbar.R$attr: int controlBackground -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low_normal -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findAndroidPlatform() -james.adaptiveicon.R$attr: int alertDialogStyle -cyanogenmod.themes.IThemeService: void removeUpdates(cyanogenmod.themes.IThemeChangeListener) -com.turingtechnologies.materialscrollbar.R$styleable: R$styleable() -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_typeface -com.google.android.material.R$attr: int itemShapeInsetStart -com.google.android.material.R$layout: int test_toolbar_surface -androidx.preference.R$attr: int logo -androidx.transition.R$attr: int fontVariationSettings -androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_creator -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtendMotionSpec(com.google.android.material.animation.MotionSpec) -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_TEMPERATURE -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource LocalSource -io.reactivex.subjects.PublishSubject$PublishDisposable: PublishSubject$PublishDisposable(io.reactivex.Observer,io.reactivex.subjects.PublishSubject) -wangdaye.com.geometricweather.R$color: int material_on_surface_emphasis_high_type -com.amap.api.location.AMapLocationClientOption: void setOpenAlwaysScanWifi(boolean) -com.jaredrummler.android.colorpicker.R$attr: int dropdownListPreferredItemHeight -wangdaye.com.geometricweather.R$attr: int swipeRefreshLayoutProgressSpinnerBackgroundColor -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.DatabaseOpenHelper$EncryptedHelper checkEncryptedHelper() -com.google.android.material.chip.ChipGroup: void setChipSpacingHorizontal(int) -com.google.android.material.R$styleable: int ConstraintSet_android_layout_height -okio.AsyncTimeout: void timedOut() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display4 -retrofit2.OkHttpCall$1: retrofit2.Callback val$callback -com.google.android.material.R$attr: int triggerReceiver -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.constraintlayout.widget.R$layout: int select_dialog_multichoice_material -android.didikee.donate.R$styleable: int SearchView_suggestionRowLayout -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_summaryOn -androidx.legacy.coreutils.R$id: int async -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.MinutelyEntity,long) -cyanogenmod.profiles.AirplaneModeSettings: int describeContents() -androidx.constraintlayout.widget.R$styleable: int MockView_mock_labelColor -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_subtitle_top_margin_material -androidx.coordinatorlayout.R$id: int start -wangdaye.com.geometricweather.R$attr: int editTextStyle -com.tencent.bugly.crashreport.common.info.a: void b(boolean) -com.google.android.material.datepicker.MaterialDatePicker -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -wangdaye.com.geometricweather.db.entities.WeatherEntity: WeatherEntity(java.lang.Long,java.lang.String,java.lang.String,long,java.util.Date,long,java.util.Date,long,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.String,java.lang.String) -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: long serialVersionUID -com.google.android.material.chip.Chip: void setOnCloseIconClickListener(android.view.View$OnClickListener) -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_titleTextStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPm25(java.lang.Float) -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_range_start_hint -androidx.work.OverwritingInputMerger -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: long mRequested -com.google.android.material.R$style: int Theme_Design_BottomSheetDialog -com.tencent.bugly.crashreport.crash.b: void a(java.util.List,long,boolean,boolean,boolean) -com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.constraintlayout.widget.R$attr: int layout_constraintStart_toEndOf -com.tencent.bugly.proguard.v: java.lang.String a(java.lang.String) -com.tencent.bugly.crashreport.crash.jni.b: java.util.List a -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer windChillTemperature -com.turingtechnologies.materialscrollbar.R$attr: int reverseLayout -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setStatus(int) -androidx.preference.R$styleable: int TextAppearance_android_fontFamily -androidx.activity.R$styleable: int FontFamilyFont_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -androidx.core.R$id: int accessibility_custom_action_9 -androidx.hilt.R$id: int right_icon -wangdaye.com.geometricweather.R$styleable: int Toolbar_logoDescription -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItem -androidx.hilt.lifecycle.R$integer -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_android_checkable -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedQuery(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: java.lang.String English -androidx.recyclerview.R$styleable: int RecyclerView_stackFromEnd -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DialogWhenLarge -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_keyboardNavigationCluster -okhttp3.internal.ws.WebSocketReader: void readMessageFrame() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int BLOWING_SNOW -wangdaye.com.geometricweather.R$string: int precipitation_rainstorm -com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_material -androidx.appcompat.R$layout: int abc_action_bar_up_container -com.google.android.material.textfield.TextInputEditText -cyanogenmod.profiles.AirplaneModeSettings$1: AirplaneModeSettings$1() -androidx.transition.R$id: int parent_matrix -okhttp3.Request -android.didikee.donate.R$dimen: int notification_small_icon_size_as_large -androidx.appcompat.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.crashreport.common.strategy.a e -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_shapeAppearanceOverlay -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isIce() -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.disposables.Disposable upstream -com.bumptech.glide.R$attr: int layout_dodgeInsetEdges -androidx.preference.R$style: int Base_Widget_AppCompat_EditText -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitationProbability -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconGravity -cyanogenmod.app.CMStatusBarManager: void removeTileAsUser(java.lang.String,int,android.os.UserHandle) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature -okio.RealBufferedSource: byte readByte() -com.google.android.material.chip.ChipGroup: void setDividerDrawableHorizontal(android.graphics.drawable.Drawable) -com.tencent.bugly.proguard.k -james.adaptiveicon.R$dimen: int abc_action_button_min_height_material -androidx.appcompat.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_darkIcon -com.amap.api.location.AMapLocationClientOption: boolean isSensorEnable() -wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_android_lineHeight -okhttp3.Response: okhttp3.ResponseBody body -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber,java.util.concurrent.atomic.AtomicReference) -androidx.constraintlayout.widget.R$style: int Platform_V21_AppCompat -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_13 -androidx.preference.R$attr: int summary -com.bumptech.glide.integration.okhttp.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context) -android.didikee.donate.R$attr: int titleTextAppearance -com.tencent.bugly.crashreport.CrashReport: void startCrashReport() -com.google.android.material.R$bool -wangdaye.com.geometricweather.R$color: int switch_thumb_material_light -androidx.hilt.R$styleable: int FontFamily_fontProviderQuery -androidx.preference.R$styleable: int LinearLayoutCompat_showDividers -wangdaye.com.geometricweather.R$attr: int actionModeFindDrawable -okhttp3.Cookie: java.util.regex.Pattern YEAR_PATTERN -com.google.android.material.R$styleable: int SearchView_closeIcon -androidx.customview.R$id: int tag_unhandled_key_event_manager -cyanogenmod.weather.RequestInfo: int TYPE_LOOKUP_CITY_NAME_REQ -androidx.hilt.lifecycle.R$drawable -androidx.legacy.coreutils.R$dimen: int notification_media_narrow_margin -androidx.preference.R$id: int titleDividerNoCustom -androidx.appcompat.R$drawable: int abc_list_selector_holo_light -androidx.preference.R$attr: int singleLineTitle -androidx.recyclerview.widget.LinearLayoutManager$SavedState -cyanogenmod.power.PerformanceManager: void cpuBoost(int) -wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_android_color -com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getHideRatio() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -com.google.android.material.R$color: int mtrl_chip_surface_color -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableRight -okhttp3.ResponseBody$1: okhttp3.MediaType val$contentType -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean done -com.google.android.material.R$style: int Theme_AppCompat_Light_NoActionBar -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlHighlight -cyanogenmod.hardware.CMHardwareManager: int getDisplayGammaCalibrationMax() -com.google.android.material.R$attr: int customNavigationLayout -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver parent -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_title -com.tencent.bugly.crashreport.biz.b: java.lang.String a(java.lang.String,java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -cyanogenmod.app.Profile: cyanogenmod.profiles.BrightnessSettings getBrightness() -com.google.android.material.textfield.TextInputLayout: void setHelperTextEnabled(boolean) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) -cyanogenmod.weather.WeatherInfo$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.lifecycle.livedata.core.R: R() -com.google.android.material.R$attr: int searchIcon -okio.Buffer: int readInt() -androidx.lifecycle.extensions.R$id: int notification_main_column -androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingRight -androidx.lifecycle.extensions.R$id: int accessibility_action_clickable_span -com.xw.repo.bubbleseekbar.R$attr: int actionBarStyle -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_weightSum -com.turingtechnologies.materialscrollbar.R$attr: int collapseContentDescription -retrofit2.Platform: java.util.List defaultCallAdapterFactories(java.util.concurrent.Executor) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String Key -wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_lineHeight -james.adaptiveicon.R$color: int bright_foreground_inverse_material_light -com.google.android.material.R$styleable: int KeyPosition_framePosition -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DialogWhenLarge -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getPackage() -androidx.vectordrawable.R$drawable: int notification_bg -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startY -androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerX -androidx.lifecycle.ReportFragment$LifecycleCallbacks: ReportFragment$LifecycleCallbacks() -android.didikee.donate.R$attr: int actionModeSplitBackground -com.amap.api.location.AMapLocation: int getGpsAccuracyStatus() -james.adaptiveicon.R$styleable: int SearchView_android_imeOptions -com.turingtechnologies.materialscrollbar.R$attr: int fabCradleVerticalOffset -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton_CloseMode -androidx.lifecycle.DefaultLifecycleObserver: void onResume(androidx.lifecycle.LifecycleOwner) -androidx.preference.R$id: int right_side -wangdaye.com.geometricweather.R$styleable: int[] MaterialTextAppearance -cyanogenmod.media.MediaRecorder: java.lang.String EXTRA_CURRENT_PACKAGE_NAME -androidx.legacy.coreutils.R$dimen: int notification_top_pad_large_text -okhttp3.ConnectionSpec: void apply(javax.net.ssl.SSLSocket,boolean) -com.google.android.material.R$styleable: int NavigationView_itemShapeInsetTop -wangdaye.com.geometricweather.R$styleable: int NavigationView_menu -com.google.android.material.R$id: int image -com.turingtechnologies.materialscrollbar.R$attr: int singleSelection -com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context,android.util.AttributeSet) -io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$dimen: int abc_text_size_subtitle_material_toolbar -james.adaptiveicon.R$styleable: int TextAppearance_android_typeface -com.turingtechnologies.materialscrollbar.R$integer: int show_password_duration -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() -androidx.preference.R$drawable: int abc_text_select_handle_middle_mtrl_dark -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String cityId -androidx.constraintlayout.utils.widget.ImageFilterButton: float getWarmth() -okhttp3.OkHttpClient: okhttp3.Cache cache -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getTreeIndex() -com.turingtechnologies.materialscrollbar.R$drawable: int indicator_ltr -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,int) -okhttp3.Headers: java.util.Map toMultimap() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchPopulateAccessibilityEvent(android.view.accessibility.AccessibilityEvent) -androidx.appcompat.R$drawable: int abc_list_selector_background_transition_holo_light -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: WeatherProviderService$ServiceHandler(cyanogenmod.weatherservice.WeatherProviderService,android.os.Looper) -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: ObservableRetryWhen$RepeatWhenObserver(io.reactivex.Observer,io.reactivex.subjects.Subject,io.reactivex.ObservableSource) -io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,int) -com.xw.repo.bubbleseekbar.R$attr: int layout_anchor -androidx.constraintlayout.widget.R$id: int action_text -james.adaptiveicon.R$layout: int notification_template_part_time -okhttp3.OkHttpClient: java.util.List interceptors -cyanogenmod.profiles.BrightnessSettings: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ProgressBar -com.tencent.bugly.a: void onDbDowngrade(android.database.sqlite.SQLiteDatabase,int,int) -james.adaptiveicon.R$styleable: int AppCompatTheme_borderlessButtonStyle -okio.Buffer$1: Buffer$1(okio.Buffer) -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.lang.reflect.Method checkServerTrusted -okhttp3.CertificatePinner$Pin: CertificatePinner$Pin(java.lang.String,java.lang.String) -androidx.preference.R$string: int abc_searchview_description_search -cyanogenmod.app.Profile$ExpandedDesktopMode: Profile$ExpandedDesktopMode() -com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_inflatedId -androidx.hilt.R$id: int line3 -com.google.android.material.R$dimen: int design_appbar_elevation -okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache$Editor currentEditor -cyanogenmod.hardware.CMHardwareManager: int readPersistentInt(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int itemIconPadding -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableStartCompat -com.bumptech.glide.integration.okhttp.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: int unitArrayIndex -androidx.dynamicanimation.R$color: int ripple_material_light -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback(retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter,java.util.concurrent.CompletableFuture) -okhttp3.internal.http.RealResponseBody: okhttp3.MediaType contentType() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton -okhttp3.internal.http2.Hpack$Writer: int headerTableSizeSetting -io.reactivex.internal.subscriptions.SubscriptionArbiter: long serialVersionUID -io.reactivex.internal.observers.BlockingObserver: void onComplete() -androidx.recyclerview.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: double Value -androidx.appcompat.widget.AppCompatTextView: int getFirstBaselineToTopHeight() -androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Subtitle2 -wangdaye.com.geometricweather.R$attr: int listPreferredItemHeightLarge -com.amap.api.location.DPoint: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.R$layout: int design_navigation_item_subheader -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.R$id: int dialog_location_help_manageContainer -com.google.android.material.R$styleable: int Variant_region_heightLessThan -androidx.work.impl.workers.ConstraintTrackingWorker: ConstraintTrackingWorker(android.content.Context,androidx.work.WorkerParameters) -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: float unitFactor -com.google.android.material.R$attr: int actionModeSplitBackground -wangdaye.com.geometricweather.background.polling.basic.UpdateService: UpdateService() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginRight -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -androidx.appcompat.R$dimen: int notification_main_column_padding_top -androidx.vectordrawable.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.R$styleable: int[] MaterialCalendarItem -android.didikee.donate.R$style: int Theme_AppCompat_DayNight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours -io.reactivex.internal.util.AtomicThrowable -androidx.constraintlayout.widget.R$attr: int alertDialogButtonGroupStyle -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_setActiveProfile_0 -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int[] MaterialTextView -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderQuery -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Spinner_Underlined -androidx.loader.R$styleable -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -androidx.preference.R$drawable: int btn_checkbox_unchecked_mtrl -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -androidx.constraintlayout.widget.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -okhttp3.ResponseBody -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: java.util.concurrent.Executor callbackExecutor -com.google.android.material.R$styleable: int AppCompatTextView_drawableRightCompat -androidx.preference.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler e -com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -androidx.constraintlayout.widget.R$attr: int titleMargin -androidx.hilt.lifecycle.R$id: int line3 -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.internal.util.AtomicThrowable errors -okhttp3.internal.http2.ErrorCode: int httpCode -okhttp3.Cache: int VERSION -com.google.android.material.R$style: int TestStyleWithoutLineHeight -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListMenuView -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: io.reactivex.Observer observer -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableItem_android_drawable -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_orderInCategory -androidx.appcompat.R$styleable: int AlertDialog_buttonIconDimen -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState valueOf(java.lang.String) -okhttp3.internal.http2.Http2Stream$FramingSink: void close() -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_updatesContinuously -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_android_textAppearance -androidx.coordinatorlayout.R$dimen: int compat_notification_large_icon_max_width -io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function,boolean) -com.xw.repo.bubbleseekbar.R$string: int abc_action_bar_home_description -okhttp3.ConnectionSpec: boolean supportsTlsExtensions() -wangdaye.com.geometricweather.R$layout: int container_main_footer -okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String) -james.adaptiveicon.R$styleable: int FontFamily_fontProviderAuthority -io.reactivex.internal.operators.observable.ObserverResourceWrapper: long serialVersionUID -wangdaye.com.geometricweather.R$color: int colorTextDark -wangdaye.com.geometricweather.search.SearchActivityViewModel -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_descendantFocusability -io.reactivex.internal.disposables.DisposableHelper: boolean set(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -androidx.constraintlayout.widget.R$attr: int subtitleTextAppearance -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitle_inputter -io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.CompletableSource) -androidx.activity.R$id: int icon_group -wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Dialog -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -wangdaye.com.geometricweather.common.basic.models.weather.Hourly -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: CaiYunMainlyResult$UrlBean() -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setScrollBarHidden(boolean) -wangdaye.com.geometricweather.R$id: int widget_remote_drawable -wangdaye.com.geometricweather.R$drawable: int notif_temp_23 -androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_PROVIDER -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_PopupMenu -com.google.gson.stream.JsonWriter: void newline() -com.google.android.material.R$styleable: int Chip_android_textAppearance -androidx.appcompat.widget.ActionBarContainer: void setTransitioning(boolean) -cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_DO_NOTHING -androidx.preference.R$styleable: int Preference_dependency -com.github.rahatarmanahmed.cpv.CircularProgressView$6: CircularProgressView$6(com.github.rahatarmanahmed.cpv.CircularProgressView) -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItem -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Headline -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf -com.google.android.material.R$dimen: int compat_button_inset_horizontal_material -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableBottom -io.reactivex.internal.util.AtomicThrowable: long serialVersionUID -androidx.dynamicanimation.R$id: int forever -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: long serialVersionUID -io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean offer(java.lang.Object,java.lang.Object) -com.google.android.material.chip.Chip: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) -com.tencent.bugly.proguard.aj: byte[] c -com.google.android.material.R$attr: int coordinatorLayoutStyle -james.adaptiveicon.R$style: int Widget_AppCompat_ButtonBar -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText -com.tencent.bugly.proguard.am: java.lang.String r -androidx.preference.R$color: int abc_tint_switch_track -wangdaye.com.geometricweather.R$attr: int backgroundSplit -retrofit2.adapter.rxjava2.BodyObservable: void subscribeActual(io.reactivex.Observer) -io.reactivex.internal.observers.DeferredScalarDisposable: boolean isDisposed() -wangdaye.com.geometricweather.R$transition: R$transition() -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType TransactionCallable -com.jaredrummler.android.colorpicker.R$id: int cpv_color_image_view -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -com.github.rahatarmanahmed.cpv.CircularProgressView: void updatePaint() -androidx.preference.R$style: int Base_V23_Theme_AppCompat_Light -androidx.appcompat.widget.AppCompatImageView: void setImageDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: int getMinuteInterval() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeight -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_dialogType -wangdaye.com.geometricweather.R$style: int Base_V23_Theme_AppCompat_Light -com.amap.api.fence.GeoFence: int ERROR_CODE_INVALID_PARAMETER -com.google.android.material.R$styleable: int Layout_layout_constraintRight_toLeftOf -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.R$layout: int widget_clock_day_tile -com.google.android.material.R$styleable: int TextInputLayout_errorTextColor -androidx.activity.R$dimen: int notification_large_icon_height -androidx.customview.R$id: int action_container -wangdaye.com.geometricweather.R$color: int abc_tint_switch_track -io.reactivex.Observable: io.reactivex.Observable concatArrayDelayError(io.reactivex.ObservableSource[]) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_borderlessButtonStyle -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: java.lang.String DESCRIPTOR -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogPreferredPadding -com.turingtechnologies.materialscrollbar.R$attr: int actionModeWebSearchDrawable -wangdaye.com.geometricweather.R$id: int widget_day_week_week_1 -com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_view -com.google.android.material.R$id: int action_context_bar -com.google.android.material.R$styleable: int RecyclerView_layoutManager -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircleRadius -androidx.vectordrawable.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description -com.google.android.material.R$style: int Theme_MaterialComponents_CompactMenu -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView -androidx.preference.R$styleable: int AppCompatTheme_colorControlNormal -androidx.preference.R$styleable: int SearchView_voiceIcon -androidx.preference.R$attr: int fontProviderPackage -com.tencent.bugly.proguard.u: void a(int,int,byte[],java.lang.String,java.lang.String,com.tencent.bugly.proguard.t,int,int,boolean,java.util.Map) -org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) -androidx.coordinatorlayout.widget.CoordinatorLayout: int getSuggestedMinimumHeight() -james.adaptiveicon.R$id: R$id() -androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_title_material -com.google.android.material.R$styleable: int Layout_android_layout_marginStart -com.google.android.material.R$styleable: int SearchView_iconifiedByDefault -androidx.preference.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -com.google.android.material.R$attr: int motionPathRotate -com.turingtechnologies.materialscrollbar.R$drawable: int abc_vector_test -com.google.android.material.R$styleable: int MaterialCardView_shapeAppearance -androidx.appcompat.R$id: int text -androidx.appcompat.widget.AbsActionBarView: AbsActionBarView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemTextColor -retrofit2.SkipCallbackExecutorImpl: java.lang.annotation.Annotation[] ensurePresent(java.lang.annotation.Annotation[]) -com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -com.tencent.bugly.crashreport.common.info.a: java.lang.String p -wangdaye.com.geometricweather.R$styleable: int Transform_android_translationX -androidx.lifecycle.LiveData: java.lang.Object mData -androidx.swiperefreshlayout.R$drawable: int notification_template_icon_bg -okhttp3.internal.http2.Http2Connection$Builder -retrofit2.Utils$ParameterizedTypeImpl: Utils$ParameterizedTypeImpl(java.lang.reflect.Type,java.lang.reflect.Type,java.lang.reflect.Type[]) -wangdaye.com.geometricweather.R$styleable: int BackgroundStyle_selectableItemBackground -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation precipitation -okhttp3.logging.HttpLoggingInterceptor: HttpLoggingInterceptor(okhttp3.logging.HttpLoggingInterceptor$Logger) -com.tencent.bugly.proguard.ak: java.lang.String a -com.google.android.material.R$color: int button_material_light -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean done -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_doneButton -wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert -cyanogenmod.app.CustomTile$ExpandedItem$1: cyanogenmod.app.CustomTile$ExpandedItem createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.db.entities.LocationEntity: LocationEntity(java.lang.String,java.lang.String,float,float,java.util.TimeZone,java.lang.String,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource,boolean,boolean,boolean) -androidx.constraintlayout.widget.R$styleable: int Variant_region_heightMoreThan -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark_normal_background -androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.internal.operators.observable.ObservableCache$Node node -org.greenrobot.greendao.AbstractDao: long insert(java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableLeftCompat -okio.Buffer$2: void close() -cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder mService -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: boolean requestDismissAndStartActivity(android.content.Intent) -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: io.reactivex.internal.operators.observable.ObservableAmb$AmbCoordinator parent -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentListStyle -cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_WEATHER_MANAGER -android.didikee.donate.R$styleable: int SearchView_goIcon -com.jaredrummler.android.colorpicker.R$drawable: int preference_list_divider_material -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_7 -cyanogenmod.app.Profile$LockMode: int DEFAULT -wangdaye.com.geometricweather.R$attr: int closeIconEndPadding -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnClickListener(android.view.View$OnClickListener) -androidx.viewpager.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean isEntityUpdateable() -androidx.preference.R$attr: int collapseContentDescription -androidx.preference.R$layout: int preference_list_fragment -cyanogenmod.app.CustomTileListenerService: void onCustomTileRemoved(cyanogenmod.app.StatusBarPanelCustomTile) -wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout -androidx.preference.R$attr: int reverseLayout -com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyleSmall -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX -com.google.android.material.R$string: int material_hour_suffix -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode THUNDER -wangdaye.com.geometricweather.R$attr: int actionBarSize -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_27 -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog -androidx.viewpager2.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -com.google.android.material.R$dimen: int abc_seekbar_track_progress_height_material -com.tencent.bugly.crashreport.crash.b: void a(com.tencent.bugly.crashreport.crash.CrashDetailBean,long,boolean) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -james.adaptiveicon.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_text_size -wangdaye.com.geometricweather.R$color: int mtrl_fab_bg_color_selector -io.reactivex.Observable: io.reactivex.Single elementAtOrError(long) -cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(java.util.Map,java.util.Map,cyanogenmod.themes.ThemeChangeRequest$RequestType,long) -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: io.reactivex.internal.queue.SpscArrayQueue queue -com.amap.api.fence.PoiItem: java.lang.String k -androidx.fragment.R$string: R$string() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWeatherSource() -cyanogenmod.app.CustomTile$RemoteExpandedStyle: void setRemoteViews(android.widget.RemoteViews) -com.google.android.material.R$id: int action_bar_subtitle -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_3 -com.google.android.material.slider.BaseSlider: void setThumbRadiusResource(int) -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar -androidx.preference.R$attr: int fastScrollVerticalTrackDrawable -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_unregisterChangeListener -com.tencent.bugly.BuglyStrategy: java.lang.String getAppPackageName() -com.google.android.material.R$color: int primary_material_light -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_auto_adjust_section_mark -com.google.android.material.appbar.CollapsingToolbarLayout: int getScrimAlpha() -androidx.appcompat.R$attr: int iconifiedByDefault -com.google.android.material.R$styleable: int Constraint_android_layout_marginTop -io.reactivex.internal.subscriptions.DeferredScalarSubscription: void cancel() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindDirection -androidx.swiperefreshlayout.R$id: int action_image -okhttp3.internal.connection.RouteSelector: okhttp3.internal.connection.RouteSelector$Selection next() -android.didikee.donate.R$attr: int colorBackgroundFloating -androidx.loader.R$dimen: int notification_large_icon_height -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItemSecondary -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_title -wangdaye.com.geometricweather.R$dimen: int material_helper_text_font_1_3_padding_horizontal -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: long serialVersionUID -androidx.vectordrawable.animated.R$integer: int status_bar_notification_info_maxnum -android.didikee.donate.R$attr: int colorPrimary -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: android.content.IntentFilter a -androidx.lifecycle.Lifecycle -com.turingtechnologies.materialscrollbar.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarItemBackground -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getDate(java.lang.String) -com.turingtechnologies.materialscrollbar.CustomIndicator: int getIndicatorWidth() -androidx.appcompat.resources.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.common.basic.models.weather.Current -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRainPrecipitation() -com.tencent.bugly.proguard.o: boolean c() -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 -android.didikee.donate.R$layout: int abc_screen_content_include -wangdaye.com.geometricweather.R$styleable: int[] PopupWindowBackgroundState -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_warmth -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColorItem_android_color -cyanogenmod.platform.Manifest$permission: java.lang.String BIND_WEATHER_PROVIDER_SERVICE -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String weatherIcon -com.jaredrummler.android.colorpicker.R$id: int bottom -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_corner_radius -com.bumptech.glide.integration.okhttp.R$style -androidx.transition.R$drawable: int notification_bg_normal -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_srcCompat -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_5 -retrofit2.BuiltInConverters$ToStringConverter: retrofit2.BuiltInConverters$ToStringConverter INSTANCE -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setStatus(int) -androidx.dynamicanimation.R$attr: int fontStyle -com.amap.api.fence.DistrictItem$1: java.lang.Object[] newArray(int) -com.google.android.material.R$attr: int transitionEasing -com.bumptech.glide.R$color: int secondary_text_default_material_light -retrofit2.DefaultCallAdapterFactory$1: java.lang.Object adapt(retrofit2.Call) -wangdaye.com.geometricweather.db.entities.DaoSession -android.didikee.donate.R$color: int abc_hint_foreground_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: AccuCurrentResult$WetBulbTemperature$Metric() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SLEET -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -com.xw.repo.bubbleseekbar.R$dimen: int abc_button_padding_vertical_material -com.turingtechnologies.materialscrollbar.R$attr: int actionButtonStyle -wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_2 -com.google.android.material.R$id: int action_mode_bar -com.google.android.material.R$id -androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onStart() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather weather12H -com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarStyle -androidx.appcompat.R$attr: int measureWithLargestChild -androidx.customview.R$attr: R$attr() -okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,byte[]) -com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Theme_AppCompat -org.greenrobot.greendao.AbstractDao: java.lang.Object getKeyVerified(java.lang.Object) -wangdaye.com.geometricweather.R$font: int product_sans_bold_italic -com.tencent.bugly.crashreport.crash.c: void j() -wangdaye.com.geometricweather.R$drawable: int notif_temp_50 -wangdaye.com.geometricweather.R$id: int cut -com.xw.repo.bubbleseekbar.R$string: int abc_action_mode_done -androidx.core.R$id: int accessibility_custom_action_15 -retrofit2.Converter$Factory: Converter$Factory() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMarkTintMode -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeAppearance -androidx.appcompat.R$attr: int viewInflaterClass -androidx.activity.R$id: int icon -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.Observer downstream -androidx.work.R$integer -androidx.preference.R$styleable: int Toolbar_logoDescription -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: java.lang.String WeatherCode -com.google.android.material.R$attr: int checkedIconSize -wangdaye.com.geometricweather.R$id: int item_weather_daily_air_title -androidx.core.R$string: R$string() -com.google.android.material.R$styleable: int MaterialButton_shapeAppearanceOverlay -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange Past12HourRange -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder value(java.lang.String) -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: cyanogenmod.weatherservice.IWeatherProviderServiceClient asInterface(android.os.IBinder) -androidx.appcompat.R$styleable: int GradientColor_android_centerY -com.tencent.bugly.proguard.i: int[] f(int,boolean) -okio.GzipSource: void consumeTrailer() -cyanogenmod.app.IProfileManager: void updateNotificationGroup(android.app.NotificationGroup) -com.google.android.material.tabs.TabLayout: void setTabIconTint(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.radiobutton.MaterialRadioButton: android.content.res.ColorStateList getMaterialThemeColorsTintList() -wangdaye.com.geometricweather.R$drawable: int notif_temp_74 -wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndTitle -wangdaye.com.geometricweather.R$styleable: int[] MotionLayout -cyanogenmod.providers.ThemesContract$PreviewColumns -cyanogenmod.app.ILiveLockScreenManagerProvider -wangdaye.com.geometricweather.R$attr: int actionModeStyle -cyanogenmod.util.ColorUtils$1: int compare(java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemBackground -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi: io.reactivex.Observable getLocation(java.lang.String,java.lang.String) -com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_ContextMenu -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: void run() -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$attr: int collapseContentDescription -okhttp3.RealCall$AsyncCall: okhttp3.RealCall get() -com.jaredrummler.android.colorpicker.R$id: int action_bar_title -android.didikee.donate.R$styleable: int Toolbar_collapseIcon -com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_percent -com.google.android.material.R$attr: int ratingBarStyleIndicator -com.google.android.material.R$attr: int itemRippleColor -cyanogenmod.app.CustomTile: android.net.Uri onClickUri -okhttp3.MultipartBody: MultipartBody(okio.ByteString,okhttp3.MediaType,java.util.List) -com.google.gson.stream.JsonReader: int PEEKED_UNQUOTED_NAME -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode IMMEDIATE -com.google.android.material.card.MaterialCardView: int getStrokeColor() -androidx.vectordrawable.animated.R$dimen: int notification_right_side_padding_top -androidx.constraintlayout.widget.R$attr: int customIntegerValue -com.google.android.material.R$styleable: int ConstraintLayout_placeholder_content -james.adaptiveicon.R$styleable: int ActionBar_homeAsUpIndicator -cyanogenmod.externalviews.IExternalViewProvider$Stub: java.lang.String DESCRIPTOR -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: org.reactivestreams.Subscriber downstream -com.jaredrummler.android.colorpicker.R$string: int abc_menu_ctrl_shortcut_label -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeApparentTemperature(java.lang.Integer) -wangdaye.com.geometricweather.common.basic.models.weather.Minutely -com.tencent.bugly.proguard.x -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: java.util.ArrayDeque windows -androidx.coordinatorlayout.R$styleable: int GradientColor_android_endColor -androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -androidx.coordinatorlayout.R$id: int accessibility_custom_action_27 -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onError(java.lang.Throwable) -androidx.transition.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: java.util.List value -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_minWidth -androidx.coordinatorlayout.R$styleable: int GradientColor_android_startColor -com.google.android.material.R$dimen: int mtrl_calendar_days_of_week_height -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed Speed -com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getIndicatorOffset() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias -okhttp3.internal.ws.RealWebSocket: void initReaderAndWriter(java.lang.String,okhttp3.internal.ws.RealWebSocket$Streams) -wangdaye.com.geometricweather.R$attr: int tabTextColor -cyanogenmod.themes.IThemeService$Stub$Proxy: int getProgress() -androidx.constraintlayout.widget.R$string: int abc_menu_space_shortcut_label -com.xw.repo.bubbleseekbar.R$attr: int actionBarPopupTheme -okhttp3.internal.connection.StreamAllocation: void cancel() -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: long serialVersionUID -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$attr: int disableDependentsState -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.lang.String getSetTime(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierMargin -com.google.android.material.R$styleable: int TabLayout_tabGravity -com.google.android.material.R$attr: int mock_showLabel -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button -android.didikee.donate.R$styleable: int TextAppearance_android_textSize -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteSelector routeSelector -wangdaye.com.geometricweather.R$styleable: int KeyCycle_framePosition -androidx.viewpager.R$attr: int fontProviderAuthority -okhttp3.RealCall: boolean isExecuted() -androidx.drawerlayout.R$dimen: int notification_media_narrow_margin -cyanogenmod.app.Profile: int getExpandedDesktopMode() -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onComplete() -com.google.android.material.R$dimen: int material_helper_text_font_1_3_padding_top -cyanogenmod.profiles.AirplaneModeSettings$1: cyanogenmod.profiles.AirplaneModeSettings createFromParcel(android.os.Parcel) -androidx.cardview.R$style: int CardView -com.bumptech.glide.R$styleable: int[] FontFamilyFont -com.xw.repo.bubbleseekbar.R$attr: int actionBarSplitStyle -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_icon -androidx.preference.R$attr: int colorPrimaryDark -com.xw.repo.bubbleseekbar.R$attr: int iconifiedByDefault -androidx.lifecycle.LifecycleObserver -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setZh_TW(java.lang.String) -com.tencent.bugly.crashreport.crash.anr.b: com.tencent.bugly.crashreport.common.strategy.a f -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintEnabled -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStrokeColor -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherCode -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetStartWithNavigation -okhttp3.internal.cache.DiskLruCache: java.io.File journalFileTmp -com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean n -com.google.android.material.R$styleable: int MaterialShape_shapeAppearance -androidx.recyclerview.R$attr: int reverseLayout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String aqi -androidx.activity.R$layout: int custom_dialog -wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -androidx.preference.R$attr: int titleMarginTop -okio.BufferedSource: okio.ByteString readByteString() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_CBC_SHA -androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context,android.util.AttributeSet,int) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_CBC_SHA256 -io.reactivex.Observable: io.reactivex.Observable timeInterval(java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation TOP -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void subscribe(io.reactivex.ObservableSource[]) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onError(java.lang.Throwable) -androidx.preference.R$dimen: int abc_button_inset_horizontal_material -com.jaredrummler.android.colorpicker.R$attr: int titleTextAppearance -cyanogenmod.app.CustomTile: CustomTile() -wangdaye.com.geometricweather.R$dimen: int mtrl_card_spacing -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_closeIcon -wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingRight -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,int) -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -io.reactivex.Observable: io.reactivex.Observable timer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter windDegreeConverter -io.reactivex.subjects.PublishSubject$PublishDisposable -android.didikee.donate.R$styleable: int AppCompatTextView_drawableEndCompat -okhttp3.internal.http2.Http2Codec: void finishRequest() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -androidx.preference.R$anim: int fragment_open_enter -io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function,io.reactivex.functions.Function) -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceVoice(android.content.Context) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setAddress(java.lang.String) -com.turingtechnologies.materialscrollbar.R$id: int search_go_btn -com.google.android.material.textfield.TextInputLayout: void setHelperTextTextAppearance(int) -cyanogenmod.profiles.LockSettings$1: LockSettings$1() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.Function leftEnd -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void dispose() -io.reactivex.Observable: io.reactivex.Observable buffer(int) -wangdaye.com.geometricweather.R$styleable: int MenuView_android_verticalDivider -okio.InflaterSource: java.util.zip.Inflater inflater -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionModeOverlay -cyanogenmod.themes.ThemeChangeRequest$1: cyanogenmod.themes.ThemeChangeRequest createFromParcel(android.os.Parcel) -james.adaptiveicon.R$styleable: int MenuGroup_android_orderInCategory -wangdaye.com.geometricweather.R$id: int container_main_header_aqiOrWindTxt -wangdaye.com.geometricweather.R$attr: int multiChoiceItemLayout -androidx.vectordrawable.animated.R$id: int right_icon -com.xw.repo.bubbleseekbar.R$id: int split_action_bar -androidx.preference.R$attr: int defaultValue -wangdaye.com.geometricweather.R$styleable: int AlertDialog_android_layout -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_shapeAppearance -cyanogenmod.library.R$attr: int settingsActivity -com.xw.repo.bubbleseekbar.R$attr: int bsb_touch_to_seek -androidx.preference.R$styleable: int AppCompatTheme_popupMenuStyle -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: android.os.IBinder mRemote -androidx.customview.R$drawable: int notification_template_icon_bg -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_selectable -okhttp3.internal.http2.Http2Codec: java.lang.String TE -com.amap.api.location.AMapLocation: android.os.Parcelable$Creator CREATOR -okhttp3.FormBody$Builder -com.xw.repo.bubbleseekbar.R$id: int top -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) -com.xw.repo.bubbleseekbar.R$drawable: int abc_action_bar_item_background_material -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_RC4_128_SHA -wangdaye.com.geometricweather.R$string: int settings_category_widget -wangdaye.com.geometricweather.R$attr: int dialogMessage -com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_layout -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_backgroundStacked -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -okhttp3.internal.http2.Http2Reader: void readWindowUpdate(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_CIRCLE -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String getCityId() -androidx.appcompat.R$id: int parentPanel -okhttp3.Request: okhttp3.Headers headers -com.google.android.material.button.MaterialButtonToggleGroup: void setSingleSelection(boolean) -com.bumptech.glide.integration.okhttp.R$string: int status_bar_notification_info_overflow -androidx.preference.R$attr: int showSeekBarValue -com.tencent.bugly.CrashModule: void a(android.content.Context,com.tencent.bugly.BuglyStrategy) -androidx.activity.R$styleable: int FontFamilyFont_android_fontStyle -androidx.appcompat.view.menu.MenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.Date getPubTime() -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: void soNext(io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode) -cyanogenmod.app.Profile: void setNotificationLightMode(int) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintDimensionRatio -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.database.Database getDatabase() -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver) -okhttp3.MultipartBody: byte[] COLONSPACE -androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_primary_mtrl_alpha -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: IAppSuggestProvider$Stub() -retrofit2.HttpServiceMethod$SuspendForBody: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) -androidx.appcompat.R$dimen: int abc_dialog_corner_radius_material -wangdaye.com.geometricweather.R$xml: int widget_clock_day_details -com.google.android.material.timepicker.TimePickerView: void setOnPeriodChangeListener(com.google.android.material.timepicker.TimePickerView$OnPeriodChangeListener) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_rippleColor -com.amap.api.location.AMapLocationQualityReport: void setInstallHighDangerMockApp(boolean) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_toBottomOf -com.google.android.material.R$attr: int duration -androidx.swiperefreshlayout.R$id: int text -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: androidx.lifecycle.LiveData mLiveData -com.turingtechnologies.materialscrollbar.R$dimen: int hint_pressed_alpha_material_dark -androidx.preference.R$style: int Base_Widget_AppCompat_PopupMenu -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit KPA -com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_layout -com.tencent.bugly.crashreport.common.info.a: java.lang.String y() -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_width_material -androidx.fragment.app.FragmentTabHost -com.google.android.material.R$layout: int test_design_checkbox -androidx.activity.R$dimen: int notification_small_icon_size_as_large -cyanogenmod.app.StatusBarPanelCustomTile: int initialPid -androidx.coordinatorlayout.R$id: int right -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.R$styleable: int Slider_haloColor -james.adaptiveicon.R$dimen: R$dimen() -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$styleable: int MenuView_android_horizontalDivider -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context,android.util.AttributeSet,int) -androidx.fragment.R$drawable: int notification_action_background -com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_icon_width -wangdaye.com.geometricweather.R$id: int zero_corner_chip -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display4 -wangdaye.com.geometricweather.R$styleable: int ActionBar_backgroundSplit -com.tencent.bugly.proguard.p: p(android.content.Context,java.util.List) -wangdaye.com.geometricweather.R$string: int settings_title_forecast_tomorrow -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain rain -com.google.android.material.R$style: int Widget_AppCompat_Toolbar -androidx.preference.MultiSelectListPreference$SavedState: android.os.Parcelable$Creator CREATOR -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.tencent.bugly.proguard.u: boolean c(com.tencent.bugly.proguard.u) -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitationDuration -com.google.android.material.R$drawable: int design_bottom_navigation_item_background -wangdaye.com.geometricweather.R$drawable: int abc_btn_check_material_anim -android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedWidthMinor -wangdaye.com.geometricweather.R$color: int material_on_background_disabled -okhttp3.OkHttpClient: okhttp3.Dispatcher dispatcher() -android.didikee.donate.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -com.tencent.bugly.crashreport.common.info.PlugInBean: void writeToParcel(android.os.Parcel,int) -james.adaptiveicon.R$id: int text2 -com.jaredrummler.android.colorpicker.R$id: int shades_layout -androidx.work.R$bool: int workmanager_test_configuration -androidx.work.R$bool: int enable_system_job_service_default -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -androidx.preference.R$styleable: int MenuItem_showAsAction -androidx.vectordrawable.animated.R$attr: int font -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.functions.Function mapper -wangdaye.com.geometricweather.R$drawable: int weather_snow_2 -androidx.preference.R$styleable: int AppCompatSeekBar_tickMarkTintMode -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType FLOAT_TYPE -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.Observer downstream -androidx.work.impl.utils.futures.AbstractFuture$Waiter: androidx.work.impl.utils.futures.AbstractFuture$Waiter next -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_rippleColor -androidx.drawerlayout.R$drawable: R$drawable() -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSteps -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_height -androidx.appcompat.resources.R$id: int accessibility_custom_action_15 -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.lifecycle.ProcessLifecycleOwnerInitializer: int delete(android.net.Uri,java.lang.String,java.lang.String[]) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle -com.tencent.bugly.proguard.am: java.lang.String p -androidx.hilt.work.R$id: int async -cyanogenmod.externalviews.KeyguardExternalView: android.graphics.Point mDisplaySize -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenManager getInstance(android.content.Context) -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Connection$Listener listener -cyanogenmod.themes.ThemeManager: void unregisterThemeChangeListener(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -wangdaye.com.geometricweather.R$layout: int mtrl_picker_dialog -com.jaredrummler.android.colorpicker.R$attr: int windowActionBarOverlay -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone TimeZone -com.tencent.bugly.proguard.f: java.util.Map j -androidx.preference.R$style: int Widget_AppCompat_Spinner_DropDown -wangdaye.com.geometricweather.weather.apis.CNWeatherApi -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: boolean isCanceled() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_creator -okhttp3.internal.http2.Http2: byte TYPE_DATA -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeCloudCover() -androidx.transition.R$dimen: int notification_media_narrow_margin -com.jaredrummler.android.colorpicker.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button -retrofit2.converter.gson.GsonConverterFactory: retrofit2.converter.gson.GsonConverterFactory create(com.google.gson.Gson) -okio.package-info -androidx.coordinatorlayout.R$dimen: int notification_small_icon_background_padding -com.google.android.material.R$color: int primary_text_disabled_material_dark -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_percent -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_fab_elevation -com.google.android.material.R$styleable: int AppCompatTheme_actionBarSplitStyle -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode FLOW_CONTROL_ERROR -com.amap.api.fence.GeoFence: void writeToParcel(android.os.Parcel,int) -androidx.preference.R$layout: int preference_information_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: java.util.List brands -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_widgetLayout -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.tencent.bugly.crashreport.common.info.b: boolean p() -com.tencent.bugly.BuglyStrategy: boolean recordUserInfoOnceADay() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle -androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context) -android.didikee.donate.R$style: int Platform_Widget_AppCompat_Spinner -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dialog -android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_Switch -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeWindChillTemperature -androidx.hilt.R$id: int accessibility_custom_action_19 -com.google.android.material.R$style: int Base_TextAppearance_AppCompat -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorAccent -okio.Buffer: okio.ByteString hmacSha512(okio.ByteString) -androidx.preference.R$id: int accessibility_custom_action_23 -cyanogenmod.providers.CMSettings$1 -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Headline -com.google.android.material.R$attr: int prefixTextAppearance -wangdaye.com.geometricweather.R$layout: int notification_base_big -retrofit2.Utils: java.lang.reflect.Type getGenericSupertype(java.lang.reflect.Type,java.lang.Class,java.lang.Class) -wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_dark -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_background_corner_radius -wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_shapeAppearance -com.google.android.material.R$dimen: int design_navigation_padding_bottom -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeShareDrawable -retrofit2.CompletableFutureCallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -android.didikee.donate.R$styleable: int AppCompatTheme_windowActionBar -io.reactivex.internal.schedulers.RxThreadFactory -com.turingtechnologies.materialscrollbar.R$string: int abc_prepend_shortcut_label -com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout_PrimarySurface -okio.ByteString: java.nio.ByteBuffer asByteBuffer() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline2 -com.google.android.material.R$attr: int values -cyanogenmod.app.ICMStatusBarManager: void registerListener(cyanogenmod.app.ICustomTileListener,android.content.ComponentName,int) -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPlaceholderText() -android.didikee.donate.R$string: int abc_action_bar_home_description -wangdaye.com.geometricweather.R$drawable: int ic_about -cyanogenmod.hardware.DisplayMode$1: DisplayMode$1() -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -retrofit2.HttpServiceMethod: okhttp3.Call$Factory callFactory -okio.Segment: Segment(byte[],int,int,boolean,boolean) -wangdaye.com.geometricweather.R$attr: int iconEndPadding -androidx.viewpager2.R$styleable: int RecyclerView_android_descendantFocusability -androidx.appcompat.R$layout: int notification_template_icon_group -okio.SegmentPool: long byteCount -com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_E -cyanogenmod.weather.IRequestInfoListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -android.didikee.donate.R$styleable: int AppCompatTheme_spinnerStyle -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat -androidx.viewpager.widget.ViewPager: int getOffscreenPageLimit() -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode THUNDERSTORM -retrofit2.ParameterHandler$Query -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: ObservableConcatWithMaybe$ConcatWithObserver(io.reactivex.Observer,io.reactivex.MaybeSource) -io.reactivex.Observable: io.reactivex.Observable mergeArrayDelayError(int,int,io.reactivex.ObservableSource[]) -androidx.recyclerview.R$layout: int custom_dialog -wangdaye.com.geometricweather.R$attr: int placeholderTextAppearance -androidx.vectordrawable.animated.R$id: int italic -com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_padding_vertical_material -okio.SegmentPool: okio.Segment take() -androidx.appcompat.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_padding -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_84 -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_14 -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light -androidx.appcompat.R$integer: R$integer() -com.google.android.material.R$color: int background_floating_material_dark -com.google.android.material.slider.BaseSlider: void setThumbElevationResource(int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String uvDescription -androidx.appcompat.R$attr: int drawableEndCompat -com.bumptech.glide.R$id: int line3 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActivityChooserView -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String mId -com.turingtechnologies.materialscrollbar.R$id: int split_action_bar -com.bumptech.glide.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.R$attr: int activityChooserViewStyle -com.google.android.material.R$styleable: int ClockHandView_materialCircleRadius -wangdaye.com.geometricweather.R$styleable: int CardView_cardUseCompatPadding -androidx.appcompat.R$dimen: int abc_control_inset_material -androidx.dynamicanimation.R$dimen: int notification_content_margin_start -com.google.gson.internal.LazilyParsedNumber: LazilyParsedNumber(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsRainOrSnow(int) -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox -wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendDailyProvider -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getDailyForecast() -wangdaye.com.geometricweather.common.basic.models.weather.UV: boolean isValid() -com.google.android.material.R$styleable: int TabLayout_tabMinWidth -wangdaye.com.geometricweather.R$dimen: int design_tab_max_width -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setDeviceID(java.lang.String) -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline1 -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -androidx.hilt.work.R$id: int accessibility_custom_action_2 -com.turingtechnologies.materialscrollbar.R$styleable: int[] CompoundButton -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SearchView -io.reactivex.internal.observers.ForEachWhileObserver: boolean done -androidx.lifecycle.LiveDataReactiveStreams -androidx.constraintlayout.widget.R$color: int dim_foreground_disabled_material_dark -wangdaye.com.geometricweather.db.entities.AlertEntity: void setType(java.lang.String) -com.github.rahatarmanahmed.cpv.CircularProgressView$3 -wangdaye.com.geometricweather.R$id: int dragStart -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long readKey(android.database.Cursor,int) -wangdaye.com.geometricweather.R$drawable: int ic_wechat_pay -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: AccuCurrentResult$Ceiling$Imperial() -okhttp3.OkHttpClient: java.util.List networkInterceptors() -okhttp3.internal.http2.Http2Connection: void pushRequestLater(int,java.util.List) -androidx.lifecycle.extensions.R$id: int action_image -android.didikee.donate.R$styleable: int ActionBar_height -wangdaye.com.geometricweather.settings.activities.PreviewIconActivity: PreviewIconActivity() -androidx.recyclerview.R$styleable: int GradientColorItem_android_color -androidx.vectordrawable.R$color -wangdaye.com.geometricweather.R$dimen: int mtrl_card_elevation -cyanogenmod.weather.WeatherInfo$Builder: double mTemperature -androidx.appcompat.R$drawable -com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabIconTint() -com.google.android.material.slider.BaseSlider: int getTrackHeight() -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getHaloTintList() -wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingLeft -cyanogenmod.providers.CMSettings$System: java.lang.String QS_SHOW_BRIGHTNESS_SLIDER -cyanogenmod.app.ThemeVersion: int getMinSupportedVersion() -okhttp3.internal.proxy.NullProxySelector: void connectFailed(java.net.URI,java.net.SocketAddress,java.io.IOException) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Tooltip -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setState(java.lang.String) -com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.k a(byte[],java.lang.Class) -com.jaredrummler.android.colorpicker.R$id: int parentPanel -androidx.preference.R$attr: int displayOptions -com.google.android.material.R$attr: int telltales_tailColor -okio.RealBufferedSource$1: void close() -com.google.android.material.R$id: int position -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -com.tencent.bugly.a: java.lang.String[] getTables() -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setPresenter(com.google.android.material.bottomnavigation.BottomNavigationPresenter) -com.google.android.material.R$style: int Theme_Design -okhttp3.internal.ws.WebSocketProtocol -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_padding_material -androidx.viewpager2.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$layout: int widget_day_tile -com.google.android.material.R$dimen: int abc_text_size_menu_header_material -androidx.hilt.R$styleable: int FontFamilyFont_android_fontStyle -androidx.swiperefreshlayout.R$color: int notification_action_color_filter -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: int offset -android.didikee.donate.R$dimen: int notification_large_icon_height -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarStyle -com.tencent.bugly.proguard.i: boolean[] d(int,boolean) -okhttp3.internal.platform.OptionalMethod: java.lang.Class[] methodParams -wangdaye.com.geometricweather.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: BaiduIPLocationResult$ContentBean$PointBean() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: AccuCurrentResult$RealFeelTemperature$Imperial() -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -androidx.activity.R$style: R$style() -android.didikee.donate.R$styleable: int MenuItem_showAsAction -com.tencent.bugly.proguard.n: android.content.SharedPreferences f -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Date -com.google.android.material.R$styleable: int ChipGroup_singleLine -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_toBottomOf -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property CloudCover -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context) -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean cancelled -com.bumptech.glide.integration.okhttp.R$attr: int fontVariationSettings -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void dispose() -com.google.android.material.R$dimen: int notification_top_pad -com.turingtechnologies.materialscrollbar.R$color: int mtrl_bottom_nav_colored_item_tint -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionMode -androidx.preference.R$id: int forever -androidx.appcompat.R$style: int Widget_AppCompat_ActivityChooserView -androidx.core.graphics.drawable.IconCompatParcelizer: IconCompatParcelizer() -androidx.vectordrawable.R$id: int notification_background -com.google.android.material.R$color: int mtrl_textinput_focused_box_stroke_color -com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_Tooltip -androidx.preference.R$styleable: int SearchView_commitIcon -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle -io.reactivex.Observable: io.reactivex.Observable zipArray(io.reactivex.functions.Function,boolean,int,io.reactivex.ObservableSource[]) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void next(java.lang.Object) -com.google.android.material.chip.Chip: void setShowMotionSpecResource(int) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.ChineseCityEntity,int) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintEnd_toEndOf -com.google.android.gms.common.R$string: R$string() -com.google.android.material.R$string: int abc_menu_space_shortcut_label -androidx.appcompat.R$styleable: int RecycleListView_paddingTopNoTitle -android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedWidthMajor -wangdaye.com.geometricweather.R$attr: int paddingBottomSystemWindowInsets -androidx.appcompat.R$style: int Theme_AppCompat_Light -androidx.viewpager2.R$layout: int notification_template_icon_group -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderCerts -com.jaredrummler.android.colorpicker.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle MATERIAL -androidx.appcompat.R$drawable: int abc_list_pressed_holo_light -com.baidu.location.indoor.mapversion.c.c$b: java.lang.String a -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -com.google.android.material.R$attr: int cardCornerRadius -androidx.constraintlayout.widget.R$id: int icon_group -com.google.android.material.R$style: int Widget_AppCompat_ActionButton_Overflow -androidx.preference.R$dimen: int abc_control_inset_material -com.tencent.bugly.crashreport.crash.c: android.content.Context b(com.tencent.bugly.crashreport.crash.c) -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: int getCollapsedSize() -com.google.android.gms.common.stats.StatsEvent -androidx.constraintlayout.widget.R$color: int background_floating_material_light -okhttp3.CertificatePinner$Pin: java.lang.String pattern -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runBackfused() -android.didikee.donate.R$attr: int dialogPreferredPadding -cyanogenmod.profiles.AirplaneModeSettings: boolean mOverride -androidx.appcompat.R$style: int Widget_AppCompat_ListPopupWindow -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -androidx.drawerlayout.R$color -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$b: boolean a(java.lang.String,int,java.lang.String,java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_trackTint -wangdaye.com.geometricweather.search.SearchActivity: SearchActivity() -james.adaptiveicon.R$dimen: int abc_dialog_padding_top_material -androidx.constraintlayout.utils.widget.ImageFilterView: float getRoundPercent() -wangdaye.com.geometricweather.R$color: int abc_background_cache_hint_selector_material_dark -com.google.android.material.R$style: int Widget_MaterialComponents_BottomSheet_Modal -com.jaredrummler.android.colorpicker.R$drawable -com.tencent.bugly.proguard.n: n(android.content.Context) -cyanogenmod.weather.WeatherInfo$DayForecast$1: cyanogenmod.weather.WeatherInfo$DayForecast createFromParcel(android.os.Parcel) -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onNext(java.lang.Object) -androidx.dynamicanimation.R$id: int right_side -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] EMPTY_RULE -com.google.android.material.datepicker.MaterialTextInputPicker -androidx.loader.R$id: int notification_main_column -androidx.preference.R$drawable: int abc_ic_menu_cut_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showAlphaSlider -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.R$string: int key_card_display -androidx.appcompat.R$anim: int abc_slide_out_bottom -androidx.lifecycle.extensions.R$dimen: int notification_large_icon_width -androidx.appcompat.R$styleable: int[] AppCompatSeekBar -android.didikee.donate.R$id: int showHome -okio.Okio: okio.Sink sink(java.net.Socket) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -androidx.appcompat.R$attr: int thumbTint -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemRippleColor -wangdaye.com.geometricweather.R$array: int widget_text_color_values -wangdaye.com.geometricweather.R$color: int lightPrimary_3 -android.didikee.donate.R$attr: int contentInsetStartWithNavigation -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_elevation -com.tencent.bugly.crashreport.biz.a: int c -com.google.android.material.chip.Chip: void setCloseIconStartPadding(float) -wangdaye.com.geometricweather.R$attr: int drawPath -wangdaye.com.geometricweather.R$styleable: int[] MultiSelectListPreference -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void applyAndAckSettings(boolean,okhttp3.internal.http2.Settings) -okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,java.lang.String,boolean,boolean,boolean,boolean) -okhttp3.FormBody: java.lang.String value(int) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_expandedHintEnabled -james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMark -com.tencent.bugly.Bugly: java.lang.String getAppChannel() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.R$layout: int preference_widget_switch_compat -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_normalContainer -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: java.lang.Integer proba3H -okhttp3.internal.http2.Http2Connection: java.net.Socket socket -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void dispose() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$attr: int collapseIcon -com.google.android.material.progressindicator.ProgressIndicator: void setIndeterminate(boolean) -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter nullValue() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.StrategyBean a(com.tencent.bugly.crashreport.common.strategy.a,com.tencent.bugly.crashreport.common.strategy.StrategyBean) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Small -wangdaye.com.geometricweather.R$dimen: int mtrl_chip_text_size -android.didikee.donate.R$attr: int actionBarTheme -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: FlowableRepeatWhen$WhenSourceSubscriber(org.reactivestreams.Subscriber,io.reactivex.processors.FlowableProcessor,org.reactivestreams.Subscription) -androidx.preference.R$style: int Widget_Compat_NotificationActionText -wangdaye.com.geometricweather.R$styleable: int Badge_number -androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$attr: int actionBarWidgetTheme -wangdaye.com.geometricweather.R$drawable: int notif_temp_76 -com.google.android.material.R$dimen: int design_fab_size_mini -com.turingtechnologies.materialscrollbar.R$id: int buttonPanel -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_enabled -androidx.work.impl.WorkDatabase_Impl -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitleTextColor -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_width_material -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: void run() -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Bridge -io.reactivex.exceptions.CompositeException: java.lang.Throwable cause -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: boolean isValid() -com.github.rahatarmanahmed.cpv.CircularProgressView$9 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial Imperial -android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -androidx.preference.R$styleable: int PreferenceImageView_android_maxHeight -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver -androidx.coordinatorlayout.R$styleable: int[] CoordinatorLayout -android.didikee.donate.R$attr: int titleTextColor -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getUvDescription() -wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat_Light -com.google.android.gms.base.R$styleable: int LoadingImageView_imageAspectRatio -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -androidx.preference.R$anim: int fragment_close_enter -com.google.android.material.button.MaterialButton: int getIconGravity() -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualObserver[] observers -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue getOrCreateQueue() -com.tencent.bugly.crashreport.common.info.a: void b(java.lang.String) -okhttp3.Cache: void trackConditionalCacheHit() -com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog_Alert -androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontWeight -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onWindowFocusChanged(boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipEndPadding -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.internal.disposables.SequentialDisposable task -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: int uv -wangdaye.com.geometricweather.R$styleable: int Badge_backgroundColor -wangdaye.com.geometricweather.R$string: int wind_2 -androidx.constraintlayout.widget.R$attr: int drawableBottomCompat -androidx.fragment.R$drawable: R$drawable() -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowDx -com.jaredrummler.android.colorpicker.R$attr: int titleMarginTop -cyanogenmod.providers.CMSettings$Global: android.net.Uri CONTENT_URI -com.google.android.material.R$styleable: int[] MaterialButton -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean timerFired -com.xw.repo.bubbleseekbar.R$attr: int tooltipText -wangdaye.com.geometricweather.R$id: int widget_text_temperature -androidx.appcompat.widget.ActivityChooserView: androidx.appcompat.widget.ActivityChooserModel getDataModel() -androidx.preference.R$styleable: int CompoundButton_android_button -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionMode -androidx.appcompat.widget.SearchView$SearchAutoComplete -com.google.android.material.R$styleable: int FontFamily_fontProviderQuery -com.google.android.material.R$style: int Base_Widget_MaterialComponents_CheckedTextView -cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String itemSummary -wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_xml -wangdaye.com.geometricweather.db.entities.DailyEntityDao: DailyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -wangdaye.com.geometricweather.R$drawable: int flag_ro -com.turingtechnologies.materialscrollbar.R$attr: int titleTextStyle -okhttp3.OkHttpClient: java.net.ProxySelector proxySelector() -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorSize -androidx.constraintlayout.widget.R$styleable: int SearchView_queryBackground -androidx.vectordrawable.animated.R$attr: int fontProviderPackage -com.google.android.material.R$dimen: int abc_dialog_title_divider_material -io.reactivex.internal.subscriptions.DeferredScalarSubscription: org.reactivestreams.Subscriber downstream -androidx.work.impl.utils.futures.DirectExecutor: void execute(java.lang.Runnable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setUrl(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean) -wangdaye.com.geometricweather.R$drawable: int abc_textfield_default_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_precise_anchor_extra_offset -androidx.appcompat.widget.Toolbar: android.view.MenuInflater getMenuInflater() -wangdaye.com.geometricweather.R$layout: int cpv_color_item_square -com.google.android.material.R$attr: int minTouchTargetSize -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar_PrimarySurface -okhttp3.HttpUrl: java.util.List queryNamesAndValues -cyanogenmod.externalviews.KeyguardExternalView$7: void run() -androidx.loader.R$drawable -wangdaye.com.geometricweather.R$attr: int buttonStyleSmall -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void dispose() -com.tencent.bugly.proguard.f: java.lang.Object clone() -com.google.android.material.slider.RangeSlider: void setValues(java.util.List) -james.adaptiveicon.R$styleable: int AppCompatTheme_windowNoTitle -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setDuration(long) -wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_width_material -com.tencent.bugly.crashreport.common.info.a: long q() -android.didikee.donate.R$layout: int notification_action -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin -com.turingtechnologies.materialscrollbar.R$id: int search_mag_icon -androidx.coordinatorlayout.R$drawable: int notification_action_background -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_shadow_height -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler getNativeExceptionHandler() -com.amap.api.location.AMapLocation: void setMock(boolean) -androidx.appcompat.R$attr: int fontProviderAuthority -cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_KEYS_CONTROL_RING_STREAM -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type getOwnerType() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu -wangdaye.com.geometricweather.R$styleable: int[] Constraint -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrimColor(int) -androidx.hilt.lifecycle.R$integer: int status_bar_notification_info_maxnum -com.google.android.material.R$style: int TextAppearance_Design_Snackbar_Message -android.didikee.donate.R$id: int action_image -okhttp3.Call: okio.Timeout timeout() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_shapeAppearance -com.amap.api.location.AMapLocation: void setCoordType(java.lang.String) -androidx.preference.R$style: int Theme_AppCompat_DayNight_NoActionBar -androidx.appcompat.R$styleable: int MenuGroup_android_id -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetLeft -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CUSTOM_ENABLE -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionMode -com.turingtechnologies.materialscrollbar.R$color: int mtrl_scrim_color -okhttp3.internal.Util: java.util.List immutableList(java.lang.Object[]) -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_arrowShaftLength -androidx.constraintlayout.widget.R$styleable: int[] ActivityChooserView -wangdaye.com.geometricweather.db.entities.DailyEntity: void setHoursOfSun(float) -com.google.android.material.R$id: int dragDown -com.google.android.material.R$attr: int closeIconEnabled -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_body_2_material -retrofit2.SkipCallbackExecutorImpl: retrofit2.SkipCallbackExecutor INSTANCE -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -androidx.coordinatorlayout.R$id: int accessibility_custom_action_18 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -androidx.viewpager.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getUnitId() -wangdaye.com.geometricweather.R$attr: int borderlessButtonStyle -io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$id: int ratio -com.turingtechnologies.materialscrollbar.R$attr: int closeIcon -com.google.android.material.R$id: int activity_chooser_view_content -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dark -com.tencent.bugly.proguard.i: java.lang.String b(int,boolean) -wangdaye.com.geometricweather.R$attr: int switchTextOff -wangdaye.com.geometricweather.R$drawable: int dialog_background -wangdaye.com.geometricweather.R$string: int widget_text -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginBottom -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemPaddingLeft -com.tencent.bugly.crashreport.crash.CrashDetailBean: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: java.util.List getValue() -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: ObservableMergeWithSingle$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver) -android.didikee.donate.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -cyanogenmod.app.StatusBarPanelCustomTile: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_xml -retrofit2.ParameterHandler$RelativeUrl: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.tencent.bugly.proguard.j: int a(java.lang.String) -wangdaye.com.geometricweather.R$id: int widget_week_week_3 -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: io.reactivex.disposables.CompositeDisposable compositeDisposable -androidx.lifecycle.ComputableLiveData$1: ComputableLiveData$1(androidx.lifecycle.ComputableLiveData) -com.turingtechnologies.materialscrollbar.R$attr: int bottomNavigationStyle -com.jaredrummler.android.colorpicker.R$color: int abc_hint_foreground_material_dark -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth -androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.ProcessLifecycleOwner sInstance -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object) -android.didikee.donate.R$color: int switch_thumb_normal_material_dark -cyanogenmod.externalviews.ExternalView$1: ExternalView$1(cyanogenmod.externalviews.ExternalView) -com.google.android.material.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getGrassDescription() -androidx.swiperefreshlayout.R$id: int action_divider -androidx.hilt.lifecycle.R$dimen: int notification_small_icon_size_as_large -android.didikee.donate.R$layout: int abc_search_dropdown_item_icons_2line -androidx.preference.R$style: int Theme_AppCompat_NoActionBar -android.support.v4.graphics.drawable.IconCompatParcelizer: IconCompatParcelizer() -com.tencent.bugly.crashreport.common.info.PlugInBean: android.os.Parcelable$Creator CREATOR -okhttp3.internal.http2.Http2Connection$2: void execute() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_CBC_SHA256 -wangdaye.com.geometricweather.R$attr: int buttonBarNeutralButtonStyle -okhttp3.ConnectionSpec: java.lang.String[] tlsVersions -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: MpscLinkedQueue$LinkedQueueNode(java.lang.Object) -androidx.loader.R$dimen: int notification_top_pad -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabTextStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getLogo() -wangdaye.com.geometricweather.R$attr: int layoutDescription -cyanogenmod.weather.WeatherInfo$Builder: double mWindSpeed -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void innerComplete() -androidx.appcompat.R$styleable: int TextAppearance_android_textColor -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: boolean requestDismissAndStartActivity(android.content.Intent) -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customBoolean -io.reactivex.Observable: io.reactivex.Observable switchMapDelayError(io.reactivex.functions.Function) -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: long serialVersionUID -com.google.android.gms.common.api.GoogleApiClient: void registerConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) -androidx.lifecycle.ProcessLifecycleOwner$3: ProcessLifecycleOwner$3(androidx.lifecycle.ProcessLifecycleOwner) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: ObservableBufferBoundary$BufferCloseObserver(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver,long) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.tencent.bugly.crashreport.crash.anr.b: boolean f() -androidx.preference.R$id: int accessibility_custom_action_18 -androidx.appcompat.R$styleable: int AppCompatTheme_panelBackground -okio.ByteString: java.lang.String base64Url() -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextColor(android.content.res.ColorStateList) -retrofit2.Retrofit: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[]) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBaseline_creator -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation RIGHT -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -com.google.android.material.R$styleable: int[] ActivityChooserView -io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,io.reactivex.ObservableSource) -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -androidx.preference.R$styleable: int ActionBar_indeterminateProgressStyle -com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_text_size_2line -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Type -com.jaredrummler.android.colorpicker.R$dimen: int abc_disabled_alpha_material_light -com.google.android.material.R$string: int material_timepicker_select_time -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert -androidx.fragment.R$color: R$color() -com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -androidx.appcompat.R$string: int abc_searchview_description_voice -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_handleColor -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks asInterface(android.os.IBinder) -cyanogenmod.weather.WeatherInfo: double getTemperature() -com.google.android.material.button.MaterialButton: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -cyanogenmod.themes.IThemeService: void registerThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) -com.google.android.material.button.MaterialButton: void setBackgroundTintList(android.content.res.ColorStateList) -com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: FloatingActionButton$Behavior(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.motion.widget.MotionLayout: void setTransition(int) -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String unit -androidx.appcompat.R$style: int Widget_AppCompat_ProgressBar -com.google.android.material.R$styleable: int ImageFilterView_saturation -com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar -androidx.constraintlayout.widget.R$styleable: int ActionMode_backgroundSplit -com.google.android.material.R$styleable: int TabLayout_tabIconTint -cyanogenmod.content.Intent: java.lang.String ACTION_THEME_INSTALLED -okio.Okio: okio.Source source(java.io.InputStream,okio.Timeout) -com.turingtechnologies.materialscrollbar.R$attr: int boxBackgroundColor -com.google.android.material.R$color: int design_dark_default_color_primary_variant -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_defaultValue -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3 -androidx.loader.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String unit -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getSupportBackgroundTintList() -androidx.hilt.work.R$id: int accessibility_custom_action_11 -okhttp3.CookieJar$1: java.util.List loadForRequest(okhttp3.HttpUrl) -wangdaye.com.geometricweather.common.ui.transitions.RoundCornerTransition: RoundCornerTransition(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$attr: int layout_editor_absoluteX -wangdaye.com.geometricweather.R$attr: int titleMargin -com.autonavi.aps.amapapi.model.AMapLocationServer: void a(org.json.JSONObject) -com.google.android.material.progressindicator.ProgressIndicator: void setInverse(boolean) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_8 -androidx.appcompat.widget.ActionMenuView: void setOverflowIcon(android.graphics.drawable.Drawable) -androidx.appcompat.R$anim: int abc_slide_in_bottom -okio.DeflaterSink: DeflaterSink(okio.BufferedSink,java.util.zip.Deflater) -okio.Buffer: java.io.InputStream inputStream() -com.google.android.material.R$attr: int customBoolean -wangdaye.com.geometricweather.R$layout: int item_icon_provider -com.google.android.material.R$styleable: int AppCompatTheme_dialogCornerRadius -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Menu -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_SHOW_WEATHER -cyanogenmod.weather.RequestInfo: boolean equals(java.lang.Object) -androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat_Dark -androidx.preference.R$dimen: int abc_text_size_large_material -androidx.appcompat.resources.R$drawable -com.google.android.gms.base.R$drawable: R$drawable() -androidx.preference.R$attr: int fragment -com.tencent.bugly.crashreport.common.info.AppInfo: AppInfo() -com.tencent.bugly.proguard.ak: java.lang.String d -androidx.preference.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -android.didikee.donate.R$string: int search_menu_title -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.Observer downstream -okhttp3.Response$Builder: void checkPriorResponse(okhttp3.Response) -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout -okhttp3.ConnectionPool$1 -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type ERROR -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Dialog_Bridge -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_NIGHT -com.google.android.material.R$anim: int mtrl_bottom_sheet_slide_out -androidx.core.widget.NestedScrollView: int getNestedScrollAxes() -wangdaye.com.geometricweather.R$drawable: int notif_temp_69 -androidx.preference.R$styleable: int ColorStateListItem_alpha -android.didikee.donate.R$attr: int commitIcon -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -androidx.appcompat.R$attr: int track -wangdaye.com.geometricweather.R$color: int dim_foreground_material_light -wangdaye.com.geometricweather.R$layout: int design_layout_snackbar_include -androidx.hilt.R$styleable -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ButtonBar -com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.c a(int,android.content.Context,boolean,com.tencent.bugly.BuglyStrategy$a,com.tencent.bugly.proguard.o,java.lang.String) -android.didikee.donate.R$attr: int popupMenuStyle -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_cursor_material -io.reactivex.Observable: io.reactivex.Observable concatArrayEagerDelayError(io.reactivex.ObservableSource[]) -com.google.android.material.R$drawable: int abc_ab_share_pack_mtrl_alpha -james.adaptiveicon.R$attr: int listPreferredItemPaddingRight -com.turingtechnologies.materialscrollbar.R$id: int action_bar_spinner -com.google.android.material.textfield.TextInputLayout: void addOnEditTextAttachedListener(com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener) -androidx.coordinatorlayout.R$style: int Widget_Compat_NotificationActionText -com.tencent.bugly.proguard.c: java.util.HashMap e -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Title -com.google.android.material.R$color: int test_mtrl_calendar_day_selected -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr Precip1hr -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog -com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialCardView -okhttp3.internal.http2.Http2Writer: okio.Buffer hpackBuffer -cyanogenmod.app.IPartnerInterface -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox -wangdaye.com.geometricweather.R$drawable: int notif_temp_94 -wangdaye.com.geometricweather.R$attr: int windowActionBar -okhttp3.OkHttpClient: java.util.List connectionSpecs() -androidx.preference.R$attr: int switchStyle -androidx.loader.R$styleable: int GradientColor_android_endY -com.amap.api.location.AMapLocation: java.lang.String f(com.amap.api.location.AMapLocation,java.lang.String) -android.didikee.donate.R$string: int abc_capital_on -com.google.android.material.chip.Chip: void setChipCornerRadiusResource(int) -okhttp3.internal.http2.Http2Connection: boolean shutdown -androidx.legacy.coreutils.R$dimen: int compat_button_inset_vertical_material -androidx.transition.R$dimen: int notification_large_icon_width -cyanogenmod.app.ProfileManager: android.content.Context mContext -androidx.viewpager.widget.PagerTabStrip: int getTabIndicatorColor() -androidx.viewpager2.R$dimen: int notification_action_icon_size -com.google.android.material.R$styleable: int Insets_paddingBottomSystemWindowInsets -androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context) -cyanogenmod.weather.CMWeatherManager$2$2: void run() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMarkTint -com.tencent.bugly.crashreport.biz.UserInfoBean: long i -cyanogenmod.hardware.IThermalListenerCallback$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.R$styleable: int AlertDialog_buttonPanelSideLayout -com.google.android.material.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -okhttp3.internal.annotations.EverythingIsNonNull -wangdaye.com.geometricweather.R$styleable: int MotionHelper_onShow -com.jaredrummler.android.colorpicker.R$style: int Preference_Category_Material -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_seekBarStyle -cyanogenmod.weather.ICMWeatherManager -com.google.android.material.appbar.AppBarLayout$BaseBehavior$SavedState: android.os.Parcelable$Creator CREATOR -androidx.appcompat.R$styleable: int MenuItem_android_title -com.google.android.material.R$dimen: int abc_text_size_title_material_toolbar -androidx.lifecycle.GeneratedAdapter -com.xw.repo.bubbleseekbar.R$color: int material_grey_100 -com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen -com.google.android.material.R$styleable: int Toolbar_collapseContentDescription -okhttp3.internal.ws.RealWebSocket: int receivedCloseCode -androidx.constraintlayout.widget.R$attr: int numericModifiers -androidx.appcompat.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -okhttp3.internal.http2.Http2Codec: okhttp3.Response$Builder readResponseHeaders(boolean) -androidx.loader.R$styleable: int[] GradientColorItem -cyanogenmod.power.IPerformanceManager$Stub$Proxy: void cpuBoost(int) -androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache$CallbackInfo getInfo(java.lang.Class) -com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Class,java.lang.Class) -com.google.android.material.card.MaterialCardView: void setRippleColor(android.content.res.ColorStateList) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onComplete() -com.jaredrummler.android.colorpicker.R$attr: int contentInsetRight -wangdaye.com.geometricweather.R$styleable: int[] MenuItem -com.google.android.material.R$attr: int tabIndicatorColor -com.google.android.material.R$attr: int boxCornerRadiusTopStart -okhttp3.internal.platform.Platform: void logCloseableLeak(java.lang.String,java.lang.Object) -com.google.android.material.R$styleable: int Spinner_android_prompt -com.google.android.material.R$dimen: int design_snackbar_extra_spacing_horizontal -com.tencent.bugly.crashreport.common.info.PlugInBean: int describeContents() -com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String g(android.content.Context) -okhttp3.CookieJar$1 -wangdaye.com.geometricweather.R$animator: int weather_fog_3 -com.google.android.material.R$color: int mtrl_fab_ripple_color -com.google.android.material.R$attr: int layout_goneMarginBottom -wangdaye.com.geometricweather.common.basic.GeoViewModel: GeoViewModel(android.app.Application) -wangdaye.com.geometricweather.R$animator: int mtrl_fab_transformation_sheet_collapse_spec -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2(androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription) -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorGravity(int) -com.google.android.material.R$styleable: int DrawerArrowToggle_color -com.google.android.gms.common.internal.BinderWrapper -wangdaye.com.geometricweather.R$id: int chip_group -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: long serialVersionUID -androidx.preference.R$attr: int buttonGravity -com.google.android.material.R$styleable: int MaterialCheckBox_buttonTint -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analogContainer_dark -androidx.preference.R$attr: int layout_behavior -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showColorShades -com.google.android.material.transformation.FabTransformationScrimBehavior: FabTransformationScrimBehavior() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Switch -com.google.gson.internal.JsonReaderInternalAccess: com.google.gson.internal.JsonReaderInternalAccess INSTANCE -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Action -okhttp3.internal.http2.Settings: int MAX_CONCURRENT_STREAMS -okio.Pipe: okio.Source source -com.turingtechnologies.materialscrollbar.R$attr: int barLength -wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_allowDividerAfterLastItem -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerError(java.lang.Throwable) -androidx.appcompat.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog -com.xw.repo.bubbleseekbar.R$attr: int alertDialogButtonGroupStyle -com.google.android.gms.base.R$attr: int circleCrop -android.didikee.donate.R$dimen: R$dimen() -com.google.android.material.R$styleable: int Slider_trackColor -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_trackTint -com.google.android.material.R$attr: int switchMinWidth -wangdaye.com.geometricweather.R$attr: int textEndPadding -androidx.lifecycle.extensions.R$dimen: int compat_button_padding_horizontal_material -androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableItem -androidx.appcompat.R$style: int Widget_AppCompat_Toolbar -com.google.android.material.R$styleable: int AppCompatTheme_colorBackgroundFloating -androidx.constraintlayout.widget.R$attr: int mock_labelColor -androidx.appcompat.R$id: int default_activity_button -com.turingtechnologies.materialscrollbar.R$styleable: int[] Toolbar -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Selected -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() -okhttp3.OkHttpClient: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner -okhttp3.Protocol: okhttp3.Protocol HTTP_1_0 -james.adaptiveicon.R$styleable: int MenuItem_android_checkable -wangdaye.com.geometricweather.R$attr: int transitionShapeAppearance -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay valueOf(java.lang.String) -okhttp3.internal.Util: void addSuppressedIfPossible(java.lang.Throwable,java.lang.Throwable) -james.adaptiveicon.R$drawable: int abc_cab_background_top_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf -com.tencent.bugly.proguard.i$a: i$a() -com.google.android.material.R$id: int tag_accessibility_actions -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type LEFT -com.amap.api.location.AMapLocationClientOption: boolean isLocationCacheEnable() -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Bridge -okhttp3.internal.Internal: okhttp3.internal.connection.StreamAllocation streamAllocation(okhttp3.Call) -wangdaye.com.geometricweather.R$styleable: int ActionBar_logo -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler getInstance() -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -com.google.android.material.R$styleable: int TextInputLayout_boxBackgroundColor -com.jaredrummler.android.colorpicker.R$dimen: int abc_seekbar_track_progress_height_material -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.lang.String MobileLink -wangdaye.com.geometricweather.R$array: int widget_styles -com.google.android.material.slider.BaseSlider: void setThumbRadius(int) -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_normal -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.functions.Function mapper -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitationProbability(java.lang.Float) -com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_focused -wangdaye.com.geometricweather.R$styleable: int MenuItem_showAsAction -wangdaye.com.geometricweather.R$styleable: int OnSwipe_maxVelocity -okhttp3.internal.http2.Http2Stream$StreamTimeout: okhttp3.internal.http2.Http2Stream this$0 -okhttp3.internal.http2.Http2Reader: boolean nextFrame(boolean,okhttp3.internal.http2.Http2Reader$Handler) -james.adaptiveicon.R$attr: int commitIcon -androidx.constraintlayout.widget.R$color: int ripple_material_dark -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginEnd -wangdaye.com.geometricweather.R$styleable: int Toolbar_buttonGravity -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_1 -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_measureWithLargestChild -androidx.appcompat.R$attr: int autoSizeMinTextSize -wangdaye.com.geometricweather.R$string: int key_daily_trend_display -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_content_inset_with_nav -androidx.preference.R$attr: int listPreferredItemPaddingEnd -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean access$702(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,boolean) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onError(java.lang.Throwable) -androidx.hilt.work.R$id: int accessibility_custom_action_29 -androidx.preference.R$styleable: int RecyclerView_layoutManager -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -io.reactivex.internal.observers.DeferredScalarObserver: io.reactivex.disposables.Disposable upstream -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_setDefaultLiveLockScreen -androidx.appcompat.resources.R$styleable: int GradientColor_android_endX -okhttp3.Route: java.net.InetSocketAddress inetSocketAddress -androidx.appcompat.R$style: int Widget_AppCompat_Light_SearchView -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: MfRainResult() -com.google.android.material.R$styleable: int Slider_android_value -com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getRippleColorStateList() -androidx.work.R$id: int accessibility_custom_action_1 -androidx.lifecycle.LiveData$ObserverWrapper -okhttp3.internal.cache.DiskLruCache$Editor: void abortUnlessCommitted() -com.jaredrummler.android.colorpicker.R$dimen: int hint_alpha_material_dark -cyanogenmod.app.ICustomTileListener$Stub: java.lang.String DESCRIPTOR -com.tencent.bugly.crashreport.common.info.a: java.util.Set E() -wangdaye.com.geometricweather.R$attr: int key -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_31 -com.google.android.material.R$string: int abc_searchview_description_query -androidx.hilt.work.R$id: int visible_removing_fragment_view_tag -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListMenuView -com.turingtechnologies.materialscrollbar.R$attr: int msb_autoHide -james.adaptiveicon.R$id: int normal -com.google.android.material.R$layout: int mtrl_alert_dialog_actions -androidx.preference.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -james.adaptiveicon.R$attr: int contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$styleable: int Slider_thumbColor -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean appendWholeNativeLog(java.lang.String) -androidx.preference.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconMode -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean notificationGroupExistsByName(java.lang.String) -com.google.android.material.R$color: int bright_foreground_inverse_material_dark -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: AccuCurrentResult$PrecipitationSummary() -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorSchemeResources(int[]) -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: void onThermalChanged(int) -io.reactivex.internal.util.VolatileSizeArrayList: boolean isEmpty() -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$height -wangdaye.com.geometricweather.R$string: int glide -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_menuCategory -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_android_thumb -androidx.preference.R$styleable: int Toolbar_titleMarginStart -cyanogenmod.power.IPerformanceManager$Stub$Proxy: boolean setPowerProfile(int) -com.google.android.material.R$style: int Widget_AppCompat_Button_Borderless -com.google.android.material.R$attr: int colorOnPrimarySurface -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial Imperial -com.google.android.material.R$dimen: int notification_large_icon_width -cyanogenmod.content.Intent: java.lang.String ACTION_THEME_REMOVED -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerColor -androidx.vectordrawable.R$id: int accessibility_custom_action_18 -io.reactivex.Observable: io.reactivex.Observable switchMap(io.reactivex.functions.Function,int) -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.view.WindowManager mWindowManager -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit M -androidx.constraintlayout.widget.R$color: int background_material_dark -okio.Okio: okio.Sink blackhole() -androidx.constraintlayout.widget.R$styleable: int View_android_theme -androidx.appcompat.widget.AppCompatSpinner: void setPopupBackgroundResource(int) -com.tencent.bugly.crashreport.biz.UserInfoBean: long g -io.reactivex.internal.disposables.ArrayCompositeDisposable -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: MfWarningsResult$WarningTimelaps$WarningTimelapsItem() -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_20 -com.google.android.material.R$attr: int collapsingToolbarLayoutStyle -cyanogenmod.app.ProfileManager: java.lang.String[] getProfileNames() -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: FitSystemBarSwipeRefreshLayout(android.content.Context,android.util.AttributeSet) -androidx.preference.R$styleable: int RecyclerView_android_clipToPadding -okhttp3.Protocol: okhttp3.Protocol HTTP_2 -com.google.android.material.R$dimen: int abc_action_bar_content_inset_with_nav -james.adaptiveicon.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$styleable: int[] MotionHelper -com.xw.repo.bubbleseekbar.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String unit -okio.Buffer: okio.ByteString digest(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_DialogWhenLarge -james.adaptiveicon.R$styleable: int[] AppCompatSeekBar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.lang.String unit -com.tencent.bugly.proguard.v: boolean a(com.tencent.bugly.proguard.an,com.tencent.bugly.crashreport.common.info.a,com.tencent.bugly.crashreport.common.strategy.a) -com.bumptech.glide.R$id: int action_divider -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.R$color: int material_on_surface_stroke -okio.Buffer: long completeSegmentByteCount() -com.google.android.material.slider.Slider: float getValueFrom() -com.google.android.material.R$styleable: int AppCompatTheme_selectableItemBackground -okhttp3.internal.cache.CacheInterceptor: okhttp3.Headers combine(okhttp3.Headers,okhttp3.Headers) -okio.Buffer: int readIntLe() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionBarOverlay -androidx.viewpager.R$id: int async -com.google.android.material.R$dimen: int mtrl_btn_inset -james.adaptiveicon.R$drawable: int abc_tab_indicator_material -com.xw.repo.bubbleseekbar.R$id: int action_mode_bar -okhttp3.Response$Builder: okhttp3.Response$Builder removeHeader(java.lang.String) -com.google.android.material.bottomappbar.BottomAppBar: void setFabAlignmentMode(int) -okio.Buffer: int hashCode() -androidx.constraintlayout.widget.ConstraintLayout: void setMaxWidth(int) -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit valueOf(java.lang.String) -com.jaredrummler.android.colorpicker.R$drawable: int abc_vector_test -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -com.xw.repo.bubbleseekbar.R$layout: int abc_action_menu_layout -com.jaredrummler.android.colorpicker.R$attr: int initialExpandedChildrenCount -androidx.constraintlayout.widget.R$styleable: int Constraint_transitionEasing -wangdaye.com.geometricweather.R$id: int item_details -androidx.coordinatorlayout.R$attr: int coordinatorLayoutStyle -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: LiveDataReactiveStreams$PublisherLiveData(org.reactivestreams.Publisher) -androidx.constraintlayout.widget.ConstraintLayout: void setConstraintSet(androidx.constraintlayout.widget.ConstraintSet) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: int UnitType -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String getUpdateIntervalName(android.content.Context) -okio.Buffer$UnsafeCursor: int end -wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_initialExpandedChildrenCount -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_NoActionBar_Bridge -androidx.activity.R$styleable: int GradientColor_android_centerColor -androidx.work.R$id: int tag_screen_reader_focusable -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -okhttp3.MultipartBody: void writeTo(okio.BufferedSink) -cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem(cyanogenmod.app.CustomTile$1) -okhttp3.internal.io.FileSystem$1 -androidx.preference.R$attr: int autoSizeMinTextSize -androidx.constraintlayout.helper.widget.Layer: void setElevation(float) -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.identityscope.IdentityScope identityScope -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings -james.adaptiveicon.R$styleable: int ActionBar_displayOptions -com.turingtechnologies.materialscrollbar.R$styleable: int[] StateListDrawable -cyanogenmod.weather.WeatherInfo: boolean access$000(int) -wangdaye.com.geometricweather.background.polling.PollingUpdateHelper -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: long EpochDateTime -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintTextAppearance -com.google.android.material.R$dimen: int mtrl_calendar_header_selection_line_height -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onFailed() -androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_Toolbar -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Subhead_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setWeather(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconDrawable -com.tencent.bugly.proguard.b -wangdaye.com.geometricweather.db.entities.DailyEntity: void setSo2(java.lang.Float) -androidx.preference.R$dimen: int abc_action_bar_elevation_material -wangdaye.com.geometricweather.R$id: int widget_day_week_time -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_32 -com.bumptech.glide.R$id: int text -androidx.appcompat.R$styleable: int ViewStubCompat_android_id -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_subhead_material -com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_bottom -android.didikee.donate.R$styleable: int AppCompatTheme_editTextColor -com.google.android.material.R$attr: int actionBarTabBarStyle -james.adaptiveicon.R$styleable: int View_android_theme -com.amap.api.fence.GeoFence: java.util.List getPointList() -com.turingtechnologies.materialscrollbar.R$string: int abc_shareactionprovider_share_with -androidx.preference.R$styleable: int AppCompatTheme_buttonStyle -cyanogenmod.hardware.ICMHardwareService: int getThermalState() -com.xw.repo.bubbleseekbar.R$attr: int queryBackground -androidx.appcompat.R$dimen: int abc_dialog_padding_top_material -cyanogenmod.themes.ThemeManager: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) -io.reactivex.internal.observers.BlockingObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.viewpager.widget.ViewPager: int getClientWidth() -androidx.swiperefreshlayout.R$layout: R$layout() -android.didikee.donate.R$styleable: int MenuItem_alphabeticModifiers -androidx.legacy.coreutils.R$styleable: int GradientColor_android_tileMode -io.reactivex.Observable: io.reactivex.Observable throttleLast(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$attr: int searchViewStyle -wangdaye.com.geometricweather.R$id: int withText -okhttp3.internal.cache.InternalCache: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) -com.tencent.bugly.proguard.x: boolean e(java.lang.String,java.lang.Object[]) -com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Object,java.util.List) -androidx.preference.R$id: int search_voice_btn -com.jaredrummler.android.colorpicker.R$attr: int dividerHorizontal -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_headerLayout -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver -wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem -wangdaye.com.geometricweather.R$id: int autoCompleteToEnd -cyanogenmod.weatherservice.IWeatherProviderServiceClient -com.tencent.bugly.crashreport.common.info.a: java.lang.String ap -androidx.constraintlayout.widget.R$attr: int percentY -com.google.android.material.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -com.google.android.material.R$styleable: int AppCompatTheme_windowMinWidthMinor -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeTopRight -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int HAS_REQUEST_NO_VALUE -com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierDirection -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerY -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_ttcIndex -okhttp3.internal.http2.Http2Writer: void goAway(int,okhttp3.internal.http2.ErrorCode,byte[]) -androidx.appcompat.R$style: int Base_Widget_AppCompat_Spinner_Underlined -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.Window access$200(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.common.basic.models.weather.Alert -androidx.appcompat.widget.SwitchCompat: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -com.turingtechnologies.materialscrollbar.R$style: int CardView_Light -androidx.appcompat.widget.ActionBarOverlayLayout: void setWindowTitle(java.lang.CharSequence) -com.google.android.material.R$attr: int titleTextAppearance -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_21 -cyanogenmod.platform.Manifest$permission: java.lang.String OBSERVE_AUDIO_SESSIONS -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionMode -com.google.android.material.R$layout: int mtrl_alert_dialog_title -okio.RealBufferedSource: java.io.InputStream inputStream() -androidx.fragment.R$id: int accessibility_custom_action_28 -androidx.appcompat.view.menu.StandardMenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -androidx.viewpager.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature Temperature -com.google.android.material.R$attr: int buttonPanelSideLayout -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTintMode -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: int rightIndex -androidx.preference.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getRealFeelShaderTemperature() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: boolean done -android.didikee.donate.R$id: int action_mode_bar_stub -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String color -androidx.viewpager.R$styleable: int FontFamily_fontProviderAuthority -androidx.constraintlayout.widget.R$id: int pathRelative -wangdaye.com.geometricweather.R$string: int feedback_cannot_start_live_wallpaper_activity -androidx.hilt.R$styleable: int FontFamilyFont_ttcIndex -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_ripple_color -com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getEndIconDrawable() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackground(android.graphics.drawable.Drawable) -androidx.preference.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalStyle -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_popupTheme -androidx.preference.R$attr: int colorControlHighlight -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_PRECIPITATION -com.turingtechnologies.materialscrollbar.R$color: int primary_text_disabled_material_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_95 -androidx.constraintlayout.widget.R$attr: int autoCompleteTextViewStyle -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Title_Inverse -io.reactivex.internal.subscriptions.BasicIntQueueSubscription -wangdaye.com.geometricweather.R$attr: int contentPaddingBottom -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar_FullWidth -okio.Buffer$UnsafeCursor: Buffer$UnsafeCursor() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FAIR_NIGHT -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: ObservableFlatMap$MergeObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean,int,int) -wangdaye.com.geometricweather.R$attr: int colorBackgroundFloating -com.turingtechnologies.materialscrollbar.R$id: int textinput_helper_text -com.google.android.material.R$attr: int flow_lastHorizontalStyle -com.turingtechnologies.materialscrollbar.R$attr: int showText -com.google.android.material.R$color: int abc_tint_btn_checkable -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog_Alert -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: int getCircularRevealScrimColor() -james.adaptiveicon.R$dimen: int abc_dialog_fixed_width_major -cyanogenmod.externalviews.KeyguardExternalView: void binderDied() -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long serialVersionUID -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isShow -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTemperature(int) -com.turingtechnologies.materialscrollbar.R$drawable: int notification_template_icon_bg -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void drainLoop() -okhttp3.Response: okhttp3.Response priorResponse() -androidx.loader.R$style: int TextAppearance_Compat_Notification_Title -com.google.android.material.R$styleable: int MenuItem_tooltipText -wangdaye.com.geometricweather.R$attr: int summary -androidx.preference.R$layout: int abc_list_menu_item_radio -io.reactivex.internal.observers.BlockingObserver: java.util.Queue queue -cyanogenmod.app.ICMStatusBarManager: void removeCustomTileFromListener(cyanogenmod.app.ICustomTileListener,java.lang.String,java.lang.String,int) -androidx.work.R$styleable: int ColorStateListItem_android_color -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_title -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_navigationMode -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit MPH -androidx.work.R$dimen: int compat_button_inset_horizontal_material -androidx.constraintlayout.widget.R$id: int top -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean disposed -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Red -androidx.constraintlayout.widget.R$id: int tabMode -androidx.appcompat.R$attr: int windowActionBarOverlay -com.google.android.material.button.MaterialButtonToggleGroup: int getVisibleButtonCount() -com.google.android.material.R$dimen: int mtrl_low_ripple_pressed_alpha -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarWidgetTheme -cyanogenmod.weatherservice.WeatherProviderService$1: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) -com.tencent.bugly.proguard.c: c() -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_icon_vertical_padding_material -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerComplete() -james.adaptiveicon.R$styleable: int Toolbar_contentInsetStartWithNavigation -com.google.android.material.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property No2 -wangdaye.com.geometricweather.R$color: int mtrl_textinput_focused_box_stroke_color -wangdaye.com.geometricweather.R$color: int colorAccent -androidx.preference.SwitchPreference: SwitchPreference(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$color: int abc_hint_foreground_material_dark -james.adaptiveicon.R$layout: int abc_screen_toolbar -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_text_size -com.google.android.material.R$styleable: int TextAppearance_android_textFontWeight -androidx.lifecycle.MediatorLiveData$Source: void plug() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder username(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Chip_textEndPadding -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableItem_android_id -okhttp3.internal.ws.RealWebSocket: void awaitTermination(int,java.util.concurrent.TimeUnit) -com.google.android.material.R$style: int Base_Widget_AppCompat_Spinner -cyanogenmod.weather.WeatherInfo: java.lang.String access$202(cyanogenmod.weather.WeatherInfo,java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int[] LinearLayoutCompat_Layout -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String zone -com.google.android.material.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_iconResStart -androidx.recyclerview.R$id: int dialog_button -cyanogenmod.profiles.BrightnessSettings: void writeToParcel(android.os.Parcel,int) -androidx.preference.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_barLength -androidx.preference.R$layout: int notification_template_custom_big -okhttp3.internal.http2.Http2Connection: void writeSynReset(int,okhttp3.internal.http2.ErrorCode) -com.google.android.material.appbar.ViewOffsetBehavior: ViewOffsetBehavior(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$styleable: int Layout_barrierAllowsGoneWidgets -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean delayError -com.google.android.material.R$id: int action_bar_spinner -com.google.android.material.R$styleable: int TextAppearance_textAllCaps -com.google.android.material.R$id: int accessibility_custom_action_25 -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps -wangdaye.com.geometricweather.R$string: int feedback_interpret_background_notification_content -com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_icon -androidx.hilt.lifecycle.R$id: int tag_accessibility_actions -wangdaye.com.geometricweather.R$id: int notification_big_temp_3 -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_touch_to_seek -com.jaredrummler.android.colorpicker.R$dimen: int compat_notification_large_icon_max_width -androidx.preference.R$dimen: int abc_text_size_headline_material -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabBar -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_textOff -com.jaredrummler.android.colorpicker.R$integer: int config_tooltipAnimTime -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_borderless_material -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_DayNight -androidx.hilt.R$layout -androidx.work.R$id: int normal -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange Past6HourRange -okhttp3.internal.http2.Header: okio.ByteString value -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_setBtn -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String zh_TW -androidx.hilt.work.R$id: int accessibility_custom_action_27 -com.tencent.bugly.proguard.u: boolean a(java.lang.Runnable,boolean) -com.bumptech.glide.integration.okhttp.R$id: int glide_custom_view_target_tag -androidx.hilt.work.R$id: int blocking -androidx.preference.R$attr: int thumbTint -com.tencent.bugly.proguard.u: java.lang.String k -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String value -com.google.android.material.textfield.TextInputLayout: android.graphics.Typeface getTypeface() -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void dispose() -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalStyle -com.xw.repo.bubbleseekbar.R$attr: int colorControlActivated -wangdaye.com.geometricweather.R$attr: int autoTransition -com.amap.api.location.AMapLocationClientOption: boolean p -androidx.activity.R$styleable: int GradientColor_android_startX -okhttp3.internal.cache2.Relay$RelaySource: long sourcePos -com.xw.repo.bubbleseekbar.R$dimen: int abc_progress_bar_height_material -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_1 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.lang.String getUnit() -com.bumptech.glide.R$layout: R$layout() -androidx.work.R$drawable: int notification_bg_normal -androidx.appcompat.R$dimen: int abc_alert_dialog_button_dimen -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -com.google.android.gms.common.api.GoogleApiClient -androidx.constraintlayout.widget.R$attr: int splitTrack -com.google.android.material.R$styleable: int KeyTimeCycle_motionTarget -com.jaredrummler.android.colorpicker.R$attr: int iconifiedByDefault -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_showText -james.adaptiveicon.AdaptiveIconView: james.adaptiveicon.AdaptiveIcon getIcon() -androidx.preference.R$style: int TextAppearance_AppCompat_Display3 -android.didikee.donate.R$dimen: int abc_text_size_medium_material -android.didikee.donate.R$dimen: int highlight_alpha_material_light -com.google.android.material.R$dimen: int abc_edit_text_inset_horizontal_material -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderPackage -cyanogenmod.externalviews.ExternalViewProviderService: android.view.WindowManager mWindowManager -androidx.vectordrawable.R$styleable: int GradientColorItem_android_offset -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -androidx.viewpager2.R$styleable: int FontFamilyFont_fontStyle -androidx.appcompat.R$drawable: int abc_scrubber_control_off_mtrl_alpha -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType GPS -androidx.preference.R$styleable: int DialogPreference_dialogTitle -com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_margin -com.google.android.material.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -wangdaye.com.geometricweather.R$styleable: int Slider_android_value -cyanogenmod.themes.ThemeManager: boolean isThemeBeingProcessed(java.lang.String) -android.support.v4.os.ResultReceiver: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow1h -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver -com.google.android.material.R$style: int Theme_MaterialComponents_DialogWhenLarge -com.turingtechnologies.materialscrollbar.R$attr: int bottomSheetDialogTheme -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTrendTemperature(android.content.Context,java.lang.Integer,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -cyanogenmod.externalviews.KeyguardExternalView: void onScreenTurnedOn() -androidx.constraintlayout.helper.widget.Layer: void setPivotY(float) -wangdaye.com.geometricweather.R$layout: int activity_alert -okhttp3.RealCall: okhttp3.OkHttpClient client -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -android.didikee.donate.R$id: int search_plate -cyanogenmod.app.Profile$ProfileTrigger$1: java.lang.Object[] newArray(int) -com.google.android.material.R$color: int mtrl_bottom_nav_item_tint -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean isCancelled() -wangdaye.com.geometricweather.R$attr: int fabAlignmentMode -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_AES_256_CBC_SHA -okhttp3.internal.connection.RouteSelector: void resetNextProxy(okhttp3.HttpUrl,java.net.Proxy) -android.didikee.donate.R$id: int useLogo -com.google.android.material.R$styleable: int Layout_layout_constraintLeft_toLeftOf -james.adaptiveicon.R$styleable: int FontFamily_fontProviderQuery -androidx.viewpager2.R$layout: int notification_template_part_chronometer -androidx.appcompat.R$id: int listMode -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_showTitle -androidx.vectordrawable.animated.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$string: int abc_menu_delete_shortcut_label -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_headerBackground -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onStart_1 -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -androidx.appcompat.R$id: int list_item -wangdaye.com.geometricweather.db.entities.AlertEntityDao: AlertEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -android.support.v4.os.ResultReceiver: int describeContents() -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endY -com.jaredrummler.android.colorpicker.R$dimen: int notification_big_circle_margin -com.google.android.material.circularreveal.CircularRevealFrameLayout: int getCircularRevealScrimColor() -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_COOL -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float snowPrecipitationProbability -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_overflow_padding_start_material -okio.InflaterSource -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_holo_dark -cyanogenmod.hardware.CMHardwareManager: int FEATURE_SUNLIGHT_ENHANCEMENT -android.didikee.donate.R$id: int search_bar -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -androidx.appcompat.R$attr: int colorButtonNormal -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSyncDuration -com.jaredrummler.android.colorpicker.R$id: int scrollView -com.tencent.bugly.crashreport.common.info.a: java.lang.String g -cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener val$listener -wangdaye.com.geometricweather.R$style: int Widget_Design_ScrimInsetsFrameLayout -com.xw.repo.bubbleseekbar.R$attr: int allowStacking -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_motionTarget -cyanogenmod.providers.CMSettings$System: float getFloat(android.content.ContentResolver,java.lang.String,float) -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void subscribeNext() -james.adaptiveicon.R$styleable: int MenuView_android_headerBackground -okhttp3.internal.http2.Http2Codec: java.lang.String HOST -com.tencent.bugly.crashreport.biz.a: com.tencent.bugly.crashreport.biz.UserInfoBean a(android.database.Cursor) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorViewAlpha(int) -com.google.gson.stream.JsonReader: int lineNumber -com.jaredrummler.android.colorpicker.R$attr: int defaultQueryHint -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Menu -wangdaye.com.geometricweather.common.basic.models.weather.Base: long updateTime -com.google.android.material.R$styleable: int MaterialCalendar_yearStyle -com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.am a(android.content.Context,int,byte[]) -okhttp3.EventListener$2 -com.google.android.material.R$id: int search_src_text -androidx.appcompat.widget.ActionBarContextView: void setCustomView(android.view.View) -com.google.android.material.R$styleable: int FloatingActionButton_shapeAppearanceOverlay -wangdaye.com.geometricweather.R$id: int item_about_header_appIcon -cyanogenmod.themes.ThemeChangeRequest$1: cyanogenmod.themes.ThemeChangeRequest[] newArray(int) -okhttp3.OkHttpClient$1: boolean isInvalidHttpUrlHost(java.lang.IllegalArgumentException) -com.google.android.material.R$color: int design_dark_default_color_on_error -androidx.hilt.R$attr -wangdaye.com.geometricweather.R$attr: int layout_constraintRight_toRightOf -io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String,int) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: java.lang.String Unit -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_content_padding -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String cityId -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onComplete() -com.tencent.bugly.proguard.ab: byte[] b(byte[]) -com.google.android.material.R$attr: int layout_anchor -retrofit2.ServiceMethod -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.List getValue() -org.greenrobot.greendao.AbstractDao: void updateInTx(java.lang.Object[]) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getZh_CN() -wangdaye.com.geometricweather.R$styleable: int MenuView_subMenuArrow -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: KeyguardExternalViewProviderService$Provider$ProviderImpl$8(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,float) -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: float getPressure(float) -com.google.android.material.R$styleable: int Transform_android_transformPivotX -androidx.vectordrawable.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$string: int pressure -com.bumptech.glide.R$id: int action_container -androidx.activity.R$id: int accessibility_custom_action_24 -androidx.preference.R$styleable: int[] LinearLayoutCompat -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int IconCode -androidx.preference.R$dimen: int preference_dropdown_padding_start -wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_min -android.didikee.donate.R$anim: int abc_fade_out -com.google.android.material.R$styleable: int SwitchMaterial_useMaterialThemeColors -cyanogenmod.externalviews.KeyguardExternalView$1: void onServiceConnected(android.content.ComponentName,android.os.IBinder) -wangdaye.com.geometricweather.R$string: int off -io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicLong missedRequested -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -com.jaredrummler.android.colorpicker.R$styleable: int[] ListPreference -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: android.os.IBinder asBinder() -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder queryOnly() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setBrandId(java.lang.String) -androidx.preference.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -okhttp3.Request: java.util.Map tags -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver parent -androidx.vectordrawable.animated.R$dimen: int compat_button_inset_vertical_material -com.google.android.material.R$styleable: int RecyclerView_stackFromEnd -androidx.activity.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.R$attr: int clickAction -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_font -androidx.constraintlayout.widget.R$attr: int barrierMargin -com.google.android.material.R$dimen: int mtrl_btn_disabled_z -com.google.android.material.R$drawable: int abc_cab_background_internal_bg -com.xw.repo.bubbleseekbar.R$attr: int progressBarPadding -androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_button_bar_material -wangdaye.com.geometricweather.R$color: int colorAccent_dark -androidx.preference.R$dimen: int abc_disabled_alpha_material_light -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(io.reactivex.Scheduler) -io.reactivex.internal.subscriptions.DeferredScalarSubscription -androidx.hilt.lifecycle.R$drawable: int notification_template_icon_low_bg -cyanogenmod.app.ProfileManager: boolean isProfilesEnabled() -cyanogenmod.app.Profile$TriggerState: int ON_A2DP_DISCONNECT -androidx.appcompat.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: long EpochStartTime -androidx.fragment.R$color: int notification_icon_bg_color -androidx.work.R$styleable: int FontFamilyFont_font -com.tencent.bugly.crashreport.R$string: int app_name -com.google.android.material.R$dimen: int mtrl_slider_label_square_side -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -cyanogenmod.app.ICustomTileListener$Stub: ICustomTileListener$Stub() -androidx.appcompat.R$drawable: int notification_bg_low_normal -com.turingtechnologies.materialscrollbar.R$string: int character_counter_content_description -wangdaye.com.geometricweather.R$id: int ragweedValue -wangdaye.com.geometricweather.R$id: int fade -cyanogenmod.externalviews.ExternalView$4 -james.adaptiveicon.R$drawable: int abc_btn_check_to_on_mtrl_000 -okhttp3.RealCall: boolean isCanceled() -com.google.android.material.R$layout: int design_text_input_start_icon -androidx.dynamicanimation.R$id: int actions -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark_normal -retrofit2.Retrofit: retrofit2.Retrofit$Builder newBuilder() -com.xw.repo.bubbleseekbar.R$attr: int collapseContentDescription -wangdaye.com.geometricweather.R$styleable: int SearchView_android_inputType -com.google.android.material.slider.Slider: int getTrackHeight() -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_seek_thumb -wangdaye.com.geometricweather.R$attr: int listDividerAlertDialog -com.google.android.material.textfield.TextInputLayout: void setHintInternal(java.lang.CharSequence) -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$integer: int bottom_sheet_slide_duration -wangdaye.com.geometricweather.R$attr: int ratingBarStyleSmall -james.adaptiveicon.R$styleable: int AppCompatTheme_listDividerAlertDialog -androidx.hilt.R$attr: int fontWeight -wangdaye.com.geometricweather.R$styleable: int RoundCornerTransition_radius_from -com.turingtechnologies.materialscrollbar.R$integer: int design_tab_indicator_anim_duration_ms -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitation -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -com.turingtechnologies.materialscrollbar.R$attr: int seekBarStyle -androidx.lifecycle.SavedStateHandle: java.lang.Class[] ACCEPTABLE_CLASSES -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_wrapMode -androidx.core.R$id: int tag_screen_reader_focusable -cyanogenmod.profiles.LockSettings: int mValue -james.adaptiveicon.R$attr: int actionBarDivider -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_cancelOngoingRequests -cyanogenmod.power.PerformanceManager: boolean getProfileHasAppProfiles(int) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWeatherText() -androidx.appcompat.widget.ScrollingTabContainerView: void setAllowCollapse(boolean) -com.google.android.material.R$id: int search_plate -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: java.lang.String Unit -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Title -androidx.preference.R$attr: int radioButtonStyle -com.tencent.bugly.crashreport.crash.c: int c -com.google.android.material.R$id: int accessibility_custom_action_13 -com.autonavi.aps.amapapi.model.AMapLocationServer: org.json.JSONObject l -com.google.android.material.R$styleable: int NavigationView_itemShapeInsetStart -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleDrawable(android.graphics.drawable.Drawable) -androidx.hilt.lifecycle.R$attr -wangdaye.com.geometricweather.R$color: int mtrl_btn_text_btn_bg_color_selector -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$attr: int ttcIndex -wangdaye.com.geometricweather.R$attr: int inverse -androidx.appcompat.widget.LinearLayoutCompat: void setBaselineAligned(boolean) -android.didikee.donate.R$color: R$color() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_activated_mtrl_alpha -retrofit2.OkHttpCall$NoContentResponseBody: OkHttpCall$NoContentResponseBody(okhttp3.MediaType,long) -cyanogenmod.app.ILiveLockScreenManagerProvider: boolean getLiveLockScreenEnabled() -wangdaye.com.geometricweather.R$drawable: int abc_popup_background_mtrl_mult -cyanogenmod.os.Concierge: Concierge() -androidx.hilt.work.R$id: int accessibility_custom_action_3 -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startX -androidx.appcompat.resources.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.R$drawable: int notif_temp_52 -wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_bottom_start -com.turingtechnologies.materialscrollbar.R$dimen: int abc_panel_menu_list_width -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTemperature -androidx.transition.R$id: R$id() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_deriveConstraintsFrom -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_margin -com.google.android.material.R$styleable: int MotionHelper_onShow -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_material_light -okhttp3.Cache$CacheRequestImpl$1: void close() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Small -okio.InflaterSource: okio.Timeout timeout() -okhttp3.internal.platform.JdkWithJettyBootPlatform: void afterHandshake(javax.net.ssl.SSLSocket) -androidx.appcompat.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleTitle -androidx.viewpager2.R$styleable: int GradientColor_android_centerY -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -com.amap.api.location.AMapLocationClientOption: boolean isWifiActiveScan() -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: void register(android.content.Context) -okhttp3.OkHttpClient: int pingInterval -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_numericShortcut -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean isDisposed() -androidx.preference.R$drawable: int abc_edit_text_material -com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_icon -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWetBulbTemperature(java.lang.Integer) -androidx.preference.R$styleable: int PreferenceImageView_maxWidth -com.xw.repo.bubbleseekbar.R$attr: int drawerArrowStyle -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontWeight -com.google.android.gms.base.R$string: int common_google_play_services_enable_text -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_stacked_max_height -okhttp3.internal.Util: java.nio.charset.Charset UTF_8 -james.adaptiveicon.R$attr: int actionModeFindDrawable -com.google.android.material.R$styleable: int Constraint_pivotAnchor -androidx.lifecycle.extensions.R$attr: int fontProviderCerts -com.xw.repo.bubbleseekbar.R$styleable: int[] PopupWindowBackgroundState -android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar -okio.GzipSource: int section -com.google.android.material.R$attr: int progressIndicatorStyle -okio.Buffer: int select(okio.Options) -com.google.android.material.floatingactionbutton.FloatingActionButton: void setEnsureMinTouchTargetSize(boolean) -com.turingtechnologies.materialscrollbar.R$id: int decor_content_parent -androidx.lifecycle.AbstractSavedStateViewModelFactory: java.lang.String TAG_SAVED_STATE_HANDLE_CONTROLLER -com.google.android.material.R$style: int ThemeOverlayColorAccentRed -wangdaye.com.geometricweather.R$id: int center -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getAqiText() -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Caption -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_fontFamily -retrofit2.RequestFactory$Builder: java.lang.reflect.Type[] parameterTypes -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.google.android.material.R$interpolator: int mtrl_linear -cyanogenmod.app.Profile: Profile(java.lang.String,int,java.util.UUID) -androidx.work.R$dimen: int notification_large_icon_height -android.didikee.donate.R$attr: int spinBars -androidx.preference.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle -com.google.android.material.chip.Chip: void setChipBackgroundColorResource(int) -retrofit2.Utils: java.lang.Class getRawType(java.lang.reflect.Type) -com.turingtechnologies.materialscrollbar.R$attr: int listMenuViewStyle -androidx.preference.R$style: int Preference_CheckBoxPreference -cyanogenmod.os.Concierge$ParcelInfo: int getParcelVersion() -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver inner -com.turingtechnologies.materialscrollbar.R$integer: int mtrl_btn_anim_duration_ms -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: void clear() -com.google.android.material.chip.Chip: void setChipIcon(android.graphics.drawable.Drawable) -cyanogenmod.profiles.RingModeSettings: RingModeSettings() -com.amap.api.location.AMapLocation: java.lang.String toString() -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags -okhttp3.internal.connection.RealConnection: okhttp3.internal.connection.RealConnection testConnection(okhttp3.ConnectionPool,okhttp3.Route,java.net.Socket,long) -cyanogenmod.app.Profile$ExpandedDesktopMode: int DISABLE -androidx.viewpager2.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.R$styleable: int Layout_layout_editor_absoluteX -androidx.drawerlayout.R$drawable: int notify_panel_notification_icon_bg -com.tencent.bugly.crashreport.crash.h5.a: java.lang.String g -wangdaye.com.geometricweather.R$attr: int showTitle -com.google.android.material.card.MaterialCardView: int getContentPaddingBottom() -androidx.appcompat.R$styleable: int ActionBar_backgroundStacked -org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Iterable,boolean) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar -com.turingtechnologies.materialscrollbar.R$attr: int thumbTint -wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean hasKey(java.lang.Object) -com.google.android.material.slider.RangeSlider: float getThumbElevation() -wangdaye.com.geometricweather.R$array: R$array() -okio.Buffer: okio.BufferedSink write(okio.Source,long) -com.tencent.bugly.b -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.Observer downstream -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean hasNext() -com.google.android.material.R$attr: int tabMinWidth -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_16 -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light_normal_background -com.turingtechnologies.materialscrollbar.R$color: int material_grey_800 -android.didikee.donate.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -cyanogenmod.providers.CMSettings$Secure$1 -wangdaye.com.geometricweather.R$attr: int backgroundColorEnd -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: void run() -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_imageButtonStyle -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorFullWidth -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_elevation -okhttp3.internal.cache.DiskLruCache: boolean remove(java.lang.String) -io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription INSTANCE -wangdaye.com.geometricweather.common.ui.widgets.DonateImageView: DonateImageView(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView -com.jaredrummler.android.colorpicker.R$attr: int fastScrollEnabled -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: AccuDailyResult$DailyForecasts() -androidx.constraintlayout.widget.R$attr: int flow_horizontalAlign -androidx.constraintlayout.helper.widget.Flow: void setHorizontalGap(int) -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status IN_PROGRESS -cyanogenmod.externalviews.ExternalView$6: cyanogenmod.externalviews.ExternalView this$0 -androidx.coordinatorlayout.R$id: int notification_main_column_container -com.google.android.material.R$id: int pathRelative -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit[] values() -wangdaye.com.geometricweather.R$string: int common_google_play_services_enable_title -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onComplete() -androidx.appcompat.R$attr: int tickMark -io.reactivex.internal.operators.observable.ObservableGroupBy$State: io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver parent -androidx.preference.R$id: int search_bar -androidx.preference.R$styleable: int AppCompatTextView_autoSizePresetSizes -androidx.constraintlayout.widget.R$id: int tag_accessibility_heading -com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_top_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline4 -androidx.preference.R$style: int Widget_AppCompat_CompoundButton_RadioButton -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabView -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dividerHorizontal -com.loc.k: java.lang.String d() -com.google.android.material.R$attr: int layout_constraintGuide_percent -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() -androidx.work.R$id: int chronometer -wangdaye.com.geometricweather.R$string: int settings_title_ui_style -com.amap.api.location.AMapLocationQualityReport: java.lang.Object clone() -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -okhttp3.internal.http.StatusLine: okhttp3.internal.http.StatusLine get(okhttp3.Response) -android.didikee.donate.R$style: int Widget_AppCompat_RatingBar_Small -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabTextAppearance -wangdaye.com.geometricweather.db.entities.AlertEntity: void setId(java.lang.Long) -okio.AsyncTimeout: long IDLE_TIMEOUT_MILLIS -cyanogenmod.weather.WeatherInfo: java.lang.String access$1402(cyanogenmod.weather.WeatherInfo,java.lang.String) -androidx.swiperefreshlayout.R$drawable: int notification_bg_normal -james.adaptiveicon.R$attr: int textAppearanceListItemSecondary -cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_PEOPLE_LOOKUP -androidx.lifecycle.extensions.R$color: int secondary_text_default_material_light -com.jaredrummler.android.colorpicker.R$id: int text -com.bumptech.glide.integration.okhttp.R$id: int top -com.tencent.bugly.Bugly: boolean a -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginLeft -okhttp3.internal.http2.Settings: okhttp3.internal.http2.Settings set(int,int) -wangdaye.com.geometricweather.R$dimen: int tooltip_precise_anchor_extra_offset -wangdaye.com.geometricweather.R$styleable: int MenuItem_contentDescription -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: android.os.IBinder mRemote -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult -androidx.preference.R$styleable: int LinearLayoutCompat_android_baselineAligned -com.tencent.bugly.proguard.an: byte a -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit[] values() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_stroke_width_default -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void dispose() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function8) -wangdaye.com.geometricweather.R$attr: int flow_firstVerticalBias -james.adaptiveicon.R$id: int list_item -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: double Value -wangdaye.com.geometricweather.R$animator: int start_shine_2 -android.didikee.donate.R$attr: int indeterminateProgressStyle -com.turingtechnologies.materialscrollbar.R$id: int image -okhttp3.internal.io.FileSystem$1: long size(java.io.File) -androidx.preference.R$dimen: int abc_list_item_height_large_material -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: SingleToObservable$SingleToObservableObserver(io.reactivex.Observer) -org.greenrobot.greendao.DaoException -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: int requestFusion(int) -androidx.constraintlayout.widget.R$id: int notification_main_column -com.google.android.material.R$id: int text_input_end_icon -wangdaye.com.geometricweather.R$styleable: int[] KeyTimeCycle -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: MfForecastV2Result$ForecastProperties$ProbabilityForecastV2() -androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackgroundColor(int) -com.tencent.bugly.proguard.u: long f -cyanogenmod.weatherservice.ServiceRequestResult$Builder -androidx.preference.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.R$id: int uniform -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_headline_material -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTextHelper -com.turingtechnologies.materialscrollbar.R$attr: int textAllCaps -androidx.activity.R$id: int line3 -androidx.drawerlayout.R$drawable: int notification_tile_bg -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -com.tencent.bugly.proguard.u: long q -androidx.constraintlayout.widget.R$attr: int region_widthMoreThan -okhttp3.Route: okhttp3.Address address -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: long serialVersionUID -com.tencent.bugly.proguard.u: void b(boolean) -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeStyle -com.google.android.material.R$layout: int material_clock_period_toggle_land -cyanogenmod.app.CMContextConstants$Features: java.lang.String HARDWARE_ABSTRACTION -com.xw.repo.bubbleseekbar.R$dimen: int abc_alert_dialog_button_dimen -okhttp3.Cookie: boolean persistent -com.bumptech.glide.R$styleable: int[] ColorStateListItem -com.xw.repo.bubbleseekbar.R$dimen: int abc_control_corner_material -com.google.android.material.R$dimen: int mtrl_textinput_box_stroke_width_default -cyanogenmod.app.CMContextConstants$Features -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedWidthMinor -androidx.preference.R$styleable: int AppCompatTheme_buttonBarStyle -wangdaye.com.geometricweather.R$id: int moldTitle -cyanogenmod.app.Profile: int mExpandedDesktopMode -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_track_mtrl_alpha -cyanogenmod.hardware.CMHardwareManager: java.lang.String TAG -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabText -com.google.android.material.R$dimen: int mtrl_slider_track_top -wangdaye.com.geometricweather.R$attr: int tabIndicatorColor -androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog -wangdaye.com.geometricweather.R$string: int settings_title_service_provider -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a: long c -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -android.didikee.donate.R$drawable: int abc_seekbar_track_material -com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabBarStyle -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Headline -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawableItem_android_drawable -com.jaredrummler.android.colorpicker.R$id: int forever -com.turingtechnologies.materialscrollbar.R$attr: int iconTintMode -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginTop -androidx.coordinatorlayout.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line2_head_interpolator -androidx.appcompat.widget.ActivityChooserView: androidx.appcompat.widget.ListPopupWindow getListPopupWindow() -androidx.appcompat.R$anim: int abc_popup_exit -retrofit2.RequestFactory$Builder: boolean gotUrl -com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getBackgroundTintMode() -com.xw.repo.bubbleseekbar.R$color: int abc_tint_seek_thumb -com.tencent.bugly.proguard.z: java.lang.String a(android.content.Context,int,java.lang.String) -okhttp3.internal.http2.Settings: int getHeaderTableSize() -com.jaredrummler.android.colorpicker.R$attr: int summaryOff -androidx.constraintlayout.widget.R$attr: int listChoiceIndicatorSingleAnimated -com.google.android.material.appbar.AppBarLayout: void setElevation(float) -com.google.android.material.slider.BaseSlider: void setThumbStrokeColor(android.content.res.ColorStateList) -android.didikee.donate.R$color: int abc_tint_edittext -androidx.appcompat.R$styleable: int GradientColor_android_centerColor -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display3 -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView -okhttp3.Cache: int writeSuccessCount -com.github.rahatarmanahmed.cpv.CircularProgressView$3: CircularProgressView$3(com.github.rahatarmanahmed.cpv.CircularProgressView) -androidx.fragment.app.SuperNotCalledException -androidx.preference.R$styleable: int ActionBar_homeAsUpIndicator -com.turingtechnologies.materialscrollbar.R$layout: int abc_dialog_title_material -james.adaptiveicon.R$styleable: int ActionBar_elevation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean getAqi() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: int Level -androidx.viewpager.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: int UnitType -com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String c -wangdaye.com.geometricweather.R$drawable: int ic_eye -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getPrefixTextColor() -wangdaye.com.geometricweather.R$attr: int tooltipStyle -androidx.loader.R$color: int notification_icon_bg_color -cyanogenmod.externalviews.IExternalViewProvider$Stub: IExternalViewProvider$Stub() -wangdaye.com.geometricweather.R$attr: int autoSizeMinTextSize -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline3 -androidx.preference.R$attr: int viewInflaterClass -wangdaye.com.geometricweather.R$attr: int triggerSlack -wangdaye.com.geometricweather.R$attr: int dayTodayStyle -com.google.android.material.R$styleable: int Layout_layout_constraintHeight_min -com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setCircularRevealScrimColor(int) -com.tencent.bugly.crashreport.common.info.PlugInBean: java.lang.String a -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void subscribeNext() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getBrandId() -com.tencent.bugly.proguard.y: android.content.Context j -io.reactivex.internal.observers.DeferredScalarDisposable -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTint -cyanogenmod.weather.CMWeatherManager$2$1 -android.didikee.donate.R$styleable: int SearchView_layout -androidx.customview.R$id: int line1 -androidx.viewpager2.R$dimen: int compat_notification_large_icon_max_width -com.jaredrummler.android.colorpicker.R$style: int Base_AlertDialog_AppCompat -wangdaye.com.geometricweather.R$layout: int abc_expanded_menu_layout -com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_max_width -wangdaye.com.geometricweather.R$styleable: int ArcProgress_background_color -androidx.legacy.coreutils.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_96 -okhttp3.internal.http2.Http2Connection: boolean $assertionsDisabled -androidx.appcompat.widget.SwitchCompat: boolean getShowText() -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_indeterminate -androidx.appcompat.R$attr: int titleMarginTop -com.google.android.material.R$styleable: int GradientColorItem_android_color -com.amap.api.fence.GeoFence: void setPendingIntentAction(java.lang.String) -com.tencent.bugly.proguard.u: android.content.Context d -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Alert_Bridge -com.xw.repo.bubbleseekbar.R$attr: int actionModeCloseButtonStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_toolbarStyle -androidx.constraintlayout.widget.R$id: int text -androidx.constraintlayout.widget.R$attr: int textAppearanceSearchResultSubtitle -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void clear() -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float ceiling -wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline2 -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: MfCurrentResult$Observation$Weather() -com.tencent.bugly.BuglyStrategy: java.lang.String c -okio.HashingSink: okio.ByteString hash() -okhttp3.HttpUrl: java.lang.String queryParameter(java.lang.String) -com.google.android.material.appbar.CollapsingToolbarLayout: int getScrimVisibleHeightTrigger() -com.bumptech.glide.R$attr: int fontProviderAuthority -com.google.android.material.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_toTopOf -androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitleTextAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_borderWidth -com.xw.repo.bubbleseekbar.R$attr: int alertDialogTheme -james.adaptiveicon.R$attr: int actionLayout -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomSheetDialog -androidx.appcompat.widget.SwitchCompat: void setTextOn(java.lang.CharSequence) -wangdaye.com.geometricweather.R$id: int activity_widget_config_styleSpinner -wangdaye.com.geometricweather.R$string: int abc_action_bar_up_description -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_maxWidth -wangdaye.com.geometricweather.R$styleable: int Preference_isPreferenceVisible -com.amap.api.fence.DistrictItem: int describeContents() -wangdaye.com.geometricweather.R$dimen: int abc_alert_dialog_button_bar_height -wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_icon_size -wangdaye.com.geometricweather.R$attr: int maxCharacterCount -james.adaptiveicon.R$attr: int windowActionModeOverlay -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_light -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_unregisterThemeProcessingListener -wangdaye.com.geometricweather.db.entities.MinutelyEntity: long getTime() -okhttp3.HttpUrl: void percentDecode(okio.Buffer,java.lang.String,int,int,boolean) -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense -com.jaredrummler.android.colorpicker.R$color: int accent_material_dark -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer) -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_separator_vertical_padding -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomNavigationView -com.google.android.material.R$color: int material_slider_inactive_track_color -cyanogenmod.app.IPartnerInterface$Stub$Proxy: void setMobileDataEnabled(boolean) -androidx.preference.R$attr: int panelMenuListWidth -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -com.google.android.material.R$attr: int hideMotionSpec -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver) -okhttp3.internal.connection.RealConnection: okhttp3.internal.http.HttpCodec newCodec(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,okhttp3.internal.connection.StreamAllocation) -james.adaptiveicon.R$id: int search_badge -cyanogenmod.weather.WeatherInfo$DayForecast$1 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: void setBrands(java.util.List) -com.google.android.material.R$styleable: int ThemeEnforcement_enforceMaterialTheme -okhttp3.internal.platform.AndroidPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun Sun -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.Observer downstream -androidx.constraintlayout.widget.R$id: int scrollIndicatorDown -android.support.v4.os.ResultReceiver: android.os.Handler mHandler -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.R$styleable: int[] GradientColorItem -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_HOME_DOUBLE_TAP_ACTION -com.bumptech.glide.R$id: int tag_unhandled_key_listeners -cyanogenmod.profiles.AirplaneModeSettings$1: cyanogenmod.profiles.AirplaneModeSettings[] newArray(int) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Subhead -com.tencent.bugly.b: java.util.List b -cyanogenmod.weather.WeatherInfo$1: WeatherInfo$1() -androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityCreated(android.app.Activity,android.os.Bundle) -androidx.appcompat.view.menu.ListMenuItemView: void setCheckable(boolean) -com.google.android.material.R$styleable: int ActionBar_subtitle -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_elevation -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItem -com.turingtechnologies.materialscrollbar.R$id: int search_badge -okhttp3.logging.LoggingEventListener: void logWithTime(java.lang.String) -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2(retrofit2.Call) -androidx.fragment.app.FragmentManagerState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$string: int content_desc_weather_icon -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_voice_search_api_material -com.google.android.material.datepicker.MaterialDatePicker: MaterialDatePicker() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTemperature -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -io.reactivex.internal.schedulers.AbstractDirectTask: java.util.concurrent.FutureTask DISPOSED -com.tencent.bugly.proguard.u: void c(int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float visibility -androidx.constraintlayout.widget.R$drawable: int abc_list_focused_holo -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver getInstance() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onMenuItemSelected(int,android.view.MenuItem) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -com.amap.api.fence.GeoFence: int ERROR_CODE_UNKNOWN -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean isDisposed() -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Subhead_Inverse -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$string: int key_hide_subtitle -wangdaye.com.geometricweather.R$attr: int tickMarkTint -okio.RealBufferedSource: long indexOf(okio.ByteString) -okhttp3.internal.http2.Http2Codec$StreamFinishingSource -androidx.constraintlayout.widget.R$style: R$style() -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_numericShortcut -wangdaye.com.geometricweather.R$drawable: int abc_seekbar_tick_mark_material -androidx.hilt.work.R$id: int action_image -okhttp3.internal.io.FileSystem$1: okio.Sink appendingSink(java.io.File) -org.greenrobot.greendao.AbstractDao: java.lang.Object loadCurrentOther(org.greenrobot.greendao.AbstractDao,android.database.Cursor,int) -com.jaredrummler.android.colorpicker.R$attr: int buttonBarNeutralButtonStyle -androidx.work.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.main.fragments.MainFragment: MainFragment() -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onNext(java.lang.Object) -androidx.appcompat.widget.ActionMenuView: android.view.Menu getMenu() -androidx.appcompat.R$dimen: int abc_control_padding_material -cyanogenmod.app.PartnerInterface: boolean setZenModeWithDuration(int,long) -com.google.android.material.R$attr: int checkedIcon -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity -cyanogenmod.app.Profile: void setStreamSettings(cyanogenmod.profiles.StreamSettings) -com.google.android.material.transformation.ExpandableTransformationBehavior -cyanogenmod.app.CMContextConstants$Features: java.lang.String PERFORMANCE -com.turingtechnologies.materialscrollbar.R$id: int src_in -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingLeft -androidx.preference.R$attr: int contentInsetEnd -androidx.customview.R$drawable -com.tencent.bugly.proguard.f -io.reactivex.Observable: io.reactivex.Observable concatArrayEager(int,int,io.reactivex.ObservableSource[]) -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerX -okio.Buffer: okio.BufferedSink write(okio.ByteString) -cyanogenmod.providers.CMSettings$Secure: java.lang.String SYS_PROP_CM_SETTING_VERSION -com.xw.repo.bubbleseekbar.R$styleable: int[] TextAppearance -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: int TRANSACTION_onLiveLockScreenChanged_0 -androidx.constraintlayout.widget.R$id: int checkbox -com.google.android.material.R$styleable: int Constraint_flow_horizontalGap -androidx.lifecycle.SavedStateHandle: boolean contains(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_orderingFromXml -androidx.appcompat.R$styleable: int LinearLayoutCompat_dividerPadding -androidx.cardview.widget.CardView: boolean getUseCompatPadding() -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: boolean mWasExecuted -james.adaptiveicon.R$attr: int panelBackground -wangdaye.com.geometricweather.db.entities.AlertEntityDao: wangdaye.com.geometricweather.db.entities.AlertEntity readEntity(android.database.Cursor,int) -androidx.recyclerview.R$style: int Widget_Compat_NotificationActionContainer -com.amap.api.fence.PoiItem: java.lang.String getPoiName() -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_track_size -okio.Buffer: okio.ByteString md5() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_percent -androidx.preference.R$styleable: int DialogPreference_dialogLayout -com.jaredrummler.android.colorpicker.R$dimen: int compat_button_inset_vertical_material -retrofit2.adapter.rxjava2.ResultObservable: void subscribeActual(io.reactivex.Observer) -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ch -wangdaye.com.geometricweather.R$attr: int bsb_thumb_text_color -com.xw.repo.bubbleseekbar.R$attr: int tooltipFrameBackground -com.google.android.material.R$string: int chip_text -com.bumptech.glide.load.engine.GlideException: void logRootCauses(java.lang.String) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: void dispose() -androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy -com.google.android.material.textfield.TextInputEditText: java.lang.CharSequence getHint() -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getTotal() -android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.google.android.material.R$dimen: int mtrl_textinput_end_icon_margin_start -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String en_US -wangdaye.com.geometricweather.R$color: int material_blue_grey_800 -okio.GzipSink: okio.Timeout timeout() -com.google.android.material.R$styleable: int Slider_haloRadius -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -androidx.fragment.R$anim: int fragment_fade_enter -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle HOURLY -wangdaye.com.geometricweather.R$id: int container_main_pollen -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_NULL_SHA -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type BASELINE -android.didikee.donate.R$attr: int queryHint -android.didikee.donate.R$dimen: int abc_dialog_title_divider_material -android.didikee.donate.R$id: int scrollIndicatorUp -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_displayOptions -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: BaseTransientBottomBar$SnackbarBaseLayout(android.content.Context,android.util.AttributeSet) -cyanogenmod.app.LiveLockScreenManager: java.lang.String TAG -androidx.appcompat.R$attr: int autoSizeStepGranularity -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -cyanogenmod.power.IPerformanceManager$Stub: java.lang.String DESCRIPTOR -com.jaredrummler.android.colorpicker.R$attr: int actionModeCloseDrawable -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge -cyanogenmod.externalviews.ExternalView$1: void onServiceDisconnected(android.content.ComponentName) -james.adaptiveicon.R$styleable: int ActionBar_height -com.google.android.material.R$string: int mtrl_picker_announce_current_selection -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf -io.reactivex.internal.queue.SpscArrayQueue: boolean offer(java.lang.Object) -cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_MUTE -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: WeatherInfo$DayForecast$Builder(int) -wangdaye.com.geometricweather.R$dimen: int abc_text_size_menu_material -androidx.appcompat.R$id: int accessibility_custom_action_24 -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconTint -androidx.core.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacing -androidx.constraintlayout.widget.R$attr: int pivotAnchor -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Temperature -com.google.android.material.R$dimen: int mtrl_calendar_day_height -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_MWI_NOTIFICATION_VALIDATOR -com.jaredrummler.android.colorpicker.R$attr: int checkboxStyle -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moon -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dividerHorizontal -okhttp3.internal.http2.Http2Connection$2 -androidx.preference.R$attr: int actionProviderClass -wangdaye.com.geometricweather.R$attr: int minHeight -androidx.transition.ChangeBounds$7 -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit PERCENT -com.jaredrummler.android.colorpicker.R$layout: int abc_search_dropdown_item_icons_2line -androidx.hilt.lifecycle.R$id: int async -androidx.appcompat.widget.FitWindowsViewGroup: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) -com.google.android.material.R$attr: int arrowHeadLength -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_4 -androidx.legacy.coreutils.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String unitId -androidx.constraintlayout.widget.R$attr: int flow_lastVerticalStyle -okhttp3.Address: okhttp3.CertificatePinner certificatePinner() -okhttp3.internal.http2.Http2Codec: java.util.List http2HeadersList(okhttp3.Request) -androidx.vectordrawable.R$attr: R$attr() -com.github.rahatarmanahmed.cpv.R$bool: R$bool() -wangdaye.com.geometricweather.R$string: int common_google_play_services_install_button -com.google.android.material.R$attr: int region_widthMoreThan -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_text_size -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getGrassLevel() -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_headerBackground -androidx.preference.R$string: int abc_action_bar_home_description -cyanogenmod.content.Intent: java.lang.String ACTION_PROTECTED -com.google.android.material.R$id: int dropdown_menu -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_maxElementsWrap -com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderText(int) -androidx.hilt.R$drawable: int notification_action_background -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer -androidx.constraintlayout.widget.R$color: int material_deep_teal_200 -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicReference upstream -com.google.android.material.R$styleable: int Constraint_layout_constraintTop_creator -androidx.fragment.R$drawable: int notification_bg_low_normal -androidx.constraintlayout.widget.R$attr: int subMenuArrow -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.R$attr: int startIconDrawable -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: wangdaye.com.geometricweather.db.entities.MinutelyEntity readEntity(android.database.Cursor,int) -okhttp3.OkHttpClient: java.util.List connectionSpecs -retrofit2.RequestBuilder: void addPart(okhttp3.MultipartBody$Part) -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Response execute() -wangdaye.com.geometricweather.R$styleable: int[] FontFamily -io.reactivex.Observable: io.reactivex.Completable concatMapCompletable(io.reactivex.functions.Function) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColor(int) -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.internal.operators.observable.ObservableZip$ZipObserver[] observers -androidx.appcompat.R$layout: int notification_template_part_chronometer -retrofit2.Response: retrofit2.Response success(int,java.lang.Object) -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme_Light -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: MfForecastV2Result$ForecastProperties$ForecastV2() -com.turingtechnologies.materialscrollbar.R$color: int material_grey_850 -cyanogenmod.app.CustomTile$ExpandedStyle: int styleId -androidx.vectordrawable.animated.R$drawable: int notification_bg -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$color: int material_timepicker_clockface -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onSubscribe(org.reactivestreams.Subscription) -okhttp3.internal.http2.Huffman$Node: int symbol -androidx.appcompat.R$id: int checked -com.google.android.material.R$styleable: int SwitchCompat_trackTintMode -okhttp3.CacheControl: boolean immutable() -wangdaye.com.geometricweather.R$color: int mtrl_on_primary_text_btn_text_color_selector -androidx.activity.ComponentActivity$2 -james.adaptiveicon.R$styleable: int[] RecycleListView -james.adaptiveicon.R$styleable: int SwitchCompat_thumbTextPadding -cyanogenmod.profiles.RingModeSettings$1: cyanogenmod.profiles.RingModeSettings[] newArray(int) -androidx.transition.R$style -wangdaye.com.geometricweather.R$animator: int weather_fog_2 -wangdaye.com.geometricweather.R$styleable: int Transition_duration -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button -androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogCenterButtons -wangdaye.com.geometricweather.settings.dialogs.TimeSetterDialog: TimeSetterDialog() -com.amap.api.location.AMapLocation: float getAccuracy() -com.google.android.material.R$styleable: int Constraint_layout_constraintCircleAngle -io.reactivex.internal.disposables.ArrayCompositeDisposable: boolean isDisposed() -androidx.lifecycle.SavedStateHandleController: java.lang.String TAG_SAVED_STATE_HANDLE_CONTROLLER -com.google.android.material.R$drawable: int material_ic_keyboard_arrow_previous_black_24dp -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: java.lang.String Unit -androidx.constraintlayout.widget.R$string: int abc_prepend_shortcut_label -okhttp3.Dispatcher: void setMaxRequests(int) -com.google.android.material.chip.Chip: void setCloseIconTint(android.content.res.ColorStateList) -okio.ByteString: long serialVersionUID -com.jaredrummler.android.colorpicker.R$id: int tabMode -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: boolean validate(java.lang.String) -retrofit2.Call: okio.Timeout timeout() -com.google.android.material.timepicker.ChipTextInputComboView: void setOnClickListener(android.view.View$OnClickListener) -com.tencent.bugly.crashreport.crash.h5.a: java.lang.String b -wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_maxHeight -wangdaye.com.geometricweather.R$string: int settings_title_unit -wangdaye.com.geometricweather.R$attr: int checkedTextViewStyle -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String img -androidx.preference.R$styleable: int Preference_android_icon -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyStartText -okhttp3.internal.connection.RealConnection: java.net.Socket socket() -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String ENABLED -wangdaye.com.geometricweather.R$attr: int cpv_indeterminate -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$b: boolean a(long) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTint -com.google.android.material.circularreveal.CircularRevealLinearLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -androidx.preference.R$styleable: int ActionMode_closeItemLayout -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_Surface -wangdaye.com.geometricweather.db.entities.LocationEntityDao -androidx.lifecycle.extensions.R$dimen: int notification_content_margin_start -android.didikee.donate.R$id: int info -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void clear(io.reactivex.internal.queue.SpscLinkedArrayQueue) -androidx.constraintlayout.widget.R$styleable: int[] MotionLayout -okhttp3.internal.http2.Http2Writer: okhttp3.internal.http2.Hpack$Writer hpackWriter -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setLiveLockScreen(java.lang.String) -androidx.preference.R$drawable: int abc_item_background_holo_dark -james.adaptiveicon.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -androidx.fragment.R$dimen: R$dimen() -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: ExternalViewProviderService$Provider$ProviderImpl$2(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -androidx.fragment.R$id: int accessibility_custom_action_30 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_fontFamily -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogMessage -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: double Value -com.google.android.material.R$dimen: int fastscroll_default_thickness -androidx.constraintlayout.widget.R$styleable: int[] Motion -okio.Sink: void flush() -wangdaye.com.geometricweather.R$attr: int tabIndicator -com.tencent.bugly.proguard.am: java.lang.String e -androidx.appcompat.R$styleable: int AppCompatTheme_colorControlHighlight -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_to_on_mtrl_015 -com.google.android.material.slider.Slider: float getThumbStrokeWidth() -androidx.loader.R$dimen: int notification_action_text_size -androidx.preference.R$styleable: int Preference_android_dependency -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int maxConcurrency -james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_45 -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: java.lang.Object clone() -cyanogenmod.themes.ThemeChangeRequest: int describeContents() -androidx.appcompat.R$dimen: int abc_text_size_menu_header_material -androidx.customview.R$id: int notification_main_column_container -com.google.android.gms.base.R$drawable: int common_full_open_on_phone -okhttp3.internal.connection.RouteSelector$Selection -android.didikee.donate.R$styleable: int MenuGroup_android_orderInCategory -com.xw.repo.bubbleseekbar.R$attr: int autoSizePresetSizes -cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile[] getProfiles() -com.jaredrummler.android.colorpicker.R$attr: int windowMinWidthMinor -okio.ForwardingSource -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.Scheduler$Worker worker -androidx.constraintlayout.widget.R$id: int action_mode_close_button -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric Metric -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitation(java.lang.Float) -androidx.cardview.R$attr: R$attr() -com.google.gson.JsonParseException -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -com.jaredrummler.android.colorpicker.R$style: int Preference_CheckBoxPreference -wangdaye.com.geometricweather.R$string: int wechat -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getHeaderHeight() -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.disposables.Disposable upstream -wangdaye.com.geometricweather.R$color: int colorSearchBarBackground -android.didikee.donate.R$styleable: int ActionBar_homeLayout -wangdaye.com.geometricweather.R$attr: int windowFixedHeightMinor -wangdaye.com.geometricweather.R$string: int common_signin_button_text -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy -com.google.android.material.R$attr: int behavior_autoShrink -com.google.android.material.R$id: int filled -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SeekBar -com.jaredrummler.android.colorpicker.R$attr: int hideOnContentScroll -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.google.android.material.R$styleable: int KeyTrigger_onCross -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherText(java.lang.String) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void cleanup() -androidx.lifecycle.AbstractSavedStateViewModelFactory: AbstractSavedStateViewModelFactory(androidx.savedstate.SavedStateRegistryOwner,android.os.Bundle) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf -wangdaye.com.geometricweather.R$dimen: int design_title_text_size -com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_overlapAnchor -wangdaye.com.geometricweather.R$attr: int framePosition -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec MODERN_TLS -com.tencent.bugly.proguard.v: int j -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String d -retrofit2.adapter.rxjava2.CallExecuteObservable: CallExecuteObservable(retrofit2.Call) -com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: java.lang.Integer depth -james.adaptiveicon.R$attr: int paddingTopNoTitle -com.xw.repo.bubbleseekbar.R$attr: int icon -wangdaye.com.geometricweather.R$styleable: int Transition_transitionDisable -com.jaredrummler.android.colorpicker.R$attr: int tooltipFrameBackground -com.google.android.material.R$id: int month_grid -androidx.core.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setPressure(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconVisible -androidx.preference.R$attr: int actionBarStyle -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationX -cyanogenmod.externalviews.ExternalView$6: ExternalView$6(cyanogenmod.externalviews.ExternalView) -wangdaye.com.geometricweather.R$string: int phase_first -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_progressBarPadding -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginEnd -androidx.transition.R$id: int notification_background -androidx.preference.R$id: int accessibility_custom_action_27 -androidx.appcompat.R$styleable: int AppCompatTextView_lineHeight -com.tencent.bugly.crashreport.common.info.a: java.lang.String i() -androidx.constraintlayout.widget.R$styleable: int Transition_android_id -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizePresetSizes -com.google.android.material.R$dimen: int design_bottom_navigation_height -androidx.appcompat.R$attr: int actionBarWidgetTheme -androidx.preference.R$styleable: int AppCompatTheme_actionBarTabBarStyle -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onError(java.lang.Throwable) -androidx.preference.R$drawable: int abc_btn_check_material -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_Main -james.adaptiveicon.R$styleable: int SwitchCompat_thumbTintMode -androidx.hilt.work.R$style: int Widget_Compat_NotificationActionContainer -retrofit2.KotlinExtensions$awaitResponse$2$2: void onFailure(retrofit2.Call,java.lang.Throwable) -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_PopupMenu -cyanogenmod.platform.Manifest$permission: java.lang.String READ_THEMES -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_CBC_SHA -com.google.android.material.tabs.TabLayout: int getTabCount() -com.google.android.material.R$color: int accent_material_light -cyanogenmod.weather.WeatherLocation: java.lang.String access$202(cyanogenmod.weather.WeatherLocation,java.lang.String) -android.didikee.donate.R$styleable: int SwitchCompat_track -com.turingtechnologies.materialscrollbar.R$layout: int notification_action -com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.Throwable) -wangdaye.com.geometricweather.R$color: int material_slider_thumb_color -com.google.android.material.R$dimen: int mtrl_btn_padding_right -androidx.constraintlayout.widget.R$drawable: int abc_control_background_material -com.xw.repo.bubbleseekbar.R$attr: int paddingTopNoTitle -wangdaye.com.geometricweather.R$styleable: int Preference_widgetLayout -com.tencent.bugly.Bugly: boolean isDev() -cyanogenmod.providers.DataUsageContract: java.lang.String DATAUSAGE_TABLE -androidx.constraintlayout.widget.R$attr: int closeIcon -androidx.appcompat.resources.R$id: int accessibility_custom_action_0 -androidx.appcompat.widget.SearchView$SearchAutoComplete: void setSearchView(androidx.appcompat.widget.SearchView) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_key -io.reactivex.internal.util.VolatileSizeArrayList: void add(int,java.lang.Object) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_DayTextView -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_android_minHeight -androidx.preference.R$style: int Widget_AppCompat_RatingBar_Small -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_11 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_corner_radius_material -androidx.work.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed -androidx.appcompat.R$drawable: int btn_radio_off_to_on_mtrl_animation -com.turingtechnologies.materialscrollbar.R$styleable: int[] FloatingActionButton -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_visible -androidx.lifecycle.extensions.R$dimen: int notification_big_circle_margin -cyanogenmod.providers.CMSettings$Global: int getInt(android.content.ContentResolver,java.lang.String,int) -cyanogenmod.app.Profile$TriggerState: int DISABLED -androidx.appcompat.R$drawable: int abc_ic_star_half_black_48dp -com.google.android.material.R$dimen: int mtrl_high_ripple_focused_alpha -okhttp3.internal.http2.Header: okio.ByteString TARGET_PATH -com.tencent.bugly.proguard.al: al() -james.adaptiveicon.R$styleable: int Toolbar_collapseContentDescription -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void complete() -wangdaye.com.geometricweather.R$attr: int materialCalendarStyle -wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_light -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderFetchStrategy -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: long contentLength() -androidx.constraintlayout.widget.R$attr: int dragDirection -okhttp3.internal.cache.FaultHidingSink: boolean hasErrors -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarNeutralButtonStyle -android.didikee.donate.R$drawable: int notification_template_icon_bg -androidx.appcompat.widget.FitWindowsLinearLayout: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) -com.google.android.material.R$dimen: int material_cursor_width -wangdaye.com.geometricweather.R$styleable: int[] AppBarLayout_Layout -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_weight -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: boolean inSingle -wangdaye.com.geometricweather.remoteviews.config.Hilt_MultiCityWidgetConfigActivity: Hilt_MultiCityWidgetConfigActivity() -com.turingtechnologies.materialscrollbar.R$id: int action_bar_subtitle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade RealFeelTemperatureShade -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: NativeCrashHandler(android.content.Context,com.tencent.bugly.crashreport.common.info.a,com.tencent.bugly.crashreport.crash.b,com.tencent.bugly.proguard.w,boolean,java.lang.String) -com.google.android.gms.dynamite.DynamiteModule$DynamiteLoaderClassLoader: java.lang.ClassLoader sClassLoader -okhttp3.internal.http2.Http2Codec: okhttp3.internal.http2.Http2Stream stream -com.tencent.bugly.proguard.v: void a(long) -wangdaye.com.geometricweather.db.entities.LocationEntity: void setResidentPosition(boolean) -android.didikee.donate.R$styleable: int Toolbar_titleTextColor -com.google.android.material.R$attr: int iconPadding -com.google.android.material.R$attr: int dividerPadding -androidx.recyclerview.widget.RecyclerView: void removeOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.database.Database getDatabase() -androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_1 -wangdaye.com.geometricweather.R$drawable: int weather_hail_2 -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String url -wangdaye.com.geometricweather.R$attr: int actionModeCloseButtonStyle -android.didikee.donate.R$string: int abc_searchview_description_search -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: double seaLevel -com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getHandleOffset() -com.tencent.bugly.crashreport.BuglyLog: void w(java.lang.String,java.lang.String) -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onSuccess(java.lang.Object) -io.reactivex.Observable: void safeSubscribe(io.reactivex.Observer) -com.google.android.material.R$drawable: int abc_scrubber_track_mtrl_alpha -io.reactivex.Observable: io.reactivex.Observable repeat(long) -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_profileExistsByName -com.google.android.material.R$id: int coordinator -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_Test -cyanogenmod.app.PartnerInterface: android.content.Context mContext -com.google.android.material.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.util.Date date -androidx.work.R$id: int accessibility_custom_action_12 -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: cyanogenmod.weather.IWeatherServiceProviderChangeListener asInterface(android.os.IBinder) -androidx.customview.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -com.google.android.material.R$color: int primary_text_disabled_material_light -androidx.recyclerview.R$id: int item_touch_helper_previous_elevation -com.turingtechnologies.materialscrollbar.R$drawable: int avd_hide_password -cyanogenmod.weather.WeatherInfo: int mConditionCode -com.google.android.material.R$style: int TextAppearance_AppCompat_Medium_Inverse -com.google.android.material.R$dimen: int abc_disabled_alpha_material_light -com.turingtechnologies.materialscrollbar.R$attr -com.tencent.bugly.proguard.d: java.util.HashMap g -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1(androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription,long) -com.google.gson.stream.JsonReader: int peekedNumberLength -retrofit2.http.HeaderMap -androidx.core.os.CancellationSignal -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_divider -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.providers.CMSettings$Global: boolean putInt(android.content.ContentResolver,java.lang.String,int) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: void completion() -com.turingtechnologies.materialscrollbar.R$attr: int colorControlActivated -com.google.android.material.R$id: int path -okhttp3.Request: okhttp3.RequestBody body -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize -com.google.android.material.R$styleable: int Snackbar_snackbarStyle -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents -com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_backgroundTint -okio.ByteString: okio.ByteString sha1() -com.tencent.bugly.proguard.aq: java.lang.String c -wangdaye.com.geometricweather.R$string: int settings_summary_appearance -wangdaye.com.geometricweather.R$attr: int tickMarkTintMode -cyanogenmod.profiles.RingModeSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: void readTraceFile(java.lang.String,com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$b) -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Caption -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_min_width_major -androidx.constraintlayout.widget.Placeholder: void setEmptyVisibility(int) -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_switchTextOn -wangdaye.com.geometricweather.R$style: int Base_Widget_Design_TabLayout -com.jaredrummler.android.colorpicker.R$id: int right_side -com.amap.api.fence.GeoFenceClient -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Large -com.google.android.material.R$attr: int materialCardViewStyle -james.adaptiveicon.R$attr: int alertDialogCenterButtons -com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context,android.util.AttributeSet,int) -androidx.hilt.R$string: R$string() -androidx.appcompat.R$drawable: int abc_switch_thumb_material -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long index -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: java.lang.Runnable actual -com.google.android.material.R$styleable: int AppBarLayout_android_keyboardNavigationCluster -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarPopupTheme -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.gson.internal.LinkedTreeMap: LinkedTreeMap(java.util.Comparator) -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean a(java.lang.String,boolean) -james.adaptiveicon.R$layout: int support_simple_spinner_dropdown_item -androidx.appcompat.R$styleable: int AppCompatTheme_textColorSearchUrl -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_trackTint -androidx.lifecycle.extensions.R$id: int normal -com.google.android.material.R$dimen: int mtrl_card_spacing -com.google.android.material.R$style: int TextAppearance_AppCompat_Large_Inverse -com.google.android.material.R$styleable: int Constraint_layout_constraintCircle -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -androidx.preference.R$styleable: int AppCompatTheme_textColorSearchUrl -okio.BufferedSink: okio.BufferedSink writeLong(long) -androidx.constraintlayout.widget.R$id: int standard -android.didikee.donate.R$styleable: int Toolbar_titleMarginStart -com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.AnimatorSet indeterminateAnimator -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconSize -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moonPhaseAngle -wangdaye.com.geometricweather.R$id: int fitToContents -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableTop -com.tencent.bugly.crashreport.CrashReport: java.lang.String getBuglyVersion(android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean -com.google.android.material.textfield.TextInputLayout: void setHintAnimationEnabled(boolean) -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_margin -james.adaptiveicon.R$color: int accent_material_dark -retrofit2.OptionalConverterFactory -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_orderInCategory -wangdaye.com.geometricweather.R$drawable: int btn_checkbox_checked_mtrl -android.didikee.donate.R$attr: int actionModeWebSearchDrawable -com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonTintMode -cyanogenmod.app.ProfileManager: void removeNotificationGroup(android.app.NotificationGroup) -android.didikee.donate.R$style: int Theme_AppCompat_Light_NoActionBar -wangdaye.com.geometricweather.R$drawable: int ic_toolbar_back -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_ttcIndex -androidx.preference.R$styleable: int MenuItem_android_visible -androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_Alert -androidx.constraintlayout.widget.R$attr: int iconifiedByDefault -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: double Value -okio.Util: boolean arrayRangeEquals(byte[],int,byte[],int,int) -androidx.constraintlayout.widget.R$styleable: int Constraint_android_elevation -okio.Buffer: okio.Buffer$UnsafeCursor readAndWriteUnsafe() -wangdaye.com.geometricweather.R$attr: int number -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getLightsMode() -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver -io.reactivex.Observable: io.reactivex.Completable flatMapCompletable(io.reactivex.functions.Function,boolean) -io.reactivex.internal.subscriptions.DeferredScalarSubscription: java.lang.Object poll() -com.jaredrummler.android.colorpicker.R$attr: int layout_anchor -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIcon -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_search -retrofit2.KotlinExtensions: java.lang.Object suspendAndThrow(java.lang.Exception,kotlin.coroutines.Continuation) -androidx.preference.R$styleable: int SwitchCompat_android_textOff -androidx.preference.R$dimen: int abc_action_bar_default_padding_end_material -android.didikee.donate.R$layout: int abc_popup_menu_item_layout -james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets -okio.BufferedSource: long indexOfElement(okio.ByteString,long) -okhttp3.Handshake: okhttp3.TlsVersion tlsVersion() -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String v -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_id -androidx.preference.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -com.jaredrummler.android.colorpicker.R$id: int title_template -com.google.android.material.R$styleable: int ShapeableImageView_shapeAppearanceOverlay -com.google.android.material.R$attr: int boxCornerRadiusBottomStart -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: double Value -androidx.appcompat.R$color: int primary_text_disabled_material_light -wangdaye.com.geometricweather.R$dimen: int widget_mini_weather_icon_size -androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModelProvider$NewInstanceFactory getInstance() -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstVerticalStyle -cyanogenmod.app.IPartnerInterface$Stub$Proxy: android.os.IBinder asBinder() -com.google.android.material.R$styleable: int Constraint_layout_constraintDimensionRatio -wangdaye.com.geometricweather.R$drawable: int notif_temp_82 -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.Object adapt(retrofit2.Call) -cyanogenmod.providers.CMSettings$Global: long getLong(android.content.ContentResolver,java.lang.String) -com.google.android.material.R$attr: int fontFamily -com.google.android.material.R$layout: int abc_action_bar_up_container -androidx.appcompat.widget.AppCompatTextView: void setLastBaselineToBottomHeight(int) -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$attr: int autoSizeMinTextSize -androidx.appcompat.R$attr: int buttonStyleSmall -android.didikee.donate.R$drawable: int abc_ic_clear_material -com.xw.repo.bubbleseekbar.R$attr: int actionModeShareDrawable -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BOOLEAN -okhttp3.Response$Builder: okhttp3.Protocol protocol -com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabTextStyle -com.amap.api.fence.PoiItem: double f -com.google.android.material.R$attr: int cornerSizeTopLeft -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemMaxLines -androidx.appcompat.R$style: int Base_Animation_AppCompat_DropDownUp -com.google.android.material.R$attr: int haloRadius -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getDurationVoice(android.content.Context,float) -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton -androidx.appcompat.resources.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.util.Date pubTime -okhttp3.OkHttpClient: boolean followSslRedirects() -james.adaptiveicon.R$attr: int textAppearancePopupMenuHeader -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onNext(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int FlowLayout_lineSpacing -com.tencent.bugly.proguard.a: byte[] a(com.tencent.bugly.proguard.k) -androidx.preference.R$style: int Base_Widget_AppCompat_Button_Borderless -retrofit2.ParameterHandler$QueryMap: ParameterHandler$QueryMap(java.lang.reflect.Method,int,retrofit2.Converter,boolean) -com.turingtechnologies.materialscrollbar.R$attr: int activityChooserViewStyle -com.google.android.material.R$attr: int collapseContentDescription -james.adaptiveicon.R$styleable: int MenuItem_contentDescription -androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onComplete() -com.turingtechnologies.materialscrollbar.R$attr: int actionModeCloseButtonStyle -androidx.hilt.R$style: int Widget_Compat_NotificationActionText -wangdaye.com.geometricweather.R$attr: int actionBarSplitStyle -android.didikee.donate.R$id: int action_menu_divider -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult -androidx.constraintlayout.widget.R$attr: int commitIcon -okhttp3.internal.http2.Http2Connection$5: okhttp3.internal.http2.Http2Connection this$0 -android.didikee.donate.R$attr: int textAppearanceListItem -cyanogenmod.weather.WeatherInfo: java.util.List access$1102(cyanogenmod.weather.WeatherInfo,java.util.List) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: AccuCurrentResult$TemperatureSummary$Past24HourRange() -com.google.android.material.R$styleable: int TextInputLayout_endIconCheckable -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_collapseNotificationPanel_2 -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -retrofit2.converter.gson.GsonConverterFactory: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Tooltip -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: ServiceLifecycleDispatcher$DispatchRunnable(androidx.lifecycle.LifecycleRegistry,androidx.lifecycle.Lifecycle$Event) -androidx.viewpager2.R$id: int accessibility_custom_action_29 -cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CONTENT_URI -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -wangdaye.com.geometricweather.R$drawable: int notif_temp_71 -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Country -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTopCompat -androidx.coordinatorlayout.R$id: int accessibility_custom_action_25 -androidx.appcompat.R$attr: int windowFixedHeightMinor -androidx.cardview.R$attr: int cardBackgroundColor -cyanogenmod.weather.WeatherInfo: double getWindDirection() -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder cipherSuites(java.lang.String[]) -com.xw.repo.bubbleseekbar.R$attr: int dialogTheme -com.google.android.material.chip.Chip: void setCloseIconResource(int) -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: boolean isDisposed() -androidx.viewpager2.R$id: int accessibility_custom_action_0 -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_Snackbar -androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontWeight -com.google.android.material.R$attr: int behavior_saveFlags -com.tencent.bugly.crashreport.crash.e: int j -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: long updatedOn -okhttp3.EventListener$Factory -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitationProbability -com.google.android.material.R$styleable: int AppCompatTextView_drawableBottomCompat -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.amap.api.fence.GeoFence -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver CANCELLED -wangdaye.com.geometricweather.common.ui.activities.AwakeUpdateActivity: AwakeUpdateActivity() -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_android_gravity -androidx.vectordrawable.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$integer: int design_snackbar_text_max_lines -okhttp3.CacheControl: boolean mustRevalidate -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitationDuration -com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -retrofit2.Call -com.google.android.material.R$attr: int fabAnimationMode -com.xw.repo.bubbleseekbar.R$color -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoldIndex() -cyanogenmod.weather.WeatherLocation: java.lang.String mState -android.support.v4.os.IResultReceiver$Stub$Proxy -com.google.android.material.R$drawable: int material_ic_keyboard_arrow_right_black_24dp -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontWeight -com.jaredrummler.android.colorpicker.R$dimen: int abc_progress_bar_height_material -io.reactivex.internal.disposables.EmptyDisposable: boolean offer(java.lang.Object,java.lang.Object) -androidx.preference.R$styleable: int DialogPreference_dialogMessage -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long) -com.bumptech.glide.R$styleable -android.didikee.donate.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_size_mini -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.google.android.material.R$style: int Base_Theme_MaterialComponents -cyanogenmod.providers.CMSettings$Global: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -com.google.android.material.appbar.AppBarLayout -com.google.android.material.R$styleable: int MenuItem_iconTint -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: int UnitType -com.jaredrummler.android.colorpicker.R$string: int search_menu_title -okhttp3.internal.platform.Android10Platform -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.util.ErrorMode errorMode -okhttp3.CertificatePinner: java.util.List findMatchingPins(java.lang.String) -wangdaye.com.geometricweather.R$color: int mtrl_btn_text_color_selector -com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior: AppBarLayout$ScrollingViewBehavior() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Date -androidx.hilt.R$id: R$id() -androidx.work.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarContainer -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_28 -retrofit2.Utils: java.lang.reflect.Type resolveTypeVariable(java.lang.reflect.Type,java.lang.Class,java.lang.reflect.TypeVariable) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingTop -androidx.loader.R$id -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelMenuListWidth -androidx.constraintlayout.widget.R$styleable: int[] ViewStubCompat -com.jaredrummler.android.colorpicker.R$color: int primary_text_disabled_material_dark -cyanogenmod.app.Profile: void writeToParcel(android.os.Parcel,int) -com.google.android.material.R$attr: int defaultQueryHint -cyanogenmod.app.CustomTile$ExpandedItem -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.util.Date date -com.google.android.material.appbar.AppBarLayout: void setExpanded(boolean) -com.google.android.material.R$style: int ThemeOverlay_Design_TextInputEditText -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status COMPLETE -com.turingtechnologies.materialscrollbar.R$color: int background_floating_material_light -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabTextStyle -okhttp3.internal.Util: java.lang.reflect.Method addSuppressedExceptionMethod -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_PopupMenu -androidx.appcompat.R$style: int Theme_AppCompat -com.google.android.material.R$anim: R$anim() -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableDelegateState: int getChangingConfigurations() -wangdaye.com.geometricweather.R$id: int dialog_location_help_locationTitle -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingTop -androidx.appcompat.widget.SearchView -com.amap.api.location.CoordinateConverter: com.amap.api.location.DPoint a -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_background -com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_material_dark -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_disableDependentsState -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float totalPrecipitation -androidx.hilt.lifecycle.R$anim: int fragment_fast_out_extra_slow_in -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.util.concurrent.atomic.AtomicLong requested -androidx.loader.R$attr: int fontProviderCerts -com.tencent.bugly.proguard.z: byte[] c(long) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: java.lang.String Unit -com.bumptech.glide.integration.okhttp.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.common.basic.models.weather.Daily: long getTime() -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endY -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DialogWhenLarge -com.google.android.material.R$styleable: int MaterialCardView_strokeColor -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State getCurrentState() -com.jaredrummler.android.colorpicker.R$styleable: int[] SearchView -androidx.preference.R$attr: int fastScrollVerticalThumbDrawable -com.google.android.material.R$dimen: int mtrl_extended_fab_min_width -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeDegreeDayTemperature(java.lang.Integer) -james.adaptiveicon.R$attr: int collapseIcon -com.google.android.material.snackbar.BaseTransientBottomBar$Behavior -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String pressure -com.google.android.gms.common.annotation.KeepName -wangdaye.com.geometricweather.R$attr: int showDividers -cyanogenmod.app.ProfileGroup: void setSoundOverride(android.net.Uri) -com.google.android.material.R$id: int navigation_header_container -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setCity_code(int) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabBar -com.google.gson.FieldNamingPolicy$3: FieldNamingPolicy$3(java.lang.String,int) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.Observer downstream -com.google.android.material.R$id: int material_clock_period_pm_button -com.google.android.material.R$styleable: int ActionBar_height -com.google.android.material.R$id: int scrollView -androidx.recyclerview.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed Speed -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_enabled -wangdaye.com.geometricweather.R$id: int tag_accessibility_actions -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getDate() -androidx.work.R$styleable: int FontFamilyFont_android_ttcIndex -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActivityChooserView -okhttp3.Cache$CacheResponseBody: Cache$CacheResponseBody(okhttp3.internal.cache.DiskLruCache$Snapshot,java.lang.String,java.lang.String) -james.adaptiveicon.R$attr: int dialogPreferredPadding -cyanogenmod.themes.IThemeService$Stub$Proxy: void unregisterThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) -com.google.android.gms.common.SupportErrorDialogFragment: SupportErrorDialogFragment() -org.greenrobot.greendao.AbstractDao: void saveInTx(java.lang.Iterable) -cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo build() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_Solid -okhttp3.internal.cache.CacheInterceptor$1: void close() -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_DarkActionBar -com.google.android.material.R$styleable: int Chip_textEndPadding -android.didikee.donate.R$color: int abc_background_cache_hint_selector_material_light -okio.Options: int size() -james.adaptiveicon.R$dimen: int abc_dialog_fixed_width_minor -retrofit2.http.FieldMap -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeDegreeDayTemperature -android.didikee.donate.R$layout: int abc_list_menu_item_radio -androidx.constraintlayout.widget.R$styleable: int ActionBar_itemPadding -io.reactivex.internal.observers.ForEachWhileObserver: boolean isDisposed() -androidx.appcompat.R$styleable: int AppCompatImageView_android_src -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -com.google.android.material.R$styleable: int Layout_layout_goneMarginLeft -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy -james.adaptiveicon.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_2 -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX -androidx.drawerlayout.R$id: int tag_unhandled_key_event_manager -retrofit2.Response: java.lang.Object body() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_radioButtonStyle -com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$drawable: int notif_temp_119 -com.google.gson.internal.JsonReaderInternalAccess: JsonReaderInternalAccess() -io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.functions.Function,io.reactivex.ObservableSource) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabText -com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Primary -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STYLE_PREVIEW -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Bridge -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_5 -okio.Util: void sneakyThrow2(java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer realFeelShaderTemperature -wangdaye.com.geometricweather.R$attr: int actionProviderClass -wangdaye.com.geometricweather.R$attr: int alertDialogStyle -okhttp3.Headers: java.lang.String get(java.lang.String) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String street_number -wangdaye.com.geometricweather.R$drawable: int notif_temp_83 -com.google.android.gms.internal.location.zzbg: android.os.Parcelable$Creator CREATOR -cyanogenmod.app.Profile$TriggerState: Profile$TriggerState() -com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_toId -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer totalCloudCover -androidx.appcompat.R$attr: int actionViewClass -androidx.preference.R$dimen: int abc_list_item_padding_horizontal_material -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetEnd -james.adaptiveicon.R$attr: int colorSwitchThumbNormal -cyanogenmod.providers.CMSettings$DelimitedListValidator: CMSettings$DelimitedListValidator(java.lang.String[],java.lang.String,boolean) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_horizontal_material -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableStart -org.greenrobot.greendao.AbstractDaoSession: long insert(java.lang.Object) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ct -android.didikee.donate.R$styleable: int AppCompatTheme_actionModePasteDrawable -androidx.preference.R$color: int abc_tint_seek_thumb -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription this$0 -okio.GzipSink: void updateCrc(okio.Buffer,long) -wangdaye.com.geometricweather.R$attr: int hintAnimationEnabled -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties properties -com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$attr: int commitIcon -androidx.preference.R$styleable: int Preference_android_iconSpaceReserved -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView_Menu -wangdaye.com.geometricweather.R$id: int expanded_menu -androidx.loader.R$dimen: int compat_button_inset_vertical_material -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_indeterminate -wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_big_view -okhttp3.OkHttpClient: okhttp3.EventListener$Factory eventListenerFactory() -cyanogenmod.providers.CMSettings$Secure: boolean putLong(android.content.ContentResolver,java.lang.String,long) -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_backgroundSplit -okio.SegmentedByteString: okio.ByteString md5() -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display1 -androidx.hilt.work.R$layout: R$layout() -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMenuItemView -com.turingtechnologies.materialscrollbar.R$styleable: int TouchScrollBar_msb_autoHide -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeManager sInstance -com.google.android.material.R$styleable: int AppCompatTheme_viewInflaterClass -androidx.appcompat.R$drawable: int abc_text_cursor_material -com.turingtechnologies.materialscrollbar.R$attr: int rippleColor -androidx.appcompat.widget.Toolbar: int getContentInsetRight() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getTotalPrecipitationProbability() -androidx.preference.R$attr: int isLightTheme -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Borderless -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol HTTPS -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_shapeAppearanceOverlay -com.tencent.bugly.proguard.h: int b -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleVerticalOffset -androidx.fragment.R$id: int action_text -cyanogenmod.app.IPartnerInterface: void setMobileDataEnabled(boolean) -cyanogenmod.app.CustomTile$RemoteExpandedStyle -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_icon_color_selector_colored -androidx.drawerlayout.R$dimen -androidx.constraintlayout.widget.R$id: int search_voice_btn -wangdaye.com.geometricweather.R$string: int wind_10 -androidx.appcompat.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -cyanogenmod.hardware.CMHardwareManager: boolean unRegisterThermalListener(cyanogenmod.hardware.ThermalListenerCallback) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getWindSpeed() -cyanogenmod.weatherservice.ServiceRequest$Status: ServiceRequest$Status(java.lang.String,int) -androidx.preference.R$styleable: int GradientColorItem_android_color -androidx.appcompat.R$id: int action_bar_root -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Body2 -androidx.lifecycle.extensions.R$id: int action_text -androidx.coordinatorlayout.R$drawable: int notification_bg_low_normal -android.didikee.donate.R$style: int Platform_V25_AppCompat_Light -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer dbz -androidx.fragment.R$id: int accessibility_custom_action_25 -com.google.gson.stream.JsonScope: int CLOSED -com.github.rahatarmanahmed.cpv.CircularProgressView$2: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -wangdaye.com.geometricweather.R$attr: int touchRegionId -wangdaye.com.geometricweather.R$attr: int cardBackgroundColor -wangdaye.com.geometricweather.R$styleable: int[] MaterialToolbar -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.util.List contextList -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_NULL_SHA -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date sunriseTime -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setId(java.lang.Long) -james.adaptiveicon.R$attr: int initialActivityCount -wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveOffset -androidx.fragment.R$styleable: int FragmentContainerView_android_name -com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_selected -retrofit2.adapter.rxjava2.package-info -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_RC4_40_MD5 -wangdaye.com.geometricweather.R$styleable: int[] SearchView -okhttp3.CertificatePinner: okhttp3.CertificatePinner DEFAULT -okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String lastModifiedString -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type BASELINE -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: IWeatherProviderService$Stub$Proxy(android.os.IBinder) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorScheme(int[]) -cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String TAG -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DewPoint -android.support.v4.os.IResultReceiver$Stub$Proxy: void send(int,android.os.Bundle) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator TOUCHSCREEN_GESTURE_HAPTIC_FEEDBACK_VALIDATOR -cyanogenmod.profiles.ConnectionSettings$BooleanState -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource -com.google.android.material.R$color: int design_bottom_navigation_shadow_color -okhttp3.internal.http2.Hpack$Reader: void insertIntoDynamicTable(int,okhttp3.internal.http2.Header) -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper -androidx.appcompat.R$dimen: int abc_floating_window_z -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItemSecondary -androidx.hilt.work.R$dimen: int notification_top_pad_large_text -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: boolean equals(java.lang.Object) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.appcompat.view.menu.ActionMenuItemView: void setIcon(android.graphics.drawable.Drawable) -com.tencent.bugly.proguard.ak: java.util.ArrayList q -androidx.work.R$id: int forever -com.google.android.material.R$styleable: int Variant_constraints -wangdaye.com.geometricweather.R$color: int colorTextTitle_light -okhttp3.internal.ws.RealWebSocket: boolean pong(okio.ByteString) -okhttp3.Request$Builder: okhttp3.Request build() -com.bumptech.glide.integration.okhttp.R$id: int text -androidx.preference.R$anim: int btn_checkbox_to_unchecked_icon_null_animation -cyanogenmod.app.suggest.ApplicationSuggestion$1: java.lang.Object[] newArray(int) -androidx.constraintlayout.widget.R$string: int abc_toolbar_collapse_description -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris ephemeris -com.google.android.material.chip.Chip -com.google.android.gms.common.api.UnsupportedApiCallException: UnsupportedApiCallException(com.google.android.gms.common.Feature) -com.bumptech.glide.R$styleable: int FontFamilyFont_android_ttcIndex -com.google.android.material.R$attr: int navigationMode -com.amap.api.location.AMapLocationClient: java.lang.String getDeviceId(android.content.Context) -com.bumptech.glide.R$dimen -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition BELOW_LINE -okio.Buffer$2: okio.Buffer this$0 -androidx.hilt.work.R$layout: int notification_action_tombstone -androidx.activity.R$id: int accessibility_custom_action_14 -com.jaredrummler.android.colorpicker.R$attr: int cpv_colorPresets -retrofit2.ParameterHandler$QueryMap -androidx.lifecycle.extensions.R -com.google.android.gms.common.server.converter.zaa: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -androidx.lifecycle.ReportFragment: void dispatchCreate(androidx.lifecycle.ReportFragment$ActivityInitializationListener) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionMenuTextColor -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder client(okhttp3.OkHttpClient) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: AccuDailyResult$DailyForecasts$Temperature() -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setProgress(float) -okhttp3.internal.http2.Settings: Settings() -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder listener(okhttp3.internal.http2.Http2Connection$Listener) -cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weather.RequestInfo getRequestInfo() -com.turingtechnologies.materialscrollbar.R$attr: int actionModeStyle -com.turingtechnologies.materialscrollbar.R$attr: int chipIconSize -androidx.preference.R$style: int Widget_AppCompat_ActionButton_Overflow -androidx.work.R$id: int async -james.adaptiveicon.R$dimen: int abc_action_button_min_width_material -android.didikee.donate.R$attr: int contentInsetStart -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_height -com.tencent.bugly.proguard.ae: byte[] a(byte[]) -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Iterable) -okhttp3.internal.Internal: Internal() -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_hideMotionSpec -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMenuView -androidx.preference.R$styleable: int TextAppearance_android_textStyle -okio.Buffer: long indexOf(okio.ByteString) -androidx.transition.R$styleable: int ColorStateListItem_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperText -com.google.android.material.R$attr: int fontProviderFetchTimeout -androidx.preference.R$drawable: int abc_textfield_search_material -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris -okio.Buffer: java.lang.String readString(long,java.nio.charset.Charset) -com.tencent.bugly.crashreport.common.info.a: java.lang.String ao -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) -androidx.lifecycle.SavedStateHandle: java.util.Map mLiveDatas -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveDecay -okhttp3.internal.http2.Http2Connection$Listener: void onSettings(okhttp3.internal.http2.Http2Connection) -androidx.constraintlayout.widget.R$styleable: int Variant_region_widthLessThan -wangdaye.com.geometricweather.R$attr: int expandedTitleMargin -com.tencent.bugly.crashreport.common.strategy.StrategyBean -com.amap.api.location.AMapLocationQualityReport: void setLocationMode(com.amap.api.location.AMapLocationClientOption$AMapLocationMode) -androidx.preference.R$id: int end -com.tencent.bugly.proguard.d: com.tencent.bugly.proguard.f e -androidx.preference.R$color: int switch_thumb_material_dark -com.tencent.bugly.proguard.y: java.lang.Object b() -androidx.constraintlayout.widget.R$id: int motion_base -okhttp3.internal.cache.CacheStrategy$Factory: long receivedResponseMillis -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: void onLiveLockScreenChanged(cyanogenmod.app.LiveLockScreenInfo) -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_disabled -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -android.didikee.donate.R$styleable: int Toolbar_titleMargin -retrofit2.ParameterHandler$Path: java.lang.String name -cyanogenmod.weatherservice.IWeatherProviderService$Stub: android.os.IBinder asBinder() -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: float mMin -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type HORIZONTAL_DIMENSION -cyanogenmod.providers.CMSettings$Secure$1: CMSettings$Secure$1() -android.didikee.donate.R$layout: int abc_search_view -androidx.appcompat.R$styleable: int[] GradientColor -okio.SegmentedByteString: okio.ByteString substring(int,int) -android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: double Value -com.google.android.material.imageview.ShapeableImageView: void setStrokeWidthResource(int) -androidx.lifecycle.LifecycleService: LifecycleService() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_19 -androidx.constraintlayout.widget.R$styleable: int MenuItem_alphabeticModifiers -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle -okhttp3.internal.cache.DiskLruCache: long size() -com.google.android.material.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getSelectedItemId() -com.google.android.material.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -james.adaptiveicon.R$integer: int config_tooltipAnimTime -wangdaye.com.geometricweather.R$id: int firstVisible -cyanogenmod.app.Profile: cyanogenmod.profiles.AirplaneModeSettings getAirplaneMode() -androidx.drawerlayout.R$styleable: int ColorStateListItem_android_color -com.google.android.gms.location.ActivityTransitionEvent: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -androidx.preference.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -androidx.swiperefreshlayout.R$attr: int font -com.google.android.material.R$attr: int dialogPreferredPadding -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object) -wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat_Dark -cyanogenmod.app.Profile: Profile(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling Cooling -androidx.appcompat.widget.SwitchCompat: void setSwitchPadding(int) -wangdaye.com.geometricweather.R$drawable: int ic_mtrl_checked_circle -androidx.preference.R$styleable: int AlertDialog_android_layout -androidx.constraintlayout.widget.R$attr: int flow_padding -wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_2 -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_toId -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_toolbar -androidx.constraintlayout.widget.ConstraintLayout -androidx.fragment.R$id: int accessibility_custom_action_22 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ZEN_PRIORITY_ALLOW_LIGHTS_VALIDATOR -wangdaye.com.geometricweather.R$interpolator: int mtrl_fast_out_slow_in -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean done -okhttp3.internal.connection.RouteDatabase: boolean shouldPostpone(okhttp3.Route) -wangdaye.com.geometricweather.R$string: int widget_week -android.didikee.donate.R$anim: int abc_slide_out_bottom -cyanogenmod.weather.WeatherInfo$1 -com.baidu.location.e.h$c: com.baidu.location.e.h$c e -com.bumptech.glide.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.R$attr: int itemStrokeColor -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) -com.google.android.gms.internal.location.zzbe: android.os.Parcelable$Creator CREATOR -com.xw.repo.bubbleseekbar.R$color: int colorAccent -androidx.preference.R$styleable: int AppCompatSeekBar_tickMarkTint -okhttp3.Cache: java.lang.String key(okhttp3.HttpUrl) -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -io.reactivex.Observable: io.reactivex.Observable distinct(io.reactivex.functions.Function) -com.turingtechnologies.materialscrollbar.R$attr: int tabMinWidth -androidx.preference.R$styleable: int PreferenceImageView_maxHeight -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_controlView -wangdaye.com.geometricweather.R$attr: int materialCalendarMonth -wangdaye.com.geometricweather.R$dimen: int notification_subtext_size -androidx.activity.R$attr: int ttcIndex -okhttp3.HttpUrl$Builder: void pop() -androidx.activity.R$styleable: int GradientColor_android_endX -androidx.preference.R$drawable: int btn_checkbox_checked_mtrl -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min -androidx.preference.R$style: int TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.R$string: int week_3 -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State ENQUEUED -androidx.hilt.lifecycle.R$id: int icon_group -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.Integer cloudCover -androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver: ConstraintProxyUpdateReceiver() -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder expiresAt(long) -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginTop(int) -io.reactivex.Observable: io.reactivex.Observable debounce(long,java.util.concurrent.TimeUnit) -com.google.android.material.R$styleable: int MotionLayout_applyMotionScene -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Title -com.tencent.bugly.proguard.z: byte[] a(int) -androidx.viewpager2.R$attr: int fontStyle -android.didikee.donate.R$dimen: int hint_pressed_alpha_material_light -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableTop -wangdaye.com.geometricweather.R$styleable: int ListPreference_android_entries -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onComplete() -com.turingtechnologies.materialscrollbar.R$drawable: int tooltip_frame_light -wangdaye.com.geometricweather.R$attr: int itemHorizontalTranslationEnabled -cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mOnClick -wangdaye.com.geometricweather.db.entities.AlertEntity: void setCityId(java.lang.String) -com.google.android.material.slider.Slider: int getActiveThumbIndex() -androidx.preference.R$dimen: int abc_dialog_fixed_width_major -cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_WAKE_SCREEN -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: void addFilter(java.lang.String) -androidx.preference.R$styleable: int TextAppearance_android_textColor -com.turingtechnologies.materialscrollbar.Handle: void setBackgroundColor(int) -androidx.hilt.R$dimen: int notification_right_icon_size -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeight -com.tencent.bugly.crashreport.crash.d: void a(java.lang.Thread,int,java.lang.String,java.lang.String,java.lang.String,java.util.Map) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_radioButtonStyle -com.amap.api.location.AMapLocation: boolean o -com.amap.api.fence.GeoFence: int TYPE_ROUND -wangdaye.com.geometricweather.R$drawable: int notif_temp_106 -androidx.appcompat.R$color: int abc_secondary_text_material_dark -androidx.viewpager.widget.PagerTabStrip: void setTabIndicatorColor(int) -wangdaye.com.geometricweather.db.entities.LocationEntity: void setLatitude(float) -com.turingtechnologies.materialscrollbar.R$layout: int design_bottom_sheet_dialog -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_7 -com.google.android.material.R$styleable: int[] View -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_7 -wangdaye.com.geometricweather.R$attr: int lineSpacing -james.adaptiveicon.R$drawable: int abc_textfield_default_mtrl_alpha -okio.Buffer: boolean rangeEquals(okio.Segment,int,okio.ByteString,int,int) -com.google.android.material.R$color: int design_snackbar_background_color -androidx.preference.R$attr: int progressBarPadding -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean disposeAll() -androidx.viewpager.R$styleable -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: cyanogenmod.app.ILiveLockScreenManagerProvider asInterface(android.os.IBinder) -com.turingtechnologies.materialscrollbar.R$id: int action_menu_presenter -wangdaye.com.geometricweather.R$styleable: int[] AppCompatImageView -cyanogenmod.externalviews.ExternalViewProviderService: java.lang.String TAG -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean done -wangdaye.com.geometricweather.R$styleable: int[] ScrollingViewBehavior_Layout -okhttp3.Dispatcher: void finished(java.util.Deque,java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int AlertDialog_multiChoiceItemLayout -androidx.recyclerview.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$attr: int bsb_show_thumb_text -com.tencent.bugly.BuglyStrategy$a -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer uvIndex -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: AccuDailyResult$DailyForecasts$Night$WindGust$Direction() -cyanogenmod.app.ProfileManager: android.app.NotificationGroup[] getNotificationGroups() -androidx.constraintlayout.widget.R$string: int abc_action_mode_done -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.constraintlayout.widget.R$id: int time -androidx.fragment.app.FragmentManager: void addOnBackStackChangedListener(androidx.fragment.app.FragmentManager$OnBackStackChangedListener) -cyanogenmod.themes.IThemeService$Stub$Proxy: IThemeService$Stub$Proxy(android.os.IBinder) -cyanogenmod.weather.WeatherInfo$DayForecast: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_subtitle_top_margin_material -wangdaye.com.geometricweather.R$attr: int color -com.tencent.bugly.proguard.m: long c -androidx.preference.PreferenceFragmentCompat -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tMax -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder socketFactory(javax.net.SocketFactory) -com.turingtechnologies.materialscrollbar.R$attr: int collapseIcon -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_is_float_type -io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent INSTANCE -com.amap.api.fence.GeoFenceClient: void setActivateAction(int) -wangdaye.com.geometricweather.R$string: int settings_title_card_display -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String name -com.google.android.material.progressindicator.ProgressIndicator: void setCircularInset(int) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue getOrCreateQueue() -androidx.loader.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: int Degrees -com.bumptech.glide.integration.okhttp.R$styleable -io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -com.google.android.material.R$drawable: int notify_panel_notification_icon_bg -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_creator -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow snow -android.didikee.donate.R$color: int bright_foreground_inverse_material_light -androidx.preference.SwitchPreferenceCompat -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets -com.xw.repo.bubbleseekbar.R$color: int abc_btn_colored_borderless_text_material -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_divider -cyanogenmod.app.Profile: void doSelect(android.content.Context,com.android.internal.policy.IKeyguardService) -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: java.util.concurrent.TimeUnit unit -okio.HashingSource: long read(okio.Buffer,long) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getTitle() -androidx.preference.R$attr -androidx.hilt.R$styleable: int GradientColor_android_startX -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context) -com.jaredrummler.android.colorpicker.R$attr: int cpv_showOldColor -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_android_enabled -okhttp3.RealCall$AsyncCall: okhttp3.RealCall this$0 -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: long serialVersionUID -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: boolean val$screenOn -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onNext(java.lang.Object) -androidx.appcompat.R$styleable: int ActionBar_displayOptions -com.tencent.bugly.crashreport.R: R() -androidx.preference.R$styleable: int SearchView_submitBackground -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onError(java.lang.Throwable) -androidx.appcompat.resources.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_colorPresets -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_alphabeticShortcut -com.turingtechnologies.materialscrollbar.R$id: int up -androidx.preference.R$id: int action_bar_title -wangdaye.com.geometricweather.R$id: int META -com.google.android.material.R$attr: int tooltipForegroundColor -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState RUNNING -androidx.viewpager2.R$dimen: int notification_top_pad -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias -okhttp3.RequestBody$2: int val$byteCount -cyanogenmod.app.Profile$1: java.lang.Object createFromParcel(android.os.Parcel) -com.google.android.material.datepicker.CompositeDateValidator -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getHideMotionSpec() -androidx.preference.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_lifted -wangdaye.com.geometricweather.R$styleable: int RecyclerView_spanCount -com.tencent.bugly.crashreport.common.info.AppInfo: boolean a(android.content.Context,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Motion_animate_relativeTo -androidx.appcompat.R$id: int tag_transition_group -james.adaptiveicon.R$styleable: int FontFamilyFont_android_ttcIndex -cyanogenmod.hardware.DisplayMode: void writeToParcel(android.os.Parcel,int) -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: int TRANSACTION_createExternalView_0 -androidx.constraintlayout.widget.R$drawable: int abc_btn_check_to_on_mtrl_015 -com.bumptech.glide.R$id: int title -okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: Http2Connection$ReaderRunnable$3(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[]) -androidx.swiperefreshlayout.R$styleable: int[] GradientColorItem -androidx.appcompat.R$style: int Theme_AppCompat_Dialog -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.R$attr: int listItemLayout -okhttp3.Connection: okhttp3.Route route() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio -com.xw.repo.bubbleseekbar.R$layout: int abc_screen_simple_overlay_action_mode -com.google.android.material.R$id: int material_clock_face -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowRadius -androidx.loader.R$id: int line3 -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_xml -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource MEMORY_CACHE -com.jaredrummler.android.colorpicker.R$attr: int closeItemLayout -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: java.lang.String Unit -androidx.constraintlayout.widget.R$attr: int actionModeWebSearchDrawable -androidx.viewpager.R$style -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: int UnitType -wangdaye.com.geometricweather.R$id: int adjust_width -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: void setBrands(java.util.List) -androidx.cardview.R$dimen: R$dimen() -androidx.viewpager2.R$dimen: int item_touch_helper_swipe_escape_velocity -androidx.constraintlayout.widget.R$attr: int textLocale -com.jaredrummler.android.colorpicker.R$attr: int collapseContentDescription -wangdaye.com.geometricweather.R$dimen: int design_fab_translation_z_hovered_focused -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingBottom -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_CBC_SHA -cyanogenmod.themes.ThemeChangeRequest$RequestType: ThemeChangeRequest$RequestType(java.lang.String,int) -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean done -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_pixel -okhttp3.OkHttpClient: int readTimeoutMillis() -wangdaye.com.geometricweather.db.entities.LocationEntity: void setChina(boolean) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: long serialVersionUID -com.bumptech.glide.R$id: R$id() -com.google.android.material.textfield.TextInputLayout: com.google.android.material.internal.CheckableImageButton getEndIconView() -com.tencent.bugly.crashreport.CrashReport: void testNativeCrash(boolean,boolean,boolean) -wangdaye.com.geometricweather.R$attr: int layoutDuringTransition -wangdaye.com.geometricweather.R$color: int mtrl_error -com.google.gson.stream.JsonReader: boolean isLenient() -androidx.transition.R$dimen: int notification_right_side_padding_top -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type UNKNOWN -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_3 -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf -com.google.android.material.chip.Chip: float getCloseIconEndPadding() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_handleOffColor -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -androidx.loader.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: int hasRain -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_SNOW -androidx.appcompat.R$attr: int toolbarStyle -androidx.fragment.R$layout: R$layout() -androidx.appcompat.R$style: int Platform_AppCompat -android.didikee.donate.R$layout: int select_dialog_multichoice_material -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Bridge -wangdaye.com.geometricweather.R$styleable: int PropertySet_android_alpha -androidx.preference.R$styleable: int AppCompatTheme_switchStyle -com.google.android.material.R$id: int chip3 -com.google.android.material.R$styleable: int[] MenuGroup -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionButtonStyle -com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context) -okio.ByteString: okio.ByteString toAsciiUppercase() -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableItem_android_drawable -com.amap.api.location.AMapLocation: void setAddress(java.lang.String) -james.adaptiveicon.R$layout: int abc_screen_content_include -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onNext(java.lang.Object) -androidx.lifecycle.ProcessLifecycleOwner$3$1: ProcessLifecycleOwner$3$1(androidx.lifecycle.ProcessLifecycleOwner$3) -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: boolean setOther(io.reactivex.disposables.Disposable) -androidx.recyclerview.R$styleable: int GradientColor_android_centerX -com.google.android.material.slider.RangeSlider: void setTickActiveTintList(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_12 -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: HistoryEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterTextColor -wangdaye.com.geometricweather.R$id: int container_alert_display_view_container -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_subtitle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: AccuCurrentResult$WindGust$Speed() -com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_toRightOf -wangdaye.com.geometricweather.R$attr: int state_collapsible -com.xw.repo.bubbleseekbar.R$color: R$color() -io.reactivex.internal.observers.LambdaObserver: long serialVersionUID -androidx.preference.R$attr: int layout_insetEdge -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_NoActionBar -okhttp3.internal.http2.Http2Stream: void closeLater(okhttp3.internal.http2.ErrorCode) -androidx.lifecycle.ViewModelProvider$NewInstanceFactory -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Medium -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap -cyanogenmod.util.ColorUtils: int generateAlertColorFromDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: int bufferSize -com.tencent.bugly.proguard.z: java.util.Map b(android.os.Parcel) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Small -com.tencent.bugly.crashreport.crash.anr.b: boolean a(java.lang.String,java.lang.String,java.lang.String) -com.bumptech.glide.integration.okhttp.R$id: int action_container -okhttp3.ResponseBody$BomAwareReader: int read(char[],int,int) -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties -wangdaye.com.geometricweather.R$id: int textStart -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode -androidx.constraintlayout.widget.R$attr: int actionModeCopyDrawable -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -com.google.android.material.R$styleable: int KeyCycle_android_rotation -androidx.appcompat.R$attr: int colorError -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -okhttp3.internal.tls.OkHostnameVerifier: java.util.List getSubjectAltNames(java.security.cert.X509Certificate,int) -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_SLOW_SAMPLES -io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier INSTANCE -com.tencent.bugly.proguard.y: void a(java.lang.String,java.lang.String,java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int buttonCompat -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_right_mtrl_light -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getTag() -androidx.vectordrawable.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event INITIALIZE -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWindLevel() -wangdaye.com.geometricweather.R$dimen: int design_snackbar_max_width -james.adaptiveicon.R$style: int Theme_AppCompat_Dialog_Alert -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onError(java.lang.Throwable) -com.google.android.material.R$styleable: int Layout_android_layout_width -com.google.android.material.R$attr: int state_dragged -androidx.constraintlayout.widget.R$attr: int title -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_PopupMenu -androidx.appcompat.R$styleable: int GradientColor_android_type -com.google.android.material.R$styleable: int AppCompatTheme_colorControlHighlight -wangdaye.com.geometricweather.R$id: int dragUp -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pubTime -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedTextWithoutUnit(float) -com.tencent.bugly.proguard.am: byte[] y -james.adaptiveicon.R$attr: int popupTheme -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setWeekText(java.lang.String) -androidx.constraintlayout.widget.R$attr: int homeAsUpIndicator -wangdaye.com.geometricweather.R$id: int action_bar_activity_content -com.jaredrummler.android.colorpicker.R$string: int status_bar_notification_info_overflow -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: ObservableSequenceEqual$EqualCoordinator(io.reactivex.Observer,int,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) -io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription valueOf(java.lang.String) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabTextStyle -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_dividerPadding -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial Imperial -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: int UnitType -com.google.android.material.R$animator: int mtrl_extended_fab_state_list_animator -com.turingtechnologies.materialscrollbar.R$attr: int navigationMode -com.turingtechnologies.materialscrollbar.R$attr: int windowFixedHeightMajor -james.adaptiveicon.R$dimen: int abc_dropdownitem_text_padding_left -androidx.constraintlayout.widget.R$id: int listMode -androidx.appcompat.R$id: int action_context_bar -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_NoActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_horizontalDivider -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getProgress -wangdaye.com.geometricweather.R$drawable: int ic_dress -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: int UnitType -com.xw.repo.bubbleseekbar.R$attr: int bsb_auto_adjust_section_mark -wangdaye.com.geometricweather.R$dimen: int design_snackbar_background_corner_radius -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.R$attr: int maxVelocity -androidx.constraintlayout.widget.R$dimen: int abc_control_inset_material -com.google.android.material.slider.Slider: void setValue(float) -cyanogenmod.weather.RequestInfo: int TYPE_WEATHER_BY_WEATHER_LOCATION_REQ -com.jaredrummler.android.colorpicker.R$attr: int fastScrollHorizontalThumbDrawable -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_title_divider_material -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_3 -wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_pressed_alpha -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeCloudCover -wangdaye.com.geometricweather.R$drawable: int abc_spinner_textfield_background_material -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: long time -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_padding_material -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener mListener -com.google.android.material.theme.MaterialComponentsViewInflater -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_stacked_max_height -com.google.android.material.R$dimen: int compat_notification_large_icon_max_height -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void c() -com.xw.repo.bubbleseekbar.R$attr: int textAllCaps -com.google.android.material.R$styleable: int AppCompatTheme_actionModeCutDrawable -androidx.customview.R$styleable: int FontFamily_fontProviderPackage -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_checkable -wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_android_letterSpacing -androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context,android.util.AttributeSet,int) -android.support.v4.os.IResultReceiver$Stub -com.google.android.material.R$attr: int checkedIconEnabled -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_min -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String no2Desc -com.google.android.material.R$styleable: int SearchView_commitIcon -wangdaye.com.geometricweather.R$color: int androidx_core_ripple_material_light -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: PrecipitationDuration(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -androidx.constraintlayout.widget.R$id: int info -wangdaye.com.geometricweather.R$attr: int materialCalendarDay -okio.SegmentedByteString: byte getByte(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setStatus(int) -io.reactivex.internal.observers.ForEachWhileObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.amap.api.location.AMapLocationClientOption: void setScanWifiInterval(long) -com.jaredrummler.android.colorpicker.R$attr: int cpv_sliderColor -com.google.android.material.R$id: int action_divider -com.google.android.material.R$dimen: int mtrl_progress_indicator_size -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: boolean hasValue -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitationDuration -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,okio.ByteString) -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setIcons(java.lang.String) -com.google.android.material.R$attr: int flow_horizontalAlign -com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_out_bottom -androidx.constraintlayout.widget.R$attr: int alertDialogCenterButtons -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Colored -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -okhttp3.internal.platform.OptionalMethod: java.lang.reflect.Method getPublicMethod(java.lang.Class,java.lang.String,java.lang.Class[]) -androidx.customview.R$dimen: R$dimen() -okhttp3.internal.publicsuffix.PublicSuffixDatabase: void readTheListUninterruptibly() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: java.lang.String Unit -com.tencent.bugly.proguard.ad -okhttp3.Address: javax.net.ssl.SSLSocketFactory sslSocketFactory() -wangdaye.com.geometricweather.R$dimen: int design_fab_border_width -james.adaptiveicon.R$attr: int actionBarTabStyle -wangdaye.com.geometricweather.R$styleable: int Transition_constraintSetStart -com.turingtechnologies.materialscrollbar.R$id: int tag_transition_group -androidx.constraintlayout.widget.R$styleable: int SearchView_queryHint -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: MfWarningsResult() -wangdaye.com.geometricweather.R$id: int widget_week_temp_1 -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnw -androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_round -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: java.util.Date updateTime -androidx.preference.R$styleable: int Toolbar_contentInsetStart -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_padding_right -com.google.android.material.R$style: int Widget_MaterialComponents_Light_ActionBar_Solid -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String getDescription() -androidx.dynamicanimation.R$attr: int alpha -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -com.jaredrummler.android.colorpicker.ColorPickerView: int getPreferredWidth() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric Metric -androidx.fragment.R$anim: int fragment_fade_exit -androidx.hilt.R$styleable: int GradientColor_android_type -retrofit2.RequestBuilder: void addFormField(java.lang.String,java.lang.String,boolean) -com.google.android.material.chip.Chip: void setCloseIconVisible(boolean) -androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.Fragment,androidx.lifecycle.ViewModelProvider$Factory) -wangdaye.com.geometricweather.R$attr: int iconifiedByDefault -com.xw.repo.bubbleseekbar.R$attr: int layout_behavior -android.didikee.donate.R$styleable: int ViewBackgroundHelper_backgroundTint -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindSpeed(java.lang.Float) -com.google.android.material.R$animator: int mtrl_btn_unelevated_state_list_anim -com.google.android.material.R$styleable: int TabLayout_tabMode -androidx.core.R$id: int tag_accessibility_clickable_spans -com.turingtechnologies.materialscrollbar.R$style: int Base_V28_Theme_AppCompat -androidx.appcompat.R$color: int switch_thumb_material_light -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationX -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String weatherStart -androidx.legacy.coreutils.R$id: int forever -com.xw.repo.bubbleseekbar.R$styleable: int GradientColorItem_android_color -okhttp3.internal.platform.ConscryptPlatform: javax.net.ssl.SSLContext getSSLContext() -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstVerticalStyle -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: AccuLocationResult$GeoPosition$Elevation$Imperial() -androidx.preference.R$drawable: int abc_cab_background_top_mtrl_alpha -com.tencent.bugly.crashreport.common.info.a: void a(java.lang.String,java.lang.String) -androidx.appcompat.R$bool: int abc_config_actionMenuItemAllCaps -androidx.core.R$dimen: int notification_top_pad_large_text -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -com.jaredrummler.android.colorpicker.R$id: int item_touch_helper_previous_elevation -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_list_padding_top_no_title -com.bumptech.glide.R$styleable: int GradientColor_android_type -com.google.android.material.R$styleable: int MotionScene_defaultDuration -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_android_windowIsFloating -androidx.constraintlayout.widget.R$id: int stop -wangdaye.com.geometricweather.R$styleable: int RecyclerView_stackFromEnd -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_1 -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean cancelled -androidx.lifecycle.FullLifecycleObserverAdapter$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$Event -retrofit2.RequestFactory$Builder: okhttp3.Headers headers -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTx() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -wangdaye.com.geometricweather.R$styleable: int CardView_android_minWidth -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark_normal_background -okio.SegmentedByteString: byte[] toByteArray() -cyanogenmod.weather.CMWeatherManager$2$2: CMWeatherManager$2$2(cyanogenmod.weather.CMWeatherManager$2,cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener,int,java.util.List) -wangdaye.com.geometricweather.R$id: int circle -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_disabled_holo_dark -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Choice -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -android.didikee.donate.R$styleable: int Toolbar_subtitleTextColor -androidx.appcompat.widget.LinearLayoutCompat: int getOrientation() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_133 -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherText -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification -com.turingtechnologies.materialscrollbar.R$id: int action_context_bar -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light -wangdaye.com.geometricweather.R$attr: int layout_dodgeInsetEdges -com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorSize(int) -okio.Buffer: okio.BufferedSink writeShortLe(int) -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem -androidx.core.R$styleable -androidx.appcompat.widget.AbsActionBarView: int getContentHeight() -wangdaye.com.geometricweather.R$id: int graph -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.R$color: int design_fab_stroke_end_inner_color -com.tencent.bugly.BuglyStrategy: java.lang.String getAppChannel() -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: long serialVersionUID -androidx.constraintlayout.widget.R$integer: int abc_config_activityShortDur -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCollapsedPaddingTop -androidx.appcompat.resources.R$id: int accessibility_custom_action_18 -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemBackgroundRes() -androidx.appcompat.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -wangdaye.com.geometricweather.R$attr: int titleTextColor -okio.BufferedSource: java.lang.String readString(java.nio.charset.Charset) -androidx.lifecycle.ProcessLifecycleOwner$3$1: void onActivityPostStarted(android.app.Activity) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_default -com.tencent.bugly.a: void onDbUpgrade(android.database.sqlite.SQLiteDatabase,int,int) -wangdaye.com.geometricweather.R$attr: int endIconCheckable -com.google.android.material.R$color: int design_fab_stroke_top_inner_color -androidx.dynamicanimation.R$id: R$id() -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_dotGap -com.google.android.material.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -okhttp3.MultipartBody: java.lang.StringBuilder appendQuotedString(java.lang.StringBuilder,java.lang.String) -okhttp3.internal.http2.Http2: java.lang.String[] FLAGS -android.didikee.donate.R$drawable: int abc_text_select_handle_left_mtrl_light -james.adaptiveicon.R$anim: R$anim() -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTodaysHigh(double) -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_12 -wangdaye.com.geometricweather.R$styleable: int[] FloatingActionButton -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleEnabled -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer grassLevel -okhttp3.RealCall$1: void timedOut() -androidx.activity.R$drawable: int notification_template_icon_low_bg -okio.ByteString: byte[] internalArray() -com.google.android.material.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -androidx.preference.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -james.adaptiveicon.R$drawable: int notification_bg_normal_pressed -androidx.core.R$layout: int custom_dialog -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassIndex -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_SHOW_WEATHER_VALIDATOR -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String o -com.google.gson.stream.JsonScope: int EMPTY_ARRAY -android.support.v4.os.ResultReceiver$MyRunnable: void run() -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_black -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_48dp -androidx.constraintlayout.widget.R$dimen: int hint_pressed_alpha_material_dark -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer gust -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Time -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: long serialVersionUID -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onKeyguardDismissed() -com.google.android.material.textfield.TextInputLayout: void setStartIconDrawable(int) -androidx.lifecycle.ClassesInfoCache: java.util.Map mCallbackMap -androidx.preference.R$color: int error_color_material_light -okio.Timeout$1: Timeout$1() -com.google.android.gms.location.LocationSettingsRequest: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveVariesBy -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline4 -cyanogenmod.themes.ThemeChangeRequest$Builder -com.amap.api.location.AMapLocation: java.lang.String getDescription() -com.turingtechnologies.materialscrollbar.R$attr: int helperTextEnabled -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense -com.google.android.material.R$styleable: int[] MaterialTextAppearance -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Toolbar -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetEndWithActions -io.reactivex.Observable: io.reactivex.Observable throttleLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.lifecycle.ViewModelProvider$KeyedFactory -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getMinutelyForecast() -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: ObservableReplay$ReplayObserver(io.reactivex.internal.operators.observable.ObservableReplay$ReplayBuffer) -com.xw.repo.bubbleseekbar.R$dimen: int abc_button_inset_vertical_material -wangdaye.com.geometricweather.R$attr: int toolbarStyle -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.R$drawable: int notif_temp_123 -com.tencent.bugly.crashreport.biz.b: long h -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_creator -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvLevel -com.google.gson.FieldNamingPolicy: java.lang.String translateName(java.lang.reflect.Field) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalBias -androidx.constraintlayout.widget.R$attr: int titleTextColor -com.tencent.bugly.crashreport.biz.b: int g -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_backgroundTint -androidx.appcompat.R$attr: int displayOptions -james.adaptiveicon.R$styleable: int ActionMenuItemView_android_minWidth -wangdaye.com.geometricweather.db.entities.AlertEntity: int priority -wangdaye.com.geometricweather.R$drawable: int ic_wind -okhttp3.internal.http2.Hpack$Reader: int maxDynamicTableByteCount -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: double seaLevel -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: IAppSuggestProvider$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.R$attr: int mock_label -androidx.recyclerview.widget.RecyclerView: void setChildDrawingOrderCallback(androidx.recyclerview.widget.RecyclerView$ChildDrawingOrderCallback) -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -wangdaye.com.geometricweather.R$styleable: int[] MotionScene -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: java.lang.String Unit -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitation -com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$layout: int abc_search_dropdown_item_icons_2line -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_DarkActionBar -androidx.core.R$id: int normal -com.google.android.material.button.MaterialButton: int getTextWidth() -com.turingtechnologies.materialscrollbar.R$styleable: int[] CollapsingToolbarLayout_Layout -androidx.appcompat.R$style: int Base_AlertDialog_AppCompat -androidx.appcompat.widget.AppCompatButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.jaredrummler.android.colorpicker.R$attr: int allowDividerBelow -okhttp3.internal.http1.Http1Codec$ChunkedSource: okhttp3.internal.http1.Http1Codec this$0 -androidx.appcompat.R$styleable: int AlertDialog_multiChoiceItemLayout -wangdaye.com.geometricweather.R$drawable: int snackbar_background -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String en_US -okhttp3.internal.Internal: void put(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: boolean disposed -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_color -com.google.android.material.chip.Chip: void setTextAppearanceResource(int) -okhttp3.internal.cache2.Relay$RelaySource: void close() -androidx.hilt.R$color: R$color() -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_STATUS_BAR -androidx.constraintlayout.widget.R$id -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_dividerPadding -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getStreet() -cyanogenmod.externalviews.KeyguardExternalView: java.lang.String CATEGORY_KEYGUARD_GRANT_PERMISSION -com.google.android.material.R$id: int chip2 -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setDateText(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_padding -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_icon_padding -okhttp3.Response: okhttp3.Protocol protocol() -androidx.cardview.R$attr: int contentPaddingRight -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabBar -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_numericModifiers -okhttp3.EventListener: void secureConnectEnd(okhttp3.Call,okhttp3.Handshake) -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_icon_padding -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,long,boolean) -androidx.appcompat.R$dimen: int abc_dialog_fixed_width_minor -okhttp3.internal.http2.Huffman: byte[] CODE_LENGTHS -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextAppearanceInactive -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String LocalizedName -retrofit2.OkHttpCall$NoContentResponseBody -retrofit2.http.Field: boolean encoded() -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderFetchTimeout -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_elevation_material -androidx.lifecycle.extensions.R$dimen -androidx.hilt.R$id: int notification_main_column -wangdaye.com.geometricweather.R$string: int week -james.adaptiveicon.R$drawable: int abc_text_select_handle_left_mtrl_light -wangdaye.com.geometricweather.R$styleable: int ActionBar_homeLayout -wangdaye.com.geometricweather.R$id: int largeLabel -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose[] values() -wangdaye.com.geometricweather.R$attr: int daySelectedStyle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingBottom -com.bumptech.glide.R$attr: int layout_anchorGravity -com.google.android.material.slider.BaseSlider: void setEnabled(boolean) -androidx.preference.R$id: int accessibility_custom_action_12 -androidx.transition.R$integer -wangdaye.com.geometricweather.R$attr: int region_heightMoreThan -com.loc.k: java.lang.String a() -org.greenrobot.greendao.AbstractDaoSession: void deleteAll(java.lang.Class) -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_animationDuration -cyanogenmod.app.Profile: cyanogenmod.profiles.AirplaneModeSettings mAirplaneMode -com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialButton -androidx.constraintlayout.widget.R$styleable: int MenuItem_tooltipText -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.R$array: int temperature_unit_values -cyanogenmod.externalviews.ExternalView$7: cyanogenmod.externalviews.ExternalView this$0 -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_vertical_padding -retrofit2.ParameterHandler$Body -io.reactivex.internal.util.ArrayListSupplier: java.lang.Object call() -androidx.constraintlayout.helper.widget.Flow: void setPaddingTop(int) -wangdaye.com.geometricweather.R$styleable: int GradientColorItem_android_offset -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -okio.Buffer: byte[] readByteArray(long) -james.adaptiveicon.R$attr: int colorError -wangdaye.com.geometricweather.R$string: int common_google_play_services_unknown_issue -retrofit2.RequestFactory$Builder: java.util.regex.Pattern PARAM_NAME_REGEX -androidx.hilt.lifecycle.R$style -com.google.android.material.R$attr: int height -okhttp3.internal.http2.Http2Stream: void writeHeaders(java.util.List,boolean) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionModeOverlay -androidx.constraintlayout.helper.widget.Flow: void setMaxElementsWrap(int) -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_applyDefaultTheme -androidx.viewpager2.R$id: int accessibility_custom_action_13 -okio.RealBufferedSource: java.lang.String readUtf8LineStrict(long) -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String value -okhttp3.OkHttpClient$Builder: javax.net.SocketFactory socketFactory -androidx.constraintlayout.widget.R$styleable: int[] GradientColor -okio.GzipSource: long read(okio.Buffer,long) -androidx.transition.R$styleable: int FontFamilyFont_font -com.google.android.material.button.MaterialButton: void setCheckable(boolean) -okhttp3.Response -com.google.android.material.R$id: int mtrl_picker_header -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearTodayStyle -android.didikee.donate.R$attr: int titleMarginStart -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getO3Desc() -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlHighlight -androidx.preference.R$styleable: int Spinner_android_popupBackground -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_orientation -android.didikee.donate.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getOverlayThemePackageName() -james.adaptiveicon.R$color: int abc_primary_text_disable_only_material_light -com.tencent.bugly.proguard.ap: java.lang.String k -james.adaptiveicon.R$color: int primary_material_dark -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: boolean done -io.reactivex.internal.observers.InnerQueuedObserver: int prefetch -androidx.core.R$layout: int notification_template_part_chronometer -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: boolean cancelled -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float tWindchill -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_48dp -com.xw.repo.bubbleseekbar.R$attr: int subtitle -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorAnimationDuration -james.adaptiveicon.R$string: int abc_capital_off -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -androidx.preference.R$color: int abc_primary_text_disable_only_material_light -com.google.android.material.R$styleable: int BottomNavigationView_itemTextAppearanceActive -androidx.constraintlayout.widget.R$id: int buttonPanel -com.jaredrummler.android.colorpicker.R$attr: int switchStyle -okhttp3.MultipartBody$Builder: okio.ByteString boundary -com.bumptech.glide.R$dimen: int notification_small_icon_background_padding -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$id: int container_main_header -io.reactivex.Observable: io.reactivex.Observable sorted(java.util.Comparator) -org.greenrobot.greendao.AbstractDaoSession: java.lang.Object callInTx(java.util.concurrent.Callable) -com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_android_background -wangdaye.com.geometricweather.R$id: int search_button -com.google.android.material.R$attr: int buttonCompat -androidx.appcompat.R$styleable: int MenuItem_android_icon -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableStartCompat -com.google.android.material.R$id: int accessibility_custom_action_1 -com.google.android.material.R$color: int material_on_surface_disabled -androidx.work.R$id: int text2 -cyanogenmod.weather.CMWeatherManager -com.xw.repo.bubbleseekbar.R$dimen: int abc_search_view_preferred_height -androidx.customview.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.R$dimen: int cpv_required_padding -androidx.activity.R$id: int tag_unhandled_key_event_manager -com.google.android.material.R$attr: int buttonTintMode -com.google.android.material.R$styleable: int View_theme -com.google.android.material.R$attr: int windowMinWidthMajor -androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_visible -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_menuCategory -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -android.didikee.donate.R$dimen: int abc_control_inset_material -com.google.android.material.R$styleable: int FlowLayout_itemSpacing -com.google.android.material.R$attr: int strokeColor -com.google.android.gms.base.R$color: int common_google_signin_btn_text_light -james.adaptiveicon.R$styleable: int[] AppCompatTheme -com.google.android.material.R$attr: int itemFillColor -io.reactivex.internal.queue.SpscArrayQueue: void soConsumerIndex(long) -wangdaye.com.geometricweather.common.ui.behaviors.InkPageIndicatorBehavior: InkPageIndicatorBehavior(android.content.Context,android.util.AttributeSet) -androidx.vectordrawable.animated.R$drawable: int notification_template_icon_low_bg -android.support.v4.os.ResultReceiver$MyRunnable: android.support.v4.os.ResultReceiver this$0 -com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableCompat -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int FIRED_STATE -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterOverflowTextColor -wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_iconResEnd -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchPadding -com.amap.api.location.AMapLocation: int LOCATION_TYPE_FAST -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Large -androidx.constraintlayout.widget.R$styleable: int[] PopupWindowBackgroundState -okhttp3.internal.Util: void checkOffsetAndCount(long,long,long) -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType[] values() -androidx.constraintlayout.widget.R$styleable: int[] View -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String headDescription -okhttp3.internal.http2.Http2Stream$FramingSource: void updateConnectionFlowControl(long) -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicBoolean cancelled -com.google.android.material.R$color: int material_grey_300 -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_checked -com.google.gson.stream.JsonReader: java.lang.String peekedString -androidx.core.R$id: int line3 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_padding_vertical_material -androidx.recyclerview.widget.RecyclerView$SavedState: android.os.Parcelable$Creator CREATOR -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSyncDuration -androidx.constraintlayout.widget.R$attr: int mock_diagonalsColor -android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Dialog -com.tencent.bugly.crashreport.biz.b: long k() -androidx.fragment.R$styleable: int[] GradientColorItem -com.tencent.bugly.proguard.z: java.util.ArrayList c(android.content.Context,java.lang.String) -androidx.constraintlayout.widget.R$attr: int actionBarTabBarStyle -androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setSelectedPage(int) -com.google.android.material.floatingactionbutton.FloatingActionButton: void hide(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) -androidx.core.widget.NestedScrollView -androidx.hilt.lifecycle.R$drawable: int notification_bg -retrofit2.OptionalConverterFactory$OptionalConverter: java.util.Optional convert(okhttp3.ResponseBody) -com.google.android.material.R$styleable: int Constraint_flow_verticalStyle -com.baidu.location.e.l$b: int i -wangdaye.com.geometricweather.R$drawable: int ic_circle_white -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeight -wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_max -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_Overflow -com.google.android.material.slider.BaseSlider: void setHaloRadiusResource(int) -okhttp3.HttpUrl: java.lang.String host() -androidx.loader.R$attr: int fontProviderPackage -com.tencent.bugly.crashreport.CrashReport: void setUserId(android.content.Context,java.lang.String) -com.google.android.material.R$string: int password_toggle_content_description -androidx.preference.R$attr: int positiveButtonText -cyanogenmod.externalviews.KeyguardExternalView$2: KeyguardExternalView$2(cyanogenmod.externalviews.KeyguardExternalView) -com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Icon -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_22 -com.google.android.material.R$layout: int mtrl_calendar_horizontal -cyanogenmod.weatherservice.ServiceRequestResult: boolean equals(java.lang.Object) -com.tencent.bugly.proguard.y: java.lang.String d() -com.google.android.material.R$dimen: int abc_alert_dialog_button_bar_height -androidx.preference.PreferenceManager: void setOnDisplayPreferenceDialogListener(androidx.preference.PreferenceManager$OnDisplayPreferenceDialogListener) -okhttp3.internal.ws.RealWebSocket: void onReadMessage(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_max -james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_Switch -androidx.customview.R$styleable: int FontFamilyFont_android_fontWeight -androidx.appcompat.R$styleable: int TextAppearance_android_shadowDx -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabView -okhttp3.internal.http2.Http2: byte FLAG_PRIORITY -wangdaye.com.geometricweather.R$styleable: int MaterialTextView_android_lineHeight -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low_normal -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.hilt.work.R$id: int actions -wangdaye.com.geometricweather.R$dimen: int cpv_item_size -com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_dark -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: int getStatus() -androidx.legacy.coreutils.R$styleable: int[] GradientColor -androidx.preference.R$styleable -androidx.constraintlayout.widget.R$dimen: int abc_alert_dialog_button_bar_height -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onCross -com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.c a() -androidx.recyclerview.R$dimen: int compat_notification_large_icon_max_width -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: java.lang.String DESCRIPTOR -androidx.preference.R$id: int action_bar_container -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_RC4_128_SHA -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: org.reactivestreams.Subscription upstream -com.tencent.bugly.crashreport.common.info.a: java.util.HashMap A -androidx.core.R$id: int accessibility_custom_action_30 -androidx.recyclerview.R$layout: int notification_template_icon_group -okhttp3.internal.http.HttpDate: java.text.DateFormat[] BROWSER_COMPATIBLE_DATE_FORMATS -wangdaye.com.geometricweather.R$color: int switch_thumb_normal_material_dark -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getPressureVoice(android.content.Context,float) -androidx.work.R$styleable: int FontFamilyFont_ttcIndex -okhttp3.ResponseBody$1: ResponseBody$1(okhttp3.MediaType,long,okio.BufferedSource) -com.google.android.material.R$dimen: int material_filled_edittext_font_1_3_padding_bottom -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String saint -androidx.appcompat.R$styleable: int MenuItem_tooltipText -com.google.android.material.R$attr: int layout_collapseMode -wangdaye.com.geometricweather.R$string: int apparent_temperature -okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithoutIndexingNewName() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List kongtiao -io.reactivex.internal.subscriptions.SubscriptionArbiter -androidx.viewpager.R$styleable: int FontFamily_fontProviderPackage -com.google.android.material.R$styleable: int TextInputLayout_startIconTint -androidx.core.R$drawable: int notification_action_background -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView -androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -com.google.android.material.R$attr: int colorPrimarySurface -com.google.android.material.R$attr: int passwordToggleTintMode -io.reactivex.Observable: io.reactivex.Observable doAfterNext(io.reactivex.functions.Consumer) -com.tencent.bugly.proguard.al: void a(com.tencent.bugly.proguard.j) -androidx.constraintlayout.widget.R$dimen: int abc_switch_padding -wangdaye.com.geometricweather.R$id: int activity_weather_daily_pager -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListPopupWindow -com.google.android.material.R$string: int abc_menu_shift_shortcut_label -okhttp3.internal.tls.CertificateChainCleaner: CertificateChainCleaner() -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotation -com.turingtechnologies.materialscrollbar.R$style: int Base_V22_Theme_AppCompat_Light -androidx.preference.R$attr: int titleMargins -com.jaredrummler.android.colorpicker.R$attr: int showSeekBarValue -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCopyDrawable -android.didikee.donate.R$style: int Widget_AppCompat_ListMenuView -okio.SegmentedByteString: void write(java.io.OutputStream) -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderQuery -com.google.android.material.R$attr: int dragScale -androidx.activity.R$drawable -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_CBC_SHA -androidx.activity.ComponentActivity$3 -com.xw.repo.bubbleseekbar.R$attr: int popupWindowStyle -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onComplete() -androidx.work.R$style: int TextAppearance_Compat_Notification_Time -com.google.android.material.R$dimen: int mtrl_slider_thumb_radius -okhttp3.OkHttpClient: int writeTimeout -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -com.google.android.material.R$styleable: int Constraint_flow_lastHorizontalStyle -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitle -cyanogenmod.app.ICustomTileListener$Stub$Proxy: ICustomTileListener$Stub$Proxy(android.os.IBinder) -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_anchor -retrofit2.ParameterHandler$Headers: void apply(retrofit2.RequestBuilder,okhttp3.Headers) -androidx.viewpager2.R$dimen: int fastscroll_margin -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: DefaultCallAdapterFactory$ExecutorCallbackCall$1(retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall,retrofit2.Callback) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cuv -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver[] CANCELLED -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onKeyguardDismissed() -androidx.appcompat.R$styleable: int TextAppearance_android_textSize -io.reactivex.exceptions.ProtocolViolationException -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: AccuCurrentResult$PrecipitationSummary$PastHour() -com.turingtechnologies.materialscrollbar.R$styleable: int FlowLayout_itemSpacing -androidx.appcompat.R$style: int TextAppearance_AppCompat_Display1 -androidx.viewpager2.adapter.FragmentStateAdapter$FragmentMaxLifecycleEnforcer$3 -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: long serialVersionUID -android.didikee.donate.R$attr: int actionModeCloseDrawable -androidx.constraintlayout.widget.ConstraintLayout: void setMaxHeight(int) -cyanogenmod.app.Profile$ProfileTrigger$1: Profile$ProfileTrigger$1() -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getSubtitle() -wangdaye.com.geometricweather.R$array: int duration_unit_voices -androidx.preference.R$id: int right -androidx.vectordrawable.R$id: int accessibility_custom_action_15 -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float snowPrecipitation -wangdaye.com.geometricweather.R$layout: int preference -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX wind -android.didikee.donate.R$styleable: int[] ActivityChooserView -com.google.android.material.R$attr: int colorSecondary -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void subscribe(io.reactivex.ObservableSource[],int) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias -io.reactivex.Observable: io.reactivex.Observable takeLast(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial() -wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status[] values() -okhttp3.internal.http2.Hpack$Writer: void writeByteString(okio.ByteString) -androidx.constraintlayout.widget.R$styleable: int[] AppCompatTheme -cyanogenmod.platform.Manifest$permission: java.lang.String PROTECTED_APP -okio.RealBufferedSink: long writeAll(okio.Source) -okhttp3.Handshake: int hashCode() -androidx.viewpager.R$layout -com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String h(android.content.Context) -androidx.preference.R$styleable: int TextAppearance_textAllCaps -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeStyle -androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_toRightOf -androidx.lifecycle.service.R: R() -wangdaye.com.geometricweather.R$string: int dew_point -androidx.preference.R$styleable: int Toolbar_contentInsetLeft -androidx.hilt.work.R$integer: R$integer() -wangdaye.com.geometricweather.R$layout: int widget_text -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: android.os.IBinder mRemote -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_CREATE -com.turingtechnologies.materialscrollbar.R$integer: int bottom_sheet_slide_duration -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.R$id: int scrollIndicatorDown -androidx.appcompat.R$styleable: int AppCompatTheme_colorControlActivated -androidx.constraintlayout.widget.R$integer: int cancel_button_image_alpha -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_margin -androidx.lifecycle.extensions.R$styleable: int[] Fragment -com.google.android.material.R$dimen: int mtrl_btn_dialog_btn_min_width -android.didikee.donate.R$attr: int paddingStart -com.tencent.bugly.proguard.ap: void a(java.lang.StringBuilder,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.Date getPubTime() -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_Switch -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getZh_CN() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: java.lang.Object get() -com.google.android.material.R$styleable: int KeyAttribute_android_translationY -cyanogenmod.power.PerformanceManager: java.lang.String TAG -wangdaye.com.geometricweather.R$styleable: int ActionBar_elevation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setZh_CN(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void complete() -cyanogenmod.profiles.LockSettings: boolean mDirty -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_shapeAppearance -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: CallEnqueueObservable$CallCallback(retrofit2.Call,io.reactivex.Observer) -wangdaye.com.geometricweather.db.entities.MinutelyEntity: MinutelyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer) -androidx.preference.R$attr: int maxButtonHeight -com.xw.repo.bubbleseekbar.R$attr: int collapseIcon -wangdaye.com.geometricweather.R$drawable: int widget_clock_day_vertical -androidx.appcompat.R$styleable: int ActionBar_homeAsUpIndicator -cyanogenmod.app.ILiveLockScreenManagerProvider: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -android.didikee.donate.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -cyanogenmod.themes.IThemeService$Stub: IThemeService$Stub() -wangdaye.com.geometricweather.R$id: int line3 -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature -wangdaye.com.geometricweather.R$drawable: int shortcuts_haze -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int CloudCover -com.tencent.bugly.crashreport.CrashReport$UserStrategy -com.amap.api.fence.GeoFence: void setPendingIntent(android.app.PendingIntent) -com.bumptech.glide.Registry$NoImageHeaderParserException -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_tooltipText -cyanogenmod.app.ProfileManager: java.lang.String TAG -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Wind wind -com.google.android.material.R$interpolator: int fast_out_slow_in -james.adaptiveicon.R$attr: int voiceIcon -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_icon_vertical_padding_material -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: java.util.List textBlocItems -com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_CheckBox -wangdaye.com.geometricweather.R$attr: int tabPaddingStart -androidx.customview.R$id: int forever -com.github.rahatarmanahmed.cpv.CircularProgressView: android.graphics.RectF bounds -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource[] values() -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.util.concurrent.TimeUnit unit -com.jaredrummler.android.colorpicker.R$dimen: int notification_large_icon_height -okio.SegmentedByteString: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeContainer -io.reactivex.internal.schedulers.ScheduledRunnable: int PARENT_INDEX -com.google.android.material.datepicker.MaterialCalendarGridView: MaterialCalendarGridView(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dialog -com.google.android.material.R$id: int parent_matrix -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlHighlight -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: ObservableFlatMapCompletable$FlatMapCompletableMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -com.google.android.material.R$style: int Widget_Design_ScrimInsetsFrameLayout -okio.BufferedSink: java.io.OutputStream outputStream() -com.google.android.material.R$dimen: int mtrl_extended_fab_start_padding_icon -androidx.appcompat.R$dimen: int tooltip_precise_anchor_threshold -wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_message_margin_horizontal -io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function,boolean,int) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_20 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: int UnitType -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_FULL_COLOR_VALIDATOR -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy$a o -wangdaye.com.geometricweather.R$color: int design_default_color_primary_variant -androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_Toolbar -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.view.View onCreateView() -cyanogenmod.profiles.AirplaneModeSettings: void writeToParcel(android.os.Parcel,int) -androidx.fragment.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf -com.amap.api.location.LocationManagerBase: void onDestroy() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean sunRiseSet -com.google.android.gms.base.R$styleable: int[] SignInButton -androidx.lifecycle.Lifecycling: androidx.lifecycle.GeneratedAdapter createGeneratedAdapter(java.lang.reflect.Constructor,java.lang.Object) -androidx.lifecycle.extensions.R$attr: int fontProviderQuery -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_height_material -androidx.constraintlayout.widget.R$styleable: int MotionHelper_onShow -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarSize -james.adaptiveicon.R$id: int titleDividerNoCustom -androidx.appcompat.R$dimen: int abc_progress_bar_height_material -okhttp3.internal.connection.RouteSelector$Selection: boolean hasNext() -androidx.constraintlayout.widget.R$drawable: int abc_seekbar_thumb_material -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type valueOf(java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getAqiIndex() -androidx.preference.R$attr: int selectableItemBackground -androidx.coordinatorlayout.widget.CoordinatorLayout: void setFitsSystemWindows(boolean) -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked -androidx.hilt.R$id: int forever -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onNext(java.lang.Object) -cyanogenmod.externalviews.KeyguardExternalView: void onDetachedFromWindow() -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light_normal -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setAnimationProgress(float) -androidx.constraintlayout.widget.R$attr: int barLength -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_off_mtrl_alpha -androidx.appcompat.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric Metric -retrofit2.KotlinExtensions -wangdaye.com.geometricweather.R$string: int precipitation_light -androidx.constraintlayout.widget.R$style: int Base_DialogWindowTitle_AppCompat -androidx.legacy.coreutils.R$id: int normal -com.jaredrummler.android.colorpicker.R$attr: int layout_anchorGravity -androidx.preference.R$attr: int homeAsUpIndicator -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_horizontal -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_10 -wangdaye.com.geometricweather.R$style: int Widget_Design_TabLayout -com.xw.repo.bubbleseekbar.R$attr: int closeItemLayout -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Colored -okhttp3.internal.http2.Hpack$Writer: void setHeaderTableSizeSetting(int) -com.google.android.material.slider.RangeSlider: void setThumbRadiusResource(int) -com.google.android.material.chip.ChipGroup: void setSingleSelection(boolean) -com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrimResource(int) -com.tencent.bugly.proguard.q: android.database.sqlite.SQLiteDatabase getWritableDatabase() -okhttp3.CertificatePinner: okio.ByteString sha256(java.security.cert.X509Certificate) -androidx.hilt.R$id: int text2 -okhttp3.internal.connection.StreamAllocation$StreamAllocationReference -okhttp3.internal.connection.RouteSelector: okhttp3.EventListener eventListener -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Light -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean cancelled -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_recyclerView -com.amap.api.fence.PoiItem: double g -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getHourlyForecast() -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getPressure() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Toolbar -com.bumptech.glide.integration.okhttp.R$layout: int notification_template_part_chronometer -com.google.android.material.R$dimen: int abc_button_inset_vertical_material -james.adaptiveicon.R$styleable: int ViewBackgroundHelper_backgroundTint -com.jaredrummler.android.colorpicker.R$string: int abc_menu_space_shortcut_label -androidx.recyclerview.R$id: int accessibility_custom_action_12 -com.xw.repo.bubbleseekbar.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -androidx.constraintlayout.widget.R$styleable: int Transform_android_elevation -com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_thumb_material -wangdaye.com.geometricweather.R$styleable: int[] LoadingImageView -com.amap.api.fence.GeoFence: int STATUS_UNKNOWN -androidx.constraintlayout.motion.widget.MotionHelper -james.adaptiveicon.R$style: int Base_Theme_AppCompat_CompactMenu -android.didikee.donate.R$attr: int titleMarginTop -androidx.appcompat.R$attr: int switchTextAppearance -androidx.appcompat.R$style: int AlertDialog_AppCompat_Light -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose getLocationPurpose() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginLeft -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -com.google.android.material.R$attr: int textAppearanceOverline -wangdaye.com.geometricweather.db.entities.DaoMaster -com.google.android.material.R$attr: int layout_collapseParallaxMultiplier -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Title -com.jaredrummler.android.colorpicker.R$attr: int actionBarTabBarStyle -com.jaredrummler.android.colorpicker.R$string: int abc_shareactionprovider_share_with_application -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void error(java.lang.Throwable) -cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo() -androidx.preference.R$styleable: int SearchView_queryHint -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_DES_CBC_MD5 -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -android.didikee.donate.R$styleable: int ActionBar_contentInsetLeft -androidx.preference.R$id: int icon_group -com.jaredrummler.android.colorpicker.R$attr: int subtitleTextAppearance -com.jaredrummler.android.colorpicker.R$id: int alertTitle -okhttp3.Response$Builder: int code -com.google.android.material.R$drawable: int abc_list_focused_holo -com.google.android.material.bottomnavigation.BottomNavigationView: int getItemIconSize() -james.adaptiveicon.R$styleable: int SearchView_suggestionRowLayout -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource CN -wangdaye.com.geometricweather.R$styleable: int TabItem_android_layout -james.adaptiveicon.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object readKey(android.database.Cursor,int) -androidx.viewpager.widget.PagerTabStrip: PagerTabStrip(android.content.Context) -androidx.constraintlayout.widget.R$anim: int abc_fade_in -okio.GzipSource: byte SECTION_TRAILER -androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_backgroundTintMode -com.google.android.material.R$id: int accessibility_custom_action_7 -cyanogenmod.app.IProfileManager: boolean addProfile(cyanogenmod.app.Profile) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property MinuteInterval -com.google.android.material.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -cyanogenmod.app.CustomTile: CustomTile(android.os.Parcel) -androidx.dynamicanimation.R$drawable: int notify_panel_notification_icon_bg -androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context) -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$attr: int itemShapeAppearanceOverlay -android.didikee.donate.R$styleable: int MenuItem_actionViewClass -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: double Value -androidx.constraintlayout.widget.R$attr: int flow_firstVerticalBias -com.tencent.bugly.proguard.y: boolean f -com.google.android.material.R$dimen: int material_filled_edittext_font_2_0_padding_top -androidx.preference.R$style: int Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$drawable: int shortcuts_fog -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_keyline -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.vectordrawable.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$dimen: int abc_dialog_title_divider_material -okio.SegmentedByteString: int[] directory -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: int UnitType -james.adaptiveicon.R$style: int Base_AlertDialog_AppCompat -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox -androidx.lifecycle.SavedStateHandle: void set(java.lang.String,java.lang.Object) -com.google.android.material.R$attr: int colorPrimaryDark -com.google.android.material.tabs.TabLayout: void setupWithViewPager(androidx.viewpager.widget.ViewPager) -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -wangdaye.com.geometricweather.R$styleable: int Variant_region_heightLessThan -wangdaye.com.geometricweather.R$color: int material_grey_900 -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean delayError -android.support.v4.os.ResultReceiver: ResultReceiver(android.os.Parcel) -androidx.constraintlayout.widget.R$styleable: int[] PopupWindow -com.google.android.material.R$styleable: int Transition_android_id -com.tencent.bugly.BuglyStrategy: boolean k -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice -com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_inflatedId -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_1_30 -com.tencent.bugly.proguard.u: com.tencent.bugly.proguard.u b -com.jaredrummler.android.colorpicker.R$attr: int numericModifiers -cyanogenmod.externalviews.ExternalViewProviderService$1$1: android.os.IBinder call() -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void dispose() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -retrofit2.converter.gson.GsonConverterFactory -androidx.transition.R$dimen: int compat_button_padding_vertical_material -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState -cyanogenmod.app.Profile: void setTrigger(int,java.lang.String,int,java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: AccuCurrentResult$Temperature$Metric() -wangdaye.com.geometricweather.R$attr: int transitionFlags -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onError(java.lang.Throwable) -com.google.android.material.R$layout: int abc_activity_chooser_view -wangdaye.com.geometricweather.R$id: int on -okhttp3.internal.ws.WebSocketReader: boolean closed -androidx.constraintlayout.widget.R$styleable: int Transform_android_scaleY -okhttp3.internal.cache.DiskLruCache$Editor: DiskLruCache$Editor(okhttp3.internal.cache.DiskLruCache,okhttp3.internal.cache.DiskLruCache$Entry) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter -com.turingtechnologies.materialscrollbar.R$id: int edit_query -androidx.appcompat.R$color: int material_deep_teal_200 -io.reactivex.internal.subscriptions.SubscriptionHelper: void deferredRequest(java.util.concurrent.atomic.AtomicReference,java.util.concurrent.atomic.AtomicLong,long) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabText -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_selectableItemBackground -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(double) -com.bumptech.glide.integration.okhttp.R$id: int right_icon -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_voiceIcon -com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_creator -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver -wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_Underlined -com.amap.api.fence.GeoFence: void setStatus(int) -wangdaye.com.geometricweather.R$color -cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getWindChillTemperature() -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_width_overflow_material -android.didikee.donate.R$attr: int controlBackground -com.google.android.material.appbar.AppBarLayout$BaseBehavior -james.adaptiveicon.R$styleable: int AlertDialog_multiChoiceItemLayout -androidx.work.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.R$styleable: int LoadingImageView_imageAspectRatioAdjust -com.google.android.material.slider.BaseSlider: void removeOnChangeListener(com.google.android.material.slider.BaseOnChangeListener) -com.google.android.material.R$style: int Base_Widget_AppCompat_Spinner_Underlined -androidx.activity.R$attr: int alpha -com.google.android.material.chip.Chip: void setMinLines(int) -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_arrowHeadLength -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -com.amap.api.fence.GeoFence: float getRadius() -cyanogenmod.profiles.ConnectionSettings$1: cyanogenmod.profiles.ConnectionSettings createFromParcel(android.os.Parcel) -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_variablePadding -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result -cyanogenmod.weather.ICMWeatherManager$Stub -okhttp3.OkHttpClient: okhttp3.Authenticator authenticator -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_BottomSheet_Modal -com.tencent.bugly.proguard.i: float a(float,int,boolean) -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: java.util.concurrent.CompletableFuture future -wangdaye.com.geometricweather.R$attr: int cornerFamily -androidx.dynamicanimation.R$id: int title -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,java.util.concurrent.Callable,boolean) -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_dialogTitle -com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.proguard.p d -com.google.android.material.R$anim: int abc_slide_in_bottom -wangdaye.com.geometricweather.R$styleable: int SwitchImageButton_drawable_res_off -com.turingtechnologies.materialscrollbar.TouchScrollBar: boolean getHide() -androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.jaredrummler.android.colorpicker.R$layout: int cpv_color_item_circle -androidx.legacy.coreutils.R$id: int blocking -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ButtonBar -androidx.lifecycle.ProcessLifecycleOwnerInitializer: int update(android.net.Uri,android.content.ContentValues,java.lang.String,java.lang.String[]) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextColor -cyanogenmod.externalviews.IExternalViewProvider$Stub: android.os.IBinder asBinder() -com.google.android.material.R$styleable: int[] FontFamily -android.didikee.donate.R$styleable: int AppCompatTheme_editTextBackground -com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: boolean requestDismiss() -androidx.preference.R$style: int Theme_AppCompat_DayNight -androidx.activity.OnBackPressedDispatcher$LifecycleOnBackPressedCancellable -james.adaptiveicon.R$styleable: int AlertDialog_android_layout -com.jaredrummler.android.colorpicker.R$attr: int actionModePopupWindowStyle -org.greenrobot.greendao.DaoException: DaoException(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int share_view_height -android.didikee.donate.R$attr: int textColorSearchUrl -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_summaryOff -androidx.hilt.work.R$id: int normal -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void onAttachedToWindow() -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_logoDescription -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastHorizontalBias -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: void run() -io.reactivex.disposables.ReferenceDisposable: void onDisposed(java.lang.Object) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List forecast -com.github.rahatarmanahmed.cpv.R$dimen: int cpv_default_thickness -androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy -com.google.android.material.R$dimen: int cardview_default_radius -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Type -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RealFeelTemperature -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose valueOf(java.lang.String) -wangdaye.com.geometricweather.R$layout: int test_toolbar_surface -wangdaye.com.geometricweather.R$styleable: int AlertDialog_listLayout -cyanogenmod.app.PartnerInterface: void shutdownDevice() -com.turingtechnologies.materialscrollbar.R$attr: int stackFromEnd -com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.R$styleable: int Preference_dependency -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric Metric -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -cyanogenmod.hardware.ICMHardwareService: int getNumGammaControls() -androidx.preference.R$styleable: int AlertDialog_listLayout -androidx.constraintlayout.widget.R$style: int Base_AlertDialog_AppCompat -retrofit2.http.HTTP: java.lang.String method() -james.adaptiveicon.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -com.tencent.bugly.BuglyStrategy$a: int MAX_USERDATA_KEY_LENGTH -com.tencent.bugly.crashreport.crash.CrashDetailBean: byte[] T -james.adaptiveicon.R$color: int secondary_text_default_material_light -james.adaptiveicon.R$anim: int abc_fade_in -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ctd -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonStyle -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextStyle -com.google.android.material.R$styleable: int AppCompatTheme_activityChooserViewStyle -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int SNOOZE_STATE -cyanogenmod.app.ILiveLockScreenManagerProvider: void cancelLiveLockScreen(java.lang.String,int,int) -james.adaptiveicon.R$id: int line3 -org.greenrobot.greendao.AbstractDao: void deleteByKeyInTx(java.lang.Object[]) -wangdaye.com.geometricweather.R$string: int cpv_default_title -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.R$id: int text_input_error_icon -androidx.viewpager.widget.ViewPager: void setAdapter(androidx.viewpager.widget.PagerAdapter) -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_16dp -james.adaptiveicon.R$drawable: int abc_btn_colored_material -com.bumptech.glide.integration.okhttp.R$style: int Widget_Compat_NotificationActionContainer -james.adaptiveicon.R$style: int Widget_AppCompat_Button_Borderless_Colored -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ProgressBar_Horizontal -com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWeatherPhase() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_pathMotionArc -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_default -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Id -wangdaye.com.geometricweather.R$attr: int windowMinWidthMinor -com.google.android.gms.dynamic.RemoteCreator$RemoteCreatorException: RemoteCreator$RemoteCreatorException(java.lang.String,java.lang.Throwable) -cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(java.util.Map,java.util.Map,cyanogenmod.themes.ThemeChangeRequest$RequestType,long,cyanogenmod.themes.ThemeChangeRequest$1) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.util.ErrorMode errorMode -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onNext(java.lang.Object) -androidx.core.view.ViewCompat$1: ViewCompat$1(androidx.core.view.OnApplyWindowInsetsListener) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$attr: int switchStyle -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation -androidx.lifecycle.ReportFragment: void injectIfNeededIn(android.app.Activity) -okio.Timeout: boolean hasDeadline -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadPing(okio.ByteString) -wangdaye.com.geometricweather.R$attr: int colorControlActivated -cyanogenmod.library.R: R() -androidx.appcompat.R$drawable: int abc_ic_menu_cut_mtrl_alpha -james.adaptiveicon.R$style: int Base_V22_Theme_AppCompat -androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -com.google.android.material.R$color: int design_default_color_primary_variant -com.google.android.material.R$dimen: int mtrl_extended_fab_disabled_elevation -com.google.android.material.R$style: int Base_V21_Theme_AppCompat -com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial Imperial -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: AccuMinuteResult$IntervalsBean() -androidx.appcompat.R$drawable: int notification_bg_normal -androidx.preference.R$styleable: int Fragment_android_name -com.google.android.material.R$style: int Base_Widget_AppCompat_ProgressBar -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric Metric -wangdaye.com.geometricweather.R$string: int settings_language -androidx.appcompat.R$attr: int barLength -com.google.android.material.R$attr: int collapsedTitleGravity -androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context) -io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper valueOf(java.lang.String) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense -retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1 -com.google.android.material.R$style: int Widget_AppCompat_DropDownItem_Spinner -wangdaye.com.geometricweather.R$attr: int backgroundInsetBottom -android.didikee.donate.R$id: int ifRoom -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -androidx.preference.R$styleable: int Toolbar_menu -androidx.activity.R$id: int line1 -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource) -androidx.preference.R$attr: int background -androidx.recyclerview.R$style: int Widget_Compat_NotificationActionText -com.google.android.material.R$styleable: int Layout_layout_constraintTop_toBottomOf -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_color -androidx.appcompat.R$style: int Widget_AppCompat_ButtonBar -james.adaptiveicon.R$id: int notification_main_column_container -com.google.android.material.appbar.AppBarLayout: void setOrientation(int) -wangdaye.com.geometricweather.R$string: int about_retrofit -com.amap.api.location.UmidtokenInfo: com.amap.api.location.AMapLocationClient d -com.amap.api.location.AMapLocation: java.lang.String b -androidx.appcompat.R$id: int unchecked -cyanogenmod.app.suggest.IAppSuggestManager$Stub: int TRANSACTION_handles_0 -androidx.viewpager2.R$styleable: int[] GradientColor -androidx.dynamicanimation.R$styleable: int GradientColor_android_centerX -com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_disable_only_material_light -com.tencent.bugly.crashreport.biz.a: java.util.List a(java.lang.String) -com.jaredrummler.android.colorpicker.R$attr: int actionMenuTextAppearance -com.google.android.material.R$drawable: int btn_checkbox_unchecked_mtrl -wangdaye.com.geometricweather.R$drawable -androidx.preference.R$style: int Platform_Widget_AppCompat_Spinner -wangdaye.com.geometricweather.R$drawable: int selectable_ripple -james.adaptiveicon.R$attr: R$attr() -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mCallGetCommand -com.google.android.gms.location.LocationSettingsStates -androidx.appcompat.widget.AppCompatTextView: void setPrecomputedText(androidx.core.text.PrecomputedTextCompat) -james.adaptiveicon.R$styleable: int FontFamily_fontProviderPackage -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onError(java.lang.Throwable) -okhttp3.internal.http.RealInterceptorChain: okhttp3.Response proceed(okhttp3.Request,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http.HttpCodec,okhttp3.internal.connection.RealConnection) -com.google.android.material.R$styleable: int ActionBar_elevation -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarStyle -androidx.dynamicanimation.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$attr: int bsb_bubble_text_color -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconTint -cyanogenmod.providers.CMSettings$System: java.lang.String SYS_PROP_CM_SETTING_VERSION -com.tencent.bugly.proguard.r: int b -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -androidx.loader.R$id: int action_container -androidx.constraintlayout.widget.R$attr: int pathMotionArc -com.google.android.material.chip.Chip: void setCloseIconHovered(boolean) -com.jaredrummler.android.colorpicker.R$id: int regular -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver -androidx.dynamicanimation.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge -androidx.constraintlayout.widget.R$attr: int colorButtonNormal -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String LongPhrase -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String messageShort -com.google.android.material.R$styleable: int Constraint_android_rotationY -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_letter_spacing -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getO3() -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean isEntityUpdateable() -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.internal.util.AtomicThrowable error -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.Property[] getProperties() -com.google.android.material.R$style: int Animation_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$attr: int counterMaxLength -androidx.constraintlayout.widget.R$attr: int duration -james.adaptiveicon.R$color: int button_material_dark -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeChangeRequest$RequestType getLastThemeChangeRequestType() -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.activity.R$id: int action_container -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean isEmpty() -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_buttonIconDimen -com.google.android.material.appbar.AppBarLayout: int getTotalScrollRange() -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeStepGranularity -com.google.android.material.internal.CheckableImageButton$SavedState -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: java.lang.String getAddress() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -androidx.lifecycle.ProcessLifecycleOwner: java.lang.Runnable mDelayedPauseRunnable -com.google.android.material.R$string: int abc_menu_sym_shortcut_label -androidx.appcompat.R$attr: int voiceIcon -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_0 -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Body2 -com.tencent.bugly.proguard.ar: void a(com.tencent.bugly.proguard.j) -okhttp3.internal.ws.RealWebSocket: void failWebSocket(java.lang.Exception,okhttp3.Response) -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_phaseText -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder maxStale(int,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List wuran -wangdaye.com.geometricweather.R$color: int primary_text_default_material_dark -com.turingtechnologies.materialscrollbar.R$anim: int design_snackbar_in -com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentStyle -androidx.appcompat.widget.ActivityChooserView: void setInitialActivityCount(int) -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_SHOW_BATTERY_PERCENT -james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton_CloseMode -androidx.appcompat.R$styleable: int ViewBackgroundHelper_backgroundTint -james.adaptiveicon.R$styleable: int DrawerArrowToggle_thickness -cyanogenmod.providers.CMSettings$System: java.lang.String SHOW_ALARM_ICON -okhttp3.Cache$CacheResponseBody$1: okhttp3.internal.cache.DiskLruCache$Snapshot val$snapshot -androidx.coordinatorlayout.R$layout: int notification_template_custom_big -androidx.lifecycle.extensions.R$styleable: int[] GradientColor -com.google.android.material.R$color: int mtrl_tabs_icon_color_selector -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -com.xw.repo.bubbleseekbar.R$layout: int abc_screen_simple -androidx.appcompat.R$layout: R$layout() -cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String TIMEZONE_OFFSET -wangdaye.com.geometricweather.R$style: int Platform_V25_AppCompat_Light -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceTheme -cyanogenmod.weather.util.WeatherUtils: boolean isValidTempUnit(int) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: int rain -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItem -wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity -james.adaptiveicon.R$color: int material_grey_900 -androidx.appcompat.R$styleable: int AppCompatTextView_drawableTintMode -wangdaye.com.geometricweather.R$color: int colorLevel_1 -james.adaptiveicon.R$styleable: int PopupWindowBackgroundState_state_above_anchor -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: $Gson$Types$WildcardTypeImpl(java.lang.reflect.Type[],java.lang.reflect.Type[]) -io.reactivex.internal.util.EmptyComponent: org.reactivestreams.Subscriber asSubscriber() -wangdaye.com.geometricweather.R$attr: int endIconTintMode -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_title_material -com.google.android.material.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleTextColor -wangdaye.com.geometricweather.R$dimen: int abc_text_size_medium_material -androidx.viewpager2.R$id: int async -com.xw.repo.bubbleseekbar.R$styleable: int View_paddingStart -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endColor -com.jaredrummler.android.colorpicker.R$styleable: int[] StateListDrawable -com.google.android.material.R$attr: int scrimVisibleHeightTrigger -okhttp3.CertificatePinner: java.util.Set pins -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRainPrecipitationProbability(java.lang.Float) -androidx.preference.R$styleable: int TextAppearance_fontFamily -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather -androidx.constraintlayout.widget.R$styleable: int MockView_mock_showDiagonals -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date date -okio.BufferedSource: java.lang.String readUtf8LineStrict() -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextAppearanceInactive -wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_liftable -androidx.viewpager.R$drawable: int notification_bg_normal -com.google.android.material.button.MaterialButtonToggleGroup: int getCheckedButtonId() -com.google.android.material.chip.Chip: float getChipStartPadding() -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_showDividers -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeSplitBackground -wangdaye.com.geometricweather.R$id: int item_about_header_appVersion -wangdaye.com.geometricweather.R$string: int email -android.didikee.donate.R$drawable: int abc_list_longpressed_holo -com.google.android.material.R$attr -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxIo -androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -com.google.android.material.R$attr: int tabSelectedTextColor -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationZ -com.google.android.material.R$dimen: int abc_dialog_min_width_major -io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged(io.reactivex.functions.BiPredicate) -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void cancelOngoingRequests() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Spinner_Underlined -com.google.android.material.R$styleable: int KeyTimeCycle_android_rotationY -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginEnd(int) -wangdaye.com.geometricweather.R$attr: int actionMenuTextAppearance -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_REMOVED -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_percent -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassDescription -okhttp3.internal.tls.BasicCertificateChainCleaner: int MAX_SIGNERS -okio.Buffer: okio.Segment writableSegment(int) -android.didikee.donate.R$anim: int abc_slide_in_bottom -androidx.dynamicanimation.R$id: int line3 -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type[] getActualTypeArguments() -androidx.constraintlayout.widget.R$layout: int abc_cascading_menu_item_layout -com.google.android.material.chip.Chip: void setChipBackgroundColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.daily.DailyWeatherActivity: DailyWeatherActivity() -wangdaye.com.geometricweather.R$attr: int actionLayout -retrofit2.HttpServiceMethod$SuspendForBody: retrofit2.CallAdapter callAdapter -okio.Buffer$UnsafeCursor: byte[] data -cyanogenmod.weather.WeatherInfo: double access$402(cyanogenmod.weather.WeatherInfo,double) -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onModeChanged(boolean) -cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper mWrapper -io.reactivex.internal.operators.observable.ObservableGroupBy$State: long serialVersionUID -com.google.android.material.R$styleable: int TextInputLayout_prefixTextAppearance -com.bumptech.glide.module.LibraryGlideModule: LibraryGlideModule() -james.adaptiveicon.R$drawable: int abc_ic_menu_overflow_material -com.google.android.material.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconTintMode -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedReadableDb(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int IceProbability -com.google.android.material.R$id: int sin -com.turingtechnologies.materialscrollbar.R$layout: int mtrl_layout_snackbar -com.google.android.material.chip.Chip: float getTextEndPadding() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherCode -androidx.preference.R$styleable: int RecyclerView_android_orientation -okhttp3.RequestBody$1 -io.reactivex.internal.subscriptions.SubscriptionArbiter: void produced(long) -com.tencent.bugly.crashreport.common.info.b: b() -com.xw.repo.bubbleseekbar.R$attr: int spinnerStyle -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_36dp -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_PAUSE -wangdaye.com.geometricweather.R$id: int widget_week_weather -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_font -com.google.android.material.bottomnavigation.BottomNavigationView -androidx.appcompat.R$string: int abc_activitychooserview_choose_application -com.bumptech.glide.integration.okhttp.R$styleable: int[] ColorStateListItem -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -androidx.fragment.R$style -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginStart -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: int UnitType -com.xw.repo.bubbleseekbar.R$attr: int firstBaselineToTopHeight -wangdaye.com.geometricweather.R$bool: int enable_system_foreground_service_default -com.xw.repo.bubbleseekbar.R$id: int left -cyanogenmod.providers.CMSettings$System: java.lang.String NAV_BUTTONS -cyanogenmod.app.suggest.IAppSuggestManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_statusBarBackground -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.util.Date getDate() -com.xw.repo.bubbleseekbar.R$dimen: int disabled_alpha_material_light -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String FONT_URI -com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getPasswordVisibilityToggleDrawable() -com.tencent.bugly.crashreport.biz.b: long e() -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.Integer getAngle() -wangdaye.com.geometricweather.R$attr: int paddingEnd -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox -okhttp3.internal.tls.DistinguishedNameParser: int length -com.google.android.material.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitationDuration -androidx.appcompat.R$drawable: int notification_action_background -androidx.viewpager2.R$dimen: int notification_large_icon_height -cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onCustomTileRemoved -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric -wangdaye.com.geometricweather.R$drawable: int weather_haze_1 -androidx.fragment.app.FragmentManager: void removeOnBackStackChangedListener(androidx.fragment.app.FragmentManager$OnBackStackChangedListener) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitationDuration -wangdaye.com.geometricweather.R$styleable: int ActionBar_popupTheme -com.google.android.material.navigation.NavigationView: void setItemBackground(android.graphics.drawable.Drawable) -android.didikee.donate.R$styleable: int ActionBar_itemPadding -androidx.preference.R$styleable: int GradientColor_android_type -androidx.customview.R$styleable: int GradientColor_android_startY -androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_icon_width -androidx.viewpager.widget.ViewPager$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int ClockHandView_materialCircleRadius -com.baidu.location.e.h$b: com.baidu.location.e.h$b valueOf(java.lang.String) -androidx.appcompat.R$layout: int select_dialog_item_material -androidx.viewpager.R$drawable: R$drawable() -okhttp3.internal.http.HttpHeaders: java.lang.String repeat(char,int) -okhttp3.internal.http1.Http1Codec$FixedLengthSource: long read(okio.Buffer,long) -cyanogenmod.app.CustomTile -android.support.v4.app.INotificationSideChannel$Stub$Proxy: void notify(java.lang.String,int,java.lang.String,android.app.Notification) -com.google.android.material.R$styleable: int AppCompatTextView_autoSizePresetSizes -android.didikee.donate.R$style: int Base_Widget_AppCompat_Spinner -com.tencent.bugly.proguard.al: java.util.ArrayList a -androidx.hilt.work.R$dimen -james.adaptiveicon.R$dimen: int abc_progress_bar_height_material -androidx.preference.R$drawable: int abc_list_selector_background_transition_holo_light -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX() -cyanogenmod.externalviews.KeyguardExternalView: java.lang.String EXTRA_PERMISSION_LIST -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int color -james.adaptiveicon.R$style: int Platform_V21_AppCompat -androidx.legacy.coreutils.R$styleable: int[] FontFamilyFont -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalGap -androidx.loader.R$id: int right_icon -wangdaye.com.geometricweather.R$styleable: int Preference_iconSpaceReserved -com.google.android.material.R$styleable: int SwitchCompat_android_textOn -com.jaredrummler.android.colorpicker.R$layout: int expand_button -okhttp3.logging.HttpLoggingInterceptor$Logger: okhttp3.logging.HttpLoggingInterceptor$Logger DEFAULT -com.google.android.material.R$attr: int backgroundInsetTop -androidx.appcompat.R$drawable: int notification_template_icon_bg -androidx.legacy.coreutils.R$attr: int fontProviderPackage -androidx.appcompat.R$styleable: int Toolbar_contentInsetLeft -retrofit2.Platform$Android$MainThreadExecutor: Platform$Android$MainThreadExecutor() -androidx.recyclerview.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String zh_CN -cyanogenmod.app.CMTelephonyManager: android.content.Context mContext -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: HistoryEntityDao$Properties() -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_overflow_padding_end_material -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_spinnerStyle -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void cancel() -androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityPaused(android.app.Activity) -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: org.reactivestreams.Subscription upstream -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType valueOf(java.lang.String) -io.reactivex.Observable: io.reactivex.Observable onExceptionResumeNext(io.reactivex.ObservableSource) -okhttp3.internal.connection.StreamAllocation: boolean reportedAcquired -androidx.preference.R$drawable: int abc_btn_radio_material -androidx.activity.R$styleable: int GradientColorItem_android_offset -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderCerts -com.amap.api.fence.PoiItem: void setAdname(java.lang.String) -cyanogenmod.weatherservice.IWeatherProviderService: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) -wangdaye.com.geometricweather.R$id: int widget_day_week_week_3 -androidx.constraintlayout.widget.R$attr: int toolbarStyle -okhttp3.internal.http.HttpHeaders: boolean hasVaryAll(okhttp3.Response) -okhttp3.Cache: int writeAbortCount -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain3h -com.google.android.material.tabs.TabLayout: void setTabGravity(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: double Value -okhttp3.internal.cache.FaultHidingSink: FaultHidingSink(okio.Sink) -cyanogenmod.hardware.ThermalListenerCallback -androidx.vectordrawable.animated.R$color -com.google.android.material.R$id: int accessibility_custom_action_3 -wangdaye.com.geometricweather.R$styleable: int SearchView_goIcon -wangdaye.com.geometricweather.R$styleable: int Toolbar_title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric Metric -com.jaredrummler.android.colorpicker.R$string: int v7_preference_on -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection -okhttp3.HttpUrl$Builder: java.lang.String INVALID_HOST -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean appendLogToNative(java.lang.String,java.lang.String,java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: java.lang.String Unit -com.google.android.material.card.MaterialCardView: android.graphics.drawable.Drawable getCheckedIcon() -androidx.hilt.R$styleable: int Fragment_android_id -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -androidx.work.impl.utils.futures.DirectExecutor -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitation(java.lang.Float) -com.amap.api.location.AMapLocationQualityReport: int d -com.google.android.material.R$attr: int logo -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Entry -com.turingtechnologies.materialscrollbar.R$attr: int itemIconSize -wangdaye.com.geometricweather.db.entities.HourlyEntity: boolean daylight -okio.RealBufferedSink: okio.BufferedSink writeUtf8(java.lang.String) -cyanogenmod.app.ThemeVersion$ComponentVersion: int currentVersion -com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getErrorIconDrawable() -androidx.preference.R$attr: int statusBarBackground -android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogCenterButtons -com.tencent.bugly.proguard.w: com.tencent.bugly.proguard.w b -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int START -wangdaye.com.geometricweather.R$id: int clip_vertical -wangdaye.com.geometricweather.R$id: int container_main_footer_title -okhttp3.internal.connection.RealConnection: okhttp3.Protocol protocol() -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_contentDescription -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorPrimary -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleEnabled -james.adaptiveicon.R$color: int abc_search_url_text -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX getWind() -androidx.drawerlayout.R$attr: int fontWeight -okhttp3.HttpUrl: java.util.Set queryParameterNames() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_text -wangdaye.com.geometricweather.R$attr: int voiceIcon -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_CompactMenu -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: CaiYunMainlyResult$AlertsBean$DefenseBean() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setModifyInHour(boolean) -com.xw.repo.bubbleseekbar.R$attr: int subMenuArrow -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: long dt -io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function) -com.xw.repo.bubbleseekbar.R$attr: int imageButtonStyle -androidx.constraintlayout.widget.R$styleable: int MotionScene_layoutDuringTransition -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.Observer downstream -androidx.appcompat.R$bool: int abc_allow_stacked_button_bar -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.R$styleable: int ActionMenuItemView_android_minWidth -wangdaye.com.geometricweather.R$string: int wind_0 -androidx.lifecycle.SavedStateHandleController: SavedStateHandleController(java.lang.String,androidx.lifecycle.SavedStateHandle) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_11 -androidx.constraintlayout.widget.R$drawable: int btn_checkbox_checked_mtrl -com.tencent.bugly.crashreport.CrashReport: java.lang.String getAppVer() -com.google.android.material.R$string: int mtrl_exceed_max_badge_number_content_description -androidx.appcompat.R$attr: int fontVariationSettings -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType[] $VALUES -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastHorizontalBias -androidx.constraintlayout.widget.R$attr: int lastBaselineToBottomHeight -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean delayErrors -com.google.android.material.slider.BaseSlider: void setThumbTintList(android.content.res.ColorStateList) -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_seekBarIncrement -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeDegreeDayTemperature() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextStyle -com.tencent.bugly.proguard.h: h(java.lang.StringBuilder,int) -com.google.android.material.card.MaterialCardView: int getContentPaddingRight() -james.adaptiveicon.R$styleable: int LinearLayoutCompat_measureWithLargestChild -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_orientation -okhttp3.internal.platform.OptionalMethod: OptionalMethod(java.lang.Class,java.lang.String,java.lang.Class[]) -com.turingtechnologies.materialscrollbar.R$attr: int iconifiedByDefault -com.google.android.material.appbar.AppBarLayout: int getLiftOnScrollTargetViewId() -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Info -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_registerChangeListener -wangdaye.com.geometricweather.R$attr: int closeIconVisible -com.jaredrummler.android.colorpicker.R$id: int action_menu_divider -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableRight -com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView -androidx.appcompat.R$styleable: int ActionMode_closeItemLayout -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean done -okhttp3.internal.http.HttpDate: java.lang.String format(java.util.Date) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastVerticalStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric() -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_title -com.jaredrummler.android.colorpicker.R$drawable: int abc_action_bar_item_background_material -com.google.android.material.R$styleable: int Constraint_android_alpha -wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$attr: int colorOnSecondary -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.concurrent.atomic.AtomicReference error -androidx.preference.R$styleable: int MenuGroup_android_id -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: int Severity -com.google.android.material.R$drawable: int abc_list_pressed_holo_dark -cyanogenmod.providers.CMSettings$System: long getLongForUser(android.content.ContentResolver,java.lang.String,int) -com.google.android.material.R$attr: int lineSpacing -androidx.constraintlayout.widget.R$id: int action_bar -wangdaye.com.geometricweather.R$drawable: int weather_snow -androidx.recyclerview.R$id: int accessibility_custom_action_2 -okio.BufferedSink: okio.BufferedSink writeUtf8CodePoint(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String from -wangdaye.com.geometricweather.R$attr: int maxWidth -androidx.preference.R$style: int Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2 -com.google.android.material.chip.Chip: float getIconEndPadding() -androidx.loader.R$attr: int alpha -com.bumptech.glide.R$attr: int fontProviderFetchStrategy -android.didikee.donate.R$dimen: int abc_edit_text_inset_horizontal_material -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getThumbTintList() -androidx.preference.R$id: int accessibility_custom_action_11 -androidx.constraintlayout.widget.R$attr: int contentInsetStartWithNavigation -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_COLOR_VALIDATOR -okhttp3.internal.ws.WebSocketReader -wangdaye.com.geometricweather.R$string: int key_text_size -cyanogenmod.weather.RequestInfo: int mTempUnit -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long serialVersionUID -com.xw.repo.bubbleseekbar.R$attr: int tint -wangdaye.com.geometricweather.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: CaiYunMainlyResult() -androidx.lifecycle.Lifecycle: java.util.concurrent.atomic.AtomicReference mInternalScopeRef -com.bumptech.glide.integration.okhttp.R$drawable -cyanogenmod.weather.RequestInfo: int getRequestType() -androidx.constraintlayout.widget.R$id: int tag_accessibility_actions -androidx.drawerlayout.R$styleable -com.google.android.material.R$id: int container -cyanogenmod.app.CustomTile$Builder -okhttp3.internal.Util: java.lang.String[] concat(java.lang.String[],java.lang.String) -wangdaye.com.geometricweather.R$drawable: int notif_temp_104 -okhttp3.internal.http2.Http2Stream: okio.Timeout readTimeout() -com.google.android.material.R$id: int transition_scene_layoutid_cache -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Medium -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: AccuDailyResult$DailyForecasts$Day$TotalLiquid() -com.xw.repo.bubbleseekbar.R$attr: int actionBarTabBarStyle -com.google.android.material.R$integer: int abc_config_activityDefaultDur -androidx.appcompat.R$dimen: int abc_switch_padding -com.google.android.material.R$attr: int drawableRightCompat -wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_dark -com.google.android.material.R$attr: int switchPadding -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: FlowableConcatMap$BaseConcatMapSubscriber(io.reactivex.functions.Function,int) -androidx.preference.R$styleable: int AppCompatTheme_windowActionModeOverlay -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_year -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String description -androidx.fragment.R$string: int status_bar_notification_info_overflow -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void dispose() -com.tencent.bugly.crashreport.common.info.a: void c(java.lang.String) -okio.Buffer$1: java.lang.String toString() -androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy valueOf(java.lang.String) -androidx.loader.R$dimen: int notification_small_icon_size_as_large -okhttp3.internal.http2.Http2Writer: void writeContinuationFrames(int,long) -com.google.android.material.slider.BaseSlider: void setValueTo(float) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Medium -com.jaredrummler.android.colorpicker.R$attr: int elevation -androidx.constraintlayout.widget.R$dimen: int abc_progress_bar_height_material -james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -com.amap.api.location.AMapLocationClientOption$1: AMapLocationClientOption$1() -com.jaredrummler.android.colorpicker.R$styleable: int[] MenuGroup -cyanogenmod.providers.CMSettings$Secure: boolean isLegacySetting(java.lang.String) -com.google.android.material.R$attr: int actionOverflowMenuStyle -com.amap.api.location.AMapLocation: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_android_windowAnimationStyle -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.preference.R$styleable: int SwitchPreference_android_switchTextOn -com.xw.repo.bubbleseekbar.R$id: int src_in -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTemperature(android.content.Context,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -androidx.preference.R$layout: int abc_screen_content_include -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabStyle -androidx.viewpager.R$id: R$id() -com.google.android.material.R$styleable: int ActionBar_contentInsetEnd -wangdaye.com.geometricweather.background.receiver.widget.WidgetDayProvider: WidgetDayProvider() -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemHorizontalTranslationEnabled(boolean) -okhttp3.internal.connection.ConnectInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: DaoMaster$OpenHelper(android.content.Context,java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitation(java.lang.Float) -okio.Okio: Okio() -com.turingtechnologies.materialscrollbar.R$color: int foreground_material_light -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.util.Date date -com.jaredrummler.android.colorpicker.R$attr: int tint -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void drain() -okhttp3.Response$Builder: okhttp3.Response$Builder receivedResponseAtMillis(long) -com.google.android.material.R$id: int auto -com.google.android.material.R$dimen: int mtrl_textinput_box_corner_radius_medium -androidx.viewpager.widget.ViewPager: void setPageMarginDrawable(int) -cyanogenmod.power.PerformanceManager: int PROFILE_BIAS_PERFORMANCE -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: HourlyEntityDao$Properties() -androidx.preference.R$style: int Platform_V21_AppCompat_Light -com.google.android.material.R$attr: int listChoiceIndicatorSingleAnimated -com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuGroup -com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeight -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_tooltipForegroundColor -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCloseDrawable -wangdaye.com.geometricweather.R$attr: int bsb_section_count -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_2 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getSunSetDate() -androidx.lifecycle.LifecycleRegistry$ObserverWithState: androidx.lifecycle.Lifecycle$State mState -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -wangdaye.com.geometricweather.common.ui.activities.AwakeUpdateActivity -androidx.constraintlayout.widget.R$layout: int abc_action_menu_layout -androidx.constraintlayout.widget.R$attr: int deriveConstraintsFrom -androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX getNames() -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_size_normal -androidx.appcompat.R$drawable: int abc_dialog_material_background -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_lifted -com.google.android.material.chip.Chip: void setBackgroundResource(int) -androidx.transition.R$layout: int notification_action -com.jaredrummler.android.colorpicker.R$attr: int fontProviderPackage -okhttp3.internal.http.RealResponseBody -androidx.recyclerview.R$dimen: int compat_button_inset_vertical_material -com.google.android.material.R$attr: int deriveConstraintsFrom -io.reactivex.internal.util.ExceptionHelper$Termination: ExceptionHelper$Termination() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_alpha -wangdaye.com.geometricweather.R$drawable: int weather_sleet_1 -okio.ByteString: int hashCode() -androidx.appcompat.view.menu.ListMenuItemView: ListMenuItemView(android.content.Context,android.util.AttributeSet) -androidx.recyclerview.widget.RecyclerView: void removeOnChildAttachStateChangeListener(androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onNext(java.lang.Object) -androidx.appcompat.R$style: int Widget_AppCompat_RatingBar_Small -android.didikee.donate.R$style: int Animation_AppCompat_DropDownUp -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onScreenTurnedOff() -cyanogenmod.themes.ThemeChangeRequest: long mWallpaperId -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver parent -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf -okhttp3.Protocol: java.lang.String toString() -cyanogenmod.app.BaseLiveLockManagerService -com.tencent.bugly.proguard.z -com.google.android.material.R$styleable: int Constraint_android_rotationX -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_CompactMenu -androidx.constraintlayout.widget.R$id: int search_go_btn -androidx.preference.R$style: int Widget_AppCompat_CompoundButton_Switch -wangdaye.com.geometricweather.R$attr: int itemShapeInsetBottom -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -androidx.cardview.R$color: int cardview_shadow_end_color -com.google.android.material.R$style: int Widget_AppCompat_Button_Colored -androidx.preference.R$color: R$color() -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData this$0 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_textAllCaps -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadMessage(okio.ByteString) -cyanogenmod.app.CustomTile$ExpandedItem: android.app.PendingIntent onClickPendingIntent -androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type UV_INDEX -com.google.android.material.R$drawable: int abc_ratingbar_indicator_material -androidx.loader.R$drawable: R$drawable() -com.google.android.material.R$attr: int endIconTint -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline2 -androidx.preference.R$bool: R$bool() -wangdaye.com.geometricweather.R$id: int action_bar_title -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_summaryOn -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: int requestFusion(int) -androidx.constraintlayout.widget.R$styleable: int ActionBar_customNavigationLayout -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindSpeed(java.lang.Float) -com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat_Dark -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_CollapsingToolbar -com.xw.repo.bubbleseekbar.R$styleable: int[] StateListDrawable -com.github.rahatarmanahmed.cpv.CircularProgressView: void updateBounds() -james.adaptiveicon.R$attr: int actionModeShareDrawable -wangdaye.com.geometricweather.R$id: int mtrl_card_checked_layer_id -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_SHA256 -androidx.preference.R$dimen: int tooltip_precise_anchor_threshold -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling -com.google.android.gms.location.zzo: android.os.Parcelable$Creator CREATOR -okhttp3.OkHttpClient: int connectTimeout -cyanogenmod.os.Build$CM_VERSION_CODES: int CANTALOUPE -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TIMESTAMP -androidx.preference.R$style: int Widget_AppCompat_Light_ListView_DropDown -androidx.appcompat.R$dimen: int notification_action_icon_size -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_subhead_material -androidx.viewpager2.R$attr: int stackFromEnd -io.reactivex.observers.DisposableObserver: void onStart() -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isDataConnectionSelectedOnSub -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBaseline_creator -androidx.activity.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.R$dimen: int abc_button_inset_horizontal_material -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getMoonSetDate() -com.turingtechnologies.materialscrollbar.R$bool -androidx.drawerlayout.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalGap -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginTop -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTopCompat -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -androidx.appcompat.resources.R$styleable: int GradientColor_android_startY -okhttp3.logging.HttpLoggingInterceptor$Logger$1 -okhttp3.internal.tls.OkHostnameVerifier: int ALT_DNS_NAME -com.jaredrummler.android.colorpicker.R$attr: int barLength -cyanogenmod.themes.ThemeManager$1$2: ThemeManager$1$2(cyanogenmod.themes.ThemeManager$1,boolean) -cyanogenmod.app.Profile: cyanogenmod.profiles.StreamSettings getSettingsForStream(int) -androidx.constraintlayout.widget.ConstraintLayout: int getMaxWidth() -wangdaye.com.geometricweather.R$animator: int weather_haze_2 -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_wrapMode -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void otherComplete() -com.turingtechnologies.materialscrollbar.R$layout: int abc_select_dialog_material -com.google.android.material.slider.RangeSlider: void setMinSeparation(float) -com.xw.repo.bubbleseekbar.R$id: int icon -com.google.android.material.R$style: int AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset -okhttp3.internal.connection.RouteException: RouteException(java.io.IOException) -wangdaye.com.geometricweather.R$attr: int drawableTintMode -wangdaye.com.geometricweather.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontStyle -com.google.android.material.R$styleable: int ActionBarLayout_android_layout_gravity -com.google.android.material.R$color: int mtrl_bottom_nav_colored_item_tint -androidx.preference.R$dimen: int highlight_alpha_material_colored -com.tencent.bugly.proguard.i -android.didikee.donate.R$styleable: int AppCompatTextView_drawableTintMode -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerColor -android.didikee.donate.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_material_anim -androidx.constraintlayout.widget.R$styleable: int Toolbar_navigationIcon -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontStyle -androidx.preference.R$drawable: int abc_ratingbar_indicator_material -io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer) -androidx.appcompat.R$styleable: int ActionBar_subtitle -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: java.lang.String getInterfaceDescriptor() -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: java.util.concurrent.atomic.AtomicReference active -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer LEFT_VALUE -androidx.activity.R$dimen: int notification_action_text_size -androidx.preference.R$styleable: int Toolbar_collapseIcon -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.ILiveLockScreenManager getService() -com.google.android.material.R$styleable: int[] GradientColor -com.tencent.bugly.proguard.z: android.content.SharedPreferences a(java.lang.String,android.content.Context) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -cyanogenmod.app.IProfileManager$Stub: cyanogenmod.app.IProfileManager asInterface(android.os.IBinder) -com.google.android.material.R$style: int TextAppearance_AppCompat_Large -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getLogoDescription() -james.adaptiveicon.R$attr: int actionViewClass -cyanogenmod.externalviews.KeyguardExternalView$3: int val$y -io.reactivex.internal.disposables.SequentialDisposable: boolean update(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonStyle -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_right_mtrl_dark -com.jaredrummler.android.colorpicker.R$attr: int preferenceScreenStyle -androidx.lifecycle.ViewModelProvider -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean fused -androidx.appcompat.R$styleable: int AppCompatTheme_actionMenuTextAppearance -com.jaredrummler.android.colorpicker.R$color: int secondary_text_disabled_material_dark -cyanogenmod.app.Profile: void addProfileGroup(cyanogenmod.app.ProfileGroup) -androidx.transition.R$drawable: int notification_template_icon_bg -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderAuthority -okhttp3.Request$Builder: okhttp3.Request$Builder removeHeader(java.lang.String) -com.jaredrummler.android.colorpicker.R$color: int secondary_text_default_material_light -androidx.appcompat.R$id: int title_template -wangdaye.com.geometricweather.R$id: int item_details_icon -wangdaye.com.geometricweather.R$drawable: int abc_list_pressed_holo_dark -wangdaye.com.geometricweather.R$animator: int weather_wind_1 -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_content_inset_material -com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_seekBarIncrement -androidx.hilt.lifecycle.R$dimen: int notification_right_icon_size -androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.Fragment) -io.reactivex.Observable: io.reactivex.Single toList(java.util.concurrent.Callable) -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void testNativeCrash() -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Invalid -cyanogenmod.app.LiveLockScreenInfo$Builder: int mPriority -androidx.constraintlayout.widget.R$layout: int abc_search_view -okhttp3.internal.platform.AndroidPlatform: void log(int,java.lang.String,java.lang.Throwable) -cyanogenmod.app.CMTelephonyManager: int ASK_FOR_SUBSCRIPTION_ID -okhttp3.internal.Util: java.lang.String format(java.lang.String,java.lang.Object[]) -com.google.android.material.R$animator: int design_appbar_state_list_animator -cyanogenmod.app.Profile$ProfileTrigger: int getState() -wangdaye.com.geometricweather.R$layout: int abc_action_menu_layout -wangdaye.com.geometricweather.R$array: int temperature_units_long -androidx.appcompat.R$dimen: int notification_top_pad -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COL_VALUE -com.tencent.bugly.crashreport.common.info.a: boolean e -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_thickness -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getUnitId() -org.greenrobot.greendao.AbstractDaoMaster: java.util.Map daoConfigMap -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: boolean isEmpty() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_shapeAppearanceOverlay -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorError -com.google.android.material.R$id: int TOP_END -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status valueOf(java.lang.String) -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -okio.ByteString: void readObject(java.io.ObjectInputStream) -com.google.android.material.R$attr: int titleMargin -androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_NO_ARG -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight -wangdaye.com.geometricweather.R$layout: int preference_dropdown_material -wangdaye.com.geometricweather.R$attr: int collapsedTitleGravity -io.reactivex.Observable: java.lang.Object blockingLast(java.lang.Object) -android.didikee.donate.R$styleable: int AppCompatTextView_android_textAppearance -com.jaredrummler.android.colorpicker.R$style: int Base_V28_Theme_AppCompat -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onContentChanged() -wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_scrollView -okhttp3.HttpUrl: HttpUrl(okhttp3.HttpUrl$Builder) -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor -androidx.preference.R$id: int action_mode_close_button -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_body_1_material -com.google.android.material.internal.NavigationMenuItemView -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_icon -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeCloudCover(java.lang.Integer) -androidx.customview.view.AbsSavedState$1 -android.didikee.donate.R$styleable: int MenuItem_android_numericShortcut -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService this$0 -com.turingtechnologies.materialscrollbar.R$attr: int searchViewStyle -io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator INSTANCE -com.tencent.bugly.proguard.n: com.tencent.bugly.proguard.n a(android.content.Context) -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: ObservableRangeLong$RangeDisposable(io.reactivex.Observer,long,long) -com.google.android.material.R$styleable: int KeyCycle_waveVariesBy -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function6) -androidx.preference.R$styleable: int Preference_selectable -androidx.coordinatorlayout.R$dimen: int notification_content_margin_start -com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_android_color -androidx.activity.R$styleable: int GradientColor_android_startY -androidx.preference.R$styleable: int[] SwitchPreferenceCompat -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -com.tencent.bugly.proguard.u: boolean s -com.turingtechnologies.materialscrollbar.R$id: int normal -com.xw.repo.bubbleseekbar.R$attr: int buttonTintMode -io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier[] values() -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getBackgroundColorStart() -com.turingtechnologies.materialscrollbar.R$attr: int actionOverflowMenuStyle -com.google.android.material.textfield.TextInputLayout: void setStartIconTintList(android.content.res.ColorStateList) -com.google.android.material.R$dimen: int mtrl_extended_fab_corner_radius -okhttp3.internal.connection.RealConnection: okhttp3.internal.http2.Http2Connection http2Connection -cyanogenmod.app.ILiveLockScreenManager$Stub -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onNext(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onComplete() -james.adaptiveicon.R$attr: int closeIcon -wangdaye.com.geometricweather.R$id: int design_navigation_view -retrofit2.ParameterHandler$Tag -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String A -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int HAS_REQUEST_HAS_VALUE -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_subtitleTextStyle -wangdaye.com.geometricweather.R$drawable: int weather_hail_pixel -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_grey -wangdaye.com.geometricweather.R$animator: R$animator() -okhttp3.internal.cache.FaultHidingSink: void onException(java.io.IOException) -android.didikee.donate.R$attr: int divider -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -james.adaptiveicon.R$dimen: int abc_text_size_button_material -androidx.constraintlayout.widget.R$attr: int searchHintIcon -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: ObservableTakeUntil$TakeUntilMainObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver) -okhttp3.internal.cache.DiskLruCache$2 -org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Object[]) -okhttp3.internal.connection.StreamAllocation$StreamAllocationReference: StreamAllocation$StreamAllocationReference(okhttp3.internal.connection.StreamAllocation,java.lang.Object) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getSupportedFeatures() -androidx.appcompat.widget.AppCompatButton: void setBackgroundResource(int) -cyanogenmod.providers.CMSettings$Global: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) -com.google.android.gms.base.R$styleable: int SignInButton_buttonSize -io.reactivex.internal.schedulers.RxThreadFactory: int priority -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListMenuView -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -androidx.appcompat.R$dimen: int abc_text_size_medium_material -com.amap.api.location.AMapLocation: void setErrorCode(int) -cyanogenmod.themes.ThemeChangeRequest$1: java.lang.Object[] newArray(int) -com.google.android.material.R$styleable: int TextInputLayout_errorEnabled -com.xw.repo.bubbleseekbar.R$dimen: int abc_button_padding_horizontal_material -wangdaye.com.geometricweather.R$layout: int design_navigation_menu_item -wangdaye.com.geometricweather.R$attr: int preferenceScreenStyle -com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_fast_out_linear_in -androidx.preference.R$string: int abc_prepend_shortcut_label -wangdaye.com.geometricweather.R$drawable: int widget_week -okhttp3.HttpUrl: boolean equals(java.lang.Object) -androidx.constraintlayout.widget.R$attr: int actionOverflowMenuStyle -okhttp3.internal.ws.RealWebSocket$Close: okio.ByteString reason -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_INACTIVE -wangdaye.com.geometricweather.R$attr: int barrierDirection -cyanogenmod.externalviews.ExternalViewProviderService: void onCreate() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display2 -com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_HIGH -com.xw.repo.bubbleseekbar.R$id: int topPanel -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String headIconType -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric Metric -com.github.rahatarmanahmed.cpv.CircularProgressView$4: CircularProgressView$4(com.github.rahatarmanahmed.cpv.CircularProgressView) -com.xw.repo.bubbleseekbar.R$attr: int buttonBarNegativeButtonStyle -com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context,android.util.AttributeSet) -com.amap.api.location.AMapLocationQualityReport: int getGPSStatus() -com.google.android.material.R$id: int tabMode -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge -com.google.android.material.behavior.SwipeDismissBehavior: void setListener(com.google.android.material.behavior.SwipeDismissBehavior$OnDismissListener) -androidx.vectordrawable.R$color: int ripple_material_light -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pressure -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_gravity -androidx.constraintlayout.widget.R$styleable: int[] ListPopupWindow -com.google.android.material.R$interpolator -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void subscribe(io.reactivex.ObservableSource[],int) -androidx.fragment.R$id: int notification_main_column_container -com.google.android.material.R$attr: int dragThreshold -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_barLength -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView_Menu -com.xw.repo.bubbleseekbar.R$id: int search_voice_btn -okhttp3.internal.http2.Http2Stream$FramingSink: Http2Stream$FramingSink(okhttp3.internal.http2.Http2Stream) -com.google.android.material.R$attr: int title -wangdaye.com.geometricweather.R$styleable: int ActionBar_indeterminateProgressStyle -androidx.constraintlayout.widget.R$attr: int flow_firstVerticalStyle -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sNonNegativeIntegerValidator -io.reactivex.exceptions.CompositeException: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.BiFunction resultSelector -com.google.android.material.R$drawable: int design_ic_visibility -androidx.preference.R$dimen: int abc_text_size_button_material -androidx.appcompat.widget.Toolbar: androidx.appcompat.widget.DecorToolbar getWrapper() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_tooltipForegroundColor -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String postCode -com.google.android.material.R$attr: int firstBaselineToTopHeight -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.internal.disposables.ArrayCompositeDisposable resources -okhttp3.internal.cache.CacheInterceptor$1: CacheInterceptor$1(okhttp3.internal.cache.CacheInterceptor,okio.BufferedSource,okhttp3.internal.cache.CacheRequest,okio.BufferedSink) -okio.RealBufferedSource: void skip(long) -cyanogenmod.themes.ThemeChangeRequest$Builder: java.util.Map mPerAppOverlays -wangdaye.com.geometricweather.R$array: int subtitle_data_values -androidx.appcompat.R$color: int abc_background_cache_hint_selector_material_light -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void setResource(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean done -androidx.lifecycle.extensions.R$anim: int fragment_fade_enter -com.google.android.material.floatingactionbutton.FloatingActionButton: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) -androidx.appcompat.R$styleable: int MenuItem_android_checked -com.jaredrummler.android.colorpicker.R$attr: int actionBarTabTextStyle -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_android_button -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean isDisposed() -com.google.android.gms.common.SignInButton: void setSize(int) -wangdaye.com.geometricweather.R$id: int month_title -com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar -wangdaye.com.geometricweather.R$attr: int titleEnabled -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Body1 -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setOnceLocation(boolean) -com.google.android.material.R$attr: int actionMenuTextColor -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage FINISHED -android.didikee.donate.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat_Light -androidx.versionedparcelable.ParcelImpl: android.os.Parcelable$Creator CREATOR -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedWritableDb(char[]) -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_vertical -com.google.android.material.R$attr: int listPreferredItemPaddingRight -cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(android.os.Parcel,cyanogenmod.themes.ThemeChangeRequest$1) -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotationY -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Base base -com.google.android.material.R$id: int text_input_start_icon -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial() -androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingEnd -androidx.preference.R$styleable: int View_paddingEnd -wangdaye.com.geometricweather.db.entities.LocationEntity: float getLatitude() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginBottom -androidx.preference.R$id: int action_menu_divider -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isSnow() -androidx.constraintlayout.widget.R$string: int abc_menu_ctrl_shortcut_label -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_customNavigationLayout -wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_dark -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhaseIcon -wangdaye.com.geometricweather.R$animator: int weather_sleet_3 -io.reactivex.Observable: io.reactivex.Observable delaySubscription(long,java.util.concurrent.TimeUnit) -com.jaredrummler.android.colorpicker.R$attr: int listMenuViewStyle -james.adaptiveicon.R$style: int Base_Widget_AppCompat_SearchView -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon -wangdaye.com.geometricweather.R$animator: int mtrl_chip_state_list_anim -io.reactivex.internal.queue.SpscArrayQueue: boolean offer(java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean hasKey(java.lang.Object) -com.tencent.bugly.crashreport.crash.anr.a -androidx.preference.R$style: int Base_V7_Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$id: int activity_preview_icon_recyclerView -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: double Value -cyanogenmod.providers.CMSettings$System: java.lang.String HIGH_TOUCH_SENSITIVITY_ENABLE -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo build() -com.google.android.material.R$dimen: int tooltip_precise_anchor_extra_offset -io.reactivex.Observable: io.reactivex.Observable switchMapDelayError(io.reactivex.functions.Function,int) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index() -james.adaptiveicon.R$id: int action_bar_root -androidx.appcompat.widget.AppCompatImageButton: void setSupportImageTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_AIR_QUALITY -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerX -androidx.constraintlayout.helper.widget.Layer: void setVisibility(int) -wangdaye.com.geometricweather.R$attr: int contentPadding -androidx.constraintlayout.widget.R$color: int background_material_light -wangdaye.com.geometricweather.R$string: int common_google_play_services_notification_ticker -com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode Hight_Accuracy -androidx.appcompat.R$color: int error_color_material_dark -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationZ -androidx.lifecycle.ReflectiveGenericLifecycleObserver: java.lang.Object mWrapped -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator parent -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -wangdaye.com.geometricweather.R$attr: int deltaPolarRadius -androidx.lifecycle.LifecycleRegistry: int mAddingObserverCounter -com.google.android.material.R$attr: int layout_goneMarginRight -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric -retrofit2.OptionalConverterFactory$OptionalConverter -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Title -com.google.android.material.R$drawable: int abc_text_select_handle_middle_mtrl_dark -com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_material -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_MAX_INDEX -com.turingtechnologies.materialscrollbar.R$dimen: int notification_large_icon_height -com.tencent.bugly.crashreport.crash.c: boolean l -retrofit2.RequestBuilder: okhttp3.MediaType contentType -james.adaptiveicon.R$styleable: int[] PopupWindowBackgroundState -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_curveFit -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -com.google.android.material.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -com.google.android.material.internal.BaselineLayout: int getBaseline() -androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context,android.util.AttributeSet) -com.xw.repo.bubbleseekbar.R$attr: int colorBackgroundFloating -okhttp3.CacheControl$Builder: okhttp3.CacheControl build() -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable,int,int) -com.xw.repo.bubbleseekbar.R$drawable: int abc_dialog_material_background -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Colored -okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withWriteTimeout(int,java.util.concurrent.TimeUnit) -androidx.transition.ChangeBounds$7: androidx.transition.ChangeBounds$ViewBounds mViewBounds -cyanogenmod.externalviews.ExternalView: android.content.ServiceConnection mServiceConnection -wangdaye.com.geometricweather.R$attr: int state_lifted -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TEMPERATURE_UNIT -androidx.appcompat.R$drawable: int btn_checkbox_checked_mtrl -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableBottom -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart -okhttp3.internal.http2.Http2Stream$FramingSink: okio.Timeout timeout() -com.xw.repo.bubbleseekbar.R$id: int action_bar_subtitle -com.google.android.material.R$layout: int notification_template_custom_big -androidx.viewpager2.R$layout: int notification_template_custom_big -okio.Buffer: long indexOf(byte) -wangdaye.com.geometricweather.R$xml: int widget_trend_hourly -okhttp3.internal.http1.Http1Codec$1 -com.google.android.material.slider.BaseSlider: int getHaloRadius() -com.google.android.material.R$color: int mtrl_textinput_disabled_color -wangdaye.com.geometricweather.R$attr: int collapsedTitleTextAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_progressBarStyle -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -androidx.activity.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: int status -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActivityChooserView -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -okhttp3.Challenge: java.lang.String toString() -androidx.appcompat.R$styleable: int SearchView_android_focusable -okhttp3.internal.io.FileSystem$1: boolean exists(java.io.File) -androidx.appcompat.widget.AppCompatImageView: android.graphics.PorterDuff$Mode getSupportImageTintMode() -androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet,int,int) -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMarkTintMode -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dark -com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_inset_material -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_subtitle_top_margin_material -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String n -cyanogenmod.providers.CMSettings$System: long getLong(android.content.ContentResolver,java.lang.String) -androidx.fragment.app.FragmentContainerView: void setDrawDisappearingViewsLast(boolean) -androidx.appcompat.R$id: int accessibility_custom_action_11 -androidx.dynamicanimation.R$color: int secondary_text_default_material_light -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_3 -com.jaredrummler.android.colorpicker.R$style: R$style() -androidx.customview.R$attr: int fontProviderQuery -androidx.viewpager.R$color: int secondary_text_default_material_light -androidx.appcompat.widget.AppCompatSpinner: void setPrompt(java.lang.CharSequence) -wangdaye.com.geometricweather.R$string: int key_ui_style -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogIcon -com.amap.api.location.AMapLocation: double t -com.bumptech.glide.integration.okhttp.R$id: int tag_unhandled_key_listeners -androidx.preference.R$dimen: int abc_text_size_body_2_material -okhttp3.Cache: int ENTRY_COUNT -com.github.rahatarmanahmed.cpv.CircularProgressView: int animSwoopDuration -wangdaye.com.geometricweather.R$color: int colorRoot_dark -io.reactivex.internal.schedulers.ScheduledRunnable: void dispose() -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.observers.InnerQueuedObserver current -com.google.android.material.R$attr: int colorControlActivated -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPressure() -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String name -com.xw.repo.bubbleseekbar.R$id: int multiply -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Borderless_Colored -cyanogenmod.app.LiveLockScreenInfo$1 -androidx.hilt.lifecycle.R$anim: int fragment_close_exit -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String ObstructionsToVisibility -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -androidx.preference.R$anim: int abc_tooltip_enter -com.google.android.material.R$styleable: int AlertDialog_buttonPanelSideLayout -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$layout: int dialog_running_in_background_o -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -okhttp3.internal.ws.WebSocketReader: boolean isControlFrame -com.google.android.material.R$styleable: int SwitchCompat_thumbTintMode -cyanogenmod.providers.ThemesContract: android.net.Uri AUTHORITY_URI -androidx.constraintlayout.widget.R$dimen: int notification_action_text_size -androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_colored -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf -com.github.rahatarmanahmed.cpv.CircularProgressView$7: void onAnimationUpdate(android.animation.ValueAnimator) -android.didikee.donate.R$color: int abc_color_highlight_material -androidx.constraintlayout.widget.R$styleable: int ActionMenuItemView_android_minWidth -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: java.lang.Object value -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory create(javax.inject.Provider,javax.inject.Provider) -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_disabled_elevation -com.bumptech.glide.integration.okhttp.R$dimen: int compat_notification_large_icon_max_width -com.google.android.material.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets -com.amap.api.location.AMapLocation: java.lang.String e(com.amap.api.location.AMapLocation,java.lang.String) -wangdaye.com.geometricweather.R$drawable: int mtrl_dropdown_arrow -cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile[] getProfiles() -com.google.android.material.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setHeadIconType(java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int thumbTintMode -wangdaye.com.geometricweather.db.entities.DailyEntity: void setPm25(java.lang.Float) -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy DROP -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void dispose() -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonStyle -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onError(java.lang.Throwable) -androidx.preference.R$attr: int commitIcon -androidx.savedstate.SavedStateRegistry$1 -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void dispose() -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge -com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarStyle -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onNext(java.lang.Object) -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setDistrict(java.lang.String) -com.tencent.bugly.proguard.a: void a(byte[]) -cyanogenmod.app.StatusBarPanelCustomTile: long getPostTime() -okhttp3.internal.platform.Platform: java.util.List alpnProtocolNames(java.util.List) -androidx.drawerlayout.R$attr: int fontStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit[] values() -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedFragment(java.lang.String) -com.google.android.material.R$styleable: int ClockHandView_selectorSize -okhttp3.internal.http2.Header: okio.ByteString TARGET_SCHEME -wangdaye.com.geometricweather.R$id: int item -wangdaye.com.geometricweather.R$attr: int bsb_is_float_type -wangdaye.com.geometricweather.R$style: int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day -wangdaye.com.geometricweather.R$string: int feedback_readd_location -com.google.android.material.R$styleable: int StateListDrawable_android_dither -wangdaye.com.geometricweather.R$dimen: int cpv_dialog_preview_width -cyanogenmod.weather.WeatherLocation: java.lang.String access$402(cyanogenmod.weather.WeatherLocation,java.lang.String) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView -cyanogenmod.themes.IThemeService$Stub: java.lang.String DESCRIPTOR -androidx.hilt.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul6H -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivityStopped(android.app.Activity) -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: DefaultCallAdapterFactory$ExecutorCallbackCall(java.util.concurrent.Executor,retrofit2.Call) -com.google.android.material.R$attr: int flow_verticalStyle -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_arrowHeadLength -androidx.coordinatorlayout.R$id: int accessibility_custom_action_1 -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType MAPBAR -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: int phenomenonId -android.didikee.donate.R$attr: int borderlessButtonStyle -com.tencent.bugly.CrashModule: void onServerStrategyChanged(com.tencent.bugly.crashreport.common.strategy.StrategyBean) -com.google.android.material.R$id: int group_divider -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: boolean val$visible -com.turingtechnologies.materialscrollbar.R$attr: int alphabeticModifiers -androidx.preference.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator -com.google.android.material.R$attr: int transitionDisable -com.turingtechnologies.materialscrollbar.R$attr: int titleTextAppearance -androidx.fragment.app.FragmentManagerState -com.google.android.material.textfield.TextInputLayout: void removeOnEndIconChangedListener(com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating -androidx.appcompat.widget.SwitchCompat: void setThumbResource(int) -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_NoActionBar -cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$dimen: int disabled_alpha_material_dark -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_81 -com.jaredrummler.android.colorpicker.R$id: int recycler_view -okhttp3.internal.connection.RealConnection: int allocationLimit -androidx.appcompat.R$layout: int abc_search_dropdown_item_icons_2line -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void dispose() -wangdaye.com.geometricweather.R$string: int feedback_search_nothing -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemTextColor -androidx.constraintlayout.widget.R$style: int Platform_AppCompat_Light -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: BaiduIPLocationResult$ContentBean() -wangdaye.com.geometricweather.R$drawable: int ic_thx -com.jaredrummler.android.colorpicker.R$color: int primary_dark_material_dark -wangdaye.com.geometricweather.R$attr: int msb_rightToLeft -wangdaye.com.geometricweather.R$string: int feedback_clock_font -androidx.work.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_container -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level NONE -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void dispose() -okhttp3.internal.tls.BasicTrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) -com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_alpha -androidx.appcompat.R$drawable: int abc_spinner_textfield_background_material -wangdaye.com.geometricweather.R$id: int dialog_button -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_11 -com.google.gson.stream.JsonReader: int[] stack -androidx.recyclerview.R$dimen: int notification_top_pad_large_text -okio.RealBufferedSink: okio.BufferedSink write(byte[],int,int) -androidx.lifecycle.LiveData: int mActiveCount -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver) -com.turingtechnologies.materialscrollbar.R$id: int search_edit_frame -androidx.appcompat.R$id: int notification_main_column -wangdaye.com.geometricweather.R$style: int Preference -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert -androidx.constraintlayout.widget.R$styleable: int MenuView_android_horizontalDivider -android.didikee.donate.R$string: int abc_activitychooserview_choose_application -androidx.appcompat.R$styleable: int[] SwitchCompat -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_toId -androidx.loader.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight -com.amap.api.fence.GeoFence$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_drawPath -com.google.android.material.R$attr: int autoCompleteTextViewStyle -androidx.constraintlayout.widget.R$styleable: int[] AppCompatTextView -androidx.viewpager2.R$id: int accessibility_custom_action_2 -okio.RealBufferedSink: okio.BufferedSink emitCompleteSegments() -okhttp3.internal.connection.RealConnection: void cancel() -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getProfileHasAppProfiles -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial Imperial -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Info -androidx.recyclerview.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendDailyProvider: WidgetTrendDailyProvider() -cyanogenmod.profiles.RingModeSettings: android.os.Parcelable$Creator CREATOR -okhttp3.internal.http2.Http2Connection$ReaderRunnable$3 -com.google.android.material.R$styleable: int Layout_barrierMargin -com.google.android.material.textfield.TextInputLayout: int getHintCurrentCollapsedTextColor() -com.google.android.material.R$color: int notification_icon_bg_color -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_HIGH -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onComplete() -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer moldLevel -wangdaye.com.geometricweather.R$dimen: int tooltip_corner_radius -androidx.core.R$attr: int fontProviderQuery -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_disabled_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analog_light -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop -com.google.android.material.R$id: int submenuarrow -cyanogenmod.profiles.RingModeSettings: void processOverride(android.content.Context) -androidx.vectordrawable.R$attr: int fontProviderPackage -androidx.preference.R$style: int Base_Widget_AppCompat_ImageButton -androidx.constraintlayout.widget.R$attr: int popupMenuStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: java.lang.String Unit -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -wangdaye.com.geometricweather.R$dimen: int abc_panel_menu_list_width -com.bumptech.glide.R$id: int right_icon -androidx.recyclerview.R$id: int accessibility_custom_action_20 -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_creator -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listDividerAlertDialog -com.google.android.material.R$attr: int listItemLayout -com.google.android.material.R$attr: int subtitleTextColor -cyanogenmod.app.BaseLiveLockManagerService: void cancelLiveLockScreen(java.lang.String,int,int) -com.jaredrummler.android.colorpicker.R$attr: int colorError -com.google.android.material.R$styleable: int TextInputLayout_boxStrokeWidth -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: BaiduIPLocationService_Factory(javax.inject.Provider,javax.inject.Provider) -com.xw.repo.bubbleseekbar.R$drawable: int tooltip_frame_light -com.turingtechnologies.materialscrollbar.R$drawable: int navigation_empty_icon -androidx.hilt.R$dimen: int compat_notification_large_icon_max_width -okhttp3.internal.platform.OptionalMethod: java.lang.String methodName -androidx.constraintlayout.widget.R$styleable: int KeyPosition_drawPath -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Bridge -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon -androidx.constraintlayout.widget.R$attr: int drawPath -com.jaredrummler.android.colorpicker.R$color: int abc_background_cache_hint_selector_material_dark -cyanogenmod.externalviews.ExternalViewProperties: int getX() -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage RESOURCE_CACHE -androidx.loader.R$styleable: int FontFamily_fontProviderQuery -retrofit2.DefaultCallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Base getBase() -cyanogenmod.app.LiveLockScreenInfo: int priority -com.google.android.material.R$attr: int flow_padding -androidx.hilt.work.R$dimen: int notification_small_icon_size_as_large -okhttp3.HttpUrl: java.lang.String scheme() -com.google.android.material.R$styleable: int ActionBar_displayOptions -androidx.appcompat.widget.ViewStubCompat: int getInflatedId() -okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallback -androidx.constraintlayout.widget.R$attr: int textColorAlertDialogListItem -okhttp3.internal.http1.Http1Codec: int state -wangdaye.com.geometricweather.R$id: int auto -james.adaptiveicon.R$style: int Base_Animation_AppCompat_DropDownUp -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: boolean isValid() -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_MAX -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogMessage -com.google.android.gms.common.api.AvailabilityException: AvailabilityException(androidx.collection.ArrayMap) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_DarkActionBar -com.tencent.bugly.proguard.y$a: long e -wangdaye.com.geometricweather.R$layout: int preference_recyclerview -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_month_vertical_padding -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: long serialVersionUID -wangdaye.com.geometricweather.R$style: int ThemeOverlayColorAccentRed -cyanogenmod.externalviews.KeyguardExternalView$11 -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeDegreeDayTemperature -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorButtonNormal -android.didikee.donate.R$id: int action_context_bar -com.google.gson.stream.JsonWriter: void writeDeferredName() -okhttp3.internal.Internal: okhttp3.Call newWebSocketCall(okhttp3.OkHttpClient,okhttp3.Request) -wangdaye.com.geometricweather.R$styleable: int MockView_mock_labelBackgroundColor -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver -com.google.android.material.R$style: int Theme_AppCompat_Light_DarkActionBar -androidx.appcompat.R$attr: int tooltipFrameBackground -okio.Util: long reverseBytesLong(long) -okhttp3.internal.http2.PushObserver$1: boolean onRequest(int,java.util.List) -com.baidu.location.e.n -wangdaye.com.geometricweather.R$id: int weather_icon -androidx.appcompat.R$id: int accessibility_custom_action_29 -okhttp3.internal.http2.Http2Reader$ContinuationSource: okio.Timeout timeout() -androidx.preference.R$styleable: int PreferenceGroup_orderingFromXml -okhttp3.internal.http1.Http1Codec$AbstractSource: okhttp3.internal.http1.Http1Codec this$0 -androidx.dynamicanimation.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getWeek(android.content.Context) -com.google.android.material.R$id: int password_toggle -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.LocationEntityDao getLocationEntityDao() -com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTextColor(android.content.res.ColorStateList) -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_CANCEL_REQUEST -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickInactiveTintList() -com.google.android.material.R$styleable: int NavigationView_itemTextColor -com.jaredrummler.android.colorpicker.R$attr: int titleMarginEnd -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void subscribeInner(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -androidx.preference.R$styleable: int[] DialogPreference -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupMenu_Overflow -org.greenrobot.greendao.AbstractDao: java.lang.String[] getNonPkColumns() -wangdaye.com.geometricweather.R$array: int location_service_values -retrofit2.DefaultCallAdapterFactory$1: retrofit2.Call adapt(retrofit2.Call) -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String dept -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalStyle -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf -james.adaptiveicon.R$attr: int subtitle -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable -com.xw.repo.bubbleseekbar.R$dimen: int abc_seekbar_track_background_height_material -io.reactivex.internal.util.NotificationLite$DisposableNotification -com.google.android.material.R$styleable: int Constraint_layout_goneMarginLeft -androidx.preference.R$style: int TextAppearance_AppCompat_Title_Inverse -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintEnd_toStartOf -androidx.vectordrawable.animated.R$dimen: int compat_button_padding_horizontal_material -com.turingtechnologies.materialscrollbar.R$attr: int drawableSize -androidx.hilt.lifecycle.R$layout: int notification_template_custom_big -com.google.android.material.R$styleable: int AppCompatTheme_colorPrimaryDark -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupWindow -com.jaredrummler.android.colorpicker.R$id: int right_icon -cyanogenmod.app.ICustomTileListener$Stub -androidx.activity.R$styleable: int GradientColorItem_android_color -com.jaredrummler.android.colorpicker.R$style: int Base_V26_Widget_AppCompat_Toolbar -okhttp3.internal.http1.Http1Codec$AbstractSource -androidx.appcompat.R$dimen: int abc_action_bar_icon_vertical_padding_material -androidx.constraintlayout.widget.R$styleable: int Layout_minWidth -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String cityId -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitation -com.google.android.material.R$styleable: int NavigationView_itemTextAppearance -okhttp3.internal.http2.Http2Connection$4: java.util.List val$requestHeaders -cyanogenmod.app.PartnerInterface: void rebootDevice() -androidx.swiperefreshlayout.R$attr: int fontVariationSettings -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_fontFamily -com.amap.api.location.AMapLocation: void setDescription(java.lang.String) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -androidx.constraintlayout.widget.R$style: int Base_V26_Widget_AppCompat_Toolbar -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -cyanogenmod.themes.IThemeChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$layout: int material_clockface_textview -com.jaredrummler.android.colorpicker.R$attr: int layout_dodgeInsetEdges -wangdaye.com.geometricweather.R$animator: int weather_rain_3 -com.google.android.material.R$styleable: int TextInputLayout_placeholderText -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogCenterButtons -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -wangdaye.com.geometricweather.R$string: int date_format_short -okhttp3.ConnectionSpec: ConnectionSpec(okhttp3.ConnectionSpec$Builder) -com.google.android.material.R$id: int pin -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_19 -android.didikee.donate.R$styleable: int ActionBar_customNavigationLayout -com.bumptech.glide.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_confirm_button_min_width -androidx.appcompat.R$styleable: int FontFamilyFont_fontStyle -com.google.android.material.R$layout: R$layout() -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat -com.google.android.material.R$attr: int flow_horizontalGap -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int wip -com.google.android.material.R$color: int dim_foreground_disabled_material_light -android.didikee.donate.R$styleable: int SearchView_android_imeOptions -wangdaye.com.geometricweather.R$id: int center_vertical -com.bumptech.glide.integration.okhttp.R$id: int right -com.google.gson.internal.LazilyParsedNumber: int intValue() -wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationZ -cyanogenmod.power.IPerformanceManager: boolean getProfileHasAppProfiles(int) -com.google.android.material.R$id: int bidirectional -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -cyanogenmod.app.BaseLiveLockManagerService$1: void cancelLiveLockScreen(java.lang.String,int,int) -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSmallPopupMenu -com.turingtechnologies.materialscrollbar.R$id: int mtrl_child_content_container -cyanogenmod.weather.CMWeatherManager: java.lang.String TAG -androidx.swiperefreshlayout.R$id: int text2 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_BATTERY_STYLE_VALIDATOR -androidx.activity.R$id: int accessibility_custom_action_10 -com.google.android.material.R$attr: int progressBarStyle -androidx.hilt.work.R$attr: int fontProviderAuthority -androidx.coordinatorlayout.R$styleable: int GradientColor_android_gradientRadius -com.google.android.material.R$id: int material_minute_text_input -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxPlain() -androidx.lifecycle.ReportFragment: void onStop() -wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog -com.jaredrummler.android.colorpicker.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: boolean isDisposed() -cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup mDefaultGroup -androidx.swiperefreshlayout.R$id: int title -wangdaye.com.geometricweather.R$attr: int backgroundTint -androidx.core.R$id: int accessibility_custom_action_26 -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_searchHintIcon -androidx.preference.R$styleable: int SwitchCompat_splitTrack -android.didikee.donate.R$styleable: int TextAppearance_fontVariationSettings -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_overlay -com.google.android.material.R$id: int accessibility_custom_action_12 -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabView -io.reactivex.Observable: io.reactivex.Observable ofType(java.lang.Class) -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: java.util.List getBrands() -com.google.android.material.R$style: int Theme_AppCompat_DayNight -androidx.appcompat.R$string: int abc_menu_sym_shortcut_label -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_summaryOn -james.adaptiveicon.R$styleable: R$styleable() -wangdaye.com.geometricweather.common.basic.models.weather.Alert: long getAlertId() -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -wangdaye.com.geometricweather.R$attr: int chipMinHeight -androidx.preference.R$styleable: int AppCompatTheme_android_windowIsFloating -com.amap.api.location.AMapLocationClient: com.amap.api.location.LocationManagerBase b -cyanogenmod.themes.ThemeManager: android.os.Handler access$200() -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: MfWarningsResult$WarningTimelaps() -androidx.hilt.R$styleable: int ColorStateListItem_android_alpha -james.adaptiveicon.R$attr: int thumbTintMode -com.turingtechnologies.materialscrollbar.R$id: int visible -com.turingtechnologies.materialscrollbar.R$anim: int abc_popup_exit -android.didikee.donate.R$id: int search_badge -androidx.constraintlayout.widget.R$attr: int multiChoiceItemLayout -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setSnowPrecipitation(java.lang.Float) -com.amap.api.fence.GeoFence: void setPoiItem(com.amap.api.fence.PoiItem) -wangdaye.com.geometricweather.R$styleable: int ActionBar_navigationMode -cyanogenmod.app.ICMTelephonyManager$Stub: java.lang.String DESCRIPTOR -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableEnd -cyanogenmod.externalviews.ExternalView$2: cyanogenmod.externalviews.ExternalView this$0 -com.xw.repo.bubbleseekbar.R$dimen: int hint_alpha_material_light -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_label_cutout_padding -android.didikee.donate.R$id: int topPanel -wangdaye.com.geometricweather.R$layout: int design_menu_item_action_area -androidx.hilt.work.R$id: int info -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_menu -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: cyanogenmod.app.suggest.IAppSuggestProvider asInterface(android.os.IBinder) -androidx.viewpager2.R$integer: R$integer() -wangdaye.com.geometricweather.R$attr: int strokeWidth -androidx.fragment.R$id: int title -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: FlowableOnBackpressureLatest$BackpressureLatestSubscriber(org.reactivestreams.Subscriber) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_CBC_SHA -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: double Value -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathStart() -io.reactivex.internal.observers.DeferredScalarDisposable: java.lang.Object poll() -androidx.work.R$id: int title -cyanogenmod.app.Profile$TriggerState: int ON_A2DP_CONNECT -com.google.android.material.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_title -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_default -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_suggestionRowLayout -androidx.fragment.R$id: int actions -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonStyleSmall -com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_Dialog -wangdaye.com.geometricweather.R$styleable: int[] AnimatableIconView -androidx.hilt.R$id: int tag_accessibility_pane_title -cyanogenmod.app.Profile$1: Profile$1() -com.tencent.bugly.crashreport.common.info.a: int ah -android.didikee.donate.R$id: int alertTitle -com.google.android.material.appbar.AppBarLayout: float getTargetElevation() -com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -com.google.android.material.R$style: int Theme_Design_Light_BottomSheetDialog -androidx.preference.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: int UnitType -okio.Timeout$1: void throwIfReached() -com.tencent.bugly.proguard.e: java.lang.String a(byte[]) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer realFeelShaderTemperature -james.adaptiveicon.R$styleable: int SwitchCompat_android_thumb -james.adaptiveicon.R$color: int secondary_text_disabled_material_light -retrofit2.ParameterHandler$PartMap: retrofit2.Converter valueConverter -com.bumptech.glide.Registry$MissingComponentException -androidx.recyclerview.widget.RecyclerView: void setOnFlingListener(androidx.recyclerview.widget.RecyclerView$OnFlingListener) -io.reactivex.internal.observers.DeferredScalarDisposable: void complete(java.lang.Object) -com.xw.repo.bubbleseekbar.R$string: int search_menu_title -androidx.lifecycle.extensions.R$id: int action_divider -okio.ByteString: okio.ByteString sha256() -com.amap.api.location.AMapLocationClientOption$GeoLanguage -cyanogenmod.app.BaseLiveLockManagerService: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -okhttp3.internal.platform.Jdk9Platform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float totalPrecipitation24h -cyanogenmod.app.CMContextConstants: java.lang.String CM_WEATHER_SERVICE -wangdaye.com.geometricweather.R$string: int nighttime -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA -io.reactivex.observers.DisposableObserver: void dispose() -androidx.vectordrawable.R$id: int right_side -androidx.viewpager2.widget.ViewPager2$SavedState -android.didikee.donate.R$id: int end -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getLockWallpaperThemePackageName() -com.tencent.bugly.proguard.e -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType TransactionRunnable -retrofit2.SkipCallbackExecutorImpl: SkipCallbackExecutorImpl() -androidx.customview.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_disabled_translation_z -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_shapeAppearanceOverlay -wangdaye.com.geometricweather.R$attr: int checked_background_color -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_subtitle -androidx.fragment.R$id: int tag_accessibility_heading -androidx.viewpager2.R$attr: int fontWeight -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: void dispose() -androidx.core.R$drawable: int notification_template_icon_bg -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) -androidx.coordinatorlayout.widget.CoordinatorLayout: androidx.core.view.WindowInsetsCompat getLastWindowInsets() -okhttp3.RealCall: okio.Timeout timeout() -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderPackage -com.google.gson.stream.JsonReader: int doPeek() -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: java.lang.Object v2 -androidx.preference.R$drawable: int abc_btn_radio_to_on_mtrl_015 -wangdaye.com.geometricweather.R$styleable: int MockView_mock_showLabel -androidx.fragment.R$layout: int notification_template_icon_group -androidx.customview.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginTop -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SeekBar_Discrete -androidx.constraintlayout.widget.R$styleable: int SearchView_defaultQueryHint -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerComplete(io.reactivex.internal.observers.InnerQueuedObserver) -androidx.appcompat.R$styleable: int GradientColor_android_endColor -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_hide_motion_spec -androidx.constraintlayout.widget.R$styleable: int ActionBarLayout_android_layout_gravity -cyanogenmod.app.BaseLiveLockManagerService$1: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_subtitle_top_margin_material -com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox -com.jaredrummler.android.colorpicker.R$string: int abc_menu_delete_shortcut_label -com.google.android.material.R$styleable: int MaterialTextView_android_textAppearance -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -okio.Okio$2: java.io.InputStream val$in -com.turingtechnologies.materialscrollbar.R$id: int outline -androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: void run() -com.turingtechnologies.materialscrollbar.R$attr: int tabPadding -com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker -androidx.preference.R$styleable: int MenuItem_iconTint -com.jaredrummler.android.colorpicker.R$styleable: int[] CoordinatorLayout_Layout -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_ActionBar -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircleAngle -cyanogenmod.profiles.BrightnessSettings$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: long EpochDate -okhttp3.internal.cache.CacheStrategy$Factory: long computeFreshnessLifetime() -wangdaye.com.geometricweather.R$styleable: int Preference_android_defaultValue -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setHttpTimeOut(long) -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX -wangdaye.com.geometricweather.R$layout: int design_navigation_item_separator -com.google.android.material.R$layout: int design_layout_tab_text -com.google.android.material.R$styleable: int TextInputLayout_errorIconTint -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_to_on_mtrl_015 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -okhttp3.internal.tls.OkHostnameVerifier: okhttp3.internal.tls.OkHostnameVerifier INSTANCE -android.didikee.donate.R$drawable: int abc_ic_menu_cut_mtrl_alpha -androidx.preference.R$styleable: int AppCompatTheme_actionBarPopupTheme -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode valueOf(java.lang.String) -cyanogenmod.externalviews.ExternalView$3: void run() -androidx.swiperefreshlayout.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice Ice -wangdaye.com.geometricweather.R$layout: int dialog_weather_hourly -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -com.google.android.material.tabs.TabLayout: void removeOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) -com.google.android.material.R$styleable: int TextAppearance_android_textColor -com.amap.api.location.AMapLocation: int ERROR_CODE_AIRPLANEMODE_WIFIOFF -android.didikee.donate.R$style: int TextAppearance_AppCompat_Medium_Inverse -james.adaptiveicon.R$dimen: int abc_search_view_preferred_width -androidx.preference.R$style: int PreferenceFragment -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit[] values() -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.DailyEntityDao getDailyEntityDao() -com.tencent.bugly.proguard.am: am() -com.xw.repo.bubbleseekbar.R$attr: int buttonBarStyle -okio.RealBufferedSource: byte[] readByteArray() -cyanogenmod.themes.ThemeManager$1: void onProgress(int) -james.adaptiveicon.R$id: int action_image -okhttp3.internal.http2.Http2Connection$5: Http2Connection$5(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,java.util.List,boolean) -okhttp3.internal.http2.Hpack$Reader: void clearDynamicTable() -androidx.lifecycle.ServiceLifecycleDispatcher: void postDispatchRunnable(androidx.lifecycle.Lifecycle$Event) -retrofit2.Response: retrofit2.Response success(java.lang.Object,okhttp3.Headers) -androidx.lifecycle.MediatorLiveData$Source: androidx.lifecycle.LiveData mLiveData -wangdaye.com.geometricweather.R$layout: int abc_search_dropdown_item_icons_2line -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_tint -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void subscribe() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_RC4_128_SHA -androidx.legacy.coreutils.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer relativeHumidityMax -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean isDisposed() -cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.view.WindowManager access$500(cyanogenmod.externalviews.KeyguardExternalViewProviderService) -androidx.constraintlayout.widget.R$attr: int actionBarTabStyle -androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonTint -androidx.preference.R$styleable: int AppCompatTheme_windowMinWidthMajor -com.google.android.material.R$attr: int buttonIconDimen -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -cyanogenmod.app.Profile$LockMode: int INSECURE -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Medium_Inverse -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataSpinner -androidx.fragment.R$id: int accessibility_custom_action_17 -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.R$string: int content_desc_wechat_payment_code -android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider BAIDU_IP -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth -wangdaye.com.geometricweather.R$styleable: int MaterialShape_shapeAppearanceOverlay -com.tencent.bugly.crashreport.biz.UserInfoBean: long f -androidx.constraintlayout.widget.R$dimen: int abc_dialog_min_width_major -androidx.preference.R$styleable: int[] AppCompatTheme -com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_DropDownUp -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.AbstractDaoSession getSession() -wangdaye.com.geometricweather.R$animator: int weather_clear_day_2 -androidx.activity.R$id: int actions -com.turingtechnologies.materialscrollbar.R$attr: int goIcon -com.google.android.material.R$drawable: int avd_hide_password -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String uvLevel -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Flush -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplace -wangdaye.com.geometricweather.R$attr: int strokeColor -androidx.lifecycle.LiveData: java.lang.Object mPendingData -com.google.android.material.R$attr: int autoTransition -okhttp3.internal.cache.DiskLruCache$Entry: java.io.File[] cleanFiles -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int OTHER_STATE_HAS_VALUE -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$attr: int contentInsetEndWithActions -androidx.preference.PreferenceDialogFragmentCompat: PreferenceDialogFragmentCompat() -com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.String) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: java.lang.Object item -com.google.android.material.button.MaterialButtonToggleGroup: void setGeneratedIdIfNeeded(com.google.android.material.button.MaterialButton) -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLocationPurpose(com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose) -com.google.android.material.R$attr: int passwordToggleDrawable -androidx.hilt.work.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconPadding -okhttp3.EventListener: EventListener() -wangdaye.com.geometricweather.R$string: int next -com.google.gson.internal.LazilyParsedNumber: java.lang.String value -androidx.appcompat.R$attr: int fontProviderFetchStrategy -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_orientation -cyanogenmod.providers.CMSettings$System: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) -com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_material_dark -wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper -cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_DEFAULT -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: java.lang.Object poll() -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconEndPadding -androidx.drawerlayout.R$attr: int ttcIndex -io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable,int) -androidx.preference.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -james.adaptiveicon.R$styleable: int AppCompatTheme_dividerHorizontal -androidx.constraintlayout.widget.R$styleable: int Constraint_animate_relativeTo -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setSwitchView(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCloseDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours -wangdaye.com.geometricweather.R$animator: int weather_rain_2 -wangdaye.com.geometricweather.R$attr: int closeIconSize -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_activityChooserViewStyle -androidx.hilt.work.R$id: int notification_main_column_container -wangdaye.com.geometricweather.R$color: int abc_tint_spinner -wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_android_orderingFromXml -androidx.recyclerview.R$dimen: int notification_top_pad -okhttp3.internal.http2.Http2Connection: long degradedPongDeadlineNs -com.google.android.material.circularreveal.CircularRevealGridLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -androidx.constraintlayout.widget.R$attr: int tooltipForegroundColor -androidx.constraintlayout.widget.R$dimen: int hint_pressed_alpha_material_light -android.didikee.donate.R$id: int default_activity_button -com.google.android.material.R$attr: int tickColorActive -wangdaye.com.geometricweather.R$attr: int useCompatPadding -androidx.fragment.app.Fragment: Fragment() -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: IWeatherServiceProviderChangeListener$Stub$Proxy(android.os.IBinder) -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: int active -com.google.android.material.bottomappbar.BottomAppBar: void setHideOnScroll(boolean) -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$drawable: int abc_item_background_holo_light -cyanogenmod.providers.CMSettings$System: android.net.Uri getUriFor(java.lang.String) -okhttp3.internal.http1.Http1Codec: int STATE_READ_RESPONSE_HEADERS -androidx.constraintlayout.widget.R$attr: int warmth -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: void close() -androidx.vectordrawable.R$id: int accessibility_custom_action_29 -com.google.android.material.R$attr: int chipIcon -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: CNWeatherResult$Life() -wangdaye.com.geometricweather.R$attr: int suggestionRowLayout -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver parent -com.tencent.bugly.crashreport.common.info.a: java.lang.String f(java.lang.String) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void onDetachedFromWindow() -james.adaptiveicon.R$styleable: int SearchView_searchIcon -androidx.constraintlayout.widget.R$styleable: int MotionHelper_onHide -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_interval -com.google.android.material.R$color: int tooltip_background_dark -com.google.android.material.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -android.didikee.donate.R$styleable: int SwitchCompat_splitTrack -okhttp3.internal.connection.RealConnection: void connectSocket(int,int,okhttp3.Call,okhttp3.EventListener) -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.functions.Action onFinally -com.xw.repo.bubbleseekbar.R$id: int expand_activities_button -wangdaye.com.geometricweather.R$id: int recycler_view -cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_REVERSE_LOOKUP -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean tillTheEnd -cyanogenmod.os.Concierge$ParcelInfo: boolean mCreation -com.google.android.material.R$layout: int mtrl_alert_dialog -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionLayout -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getLevel() -android.didikee.donate.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -android.support.v4.os.IResultReceiver$Default: android.os.IBinder asBinder() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer apparentTemperature -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver -wangdaye.com.geometricweather.R$id: int item_touch_helper_previous_elevation -wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_elevation -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean get(int) -okio.ForwardingSource: void close() -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: long read(okio.Buffer,long) -com.turingtechnologies.materialscrollbar.R$attr: int helperTextTextAppearance -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min -androidx.constraintlayout.widget.R$attr: int popupWindowStyle -androidx.drawerlayout.widget.DrawerLayout: void setDrawerElevation(float) -okio.Buffer: okio.Buffer writeDecimalLong(long) -james.adaptiveicon.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -com.google.android.material.appbar.AppBarLayout: void setStatusBarForegroundResource(int) -androidx.core.R$id: int notification_main_column -com.google.android.material.card.MaterialCardView: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -android.didikee.donate.R$dimen: int abc_action_button_min_width_overflow_material -com.amap.api.location.DPoint: DPoint(double,double) -androidx.viewpager2.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial -androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyle -com.baidu.location.e.m: m(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_orderInCategory -okhttp3.CookieJar: okhttp3.CookieJar NO_COOKIES -androidx.vectordrawable.R$id: int accessibility_custom_action_20 -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_ActionBar -okio.Segment: okio.Segment next -com.jaredrummler.android.colorpicker.R$color: int abc_color_highlight_material -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -android.didikee.donate.R$attr: int listPreferredItemHeightSmall -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_dotDiameter -okio.RealBufferedSink: void close() -androidx.hilt.work.R$id: int forever -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -androidx.drawerlayout.R$styleable: int[] FontFamily -okhttp3.Request: okhttp3.HttpUrl url() -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: int fusionMode -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarSplitStyle -androidx.preference.R$drawable -com.google.android.material.R$id: int accessibility_custom_action_29 -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_toTopOf -io.reactivex.internal.disposables.EmptyDisposable: boolean isDisposed() -android.didikee.donate.R$style: int Widget_AppCompat_Button_Borderless -com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_950 -androidx.recyclerview.R$attr: int font -androidx.constraintlayout.widget.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -okhttp3.CacheControl: okhttp3.CacheControl parse(okhttp3.Headers) -retrofit2.BuiltInConverters$BufferingResponseBodyConverter: java.lang.Object convert(java.lang.Object) -androidx.legacy.coreutils.R$dimen: int notification_small_icon_background_padding -io.reactivex.internal.queue.SpscArrayQueue: int calcElementOffset(long,int) -androidx.appcompat.R$id: int time -okhttp3.FormBody$Builder: okhttp3.FormBody$Builder addEncoded(java.lang.String,java.lang.String) -retrofit2.BuiltInConverters$VoidResponseBodyConverter -com.google.android.material.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.functions.BiPredicate comparer -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintStart_toStartOf -io.reactivex.internal.observers.InnerQueuedObserver: void onComplete() -com.amap.api.fence.GeoFence: int STATUS_LOCFAIL -androidx.appcompat.widget.SearchView: void setIconified(boolean) -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_displayOptions -androidx.constraintlayout.widget.R$attr: int showAsAction -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_7 -com.turingtechnologies.materialscrollbar.R$attr: int autoSizeTextType -com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_43 -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_goIcon -androidx.appcompat.R$styleable: int SwitchCompat_android_thumb -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_removeProfile -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CUSTOM_VALUES -androidx.drawerlayout.R$styleable: int GradientColorItem_android_offset -androidx.appcompat.R$drawable: int abc_scrubber_track_mtrl_alpha -wangdaye.com.geometricweather.R$id: int test_radiobutton_app_button_tint -wangdaye.com.geometricweather.R$id: int light -okhttp3.CipherSuite$1: CipherSuite$1() -wangdaye.com.geometricweather.R$attr: int linearSeamless -io.reactivex.internal.observers.DeferredScalarDisposable: boolean isEmpty() -wangdaye.com.geometricweather.R$attr: int chipSpacingHorizontal -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintTextAppearance -androidx.appcompat.R$styleable: int AppCompatTheme_colorPrimaryDark -okio.InflaterSource: InflaterSource(okio.BufferedSource,java.util.zip.Inflater) -io.reactivex.internal.observers.InnerQueuedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$xml: int widget_day -com.jaredrummler.android.colorpicker.R$styleable: int[] RecyclerView -wangdaye.com.geometricweather.db.entities.LocationEntity: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource getWeatherSource() -androidx.work.impl.background.systemalarm.ConstraintProxy: ConstraintProxy() -com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextAppearanceActive -com.google.android.material.R$id: int dragLeft -wangdaye.com.geometricweather.R$string: int abc_searchview_description_voice -androidx.preference.R$style: int Platform_V25_AppCompat -io.reactivex.Observable: io.reactivex.Observable concatMapSingle(io.reactivex.functions.Function) -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -cyanogenmod.app.BaseLiveLockManagerService$1: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -com.turingtechnologies.materialscrollbar.R$style: int Base_V23_Theme_AppCompat_Light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean getWind() -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: long getTime() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitation -androidx.fragment.R$dimen: int compat_control_corner_material -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1 -wangdaye.com.geometricweather.R$attr: int cpv_alphaChannelVisible -okio.Okio$2: okio.Timeout val$timeout -com.google.android.material.R$id: int honorRequest -androidx.constraintlayout.widget.R$attr: int flow_lastHorizontalStyle -com.google.android.material.R$dimen: R$dimen() -android.didikee.donate.R$attr: int colorControlHighlight -androidx.recyclerview.R$styleable: int ColorStateListItem_alpha -androidx.preference.R$dimen: int abc_text_size_medium_material -com.bumptech.glide.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$attr: int verticalOffset -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -androidx.constraintlayout.widget.R$styleable: int Spinner_android_entries -io.reactivex.Observable: io.reactivex.Observable concatMapMaybe(io.reactivex.functions.Function) -com.bumptech.glide.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.R$attr: int progressIndicatorStyle -cyanogenmod.providers.CMSettings$DelimitedListValidator: boolean validate(java.lang.String) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -androidx.preference.R$dimen: int abc_dropdownitem_text_padding_left -wangdaye.com.geometricweather.R$styleable: int[] PopupWindow -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_CheckBox -androidx.constraintlayout.widget.R$styleable: int Constraint_transitionPathRotate -android.support.v4.os.IResultReceiver$Stub: android.support.v4.os.IResultReceiver asInterface(android.os.IBinder) -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$attr: int closeIconStartPadding -androidx.constraintlayout.widget.R$attr: int itemPadding -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: double GmtOffset -androidx.appcompat.R$drawable: int btn_radio_on_mtrl -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_138 -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.util.AtomicThrowable errors -okhttp3.OkHttpClient: java.net.Proxy proxy() -cyanogenmod.providers.CMSettings$Secure: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button -com.google.android.material.R$attr: int autoSizeStepGranularity -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxySelector(java.net.ProxySelector) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void dispose() -okio.BufferedSink: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver parent -androidx.constraintlayout.widget.R$styleable: int KeyCycle_motionTarget -cyanogenmod.externalviews.KeyguardExternalView$9: cyanogenmod.externalviews.KeyguardExternalView this$0 -com.tencent.bugly.crashreport.common.info.a: java.lang.String d -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.functions.Function,int,io.reactivex.ObservableSource[]) -wangdaye.com.geometricweather.R$drawable: int ic_water_percent -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Primary -com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingBottom -cyanogenmod.content.Intent -androidx.preference.R$string: int summary_collapsed_preference_list -androidx.constraintlayout.widget.R$styleable: int Toolbar_popupTheme -wangdaye.com.geometricweather.R$drawable: int notif_temp_109 -androidx.preference.R$color: int switch_thumb_disabled_material_dark -androidx.appcompat.widget.ActionBarContextView: int getContentHeight() -com.jaredrummler.android.colorpicker.R$color: int error_color_material_dark -cyanogenmod.profiles.BrightnessSettings: boolean mOverride -androidx.constraintlayout.widget.R$id: int action_divider -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay[] halfDays -okhttp3.internal.http2.Http2: java.lang.String frameLog(boolean,int,int,byte,byte) -com.amap.api.location.AMapLocation: void setFloor(java.lang.String) -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_5 -androidx.appcompat.widget.ActivityChooserView$InnerLayout: ActivityChooserView$InnerLayout(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$integer: int mtrl_calendar_year_selector_span -okhttp3.internal.http1.Http1Codec$FixedLengthSource: long bytesRemaining -android.didikee.donate.R$styleable: int MenuItem_android_checked -james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar_Small -okhttp3.HttpUrl: void canonicalize(okio.Buffer,java.lang.String,int,int,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) -cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_ACCESS -wangdaye.com.geometricweather.R$string: int settings_summary_background_free_on -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int weather_fog -com.baidu.location.g.a: a() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeCloudCover(java.lang.Integer) -androidx.work.R$id: int accessibility_action_clickable_span -io.reactivex.Observable: io.reactivex.Observable mergeArray(io.reactivex.ObservableSource[]) -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit KM -james.adaptiveicon.R$drawable: int abc_btn_default_mtrl_shape -com.jaredrummler.android.colorpicker.R$style: int Platform_AppCompat -james.adaptiveicon.R$dimen: int abc_button_inset_horizontal_material -okhttp3.internal.ws.WebSocketWriter: boolean isClient -com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage EN -wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_to_on_mtrl_000 -androidx.appcompat.widget.AppCompatToggleButton -androidx.appcompat.R$id: int buttonPanel -okhttp3.internal.http2.Http2Codec: java.util.List HTTP_2_SKIPPED_RESPONSE_HEADERS -androidx.preference.R$styleable: int MenuView_android_horizontalDivider -retrofit2.Invocation: java.util.List arguments -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWindLevel -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String THEME_ID -androidx.constraintlayout.widget.Barrier -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_registerChangeListener -com.google.android.material.navigation.NavigationView: android.view.Menu getMenu() -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation[] values() -androidx.hilt.lifecycle.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_exitFadeDuration -androidx.dynamicanimation.R$attr: int fontWeight -james.adaptiveicon.R$style: int Widget_AppCompat_Toolbar -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogTheme -retrofit2.http.PartMap -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_26 -wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMark -james.adaptiveicon.R$style: int Theme_AppCompat_Light -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar_Small -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: java.lang.String Unit -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void dispose() -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.preference.R$attr: int windowFixedWidthMinor -com.jaredrummler.android.colorpicker.R$id: int titleDividerNoCustom -wangdaye.com.geometricweather.R$id: int widget_week_icon_3 -com.tencent.bugly.proguard.aq: aq() -io.reactivex.disposables.ReferenceDisposable: void dispose() -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: java.util.concurrent.atomic.AtomicReference observers -com.tencent.bugly.proguard.z: java.io.BufferedReader a(java.io.File) -cyanogenmod.externalviews.KeyguardExternalView$10: cyanogenmod.externalviews.KeyguardExternalView this$0 -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_toTopOf -com.google.android.material.R$styleable: int[] RangeSlider -com.amap.api.location.AMapLocationQualityReport: java.lang.String e -wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_begin -com.amap.api.fence.PoiItem: java.lang.String h -io.reactivex.internal.util.HashMapSupplier: java.util.Map call() -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_bar_up_container -androidx.constraintlayout.widget.R$attr: int switchStyle -wangdaye.com.geometricweather.R$id: int treeIcon -okio.BufferedSource: long readDecimalLong() -cyanogenmod.app.ProfileManager: void resetAll() -wangdaye.com.geometricweather.R$styleable: int Transition_pathMotionArc -cyanogenmod.providers.CMSettings$Secure: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) -androidx.appcompat.R$color: int abc_background_cache_hint_selector_material_dark -wangdaye.com.geometricweather.R$drawable: int abc_vector_test -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light -androidx.viewpager.R$layout: R$layout() -com.google.android.material.R$attr: int panelBackground -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Chip -com.xw.repo.bubbleseekbar.R$color: int abc_btn_colored_text_material -androidx.appcompat.widget.AppCompatImageButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -cyanogenmod.themes.ThemeManager: void onClientDestroyed(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -okhttp3.internal.http.HttpCodec: void flushRequest() -androidx.constraintlayout.widget.R$attr: int actionModePasteDrawable -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float so2 -androidx.loader.R$styleable: int FontFamilyFont_android_font -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCopyDrawable -okhttp3.internal.ws.RealWebSocket$Streams: okio.BufferedSink sink -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: void onActive() -com.jaredrummler.android.colorpicker.R$id: int wrap_content -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline6 -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light_focused -androidx.appcompat.resources.R$drawable: int notification_icon_background -androidx.appcompat.widget.Toolbar: void setTitleMarginBottom(int) -wangdaye.com.geometricweather.R$styleable: int TextAppearance_textLocale -androidx.loader.R$style: int Widget_Compat_NotificationActionContainer -com.turingtechnologies.materialscrollbar.R$attr: int actionBarStyle -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex today -io.reactivex.internal.util.VolatileSizeArrayList: java.util.ListIterator listIterator() -androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_android_alpha -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType ALIYUN -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX -wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newDevSession(android.content.Context,java.lang.String) -androidx.recyclerview.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit valueOf(java.lang.String) -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean offer(java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Pm10 -wangdaye.com.geometricweather.R$attr: int bsb_touch_to_seek -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void dispose() -wangdaye.com.geometricweather.R$attr: int radius_to -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void dispose() -okio.Options: okio.ByteString get(int) -com.turingtechnologies.materialscrollbar.R$color: int design_error -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: double val -james.adaptiveicon.R$styleable: int PopupWindow_overlapAnchor -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_14 -androidx.preference.R$layout: int abc_action_mode_bar -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_motionProgress -retrofit2.ParameterHandler$Part: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.R$id: int item_trend_hourly -com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog -com.tencent.bugly.a: void onServerStrategyChanged(com.tencent.bugly.crashreport.common.strategy.StrategyBean) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Object rainSnowLimitRaw -wangdaye.com.geometricweather.R$string: int grass -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: long serialVersionUID -androidx.vectordrawable.R$styleable: int GradientColor_android_centerColor -androidx.legacy.coreutils.R$id: int line3 -com.amap.api.location.AMapLocation: java.lang.String l(com.amap.api.location.AMapLocation,java.lang.String) -wangdaye.com.geometricweather.R$attr: int selectable -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchTextAppearance -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: boolean isDisposed() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_CHACHA20_POLY1305_SHA256 -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onStop() -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Dialog -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TabLayout_Colored -androidx.viewpager2.R$id: int action_image -okhttp3.logging.LoggingEventListener: void connectionAcquired(okhttp3.Call,okhttp3.Connection) -cyanogenmod.app.IProfileManager$Stub$Proxy: IProfileManager$Stub$Proxy(android.os.IBinder) -com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context,android.util.AttributeSet,int) -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -james.adaptiveicon.R$attr: int showDividers -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Tooltip -com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorCornerRadius(int) -com.google.android.material.R$dimen: int tooltip_y_offset_non_touch -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void slideLockscreenIn() -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDataConnectionState(boolean) -com.google.android.gms.common.api.internal.zabi -cyanogenmod.app.CustomTile$ExpandedStyle: void internalSetExpandedItems(java.util.ArrayList) -androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_android_color -okhttp3.internal.cache2.Relay$RelaySource: okhttp3.internal.cache2.Relay this$0 -com.google.android.material.R$styleable: int Toolbar_titleMargins -okhttp3.internal.connection.RouteSelector: java.lang.String getHostString(java.net.InetSocketAddress) -com.google.gson.stream.JsonReader: void endArray() -android.didikee.donate.R$styleable: int ActionMode_background -okhttp3.CacheControl: java.lang.String toString() -com.google.gson.stream.JsonReader: boolean isLiteral(char) -cyanogenmod.app.Profile: void setDozeMode(int) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Info -androidx.constraintlayout.widget.R$attr: int drawerArrowStyle -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dark -com.jaredrummler.android.colorpicker.R$dimen: int compat_button_inset_horizontal_material -androidx.swiperefreshlayout.widget.SwipeRefreshLayout$SavedState -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle -com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialScrollBar -io.reactivex.internal.observers.DeferredScalarDisposable: DeferredScalarDisposable(io.reactivex.Observer) -androidx.customview.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_light -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getCO() -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getCheckedIcon() -com.amap.api.fence.DistrictItem: void setCitycode(java.lang.String) -com.google.android.material.R$attr: int contrast -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -androidx.appcompat.widget.SearchView: java.lang.CharSequence getQuery() -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: AccuDailyResult$DailyForecasts$Night$Snow() -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dark -androidx.appcompat.widget.ActivityChooserView: void setDefaultActionButtonContentDescription(int) -wangdaye.com.geometricweather.R$attr: int enforceMaterialTheme -com.google.android.material.button.MaterialButton: void setStrokeWidthResource(int) -androidx.lifecycle.FullLifecycleObserver: void onPause(androidx.lifecycle.LifecycleOwner) -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_switchTextOff -com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$id: int custom -androidx.appcompat.resources.R$layout: int notification_action_tombstone -androidx.loader.R$attr: int fontProviderAuthority -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.reflect.Type getGenericComponentType() -androidx.appcompat.widget.ActionBarContextView: void setTitleOptional(boolean) -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDefaultSmsSub(int) -okio.Buffer: okio.Buffer writeHexadecimalUnsignedLong(long) -com.tencent.bugly.proguard.a: java.lang.String a(java.util.ArrayList) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_elevation_material -com.tencent.bugly.proguard.z: byte[] a(android.os.Parcelable) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_DAY_VALIDATOR -com.google.android.material.R$styleable: int Transform_android_translationZ -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: int UnitType -com.google.android.material.R$style: int Widget_AppCompat_Light_ListView_DropDown -androidx.work.R$id: int accessibility_custom_action_6 -cyanogenmod.providers.CMSettings$Secure: java.lang.String ENABLED_EVENT_LIVE_LOCKS_KEY -androidx.viewpager.R$dimen: int notification_large_icon_width -james.adaptiveicon.R$styleable: int AppCompatTheme_checkboxStyle -wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_container -android.didikee.donate.R$style: int TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.settings.dialogs.MinimalIconDialog: MinimalIconDialog() -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.R$attr: int yearStyle -androidx.appcompat.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableTop -com.google.android.material.R$color: int bright_foreground_inverse_material_light -androidx.work.R$dimen: int notification_large_icon_width -com.google.android.material.R$bool: R$bool() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul12H -com.google.android.material.R$styleable: int AppCompatTheme_actionModeCopyDrawable -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress -com.github.rahatarmanahmed.cpv.CircularProgressView$6: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontStyle -androidx.constraintlayout.motion.widget.MotionLayout: int getStartState() -okhttp3.Cache: Cache(java.io.File,long) -com.google.android.material.R$layout: int design_bottom_navigation_item -com.google.android.material.R$style: int Widget_MaterialComponents_Button_OutlinedButton -com.google.android.material.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox -okio.RealBufferedSource -cyanogenmod.profiles.ConnectionSettings$1: cyanogenmod.profiles.ConnectionSettings[] newArray(int) -androidx.preference.R$attr: int buttonBarNeutralButtonStyle -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_LOW_POWER -wangdaye.com.geometricweather.R$attr: int singleLineTitle -com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getStrokeColor() -com.baidu.location.e.l$b: int d(com.baidu.location.e.l$b) -com.tencent.bugly.crashreport.common.info.a: java.lang.String aa -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstHorizontalStyle -com.amap.api.location.AMapLocation: java.lang.String getCityCode() -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -james.adaptiveicon.R$drawable: int abc_popup_background_mtrl_mult -androidx.hilt.R$id: int accessibility_custom_action_3 -com.google.gson.internal.JsonReaderInternalAccess: void promoteNameToValue(com.google.gson.stream.JsonReader) -androidx.recyclerview.widget.RecyclerView: void addOnItemTouchListener(androidx.recyclerview.widget.RecyclerView$OnItemTouchListener) -cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener: void onDetachedFromWindow() -com.google.android.material.appbar.AppBarLayout$Behavior -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_overlay -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_percent -com.google.android.material.R$styleable: int AppCompatTheme_android_windowIsFloating -cyanogenmod.content.Intent: Intent() -wangdaye.com.geometricweather.R$drawable: int notif_temp_86 -com.jaredrummler.android.colorpicker.ColorPickerView: void setColor(int) -okio.AsyncTimeout: boolean exit() -com.google.android.material.R$attr: int contentInsetLeft -androidx.lifecycle.extensions.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: java.util.List timelapsItems -com.google.android.material.R$styleable: int[] MaterialCheckBox -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColor -wangdaye.com.geometricweather.R$drawable: int preference_list_divider_material -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setBackgroundColorEnd(int) -wangdaye.com.geometricweather.R$string: int feedback_click_toggle -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_weight -com.google.android.material.R$attr: int animate_relativeTo -wangdaye.com.geometricweather.R$array: int dark_modes -com.jaredrummler.android.colorpicker.R$attr -com.amap.api.location.AMapLocation: void setBuildingId(java.lang.String) -io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function,boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX -androidx.constraintlayout.widget.R$color: int foreground_material_light -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property HourlyForecast -cyanogenmod.themes.ThemeManager$1: cyanogenmod.themes.ThemeManager this$0 -cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getProfile(android.os.ParcelUuid) -okhttp3.internal.ws.RealWebSocket: java.util.Random random -com.turingtechnologies.materialscrollbar.R$style: int Base_DialogWindowTitle_AppCompat -com.google.android.gms.internal.location.zzbc -com.google.android.gms.signin.internal.zam: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void drain() -com.google.android.material.internal.NavigationMenuView: int getWindowAnimations() -com.amap.api.location.AMapLocationClientOption: long b -cyanogenmod.profiles.ConnectionSettings: void processOverride(android.content.Context) -okhttp3.internal.http2.Http2Stream$FramingSink -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_1 -james.adaptiveicon.R$attr: int titleMarginTop -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionMenuTextColor -io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: boolean isDisposed() -com.jaredrummler.android.colorpicker.R$styleable: int Preference_icon -cyanogenmod.weather.CMWeatherManager$RequestStatus: int SUBMITTED_TOO_SOON -com.xw.repo.bubbleseekbar.R$styleable: int[] ButtonBarLayout -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: ObservableMergeWithMaybe$MergeWithObserver(io.reactivex.Observer) -com.turingtechnologies.materialscrollbar.R$attr: int switchMinWidth -io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean checkTerminated(boolean,boolean,io.reactivex.Observer,boolean) -androidx.preference.R$id: int accessibility_custom_action_29 -androidx.constraintlayout.widget.R$id: int staticPostLayout -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.R$animator: int weather_cloudy_2 -james.adaptiveicon.R$style: int AlertDialog_AppCompat_Light -androidx.loader.R$dimen: int compat_button_inset_horizontal_material -wangdaye.com.geometricweather.R$id: int search_edit_frame -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthFocusedResource(int) -com.google.android.material.R$styleable: int Layout_layout_constraintWidth_percent -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display1 -androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context) -com.google.android.material.R$attr: int layout_constraintHeight_max -wangdaye.com.geometricweather.R$attr: int shrinkMotionSpec -wangdaye.com.geometricweather.R$id: int mtrl_picker_header -androidx.fragment.R$drawable: int notification_template_icon_bg -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.Callable other -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: RxJava2CallAdapterFactory(io.reactivex.Scheduler,boolean) -com.google.android.material.R$style: int TestStyleWithThemeLineHeightAttribute -androidx.core.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.R$styleable: int SearchView_suggestionRowLayout -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixText -androidx.vectordrawable.animated.R$id: int notification_main_column -androidx.loader.R$styleable: int FontFamilyFont_android_fontWeight -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadPong(okio.ByteString) -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_color -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabStyle -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectionSpecs(java.util.List) -cyanogenmod.app.ProfileManager: android.app.NotificationGroup getNotificationGroup(java.util.UUID) -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getHint() -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_dither -io.reactivex.Observable: io.reactivex.Observable unsafeCreate(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog -okhttp3.internal.cache2.Relay: okhttp3.internal.cache2.Relay edit(java.io.File,okio.Source,okio.ByteString,long) -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level HEADERS -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getDensityVoice(android.content.Context,float) -androidx.hilt.R$drawable: R$drawable() -wangdaye.com.geometricweather.R$id: int decelerateAndComplete -io.reactivex.Observable: io.reactivex.Observable doAfterTerminate(io.reactivex.functions.Action) -cyanogenmod.hardware.ICMHardwareService: boolean requireAdaptiveBacklightForSunlightEnhancement() -androidx.core.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: int UnitType -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnt -okhttp3.Route: java.net.Proxy proxy -wangdaye.com.geometricweather.R$string: int precipitation_heavy -com.xw.repo.bubbleseekbar.R$attr: int closeIcon -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense -okhttp3.internal.ws.WebSocketReader: WebSocketReader(boolean,okio.BufferedSource,okhttp3.internal.ws.WebSocketReader$FrameCallback) -android.didikee.donate.R$dimen: int hint_pressed_alpha_material_dark -android.didikee.donate.R$styleable: int SwitchCompat_thumbTintMode -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -wangdaye.com.geometricweather.R$drawable: int abc_list_divider_mtrl_alpha -androidx.appcompat.R$styleable: int MenuItem_android_visible -com.amap.api.fence.GeoFenceListener -com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_max -com.google.android.material.R$attr: int paddingTopNoTitle -androidx.preference.R$id: int accessibility_custom_action_16 -com.turingtechnologies.materialscrollbar.R$color: int material_grey_100 -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_HAIL -wangdaye.com.geometricweather.R$layout: int select_dialog_singlechoice_material -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_material -com.amap.api.location.APSService: void onDestroy() -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_textOn -okio.GzipSink: void write(okio.Buffer,long) -androidx.appcompat.R$drawable: int abc_textfield_search_default_mtrl_alpha -com.tencent.bugly.proguard.ar: java.lang.String b -com.tencent.bugly.crashreport.crash.e: com.tencent.bugly.crashreport.crash.CrashDetailBean b(java.lang.Thread,java.lang.Throwable,boolean,java.lang.String,byte[]) -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: io.reactivex.processors.FlowableProcessor processor -androidx.core.R$styleable: int GradientColor_android_startColor -android.didikee.donate.R$bool: int abc_config_actionMenuItemAllCaps -com.google.android.material.chip.Chip: void setChipText(java.lang.CharSequence) -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_visible -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type CONSTANT -androidx.customview.R$styleable: int ColorStateListItem_android_alpha -com.google.android.material.R$string: int abc_searchview_description_submit -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX() -com.google.android.material.R$dimen: int mtrl_fab_translation_z_pressed -okhttp3.internal.connection.RealConnection$1: void close() -okhttp3.internal.cache.DiskLruCache: java.lang.String CLEAN -com.google.android.material.R$styleable: int Layout_maxWidth -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onComplete() -androidx.lifecycle.R: R() -wangdaye.com.geometricweather.main.dialogs.LocationHelpDialog: LocationHelpDialog() -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Snackbar_FullWidth -com.xw.repo.bubbleseekbar.R$attr: int homeLayout -com.google.android.material.R$styleable: int ConstraintSet_pivotAnchor -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SearchView -com.tencent.bugly.proguard.j: void a(boolean,int) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setTextColor(int) -com.google.android.material.textfield.TextInputLayout: void setErrorTextAppearance(int) -okhttp3.internal.http.HttpHeaders: long stringToLong(java.lang.String) -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: long serialVersionUID -wangdaye.com.geometricweather.R$string: int material_slider_range_start -androidx.preference.R$style: int Preference_SwitchPreferenceCompat -wangdaye.com.geometricweather.R$style: int EmptyTheme -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver parent -com.google.android.material.R$string: int mtrl_picker_text_input_year_abbr -okhttp3.MediaType: java.lang.String TOKEN -wangdaye.com.geometricweather.db.entities.AlertEntity: int color -okhttp3.Cache: long maxSize() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_10 -com.google.android.material.R$styleable: int AppCompatTheme_controlBackground -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat -com.tencent.bugly.crashreport.crash.e: java.lang.Thread$UncaughtExceptionHandler f -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.R$drawable: int notif_temp_101 -wangdaye.com.geometricweather.R$dimen: int cpv_dialog_preview_height -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState -com.amap.api.fence.PoiItem: java.lang.String getAdname() -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog -androidx.constraintlayout.widget.R$color: int tooltip_background_light -android.support.v4.os.ResultReceiver$1: android.support.v4.os.ResultReceiver[] newArray(int) -com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabView -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation precipitation -wangdaye.com.geometricweather.R$drawable: int notif_temp_111 -wangdaye.com.geometricweather.R$id: int spline -okhttp3.internal.http2.Http2Connection$7: okhttp3.internal.http2.ErrorCode val$errorCode -androidx.hilt.work.R$string -android.didikee.donate.R$attr: int searchIcon -okio.Buffer$UnsafeCursor: long resizeBuffer(long) -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_exitFadeDuration -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onError(java.lang.Throwable) -androidx.vectordrawable.R$attr: int alpha -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: int bufferSize -okio.Buffer: java.lang.String toString() -com.turingtechnologies.materialscrollbar.R$color: int tooltip_background_light -com.bumptech.glide.GeneratedAppGlideModule -okio.GzipSource: void consumeHeader() -com.google.android.material.R$style: int Widget_Design_BottomSheet_Modal -androidx.cardview.widget.CardView: android.content.res.ColorStateList getCardBackgroundColor() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedWidthMajor -android.didikee.donate.R$style: int Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.R$array: int air_quality_co_units -wangdaye.com.geometricweather.R$drawable: int notif_temp_11 -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showAlphaSlider -androidx.preference.Preference$BaseSavedState: android.os.Parcelable$Creator CREATOR -androidx.lifecycle.MediatorLiveData$Source -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintEnd_toEndOf -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.Observer downstream -retrofit2.Utils: java.lang.RuntimeException parameterError(java.lang.reflect.Method,java.lang.Throwable,int,java.lang.String,java.lang.Object[]) -james.adaptiveicon.R$color: int abc_background_cache_hint_selector_material_light -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActivityChooserView -com.google.android.gms.common.SignInButton: void setOnClickListener(android.view.View$OnClickListener) -com.xw.repo.bubbleseekbar.R$id: int line3 -com.google.android.material.R$style: int Animation_AppCompat_DropDownUp -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_chainUseRtl -androidx.dynamicanimation.R$id: int normal -androidx.appcompat.R$styleable: int ActionBar_elevation -androidx.lifecycle.extensions.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.R$styleable: int OnSwipe_moveWhenScrollAtTop -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2 -com.google.android.material.R$attr: int tooltipFrameBackground -com.tencent.bugly.BuglyStrategy: boolean h -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onSuccess(java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableTop -androidx.transition.R$dimen: int notification_subtext_size -androidx.preference.R$string: int copy -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_left_mtrl_light -android.didikee.donate.R$color: int dim_foreground_material_light -com.turingtechnologies.materialscrollbar.R$attr: int windowFixedWidthMajor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getEn_US() -wangdaye.com.geometricweather.R$id: int activity_allergen_recyclerView -com.google.android.material.R$attr: int listPreferredItemPaddingStart -com.turingtechnologies.materialscrollbar.R$styleable: int ActivityChooserView_initialActivityCount -okhttp3.FormBody: java.lang.String encodedName(int) -wangdaye.com.geometricweather.R$style: int Base_AlertDialog_AppCompat -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_MinWidth_Bridge -com.google.android.material.R$style: int Widget_AppCompat_ListView_Menu -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region Region -wangdaye.com.geometricweather.R$color: int highlighted_text_material_light -com.google.android.material.R$style: int Animation_AppCompat_Tooltip -androidx.preference.R$style: int TextAppearance_Compat_Notification_Info -io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) -androidx.appcompat.widget.SwitchCompat: java.lang.CharSequence getTextOn() -james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnSettingsClickIntent(android.content.Intent) -com.google.android.material.R$styleable: int Toolbar_logo -wangdaye.com.geometricweather.background.service.TileService -com.google.android.material.R$id: int info -com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyle -com.turingtechnologies.materialscrollbar.R$color: int primary_dark_material_dark -androidx.preference.R$style: int Widget_AppCompat_RatingBar -com.jaredrummler.android.colorpicker.R$styleable: int Preference_summary -com.google.android.material.R$styleable: int AppCompatTheme_actionModeSplitBackground -com.xw.repo.bubbleseekbar.R$id: int notification_main_column_container -com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler t -com.google.android.material.R$styleable: int KeyTrigger_triggerSlack -wangdaye.com.geometricweather.R$attr: int overlapAnchor -com.turingtechnologies.materialscrollbar.R$attr: int viewInflaterClass -wangdaye.com.geometricweather.R$string: int material_minute_suffix -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver) -com.jaredrummler.android.colorpicker.R$attr: int panelBackground -androidx.legacy.coreutils.R$attr -androidx.recyclerview.R$id: int info -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setLocation(android.location.Location) -cyanogenmod.profiles.ConnectionSettings: void setSubId(int) -com.xw.repo.bubbleseekbar.R$attr: int dividerHorizontal -androidx.appcompat.R$dimen: int tooltip_vertical_padding -wangdaye.com.geometricweather.R$dimen: int widget_little_weather_icon_size -com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$style: int Base_V7_Widget_AppCompat_Toolbar -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_logo -com.bumptech.glide.integration.okhttp.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -okhttp3.WebSocketListener: void onClosed(okhttp3.WebSocket,int,java.lang.String) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$styleable: int[] BackgroundStyle -androidx.preference.R$attr: int paddingBottomNoButtons -cyanogenmod.profiles.StreamSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingBottom -android.didikee.donate.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder setType(okhttp3.MediaType) -com.google.android.material.R$styleable: int AppBarLayout_android_background -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerError(java.lang.Throwable) -com.google.android.material.R$attr: int sizePercent -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_minHeight -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets -androidx.recyclerview.R$styleable: int FontFamily_fontProviderAuthority -androidx.preference.R$styleable: int AppCompatTheme_radioButtonStyle -com.google.gson.stream.JsonReader$1 -wangdaye.com.geometricweather.R$id: int tag_icon_bottom -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_percent -com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context) -com.google.android.material.R$attr: int selectableItemBackground -com.google.android.material.R$color: int mtrl_btn_text_btn_bg_color_selector -com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit[] values() -org.greenrobot.greendao.database.DatabaseOpenHelper: void onCreate(org.greenrobot.greendao.database.Database) -wangdaye.com.geometricweather.db.entities.LocationEntity: float getLongitude() -wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_strokeWidth -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX) -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HIGH_TOUCH_SENSITIVITY_ENABLE_VALIDATOR -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_bottom_padding -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: void run() -com.tencent.bugly.proguard.s: java.net.HttpURLConnection a(java.lang.String,java.lang.String) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ProgressBar -androidx.preference.R$color: int primary_dark_material_dark -androidx.preference.R$id: int title -retrofit2.Utils: okhttp3.ResponseBody buffer(okhttp3.ResponseBody) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginStart -com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableItem -wangdaye.com.geometricweather.R$styleable: int Chip_android_checkable -androidx.preference.R$dimen: int abc_dialog_padding_material -android.didikee.donate.R$attr: int editTextBackground -wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_weatherContainer -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_vertical_padding -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String ragweedDescription -com.tencent.bugly.crashreport.crash.c: boolean d -cyanogenmod.providers.ThemesContract$MixnMatchColumns: android.net.Uri CONTENT_URI -androidx.lifecycle.GeneratedAdapter: void callMethods(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,boolean,androidx.lifecycle.MethodCallsLogger) -okio.AsyncTimeout$1: void close() -androidx.constraintlayout.widget.R$color: int switch_thumb_material_light -androidx.preference.R$styleable: int Toolbar_contentInsetStartWithNavigation -okhttp3.internal.ws.RealWebSocket$1: void run() -androidx.lifecycle.SavedStateHandle -androidx.viewpager.R$styleable: int[] FontFamily -com.jaredrummler.android.colorpicker.R$id: int buttonPanel -android.didikee.donate.R$styleable: int ActionMenuItemView_android_minWidth -androidx.preference.R$dimen: int abc_dialog_fixed_height_major -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: RequestBuilder$ContentTypeOverridingRequestBody(okhttp3.RequestBody,okhttp3.MediaType) -com.amap.api.fence.GeoFence: java.util.List h -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadMessage(java.lang.String) -okio.BufferedSource: int read(byte[],int,int) -cyanogenmod.weatherservice.ServiceRequestResult: int describeContents() -androidx.core.R$styleable: int FontFamilyFont_fontWeight -cyanogenmod.app.BaseLiveLockManagerService$1: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_text_padding_right -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSwoopDuration -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_LOCKSCREEN -androidx.vectordrawable.R$id: int line1 -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleTint -androidx.constraintlayout.widget.R$styleable: int PropertySet_motionProgress -wangdaye.com.geometricweather.R$string: int feedback_search_location -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: java.util.Date Set -cyanogenmod.app.suggest.IAppSuggestManager$Stub: java.lang.String DESCRIPTOR -cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_GAMMA_CALIBRATION -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_textStartPadding -androidx.lifecycle.LiveData: boolean mDispatchingValue -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitationProbability -wangdaye.com.geometricweather.R$color: int abc_secondary_text_material_light -androidx.fragment.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitation -cyanogenmod.app.CustomTile$ExpandedStyle: void setBuilder(cyanogenmod.app.CustomTile$Builder) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorContentDescription -androidx.constraintlayout.widget.R$attr: int trackTintMode -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Caption -androidx.transition.R$styleable: int[] FontFamilyFont -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_bias -cyanogenmod.app.CustomTile$GridExpandedStyle -androidx.recyclerview.R$layout: int notification_action -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListMenuView -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedLevel -wangdaye.com.geometricweather.R$color: int mtrl_filled_icon_tint -androidx.preference.R$styleable: int SwitchPreferenceCompat_summaryOff -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_9 -com.google.gson.stream.JsonReader: void checkLenient() -com.bumptech.glide.load.resource.gif.GifFrameLoader: void setOnEveryFrameReadyListener(com.bumptech.glide.load.resource.gif.GifFrameLoader$OnEveryFrameListener) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void cancelAllBut(int) -androidx.dynamicanimation.R$style: int Widget_Compat_NotificationActionContainer -com.google.android.material.R$styleable: int TextAppearance_android_typeface -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_subtitle -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -androidx.hilt.lifecycle.R$drawable: int notification_icon_background -androidx.preference.R$styleable: int SwitchPreferenceCompat_android_switchTextOn -androidx.core.app.NotificationCompatSideChannelService: NotificationCompatSideChannelService() -android.didikee.donate.R$styleable: int DrawerArrowToggle_drawableSize -james.adaptiveicon.R$styleable: int CompoundButton_buttonTintMode -cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: WeatherContract$WeatherColumns$TempUnit() -wangdaye.com.geometricweather.R$attr: int attributeName -com.tencent.bugly.proguard.u: int u -androidx.appcompat.R$id: int accessibility_custom_action_14 -com.google.android.material.bottomappbar.BottomAppBar: float getFabCradleRoundedCornerRadius() -com.google.android.material.chip.Chip: com.google.android.material.animation.MotionSpec getHideMotionSpec() -wangdaye.com.geometricweather.R$id: int widget_week_week_2 -android.didikee.donate.R$id: int action_container -com.google.android.material.chip.Chip: void setChipIconVisible(boolean) -com.jaredrummler.android.colorpicker.R$attr: int maxButtonHeight -okio.AsyncTimeout: okio.AsyncTimeout head -com.tencent.bugly.crashreport.a: java.lang.String getLogFromNative() -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerError(java.lang.Throwable) -wangdaye.com.geometricweather.R$color: int design_fab_shadow_end_color -cyanogenmod.hardware.ICMHardwareService$Stub: cyanogenmod.hardware.ICMHardwareService asInterface(android.os.IBinder) -com.tencent.bugly.crashreport.crash.jni.b: com.tencent.bugly.crashreport.crash.CrashDetailBean a(android.content.Context,java.lang.String,com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler) -com.google.android.material.R$styleable: int ConstraintSet_pathMotionArc -androidx.appcompat.widget.AppCompatImageButton: void setImageResource(int) -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_2 -com.jaredrummler.android.colorpicker.R$attr: int maxWidth -okhttp3.internal.ws.RealWebSocket: java.util.concurrent.ScheduledExecutorService executor -com.turingtechnologies.materialscrollbar.R$attr: int scrimBackground -androidx.work.R$id: int accessibility_custom_action_3 -cyanogenmod.app.IPartnerInterface$Stub$Proxy: void reboot() -com.tencent.bugly.crashreport.crash.anr.b: com.tencent.bugly.crashreport.common.info.a d -okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String etag -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_black -wangdaye.com.geometricweather.R$drawable: int abc_action_bar_item_background_material -com.google.android.material.R$styleable: int LinearLayoutCompat_android_gravity -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(long) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_cascading_menus_min_smallest_width -wangdaye.com.geometricweather.R$attr: int tabIndicatorFullWidth -cyanogenmod.externalviews.KeyguardExternalView: void unregisterKeyguardExternalViewCallback(cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks) -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy[] values() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String value -androidx.activity.R$layout: R$layout() -com.google.android.material.R$styleable: int FloatingActionButton_backgroundTintMode -androidx.constraintlayout.widget.R$color: int abc_primary_text_material_light -com.autonavi.aps.amapapi.model.AMapLocationServer: boolean e -com.tencent.bugly.crashreport.crash.c -wangdaye.com.geometricweather.R$id: int submenuarrow -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String NO_RINGTONE -okhttp3.internal.http2.Http2Stream$FramingSink: boolean finished -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintEnd_toStartOf -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache create(okhttp3.internal.io.FileSystem,java.io.File,int,int,long) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.internal.util.AtomicThrowable error -androidx.recyclerview.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Blue -com.google.android.gms.internal.location.zzl -com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusTopStart -android.didikee.donate.R$style: int TextAppearance_AppCompat_Medium -okio.HashingSink: javax.crypto.Mac mac -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd -androidx.transition.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Borderless -androidx.recyclerview.R$id: int accessibility_custom_action_7 -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -com.google.android.material.R$styleable: int ProgressIndicator_minHideDelay -com.google.android.material.R$drawable: int ic_clock_black_24dp -wangdaye.com.geometricweather.R$styleable: int Preference_defaultValue -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_pivotY -androidx.preference.R$id: int spinner -com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void cancel() -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mVersionSystemProperty -james.adaptiveicon.R$attr: int buttonBarStyle -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast -androidx.preference.R$styleable: int AppCompatTheme_tooltipForegroundColor -okhttp3.internal.ws.RealWebSocket$PingRunnable: RealWebSocket$PingRunnable(okhttp3.internal.ws.RealWebSocket) -com.bumptech.glide.integration.okhttp.R$layout: R$layout() -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -cyanogenmod.library.R$id: int experience -com.xw.repo.bubbleseekbar.R$drawable -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: AccuAlertResult$Area$LastAction() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date getUpdateDate() -com.jaredrummler.android.colorpicker.R$attr: int popupMenuStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial() -com.google.android.material.R$styleable: int ConstraintSet_transitionPathRotate -com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getChipIcon() -com.turingtechnologies.materialscrollbar.R$color: int foreground_material_dark -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_transitionEasing -wangdaye.com.geometricweather.R$id: int packed -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_WEATHER -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: KeyguardExternalViewProviderService$Provider$ProviderImpl$9(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,int,int,int,int,boolean,android.graphics.Rect) -com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: void setInternalAutoHideListener(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX getWeather() -com.google.android.material.R$drawable: int abc_spinner_textfield_background_material -androidx.preference.R$style: int Base_V28_Theme_AppCompat -com.google.android.material.R$styleable: int AppCompatTheme_panelMenuListWidth -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCity -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver observer -androidx.appcompat.R$dimen: int abc_dialog_padding_material -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String weatherText -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: AccuDailyResult$DailyForecasts$Night$Rain() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setForecastDaily(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_REVERSE_LOOKUP_VALIDATOR -wangdaye.com.geometricweather.R$styleable: int SearchView_searchIcon -com.jaredrummler.android.colorpicker.R$attr: int actionModeFindDrawable -com.bumptech.glide.Priority: com.bumptech.glide.Priority NORMAL -com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_950 -androidx.preference.R$drawable: int tooltip_frame_light -androidx.preference.R$drawable: R$drawable() -cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_LOW -okio.Options: int intCount(okio.Buffer) -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_height_minor -james.adaptiveicon.R$layout: int notification_action -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -okio.SegmentPool: void recycle(okio.Segment) -com.jaredrummler.android.colorpicker.R$id: int text2 -androidx.lifecycle.service.R -androidx.preference.R$dimen: int abc_alert_dialog_button_bar_height -com.jaredrummler.android.colorpicker.R$layout: int preference_recyclerview -com.amap.api.location.AMapLocationQualityReport: void setNetUseTime(long) -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_PING -androidx.preference.R$layout: int preference_category -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: void setValue(java.lang.String) -androidx.preference.R$attr: int track -com.xw.repo.bubbleseekbar.R$attr: int backgroundStacked -androidx.loader.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String tempMin -com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$anim: int abc_slide_in_top -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -cyanogenmod.util.ColorUtils: float interp(int,float) -org.greenrobot.greendao.AbstractDaoSession: void delete(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String MinuteText -wangdaye.com.geometricweather.db.entities.DailyEntityDao: DailyEntityDao(org.greenrobot.greendao.internal.DaoConfig) -okio.Buffer: byte readByte() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String content -wangdaye.com.geometricweather.R$string: int background_information -androidx.appcompat.R$styleable: int StateListDrawable_android_enterFadeDuration -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.LocationEntity,int) -james.adaptiveicon.R$attr: int listPreferredItemHeightLarge -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_107 -wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress_width -wangdaye.com.geometricweather.R$string: int key_notification_custom_color -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleTextColor -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableRightCompat -wangdaye.com.geometricweather.R$id: int design_bottom_sheet -com.tencent.bugly.proguard.y: java.lang.String h -com.bumptech.glide.R$styleable: int FontFamilyFont_font -com.bumptech.glide.R$dimen: int notification_content_margin_start -com.google.android.material.R$drawable: int ic_mtrl_chip_close_circle -wangdaye.com.geometricweather.R$styleable: int SearchView_queryBackground -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_reverseLayout -retrofit2.ParameterHandler$QueryMap: java.lang.reflect.Method method -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: ObservableReplay$SizeBoundReplayBuffer(int) -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: ExecutorScheduler$DelayedRunnable(java.lang.Runnable) -androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMark -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyleSmall -cyanogenmod.externalviews.KeyguardExternalView: java.lang.String TAG -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric Metric -androidx.lifecycle.extensions.R$anim: int fragment_close_exit -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowMinWidthMinor -james.adaptiveicon.R$id: int none -androidx.fragment.R$dimen: int compat_notification_large_icon_max_height -android.didikee.donate.R$id: int src_over -cyanogenmod.app.Profile: void getXmlString(java.lang.StringBuilder,android.content.Context) -cyanogenmod.providers.CMSettings: java.lang.String ACTION_DATA_USAGE -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_PLAY_QUEUE_VALIDATOR -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() -com.bumptech.glide.R$styleable: int FontFamilyFont_ttcIndex -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: android.graphics.Matrix getLocalMatrix() -com.google.android.material.R$styleable: int Transform_android_rotationX -james.adaptiveicon.R$layout: int notification_template_custom_big -androidx.appcompat.R$attr: int alertDialogCenterButtons -com.google.android.material.R$bool: int mtrl_btn_textappearance_all_caps -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: long time -androidx.recyclerview.R$drawable: int notification_bg -com.jaredrummler.android.colorpicker.R$attr: int alphabeticModifiers -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Long getId() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -androidx.preference.R$style: int Widget_AppCompat_ActivityChooserView -androidx.viewpager.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$id: int activity_weather_daily_container -android.didikee.donate.R$dimen: int abc_action_bar_content_inset_material -com.google.android.material.floatingactionbutton.FloatingActionButton: boolean getUseCompatPadding() -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: int nameId -io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Action) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitationDuration -androidx.customview.R$color: int ripple_material_light -androidx.constraintlayout.widget.R$attr: int actionModeCloseDrawable -androidx.preference.R$attr: int editTextBackground -okhttp3.internal.ws.WebSocketProtocol: java.lang.String closeCodeExceptionMessage(int) -wangdaye.com.geometricweather.R$color: int test_mtrl_calendar_day -com.jaredrummler.android.colorpicker.R$id: int submit_area -androidx.drawerlayout.R$styleable: int[] FontFamilyFont -com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_android_button -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: AccuDailyResult$DailyForecasts$Night$Wind$Direction() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_17 -com.google.android.material.R$attr: int cornerFamily -com.google.android.material.R$attr: int thumbTint -androidx.constraintlayout.widget.R$attr: int listChoiceBackgroundIndicator -com.google.android.material.R$dimen: int design_fab_translation_z_pressed -com.xw.repo.BubbleSeekBar: float getMax() -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_overflow_material -androidx.appcompat.widget.Toolbar: void setTitleMarginEnd(int) -okio.RealBufferedSink: okio.Sink sink -com.turingtechnologies.materialscrollbar.R$dimen: int abc_select_dialog_padding_start_material -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_navigationIcon -com.jaredrummler.android.colorpicker.R$attr: int colorAccent -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionBar -com.google.gson.internal.LinkedTreeMap: boolean containsKey(java.lang.Object) -androidx.preference.R$attr: int toolbarNavigationButtonStyle -androidx.preference.R$style: int Theme_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$color: int colorLevel_2 -wangdaye.com.geometricweather.R$style: int Widget_Design_BottomSheet_Modal -androidx.lifecycle.AndroidViewModel: AndroidViewModel(android.app.Application) -com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException: long serialVersionUID -androidx.lifecycle.ReportFragment: void dispatchStart(androidx.lifecycle.ReportFragment$ActivityInitializationListener) -androidx.appcompat.R$attr: int colorAccent -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: long serialVersionUID -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: int UnitType -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: int UnitType -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitationDuration -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_4 -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_orderInCategory -wangdaye.com.geometricweather.R$styleable: int Preference_android_fragment -james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlActivated -wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_layout -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String getCode() -com.google.android.material.R$dimen: int appcompat_dialog_background_inset -android.didikee.donate.R$layout: int abc_screen_toolbar -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderFetchStrategy -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: ObservableSkipLastTimed$SkipLastTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,boolean) -wangdaye.com.geometricweather.R$drawable: int notif_temp_70 -com.google.android.material.R$styleable: int Constraint_flow_firstVerticalBias -wangdaye.com.geometricweather.R$attr: int imageButtonStyle -androidx.preference.R$styleable: int StateListDrawable_android_variablePadding -wangdaye.com.geometricweather.R$id: int labelGroup -androidx.appcompat.R$layout: int abc_screen_toolbar -com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextView -io.reactivex.Observable: io.reactivex.Observable retryUntil(io.reactivex.functions.BooleanSupplier) -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMargins -androidx.appcompat.R$color: int abc_search_url_text_pressed -cyanogenmod.themes.IThemeService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -cyanogenmod.externalviews.ExternalViewProviderService$Provider: int getWindowType() -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String country -com.google.android.material.R$attr: int extendMotionSpec -wangdaye.com.geometricweather.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$string: int wind_speed -androidx.appcompat.R$id: int search_plate -com.google.android.material.chip.Chip: void setSingleLine(boolean) -cyanogenmod.weather.WeatherLocation: WeatherLocation(android.os.Parcel) -wangdaye.com.geometricweather.R$string: int date_format_widget_long -okio.Okio$1: okio.Timeout timeout() -com.google.android.material.R$attr: int indicatorSize -okhttp3.Interceptor$Chain: int readTimeoutMillis() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -okio.SegmentedByteString: okio.ByteString hmacSha1(okio.ByteString) -androidx.coordinatorlayout.R$id: int chronometer -androidx.appcompat.R$color: int material_grey_600 -com.baidu.location.indoor.mapversion.c.c$b: double d -wangdaye.com.geometricweather.R$id: int moldIcon -com.google.android.gms.base.R$string: int common_google_play_services_update_text -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit PPCM -wangdaye.com.geometricweather.R$id: int widget_text_weather -wangdaye.com.geometricweather.R$string: int feedback_refresh_notification_after_back -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -com.google.android.material.R$attr: int actionDropDownStyle -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub -com.google.android.material.transformation.TransformationChildLayout -okio.Buffer$1 -okio.Segment: okio.Segment pop() -com.tencent.bugly.crashreport.CrashReport: void setAppChannel(android.content.Context,java.lang.String) -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void otherSuccess(java.lang.Object) -androidx.preference.R$attr: int actionModeStyle -okio.Buffer: java.lang.String readUtf8LineStrict() -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.Object clone() -wangdaye.com.geometricweather.R$id: int widget_clock_day_card -okio.ByteString: boolean startsWith(byte[]) -okhttp3.internal.Util: java.lang.String inet6AddressToAscii(byte[]) -okhttp3.Response: okhttp3.Response networkResponse -okhttp3.Response: java.util.List headers(java.lang.String) -androidx.lifecycle.SavedStateHandle: java.util.Map mRegular -james.adaptiveicon.R$attr: int checkedTextViewStyle -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance -retrofit2.Retrofit: okhttp3.HttpUrl baseUrl() -okhttp3.logging.LoggingEventListener: void connectFailed(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol,java.io.IOException) -wangdaye.com.geometricweather.R$attr: int badgeTextColor -com.google.android.material.R$id: int spread -wangdaye.com.geometricweather.R$string: int feedback_location_help_title -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType UNKNOWN -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: java.lang.String Localized -androidx.coordinatorlayout.R$attr: int fontProviderFetchTimeout -cyanogenmod.profiles.LockSettings: void writeXmlString(java.lang.StringBuilder,android.content.Context) -androidx.appcompat.R$id: int action_mode_bar -com.google.android.material.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context) -wangdaye.com.geometricweather.common.ui.widgets.DonateImageView: DonateImageView(android.content.Context) -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit getInstance(java.lang.String) -james.adaptiveicon.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.R$color: int mtrl_outlined_stroke_color -retrofit2.BuiltInConverters$VoidResponseBodyConverter: BuiltInConverters$VoidResponseBodyConverter() -com.google.android.material.R$styleable: int AppCompatTheme_actionMenuTextAppearance -io.reactivex.internal.disposables.EmptyDisposable -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitation -okhttp3.RequestBody$1: okhttp3.MediaType val$contentType -com.google.android.material.R$styleable: int MockView_mock_labelColor -com.google.android.material.R$attr: int gapBetweenBars -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -androidx.coordinatorlayout.R$id: int line3 -com.tencent.bugly.crashreport.crash.e: java.lang.String h -okhttp3.internal.Util: okio.ByteString UTF_16_BE_BOM -com.google.android.material.progressindicator.ProgressIndicator: int getTrackColor() -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getHour(android.content.Context) -com.google.android.material.slider.Slider: void setThumbTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$attr: int popupMenuBackground -com.google.android.material.R$attr: int behavior_fitToContents -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService$1 this$1 -com.bumptech.glide.load.ImageHeaderParser$ImageType: boolean hasAlpha -androidx.appcompat.R$drawable: int abc_text_select_handle_left_mtrl_light -androidx.appcompat.R$attr: int goIcon -androidx.preference.R$styleable: int ActionBar_navigationMode -androidx.core.R$dimen: int notification_content_margin_start -androidx.fragment.R$id: int tag_accessibility_actions -wangdaye.com.geometricweather.R$color: int material_timepicker_button_background -com.xw.repo.bubbleseekbar.R$attr: int statusBarBackground -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setAlerts(java.util.List) -androidx.preference.R$attr: int fastScrollHorizontalTrackDrawable -com.xw.repo.bubbleseekbar.R$attr: int showAsAction -com.google.android.material.R$styleable: int AppCompatTheme_colorAccent -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_caption_material -androidx.hilt.lifecycle.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.util.List getValue() -com.google.android.material.R$styleable: int ProgressIndicator_indicatorColor -android.support.v4.app.INotificationSideChannel -com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_backgroundTintMode -com.google.android.material.R$attr: int tabGravity -com.google.android.material.R$styleable: int Constraint_android_id -cyanogenmod.providers.CMSettings$Secure: java.lang.String VIBRATOR_INTENSITY -com.google.android.material.R$styleable: int AlertDialog_showTitle -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String removeNativeKeyValue(java.lang.String) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String speed -retrofit2.converter.gson.GsonRequestBodyConverter: okhttp3.MediaType MEDIA_TYPE -androidx.viewpager2.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isModify -com.tencent.bugly.proguard.v: void run() -okio.AsyncTimeout: boolean cancelScheduledTimeout(okio.AsyncTimeout) -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void b(boolean) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintStart_toEndOf -wangdaye.com.geometricweather.R$styleable: int MotionHelper_onHide -androidx.coordinatorlayout.R$styleable: int GradientColorItem_android_offset -androidx.viewpager.R$styleable: int GradientColor_android_startY -okhttp3.internal.platform.Platform: void afterHandshake(javax.net.ssl.SSLSocket) -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.R$styleable: int Preference_key -androidx.appcompat.resources.R$id: int accessibility_custom_action_8 -androidx.loader.R$drawable: int notification_bg_normal_pressed -androidx.vectordrawable.animated.R$dimen -com.tencent.bugly.proguard.p: long a(com.tencent.bugly.proguard.p,java.lang.String,android.content.ContentValues,com.tencent.bugly.proguard.o) -okhttp3.internal.ws.RealWebSocket: void onReadPing(okio.ByteString) -androidx.constraintlayout.widget.R$drawable: int abc_ic_ab_back_material -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_shapeAppearance -wangdaye.com.geometricweather.R$string: int mtrl_badge_numberless_content_description -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar -com.tencent.bugly.crashreport.crash.CrashDetailBean: long E -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLastLocationLifeCycle(long) -androidx.recyclerview.R$id: int forever -cyanogenmod.hardware.CMHardwareManager: boolean writePersistentInt(java.lang.String,int) -com.xw.repo.bubbleseekbar.R$id: int bottom -androidx.hilt.work.R$attr: int font -androidx.work.NetworkType: androidx.work.NetworkType NOT_REQUIRED -com.google.android.material.R$dimen: int mtrl_shape_corner_size_medium_component -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_66 -cyanogenmod.providers.WeatherContract: WeatherContract() -com.tencent.bugly.crashreport.crash.b: boolean a(com.tencent.bugly.crashreport.crash.CrashDetailBean) -com.google.android.material.R$animator: R$animator() -io.reactivex.internal.disposables.ArrayCompositeDisposable: long serialVersionUID -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ws -android.didikee.donate.R$styleable: int SearchView_defaultQueryHint -wangdaye.com.geometricweather.R$attr: int customDimension -androidx.appcompat.R$style: int Widget_AppCompat_RatingBar -androidx.appcompat.resources.R$id: int accessibility_custom_action_4 -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_divider_mtrl_alpha -androidx.appcompat.resources.R$styleable: int GradientColor_android_gradientRadius -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int prefetch -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionMenuTextColor -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: java.lang.String getWidgetWeekIconModeName(android.content.Context) -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIconSize(int) -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectTimeout(java.time.Duration) -com.jaredrummler.android.colorpicker.R$styleable: int View_paddingEnd -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: okio.Timeout timeout() -wangdaye.com.geometricweather.R$string: int settings_title_icon_provider -android.didikee.donate.R$id: int screen -com.google.android.material.navigation.NavigationView: void setItemIconPadding(int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCutDrawable -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getWindowAnimations() -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean checkTerminated(boolean,boolean,io.reactivex.Observer) -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -com.google.android.material.R$styleable: int FloatingActionButton_pressedTranslationZ -wangdaye.com.geometricweather.common.basic.models.weather.Alert: long time -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_dither -androidx.viewpager.R$attr: int fontProviderFetchStrategy -okhttp3.internal.platform.Platform: okhttp3.internal.tls.TrustRootIndex buildTrustRootIndex(javax.net.ssl.X509TrustManager) -com.google.android.material.R$attr: int thumbElevation -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_DarkActionBar -androidx.loader.R$id: int actions -james.adaptiveicon.R$id: int time -wangdaye.com.geometricweather.db.entities.HourlyEntity: long getTime() -com.tencent.bugly.proguard.q: void onUpgrade(android.database.sqlite.SQLiteDatabase,int,int) -com.bumptech.glide.integration.okhttp.R$dimen: int notification_big_circle_margin -okhttp3.HttpUrl$Builder: java.lang.String scheme -androidx.lifecycle.SavedStateViewModelFactory: SavedStateViewModelFactory(android.app.Application,androidx.savedstate.SavedStateRegistryOwner) -okhttp3.CertificatePinner$Pin: java.lang.String canonicalHostname -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_COMPONENT_ID -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_holo_dark -okio.Buffer: java.lang.String readUtf8Line(long) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country -androidx.preference.R$attr: int activityChooserViewStyle -wangdaye.com.geometricweather.R$attr: int errorIconDrawable -wangdaye.com.geometricweather.R$drawable: int ic_arrow_down_24dp -wangdaye.com.geometricweather.R$drawable: int notif_temp_35 -com.google.android.material.R$dimen: int mtrl_badge_text_size -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_selection_text -com.google.android.material.R$styleable: int MaterialCalendar_yearTodayStyle -androidx.drawerlayout.R$attr -io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.xw.repo.bubbleseekbar.R$drawable: int abc_item_background_holo_light -com.google.android.material.R$styleable: int[] AppCompatTheme -com.google.android.gms.common.api.GoogleApiActivity -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HistoryEntityDao historyEntityDao -com.amap.api.location.AMapLocationClientOption: boolean isOnceLocationLatest() -okhttp3.internal.http2.Http2Connection: int maxConcurrentStreams() -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status RUNNING -okhttp3.internal.http2.Http2Connection$1: okhttp3.internal.http2.ErrorCode val$errorCode -cyanogenmod.app.ICMTelephonyManager: boolean isDataConnectionEnabled() -androidx.hilt.work.R$layout: int notification_template_custom_big -androidx.preference.R$id: int action_bar_spinner -androidx.constraintlayout.widget.R$attr: int fontProviderFetchTimeout -androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.power.PerformanceManager: int PROFILE_BALANCED -com.jaredrummler.android.colorpicker.R$drawable: R$drawable() -com.amap.api.location.AMapLocation: java.lang.String g -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_DialogWhenLarge -com.google.android.material.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets -cyanogenmod.themes.ThemeManager: long getLastThemeChangeTime() -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionBar -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver -com.google.android.material.R$attr: int customFloatValue -androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context,android.util.AttributeSet) -androidx.fragment.R$dimen -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean direction -androidx.appcompat.R$attr: int colorPrimaryDark -com.amap.api.fence.GeoFence: long j -com.jaredrummler.android.colorpicker.R$id: int tag_transition_group -wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvDescription(java.lang.String) -james.adaptiveicon.R$color: int abc_tint_switch_track -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_trackColor -androidx.constraintlayout.widget.R$attr: int onShow -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_3 -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -com.google.android.material.R$styleable: int Transition_layoutDuringTransition -androidx.preference.R$styleable: int FontFamilyFont_fontVariationSettings -okhttp3.internal.io.FileSystem: okio.Sink sink(java.io.File) -wangdaye.com.geometricweather.R$dimen: int abc_text_size_menu_header_material -wangdaye.com.geometricweather.location.services.LocationService: java.lang.String[] getPermissions() -wangdaye.com.geometricweather.R$attr: int tickColor -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCopyDrawable -androidx.customview.R$layout: int notification_template_part_chronometer -cyanogenmod.hardware.DisplayMode: DisplayMode(int,java.lang.String) -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_cornerSize -com.google.android.material.R$styleable: int ConstraintSet_android_transformPivotY -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Display -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_maxHeight -okhttp3.internal.http.HttpMethod: boolean permitsRequestBody(java.lang.String) -androidx.preference.R$attr: int entries -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_backgroundSplit -okhttp3.OkHttpClient: int writeTimeoutMillis() -androidx.coordinatorlayout.widget.CoordinatorLayout: void setVisibility(int) -cyanogenmod.os.Concierge: cyanogenmod.os.Concierge$ParcelInfo receiveParcel(android.os.Parcel) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void drainLoop() -retrofit2.converter.gson.GsonRequestBodyConverter: okhttp3.RequestBody convert(java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode PARTLY_CLOUDY -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitation -com.google.android.material.navigation.NavigationView: void setItemIconTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$styleable: int[] Motion -androidx.hilt.work.R$dimen: int compat_button_inset_horizontal_material -com.tencent.bugly.proguard.w: w() -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_crossfade -com.turingtechnologies.materialscrollbar.R$attr: int colorButtonNormal -androidx.appcompat.widget.AppCompatCheckBox: void setBackgroundResource(int) -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableItem_android_drawable -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_focusable -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorEnabled -com.turingtechnologies.materialscrollbar.R$attr: int actionDropDownStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton -okhttp3.TlsVersion: java.lang.String javaName() -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginBottom -androidx.constraintlayout.widget.R$id: int blocking -com.tencent.bugly.crashreport.common.info.AppInfo: android.content.pm.PackageInfo b(android.content.Context) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: AccuCurrentResult$Visibility$Imperial() -com.google.android.material.R$styleable: int ConstraintSet_flow_verticalStyle -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_pixel -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalAlign -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean validate(long) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_7 -james.adaptiveicon.R$drawable: int abc_scrubber_control_off_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorError -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: java.util.List DailyForecasts -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer degreeDayTemperature -com.google.android.material.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 -com.bumptech.glide.R$dimen: int compat_button_inset_vertical_material -androidx.constraintlayout.widget.R$layout: int select_dialog_singlechoice_material -com.google.android.material.R$attr: int customDimension -cyanogenmod.app.ThemeVersion: java.lang.String THEME_VERSION_CLASS_NAME -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -okhttp3.HttpUrl$Builder: java.lang.String encodedFragment -androidx.activity.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Surface -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer confidence -androidx.appcompat.R$id: int tag_accessibility_actions -cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri CONTENT_URI -wangdaye.com.geometricweather.R$attr: int customFloatValue -cyanogenmod.themes.ThemeChangeRequest$Builder: void buildChangeRequestFromThemeConfig(android.content.res.ThemeConfig) -android.didikee.donate.R$drawable: int abc_ic_star_black_36dp -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_normal -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceLargePopupMenu -com.google.android.material.R$attr: int showMotionSpec -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_left_mtrl_dark -com.turingtechnologies.materialscrollbar.R$style: int CardView -com.google.gson.stream.JsonReader: int PEEKED_NUMBER -androidx.fragment.R$attr: int fontVariationSettings -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCutDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: AccuHourlyResult$Temperature() -androidx.appcompat.widget.AppCompatTextView: int getLastBaselineToBottomHeight() -wangdaye.com.geometricweather.R$string: int key_location_service -wangdaye.com.geometricweather.R$layout: int fragment_management -com.google.android.material.R$attr: int colorButtonNormal -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_inverse -androidx.lifecycle.extensions.R$drawable: int notification_bg_low_normal -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_requestDismiss_0 -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotation -cyanogenmod.app.BaseLiveLockManagerService$1: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -com.tencent.bugly.proguard.an: int b -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_android_elevation -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$color: int androidx_core_ripple_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerColor -android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$string: int clear_text_end_icon_content_description -androidx.preference.R$attr: int layout -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_transitionEasing -com.jaredrummler.android.colorpicker.R$attr: int textColorSearchUrl -android.didikee.donate.R$styleable: int ActionBar_background -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_scaleY -com.google.android.material.R$id: int fixed -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setIcePrecipitation(java.lang.Float) -okhttp3.internal.cache.DiskLruCache$Entry: java.io.IOException invalidLengths(java.lang.String[]) -okio.ForwardingSource: okio.Timeout timeout() -com.google.android.material.R$styleable: int KeyCycle_android_alpha -androidx.appcompat.R$color: int foreground_material_dark -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit[] values() -com.tencent.bugly.proguard.j: java.nio.ByteBuffer a() -com.tencent.bugly.crashreport.common.info.a: java.lang.String l -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog -androidx.appcompat.R$anim: int abc_shrink_fade_out_from_bottom -com.xw.repo.bubbleseekbar.R$attr: int actionBarDivider -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: void setTo(java.lang.String) -okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithIncrementalIndexingNewName() -androidx.viewpager2.R$styleable -androidx.constraintlayout.widget.R$dimen: int disabled_alpha_material_light -wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingRight -androidx.legacy.coreutils.R$attr: int font -androidx.hilt.work.R$id: int accessibility_custom_action_0 -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onAttach() -androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior: CoordinatorLayout$Behavior(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$color: int design_icon_tint -cyanogenmod.providers.CMSettings$Secure: java.lang.String LIVE_LOCK_SCREEN_ENABLED -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTintMode -io.reactivex.internal.observers.DeferredScalarObserver -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_showSeekBarValue -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_6 -io.reactivex.internal.util.ExceptionHelper$Termination -androidx.transition.R$id: int right_icon -wangdaye.com.geometricweather.R$id: int group_divider -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -cyanogenmod.power.PerformanceManagerInternal: void activityResumed(android.content.Intent) -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_iconTint -com.tencent.bugly.crashreport.CrashReport: void enableObtainId(android.content.Context,boolean) -androidx.constraintlayout.widget.R$string: int abc_action_bar_home_description -wangdaye.com.geometricweather.R$id: int widget_week_temp_4 -com.google.android.material.R$attr: int colorControlHighlight -okhttp3.OkHttpClient$Builder: okhttp3.EventListener$Factory eventListenerFactory -android.didikee.donate.R$styleable: int AppCompatTheme_seekBarStyle -com.google.android.material.R$style: int Widget_AppCompat_ListView -wangdaye.com.geometricweather.R$color: int material_on_primary_emphasis_medium -com.turingtechnologies.materialscrollbar.R$styleable: int View_android_focusable -androidx.recyclerview.R$dimen: int notification_big_circle_margin -com.tencent.bugly.proguard.ai: ai() -androidx.constraintlayout.widget.R$styleable: int Constraint_android_visibility -com.amap.api.location.AMapLocation: boolean isFixLastLocation() -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable -androidx.work.R$id: int dialog_button -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableBottomCompat -com.google.android.material.R$attr: int layoutManager -androidx.core.R$id: int icon -com.google.android.material.R$color: int mtrl_indicator_text_color -androidx.legacy.coreutils.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$styleable: int[] RangeSlider -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: long serialVersionUID -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult -android.didikee.donate.R$dimen: int abc_action_bar_overflow_padding_end_material -wangdaye.com.geometricweather.R$xml: int widget_clock_day_vertical -androidx.preference.R$string: int search_menu_title -androidx.viewpager.R$dimen: int notification_large_icon_height -okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,int,int,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light_normal -com.amap.api.fence.DistrictItem: void setPolyline(java.util.List) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HAIL -com.amap.api.fence.GeoFence: int TYPE_DISTRICT -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIFIAP -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL -androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context) -wangdaye.com.geometricweather.R$attr: int drawable_res_off -wangdaye.com.geometricweather.R$layout: int widget_week -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitleTextAppearance -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.Function rightEnd -androidx.cardview.widget.CardView: void setMinimumWidth(int) -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog_MinWidth -wangdaye.com.geometricweather.R$drawable: int ic_play_store -com.google.android.material.R$id: int mtrl_calendar_days_of_week -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_4 -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void a(boolean) -com.tencent.bugly.proguard.ah: void a(com.tencent.bugly.proguard.j) -com.google.android.material.R$string: int abc_menu_enter_shortcut_label -com.google.android.material.R$dimen: int mtrl_card_elevation -com.google.android.material.internal.NavigationMenuItemView: void setTextColor(android.content.res.ColorStateList) -com.tencent.bugly.proguard.p: long a(java.lang.String,android.content.ContentValues,com.tencent.bugly.proguard.o) -james.adaptiveicon.R$styleable: int ActionBar_customNavigationLayout -wangdaye.com.geometricweather.R$attr: int expandedTitleMarginStart -okhttp3.internal.http2.Http2Stream$FramingSource: boolean finished -androidx.work.R$styleable: int GradientColor_android_endColor -com.google.android.material.R$dimen: int mtrl_low_ripple_default_alpha -com.google.android.material.R$attr: int flow_firstHorizontalBias -androidx.appcompat.widget.LinearLayoutCompat: void setDividerDrawable(android.graphics.drawable.Drawable) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Button -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontStyle -androidx.viewpager2.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -okhttp3.internal.tls.TrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) -androidx.vectordrawable.R$attr: int fontStyle -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_60 -androidx.activity.R$styleable: int GradientColor_android_centerY -com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_icon_width -wangdaye.com.geometricweather.R$id: int widget_day_title -okio.ByteString: okio.ByteString decodeBase64(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Category -okhttp3.CookieJar -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastHorizontalStyle -androidx.preference.R$styleable: int AppCompatTextHelper_android_textAppearance -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_17 -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_16 -com.google.android.material.internal.FlowLayout: void setLineSpacing(int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherSource(java.lang.String) -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode END -com.google.android.gms.common.api.internal.zaab -androidx.viewpager2.R$dimen: int item_touch_helper_swipe_escape_max_velocity -okhttp3.internal.http2.Hpack$Writer: int headerCount -androidx.preference.R$styleable: int AppCompatTheme_colorError -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_inverse_material_dark -androidx.hilt.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language FRENCH -wangdaye.com.geometricweather.settings.activities.CardDisplayManageActivity: CardDisplayManageActivity() -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onComplete() -androidx.constraintlayout.widget.R$attr: int contentInsetRight -cyanogenmod.themes.IThemeService$Stub$Proxy: android.os.IBinder asBinder() -com.google.android.material.R$drawable: int abc_textfield_default_mtrl_alpha -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_switchPreferenceStyle -androidx.preference.R$attr: int contentInsetStart -androidx.preference.R$drawable: int btn_radio_off_mtrl -wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity: ClockDayHorizontalWidgetConfigActivity() -okhttp3.CipherSuite$1: int compare(java.lang.Object,java.lang.Object) -com.google.android.material.R$styleable: int PopupWindow_android_popupBackground -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity: DayWeekWidgetConfigActivity() -com.google.android.material.R$styleable: int AppCompatTheme_alertDialogCenterButtons -com.google.android.material.R$styleable: int FontFamilyFont_font -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_max -androidx.appcompat.R$styleable: int[] ListPopupWindow -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: java.util.List rainForecasts -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: java.lang.String Unit -com.jaredrummler.android.colorpicker.R$attr: int fragment -wangdaye.com.geometricweather.R$attr: int seekBarStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: WeatherEntity() -androidx.appcompat.widget.AppCompatButton: int getAutoSizeTextType() -com.turingtechnologies.materialscrollbar.R$layout: int abc_cascading_menu_item_layout -okio.HashingSink: okio.HashingSink sha512(okio.Sink) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: int rightIndex -okhttp3.MediaType: java.lang.String subtype() -cyanogenmod.app.IProfileManager: boolean isEnabled() -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_measureWithLargestChild -com.google.android.material.R$plurals: R$plurals() -androidx.constraintlayout.widget.R$attr: int textAllCaps -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver otherObserver -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: long timeout -androidx.preference.R$styleable: int SearchView_android_inputType -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: long serialVersionUID -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean isDisposed() -com.bumptech.glide.integration.okhttp.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.R$styleable: int TagView_checked -com.google.gson.stream.JsonReader: int PEEKED_NULL -okhttp3.CacheControl: boolean noTransform -com.turingtechnologies.materialscrollbar.R$attr: int chipSpacing -com.jaredrummler.android.colorpicker.R$string: int cpv_transparency -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean active -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow6h -android.didikee.donate.R$id: int search_go_btn -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetOnClickPendingIntent(android.app.PendingIntent) -okhttp3.Interceptor$Chain -wangdaye.com.geometricweather.R$id: int item_weather_daily_value_title -com.tencent.bugly.Bugly: void init(android.content.Context,java.lang.String,boolean) -io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable -androidx.drawerlayout.R$id: int line1 -okhttp3.Route: java.lang.String toString() -androidx.recyclerview.widget.RecyclerView: boolean isLayoutSuppressed() -wangdaye.com.geometricweather.R$drawable: int ic_exercise -cyanogenmod.app.BaseLiveLockManagerService: void notifyChangeListeners(cyanogenmod.app.LiveLockScreenInfo) -io.reactivex.internal.observers.InnerQueuedObserver: int fusionMode() -cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,int,int) -cyanogenmod.providers.ThemesContract: ThemesContract() -james.adaptiveicon.R$attr: int homeAsUpIndicator -androidx.coordinatorlayout.R$attr: int fontProviderFetchStrategy -androidx.activity.R$attr: int fontStyle -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_android_maxHeight -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderCerts -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_removeCustomTileFromListener -wangdaye.com.geometricweather.db.entities.MinutelyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTextView -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_borderWidth -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$style: int TestStyleWithoutLineHeight -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int BLUSTERY -com.tencent.bugly.proguard.y: void a(int) -com.google.android.material.R$attr: int placeholderTextColor -androidx.core.view.GestureDetectorCompat -androidx.transition.R$id: int action_container -com.google.android.material.R$styleable: int AppCompatTheme_imageButtonStyle -androidx.hilt.work.R$id: int tag_accessibility_actions -android.didikee.donate.R$dimen: int abc_dialog_padding_material -com.google.android.material.R$styleable: int TabLayout_tabIndicatorHeight -cyanogenmod.app.StatusBarPanelCustomTile: int uid -androidx.constraintlayout.widget.R$dimen: int abc_text_size_caption_material -cyanogenmod.os.Build: java.lang.String getNameForSDKInt(int) -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDate(java.util.Date) -androidx.appcompat.widget.AppCompatEditText: android.text.Editable getText() -okio.SegmentedByteString: java.nio.ByteBuffer asByteBuffer() -okhttp3.Handshake: java.util.List localCertificates -com.bumptech.glide.Priority: com.bumptech.glide.Priority LOW -android.didikee.donate.R$drawable: int abc_ratingbar_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: void setFrom(java.util.Date) -androidx.fragment.R$dimen: int compat_button_inset_horizontal_material -com.turingtechnologies.materialscrollbar.R$attr: int statusBarBackground -cyanogenmod.profiles.AirplaneModeSettings: android.os.Parcelable$Creator CREATOR -com.bumptech.glide.Priority: com.bumptech.glide.Priority valueOf(java.lang.String) -cyanogenmod.externalviews.KeyguardExternalView$9: KeyguardExternalView$9(cyanogenmod.externalviews.KeyguardExternalView) -androidx.constraintlayout.motion.widget.MotionLayout: java.util.ArrayList getDefinedTransitions() -com.google.android.material.R$id: int progress_circular -wangdaye.com.geometricweather.background.receiver.widget.AbstractWidgetProvider -androidx.lifecycle.HasDefaultViewModelProviderFactory: androidx.lifecycle.ViewModelProvider$Factory getDefaultViewModelProviderFactory() -okhttp3.internal.http2.PushObserver -androidx.core.R$styleable: int GradientColor_android_startY -com.google.android.material.R$styleable: int FloatingActionButton_rippleColor -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int ThunderstormProbability -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_go_search_api_material -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ListPopupWindow -androidx.appcompat.R$style: int Widget_AppCompat_ActionButton_Overflow -com.google.android.material.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$string: int tag_temperature -cyanogenmod.app.IPartnerInterface$Stub: java.lang.String DESCRIPTOR -com.xw.repo.bubbleseekbar.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_cancelLiveLockScreen -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setPathSegment(int,java.lang.String) -androidx.transition.R$dimen: int compat_button_padding_horizontal_material -androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context) -com.turingtechnologies.materialscrollbar.R$attr: int paddingBottomNoButtons -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -androidx.appcompat.view.menu.StandardMenuPopup -james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Dialog -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -com.jaredrummler.android.colorpicker.R$color: int primary_material_dark -okhttp3.internal.http2.Http2Reader$ContinuationSource: okio.BufferedSource source -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void subscribeNext() -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_textAllCaps -wangdaye.com.geometricweather.R$attr: int path_percent -android.didikee.donate.R$attr: int listPreferredItemHeight -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_elevation -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ASSIST_WAKE_SCREEN_VALIDATOR -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getTotalPrecipitation() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setAddress(java.lang.String) -androidx.core.graphics.drawable.IconCompat: IconCompat() -androidx.appcompat.R$attr: int actionOverflowButtonStyle -wangdaye.com.geometricweather.R$attr: int indicatorColors -wangdaye.com.geometricweather.R$color: int mtrl_textinput_default_box_stroke_color -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float ice -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance -cyanogenmod.app.suggest.ApplicationSuggestion$1: cyanogenmod.app.suggest.ApplicationSuggestion[] newArray(int) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getTreeIndex() -com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: FloatingActionButton$Behavior() -okhttp3.internal.http2.Http2Codec: java.lang.String TRANSFER_ENCODING -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTotalPrecipitationProbability(java.lang.Float) -com.google.android.material.textfield.TextInputLayout: void setCounterEnabled(boolean) -androidx.viewpager2.R$styleable: int FontFamily_fontProviderCerts -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_buttonPanelSideLayout -wangdaye.com.geometricweather.R$styleable: int TouchScrollBar_msb_autoHide -io.reactivex.internal.subscriptions.DeferredScalarSubscription: long serialVersionUID -james.adaptiveicon.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -androidx.appcompat.widget.SwitchCompat: void setTrackResource(int) -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_contentScrim -okhttp3.internal.cache2.FileOperator: FileOperator(java.nio.channels.FileChannel) -com.google.android.material.R$attr: int queryHint -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeMinTextSize -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderTextAppearance -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_min -com.tencent.bugly.crashreport.common.strategy.StrategyBean: int w -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSnowPrecipitationProbability() -com.amap.api.fence.DistrictItem$1 -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: java.lang.Integer freezing -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.drawerlayout.R$styleable: int GradientColor_android_tileMode -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: java.util.List getSuggestions(android.content.Intent) -androidx.appcompat.R$string: int abc_action_bar_home_description -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder fragment(java.lang.String) -wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_left_mtrl_dark -androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_bottom_material -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRealFeelTemperature -androidx.appcompat.R$styleable: int AppCompatTheme_colorPrimary -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display3 -com.google.android.material.circularreveal.CircularRevealGridLayout: CircularRevealGridLayout(android.content.Context) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomSheet_Modal -com.tencent.bugly.crashreport.crash.c: void m() -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.functions.Function keySelector -okhttp3.internal.Util: java.nio.charset.Charset UTF_32_BE -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: android.os.IBinder createExternalView(android.os.Bundle) -retrofit2.RequestBuilder: void addPathParam(java.lang.String,java.lang.String,boolean) -com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Light -androidx.preference.R$styleable: int Spinner_android_entries -androidx.preference.R$styleable: int[] Toolbar -wangdaye.com.geometricweather.R$attr: int paddingTopNoTitle -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void dispose() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Inverse -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: long index -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textColorSearchUrl -okio.ByteString: byte getByte(int) -androidx.swiperefreshlayout.R$drawable: int notification_action_background -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1 -com.google.android.material.R$styleable: int Layout_layout_constraintWidth_max -wangdaye.com.geometricweather.R$styleable: int KeyPosition_transitionEasing -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum -cyanogenmod.externalviews.KeyguardExternalView -androidx.constraintlayout.widget.R$attr: int toolbarNavigationButtonStyle -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedReadableDb(char[]) -androidx.vectordrawable.R$id: int tag_accessibility_clickable_spans -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWindDirection -androidx.transition.R$attr: int fontProviderFetchTimeout -com.jaredrummler.android.colorpicker.R$id: int action_mode_bar -com.jaredrummler.android.colorpicker.R$color: int dim_foreground_disabled_material_light -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_colored_material -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_rightToLeft -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -com.jaredrummler.android.colorpicker.R$styleable: int[] BackgroundStyle -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView -okhttp3.OkHttpClient$Builder -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getAlertId() -androidx.lifecycle.LiveData$LifecycleBoundObserver: boolean isAttachedTo(androidx.lifecycle.LifecycleOwner) -wangdaye.com.geometricweather.R$styleable: int Transform_android_translationY -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display2 -androidx.preference.R$id: int src_atop -androidx.legacy.coreutils.R$attr: int fontWeight -com.tencent.bugly.proguard.ac -wangdaye.com.geometricweather.R$styleable: int[] TextAppearance -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_DropDownItem_Spinner -cyanogenmod.themes.ThemeManager$2$1: cyanogenmod.themes.ThemeManager$2 this$1 -com.baidu.location.e.l$b: java.lang.String a(com.baidu.location.e.l$b,int,double,double) -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: android.net.Uri CONTENT_URI -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void drain() -com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_pressed -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cpb -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getO3Color(android.content.Context) -com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItem -androidx.preference.R$style: int Widget_AppCompat_Light_SearchView -wangdaye.com.geometricweather.R$style: int Widget_Design_Snackbar -com.tencent.bugly.proguard.o: byte[] a() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_percent -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRealFeelShaderTemperature(java.lang.Integer) -com.google.android.material.R$id: int accessibility_custom_action_8 -retrofit2.RequestFactory$Builder: okhttp3.Headers parseHeaders(java.lang.String[]) -com.jaredrummler.android.colorpicker.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -cyanogenmod.externalviews.ExternalView$3 -androidx.appcompat.widget.AppCompatCheckBox: void setButtonDrawable(android.graphics.drawable.Drawable) -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_statusBarBackground -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String x -androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Title -androidx.constraintlayout.widget.R$layout: int abc_select_dialog_material -okhttp3.internal.http2.Http2Stream: void receiveFin() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableRight -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean set(int,boolean) -com.google.android.material.tabs.TabLayout: void setUnboundedRippleResource(int) -okhttp3.internal.ws.RealWebSocket: void onReadPong(okio.ByteString) -com.turingtechnologies.materialscrollbar.R$attr: int msb_textColor -wangdaye.com.geometricweather.R$drawable: int ic_weather -wangdaye.com.geometricweather.R$id: int widget_clock_day -okhttp3.internal.ws.WebSocketReader: long frameLength -james.adaptiveicon.R$dimen: int abc_floating_window_z -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_previewSize -wangdaye.com.geometricweather.R$id: int slide -cyanogenmod.app.CMTelephonyManager -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_seek_step_section -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextBackground -okhttp3.logging.HttpLoggingInterceptor$Logger$1: void log(java.lang.String) -okhttp3.Response$Builder: Response$Builder(okhttp3.Response) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -androidx.coordinatorlayout.R$id: int accessibility_custom_action_20 -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView_Menu -androidx.preference.R$attr: int actionModeCutDrawable -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float rain -com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_right_mtrl_dark -com.turingtechnologies.materialscrollbar.R$color: int design_bottom_navigation_shadow_color -androidx.preference.R$color: int abc_search_url_text_selected -com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int MaterialButtonToggleGroup_singleSelection -com.google.android.material.R$styleable: int Toolbar_collapseIcon -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerY -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -androidx.lifecycle.extensions.R$styleable: int Fragment_android_name -cyanogenmod.app.CMContextConstants$Features: java.lang.String LIVE_LOCK_SCREEN -com.jaredrummler.android.colorpicker.R$attr: int entryValues -cyanogenmod.app.CustomTile$ListExpandedStyle: void setListItems(java.util.ArrayList) -io.reactivex.internal.schedulers.ScheduledRunnable: void run() -com.bumptech.glide.R$layout: int notification_template_custom_big -com.google.android.material.R$styleable: int[] CollapsingToolbarLayout_Layout -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentStyle -wangdaye.com.geometricweather.R$id: int tag_screen_reader_focusable -okhttp3.internal.http2.Http2: byte TYPE_RST_STREAM -cyanogenmod.themes.ThemeChangeRequest$1: ThemeChangeRequest$1() -wangdaye.com.geometricweather.R$styleable: int MenuItem_iconTint -okhttp3.Call: okhttp3.Request request() -androidx.vectordrawable.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -wangdaye.com.geometricweather.R$dimen: int disabled_alpha_material_light -com.google.android.material.bottomappbar.BottomAppBar: boolean getHideOnScroll() -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -androidx.constraintlayout.widget.R$styleable: int ActionBar_indeterminateProgressStyle -com.google.gson.stream.JsonReader: java.io.IOException syntaxError(java.lang.String) -wangdaye.com.geometricweather.R$attr: int endIconDrawable -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_27 -james.adaptiveicon.R$id: int right_side -androidx.viewpager2.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: long serialVersionUID -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: int getStatus() -james.adaptiveicon.R$attr: int tooltipFrameBackground -cyanogenmod.providers.WeatherContract$WeatherColumns: WeatherContract$WeatherColumns() -com.tencent.bugly.proguard.ah: java.lang.String b -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.util.List text -androidx.viewpager.widget.ViewPager: int getPageMargin() -com.google.android.material.R$styleable: int Toolbar_contentInsetEnd -com.google.android.material.R$style: R$style() -retrofit2.adapter.rxjava2.ResultObservable -okhttp3.Cookie: boolean equals(java.lang.Object) -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Title -androidx.activity.R$drawable: int notification_bg_low_pressed -androidx.viewpager.R$id: int tag_transition_group -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -com.google.android.material.R$attr: int popupMenuBackground -cyanogenmod.weather.ICMWeatherManager$Stub: ICMWeatherManager$Stub() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleDrawable -androidx.vectordrawable.R$attr: int fontProviderFetchTimeout -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver inner -androidx.preference.R$dimen: int abc_text_size_body_1_material -retrofit2.RequestFactory$Builder: boolean isMultipart -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onComplete() -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_numericModifiers -com.jaredrummler.android.colorpicker.R$drawable: int notification_template_icon_bg -androidx.preference.R$styleable: int Preference_android_singleLineTitle -androidx.constraintlayout.widget.R$style: int Base_V23_Theme_AppCompat -com.xw.repo.bubbleseekbar.R$layout: int select_dialog_singlechoice_material -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void drainLoop() -cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String getPackageName() -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER_Y -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorPrimaryDark -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource -io.reactivex.Observable: io.reactivex.Observable lift(io.reactivex.ObservableOperator) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: long serialVersionUID -androidx.appcompat.R$styleable: int ActionBar_background -okhttp3.internal.connection.RouteSelector$Selection: java.util.List getAll() -com.amap.api.fence.GeoFence: int ERROR_CODE_FAILURE_PARSER -androidx.lifecycle.LiveDataReactiveStreams: org.reactivestreams.Publisher toPublisher(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory LOW -cyanogenmod.providers.CMSettings$Global: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceLargePopupMenu -com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Choice -com.google.android.material.R$dimen: int tooltip_corner_radius -androidx.hilt.work.R$id: int accessibility_action_clickable_span -okio.SegmentedByteString: int size() -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature -com.google.android.material.R$styleable: int StateListDrawable_android_visible -androidx.preference.R$dimen: int highlight_alpha_material_light -android.didikee.donate.R$styleable: int TextAppearance_android_textColor -androidx.preference.R$styleable: int ViewStubCompat_android_inflatedId -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_bottom -james.adaptiveicon.R$integer: R$integer() -com.bumptech.glide.integration.okhttp.R$id: int action_image -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: long serialVersionUID -cyanogenmod.providers.CMSettings$Secure: android.net.Uri getUriFor(java.lang.String) -com.google.android.material.switchmaterial.SwitchMaterial: void setUseMaterialThemeColors(boolean) -wangdaye.com.geometricweather.R$layout: int widget_clock_day_horizontal -com.tencent.bugly.proguard.j: j() -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_visible -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Ceiling -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setAqiIndex(java.lang.Integer) -com.google.android.material.chip.ChipGroup: void setChipSpacing(int) -james.adaptiveicon.R$id: int action_bar_title -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void setDisposable(io.reactivex.disposables.Disposable) -okhttp3.Challenge: Challenge(java.lang.String,java.util.Map) -okhttp3.ResponseBody$BomAwareReader: okio.BufferedSource source -cyanogenmod.profiles.ConnectionSettings: boolean mDirty -androidx.viewpager2.R$styleable: int ColorStateListItem_alpha -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver -androidx.constraintlayout.widget.R$attr: int paddingStart -com.google.android.material.R$string: int material_clock_toggle_content_description -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: double Value -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Title -wangdaye.com.geometricweather.R$drawable: int indicator_ltr -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -cyanogenmod.app.CustomTile$Builder: CustomTile$Builder(android.content.Context) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean Summary -com.jaredrummler.android.colorpicker.R$style: int Preference_SeekBarPreference_Material -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String e -wangdaye.com.geometricweather.background.receiver.widget.WidgetWeekProvider -wangdaye.com.geometricweather.R$attr: int preserveIconSpacing -com.google.android.material.R$styleable: int ImageFilterView_roundPercent -okhttp3.internal.cache.CacheStrategy: boolean isCacheable(okhttp3.Response,okhttp3.Request) -wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_android_foreground -okhttp3.internal.http2.Http2Connection: void pushDataLater(int,okio.BufferedSource,int,boolean) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.customview.R$style: R$style() -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_titleEnabled -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_tint -james.adaptiveicon.R$dimen: int abc_text_size_title_material -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cwd -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_NoActionBar -com.tencent.bugly.proguard.u: java.lang.String d(com.tencent.bugly.proguard.u) -wangdaye.com.geometricweather.R$attr: int bsb_track_color -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_transparent_bg_color -wangdaye.com.geometricweather.R$attr: int transitionPathRotate -okio.BufferedSink: okio.BufferedSink writeInt(int) -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Connection connection -cyanogenmod.app.Profile: boolean isConditionalType() -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastVerticalBias -wangdaye.com.geometricweather.common.basic.models.weather.History: int daytimeTemperature -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_CompactMenu -okio.Buffer: byte[] DIGITS -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String street -androidx.core.R$styleable: int FontFamilyFont_android_fontWeight -androidx.recyclerview.R$drawable: int notification_template_icon_low_bg -com.amap.api.fence.GeoFence: void setCustomId(java.lang.String) -com.jaredrummler.android.colorpicker.R$string: int expand_button_title -androidx.viewpager2.R$dimen: int notification_small_icon_size_as_large -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: ExecutorScheduler$ExecutorWorker$InterruptibleRunnable(java.lang.Runnable,io.reactivex.internal.disposables.DisposableContainer) -androidx.vectordrawable.animated.R$id: int normal -wangdaye.com.geometricweather.R$attr: int showAsAction -wangdaye.com.geometricweather.R$attr: int progress -android.didikee.donate.R$dimen: int abc_text_size_headline_material -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_NoActionBar -com.jaredrummler.android.colorpicker.R$dimen: int notification_small_icon_size_as_large -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_visible -com.tencent.bugly.crashreport.common.strategy.StrategyBean: long p -okhttp3.FormBody -io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean delayError -androidx.appcompat.widget.AppCompatCheckBox: int getCompoundPaddingLeft() -com.google.android.material.slider.Slider: void setTrackInactiveTintList(android.content.res.ColorStateList) -retrofit2.adapter.rxjava2.Result: java.lang.Throwable error() -androidx.lifecycle.LiveData$LifecycleBoundObserver: LiveData$LifecycleBoundObserver(androidx.lifecycle.LiveData,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Observer) -com.tencent.bugly.proguard.z: void a(android.os.Parcel,java.util.Map) -cyanogenmod.weather.IWeatherServiceProviderChangeListener: void onWeatherServiceProviderChanged(java.lang.String) -android.didikee.donate.R$attr: int actionModePasteDrawable -androidx.coordinatorlayout.R$style: R$style() -androidx.legacy.coreutils.R$attr: int alpha -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xmr -com.google.android.material.R$attr: int textInputLayoutFocusedRectEnabled -androidx.recyclerview.R$id: int tag_accessibility_pane_title -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onSuccess(java.lang.Object) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer aqiIndex -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_voiceIcon -wangdaye.com.geometricweather.R$attr: int chipIconTint -okhttp3.internal.cache2.Relay: Relay(java.io.RandomAccessFile,okio.Source,long,okio.ByteString,long) -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int consumed -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_atd -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer RIGHT_CLOSE -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: int city_code -androidx.preference.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getVibrateMode() -com.turingtechnologies.materialscrollbar.R$attr: int submitBackground -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_weight -androidx.preference.R$styleable: int View_theme -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void setResource(io.reactivex.disposables.Disposable) -com.google.android.material.R$dimen: int design_bottom_navigation_active_item_min_width -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -androidx.hilt.R$layout: int notification_template_part_time -com.google.gson.internal.LinkedTreeMap: LinkedTreeMap() -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType GIF -androidx.cardview.widget.CardView: void setRadius(float) -com.google.android.material.R$styleable: int TextAppearance_android_shadowRadius -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric Metric -androidx.constraintlayout.widget.R$color: int notification_action_color_filter -androidx.lifecycle.extensions.R: R() -androidx.appcompat.widget.AppCompatRadioButton: android.content.res.ColorStateList getSupportButtonTintList() -okhttp3.Route: java.net.InetSocketAddress socketAddress() -wangdaye.com.geometricweather.common.basic.models.weather.Base -android.didikee.donate.R$styleable: int MenuItem_tooltipText -wangdaye.com.geometricweather.R$attr: int fontProviderPackage -androidx.dynamicanimation.R$attr: int fontProviderQuery -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Small -okio.Buffer: boolean exhausted() -wangdaye.com.geometricweather.R$styleable: int ActionBar_backgroundStacked -android.didikee.donate.R$style: int Base_Widget_AppCompat_EditText -androidx.constraintlayout.widget.R$drawable: int notification_bg_low -cyanogenmod.externalviews.KeyguardExternalView: boolean mIsInteractive -com.google.android.material.card.MaterialCardView: void setDragged(boolean) -androidx.preference.R$style: int Widget_AppCompat_PopupMenu -com.jaredrummler.android.colorpicker.R$styleable: int ActivityChooserView_initialActivityCount -com.google.android.gms.common.api.UnsupportedApiCallException: java.lang.String getMessage() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: float unitFactor -android.didikee.donate.R$dimen: int abc_action_bar_subtitle_top_margin_material -androidx.constraintlayout.widget.R$id: int topPanel -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void request(long) -cyanogenmod.hardware.DisplayMode: java.lang.String name -james.adaptiveicon.R$dimen: int abc_action_bar_stacked_tab_max_width -com.amap.api.location.DPoint: void setLatitude(double) -com.tencent.bugly.proguard.f: boolean m -wangdaye.com.geometricweather.R$id: int item_card_display_title -androidx.customview.R$dimen: int notification_right_icon_size -com.jaredrummler.android.colorpicker.R$styleable: int Preference_singleLineTitle -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.R$array: int speed_units -okhttp3.internal.cache.DiskLruCache: boolean $assertionsDisabled -com.google.android.material.appbar.AppBarLayout$BaseBehavior: AppBarLayout$BaseBehavior(android.content.Context,android.util.AttributeSet) -cyanogenmod.app.LiveLockScreenManager: java.lang.String SERVICE_INTERFACE -james.adaptiveicon.R$styleable: int AlertDialog_listItemLayout -com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingLeft -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_switchTextOn -cyanogenmod.app.CustomTile$ExpandedGridItem: CustomTile$ExpandedGridItem() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_indicator_material -com.tencent.bugly.proguard.ap: int hashCode() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon -com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextAppearance(int) -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -androidx.appcompat.widget.ActionBarContainer: ActionBarContainer(android.content.Context,android.util.AttributeSet) -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoDestination -com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getSupportBackgroundTintList() -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_dependency -com.google.android.material.R$id: int left -james.adaptiveicon.R$styleable: int AppCompatTheme_panelBackground -wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Alert -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean speed -androidx.preference.R$styleable: int AppCompatTheme_panelMenuListTheme -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_NoActionBar -com.google.android.material.R$styleable: int KeyAttribute_android_translationX -android.didikee.donate.R$style: int Widget_AppCompat_ButtonBar -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SeekBar_Discrete -com.xw.repo.bubbleseekbar.R$attr: int searchHintIcon -retrofit2.adapter.rxjava2.HttpException: HttpException(retrofit2.Response) -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_27 -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMargins -cyanogenmod.weather.WeatherLocation$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.preference.R$color: int background_floating_material_light -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: long serialVersionUID -androidx.lifecycle.LiveDataReactiveStreams: androidx.lifecycle.LiveData fromPublisher(org.reactivestreams.Publisher) -wangdaye.com.geometricweather.R$string: int content_des_swipe_left_to_delete -androidx.appcompat.resources.R$id: int accessibility_custom_action_31 -com.github.rahatarmanahmed.cpv.R$bool -okhttp3.internal.http2.Http2Stream: boolean isOpen() -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTimestamp(long) -james.adaptiveicon.R$color: int background_material_light -okhttp3.internal.http2.Http2Connection$PingRunnable: okhttp3.internal.http2.Http2Connection this$0 -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onPanelClosed(int,android.view.Menu) -io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver valueOf(java.lang.String) -androidx.viewpager2.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean content -androidx.appcompat.R$styleable: int ActionBar_titleTextStyle -okhttp3.internal.http2.Header: int hpackSize -android.didikee.donate.R$style: int AlertDialog_AppCompat -android.didikee.donate.R$dimen: int abc_dialog_fixed_height_major -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String pubTime -androidx.lifecycle.AbstractSavedStateViewModelFactory: android.os.Bundle mDefaultArgs -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -okio.GzipSink: java.util.zip.Deflater deflater -wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacingVertical -androidx.appcompat.R$styleable: int SearchView_queryHint -cyanogenmod.providers.CMSettings$Secure: java.lang.String WEATHER_PROVIDER_SERVICE -com.bumptech.glide.load.HttpException: int UNKNOWN -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: java.lang.Object poll() -androidx.preference.R$drawable: int abc_item_background_holo_light -com.xw.repo.bubbleseekbar.R$attr: int actionModeSelectAllDrawable -com.amap.api.fence.GeoFence: long p -wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_percent -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_checkableBehavior -androidx.appcompat.R$id: int accessibility_custom_action_26 -androidx.preference.R$color: int accent_material_dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: double Value -wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line1_head_interpolator -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTag -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Large -androidx.legacy.coreutils.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_medium_material -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language GREEK -okhttp3.internal.http.HttpCodec: void cancel() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getEn_US() -androidx.constraintlayout.widget.R$attr: int dialogCornerRadius -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf -androidx.lifecycle.LifecycleDispatcher -androidx.preference.R$id: int activity_chooser_view_content -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_4 -androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderPackage -com.jaredrummler.android.colorpicker.R$attr: int color -androidx.viewpager2.R$id: int icon_group -wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar -com.google.android.material.R$attr: int layout_goneMarginTop -okhttp3.internal.http.HttpHeaders: java.util.List parseChallenges(okhttp3.Headers,java.lang.String) -okhttp3.Cookie: boolean hostOnly() -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_INACTIVE -com.google.android.material.R$styleable: int[] CardView -androidx.appcompat.R$dimen: int abc_list_item_height_material -com.google.android.material.R$attr: int round -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constrainedHeight -cyanogenmod.app.PartnerInterface: java.lang.String TAG -androidx.coordinatorlayout.R$attr: int fontStyle -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_gradientRadius -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollEnabled -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMark -com.google.android.material.R$layout: int abc_expanded_menu_layout -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX() -androidx.appcompat.R$dimen: int compat_notification_large_icon_max_height -com.turingtechnologies.materialscrollbar.R$color -androidx.preference.R$dimen: int disabled_alpha_material_light -androidx.legacy.coreutils.R$dimen -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarDivider -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: wangdaye.com.geometricweather.location.services.LocationService$LocationCallback val$callback -androidx.viewpager.widget.ViewPager: void setScrollState(int) -com.google.android.material.R$style: int Theme_AppCompat_CompactMenu -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_72 -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String WidgetPhrase -wangdaye.com.geometricweather.R$color: int ripple_material_dark -com.google.android.material.R$id: int material_textinput_timepicker -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_card -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void run() -com.xw.repo.bubbleseekbar.R$attr: int bsb_max -io.reactivex.internal.util.VolatileSizeArrayList: boolean contains(java.lang.Object) -com.bumptech.glide.integration.okhttp.R$drawable: int notification_template_icon_bg -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$string: int about_page_indicator -com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_CheckBox -com.google.android.gms.base.R$color: R$color() -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: BlockingObservableIterable$BlockingObservableIterator(int) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_weight -cyanogenmod.app.ProfileGroup: int describeContents() -io.reactivex.internal.util.VolatileSizeArrayList: boolean addAll(java.util.Collection) -wangdaye.com.geometricweather.common.basic.models.weather.Wind: Wind(java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String) -com.google.android.material.R$styleable: int Constraint_android_minHeight -wangdaye.com.geometricweather.R$attr: int fabCradleRoundedCornerRadius -okio.RealBufferedSource: java.lang.String readUtf8Line() -androidx.constraintlayout.widget.R$id: int autoCompleteToEnd -androidx.hilt.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.preference.R$style: int Theme_AppCompat -io.reactivex.internal.subscriptions.BasicQueueSubscription: void cancel() -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_BottomSheetDialog -wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_width_minor -com.jaredrummler.android.colorpicker.R$anim: int abc_fade_out -androidx.recyclerview.R$id: int accessibility_custom_action_21 -okio.AsyncTimeout: long remainingNanos(long) -wangdaye.com.geometricweather.R$drawable: int weather_snow_1 -com.bumptech.glide.integration.okhttp.R$id: int none -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: long EndEpochDate -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,long) -wangdaye.com.geometricweather.R$attr: int popupMenuStyle -cyanogenmod.alarmclock.CyanogenModAlarmClock -androidx.activity.R$dimen: int notification_small_icon_background_padding -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onNext(java.lang.Object) -android.didikee.donate.R$dimen: int abc_dialog_fixed_height_minor -com.turingtechnologies.materialscrollbar.R$drawable: R$drawable() -androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$drawable: int flag_ar -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder sslSocketFactory(javax.net.ssl.SSLSocketFactory,javax.net.ssl.X509TrustManager) -io.reactivex.internal.observers.DeferredScalarObserver: void dispose() -okhttp3.internal.cache.DiskLruCache: boolean hasJournalErrors -androidx.preference.R$attr: int drawableRightCompat -androidx.appcompat.resources.R$dimen: int notification_top_pad -com.google.gson.stream.JsonReader: int PEEKED_SINGLE_QUOTED_NAME -cyanogenmod.profiles.ConnectionSettings: int getConnectionId() -com.google.android.material.R$styleable: int Tooltip_android_textAppearance -androidx.preference.R$attr: int dependency -okhttp3.internal.http2.PushObserver$1: void onReset(int,okhttp3.internal.http2.ErrorCode) -wangdaye.com.geometricweather.GeometricWeather -com.google.android.material.R$styleable: int ShapeableImageView_shapeAppearance -androidx.drawerlayout.R$attr: int fontProviderFetchTimeout -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: UnicastSubject$UnicastQueueDisposable(io.reactivex.subjects.UnicastSubject) -com.google.android.material.R$dimen: int notification_small_icon_background_padding -androidx.lifecycle.ReportFragment: void onPause() -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: java.lang.String Unit -com.google.android.material.R$styleable: int MaterialCalendarItem_itemShapeAppearance -okhttp3.internal.http.HttpCodec: okhttp3.Response$Builder readResponseHeaders(boolean) -androidx.preference.R$styleable: int[] CoordinatorLayout_Layout -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixTextAppearance -androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_alpha -retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: long read(okio.Buffer,long) -com.jaredrummler.android.colorpicker.R$attr: int goIcon -wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeDescription(java.lang.String) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int RUNNING -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeSplitBackground -okhttp3.ConnectionPool: ConnectionPool() -james.adaptiveicon.R$id: int icon_group -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: boolean cancelled -android.didikee.donate.R$styleable: int SearchView_commitIcon -androidx.appcompat.R$attr: int colorBackgroundFloating -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_showMotionSpec -com.google.android.material.R$styleable: int Slider_android_enabled -androidx.activity.R$styleable: int GradientColor_android_gradientRadius -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner -com.google.android.material.R$styleable: int AppCompatTheme_panelBackground -androidx.drawerlayout.R$id: int notification_main_column -com.google.android.material.R$attr: int materialCalendarTheme -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeLevel -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object DONE -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_orientation -androidx.preference.R$styleable: int MenuItem_android_checked -androidx.hilt.R$id: int tag_accessibility_heading -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.settings.dialogs.TimeSetterDialog -cyanogenmod.providers.WeatherContract: android.net.Uri AUTHORITY_URI -okio.DeflaterSink: okio.Timeout timeout() -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textSize -com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_android_color -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$id: int asConfigured -wangdaye.com.geometricweather.R$drawable: int flag_it -androidx.appcompat.R$style: int Platform_AppCompat_Light -okhttp3.internal.http2.Http2Connection: void pushHeadersLater(int,java.util.List,boolean) -com.tencent.bugly.crashreport.crash.CrashDetailBean: long F -com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimsShown(boolean) -com.jaredrummler.android.colorpicker.R$attr: int paddingTopNoTitle -androidx.preference.R$attr: int coordinatorLayoutStyle -wangdaye.com.geometricweather.background.polling.work.worker.NormalUpdateWorker: NormalUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) -okhttp3.internal.cache.DiskLruCache$Editor -com.google.android.material.R$id: int month_navigation_previous -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_track_mtrl_alpha -cyanogenmod.app.Profile$ProfileTrigger$1: cyanogenmod.app.Profile$ProfileTrigger createFromParcel(android.os.Parcel) -com.tencent.bugly.crashreport.biz.UserInfoBean: void writeToParcel(android.os.Parcel,int) -androidx.lifecycle.MediatorLiveData$Source: void unplug() -com.tencent.bugly.proguard.an: long e -james.adaptiveicon.R$styleable: int MenuItem_actionProviderClass -wangdaye.com.geometricweather.R$color: int radiobutton_themeable_attribute_color -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_23 -androidx.appcompat.resources.R$id: int tag_accessibility_actions -com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_enforceTextAppearance -wangdaye.com.geometricweather.R$string: int abc_search_hint -androidx.vectordrawable.animated.R$id: int action_container -com.google.android.material.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.R$styleable: int Constraint_android_transformPivotX -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onNext(java.lang.Object) -com.tencent.bugly.proguard.ap: int l -wangdaye.com.geometricweather.R$drawable: int notif_temp_18 -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -cyanogenmod.app.Profile: void validateRingtones(android.content.Context) -com.xw.repo.bubbleseekbar.R$id: int checkbox -androidx.constraintlayout.widget.R$color: int error_color_material_dark -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_UPDATED -androidx.loader.R$styleable: int[] GradientColor -com.google.android.material.R$dimen: int mtrl_calendar_year_corner -androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandle mHandle -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Text -androidx.fragment.R$color: int secondary_text_default_material_light -androidx.constraintlayout.widget.R$drawable: int abc_list_pressed_holo_light -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogPreferredPadding -wangdaye.com.geometricweather.R$styleable: int[] AlertDialog -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul1H -androidx.customview.R$style: int Widget_Compat_NotificationActionContainer -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView_DropDown -cyanogenmod.hardware.CMHardwareManager: byte[] readPersistentBytes(java.lang.String) -com.xw.repo.bubbleseekbar.R$color: int background_material_dark -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_xml -wangdaye.com.geometricweather.R$anim -com.tencent.bugly.proguard.am: java.lang.String o -com.xw.repo.bubbleseekbar.R$integer: R$integer() -com.google.android.material.R$attr: int borderlessButtonStyle -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: ObservableFlatMapMaybe$FlatMapMaybeObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy: ConstraintProxy$StorageNotLowProxy() -com.xw.repo.bubbleseekbar.R$attr: int itemPadding -com.google.android.material.R$styleable: int AppCompatTextView_drawableTintMode -androidx.appcompat.view.menu.ExpandedMenuView -com.google.android.material.R$styleable: int SearchView_android_focusable -com.jaredrummler.android.colorpicker.R$attr: int autoSizeTextType -wangdaye.com.geometricweather.R$attr: int goIcon -okhttp3.CacheControl -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1 -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -com.google.android.material.R$styleable: int[] LinearLayoutCompat -wangdaye.com.geometricweather.R$id: int select_dialog_listview -com.turingtechnologies.materialscrollbar.R$attr: int state_collapsed -cyanogenmod.weather.CMWeatherManager$2: cyanogenmod.weather.CMWeatherManager this$0 -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void dispose() -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onResume() -cyanogenmod.platform.Manifest: Manifest() -androidx.hilt.lifecycle.R$styleable: int FragmentContainerView_android_name -com.xw.repo.bubbleseekbar.R$dimen: int notification_right_side_padding_top -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter close(int,int,java.lang.String) -cyanogenmod.weatherservice.ServiceRequest -com.google.android.material.internal.ForegroundLinearLayout -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: long serialVersionUID -wangdaye.com.geometricweather.R$drawable: int weather_wind_pixel -androidx.core.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$integer: int show_password_duration -com.google.android.material.R$id: int scrollIndicatorDown -com.google.android.material.textfield.TextInputLayout: int getPlaceholderTextAppearance() -cyanogenmod.hardware.CMHardwareManager: boolean checkService() -com.amap.api.location.AMapLocation: java.lang.String toStr(int) -androidx.appcompat.R$styleable: int AppCompatSeekBar_android_thumb -james.adaptiveicon.R$style: int Theme_AppCompat_DialogWhenLarge -com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.common.strategy.a u -androidx.appcompat.app.WindowDecorActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -wangdaye.com.geometricweather.R$styleable: int RecyclerView_reverseLayout -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status IMPLICIT_INITIALIZING -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_98 -okhttp3.internal.http2.Hpack$Writer: void clearDynamicTable() -androidx.appcompat.widget.AppCompatTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) -com.baidu.location.e.l$b: com.baidu.location.e.l$b b -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getLevel() -com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector YEAR -com.jaredrummler.android.colorpicker.ColorPickerDialog: ColorPickerDialog() -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: ObservableConcatMapEager$ConcatMapEagerMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,int,io.reactivex.internal.util.ErrorMode) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginTop -android.didikee.donate.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge -cyanogenmod.profiles.BrightnessSettings -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: long updateTime -com.tencent.bugly.proguard.z: byte[] b(byte[],int,int,java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int checkboxStyle -wangdaye.com.geometricweather.R$styleable: int SwitchImageButton_drawable_res_on -androidx.preference.R$styleable: int AppCompatTheme_dialogCornerRadius -com.google.android.material.R$dimen: int mtrl_navigation_item_shape_horizontal_margin -android.didikee.donate.R$styleable: int Toolbar_titleMarginTop -com.google.android.material.circularreveal.CircularRevealRelativeLayout -wangdaye.com.geometricweather.R$id: int default_activity_button -james.adaptiveicon.R$drawable: int abc_spinner_textfield_background_material -com.amap.api.location.AMapLocationClientOption: long s -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ut -androidx.lifecycle.extensions.R$id: int dialog_button -wangdaye.com.geometricweather.R$id: int item_weather_daily_overview_icon -wangdaye.com.geometricweather.db.entities.LocationEntity: void setWeatherSource(wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Body2 -androidx.viewpager2.R$attr: R$attr() -androidx.loader.R$attr: int font -androidx.appcompat.R$color: int abc_tint_edittext -androidx.appcompat.R$style: int Widget_AppCompat_PopupMenu -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.recyclerview.R$styleable: int GradientColor_android_gradientRadius -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onNext(java.lang.Object) -okhttp3.internal.connection.StreamAllocation: void streamFailed(java.io.IOException) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_editor_absoluteX -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String type -wangdaye.com.geometricweather.R$string: int common_google_play_services_install_title -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display3 -androidx.preference.R$drawable: int abc_ic_menu_overflow_material -cyanogenmod.os.Concierge$ParcelInfo: Concierge$ParcelInfo(android.os.Parcel) -com.bumptech.glide.R$attr: int fontProviderCerts -cyanogenmod.app.CustomTileListenerService: android.os.IBinder onBind(android.content.Intent) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: void setValue(java.util.List) -com.google.gson.stream.JsonWriter: java.lang.String[] HTML_SAFE_REPLACEMENT_CHARS -wangdaye.com.geometricweather.R$id: int item_aqi -wangdaye.com.geometricweather.R$string: int key_weather_source -wangdaye.com.geometricweather.R$string: int tomorrow -io.reactivex.Observable: io.reactivex.Completable concatMapCompletable(io.reactivex.functions.Function,int) -com.google.android.material.R$styleable: int MaterialCalendarItem_itemFillColor -androidx.vectordrawable.R$id: int text -com.google.android.material.chip.Chip: float getChipCornerRadius() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: java.util.List value -com.google.android.material.tabs.TabLayout: android.graphics.drawable.Drawable getTabSelectedIndicator() -com.turingtechnologies.materialscrollbar.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$attr: int boxCornerRadiusTopStart -androidx.preference.R$styleable: int GradientColor_android_centerX -okhttp3.Request$Builder: okhttp3.Request$Builder delete(okhttp3.RequestBody) -okhttp3.internal.http2.Http2Connection$ReaderRunnable -androidx.appcompat.widget.LinearLayoutCompat: void setWeightSum(float) -okhttp3.internal.Util: boolean decodeIpv4Suffix(java.lang.String,int,int,byte[],int) -okhttp3.Protocol: okhttp3.Protocol QUIC -android.didikee.donate.R$style: int Widget_AppCompat_ActionButton_CloseMode -androidx.constraintlayout.widget.R$layout -androidx.appcompat.R$id: int right_side -okhttp3.Dispatcher: void enqueue(okhttp3.RealCall$AsyncCall) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String direction -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_dither -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: int UnitType -androidx.hilt.R$dimen: int notification_small_icon_size_as_large -com.google.android.material.R$dimen: int mtrl_snackbar_padding_horizontal -com.tencent.bugly.proguard.ag: void a(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay[] values() -androidx.cardview.R$attr: int cardMaxElevation -com.google.android.material.R$styleable: int Toolbar_subtitleTextColor -cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getProfileByName(java.lang.String) -com.tencent.bugly.proguard.z: boolean a(java.io.File,java.io.File,int) -com.google.android.material.R$string: int mtrl_picker_text_input_date_hint -android.didikee.donate.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -com.google.android.material.chip.Chip: void setCloseIconStartPaddingResource(int) -androidx.appcompat.R$style: int Widget_AppCompat_ImageButton -com.tencent.bugly.proguard.y: com.tencent.bugly.proguard.y$a c() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric Metric -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context) -okhttp3.EventListener$2: EventListener$2(okhttp3.EventListener) -wangdaye.com.geometricweather.R$string: int content_des_m3 -androidx.vectordrawable.animated.R$attr: int fontVariationSettings -androidx.customview.R$id: R$id() -io.reactivex.internal.observers.InnerQueuedObserver: int fusionMode -androidx.appcompat.R$drawable: int abc_cab_background_internal_bg -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_5 -okhttp3.internal.cache.DiskLruCache: int appVersion -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_background -cyanogenmod.externalviews.KeyguardExternalView: void registerOnWindowAttachmentChangedListener(cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener) -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_icon_vertical_padding_material -com.google.android.material.R$color: int androidx_core_secondary_text_default_material_light -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -com.google.android.material.R$attr: int chipSurfaceColor -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Tooltip -com.bumptech.glide.integration.okhttp3.OkHttpGlideModule -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context) -com.google.android.material.snackbar.SnackbarContentLayout: android.widget.TextView getMessageView() -com.xw.repo.bubbleseekbar.R$layout: int notification_template_part_chronometer -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_right_mtrl_dark -androidx.appcompat.resources.R$styleable: R$styleable() -androidx.preference.R$styleable: int MenuItem_android_title -james.adaptiveicon.R$style: R$style() -com.tencent.bugly.BuglyStrategy: java.lang.String f -retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.reflect.Type responseType() -com.amap.api.fence.GeoFenceManagerBase: void addKeywordGeoFence(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_navigationMode -androidx.appcompat.widget.ActivityChooserView: void setProvider(androidx.core.view.ActionProvider) -okhttp3.internal.Internal: void addLenient(okhttp3.Headers$Builder,java.lang.String) -com.jaredrummler.android.colorpicker.R$id: int search_go_btn -androidx.hilt.work.R$color: int notification_action_color_filter -com.google.android.material.R$styleable: R$styleable() -retrofit2.Converter$Factory: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) -okhttp3.internal.cache2.Relay$RelaySource: okhttp3.internal.cache2.FileOperator fileOperator -androidx.constraintlayout.widget.R$styleable: int MenuView_preserveIconSpacing -okio.AsyncTimeout$1: okio.Timeout timeout() -com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyle -org.greenrobot.greendao.AbstractDao: void deleteByKey(java.lang.Object) -io.reactivex.internal.util.NotificationLite$SubscriptionNotification: long serialVersionUID -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRealFeelTemperature(java.lang.Integer) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonPhaseDescription(java.lang.String) -james.adaptiveicon.R$id: int activity_chooser_view_content -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_android_windowFullscreen -com.google.android.material.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -okhttp3.Call: boolean isCanceled() -android.didikee.donate.R$drawable: int abc_vector_test -wangdaye.com.geometricweather.R$id: int search_voice_btn -okio.Base64: java.lang.String encode(byte[]) -com.google.android.material.slider.RangeSlider: void setLabelBehavior(int) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_2 -okhttp3.Request$Builder: okhttp3.RequestBody body -androidx.lifecycle.extensions.R$attr: int fontWeight -wangdaye.com.geometricweather.R$string: int cpv_presets -okhttp3.internal.ws.RealWebSocket$Close: RealWebSocket$Close(int,okio.ByteString,long) -androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context) -james.adaptiveicon.R$styleable: int[] AppCompatTextHelper -com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_normal -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position position -com.google.android.material.R$attr: int iconStartPadding -androidx.appcompat.widget.Toolbar: void setCollapseIcon(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$attr: int buttonPanelSideLayout -com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_NORMAL -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String getUnit() -wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_layout -android.didikee.donate.R$string: int abc_search_hint -cyanogenmod.util.ColorUtils: int findPerceptuallyNearestColor(int,int[]) -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getMinWidthMinor() -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -retrofit2.KotlinExtensions$await$4$2: kotlinx.coroutines.CancellableContinuation $continuation -com.xw.repo.bubbleseekbar.R$color: int abc_tint_spinner -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarStyle -com.google.android.material.slider.Slider: void setThumbStrokeColor(android.content.res.ColorStateList) -androidx.appcompat.R$dimen: int abc_action_bar_stacked_tab_max_width -retrofit2.BuiltInConverters$StreamingResponseBodyConverter: BuiltInConverters$StreamingResponseBodyConverter() -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: java.lang.Object[] a(java.io.BufferedReader,java.util.regex.Pattern[]) -android.didikee.donate.R$style: int Theme_AppCompat_DialogWhenLarge -cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getActiveProfile() -androidx.work.R$dimen: int compat_control_corner_material -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int prefetch -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: java.lang.Integer direction -com.google.android.material.card.MaterialCardView: void setCardForegroundColor(android.content.res.ColorStateList) -okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean outputFused -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startY -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutSelectorSupport parent -com.google.android.material.R$id: int forever -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: java.lang.String color -com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context,android.util.AttributeSet,int) -retrofit2.ParameterHandler$Field: void apply(retrofit2.RequestBuilder,java.lang.Object) -android.didikee.donate.R$color: int switch_thumb_material_light -com.tencent.bugly.proguard.ar: java.util.ArrayList d -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -androidx.transition.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataTitle -wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_dark -com.jaredrummler.android.colorpicker.R$styleable: int[] LinearLayoutCompat_Layout -com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_Dialog -com.google.android.material.R$dimen: int hint_pressed_alpha_material_dark -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -wangdaye.com.geometricweather.R$attr: int panelBackground -com.google.android.gms.base.R$id: int icon_only -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$x -androidx.lifecycle.ProcessLifecycleOwnerInitializer -com.google.android.material.datepicker.MaterialCalendarGridView -retrofit2.adapter.rxjava2.CallEnqueueObservable: retrofit2.Call originalCall -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.disposables.Disposable upstream -okhttp3.CacheControl: CacheControl(boolean,boolean,int,int,boolean,boolean,boolean,int,int,boolean,boolean,boolean,java.lang.String) -androidx.transition.R$color: int notification_action_color_filter -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton -cyanogenmod.themes.ThemeManager: java.util.Set mProcessingListeners -androidx.preference.R$attr: int alertDialogCenterButtons -okhttp3.internal.http.HttpCodec: okio.Sink createRequestBody(okhttp3.Request,long) -okhttp3.Headers: okhttp3.Headers of(java.util.Map) -androidx.appcompat.R$attr: int listItemLayout -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: int count -com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$style: int Widget_Compat_NotificationActionContainer -retrofit2.ParameterHandler$Headers: void apply(retrofit2.RequestBuilder,java.lang.Object) -androidx.preference.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem -com.google.android.material.R$id: int chip -androidx.viewpager.R$styleable: int FontFamilyFont_fontWeight -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowColor -wangdaye.com.geometricweather.R$id: int notification_big_icon_1 -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListMenuView -androidx.viewpager.widget.PagerTabStrip: boolean getDrawFullUnderline() -android.didikee.donate.R$styleable: int ActionBar_logo -com.google.android.material.R$styleable: int KeyCycle_android_scaleY -wangdaye.com.geometricweather.R$id: int widget_day_sign -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelMenuListTheme -okio.Segment: int pos -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_android_enabled -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType RAW -androidx.appcompat.R$attr: int imageButtonStyle -androidx.preference.R$attr: int thumbTextPadding -wangdaye.com.geometricweather.R$attr: int checkedIconSize -androidx.fragment.R$styleable: int Fragment_android_name -com.tencent.bugly.crashreport.CrashReport: void postCatchedException(java.lang.Throwable) -okhttp3.internal.http2.Http2Connection$2: int val$streamId -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem -wangdaye.com.geometricweather.R$drawable: int widget_card_light_80 -com.tencent.bugly.crashreport.crash.b: java.util.List b() -androidx.lifecycle.ComputableLiveData$3: ComputableLiveData$3(androidx.lifecycle.ComputableLiveData) -androidx.preference.R$attr: int state_above_anchor -cyanogenmod.providers.CMSettings$System: java.lang.String[] LEGACY_SYSTEM_SETTINGS -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundTintList(android.content.res.ColorStateList) -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircle -androidx.appcompat.R$styleable: int View_android_focusable -wangdaye.com.geometricweather.R$attr: int flow_horizontalAlign -io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textColorSearchUrl -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgress(float) -cyanogenmod.app.CustomTile: android.app.PendingIntent deleteIntent -cyanogenmod.app.ThemeVersion$ComponentVersion: int id -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.R$attr: int toolbarId -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActivityChooserView -com.google.android.material.R$styleable: int Layout_android_layout_marginRight -com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_text_padding_left -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderQuery -cyanogenmod.themes.IThemeProcessingListener -androidx.coordinatorlayout.R$id: int accessibility_custom_action_31 -androidx.appcompat.view.menu.CascadingMenuPopup -wangdaye.com.geometricweather.main.dialogs.HourlyWeatherDialog: HourlyWeatherDialog() -androidx.transition.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.AlertEntityDao alertEntityDao -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query -james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -james.adaptiveicon.R$attr: int indeterminateProgressStyle -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixTextColor -com.google.android.material.R$id: int right_icon -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_sync_duration -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_2 -wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_day -cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onBouncerShowing(boolean) -androidx.vectordrawable.R$styleable: int GradientColor_android_gradientRadius -androidx.constraintlayout.widget.R$attr: int flow_verticalGap -android.didikee.donate.R$attr: int windowMinWidthMinor -wangdaye.com.geometricweather.R$styleable: int MockView_mock_diagonalsColor -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -com.google.gson.stream.JsonScope: int EMPTY_DOCUMENT -com.google.android.material.R$layout: int abc_dialog_title_material -android.didikee.donate.R$attr: int theme -androidx.appcompat.resources.R$id: int action_divider -james.adaptiveicon.R$id: int src_in -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: java.lang.String DESCRIPTOR -androidx.vectordrawable.R$string: int status_bar_notification_info_overflow -androidx.appcompat.R$dimen: int abc_edit_text_inset_horizontal_material -com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimVisibleHeightTrigger(int) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableEndCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setTempMax(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemIconSize -com.google.android.material.R$styleable: int AppCompatTheme_editTextColor -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_search_api_material -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl -android.didikee.donate.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -com.google.android.material.R$style: int TextAppearance_Design_Tab -androidx.preference.R$attr: int colorBackgroundFloating -com.google.android.gms.common.internal.zau -com.google.android.material.circularreveal.CircularRevealFrameLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPopupWindowStyle -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String description -com.jaredrummler.android.colorpicker.R$layout: int preference_material -androidx.appcompat.view.menu.ListMenuItemView: void setIcon(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration getPrecipitationDuration() -androidx.activity.R$styleable: int FontFamilyFont_fontStyle -com.google.android.material.R$attr: int fontProviderFetchStrategy -com.google.android.material.R$dimen: int material_clock_period_toggle_height -wangdaye.com.geometricweather.R$string: int path_password_eye -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_title_text -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_label_padding -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -cyanogenmod.themes.ThemeChangeRequest: long getWallpaperId() -okhttp3.RealCall: okhttp3.EventListener eventListener -cyanogenmod.weather.WeatherInfo$1: cyanogenmod.weather.WeatherInfo createFromParcel(android.os.Parcel) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.WeatherEntity) -com.turingtechnologies.materialscrollbar.R$id: int design_bottom_sheet -com.google.android.material.R$layout: int abc_list_menu_item_radio -android.support.v4.os.ResultReceiver: void writeToParcel(android.os.Parcel,int) -com.jaredrummler.android.colorpicker.R$attr: int dialogPreferredPadding -cyanogenmod.profiles.StreamSettings$1: java.lang.Object[] newArray(int) -androidx.viewpager.widget.ViewPager: ViewPager(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int[] AppCompatTextHelper -com.google.android.material.R$style: int Widget_AppCompat_RatingBar_Small -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -androidx.appcompat.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -com.jaredrummler.android.colorpicker.R$dimen: int abc_switch_padding -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -com.amap.api.fence.GeoFence: com.amap.api.location.DPoint n -cyanogenmod.weatherservice.WeatherProviderService: void onConnected() -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer LEFT_VALUE -android.didikee.donate.R$attr: int selectableItemBackground -androidx.transition.R$id: int save_overlay_view -wangdaye.com.geometricweather.R$layout: int widget_day_pixel -androidx.fragment.R$id: int dialog_button -okio.RealBufferedSource: long readHexadecimalUnsignedLong() -androidx.preference.R$anim: int abc_slide_in_top -androidx.constraintlayout.widget.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -com.google.android.material.R$string: int abc_menu_function_shortcut_label -com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetStart -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -com.tencent.bugly.crashreport.common.info.a -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: AccuCurrentResult$Pressure() -androidx.constraintlayout.widget.R$id: int right_icon -android.didikee.donate.R$id: int src_atop -com.tencent.bugly.crashreport.CrashReport: void setCrashRegularFilter(java.lang.String) -okhttp3.ConnectionSpec: okhttp3.ConnectionSpec supportedSpec(javax.net.ssl.SSLSocket,boolean) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult -okhttp3.Request: okhttp3.HttpUrl url -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: double Value -okhttp3.internal.http2.Http2Connection$6: okio.Buffer val$buffer -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: int getMarginBottom() -androidx.hilt.lifecycle.R$id: int text2 -com.xw.repo.bubbleseekbar.R$attr: int contentInsetEnd -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setValue(java.util.List) -com.bumptech.glide.R$color: int ripple_material_light -com.google.android.material.internal.FlowLayout: int getRowCount() -com.google.android.material.timepicker.TimePickerView -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -okio.Segment: okio.Segment prev -cyanogenmod.app.ProfileGroup: void validateOverrideUris(android.content.Context) -cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_COLOR_CALIBRATION -com.xw.repo.bubbleseekbar.R$bool -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingBottom -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.Integer getIndex() -wangdaye.com.geometricweather.R$attr: int counterOverflowTextColor -androidx.constraintlayout.widget.R$dimen: int tooltip_margin -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addFormDataPart(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$string: int phase_third -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: int phenomenonId -wangdaye.com.geometricweather.R$dimen: int design_navigation_max_width -androidx.constraintlayout.widget.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context,android.util.AttributeSet,int) -com.google.gson.stream.JsonReader: int PEEKED_NONE -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onNext(java.lang.Object) -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder name(java.lang.String) -com.google.android.material.R$styleable: int AlertDialog_buttonIconDimen -androidx.coordinatorlayout.R$drawable: int notification_template_icon_low_bg -com.google.android.material.slider.BaseSlider: int getThumbRadius() -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_start_angle -androidx.constraintlayout.widget.R$styleable: int Transform_android_translationZ -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_id -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty24H -androidx.preference.R$attr: int listPreferredItemPaddingLeft -io.reactivex.internal.schedulers.ScheduledRunnable: ScheduledRunnable(java.lang.Runnable,io.reactivex.internal.disposables.DisposableContainer) -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalAlign -androidx.constraintlayout.widget.R$anim: int abc_popup_enter -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status ERROR -okhttp3.OkHttpClient$Builder: okhttp3.Dispatcher dispatcher -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean isDisposed() -wangdaye.com.geometricweather.R$id: int widget_remote -okhttp3.internal.platform.AndroidPlatform$CloseGuard -com.google.android.material.R$styleable: int AppCompatTheme_editTextBackground -com.google.android.material.R$styleable: int LinearLayoutCompat_android_weightSum -wangdaye.com.geometricweather.common.ui.widgets.TagView: int getCheckedBackgroundColor() -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.Integer getCloudCover() -androidx.preference.PreferenceScreen: PreferenceScreen(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int Layout_android_layout_marginLeft -com.tencent.bugly.CrashModule: long a -com.google.android.material.R$styleable: int KeyCycle_android_scaleX -com.xw.repo.bubbleseekbar.R$drawable: int abc_popup_background_mtrl_mult -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat -com.google.android.gms.common.api.ResolvableApiException: ResolvableApiException(com.google.android.gms.common.api.Status) -wangdaye.com.geometricweather.weather.json.mf.MfRainResult: wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position position -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: int getStatus() -com.bumptech.glide.R$attr: int layout_behavior -androidx.preference.R$style: int PreferenceFragment_Material -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionMenuTextAppearance -io.reactivex.Observable: io.reactivex.Observable switchMapMaybe(io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$attr: int height -androidx.work.R$styleable -com.google.android.material.R$id: int month_navigation_bar -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetEnd -androidx.appcompat.R$styleable: int AppCompatTheme_controlBackground -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -cyanogenmod.externalviews.KeyguardExternalView: void unregisterOnWindowAttachmentChangedListener(cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener) +com.google.android.material.R$styleable: int MaterialCalendar_dayInvalidStyle +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemIconTint +com.turingtechnologies.materialscrollbar.R$drawable: int abc_dialog_material_background +wangdaye.com.geometricweather.R$id: int ghost_view_holder +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +okhttp3.internal.cache2.Relay$RelaySource: okio.Timeout timeout() +wangdaye.com.geometricweather.R$styleable: int MaterialButton_cornerRadius +com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitationProbability +android.didikee.donate.R$attr: int actionLayout +com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: void printLog(java.lang.String) +androidx.drawerlayout.R$id: int icon_group +androidx.recyclerview.widget.RecyclerView: void removeOnItemTouchListener(androidx.recyclerview.widget.RecyclerView$OnItemTouchListener) +com.google.android.material.R$id: int accessibility_custom_action_0 +androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context,android.util.AttributeSet,int) +androidx.hilt.R$styleable: int FontFamilyFont_android_fontWeight +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierDirection +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer +retrofit2.converter.gson.GsonResponseBodyConverter: com.google.gson.Gson gson +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int sourceMode +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherSource(java.lang.String) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_11 +wangdaye.com.geometricweather.R$color: int mtrl_textinput_disabled_color +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_60 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust WindGust +com.google.android.material.slider.Slider: int getTrackSidePadding() +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: android.os.IBinder mRemote +cyanogenmod.app.Profile: cyanogenmod.profiles.AirplaneModeSettings getAirplaneMode() +com.google.android.material.R$id: int parentRelative +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String getWeather() +android.didikee.donate.R$id: int chronometer +com.google.android.material.R$style: int Base_Widget_MaterialComponents_Snackbar +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onBouncerShowing(boolean) +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: void onResponse(retrofit2.Call,retrofit2.Response) +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeShareDrawable +androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +com.xw.repo.bubbleseekbar.R$color: int colorAccent +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginRight +android.didikee.donate.R$styleable: int[] AppCompatImageView +com.google.android.material.textfield.TextInputLayout: int getBoxBackgroundColor() +com.google.android.material.R$color: int mtrl_chip_text_color +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemMaxLines +androidx.constraintlayout.widget.R$id: int motion_base +cyanogenmod.providers.DataUsageContract: java.lang.String CONTENT_ITEM_TYPE +wangdaye.com.geometricweather.R$drawable: int abc_tab_indicator_material +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonStyle +androidx.lifecycle.extensions.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.R$styleable: int OnClick_targetId +androidx.lifecycle.ViewModelProvider$OnRequeryFactory +android.didikee.donate.R$attr: int commitIcon +androidx.preference.R$styleable: int AppCompatTheme_actionModeCopyDrawable +androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_material +androidx.fragment.app.DialogFragment: DialogFragment() +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_backgroundTint +androidx.customview.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.R$dimen: int design_snackbar_max_width +com.google.android.material.R$id: int fade +androidx.preference.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.google.android.material.R$styleable: int[] PropertySet +com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorColors(int[]) +cyanogenmod.app.BaseLiveLockManagerService: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +androidx.work.R$attr: int fontWeight +wangdaye.com.geometricweather.R$styleable: int Variant_region_widthLessThan +com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode FIRST_VISIBLE +androidx.constraintlayout.utils.widget.ImageFilterButton: void setRoundPercent(float) +okhttp3.internal.http2.Http2Reader$ContinuationSource: int left +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sun_icon +com.google.android.material.R$attr: int daySelectedStyle +com.google.android.material.R$attr: int checkedChip +com.google.android.material.R$styleable: int KeyTimeCycle_motionTarget +wangdaye.com.geometricweather.R$string: int feedback_delete_succeed +com.jaredrummler.android.colorpicker.R$attr: int textAllCaps +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_searchHintIcon +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_indicator_material +com.google.android.material.chip.Chip: float getChipEndPadding() +com.google.android.material.R$string: int path_password_strike_through +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetLeft +cyanogenmod.providers.CMSettings$Global: long getLongForUser(android.content.ContentResolver,java.lang.String,int) +androidx.constraintlayout.widget.ConstraintLayout: int getMinWidth() +wangdaye.com.geometricweather.R$styleable: int Transform_android_scaleX +com.jaredrummler.android.colorpicker.R$attr: int cpv_dialogTitle +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeCloudCover() +com.turingtechnologies.materialscrollbar.R$attr: int radioButtonStyle +com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_900 +com.jaredrummler.android.colorpicker.R$attr: int dependency +android.didikee.donate.R$drawable: int notification_bg_low_pressed +androidx.constraintlayout.widget.R$attr: int gapBetweenBars +com.google.android.material.R$id: int coordinator +james.adaptiveicon.R$styleable: int TextAppearance_android_shadowColor +okhttp3.internal.platform.Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setIcon(int) +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +james.adaptiveicon.R$style: int Widget_AppCompat_SeekBar_Discrete +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_default +wangdaye.com.geometricweather.R$drawable: int notif_temp_4 +com.bumptech.glide.integration.okhttp.R$id: int end +okio.BufferedSource: long readHexadecimalUnsignedLong() +com.tencent.bugly.proguard.q: void onCreate(android.database.sqlite.SQLiteDatabase) +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: void setTextColors(int) +com.xw.repo.bubbleseekbar.R$attr: int bsb_track_color +james.adaptiveicon.R$color: int material_grey_50 +androidx.appcompat.R$attr: int background +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircle +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setEnabled(boolean) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_track_size +io.reactivex.internal.disposables.EmptyDisposable: boolean isEmpty() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_CBC_SHA +io.reactivex.internal.subscriptions.EmptySubscription: int requestFusion(int) +android.didikee.donate.R$string: int abc_action_menu_overflow_description +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Snapshot get(java.lang.String) +retrofit2.RequestBuilder: java.lang.String PATH_SEGMENT_ALWAYS_ENCODE_SET +wangdaye.com.geometricweather.R$attr: int layout_optimizationLevel +androidx.appcompat.widget.AppCompatSpinner: void setPopupBackgroundDrawable(android.graphics.drawable.Drawable) +com.google.android.material.R$styleable: int Constraint_flow_lastVerticalStyle +com.google.android.gms.common.internal.safeparcel.SafeParcelable: java.lang.String NULL +androidx.dynamicanimation.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextInputEditText +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderDivider +com.google.android.material.R$attr: int cornerSizeTopLeft +okhttp3.internal.io.FileSystem: okhttp3.internal.io.FileSystem SYSTEM +com.google.android.material.R$color: int abc_primary_text_disable_only_material_dark +android.didikee.donate.R$drawable: int abc_btn_radio_material +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean access$702(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,boolean) +android.didikee.donate.R$style: int Base_Theme_AppCompat_DialogWhenLarge +io.reactivex.disposables.ReferenceDisposable: long serialVersionUID +com.baidu.location.e.o: o(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) +wangdaye.com.geometricweather.R$id: int dialog_time_setter_cancel +okhttp3.OkHttpClient: okhttp3.internal.cache.InternalCache internalCache +com.jaredrummler.android.colorpicker.R$style: R$style() +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_disableDependentsState +androidx.hilt.R$id: int tag_screen_reader_focusable +androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_srcCompat +com.google.android.material.R$attr: int circularRadius +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String getDefenseText() +wangdaye.com.geometricweather.R$attr: int color +com.amap.api.location.CoordinateConverter: com.amap.api.location.CoordinateConverter from(com.amap.api.location.CoordinateConverter$CoordType) +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleSwitch +com.xw.repo.bubbleseekbar.R$layout: int abc_activity_chooser_view +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_titleCondensed +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_pivotY +androidx.appcompat.R$styleable: int ViewStubCompat_android_layout +cyanogenmod.providers.CMSettings$Secure: java.lang.String[] NAVIGATION_RING_TARGETS +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlHighlight +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_round +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: ObservableRetryWhen$RepeatWhenObserver(io.reactivex.Observer,io.reactivex.subjects.Subject,io.reactivex.ObservableSource) +androidx.constraintlayout.widget.R$styleable: int OnClick_clickAction +com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean o +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getDesiredWidth() +androidx.appcompat.R$styleable: int GradientColor_android_startY +cyanogenmod.app.CustomTile$ExpandedItem: android.graphics.Bitmap itemBitmapResource +okhttp3.RequestBody$2: void writeTo(okio.BufferedSink) +androidx.appcompat.R$styleable: int Toolbar_title +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void drain() +com.xw.repo.bubbleseekbar.R$id: int progress_circular +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_disableDependentsState +okhttp3.Call$Factory +com.google.gson.stream.JsonWriter: void setLenient(boolean) +com.google.gson.internal.JsonReaderInternalAccess: JsonReaderInternalAccess() +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedReadableDb(char[]) +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$string: int about_greenDAO +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean disposed +android.support.v4.os.IResultReceiver$Stub: android.support.v4.os.IResultReceiver getDefaultImpl() +androidx.recyclerview.R$styleable: int RecyclerView_spanCount +com.google.android.material.R$attr: int itemShapeFillColor +wangdaye.com.geometricweather.R$anim: int popup_show_top_right +androidx.constraintlayout.widget.R$styleable: int MenuView_android_windowAnimationStyle +android.didikee.donate.R$drawable: R$drawable() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 +com.amap.api.fence.GeoFenceManagerBase: android.app.PendingIntent createPendingIntent(java.lang.String) +com.tencent.bugly.proguard.a: byte[] a() +james.adaptiveicon.R$styleable: int DrawerArrowToggle_gapBetweenBars +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: int UnitType +androidx.preference.R$attr: int buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog_MinWidth +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView +okhttp3.internal.Util: okhttp3.Headers toHeaders(java.util.List) +com.google.android.material.card.MaterialCardView +com.google.android.material.bottomnavigation.BottomNavigationItemView: int getItemPosition() +androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$color: int secondary_text_disabled_material_dark +androidx.appcompat.R$styleable: int Toolbar_collapseContentDescription +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.R$attr: int backgroundInsetBottom +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_subhead_material +androidx.lifecycle.extensions.R$id: int tag_unhandled_key_listeners +android.didikee.donate.R$color: int bright_foreground_disabled_material_light +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: int UnitType +com.google.android.material.R$styleable: int MaterialButtonToggleGroup_checkedButton androidx.appcompat.widget.FitWindowsLinearLayout -retrofit2.Retrofit: java.util.List callAdapterFactories() -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_summaryOff -okhttp3.Cache$CacheResponseBody: okhttp3.internal.cache.DiskLruCache$Snapshot snapshot -androidx.preference.R$attr: int drawableTintMode -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean delayErrors -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_17 -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: long serialVersionUID -androidx.appcompat.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -com.google.android.material.chip.Chip: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -retrofit2.KotlinExtensions$suspendAndThrow$1: KotlinExtensions$suspendAndThrow$1(kotlin.coroutines.Continuation) -com.google.android.material.R$styleable: int ConstraintSet_android_minWidth -com.github.rahatarmanahmed.cpv.CircularProgressView$8 -james.adaptiveicon.R$drawable: int notification_bg -androidx.transition.R$attr: R$attr() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton -com.turingtechnologies.materialscrollbar.R$anim: int design_snackbar_out -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_GCM_SHA384 -wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: int unitArrayIndex -james.adaptiveicon.R$attr: int switchPadding -androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontStyle -com.xw.repo.bubbleseekbar.R$id: int uniform -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeMinTextSize -okhttp3.internal.connection.RouteSelector: boolean hasNext() -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Light -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlActivated -com.google.android.material.R$attr: int buttonTint -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_default -io.reactivex.Observable: io.reactivex.Observable doFinally(io.reactivex.functions.Action) -com.google.android.material.R$style: int TextAppearance_AppCompat_Button -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getUrl() -cyanogenmod.providers.CMSettings$System: int getIntForUser(android.content.ContentResolver,java.lang.String,int) -cyanogenmod.themes.ThemeChangeRequest$Builder: ThemeChangeRequest$Builder() -james.adaptiveicon.R$styleable: int LinearLayoutCompat_showDividers -cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: ILiveLockScreenChangeListener$Stub$Proxy(android.os.IBinder) -james.adaptiveicon.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.appcompat.R$dimen: int abc_list_item_height_large_material -androidx.drawerlayout.R$dimen: int notification_small_icon_size_as_large -com.turingtechnologies.materialscrollbar.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -android.didikee.donate.R$styleable: int ActionBar_popupTheme -androidx.preference.R$styleable: int FragmentContainerView_android_tag -androidx.hilt.R$id: int action_text -com.google.android.material.progressindicator.ProgressIndicator: void setVisibilityAfterHide(int) -retrofit2.SkipCallbackExecutorImpl -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onMenuOpened(int,android.view.Menu) -com.baidu.location.e.l$b: java.lang.String h -androidx.appcompat.R$styleable: int MenuItem_actionViewClass -retrofit2.KotlinExtensions$await$2$2: void onFailure(retrofit2.Call,java.lang.Throwable) -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_steps -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation Elevation -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonStyle -com.google.android.material.R$id: int center -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackTintList() -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver parent -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long end -com.google.android.material.R$styleable: int AppCompatTheme_colorError -com.google.android.material.R$styleable: int KeyAttribute_android_elevation -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_105 -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void drain() -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String level -wangdaye.com.geometricweather.R$attr: int shapeAppearanceLargeComponent -cyanogenmod.providers.CMSettings$Secure: boolean putInt(android.content.ContentResolver,java.lang.String,int) -com.xw.repo.bubbleseekbar.R$id: int right_icon -okhttp3.Cache: int networkCount() -androidx.preference.TwoStatePreference: TwoStatePreference(android.content.Context,android.util.AttributeSet) -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Connection getConnection() -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMargin -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceButton -androidx.preference.R$styleable: int AppCompatTheme_alertDialogTheme -androidx.appcompat.R$id: int accessibility_custom_action_4 -androidx.viewpager.R$styleable: int GradientColor_android_type -james.adaptiveicon.R$styleable: int AppCompatTheme_colorAccent -wangdaye.com.geometricweather.R$drawable: int notif_temp_91 -androidx.appcompat.R$dimen: int abc_dialog_min_width_major -io.reactivex.internal.disposables.DisposableHelper: boolean isDisposed(io.reactivex.disposables.Disposable) -androidx.appcompat.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_scaleX -okhttp3.internal.http.RealInterceptorChain: okhttp3.Call call() -com.amap.api.location.AMapLocationQualityReport: boolean isWifiAble() -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_image_size -io.reactivex.Observable: io.reactivex.Observable concatMapDelayError(io.reactivex.functions.Function,int,boolean) -com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(boolean,java.lang.String) -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type[] values() -com.google.android.material.R$style: int Widget_MaterialComponents_Button -com.google.android.material.R$styleable: int ActionBar_background -james.adaptiveicon.R$styleable: int AppCompatImageView_srcCompat -com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatElevation() -androidx.constraintlayout.widget.R$drawable: int notification_action_background -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.util.Date EndDate -okhttp3.Cookie: java.util.regex.Pattern DAY_OF_MONTH_PATTERN -com.google.gson.stream.JsonWriter: void replaceTop(int) -okhttp3.internal.connection.StreamAllocation: void streamFinished(boolean,okhttp3.internal.http.HttpCodec,long,java.io.IOException) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Snackbar_Message -androidx.constraintlayout.widget.R$attr: int customStringValue -androidx.legacy.content.WakefulBroadcastReceiver -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton -androidx.loader.R$color: int ripple_material_light -wangdaye.com.geometricweather.R$drawable: int abc_list_divider_material -androidx.work.R$styleable: int FontFamilyFont_fontWeight -wangdaye.com.geometricweather.R$dimen: int subtitle_text_size -wangdaye.com.geometricweather.R$drawable: int notif_temp_132 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: double Value -androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context) -androidx.constraintlayout.helper.widget.Flow: void setOrientation(int) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$styleable: int Constraint_android_id -androidx.appcompat.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -okhttp3.CertificatePinner: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner -com.tencent.bugly.proguard.a: a() -wangdaye.com.geometricweather.R$dimen: int abc_progress_bar_height_material -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_corner_radius_material -com.google.gson.FieldNamingPolicy$5: java.lang.String translateName(java.lang.reflect.Field) -okhttp3.internal.publicsuffix.PublicSuffixDatabase: okhttp3.internal.publicsuffix.PublicSuffixDatabase get() -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTextPadding -retrofit2.ParameterHandler$PartMap -com.tencent.bugly.crashreport.crash.anr.b: void a(com.tencent.bugly.crashreport.common.strategy.StrategyBean) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_BACK_BUTTON -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_hideMotionSpec -com.tencent.bugly.proguard.j: void a(int) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: ObservableConcatMapCompletable$ConcatMapCompletableObserver(io.reactivex.CompletableObserver,io.reactivex.functions.Function,io.reactivex.internal.util.ErrorMode,int) -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCopyDrawable -androidx.appcompat.view.menu.MenuPopupHelper -james.adaptiveicon.R$color: int abc_tint_default -androidx.appcompat.R$attr: int fontStyle -androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableItem +com.jaredrummler.android.colorpicker.R$color: int material_deep_teal_500 +wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_tailColor +androidx.appcompat.R$attr: int itemPadding +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_16 +cyanogenmod.weatherservice.ServiceRequestResult$Builder: cyanogenmod.weatherservice.ServiceRequestResult build() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button +wangdaye.com.geometricweather.R$string: int abc_menu_enter_shortcut_label +androidx.preference.R$attr: int fontFamily +wangdaye.com.geometricweather.R$color: int darkPrimary_5 +androidx.vectordrawable.animated.R$dimen: int compat_button_padding_horizontal_material +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarStyle +okhttp3.RealCall: java.io.IOException timeoutExit(java.io.IOException) +cyanogenmod.externalviews.KeyguardExternalView$10: KeyguardExternalView$10(cyanogenmod.externalviews.KeyguardExternalView) +androidx.constraintlayout.widget.VirtualLayout: void setElevation(float) +com.google.android.material.R$attr: int placeholderTextAppearance +com.google.android.material.R$dimen: int material_clock_display_padding +androidx.appcompat.R$string: int abc_action_mode_done +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.b d(com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler) +wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean isEntityUpdateable() +com.amap.api.fence.GeoFenceClient: java.util.List getAllGeoFence() +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayVerticalWidgetConfigActivity +com.turingtechnologies.materialscrollbar.R$drawable: int design_password_eye +com.google.android.material.circularreveal.CircularRevealFrameLayout: CircularRevealFrameLayout(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$id: int search_voice_btn +wangdaye.com.geometricweather.R$attr: int paddingEnd +okhttp3.Cookie: okhttp3.Cookie parse(okhttp3.HttpUrl,java.lang.String) +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: io.reactivex.Observer downstream +androidx.preference.R$attr: int switchPadding +cyanogenmod.weather.CMWeatherManager$1 +wangdaye.com.geometricweather.R$drawable: int ic_cloud +androidx.constraintlayout.widget.R$attr: int customBoolean +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object lpValue() +io.reactivex.Observable: io.reactivex.Observable buffer(java.util.concurrent.Callable) +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_track +wangdaye.com.geometricweather.R$attr: int duration +cyanogenmod.profiles.AirplaneModeSettings: boolean isDirty() +wangdaye.com.geometricweather.R$styleable: int OnSwipe_maxVelocity +james.adaptiveicon.R$id: int action_bar_activity_content +android.didikee.donate.R$id: int line1 +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_editor_absoluteX +okio.AsyncTimeout$2: void close() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator +androidx.appcompat.R$id: int accessibility_custom_action_5 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: double Value +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark +androidx.appcompat.R$string: int abc_activity_chooser_view_see_all +android.didikee.donate.R$bool: int abc_config_actionMenuItemAllCaps +androidx.constraintlayout.widget.R$id: int standard +androidx.lifecycle.ViewModel +com.google.android.material.R$attr: int triggerSlack +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_textOff +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.UV getUV() +com.google.android.gms.internal.location.zzbe +okio.Buffer: void flush() +wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacingHorizontal +com.tencent.bugly.crashreport.common.info.b: java.lang.String a() +io.reactivex.Observable: io.reactivex.Observable error(java.util.concurrent.Callable) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour PastHour +androidx.appcompat.widget.ActionMenuPresenter$SavedState: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_Solid +androidx.viewpager.R$attr: int font +com.turingtechnologies.materialscrollbar.R$attr: int textAppearancePopupMenuHeader +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getGrassIndex() +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_BottomSheetDialog +com.google.android.material.R$dimen: int mtrl_calendar_navigation_height +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver +androidx.preference.R$styleable: int RecycleListView_paddingBottomNoButtons +wangdaye.com.geometricweather.R$string: int content_des_moonset +androidx.hilt.work.R$drawable: int notification_bg_low_pressed +okhttp3.CertificatePinner: CertificatePinner(java.util.Set,okhttp3.internal.tls.CertificateChainCleaner) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +androidx.lifecycle.LiveData: java.lang.Object getValue() +com.google.android.material.tabs.TabLayout: void setInlineLabelResource(int) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Caption +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BACKGROUND +wangdaye.com.geometricweather.db.entities.DailyEntity: int getNighttimeTemperature() +com.google.android.material.R$id: int tag_unhandled_key_listeners +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sColorValidator +cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile[] getProfiles() +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object readKey(android.database.Cursor,int) +androidx.appcompat.widget.AppCompatCheckedTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +com.google.android.material.R$styleable: int ProgressIndicator_android_indeterminate +okio.RealBufferedSink +io.reactivex.Observable: io.reactivex.Single elementAtOrError(long) +wangdaye.com.geometricweather.R$color: int mtrl_chip_surface_color +wangdaye.com.geometricweather.R$color: int mtrl_outlined_icon_tint +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: android.content.Context b +androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context,android.util.AttributeSet) +okhttp3.internal.connection.ConnectionSpecSelector: okhttp3.ConnectionSpec configureSecureSocket(javax.net.ssl.SSLSocket) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow +retrofit2.OkHttpCall$NoContentResponseBody: okhttp3.MediaType contentType +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_NoActionBar +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getFillAlpha() +retrofit2.HttpServiceMethod: retrofit2.HttpServiceMethod parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method,retrofit2.RequestFactory) +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_MAX_INDEX +james.adaptiveicon.R$styleable: int ActionBar_contentInsetLeft +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_removeNotificationGroup +io.reactivex.internal.util.AtomicThrowable: boolean addThrowable(java.lang.Throwable) +androidx.vectordrawable.animated.R$layout: int notification_action +androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationZ +androidx.lifecycle.LifecycleDispatcher: java.util.concurrent.atomic.AtomicBoolean sInitialized +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEV_FORCE_SHOW_NAVBAR +wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedIndex(java.lang.Integer) +androidx.core.widget.ContentLoadingProgressBar: ContentLoadingProgressBar(android.content.Context) +androidx.legacy.coreutils.R$id: int icon_group +okhttp3.Headers: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWeatherEnd() +androidx.legacy.coreutils.R$id: int blocking +james.adaptiveicon.R$styleable: int AppCompatTheme_activityChooserViewStyle +james.adaptiveicon.R$styleable: int Toolbar_logo +com.jaredrummler.android.colorpicker.R$id: int action_bar_title +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_toLeftOf +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_content_inset_with_nav +com.jaredrummler.android.colorpicker.R$id: int textSpacerNoButtons +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.functions.Function mapper +cyanogenmod.externalviews.ExternalViewProviderService: boolean DEBUG +com.google.android.material.R$animator: int mtrl_extended_fab_hide_motion_spec +wangdaye.com.geometricweather.R$attr: int chipEndPadding +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +wangdaye.com.geometricweather.R$styleable: int MaterialButton_shapeAppearanceOverlay +androidx.work.impl.WorkManagerInitializer +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +james.adaptiveicon.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +wangdaye.com.geometricweather.R$color: int abc_tint_edittext +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_disableDependentsState +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Inverse +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getIconTint() +androidx.preference.R$attr: int actionModeShareDrawable +wangdaye.com.geometricweather.R$attr: int backgroundInsetEnd +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +wangdaye.com.geometricweather.R$dimen: int hint_pressed_alpha_material_dark +android.didikee.donate.R$dimen: int abc_search_view_preferred_height +androidx.loader.R$id: int blocking +com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Subtitle2 +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_light +okhttp3.internal.http2.Http2Stream$FramingSink: Http2Stream$FramingSink(okhttp3.internal.http2.Http2Stream) +androidx.appcompat.R$styleable: int GradientColor_android_endY +james.adaptiveicon.R$layout: int notification_template_custom_big +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void dispose() +io.reactivex.internal.queue.SpscArrayQueue: java.util.concurrent.atomic.AtomicLong consumerIndex +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Button +androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_material +com.xw.repo.bubbleseekbar.R$id: int icon +androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar +com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_LOW +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.R$styleable: int Preference_android_summary +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Item +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul12H +wangdaye.com.geometricweather.R$attr: int layout_constraintEnd_toEndOf +androidx.vectordrawable.R$id: int accessibility_custom_action_17 +androidx.appcompat.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: long serialVersionUID +androidx.cardview.widget.CardView: void setUseCompatPadding(boolean) +androidx.hilt.lifecycle.R$drawable: int notification_bg_normal +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_enterFadeDuration +com.xw.repo.bubbleseekbar.R$attr: int contentInsetEnd +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtendMotionSpecResource(int) +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceLargePopupMenu +com.turingtechnologies.materialscrollbar.R$color: int highlighted_text_material_light +com.google.android.material.R$dimen: int fastscroll_minimum_range +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_alpha +com.google.gson.stream.JsonReader: boolean nextBoolean() +cyanogenmod.app.CustomTile: java.lang.String access$302(cyanogenmod.app.CustomTile,java.lang.String) +androidx.preference.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +androidx.appcompat.R$attr: int tooltipFrameBackground +com.turingtechnologies.materialscrollbar.R$integer: int bottom_sheet_slide_duration +com.turingtechnologies.materialscrollbar.R$attr: int hideMotionSpec +androidx.work.R$styleable: int GradientColorItem_android_offset +androidx.preference.R$styleable: int PreferenceImageView_maxWidth +androidx.appcompat.widget.ActionBarOverlayLayout: void setShowingForActionMode(boolean) +okhttp3.internal.http2.PushObserver: boolean onData(int,okio.BufferedSource,int,boolean) +androidx.constraintlayout.widget.R$styleable: int[] Constraint +androidx.preference.R$styleable: int TextAppearance_android_shadowColor +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_fragment +androidx.work.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$attr: int boxCornerRadiusTopEnd +wangdaye.com.geometricweather.R$drawable: int notif_temp_54 +wangdaye.com.geometricweather.R$array: int automatic_refresh_rate_values +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_background +androidx.swiperefreshlayout.R$string: R$string() +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationVoice(android.content.Context,float) +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,byte[],int,int) +wangdaye.com.geometricweather.R$styleable: int[] ActionBar +com.google.android.material.bottomnavigation.BottomNavigationView: android.view.Menu getMenu() +androidx.transition.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenText(android.content.Context,java.lang.Integer) +wangdaye.com.geometricweather.R$attr: int daySelectedStyle +com.bumptech.glide.R$layout: int notification_action_tombstone +com.google.android.gms.common.api.Scope +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String weatherSource +wangdaye.com.geometricweather.R$attr: int flow_wrapMode +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +wangdaye.com.geometricweather.R$attr: int bottom_text +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String getWeatherText() +com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace DISPLAY_P3 +androidx.lifecycle.ClassesInfoCache$CallbackInfo +com.turingtechnologies.materialscrollbar.R$bool: int mtrl_btn_textappearance_all_caps +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Time +okhttp3.internal.ws.RealWebSocket: void initReaderAndWriter(java.lang.String,okhttp3.internal.ws.RealWebSocket$Streams) +androidx.coordinatorlayout.R$color +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMinWidth +okhttp3.internal.http2.Hpack$Writer: int headerCount +cyanogenmod.app.CustomTile$1: cyanogenmod.app.CustomTile createFromParcel(android.os.Parcel) +com.google.android.gms.common.api.internal.zaab: void registerConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) +retrofit2.BuiltInConverters$ToStringConverter: java.lang.String convert(java.lang.Object) +com.bumptech.glide.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Integer getAqiIndex() +com.jaredrummler.android.colorpicker.R$attr: int fontProviderFetchStrategy +okhttp3.Cache$1: okhttp3.Response get(okhttp3.Request) +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: int retries +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ACTIVE +com.google.android.material.R$dimen: int mtrl_calendar_header_content_padding +com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode valueOf(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int LoadingImageView_imageAspectRatio +androidx.fragment.app.FragmentState: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$styleable: int Layout_android_layout_marginLeft +androidx.preference.R$styleable: int SeekBarPreference_updatesContinuously +com.jaredrummler.android.colorpicker.R$layout: int select_dialog_multichoice_material +com.baidu.location.indoor.c: boolean add(java.lang.Object) +android.didikee.donate.R$styleable: int MenuItem_tooltipText +android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_3 +androidx.viewpager.widget.PagerTabStrip: void setDrawFullUnderline(boolean) +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void c(boolean) +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void dispose() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean Summary +com.google.android.material.R$styleable: int MaterialCardView_checkedIconTint +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorButtonNormal +cyanogenmod.hardware.ThermalListenerCallback: ThermalListenerCallback() +com.google.android.material.slider.Slider: void setStepSize(float) +wangdaye.com.geometricweather.R$layout: int preference_category_material +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type getOwnerType() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetHourlyEntityList() +com.google.android.material.R$style: int Theme_AppCompat_DayNight_NoActionBar +okhttp3.Cache: long maxSize() +wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_end +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: java.lang.String icon +com.google.android.material.R$attr: int tabContentStart +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +androidx.preference.R$id: int icon +androidx.appcompat.R$attr: int actionBarSplitStyle +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_state_dragged +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_scaleY +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver +okhttp3.internal.cache.CacheStrategy: okhttp3.Request networkRequest +com.tencent.bugly.crashreport.common.info.b: b() +io.reactivex.internal.disposables.ArrayCompositeDisposable: boolean setResource(int,io.reactivex.disposables.Disposable) +androidx.preference.R$attr: int actionViewClass +com.tencent.bugly.crashreport.common.info.a: java.lang.Object ax +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Large_Inverse +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline1 +okhttp3.HttpUrl: boolean isHttps() +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_LargeComponent +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_logo +com.tencent.bugly.proguard.u: u(android.content.Context) +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCopyDrawable +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle getInstance(java.lang.String) +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +okhttp3.Handshake: okhttp3.Handshake get(javax.net.ssl.SSLSession) +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moon +com.tencent.bugly.crashreport.common.info.a: java.lang.String j +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mRingerMode +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: MfWarningsResult$WarningMaxCountItems() +com.google.android.material.R$style: int Theme_AppCompat_Light_NoActionBar +com.google.gson.LongSerializationPolicy +androidx.constraintlayout.widget.R$color: int abc_tint_switch_track +com.google.android.material.R$id: int material_timepicker_container +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.db.entities.DailyEntity: float hoursOfSun +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Small +wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_range +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_entryValues +com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginStart +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarSize +com.tencent.bugly.proguard.aj: java.lang.String b +james.adaptiveicon.R$dimen: int abc_control_inset_material +android.didikee.donate.R$styleable: int ActionBar_subtitleTextStyle +androidx.constraintlayout.widget.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.R$drawable: int abc_item_background_holo_light +com.google.android.material.R$attr: int closeIconStartPadding +okhttp3.OkHttpClient$Builder: int pingInterval +androidx.lifecycle.Lifecycling: androidx.lifecycle.GeneratedAdapter createGeneratedAdapter(java.lang.reflect.Constructor,java.lang.Object) +android.didikee.donate.R$id: int tabMode +androidx.appcompat.R$color: int background_material_dark +wangdaye.com.geometricweather.R$color: int mtrl_filled_icon_tint +io.reactivex.Observable: io.reactivex.Observable concatArrayEager(int,int,io.reactivex.ObservableSource[]) +androidx.appcompat.view.menu.ActionMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPublishTime(long) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language[] values() +androidx.work.R$id: int accessibility_custom_action_21 +wangdaye.com.geometricweather.R$attr: int itemStrokeColor +wangdaye.com.geometricweather.R$id: int widget_day_week_weather +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_STOP +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String THEME_ID +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long serialVersionUID +androidx.vectordrawable.animated.R$id: int tag_accessibility_clickable_spans +androidx.viewpager2.R$drawable: int notification_bg +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_behavior +androidx.appcompat.R$attr: int showDividers +wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() +com.amap.api.fence.GeoFence: void setExpiration(long) +androidx.constraintlayout.widget.R$drawable: int abc_list_pressed_holo_light +okhttp3.internal.connection.RouteException: java.io.IOException firstException +androidx.coordinatorlayout.R$dimen: int notification_top_pad_large_text +com.google.android.material.R$anim: int abc_grow_fade_in_from_bottom +androidx.transition.R$styleable: int FontFamily_fontProviderFetchTimeout +com.tencent.bugly.proguard.u: byte[] b(byte[]) +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_keyline +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCity +android.didikee.donate.R$color: int primary_text_default_material_dark io.reactivex.Observable: io.reactivex.Observable zipIterable(java.lang.Iterable,io.reactivex.functions.Function,boolean,int) -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 -androidx.preference.SeekBarPreference -com.tencent.bugly.BuglyStrategy: java.lang.String b -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleTintMode -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType UpdateInTxIterable -cyanogenmod.providers.CMSettings$2: boolean validate(java.lang.String) -cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(int,int,boolean) -com.xw.repo.bubbleseekbar.R$styleable -wangdaye.com.geometricweather.R$styleable: int Preference_title -androidx.preference.R$style: int Base_V26_Theme_AppCompat_Light -com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearanceInactive -com.google.android.material.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarButtonStyle -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(java.lang.Iterable,io.reactivex.functions.Function) -androidx.work.R$dimen -com.google.android.material.R$styleable: int[] SwitchMaterial -androidx.hilt.work.R$drawable: int notification_template_icon_low_bg -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onNext(java.lang.Object) -androidx.core.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_arrowShaftLength -io.reactivex.Observable: io.reactivex.Observable empty() -cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri mDownloadUri -wangdaye.com.geometricweather.R$attr: int navigationMode -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_percent -androidx.appcompat.R$styleable: int AnimatedStateListDrawableItem_android_id -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String brandId -androidx.constraintlayout.widget.R$styleable: int[] ActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction Direction -androidx.constraintlayout.motion.widget.MotionLayout: long getNanoTime() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_TextInputEditText -okhttp3.internal.http2.Http2Reader: void readHeaders(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver -androidx.dynamicanimation.R$id: int icon -io.reactivex.Observable: java.lang.Object blockingLast() -james.adaptiveicon.R$style: int Base_V22_Theme_AppCompat_Light -okhttp3.logging.LoggingEventListener: void secureConnectEnd(okhttp3.Call,okhttp3.Handshake) -okhttp3.internal.http2.Http2Reader: boolean client -androidx.recyclerview.R$dimen: int notification_content_margin_start -com.turingtechnologies.materialscrollbar.R$attr: int track -com.google.android.material.R$drawable: int abc_list_selector_holo_light -androidx.lifecycle.ViewModelProviders -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_editor_absoluteY -okhttp3.internal.Util: int checkDuration(java.lang.String,long,java.util.concurrent.TimeUnit) -io.reactivex.Observable: io.reactivex.Observable skipLast(int) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onSuccess(java.lang.Object) -androidx.vectordrawable.R$dimen: R$dimen() -androidx.vectordrawable.animated.R$styleable: R$styleable() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowMinWidthMajor -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onKeyguardShowing(boolean) -android.didikee.donate.R$dimen: int notification_big_circle_margin -android.didikee.donate.R$color: int primary_material_light -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTint -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getUvLevel() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ButtonBar -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setEnableNativeCrashMonitor(boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarWidgetTheme -okhttp3.HttpUrl$Builder: java.lang.String host -androidx.vectordrawable.animated.R$id: int time -androidx.appcompat.R$style: int Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$styleable: int Preference_android_singleLineTitle -androidx.fragment.R$id: int accessibility_custom_action_3 -androidx.vectordrawable.R$styleable -okhttp3.ConnectionSpec$Builder: ConnectionSpec$Builder(boolean) -wangdaye.com.geometricweather.R$styleable: int Transform_android_rotationY -wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_hovered_alpha -wangdaye.com.geometricweather.R$attr: int autoSizeTextType -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xntd -com.google.gson.internal.LazilyParsedNumber: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int weather_thunder_1 -cyanogenmod.providers.CMSettings$NameValueCache: android.content.IContentProvider mContentProvider -androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveDataInternal(java.lang.String,boolean,java.lang.Object) -wangdaye.com.geometricweather.R$attr: int itemShapeAppearance -wangdaye.com.geometricweather.R$styleable: int Constraint_pivotAnchor -wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveShape -wangdaye.com.geometricweather.R$styleable: int MaterialButton_elevation -wangdaye.com.geometricweather.remoteviews.config.Hilt_WeekWidgetConfigActivity -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_item_min_width -com.google.android.material.R$styleable: int BottomAppBar_elevation -wangdaye.com.geometricweather.db.entities.DailyEntity: DailyEntity() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Button -com.tencent.bugly.crashreport.common.info.a: int I() -androidx.lifecycle.Observer -com.google.android.material.R$styleable: int KeyCycle_curveFit -androidx.multidex.MultiDexExtractor$ExtractedDex: long crc -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextView -com.google.android.material.R$styleable: int AppCompatTheme_tooltipFrameBackground -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleContentDescription -androidx.preference.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -com.google.android.material.snackbar.SnackbarContentLayout: SnackbarContentLayout(android.content.Context,android.util.AttributeSet) -okhttp3.internal.http2.Header: boolean equals(java.lang.Object) -okhttp3.internal.cache.DiskLruCache$1 -com.turingtechnologies.materialscrollbar.R$id -cyanogenmod.app.ILiveLockScreenChangeListener$Stub -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.fuseable.SimpleQueue queue -androidx.lifecycle.Transformations$3: Transformations$3(androidx.lifecycle.MediatorLiveData) -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_dialog -androidx.appcompat.R$dimen: int abc_list_item_padding_horizontal_material -com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector[] values() -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver -com.tencent.bugly.BuglyStrategy: void setReplaceOldChannel(boolean) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String dailyForecast -okio.Buffer: okio.Buffer$UnsafeCursor readAndWriteUnsafe(okio.Buffer$UnsafeCursor) -androidx.hilt.work.R$styleable: int[] GradientColor -okio.Okio$2: void close() -com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar_FullWidth -okhttp3.HttpUrl: int pathSize() -okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_FIN -com.jaredrummler.android.colorpicker.R$attr: int seekBarPreferenceStyle -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$string: int content_des_o3 -wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_next_black_24dp +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listDividerAlertDialog +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +androidx.constraintlayout.widget.R$id: int accelerate +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: long subscriberCount +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_UPDATE_TIME +androidx.lifecycle.SavedStateHandle: androidx.savedstate.SavedStateRegistry$SavedStateProvider mSavedStateProvider +androidx.coordinatorlayout.R$drawable: int notification_bg_normal_pressed +android.didikee.donate.R$drawable: int abc_ab_share_pack_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarPositiveButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_backgroundTintMode +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +androidx.coordinatorlayout.R$style: int Widget_Compat_NotificationActionContainer +com.google.android.material.R$styleable: int[] ActionBarLayout +com.jaredrummler.android.colorpicker.R$drawable: int abc_switch_track_mtrl_alpha +cyanogenmod.app.suggest.ApplicationSuggestion +com.tencent.bugly.crashreport.biz.b +androidx.cardview.R$style: int Base_CardView +wangdaye.com.geometricweather.R$attr: int collapseIcon +com.amap.api.location.AMapLocation: int e(com.amap.api.location.AMapLocation,int) +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String WidgetPhrase +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Body1 +androidx.hilt.work.R$id: int accessibility_custom_action_28 +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int requestFusion(int) +androidx.preference.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentHeight +com.google.android.material.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView +androidx.viewpager2.R$id: int accessibility_custom_action_14 +com.google.android.material.chip.Chip: void setGravity(int) +com.google.android.material.R$styleable: int[] DrawerArrowToggle +androidx.fragment.R$id: int notification_main_column +com.bumptech.glide.integration.okhttp.R$attr: int statusBarBackground +com.tencent.bugly.crashreport.common.info.b: java.lang.String b(android.content.Context) +wangdaye.com.geometricweather.R$attr: int actionModeCloseDrawable +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitationProbability +androidx.dynamicanimation.R$styleable: int GradientColor_android_startColor +com.jaredrummler.android.colorpicker.R$styleable: int[] ListPopupWindow +wangdaye.com.geometricweather.R$drawable: int flag_de +com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.StrategyBean b(com.tencent.bugly.crashreport.common.strategy.a) +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.util.List _queryWeatherEntity_MinutelyEntityList(java.lang.String,java.lang.String) +com.google.android.material.R$styleable: int Spinner_android_dropDownWidth +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display3 +com.google.android.material.R$attr: int progressBarStyle +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_STATUS_BAR +cyanogenmod.app.LiveLockScreenManager: LiveLockScreenManager(android.content.Context) +cyanogenmod.media.MediaRecorder +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context,android.util.AttributeSet,int) +androidx.transition.R$attr: int fontStyle +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$FramingSink sink +androidx.preference.R$attr: int buttonStyleSmall +wangdaye.com.geometricweather.R$string: int wind_6 +cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener +okhttp3.OkHttpClient: int callTimeoutMillis() +androidx.appcompat.widget.SwitchCompat: void setThumbTintMode(android.graphics.PorterDuff$Mode) +androidx.constraintlayout.widget.R$attr: int homeAsUpIndicator +wangdaye.com.geometricweather.R$styleable: int Chip_chipBackgroundColor +androidx.appcompat.widget.ActionBarOverlayLayout: void setWindowTitle(java.lang.CharSequence) +com.google.android.gms.location.zzbe: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$dimen: int mtrl_btn_z +okio.Buffer: java.io.InputStream inputStream() +com.google.android.material.R$dimen: int mtrl_calendar_selection_baseline_to_top_fullscreen +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_3 +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Latitude +android.support.v4.os.IResultReceiver$Stub$Proxy: android.support.v4.os.IResultReceiver sDefaultImpl +okhttp3.internal.cache.DiskLruCache$Entry: boolean readable +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit +com.google.android.material.R$drawable: int design_ic_visibility +wangdaye.com.geometricweather.R$styleable: int Constraint_android_visibility +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +okhttp3.Cookie$Builder: long expiresAt +androidx.transition.R$id: int notification_background +com.tencent.bugly.proguard.x: java.lang.String a +androidx.dynamicanimation.R$dimen: int notification_action_text_size +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void innerError(java.lang.Throwable) +androidx.appcompat.R$styleable: int FontFamily_fontProviderQuery +androidx.constraintlayout.widget.R$attr: int listChoiceIndicatorMultipleAnimated com.google.android.material.R$styleable: int DrawerArrowToggle_thickness -com.github.rahatarmanahmed.cpv.CircularProgressView: void setMaxProgress(float) -android.didikee.donate.R$string: int abc_shareactionprovider_share_with_application -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: java.lang.Object poll() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -wangdaye.com.geometricweather.R$drawable: int ic_circle_medium -android.didikee.donate.R$id: int icon_group -okhttp3.internal.http.RequestLine: boolean includeAuthorityInRequestLine(okhttp3.Request,java.net.Proxy$Type) -androidx.appcompat.widget.SwitchCompat: void setSwitchMinWidth(int) -androidx.preference.R$styleable: int AppCompatTheme_panelBackground -cyanogenmod.externalviews.KeyguardExternalView: java.util.LinkedList mQueue -com.tencent.bugly.proguard.p -android.didikee.donate.R$drawable: int abc_ic_menu_share_mtrl_alpha -com.google.android.material.R$color: int material_slider_active_track_color -androidx.constraintlayout.widget.R$attr: int layout_constraintTop_creator -androidx.preference.R$dimen: int preference_icon_minWidth -cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_LIVE_LOCK_SCREEN_COMPONENT -androidx.constraintlayout.widget.R$styleable: int Constraint_visibilityMode -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_text_padding_left -wangdaye.com.geometricweather.R$styleable: int Layout_chainUseRtl -androidx.transition.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabGravity -okhttp3.internal.ws.WebSocketWriter: okio.BufferedSink sink -com.google.gson.stream.JsonReader: int limit -com.tencent.bugly.crashreport.crash.b: int a -androidx.preference.R$styleable: int DialogPreference_dialogIcon -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dialog -okhttp3.internal.http2.Settings: int INITIAL_WINDOW_SIZE -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox -androidx.drawerlayout.R$drawable: int notification_template_icon_bg -androidx.work.impl.foreground.SystemForegroundService -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_4 -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetStart -androidx.preference.R$attr: int textLocale -androidx.lifecycle.LiveData: void dispatchingValue(androidx.lifecycle.LiveData$ObserverWrapper) -androidx.appcompat.widget.AppCompatSpinner: void setSupportBackgroundTintList(android.content.res.ColorStateList) -com.google.android.material.R$id: int mtrl_calendar_selection_frame -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -androidx.preference.R$id: int checkbox -androidx.core.R$id: int tag_unhandled_key_event_manager -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents -androidx.constraintlayout.widget.R$attr: int switchMinWidth -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: android.os.IBinder mRemote -com.google.android.material.internal.ParcelableSparseIntArray: android.os.Parcelable$Creator CREATOR -androidx.core.R$id: int accessibility_custom_action_20 -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.util.AtomicThrowable errors -com.google.android.material.R$attr: int chainUseRtl -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: long EpochRise -com.turingtechnologies.materialscrollbar.R$attr: int pressedTranslationZ -org.greenrobot.greendao.database.DatabaseOpenHelper: void onUpgrade(org.greenrobot.greendao.database.Database,int,int) -com.google.android.material.button.MaterialButton: void setBackgroundResource(int) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf -com.turingtechnologies.materialscrollbar.R$string: int path_password_eye_mask_visible -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_updateDefaultLiveLockScreen -io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.work.R$dimen: int compat_button_inset_vertical_material -com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearanceActive -androidx.preference.R$attr: int tooltipFrameBackground -androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_creator -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitationProbability(java.lang.Float) -androidx.viewpager.widget.PagerTabStrip: void setTextSpacing(int) -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyTopLeft -androidx.transition.R$styleable: int ColorStateListItem_android_alpha -androidx.preference.R$styleable: int ActionBar_backgroundSplit -androidx.activity.R$styleable: int GradientColor_android_tileMode -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_focused_holo -androidx.dynamicanimation.R$dimen: int compat_button_inset_horizontal_material -retrofit2.RequestFactory: boolean hasBody -com.google.android.material.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -androidx.lifecycle.LifecycleService: android.os.IBinder onBind(android.content.Intent) -com.bumptech.glide.R$drawable: int notification_action_background -androidx.core.graphics.drawable.IconCompatParcelizer: void write(androidx.core.graphics.drawable.IconCompat,androidx.versionedparcelable.VersionedParcel) -james.adaptiveicon.R$attr: int listPreferredItemHeightSmall -cyanogenmod.providers.CMSettings$Secure$2 -com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getSupportImageTintMode() -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Time -com.google.android.material.R$styleable: int Constraint_layout_constrainedWidth -wangdaye.com.geometricweather.R$id: int cpv_color_picker_view -com.google.android.material.R$id: int search_mag_icon -com.google.android.material.R$attr: int helperText -okhttp3.WebSocket: boolean close(int,java.lang.String) -androidx.appcompat.R$styleable: int PopupWindow_android_popupBackground -android.didikee.donate.R$attr: int arrowHeadLength -wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat -okio.BufferedSource: java.lang.String readUtf8LineStrict(long) -okhttp3.CertificatePinner$Pin -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Switch -cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemDrawable(int) -cyanogenmod.externalviews.IExternalViewProvider: void onPause() -androidx.swiperefreshlayout.R$attr: int fontProviderFetchStrategy -androidx.core.graphics.drawable.IconCompatParcelizer: androidx.core.graphics.drawable.IconCompat read(androidx.versionedparcelable.VersionedParcel) -cyanogenmod.externalviews.KeyguardExternalViewProviderService: int onStartCommand(android.content.Intent,int,int) -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeAppearanceOverlay -androidx.constraintlayout.widget.R$styleable: int[] ActionBarLayout -com.google.android.material.R$attr: int backgroundInsetEnd -com.google.android.material.chip.Chip: java.lang.CharSequence getCloseIconContentDescription() -okhttp3.internal.platform.Platform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.SSLSocketFactory) -retrofit2.http.PartMap: java.lang.String encoding() -com.google.android.material.slider.Slider: void setThumbElevationResource(int) -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -androidx.fragment.R$styleable: int ColorStateListItem_alpha -james.adaptiveicon.R$styleable: int[] MenuView -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getAlertEntityList() -androidx.appcompat.widget.AppCompatSpinner: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onNext(java.lang.Object) -androidx.hilt.R$dimen: int notification_action_text_size -org.greenrobot.greendao.DaoException: DaoException() -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setWallpaperId(long) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_PREV_VALUE -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_animationMode -androidx.lifecycle.extensions.R$dimen: int notification_main_column_padding_top -com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_NATIVE -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.google.android.material.R$styleable: int AppCompatTheme_textColorSearchUrl -androidx.work.R$id: int accessibility_custom_action_29 -wangdaye.com.geometricweather.R$styleable: int DialogPreference_positiveButtonText -androidx.constraintlayout.widget.R$styleable: int PropertySet_android_visibility -android.didikee.donate.R$style: int Base_V21_Theme_AppCompat -android.didikee.donate.R$styleable: int AppCompatTheme_colorControlHighlight -cyanogenmod.weather.CMWeatherManager$2$1: int val$status -androidx.hilt.lifecycle.R$color: int ripple_material_light -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.MultipartBody$Part) +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIMAX +androidx.drawerlayout.R$drawable: int notify_panel_notification_icon_bg +com.turingtechnologies.materialscrollbar.R$attr: int boxStrokeWidth +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database wrap(android.database.sqlite.SQLiteDatabase) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Small +com.turingtechnologies.materialscrollbar.R$dimen: int abc_floating_window_z +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Spinner +androidx.constraintlayout.widget.R$layout: int notification_template_part_chronometer +com.google.android.material.R$styleable: int MenuItem_numericModifiers +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.Long id +androidx.preference.R$attr: int persistent +androidx.coordinatorlayout.R$attr: int layout_keyline +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String unit +cyanogenmod.providers.CMSettings$CMSettingNotFoundException +androidx.appcompat.widget.AppCompatButton: void setBackgroundResource(int) +james.adaptiveicon.R$color: int switch_thumb_material_dark +com.google.android.material.R$styleable: int FloatingActionButton_rippleColor +androidx.lifecycle.LiveData: void observeForever(androidx.lifecycle.Observer) +com.google.android.material.bottomappbar.BottomAppBar: void setFabAlignmentMode(int) +com.google.android.material.R$attr: int itemTextAppearanceInactive +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorEnabled +com.google.android.material.R$layout: int abc_action_mode_bar +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object getKey(java.lang.Object) +androidx.vectordrawable.R$attr: int fontProviderPackage +androidx.lifecycle.extensions.R$id: int text +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModePasteDrawable +com.jaredrummler.android.colorpicker.R$attr: int actionDropDownStyle +com.xw.repo.bubbleseekbar.R$style: int Platform_V25_AppCompat +wangdaye.com.geometricweather.R$id: int clear_text +androidx.appcompat.R$styleable: int AppCompatTextView_drawableStartCompat +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver parent +com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabTextStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalStyle +androidx.core.graphics.drawable.IconCompat +com.google.android.material.slider.Slider: float getThumbStrokeWidth() +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_layoutManager +androidx.preference.R$attr: int fastScrollHorizontalThumbDrawable +com.google.android.material.R$drawable: int abc_ic_star_black_48dp +com.google.android.material.chip.Chip: void setMaxWidth(int) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_creator +androidx.preference.R$id: int shortcut +retrofit2.Utils: okhttp3.ResponseBody buffer(okhttp3.ResponseBody) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: int status +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder username(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int tabInlineLabel +okio.RealBufferedSink: java.io.OutputStream outputStream() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm10Desc +androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.FragmentActivity,androidx.lifecycle.ViewModelProvider$Factory) +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onComplete() +androidx.preference.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.tencent.bugly.crashreport.crash.c: boolean i +io.reactivex.Observable: io.reactivex.Observable takeUntil(io.reactivex.functions.Predicate) +wangdaye.com.geometricweather.R$attr: int textAppearanceListItemSecondary +com.xw.repo.bubbleseekbar.R$attr: int bsb_always_show_bubble +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onError(java.lang.Throwable) +cyanogenmod.externalviews.ExternalViewProviderService: android.os.IBinder onBind(android.content.Intent) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.util.List getValue() +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getSnow() +androidx.preference.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_toTopOf -com.github.rahatarmanahmed.cpv.BuildConfig: BuildConfig() -com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat_Light -androidx.preference.R$attr: int summaryOff -okhttp3.Response$Builder: okhttp3.Response$Builder request(okhttp3.Request) -androidx.appcompat.R$styleable: int[] GradientColorItem -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver d -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver -com.tencent.bugly.BuglyStrategy$a: byte[] onCrashHandleStart2GetExtraDatas(int,java.lang.String,java.lang.String,java.lang.String) -cyanogenmod.providers.WeatherContract -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean delayErrors -androidx.appcompat.R$color: int foreground_material_light -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotationX -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_defaultQueryHint -wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_container -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_title -com.tencent.bugly.proguard.an: java.lang.String h -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_scaleX -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetRight -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getSummary(android.content.Context,java.util.List) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: androidx.core.graphics.PathParser$PathDataNode[] getPathData() -com.google.android.material.R$styleable: int FloatingActionButton_fabSize -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life life -androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -androidx.appcompat.R$styleable: int MenuItem_android_orderInCategory -androidx.constraintlayout.widget.R$color: int material_grey_100 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ButtonBar -androidx.appcompat.R$styleable: R$styleable() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: ObservableThrottleFirstTimed$DebounceTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker) -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: boolean isDisposed() -com.google.android.material.navigation.NavigationView: int getItemMaxLines() -com.amap.api.fence.GeoFenceClient: GeoFenceClient(android.content.Context) -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_BATTERY_STYLE -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintEnd_toStartOf -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.lang.Throwable error -androidx.appcompat.R$style: int Animation_AppCompat_Tooltip -com.tencent.bugly.crashreport.common.info.a: java.lang.String n -com.google.android.material.R$styleable: int ActionBar_titleTextStyle -com.xw.repo.bubbleseekbar.R$style: int Platform_AppCompat_Light -wangdaye.com.geometricweather.R$drawable: int cpv_preset_checked -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int DISMISSED_STATE -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String Link +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge +com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.R$attr: int customBoolean +com.bumptech.glide.R$drawable +com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getEndIconDrawable() +com.tencent.bugly.proguard.aq: java.lang.String e +com.amap.api.location.APSService: android.os.IBinder onBind(android.content.Intent) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade RealFeelTemperatureShade +com.xw.repo.bubbleseekbar.R$attr: int editTextStyle +com.amap.api.location.AMapLocationClient: void setLocationOption(com.amap.api.location.AMapLocationClientOption) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windSpeed +okhttp3.internal.http2.Http2: byte TYPE_RST_STREAM +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +com.google.android.material.R$attr: int nestedScrollFlags +androidx.appcompat.widget.AppCompatEditText: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onMenuOpened(int,android.view.Menu) +androidx.appcompat.R$styleable: int Spinner_android_entries +com.xw.repo.bubbleseekbar.R$attr: int alertDialogStyle +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_collapseContentDescription +okio.BufferedSource: java.lang.String readString(long,java.nio.charset.Charset) +com.google.android.material.R$drawable: int abc_text_select_handle_left_mtrl_light +com.xw.repo.bubbleseekbar.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +com.tencent.bugly.crashreport.crash.b: b(int,android.content.Context,com.tencent.bugly.proguard.u,com.tencent.bugly.proguard.p,com.tencent.bugly.crashreport.common.strategy.a,com.tencent.bugly.BuglyStrategy$a,com.tencent.bugly.proguard.o) +androidx.viewpager2.R$attr: int fontProviderAuthority +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatHoveredFocusedTranslationZ(float) +wangdaye.com.geometricweather.R$id: int animateToEnd +com.google.android.material.appbar.AppBarLayout: void setLiftOnScroll(boolean) +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_list_padding_top_no_title +okhttp3.internal.cache2.FileOperator +com.amap.api.location.DPoint: DPoint() +com.turingtechnologies.materialscrollbar.R$attr: int tickMarkTintMode +androidx.preference.R$styleable: int PopupWindowBackgroundState_state_above_anchor +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode lvNext() +androidx.appcompat.R$layout: int abc_dialog_title_material +wangdaye.com.geometricweather.main.MainActivity +io.reactivex.internal.subscriptions.BasicQueueSubscription: void request(long) +android.didikee.donate.R$attr: int windowFixedHeightMajor +cyanogenmod.weather.WeatherInfo: java.lang.String getCity() +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.internal.disposables.ArrayCompositeDisposable resources +io.reactivex.Observable: io.reactivex.Observable skipWhile(io.reactivex.functions.Predicate) +androidx.constraintlayout.widget.R$layout: int abc_action_mode_bar +com.google.gson.FieldNamingPolicy +retrofit2.KotlinExtensions$awaitResponse$2$2: kotlinx.coroutines.CancellableContinuation $continuation +android.support.v4.os.ResultReceiver$MyRunnable: ResultReceiver$MyRunnable(android.support.v4.os.ResultReceiver,int,android.os.Bundle) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_seekBarStyle +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +wangdaye.com.geometricweather.R$attr: int iconSize +androidx.preference.R$style: int Widget_AppCompat_ProgressBar_Horizontal +okhttp3.Cookie: java.lang.String value +wangdaye.com.geometricweather.R$attr: int yearTodayStyle +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconVisible +wangdaye.com.geometricweather.R$drawable: int notif_temp_41 +wangdaye.com.geometricweather.R$style: int widget_week_icon +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.R$styleable: int Constraint_android_minWidth +com.turingtechnologies.materialscrollbar.R$attr: int barLength +cyanogenmod.app.BaseLiveLockManagerService$1 +androidx.lifecycle.SingleGeneratedAdapterObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +james.adaptiveicon.R$string: int abc_action_menu_overflow_description +io.reactivex.internal.util.NotificationLite$DisposableNotification: java.lang.String toString() +com.google.android.material.R$layout: int abc_screen_toolbar +retrofit2.RequestBuilder: void addPart(okhttp3.Headers,okhttp3.RequestBody) +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String province +com.google.android.gms.base.R$string: int common_google_play_services_enable_text +wangdaye.com.geometricweather.R$id: int cpv_color_image_view +androidx.lifecycle.LiveData: void setValue(java.lang.Object) +androidx.preference.R$layout: int preference_widget_switch_compat +androidx.lifecycle.extensions.R$styleable: int Fragment_android_tag +wangdaye.com.geometricweather.R$id: int shortcut +wangdaye.com.geometricweather.R$styleable: int CardView_cardBackgroundColor +androidx.dynamicanimation.R$styleable: int[] ColorStateListItem +com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_padding +com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimsShown(boolean) +wangdaye.com.geometricweather.R$styleable: int AlertDialog_showTitle +cyanogenmod.app.ProfileManager: java.lang.String[] getProfileNames() +com.google.android.gms.location.LocationSettingsResult: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$id: int search_bar +com.google.android.material.R$attr: int motionTarget androidx.fragment.R$dimen: int notification_small_icon_size_as_large -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableLeftCompat -wangdaye.com.geometricweather.R$layout: int cpv_dialog_color_picker -wangdaye.com.geometricweather.R$layout: int design_bottom_navigation_item -com.google.android.material.R$styleable: int SearchView_searchHintIcon -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Snackbar -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customPixelDimension -androidx.loader.content.Loader -com.tencent.bugly.proguard.c: void b() -androidx.constraintlayout.motion.widget.MotionLayout: long getTransitionTimeMs() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int IceProbability -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_onClick -androidx.preference.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -okhttp3.Handshake: okhttp3.TlsVersion tlsVersion -androidx.viewpager.widget.PagerTabStrip: void setBackgroundColor(int) -androidx.lifecycle.extensions.R$dimen: int notification_media_narrow_margin -androidx.core.R$drawable -com.google.android.material.R$styleable: int KeyAttribute_motionTarget -wangdaye.com.geometricweather.R$color: int colorTextSubtitle_dark -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf -androidx.appcompat.R$dimen: int hint_pressed_alpha_material_light -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy -com.tencent.bugly.proguard.ak -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: java.lang.String DESCRIPTOR -androidx.preference.R$attr: int indeterminateProgressStyle -androidx.appcompat.widget.ButtonBarLayout: void setAllowStacking(boolean) -com.turingtechnologies.materialscrollbar.R$attr: int tabIconTintMode -okhttp3.internal.http2.Http2Stream$FramingSource: boolean $assertionsDisabled -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onComplete() -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayDetailsWidgetConfigActivity: Hilt_ClockDayDetailsWidgetConfigActivity() -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getPivotX() -androidx.core.R$styleable: int FontFamily_fontProviderCerts -com.jaredrummler.android.colorpicker.R$dimen: int abc_search_view_preferred_height -com.google.android.material.R$id: int masked -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIconTint -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String unit -androidx.preference.R$attr: int textAppearanceListItem -com.tencent.bugly.proguard.q: android.content.Context c -com.tencent.bugly.proguard.s: com.tencent.bugly.proguard.s b -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State STARTED -cyanogenmod.os.Build: java.lang.String CYANOGENMOD_VERSION -androidx.preference.ExpandButton -retrofit2.ParameterHandler$Headers: java.lang.reflect.Method method -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$attr: int chipStyle -wangdaye.com.geometricweather.R$attr: int behavior_skipCollapsed -okhttp3.EventListener: void connectEnd(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol) -com.google.android.material.R$styleable: int NavigationView_itemShapeAppearanceOverlay -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float getMilliMeters(float) -wangdaye.com.geometricweather.R$attr: int fabAnimationMode -androidx.viewpager2.R$dimen: int notification_right_icon_size -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedHeightMinor -androidx.appcompat.R$styleable: int AppCompatTheme_dialogTheme -androidx.preference.R$attr: int listChoiceIndicatorMultipleAnimated -okhttp3.ConnectionSpec$Builder: boolean supportsTlsExtensions -com.github.rahatarmanahmed.cpv.R$attr: R$attr() -com.autonavi.aps.amapapi.model.AMapLocationServer: com.autonavi.aps.amapapi.model.AMapLocationServer h() -wangdaye.com.geometricweather.R$color: int colorLevel_6 -androidx.constraintlayout.widget.ConstraintLayout: void setOnConstraintsChanged(androidx.constraintlayout.widget.ConstraintsChangedListener) -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_background_transition_holo_dark -wangdaye.com.geometricweather.R$styleable: int SearchView_submitBackground -androidx.vectordrawable.animated.R$styleable -androidx.loader.R$attr: int fontWeight -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_statusBarBackground -androidx.appcompat.R$color: int abc_decor_view_status_guard -androidx.appcompat.R$attr: int showText -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.constraintlayout.widget.R$styleable: int Transition_staggered -com.google.android.material.R$styleable: int GradientColor_android_tileMode -androidx.constraintlayout.widget.R$style: int Base_V26_Theme_AppCompat_Light -androidx.preference.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +cyanogenmod.app.Profile: boolean mDirty +com.google.android.material.R$attr: int panelMenuListTheme +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState +james.adaptiveicon.R$dimen: int abc_search_view_preferred_height +androidx.work.R$id: int icon +androidx.constraintlayout.widget.R$id: int wrap_content +androidx.constraintlayout.widget.R$drawable: int notification_icon_background +androidx.constraintlayout.widget.R$styleable: int SearchView_queryHint +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver) +okhttp3.Address: okhttp3.Dns dns() +androidx.hilt.work.R$anim: int fragment_close_enter +com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String c(android.content.Context) +okhttp3.OkHttpClient$Builder: int connectTimeout +com.xw.repo.bubbleseekbar.R$dimen: int abc_list_item_padding_horizontal_material +com.jaredrummler.android.colorpicker.R$string: int v7_preference_on +okhttp3.internal.http2.Http2Stream: void receiveHeaders(java.util.List) +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation LEFT +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView_Menu +com.tencent.bugly.crashreport.biz.UserInfoBean: int b +androidx.constraintlayout.widget.R$dimen: int abc_select_dialog_padding_start_material +androidx.preference.R$string: int abc_menu_sym_shortcut_label +james.adaptiveicon.R$styleable: int ActionBar_subtitleTextStyle +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit H +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display3 +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,boolean) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language CHINESE +androidx.appcompat.R$attr: int listPreferredItemHeightLarge +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$attr: int constraint_referenced_ids +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowRadius +com.google.android.material.R$styleable: int Toolbar_titleTextColor +androidx.appcompat.R$color: int abc_primary_text_disable_only_material_dark +com.google.android.material.R$styleable: int KeyTimeCycle_android_rotationX +androidx.appcompat.R$attr: int selectableItemBackground +androidx.constraintlayout.widget.R$dimen: int abc_dialog_min_width_minor +androidx.swiperefreshlayout.R$color: R$color() +com.google.android.material.R$styleable: int Constraint_layout_constraintEnd_toStartOf +androidx.viewpager2.R$attr: int fontProviderFetchStrategy +org.greenrobot.greendao.AbstractDao: java.lang.Object load(java.lang.Object) +okhttp3.internal.io.FileSystem$1: long size(java.io.File) +wangdaye.com.geometricweather.R$string: int sp_widget_day_week_setting +retrofit2.OkHttpCall: java.lang.Object[] args +wangdaye.com.geometricweather.R$attr: int customFloatValue +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_getCurrentHotwordPackageName +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void dispose() +wangdaye.com.geometricweather.R$id: int textinput_prefix_text +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog +androidx.constraintlayout.widget.R$styleable: int Constraint_android_elevation +com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException +androidx.appcompat.R$attr: int subtitle +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft +com.google.android.material.slider.BaseSlider: void setValuesInternal(java.util.ArrayList) +wangdaye.com.geometricweather.R$animator: int weather_rain_2 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction Direction +androidx.lifecycle.Lifecycling: int resolveObserverCallbackType(java.lang.Class) +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: long serialVersionUID +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService: AwakeForegroundUpdateService() +com.xw.repo.bubbleseekbar.R$anim: R$anim() +androidx.recyclerview.widget.RecyclerView: boolean getClipToPadding() +com.google.android.material.button.MaterialButton: void setCornerRadius(int) +okhttp3.internal.http2.Http2Stream$FramingSource: void close() +wangdaye.com.geometricweather.R$drawable: int notif_temp_22 +wangdaye.com.geometricweather.R$drawable: int notif_temp_95 +com.amap.api.location.AMapLocationClientOption: boolean n +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: MfHistoryResult$History$Snow() +androidx.hilt.R$layout: int notification_template_part_chronometer +okio.ByteString: okio.ByteString toAsciiUppercase() +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_DarkActionBar +com.google.android.material.R$layout: int test_toolbar_custom_background +androidx.customview.R$dimen: int notification_big_circle_margin +com.google.android.material.R$dimen: int design_bottom_navigation_label_padding +androidx.viewpager.R$id: int info +com.jaredrummler.android.colorpicker.R$styleable: int Preference_widgetLayout +androidx.preference.R$styleable: int FontFamilyFont_fontWeight +com.turingtechnologies.materialscrollbar.R$style: int Platform_V25_AppCompat +james.adaptiveicon.R$drawable: R$drawable() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX getBrandInfo() +com.google.android.material.R$dimen: int cardview_default_radius +androidx.constraintlayout.widget.R$attr: int maxHeight +wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_android_background +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: java.util.concurrent.atomic.AtomicInteger active +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast +cyanogenmod.themes.IThemeProcessingListener$Stub: int TRANSACTION_onFinishedProcessing_0 +androidx.lifecycle.ViewModel: void clear() +com.google.android.material.R$attr: int iconPadding +androidx.preference.R$dimen: int abc_action_bar_icon_vertical_padding_material +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_start_padding_icon +com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_ANR +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Hint +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeColor +com.google.android.material.R$styleable: int OnClick_clickAction +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getO3() +cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl mImpl +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_LED_ON_VALIDATOR +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +cyanogenmod.providers.CMSettings$Secure: boolean putInt(android.content.ContentResolver,java.lang.String,int) +wangdaye.com.geometricweather.R$attr: int windowActionModeOverlay +cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileManager getInstance(android.content.Context) +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event[] values() +io.reactivex.internal.schedulers.ScheduledRunnable: int PARENT_INDEX +androidx.cardview.widget.CardView: void setMinimumHeight(int) +com.google.android.material.R$layout: int mtrl_picker_header_toggle +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.ObservableSource source +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_vertical_2lines +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.coordinatorlayout.R$dimen: int compat_button_inset_vertical_material +cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_NORMAL +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.R$attr: int tabMode +com.turingtechnologies.materialscrollbar.R$attr: int headerLayout +com.google.android.material.slider.RangeSlider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconTint +com.google.android.material.R$styleable: int Constraint_layout_constraintRight_toRightOf +okio.Pipe: boolean sinkClosed +okhttp3.logging.LoggingEventListener: void responseHeadersStart(okhttp3.Call) +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() +io.reactivex.internal.util.ArrayListSupplier: java.lang.Object apply(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_orderingFromXml +androidx.appcompat.widget.SwitchCompat: android.content.res.ColorStateList getTrackTintList() +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: java.lang.Object value +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_android_maxWidth +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light_focused +androidx.hilt.R$styleable: int FontFamilyFont_ttcIndex +com.google.android.material.R$styleable: int MaterialButton_shapeAppearance +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$Event downEvent(androidx.lifecycle.Lifecycle$State) +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long,boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: AccuLocationResult$Region() +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorSchemeColors(int[]) +cyanogenmod.power.IPerformanceManager$Stub: cyanogenmod.power.IPerformanceManager asInterface(android.os.IBinder) +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_voiceIcon +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: void endOfInput(java.io.IOException) +wangdaye.com.geometricweather.R$drawable: int design_bottom_navigation_item_background +com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar_Small +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMargin +androidx.preference.R$styleable: int AppCompatTextView_lineHeight +james.adaptiveicon.R$attr: int state_above_anchor +androidx.appcompat.R$style: int Widget_AppCompat_PopupMenu_Overflow +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog_Alert +androidx.constraintlayout.widget.R$drawable: int btn_checkbox_unchecked_mtrl +androidx.coordinatorlayout.R$id: int tag_screen_reader_focusable +com.google.android.material.R$id: int easeInOut +wangdaye.com.geometricweather.R$string: int key_widget_day +wangdaye.com.geometricweather.R$attr: int closeItemLayout +james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_brightness +com.google.android.material.R$style: int TextAppearance_AppCompat_Title_Inverse +androidx.preference.R$string: int abc_activity_chooser_view_see_all +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator USE_EDGE_SERVICE_FOR_GESTURES_VALIDATOR +androidx.preference.Preference: Preference(android.content.Context) +james.adaptiveicon.R$layout: int notification_template_icon_group +androidx.appcompat.R$styleable: int ActionMenuItemView_android_minWidth +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircleAngle +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: long serialVersionUID +retrofit2.ParameterHandler$Path +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorGravity +wangdaye.com.geometricweather.R$styleable: int Layout_layout_editor_absoluteX +androidx.preference.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.google.android.material.R$styleable: int ConstraintSet_flow_verticalAlign +io.reactivex.internal.observers.LambdaObserver: long serialVersionUID +androidx.preference.R$attr: int listPreferredItemPaddingStart +retrofit2.Retrofit$Builder: retrofit2.Retrofit build() +androidx.drawerlayout.R$layout: R$layout() +com.turingtechnologies.materialscrollbar.R$layout: int abc_expanded_menu_layout +wangdaye.com.geometricweather.R$styleable: int TextAppearance_fontFamily +com.turingtechnologies.materialscrollbar.R$attr: int listPopupWindowStyle +james.adaptiveicon.R$attr: int actionBarStyle +com.google.android.material.R$styleable: int AppCompatSeekBar_android_thumb +com.amap.api.location.APSService: void onDestroy() +com.xw.repo.bubbleseekbar.R$attr: int windowMinWidthMajor +com.jaredrummler.android.colorpicker.R$id: int action_bar +com.google.android.material.R$styleable: int Constraint_android_layout_marginRight +wangdaye.com.geometricweather.R$styleable: int[] CollapsingToolbarLayout_Layout +com.xw.repo.bubbleseekbar.R$color: int abc_tint_seek_thumb +androidx.preference.R$styleable: int FontFamilyFont_fontVariationSettings +okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date lastModified +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterOverflowTextColor +androidx.appcompat.R$id: int screen +com.google.android.material.R$attr: int layout_constraintTag +wangdaye.com.geometricweather.R$styleable: int ActionBar_divider +okhttp3.HttpUrl$Builder: int schemeDelimiterOffset(java.lang.String,int,int) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionModeOverlay +androidx.constraintlayout.widget.R$layout: int abc_dialog_title_material +com.jaredrummler.android.colorpicker.R$id: int action_mode_bar +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void dispose() +androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$dimen: int abc_cascading_menus_min_smallest_width +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_default_mtrl_alpha +james.adaptiveicon.R$id: int right_side +androidx.dynamicanimation.R$id: int forever +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onNext(java.lang.Object) +android.didikee.donate.R$attr: int windowFixedWidthMajor +com.turingtechnologies.materialscrollbar.R$color: int material_grey_600 +com.xw.repo.bubbleseekbar.R$attr: int actionBarPopupTheme +com.github.rahatarmanahmed.cpv.CircularProgressView: void init(android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency +androidx.work.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Id +james.adaptiveicon.R$attr: int drawerArrowStyle +androidx.recyclerview.R$id: int icon +com.google.android.material.R$layout: int material_clock_period_toggle_land +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button +androidx.constraintlayout.widget.R$attr: int measureWithLargestChild +cyanogenmod.os.Concierge$ParcelInfo: android.os.Parcel mParcel +androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String uvDescription +com.google.android.material.R$attr: int colorAccent +com.google.android.material.stateful.ExtendableSavedState +wangdaye.com.geometricweather.R$string: int feedback_refresh_notification_after_back +com.google.android.material.R$string: int abc_menu_meta_shortcut_label +com.google.android.gms.base.R$id: int wide +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: int capacityHint +okhttp3.FormBody$Builder: FormBody$Builder(java.nio.charset.Charset) +okio.DeflaterSink: okio.BufferedSink sink +okhttp3.internal.cache.DiskLruCache$1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX +okhttp3.internal.http2.ConnectionShutdownException: ConnectionShutdownException() +com.google.android.material.R$attr: int materialTimePickerTheme +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_switchStyle +com.google.android.material.R$attr: int flow_firstHorizontalStyle +wangdaye.com.geometricweather.R$styleable: int Constraint_motionStagger +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: java.util.concurrent.CompletableFuture future +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: int UnitType +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation +android.didikee.donate.R$styleable: int Toolbar_contentInsetRight +okhttp3.internal.connection.StreamAllocation$StreamAllocationReference: StreamAllocation$StreamAllocationReference(okhttp3.internal.connection.StreamAllocation,java.lang.Object) +androidx.fragment.R$styleable: int[] FontFamilyFont +james.adaptiveicon.R$style: int Base_DialogWindowTitle_AppCompat +androidx.transition.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_always_show_bubble +wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_layout +io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.fuseable.SimpleQueue queue +james.adaptiveicon.R$attr: int dividerPadding +org.greenrobot.greendao.AbstractDao: long insertInsideTx(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement) +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setBackgroundColorEnd(int) +androidx.constraintlayout.widget.R$style +wangdaye.com.geometricweather.R$styleable: int Constraint_animate_relativeTo +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type rawType +okhttp3.internal.ws.WebSocketReader: boolean closed +com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrimResource(int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeFindDrawable +com.jaredrummler.android.colorpicker.R$attr: int editTextColor +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_tooltipText +androidx.legacy.coreutils.R$id: int icon +cyanogenmod.providers.CMSettings$Global: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) +androidx.preference.R$attr: int panelMenuListTheme +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: long serialVersionUID +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_LAUNCH_VALIDATOR +androidx.coordinatorlayout.R$id: int dialog_button +wangdaye.com.geometricweather.R$string: int cpv_default_title +androidx.hilt.work.R$id: int dialog_button +com.tencent.bugly.proguard.j: java.nio.ByteBuffer a +wangdaye.com.geometricweather.db.entities.DaoSession +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog_Alert +androidx.hilt.work.R$dimen: int compat_control_corner_material +com.bumptech.glide.R$layout: int notification_template_part_time +org.greenrobot.greendao.AbstractDao: java.util.List loadAllFromCursor(android.database.Cursor) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: int UnitType +androidx.hilt.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalStyle +com.google.android.material.R$color: int mtrl_btn_text_color_disabled +androidx.preference.R$attr: int windowFixedWidthMinor +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_arrow_drop_right_black_24dp +wangdaye.com.geometricweather.R$attr: int expandedHintEnabled +io.reactivex.internal.observers.BlockingObserver: boolean isDisposed() +james.adaptiveicon.R$styleable: int FontFamily_fontProviderFetchStrategy +com.google.android.material.R$styleable: int CardView_android_minHeight +cyanogenmod.app.ICMStatusBarManager$Stub: java.lang.String DESCRIPTOR +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void updateWeather(cyanogenmod.weather.RequestInfo) +androidx.preference.R$drawable: int btn_radio_on_mtrl +androidx.preference.R$drawable: int abc_ic_star_half_black_48dp +james.adaptiveicon.R$dimen: int abc_edit_text_inset_bottom_material +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type HORIZONTAL_DIMENSION +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getShortUVDescription() +androidx.preference.R$attr: int dialogTheme +com.turingtechnologies.materialscrollbar.R$styleable: int FlowLayout_lineSpacing cyanogenmod.weatherservice.ServiceRequest: ServiceRequest(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.IWeatherProviderServiceClient) -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setId(java.lang.Long) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: int UnitType -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_11 -androidx.appcompat.R$style: int Base_V22_Theme_AppCompat -androidx.appcompat.R$attr: int font -wangdaye.com.geometricweather.R$layout: int design_text_input_start_icon -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_size -okio.Buffer$1: void flush() -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setCityId(java.lang.String) -okhttp3.HttpUrl$Builder: java.lang.String encodedUsername -com.google.android.material.R$styleable: int MaterialCalendar_dayTodayStyle -com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context) -com.amap.api.location.AMapLocationClient: void onDestroy() -com.turingtechnologies.materialscrollbar.R$id: int uniform -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode OVERRIDE -com.google.android.material.R$attr: int actionOverflowButtonStyle -androidx.recyclerview.R$drawable: int notification_tile_bg -androidx.appcompat.resources.R$id: int info -androidx.appcompat.R$style: int Theme_AppCompat_Dialog_Alert -androidx.preference.R$style: int Base_Animation_AppCompat_DropDownUp -com.tencent.bugly.proguard.n: void a(int,int) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Medium -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitation -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onNegativeCross -okhttp3.internal.io.FileSystem: okio.Source source(java.io.File) -okhttp3.internal.connection.RealConnection: okio.BufferedSource source -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_icon -com.google.android.material.R$string: int clear_text_end_icon_content_description -okio.Buffer: okio.Buffer copyTo(java.io.OutputStream) -okhttp3.internal.http2.Http2Connection$Listener: Http2Connection$Listener() -okhttp3.EventListener$1 -cyanogenmod.weatherservice.ServiceRequestResult -okhttp3.internal.connection.RealConnection: boolean supportsUrl(okhttp3.HttpUrl) -com.jaredrummler.android.colorpicker.R$attr: int autoSizeStepGranularity -androidx.constraintlayout.widget.R$styleable: int Constraint_android_orientation -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Dialog -com.google.android.material.R$attr: int iconSize -androidx.appcompat.R$id: int image -okhttp3.OkHttpClient: okhttp3.CookieJar cookieJar() -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -androidx.preference.R$layout: int preference_widget_seekbar -com.google.android.material.R$styleable: int Constraint_chainUseRtl -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button -okhttp3.OkHttpClient: int connectTimeoutMillis() -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Caption -androidx.coordinatorlayout.R$attr: int statusBarBackground -okhttp3.internal.http.RealInterceptorChain: okhttp3.EventListener eventListener() -com.google.android.material.R$dimen: int item_touch_helper_swipe_escape_velocity -com.jaredrummler.android.colorpicker.R$styleable: int[] LinearLayoutCompat -okhttp3.OkHttpClient: javax.net.SocketFactory socketFactory() -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_DialogWhenLarge -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void drain() -okhttp3.internal.connection.ConnectionSpecSelector: int nextModeIndex -androidx.hilt.work.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogLayout -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling() -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -cyanogenmod.externalviews.KeyguardExternalView$5 -wangdaye.com.geometricweather.background.polling.basic.UpdateService -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvLevel -wangdaye.com.geometricweather.R$style: int Preference_SwitchPreferenceCompat_Material -com.google.android.material.R$id: int spline -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -com.tencent.bugly.crashreport.crash.c: void a(com.tencent.bugly.crashreport.crash.CrashDetailBean) -wangdaye.com.geometricweather.R$styleable: int Chip_closeIcon -com.google.android.material.R$animator: int linear_indeterminate_line2_tail_interpolator -androidx.constraintlayout.widget.R$styleable: int RecycleListView_paddingTopNoTitle -okhttp3.Headers$Builder: Headers$Builder() -androidx.viewpager.widget.ViewPager: void setPageMarginDrawable(android.graphics.drawable.Drawable) -androidx.preference.R$styleable: int MenuView_subMenuArrow -com.turingtechnologies.materialscrollbar.R$id: int actions -androidx.preference.R$styleable: int MenuView_android_itemTextAppearance -com.google.android.material.R$attr: int tabIndicatorAnimationDuration -wangdaye.com.geometricweather.R$drawable: int widget_day -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onNext(java.lang.Object) -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerY -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listDividerAlertDialog -com.bumptech.glide.load.HttpException: HttpException(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_min -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_SET_CLIENT -androidx.appcompat.resources.R$layout -androidx.drawerlayout.R$drawable: int notification_bg_normal -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: boolean isDisposed() -cyanogenmod.profiles.RingModeSettings: void readFromParcel(android.os.Parcel) -com.google.android.gms.base.R$string: int common_google_play_services_install_title -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_COLOR_ADJUSTMENT -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: int UnitType -com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_swipe_escape_max_velocity -okio.ByteString: okio.ByteString decodeHex(java.lang.String) -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_OutlinedButton -androidx.hilt.work.R$styleable: int FragmentContainerView_android_tag -james.adaptiveicon.AdaptiveIconView -androidx.preference.R$styleable: int PreferenceFragmentCompat_android_divider -androidx.constraintlayout.widget.R$id: int tag_screen_reader_focusable -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: android.os.IBinder asBinder() -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_switchTextOn -com.google.android.material.R$attr: int itemTextAppearance -androidx.appcompat.R$drawable: int abc_text_select_handle_right_mtrl_dark -androidx.appcompat.R$color: int bright_foreground_disabled_material_dark -androidx.swiperefreshlayout.R$id: int tag_transition_group -com.google.android.material.slider.RangeSlider: void setFocusedThumbIndex(int) -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: boolean isDisposed() -androidx.preference.R$style: int Base_AlertDialog_AppCompat -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int getMainTextColorResId() -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_toBottomOf -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitleTextColor -cyanogenmod.app.CustomTile$ExpandedStyle -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_checkedTextViewStyle -com.google.android.material.slider.Slider: void setTickTintList(android.content.res.ColorStateList) -android.didikee.donate.R$attr: int elevation -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_111 -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setWifiScan(boolean) -com.bumptech.glide.R$styleable: int[] GradientColor -cyanogenmod.hardware.CMHardwareManager: int[] getDisplayColorCalibration() -android.support.v4.os.ResultReceiver -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleDrawable(int) -androidx.appcompat.widget.AppCompatCheckBox: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -wangdaye.com.geometricweather.R$styleable: int View_android_theme -com.tencent.bugly.proguard.ai: java.lang.String a -wangdaye.com.geometricweather.R$id: int ragweedIcon -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_onDetachedFromWindow -androidx.loader.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.loader.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: java.util.List brands -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber -androidx.swiperefreshlayout.R$attr: int fontProviderCerts -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_SearchView -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: boolean IsAlias -com.amap.api.fence.PoiItem: java.lang.String d -james.adaptiveicon.R$dimen: int tooltip_vertical_padding -com.tencent.bugly.crashreport.common.info.b: java.lang.String d -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_splitTrack -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Body2 -androidx.appcompat.R$styleable: int AppCompatTheme_editTextBackground -wangdaye.com.geometricweather.R$attr: int motionStagger -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: CaiYunMainlyResult$CurrentBean$FeelsLikeBean() -com.tencent.bugly.proguard.ar: void a(com.tencent.bugly.proguard.i) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean done -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus -com.turingtechnologies.materialscrollbar.CustomIndicator: int getTextSize() -com.xw.repo.bubbleseekbar.R$color: int dim_foreground_disabled_material_dark -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatImageView +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCloseDrawable +wangdaye.com.geometricweather.R$attr: int visibilityMode +androidx.preference.R$integer: int config_tooltipAnimTime +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.Observer downstream +com.google.android.material.R$drawable: int design_password_eye +androidx.constraintlayout.widget.R$drawable: int abc_control_background_material +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: java.lang.String Localized +james.adaptiveicon.R$style: int Widget_AppCompat_ListPopupWindow +cyanogenmod.weather.RequestInfo: int TYPE_WEATHER_BY_GEO_LOCATION_REQ +com.google.gson.stream.JsonReader: char[] NON_EXECUTE_PREFIX +androidx.loader.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$mipmap: int ic_launcher +androidx.vectordrawable.R$id: int accessibility_custom_action_28 +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$GeoLanguage getGeoLanguage() +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicReference upstream +androidx.appcompat.R$styleable: int[] GradientColorItem +androidx.preference.R$styleable: int AppCompatTheme_spinnerStyle +io.reactivex.Observable: io.reactivex.Observable concatMap(io.reactivex.functions.Function,int) +com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context) +com.jaredrummler.android.colorpicker.R$attr: int windowNoTitle +com.turingtechnologies.materialscrollbar.R$styleable: int[] ForegroundLinearLayout +okhttp3.internal.Util: java.util.regex.Pattern VERIFY_AS_IP_ADDRESS +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: void setColor(boolean) +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle +okhttp3.CacheControl$Builder +com.tencent.bugly.crashreport.crash.c: boolean m +androidx.lifecycle.LiveData: int START_VERSION +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar +cyanogenmod.app.ICustomTileListener$Stub$Proxy +com.turingtechnologies.materialscrollbar.R$attr: int singleSelection +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setStatus(int) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_title_baseline_to_top +wangdaye.com.geometricweather.db.entities.DailyEntity: void setId(java.lang.Long) +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_thumb +androidx.loader.R$color: int ripple_material_light +androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation BOTTOM +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark +androidx.fragment.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language HUNGARIAN +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customColorDrawableValue +retrofit2.CompletableFutureCallAdapterFactory +com.google.android.material.R$id: int message +androidx.preference.R$style: int TextAppearance_AppCompat_Small +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onNext(java.lang.Object) +org.greenrobot.greendao.AbstractDaoSession: long insert(java.lang.Object) +androidx.constraintlayout.widget.R$attr: int buttonTintMode +cyanogenmod.app.ProfileManager: android.app.NotificationGroup[] getNotificationGroups() +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String LABEL +androidx.preference.R$styleable: int Toolbar_contentInsetEnd +com.google.android.material.R$attr: int tickColor +androidx.appcompat.R$attr: int tint +wangdaye.com.geometricweather.common.basic.models.weather.Daily +androidx.preference.R$attr: int windowMinWidthMajor +androidx.core.R$id: int title +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context,android.util.AttributeSet) +androidx.preference.R$style: int Base_Theme_AppCompat +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar +cyanogenmod.providers.CMSettings$System: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) +androidx.appcompat.widget.Toolbar: void setPopupTheme(int) +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: int getChartTop() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_padding +androidx.appcompat.R$id: int search_badge +wangdaye.com.geometricweather.remoteviews.config.Hilt_MultiCityWidgetConfigActivity +com.google.android.material.button.MaterialButton: void setIconSize(int) +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconSize +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginTop +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.Long id +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getUrl() +androidx.vectordrawable.R$layout: R$layout() +com.google.android.material.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemSummary(java.lang.String) +cyanogenmod.app.CustomTile$GridExpandedStyle: void setGridItems(java.util.ArrayList) +com.github.rahatarmanahmed.cpv.R$dimen +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_orientation +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float ice +wangdaye.com.geometricweather.R$string: int feedback_view_style +okhttp3.internal.cache.DiskLruCache$Editor: void commit() +com.tencent.bugly.proguard.aq: java.lang.String c +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_bias +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_LOW_COLOR_VALIDATOR +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial() +androidx.preference.R$attr: int stackFromEnd +wangdaye.com.geometricweather.R$id: int autoCompleteToStart +com.google.android.material.R$style: int Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhaseText +com.xw.repo.bubbleseekbar.R$attr: int bsb_track_size +com.google.android.material.R$drawable: int abc_list_selector_disabled_holo_dark +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat +com.jaredrummler.android.colorpicker.R$styleable: int[] MultiSelectListPreference +cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo access$202(cyanogenmod.weatherservice.ServiceRequestResult,cyanogenmod.weather.WeatherInfo) +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.reflect.Type responseType() +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabTextStyle +okhttp3.Cookie: java.util.regex.Pattern YEAR_PATTERN +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.R$string: int key_ui_style +cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Borderless +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.ObservableSource source +androidx.swiperefreshlayout.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.R$attr: int windowActionBar +wangdaye.com.geometricweather.R$anim: int fragment_close_enter +androidx.preference.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +com.amap.api.location.AMapLocationClientOption: float getDeviceModeDistanceFilter() +james.adaptiveicon.R$styleable: int AppCompatTheme_colorPrimaryDark +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Title +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SeekBar_Discrete +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.functions.Function mapper +wangdaye.com.geometricweather.R$string: int key_weather_source +wangdaye.com.geometricweather.R$styleable: int Variant_region_heightMoreThan +io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_tileMode +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver +com.google.gson.stream.MalformedJsonException +com.xw.repo.bubbleseekbar.R$color: int colorPrimary +androidx.preference.R$styleable: int[] StateListDrawable +wangdaye.com.geometricweather.R$array: int precipitation_unit_values +com.jaredrummler.android.colorpicker.R$id: int submenuarrow +com.turingtechnologies.materialscrollbar.R$attr: int buttonTint +com.google.android.material.R$styleable: int MaterialCalendar_yearTodayStyle +androidx.preference.R$style: int Base_V22_Theme_AppCompat +okhttp3.Response +com.xw.repo.bubbleseekbar.R$style: int Platform_V21_AppCompat_Light +androidx.preference.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +com.github.rahatarmanahmed.cpv.CircularProgressView: float currentProgress +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconSize +cyanogenmod.app.ICMStatusBarManager: void registerListener(cyanogenmod.app.ICustomTileListener,android.content.ComponentName,int) +com.turingtechnologies.materialscrollbar.R$attr: int behavior_hideable +com.xw.repo.bubbleseekbar.R$dimen: int hint_pressed_alpha_material_dark +com.google.android.material.R$styleable: int Toolbar_titleMarginTop +com.jaredrummler.android.colorpicker.R$layout: int abc_expanded_menu_layout +androidx.core.R$id: int info +wangdaye.com.geometricweather.R$styleable: int Chip_android_textAppearance +wangdaye.com.geometricweather.R$interpolator: int mtrl_linear +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA +wangdaye.com.geometricweather.R$id: int middle +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Empty +io.reactivex.internal.util.EmptyComponent +androidx.constraintlayout.widget.R$attr: int drawableBottomCompat +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$id: int fill +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider access$002(cyanogenmod.externalviews.KeyguardExternalView,cyanogenmod.externalviews.IKeyguardExternalViewProvider) +androidx.hilt.R$style: int TextAppearance_Compat_Notification_Title +androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$string: int settings_title_precipitation_unit +io.reactivex.internal.observers.ForEachWhileObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$dimen: int material_clock_period_toggle_margin_left +com.google.android.gms.common.server.converter.StringToIntConverter$zaa +androidx.viewpager2.widget.ViewPager2: int getCurrentItem() +wangdaye.com.geometricweather.R$layout: int notification_big +wangdaye.com.geometricweather.R$styleable: int[] EditTextPreference +androidx.appcompat.R$dimen: int abc_cascading_menus_min_smallest_width +android.didikee.donate.R$attr: int closeItemLayout +com.google.android.material.R$id: int chip_group +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderAuthority +io.reactivex.Observable: io.reactivex.Observable retry(io.reactivex.functions.Predicate) +com.xw.repo.bubbleseekbar.R$id: int time +okhttp3.HttpUrl: java.lang.String FRAGMENT_ENCODE_SET +com.google.android.material.R$drawable: int mtrl_dialog_background +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_borderless_material +androidx.preference.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +okhttp3.Response: okhttp3.Response cacheResponse +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setLegacyRequestDisallowInterceptTouchEventEnabled(boolean) +org.greenrobot.greendao.AbstractDao: java.lang.Object loadCurrent(android.database.Cursor,int,boolean) +okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman get() +com.xw.repo.bubbleseekbar.R$attr: int actionModeFindDrawable +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability +com.turingtechnologies.materialscrollbar.R$attr: int panelMenuListTheme +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_15 +cyanogenmod.externalviews.KeyguardExternalView$4: KeyguardExternalView$4(cyanogenmod.externalviews.KeyguardExternalView) +com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_bottom_margin +com.tencent.bugly.proguard.d: java.util.HashMap g +androidx.hilt.work.R$styleable +james.adaptiveicon.R$attr: int buttonStyleSmall +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setBrandId(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int weather_rain +retrofit2.CompletableFutureCallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +okhttp3.HttpUrl$Builder: void push(java.lang.String,int,int,boolean,boolean) +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean isDisposed() +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetEnd +androidx.appcompat.widget.Toolbar: void setTitleTextColor(int) +com.google.android.gms.common.api.ResolvableApiException: void startResolutionForResult(android.app.Activity,int) +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +okhttp3.Cookie$Builder: java.lang.String name +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActivityChooserView +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_pageIndicatorColor +com.google.android.material.R$attr: int flow_lastVerticalStyle +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getRain() +com.google.gson.FieldNamingPolicy$5: java.lang.String translateName(java.lang.reflect.Field) +androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontVariationSettings +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: IAppSuggestProvider$Stub$Proxy(android.os.IBinder) +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackActiveTintList() +android.didikee.donate.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$attr: int drawableTintMode +com.tencent.bugly.proguard.i: int a(com.tencent.bugly.proguard.i$a,java.nio.ByteBuffer) +wangdaye.com.geometricweather.R$id: int filled +androidx.appcompat.R$attr: int fontWeight +com.google.android.material.R$attr: int overlay +androidx.constraintlayout.widget.R$style: int AlertDialog_AppCompat_Light +com.google.android.material.slider.BaseSlider: void setTickActiveTintList(android.content.res.ColorStateList) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_BOOT_ANIM +androidx.appcompat.R$styleable: int ActionBar_contentInsetStart +com.github.rahatarmanahmed.cpv.CircularProgressView: int getThickness() +com.tencent.bugly.proguard.a: a() +cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_ADJUST_SOUNDS_ENABLED +okio.Timeout$1 +com.turingtechnologies.materialscrollbar.R$styleable: int[] SnackbarLayout +wangdaye.com.geometricweather.R$style: int Preference_DialogPreference +com.turingtechnologies.materialscrollbar.R$dimen: int abc_seekbar_track_progress_height_material +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getBackgroundColor() +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintStart_toStartOf +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String weatherText +androidx.constraintlayout.widget.R$attr: int onHide +com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_filled_box_default_background_color +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: void setDrawable(boolean) +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_fontFamily +com.google.android.material.R$styleable: int MaterialButtonToggleGroup_selectionRequired +io.reactivex.internal.subscriptions.BasicQueueSubscription: void cancel() +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetStartWithNavigation +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_gravity +okhttp3.Request$Builder: okhttp3.Request$Builder addHeader(java.lang.String,java.lang.String) +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void removeFirst() +androidx.recyclerview.R$styleable: int FontFamily_fontProviderPackage +cyanogenmod.externalviews.ExternalView: void access$000(cyanogenmod.externalviews.ExternalView) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial Imperial +retrofit2.ParameterHandler$2: ParameterHandler$2(retrofit2.ParameterHandler) +com.loc.k: java.lang.String b() +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum Maximum +wangdaye.com.geometricweather.background.receiver.widget.WidgetDayWeekProvider: WidgetDayWeekProvider() +androidx.core.R$id: int accessibility_custom_action_22 +androidx.preference.R$color: int bright_foreground_inverse_material_dark +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_inverse_material_light +com.google.android.material.R$styleable: int ConstraintSet_motionStagger +com.turingtechnologies.materialscrollbar.R$attr: int iconGravity +androidx.appcompat.widget.SwitchCompat: void setTrackDrawable(android.graphics.drawable.Drawable) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +androidx.constraintlayout.widget.R$styleable: int ActionBar_backgroundStacked +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_normal_pressed +com.tencent.bugly.proguard.u: void a(int,com.tencent.bugly.proguard.am,java.lang.String,java.lang.String,com.tencent.bugly.proguard.t,long,boolean) +androidx.vectordrawable.animated.R$integer +retrofit2.ParameterHandler$Headers: void apply(retrofit2.RequestBuilder,okhttp3.Headers) +androidx.viewpager2.R$id: int action_text +androidx.loader.R$color: R$color() +wangdaye.com.geometricweather.R$attr: int errorTextAppearance +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String uvLevel +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +wangdaye.com.geometricweather.R$attr: int startIconDrawable +androidx.preference.R$styleable: int ActionBar_navigationMode +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf +cyanogenmod.weather.WeatherLocation: java.lang.String getPostalCode() +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.lifecycle.ReportFragment$LifecycleCallbacks +androidx.hilt.work.R$id: int fragment_container_view_tag +com.turingtechnologies.materialscrollbar.R$attr: int actionButtonStyle +androidx.fragment.R$drawable: int notification_bg_normal +com.google.android.material.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.R$color: int colorTextSubtitle_dark +androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_alpha +okhttp3.internal.http.HttpCodec: void cancel() +wangdaye.com.geometricweather.settings.fragments.SettingsFragment: SettingsFragment() +com.google.android.material.R$layout: int material_timepicker_dialog +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: int getStatus() +wangdaye.com.geometricweather.R$layout: int widget_day_week_rectangle +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontWeight +com.turingtechnologies.materialscrollbar.R$attr: int tickMarkTint +androidx.hilt.work.R$id: int accessibility_custom_action_6 +cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.CMStatusBarManager sCMStatusBarManagerInstance +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_18 +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: double lon +wangdaye.com.geometricweather.R$string: int key_gravity_sensor_switch +com.jaredrummler.android.colorpicker.R$color: int dim_foreground_material_light +android.didikee.donate.R$styleable: int MenuItem_showAsAction +com.xw.repo.bubbleseekbar.R$layout: int support_simple_spinner_dropdown_item +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void request(long) +androidx.coordinatorlayout.R$id: int forever +okhttp3.internal.http2.Http2Connection: void writePingAndAwaitPong() +cyanogenmod.app.BaseLiveLockManagerService: void enforceAccessPermission() +okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_3 +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_orientation +wangdaye.com.geometricweather.R$color: int colorTextContent_light +androidx.fragment.R$drawable: int notification_tile_bg +cyanogenmod.themes.IThemeService: boolean isThemeBeingProcessed(java.lang.String) +com.tencent.bugly.proguard.o: java.lang.String b() +com.google.android.gms.base.R$string: R$string() +androidx.viewpager2.R$id: int tag_screen_reader_focusable +james.adaptiveicon.R$dimen: int abc_progress_bar_height_material +android.didikee.donate.R$attr: int seekBarStyle +androidx.legacy.coreutils.R$attr: R$attr() +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircleAngle +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver parent +com.jaredrummler.android.colorpicker.R$attr: int expandActivityOverflowButtonDrawable +io.reactivex.Observable: io.reactivex.Observable onErrorReturnItem(java.lang.Object) +wangdaye.com.geometricweather.main.layouts.MainLayoutManager +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String content +wangdaye.com.geometricweather.R$string: int settings_category_notification +wangdaye.com.geometricweather.R$drawable: int weather_thunder_pixel +androidx.appcompat.R$styleable: int ActionMode_background +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setWeatherCondition(int) +com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_EditTextPreference_Material +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: ObservableSwitchMapSingle$SwitchMapSingleMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +com.google.android.material.R$attr: int chipStartPadding +com.google.android.material.R$attr: int arrowShaftLength +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +okhttp3.internal.http2.Http2Writer: void flush() +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +androidx.appcompat.R$style: int Theme_AppCompat +com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.common.strategy.a u +com.google.android.material.R$styleable: int[] ChipGroup +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Info +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy valueOf(java.lang.String) +okhttp3.Response: okhttp3.Response priorResponse +androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_checkedChip +okhttp3.internal.http2.Http2Writer: void windowUpdate(int,long) +okhttp3.internal.http2.Http2Connection: long DEGRADED_PONG_TIMEOUT_NS +wangdaye.com.geometricweather.R$layout: int abc_popup_menu_item_layout +com.google.android.gms.base.R$styleable: int[] SignInButton +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxySelector(java.net.ProxySelector) +wangdaye.com.geometricweather.R$layout: int item_pollen_daily +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector DAY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: void setBrands(java.util.List) +wangdaye.com.geometricweather.R$color: int background_material_light +androidx.constraintlayout.widget.R$attr: int layout_goneMarginBottom +cyanogenmod.weather.CMWeatherManager: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener) +okhttp3.Cache$2: java.lang.String nextUrl +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_bg_color_selector +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_48dp +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_rippleColor +com.tencent.bugly.proguard.ap: int i +com.google.android.material.R$attr: int arrowHeadLength +com.google.android.material.bottomnavigation.BottomNavigationView: android.view.MenuInflater getMenuInflater() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDate(java.util.Date) +wangdaye.com.geometricweather.R$attr: int telltales_velocityMode +com.google.android.material.transformation.TransformationChildCard +androidx.work.R$id: int dialog_button +com.bumptech.glide.R$drawable: int notification_bg_low_normal +okhttp3.RequestBody$1: okio.ByteString val$content +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer ragweedIndex +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_hideOnContentScroll +wangdaye.com.geometricweather.R$id: int view_offset_helper +com.google.android.gms.auth.api.signin.GoogleSignInAccount: android.os.Parcelable$Creator CREATOR +android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: ObservableMergeWithSingle$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver) +com.bumptech.glide.load.resource.gif.GifFrameLoader +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemStrokeColor +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode THUNDERSTORM +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_EditText +james.adaptiveicon.R$id: int select_dialog_listview +androidx.preference.R$styleable: int FontFamily_fontProviderAuthority +cyanogenmod.app.ICustomTileListener$Stub$Proxy: android.os.IBinder asBinder() +androidx.dynamicanimation.R$layout: int notification_action +io.reactivex.Observable: io.reactivex.Flowable toFlowable(io.reactivex.BackpressureStrategy) +wangdaye.com.geometricweather.R$color: int colorTextSubtitle +com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_track_material +okhttp3.internal.http2.Http2Writer: void headers(int,java.util.List) +com.google.android.material.R$styleable: int CoordinatorLayout_keylines +androidx.appcompat.R$styleable: int ActivityChooserView_initialActivityCount +okhttp3.MediaType: okhttp3.MediaType parse(java.lang.String) +androidx.appcompat.R$layout: int abc_popup_menu_item_layout +io.reactivex.disposables.RunnableDisposable +androidx.constraintlayout.widget.R$id: int image +com.google.android.material.R$styleable: int RecyclerView_layoutManager +android.didikee.donate.R$attr: int background +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_48dp +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_THEME_PACKAGE +androidx.hilt.work.R$id: int visible_removing_fragment_view_tag +androidx.constraintlayout.widget.R$styleable: int ActionBar_homeAsUpIndicator +cyanogenmod.weather.WeatherLocation: java.lang.String mCountryId +wangdaye.com.geometricweather.R$id: int activity_chooser_view_content +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getType() +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Time +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property So2 +org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.database.Database db +com.amap.api.fence.DistrictItem +com.google.android.material.R$styleable: int FloatingActionButton_borderWidth +wangdaye.com.geometricweather.R$layout: int widget_text_end +wangdaye.com.geometricweather.R$styleable: int FitSystemBarRecyclerView_rv_side +androidx.hilt.work.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.R$id: int design_bottom_sheet +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getFormattedId() +wangdaye.com.geometricweather.R$string: int content_desc_weather_icon +wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundTomorrowForecastUpdateService: Hilt_ForegroundTomorrowForecastUpdateService() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsRainOrSnow(int) +com.google.android.material.R$id: int decor_content_parent +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean h +androidx.recyclerview.R$id: int accessibility_custom_action_13 +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_arrowHeadLength +retrofit2.HttpServiceMethod: retrofit2.Converter createResponseConverter(retrofit2.Retrofit,java.lang.reflect.Method,java.lang.reflect.Type) +com.google.android.material.textfield.TextInputLayout: void setHelperTextTextAppearance(int) +com.jaredrummler.android.colorpicker.R$attr: int selectableItemBackgroundBorderless +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.R$string: int key_notification_style +okio.Sink: void flush() +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode IMMEDIATE +androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getLongAbbreviation(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentWidth +androidx.work.R$dimen: int compat_control_corner_material +com.google.android.material.slider.RangeSlider: float getThumbElevation() +android.didikee.donate.R$attr: int actionBarStyle +com.google.android.material.R$styleable: int ConstraintSet_constraint_referenced_ids +com.xw.repo.bubbleseekbar.R$id: int normal +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindContainer +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Toolbar +com.google.android.material.R$id: int test_radiobutton_android_button_tint +com.tencent.bugly.crashreport.common.info.a: boolean al +androidx.hilt.R$style: int Widget_Compat_NotificationActionText +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Large_Inverse +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType STRING_TYPE +com.tencent.bugly.crashreport.common.info.AppInfo: AppInfo() +androidx.appcompat.R$attr: int listChoiceIndicatorMultipleAnimated +androidx.drawerlayout.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$drawable: int flag_ru +androidx.appcompat.R$styleable: int TextAppearance_android_textColorLink +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.ObservableSource first +com.google.android.material.R$style: int Widget_MaterialComponents_CardView +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatHoveredFocusedTranslationZResource(int) +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dark +androidx.preference.R$color: int switch_thumb_normal_material_dark +io.reactivex.Observable: io.reactivex.Observable concatArrayDelayError(io.reactivex.ObservableSource[]) +cyanogenmod.app.CustomTile$Builder +androidx.constraintlayout.widget.R$attr: int textAppearanceSearchResultSubtitle +com.tencent.bugly.crashreport.crash.e: java.lang.String a(java.lang.Throwable,int) +com.google.android.material.R$styleable: int KeyTimeCycle_transitionEasing +wangdaye.com.geometricweather.R$attr: int min +android.didikee.donate.R$styleable: int ActionBar_contentInsetLeft +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +wangdaye.com.geometricweather.R$string +androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_velocityMode +com.google.gson.stream.JsonReader: double nextDouble() +androidx.lifecycle.LifecycleRegistry: void popParentState() +androidx.appcompat.R$color: int abc_tint_spinner +com.tencent.bugly.crashreport.common.info.a: java.lang.Boolean an +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onFailed() +com.google.android.material.R$id: int tag_screen_reader_focusable +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +com.bumptech.glide.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPadding +com.google.android.material.R$id +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: java.lang.String Unit +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_text_size +cyanogenmod.providers.CMSettings$Global: java.lang.String WAKE_WHEN_PLUGGED_OR_UNPLUGGED +james.adaptiveicon.R$dimen: int abc_dialog_fixed_height_minor +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayInvalidStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: int getStatus() +androidx.lifecycle.Transformations$2$1: void onChanged(java.lang.Object) +androidx.fragment.R$attr: int fontProviderFetchTimeout +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_3 +androidx.preference.R$styleable: int AppCompatTheme_tooltipFrameBackground +com.google.android.material.R$attr: int hintTextAppearance +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getThemePackageNameForComponent(java.lang.String) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life life +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.reflect.Type responseType +com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorType(int) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Colored +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: android.content.res.ColorStateList getSupportBackgroundTintList() +android.didikee.donate.R$color +androidx.preference.R$anim: int fragment_open_exit +cyanogenmod.app.ProfileManager: boolean notificationGroupExists(java.lang.String) +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: boolean eager +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon +androidx.preference.R$id: int textSpacerNoTitle +androidx.preference.R$dimen: int abc_disabled_alpha_material_light +androidx.preference.R$styleable: int Preference_selectable +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_right_mtrl_dark +wangdaye.com.geometricweather.R$attr: int itemHorizontalPadding +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.util.List SupplementalAdminAreas +james.adaptiveicon.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner androidx.dynamicanimation.R$attr: int fontProviderPackage -com.xw.repo.bubbleseekbar.R$attr: int title -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: LiveDataReactiveStreams$LiveDataPublisher(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$styleable: int MenuView_android_itemBackground -androidx.preference.R$attr: int preferenceStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric Metric -com.google.android.material.R$attr: int textAppearancePopupMenuHeader -okhttp3.RequestBody$3: java.io.File val$file -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low_pressed -com.google.android.material.R$attr: int suffixText -com.tencent.bugly.crashreport.common.info.a: java.lang.String n() -androidx.fragment.R$attr: int fontStyle -wangdaye.com.geometricweather.R$attr: int tabPaddingBottom -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_14 -com.google.android.material.R$dimen: int mtrl_chip_pressed_translation_z -wangdaye.com.geometricweather.R$anim: int abc_slide_in_top -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_margin -androidx.preference.R$style: int Platform_V25_AppCompat_Light -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: AMapLocationClientOption$AMapLocationMode(java.lang.String,int) -cyanogenmod.os.Concierge$ParcelInfo -com.google.android.material.tabs.TabLayout: void removeOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) -wangdaye.com.geometricweather.R$anim: int fragment_close_enter -androidx.core.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setShifting(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getZh_TW() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int CountMinute -androidx.preference.R$styleable: int SwitchPreference_switchTextOff -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceStyle -cyanogenmod.app.ProfileGroup: boolean matches(android.app.NotificationGroup,boolean) -com.tencent.bugly.proguard.u: boolean b(int) -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItemSmall -okhttp3.internal.ws.RealWebSocket: int receivedPingCount() -androidx.customview.R$attr: int fontProviderCerts -okhttp3.Cache$1: void trackConditionalCacheHit() -android.support.v4.os.IResultReceiver$Stub$Proxy: android.os.IBinder mRemote -android.didikee.donate.R$attr: int buttonPanelSideLayout -com.google.android.material.R$styleable: int GradientColor_android_centerColor -androidx.recyclerview.R$attr: int layoutManager -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_toggle_margin_top -com.tencent.bugly.proguard.aq: java.lang.String g -cyanogenmod.weather.RequestInfo$Builder -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type BOTTOM -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean isUnbounded() -androidx.transition.R$styleable: int GradientColor_android_startX -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.IWeatherServiceProviderChangeListener mProviderChangeListener -com.google.android.material.R$attr: int spanCount -james.adaptiveicon.R$string: int abc_activity_chooser_view_see_all -io.reactivex.Observable: io.reactivex.Observable hide() +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setFitSide(int) +com.google.android.material.internal.NavigationMenuItemView: void setIconTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_elevation +com.jaredrummler.android.colorpicker.R$attr: int firstBaselineToTopHeight +wangdaye.com.geometricweather.R$styleable: int[] AppCompatTextHelper +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColorHint +androidx.coordinatorlayout.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getType() +wangdaye.com.geometricweather.R$layout: int design_layout_snackbar +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_13 +okhttp3.HttpUrl: java.util.Set queryParameterNames() +wangdaye.com.geometricweather.R$drawable: int notif_temp_90 +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setSize(int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul12H +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_maxWidth +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.util.Date time +wangdaye.com.geometricweather.R$plurals +androidx.hilt.work.R$id: int accessibility_custom_action_1 +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getWeatherText() +com.xw.repo.bubbleseekbar.R$drawable: int abc_switch_thumb_material +wangdaye.com.geometricweather.R$attr: int counterTextAppearance +androidx.recyclerview.R$attr: R$attr() +androidx.core.R$id: int accessibility_custom_action_30 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorError +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: java.lang.Throwable val$ex +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhase +androidx.drawerlayout.R$id: int action_image +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetStart +com.google.android.material.R$attr: int chipMinHeight +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Spinner_Underlined +com.google.android.material.card.MaterialCardView: void setCardBackgroundColor(int) +com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean l +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityPaused(android.app.Activity) +com.google.android.material.R$id: int accelerate +wangdaye.com.geometricweather.R$color: int colorTextGrey +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_background +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int getIsRainOrSnow() +androidx.appcompat.R$styleable: int ActionBar_subtitle +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: boolean isDisposed() +com.google.android.material.R$styleable: int[] CollapsingToolbarLayout_Layout +com.google.android.material.R$styleable: int Transform_android_elevation +okhttp3.internal.http2.Http2Writer: void writeContinuationFrames(int,long) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.R$drawable: int notif_temp_94 +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean isEmpty() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitationDuration +androidx.cardview.R$attr: int contentPaddingBottom +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog +androidx.constraintlayout.widget.R$drawable: int abc_btn_default_mtrl_shape +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView_DropDown +com.google.android.material.R$styleable: int MotionLayout_motionProgress +okhttp3.internal.http2.Http2Reader: void readPriority(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemTextAppearance +androidx.vectordrawable.animated.R$id: int title +cyanogenmod.externalviews.IExternalViewProvider$Stub: android.os.IBinder asBinder() +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMenuView +androidx.fragment.R$id: int accessibility_custom_action_6 +androidx.drawerlayout.widget.DrawerLayout +androidx.preference.R$style: int Platform_AppCompat +androidx.core.R$attr: R$attr() +androidx.customview.R$id: int chronometer +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_grey +com.turingtechnologies.materialscrollbar.R$drawable: int tooltip_frame_light +cyanogenmod.app.IProfileManager$Stub: java.lang.String DESCRIPTOR +androidx.preference.TwoStatePreference$SavedState: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$attr: int actionModeStyle +androidx.activity.R$styleable: int FontFamilyFont_fontWeight +androidx.preference.R$styleable: int DialogPreference_android_negativeButtonText +androidx.appcompat.R$attr: int backgroundTint +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void subscribe(io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction LastAction +com.google.android.material.R$color: int material_on_surface_emphasis_high_type +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_submit +wangdaye.com.geometricweather.R$id: int widget_clock_day_subtitle +com.google.android.material.R$attr: int chipCornerRadius +androidx.vectordrawable.R$id: int notification_main_column_container +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_collapseIcon +com.tencent.bugly.proguard.z: byte[] a(byte[],int) +retrofit2.Platform: java.util.List defaultConverterFactories() +androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +cyanogenmod.app.ICMTelephonyManager: boolean isSubActive(int) +androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context,android.util.AttributeSet,int) +androidx.work.impl.background.systemalarm.SystemAlarmService +com.jaredrummler.android.colorpicker.R$color: int material_grey_300 +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotationY +com.turingtechnologies.materialscrollbar.R$anim: int abc_popup_exit +androidx.dynamicanimation.R$styleable: int GradientColor_android_type +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabView +androidx.lifecycle.extensions.R$styleable: int[] ColorStateListItem +okhttp3.HttpUrl: okhttp3.HttpUrl get(java.net.URI) +com.baidu.location.e.o +com.tencent.bugly.proguard.u: void a(java.lang.Runnable,boolean,boolean,long) +com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_overlapAnchor +androidx.vectordrawable.animated.R$drawable +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvIndex +com.google.android.material.R$drawable: int abc_edit_text_material +androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$drawable: int notif_temp_125 +androidx.recyclerview.R$attr: int reverseLayout +okio.HashingSource: okio.HashingSource hmacSha256(okio.Source,okio.ByteString) +james.adaptiveicon.R$id: int action_context_bar +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_height +com.amap.api.fence.GeoFence: long j +okhttp3.internal.platform.Platform: void afterHandshake(javax.net.ssl.SSLSocket) +com.google.android.material.R$styleable: int TabItem_android_layout +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode HTTP_1_1_REQUIRED +com.tencent.bugly.BuglyStrategy$a: int MAX_USERDATA_VALUE_LENGTH +wangdaye.com.geometricweather.R$id: int item +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_2 +androidx.preference.R$id: int action_bar_root +retrofit2.Platform: boolean hasJava8Types +cyanogenmod.os.Build$CM_VERSION +wangdaye.com.geometricweather.R$id: int widget_text_container +androidx.hilt.work.R$styleable: int ColorStateListItem_android_color +androidx.dynamicanimation.R$attr: int alpha +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_background +okhttp3.internal.cache.FaultHidingSink: void write(okio.Buffer,long) +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getDurationText(android.content.Context,float) +com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context,android.util.AttributeSet,int) +androidx.core.R$id: int accessibility_action_clickable_span +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: java.lang.String Unit +okhttp3.ResponseBody$BomAwareReader: boolean closed +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode SNOW +com.bumptech.glide.R$layout: R$layout() +androidx.hilt.R$dimen: int compat_button_padding_vertical_material +androidx.preference.R$color: int foreground_material_light +android.didikee.donate.R$color: int material_grey_600 +okhttp3.Dispatcher: int maxRequestsPerHost +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: AccuCurrentResult$Visibility$Imperial() +com.google.android.material.R$attr: int flow_firstVerticalStyle +io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicReference missedSubscription +com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_SIGN +okhttp3.internal.cache.DiskLruCache: boolean mostRecentRebuildFailed +okhttp3.internal.http2.Http2Reader$Handler: void pushPromise(int,int,java.util.List) +cyanogenmod.externalviews.KeyguardExternalView: boolean mIsInteractive +okhttp3.OkHttpClient$Builder: int writeTimeout +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay[] values() +androidx.viewpager2.R$attr: int reverseLayout +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMargin +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupWindow +cyanogenmod.weather.WeatherInfo: double getTemperature() +androidx.fragment.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$styleable: int[] AppBarLayout_Layout +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_framePosition +androidx.constraintlayout.widget.R$anim: int abc_grow_fade_in_from_bottom +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_fullscreen +com.google.android.material.R$dimen: int mtrl_toolbar_default_height +james.adaptiveicon.R$styleable: int TextAppearance_android_textColor +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dialog +androidx.appcompat.R$styleable: int View_paddingStart +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_layout +cyanogenmod.media.MediaRecorder$AudioSource: int HOTWORD +wangdaye.com.geometricweather.db.entities.DailyEntity: long time +okhttp3.Headers$Builder: okhttp3.Headers build() +wangdaye.com.geometricweather.R$string: int action_manage +okhttp3.Challenge +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties +wangdaye.com.geometricweather.R$attr: int behavior_peekHeight +com.google.gson.FieldNamingPolicy$1: FieldNamingPolicy$1(java.lang.String,int) +cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient access$202(cyanogenmod.weatherservice.WeatherProviderService,cyanogenmod.weatherservice.IWeatherProviderServiceClient) +androidx.coordinatorlayout.R$id: int time +wangdaye.com.geometricweather.R$drawable: int notif_temp_62 +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDefaultSmsSub(int) +com.google.android.material.R$id: int action_context_bar +cyanogenmod.app.CMTelephonyManager: void setSubState(int,boolean) +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean done +androidx.preference.R$styleable: int Preference_enabled +wangdaye.com.geometricweather.R$layout: int container_circular_sky_view +wangdaye.com.geometricweather.R$drawable: int widget_clock_day_details +wangdaye.com.geometricweather.R$attr: int shapeAppearanceMediumComponent +android.didikee.donate.R$style: int TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context,android.util.AttributeSet,int) +androidx.viewpager2.R$layout: int notification_template_custom_big +okhttp3.internal.Util: boolean discard(okio.Source,int,java.util.concurrent.TimeUnit) +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean isDisposed() +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setAppVersion(java.lang.String) +cyanogenmod.app.CMStatusBarManager com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin -com.google.android.material.R$color: int mtrl_fab_bg_color_selector -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: java.util.concurrent.atomic.AtomicReference queue -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -android.didikee.donate.R$styleable: int AppCompatSeekBar_android_thumb -cyanogenmod.providers.CMSettings$Secure: java.lang.String RING_HOME_BUTTON_BEHAVIOR +androidx.appcompat.widget.ActionMenuView: int getWindowAnimations() +com.google.android.material.R$styleable: int TabLayout_tabTextAppearance +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean k +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour WRAP_CONTENT +com.google.android.material.R$string: int mtrl_picker_date_header_unselected +cyanogenmod.app.ILiveLockScreenManager$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$string: int settings_summary_service_provider +com.google.android.material.R$attr: int actionViewClass +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_LED_OFF_VALIDATOR wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: int Degrees -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.R$string: int wind_6 -com.google.android.material.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.R$integer: int mtrl_calendar_header_orientation -androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeColor -androidx.hilt.lifecycle.R$style: R$style() -cyanogenmod.themes.IThemeService: void applyDefaultTheme() -androidx.appcompat.R$drawable: int abc_tab_indicator_material -com.turingtechnologies.materialscrollbar.R$attr: int checkboxStyle -wangdaye.com.geometricweather.R$styleable: int MenuItem_tooltipText -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRealFeelShaderTemperature(java.lang.Integer) -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabView -com.google.android.material.R$attr: int crossfade -androidx.hilt.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$integer: int cancel_button_image_alpha -androidx.appcompat.widget.ActionBarOverlayLayout: void setWindowCallback(android.view.Window$Callback) -io.reactivex.internal.schedulers.RxThreadFactory: boolean nonBlocking -com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_padding -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: java.lang.String Unit -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX -okhttp3.internal.Util: java.lang.String[] intersect(java.util.Comparator,java.lang.String[],java.lang.String[]) -androidx.core.R$dimen -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Button -okio.AsyncTimeout$1: void flush() -androidx.lifecycle.LiveData: void setValue(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -androidx.work.R$id: int icon_group -com.google.gson.stream.JsonReader: int PEEKED_BEGIN_OBJECT -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: java.lang.String desc -wangdaye.com.geometricweather.R$attr: int cornerRadius -androidx.core.R$id: int forever -okhttp3.internal.platform.Platform: java.lang.String getPrefix() -wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontTitle -io.reactivex.internal.subscriptions.EmptySubscription: void clear() -cyanogenmod.app.ProfileManager: cyanogenmod.app.IProfileManager getService() -wangdaye.com.geometricweather.R$color: int design_bottom_navigation_shadow_color -com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonStyle -wangdaye.com.geometricweather.R$styleable: int[] RecyclerView -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWindLevel() -wangdaye.com.geometricweather.R$styleable: int Chip_android_textAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: AccuCurrentResult$RealFeelTemperature$Metric() -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTint -okhttp3.internal.publicsuffix.PublicSuffixDatabase: okhttp3.internal.publicsuffix.PublicSuffixDatabase instance -com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_bottom_material -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.hilt.lifecycle.R$dimen: int notification_right_side_padding_top -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_NoActionBar -androidx.appcompat.R$layout: int abc_screen_simple -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String notice -wangdaye.com.geometricweather.R$attr: int dropdownPreferenceStyle -retrofit2.ParameterHandler: ParameterHandler() -okhttp3.internal.cache.CacheInterceptor: okhttp3.Response stripBody(okhttp3.Response) -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.functions.BooleanSupplier stop -com.jaredrummler.android.colorpicker.R$style: int Preference_DropDown_Material -wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_day_foreground -com.github.rahatarmanahmed.cpv.CircularProgressView: int color -android.didikee.donate.R$styleable: int AppCompatTheme_colorButtonNormal -androidx.lifecycle.MutableLiveData: MutableLiveData() -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index o3 -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_20 -com.google.android.material.R$attr: int layout_editor_absoluteY -androidx.constraintlayout.widget.R$id: int wrap_content -com.baidu.location.indoor.mapversion.c.a$d: double b(double) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAVIGATION_BAR_MENU_ARROW_KEYS_VALIDATOR -com.google.android.material.navigation.NavigationView$SavedState: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$style: int AlertDialog_AppCompat -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float total -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_2 -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_clear -wangdaye.com.geometricweather.R$attr: int maxLines -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontStyle -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_15 -androidx.preference.R$styleable: int AppCompatTheme_actionModeShareDrawable -com.google.android.material.R$styleable: int Layout_android_layout_marginTop -com.amap.api.fence.GeoFenceClient: void addGeoFence(java.lang.String,java.lang.String) -androidx.preference.R$styleable: int FontFamily_fontProviderQuery -okio.RealBufferedSource: boolean closed -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_textAppearance -james.adaptiveicon.R$attr: int colorPrimary -com.amap.api.location.AMapLocationClient: android.content.Context a -com.turingtechnologies.materialscrollbar.R$attr: int alertDialogButtonGroupStyle -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_android_gravity -okhttp3.internal.tls.BasicCertificateChainCleaner: int hashCode() -androidx.preference.R$style: int Base_V21_Theme_AppCompat_Dialog -retrofit2.adapter.rxjava2.CallEnqueueObservable: void subscribeActual(io.reactivex.Observer) -com.tencent.bugly.crashreport.CrashReport: void setUserSceneTag(android.content.Context,int) -androidx.constraintlayout.widget.R$attr: int perpendicularPath_percent -com.google.android.gms.base.R$id: int none -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: double HoursOfSun -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -com.google.android.material.R$color: int material_grey_800 -com.amap.api.fence.GeoFence: java.lang.String b -androidx.appcompat.resources.R$id: int actions -com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Bridge -com.amap.api.location.AMapLocation: com.amap.api.location.AMapLocationQualityReport c -wangdaye.com.geometricweather.R$style: int Preference_SeekBarPreference -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_DAILY_OVERVIEW -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_dividerPadding -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float pm25 -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -com.google.android.material.transformation.FabTransformationSheetBehavior +okhttp3.MediaType: java.lang.String subtype() +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +androidx.constraintlayout.widget.Barrier: int getMargin() +androidx.vectordrawable.R$layout: int notification_template_part_chronometer +androidx.preference.R$styleable: int TextAppearance_android_textColor +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_25 +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +com.jaredrummler.android.colorpicker.R$attr: int actionModeCloseDrawable +com.tencent.bugly.proguard.u: byte[] a(byte[]) +james.adaptiveicon.R$color: int primary_text_default_material_light +androidx.viewpager.R$attr: int fontWeight +wangdaye.com.geometricweather.R$styleable: int Spinner_android_prompt +cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_VISUALIZER_ENABLED +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColor +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle +james.adaptiveicon.R$attr: int panelBackground +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_days_of_week +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation Elevation +androidx.appcompat.R$attr: int windowMinWidthMinor +androidx.appcompat.R$styleable: int MenuItem_android_titleCondensed +okhttp3.internal.http.BridgeInterceptor +com.google.android.material.R$id: int accessibility_custom_action_12 +cyanogenmod.providers.CMSettings$System: java.lang.String USE_EDGE_SERVICE_FOR_GESTURES +androidx.appcompat.R$attr: int drawableSize +com.xw.repo.bubbleseekbar.R$attr: int layout_behavior +io.reactivex.internal.disposables.SequentialDisposable: boolean update(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$string: int abc_menu_shift_shortcut_label +androidx.drawerlayout.R$drawable: R$drawable() +com.xw.repo.bubbleseekbar.R$id: int title +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle +okhttp3.Cache: int VERSION +okio.Buffer: okio.Buffer copyTo(java.io.OutputStream) +okio.BufferedSource: long indexOf(okio.ByteString) +androidx.constraintlayout.utils.widget.ImageFilterView: void setRoundPercent(float) +com.google.android.material.progressindicator.ProgressIndicator: int getCircularRadius() +com.google.android.material.R$id: int save_non_transition_alpha +com.jaredrummler.android.colorpicker.R$attr: int actionBarTheme +okio.AsyncTimeout: int TIMEOUT_WRITE_SIZE +okhttp3.CacheControl: boolean immutable +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_setServiceClient +wangdaye.com.geometricweather.R$string: int feedback_interpret_background_notification_content +okhttp3.internal.http1.Http1Codec$AbstractSource: long bytesRead +androidx.preference.R$styleable: int RecyclerView_fastScrollEnabled +androidx.loader.R$drawable: int notification_tile_bg +com.xw.repo.bubbleseekbar.R$style: int Base_AlertDialog_AppCompat +androidx.appcompat.widget.Toolbar: void setLogoDescription(java.lang.CharSequence) +android.didikee.donate.R$id: int contentPanel +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: ObservableWindowBoundarySupplier$WindowBoundaryMainObserver(io.reactivex.Observer,int,java.util.concurrent.Callable) +com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_Dialog +okhttp3.internal.connection.StreamAllocation$StreamAllocationReference: java.lang.Object callStackTrace +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String getUvIndex() +okhttp3.internal.ws.RealWebSocket: void runWriter() +com.bumptech.glide.MemoryCategory +okhttp3.Cache$Entry: long receivedResponseMillis +wangdaye.com.geometricweather.db.entities.AlertEntity: long alertId +retrofit2.ParameterHandler$Field: ParameterHandler$Field(java.lang.String,retrofit2.Converter,boolean) +com.google.android.material.R$id: int notification_main_column_container +com.xw.repo.bubbleseekbar.R$style: int Base_V28_Theme_AppCompat +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean sameConnection(okhttp3.Response,okhttp3.HttpUrl) +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onScreenTurnedOn() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_maxHeight +com.google.android.material.card.MaterialCardView: void setStrokeColor(int) +com.google.android.material.R$color: int cardview_light_background +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setFillColor(int) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void clear() +androidx.appcompat.R$styleable: int SearchView_searchIcon +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderText +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalBias +okhttp3.internal.ws.WebSocketProtocol: WebSocketProtocol() +okhttp3.CacheControl: CacheControl(boolean,boolean,int,int,boolean,boolean,boolean,int,int,boolean,boolean,boolean,java.lang.String) +com.tencent.bugly.proguard.p: android.content.ContentValues d(com.tencent.bugly.proguard.r) +com.google.android.material.progressindicator.ProgressIndicator: void setIndeterminateDrawable(android.graphics.drawable.Drawable) +com.amap.api.fence.GeoFenceClient: GeoFenceClient(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio +wangdaye.com.geometricweather.R$attr: int animationMode +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: int unitArrayIndex +wangdaye.com.geometricweather.main.Hilt_MainActivity: Hilt_MainActivity() +com.google.android.material.R$attr: int attributeName +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetRight +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String L +james.adaptiveicon.R$styleable: int DrawerArrowToggle_drawableSize +wangdaye.com.geometricweather.R$drawable: int notif_temp_134 +com.google.android.material.R$attr: int waveDecay +org.greenrobot.greendao.AbstractDao: java.lang.String[] getPkColumns() +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: boolean requestDismissAndStartActivity(android.content.Intent) +androidx.work.impl.utils.futures.DirectExecutor: java.lang.String toString() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_disabled_z +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification +okhttp3.internal.connection.RealConnection: int successCount +androidx.customview.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_48 +wangdaye.com.geometricweather.R$attr: int currentState +com.google.android.material.R$string: int abc_shareactionprovider_share_with_application +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getDaytimeWindDegree() +com.google.android.material.R$drawable: int abc_btn_check_to_on_mtrl_000 +james.adaptiveicon.R$color: int material_blue_grey_900 +wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_android_color +cyanogenmod.providers.CMSettings$Secure: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) +android.didikee.donate.R$dimen: int abc_floating_window_z +org.greenrobot.greendao.AbstractDao: void readEntity(android.database.Cursor,java.lang.Object,int) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 +okhttp3.internal.http2.Http2Connection: void shutdown(okhttp3.internal.http2.ErrorCode) +com.jaredrummler.android.colorpicker.R$attr: int queryBackground +wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_grey +wangdaye.com.geometricweather.R$styleable: int PropertySet_visibilityMode +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getSo2Color(android.content.Context) +okio.Buffer: okio.Buffer write(byte[]) +androidx.viewpager.R$drawable: int notification_tile_bg +cyanogenmod.providers.CMSettings$System: java.lang.String NAV_BUTTONS +androidx.cardview.R$styleable: R$styleable() +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao chineseCityEntityDao +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Button +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: int Degrees +androidx.constraintlayout.widget.R$attr: int flow_lastVerticalStyle +wangdaye.com.geometricweather.R$attr: int cpv_showColorShades +androidx.lifecycle.LifecycleRegistryOwner +wangdaye.com.geometricweather.R$attr: int itemHorizontalTranslationEnabled +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean isPrecipitation() +wangdaye.com.geometricweather.R$attr: int cpv_indeterminate +wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity: DayWidgetConfigActivity() +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Info +james.adaptiveicon.R$attr: int backgroundStacked +androidx.lifecycle.extensions.R$drawable: int notification_template_icon_low_bg +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: boolean isDisposed() +androidx.constraintlayout.widget.R$style: int Base_DialogWindowTitleBackground_AppCompat +cyanogenmod.app.ProfileManager: void addProfile(cyanogenmod.app.Profile) +androidx.appcompat.R$attr: int progressBarPadding +androidx.appcompat.resources.R$dimen: R$dimen() +wangdaye.com.geometricweather.R$attr: int bsb_touch_to_seek +wangdaye.com.geometricweather.R$attr: int drawableTopCompat +androidx.appcompat.R$dimen: int highlight_alpha_material_dark +okhttp3.internal.http2.Http2Reader: okhttp3.internal.http2.Hpack$Reader hpackReader +wangdaye.com.geometricweather.R$dimen: int tooltip_precise_anchor_threshold +cyanogenmod.weatherservice.WeatherProviderService$1 +androidx.drawerlayout.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getMoldLevel() +wangdaye.com.geometricweather.R$id: int item_weather_icon +com.google.android.material.R$attr: int cornerSize +com.amap.api.location.AMapLocation: int b(com.amap.api.location.AMapLocation,int) +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_navigationContentDescription +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixTextAppearance +androidx.drawerlayout.R$layout: int notification_template_part_chronometer +okhttp3.RealCall: okhttp3.Call clone() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Small +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: CNWeatherResult$Pm25() +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean hasKey(java.lang.Object) +androidx.vectordrawable.animated.R$dimen: int notification_right_icon_size +com.google.android.material.R$styleable: int SwitchCompat_trackTint +androidx.preference.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +cyanogenmod.weather.CMWeatherManager$2$2: int val$status +com.google.android.material.R$color: int material_blue_grey_950 +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle +androidx.preference.R$attr: R$attr() +wangdaye.com.geometricweather.R$styleable: int[] ClockFaceView +androidx.constraintlayout.widget.R$drawable: int abc_spinner_textfield_background_material +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status IMPLICIT_INITIALIZING +retrofit2.http.Path: boolean encoded() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: java.util.concurrent.atomic.AtomicReference upstream +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_summaryOn +androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_alpha +retrofit2.RequestBuilder: okhttp3.MediaType contentType +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathOffset() +com.google.android.material.R$color: int switch_thumb_normal_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: AccuLocationResult$AdministrativeArea() +wangdaye.com.geometricweather.R$id: int message +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: void setBrands(java.util.List) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: java.lang.String WeatherCode +androidx.preference.R$style: int ThemeOverlay_AppCompat_DayNight +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: io.reactivex.internal.disposables.SequentialDisposable timed +com.google.android.material.R$attr: int region_heightLessThan +com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_internal_bg +wangdaye.com.geometricweather.R$id: int time +cyanogenmod.profiles.StreamSettings: boolean mOverride +com.google.android.material.R$attr: int textAppearanceSmallPopupMenu +com.google.android.material.R$id: int screen +androidx.hilt.R$dimen: int notification_subtext_size +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabView +retrofit2.Platform: java.util.concurrent.Executor defaultCallbackExecutor() +okio.BufferedSource: int readInt() +com.tencent.bugly.proguard.x: boolean e(java.lang.String,java.lang.Object[]) +com.google.android.material.R$styleable: int MaterialButton_cornerRadius +androidx.constraintlayout.widget.R$styleable: int SearchView_android_focusable +com.tencent.bugly.proguard.v: java.util.Map o +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onDetach() +androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +okhttp3.internal.cache.CacheInterceptor: okhttp3.Headers combine(okhttp3.Headers,okhttp3.Headers) +androidx.lifecycle.LifecycleRegistryOwner: androidx.lifecycle.LifecycleRegistry getLifecycle() +okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallbackPossible +androidx.constraintlayout.widget.R$id: int search_mag_icon +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginBottom +com.google.android.material.R$styleable: int TextInputLayout_hintTextAppearance +com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_swipe_escape_max_velocity +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerError(int,java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_container +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +android.didikee.donate.R$color: int abc_search_url_text_pressed +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_splitTrack +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean isDisposed() +retrofit2.Retrofit: void validateServiceInterface(java.lang.Class) +androidx.coordinatorlayout.R$attr: int layout_behavior +androidx.hilt.R$styleable: int[] Fragment +androidx.appcompat.R$styleable: int RecycleListView_paddingBottomNoButtons +androidx.constraintlayout.widget.R$id: int line1 +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_maxElementsWrap +com.google.android.material.chip.ChipGroup: void setShowDividerHorizontal(int) +androidx.preference.R$color: int background_floating_material_dark +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalGap +com.google.android.gms.common.api.ApiException: java.lang.String getStatusMessage() +android.didikee.donate.R$styleable: int ActionMode_background +com.tencent.bugly.crashreport.crash.a: a() +androidx.customview.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$string: int feedback_updating_weather_data +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW +androidx.preference.R$drawable: int btn_checkbox_checked_mtrl +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderDivider +androidx.constraintlayout.widget.R$attr: int panelMenuListTheme +retrofit2.Call: boolean isExecuted() +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moonrise_moonset +com.google.gson.stream.JsonReader: int PEEKED_SINGLE_QUOTED +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +androidx.hilt.work.R$color: int notification_action_color_filter +com.tencent.bugly.crashreport.biz.b: long e() +okio.package-info +cyanogenmod.weather.CMWeatherManager: CMWeatherManager(android.content.Context) +com.google.android.material.R$style: int Base_Widget_AppCompat_ListMenuView +wangdaye.com.geometricweather.R$animator: int mtrl_btn_unelevated_state_list_anim +com.google.android.material.R$attr: int selectableItemBackgroundBorderless +androidx.appcompat.R$attr: int listPreferredItemPaddingRight +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar_Small +cyanogenmod.app.ICMTelephonyManager: java.util.List getSubInformation() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer stormHazard +org.greenrobot.greendao.AbstractDao: long count() +androidx.constraintlayout.widget.ConstraintLayout: int getMaxHeight() +com.xw.repo.bubbleseekbar.R$id: int title_template +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_40 +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_seekbar +androidx.constraintlayout.widget.R$id: int accessibility_action_clickable_span +android.didikee.donate.R$dimen: int abc_text_size_caption_material +com.google.android.material.R$dimen: int mtrl_slider_label_radius +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.disposables.CompositeDisposable disposables +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlActivated +okhttp3.HttpUrl$Builder: java.lang.String scheme +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: MfWarningsResult$WarningConsequence() +wangdaye.com.geometricweather.R$styleable: int Constraint_android_transformPivotY +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.lang.String MobileLink +okhttp3.ConnectionPool: ConnectionPool() +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_color +james.adaptiveicon.R$layout: int notification_action +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_42 +com.github.rahatarmanahmed.cpv.CircularProgressView$9: CircularProgressView$9(com.github.rahatarmanahmed.cpv.CircularProgressView) +retrofit2.BuiltInConverters$BufferingResponseBodyConverter: okhttp3.ResponseBody convert(okhttp3.ResponseBody) +wangdaye.com.geometricweather.R$id: int tag_icon_bottom +okio.AsyncTimeout: long remainingNanos(long) +io.reactivex.Observable: io.reactivex.Observable concatArrayEagerDelayError(io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_descendantFocusability +android.didikee.donate.R$styleable: int Toolbar_contentInsetLeft +okio.RealBufferedSource: java.lang.String readUtf8Line() +retrofit2.RequestBuilder: java.lang.String method +androidx.appcompat.R$style: int Widget_AppCompat_Toolbar +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog +androidx.viewpager.R$styleable: int FontFamily_fontProviderQuery +androidx.lifecycle.LifecycleService +androidx.transition.R$attr: int fontProviderFetchStrategy +androidx.core.R$dimen: int notification_main_column_padding_top +com.bumptech.glide.load.engine.GlideException: java.lang.Exception getOrigin() +androidx.constraintlayout.widget.R$color: int abc_primary_text_material_light +androidx.constraintlayout.widget.R$attr: int buttonIconDimen +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar_Indicator +com.jaredrummler.android.colorpicker.R$attr: int logo +androidx.dynamicanimation.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$color: int material_on_primary_emphasis_high_type +james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog +androidx.preference.R$styleable: int Preference_widgetLayout +com.turingtechnologies.materialscrollbar.R$layout: int design_layout_snackbar_include +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView +androidx.appcompat.R$id: int accessibility_custom_action_15 +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_default +wangdaye.com.geometricweather.R$id: int notification_multi_city_2 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_chainUseRtl +james.adaptiveicon.R$id: int checkbox +com.github.rahatarmanahmed.cpv.CircularProgressView$5: CircularProgressView$5(com.github.rahatarmanahmed.cpv.CircularProgressView) +com.xw.repo.bubbleseekbar.R$attr: int bsb_progress +cyanogenmod.externalviews.ExternalViewProviderService: java.lang.String TAG +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage FINISHED +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver parent +com.xw.repo.bubbleseekbar.R$attr: int toolbarNavigationButtonStyle +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mVersionSystemProperty +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_dialogType +com.google.android.material.R$color: int material_slider_active_track_color +james.adaptiveicon.R$attr: int showDividers +com.tencent.bugly.proguard.ak: ak() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: java.lang.String Localized +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_LOW_POWER +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isBody +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_alphabeticShortcut +androidx.preference.R$styleable: int MultiSelectListPreference_entryValues +cyanogenmod.externalviews.IExternalViewProviderFactory +okio.BufferedSource: void readFully(okio.Buffer,long) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: int status +androidx.appcompat.R$id: int notification_main_column +androidx.constraintlayout.widget.R$string: int search_menu_title +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarDivider +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconEnabled +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.functions.Action onFinally +com.google.android.material.R$styleable: int Toolbar_buttonGravity +androidx.constraintlayout.widget.R$anim: int abc_fade_in +androidx.preference.R$styleable: int[] PreferenceFragment +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter nullValue() +androidx.core.view.ViewCompat$1: ViewCompat$1(androidx.core.view.OnApplyWindowInsetsListener) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: int UnitType +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_drawableSize +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: MfRainResult$Position() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String getUnit() +wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitleTextStyle +androidx.preference.R$attr: int logoDescription +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingEnd +wangdaye.com.geometricweather.R$drawable: int widget_day_week +retrofit2.Utils: java.lang.reflect.Type getSupertype(java.lang.reflect.Type,java.lang.Class,java.lang.Class) +com.turingtechnologies.materialscrollbar.R$layout: int abc_activity_chooser_view_list_item +wangdaye.com.geometricweather.R$attr: int imageAspectRatio +androidx.preference.R$attr: int dividerHorizontal +james.adaptiveicon.R$id: int decor_content_parent +okhttp3.internal.http2.Settings: int size() +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_font +io.reactivex.Observable: io.reactivex.Observable intervalRange(long,long,long,long,java.util.concurrent.TimeUnit) +android.didikee.donate.R$styleable: int AppCompatTheme_listMenuViewStyle +androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.profiles.StreamSettings$1 +okhttp3.internal.io.FileSystem: okio.Sink appendingSink(java.io.File) +androidx.vectordrawable.animated.R$dimen: int notification_large_icon_width +androidx.constraintlayout.widget.R$attr: int layout_constraintStart_toStartOf +com.google.android.material.R$dimen: int abc_button_padding_horizontal_material +androidx.constraintlayout.widget.R$dimen: int abc_text_size_medium_material +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Tooltip +retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type[] getLowerBounds() +com.google.android.material.R$styleable: int[] ScrimInsetsFrameLayout +android.didikee.donate.R$styleable: int AppCompatTheme_dialogCornerRadius +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: WeatherContract$WeatherColumns$WeatherCode() +okhttp3.internal.http2.Http2Connection: boolean pushedStream(int) +com.jaredrummler.android.colorpicker.R$id: int radio +wangdaye.com.geometricweather.R$color: int ripple_material_dark +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog +androidx.constraintlayout.widget.R$color: int primary_dark_material_dark +com.google.android.material.R$string: int bottomsheet_action_expand_halfway +okhttp3.internal.http2.Http2Stream$FramingSink: void flush() +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: android.os.IBinder asBinder() +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.internal.util.AtomicThrowable errors +androidx.loader.R$attr: int font +wangdaye.com.geometricweather.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTintMode +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_activated_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_showMotionSpec +okhttp3.internal.http2.PushObserver: void onReset(int,okhttp3.internal.http2.ErrorCode) +wangdaye.com.geometricweather.R$layout: int preference_widget_switch_compat +com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.String) +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.Number) +wangdaye.com.geometricweather.R$string: int about_app +io.reactivex.Observable: io.reactivex.Observable distinct(io.reactivex.functions.Function) +com.google.android.material.R$interpolator +com.baidu.location.e.n: n(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTint +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_end_icon_margin_start +com.jaredrummler.android.colorpicker.R$layout: int abc_activity_chooser_view +retrofit2.ParameterHandler$HeaderMap: ParameterHandler$HeaderMap(java.lang.reflect.Method,int,retrofit2.Converter) +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType valueOf(java.lang.String) +wangdaye.com.geometricweather.R$attr: int fastScrollHorizontalThumbDrawable +okhttp3.internal.http2.Http2: byte TYPE_SETTINGS +io.reactivex.internal.disposables.EmptyDisposable: java.lang.Object poll() +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableBottom +com.xw.repo.bubbleseekbar.R$attr: int queryHint +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void unregisterListener(cyanogenmod.app.ICustomTileListener,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWetBulbTemperature +wangdaye.com.geometricweather.R$drawable: int flag_ar +androidx.preference.R$drawable: int abc_btn_borderless_material +cyanogenmod.hardware.CMHardwareManager: boolean writePersistentString(java.lang.String,java.lang.String) +com.google.android.material.R$dimen: int mtrl_low_ripple_hovered_alpha +com.google.android.gms.common.api.UnsupportedApiCallException: com.google.android.gms.common.Feature zza +android.didikee.donate.R$id: int add +wangdaye.com.geometricweather.R$id: int search_mag_icon +retrofit2.HttpServiceMethod$SuspendForBody: HttpServiceMethod$SuspendForBody(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter,boolean) +wangdaye.com.geometricweather.R$attr: int altSrc +com.google.android.material.R$dimen: int abc_text_size_body_2_material +androidx.appcompat.R$drawable: int notification_bg_normal +androidx.cardview.widget.CardView: void setPreventCornerOverlap(boolean) +com.jaredrummler.android.colorpicker.R$dimen: int hint_alpha_material_dark +androidx.swiperefreshlayout.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$id: int refresh_layout +com.amap.api.fence.GeoFence: com.amap.api.location.AMapLocation r +androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_medium_material +com.turingtechnologies.materialscrollbar.R$layout: int support_simple_spinner_dropdown_item +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeAppearance +wangdaye.com.geometricweather.R$dimen: int notification_large_icon_height +okhttp3.OkHttpClient$1: okhttp3.internal.connection.RouteDatabase routeDatabase(okhttp3.ConnectionPool) +android.didikee.donate.R$dimen: int abc_text_size_subtitle_material_toolbar +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_1 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_GCM_SHA256 +android.didikee.donate.R$styleable: int ActionBar_displayOptions +androidx.constraintlayout.helper.widget.Flow: void setFirstHorizontalStyle(int) +androidx.activity.R$id: int accessibility_action_clickable_span +okhttp3.ResponseBody$1: okhttp3.MediaType val$contentType +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_buttonIconDimen +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +androidx.customview.R$layout: int notification_template_custom_big +androidx.appcompat.R$drawable: int abc_textfield_search_activated_mtrl_alpha +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_button_material +okhttp3.Response: boolean isRedirect() +com.tencent.bugly.proguard.ap: com.tencent.bugly.proguard.ao m +cyanogenmod.hardware.CMHardwareManager: java.lang.String getLtoSource() +wangdaye.com.geometricweather.R$style: int Widget_Design_Snackbar +com.google.android.material.R$color: int foreground_material_light +okhttp3.internal.http2.Header: okio.ByteString name +androidx.customview.R$styleable: int FontFamily_fontProviderPackage +okhttp3.Cache: int writeAbortCount +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: boolean cancelled +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX brandInfo +retrofit2.Call: void cancel() +androidx.customview.R$dimen: int notification_main_column_padding_top +cyanogenmod.app.BaseLiveLockManagerService: BaseLiveLockManagerService() +com.github.rahatarmanahmed.cpv.CircularProgressView$6: CircularProgressView$6(com.github.rahatarmanahmed.cpv.CircularProgressView) +androidx.viewpager.R$styleable: int GradientColor_android_startY +cyanogenmod.weather.RequestInfo: int mRequestType +com.turingtechnologies.materialscrollbar.R$attr: int subtitle +io.reactivex.Observable: io.reactivex.Observable buffer(java.util.concurrent.Callable,java.util.concurrent.Callable) +com.google.android.gms.common.api.GoogleApiClient: void unregisterConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) +androidx.work.NetworkType: androidx.work.NetworkType NOT_ROAMING +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getProvince() +android.didikee.donate.R$drawable: int notification_bg_normal +com.google.android.material.R$attr: int keylines +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap +com.turingtechnologies.materialscrollbar.R$id: int list_item +androidx.constraintlayout.widget.R$attr: int buttonStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: int UnitType +wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_android_src +androidx.preference.R$styleable: int AppCompatTheme_checkboxStyle +androidx.constraintlayout.widget.R$attr: int viewInflaterClass +androidx.viewpager2.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getHourlyForecast() +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: SavedStateHandle$SavingStateLiveData(androidx.lifecycle.SavedStateHandle,java.lang.String,java.lang.Object) +com.google.android.material.R$styleable: int CardView_cardCornerRadius +cyanogenmod.app.StatusBarPanelCustomTile$1: StatusBarPanelCustomTile$1() +androidx.appcompat.R$style: int Base_Widget_AppCompat_EditText +io.reactivex.internal.observers.InnerQueuedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +okhttp3.OkHttpClient$Builder: int readTimeout +com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String a(int) +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: boolean inCompletable +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicInteger wip +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar +androidx.preference.R$color +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.R$id: int all +androidx.preference.R$style: int TextAppearance_Compat_Notification +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState CLEARED +com.google.android.material.R$drawable: int abc_ic_arrow_drop_right_black_24dp +james.adaptiveicon.R$layout: int notification_action_tombstone +androidx.hilt.lifecycle.R$string +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$attr: int mock_showDiagonals +retrofit2.OkHttpCall$1: void onFailure(okhttp3.Call,java.io.IOException) +androidx.constraintlayout.widget.ConstraintLayout: void setId(int) +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_2 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_109 +james.adaptiveicon.R$attr: int showTitle +io.reactivex.internal.util.NotificationLite: boolean isDisposable(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String Phrase_60 +com.jaredrummler.android.colorpicker.R$attr: int windowActionBarOverlay +com.amap.api.location.AMapLocationQualityReport: int d +androidx.viewpager2.R$styleable: int[] ColorStateListItem +cyanogenmod.app.ILiveLockScreenManagerProvider: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +com.turingtechnologies.materialscrollbar.R$attr: int spinBars +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabAnimationMode +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_toolbar +androidx.drawerlayout.R$color: int secondary_text_default_material_light +io.reactivex.Observable: io.reactivex.Observable buffer(int) +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: boolean isDisposed() +androidx.constraintlayout.widget.R$dimen: int disabled_alpha_material_light +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_DialogWhenLarge +io.reactivex.Observable: io.reactivex.Observable unsafeCreate(io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$bool: int enable_system_job_service_default +com.google.android.material.R$drawable: int abc_spinner_textfield_background_material +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents +cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_DO_NOTHING +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +okhttp3.internal.http2.Http2Connection: long awaitPongsReceived +james.adaptiveicon.R$color: int background_material_light +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int TORNADO +androidx.appcompat.resources.R$integer +com.github.rahatarmanahmed.cpv.R$integer +org.greenrobot.greendao.DaoException +wangdaye.com.geometricweather.R$id: int month_navigation_next +androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_width_major +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: int getChartTop() +okhttp3.internal.ws.RealWebSocket: java.util.List ONLY_HTTP1 +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isDataConnectionEnabled +okhttp3.Dispatcher: void finished(okhttp3.RealCall$AsyncCall) +androidx.fragment.R$id: int action_divider +com.google.android.material.R$styleable: int BottomAppBar_fabCradleVerticalOffset +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter +androidx.coordinatorlayout.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$attr: int iconPadding +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_22 +com.github.rahatarmanahmed.cpv.CircularProgressView: void onSizeChanged(int,int,int,int) +androidx.appcompat.R$attr: int actionProviderClass +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean +com.jaredrummler.android.colorpicker.R$style: int Base_V26_Widget_AppCompat_Toolbar +com.turingtechnologies.materialscrollbar.R$styleable: int[] ListPopupWindow +wangdaye.com.geometricweather.R$string: int key_widget_week +com.google.android.material.R$styleable: int MaterialButtonToggleGroup_singleSelection +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onComplete() +androidx.fragment.R$id: int action_image +com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Dialog +android.didikee.donate.R$id: int expand_activities_button +com.amap.api.fence.GeoFenceClient: boolean isPause() +androidx.appcompat.widget.ViewStubCompat: ViewStubCompat(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_85 +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextAppearanceActive +retrofit2.SkipCallbackExecutorImpl: retrofit2.SkipCallbackExecutor INSTANCE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setUnit(java.lang.String) +androidx.legacy.coreutils.R$id: R$id() +androidx.appcompat.resources.R$id: int tag_accessibility_pane_title +com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuView +com.tencent.bugly.crashreport.common.info.b: java.lang.String r() +android.didikee.donate.R$attr: int contentInsetEnd +com.amap.api.location.CoordinateConverter: com.amap.api.location.DPoint convert() +io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.CompletableSource) +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_icon_size +androidx.cardview.R$attr: int cardBackgroundColor +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadMessage(okio.ByteString) +androidx.constraintlayout.widget.R$color: int abc_secondary_text_material_light +wangdaye.com.geometricweather.R$attr: int flow_horizontalStyle +cyanogenmod.providers.CMSettings: java.lang.String AUTHORITY +androidx.preference.R$color: int material_blue_grey_900 +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_ON +androidx.appcompat.R$attr: int listDividerAlertDialog +okhttp3.internal.http2.Settings: boolean isSet(int) +androidx.activity.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$array: int subtitle_data +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: android.os.Bundle val$options +androidx.core.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: AccuCurrentResult$PrecipitationSummary$PastHour$Metric() +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_CompactMenu +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_cancelOngoingRequests +james.adaptiveicon.R$attr: int font +cyanogenmod.externalviews.ExternalView$1 +wangdaye.com.geometricweather.R$attr: int state_above_anchor +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_25 +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign +androidx.constraintlayout.widget.R$styleable: int Transition_motionInterpolator +okhttp3.internal.http2.Http2Stream$FramingSink: okhttp3.internal.http2.Http2Stream this$0 +androidx.hilt.lifecycle.R$styleable: R$styleable() +androidx.recyclerview.R$id: int accessibility_custom_action_17 +cyanogenmod.externalviews.ExternalViewProperties: ExternalViewProperties(android.view.View,android.content.Context) +okhttp3.Response: okhttp3.Protocol protocol() +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.appcompat.R$id: int custom +wangdaye.com.geometricweather.R$attr: int bsb_track_size +androidx.customview.R$id: int notification_main_column_container +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoldIndex() +wangdaye.com.geometricweather.R$id: int widget_day_week +androidx.appcompat.R$attr: int drawableLeftCompat +com.google.android.material.circularreveal.CircularRevealGridLayout: void setCircularRevealScrimColor(int) +com.xw.repo.bubbleseekbar.R$string: int abc_menu_delete_shortcut_label +wangdaye.com.geometricweather.R$id: int text_input_error_icon +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: int UnitType +com.google.android.material.R$layout: int design_menu_item_action_area +androidx.activity.R$id +com.google.android.material.R$attr: int reverseLayout +androidx.preference.R$styleable: int MenuView_android_itemBackground +wangdaye.com.geometricweather.R$styleable: int[] PreferenceTheme +androidx.hilt.R$drawable: int notification_action_background +com.google.android.material.R$attr: int fastScrollHorizontalTrackDrawable +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: ObservableGroupJoin$LeftRightObserver(io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport,boolean) +cyanogenmod.providers.CMSettings$Secure$1: boolean validate(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int[] KeyTimeCycle +com.google.android.material.bottomnavigation.BottomNavigationView: int getItemIconSize() +com.google.android.material.R$attr: int tooltipForegroundColor +androidx.viewpager.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$drawable: int ic_google_play +okhttp3.internal.connection.RouteException: RouteException(java.io.IOException) +androidx.legacy.coreutils.R$attr: int font +com.loc.k: java.lang.String c +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: AccuCurrentResult$RealFeelTemperatureShade$Metric() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_EditText +io.reactivex.internal.schedulers.AbstractDirectTask: void dispose() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogCornerRadius +com.google.android.material.bottomsheet.BottomSheetBehavior: BottomSheetBehavior(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$attr: int tabTextAppearance +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircleAngle +wangdaye.com.geometricweather.R$style: int Base_CardView +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +cyanogenmod.externalviews.ExternalView$6: void run() +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference other +wangdaye.com.geometricweather.R$anim: int fragment_close_exit +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeMinTextSize +com.google.android.material.R$styleable: int ConstraintSet_flow_lastVerticalBias +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_dither +android.didikee.donate.R$style: int Widget_AppCompat_SearchView_ActionBar +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String temperature +com.turingtechnologies.materialscrollbar.R$string: int fab_transformation_scrim_behavior +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowMinWidthMajor +androidx.preference.R$attr: int actionBarSplitStyle +cyanogenmod.weather.CMWeatherManager$2$2: void run() +james.adaptiveicon.R$drawable: int abc_text_select_handle_middle_mtrl_light +androidx.lifecycle.ServiceLifecycleDispatcher: ServiceLifecycleDispatcher(androidx.lifecycle.LifecycleOwner) +android.didikee.donate.R$drawable: int abc_textfield_search_material +okio.RealBufferedSource: void require(long) +com.amap.api.fence.GeoFence: void setDistrictItemList(java.util.List) +okhttp3.internal.io.FileSystem: okio.Source source(java.io.File) +com.tencent.bugly.proguard.p: com.tencent.bugly.proguard.r a(android.database.Cursor) +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource valueOf(java.lang.String) +cyanogenmod.profiles.BrightnessSettings: BrightnessSettings() +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableTop +com.turingtechnologies.materialscrollbar.R$attr: int colorControlActivated +com.turingtechnologies.materialscrollbar.R$styleable: int[] ScrollingViewBehavior_Layout +com.tencent.bugly.crashreport.common.info.a: java.lang.String ab +wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_light +androidx.lifecycle.ReflectiveGenericLifecycleObserver: ReflectiveGenericLifecycleObserver(java.lang.Object) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.vectordrawable.R$styleable: int FontFamilyFont_ttcIndex +androidx.hilt.R$styleable: int[] GradientColorItem +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_variablePadding +androidx.recyclerview.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_normal +wangdaye.com.geometricweather.R$styleable: int ClockHandView_selectorSize +com.amap.api.fence.GeoFence: com.amap.api.fence.PoiItem f +wangdaye.com.geometricweather.R$attr: int fabCradleVerticalOffset +androidx.transition.R$id: int forever +com.google.android.material.R$styleable: int ImageFilterView_saturation +android.didikee.donate.R$bool: int abc_action_bar_embed_tabs +cyanogenmod.themes.ThemeManager$1$1: cyanogenmod.themes.ThemeManager$1 this$1 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +com.google.android.material.R$dimen: int mtrl_slider_thumb_radius +okhttp3.internal.platform.Platform: void configureSslSocketFactory(javax.net.ssl.SSLSocketFactory) +com.google.android.material.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver +androidx.preference.R$styleable: int ListPreference_useSimpleSummaryProvider +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_logo +com.tencent.bugly.proguard.an: java.lang.String f +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +com.amap.api.location.AMapLocation: java.lang.String getAoiName() +androidx.coordinatorlayout.R$dimen: int notification_main_column_padding_top +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5 +com.jaredrummler.android.colorpicker.R$id: int seekbar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX +okhttp3.Interceptor$Chain +okhttp3.internal.Util: okio.ByteString UTF_8_BOM +cyanogenmod.hardware.CMHardwareManager: boolean unRegisterThermalListener(cyanogenmod.hardware.ThermalListenerCallback) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_popupWindowStyle +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: boolean hasCompleted() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_128_GCM_SHA256 +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle getInstance(java.lang.String) +wangdaye.com.geometricweather.R$attr: int iconTint +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol HTTP +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetStart +cyanogenmod.weatherservice.ServiceRequestResult$1: java.lang.Object[] newArray(int) +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: void dispose() +androidx.appcompat.widget.AppCompatButton +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleDrawable +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animDuration +androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_middle_mtrl_light +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: java.util.concurrent.Executor callbackExecutor +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification +androidx.appcompat.widget.LinearLayoutCompat: void setVerticalGravity(int) +androidx.activity.R$id: int tag_accessibility_heading +androidx.hilt.work.R$id +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_drawableSize +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage RESOURCE_CACHE +wangdaye.com.geometricweather.R$dimen: int material_font_2_0_box_collapsed_padding_top +cyanogenmod.hardware.ICMHardwareService: int getNumGammaControls() +okhttp3.internal.cache.DiskLruCache$2: void onException(java.io.IOException) +com.jaredrummler.android.colorpicker.R$dimen: int notification_right_side_padding_top +io.reactivex.internal.functions.Functions$NaturalComparator +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent[] $VALUES +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$styleable: int TextAppearance_fontFamily +androidx.viewpager.widget.PagerTabStrip: void setTextSpacing(int) +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_edittext +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator LIVE_DISPLAY_HINTED_VALIDATOR +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void runFinally() +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onComplete() +cyanogenmod.weather.WeatherLocation$1: WeatherLocation$1() +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node findByEntry(java.util.Map$Entry) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String MinuteText +okhttp3.MediaType: java.util.regex.Pattern TYPE_SUBTYPE +wangdaye.com.geometricweather.R$styleable: int Chip_rippleColor +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerError(java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int searchIcon +androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandle getHandle() +com.tencent.bugly.crashreport.crash.jni.b: com.tencent.bugly.crashreport.crash.CrashDetailBean a(android.content.Context,java.lang.String,com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler) +cyanogenmod.app.Profile$ProfileTrigger: int mType +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_android_thumb +android.didikee.donate.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void replay(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) +wangdaye.com.geometricweather.R$array: int precipitation_unit_voices +com.xw.repo.bubbleseekbar.R$attr: int textColorSearchUrl +wangdaye.com.geometricweather.R$string: int feedback_location_permissions_statement +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea +com.google.android.gms.common.api.ApiException +androidx.lifecycle.extensions.R$id: int normal +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityCreated(android.app.Activity,android.os.Bundle) +wangdaye.com.geometricweather.R$styleable: int[] ViewStubCompat +james.adaptiveicon.R$attr: int switchTextAppearance +okhttp3.internal.Internal: okhttp3.internal.connection.RealConnection get(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) +android.didikee.donate.R$attr: int actionModeSplitBackground +com.google.android.material.R$attr: int itemShapeInsetBottom +com.google.android.material.internal.FlowLayout: int getLineSpacing() +wangdaye.com.geometricweather.R$styleable: int[] RoundCornerTransition +okhttp3.HttpUrl$Builder: java.lang.String encodedUsername +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setOnRefreshListener(androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnRefreshListener) +com.google.android.material.R$style: int Theme_MaterialComponents_NoActionBar_Bridge +james.adaptiveicon.R$string: R$string() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_41 +com.google.android.gms.base.R$attr: int scopeUris +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIcon(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.observable.ObserverResourceWrapper: long serialVersionUID +com.google.android.material.slider.Slider: float getValueFrom() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial() +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton +androidx.drawerlayout.R$dimen: int notification_large_icon_height +androidx.lifecycle.ComputableLiveData$3: androidx.lifecycle.ComputableLiveData this$0 +wangdaye.com.geometricweather.R$attr: int colorError +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport parent +io.reactivex.exceptions.UndeliverableException +cyanogenmod.weather.ICMWeatherManager$Stub: cyanogenmod.weather.ICMWeatherManager asInterface(android.os.IBinder) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onTimeout(long) +com.google.android.gms.location.zzo: android.os.Parcelable$Creator CREATOR +com.amap.api.fence.GeoFence: void setMaxDis2Center(float) +com.tencent.bugly.crashreport.common.info.a +okhttp3.internal.http2.Http2Stream: void closeLater(okhttp3.internal.http2.ErrorCode) +androidx.constraintlayout.widget.ConstraintLayout: void setMinHeight(int) +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.internal.connection.StreamAllocation streamAllocation +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: org.reactivestreams.Subscriber mSubscriber +com.google.android.material.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_grey +androidx.preference.R$id: int alertTitle +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_overflow_padding_start_material +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayVerticalProvider +cyanogenmod.hardware.ICMHardwareService: byte[] readPersistentBytes(java.lang.String) +wangdaye.com.geometricweather.R$attr: int cornerSizeTopRight +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_min +cyanogenmod.app.CMContextConstants$Features: java.lang.String STATUSBAR +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_DropDown +androidx.core.R$id: int accessibility_custom_action_15 +androidx.appcompat.resources.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: java.lang.String Unit +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd +com.google.android.material.R$dimen: int hint_pressed_alpha_material_dark +androidx.loader.R$dimen: int compat_notification_large_icon_max_width +com.google.android.material.R$styleable: int AlertDialog_listLayout +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.View onCreatePanelView(int) +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: long serialVersionUID +io.reactivex.internal.operators.observable.ObservableReplay$Node: ObservableReplay$Node(java.lang.Object) +androidx.constraintlayout.widget.R$attr: int onShow +wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text_color +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_switchPreferenceStyle +cyanogenmod.themes.ThemeChangeRequest: void writeToParcel(android.os.Parcel,int) +androidx.viewpager2.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.R$menu: int activity_preview_icon +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_5 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_3DES_EDE_CBC_SHA +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark_focused +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context) +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_long_text_horizontal_padding +com.google.android.material.R$attr: int buttonTint +android.didikee.donate.R$drawable: int abc_seekbar_track_material +androidx.recyclerview.R$color: R$color() +android.didikee.donate.R$attr: int textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int subTextColorResId +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onNext(java.lang.Object) +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void ackSettings() +androidx.recyclerview.widget.RecyclerView: int getScrollState() +androidx.preference.R$attr: int textAppearancePopupMenuHeader +androidx.fragment.R$dimen: int notification_subtext_size +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Bridge +wangdaye.com.geometricweather.R$styleable: int[] MenuView +androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackground(android.graphics.drawable.Drawable) +com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_layout +com.tencent.bugly.crashreport.crash.CrashDetailBean: long H +androidx.preference.R$attr: int seekBarStyle +com.google.android.material.R$styleable: int[] MaterialAlertDialogTheme +com.turingtechnologies.materialscrollbar.R$color: int background_material_dark +cyanogenmod.app.Profile: cyanogenmod.profiles.LockSettings mScreenLockMode +androidx.constraintlayout.widget.R$dimen: int notification_big_circle_margin +james.adaptiveicon.R$string: int abc_searchview_description_query +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenManager getInstance(android.content.Context) +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: IWeatherProviderServiceClient$Stub$Proxy(android.os.IBinder) +com.google.android.material.R$attr: int materialCalendarFullscreenTheme +com.google.android.material.R$styleable: int AppBarLayoutStates_state_liftable +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Light +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getActiveProfile +androidx.appcompat.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_android_entryValues +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconTint +androidx.preference.R$layout: int abc_dialog_title_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial Imperial +com.turingtechnologies.materialscrollbar.R$id: int right_side +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.Observer downstream +james.adaptiveicon.R$styleable: int[] View +android.didikee.donate.R$styleable: int[] ButtonBarLayout +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_height_minor +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: void onResponse(retrofit2.Call,retrofit2.Response) +androidx.lifecycle.extensions.R$dimen: int notification_action_icon_size +james.adaptiveicon.R$attr: int splitTrack +com.jaredrummler.android.colorpicker.R$drawable: int notification_template_icon_low_bg +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_sym_shortcut_label +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean disposed +androidx.swiperefreshlayout.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.R$attr: int thumbStrokeWidth +wangdaye.com.geometricweather.R$styleable: int MockView_mock_labelColor +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeight +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed +androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat_Dark +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable +androidx.appcompat.resources.R$id: int accessibility_custom_action_24 +wangdaye.com.geometricweather.R$id: int widget_week_icon_2 +com.tencent.bugly.proguard.p: boolean b(com.tencent.bugly.proguard.r) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_ASSIST_LONG_PRESS_ACTION_VALIDATOR +com.amap.api.fence.PoiItem: java.lang.String getCity() +com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String VERSION_NAME +com.google.android.gms.location.zzay +com.google.android.material.appbar.AppBarLayout$BaseBehavior: AppBarLayout$BaseBehavior(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +com.turingtechnologies.materialscrollbar.R$dimen: int abc_config_prefDialogWidth +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginStart +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabText +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: cyanogenmod.app.ILiveLockScreenChangeListener asInterface(android.os.IBinder) +android.didikee.donate.R$styleable: int AlertDialog_singleChoiceItemLayout +com.turingtechnologies.materialscrollbar.R$integer +android.didikee.donate.R$drawable: int notification_icon_background +androidx.appcompat.R$styleable: int AppCompatTheme_activityChooserViewStyle +retrofit2.RequestFactory: boolean isMultipart +cyanogenmod.util.ColorUtils: int dropAlpha(int) +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +androidx.hilt.lifecycle.R$drawable: int notification_bg_low_pressed +com.google.android.material.R$plurals: int mtrl_badge_content_description +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_107 +cyanogenmod.app.Profile: java.util.Collection getConnectionSettings() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Slider +okhttp3.internal.cache.DiskLruCache$Entry: DiskLruCache$Entry(okhttp3.internal.cache.DiskLruCache,java.lang.String) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_stroke_size +androidx.drawerlayout.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.db.entities.DailyEntity: void setSo2(java.lang.Float) +com.google.android.material.R$style: int TextAppearance_Design_Counter_Overflow +wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_light +android.didikee.donate.R$attr: int ratingBarStyleSmall +com.tencent.bugly.crashreport.crash.anr.b: void a(com.tencent.bugly.crashreport.common.strategy.StrategyBean) +com.google.gson.JsonIOException: JsonIOException(java.lang.Throwable) +androidx.appcompat.widget.SearchView: void setOnSearchClickListener(android.view.View$OnClickListener) +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long end +cyanogenmod.weather.RequestInfo$Builder: android.location.Location mLocation +com.tencent.bugly.proguard.v: long r +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$OnFlingListener getOnFlingListener() +androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonTintMode +wangdaye.com.geometricweather.R$styleable: int[] ForegroundLinearLayout +com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.proguard.w d +androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackgroundResource(int) +androidx.work.R$attr +com.google.android.material.internal.StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayDetailsProvider: WidgetClockDayDetailsProvider() +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Title +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarButtonStyle +james.adaptiveicon.R$attr: int subtitleTextColor +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setMockEnable(boolean) +androidx.preference.R$color: int bright_foreground_disabled_material_light +android.didikee.donate.R$styleable: int PopupWindow_android_popupAnimationStyle +androidx.appcompat.R$styleable: int ActionBar_contentInsetEnd +com.google.android.material.R$attr: int ttcIndex +androidx.constraintlayout.widget.R$drawable: int notification_bg +androidx.lifecycle.LiveData$AlwaysActiveObserver: androidx.lifecycle.LiveData this$0 +james.adaptiveicon.R$styleable: int MenuItem_alphabeticModifiers +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline3 +com.jaredrummler.android.colorpicker.R$string: int cpv_transparency +wangdaye.com.geometricweather.R$dimen: int preference_seekbar_value_minWidth +androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_bottom_material +androidx.preference.R$color: int abc_search_url_text +androidx.work.R$id: int chronometer +wangdaye.com.geometricweather.R$attr: int closeIconEnabled +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_switchStyle +okio.Okio: okio.Sink appendingSink(java.io.File) +wangdaye.com.geometricweather.common.basic.models.weather.Temperature +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_trackTintMode +android.didikee.donate.R$attr: int progressBarPadding +androidx.appcompat.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int Icon +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_Solid +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: java.util.List history +james.adaptiveicon.R$style: int Base_V26_Theme_AppCompat_Light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric Metric +androidx.hilt.work.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.textfield.TextInputLayout: void setHintAnimationEnabled(boolean) +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabView +com.google.android.material.R$id: int BOTTOM_END +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) +james.adaptiveicon.R$styleable: int AppCompatTheme_tooltipForegroundColor +com.google.android.material.R$layout: int mtrl_alert_select_dialog_singlechoice +androidx.preference.R$style: int Base_V28_Theme_AppCompat_Light +androidx.core.R$drawable: int notification_bg +androidx.preference.R$integer +com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Text +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_height_material +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_snackbar_background_corner_radius +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum Maximum +androidx.hilt.R$styleable: int[] ColorStateListItem com.google.android.material.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.R$attr: int appBarLayoutStyle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_visibility -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String moonPhaseDescription -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeErrorColor -androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Light -androidx.recyclerview.R$attr: int fontStyle -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport parent -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeTextType +wangdaye.com.geometricweather.R$attr: int floatingActionButtonStyle +wangdaye.com.geometricweather.R$styleable: int Constraint_drawPath +com.jaredrummler.android.colorpicker.ColorPickerDialog +com.google.android.material.chip.Chip: void setShowMotionSpecResource(int) +okhttp3.internal.http.HttpHeaders: HttpHeaders() +wangdaye.com.geometricweather.R$style: int material_image_button +androidx.appcompat.resources.R$styleable: int ColorStateListItem_android_alpha +com.google.android.material.chip.ChipGroup +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.functions.Function mapper +okio.InflaterSource: java.util.zip.Inflater inflater +okhttp3.logging.LoggingEventListener$Factory: okhttp3.EventListener create(okhttp3.Call) +com.google.android.material.R$layout: int select_dialog_item_material +com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException +com.google.android.material.imageview.ShapeableImageView: void setStrokeWidthResource(int) +com.google.android.material.R$styleable: int ActionBar_contentInsetStartWithNavigation +androidx.appcompat.widget.ViewStubCompat: android.view.LayoutInflater getLayoutInflater() +okhttp3.MultipartBody$Part: MultipartBody$Part(okhttp3.Headers,okhttp3.RequestBody) +androidx.fragment.R$style: int Widget_Compat_NotificationActionText +retrofit2.Utils: Utils() +wangdaye.com.geometricweather.R$attr: int drawableStartCompat +com.turingtechnologies.materialscrollbar.R$attr: int titleMarginBottom +com.google.android.material.R$dimen: int item_touch_helper_swipe_escape_max_velocity +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontVariationSettings +android.didikee.donate.R$style: int Widget_AppCompat_Spinner +androidx.preference.R$styleable: int DialogPreference_dialogLayout +androidx.preference.R$id: int bottom +com.google.android.material.R$color: int abc_tint_switch_track +wangdaye.com.geometricweather.R$id: int circular_sky +james.adaptiveicon.R$style: int Base_V26_Widget_AppCompat_Toolbar +okhttp3.internal.http2.Hpack$Writer: void setHeaderTableSizeSetting(int) +com.google.android.material.R$drawable: int abc_btn_radio_to_on_mtrl_015 +com.google.android.material.R$id: int search_src_text +wangdaye.com.geometricweather.R$styleable: int Toolbar_navigationContentDescription +cyanogenmod.hardware.CMHardwareManager: boolean deletePersistentObject(java.lang.String) +wangdaye.com.geometricweather.R$string: int key_align_end +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_checkableBehavior +wangdaye.com.geometricweather.R$attr: int tooltipText +androidx.viewpager2.R$id: int accessibility_custom_action_11 +wangdaye.com.geometricweather.R$style: int Widget_Design_BottomNavigationView +okhttp3.internal.tls.TrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) +androidx.appcompat.R$styleable: int MenuItem_android_checked +androidx.appcompat.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +wangdaye.com.geometricweather.R$color: int colorLine +com.xw.repo.bubbleseekbar.R$color: int primary_text_disabled_material_light +androidx.constraintlayout.widget.R$attr: int actionModeBackground +com.jaredrummler.android.colorpicker.NestedGridView +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_118 +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +androidx.recyclerview.R$id: int line1 +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_DialogWhenLarge +wangdaye.com.geometricweather.R$dimen: int abc_dialog_title_divider_material +com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_ContextMenu +wangdaye.com.geometricweather.R$drawable: int test_custom_background +com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.util.SparseArray getBadgeDrawables() +com.google.android.material.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +wangdaye.com.geometricweather.R$styleable: int AnimatableIconView_inner_margins +com.jaredrummler.android.colorpicker.R$styleable: int[] CheckBoxPreference +com.google.android.material.R$attr: int flow_lastVerticalBias +cyanogenmod.weatherservice.WeatherProviderService: java.util.Set mWeakRequestsSet +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_submitBackground +com.turingtechnologies.materialscrollbar.R$attr: int fabCradleMargin +androidx.constraintlayout.widget.R$id: int ignore +androidx.appcompat.resources.R$drawable: int abc_vector_test +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_AutoCompleteTextView +android.didikee.donate.R$drawable: int abc_ic_star_black_36dp +cyanogenmod.weather.IRequestInfoListener$Stub: java.lang.String DESCRIPTOR +com.turingtechnologies.materialscrollbar.R$attr: int windowNoTitle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorButtonNormal +james.adaptiveicon.R$attr: int subtitleTextStyle +com.google.android.material.R$styleable: int AppCompatTheme_alertDialogTheme +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindDircStart() +androidx.preference.R$styleable: int SearchView_commitIcon +androidx.fragment.app.SuperNotCalledException: SuperNotCalledException(java.lang.String) +androidx.preference.R$style: int Widget_AppCompat_Button_Colored +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onNext(java.lang.Object) +com.google.android.material.R$styleable: int RecyclerView_stackFromEnd +wangdaye.com.geometricweather.R$id: int treeValue +androidx.appcompat.resources.R$id: int accessibility_custom_action_4 +com.jaredrummler.android.colorpicker.R$style: int Base_AlertDialog_AppCompat_Light +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_curveFit +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int mainTextColorResId +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_defaultQueryHint +com.turingtechnologies.materialscrollbar.R$anim: int design_snackbar_in +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onKeyguardDismissed() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias +com.google.android.material.R$attr: int flow_firstVerticalBias +androidx.core.R$layout: int notification_template_custom_big +androidx.constraintlayout.widget.R$id: int search_plate +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset +com.turingtechnologies.materialscrollbar.R$dimen: int notification_media_narrow_margin +james.adaptiveicon.R$attr: int listLayout +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void run() +james.adaptiveicon.R$drawable: int abc_ab_share_pack_mtrl_alpha +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Title +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMark +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getKey() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint +androidx.appcompat.R$style: int TextAppearance_AppCompat_Menu +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver +com.google.android.material.R$styleable: int KeyAttribute_motionTarget +okio.BufferedSource: int readIntLe() +james.adaptiveicon.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.R$attr: int textAppearanceListItem +com.google.android.material.R$styleable: int ChipGroup_chipSpacing +android.didikee.donate.R$styleable: int ActionMode_titleTextStyle +androidx.preference.R$anim +wangdaye.com.geometricweather.R$drawable: int ic_star +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constrainedWidth +com.turingtechnologies.materialscrollbar.AlphabetIndicator: AlphabetIndicator(android.content.Context) +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LIVE_LOCK_SCREEN +wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontContainer +com.google.android.material.slider.Slider: float getValue() +com.google.android.material.R$styleable: int SnackbarLayout_animationMode +james.adaptiveicon.R$id: int textSpacerNoButtons +androidx.appcompat.R$attr: int allowStacking +okhttp3.internal.platform.AndroidPlatform: boolean api23IsCleartextTrafficPermitted(java.lang.String,java.lang.Class,java.lang.Object) +wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardSpinner +com.google.android.material.R$attr: int colorSecondaryVariant +wangdaye.com.geometricweather.common.ui.transitions.RoundCornerTransition: RoundCornerTransition(android.content.Context,android.util.AttributeSet) +androidx.fragment.app.Fragment$2 +androidx.hilt.work.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: AccuCurrentResult$TemperatureSummary$Past24HourRange() +androidx.constraintlayout.widget.R$attr: int drawableSize +com.xw.repo.bubbleseekbar.R$attr: int colorControlActivated +wangdaye.com.geometricweather.R$drawable: int notif_temp_59 +com.google.android.material.R$attr: int touchAnchorId +androidx.constraintlayout.motion.widget.MotionLayout: int getStartState() +androidx.appcompat.widget.SearchView: java.lang.CharSequence getQueryHint() +androidx.viewpager.R$id: int title +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onSuccess(java.lang.Object) +androidx.appcompat.app.ToolbarActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +james.adaptiveicon.R$dimen: int hint_pressed_alpha_material_dark +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_min +cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onCustomTileRemoved +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_Bridge +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol +com.google.android.material.R$attr: int dayInvalidStyle +okhttp3.logging.LoggingEventListener: void secureConnectStart(okhttp3.Call) +cyanogenmod.profiles.RingModeSettings: java.lang.String mValue +com.google.android.material.appbar.CollapsingToolbarLayout: void setTitleEnabled(boolean) +androidx.appcompat.widget.Toolbar: android.view.MenuInflater getMenuInflater() +wangdaye.com.geometricweather.R$color: int design_default_color_primary_dark +com.tencent.bugly.proguard.n: boolean a(int) +androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.constraintlayout.widget.R$attr: int region_widthLessThan +james.adaptiveicon.R$style: int Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: java.lang.String textAdvice +androidx.constraintlayout.widget.R$id: int startHorizontal +androidx.lifecycle.extensions.R$id: int fragment_container_view_tag +androidx.legacy.coreutils.R$id: int chronometer +androidx.loader.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_hovered_focused +com.jaredrummler.android.colorpicker.R$dimen: int abc_config_prefDialogWidth +okhttp3.internal.http.RequestLine: boolean includeAuthorityInRequestLine(okhttp3.Request,java.net.Proxy$Type) +wangdaye.com.geometricweather.R$id: int add +io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.CompletableObserver) +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isSubActive +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Tooltip +androidx.preference.R$styleable: int ActionBar_title +com.amap.api.location.AMapLocationClient: void startAssistantLocation() +com.tencent.bugly.crashreport.crash.c: void l() +io.reactivex.internal.disposables.ArrayCompositeDisposable: long serialVersionUID +com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getTextSize() +cyanogenmod.themes.ThemeChangeRequest: java.util.Map getThemeComponentsMap() +com.google.android.material.R$styleable: int SearchView_closeIcon +wangdaye.com.geometricweather.R$attr: int saturation +com.google.android.material.R$styleable: int SwitchCompat_thumbTextPadding +com.google.gson.stream.JsonWriter: void beforeName() +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +androidx.drawerlayout.R$dimen: int notification_right_icon_size +com.turingtechnologies.materialscrollbar.R$attr: int layoutManager +com.google.android.material.R$style: int Widget_AppCompat_TextView_SpinnerItem +androidx.preference.R$attr: int actionModeSelectAllDrawable +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +androidx.activity.R$id: int accessibility_custom_action_26 +androidx.transition.R$styleable: int FontFamily_fontProviderPackage +androidx.transition.R$id: int right_side +com.google.android.material.R$id: int smallLabel +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_chainStyle +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontWeight +androidx.constraintlayout.motion.widget.MotionLayout: void setState(androidx.constraintlayout.motion.widget.MotionLayout$TransitionState) +androidx.preference.R$styleable: int CheckBoxPreference_android_summaryOn +android.didikee.donate.R$style: int Platform_V21_AppCompat_Light +com.bumptech.glide.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +okhttp3.Headers: void checkValue(java.lang.String,java.lang.String) +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.util.Map z +cyanogenmod.app.Profile: int mNotificationLightMode +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemTextAppearance +com.google.android.material.button.MaterialButton: void setStrokeWidthResource(int) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String EnglishName +okhttp3.internal.cache.FaultHidingSink +androidx.preference.R$dimen: int preference_seekbar_padding_horizontal +android.didikee.donate.R$styleable: int[] Toolbar +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onNext(java.lang.Object) +com.google.android.material.R$attr: int queryHint +wangdaye.com.geometricweather.R$id: int action_bar_subtitle +wangdaye.com.geometricweather.R$dimen: int mtrl_progress_indicator_size +okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman$Node root +com.google.android.material.chip.Chip: android.text.TextUtils$TruncateAt getEllipsize() +androidx.core.R$id: int accessibility_custom_action_1 +androidx.versionedparcelable.CustomVersionedParcelable +com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_CUSTOMID +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationTextWithoutUnit(float) +com.bumptech.glide.Registry$NoImageHeaderParserException: Registry$NoImageHeaderParserException() +cyanogenmod.externalviews.ExternalViewProviderService$Provider: ExternalViewProviderService$Provider(cyanogenmod.externalviews.ExternalViewProviderService,android.os.Bundle) +wangdaye.com.geometricweather.R$attr: int customPixelDimension +com.google.android.material.R$styleable: int ActionBar_title +com.amap.api.location.AMapLocationQualityReport: long f +com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onProgressUpdateEnd(float) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitation(java.lang.Float) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Small +androidx.viewpager.widget.PagerTitleStrip: PagerTitleStrip(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_66 +retrofit2.http.Headers: java.lang.String[] value() +androidx.drawerlayout.R$id: int action_divider +okio.BufferedSource: java.lang.String readUtf8(long) +wangdaye.com.geometricweather.R$string: int settings_notification_hide_in_lockScreen_on +wangdaye.com.geometricweather.R$attr: int editTextStyle +androidx.appcompat.R$color +com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context,android.util.AttributeSet,int) +com.amap.api.location.AMapLocationClientOption: boolean isNeedAddress() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_scaleY +com.google.android.material.circularreveal.CircularRevealLinearLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +com.google.android.material.R$attr: int region_widthLessThan +retrofit2.RequestFactory$Builder: boolean isMultipart +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetLeft +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_xml +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_UnelevatedButton +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver +androidx.lifecycle.SavedStateHandle$1: android.os.Bundle saveState() +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType END +androidx.work.impl.utils.futures.DirectExecutor: void execute(java.lang.Runnable) +cyanogenmod.themes.ThemeManager: boolean processThemeResources(java.lang.String) +wangdaye.com.geometricweather.R$attr: int chainUseRtl +androidx.appcompat.R$styleable: int DrawerArrowToggle_drawableSize +com.amap.api.location.AMapLocation: boolean b(com.amap.api.location.AMapLocation,boolean) +androidx.transition.R$color +androidx.core.R$drawable: int notification_bg_low +retrofit2.Retrofit: okhttp3.HttpUrl baseUrl() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_toolbarStyle +com.google.android.material.textfield.TextInputLayout: int getBoxBackgroundMode() +androidx.hilt.work.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay[] values() +okhttp3.internal.http2.Header: okio.ByteString TARGET_METHOD +androidx.appcompat.R$styleable: int AlertDialog_android_layout +com.google.android.material.R$styleable: int Badge_horizontalOffset +okhttp3.internal.Internal: java.net.Socket deduplicate(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation) +com.google.android.material.R$styleable: int RecycleListView_paddingTopNoTitle +com.github.rahatarmanahmed.cpv.CircularProgressView$2 +retrofit2.http.QueryMap +com.jaredrummler.android.colorpicker.R$string: R$string() +org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession() +cyanogenmod.app.ProfileManager: boolean profileExists(java.lang.String) +android.didikee.donate.R$id: int scrollView +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: ObservableMergeWithCompletable$MergeWithObserver(io.reactivex.Observer) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.subjects.UnicastSubject window +wangdaye.com.geometricweather.R$string: int content_des_sunset +james.adaptiveicon.R$attr: int actionBarTabStyle +james.adaptiveicon.R$styleable: int MenuGroup_android_orderInCategory +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat +wangdaye.com.geometricweather.R$styleable: int Chip_chipIconTint +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int itemBackground +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_popupTheme +com.google.android.material.R$attr: int flow_padding +okhttp3.internal.cache.CacheStrategy$Factory: int ageSeconds +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.disposables.Disposable upstream +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +wangdaye.com.geometricweather.R$string: int ragweed +retrofit2.Retrofit: java.util.concurrent.Executor callbackExecutor() +androidx.lifecycle.extensions.R$attr +androidx.lifecycle.ViewModelStore: java.util.Set keys() +com.google.android.material.R$attr: int voiceIcon +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_22 +com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar_FullWidth +androidx.preference.R$styleable: int Preference_android_singleLineTitle +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Header$Listener access$100(okhttp3.internal.http2.Http2Stream) +androidx.appcompat.resources.R$attr: int fontProviderAuthority +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +androidx.swiperefreshlayout.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$dimen: int abc_search_view_preferred_height +com.tencent.bugly.proguard.z: java.lang.String a(java.io.File,int,boolean) +com.google.android.material.R$color: int abc_tint_default +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_title +com.google.android.material.R$attr: int indicatorColors +com.turingtechnologies.materialscrollbar.AlphabetIndicator +com.tencent.bugly.proguard.x: boolean b(java.lang.Class,java.lang.String,java.lang.Object[]) +okhttp3.internal.publicsuffix.PublicSuffixDatabase +androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog_Alert +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_rtl +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_Alert +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_at +wangdaye.com.geometricweather.R$layout: int activity_main +cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemOnClickIntent(android.app.PendingIntent) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: void cancel() +com.google.android.material.R$attr: int listPreferredItemPaddingLeft +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset +com.google.android.material.R$styleable +com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a d +androidx.dynamicanimation.R$id: int icon +com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_android_background +androidx.preference.R$styleable: int[] AppCompatTheme +com.google.android.material.R$color: int abc_search_url_text_selected +androidx.preference.R$layout: int abc_popup_menu_header_item_layout +wangdaye.com.geometricweather.R$drawable: int widget_clock_day_vertical +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX) +androidx.vectordrawable.animated.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_102 +james.adaptiveicon.AdaptiveIconView: void setPath(java.lang.String) +wangdaye.com.geometricweather.R$attr: int collapsedTitleGravity +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_inverse_material_dark +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +androidx.appcompat.R$styleable: int AppCompatImageView_tintMode +com.google.gson.stream.JsonReader: int PEEKED_UNQUOTED_NAME +okhttp3.FormBody: java.util.List encodedValues +wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_strokeWidth +com.google.android.material.R$drawable: int tooltip_frame_light +androidx.constraintlayout.widget.R$attr: int flow_maxElementsWrap +cyanogenmod.app.CustomTile$ExpandedStyle: void internalSetRemoteViews(android.widget.RemoteViews) +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColorItem_android_offset +io.reactivex.Observable: io.reactivex.Observable using(java.util.concurrent.Callable,io.reactivex.functions.Function,io.reactivex.functions.Consumer,boolean) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_icon_padding +com.google.android.material.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled +com.google.android.material.circularreveal.CircularRevealLinearLayout: CircularRevealLinearLayout(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$attr: int applyMotionScene +com.tencent.bugly.proguard.aq: void a(com.tencent.bugly.proguard.j) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: double Value +com.turingtechnologies.materialscrollbar.R$id: int add +cyanogenmod.app.Profile: void setConditionalType() +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setCityId(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingRight +androidx.preference.PreferenceManager +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxBackgroundMode +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String tag +androidx.preference.R$styleable: int TextAppearance_android_shadowDx +wangdaye.com.geometricweather.R$anim: int design_bottom_sheet_slide_in +androidx.recyclerview.R$id: int tag_accessibility_heading +com.turingtechnologies.materialscrollbar.R$styleable: int FlowLayout_itemSpacing +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setVisibility(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean) +com.google.android.material.transformation.FabTransformationBehavior: FabTransformationBehavior(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric() cyanogenmod.app.CustomTile$ExpandedGridItem -androidx.preference.MultiSelectListPreference$SavedState -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: CustomTileListenerService$ICustomTileListenerWrapper(cyanogenmod.app.CustomTileListenerService,cyanogenmod.app.CustomTileListenerService$1) -androidx.drawerlayout.R$style -cyanogenmod.themes.ThemeManager: java.util.Set access$300(cyanogenmod.themes.ThemeManager) -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_TopLeftCut -androidx.lifecycle.ViewModelStore: void clear() -wangdaye.com.geometricweather.R$styleable: int Preference_android_shouldDisableView -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_vertical_padding -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_text_size -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean isRecoverable(java.io.IOException,boolean) -com.google.android.material.R$string: int material_timepicker_minute -android.didikee.donate.R$attr: int alertDialogStyle -androidx.recyclerview.R$id: int async -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeRealFeelTemperature -android.support.v4.os.IResultReceiver -androidx.appcompat.widget.AppCompatButton: android.graphics.PorterDuff$Mode getSupportCompoundDrawablesTintMode() -wangdaye.com.geometricweather.R$drawable: int ic_star_outline -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_width_minor -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginTop -com.google.android.material.R$attr: int snackbarButtonStyle -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_switch_compat -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: long count -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getLastThemeChangeRequestType -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_104 -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacingVertical -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setForecastHourly(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean) -james.adaptiveicon.R$attr: int actionBarSplitStyle -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -com.tencent.bugly.crashreport.common.info.b: int v() -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: FitSystemBarSwipeRefreshLayout(android.content.Context) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onSubscribe(org.reactivestreams.Subscription) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_26 -james.adaptiveicon.R$dimen: int abc_dialog_title_divider_material -com.google.android.material.R$style: int Widget_Design_FloatingActionButton -android.didikee.donate.R$attr: int windowActionModeOverlay -cyanogenmod.hardware.IThermalListenerCallback$Stub -androidx.coordinatorlayout.R$id: int text2 -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackground(android.graphics.drawable.Drawable) -okio.SegmentedByteString: java.lang.String toString() -com.google.android.material.R$dimen: int clock_face_margin_start -wangdaye.com.geometricweather.R$string: int thunderstorm -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton -android.didikee.donate.R$styleable: int AppCompatTheme_popupMenuStyle -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonSetDate -androidx.loader.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setHeadDescription(java.lang.String) -androidx.appcompat.R$styleable: int FontFamily_fontProviderPackage -androidx.preference.R$dimen: int hint_pressed_alpha_material_light -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider NATIVE -io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Thread runner -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setTime(long) -okhttp3.internal.ws.WebSocketReader: void readHeader() -com.google.android.material.R$styleable: int ConstraintSet_android_scaleX -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month_navigation -androidx.constraintlayout.widget.R$styleable: int MenuItem_iconTint -com.google.android.material.R$styleable: int AppBarLayout_liftOnScrollTargetViewId -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -com.jaredrummler.android.colorpicker.ColorPanelView: int getShape() -androidx.constraintlayout.widget.R$attr: int nestedScrollFlags -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupWindow -james.adaptiveicon.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date sunRiseDate -com.xw.repo.bubbleseekbar.R$color: int dim_foreground_material_light -com.jaredrummler.android.colorpicker.R$attr: int fastScrollHorizontalTrackDrawable -com.google.android.material.R$styleable: int ActionBar_customNavigationLayout -androidx.viewpager2.R$id: int tag_screen_reader_focusable -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableRight -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,boolean) -wangdaye.com.geometricweather.R$id: int fragment_drawer -james.adaptiveicon.R$styleable: int AppCompatTheme_dialogTheme -wangdaye.com.geometricweather.R$layout: int item_icon_provider_get_more -androidx.appcompat.widget.SearchView$SearchAutoComplete: void setImeVisibility(boolean) -com.xw.repo.bubbleseekbar.R$attr: int homeAsUpIndicator -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: io.reactivex.functions.Action onOverflow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Colored -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean -okio.Util: int reverseBytesInt(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: double Value -com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_margin -cyanogenmod.providers.CMSettings$Secure: java.lang.String POWER_MENU_ACTIONS -com.tencent.bugly.proguard.q: java.util.List d -com.google.android.material.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_onClick -com.google.android.material.R$id: int notification_main_column_container -com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuView -wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_color_disabled -android.didikee.donate.R$styleable: int MenuItem_contentDescription -androidx.preference.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -androidx.appcompat.widget.SearchView: void setOnSuggestionListener(androidx.appcompat.widget.SearchView$OnSuggestionListener) -okhttp3.internal.http1.Http1Codec: okhttp3.OkHttpClient client -com.turingtechnologies.materialscrollbar.R$attr: int dialogTheme -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Call clone() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Body1 -wangdaye.com.geometricweather.R$attr: int textAppearanceSubtitle1 -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_font -androidx.preference.R$layout: int expand_button +wangdaye.com.geometricweather.R$string: int cancel +wangdaye.com.geometricweather.R$id: int off +android.didikee.donate.R$color: int primary_text_default_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: void setTo(java.util.Date) +androidx.vectordrawable.animated.R$attr: int ttcIndex +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Large +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginEnd +com.tencent.bugly.crashreport.biz.UserInfoBean: long f +androidx.dynamicanimation.R$id: int blocking +com.google.android.material.R$styleable: int AppCompatTheme_colorAccent +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_inverse_material_light +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$drawable: int notif_temp_137 +androidx.preference.R$id: int accessibility_custom_action_8 +androidx.loader.R$styleable: int GradientColorItem_android_color +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 +okhttp3.internal.platform.Platform: java.util.List alpnProtocolNames(java.util.List) +okhttp3.MediaType: int hashCode() +retrofit2.KotlinExtensions: java.lang.Object await(retrofit2.Call,kotlin.coroutines.Continuation) +com.google.android.material.R$id: int month_navigation_next +wangdaye.com.geometricweather.R$id: int star_1 +com.xw.repo.bubbleseekbar.R$attr: int actionMenuTextAppearance +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotationX +android.didikee.donate.R$id: int disableHome +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Bridge +androidx.hilt.R$id: int time +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul1H +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endY +okhttp3.RequestBody$3: void writeTo(okio.BufferedSink) +wangdaye.com.geometricweather.R$id: int transitionToEnd +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button +cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener val$listener +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.ChineseCityEntity) +wangdaye.com.geometricweather.R$attr: int selectable +james.adaptiveicon.R$attr: int actionMenuTextAppearance +com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_ListPopupWindow +androidx.recyclerview.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$id: int icon_frame +cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback(retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter,java.util.concurrent.CompletableFuture) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.R$attr: int expandedTitleMarginBottom +com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_bias +com.baidu.location.e.n: java.util.List a(org.json.JSONObject,java.lang.String,int) +com.google.android.material.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +wangdaye.com.geometricweather.db.entities.MinutelyEntity: MinutelyEntity() +android.didikee.donate.R$styleable: int AppCompatTheme_checkedTextViewStyle +com.google.android.material.R$styleable: int MenuItem_android_visible +com.google.android.material.R$style: int TextAppearance_Design_Suffix +androidx.preference.R$styleable: int[] SwitchPreferenceCompat +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean isEmpty() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.lang.String Link +androidx.preference.R$style: int Base_V7_Theme_AppCompat_Dialog +com.tencent.bugly.CrashModule: int MODULE_ID +androidx.preference.R$style: int Base_Animation_AppCompat_Tooltip +okhttp3.Cache: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver +com.jaredrummler.android.colorpicker.R$drawable: int abc_tab_indicator_material +cyanogenmod.hardware.IThermalListenerCallback: void onThermalChanged(int) +wangdaye.com.geometricweather.R$attr: int cpv_dialogType +androidx.loader.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.R$drawable: int ic_circle_white +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: AccuHourlyResult$Temperature() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ASSIST_WAKE_SCREEN_VALIDATOR +org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.database.Database getDatabase() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomSheet +okhttp3.internal.http1.Http1Codec$AbstractSource: okio.ForwardingTimeout timeout +okhttp3.internal.http2.Http2Stream: long unacknowledgedBytesRead +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_selectionRequired +androidx.lifecycle.Lifecycling: java.lang.String getAdapterName(java.lang.String) +com.tencent.bugly.proguard.ak: java.util.Map v +okhttp3.ResponseBody$1: ResponseBody$1(okhttp3.MediaType,long,okio.BufferedSource) +androidx.appcompat.R$drawable: int abc_btn_colored_material +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long end +wangdaye.com.geometricweather.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String getCityId() +wangdaye.com.geometricweather.R$styleable: int Fragment_android_name +com.google.android.material.R$plurals: R$plurals() +com.turingtechnologies.materialscrollbar.R$attr: int measureWithLargestChild +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: AccuDailyResult$DailyForecasts$Night$LocalSource() +okhttp3.WebSocket: long queueSize() +com.github.rahatarmanahmed.cpv.CircularProgressView: void setVisibility(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: void setValue(java.util.List) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_28 +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_dither +com.google.android.material.R$styleable: int MockView_mock_labelColor +com.xw.repo.bubbleseekbar.R$integer: R$integer() +okhttp3.Request$Builder: java.util.Map tags +androidx.swiperefreshlayout.widget.SwipeRefreshLayout$SavedState +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: float degree +okhttp3.RealCall$1 +androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +com.google.android.material.R$styleable: int KeyPosition_framePosition +androidx.appcompat.R$style: int Widget_AppCompat_PopupMenu +okio.Buffer: int hashCode() +androidx.transition.R$id: int action_container +cyanogenmod.providers.CMSettings$3: CMSettings$3() +androidx.appcompat.R$id: int search_edit_frame +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: void onProgress(int) +io.reactivex.internal.util.VolatileSizeArrayList: VolatileSizeArrayList() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_android_textAppearance +com.amap.api.location.AMapLocationListener +com.jaredrummler.android.colorpicker.R$id: int default_activity_button +wangdaye.com.geometricweather.R$attr: int progress +com.google.android.material.R$styleable: int Toolbar_maxButtonHeight +okhttp3.internal.http2.Http2Connection: void failConnection() +wangdaye.com.geometricweather.R$drawable: int ic_email +okhttp3.Response$Builder: okhttp3.Response$Builder removeHeader(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorError +wangdaye.com.geometricweather.common.basic.models.weather.Weather: boolean isDaylight(java.util.TimeZone) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +androidx.preference.R$drawable: int ic_arrow_down_24dp +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +cyanogenmod.app.ICMTelephonyManager$Stub: cyanogenmod.app.ICMTelephonyManager asInterface(android.os.IBinder) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeApparentTemperature(java.lang.Integer) +androidx.appcompat.R$id: int scrollIndicatorUp +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getApparentTemperature() +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: long serialVersionUID +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode ENHANCE_YOUR_CALM +com.google.android.material.bottomappbar.BottomAppBar: android.content.res.ColorStateList getBackgroundTint() +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status COMPLETED +okhttp3.internal.cache.DiskLruCache$Snapshot: okhttp3.internal.cache.DiskLruCache this$0 +com.xw.repo.bubbleseekbar.R$color: int background_material_light +com.tencent.bugly.proguard.an: byte[] i +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: DefaultCallAdapterFactory$ExecutorCallbackCall(java.util.concurrent.Executor,retrofit2.Call) +wangdaye.com.geometricweather.R$id: int graph_wrap +wangdaye.com.geometricweather.R$string: int abc_activitychooserview_choose_application +wangdaye.com.geometricweather.R$string: int settings_title_notification_text_color +com.google.android.material.R$attr: int maxLines +com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_padding_horizontal_material +okio.Buffer: java.lang.String readUtf8(long) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_96 +okhttp3.internal.platform.OptionalMethod: java.lang.String methodName +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleTextAppearance +wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_horizontal_setting +wangdaye.com.geometricweather.R$drawable: int abc_ic_clear_material +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constrainedHeight +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_title +okhttp3.RealCall: okhttp3.RealCall newRealCall(okhttp3.OkHttpClient,okhttp3.Request,boolean) +androidx.preference.R$color: int secondary_text_default_material_light +okhttp3.internal.http2.Header: okio.ByteString TARGET_AUTHORITY +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitation +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button +androidx.preference.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle +retrofit2.KotlinExtensions$awaitResponse$2$2: void onFailure(retrofit2.Call,java.lang.Throwable) +androidx.constraintlayout.helper.widget.Flow: void setHorizontalBias(float) +cyanogenmod.util.ColorUtils$1: int compare(com.android.internal.util.cm.palette.Palette$Swatch,com.android.internal.util.cm.palette.Palette$Swatch) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabView +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +wangdaye.com.geometricweather.R$array: int pollen_units +retrofit2.Retrofit$Builder: Retrofit$Builder(retrofit2.Retrofit) +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +androidx.transition.R$id: int action_text +androidx.hilt.lifecycle.R$id +cyanogenmod.externalviews.ExternalView$6 +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State getCurrentState() +androidx.constraintlayout.widget.R$styleable: int Motion_pathMotionArc +wangdaye.com.geometricweather.R$string: int air_quality +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setRecordUserInfoOnceADay(boolean) +androidx.constraintlayout.widget.R$dimen: int abc_alert_dialog_button_bar_height +okhttp3.internal.cache.DiskLruCache: long size +com.google.android.material.R$styleable: int TextInputLayout_android_hint +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderPackage +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean cancelled +james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.preference.R$attr: int drawableRightCompat +wangdaye.com.geometricweather.R$id: int chip +androidx.preference.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder maxAge(int,java.util.concurrent.TimeUnit) +com.google.android.material.R$layout: int text_view_with_line_height_from_style +androidx.preference.R$dimen: int abc_switch_padding +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: AccuDailyResult$DailyForecasts$Day$Wind$Direction() +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: int index +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +androidx.appcompat.widget.LinearLayoutCompat: void setHorizontalGravity(int) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +wangdaye.com.geometricweather.R$id: int widget_text_weather +wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_sliderColor +androidx.swiperefreshlayout.R$id: int time +com.google.android.material.R$integer: int config_tooltipAnimTime +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_bias +wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onError(java.lang.Throwable) +com.google.android.material.R$style: int Base_AlertDialog_AppCompat +androidx.coordinatorlayout.R$attr: R$attr() +com.google.android.material.R$styleable: int MenuView_android_horizontalDivider +wangdaye.com.geometricweather.R$styleable: int ChipGroup_selectionRequired +com.google.android.gms.dynamite.DynamiteModule$DynamiteLoaderClassLoader: DynamiteModule$DynamiteLoaderClassLoader() +james.adaptiveicon.R$dimen: int abc_button_padding_vertical_material +com.google.android.material.R$attr: int onPositiveCross +wangdaye.com.geometricweather.R$attr: int endIconDrawable +james.adaptiveicon.R$attr: int buttonGravity +io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String getValue() +androidx.hilt.work.R$id: int notification_background +wangdaye.com.geometricweather.R$attr: int windowFixedHeightMinor +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Medium +wangdaye.com.geometricweather.R$string: int settings_notification_hide_big_view_off +io.reactivex.internal.subscribers.DeferredScalarSubscriber: DeferredScalarSubscriber(org.reactivestreams.Subscriber) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable +cyanogenmod.platform.Manifest$permission: java.lang.String HARDWARE_ABSTRACTION_ACCESS +com.jaredrummler.android.colorpicker.R$attr: int actionBarSize +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingStart +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: $Gson$Types$GenericArrayTypeImpl(java.lang.reflect.Type) +com.google.android.material.R$color: int abc_primary_text_disable_only_material_light +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Subtitle2 +com.google.android.material.chip.Chip: float getIconEndPadding() +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX weather +com.google.android.material.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets +androidx.hilt.R$drawable: int notification_bg_low +com.bumptech.glide.integration.okhttp.R$style: int Widget_Compat_NotificationActionContainer +android.didikee.donate.R$style: int Widget_AppCompat_ActionButton +com.turingtechnologies.materialscrollbar.R$attr: int useCompatPadding +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_LOCKSCREEN +androidx.preference.R$attr: int title +wangdaye.com.geometricweather.R$attr: int itemTextColor +androidx.cardview.R$styleable: int CardView_android_minWidth +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Subhead_Inverse +androidx.constraintlayout.widget.R$drawable: int notification_bg_normal +cyanogenmod.themes.IThemeService: void requestThemeChangeUpdates(cyanogenmod.themes.IThemeChangeListener) +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_CONNECTION +androidx.lifecycle.Transformations$3: void onChanged(java.lang.Object) +com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getProgressDrawable() +androidx.preference.R$styleable: int ActionBar_indeterminateProgressStyle +com.tencent.bugly.proguard.t: void a(boolean) +androidx.constraintlayout.widget.R$styleable: int[] MotionScene +android.support.v4.os.IResultReceiver$Stub: IResultReceiver$Stub() +androidx.fragment.R$styleable: int FontFamily_fontProviderFetchTimeout +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 +androidx.constraintlayout.motion.widget.MotionLayout: void setInterpolatedProgress(float) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_vertical_padding +wangdaye.com.geometricweather.R$anim: int popup_show_top_left +androidx.viewpager.R$styleable: int GradientColor_android_endColor +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder eventListener(okhttp3.EventListener) +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder path(java.lang.String) +androidx.appcompat.R$style: int Widget_AppCompat_DropDownItem_Spinner +com.bumptech.glide.integration.okhttp.R$id: int blocking +com.google.android.material.R$integer: int design_tab_indicator_anim_duration_ms +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button +com.turingtechnologies.materialscrollbar.R$id: int submit_area +io.reactivex.Observable: io.reactivex.Observable delaySubscription(io.reactivex.ObservableSource) +com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Indeterminate +androidx.appcompat.R$id: int accessibility_custom_action_11 +androidx.constraintlayout.widget.R$styleable: int PropertySet_layout_constraintTag +wangdaye.com.geometricweather.R$layout: int activity_alert +wangdaye.com.geometricweather.R$string: int abc_capital_on +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onNext(java.lang.Object) +androidx.appcompat.R$drawable: int abc_text_select_handle_right_mtrl_light +cyanogenmod.weather.RequestInfo$Builder: boolean isValidTempUnit(int) +com.google.android.material.R$color: int switch_thumb_disabled_material_light +android.didikee.donate.R$layout: int select_dialog_item_material +androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: ObservableFlatMap$MergeObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean,int,int) +cyanogenmod.themes.ThemeManager: java.lang.String access$100() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: java.lang.String Unit +com.google.android.material.R$style: int Widget_AppCompat_Spinner_DropDown +okio.Buffer: java.lang.String readUtf8Line(long) +wangdaye.com.geometricweather.R$dimen: int mtrl_toolbar_default_height +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog +cyanogenmod.providers.CMSettings$System: java.lang.String LOCKSCREEN_PIN_SCRAMBLE_LAYOUT +com.google.android.material.R$styleable: int ProgressIndicator_growMode +cyanogenmod.power.IPerformanceManager$Stub +wangdaye.com.geometricweather.R$attr: int theme +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyleSmall +androidx.preference.R$styleable: int Toolbar_collapseIcon +wangdaye.com.geometricweather.R$attr: int chipStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: java.lang.Float max +james.adaptiveicon.R$integer: int abc_config_activityDefaultDur +androidx.preference.R$attr: int titleMargin +cyanogenmod.profiles.AirplaneModeSettings$BooleanState +com.google.android.material.R$attr: int round +cyanogenmod.themes.ThemeChangeRequest$Builder: ThemeChangeRequest$Builder() +okhttp3.Route: java.lang.String toString() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight +com.google.android.material.R$styleable: int Layout_layout_goneMarginRight +io.reactivex.Observable: io.reactivex.Observable retryWhen(io.reactivex.functions.Function) +com.tencent.bugly.crashreport.crash.anr.a: java.util.Map b +wangdaye.com.geometricweather.R$id: int dialog_location_help_providerTitle +androidx.work.R$integer: int status_bar_notification_info_maxnum +androidx.appcompat.R$attr: int buttonBarPositiveButtonStyle +androidx.constraintlayout.widget.R$color: int material_grey_300 +androidx.preference.R$anim: int fragment_close_enter +okhttp3.Request: okhttp3.RequestBody body() +androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_android_color +com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context) +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +com.xw.repo.bubbleseekbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +com.google.android.material.chip.Chip: void setBackgroundDrawable(android.graphics.drawable.Drawable) +com.google.android.material.chip.Chip: void setTextEndPadding(float) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +androidx.appcompat.widget.AppCompatTextView: int[] getAutoSizeTextAvailableSizes() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionMode +cyanogenmod.profiles.AirplaneModeSettings: boolean mDirty +io.reactivex.Observable: io.reactivex.Observable debounce(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.tencent.bugly.proguard.ag +com.xw.repo.bubbleseekbar.R$id: int progress_horizontal +io.reactivex.Observable: io.reactivex.Single firstOrError() +cyanogenmod.providers.CMSettings$System: long getLong(android.content.ContentResolver,java.lang.String,long) +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorColor +com.loc.h: void getLocation(java.lang.String) +com.tencent.bugly.crashreport.common.info.a: java.lang.String z() +com.turingtechnologies.materialscrollbar.R$attr: int customNavigationLayout +androidx.vectordrawable.animated.R$styleable +androidx.coordinatorlayout.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.R$array: int dark_modes +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_grey +com.xw.repo.bubbleseekbar.R$color: int primary_text_default_material_light +wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_2_material +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.ObservableSource source +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MOSTLY_CLOUDY_DAY +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_collapsed +com.google.android.material.chip.ChipGroup: void setChipSpacingHorizontalResource(int) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.externalviews.KeyguardExternalViewProviderService +androidx.appcompat.R$id: int src_atop +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void accept(java.lang.Object) +wangdaye.com.geometricweather.R$id: int dragDown +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getZh_TW() +com.google.android.material.R$xml: int standalone_badge_gravity_top_start +james.adaptiveicon.R$styleable: int MenuItem_android_menuCategory +retrofit2.BuiltInConverters: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) +com.google.gson.stream.JsonReader: void skipToEndOfLine() +wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_Material +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_content_padding +com.xw.repo.bubbleseekbar.R$attr: int splitTrack +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean canceled androidx.preference.R$style: int Theme_AppCompat_Light -com.google.gson.stream.JsonWriter: boolean htmlSafe -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_android_src -com.google.android.material.R$attr: int contentInsetEndWithActions -wangdaye.com.geometricweather.daily.DailyWeatherActivity -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind wind -james.adaptiveicon.R$styleable: int[] ActionBarLayout -cyanogenmod.providers.CMSettings$Global: java.lang.String WEATHER_TEMPERATURE_UNIT -com.google.android.material.R$styleable: int FontFamilyFont_fontStyle -androidx.preference.R$drawable: int abc_text_select_handle_right_mtrl_dark -com.tencent.bugly.crashreport.CrashReport: void postCatchedException(java.lang.Throwable,java.lang.Thread) -wangdaye.com.geometricweather.R$attr: int snackbarTextViewStyle -cyanogenmod.themes.IThemeProcessingListener$Stub: java.lang.String DESCRIPTOR -com.google.android.gms.signin.internal.zag -androidx.preference.R$styleable: int[] FontFamily -com.xw.repo.bubbleseekbar.R$id: int line1 -cyanogenmod.externalviews.ExternalView$2: boolean val$visible -com.tencent.bugly.crashreport.biz.UserInfoBean: boolean l -wangdaye.com.geometricweather.R$color: int design_dark_default_color_background -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: java.lang.String Unit -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemBackground(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: java.util.List getBrands() -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark_normal -androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_font -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource[],io.reactivex.functions.Function) -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_NoActionBar -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_content_inset_with_nav -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitationDuration -androidx.constraintlayout.widget.R$drawable: int tooltip_frame_light -com.google.android.material.R$styleable: int Layout_layout_constrainedHeight -androidx.preference.R$style: int ThemeOverlay_AppCompat_Dark -io.reactivex.Observable: io.reactivex.Observable interval(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_dither -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit -com.google.android.material.R$styleable: int AppCompatTheme_switchStyle -com.google.android.gms.common.internal.zzc -com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method removeMethod -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String insee -wangdaye.com.geometricweather.R$string: int real_feel_temperature -wangdaye.com.geometricweather.R$string: int settings_title_notification_can_be_cleared -com.google.android.material.R$styleable: int[] GradientColorItem -androidx.hilt.lifecycle.R$layout: int custom_dialog -com.turingtechnologies.materialscrollbar.R$attr: int fabSize -okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String,java.lang.String) -com.google.android.material.R$styleable: int[] BottomAppBar -com.xw.repo.bubbleseekbar.R$id: int action_bar -com.github.rahatarmanahmed.cpv.CircularProgressView: int animSyncDuration -androidx.customview.R$style -android.didikee.donate.R$styleable: int ActionBar_displayOptions -io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_max -com.xw.repo.bubbleseekbar.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -wangdaye.com.geometricweather.R$styleable: int Slider_tickColorActive -androidx.hilt.R$attr: int fontProviderFetchTimeout -android.didikee.donate.R$drawable: int notification_bg_low -cyanogenmod.themes.ThemeChangeRequest: java.util.Map getThemeComponentsMap() -cyanogenmod.app.CustomTile: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$id: int topPanel -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollEnabled -com.google.android.material.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.google.android.material.R$integer: int design_snackbar_text_max_lines -wangdaye.com.geometricweather.R$attr: int expandedTitleTextAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_titleCondensed -com.google.android.material.R$dimen: int mtrl_card_checked_icon_margin -androidx.constraintlayout.widget.R$id: int unchecked -com.autonavi.aps.amapapi.model.AMapLocationServer: boolean i() -wangdaye.com.geometricweather.R$drawable: int notif_temp_124 -wangdaye.com.geometricweather.R$attr: int customColorValue -retrofit2.ParameterHandler -androidx.appcompat.resources.R$styleable: int GradientColorItem_android_color -androidx.preference.R$string: int abc_menu_space_shortcut_label -okhttp3.Cache$CacheRequestImpl: okhttp3.internal.cache.DiskLruCache$Editor editor -androidx.constraintlayout.widget.R$attr: int flow_horizontalGap -okhttp3.OkHttpClient: java.util.List DEFAULT_PROTOCOLS -com.google.android.material.R$styleable: int Chip_checkedIcon -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: int capacityHint -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemIconTint -androidx.viewpager.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String shortDescription -android.didikee.donate.R$attr: int tickMark -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge -wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_greyIcon -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_begin -cyanogenmod.power.PerformanceManager: int getPowerProfile() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: AccuCurrentResult$Ceiling$Metric() -okhttp3.logging.HttpLoggingInterceptor$Level: HttpLoggingInterceptor$Level(java.lang.String,int) -cyanogenmod.app.LiveLockScreenInfo$1: java.lang.Object[] newArray(int) -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NUMBER -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setIconTintList(android.content.res.ColorStateList) -com.google.android.material.R$anim: int abc_slide_out_top -wangdaye.com.geometricweather.R$layout: int text_view_without_line_height -wangdaye.com.geometricweather.R$id: int ghost_view -com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_DropDownUp -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(android.os.Parcel) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setIcePrecipitationProbability(java.lang.Float) -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status IDLE -androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy REPLACE -wangdaye.com.geometricweather.R$id: int NO_DEBUG -com.amap.api.fence.PoiItem: void setTel(java.lang.String) -com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_end -android.didikee.donate.R$drawable: int abc_ic_star_half_black_36dp -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: AccuLocationResult$Country() -androidx.appcompat.R$id: int custom -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_elevation -com.google.android.material.R$attr: int chipIconTint -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onError(java.lang.Throwable) -com.google.android.material.R$attr: int closeIconEndPadding -wangdaye.com.geometricweather.R$styleable: int[] ViewBackgroundHelper -wangdaye.com.geometricweather.R$attr: int flow_lastHorizontalBias -cyanogenmod.providers.DataUsageContract: java.lang.String FAST_AVG -androidx.lifecycle.FullLifecycleObserverAdapter$1 -wangdaye.com.geometricweather.R$id: int search_bar -androidx.preference.R$styleable: int AppCompatTheme_actionModePasteDrawable -com.google.android.gms.common.SignInButton -com.tencent.bugly.crashreport.crash.e: boolean g -io.reactivex.internal.subscribers.StrictSubscriber: StrictSubscriber(org.reactivestreams.Subscriber) -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason DECODE_DATA -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_contentDescription -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_windowAnimationStyle -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDaylight(boolean) -retrofit2.ParameterHandler$FieldMap: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.tencent.bugly.proguard.a -androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar_Small -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setId(java.lang.Long) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: CNWeatherResult$Realtime() -androidx.preference.R$id: int list_item -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: CNWeatherResult() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTag -androidx.preference.R$styleable: int SwitchCompat_switchTextAppearance -androidx.appcompat.R$layout: int abc_expanded_menu_layout -com.tencent.bugly.proguard.ap -androidx.hilt.work.R$styleable: int Fragment_android_id -okio.Buffer: okio.ByteString hmacSha1(okio.ByteString) -androidx.appcompat.widget.SwitchCompat: android.graphics.PorterDuff$Mode getThumbTintMode() -com.xw.repo.bubbleseekbar.R$attr: int actionMenuTextAppearance -com.amap.api.fence.GeoFenceClient: int GEOFENCE_IN -com.jaredrummler.android.colorpicker.R$attr: int positiveButtonText -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setFont(java.lang.String) -cyanogenmod.hardware.ICMHardwareService: boolean registerThermalListener(cyanogenmod.hardware.IThermalListenerCallback) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitation -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitationProbability() -wangdaye.com.geometricweather.R$attr: int dropdownListPreferredItemHeight -okhttp3.internal.http.CallServerInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$302(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionDropDownStyle -androidx.preference.R$color: int material_grey_600 -com.amap.api.location.AMapLocation: void setErrorInfo(java.lang.String) -androidx.constraintlayout.widget.R$attr: int editTextStyle -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: MfForecastV2Result$ForecastProperties$HourForecast() -com.google.android.material.R$dimen: int highlight_alpha_material_colored -com.google.android.material.R$attr: int materialCalendarHeaderDivider -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleEnabled -androidx.dynamicanimation.R$attr -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_disabled_material_dark -okhttp3.internal.ws.RealWebSocket: void onReadMessage(okio.ByteString) -androidx.hilt.R$id: int visible_removing_fragment_view_tag -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -android.didikee.donate.R$styleable: int Toolbar_buttonGravity -com.google.android.material.R$attr: int layout_constraintEnd_toEndOf -androidx.appcompat.R$attr: int ttcIndex -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlActivated -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textColorSearchUrl -wangdaye.com.geometricweather.R$id: int staticLayout -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean hasKey(java.lang.Object) -androidx.core.R$id: int accessibility_custom_action_10 -com.google.android.material.R$attr: int autoSizeTextType -com.tencent.bugly.crashreport.crash.h5.a: long j -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver -io.reactivex.Observable: io.reactivex.Observable flatMapIterable(io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_summaryOn -james.adaptiveicon.R$layout: int abc_action_bar_title_item -com.google.android.material.R$attr: int boxBackgroundMode -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_ON_VALIDATOR -androidx.appcompat.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstVerticalBias -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWeatherPhase -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_max_progress -okhttp3.ResponseBody: void close() -com.turingtechnologies.materialscrollbar.R$attr: int behavior_skipCollapsed -com.google.android.material.R$drawable: int abc_ic_star_black_36dp -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_showAsAction -okhttp3.FormBody: java.lang.String name(int) -androidx.core.R$style: int Widget_Compat_NotificationActionText -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat -com.google.android.material.R$dimen: int mtrl_badge_radius -io.reactivex.Observable: io.reactivex.Observable repeat() -androidx.appcompat.R$id: int search_close_btn -retrofit2.ParameterHandler$Header: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.R$id: int shades_layout -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -com.turingtechnologies.materialscrollbar.R$attr: int liftOnScroll -okio.Pipe: okio.Sink sink -com.amap.api.location.AMapLocation: void setRoad(java.lang.String) +com.google.android.material.R$string: int mtrl_picker_text_input_year_abbr +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm25(java.lang.String) +com.google.android.material.R$styleable: int BottomNavigationView_menu +com.bumptech.glide.load.engine.GlideException: void printStackTrace(java.io.PrintStream) +com.google.android.material.R$styleable: int Constraint_android_layout_marginTop +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +io.reactivex.Observable: io.reactivex.Single any(io.reactivex.functions.Predicate) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display1 +com.autonavi.aps.amapapi.model.AMapLocationServer: void a(boolean) +com.amap.api.location.AMapLocation: void setLongitude(double) +android.didikee.donate.R$dimen: int abc_action_bar_stacked_max_height +androidx.preference.SeekBarPreference +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorBackgroundFloating +androidx.constraintlayout.widget.R$dimen: int notification_subtext_size +androidx.appcompat.widget.AppCompatTextView: android.graphics.PorterDuff$Mode getSupportCompoundDrawablesTintMode() +io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable valueOf(java.lang.String) +cyanogenmod.app.ProfileGroup$1: java.lang.Object[] newArray(int) +com.tencent.bugly.crashreport.BuglyLog: void v(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$id: int TOP_END +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_to_on_mtrl_015 +okhttp3.internal.http2.Http2Connection$2: int val$streamId +androidx.loader.R$id: int italic +io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.preference.R$style: int Widget_AppCompat_ImageButton +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getDistrict() +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_crossfade +androidx.recyclerview.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource access$000(wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource) +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: int active +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Switch +com.google.android.material.R$attr: int motionProgress +wangdaye.com.geometricweather.R$styleable: int FragmentContainerView_android_tag +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getO3() +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getPM25() +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderPackage +cyanogenmod.app.LiveLockScreenInfo: int priority +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.database.Database db +cyanogenmod.externalviews.KeyguardExternalView$8: cyanogenmod.externalviews.KeyguardExternalView this$0 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getBrandId() +androidx.coordinatorlayout.R$string +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_titleTextStyle +androidx.preference.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: org.reactivestreams.Subscription upstream +androidx.preference.R$drawable: int abc_spinner_textfield_background_material +retrofit2.adapter.rxjava2.CallExecuteObservable: retrofit2.Call originalCall +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setHoursOfSun(float) +com.google.android.material.radiobutton.MaterialRadioButton: android.content.res.ColorStateList getMaterialThemeColorsTintList() +androidx.preference.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +com.google.android.material.R$drawable: int abc_list_longpressed_holo +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval valueOf(java.lang.String) +android.didikee.donate.R$attr: int listPreferredItemHeight +com.tencent.bugly.proguard.z: java.lang.String b(java.lang.Throwable) +retrofit2.Platform$Android$MainThreadExecutor: android.os.Handler handler +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleTint +com.google.android.material.appbar.AppBarLayout$BaseBehavior$SavedState +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Light +androidx.constraintlayout.widget.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +com.google.android.material.R$dimen: int design_snackbar_padding_horizontal +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Tooltip +wangdaye.com.geometricweather.db.entities.HourlyEntity: long getTime() +retrofit2.ParameterHandler$QueryMap: int p +android.didikee.donate.R$drawable: int abc_ratingbar_small_material +androidx.hilt.R$id: int action_image +wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_large_component +com.turingtechnologies.materialscrollbar.R$dimen: int notification_large_icon_height +androidx.constraintlayout.widget.R$attr: int telltales_tailScale +wangdaye.com.geometricweather.R$id: int activity_weather_daily_toolbar +cyanogenmod.power.PerformanceManager: int getNumberOfProfiles() +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_Search +wangdaye.com.geometricweather.R$string: int content_des_o3 +com.google.android.material.R$attr: int switchTextAppearance +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ImageButton +com.tencent.bugly.BuglyStrategy: boolean recordUserInfoOnceADay() +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void priority(int,int,int,boolean) +cyanogenmod.content.Intent: java.lang.String ACTION_RECENTS_LONG_PRESS +wangdaye.com.geometricweather.R$string: int phase_waning_crescent +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: AccuCurrentResult$RealFeelTemperature() +androidx.constraintlayout.motion.widget.MotionLayout: float getVelocity() +cyanogenmod.externalviews.ExternalViewProperties: boolean hasChanged() +androidx.recyclerview.R$id: int accessibility_custom_action_0 +wangdaye.com.geometricweather.R$layout: int activity_search +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActivityChooserView +cyanogenmod.providers.CMSettings$Global: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache +com.google.android.material.R$dimen: int abc_list_item_height_small_material +james.adaptiveicon.R$styleable: int AppCompatTheme_dialogPreferredPadding +com.google.android.material.R$styleable: int SwitchCompat_trackTintMode +james.adaptiveicon.R$styleable: int SearchView_searchIcon +com.google.android.material.R$styleable: int Spinner_android_popupBackground +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_PULSE_VALIDATOR +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: double Value +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property CityId +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getDistrict() +androidx.dynamicanimation.R$id: int action_divider +okio.BufferedSource: long indexOfElement(okio.ByteString) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_isThemeBeingProcessed +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: double Value +androidx.viewpager.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date sunriseTime +androidx.customview.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit getInstance(java.lang.String) +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_EXISTING_UUID +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowMinWidthMajor +com.bumptech.glide.R$id: int end +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +retrofit2.ParameterHandler$Part +james.adaptiveicon.R$styleable: int[] MenuGroup +androidx.viewpager2.R$attr: int font +com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display3 +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_maxWidth +james.adaptiveicon.R$styleable: int AppCompatTheme_toolbarStyle +wangdaye.com.geometricweather.R$attr: int cornerFamilyBottomRight +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lon +com.tencent.bugly.proguard.s +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void dispose() +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource[] values() +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_colorPresets +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +com.google.android.material.R$layout: int mtrl_calendar_month +androidx.appcompat.widget.ActionBarContainer: void setVisibility(int) +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$anim: int abc_tooltip_exit +okhttp3.Challenge: java.lang.String toString() +cyanogenmod.weather.WeatherLocation: java.lang.String getCountry() +com.google.android.material.slider.BaseSlider: int getTrackWidth() +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItem +androidx.appcompat.widget.AppCompatSpinner: void setBackgroundResource(int) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_enabled +androidx.constraintlayout.widget.R$attr: int spinBars +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence +com.google.android.material.chip.Chip: void setEllipsize(android.text.TextUtils$TruncateAt) +okhttp3.internal.http.RealInterceptorChain: int calls +com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding MEMORY +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollVerticalThumbDrawable +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_HOURLY_OVERVIEW +io.reactivex.internal.disposables.SequentialDisposable: boolean isDisposed() +james.adaptiveicon.R$styleable: int ActionBar_hideOnContentScroll +com.turingtechnologies.materialscrollbar.R$animator: R$animator() +wangdaye.com.geometricweather.R$drawable: int weather_haze_pixel +com.google.gson.stream.JsonReader: void consumeNonExecutePrefix() +wangdaye.com.geometricweather.R$dimen: int abc_text_size_body_1_material +com.google.android.material.R$dimen: int material_clock_period_toggle_height +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +com.google.android.material.R$styleable: int KeyCycle_transitionEasing +androidx.lifecycle.LiveData: int getVersion() +wangdaye.com.geometricweather.R$attr: int itemShapeInsetBottom +androidx.activity.R$style: int TextAppearance_Compat_Notification_Title +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconSize +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar_Small +com.google.android.material.R$styleable: int Slider_haloRadius +androidx.preference.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +com.google.android.material.R$styleable: int Layout_layout_constraintVertical_weight +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +com.google.android.material.chip.ChipGroup: int getChipCount() +androidx.hilt.work.R$id: int tag_accessibility_actions +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorColor +com.google.android.material.R$attr: int textAppearanceHeadline5 +retrofit2.RequestFactory$Builder: boolean gotQueryName +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setSubState +okhttp3.internal.http1.Http1Codec$ChunkedSource: boolean hasMoreChunks +com.tencent.bugly.proguard.ap: boolean o +com.jaredrummler.android.colorpicker.R$styleable: int[] CoordinatorLayout +androidx.preference.R$attr: int textAppearanceListItemSecondary +androidx.lifecycle.GeneratedAdapter: void callMethods(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,boolean,androidx.lifecycle.MethodCallsLogger) +androidx.constraintlayout.widget.R$id: int action_bar_activity_content +wangdaye.com.geometricweather.R$id: int showCustom +com.google.android.material.R$dimen +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: boolean completed +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: int UnitType +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_controlBackground +com.google.android.material.R$attr: int flow_horizontalAlign +wangdaye.com.geometricweather.R$styleable: int Preference_android_order +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver a() +com.turingtechnologies.materialscrollbar.R$id: int end +wangdaye.com.geometricweather.R$id: int item_card_display_deleteBtn +com.jaredrummler.android.colorpicker.R$id: int contentPanel +com.jaredrummler.android.colorpicker.R$id: int spacer +androidx.preference.R$styleable: int SwitchCompat_android_thumb +com.turingtechnologies.materialscrollbar.R$id: int image +retrofit2.HttpServiceMethod$SuspendForBody: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) +com.google.android.material.textfield.TextInputLayout +androidx.fragment.R$id: int accessibility_custom_action_10 +com.google.android.material.R$styleable: int[] MenuGroup +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupMenu_Overflow +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_id +io.reactivex.internal.subscriptions.DeferredScalarSubscription: void complete(java.lang.Object) +com.jaredrummler.android.colorpicker.R$attr: int alertDialogCenterButtons +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorType +androidx.activity.R$styleable: int[] FontFamilyFont +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_ttcIndex +okhttp3.Cookie: java.lang.String name +cyanogenmod.profiles.ConnectionSettings: int getSubId() +androidx.swiperefreshlayout.R$id: int info +com.google.android.material.button.MaterialButton: void setStrokeColor(android.content.res.ColorStateList) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_9 +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: long val$n +com.tencent.bugly.crashreport.common.info.a: java.lang.String v +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderFetchTimeout +io.reactivex.disposables.ReferenceDisposable: void onDisposed(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int KeyPosition_transitionEasing +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay +io.reactivex.disposables.RunnableDisposable: RunnableDisposable(java.lang.Runnable) +com.google.android.material.R$styleable: int NavigationView_itemShapeInsetStart +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String description +androidx.preference.R$styleable: int PopupWindow_android_popupBackground +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean m +cyanogenmod.app.CustomTileListenerService: void removeCustomTile(java.lang.String,java.lang.String,int) +wangdaye.com.geometricweather.main.dialogs.LearnMoreAboutResidentLocationDialog +com.google.android.material.button.MaterialButtonToggleGroup +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItem +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog +androidx.constraintlayout.widget.R$dimen: int abc_disabled_alpha_material_dark +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String mslp +wangdaye.com.geometricweather.R$drawable: int weather_hail +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +androidx.cardview.widget.CardView: int getContentPaddingRight() +okhttp3.OkHttpClient$Builder: okhttp3.internal.cache.InternalCache internalCache +androidx.preference.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +androidx.preference.R$drawable: int abc_textfield_activated_mtrl_alpha +androidx.core.R$dimen: int notification_small_icon_size_as_large +androidx.appcompat.R$dimen: int abc_config_prefDialogWidth +androidx.transition.R$id: int transition_transform +com.bumptech.glide.integration.okhttp.R$string: R$string() +com.google.gson.FieldNamingPolicy$1 +com.autonavi.aps.amapapi.model.AMapLocationServer: org.json.JSONObject l +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchPreferenceCompat +androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_width_minor +androidx.constraintlayout.widget.R$string: int abc_activitychooserview_choose_application +cyanogenmod.externalviews.ExternalViewProperties: android.graphics.Rect getHitRect() +wangdaye.com.geometricweather.R$attr: int transitionFlags +androidx.swiperefreshlayout.R$id: int action_container +com.xw.repo.bubbleseekbar.R$attr: int layout_keyline +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicBoolean stopWindows +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean +androidx.lifecycle.ClassesInfoCache$MethodReference: java.lang.reflect.Method mMethod +okio.SegmentedByteString: java.nio.ByteBuffer asByteBuffer() +androidx.preference.SeekBarPreference$SavedState: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$attr: int tabIndicatorHeight +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTag +androidx.legacy.coreutils.R$dimen: int notification_action_icon_size +androidx.constraintlayout.widget.ConstraintHelper: void setIds(java.lang.String) +com.google.android.material.R$color: int material_on_surface_disabled +androidx.appcompat.R$dimen: int abc_action_bar_content_inset_material +com.google.android.material.R$styleable: int Constraint_layout_goneMarginTop +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Light +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_font +okhttp3.internal.Util: java.nio.charset.Charset UTF_16_BE +cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.os.Bundle getOptions() +androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context,android.util.AttributeSet) +androidx.preference.R$string +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean isDisposed() +okhttp3.ConnectionPool: boolean cleanupRunning +com.turingtechnologies.materialscrollbar.DragScrollBar: int getMode() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String weatherStart +wangdaye.com.geometricweather.R$attr: int framePosition +com.google.android.material.R$attr: int tickColorActive +com.google.android.material.R$id: int month_navigation_fragment_toggle +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_HOME_BUTTON +com.google.android.material.R$dimen: int mtrl_calendar_title_baseline_to_top_fullscreen +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getHelperText() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int IceProbability +android.didikee.donate.R$attr: int popupWindowStyle +com.google.android.material.R$string: int fab_transformation_sheet_behavior +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_to_on_mtrl_000 +androidx.appcompat.R$attr: int titleMarginTop +com.google.android.material.R$styleable: int TabLayout_tabInlineLabel +com.jaredrummler.android.colorpicker.R$layout: int select_dialog_singlechoice_material +cyanogenmod.providers.DataUsageContract: java.lang.String DATAUSAGE_TABLE +android.didikee.donate.R$attr: int logoDescription +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_80 +wangdaye.com.geometricweather.R$attr: int background_color +androidx.loader.R$layout: int notification_template_part_time +com.google.android.material.R$id: int staticLayout +okhttp3.internal.http.HttpCodec: okhttp3.Response$Builder readResponseHeaders(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric Metric +androidx.recyclerview.R$styleable: int FontFamilyFont_font +okhttp3.Call$Factory: okhttp3.Call newCall(okhttp3.Request) +android.didikee.donate.R$styleable: int AppCompatImageView_tint +com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar +androidx.dynamicanimation.R$id: int time +com.google.android.material.internal.NavigationMenuItemView: void setHorizontalPadding(int) +androidx.work.R$color: R$color() +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void registerListener(cyanogenmod.app.ICustomTileListener,android.content.ComponentName,int) +androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context) +com.google.android.material.R$dimen: int design_snackbar_padding_vertical_2lines +androidx.lifecycle.ProcessLifecycleOwner$1 +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_homeLayout +okhttp3.Call +com.tencent.bugly.proguard.am: java.lang.String u +cyanogenmod.profiles.RingModeSettings$1: cyanogenmod.profiles.RingModeSettings[] newArray(int) +com.amap.api.fence.GeoFence: int getStatus() +com.turingtechnologies.materialscrollbar.R$attr: int navigationContentDescription +wangdaye.com.geometricweather.R$id: int coordinator +cyanogenmod.externalviews.ExternalView: void onActivityStarted(android.app.Activity) +wangdaye.com.geometricweather.R$attr: int listPopupWindowStyle +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COL_VALUE +com.tencent.bugly.a: int id +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.Scheduler$Worker worker +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.util.Map h +okhttp3.internal.http.RequestLine: java.lang.String get(okhttp3.Request,java.net.Proxy$Type) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Large +com.google.android.material.R$drawable: int ic_clock_black_24dp +com.bumptech.glide.integration.okhttp.R$drawable: int notification_action_background +cyanogenmod.providers.CMSettings$Secure: java.lang.String KILL_APP_LONGPRESS_BACK +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property AqiIndex +wangdaye.com.geometricweather.db.entities.DailyEntity: void setO3(java.lang.Float) +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$drawable: int notif_temp_87 +wangdaye.com.geometricweather.R$id: int mtrl_picker_header_selection_text +okio.ByteString: int indexOf(byte[]) +wangdaye.com.geometricweather.R$array: int temperature_units +retrofit2.ParameterHandler$RawPart +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language GERMAN +wangdaye.com.geometricweather.R$animator: int mtrl_chip_state_list_anim +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context,android.util.AttributeSet,int) +androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontWeight +com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_android_alpha +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_anchor +com.google.android.material.circularreveal.CircularRevealFrameLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +com.amap.api.location.AMapLocationClientOption: long c +androidx.preference.R$styleable: int DrawerArrowToggle_color +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitationDuration +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String weather +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.Float getSpeed() +com.bumptech.glide.integration.okhttp.R$drawable: R$drawable() +okhttp3.internal.http.RealInterceptorChain: okhttp3.EventListener eventListener() +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +cyanogenmod.app.IProfileManager: boolean addProfile(cyanogenmod.app.Profile) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.appcompat.R$styleable: int FontFamilyFont_ttcIndex +com.google.android.material.datepicker.DateSelector +cyanogenmod.weather.RequestInfo: boolean access$702(cyanogenmod.weather.RequestInfo,boolean) +wangdaye.com.geometricweather.R$id: int item_details_title +com.github.rahatarmanahmed.cpv.R$color: R$color() +androidx.loader.R$drawable: int notification_bg_normal +com.google.android.material.R$styleable: int MaterialCalendar_yearSelectedStyle +com.google.android.material.R$style: int Theme_AppCompat_Empty +com.turingtechnologies.materialscrollbar.R$attr: int colorControlHighlight +com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_action_area_stub +cyanogenmod.weather.WeatherInfo: double access$402(cyanogenmod.weather.WeatherInfo,double) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer rainHazard3h +com.google.android.material.navigation.NavigationView: android.view.Menu getMenu() +okhttp3.internal.http2.Http2: java.lang.String[] FLAGS +okhttp3.internal.Internal: int code(okhttp3.Response$Builder) +okhttp3.OkHttpClient: java.util.List DEFAULT_CONNECTION_SPECS +wangdaye.com.geometricweather.R$id: int container_main_pollen_subtitle +cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_KEYS_CONTROL_RING_STREAM +io.reactivex.internal.util.EmptyComponent: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean isEntityUpdateable() +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function,boolean,int) +androidx.lifecycle.ProcessLifecycleOwner$3$1 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean cancelled +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle +androidx.preference.R$styleable: int PreferenceTheme_preferenceScreenStyle +cyanogenmod.platform.Manifest +retrofit2.RequestFactory: boolean isFormEncoded +androidx.constraintlayout.widget.R$bool: int abc_config_actionMenuItemAllCaps +cyanogenmod.profiles.ConnectionSettings: boolean mDirty +cyanogenmod.providers.CMSettings$Secure: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) +com.google.android.material.R$id: int design_menu_item_action_area +james.adaptiveicon.R$styleable: int SearchView_defaultQueryHint +com.tencent.bugly.crashreport.CrashReport: java.lang.String getUserData(android.content.Context,java.lang.String) +james.adaptiveicon.R$attr: int windowMinWidthMajor +com.google.android.material.R$attr: int spanCount +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getPressureText(android.content.Context,float) +androidx.preference.R$attr: int drawableTintMode +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetTop +com.jaredrummler.android.colorpicker.R$attr: int singleLineTitle +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.db.entities.DailyEntity: void setPm25(java.lang.Float) +androidx.work.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.R$attr: int constraintSetEnd +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarItemBackground +com.google.android.material.R$style: int Base_CardView +com.google.android.material.slider.BaseSlider: void setThumbTintList(android.content.res.ColorStateList) +androidx.dynamicanimation.R$drawable: int notification_template_icon_low_bg +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitationDuration +androidx.preference.R$id: int add +com.google.android.material.navigation.NavigationView: void setCheckedItem(int) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean cancelled +cyanogenmod.themes.ThemeChangeRequest$Builder: ThemeChangeRequest$Builder(android.content.res.ThemeConfig) +com.tencent.bugly.crashreport.common.info.b: java.lang.String e +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_doneButton +com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getDetail() androidx.preference.R$dimen: int tooltip_y_offset_touch -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: int unitArrayIndex -androidx.constraintlayout.motion.widget.MotionLayout: void setDebugMode(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric -androidx.vectordrawable.R$id: int accessibility_custom_action_2 -androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense -cyanogenmod.hardware.CMHardwareManager: int FEATURE_ADAPTIVE_BACKLIGHT -androidx.hilt.lifecycle.R$id: int action_divider -wangdaye.com.geometricweather.R$styleable: int[] PreferenceImageView -androidx.preference.R$styleable: int Fragment_android_tag -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_Switch -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange Past24HourRange -okhttp3.Headers$Builder: okhttp3.Headers$Builder addLenient(java.lang.String) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_BACKGROUND -com.google.android.material.R$styleable: int Constraint_layout_constraintCircleRadius -com.turingtechnologies.materialscrollbar.R$attr: int layout_collapseMode -android.didikee.donate.R$dimen: int abc_text_size_menu_material -androidx.appcompat.R$dimen: int abc_dialog_fixed_height_major -androidx.constraintlayout.widget.R$attr: int constraintSetStart -com.google.android.material.R$attr: int recyclerViewStyle -com.tencent.bugly.crashreport.crash.jni.b: java.lang.String a(java.lang.String,java.lang.String) -android.didikee.donate.R$styleable: int MenuView_subMenuArrow -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String sunSet -androidx.hilt.work.R$color: int notification_icon_bg_color -androidx.appcompat.R$id: int src_atop -androidx.core.widget.NestedScrollView: float getBottomFadingEdgeStrength() -wangdaye.com.geometricweather.R$attr: int materialTimePickerTheme -androidx.appcompat.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -wangdaye.com.geometricweather.R$id: int guideline -cyanogenmod.os.Concierge -com.xw.repo.bubbleseekbar.R$id: int customPanel -com.google.android.material.R$id: int bottom -wangdaye.com.geometricweather.R$attr: int barLength -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode RAIN -com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Dialog -okhttp3.HttpUrl$Builder: void removeAllCanonicalQueryParameters(java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int expandActivityOverflowButtonDrawable -androidx.activity.R$dimen: int notification_right_icon_size -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionViewClass -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Body1 -wangdaye.com.geometricweather.R$styleable: int Chip_android_ellipsize -okhttp3.internal.http2.Http2Writer: boolean closed -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationX -androidx.lifecycle.extensions.R$id: int tag_accessibility_actions -wangdaye.com.geometricweather.R$styleable: int OnSwipe_limitBoundsTo -androidx.appcompat.widget.Toolbar: void setNavigationContentDescription(java.lang.CharSequence) -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_font -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeTextType -com.google.android.material.R$dimen: int abc_action_bar_default_height_material -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_NoActionBar -cyanogenmod.app.CustomTile: cyanogenmod.app.CustomTile clone() -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long serialVersionUID -android.support.v4.app.INotificationSideChannel$Stub$Proxy: void cancelAll(java.lang.String) -androidx.drawerlayout.R$styleable: int GradientColor_android_endColor -androidx.preference.R$dimen: int abc_dropdownitem_icon_width -com.google.android.material.R$attr: int layout_constraintStart_toEndOf -com.google.android.material.R$styleable: int TabItem_android_text -androidx.hilt.R$id: int accessibility_custom_action_27 -retrofit2.ParameterHandler$QueryMap: void apply(retrofit2.RequestBuilder,java.util.Map) -androidx.activity.R$color: int ripple_material_light -com.jaredrummler.android.colorpicker.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: AccuCurrentResult$WetBulbTemperature() -com.google.android.material.R$attr: int layout_constrainedHeight -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: java.lang.String[] population -com.google.android.material.R$styleable: int SwitchCompat_switchTextAppearance -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarItemBackground -com.jaredrummler.android.colorpicker.R$dimen: int abc_control_padding_material -io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,io.reactivex.functions.Function) -com.google.android.material.R$id: int ignoreRequest -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: int UnitType -wangdaye.com.geometricweather.R$attr: int fabCradleMargin -wangdaye.com.geometricweather.R$string: int key_widget_text -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone -com.google.android.material.R$styleable: int StateListDrawableItem_android_drawable -io.reactivex.Observable: io.reactivex.Observable combineLatest(java.lang.Iterable,io.reactivex.functions.Function) -androidx.constraintlayout.widget.R$id: int action_bar_subtitle -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonStyleSmall -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_default -com.xw.repo.bubbleseekbar.R$attr: int autoSizeStepGranularity -androidx.constraintlayout.widget.R$attr: int subtitleTextColor -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String feelslike_c -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder password(java.lang.String) -com.google.gson.stream.JsonReader: int PEEKED_TRUE -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_caption_material -wangdaye.com.geometricweather.R$id: int activity_about_toolbar -com.amap.api.fence.PoiItem: PoiItem() -wangdaye.com.geometricweather.R$color: int mtrl_calendar_selected_range -com.google.android.material.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -com.google.android.material.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark_normal_background -com.jaredrummler.android.colorpicker.R$style: int Base_V28_Theme_AppCompat_Light -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Id -wangdaye.com.geometricweather.R$styleable: int Preference_layout -androidx.work.R$id: int tag_accessibility_actions -androidx.work.R$drawable: int notification_bg_low -com.google.android.material.R$string: int error_icon_content_description -retrofit2.Platform$Android$MainThreadExecutor: android.os.Handler handler -androidx.activity.R$id: int tag_accessibility_clickable_spans -com.turingtechnologies.materialscrollbar.R$id: int checkbox -okhttp3.internal.connection.StreamAllocation: okhttp3.Route route() -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments textAvalanche -okhttp3.internal.Internal: java.io.IOException timeoutExit(okhttp3.Call,java.io.IOException) -wangdaye.com.geometricweather.R$color: int mtrl_btn_text_color_disabled -androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandleController create(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle,java.lang.String,android.os.Bundle) -com.google.android.material.R$id: int search_bar +androidx.appcompat.R$styleable: int[] ViewStubCompat +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: java.util.concurrent.atomic.AtomicInteger wip +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onComplete() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView +com.tencent.bugly.proguard.w: java.util.concurrent.atomic.AtomicInteger a +okhttp3.internal.ws.RealWebSocket: okhttp3.WebSocketListener listener +cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo$Builder setComponent(android.content.ComponentName) +com.google.android.material.R$styleable: int KeyCycle_android_translationZ +wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconTint +androidx.hilt.lifecycle.R$attr: int ttcIndex +james.adaptiveicon.R$styleable: int SwitchCompat_showText +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_104 +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Title +okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeOptional(java.lang.Object,java.lang.Object[]) +androidx.work.R$id: int async +com.google.android.material.R$styleable: int TextInputLayout_errorIconTint +com.google.android.material.tabs.TabLayout: void removeOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) +wangdaye.com.geometricweather.R$attr: int circleRadius +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_iconTintMode +androidx.constraintlayout.widget.R$attr: int minHeight +wangdaye.com.geometricweather.R$id: int item_aqi_progress +androidx.appcompat.R$drawable: int abc_ic_star_half_black_48dp +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_weight +androidx.work.impl.utils.futures.AbstractFuture: androidx.work.impl.utils.futures.AbstractFuture$Waiter waiters +com.google.android.material.R$id: int honorRequest +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String unitId +androidx.hilt.R$styleable: int GradientColor_android_centerX +com.google.android.material.tabs.TabItem: TabItem(android.content.Context,android.util.AttributeSet) +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder callbackExecutor(java.util.concurrent.Executor) +com.google.android.material.R$styleable: int MockView_mock_diagonalsColor +android.didikee.donate.R$styleable: int SearchView_iconifiedByDefault +com.turingtechnologies.materialscrollbar.R$id: int fill +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabText +android.didikee.donate.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +androidx.preference.R$string: int search_menu_title +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +io.reactivex.internal.subscribers.StrictSubscriber: void request(long) +com.jaredrummler.android.colorpicker.R$dimen: int compat_notification_large_icon_max_width +com.bumptech.glide.R$integer +wangdaye.com.geometricweather.R$style: int material_card +com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_material_light +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onComplete() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu +com.tencent.bugly.crashreport.common.info.PlugInBean: int describeContents() +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.subjects.UnicastSubject window +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft +io.reactivex.Observable: io.reactivex.Observable window(long) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_maxElementsWrap +androidx.preference.R$color: int abc_hint_foreground_material_dark +androidx.preference.R$styleable: int[] AppCompatImageView +okhttp3.internal.http2.Http2Connection$Listener: okhttp3.internal.http2.Http2Connection$Listener REFUSE_INCOMING_STREAMS +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial +james.adaptiveicon.R$dimen: int hint_alpha_material_dark +androidx.recyclerview.R$drawable: int notification_bg_low_pressed +okio.Okio: okio.Source source(java.io.InputStream,okio.Timeout) +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Writer writer +wangdaye.com.geometricweather.R$id: int notification_base_icon +okio.RealBufferedSource: long indexOf(byte) +com.tencent.bugly.proguard.ap: com.tencent.bugly.proguard.ao f +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginEnd +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetEnd +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(java.lang.String) +com.google.android.material.R$attr: int layout_optimizationLevel +com.turingtechnologies.materialscrollbar.MaterialScrollBar: int getMode() +com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_text_padding_left +com.google.android.material.R$attr: int flow_verticalStyle +com.amap.api.location.APSService +androidx.preference.R$color: int abc_tint_spinner +androidx.lifecycle.extensions.R$attr: int font +androidx.preference.R$dimen: int abc_action_bar_elevation_material +com.turingtechnologies.materialscrollbar.TouchScrollBar: float getHideRatio() +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_summaryOn +wangdaye.com.geometricweather.R$attr: int constraintSetStart +com.google.android.material.R$dimen: int abc_text_size_display_3_material +okhttp3.Response: int code +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean direction +wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_peek_height_min +cyanogenmod.weather.WeatherInfo$DayForecast: int mConditionCode +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_query +com.google.android.material.R$id: int chronometer +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Tooltip +androidx.vectordrawable.animated.R$layout: int custom_dialog +androidx.hilt.work.R$id: int notification_main_column +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status[] values() +com.turingtechnologies.materialscrollbar.R$attr: int autoSizeTextType +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String getDescription() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$string: int hide_bottom_view_on_scroll_behavior +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents +com.google.android.material.R$attr: int bottomNavigationStyle +com.tencent.bugly.crashreport.common.strategy.a +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderQuery +androidx.preference.R$styleable: int MenuGroup_android_orderInCategory +androidx.preference.R$style: int Base_V21_Theme_AppCompat_Light +androidx.appcompat.R$attr: int trackTint +com.google.android.material.R$styleable: int Transition_layoutDuringTransition +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial() +james.adaptiveicon.R$drawable: int abc_btn_borderless_material +com.google.android.material.R$styleable: int AppCompatTheme_editTextColor +okhttp3.internal.http1.Http1Codec$FixedLengthSource +com.google.android.material.R$anim: int abc_slide_out_bottom +android.didikee.donate.R$dimen: int hint_pressed_alpha_material_light +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_76 +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: int getChartBottom() +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getIdType(int) +com.turingtechnologies.materialscrollbar.R$id: int largeLabel +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_creator +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type[] getUpperBounds() +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection connection +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX() +okhttp3.MultipartBody$Builder: okio.ByteString boundary +io.reactivex.internal.subscribers.StrictSubscriber: long serialVersionUID +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setDisplayState(boolean) +com.xw.repo.bubbleseekbar.R$attr: int backgroundTintMode +wangdaye.com.geometricweather.R$xml: int cm_weather_provider_options +retrofit2.BuiltInConverters$StreamingResponseBodyConverter: java.lang.Object convert(java.lang.Object) +cyanogenmod.app.CustomTile$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getTreeIndex() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Menu +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +com.google.android.material.R$layout: int abc_dialog_title_material +com.google.android.material.R$dimen: int abc_control_inset_material +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_listLayout +androidx.dynamicanimation.animation.SpringAnimation +com.google.android.material.R$dimen: int mtrl_fab_min_touch_target +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Spinner +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void clear(io.reactivex.internal.queue.SpscLinkedArrayQueue) +cyanogenmod.providers.CMSettings$Global: android.net.Uri getUriFor(java.lang.String) +androidx.activity.R$attr: int alpha +androidx.appcompat.widget.LinearLayoutCompat: void setBaselineAligned(boolean) +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +com.google.android.material.R$color: int abc_hint_foreground_material_dark +com.jaredrummler.android.colorpicker.ColorPanelView: void setOriginalColor(int) +wangdaye.com.geometricweather.R$id: int container_main_sun_moon +james.adaptiveicon.R$styleable: int View_theme +retrofit2.http.Header: java.lang.String value() +androidx.dynamicanimation.R$attr: int fontVariationSettings +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: java.lang.String DESCRIPTOR +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowRadius +androidx.appcompat.R$styleable: int AppCompatTheme_searchViewStyle +com.turingtechnologies.materialscrollbar.R$attr: int actionBarSize +cyanogenmod.app.CustomTile: android.net.Uri onClickUri +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +com.google.android.material.R$attr: int errorContentDescription +android.didikee.donate.R$dimen +okhttp3.RequestBody$1: okhttp3.MediaType contentType() +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low_normal +cyanogenmod.app.CMStatusBarManager: java.lang.String TAG +org.greenrobot.greendao.AbstractDao: void deleteInTx(java.lang.Iterable) +james.adaptiveicon.R$integer: int cancel_button_image_alpha +com.tencent.bugly.crashreport.CrashReport$WebViewInterface: void setJavaScriptEnabled(boolean) +androidx.preference.R$styleable: int[] ActionMenuView +androidx.lifecycle.extensions.R$layout: int notification_template_icon_group +com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_elevation +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: boolean requestDismissAndStartActivity(android.content.Intent) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: ObservableConcatMapCompletable$ConcatMapCompletableObserver(io.reactivex.CompletableObserver,io.reactivex.functions.Function,io.reactivex.internal.util.ErrorMode,int) +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onComplete() +android.didikee.donate.R$style: int TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconTint +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_title_text +androidx.preference.R$drawable: int abc_text_select_handle_middle_mtrl_dark +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onPause() +com.tencent.bugly.crashreport.common.info.a: java.lang.String f(java.lang.String) +com.jaredrummler.android.colorpicker.R$attr: int subtitleTextColor +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassLevel +okio.Buffer: okio.Buffer writeString(java.lang.String,java.nio.charset.Charset) +wangdaye.com.geometricweather.R$attr: int cpv_color +androidx.appcompat.R$style: int Animation_AppCompat_DropDownUp +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams mParams +androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Body1 +james.adaptiveicon.R$attr: int actionBarItemBackground +cyanogenmod.app.CMContextConstants: java.lang.String CM_TELEPHONY_MANAGER_SERVICE +androidx.vectordrawable.animated.R$attr: int fontProviderAuthority +androidx.appcompat.R$styleable: int Toolbar_subtitle +wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_previous_black_24dp +cyanogenmod.power.IPerformanceManager$Stub$Proxy: int getPowerProfile() +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getCloudCover() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: long dt +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Title +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_ttcIndex +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +wangdaye.com.geometricweather.R$attr: int autoSizeTextType +wangdaye.com.geometricweather.R$attr: int spinnerDropDownItemStyle +com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_title_material +com.amap.api.location.AMapLocationClient: void enableBackgroundLocation(int,android.app.Notification) +wangdaye.com.geometricweather.R$attr: int actionModePasteDrawable +okhttp3.Credentials: java.lang.String basic(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getRagweedLevel() +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_queryBackground +androidx.appcompat.R$styleable: int StateListDrawableItem_android_drawable +okhttp3.internal.platform.Jdk9Platform: java.lang.reflect.Method getProtocolMethod +wangdaye.com.geometricweather.R$string: int status_bar_notification_info_overflow androidx.viewpager.R$id: int icon -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_title -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_drawableSize -androidx.lifecycle.ViewModelProvider$KeyedFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -androidx.preference.R$styleable: int SwitchCompat_thumbTintMode -james.adaptiveicon.R$style: int Widget_AppCompat_ListView_Menu -androidx.fragment.R$attr: int fontProviderFetchStrategy -com.google.android.material.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar -cyanogenmod.platform.R$xml: R$xml() -com.google.android.material.R$color: int primary_text_default_material_dark -wangdaye.com.geometricweather.R$string: int precipitation_duration -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void dispose() -wangdaye.com.geometricweather.R$id: int item_icon_provider_previewButton -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherText(java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: int hasSeaBulletin -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_padding_material -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$styleable: int MaterialButton_backgroundTint -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_type -androidx.preference.R$id: int accessibility_custom_action_9 -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long serialVersionUID -com.xw.repo.bubbleseekbar.R$bool: int abc_allow_stacked_button_bar -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getHaloTintList() -androidx.core.R$dimen: int compat_button_padding_horizontal_material -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.functions.Function mapper -okhttp3.HttpUrl: java.lang.String PATH_SEGMENT_ENCODE_SET_URI -androidx.appcompat.R$styleable: int SearchView_searchIcon -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -androidx.appcompat.app.WindowDecorActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -androidx.appcompat.widget.SearchView: int getPreferredWidth() -androidx.preference.R$id: int submenuarrow -com.google.android.material.R$anim: int btn_checkbox_to_checked_icon_null_animation -james.adaptiveicon.R$style: int Widget_AppCompat_TextView_SpinnerItem -android.didikee.donate.R$string: int abc_toolbar_collapse_description -androidx.preference.R$styleable: int[] PopupWindow -androidx.hilt.lifecycle.R$id: int notification_background -com.turingtechnologies.materialscrollbar.R$attr: int tint -okhttp3.Response$Builder: okhttp3.Response cacheResponse -androidx.constraintlayout.widget.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -androidx.dynamicanimation.R$style -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi -com.google.android.material.textfield.TextInputLayout: com.google.android.material.textfield.EndIconDelegate getEndIconDelegate() -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable -com.tencent.bugly.crashreport.common.info.AppInfo: boolean f(android.content.Context) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitationDuration() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionButtonStyle -io.reactivex.Observable: void subscribe(io.reactivex.Observer) -com.google.gson.internal.LinkedTreeMap: java.lang.Object get(java.lang.Object) -androidx.core.R$string -com.turingtechnologies.materialscrollbar.R$attr: int msb_barColor -androidx.appcompat.R$color: int abc_color_highlight_material -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder query(java.lang.String) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat -com.google.android.material.R$color: int abc_decor_view_status_guard -androidx.appcompat.widget.ScrollingTabContainerView: void setContentHeight(int) -androidx.preference.SeekBarPreference$SavedState: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -com.jaredrummler.android.colorpicker.R$string: int abc_capital_off -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar_Indicator -com.amap.api.location.AMapLocationClientOption: void setDownloadCoordinateConvertLibrary(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_alpha -androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -com.google.android.material.card.MaterialCardView: void setRippleColorResource(int) -wangdaye.com.geometricweather.R$dimen: int tooltip_precise_anchor_threshold -androidx.vectordrawable.R$id: int actions -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -androidx.customview.R$integer -retrofit2.Retrofit$Builder: java.util.List converterFactories -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_z -androidx.lifecycle.extensions.R$dimen: int compat_button_inset_horizontal_material -androidx.constraintlayout.widget.R$style: int Base_V22_Theme_AppCompat -com.google.android.material.tabs.TabLayout: void setOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) -wangdaye.com.geometricweather.R$drawable: int mtrl_ic_arrow_drop_down -com.turingtechnologies.materialscrollbar.R$styleable: int[] AlertDialog -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int mainTextColorResId -james.adaptiveicon.R$attr: int showText -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_share_mtrl_alpha -okhttp3.RealCall: okhttp3.Call clone() -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_icon_null_animation -com.google.android.material.textfield.TextInputLayout: void setCounterTextColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$id: int showHome -com.tencent.bugly.BuglyStrategy: boolean n -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long produced -com.autonavi.aps.amapapi.model.AMapLocationServer: void a(boolean) -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_swipe_escape_velocity -androidx.appcompat.R$attr: int contentInsetStart -androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$drawable: int ic_flower -com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMode -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherSource(java.lang.String) -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_12 -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleTint -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert -com.xw.repo.bubbleseekbar.R$dimen: int abc_switch_padding -android.didikee.donate.R$attr: int switchTextAppearance -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_set -com.jaredrummler.android.colorpicker.R$dimen: int disabled_alpha_material_dark -com.jaredrummler.android.colorpicker.R$style: int Preference_SeekBarPreference -cyanogenmod.themes.ThemeManager: android.os.Handler mHandler -cyanogenmod.hardware.CMHardwareManager: int FEATURE_SERIAL_NUMBER -androidx.constraintlayout.widget.R$drawable: int abc_list_divider_material -okhttp3.Address: javax.net.SocketFactory socketFactory -androidx.preference.R$attr: int multiChoiceItemLayout -com.google.android.material.R$attr: int progressBarPadding -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -com.turingtechnologies.materialscrollbar.R$attr: int tabBackground -androidx.preference.R$attr: int actionModeSelectAllDrawable -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: java.lang.String address -cyanogenmod.providers.CMSettings$Secure: java.lang.String ADB_PORT -wangdaye.com.geometricweather.R$styleable: int CardView_contentPadding -okhttp3.CipherSuite: CipherSuite(java.lang.String) -com.tencent.bugly.crashreport.common.strategy.a: java.lang.String e() -androidx.customview.R$styleable: int FontFamilyFont_fontStyle -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidth(int) -wangdaye.com.geometricweather.R$id: int action_bar -cyanogenmod.themes.ThemeManager$1$1: cyanogenmod.themes.ThemeManager$1 this$1 -com.xw.repo.bubbleseekbar.R$drawable: int abc_switch_track_mtrl_alpha -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$y -com.google.android.material.internal.CheckableImageButton$SavedState: android.os.Parcelable$Creator CREATOR -okhttp3.internal.http.RealInterceptorChain -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: long serialVersionUID -com.xw.repo.bubbleseekbar.R$id: int custom -com.xw.repo.bubbleseekbar.R$layout: int abc_action_bar_title_item -androidx.viewpager2.R$id: int forever -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: double lon -android.didikee.donate.R$styleable: int[] TextAppearance -com.google.android.gms.common.R$string: int common_google_play_services_unknown_issue -com.google.android.material.chip.Chip: void setChipCornerRadius(float) -com.google.android.material.R$dimen: int material_timepicker_dialog_buttons_margin_top -androidx.constraintlayout.widget.R$layout: int abc_tooltip -okhttp3.internal.http2.Huffman$Node: Huffman$Node() -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose w -android.didikee.donate.R$styleable: int[] LinearLayoutCompat_Layout -com.google.android.material.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_CBC_SHA -cyanogenmod.app.PartnerInterface: java.lang.String MODIFY_NETWORK_SETTINGS_PERMISSION -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_ttcIndex -com.amap.api.location.AMapLocation: java.lang.String f -androidx.preference.R$attr: int checkboxStyle +androidx.hilt.R$layout: int notification_template_icon_group +androidx.lifecycle.ViewModelProvider +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_subtitle +androidx.constraintlayout.widget.R$attr: int icon +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabBar +com.google.android.material.chip.Chip: void setChipIconSizeResource(int) +com.google.android.material.R$color: int design_dark_default_color_on_secondary +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: long serialVersionUID +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button +androidx.work.R$styleable: int FontFamilyFont_fontWeight +androidx.hilt.work.R$id: int line1 +com.google.android.material.R$attr: int telltales_tailColor +okhttp3.internal.http2.Hpack$Writer: boolean useCompression +androidx.lifecycle.DefaultLifecycleObserver: void onPause(androidx.lifecycle.LifecycleOwner) +androidx.loader.R$color: int notification_action_color_filter +com.turingtechnologies.materialscrollbar.R$layout: int abc_search_view +com.google.android.material.R$styleable: int ConstraintSet_transitionPathRotate +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: $Gson$Types$ParameterizedTypeImpl(java.lang.reflect.Type,java.lang.reflect.Type,java.lang.reflect.Type[]) +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TEMPERATURE_UNIT +androidx.preference.R$style: int PreferenceThemeOverlay_v14 +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void drain() +androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.internal.NavigationMenuItemView: void setActionView(android.view.View) +com.google.android.gms.base.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_maxImageSize +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: boolean isCanceled() +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.fuseable.SimpleQueue queue wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Daylight -androidx.lifecycle.ProcessLifecycleOwner: void init(android.content.Context) -com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_Alert -androidx.appcompat.R$style: int Base_Widget_AppCompat_EditText -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TabLayout -androidx.hilt.work.R$layout: int notification_template_icon_group -okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV1 -androidx.appcompat.resources.R$id: int notification_main_column -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_SIGNAL_ICON -wangdaye.com.geometricweather.R$styleable: int MenuItem_numericModifiers -james.adaptiveicon.R$dimen: int abc_text_size_large_material -wangdaye.com.geometricweather.remoteviews.config.Hilt_HourlyTrendWidgetConfigActivity: Hilt_HourlyTrendWidgetConfigActivity() -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -androidx.constraintlayout.widget.R$attr: int touchRegionId -androidx.appcompat.R$dimen: int abc_button_padding_vertical_material -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_setNotificationGroupBtn -io.reactivex.internal.util.VolatileSizeArrayList: java.util.List subList(int,int) -james.adaptiveicon.R$styleable: int DrawerArrowToggle_barLength -com.turingtechnologies.materialscrollbar.R$attr: int layoutManager -com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonTintMode -android.didikee.donate.R$styleable: int AppCompatTheme_imageButtonStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String defenseText -com.amap.api.location.AMapLocation: int ERROR_CODE_UNKNOWN -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onNext(java.lang.Object) -androidx.preference.R$attr: int spinnerStyle -com.google.android.material.R$styleable: int KeyPosition_percentX -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar -androidx.appcompat.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginTop -com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getProgressDrawable() -android.didikee.donate.R$dimen: int abc_text_size_menu_header_material -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver -com.google.android.material.R$animator: int linear_indeterminate_line2_head_interpolator -wangdaye.com.geometricweather.R$string: int material_minute_selection -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_clear_material -com.google.gson.stream.JsonReader: long MIN_INCOMPLETE_INTEGER -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listMenuViewStyle -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchMinWidth -com.google.android.material.R$styleable: int[] RecyclerView -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX info -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_95 -androidx.legacy.coreutils.R$drawable: int notification_bg_low -retrofit2.RequestFactory$Builder: java.util.regex.Pattern PARAM_URL_REGEX -com.google.android.material.timepicker.TimePickerView: void setOnDoubleTapListener(com.google.android.material.timepicker.TimePickerView$OnDoubleTapListener) -cyanogenmod.app.Profile: int getNotificationLightMode() -okhttp3.Authenticator$1: Authenticator$1() -com.amap.api.location.AMapLocation: java.lang.String getFloor() -androidx.constraintlayout.widget.R$styleable: int Constraint_android_transformPivotY -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -retrofit2.DefaultCallAdapterFactory$1 -com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context) -androidx.appcompat.R$attr: int homeLayout -com.google.android.material.R$attr: int theme -james.adaptiveicon.R$layout: int abc_screen_simple_overlay_action_mode -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityResumed(android.app.Activity) -androidx.recyclerview.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.lifecycle.ProcessLifecycleOwner: void activityPaused() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum Minimum -androidx.preference.R$styleable: int AppCompatTextView_fontFamily -com.jaredrummler.android.colorpicker.R$attr: int iconTint -wangdaye.com.geometricweather.R$drawable: int ic_drag -com.google.android.material.R$styleable: int[] MenuItem -okhttp3.internal.connection.RealConnection: java.util.List allocations -androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Time -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textAppearance -com.google.android.gms.base.R$string: int common_google_play_services_notification_ticker -androidx.preference.R$anim: int abc_popup_enter -james.adaptiveicon.R$styleable: int ActionBar_navigationMode -james.adaptiveicon.R$attr: int toolbarNavigationButtonStyle -wangdaye.com.geometricweather.R$color: int material_grey_100 -com.jaredrummler.android.colorpicker.R$layout: int abc_action_bar_up_container -wangdaye.com.geometricweather.R$layout: int preference_material -wangdaye.com.geometricweather.R$id: int notification_multi_city_3 -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Medium_Inverse -com.google.android.gms.base.R$id: int adjust_height -androidx.core.R$styleable: int[] GradientColorItem -cyanogenmod.weather.CMWeatherManager$RequestStatus: int FAILED -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature ApparentTemperature -com.google.gson.JsonParseException: JsonParseException(java.lang.Throwable) -wangdaye.com.geometricweather.R$xml: int icon_provider_sun_moon_filter -wangdaye.com.geometricweather.R$styleable: int Motion_motionStagger -com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_top_material -androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context,android.util.AttributeSet) -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void testNativeCrash(boolean,boolean,boolean) -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder protocols(java.util.List) -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: boolean tryOnError(java.lang.Throwable) -androidx.preference.R$styleable: int MenuItem_actionLayout -wangdaye.com.geometricweather.R$attr: int region_widthLessThan -com.google.android.material.R$attr: int dragDirection -androidx.viewpager.widget.ViewPager: void setCurrentItem(int) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_toolbarStyle -okhttp3.internal.ws.RealWebSocket: boolean close(int,java.lang.String) -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge -com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context) -androidx.preference.R$attr: int autoSizeTextType -androidx.constraintlayout.widget.R$string: int abc_activitychooserview_choose_application -com.google.gson.stream.JsonReader: int nextNonWhitespace(boolean) -retrofit2.Platform$Android -wangdaye.com.geometricweather.R$attr: int percentX -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setPrecipitationProbability(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean) -androidx.viewpager.R$drawable: int notification_tile_bg -com.turingtechnologies.materialscrollbar.R$attr: int checkedIconVisible -wangdaye.com.geometricweather.weather.apis.CaiYunApi -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int Priority -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getTemperatureText(android.content.Context,int) -androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context) -okhttp3.Cache$Entry: java.lang.String requestMethod -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio -androidx.legacy.coreutils.R$integer: int status_bar_notification_info_maxnum -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchPadding -androidx.legacy.coreutils.R$style: R$style() -james.adaptiveicon.R$drawable: int notification_icon_background -io.reactivex.Observable: io.reactivex.Observable delaySubscription(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetRight -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_EMPTY_RENEGOTIATION_INFO_SCSV -androidx.activity.R$string -com.jaredrummler.android.colorpicker.R$dimen: int notification_action_icon_size -okhttp3.internal.cache.DiskLruCache$Snapshot: long sequenceNumber -androidx.lifecycle.extensions.R$anim: int fragment_open_exit -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: MfForecastResult() -wangdaye.com.geometricweather.R$dimen: int cardview_compat_inset_shadow -com.xw.repo.bubbleseekbar.R$id: int right -cyanogenmod.app.CustomTile$ExpandedStyle: int NO_STYLE -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum Maximum -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -com.google.android.material.R$color: int abc_background_cache_hint_selector_material_dark -com.amap.api.location.LocationManagerBase: void setLocationOption(com.amap.api.location.AMapLocationClientOption) -androidx.work.R$attr: int fontProviderFetchTimeout -com.turingtechnologies.materialscrollbar.R$attr: int actionModeSelectAllDrawable -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_4_00 -androidx.preference.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_maxHeight -androidx.work.WorkInfo$State: boolean isFinished() -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: long serialVersionUID -androidx.viewpager2.R$id: int accessibility_custom_action_7 -io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier[] values() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer realFeelTemperature -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: int unitArrayIndex -wangdaye.com.geometricweather.R$transition: int search_activity_shared_return -wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_pageIndicatorColor -james.adaptiveicon.R$id: int custom -wangdaye.com.geometricweather.R$attr: int maxButtonHeight -cyanogenmod.app.Profile: void addSecondaryUuid(java.util.UUID) -androidx.lifecycle.ReportFragment: void onDestroy() -androidx.constraintlayout.widget.R$styleable: int PopupWindow_android_popupAnimationStyle -com.google.android.material.chip.Chip: float getCloseIconSize() -com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context,android.util.AttributeSet,int) -james.adaptiveicon.R$styleable: int Toolbar_title -cyanogenmod.app.StatusBarPanelCustomTile: int getId() -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObserverResourceWrapper: ObserverResourceWrapper(io.reactivex.Observer) -cyanogenmod.app.StatusBarPanelCustomTile$1: java.lang.Object[] newArray(int) -okhttp3.internal.http.HttpDate$1: HttpDate$1() -androidx.vectordrawable.R$id: int accessibility_custom_action_19 -james.adaptiveicon.R$styleable: int SearchView_iconifiedByDefault -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonText -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: int getStatus() -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTint -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_61 -androidx.appcompat.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -okhttp3.internal.http1.Http1Codec: int STATE_WRITING_REQUEST_BODY -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -wangdaye.com.geometricweather.R$color: int material_slider_halo_color -wangdaye.com.geometricweather.R$xml: int icon_provider_drawable_filter -androidx.lifecycle.ViewModelStoreOwner: androidx.lifecycle.ViewModelStore getViewModelStore() -com.github.rahatarmanahmed.cpv.CircularProgressView: float INDETERMINANT_MIN_SWEEP -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: void setNotice(java.lang.String) -com.xw.repo.bubbleseekbar.R$dimen: int notification_small_icon_size_as_large -androidx.appcompat.widget.AppCompatTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) -com.google.gson.FieldNamingPolicy$6: FieldNamingPolicy$6(java.lang.String,int) -androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context,android.util.AttributeSet) -androidx.appcompat.widget.AppCompatTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_TILES -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: IKeyguardExternalViewProvider$Stub() -com.google.android.material.chip.ChipGroup: void setOnCheckedChangeListener(com.google.android.material.chip.ChipGroup$OnCheckedChangeListener) -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_light -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void boundaryError(io.reactivex.disposables.Disposable,java.lang.Throwable) -wangdaye.com.geometricweather.R$array: int weather_source_values -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_orientation -okio.Buffer: okio.BufferedSink writeByte(int) -com.amap.api.location.AMapLocationQualityReport: com.amap.api.location.AMapLocationQualityReport clone() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_4 -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog_Alert -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -wangdaye.com.geometricweather.R$color: int abc_search_url_text_normal -okhttp3.internal.ws.RealWebSocket$Streams: okio.BufferedSource source -androidx.preference.R$styleable: int Toolbar_titleTextAppearance -androidx.core.widget.NestedScrollView: float getTopFadingEdgeStrength() -androidx.cardview.R$styleable: int CardView_contentPaddingLeft -androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentWidth -okhttp3.internal.connection.RouteSelector: okhttp3.Call call -io.reactivex.internal.disposables.EmptyDisposable: void dispose() -cyanogenmod.app.PartnerInterface: cyanogenmod.app.IPartnerInterface getService() -com.bumptech.glide.R$id: int blocking -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorAccent -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: MinutelyEntityDao$Properties() -cyanogenmod.profiles.AirplaneModeSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$id: int info -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton -android.didikee.donate.R$styleable: int TextAppearance_android_fontFamily -androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean sameConnection(okhttp3.Response,okhttp3.HttpUrl) -wangdaye.com.geometricweather.R$string: int edit -com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String,java.util.List) -okio.RealBufferedSource: int read(byte[]) -androidx.constraintlayout.widget.R$dimen: int abc_dialog_padding_top_material -androidx.lifecycle.ServiceLifecycleDispatcher -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderFetchTimeout -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean profileExistsByName(java.lang.String) -okhttp3.internal.Util: java.util.Comparator NATURAL_ORDER -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_width_major -androidx.lifecycle.extensions.R$string: R$string() -androidx.dynamicanimation.R$attr: int fontProviderFetchStrategy -james.adaptiveicon.R$id: int search_src_text -wangdaye.com.geometricweather.R$drawable: int shortcuts_hail -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder addNetworkInterceptor(okhttp3.Interceptor) -wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_offset -okhttp3.Response: okhttp3.Response cacheResponse() -androidx.transition.R$styleable: int FontFamilyFont_fontWeight -com.xw.repo.bubbleseekbar.R$styleable: int[] LinearLayoutCompat -androidx.preference.R$dimen: int tooltip_vertical_padding -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_cut_mtrl_alpha -androidx.appcompat.resources.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeDegreeDayTemperature() -james.adaptiveicon.R$styleable: int[] ListPopupWindow -com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_title_material -androidx.recyclerview.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_weight -wangdaye.com.geometricweather.R$drawable: int material_ic_clear_black_24dp -com.loc.k: java.lang.String b -com.google.android.material.R$attr: int startIconContentDescription -okio.Buffer: void readFrom(java.io.InputStream,long,boolean) -wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_default_alpha -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalAlign -james.adaptiveicon.R$id: int action_bar -androidx.recyclerview.R$id: int actions -androidx.appcompat.R$attr: int textAppearanceListItemSmall -androidx.preference.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -wangdaye.com.geometricweather.R$id: int controller -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableBottomCompat -wangdaye.com.geometricweather.R$drawable: int notif_temp_38 -androidx.lifecycle.ReportFragment -com.google.android.material.textfield.TextInputLayout: void setStartIconVisible(boolean) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleEnabled -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: boolean isDisposed() -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginTop -androidx.appcompat.R$styleable: int ActionBar_itemPadding -com.google.android.material.R$styleable: int MaterialTextView_lineHeight -androidx.viewpager2.R$color: int notification_action_color_filter -james.adaptiveicon.AdaptiveIconView: void setPath(java.lang.String) -androidx.viewpager2.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.WeatherEntity) -james.adaptiveicon.R$styleable: int MenuItem_android_visible -androidx.swiperefreshlayout.R$dimen: int compat_button_inset_horizontal_material -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabText -james.adaptiveicon.R$style: int Widget_AppCompat_Light_PopupMenu -okio.DeflaterSink: void write(okio.Buffer,long) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: void setTo(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -com.google.android.material.R$styleable: int ChipGroup_chipSpacingVertical -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_switchTextOff -cyanogenmod.externalviews.ExternalView$8: void run() -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat[] values() -okio.AsyncTimeout$1: void write(okio.Buffer,long) -androidx.lifecycle.Transformations: Transformations() -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceId() -james.adaptiveicon.R$styleable: int View_android_focusable -androidx.appcompat.widget.AbsActionBarView: void setVisibility(int) -androidx.appcompat.R$string: int abc_search_hint -cyanogenmod.app.Profile$ProfileTrigger: int mType -com.tencent.bugly.proguard.r: long a -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX -androidx.constraintlayout.widget.R$styleable: int Transition_transitionDisable -wangdaye.com.geometricweather.R$string: int sp_widget_day_week_setting -androidx.work.R$color: int notification_action_color_filter -com.google.android.material.R$styleable: int ConstraintSet_layout_editor_absoluteY -androidx.constraintlayout.widget.R$style: int Platform_V25_AppCompat_Light -okhttp3.internal.platform.Platform: int INFO -com.amap.api.location.AMapLocationQualityReport: void setWifiAble(boolean) -okio.Okio: okio.Source source(java.io.File) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginLeft -android.didikee.donate.R$styleable: int AppCompatTheme_android_windowIsFloating +com.google.android.material.R$styleable: int MaterialTextView_android_textAppearance +androidx.customview.R$drawable: int notification_bg_normal +com.bumptech.glide.load.ImageHeaderParser$ImageType: boolean hasAlpha +com.google.android.material.R$styleable: int Slider_tickColorInactive +james.adaptiveicon.R$string: int abc_search_hint +androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy: ConstraintProxy$StorageNotLowProxy() +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMenuItemView +androidx.coordinatorlayout.R$id: int start +okhttp3.internal.http2.Http2Connection$6: int val$byteCount +androidx.preference.R$style: int Base_Theme_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: io.reactivex.Scheduler scheduler +com.tencent.bugly.proguard.y$a: boolean a +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemTextColor +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getGrassIndex() +com.google.android.material.R$styleable: int BottomAppBar_fabCradleMargin +okhttp3.internal.cache.DiskLruCache$3: java.lang.Object next() +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_16dp +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_BOOT_ANIM +wangdaye.com.geometricweather.R$attr: int bsb_seek_step_section +com.jaredrummler.android.colorpicker.R$attr: int tooltipForegroundColor +androidx.constraintlayout.widget.R$attr: int ratingBarStyleIndicator +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +wangdaye.com.geometricweather.R$styleable: int[] MaterialCalendar +androidx.fragment.R$attr: int fontProviderFetchStrategy +androidx.viewpager.R$integer: R$integer() +com.google.android.material.R$styleable: int LinearLayoutCompat_divider +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void dispose() +androidx.preference.R$styleable: int DialogPreference_android_dialogTitle +androidx.appcompat.widget.SwitchCompat: void setSwitchMinWidth(int) +androidx.hilt.lifecycle.R$color +android.didikee.donate.R$styleable: int AppCompatTextView_lineHeight +wangdaye.com.geometricweather.R$id: int toggle +okhttp3.CacheControl: boolean noStore +androidx.coordinatorlayout.R$attr: int fontWeight +wangdaye.com.geometricweather.R$styleable: int MenuView_subMenuArrow +wangdaye.com.geometricweather.R$styleable: int Slider_tickColorInactive +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlNormal +io.reactivex.Observable: io.reactivex.Observable concatDelayError(java.lang.Iterable) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String LocalizedName +android.didikee.donate.R$style: int Theme_AppCompat +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onStart() +james.adaptiveicon.R$attr: int paddingTopNoTitle +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation precipitation +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_thickness +androidx.constraintlayout.widget.R$styleable: int[] ConstraintLayout_Layout +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void dispose() +com.xw.repo.bubbleseekbar.R$attr: int panelMenuListWidth +androidx.appcompat.R$dimen: int abc_action_bar_overflow_padding_start_material +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_curveFit +okhttp3.internal.http2.Http2Codec +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.lang.Throwable error +androidx.preference.R$drawable: int abc_text_select_handle_left_mtrl_light +okhttp3.internal.http2.Http2Codec: java.lang.String HOST +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +james.adaptiveicon.R$styleable: int[] DrawerArrowToggle +androidx.coordinatorlayout.R$color: int secondary_text_default_material_light +androidx.drawerlayout.R$id: int text2 +androidx.constraintlayout.widget.R$attr: int displayOptions +com.google.android.material.R$attr: int region_heightMoreThan +okhttp3.MultipartBody +androidx.preference.R$styleable: int ViewStubCompat_android_id +cyanogenmod.themes.ThemeManager: void unregisterProcessingListener(cyanogenmod.themes.ThemeManager$ThemeProcessingListener) +com.amap.api.fence.DistrictItem: void setPolyline(java.util.List) +com.google.android.material.R$styleable: int AppCompatTextView_android_textAppearance +com.tencent.bugly.proguard.j: void a(java.util.Map,int) +android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat +androidx.constraintlayout.widget.R$attr: int customColorValue +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Borderless +androidx.activity.R$id: int accessibility_custom_action_30 +com.jaredrummler.android.colorpicker.R$layout: int preference_category wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric() -androidx.swiperefreshlayout.R$id: int tag_accessibility_actions -androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStoreOwner,androidx.lifecycle.ViewModelProvider$Factory) -com.turingtechnologies.materialscrollbar.Indicator -james.adaptiveicon.R$styleable: int TextAppearance_android_shadowDy -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitationProbability() -androidx.drawerlayout.R$attr: int fontProviderPackage -retrofit2.Retrofit: java.util.List converterFactories -okhttp3.internal.cache.DiskLruCache$2: DiskLruCache$2(okhttp3.internal.cache.DiskLruCache,okio.Sink) -androidx.preference.R$attr: int defaultQueryHint -com.jaredrummler.android.colorpicker.R$layout: int notification_template_icon_group -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: java.lang.String desc -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int WeatherIcon -cyanogenmod.app.ThemeComponent: ThemeComponent(java.lang.String,int,int) -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias -androidx.drawerlayout.R$drawable -james.adaptiveicon.R$anim: int abc_slide_out_bottom -okhttp3.internal.tls.BasicCertificateChainCleaner: okhttp3.internal.tls.TrustRootIndex trustRootIndex -com.tencent.bugly.crashreport.common.info.a: java.util.Map v() -androidx.appcompat.R$styleable: int ActionBar_backgroundSplit -androidx.constraintlayout.widget.R$attr: int editTextBackground -okhttp3.ConnectionPool: java.net.Socket deduplicate(okhttp3.Address,okhttp3.internal.connection.StreamAllocation) -james.adaptiveicon.R$styleable: int TextAppearance_android_textStyle -wangdaye.com.geometricweather.R$id: int material_hour_tv -androidx.preference.R$layout: int custom_dialog -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void drain() -io.reactivex.internal.operators.observable.ObservableReplay$Node: ObservableReplay$Node(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$attr: int tabTextColor -androidx.preference.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -androidx.constraintlayout.widget.R$id: int forever -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getRealFeelTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualObserver[] observers -io.reactivex.internal.observers.BasicIntQueueDisposable: int requestFusion(int) -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_stacked_max_height -okio.GzipSource: void close() -androidx.appcompat.R$attr: int textColorAlertDialogListItem -com.jaredrummler.android.colorpicker.R$attr: int colorSwitchThumbNormal -okio.RealBufferedSource: void readFully(byte[]) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabAnimationMode -okhttp3.CacheControl$Builder: boolean onlyIfCached -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: long serialVersionUID -androidx.constraintlayout.widget.R$styleable: int Constraint_android_id -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void setUserOpened(boolean) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_33 -androidx.appcompat.R$styleable: int Toolbar_popupTheme -androidx.constraintlayout.widget.R$styleable: int Layout_android_orientation -wangdaye.com.geometricweather.R$id: int notification_big_week_3 -com.amap.api.location.AMapLocation: int GPS_ACCURACY_BAD -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onComplete() -james.adaptiveicon.R$styleable: int MenuItem_android_title -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_transformPivotX -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection findConnection(int,int,int,int,boolean) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_124 -wangdaye.com.geometricweather.R$styleable: int ActionMode_backgroundSplit -wangdaye.com.geometricweather.R$attr: int materialCalendarYearNavigationButton -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: cyanogenmod.externalviews.IKeyguardExternalViewProvider asInterface(android.os.IBinder) -com.google.android.material.R$id: int search_badge -com.google.android.material.R$dimen: int mtrl_tooltip_padding -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onNext(java.lang.Object) -okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String key() -james.adaptiveicon.R$styleable: int ActionBar_contentInsetStartWithNavigation -com.google.android.material.R$styleable: int BottomAppBar_fabCradleVerticalOffset -com.google.android.material.R$style: int Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_elevation_material -android.didikee.donate.R$color: int abc_hint_foreground_material_dark -androidx.appcompat.R$id: int on -androidx.vectordrawable.animated.R$id: int action_divider -androidx.dynamicanimation.R$styleable: int GradientColor_android_endX -cyanogenmod.profiles.LockSettings: void processOverride(android.content.Context,com.android.internal.policy.IKeyguardService) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_srcCompat -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldLevel(java.lang.Integer) -androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context,android.util.AttributeSet,int) -com.tencent.bugly.crashreport.crash.c: int e -androidx.appcompat.R$styleable: int PopupWindowBackgroundState_state_above_anchor -okhttp3.internal.tls.BasicTrustRootIndex: BasicTrustRootIndex(java.security.cert.X509Certificate[]) -com.google.android.material.R$styleable: int MaterialButton_backgroundTint -androidx.appcompat.R$style: int Base_V26_Theme_AppCompat_Light -okio.SegmentedByteString: int lastIndexOf(byte[],int) -okhttp3.internal.cache.CacheStrategy: CacheStrategy(okhttp3.Request,okhttp3.Response) -cyanogenmod.weather.WeatherInfo$DayForecast: int hashCode() -com.bumptech.glide.R$drawable: int notification_bg -com.jaredrummler.android.colorpicker.R$layout: int preference_dialog_edittext -androidx.core.R$id: int accessibility_custom_action_19 -com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentCompatStyle -androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState UNDEFINED -androidx.constraintlayout.widget.R$id: int search_src_text -androidx.constraintlayout.widget.R$attr: int altSrc -androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_to_on_mtrl_015 -android.didikee.donate.R$attr: int actionModeStyle -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerComplete() -com.google.android.material.R$layout: int material_clockface_view -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button -com.github.rahatarmanahmed.cpv.R$color: int cpv_default_color -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_contentScrim -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_second_track_size -androidx.constraintlayout.widget.R$attr: int maxButtonHeight -androidx.constraintlayout.widget.R$styleable: int OnClick_targetId -retrofit2.OkHttpCall: java.lang.Object[] args -io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function,boolean) -com.google.android.material.R$style: int Base_Widget_AppCompat_ListMenuView -io.reactivex.internal.observers.BlockingObserver -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableLeft -androidx.lifecycle.extensions.R$dimen: int compat_control_corner_material -james.adaptiveicon.R$attr: int expandActivityOverflowButtonDrawable -com.google.android.material.R$attr: int touchRegionId -wangdaye.com.geometricweather.R$styleable: int KeyCycle_transitionPathRotate -androidx.customview.R$id: int action_text -com.tencent.bugly.proguard.y: java.lang.Object o -okhttp3.internal.http.StatusLine: int HTTP_CONTINUE -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler: void handleNativeException2(int,int,long,long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,int,java.lang.String,java.lang.String,java.lang.String[]) -androidx.preference.R$attr: int navigationIcon -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_min_width_major -com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_checkbox -android.didikee.donate.R$attr: int windowActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItem -okhttp3.internal.http.HttpHeaders: boolean hasBody(okhttp3.Response) -com.tencent.bugly.proguard.ak: java.lang.String c -dagger.hilt.android.internal.managers.ActivityRetainedComponentManager$ActivityRetainedComponentViewModel -okhttp3.RealCall: okhttp3.RealCall newRealCall(okhttp3.OkHttpClient,okhttp3.Request,boolean) -androidx.core.R$layout: int notification_template_custom_big -cyanogenmod.weather.WeatherInfo$DayForecast: int describeContents() -com.autonavi.aps.amapapi.model.AMapLocationServer: void g(java.lang.String) -android.didikee.donate.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -com.amap.api.fence.GeoFence: void setExpiration(long) -wangdaye.com.geometricweather.R$string: int settings_notification_can_be_cleared_on -wangdaye.com.geometricweather.R$attr: int initialActivityCount -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText -wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_end -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.disposables.Disposable upstream -org.greenrobot.greendao.AbstractDao: long insertWithoutSettingPk(java.lang.Object) -androidx.lifecycle.extensions.R$id: int chronometer -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginBottom -androidx.appcompat.app.AlertController$RecycleListView: AlertController$RecycleListView(android.content.Context) -com.google.android.material.R$styleable: int MenuView_android_horizontalDivider -james.adaptiveicon.R$styleable: int AppCompatTheme_dialogCornerRadius -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitationProbability -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit CM -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: boolean equals(java.lang.Object) -androidx.constraintlayout.widget.R$color: int abc_search_url_text -com.jaredrummler.android.colorpicker.R$attr: int showAsAction -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_colorShape -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setNo2(java.lang.Float) -wangdaye.com.geometricweather.R$drawable: int weather_haze_3 -com.amap.api.location.AMapLocation: java.lang.String j +james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +com.jaredrummler.android.colorpicker.R$style: int Widget_Compat_NotificationActionContainer +androidx.appcompat.widget.AppCompatTextView +androidx.preference.R$styleable: int MenuItem_android_onClick +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State mState +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust +com.google.android.material.R$integer +wangdaye.com.geometricweather.R$id: int widget_day_week_title +wangdaye.com.geometricweather.R$styleable: int MotionLayout_layoutDescription +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_orderInCategory +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarStyle +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_SYNC +androidx.legacy.coreutils.R$id: int action_image +androidx.fragment.R$anim: int fragment_fade_exit +wangdaye.com.geometricweather.R$color: int mtrl_text_btn_text_color_selector +androidx.legacy.coreutils.R$id: int action_divider +com.google.android.material.internal.NavigationMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() +androidx.hilt.work.R$id: int accessibility_custom_action_21 +cyanogenmod.app.BaseLiveLockManagerService$1: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +androidx.lifecycle.CompositeGeneratedAdaptersObserver +androidx.appcompat.resources.R$id: int accessibility_custom_action_19 +com.google.android.material.R$styleable: int MaterialButton_shapeAppearanceOverlay +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_strokeColor +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List ganmao +com.google.android.material.R$drawable: int abc_ic_menu_share_mtrl_alpha +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout +com.turingtechnologies.materialscrollbar.R$attr: int backgroundStacked +wangdaye.com.geometricweather.R$drawable: int ic_weather_alert +com.google.android.material.R$id: int stop +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setArcBackgroundColor(int) +androidx.appcompat.R$attr: int colorPrimaryDark +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float rainPrecipitation +wangdaye.com.geometricweather.R$styleable: int[] StateListDrawable +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +wangdaye.com.geometricweather.R$string: int feedback_location_failed +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric Metric +org.greenrobot.greendao.database.DatabaseOpenHelper: void onCreate(android.database.sqlite.SQLiteDatabase) +wangdaye.com.geometricweather.R$id: int widget_week_temp_1 +wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_bottom_material +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetEnd +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Circular +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +androidx.constraintlayout.widget.R$id: int action_divider +okhttp3.ConnectionSpec$Builder: java.lang.String[] cipherSuites +androidx.preference.R$color: int notification_icon_bg_color +james.adaptiveicon.R$dimen: int abc_action_bar_stacked_tab_max_width +com.google.android.material.R$styleable: int ActionBar_icon +com.google.android.material.R$styleable: int ConstraintSet_android_scaleY +okio.AsyncTimeout$2 +wangdaye.com.geometricweather.R$id: int labeled +com.google.android.material.R$styleable: int Layout_layout_constraintHeight_min +io.reactivex.internal.disposables.DisposableHelper: boolean set(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void completion() +androidx.drawerlayout.R$id: R$id() +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,long) +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +com.tencent.bugly.proguard.q: void onDowngrade(android.database.sqlite.SQLiteDatabase,int,int) +androidx.appcompat.R$attr: int actionDropDownStyle +androidx.hilt.R$attr: int fontProviderPackage +com.google.android.material.R$dimen: int design_bottom_navigation_active_item_max_width +androidx.appcompat.R$styleable: int AppCompatTheme_listDividerAlertDialog +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_subheader +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getHourlyForecast() +com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_weight +com.google.android.material.card.MaterialCardView: void setCheckedIcon(android.graphics.drawable.Drawable) +androidx.appcompat.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial Imperial +cyanogenmod.app.IProfileManager: boolean removeProfile(cyanogenmod.app.Profile) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float rain +androidx.preference.PreferenceDialogFragmentCompat: PreferenceDialogFragmentCompat() +androidx.preference.R$styleable: int AppCompatTheme_toolbarStyle +cyanogenmod.app.PartnerInterface: android.content.Context mContext +wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress_color +wangdaye.com.geometricweather.R$array: int location_services +cyanogenmod.app.Profile$ProfileTrigger$1 +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onDetach() +james.adaptiveicon.R$styleable: int Toolbar_titleMargins +com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored +com.google.android.material.R$attr: int barrierAllowsGoneWidgets +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: android.graphics.Rect getWindowInsets() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_alpha +androidx.lifecycle.AbstractSavedStateViewModelFactory: android.os.Bundle mDefaultArgs +cyanogenmod.weatherservice.IWeatherProviderService +com.tencent.bugly.crashreport.crash.c: c(int,android.content.Context,com.tencent.bugly.proguard.w,boolean,com.tencent.bugly.BuglyStrategy$a,com.tencent.bugly.proguard.o,java.lang.String) +okhttp3.internal.http2.Http2Stream: boolean $assertionsDisabled +androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void drain() +wangdaye.com.geometricweather.R$dimen: int design_fab_image_size +androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupWindow +androidx.appcompat.R$id: int text2 +androidx.legacy.coreutils.R$drawable: int notification_bg_low_pressed +android.didikee.donate.R$id: int listMode +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_KEY +com.google.android.material.tabs.TabLayout: int getTabGravity() +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType TransactionRunnable +cyanogenmod.providers.CMSettings$Secure: java.lang.String SYS_PROP_CM_SETTING_VERSION +okhttp3.internal.http2.Http2Connection$PingRunnable: int payload2 +androidx.lifecycle.LifecycleEventObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +okhttp3.internal.connection.RouteSelector: okhttp3.internal.connection.RouteDatabase routeDatabase +androidx.preference.R$styleable: int MenuItem_actionProviderClass +okio.SegmentedByteString: boolean rangeEquals(int,okio.ByteString,int,int) +wangdaye.com.geometricweather.R$id: int icon +androidx.hilt.R$dimen: int notification_right_side_padding_top +androidx.drawerlayout.widget.DrawerLayout: float getDrawerElevation() +com.turingtechnologies.materialscrollbar.R$drawable: int notification_icon_background +james.adaptiveicon.R$style: int Widget_AppCompat_DrawerArrowToggle +android.support.v4.app.RemoteActionCompatParcelizer +cyanogenmod.app.IProfileManager$Stub$Proxy +androidx.activity.R$id: int notification_background +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +com.jaredrummler.android.colorpicker.R$attr: int switchPreferenceCompatStyle +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_headerBackground +androidx.work.R$id: int accessibility_custom_action_6 +cyanogenmod.library.R$styleable: int LiveLockScreen_type +wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionContainer +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.R$styleable: int Transform_android_transformPivotY +okhttp3.internal.Internal +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit M +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int maxConcurrency +okhttp3.internal.cache2.Relay$RelaySource: Relay$RelaySource(okhttp3.internal.cache2.Relay) +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean setNativeUserId(java.lang.String) +com.google.android.material.R$layout: int material_time_input +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean names +com.google.android.material.R$string: int mtrl_picker_text_input_date_range_start_hint +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX) +androidx.appcompat.widget.AppCompatSpinner: java.lang.CharSequence getPrompt() +okhttp3.internal.http2.ConnectionShutdownException +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Dialog +android.didikee.donate.R$style: int Base_AlertDialog_AppCompat +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintEnd_toEndOf +com.xw.repo.bubbleseekbar.R$layout: int abc_action_bar_up_container +androidx.viewpager2.R$attr: int fontStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaTitle -com.google.android.material.R$styleable: int Layout_layout_constraintTop_toTopOf -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_hideOnScroll -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelMenuListWidth -wangdaye.com.geometricweather.R$styleable: int Slider_trackColorInactive -androidx.appcompat.widget.ActionBarContextView: int getAnimatedVisibility() -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: ObservableCache$CacheDisposable(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableCache) -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getThunderstorm() -com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: java.lang.Thread c -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pm10 -com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -android.didikee.donate.R$dimen: int notification_top_pad_large_text -com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_android_foreground -james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -com.google.android.material.R$styleable: int[] TabLayout -wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonTintMode -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void run() -james.adaptiveicon.R$styleable: int AppCompatTheme_actionMenuTextAppearance -androidx.appcompat.R$attr: int actionBarTabTextStyle -androidx.appcompat.R$styleable: int FontFamilyFont_android_font -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$Adapter getAdapter() -cyanogenmod.weather.ICMWeatherManager: void updateWeather(cyanogenmod.weather.RequestInfo) -com.xw.repo.bubbleseekbar.R$color: int abc_background_cache_hint_selector_material_light -okhttp3.internal.cache2.FileOperator: java.nio.channels.FileChannel fileChannel -androidx.fragment.R$anim: int fragment_open_exit -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dividerVertical -androidx.lifecycle.ClassesInfoCache$MethodReference: java.lang.reflect.Method mMethod -okhttp3.internal.http2.Http2Stream: okhttp3.Headers takeHeaders() -com.google.android.material.R$drawable: int abc_edit_text_material -androidx.preference.R$styleable: int AppCompatTextView_lineHeight -james.adaptiveicon.R$styleable: int CompoundButton_buttonTint -okio.BufferedSink: okio.BufferedSink writeShortLe(int) -androidx.lifecycle.extensions.R$string -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial() -androidx.viewpager2.R$id: int accessibility_custom_action_12 -com.google.android.material.R$attr: int tabPaddingEnd -com.google.android.material.R$color: int abc_btn_colored_borderless_text_material -com.google.android.material.R$attr: int liftOnScroll -wangdaye.com.geometricweather.R$string: int feedback_no_data -okio.ByteString: okio.ByteString encodeUtf8(java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun sun -okhttp3.MediaType: java.nio.charset.Charset charset(java.nio.charset.Charset) -androidx.constraintlayout.widget.R$attr: int actionModeCutDrawable -wangdaye.com.geometricweather.R$attr: int closeIconTint -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -com.google.android.material.R$id: int SHOW_ALL -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onSubscribe(org.reactivestreams.Subscription) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_65 -org.greenrobot.greendao.AbstractDaoSession: void registerDao(java.lang.Class,org.greenrobot.greendao.AbstractDao) -com.google.android.material.R$layout: int design_navigation_item_separator -androidx.constraintlayout.widget.R$dimen: int notification_content_margin_start -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Medium -okhttp3.internal.http1.Http1Codec: okio.Sink newFixedLengthSink(long) -cyanogenmod.weather.WeatherInfo: java.util.List getForecasts() -com.google.android.material.R$id: int easeInOut -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -com.jaredrummler.android.colorpicker.NestedGridView -com.google.android.material.R$attr: int subtitleTextStyle -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index aggregatedIndex -com.google.android.material.R$color: int mtrl_choice_chip_background_color -androidx.constraintlayout.widget.R$attr: int barrierDirection -com.xw.repo.bubbleseekbar.R$attr: int multiChoiceItemLayout -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat -wangdaye.com.geometricweather.db.entities.DailyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_DailyEntityListQuery -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_iconifiedByDefault -cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.os.Bundle getOptions() -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_dropDownWidth -com.jaredrummler.android.colorpicker.R$attr: int navigationMode -wangdaye.com.geometricweather.R$attr: int chipStrokeColor -wangdaye.com.geometricweather.R$attr: int useSimpleSummaryProvider -james.adaptiveicon.R$styleable: int MenuGroup_android_enabled -androidx.appcompat.R$attr: int tooltipText -okhttp3.Cookie: java.util.List parseAll(okhttp3.HttpUrl,okhttp3.Headers) -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeStepGranularity -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow Snow -androidx.preference.R$dimen: int preference_seekbar_value_minWidth -androidx.appcompat.R$style: int Base_Animation_AppCompat_Dialog -com.jaredrummler.android.colorpicker.R$attr: int actionButtonStyle -wangdaye.com.geometricweather.R$layout: int widget_trend_hourly -io.reactivex.internal.util.VolatileSizeArrayList: int hashCode() -okhttp3.internal.cache.CacheInterceptor: boolean isEndToEnd(java.lang.String) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void slideLockscreenIn() -cyanogenmod.weather.RequestInfo: int hashCode() -com.bumptech.glide.integration.okhttp.R$layout -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeApparentTemperature -androidx.viewpager.widget.PagerTitleStrip: void setTextSpacing(int) -com.jaredrummler.android.colorpicker.R$id: int cpv_color_picker_view -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Inverse -cyanogenmod.providers.CMSettings$Secure: java.util.Map VALIDATORS -okhttp3.internal.platform.AndroidPlatform: int getSdkInt() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: java.util.List value -okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: void execute() -androidx.vectordrawable.animated.R$layout: int notification_action_tombstone -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -com.google.android.material.R$attr: int actionModeCopyDrawable -androidx.constraintlayout.widget.R$color: int foreground_material_dark -androidx.appcompat.R$styleable: int[] FontFamilyFont -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver,java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_listItemLayout -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: int getPrecipitationColor(android.content.Context) -io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: int skip -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_collapseIcon -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener access$102(cyanogenmod.weather.RequestInfo,cyanogenmod.weather.IRequestInfoListener) -okio.HashingSource: HashingSource(okio.Source,okio.ByteString,java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_MIDDLE -android.didikee.donate.R$styleable: int Spinner_android_dropDownWidth -com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_disabled -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind -androidx.constraintlayout.widget.R$string: int abc_shareactionprovider_share_with -wangdaye.com.geometricweather.R$anim: int fragment_fade_enter -com.bumptech.glide.load.engine.GlideException: com.bumptech.glide.load.DataSource dataSource -cyanogenmod.profiles.StreamSettings: int getValue() -io.reactivex.observers.TestObserver$EmptyObserver: void onNext(java.lang.Object) -androidx.preference.R$styleable: int AppCompatTextView_autoSizeTextType -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleTextAppearance -androidx.preference.R$styleable: int ActionBar_contentInsetRight -android.didikee.donate.R$styleable: int MenuView_preserveIconSpacing -androidx.viewpager2.adapter.FragmentStateAdapter$2 -io.reactivex.internal.queue.SpscArrayQueue: long serialVersionUID -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void ackSettings() -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode nighttimeWeatherCode -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_text_padding_right -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_summaryOn -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog_Alert -androidx.drawerlayout.R$id: int right_side -androidx.appcompat.R$attr: int showAsAction -wangdaye.com.geometricweather.R$attr: int textAppearanceListItem +cyanogenmod.weather.WeatherInfo$1: WeatherInfo$1() +com.google.android.material.progressindicator.ProgressIndicator: void setTrackColor(int) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmTp1 +com.google.android.material.R$styleable: int Layout_layout_constraintLeft_toRightOf +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean,int,int) +androidx.drawerlayout.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundNormalUpdateService: Hilt_ForegroundNormalUpdateService() +wangdaye.com.geometricweather.R$string: int follow_system +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: FlowableCreate$BaseEmitter(org.reactivestreams.Subscriber) +retrofit2.OkHttpCall$NoContentResponseBody: okio.BufferedSource source() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.UV uv +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void dispose() +com.turingtechnologies.materialscrollbar.R$attr: int titleMarginStart +com.xw.repo.bubbleseekbar.R$id: int scrollIndicatorUp +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSyncDuration +com.google.android.material.R$styleable: int Constraint_android_layout_marginStart +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeBackground +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +cyanogenmod.themes.ThemeManager$1$1: void run() +com.jaredrummler.android.colorpicker.R$id: int search_go_btn +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator +com.tencent.bugly.proguard.am: java.lang.String p +james.adaptiveicon.R$styleable: int TextAppearance_fontFamily +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_android_windowAnimationStyle +wangdaye.com.geometricweather.R$styleable: int ActionMode_backgroundSplit +androidx.dynamicanimation.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$attr: int thumbTintMode +androidx.preference.R$styleable: int Preference_fragment +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: CustomTileListenerService$ICustomTileListenerWrapper(cyanogenmod.app.CustomTileListenerService) +com.google.android.material.R$drawable: int ic_mtrl_chip_checked_black +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator$SavedState: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$styleable: int SwitchCompat_thumbTint +wangdaye.com.geometricweather.R$drawable: int notif_temp_3 +wangdaye.com.geometricweather.R$string: int settings_title_live_wallpaper +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_5 +com.google.android.material.R$dimen: int test_mtrl_calendar_day_cornerSize +androidx.constraintlayout.widget.R$dimen: int hint_alpha_material_dark +com.turingtechnologies.materialscrollbar.R$drawable: int notify_panel_notification_icon_bg +james.adaptiveicon.R$drawable: int abc_scrubber_primary_mtrl_alpha +com.bumptech.glide.R$dimen: int notification_large_icon_height +androidx.drawerlayout.R$string: R$string() +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: long mRequested +okhttp3.Cache$Entry: okhttp3.Headers responseHeaders +androidx.preference.R$id: int content +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$attr: int chipStrokeWidth +wangdaye.com.geometricweather.R$string: int common_google_play_services_notification_channel_name +okhttp3.HttpUrl: okhttp3.HttpUrl get(java.net.URL) +androidx.lifecycle.extensions.R$id: int tag_accessibility_pane_title +cyanogenmod.app.suggest.ApplicationSuggestion$1: cyanogenmod.app.suggest.ApplicationSuggestion createFromParcel(android.os.Parcel) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: java.lang.Object leaveTransform(java.lang.Object) +com.google.android.material.slider.RangeSlider: void setEnabled(boolean) +androidx.constraintlayout.widget.R$attr: int alertDialogTheme +okhttp3.HttpUrl$Builder: java.lang.String toString() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +com.tencent.bugly.proguard.j: void a(long,int) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight +com.google.android.material.R$dimen: int abc_action_bar_overflow_padding_start_material +com.google.android.material.slider.BaseSlider: int getFocusedThumbIndex() +androidx.constraintlayout.widget.R$attr: int layout_constraintTop_toTopOf +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setForecastHourly(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean) +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$attr: int colorControlActivated +androidx.lifecycle.extensions.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$anim: int fragment_manange_enter +okhttp3.Dispatcher: java.util.Deque readyAsyncCalls +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String BriefPhrase +okhttp3.internal.connection.RouteSelector: void connectFailed(okhttp3.Route,java.io.IOException) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: java.lang.String Unit +wangdaye.com.geometricweather.R$drawable: int notification_tile_bg +androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Tab +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeCloudCover() +org.greenrobot.greendao.DaoException: DaoException(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_DropDownUp +okio.Buffer: long size() +com.xw.repo.bubbleseekbar.R$attr: int closeItemLayout +androidx.appcompat.R$id: int accessibility_custom_action_19 +androidx.preference.R$attr: int listChoiceIndicatorSingleAnimated +okhttp3.logging.HttpLoggingInterceptor$Level: HttpLoggingInterceptor$Level(java.lang.String,int) +cyanogenmod.platform.R$attr +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +cyanogenmod.weather.RequestInfo: RequestInfo(cyanogenmod.weather.RequestInfo$1) +cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,int,int) +androidx.preference.R$styleable: int Toolbar_logoDescription +wangdaye.com.geometricweather.R$attr: int tabBackground +okio.SegmentedByteString: okio.ByteString toAsciiLowercase() +androidx.constraintlayout.widget.R$drawable: int abc_spinner_mtrl_am_alpha +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: java.util.concurrent.atomic.AtomicReference upstream +com.google.android.material.R$styleable: int Variant_region_widthMoreThan +androidx.preference.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +wangdaye.com.geometricweather.R$drawable: int shortcuts_haze +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_textLocale +cyanogenmod.app.CustomTile$ExpandedGridItem: CustomTile$ExpandedGridItem() +androidx.appcompat.R$color: int primary_text_default_material_light +com.tencent.bugly.proguard.j: byte[] b() +wangdaye.com.geometricweather.R$attr: int snackbarStyle +wangdaye.com.geometricweather.R$id: int backBtn +cyanogenmod.providers.CMSettings$NameValueCache: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) +wangdaye.com.geometricweather.R$string: int content_des_drag_flag +com.google.android.material.R$styleable: int ActionBar_displayOptions +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_enabled +james.adaptiveicon.R$dimen: int notification_large_icon_height +androidx.hilt.work.R$anim +com.bumptech.glide.R$styleable: int GradientColor_android_startX +androidx.customview.R$string: int status_bar_notification_info_overflow +com.turingtechnologies.materialscrollbar.R$string: int abc_activity_chooser_view_see_all +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setPathSegment(int,java.lang.String) +cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CONTENT_URI +androidx.vectordrawable.R$attr: int fontProviderFetchStrategy +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.ICMHardwareService getService() +okhttp3.logging.LoggingEventListener: void responseHeadersEnd(okhttp3.Call,okhttp3.Response) +com.google.android.material.R$string: int abc_prepend_shortcut_label +okhttp3.internal.connection.StreamAllocation: java.net.Socket deallocate(boolean,boolean,boolean) +com.google.android.material.transformation.TransformationChildLayout: TransformationChildLayout(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean done +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.appcompat.widget.AppCompatImageButton: void setImageURI(android.net.Uri) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache +androidx.hilt.R$styleable: int FontFamilyFont_fontVariationSettings +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer LEFT_VALUE +wangdaye.com.geometricweather.main.utils.MainPalette +com.google.gson.stream.JsonReader: int nextNonWhitespace(boolean) +james.adaptiveicon.R$attr: int queryBackground +cyanogenmod.hardware.CMHardwareManager: int FEATURE_HIGH_TOUCH_SENSITIVITY +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +androidx.constraintlayout.widget.R$id: int scrollIndicatorUp +okhttp3.WebSocket: boolean send(okio.ByteString) +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: android.os.IBinder asBinder() +androidx.constraintlayout.widget.R$attr: int layout_constraintTag +wangdaye.com.geometricweather.R$id: int cpv_hex +james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlHighlight +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_bias com.baidu.location.e.l$b: java.util.List a(org.json.JSONObject,java.lang.String,int) -org.greenrobot.greendao.AbstractDaoSession: void refresh(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String getWeather() -wangdaye.com.geometricweather.R$attr: int colorControlHighlight -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getSnowPrecipitation() -androidx.activity.ComponentActivity -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_onClick -com.jaredrummler.android.colorpicker.R$attr: int actionMenuTextColor -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_logo -cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri COMPONENTS_URI -wangdaye.com.geometricweather.R$styleable: int MenuView_android_horizontalDivider -android.didikee.donate.R$dimen: int abc_search_view_preferred_height -wangdaye.com.geometricweather.R$id: int widget_clock_day_wind -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty1H -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -okhttp3.internal.cache.DiskLruCache$Snapshot -wangdaye.com.geometricweather.R$string: int content_desc_powered_by -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: int a -wangdaye.com.geometricweather.R$dimen: int abc_dialog_min_width_minor -cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup getProfileGroup(java.util.UUID) -org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Iterable,boolean) -com.google.gson.JsonSyntaxException -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCeiling(java.lang.Float) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -androidx.appcompat.widget.SearchView: void setAppSearchData(android.os.Bundle) -androidx.vectordrawable.R$dimen: int compat_button_padding_vertical_material -com.jaredrummler.android.colorpicker.R$color: int abc_tint_seek_thumb -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: io.reactivex.Observer downstream -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display1 -okio.InflaterSource: long read(okio.Buffer,long) -wangdaye.com.geometricweather.R$color: int material_blue_grey_900 -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeProcessingListener mThemeProcessingListener -cyanogenmod.weather.WeatherInfo$DayForecast: java.lang.String toString() -androidx.legacy.coreutils.R$drawable: int notification_bg_normal_pressed -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: java.lang.Object poll() -wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_toLeftOf -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_elevation -james.adaptiveicon.R$attr: int font -okhttp3.internal.tls.DistinguishedNameParser: char[] chars -retrofit2.Response: okhttp3.Response rawResponse -cyanogenmod.themes.ThemeManager$1$2: cyanogenmod.themes.ThemeManager$1 this$1 -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: int CELSIUS -com.tencent.bugly.crashreport.crash.CrashDetailBean: boolean d -okio.Buffer: okio.Buffer$UnsafeCursor readUnsafe() -cyanogenmod.weather.CMWeatherManager: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener) -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_COLOR_ENHANCE -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabText -cyanogenmod.platform.Manifest$permission: Manifest$permission() -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_arrow_drop_right_black_24dp -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Counter_Overflow -wangdaye.com.geometricweather.R$string: int daytime -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_onClick -com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored -com.turingtechnologies.materialscrollbar.R$dimen: int cardview_default_radius -androidx.coordinatorlayout.R$attr: int fontVariationSettings -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: boolean isDisposed() -com.google.android.material.R$styleable: int OnSwipe_maxAcceleration -com.google.android.gms.auth.api.signin.GoogleSignInAccount: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxBackgroundMode -cyanogenmod.providers.CMSettings$Global: int getInt(android.content.ContentResolver,java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_alpha -cyanogenmod.weather.WeatherLocation$1: cyanogenmod.weather.WeatherLocation createFromParcel(android.os.Parcel) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_textLocale -wangdaye.com.geometricweather.main.MainActivityViewModel -android.didikee.donate.R$attr: int buttonStyle -com.google.android.material.R$styleable: int[] MaterialShape -android.didikee.donate.R$attr: int expandActivityOverflowButtonDrawable -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_1 -androidx.appcompat.R$layout: int abc_activity_chooser_view_list_item -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getDescription() -androidx.vectordrawable.R$dimen: int compat_button_padding_horizontal_material -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long COMPLETE_MASK -okio.ByteString: int compareTo(java.lang.Object) -wangdaye.com.geometricweather.R$dimen: int material_helper_text_font_1_3_padding_top -retrofit2.OkHttpCall: boolean canceled -androidx.fragment.R$styleable: int FontFamilyFont_font -com.google.android.material.slider.RangeSlider: void setMinSeparationValue(float) -wangdaye.com.geometricweather.R$attr: int targetId -okhttp3.internal.http2.Http2Connection$5: java.util.List val$requestHeaders -okhttp3.internal.platform.ConscryptPlatform: java.security.Provider getProvider() -android.didikee.donate.R$style: int Theme_AppCompat_CompactMenu -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalBias -okhttp3.Cookie: java.lang.String toString(boolean) -okhttp3.internal.io.FileSystem: okio.Sink appendingSink(java.io.File) -android.didikee.donate.R$attr: int searchViewStyle -androidx.appcompat.R$styleable: int Toolbar_titleMarginTop -androidx.appcompat.R$id: int search_mag_icon -androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabBar -okhttp3.Dispatcher: java.util.concurrent.ExecutorService executorService() -james.adaptiveicon.R$drawable: int tooltip_frame_dark -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarWidgetTheme -cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationMax() -wangdaye.com.geometricweather.R$id: int showCustom -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayColorCalibration -com.tencent.bugly.crashreport.CrashReport: java.util.Map getSdkExtraData() -com.amap.api.location.AMapLocationClientOption: long getLastLocationLifeCycle() -cyanogenmod.providers.DataUsageContract: java.lang.String _ID -com.google.android.material.R$anim: int mtrl_bottom_sheet_slide_in -com.google.gson.stream.JsonReader: int PEEKED_END_OBJECT -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_min -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableStartCompat -com.amap.api.location.APSService: int b -androidx.transition.R$drawable: int notification_bg_low_pressed -com.turingtechnologies.materialscrollbar.R$attr: int buttonStyleSmall -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_showMotionSpec -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setZh_CN(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: int status -io.reactivex.internal.observers.LambdaObserver -okhttp3.internal.http2.Http2Connection: void writeWindowUpdateLater(int,long) -androidx.coordinatorlayout.R$id: int tag_accessibility_heading -okio.Buffer: long indexOfElement(okio.ByteString) -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -io.reactivex.internal.disposables.CancellableDisposable: void dispose() -wangdaye.com.geometricweather.R$string: int sp_widget_multi_city -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind wind -com.jaredrummler.android.colorpicker.R$dimen: int cpv_color_preference_large -com.google.android.material.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode -com.google.android.material.R$string: int mtrl_picker_range_header_only_end_selected -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String district -androidx.constraintlayout.widget.R$id: int visible -wangdaye.com.geometricweather.R$attr: int thumbRadius -wangdaye.com.geometricweather.R$id: int recyclerView -wangdaye.com.geometricweather.R$dimen: int notification_small_icon_background_padding -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_orientation -androidx.appcompat.R$drawable: int tooltip_frame_dark -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: AccuDailyResult$DailyForecasts$Night$Wind() -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: androidx.lifecycle.LiveData mLiveData -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_action_inline_max_width -okio.Okio$4: void timedOut() -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy -androidx.constraintlayout.widget.R$string: int abc_capital_off -androidx.appcompat.R$attr: int contentInsetEnd -com.google.android.material.button.MaterialButtonToggleGroup: void addOnButtonCheckedListener(com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener) -androidx.constraintlayout.widget.R$id: int checked -androidx.constraintlayout.widget.R$styleable: int[] AppCompatImageView -androidx.constraintlayout.widget.R$styleable: int[] KeyTimeCycle -wangdaye.com.geometricweather.R$drawable: int notif_temp_103 -androidx.appcompat.widget.ActionMenuView: void setOnMenuItemClickListener(androidx.appcompat.widget.ActionMenuView$OnMenuItemClickListener) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixTextColor -com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_material -androidx.legacy.coreutils.R$id: int notification_background -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context) -com.google.android.material.R$attr: int wavePeriod -androidx.constraintlayout.widget.R$styleable: int[] StateListDrawableItem -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_material -com.google.android.material.R$styleable: int TextAppearance_android_shadowDy -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Inverse -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: android.os.IBinder mRemote -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void dispose() -androidx.swiperefreshlayout.R$string: int status_bar_notification_info_overflow -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_legacy_text_color_selector -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.Observer downstream -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.DaoConfig config -android.didikee.donate.R$id: int bottom -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginStart -cyanogenmod.weather.WeatherInfo$Builder: int mTempUnit -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Caption -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: long serialVersionUID -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_28 -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: long serialVersionUID -okhttp3.internal.http2.Http2Reader: okhttp3.internal.http2.Hpack$Reader hpackReader -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: boolean isValid() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setUnit(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int[] Slider -wangdaye.com.geometricweather.R$drawable: int notif_temp_45 -android.didikee.donate.R$attr: int overlapAnchor -wangdaye.com.geometricweather.R$id: int async -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onDetachedFromWindow() -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_ttcIndex -androidx.appcompat.R$drawable: int abc_seekbar_tick_mark_material -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void lookupCity(cyanogenmod.weather.RequestInfo) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTag -okhttp3.internal.http2.Hpack$Reader: int dynamicTableByteCount -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_background_transition_holo_dark -okio.RealBufferedSource: long readDecimalLong() -com.turingtechnologies.materialscrollbar.R$attr: int boxStrokeWidth -okhttp3.RealCall: java.lang.Object clone() -wangdaye.com.geometricweather.R$attr: int switchPadding -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Name -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemHorizontalTranslationEnabled(boolean) -androidx.constraintlayout.widget.R$styleable: int MotionLayout_showPaths -android.didikee.donate.R$layout: int abc_action_menu_item_layout -com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$string: int feedback_text_size -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver -retrofit2.BuiltInConverters$BufferingResponseBodyConverter -androidx.core.R$id: int accessibility_custom_action_25 -okhttp3.internal.ws.RealWebSocket$CancelRunnable: okhttp3.internal.ws.RealWebSocket this$0 -wangdaye.com.geometricweather.R$attr: int motionTarget -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: void setDirection(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX) -wangdaye.com.geometricweather.R$xml: int standalone_badge -androidx.appcompat.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -androidx.preference.R$style: int AlertDialog_AppCompat -androidx.constraintlayout.widget.R$attr: int drawableTintMode -james.adaptiveicon.R$layout: int abc_popup_menu_item_layout -androidx.constraintlayout.widget.R$attr: int customBoolean -androidx.hilt.work.R$color -com.google.android.material.datepicker.MaterialCalendar -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult -com.google.android.material.R$style: int TextAppearance_AppCompat_Display2 -com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler: void handleNativeException(int,int,long,long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,int,java.lang.String,java.lang.String) -com.google.android.material.slider.Slider: java.lang.CharSequence getAccessibilityClassName() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int LIGHT_SNOW_SHOWERS -com.jaredrummler.android.colorpicker.R$integer: R$integer() -androidx.constraintlayout.widget.R$id: int alertTitle -okhttp3.internal.http.HttpHeaders: void parseChallengeHeader(java.util.List,okio.Buffer) -cyanogenmod.app.CustomTile: int describeContents() -com.tencent.bugly.proguard.ae: byte[] b(byte[]) -com.xw.repo.bubbleseekbar.R$attr: int seekBarStyle -cyanogenmod.externalviews.ExternalView$8 -com.tencent.bugly.proguard.u: long g -cyanogenmod.weather.WeatherInfo: void writeToParcel(android.os.Parcel,int) -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: int requestFusion(int) -cyanogenmod.app.ProfileGroup$Mode: ProfileGroup$Mode(java.lang.String,int) -cyanogenmod.app.suggest.ApplicationSuggestion: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_typeface -cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_VIBRATE -com.google.android.material.R$style: int Theme_MaterialComponents_Light_Bridge -wangdaye.com.geometricweather.R$string: int key_live_wallpaper -com.tencent.bugly.crashreport.crash.e: void a(com.tencent.bugly.crashreport.common.strategy.StrategyBean) -androidx.appcompat.R$attr: int gapBetweenBars -com.jaredrummler.android.colorpicker.R$attr: int alpha -androidx.appcompat.R$layout: int notification_template_part_time -cyanogenmod.themes.ThemeManager: void registerProcessingListener(cyanogenmod.themes.ThemeManager$ThemeProcessingListener) -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial -io.reactivex.internal.disposables.DisposableHelper: boolean isDisposed() -com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreference_Material -androidx.drawerlayout.R$attr: R$attr() -com.google.android.material.R$attr: int thumbStrokeWidth -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored -wangdaye.com.geometricweather.R$string: int about_circular_progress_view -wangdaye.com.geometricweather.R$color: int abc_hint_foreground_material_dark -com.amap.api.fence.PoiItem: void setPoiId(java.lang.String) -retrofit2.Converter$Factory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -com.bumptech.glide.Priority: com.bumptech.glide.Priority IMMEDIATE -androidx.appcompat.widget.SwitchCompat: void setSplitTrack(boolean) -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityDestroyed(android.app.Activity) -androidx.coordinatorlayout.R$attr: int keylines -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_percent -com.tencent.bugly.crashreport.biz.b: long f() -com.google.android.material.R$styleable: int ConstraintSet_layout_editor_absoluteX -androidx.coordinatorlayout.R$drawable: int notification_bg_low -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_pixel -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Filter -com.google.android.material.R$dimen: int abc_panel_menu_list_width -androidx.vectordrawable.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String UVIndexText -android.didikee.donate.R$attr: int panelMenuListWidth -com.google.android.material.R$styleable: int ActionBar_contentInsetStart -wangdaye.com.geometricweather.R$color: int colorSearchBarBackground_dark -androidx.appcompat.R$styleable: int SwitchCompat_track -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCityId -wangdaye.com.geometricweather.R$id: int accessibility_action_clickable_span -androidx.recyclerview.R$id: int icon_group -cyanogenmod.app.suggest.IAppSuggestManager$Stub: IAppSuggestManager$Stub() -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_multiChoiceItemLayout -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_keyline -com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderCerts -com.google.android.material.slider.BaseSlider: void setTrackHeight(int) -wangdaye.com.geometricweather.R$layout: int cpv_preference_circle_large -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver -androidx.viewpager2.R$styleable: int GradientColor_android_startColor -com.amap.api.fence.GeoFenceClient: void setGeoFenceAble(java.lang.String,boolean) -wangdaye.com.geometricweather.R$styleable: int Preference_android_key -wangdaye.com.geometricweather.R$string: int path_password_strike_through -com.xw.repo.bubbleseekbar.R$string: int abc_toolbar_collapse_description -cyanogenmod.providers.WeatherContract$WeatherColumns -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getEndIconContentDescription() -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.functions.Function mapper -androidx.constraintlayout.widget.R$color: int highlighted_text_material_dark -android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorSize() -retrofit2.http.GET: java.lang.String value() -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getLogo() -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit F +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight +okhttp3.internal.http2.Http2: java.lang.String formatFlags(byte,byte) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerNext() +wangdaye.com.geometricweather.R$id: int withinBounds +okhttp3.Cache$Entry: java.util.List readCertificateList(okio.BufferedSource) +androidx.appcompat.R$attr: int drawerArrowStyle +androidx.activity.R$id: int tag_accessibility_pane_title +com.bumptech.glide.R$id: int notification_main_column +android.didikee.donate.R$string: int abc_searchview_description_voice +androidx.appcompat.widget.SwitchCompat: boolean getTargetCheckedState() +androidx.preference.R$layout: int preference_dropdown_material +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: int capacityHint +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: AccuAlertResult() +androidx.transition.R$attr: int fontProviderQuery +cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onCustomTilePosted +cyanogenmod.externalviews.ExternalView$3: cyanogenmod.externalviews.ExternalView this$0 +wangdaye.com.geometricweather.R$styleable: int[] KeyFrame +cyanogenmod.weather.WeatherLocation: java.lang.String access$102(cyanogenmod.weather.WeatherLocation,java.lang.String) +com.tencent.bugly.crashreport.crash.h5.a +com.google.android.material.R$attr: int subtitleTextAppearance +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: long serialVersionUID +androidx.preference.R$styleable: int Preference_enableCopying +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeApparentTemperature() +wangdaye.com.geometricweather.db.entities.AlertEntity: void setColor(int) +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataSpinner +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int SnowProbability +com.tencent.bugly.proguard.p: int a(com.tencent.bugly.proguard.p,java.lang.String,java.lang.String,java.lang.String[],com.tencent.bugly.proguard.o) +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstHorizontalBias +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleMargin +okhttp3.logging.LoggingEventListener: void dnsStart(okhttp3.Call,java.lang.String) +com.turingtechnologies.materialscrollbar.R$color: int primary_text_disabled_material_dark +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +androidx.constraintlayout.motion.widget.MotionLayout: void setTransition(androidx.constraintlayout.motion.widget.MotionScene$Transition) +wangdaye.com.geometricweather.R$attr: int multiChoiceItemLayout +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView_Menu +io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.CompletableSource) +androidx.preference.R$color: int bright_foreground_disabled_material_dark +androidx.customview.R$styleable: R$styleable() +okhttp3.internal.Internal: okhttp3.internal.connection.RouteDatabase routeDatabase(okhttp3.ConnectionPool) +com.amap.api.location.AMapLocationClientOption: boolean isKillProcess() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_44 +com.turingtechnologies.materialscrollbar.R$string: int path_password_eye +cyanogenmod.app.Profile: int getProfileType() +com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context,android.util.AttributeSet) +com.google.android.material.textfield.TextInputLayout: void setEndIconOnClickListener(android.view.View$OnClickListener) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_height +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: MfForecastV2Result$Geometry() +wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_4_material +james.adaptiveicon.R$style: int Platform_V21_AppCompat +androidx.hilt.R$style: int TextAppearance_Compat_Notification_Line2 +io.reactivex.observers.DisposableObserver: DisposableObserver() +com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_icon_width +com.amap.api.location.AMapLocation: int describeContents() +androidx.preference.R$style: int Widget_AppCompat_Button_Small +androidx.activity.R$id: int tag_screen_reader_focusable +com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage[] values() +cyanogenmod.app.ProfileGroup: void applyOverridesToNotification(android.app.Notification) +cyanogenmod.externalviews.ExternalView: void setProviderComponent(android.content.ComponentName) +wangdaye.com.geometricweather.R$styleable: int Slider_trackColorActive +androidx.preference.R$string: int abc_searchview_description_search +com.google.android.material.R$dimen: int mtrl_bottomappbar_height +com.google.android.material.R$dimen: int mtrl_navigation_item_icon_size +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: ObservableThrottleFirstTimed$DebounceTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker) +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY +wangdaye.com.geometricweather.R$id: int star_2 +androidx.preference.R$styleable: int StateListDrawable_android_constantSize +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.appcompat.R$styleable: int GradientColor_android_type +retrofit2.Response: java.lang.String toString() +cyanogenmod.providers.CMSettings$System: java.lang.String PROXIMITY_ON_WAKE +okio.Buffer: int REPLACEMENT_CHARACTER +com.google.android.material.R$styleable: int[] RadialViewGroup +wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_xml +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_27 +com.xw.repo.bubbleseekbar.R$attr: int toolbarStyle +androidx.appcompat.R$id: int action_text +androidx.appcompat.resources.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.R$string: int visibility +androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_elevation +okhttp3.Request$Builder: okhttp3.Request$Builder get() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherText(java.lang.String) +com.google.android.material.R$styleable: int KeyCycle_waveShape +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription this$0 +com.amap.api.location.CoordinateConverter: com.amap.api.location.CoordinateConverter$CoordType c +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String moldDescription +com.tencent.bugly.proguard.k +wangdaye.com.geometricweather.R$styleable: int[] BackgroundStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean getBrandInfo() +androidx.constraintlayout.widget.R$dimen: int tooltip_corner_radius +com.google.android.material.chip.Chip: void setCloseIconPressed(boolean) +com.tencent.bugly.crashreport.common.info.PlugInBean +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +wangdaye.com.geometricweather.R$attr: int dayTodayStyle +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: long beginTime +androidx.appcompat.R$dimen: int abc_dialog_padding_top_material +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getHaloTintList() +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.location.services.LocationService: void cancel() +com.google.android.material.R$style: int Base_Widget_AppCompat_ListView_Menu +wangdaye.com.geometricweather.R$attr: int boxStrokeWidthFocused +com.google.android.gms.base.R$attr: int imageAspectRatio +androidx.vectordrawable.animated.R$drawable: int notification_bg_normal_pressed +james.adaptiveicon.R$dimen: int abc_disabled_alpha_material_dark +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: int getSuggestedMinimumHeight() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Medium_Inverse +cyanogenmod.app.Profile: int getNotificationLightMode() +androidx.constraintlayout.widget.R$id: int uniform +androidx.preference.R$bool: R$bool() +com.google.android.material.R$attr: int mock_showLabel +androidx.appcompat.R$id: int right_icon +okhttp3.internal.io.FileSystem$1: boolean exists(java.io.File) +com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalGap +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +wangdaye.com.geometricweather.R$styleable: int[] BottomSheetBehavior_Layout +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status RUNNING +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog +androidx.work.R$integer: R$integer() +james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode WIND +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setProvince(java.lang.String) +wangdaye.com.geometricweather.R$id: int item_aqi_content +com.turingtechnologies.materialscrollbar.R$attr: int titleTextAppearance +com.amap.api.fence.DistrictItem: void setDistrictName(java.lang.String) +io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicReference boundaryObserver +com.tencent.bugly.crashreport.crash.b: void a(boolean,java.util.List) +com.google.android.material.chip.Chip: void setCheckedIconTint(android.content.res.ColorStateList) +com.tencent.bugly.proguard.am: void a(com.tencent.bugly.proguard.j) +cyanogenmod.externalviews.ExternalView$5: ExternalView$5(cyanogenmod.externalviews.ExternalView) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: double Value +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundTint +androidx.swiperefreshlayout.R$layout: int notification_template_icon_group +androidx.lifecycle.Lifecycle: void removeObserver(androidx.lifecycle.LifecycleObserver) +james.adaptiveicon.R$dimen: int compat_button_padding_vertical_material +androidx.preference.R$styleable: int StateListDrawable_android_variablePadding +com.google.android.material.R$color: int design_default_color_on_primary +com.google.android.material.slider.BaseSlider: void setHaloRadiusResource(int) +okhttp3.EventListener$1 +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: Minutely(java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float o3 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric() +cyanogenmod.app.Profile$ProfileTrigger: void getXmlString(java.lang.StringBuilder,android.content.Context) +com.google.android.material.R$styleable: int TextInputLayout_counterOverflowTextAppearance +cyanogenmod.profiles.RingModeSettings$1: cyanogenmod.profiles.RingModeSettings createFromParcel(android.os.Parcel) +com.amap.api.location.AMapLocationClientOption: long getGpsFirstTimeout() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroupForPackage +androidx.appcompat.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.R$styleable: int Preference_android_selectable +androidx.preference.R$id: int async +com.amap.api.location.AMapLocationClientOption: void setScanWifiInterval(long) +androidx.preference.R$attr: int actionBarTheme +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW_SHOWERS +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sUriValidator +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String zh_CN +wangdaye.com.geometricweather.R$styleable: int SearchView_closeIcon +retrofit2.ServiceMethod: java.lang.Object invoke(java.lang.Object[]) +androidx.constraintlayout.widget.R$attr: int showText +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric Metric +com.xw.repo.bubbleseekbar.R$attr: int layout_insetEdge +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableLeft +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +wangdaye.com.geometricweather.R$styleable: int Fragment_android_id +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setCity_code(int) +cyanogenmod.providers.ThemesContract$ThemesColumns: ThemesContract$ThemesColumns() +androidx.lifecycle.extensions.R$id: int italic +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeBackground +io.reactivex.internal.observers.DeferredScalarDisposable: void clear() +okhttp3.internal.ws.RealWebSocket: void connect(okhttp3.OkHttpClient) +okhttp3.MultipartBody$Builder: java.util.List parts +com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String g(android.content.Context) +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_textAppearance +wangdaye.com.geometricweather.R$layout: int widget_text +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showColorShades +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro moon() +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +androidx.appcompat.widget.SearchView: SearchView(android.content.Context,android.util.AttributeSet) +androidx.hilt.work.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRealFeelTemperature(java.lang.Integer) +androidx.dynamicanimation.R$id: int tag_unhandled_key_listeners +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean isDisposed() +com.google.android.gms.location.zzo +com.bumptech.glide.integration.okhttp.R$id: int action_divider +android.didikee.donate.R$color: int abc_background_cache_hint_selector_material_light +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_3 +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_logoDescription +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_LIFE_DETAILS +com.google.android.material.R$anim: int design_bottom_sheet_slide_out +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig minutelyEntityDaoConfig +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabTextStyle +androidx.appcompat.R$id: int dialog_button +com.jaredrummler.android.colorpicker.R$attr: int navigationContentDescription +androidx.preference.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +com.tencent.bugly.proguard.ak: void a(com.tencent.bugly.proguard.j) +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.hilt.R$layout: int notification_action +com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat_Light +androidx.constraintlayout.widget.R$attr: int crossfade +androidx.appcompat.resources.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum +androidx.activity.R$id: int dialog_button +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_NULL_SHA +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginBottom +okio.Timeout: okio.Timeout NONE +wangdaye.com.geometricweather.background.polling.permanent.observer.TimeObserverService: TimeObserverService() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogTheme +com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Toolbar +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getCounterOverflowDescription() +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderFetchTimeout +cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.CustomTile getCustomTile() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer RIGHT_CLOSE +wangdaye.com.geometricweather.db.entities.MinutelyEntity: boolean getDaylight() +androidx.constraintlayout.widget.R$styleable: int View_paddingStart +android.didikee.donate.R$attr: int textAppearanceListItem +cyanogenmod.externalviews.IExternalViewProvider$Stub +wangdaye.com.geometricweather.R$attr: int summaryOn +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_font +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onComplete() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textColorSearchUrl +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderFetchStrategy +android.didikee.donate.R$styleable: int[] View +cyanogenmod.weather.RequestInfo: android.location.Location getLocation() +com.tencent.bugly.crashreport.crash.h5.a: long j +com.google.android.material.R$dimen: int mtrl_chip_pressed_translation_z +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_thickness +com.tencent.bugly.crashreport.common.info.a: void b(boolean) +com.tencent.bugly.crashreport.crash.jni.b: java.lang.String a(java.lang.String) +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State RESUMED +com.google.android.material.internal.CheckableImageButton: void setChecked(boolean) +okhttp3.FormBody: java.lang.String name(int) +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_function_shortcut_label +com.google.android.material.R$styleable: int Constraint_android_layout_width +com.jaredrummler.android.colorpicker.R$attr: int backgroundSplit +retrofit2.BuiltInConverters$UnitResponseBodyConverter +wangdaye.com.geometricweather.settings.dialogs.WechatDonateDialog: WechatDonateDialog() +com.google.android.material.transformation.TransformationChildCard: TransformationChildCard(android.content.Context) +okhttp3.RequestBody: void writeTo(okio.BufferedSink) +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: CMSettings$InclusiveFloatRangeValidator(float,float) +androidx.viewpager2.R$drawable: int notification_action_background +com.bumptech.glide.R$styleable: int CoordinatorLayout_statusBarBackground +com.google.android.gms.base.R$string +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setFeelsLike(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean) +androidx.constraintlayout.widget.R$attr: int flow_verticalStyle +androidx.viewpager2.R$styleable: int GradientColor_android_endX +com.google.android.material.R$dimen: int compat_button_padding_horizontal_material +okhttp3.Cookie: int dateCharacterOffset(java.lang.String,int,int,boolean) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_dd +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_picker_background_inset +okio.Buffer: boolean rangeEquals(long,okio.ByteString) +androidx.viewpager2.R$string: int status_bar_notification_info_overflow +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_RECENT_BUTTON +android.didikee.donate.R$id: int never +wangdaye.com.geometricweather.R$color: int abc_background_cache_hint_selector_material_dark +okhttp3.internal.Util: java.net.InetAddress decodeIpv6(java.lang.String,int,int) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeShareDrawable +com.google.android.material.R$layout: int custom_dialog +com.google.android.material.R$id: int largeLabel +wangdaye.com.geometricweather.R$id: int sawtooth +wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacingVertical +okio.ForwardingSource: okio.Source delegate() +wangdaye.com.geometricweather.R$styleable: int[] Transition +com.xw.repo.bubbleseekbar.R$color: int error_color_material_light +androidx.appcompat.resources.R$attr: int fontProviderFetchStrategy +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +com.google.android.material.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +android.support.v4.os.IResultReceiver$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +okhttp3.TlsVersion: okhttp3.TlsVersion[] $VALUES +com.tencent.bugly.proguard.y: android.content.Context j +wangdaye.com.geometricweather.R$anim: int abc_tooltip_enter +cyanogenmod.app.IProfileManager$Stub$Proxy: android.os.IBinder mRemote +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Headline +androidx.hilt.work.R$styleable: int GradientColorItem_android_color +androidx.vectordrawable.R$styleable: int GradientColor_android_tileMode +com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$color: int secondary_text_default_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid TotalLiquid +com.jaredrummler.android.colorpicker.ColorPanelView: int getBorderColor() +com.amap.api.location.LocationManagerBase +androidx.preference.R$integer: int status_bar_notification_info_maxnum +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_contentDescription +okhttp3.internal.Util: okhttp3.ResponseBody EMPTY_RESPONSE +com.turingtechnologies.materialscrollbar.R$styleable: int[] TextAppearance +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Indeterminate +com.google.android.material.R$id: int material_textinput_timepicker +wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_night +androidx.appcompat.R$color: int bright_foreground_inverse_material_light +retrofit2.Platform: boolean isDefaultMethod(java.lang.reflect.Method) +com.amap.api.location.AMapLocationClientOption: boolean isOnceLocation() +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality +retrofit2.ParameterHandler$QueryName: void apply(retrofit2.RequestBuilder,java.lang.Object) +androidx.lifecycle.Observer +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_Solid +okhttp3.ConnectionSpec: boolean equals(java.lang.Object) +com.google.android.material.R$attr: int materialCalendarHeaderConfirmButton +wangdaye.com.geometricweather.R$style: int Platform_V25_AppCompat_Light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: int UnitType +android.didikee.donate.R$style: int Platform_V21_AppCompat +com.xw.repo.bubbleseekbar.R$styleable: int[] View +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance +okhttp3.internal.http2.Http2Connection: int AWAIT_PING +com.amap.api.location.LocationManagerBase: boolean isStarted() +androidx.preference.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabBar +cyanogenmod.app.CustomTile$RemoteExpandedStyle: void setRemoteViews(android.widget.RemoteViews) +com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface getInstance(com.tencent.bugly.crashreport.CrashReport$WebViewInterface) +androidx.preference.R$dimen: int abc_text_size_title_material +androidx.preference.R$styleable: int View_android_theme +io.reactivex.Observable: io.reactivex.Completable switchMapCompletable(io.reactivex.functions.Function) +androidx.constraintlayout.widget.R$id: int action_container +androidx.lifecycle.extensions.R$id: int tag_accessibility_clickable_spans +james.adaptiveicon.R$attr: int overlapAnchor +com.google.android.material.R$id: int cos com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTint -androidx.appcompat.R$styleable: int FontFamilyFont_android_ttcIndex -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_Solid -com.google.android.material.chip.ChipGroup: int getCheckedChipId() -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupMenu_Overflow -androidx.preference.R$styleable: int SearchView_searchHintIcon -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,byte[],int,int) -com.tencent.bugly.crashreport.common.info.a: java.lang.String I -wangdaye.com.geometricweather.R$color: int mtrl_btn_ripple_color -james.adaptiveicon.R$color: int primary_text_default_material_light -androidx.preference.R$styleable: int[] ButtonBarLayout -androidx.constraintlayout.widget.R$attr: int iconTint -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Chip -retrofit2.converter.gson.GsonConverterFactory: GsonConverterFactory(com.google.gson.Gson) -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getThumbTintList() -android.didikee.donate.R$id: int right_side -cyanogenmod.weatherservice.WeatherProviderService: void attachBaseContext(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator -com.amap.api.location.AMapLocation: int LOCATION_TYPE_CELL -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_elevation -wangdaye.com.geometricweather.R$drawable: int ic_delete -com.turingtechnologies.materialscrollbar.R$id: int scrollIndicatorUp -com.google.android.material.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.R$color: int mtrl_calendar_item_stroke_color -androidx.preference.R$styleable: int MultiSelectListPreference_android_entries -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: boolean isDisposed() -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getShortUVDescription() -wangdaye.com.geometricweather.R$id: int material_clock_period_am_button -androidx.preference.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -androidx.vectordrawable.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvLevel(java.lang.String) -com.google.android.material.R$styleable: int Constraint_android_translationX -com.jaredrummler.android.colorpicker.R$color: int dim_foreground_material_light -cyanogenmod.os.Concierge: cyanogenmod.os.Concierge$ParcelInfo prepareParcel(android.os.Parcel) -cyanogenmod.app.Profile: cyanogenmod.app.Profile fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource CN -androidx.preference.R$attr: int ratingBarStyleIndicator -wangdaye.com.geometricweather.R$attr: int height -com.tencent.bugly.BuglyStrategy: boolean isEnableNativeCrashMonitor() -com.tencent.bugly.crashreport.common.info.b: long m() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String name -wangdaye.com.geometricweather.R$styleable: int MenuView_android_headerBackground -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayGammaCalibration -cyanogenmod.externalviews.ExternalViewProperties: int getY() -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void dispose() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTemperature(int) -com.bumptech.glide.integration.okhttp.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Body2 -androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$styleable: int[] FontFamilyFont -com.google.android.material.R$id: int on -wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchRegionId -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather weather -com.google.android.gms.signin.internal.zab: android.os.Parcelable$Creator CREATOR -com.bumptech.glide.R$id: int icon -james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupWindow -io.reactivex.subjects.PublishSubject$PublishDisposable: boolean isDisposed() -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_36dp -wangdaye.com.geometricweather.R$integer: int cpv_default_anim_duration -android.didikee.donate.R$color: int material_blue_grey_950 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_87 -wangdaye.com.geometricweather.R$integer: int abc_config_activityShortDur -androidx.appcompat.R$dimen: int abc_text_size_small_material -com.google.android.material.R$styleable: int TextInputLayout_shapeAppearanceOverlay -james.adaptiveicon.R$styleable: int MenuItem_android_titleCondensed -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitationProbability -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitationProbability -androidx.lifecycle.Transformations$3 -androidx.cardview.widget.CardView: float getCardElevation() -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_transformPivotY -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_backgroundTintMode -com.jaredrummler.android.colorpicker.R$color: int background_material_light -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -com.amap.api.location.AMapLocation: java.lang.String o(com.amap.api.location.AMapLocation,java.lang.String) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display4 -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_query -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onError(java.lang.Throwable) -com.google.android.material.R$string -com.baidu.location.e.p: java.util.List a(org.json.JSONObject,java.lang.String,int) -android.didikee.donate.R$styleable: int[] AppCompatTheme -androidx.vectordrawable.animated.R$id: int action_text -androidx.dynamicanimation.R$string: int status_bar_notification_info_overflow -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int consumed -cyanogenmod.themes.IThemeService: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) -androidx.appcompat.R$color: int abc_primary_text_material_dark -com.xw.repo.bubbleseekbar.R$id: int shortcut -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String from -androidx.constraintlayout.widget.R$attr: int barrierAllowsGoneWidgets -androidx.appcompat.R$style: int Theme_AppCompat_Light_NoActionBar -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat -com.bumptech.glide.integration.okhttp.R$color: int notification_action_color_filter -okhttp3.internal.http2.ConnectionShutdownException -android.support.v4.os.ResultReceiver: android.support.v4.os.IResultReceiver mReceiver -androidx.appcompat.R$drawable: int abc_list_longpressed_holo -wangdaye.com.geometricweather.R$layout: int item_about_link -com.google.android.material.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.R$attr: int expandedTitleMarginEnd -wangdaye.com.geometricweather.R$styleable: int KeyPosition_framePosition -android.didikee.donate.R$attr: int thumbTintMode -androidx.appcompat.R$attr: int paddingTopNoTitle -androidx.viewpager.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dialog -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_dropdownPreferenceStyle -androidx.coordinatorlayout.R$attr: int layout_behavior -androidx.preference.R$attr: int listPreferredItemHeightLarge -androidx.lifecycle.ProcessLifecycleOwnerInitializer: android.database.Cursor query(android.net.Uri,java.lang.String[],java.lang.String,java.lang.String[],java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$dimen: int abc_text_size_button_material -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource source +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_gradientRadius +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeColor(int) +com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingStart +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.dynamicanimation.R$id: int line1 +cyanogenmod.providers.CMSettings$Secure$2: java.lang.String mDelimiter +james.adaptiveicon.R$styleable: int AlertDialog_singleChoiceItemLayout +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeCloudCover(java.lang.Integer) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_height +com.google.android.material.slider.Slider: void setValueTo(float) +cyanogenmod.hardware.CMHardwareManager: boolean setDisplayGammaCalibration(int,int[]) +wangdaye.com.geometricweather.R$style: int Animation_MaterialComponents_BottomSheetDialog +com.turingtechnologies.materialscrollbar.R$id: int split_action_bar +wangdaye.com.geometricweather.common.basic.models.weather.Alert +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +cyanogenmod.weatherservice.IWeatherProviderService$Stub: cyanogenmod.weatherservice.IWeatherProviderService asInterface(android.os.IBinder) +androidx.preference.R$dimen: int notification_action_icon_size +cyanogenmod.providers.CMSettings$Secure: long getLong(android.content.ContentResolver,java.lang.String,long) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeIndex(java.lang.Integer) +androidx.preference.R$styleable: int AppCompatTheme_windowActionBarOverlay +androidx.core.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_vertical_padding +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: android.content.IntentFilter a(com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow snow +wangdaye.com.geometricweather.R$color: int mtrl_tabs_icon_color_selector_colored +com.google.android.material.R$styleable: int RecyclerView_android_orientation +okhttp3.logging.LoggingEventListener: void connectionReleased(okhttp3.Call,okhttp3.Connection) +android.didikee.donate.R$styleable: int Toolbar_subtitleTextColor +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_backgroundSplit +com.google.android.material.R$styleable: int Constraint_layout_goneMarginStart +okhttp3.internal.cache.DiskLruCache: void validateKey(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_max +androidx.vectordrawable.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather weather +androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorGravity +com.google.android.material.R$styleable: int ImageFilterView_altSrc +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: java.lang.String Source +okhttp3.internal.cache2.Relay: long FILE_HEADER_SIZE +okio.RealBufferedSource: void readFully(byte[]) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerNext(io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryInnerObserver) +androidx.work.R$id: int forever +cyanogenmod.app.CustomTile$Builder: android.graphics.Bitmap mRemoteIcon +androidx.hilt.lifecycle.R$attr: int fontVariationSettings +androidx.appcompat.R$drawable: int abc_scrubber_primary_mtrl_alpha +retrofit2.ParameterHandler: ParameterHandler() +wangdaye.com.geometricweather.R$styleable: int[] TabItem +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowDy +com.google.android.material.R$styleable: int RadialViewGroup_materialCircleRadius +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light +androidx.preference.R$style: int TextAppearance_AppCompat_Display4 +wangdaye.com.geometricweather.R$integer: int mtrl_chip_anim_duration +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Display_TextInputEditText +okhttp3.internal.http2.Header: okio.ByteString TARGET_PATH +com.google.android.material.R$attr: int passwordToggleTint +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowNoTitle +wangdaye.com.geometricweather.R$layout: int preference_widget_seekbar_material +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: boolean active +retrofit2.HttpServiceMethod: okhttp3.Call$Factory callFactory +com.xw.repo.bubbleseekbar.R$attr: int autoSizeTextType +okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_ENCODE_SET_URI +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: java.util.concurrent.atomic.AtomicBoolean once +com.google.android.material.chip.Chip: void setChipIconVisible(boolean) +androidx.loader.R$styleable: int ColorStateListItem_alpha +okhttp3.internal.http2.Http2Reader: void readPushPromise(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_SLOW_SAMPLES +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSubtitle1 +com.tencent.bugly.proguard.u: void a(long,boolean) +wangdaye.com.geometricweather.R$layout: int material_clockface_textview +wangdaye.com.geometricweather.R$layout: int abc_activity_chooser_view +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextColor +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_state_list_animator +com.google.android.material.chip.Chip: void setChipIconEnabledResource(int) +james.adaptiveicon.R$styleable: int AppCompatTheme_listPopupWindowStyle +okhttp3.internal.cache.DiskLruCache$Entry: java.io.IOException invalidLengths(java.lang.String[]) +cyanogenmod.externalviews.ExternalViewProperties: boolean isVisible() +wangdaye.com.geometricweather.R$attr: int controlBackground +com.google.android.material.R$interpolator: int mtrl_fast_out_linear_in +com.tencent.bugly.crashreport.biz.UserInfoBean: void writeToParcel(android.os.Parcel,int) +com.google.android.material.R$attr: int editTextBackground +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: int phenomenoMaxColorId +com.amap.api.location.UmidtokenInfo$a: UmidtokenInfo$a() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.X509TrustManager) +io.reactivex.Observable: io.reactivex.Observable rangeLong(long,long) +androidx.preference.R$style: int TextAppearance_AppCompat_Medium_Inverse +com.google.android.material.R$styleable: int BottomAppBar_fabAnimationMode +okio.DeflaterSink: void finishDeflate() +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean) +androidx.recyclerview.R$color: int secondary_text_default_material_light +retrofit2.ParameterHandler$QueryMap: ParameterHandler$QueryMap(java.lang.reflect.Method,int,retrofit2.Converter,boolean) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +android.didikee.donate.R$styleable: int Toolbar_navigationIcon +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_textEndPadding +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7 +com.google.gson.FieldNamingPolicy$4: java.lang.String translateName(java.lang.reflect.Field) +com.amap.api.fence.PoiItem: void setProvince(java.lang.String) +io.reactivex.Observable: io.reactivex.Observable flatMapIterable(io.reactivex.functions.Function) +com.google.android.material.bottomappbar.BottomAppBar: void setFabCradleMargin(float) +com.google.android.material.R$styleable: int PropertySet_android_visibility +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Dialog +androidx.preference.R$styleable: int RecyclerView_android_orientation +cyanogenmod.app.IProfileManager: android.app.NotificationGroup[] getNotificationGroups() +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: MfWarningsResult$PhenomenonMaxColor() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_percent +com.jaredrummler.android.colorpicker.R$drawable: int notification_action_background +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUpdateTime(long) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Inverse +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogStyle +android.didikee.donate.R$color: int abc_tint_default +com.amap.api.location.AMapLocationClientOption: boolean isSensorEnable() +androidx.core.os.CancellationSignal: void setOnCancelListener(androidx.core.os.CancellationSignal$OnCancelListener) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: double Value +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub +androidx.appcompat.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +androidx.constraintlayout.widget.Placeholder: android.view.View getContent() +retrofit2.KotlinExtensions$await$2$2: void onResponse(retrofit2.Call,retrofit2.Response) +james.adaptiveicon.R$attr: int titleMargins +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: long contentLength() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_EditText +com.google.android.material.R$styleable: int KeyCycle_android_rotationY +androidx.versionedparcelable.ParcelImpl +androidx.preference.R$style: int Theme_AppCompat_Light_NoActionBar +androidx.appcompat.widget.AppCompatTextView: java.lang.CharSequence getText() +okio.Buffer: int read(byte[],int,int) +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,java.io.File) +androidx.vectordrawable.animated.R$dimen: int notification_top_pad +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void removeScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +android.didikee.donate.R$color: int abc_btn_colored_text_material +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +okhttp3.internal.http2.Http2Writer: void synReply(boolean,int,java.util.List) +androidx.lifecycle.Observer: void onChanged(java.lang.Object) +wangdaye.com.geometricweather.remoteviews.config.Hilt_DailyTrendWidgetConfigActivity: Hilt_DailyTrendWidgetConfigActivity() +com.xw.repo.bubbleseekbar.R$attr: int barLength +retrofit2.RequestBuilder: void addPathParam(java.lang.String,java.lang.String,boolean) +com.baidu.location.indoor.mapversion.c.a$d: double b(double) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +androidx.work.R$color +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_inverse_material_light +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List advices +com.google.android.material.R$dimen: int abc_control_padding_material +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.LocationEntity) +com.google.android.material.R$attr: int itemSpacing +wangdaye.com.geometricweather.R$dimen: int widget_grid_4 +okio.BufferedSource: long readLong() +com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: java.util.concurrent.atomic.AtomicReference queue +james.adaptiveicon.R$id: int async +com.google.android.material.R$attr: int materialCalendarMonth +okio.Buffer$UnsafeCursor: long expandBuffer(int) +okhttp3.internal.http2.Http2Connection: int openStreamCount() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.google.android.material.R$dimen: int mtrl_btn_focused_z +android.support.v4.os.IResultReceiver$Stub +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: long serialVersionUID +androidx.viewpager.widget.ViewPager$SavedState +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_weight +androidx.legacy.coreutils.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$color: int mtrl_btn_text_btn_ripple_color +androidx.constraintlayout.widget.R$styleable: int Spinner_android_dropDownWidth +androidx.constraintlayout.widget.R$style: int Platform_Widget_AppCompat_Spinner +androidx.constraintlayout.widget.R$attr: int titleMarginEnd +okio.Options: okio.ByteString get(int) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_9 +okhttp3.internal.ws.WebSocketWriter: okio.Buffer sinkBuffer +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_icon +com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Dialog +com.google.android.material.card.MaterialCardView: android.graphics.RectF getBoundsAsRectF() +com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Determinate +androidx.core.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.R$string: int action_about +androidx.constraintlayout.widget.R$styleable: int TextAppearance_fontFamily +com.turingtechnologies.materialscrollbar.R$attr: int firstBaselineToTopHeight +wangdaye.com.geometricweather.R$string: int settings_title_service_provider +com.google.android.material.R$attr: int actionTextColorAlpha +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void cancelAll() +androidx.lifecycle.SavedStateHandle: androidx.savedstate.SavedStateRegistry$SavedStateProvider savedStateProvider() +android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +androidx.constraintlayout.widget.R$color: int abc_hint_foreground_material_dark +androidx.recyclerview.R$color: int notification_action_color_filter +cyanogenmod.os.Concierge$ParcelInfo: int mSizePosition +com.google.android.material.chip.Chip: void setChipIconVisible(int) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator +wangdaye.com.geometricweather.R$drawable: int flag_ja +retrofit2.RequestFactory$Builder: okhttp3.Headers headers +android.didikee.donate.R$layout: int abc_list_menu_item_checkbox +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_cut_mtrl_alpha +wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_vertical_setting +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_RINGTONE +com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Widget_AppCompat_Toolbar +okio.AsyncTimeout: okio.AsyncTimeout head +com.tencent.bugly.proguard.p: int a(java.lang.String,java.lang.String,java.lang.String[],com.tencent.bugly.proguard.o) +androidx.preference.R$style: int Base_TextAppearance_AppCompat +com.turingtechnologies.materialscrollbar.R$string: R$string() +androidx.work.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig chineseCityEntityDaoConfig +androidx.vectordrawable.R$id: int accessibility_custom_action_7 +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_transitionEasing +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitation +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: long index +cyanogenmod.providers.DataUsageContract: java.lang.String FAST_SAMPLES +org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) +androidx.constraintlayout.widget.R$styleable: int Constraint_transitionEasing +com.google.android.material.R$styleable: int AppCompatTheme_panelBackground +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry geometry +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleTextColor +com.google.android.material.R$dimen: int default_dimension +okio.ForwardingSource: java.lang.String toString() +okhttp3.internal.http1.Http1Codec$FixedLengthSink: void flush() +com.google.android.material.transformation.ExpandableBehavior: ExpandableBehavior(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.disposables.EmptyDisposable: boolean offer(java.lang.Object) +com.google.android.material.R$styleable: int SearchView_voiceIcon +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginBottom +androidx.constraintlayout.widget.R$layout: int abc_search_view +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver otherObserver +com.google.android.material.floatingactionbutton.FloatingActionButton: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) +com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimAnimationDuration(long) +com.jaredrummler.android.colorpicker.R$dimen: int cpv_color_preference_normal +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitation +wangdaye.com.geometricweather.db.entities.DaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) +wangdaye.com.geometricweather.R$id: int widget_trend_daily +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_height +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void setResource(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$styleable: int View_paddingStart +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display3 +io.reactivex.Observable: io.reactivex.Observable onTerminateDetach() +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getResPkg() +com.amap.api.fence.PoiItem: int describeContents() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: java.util.concurrent.atomic.AtomicReference queue +com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_Dialog +com.google.android.gms.signin.internal.zak: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$attr: int tooltipStyle +cyanogenmod.library.R$id: R$id() +io.reactivex.internal.util.NotificationLite$ErrorNotification: boolean equals(java.lang.Object) +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String getNativeKeyValueList() +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColorItem_android_offset +androidx.preference.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$anim +wangdaye.com.geometricweather.R$drawable: int shortcuts_sleet +cyanogenmod.externalviews.ExternalView: void onDetachedFromWindow() +wangdaye.com.geometricweather.R$color: int highlighted_text_material_dark +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_textAllCaps +androidx.vectordrawable.R$styleable: int ColorStateListItem_alpha +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean requireAdaptiveBacklightForSunlightEnhancement() +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeight +com.google.android.material.R$styleable: int KeyAttribute_android_translationY +cyanogenmod.weather.WeatherLocation: WeatherLocation() +androidx.hilt.work.R$id: int accessibility_custom_action_27 +androidx.constraintlayout.widget.R$styleable: int[] Toolbar +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_middle_mtrl_dark +androidx.lifecycle.extensions.R$id: int action_image +com.google.android.material.R$attr: int cardForegroundColor +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +okio.SegmentedByteString: int lastIndexOf(byte[],int) +io.reactivex.Observable: io.reactivex.Observable concatEager(io.reactivex.ObservableSource,int,int) +androidx.core.R$layout: int custom_dialog +androidx.preference.R$drawable: int abc_ic_ab_back_material +androidx.preference.R$styleable: int AppCompatImageView_android_src +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_wrapMode +okhttp3.Address: okhttp3.CertificatePinner certificatePinner() +retrofit2.ParameterHandler$1: void apply(retrofit2.RequestBuilder,java.lang.Iterable) +com.google.android.material.R$attr: int linearSeamless +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_getLiveLockScreenEnabled +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_black +com.jaredrummler.android.colorpicker.R$attr: int popupWindowStyle +androidx.preference.R$drawable: int btn_radio_on_to_off_mtrl_animation +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_positiveButtonText +james.adaptiveicon.R$styleable: int AppCompatTheme_switchStyle +wangdaye.com.geometricweather.R$drawable: int mtrl_ic_error +androidx.preference.R$styleable: int ColorStateListItem_android_color +androidx.vectordrawable.animated.R$id: int action_image +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListPopupWindow +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$styleable: int[] DrawerArrowToggle +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +wangdaye.com.geometricweather.R$id: int masked +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTextView +com.turingtechnologies.materialscrollbar.R$animator: int design_fab_hide_motion_spec +wangdaye.com.geometricweather.R$id: int item_about_library_title +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.internal.disposables.SequentialDisposable task +okhttp3.internal.cache2.Relay$RelaySource: okio.Timeout timeout +androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +com.google.android.material.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView +com.xw.repo.bubbleseekbar.R$styleable: int[] ButtonBarLayout +okhttp3.internal.ws.WebSocketReader: int opcode +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_DAY_VALIDATOR +com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.AnimatorSet indeterminateAnimator +com.google.android.material.R$color: int mtrl_navigation_item_background_color +okio.Buffer$UnsafeCursor: void close() +com.google.android.material.R$id: int packed +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstHorizontalBias +okio.Okio$4: void timedOut() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Fullscreen +wangdaye.com.geometricweather.R$drawable: int notif_temp_5 +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline5 +androidx.recyclerview.widget.GridLayoutManager +cyanogenmod.hardware.ICMHardwareService: int[] getDisplayGammaCalibration(int) +okio.RealBufferedSource: java.lang.String readUtf8LineStrict(long) +okio.RealBufferedSource: void readFully(okio.Buffer,long) +com.google.android.material.textfield.TextInputLayout: void setErrorIconVisible(boolean) +io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function,io.reactivex.functions.Function) +cyanogenmod.weatherservice.WeatherProviderService: void onDisconnected() +androidx.constraintlayout.widget.R$color: int bright_foreground_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +com.xw.repo.bubbleseekbar.R$color: int error_color_material_dark +com.tencent.bugly.proguard.y: void a(android.content.Context) +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_AIR_QUALITY +com.github.rahatarmanahmed.cpv.R$string +com.google.android.gms.base.R$drawable +androidx.vectordrawable.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.ChineseCityEntity) +com.google.android.material.R$styleable: int Transform_android_scaleX +androidx.preference.R$string: int abc_menu_space_shortcut_label +wangdaye.com.geometricweather.R$id: int spacer +com.google.android.material.R$styleable: int ConstraintSet_android_rotation +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String EXTRA_ENABLED +com.baidu.location.e.h$c: com.baidu.location.e.h$c b +androidx.appcompat.resources.R$id: int tag_transition_group +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: io.reactivex.ObservableEmitter serialize() +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ct +wangdaye.com.geometricweather.R$id: int actions +okhttp3.internal.http2.Settings: int getMaxFrameSize(int) +wangdaye.com.geometricweather.R$array: int week_widget_styles +androidx.preference.R$styleable: int DrawerArrowToggle_barLength +androidx.preference.R$color: int abc_primary_text_disable_only_material_dark +com.jaredrummler.android.colorpicker.R$styleable: int PopupWindowBackgroundState_state_above_anchor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: AccuDailyResult$DailyForecasts$Sun() +androidx.dynamicanimation.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$styleable: int SearchView_voiceIcon +androidx.constraintlayout.widget.R$drawable: int abc_cab_background_top_mtrl_alpha +androidx.hilt.work.R$id: int accessibility_custom_action_0 +androidx.preference.R$color: int accent_material_light +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void cancel() +androidx.constraintlayout.widget.R$styleable: int Toolbar_logoDescription +okio.Pipe$PipeSource: Pipe$PipeSource(okio.Pipe) +androidx.viewpager2.widget.ViewPager2$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layoutDescription +androidx.preference.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +wangdaye.com.geometricweather.R$id: int always +wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_vertical +com.google.android.material.R$attr: int actionButtonStyle +androidx.viewpager2.R$color: int notification_icon_bg_color +androidx.fragment.R$id: int notification_main_column_container +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.baidu.location.g.a +androidx.appcompat.widget.ActionBarContainer: ActionBarContainer(android.content.Context) +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setPrefixString(java.lang.String) +cyanogenmod.app.IPartnerInterface: void reboot() +com.google.android.material.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode +retrofit2.Response: okhttp3.Headers headers() +wangdaye.com.geometricweather.R$attr: int bsb_section_count +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setValue(java.util.List) +android.didikee.donate.R$attr: int actionBarPopupTheme +com.google.android.material.R$styleable: int MaterialButton_strokeWidth +io.reactivex.internal.util.NotificationLite: boolean acceptFull(java.lang.Object,org.reactivestreams.Subscriber) +androidx.viewpager2.R$id: int notification_main_column_container +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: FitSystemBarSwipeRefreshLayout(android.content.Context) +com.xw.repo.bubbleseekbar.R$id: int customPanel +androidx.appcompat.widget.AppCompatImageView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +okhttp3.Response$Builder: okhttp3.Handshake handshake +androidx.preference.R$attr: int actionBarTabTextStyle +androidx.swiperefreshlayout.R$layout: int custom_dialog +okio.ForwardingTimeout: long timeoutNanos() +com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.proguard.u c +okhttp3.internal.http2.Http2Connection$Builder +androidx.hilt.work.R$id: int blocking +androidx.appcompat.resources.R$id: int accessibility_custom_action_29 +androidx.appcompat.R$attr: int textAppearanceListItem +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_DarkActionBar +com.turingtechnologies.materialscrollbar.R$attr: int checkedChip +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String type +com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$drawable: int flag_ro +wangdaye.com.geometricweather.R$style: int Platform_Widget_AppCompat_Spinner +androidx.constraintlayout.widget.R$color: int accent_material_light +android.didikee.donate.R$drawable: int abc_ic_clear_material +james.adaptiveicon.R$id: int notification_background +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider[] values() +androidx.constraintlayout.widget.R$styleable: int SearchView_defaultQueryHint +androidx.hilt.R$style: int TextAppearance_Compat_Notification +androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context,android.util.AttributeSet,int) +android.didikee.donate.R$drawable: int abc_spinner_textfield_background_material +androidx.preference.R$layout: int abc_select_dialog_material +androidx.constraintlayout.widget.R$styleable: int ActionBar_title +androidx.appcompat.widget.Toolbar: void setTitle(java.lang.CharSequence) +james.adaptiveicon.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +com.jaredrummler.android.colorpicker.R$bool: R$bool() +androidx.loader.R$id: int forever +com.google.android.material.R$drawable: int material_cursor_drawable +com.google.android.material.R$attr: int customPixelDimension +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar +cyanogenmod.hardware.CMHardwareManager: java.lang.String getUniqueDeviceId() +wangdaye.com.geometricweather.location.services.LocationService: android.app.NotificationChannel getLocationNotificationChannel(android.content.Context) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +okhttp3.Headers$Builder: java.lang.String get(java.lang.String) +com.google.android.material.bottomnavigation.BottomNavigationView: void setSelectedItemId(int) +android.didikee.donate.R$drawable: int abc_text_select_handle_middle_mtrl_light +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.Observer downstream +androidx.constraintlayout.widget.R$id: int staticPostLayout +androidx.drawerlayout.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String district +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_menu +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +retrofit2.Retrofit: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) +com.google.android.material.internal.NavigationMenuView +wangdaye.com.geometricweather.R$string: int common_google_play_services_update_text +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationY +okhttp3.internal.cache.DiskLruCache$Editor: okio.Source newSource(int) +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_textAppearance +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_16dp +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SearchView_ActionBar +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.preference.R$attr: int preferenceFragmentStyle +com.tencent.bugly.crashreport.R$string: R$string() +com.google.android.material.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: void setIcon(java.lang.String) +com.amap.api.location.AMapLocation: java.lang.String a(com.amap.api.location.AMapLocation,java.lang.String) +retrofit2.ParameterHandler$2: retrofit2.ParameterHandler this$0 +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean isDaylight() +okhttp3.Response$Builder: okhttp3.Response$Builder protocol(okhttp3.Protocol) +wangdaye.com.geometricweather.R$attr: int elevationOverlayEnabled +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void drain() +wangdaye.com.geometricweather.R$drawable: int ic_donate +com.google.android.material.R$attr: int flow_horizontalBias +androidx.preference.R$id: int checked +androidx.constraintlayout.widget.R$styleable: int Constraint_pivotAnchor +com.google.android.material.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon +io.reactivex.internal.util.VolatileSizeArrayList: VolatileSizeArrayList(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_10 +okio.Buffer: okio.Segment writableSegment(int) +com.google.android.material.R$color: int mtrl_bottom_nav_item_tint +com.jaredrummler.android.colorpicker.R$styleable: int View_android_theme +androidx.preference.R$style: int Base_Animation_AppCompat_DropDownUp +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_CBC_SHA256 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onComplete() +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalGap +androidx.viewpager.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.hilt.work.R$id: int accessibility_custom_action_23 +okio.Okio$1: void flush() +okhttp3.MultipartBody$Builder: MultipartBody$Builder() +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.database.Database getDatabase() +io.reactivex.disposables.ReferenceDisposable: void dispose() +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: int unitArrayIndex +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeFillColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric Metric +james.adaptiveicon.R$attr: int editTextColor +androidx.appcompat.R$color: int abc_search_url_text_normal +cyanogenmod.providers.CMSettings$Global: java.lang.String SYS_PROP_CM_SETTING_VERSION +wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_to_on_mtrl_015 +io.reactivex.Observable: io.reactivex.Observable concatMapSingle(io.reactivex.functions.Function) +com.google.android.material.R$layout: int mtrl_alert_dialog +com.amap.api.fence.PoiItem: double g +androidx.lifecycle.ReportFragment: void onDestroy() +androidx.appcompat.widget.SwitchCompat: int getCompoundPaddingLeft() +okio.BufferedSource: long indexOf(byte,long,long) +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setDeleteIntent(android.app.PendingIntent) +wangdaye.com.geometricweather.R$styleable: int Transition_transitionFlags +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_attributeName +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer iso0 +wangdaye.com.geometricweather.R$string: int feedback_show_widget_card +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver) +com.jaredrummler.android.colorpicker.R$id: int titleDividerNoCustom +androidx.vectordrawable.R$dimen: int notification_subtext_size +androidx.constraintlayout.widget.R$attr: int actionModeSplitBackground +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeBackground +james.adaptiveicon.AdaptiveIconView: void setIcon(james.adaptiveicon.AdaptiveIcon) +androidx.preference.R$styleable: int ActionMode_backgroundSplit +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position +retrofit2.Utils: boolean hasUnresolvableType(java.lang.reflect.Type) +okhttp3.internal.connection.RealConnection: okhttp3.ConnectionPool connectionPool +cyanogenmod.providers.CMSettings$System: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: boolean hasError() +wangdaye.com.geometricweather.R$styleable: int[] ClockHandView +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_ContextMenu +org.greenrobot.greendao.AbstractDao: void delete(java.lang.Object) +wangdaye.com.geometricweather.R$style: int widget_text_clock_analog_Light +androidx.constraintlayout.widget.R$attr: int searchViewStyle +wangdaye.com.geometricweather.R$attr: int touchAnchorSide +com.google.android.material.R$attr: int enforceMaterialTheme +okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache this$0 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorPrimary +okhttp3.Interceptor$Chain: okhttp3.Call call() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String LongPhrase +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ListView_DropDown +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.CMWeatherManager getInstance(android.content.Context) +cyanogenmod.app.StatusBarPanelCustomTile: long postTime +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.HistoryEntity) +com.google.android.material.R$styleable: int Constraint_flow_horizontalStyle +com.amap.api.fence.GeoFence: int STATUS_LOCFAIL +com.google.gson.internal.LazilyParsedNumber: int hashCode() +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_summaryOn +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language KOREAN +wangdaye.com.geometricweather.R$attr: int state_lifted +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_cardForegroundColor +androidx.lifecycle.ViewModelStores +com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_material +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status valueOf(java.lang.String) +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_2 +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: io.reactivex.Observer observer +wangdaye.com.geometricweather.R$styleable: int[] LinearLayoutCompat +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_93 +io.reactivex.internal.util.ExceptionHelper$Termination +com.google.android.material.R$dimen: int mtrl_btn_letter_spacing +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_119 +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Toolbar +androidx.lifecycle.ComputableLiveData: java.util.concurrent.atomic.AtomicBoolean mInvalid +wangdaye.com.geometricweather.R$id: int asConfigured +androidx.appcompat.R$id: int accessibility_custom_action_23 +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_clipToPadding +com.google.android.material.R$styleable: int RecyclerView_spanCount +okio.Buffer: long indexOfElement(okio.ByteString,long) +com.turingtechnologies.materialscrollbar.R$id: int uniform +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTintMode +androidx.preference.R$dimen: int tooltip_precise_anchor_threshold +okhttp3.internal.http2.Http2Connection: boolean shutdown +cyanogenmod.app.StatusBarPanelCustomTile: android.os.UserHandle user +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator APP_SWITCH_WAKE_SCREEN_VALIDATOR +com.google.android.material.textfield.MaterialAutoCompleteTextView: java.lang.CharSequence getHint() +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: android.os.IBinder asBinder() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Subhead +cyanogenmod.externalviews.KeyguardExternalView$2: void onDetachedFromWindow() +android.didikee.donate.R$styleable: int SwitchCompat_switchPadding +com.google.android.material.R$styleable: int[] ActionMenuView +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_keylines +com.google.android.material.slider.BaseSlider: void setValues(java.util.List) +com.xw.repo.bubbleseekbar.R$attr: int windowActionModeOverlay +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupMenu +io.reactivex.Observable: io.reactivex.Observable take(long,java.util.concurrent.TimeUnit) +com.amap.api.location.AMapLocation: java.lang.String getProvince() +wangdaye.com.geometricweather.R$styleable: int MaterialToolbar_navigationIconColor +androidx.coordinatorlayout.R$style: R$style() +io.reactivex.internal.schedulers.ScheduledDirectTask: long serialVersionUID +com.google.android.material.R$id: int easeOut +cyanogenmod.weather.CMWeatherManager$2: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) +androidx.hilt.work.R$anim: int fragment_fade_enter +com.jaredrummler.android.colorpicker.R$id: int start +cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(android.os.Parcel) +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarSplitStyle +okhttp3.HttpUrl: java.lang.String fragment() +com.jaredrummler.android.colorpicker.R$id: int progress_circular +okhttp3.FormBody: FormBody(java.util.List,java.util.List) +retrofit2.ParameterHandler: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.tencent.bugly.proguard.c: com.tencent.bugly.proguard.i f +com.google.android.material.R$styleable: int TextAppearance_android_textSize +androidx.viewpager.R$style: R$style() +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void boundaryError(io.reactivex.disposables.Disposable,java.lang.Throwable) +androidx.constraintlayout.widget.R$id: int easeInOut +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getLiveLockScreenThemePackageName() +androidx.drawerlayout.R$dimen: int notification_main_column_padding_top +androidx.transition.R$dimen: R$dimen() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer degreeDayTemperature +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_warmth +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableStart +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$font: int product_sans_medium_italic +cyanogenmod.profiles.StreamSettings: boolean isDirty() +io.reactivex.subjects.PublishSubject$PublishDisposable: long serialVersionUID +androidx.coordinatorlayout.R$styleable: int ColorStateListItem_alpha +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getInterfaceDescriptor() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerClose(boolean,io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver) +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setAppReportDelay(long) +androidx.viewpager.R$styleable: int FontFamily_fontProviderPackage +james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontWeight +com.google.android.material.textfield.TextInputLayout: com.google.android.material.textfield.EndIconDelegate getEndIconDelegate() +wangdaye.com.geometricweather.common.basic.models.options.DarkMode +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) +com.jaredrummler.android.colorpicker.R$attr: int order +okhttp3.internal.http2.Http2Connection: void writeSynResetLater(int,okhttp3.internal.http2.ErrorCode) +wangdaye.com.geometricweather.R$dimen: int abc_text_size_title_material_toolbar +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver this$0 +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isCompletable +retrofit2.RequestFactory: retrofit2.RequestFactory parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method) +okhttp3.internal.http2.Http2Connection$Builder: java.lang.String hostname +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getNo2Desc() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UpdateDate +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: double Value +okhttp3.internal.http.RealInterceptorChain: int index +wangdaye.com.geometricweather.R$attr: int layout_insetEdge +androidx.core.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_Toolbar +okhttp3.internal.http2.Http2: byte FLAG_END_STREAM +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onDetach() +com.google.android.material.R$drawable: int navigation_empty_icon +com.google.android.material.R$styleable: int TabLayout_tabMaxWidth +androidx.constraintlayout.widget.R$id: int stop +okhttp3.Dispatcher: void cancelAll() +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTint +cyanogenmod.app.ProfileGroup +androidx.appcompat.R$attr: int colorControlHighlight +okio.RealBufferedSource: long readLong() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getRequiredWidth() +androidx.dynamicanimation.R$id: int normal +androidx.legacy.coreutils.R$dimen +com.google.android.material.R$drawable: int ic_keyboard_black_24dp +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_DifferentCornerSize +wangdaye.com.geometricweather.R$style: int Platform_AppCompat_Light +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow snow +wangdaye.com.geometricweather.R$id: int dragUp +james.adaptiveicon.R$styleable: int SwitchCompat_trackTint +com.tencent.bugly.proguard.ar: java.util.Map g +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedText(android.content.Context,float) +retrofit2.Converter$Factory +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Bridge +wangdaye.com.geometricweather.R$font: int product_sans_light_italic +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.R$layout: int test_design_radiobutton +okhttp3.internal.http2.Http2Connection: void awaitPong() +com.baidu.location.indoor.mapversion.c.c$b: double e +androidx.appcompat.R$attr: int drawableStartCompat +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollEnabled +androidx.appcompat.R$color: int abc_btn_colored_text_material +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_maxHeight +androidx.preference.R$styleable: int ActionBarLayout_android_layout_gravity +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object getKey(java.lang.Object) +com.amap.api.fence.GeoFence: void setPendingIntent(android.app.PendingIntent) +okhttp3.internal.http2.Http2Codec: void flushRequest() +com.tencent.bugly.proguard.z: java.io.BufferedReader a(java.io.File) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfPrecipitation +androidx.preference.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_percent +com.google.android.material.R$dimen: int tooltip_precise_anchor_threshold +com.xw.repo.bubbleseekbar.R$layout: int abc_search_view +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_padding_end_material +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a: java.lang.String b +com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_min +androidx.appcompat.R$styleable: int AppCompatTheme_radioButtonStyle +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void collect(java.util.Collection) +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String getValue() +androidx.appcompat.R$styleable: int ButtonBarLayout_allowStacking +androidx.preference.R$styleable: int TextAppearance_fontVariationSettings +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +wangdaye.com.geometricweather.R$styleable: int CardView_cardCornerRadius +com.google.android.material.R$color: int mtrl_tabs_legacy_text_color_selector +com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_alpha +com.google.android.material.R$dimen: int mtrl_btn_corner_radius +androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: boolean disposed +androidx.customview.R$id: int icon +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog +james.adaptiveicon.R$attr: int actionViewClass +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldLevel com.google.android.material.R$id: int tag_accessibility_pane_title -androidx.preference.R$style: int TextAppearance_Compat_Notification_Title -androidx.coordinatorlayout.R$attr: int alpha -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: float getProgress() -com.tencent.bugly.crashreport.crash.c: c(int,android.content.Context,com.tencent.bugly.proguard.w,boolean,com.tencent.bugly.BuglyStrategy$a,com.tencent.bugly.proguard.o,java.lang.String) -com.google.android.material.R$styleable: int Constraint_transitionEasing -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.R$attr: int alertDialogButtonGroupStyle -com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_growMode -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_83 -android.didikee.donate.R$attr: int actionViewClass -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: void complete() -wangdaye.com.geometricweather.R$attr: int itemTextAppearanceInactive -com.xw.repo.bubbleseekbar.R$attr: int fontProviderPackage -retrofit2.HttpServiceMethod: retrofit2.HttpServiceMethod parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method,retrofit2.RequestFactory) -androidx.lifecycle.ProcessLifecycleOwner$1: void run() -okhttp3.Response: java.lang.String message -com.tencent.bugly.crashreport.common.info.a: boolean a() -androidx.hilt.R$color: int notification_icon_bg_color -androidx.lifecycle.SavedStateHandleController: void attachHandleIfNeeded(androidx.lifecycle.ViewModel,androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) -wangdaye.com.geometricweather.R$mipmap: R$mipmap() -retrofit2.Platform: retrofit2.Platform findPlatform() -okhttp3.Headers: java.util.Date getDate(java.lang.String) -com.google.android.material.circularreveal.cardview.CircularRevealCardView: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -com.google.android.material.R$layout: int material_clockface_textview -com.google.android.material.R$attr: int fontStyle -retrofit2.Invocation -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_android_indeterminate -okio.ForwardingSource: long read(okio.Buffer,long) -androidx.lifecycle.extensions.R$styleable: int Fragment_android_id -androidx.constraintlayout.widget.R$dimen: int abc_floating_window_z -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_88 -wangdaye.com.geometricweather.remoteviews.config.Hilt_MultiCityWidgetConfigActivity -com.google.android.material.chip.Chip: void setBackgroundColor(int) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getSo2Color(android.content.Context) -androidx.constraintlayout.widget.R$styleable -james.adaptiveicon.R$id: int default_activity_button -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_baselineAligned -james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionBar -com.google.android.material.R$drawable: int abc_list_selector_holo_dark -com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context) -androidx.appcompat.R$dimen: int hint_alpha_material_light +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +wangdaye.com.geometricweather.R$id: int widget_week_temp_2 +android.didikee.donate.R$attr: int dividerPadding +com.google.android.material.R$integer: int app_bar_elevation_anim_duration +com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_NOGPSPROVIDER +com.google.android.material.R$id: int search_go_btn +com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context,android.util.AttributeSet) +androidx.activity.R$id: int text +androidx.constraintlayout.widget.R$color: int material_grey_50 +cyanogenmod.platform.Manifest$permission: java.lang.String MANAGE_PERSISTENT_STORAGE +androidx.lifecycle.DefaultLifecycleObserver: void onStart(androidx.lifecycle.LifecycleOwner) +androidx.preference.R$styleable: int SearchView_defaultQueryHint +androidx.fragment.R$style: int TextAppearance_Compat_Notification_Line2 +android.didikee.donate.R$layout: int notification_template_part_chronometer +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerColor +com.google.android.material.R$style: int Theme_Design_BottomSheetDialog +com.google.android.gms.base.R$attr: int circleCrop +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorHeight +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindSpeed(java.lang.Float) +wangdaye.com.geometricweather.R$drawable: int abc_edit_text_material +cyanogenmod.providers.CMSettings$System: boolean putLong(android.content.ContentResolver,java.lang.String,long) +com.google.android.material.R$styleable: int ConstraintSet_android_elevation +com.turingtechnologies.materialscrollbar.TouchScrollBar +okio.Buffer: long read(okio.Buffer,long) +com.google.android.material.R$attr: int popupTheme +io.reactivex.Observable: io.reactivex.Observable debounce(long,java.util.concurrent.TimeUnit) +androidx.recyclerview.widget.LinearLayoutManager: LinearLayoutManager(android.content.Context,android.util.AttributeSet,int,int) +retrofit2.SkipCallbackExecutor +wangdaye.com.geometricweather.R$styleable: int LoadingImageView_circleCrop +com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.internal.fuseable.SimpleQueue queue +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$color: int design_fab_stroke_top_inner_color +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle +com.tencent.bugly.proguard.u: byte[] n +com.jaredrummler.android.colorpicker.R$attr: int iconTintMode +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginStart +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowMinWidthMajor +com.google.android.material.R$attr: int themeLineHeight +cyanogenmod.app.Profile: java.util.ArrayList getTriggersFromType(int) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTime(long) +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setHeadDescription(java.lang.String) +com.tencent.bugly.proguard.ah: void a(com.tencent.bugly.proguard.i) +androidx.constraintlayout.widget.R$attr: int deriveConstraintsFrom +wangdaye.com.geometricweather.R$styleable: int[] ActionMode +com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_padding_vertical_material +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Time +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderQuery +okhttp3.internal.http2.Http2Reader$Handler: void goAway(int,okhttp3.internal.http2.ErrorCode,okio.ByteString) +androidx.appcompat.R$styleable: int StateListDrawable_android_exitFadeDuration +okhttp3.internal.connection.RealConnection: java.lang.String toString() +androidx.viewpager.R$layout: int notification_template_part_time +androidx.lifecycle.Transformations$1: Transformations$1(androidx.lifecycle.MediatorLiveData,androidx.arch.core.util.Function) +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_AppBarLayout +com.turingtechnologies.materialscrollbar.R$attr: int iconifiedByDefault +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintTextAppearance +okhttp3.Response$Builder: okhttp3.Response priorResponse +com.tencent.bugly.crashreport.crash.c: java.lang.String h +com.tencent.bugly.crashreport.common.info.a: int H() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onKeyguardShowing +com.google.android.material.R$styleable: int[] ConstraintLayout_placeholder +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius +wangdaye.com.geometricweather.R$id: int firstVisible +cyanogenmod.providers.DataUsageContract: java.lang.String SLOW_SAMPLES +cyanogenmod.profiles.RingModeSettings: void writeToParcel(android.os.Parcel,int) +com.tencent.bugly.crashreport.CrashReport: boolean setJavascriptMonitor(com.tencent.bugly.crashreport.CrashReport$WebViewInterface,boolean) +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSearchResultSubtitle +androidx.appcompat.widget.AppCompatSpinner: int getDropDownVerticalOffset() +wangdaye.com.geometricweather.R$styleable: int[] AnimatableIconView +okhttp3.internal.Util: int checkDuration(java.lang.String,long,java.util.concurrent.TimeUnit) +androidx.viewpager.R$styleable: int FontFamily_fontProviderCerts +cyanogenmod.themes.ThemeManager: void onClientPaused(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupWindow +cyanogenmod.hardware.ICMHardwareService: java.lang.String getLtoSource() +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: io.reactivex.Observer downstream +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getProfileHasAppProfiles +androidx.vectordrawable.animated.R$id: int tag_unhandled_key_listeners +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMode +com.google.gson.stream.JsonReader: boolean hasNext() +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.Observer downstream +io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean done +com.baidu.location.e.n +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +com.google.android.material.R$styleable: int MenuGroup_android_checkableBehavior +wangdaye.com.geometricweather.R$attr: int counterMaxLength +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void disposeAfter() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling +com.turingtechnologies.materialscrollbar.R$attr: int initialActivityCount +wangdaye.com.geometricweather.R$attr: int isMaterialTheme +androidx.legacy.coreutils.R$drawable: int notification_tile_bg +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean isSunlightEnhancementSelfManaged() +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicReference actual +androidx.appcompat.widget.AppCompatRadioButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.google.android.material.R$attr: int ensureMinTouchTargetSize +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FREEZING_RAIN +org.greenrobot.greendao.AbstractDao: void attachEntity(java.lang.Object) +androidx.appcompat.R$color: int abc_tint_switch_track +androidx.constraintlayout.widget.R$attr: int textAppearanceListItem +com.tencent.bugly.crashreport.biz.b: boolean m +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_buttonPanelSideLayout +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getThumbStrokeColor() +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableLeft +androidx.constraintlayout.widget.R$dimen: int tooltip_precise_anchor_threshold +com.google.android.material.R$id: int accessibility_custom_action_20 +androidx.coordinatorlayout.R$id: int accessibility_custom_action_10 +androidx.cardview.R$styleable: int CardView_contentPaddingBottom +androidx.preference.R$styleable: int ActionBar_logo +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_SearchView +androidx.constraintlayout.utils.widget.ImageFilterView: void setContrast(float) +androidx.preference.R$style: int Base_Widget_AppCompat_Spinner +com.google.android.material.R$dimen: int mtrl_calendar_action_height +okhttp3.ConnectionSpec: java.util.List cipherSuites() +james.adaptiveicon.R$bool +com.google.android.material.R$attr: int fontProviderQuery +com.turingtechnologies.materialscrollbar.R$attr: int autoSizeStepGranularity +wangdaye.com.geometricweather.search.Hilt_SearchActivity +androidx.constraintlayout.widget.R$string: int status_bar_notification_info_overflow +androidx.dynamicanimation.R$dimen: int notification_big_circle_margin +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_ttcIndex +androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getContent() +wangdaye.com.geometricweather.R$id: int action_manage +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowNoTitle +com.tencent.bugly.crashreport.common.info.PlugInBean: java.lang.String a +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitation(java.lang.Float) +com.xw.repo.bubbleseekbar.R$attr: int color +wangdaye.com.geometricweather.R$string: int app_name +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar +com.tencent.bugly.crashreport.common.strategy.StrategyBean: long q +androidx.preference.R$style: int Preference_DropDown_Material +io.reactivex.internal.operators.observable.ObservableGroupBy$State: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_list_padding_top_no_title +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_wavePeriod +io.reactivex.observers.TestObserver$EmptyObserver: void onComplete() +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_sunText +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_icon_size com.google.android.material.R$dimen: int mtrl_calendar_dialog_background_inset -okhttp3.Cookie: boolean secure -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onNext(java.lang.Object) -james.adaptiveicon.R$style: int Widget_AppCompat_SearchView_ActionBar -wangdaye.com.geometricweather.R$mipmap -android.didikee.donate.R$style: int Platform_V25_AppCompat -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Large -com.tencent.bugly.crashreport.common.info.a: boolean u -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean cancelled -com.google.android.material.R$dimen: int mtrl_textinput_box_stroke_width_focused -androidx.constraintlayout.widget.R$attr: int tooltipText -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency -com.jaredrummler.android.colorpicker.R$id: int right -com.google.android.material.R$dimen: int mtrl_btn_pressed_z -android.didikee.donate.R$style: int Platform_AppCompat -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeSplitBackground -androidx.lifecycle.LiveData$ObserverWrapper: void detachObserver() -wangdaye.com.geometricweather.R$drawable: int clock_hour_light -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: java.lang.String toString() -cyanogenmod.externalviews.ExternalViewProviderService: android.view.WindowManager access$400(cyanogenmod.externalviews.ExternalViewProviderService) -cyanogenmod.platform.R$drawable -retrofit2.http.Body -com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_Toolbar -android.didikee.donate.R$styleable: int AppCompatTheme_dropDownListViewStyle -wangdaye.com.geometricweather.R$attr: int contrast -wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_percent -androidx.recyclerview.widget.RecyclerView: androidx.core.view.NestedScrollingChildHelper getScrollingChildHelper() -io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.MaybeObserver) -wangdaye.com.geometricweather.R$drawable: int notification_bg_low_pressed -androidx.recyclerview.widget.RecyclerView: void removeOnItemTouchListener(androidx.recyclerview.widget.RecyclerView$OnItemTouchListener) -androidx.appcompat.R$styleable: int AppCompatTheme_android_windowAnimationStyle -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection connection() -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String AUTHOR -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder reencodeForUri() -com.xw.repo.bubbleseekbar.R$string: int abc_action_menu_overflow_description -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_unregisterCallback -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getFontThemePackageName() -android.didikee.donate.R$dimen: int abc_text_size_title_material -wangdaye.com.geometricweather.R$attr: int alertDialogTheme -wangdaye.com.geometricweather.R$attr: int itemTextColor -com.jaredrummler.android.colorpicker.R$styleable: int[] View -androidx.preference.R$drawable: int abc_list_pressed_holo_dark -androidx.loader.R$id: int text2 -wangdaye.com.geometricweather.R$attr: int dividerHorizontal -androidx.hilt.lifecycle.R$color: R$color() -android.didikee.donate.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: java.lang.Integer max -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: int UnitType -com.google.android.material.R$dimen: int mtrl_calendar_day_vertical_padding -james.adaptiveicon.R$attr: int panelMenuListTheme -com.xw.repo.bubbleseekbar.R$attr: int searchViewStyle -com.google.android.material.R$styleable: int Constraint_android_scaleY -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf -android.didikee.donate.R$style: int TextAppearance_AppCompat_Title_Inverse -com.amap.api.location.AMapLocationQualityReport -com.google.android.material.R$id: int mtrl_motion_snapshot_view -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_backgroundTint -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain6h -wangdaye.com.geometricweather.R$id: int confirm_button -com.xw.repo.bubbleseekbar.R$style: int Widget_Support_CoordinatorLayout -com.tencent.bugly.crashreport.biz.UserInfoBean: java.lang.String n -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalGap -androidx.hilt.work.R$styleable: int FontFamilyFont_fontWeight -okhttp3.internal.ws.RealWebSocket: okhttp3.Request originalRequest +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconEndPadding +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.lang.String getRiseTime(android.content.Context) +androidx.appcompat.R$interpolator: int fast_out_slow_in +androidx.vectordrawable.R$id: int tag_transition_group +androidx.preference.R$drawable: int abc_list_selector_holo_light +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDbz(java.lang.Integer) +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status ERROR +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPreStopped(android.app.Activity) +android.didikee.donate.R$styleable: int AppCompatTheme_toolbarStyle +com.google.android.material.R$attr: int buttonBarButtonStyle +okhttp3.HttpUrl$Builder: void resolvePath(java.lang.String,int,int) +wangdaye.com.geometricweather.R$attr: int bsb_track_color +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function6) +androidx.dynamicanimation.animation.DynamicAnimation +com.google.android.material.R$styleable: int SearchView_queryBackground +okhttp3.internal.cache.DiskLruCache$1: void run() +com.jaredrummler.android.colorpicker.R$string: int abc_menu_ctrl_shortcut_label +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.constraintlayout.widget.R$id: int spread_inside +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder immutable() +okhttp3.internal.http1.Http1Codec: void writeRequestHeaders(okhttp3.Request) +okhttp3.CacheControl: int maxAgeSeconds +com.tencent.bugly.nativecrashreport.R$string: int app_name +wangdaye.com.geometricweather.R$drawable: int flag_es +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSo2(java.lang.String) +com.jaredrummler.android.colorpicker.R$id: int search_button +com.tencent.bugly.crashreport.biz.UserInfoBean: java.util.Map r +android.didikee.donate.R$styleable: int[] AlertDialog +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_confirm_button_min_width +okio.Buffer +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Time +androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_maxWidth +androidx.preference.R$style: int Preference_CheckBoxPreference +androidx.drawerlayout.R$layout: int notification_template_custom_big +androidx.work.impl.workers.CombineContinuationsWorker +wangdaye.com.geometricweather.R$dimen: int tooltip_corner_radius +okhttp3.internal.cache.DiskLruCache$Editor$1: okhttp3.internal.cache.DiskLruCache$Editor this$1 +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPickerView +okio.SegmentedByteString: SegmentedByteString(okio.Buffer,int) +com.google.android.material.R$styleable: int Constraint_flow_horizontalAlign +james.adaptiveicon.R$style: int AlertDialog_AppCompat +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconGravity +androidx.customview.R$styleable: int GradientColor_android_endX +okio.Buffer$UnsafeCursor: long offset +wangdaye.com.geometricweather.R$id: int material_clock_face +com.google.android.material.R$style: int Base_V7_Widget_AppCompat_EditText +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog +androidx.constraintlayout.widget.R$style: int Base_V22_Theme_AppCompat +wangdaye.com.geometricweather.R$styleable: int KeyCycle_motionProgress +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +com.google.android.material.R$attr: int contentPaddingTop +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function7) +androidx.hilt.lifecycle.R$color: int ripple_material_light +james.adaptiveicon.R$styleable: int[] AlertDialog +io.reactivex.Observable: io.reactivex.Observable cache() +wangdaye.com.geometricweather.R$color: int abc_tint_btn_checkable +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textColorSearchUrl +james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat +wangdaye.com.geometricweather.R$styleable: int[] PreferenceFragment +androidx.hilt.R$id: int accessibility_custom_action_19 +cyanogenmod.app.ProfileManager: cyanogenmod.app.IProfileManager sService +com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_NATIVE +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: java.lang.String Unit +cyanogenmod.hardware.DisplayMode: int id +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_keyline +com.xw.repo.bubbleseekbar.R$attr: int bsb_show_thumb_text +com.tencent.bugly.crashreport.CrashReport: void setAppChannel(android.content.Context,java.lang.String) +androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context) +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetStartWithNavigation +com.bumptech.glide.R$string +com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Panel +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain rain +androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveDataInternal(java.lang.String,boolean,java.lang.Object) +cyanogenmod.hardware.CMHardwareManager: CMHardwareManager(android.content.Context) +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object get(int) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_toBottomOf +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String p +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver +okhttp3.internal.http.HttpHeaders: long contentLength(okhttp3.Response) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.internal.util.AtomicThrowable errors +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: javax.inject.Provider apiProvider +com.google.android.material.R$style: int Base_V23_Theme_AppCompat_Light +com.xw.repo.bubbleseekbar.R$color: int highlighted_text_material_light +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItem +com.amap.api.location.AMapLocation: java.lang.String j +com.turingtechnologies.materialscrollbar.R$styleable: int[] TouchScrollBar +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float rain +io.reactivex.Observable: java.lang.Object blockingSingle() +androidx.preference.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +androidx.preference.R$styleable: int FontFamilyFont_ttcIndex +com.google.android.gms.base.R$string: int common_google_play_services_update_text +wangdaye.com.geometricweather.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$attr: int msb_hideDelayInMilliseconds +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SMOKY +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VClipPath +wangdaye.com.geometricweather.R$animator: int mtrl_fab_hide_motion_spec +com.tencent.bugly.proguard.ak: java.lang.String f +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatPressedTranslationZResource(int) +cyanogenmod.hardware.DisplayMode$1 +androidx.preference.R$attr: int theme +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogMessage +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: AccuCurrentResult$RealFeelTemperature$Metric() +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer cloudCover +okio.Buffer: void readFrom(java.io.InputStream,long,boolean) +okhttp3.RealCall: okhttp3.internal.connection.StreamAllocation streamAllocation() +androidx.preference.R$style: int Widget_AppCompat_Button +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_WIND +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +androidx.swiperefreshlayout.R$dimen: int notification_subtext_size +com.bumptech.glide.R$layout: int notification_template_icon_group +androidx.preference.R$id: int action_bar_spinner +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf +okhttp3.RequestBody$3: okhttp3.MediaType contentType() +com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_thumb_material +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_4 +androidx.preference.R$attr: int buttonBarPositiveButtonStyle +wangdaye.com.geometricweather.R$id: int sort_button +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_height_material +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(java.lang.Iterable,io.reactivex.functions.Function) +com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_Overflow +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_transitionEasing +com.jaredrummler.android.colorpicker.R$bool: int abc_config_actionMenuItemAllCaps +androidx.constraintlayout.widget.R$color: int abc_primary_text_disable_only_material_dark +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List minutelyEntityList +com.google.gson.stream.JsonWriter: boolean getSerializeNulls() +wangdaye.com.geometricweather.R$id: int app_bar +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customColorValue +com.turingtechnologies.materialscrollbar.R$attr: int singleChoiceItemLayout +androidx.viewpager.R$id: int italic +okhttp3.Response: okhttp3.Response$Builder newBuilder() +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void alternateService(int,java.lang.String,okio.ByteString,java.lang.String,int,long) +androidx.constraintlayout.motion.widget.MotionLayout: float getProgress() +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_rippleColor +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator QS_SHOW_BRIGHTNESS_SLIDER_VALIDATOR +wangdaye.com.geometricweather.R$styleable: int Preference_iconSpaceReserved +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.R$dimen: int mtrl_chip_text_size +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_width_material +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onDetach() +com.turingtechnologies.materialscrollbar.R$color: int mtrl_fab_ripple_color +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityStarted(android.app.Activity) +retrofit2.CallAdapter$Factory: java.lang.Class getRawType(java.lang.reflect.Type) +androidx.transition.R$styleable: int[] GradientColorItem +com.google.android.material.circularreveal.CircularRevealGridLayout: CircularRevealGridLayout(android.content.Context) +androidx.loader.R$layout: int notification_action_tombstone +com.google.android.material.R$string: int mtrl_picker_invalid_format_example +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_registerThermalListener +androidx.appcompat.R$color: int abc_search_url_text +wangdaye.com.geometricweather.R$styleable: int[] Tooltip +wangdaye.com.geometricweather.R$id: int activity_widget_config_scrollView +wangdaye.com.geometricweather.R$attr: int selectableItemBackground +androidx.constraintlayout.widget.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather weather +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Bridge +androidx.preference.R$style: int PreferenceFragmentList +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type BOTTOM +cyanogenmod.app.Profile: void setTrigger(int,java.lang.String,int,java.lang.String) +cyanogenmod.providers.CMSettings$System: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerY +androidx.preference.R$style: int Base_V26_Theme_AppCompat_Light okio.ByteString: ByteString(byte[]) -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_1 -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Tooltip -com.turingtechnologies.materialscrollbar.R$styleable: int View_android_theme -androidx.dynamicanimation.R$dimen -com.google.android.material.switchmaterial.SwitchMaterial -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String getPubTime() -android.didikee.donate.R$styleable: int MenuItem_android_alphabeticShortcut -com.amap.api.location.AMapLocationClientOption: boolean isKillProcess() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_showMotionSpec -com.google.android.material.R$attr: int layout_constraintWidth_percent -wangdaye.com.geometricweather.R$layout: int preference_list_fragment -wangdaye.com.geometricweather.db.entities.LocationEntity: void setTimeZone(java.util.TimeZone) -com.baidu.location.e.l$b -com.xw.repo.bubbleseekbar.R$dimen: int abc_seekbar_track_progress_height_material -wangdaye.com.geometricweather.R$id: int toolbar -android.didikee.donate.R$styleable: int TextAppearance_textLocale -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: long serialVersionUID -android.didikee.donate.R$drawable: int abc_spinner_textfield_background_material -com.tencent.bugly.crashreport.CrashReport: void initCrashReport(android.content.Context,java.lang.String,boolean) -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabBarStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Spinner -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -cyanogenmod.themes.ThemeManager$1$2 -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListPopupWindow -androidx.vectordrawable.animated.R$color: int notification_icon_bg_color -com.jaredrummler.android.colorpicker.R$attr: int popupTheme -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$layout: int item_trend_daily -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.disposables.Disposable upstream -androidx.appcompat.resources.R$drawable: int notification_action_background -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_height_fullscreen -wangdaye.com.geometricweather.R$attr: int saturation -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: boolean inCompletable -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabText -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_NoActionBar -retrofit2.Retrofit$Builder: java.util.List converterFactories() -android.didikee.donate.R$layout: int abc_alert_dialog_title_material -com.turingtechnologies.materialscrollbar.R$style: R$style() -cyanogenmod.providers.CMSettings$System: boolean isLegacySetting(java.lang.String) -androidx.constraintlayout.utils.widget.ImageFilterButton: float getContrast() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_UnelevatedButton -io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator valueOf(java.lang.String) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void clear() -com.turingtechnologies.materialscrollbar.R$attr: int useCompatPadding -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents -wangdaye.com.geometricweather.R$attr: int buttonBarPositiveButtonStyle -com.google.android.material.R$styleable: int KeyTimeCycle_android_scaleY -com.tencent.bugly.proguard.w: boolean a(java.lang.Runnable) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RealFeelShaderTemperature -androidx.preference.R$styleable: int ActivityChooserView_initialActivityCount -wangdaye.com.geometricweather.R$id: int transparency_seekbar -androidx.preference.R$styleable: int PreferenceGroup_android_orderingFromXml -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_blackContainer -com.turingtechnologies.materialscrollbar.R$id: int textinput_counter -wangdaye.com.geometricweather.R$id: int tag_unhandled_key_event_manager -com.google.android.material.chip.Chip: android.graphics.RectF getCloseIconTouchBounds() -com.jaredrummler.android.colorpicker.R$color: int abc_secondary_text_material_light -com.google.android.material.R$attr: int statusBarScrim -james.adaptiveicon.R$dimen: int notification_large_icon_width -androidx.preference.R$styleable: int ListPreference_android_entries -wangdaye.com.geometricweather.R$attr: int bottomSheetStyle -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_0 -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_fontFamily -okhttp3.logging.LoggingEventListener: void requestHeadersStart(okhttp3.Call) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: long updateTime -androidx.preference.R$styleable: int PreferenceTheme_preferenceInformationStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit -cyanogenmod.hardware.CMHardwareManager: boolean isSunlightEnhancementSelfManaged() -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: long serialVersionUID -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onComplete() -androidx.appcompat.widget.ListPopupWindow: void setOnItemClickListener(android.widget.AdapterView$OnItemClickListener) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.queue.MpscLinkedQueue queue -android.didikee.donate.R$id: int textSpacerNoButtons -okhttp3.internal.Internal: boolean connectionBecameIdle(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial() -com.google.android.material.R$styleable: int AppCompatTextView_autoSizeStepGranularity -com.google.android.material.bottomnavigation.BottomNavigationView: int getMaxItemCount() -androidx.preference.R$drawable: int abc_list_selector_holo_dark -wangdaye.com.geometricweather.R$styleable: int[] TagView -com.google.android.material.R$id: int design_navigation_view -com.turingtechnologies.materialscrollbar.R$id: int item_touch_helper_previous_elevation -wangdaye.com.geometricweather.R$string: int feedback_live_wallpaper_day_night_type -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$anim: int abc_popup_exit -okio.AsyncTimeout$1: AsyncTimeout$1(okio.AsyncTimeout,okio.Sink) -androidx.appcompat.resources.R$dimen: int notification_large_icon_height -com.google.android.material.R$attr: int iconTintMode -com.bumptech.glide.integration.okhttp.R$layout: int notification_action_tombstone -com.google.android.material.R$styleable: int KeyTrigger_motion_triggerOnCollision -com.turingtechnologies.materialscrollbar.R$attr: int srcCompat -com.turingtechnologies.materialscrollbar.R$color: int highlighted_text_material_light -com.amap.api.location.AMapLocation: java.lang.String n -wangdaye.com.geometricweather.R$styleable: int Constraint_android_scaleY -wangdaye.com.geometricweather.R$attr: int settingsActivity -androidx.appcompat.R$layout: int abc_popup_menu_item_layout -androidx.appcompat.R$attr: int titleMarginStart -com.google.android.material.textfield.TextInputLayout: void setStartIconOnClickListener(android.view.View$OnClickListener) -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamily -io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier valueOf(java.lang.String) -androidx.constraintlayout.widget.R$style: int Platform_V21_AppCompat_Light -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getWeatherSource() -androidx.coordinatorlayout.R$styleable: int[] ColorStateListItem -okhttp3.OkHttpClient: javax.net.ssl.HostnameVerifier hostnameVerifier -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Switch -com.xw.repo.bubbleseekbar.R$color: int abc_hint_foreground_material_light -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackActiveTintList() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Large_Inverse -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_DrawerArrowToggle -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endColor -james.adaptiveicon.R$string: int abc_searchview_description_submit -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginTop -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius -cyanogenmod.app.CMContextConstants: java.lang.String CM_STATUS_BAR_SERVICE -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.WeatherEntityDao weatherEntityDao -okhttp3.internal.Util: okhttp3.RequestBody EMPTY_REQUEST +com.google.android.material.R$styleable: int AppCompatTheme_controlBackground +com.google.android.material.R$drawable: int abc_ab_share_pack_mtrl_alpha +com.google.android.material.R$styleable: int Slider_labelBehavior +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_text_padding_right +com.turingtechnologies.materialscrollbar.R$dimen: int abc_select_dialog_padding_start_material +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit getInstance(java.lang.String) +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean fused +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Button +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.IndeterminateDrawable getIndeterminateDrawable() +android.didikee.donate.R$attr: int actionModeShareDrawable +androidx.preference.R$style: int Widget_AppCompat_ListMenuView +androidx.activity.R$styleable: int FontFamilyFont_android_fontStyle +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +wangdaye.com.geometricweather.R$string: int geometric_weather +androidx.customview.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$id: int selection_type +androidx.preference.R$color: int material_deep_teal_200 +androidx.preference.R$dimen: int abc_search_view_preferred_width +androidx.loader.R$id: int chronometer +android.didikee.donate.R$dimen: int notification_right_side_padding_top +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: ObservableConcatMap$ConcatMapDelayErrorObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) +okio.Timeout$1: void throwIfReached() +okio.GzipSource: void checkEqual(java.lang.String,int,int) +com.google.android.material.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endY +androidx.preference.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +com.google.android.material.R$id: int mtrl_calendar_year_selector_frame +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: boolean hasPermissions(android.content.Context) +james.adaptiveicon.R$color: int bright_foreground_material_light +com.bumptech.glide.R$dimen: int notification_subtext_size +androidx.recyclerview.R$dimen: int compat_control_corner_material +com.google.android.material.R$dimen: int mtrl_calendar_year_corner +com.google.android.material.R$dimen: int notification_small_icon_size_as_large +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_id +io.reactivex.Observable: io.reactivex.Observable sorted() +cyanogenmod.app.ProfileGroup: void setRingerOverride(android.net.Uri) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView +james.adaptiveicon.R$styleable: int MenuGroup_android_checkableBehavior +com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay_v14 +androidx.lifecycle.Transformations$2$1 +androidx.appcompat.R$drawable: int abc_list_selector_holo_dark +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf +androidx.vectordrawable.R$attr: int fontProviderAuthority +com.bumptech.glide.R$dimen: R$dimen() +com.google.android.material.R$id: int wrap_content +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_height_minor +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.viewpager2.R$styleable: int GradientColor_android_startX +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +androidx.preference.R$styleable: int FontFamilyFont_android_ttcIndex +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchMinWidth +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void dispose() +android.didikee.donate.R$layout: int abc_search_dropdown_item_icons_2line +okhttp3.internal.cache.DiskLruCache$Editor: okhttp3.internal.cache.DiskLruCache$Entry entry +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Large_Inverse +androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$styleable: int RangeSlider_minSeparation +okhttp3.internal.http2.Hpack$Reader: okhttp3.internal.http2.Header[] dynamicTable +okhttp3.RequestBody$1: void writeTo(okio.BufferedSink) +com.google.android.gms.common.internal.zau: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$style: int Theme_Design_Light +android.didikee.donate.R$styleable: int SearchView_voiceIcon +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: MfForecastResult$DailyForecast$Sun() +wangdaye.com.geometricweather.R$styleable: int[] Motion +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +com.google.android.material.R$styleable: int LinearLayoutCompat_android_weightSum +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_tileMode +james.adaptiveicon.R$attr: int alertDialogCenterButtons +androidx.appcompat.R$styleable: int Toolbar_titleMarginTop +okio.RealBufferedSource$1: void close() +com.google.android.material.R$styleable: int CompoundButton_buttonTintMode +com.google.android.gms.location.LocationRequest +okhttp3.internal.ws.RealWebSocket: boolean send(okio.ByteString,int) +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderFetchTimeout +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_max +com.turingtechnologies.materialscrollbar.R$drawable: int abc_vector_test +okhttp3.internal.Util: Util() +androidx.vectordrawable.animated.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.String TABLENAME +androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$layout: int abc_search_dropdown_item_icons_2line +io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,io.reactivex.functions.Function) +james.adaptiveicon.R$style: int Widget_AppCompat_TextView_SpinnerItem +androidx.customview.R$id: int actions +com.google.android.material.R$attr: int placeholderText +androidx.drawerlayout.R$id: int italic +com.jaredrummler.android.colorpicker.R$attr: int colorBackgroundFloating +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_queryBackground +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontStyle +androidx.appcompat.R$style: int Widget_AppCompat_ActionMode +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date moonriseTime +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteSelector$Selection routeSelection +androidx.lifecycle.LiveData: java.lang.Runnable mPostValueRunnable +androidx.constraintlayout.widget.R$id: int italic +com.google.android.material.R$dimen: int abc_text_size_large_material +okhttp3.internal.ws.RealWebSocket: void failWebSocket(java.lang.Exception,okhttp3.Response) +cyanogenmod.weather.WeatherLocation$1 +io.reactivex.exceptions.CompositeException: CompositeException(java.lang.Throwable[]) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox +androidx.constraintlayout.widget.R$attr: int hideOnContentScroll +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit KN +james.adaptiveicon.R$layout: int abc_dialog_title_material +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getGrassLevel() +androidx.appcompat.R$id: int icon_group +com.turingtechnologies.materialscrollbar.R$drawable: R$drawable() +androidx.constraintlayout.helper.widget.Flow: void setFirstVerticalBias(float) +wangdaye.com.geometricweather.R$attr: int buttonBarStyle +androidx.constraintlayout.widget.R$dimen: int abc_dialog_title_divider_material +wangdaye.com.geometricweather.R$dimen: int subtitle_text_size +wangdaye.com.geometricweather.R$styleable: int[] AppCompatTextView +androidx.customview.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating +okio.Buffer$UnsafeCursor: boolean readWrite +com.xw.repo.bubbleseekbar.R$dimen: int compat_button_padding_horizontal_material +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +com.amap.api.location.AMapLocation: int v +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void rstStream(int,okhttp3.internal.http2.ErrorCode) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer LEFT_CLOSE +com.tencent.bugly.proguard.ah: java.lang.String d +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: float getMax() +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_recyclerView +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyBottomRight +androidx.vectordrawable.animated.R$id: int blocking +io.reactivex.Observable: io.reactivex.Observable scanWith(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias +com.tencent.bugly.crashreport.crash.d: d(android.content.Context) +androidx.preference.ListPreference +androidx.appcompat.resources.R$id: int accessibility_custom_action_14 +androidx.cardview.R$style +androidx.preference.R$styleable: int AppCompatTheme_panelBackground +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.google.android.material.R$drawable: int abc_ratingbar_material +com.tencent.bugly.proguard.p: int a(java.lang.String,java.lang.String,java.lang.String[],com.tencent.bugly.proguard.o,boolean) +cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetBottom +androidx.appcompat.R$styleable: int[] PopupWindowBackgroundState +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setVibratorIntensity +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconVisible +android.didikee.donate.R$style: int Theme_AppCompat_DialogWhenLarge +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +wangdaye.com.geometricweather.R$color: int abc_tint_default +cyanogenmod.app.Profile: void setAirplaneMode(cyanogenmod.profiles.AirplaneModeSettings) +cyanogenmod.app.PartnerInterface: boolean setZenMode(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.lang.String getUnit() +androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context,android.util.AttributeSet) +james.adaptiveicon.R$dimen: int notification_small_icon_size_as_large +okhttp3.Cache: int writeSuccessCount +androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +com.google.android.material.R$attr: int circularInset +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_circularRadius +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String binarySearchBytes(byte[],byte[][],int) +androidx.legacy.coreutils.R$styleable: int GradientColorItem_android_color +androidx.viewpager.R$dimen: int compat_notification_large_icon_max_height +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupMenu_Overflow +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabSelectedTextColor +io.reactivex.observers.DisposableObserver: void dispose() +com.google.android.material.R$attr: int layout_constraintCircle +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour valueOf(java.lang.String) +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setCrashHandleCallback(com.tencent.bugly.BuglyStrategy$a) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul3H +com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +wangdaye.com.geometricweather.R$string: int feedback_request_location_permission_failed +androidx.appcompat.R$attr: int windowFixedHeightMajor +okhttp3.Route: boolean requiresTunnel() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onMenuItemSelected(int,android.view.MenuItem) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabText +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle +wangdaye.com.geometricweather.R$string: int common_signin_button_text_long +com.google.android.material.R$attr: int behavior_skipCollapsed +androidx.constraintlayout.widget.R$attr: int paddingStart +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_RC4_128_SHA +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_end +androidx.constraintlayout.widget.R$dimen: int abc_control_inset_material +androidx.core.app.RemoteActionCompatParcelizer: RemoteActionCompatParcelizer() +com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_android_foregroundGravity +androidx.constraintlayout.widget.R$attr: int actionButtonStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView +okio.Buffer: okio.Buffer write(okio.ByteString) +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder hostnameVerifier(javax.net.ssl.HostnameVerifier) +androidx.appcompat.R$styleable: int Spinner_android_dropDownWidth +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog_MinWidth +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: WeatherEntityDao$Properties() +com.bumptech.glide.R$string: R$string() +cyanogenmod.themes.ThemeChangeRequest$RequestType: ThemeChangeRequest$RequestType(java.lang.String,int) +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void addScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +james.adaptiveicon.R$layout: R$layout() +com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_pressed +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void setResource(io.reactivex.disposables.Disposable) +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_MOBILEDATA +wangdaye.com.geometricweather.R$drawable: int ic_android +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_DAILY_OVERVIEW +com.turingtechnologies.materialscrollbar.R$attr: int editTextBackground +com.google.android.material.textfield.TextInputLayout: android.graphics.Typeface getTypeface() +com.github.rahatarmanahmed.cpv.BuildConfig: int VERSION_CODE +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List chuanyi +android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +wangdaye.com.geometricweather.R$attr: int chipMinHeight +androidx.loader.R$styleable: int ColorStateListItem_android_alpha +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderAuthority +androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$id: int mtrl_picker_header_toggle +james.adaptiveicon.R$style: int Base_Theme_AppCompat_DialogWhenLarge +com.tencent.bugly.proguard.ao: java.lang.String b +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getRippleColor() +io.reactivex.internal.subscriptions.SubscriptionHelper: void request(long) +james.adaptiveicon.R$attr: int logo +com.turingtechnologies.materialscrollbar.TouchScrollBar: int getMode() +androidx.constraintlayout.widget.R$layout: int abc_expanded_menu_layout +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: void setX(java.lang.String) +androidx.transition.R$attr: int fontProviderCerts +okhttp3.internal.http.HttpCodec: okio.Sink createRequestBody(okhttp3.Request,long) +okhttp3.FormBody$Builder: FormBody$Builder() +androidx.constraintlayout.widget.R$styleable: int MenuItem_actionViewClass wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_USER_KEY -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_subtitle -androidx.viewpager2.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBaseline_creator -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String hourlyForecast -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -com.turingtechnologies.materialscrollbar.R$attr: int editTextStyle -com.google.android.gms.common.SignInButton: SignInButton(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String ShortPhrase +wangdaye.com.geometricweather.R$attr: int onShow +wangdaye.com.geometricweather.R$drawable: int cpv_btn_background +cyanogenmod.app.ILiveLockScreenManager: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +okio.Okio$2: okio.Timeout val$timeout +androidx.appcompat.R$styleable: int AppCompatTheme_editTextBackground +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder addConverterFactory(retrofit2.Converter$Factory) +cyanogenmod.externalviews.ExternalView +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_anchor +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature +com.google.gson.stream.JsonReader: void endArray() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum() +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customColorDrawableValue +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_elevation +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeStyle +android.didikee.donate.R$styleable: int ActionBar_homeAsUpIndicator +wangdaye.com.geometricweather.R$drawable: int notif_temp_15 +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startColor +okhttp3.CertificatePinner$Pin: java.lang.String hashAlgorithm +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_overflow_padding_start_material +com.tencent.bugly.crashreport.common.info.a: boolean S() +androidx.constraintlayout.widget.R$styleable: R$styleable() +james.adaptiveicon.R$styleable: int SearchView_android_maxWidth +retrofit2.BuiltInConverters$UnitResponseBodyConverter: kotlin.Unit convert(okhttp3.ResponseBody) +androidx.loader.R$style: int TextAppearance_Compat_Notification +androidx.viewpager2.R$styleable: int GradientColor_android_gradientRadius +androidx.appcompat.R$color: int material_grey_100 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: java.util.List getBrands() +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMenuItemView +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.concurrent.atomic.AtomicReference upstream +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotation +com.xw.repo.bubbleseekbar.R$style: int Base_V23_Theme_AppCompat_Light +androidx.appcompat.widget.LinearLayoutCompat: void setGravity(int) +okhttp3.internal.Util: java.lang.String canonicalizeHost(java.lang.String) +okhttp3.MediaType: MediaType(java.lang.String,java.lang.String,java.lang.String,java.lang.String) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchGenericMotionEvent(android.view.MotionEvent) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: java.lang.String Name +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light_NoActionBar +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_maxButtonHeight +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitationProbability +androidx.cardview.R$styleable: int CardView_cardUseCompatPadding +com.jaredrummler.android.colorpicker.R$attr: int subtitle +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: void run() +cyanogenmod.providers.CMSettings$Secure: java.lang.String ADVANCED_REBOOT +com.bumptech.glide.R$attr: int statusBarBackground +android.didikee.donate.R$color: int material_grey_300 +com.turingtechnologies.materialscrollbar.R$attr: int colorPrimary +androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView: void setSelector(android.graphics.drawable.Drawable) +okhttp3.OkHttpClient$Builder +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +james.adaptiveicon.R$styleable: int AppCompatTheme_checkboxStyle +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.Window access$200(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric() +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_handleColor +com.google.android.material.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type[] values() +androidx.lifecycle.ProcessLifecycleOwner$2: ProcessLifecycleOwner$2(androidx.lifecycle.ProcessLifecycleOwner) +androidx.work.impl.workers.ConstraintTrackingWorker +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_Icon +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableTop +androidx.appcompat.R$styleable: int CompoundButton_buttonTint +com.amap.api.location.DPoint$1 +wangdaye.com.geometricweather.R$attr: int transitionEasing +okhttp3.internal.http2.Http2Stream$FramingSink: boolean closed okhttp3.internal.http.HttpHeaders: boolean varyMatches(okhttp3.Response,okhttp3.Headers,okhttp3.Request) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: MfWarningsResult$WarningMaxCountItems() -com.baidu.location.e.n: java.util.List a(org.json.JSONObject,java.lang.String,int) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitationDuration(java.lang.Float) -androidx.appcompat.R$styleable: int LinearLayoutCompat_showDividers -cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String HOUR -com.tencent.bugly.crashreport.crash.h5.a: java.lang.String e -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: ObservableWithLatestFromMany$WithLatestFromObserver(io.reactivex.Observer,io.reactivex.functions.Function,int) -androidx.appcompat.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +com.jaredrummler.android.colorpicker.R$style: int Base_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.R$id: int notification_base_titleContainer +com.bumptech.glide.load.engine.GlideException: java.lang.Throwable fillInStackTrace() +okhttp3.MultipartBody: okhttp3.MediaType PARALLEL +androidx.preference.R$dimen: int tooltip_vertical_padding +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +androidx.appcompat.widget.ActionMenuPresenter$ActionButtonSubmenu +android.didikee.donate.R$id: int collapseActionView +okhttp3.RequestBody$2: long contentLength() +androidx.activity.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstHorizontalStyle +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_transitionEasing +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type PRECIPITATION +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ProgressBar +com.tencent.bugly.a +androidx.constraintlayout.widget.R$id: int action_bar_subtitle +androidx.preference.R$id: int icon_group +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatElevationResource(int) +cyanogenmod.app.suggest.IAppSuggestProvider: java.util.List getSuggestions(android.content.Intent) +com.google.android.material.R$dimen: int mtrl_tooltip_minWidth +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2 +androidx.work.R$id: int notification_background +androidx.lifecycle.extensions.R$id: int notification_background +com.xw.repo.bubbleseekbar.R$dimen: int notification_right_side_padding_top +retrofit2.ParameterHandler$RawPart: retrofit2.ParameterHandler$RawPart INSTANCE +com.google.android.material.appbar.AppBarLayout: int getMinimumHeightForVisibleOverlappingContent() +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_EditText +okhttp3.internal.http2.Http2Connection$PingRunnable: Http2Connection$PingRunnable(okhttp3.internal.http2.Http2Connection,boolean,int,int) +androidx.preference.R$dimen: int tooltip_precise_anchor_extra_offset +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionButtonStyle +androidx.preference.R$styleable: int AppCompatTextView_drawableEndCompat +cyanogenmod.providers.CMSettings$Secure: java.lang.String LIVE_LOCK_SCREEN_ENABLED +com.google.android.material.R$attr: int titleTextStyle +okio.BufferedSource: short readShort() +james.adaptiveicon.R$attr: int backgroundSplit +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getCityId() +com.tencent.bugly.proguard.n: com.tencent.bugly.proguard.n a(android.content.Context) +androidx.constraintlayout.widget.R$drawable: int abc_seekbar_tick_mark_material +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getUnitId() +james.adaptiveicon.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String getY() +wangdaye.com.geometricweather.R$drawable: int shortcuts_thunderstorm_foreground +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +okio.ForwardingTimeout +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition BELOW_LINE +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Icon +com.google.android.material.R$id: int visible +wangdaye.com.geometricweather.R$layout: int widget_trend_hourly +com.google.android.material.R$styleable: int ShapeableImageView_shapeAppearanceOverlay +androidx.swiperefreshlayout.R$dimen: int notification_top_pad +okhttp3.Dns$1 +okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithIncrementalIndexingNewName() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.functions.Function mapper +okio.GzipSource: void consumeHeader() +androidx.preference.R$attr: int dropDownListViewStyle +okio.RealBufferedSource: long readAll(okio.Sink) +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler c(com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler) +com.google.android.material.R$styleable: int AppCompatTheme_switchStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_101 +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder scheme(java.lang.String) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl access$000(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitation +androidx.appcompat.widget.SearchView: int getPreferredHeight() +com.google.android.material.R$dimen: int material_emphasis_high_type +cyanogenmod.app.Profile: cyanogenmod.profiles.StreamSettings getSettingsForStream(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours Past18Hours +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval[] values() +androidx.lifecycle.LiveData$ObserverWrapper: int mLastVersion +wangdaye.com.geometricweather.R$id: int incoming +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: long serialVersionUID +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int activeCount +okhttp3.internal.connection.StreamAllocation: boolean reportedAcquired +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_large_material +android.didikee.donate.R$style: int Widget_AppCompat_ActionButton_Overflow +com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_default +androidx.appcompat.R$dimen: int abc_control_inset_material +okhttp3.Headers +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1 +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: AccuCurrentResult$PrecipitationSummary$Precipitation() +com.google.android.material.R$id: int square +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_isThemeApplying +com.github.rahatarmanahmed.cpv.CircularProgressView: void setIndeterminate(boolean) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.util.AtomicThrowable errors +androidx.core.R$styleable: int FontFamilyFont_android_fontStyle +androidx.hilt.work.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String country +com.jaredrummler.android.colorpicker.R$attr: int searchIcon +androidx.constraintlayout.widget.R$drawable: int abc_popup_background_mtrl_mult +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: ChineseCityEntity() +cyanogenmod.app.StatusBarPanelCustomTile$1: java.lang.Object[] newArray(int) +okhttp3.internal.http2.Hpack +com.tencent.bugly.crashreport.common.info.a: java.util.Map V +wangdaye.com.geometricweather.R$xml: int perference_appearance +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_weight +okio.AsyncTimeout: void scheduleTimeout(okio.AsyncTimeout,long,boolean) +com.turingtechnologies.materialscrollbar.R$id: int message +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: boolean IsDayTime +androidx.hilt.lifecycle.R$color: int notification_action_color_filter +cyanogenmod.profiles.ConnectionSettings$1: cyanogenmod.profiles.ConnectionSettings createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Light_Dialog +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String Link +okhttp3.internal.ws.RealWebSocket: okhttp3.Request request() +okio.Util: boolean arrayRangeEquals(byte[],int,byte[],int,int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_7 +com.tencent.bugly.proguard.p: long a(java.lang.String,android.content.ContentValues,com.tencent.bugly.proguard.o) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: int UnitType +com.google.android.material.R$styleable: int Layout_layout_goneMarginBottom +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Light +com.google.android.material.R$style: int TestThemeWithLineHeight +james.adaptiveicon.R$styleable: int[] ActionMode +okhttp3.internal.cache.DiskLruCache: void initialize() +wangdaye.com.geometricweather.R$styleable: int Motion_pathMotionArc +cyanogenmod.app.ThemeVersion: int getMinSupportedVersion() +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_popupTheme +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.internal.util.AtomicThrowable error +wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_light +okio.HashingSource +wangdaye.com.geometricweather.common.basic.models.weather.Daily: float getHoursOfSun() +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl build() +com.google.android.material.R$attr: int labelStyle +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float snow +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dark +com.tencent.bugly.crashreport.common.info.a: void d(java.lang.String) +okhttp3.OkHttpClient: okhttp3.CertificatePinner certificatePinner() +androidx.recyclerview.R$drawable: int notification_bg_normal +com.google.android.material.R$id: int accessibility_custom_action_8 +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalGap +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +com.google.android.material.R$dimen: int mtrl_badge_long_text_horizontal_padding +com.tencent.bugly.proguard.ap: java.util.Map g +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitation +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider mExternalViewProvider +cyanogenmod.profiles.RingModeSettings: java.lang.String getValue() +androidx.lifecycle.Lifecycling$1: Lifecycling$1(androidx.lifecycle.LifecycleEventObserver) +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_background +io.reactivex.disposables.ReferenceDisposable +androidx.constraintlayout.widget.R$attr: int paddingEnd +retrofit2.Platform$Android: java.util.concurrent.Executor defaultCallbackExecutor() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: CaiYunMainlyResult$AlertsBean$DefenseBean() +com.xw.repo.bubbleseekbar.R$dimen: int abc_button_inset_vertical_material +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_start +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_normal_material_dark +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue getOrCreateQueue() +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +com.tencent.bugly.crashreport.CrashReport: void setSdkExtraData(android.content.Context,java.lang.String,java.lang.String) +com.amap.api.fence.GeoFence$1 +androidx.appcompat.R$style: int Theme_AppCompat_DayNight +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +com.jaredrummler.android.colorpicker.R$attr: int buttonPanelSideLayout +androidx.constraintlayout.widget.R$attr: int collapseContentDescription +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +com.google.android.gms.base.R$attr: int buttonSize +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_popupTheme +androidx.appcompat.R$style: int TextAppearance_AppCompat_Title +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginBottom +androidx.constraintlayout.widget.ConstraintLayout: void setMaxWidth(int) +cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.AppSuggestManager getInstance(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int CardView_cardUseCompatPadding +okhttp3.internal.cache.DiskLruCache +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_weight +androidx.loader.R$styleable: R$styleable() +retrofit2.ParameterHandler$Query: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_swoop_duration +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.HistoryEntity) +com.turingtechnologies.materialscrollbar.R$attr: int cardPreventCornerOverlap +com.google.android.material.R$attr: int transitionFlags +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCopyDrawable +androidx.preference.R$attr: int buttonGravity +com.xw.repo.bubbleseekbar.R$attr: int paddingTopNoTitle +okhttp3.HttpUrl: void namesAndValuesToQueryString(java.lang.StringBuilder,java.util.List) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void run() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_controlBackground +androidx.appcompat.R$id: int action_bar_spinner +com.jaredrummler.android.colorpicker.R$attr: int showTitle +com.google.android.material.R$drawable: int abc_scrubber_primary_mtrl_alpha +com.google.android.material.radiobutton.MaterialRadioButton +com.tencent.bugly.BuglyStrategy: java.lang.String getAppPackageName() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Invalid +androidx.appcompat.R$layout: int select_dialog_multichoice_material +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Body2 +io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,int) +androidx.dynamicanimation.R$dimen +retrofit2.Retrofit$Builder: retrofit2.Platform platform +androidx.preference.R$attr: int spinBars +com.google.android.material.R$drawable: int abc_text_select_handle_left_mtrl_dark +cyanogenmod.app.CustomTile$ExpandedItem$1: java.lang.Object[] newArray(int) +androidx.preference.R$styleable: int Preference_android_persistent +com.google.android.material.R$id: int textinput_counter +androidx.appcompat.R$id: int forever +com.google.android.material.R$attr: int colorPrimarySurface +wangdaye.com.geometricweather.R$attr: int contrast +wangdaye.com.geometricweather.R$id: int notification_big_week_1 +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_80 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric Metric +io.reactivex.Observable: io.reactivex.Observable retryUntil(io.reactivex.functions.BooleanSupplier) +android.didikee.donate.R$attr: int maxButtonHeight +com.google.android.material.card.MaterialCardView: void setUseCompatPadding(boolean) +androidx.appcompat.R$layout: int abc_activity_chooser_view +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.Observer downstream +com.tencent.bugly.proguard.v: void run() +retrofit2.Response +com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.animation.MotionSpec getHideMotionSpec() +com.amap.api.location.AMapLocation: java.lang.String n(com.amap.api.location.AMapLocation,java.lang.String) +com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Filter +wangdaye.com.geometricweather.R$attr: int colorAccent +james.adaptiveicon.R$attr: int gapBetweenBars +com.google.android.material.timepicker.TimePickerView: TimePickerView(android.content.Context,android.util.AttributeSet) +androidx.transition.R$styleable: int GradientColor_android_endY +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void otherError(java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int fixed +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getReadableDb() +com.google.android.material.R$dimen: int abc_action_bar_stacked_max_height +org.greenrobot.greendao.AbstractDaoMaster: int getSchemaVersion() +com.turingtechnologies.materialscrollbar.R$attr: int checkedIconVisible +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_searchViewStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial Imperial +com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableCompat +wangdaye.com.geometricweather.R$drawable: int notif_temp_66 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setEn_US(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean getPrecipitation() +okhttp3.internal.cache2.Relay: okio.ByteString metadata +wangdaye.com.geometricweather.R$attr: int waveOffset +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer cloudCover +wangdaye.com.geometricweather.R$drawable: int notif_temp_37 +james.adaptiveicon.R$styleable: int AppCompatTextView_fontFamily +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$id: int mtrl_calendar_day_selector_frame +androidx.constraintlayout.widget.R$attr: int actionModeCutDrawable +com.google.android.material.progressindicator.ProgressIndicator: void setIndeterminate(boolean) +wangdaye.com.geometricweather.R$attr: int minHideDelay +androidx.coordinatorlayout.R$id: int italic +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_TextView_SpinnerItem +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$string: int common_open_on_phone +com.tencent.bugly.a: void onDbUpgrade(android.database.sqlite.SQLiteDatabase,int,int) +wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_weight +wangdaye.com.geometricweather.R$attr: int tabIndicatorColor +androidx.fragment.R$styleable: int[] ColorStateListItem +androidx.dynamicanimation.R$dimen: int notification_small_icon_size_as_large +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long count +com.google.android.material.R$styleable: int[] TabItem +androidx.appcompat.widget.ActionBarOverlayLayout: int getActionBarHideOffset() +com.google.gson.JsonParseException: JsonParseException(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_inflatedId +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.work.R$dimen: int compat_button_inset_horizontal_material +com.jaredrummler.android.colorpicker.R$string: int abc_toolbar_collapse_description +androidx.constraintlayout.widget.R$drawable: int abc_switch_thumb_material +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_android_textAppearance +okio.RealBufferedSink: void flush() +cyanogenmod.externalviews.ExternalViewProviderService: void onCreate() +okhttp3.EventListener: void dnsStart(okhttp3.Call,java.lang.String) +com.google.android.material.R$styleable: int AppCompatTheme_actionMenuTextAppearance +wangdaye.com.geometricweather.R$id: int shades_layout +androidx.preference.R$style: int TextAppearance_AppCompat_Display2 +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginEnd +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setStatus(int) +androidx.work.R$id: int blocking +androidx.vectordrawable.R$color: int secondary_text_default_material_light +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getWindowAnimations() +com.amap.api.fence.GeoFence: float l +androidx.appcompat.R$id: int icon +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.util.concurrent.CountDownLatch readCompleteLatch +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_enabled +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getUnitId() +androidx.appcompat.app.ActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent +androidx.activity.R$id: int accessibility_custom_action_15 +androidx.appcompat.R$styleable: int Toolbar_navigationIcon +com.jaredrummler.android.colorpicker.R$id: int shades_divider +wangdaye.com.geometricweather.db.entities.LocationEntity: float getLatitude() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_translation_z_hovered_focused +androidx.constraintlayout.widget.R$attr: int actionBarDivider +wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_text_padding_left +androidx.coordinatorlayout.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias +androidx.preference.R$style: int Preference_Category_Material +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver +androidx.constraintlayout.widget.R$styleable: int[] ImageFilterView +androidx.preference.R$styleable: int[] AppCompatSeekBar +wangdaye.com.geometricweather.R$drawable: int notification_bg +wangdaye.com.geometricweather.settings.dialogs.ProvidersPreviewerDialog +okhttp3.internal.http2.Http2Writer: void rstStream(int,okhttp3.internal.http2.ErrorCode) +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DialogWhenLarge +com.xw.repo.bubbleseekbar.R$attr: int coordinatorLayoutStyle +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetBottom +wangdaye.com.geometricweather.R$styleable: int ActivityChooserView_initialActivityCount +com.amap.api.location.AMapLocationClient: boolean isStarted() androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchTextAppearance -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property CityId -wangdaye.com.geometricweather.R$id: int container_main_details_recyclerView -com.tencent.bugly.proguard.u: void a(java.lang.Runnable,boolean,boolean,long) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar -okhttp3.HttpUrl$Builder: int effectivePort() -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType NONE -com.google.android.material.R$id: int material_hour_tv -androidx.constraintlayout.widget.R$color: int bright_foreground_inverse_material_light -com.google.android.material.R$styleable: int NavigationView_android_background -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: int getStatus() -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModePasteDrawable -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_selectableItemBackground -wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaContainer -wangdaye.com.geometricweather.R$string: int visibility -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: AccuCurrentResult$PrecipitationSummary$Past6Hours() -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void drain() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_fontVariationSettings -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void request(long) -wangdaye.com.geometricweather.R$drawable: int ic_keyboard_black_24dp -okhttp3.internal.cache.FaultHidingSink: void close() -cyanogenmod.util.ColorUtils: int dropAlpha(int) -androidx.fragment.R$drawable: int notification_bg_normal_pressed -androidx.swiperefreshlayout.R$dimen: int notification_action_text_size -com.amap.api.fence.GeoFenceManagerBase -com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode[] values() -androidx.appcompat.R$attr: int arrowShaftLength -com.google.android.material.R$styleable: int NavigationView_itemBackground -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_36dp -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: double Value -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_day -androidx.viewpager.widget.PagerTabStrip -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_min -okhttp3.internal.http1.Http1Codec: int HEADER_LIMIT -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial -okio.HashingSource: okio.HashingSource hmacSha256(okio.Source,okio.ByteString) -androidx.vectordrawable.R$id: int tag_accessibility_heading -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getDailyForecast() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderQuery -com.google.android.material.circularreveal.CircularRevealFrameLayout -wangdaye.com.geometricweather.R$styleable: int Chip_iconStartPadding -androidx.lifecycle.SavedStateViewModelFactory: android.os.Bundle mDefaultArgs -androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -androidx.lifecycle.LiveData: java.lang.Runnable mPostValueRunnable -james.adaptiveicon.R$styleable: int ColorStateListItem_android_color -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationY -wangdaye.com.geometricweather.db.entities.LocationEntity: float longitude -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontStyle -android.didikee.donate.R$styleable: int ActionBar_titleTextStyle -com.google.android.material.tabs.TabLayout: int getDefaultHeight() -cyanogenmod.weather.WeatherLocation: java.lang.String getState() -androidx.appcompat.R$drawable: int btn_radio_off_mtrl -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_visible -com.google.android.material.R$styleable: int AppCompatTheme_panelMenuListTheme -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_titleTextStyle -com.google.android.material.R$styleable: int MotionHelper_onHide -android.didikee.donate.R$attr: int showText -com.google.android.material.R$styleable: int FontFamily_fontProviderPackage -com.google.android.material.R$attr: int verticalOffset -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Listener listener -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy UPPER_CAMEL_CASE_WITH_SPACES -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_useSimpleSummaryProvider -com.google.android.material.R$styleable: int Layout_layout_constraintGuide_percent -wangdaye.com.geometricweather.R$attr: int boxStrokeColor -androidx.constraintlayout.widget.R$id: int end -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: AccuAlertResult$Color() -wangdaye.com.geometricweather.R$attr: int contentPaddingRight -androidx.viewpager.R$id: int action_image -com.google.android.material.R$dimen: int abc_cascading_menus_min_smallest_width -com.jaredrummler.android.colorpicker.R$dimen: int hint_pressed_alpha_material_light -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,int) -com.google.android.material.R$styleable: int Constraint_flow_horizontalStyle -james.adaptiveicon.R$styleable: int AppCompatTheme_android_windowAnimationStyle -com.google.android.material.R$attr: int waveDecay -androidx.preference.R$styleable: int DrawerArrowToggle_arrowHeadLength -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig chineseCityEntityDaoConfig -com.google.android.material.R$dimen: int material_text_view_test_line_height_override -okhttp3.OkHttpClient$1: okhttp3.Call newWebSocketCall(okhttp3.OkHttpClient,okhttp3.Request) -wangdaye.com.geometricweather.R$style: int cpv_ColorPickerViewStyle -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState PAUSED -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: HourlyEntityDao(org.greenrobot.greendao.internal.DaoConfig) -wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents -wangdaye.com.geometricweather.R$drawable: int cpv_btn_background -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: int getWindowType() -android.didikee.donate.R$dimen: int abc_text_size_display_1_material -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTint -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon -com.google.android.material.R$dimen: int mtrl_snackbar_background_overlay_color_alpha -com.bumptech.glide.R$dimen: R$dimen() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: java.lang.String Unit -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherText -okio.Buffer: long indexOf(okio.ByteString,long) -cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri FORECAST_WEATHER_URI -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX() -androidx.preference.R$style: int ThemeOverlay_AppCompat -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String nextAT() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonPhaseDescription -com.google.gson.internal.LinkedTreeMap: java.lang.Object remove(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$attr: int suggestionRowLayout -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogTheme -okio.SegmentedByteString: okio.ByteString toAsciiUppercase() -okhttp3.internal.ws.RealWebSocket: java.util.ArrayDeque pongQueue -wangdaye.com.geometricweather.R$string: int settings_notification_hide_big_view_on -james.adaptiveicon.R$styleable: int FontFamily_fontProviderCerts -com.google.android.material.R$styleable: int MockView_mock_diagonalsColor -androidx.lifecycle.extensions.R$dimen: int notification_large_icon_height -androidx.constraintlayout.widget.R$styleable: int Transform_android_transformPivotX -okhttp3.internal.http2.Http2Codec: okhttp3.Interceptor$Chain chain -okhttp3.OkHttpClient: okhttp3.Cache cache() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_22 -cyanogenmod.hardware.CMHardwareManager: int FEATURE_LONG_TERM_ORBITS -com.turingtechnologies.materialscrollbar.R$attr: int maxActionInlineWidth -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type SLACK -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_behavior -androidx.core.R$attr: int ttcIndex -com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage[] values() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial Imperial -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum() -android.didikee.donate.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_chainUseRtl -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Large -wangdaye.com.geometricweather.R$color: int weather_source_cn -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: java.lang.Object invoke(java.lang.Object) -android.didikee.donate.R$styleable: int DrawerArrowToggle_spinBars -com.jaredrummler.android.colorpicker.R$attr: int cpv_colorShape -com.google.gson.stream.JsonWriter: java.io.Writer out -com.google.android.material.R$id: int month_navigation_fragment_toggle -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void cancel(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_adjustable -com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$drawable: int abc_switch_track_mtrl_alpha -com.google.android.material.R$dimen: int abc_text_size_caption_material -android.didikee.donate.R$attr: int titleMargin -cyanogenmod.providers.CMSettings$System: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setMinuteInterval(int) -okhttp3.CookieJar: java.util.List loadForRequest(okhttp3.HttpUrl) -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: java.lang.String modeId -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dropDownListViewStyle -retrofit2.Call: boolean isCanceled() -androidx.appcompat.widget.AppCompatRadioButton: void setButtonDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconEnabled -com.jaredrummler.android.colorpicker.R$styleable: int[] SeekBarPreference -okhttp3.internal.tls.OkHostnameVerifier: OkHostnameVerifier() -com.tencent.bugly.crashreport.inner.InnerApi: void postH5CrashAsync(java.lang.Thread,java.lang.String,java.lang.String,java.lang.String,java.util.Map) -androidx.appcompat.R$attr: int autoSizeMaxTextSize -wangdaye.com.geometricweather.R$attr: int crossfade -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy -james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog_Alert -androidx.appcompat.R$styleable: int TextAppearance_textAllCaps -wangdaye.com.geometricweather.R$dimen: int material_clock_hand_stroke_width -androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -androidx.preference.R$attr: int listPreferredItemHeight -com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int[] PopupWindow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial Imperial -wangdaye.com.geometricweather.R$dimen: int abc_text_size_title_material -okhttp3.internal.http.UnrepeatableRequestBody -com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeTopLeft -james.adaptiveicon.R$id: int title -com.jaredrummler.android.colorpicker.ColorPanelView: void setShape(int) -com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onProgressUpdate(float) -wangdaye.com.geometricweather.R$layout: int material_textinput_timepicker -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar_Colored -android.support.v4.app.INotificationSideChannel: void cancelAll(java.lang.String) -cyanogenmod.app.ThemeVersion: java.lang.String MIN_SUPPORTED_THEME_VERSION_FIELD_NAME -androidx.coordinatorlayout.R$id: int right_side -androidx.loader.R$id: int notification_main_column_container -com.amap.api.fence.GeoFence: int TYPE_POLYGON -retrofit2.ParameterHandler$Path: retrofit2.Converter valueConverter -android.didikee.donate.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -wangdaye.com.geometricweather.R$attr: int contentDescription -com.jaredrummler.android.colorpicker.R$style: int Platform_AppCompat_Light -androidx.appcompat.R$dimen: int abc_dialog_list_padding_top_no_title -okhttp3.internal.http2.Http2Reader: okio.BufferedSource source -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWindDirection() +com.google.android.material.chip.Chip: android.graphics.RectF getCloseIconTouchBounds() +okhttp3.logging.LoggingEventListener: void requestHeadersEnd(okhttp3.Call,okhttp3.Request) +androidx.coordinatorlayout.widget.CoordinatorLayout: void setVisibility(int) +androidx.dynamicanimation.R$dimen: int compat_button_padding_horizontal_material +androidx.preference.R$color: int bright_foreground_material_dark +com.google.android.material.tabs.TabLayout: int getTabMinWidth() +cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String getPackageName() +wangdaye.com.geometricweather.R$attr: int cpv_animSwoopDuration +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_orderingFromXml +com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.ValueAnimator progressAnimator +retrofit2.Retrofit: okhttp3.Call$Factory callFactory +james.adaptiveicon.R$id: int line1 +wangdaye.com.geometricweather.R$attr: int closeIconVisible +androidx.preference.R$drawable: int abc_seekbar_track_material +androidx.constraintlayout.widget.R$styleable: int View_android_theme +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: ResultObservable$ResultObserver(io.reactivex.Observer) +com.xw.repo.bubbleseekbar.R$attr: int actionBarItemBackground +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_DayNight +com.jaredrummler.android.colorpicker.R$attr: int thumbTextPadding +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintTextColor +com.google.android.material.R$styleable: int SearchView_suggestionRowLayout +androidx.preference.R$id: int accessibility_custom_action_28 +com.bumptech.glide.R$color: int ripple_material_light +com.turingtechnologies.materialscrollbar.R$id: int notification_main_column +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean setNativeAppChannel(java.lang.String) +com.google.android.material.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String unit +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weatherservice.IWeatherProviderServiceClient mClient +androidx.drawerlayout.R$styleable: int GradientColor_android_startX +androidx.activity.R$drawable: int notification_tile_bg +com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_singlechoice_material +android.didikee.donate.R$color: int secondary_text_disabled_material_dark +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL_VALIDATOR +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_container +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: int UnitType +com.google.android.material.card.MaterialCardView: void setCheckable(boolean) +wangdaye.com.geometricweather.R$style: int Preference_SwitchPreferenceCompat +com.google.android.material.R$dimen: int mtrl_btn_dialog_btn_min_width +com.jaredrummler.android.colorpicker.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: java.lang.String getWindArrow() +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_title +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps +wangdaye.com.geometricweather.R$attr: int textAppearanceListItemSmall +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar +james.adaptiveicon.R$layout: int abc_alert_dialog_button_bar_material +james.adaptiveicon.R$attr: int actionModeSelectAllDrawable +androidx.preference.R$attr: int actionProviderClass +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_9 +io.reactivex.Observable: io.reactivex.Observable zipArray(io.reactivex.functions.Function,boolean,int,io.reactivex.ObservableSource[]) +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: int TRANSACTION_getSuggestions +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_0 +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchPadding +com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierDirection +androidx.vectordrawable.animated.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_Icon +com.jaredrummler.android.colorpicker.R$styleable: int[] Preference +okhttp3.logging.HttpLoggingInterceptor: HttpLoggingInterceptor(okhttp3.logging.HttpLoggingInterceptor$Logger) +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_transitionPathRotate +androidx.cardview.R$attr: R$attr() +com.google.android.material.R$drawable: int abc_scrubber_track_mtrl_alpha +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_15 +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void pushPromise(int,int,java.util.List) +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date sunsetTime +okhttp3.Cache$Entry: int code +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onPause +androidx.hilt.R$attr: int fontProviderFetchTimeout +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onTimeout(long) +com.tencent.bugly.proguard.p: boolean a(com.tencent.bugly.proguard.r) +androidx.preference.R$attr: int fastScrollVerticalThumbDrawable +androidx.appcompat.R$styleable: int ActionBar_height +androidx.coordinatorlayout.R$id: int accessibility_custom_action_18 +okhttp3.Cookie: boolean pathMatch(okhttp3.HttpUrl,java.lang.String) +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_subtitle_top_margin_material +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HEAVY_SNOW +androidx.activity.R$attr: int fontWeight +android.didikee.donate.R$styleable: int[] LinearLayoutCompat_Layout +androidx.preference.R$styleable: int View_android_focusable +com.jaredrummler.android.colorpicker.R$attr: int titleMarginEnd +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void next(java.lang.Object) +com.bumptech.glide.R$style: R$style() +com.jaredrummler.android.colorpicker.R$drawable: int abc_ab_share_pack_mtrl_alpha +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: android.os.IBinder mRemote +androidx.appcompat.widget.ButtonBarLayout +com.turingtechnologies.materialscrollbar.R$styleable: int[] CoordinatorLayout_Layout +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_scaleX +androidx.appcompat.R$styleable: int ActionBar_contentInsetEndWithActions +androidx.preference.R$styleable: int AlertDialog_singleChoiceItemLayout +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.hilt.work.R$bool: int enable_system_foreground_service_default +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIconTintList(android.content.res.ColorStateList) +com.google.android.material.R$styleable: int Slider_trackColorActive +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric +okio.Base64: java.lang.String encode(byte[],byte[]) +wangdaye.com.geometricweather.R$attr: int bottom_text_size +com.tencent.bugly.crashreport.common.info.AppInfo: android.content.pm.PackageInfo b(android.content.Context) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_preserveIconSpacing +okhttp3.internal.http2.PushObserver$1: boolean onData(int,okio.BufferedSource,int,boolean) +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_default_mtrl_alpha +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.Map lefts +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService: ForegroundTomorrowForecastUpdateService() +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_backgroundTint +com.xw.repo.bubbleseekbar.R$string: int abc_capital_on +wangdaye.com.geometricweather.R$dimen: int abc_text_size_button_material +androidx.constraintlayout.widget.R$styleable: int[] ConstraintSet +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_elevation_material +cyanogenmod.hardware.ICMHardwareService: boolean unRegisterThermalListener(cyanogenmod.hardware.IThermalListenerCallback) +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getBackgroundColorStart() +wangdaye.com.geometricweather.R$id: int shades_divider +com.bumptech.glide.GeneratedAppGlideModule: GeneratedAppGlideModule() +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: java.lang.Float temperature +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUpdateDate(java.util.Date) +com.bumptech.glide.integration.okhttp.R$attr: int layout_behavior +wangdaye.com.geometricweather.R$styleable: int[] MaterialScrollBar +androidx.constraintlayout.widget.R$attr: int subMenuArrow +com.google.android.material.R$dimen: int mtrl_calendar_header_toggle_margin_top +okhttp3.internal.connection.ConnectionSpecSelector: boolean connectionFailed(java.io.IOException) +okhttp3.internal.http2.Http2Codec: void finishRequest() +androidx.vectordrawable.animated.R$drawable: int notification_bg +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int otherState +wangdaye.com.geometricweather.R$styleable: int[] MaterialButton +james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context,android.util.AttributeSet) +okhttp3.MultipartBody: long writeOrCountBytes(okio.BufferedSink,boolean) +james.adaptiveicon.R$styleable: int ActionBar_indeterminateProgressStyle +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_TextView +wangdaye.com.geometricweather.R$color: int design_default_color_on_primary +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_36dp +cyanogenmod.app.CMContextConstants: java.lang.String CM_APP_SUGGEST_SERVICE +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean cancelled +android.didikee.donate.R$attr: int popupTheme +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onSuccess(java.lang.Object) +wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetLeft +cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(android.os.Parcel) +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber +com.google.android.material.R$styleable: int ConstraintSet_flow_lastHorizontalBias +com.turingtechnologies.materialscrollbar.R$attr: int strokeColor +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActivityChooserView +androidx.constraintlayout.widget.R$dimen: int tooltip_margin +wangdaye.com.geometricweather.R$drawable: int clock_hour_dark +androidx.appcompat.R$styleable: int AlertDialog_listLayout +com.tencent.bugly.crashreport.crash.b: void c(com.tencent.bugly.crashreport.crash.CrashDetailBean) +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthFocusedResource(int) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String power +com.tencent.bugly.crashreport.biz.b: long h +com.google.android.material.R$attr: int percentX +androidx.appcompat.R$integer: int abc_config_activityDefaultDur +cyanogenmod.app.Profile$ProfileTrigger: cyanogenmod.app.Profile$ProfileTrigger fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder authenticator(okhttp3.Authenticator) +wangdaye.com.geometricweather.R$style: int notification_subtitle_text +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +com.google.android.material.card.MaterialCardView: void setRippleColorResource(int) +wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_chainStyle +wangdaye.com.geometricweather.R$drawable: int googleg_disabled_color_18 +com.turingtechnologies.materialscrollbar.R$id: int src_over +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf +androidx.appcompat.R$style: int TextAppearance_AppCompat_Tooltip +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarDivider +com.google.android.material.R$dimen: int material_clock_size +io.reactivex.Observable: io.reactivex.Observable doOnLifecycle(io.reactivex.functions.Consumer,io.reactivex.functions.Action) +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: int requestFusion(int) +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_8 +androidx.swiperefreshlayout.R$color: int ripple_material_light +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +com.xw.repo.bubbleseekbar.R$color: int abc_btn_colored_text_material +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void dispose() +androidx.work.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String value +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy +wangdaye.com.geometricweather.R$color: int notification_background_primary +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void drain() +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: long EpochDateTime +wangdaye.com.geometricweather.db.entities.AlertEntity: void setPriority(int) +androidx.preference.R$dimen: int abc_action_button_min_width_material +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: boolean isDisposed() +androidx.coordinatorlayout.R$id: int accessibility_custom_action_5 +wangdaye.com.geometricweather.R$drawable: int notif_temp_108 +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onStart() +com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorSize(int) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onComplete() +cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(int) +com.amap.api.fence.GeoFence: float i +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +androidx.constraintlayout.widget.Guideline +androidx.hilt.R$color +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_inputType +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setAlerts(java.util.List) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconDrawable +okhttp3.HttpUrl: java.lang.String password() +com.google.android.material.R$layout: int abc_action_menu_item_layout +cyanogenmod.weather.CMWeatherManager: android.content.Context mContext +androidx.preference.R$attr: int listMenuViewStyle +androidx.preference.R$layout: int preference_information_material +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColor +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_switchTextOn +com.jaredrummler.android.colorpicker.R$style: int PreferenceFragment +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchPadding +retrofit2.ParameterHandler$Path: ParameterHandler$Path(java.lang.reflect.Method,int,java.lang.String,retrofit2.Converter,boolean) +io.reactivex.Observable: io.reactivex.Single contains(java.lang.Object) +androidx.appcompat.R$dimen: int abc_action_button_min_width_overflow_material +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_toRightOf +androidx.appcompat.R$attr: int tickMark +com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_inset_vertical_material +wangdaye.com.geometricweather.R$attr: int textAppearanceLineHeightEnabled +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_extendMotionSpec +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_text_color +wangdaye.com.geometricweather.R$styleable: int ActionBar_backgroundSplit +wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_grey +androidx.appcompat.R$style: int TextAppearance_AppCompat_Inverse +okhttp3.HttpUrl: java.lang.String queryParameterValue(int) +androidx.lifecycle.ClassesInfoCache: ClassesInfoCache() +wangdaye.com.geometricweather.R$id: int clip_vertical +androidx.appcompat.R$attr: int contentInsetRight +com.xw.repo.bubbleseekbar.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: int getStatus() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean +androidx.recyclerview.widget.RecyclerView$LayoutManager$Properties: RecyclerView$LayoutManager$Properties() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf +cyanogenmod.providers.CMSettings$System: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +com.tencent.bugly.proguard.n: long a +okhttp3.internal.http2.Http2Connection$ReaderRunnable: okhttp3.internal.http2.Http2Reader reader +cyanogenmod.weatherservice.ServiceRequestResult: void writeToParcel(android.os.Parcel,int) +androidx.preference.R$styleable: int PopupWindow_android_popupAnimationStyle +wangdaye.com.geometricweather.R$layout: int test_chip_zero_corner_radius +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String province +cyanogenmod.app.Profile: java.util.Map networkConnectionSubIds +androidx.preference.R$styleable: int SwitchPreferenceCompat_switchTextOn +okhttp3.CertificatePinner$Pin: boolean equals(java.lang.Object) +com.amap.api.location.AMapLocation: int GPS_ACCURACY_UNKNOWN +com.google.android.material.R$styleable: int BottomNavigationView_itemRippleColor +androidx.work.impl.workers.CombineContinuationsWorker: CombineContinuationsWorker(android.content.Context,androidx.work.WorkerParameters) +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintEnd_toEndOf +androidx.loader.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.R$anim: int abc_fade_in +okhttp3.internal.cache.DiskLruCache: java.io.File getDirectory() +androidx.preference.R$style: int Base_V21_Theme_AppCompat +okhttp3.internal.http1.Http1Codec: okhttp3.Headers readHeaders() +com.tencent.bugly.crashreport.common.info.AppInfo: boolean a(android.content.Context,java.lang.String) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void onDetachedFromWindow() +cyanogenmod.app.StatusBarPanelCustomTile$1: cyanogenmod.app.StatusBarPanelCustomTile[] newArray(int) +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_elevation +okhttp3.Interceptor$Chain: int readTimeoutMillis() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_LED_ON_VALIDATOR +com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_id +okhttp3.Dispatcher: java.util.concurrent.ExecutorService executorService +retrofit2.CompletableFutureCallAdapterFactory: CompletableFutureCallAdapterFactory() +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +com.xw.repo.bubbleseekbar.R$attr: int popupWindowStyle +okio.RealBufferedSource: int read(byte[]) +okhttp3.internal.http2.Http2Connection$Builder: okio.BufferedSource source +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder tlsVersions(okhttp3.TlsVersion[]) +com.google.android.material.slider.RangeSlider: void setTrackInactiveTintList(android.content.res.ColorStateList) +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DrawingDelegate getCurrentDrawingDelegate() +androidx.dynamicanimation.R$id: int text2 +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_background_transition_holo_dark +io.reactivex.internal.util.VolatileSizeArrayList: boolean containsAll(java.util.Collection) +wangdaye.com.geometricweather.common.basic.GeoDialog: GeoDialog() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSo2(java.lang.Float) +androidx.customview.R$styleable: int FontFamilyFont_ttcIndex +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_PopupMenu +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void run() +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String getNativeLog() +com.turingtechnologies.materialscrollbar.R$style: int Base_DialogWindowTitleBackground_AppCompat +wangdaye.com.geometricweather.R$styleable: int[] NavigationView +wangdaye.com.geometricweather.R$string: int key_widget_minimal_icon +com.google.android.material.R$attr: int bottomSheetDialogTheme +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String description +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: io.reactivex.internal.disposables.SequentialDisposable serial +cyanogenmod.app.CMStatusBarManager: void publishTileAsUser(java.lang.String,int,cyanogenmod.app.CustomTile,android.os.UserHandle) +androidx.recyclerview.R$styleable: int GradientColor_android_centerY +androidx.lifecycle.extensions.R$id: int action_container +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: MfForecastResult$Forecast$Rain() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: void setValue(java.lang.String) +cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(int,cyanogenmod.app.ThemeComponent,java.lang.String,int,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getSpeed() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: java.lang.String Unit +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_21 +androidx.constraintlayout.widget.R$attr: int queryHint +androidx.appcompat.widget.SwitchCompat: void setTrackTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: java.util.List getValue() +androidx.core.R$id: int action_container +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int SNOOZE_STATE +com.tencent.bugly.crashreport.common.info.a: java.util.Map aj +wangdaye.com.geometricweather.R$attr: int colorOnPrimary +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: void setType(java.lang.String) +wangdaye.com.geometricweather.R$string: int temperature +com.google.android.material.chip.Chip: void setCheckableResource(int) +androidx.constraintlayout.widget.R$attr: int panelBackground +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_off_mtrl_alpha +androidx.customview.R$layout: R$layout() +okhttp3.internal.http2.Http2Connection$4: Http2Connection$4(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,java.util.List) +io.reactivex.Observable: io.reactivex.Single last(java.lang.Object) +android.didikee.donate.R$attr: int colorPrimary +cyanogenmod.themes.IThemeService$Stub$Proxy: int getLastThemeChangeRequestType() +com.turingtechnologies.materialscrollbar.R$color: int notification_action_color_filter +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_pressed_holo_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String type +androidx.preference.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean +com.xw.repo.bubbleseekbar.R$drawable: int tooltip_frame_light +wangdaye.com.geometricweather.R$attr: int cpv_animAutostart +com.xw.repo.bubbleseekbar.R$id: int right +android.didikee.donate.R$styleable: int CompoundButton_buttonTint +com.xw.repo.bubbleseekbar.R$attr: int alphabeticModifiers +okio.ForwardingSink: void flush() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String brandId +wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Bottom_Right +wangdaye.com.geometricweather.R$styleable: int Constraint_pathMotionArc +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_progress +com.google.android.material.R$styleable: int KeyAttribute_android_transformPivotX +androidx.appcompat.resources.R$styleable: int GradientColor_android_startX +io.reactivex.Observable: io.reactivex.Observable flatMapMaybe(io.reactivex.functions.Function,boolean) +com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_weight +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView +wangdaye.com.geometricweather.R$styleable: int ViewPager2_android_orientation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windSpeedEnd +androidx.preference.R$styleable: int AppCompatTheme_dialogCornerRadius +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType[] values() +wangdaye.com.geometricweather.R$color: int cardview_shadow_start_color +okhttp3.OkHttpClient$1: java.io.IOException timeoutExit(okhttp3.Call,java.io.IOException) +wangdaye.com.geometricweather.R$style: int CardView_Light +retrofit2.HttpException: retrofit2.Response response() +androidx.appcompat.widget.Toolbar: int getContentInsetLeft() +okhttp3.Cookie: boolean hostOnly +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type BASELINE wangdaye.com.geometricweather.R$attr: int hoveredFocusedTranslationZ -com.amap.api.location.CoordinateConverter: android.content.Context b -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_switchTextOff -android.didikee.donate.R$attr: int displayOptions -androidx.preference.R$styleable: int AppCompatTheme_imageButtonStyle -wangdaye.com.geometricweather.R$id: int flip -okhttp3.internal.http2.Http2Stream: void receiveData(okio.BufferedSource,int) -androidx.preference.R$color: int preference_fallback_accent_color -okhttp3.Response: okhttp3.ResponseBody peekBody(long) -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DialogWhenLarge -com.xw.repo.bubbleseekbar.R$attr: int theme -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: double Value -com.google.android.material.R$styleable: int ActivityChooserView_initialActivityCount -okhttp3.internal.platform.Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -com.google.android.material.R$attr: int materialCalendarHeaderTitle -androidx.constraintlayout.widget.R$styleable: int Toolbar_titleTextColor -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: float getBackgroundOverlayColorAlpha() -cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CURRENT_AND_FORECAST_WEATHER_URI -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: void run() -com.google.android.material.R$layout: int mtrl_calendar_month_labeled -androidx.constraintlayout.widget.R$layout: int abc_action_mode_bar -com.google.android.material.R$styleable: int[] OnClick -androidx.constraintlayout.widget.R$id: int asConfigured -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void run() -com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingRight -okhttp3.internal.http2.Http2Connection$6: Http2Connection$6(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okio.Buffer,int,boolean) -com.xw.repo.BubbleSeekBar: void setSecondTrackColor(int) -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -androidx.legacy.coreutils.R$dimen: int compat_notification_large_icon_max_width -com.turingtechnologies.materialscrollbar.R$attr: int tabContentStart -com.google.android.material.R$dimen: int mtrl_extended_fab_icon_text_spacing -io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Runnable getWrappedRunnable() -androidx.vectordrawable.R$styleable: int[] GradientColor -okhttp3.internal.http2.Http2Stream: void waitForIo() -androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_horizontal_material -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dark -androidx.dynamicanimation.R$drawable: int notification_template_icon_low_bg -com.turingtechnologies.materialscrollbar.Indicator: int getIndicatorHeight() -okhttp3.Cookie$Builder: boolean persistent -com.google.android.material.R$attr: int textAppearanceSubtitle1 -cyanogenmod.hardware.CMHardwareManager: boolean isSupported(int) -com.xw.repo.bubbleseekbar.R$style: int Base_V22_Theme_AppCompat_Light -com.google.android.material.R$attr: int tooltipText -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getLunar() -wangdaye.com.geometricweather.R$attr: int dotDiameter -com.google.android.material.card.MaterialCardView: float getProgress() -androidx.appcompat.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: int UnitType -okhttp3.internal.http2.Http2Reader$Handler -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX() -com.google.android.material.R$attr: int selectableItemBackgroundBorderless -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer snowHazard3h -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayWeekWidgetConfigActivity: Hilt_ClockDayWeekWidgetConfigActivity() -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setNotification(java.lang.String) -com.google.android.material.R$attr: int textAppearanceHeadline5 -wangdaye.com.geometricweather.R$dimen: int touch_rise_z -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_imeOptions -com.google.android.material.R$style: int Theme_MaterialComponents_NoActionBar_Bridge -com.tencent.bugly.crashreport.crash.e: boolean a(java.lang.Thread) -io.reactivex.exceptions.OnErrorNotImplementedException: OnErrorNotImplementedException(java.lang.Throwable) -androidx.preference.R$id: int progress_circular -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float no2 -com.xw.repo.bubbleseekbar.R$attr: int maxButtonHeight -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_seekBarPreferenceStyle -okhttp3.MultipartBody$Builder: okhttp3.MediaType type -james.adaptiveicon.R$id: int text -io.reactivex.internal.util.ArrayListSupplier: java.lang.Object apply(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description Description -okhttp3.internal.http2.Header: java.lang.String RESPONSE_STATUS_UTF8 -com.tencent.bugly.crashreport.biz.b: void a(android.content.Context,com.tencent.bugly.BuglyStrategy) -wangdaye.com.geometricweather.R$dimen: int material_font_2_0_box_collapsed_padding_top -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setCircularRevealScrimColor(int) -james.adaptiveicon.R$drawable: int abc_item_background_holo_light -androidx.core.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.R$styleable: int[] CustomAttribute -wangdaye.com.geometricweather.R$string: int aqi_3 -io.reactivex.Observable: io.reactivex.Observable concatArray(io.reactivex.ObservableSource[]) -androidx.core.R$id: int tag_unhandled_key_listeners -com.jaredrummler.android.colorpicker.R$attr: int searchViewStyle -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property O3 +com.google.android.material.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: AccuCurrentResult$WindChillTemperature$Imperial() +wangdaye.com.geometricweather.R$attr: int behavior_autoShrink +wangdaye.com.geometricweather.R$integer: int mtrl_tab_indicator_anim_duration_ms +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +com.tencent.bugly.BuglyStrategy: void setReplaceOldChannel(boolean) +com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_old +okhttp3.Address: java.net.Proxy proxy +okhttp3.internal.ws.RealWebSocket: java.lang.String key +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dark +retrofit2.Utils$GenericArrayTypeImpl: java.lang.String toString() +james.adaptiveicon.R$layout +com.google.android.material.R$style: int Platform_AppCompat +com.google.android.material.R$attr: int layout_constraintWidth_percent +com.turingtechnologies.materialscrollbar.R$string: int abc_toolbar_collapse_description +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean a(com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler,int,java.lang.String) +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_sun +com.google.android.material.R$attr: int prefixTextAppearance +androidx.appcompat.widget.ActionMenuView: void setOverflowReserved(boolean) +com.google.android.material.circularreveal.CircularRevealGridLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +androidx.preference.R$styleable: int AppCompatTheme_buttonStyle +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setAqiText(java.lang.String) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPressure(java.lang.Float) +retrofit2.OkHttpCall: retrofit2.Call clone() +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getCityId() +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_max +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_seekBarStyle +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPopupWindowStyle +com.google.android.material.R$style: int Widget_AppCompat_ActionButton_CloseMode +cyanogenmod.app.ILiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +com.amap.api.location.AMapLocation: int getTrustedLevel() +cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(java.util.Map,java.util.Map,cyanogenmod.themes.ThemeChangeRequest$RequestType,long) +androidx.appcompat.R$styleable: int AppCompatTheme_windowNoTitle +okhttp3.internal.Util$1: int compare(java.lang.String,java.lang.String) +androidx.constraintlayout.widget.R$attr: int layout_constraintBaseline_creator +androidx.activity.R$drawable: int notification_bg_low_normal +com.tencent.bugly.crashreport.crash.a: int compareTo(java.lang.Object) +com.google.android.material.slider.RangeSlider: int getThumbRadius() +android.didikee.donate.R$id: int search_close_btn +com.google.android.material.R$attr: int perpendicularPath_percent +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function) +retrofit2.Utils: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noStore() +com.google.android.material.R$id: int icon_group +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_translation_z_pressed +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: UnicastSubject$UnicastQueueDisposable(io.reactivex.subjects.UnicastSubject) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean +wangdaye.com.geometricweather.R$id: int withText +androidx.appcompat.widget.LinearLayoutCompat: android.graphics.drawable.Drawable getDividerDrawable() +okhttp3.CertificatePinner: okhttp3.CertificatePinner withCertificateChainCleaner(okhttp3.internal.tls.CertificateChainCleaner) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX wind +com.google.android.material.R$integer: int mtrl_btn_anim_delay_ms +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSrc(java.lang.String) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.app.suggest.ApplicationSuggestion$1: java.lang.Object[] newArray(int) +com.xw.repo.bubbleseekbar.R$id: int end +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getSelectedItemId() +androidx.constraintlayout.widget.R$drawable: int notification_tile_bg +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableRightCompat +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int bufferSize +wangdaye.com.geometricweather.R$attr: int autoSizeStepGranularity +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_precise_anchor_threshold +cyanogenmod.externalviews.ExternalViewProperties: int getHeight() +androidx.preference.R$layout: int preference_material +io.reactivex.internal.subscribers.DeferredScalarSubscriber: long serialVersionUID +com.bumptech.glide.Registry$NoResultEncoderAvailableException +cyanogenmod.weather.WeatherInfo$DayForecast: java.lang.String mKey +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getZh_CN() +retrofit2.Converter$Factory: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayHorizontalProvider: WidgetClockDayHorizontalProvider() +wangdaye.com.geometricweather.R$attr: int circleCrop +wangdaye.com.geometricweather.R$drawable: int ic_sunset +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_padding_right +com.google.android.gms.location.DetectedActivity +wangdaye.com.geometricweather.R$attr: int backgroundTintMode +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_TextView +com.google.android.material.R$anim: int abc_fade_out +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_icon +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl +androidx.core.R$styleable +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixText +okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.WebSocketReader reader +androidx.hilt.work.R$dimen: int notification_small_icon_size_as_large +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isSubActive(int) +james.adaptiveicon.R$styleable: int SwitchCompat_thumbTint +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_max +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitationDuration() +android.didikee.donate.R$style: int Widget_AppCompat_ListView_Menu +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Inverse +okhttp3.internal.connection.StreamAllocation: boolean hasMoreRoutes() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Pollen pollen +androidx.lifecycle.SavedStateViewModelFactory: void onRequery(androidx.lifecycle.ViewModel) +okhttp3.internal.http1.Http1Codec: okhttp3.OkHttpClient client +androidx.preference.R$id: int src_over +io.reactivex.exceptions.CompositeException: long serialVersionUID +io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.CompletableObserver) +androidx.preference.R$styleable: int AppCompatTheme_controlBackground +com.google.android.material.R$styleable: int GradientColor_android_centerX +androidx.lifecycle.CompositeGeneratedAdaptersObserver: CompositeGeneratedAdaptersObserver(androidx.lifecycle.GeneratedAdapter[]) +androidx.preference.R$attr: int listChoiceIndicatorMultipleAnimated +okhttp3.Response$Builder: okhttp3.Headers$Builder headers +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_roundPercent +androidx.viewpager2.R$id: int accessibility_custom_action_3 +com.jaredrummler.android.colorpicker.R$string: int cpv_select +okhttp3.WebSocketListener: void onFailure(okhttp3.WebSocket,java.lang.Throwable,okhttp3.Response) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_26 +com.google.android.material.R$dimen: int abc_dialog_fixed_width_major +okhttp3.internal.connection.StreamAllocation: int refusedStreamCount +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: int UnitType +com.tencent.bugly.a: a() +androidx.viewpager.R$styleable: int GradientColor_android_startX +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.RequestBody delegate +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.functions.Function mapper +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder writeTimeout(long,java.util.concurrent.TimeUnit) +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_goIcon +com.google.android.material.R$styleable: int AppCompatTextView_fontFamily +com.google.android.material.R$attr: int motionPathRotate +okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onComplete() +cyanogenmod.os.Concierge: int PARCELABLE_VERSION +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void tryEmit(java.lang.Object,io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onNext(java.lang.Object) +androidx.preference.R$attr: int titleMarginStart +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onAttach(android.os.IBinder) +cyanogenmod.hardware.IThermalListenerCallback$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onComplete() +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalStyle +okhttp3.internal.http2.Http2Codec: java.lang.String UPGRADE +androidx.preference.PreferenceScreen +okhttp3.internal.platform.ConscryptPlatform: java.security.Provider getProvider() +com.github.rahatarmanahmed.cpv.CircularProgressView$7: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +cyanogenmod.weather.RequestInfo$1: cyanogenmod.weather.RequestInfo createFromParcel(android.os.Parcel) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_default +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItem +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_ASSIST_LONG_PRESS_ACTION +android.didikee.donate.R$style: int TextAppearance_AppCompat_Body1 +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupWindow +androidx.appcompat.R$attr: int contentInsetEnd +androidx.constraintlayout.widget.R$attr: int constraints +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getPrefixTextColor() +james.adaptiveicon.R$style: int Base_V23_Theme_AppCompat +james.adaptiveicon.R$color: int dim_foreground_disabled_material_light +wangdaye.com.geometricweather.R$id: int content +androidx.legacy.coreutils.R$styleable: int[] GradientColorItem +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +androidx.appcompat.R$color: int material_blue_grey_800 +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: long dt +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: int UnitType +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setStatusBar(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationMode getLocationMode() +androidx.constraintlayout.widget.R$attr: int customIntegerValue +com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy[] values() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorContentDescription +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Dialog +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf +com.google.android.material.R$styleable: int KeyTimeCycle_waveDecay +androidx.viewpager.widget.ViewPager: void addOnAdapterChangeListener(androidx.viewpager.widget.ViewPager$OnAdapterChangeListener) +com.turingtechnologies.materialscrollbar.R$attr: int actionModeFindDrawable +okhttp3.WebSocket: boolean close(int,java.lang.String) +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Date +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial +com.google.android.material.R$attr: int colorControlActivated +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton +wangdaye.com.geometricweather.R$string: int key_subtitle_data +android.didikee.donate.R$attr: int listItemLayout +androidx.constraintlayout.widget.R$dimen: int abc_text_size_title_material_toolbar +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAVBAR_LEFT_IN_LANDSCAPE_VALIDATOR +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable[] EMPTY +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitationProbability +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationY +com.turingtechnologies.materialscrollbar.R$color: int ripple_material_dark +com.tencent.bugly.proguard.al: void a(java.lang.StringBuilder,int) +android.didikee.donate.R$styleable: int ActionMode_subtitleTextStyle +okio.GzipSink: okio.BufferedSink sink +com.google.android.material.R$string: int abc_capital_off +wangdaye.com.geometricweather.weather.apis.AtmoAuraIqaApi +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowNoTitle +androidx.preference.CheckBoxPreference +okhttp3.ResponseBody: java.io.InputStream byteStream() +james.adaptiveicon.R$style: int Theme_AppCompat_Dialog_Alert +james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMarkTint +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: int UnitType +com.jaredrummler.android.colorpicker.R$id: int expand_activities_button +okhttp3.Request: okhttp3.CacheControl cacheControl +androidx.core.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$string: int abc_menu_space_shortcut_label +com.google.android.material.R$color: int bright_foreground_disabled_material_light +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_1 +com.google.gson.internal.LinkedTreeMap: java.lang.Object put(java.lang.Object,java.lang.Object) +com.google.android.material.R$styleable: int BottomAppBar_backgroundTint +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarWidgetTheme +androidx.preference.R$styleable: int Spinner_android_prompt +io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicLong requested +androidx.preference.R$attr: int dependency +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_android_minHeight +com.tencent.bugly.proguard.i: java.nio.ByteBuffer a +okio.Segment: Segment() +okhttp3.CertificatePinner$Pin: java.lang.String WILDCARD +androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_weight +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain +com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference +wangdaye.com.geometricweather.R$drawable: int selectable_item_background +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline6 +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather weather12H +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetStart +com.turingtechnologies.materialscrollbar.R$attr: int chipBackgroundColor +com.jaredrummler.android.colorpicker.R$id: int buttonPanel +androidx.constraintlayout.widget.R$attr: int textAllCaps +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Caption +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: java.lang.Float windChill +androidx.constraintlayout.utils.widget.ImageFilterButton: float getWarmth() +com.google.android.material.R$styleable: int MaterialButton_rippleColor +wangdaye.com.geometricweather.R$id: int item_about_header_appIcon +wangdaye.com.geometricweather.R$id: int widget_trend_hourly +wangdaye.com.geometricweather.R$styleable: int Motion_animate_relativeTo +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setZh_TW(java.lang.String) +androidx.appcompat.widget.AppCompatImageButton: void setImageDrawable(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarButtonStyle +cyanogenmod.app.Profile$ProfileTrigger: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.common.ui.behaviors.InkPageIndicatorBehavior: InkPageIndicatorBehavior(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_ab_back_material +cyanogenmod.profiles.ConnectionSettings$BooleanState +com.turingtechnologies.materialscrollbar.R$attr: int hoveredFocusedTranslationZ +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderConfirmButton +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_creator +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button +okio.ByteString: int indexOf(okio.ByteString,int) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Subhead_Inverse +androidx.appcompat.R$style: int Animation_AppCompat_Dialog +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedHeightMinor +wangdaye.com.geometricweather.R$attr: int bsb_thumb_radius_on_dragging +androidx.preference.R$styleable: int TextAppearance_android_textColorHint +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +wangdaye.com.geometricweather.R$drawable: int abc_switch_track_mtrl_alpha +androidx.recyclerview.widget.RecyclerView: void addOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String co +com.google.android.material.R$string: int abc_searchview_description_clear +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: long serialVersionUID +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isMaybe +wangdaye.com.geometricweather.R$attr: int lastBaselineToBottomHeight +com.google.android.material.textfield.TextInputLayout: void setPrefixTextAppearance(int) +androidx.lifecycle.SavedStateHandle: java.lang.Object get(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_reverseLayout +wangdaye.com.geometricweather.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.customview.R$color: R$color() +android.didikee.donate.R$styleable: int ActionBar_background +wangdaye.com.geometricweather.R$attr: int liftOnScroll +wangdaye.com.geometricweather.R$dimen: int abc_text_size_body_2_material +wangdaye.com.geometricweather.R$color: int darkPrimary_4 +okio.AsyncTimeout: AsyncTimeout() +wangdaye.com.geometricweather.R$color: int dim_foreground_material_dark +androidx.appcompat.widget.SearchView: int getSuggestionRowLayout() +okhttp3.internal.http2.Http2Writer: int maxDataLength() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onDetach +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void drain() +androidx.appcompat.R$styleable: int MenuItem_iconTintMode +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void request(long) +com.google.android.material.R$styleable: int ProgressIndicator_inverse +com.google.gson.stream.JsonReader: int peekNumber() +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_DialogWhenLarge +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setOnPageSwipeListener(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout$OnPagerSwipeListener) +cyanogenmod.weather.WeatherLocation +com.google.android.material.R$styleable: int MaterialButton_android_background +com.tencent.bugly.proguard.z: java.util.Map b(android.os.Parcel) +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle +com.google.android.material.R$attr: int dividerVertical +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TIMESTAMP +com.jaredrummler.android.colorpicker.R$string: int abc_shareactionprovider_share_with +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_background_transition_holo_dark +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void setResource(io.reactivex.disposables.Disposable) +com.tencent.bugly.crashreport.biz.a: void b() +io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,io.reactivex.ObservableSource) +cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_COLOR_CALIBRATION +james.adaptiveicon.R$styleable: int AlertDialog_buttonIconDimen +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivityCreated(android.app.Activity,android.os.Bundle) +androidx.constraintlayout.widget.R$color: int foreground_material_light +com.github.rahatarmanahmed.cpv.CircularProgressView$8: float val$start +androidx.appcompat.widget.ButtonBarLayout: int getMinimumHeight() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Inverse +com.tencent.bugly.crashreport.CrashReport: void testANRCrash() +androidx.constraintlayout.widget.R$id: int search_go_btn +androidx.hilt.work.R$id: int accessibility_custom_action_31 +com.turingtechnologies.materialscrollbar.R$id: int transition_transform +androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date publishDate +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_SIMULATION_LOCATION +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +androidx.customview.R$styleable: int GradientColor_android_startColor +com.google.android.material.R$attr: int indicatorColor +com.google.android.material.R$styleable: int Layout_layout_goneMarginLeft +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindSpeed(java.lang.Float) +wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_light +com.google.android.gms.base.R$color: int common_google_signin_btn_tint +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_id +com.google.android.gms.location.zzay: android.os.Parcelable$Creator CREATOR +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getBackgroundTintList() +androidx.viewpager2.widget.ViewPager2$SavedState com.turingtechnologies.materialscrollbar.R$attr: int textColorAlertDialogListItem -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_padding_start_material -com.google.android.material.R$attr: int layout_dodgeInsetEdges -androidx.appcompat.R$id: int up -wangdaye.com.geometricweather.R$id: int dark -androidx.constraintlayout.widget.R$attr: int layout_constrainedWidth -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_alpha -androidx.recyclerview.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$string: int material_hour_suffix -okhttp3.internal.connection.RealConnection: okhttp3.Handshake handshake -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onSucceed(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult) -wangdaye.com.geometricweather.R$string: int key_widget_day_week -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMargin -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Body1 -androidx.swiperefreshlayout.R$id: R$id() -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setGpsFirstTimeout(long) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: java.lang.String icon -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_50 -com.google.android.material.R$attr: int navigationViewStyle +androidx.preference.R$attr: int actionButtonStyle +james.adaptiveicon.R$drawable: int abc_textfield_search_activated_mtrl_alpha +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: int getValue() +androidx.appcompat.R$styleable: int ActionBar_homeAsUpIndicator +okio.ByteString: okio.ByteString hmacSha256(okio.ByteString) +com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_checkbox +com.google.android.material.slider.RangeSlider: java.lang.CharSequence getAccessibilityClassName() +com.turingtechnologies.materialscrollbar.R$color: int material_grey_800 +cyanogenmod.profiles.ConnectionSettings: int getConnectionId() +androidx.constraintlayout.widget.R$attr: int tooltipText +okhttp3.internal.cache.DiskLruCache: long ANY_SEQUENCE_NUMBER +androidx.hilt.work.R$styleable: int GradientColor_android_tileMode +com.google.android.material.R$style: int Widget_Design_CollapsingToolbar +androidx.preference.R$id: int home +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context) +com.turingtechnologies.materialscrollbar.R$attr: int height +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle +com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.AnimatorSet createIndeterminateAnimator(float) +cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String CITY_ID +okhttp3.internal.http.HttpHeaders: boolean hasBody(okhttp3.Response) +androidx.appcompat.widget.AppCompatImageView: android.content.res.ColorStateList getSupportBackgroundTintList() +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onComplete() +androidx.hilt.R$id: int accessibility_custom_action_9 +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +androidx.preference.R$interpolator +wangdaye.com.geometricweather.R$id: int material_value_index +okio.ForwardingSink: void write(okio.Buffer,long) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView +com.tencent.bugly.crashreport.common.info.AppInfo: java.util.Map d(android.content.Context) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer cloudCover +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Title +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getCo() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: int status +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void subscribeNext() +wangdaye.com.geometricweather.R$style: int Platform_AppCompat +androidx.preference.R$color: int abc_tint_btn_checkable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm25Desc() +com.google.android.material.R$styleable: int[] ActionMenuItemView +androidx.preference.R$styleable: int ActionBar_customNavigationLayout +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfileByName +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Title +com.xw.repo.bubbleseekbar.R$attr: int paddingEnd +cyanogenmod.weather.WeatherLocation: java.lang.String getCity() +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter name(java.lang.String) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String city +com.google.android.material.R$styleable: int Layout_layout_constraintVertical_chainStyle +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$FramingSource source +com.tencent.bugly.proguard.am: java.lang.String w +com.google.android.material.R$attr: int showTitle +james.adaptiveicon.R$drawable: int notification_bg +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String LocalizedName +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setKillProcess(boolean) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: long serialVersionUID +wangdaye.com.geometricweather.R$array: int pressure_units +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult +com.tencent.bugly.crashreport.common.strategy.a: java.util.List c +com.jaredrummler.android.colorpicker.R$style: int Preference_Information +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind +com.google.gson.stream.JsonWriter: void writeDeferredName() +okhttp3.internal.platform.Platform: java.lang.String getPrefix() +androidx.work.WorkInfo$State +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display1 +cyanogenmod.weather.IRequestInfoListener$Stub: int TRANSACTION_onWeatherRequestCompleted +androidx.work.impl.utils.futures.AbstractFuture$Failure$1: AbstractFuture$Failure$1(java.lang.String) +okhttp3.HttpUrl$Builder: void removeAllCanonicalQueryParameters(java.lang.String) +okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] publicSuffixExceptionListBytes +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getDescription() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabView +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$color: int design_default_color_on_background +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getTempMax() +okhttp3.OkHttpClient: okhttp3.ConnectionPool connectionPool() +wangdaye.com.geometricweather.db.entities.LocationEntity: void setCity(java.lang.String) +androidx.core.graphics.drawable.IconCompatParcelizer +androidx.preference.R$dimen: int abc_dialog_fixed_height_minor +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitationProbability(java.lang.Float) +androidx.preference.R$styleable: int View_theme +androidx.viewpager.R$dimen: int notification_action_icon_size +androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.util.List text +com.turingtechnologies.materialscrollbar.R$drawable: int abc_tab_indicator_material +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +androidx.recyclerview.R$id: int accessibility_custom_action_2 +com.google.android.material.R$attr: int tabSelectedTextColor +androidx.lifecycle.SavedStateHandleController$1: SavedStateHandleController$1(androidx.lifecycle.Lifecycle,androidx.savedstate.SavedStateRegistry) +android.didikee.donate.R$styleable: int AppCompatTheme_colorError +okhttp3.HttpUrl$Builder: HttpUrl$Builder() +androidx.constraintlayout.widget.R$attr: int colorControlActivated +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setHeadIconType(java.lang.String) +wangdaye.com.geometricweather.R$attr: int settingsActivity +com.google.android.material.R$attr: int layout_constraintGuide_percent +com.turingtechnologies.materialscrollbar.R$id: int center +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean cancelled +android.didikee.donate.R$style: int Animation_AppCompat_DropDownUp +androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_android_color +cyanogenmod.platform.Manifest$permission: java.lang.String BIND_CUSTOM_TILE_LISTENER_SERVICE +com.google.android.material.R$dimen: int abc_action_button_min_height_material +james.adaptiveicon.R$styleable: int AlertDialog_showTitle +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String src +wangdaye.com.geometricweather.R$attr: int layout_constraintBaseline_creator +androidx.preference.R$attr +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: android.os.IBinder mRemote +android.didikee.donate.R$color: int switch_thumb_material_light +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onComplete() +androidx.preference.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: ObservableReplay$InnerDisposable(io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver,io.reactivex.Observer) +wangdaye.com.geometricweather.R$attr: int flow_horizontalBias +androidx.legacy.coreutils.R$layout: int notification_template_custom_big +com.tencent.bugly.crashreport.CrashReport: void closeBugly() +retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object L$0 +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void setInteractivity(boolean) +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: boolean inSingle +wangdaye.com.geometricweather.R$styleable: int Badge_verticalOffset +androidx.viewpager2.R$dimen: int compat_control_corner_material +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_setDefaultLiveLockScreen +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowColor +retrofit2.CompletableFutureCallAdapterFactory: retrofit2.CallAdapter$Factory INSTANCE +retrofit2.Retrofit$Builder: okhttp3.Call$Factory callFactory +cyanogenmod.app.LiveLockScreenManager: void setLiveLockScreenEnabled(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String LocalizedName +com.google.android.material.slider.Slider: void setThumbTintList(android.content.res.ColorStateList) +cyanogenmod.platform.Manifest$permission: java.lang.String READ_DATAUSAGE +androidx.viewpager2.R$id: int action_image +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +com.tencent.bugly.proguard.am: java.lang.String f +com.google.android.material.R$styleable: int TextInputLayout_errorContentDescription +com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_bottom +io.reactivex.internal.util.NotificationLite$DisposableNotification: long serialVersionUID +com.google.android.material.R$color: int accent_material_light +okio.RealBufferedSource$1: java.lang.String toString() +wangdaye.com.geometricweather.R$style: int Widget_Design_TabLayout +james.adaptiveicon.R$id: int shortcut +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_divider_thickness +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA +okhttp3.internal.platform.Platform: void connectSocket(java.net.Socket,java.net.InetSocketAddress,int) +wangdaye.com.geometricweather.R$id: int search_go_btn +retrofit2.ParameterHandler$Tag +com.turingtechnologies.materialscrollbar.R$style: int Platform_V21_AppCompat_Light +cyanogenmod.weatherservice.ServiceRequest: void fail() +cyanogenmod.app.BaseLiveLockManagerService: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +androidx.appcompat.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +com.google.android.material.R$styleable: int TextInputEditText_textInputLayoutFocusedRectEnabled +com.turingtechnologies.materialscrollbar.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.R$id: int motion_base +androidx.customview.R$styleable: int GradientColor_android_centerX +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderCerts +com.tencent.bugly.proguard.i$a +wangdaye.com.geometricweather.R$animator: int weather_rain_1 +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason SWITCH_TO_SOURCE_SERVICE +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +cyanogenmod.providers.CMSettings$3: boolean validate(java.lang.String) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar +androidx.recyclerview.R$dimen: int fastscroll_minimum_range +okhttp3.Cache$2: java.lang.String next() +com.tencent.bugly.crashreport.common.info.PlugInBean: java.lang.String c +android.didikee.donate.R$styleable: int Toolbar_titleMarginStart +io.reactivex.internal.schedulers.AbstractDirectTask: java.util.concurrent.FutureTask FINISHED +com.tencent.bugly.crashreport.common.strategy.a: java.lang.String h +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTint +androidx.preference.R$dimen: int notification_large_icon_height +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Medium +retrofit2.Utils$ParameterizedTypeImpl: boolean equals(java.lang.Object) +androidx.recyclerview.widget.RecyclerView: void setLayoutTransition(android.animation.LayoutTransition) +com.tencent.bugly.crashreport.CrashReport: void testJavaCrash() +wangdaye.com.geometricweather.R$drawable: int indicator +com.jaredrummler.android.colorpicker.R$id: int notification_main_column_container +com.google.android.material.appbar.AppBarLayout$BaseBehavior: AppBarLayout$BaseBehavior() +com.turingtechnologies.materialscrollbar.R$attr: int strokeWidth +wangdaye.com.geometricweather.R$attr: int wavePeriod +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetLeft +retrofit2.ParameterHandler$Headers: ParameterHandler$Headers(java.lang.reflect.Method,int) +androidx.appcompat.widget.ListPopupWindow +com.google.android.material.chip.Chip: void setCloseIconContentDescription(java.lang.CharSequence) +wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_week_setting +com.google.android.material.R$style: int TextAppearance_Design_Tab +com.turingtechnologies.materialscrollbar.R$color: int primary_dark_material_light +com.google.android.material.R$attr: int touchRegionId +com.google.android.material.R$id: int mtrl_picker_header_title_and_selection +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mVibrateMode +androidx.preference.R$styleable: int MenuItem_actionViewClass +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setDate(java.util.Date) +com.google.android.material.R$bool +wangdaye.com.geometricweather.R$animator: int weather_snow_3 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String aqiText +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.util.Date date +okhttp3.ConnectionPool: java.util.concurrent.Executor executor +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onComplete() +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig historyEntityDaoConfig +com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_top_material +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar_Indicator wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.lang.String Link -james.adaptiveicon.R$attr: int popupWindowStyle -androidx.appcompat.R$styleable: int AppCompatTheme_windowNoTitle -androidx.hilt.lifecycle.R$id: int notification_main_column -androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Title -androidx.preference.R$styleable: int SeekBarPreference_android_max -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.Observer downstream -okhttp3.internal.http2.Http2Connection: boolean isHealthy(long) -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeTextType -com.google.android.material.R$styleable: int ActionMode_backgroundSplit -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -com.google.android.material.R$attr: int backgroundInsetBottom -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void cancel(io.reactivex.internal.queue.SpscLinkedArrayQueue,io.reactivex.internal.queue.SpscLinkedArrayQueue) -com.turingtechnologies.materialscrollbar.R$attr: int state_above_anchor -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -okhttp3.OkHttpClient: boolean followRedirects() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getApparentTemperature() -androidx.coordinatorlayout.R$dimen: int compat_control_corner_material -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.CMHardwareManager getInstance(android.content.Context) -wangdaye.com.geometricweather.R$layout: int test_toolbar_custom_background -cyanogenmod.app.LiveLockScreenInfo: android.content.ComponentName component -android.didikee.donate.R$styleable: int AppCompatTheme_panelBackground -com.xw.repo.bubbleseekbar.R$color: int material_grey_50 -android.didikee.donate.R$styleable: int ActivityChooserView_initialActivityCount -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_68 -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Editor edit(java.lang.String,long) -androidx.appcompat.widget.ActivityChooserModel -com.google.android.material.R$styleable: int Layout_layout_editor_absoluteX -androidx.dynamicanimation.R$layout: R$layout() -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_handleOffColor -androidx.appcompat.widget.Toolbar: int getContentInsetEndWithActions() -com.google.android.material.R$styleable: int TabItem_android_icon -okhttp3.CertificatePinner$Pin: java.lang.String hashAlgorithm -okio.Okio$2: okio.Timeout timeout() -androidx.lifecycle.ProcessLifecycleOwner: void dispatchPauseIfNeeded() -com.google.android.material.R$dimen: int mtrl_calendar_text_input_padding_top -androidx.constraintlayout.widget.R$styleable: int AlertDialog_android_layout -androidx.dynamicanimation.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer humidity -androidx.viewpager.R$dimen: int compat_button_padding_horizontal_material -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_id -androidx.appcompat.R$color: int abc_tint_seek_thumb -cyanogenmod.profiles.ConnectionSettings: int getValue() -okio.Okio: okio.Sink sink(java.io.File) -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.appcompat.R$styleable: int AppCompatTheme_windowMinWidthMajor -android.didikee.donate.R$styleable: int SwitchCompat_android_textOff -okio.Buffer$UnsafeCursor: okio.Buffer buffer -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: long serialVersionUID -android.didikee.donate.R$styleable: int AppCompatTheme_windowActionBarOverlay -wangdaye.com.geometricweather.R$layout: int item_about_line -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getLtoSource() -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ -android.didikee.donate.R$color: int primary_text_default_material_light -androidx.preference.R$styleable: int CheckBoxPreference_disableDependentsState -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_headline_material -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth -com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.proguard.u c -org.greenrobot.greendao.AbstractDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -androidx.appcompat.widget.SwitchCompat: android.content.res.ColorStateList getTrackTintList() -okhttp3.internal.http2.StreamResetException -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -com.turingtechnologies.materialscrollbar.R$id: int activity_chooser_view_content -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Bridge -androidx.viewpager.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert -wangdaye.com.geometricweather.R$attr: int yearSelectedStyle -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_icon_vertical_padding_material -com.google.android.material.R$styleable: int KeyAttribute_android_alpha -androidx.preference.R$id: int accessibility_custom_action_28 -cyanogenmod.alarmclock.ClockContract$InstancesColumns: int MISSED_STATE -okhttp3.internal.http2.Http2Connection: long access$100(okhttp3.internal.http2.Http2Connection) -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String HOUR -wangdaye.com.geometricweather.R$dimen: int mtrl_card_corner_radius -james.adaptiveicon.R$styleable: int AppCompatTheme_windowMinWidthMinor -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Snackbar -androidx.transition.R$string: R$string() -wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_text_color -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_3 -android.didikee.donate.R$attr: int windowActionBarOverlay -wangdaye.com.geometricweather.R$array: int duration_units -com.google.android.material.R$dimen: int mtrl_btn_snackbar_margin_horizontal -com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_old -com.google.android.material.R$styleable: int DrawerArrowToggle_barLength -androidx.transition.R$styleable: int FontFamilyFont_android_fontWeight -com.google.android.gms.dynamite.DynamiteModule$DynamiteLoaderClassLoader: DynamiteModule$DynamiteLoaderClassLoader() -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit[] values() -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onResume() -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setUnit(java.lang.String) -com.jaredrummler.android.colorpicker.R$attr: int layout -okhttp3.internal.http2.Http2Stream$FramingSink: boolean $assertionsDisabled -okhttp3.internal.ws.WebSocketProtocol: java.lang.String acceptHeader(java.lang.String) -com.tencent.bugly.crashreport.common.info.a: java.lang.Boolean Z -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered -androidx.viewpager.R$dimen: int notification_right_icon_size -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: long serialVersionUID -cyanogenmod.providers.CMSettings$System: java.lang.String ZEN_PRIORITY_ALLOW_LIGHTS -com.turingtechnologies.materialscrollbar.R$color: int design_default_color_primary -android.didikee.donate.R$styleable: int AppCompatTheme_searchViewStyle -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -cyanogenmod.app.suggest.IAppSuggestProvider$Stub -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionMenuTextAppearance -com.google.android.material.internal.NavigationMenuItemView: void setChecked(boolean) -androidx.appcompat.widget.ActionMenuView: ActionMenuView(android.content.Context) -com.google.android.material.R$dimen: int design_bottom_navigation_active_item_max_width -wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundDialog -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: boolean cancelled -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_thumb -cyanogenmod.providers.DataUsageContract: DataUsageContract() -james.adaptiveicon.R$dimen: int abc_text_size_display_2_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: java.lang.String Unit -cyanogenmod.hardware.CMHardwareManager: java.lang.String readPersistentString(java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: java.lang.Float value -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_CheckBox -androidx.viewpager2.R$styleable: int GradientColor_android_centerColor -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int FINISHED -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation -androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_enqueueLiveLockScreen -androidx.preference.R$styleable: int[] ListPreference -okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withConnectTimeout(int,java.util.concurrent.TimeUnit) -com.google.android.material.R$attr: int bottomNavigationStyle -androidx.constraintlayout.widget.R$styleable: int[] MotionTelltales -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: void run() -wangdaye.com.geometricweather.R$attr: int buttonIconDimen -androidx.appcompat.R$styleable: int PopupWindow_overlapAnchor -wangdaye.com.geometricweather.R$attr: int popupWindowStyle -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getBackgroundColorEnd() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf -androidx.customview.R$styleable: int FontFamilyFont_android_ttcIndex -com.tencent.bugly.Bugly -wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Info -okhttp3.internal.ws.WebSocketReader: void readControlFrame() -androidx.preference.R$dimen: int highlight_alpha_material_dark -androidx.vectordrawable.R$id: int action_text +androidx.vectordrawable.animated.R$dimen: int compat_button_inset_vertical_material +io.reactivex.internal.operators.observable.ObservableReplay$Node: long serialVersionUID +com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_DIGIT +io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean isDisposed() +androidx.preference.R$id: int none +androidx.appcompat.R$style: int Widget_AppCompat_ActionButton +com.google.android.material.R$id: int src_in +com.google.android.material.bottomsheet.BottomSheetBehavior$SavedState wangdaye.com.geometricweather.R$dimen: int widget_design_title_text_size -retrofit2.OkHttpCall: retrofit2.RequestFactory requestFactory -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver parent -androidx.recyclerview.R$id: int line3 -com.xw.repo.bubbleseekbar.R$drawable: int notification_tile_bg -com.google.gson.stream.JsonReader: java.lang.String nextName() -retrofit2.RequestFactory$Builder: boolean gotPath -androidx.constraintlayout.widget.R$drawable: int abc_textfield_activated_mtrl_alpha -com.google.android.material.R$style: int CardView -okhttp3.Cookie: boolean domainMatch(java.lang.String,java.lang.String) -com.google.android.material.floatingactionbutton.FloatingActionButton: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getSnow() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView -android.didikee.donate.R$id: int progress_circular -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionProviderClass -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder pingIntervalMillis(int) -com.google.android.material.R$styleable: int AppCompatImageView_android_src -com.google.android.material.R$styleable: int AppCompatTheme_colorButtonNormal -retrofit2.ParameterHandler$Part: int p -wangdaye.com.geometricweather.R$style: int Preference_PreferenceScreen_Material -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long uniqueId -android.didikee.donate.R$dimen: int abc_text_size_display_3_material -androidx.fragment.R$id: int accessibility_custom_action_6 -androidx.constraintlayout.widget.R$drawable: int btn_radio_off_to_on_mtrl_animation -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_117 -com.google.android.material.R$style: int TextAppearance_AppCompat_Title_Inverse -com.jaredrummler.android.colorpicker.R$attr: int cpv_showAlphaSlider -com.tencent.bugly.proguard.j -androidx.appcompat.R$id: int blocking -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getRainPrecipitation() -androidx.constraintlayout.widget.R$attr: int layout_constraintCircle -cyanogenmod.hardware.CMHardwareManager: int FEATURE_COLOR_ENHANCEMENT -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onNext(java.lang.Object) -com.google.android.material.R$id: int accessibility_custom_action_27 -com.jaredrummler.android.colorpicker.R$id: int tag_unhandled_key_listeners -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableTop -com.google.android.material.R$attr: int buttonBarNeutralButtonStyle -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setWifiActiveScan(boolean) -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle -com.google.android.material.R$attr: int spinnerStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.util.List getValue() -androidx.preference.R$attr: int fastScrollHorizontalThumbDrawable -androidx.hilt.work.R$layout: int notification_action -retrofit2.OkHttpCall: okio.Timeout timeout() -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void run() -wangdaye.com.geometricweather.R$string: int common_google_play_services_update_button -wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_small_material -com.turingtechnologies.materialscrollbar.R$id: int expanded_menu -com.jaredrummler.android.colorpicker.R$styleable: int Preference_selectable -androidx.core.widget.ContentLoadingProgressBar -com.tencent.bugly.proguard.x: boolean c(java.lang.String,java.lang.Object[]) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_COLOR_VALIDATOR -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_22 -com.turingtechnologies.materialscrollbar.R$attr: int tickMark -com.google.android.material.R$id: int material_timepicker_ok_button -androidx.lifecycle.extensions.R$id: int tag_unhandled_key_event_manager -android.didikee.donate.R$styleable: int AlertDialog_showTitle -com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_padding_horizontal_material -androidx.preference.R$layout: int preference_widget_checkbox -com.jaredrummler.android.colorpicker.R$attr: int statusBarBackground -james.adaptiveicon.R$attr: int suggestionRowLayout -androidx.core.R$id: int info -androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchAnchorId -androidx.lifecycle.LiveData$AlwaysActiveObserver -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_text -okio.BufferedSink: okio.BufferedSink writeLongLe(long) -com.google.android.material.R$styleable: int AppCompatTheme_windowMinWidthMajor -com.google.android.material.R$styleable: int ViewStubCompat_android_layout -wangdaye.com.geometricweather.R$attr: int contentPaddingLeft -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvIndex -com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_submit -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation -androidx.fragment.R$drawable: int notification_icon_background -com.google.android.material.R$styleable: int ButtonBarLayout_allowStacking -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Refresh -androidx.hilt.lifecycle.R$id: int tag_accessibility_clickable_spans -com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeTopRight -androidx.constraintlayout.widget.R$dimen: int compat_notification_large_icon_max_width -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ScheduledExecutorService writerExecutor -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_23 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_46 -okhttp3.internal.http2.Http2Stream$StreamTimeout: void timedOut() -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabText -james.adaptiveicon.R$dimen: int abc_text_size_body_1_material -com.google.android.material.R$styleable: int DrawerArrowToggle_drawableSize -james.adaptiveicon.R$attr: int contentInsetEndWithActions -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_y_offset_touch -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.disposables.Disposable upstream -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: long serialVersionUID -androidx.recyclerview.widget.RecyclerView: int getMinFlingVelocity() -androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: double Value -com.tencent.bugly.proguard.u: java.lang.Object e(com.tencent.bugly.proguard.u) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onComplete() -okio.RealBufferedSource: boolean rangeEquals(long,okio.ByteString) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: double Value -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontStyle -android.didikee.donate.R$dimen: int highlight_alpha_material_dark -androidx.appcompat.app.ToolbarActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -com.google.android.material.R$style: int Base_Widget_AppCompat_PopupWindow -androidx.activity.R$attr: int fontProviderAuthority -androidx.appcompat.R$id: int text2 -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver -androidx.fragment.app.Fragment$SavedState -wangdaye.com.geometricweather.R$attr: int trackColorInactive -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position position -com.google.android.material.R$dimen: int mtrl_navigation_item_horizontal_padding -cyanogenmod.weather.WeatherInfo$DayForecast: int mConditionCode -androidx.preference.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -androidx.core.R$id: int dialog_button -okio.ByteString: int lastIndexOf(byte[]) -cyanogenmod.app.Profile$ProfileTrigger: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$id: int customPanel -com.amap.api.fence.PoiItem: void setCity(java.lang.String) -cyanogenmod.hardware.ICMHardwareService: int[] getDisplayGammaCalibration(int) -wangdaye.com.geometricweather.R$attr: int backgroundColor -james.adaptiveicon.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode -cyanogenmod.profiles.AirplaneModeSettings -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder writeTimeout(long,java.util.concurrent.TimeUnit) -android.didikee.donate.R$style: int Widget_AppCompat_ProgressBar -android.didikee.donate.R$styleable: int Toolbar_popupTheme -androidx.constraintlayout.widget.R$attr: int actionBarStyle -com.tencent.bugly.proguard.y: byte[] a() -com.jaredrummler.android.colorpicker.R$attr: int switchPreferenceStyle -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_transformation_sheet_collapse_spec -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Time -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.View onCreatePanelView(int) -com.google.android.material.R$dimen: int material_clock_size -androidx.constraintlayout.widget.R$styleable: int KeyCycle_motionProgress -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixTextColor -androidx.constraintlayout.widget.R$dimen: int abc_dialog_list_padding_top_no_title -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void dispose() -com.google.android.material.R$styleable: int KeyCycle_android_rotationY -com.xw.repo.bubbleseekbar.R$color: int primary_text_default_material_light -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeTextType -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int EndMinute -com.turingtechnologies.materialscrollbar.R$anim -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setUrl(java.lang.String) -com.google.android.material.R$color: int primary_dark_material_dark -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String SECONDARY_COLOR -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -androidx.appcompat.widget.AppCompatImageButton -io.reactivex.internal.observers.DeferredScalarObserver: void onNext(java.lang.Object) -com.google.android.material.R$id: int mtrl_calendar_text_input_frame -com.turingtechnologies.materialscrollbar.R$attr: int progressBarPadding -android.didikee.donate.R$styleable: R$styleable() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX() -com.google.android.material.R$attr: int useCompatPadding -cyanogenmod.providers.CMSettings$Secure: java.lang.String PROTECTED_COMPONENT_MANAGERS -androidx.recyclerview.R$attr: int fastScrollVerticalThumbDrawable -com.tencent.bugly.proguard.t -com.google.android.material.slider.RangeSlider: void setTrackActiveTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_PULSE -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_hideMotionSpec -com.jaredrummler.android.colorpicker.R$styleable: int PopupWindowBackgroundState_state_above_anchor -androidx.swiperefreshlayout.R$id: int tag_accessibility_clickable_spans -wangdaye.com.geometricweather.R$id: int action_context_bar -com.xw.repo.bubbleseekbar.R$layout: int abc_dialog_title_material -com.google.android.material.R$styleable: int TextInputLayout_counterEnabled -cyanogenmod.app.CMStatusBarManager -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_ScrimInsetsFrameLayout -okhttp3.internal.http1.Http1Codec$UnknownLengthSource: okhttp3.internal.http1.Http1Codec this$0 -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onComplete() -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onNext(java.lang.Object) -james.adaptiveicon.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedPathSegment(java.lang.String) -com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_end_inner_color -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedWidthMajor -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onProgressUpdate(float) -com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_android_popupBackground -cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup getDefaultGroup() -wangdaye.com.geometricweather.R$xml: int live_wallpaper -com.google.android.material.R$attr: int onNegativeCross -androidx.core.R$styleable: int GradientColor_android_tileMode -com.google.android.material.R$id: int parallax -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean checkTerminated(boolean,boolean,io.reactivex.Observer,boolean,io.reactivex.internal.operators.observable.ObservableZip$ZipObserver) -androidx.constraintlayout.widget.Placeholder: void setContentId(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours Past12Hours -com.jaredrummler.android.colorpicker.R$id: int action_image +com.google.android.material.R$style: int TextAppearance_AppCompat_Small +wangdaye.com.geometricweather.R$id: int enterAlways +androidx.preference.R$styleable: int[] AnimatedStateListDrawableCompat +androidx.viewpager.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$attr: int behavior_skipCollapsed +androidx.preference.R$dimen: int abc_panel_menu_list_width +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onComplete() +wangdaye.com.geometricweather.R$drawable: int ic_map_clock +wangdaye.com.geometricweather.common.ui.widgets.TagView +okhttp3.internal.cache.DiskLruCache$2 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: int UnitType +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarStyle +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayColorCalibration +com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException: DefaultImageHeaderParser$Reader$EndOfFileException() +io.reactivex.internal.observers.InnerQueuedObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean disposed +com.google.android.gms.common.api.Status +android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedHeightMajor +cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(cyanogenmod.weatherservice.ServiceRequestResult$1) +cyanogenmod.app.Profile$LockMode: int INSECURE +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object getAndNullValue() +wangdaye.com.geometricweather.R$id: int item_about_translator_subtitle +james.adaptiveicon.R$id: int list_item +okhttp3.internal.http2.Http2Connection: long degradedPongsReceived +okhttp3.OkHttpClient$Builder: javax.net.ssl.SSLSocketFactory sslSocketFactory +james.adaptiveicon.R$styleable: int ActionBar_progressBarPadding +okhttp3.internal.http1.Http1Codec$ChunkedSink: okio.ForwardingTimeout timeout +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +okhttp3.OkHttpClient: okhttp3.Authenticator proxyAuthenticator() +androidx.appcompat.R$drawable: int abc_spinner_textfield_background_material +com.amap.api.fence.GeoFenceManagerBase: void resumeGeoFence() +androidx.preference.R$id: int expanded_menu +com.tencent.bugly.proguard.z: java.lang.String a(java.lang.Throwable) +cyanogenmod.weather.RequestInfo$Builder: int mTempUnit +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setLogo(java.lang.String) +androidx.constraintlayout.widget.R$id: int bounce +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void dispose() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_fontFamily +okhttp3.Cache$CacheRequestImpl$1: okhttp3.internal.cache.DiskLruCache$Editor val$editor +com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.chip.Chip: void setCloseIcon(android.graphics.drawable.Drawable) +androidx.appcompat.R$color: int dim_foreground_disabled_material_dark +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: Http2Codec$StreamFinishingSource(okhttp3.internal.http2.Http2Codec,okio.Source) +com.tencent.bugly.crashreport.crash.h5.b: java.lang.String a +com.tencent.bugly.proguard.s: byte[] a(java.lang.String,byte[],com.tencent.bugly.proguard.v,java.util.Map) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationZ +wangdaye.com.geometricweather.R$attr: int listLayout +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void run() +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setOnClickListener(android.view.View$OnClickListener) +com.amap.api.location.AMapLocationClientOption: java.lang.String a +james.adaptiveicon.R$styleable: int[] ActionBarLayout +androidx.constraintlayout.widget.R$attr: int region_heightLessThan +wangdaye.com.geometricweather.R$styleable: int[] CoordinatorLayout_Layout +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_divider_material +com.tencent.bugly.crashreport.CrashReport: void putSdkData(android.content.Context,java.lang.String,java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_showTitle +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabText +com.turingtechnologies.materialscrollbar.R$attr: int alphabeticModifiers +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.Long getId() +com.tencent.bugly.crashreport.biz.UserInfoBean: java.lang.String d +cyanogenmod.externalviews.KeyguardExternalView$3: int val$y +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedHeightMinor() +com.xw.repo.bubbleseekbar.R$attr: int editTextColor +androidx.appcompat.widget.AppCompatCheckBox: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_ab_back_material +com.google.android.material.R$string: int hide_bottom_view_on_scroll_behavior +androidx.constraintlayout.widget.R$drawable: int abc_tab_indicator_mtrl_alpha +com.google.android.gms.common.internal.zzv: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Title +androidx.viewpager2.R$id: int accessibility_custom_action_4 +androidx.transition.R$styleable: R$styleable() +okhttp3.Cache: int networkCount() +com.amap.api.location.AMapLocationClientOption: boolean d +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation +com.github.rahatarmanahmed.cpv.R$color +io.reactivex.internal.disposables.EmptyDisposable: void dispose() +io.reactivex.internal.operators.observable.ObservableReplay$Node: java.lang.Object value +android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_notify +cyanogenmod.app.LiveLockScreenManager: java.lang.String TAG +wangdaye.com.geometricweather.R$styleable: int SearchView_suggestionRowLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean() +wangdaye.com.geometricweather.R$id: int moldIcon +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_iconTintMode +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: ObservableSampleWithObservable$SampleMainNoLast(io.reactivex.Observer,io.reactivex.ObservableSource) +androidx.appcompat.resources.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.background.receiver.widget.WidgetTextProvider: WidgetTextProvider() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String logo +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: io.reactivex.Observer downstream +cyanogenmod.app.CustomTile$ExpandedStyle: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedQuery(java.lang.String) +wangdaye.com.geometricweather.R$array: int language_values +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int Constraint_android_visibility +retrofit2.Utils: java.lang.reflect.Type getParameterLowerBound(int,java.lang.reflect.ParameterizedType) +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleDrawable +okhttp3.Address: boolean equalsNonHost(okhttp3.Address) +androidx.swiperefreshlayout.R$dimen: int notification_top_pad_large_text +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerComplete(int,boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon Moon +cyanogenmod.externalviews.ExternalView$2: int val$x +androidx.appcompat.widget.AppCompatTextView: int getAutoSizeMinTextSize() +com.tencent.bugly.proguard.u: com.tencent.bugly.proguard.u a() +cyanogenmod.app.LiveLockScreenInfo$1 +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setRequestType(cyanogenmod.themes.ThemeChangeRequest$RequestType) +androidx.appcompat.widget.ActionBarOverlayLayout: ActionBarOverlayLayout(android.content.Context,android.util.AttributeSet) +androidx.activity.R$attr: R$attr() +wangdaye.com.geometricweather.R$attr: int itemSpacing +wangdaye.com.geometricweather.R$attr: int buttonBarButtonStyle +androidx.loader.R$style: int TextAppearance_Compat_Notification_Info +androidx.preference.R$styleable: int Toolbar_android_gravity +androidx.loader.R$drawable: int notification_bg +okhttp3.Handshake: int hashCode() +android.didikee.donate.R$styleable: int TextAppearance_android_fontFamily +com.jaredrummler.android.colorpicker.R$anim: int abc_shrink_fade_out_from_bottom +james.adaptiveicon.R$color: int bright_foreground_material_dark +wangdaye.com.geometricweather.R$id: int widget_clock_day +james.adaptiveicon.R$styleable: int AppCompatTheme_dropDownListViewStyle +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionModeOverlay +com.tencent.bugly.proguard.i: int a(java.lang.String) +android.didikee.donate.R$style: int Widget_AppCompat_ButtonBar +io.reactivex.internal.util.NotificationLite$DisposableNotification: io.reactivex.disposables.Disposable upstream +androidx.constraintlayout.widget.R$styleable: int Constraint_barrierAllowsGoneWidgets +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getThunderstorm() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List daisan +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(java.net.URL) +com.google.android.material.R$style: int Widget_MaterialComponents_NavigationView +com.bumptech.glide.integration.okhttp.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotationX +wangdaye.com.geometricweather.R$id: int item_about_title +cyanogenmod.app.CustomTile: android.content.Intent onSettingsClick +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cv +com.google.android.material.card.MaterialCardView: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +android.didikee.donate.R$attr: int buttonTintMode +androidx.drawerlayout.R$drawable: int notification_icon_background +okhttp3.internal.platform.AndroidPlatform: int getSdkInt() +com.google.android.material.R$styleable: int Constraint_android_minWidth +android.didikee.donate.R$style: R$style() +androidx.preference.R$styleable: int PreferenceImageView_maxHeight +androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedWidthMajor +wangdaye.com.geometricweather.R$attr: int itemShapeAppearanceOverlay +androidx.appcompat.R$styleable: int StateListDrawable_android_dither +androidx.work.R$styleable: int GradientColor_android_startX +androidx.appcompat.R$attr: int paddingEnd +com.turingtechnologies.materialscrollbar.R$attr: int enforceTextAppearance +androidx.appcompat.R$styleable: int SearchView_submitBackground +com.amap.api.location.DPoint: double b +androidx.constraintlayout.widget.R$styleable: int Transition_duration +androidx.appcompat.R$styleable: int GradientColor_android_startColor +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +androidx.hilt.work.R$id: int normal +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean add(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) +cyanogenmod.themes.IThemeService$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.work.R$id: int accessibility_custom_action_13 +androidx.appcompat.R$id: int home +wangdaye.com.geometricweather.R$id: int async +wangdaye.com.geometricweather.R$string: int material_slider_range_end +com.loc.k: java.lang.String d() +wangdaye.com.geometricweather.R$attr: int suffixTextAppearance +androidx.hilt.lifecycle.R$drawable: int notification_bg_low +com.turingtechnologies.materialscrollbar.R$anim: R$anim() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void cancel() +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_primary_mtrl_alpha +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder reencodeForUri() +wangdaye.com.geometricweather.R$styleable: int[] MockView +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String ShortPhrase +james.adaptiveicon.R$dimen: int notification_small_icon_background_padding +com.google.android.gms.common.api.GoogleApiActivity: GoogleApiActivity() +com.xw.repo.bubbleseekbar.R$layout +okio.Timeout: boolean hasDeadline +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_showDividers +androidx.appcompat.widget.ActivityChooserView: void setExpandActivityOverflowButtonDrawable(android.graphics.drawable.Drawable) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_lightContainer +androidx.appcompat.R$styleable: int SwitchCompat_switchPadding +androidx.appcompat.R$id: int unchecked +androidx.recyclerview.widget.RecyclerView$SavedState: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar +androidx.lifecycle.extensions.R$attr: int fontProviderCerts +androidx.constraintlayout.widget.R$color: int tooltip_background_dark +android.didikee.donate.R$attr +com.google.android.material.R$layout: int abc_list_menu_item_radio +com.google.android.material.R$color: int design_icon_tint +com.xw.repo.bubbleseekbar.R$id: int textSpacerNoButtons +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_spinnerStyle +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int getMainTextColorResId() +androidx.constraintlayout.widget.R$attr: int onNegativeCross +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowDy +com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_layout +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +okhttp3.RealCall: okhttp3.RealCall clone() +com.amap.api.location.CoordinateConverter: com.amap.api.location.DPoint d +com.google.android.material.R$attr: int deriveConstraintsFrom +com.tencent.bugly.proguard.i: i(byte[],int) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.R$string: int key_week_icon_mode +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +okhttp3.Request$Builder: okhttp3.Request$Builder delete() +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status[] $VALUES +androidx.preference.R$attr: int checkboxStyle +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_suggestionRowLayout +androidx.appcompat.R$id: int add +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +cyanogenmod.app.CMContextConstants: java.lang.String CM_ICON_CACHE_SERVICE +androidx.viewpager2.R$attr: int fontWeight +androidx.appcompat.R$attr: int activityChooserViewStyle +com.jaredrummler.android.colorpicker.R$dimen: int notification_large_icon_height +androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context,android.util.AttributeSet,int) +com.bumptech.glide.R$id: int right +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_22 +com.google.android.material.chip.Chip: void setChipIconSize(float) +com.google.android.material.R$styleable: int Constraint_android_minHeight +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginEnd +wangdaye.com.geometricweather.R$id: int material_hour_tv +wangdaye.com.geometricweather.R$color: int colorPrimary +androidx.vectordrawable.R$color: int ripple_material_light +androidx.coordinatorlayout.R$id: int text2 +okhttp3.internal.connection.RealConnection: java.net.Socket rawSocket +okhttp3.internal.cache.DiskLruCache$Entry: long sequenceNumber +io.reactivex.Observable: io.reactivex.Observable switchMapDelayError(io.reactivex.functions.Function) +james.adaptiveicon.R$id: int alertTitle +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_weight +androidx.dynamicanimation.R$id: int line3 +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_padding_left +androidx.transition.R$styleable: int ColorStateListItem_alpha +androidx.appcompat.R$styleable: int[] PopupWindow +androidx.lifecycle.LifecycleRegistry$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$State +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: void dispose() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String speed +com.google.android.material.button.MaterialButton: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackground(int) +com.google.android.material.R$color: int material_on_background_disabled +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed +android.didikee.donate.R$attr: int windowActionModeOverlay +androidx.core.R$layout: int notification_template_icon_group +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_Solid +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWindDirection() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginBottom +androidx.loader.R$id: int icon_group +androidx.appcompat.R$style: int Base_DialogWindowTitle_AppCompat +com.google.android.material.R$attr: int maxHeight +com.tencent.bugly.proguard.z: long c(byte[]) +android.didikee.donate.R$id: int submenuarrow +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.proguard.w d +com.tencent.bugly.proguard.u: long f +androidx.preference.R$styleable: int Preference_dependency +com.google.android.material.slider.BaseSlider: void setHaloRadius(int) +androidx.coordinatorlayout.R$id: R$id() +com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$attr: int cpv_showOldColor +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_NOTIFICATIONS +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: java.lang.String address +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List xiche +james.adaptiveicon.R$styleable: int AppCompatTheme_listDividerAlertDialog +androidx.constraintlayout.widget.R$id: int listMode +androidx.preference.R$drawable: int abc_ic_search_api_material +wangdaye.com.geometricweather.R$styleable: int MockView_mock_labelBackgroundColor +com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_android_color +androidx.viewpager2.R$id: int info +okio.Buffer: java.lang.Object clone() +io.reactivex.Observable: io.reactivex.Observable takeUntil(io.reactivex.ObservableSource) +com.google.android.gms.common.internal.zas +james.adaptiveicon.R$dimen: int compat_button_inset_vertical_material +io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable INSTANCE +androidx.work.R$id: int italic +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextTextColor +com.tencent.bugly.proguard.af: java.lang.String a +androidx.core.R$id: int accessibility_custom_action_8 +android.didikee.donate.R$attr: int windowNoTitle +androidx.fragment.R$id: int visible_removing_fragment_view_tag +com.amap.api.location.AMapLocationQualityReport: long getNetUseTime() +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ProgressBar_Horizontal +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endColor +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode INADEQUATE_SECURITY +com.xw.repo.bubbleseekbar.R$string: int abc_shareactionprovider_share_with_application +wangdaye.com.geometricweather.R$string: int glide +okhttp3.Response$Builder: okhttp3.Response cacheResponse +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver +com.jaredrummler.android.colorpicker.R$string: int abc_capital_on +retrofit2.http.HTTP: java.lang.String method() +okhttp3.internal.http2.Http2Reader: void readGoAway(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationX +com.google.android.material.R$style: int Theme_MaterialComponents_Light_DarkActionBar +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias +androidx.preference.R$style: int Base_V26_Theme_AppCompat +cyanogenmod.themes.IThemeChangeListener +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: java.util.List getDeviceComponentVersions() +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_36dp +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_color_selector +androidx.recyclerview.R$drawable: int notification_template_icon_low_bg +okhttp3.internal.http2.Http2Connection$Listener: Http2Connection$Listener() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_elevation +androidx.hilt.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeTopLeft +io.reactivex.internal.util.NotificationLite$ErrorNotification: NotificationLite$ErrorNotification(java.lang.Throwable) +io.reactivex.Observable: io.reactivex.Observable publish(io.reactivex.functions.Function) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.core.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setDatetime(java.lang.String) +android.didikee.donate.R$dimen: int abc_alert_dialog_button_bar_height +androidx.constraintlayout.widget.R$attr: int layoutDescription +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.internal.operators.observable.ObservableZip$ZipObserver[] observers +wangdaye.com.geometricweather.R$drawable: int notif_temp_70 +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer iso0 +androidx.preference.R$attr: int singleLineTitle +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel +com.bumptech.glide.integration.okhttp.R$id: int line1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: CaiYunForecastResult$PrecipitationBean() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.google.android.material.R$styleable: int Slider_trackColorInactive +com.xw.repo.bubbleseekbar.R$styleable: int ActivityChooserView_initialActivityCount james.adaptiveicon.R$anim: int abc_shrink_fade_out_from_bottom -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: java.lang.String icon -com.jaredrummler.android.colorpicker.R$attr: int textAppearancePopupMenuHeader -androidx.hilt.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setAlertId(java.lang.String) -com.google.android.material.R$color: int design_error -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight -androidx.swiperefreshlayout.R$dimen: int compat_button_inset_vertical_material -com.jaredrummler.android.colorpicker.R$attr: int fontStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitation() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_wrapMode -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature Temperature -wangdaye.com.geometricweather.R$string: int material_timepicker_text_input_mode_description -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial Imperial -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: CNWeatherResult$HourlyForecast() -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display4 -cyanogenmod.weather.CMWeatherManager$RequestStatus: int COMPLETED -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runSync() -com.google.android.material.R$drawable: int mtrl_dialog_background -io.reactivex.observers.TestObserver$EmptyObserver: void onComplete() -com.xw.repo.bubbleseekbar.R$layout: int abc_search_view -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColorLink -okhttp3.internal.http2.Http2Connection$4 -android.didikee.donate.R$styleable: int AppCompatTheme_selectableItemBackground -com.google.android.material.R$attr: int onTouchUp -james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -com.jaredrummler.android.colorpicker.R$id: int seekbar -wangdaye.com.geometricweather.common.ui.behaviors.InkPageIndicatorBehavior -com.xw.repo.bubbleseekbar.R$styleable: R$styleable() -androidx.appcompat.resources.R$color: R$color() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Body2 -com.jaredrummler.android.colorpicker.R$dimen: int cpv_required_padding -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void cancelRequest(int) -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Title -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver -retrofit2.RequestBuilder: void canonicalizeForPath(okio.Buffer,java.lang.String,int,int,boolean) -okhttp3.internal.http2.Http2Connection$6: boolean val$inFinished -androidx.recyclerview.R$attr: int alpha -androidx.preference.R$id: int accessibility_custom_action_15 -com.tencent.bugly.crashreport.common.info.a: java.lang.String s() +android.didikee.donate.R$styleable: int MenuView_android_headerBackground +com.google.android.material.R$styleable: int CardView_contentPadding +androidx.lifecycle.LiveData: boolean mDispatchingValue +com.amap.api.fence.GeoFence: void setCenter(com.amap.api.location.DPoint) io.reactivex.Observable: io.reactivex.Observable timestamp() -wangdaye.com.geometricweather.R$dimen: int design_tab_text_size_2line -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_months -wangdaye.com.geometricweather.R$drawable: int notif_temp_60 -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date moonSetDate -androidx.hilt.R$id: int chronometer -com.bumptech.glide.R$id: int chronometer -com.tencent.bugly.proguard.d: java.util.HashMap f -com.google.android.material.R$dimen: int test_mtrl_calendar_day_cornerSize -com.google.android.gms.internal.location.zzac -androidx.lifecycle.ViewModelStore: java.util.HashMap mMap -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Light -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: boolean requestDismiss() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setAqi(java.lang.String) -androidx.appcompat.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -okhttp3.internal.ws.RealWebSocket: boolean writeOneFrame() -com.google.android.material.floatingactionbutton.FloatingActionButton: void setShowMotionSpecResource(int) -okhttp3.Response: Response(okhttp3.Response$Builder) -com.turingtechnologies.materialscrollbar.R$attr: int colorSecondary -com.turingtechnologies.materialscrollbar.R$attr: int itemHorizontalPadding -com.turingtechnologies.materialscrollbar.R$integer: int mtrl_btn_anim_delay_ms -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.util.AtomicThrowable errors -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter daytimeWeatherCodeConverter -cyanogenmod.themes.IThemeChangeListener$Stub: int TRANSACTION_onProgress_0 -androidx.hilt.work.R$bool -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_singleLineTitle -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String RINGTONE -james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionBarOverlay -okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_0 -android.didikee.donate.R$dimen: int abc_config_prefDialogWidth -androidx.lifecycle.Transformations$2 -androidx.core.R$styleable: int GradientColor_android_startX -androidx.viewpager2.R$id: int icon -okhttp3.Cache: int readInt(okio.BufferedSource) -androidx.legacy.coreutils.R$id: int action_text -okio.Okio: java.util.logging.Logger logger -wangdaye.com.geometricweather.db.entities.WeatherEntity -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float snow -android.didikee.donate.R$style: int Theme_AppCompat_Light_DarkActionBar -androidx.preference.R$styleable: int[] MenuItem -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -androidx.multidex.MultiDexApplication: MultiDexApplication() -wangdaye.com.geometricweather.R$string: int wind_8 -com.google.android.material.internal.NavigationMenuItemView: void setNeedsEmptyIcon(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetStart -com.tencent.bugly.proguard.af: java.lang.String a -androidx.lifecycle.ComputableLiveData: java.util.concurrent.atomic.AtomicBoolean mInvalid -wangdaye.com.geometricweather.R$attr: int actionModePopupWindowStyle -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.X509TrustManager) -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber -com.tencent.bugly.proguard.r: java.lang.String f -james.adaptiveicon.R$style: int Widget_AppCompat_ProgressBar_Horizontal -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void request(long) -wangdaye.com.geometricweather.db.entities.DailyEntity: long time -james.adaptiveicon.R$styleable: int Toolbar_contentInsetStart -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_HOURLY_OVERVIEW -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign -cyanogenmod.providers.CMSettings$Global: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) -androidx.customview.R$id: int action_divider -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstVerticalStyle -wangdaye.com.geometricweather.R$id: int container_main_first_card_header -okio.Buffer: okio.Buffer readFrom(java.io.InputStream,long) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display3 +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_Surface +cyanogenmod.app.ILiveLockScreenManager$Stub: ILiveLockScreenManager$Stub() +cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getProfile(android.os.ParcelUuid) +wangdaye.com.geometricweather.R$color: int material_grey_850 +com.amap.api.location.AMapLocation: double b(com.amap.api.location.AMapLocation,double) +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$drawable: int ic_running_in_background +okhttp3.ConnectionSpec: boolean tls +androidx.preference.R$attr: int collapseContentDescription +androidx.hilt.work.R$id: int text +androidx.constraintlayout.utils.widget.ImageFilterButton: void setOverlay(boolean) +androidx.lifecycle.SavedStateHandle: java.lang.Object remove(java.lang.String) +okhttp3.internal.http2.Http2Stream: void receiveRstStream(okhttp3.internal.http2.ErrorCode) +androidx.vectordrawable.animated.R$color +androidx.cardview.R$attr: int contentPaddingRight +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: FlowableConcatMap$ConcatMapInner(io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport) +com.tencent.bugly.crashreport.common.info.a: java.lang.String ao +okio.SegmentedByteString: okio.ByteString sha1() +cyanogenmod.app.CMContextConstants: java.lang.String CM_PERFORMANCE_SERVICE +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +androidx.lifecycle.ViewModelProviders: ViewModelProviders() +james.adaptiveicon.R$styleable: int AppCompatTheme_android_windowIsFloating +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: double Value +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginTop +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayout_Layout +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_inverse_material_dark +okhttp3.ConnectionPool: void put(okhttp3.internal.connection.RealConnection) +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_height +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +com.google.android.material.R$styleable: int[] Transition +com.google.android.material.R$id: int search_voice_btn +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String x +wangdaye.com.geometricweather.R$string: int abc_action_bar_up_description +com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_950 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum Maximum +cyanogenmod.weather.WeatherInfo +com.tencent.bugly.crashreport.common.info.a: java.lang.String O() +com.google.android.material.R$color: int dim_foreground_disabled_material_light +androidx.constraintlayout.widget.R$dimen: int abc_text_size_headline_material +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_background_transition_holo_light +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowMinWidthMinor +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +androidx.appcompat.R$attr: int listPopupWindowStyle +com.google.android.material.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List alertEntityList +com.tencent.bugly.proguard.aq: byte b +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor LIGHT +okio.ByteString: okio.ByteString of(java.nio.ByteBuffer) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextAppearanceActive(int) +androidx.core.widget.NestedScrollView: void setNestedScrollingEnabled(boolean) +androidx.preference.R$attr: int autoSizeMinTextSize +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +androidx.fragment.R$id: int accessibility_custom_action_7 +androidx.fragment.app.FragmentManagerState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) +com.tencent.bugly.crashreport.biz.b: long f() +com.google.android.material.R$attr: int textAppearanceHeadline3 +com.google.android.material.floatingactionbutton.FloatingActionButton: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() +com.jaredrummler.android.colorpicker.ColorPickerView: int getPreferredHeight() +wangdaye.com.geometricweather.R$string: int of_clock +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType BAIDU +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCityId() +okio.ForwardingSource: ForwardingSource(okio.Source) +com.turingtechnologies.materialscrollbar.R$attr: int msb_handleColor +com.google.android.material.R$dimen: int mtrl_shape_corner_size_large_component +com.tencent.bugly.crashreport.crash.h5.a: java.lang.String d +com.google.android.material.R$styleable: int MaterialCardView_android_checkable +androidx.dynamicanimation.R$dimen: int notification_top_pad_large_text +retrofit2.HttpException: int code +androidx.appcompat.R$style: int Widget_AppCompat_ActionButton_CloseMode +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalBias +okhttp3.internal.cache.DiskLruCache: boolean remove(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_title +com.tencent.bugly.crashreport.common.info.a: void a(java.lang.String,java.lang.String) +io.reactivex.internal.util.VolatileSizeArrayList: java.util.List subList(int,int) +androidx.appcompat.resources.R$id: int tag_accessibility_actions +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context,android.util.AttributeSet) +androidx.transition.R$styleable: int GradientColor_android_endX +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void dispose() +com.google.android.material.R$attr: int goIcon +okhttp3.internal.http.StatusLine: StatusLine(okhttp3.Protocol,int,java.lang.String) +cyanogenmod.media.MediaRecorder$AudioSource +com.amap.api.location.AMapLocation: java.lang.String i +cyanogenmod.externalviews.KeyguardExternalView$11: KeyguardExternalView$11(cyanogenmod.externalviews.KeyguardExternalView,float) +okhttp3.internal.http.HttpHeaders: int skipWhitespace(java.lang.String,int) +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark +com.google.android.material.R$id: int snackbar_text +androidx.preference.R$dimen: int compat_button_padding_vertical_material +androidx.appcompat.R$styleable: int ViewBackgroundHelper_backgroundTintMode +com.bumptech.glide.integration.okhttp.R$id: int async +wangdaye.com.geometricweather.R$styleable: int[] BottomAppBar +okio.RealBufferedSink: okio.BufferedSink write(okio.Source,long) +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_clipToPadding +com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_material_dark +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getRelativeHumidity() +com.xw.repo.bubbleseekbar.R$bool +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_TEMPERATURE +androidx.preference.R$anim: int abc_popup_exit +com.amap.api.fence.GeoFence: int ERROR_CODE_UNKNOWN +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Time +androidx.appcompat.R$dimen: int abc_dropdownitem_text_padding_left +com.tencent.bugly.proguard.z: boolean a(java.io.File,java.io.File,int) +com.google.android.material.appbar.CollapsingToolbarLayout: java.lang.CharSequence getTitle() +androidx.fragment.R$styleable: int GradientColor_android_gradientRadius +androidx.viewpager.R$styleable: int ColorStateListItem_android_color +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_baselineAligned +androidx.lifecycle.service.R +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_material +com.loc.k: java.lang.String a +io.reactivex.internal.observers.ForEachWhileObserver: boolean isDisposed() +cyanogenmod.providers.ThemesContract$PreviewColumns: ThemesContract$PreviewColumns() +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$dimen: int material_emphasis_medium +cyanogenmod.app.ThemeComponent: int id +android.didikee.donate.R$dimen: int notification_small_icon_size_as_large +cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(android.os.Parcel,cyanogenmod.themes.ThemeChangeRequest$1) +androidx.preference.R$layout: int notification_template_icon_group +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onNext(java.lang.Object) +androidx.appcompat.R$styleable: int MenuGroup_android_checkableBehavior +androidx.preference.R$id: int right_icon +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintAnimationEnabled +com.google.android.material.R$attr: int errorEnabled +io.reactivex.internal.operators.observable.ObserverResourceWrapper: io.reactivex.Observer downstream +androidx.preference.R$color: int primary_material_light +james.adaptiveicon.R$drawable: int abc_ic_search_api_material +wangdaye.com.geometricweather.R$style: int Animation_AppCompat_DropDownUp +cyanogenmod.themes.IThemeService: void registerThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) +org.greenrobot.greendao.AbstractDao: void deleteByKey(java.lang.Object) +com.tencent.bugly.crashreport.crash.c: void g() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property ApparentTemperature +com.google.android.material.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +com.turingtechnologies.materialscrollbar.R$attr: int seekBarStyle +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float unitFactor +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Borderless +com.bumptech.glide.integration.okhttp.R$id: int right_side +io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit) +cyanogenmod.externalviews.ExternalView$2: android.graphics.Rect val$clipRect +com.tencent.bugly.proguard.am +wangdaye.com.geometricweather.R$dimen: int little_weather_icon_size +okhttp3.EventListener$2 +wangdaye.com.geometricweather.common.basic.models.weather.Base: long getTimeStamp() +wangdaye.com.geometricweather.R$attr: int cpv_sliderColor +androidx.cardview.R$attr: int cardElevation +james.adaptiveicon.R$id: int textSpacerNoTitle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX) +androidx.preference.R$drawable: int abc_seekbar_tick_mark_material +com.google.gson.stream.JsonReader: int peeked +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat valueOf(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int Motion_motionPathRotate +com.xw.repo.bubbleseekbar.R$id: int action_bar_activity_content +wangdaye.com.geometricweather.common.ui.activities.AllergenActivity: AllergenActivity() +com.google.android.material.R$styleable: int ForegroundLinearLayout_android_foreground +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric Metric +okhttp3.internal.http2.Http2: java.lang.String[] FRAME_NAMES +com.bumptech.glide.R$styleable: int[] FontFamily +com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String b +wangdaye.com.geometricweather.R$styleable: int Preference_enabled +androidx.preference.R$attr: int alertDialogCenterButtons +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Line2 +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onComplete() +james.adaptiveicon.AdaptiveIconView: james.adaptiveicon.AdaptiveIcon getIcon() +com.tencent.bugly.proguard.p: boolean a(int,java.lang.String,com.tencent.bugly.proguard.o,boolean) +android.didikee.donate.R$styleable: int PopupWindowBackgroundState_state_above_anchor +okhttp3.MediaType: java.lang.String subtype +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isResult +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_activated_mtrl_alpha +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ch +androidx.drawerlayout.R$id: int notification_background +okio.Okio$2 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date getTo() +okio.Okio$1: Okio$1(okio.Timeout,java.io.OutputStream) +cyanogenmod.externalviews.ExternalView$7: void run() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayMode +com.tencent.bugly.crashreport.biz.b: b() +io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Thread runner +androidx.lifecycle.LifecycleService: androidx.lifecycle.ServiceLifecycleDispatcher mDispatcher +com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Action +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColor(int) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindChillTemperature(java.lang.Integer) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: CaiYunMainlyResult$ForecastHourlyBean() +android.didikee.donate.R$styleable: int AppCompatTheme_dialogPreferredPadding +androidx.preference.R$bool: int abc_allow_stacked_button_bar +wangdaye.com.geometricweather.R$attr: int actionBarItemBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String getNotice() +androidx.hilt.work.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.lifecycle.SavedStateHandleController: java.lang.String TAG_SAVED_STATE_HANDLE_CONTROLLER +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: AccuLocationResult() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: java.lang.String Unit +com.jaredrummler.android.colorpicker.R$attr: int cpv_colorShape +okhttp3.internal.http2.Hpack$Reader: int maxDynamicTableByteCount() +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_shape_horizontal_margin +wangdaye.com.geometricweather.R$color: int colorSearchBarBackground_dark +com.google.android.material.R$styleable: int Transform_android_rotation +cyanogenmod.hardware.IThermalListenerCallback$Stub: android.os.IBinder asBinder() +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: ParallelRunOn$BaseRunOnSubscriber(int,io.reactivex.internal.queue.SpscArrayQueue,io.reactivex.Scheduler$Worker) +com.google.android.material.R$attr: int snackbarStyle +wangdaye.com.geometricweather.R$string: int key_forecast_tomorrow_time +okhttp3.internal.http2.Http2Writer: void ping(boolean,int,int) +cyanogenmod.app.ILiveLockScreenManagerProvider +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfIce +android.support.v4.app.INotificationSideChannel$Default +wangdaye.com.geometricweather.R$drawable: int notif_temp_33 +com.turingtechnologies.materialscrollbar.R$color: int mtrl_bottom_nav_colored_item_tint +android.didikee.donate.R$id +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_android_layout +androidx.constraintlayout.widget.R$styleable: int MenuItem_tooltipText +okhttp3.Cookie: java.util.List parseAll(okhttp3.HttpUrl,okhttp3.Headers) +okhttp3.Response: okhttp3.Protocol protocol +com.tencent.bugly.crashreport.common.strategy.StrategyBean: long x +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: ObservableMergeWithMaybe$MergeWithObserver(io.reactivex.Observer) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: KeyguardExternalViewProviderService$Provider$ProviderImpl$5(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) +wangdaye.com.geometricweather.R$string: int thanks +android.didikee.donate.R$style: int Theme_AppCompat_NoActionBar +androidx.cardview.widget.CardView: CardView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX() +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_SLEEP_ON_RELEASE_VALIDATOR +okhttp3.internal.http2.Hpack$Reader: int readByte() +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String SECONDARY_COLOR +okhttp3.Address: java.net.ProxySelector proxySelector() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setLevel(java.lang.String) +androidx.lifecycle.LifecycleRegistry: int mAddingObserverCounter +androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.R$drawable: int weather_hail_3 +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver parent +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree windDegree +androidx.viewpager.widget.ViewPager: void setScrollState(int) +cyanogenmod.util.ColorUtils: int findPerceptuallyNearestColor(int,int[]) +androidx.hilt.R$attr: int fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$layout: int abc_popup_menu_item_layout +androidx.hilt.R$drawable: int notification_tile_bg +com.tencent.bugly.crashreport.crash.CrashDetailBean: int l +com.google.android.material.R$color: int abc_tint_edittext +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonStyleSmall +okhttp3.Cookie$Builder: java.lang.String domain +android.didikee.donate.R$style: int Base_AlertDialog_AppCompat_Light okhttp3.Response$Builder: java.lang.String message -androidx.vectordrawable.R$drawable: int notification_icon_background -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constrainedHeight -androidx.lifecycle.SavedStateHandleController: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric Metric -james.adaptiveicon.R$attr: int listItemLayout -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_iconTintMode -androidx.viewpager.R$attr: int fontVariationSettings -androidx.preference.R$drawable: int abc_text_select_handle_left_mtrl_dark -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather -wangdaye.com.geometricweather.R$drawable: int material_ic_edit_black_24dp -androidx.recyclerview.R$integer: int status_bar_notification_info_maxnum -androidx.hilt.lifecycle.R$id -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTextHelper -androidx.appcompat.widget.AlertDialogLayout: AlertDialogLayout(android.content.Context,android.util.AttributeSet) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void setInteractivity(boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX() -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -androidx.fragment.R$styleable: int Fragment_android_tag -cyanogenmod.media.MediaRecorder -com.turingtechnologies.materialscrollbar.R$attr: int windowFixedWidthMinor -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_bias -com.jaredrummler.android.colorpicker.R$attr: int panelMenuListWidth -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String timezone -wangdaye.com.geometricweather.R$attr: int behavior_fitToContents -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_right_mtrl_light -com.xw.repo.bubbleseekbar.R$style: int Base_V26_Theme_AppCompat -androidx.appcompat.resources.R$drawable: int notification_bg_normal_pressed -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator -com.amap.api.location.CoordinateConverter: CoordinateConverter(android.content.Context) -wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_ripple_color -cyanogenmod.providers.CMSettings$System: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) -wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderFetchTimeout -okio.Options: java.lang.Object get(int) -wangdaye.com.geometricweather.R$style: int week_weather_week_info -james.adaptiveicon.R$drawable: int abc_seekbar_tick_mark_material -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: boolean cancelled -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_list_padding_top_no_title -androidx.preference.R$styleable: int[] View -androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener mWindowAttachmentListener -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Time -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_GCM_SHA384 -cyanogenmod.weather.RequestInfo: int describeContents() -wangdaye.com.geometricweather.R$id: int item_weather_daily_air_content -okhttp3.Response$Builder: okhttp3.ResponseBody body -okhttp3.internal.connection.StreamAllocation: boolean $assertionsDisabled -androidx.appcompat.resources.R$id: int accessibility_custom_action_20 -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: boolean isDisposed() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.util.List getValue() -com.turingtechnologies.materialscrollbar.R$style: int Base_DialogWindowTitleBackground_AppCompat -androidx.preference.R$dimen: int abc_button_padding_vertical_material -cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING_START_VOLUME -com.google.gson.FieldNamingPolicy$4: FieldNamingPolicy$4(java.lang.String,int) -com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior: AppBarLayout$ScrollingViewBehavior(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$drawable: int abc_ic_menu_overflow_material -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -androidx.preference.R$styleable: int RecyclerView_reverseLayout -androidx.coordinatorlayout.R$dimen: int notification_small_icon_size_as_large -cyanogenmod.hardware.CMHardwareManager: int getNumGammaControls() -okhttp3.internal.cache.DiskLruCache$Entry: long[] lengths -com.google.android.material.R$dimen: int design_bottom_navigation_shadow_height -okhttp3.internal.http1.Http1Codec: boolean isClosed() -cyanogenmod.providers.DataUsageContract: java.lang.String UID -androidx.constraintlayout.widget.R$attr: int listChoiceIndicatorMultipleAnimated -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_DarkActionBar -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorAnimationDuration -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: CaiYunMainlyResult$AqiBeanXX() -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -retrofit2.http.Headers: java.lang.String[] value() -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type AIR_QUALITY -okio.Timeout: Timeout() -androidx.hilt.R$dimen: int compat_button_inset_horizontal_material -okhttp3.MultipartBody: byte[] CRLF -okhttp3.internal.http2.Hpack$Reader: boolean isStaticHeader(int) -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void next(java.lang.Object) -cyanogenmod.providers.CMSettings$Secure$2: CMSettings$Secure$2() -wangdaye.com.geometricweather.R$attr: int cornerSizeBottomRight -com.google.android.material.R$styleable: int LinearLayoutCompat_android_baselineAligned -wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchAnchorId -androidx.customview.R$styleable: int GradientColor_android_endColor -com.google.android.material.appbar.HeaderScrollingViewBehavior: HeaderScrollingViewBehavior() -com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String d -androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.R$attr: int pressedTranslationZ -wangdaye.com.geometricweather.R$id: int notification_big_week_2 -org.greenrobot.greendao.AbstractDao: void update(java.lang.Object) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_alpha -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: void onFailure(retrofit2.Call,java.lang.Throwable) -cyanogenmod.weather.IRequestInfoListener$Stub: java.lang.String DESCRIPTOR -com.google.android.gms.common.server.response.SafeParcelResponse: android.os.Parcelable$Creator CREATOR -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void startNativeMonitor() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias -cyanogenmod.app.ThemeVersion: int CM12_PRE_VERSIONING -wangdaye.com.geometricweather.R$attr: int telltales_tailScale -androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemIconDisabledAlpha -com.turingtechnologies.materialscrollbar.R$attr: int boxCollapsedPaddingTop -com.google.android.material.slider.BaseSlider: void setTickInactiveTintList(android.content.res.ColorStateList) -com.amap.api.fence.GeoFence: float getMaxDis2Center() -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: SavedStateHandle$SavingStateLiveData(androidx.lifecycle.SavedStateHandle,java.lang.String) -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_normal -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActivityChooserView -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService: ForegroundTomorrowForecastUpdateService() -cyanogenmod.app.IProfileManager$Stub: android.os.IBinder asBinder() -androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardSpinner -androidx.core.app.RemoteActionCompat: RemoteActionCompat() -androidx.lifecycle.ProcessLifecycleOwner$1: androidx.lifecycle.ProcessLifecycleOwner this$0 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf -com.google.gson.JsonIOException: JsonIOException(java.lang.Throwable) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionMode -com.turingtechnologies.materialscrollbar.R$attr: int dividerHorizontal -androidx.appcompat.R$drawable: int abc_ic_star_black_48dp -james.adaptiveicon.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -android.didikee.donate.R$attr: int showAsAction -androidx.constraintlayout.widget.R$styleable: int PropertySet_android_alpha -com.tencent.bugly.proguard.f: int b -com.baidu.location.e.l$b: java.lang.String g -cyanogenmod.themes.ThemeManager: void onClientResumed(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -wangdaye.com.geometricweather.R$dimen: int abc_dialog_corner_radius_material -com.google.android.material.R$attr: int layout_constraintTag -wangdaye.com.geometricweather.R$string: int settings_notification_hide_icon_on -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_small_material -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackTintList() -okio.RealBufferedSource: boolean request(long) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerSuccess(java.lang.Object) -androidx.recyclerview.widget.StaggeredGridLayoutManager$SavedState -androidx.constraintlayout.widget.R$attr: int searchViewStyle -androidx.constraintlayout.widget.R$color: int abc_decor_view_status_guard_light -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_GCM_SHA256 -wangdaye.com.geometricweather.R$drawable: int notif_temp_107 -androidx.preference.R$styleable: int[] AppCompatTextHelper -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Subhead_Inverse -androidx.cardview.R$attr: int contentPaddingTop -com.tencent.bugly.crashreport.biz.b: long b(long) -okio.Buffer$UnsafeCursor: int seek(long) -androidx.vectordrawable.R$string: R$string() -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_width -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet,int) -android.support.v4.os.IResultReceiver$Stub$Proxy: android.os.IBinder asBinder() -androidx.lifecycle.extensions.R$styleable: int[] FragmentContainerView -cyanogenmod.app.Profile: Profile(android.os.Parcel,cyanogenmod.app.Profile$1) -wangdaye.com.geometricweather.R$array: int subtitle_data -android.didikee.donate.R$attr: int navigationIcon -com.turingtechnologies.materialscrollbar.R$attr: int navigationContentDescription -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderFetchStrategy -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableBottom -androidx.preference.R$styleable: int AppCompatTheme_popupWindowStyle -androidx.hilt.work.R$anim: int fragment_fade_enter -okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withConnectTimeout(int,java.util.concurrent.TimeUnit) -androidx.appcompat.app.AlertController$RecycleListView -wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_ignoreBatteryOptBtn -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Large -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_type -okhttp3.internal.Internal: okhttp3.internal.Internal instance -wangdaye.com.geometricweather.R$styleable: int Insets_paddingLeftSystemWindowInsets -com.google.android.material.R$dimen: int tooltip_y_offset_touch -androidx.appcompat.R$style: int Widget_AppCompat_PopupMenu_Overflow -com.jaredrummler.android.colorpicker.R$anim: R$anim() -androidx.swiperefreshlayout.R$styleable: int[] SwipeRefreshLayout -androidx.swiperefreshlayout.R$attr: int fontProviderAuthority -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startX +okhttp3.Request$Builder: java.lang.String method +androidx.swiperefreshlayout.R$dimen: int compat_button_padding_horizontal_material +com.xw.repo.bubbleseekbar.R$dimen: int compat_control_corner_material +androidx.preference.R$styleable: int[] ListPopupWindow +androidx.customview.R$styleable: int GradientColor_android_startY +cyanogenmod.externalviews.ExternalViewProviderService$1: android.os.IBinder createExternalView(android.os.Bundle) +android.didikee.donate.R$style: int Base_DialogWindowTitleBackground_AppCompat +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Tooltip +cyanogenmod.alarmclock.ClockContract: java.lang.String AUTHORITY +androidx.appcompat.R$attr: int colorControlActivated +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_dividerPadding +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior: ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior() +com.tencent.bugly.crashreport.CrashReport$UserStrategy: com.tencent.bugly.BuglyStrategy$a getCrashHandleCallback() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: CNWeatherResult$Realtime() +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_1 +com.google.android.material.navigation.NavigationView: int getItemMaxLines() +cyanogenmod.weatherservice.WeatherProviderService: android.os.Handler mHandler +com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_800 +cyanogenmod.app.ProfileGroup: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$id: int dialog_time_setter_done +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: void run() +androidx.hilt.R$id: int async +com.turingtechnologies.materialscrollbar.R$layout: int design_bottom_navigation_item +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyStartText +androidx.hilt.lifecycle.R$id: int tag_unhandled_key_listeners +okhttp3.internal.http2.Http2Connection: long intervalPingsSent +wangdaye.com.geometricweather.R$drawable: int ic_water_percent +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +androidx.swiperefreshlayout.R$dimen: int notification_main_column_padding_top +com.amap.api.location.AMapLocationQualityReport: java.lang.String getNetworkType() +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.viewpager2.R$attr: R$attr() +androidx.customview.R$integer: int status_bar_notification_info_maxnum +org.greenrobot.greendao.AbstractDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +com.amap.api.location.AMapLocation: java.lang.String q +com.turingtechnologies.materialscrollbar.R$styleable: int[] CollapsingToolbarLayout_Layout +retrofit2.adapter.rxjava2.HttpException: HttpException(retrofit2.Response) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object getKey(java.lang.Object) +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityStopped(android.app.Activity) +com.jaredrummler.android.colorpicker.R$id: int action_bar_container +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.util.List _queryWeatherEntity_DailyEntityList(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_container +androidx.preference.R$styleable: int ActionBar_contentInsetEndWithActions +androidx.recyclerview.R$attr: int fontWeight +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$id: int filled +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabAlignmentMode +com.turingtechnologies.materialscrollbar.R$drawable: int design_bottom_navigation_item_background +okhttp3.internal.tls.DistinguishedNameParser: int cur +com.google.android.material.slider.Slider: Slider(android.content.Context,android.util.AttributeSet,int) +androidx.recyclerview.R$id: int async +wangdaye.com.geometricweather.R$transition: int search_activity_return +com.jaredrummler.android.colorpicker.R$id: int item_touch_helper_previous_elevation +cyanogenmod.app.CustomTile: boolean sensitiveData +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf +android.didikee.donate.R$style: int Base_Widget_AppCompat_ImageButton +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: boolean isDisposed() +wangdaye.com.geometricweather.R$attr: int colorPrimaryVariant +com.google.android.material.transformation.ExpandableTransformationBehavior +com.tencent.bugly.proguard.n: java.util.Map e +wangdaye.com.geometricweather.R$styleable: int[] SwitchCompat +com.baidu.location.f +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setOnClickListener(android.view.View$OnClickListener) +androidx.appcompat.widget.AppCompatImageView: void setImageResource(int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: int Age +cyanogenmod.weather.ICMWeatherManager: void cancelRequest(int) +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Selected +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerId +com.tencent.bugly.crashreport.crash.anr.b: com.tencent.bugly.proguard.w e +androidx.appcompat.view.menu.ActionMenuItemView +wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Top_Left +wangdaye.com.geometricweather.R$drawable: int notif_temp_82 +androidx.appcompat.resources.R$color: int secondary_text_default_material_light +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage[] values() +io.reactivex.internal.subscriptions.BasicQueueSubscription: BasicQueueSubscription() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonStyleSmall +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +okhttp3.internal.ws.RealWebSocket: java.util.ArrayDeque messageAndCloseQueue +wangdaye.com.geometricweather.R$dimen: int cardview_default_elevation +wangdaye.com.geometricweather.R$drawable: int notif_temp_116 +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.Observer downstream +com.google.android.material.R$styleable: int CardView_contentPaddingBottom +cyanogenmod.providers.WeatherContract: android.net.Uri AUTHORITY_URI +androidx.constraintlayout.widget.R$styleable: int KeyCycle_transitionEasing +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.functions.BiPredicate comparer +okhttp3.ResponseBody: java.nio.charset.Charset charset() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: int UnitType +wangdaye.com.geometricweather.remoteviews.config.Hilt_WeekWidgetConfigActivity: Hilt_WeekWidgetConfigActivity() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: java.lang.String Unit +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedHeightMajor +com.jaredrummler.android.colorpicker.R$styleable: int Preference_persistent +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node tail +androidx.appcompat.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(byte[],java.lang.String) +cyanogenmod.externalviews.KeyguardExternalView$3: cyanogenmod.externalviews.KeyguardExternalView this$0 +com.google.android.material.textfield.TextInputLayout: void setExpandedHintEnabled(boolean) +com.google.android.material.R$style: int Theme_AppCompat_CompactMenu +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: void onInactive() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_fontFamily +com.baidu.location.e.l$b: java.lang.String f +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextStyle +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode INTERNAL_ERROR +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabView +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$attr: int autoSizeTextType +com.turingtechnologies.materialscrollbar.R$id: int customPanel +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int) +okhttp3.Cache$CacheRequestImpl: void abort() +androidx.preference.R$styleable: int DialogPreference_android_dialogLayout +wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_2 +android.didikee.donate.R$color: int primary_material_dark +com.jaredrummler.android.colorpicker.R$id: int transparency_layout +com.google.android.material.chip.Chip: com.google.android.material.animation.MotionSpec getShowMotionSpec() +androidx.versionedparcelable.ParcelImpl: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$attr: int prefixText +com.tencent.bugly.proguard.r: java.lang.String c +androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context) +io.reactivex.internal.util.ArrayListSupplier: java.lang.Object call() +cyanogenmod.weather.WeatherInfo$Builder: java.util.List mForecastList +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_maxHeight +androidx.coordinatorlayout.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.R$styleable: int Transition_transitionDisable +com.google.android.material.R$styleable: int AppCompatTheme_spinnerStyle +com.google.android.material.R$styleable: int Constraint_layout_constrainedHeight +androidx.constraintlayout.widget.R$attr: int onTouchUp +androidx.appcompat.widget.AppCompatSpinner: void setAdapter(android.widget.SpinnerAdapter) +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.util.concurrent.atomic.AtomicBoolean listRead +androidx.appcompat.widget.DropDownListView: void setListSelectionHidden(boolean) +com.google.android.material.R$styleable: int[] BottomSheetBehavior_Layout +com.xw.repo.bubbleseekbar.R$drawable: int abc_popup_background_mtrl_mult +cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder access$202(cyanogenmod.externalviews.KeyguardExternalView,android.os.IBinder) +com.turingtechnologies.materialscrollbar.R$styleable: int[] Toolbar +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_contentScrim +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight +cyanogenmod.externalviews.ExternalViewProperties: int getY() +com.google.android.material.R$layout: int design_navigation_menu_item +com.tencent.bugly.proguard.u: void a(int,int,byte[],java.lang.String,java.lang.String,com.tencent.bugly.proguard.t,int,int,boolean,java.util.Map) +androidx.appcompat.R$drawable: int abc_btn_check_material +james.adaptiveicon.R$string: int abc_activity_chooser_view_see_all +com.tencent.bugly.crashreport.common.info.a: java.util.List C +androidx.hilt.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.R$id: int activity_settings_container +androidx.preference.R$dimen: int compat_notification_large_icon_max_height +androidx.appcompat.widget.AppCompatImageView: void setSupportBackgroundTintList(android.content.res.ColorStateList) +james.adaptiveicon.R$styleable: int FontFamily_fontProviderCerts +androidx.appcompat.R$styleable: int View_android_theme +com.tencent.bugly.crashreport.CrashReport: android.content.Context a +androidx.customview.R$attr: int fontWeight +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: AccuDailyResult$DailyForecasts$Temperature$Maximum() +com.google.android.material.R$drawable: int abc_seekbar_tick_mark_material +james.adaptiveicon.R$attr: int panelMenuListWidth +wangdaye.com.geometricweather.R$attr: int coordinatorLayoutStyle +cyanogenmod.platform.R$array: R$array() +okhttp3.internal.http2.Http2: java.lang.String[] BINARY +com.xw.repo.bubbleseekbar.R$color: int secondary_text_default_material_dark +androidx.preference.R$attr: int autoSizeTextType +com.google.android.material.R$styleable: int Constraint_flow_verticalGap +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean isEntityUpdateable() +com.github.rahatarmanahmed.cpv.R$styleable +okio.BufferedSource: okio.Buffer buffer() +androidx.preference.R$id: int info +retrofit2.Utils: java.lang.Class declaringClassOf(java.lang.reflect.TypeVariable) +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getRingerMode() +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Badge +android.didikee.donate.R$styleable: int[] ActionMenuItemView +androidx.swiperefreshlayout.R$id: int forever +com.google.android.material.R$styleable: int TextAppearance_android_textStyle +androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_material +androidx.appcompat.widget.AppCompatEditText: android.view.textclassifier.TextClassifier getTextClassifier() +androidx.appcompat.R$id: int shortcut +androidx.constraintlayout.widget.R$styleable: int OnClick_targetId +okhttp3.Request$Builder: okhttp3.Request$Builder cacheControl(okhttp3.CacheControl) +androidx.viewpager2.R$id: int accessibility_custom_action_25 +okio.Segment: boolean shared +com.tencent.bugly.proguard.am: java.util.Map z +androidx.appcompat.R$drawable: int btn_radio_off_to_on_mtrl_animation +com.loc.k +cyanogenmod.externalviews.ExternalViewProperties: int getX() +cyanogenmod.providers.CMSettings$System: java.lang.String DIALER_OPENCNAM_AUTH_TOKEN +com.google.android.material.card.MaterialCardView: int getStrokeColor() +com.jaredrummler.android.colorpicker.R$attr: int contentDescription +james.adaptiveicon.R$dimen: int abc_text_size_display_1_material +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: void detach() +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onComplete() +wangdaye.com.geometricweather.R$animator: int mtrl_fab_transformation_sheet_expand_spec +com.google.android.material.circularreveal.CircularRevealRelativeLayout +androidx.preference.R$attr: int navigationIcon +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_constraint_referenced_ids +cyanogenmod.library.R$attr: int type +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_closeItemLayout +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_pressed +com.github.rahatarmanahmed.cpv.CircularProgressView: float indeterminateRotateOffset +com.google.android.gms.base.R$string: int common_google_play_services_update_button +org.greenrobot.greendao.AbstractDaoSession: void update(java.lang.Object) +androidx.cardview.R$styleable: int CardView_cardPreventCornerOverlap +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowMinWidthMinor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX +androidx.constraintlayout.widget.R$styleable: int MockView_mock_label +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setPrecipitationColor(int) +androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context,android.util.AttributeSet) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$x +com.google.android.material.R$styleable: int Slider_android_enabled +android.didikee.donate.R$string: int abc_activitychooserview_choose_application +com.xw.repo.bubbleseekbar.R$dimen: int abc_floating_window_z +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindLevel +com.google.android.material.R$styleable: int MotionLayout_showPaths +okio.Buffer$1: java.lang.String toString() +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemRippleColor +com.tencent.bugly.proguard.s: com.tencent.bugly.proguard.s b +cyanogenmod.themes.IThemeService$Stub: java.lang.String DESCRIPTOR +james.adaptiveicon.R$styleable: int LinearLayoutCompat_divider +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_2_material +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$drawable: int notif_temp_26 +james.adaptiveicon.R$id: int action_bar +androidx.legacy.content.WakefulBroadcastReceiver: WakefulBroadcastReceiver() +android.didikee.donate.R$dimen: int abc_switch_padding +androidx.appcompat.widget.ContentFrameLayout +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Info +james.adaptiveicon.R$color: int primary_dark_material_light +androidx.work.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_secondary +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection connection() +com.google.android.material.R$attr: int placeholder_emptyVisibility +androidx.preference.R$integer: int abc_config_activityDefaultDur +cyanogenmod.themes.IThemeService$Stub$Proxy: void rebuildResourceCache() +androidx.constraintlayout.widget.R$string: int abc_searchview_description_query +androidx.constraintlayout.widget.R$styleable: int ActionMode_titleTextStyle +com.google.android.material.R$style: int Animation_AppCompat_Dialog +okhttp3.internal.NamedRunnable: void execute() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property PublishDate +android.didikee.donate.R$id: int submit_area +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: android.os.IBinder asBinder() +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String INSTALL_TIME +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LOCK_WALLPAPER_THUMBNAIL +wangdaye.com.geometricweather.R$drawable: int abc_btn_borderless_material +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat +okhttp3.internal.http.HttpDate: java.lang.ThreadLocal STANDARD_DATE_FORMAT +androidx.transition.R$layout: R$layout() +androidx.fragment.R$styleable: int GradientColor_android_centerColor +com.google.android.material.R$color: int cardview_shadow_end_color +com.xw.repo.bubbleseekbar.R$attr: int editTextBackground +com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_track_material +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotationY +okhttp3.Cache$CacheResponseBody: long contentLength() +androidx.constraintlayout.widget.R$color: int foreground_material_dark +androidx.fragment.R$styleable: int FragmentContainerView_android_tag +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.constraintlayout.widget.R$styleable: int Constraint_barrierMargin +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable +androidx.legacy.coreutils.R$layout +cyanogenmod.themes.ThemeManager: java.util.Set access$000(cyanogenmod.themes.ThemeManager) +com.xw.repo.bubbleseekbar.R$attr: int homeLayout +androidx.vectordrawable.R$integer +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorAccent +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerX +com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog +com.google.android.material.R$string: int mtrl_picker_toggle_to_text_input_mode +wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_colored +cyanogenmod.app.Profile: void setDozeMode(int) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_pathMotionArc +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeTextType +android.didikee.donate.R$styleable: int SwitchCompat_switchTextAppearance +com.turingtechnologies.materialscrollbar.R$id: int stretch +androidx.preference.R$id: int tag_transition_group +com.xw.repo.bubbleseekbar.R$style: int Platform_Widget_AppCompat_Spinner +android.didikee.donate.R$color: int abc_search_url_text +androidx.constraintlayout.utils.widget.ImageFilterView: float getCrossfade() +com.tencent.bugly.crashreport.crash.CrashDetailBean: boolean k +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRealFeelTemperature(java.lang.Integer) +io.reactivex.internal.subscriptions.BasicQueueSubscription: long serialVersionUID +retrofit2.http.Body +wangdaye.com.geometricweather.R$id: int postLayout +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_card +com.google.android.material.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.R$dimen: int abc_button_padding_horizontal_material +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +androidx.preference.DropDownPreference +com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextColor +com.google.android.gms.common.R$string +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_switch +wangdaye.com.geometricweather.R$anim: int abc_slide_in_top +com.google.android.material.tabs.TabLayout$TabView: void setSelected(boolean) +androidx.coordinatorlayout.R$styleable: int GradientColor_android_type +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarItemBackground +androidx.appcompat.R$drawable: int tooltip_frame_light +com.turingtechnologies.materialscrollbar.R$id: int action_bar_subtitle +com.tencent.bugly.crashreport.crash.anr.b +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionMode +com.google.android.material.R$attr: int materialCalendarHeaderLayout +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.ChineseCityEntity) +androidx.preference.R$attr: int fontProviderFetchStrategy +com.google.android.material.R$dimen: int abc_seekbar_track_progress_height_material +com.google.android.material.tabs.TabLayout: void addOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) +com.google.android.material.R$anim: int abc_popup_enter +com.turingtechnologies.materialscrollbar.R$animator +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: void run() +com.tencent.bugly.crashreport.biz.a +androidx.appcompat.widget.Toolbar +androidx.loader.R$styleable: int[] FontFamilyFont +androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +androidx.customview.R$layout +androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveOffset +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +androidx.preference.EditTextPreference +com.google.android.material.R$color: int mtrl_navigation_item_icon_tint +com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +androidx.preference.R$styleable: int SearchView_android_focusable +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_overlay +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortRealFeeTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +io.reactivex.internal.schedulers.ScheduledDirectTask +androidx.constraintlayout.widget.R$attr: int animate_relativeTo +wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_Solid +com.google.android.material.R$attr: int cornerSizeBottomLeft +com.google.android.material.R$styleable: int ThemeEnforcement_enforceMaterialTheme +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitation +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void setInteractivity(boolean) +androidx.transition.R$styleable: int ColorStateListItem_android_color +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer androidx.preference.R$styleable: int RecyclerView_spanCount -androidx.constraintlayout.widget.R$id: int SHOW_PROGRESS -com.google.android.material.R$dimen: int abc_dropdownitem_text_padding_left -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String dailyForecast -com.jaredrummler.android.colorpicker.R$anim: int abc_tooltip_exit -androidx.preference.R$styleable: int Toolbar_titleMarginBottom -okio.HashingSink: HashingSink(okio.Sink,java.lang.String) -androidx.appcompat.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -androidx.preference.R$id: int alertTitle -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getMoldLevel() -wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentHeight -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void errorAll(io.reactivex.Observer) -com.google.android.material.R$style: int TextAppearance_AppCompat_Medium -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarStyle -wangdaye.com.geometricweather.R$string: int material_timepicker_minute -com.google.android.material.slider.RangeSlider: void setThumbStrokeColor(android.content.res.ColorStateList) -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Title -androidx.transition.R$drawable: R$drawable() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: io.reactivex.internal.fuseable.SimplePlainQueue queue -com.google.android.material.slider.RangeSlider: void setStepSize(float) -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -androidx.constraintlayout.widget.R$attr: int flow_lastHorizontalBias -androidx.appcompat.widget.AppCompatSpinner: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$styleable: int TextInputLayout_passwordToggleTintMode -androidx.constraintlayout.widget.R$styleable: int ActionBar_height -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_controlBackground -androidx.legacy.coreutils.R$styleable: int ColorStateListItem_alpha -com.jaredrummler.android.colorpicker.R$attr: int singleChoiceItemLayout -androidx.appcompat.R$styleable: int[] PopupWindow -james.adaptiveicon.R$styleable: int DrawerArrowToggle_spinBars -androidx.preference.internal.PreferenceImageView: void setMaxWidth(int) -androidx.constraintlayout.widget.R$attr: R$attr() -com.jaredrummler.android.colorpicker.R$drawable: int abc_edit_text_material -wangdaye.com.geometricweather.R$dimen: int abc_dialog_padding_top_material -retrofit2.Retrofit: retrofit2.Converter nextRequestBodyConverter(retrofit2.Converter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[]) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupMenu -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void signalConsumer() -com.google.gson.FieldNamingPolicy: java.lang.String upperCaseFirstLetter(java.lang.String) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_tick_mark_material -retrofit2.Platform: java.util.concurrent.Executor defaultCallbackExecutor() -com.google.android.material.R$attr: int homeAsUpIndicator -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream newStream(java.util.List,boolean) -com.xw.repo.bubbleseekbar.R$attr: int actionModeSplitBackground -cyanogenmod.weather.RequestInfo: int TYPE_WEATHER_BY_GEO_LOCATION_REQ -androidx.appcompat.R$styleable: int MenuItem_android_enabled -com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusBottomEnd() -com.google.android.material.R$color: int abc_color_highlight_material -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void drain() -com.tencent.bugly.crashreport.common.info.a: void a(java.lang.String) -cyanogenmod.platform.R -com.google.android.material.R$id: int dragStart -com.google.android.material.R$id: int mtrl_calendar_main_pane -androidx.constraintlayout.widget.R$color: int material_blue_grey_900 -com.google.android.material.R$styleable: int AppBarLayout_statusBarForeground -androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_EditText -com.jaredrummler.android.colorpicker.R$anim: int abc_slide_out_bottom -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_COLOR -androidx.constraintlayout.widget.R$style: int Animation_AppCompat_Dialog -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_toId -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DOUBLE_TAP_SLEEP_GESTURE_VALIDATOR -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeWetBulbTemperature -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light_normal_background -com.google.android.material.R$color: int foreground_material_light -androidx.constraintlayout.widget.R$styleable: int MockView_mock_showLabel -wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_container -com.google.android.material.R$layout: int abc_tooltip -androidx.preference.R$styleable: int StateListDrawable_android_enterFadeDuration -wangdaye.com.geometricweather.R$string: int settings_notification_hide_in_lockScreen_on -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView -james.adaptiveicon.R$id: int split_action_bar -androidx.appcompat.R$id: int action_container -okhttp3.Headers$Builder: okhttp3.Headers$Builder set(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: int getMarginBottom() -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean cancelled -androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_chainStyle -androidx.constraintlayout.widget.R$attr: int navigationContentDescription -com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.Typeface getCollapsedTitleTypeface() -androidx.hilt.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_transitionEasing -com.google.gson.stream.JsonReader: long peekedLong -okio.Buffer: okio.Buffer$UnsafeCursor readUnsafe(okio.Buffer$UnsafeCursor) -androidx.customview.R$dimen: int notification_subtext_size -com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.Throwable) -wangdaye.com.geometricweather.R$style: int Preference_CheckBoxPreference_Material -com.google.android.material.R$attr: int layout_constraintGuide_end -androidx.transition.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_Cut -androidx.drawerlayout.widget.DrawerLayout$SavedState -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: int UnitType -com.jaredrummler.android.colorpicker.R$id: int top -androidx.preference.R$dimen: int notification_top_pad_large_text -io.reactivex.internal.subscriptions.SubscriptionArbiter: void request(long) -james.adaptiveicon.R$id: int icon -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner -com.jaredrummler.android.colorpicker.R$id: int search_edit_frame -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: double Value -wangdaye.com.geometricweather.R$attr: int logoDescription -com.xw.repo.bubbleseekbar.R$string: int abc_shareactionprovider_share_with_application -androidx.vectordrawable.R$styleable: int GradientColor_android_endY -androidx.constraintlayout.widget.R$styleable: int MenuItem_actionViewClass -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_popupMenuStyle -cyanogenmod.app.ProfileManager -retrofit2.http.Multipart -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Small -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionMode -com.tencent.bugly.crashreport.crash.a: int f -androidx.transition.R$id: int icon -com.tencent.bugly.proguard.s -james.adaptiveicon.R$style: int Widget_AppCompat_SeekBar_Discrete -cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable -com.google.android.material.R$drawable: int mtrl_ic_cancel -androidx.recyclerview.widget.RecyclerView: void setHasFixedSize(boolean) -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_15 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TimeStamp -androidx.appcompat.R$attr: int drawableBottomCompat -cyanogenmod.app.ILiveLockScreenManager: void setLiveLockScreenEnabled(boolean) -com.turingtechnologies.materialscrollbar.R$layout: int abc_activity_chooser_view -androidx.appcompat.R$attr: int numericModifiers -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_tileMode -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.StreamAllocation streamAllocation() -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.PushObserver pushObserver -androidx.appcompat.resources.R$id: int accessibility_custom_action_27 -android.didikee.donate.R$styleable: int ActionBar_contentInsetRight -retrofit2.KotlinExtensions: java.lang.Object awaitResponse(retrofit2.Call,kotlin.coroutines.Continuation) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerComplete(int,boolean) -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String cityId -androidx.lifecycle.Lifecycling: int GENERATED_CALLBACK -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object lpValue() -com.google.android.material.R$styleable: int KeyTimeCycle_waveShape -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry: MfEphemerisResult$Geometry() -androidx.swiperefreshlayout.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.R$layout: R$layout() -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListMenuView -cyanogenmod.externalviews.KeyguardExternalView: void onBouncerShowing(boolean) -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onError(java.lang.Throwable) -com.google.android.material.R$attr: int showText -wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_share_mtrl_alpha -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents -com.jaredrummler.android.colorpicker.R$dimen: int abc_search_view_preferred_width -james.adaptiveicon.R$styleable: int AppCompatTheme_checkedTextViewStyle -io.reactivex.internal.schedulers.ScheduledDirectTask: long serialVersionUID -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_normal -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType MAPABC -wangdaye.com.geometricweather.R$drawable: int notif_temp_133 -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTemperature -com.tencent.bugly.crashreport.biz.a: void c() -cyanogenmod.app.LiveLockScreenManager: android.content.Context mContext -wangdaye.com.geometricweather.R$color: int colorTextTitle_dark -io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -androidx.appcompat.R$attr: int textAppearanceListItem -androidx.appcompat.R$style: int Widget_AppCompat_ActionButton_CloseMode -com.amap.api.location.CoordUtil: boolean isLoadedSo() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_textEndPadding -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_holo_light -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: android.os.Bundle val$options -android.didikee.donate.R$attr: int logoDescription -androidx.loader.R$attr: int fontVariationSettings -com.jaredrummler.android.colorpicker.R$attr: int showDividers -androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context,android.util.AttributeSet,int) -okhttp3.ResponseBody$BomAwareReader: java.io.Reader delegate -retrofit2.http.PUT -androidx.fragment.R$styleable: int GradientColor_android_type -androidx.appcompat.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.R$attr: int buttonBarButtonStyle -com.google.android.material.R$attr: int errorEnabled -androidx.constraintlayout.widget.R$styleable: int MenuItem_numericModifiers -okhttp3.internal.http2.Hpack$Writer: int dynamicTableByteCount -io.reactivex.internal.util.NotificationLite: org.reactivestreams.Subscription getSubscription(java.lang.Object) -okhttp3.internal.ws.RealWebSocket: boolean enqueuedClose -com.tencent.bugly.proguard.f: java.util.Map l -wangdaye.com.geometricweather.R$attr: int expanded -com.google.android.material.R$layout: int design_navigation_item -com.tencent.bugly.crashreport.common.info.a: java.lang.String c() -androidx.preference.R$styleable: int CheckBoxPreference_android_summaryOn -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogCornerRadius -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -androidx.appcompat.widget.ActionBarOverlayLayout: void setActionBarHideOffset(int) -androidx.appcompat.widget.ActionMenuView: int getPopupTheme() -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.internal.util.AtomicThrowable errors -james.adaptiveicon.R$styleable: int AppCompatTheme_colorPrimaryDark -androidx.preference.R$dimen: int abc_action_button_min_width_overflow_material -com.turingtechnologies.materialscrollbar.R$attr: int chipStartPadding -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onError(java.lang.Throwable) -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTint -com.google.android.material.R$id: int autoCompleteToStart -com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerComplete(int) -retrofit2.RequestFactory: boolean isMultipart -com.turingtechnologies.materialscrollbar.R$layout: int design_bottom_navigation_item -com.bumptech.glide.R$id: int notification_background -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: int phenomenoMaxColorId -androidx.constraintlayout.widget.R$layout: int abc_action_mode_close_item_material -androidx.appcompat.R$attr: int allowStacking -wangdaye.com.geometricweather.R$attr: int dependency -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_night_1 -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitation -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean isSunlightEnhancementSelfManaged() -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dark -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollEnabled -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_height_material -james.adaptiveicon.R$styleable: int AppCompatTextView_android_textAppearance -com.google.android.material.R$style: int Widget_Design_TabLayout -androidx.preference.R$styleable: int[] ViewStubCompat -com.bumptech.glide.R$id: int line1 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object getKey(java.lang.Object) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: KeyguardExternalViewProviderService$Provider(cyanogenmod.externalviews.KeyguardExternalViewProviderService,android.os.Bundle) -com.tencent.bugly.proguard.ak: int k -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: MfEphemerisResult() -com.google.android.material.slider.Slider: Slider(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: AccuAlertResult() -androidx.appcompat.R$styleable: int GradientColor_android_gradientRadius -okhttp3.internal.cache.FaultHidingSink: void flush() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial Imperial -com.google.android.material.bottomnavigation.BottomNavigationView$SavedState -wangdaye.com.geometricweather.settings.dialogs.ProvidersPreviewerDialog: ProvidersPreviewerDialog() -androidx.preference.CheckBoxPreference: CheckBoxPreference(android.content.Context,android.util.AttributeSet) -com.google.android.material.appbar.MaterialToolbar: void setElevation(float) -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type PRECIPITATION -androidx.preference.R$styleable: int LinearLayoutCompat_divider -androidx.hilt.R$id: int accessibility_custom_action_26 -cyanogenmod.hardware.CMHardwareManager: int FEATURE_AUTO_CONTRAST -com.google.gson.FieldNamingPolicy$1: FieldNamingPolicy$1(java.lang.String,int) -com.jaredrummler.android.colorpicker.R$attr: int windowActionBar -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: long serialVersionUID -com.jaredrummler.android.colorpicker.R$attr: int fontVariationSettings -androidx.constraintlayout.widget.R$attr: int currentState -com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrimColor(int) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_3DES_EDE_CBC_SHA -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_ActionBar -com.jaredrummler.android.colorpicker.R$layout: int abc_action_menu_item_layout -com.xw.repo.bubbleseekbar.R$attr: int backgroundTint -okhttp3.Cache$1: okhttp3.Response get(okhttp3.Request) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPopupWindowStyle -android.didikee.donate.R$dimen: int abc_action_bar_overflow_padding_start_material -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Title -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setZenModeWithDuration -wangdaye.com.geometricweather.R$id: int widget_week_week_4 -com.google.android.gms.common.internal.zax -androidx.preference.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: MfForecastV2Result$ForecastProperties() -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getUniqueDeviceId -wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassDescription(java.lang.String) -wangdaye.com.geometricweather.R$id: int container_main_aqi -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Light -androidx.viewpager2.R$color -androidx.transition.R$color: R$color() -wangdaye.com.geometricweather.R$id: int item_tag -com.tencent.bugly.crashreport.common.info.b -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: java.lang.String getDarkModeName(android.content.Context) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button -wangdaye.com.geometricweather.R$drawable: int notif_temp_96 -io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -okhttp3.internal.http2.Hpack$Reader: Hpack$Reader(int,okio.Source) -cyanogenmod.app.IPartnerInterface$Stub$Proxy: java.lang.String getInterfaceDescriptor() -cyanogenmod.externalviews.KeyguardExternalView$2: void collapseNotificationPanel() -com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day -james.adaptiveicon.R$dimen: int compat_control_corner_material -com.google.android.material.R$styleable: int Layout_layout_constraintLeft_toRightOf -com.xw.repo.bubbleseekbar.R$attr: int actionModeFindDrawable -androidx.constraintlayout.widget.R$id: int scrollView -android.didikee.donate.R$style: int Animation_AppCompat_Dialog -androidx.appcompat.widget.ActionBarContextView: void setVisibility(int) -wangdaye.com.geometricweather.R$id: int transition_transform -okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,byte[]) -wangdaye.com.geometricweather.R$string: int feedback_collect_succeed -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModePasteDrawable -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd -com.xw.repo.bubbleseekbar.R$dimen: int abc_config_prefDialogWidth -com.amap.api.location.UmidtokenInfo$a: UmidtokenInfo$a() -com.amap.api.fence.GeoFenceClient: java.util.List getAllGeoFence() -androidx.appcompat.R$styleable: int AppCompatTextView_textLocale -com.xw.repo.bubbleseekbar.R$color: int abc_background_cache_hint_selector_material_dark -com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_alphaChannelVisible -okhttp3.Response: okhttp3.Request request -cyanogenmod.weather.WeatherInfo$DayForecast$1: java.lang.Object[] newArray(int) -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent UNKNOWN -androidx.lifecycle.Transformations$3: androidx.lifecycle.MediatorLiveData val$outputLiveData -androidx.hilt.work.R$id: int accessibility_custom_action_6 -androidx.recyclerview.R$dimen: int item_touch_helper_swipe_escape_velocity -androidx.hilt.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status valueOf(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeFindDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: double Value -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitationDuration -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_creator -com.google.android.material.R$color: int mtrl_btn_text_color_disabled -wangdaye.com.geometricweather.common.basic.models.Location -android.didikee.donate.R$attr: int defaultQueryHint -com.google.android.material.R$styleable: int KeyCycle_android_elevation -androidx.preference.R$attr: int voiceIcon -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialButtonToggleGroup -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -com.turingtechnologies.materialscrollbar.R$attr: int dividerPadding -androidx.customview.R$styleable: int[] GradientColorItem -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -androidx.vectordrawable.animated.R$color: int notification_action_color_filter -androidx.appcompat.R$styleable: int ActionBar_indeterminateProgressStyle -com.amap.api.fence.DistrictItem: java.util.List getPolyline() -james.adaptiveicon.R$id: int customPanel -androidx.core.R$integer -com.turingtechnologies.materialscrollbar.R$id: int radio -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endX -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification -android.didikee.donate.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -retrofit2.http.Part: java.lang.String encoding() -okhttp3.OkHttpClient$Builder: void setInternalCache(okhttp3.internal.cache.InternalCache) -androidx.preference.R$color: int material_blue_grey_900 -wangdaye.com.geometricweather.R$attr: int customColorDrawableValue -retrofit2.Invocation: java.util.List arguments() -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType[] values() -cyanogenmod.app.ThemeComponent: int id -com.turingtechnologies.materialscrollbar.R$attr: int spinBars -wangdaye.com.geometricweather.R$attr: int cpv_colorShape -com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize -com.google.android.material.R$dimen: int mtrl_shape_corner_size_large_component -com.tencent.bugly.proguard.g -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense -io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable valueOf(java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldDescription -okio.RealBufferedSink: okio.BufferedSink writeDecimalLong(long) -okio.RealBufferedSink$1: RealBufferedSink$1(okio.RealBufferedSink) -androidx.transition.R$styleable: int FontFamilyFont_android_fontStyle -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_shapeAppearanceOverlay -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String ShortPhrase -androidx.activity.R$id: int accessibility_custom_action_28 -androidx.constraintlayout.widget.R$attr: int titleMargins -cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode[] $VALUES -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.lang.Object NEXT_WINDOW -com.tencent.bugly.crashreport.crash.b: void d(java.util.List) -okhttp3.internal.http2.Http2Stream: void receiveRstStream(okhttp3.internal.http2.ErrorCode) -wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_creator -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void clear() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.lang.Object NEXT_WINDOW -cyanogenmod.weather.WeatherInfo: double mWindSpeed -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: double Value +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context) +com.amap.api.location.AMapLocation: java.lang.String getBuildingId() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display4 +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isFlowable +wangdaye.com.geometricweather.R$attr: int badgeStyle +androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context) +androidx.work.R$styleable: int GradientColor_android_centerColor +com.xw.repo.bubbleseekbar.R$attr: int bsb_touch_to_seek +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textSize +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTextHelper +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Badge +io.reactivex.Observable: io.reactivex.Maybe lastElement() +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy +cyanogenmod.providers.CMSettings$System$2: boolean validate(java.lang.String) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean done +com.tencent.bugly.proguard.p: boolean a(int,java.lang.String,byte[],com.tencent.bugly.proguard.o,boolean) +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean isEnabled() +okhttp3.Address: javax.net.ssl.HostnameVerifier hostnameVerifier() +james.adaptiveicon.R$styleable: int SearchView_queryHint +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_statusBarBackground +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean getVisibility() +androidx.swiperefreshlayout.R$id: int right_icon +androidx.core.R$layout: int notification_action +retrofit2.http.HeaderMap +com.google.android.material.R$id: int expand_activities_button +wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: void onCreate(org.greenrobot.greendao.database.Database) +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text_CenterStacked +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_switchTextOn +james.adaptiveicon.R$styleable: int TextAppearance_textLocale +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: long remaining +com.tencent.bugly.crashreport.CrashReport: boolean setJavascriptMonitor(android.webkit.WebView,boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayoutStates +okhttp3.internal.cache.DiskLruCache: void readJournalLine(java.lang.String) +okhttp3.internal.connection.RouteSelector: java.util.List inetSocketAddresses +cyanogenmod.platform.Manifest$permission: java.lang.String READ_THEMES +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Load +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerComplete() +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_3 +androidx.hilt.work.R$bool: int workmanager_test_configuration +io.reactivex.Observable: io.reactivex.Observable doFinally(io.reactivex.functions.Action) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: void run() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService this$0 +wangdaye.com.geometricweather.common.basic.models.weather.UV: boolean isValid() +androidx.appcompat.resources.R$style: int Widget_Compat_NotificationActionContainer +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void cancel() +com.tencent.bugly.crashreport.biz.UserInfoBean +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ButtonBar +androidx.appcompat.R$attr: int windowFixedHeightMinor +cyanogenmod.externalviews.IExternalViewProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +okio.RealBufferedSource$1: RealBufferedSource$1(okio.RealBufferedSource) +com.google.android.gms.internal.location.zzj +androidx.appcompat.resources.R$id: int notification_main_column_container +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_radius +com.google.android.material.R$styleable: int OnSwipe_dragScale +androidx.lifecycle.ViewModelProvider$KeyedFactory +androidx.appcompat.R$styleable: int SearchView_android_focusable +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitation +wangdaye.com.geometricweather.R$id: int clip_horizontal +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_padding_start_material +wangdaye.com.geometricweather.R$attr: int actionDropDownStyle +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.internal.util.AtomicThrowable errors +androidx.activity.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_19 +io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textColorSearchUrl +androidx.preference.R$styleable: int SwitchPreference_android_summaryOff +cyanogenmod.app.Profile: boolean isConditionalType() +com.google.android.material.R$attr: int tabBackground +okhttp3.internal.ws.RealWebSocket$Close: int code +io.reactivex.Observable: io.reactivex.Completable concatMapCompletable(io.reactivex.functions.Function) +cyanogenmod.externalviews.KeyguardExternalView: void unregisterOnWindowAttachmentChangedListener(cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener) +com.google.android.material.R$styleable: int[] AppBarLayout +androidx.lifecycle.extensions.R$id: int action_divider +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setHostname +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_Bridge +androidx.recyclerview.R$layout +okhttp3.internal.ws.RealWebSocket: RealWebSocket(okhttp3.Request,okhttp3.WebSocketListener,java.util.Random,long) +androidx.appcompat.widget.AppCompatImageView: void setBackgroundResource(int) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit valueOf(java.lang.String) +androidx.dynamicanimation.R$id: int async +wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.AlertEntity) +androidx.transition.R$styleable: int[] FontFamilyFont +com.google.android.material.timepicker.ClockFaceView +com.google.gson.stream.JsonReader$1: void promoteNameToValue(com.google.gson.stream.JsonReader) james.adaptiveicon.R$attr: int subMenuArrow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: java.lang.String Unit -androidx.preference.R$anim -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Surface -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX getAqi() -com.turingtechnologies.materialscrollbar.R$attr: int queryHint -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_titleTextStyle -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarSize -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.background.polling.PollingUpdateHelper: void setOnPollingUpdateListener(wangdaye.com.geometricweather.background.polling.PollingUpdateHelper$OnPollingUpdateListener) -androidx.appcompat.R$attr: int background -androidx.transition.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_divider_thickness -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_divider -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_2 -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeFindDrawable -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_RC4_128_MD5 -wangdaye.com.geometricweather.R$styleable: int[] ClockFaceView -com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_offset -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_slideLockscreenIn -cyanogenmod.app.ILiveLockScreenManager: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -com.google.android.material.R$attr: int background -androidx.appcompat.R$attr: int state_above_anchor -com.google.android.material.R$attr: int onPositiveCross -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService listenerExecutor -wangdaye.com.geometricweather.R$style: int Preference_Material -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -androidx.constraintlayout.widget.R$dimen: int abc_search_view_preferred_height -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: ExecutorScheduler$ExecutorWorker$BooleanRunnable(java.lang.Runnable) -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdt -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setSensorEnable(boolean) -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_19 -io.reactivex.internal.util.NotificationLite$ErrorNotification: long serialVersionUID -androidx.recyclerview.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTemperature(int) -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle -wangdaye.com.geometricweather.R$id: int widget_day_week_subtitle -cyanogenmod.app.ICMTelephonyManager: void setDataConnectionSelectedOnSub(int) -androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView: void setSelector(android.graphics.drawable.Drawable) -androidx.appcompat.widget.ActionMenuPresenter$SavedState: android.os.Parcelable$Creator CREATOR -com.google.android.material.textfield.TextInputLayout: void setEndIconVisible(boolean) -android.didikee.donate.R$id: int notification_main_column_container -com.amap.api.location.APSService: void onCreate(android.content.Context) -cyanogenmod.externalviews.KeyguardExternalView$2: void slideLockscreenIn() -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_processCityNameLookupRequest -androidx.appcompat.R$attr: int drawableRightCompat -wangdaye.com.geometricweather.R$styleable: int ActionMode_height -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String weatherPhase -com.amap.api.location.AMapLocationClientOption -cyanogenmod.externalviews.KeyguardExternalView$3: cyanogenmod.externalviews.KeyguardExternalView this$0 -wangdaye.com.geometricweather.R$integer: int design_tab_indicator_anim_duration_ms -androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context) -okhttp3.internal.platform.AndroidPlatform: boolean api24IsCleartextTrafficPermitted(java.lang.String,java.lang.Class,java.lang.Object) -cyanogenmod.profiles.StreamSettings: void setValue(int) -wangdaye.com.geometricweather.R$id: int item_weather_daily_value_value -com.google.android.material.R$color -james.adaptiveicon.R$drawable: int abc_btn_radio_to_on_mtrl_000 -org.greenrobot.greendao.AbstractDao: void refresh(java.lang.Object) -wangdaye.com.geometricweather.R$id: int material_timepicker_ok_button -androidx.drawerlayout.R$style: R$style() -io.reactivex.internal.disposables.ArrayCompositeDisposable: io.reactivex.disposables.Disposable replaceResource(int,io.reactivex.disposables.Disposable) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_26 -okhttp3.internal.cache.DiskLruCache$Snapshot: void close() -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getNumberOfProfiles -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: int status -com.google.android.material.imageview.ShapeableImageView: android.content.res.ColorStateList getStrokeColor() -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_subtitle -android.support.v4.os.ResultReceiver$MyResultReceiver: void send(int,android.os.Bundle) -android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableRightCompat -androidx.preference.R$styleable: int Preference_shouldDisableView -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -com.google.android.material.bottomnavigation.BottomNavigationView$SavedState: android.os.Parcelable$Creator CREATOR -androidx.appcompat.view.menu.ListMenuItemView: void setTitle(java.lang.CharSequence) -com.google.android.material.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onComplete() -com.google.android.material.R$styleable: int Chip_chipStrokeColor -com.amap.api.fence.GeoFenceClient: boolean isPause() -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabView -james.adaptiveicon.R$color: int abc_search_url_text_normal -androidx.preference.R$layout: int preference_information -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_CheckBox -com.google.android.material.R$attr: int placeholderText -androidx.drawerlayout.R$dimen: int compat_button_padding_horizontal_material -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeMinTextSize -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noCache() -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: MfWarningsResult$PhenomenonMaxColor() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias -androidx.viewpager2.R$id: int tag_accessibility_actions -androidx.fragment.R$id -com.turingtechnologies.materialscrollbar.R$attr: int windowNoTitle -android.didikee.donate.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -android.didikee.donate.R$styleable: int MenuItem_android_id -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -com.amap.api.fence.GeoFence: java.lang.String a -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.subjects.UnicastSubject window -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_showAsAction -okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallbackPossible -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabView -cyanogenmod.profiles.AirplaneModeSettings: boolean isDirty() -androidx.lifecycle.LiveData$ObserverWrapper: boolean mActive -com.google.android.material.R$styleable: int ActionBar_progressBarStyle -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String toValue(java.util.List) -wangdaye.com.geometricweather.R$id: int widget_clock_day_aqiHumidity -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer LEFT_CLOSE -com.google.android.material.bottomnavigation.BottomNavigationItemView: int getItemVisiblePosition() +wangdaye.com.geometricweather.R$id: int useLogo +androidx.appcompat.app.WindowDecorActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.swiperefreshlayout.R$id: int icon_group +okhttp3.internal.connection.RealConnection: void connectTls(okhttp3.internal.connection.ConnectionSpecSelector) +wangdaye.com.geometricweather.R$attr: int dialogTheme +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: ObservableTakeUntil$TakeUntilMainObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setScaleY(float) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer snowHazard3h +com.xw.repo.bubbleseekbar.R$attr: int indeterminateProgressStyle +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitleTextAppearance +androidx.constraintlayout.widget.R$styleable: int Layout_minWidth +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +androidx.appcompat.R$style: int Base_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierDirection +androidx.viewpager.R$drawable: int notification_bg_low +androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemBackground +com.google.android.material.R$string: int abc_activitychooserview_choose_application +androidx.constraintlayout.widget.R$id: int action_bar_root +wangdaye.com.geometricweather.R$id: int dialog_location_help_manageTitle +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_listLayout +okhttp3.Address: okhttp3.HttpUrl url() +androidx.appcompat.R$id: int tag_unhandled_key_event_manager +cyanogenmod.weather.WeatherLocation: android.os.Parcelable$Creator CREATOR retrofit2.Retrofit$1: java.lang.Object invoke(java.lang.Object,java.lang.reflect.Method,java.lang.Object[]) -okhttp3.internal.http2.Http2Stream$FramingSource -androidx.appcompat.R$layout: int abc_screen_simple_overlay_action_mode -com.google.android.material.chip.Chip: com.google.android.material.animation.MotionSpec getShowMotionSpec() -retrofit2.BuiltInConverters$UnitResponseBodyConverter -com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabText -androidx.constraintlayout.widget.R$attr: int overlapAnchor -com.google.android.material.R$attr: int titleMargins -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setSpeed(java.lang.String) -com.tencent.bugly.BuglyStrategy: boolean isBuglyLogUpload() -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_10 -androidx.constraintlayout.widget.R$id: int wrap -androidx.preference.R$attr: int updatesContinuously -androidx.core.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.common.basic.models.weather.Weather: void setYesterday(wangdaye.com.geometricweather.common.basic.models.weather.History) -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.SingleObserver downstream -com.tencent.bugly.crashreport.common.info.AppInfo: android.app.ActivityManager a -com.github.rahatarmanahmed.cpv.R$string -androidx.preference.R$style: int Preference_SeekBarPreference_Material -com.google.android.material.R$attr: int drawableLeftCompat -androidx.core.R$styleable: int FontFamilyFont_fontStyle -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -com.tencent.bugly.proguard.i: i(byte[]) -com.google.android.material.slider.Slider: android.content.res.ColorStateList getThumbTintList() -cyanogenmod.app.Profile$ExpandedDesktopMode: int DEFAULT -wangdaye.com.geometricweather.R$attr: int chipBackgroundColor -james.adaptiveicon.R$attr: int alertDialogTheme -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Error -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.app.IProfileManager: android.app.NotificationGroup[] getNotificationGroups() -wangdaye.com.geometricweather.R$id: int decor_content_parent -wangdaye.com.geometricweather.R$id: int mini -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingStart -com.google.android.material.R$attr: int chipSpacingVertical -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial() -okhttp3.internal.http2.Settings: int COUNT -com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_layout -james.adaptiveicon.R$dimen: int notification_content_margin_start -cyanogenmod.library.R$styleable -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -androidx.appcompat.R$styleable: int ActionBar_contentInsetLeft -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherComplete() -retrofit2.KotlinExtensions$suspendAndThrow$1: int label -androidx.lifecycle.Transformations: androidx.lifecycle.LiveData switchMap(androidx.lifecycle.LiveData,androidx.arch.core.util.Function) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean getVisibility() -com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyle -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$styleable: int Chip_chipMinTouchTargetSize -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyleSmall -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_icon_size -com.google.android.material.R$styleable: int MaterialButton_shapeAppearance -wangdaye.com.geometricweather.R$string: int v7_preference_off -okio.Okio: okio.Source source(java.nio.file.Path,java.nio.file.OpenOption[]) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathEnd() -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Spinner_Underlined -androidx.appcompat.widget.ActionBarContainer: android.view.View getTabContainer() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_16 -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String _ID -wangdaye.com.geometricweather.R$drawable: int abc_item_background_holo_light -okhttp3.internal.cache.DiskLruCache$Editor$1: DiskLruCache$Editor$1(okhttp3.internal.cache.DiskLruCache$Editor,okio.Sink) -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_48dp -com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType PNG_A -wangdaye.com.geometricweather.R$string: int key_language -com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.ValueAnimator startAngleRotate -cyanogenmod.platform.Manifest$permission: java.lang.String READ_WEATHER -androidx.preference.R$attr: int selectable -com.google.android.material.R$drawable: int design_ic_visibility_off -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_maxImageSize -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -com.jaredrummler.android.colorpicker.R$layout: int preference_widget_seekbar -androidx.preference.R$drawable: int abc_popup_background_mtrl_mult -androidx.recyclerview.R$id: R$id() -com.tencent.bugly.crashreport.CrashReport: void setIsAppForeground(android.content.Context,boolean) -retrofit2.BuiltInConverters$RequestBodyConverter: retrofit2.BuiltInConverters$RequestBodyConverter INSTANCE -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_pressed_z -com.google.android.material.R$id: int textinput_counter -com.google.android.material.chip.ChipGroup: void setDividerDrawableVertical(android.graphics.drawable.Drawable) -androidx.constraintlayout.widget.R$styleable: int View_paddingStart -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -okhttp3.internal.platform.Platform: boolean isCleartextTrafficPermitted(java.lang.String) -androidx.viewpager2.widget.ViewPager2: void setOffscreenPageLimit(int) -wangdaye.com.geometricweather.R$color: int notification_background_o -com.xw.repo.bubbleseekbar.R$attr: int panelBackground -wangdaye.com.geometricweather.R$attr: int perpendicularPath_percent -androidx.constraintlayout.widget.R$dimen: int notification_small_icon_size_as_large -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver) -james.adaptiveicon.R$style: int Widget_AppCompat_EditText -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_statusBarBackground -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_large_material -wangdaye.com.geometricweather.db.entities.AlertEntity: java.util.Date date -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowDy -cyanogenmod.power.IPerformanceManager$Stub$Proxy: boolean getProfileHasAppProfiles(int) -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -com.google.android.material.bottomappbar.BottomAppBar -androidx.fragment.R$styleable -androidx.hilt.R$dimen: int notification_main_column_padding_top -okhttp3.internal.cache.DiskLruCache: java.lang.String VERSION_1 -wangdaye.com.geometricweather.R$dimen: int design_tab_text_size -com.google.android.material.R$styleable: int ImageFilterView_overlay -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display4 -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer altitude -androidx.work.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.R$id: int material_clock_period_pm_button -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf -androidx.hilt.work.R$id: int tag_unhandled_key_event_manager -androidx.constraintlayout.widget.R$styleable: int MotionLayout_motionDebug -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_BYTES -wangdaye.com.geometricweather.R$attr: int subtitle -wangdaye.com.geometricweather.R$styleable: int[] ColorPickerView -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void dispose() -androidx.preference.R$interpolator -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.google.android.material.R$string: int mtrl_picker_text_input_date_range_start_hint -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: ExternalViewProviderService$Provider$ProviderImpl$6(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintDimensionRatio -com.google.android.material.R$attr: int textAppearanceSearchResultTitle -androidx.lifecycle.ComputableLiveData -androidx.appcompat.R$styleable: int StateListDrawableItem_android_drawable -com.google.android.material.R$attr: int barrierAllowsGoneWidgets -com.google.android.material.R$styleable: int FloatingActionButton_elevation -okhttp3.Dispatcher: void finished(okhttp3.RealCall$AsyncCall) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_progress -androidx.preference.R$id: int search_edit_frame -cyanogenmod.app.suggest.ApplicationSuggestion$1: cyanogenmod.app.suggest.ApplicationSuggestion createFromParcel(android.os.Parcel) -androidx.constraintlayout.widget.R$color: int abc_primary_text_disable_only_material_dark -cyanogenmod.os.Build: android.util.SparseArray sdkMap -com.amap.api.fence.GeoFence: GeoFence() -io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Void call() -com.tencent.bugly.proguard.v: java.lang.String n -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWeatherText() -retrofit2.Retrofit: retrofit2.CallAdapter nextCallAdapter(retrofit2.CallAdapter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[]) -wangdaye.com.geometricweather.R$mipmap: int ic_launcher_round -com.google.android.material.R$style: int Theme_AppCompat_Light_DialogWhenLarge -android.didikee.donate.R$styleable: int AppCompatTheme_tooltipForegroundColor -com.google.android.material.R$dimen: int tooltip_horizontal_padding -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object[] toArray(java.lang.Object[]) -com.google.android.material.R$dimen: int design_bottom_navigation_item_max_width -wangdaye.com.geometricweather.R$layout: int abc_search_view -com.bumptech.glide.load.engine.GlideException: void printStackTrace(java.io.PrintStream) -wangdaye.com.geometricweather.R$attr: int cpv_animSyncDuration -com.google.android.material.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -okio.Buffer: void close() -androidx.preference.R$attr: int ratingBarStyleSmall -wangdaye.com.geometricweather.R$styleable: int ChipGroup_singleLine -cyanogenmod.power.IPerformanceManager: int getPowerProfile() -com.google.android.material.R$styleable: int Constraint_layout_goneMarginRight -androidx.lifecycle.AbstractSavedStateViewModelFactory: void onRequery(androidx.lifecycle.ViewModel) -okhttp3.ResponseBody: java.lang.String string() -okhttp3.internal.cache.CacheInterceptor$1 -com.turingtechnologies.materialscrollbar.R$attr: int itemBackground -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setQueryParameter(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$drawable: int weather_thunder_1 +cyanogenmod.providers.ThemesContract +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: double Value +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitationProbability() +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void setResource(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintEnd_toEndOf +com.xw.repo.bubbleseekbar.R$attr: int checkboxStyle +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_growMode +androidx.appcompat.R$style: int Theme_AppCompat_Empty +com.amap.api.location.UmidtokenInfo: com.amap.api.location.AMapLocationClient d +androidx.preference.R$styleable: int AppCompatTheme_dropDownListViewStyle +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_ACTIVE +io.reactivex.internal.observers.LambdaObserver: LambdaObserver(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property CityId +wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +com.google.android.material.circularreveal.CircularRevealGridLayout: int getCircularRevealScrimColor() +androidx.activity.R$style: int Widget_Compat_NotificationActionText +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Inverse +com.turingtechnologies.materialscrollbar.R$color: int material_deep_teal_200 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_layout +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State[] values() +androidx.preference.R$color: int dim_foreground_disabled_material_light +okhttp3.CookieJar$1: void saveFromResponse(okhttp3.HttpUrl,java.util.List) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_Solid +wangdaye.com.geometricweather.common.basic.models.weather.Base: long updateTime +com.google.android.material.R$id: int TOP_END +androidx.constraintlayout.widget.R$attr: int flow_padding +com.google.android.material.R$id: int mtrl_picker_header_toggle +wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_EditTextPreference +wangdaye.com.geometricweather.R$styleable: int ActionBar_background +androidx.constraintlayout.widget.R$layout: int abc_tooltip +james.adaptiveicon.R$styleable: int Toolbar_collapseContentDescription +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getPm25Color(android.content.Context) +androidx.appcompat.R$attr: int navigationContentDescription +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +android.didikee.donate.R$style: int Animation_AppCompat_Dialog +androidx.appcompat.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +okhttp3.OkHttpClient: okhttp3.Call newCall(okhttp3.Request) +com.google.android.material.R$styleable: int FontFamilyFont_font +io.reactivex.Observable: io.reactivex.Observable onErrorResumeNext(io.reactivex.functions.Function) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_21 +com.xw.repo.bubbleseekbar.R$color: int primary_dark_material_dark +cyanogenmod.providers.WeatherContract$WeatherColumns +io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,int) +androidx.drawerlayout.widget.DrawerLayout$SavedState +wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_layout +com.xw.repo.bubbleseekbar.R$dimen: int abc_control_corner_material +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setContentDescription(int) +com.google.android.material.R$styleable: int RecycleListView_paddingBottomNoButtons +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLocationPurpose(com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose) +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onComplete() +androidx.preference.R$styleable: int MenuGroup_android_checkableBehavior +com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents +com.xw.repo.bubbleseekbar.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.R$drawable: int widget_card_light_80 +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTitle(java.lang.CharSequence) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator FORWARD_LOOKUP_PROVIDER_VALIDATOR +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_trackTintMode +androidx.viewpager.R$id: int chronometer +okio.HashingSource: HashingSource(okio.Source,java.lang.String) +wangdaye.com.geometricweather.R$drawable: int notif_temp_129 +com.google.android.material.R$attr: int buttonIconDimen +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar +com.google.gson.stream.JsonScope: int NONEMPTY_ARRAY +com.google.android.material.R$styleable: int MaterialTextAppearance_android_letterSpacing +wangdaye.com.geometricweather.R$id: int activity_alert_toolbar +com.google.android.material.R$style: int Widget_AppCompat_PopupMenu +androidx.fragment.R$id: int action_text +com.google.android.material.R$id: int action_image +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_title +android.didikee.donate.R$attr: int listChoiceBackgroundIndicator +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemTitle(java.lang.String) +com.google.android.gms.location.LocationSettingsRequest: android.os.Parcelable$Creator CREATOR +com.tencent.bugly.proguard.i: java.lang.String b +wangdaye.com.geometricweather.R$styleable: int Toolbar_navigationIcon +androidx.appcompat.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +io.reactivex.internal.disposables.DisposableHelper +com.turingtechnologies.materialscrollbar.R$id: int none +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String INSTALL_STATE +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_DialogWhenLarge +wangdaye.com.geometricweather.R$id: int parent +retrofit2.ParameterHandler$Headers: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.tencent.bugly.crashreport.crash.b: void d(java.util.List) +androidx.appcompat.widget.ActionMenuPresenter$OverflowPopup +com.amap.api.location.AMapLocation: java.lang.Object clone() +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit +com.xw.repo.bubbleseekbar.R$attr: int closeIcon +com.turingtechnologies.materialscrollbar.R$attr: int splitTrack +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_27 +com.amap.api.fence.GeoFence: int ERROR_CODE_INVALID_PARAMETER +wangdaye.com.geometricweather.R$styleable: int Transition_staggered +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(java.lang.Iterable,io.reactivex.functions.Function) +androidx.swiperefreshlayout.R$id: int tag_unhandled_key_listeners +androidx.preference.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder certificatePinner(okhttp3.CertificatePinner) +james.adaptiveicon.R$attr: int color +androidx.viewpager2.R$styleable: int FontFamily_fontProviderQuery +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String j +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent BOOT_ANIM +com.google.android.material.R$styleable: int Chip_chipIconSize +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_middle_mtrl_dark +wangdaye.com.geometricweather.R$drawable: int ic_forecast +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_61 +com.github.rahatarmanahmed.cpv.R$attr +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light +okio.HashingSink: javax.crypto.Mac mac +okhttp3.internal.tls.BasicCertificateChainCleaner: okhttp3.internal.tls.TrustRootIndex trustRootIndex +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: double Value +android.didikee.donate.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle +wangdaye.com.geometricweather.R$drawable: int weather_haze_2 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTint +androidx.appcompat.R$styleable: int AppCompatTheme_actionButtonStyle +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator TOUCHSCREEN_GESTURE_HAPTIC_FEEDBACK_VALIDATOR +okhttp3.internal.http2.Hpack$Writer: okhttp3.internal.http2.Header[] dynamicTable +okhttp3.Interceptor$Chain: int connectTimeoutMillis() +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type LEFT +com.amap.api.location.LocationManagerBase: void onDestroy() +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation TOP +com.turingtechnologies.materialscrollbar.R$id: int content +wangdaye.com.geometricweather.R$string: int common_google_play_services_enable_title +wangdaye.com.geometricweather.R$dimen: int design_title_text_size +com.google.android.material.R$style: int Widget_MaterialComponents_BottomSheet_Modal +android.didikee.donate.R$attr: int ratingBarStyleIndicator +wangdaye.com.geometricweather.R$styleable: int KeyPosition_pathMotionArc +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerComplete() +wangdaye.com.geometricweather.R$styleable: int SignInButton_buttonSize +androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_tintMode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setStatus(int) +wangdaye.com.geometricweather.R$style: int CardView_Dark +com.google.android.material.R$attr: int searchViewStyle +androidx.constraintlayout.utils.widget.ImageFilterView: float getSaturation() +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_percent +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: MfWarningsResult$WarningTimelaps$WarningTimelapsItem() +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_showAsAction +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType valueOf(java.lang.String) +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Time +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sunContainer +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WINDY +james.adaptiveicon.R$styleable: int Toolbar_logoDescription +androidx.appcompat.R$styleable: int StateListDrawable_android_visible +io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean tryCancel() +wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_backgroundTintMode +wangdaye.com.geometricweather.R$string: int content_des_swipe_right_to_delete +android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyle +wangdaye.com.geometricweather.R$id: int month_navigation_previous +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.db.entities.LocationEntity: void setCityId(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm25Desc +wangdaye.com.geometricweather.R$string: int ellipsis +okhttp3.internal.http.RealResponseBody: okio.BufferedSource source +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_translation_z_pressed +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingEnd +android.didikee.donate.R$layout: int abc_activity_chooser_view_list_item +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.util.Map groups +android.didikee.donate.R$color: int material_blue_grey_950 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.util.concurrent.atomic.AtomicLong requested +wangdaye.com.geometricweather.R$string: int content_des_sunrise +androidx.constraintlayout.widget.R$attr: int windowNoTitle +wangdaye.com.geometricweather.R$styleable: int[] KeyCycle +com.google.android.material.R$attr: int tabMinWidth +com.google.android.material.R$id: int standard +androidx.preference.R$dimen: int abc_action_bar_default_padding_end_material +androidx.constraintlayout.widget.R$dimen: int abc_text_size_large_material +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void fail(java.lang.Throwable,io.reactivex.Observer,io.reactivex.internal.queue.SpscLinkedArrayQueue) +okhttp3.internal.http2.Settings: int MAX_HEADER_LIST_SIZE +james.adaptiveicon.R$color: int abc_primary_text_material_light +com.google.android.material.R$style: int Platform_V21_AppCompat +cyanogenmod.hardware.ICMHardwareService: boolean isSunlightEnhancementSelfManaged() +com.xw.repo.bubbleseekbar.R$color: int accent_material_light +androidx.drawerlayout.R$drawable: int notification_bg_low_normal +com.turingtechnologies.materialscrollbar.R$attr: int chipCornerRadius +wangdaye.com.geometricweather.R$attr: int ensureMinTouchTargetSize +wangdaye.com.geometricweather.R$id: int submit_area +com.tencent.bugly.proguard.u: java.util.Map e +androidx.preference.R$id: int notification_main_column +com.google.android.material.R$styleable: int ActionBar_navigationMode +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: long serialVersionUID +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextColor(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderPackage +okhttp3.Cache: void remove(okhttp3.Request) +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String m +com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context,android.util.AttributeSet) +androidx.loader.content.Loader +com.turingtechnologies.materialscrollbar.R$id: int action_bar_title +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_ARRAY +com.tencent.bugly.proguard.ar: void a(java.lang.StringBuilder,int) +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State[] values() +androidx.appcompat.R$integer: int cancel_button_image_alpha +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int constraints +cyanogenmod.hardware.ICMHardwareService$Stub +okhttp3.internal.Util: boolean decodeIpv4Suffix(java.lang.String,int,int,byte[],int) +androidx.loader.R$styleable: int FontFamilyFont_fontVariationSettings +android.didikee.donate.R$drawable: int abc_list_longpressed_holo +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableItem_android_drawable +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animAutostart +wangdaye.com.geometricweather.R$layout: int preference_recyclerview +okhttp3.internal.http2.Http2Stream$FramingSource: long read(okio.Buffer,long) +wangdaye.com.geometricweather.R$attr: int bsb_hide_bubble +android.didikee.donate.R$style: int TextAppearance_AppCompat_Display4 +com.google.android.material.R$dimen: int abc_button_padding_vertical_material +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: ObservableCreate$CreateEmitter(io.reactivex.Observer) +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Connection connection +com.google.android.material.card.MaterialCardView: void setMaxCardElevation(float) +com.baidu.location.g.a: a() +cyanogenmod.weatherservice.ServiceRequest$Status +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.disposables.Disposable upstream +androidx.viewpager2.widget.ViewPager2: void setAdapter(androidx.recyclerview.widget.RecyclerView$Adapter) +com.google.android.material.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language FOLLOW_SYSTEM +com.tencent.bugly.proguard.y: java.lang.StringBuilder e() +okhttp3.internal.http2.Http2Codec: java.lang.String PROXY_CONNECTION +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_content +androidx.hilt.R$styleable: int GradientColorItem_android_color +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: long serialVersionUID +wangdaye.com.geometricweather.db.entities.HourlyEntity: boolean daylight +org.greenrobot.greendao.database.DatabaseOpenHelper: void onCreate(org.greenrobot.greendao.database.Database) +james.adaptiveicon.R$styleable: int Toolbar_navigationIcon +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pm25 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_79 +wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.DailyEntity) +cyanogenmod.app.Profile: Profile(android.os.Parcel,cyanogenmod.app.Profile$1) +cyanogenmod.themes.IThemeChangeListener: void onProgress(int) +androidx.appcompat.R$dimen: int disabled_alpha_material_light +androidx.viewpager.R$styleable: int FontFamily_fontProviderAuthority +androidx.dynamicanimation.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: int IconCode +wangdaye.com.geometricweather.R$attr: int chipIconTint +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree daytimeWindDegree +com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.c a() +wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_appStore +com.google.android.gms.common.internal.safeparcel.SafeParcelable +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalAlign +io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function,boolean,int) +com.bumptech.glide.Priority: com.bumptech.glide.Priority NORMAL +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onError(java.lang.Throwable) +com.google.android.material.slider.Slider: void setTickTintList(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_search_view_preferred_height +com.turingtechnologies.materialscrollbar.R$dimen: int cardview_default_radius +androidx.appcompat.R$styleable: int AppCompatTheme_switchStyle +com.google.android.material.R$color: int design_error +com.google.android.material.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.google.android.material.R$styleable: int[] KeyCycle +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_lineHeight +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +wangdaye.com.geometricweather.R$color: int switch_thumb_disabled_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: CaiYunMainlyResult$UrlBean() +com.tencent.bugly.crashreport.crash.anr.b: boolean a() +androidx.preference.R$attr: int textColorSearchUrl +androidx.recyclerview.R$layout: R$layout() +com.jaredrummler.android.colorpicker.R$attr: int theme +androidx.appcompat.R$style: int Widget_AppCompat_AutoCompleteTextView +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +androidx.lifecycle.FullLifecycleObserver: void onCreate(androidx.lifecycle.LifecycleOwner) +com.xw.repo.bubbleseekbar.R$layout: int abc_tooltip +wangdaye.com.geometricweather.R$styleable: int MotionScene_defaultDuration +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_searchIcon +androidx.appcompat.R$color: int notification_action_color_filter +androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.hilt.work.R$id: int accessibility_custom_action_29 +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_1 +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActivityChooserView +com.bumptech.glide.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$dimen: int cpv_color_preference_normal +androidx.preference.R$attr: int logo +com.amap.api.location.APSServiceBase: void onDestroy() +com.google.android.material.R$dimen: int design_navigation_icon_size +retrofit2.OkHttpCall: void enqueue(retrofit2.Callback) +com.tencent.bugly.proguard.i: java.util.Map a(java.util.Map,java.util.Map,int,boolean) +androidx.vectordrawable.R$id: int accessibility_custom_action_31 +androidx.constraintlayout.widget.R$attr: int actionBarItemBackground +cyanogenmod.app.Profile$ProfileTrigger$1: Profile$ProfileTrigger$1() +com.google.android.gms.base.R$drawable: int googleg_disabled_color_18 +okhttp3.internal.tls.OkHostnameVerifier: boolean verifyIpAddress(java.lang.String,java.security.cert.X509Certificate) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: io.reactivex.internal.fuseable.SimplePlainQueue queue +com.google.android.material.R$attr: int icon +wangdaye.com.geometricweather.R$attr: int textStartPadding +androidx.lifecycle.extensions.R$drawable: int notification_bg_low_normal +androidx.viewpager2.R$drawable: int notification_bg_low_normal +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_keylines +okhttp3.Route: okhttp3.Address address +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: MfWarningsResult$WarningComments$WarningTextBlocItem() +okio.BufferedSource: java.lang.String readString(java.nio.charset.Charset) +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_disableDependentsState +retrofit2.ParameterHandler$1: void apply(retrofit2.RequestBuilder,java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitationDuration() +wangdaye.com.geometricweather.R$attr: int actionProviderClass +androidx.lifecycle.FullLifecycleObserver: void onStart(androidx.lifecycle.LifecycleOwner) +androidx.core.content.FileProvider +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setRefreshing(boolean) +wangdaye.com.geometricweather.R$attr: int hintTextColor +wangdaye.com.geometricweather.R$id: int activity_alert_container +com.google.android.material.tabs.TabLayout: void setTabIndicatorFullWidth(boolean) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_max +com.google.android.material.R$dimen: int design_bottom_sheet_peek_height_min +com.tencent.bugly.proguard.ae: ae() +com.turingtechnologies.materialscrollbar.R$attr: int layout_anchor +okhttp3.EventListener: void connectFailed(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol,java.io.IOException) +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleTintMode +com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_offset +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: CaiYunMainlyResult$BrandInfoBeanXX() +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextTextAppearance +androidx.appcompat.R$dimen: int abc_text_size_display_2_material +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundDrawable(android.graphics.drawable.Drawable) +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_titleTextStyle +androidx.fragment.R$drawable: int notification_icon_background +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Headline +cyanogenmod.themes.IThemeService$Stub$Proxy: void removeUpdates(cyanogenmod.themes.IThemeChangeListener) +com.google.android.material.R$styleable: int TextInputLayout_counterMaxLength +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode BOUNDARY +okhttp3.internal.platform.AndroidPlatform: boolean isCleartextTrafficPermitted(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingRight +com.tencent.bugly.crashreport.common.info.a: int ag +wangdaye.com.geometricweather.R$styleable: int SwitchImageButton_drawable_res_on +androidx.constraintlayout.widget.R$drawable: int btn_radio_on_to_off_mtrl_animation +androidx.appcompat.R$anim: int abc_slide_in_top +androidx.recyclerview.R$style: R$style() +com.google.android.material.R$style: int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Caption +com.google.android.material.R$attr: int layout_constraintVertical_bias +android.didikee.donate.R$styleable: int MenuItem_iconTint +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +com.google.android.material.R$styleable: int[] ActivityChooserView +androidx.constraintlayout.widget.ConstraintHelper: int[] getReferencedIds() +android.didikee.donate.R$drawable: int abc_scrubber_primary_mtrl_alpha +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar +wangdaye.com.geometricweather.R$attr: int numericModifiers +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindLevel +androidx.appcompat.widget.AppCompatToggleButton +com.google.android.material.R$layout: int mtrl_alert_dialog_title +wangdaye.com.geometricweather.R$integer: int app_bar_elevation_anim_duration +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontWeight +androidx.recyclerview.R$id: int accessibility_custom_action_22 +com.google.android.material.R$styleable: int MaterialButton_android_insetBottom +androidx.appcompat.R$id: int italic +com.bumptech.glide.R$attr: int layout_insetEdge +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_RadioButton +cyanogenmod.weather.WeatherLocation: boolean equals(java.lang.Object) +androidx.coordinatorlayout.R$dimen: int compat_control_corner_material +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleEnabled(boolean) +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.StreamAllocation streamAllocation +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_default_mtrl_alpha +com.jaredrummler.android.colorpicker.R$id: int end +androidx.appcompat.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.R$dimen: int mtrl_card_corner_radius +androidx.appcompat.view.menu.ActionMenuItemView: void setExpandedFormat(boolean) +com.google.android.material.R$style: int Widget_MaterialComponents_BottomSheet +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextAppearanceInactive(int) +cyanogenmod.themes.ThemeManager$2$1: ThemeManager$2$1(cyanogenmod.themes.ThemeManager$2,java.lang.String) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitationProbability +com.jaredrummler.android.colorpicker.R$attr: int trackTint +retrofit2.adapter.rxjava2.Result: java.lang.Throwable error() +androidx.activity.R$styleable: int FontFamily_fontProviderFetchStrategy +cyanogenmod.weather.CMWeatherManager: java.util.Map mWeatherUpdateRequestListeners +androidx.constraintlayout.widget.R$color: int secondary_text_disabled_material_dark +com.google.android.material.circularreveal.cardview.CircularRevealCardView: CircularRevealCardView(android.content.Context) +wangdaye.com.geometricweather.R$id: int action_context_bar +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_129 +androidx.preference.R$styleable: int Toolbar_subtitleTextColor +com.turingtechnologies.materialscrollbar.R$layout: int notification_template_part_time +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ZEN_ALLOW_LIGHTS_VALIDATOR +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +okhttp3.internal.ws.RealWebSocket$1: okhttp3.internal.ws.RealWebSocket this$0 +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableTop +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_CHACHA20_POLY1305_SHA256 +com.google.android.material.R$id: int mtrl_picker_text_input_date +okhttp3.OkHttpClient: boolean followSslRedirects +wangdaye.com.geometricweather.R$drawable: int clock_dial_light +wangdaye.com.geometricweather.R$drawable: int ic_clock_black_24dp +wangdaye.com.geometricweather.R$id: int action_bar_title +io.reactivex.internal.queue.SpscArrayQueue: void clear() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +androidx.appcompat.R$layout: int abc_action_mode_bar +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitationProbability +com.google.android.gms.auth.api.signin.GoogleSignInOptions +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_holo_light +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status[] values() +com.google.android.material.R$attr: int materialCalendarHeaderCancelButton +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.DailyEntity) +james.adaptiveicon.R$styleable: int ViewBackgroundHelper_backgroundTintMode +androidx.activity.R$layout: int notification_template_part_time +androidx.constraintlayout.widget.R$attr: int layout_constraintDimensionRatio +retrofit2.http.PUT: java.lang.String value() +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: java.lang.Throwable error +androidx.lifecycle.LifecycleObserver +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void checkUploadRecordCrash() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_SearchView +io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.MaybeObserver) +james.adaptiveicon.R$drawable: int abc_ic_star_black_48dp +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: CircularProgressViewAdapter() +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setWifiActiveScan(boolean) +wangdaye.com.geometricweather.R$attr: int pivotAnchor +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_OFF_VALIDATOR +androidx.lifecycle.ViewModelStore: void put(java.lang.String,androidx.lifecycle.ViewModel) +wangdaye.com.geometricweather.background.service.TileService +androidx.preference.R$style: int Base_AlertDialog_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedWidthMinor +androidx.appcompat.R$styleable: int ActionBar_elevation +okhttp3.ConnectionPool: int maxIdleConnections +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: void setDirection(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +okio.GzipSource: void updateCrc(okio.Buffer,long,long) +androidx.preference.R$styleable: int MenuView_android_itemIconDisabledAlpha +wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Dialog +com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedHeightMinor +wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity: ClockDayVerticalWidgetConfigActivity() +androidx.coordinatorlayout.R$styleable: int[] GradientColor +com.google.android.material.R$color: int mtrl_calendar_selected_range +androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +androidx.coordinatorlayout.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean done +com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_chainStyle +androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_material +androidx.viewpager.R$id: int time +com.bumptech.glide.load.engine.GlideException: void setLoggingDetails(com.bumptech.glide.load.Key,com.bumptech.glide.load.DataSource,java.lang.Class) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button +androidx.appcompat.R$attr: int dividerPadding +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: long serialVersionUID +androidx.customview.R$string +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric Metric +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_selection_line_height +androidx.constraintlayout.widget.R$attr: int initialActivityCount +com.xw.repo.bubbleseekbar.R$attr: int actionProviderClass +androidx.appcompat.R$styleable: int ActionBar_navigationMode +okio.Timeout$1: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) +cyanogenmod.app.StatusBarPanelCustomTile: int uid +androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontStyle +androidx.vectordrawable.R$dimen: R$dimen() +androidx.drawerlayout.R$attr: int fontProviderQuery +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_searchIcon +com.google.android.material.R$dimen: int mtrl_calendar_content_padding +androidx.constraintlayout.widget.Barrier: void setAllowsGoneWidget(boolean) +android.didikee.donate.R$styleable: int Spinner_android_prompt +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric Metric +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf +androidx.fragment.app.FragmentContainerView +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: java.lang.String getNotificationTextColorName(android.content.Context) +com.google.android.material.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +wangdaye.com.geometricweather.R$styleable: int[] MaterialShape +wangdaye.com.geometricweather.R$array: int speed_units +james.adaptiveicon.R$style: int Base_Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moon_icon +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int CANCELLED +androidx.constraintlayout.widget.R$string: int abc_prepend_shortcut_label +androidx.recyclerview.R$string: R$string() +androidx.appcompat.widget.AppCompatCheckBox: void setBackgroundDrawable(android.graphics.drawable.Drawable) +cyanogenmod.app.Profile: cyanogenmod.profiles.AirplaneModeSettings mAirplaneMode +okhttp3.OkHttpClient$Builder: void setInternalCache(okhttp3.internal.cache.InternalCache) +androidx.preference.R$style: int TextAppearance_AppCompat_Button +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlHighlight +com.turingtechnologies.materialscrollbar.R$attr: int iconStartPadding +androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPlaceholderText() +james.adaptiveicon.R$drawable: int abc_text_select_handle_right_mtrl_light +cyanogenmod.profiles.RingModeSettings: RingModeSettings(java.lang.String,boolean) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Button +com.google.gson.stream.JsonReader: int PEEKED_END_OBJECT +james.adaptiveicon.R$id: int action_bar_container +androidx.lifecycle.extensions.R$styleable: int GradientColorItem_android_offset +com.tencent.bugly.proguard.an +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial +com.jaredrummler.android.colorpicker.R$attr: int alertDialogButtonGroupStyle +cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(cyanogenmod.app.CustomTile$1) cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(android.os.Parcel) -wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity -android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar_Small -james.adaptiveicon.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_RC4_128_SHA -io.reactivex.Observable: io.reactivex.Observable concatMapEager(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$styleable: int Chip_shapeAppearance -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplaceInTxIterable +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.Window mWindow +android.didikee.donate.R$color: int highlighted_text_material_dark +androidx.preference.R$styleable: int LinearLayoutCompat_android_gravity +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCopyDrawable +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +com.jaredrummler.android.colorpicker.R$id: int gridView +com.xw.repo.bubbleseekbar.R$drawable: int abc_tab_indicator_mtrl_alpha +androidx.constraintlayout.widget.R$dimen: int disabled_alpha_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_constantSize +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderQuery +androidx.recyclerview.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$string: int key_item_animation_switch +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_maxWidth +james.adaptiveicon.R$styleable: int SearchView_searchHintIcon +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.R$string: int greenDAO +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar +androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context,android.util.AttributeSet) +cyanogenmod.themes.IThemeChangeListener$Stub: int TRANSACTION_onFinish_1 +com.google.android.material.R$layout: int mtrl_picker_header_fullscreen +com.google.android.material.R$attr: int layout_anchorGravity +androidx.appcompat.resources.R$styleable: int GradientColor_android_startY +androidx.constraintlayout.widget.R$attr: int flow_firstHorizontalBias +wangdaye.com.geometricweather.R$attr: int backgroundOverlayColorAlpha +james.adaptiveicon.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$id: int groups +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onSubscribe(org.reactivestreams.Subscription) +com.jaredrummler.android.colorpicker.R$string: int cpv_presets +androidx.drawerlayout.R$attr +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation +com.bumptech.glide.R$dimen: int notification_small_icon_size_as_large +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color +androidx.constraintlayout.widget.R$id: int chain +retrofit2.adapter.rxjava2.Result: retrofit2.adapter.rxjava2.Result response(retrofit2.Response) +com.tencent.bugly.proguard.ag: void a(java.lang.String) +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String DESKCLOCK_PACKAGE +com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_base +wangdaye.com.geometricweather.R$styleable: int[] MaterialCardView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: double Value +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.lifecycle.extensions.R$anim: int fragment_open_exit +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfIce +com.google.android.material.R$layout: int text_view_without_line_height +androidx.viewpager2.widget.ViewPager2: int getItemDecorationCount() +androidx.preference.R$styleable: int AppCompatTheme_colorError +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_stacked_tab_max_width +cyanogenmod.weatherservice.IWeatherProviderService: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) +com.google.android.material.R$attr: int divider +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityCreated(android.app.Activity,android.os.Bundle) +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void dispose() +wangdaye.com.geometricweather.R$id: int widget_remote_progress +retrofit2.RequestFactory: boolean isKotlinSuspendFunction +wangdaye.com.geometricweather.R$animator: int mtrl_card_state_list_anim +okio.GzipSink: void writeHeader() +androidx.preference.R$style: int Base_Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.R$string: int sp_widget_text_setting +wangdaye.com.geometricweather.R$attr: int titleMargins +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +android.didikee.donate.R$id: int info +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: AccuCurrentResult$RealFeelTemperatureShade$Imperial() +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_y_offset_non_touch +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: boolean isDisposed() +androidx.preference.R$attr: int preferenceInformationStyle +okhttp3.MultipartBody: java.util.List parts() +androidx.drawerlayout.R$styleable: int ColorStateListItem_alpha +com.xw.repo.bubbleseekbar.R$id: int action_divider +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String description +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: LiveDataReactiveStreams$LiveDataPublisher(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) +androidx.appcompat.R$attr: int radioButtonStyle +cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile[] getProfiles() +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_progress +androidx.preference.MultiSelectListPreferenceDialogFragmentCompat +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: java.util.List getBrands() +wangdaye.com.geometricweather.R$styleable: int Slider_thumbStrokeColor +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_motionStagger +com.google.android.material.button.MaterialButtonToggleGroup: void setCheckedId(int) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton +com.tencent.bugly.proguard.a: byte[] a(com.tencent.bugly.proguard.k) +wangdaye.com.geometricweather.db.entities.AlertEntityDao: org.greenrobot.greendao.query.Query weatherEntity_AlertEntityListQuery +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark_normal +com.google.android.material.R$styleable: int BottomAppBar_fabAlignmentMode +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_Main +cyanogenmod.weather.IRequestInfoListener: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification +androidx.preference.R$attr: int autoSizeStepGranularity +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerClose(boolean,io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver) +androidx.appcompat.R$attr: int actionModeCopyDrawable +okhttp3.Cache$CacheRequestImpl$1: Cache$CacheRequestImpl$1(okhttp3.Cache$CacheRequestImpl,okio.Sink,okhttp3.Cache,okhttp3.internal.cache.DiskLruCache$Editor) +com.google.gson.FieldNamingPolicy: java.lang.String upperCaseFirstLetter(java.lang.String) +androidx.constraintlayout.helper.widget.Layer: void setVisibility(int) +androidx.lifecycle.ClassesInfoCache$CallbackInfo: void invokeCallbacks(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) +com.google.android.material.R$attr: int cardMaxElevation +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_tintMode +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_isDataConnectionSelectedOnSub +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActivityChooserView +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Body1 io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onSubscribe(org.reactivestreams.Subscription) -retrofit2.OkHttpCall$1: void onFailure(okhttp3.Call,java.io.IOException) -retrofit2.ParameterHandler$FieldMap: boolean encoded -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer RIGHT_CLOSE -com.google.android.material.R$layout: int abc_activity_chooser_view_list_item -androidx.loader.R$dimen: int compat_notification_large_icon_max_height -james.adaptiveicon.R$drawable: int notification_bg_low -androidx.preference.R$styleable: int[] StateListDrawable -com.google.android.gms.common.api.Status -androidx.lifecycle.SavedStateHandleController: java.lang.String mKey +androidx.appcompat.widget.AppCompatEditText: android.text.Editable getText() +com.jaredrummler.android.colorpicker.R$layout: int expand_button +androidx.appcompat.widget.AppCompatEditText: java.lang.CharSequence getText() +com.jaredrummler.android.colorpicker.R$attr: int itemPadding +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WEATHER_CODE_MIN +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: java.lang.String desc +androidx.preference.R$dimen: int abc_dialog_fixed_width_major +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endY +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder listener(okhttp3.internal.http2.Http2Connection$Listener) +wangdaye.com.geometricweather.R$drawable: int shortcuts_hail +com.google.android.material.R$styleable: int AlertDialog_android_layout +wangdaye.com.geometricweather.R$style: int Widget_Design_TextInputEditText +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dividerVertical +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontStyle +okhttp3.internal.http2.Header: java.lang.String RESPONSE_STATUS_UTF8 +com.google.android.material.bottomnavigation.BottomNavigationView: int getItemTextAppearanceInactive() +com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_android_button +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_divider_mtrl_alpha +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_BLUE_INDEX +wangdaye.com.geometricweather.R$drawable: int ic_tag_off +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String country +wangdaye.com.geometricweather.R$styleable: int KeyCycle_curveFit +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_title +androidx.constraintlayout.widget.R$styleable: int Transition_layoutDuringTransition +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast +androidx.cardview.R$color: int cardview_shadow_start_color +androidx.constraintlayout.widget.R$attr: int colorControlHighlight +androidx.appcompat.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +wangdaye.com.geometricweather.R$array: int speed_unit_values +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleTitle +org.greenrobot.greendao.AbstractDaoMaster: java.util.Map daoConfigMap +com.google.android.material.R$styleable: int[] Chip +androidx.constraintlayout.widget.R$drawable: int abc_list_divider_mtrl_alpha +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_24 +com.bumptech.glide.load.HttpException: HttpException(java.lang.String,int,java.lang.Throwable) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +androidx.hilt.work.R$id: int async +okhttp3.HttpUrl$Builder: java.lang.String canonicalizeHost(java.lang.String,int,int) +androidx.constraintlayout.widget.ConstraintLayout: void setMinWidth(int) +androidx.activity.R$dimen: int notification_content_margin_start +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.google.android.material.R$dimen: int notification_big_circle_margin +com.turingtechnologies.materialscrollbar.R$color: int material_grey_300 +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_NOENOUGHSATELLITES +android.didikee.donate.R$dimen: int notification_big_circle_margin +androidx.appcompat.R$integer: R$integer() +cyanogenmod.app.IPartnerInterface: void shutdown() +wangdaye.com.geometricweather.R$styleable: int Chip_chipStrokeWidth +androidx.appcompat.widget.ViewStubCompat: void setVisibility(int) +wangdaye.com.geometricweather.R$attr: int itemShapeInsetTop +com.tencent.bugly.a: java.lang.String moduleName +okhttp3.internal.platform.Platform: java.lang.Object getStackTraceForCloseable(java.lang.String) +android.didikee.donate.R$layout: int support_simple_spinner_dropdown_item +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_width +wangdaye.com.geometricweather.R$attr: int collapsingToolbarLayoutStyle +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.Observer downstream +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: android.os.IBinder asBinder() +com.jaredrummler.android.colorpicker.R$attr: int paddingStart +com.google.android.material.R$id: int mtrl_picker_header_selection_text +com.google.android.material.R$layout: int mtrl_calendar_horizontal +wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity: HourlyTrendWidgetConfigActivity() +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setMax(float) +androidx.appcompat.R$id: int action_menu_presenter +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTINUATION +androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_text_padding_right +wangdaye.com.geometricweather.R$xml: int icon_provider_config +wangdaye.com.geometricweather.R$color: int mtrl_textinput_hovered_box_stroke_color +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float NitrogenDioxide +okhttp3.internal.cache.DiskLruCache: void setMaxSize(long) +androidx.preference.R$attr: int statusBarBackground +android.didikee.donate.R$styleable: int MenuItem_actionLayout +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver +cyanogenmod.providers.CMSettings$Secure: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) +androidx.hilt.work.R$styleable: int[] GradientColorItem +androidx.work.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$string: int settings_summary_unit +wangdaye.com.geometricweather.R$attr: int drawableSize +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Action +androidx.recyclerview.R$id: int accessibility_custom_action_4 +io.reactivex.Observable: io.reactivex.Observable timer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.viewpager2.R$id: int accessibility_custom_action_9 +androidx.swiperefreshlayout.R$style +wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_EditTextPreference_Material +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean registerThermalListener(cyanogenmod.hardware.IThermalListenerCallback) +wangdaye.com.geometricweather.R$id: int container_main_pollen_pager +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber,java.util.concurrent.atomic.AtomicReference) +cyanogenmod.app.Profile$TriggerState: int ON_CONNECT +androidx.customview.R$drawable: int notification_bg_low +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String b() +androidx.drawerlayout.R$dimen: int notification_action_icon_size +com.jaredrummler.android.colorpicker.R$attr: int alertDialogStyle +androidx.vectordrawable.animated.R$dimen: int notification_small_icon_background_padding +androidx.appcompat.widget.SwitchCompat: void setTextOn(java.lang.CharSequence) +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +wangdaye.com.geometricweather.R$styleable: int[] Toolbar +james.adaptiveicon.R$styleable: int SwitchCompat_switchTextAppearance +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +androidx.viewpager.R$id: int forever +retrofit2.BuiltInConverters$RequestBodyConverter: okhttp3.RequestBody convert(okhttp3.RequestBody) +com.google.android.material.R$style: int TextAppearance_AppCompat_Body2 +com.google.gson.stream.JsonWriter: java.lang.String[] HTML_SAFE_REPLACEMENT_CHARS +androidx.viewpager.R$dimen: int compat_button_inset_horizontal_material +okhttp3.ConnectionSpec$Builder: boolean supportsTlsExtensions +androidx.work.R$styleable: int FontFamilyFont_android_font +android.didikee.donate.R$bool: R$bool() +androidx.constraintlayout.widget.R$attr: int progressBarPadding +androidx.hilt.work.R$id: int action_divider +okio.AsyncTimeout: boolean inQueue +androidx.recyclerview.R$attr: int fastScrollVerticalTrackDrawable +com.jaredrummler.android.colorpicker.R$style: int Platform_V25_AppCompat +androidx.preference.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +cyanogenmod.app.BaseLiveLockManagerService +androidx.constraintlayout.widget.R$attr: int actionModeWebSearchDrawable +androidx.vectordrawable.R$drawable: int notification_bg_low_normal +com.google.android.material.R$attr: int boxStrokeWidthFocused +com.xw.repo.bubbleseekbar.R$id: int left +androidx.preference.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onNegativeCross +com.google.android.material.R$bool: R$bool() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display3 +james.adaptiveicon.R$dimen: int abc_action_bar_content_inset_material +com.google.android.material.card.MaterialCardView: void setCheckedIconTint(android.content.res.ColorStateList) +io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,io.reactivex.Scheduler) +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setDayIndicatorRotation(float) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Temperature +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Long id +okio.Options: okio.Options of(okio.ByteString[]) +com.tencent.bugly.proguard.af: af() +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean active +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: boolean mCanceled +okhttp3.internal.Internal: boolean equalsNonHost(okhttp3.Address,okhttp3.Address) +com.bumptech.glide.R$id: int tag_unhandled_key_listeners +cyanogenmod.app.CustomTile: java.lang.Object clone() +com.google.android.material.appbar.AppBarLayout: int getDownNestedPreScrollRange() +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarPopupTheme +com.jaredrummler.android.colorpicker.R$layout: int abc_dialog_title_material +com.jaredrummler.android.colorpicker.R$attr: int actionModeShareDrawable +com.turingtechnologies.materialscrollbar.R$attr: int lineHeight +androidx.vectordrawable.R$id: int async +androidx.appcompat.R$styleable: int PopupWindow_android_popupBackground +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldDescription +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature +com.tencent.bugly.proguard.al: void a(com.tencent.bugly.proguard.j) +com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Entry +com.google.android.material.chip.Chip: void setElevation(float) +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +okio.RealBufferedSink$1: java.lang.String toString() +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_menuCategory +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: java.lang.Long set +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_5 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorPrimary +com.bumptech.glide.integration.okhttp.R$id: int notification_main_column +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setIconResEnd(int) +androidx.preference.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_136 +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindChillTemperature +io.reactivex.Observable: io.reactivex.Single toSortedList() +com.google.android.gms.base.R$id: int none +androidx.transition.R$id: int right_icon +com.bumptech.glide.integration.okhttp.R$id: int line3 +retrofit2.DefaultCallAdapterFactory$1: java.lang.reflect.Type val$responseType +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_precise_anchor_threshold +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_46 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_tint +cyanogenmod.weather.RequestInfo: int getRequestType() +okhttp3.internal.http2.Hpack: okhttp3.internal.http2.Header[] STATIC_HEADER_TABLE +androidx.constraintlayout.widget.R$drawable: int abc_edit_text_material +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_SearchResult_Title +com.google.android.material.R$id: int radio +androidx.preference.R$styleable: int[] AppCompatTextHelper +androidx.appcompat.R$styleable: int TextAppearance_android_textColorHint +com.turingtechnologies.materialscrollbar.R$attr: int chipSpacingHorizontal +com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$attr: int startIconCheckable +wangdaye.com.geometricweather.R$id: int notification_main_column +cyanogenmod.providers.CMSettings$System: boolean isLegacySetting(java.lang.String) +androidx.recyclerview.R$id: int accessibility_custom_action_24 +com.google.android.material.R$styleable: int ImageFilterView_overlay +okhttp3.internal.http.RetryAndFollowUpInterceptor: void setCallStackTrace(java.lang.Object) +androidx.core.widget.NestedScrollView: float getVerticalScrollFactorCompat() +cyanogenmod.externalviews.ExternalView$2: boolean val$visible +wangdaye.com.geometricweather.db.entities.DailyEntity: void setSunSetDate(java.util.Date) +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean active +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SeekBar +com.google.android.material.R$dimen: int design_bottom_navigation_active_text_size +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog +androidx.appcompat.R$style: int Theme_AppCompat_DialogWhenLarge +okhttp3.internal.ws.RealWebSocket: void onReadMessage(java.lang.String) +okhttp3.internal.http1.Http1Codec$FixedLengthSink: okhttp3.internal.http1.Http1Codec this$0 +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_COOL +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_AM_PM +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getAbbreviation(android.content.Context) +androidx.viewpager2.R$dimen +okhttp3.OkHttpClient$Builder: java.util.List protocols +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.view.WindowManager mWindowManager +android.didikee.donate.R$attr: int textAllCaps +wangdaye.com.geometricweather.R$array: int week_icon_mode_values +wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingStart +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_radius +androidx.preference.R$id: int contentPanel +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_min_height +james.adaptiveicon.R$styleable: int ActionBar_backgroundStacked +okhttp3.internal.ws.RealWebSocket$PingRunnable +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner +com.google.android.material.card.MaterialCardView: int getContentPaddingLeft() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +androidx.appcompat.R$attr: int titleMarginStart +androidx.lifecycle.ReportFragment: void onResume() +com.google.android.material.R$color: int design_default_color_background +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginBottom +wangdaye.com.geometricweather.db.entities.LocationEntity: java.util.TimeZone timeZone +okhttp3.internal.connection.RealConnection: int allocationLimit +com.github.rahatarmanahmed.cpv.CircularProgressView: int animDuration +com.tencent.bugly.BuglyStrategy: java.lang.String getLibBuglySOFilePath() +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: int UnitType +wangdaye.com.geometricweather.R$id: int navigation_header_container +androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context) +androidx.appcompat.widget.AppCompatImageButton: void setImageBitmap(android.graphics.Bitmap) +okhttp3.HttpUrl$Builder: java.lang.String host +androidx.coordinatorlayout.R$drawable: int notification_tile_bg +com.google.android.material.R$drawable: int btn_radio_off_mtrl +com.tencent.bugly.BuglyStrategy: java.lang.String a +androidx.viewpager.R$styleable: int GradientColor_android_tileMode +com.xw.repo.BubbleSeekBar +james.adaptiveicon.R$attr: int alertDialogStyle +wangdaye.com.geometricweather.R$drawable: int abc_list_pressed_holo_light +com.google.android.material.R$style: int CardView_Light +okhttp3.Headers$Builder: java.util.List namesAndValues +com.google.android.material.R$attr: int chipStyle +io.reactivex.internal.subscribers.StrictSubscriber: io.reactivex.internal.util.AtomicThrowable error +com.google.android.material.R$attr: int listItemLayout +androidx.constraintlayout.widget.R$id: int line3 +com.xw.repo.bubbleseekbar.R$id: int bottom_sides +androidx.preference.R$dimen: int abc_text_size_caption_material +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_2 +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_middle_mtrl_light androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_min -com.tencent.bugly.crashreport.CrashReport$CrashHandleCallback: CrashReport$CrashHandleCallback() -com.google.android.material.R$styleable: int CollapsingToolbarLayout_contentScrim -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -okhttp3.Request$Builder: okhttp3.Request$Builder get() -androidx.dynamicanimation.R$styleable: int ColorStateListItem_android_color -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean done -wangdaye.com.geometricweather.R$attr: int haloRadius -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver(io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver) -wangdaye.com.geometricweather.R$string: int publish_at -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemBitmap(android.graphics.Bitmap) -android.didikee.donate.R$attr: int actionBarSize -wangdaye.com.geometricweather.R$dimen: int cpv_color_preference_normal -retrofit2.ParameterHandler$Header: retrofit2.Converter valueConverter -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Subtitle1 -androidx.viewpager.R$dimen: int notification_action_text_size -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CheckedTextView -okhttp3.internal.Util: void closeQuietly(java.net.Socket) -wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitlePanelStyle -androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_percent -com.google.android.material.R$styleable: int[] SearchView -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_RC4_40_SHA -androidx.preference.R$styleable: int Preference_android_summary -com.tencent.bugly.proguard.ar: ar() -com.jaredrummler.android.colorpicker.R$id: int action_bar_spinner -androidx.preference.R$color: int secondary_text_default_material_dark -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String grassDescription -androidx.preference.R$color: int secondary_text_disabled_material_dark -com.google.android.material.circularreveal.CircularRevealFrameLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -okhttp3.internal.http2.Http2Connection$1: void execute() -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date modificationDate -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getDailyForecast() -wangdaye.com.geometricweather.R$drawable: int notif_temp_9 -io.reactivex.Observable: io.reactivex.Completable switchMapCompletableDelayError(io.reactivex.functions.Function) -com.google.android.material.R$styleable: int PopupWindow_android_popupAnimationStyle -com.google.android.material.R$id: int buttonPanel -wangdaye.com.geometricweather.R$string: int feedback_today_precipitation_alert -androidx.appcompat.widget.SearchView: int getMaxWidth() -okio.BufferedSource: java.io.InputStream inputStream() -wangdaye.com.geometricweather.R$attr: int listPopupWindowStyle -androidx.constraintlayout.widget.R$attr: int titleMarginStart -android.support.v4.app.INotificationSideChannel$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$attr: int boxCollapsedPaddingTop -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: long serialVersionUID -androidx.appcompat.resources.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_auto_adjust_section_mark -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onError(java.lang.Throwable) -com.tencent.bugly.proguard.al: void a(java.lang.StringBuilder,int) -androidx.lifecycle.LiveData: int mVersion -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_divider -androidx.coordinatorlayout.R$id: int accessibility_custom_action_22 -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_enterFadeDuration -androidx.vectordrawable.animated.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$id: int activity_settings_toolbar -com.jaredrummler.android.colorpicker.R$style: int Preference_CheckBoxPreference_Material -androidx.preference.R$style: int Base_Widget_AppCompat_ListPopupWindow -okhttp3.MediaType: java.lang.String type -okhttp3.CacheControl$Builder: int maxAgeSeconds -androidx.constraintlayout.widget.R$styleable: int Constraint_motionStagger -com.turingtechnologies.materialscrollbar.R$layout: int abc_tooltip -james.adaptiveicon.R$id: int search_go_btn -androidx.preference.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean isDisposed() -androidx.coordinatorlayout.R$attr: int layout_insetEdge -com.tencent.bugly.proguard.u: long m -com.tencent.bugly.crashreport.common.info.a: java.util.Map B() -android.didikee.donate.R$attr: int background -com.turingtechnologies.materialscrollbar.R$attr: int buttonBarNegativeButtonStyle -cyanogenmod.externalviews.IExternalViewProvider: void onStop() -com.jaredrummler.android.colorpicker.R$id: int time -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircleAngle -wangdaye.com.geometricweather.R$style: int PreferenceFragment -com.tencent.bugly.crashreport.crash.anr.b: void c() -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onComplete() -com.bumptech.glide.load.resource.gif.GifFrameLoader -androidx.transition.R$dimen: int notification_large_icon_height -androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_36dp -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -com.google.android.material.circularreveal.CircularRevealFrameLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String u -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfSnow -androidx.preference.R$dimen: int abc_text_size_subhead_material -wangdaye.com.geometricweather.R$drawable: int abc_btn_check_to_on_mtrl_015 -wangdaye.com.geometricweather.R$styleable: int Preference_android_selectable -androidx.dynamicanimation.R$styleable: int[] ColorStateListItem -androidx.constraintlayout.widget.R$id: int autoComplete -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: void setDrawable(boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: double Value -wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeSeekBar -com.google.gson.stream.JsonReader: void skipQuotedValue(char) -com.google.android.material.R$attr: int constraints -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: long serialVersionUID -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator -okhttp3.internal.platform.AndroidPlatform: java.lang.Object getStackTraceForCloseable(java.lang.String) -com.google.android.material.R$attr: int hintTextAppearance -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void clear() -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_spinBars -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontWeight -androidx.hilt.R$styleable: int[] Fragment -androidx.coordinatorlayout.R$id: int actions -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void accept(java.lang.Object) -androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_DropDownUp -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String hour -wangdaye.com.geometricweather.db.entities.AlertEntity: java.util.Date getDate() -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -retrofit2.HttpServiceMethod$SuspendForResponse -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow -io.reactivex.Observable: io.reactivex.Observable generate(io.reactivex.functions.Consumer) -retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type[] getLowerBounds() -androidx.drawerlayout.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$dimen: int design_navigation_item_icon_padding -com.google.android.material.R$id: int startHorizontal -okio.Timeout: long timeoutNanos -com.amap.api.location.AMapLocationClientOption: int describeContents() -io.reactivex.Observable: io.reactivex.Observable fromPublisher(org.reactivestreams.Publisher) -okhttp3.internal.connection.RouteSelector: boolean hasNextProxy() -com.google.android.material.R$dimen: int mtrl_exposed_dropdown_menu_popup_elevation -androidx.preference.R$id: int accessibility_custom_action_4 -com.tencent.bugly.crashreport.crash.jni.b: java.lang.String b(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Toolbar_navigationIcon -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_arrowShaftLength -cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemOnClickIntent(android.app.PendingIntent) -wangdaye.com.geometricweather.R$color: int mtrl_chip_surface_color -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Dialog -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_TITLE -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String country -com.google.android.material.R$drawable: int material_ic_calendar_black_24dp -androidx.preference.R$attr: int queryHint -androidx.preference.R$attr: int switchPadding -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupMenu_Overflow -androidx.constraintlayout.widget.R$attr: int ttcIndex -wangdaye.com.geometricweather.R$attr: int checkedChip -james.adaptiveicon.R$attr: int borderlessButtonStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: float unitFactor -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorColors -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderCerts -androidx.preference.R$styleable: int Toolbar_subtitle -com.turingtechnologies.materialscrollbar.R$color: int error_color_material_light -okhttp3.internal.Util: void closeQuietly(java.net.ServerSocket) -com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit[] values() -com.jaredrummler.android.colorpicker.R$styleable: int[] FontFamilyFont -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textColorSearchUrl -com.google.android.material.R$styleable: int SnackbarLayout_maxActionInlineWidth -wangdaye.com.geometricweather.R$drawable: int notif_temp_138 +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context,android.util.AttributeSet,int) +okhttp3.internal.connection.RealConnection: okhttp3.Route route() +okio.BufferedSink: okio.BufferedSink emit() +androidx.constraintlayout.widget.R$attr: int motionProgress +androidx.recyclerview.R$styleable: int[] GradientColor +james.adaptiveicon.R$id: int search_close_btn +io.reactivex.internal.util.VolatileSizeArrayList: int size() +android.didikee.donate.R$attr: int track +androidx.recyclerview.R$dimen: int notification_action_text_size +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String temperature +com.tencent.bugly.proguard.ai: java.util.ArrayList b +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Title +androidx.coordinatorlayout.R$styleable: R$styleable() +com.baidu.location.e.h$c: com.baidu.location.e.h$c[] values() +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider AMAP +com.google.android.material.R$styleable: int MotionHelper_onHide +cyanogenmod.externalviews.ExternalView: java.util.LinkedList mQueue +retrofit2.Platform: retrofit2.Platform PLATFORM +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List yundong +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: AccuCurrentResult$Precip1hr$Imperial() +cyanogenmod.externalviews.KeyguardExternalView: void onScreenTurnedOff() +com.tencent.bugly.proguard.u: com.tencent.bugly.proguard.p c +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String getFrom() +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setNeedAddress(boolean) +com.baidu.location.e.h$c: com.baidu.location.e.h$c valueOf(java.lang.String) +android.didikee.donate.R$layout: int abc_expanded_menu_layout +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayVerticalWidgetConfigActivity: Hilt_ClockDayVerticalWidgetConfigActivity() +com.turingtechnologies.materialscrollbar.R$attr: int trackTint +cyanogenmod.weather.WeatherInfo$DayForecast$1: cyanogenmod.weather.WeatherInfo$DayForecast createFromParcel(android.os.Parcel) +com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: java.lang.Thread c +androidx.swiperefreshlayout.R$id: int italic +com.google.android.gms.common.images.WebImage: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerY +com.tencent.bugly.crashreport.crash.d: void a(java.lang.Thread,int,java.lang.String,java.lang.String,java.lang.String,java.util.Map) +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +com.xw.repo.bubbleseekbar.R$attr: int selectableItemBackgroundBorderless +com.google.android.material.appbar.MaterialToolbar +com.google.android.material.R$styleable: int ConstraintSet_android_layout_height +androidx.core.R$id: int accessibility_custom_action_4 +android.didikee.donate.R$styleable: int SearchView_layout +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_SNOW +androidx.preference.R$styleable: int AppCompatTheme_actionModeSplitBackground +wangdaye.com.geometricweather.R$dimen: int design_tab_scrollable_min_width +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: int Id +android.didikee.donate.R$attr: int actionBarItemBackground +androidx.work.R$styleable: int FontFamilyFont_android_fontVariationSettings +cyanogenmod.weather.CMWeatherManager$RequestStatus: int ALREADY_IN_PROGRESS +com.google.android.material.R$id: int spacer +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone TimeZone +androidx.constraintlayout.widget.R$attr: int spinnerStyle +okio.RealBufferedSource$1: int read(byte[],int,int) +com.amap.api.fence.GeoFence: void setMinDis2Center(float) +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatSeekBar +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_maxImageSize +wangdaye.com.geometricweather.R$style: int Widget_Design_BottomSheet_Modal +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat +cyanogenmod.weather.RequestInfo +cyanogenmod.themes.ThemeManager: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) +cyanogenmod.weatherservice.ServiceRequest$Status: ServiceRequest$Status(java.lang.String,int) +androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_layout com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Menu -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_top -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onNext(java.lang.Object) -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Borderless -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_subtitle -androidx.preference.R$styleable: int[] PreferenceTheme -androidx.work.R$bool: int enable_system_alarm_service_default -com.turingtechnologies.materialscrollbar.R$styleable: int[] CollapsingToolbarLayout -okhttp3.internal.http1.Http1Codec$FixedLengthSink -wangdaye.com.geometricweather.R$styleable: int[] ViewPager2 -wangdaye.com.geometricweather.R$array: int automatic_refresh_rate_values -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.R$layout: int abc_activity_chooser_view -com.google.android.material.R$attr: int activityChooserViewStyle -cyanogenmod.app.Profile: void readFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_EditText -okio.InflaterSource: int bufferBytesHeldByInflater -james.adaptiveicon.R$attr: int iconTintMode -okhttp3.internal.http2.Http2Connection$PingRunnable -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitationProbability() -androidx.constraintlayout.widget.R$anim: int abc_tooltip_exit -com.google.android.material.R$attr: int layout_constraintTop_toTopOf -com.turingtechnologies.materialscrollbar.R$color: int primary_text_default_material_dark -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: javax.net.ssl.X509TrustManager trustManager -androidx.preference.R$color: int abc_tint_spinner -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconTintList(android.content.res.ColorStateList) -androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_toBottomOf -james.adaptiveicon.R$layout: int notification_action_tombstone -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_margin -androidx.appcompat.R$id: int content -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setEn_US(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastVerticalStyle -org.greenrobot.greendao.AbstractDao: java.lang.Object readKey(android.database.Cursor,int) -cyanogenmod.hardware.ICMHardwareService: boolean get(int) -cyanogenmod.themes.ThemeChangeRequest: cyanogenmod.themes.ThemeChangeRequest$RequestType getReqeustType() -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitle -androidx.appcompat.widget.FitWindowsFrameLayout: FitWindowsFrameLayout(android.content.Context) -wangdaye.com.geometricweather.db.entities.DaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) -androidx.preference.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -android.didikee.donate.R$attr: int showTitle -wangdaye.com.geometricweather.R$id: int src_over -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event valueOf(java.lang.String) -com.tencent.bugly.proguard.ao: java.lang.String a -com.loc.k: java.lang.String d -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card -com.amap.api.location.AMapLocation: AMapLocation(java.lang.String) -android.didikee.donate.R$styleable: int MenuView_android_itemTextAppearance -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.appcompat.R$styleable: int MenuView_android_headerBackground -androidx.appcompat.widget.ActivityChooserView -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitationProbability(java.lang.Float) -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_dropDownWidth -okhttp3.internal.http2.Http2Reader: Http2Reader(okio.BufferedSource,boolean) -com.google.android.material.slider.Slider: int getLabelBehavior() -cyanogenmod.themes.IThemeService: boolean isThemeBeingProcessed(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: int UnitType -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_hideOnContentScroll -androidx.constraintlayout.widget.R$styleable: int KeyPosition_pathMotionArc -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_square_side -okhttp3.internal.ws.RealWebSocket$Close: long cancelAfterCloseMillis -wangdaye.com.geometricweather.R$attr: int iconResStart -androidx.appcompat.R$color: int background_floating_material_light -com.google.android.material.R$styleable: int MaterialCalendar_dayInvalidStyle -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.util.concurrent.CountDownLatch readCompleteLatch -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Delete -com.google.android.material.R$style: int Widget_AppCompat_ListView_DropDown -cyanogenmod.app.CMTelephonyManager: void setDefaultPhoneSub(int) +okio.RealBufferedSource: long indexOf(byte,long) +com.turingtechnologies.materialscrollbar.R$attr: int actionMenuTextAppearance +wangdaye.com.geometricweather.R$attr: int imageAspectRatioAdjust +okhttp3.internal.tls.CertificateChainCleaner: okhttp3.internal.tls.CertificateChainCleaner get(javax.net.ssl.X509TrustManager) +com.google.android.material.R$styleable: int Chip_chipMinHeight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean) +androidx.lifecycle.HasDefaultViewModelProviderFactory +wangdaye.com.geometricweather.R$id: int contentPanel +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Info +androidx.hilt.lifecycle.R$dimen: int notification_large_icon_width +com.jaredrummler.android.colorpicker.R$attr: int fontProviderCerts +com.google.android.material.R$id: int sin +wangdaye.com.geometricweather.R$id: int large +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetTop +androidx.hilt.lifecycle.R$style: int Widget_Compat_NotificationActionText +io.reactivex.internal.subscriptions.SubscriptionArbiter: void request(long) +com.google.android.material.chip.Chip: float getChipStartPadding() +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1(retrofit2.Call) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemIconSize(int) +androidx.preference.R$attr: int spinnerStyle +androidx.lifecycle.extensions.R$layout: int notification_action +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherText(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int errorEnabled +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_7 +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitation +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarWidgetTheme +com.google.android.material.R$styleable: int ProgressIndicator_indicatorColors +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_7 +wangdaye.com.geometricweather.R$string: int week_2 +com.google.android.material.R$dimen: int design_snackbar_action_text_color_alpha +okhttp3.OkHttpClient: boolean followRedirects +com.jaredrummler.android.colorpicker.R$attr: int actionModeFindDrawable +com.tencent.bugly.crashreport.crash.c: java.lang.String o +android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat_Light +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_RAMP_UP_TIME_VALIDATOR +com.tencent.bugly.Bugly: boolean a +retrofit2.Utils: java.lang.reflect.Type getGenericSupertype(java.lang.reflect.Type,java.lang.Class,java.lang.Class) +com.xw.repo.bubbleseekbar.R$drawable: int abc_dialog_material_background +com.turingtechnologies.materialscrollbar.R$id: int chronometer +wangdaye.com.geometricweather.R$string: int content_des_add_current_location +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Connection$Listener listener +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Filter +com.jaredrummler.android.colorpicker.R$styleable: int Preference_allowDividerAbove +androidx.activity.R$dimen: int notification_top_pad +com.tencent.bugly.proguard.ac: byte[] a(byte[]) +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: CircularRevealCoordinatorLayout(android.content.Context) +com.google.android.material.R$dimen: int mtrl_calendar_header_toggle_margin_bottom +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.functions.BooleanSupplier stop +androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_id +com.google.android.material.R$id: int accessibility_custom_action_23 +james.adaptiveicon.R$drawable: int abc_ic_voice_search_api_material +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getThunderstormPrecipitationProbability() +com.google.android.material.R$id: int outline +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_16 +com.jaredrummler.android.colorpicker.R$attr: int summaryOn +okhttp3.internal.cache.DiskLruCache: java.util.concurrent.Executor executor +androidx.cardview.R$styleable: int CardView_cardMaxElevation +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setEnableUserInfo(boolean) +androidx.constraintlayout.widget.R$color: int dim_foreground_disabled_material_light +wangdaye.com.geometricweather.R$anim: int abc_fade_out +wangdaye.com.geometricweather.R$attr: int fastScrollHorizontalTrackDrawable +okhttp3.internal.http2.Hpack$Reader: int headerCount +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWindLevel() +okhttp3.Route: boolean equals(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionModeOverlay +androidx.work.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconMode +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingRight +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceLargePopupMenu +androidx.hilt.work.R$color: int ripple_material_light +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_indeterminateProgressStyle +com.google.android.material.navigation.NavigationView: void setItemHorizontalPadding(int) +okhttp3.internal.cache.CacheStrategy: CacheStrategy(okhttp3.Request,okhttp3.Response) +cyanogenmod.weather.WeatherInfo$DayForecast: int getConditionCode() +com.tencent.bugly.proguard.i: java.lang.Object[] b(java.lang.Object,int,boolean) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalBias +com.google.android.material.R$styleable: int ActionBar_contentInsetLeft +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BLUETOOTH_ICON +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: boolean isDisposed() +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +wangdaye.com.geometricweather.R$layout: int cpv_color_item_square +android.didikee.donate.R$styleable: int TextAppearance_android_textFontWeight +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_darkIcon +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.appcompat.widget.AbsActionBarView: int getAnimatedVisibility() +wangdaye.com.geometricweather.R$drawable: int abc_btn_check_to_on_mtrl_000 +okio.Pipe$PipeSink: Pipe$PipeSink(okio.Pipe) +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored +androidx.hilt.R$styleable: int GradientColor_android_centerColor +androidx.preference.R$style: int Base_Widget_AppCompat_Button +com.google.android.material.R$styleable: int Chip_hideMotionSpec +com.google.android.material.R$string: int mtrl_picker_range_header_title +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColorLink +androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModelStore mViewModelStore +wangdaye.com.geometricweather.R$id: int notification_base_time +wangdaye.com.geometricweather.R$dimen: int hourly_trend_item_height +com.tencent.bugly.proguard.d: void a(java.lang.String,java.lang.Object) +com.tencent.bugly.crashreport.common.info.a: boolean R() +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ARABIC +james.adaptiveicon.R$styleable: int MenuView_android_windowAnimationStyle +io.reactivex.internal.util.VolatileSizeArrayList: void clear() +james.adaptiveicon.R$styleable: int Toolbar_contentInsetLeft +okhttp3.internal.cache2.Relay$RelaySource: long sourcePos +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult +android.didikee.donate.R$id: int end +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_type +okhttp3.internal.platform.JdkWithJettyBootPlatform +com.tencent.bugly.proguard.n: void a(int,int) +okhttp3.internal.connection.ConnectionSpecSelector: int nextModeIndex +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCeiling(java.lang.Float) +wangdaye.com.geometricweather.R$string: int settings_title_forecast_tomorrow +androidx.lifecycle.SavedStateHandleController$1 +androidx.transition.R$attr: int fontProviderPackage +androidx.preference.R$styleable: int MenuItem_tooltipText +cyanogenmod.app.ICMStatusBarManager$Stub: cyanogenmod.app.ICMStatusBarManager asInterface(android.os.IBinder) +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_material +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionMode +io.reactivex.internal.subscriptions.DeferredScalarSubscription: DeferredScalarSubscription(org.reactivestreams.Subscriber) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity +androidx.fragment.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String aqi +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarSplitStyle +androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontWeight +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_default +androidx.constraintlayout.widget.R$styleable: int CompoundButton_android_button +org.greenrobot.greendao.AbstractDao: java.lang.Object getKey(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$attr: int layout_behavior +cyanogenmod.externalviews.KeyguardExternalView$8: boolean val$showing +androidx.recyclerview.widget.RecyclerView: void setItemAnimator(androidx.recyclerview.widget.RecyclerView$ItemAnimator) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +james.adaptiveicon.R$styleable: int SearchView_goIcon +cyanogenmod.content.Intent: java.lang.String ACTION_SCREEN_CAMERA_GESTURE +androidx.activity.R$id: int text2 +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_textAppearance +cyanogenmod.providers.CMSettings$Secure: java.lang.String PERFORMANCE_PROFILE +com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonTint +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: double Value +okhttp3.HttpUrl$Builder: int effectivePort() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarSize +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_controlBackground +androidx.work.R$bool: int workmanager_test_configuration +james.adaptiveicon.R$dimen: int abc_dialog_padding_material +cyanogenmod.app.ProfileManager: int PROFILES_STATE_ENABLED +androidx.lifecycle.extensions.R$drawable: int notification_bg_low_pressed +okhttp3.logging.LoggingEventListener$Factory androidx.activity.R$id: int blocking -cyanogenmod.providers.CMSettings$DelimitedListValidator -com.xw.repo.bubbleseekbar.R$color: int material_deep_teal_200 +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge +androidx.work.R$bool: int enable_system_foreground_service_default +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX direction +okhttp3.internal.http2.Http2Codec: java.lang.String ENCODING +com.google.android.material.R$drawable +okhttp3.internal.cache.DiskLruCache$3: DiskLruCache$3(okhttp3.internal.cache.DiskLruCache) +com.google.android.material.appbar.AppBarLayout: int getPendingAction() +com.google.android.material.chip.Chip: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +okhttp3.Response: okhttp3.ResponseBody peekBody(long) +com.google.android.material.R$dimen: int design_tab_text_size +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextColor +com.amap.api.location.AMapLocation: double t +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_checkboxStyle +androidx.appcompat.R$layout: int abc_search_dropdown_item_icons_2line +james.adaptiveicon.R$styleable: int SearchView_closeIcon +wangdaye.com.geometricweather.R$string: int precipitation +com.jaredrummler.android.colorpicker.R$attr: int seekBarPreferenceStyle +okhttp3.internal.cache.FaultHidingSink: boolean hasErrors +wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_small_material +android.didikee.donate.R$attr: int displayOptions +okio.Okio: java.util.logging.Logger logger +androidx.preference.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +com.turingtechnologies.materialscrollbar.R$styleable: int RecycleListView_paddingTopNoTitle +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_showText +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg +okhttp3.CookieJar$1: CookieJar$1() +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_progressBarStyle +androidx.lifecycle.MediatorLiveData$Source: int mVersion +james.adaptiveicon.R$attr: int closeItemLayout +com.google.android.material.R$styleable: int TabLayout_tabContentStart +cyanogenmod.app.Profile: java.util.List readSecondaryUuidsFromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +wangdaye.com.geometricweather.R$id: int action_bar_activity_content +androidx.appcompat.R$styleable: int AppCompatTextView_drawableTintMode +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColor +okhttp3.internal.http2.Http2Reader: boolean nextFrame(boolean,okhttp3.internal.http2.Http2Reader$Handler) +wangdaye.com.geometricweather.R$styleable: int Motion_drawPath +com.google.android.material.R$dimen: int abc_text_size_small_material +wangdaye.com.geometricweather.db.entities.ChineseCityEntity +retrofit2.ParameterHandler$Field: void apply(retrofit2.RequestBuilder,java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer getCloudCover() +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_collapseIcon +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property City +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status IN_PROGRESS +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.queue.MpscLinkedQueue queue +androidx.lifecycle.ClassesInfoCache: boolean hasLifecycleMethods(java.lang.Class) +okio.ByteString: boolean startsWith(okio.ByteString) +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_padding_material +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String hour +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +com.google.android.material.button.MaterialButton: void setRippleColorResource(int) +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemBackground +com.jaredrummler.android.colorpicker.R$id: int tag_unhandled_key_listeners +androidx.preference.R$attr: int entryValues +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar_Small +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +james.adaptiveicon.R$id: int home +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean setNativeAppPackage(java.lang.String) +com.tencent.bugly.proguard.p: boolean a(com.tencent.bugly.proguard.p,int,java.lang.String,com.tencent.bugly.proguard.o) +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sunrise_sunset +cyanogenmod.weather.IRequestInfoListener$Stub +com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding +com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyleSmall +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotation +com.tencent.bugly.crashreport.common.info.AppInfo: boolean f(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int[] ConstraintLayout_placeholder +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterOverflowTextColor +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_borderlessButtonStyle +wangdaye.com.geometricweather.R$color: int mtrl_chip_ripple_color +androidx.loader.R$attr: int fontProviderQuery +cyanogenmod.externalviews.ExternalView$8: void run() +wangdaye.com.geometricweather.R$drawable: int notif_temp_100 +androidx.activity.R$id: int tag_transition_group +okio.Timeout: okio.Timeout deadline(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorHeight +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol HTTPS +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_titleCondensed +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircleAngle +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: void run() +james.adaptiveicon.R$style: int Animation_AppCompat_Dialog +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_prompt +androidx.work.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$string: int path_password_eye_mask_visible +com.google.android.material.R$id: int accessibility_custom_action_11 +com.turingtechnologies.materialscrollbar.R$dimen: int cardview_compat_inset_shadow +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_title +androidx.customview.R$attr: int ttcIndex +com.jaredrummler.android.colorpicker.R$dimen: int abc_disabled_alpha_material_dark +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog +com.google.android.material.R$styleable: int ViewBackgroundHelper_android_background +okhttp3.Cache$2: Cache$2(okhttp3.Cache) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: IKeyguardExternalViewCallbacks$Stub$Proxy(android.os.IBinder) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Borderless +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.IBinder onBind(android.content.Intent) +androidx.recyclerview.R$dimen: int compat_button_padding_vertical_material +com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onError(java.lang.Throwable) +retrofit2.Invocation: java.util.List arguments() +androidx.constraintlayout.widget.R$attr: int title +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeDegreeDayTemperature() +com.tencent.bugly.crashreport.common.info.a: java.lang.String s() wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getThunderstormPrecipitation() -androidx.lifecycle.extensions.R$id: int text2 -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Large -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_color -androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.R$string: int circular_progress_view -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.util.Date getDate() -com.xw.repo.bubbleseekbar.R$id: int time -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_creator -com.google.android.material.R$styleable: int KeyTrigger_motionTarget -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit valueOf(java.lang.String) -androidx.appcompat.R$dimen: int tooltip_horizontal_padding -androidx.appcompat.R$styleable: int CompoundButton_buttonTintMode -okhttp3.internal.platform.OptionalMethod -androidx.appcompat.widget.AppCompatAutoCompleteTextView: android.content.res.ColorStateList getSupportBackgroundTintList() -com.xw.repo.bubbleseekbar.R$color: int material_grey_300 -androidx.constraintlayout.widget.R$color: int abc_primary_text_disable_only_material_light -androidx.appcompat.R$attr: int closeItemLayout -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectTimeout(long,java.util.concurrent.TimeUnit) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onLockscreenSlideOffsetChanged -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextEnabled -com.xw.repo.BubbleSeekBar: void setCustomSectionTextArray(com.xw.repo.BubbleSeekBar$CustomSectionTextArray) -james.adaptiveicon.R$style: int Widget_AppCompat_SearchView -com.google.android.material.R$styleable: int MenuItem_actionLayout -io.reactivex.internal.subscriptions.DeferredScalarSubscription: java.lang.Object value -cyanogenmod.externalviews.ExternalViewProperties: ExternalViewProperties(android.view.View,android.content.Context) -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_100 -com.google.android.material.R$style: int TextAppearance_AppCompat_Small_Inverse -okhttp3.internal.http2.Http2Connection$ReaderRunnable: okhttp3.internal.http2.Http2Connection this$0 -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView -retrofit2.Retrofit: java.util.concurrent.Executor callbackExecutor -wangdaye.com.geometricweather.wallpaper.LiveWallpaperConfigActivity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean getForecastHourly() -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_menu_header_material -android.didikee.donate.R$color: int dim_foreground_material_dark -androidx.preference.R$layout: int abc_screen_simple_overlay_action_mode -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial Imperial -wangdaye.com.geometricweather.R$attr: int tabMaxWidth -james.adaptiveicon.R$styleable: int TextAppearance_android_textSize -com.google.android.material.R$style: int Base_V22_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_text_input_padding_top -okhttp3.Cookie$Builder: long expiresAt -com.google.android.material.R$attr: int fastScrollVerticalThumbDrawable -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_curveFit -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.reflect.Type responseType -org.greenrobot.greendao.AbstractDao: java.lang.Object readEntity(android.database.Cursor,int) -android.support.v4.app.INotificationSideChannel$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean getHumidity() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: void setStatus(int) -androidx.constraintlayout.widget.R$color: int primary_dark_material_dark -com.google.android.material.R$attr: int layout_constraintTop_creator -androidx.preference.R$style: int Base_V26_Widget_AppCompat_Toolbar -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: long serialVersionUID -androidx.viewpager2.R$id: int title -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_SearchView -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf -wangdaye.com.geometricweather.R$styleable: int KeyPosition_pathMotionArc -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -androidx.loader.R$color: int notification_action_color_filter -okio.RealBufferedSink: okio.BufferedSink writeUtf8CodePoint(int) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams mParams -com.google.android.material.R$string: int abc_searchview_description_clear -okio.Okio: okio.Sink sink(java.io.OutputStream,okio.Timeout) -wangdaye.com.geometricweather.R$attr: int waveOffset -cyanogenmod.externalviews.ExternalViewProviderService$Provider -androidx.preference.R$string: int abc_menu_function_shortcut_label -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_overlapAnchor -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String insee -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cv -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: retrofit2.Call call -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton -okhttp3.EventListener: void connectStart(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_anim_duration -com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: FloatingActionButton$BaseBehavior() -okhttp3.internal.http2.Http2Codec: okhttp3.Protocol protocol -com.turingtechnologies.materialscrollbar.R$attr: int behavior_overlapTop -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -james.adaptiveicon.R$styleable: int[] ActionBar -com.google.android.material.card.MaterialCardView: void setCardBackgroundColor(android.content.res.ColorStateList) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -androidx.constraintlayout.widget.R$styleable: int[] StateSet -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getSummary(android.content.Context,java.util.List) -okio.ByteString: int hashCode -com.google.android.material.R$styleable: int Chip_android_textColor -retrofit2.HttpException: retrofit2.Response response() -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderPackage -io.reactivex.internal.observers.InnerQueuedObserver: void setDone() -com.google.android.gms.common.api.internal.zaab: void registerConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customDimension -wangdaye.com.geometricweather.R$drawable: int ic_state_checked -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getAqi() -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties -com.google.android.material.slider.Slider: void setTickActiveTintList(android.content.res.ColorStateList) -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getLiveLockScreenEnabled -androidx.constraintlayout.widget.R$attr: int subtitle -com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -james.adaptiveicon.R$id: int submit_area -androidx.preference.DialogPreference: DialogPreference(android.content.Context,android.util.AttributeSet) -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean putKeyValueToNative(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: MfForecastResult$DailyForecast() -com.xw.repo.bubbleseekbar.R$attr: int colorPrimaryDark -io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode BOUNDARY -com.google.android.material.R$attr: int customColorDrawableValue -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight -com.tencent.bugly.crashreport.BuglyLog: void setCache(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: long EpochSet -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabText -james.adaptiveicon.R$dimen: int abc_action_bar_stacked_max_height -android.didikee.donate.R$styleable: int AppCompatTheme_borderlessButtonStyle -wangdaye.com.geometricweather.R$styleable: int Constraint_android_scaleX -android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind Wind -com.google.android.material.R$attr: int tintMode -wangdaye.com.geometricweather.R$styleable: int SearchView_closeIcon -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setHumidity(double) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ProgressBar -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: boolean done -james.adaptiveicon.R$drawable: int abc_item_background_holo_dark -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_count -wangdaye.com.geometricweather.R$styleable: int FragmentContainerView_android_name -androidx.loader.R$id: int blocking -okhttp3.internal.http2.Http2Connection: long unacknowledgedBytesRead -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.LocationEntity,long) -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: int getTotalCount() -androidx.constraintlayout.widget.R$color: int primary_text_default_material_dark -wangdaye.com.geometricweather.R$animator: int design_fab_show_motion_spec -com.xw.repo.bubbleseekbar.R$id: int search_edit_frame -com.google.android.material.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -com.tencent.bugly.proguard.j: j(int) -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: boolean isDisposed() -io.reactivex.Observable: io.reactivex.Observable switchIfEmpty(io.reactivex.ObservableSource) -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -retrofit2.DefaultCallAdapterFactory: DefaultCallAdapterFactory(java.util.concurrent.Executor) -com.jaredrummler.android.colorpicker.R$drawable: int abc_spinner_textfield_background_material -cyanogenmod.app.suggest.ApplicationSuggestion$1: java.lang.Object createFromParcel(android.os.Parcel) -com.google.android.material.appbar.AppBarLayout$BaseBehavior: AppBarLayout$BaseBehavior() -com.bumptech.glide.integration.okhttp.R$styleable: R$styleable() -androidx.dynamicanimation.R$id: int info -com.google.android.material.appbar.CollapsingToolbarLayout: long getScrimAnimationDuration() -james.adaptiveicon.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -androidx.recyclerview.R$styleable: int ColorStateListItem_android_alpha -android.didikee.donate.R$styleable: int TextAppearance_android_shadowDx -androidx.transition.R$id: int notification_main_column -okhttp3.internal.tls.DistinguishedNameParser: int cur -wangdaye.com.geometricweather.R$id: int activity_about_recyclerView -wangdaye.com.geometricweather.R$styleable: int[] Layout -okhttp3.internal.http2.Http2Connection: int AWAIT_PING -com.google.android.material.R$styleable: int CardView_contentPaddingLeft -android.didikee.donate.R$styleable: int AppCompatTheme_colorControlActivated -com.google.android.material.R$style: int Base_Theme_AppCompat -androidx.transition.R$dimen: int notification_action_text_size -androidx.constraintlayout.widget.R$attr: int lineHeight -androidx.coordinatorlayout.R$attr: int fontProviderAuthority -androidx.preference.R$styleable: int ActionBar_height -androidx.appcompat.widget.Toolbar: int getTitleMarginBottom() -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_percent -android.didikee.donate.R$style: int Widget_AppCompat_ListView_Menu -com.google.android.material.R$color: int switch_thumb_material_dark -androidx.hilt.lifecycle.R$id: int tag_unhandled_key_event_manager -com.google.android.material.R$layout: int material_clock_period_toggle -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListPopupWindow -com.jaredrummler.android.colorpicker.R$id: int checkbox -okhttp3.internal.http2.Http2: byte TYPE_SETTINGS -com.github.rahatarmanahmed.cpv.CircularProgressView: boolean isIndeterminate() -wangdaye.com.geometricweather.R$attr: int bsb_always_show_bubble_delay -androidx.vectordrawable.animated.R$attr: int fontStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setHumidity(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean) -androidx.hilt.R$dimen: int notification_right_side_padding_top -androidx.viewpager2.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_57 -androidx.constraintlayout.widget.R$id: int dragUp -com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.lang.String pubTime -cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder asBinder() -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display3 -cyanogenmod.app.CustomTile: void cloneInto(cyanogenmod.app.CustomTile) -android.didikee.donate.R$style: int Widget_AppCompat_SearchView_ActionBar -okhttp3.MultipartBody: byte[] DASHDASH -wangdaye.com.geometricweather.R$id: int item_about_link_icon -wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month -com.google.android.material.R$attr: int showTitle -cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setMinutelyList(java.util.List) -cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String META_DATA -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_summaryOff -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getLongDate(android.content.Context) -androidx.viewpager.widget.PagerTabStrip: void setTabIndicatorColorResource(int) -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTime(long) -james.adaptiveicon.R$styleable: int TextAppearance_android_textColorLink -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display3 -com.xw.repo.bubbleseekbar.R$dimen: int notification_right_icon_size -com.google.android.material.R$color: int abc_secondary_text_material_dark -com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context) -james.adaptiveicon.R$dimen: int abc_text_size_display_3_material -android.didikee.donate.R$styleable: int ViewStubCompat_android_layout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX getSpeed() -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String I -wangdaye.com.geometricweather.R$color: int material_on_primary_disabled -wangdaye.com.geometricweather.R$dimen: int content_text_size -okhttp3.internal.cache.DiskLruCache$2: okhttp3.internal.cache.DiskLruCache this$0 -com.tencent.bugly.crashreport.crash.anr.b: com.tencent.bugly.crashreport.crash.CrashDetailBean a(com.tencent.bugly.crashreport.crash.anr.a) -com.bumptech.glide.load.HttpException -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconTint -cyanogenmod.power.PerformanceManager: int PROFILE_BIAS_POWER_SAVE -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void drain() -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_arrowHeadLength -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: java.lang.Object call() -wangdaye.com.geometricweather.R$dimen: int material_cursor_inset_top -wangdaye.com.geometricweather.R$styleable: int RecyclerView_layoutManager -wangdaye.com.geometricweather.R$integer: int mtrl_card_anim_duration_ms -io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver parent -cyanogenmod.profiles.RingModeSettings: void setValue(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_motionProgress -androidx.appcompat.widget.AppCompatImageButton: android.graphics.PorterDuff$Mode getSupportImageTintMode() -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipCornerRadius -com.google.android.material.R$styleable: int ShapeableImageView_strokeColor -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_SearchView -wangdaye.com.geometricweather.R$drawable: int ic_ragweed -androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache sInstance -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_hide_bubble -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceTheme -androidx.work.R$styleable: int GradientColor_android_centerColor -com.xw.repo.bubbleseekbar.R$attr: int alphabeticModifiers -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean otherDone -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: AccuCurrentResult$Past24HourTemperatureDeparture() -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display2 -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Invalid -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: java.util.List getValue() -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: FlowableCreate$SerializedEmitter(io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -cyanogenmod.providers.CMSettings$Secure: java.lang.String THEME_PREV_BOOT_API_LEVEL -androidx.appcompat.R$drawable: int abc_ic_star_half_black_36dp -com.google.android.material.R$attr: int fastScrollHorizontalTrackDrawable -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customIntegerValue -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.subjects.Subject signaller -retrofit2.Invocation: retrofit2.Invocation of(java.lang.reflect.Method,java.util.List) -androidx.appcompat.R$styleable: int MenuItem_showAsAction -wangdaye.com.geometricweather.R$string: int settings_summary_service_provider -com.google.android.material.R$dimen: int notification_media_narrow_margin -androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.lang.Object leaveTransform(java.lang.Object) -wangdaye.com.geometricweather.db.entities.DaoMaster: int SCHEMA_VERSION -androidx.preference.R$attr: int title -wangdaye.com.geometricweather.R$id: int item_aqi_content -androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_material -james.adaptiveicon.R$style: int Platform_Widget_AppCompat_Spinner +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded +com.xw.repo.bubbleseekbar.R$attr: int hideOnContentScroll +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableLeft +com.xw.repo.bubbleseekbar.R$attr: int actionModeBackground +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String g +cyanogenmod.providers.DataUsageContract: java.lang.String ENABLE +android.didikee.donate.R$color: int background_material_light +com.google.android.material.timepicker.ClockFaceView: ClockFaceView(android.content.Context,android.util.AttributeSet) +com.google.gson.stream.JsonReader: java.lang.String nextString() +cyanogenmod.externalviews.KeyguardExternalView$5: KeyguardExternalView$5(cyanogenmod.externalviews.KeyguardExternalView) +org.greenrobot.greendao.AbstractDaoSession: void delete(java.lang.Object) +com.bumptech.glide.load.engine.GlideException: void setOrigin(java.lang.Exception) +wangdaye.com.geometricweather.R$id: int search_button +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +wangdaye.com.geometricweather.R$attr: int path_percent +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_DialogWhenLarge +androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +wangdaye.com.geometricweather.R$dimen: int design_fab_elevation +cyanogenmod.app.Profile: void addSecondaryUuid(java.util.UUID) +okio.Options: int intCount(okio.Buffer) +com.google.android.material.R$color: int design_dark_default_color_secondary_variant +okhttp3.internal.connection.ConnectInterceptor: okhttp3.OkHttpClient client +com.turingtechnologies.materialscrollbar.R$attr: int thumbTextPadding +cyanogenmod.app.ProfileGroup: void validateOverrideUris(android.content.Context) +cyanogenmod.app.ICustomTileListener$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.R$layout: int widget_trend_daily +wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_elevation +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_PREV_VALUE +com.amap.api.fence.GeoFenceListener +cyanogenmod.app.Profile: void readFromParcel(android.os.Parcel) +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxIo +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.internal.util.AtomicThrowable errors +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String getValue() +cyanogenmod.providers.CMSettings$System: int getIntForUser(android.content.ContentResolver,java.lang.String,int) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int NavigationView_shapeAppearance +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleVerticalOffset +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionMode +com.tencent.bugly.proguard.v: void a(long) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_ab_back_material +com.turingtechnologies.materialscrollbar.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +androidx.lifecycle.ProcessLifecycleOwner$3 +com.google.android.material.internal.ScrimInsetsFrameLayout: void setDrawTopInsetForeground(boolean) +com.amap.api.fence.DistrictItem$1: DistrictItem$1() +wangdaye.com.geometricweather.R$style: int Preference_SwitchPreferenceCompat_Material +james.adaptiveicon.R$id: int search_go_btn +com.google.android.material.R$drawable: int abc_dialog_material_background +com.google.android.material.R$id: int autoComplete +androidx.hilt.lifecycle.R$layout: int notification_template_part_chronometer +com.tencent.bugly.proguard.ap: int l +com.turingtechnologies.materialscrollbar.R$attr: int windowFixedWidthMinor +com.google.android.material.R$id: int date_picker_actions +android.didikee.donate.R$anim +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String to +cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup[] getNotificationGroups() +com.xw.repo.bubbleseekbar.R$anim: int abc_grow_fade_in_from_bottom +okhttp3.Dispatcher: void enqueue(okhttp3.RealCall$AsyncCall) +cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri CONTENT_URI +cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weather.RequestInfo getRequestInfo() +android.didikee.donate.R$style: int TextAppearance_AppCompat_Headline +com.jaredrummler.android.colorpicker.R$attr: int windowActionModeOverlay +androidx.swiperefreshlayout.R$styleable: int[] GradientColor +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListMenuView +james.adaptiveicon.R$layout: int abc_popup_menu_item_layout +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setEnabled(boolean) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY_DAY +com.tencent.bugly.proguard.u: java.lang.String d(com.tencent.bugly.proguard.u) +wangdaye.com.geometricweather.R$style: int Base_V28_Theme_AppCompat +androidx.vectordrawable.animated.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getPm25() +androidx.appcompat.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_editor_absoluteY +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +wangdaye.com.geometricweather.R$bool: int abc_action_bar_embed_tabs +com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_horizontal_material +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeApparentTemperature(java.lang.Integer) +androidx.preference.R$styleable: int Preference_title +cyanogenmod.app.Profile$DozeMode +wangdaye.com.geometricweather.R$string: int feedback_request_location_in_background +james.adaptiveicon.R$dimen: int tooltip_vertical_padding +com.amap.api.fence.GeoFence$1: java.lang.Object createFromParcel(android.os.Parcel) +com.google.android.material.R$styleable: int ChipGroup_selectionRequired +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action) +io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator valueOf(java.lang.String) +com.google.android.material.R$color: int material_grey_50 +android.didikee.donate.R$attr: int listPreferredItemHeightLarge +james.adaptiveicon.R$styleable: int Toolbar_subtitle +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void dispose() +wangdaye.com.geometricweather.R$attr: int statusBarBackground +androidx.appcompat.R$layout: int abc_list_menu_item_radio +okhttp3.Cache$CacheResponseBody$1: okhttp3.internal.cache.DiskLruCache$Snapshot val$snapshot +cyanogenmod.providers.CMSettings$System: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: long upDateTime +com.baidu.location.e.l$b: int i +okhttp3.internal.ws.WebSocketProtocol: int B1_MASK_LENGTH +com.google.android.material.chip.Chip: void setChipStrokeColor(android.content.res.ColorStateList) +com.google.android.material.R$attr: int motion_postLayoutCollision +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_setInteractivity +com.tencent.bugly.proguard.p: boolean a(int,java.lang.String,com.tencent.bugly.proguard.o) +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: AMapLocationClientOption$AMapLocationPurpose(java.lang.String,int) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService newInstance(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi,io.reactivex.disposables.CompositeDisposable) +okhttp3.internal.http2.Http2Connection$IntervalPingRunnable +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_menuCategory +com.google.android.material.R$id: int accessibility_custom_action_21 +wangdaye.com.geometricweather.R$drawable: int notif_temp_71 +androidx.hilt.R$layout: int custom_dialog +androidx.lifecycle.extensions.R$dimen: int notification_big_circle_margin +com.google.android.material.R$attr: int windowMinWidthMinor +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_RED_INDEX +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method putMethod +android.didikee.donate.R$dimen: int abc_text_size_title_material_toolbar +wangdaye.com.geometricweather.R$attr: int ratingBarStyleIndicator +com.xw.repo.bubbleseekbar.R$id: int text +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition +com.xw.repo.bubbleseekbar.R$attr: int fontProviderFetchStrategy +androidx.loader.R$styleable: int GradientColor_android_type +io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit,io.reactivex.ObservableSource) +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_ttcIndex +okhttp3.Address: int hashCode() +okhttp3.internal.http.RealInterceptorChain: okhttp3.Request request +com.amap.api.location.AMapLocation: java.lang.String toString() +okhttp3.internal.http2.Http2Reader: java.util.logging.Logger logger +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean disposed +com.tencent.bugly.crashreport.biz.b: void a(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setCurrent(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean) +androidx.hilt.work.R$bool: R$bool() +com.google.android.material.chip.Chip: void setChipIconResource(int) +androidx.constraintlayout.widget.R$id: int sawtooth +com.jaredrummler.android.colorpicker.R$layout: int abc_screen_content_include +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Body1 +cyanogenmod.library.R$styleable: int[] LiveLockScreen +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeRealFeelTemperature +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_color +com.google.android.material.R$attr: int panelBackground +com.google.android.material.R$style: int Base_Theme_MaterialComponents +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar +androidx.lifecycle.ViewModelProvider$KeyedFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +james.adaptiveicon.R$dimen: int abc_action_bar_overflow_padding_start_material +com.amap.api.location.CoordUtil: CoordUtil() +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String h +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeWidth +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_text_color +androidx.constraintlayout.widget.R$attr: int actionProviderClass +com.jaredrummler.android.colorpicker.R$attr: int drawerArrowStyle +okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Level getLevel() +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: void truncate() +okhttp3.internal.http2.Http2Connection$1: void execute() +com.bumptech.glide.integration.okhttp.R$styleable: int[] CoordinatorLayout_Layout +com.turingtechnologies.materialscrollbar.R$styleable: int[] Spinner +androidx.appcompat.R$styleable: int FontFamily_fontProviderCerts +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +com.google.android.material.R$id: int action_bar +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyle +androidx.preference.R$styleable: int ActionBar_contentInsetStart +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult +io.reactivex.Observable: io.reactivex.Observable compose(io.reactivex.ObservableTransformer) +okhttp3.internal.http2.Hpack$Reader: okio.BufferedSource source +cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem() +androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +wangdaye.com.geometricweather.R$styleable: int Slider_android_value +androidx.appcompat.resources.R$id: int right_icon +com.google.android.material.R$styleable: int ImageFilterView_roundPercent +com.google.android.material.R$styleable: int AlertDialog_buttonPanelSideLayout +android.didikee.donate.R$color: int highlighted_text_material_light +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_notificationGroupExistsByName +androidx.core.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_Solid +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date setDate +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu +james.adaptiveicon.R$dimen: int notification_media_narrow_margin +com.google.android.material.R$attr: int chipSpacingVertical +wangdaye.com.geometricweather.R$id: int selected +retrofit2.converter.gson.GsonRequestBodyConverter: okhttp3.MediaType MEDIA_TYPE +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type ownerType +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: ILiveLockScreenChangeListener$Stub$Proxy(android.os.IBinder) +androidx.preference.R$dimen: int abc_text_size_body_1_material +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_getSubInformation_0 +com.google.android.material.R$style: int Widget_MaterialComponents_Button_UnelevatedButton +android.didikee.donate.R$drawable: int abc_btn_radio_to_on_mtrl_000 +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_subtitleTextStyle +wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_top_material +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter beginArray() +retrofit2.OptionalConverterFactory$OptionalConverter: OptionalConverterFactory$OptionalConverter(retrofit2.Converter) +androidx.vectordrawable.animated.R$id: int notification_main_column_container +wangdaye.com.geometricweather.common.basic.models.Location +com.google.android.material.R$attr: int touchAnchorSide +androidx.lifecycle.EmptyActivityLifecycleCallbacks +okhttp3.internal.http2.Hpack$Reader: void adjustDynamicTableByteCount() +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.util.Date getDate() +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean cancelled +okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String lastModifiedString +androidx.appcompat.widget.AppCompatImageView +androidx.lifecycle.SingleGeneratedAdapterObserver: SingleGeneratedAdapterObserver(androidx.lifecycle.GeneratedAdapter) +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getNavigationContentDescription() +okhttp3.Cache$CacheRequestImpl$1: okhttp3.Cache$CacheRequestImpl this$1 +wangdaye.com.geometricweather.R$styleable: int[] MenuItem +cyanogenmod.providers.CMSettings$Global: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) +wangdaye.com.geometricweather.R$attr: int windowMinWidthMinor +com.google.gson.stream.JsonWriter: void replaceTop(int) +okio.ByteString: okio.ByteString hmacSha512(okio.ByteString) +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_popupTheme +androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.R$drawable: int ic_thx +com.google.android.material.R$attr: int chipIconEnabled +cyanogenmod.app.CustomTile$ExpandedStyle$1: cyanogenmod.app.CustomTile$ExpandedStyle[] newArray(int) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getCo() +wangdaye.com.geometricweather.R$layout: int item_about_link +androidx.appcompat.resources.R$drawable: int notification_icon_background +com.amap.api.location.AMapLocationClient: void setApiKey(java.lang.String) +androidx.drawerlayout.widget.DrawerLayout: void setDrawerElevation(float) +wangdaye.com.geometricweather.R$integer: int mtrl_calendar_selection_text_lines +com.jaredrummler.android.colorpicker.R$attr: int alphabeticModifiers +okhttp3.HttpUrl: int pathSize() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber +com.google.android.material.internal.NavigationMenuItemView: void setIconPadding(int) +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_textOn +okio.GzipSink: void writeFooter() +com.baidu.location.indoor.mapversion.c.c$b: java.lang.String b +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWeatherText +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatElevation(float) +cyanogenmod.app.CMTelephonyManager: boolean isDataConnectionSelectedOnSub(int) +com.google.android.material.R$dimen: int cardview_compat_inset_shadow +okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory newSslSocketFactory(javax.net.ssl.X509TrustManager) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +androidx.preference.R$id: int up +androidx.appcompat.resources.R$drawable: int notification_action_background +com.amap.api.location.APSService: int b +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_enabled +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_itemPadding +com.xw.repo.bubbleseekbar.R$color: int abc_tint_switch_track +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: java.lang.String mKey +com.turingtechnologies.materialscrollbar.R$attr: int chipIconVisible +com.tencent.bugly.proguard.ap: void a(com.tencent.bugly.proguard.j) +com.tencent.bugly.crashreport.crash.c: boolean d +com.amap.api.location.AMapLocationClientOption: boolean o +okhttp3.internal.Util: boolean equal(java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setIcePrecipitation(java.lang.Float) +com.google.android.material.button.MaterialButton: void setCheckable(boolean) +com.google.android.material.R$styleable: int RangeSlider_minSeparation com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomSheetBehavior_Layout -androidx.preference.R$dimen: int fastscroll_default_thickness -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean isDisposed() -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: ObservableTimer$TimerObserver(io.reactivex.Observer) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -okhttp3.HttpUrl: java.lang.String url -com.google.android.gms.base.R$attr: int colorScheme -cyanogenmod.app.IProfileManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeWidthFocused -androidx.hilt.lifecycle.R$layout: int notification_template_part_time -com.tencent.bugly.crashreport.crash.CrashDetailBean: long D -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm25(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: double Value -wangdaye.com.geometricweather.R$color: int switch_thumb_material_dark -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionMode -androidx.vectordrawable.R$styleable: R$styleable() -okhttp3.internal.http.HttpDate$1: java.lang.Object initialValue() -com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_showOldColor -androidx.lifecycle.LifecycleService -okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: void execute() -cyanogenmod.hardware.CMHardwareManager: int FEATURE_TOUCH_HOVERING -okhttp3.Response: okhttp3.Protocol protocol -io.reactivex.internal.observers.BasicIntQueueDisposable -androidx.constraintlayout.widget.R$attr: int ratingBarStyleIndicator -androidx.constraintlayout.widget.R$string: int abc_activity_chooser_view_see_all -okio.Buffer: okio.BufferedSink writeLong(long) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.R$attr: int dialogTitle -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_layout_margin -androidx.legacy.coreutils.R$color -wangdaye.com.geometricweather.R$drawable: int weather_sleet -com.turingtechnologies.materialscrollbar.R$dimen: int design_appbar_elevation -androidx.vectordrawable.R$id: int accessibility_custom_action_23 -okhttp3.internal.ws.RealWebSocket: int receivedPingCount -com.bumptech.glide.integration.okhttp.R$id: int action_text -androidx.appcompat.resources.R$id: int accessibility_custom_action_1 -com.google.android.material.R$id: int action_text -androidx.appcompat.R$style: int TextAppearance_Compat_Notification -androidx.appcompat.R$id: int search_bar -okio.RealBufferedSink: okio.BufferedSink write(byte[]) -okhttp3.FormBody: okhttp3.MediaType contentType() -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String getTime(android.content.Context,java.util.Date) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String unit -androidx.constraintlayout.widget.R$attr: int showText -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWeatherStart(java.lang.String) -com.tencent.bugly.crashreport.crash.d: com.tencent.bugly.crashreport.common.strategy.a b -org.greenrobot.greendao.DaoException: void safeInitCause(java.lang.Throwable) -androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_RadioButton -james.adaptiveicon.R$attr: int autoSizeMaxTextSize -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void dispose() -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int sourceMode -androidx.dynamicanimation.R$attr: int font -androidx.lifecycle.ViewModelStores: androidx.lifecycle.ViewModelStore of(androidx.fragment.app.FragmentActivity) -wangdaye.com.geometricweather.R$string: int key_trend_horizontal_line_switch -com.google.android.material.slider.RangeSlider: int getThumbRadius() -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void cancelSources() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setNo2(java.lang.String) -okhttp3.internal.cache.DiskLruCache: long size -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX -androidx.constraintlayout.widget.R$attr: int editTextColor -com.jaredrummler.android.colorpicker.R$id: int gridView -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onWindowAttributesChanged(android.view.WindowManager$LayoutParams) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_43 -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Color -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.tencent.bugly.proguard.a: void a(java.lang.String) -wangdaye.com.geometricweather.background.polling.work.worker.AsyncWorker: AsyncWorker(android.content.Context,androidx.work.WorkerParameters) -com.xw.repo.bubbleseekbar.R$color: int abc_secondary_text_material_light -okhttp3.internal.ws.RealWebSocket: void checkResponse(okhttp3.Response) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: void setGravitySensorEnabled(boolean) -androidx.fragment.R$id: int accessibility_custom_action_12 -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickActiveTintList() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf -okhttp3.internal.ws.RealWebSocket$CancelRunnable: RealWebSocket$CancelRunnable(okhttp3.internal.ws.RealWebSocket) -com.xw.repo.bubbleseekbar.R$attr: int switchPadding -cyanogenmod.weather.CMWeatherManager: java.util.Map access$200(cyanogenmod.weather.CMWeatherManager) -androidx.appcompat.resources.R$color: int ripple_material_light -com.google.android.material.tabs.TabLayout: void setInlineLabelResource(int) -androidx.preference.R$styleable: int Preference_android_persistent -androidx.preference.R$drawable: int abc_btn_check_to_on_mtrl_000 -cyanogenmod.app.Profile: java.util.ArrayList getTriggersFromType(int) -androidx.preference.R$styleable: int RecyclerView_stackFromEnd -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_subheader -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Large -androidx.recyclerview.R$id: int tag_transition_group -androidx.appcompat.R$id: int accessibility_custom_action_1 -androidx.preference.R$dimen: int abc_panel_menu_list_width -okhttp3.Request$Builder: okhttp3.Request$Builder put(okhttp3.RequestBody) -cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: WeatherContract$WeatherColumns$WindSpeedUnit() -com.google.android.gms.auth.api.signin.internal.GoogleSignInOptionsExtensionParcelable: android.os.Parcelable$Creator CREATOR -okhttp3.internal.platform.Platform: boolean isAndroid() -james.adaptiveicon.R$styleable: int AppCompatTheme_searchViewStyle -okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.RealWebSocket$Streams streams -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type TOP -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarPopupTheme -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: long serialVersionUID -androidx.constraintlayout.widget.Guideline: void setGuidelineEnd(int) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle -com.google.android.material.textview.MaterialTextView -androidx.appcompat.R$drawable: int abc_ic_menu_overflow_material -wangdaye.com.geometricweather.R$attr: int textAppearanceCaption -wangdaye.com.geometricweather.R$id: int start -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult -retrofit2.RequestFactory$Builder: boolean gotField -okio.Okio$2 -com.google.android.material.R$attr: int badgeGravity -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowDy -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -android.didikee.donate.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: java.lang.String b -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum Minimum -androidx.hilt.R$styleable: int ColorStateListItem_android_color -android.didikee.donate.R$attr: int actionBarSplitStyle -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_progressBarPadding -wangdaye.com.geometricweather.R$styleable: int Insets_paddingBottomSystemWindowInsets -com.google.android.material.tabs.TabLayout$TabView -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.Platform buildIfSupported() -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_checked -okhttp3.internal.http1.Http1Codec$ChunkedSource -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -androidx.hilt.work.R$id: int notification_main_column -wangdaye.com.geometricweather.R$styleable: int Constraint_barrierAllowsGoneWidgets -com.google.android.material.R$id: int radio -androidx.activity.R$dimen: int compat_button_padding_vertical_material -androidx.hilt.R$drawable: int notification_bg_low_normal -com.google.android.material.R$styleable: int ActionMode_height -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture Past24HourTemperatureDeparture -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindLevel(java.lang.String) -retrofit2.ParameterHandler$HeaderMap: void apply(retrofit2.RequestBuilder,java.lang.Object) -cyanogenmod.app.CustomTile: java.lang.String toString() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial() -com.google.android.material.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -com.google.android.material.textfield.TextInputLayout: void setErrorTextColor(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.Indicator +io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String,int,boolean) +cyanogenmod.app.Profile$1: cyanogenmod.app.Profile createFromParcel(android.os.Parcel) +com.google.android.material.R$dimen: int design_textinput_caption_translate_y +com.amap.api.location.AMapLocation: float getSpeed() +wangdaye.com.geometricweather.background.service.CMWeatherProviderService: CMWeatherProviderService() +retrofit2.ParameterHandler$Headers: int p +wangdaye.com.geometricweather.R$attr: int elevationOverlayColor +com.google.android.material.R$color: int mtrl_choice_chip_background_color +androidx.legacy.coreutils.R$style: int Widget_Compat_NotificationActionContainer +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button +com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonTint +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: ObservableAmb$AmbInnerObserver(io.reactivex.internal.operators.observable.ObservableAmb$AmbCoordinator,int,io.reactivex.Observer) +androidx.appcompat.R$id: int scrollIndicatorDown +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatSeekBar +wangdaye.com.geometricweather.R$drawable: int ic_alipay +okhttp3.RequestBody$2 +androidx.preference.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +androidx.lifecycle.extensions.R$styleable: int[] FragmentContainerView +okhttp3.internal.http1.Http1Codec: int STATE_OPEN_RESPONSE_BODY +androidx.preference.R$styleable: int AppCompatTheme_editTextColor +androidx.viewpager.R$drawable: int notification_bg_low_normal +cyanogenmod.profiles.BrightnessSettings: boolean mOverride +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String moldDescription +androidx.viewpager2.R$attr: int fastScrollHorizontalThumbDrawable +androidx.preference.R$color: int material_blue_grey_950 +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_explanation +androidx.constraintlayout.widget.R$styleable: int ActionBar_subtitleTextStyle +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemTextAppearance +com.google.android.material.R$attr: int shrinkMotionSpec +okhttp3.HttpUrl: okhttp3.HttpUrl$Builder newBuilder(java.lang.String) +androidx.preference.R$drawable: int abc_ic_star_black_16dp +androidx.core.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListMenuView +okhttp3.internal.http.RequestLine +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_showText +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetRight +wangdaye.com.geometricweather.R$attr: int cardMaxElevation +com.tencent.bugly.proguard.n: boolean b(com.tencent.bugly.proguard.n,int) +com.google.android.material.circularreveal.CircularRevealFrameLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_DayNight +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_headline_material +androidx.preference.R$anim: int fragment_fade_exit +wangdaye.com.geometricweather.R$string: int week_5 +androidx.fragment.R$dimen: int notification_media_narrow_margin +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onComplete() +okio.ByteString: okio.ByteString sha256() +com.google.android.material.R$styleable: int[] MaterialAlertDialog +androidx.preference.R$styleable: int ActionBar_homeAsUpIndicator +com.tencent.bugly.crashreport.crash.h5.a: java.lang.String i +com.google.android.material.slider.RangeSlider$RangeSliderState +androidx.fragment.R$id: int info +androidx.constraintlayout.widget.Group: void setVisibility(int) +cyanogenmod.app.CMTelephonyManager: java.lang.String TAG +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_2G3G4G +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String uvLevel +okhttp3.ConnectionSpec$Builder: boolean tls +okhttp3.Response: okhttp3.Handshake handshake() +wangdaye.com.geometricweather.R$attr: int inner_margins +com.google.android.material.R$styleable: int MaterialCardView_checkedIconMargin +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial +okhttp3.internal.Internal: void put(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) +androidx.appcompat.R$string: R$string() +james.adaptiveicon.R$attr: int tooltipFrameBackground +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Tooltip +com.google.android.material.R$styleable: int KeyTimeCycle_android_scaleX +androidx.constraintlayout.widget.R$layout: int abc_action_bar_up_container +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.os.Bundle mOptions +androidx.appcompat.R$color: int abc_secondary_text_material_dark +com.google.android.material.R$attr: int expandedHintEnabled +okio.Segment: void writeTo(okio.Segment,int) +androidx.constraintlayout.widget.Group: Group(android.content.Context) +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginEnd +androidx.appcompat.widget.LinearLayoutCompat: void setBaselineAlignedChildIndex(int) +com.google.android.material.slider.BaseSlider: void setThumbStrokeColorResource(int) androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginLeft -okhttp3.internal.platform.Jdk9Platform: okhttp3.internal.platform.Jdk9Platform buildIfSupported() -cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder() -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit -cyanogenmod.hardware.CMHardwareManager: int FEATURE_TAP_TO_WAKE -androidx.hilt.R$id: int accessibility_custom_action_22 -com.google.android.material.tabs.TabLayout: void setTabIndicatorFullWidth(boolean) -com.google.android.material.R$styleable: int ConstraintSet_flow_verticalBias -com.tencent.bugly.proguard.h: java.lang.StringBuilder a -androidx.recyclerview.R$id: int line1 -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.ObservableEmitter serialize() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableLeftCompat -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -james.adaptiveicon.R$style: int Platform_AppCompat_Light -androidx.activity.R$id: int accessibility_custom_action_27 -androidx.constraintlayout.widget.R$attr: int color -wangdaye.com.geometricweather.R$attr: int paddingLeftSystemWindowInsets -com.jaredrummler.android.colorpicker.R$dimen: int abc_button_padding_horizontal_material -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -retrofit2.RequestBuilder: java.lang.String relativeUrl -com.xw.repo.bubbleseekbar.R$styleable: int[] FontFamilyFont -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -com.google.android.material.R$styleable: int GradientColor_android_centerY -androidx.constraintlayout.widget.R$attr: int motionTarget -android.didikee.donate.R$color: int notification_icon_bg_color -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableStart -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getWindChillTemperature() -com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_id -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.R$bool: int config_materialPreferenceIconSpaceReserved -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedHeightMinor -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_constantSize -okio.ForwardingTimeout: boolean hasDeadline() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: long upDateTime -com.tencent.bugly.proguard.n: java.lang.String a(com.tencent.bugly.proguard.n) -com.jaredrummler.android.colorpicker.R$layout: int preference_list_fragment -com.google.android.material.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$layout: int mtrl_picker_actions -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModePasteDrawable -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.hilt.work.R$attr: int fontVariationSettings -wangdaye.com.geometricweather.R$array: int ui_styles -okhttp3.internal.http2.Http2Connection$PingRunnable: void execute() -com.google.android.material.R$styleable: int Chip_closeIcon -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: int phenomenoMaxColorId -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListPopupWindow -com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: MfHistoryResult$Position() -android.didikee.donate.R$drawable: int abc_ic_star_half_black_48dp -com.jaredrummler.android.colorpicker.R$string: int abc_menu_sym_shortcut_label -okio.Buffer$1: void write(int) -james.adaptiveicon.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_black -android.didikee.donate.R$styleable: int Toolbar_navigationIcon -com.tencent.bugly.crashreport.crash.c: boolean m -james.adaptiveicon.R$color: int dim_foreground_material_light -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getBootanimationThemePackageName() -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: int minuteInterval -cyanogenmod.app.BaseLiveLockManagerService: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -com.google.android.gms.base.R$styleable -androidx.recyclerview.R$styleable: int GradientColor_android_startY -wangdaye.com.geometricweather.R$drawable: int shortcuts_sleet -com.google.android.material.R$id: int circular -wangdaye.com.geometricweather.R$layout: int design_layout_tab_icon -androidx.coordinatorlayout.R$styleable: int[] GradientColor -retrofit2.Response: okhttp3.ResponseBody errorBody() -com.jaredrummler.android.colorpicker.R$dimen: R$dimen() -androidx.appcompat.R$styleable: int AppCompatTextView_fontFamily -com.amap.api.fence.DistrictItem: java.util.List d -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SeekBar -com.google.android.material.R$styleable: int AppCompatTheme_buttonStyle -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundTintList(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.github.rahatarmanahmed.cpv.BuildConfig: int VERSION_CODE -androidx.appcompat.widget.Toolbar: void setNavigationContentDescription(int) -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_elevation_material -wangdaye.com.geometricweather.common.basic.models.weather.History: long time -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.util.List _queryWeatherEntity_DailyEntityList(java.lang.String,java.lang.String) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_height_material -androidx.preference.R$attr: int textAppearancePopupMenuHeader -wangdaye.com.geometricweather.R$attr: int textLocale -wangdaye.com.geometricweather.R$layout: int widget_trend_daily -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_AppBarLayout -io.reactivex.Observable: io.reactivex.Observable take(long,java.util.concurrent.TimeUnit) -james.adaptiveicon.R$drawable: int abc_text_select_handle_left_mtrl_dark -com.turingtechnologies.materialscrollbar.R$bool: int mtrl_btn_textappearance_all_caps -wangdaye.com.geometricweather.R$styleable: int KeyCycle_motionProgress -androidx.preference.R$drawable: int abc_control_background_material -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_4 -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_toRightOf -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar -james.adaptiveicon.R$styleable: int Toolbar_navigationIcon -com.turingtechnologies.materialscrollbar.R$attr: int msb_recyclerView -com.google.android.material.button.MaterialButton: void setIconTintResource(int) -androidx.constraintlayout.widget.R$id: int chronometer -wangdaye.com.geometricweather.R$drawable: int material_ic_menu_arrow_up_black_24dp -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_clipToPadding -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void dispose() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldIndex(java.lang.Integer) -androidx.constraintlayout.widget.ConstraintLayout: int getMinWidth() -androidx.preference.R$style: int Base_Widget_AppCompat_ListMenuView -com.google.gson.FieldNamingPolicy$6: java.lang.String translateName(java.lang.reflect.Field) -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_HIGH -okhttp3.internal.Util$1: int compare(java.lang.String,java.lang.String) -com.xw.repo.bubbleseekbar.R$id: int start -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Date -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabText -com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.R$dimen: int design_fab_image_size -wangdaye.com.geometricweather.R$attr: int chipCornerRadius -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: android.os.IBinder asBinder() -androidx.work.R$styleable: int GradientColor_android_startY -com.google.android.material.R$attr: int maxImageSize -wangdaye.com.geometricweather.R$id: int test_checkbox_android_button_tint -com.google.android.material.R$attr: int textAppearanceCaption -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_framePosition -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String LocalizedName -wangdaye.com.geometricweather.R$styleable: int ClockHandView_selectorSize -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable NEVER -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean cancel(java.util.concurrent.atomic.AtomicReference) -cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_ENABLED -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle -com.tencent.bugly.crashreport.common.info.a: long p() -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickTintList() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_shapeAppearanceOverlay -wangdaye.com.geometricweather.R$string: int precipitation_overview -androidx.constraintlayout.widget.R$styleable: int StateListDrawableItem_android_drawable -androidx.constraintlayout.widget.R$styleable: int MenuItem_showAsAction -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_NoActionBar_Bridge -wangdaye.com.geometricweather.common.basic.models.weather.Base: long getUpdateTime() -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabTextStyle -wangdaye.com.geometricweather.R$id: int cpv_color_panel_view -com.jaredrummler.android.colorpicker.R$attr: int actionBarSplitStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setIcePrecipitation(java.lang.Float) -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property FormattedId -james.adaptiveicon.R$style: int Theme_AppCompat -androidx.appcompat.widget.ButtonBarLayout: int getMinimumHeight() -okhttp3.internal.http2.Hpack$Reader: java.util.List getAndResetHeaderList() -cyanogenmod.weatherservice.WeatherProviderService: android.os.Handler access$000(cyanogenmod.weatherservice.WeatherProviderService) -androidx.appcompat.R$style: int Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX getTemperature() -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry -wangdaye.com.geometricweather.R$styleable: int[] DrawerLayout -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric -androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: java.lang.String Unit -androidx.dynamicanimation.R$color: R$color() -wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_dot_group_animation -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeightSmall -androidx.appcompat.R$dimen: int notification_small_icon_background_padding -android.didikee.donate.R$dimen: int abc_text_size_body_1_material -androidx.constraintlayout.widget.R$styleable: int KeyCycle_framePosition -androidx.core.R$dimen: int compat_notification_large_icon_max_height -androidx.constraintlayout.widget.R$attr: int fontProviderCerts -androidx.loader.R$drawable: int notification_bg_low -james.adaptiveicon.R$style: int Base_Animation_AppCompat_Tooltip -com.google.android.material.R$id: int mtrl_calendar_year_selector_frame -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowDx -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String date +com.google.android.gms.common.server.response.zal: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_rotation +james.adaptiveicon.R$attr: int suggestionRowLayout +androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +android.didikee.donate.R$styleable: int Toolbar_titleTextColor +cyanogenmod.profiles.BrightnessSettings: boolean isOverride() +wangdaye.com.geometricweather.R$attr: int flow_maxElementsWrap +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer getDbz() +com.google.android.material.R$style: int Theme_MaterialComponents_Light_LargeTouch +okio.Buffer: java.util.List segmentSizes() +com.google.android.material.R$id: int transition_position +com.turingtechnologies.materialscrollbar.R$attr: int titleMargins +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: io.reactivex.processors.FlowableProcessor processor +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign +cyanogenmod.app.CMTelephonyManager: void setDataConnectionState(boolean) +androidx.appcompat.R$color: int abc_secondary_text_material_light +com.google.android.material.R$integer: int show_password_duration +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: boolean isDisposed() +androidx.appcompat.R$styleable: int MenuItem_android_title +com.turingtechnologies.materialscrollbar.R$attr: int itemIconPadding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.slider.BaseSlider: void setActiveThumbIndex(int) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +io.reactivex.Observable: io.reactivex.Observable buffer(int,int,java.util.concurrent.Callable) +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_NAME +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyBar +cyanogenmod.platform.R$xml: R$xml() +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Long getId() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.lang.String unit +androidx.constraintlayout.widget.R$color: R$color() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +wangdaye.com.geometricweather.R$string: int rain +okhttp3.Headers: Headers(java.lang.String[]) +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide +android.didikee.donate.R$drawable: int abc_text_select_handle_right_mtrl_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String pubTime +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type BASELINE +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: MfEphemerisResult$Properties$Ephemeris() +android.didikee.donate.R$attr: int color +androidx.appcompat.R$dimen: int abc_list_item_padding_horizontal_material +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_requestThemeChangeUpdates +androidx.constraintlayout.widget.Guideline: void setVisibility(int) +james.adaptiveicon.R$styleable: int SearchView_android_imeOptions +okio.Buffer: java.lang.String readUtf8Line() +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onComplete() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_control_background_material +okhttp3.internal.http2.Settings: void merge(okhttp3.internal.http2.Settings) +com.google.android.material.R$styleable: int Snackbar_snackbarButtonStyle +androidx.lifecycle.LifecycleRegistry$ObserverWithState +okhttp3.internal.http2.StreamResetException: StreamResetException(okhttp3.internal.http2.ErrorCode) +com.tencent.bugly.proguard.n: boolean b(int) +com.google.android.material.R$attr: int path_percent +com.turingtechnologies.materialscrollbar.R$attr: int homeLayout +com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_borderColor +com.google.android.material.textfield.TextInputLayout: void setStartIconVisible(boolean) +androidx.appcompat.R$styleable: int ActionBar_subtitleTextStyle +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context,android.util.AttributeSet,int) +okhttp3.internal.connection.StreamAllocation: okhttp3.EventListener eventListener +com.amap.api.location.DPoint: DPoint(double,double) +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline1 +james.adaptiveicon.R$attr: int colorAccent +androidx.preference.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: void providerDied() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void updateVisibility() +androidx.core.R$id: int action_image +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText +androidx.appcompat.R$styleable: int AlertDialog_listItemLayout +androidx.preference.R$string: int abc_menu_ctrl_shortcut_label +com.tencent.bugly.proguard.u: boolean c() +android.didikee.donate.R$drawable: int abc_switch_thumb_material +com.google.android.material.R$id: int textSpacerNoButtons +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: AccuCurrentResult$WetBulbTemperature() +com.baidu.location.e.h$b: com.baidu.location.e.h$b[] values() +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_button_material +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_DATAUSAGE +wangdaye.com.geometricweather.R$attr: int tabIndicator +com.amap.api.fence.PoiItem: java.lang.String j +com.google.android.material.R$attr: int wavePeriod +wangdaye.com.geometricweather.R$attr: int itemTextAppearanceInactive +wangdaye.com.geometricweather.R$attr: int textColorAlertDialogListItem +com.jaredrummler.android.colorpicker.R$id: int action_bar_subtitle +wangdaye.com.geometricweather.R$color: int switch_thumb_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_barThickness +androidx.appcompat.R$attr: int submitBackground +com.bumptech.glide.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.R$color: int notification_action_color_filter +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int[] CardView +androidx.preference.R$styleable: int AppCompatTheme_actionButtonStyle +com.turingtechnologies.materialscrollbar.R$drawable: int design_snackbar_background +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum Minimum +androidx.customview.R$styleable: int GradientColor_android_endY +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu +androidx.preference.R$attr: int collapseIcon +androidx.constraintlayout.widget.R$string: int abc_menu_meta_shortcut_label +wangdaye.com.geometricweather.R$layout: int cpv_preference_square +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean delayError +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Icon +com.xw.repo.bubbleseekbar.R$attr: int displayOptions +cyanogenmod.providers.CMSettings$DelimitedListValidator +com.amap.api.location.AMapLocation: java.lang.String d(com.amap.api.location.AMapLocation,java.lang.String) +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_tint +androidx.appcompat.R$anim: int abc_popup_exit +wangdaye.com.geometricweather.main.MainActivity: void onSearchBarClicked(android.view.View) +cyanogenmod.profiles.BrightnessSettings: void writeToParcel(android.os.Parcel,int) +james.adaptiveicon.R$styleable: int ColorStateListItem_android_alpha +androidx.activity.R$id: int icon +androidx.constraintlayout.widget.R$dimen: int compat_control_corner_material +retrofit2.http.POST: java.lang.String value() +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CUSTOM_ENABLE +cyanogenmod.app.Profile: java.util.UUID[] getSecondaryUuids() +com.google.android.material.R$anim: int abc_popup_exit +wangdaye.com.geometricweather.R$string: int material_minute_selection +androidx.preference.R$dimen: int compat_button_padding_horizontal_material com.google.android.gms.common.server.converter.StringToIntConverter: android.os.Parcelable$Creator CREATOR -okhttp3.CacheControl$Builder: boolean immutable -com.google.android.material.R$dimen: int mtrl_calendar_header_height -com.google.android.material.R$style: int Theme_AppCompat_Dialog_MinWidth -androidx.fragment.R$id: int accessibility_custom_action_7 -androidx.vectordrawable.animated.R$attr: int fontProviderFetchTimeout -android.didikee.donate.R$styleable: int PopupWindowBackgroundState_state_above_anchor -androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_1 -com.turingtechnologies.materialscrollbar.R$attr: int switchStyle -androidx.activity.R$attr: int fontProviderQuery -androidx.appcompat.widget.AppCompatSpinner: void setDropDownHorizontalOffset(int) -com.google.gson.stream.JsonWriter: void setSerializeNulls(boolean) -okhttp3.Interceptor$Chain: okhttp3.Response proceed(okhttp3.Request) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_16 -okio.Buffer: okio.ByteString sha512() -com.google.android.gms.location.LocationSettingsStates: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$styleable: int DrawerArrowToggle_spinBars -com.tencent.bugly.crashreport.common.info.a: java.util.Map F() -wangdaye.com.geometricweather.R$attr: int bsb_bubble_color -com.google.android.material.R$color: int material_slider_inactive_tick_marks_color -androidx.preference.R$attr: int preferenceFragmentCompatStyle -cyanogenmod.themes.IThemeChangeListener: void onFinish(boolean) -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean) -androidx.recyclerview.widget.RecyclerView$LayoutManager$Properties -wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_large_material -com.google.android.material.R$styleable: int Toolbar_contentInsetEndWithActions -wangdaye.com.geometricweather.R$drawable: int ic_grass -wangdaye.com.geometricweather.R$string: int content_des_sunrise -wangdaye.com.geometricweather.R$id: int deltaRelative -james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -cyanogenmod.app.LiveLockScreenInfo$Builder -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind wind -com.google.android.material.R$style: int Test_Theme_MaterialComponents_MaterialCalendar -james.adaptiveicon.R$styleable: int Toolbar_subtitleTextAppearance -androidx.appcompat.widget.AppCompatButton: android.content.res.ColorStateList getSupportCompoundDrawablesTintList() -cyanogenmod.profiles.LockSettings$1 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getShortDescription() -androidx.appcompat.R$id: int activity_chooser_view_content -androidx.appcompat.resources.R$color: int secondary_text_default_material_light -androidx.room.MultiInstanceInvalidationService -retrofit2.converter.gson.GsonRequestBodyConverter: java.lang.Object convert(java.lang.Object) -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.functions.Function mapper -com.xw.repo.bubbleseekbar.R$id -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -androidx.fragment.R$layout: int notification_action -android.didikee.donate.R$styleable: int AppCompatImageView_srcCompat -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setTitleText(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getNo2Color(android.content.Context) -com.google.android.material.navigation.NavigationView -okio.Timeout: boolean hasDeadline() -james.adaptiveicon.R$drawable: int abc_control_background_material -wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Counter -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int[] CheckBoxPreference -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: java.lang.String Unit -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: int getSourceColor() -com.tencent.bugly.proguard.y$a: long d -androidx.preference.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Determinate -com.google.android.material.R$style: int Base_Animation_AppCompat_Tooltip -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_minHideDelay -com.tencent.bugly.proguard.i: boolean a(int) -wangdaye.com.geometricweather.R$attr: int cardUseCompatPadding +com.jaredrummler.android.colorpicker.R$styleable: int ActionMenuItemView_android_minWidth +james.adaptiveicon.R$dimen: int abc_text_size_small_material +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_62 +com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean h +androidx.hilt.work.R$integer +androidx.vectordrawable.animated.R$id: int time +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: AccuCurrentResult$Past24HourTemperatureDeparture$Metric() +cyanogenmod.weather.WeatherInfo: int mWindSpeedUnit +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_MAX_INDEX +wangdaye.com.geometricweather.R$string: int abc_menu_meta_shortcut_label +com.google.android.material.R$attr: int progressIndicatorStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getUvDescription() +com.google.android.gms.auth.api.signin.internal.GoogleSignInOptionsExtensionParcelable: android.os.Parcelable$Creator CREATOR +androidx.preference.R$styleable: int ActionBar_contentInsetRight +okhttp3.internal.http2.Http2Reader: okhttp3.internal.http2.Http2Reader$ContinuationSource continuation +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton +wangdaye.com.geometricweather.R$styleable: int MenuView_android_windowAnimationStyle +androidx.loader.R$attr: int fontWeight +okhttp3.OkHttpClient$1: void apply(okhttp3.ConnectionSpec,javax.net.ssl.SSLSocket,boolean) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWeatherPhase +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: boolean done +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_profileExistsByName +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: SwipeRefreshLayout(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$styleable: int AppCompatTheme_controlBackground +wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_allowDividerAfterLastItem +androidx.appcompat.widget.Toolbar: void setTitle(int) +com.jaredrummler.android.colorpicker.R$layout: int preference_material +com.google.android.material.snackbar.SnackbarContentLayout: SnackbarContentLayout(android.content.Context) +com.turingtechnologies.materialscrollbar.R$attr: int arrowShaftLength +com.tencent.bugly.a: java.lang.String version +androidx.constraintlayout.widget.R$attr: int numericModifiers +com.google.android.material.R$id: int default_activity_button +com.jaredrummler.android.colorpicker.R$attr: int actionBarWidgetTheme +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mSoundMode +androidx.transition.R$id: int info +androidx.appcompat.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_toLeftOf +com.google.android.material.R$id: int baseline +com.google.android.material.R$styleable: int SearchView_android_imeOptions +com.tencent.bugly.BuglyStrategy: java.lang.String getAppChannel() +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +com.xw.repo.bubbleseekbar.R$attr: int layout +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: AccuDailyResult$DailyForecasts$Night$Ice() +androidx.transition.R$styleable: int GradientColor_android_endColor +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_27 +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableStart +androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_tint +androidx.loader.R$id: int notification_background +james.adaptiveicon.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +retrofit2.HttpServiceMethod +cyanogenmod.themes.ThemeChangeRequest$1: ThemeChangeRequest$1() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintDimensionRatio +com.turingtechnologies.materialscrollbar.R$attr: int switchPadding +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogStyle +android.didikee.donate.R$styleable: int MenuGroup_android_id +androidx.appcompat.R$anim: int abc_fade_in +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: ObservableTimeout$TimeoutConsumer(long,io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutSelectorSupport) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerValue(boolean,java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial +io.reactivex.Observable: io.reactivex.Observable fromArray(java.lang.Object[]) +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.util.concurrent.TimeUnit unit +cyanogenmod.themes.IThemeChangeListener$Stub: IThemeChangeListener$Stub() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitleTextColor +com.turingtechnologies.materialscrollbar.R$styleable: int[] LinearLayoutCompat +com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.a a() +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDefaultPhoneSub +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_COLOR +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitationProbability +com.google.android.material.R$attr: int bottomAppBarStyle +androidx.appcompat.widget.SearchView: void setImeOptions(int) +androidx.preference.R$attr: int layout_keyline +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX() +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_activated_mtrl_alpha +com.xw.repo.bubbleseekbar.R$color: int abc_tint_edittext +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status IDLE +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int) +com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String BUILD_TYPE +wangdaye.com.geometricweather.R$color: int material_grey_900 +androidx.dynamicanimation.R$styleable: int GradientColor_android_endY +androidx.customview.R$id: int tag_unhandled_key_event_manager +androidx.vectordrawable.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday() +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: AccuLocationResult$GeoPosition$Elevation() +okhttp3.internal.connection.RealConnection: boolean noNewStreams +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Listener listener +wangdaye.com.geometricweather.R$id: int action_about +androidx.legacy.coreutils.R$layout: int notification_action_tombstone +androidx.constraintlayout.widget.Placeholder: void setContentId(int) +com.google.android.material.R$style: int Widget_AppCompat_PopupMenu_Overflow +androidx.constraintlayout.widget.R$attr: int titleMarginTop +androidx.hilt.R$id: R$id() +wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_subtitle_keywords +com.google.android.material.R$styleable: int Constraint_android_layout_height +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +io.reactivex.internal.subscriptions.EmptySubscription: void complete(org.reactivestreams.Subscriber) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: java.util.concurrent.atomic.AtomicReference active +cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_WAKE_SCREEN +androidx.constraintlayout.widget.R$styleable: int Layout_constraint_referenced_ids +androidx.drawerlayout.R$id: int forever +okhttp3.OkHttpClient: okhttp3.Cache cache +com.google.android.material.R$attr: int coordinatorLayoutStyle +okhttp3.HttpUrl: java.lang.String PATH_SEGMENT_ENCODE_SET +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: double Value +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherCode +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline4 +wangdaye.com.geometricweather.R$attr: int contentInsetRight +wangdaye.com.geometricweather.R$styleable: int[] ColorStateListItem +james.adaptiveicon.R$attr: int buttonBarNegativeButtonStyle +androidx.appcompat.R$style: int Base_Theme_AppCompat_CompactMenu +james.adaptiveicon.R$id: int action_menu_presenter +com.bumptech.glide.integration.okhttp.R$layout: int notification_action_tombstone +androidx.preference.R$styleable: int GradientColor_android_startX +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +cyanogenmod.providers.CMSettings$Global: int getInt(android.content.ContentResolver,java.lang.String,int) +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: long serialVersionUID +retrofit2.KotlinExtensions$await$4$2: void onFailure(retrofit2.Call,java.lang.Throwable) +com.google.android.material.internal.NavigationMenuItemView: void setChecked(boolean) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.functions.Function mapper +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX() +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy SOURCE +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getSerialNumber +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_overflow_material +com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_default_thickness +james.adaptiveicon.R$dimen: int highlight_alpha_material_light +james.adaptiveicon.R$attr: int tickMark +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight +com.bumptech.glide.integration.okhttp.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Co +androidx.preference.R$attr: int toolbarStyle +wangdaye.com.geometricweather.R$string: int key_hide_subtitle +com.google.android.material.R$style: int ThemeOverlay_AppCompat +james.adaptiveicon.R$color: int primary_material_light +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_roundPercent +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_NORMAL +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitationDuration +com.google.android.material.R$style +okhttp3.Response$Builder: okhttp3.Response$Builder receivedResponseAtMillis(long) +okhttp3.internal.platform.Jdk9Platform: Jdk9Platform(java.lang.reflect.Method,java.lang.reflect.Method) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginLeft +com.google.android.gms.auth.api.signin.GoogleSignInOptions: android.os.Parcelable$Creator CREATOR +com.google.android.material.imageview.ShapeableImageView: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +com.tencent.bugly.crashreport.CrashReport: void setIsAppForeground(android.content.Context,boolean) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: long EpochTime +androidx.core.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$id: int barrier +androidx.preference.R$attr: int layout +com.jaredrummler.android.colorpicker.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +com.turingtechnologies.materialscrollbar.Indicator: void setTextColor(int) +android.didikee.donate.R$styleable: int AppCompatTextView_drawableEndCompat +okhttp3.internal.platform.Platform: void logCloseableLeak(java.lang.String,java.lang.Object) +com.google.android.material.R$id: int material_timepicker_cancel_button +cyanogenmod.themes.ThemeManager$1: cyanogenmod.themes.ThemeManager this$0 +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_handleColor +androidx.lifecycle.LiveData$LifecycleBoundObserver: LiveData$LifecycleBoundObserver(androidx.lifecycle.LiveData,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Observer) +android.support.v4.app.INotificationSideChannel$Stub$Proxy: void cancelAll(java.lang.String) +androidx.preference.R$id: int action_bar_subtitle +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +cyanogenmod.app.ProfileManager: java.lang.String ACTION_PROFILE_PICKER +com.xw.repo.bubbleseekbar.R$drawable: int abc_switch_track_mtrl_alpha +cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,android.content.ComponentName) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +com.tencent.bugly.crashreport.common.info.a: java.lang.Object az +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void dispose() +androidx.vectordrawable.R$styleable: int[] GradientColor +androidx.constraintlayout.widget.R$attr: int textColorAlertDialogListItem +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_creator +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onNext(java.lang.Object) +james.adaptiveicon.R$styleable: int AppCompatTheme_dividerHorizontal +com.google.android.material.R$id: int bounce +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorTextColor +wangdaye.com.geometricweather.R$attr: int singleLineTitle +com.tencent.bugly.proguard.ak: java.util.ArrayList z +wangdaye.com.geometricweather.R$id: int square +com.google.android.material.R$color: int abc_search_url_text_pressed +androidx.core.R$styleable: int FontFamilyFont_fontWeight +androidx.preference.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorPrimaryDark +okhttp3.internal.cache.CacheRequest +androidx.appcompat.widget.ActionBarContextView: void setTitleOptional(boolean) +io.reactivex.internal.subscribers.StrictSubscriber +androidx.lifecycle.LiveData: int mActiveCount +com.google.android.material.R$styleable: int Badge_badgeGravity +wangdaye.com.geometricweather.R$drawable: int ic_time +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType JPEG +com.xw.repo.bubbleseekbar.R$styleable: int[] GradientColor +androidx.dynamicanimation.R$dimen: int notification_right_side_padding_top +androidx.lifecycle.extensions.R$dimen +okhttp3.internal.connection.RealConnection: boolean isHealthy(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: java.lang.String Unit +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getRagweedLevel() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display4 +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_listItemLayout +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ShapeableImageView +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status PENDING +androidx.preference.R$style: int PreferenceThemeOverlay_v14_Material +james.adaptiveicon.R$attr: int textAllCaps +androidx.constraintlayout.widget.R$attr: int actionModeCloseDrawable +okio.Source: void close() +wangdaye.com.geometricweather.R$styleable: int MaterialCheckBox_buttonTint +androidx.preference.R$styleable: int EditTextPreference_useSimpleSummaryProvider +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status FAILED +com.tencent.bugly.proguard.ak: boolean u +androidx.loader.R$drawable: int notify_panel_notification_icon_bg +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderAuthority +james.adaptiveicon.R$attr: int colorPrimary +wangdaye.com.geometricweather.R$attr: int colorSecondary +com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_text_size +android.didikee.donate.R$attr: int autoCompleteTextViewStyle +com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Dialog +cyanogenmod.providers.CMSettings$Secure: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) +androidx.preference.R$style: int Preference_SwitchPreference +com.jaredrummler.android.colorpicker.R$attr: int colorControlHighlight +io.reactivex.internal.subscriptions.EmptySubscription: void clear() +androidx.viewpager.R$drawable: int notification_bg_low_pressed +com.google.android.material.textfield.TextInputLayout: void setEndIconVisible(boolean) +androidx.loader.R$id: int tag_unhandled_key_event_manager +androidx.appcompat.widget.FitWindowsFrameLayout: FitWindowsFrameLayout(android.content.Context) +androidx.appcompat.app.AlertController$RecycleListView: AlertController$RecycleListView(android.content.Context) +com.tencent.bugly.CrashModule: boolean d +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardCornerRadius +androidx.lifecycle.ViewModelStoreOwner: androidx.lifecycle.ViewModelStore getViewModelStore() +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.internal.connection.StreamAllocation streamAllocation() +com.turingtechnologies.materialscrollbar.R$style: int Animation_Design_BottomSheetDialog +wangdaye.com.geometricweather.main.dialogs.LocationPermissionStatementDialog: LocationPermissionStatementDialog() +retrofit2.Platform: retrofit2.Platform findPlatform() +com.bumptech.glide.R$id: int italic +wangdaye.com.geometricweather.R$styleable: int Slider_tickVisible +okhttp3.internal.http2.Hpack: int PREFIX_5_BITS +com.github.rahatarmanahmed.cpv.CircularProgressView: float getMaxProgress() +com.google.android.material.R$id: int material_clock_face +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String getValue() +androidx.swiperefreshlayout.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_Layout_layout_scrollFlags +retrofit2.ParameterHandler$PartMap: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.google.android.gms.common.internal.zax: zax(android.content.Context) +com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar_Colored +androidx.coordinatorlayout.R$id: int accessibility_custom_action_17 +com.xw.repo.bubbleseekbar.R$attr: int actionDropDownStyle +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Today +androidx.preference.R$attr: int autoSizePresetSizes +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_CompactMenu +cyanogenmod.weather.RequestInfo: int access$202(cyanogenmod.weather.RequestInfo,int) +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$attr: int flow_horizontalBias +retrofit2.converter.gson.GsonRequestBodyConverter: com.google.gson.TypeAdapter adapter +androidx.preference.R$color: int highlighted_text_material_light +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer bulletinCote +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: long serialVersionUID +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String getKey(wangdaye.com.geometricweather.db.entities.LocationEntity) +androidx.constraintlayout.widget.R$id: int percent +cyanogenmod.app.ICustomTileListener: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +cyanogenmod.app.ProfileGroup: android.net.Uri mSoundOverride +wangdaye.com.geometricweather.R$styleable: int MaterialAutoCompleteTextView_android_inputType +androidx.constraintlayout.widget.R$color: int material_blue_grey_900 +wangdaye.com.geometricweather.R$style: int spinner_item +androidx.preference.R$id: int fragment_container_view_tag +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void schedule() +wangdaye.com.geometricweather.remoteviews.config.Hilt_HourlyTrendWidgetConfigActivity: Hilt_HourlyTrendWidgetConfigActivity() +com.turingtechnologies.materialscrollbar.R$attr: int showText +android.didikee.donate.R$dimen: int abc_button_padding_horizontal_material +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.lang.Throwable error +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginTop +com.tencent.bugly.crashreport.biz.a: com.tencent.bugly.crashreport.biz.UserInfoBean a(android.database.Cursor) +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onStop() +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_position +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SearchView +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: boolean isDisposed() +james.adaptiveicon.R$styleable: int AppCompatTheme_tooltipFrameBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setModifyInHour(boolean) +okio.ForwardingSource: void close() +com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode Device_Sensors +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String ACTION_SET_ALARM_ENABLED +androidx.preference.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_xml +androidx.constraintlayout.widget.R$styleable: int[] AppCompatTheme +com.turingtechnologies.materialscrollbar.R$attr: int autoSizeMaxTextSize +james.adaptiveicon.R$color: int secondary_text_default_material_dark +okhttp3.internal.http1.Http1Codec$ChunkedSource: okhttp3.internal.http1.Http1Codec this$0 +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void dispose() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int status +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastVerticalStyle +com.xw.repo.bubbleseekbar.R$attr: int fontFamily +com.google.android.material.R$styleable: int ConstraintSet_android_scaleX +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassDescription +androidx.preference.R$id: int accessibility_custom_action_5 +com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context) +androidx.loader.R$styleable: int FontFamily_fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$attr: int backgroundSplit +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +com.google.android.gms.common.internal.DowngradeableSafeParcel +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) +cyanogenmod.providers.CMSettings$System: java.lang.String SWAP_VOLUME_KEYS_ON_ROTATION +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void subscribeNext() +com.google.android.material.R$attr: int contentDescription +androidx.fragment.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: java.lang.String unitAbbreviation +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +com.google.android.material.chip.Chip: void setChipEndPaddingResource(int) +androidx.appcompat.R$attr: int autoCompleteTextViewStyle +com.google.android.material.appbar.CollapsingToolbarLayout: void setTitle(java.lang.CharSequence) +com.turingtechnologies.materialscrollbar.R$attr: int windowActionBarOverlay +com.autonavi.aps.amapapi.model.AMapLocationServer: void c(java.lang.String) +com.google.gson.stream.JsonReader: void skipValue() +cyanogenmod.providers.DataUsageContract: java.lang.String ACTIVE +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context) +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Dialog +com.tencent.bugly.crashreport.crash.c: boolean l +com.google.android.material.R$color: int design_fab_stroke_top_inner_color +androidx.appcompat.R$attr: int listPreferredItemHeightSmall +cyanogenmod.externalviews.KeyguardExternalView: void setProviderComponent(android.content.ComponentName) +androidx.lifecycle.Lifecycling: int getObserverConstructorType(java.lang.Class) +wangdaye.com.geometricweather.R$anim: int x2_accelerate_interpolator +com.tencent.bugly.proguard.z: byte[] b(int,byte[],byte[]) +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableStartCompat +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicator(int) +android.didikee.donate.R$drawable: int abc_ic_star_half_black_16dp +cyanogenmod.weather.WeatherInfo: int hashCode() +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +androidx.legacy.coreutils.R$dimen: int notification_content_margin_start +cyanogenmod.app.CustomTile$ExpandedItem: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle[] values() +com.google.android.material.chip.Chip: void setTextAppearance(com.google.android.material.resources.TextAppearance) +androidx.hilt.lifecycle.R$id: int tag_accessibility_pane_title +wangdaye.com.geometricweather.R$string: int settings_title_alert_notification_switch +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +okhttp3.internal.ws.RealWebSocket: boolean awaitingPong +wangdaye.com.geometricweather.R$layout: int item_weather_daily_value +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getDescription() +androidx.appcompat.R$styleable: int MenuItem_android_alphabeticShortcut +okhttp3.internal.http2.Hpack$Reader: void readHeaders() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windSpeedGust +wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeDescription(java.lang.String) +com.google.android.material.R$style: int TextAppearance_AppCompat_SearchResult_Title +james.adaptiveicon.R$color: int tooltip_background_dark +androidx.transition.R$color: int notification_action_color_filter +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.R$color: int abc_tint_spinner +wangdaye.com.geometricweather.R$attr: int backgroundInsetStart +wangdaye.com.geometricweather.R$attr: int dependency +com.google.android.material.R$styleable: int AppCompatTheme_actionBarStyle +android.didikee.donate.R$id: int notification_main_column +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.RealConnection connection +androidx.appcompat.resources.R$color: R$color() +okio.BufferedSink: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) +com.tencent.bugly.proguard.u: boolean s +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String direct +james.adaptiveicon.R$dimen: int abc_dialog_fixed_width_minor +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_checkable +androidx.constraintlayout.widget.R$attr: int customStringValue +wangdaye.com.geometricweather.R$styleable: int Preference_enableCopying +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_1_00 +androidx.lifecycle.extensions.R$dimen: R$dimen() +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_background +wangdaye.com.geometricweather.R$color: int material_on_background_emphasis_high_type +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: java.util.concurrent.atomic.AtomicReference mSubscriber +com.turingtechnologies.materialscrollbar.R$attr: int bottomSheetDialogTheme +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog_Alert +cyanogenmod.profiles.ConnectionSettings$1: cyanogenmod.profiles.ConnectionSettings[] newArray(int) +cyanogenmod.externalviews.ExternalView$5: void run() +okhttp3.internal.connection.RouteSelector$Selection: okhttp3.Route next() +wangdaye.com.geometricweather.R$attr: int tickColorActive +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: ObservableRetryPredicate$RepeatObserver(io.reactivex.Observer,long,io.reactivex.functions.Predicate,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$color: int notification_background_rootDark +com.bumptech.glide.integration.okhttp.R$id: int notification_main_column_container +com.xw.repo.bubbleseekbar.R$styleable: int[] TextAppearance +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getIce() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SeekBar +com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthTextView +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.viewpager2.R$styleable: int FontFamilyFont_ttcIndex +androidx.constraintlayout.utils.widget.ImageFilterView: void setRound(float) +com.google.android.material.R$styleable: int AppCompatTheme_actionMenuTextColor +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Light +com.google.android.material.R$attr: int windowFixedWidthMinor +androidx.swiperefreshlayout.R$drawable: int notification_tile_bg +com.google.android.material.R$style: int Base_Widget_AppCompat_ImageButton +wangdaye.com.geometricweather.R$attr: int ttcIndex +okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 +com.turingtechnologies.materialscrollbar.R$string: int character_counter_content_description +com.turingtechnologies.materialscrollbar.R$attr: int msb_textColor +androidx.recyclerview.R$styleable: int RecyclerView_android_descendantFocusability +com.google.android.material.R$styleable: int AppCompatImageView_android_src +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Colored +androidx.vectordrawable.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +io.reactivex.internal.util.NotificationLite$DisposableNotification +androidx.viewpager.R$id: int notification_background +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderService$Stub mBinder +androidx.vectordrawable.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.AlertEntity,long) +com.xw.repo.bubbleseekbar.R$attr: int bsb_always_show_bubble_delay +wangdaye.com.geometricweather.settings.activities.SettingsActivity +okio.RealBufferedSource: long indexOf(okio.ByteString) +androidx.viewpager2.R$attr: int fastScrollVerticalThumbDrawable +wangdaye.com.geometricweather.R$styleable: int Spinner_popupTheme +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_descendantFocusability +androidx.loader.R$color +cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem(android.os.Parcel) +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Title +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver parent +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int READY +androidx.preference.R$styleable: int AppCompatTheme_listDividerAlertDialog +okio.RealBufferedSink: int write(java.nio.ByteBuffer) +com.github.rahatarmanahmed.cpv.CircularProgressView$6: void onAnimationUpdate(android.animation.ValueAnimator) +androidx.preference.R$styleable: int ActionBar_contentInsetLeft +okhttp3.EventListener: EventListener() +wangdaye.com.geometricweather.common.basic.models.weather.History: java.util.Date getDate() +androidx.appcompat.resources.R$attr: int font +android.didikee.donate.R$anim: int abc_popup_exit +androidx.appcompat.widget.AppCompatCheckBox: int getCompoundPaddingLeft() +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_light +com.google.android.material.R$attr: int drawableRightCompat +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +com.tencent.bugly.crashreport.common.info.a: java.lang.String k +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +androidx.preference.R$styleable: int AppCompatSeekBar_tickMarkTint +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderFetchStrategy +androidx.hilt.work.R$style: int Widget_Compat_NotificationActionText +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +com.tencent.bugly.proguard.aq: java.util.Map f +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteSelector routeSelector +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: long read(okio.Buffer,long) +androidx.recyclerview.R$id: int text +androidx.hilt.work.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setBottomText(java.lang.String) +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void data(boolean,int,okio.BufferedSource,int) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ButtonBar +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: boolean isDisposed() +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.Integer getAngle() +com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_android_alpha +okio.Buffer: okio.BufferedSink writeByte(int) +androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_width_material +com.google.android.material.appbar.ViewOffsetBehavior: ViewOffsetBehavior(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_brightness +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.R$styleable: int TextAppearance_android_textSize +james.adaptiveicon.R$attr: int switchPadding +androidx.customview.R$attr: int fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$dimen: int cardview_default_elevation +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: long serialVersionUID +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String Phrase +wangdaye.com.geometricweather.R$string: int abc_shareactionprovider_share_with_application +com.google.android.material.textfield.TextInputLayout: int getErrorCurrentTextColors() +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_track +okhttp3.internal.http2.Hpack$Reader: int headerTableSizeSetting +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean isDisposed() +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric Metric +com.google.android.material.R$styleable: int TabLayout_tabPadding +wangdaye.com.geometricweather.R$color: int colorSearchBarBackground_light +okio.SegmentedByteString: okio.ByteString hmacSha256(okio.ByteString) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_activityChooserViewStyle +wangdaye.com.geometricweather.R$id: int widget_week_icon_5 +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeColor +com.tencent.bugly.proguard.z: void a(android.os.Parcel,java.util.Map) +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DrawableWithAnimatedVisibilityChange getCurrentDrawable() +wangdaye.com.geometricweather.R$string: int key_live_wallpaper +com.amap.api.location.UmidtokenInfo$1 +com.tencent.bugly.crashreport.common.info.a: com.tencent.bugly.crashreport.common.info.a b() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowMinWidthMinor +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +androidx.work.R$styleable: int FontFamily_fontProviderFetchTimeout +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub +androidx.lifecycle.MediatorLiveData$Source: void onChanged(java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getAlertList() +james.adaptiveicon.R$styleable: int AppCompatTheme_colorPrimary +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String e +wangdaye.com.geometricweather.R$mipmap +io.reactivex.Observable: io.reactivex.Observable zipWith(java.lang.Iterable,io.reactivex.functions.BiFunction) +com.google.android.material.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +com.jaredrummler.android.colorpicker.ColorPreference +androidx.swiperefreshlayout.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption clone() +androidx.fragment.app.FragmentContainerView: void setDrawDisappearingViewsLast(boolean) +androidx.hilt.work.R$id: int accessibility_custom_action_24 +androidx.drawerlayout.R$styleable: int[] GradientColorItem +okhttp3.Challenge: Challenge(java.lang.String,java.util.Map) +cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_THEME_MANAGER +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState UNDEFINED +com.google.android.material.R$string: int mtrl_picker_a11y_prev_month +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String TAG +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_creator +androidx.appcompat.R$styleable: int SwitchCompat_switchTextAppearance +okio.DeflaterSink: okio.Timeout timeout() +com.google.android.material.R$id: int invisible +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_icon_width +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_default_mtrl_alpha +androidx.viewpager2.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: java.util.List value +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean done +androidx.lifecycle.Transformations$2$1: androidx.lifecycle.Transformations$2 this$0 +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String LocalizedType +cyanogenmod.app.CustomTile$ExpandedStyle: cyanogenmod.app.CustomTile$ExpandedItem[] getExpandedItems() +io.reactivex.internal.util.AtomicThrowable +androidx.constraintlayout.widget.R$attr: int clickAction +okhttp3.internal.ws.RealWebSocket: int receivedPingCount() +android.didikee.donate.R$color: int material_grey_800 +wangdaye.com.geometricweather.R$attr: int enableCopying +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: long EpochRise +com.google.android.material.stateful.ExtendableSavedState: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$id: int italic +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_Design_TabLayout +androidx.hilt.R$id: int accessibility_custom_action_31 +androidx.constraintlayout.widget.R$attr: int windowFixedHeightMinor +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: CompositeException$CompositeExceptionCausalChain() +retrofit2.Converter$Factory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +com.google.android.gms.base.R$id +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTemperature +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +cyanogenmod.themes.IThemeService$Stub$Proxy +io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator INSTANCE +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: boolean cancelled +androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_6 +wangdaye.com.geometricweather.R$styleable: int DialogPreference_positiveButtonText +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstHorizontalBias +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean isDisposed() +com.google.android.material.R$anim: int abc_slide_in_top +androidx.activity.R$id: R$id() +androidx.swiperefreshlayout.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode SYSTEM +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean getLiveLockScreenEnabled() +androidx.constraintlayout.widget.R$layout: int abc_screen_simple +wangdaye.com.geometricweather.db.entities.DailyEntity: DailyEntity() +wangdaye.com.geometricweather.R$id: int mtrl_view_tag_bottom_padding +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context,android.util.AttributeSet,int) +androidx.hilt.work.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.R$attr: int bsb_show_thumb_text +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: long serialVersionUID +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean done +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_order +com.github.rahatarmanahmed.cpv.CircularProgressView$4: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_anim_duration +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_android_indeterminate +com.turingtechnologies.materialscrollbar.R$attr: int isLightTheme +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_preserveIconSpacing +james.adaptiveicon.R$color: int highlighted_text_material_light +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setRootColor(int) +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_direction +okhttp3.internal.http1.Http1Codec$ChunkedSink: void flush() +com.turingtechnologies.materialscrollbar.R$id: int smallLabel +retrofit2.http.DELETE +james.adaptiveicon.R$styleable: int AppCompatTheme_viewInflaterClass +androidx.preference.R$color: int secondary_text_disabled_material_light +com.google.android.material.R$dimen: int design_bottom_navigation_margin +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider BAIDU_IP +com.bumptech.glide.load.engine.GlideException: void printStackTrace() +com.google.android.material.R$color: int material_on_primary_disabled +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: void onFinish(boolean) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger +com.amap.api.fence.DistrictItem: java.lang.String getDistrictName() +com.google.android.material.R$attr: int tabGravity +james.adaptiveicon.R$string: int abc_shareactionprovider_share_with +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_focused_z +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_Solid +okio.BufferedSink: okio.BufferedSink emitCompleteSegments() +android.didikee.donate.R$styleable: int AppCompatTheme_colorAccent +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconTint +com.amap.api.location.UmidtokenInfo: com.amap.api.location.AMapLocationClient a() +com.tencent.bugly.crashreport.crash.b: void a(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.tencent.bugly.crashreport.crash.CrashDetailBean) +okhttp3.OkHttpClient$Builder: java.util.List networkInterceptors() +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.util.AtomicThrowable errors +android.didikee.donate.R$attr: int actionModeSelectAllDrawable +wangdaye.com.geometricweather.R$attr: int itemRippleColor +com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_entries +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindChillTemperature(java.lang.Integer) +io.reactivex.internal.disposables.DisposableHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionButtonStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +cyanogenmod.profiles.BrightnessSettings: BrightnessSettings(android.os.Parcel) +com.xw.repo.bubbleseekbar.R$attr: int buttonGravity +okio.BufferedSource: long indexOf(okio.ByteString,long) wangdaye.com.geometricweather.R$string: int feedback_subtitle_data -com.tencent.bugly.proguard.o -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: AccuMinuteResult$SummariesBean() -cyanogenmod.weather.WeatherLocation: boolean equals(java.lang.Object) -android.didikee.donate.R$styleable: int ActionBar_subtitle -androidx.appcompat.widget.ContentFrameLayout -androidx.hilt.R$dimen: int notification_top_pad -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_popupWindowStyle -com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean yesterday -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle -wangdaye.com.geometricweather.R$attr: int singleChoiceItemLayout -com.xw.repo.bubbleseekbar.R$drawable: int abc_control_background_material -androidx.transition.R$dimen: int notification_action_icon_size -retrofit2.Invocation: java.lang.String toString() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HEAVY_SNOW -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_36dp -okio.Timeout$1: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.R$id: int widget_week_temp_2 -cyanogenmod.profiles.LockSettings: int getValue() -androidx.lifecycle.SavedStateHandle$SavingStateLiveData -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$attr: int showTitle -com.jaredrummler.android.colorpicker.R$style -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String weatherText -wangdaye.com.geometricweather.R$color: int background_material_light -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: retrofit2.Call $this_awaitResponse$inlined -com.google.android.material.R$style: int TextAppearance_Design_HelperText -android.didikee.donate.R$attr: int homeLayout -androidx.legacy.coreutils.R$style: int Widget_Compat_NotificationActionText -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_0 -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: java.util.Date Date -cyanogenmod.os.Build$CM_VERSION_CODES: int ELDERBERRY -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmPic2 -com.google.android.material.R$styleable: int Insets_paddingRightSystemWindowInsets -wangdaye.com.geometricweather.R$id: int textinput_error -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_entries -com.xw.repo.bubbleseekbar.R$attr: int keylines -wangdaye.com.geometricweather.R$styleable: int[] Tooltip -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sAlwaysTrueValidator +wangdaye.com.geometricweather.R$drawable: int weather_cloudy +androidx.hilt.lifecycle.R$id: int icon_group +com.google.android.material.transformation.TransformationChildCard: TransformationChildCard(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_doneBtn +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundTintMode +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeErrorColor +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy KEEP +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks mKeyguardExternalViewCallbacks +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context) +androidx.customview.R$styleable: int[] ColorStateListItem +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void open(java.lang.Object) +androidx.constraintlayout.widget.R$string: int abc_searchview_description_voice +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +wangdaye.com.geometricweather.R$attr: int font +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTypeface(android.graphics.Typeface) +androidx.core.R$id: int right_icon +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void setInteractivity(boolean) +wangdaye.com.geometricweather.background.polling.basic.ForegroundUpdateService +com.google.android.material.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$styleable: int TabLayout_tabIndicatorAnimationDuration +com.xw.repo.bubbleseekbar.R$attr: int trackTintMode +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_83 +cyanogenmod.app.CMContextConstants$Features: java.lang.String HARDWARE_ABSTRACTION +io.reactivex.internal.subscriptions.EmptySubscription: java.lang.Object poll() +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_FixedSize +wangdaye.com.geometricweather.R$id: int widget_day_week_card +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA +com.tencent.bugly.proguard.y$a: java.io.File a(com.tencent.bugly.proguard.y$a) +wangdaye.com.geometricweather.R$drawable: int notif_temp_57 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_android_windowAnimationStyle +com.turingtechnologies.materialscrollbar.R$attr: int collapsedTitleTextAppearance +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display2 +com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonTintMode +com.google.android.material.R$style: int TextAppearance_AppCompat_Display2 +com.amap.api.fence.GeoFence: long getEnterTime() +com.google.android.material.R$attr: int foregroundInsidePadding +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA +wangdaye.com.geometricweather.R$string: int action_settings +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMargins +androidx.preference.R$styleable: int PreferenceTheme_dropdownPreferenceStyle +androidx.preference.R$style: int Widget_AppCompat_ButtonBar +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver +com.turingtechnologies.materialscrollbar.R$attr: int tabSelectedTextColor +wangdaye.com.geometricweather.R$string: int settings_title_gravity_sensor_switch +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_prompt +androidx.viewpager2.R$styleable: int FontFamilyFont_fontWeight +com.turingtechnologies.materialscrollbar.R$id: int tag_unhandled_key_listeners +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarItemBackground +androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_tailColor +androidx.fragment.R$styleable: int FontFamilyFont_ttcIndex +com.turingtechnologies.materialscrollbar.R$id: int parent_matrix +com.github.rahatarmanahmed.cpv.CircularProgressView$8: CircularProgressView$8(com.github.rahatarmanahmed.cpv.CircularProgressView,float,float) +com.google.android.material.chip.Chip: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Caption +cyanogenmod.app.suggest.IAppSuggestProvider$Stub +com.google.android.gms.common.api.ApiException: int getStatusCode() +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.R$styleable: int[] TextInputLayout +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy UPPER_CAMEL_CASE_WITH_SPACES +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer relativeHumidityMax +androidx.appcompat.R$attr: int listChoiceBackgroundIndicator +androidx.constraintlayout.widget.R$drawable: int btn_checkbox_checked_mtrl +wangdaye.com.geometricweather.R$dimen: int test_mtrl_calendar_day_cornerSize +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.disposables.Disposable upstream +com.tencent.bugly.crashreport.crash.anr.b: long b +androidx.appcompat.R$attr: int actionBarTabTextStyle +io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_CONSUMED +androidx.customview.R$id +com.google.android.material.R$id: int dragEnd +com.google.android.material.bottomnavigation.BottomNavigationMenuView +androidx.constraintlayout.widget.R$attr: int thumbTextPadding +okhttp3.Headers$Builder: okhttp3.Headers$Builder removeAll(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_arrowHeadLength +android.didikee.donate.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_margin +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void clear() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String cityId +com.tencent.bugly.proguard.u: long o +androidx.appcompat.R$styleable: int GradientColor_android_endX +james.adaptiveicon.R$styleable: int ActionBar_navigationMode +androidx.lifecycle.ComputableLiveData: androidx.lifecycle.LiveData mLiveData +androidx.coordinatorlayout.widget.CoordinatorLayout: void setFitsSystemWindows(boolean) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver inner +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: boolean isDisposed() +com.google.android.material.R$attr: int thumbStrokeWidth +com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView +cyanogenmod.profiles.ConnectionSettings: java.lang.String ACTION_MODIFY_NETWORK_MODE +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: long timeout +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day Day +wangdaye.com.geometricweather.R$attr: int measureWithLargestChild +androidx.work.R$id: int accessibility_custom_action_17 +com.google.android.material.R$attr: int popupWindowStyle +io.reactivex.Observable: java.lang.Object blockingSingle(java.lang.Object) +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State valueOf(java.lang.String) +androidx.appcompat.widget.AppCompatImageView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.appcompat.R$style: int Widget_AppCompat_Light_ListView_DropDown +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWindLevel +com.google.android.material.R$attr: int autoSizeMaxTextSize +com.amap.api.fence.GeoFenceClient: void addGeoFence(com.amap.api.location.DPoint,float,java.lang.String) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +wangdaye.com.geometricweather.R$drawable: int live_wallpaper_thumbnail +wangdaye.com.geometricweather.R$id: int disablePostScroll +android.support.v4.app.INotificationSideChannel$Stub: INotificationSideChannel$Stub() +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_116 +com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_text_color +androidx.activity.R$layout: R$layout() +androidx.appcompat.R$id: int split_action_bar +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(long) +androidx.appcompat.widget.AppCompatButton: int[] getAutoSizeTextAvailableSizes() +com.turingtechnologies.materialscrollbar.R$id: int action_bar +cyanogenmod.app.StatusBarPanelCustomTile: int id +wangdaye.com.geometricweather.R$drawable: int mtrl_ic_cancel +wangdaye.com.geometricweather.R$attr: int actionMenuTextColor +okhttp3.internal.connection.StreamAllocation: boolean $assertionsDisabled +androidx.constraintlayout.widget.R$id: int tag_accessibility_actions +com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusBottomEnd +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_color +androidx.constraintlayout.widget.R$attr: int onCross +androidx.appcompat.R$styleable: int MenuView_android_itemBackground +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableTop +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: void setFrom(java.lang.String) +retrofit2.Retrofit$Builder: Retrofit$Builder() +wangdaye.com.geometricweather.R$dimen: int item_touch_helper_swipe_escape_velocity +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CITY +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +okhttp3.internal.http2.Http2Codec: java.util.List HTTP_2_SKIPPED_REQUEST_HEADERS +android.support.v4.app.INotificationSideChannel$Stub$Proxy: void notify(java.lang.String,int,java.lang.String,android.app.Notification) +android.didikee.donate.R$style: int Theme_AppCompat_Dialog_Alert +com.google.android.material.R$dimen: int tooltip_corner_radius +androidx.coordinatorlayout.widget.CoordinatorLayout$SavedState +androidx.appcompat.R$dimen: int abc_action_button_min_width_material +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.R$styleable: int Transition_motionInterpolator +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onNext(java.lang.Object) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1(androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription,long) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconTintMode +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_anchor +androidx.lifecycle.extensions.R$id: int right_icon +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderTextAppearance +com.turingtechnologies.materialscrollbar.R$layout: int abc_dialog_title_material +com.google.gson.internal.LinkedTreeMap: boolean containsKey(java.lang.Object) +wangdaye.com.geometricweather.R$string: int common_google_play_services_update_button +com.tencent.bugly.proguard.ao: void a(com.tencent.bugly.proguard.i) +wangdaye.com.geometricweather.R$attr: int tabInlineLabel +com.turingtechnologies.materialscrollbar.R$id: int textinput_helper_text +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent +com.jaredrummler.android.colorpicker.ColorPickerView +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitationProbability +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_22 +okhttp3.Cookie: boolean persistent +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler: void handleNativeException(int,int,long,long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,int,java.lang.String,java.lang.String) +androidx.preference.R$id: int submenuarrow +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: long serialVersionUID +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean disposed +androidx.transition.R$styleable: int GradientColorItem_android_offset +cyanogenmod.hardware.CMHardwareManager +android.didikee.donate.R$styleable: int AppCompatTheme_buttonStyle +com.jaredrummler.android.colorpicker.R$color: int accent_material_light +okhttp3.internal.ws.RealWebSocket: okhttp3.Call call +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getCOColor(android.content.Context) +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: void run() +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec CLEARTEXT +com.jaredrummler.android.colorpicker.R$attr: int cpv_alphaChannelVisible +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_baselineAligned +com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.themes.ThemeManager$2$1 +wangdaye.com.geometricweather.R$id: int src_atop +wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_text_padding_right +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog +wangdaye.com.geometricweather.R$dimen: int clock_face_margin_start +com.turingtechnologies.materialscrollbar.R$styleable: int ViewBackgroundHelper_backgroundTint +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeMinTextSize +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: java.lang.String toString() +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_id +androidx.appcompat.R$bool: int abc_config_actionMenuItemAllCaps +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: int UnitType +com.google.android.material.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindChillTemperature +com.google.android.material.R$style: int Widget_MaterialComponents_Badge +android.didikee.donate.R$styleable: int[] ViewBackgroundHelper +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorViewAlpha(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_SLOW_AVG +com.jaredrummler.android.colorpicker.R$id: int action_bar_root +okio.Okio$3: okio.Timeout timeout() +cyanogenmod.platform.Manifest$permission: java.lang.String READ_WEATHER +androidx.constraintlayout.widget.R$id: int autoCompleteToStart +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_icon +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_disabled +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox +wangdaye.com.geometricweather.R$layout: int select_dialog_item_material +com.google.android.material.chip.Chip: void setCloseIconEnabledResource(int) +io.reactivex.Observable: io.reactivex.Single toList() +androidx.dynamicanimation.R$id +androidx.preference.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setStatus(int) +james.adaptiveicon.R$id: int src_over +com.tencent.bugly.crashreport.crash.anr.a: a() +wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_container +okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallbackPossible(javax.net.ssl.SSLSocket) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.HourlyEntity) +androidx.viewpager.R$id: int line3 +com.google.android.material.R$attr: int labelVisibilityMode +com.amap.api.location.AMapLocation: java.lang.String b +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onKeyguardShowing(boolean) +cyanogenmod.app.Profile: void readTriggersFromXml(org.xmlpull.v1.XmlPullParser,android.content.Context,cyanogenmod.app.Profile) +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getTreeIndex() +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startColor +okhttp3.Response: long sentRequestAtMillis() +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Window_Fullscreen +okhttp3.Request$Builder: okhttp3.Request$Builder url(okhttp3.HttpUrl) +com.tencent.bugly.proguard.u: java.lang.Object e(com.tencent.bugly.proguard.u) +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: AMapLocationClientOption$AMapLocationProtocol(java.lang.String,int,int) +james.adaptiveicon.R$color: int switch_thumb_disabled_material_light +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: org.reactivestreams.Subscription upstream +androidx.drawerlayout.R$attr: int ttcIndex +androidx.transition.R$styleable: int FontFamilyFont_ttcIndex +com.google.android.material.R$styleable: int MenuItem_android_icon +androidx.lifecycle.extensions.R$attr: R$attr() +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_statusBarBackground +okhttp3.MultipartBody: okhttp3.MultipartBody$Part part(int) +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_item_max_width +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.util.AtomicThrowable errors +com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearance +james.adaptiveicon.R$color: int accent_material_dark +wangdaye.com.geometricweather.R$styleable: int[] Layout +android.didikee.donate.R$style: int Base_V7_Theme_AppCompat +androidx.lifecycle.ClassesInfoCache$MethodReference +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +androidx.appcompat.resources.R$id: int tag_accessibility_heading +android.didikee.donate.R$styleable: int ActionBar_contentInsetStart +androidx.hilt.lifecycle.R$styleable: int[] ColorStateListItem +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onComplete() +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableStart +okhttp3.Cache$CacheRequestImpl$1: okhttp3.Cache val$this$0 +com.google.android.material.R$dimen: int mtrl_btn_text_btn_padding_right +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_CELL +androidx.lifecycle.LifecycleRegistry$ObserverWithState: androidx.lifecycle.LifecycleEventObserver mLifecycleObserver +wangdaye.com.geometricweather.R$layout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String notice +com.amap.api.fence.PoiItem: java.lang.String getProvince() +cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener: void onWeatherRequestCompleted(int,cyanogenmod.weather.WeatherInfo) +com.google.android.material.slider.RangeSlider: void setThumbElevationResource(int) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.Long id +wangdaye.com.geometricweather.R$id: int slide +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_counter_margin_start +com.amap.api.fence.GeoFence: void setPointList(java.util.List) +okhttp3.internal.http.HttpCodec: void finishRequest() +com.google.android.material.R$styleable: int DrawerArrowToggle_arrowHeadLength +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Caption +wangdaye.com.geometricweather.R$drawable: int notif_temp_27 +androidx.constraintlayout.widget.R$id: int decelerateAndComplete +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabView +okhttp3.internal.cache.DiskLruCache: boolean journalRebuildRequired() +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: long serialVersionUID +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_FULL +wangdaye.com.geometricweather.R$string: int key_forecast_tomorrow +androidx.vectordrawable.R$string: int status_bar_notification_info_overflow +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: boolean val$clearPrevious +androidx.appcompat.R$attr: int lastBaselineToBottomHeight +androidx.viewpager2.R$styleable: int FontFamily_fontProviderAuthority +androidx.legacy.coreutils.R$id +wangdaye.com.geometricweather.db.entities.AlertEntity: long getAlertId() +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_windowAnimationStyle +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataContainer +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getSnow() +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit[] values() +com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_toLeftOf +androidx.constraintlayout.widget.R$color: int abc_search_url_text +wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: double Value +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String weatherText +com.google.android.material.R$attr: int fontWeight +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: boolean mWasExecuted +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +androidx.customview.R$style: int TextAppearance_Compat_Notification_Info +okio.ForwardingTimeout: long deadlineNanoTime() +io.reactivex.Observable: int bufferSize() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_105 +okhttp3.Cache$CacheResponseBody: okio.BufferedSource source() +cyanogenmod.providers.CMSettings$Global: java.lang.String WIFI_AUTO_PRIORITIES_CONFIGURATION +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.R$drawable: int notif_temp_46 +com.google.android.material.textfield.TextInputLayout: int getEndIconMode() +com.google.android.material.R$id: int spread_inside +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_left_mtrl_dark +androidx.preference.R$attr: int defaultValue +android.didikee.donate.R$styleable: int LinearLayoutCompat_divider +androidx.preference.R$id: int unchecked +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_gradientRadius +okhttp3.CacheControl: boolean noCache +wangdaye.com.geometricweather.location.services.LocationService: android.app.Notification getLocationNotification(android.content.Context) +cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_background_corner_radius +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.Date pubTime +james.adaptiveicon.R$styleable: int ActionBar_popupTheme +androidx.constraintlayout.widget.R$attr: int buttonBarNegativeButtonStyle +com.tencent.bugly.crashreport.common.info.a: java.lang.String p +androidx.legacy.coreutils.R$id: int notification_background +androidx.dynamicanimation.R$id: int text +wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_alpha +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginBottom +cyanogenmod.externalviews.KeyguardExternalView: void registerOnWindowAttachmentChangedListener(cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener) +com.jaredrummler.android.colorpicker.R$attr: int isPreferenceVisible +james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties: MfEphemerisResult$Properties() +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_checkableBehavior +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Colored +androidx.loader.R$layout: int notification_template_icon_group +com.amap.api.location.CoordinateConverter: CoordinateConverter(android.content.Context) +wangdaye.com.geometricweather.R$string: int hours_of_sun +com.google.android.material.R$dimen: int mtrl_slider_track_top +com.google.android.material.slider.BaseSlider$SliderState: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$attr: int actionModePopupWindowStyle +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit valueOf(java.lang.String) +androidx.appcompat.R$dimen: R$dimen() +okhttp3.Challenge: java.lang.String scheme() +androidx.preference.internal.PreferenceImageView: int getMaxHeight() +android.didikee.donate.R$id: int normal +okio.Okio$4 +cyanogenmod.weather.WeatherInfo: double access$802(cyanogenmod.weather.WeatherInfo,double) +okio.BufferedSource: byte[] readByteArray() +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String WALLPAPER_URI +com.google.android.material.R$attr: int multiChoiceItemLayout +com.turingtechnologies.materialscrollbar.R$string: int fab_transformation_sheet_behavior +cyanogenmod.providers.CMSettings$System: boolean putFloat(android.content.ContentResolver,java.lang.String,float) +okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,byte[]) +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_width_minor +com.google.android.material.R$dimen: int design_navigation_padding_bottom +com.tencent.bugly.crashreport.biz.b: java.lang.String a(java.lang.String,java.lang.String) +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: AppCompatMultiAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) +retrofit2.RequestBuilder: java.lang.String canonicalizeForPath(java.lang.String,boolean) +okhttp3.internal.connection.RealConnection: void connectTunnel(int,int,int,okhttp3.Call,okhttp3.EventListener) +james.adaptiveicon.R$color: int primary_text_disabled_material_light +wangdaye.com.geometricweather.R$styleable: int Preference_android_icon +okhttp3.Response$Builder: long receivedResponseAtMillis +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitationDuration() +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline2 +wangdaye.com.geometricweather.R$layout: int test_toolbar_surface +okhttp3.internal.ws.WebSocketWriter: byte[] maskKey +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: int Degrees +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +wangdaye.com.geometricweather.R$attr: int submitBackground +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: long serialVersionUID +okhttp3.Cookie: java.lang.String path +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_36dp +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setStatus(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: double Value +com.turingtechnologies.materialscrollbar.R$anim: int design_bottom_sheet_slide_in +org.greenrobot.greendao.AbstractDao: void deleteByKeyInTx(java.lang.Object[]) +com.google.android.material.R$dimen: int abc_search_view_preferred_width +com.google.android.material.R$styleable: int[] MaterialToolbar +androidx.hilt.lifecycle.R$string: R$string() +cyanogenmod.profiles.BrightnessSettings: boolean isDirty() +com.jaredrummler.android.colorpicker.R$anim: int abc_slide_out_bottom +wangdaye.com.geometricweather.R$layout: int item_weather_icon_title +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderQuery +cyanogenmod.platform.R$drawable: R$drawable() +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_textOff +com.google.android.material.R$attr: int waveShape +wangdaye.com.geometricweather.R$color: int cardview_shadow_end_color +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void subscribe(io.reactivex.ObservableSource[],int) +wangdaye.com.geometricweather.R$attr: int navigationIconColor +wangdaye.com.geometricweather.R$layout: int activity_daily_trend_display_manage +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.legacy.coreutils.R$id: int title +james.adaptiveicon.R$dimen: int abc_dialog_min_width_minor +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_gravity +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_android_textAppearance +androidx.swiperefreshlayout.R$drawable: int notification_bg_low +android.didikee.donate.R$integer: int abc_config_activityDefaultDur +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX info +com.xw.repo.bubbleseekbar.R$string: int abc_toolbar_collapse_description +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_background +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_12 +androidx.appcompat.R$attr: int listPreferredItemPaddingLeft +androidx.appcompat.R$styleable: int AppCompatTheme_windowActionBar +com.jaredrummler.android.colorpicker.R$attr: int height +androidx.appcompat.R$style: int Base_V28_Theme_AppCompat +com.jaredrummler.android.colorpicker.R$string: int v7_preference_off +com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_end_outer_color +androidx.viewpager2.R$id: int text +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: long getTime() +io.reactivex.internal.util.NotificationLite$ErrorNotification +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void signalConsumer() +com.google.android.material.R$attr: int layout_constraintLeft_toLeftOf +cyanogenmod.externalviews.KeyguardExternalView: void onScreenTurnedOn() +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_MENU_LONG_PRESS_ACTION +wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogMessage +androidx.appcompat.R$style: int TextAppearance_AppCompat_Display3 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +androidx.preference.R$drawable: int abc_btn_check_material_anim +com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextStyle +androidx.hilt.work.R$id: int accessibility_custom_action_17 +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int limit +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_checked +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CONDITION +com.google.android.material.R$style: int TextAppearance_Design_Prefix +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_LOW_POWER_VALIDATOR +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_4 +androidx.viewpager2.R$id +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_top_padding +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_measureWithLargestChild +com.tencent.bugly.crashreport.common.info.b: java.lang.String f(android.content.Context) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onSubscribe(org.reactivestreams.Subscription) +okhttp3.HttpUrl: char[] HEX_DIGITS +com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableTransition +cyanogenmod.app.CustomTile$Builder: android.content.Intent mOnSettingsClick +io.reactivex.subjects.PublishSubject$PublishDisposable: void onComplete() +com.xw.repo.bubbleseekbar.R$id: int search_voice_btn +wangdaye.com.geometricweather.R$id: int touch_outside +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginEnd(int) +com.jaredrummler.android.colorpicker.R$dimen: int abc_switch_padding +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitationProbability +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline +androidx.constraintlayout.widget.R$id: int layout +wangdaye.com.geometricweather.R$id: int material_clock_period_am_button +androidx.preference.R$styleable: int AppCompatTheme_actionBarTabStyle +okhttp3.internal.http.StatusLine: java.lang.String toString() +cyanogenmod.app.CustomTile$ExpandedStyle: void setBuilder(cyanogenmod.app.CustomTile$Builder) +androidx.constraintlayout.widget.R$id: int tag_unhandled_key_listeners +okhttp3.internal.http2.Http2: byte TYPE_CONTINUATION +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_NIGHT_VALIDATOR +com.google.android.material.R$layout: int mtrl_calendar_month_navigation +androidx.recyclerview.widget.StaggeredGridLayoutManager$SavedState +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getHour(android.content.Context) +wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newDevSession(android.content.Context,java.lang.String) +com.xw.repo.bubbleseekbar.R$id: int listMode +cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getProfile(android.os.ParcelUuid) +androidx.viewpager2.R$styleable: int GradientColor_android_type +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +androidx.fragment.R$layout: int notification_template_icon_group +james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Dialog +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +android.didikee.donate.R$styleable: int SearchView_searchHintIcon +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_FORWARD_LOOKUP_VALIDATOR +com.tencent.bugly.proguard.l: boolean a(boolean,boolean) +androidx.lifecycle.LifecycleRegistry$ObserverWithState: void dispatchEvent(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +com.bumptech.glide.R$id: int tag_unhandled_key_event_manager +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionBarOverlay +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabBarStyle +androidx.constraintlayout.widget.R$drawable: int btn_radio_off_to_on_mtrl_animation +wangdaye.com.geometricweather.R$id: int showTitle +com.tencent.bugly.crashreport.crash.h5.a: java.lang.String f +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +androidx.preference.R$attr: int coordinatorLayoutStyle +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: java.lang.String Name +com.amap.api.location.AMapLocation: boolean A +cyanogenmod.app.Profile$TriggerType: int BLUETOOTH +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$color: int colorLevel_4 +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Color +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Headline +com.google.android.material.R$string: int mtrl_picker_text_input_date_hint +io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable INSTANCE +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Info +com.google.android.material.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_tooltipText +com.google.gson.internal.LazilyParsedNumber: long longValue() +okio.Okio$1 +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_THUNDERSTORMS +android.didikee.donate.R$attr: int contentInsetLeft +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_summaryOff +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomAppBar wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial Imperial -androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat_Light -androidx.appcompat.R$styleable: int MenuGroup_android_visible -wangdaye.com.geometricweather.R$attr: int navigationIcon -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_borderless_material -com.turingtechnologies.materialscrollbar.R$styleable: int[] ListPopupWindow -com.xw.repo.bubbleseekbar.R$style: int Base_DialogWindowTitle_AppCompat -cyanogenmod.providers.ThemesContract: java.lang.String AUTHORITY -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PKG_NAME -com.turingtechnologies.materialscrollbar.R$dimen: int disabled_alpha_material_light -com.amap.api.fence.GeoFence: int describeContents() -com.google.android.material.R$id: int checkbox -android.didikee.donate.R$styleable: int AppCompatTheme_windowActionModeOverlay -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowNoTitle -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat -wangdaye.com.geometricweather.R$string: int restart -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onDetach() -wangdaye.com.geometricweather.R$dimen: int material_font_1_3_box_collapsed_padding_top -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer dbz -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_padding_start_material -androidx.work.Worker: Worker(android.content.Context,androidx.work.WorkerParameters) -com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_close_icon_tint -com.google.android.material.R$styleable: int ActionBar_backgroundSplit +com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorCornerRadius() +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_percent +androidx.appcompat.R$drawable: int abc_list_pressed_holo_dark +androidx.activity.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.db.entities.HourlyEntity: boolean getDaylight() +com.google.android.material.R$attr: int layout_constraintRight_creator +cyanogenmod.app.suggest.ApplicationSuggestion: int describeContents() +android.didikee.donate.R$styleable: int Toolbar_collapseIcon +com.google.android.gms.base.R$styleable: int SignInButton_colorScheme +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginBottom +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: java.lang.Object[] latest +cyanogenmod.app.IProfileManager: void updateNotificationGroup(android.app.NotificationGroup) +androidx.constraintlayout.widget.R$styleable: int Variant_constraints +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: void soNext(io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode) +com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextInputLayout +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String K +com.bumptech.glide.R$id: int line1 +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean address_detail +androidx.vectordrawable.animated.R$dimen: int compat_button_padding_vertical_material +androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.recyclerview.R$styleable: int GradientColor_android_tileMode +com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetEnd +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String getFrom() +wangdaye.com.geometricweather.R$drawable: int abc_vector_test +cyanogenmod.weather.CMWeatherManager: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener) +android.didikee.donate.R$string: int abc_toolbar_collapse_description +com.google.android.material.R$style: int Base_Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.R$id: int notification_big_week_5 +com.amap.api.location.AMapLocation: void setBuildingId(java.lang.String) +android.didikee.donate.R$drawable: int abc_ic_ab_back_material +androidx.viewpager.R$styleable: int ColorStateListItem_android_alpha +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler +androidx.preference.R$styleable: int MenuView_subMenuArrow +io.reactivex.internal.observers.DeferredScalarDisposable: int requestFusion(int) +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_overflow_padding_end_material com.google.android.material.R$attr: int windowActionBarOverlay -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose Sport +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTheme +androidx.viewpager.R$attr: int ttcIndex +com.tencent.bugly.crashreport.common.info.a: boolean e +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextColor +wangdaye.com.geometricweather.R$string: int settings_title_forecast_tomorrow_time +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Time +cyanogenmod.providers.CMSettings$System: java.lang.String HEADSET_CONNECT_PLAYER +androidx.appcompat.R$styleable: int AppCompatTheme_popupMenuStyle +androidx.preference.R$styleable: int CompoundButton_buttonCompat +com.xw.repo.bubbleseekbar.R$attr: int searchHintIcon +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: int UnitType +androidx.coordinatorlayout.R$id: int line3 +okhttp3.internal.http2.Http2Codec: Http2Codec(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http2.Http2Connection) +androidx.preference.R$styleable: int[] MultiSelectListPreference +androidx.coordinatorlayout.R$integer: R$integer() +com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_end_inner_color +cyanogenmod.profiles.BrightnessSettings: int describeContents() +retrofit2.HttpServiceMethod: retrofit2.Converter responseConverter +wangdaye.com.geometricweather.R$string: int settings_title_notification_style +com.google.android.material.chip.Chip: void setChipIconEnabled(boolean) +androidx.appcompat.R$drawable: int abc_scrubber_control_off_mtrl_alpha +okhttp3.internal.cache2.Relay: okhttp3.internal.cache2.Relay read(java.io.File) +com.google.android.material.circularreveal.CircularRevealRelativeLayout: CircularRevealRelativeLayout(android.content.Context) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorBackgroundFloating +androidx.appcompat.R$attr: int alphabeticModifiers +james.adaptiveicon.R$style: int Widget_AppCompat_ButtonBar +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActivityChooserView +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: CallEnqueueObservable$CallCallback(retrofit2.Call,io.reactivex.Observer) +androidx.customview.R$styleable: int FontFamilyFont_android_font +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1 +wangdaye.com.geometricweather.R$layout: int widget_clock_day_mini +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_WIFI_INFO +androidx.constraintlayout.widget.R$attr: int layout_constraintEnd_toStartOf +com.tencent.bugly.proguard.y: java.text.SimpleDateFormat b +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitationProbability +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List forecasts +androidx.preference.internal.PreferenceImageView: void setMaxHeight(int) +com.google.android.material.R$style: int Base_Widget_AppCompat_ButtonBar +okhttp3.CacheControl$Builder: okhttp3.CacheControl build() +okhttp3.Cache$1: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) +androidx.lifecycle.SavedStateHandle: SavedStateHandle() +com.google.android.material.R$style: int Widget_MaterialComponents_ShapeableImageView +com.google.android.material.R$styleable: int Constraint_flow_horizontalGap +androidx.constraintlayout.widget.R$styleable +wangdaye.com.geometricweather.R$string: int forecast +androidx.hilt.work.R$styleable: int FontFamilyFont_font +com.google.android.gms.dynamic.RemoteCreator$RemoteCreatorException: RemoteCreator$RemoteCreatorException(java.lang.String,java.lang.Throwable) +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) +com.google.android.material.tabs.TabLayout: void setTabGravity(int) +androidx.preference.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem +android.didikee.donate.R$anim: int abc_slide_out_bottom +wangdaye.com.geometricweather.R$dimen: int design_tab_text_size +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.R$string: int key_notification_custom_color +androidx.preference.R$id: int search_src_text +com.xw.repo.bubbleseekbar.R$attr: int listItemLayout +wangdaye.com.geometricweather.R$color: int abc_tint_switch_track +androidx.appcompat.R$styleable: int AppCompatTheme_actionMenuTextAppearance +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getShortDate(android.content.Context) +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: int count +com.turingtechnologies.materialscrollbar.R$attr: int submitBackground +wangdaye.com.geometricweather.R$attr: int actionTextColorAlpha +retrofit2.Retrofit: retrofit2.CallAdapter nextCallAdapter(retrofit2.CallAdapter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[]) +wangdaye.com.geometricweather.R$string: int sp_widget_multi_city +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorAnimationDuration +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_titleCondensed +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.constraintlayout.widget.R$id: int SHOW_ALL +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_DropDownItem_Spinner +androidx.preference.R$styleable: int StateListDrawable_android_exitFadeDuration +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline6 +com.google.android.material.R$styleable: int Chip_checkedIconEnabled +cyanogenmod.providers.CMSettings$Secure: int getIntForUser(android.content.ContentResolver,java.lang.String,int) +androidx.preference.R$id: int search_voice_btn +com.jaredrummler.android.colorpicker.R$attr: int contentInsetEnd +com.tencent.bugly.CrashModule: void init(android.content.Context,boolean,com.tencent.bugly.BuglyStrategy) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setCity(java.lang.String) +okio.ByteString: boolean endsWith(byte[]) +com.turingtechnologies.materialscrollbar.R$attr: int actionModeCloseDrawable +wangdaye.com.geometricweather.R$attr: int gapBetweenBars +androidx.preference.R$attr: int allowDividerAfterLastItem +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Button +androidx.constraintlayout.widget.R$styleable: int KeyCycle_transitionPathRotate +android.didikee.donate.R$attr: R$attr() +androidx.dynamicanimation.R$style: R$style() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: int type +androidx.appcompat.R$style: int Widget_AppCompat_DrawerArrowToggle +androidx.constraintlayout.widget.R$attr: int percentX +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onLockscreenSlideOffsetChanged(float) +okhttp3.internal.Util$1: int compare(java.lang.Object,java.lang.Object) +okhttp3.internal.ws.RealWebSocket$2: void onResponse(okhttp3.Call,okhttp3.Response) +com.bumptech.glide.R$attr: int layout_behavior +androidx.fragment.R$id: int accessibility_custom_action_27 +com.turingtechnologies.materialscrollbar.R$attr: int colorAccent +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.R$attr: int expandedTitleMarginEnd +com.google.android.material.R$style: int TextAppearance_AppCompat_Large +com.amap.api.location.DPoint: double getLongitude() +okio.HashingSink: okio.HashingSink hmacSha256(okio.Sink,okio.ByteString) +androidx.lifecycle.ClassesInfoCache$CallbackInfo: void invokeMethodsForEvent(java.util.List,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) +androidx.appcompat.R$color: int abc_btn_colored_borderless_text_material +android.didikee.donate.R$id: int icon +androidx.preference.R$color: int notification_action_color_filter +androidx.appcompat.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +com.tencent.bugly.proguard.s: byte[] b(java.net.HttpURLConnection) +com.google.android.material.R$styleable: int Snackbar_snackbarTextViewStyle +androidx.constraintlayout.widget.R$id: int screen +androidx.lifecycle.extensions.R$drawable: int notification_bg_low +androidx.constraintlayout.widget.R$id: int src_over +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_section_text +io.reactivex.internal.disposables.CancellableDisposable: CancellableDisposable(io.reactivex.functions.Cancellable) +retrofit2.RequestFactory$Builder: java.lang.annotation.Annotation[][] parameterAnnotationsArray +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_statusBarBackground +androidx.dynamicanimation.R$styleable: int GradientColor_android_gradientRadius +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getTag() +androidx.constraintlayout.widget.R$id: int blocking +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric Metric +androidx.hilt.lifecycle.R$id: int tag_accessibility_clickable_spans +com.jaredrummler.android.colorpicker.R$attr: int actionButtonStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer clouds +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: boolean isDisposed() +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_menu_layout +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastHorizontalStyle +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setScrollBarHidden(boolean) +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult +com.tencent.bugly.proguard.r: java.lang.String f +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setSubState(int,boolean) +com.xw.repo.bubbleseekbar.R$id: int checkbox +wangdaye.com.geometricweather.R$color: int design_default_color_on_surface +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HAZE +androidx.constraintlayout.widget.R$attr: int touchRegionId +io.reactivex.internal.util.NotificationLite: java.lang.Throwable getError(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$id: int coordinator +android.didikee.donate.R$styleable: int[] ActivityChooserView +androidx.coordinatorlayout.R$attr +androidx.recyclerview.R$id: int accessibility_custom_action_8 +wangdaye.com.geometricweather.R$attr: int itemTextAppearanceActive +com.amap.api.fence.PoiItem: PoiItem(android.os.Parcel) +androidx.cardview.widget.CardView: void setCardBackgroundColor(android.content.res.ColorStateList) +okio.HashingSink: okio.HashingSink sha1(okio.Sink) +okhttp3.internal.http2.Header: Header(okio.ByteString,okio.ByteString) +androidx.loader.R$attr: int fontProviderFetchStrategy +com.google.gson.internal.LazilyParsedNumber: int intValue() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean) +com.tencent.bugly.proguard.s: com.tencent.bugly.proguard.s a(android.content.Context) +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit PERCENT +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float icePrecipitationProbability +com.google.android.material.R$string: int mtrl_picker_date_header_selected +androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_2_material +androidx.appcompat.R$styleable: int[] AppCompatTheme +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean unRegisterThermalListener(cyanogenmod.hardware.IThermalListenerCallback) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textSize +cyanogenmod.weather.CMWeatherManager$2$1 +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu +wangdaye.com.geometricweather.R$styleable: int[] CustomAttribute +androidx.legacy.coreutils.R$attr: int fontProviderQuery +james.adaptiveicon.R$attr: int autoSizePresetSizes +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: java.lang.Object v2 +com.tencent.bugly.crashreport.biz.UserInfoBean: long g +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endX +com.google.android.material.R$attr: int overlapAnchor +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startY +android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +androidx.constraintlayout.widget.R$attr: int keyPositionType +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Type +james.adaptiveicon.R$drawable: int abc_ic_star_black_36dp +com.jaredrummler.android.colorpicker.R$attr: int layout_anchor +com.google.android.material.R$styleable: int MaterialCalendar_dayTodayStyle +androidx.constraintlayout.widget.R$layout +okio.Buffer: okio.Buffer write(byte[],int,int) +wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_divider +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdp +android.didikee.donate.R$id: int action_bar_root +androidx.constraintlayout.widget.R$attr: int deltaPolarRadius +androidx.swiperefreshlayout.R$id: int line3 +com.turingtechnologies.materialscrollbar.R$color: int design_default_color_primary +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setHumidity(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean) +androidx.constraintlayout.widget.R$attr: int textColorSearchUrl +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric +com.jaredrummler.android.colorpicker.R$id: int icon +james.adaptiveicon.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_content_inset_with_nav +wangdaye.com.geometricweather.R$id: int linear +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_searchHintIcon +com.google.android.material.R$style: int TextAppearance_Compat_Notification_Time +com.jaredrummler.android.colorpicker.R$id: int action_menu_presenter +androidx.hilt.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$color: int mtrl_scrim_color +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int shortcuts_hail_foreground +android.didikee.donate.R$style: int Base_Widget_AppCompat_EditText +androidx.preference.R$styleable: int PreferenceGroup_initialExpandedChildrenCount +okhttp3.internal.http2.Http2Connection: void writeWindowUpdateLater(int,long) +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getStrokeColor() +com.google.android.material.R$style: int Animation_AppCompat_Tooltip +androidx.appcompat.R$styleable: int AppCompatTheme_panelBackground +androidx.constraintlayout.widget.R$attr: int telltales_tailColor +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: CMSettings$InclusiveIntegerRangeValidator(int,int) +androidx.coordinatorlayout.R$dimen: int notification_action_icon_size +james.adaptiveicon.R$color: int abc_primary_text_material_dark +androidx.lifecycle.ReportFragment: java.lang.String REPORT_FRAGMENT_TAG +androidx.preference.R$drawable: int abc_tab_indicator_mtrl_alpha +androidx.preference.R$color: int abc_tint_edittext +cyanogenmod.hardware.ICMHardwareService: java.lang.String getLtoDestination() +com.google.android.material.R$id: int jumpToStart +com.google.android.material.textfield.TextInputLayout: void setHintTextColor(android.content.res.ColorStateList) +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: float mMax +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_background_transition_holo_dark +com.jaredrummler.android.colorpicker.R$attr: int switchTextOn +com.google.android.material.R$id: int incoming +androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingRight +wangdaye.com.geometricweather.R$drawable: int flag_sr +com.google.android.material.internal.BaselineLayout: int getBaseline() +androidx.preference.R$bool: int config_materialPreferenceIconSpaceReserved +com.google.android.material.R$string: int abc_menu_sym_shortcut_label +androidx.recyclerview.R$styleable: int[] FontFamily +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int prefetch +com.google.android.material.R$styleable: int SearchView_layout +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable,int) +com.tencent.bugly.crashreport.crash.anr.b: com.tencent.bugly.crashreport.common.info.a d +com.jaredrummler.android.colorpicker.R$styleable: int[] ActivityChooserView +androidx.appcompat.widget.AppCompatTextView: void setAutoSizeTextTypeWithDefaults(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_122 +com.turingtechnologies.materialscrollbar.R$attr: int cardMaxElevation +okhttp3.Authenticator$1: Authenticator$1() +retrofit2.ParameterHandler$RelativeUrl +androidx.preference.R$attr: int dividerVertical +androidx.cardview.R$attr: int contentPaddingTop +androidx.transition.R$styleable: int FontFamilyFont_android_font +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: long time +okhttp3.internal.platform.OptionalMethod: java.lang.reflect.Method getPublicMethod(java.lang.Class,java.lang.String,java.lang.Class[]) +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int describeContents() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String ShortPhrase +androidx.drawerlayout.R$attr: int fontVariationSettings +okhttp3.internal.http2.Http2Stream$FramingSource: long maxByteCount +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_pivotY +com.google.android.gms.internal.common.zzq +com.google.gson.stream.JsonWriter: java.lang.String separator +cyanogenmod.weather.WeatherInfo: java.lang.String toString() +wangdaye.com.geometricweather.R$id: int date_picker_actions +com.jaredrummler.android.colorpicker.R$id: int tabMode +okhttp3.internal.tls.OkHostnameVerifier: boolean verify(java.lang.String,java.security.cert.X509Certificate) +com.xw.repo.bubbleseekbar.R$attr: int textColorAlertDialogListItem +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherText(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWeatherPhase() +androidx.constraintlayout.widget.R$dimen: int tooltip_horizontal_padding +com.google.android.material.R$attr: int chipStandaloneStyle +androidx.appcompat.widget.AppCompatEditText: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +android.didikee.donate.R$styleable: int PopupWindow_overlapAnchor +androidx.constraintlayout.widget.R$anim: int abc_slide_out_bottom +wangdaye.com.geometricweather.R$styleable: int Constraint_visibilityMode +com.jaredrummler.android.colorpicker.R$styleable: int Preference_singleLineTitle +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_background_transition_holo_light +io.reactivex.Observable: io.reactivex.Observable flatMapSingle(io.reactivex.functions.Function,boolean) +okhttp3.internal.http.RealInterceptorChain: int connectTimeoutMillis() +com.google.android.material.chip.Chip: void setCloseIconVisible(boolean) +okhttp3.internal.cache.DiskLruCache$Entry: java.lang.String key +wangdaye.com.geometricweather.R$drawable: int preference_list_divider_material +okhttp3.internal.ws.RealWebSocket: void writePingFrame() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicReference upstream +androidx.fragment.R$color +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_barColor +wangdaye.com.geometricweather.R$id: int center +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node header +androidx.customview.R$dimen: int notification_media_narrow_margin +okhttp3.HttpUrl: java.lang.String password +androidx.preference.R$attr: int actionBarItemBackground +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginLeft +com.google.android.gms.base.R$styleable: int LoadingImageView_imageAspectRatioAdjust +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onComplete() +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long index +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode CONNECT_ERROR +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String sourceUrl +androidx.preference.R$id: int accessibility_custom_action_0 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorPrimaryDark +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String unitId +com.google.android.material.R$attr: int cardViewStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginStart +com.jaredrummler.android.colorpicker.R$attr: int actionModeSelectAllDrawable +wangdaye.com.geometricweather.R$color: int mtrl_filled_background_color +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarSplitStyle +cyanogenmod.providers.CMSettings$Global: long getLong(android.content.ContentResolver,java.lang.String,long) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_disabled_z +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: android.app.Application mApplication +com.google.android.material.R$attr: int actionBarPopupTheme +androidx.constraintlayout.widget.R$styleable: int AlertDialog_multiChoiceItemLayout +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.Observer downstream wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: java.lang.Integer proba3H -com.google.android.gms.base.R$string: int common_google_play_services_updating_text -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: int UnitType -androidx.lifecycle.LiveData$ObserverWrapper: int mLastVersion -androidx.lifecycle.ViewModelStore: ViewModelStore() -wangdaye.com.geometricweather.R$id: int SHOW_PROGRESS -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_spinnerStyle -james.adaptiveicon.R$id: int line1 -android.didikee.donate.R$style: int TextAppearance_AppCompat_Small_Inverse -okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Level getLevel() -com.tencent.bugly.crashreport.common.info.a: java.lang.String O -android.support.v4.os.IResultReceiver$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.appcompat.R$dimen: int abc_action_bar_content_inset_with_nav -com.tencent.bugly.crashreport.crash.b: android.content.Context b -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconSize -com.google.android.material.R$string: int abc_capital_off -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_MinutelyEntityListQuery -retrofit2.SkipCallbackExecutor -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SeekBar_Discrete -com.bumptech.glide.load.engine.GlideException: void printStackTrace(java.io.PrintWriter) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getPM25() -com.jaredrummler.android.colorpicker.R$styleable: int[] FontFamily -androidx.lifecycle.viewmodel.R -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer -com.google.android.material.R$attr: int layoutDescription -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.HistoryEntity) -james.adaptiveicon.R$attr: int icon -com.loc.k: void a(int) -com.google.android.material.R$attr: int rippleColor -wangdaye.com.geometricweather.R$styleable: int[] KeyCycle -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: ObservableScalarXMap$ScalarDisposable(io.reactivex.Observer,java.lang.Object) -retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: CompletableFutureCallAdapterFactory$CallCancelCompletableFuture(retrofit2.Call) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_36dp -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -cyanogenmod.externalviews.KeyguardExternalView$7: KeyguardExternalView$7(cyanogenmod.externalviews.KeyguardExternalView) -com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyTopLeft -com.google.android.material.appbar.AppBarLayout: void setStatusBarForeground(android.graphics.drawable.Drawable) -com.tencent.bugly.crashreport.CrashReport: void setCrashFilter(java.lang.String) -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset -okhttp3.Cache$CacheResponseBody: okio.BufferedSource source() -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.google.android.material.R$color: int mtrl_tabs_colored_ripple_color -cyanogenmod.hardware.CMHardwareManager -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_LOCATION_PERMISSION -android.didikee.donate.R$id: int image -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Switch -james.adaptiveicon.R$attr: int dropdownListPreferredItemHeight -androidx.vectordrawable.animated.R$layout: int notification_template_part_time -androidx.recyclerview.R$id: int accessibility_custom_action_3 -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginRight -androidx.legacy.coreutils.R$layout: int notification_template_part_time -cyanogenmod.providers.CMSettings$System$1 -james.adaptiveicon.R$string: int abc_activitychooserview_choose_application -wangdaye.com.geometricweather.R$color: int abc_search_url_text_pressed -com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(byte,java.lang.String) -wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_grey -androidx.fragment.R$styleable: int FragmentContainerView_android_tag -android.didikee.donate.R$string: int abc_searchview_description_query -com.google.android.material.slider.Slider: void setLabelBehavior(int) -james.adaptiveicon.R$dimen: int abc_disabled_alpha_material_dark -com.jaredrummler.android.colorpicker.R$id -androidx.hilt.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_backgroundTint -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean hasKey(java.lang.Object) -james.adaptiveicon.R$color: int material_grey_800 -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdtd -android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_CheckBox -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_ChipGroup -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void setInteractivity(boolean) -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.util.Map h -androidx.constraintlayout.widget.R$attr: int singleChoiceItemLayout -io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: void dispose() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_percent -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_MinWidth_Bridge -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getThunderstormPrecipitationProbability() -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constrainedHeight -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView_Menu -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA -androidx.vectordrawable.animated.R$layout: int notification_template_icon_group -cyanogenmod.app.IProfileManager$Stub$Proxy: void updateProfile(cyanogenmod.app.Profile) -com.google.android.material.R$style: int Widget_Design_TextInputEditText -cyanogenmod.app.Profile: void setExpandedDesktopMode(int) -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginBottom -androidx.drawerlayout.R$layout: int notification_template_part_time -com.tencent.bugly.crashreport.common.info.a: java.util.Map aj -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -cyanogenmod.weather.CMWeatherManager$2$1: CMWeatherManager$2$1(cyanogenmod.weather.CMWeatherManager$2,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener,int,cyanogenmod.weather.WeatherInfo) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSnowPrecipitation() -com.google.android.material.R$id: int transition_transform -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_radius_on_dragging -com.amap.api.location.AMapLocationClientOption: AMapLocationClientOption() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: AccuCurrentResult$DewPoint$Imperial() -wangdaye.com.geometricweather.R$string: int key_gravity_sensor_switch -com.jaredrummler.android.colorpicker.R$attr: int switchTextOff -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$FramingSink sink -com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_backgroundSplit -androidx.appcompat.R$id: int accessibility_custom_action_13 -okhttp3.internal.http2.Header: java.lang.String TARGET_PATH_UTF8 -com.google.gson.internal.LazilyParsedNumber: double doubleValue() -okio.ForwardingTimeout: okio.Timeout deadlineNanoTime(long) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_stacked_max_height -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicator -com.jaredrummler.android.colorpicker.R$attr: int actionModeCopyDrawable -com.tencent.bugly.proguard.w: void b() -wangdaye.com.geometricweather.R$drawable: int notif_temp_110 -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_sheet_peek_height_min -james.adaptiveicon.R$attr: int numericModifiers -androidx.constraintlayout.widget.R$dimen -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: java.util.concurrent.atomic.AtomicInteger active -androidx.lifecycle.extensions.R$styleable: int FragmentContainerView_android_name -androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: int status -com.google.android.material.R$color: int material_grey_100 -com.jaredrummler.android.colorpicker.R$dimen: int abc_select_dialog_padding_start_material -androidx.constraintlayout.widget.R$color: int primary_text_default_material_light -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_height -cyanogenmod.profiles.AirplaneModeSettings: int getValue() -com.google.android.material.R$attr: int closeIconSize -retrofit2.RequestFactory: java.lang.String relativeUrl -okhttp3.internal.Version: Version() +androidx.vectordrawable.animated.R$drawable: int notification_icon_background +com.turingtechnologies.materialscrollbar.R$id: int action_menu_presenter +cyanogenmod.weather.ICMWeatherManager: void lookupCity(cyanogenmod.weather.RequestInfo) +androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.util.Date date +wangdaye.com.geometricweather.R$attr: int bsb_section_text_position +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void collapseNotificationPanel() +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_id +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.functions.Function itemTimeoutIndicator +com.tencent.bugly.proguard.r: long e +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginTop +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature temperature +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitationProbability +wangdaye.com.geometricweather.R$color: int mtrl_fab_ripple_color +wangdaye.com.geometricweather.R$color: int colorTextDark2nd +com.google.android.material.R$attr: int subtitleTextColor +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification +androidx.loader.R$styleable: int GradientColor_android_endX +cyanogenmod.weather.util.WeatherUtils +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode DAY +android.didikee.donate.R$style: int Widget_AppCompat_RatingBar +james.adaptiveicon.R$style: int Base_Theme_AppCompat +com.jaredrummler.android.colorpicker.R$attr: int queryHint +com.google.android.material.R$styleable: int FloatingActionButton_android_enabled +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_PLAY_QUEUE +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void dispose() +okhttp3.CookieJar$1: java.util.List loadForRequest(okhttp3.HttpUrl) +com.tencent.bugly.proguard.c: void b() +androidx.preference.R$attr: int preferenceCategoryStyle +cyanogenmod.externalviews.KeyguardExternalView$2: void slideLockscreenIn() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginLeft +cyanogenmod.app.CustomTile$ExpandedItem: android.os.Parcelable$Creator CREATOR +okhttp3.OkHttpClient: java.util.List DEFAULT_PROTOCOLS +wangdaye.com.geometricweather.R$attr: int cpv_colorShape +com.google.android.material.R$styleable: int KeyTimeCycle_android_scaleY +com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +androidx.lifecycle.MediatorLiveData: void onActive() +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: LiveDataReactiveStreams$PublisherLiveData(org.reactivestreams.Publisher) +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getBackgroundColorEnd() +com.google.android.material.button.MaterialButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +cyanogenmod.app.LiveLockScreenInfo$1: cyanogenmod.app.LiveLockScreenInfo createFromParcel(android.os.Parcel) +android.didikee.donate.R$color: int switch_thumb_normal_material_light +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Icon +wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_alphaChannelText +androidx.hilt.R$styleable: R$styleable() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitation +wangdaye.com.geometricweather.R$attr: int entryValues +io.reactivex.internal.schedulers.ScheduledRunnable: int THREAD_INDEX +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginRight +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_DayTextView +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_height_material +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean isEmpty() +okhttp3.Address: okhttp3.Dns dns +io.reactivex.Observable: java.lang.Iterable blockingIterable() +com.jaredrummler.android.colorpicker.R$styleable: int[] Toolbar +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HourlyEntityDao hourlyEntityDao +wangdaye.com.geometricweather.R$id: int dialog_time_setter_container +com.google.android.material.R$style: int Theme_MaterialComponents_Bridge +james.adaptiveicon.R$layout: int abc_action_menu_layout +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int LIGHT_SNOW_SHOWERS +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display1 +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_suggestionRowLayout +wangdaye.com.geometricweather.R$styleable: int[] OnClick +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_EditText +cyanogenmod.externalviews.ExternalView: void executeQueue() +com.turingtechnologies.materialscrollbar.R$styleable: int[] PopupWindowBackgroundState +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall +androidx.recyclerview.R$id: int tag_screen_reader_focusable +com.jaredrummler.android.colorpicker.R$integer +cyanogenmod.externalviews.KeyguardExternalViewProviderService: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider createExternalView(android.os.Bundle) +com.loc.k: int e +wangdaye.com.geometricweather.R$animator: int weather_thunder_2 +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabTextAppearance +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SHOWERS +androidx.appcompat.widget.SearchView: int getPreferredWidth() +james.adaptiveicon.R$styleable: int Toolbar_menu +com.turingtechnologies.materialscrollbar.R$layout: int mtrl_layout_snackbar_include +okhttp3.ConnectionPool: java.util.Deque connections +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_layout +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 +com.google.android.material.chip.ChipGroup: void setCheckedId(int) +com.amap.api.location.AMapLocation: void setSatellites(int) +com.google.android.material.R$styleable: int AppCompatTheme_buttonStyle +androidx.preference.R$styleable +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.disposables.ArrayCompositeDisposable: io.reactivex.disposables.Disposable replaceResource(int,io.reactivex.disposables.Disposable) +com.google.android.material.R$attr: int fabAnimationMode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pubTime +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: io.reactivex.disposables.Disposable upstream +com.turingtechnologies.materialscrollbar.R$id: int src_in +android.didikee.donate.R$dimen: int abc_text_size_button_material +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemPaddingLeft +com.google.android.material.chip.Chip: java.lang.CharSequence getChipText() +okhttp3.Headers: java.lang.String name(int) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_toolbarStyle +retrofit2.Retrofit: java.util.List converterFactories +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: byte[] readPersistentBytes(java.lang.String) +okhttp3.internal.http2.PushObserver$1: void onReset(int,okhttp3.internal.http2.ErrorCode) +okhttp3.internal.ws.RealWebSocket: void onReadPing(okio.ByteString) +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconSizeRes(int) +com.xw.repo.bubbleseekbar.R$layout: int abc_alert_dialog_button_bar_material +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_SearchView +okio.InflaterSource: InflaterSource(okio.Source,java.util.zip.Inflater) +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveDecay +androidx.appcompat.widget.ActionBarContextView: int getContentHeight() +androidx.vectordrawable.animated.R$dimen: int compat_button_inset_horizontal_material +james.adaptiveicon.R$style: int Widget_AppCompat_Spinner +androidx.constraintlayout.widget.R$attr: int srcCompat +androidx.appcompat.R$color: int abc_search_url_text_selected +androidx.preference.R$color: int secondary_text_disabled_material_dark +cyanogenmod.app.Profile: cyanogenmod.app.Profile fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver +wangdaye.com.geometricweather.R$string: int week_3 +com.google.android.material.R$styleable: int FontFamilyFont_android_fontWeight +androidx.coordinatorlayout.R$color: R$color() +wangdaye.com.geometricweather.R$anim: int x2_decelerate_interpolator +com.google.android.material.R$attr: int subMenuArrow +androidx.preference.R$styleable: int AppCompatTheme_viewInflaterClass +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_hideMotionSpec +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Body2 +androidx.appcompat.R$drawable: int abc_cab_background_top_material +com.google.android.material.chip.Chip: void setChipMinHeight(float) +androidx.appcompat.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onNext(java.lang.Object) +androidx.appcompat.R$attr: int drawableEndCompat +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +com.google.android.material.R$styleable: int MenuGroup_android_id +wangdaye.com.geometricweather.R$style: int Base_V26_Theme_AppCompat_Light +cyanogenmod.app.PartnerInterface: cyanogenmod.app.PartnerInterface sPartnerInterfaceInstance +okhttp3.internal.http2.Http2Connection: long access$200(okhttp3.internal.http2.Http2Connection) +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean isEntityUpdateable() +okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withReadTimeout(int,java.util.concurrent.TimeUnit) +com.xw.repo.bubbleseekbar.R$id: int sides +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: int unitArrayIndex +androidx.appcompat.R$interpolator +wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_year_selection +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +androidx.appcompat.R$attr: int isLightTheme +androidx.appcompat.R$attr: int divider +androidx.vectordrawable.animated.R$drawable: int notification_template_icon_bg +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onComplete() +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onSubscribe(io.reactivex.disposables.Disposable) +okio.Segment: okio.Segment pop() +com.google.android.material.R$attr: int colorPrimaryVariant +com.bumptech.glide.integration.okhttp.R$attr: int ttcIndex +androidx.appcompat.resources.R$styleable: int GradientColor_android_centerColor +cyanogenmod.providers.CMSettings$Global: java.lang.String[] LEGACY_GLOBAL_SETTINGS +wangdaye.com.geometricweather.R$attr: int materialButtonToggleGroupStyle +wangdaye.com.geometricweather.common.ui.widgets.TagView: void setUncheckedBackgroundColor(int) +androidx.viewpager2.R$color: int ripple_material_light +com.google.android.material.R$style: int Widget_MaterialComponents_Slider +com.xw.repo.bubbleseekbar.R$color: int abc_secondary_text_material_light +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode[] a +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onNext(java.lang.Object) +com.google.android.material.R$styleable: int KeyTimeCycle_motionProgress +com.xw.repo.bubbleseekbar.R$attr: int measureWithLargestChild +android.didikee.donate.R$dimen: int abc_text_size_menu_header_material +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low_normal +james.adaptiveicon.R$styleable: int Toolbar_popupTheme +androidx.preference.R$attr: int maxButtonHeight +com.jaredrummler.android.colorpicker.R$attr: int actionBarTabStyle +wangdaye.com.geometricweather.R$layout: int material_clock_period_toggle +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type RIGHT +com.turingtechnologies.materialscrollbar.R$string: int abc_search_hint +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: boolean unsupported +com.tencent.bugly.nativecrashreport.R$string +androidx.fragment.R$integer +wangdaye.com.geometricweather.R$dimen: int tooltip_horizontal_padding +wangdaye.com.geometricweather.R$color: int dim_foreground_disabled_material_light +okhttp3.internal.http2.Http2Connection$2: void execute() +cyanogenmod.app.ICustomTileListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder parse(okhttp3.HttpUrl,java.lang.String) +androidx.viewpager2.R$styleable: int GradientColor_android_centerColor +retrofit2.adapter.rxjava2.BodyObservable: void subscribeActual(io.reactivex.Observer) +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +androidx.preference.R$styleable: int AppCompatTheme_listPopupWindowStyle +androidx.customview.R$id: int line3 +wangdaye.com.geometricweather.R$styleable: int PopupWindow_android_popupBackground +com.turingtechnologies.materialscrollbar.R$attr: int switchMinWidth +com.google.android.gms.common.SignInButton +androidx.constraintlayout.widget.R$attr: int arrowShaftLength +com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomNavigationView +wangdaye.com.geometricweather.R$string: int feedback_short_term_precipitation_alert +com.tencent.bugly.crashreport.biz.UserInfoBean: long k +okhttp3.internal.http2.Http2: java.io.IOException ioException(java.lang.String,java.lang.Object[]) +james.adaptiveicon.R$dimen: int abc_text_size_display_2_material +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_AIR_QUALITY +io.reactivex.internal.schedulers.ScheduledRunnable: void dispose() +androidx.constraintlayout.widget.R$attr: int contentInsetEnd +okio.Pipe: okio.Sink sink +androidx.lifecycle.extensions.R$id +james.adaptiveicon.R$style: int Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicator(android.graphics.drawable.Drawable) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean getDirection() +androidx.fragment.R$id: int dialog_button +androidx.room.RoomDatabase: RoomDatabase() +com.tencent.bugly.crashreport.biz.a: void a(com.tencent.bugly.crashreport.biz.a,com.tencent.bugly.crashreport.biz.UserInfoBean,boolean) +androidx.appcompat.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.lang.Throwable error +com.google.android.material.R$attr: int cornerRadius +okhttp3.internal.Util$2: Util$2(java.lang.String,boolean) +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry: MfEphemerisResult$Geometry() +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light +james.adaptiveicon.R$drawable: int notification_tile_bg +androidx.swiperefreshlayout.R$attr: int fontStyle +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.Observer downstream +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_min_width_minor +androidx.preference.R$attr: int dialogLayout +android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMark +com.tencent.bugly.proguard.an: int b +androidx.preference.R$anim: int abc_tooltip_enter +wangdaye.com.geometricweather.R$drawable: int ic_delete +android.didikee.donate.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_splitTrack +wangdaye.com.geometricweather.R$string: int abc_capital_off +okhttp3.internal.connection.RouteDatabase +org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,int) +james.adaptiveicon.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +androidx.dynamicanimation.R$styleable +com.jaredrummler.android.colorpicker.R$styleable: int[] CompoundButton +wangdaye.com.geometricweather.R$attr: int placeholderTextColor +com.xw.repo.bubbleseekbar.R$id: int blocking +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTheme +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitation +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getShowMotionSpec() +cyanogenmod.app.LiveLockScreenInfo$1: cyanogenmod.app.LiveLockScreenInfo[] newArray(int) +androidx.recyclerview.widget.RecyclerView: androidx.core.view.NestedScrollingChildHelper getScrollingChildHelper() +retrofit2.RequestFactory$Builder: boolean gotPath +wangdaye.com.geometricweather.R$styleable: int Slider_thumbRadius +james.adaptiveicon.R$anim: int abc_grow_fade_in_from_bottom +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float ceiling +androidx.vectordrawable.R$dimen: int notification_main_column_padding_top +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_iconSpaceReserved +androidx.hilt.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_textOff +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalStyle +com.google.android.gms.tasks.RuntimeExecutionException +androidx.preference.R$attr: int layout_behavior +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeStepGranularity +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginStart() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Id +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: double mHigh +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$styleable: int[] Constraint +com.bumptech.glide.integration.okhttp.R$color: int secondary_text_default_material_light +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory createAsync() +wangdaye.com.geometricweather.R$drawable: int notif_temp_140 +androidx.preference.R$color: int abc_search_url_text_pressed +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onScreenTurnedOn +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Title +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.R$color: int material_slider_active_track_color +androidx.lifecycle.LiveData$AlwaysActiveObserver: boolean shouldBeActive() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle +io.reactivex.internal.operators.observable.ObservableGroupBy$State: io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver parent +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +com.google.android.material.R$styleable: int KeyTimeCycle_curveFit +com.amap.api.location.AMapLocation: boolean y +androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionBarLayout +com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding[] values() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPubTime(java.lang.String) +com.google.android.material.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog +com.google.android.material.R$attr: int drawableTint +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActivityChooserView +retrofit2.OptionalConverterFactory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +androidx.core.widget.NestedScrollView: void setOnScrollChangeListener(androidx.core.widget.NestedScrollView$OnScrollChangeListener) +cyanogenmod.hardware.IThermalListenerCallback$Stub +androidx.activity.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.common.basic.models.weather.Current +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItem +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginBottom +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogLayout +androidx.core.R$drawable: R$drawable() +androidx.constraintlayout.widget.R$attr: int windowActionBarOverlay +androidx.appcompat.R$styleable: int ViewBackgroundHelper_android_background +androidx.preference.R$attr: int activityChooserViewStyle +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: HistoryEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +androidx.drawerlayout.R$attr: int fontProviderFetchStrategy +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_menuCategory +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_transformation_sheet_expand_spec +androidx.preference.R$style: int ThemeOverlay_AppCompat +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder hasSensitiveData(boolean) +okhttp3.Cache: int ENTRY_BODY +wangdaye.com.geometricweather.R$integer: R$integer() +com.amap.api.fence.DistrictItem: void writeToParcel(android.os.Parcel,int) +cyanogenmod.power.IPerformanceManager$Stub$Proxy: boolean setPowerProfile(int) +wangdaye.com.geometricweather.R$bool: int cpv_default_anim_autostart +com.google.android.gms.common.internal.safeparcel.SafeParcelReader$ParseException +com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_LOCERRORCODE +okhttp3.internal.http2.Hpack$Writer: void writeHeaders(java.util.List) +androidx.preference.R$styleable: int ButtonBarLayout_allowStacking +androidx.appcompat.resources.R$layout +androidx.fragment.R$id: int accessibility_custom_action_12 +androidx.preference.R$styleable: int SwitchCompat_track +androidx.hilt.lifecycle.R$styleable: int Fragment_android_id +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMargin +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplaceInTxIterable +okio.ForwardingTimeout: okio.Timeout delegate +wangdaye.com.geometricweather.R$styleable: int ArcProgress_arc_angle +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Info +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_maxButtonHeight +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_trendRecyclerView +androidx.preference.R$styleable: int[] GradientColor +androidx.work.R$id: int accessibility_custom_action_14 +com.google.android.material.R$attr: int materialCalendarStyle +com.tencent.bugly.proguard.ap: java.util.Map n +okhttp3.CipherSuite: java.lang.String javaName() +androidx.viewpager.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.constraintlayout.widget.R$id: int decor_content_parent +androidx.preference.R$attr: int allowDividerAbove +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction +james.adaptiveicon.R$attr: int backgroundTint +wangdaye.com.geometricweather.R$styleable: int MenuView_preserveIconSpacing +wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: void onUpgrade(org.greenrobot.greendao.database.Database,int,int) +androidx.work.R$dimen: int compat_button_padding_vertical_material +cyanogenmod.profiles.BrightnessSettings +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_TextView +com.google.android.material.R$attr: int collapsedTitleGravity +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dark +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_Solid +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_onClick +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getDisplayColorCalibration() +com.tencent.bugly.crashreport.crash.CrashDetailBean: int describeContents() +wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.converters.WeatherSourceConverter weatherSourceConverter +androidx.lifecycle.SavedStateHandle: androidx.lifecycle.SavedStateHandle createHandle(android.os.Bundle,android.os.Bundle) +androidx.appcompat.R$styleable: int AppCompatTextView_drawableBottomCompat +okhttp3.internal.platform.Jdk9Platform +com.google.android.gms.internal.location.zzbg: android.os.Parcelable$Creator CREATOR +com.jaredrummler.android.colorpicker.R$attr: int arrowHeadLength +okhttp3.Request: java.lang.Object tag(java.lang.Class) +com.google.android.material.button.MaterialButton: void setIcon(android.graphics.drawable.Drawable) +cyanogenmod.weather.WeatherInfo: double mTodaysHighTemp +com.tencent.bugly.proguard.z: byte[] a(java.io.File,java.lang.String,java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_summaryOn +wangdaye.com.geometricweather.db.entities.LocationEntity: void setProvince(java.lang.String) +androidx.customview.R$styleable: int FontFamilyFont_fontWeight +com.xw.repo.bubbleseekbar.R$attr: int borderlessButtonStyle +com.xw.repo.bubbleseekbar.R$attr: int colorPrimaryDark +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity +com.google.android.material.R$styleable: int ViewBackgroundHelper_backgroundTintMode +com.google.gson.stream.JsonReader: void endObject() +com.xw.repo.bubbleseekbar.R$dimen: int abc_control_inset_material +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMargins +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_subtitle +wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_width_major +cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_REVERSE_LOOKUP +com.google.android.material.R$color: int abc_hint_foreground_material_light +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Subtitle1 +com.google.android.material.R$animator: int mtrl_extended_fab_change_size_collapse_motion_spec +com.amap.api.location.UmidtokenInfo: android.os.Handler a +okhttp3.internal.http2.StreamResetException: okhttp3.internal.http2.ErrorCode errorCode +androidx.preference.R$id: int accessibility_custom_action_7 +wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_velocityMode +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog +android.support.v4.app.INotificationSideChannel$Stub: boolean setDefaultImpl(android.support.v4.app.INotificationSideChannel) +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayWeekProvider +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int SILENT_STATE +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onSubscribe(io.reactivex.disposables.Disposable) wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean -cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri mThumbnailUri -okio.Buffer: okio.Timeout timeout() -wangdaye.com.geometricweather.R$dimen: int notification_large_icon_height -cyanogenmod.app.suggest.ApplicationSuggestion$1 -cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: IRequestInfoListener$Stub$Proxy(android.os.IBinder) -io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onSubscribe -okhttp3.internal.http2.Header: Header(okio.ByteString,java.lang.String) -okhttp3.internal.cache2.Relay: okio.ByteString PREFIX_CLEAN -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Level -okhttp3.Response: okhttp3.Response priorResponse -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_FALLBACK_SCSV -androidx.recyclerview.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed -com.amap.api.fence.PoiItem: java.lang.String getTypeCode() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircleRadius -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Category -io.reactivex.internal.schedulers.ScheduledRunnable: int FUTURE_INDEX -androidx.preference.R$style: R$style() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWeatherText -androidx.constraintlayout.widget.R$attr: int actionModePopupWindowStyle -cyanogenmod.weather.WeatherLocation: WeatherLocation(android.os.Parcel,cyanogenmod.weather.WeatherLocation$1) -cyanogenmod.weather.WeatherInfo$Builder: boolean isValidWindSpeedUnit(int) -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_android_layout -cyanogenmod.profiles.LockSettings$1: cyanogenmod.profiles.LockSettings createFromParcel(android.os.Parcel) -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason[] values() -androidx.work.R$id: int accessibility_custom_action_26 -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit[] values() -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -android.didikee.donate.R$id: int showTitle -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay day() -androidx.transition.R$id: int action_image -cyanogenmod.providers.CMSettings$System: java.lang.String CALL_RECORDING_FORMAT -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Light -james.adaptiveicon.R$attr: int actionMenuTextColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: CaiYunMainlyResult$IndicesBeanX() -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endX -android.didikee.donate.R$drawable: int abc_cab_background_top_material -com.google.android.material.R$attr: int layout_constraintStart_toStartOf -okio.BufferedSource: long indexOf(byte) -com.jaredrummler.android.colorpicker.R$attr: int queryBackground -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService pushExecutor -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String pollutant -james.adaptiveicon.R$color: int material_grey_300 -wangdaye.com.geometricweather.db.entities.LocationEntityDao: LocationEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -androidx.preference.R$style: int Base_Widget_AppCompat_ActivityChooserView -androidx.appcompat.R$string: int abc_searchview_description_query -wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_dark -com.turingtechnologies.materialscrollbar.R$attr: int chipIconTint -com.jaredrummler.android.colorpicker.R$styleable: int Preference_allowDividerBelow -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_content_inset_material -cyanogenmod.app.ProfileGroup: android.os.Parcelable$Creator CREATOR -androidx.preference.R$style: int Base_Widget_AppCompat_Spinner -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarSplitStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableBottomCompat -okio.Pipe: okio.Buffer buffer -okhttp3.internal.ws.RealWebSocket: java.lang.Runnable writerRunnable -io.reactivex.Observable: io.reactivex.Single toSortedList(int) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void __setDaoSession(wangdaye.com.geometricweather.db.entities.DaoSession) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setSlingshotDistance(int) -com.google.android.material.R$dimen: int design_tab_text_size -com.jaredrummler.android.colorpicker.R$dimen: int notification_content_margin_start -okio.RealBufferedSink: java.io.OutputStream outputStream() -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_9 -retrofit2.Utils: java.lang.Class declaringClassOf(java.lang.reflect.TypeVariable) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorAccent -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginTop -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String district -com.xw.repo.bubbleseekbar.R$id: int action_bar_spinner -com.tencent.bugly.crashreport.common.info.a: long q -com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_begin -wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconTintMode -wangdaye.com.geometricweather.R$id: int activity_preview_icon_toolbar -okhttp3.internal.tls.OkHostnameVerifier: boolean verifyHostname(java.lang.String,java.security.cert.X509Certificate) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String to -cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onCustomTilePosted -io.reactivex.internal.schedulers.ScheduledRunnable: boolean isDisposed() -androidx.vectordrawable.R$styleable: int FontFamily_fontProviderQuery -android.didikee.donate.R$style: int Base_AlertDialog_AppCompat -wangdaye.com.geometricweather.common.basic.models.weather.Alert: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void dispose() -io.reactivex.observers.DisposableObserver: void onSubscribe(io.reactivex.disposables.Disposable) -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActivityChooserView -androidx.work.R$attr: R$attr() -okhttp3.internal.connection.StreamAllocation: boolean canceled -com.google.android.material.appbar.HeaderBehavior: HeaderBehavior() -wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_summaryOff -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert -androidx.constraintlayout.utils.widget.ImageFilterButton: float getSaturation() -com.turingtechnologies.materialscrollbar.R$animator: int design_fab_hide_motion_spec -androidx.preference.R$style: int Widget_AppCompat_Light_PopupMenu -com.xw.repo.bubbleseekbar.R$string: int abc_menu_meta_shortcut_label -com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_android_alpha -androidx.constraintlayout.widget.R$color: int button_material_light -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$color: int design_default_color_primary -com.turingtechnologies.materialscrollbar.R$attr: int state_liftable -wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveVariesBy -androidx.preference.R$dimen: int abc_dialog_min_width_minor -io.reactivex.internal.util.VolatileSizeArrayList: int lastIndexOf(java.lang.Object) -wangdaye.com.geometricweather.R$id: int cos +wangdaye.com.geometricweather.R$styleable: int Toolbar_menu +androidx.fragment.R$dimen: int notification_action_icon_size +android.didikee.donate.R$styleable: int ActionMode_closeItemLayout +androidx.appcompat.R$layout +android.didikee.donate.R$attr: int listDividerAlertDialog +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode FOG +androidx.customview.R$style +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: void setTo(java.lang.String) +okhttp3.internal.ws.RealWebSocket: int receivedPongCount() +androidx.legacy.coreutils.R$id: int italic +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_100 +wangdaye.com.geometricweather.R$id: int widget_clock_day_weather +androidx.appcompat.R$string: int abc_activitychooserview_choose_application +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastHorizontalStyle +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setSubtitleText(java.lang.String) +androidx.swiperefreshlayout.R$drawable: int notification_bg_low_normal +androidx.appcompat.widget.SwitchCompat: int getSwitchMinWidth() +androidx.appcompat.widget.AppCompatEditText +wangdaye.com.geometricweather.R$string: int settings_title_appearance +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionDropDownStyle +com.google.android.material.R$attr: int strokeWidth +retrofit2.RequestFactory: okhttp3.HttpUrl baseUrl +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.google.android.material.R$id: int deltaRelative +io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.SingleSource) +okio.AsyncTimeout$1: void write(okio.Buffer,long) +wangdaye.com.geometricweather.R$xml: int perference_service_provider +cyanogenmod.app.ProfileGroup: void setSoundOverride(android.net.Uri) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: int UnitType +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +wangdaye.com.geometricweather.R$attr: int layout_goneMarginStart +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float rainPrecipitationProbability +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeChangeListener mThemeChangeListener +androidx.lifecycle.Transformations$2: Transformations$2(androidx.arch.core.util.Function,androidx.lifecycle.MediatorLiveData) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_closeItemLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setStatus(int) +com.google.android.material.R$style: int Base_Theme_AppCompat +androidx.lifecycle.extensions.R$anim: int fragment_fade_enter +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator +com.google.android.material.R$styleable: int Slider_android_value +wangdaye.com.geometricweather.R$attr: int actionBarSplitStyle +wangdaye.com.geometricweather.R$id: int action_menu_divider +androidx.appcompat.widget.AppCompatButton: int getAutoSizeStepGranularity() +com.jaredrummler.android.colorpicker.R$attr: int spanCount +android.didikee.donate.R$attr: int alertDialogButtonGroupStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassDescription(java.lang.String) +wangdaye.com.geometricweather.R$color: int abc_primary_text_material_dark +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean cancelled +com.google.android.gms.location.LocationResult: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_percent +io.reactivex.Observable: io.reactivex.Observable map(io.reactivex.functions.Function) +com.google.android.material.R$styleable: int Chip_chipIconVisible +com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_track_material +okhttp3.internal.cache.FaultHidingSink: void close() +wangdaye.com.geometricweather.R$string: int mtrl_picker_confirm +com.xw.repo.bubbleseekbar.R$layout: int abc_action_mode_bar +androidx.cardview.R$styleable: int CardView_contentPaddingRight +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: java.util.concurrent.atomic.AtomicReference observers +wangdaye.com.geometricweather.R$anim: int fragment_main_exit +com.google.android.material.R$dimen: int material_font_2_0_box_collapsed_padding_top +com.google.android.material.navigation.NavigationView: void setItemBackground(android.graphics.drawable.Drawable) +com.google.android.material.R$styleable: int Layout_layout_constraintCircleRadius +okhttp3.RequestBody$3: java.io.File val$file +wangdaye.com.geometricweather.settings.activities.DailyTrendDisplayManageActivity: DailyTrendDisplayManageActivity() +cyanogenmod.os.Build$CM_VERSION_CODES: int APRICOT +okhttp3.internal.io.FileSystem$1: okio.Sink sink(java.io.File) +okhttp3.internal.Util: java.util.TimeZone UTC +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: long timeout +androidx.lifecycle.ReportFragment: void onStop() +com.google.android.material.R$layout: int abc_tooltip +android.didikee.donate.R$style: int TextAppearance_AppCompat_Title +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor DARK +android.didikee.donate.R$dimen: int notification_large_icon_width +okhttp3.internal.platform.JdkWithJettyBootPlatform: JdkWithJettyBootPlatform(java.lang.reflect.Method,java.lang.reflect.Method,java.lang.reflect.Method,java.lang.Class,java.lang.Class) +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String weatherText +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getErrorContentDescription() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDewPoint(java.lang.Integer) +okhttp3.Address: okhttp3.CertificatePinner certificatePinner +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_today_stroke +com.google.android.material.R$styleable: int ThemeEnforcement_android_textAppearance +okhttp3.internal.cache.DiskLruCache$Entry: java.io.File[] dirtyFiles +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: int prefetch +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: int UnitType +androidx.preference.R$styleable: int Preference_android_layout +com.google.android.material.R$styleable: int[] SearchView +androidx.constraintlayout.widget.R$attr: int onPositiveCross +io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Runnable getWrappedRunnable() +com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +com.google.android.material.R$id: int dragRight +wangdaye.com.geometricweather.R$integer: int mtrl_card_anim_duration_ms +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver parent +com.google.android.material.R$id: int accessibility_custom_action_6 +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceUrl() +com.tencent.bugly.proguard.z: void b(long) +okio.Okio$1: java.io.OutputStream val$out +okhttp3.internal.http.RequestLine: java.lang.String requestPath(okhttp3.HttpUrl) +io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Runnable getWrappedRunnable() +com.google.android.material.chip.ChipGroup: void setFlexWrap(int) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_left_mtrl_light +androidx.lifecycle.LifecycleRegistry: int getObserverCount() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: AccuCurrentResult$ApparentTemperature$Imperial() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_visibility +io.reactivex.Observable: io.reactivex.Observable sample(io.reactivex.ObservableSource,boolean) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Toolbar +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier +com.google.android.material.R$color: int abc_decor_view_status_guard +com.turingtechnologies.materialscrollbar.Indicator: void setRTL(boolean) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_140 +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getUniqueDeviceId +com.tencent.bugly.crashreport.crash.anr.b: void a(boolean) +wangdaye.com.geometricweather.R$drawable: int ic_cold +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animAutostart +com.bumptech.glide.Registry$NoSourceEncoderAvailableException: Registry$NoSourceEncoderAvailableException(java.lang.Class) +androidx.appcompat.R$id: int scrollView +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType RAW +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_seekBarIncrement +com.tencent.bugly.proguard.ak: java.lang.String g +androidx.appcompat.R$attr: int actionBarPopupTheme +com.google.android.material.R$styleable: int KeyAttribute_android_scaleY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: void setStatus(int) +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status SUCCESS +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.lang.String pubTime +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCutDrawable +org.greenrobot.greendao.AbstractDao: java.lang.Object readKey(android.database.Cursor,int) +okio.Buffer: okio.BufferedSink write(okio.Source,long) +cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String mName +androidx.hilt.R$anim: int fragment_fade_enter +androidx.work.R$styleable: int FontFamily_fontProviderAuthority +androidx.hilt.R$id: int dialog_button +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver inner +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Spinner +com.turingtechnologies.materialscrollbar.R$color: int primary_text_disabled_material_light +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableLeft +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.LocationEntity) +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onSucceed(java.lang.Object) +com.xw.repo.bubbleseekbar.R$attr: int controlBackground +cyanogenmod.weather.WeatherInfo$Builder: double mTemperature +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: long serialVersionUID +com.google.android.material.R$layout: int mtrl_calendar_month_labeled +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onComplete() +com.github.rahatarmanahmed.cpv.CircularProgressView: void setThickness(int) +com.google.android.material.R$string: int material_minute_selection +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getAbbreviation(android.content.Context) +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor[] values() +wangdaye.com.geometricweather.R$attr: int actionBarSize +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar +com.tencent.bugly.crashreport.common.info.a: long o() +com.google.android.material.R$style: int TextAppearance_AppCompat_Display4 +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean isDisposed() +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +wangdaye.com.geometricweather.R$string: int password_toggle_content_description +cyanogenmod.app.ICMTelephonyManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +android.didikee.donate.R$attr: int ratingBarStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String frenchDepartment +wangdaye.com.geometricweather.R$anim: int fragment_fast_out_extra_slow_in +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String getDefenseIcon() +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperTextEnabled +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +james.adaptiveicon.R$styleable: int AppCompatTextView_textLocale +com.google.android.gms.base.R$string: int common_google_play_services_install_title +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long readKey(android.database.Cursor,int) +okhttp3.internal.connection.RouteSelector +androidx.preference.R$dimen: int abc_text_size_menu_material +wangdaye.com.geometricweather.R$styleable: int[] State +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.String TABLENAME +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: long serialVersionUID +retrofit2.RequestBuilder: boolean hasBody +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf +androidx.fragment.app.FragmentActivity +com.turingtechnologies.materialscrollbar.R$styleable: int TouchScrollBar_msb_autoHide +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: int getStatus() +android.didikee.donate.R$styleable: int AlertDialog_listLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String getUnit() +cyanogenmod.weatherservice.WeatherProviderService +androidx.hilt.work.R$styleable: int[] Fragment +com.google.android.material.textfield.TextInputLayout: void setCounterMaxLength(int) +androidx.preference.R$color: int abc_primary_text_material_light +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf +com.bumptech.glide.Registry$MissingComponentException +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +wangdaye.com.geometricweather.R$attr: int collapseContentDescription +wangdaye.com.geometricweather.R$id: int material_timepicker_edit_text +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: android.os.IBinder mRemote +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_ADJUST_SOUNDS_ENABLED_VALIDATOR +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabView +com.google.android.material.R$id: int wrap +androidx.recyclerview.R$attr: int fontProviderCerts +cyanogenmod.externalviews.ExternalViewProviderService$Provider: int getWindowType() +com.bumptech.glide.R$styleable: int FontFamilyFont_ttcIndex +androidx.constraintlayout.widget.R$color: int primary_dark_material_light +androidx.appcompat.widget.ActionBarContextView: int getAnimatedVisibility() +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_queryHint +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_2 +androidx.vectordrawable.animated.R$id: int line1 +okhttp3.internal.http2.Http2Connection: long unacknowledgedBytesRead +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.HourlyEntity) +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context) +androidx.appcompat.view.menu.CascadingMenuPopup +com.google.android.gms.common.server.response.FastSafeParcelableJsonResponse +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +okhttp3.internal.http2.Http2Stream: void receiveFin() +okhttp3.internal.ws.RealWebSocket: void cancel() +com.jaredrummler.android.colorpicker.R$attr: int widgetLayout +cyanogenmod.library.R$attr +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: double Value +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dark +com.xw.repo.bubbleseekbar.R$string: int abc_menu_space_shortcut_label +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.R$styleable: int ChipGroup_singleLine +io.reactivex.Observable: io.reactivex.Observable startWith(java.lang.Iterable) +com.tencent.bugly.crashreport.crash.b: int a +android.didikee.donate.R$styleable: int TextAppearance_textAllCaps +androidx.appcompat.resources.R$attr: int fontProviderPackage +androidx.drawerlayout.R$attr: int font +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostCreated(android.app.Activity,android.os.Bundle) +io.reactivex.internal.disposables.DisposableHelper: boolean validate(io.reactivex.disposables.Disposable,io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$styleable: int[] Slider +cyanogenmod.providers.CMSettings$System: java.lang.String NAVIGATION_BAR_MENU_ARROW_KEYS +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_36dp +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar +androidx.lifecycle.FullLifecycleObserverAdapter$1 +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionMode +android.didikee.donate.R$integer +com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_creator +wangdaye.com.geometricweather.R$layout: int preference_list_fragment +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +com.xw.repo.bubbleseekbar.R$attr: int actionBarWidgetTheme +retrofit2.converter.gson.GsonRequestBodyConverter: java.lang.Object convert(java.lang.Object) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.Integer alti +androidx.recyclerview.R$styleable: int GradientColor_android_endColor +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +androidx.fragment.R$attr: int fontWeight +james.adaptiveicon.R$id: int action_menu_divider +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.appcompat.R$color: int tooltip_background_light +androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityStopped(android.app.Activity) +androidx.appcompat.app.AppCompatDelegateImpl$PanelFeatureState$SavedState +com.google.android.material.slider.RangeSlider: float getMinSeparation() +com.google.android.material.R$styleable: int[] ColorStateListItem +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_DES_CBC_SHA +com.xw.repo.bubbleseekbar.R$id: int image +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX() +com.google.android.material.R$styleable: int[] CardView +com.google.android.material.R$style: int Theme_AppCompat_DialogWhenLarge +com.bumptech.glide.R$id: int text2 +androidx.appcompat.widget.AppCompatSeekBar +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge +androidx.preference.Preference$BaseSavedState +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType USER_REQUEST_MIXNMATCH +androidx.appcompat.R$drawable: int notification_bg_normal_pressed +androidx.appcompat.R$dimen: int abc_action_bar_default_padding_start_material +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: java.lang.String desc +com.xw.repo.bubbleseekbar.R$attr: int switchTextAppearance +james.adaptiveicon.R$id: int title_template +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.List getValue() +androidx.constraintlayout.widget.R$styleable: int Layout_android_orientation +retrofit2.HttpServiceMethod$CallAdapted: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) +com.google.android.material.R$dimen: int abc_seekbar_track_background_height_material +io.reactivex.Observable: io.reactivex.Observable timeout0(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.ObservableSource) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_PLAY_QUEUE_VALIDATOR +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: java.lang.String Unit +com.amap.api.location.LocationManagerBase: void setLocationOption(com.amap.api.location.AMapLocationClientOption) +wangdaye.com.geometricweather.R$id: int select_dialog_listview +androidx.preference.R$styleable: int Preference_android_iconSpaceReserved +androidx.constraintlayout.widget.R$bool: R$bool() +android.didikee.donate.R$attr: int actionModeCopyDrawable +androidx.hilt.work.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$drawable: int notif_temp_68 +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_PING io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean isDisposed() -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: ObservableConcatWithCompletable$ConcatWithObserver(io.reactivex.Observer,io.reactivex.CompletableSource) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderTextColor -androidx.preference.R$styleable: int Toolbar_titleMarginTop -okhttp3.Connection: okhttp3.Protocol protocol() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView -androidx.appcompat.resources.R$styleable: int GradientColor_android_tileMode -io.reactivex.Observable: io.reactivex.Observable delay(io.reactivex.ObservableSource,io.reactivex.functions.Function) -com.jaredrummler.android.colorpicker.R$id: R$id() -com.xw.repo.bubbleseekbar.R$attr: int backgroundTintMode -com.google.android.material.R$attr: int closeIconStartPadding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSrc() -com.xw.repo.bubbleseekbar.R$attr: int bsb_seek_by_section +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPubTime() +com.xw.repo.bubbleseekbar.R$string: int abc_action_mode_done +androidx.viewpager2.R$dimen: int notification_right_icon_size +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarSize +com.amap.api.fence.PoiItem: void setCity(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: long EndEpochDate +androidx.appcompat.widget.Toolbar: void setContentInsetStartWithNavigation(int) +androidx.preference.R$attr: int actionMenuTextAppearance +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$color: int ripple_material_dark +android.didikee.donate.R$drawable: int abc_cab_background_internal_bg +com.amap.api.location.AMapLocationQualityReport: java.lang.Object clone() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA +androidx.vectordrawable.animated.R$id: int text +com.tencent.bugly.proguard.d: com.tencent.bugly.proguard.f e +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_enabled +androidx.loader.R$drawable: int notification_template_icon_bg +com.google.android.material.R$attr: int layout_scrollInterpolator +wangdaye.com.geometricweather.R$array: int air_quality_co_unit_voices +james.adaptiveicon.R$attr: int navigationMode +androidx.preference.R$styleable: int SearchView_goIcon +android.didikee.donate.R$styleable: int CompoundButton_buttonCompat +wangdaye.com.geometricweather.R$attr: int tintMode +androidx.hilt.R$styleable: int FontFamily_fontProviderQuery +androidx.preference.R$id: int accessibility_custom_action_4 +android.didikee.donate.R$style: int Widget_AppCompat_RatingBar_Small +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: AccuDailyResult$DailyForecasts$Day$LocalSource() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: java.lang.String level +cyanogenmod.content.Intent: java.lang.String EXTRA_RECENTS_LONG_PRESS_RELEASE +wangdaye.com.geometricweather.R$dimen: int widget_subtitle_text_size +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_seek_by_section +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: void setValue(java.util.List) +androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerY +com.amap.api.location.AMapLocation: java.lang.String getCountry() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getDegreeDayTemperature() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonStyle +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +okhttp3.internal.connection.RealConnection: long idleAtNanos +androidx.preference.R$dimen: int abc_button_padding_horizontal_material +okhttp3.Address: javax.net.SocketFactory socketFactory() +com.google.android.material.R$style: int AndroidThemeColorAccentYellow +com.xw.repo.bubbleseekbar.R$id: int action_mode_bar +cyanogenmod.providers.CMSettings$System: CMSettings$System() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue getOrCreateQueue() +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean setNativeAppVersion(java.lang.String) +io.reactivex.Observable: io.reactivex.Maybe singleElement() +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onSuccess(java.lang.Object) +wangdaye.com.geometricweather.R$id: int honorRequest +androidx.constraintlayout.widget.R$attr: int colorPrimary +androidx.preference.R$drawable: int abc_btn_check_to_on_mtrl_015 +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_content_padding_fullscreen +androidx.legacy.coreutils.R$drawable: int notification_template_icon_bg +okhttp3.internal.connection.RealConnection: boolean isEligible(okhttp3.Address,okhttp3.Route) +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService: ForegroundTodayForecastUpdateService() +wangdaye.com.geometricweather.common.basic.models.weather.Astro: Astro(java.util.Date,java.util.Date) +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_enqueueLiveLockScreen +androidx.lifecycle.EmptyActivityLifecycleCallbacks: EmptyActivityLifecycleCallbacks() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setPubTime(java.util.Date) +com.xw.repo.bubbleseekbar.R$styleable: int[] CoordinatorLayout_Layout +com.tencent.bugly.crashreport.BuglyHintException +com.xw.repo.bubbleseekbar.R$dimen: int compat_button_padding_vertical_material +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex tomorrow +android.didikee.donate.R$dimen: int abc_edit_text_inset_horizontal_material +androidx.constraintlayout.widget.R$attr: int transitionDisable +wangdaye.com.geometricweather.R$string: int abc_shareactionprovider_share_with +com.google.android.material.internal.FlowLayout: void setSingleLine(boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean) +androidx.preference.R$layout: int abc_list_menu_item_layout +com.google.android.material.R$integer: int status_bar_notification_info_maxnum +com.google.android.material.R$styleable: int BottomAppBar_hideOnScroll +okhttp3.internal.http2.Http2Connection$ReaderRunnable +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather +androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +com.google.android.material.R$styleable: int NavigationView_itemShapeInsetEnd +com.jaredrummler.android.colorpicker.R$color: int primary_text_disabled_material_dark +com.tencent.bugly.proguard.u: java.lang.Object j +androidx.preference.R$attr: int key +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarWidgetTheme okio.DeflaterSink: void flush() -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean isDisposed() -okhttp3.Interceptor$Chain: okhttp3.Call call() -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTheme -com.tencent.bugly.proguard.q: java.lang.String a -androidx.preference.R$styleable: int AppCompatTheme_actionModeCutDrawable -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf -okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: okhttp3.internal.http2.Http2Connection this$0 -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_RadioButton -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderPackage -androidx.viewpager.R$style: int TextAppearance_Compat_Notification -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_windowAnimationStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitationDuration(java.lang.Float) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Inverse -com.github.rahatarmanahmed.cpv.R$attr: int cpv_indeterminate -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setCityId(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedHeightMajor -androidx.constraintlayout.widget.Group: Group(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_padding -androidx.vectordrawable.R$dimen: int notification_right_side_padding_top -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: ObservableReplay$SizeAndTimeBoundReplayBuffer(int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.ChineseCityEntity) -wangdaye.com.geometricweather.R$id: int activity_alert_toolbar -com.google.android.material.R$attr: int mock_diagonalsColor -com.amap.api.fence.GeoFenceManagerBase: void setGeoFenceAble(java.lang.String,boolean) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias -wangdaye.com.geometricweather.R$id: int spinner -okio.Buffer: okio.BufferedSink write(byte[]) -com.google.gson.stream.JsonReader: void setLenient(boolean) -cyanogenmod.externalviews.ExternalView$2: int val$width -io.reactivex.internal.operators.observable.ObservableGroupBy$State -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Line2 -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onComplete() -retrofit2.BuiltInConverters$StreamingResponseBodyConverter: okhttp3.ResponseBody convert(okhttp3.ResponseBody) -androidx.constraintlayout.widget.R$style: int Platform_Widget_AppCompat_Spinner -androidx.constraintlayout.widget.R$attr: int layoutDescription -com.github.rahatarmanahmed.cpv.CircularProgressView: void initAttributes(android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$style: int Platform_V25_AppCompat -com.google.android.material.R$style: int TextAppearance_AppCompat_Body2 -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean getFeelsLike() -cyanogenmod.app.Profile$NotificationLightMode: int DISABLE -wangdaye.com.geometricweather.R$font: int product_sans_thin -com.google.android.material.R$style: int TextAppearance_AppCompat_Display3 -okhttp3.internal.ws.RealWebSocket: boolean send(okio.ByteString,int) -androidx.appcompat.R$drawable: int tooltip_frame_light -com.amap.api.location.AMapLocationClient: void startAssistantLocation(android.webkit.WebView) -androidx.appcompat.resources.R$dimen: int compat_control_corner_material -okhttp3.internal.http2.Http2Connection$5: void execute() -com.turingtechnologies.materialscrollbar.R$attr: int logo -wangdaye.com.geometricweather.R$id: int search_badge -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig alertEntityDaoConfig -androidx.preference.R$attr: int layout_anchor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric -com.xw.repo.bubbleseekbar.R$dimen: int compat_button_inset_vertical_material -cyanogenmod.app.CustomTile$Builder: java.lang.String mLabel -com.turingtechnologies.materialscrollbar.TouchScrollBar: TouchScrollBar(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconVisible -androidx.activity.R$id: int tag_unhandled_key_listeners -androidx.coordinatorlayout.R$dimen: int compat_button_inset_horizontal_material -com.tencent.bugly.proguard.v: int p -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void dispose() -androidx.preference.R$id: int action_mode_bar -androidx.appcompat.R$style: int TextAppearance_AppCompat_Body1 -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit PERCENT -com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy STRING -io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -wangdaye.com.geometricweather.R$attr: int rangeFillColor -com.google.android.material.R$styleable: int Layout_layout_constraintHeight_default -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_disabled_holo_light -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_11 -androidx.preference.R$dimen: int abc_text_size_caption_material -androidx.appcompat.widget.AppCompatImageButton: android.content.res.ColorStateList getSupportBackgroundTintList() -com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context,android.util.AttributeSet) -androidx.lifecycle.MediatorLiveData: MediatorLiveData() -okio.Pipe$PipeSource: void close() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial Imperial -androidx.hilt.work.R$dimen: int notification_top_pad -okhttp3.HttpUrl: java.lang.String percentDecode(java.lang.String,int,int,boolean) -com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getBackgroundTintList() -com.google.android.material.R$attr: int waveVariesBy -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderText -androidx.lifecycle.ComputableLiveData: androidx.lifecycle.LiveData mLiveData -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity -androidx.activity.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundTint -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit MGPCUM -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_pressedTranslationZ -com.google.android.material.slider.Slider: void setEnabled(boolean) -com.google.android.material.R$attr: int tabPaddingStart -com.google.android.material.slider.BaseSlider: void setValues(java.util.List) -okhttp3.logging.HttpLoggingInterceptor$Logger -androidx.constraintlayout.widget.R$attr: int drawableEndCompat -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_UPDATE_TIME -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String STYLE_URI -io.reactivex.internal.util.VolatileSizeArrayList: int size() -androidx.work.R$id: int action_text -com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_top_material -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -okhttp3.Request$Builder: okhttp3.Request$Builder addHeader(java.lang.String,java.lang.String) -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_go_search_api_material -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type getRawType() -com.google.android.material.R$styleable: int Layout_minWidth -androidx.preference.R$styleable: int AppCompatTheme_buttonBarButtonStyle -androidx.appcompat.R$id: int chronometer -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayColorCalibration -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object readKey(android.database.Cursor,int) -androidx.preference.UnPressableLinearLayout: UnPressableLinearLayout(android.content.Context) -com.google.android.material.R$attr: int maxVelocity -com.tencent.bugly.proguard.f: f() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleTintMode -com.amap.api.location.AMapLocationClient: void unRegisterLocationListener(com.amap.api.location.AMapLocationListener) -androidx.appcompat.resources.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.R$styleable: int Motion_drawPath -androidx.lifecycle.DefaultLifecycleObserver: void onStop(androidx.lifecycle.LifecycleOwner) -androidx.recyclerview.R$color -io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Predicate onNext -androidx.activity.R$drawable: int notification_bg_normal_pressed -androidx.fragment.R$id: int info -com.jaredrummler.android.colorpicker.R$layout: int preference_information_material -com.baidu.location.e.l$b: com.baidu.location.e.l$b a -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.disposables.Disposable upstream -androidx.appcompat.widget.Toolbar: void setTitleTextColor(int) -com.xw.repo.bubbleseekbar.R$color: int primary_material_dark -com.google.android.material.progressindicator.ProgressIndicator: void setLinearSeamless(boolean) -com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context,android.util.AttributeSet) -okio.Buffer: short readShortLe() -cyanogenmod.themes.IThemeService: void unregisterThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) -android.didikee.donate.R$style: int Widget_AppCompat_Spinner -okhttp3.Address: okhttp3.Dns dns -wangdaye.com.geometricweather.R$layout: int abc_tooltip -com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackActiveTintList() -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onStop() -com.google.android.material.R$id: int percent -com.xw.repo.bubbleseekbar.R$attr: int thumbTextPadding -com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Badge -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Small -io.reactivex.internal.util.NotificationLite$DisposableNotification: java.lang.String toString() -cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: java.util.List getDeviceComponentVersions() -wangdaye.com.geometricweather.R$styleable: int Layout_barrierAllowsGoneWidgets -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_today_stroke -androidx.constraintlayout.widget.R$drawable: int abc_text_cursor_material -com.amap.api.location.AMapLocation: void setCityCode(java.lang.String) -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken[] $VALUES -com.google.gson.stream.JsonWriter: java.lang.String[] REPLACEMENT_CHARS -com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundMode(int) -com.turingtechnologies.materialscrollbar.R$attr: int tabTextAppearance -com.tencent.bugly.crashreport.common.info.a: long Q -com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Headline6 -com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_default_mtrl_alpha -okhttp3.internal.cache.DiskLruCache$3 -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textColor -cyanogenmod.app.Profile$ProfileTrigger: int access$200(cyanogenmod.app.Profile$ProfileTrigger) -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -io.reactivex.internal.subscriptions.SubscriptionHelper -androidx.preference.R$styleable: int[] MenuGroup -androidx.preference.R$drawable: int notify_panel_notification_icon_bg -com.google.android.material.R$dimen: int mtrl_badge_long_text_horizontal_padding -cyanogenmod.app.ILiveLockScreenChangeListener -com.tencent.bugly.crashreport.common.info.a: long o() -com.google.android.material.R$id: int tag_unhandled_key_listeners -com.google.android.material.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -com.github.rahatarmanahmed.cpv.CircularProgressView: void setVisibility(int) -com.turingtechnologies.materialscrollbar.R$attr: int preserveIconSpacing -com.turingtechnologies.materialscrollbar.R$attr: int actionModeShareDrawable -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_checkedTextViewStyle -cyanogenmod.externalviews.KeyguardExternalView$2 -cyanogenmod.weatherservice.ServiceRequestResult: java.util.List getLocationLookupList() -com.amap.api.fence.GeoFenceClient: void setGeoFenceListener(com.amap.api.fence.GeoFenceListener) -james.adaptiveicon.R$styleable: int Toolbar_navigationContentDescription -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_thumb -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeMinTextSize -cyanogenmod.weather.WeatherInfo: double access$702(cyanogenmod.weather.WeatherInfo,double) -com.google.android.material.appbar.AppBarLayout: int getMinimumHeightForVisibleOverlappingContent() -android.didikee.donate.R$attr: int alertDialogTheme -androidx.appcompat.R$drawable: int btn_checkbox_unchecked_mtrl -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_ICONS -com.google.android.material.R$attr: int visibilityMode -retrofit2.Retrofit$Builder: java.util.concurrent.Executor callbackExecutor -androidx.constraintlayout.widget.R$layout: int notification_template_icon_group -com.google.android.material.R$anim: int abc_slide_in_top -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstHorizontalBias -io.reactivex.internal.schedulers.AbstractDirectTask: void setFuture(java.util.concurrent.Future) -james.adaptiveicon.R$styleable: int SwitchCompat_android_textOff -wangdaye.com.geometricweather.R$attr: int recyclerViewStyle -com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_material_light -androidx.constraintlayout.widget.R$attr: int checkedTextViewStyle -james.adaptiveicon.R$styleable: int AppCompatTheme_spinnerStyle -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginEnd -cyanogenmod.app.PartnerInterface: java.lang.String MODIFY_SOUND_SETTINGS_PERMISSION -com.jaredrummler.android.colorpicker.R$color: int abc_tint_spinner -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile build() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric() -cyanogenmod.library.R$styleable: int[] LiveLockScreen -com.google.android.gms.location.LocationSettingsResult: android.os.Parcelable$Creator CREATOR -okhttp3.Cookie: boolean httpOnly -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit FTPS -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -io.reactivex.Observable: io.reactivex.Observable takeUntil(io.reactivex.functions.Predicate) -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_side_padding -wangdaye.com.geometricweather.R$attr: int currentPageIndicatorColor -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: void onFailure(retrofit2.Call,java.lang.Throwable) -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setOnSwitchListener(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout$OnSwitchListener) -androidx.preference.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -retrofit2.DefaultCallAdapterFactory$1: retrofit2.DefaultCallAdapterFactory this$0 -com.google.android.material.R$string: int abc_action_bar_up_description -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_updateWeather_0 -com.jaredrummler.android.colorpicker.R$attr: int checkedTextViewStyle -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display1 -androidx.transition.R$styleable: int GradientColor_android_centerY -cyanogenmod.themes.IThemeService$Stub$Proxy: boolean isThemeBeingProcessed(java.lang.String) -com.google.android.material.R$styleable: int MenuView_android_itemTextAppearance -androidx.constraintlayout.widget.R$attr: int percentWidth -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: void setProgress(float) -androidx.appcompat.R$styleable: int[] ViewBackgroundHelper -wangdaye.com.geometricweather.R$menu: int activity_main -io.reactivex.exceptions.UndeliverableException -wangdaye.com.geometricweather.R$drawable: int ic_collected -androidx.dynamicanimation.R$id: int time -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_23 -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder addInterceptor(okhttp3.Interceptor) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: int UnitType -com.jaredrummler.android.colorpicker.R$attr: int listChoiceBackgroundIndicator -androidx.hilt.work.R$id: int accessibility_custom_action_30 -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose SignIn -androidx.vectordrawable.R$styleable: int[] GradientColorItem -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_48dp -com.google.android.gms.dynamite.DynamiteModule$DynamiteLoaderClassLoader -androidx.constraintlayout.widget.R$id: int normal -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu -androidx.customview.R$drawable: int notification_template_icon_low_bg -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation build() -com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_Material -androidx.vectordrawable.animated.R$drawable: int notification_bg_normal_pressed -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_max -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration -james.adaptiveicon.R$drawable: int abc_btn_check_to_on_mtrl_015 -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getCityId() -wangdaye.com.geometricweather.R$styleable: int[] KeyFramesAcceleration -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() -androidx.hilt.lifecycle.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu -cyanogenmod.app.Profile: int getProfileType() -com.turingtechnologies.materialscrollbar.DragScrollBar: float getIndicatorOffset() -androidx.transition.R$attr: int fontStyle -wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_entryValues -com.tencent.bugly.crashreport.biz.b: int g() -io.reactivex.internal.observers.ForEachWhileObserver: void onNext(java.lang.Object) -androidx.customview.R$drawable: int notification_bg_normal_pressed -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void dispose() -wangdaye.com.geometricweather.R$attr -com.google.android.material.R$attr: int textAppearanceHeadline1 -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getChina() -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_liftable -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -com.google.android.material.R$color: int mtrl_calendar_item_stroke_color -androidx.constraintlayout.widget.R$id: int action_menu_divider -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework -androidx.appcompat.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.preference.R$layout: int notification_action -io.reactivex.Observable: io.reactivex.Observable using(java.util.concurrent.Callable,io.reactivex.functions.Function,io.reactivex.functions.Consumer) -okhttp3.internal.platform.AndroidPlatform: boolean supportsAlpn() -androidx.preference.R$string: int abc_menu_delete_shortcut_label -wangdaye.com.geometricweather.R$attr: int limitBoundsTo -wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_bottom_end -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.internal.util.AtomicThrowable error -com.turingtechnologies.materialscrollbar.R$attr: int singleChoiceItemLayout -io.reactivex.internal.util.NotificationLite$SubscriptionNotification: org.reactivestreams.Subscription upstream -com.tencent.bugly.crashreport.common.info.PlugInBean: java.lang.String toString() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogPreferredPadding -cyanogenmod.hardware.ICMHardwareService$Stub: java.lang.String DESCRIPTOR -retrofit2.OkHttpCall: void cancel() -james.adaptiveicon.R$attr: int actionModeCloseDrawable -androidx.appcompat.R$styleable: int StateListDrawable_android_constantSize -org.greenrobot.greendao.AbstractDao: void loadAllUnlockOnWindowBounds(android.database.Cursor,android.database.CursorWindow,java.util.List) -james.adaptiveicon.R$string: int abc_action_mode_done -androidx.lifecycle.extensions.R$id: int time -wangdaye.com.geometricweather.R$id: int container_alert_display_view_indicator -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_LOCATION_PARAMETER -android.didikee.donate.R$style: int Widget_AppCompat_ActivityChooserView -io.reactivex.internal.subscriptions.SubscriptionHelper: void reportSubscriptionSet() -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindChillTemperature -wangdaye.com.geometricweather.R$color: int mtrl_filled_background_color -androidx.hilt.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Integer getAqiIndex() -com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingTop -android.didikee.donate.R$attr: int ratingBarStyleSmall -wangdaye.com.geometricweather.R$attr: int tabContentStart -com.turingtechnologies.materialscrollbar.R$anim: int abc_fade_in -android.didikee.donate.R$attr: int goIcon -cyanogenmod.app.CMContextConstants$Features: java.lang.String PROFILES -android.didikee.donate.R$styleable: int Toolbar_logo -wangdaye.com.geometricweather.R$id: int image -com.xw.repo.bubbleseekbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -com.google.android.gms.common.api.ResolvableApiException: android.app.PendingIntent getResolution() -androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView: void setHoverListener(androidx.appcompat.widget.MenuItemHoverListener) -com.google.android.material.R$color: int tooltip_background_light -io.reactivex.Observable: io.reactivex.Single toList() -retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.MediaType contentType() -com.jaredrummler.android.colorpicker.R$attr: int firstBaselineToTopHeight -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endColor -cyanogenmod.providers.CMSettings$System: java.lang.String LIVE_DISPLAY_HINTED -com.tencent.bugly.proguard.an: java.util.Map g -cyanogenmod.app.ProfileGroup: boolean validateOverrideUri(android.content.Context,android.net.Uri) -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure Pressure -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindSpinner -com.turingtechnologies.materialscrollbar.R$string: int abc_action_mode_done -com.google.android.material.R$attr: int windowFixedWidthMinor -wangdaye.com.geometricweather.settings.fragments.AppearanceSettingsFragment -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) -com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.ag a(int) -androidx.activity.R$id: int text2 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Inverse -com.turingtechnologies.materialscrollbar.R$id: int forever -androidx.drawerlayout.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean getBrandInfo() -okhttp3.internal.http2.Http2: Http2() -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onNext(java.lang.Object) -androidx.work.R$id: int line1 -androidx.constraintlayout.widget.R$attr: int panelMenuListTheme -androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionDuration(int) -wangdaye.com.geometricweather.R$layout: int preference_information -androidx.work.R$id: int accessibility_custom_action_10 -com.google.android.material.R$color: int mtrl_card_view_foreground -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatElevationResource(int) -com.jaredrummler.android.colorpicker.ColorPreference -wangdaye.com.geometricweather.R$attr: int cpv_thickness -androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_text_padding_right -androidx.preference.R$color: int material_deep_teal_200 -androidx.dynamicanimation.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.background.polling.work.worker.NormalUpdateWorker -com.google.android.material.R$id: int startVertical -okhttp3.MultipartBody: java.util.List parts() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_default -james.adaptiveicon.R$styleable: int ActionMode_height -wangdaye.com.geometricweather.R$attr: int allowDividerBelow -android.didikee.donate.R$styleable: int AppCompatTheme_listPopupWindowStyle -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitation -androidx.appcompat.R$attr: int dialogPreferredPadding -wangdaye.com.geometricweather.R$attr: int listChoiceIndicatorSingleAnimated -com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a c -com.turingtechnologies.materialscrollbar.R$id: int notification_main_column -androidx.preference.R$styleable: int FontFamilyFont_android_fontVariationSettings -okhttp3.WebSocket: boolean send(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeStyle -androidx.constraintlayout.widget.R$attr: int measureWithLargestChild -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean) -androidx.appcompat.widget.SearchView: java.lang.CharSequence getQueryHint() -wangdaye.com.geometricweather.R$attr: int cornerSizeBottomLeft -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_max -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.Map rights -james.adaptiveicon.R$styleable: int ActionBar_logo -retrofit2.ParameterHandler$Query: boolean encoded -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderPackage -androidx.appcompat.widget.SearchView: int getSuggestionCommitIconResId() -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconPadding -okhttp3.Cookie: int hashCode() -okhttp3.internal.http2.Http2Stream: java.util.Deque access$000(okhttp3.internal.http2.Http2Stream) -cyanogenmod.profiles.ConnectionSettings: void setOverride(boolean) -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean delayError -com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Display_TextInputEditText -com.jaredrummler.android.colorpicker.R$anim: int abc_slide_out_top -androidx.preference.R$styleable: int FontFamilyFont_android_fontStyle -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum -com.turingtechnologies.materialscrollbar.R$id: int none -okhttp3.Response: okhttp3.CacheControl cacheControl -androidx.viewpager2.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.R$layout: int abc_action_mode_bar -okhttp3.internal.cache.DiskLruCache: int valueCount -androidx.cardview.R$attr: int cardPreventCornerOverlap -com.xw.repo.bubbleseekbar.R$color: int error_color_material_dark -com.bumptech.glide.integration.okhttp.R$attr: int layout_anchorGravity -cyanogenmod.app.ThemeVersion: java.lang.String THEME_VERSION_FIELD_NAME -com.google.android.material.slider.Slider: Slider(android.content.Context) -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getIce() +com.google.android.material.slider.RangeSlider: float getThumbStrokeWidth() +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeTopRight +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_toBottomOf +com.amap.api.location.AMapLocation: AMapLocation(android.location.Location) +wangdaye.com.geometricweather.R$id: int item_tag +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.util.Date getPubTime() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.HistoryEntity,int) +okhttp3.HttpUrl: java.lang.String host() +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Placeholder +com.tencent.bugly.crashreport.common.info.a: java.lang.String G +org.greenrobot.greendao.database.DatabaseOpenHelper: int version +com.baidu.location.indoor.mapversion.c.a$d: double a(double) +androidx.preference.R$string: int abc_prepend_shortcut_label +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dark +androidx.preference.R$attr: int lineHeight +com.google.android.material.R$attr: int expandedTitleMarginBottom +cyanogenmod.app.ProfileGroup: java.lang.String TAG +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_barLength +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_1 +androidx.preference.R$attr: int titleTextStyle +androidx.fragment.R$id: int line3 +cyanogenmod.profiles.AirplaneModeSettings$BooleanState: AirplaneModeSettings$BooleanState() +androidx.preference.R$styleable: int AppCompatTextView_textAllCaps +androidx.hilt.lifecycle.R$drawable: int notify_panel_notification_icon_bg +cyanogenmod.themes.ThemeManager: void onClientDestroyed(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +com.google.android.material.R$color: int accent_material_dark +retrofit2.Response: okhttp3.ResponseBody errorBody() +com.google.android.material.R$drawable: int abc_textfield_search_default_mtrl_alpha +okhttp3.internal.platform.AndroidPlatform$CloseGuard: okhttp3.internal.platform.AndroidPlatform$CloseGuard get() +androidx.activity.R$color: int ripple_material_light +androidx.work.R$id: int action_container +cyanogenmod.weather.WeatherInfo$Builder: int mConditionCode +androidx.appcompat.R$style: int TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getWeatherSource() +android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +cyanogenmod.alarmclock.ClockContract: ClockContract() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: java.util.List getBrands() +wangdaye.com.geometricweather.R$layout: int design_menu_item_action_area +androidx.appcompat.R$styleable: int Toolbar_titleMargin +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endY +okhttp3.internal.platform.AndroidPlatform +okhttp3.internal.ws.WebSocketWriter: void writeClose(int,okio.ByteString) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_backgroundSplit +wangdaye.com.geometricweather.R$array: int clock_font_values +james.adaptiveicon.R$styleable: int FontFamilyFont_fontVariationSettings +com.google.android.material.button.MaterialButtonToggleGroup: void setSingleSelection(int) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void drainLoop() +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_disabled_holo_light +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +androidx.vectordrawable.animated.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$dimen: int mtrl_progress_circular_inset +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitationProbability(java.lang.Float) +com.google.android.material.bottomappbar.BottomAppBar: void setHideOnScroll(boolean) +james.adaptiveicon.R$attr: int activityChooserViewStyle +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetEnd +com.google.android.material.R$layout: int text_view_with_line_height_from_appearance +com.amap.api.location.AMapLocationClientOption: boolean isWifiScan() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: java.util.List getAlerts() +cyanogenmod.externalviews.IExternalViewProvider: void onDetach() +androidx.constraintlayout.widget.R$attr: R$attr() +com.xw.repo.bubbleseekbar.R$id: int search_badge +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean requestIsUnrepeatable(java.io.IOException,okhttp3.Request) +okhttp3.Handshake: java.security.Principal localPrincipal() +james.adaptiveicon.R$styleable: int FontFamilyFont_font +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIFIAP +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: FlowableOnBackpressureBuffer$BackpressureBufferSubscriber(org.reactivestreams.Subscriber,int,boolean,boolean,io.reactivex.functions.Action) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupMenu_Overflow +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextSpinner +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModePasteDrawable +okhttp3.internal.ws.RealWebSocket +com.google.android.material.card.MaterialCardView: void setBackgroundInternal(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: int phenomenoMaxColorId +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void drain() +com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context) +okhttp3.internal.Util: int indexOf(java.util.Comparator,java.lang.String[],java.lang.String) +androidx.hilt.R$drawable: int notification_bg_low_normal +okhttp3.Cache$CacheResponseBody: java.lang.String contentType +androidx.preference.R$drawable: int abc_list_longpressed_holo +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: double Value +cyanogenmod.app.ICustomTileListener: void onListenerConnected() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_30 +androidx.vectordrawable.R$id: int accessibility_custom_action_18 +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Small_Inverse +com.jaredrummler.android.colorpicker.R$style: int Widget_Support_CoordinatorLayout +androidx.constraintlayout.widget.R$attr: int drawableRightCompat +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: int TRANSACTION_onWeatherServiceProviderChanged_0 +com.turingtechnologies.materialscrollbar.TouchScrollBar: float getHandleOffset() +james.adaptiveicon.R$styleable: int AppCompatTheme_actionMenuTextColor +android.didikee.donate.R$dimen: int abc_edit_text_inset_bottom_material +android.didikee.donate.R$style: int TextAppearance_AppCompat_Large_Inverse +wangdaye.com.geometricweather.R$drawable: int weather_rain_3 +com.amap.api.fence.GeoFence: com.amap.api.location.AMapLocation getCurrentLocation() +okhttp3.ResponseBody$BomAwareReader +wangdaye.com.geometricweather.R$id: int tag_accessibility_actions com.bumptech.glide.integration.okhttp.R$integer: R$integer() -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColor -android.didikee.donate.R$styleable: int Toolbar_contentInsetStart -com.google.android.gms.location.zzay: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int priority -com.google.android.material.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_hideOnContentScroll -com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.R$string: int settings_title_exchange_day_night_temp_switch -wangdaye.com.geometricweather.R$drawable: int googleg_standard_color_18 -com.bumptech.glide.R$styleable: int GradientColorItem_android_offset -com.amap.api.location.LocationManagerBase: void unRegisterLocationListener(com.amap.api.location.AMapLocationListener) -okhttp3.internal.http2.Http2Codec: okhttp3.internal.http2.Http2Connection connection -com.jaredrummler.android.colorpicker.R$color: int button_material_dark -io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -org.greenrobot.greendao.AbstractDao: void deleteByKeyInTx(java.lang.Iterable) -androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX -com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Button -androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginLeft -io.reactivex.internal.util.NotificationLite: java.lang.Throwable getError(java.lang.Object) -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$style: int TextAppearance_AppCompat_Menu -com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_pressed -android.didikee.donate.R$layout: int notification_action_tombstone -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizePresetSizes -com.google.android.material.R$styleable: int AppCompatTheme_windowActionBarOverlay -android.didikee.donate.R$dimen: int abc_button_inset_horizontal_material -okhttp3.Cache$Entry -cyanogenmod.providers.CMSettings$Secure: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) -androidx.recyclerview.widget.StaggeredGridLayoutManager: StaggeredGridLayoutManager(android.content.Context,android.util.AttributeSet,int,int) -wangdaye.com.geometricweather.R$styleable: int Preference_android_order -cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onStop() -wangdaye.com.geometricweather.R$attr: int actionModeCutDrawable -com.xw.repo.bubbleseekbar.R$attr: int windowMinWidthMinor -android.didikee.donate.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -androidx.preference.R$dimen -okhttp3.ResponseBody$1: okio.BufferedSource val$content -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isAsync -com.tencent.bugly.proguard.am: void a(com.tencent.bugly.proguard.i) -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_drawableSize -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setCo(java.lang.String) -androidx.hilt.lifecycle.R$dimen: R$dimen() -com.google.android.material.R$attr: int expanded -cyanogenmod.power.IPerformanceManager -com.jaredrummler.android.colorpicker.R$color -wangdaye.com.geometricweather.R$attr: int ratingBarStyleIndicator -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupMenu_Overflow -cyanogenmod.app.Profile$DozeMode: int DEFAULT -com.amap.api.location.AMapLocation: java.lang.String g(com.amap.api.location.AMapLocation,java.lang.String) -io.reactivex.exceptions.MissingBackpressureException: MissingBackpressureException() -wangdaye.com.geometricweather.R$animator: int weather_sleet_1 -androidx.appcompat.widget.ActivityChooserView: void setActivityChooserModel(androidx.appcompat.widget.ActivityChooserModel) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar -android.didikee.donate.R$dimen: int abc_text_size_subtitle_material_toolbar -com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_android_background -com.amap.api.fence.GeoFence: float i -wangdaye.com.geometricweather.R$style: int PreferenceSummaryTextStyle -wangdaye.com.geometricweather.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice advice -com.google.android.material.R$styleable: int Toolbar_maxButtonHeight -androidx.constraintlayout.widget.R$string: int abc_action_bar_up_description -okio.Segment: void compact() -io.reactivex.internal.util.EmptyComponent: void onComplete() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd -wangdaye.com.geometricweather.R$attr: int statusBarBackground -wangdaye.com.geometricweather.R$string: int abc_activity_chooser_view_see_all -okhttp3.ResponseBody$1: long val$contentLength -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$id: int dragLeft -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_end -androidx.preference.R$style: int Widget_AppCompat_DrawerArrowToggle -androidx.appcompat.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -androidx.appcompat.widget.LinearLayoutCompat: int getVirtualChildCount() -wangdaye.com.geometricweather.R$id: int useLogo -com.google.android.material.R$drawable: int abc_btn_default_mtrl_shape -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_10 -android.didikee.donate.R$color: int switch_thumb_disabled_material_light -cyanogenmod.externalviews.KeyguardExternalView$10 -okhttp3.internal.ws.WebSocketReader$FrameCallback -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void data(boolean,int,okio.BufferedSource,int) -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windSpeedGust -james.adaptiveicon.R$styleable: int[] SearchView -com.turingtechnologies.materialscrollbar.R$dimen: int design_textinput_caption_translate_y -com.jaredrummler.android.colorpicker.R$attr: int buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getCeiling() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingTop -androidx.vectordrawable.animated.R$id: int blocking -android.support.v4.os.ResultReceiver$MyResultReceiver: ResultReceiver$MyResultReceiver(android.support.v4.os.ResultReceiver) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean cancelled -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState -androidx.preference.R$styleable: int AppCompatTheme_windowMinWidthMinor -retrofit2.Platform: boolean hasJava8Types -com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.badge.BadgeDrawable getOrCreateBadge() -androidx.preference.R$styleable: int DrawerArrowToggle_thickness -com.amap.api.location.APSService: android.os.IBinder onBind(android.content.Intent) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setStreet_number(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotationY -androidx.appcompat.R$styleable: int ViewBackgroundHelper_backgroundTintMode -com.jaredrummler.android.colorpicker.R$id: int src_over -okhttp3.logging.LoggingEventListener$Factory -com.google.android.material.card.MaterialCardView: int getCheckedIconSize() -androidx.appcompat.R$id: int add -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMarkTint -androidx.lifecycle.extensions.R$anim: int fragment_close_enter -com.amap.api.location.AMapLocation: java.lang.String getRoad() -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_20 -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_suggestionRowLayout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String to -james.adaptiveicon.R$drawable: int abc_ratingbar_small_material -wangdaye.com.geometricweather.R$string: int widget_clock_day_week -androidx.work.R$integer: R$integer() -androidx.constraintlayout.widget.R$attr: int deltaPolarAngle -wangdaye.com.geometricweather.R$string: int tag_precipitation -com.google.android.material.R$layout: int abc_popup_menu_header_item_layout -cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_DAY -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_motionStagger -androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontWeight -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent BOOT_ANIM -wangdaye.com.geometricweather.R$attr: int bsb_thumb_color -androidx.lifecycle.ComputableLiveData$3: void run() -androidx.constraintlayout.helper.widget.Flow: void setWrapMode(int) -okhttp3.RequestBody$3: void writeTo(okio.BufferedSink) -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxPlain() -com.google.android.material.R$color: int material_slider_thumb_color -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_114 -wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: java.lang.String styleId -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPrefixText() -androidx.preference.R$attr: int searchHintIcon -androidx.preference.R$attr: int dividerPadding -androidx.preference.R$layout: int select_dialog_multichoice_material -com.jaredrummler.android.colorpicker.R$style: int Platform_V21_AppCompat_Light -wangdaye.com.geometricweather.R$dimen: int widget_content_text_size -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_3_material -cyanogenmod.externalviews.KeyguardExternalView$11: KeyguardExternalView$11(cyanogenmod.externalviews.KeyguardExternalView,float) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: double Value -cyanogenmod.power.IPerformanceManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.google.android.material.R$attr: int daySelectedStyle -com.loc.k: java.lang.String c() -james.adaptiveicon.R$attr: int tooltipForegroundColor -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_extendMotionSpec -cyanogenmod.app.CMContextConstants$Features: java.lang.String STATUSBAR -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintEnd_toEndOf -wangdaye.com.geometricweather.R$styleable: int[] KeyAttribute -com.amap.api.fence.DistrictItem: java.lang.String getAdcode() -retrofit2.ParameterHandler$Body: retrofit2.Converter converter -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemPosition(int) -wangdaye.com.geometricweather.R$color: int material_slider_active_track_color -wangdaye.com.geometricweather.R$string: int feedback_hide_subtitle -com.google.android.material.R$string: int material_slider_range_start -okhttp3.EventListener: void connectionAcquired(okhttp3.Call,okhttp3.Connection) -androidx.hilt.R$styleable: int FontFamilyFont_fontStyle -androidx.appcompat.widget.AppCompatTextView: android.content.res.ColorStateList getSupportCompoundDrawablesTintList() -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceUrl() -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date to -com.google.android.material.R$dimen: int abc_dialog_min_width_minor -com.jaredrummler.android.colorpicker.R$style: int Widget_Compat_NotificationActionContainer -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: java.util.ArrayDeque buffers -org.greenrobot.greendao.AbstractDao: void executeInsertInTx(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Iterable,boolean) -com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar_PrimarySurface -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: FlowableOnBackpressureDrop$BackpressureDropSubscriber(org.reactivestreams.Subscriber,io.reactivex.functions.Consumer) -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,io.reactivex.Scheduler) -androidx.appcompat.R$attr: int defaultQueryHint -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial() -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onTimeout(long) -wangdaye.com.geometricweather.R$styleable: int RangeSlider_values -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout -james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$integer: int app_bar_elevation_anim_duration -androidx.preference.R$attr: int disableDependentsState -cyanogenmod.power.IPerformanceManager$Stub: cyanogenmod.power.IPerformanceManager asInterface(android.os.IBinder) -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -com.google.android.material.card.MaterialCardView: void setRadius(float) -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_DayNight -androidx.core.R$color -okhttp3.EventListener: void requestHeadersStart(okhttp3.Call) -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemBackground -androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context,android.util.AttributeSet) -org.greenrobot.greendao.AbstractDao: void assertSinglePk() -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) -okio.ByteString: char[] HEX_DIGITS -okhttp3.internal.connection.ConnectionSpecSelector: okhttp3.ConnectionSpec configureSecureSocket(javax.net.ssl.SSLSocket) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: AccuAlertResult$Area() -wangdaye.com.geometricweather.R$attr: int layout_constrainedWidth -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_splitTrack -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode valueOf(java.lang.String) -com.google.android.gms.location.ActivityTransitionRequest: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getHeadDescription() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind Wind -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long readKey(android.database.Cursor,int) -com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_material -io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: AirQuality(java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) -wangdaye.com.geometricweather.R$attr: int minSeparation -android.didikee.donate.R$drawable: int abc_textfield_search_activated_mtrl_alpha -android.didikee.donate.R$attr: int logo -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconDrawable -okhttp3.internal.NamedRunnable: void run() -wangdaye.com.geometricweather.R$string: int chip_text -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: java.lang.String getInterfaceDescriptor() -android.didikee.donate.R$id: int action_mode_close_button -com.google.android.material.button.MaterialButton: void setInsetTop(int) -com.google.android.material.R$styleable: int MenuView_android_headerBackground -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_android_windowAnimationStyle -com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_android_entries -com.turingtechnologies.materialscrollbar.R$color: int abc_color_highlight_material -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_width_overflow_material -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean done -androidx.constraintlayout.widget.R$layout: int notification_action -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State[] values() -wangdaye.com.geometricweather.R$drawable: int selectable_item_background_borderless -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMark -com.google.android.gms.common.server.response.zal: android.os.Parcelable$Creator CREATOR -androidx.hilt.lifecycle.R$string -wangdaye.com.geometricweather.R$drawable: int notif_temp_139 -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String advice -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$string: int yesterday -androidx.vectordrawable.animated.R$id: int tag_accessibility_heading -io.reactivex.Observable: io.reactivex.Observable interval(long,java.util.concurrent.TimeUnit) -com.google.android.material.R$attr: int showPaths -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_progressBarStyle -com.xw.repo.bubbleseekbar.R$attr: int actionModeCloseDrawable -androidx.hilt.work.R$styleable: int FontFamily_fontProviderCerts -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_searchViewStyle -androidx.appcompat.R$attr: int contentInsetEndWithActions -cyanogenmod.themes.IThemeService$Stub$Proxy: void registerThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf -com.google.android.material.R$id: int design_bottom_sheet -androidx.core.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitation -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_TextView -androidx.preference.R$layout: int abc_alert_dialog_material -androidx.preference.R$styleable: int SwitchCompat_thumbTint -wangdaye.com.geometricweather.R$string -com.tencent.bugly.proguard.af: byte[] a(byte[]) -com.xw.repo.bubbleseekbar.R$styleable: int[] BubbleSeekBar -com.jaredrummler.android.colorpicker.R$string: int abc_activity_chooser_view_see_all -cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType[] values() -wangdaye.com.geometricweather.R$layout: int test_design_radiobutton -com.turingtechnologies.materialscrollbar.R$id: int fixed -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void c(boolean) -com.xw.repo.bubbleseekbar.R$attr: int buttonBarButtonStyle -wangdaye.com.geometricweather.R$layout: int widget_clock_day_mini -wangdaye.com.geometricweather.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -cyanogenmod.app.ILiveLockScreenManager: boolean getLiveLockScreenEnabled() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List chuanyi -androidx.vectordrawable.R$id: int action_image -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorPrimaryDark -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: java.lang.String aqi -androidx.appcompat.R$styleable: int Toolbar_logoDescription -androidx.preference.R$attr: int contentInsetRight -androidx.preference.R$id: int notification_background -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_allowPresets -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_DES_CBC_SHA -okhttp3.Cache: void close() +wangdaye.com.geometricweather.R$dimen: int notification_top_pad +com.google.android.material.R$color: int switch_thumb_material_dark +com.google.android.material.R$drawable: int abc_ic_voice_search_api_material +io.reactivex.internal.util.VolatileSizeArrayList: java.util.ListIterator listIterator() +wangdaye.com.geometricweather.R$styleable: int[] SearchView +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: void run() +com.google.android.material.navigation.NavigationView: void setItemIconSize(int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: double Value +com.google.android.material.R$attr: int actionLayout +wangdaye.com.geometricweather.R$attr: int indicatorType +wangdaye.com.geometricweather.R$style: int widget_text_clock_analog +com.google.android.material.R$attr: int autoSizePresetSizes +android.didikee.donate.R$dimen: int abc_dialog_fixed_width_minor wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: WindDegree(float,boolean) -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: java.lang.Object index -com.google.android.material.R$styleable: int Transform_android_scaleY -com.jaredrummler.android.colorpicker.R$style: int Preference -retrofit2.Platform$Android$MainThreadExecutor -android.didikee.donate.R$styleable: int MenuItem_android_enabled -wangdaye.com.geometricweather.R$id: int postLayout -com.baidu.location.e.h$b: com.baidu.location.e.h$b[] values() -wangdaye.com.geometricweather.R$attr: int colorSwitchThumbNormal -com.jaredrummler.android.colorpicker.R$layout: int cpv_dialog_presets -cyanogenmod.app.ICustomTileListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.preference.R$integer: int abc_config_activityShortDur -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitationProbability() -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfileByName -wangdaye.com.geometricweather.R$attr: int layout_constraintTop_creator -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken valueOf(java.lang.String) -androidx.core.R$color: R$color() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabBarStyle -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf -androidx.constraintlayout.widget.R$dimen: int abc_button_inset_horizontal_material -androidx.constraintlayout.widget.R$styleable: int KeyPosition_framePosition -com.google.android.material.textfield.TextInputLayout: void setHelperText(java.lang.CharSequence) -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_inputType -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.R$id: int cpv_color_panel_old -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat -androidx.preference.R$color: int primary_text_disabled_material_light -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupMenu_Overflow -okhttp3.internal.http.RequestLine: java.lang.String get(okhttp3.Request,java.net.Proxy$Type) -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String a() -androidx.core.R$dimen: int notification_action_text_size -com.google.android.material.R$drawable: int abc_text_cursor_material -cyanogenmod.app.CustomTile$ExpandedItem$1 -androidx.hilt.R$styleable: int[] FontFamily -okhttp3.internal.platform.AndroidPlatform$CloseGuard: boolean warnIfOpen(java.lang.Object) -androidx.appcompat.R$attr: int controlBackground -wangdaye.com.geometricweather.R$drawable: int notification_template_icon_bg -com.google.android.material.R$attr: int layoutDuringTransition -androidx.appcompat.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 -androidx.swiperefreshlayout.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$drawable: int weather_haze_2 -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar -com.bumptech.glide.R$style: int Widget_Support_CoordinatorLayout -androidx.work.R$style: int Widget_Compat_NotificationActionText -androidx.constraintlayout.widget.R$id: int notification_main_column_container -com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalBias -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_1 -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: void run() -androidx.preference.R$layout: int abc_action_bar_up_container -com.jaredrummler.android.colorpicker.R$layout: int cpv_color_item_square -com.google.android.material.R$styleable: int ImageFilterView_altSrc -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_default -com.google.android.material.R$styleable: int CustomAttribute_customStringValue -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.Long getId() -com.google.android.material.R$id: int select_dialog_listview -androidx.constraintlayout.widget.R$dimen: int abc_dialog_padding_material -com.google.android.material.R$id: int action_bar_activity_content -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabSelectedTextColor -androidx.recyclerview.R$attr: int fontProviderFetchStrategy -com.github.rahatarmanahmed.cpv.CircularProgressView: float initialStartAngle -com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTheme -androidx.hilt.work.R$id: int line1 -com.google.android.material.R$attr: int onShow -wangdaye.com.geometricweather.R$attr: int actionButtonStyle -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonSetDate(java.util.Date) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: double Value -androidx.preference.R$dimen: int notification_small_icon_background_padding -okhttp3.internal.ws.RealWebSocket$Message: int formatOpcode -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: float unitFactor -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMenuView -wangdaye.com.geometricweather.R$styleable: int ActionBar_itemPadding -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$y -com.google.android.material.R$styleable: int Slider_thumbStrokeColor -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean cancelled -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory valueOf(java.lang.String) -androidx.customview.R$id: int notification_main_column -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupMenu -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter endArray() -retrofit2.HttpServiceMethod$CallAdapted: retrofit2.CallAdapter callAdapter -wangdaye.com.geometricweather.background.polling.permanent.observer.FakeForegroundService -androidx.hilt.R$id: int actions -okhttp3.internal.http2.Hpack$Reader: void readHeaders() -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable[] TERMINATED -okhttp3.internal.ws.WebSocketProtocol: long PAYLOAD_SHORT_MAX -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Caption -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_0 -wangdaye.com.geometricweather.R$drawable: int widget_trend_daily -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_showText -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -okhttp3.HttpUrl: char[] HEX_DIGITS -cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemBitmap(android.graphics.Bitmap) -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.util.List value -com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_SYSTEM -androidx.appcompat.widget.AppCompatEditText -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.util.List _queryWeatherEntity_HourlyEntityList(java.lang.String,java.lang.String) -com.google.android.material.R$id: int up -androidx.appcompat.R$styleable: int ActionBar_logo -android.didikee.donate.R$dimen: int abc_dialog_padding_top_material -cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_cancelLiveLockScreen -com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Widget_AppCompat_Toolbar -androidx.activity.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource CAIYUN -com.google.android.gms.base.R$id: int auto -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: java.lang.String unitAbbreviation -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: CircularProgressViewAdapter() -retrofit2.BuiltInConverters$VoidResponseBodyConverter: java.lang.Void convert(okhttp3.ResponseBody) -com.tencent.bugly.proguard.m: java.lang.String e -com.xw.repo.bubbleseekbar.R$id: int notification_background -androidx.preference.R$attr: int icon -androidx.hilt.R$id: int accessibility_custom_action_1 -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_30 -com.google.android.material.R$styleable: int RadialViewGroup_materialCircleRadius -androidx.fragment.app.FragmentActivity -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: ObservableSequenceEqualSingle$EqualCoordinator(io.reactivex.SingleObserver,int,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) -wangdaye.com.geometricweather.R$string: int feedback_request_location_permission_success -com.google.android.material.R$dimen: int abc_action_bar_elevation_material -retrofit2.BuiltInConverters$ToStringConverter: BuiltInConverters$ToStringConverter() -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitation() -com.google.android.material.timepicker.ClockHandView -wangdaye.com.geometricweather.R$string: int path_password_eye_mask_visible -androidx.core.R$styleable: int FontFamilyFont_font -com.google.android.material.R$drawable: int abc_btn_check_to_on_mtrl_000 -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_always_show_bubble -androidx.constraintlayout.helper.widget.Flow: void setPadding(int) -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_fontFamily -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_contrast -com.amap.api.fence.PoiItem: java.lang.String getPoiType() -com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight -com.google.android.material.R$attr: int roundPercent -androidx.customview.R$dimen: int compat_button_padding_horizontal_material -com.tencent.bugly.proguard.am: long m +com.google.android.material.R$attr: int boxStrokeErrorColor +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView_DropDown +okhttp3.internal.ws.WebSocketWriter: okio.Buffer$UnsafeCursor maskCursor +androidx.constraintlayout.widget.R$style: int Theme_AppCompat +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean checkTerminated(boolean,boolean,io.reactivex.Observer) +androidx.preference.R$styleable: int LinearLayoutCompat_android_baselineAligned +wangdaye.com.geometricweather.R$attr: int minSeparation +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$id: int tag_transition_group +com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase moonPhase +com.google.android.material.R$attr: int colorSecondary +okio.ByteString: int hashCode() +io.reactivex.internal.observers.InnerQueuedObserver: boolean done +androidx.appcompat.R$styleable: int SwitchCompat_android_textOn +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +cyanogenmod.power.IPerformanceManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.tencent.bugly.crashreport.common.info.b: long h() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Toolbar +androidx.dynamicanimation.R$id: R$id() +androidx.appcompat.R$style: int Base_V7_Theme_AppCompat +androidx.viewpager2.R$id: int accessibility_custom_action_13 +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.Scheduler$Worker worker +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.concurrent.Callable bufferSupplier +com.google.android.material.R$id: int text_input_start_icon +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeShareDrawable +wangdaye.com.geometricweather.settings.fragments.UnitSettingsFragment: UnitSettingsFragment() +androidx.vectordrawable.R$dimen: int notification_top_pad_large_text +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.preference.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part create(okhttp3.Headers,okhttp3.RequestBody) +com.xw.repo.bubbleseekbar.R$id: int select_dialog_listview +cyanogenmod.providers.CMSettings$Secure: float getFloat(android.content.ContentResolver,java.lang.String,float) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long readKey(android.database.Cursor,int) +cyanogenmod.weather.CMWeatherManager$2$1: CMWeatherManager$2$1(cyanogenmod.weather.CMWeatherManager$2,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener,int,cyanogenmod.weather.WeatherInfo) +com.tencent.bugly.crashreport.common.info.a: long q() +androidx.hilt.R$styleable: int GradientColor_android_startY +com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void drain() +io.reactivex.Observable: io.reactivex.Observable skipUntil(io.reactivex.ObservableSource) +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationZ +io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent valueOf(java.lang.String) +cyanogenmod.app.BaseLiveLockManagerService: boolean getLiveLockScreenEnabled() +androidx.fragment.R$dimen: int compat_notification_large_icon_max_height +android.didikee.donate.R$style: int Widget_AppCompat_SeekBar_Discrete +androidx.preference.R$attr: int listChoiceBackgroundIndicator +wangdaye.com.geometricweather.R$attr: int itemPadding +com.google.android.material.bottomnavigation.BottomNavigationPresenter$SavedState: android.os.Parcelable$Creator CREATOR +okhttp3.Address: Address(java.lang.String,int,okhttp3.Dns,javax.net.SocketFactory,javax.net.ssl.SSLSocketFactory,javax.net.ssl.HostnameVerifier,okhttp3.CertificatePinner,okhttp3.Authenticator,java.net.Proxy,java.util.List,java.util.List,java.net.ProxySelector) +okio.RealBufferedSource: java.lang.String readString(java.nio.charset.Charset) +com.google.android.material.card.MaterialCardView: float getCardViewRadius() +androidx.drawerlayout.R$id: int notification_main_column_container +retrofit2.adapter.rxjava2.ResultObservable: io.reactivex.Observable upstream +androidx.vectordrawable.R$id: int accessibility_custom_action_26 +okhttp3.logging.LoggingEventListener: void callFailed(okhttp3.Call,java.io.IOException) +com.turingtechnologies.materialscrollbar.R$attr: int actionModeStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: java.lang.String Unit +wangdaye.com.geometricweather.R$attr: int cornerSize +okio.Buffer: okio.ByteString hmacSha1(okio.ByteString) +okio.RealBufferedSource: long indexOf(byte,long,long) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ctd +com.tencent.bugly.proguard.y: void a(boolean) +androidx.appcompat.R$dimen: int abc_text_size_title_material +com.google.android.material.R$id: int staticPostLayout +wangdaye.com.geometricweather.R$string: int common_google_play_services_unsupported_text +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +wangdaye.com.geometricweather.R$attr: int actionModeWebSearchDrawable +com.jaredrummler.android.colorpicker.R$attr: int color +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Connection$ReaderRunnable readerRunnable +androidx.constraintlayout.widget.R$styleable: int Constraint_pathMotionArc +androidx.work.R$id: int accessibility_custom_action_15 +androidx.transition.R$id: int tag_transition_group +com.xw.repo.bubbleseekbar.R$id: int multiply +cyanogenmod.hardware.IThermalListenerCallback$Stub: cyanogenmod.hardware.IThermalListenerCallback asInterface(android.os.IBinder) +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupMenu +androidx.constraintlayout.widget.R$styleable: int[] LinearLayoutCompat_Layout +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void cancel() +wangdaye.com.geometricweather.R$dimen: int current_weather_icon_size +com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_id +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_elevation +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode valueOf(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonCompat +android.didikee.donate.R$styleable: int[] AppCompatTextView +androidx.lifecycle.extensions.R$color: int ripple_material_light +androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context,android.util.AttributeSet,int) +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +androidx.lifecycle.LiveData$1: androidx.lifecycle.LiveData this$0 +androidx.constraintlayout.widget.R$drawable: int abc_dialog_material_background +com.xw.repo.bubbleseekbar.R$layout: int abc_screen_simple +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean yesterday +com.google.android.material.slider.BaseSlider: int getTrackHeight() +okhttp3.internal.connection.StreamAllocation +com.turingtechnologies.materialscrollbar.R$style: int Base_AlertDialog_AppCompat +io.reactivex.internal.schedulers.AbstractDirectTask: AbstractDirectTask(java.lang.Runnable) +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_borderless_material +wangdaye.com.geometricweather.R$integer: int cpv_default_anim_steps +cyanogenmod.app.Profile: void setSecondaryUuids(java.util.List) +com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +james.adaptiveicon.R$attr: int arrowShaftLength +androidx.lifecycle.extensions.R$string: R$string() +wangdaye.com.geometricweather.R$color: int material_grey_300 +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_31 +androidx.preference.R$attr: int tooltipText +com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context,android.util.AttributeSet,int) +james.adaptiveicon.R$id: int actions +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getUvIndex() +androidx.work.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingRight +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int prefetch +com.google.android.material.floatingactionbutton.FloatingActionButton: FloatingActionButton(android.content.Context) +androidx.appcompat.widget.SwitchCompat: android.content.res.ColorStateList getThumbTintList() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: long endTime +androidx.appcompat.R$attr: int fontProviderPackage +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius +androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_max +com.google.gson.JsonIOException: long serialVersionUID +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: java.util.List getValue() +androidx.constraintlayout.widget.R$styleable: int MockView_mock_showLabel +retrofit2.ParameterHandler$RawPart: ParameterHandler$RawPart() +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$string: int fab_transformation_sheet_behavior +wangdaye.com.geometricweather.settings.fragments.AppearanceSettingsFragment: AppearanceSettingsFragment() +com.google.android.material.R$id: int title +androidx.viewpager2.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceVoice(android.content.Context) +okhttp3.Cache: okhttp3.internal.cache.InternalCache internalCache +com.google.android.material.R$styleable: int FloatingActionButton_shapeAppearanceOverlay +com.tencent.bugly.crashreport.crash.d: com.tencent.bugly.crashreport.crash.d a() +cyanogenmod.os.Concierge$ParcelInfo: int mStartPosition +androidx.appcompat.resources.R$id: int accessibility_custom_action_30 +androidx.preference.R$attr: int listPreferredItemHeightLarge +androidx.appcompat.R$string: int abc_prepend_shortcut_label +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.externalviews.KeyguardExternalView: boolean isInteractive() +androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context,android.util.AttributeSet,int) +com.tencent.bugly.crashreport.common.info.b: java.lang.String a(android.content.Context) +okhttp3.internal.ws.WebSocketProtocol: int B1_FLAG_MASK +com.google.android.material.slider.BaseSlider: void setThumbStrokeWidth(float) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_to_on_mtrl_015 +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_toTopOf +okio.BufferedSink: void flush() +com.jaredrummler.android.colorpicker.R$attr: int cpv_allowCustom +wangdaye.com.geometricweather.R$id: int line1 +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void clear() +com.google.android.gms.location.LocationSettingsStates +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_NULL_SHA +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_adjustable +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: java.lang.Throwable error +androidx.constraintlayout.widget.ConstraintLayout: int getMinHeight() +com.google.android.material.checkbox.MaterialCheckBox: android.content.res.ColorStateList getMaterialThemeColorsTintList() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +androidx.dynamicanimation.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRelativeHumidity(java.lang.Float) +cyanogenmod.app.LiveLockScreenInfo$Builder: int mPriority +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX getNames() +androidx.appcompat.R$styleable: int ActionBar_background +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_elevation +androidx.appcompat.R$color: int dim_foreground_material_dark +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_disabled_material_light +android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.google.android.gms.common.data.DataHolder +com.tencent.bugly.proguard.z: java.util.Map a +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_expandedHintEnabled +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeRainPrecipitationProbability +com.google.android.material.R$styleable: int Transition_constraintSetEnd +com.xw.repo.BubbleSeekBar: void setCustomSectionTextArray(com.xw.repo.BubbleSeekBar$CustomSectionTextArray) +com.google.android.material.R$dimen: int mtrl_fab_elevation +okhttp3.CacheControl$Builder: int maxStaleSeconds +retrofit2.http.PartMap: java.lang.String encoding() +com.bumptech.glide.request.RequestCoordinator$RequestState: boolean isComplete() +androidx.preference.R$color: int material_grey_900 +wangdaye.com.geometricweather.R$attr: int contentPaddingLeft +androidx.constraintlayout.widget.R$style: int Platform_V25_AppCompat +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: java.util.ArrayList cVersions +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_thumb_radius +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton_Overflow +androidx.preference.R$attr: int summaryOn +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver this$0 +android.didikee.donate.R$attr: int singleChoiceItemLayout +wangdaye.com.geometricweather.R$style: int content_text +androidx.dynamicanimation.R$dimen: int notification_content_margin_start +androidx.lifecycle.LiveData: java.lang.Object mDataLock +androidx.viewpager2.R$styleable: int FontFamilyFont_font +okhttp3.internal.ws.RealWebSocket$CancelRunnable: okhttp3.internal.ws.RealWebSocket this$0 +retrofit2.Utils: java.lang.reflect.Type resolveTypeVariable(java.lang.reflect.Type,java.lang.Class,java.lang.reflect.TypeVariable) +cyanogenmod.providers.WeatherContract$WeatherColumns: WeatherContract$WeatherColumns() +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$id: int container_main_header +okhttp3.RealCall: okio.Timeout timeout() +wangdaye.com.geometricweather.R$string: int feedback_align_end +com.tencent.bugly.BuglyStrategy: java.lang.Class j +wangdaye.com.geometricweather.R$layout: int item_icon_provider_get_more +androidx.appcompat.widget.AppCompatTextView: androidx.core.text.PrecomputedTextCompat$Params getTextMetricsParamsCompat() +com.google.android.material.R$styleable: int[] MotionTelltales +com.tencent.bugly.crashreport.biz.b: void a(android.content.Context,com.tencent.bugly.BuglyStrategy) +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy[] values() +cyanogenmod.app.CMContextConstants$Features: java.lang.String APP_SUGGEST +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: int temperature +com.google.android.material.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +com.amap.api.fence.PoiItem: double f +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$id: int dialog_location_help_container +james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Bridge +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments text +com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_Surface +com.google.android.material.R$style: int Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_entries +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setAqi(java.lang.String) +io.reactivex.internal.disposables.DisposableHelper: void reportDisposableSet() +com.google.android.material.R$id: int scrollIndicatorDown +com.google.android.material.R$attr: int layout_goneMarginBottom +okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE_TEMP +okhttp3.internal.connection.RealConnection: okhttp3.Route route +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +androidx.lifecycle.FullLifecycleObserver: void onResume(androidx.lifecycle.LifecycleOwner) +wangdaye.com.geometricweather.R$id: int widget_clock_day_wind +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long serialVersionUID +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: DailyEntityDao$Properties() +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRainPrecipitationProbability(java.lang.Float) +androidx.transition.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$styleable: int NavigationView_menu +androidx.recyclerview.R$attr: int spanCount +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder asBinder() +com.tencent.bugly.proguard.y$a: java.io.File b +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator RECENTS_SHOW_SEARCH_BAR_VALIDATOR +wangdaye.com.geometricweather.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric Metric +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_normal_material_light +wangdaye.com.geometricweather.R$id: int drawerLayout +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean isCancelled() +wangdaye.com.geometricweather.R$styleable: int ArcProgress_text +com.turingtechnologies.materialscrollbar.R$color: int foreground_material_dark +com.tencent.bugly.crashreport.crash.d: com.tencent.bugly.crashreport.crash.b d +wangdaye.com.geometricweather.R$drawable: int weather_wind +androidx.constraintlayout.widget.Guideline: void setGuidelineEnd(int) +retrofit2.DefaultCallAdapterFactory$1: retrofit2.Call adapt(retrofit2.Call) +com.tencent.bugly.crashreport.crash.e: java.lang.Thread$UncaughtExceptionHandler e +okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory sslSocketFactory +cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.StatusBarPanelCustomTile clone() +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconSize(int) +com.turingtechnologies.materialscrollbar.R$attr: int chipStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNo2(java.lang.Float) +com.turingtechnologies.materialscrollbar.R$color: int notification_icon_bg_color +androidx.vectordrawable.R$drawable: int notification_icon_background +androidx.core.R$id +androidx.constraintlayout.utils.widget.ImageFilterButton: void setBrightness(float) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu +androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_toId +com.google.android.material.R$styleable: int[] Snackbar +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_transitionPathRotate +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintStart_toStartOf +androidx.appcompat.R$id: int decor_content_parent +androidx.constraintlayout.widget.R$dimen: int abc_button_inset_vertical_material +wangdaye.com.geometricweather.R$style: int Base_V28_Theme_AppCompat_Light +com.google.android.material.R$style: int Base_Widget_AppCompat_TextView +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_keylines +androidx.preference.R$id: int time +androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableCompat +cyanogenmod.app.IProfileManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.R$drawable: int btn_radio_off_mtrl +wangdaye.com.geometricweather.main.Hilt_MainActivity +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_BRIGHTNESS_LEVEL +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Light +com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderText(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderAuthority +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_title_material_toolbar +androidx.hilt.lifecycle.R$attr: int fontProviderPackage +com.google.android.material.slider.Slider: int getLabelBehavior() +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xss +com.amap.api.fence.GeoFence: com.amap.api.location.DPoint getCenter() +androidx.constraintlayout.widget.R$styleable: int Transform_android_translationZ +com.jaredrummler.android.colorpicker.R$bool: int abc_allow_stacked_button_bar +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackInactiveTintList() +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_shapeAppearanceOverlay +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setMinuteInterval(int) +androidx.constraintlayout.widget.Group: Group(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$string: int mtrl_picker_range_header_only_start_selected +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: ObservableMergeWithSingle$MergeWithObserver(io.reactivex.Observer) +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.internal.operators.observable.ObservableRefCount parent +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_type +com.google.android.material.R$attr: int materialAlertDialogTitleIconStyle +com.jaredrummler.android.colorpicker.R$attr: int fastScrollHorizontalThumbDrawable +okhttp3.internal.http2.Http2Connection: void pushHeadersLater(int,java.util.List,boolean) +wangdaye.com.geometricweather.R$attr: int layout_goneMarginEnd +androidx.work.R$id: int accessibility_custom_action_25 +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.view.WindowManager access$500(cyanogenmod.externalviews.KeyguardExternalViewProviderService) +androidx.appcompat.R$dimen: int abc_seekbar_track_background_height_material +james.adaptiveicon.R$dimen: int abc_text_size_body_1_material +org.greenrobot.greendao.database.DatabaseOpenHelper: java.lang.String name +wangdaye.com.geometricweather.R$layout: int abc_action_bar_up_container +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature WindChillTemperature +cyanogenmod.app.suggest.ApplicationSuggestion: android.os.Parcelable$Creator CREATOR +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void drain() +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: io.reactivex.Scheduler$Worker worker +com.google.android.material.R$id: int forever +androidx.transition.R$style: R$style() +com.jaredrummler.android.colorpicker.R$attr: int preferenceTheme +com.google.android.material.R$style: int Base_V23_Theme_AppCompat +wangdaye.com.geometricweather.R$string: int donate +wangdaye.com.geometricweather.R$id: int list_item +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_grey +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endY +okhttp3.internal.http2.Http2Connection$7: void execute() +com.google.android.material.R$styleable: int MaterialTextView_android_lineHeight +com.github.rahatarmanahmed.cpv.CircularProgressView$8 +android.didikee.donate.R$styleable: int AppCompatTheme_android_windowAnimationStyle +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_colored_ripple_color +androidx.preference.R$styleable: int ActionBar_progressBarPadding +wangdaye.com.geometricweather.R$layout: int abc_action_menu_item_layout +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String grassDescription +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: int getMarginTop() +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_icon_vertical_padding_material +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listMenuViewStyle +wangdaye.com.geometricweather.R$id: int widget_day_week_week_3 +com.tencent.bugly.crashreport.common.strategy.StrategyBean: StrategyBean(android.os.Parcel) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterEnabled +androidx.appcompat.resources.R$attr +wangdaye.com.geometricweather.R$color: int design_fab_shadow_start_color +cyanogenmod.weatherservice.ServiceRequest: void reject(int) +okhttp3.internal.http2.Http2Reader: void readData(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String tempMax +com.amap.api.location.AMapLocation$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.R$styleable: int[] MotionLayout +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_LEGACY_THEME +wangdaye.com.geometricweather.R$string: int mtrl_picker_announce_current_selection +okio.Buffer: short readShortLe() +com.google.android.material.R$layout: int mtrl_picker_dialog +wangdaye.com.geometricweather.R$dimen: int standard_weather_icon_size +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: DefaultCallAdapterFactory$ExecutorCallbackCall$1(retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall,retrofit2.Callback) +com.xw.repo.bubbleseekbar.R$string: int abc_activitychooserview_choose_application +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherText +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_small_material +org.greenrobot.greendao.AbstractDaoSession: java.util.List loadAll(java.lang.Class) +com.google.android.material.R$styleable: int Layout_layout_editor_absoluteY +com.xw.repo.bubbleseekbar.R$dimen: int hint_alpha_material_dark +androidx.hilt.work.R$color +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: CNWeatherResult$HourlyForecast() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +okhttp3.Cookie: boolean secure() +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_backgroundTintMode +wangdaye.com.geometricweather.R$styleable: int[] MaterialButtonToggleGroup +okhttp3.internal.http2.PushObserver: okhttp3.internal.http2.PushObserver CANCEL +androidx.swiperefreshlayout.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$string: int transition_activity_search_bar +androidx.constraintlayout.widget.R$attr: int listPreferredItemHeightLarge +okio.ByteString: java.lang.String hex() +wangdaye.com.geometricweather.R$attr: int tabPaddingBottom +androidx.constraintlayout.widget.R$styleable: int[] FontFamily +okhttp3.internal.http2.Hpack$Reader: boolean isStaticHeader(int) +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_NoActionBar +androidx.preference.R$attr: int subMenuArrow +com.google.android.material.R$attr: int layout_constraintBaseline_toBaselineOf +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int getColor() +com.google.android.material.card.MaterialCardView: void setStrokeWidth(int) +androidx.appcompat.R$color: int abc_background_cache_hint_selector_material_dark +com.xw.repo.bubbleseekbar.R$attr: int iconTintMode +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onError(java.lang.Throwable) +com.tencent.bugly.proguard.ak: java.util.ArrayList p +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.Map rights +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SearchView +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: boolean isDisposed() +androidx.hilt.R$anim: int fragment_open_exit +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.MinutelyEntityDao getMinutelyEntityDao() +com.bumptech.glide.integration.okhttp.R$integer: int status_bar_notification_info_maxnum +com.google.android.material.R$styleable: int AppBarLayoutStates_state_lifted +com.jaredrummler.android.colorpicker.R$attr: int shouldDisableView +cyanogenmod.weatherservice.ServiceRequestResult$1 +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: long serialVersionUID +org.greenrobot.greendao.AbstractDaoSession: java.lang.Object load(java.lang.Class,java.lang.Object) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem +com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getSupportImageTintList() +okhttp3.Cache$CacheRequestImpl: okhttp3.internal.cache.DiskLruCache$Editor editor +androidx.preference.R$color: int primary_dark_material_light +okhttp3.internal.connection.RealConnection: void establishProtocol(okhttp3.internal.connection.ConnectionSpecSelector,int,okhttp3.Call,okhttp3.EventListener) +cyanogenmod.hardware.CMHardwareManager: java.util.List BOOLEAN_FEATURES +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setLibBuglySOFilePath(java.lang.String) +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: org.reactivestreams.Subscription upstream +wangdaye.com.geometricweather.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop +wangdaye.com.geometricweather.settings.dialogs.WechatDonateDialog +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +androidx.recyclerview.widget.RecyclerView: long getNanoTime() +com.tencent.bugly.crashreport.biz.UserInfoBean: java.lang.String c +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onError(java.lang.Throwable) +okhttp3.internal.connection.ConnectionSpecSelector +wangdaye.com.geometricweather.R$styleable: int CardView_cardMaxElevation +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_height_major +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NAME +com.tencent.bugly.proguard.z: byte[] a(byte[],int,int,java.lang.String) +com.xw.repo.bubbleseekbar.R$layout: int abc_screen_toolbar +wangdaye.com.geometricweather.R$string: int key_notification_hide_big_view +wangdaye.com.geometricweather.R$drawable: R$drawable() +wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format_example +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemPaddingRight +androidx.constraintlayout.widget.R$anim: int abc_tooltip_exit +androidx.constraintlayout.widget.R$attr: int flow_lastHorizontalBias +com.google.android.material.chip.Chip: void setCloseIconStartPadding(float) +james.adaptiveicon.R$styleable: int TextAppearance_android_shadowDy +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +com.google.android.material.R$dimen: int mtrl_textinput_outline_box_expanded_padding +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property China +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String TITLE +com.google.android.material.R$attr: int alpha +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_maxActionInlineWidth +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleContentDescription +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cp +androidx.appcompat.R$attr: int titleTextStyle +androidx.preference.R$styleable: int Toolbar_titleMarginStart +okhttp3.internal.http1.Http1Codec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Body2 +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity: DailyTrendWidgetConfigActivity() +retrofit2.BuiltInConverters$VoidResponseBodyConverter: retrofit2.BuiltInConverters$VoidResponseBodyConverter INSTANCE +james.adaptiveicon.R$attr: int contentInsetStartWithNavigation +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerSlack +androidx.swiperefreshlayout.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitationProbability +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedHeightMinor +okhttp3.MultipartBody: byte[] DASHDASH +com.turingtechnologies.materialscrollbar.R$attr: int commitIcon +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Headline +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadPing(okio.ByteString) +cyanogenmod.weather.CMWeatherManager$1: cyanogenmod.weather.CMWeatherManager this$0 +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean done +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textStyle +okhttp3.internal.http.HttpMethod: boolean permitsRequestBody(java.lang.String) +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Small +androidx.appcompat.widget.FitWindowsLinearLayout: FitWindowsLinearLayout(android.content.Context) +james.adaptiveicon.R$id: int action_mode_bar +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ProgressBar_Horizontal +androidx.core.R$attr: int fontWeight +com.google.android.material.R$styleable: int NavigationView_android_maxWidth +androidx.preference.R$style: int Base_Widget_AppCompat_ButtonBar +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: java.lang.String DESCRIPTOR +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_sync_duration +com.jaredrummler.android.colorpicker.R$color: int abc_btn_colored_text_material +androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$anim: int fragment_fade_exit +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_processCityNameLookupRequest +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Light +okio.Okio$1: okio.Timeout timeout() +androidx.viewpager.widget.ViewPager: void setPageMargin(int) +wangdaye.com.geometricweather.R$attr: int trackColorInactive +androidx.legacy.coreutils.R$id: int time +wangdaye.com.geometricweather.R$styleable: int Chip_chipIconSize +wangdaye.com.geometricweather.R$attr: int cornerFamilyTopRight +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_popupWindowStyle +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_hide_motion_spec +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_updatesContinuously +com.tencent.bugly.crashreport.common.info.b: java.lang.String[] a +com.tencent.bugly.CrashModule: com.tencent.bugly.BuglyStrategy$a b +retrofit2.RequestFactory$Builder: boolean hasBody +cyanogenmod.profiles.RingModeSettings: int describeContents() +com.bumptech.glide.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$style: int ThemeOverlay_Design_TextInputEditText +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_DialogWhenLarge +androidx.lifecycle.extensions.R$dimen: int notification_top_pad_large_text +com.xw.repo.bubbleseekbar.R$attr: int titleTextAppearance +com.tencent.bugly.crashreport.crash.e: void uncaughtException(java.lang.Thread,java.lang.Throwable) +cyanogenmod.app.PartnerInterface: void shutdownDevice() +androidx.appcompat.widget.SearchView$SearchAutoComplete: void setSearchView(androidx.appcompat.widget.SearchView) +com.xw.repo.bubbleseekbar.R$styleable: int[] Spinner +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_rebuildResourceCache +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setSensorEnable(boolean) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver +androidx.lifecycle.extensions.R$styleable: int[] GradientColor +cyanogenmod.app.PartnerInterface: void setMobileDataEnabled(boolean) +com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout_PrimarySurface +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean cancelled +android.didikee.donate.R$style: int Platform_V25_AppCompat +okhttp3.internal.cache2.Relay: void writeHeader(okio.ByteString,long,long) +okhttp3.internal.http2.Http2Writer: void dataFrame(int,byte,okio.Buffer,int) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_FONT +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ab_share_pack_mtrl_alpha +androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_text_size +android.didikee.donate.R$drawable: int abc_spinner_mtrl_am_alpha +okio.RealBufferedSink: okio.BufferedSink writeUtf8CodePoint(int) +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetLeft +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_card_spacing +com.google.android.material.bottomappbar.BottomAppBar: com.google.android.material.bottomappbar.BottomAppBar$Behavior getBehavior() +wangdaye.com.geometricweather.R$styleable: int Constraint_constraint_referenced_ids +androidx.transition.R$dimen: int notification_top_pad +androidx.constraintlayout.widget.R$id: int buttonPanel +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onComplete() +android.didikee.donate.R$id: int search_plate +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalAlign +androidx.drawerlayout.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.R$id: int easeOut +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_elevation +wangdaye.com.geometricweather.R$attr: int behavior_fitToContents +wangdaye.com.geometricweather.R$color: int colorAccent +okio.AsyncTimeout$2: long read(okio.Buffer,long) +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showDialog +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getProgress +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description Description +wangdaye.com.geometricweather.R$layout: int material_chip_input_combo +wangdaye.com.geometricweather.R$id: int dialog_location_help_manageIcon +androidx.appcompat.R$styleable: int AppCompatTheme_colorBackgroundFloating +com.google.android.material.R$styleable: int MaterialButton_iconGravity +okio.Buffer: long indexOf(okio.ByteString,long) +com.github.rahatarmanahmed.cpv.CircularProgressView: java.util.List listeners +cyanogenmod.externalviews.ExternalViewProviderService$Provider: int DEFAULT_WINDOW_TYPE +com.google.android.material.R$drawable: int abc_ic_star_half_black_16dp +androidx.lifecycle.ViewModelProviders$DefaultFactory +james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.util.Date EffectiveDate +okhttp3.internal.cache.DiskLruCache$Editor$1: void onException(java.io.IOException) +androidx.preference.R$dimen: int abc_config_prefDialogWidth +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Light +retrofit2.ParameterHandler$QueryMap: void apply(retrofit2.RequestBuilder,java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginEnd +androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getIndicatorOffset() +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderAuthority +com.turingtechnologies.materialscrollbar.R$attr: int ttcIndex +androidx.appcompat.R$style: int Animation_AppCompat_Tooltip +androidx.constraintlayout.widget.R$attr: int actionBarTabTextStyle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_3DES_EDE_CBC_SHA +cyanogenmod.externalviews.KeyguardExternalView$11 +wangdaye.com.geometricweather.R$attr: int drawable_res_on +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_height +cyanogenmod.externalviews.KeyguardExternalView$2 +androidx.constraintlayout.motion.widget.MotionHelper: void setProgress(float) +android.didikee.donate.R$id: int action_menu_divider +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: java.lang.String Unit +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_SETTINGS +cyanogenmod.weather.WeatherLocation: java.lang.String getCityId() +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_icon_null_animation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: int status +androidx.appcompat.R$attr: int backgroundStacked +androidx.appcompat.R$attr: int layout +androidx.fragment.R$layout: int notification_action_tombstone +androidx.preference.R$layout: int notification_template_part_time +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_gradientRadius +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeService sService +androidx.fragment.R$style: int TextAppearance_Compat_Notification_Title +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: java.lang.String getGroupName() +com.google.android.material.R$styleable: int Constraint_layout_constraintStart_toStartOf +android.didikee.donate.R$attr: int tickMarkTintMode +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: io.reactivex.Observer downstream +com.amap.api.fence.GeoFenceClient: int GEOFENCE_STAYED +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_dialog_background_inset +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Tooltip +androidx.constraintlayout.widget.R$styleable: int PropertySet_android_visibility +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_left_mtrl_dark +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabBarStyle +wangdaye.com.geometricweather.R$attr: int dialogIcon +com.jaredrummler.android.colorpicker.R$attr: int colorPrimaryDark +androidx.legacy.coreutils.R$style: int Widget_Compat_NotificationActionText +io.reactivex.observers.TestObserver$EmptyObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType[] values() +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder cache(okhttp3.Cache) +okhttp3.internal.http2.Hpack$Writer: int nextHeaderIndex +com.tencent.bugly.proguard.u: byte[] a(com.tencent.bugly.proguard.u,byte[]) +wangdaye.com.geometricweather.R$styleable: int CardView_contentPadding +androidx.appcompat.R$dimen: int abc_edit_text_inset_horizontal_material +androidx.lifecycle.LifecycleRegistry: boolean mNewEventOccurred +com.google.android.material.R$attr: int animate_relativeTo +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_Solid +io.reactivex.Observable: io.reactivex.Observable concatDelayError(io.reactivex.ObservableSource,int,boolean) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display2 +androidx.preference.R$drawable: int abc_ic_menu_cut_mtrl_alpha +com.google.android.material.R$id: int scrollIndicatorUp +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void run() +androidx.vectordrawable.R$id: R$id() +wangdaye.com.geometricweather.R$styleable: int KeyPosition_keyPositionType +com.google.android.material.R$styleable: int MaterialButton_android_checkable +com.jaredrummler.android.colorpicker.R$layout: int abc_screen_simple +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node getHead() +androidx.preference.R$attr: int initialActivityCount +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void dispose() +androidx.viewpager2.R$drawable: int notification_bg_low_pressed androidx.viewpager2.R$styleable: R$styleable() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float thunderstormPrecipitationProbability -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginStart -wangdaye.com.geometricweather.R$integer -androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable mLastDispatchRunnable -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_thickness -wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_layout -com.amap.api.fence.PoiItem: double getLongitude() -androidx.preference.R$styleable: int AppCompatTheme_actionDropDownStyle -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView_DropDown -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: java.lang.Object item -androidx.preference.R$attr: int buttonIconDimen -okhttp3.internal.http.CallServerInterceptor -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ChipGroup -com.google.android.material.R$styleable: int PropertySet_visibilityMode -okhttp3.internal.cache.DiskLruCache: void initialize() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabBarStyle -wangdaye.com.geometricweather.R$string: int abc_menu_shift_shortcut_label -james.adaptiveicon.R$styleable: int[] MenuItem -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setVisibility(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean) -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: int bufferSize -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTheme -com.google.android.material.R$attr: int actionBarTabTextStyle -android.didikee.donate.R$styleable: int LinearLayoutCompat_android_baselineAligned -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setEnableUserInfo(boolean) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode[] getDisplayModes() -cyanogenmod.app.ProfileGroup: java.lang.String TAG -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline3 -androidx.preference.R$styleable: int Spinner_android_prompt -com.tencent.bugly.crashreport.common.strategy.StrategyBean: StrategyBean(android.os.Parcel) -com.amap.api.location.AMapLocationQualityReport: boolean isInstalledHighDangerMockApp() -wangdaye.com.geometricweather.R$id: int home -androidx.viewpager.R$layout: int notification_template_part_chronometer -com.google.android.material.R$attr: int chipStandaloneStyle -androidx.preference.R$anim: int fragment_close_exit -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastHorizontalStyle -android.didikee.donate.R$styleable: int SwitchCompat_showText -androidx.core.app.RemoteActionCompatParcelizer -retrofit2.ParameterHandler$QueryMap: int p -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xss -androidx.hilt.R$id: int accessibility_custom_action_15 -okio.HashingSink: okio.HashingSink hmacSha256(okio.Sink,okio.ByteString) -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody build() -com.loc.h: void stopLocation() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_RC4_128_SHA -androidx.fragment.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierMargin -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder socket(java.net.Socket,java.lang.String,okio.BufferedSource,okio.BufferedSink) -cyanogenmod.app.BaseLiveLockManagerService: boolean hasPrivatePermissions() -okhttp3.internal.ws.RealWebSocket: int receivedPongCount -cyanogenmod.weather.RequestInfo: int mRequestType -com.google.android.material.R$animator: int mtrl_fab_show_motion_spec -androidx.appcompat.widget.AppCompatTextView: void setTextMetricsParamsCompat(androidx.core.text.PrecomputedTextCompat$Params) -androidx.preference.R$dimen: int item_touch_helper_swipe_escape_max_velocity -wangdaye.com.geometricweather.R$style: int Base_V28_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_bottomRecyclerView -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_material -androidx.preference.R$color: int abc_search_url_text_pressed -wangdaye.com.geometricweather.R$layout: int dialog_location_help -wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Bottom_Right -okio.HashingSink: okio.HashingSink md5(okio.Sink) -cyanogenmod.profiles.BrightnessSettings$1: BrightnessSettings$1() -androidx.appcompat.widget.AppCompatImageView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$attr: int animationMode -com.google.android.material.R$attr: int transitionFlags -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality airQuality -wangdaye.com.geometricweather.R$layout: int dialog_learn_more_about_geocoder -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -okio.Buffer: okio.Buffer writeTo(java.io.OutputStream,long) -androidx.preference.R$styleable: int[] DrawerArrowToggle -wangdaye.com.geometricweather.R$attr: int contentInsetEnd -androidx.core.widget.NestedScrollView: void setNestedScrollingEnabled(boolean) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_size +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String unitId +com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_android_popupBackground +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedWidthMajor +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_DrawerArrowToggle +androidx.viewpager2.R$integer: R$integer() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float relativeHumidity +com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_padding_vertical_material +android.didikee.donate.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void cancelSources() +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String value +james.adaptiveicon.R$layout: int abc_action_mode_bar +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean offer(java.lang.Object) +androidx.constraintlayout.widget.R$attr: int actionBarTabStyle +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry: java.lang.String type +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth +com.turingtechnologies.materialscrollbar.R$attr: int listItemLayout +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +com.google.android.material.R$styleable: int TextAppearance_android_shadowRadius +androidx.core.app.ComponentActivity: ComponentActivity() +com.tencent.bugly.proguard.i: int a(int,int,boolean) +wangdaye.com.geometricweather.R$color: int mtrl_textinput_focused_box_stroke_color +androidx.vectordrawable.animated.R$id: int text2 +okio.Buffer: byte readByte() +wangdaye.com.geometricweather.R$layout: int widget_day_week_tile +androidx.work.R$id: int accessibility_action_clickable_span +com.google.android.material.R$string: int mtrl_picker_save com.xw.repo.bubbleseekbar.R$attr: int contentInsetEndWithActions -com.google.android.material.R$styleable: int ConstraintSet_constraint_referenced_ids -com.xw.repo.bubbleseekbar.R$color: int background_material_light -wangdaye.com.geometricweather.R$styleable: int Constraint_visibilityMode -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1 -com.google.android.material.R$id: int material_timepicker_view -com.google.android.material.R$dimen: int mtrl_calendar_content_padding -james.adaptiveicon.R$color: int abc_hint_foreground_material_light -wangdaye.com.geometricweather.R$string: int content_desc_weather_alert_button -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMargin -androidx.preference.R$style: int Theme_AppCompat_Light_DarkActionBar -io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) -androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context,android.util.AttributeSet) -androidx.preference.R$styleable: int FontFamily_fontProviderPackage -cyanogenmod.themes.IThemeService: int getLastThemeChangeRequestType() -com.xw.repo.bubbleseekbar.R$id: int title -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart -androidx.work.R$color: int ripple_material_light -com.tencent.bugly.proguard.f: java.lang.String c -androidx.preference.R$interpolator: R$interpolator() -okhttp3.internal.cache.DiskLruCache$3: java.util.Iterator delegate -wangdaye.com.geometricweather.R$attr: int trackTintMode -cyanogenmod.app.ICustomTileListener -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_lineHeight -com.google.android.material.R$drawable: int abc_dialog_material_background -com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_android_layout -androidx.viewpager2.R$styleable: int GradientColor_android_tileMode -androidx.swiperefreshlayout.R$integer -wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_backgroundTint -org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType Session -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial -okhttp3.OkHttpClient$1: okhttp3.internal.connection.RealConnection get(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) -androidx.appcompat.R$drawable: int abc_btn_check_material_anim -com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: com.tencent.bugly.crashreport.crash.h5.a a(java.lang.String) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchTrackballEvent(android.view.MotionEvent) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -james.adaptiveicon.R$dimen: int abc_cascading_menus_min_smallest_width +okhttp3.Request: java.lang.String method() +androidx.fragment.R$dimen: int notification_top_pad_large_text +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: android.os.IBinder createExternalView(android.os.Bundle) +android.didikee.donate.R$color: int abc_tint_seek_thumb +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleTextAppearance +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setMoonDrawable(android.graphics.drawable.Drawable) +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type TOP +wangdaye.com.geometricweather.R$styleable: int[] StateListDrawableItem +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_77 +okhttp3.internal.cache.DiskLruCache$2: DiskLruCache$2(okhttp3.internal.cache.DiskLruCache,okio.Sink) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_shouldDisableView +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Primary +com.amap.api.fence.GeoFenceClient: void setGeoFenceAble(java.lang.String,boolean) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void emit() +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver +io.reactivex.internal.schedulers.AbstractDirectTask +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.coordinatorlayout.R$drawable: int notification_template_icon_bg +com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: FloatingActionButton$Behavior() +androidx.appcompat.R$styleable: int AppCompatTheme_panelMenuListWidth +androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +com.tencent.bugly.proguard.ak: java.lang.String c +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context) +androidx.loader.R$id: int action_text +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BEGIN_ARRAY +androidx.appcompat.R$styleable: int Toolbar_subtitleTextColor +wangdaye.com.geometricweather.R$attr: int extendMotionSpec +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.util.Date Rise +androidx.constraintlayout.widget.R$color: int switch_thumb_material_light +com.xw.repo.bubbleseekbar.R$styleable: int ButtonBarLayout_allowStacking +okhttp3.internal.http2.Http2Stream: void checkOutNotClosed() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain3h +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String pressure +androidx.preference.R$styleable: int[] DrawerArrowToggle +androidx.loader.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.R$drawable: int mtrl_ic_arrow_drop_down +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void request(long) +wangdaye.com.geometricweather.R$drawable: int selectable_item_background_borderless +com.jaredrummler.android.colorpicker.R$attr: int panelBackground +androidx.constraintlayout.widget.R$color: int bright_foreground_inverse_material_dark +androidx.core.R$styleable: int[] FontFamilyFont +okio.SegmentedByteString: java.lang.String hex() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String so2 +com.xw.repo.bubbleseekbar.R$id: int search_mag_icon +cyanogenmod.app.CustomTile$ExpandedStyle$1: cyanogenmod.app.CustomTile$ExpandedStyle createFromParcel(android.os.Parcel) +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onComplete() +androidx.constraintlayout.widget.R$attr: int defaultQueryHint +androidx.fragment.R$attr: int fontVariationSettings +james.adaptiveicon.R$id: int titleDividerNoCustom +android.didikee.donate.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +com.google.android.material.R$color: int mtrl_indicator_text_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getNo2() +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_icon_size +james.adaptiveicon.R$styleable: int AppCompatTheme_dividerVertical +wangdaye.com.geometricweather.R$attr: int onNegativeCross +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline6 +wangdaye.com.geometricweather.R$attr: int growMode +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType START +com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Primary +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder queryOnly() +james.adaptiveicon.R$styleable: int AlertDialog_listItemLayout +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: AccuDailyResult$DailyForecasts$Night$Wind() +androidx.preference.R$styleable: int TextAppearance_android_textSize +android.didikee.donate.R$attr: int panelMenuListWidth +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf +com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextEnabled(boolean) +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconTint +com.google.android.material.R$styleable: int Slider_tickVisible +com.google.android.material.R$dimen: int mtrl_btn_disabled_elevation +wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$id: int action_menu_divider +okio.ForwardingSource: long read(okio.Buffer,long) +com.xw.repo.bubbleseekbar.R$id: int action_text +okhttp3.internal.cache2.Relay: long bufferMaxSize +wangdaye.com.geometricweather.R$style: int Preference_PreferenceScreen +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: void setPathData(androidx.core.graphics.PathParser$PathDataNode[]) +androidx.vectordrawable.animated.R$drawable: int notification_tile_bg +androidx.constraintlayout.widget.R$attr: int listPreferredItemHeightSmall +wangdaye.com.geometricweather.R$dimen: int abc_switch_padding +androidx.constraintlayout.widget.R$id: int square +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getLogo() +androidx.recyclerview.R$attr: int fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$attr: int titleEnabled +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +okhttp3.internal.http2.Huffman: void encode(okio.ByteString,okio.BufferedSink) +com.google.android.material.R$style: int TextAppearance_Design_Placeholder +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeWindSpeed +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +cyanogenmod.weather.CMWeatherManager: java.util.Set access$000(cyanogenmod.weather.CMWeatherManager) +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_shapeAppearanceOverlay +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit +okhttp3.internal.http2.Http2Writer: java.util.logging.Logger logger +androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context) +com.google.android.material.R$styleable: int KeyCycle_android_alpha +wangdaye.com.geometricweather.R$bool: int enable_system_foreground_service_default +com.google.android.material.R$styleable: int SwitchCompat_thumbTintMode +androidx.legacy.coreutils.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.R$color: int abc_search_url_text_normal +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_visible +wangdaye.com.geometricweather.R$animator: int weather_hail_2 +androidx.preference.R$attr: int preferenceStyle +androidx.constraintlayout.widget.R$id: int autoComplete +wangdaye.com.geometricweather.R$attr: int onTouchUp +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_strokeWidth +com.tencent.bugly.proguard.f: java.util.Map j +wangdaye.com.geometricweather.common.basic.models.weather.Alert: Alert(long,java.util.Date,long,java.lang.String,java.lang.String,java.lang.String,int,int) +wangdaye.com.geometricweather.R$layout: int widget_clock_day_week +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getCoDesc() +james.adaptiveicon.R$drawable: int abc_ratingbar_indicator_material +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: java.util.concurrent.atomic.AtomicReference inner +com.turingtechnologies.materialscrollbar.R$styleable: int[] SwitchCompat +wangdaye.com.geometricweather.R$id: int action_settings +com.tencent.bugly.crashreport.common.info.a: boolean B +com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +com.google.android.material.slider.BaseSlider: float[] getActiveRange() +androidx.appcompat.resources.R$styleable: int[] FontFamilyFont +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: long serialVersionUID +wangdaye.com.geometricweather.R$animator: int weather_haze_3 +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onKeyguardDismissed() +androidx.appcompat.R$dimen: int abc_list_item_height_small_material +com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.Typeface getCollapsedTitleTypeface() +com.bumptech.glide.R$id: int async +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial Imperial +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColorHint +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List area +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String p +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.AbstractDaoSession getSession() +james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton_CloseMode +okhttp3.internal.io.FileSystem$1 +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_minHeight +wangdaye.com.geometricweather.R$layout: int abc_search_view +wangdaye.com.geometricweather.common.basic.models.weather.Daily: Daily(java.util.Date,long,wangdaye.com.geometricweather.common.basic.models.weather.HalfDay,wangdaye.com.geometricweather.common.basic.models.weather.HalfDay,wangdaye.com.geometricweather.common.basic.models.weather.Astro,wangdaye.com.geometricweather.common.basic.models.weather.Astro,wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase,wangdaye.com.geometricweather.common.basic.models.weather.AirQuality,wangdaye.com.geometricweather.common.basic.models.weather.Pollen,wangdaye.com.geometricweather.common.basic.models.weather.UV,float) +io.reactivex.disposables.ReferenceDisposable: boolean isDisposed() +android.didikee.donate.R$drawable: int abc_ic_arrow_drop_right_black_24dp +cyanogenmod.hardware.CMHardwareManager: int FEATURE_KEY_DISABLE +androidx.appcompat.widget.SwitchCompat: void setChecked(boolean) +james.adaptiveicon.R$color: int abc_background_cache_hint_selector_material_light +androidx.hilt.R$id: int text +android.didikee.donate.R$style: int Widget_AppCompat_Button_Small +com.google.android.material.R$attr: int iconStartPadding +retrofit2.Retrofit: java.lang.Object create(java.lang.Class) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView_Menu +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Medium +com.jaredrummler.android.colorpicker.R$style: int Base_DialogWindowTitleBackground_AppCompat +com.jaredrummler.android.colorpicker.R$styleable: int BackgroundStyle_android_selectableItemBackground +com.google.android.material.slider.RangeSlider: void setTickInactiveTintList(android.content.res.ColorStateList) +com.xw.repo.bubbleseekbar.R$styleable: int[] ListPopupWindow +james.adaptiveicon.R$id: int split_action_bar +com.google.android.material.R$drawable: int abc_list_divider_material +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.internal.util.ErrorMode errorMode +okhttp3.internal.http2.Hpack$Reader: void readIndexedHeader(int) +androidx.constraintlayout.widget.R$attr: int actionOverflowButtonStyle +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25 pm25 +com.jaredrummler.android.colorpicker.R$attr: int initialExpandedChildrenCount +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_visibility +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerComplete() +android.didikee.donate.R$layout +okhttp3.internal.http.CallServerInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableEnd +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object ASYNC_DISPOSED +androidx.preference.R$dimen: int abc_button_inset_vertical_material +com.google.gson.JsonIOException: JsonIOException(java.lang.String,java.lang.Throwable) +cyanogenmod.app.CMContextConstants$Features: java.lang.String TELEPHONY +wangdaye.com.geometricweather.R$attr: int showTitle +okhttp3.EventListener: void responseBodyStart(okhttp3.Call) +androidx.preference.R$styleable: int AppCompatTheme_tooltipForegroundColor +okhttp3.internal.publicsuffix.PublicSuffixDatabase: okhttp3.internal.publicsuffix.PublicSuffixDatabase get() +wangdaye.com.geometricweather.common.basic.models.weather.UV: boolean isValidIndex() +androidx.customview.R$id: int async +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7 +com.turingtechnologies.materialscrollbar.R$drawable: int indicator +com.google.android.material.R$styleable: int Constraint_layout_constraintCircle +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle +com.github.rahatarmanahmed.cpv.CircularProgressView$9: void onAnimationUpdate(android.animation.ValueAnimator) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: long serialVersionUID +com.google.android.material.R$styleable: int[] ListPopupWindow +wangdaye.com.geometricweather.R$style: int PreferenceFragment +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void dispose() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_VALIDATOR +com.google.android.material.R$color: int abc_btn_colored_borderless_text_material +com.tencent.bugly.proguard.u: java.util.concurrent.LinkedBlockingQueue h +com.google.android.material.internal.FlowLayout: int getRowCount() +androidx.appcompat.R$drawable: int abc_ic_clear_material +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void cancel() +okio.ForwardingTimeout: boolean hasDeadline() +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_content_inset_with_nav +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar +okio.Pipe$PipeSink: void flush() +android.didikee.donate.R$style: int Widget_AppCompat_Light_ListPopupWindow +com.google.gson.stream.JsonWriter: java.lang.String indent +wangdaye.com.geometricweather.R$styleable: int KeyCycle_framePosition +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_ensureMinTouchTargetSize +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.Observer downstream +com.jaredrummler.android.colorpicker.R$layout: int cpv_color_item_circle +wangdaye.com.geometricweather.R$drawable: int notif_temp_60 +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeFindDrawable +com.google.android.material.R$id: int parent_matrix +okhttp3.internal.Util: java.lang.String[] EMPTY_STRING_ARRAY +wangdaye.com.geometricweather.R$xml: int widget_day +androidx.preference.R$layout: int preference_category_material +wangdaye.com.geometricweather.R$style: int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +com.tencent.bugly.proguard.c +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: boolean isNoDirection() +io.reactivex.internal.util.VolatileSizeArrayList: boolean removeAll(java.util.Collection) +com.google.android.material.R$color: int mtrl_chip_background_color +androidx.viewpager2.R$drawable: int notification_template_icon_bg +okhttp3.Interceptor$Chain: int writeTimeoutMillis() +retrofit2.Converter$Factory: retrofit2.Converter stringConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +androidx.swiperefreshlayout.R$id: int chronometer +cyanogenmod.app.CustomTile: android.graphics.Bitmap remoteIcon +okhttp3.internal.http1.Http1Codec: okio.Source newFixedLengthSource(long) +com.google.android.material.R$attr: int itemShapeInsetTop +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setEn_US(java.lang.String) +wangdaye.com.geometricweather.R$attr: int menu +wangdaye.com.geometricweather.R$attr: int checkedIconEnabled +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_47 +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.R$dimen: int design_snackbar_action_inline_max_width +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: java.util.List brands +androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$styleable: int[] ViewStubCompat +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: java.lang.String icon +cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_MODES +wangdaye.com.geometricweather.R$styleable: int ActionBar_displayOptions +androidx.hilt.R$anim: int fragment_open_enter +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust +androidx.preference.R$layout: R$layout() +android.didikee.donate.R$dimen: int abc_edit_text_inset_top_material +james.adaptiveicon.R$id: int listMode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial Imperial +android.didikee.donate.R$dimen: int abc_text_size_menu_material +okhttp3.internal.connection.RealConnection: void connectSocket(int,int,okhttp3.Call,okhttp3.EventListener) +wangdaye.com.geometricweather.R$attr: int buttonBarNegativeButtonStyle +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Body1 +okhttp3.logging.LoggingEventListener: void responseBodyStart(okhttp3.Call) +com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_tick_mark_material +io.reactivex.internal.observers.ForEachWhileObserver +com.google.android.material.tabs.TabLayout +cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.ICMTelephonyManager getService() +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTemperature +cyanogenmod.weather.RequestInfo: boolean isQueryOnlyWeatherRequest() +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: int getMarginBottom() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Button +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Title_Inverse +androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context,android.util.AttributeSet,int) +james.adaptiveicon.R$dimen: int abc_panel_menu_list_width +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_corner_radius_small +james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$anim: R$anim() +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_1 +com.tencent.bugly.crashreport.common.info.a: java.lang.String f() +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: java.lang.String getNotificationStyleName(android.content.Context) +com.google.android.material.R$id: int layout +androidx.preference.R$attr: int iconifiedByDefault +com.google.android.material.R$layout: int notification_template_custom_big +androidx.hilt.work.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$styleable: int OnSwipe_limitBoundsTo +com.tencent.bugly.crashreport.common.info.b: boolean i(android.content.Context) +com.google.android.material.R$styleable: int[] OnClick +android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +retrofit2.Response: okhttp3.Response rawResponse +androidx.constraintlayout.widget.R$styleable: int Transform_android_scaleY +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_FixedSize_Bridge +retrofit2.adapter.rxjava2.ResultObservable +cyanogenmod.externalviews.KeyguardExternalView: android.content.Context mContext +androidx.viewpager.widget.ViewPager: void setOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_GLOBAL +okio.RealBufferedSource: boolean closed +android.didikee.donate.R$drawable: int abc_btn_check_to_on_mtrl_015 +androidx.dynamicanimation.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: double lat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: AccuCurrentResult$Precip1hr() +androidx.appcompat.R$styleable: int MenuItem_actionProviderClass +androidx.appcompat.widget.ButtonBarLayout: void setStacked(boolean) +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCityId +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_liftOnScrollTargetViewId +com.google.android.material.R$id: int startHorizontal +androidx.appcompat.R$style: int Platform_Widget_AppCompat_Spinner +james.adaptiveicon.R$styleable: int ActionBar_displayOptions +com.turingtechnologies.materialscrollbar.R$id: int action_bar_activity_content +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_previewSize +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabStyle +com.jaredrummler.android.colorpicker.R$integer: int cancel_button_image_alpha +com.tencent.bugly.crashreport.crash.h5.b: java.lang.String b +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SERBIAN +retrofit2.adapter.rxjava2.Result +com.tencent.bugly.crashreport.common.info.a: java.lang.String e() +james.adaptiveicon.R$id: int submit_area +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: AccuCurrentResult$WindGust$Speed$Imperial() +com.tencent.bugly.crashreport.common.info.a: com.tencent.bugly.crashreport.a D +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Date +wangdaye.com.geometricweather.R$string: int hourly_overview +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_editTextPreferenceStyle +android.didikee.donate.R$style: int Base_Widget_AppCompat_Spinner_Underlined +androidx.constraintlayout.widget.R$attr: int waveDecay +io.reactivex.exceptions.UndeliverableException: UndeliverableException(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dividerHorizontal +com.google.android.material.R$styleable: int Layout_layout_constraintVertical_bias +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_itemPadding +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +com.bumptech.glide.integration.okhttp.R$dimen: int notification_small_icon_size_as_large +com.xw.repo.bubbleseekbar.R$attr: int actionBarTheme +androidx.hilt.R$id: int action_divider +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +com.xw.repo.bubbleseekbar.R$string: R$string() +cyanogenmod.app.ThemeVersion: java.lang.String THEME_VERSION_FIELD_NAME +com.turingtechnologies.materialscrollbar.R$attr: int floatingActionButtonStyle +wangdaye.com.geometricweather.R$color: int colorLevel_6 +retrofit2.converter.gson.GsonRequestBodyConverter: okhttp3.RequestBody convert(java.lang.Object) +androidx.dynamicanimation.R$dimen: int notification_media_narrow_margin +android.didikee.donate.R$styleable: int ButtonBarLayout_allowStacking +android.didikee.donate.R$attr: int listLayout +cyanogenmod.themes.ThemeManager: android.os.Handler mHandler +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial +android.didikee.donate.R$style: int TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: long updatedOn +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endColor +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_android_enabled +com.tencent.bugly.crashreport.crash.e: boolean a(java.lang.Thread$UncaughtExceptionHandler) +com.jaredrummler.android.colorpicker.R$anim: int abc_fade_out +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableItem_android_id +androidx.constraintlayout.widget.R$color: int androidx_core_ripple_material_light +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation access$402(cyanogenmod.weather.RequestInfo,cyanogenmod.weather.WeatherLocation) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void access$600(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +android.didikee.donate.R$string: int app_name +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_SIGNAL_ICON +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void subscribeNext() +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context) +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +cyanogenmod.app.suggest.IAppSuggestManager +wangdaye.com.geometricweather.R$string: int settings_title_trend_horizontal_line_switch +com.google.android.material.R$animator: int mtrl_btn_state_list_anim +com.google.android.material.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$xml: int widget_multi_city +com.google.android.material.chip.ChipGroup: void setOnCheckedChangeListener(com.google.android.material.chip.ChipGroup$OnCheckedChangeListener) +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: int mMax +androidx.preference.Preference$BaseSavedState: android.os.Parcelable$Creator CREATOR +androidx.vectordrawable.R$id: int text +com.tencent.bugly.crashreport.CrashReport$UserStrategy +james.adaptiveicon.R$styleable: int[] SearchView +com.google.android.material.R$integer: int hide_password_duration +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacing +androidx.preference.R$attr: int gapBetweenBars +retrofit2.adapter.rxjava2.RxJava2CallAdapter: RxJava2CallAdapter(java.lang.reflect.Type,io.reactivex.Scheduler,boolean,boolean,boolean,boolean,boolean,boolean,boolean) +com.google.android.material.internal.NavigationMenuItemView: void setNeedsEmptyIcon(boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_handleOffColor +com.google.android.material.R$attr: int imageButtonStyle +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: double lat +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$attr: int checkedIcon +wangdaye.com.geometricweather.R$id: int mtrl_card_checked_layer_id +androidx.constraintlayout.widget.R$styleable: int Constraint_android_maxHeight +android.didikee.donate.R$dimen: int hint_alpha_material_dark +com.google.android.material.R$style: int Theme_MaterialComponents_BottomSheetDialog +com.google.gson.stream.JsonReader: int PEEKED_TRUE +androidx.preference.R$style: int TextAppearance_AppCompat_Small_Inverse +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar +cyanogenmod.app.CMContextConstants$Features: java.lang.String WEATHER_SERVICES +wangdaye.com.geometricweather.R$attr: int checkedIconSize +retrofit2.ParameterHandler$1 +wangdaye.com.geometricweather.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +com.google.android.material.internal.ScrimInsetsFrameLayout +androidx.constraintlayout.widget.ConstraintHelper +com.xw.repo.bubbleseekbar.R$attr: int bsb_second_track_color +io.reactivex.Observable: io.reactivex.Observable fromPublisher(org.reactivestreams.Publisher) +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_Solid +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setTitleText(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int SearchView_android_inputType +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: void setValue(java.lang.String) +com.google.android.gms.common.api.GoogleApiClient: void registerConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) +com.turingtechnologies.materialscrollbar.R$attr: int closeIconStartPadding +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +com.google.android.material.R$styleable: int ConstraintSet_android_pivotY +androidx.legacy.coreutils.R$color: int notification_icon_bg_color +androidx.loader.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$id: int transition_transform +androidx.dynamicanimation.animation.DynamicAnimation: void removeEndListener(androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationEndListener) +com.jaredrummler.android.colorpicker.R$dimen: int abc_button_inset_horizontal_material +cyanogenmod.weather.WeatherInfo$DayForecast: double getHigh() +okhttp3.internal.http2.Http2Reader: void readWindowUpdate(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Primary +james.adaptiveicon.R$dimen: int abc_search_view_preferred_width +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_800 +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: boolean isDisposed() +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() +cyanogenmod.app.ProfileManager: boolean profileExists(java.util.UUID) +cyanogenmod.themes.ThemeChangeRequest$1 +com.turingtechnologies.materialscrollbar.R$color: int abc_hint_foreground_material_dark +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeManager getInstance(android.content.Context) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_68 +androidx.preference.R$styleable: int ActionBar_progressBarStyle +io.reactivex.Observable: io.reactivex.Maybe firstElement() +androidx.constraintlayout.widget.R$id: int async +android.didikee.donate.R$styleable: int Toolbar_contentInsetEnd +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.util.concurrent.CompletableFuture adapt(retrofit2.Call) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemIconDisabledAlpha +com.google.android.material.R$styleable: int AppCompatTheme_colorControlActivated +wangdaye.com.geometricweather.R$color: int lightPrimary_1 +androidx.constraintlayout.widget.R$id: int bottom +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActivityChooserView +androidx.appcompat.R$styleable: int MenuItem_android_visible +com.amap.api.location.AMapLocation: java.lang.String w +okhttp3.internal.connection.StreamAllocation: boolean canceled +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall this$0 +com.xw.repo.bubbleseekbar.R$integer: int cancel_button_image_alpha +androidx.coordinatorlayout.R$attr: int fontVariationSettings +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int wip +okhttp3.FormBody: java.util.List encodedNames +android.didikee.donate.R$color: int primary_text_disabled_material_light +com.google.android.material.R$id: int path +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTemperature(int) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBaseline_creator +androidx.appcompat.widget.AppCompatSpinner: void setAdapter(android.widget.Adapter) +io.reactivex.internal.schedulers.AbstractDirectTask: long serialVersionUID +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_PopupMenu +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_right_mtrl_dark +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: boolean IsDaylightSaving +okhttp3.internal.http1.Http1Codec$AbstractSource: boolean closed +com.google.android.material.button.MaterialButton: void setChecked(boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionMenuTextColor +wangdaye.com.geometricweather.R$string: int sp_widget_day_setting +okhttp3.OkHttpClient: int callTimeout +james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$attr: int buttonGravity +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Small +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: IThemeChangeListener$Stub$Proxy(android.os.IBinder) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginEnd +okhttp3.internal.http2.Http2Stream: boolean isOpen() +com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_inset_vertical_material +com.github.rahatarmanahmed.cpv.R$attr: int cpv_thickness +androidx.loader.content.Loader: void unregisterOnLoadCanceledListener(androidx.loader.content.Loader$OnLoadCanceledListener) +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView_DropDown +androidx.hilt.lifecycle.R$id: int visible_removing_fragment_view_tag +com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_swipe_escape_max_velocity +androidx.viewpager.widget.PagerTabStrip: int getTabIndicatorColor() +androidx.constraintlayout.widget.R$styleable: int MotionHelper_onShow +com.google.android.material.R$attr: int layout_goneMarginTop +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX() +androidx.viewpager2.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day +wangdaye.com.geometricweather.R$array: int notification_text_colors +com.amap.api.location.AMapLocationClientOption: boolean isGpsFirst() +androidx.constraintlayout.widget.R$attr: int titleMargin +com.tencent.bugly.crashreport.CrashReport: void postCatchedException(java.lang.Throwable) +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder readTimeout(long,java.util.concurrent.TimeUnit) james.adaptiveicon.R$styleable: int ActionBar_divider -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityResumed(android.app.Activity) -james.adaptiveicon.R$style: int Theme_AppCompat_CompactMenu -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar -com.tencent.bugly.proguard.ap: java.lang.Object clone() -io.reactivex.Observable: io.reactivex.Observable wrap(io.reactivex.ObservableSource) -androidx.swiperefreshlayout.R$dimen: int compat_control_corner_material -androidx.legacy.coreutils.R$dimen: int compat_button_padding_horizontal_material -cyanogenmod.externalviews.KeyguardExternalView$11: cyanogenmod.externalviews.KeyguardExternalView this$0 -wangdaye.com.geometricweather.R$attr: int dividerPadding -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float pressure -org.greenrobot.greendao.AbstractDao: boolean isEntityUpdateable() -com.google.android.material.R$attr: int colorPrimary -androidx.appcompat.R$styleable: int SearchView_closeIcon +androidx.recyclerview.R$dimen: int compat_button_inset_horizontal_material +androidx.lifecycle.Lifecycling: Lifecycling() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: int CategoryValue +androidx.appcompat.R$drawable: int abc_tab_indicator_material +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_registerListener +wangdaye.com.geometricweather.R$drawable: int ic_uv +com.google.android.material.R$styleable: int CoordinatorLayout_statusBarBackground +com.jaredrummler.android.colorpicker.R$attr: int panelMenuListWidth wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: AccuDailyResult$DailyForecasts$Day$Wind() -cyanogenmod.app.CustomTileListenerService: int mCurrentUser -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_SearchView -androidx.fragment.R$id: int tag_accessibility_pane_title -okio.Timeout: okio.Timeout deadline(long,java.util.concurrent.TimeUnit) -androidx.constraintlayout.widget.R$attr: int motionStagger -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_srcCompat -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindLevel(java.lang.String) -okhttp3.MultipartBody$Part: okhttp3.RequestBody body() -okhttp3.internal.Util$2: Util$2(java.lang.String,boolean) -androidx.transition.R$id: int transition_position -androidx.loader.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar +androidx.preference.R$styleable: int Fragment_android_name +james.adaptiveicon.R$dimen +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabText +io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onSubscribe +wangdaye.com.geometricweather.R$attr: int counterOverflowTextColor +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: long endValidityTime +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: void setKeyLineVisibility(boolean) +james.adaptiveicon.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +android.didikee.donate.R$attr: int imageButtonStyle +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver +cyanogenmod.app.IPartnerInterface$Stub$Proxy: void setMobileDataEnabled(boolean) +wangdaye.com.geometricweather.db.entities.AlertEntity: int color +com.google.android.material.R$color: int highlighted_text_material_dark +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_48dp +wangdaye.com.geometricweather.R$string: int mtrl_badge_numberless_content_description +com.xw.repo.bubbleseekbar.R$attr: int bsb_show_section_text +com.tencent.bugly.crashreport.crash.jni.a: com.tencent.bugly.crashreport.crash.b b +wangdaye.com.geometricweather.R$attr: int colorControlNormal +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String datetime +wangdaye.com.geometricweather.background.polling.work.worker.AsyncUpdateWorker +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_8 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String hourlyForecast +wangdaye.com.geometricweather.R$dimen: int abc_control_corner_material +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSo2() +com.google.android.material.R$attr: int titleEnabled +com.google.android.material.slider.RangeSlider: void setThumbStrokeWidthResource(int) +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog +com.google.android.material.R$attr: int panelMenuListWidth +androidx.appcompat.R$styleable: int MenuItem_showAsAction +com.google.android.material.R$drawable: int material_ic_keyboard_arrow_previous_black_24dp +com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_default +wangdaye.com.geometricweather.R$dimen: int abc_text_size_subtitle_material_toolbar +wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_radio +retrofit2.adapter.rxjava2.CallExecuteObservable: void subscribeActual(io.reactivex.Observer) +wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMarkTintMode +wangdaye.com.geometricweather.R$id: int container_main_aqi_recyclerView +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetEnd +androidx.appcompat.R$dimen +android.didikee.donate.R$styleable: int Toolbar_subtitle +wangdaye.com.geometricweather.R$id: int spinner +com.google.android.material.R$dimen: int design_tab_text_size_2line +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: MfHistoryResult$History$Precipitation() +wangdaye.com.geometricweather.R$attr: int bsb_anim_duration +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginTop +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitation(java.lang.Float) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_backgroundTint +android.didikee.donate.R$color: int material_grey_900 +com.tencent.bugly.proguard.am: java.lang.String l +cyanogenmod.externalviews.KeyguardExternalView$10 +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +android.didikee.donate.R$styleable: int AppCompatTextView_drawableTint +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_font +com.xw.repo.bubbleseekbar.R$attr: int backgroundStacked +androidx.preference.R$style: int Theme_AppCompat_Light_Dialog +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$bool +okhttp3.ConnectionSpec: boolean supportsTlsExtensions() +cyanogenmod.hardware.CMHardwareManager: int getNumGammaControls() +com.google.android.material.R$styleable: int SnackbarLayout_android_maxWidth +wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeContainer +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.internal.util.AtomicThrowable error +com.google.android.material.R$styleable: int TextInputLayout_suffixTextAppearance +wangdaye.com.geometricweather.R$id: int ragweedTitle +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_summaryOff +androidx.core.R$dimen: int notification_right_side_padding_top +com.google.android.material.R$style: int Base_DialogWindowTitleBackground_AppCompat +androidx.preference.R$layout: int abc_search_view +androidx.loader.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.R$attr: int arrowShaftLength +androidx.hilt.work.R$drawable: int notification_template_icon_low_bg +androidx.preference.SwitchPreferenceCompat +androidx.appcompat.R$attr: int buttonBarNeutralButtonStyle +com.google.android.material.R$attr: int badgeTextColor +james.adaptiveicon.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String weatherText +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeCloudCover(java.lang.Integer) +androidx.preference.R$style: int Preference_SeekBarPreference_Material +androidx.core.R$id: int accessibility_custom_action_11 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_background_transition_holo_light +io.reactivex.Observable: io.reactivex.Observable distinct(io.reactivex.functions.Function,java.util.concurrent.Callable) +cyanogenmod.app.IProfileManager$Stub$Proxy: void updateNotificationGroup(android.app.NotificationGroup) +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_share_mtrl_alpha +cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,cyanogenmod.app.CustomTile,android.os.UserHandle) +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_stackFromEnd +com.amap.api.fence.GeoFenceClient: com.amap.api.fence.GeoFenceManagerBase a(android.content.Context) +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +com.amap.api.fence.GeoFence: int ERROR_CODE_FAILURE_CONNECTION +androidx.appcompat.R$styleable: int SearchView_searchHintIcon +cyanogenmod.app.LiveLockScreenInfo +com.turingtechnologies.materialscrollbar.R$styleable: int[] GradientColor +androidx.appcompat.widget.AppCompatSpinner$SavedState +androidx.fragment.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_14 +cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge +io.reactivex.exceptions.OnErrorNotImplementedException: long serialVersionUID +androidx.preference.R$styleable: int SeekBarPreference_android_layout +com.xw.repo.bubbleseekbar.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.background.polling.work.worker.AsyncWorker +wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status[] values() +androidx.lifecycle.AndroidViewModel: AndroidViewModel(android.app.Application) +androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int dialogLayout +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_DES_CBC_SHA +androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_material_anim +wangdaye.com.geometricweather.R$id: int material_timepicker_mode_button +com.google.android.material.R$styleable: int TabLayout_tabUnboundedRipple +io.reactivex.internal.util.EmptyComponent: void onSubscribe(org.reactivestreams.Subscription) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingStart +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme_Dark +wangdaye.com.geometricweather.R$styleable: int BackgroundStyle_selectableItemBackground +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setComponent(java.lang.String,java.lang.String) +cyanogenmod.providers.DataUsageContract: java.lang.String[] PROJECTION_ALL +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Switch +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: KeyguardExternalViewProviderService$1$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService$1,android.os.Bundle) +androidx.lifecycle.ProcessLifecycleOwner$3$1: androidx.lifecycle.ProcessLifecycleOwner$3 this$1 +androidx.preference.R$layout: int custom_dialog +com.jaredrummler.android.colorpicker.R$attr: int windowFixedWidthMajor +wangdaye.com.geometricweather.R$styleable: int[] CollapsingToolbarLayout +androidx.fragment.R$attr: int fontStyle +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_Underlined +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +okhttp3.MultipartBody: java.lang.String boundary() +com.google.android.material.R$styleable: int Constraint_android_maxHeight +cyanogenmod.themes.IThemeChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +androidx.preference.R$attr: int iconTint +com.tencent.bugly.proguard.z: java.lang.String a() +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature +androidx.lifecycle.extensions.R$id: int tag_accessibility_actions +com.google.android.material.R$styleable: int ConstraintSet_android_rotationY +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_112 +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature +io.reactivex.exceptions.CompositeException: java.util.List exceptions +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_textColorHint +androidx.appcompat.R$styleable: int Toolbar_logo +james.adaptiveicon.R$color: int highlighted_text_material_dark +okhttp3.internal.ws.RealWebSocket: java.lang.String receivedCloseReason +wangdaye.com.geometricweather.R$attr: int chipIcon +androidx.viewpager2.adapter.FragmentStateAdapter$5 +wangdaye.com.geometricweather.R$drawable: int notif_temp_45 +james.adaptiveicon.R$attr: int listMenuViewStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorError +com.google.android.material.R$styleable: int OnSwipe_nestedScrollFlags +androidx.hilt.lifecycle.R$attr: int font +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_android_layout +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_weight +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_background +androidx.coordinatorlayout.R$attr: int fontProviderAuthority +com.google.android.material.R$attr: int chipIcon +androidx.appcompat.R$drawable: int abc_item_background_holo_light +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$RecycledViewPool getRecycledViewPool() +androidx.customview.R$id: int title +com.google.gson.stream.JsonReader: void push(int) +com.tencent.bugly.crashreport.crash.jni.a: a(android.content.Context,com.tencent.bugly.crashreport.common.info.a,com.tencent.bugly.crashreport.crash.b,com.tencent.bugly.crashreport.common.strategy.a) +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_buttonIconDimen +okio.Buffer$UnsafeCursor: byte[] data +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_bottom_padding +wangdaye.com.geometricweather.R$attr: int alertDialogTheme +android.didikee.donate.R$dimen: int abc_dialog_title_divider_material +androidx.preference.R$dimen: int item_touch_helper_swipe_escape_max_velocity +androidx.hilt.R$id: int notification_background +okhttp3.internal.platform.AndroidPlatform: void logCloseableLeak(java.lang.String,java.lang.Object) +androidx.appcompat.R$styleable: int[] AppCompatImageView +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_maxHeight +io.reactivex.internal.util.NotificationLite: boolean isComplete(java.lang.Object) +com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: void setValue(java.util.List) +androidx.preference.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.google.android.material.R$attr: int mock_diagonalsColor +okhttp3.internal.tls.DistinguishedNameParser: int end +cyanogenmod.weather.RequestInfo$Builder: RequestInfo$Builder(cyanogenmod.weather.IRequestInfoListener) +okio.DeflaterSink: java.util.zip.Deflater deflater +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue getOrCreateQueue() +okhttp3.WebSocketListener: void onMessage(okhttp3.WebSocket,java.lang.String) +androidx.constraintlayout.motion.widget.MotionLayout: androidx.constraintlayout.motion.widget.DesignTool getDesignTool() +wangdaye.com.geometricweather.db.entities.AlertEntity: void setWeatherSource(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.List value +androidx.recyclerview.R$id: int right_side +io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int actionBarDivider +com.google.android.material.R$id: int material_timepicker_ok_button +com.tencent.bugly.proguard.u: boolean b() +cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri getDownloadUri() +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemDrawable(int) +androidx.lifecycle.FullLifecycleObserverAdapter +androidx.appcompat.R$style: int Widget_AppCompat_ImageButton +androidx.preference.R$id: int title_template +androidx.coordinatorlayout.R$styleable: int GradientColor_android_tileMode +androidx.constraintlayout.widget.R$attr: int flow_horizontalAlign +androidx.constraintlayout.widget.R$styleable: int ActionBar_progressBarPadding +okhttp3.internal.http2.Http2Reader$ContinuationSource: okio.Timeout timeout() +com.turingtechnologies.materialscrollbar.R$integer: int mtrl_btn_anim_delay_ms +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.functions.Function mapper +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotationY +androidx.core.R$layout +com.xw.repo.bubbleseekbar.R$attr: int dividerPadding +okio.Sink +com.google.android.material.R$styleable: int MaterialCalendarItem_itemFillColor +wangdaye.com.geometricweather.R$attr: int buttonStyleSmall +androidx.fragment.R$string: R$string() +androidx.fragment.R$style: int TextAppearance_Compat_Notification_Time +android.didikee.donate.R$styleable: int MenuItem_android_onClick +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionBar +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +androidx.preference.R$attr: int maxWidth +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCloseDrawable +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_stacked_tab_max_width +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String dept +wangdaye.com.geometricweather.R$string: int key_forecast_today +com.google.android.material.R$attr: int suggestionRowLayout +wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_android_maxHeight +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getTotal() +com.tencent.bugly.crashreport.crash.CrashDetailBean: int compareTo(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_divider +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedLevel(java.lang.Integer) +com.xw.repo.bubbleseekbar.R$attr: int preserveIconSpacing +org.greenrobot.greendao.database.DatabaseOpenHelper: void onUpgrade(android.database.sqlite.SQLiteDatabase,int,int) +cyanogenmod.app.CustomTile$ExpandedStyle +com.google.android.material.R$styleable: int AppCompatTheme_dropDownListViewStyle +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_timeIcon +androidx.constraintlayout.widget.R$styleable: int AlertDialog_listLayout +android.didikee.donate.R$id: int showCustom +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_drawableSize +org.greenrobot.greendao.AbstractDao: void updateInTx(java.lang.Iterable) +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_overflow_padding_start_material +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_48dp +com.xw.repo.bubbleseekbar.R$attr: int subtitleTextStyle +com.google.android.material.R$styleable: int Layout_android_layout_height +androidx.appcompat.widget.ActivityChooserView$InnerLayout +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_divider +androidx.lifecycle.ProcessLifecycleOwner: android.os.Handler mHandler +androidx.constraintlayout.motion.widget.MotionLayout: void setTransition(int) +wangdaye.com.geometricweather.R$dimen: int compat_button_padding_vertical_material +com.tencent.bugly.proguard.aq: java.lang.String d +wangdaye.com.geometricweather.R$attr: int hideOnContentScroll +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_type +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onComplete() +wangdaye.com.geometricweather.R$string: int off +wangdaye.com.geometricweather.R$layout: int notification_multi_city +com.tencent.bugly.proguard.z: java.lang.String a(long) +com.google.android.material.R$layout: int mtrl_picker_text_input_date_range +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ProgressBar +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void dispose() +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_visible +com.tencent.bugly.crashreport.crash.c: long g +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_trackTint +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_material_light +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onAttach(android.os.IBinder) +org.greenrobot.greendao.AbstractDao: java.lang.String getTablename() +com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getStartIconDrawable() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalBias +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: WeatherInfo$DayForecast$Builder(int) +androidx.recyclerview.R$dimen +cyanogenmod.app.CustomTileListenerService: void registerAsSystemService(android.content.Context,android.content.ComponentName,int) +wangdaye.com.geometricweather.R$styleable: int[] FontFamily +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTag +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_disabled +okhttp3.internal.ws.RealWebSocket: okhttp3.Request originalRequest +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_RatingBar_Small +com.jaredrummler.android.colorpicker.R$attr: int preserveIconSpacing +com.google.gson.stream.JsonToken: JsonToken(java.lang.String,int) +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_elevation +android.didikee.donate.R$styleable: int Toolbar_title +com.xw.repo.bubbleseekbar.R$attr: int buttonTintMode +cyanogenmod.weatherservice.ServiceRequestResult: java.util.List mLocationLookupList +okhttp3.internal.http2.Settings: int HEADER_TABLE_SIZE +cyanogenmod.app.BaseLiveLockManagerService$1: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +wangdaye.com.geometricweather.R$string: int feedback_restart +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_button_min_width_overflow_material +com.google.android.material.R$styleable: int AppBarLayout_android_background +androidx.transition.R$dimen +okhttp3.CacheControl$Builder: int maxAgeSeconds +com.turingtechnologies.materialscrollbar.R$id: int line3 +com.google.android.material.navigation.NavigationView: int getHeaderCount() +com.xw.repo.bubbleseekbar.R$layout: int abc_cascading_menu_item_layout +androidx.lifecycle.LiveData: java.lang.Object NOT_SET +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceCaption +wangdaye.com.geometricweather.R$string: int feedback_search_location +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_animate_relativeTo +retrofit2.http.QueryName +com.jaredrummler.android.colorpicker.R$color: int abc_tint_edittext +cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(android.os.Parcel) +com.turingtechnologies.materialscrollbar.R$attr: int gapBetweenBars +wangdaye.com.geometricweather.R$drawable: int ic_water +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult +retrofit2.RequestBuilder: okhttp3.HttpUrl baseUrl +okhttp3.Cache$Entry: boolean isHttps() +androidx.appcompat.widget.SearchView: void setIconifiedByDefault(boolean) +androidx.appcompat.widget.AppCompatImageButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +okio.AsyncTimeout$1: okio.Sink val$sink +androidx.constraintlayout.widget.R$id: int autoCompleteToEnd +com.google.android.material.R$attr: int shapeAppearanceLargeComponent +androidx.appcompat.R$string: int abc_shareactionprovider_share_with +okhttp3.HttpUrl: int port() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void innerSuccess(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver,java.lang.Object) +wangdaye.com.geometricweather.R$attr: int adjustable +io.reactivex.observers.DisposableObserver: void onStart() +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextAppearanceInactive +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float snowPrecipitationProbability +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_orientation +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.PushObserver pushObserver +com.tencent.bugly.crashreport.common.info.a: java.lang.String g() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +io.reactivex.Observable: io.reactivex.Observable interval(long,java.util.concurrent.TimeUnit) +cyanogenmod.weather.WeatherInfo: int getTemperatureUnit() +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric Metric +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_IME_SWITCHER +com.google.android.material.R$styleable: int AppCompatTextView_drawableBottomCompat +com.jaredrummler.android.colorpicker.R$id: int switchWidget +wangdaye.com.geometricweather.R$dimen: int cpv_item_size +androidx.preference.R$id: int tag_unhandled_key_listeners +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar_Small +com.amap.api.location.AMapLocation: void setGpsAccuracyStatus(int) +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityResumed(android.app.Activity) +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_thickness +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +android.didikee.donate.R$attr: int toolbarStyle +com.google.android.material.R$styleable: int ConstraintSet_android_minHeight +androidx.preference.R$styleable: int GradientColor_android_endColor +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.ILiveLockScreenManager sService +io.reactivex.internal.subscriptions.BasicQueueSubscription +androidx.appcompat.widget.AppCompatEditText: void setBackgroundDrawable(android.graphics.drawable.Drawable) +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +com.turingtechnologies.materialscrollbar.R$id: int right_icon +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_chainStyle +cyanogenmod.weather.WeatherLocation: java.lang.String getCountryId() +androidx.work.R$layout: int notification_action +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_content_padding +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollVerticalTrackDrawable +io.reactivex.observers.TestObserver$EmptyObserver +okhttp3.internal.http.RealResponseBody: okio.BufferedSource source() +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_bottomBar +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: android.graphics.Path getRetreatingJoinPath() +cyanogenmod.providers.CMSettings$Secure: java.lang.String ADVANCED_MODE +wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.converters.TimeZoneConverter timeZoneConverter +androidx.constraintlayout.widget.R$color: int notification_action_color_filter +retrofit2.RequestBuilder: okhttp3.FormBody$Builder formBuilder +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: ICMHardwareService$Stub$Proxy(android.os.IBinder) +com.turingtechnologies.materialscrollbar.R$attr: int behavior_skipCollapsed +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemBackground +androidx.lifecycle.extensions.R$styleable +androidx.appcompat.R$dimen: int disabled_alpha_material_dark +com.google.android.material.R$styleable: int Constraint_android_translationY +james.adaptiveicon.R$layout: int abc_action_mode_close_item_material +wangdaye.com.geometricweather.R$drawable: int notif_temp_88 +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: LifecycleDispatcher$DispatcherActivityCallback() +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: boolean equals(java.lang.Object) +androidx.vectordrawable.animated.R$dimen +androidx.preference.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +android.didikee.donate.R$drawable: int abc_item_background_holo_dark +wangdaye.com.geometricweather.R$animator: int weather_haze_1 +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Line2 +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog +com.jaredrummler.android.colorpicker.R$attr: int contentInsetStartWithNavigation +com.tencent.bugly.crashreport.crash.jni.a: com.tencent.bugly.crashreport.common.strategy.a d +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: java.util.concurrent.atomic.AtomicInteger active +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: void setParent(io.reactivex.internal.operators.observable.ObservablePublish$PublishObserver) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_17 +okio.Buffer: long readLongLe() +androidx.swiperefreshlayout.R$id: int text +cyanogenmod.app.ProfileManager: java.lang.String INTENT_ACTION_PROFILE_SELECTED +okhttp3.internal.publicsuffix.PublicSuffixDatabase: void setListBytes(byte[],byte[]) +com.google.android.material.R$attr: int maxButtonHeight +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: ObservableGroupBy$GroupByObserver(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,int,boolean) +androidx.preference.R$style: int Widget_AppCompat_SearchView +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: int status +wangdaye.com.geometricweather.R$color: int mtrl_filled_stroke_color +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_1 +okio.RealBufferedSource: java.lang.String readString(long,java.nio.charset.Charset) +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy valueOf(java.lang.String) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CALL_RECORDING_FORMAT_VALIDATOR +android.didikee.donate.R$drawable: int abc_list_divider_mtrl_alpha +androidx.hilt.R$attr +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getCityId() +com.xw.repo.bubbleseekbar.R$attr: int windowMinWidthMinor +com.jaredrummler.android.colorpicker.R$attr: int contentInsetRight +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_contrast +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object readKey(android.database.Cursor,int) +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float relativeHumidity +james.adaptiveicon.R$style: int Theme_AppCompat_DialogWhenLarge +com.amap.api.fence.GeoFence: int getActivatesAction() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String shortDescription +wangdaye.com.geometricweather.R$layout: int widget_clock_day_details +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onAttach(android.os.IBinder) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max +wangdaye.com.geometricweather.R$styleable: int MotionScene_layoutDuringTransition +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$100() +com.turingtechnologies.materialscrollbar.R$attr: int listChoiceBackgroundIndicator +okio.Okio$1: void write(okio.Buffer,long) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar +com.tencent.bugly.crashreport.common.strategy.a: android.content.Context g +wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String IconPhrase +androidx.lifecycle.MutableLiveData: void setValue(java.lang.Object) +com.bumptech.glide.integration.okhttp.R$id: int right +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String unit +okhttp3.internal.io.FileSystem: void delete(java.io.File) +wangdaye.com.geometricweather.common.basic.models.weather.Weather +com.google.android.material.R$styleable: int ActionBar_customNavigationLayout +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_9 +retrofit2.Retrofit$1 +com.jaredrummler.android.colorpicker.R$string: int abc_activity_chooser_view_see_all +com.xw.repo.bubbleseekbar.R$id: int src_in +com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_android_button +com.google.android.material.navigation.NavigationView: void setItemBackgroundResource(int) +androidx.preference.R$styleable: int Toolbar_navigationContentDescription +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_Solid +androidx.hilt.R$anim: int fragment_fast_out_extra_slow_in +wangdaye.com.geometricweather.R$attr: int contentInsetStart +okhttp3.internal.cache2.FileOperator: FileOperator(java.nio.channels.FileChannel) +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: io.reactivex.Observer child +retrofit2.ParameterHandler$Body: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.xw.repo.bubbleseekbar.R$attr: int tickMark +com.tencent.bugly.proguard.i$a: i$a() +androidx.constraintlayout.widget.R$attr: int height +io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicBoolean once +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void dispose() +wangdaye.com.geometricweather.R$string: int clear_text_end_icon_content_description +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetStart +android.didikee.donate.R$styleable: int[] TextAppearance +com.google.android.gms.common.R$integer: R$integer() +com.xw.repo.bubbleseekbar.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +androidx.preference.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CollapsingToolbar +com.tencent.bugly.crashreport.common.info.a: com.tencent.bugly.crashreport.common.info.a af +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: cyanogenmod.app.ILiveLockScreenManagerProvider asInterface(android.os.IBinder) +cyanogenmod.app.CustomTileListenerService +wangdaye.com.geometricweather.R$attr: int limitBoundsTo +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setUvIndex(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startX +androidx.appcompat.R$id: int search_plate +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView_Menu +android.didikee.donate.R$dimen: int abc_action_button_min_width_material +com.google.android.material.R$styleable: int ConstraintSet_android_translationY +wangdaye.com.geometricweather.R$styleable: int FlowLayout_lineSpacing +wangdaye.com.geometricweather.background.receiver.widget.AbstractWidgetProvider +com.google.android.material.R$color: int mtrl_error +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintDimensionRatio +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleContentDescription +cyanogenmod.app.CustomTile$Builder: boolean mCollapsePanel +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.MinutelyEntityDao minutelyEntityDao +androidx.preference.R$attr: int menu +com.google.android.material.R$attr: int verticalOffset +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast +io.reactivex.internal.util.NotificationLite: java.lang.Object complete() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction Direction +com.google.android.material.R$id: int month_navigation_bar +wangdaye.com.geometricweather.R$id: int cancel_button +com.google.android.material.R$drawable: int abc_textfield_activated_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap +com.bumptech.glide.integration.okhttp.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.R$string: int abc_menu_enter_shortcut_label +com.google.android.gms.location.places.PlaceReport +cyanogenmod.profiles.ConnectionSettings: void setSubId(int) +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.R$attr: int customIntegerValue +androidx.cardview.R$color: int cardview_shadow_end_color +okhttp3.Headers: okhttp3.Headers$Builder newBuilder() +android.didikee.donate.R$attr: int actionModeFindDrawable +com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat_Dark +com.google.android.material.R$string: int mtrl_picker_text_input_day_abbr +okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.Request request +com.github.rahatarmanahmed.cpv.CircularProgressView$8: float val$maxSweep +wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat +com.google.android.material.R$attr: int buttonStyle +retrofit2.RequestFactory: okhttp3.Headers headers +com.google.android.material.R$styleable: int TextInputLayout_prefixText +wangdaye.com.geometricweather.R$id: int largeLabel +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_suggestionRowLayout +androidx.viewpager2.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_title +android.didikee.donate.R$attr: int buttonGravity +com.amap.api.location.AMapLocation: int x +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$width +wangdaye.com.geometricweather.R$id: int spline +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setFillAlpha(float) +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean isDisposed() +com.google.gson.stream.JsonReader: java.lang.String[] pathNames +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onComplete() +androidx.cardview.R$color: R$color() +com.google.android.material.R$id: int bottom +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onNext(java.lang.Object) +io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicReference upstream +com.tencent.bugly.crashreport.crash.h5.a: java.lang.String c +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_shapeAppearanceOverlay +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_6 +com.google.android.material.R$attr: int values +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_tintMode +wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_grey +okhttp3.WebSocketListener: WebSocketListener() +okhttp3.internal.connection.RouteSelector: okhttp3.Address address +androidx.lifecycle.ReportFragment: void onPause() +android.didikee.donate.R$color: int primary_dark_material_dark +okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Logger logger +wangdaye.com.geometricweather.common.ui.widgets.TagView: int getUncheckedBackgroundColor() +james.adaptiveicon.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +io.reactivex.Observable: io.reactivex.Observable timeInterval(java.util.concurrent.TimeUnit) +com.google.gson.FieldNamingPolicy$6: FieldNamingPolicy$6(java.lang.String,int) +wangdaye.com.geometricweather.R$styleable: int[] FitSystemBarRecyclerView +androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogTheme +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_GCM_SHA256 +retrofit2.RequestBuilder: void setRelativeUrl(java.lang.Object) +com.xw.repo.bubbleseekbar.R$attr: int windowFixedWidthMajor +wangdaye.com.geometricweather.R$id: int container_main_aqi_title +androidx.appcompat.widget.AppCompatTextView: android.view.textclassifier.TextClassifier getTextClassifier() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String to +wangdaye.com.geometricweather.R$styleable: int MaterialRadioButton_buttonTint +wangdaye.com.geometricweather.R$array: R$array() +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_ttcIndex +okhttp3.internal.platform.OptionalMethod: java.lang.Class returnType +wangdaye.com.geometricweather.R$string: int key_text_color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: int UnitType +androidx.appcompat.widget.ActivityChooserView$InnerLayout: ActivityChooserView$InnerLayout(android.content.Context,android.util.AttributeSet) +androidx.hilt.work.R$id: int title +okio.SegmentedByteString +androidx.lifecycle.Transformations$1: void onChanged(java.lang.Object) +com.xw.repo.bubbleseekbar.R$string: int abc_menu_meta_shortcut_label +androidx.constraintlayout.helper.widget.Layer: void setScaleX(float) +androidx.work.R$styleable: int GradientColor_android_centerY +okhttp3.RequestBody$1: okhttp3.MediaType val$contentType +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position +cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(cyanogenmod.weather.WeatherInfo$1) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: int getStatus() +androidx.preference.R$style +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_PREVIEW +com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_text_padding_left +wangdaye.com.geometricweather.R$color: int abc_tint_seek_thumb +retrofit2.RequestFactory: okhttp3.Request create(java.lang.Object[]) +androidx.preference.R$color: int switch_thumb_disabled_material_dark +androidx.preference.R$styleable: int Preference_key +androidx.work.impl.utils.futures.AbstractFuture$Failure$1: java.lang.Throwable fillInStackTrace() +androidx.viewpager.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.R$id: int item_about_link_text +com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$styleable: int Toolbar_logo +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onSubscribe(org.reactivestreams.Subscription) +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: BlockingObservableIterable$BlockingObservableIterator(int) +wangdaye.com.geometricweather.R$string: int key_exchange_day_night_temp_switch +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService$1 this$1 +com.xw.repo.bubbleseekbar.R$attr: int suggestionRowLayout +com.tencent.bugly.proguard.am: byte[] h +com.turingtechnologies.materialscrollbar.R$string: int path_password_eye_mask_visible +okio.BufferedSink: okio.BufferedSink writeUtf8CodePoint(int) +androidx.appcompat.resources.R$dimen: int notification_action_text_size +io.reactivex.internal.observers.InnerQueuedObserver: int prefetch +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Spinner_Underlined +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void dispose() +android.didikee.donate.R$color: int button_material_light +androidx.drawerlayout.widget.DrawerLayout: void setDrawerLockMode(int) +wangdaye.com.geometricweather.R$attr: int progressIndicatorStyle +com.turingtechnologies.materialscrollbar.TouchScrollBar: TouchScrollBar(android.content.Context,android.util.AttributeSet) +com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$dimen: int notification_right_icon_size +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger +wangdaye.com.geometricweather.R$string: int date_format_short +com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingTop +androidx.appcompat.view.menu.MenuPopupHelper +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getZh_TW() +okio.Segment: okio.Segment next +wangdaye.com.geometricweather.R$styleable: int[] SwitchPreference +okio.InflaterSource: InflaterSource(okio.BufferedSource,java.util.zip.Inflater) +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayModes +cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileManager sProfileManagerInstance +james.adaptiveicon.R$styleable: int[] ButtonBarLayout +com.jaredrummler.android.colorpicker.R$id: int transparency_title +wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_entryValues androidx.appcompat.widget.Toolbar: int getContentInsetEnd() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginTop -wangdaye.com.geometricweather.R$styleable: int Fragment_android_id -androidx.coordinatorlayout.R$layout: int custom_dialog -com.jaredrummler.android.colorpicker.R$attr: int backgroundStacked -android.didikee.donate.R$drawable: int abc_ic_go_search_api_material -com.turingtechnologies.materialscrollbar.R$attr: int tabMaxWidth -androidx.coordinatorlayout.R$id: int blocking -android.didikee.donate.R$drawable: int notification_bg_normal -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX -com.google.android.material.R$styleable: int Chip_android_text -com.google.android.material.R$attr: int hintTextColor -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_extra_spacing_horizontal -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark_focused -androidx.constraintlayout.widget.R$styleable: int PopupWindow_android_popupBackground -com.jaredrummler.android.colorpicker.R$anim: int abc_grow_fade_in_from_bottom -androidx.preference.R$styleable: int DrawerArrowToggle_arrowShaftLength -okhttp3.internal.http2.Http2Connection: long access$200(okhttp3.internal.http2.Http2Connection) -androidx.appcompat.R$styleable: int TextAppearance_fontVariationSettings -android.didikee.donate.R$styleable: int AppCompatTheme_actionDropDownStyle -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light -okhttp3.internal.ws.WebSocketWriter: okio.Buffer$UnsafeCursor maskCursor -com.google.android.material.R$layout: int material_timepicker -com.xw.repo.bubbleseekbar.R$dimen: int notification_big_circle_margin -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_MD5 -cyanogenmod.app.BaseLiveLockManagerService: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain12h -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int CloudCover -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: io.reactivex.internal.fuseable.SimpleQueue queue -androidx.viewpager2.R$styleable: int GradientColor_android_centerX -com.jaredrummler.android.colorpicker.R$dimen: int cpv_color_preference_normal +james.adaptiveicon.R$string: int abc_searchview_description_submit +okio.BufferedSource: int read(byte[]) +android.didikee.donate.R$styleable: int Toolbar_subtitleTextAppearance +okhttp3.internal.tls.BasicTrustRootIndex: java.util.Map subjectToCaCerts +com.google.android.material.R$layout: int test_chip_zero_corner_radius +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_HEAVY +com.google.android.material.R$styleable: int ConstraintSet_deriveConstraintsFrom +androidx.appcompat.R$styleable: int GradientColor_android_gradientRadius +okhttp3.RealCall: java.lang.String redactedUrl() +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_24 +androidx.core.R$dimen: int compat_button_padding_vertical_material +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_alphabeticShortcut +james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlNormal +okhttp3.RealCall: boolean forWebSocket +androidx.fragment.R$color: int ripple_material_light +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String regist(java.lang.String,boolean,int) +com.google.android.material.R$id: int textinput_error +com.xw.repo.bubbleseekbar.R$anim: int abc_slide_out_top +com.bumptech.glide.integration.okhttp.R$id: int glide_custom_view_target_tag +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable +com.bumptech.glide.R$styleable: int ColorStateListItem_android_alpha +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator +androidx.preference.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +androidx.swiperefreshlayout.R$dimen: int notification_small_icon_size_as_large +androidx.coordinatorlayout.R$id: int accessibility_custom_action_27 +androidx.hilt.R$id: int info +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_toLeftOf +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality airQuality +androidx.constraintlayout.helper.widget.Flow: void setVerticalBias(float) +wangdaye.com.geometricweather.R$string: int feedback_hide_subtitle +androidx.appcompat.resources.R$id: int accessibility_custom_action_12 +wangdaye.com.geometricweather.R$color: int radiobutton_themeable_attribute_color +com.xw.repo.bubbleseekbar.R$id: int search_edit_frame +androidx.preference.R$styleable: int SwitchPreferenceCompat_disableDependentsState +android.didikee.donate.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +okhttp3.RealCall$AsyncCall: okhttp3.Request request() +wangdaye.com.geometricweather.R$attr: int selectableItemBackgroundBorderless +androidx.constraintlayout.widget.R$color: int material_grey_600 +com.google.android.material.textfield.TextInputLayout: void setCounterTextAppearance(int) +com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_disable_only_material_light +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: int unitArrayIndex +com.turingtechnologies.materialscrollbar.R$styleable: int[] ViewStubCompat +cyanogenmod.providers.CMSettings$Global: boolean shouldInterceptSystemProvider(java.lang.String) +wangdaye.com.geometricweather.R$attr: int fabCustomSize +androidx.preference.R$anim: R$anim() +okio.Buffer: okio.BufferedSink writeShort(int) +io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.google.android.material.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_background_color +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_elevation +androidx.hilt.R$attr: int fontWeight +com.google.android.material.R$dimen: int mtrl_textinput_box_corner_radius_small +okhttp3.internal.http.RetryAndFollowUpInterceptor +okhttp3.ConnectionPool$1: okhttp3.ConnectionPool this$0 +wangdaye.com.geometricweather.R$drawable: int notif_temp_138 +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf +com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActivityChooserView +android.didikee.donate.R$styleable: int MenuItem_android_title +com.amap.api.fence.PoiItem: java.lang.String getPoiName() +androidx.constraintlayout.widget.R$styleable: int[] ActionMode +com.google.android.material.R$color: int mtrl_on_primary_text_btn_text_color_selector +com.amap.api.location.AMapLocationClientOption: long getLastLocationLifeCycle() +com.google.android.material.R$styleable: int Slider_tickColorActive +cyanogenmod.hardware.CMHardwareManager: int FEATURE_TAP_TO_WAKE +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRelativeHumidity() +com.google.android.material.R$id: int accessibility_custom_action_18 +com.google.android.material.R$layout +androidx.preference.R$styleable: int AppCompatTheme_buttonBarButtonStyle +okio.RealBufferedSink: okio.BufferedSink writeIntLe(int) +com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setCircularRevealScrimColor(int) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_list_item_padding_horizontal_material +okio.Buffer: okio.Buffer writeDecimalLong(long) +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality airQuality +com.google.android.material.R$styleable: int FontFamilyFont_fontStyle +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver +androidx.constraintlayout.widget.R$attr: int barrierAllowsGoneWidgets +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void dispose() +com.google.android.material.R$styleable: int TextInputLayout_prefixTextAppearance +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_voice +com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_icon_null_animation +androidx.preference.R$attr: int searchViewStyle +wangdaye.com.geometricweather.R$attr: int state_collapsible +james.adaptiveicon.R$attr: int listPopupWindowStyle +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_orientation +wangdaye.com.geometricweather.R$color: int switch_thumb_material_light +wangdaye.com.geometricweather.R$drawable: int flag_cs +com.google.android.material.R$id: int mtrl_internal_children_alpha_tag +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitation() +wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity: DayWeekWidgetConfigActivity() +wangdaye.com.geometricweather.R$layout: int widget_day_week_symmetry +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent[] values() +androidx.lifecycle.SavedStateHandleController$OnRecreation: SavedStateHandleController$OnRecreation() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionDropDownStyle +com.turingtechnologies.materialscrollbar.R$color: int design_error com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogCenterButtons -androidx.recyclerview.R$integer: R$integer() -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal -cyanogenmod.weather.RequestInfo: boolean isQueryOnlyWeatherRequest() -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginBottom -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -com.google.android.material.R$styleable: int Constraint_android_layout_marginEnd -okhttp3.internal.http2.Http2Connection: void writePingAndAwaitPong() -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -cyanogenmod.weather.WeatherLocation: WeatherLocation(cyanogenmod.weather.WeatherLocation$1) -com.amap.api.fence.PoiItem: void setTypeCode(java.lang.String) -cyanogenmod.externalviews.ExternalViewProperties: boolean mVisible -wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotationX -wangdaye.com.geometricweather.R$string: int feedback_readd_location_after_changing_source -com.google.android.material.R$styleable: int Constraint_flow_firstHorizontalStyle -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) -io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: boolean isDisposed() -cyanogenmod.hardware.ICMHardwareService: java.lang.String getUniqueDeviceId() -androidx.constraintlayout.widget.R$styleable: int SearchView_searchIcon -okio.Base64: Base64() -androidx.viewpager2.R$layout -androidx.lifecycle.DefaultLifecycleObserver -com.xw.repo.bubbleseekbar.R$attr: int actionModeStyle -androidx.hilt.R$id: int accessibility_custom_action_4 -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_GREEN_INDEX -com.turingtechnologies.materialscrollbar.R$string: int character_counter_pattern -cyanogenmod.providers.CMSettings: java.lang.String TAG -androidx.appcompat.R$style: int Widget_AppCompat_Button -androidx.appcompat.R$attr: int radioButtonStyle -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: int getSuggestedMinimumWidth() -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_popupTheme -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_layout -okhttp3.Address: okhttp3.Authenticator proxyAuthenticator() -io.reactivex.Observable: io.reactivex.Single toSortedList(java.util.Comparator,int) -androidx.preference.R$id: int accessibility_custom_action_25 -androidx.legacy.coreutils.R$id: int text -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onError(java.lang.Throwable) -androidx.constraintlayout.motion.widget.MotionLayout: android.os.Bundle getTransitionState() -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: int capacityHint -com.google.android.material.checkbox.MaterialCheckBox: void setUseMaterialThemeColors(boolean) -cyanogenmod.hardware.IThermalListenerCallback$Stub: int TRANSACTION_onThermalChanged_0 -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_y_offset_touch -wangdaye.com.geometricweather.R$id: int notification_base_weather -com.tencent.bugly.crashreport.common.info.a: java.lang.String l() -androidx.coordinatorlayout.R$id: int accessibility_custom_action_12 -androidx.transition.R$id: int time -com.google.android.material.R$string: int abc_shareactionprovider_share_with -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetStartWithNavigation -androidx.preference.R$color: int bright_foreground_material_dark -androidx.fragment.R$anim: int fragment_open_enter -androidx.customview.R$dimen: int notification_media_narrow_margin -androidx.constraintlayout.widget.R$attr: int suggestionRowLayout -wangdaye.com.geometricweather.background.polling.basic.ForegroundUpdateService -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: wangdaye.com.geometricweather.db.entities.HistoryEntity readEntity(android.database.Cursor,int) -androidx.appcompat.R$dimen: int tooltip_margin -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object value -androidx.lifecycle.extensions.R$drawable: int notification_bg_low_pressed -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String k -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_corner -cyanogenmod.app.BaseLiveLockManagerService: boolean getLiveLockScreenEnabled() -okhttp3.internal.platform.JdkWithJettyBootPlatform -cyanogenmod.weather.WeatherLocation$1: java.lang.Object[] newArray(int) -com.google.android.material.R$style: int Widget_AppCompat_Light_ListPopupWindow -com.google.android.material.R$attr: int dropDownListViewStyle -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.ObservableSource fallback -wangdaye.com.geometricweather.R$styleable: int[] View -okhttp3.CacheControl: CacheControl(okhttp3.CacheControl$Builder) -okhttp3.Protocol: okhttp3.Protocol HTTP_1_1 -wangdaye.com.geometricweather.R$attr: int chipIconVisible -okhttp3.logging.HttpLoggingInterceptor: java.nio.charset.Charset UTF8 -com.google.android.material.R$styleable: int[] OnSwipe -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -cyanogenmod.weather.WeatherInfo$Builder: java.lang.String mCity -com.google.android.material.R$attr: int layout_constraintGuide_begin -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency PressureTendency -com.google.android.material.R$attr: int fabAlignmentMode -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_DialogWhenLarge -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: io.reactivex.disposables.Disposable timer -cyanogenmod.app.suggest.AppSuggestManager: android.content.Context mContext -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DailyForecast -com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: int hashCode() -androidx.appcompat.R$style: int Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.R$styleable: int Chip_chipCornerRadius +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationX +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_android_max +androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.LifecycleRegistry mRegistry +wangdaye.com.geometricweather.R$attr: int actionBarTheme +androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context) +com.turingtechnologies.materialscrollbar.R$attr: int cardBackgroundColor +androidx.lifecycle.SavedStateHandleController: boolean isAttached() +wangdaye.com.geometricweather.R$xml: int widget_day_week +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_transitionPathRotate +okio.ForwardingTimeout: okio.Timeout clearTimeout() +okhttp3.internal.http2.Http2Writer: okio.BufferedSink sink +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_keylines +androidx.coordinatorlayout.R$id: int none +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Title_Inverse +okhttp3.MultipartBody$Part: okhttp3.Headers headers() +androidx.lifecycle.extensions.R$styleable: R$styleable() +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: Http1Codec$UnknownLengthSource(okhttp3.internal.http1.Http1Codec) +androidx.appcompat.R$style: int Theme_AppCompat_CompactMenu +cyanogenmod.power.PerformanceManager: cyanogenmod.power.PerformanceManager getInstance(android.content.Context) +wangdaye.com.geometricweather.R$id: int expanded_menu +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_shutdown +android.support.v4.os.ResultReceiver$MyResultReceiver +okhttp3.internal.http2.Http2Connection: int DEGRADED_PING +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer dewPoint +wangdaye.com.geometricweather.R$attr: int mock_label +com.tencent.bugly.crashreport.crash.d: com.tencent.bugly.crashreport.crash.d a(android.content.Context) +androidx.recyclerview.widget.RecyclerView: void setChildDrawingOrderCallback(androidx.recyclerview.widget.RecyclerView$ChildDrawingOrderCallback) +okhttp3.HttpUrl: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Headline6 +android.didikee.donate.R$string: R$string() +androidx.recyclerview.R$id: int action_text +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: int city_code +wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding +com.xw.repo.bubbleseekbar.R$styleable: int[] CoordinatorLayout +cyanogenmod.app.LiveLockScreenManager: java.lang.String SERVICE_INTERFACE +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onSubscribe(io.reactivex.disposables.Disposable) +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCutDrawable +com.google.android.material.R$attr: int flow_firstHorizontalBias +android.didikee.donate.R$color: int bright_foreground_disabled_material_dark +com.google.android.material.R$dimen: int design_bottom_navigation_height +androidx.preference.R$attr: int voiceIcon +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.R$color: int tooltip_background_light +android.didikee.donate.R$attr: int editTextColor +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_gradientRadius +com.google.android.material.R$dimen: int abc_action_bar_content_inset_with_nav +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.google.gson.internal.LinkedTreeMap: java.util.Comparator comparator +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getTagValue() +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSwoopDuration +androidx.preference.R$drawable: int abc_ic_star_black_48dp +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display2 +com.tencent.bugly.proguard.p: android.database.Cursor a(boolean,java.lang.String,java.lang.String[],java.lang.String,java.lang.String[],java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.tencent.bugly.proguard.o) +wangdaye.com.geometricweather.R$id: int start +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginTop +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String getType() +com.google.android.material.appbar.AppBarLayout: void setStatusBarForegroundResource(int) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceScreenStyle +androidx.preference.R$dimen: int abc_dialog_fixed_height_major +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() +com.xw.repo.bubbleseekbar.R$attr: int tint +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: int unitArrayIndex +com.baidu.location.indoor.c +com.xw.repo.bubbleseekbar.R$attr: int lastBaselineToBottomHeight +com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetBottom +io.reactivex.internal.observers.BlockingObserver: BlockingObserver(java.util.Queue) +cyanogenmod.app.Profile$1: cyanogenmod.app.Profile[] newArray(int) +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_headerLayout +wangdaye.com.geometricweather.R$drawable: int flag_fr +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetLeft +james.adaptiveicon.R$dimen: int tooltip_precise_anchor_extra_offset +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: double Value +com.google.android.material.R$id: int search_mag_icon +com.tencent.bugly.crashreport.common.info.a: byte b +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State FAILED +android.support.v4.app.INotificationSideChannel +okhttp3.internal.http2.Http2Writer: void data(boolean,int,okio.Buffer,int) +okhttp3.Dns$1: java.util.List lookup(java.lang.String) +cyanogenmod.app.CustomTile$ExpandedItem$1 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RealFeelTemperature +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: AccuCurrentResult$Wind$Speed$Metric() +androidx.legacy.coreutils.R$id: int async +com.google.android.material.R$id: int home +androidx.appcompat.R$attr: int listPreferredItemHeight +com.google.android.material.R$styleable: int TextInputLayout_android_textColorHint +androidx.appcompat.resources.R$styleable: int ColorStateListItem_android_color +com.google.android.material.R$attr: int layout_behavior +androidx.core.view.GestureDetectorCompat +androidx.loader.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: AccuMinuteResult$IntervalsBean() +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_LargeTouch +com.google.android.material.R$id: int accessibility_custom_action_30 +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest build() +james.adaptiveicon.R$dimen: int abc_action_button_min_width_overflow_material +com.google.android.material.R$color: int mtrl_outlined_icon_tint +com.google.android.material.R$styleable: int TextAppearance_android_shadowDy +androidx.hilt.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$layout: int mtrl_picker_text_input_date_range +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void onResponse(retrofit2.Call,retrofit2.Response) +android.support.v4.os.IResultReceiver$Stub$Proxy: android.os.IBinder mRemote +android.didikee.donate.R$dimen: int abc_button_inset_horizontal_material +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getTotal() +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod getAlpnSelectedProtocol +androidx.work.R$id: int tag_accessibility_clickable_spans +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onComplete() +com.google.android.material.R$attr: int mock_showDiagonals +com.jaredrummler.android.colorpicker.R$drawable: int notification_icon_background io.reactivex.internal.observers.LambdaObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.gson.stream.JsonReader: int NUMBER_CHAR_SIGN -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setId(java.lang.Long) -cyanogenmod.externalviews.KeyguardExternalView$1 -androidx.appcompat.R$style: int TextAppearance_AppCompat_Small -androidx.constraintlayout.widget.R$attr: int autoSizeStepGranularity -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat -wangdaye.com.geometricweather.R$string: int sp_widget_day_setting -com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_radio -wangdaye.com.geometricweather.R$styleable: int PopupWindow_android_popupBackground -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day -com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout_Colored -com.google.android.material.R$styleable: int ConstraintSet_android_translationY -retrofit2.ParameterHandler$FieldMap: retrofit2.Converter valueConverter -com.tencent.bugly.proguard.v: boolean t -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: java.lang.String Unit -androidx.preference.R$style: int TextAppearance_Compat_Notification_Line2 -com.tencent.bugly.proguard.y: java.lang.StringBuilder e() -com.google.gson.internal.LazilyParsedNumber: long longValue() -wangdaye.com.geometricweather.R$id: int activity_widget_config_container -wangdaye.com.geometricweather.R$attr: int extendedFloatingActionButtonStyle -androidx.recyclerview.R$styleable: int GradientColor_android_endY -com.bumptech.glide.R$attr: int coordinatorLayoutStyle -com.google.android.material.slider.Slider: void setFocusedThumbIndex(int) -com.jaredrummler.android.colorpicker.R$attr: int divider -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense -com.google.android.material.R$styleable: int AppCompatTheme_seekBarStyle -com.google.android.material.R$styleable: int Layout_android_layout_marginBottom -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_trendRecyclerView -androidx.dynamicanimation.R$dimen: int notification_subtext_size -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: IExternalViewProvider$Stub$Proxy(android.os.IBinder) -com.tencent.bugly.crashreport.crash.d: void a(com.tencent.bugly.crashreport.crash.d) -com.turingtechnologies.materialscrollbar.R$animator: int design_fab_show_motion_spec -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_6 -cyanogenmod.providers.CMSettings$System$2: CMSettings$System$2() -com.tencent.bugly.crashreport.crash.jni.a: com.tencent.bugly.crashreport.crash.b b -androidx.appcompat.widget.SwitchCompat: void setTrackDrawable(android.graphics.drawable.Drawable) -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder callTimeout(java.time.Duration) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List yundong -james.adaptiveicon.R$attr: int controlBackground -com.github.rahatarmanahmed.cpv.R$attr: int cpv_maxProgress -okhttp3.Request: java.lang.String toString() -androidx.viewpager2.R$id: int accessibility_custom_action_25 -androidx.preference.R$string: int abc_menu_shift_shortcut_label -wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_weight -com.google.android.material.circularreveal.CircularRevealFrameLayout: void setCircularRevealScrimColor(int) -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_range_end_hint -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -com.google.android.material.R$styleable: int Chip_shapeAppearance -com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat_Light -io.reactivex.Observable: io.reactivex.Observable serialize() -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -androidx.preference.R$drawable: int abc_dialog_material_background -com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyleIndicator -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry -cyanogenmod.weather.RequestInfo: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_horizontalDivider -com.turingtechnologies.materialscrollbar.R$attr: int titleMarginTop -com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_editor_absoluteY -wangdaye.com.geometricweather.R$attr: int boxStrokeErrorColor -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: void setLineColor(int) -com.xw.repo.bubbleseekbar.R$attr: int bsb_progress -android.didikee.donate.R$attr: int popupWindowStyle -james.adaptiveicon.R$dimen: int highlight_alpha_material_dark -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getNestedScrollAxes() -android.didikee.donate.R$string: int abc_capital_off -com.jaredrummler.android.colorpicker.R$drawable: int cpv_alpha -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline1 -wangdaye.com.geometricweather.R$id: int action_text -com.google.android.material.textfield.TextInputLayout: void setErrorIconDrawable(android.graphics.drawable.Drawable) -com.turingtechnologies.materialscrollbar.R$attr: int spanCount -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_background -androidx.hilt.R$id: int blocking -com.google.android.material.R$attr: int textAllCaps -cyanogenmod.app.CMContextConstants$Features: java.lang.String WEATHER_SERVICES -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String icon -james.adaptiveicon.R$attr: int thumbTextPadding -com.tencent.bugly.proguard.n: java.util.List a(com.tencent.bugly.proguard.n,int) -com.google.android.material.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -androidx.lifecycle.livedata.core.R -io.reactivex.internal.observers.BlockingObserver: boolean isDisposed() -wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String unitId -androidx.fragment.R$dimen: int compat_notification_large_icon_max_width -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean cancelled -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator -androidx.appcompat.resources.R$string -androidx.appcompat.R$attr: int textAppearanceSearchResultTitle -androidx.work.R$id: int accessibility_custom_action_24 -androidx.appcompat.R$id: int accessibility_custom_action_23 -androidx.appcompat.resources.R$id: int accessibility_custom_action_7 -com.google.android.material.appbar.AppBarLayout: void setLiftOnScrollTargetViewId(int) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onComplete() -wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter nighttimeWindDegreeConverter -com.google.android.material.R$styleable: int KeyAttribute_android_scaleX -androidx.appcompat.resources.R$color -android.didikee.donate.R$style: int Widget_AppCompat_ProgressBar_Horizontal -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_recyclerView -androidx.preference.R$styleable: int AnimatedStateListDrawableItem_android_drawable -com.tencent.bugly.crashreport.common.info.a: java.lang.String aq -okhttp3.internal.ws.RealWebSocket: void connect(okhttp3.OkHttpClient) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableBottomCompat +cyanogenmod.weather.RequestInfo: int access$602(cyanogenmod.weather.RequestInfo,int) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.Observer downstream +androidx.viewpager.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum +wangdaye.com.geometricweather.R$attr: int layout_collapseParallaxMultiplier +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Headline +androidx.lifecycle.extensions.R$dimen: int notification_large_icon_width +android.didikee.donate.R$attr: int initialActivityCount +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_MIN_INDEX +com.tencent.bugly.proguard.am: java.lang.String j +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconTintMode +com.turingtechnologies.materialscrollbar.DateAndTimeIndicator +wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeLevel(java.lang.Integer) +androidx.constraintlayout.widget.R$id: int middle +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int CloudCover +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Daylight +okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withWriteTimeout(int,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_d +retrofit2.BuiltInConverters$RequestBodyConverter +androidx.hilt.R$id: int tag_accessibility_actions +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: void invoke(java.lang.Throwable) +wangdaye.com.geometricweather.settings.fragments.NotificationColorSettingsFragment: NotificationColorSettingsFragment() +android.didikee.donate.R$id: int title +org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Iterable,boolean) +cyanogenmod.hardware.CMHardwareManager: int readPersistentInt(java.lang.String) +androidx.viewpager2.widget.ViewPager2: void setCurrentItem(int) +androidx.constraintlayout.widget.R$drawable: int abc_textfield_activated_mtrl_alpha +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX +androidx.appcompat.R$id: int search_voice_btn +okhttp3.internal.cache.DiskLruCache: java.util.LinkedHashMap lruEntries +androidx.constraintlayout.widget.R$styleable: int KeyCycle_framePosition +android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy BUFFER +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice +androidx.customview.R$dimen: int notification_content_margin_start +androidx.preference.R$string: int abc_menu_enter_shortcut_label +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motionTarget +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy ERROR +com.google.android.material.slider.BaseSlider: void removeOnSliderTouchListener(com.google.android.material.slider.BaseOnSliderTouchListener) +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,long,java.util.concurrent.TimeUnit) +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeightSmall +cyanogenmod.weatherservice.WeatherProviderService: java.lang.String SERVICE_META_DATA +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathOffset(float) +wangdaye.com.geometricweather.R$attr: int bsb_second_track_color +wangdaye.com.geometricweather.R$styleable: int MenuItem_numericModifiers +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer dbz +com.google.android.material.R$styleable: int ForegroundLinearLayout_android_foregroundGravity +androidx.drawerlayout.R$drawable: int notification_action_background +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout +wangdaye.com.geometricweather.db.entities.DaoSession: DaoSession(org.greenrobot.greendao.database.Database,org.greenrobot.greendao.identityscope.IdentityScopeType,java.util.Map) +com.turingtechnologies.materialscrollbar.R$attr: int fabAlignmentMode +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderAuthority +com.google.android.material.R$attr: int buttonBarPositiveButtonStyle +com.google.android.material.chip.ChipGroup: void setChipSpacingHorizontal(int) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_title +cyanogenmod.externalviews.IExternalViewProvider$Stub: cyanogenmod.externalviews.IExternalViewProvider asInterface(android.os.IBinder) +com.amap.api.fence.GeoFence: void setRadius(float) +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getDistanceVoice(android.content.Context,float) +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_DEFAULT_THEME +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeStepGranularity +androidx.core.R$layout: int notification_template_part_chronometer +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchKeyShortcutEvent(android.view.KeyEvent) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton +wangdaye.com.geometricweather.R$attr: int badgeGravity +androidx.appcompat.R$dimen: int abc_button_padding_vertical_material +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +com.google.android.material.R$attr: int tabIndicatorAnimationDuration +com.jaredrummler.android.colorpicker.R$layout: int abc_action_bar_up_container +com.google.android.material.circularreveal.CircularRevealRelativeLayout: int getCircularRevealScrimColor() +androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$dimen: int design_textinput_caption_translate_y +com.tencent.bugly.proguard.n: void a(int,java.util.List) +com.tencent.bugly.proguard.y$a: boolean d(com.tencent.bugly.proguard.y$a) +androidx.constraintlayout.widget.ConstraintLayout: int getOptimizationLevel() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView_Menu +android.didikee.donate.R$attr: int barLength +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onSuccess(java.lang.Object) +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.hilt.work.R$drawable: R$drawable() +wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullResourceIdException +androidx.appcompat.R$style: int Base_DialogWindowTitleBackground_AppCompat +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cps +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getDefaultLiveLockScreen +wangdaye.com.geometricweather.R$id: int treeTitle +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_subMenuArrow +androidx.preference.R$styleable: int MenuItem_android_menuCategory +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +androidx.dynamicanimation.R$dimen: int compat_button_padding_vertical_material +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +com.tencent.bugly.proguard.ap: java.lang.Object clone() +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +cyanogenmod.providers.CMSettings$NameValueCache: CMSettings$NameValueCache(java.lang.String,android.net.Uri,java.lang.String,java.lang.String) +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.lang.String selected +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX +androidx.appcompat.R$drawable: int abc_ic_star_half_black_16dp +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_readPersistentBytes +androidx.viewpager.R$style: int TextAppearance_Compat_Notification +cyanogenmod.themes.ThemeManager$1$2: void run() +james.adaptiveicon.R$layout: int abc_list_menu_item_icon +james.adaptiveicon.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +androidx.constraintlayout.widget.R$dimen: int abc_text_size_caption_material +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_radioButtonStyle +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_small_material +wangdaye.com.geometricweather.R$styleable: int MaterialShape_shapeAppearanceOverlay +androidx.appcompat.R$attr: int iconifiedByDefault +org.greenrobot.greendao.database.DatabaseOpenHelper: void onOpen(android.database.sqlite.SQLiteDatabase) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String level +com.google.android.material.R$color: int mtrl_bottom_nav_colored_item_tint +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String en_US +com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_focused +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSteps +com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay +androidx.preference.R$style: int Base_Widget_AppCompat_ListPopupWindow +androidx.preference.R$styleable: int AppCompatTheme_colorPrimaryDark +wangdaye.com.geometricweather.common.basic.GeoDialog +com.tencent.bugly.crashreport.crash.b: void d(com.tencent.bugly.crashreport.crash.CrashDetailBean) +android.didikee.donate.R$dimen: R$dimen() +com.google.android.material.R$color: int mtrl_tabs_icon_color_selector +androidx.constraintlayout.widget.R$attr: int contentInsetLeft +androidx.swiperefreshlayout.R$dimen: int compat_notification_large_icon_max_width +com.google.android.material.R$attr: int layout_insetEdge +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State calculateTargetState(androidx.lifecycle.LifecycleObserver) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void errorAll(io.reactivex.Observer) +androidx.hilt.R$id: int accessibility_custom_action_14 +okhttp3.internal.http.HttpHeaders: int skipAll(okio.Buffer,byte) +wangdaye.com.geometricweather.R$id: int submenuarrow +com.amap.api.location.CoordUtil +com.xw.repo.bubbleseekbar.R$attr: int buttonBarNeutralButtonStyle +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderAuthority +james.adaptiveicon.R$attr: int fontProviderPackage +okhttp3.Response$Builder: Response$Builder() +com.tencent.bugly.crashreport.common.info.a: java.lang.String H +android.didikee.donate.R$attr: int listPreferredItemHeightSmall +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_allowCustom +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Medium +androidx.fragment.R$dimen: int compat_button_inset_horizontal_material +androidx.appcompat.R$styleable: int[] DrawerArrowToggle +okhttp3.internal.cache.DiskLruCache$3: boolean hasNext() +okhttp3.EventListener: void secureConnectStart(okhttp3.Call) +androidx.preference.R$style: int Widget_AppCompat_ActionBar_Solid +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode AUTOMATIC +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalGap +androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_small_material +com.google.android.material.R$color: int material_timepicker_clockface +wangdaye.com.geometricweather.R$styleable: int BackgroundStyle_android_selectableItemBackground +androidx.constraintlayout.widget.R$attr: int track +okhttp3.OkHttpClient: java.net.ProxySelector proxySelector +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean hasKey(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void cancelSources() +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.queue.MpscLinkedQueue queue +wangdaye.com.geometricweather.R$attr: int mock_diagonalsColor +androidx.core.R$color +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: boolean active +okio.Buffer: boolean isOpen() +com.google.android.material.slider.RangeSlider: void setHaloTintList(android.content.res.ColorStateList) +retrofit2.RequestFactory$Builder: java.lang.reflect.Type[] parameterTypes +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_baselineAligned +cyanogenmod.providers.CMSettings$Secure: java.lang.String getString(android.content.ContentResolver,java.lang.String) +android.didikee.donate.R$string: int abc_searchview_description_clear +android.didikee.donate.R$id: int screen +cyanogenmod.externalviews.IKeyguardExternalViewProvider +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge +cyanogenmod.themes.ThemeManager: void addClient(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +wangdaye.com.geometricweather.R$string: int key_notification_hide_in_lockScreen +wangdaye.com.geometricweather.R$string: int precipitation_duration +okhttp3.internal.Internal: void setCache(okhttp3.OkHttpClient$Builder,okhttp3.internal.cache.InternalCache) +com.tencent.bugly.proguard.z: java.lang.String a(java.util.Date) +wangdaye.com.geometricweather.R$styleable: int Slider_tickColor +com.google.android.material.chip.ChipGroup: int getChipSpacingHorizontal() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: java.lang.String Unit +com.google.android.material.R$styleable: int[] RangeSlider +androidx.constraintlayout.widget.R$styleable: int Layout_maxHeight +com.google.android.gms.base.R$attr: int colorScheme +wangdaye.com.geometricweather.R$attr: int layout_constraintDimensionRatio +com.google.android.material.R$attr: int showDelay +okhttp3.CacheControl$Builder: boolean onlyIfCached +androidx.constraintlayout.widget.R$attr: int logoDescription +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Info +androidx.constraintlayout.widget.R$styleable: int ActionBar_logo +okhttp3.internal.http2.Http2Connection$Builder: int pingIntervalMillis +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void drainAndDispose() +wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_selectionRequired +androidx.fragment.R$id: int accessibility_custom_action_4 +retrofit2.Retrofit: java.util.List converterFactories() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather weather +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dividerHorizontal +androidx.constraintlayout.widget.R$style: int Animation_AppCompat_DropDownUp +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver +cyanogenmod.profiles.AirplaneModeSettings: cyanogenmod.profiles.AirplaneModeSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +com.tencent.bugly.proguard.u: java.lang.Object r +james.adaptiveicon.R$drawable: int abc_ic_clear_material +io.reactivex.internal.schedulers.ScheduledRunnable: int FUTURE_INDEX +com.amap.api.location.AMapLocationQualityReport: void setGPSSatellites(int) +okhttp3.internal.http.HttpMethod +com.jaredrummler.android.colorpicker.R$attr: int dropDownListViewStyle +wangdaye.com.geometricweather.R$string: int settings_title_notification_custom_color +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_114 +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_primary_mtrl_alpha +com.jaredrummler.android.colorpicker.R$id: int right +com.jaredrummler.android.colorpicker.R$attr: int actionModePopupWindowStyle +android.didikee.donate.R$drawable: int abc_tab_indicator_mtrl_alpha +wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_day +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_NoActionBar +okhttp3.internal.http2.Http2: byte TYPE_HEADERS +androidx.preference.EditTextPreference: void setOnBindEditTextListener(androidx.preference.EditTextPreference$OnBindEditTextListener) +com.google.android.material.R$xml +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean delayError +com.google.android.material.R$color: int ripple_material_light +com.tencent.bugly.b: com.tencent.bugly.proguard.p d +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.main.fragments.ManagementFragment: ManagementFragment() +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableStart +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: void complete() +wangdaye.com.geometricweather.R$animator: int weather_clear_day_1 +james.adaptiveicon.R$styleable: int CompoundButton_buttonTintMode +androidx.lifecycle.ComputableLiveData$1: ComputableLiveData$1(androidx.lifecycle.ComputableLiveData) +james.adaptiveicon.R$style: int Base_Animation_AppCompat_Dialog +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_daySelectedStyle +androidx.preference.R$attr: int fontProviderCerts +okhttp3.ConnectionPool: int connectionCount() +com.tencent.bugly.crashreport.crash.anr.b: java.lang.String g +wangdaye.com.geometricweather.R$drawable: int ic_alert +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Subhead +androidx.appcompat.R$styleable: int AppCompatTheme_dialogPreferredPadding +com.amap.api.fence.GeoFenceManagerBase: java.util.List getAllGeoFence() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Primary +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +cyanogenmod.providers.CMSettings$Secure: java.lang.String ADB_NOTIFY +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +com.xw.repo.bubbleseekbar.R$attr: int paddingBottomNoButtons +androidx.transition.R$drawable: int notification_bg +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: io.reactivex.Observer downstream +com.google.android.material.internal.VisibilityAwareImageButton: void setVisibility(int) +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_seek_thumb +android.didikee.donate.R$drawable: int abc_textfield_activated_mtrl_alpha +wangdaye.com.geometricweather.R$id: int widget_week_icon +androidx.hilt.work.R$attr: int ttcIndex +com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_alpha +com.jaredrummler.android.colorpicker.R$attr: int textColorSearchUrl +com.github.rahatarmanahmed.cpv.CircularProgressView: float INDETERMINANT_MIN_SWEEP +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_117 +cyanogenmod.weather.WeatherLocation: java.lang.String mCity +com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(short,java.lang.String) +okhttp3.internal.tls.OkHostnameVerifier: boolean verifyHostname(java.lang.String,java.security.cert.X509Certificate) +com.xw.repo.bubbleseekbar.R$style: R$style() +androidx.customview.R$string: R$string() +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_default +androidx.customview.R$styleable: int GradientColor_android_startX +androidx.appcompat.widget.ViewStubCompat: void setLayoutResource(int) +com.loc.k: void a(int) +com.tencent.bugly.crashreport.common.info.a: java.lang.Boolean x() +org.greenrobot.greendao.AbstractDao: void deleteInTxInternal(java.lang.Iterable,java.lang.Iterable) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean mAskedShow +wangdaye.com.geometricweather.R$dimen: int mtrl_min_touch_target_size +com.xw.repo.BubbleSeekBar: float getMin() +com.google.android.material.R$styleable: int StateListDrawable_android_dither +cyanogenmod.app.ILiveLockScreenManagerProvider: void cancelLiveLockScreen(java.lang.String,int,int) +cyanogenmod.app.CustomTile: int describeContents() +wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_background_color +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) +androidx.hilt.R$styleable: int ColorStateListItem_android_color +androidx.activity.R$dimen: int notification_small_icon_size_as_large +androidx.constraintlayout.widget.R$color: int material_blue_grey_800 +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_shouldDisableView +androidx.appcompat.R$drawable: int abc_text_select_handle_left_mtrl_light +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: boolean a(android.content.Context,android.content.Intent) +okhttp3.internal.http2.Http2: byte TYPE_PUSH_PROMISE +com.google.android.material.R$attr: int tint +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterTextColor +wangdaye.com.geometricweather.R$color: int primary_material_dark +com.tencent.bugly.crashreport.CrashReport: void setCrashFilter(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_tooltipForegroundColor +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_2 +androidx.lifecycle.AndroidViewModel: android.app.Application getApplication() +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy +io.reactivex.internal.observers.DeferredScalarDisposable: DeferredScalarDisposable(io.reactivex.Observer) +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_font +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_128_GCM_SHA256 +com.google.android.material.R$attr: int toolbarStyle +androidx.legacy.coreutils.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.settings.activities.AboutActivity: AboutActivity() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupMenu_Overflow +wangdaye.com.geometricweather.R$dimen: int notification_large_icon_width +retrofit2.ParameterHandler$Body +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setStatus(int) +com.turingtechnologies.materialscrollbar.R$string: int search_menu_title +retrofit2.Response: boolean isSuccessful() +com.jaredrummler.android.colorpicker.ColorPickerView: java.lang.String getAlphaSliderText() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_51 +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontWeight +com.google.android.material.appbar.CollapsingToolbarLayout: int getScrimAlpha() +android.didikee.donate.R$drawable: int abc_ic_star_half_black_48dp +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Colored +androidx.vectordrawable.animated.R$string: R$string() +okhttp3.internal.http2.Http2Connection: void sendDegradedPingLater() +com.google.android.material.R$styleable: int Constraint_flow_lastVerticalBias +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setColor(boolean) +wangdaye.com.geometricweather.R$attr: int msb_rightToLeft +com.google.android.material.circularreveal.CircularRevealLinearLayout: int getCircularRevealScrimColor() +androidx.appcompat.view.menu.MenuPopupHelper: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +wangdaye.com.geometricweather.R$layout: int material_clock_period_toggle_land +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: HourlyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +com.tencent.bugly.proguard.an: java.util.Map g +androidx.loader.R$style: int Widget_Compat_NotificationActionText +androidx.work.R$id: int right_side +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: double seaLevel +com.xw.repo.bubbleseekbar.R$attr: int windowFixedHeightMajor +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipCornerRadius +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: int UnitType +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeFindDrawable +com.google.android.material.R$string: int character_counter_content_description +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_NOTIFICATIONS +com.turingtechnologies.materialscrollbar.R$attr: int state_lifted +com.jaredrummler.android.colorpicker.R$attr: int preferenceCategoryStyle +com.google.android.material.R$string: int mtrl_picker_toggle_to_year_selection +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat +androidx.preference.R$color: int primary_material_dark +wangdaye.com.geometricweather.R$id: int widget_week_temp +androidx.appcompat.widget.ActionBarContainer: void setTabContainer(androidx.appcompat.widget.ScrollingTabContainerView) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: java.lang.String English +com.google.android.material.slider.BaseSlider: float getValueFrom() +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_icon +okhttp3.internal.http.HttpHeaders: okhttp3.Headers varyHeaders(okhttp3.Headers,okhttp3.Headers) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: long EpochEndTime +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_elevation +okhttp3.internal.http.HttpCodec +okhttp3.Request$Builder: okhttp3.Request$Builder removeHeader(java.lang.String) +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getLockWallpaperThemePackageName() +cyanogenmod.app.ProfileManager: ProfileManager(android.content.Context) +cyanogenmod.platform.R +androidx.constraintlayout.widget.R$styleable: int MenuItem_actionLayout +com.google.android.material.R$drawable: int material_ic_keyboard_arrow_next_black_24dp +io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Action) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_DropDownItem_Spinner +androidx.preference.R$id: int accessibility_custom_action_15 +androidx.appcompat.R$attr: int titleMargin +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit PPCM +wangdaye.com.geometricweather.R$attr: int maxImageSize +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupWindow +retrofit2.http.Part +com.google.android.material.R$color: int secondary_text_disabled_material_dark +androidx.preference.R$dimen: int fastscroll_default_thickness +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.providers.CMSettings$System: java.lang.String BLUETOOTH_ACCEPT_ALL_FILES +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +com.amap.api.fence.GeoFenceClient: void setGeoFenceListener(com.amap.api.fence.GeoFenceListener) +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteInTxArray +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type valueOf(java.lang.String) +okhttp3.internal.http2.Header: okio.ByteString TARGET_SCHEME +com.google.android.material.timepicker.TimePickerView: void setOnPeriodChangeListener(com.google.android.material.timepicker.TimePickerView$OnPeriodChangeListener) +okhttp3.Request$Builder: okhttp3.Request$Builder url(java.lang.String) +wangdaye.com.geometricweather.R$string: int wechat +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView_Menu +com.google.android.material.R$style: int Base_Widget_AppCompat_Button +androidx.constraintlayout.helper.widget.Flow: void setPaddingBottom(int) +com.google.android.material.R$styleable: int MaterialAutoCompleteTextView_android_inputType +androidx.viewpager2.R$id: int right_icon +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf +cyanogenmod.app.ICMTelephonyManager: void setDefaultPhoneSub(int) +wangdaye.com.geometricweather.R$attr: int dropDownListViewStyle +androidx.appcompat.R$styleable: int SwitchCompat_trackTintMode +cyanogenmod.weather.WeatherLocation: java.lang.String access$302(cyanogenmod.weather.WeatherLocation,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemBackground +james.adaptiveicon.R$attr: int imageButtonStyle +com.tencent.bugly.crashreport.common.info.a: com.tencent.bugly.crashreport.common.info.a a(android.content.Context) +androidx.hilt.R$drawable: int notification_bg +cyanogenmod.providers.CMSettings$Secure: java.lang.String PRIVACY_GUARD_DEFAULT +wangdaye.com.geometricweather.R$attr: int layout_dodgeInsetEdges +com.google.android.material.bottomnavigation.BottomNavigationMenuView: BottomNavigationMenuView(android.content.Context) +androidx.core.view.ViewCompat$1 +wangdaye.com.geometricweather.R$attr: int maxCharacterCount +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void dispose() +androidx.appcompat.R$styleable: int View_paddingEnd +retrofit2.Platform +androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +androidx.appcompat.R$style: int Widget_AppCompat_PopupWindow +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver +com.google.android.material.R$dimen: int mtrl_high_ripple_focused_alpha +com.google.android.material.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$id: int widget_day_week_week_2 +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: void setSurfaceAngle(float) +io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onNext +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabUnboundedRipple +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onKeyguardShowing(boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMaxWidth +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemTextColor +androidx.core.R$dimen: int notification_top_pad +androidx.appcompat.R$drawable: int abc_ic_menu_overflow_material +wangdaye.com.geometricweather.R$drawable: int ic_state_checked +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_enabled +retrofit2.ParameterHandler$Query +wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_dark +okhttp3.internal.Util: int indexOfControlOrNonAscii(java.lang.String) +androidx.constraintlayout.widget.R$integer: int abc_config_activityDefaultDur +james.adaptiveicon.R$color: int switch_thumb_material_light +androidx.preference.R$anim: int btn_checkbox_to_checked_icon_null_animation +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.preference.R$styleable: int Preference_android_shouldDisableView +com.google.android.material.textfield.TextInputLayout: void setEndIconContentDescription(java.lang.CharSequence) +okio.Utf8 +androidx.lifecycle.extensions.R$string +androidx.appcompat.R$attr: int titleMarginBottom +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onComplete() +okhttp3.CacheControl: boolean noCache() +com.bumptech.glide.load.engine.GlideException: java.util.List causes +androidx.recyclerview.R$styleable: int RecyclerView_layoutManager +james.adaptiveicon.R$drawable: int abc_ic_go_search_api_material +cyanogenmod.weather.WeatherInfo$Builder: double mTodaysHighTemp +android.didikee.donate.R$color: int ripple_material_light +wangdaye.com.geometricweather.common.basic.GeoViewModel +com.xw.repo.bubbleseekbar.R$attr: int panelMenuListTheme +androidx.preference.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle +androidx.constraintlayout.widget.R$attr: int arcMode +android.didikee.donate.R$style: int Widget_AppCompat_EditText +com.google.android.material.R$attr: int visibilityMode +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Refresh +okhttp3.logging.LoggingEventListener android.didikee.donate.R$attr: int actionBarTabStyle -com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context) -androidx.appcompat.R$styleable: int TextAppearance_android_shadowColor -cyanogenmod.app.Profile$ProfileTrigger: void getXmlString(java.lang.StringBuilder,android.content.Context) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnp -com.xw.repo.bubbleseekbar.R$attr: int layout_insetEdge -cyanogenmod.hardware.IThermalListenerCallback: void onThermalChanged(int) -james.adaptiveicon.R$attr: int fontProviderQuery -androidx.appcompat.widget.AppCompatEditText: void setBackgroundDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$dimen: int design_fab_size_normal -org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory,int,android.database.DatabaseErrorHandler) -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.functions.Function,int,io.reactivex.ObservableSource[]) -androidx.constraintlayout.widget.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: AccuCurrentResult$Wind() -android.didikee.donate.R$color: int bright_foreground_inverse_material_dark -androidx.vectordrawable.animated.R$id: int forever -wangdaye.com.geometricweather.R$styleable: int ListPreference_entries -wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingTop -androidx.constraintlayout.widget.R$styleable: int MotionLayout_applyMotionScene -androidx.hilt.work.R$styleable: R$styleable() -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -com.amap.api.fence.GeoFenceManagerBase: void addNearbyGeoFence(java.lang.String,java.lang.String,com.amap.api.location.DPoint,float,int,java.lang.String) -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_Alert -wangdaye.com.geometricweather.R$string: int key_subtitle_data -cyanogenmod.app.StatusBarPanelCustomTile: int id -com.google.android.material.R$styleable: int TextInputLayout_hintEnabled -com.bumptech.glide.Registry$NoSourceEncoderAvailableException: Registry$NoSourceEncoderAvailableException(java.lang.Class) -okhttp3.Cache$CacheResponseBody: java.lang.String contentLength -com.tencent.bugly.proguard.ae: void a(java.lang.String) -com.tencent.bugly.crashreport.CrashReport$WebViewInterface: void loadUrl(java.lang.String) -androidx.viewpager.widget.ViewPager: void addOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_16 -com.google.gson.stream.JsonWriter: void close() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA -androidx.viewpager.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: AccuLocationResult$GeoPosition$Elevation() -okhttp3.Handshake: okhttp3.CipherSuite cipherSuite -okhttp3.internal.http2.Http2Reader -androidx.preference.R$attr: int listItemLayout -com.google.android.material.R$styleable: int GradientColor_android_startY -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver -wangdaye.com.geometricweather.R$color: int checkbox_themeable_attribute_color -com.tencent.bugly.proguard.i: byte[] c(int,boolean) -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_BottomSheet -io.reactivex.Observable: io.reactivex.Observable concatMap(io.reactivex.functions.Function) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: int UnitType -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language PORTUGUESE_BR -androidx.customview.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$layout: int activity_main -androidx.preference.R$styleable: int AlertDialog_multiChoiceItemLayout -cyanogenmod.externalviews.ExternalView: void onActivityCreated(android.app.Activity,android.os.Bundle) -com.jaredrummler.android.colorpicker.R$attr: int actionOverflowButtonStyle -okio.Segment: Segment() -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: long serialVersionUID -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: boolean isDisposed() -com.bumptech.glide.R$id: int none -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver -androidx.appcompat.resources.R$integer: R$integer() -androidx.preference.R$id: int tag_accessibility_actions -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea AdministrativeArea -androidx.preference.R$string: int abc_activitychooserview_choose_application -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_EditText -com.turingtechnologies.materialscrollbar.R$attr: int actionModePopupWindowStyle -okhttp3.internal.cache.DiskLruCache$Editor: okio.Sink newSink(int) -com.google.android.material.R$styleable: int ColorStateListItem_android_color -androidx.preference.R$styleable: int AppCompatTheme_actionBarDivider -com.tencent.bugly.crashreport.crash.h5.a: java.lang.String a -com.google.android.material.R$attr: int tickMarkTintMode -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogTheme -com.google.android.material.R$dimen: int default_dimension -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -androidx.lifecycle.LifecycleRegistry: void sync() -androidx.vectordrawable.R$drawable: int notification_bg_normal -com.google.android.material.R$attr: int colorOnSecondary -android.didikee.donate.R$drawable: int abc_list_divider_mtrl_alpha -io.reactivex.internal.operators.observable.ObserverResourceWrapper: boolean isDisposed() -com.google.gson.stream.JsonReader: int NUMBER_CHAR_NONE -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light_normal_background -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlHighlight -wangdaye.com.geometricweather.R$styleable: int[] SeekBarPreference -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: long produced -androidx.hilt.work.R$drawable: int notification_bg -com.google.android.material.R$attr: int behavior_skipCollapsed -com.google.android.material.R$attr: int flow_horizontalBias -com.amap.api.location.AMapLocationClientOption: boolean f -okio.AsyncTimeout: void exit(boolean) -okhttp3.ConnectionSpec: okhttp3.CipherSuite[] RESTRICTED_CIPHER_SUITES -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetLeft -androidx.preference.R$style: int Base_DialogWindowTitleBackground_AppCompat -androidx.dynamicanimation.R$dimen: int notification_main_column_padding_top -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onAttach(android.os.IBinder) -androidx.appcompat.R$attr: int editTextColor -androidx.appcompat.R$attr: int checkedTextViewStyle -com.google.android.material.R$attr: int layout_constraintHeight_default -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: WeatherEntityDao$Properties() -com.google.android.material.R$styleable: int AppCompatTheme_actionBarPopupTheme -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetEnd -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: int prefetch -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator FORWARD_LOOKUP_PROVIDER_VALIDATOR -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dividerVertical -android.didikee.donate.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String getDefenseIcon() -androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableCompat -wangdaye.com.geometricweather.R$styleable: int[] FlowLayout -com.google.android.material.R$layout: int mtrl_layout_snackbar_include -androidx.recyclerview.R$layout -wangdaye.com.geometricweather.R$attr: int backgroundInsetTop -androidx.appcompat.resources.R$styleable -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String EXTRA_ALARM_ID -okio.Okio: okio.Source source(java.io.InputStream) -wangdaye.com.geometricweather.R$id: int widget_week_card -com.google.android.material.slider.Slider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) -androidx.preference.R$color: int abc_hint_foreground_material_light -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void setDisposable(io.reactivex.disposables.Disposable) -androidx.viewpager.R$styleable: int GradientColor_android_centerX -androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton -com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatImageView -android.didikee.donate.R$attr: int textAppearanceSearchResultTitle -com.google.android.material.R$attr: int iconEndPadding -com.google.android.material.slider.RangeSlider: void setTrackInactiveTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconMode -androidx.activity.R$dimen: int notification_big_circle_margin -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void ping(boolean,int,int) -androidx.constraintlayout.widget.R$styleable: int PropertySet_layout_constraintTag -androidx.constraintlayout.widget.R$attr: int layout_constraintTag -okhttp3.HttpUrl: java.net.URI uri() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String ID +android.didikee.donate.R$styleable: int SearchView_goIcon +wangdaye.com.geometricweather.R$styleable: int Preference_android_dependency +androidx.appcompat.R$styleable: int AppCompatTheme_editTextStyle +com.xw.repo.bubbleseekbar.R$drawable: int abc_edit_text_material +com.amap.api.fence.GeoFence$1: java.lang.Object[] newArray(int) +androidx.hilt.R$dimen: int notification_top_pad_large_text +retrofit2.RequestFactory$Builder: java.lang.Class boxIfPrimitive(java.lang.Class) +android.didikee.donate.R$attr: int dropdownListPreferredItemHeight +androidx.appcompat.widget.Toolbar: android.view.Menu getMenu() +android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogCenterButtons +com.jaredrummler.android.colorpicker.R$layout: int abc_action_menu_item_layout +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Snackbar_FullWidth +androidx.swiperefreshlayout.R$dimen: int compat_button_inset_vertical_material +androidx.constraintlayout.utils.widget.ImageFilterView: void setCrossfade(float) cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onAttach() -okhttp3.internal.connection.RealConnection: okhttp3.Route route -io.reactivex.internal.subscriptions.SubscriptionHelper: void request(long) +james.adaptiveicon.R$style: int Base_V22_Theme_AppCompat +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_hideOnContentScroll +wangdaye.com.geometricweather.R$layout: int item_trend_hourly +okio.ForwardingSource: okio.Timeout timeout() +com.turingtechnologies.materialscrollbar.R$color: int cardview_light_background +android.support.v4.os.ResultReceiver: int describeContents() +androidx.recyclerview.widget.RecyclerView: void addOnChildAttachStateChangeListener(androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener) +cyanogenmod.app.Profile$TriggerState: Profile$TriggerState() +com.google.android.material.R$color: int mtrl_textinput_filled_box_default_background_color +com.google.android.material.R$styleable: int ProgressIndicator_trackColor +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Headline +com.google.android.material.R$attr: int floatingActionButtonStyle +okio.BufferedSink: okio.BufferedSink writeUtf8(java.lang.String) +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_createCustomTileWithTag +com.amap.api.fence.GeoFenceClient: void setActivateAction(int) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onError(java.lang.Throwable) +androidx.lifecycle.SavedStateViewModelFactory: androidx.savedstate.SavedStateRegistry mSavedStateRegistry +com.tencent.bugly.proguard.u: java.lang.Object t +wangdaye.com.geometricweather.R$color: int mtrl_tabs_icon_color_selector +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int consumed +com.xw.repo.bubbleseekbar.R$attr: int dialogCornerRadius +wangdaye.com.geometricweather.R$styleable: int[] FloatingActionButton_Behavior_Layout +com.turingtechnologies.materialscrollbar.R$id: int radio +androidx.hilt.work.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$drawable: int abc_cab_background_internal_bg +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_NIGHT +androidx.constraintlayout.widget.R$attr: int actionModeSelectAllDrawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX getWind() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_default +androidx.viewpager2.R$id: int accessibility_custom_action_16 +io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper CANCELLED +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lat +androidx.preference.R$styleable: int MenuItem_android_alphabeticShortcut +wangdaye.com.geometricweather.R$array: int speed_unit_voices +com.amap.api.fence.GeoFence: void setPoiItem(com.amap.api.fence.PoiItem) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableEnd +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_xml +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_LAST_PROFILE_NAME +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: double seaLevel +com.xw.repo.bubbleseekbar.R$attr: int selectableItemBackground +com.google.android.material.R$styleable: int Transition_constraintSetStart +android.didikee.donate.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.R$attr: int switchPadding +androidx.preference.R$styleable: int AppCompatTheme_actionBarPopupTheme +okhttp3.HttpUrl: java.lang.String FORM_ENCODE_SET +okhttp3.internal.http2.Http2Connection$4: okhttp3.internal.http2.Http2Connection this$0 +io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,boolean) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: int minuteInterval +com.google.android.material.R$color: int bright_foreground_material_dark +james.adaptiveicon.R$string: int abc_toolbar_collapse_description +okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeWithoutCheckedException(java.lang.Object,java.lang.Object[]) +com.google.android.material.R$style: int AlertDialog_AppCompat +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getWeatherSource() +wangdaye.com.geometricweather.R$style: R$style() +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_android_orientation +androidx.appcompat.widget.ListPopupWindow: void setOnItemSelectedListener(android.widget.AdapterView$OnItemSelectedListener) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundTintList(android.content.res.ColorStateList) +com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_material_dark +com.google.android.material.R$styleable: int AppCompatTheme_windowMinWidthMinor +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_change_size_expand_motion_spec +androidx.appcompat.R$style: int TextAppearance_AppCompat_Display4 +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_weight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getWeather() +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +okhttp3.CacheControl: boolean noTransform +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchTextAppearance +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextColor(android.content.res.ColorStateList) +androidx.appcompat.widget.Toolbar: int getCurrentContentInsetLeft() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_256_GCM_SHA384 +com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getSupportBackgroundTintList() +androidx.hilt.work.R$id: int forever +okhttp3.CacheControl$Builder: boolean noStore +androidx.lifecycle.ProcessLifecycleOwnerInitializer: java.lang.String getType(android.net.Uri) +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemSummary(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: double Dbz +androidx.appcompat.widget.AppCompatSpinner: void setDropDownWidth(int) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_placeholder_content +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.util.Date StartTime +androidx.viewpager2.R$id: int line3 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_percent +okio.BufferedSource: java.lang.String readUtf8LineStrict(long) +com.tencent.bugly.crashreport.biz.UserInfoBean: UserInfoBean() +james.adaptiveicon.R$style: int Theme_AppCompat_Light_DarkActionBar +com.google.android.material.slider.Slider: float getThumbElevation() +wangdaye.com.geometricweather.R$attr: int textAppearanceLargePopupMenu +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.vectordrawable.animated.R$style: R$style() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.util.List getValue() +james.adaptiveicon.R$attr: int actionModeCopyDrawable +com.google.android.material.R$attr: int onTouchUp +wangdaye.com.geometricweather.R$drawable: int shortcuts_snow +wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_singlechoice +okhttp3.internal.http1.Http1Codec$AbstractSource: void endOfInput(boolean,java.io.IOException) +com.tencent.bugly.proguard.w: com.tencent.bugly.proguard.w b +androidx.constraintlayout.widget.R$styleable: int SearchView_commitIcon +androidx.core.R$dimen: int notification_action_icon_size +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void cancelTimer() +com.jaredrummler.android.colorpicker.R$attr: int showText +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBaseline_creator +androidx.preference.R$style: int TextAppearance_Compat_Notification_Title +com.github.rahatarmanahmed.cpv.CircularProgressView: boolean isIndeterminate +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdw +androidx.core.app.NotificationCompatSideChannelService +androidx.core.graphics.drawable.IconCompatParcelizer: void write(androidx.core.graphics.drawable.IconCompat,androidx.versionedparcelable.VersionedParcel) +okhttp3.internal.http2.Settings: int MAX_CONCURRENT_STREAMS +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: int UnitType +com.xw.repo.BubbleSeekBar: int getProgress() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_minHeight +wangdaye.com.geometricweather.R$drawable: int notif_temp_24 +okhttp3.internal.http1.Http1Codec$AbstractSource: okhttp3.internal.http1.Http1Codec this$0 +james.adaptiveicon.R$styleable: int AppCompatTheme_popupWindowStyle +com.google.android.material.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +wangdaye.com.geometricweather.R$string: int key_list_animation_switch +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: java.lang.Integer min +android.didikee.donate.R$styleable: int AppCompatTheme_homeAsUpIndicator +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: io.reactivex.Observer downstream +androidx.fragment.R$layout: R$layout() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setHourlyForecast(java.lang.String) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber +androidx.fragment.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.util.Date getDate() +wangdaye.com.geometricweather.R$string: int life_details +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1 +androidx.viewpager2.R$attr: int fontVariationSettings +androidx.preference.R$styleable: int AppCompatTheme_actionBarSplitStyle +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetBottom +androidx.hilt.lifecycle.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object readKey(android.database.Cursor,int) +androidx.core.R$dimen: int compat_button_inset_horizontal_material +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_elevation +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconStartPadding +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +android.didikee.donate.R$dimen: int highlight_alpha_material_colored +wangdaye.com.geometricweather.R$animator: int weather_sleet_1 +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +androidx.dynamicanimation.R$id: int action_container +androidx.preference.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +wangdaye.com.geometricweather.R$layout: int item_weather_daily_title +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getCityId() +com.google.android.material.textfield.TextInputLayout: void setEndIconOnLongClickListener(android.view.View$OnLongClickListener) +com.turingtechnologies.materialscrollbar.DragScrollBar +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarPopupTheme +androidx.lifecycle.extensions.R$dimen: int notification_right_side_padding_top +cyanogenmod.app.Profile$TriggerState +com.google.android.material.R$styleable: int State_constraints +okhttp3.internal.ws.RealWebSocket: int sentPingCount +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +com.google.gson.stream.JsonReader: boolean isLiteral(char) +androidx.constraintlayout.widget.R$drawable: int abc_textfield_search_activated_mtrl_alpha +com.google.android.material.chip.Chip: void setIconEndPaddingResource(int) +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_item_icon_padding +wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary +androidx.appcompat.R$styleable: int AppCompatTheme_dialogTheme +com.google.android.material.card.MaterialCardView: int getContentPaddingRight() +com.jaredrummler.android.colorpicker.R$layout: int support_simple_spinner_dropdown_item +wangdaye.com.geometricweather.R$id: int topPanel +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontWeight +okhttp3.Dispatcher: int queuedCallsCount() +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language getInstance(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayStyle +androidx.dynamicanimation.R$attr: int ttcIndex +wangdaye.com.geometricweather.common.basic.models.weather.Astro: boolean isValid() +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State[] $VALUES +wangdaye.com.geometricweather.R$string: int mtrl_picker_day_of_week_column_header +cyanogenmod.app.ThemeVersion$ComponentVersion: int getCurrentVersion() +com.google.gson.internal.LazilyParsedNumber: LazilyParsedNumber(java.lang.String) +androidx.constraintlayout.widget.R$color: int abc_background_cache_hint_selector_material_dark +androidx.viewpager.R$id: int async +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_section_mark +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +okio.RealBufferedSink: okio.BufferedSink emitCompleteSegments() +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_positiveButtonText +wangdaye.com.geometricweather.R$drawable: int notif_temp_127 +androidx.work.R$styleable: int GradientColor_android_endY +com.google.android.material.progressindicator.ProgressIndicator: void setLinearSeamless(boolean) +okio.RealBufferedSource: long readHexadecimalUnsignedLong() +retrofit2.adapter.rxjava2.Result: java.lang.Throwable error +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTintMode +androidx.vectordrawable.R$id: int accessibility_custom_action_9 +james.adaptiveicon.R$style: R$style() +androidx.preference.R$dimen: int notification_right_icon_size +com.google.android.material.R$styleable: int MaterialCalendar_rangeFillColor +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: MpscLinkedQueue$LinkedQueueNode(java.lang.Object) +androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityPreCreated(android.app.Activity,android.os.Bundle) +wangdaye.com.geometricweather.R$style: int Theme_Design_Light_BottomSheetDialog +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_android_windowIsFloating +okio.Okio$2: Okio$2(okio.Timeout,java.io.InputStream) +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_FixedSize_Bridge +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: java.lang.String c +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Action onComplete +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchPadding +androidx.viewpager.R$id: int right_icon +cyanogenmod.app.CustomTile: int PSEUDO_GRID_ITEM_MAX_COUNT +com.google.android.material.R$color: int checkbox_themeable_attribute_color +wangdaye.com.geometricweather.R$id: int circle_center +androidx.preference.R$layout: int abc_expanded_menu_layout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setYesterday(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean) +james.adaptiveicon.R$drawable: int abc_textfield_activated_mtrl_alpha +androidx.core.widget.NestedScrollView$SavedState +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_LIGHT +androidx.appcompat.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +cyanogenmod.providers.CMSettings$Global: boolean putInt(android.content.ContentResolver,java.lang.String,int) +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type valueOf(java.lang.String) +okhttp3.internal.Util: okhttp3.RequestBody EMPTY_REQUEST +wangdaye.com.geometricweather.R$id: int widget_clock_day_icon +com.google.android.material.chip.Chip: void setMinLines(int) +wangdaye.com.geometricweather.R$dimen: int material_cursor_inset_bottom +android.didikee.donate.R$styleable: int AppCompatTheme_windowMinWidthMinor +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +androidx.preference.R$styleable: int GradientColor_android_centerY +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_percent +com.jaredrummler.android.colorpicker.R$id: int normal +com.tencent.bugly.proguard.aj: void a(java.lang.StringBuilder,int) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty1H +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.functions.Function bufferClose +com.google.android.material.R$id: int dropdown_menu +wangdaye.com.geometricweather.R$attr: int motionDebug +com.google.android.material.R$styleable: int Chip_chipSurfaceColor +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DeterminateDrawable getProgressDrawable() +com.google.android.material.R$layout: int mtrl_alert_select_dialog_item +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginEnd() +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.R$attr: int dialogPreferredPadding +wangdaye.com.geometricweather.R$id: int activity_widget_config_styleSpinner +androidx.hilt.R$dimen: R$dimen() +james.adaptiveicon.R$styleable: int[] AppCompatImageView +com.google.android.material.R$style: int Theme_MaterialComponents +james.adaptiveicon.R$dimen: int abc_text_size_medium_material +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getThermalState() +com.tencent.bugly.crashreport.crash.CrashDetailBean +androidx.viewpager2.R$id: int async +com.google.android.material.R$attr: int dialogCornerRadius +wangdaye.com.geometricweather.remoteviews.config.ClockDayVerticalWidgetConfigActivity +com.jaredrummler.android.colorpicker.R$attr: int listMenuViewStyle +com.tencent.bugly.crashreport.common.info.b: int w() +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableRightCompat +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter nighttimeWeatherCodeConverter +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getLtoDestination() +androidx.appcompat.R$color: int abc_decor_view_status_guard +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer aqiIndex +wangdaye.com.geometricweather.R$id: int material_clock_period_pm_button +james.adaptiveicon.R$layout: int abc_alert_dialog_title_material +retrofit2.RequestFactory$Builder: boolean gotQuery +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: double Value +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +okio.SegmentedByteString: java.lang.String toString() +wangdaye.com.geometricweather.R$styleable: int TabItem_android_text +okio.Buffer: okio.BufferedSink writeHexadecimalUnsignedLong(long) +com.google.android.material.R$color: int background_material_light +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: MfForecastResult$DailyForecast() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +retrofit2.Utils$GenericArrayTypeImpl: int hashCode() +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context,android.util.AttributeSet) +org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Object[]) +com.google.android.material.R$dimen: int mtrl_snackbar_background_overlay_color_alpha +com.google.android.material.internal.NavigationMenuItemView: void setTextColor(android.content.res.ColorStateList) +cyanogenmod.profiles.StreamSettings: cyanogenmod.profiles.StreamSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +wangdaye.com.geometricweather.R$dimen: int abc_text_size_small_material +okio.BufferedSource: void require(long) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ImageButton +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,io.reactivex.functions.Function,boolean) +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a: long c +okhttp3.Request$Builder: okhttp3.Request$Builder method(java.lang.String,okhttp3.RequestBody) +androidx.drawerlayout.R$styleable: int[] ColorStateListItem +cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemDrawable(int) +androidx.constraintlayout.widget.R$attr: int thickness +com.google.android.material.R$attr: int curveFit +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean mainDone +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String weatherSource +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() +com.xw.repo.bubbleseekbar.R$anim: int abc_tooltip_enter +androidx.preference.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +androidx.appcompat.resources.R$id: int accessibility_custom_action_27 +androidx.fragment.R$styleable: int FontFamilyFont_android_font +androidx.work.ListenableWorker: ListenableWorker(android.content.Context,androidx.work.WorkerParameters) +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_light +com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_mid_color +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getDaytimeWeatherCode() +cyanogenmod.library.R$styleable: int LiveLockScreen_settingsActivity +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmPic2 +com.google.android.gms.common.stats.WakeLockEvent +com.tencent.bugly.proguard.l: boolean a(int,int) +com.google.android.material.R$id: int material_minute_text_input +androidx.fragment.R$id: int async +wangdaye.com.geometricweather.R$attr: int customDimension +wangdaye.com.geometricweather.R$string: int refresh_at +androidx.hilt.lifecycle.R$attr: int fontWeight +wangdaye.com.geometricweather.R$styleable: int ActionBar_indeterminateProgressStyle +okio.ForwardingTimeout: okio.ForwardingTimeout setDelegate(okio.Timeout) +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_Layout_layout_scrollFlags +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.lang.Object key +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintTextAppearance +androidx.loader.R$styleable: int FontFamilyFont_font +com.google.android.material.R$style: int TextAppearance_Design_HelperText +com.google.android.material.timepicker.TimePickerView: void addOnRotateListener(com.google.android.material.timepicker.ClockHandView$OnRotateListener) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: double Value +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: java.lang.String Unit +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_MIN_INDEX +retrofit2.HttpException +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_1 +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Current current +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean precipitationProbability +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_viewInflaterClass +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust WindGust +wangdaye.com.geometricweather.R$attr: int initialExpandedChildrenCount +io.reactivex.Observable: io.reactivex.Single singleOrError() +okhttp3.internal.NamedRunnable: NamedRunnable(java.lang.String,java.lang.Object[]) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModePasteDrawable +com.xw.repo.bubbleseekbar.R$styleable: R$styleable() +james.adaptiveicon.R$id: int progress_horizontal +com.google.android.material.R$styleable: int MaterialButton_backgroundTint +androidx.preference.R$string: int v7_preference_off +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_color +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Body1 +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_NoActionBar +com.google.android.material.R$drawable: int btn_radio_on_mtrl +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: CNWeatherResult$Realtime$Wind() +androidx.legacy.coreutils.R$styleable: int ColorStateListItem_alpha +com.google.android.material.R$attr: int titleMarginTop +cyanogenmod.providers.CMSettings$NameValueCache: long mValuesVersion +com.jaredrummler.android.colorpicker.R$attr: int actionBarStyle +androidx.appcompat.R$id: int blocking +james.adaptiveicon.R$drawable: int abc_cab_background_top_mtrl_alpha +androidx.vectordrawable.animated.R$id: int chronometer +com.tencent.bugly.proguard.u: void a(int,com.tencent.bugly.proguard.am,java.lang.String,java.lang.String,com.tencent.bugly.proguard.t,boolean) +cyanogenmod.themes.ThemeManager: android.os.Handler access$200() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +wangdaye.com.geometricweather.R$id: int mtrl_motion_snapshot_view +com.xw.repo.bubbleseekbar.R$drawable: int tooltip_frame_dark +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String street_number +com.amap.api.location.AMapLocation: int ERROR_CODE_INVALID_PARAMETER +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: Temperature(int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getUnitId() +com.jaredrummler.android.colorpicker.R$attr: int actionOverflowButtonStyle +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegments(java.lang.String,boolean) +wangdaye.com.geometricweather.R$id: int wide +com.turingtechnologies.materialscrollbar.R$id: int mini +com.google.android.material.R$attr: int actionModeFindDrawable +wangdaye.com.geometricweather.R$drawable: int notif_temp_0 +wangdaye.com.geometricweather.R$attr: int firstBaselineToTopHeight +com.turingtechnologies.materialscrollbar.R$id: int fixed +okhttp3.OkHttpClient$Builder: okhttp3.Authenticator proxyAuthenticator +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_material_dark +androidx.lifecycle.Lifecycling: androidx.lifecycle.LifecycleEventObserver lifecycleEventObserver(java.lang.Object) +androidx.preference.R$id: int action_bar_container +com.tencent.bugly.proguard.v: int a +com.google.android.material.R$styleable: int ClockHandView_materialCircleRadius +com.turingtechnologies.materialscrollbar.R$attr: int titleTextStyle +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int INSTALLED +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onError(java.lang.Throwable) +com.google.android.material.R$attr: int colorBackgroundFloating +com.google.android.gms.internal.location.zzac +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_menu_material +com.google.android.material.tabs.TabLayout$TabView: void setTab(com.google.android.material.tabs.TabLayout$Tab) +com.google.android.material.R$styleable: int Chip_rippleColor +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableEnd +cyanogenmod.themes.IThemeProcessingListener +io.reactivex.internal.subscriptions.SubscriptionArbiter: org.reactivestreams.Subscription actual +com.google.android.material.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_dark +com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_hovered_focused +wangdaye.com.geometricweather.main.dialogs.LearnMoreAboutResidentLocationDialog: LearnMoreAboutResidentLocationDialog() +com.amap.api.location.AMapLocation: java.lang.String m(com.amap.api.location.AMapLocation,java.lang.String) +androidx.coordinatorlayout.R$id +com.xw.repo.BubbleSeekBar: void setTrackColor(int) +cyanogenmod.weather.WeatherLocation: int describeContents() +retrofit2.Utils$GenericArrayTypeImpl: boolean equals(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog_Alert +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int UNKNOWN +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +com.google.android.material.R$dimen: int design_snackbar_text_size +wangdaye.com.geometricweather.common.basic.models.weather.Alert: long alertId +android.didikee.donate.R$color: int secondary_text_disabled_material_light +android.didikee.donate.R$styleable: int AppCompatTextView_drawableTintMode +androidx.fragment.R$id: int accessibility_custom_action_0 +com.github.rahatarmanahmed.cpv.CircularProgressView$5: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.String TABLENAME +wangdaye.com.geometricweather.R$array: int live_wallpaper_day_night_type_values +com.google.android.material.R$attr: int textAppearanceSearchResultSubtitle +androidx.constraintlayout.widget.R$string +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runSync() +androidx.viewpager.widget.PagerTabStrip: boolean getDrawFullUnderline() +wangdaye.com.geometricweather.R$drawable: int abc_popup_background_mtrl_mult +okhttp3.internal.cache.DiskLruCache$2: boolean $assertionsDisabled +com.google.android.material.R$attr: int tabIconTintMode +com.google.android.material.internal.StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException: StaticLayoutBuilderCompat$StaticLayoutBuilderCompatException(java.lang.Throwable) +cyanogenmod.app.ILiveLockScreenManagerProvider: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +com.google.android.material.R$string: int abc_menu_alt_shortcut_label +androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_checkbox +com.tencent.bugly.crashreport.common.info.a: void c(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.LocationEntityDao locationEntityDao +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +com.google.android.material.R$attr: int listPreferredItemHeight +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitation() +com.google.android.material.R$styleable: int KeyTrigger_motion_triggerOnCollision +okio.RealBufferedSource: short readShortLe() +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: ObservableRefCount$RefCountObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableRefCount,io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection) +com.turingtechnologies.materialscrollbar.R$attr: int spanCount +james.adaptiveicon.R$layout: int abc_screen_simple_overlay_action_mode +androidx.appcompat.R$attr: int buttonBarStyle +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: io.reactivex.Observer observer +com.google.android.material.R$styleable: int Toolbar_logo +wangdaye.com.geometricweather.R$id: int activity_preview_icon_toolbar +androidx.drawerlayout.R$styleable: int FontFamilyFont_fontStyle +androidx.lifecycle.SavedStateHandle$1: SavedStateHandle$1(androidx.lifecycle.SavedStateHandle) +com.google.android.material.R$styleable: int Variant_region_widthLessThan +com.jaredrummler.android.colorpicker.R$dimen: int abc_progress_bar_height_material +okhttp3.MultipartBody: okio.ByteString boundary +com.tencent.bugly.proguard.c: c() +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void drain() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalGap +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_android_windowIsFloating +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_handleOffColor +james.adaptiveicon.R$style: int Widget_AppCompat_ActivityChooserView +wangdaye.com.geometricweather.R$drawable: int mtrl_popupmenu_background +io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function) +androidx.preference.R$styleable: int Preference_android_fragment +com.google.android.material.R$attr: int behavior_overlapTop +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_height +com.amap.api.fence.DistrictItem: java.lang.String getCitycode() +okio.Buffer: okio.ByteString md5() +wangdaye.com.geometricweather.R$attr: int tabGravity +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_clear +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_popupTheme +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_startAngle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarButtonStyle +com.turingtechnologies.materialscrollbar.R$bool: int abc_config_actionMenuItemAllCaps +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: ObservablePublish$InnerDisposable(io.reactivex.Observer) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.lang.String getPubTime() +io.reactivex.internal.subscriptions.DeferredScalarSubscription: void cancel() +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken STRING +android.didikee.donate.R$styleable: int[] SwitchCompat +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +com.google.android.material.R$styleable: int Chip_closeIconVisible +cyanogenmod.weather.IRequestInfoListener$Stub: IRequestInfoListener$Stub() +wangdaye.com.geometricweather.R$attr: int layout_anchorGravity +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getMinWidthMinor() +androidx.activity.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$attr: int closeIcon +com.google.android.material.R$dimen: int design_appbar_elevation +com.xw.repo.bubbleseekbar.R$drawable: int abc_vector_test +androidx.appcompat.R$attr: int srcCompat +com.jaredrummler.android.colorpicker.R$attr: int colorSwitchThumbNormal +com.google.android.material.R$styleable: int Constraint_layout_editor_absoluteX +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +com.amap.api.fence.PoiItem: java.lang.String b +com.google.android.material.R$attr: int chainUseRtl +wangdaye.com.geometricweather.R$attr: int dragDirection +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_exitFadeDuration +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: ObservableCombineLatest$CombinerObserver(io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator,int) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.WeatherEntity) +com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int ActionBar_displayOptions +james.adaptiveicon.R$color: int tooltip_background_light +androidx.preference.R$styleable: int AppCompatTheme_colorControlHighlight +com.turingtechnologies.materialscrollbar.R$dimen: int notification_main_column_padding_top +com.google.android.material.R$id: int chip2 +android.didikee.donate.R$styleable: int CompoundButton_android_button +wangdaye.com.geometricweather.R$drawable: int abc_ic_voice_search_api_material +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getUnitId() +androidx.lifecycle.LiveData: void dispatchingValue(androidx.lifecycle.LiveData$ObserverWrapper) +androidx.hilt.lifecycle.R$id: int notification_main_column_container +io.reactivex.internal.observers.BlockingObserver: void dispose() +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_5 +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +com.xw.repo.bubbleseekbar.R$attr: int textAppearancePopupMenuHeader +com.google.android.material.R$string: int abc_action_menu_overflow_description +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_transformPivotX +wangdaye.com.geometricweather.R$id: int widget_clock_day_center +androidx.constraintlayout.widget.R$color: int primary_text_disabled_material_light +james.adaptiveicon.R$styleable: int Toolbar_navigationContentDescription +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_hideOnScroll +okio.Buffer: okio.Buffer$UnsafeCursor readUnsafe(okio.Buffer$UnsafeCursor) +com.tencent.bugly.BuglyStrategy: long d +com.google.android.material.R$styleable: int Layout_layout_constraintRight_toRightOf +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ProgressBar +com.google.gson.stream.JsonWriter +com.tencent.bugly.BuglyStrategy: java.lang.String c +androidx.preference.R$layout: int preference_widget_checkbox +wangdaye.com.geometricweather.R$styleable: int[] Fragment +com.google.android.material.R$styleable: int[] Insets +wangdaye.com.geometricweather.R$string: int maxi_temp +okio.AsyncTimeout: boolean cancelScheduledTimeout(okio.AsyncTimeout) +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void otherError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int[] MaterialToolbar +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_overflow_material +wangdaye.com.geometricweather.R$id: int test_radiobutton_android_button_tint +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getDescription() +com.google.android.material.R$id: int triangle +com.google.android.material.R$styleable: int Layout_layout_constraintBottom_creator +wangdaye.com.geometricweather.R$color: int design_default_color_on_secondary +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: int phenomenonId +com.google.android.material.R$styleable: int ShapeableImageView_shapeAppearance +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_DAY +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_disabled +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property O3 android.didikee.donate.R$styleable: int[] DrawerArrowToggle -com.bumptech.glide.R$id: int notification_main_column_container -wangdaye.com.geometricweather.R$id: int notification_big_temp_4 -android.didikee.donate.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -com.google.android.material.R$string: int mtrl_picker_range_header_unselected -okio.Pipe$PipeSource: okio.Timeout timeout() -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_to_on_mtrl_015 -cyanogenmod.providers.CMSettings$System: java.lang.String RECENTS_SHOW_SEARCH_BAR -androidx.activity.R$drawable: int notification_bg -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_chainUseRtl -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Body1 -androidx.preference.R$layout: int abc_action_menu_item_layout -io.reactivex.internal.util.VolatileSizeArrayList: VolatileSizeArrayList() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours Past3Hours -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String weatherText -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtendMotionSpecResource(int) -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_search_api_material -androidx.cardview.R$style -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getTotal() -androidx.preference.R$attr: int subtitleTextAppearance -com.tencent.bugly.crashreport.CrashReport$WebViewInterface: void setJavaScriptEnabled(boolean) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) -android.didikee.donate.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontStyle -androidx.vectordrawable.animated.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX -androidx.activity.R$id: int accessibility_custom_action_9 -android.didikee.donate.R$style: int Base_V22_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_visible +wangdaye.com.geometricweather.R$string: int material_timepicker_minute +androidx.appcompat.widget.AppCompatButton: void setSupportAllCaps(boolean) +com.jaredrummler.android.colorpicker.R$dimen: int cpv_column_width +com.tencent.bugly.proguard.af: void a(java.lang.String) +com.google.android.gms.signin.internal.zam: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnw +com.tencent.bugly.proguard.v: int p +okio.BufferedSource: java.lang.String readUtf8LineStrict() +okhttp3.CacheControl: int minFreshSeconds +io.reactivex.internal.queue.SpscArrayQueue: int lookAheadStep +okhttp3.internal.http2.Http2Reader: boolean client +com.google.android.material.bottomappbar.BottomAppBar$SavedState: android.os.Parcelable$Creator CREATOR +io.reactivex.Observable: io.reactivex.Observable cacheWithInitialCapacity(int) +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder callFactory(okhttp3.Call$Factory) +androidx.preference.R$styleable: int[] LinearLayoutCompat +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode WRITE_AHEAD_LOGGING +androidx.appcompat.R$style: int Widget_AppCompat_RatingBar_Indicator +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnClickUri(android.net.Uri) +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +io.reactivex.internal.util.NotificationLite$SubscriptionNotification: java.lang.String toString() +androidx.fragment.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Fullscreen +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.preference.R$id: int radio +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +okio.Buffer: okio.ByteString hmacSha256(okio.ByteString) +okio.Timeout: void throwIfReached() +com.tencent.bugly.crashreport.crash.h5.b: java.lang.String b() +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.Scheduler scheduler +androidx.viewpager2.R$attr: int ttcIndex +okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV1 +cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri APPLIED_URI +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_elevation +androidx.preference.R$attr: int autoCompleteTextViewStyle +androidx.swiperefreshlayout.R$dimen: int notification_right_side_padding_top +okhttp3.internal.connection.RouteSelector$Selection: boolean hasNext() +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: int hashCode() +com.github.rahatarmanahmed.cpv.CircularProgressView: int size +android.didikee.donate.R$styleable: int SearchView_commitIcon +com.tencent.bugly.crashreport.common.info.b: long j() +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void drain() +james.adaptiveicon.R$attr: int dividerVertical +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_PopupMenu +androidx.preference.R$id: int action_container +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_menu +androidx.preference.R$style: int Base_DialogWindowTitleBackground_AppCompat +androidx.viewpager2.R$id: int item_touch_helper_previous_elevation +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_subtitle_top_margin_material +wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_height_material +okhttp3.RealCall$AsyncCall: okhttp3.Callback responseCallback +androidx.constraintlayout.widget.R$attr: int region_heightMoreThan +com.turingtechnologies.materialscrollbar.R$color: int background_material_light +androidx.loader.R$attr +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlActivated +com.google.android.material.R$id: int parallax +cyanogenmod.app.IProfileManager$Stub$Proxy: android.os.IBinder asBinder() +androidx.drawerlayout.R$dimen: int compat_notification_large_icon_max_width +com.tencent.bugly.proguard.u: byte[] l +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast +androidx.lifecycle.extensions.R$id: int blocking +com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_padding_horizontal_material +james.adaptiveicon.R$attr: int subtitleTextAppearance +okio.HashingSource: okio.ByteString hash() +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$string: int settings_title_minimal_icon +com.google.android.material.R$integer: int mtrl_calendar_selection_text_lines +androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +androidx.constraintlayout.widget.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.textfield.TextInputLayout: void setErrorTextAppearance(int) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onSubscribe(org.reactivestreams.Subscription) +androidx.viewpager2.R$dimen: int compat_notification_large_icon_max_height +okhttp3.internal.http2.Settings: boolean getEnablePush(boolean) +james.adaptiveicon.R$dimen: int tooltip_y_offset_touch +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemBackground(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$attr: int iconTintMode +io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean isEmpty() +james.adaptiveicon.R$styleable: int MenuView_subMenuArrow +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button +wangdaye.com.geometricweather.R$id: int item_aqi_title +cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.CMWeatherManager$2 this$1 +cyanogenmod.providers.CMSettings$1: CMSettings$1() +androidx.appcompat.widget.AppCompatImageButton: android.graphics.PorterDuff$Mode getSupportImageTintMode() +okio.Okio$1: java.lang.String toString() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Title +com.google.android.material.R$dimen: int hint_alpha_material_dark +androidx.preference.R$style: int Widget_AppCompat_ListView_Menu +wangdaye.com.geometricweather.R$attr: int barrierAllowsGoneWidgets +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onModeChanged(boolean) +androidx.core.widget.ContentLoadingProgressBar +android.didikee.donate.R$style: int Base_Theme_AppCompat_CompactMenu +androidx.drawerlayout.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_radius +androidx.transition.R$style: int TextAppearance_Compat_Notification_Title +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarButtonStyle +com.amap.api.location.AMapLocationClientOption: void setDownloadCoordinateConvertLibrary(boolean) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA +com.tencent.bugly.crashreport.common.info.b +wangdaye.com.geometricweather.R$attr: int bsb_seek_by_section +com.autonavi.aps.amapapi.model.AMapLocationServer: com.autonavi.aps.amapapi.model.AMapLocationServer h() +retrofit2.KotlinExtensions$await$4$2: void onResponse(retrofit2.Call,retrofit2.Response) +androidx.appcompat.R$string: int abc_searchview_description_search +com.google.android.material.floatingactionbutton.FloatingActionButton: void setImageResource(int) +com.google.android.material.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +com.google.android.material.R$styleable: int Chip_android_textAppearance +com.jaredrummler.android.colorpicker.R$drawable: int preference_list_divider_material +okhttp3.internal.http2.Http2Stream$FramingSource: boolean $assertionsDisabled +com.xw.repo.bubbleseekbar.R$id: int async +com.amap.api.location.AMapLocation: com.amap.api.location.AMapLocationQualityReport c +androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context) +com.tencent.bugly.proguard.z: java.util.ArrayList c(android.content.Context,java.lang.String) +james.adaptiveicon.R$attr: int buttonTint +wangdaye.com.geometricweather.R$attr: int dividerHorizontal +wangdaye.com.geometricweather.R$dimen: int mtrl_card_spacing +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: int UnitType +james.adaptiveicon.R$styleable: int Spinner_android_popupBackground +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: FlowableCreate$SerializedEmitter(io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter) +james.adaptiveicon.R$layout: int abc_search_dropdown_item_icons_2line +wangdaye.com.geometricweather.R$string: int get_more_store +androidx.coordinatorlayout.R$attr: int font +cyanogenmod.profiles.AirplaneModeSettings: void setOverride(boolean) +okhttp3.Cache: int writeAbortCount() +cyanogenmod.providers.CMSettings$System: java.lang.String getString(android.content.ContentResolver,java.lang.String) +com.tencent.bugly.crashreport.biz.b: com.tencent.bugly.crashreport.biz.a a +okhttp3.EventListener: void responseBodyEnd(okhttp3.Call,long) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerNext(int,java.lang.Object) +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type UNKNOWN +wangdaye.com.geometricweather.R$color: int striking_red +wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit PERCENT +androidx.appcompat.R$styleable: int AppCompatTheme_homeAsUpIndicator +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange +androidx.core.R$styleable: int FontFamilyFont_fontVariationSettings +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_ActionBar +com.google.android.material.R$styleable: int Chip_android_textColor +okio.GzipSource: okio.BufferedSource source +com.tencent.bugly.crashreport.crash.b: void c(java.util.List) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric +com.google.android.material.R$id: int SHOW_PROGRESS +com.jaredrummler.android.colorpicker.R$style: int Preference_CheckBoxPreference +wangdaye.com.geometricweather.R$styleable: int MenuItem_actionViewClass +com.jaredrummler.android.colorpicker.R$layout: int notification_action_tombstone +androidx.viewpager2.R$id: int action_divider +io.reactivex.internal.schedulers.ScheduledRunnable: boolean isDisposed() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_EditText +androidx.constraintlayout.widget.R$styleable: int[] AppCompatImageView +androidx.appcompat.widget.ViewStubCompat: int getLayoutResource() +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIcon +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$b: boolean a(long) +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_color +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +retrofit2.DefaultCallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +wangdaye.com.geometricweather.R$string: int settings_title_location_service +com.amap.api.location.AMapLocation: double getLongitude() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSuggest() +wangdaye.com.geometricweather.R$drawable: int common_full_open_on_phone +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_chip_text_size +com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetTop +james.adaptiveicon.R$attr: int popupMenuStyle +com.google.android.material.R$styleable: int SnackbarLayout_maxActionInlineWidth com.google.android.material.R$styleable: int TextInputLayout_errorIconDrawable -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Caption -com.google.android.material.R$style: int Widget_MaterialComponents_Button_UnelevatedButton -androidx.drawerlayout.R$id: int right_icon -androidx.appcompat.R$dimen: int abc_dialog_min_width_minor -cyanogenmod.weather.WeatherInfo: long getTimestamp() -com.turingtechnologies.materialscrollbar.R$attr: int logoDescription -wangdaye.com.geometricweather.R$integer: int config_tooltipAnimTime -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircleRadius -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogCenterButtons -com.tencent.bugly.crashreport.common.strategy.StrategyBean: android.os.Parcelable$Creator CREATOR -androidx.appcompat.widget.SwitchCompat: int getSwitchMinWidth() -androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertInTxIterable -com.amap.api.location.AMapLocation: int e(com.amap.api.location.AMapLocation,int) -com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusBottomStart -com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dark -androidx.fragment.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction LastAction -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipSurfaceColor -cyanogenmod.util.ColorUtils: int findPerceptuallyNearestSolidColor(int) -androidx.appcompat.widget.ActionBarOverlayLayout: void setOverlayMode(boolean) -wangdaye.com.geometricweather.R$array -cyanogenmod.app.CustomTile$Builder: java.lang.String mContentDescription -okhttp3.internal.io.FileSystem: void delete(java.io.File) -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_2 -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardCornerRadius -wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity: ClockDayWeekWidgetConfigActivity() -androidx.viewpager.R$styleable: int GradientColor_android_tileMode -okio.ForwardingTimeout: okio.Timeout delegate -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onDetach -com.jaredrummler.android.colorpicker.R$layout: int abc_expanded_menu_layout -com.turingtechnologies.materialscrollbar.R$id: int action_text -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String DAY -android.didikee.donate.R$id: int collapseActionView -retrofit2.HttpException: int code() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_82 -com.jaredrummler.android.colorpicker.R$attr: int buttonTintMode -com.xw.repo.bubbleseekbar.R$drawable: int abc_item_background_holo_dark -com.turingtechnologies.materialscrollbar.R$styleable: int[] ScrimInsetsFrameLayout -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult -com.jaredrummler.android.colorpicker.R$attr: int order -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_subtitleTextStyle -com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_mid_color -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void cancel() -okhttp3.internal.io.FileSystem -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -wangdaye.com.geometricweather.R$attr: int touchAnchorSide -androidx.appcompat.R$color: int switch_thumb_material_dark -com.tencent.bugly.crashreport.crash.jni.a: com.tencent.bugly.crashreport.common.info.a c -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node find(java.lang.Object,boolean) -com.amap.api.location.AMapLocation: int LOCATION_TYPE_FIX_CACHE -okio.RealBufferedSink$1: okio.RealBufferedSink this$0 -wangdaye.com.geometricweather.R$integer: int hide_password_duration -com.tencent.bugly.proguard.am: int g -com.turingtechnologies.materialscrollbar.R$attr: int colorError -cyanogenmod.app.PartnerInterface: java.lang.String getCurrentHotwordPackageName() -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_Toolbar -wangdaye.com.geometricweather.R$attr: int customStringValue -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_d -com.google.android.material.R$integer: int mtrl_chip_anim_duration -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error -com.google.android.material.R$styleable: int NavigationView_elevation -com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean g -com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_Switch -wangdaye.com.geometricweather.R$string: int feedback_location_list_cannot_be_null -com.tencent.bugly.proguard.c -androidx.vectordrawable.animated.R$attr: int ttcIndex -wangdaye.com.geometricweather.R$attr: int cardForegroundColor -androidx.appcompat.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: int status -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.util.List protocols -com.google.android.material.R$string: int abc_searchview_description_search -com.google.android.material.R$xml: int standalone_badge -james.adaptiveicon.R$layout: int abc_activity_chooser_view -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_DES_CBC_SHA -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherText(java.lang.String) -com.google.android.material.slider.RangeSlider: int getFocusedThumbIndex() -okhttp3.Request$Builder: okhttp3.Request$Builder headers(okhttp3.Headers) -androidx.loader.R$styleable: int GradientColor_android_gradientRadius -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorTextColor -okio.RealBufferedSource: long readLongLe() -androidx.hilt.R$styleable: int[] GradientColor -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCutDrawable -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type[] typeArguments -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks access$100(cyanogenmod.externalviews.KeyguardExternalView) -cyanogenmod.app.Profile$Type: int TOGGLE -androidx.vectordrawable.animated.R$id: int actions -cyanogenmod.app.Profile$ProfileTrigger$1 -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setOnClickListener(android.view.View$OnClickListener) -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplaceInTxArray -okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part createFormData(java.lang.String,java.lang.String,okhttp3.RequestBody) -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_navigationIcon -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification -com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonTint -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onNext(java.lang.Object) -androidx.appcompat.R$layout: int abc_cascading_menu_item_layout -com.google.android.material.R$attr: int contentPaddingTop -com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingLeft() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias -com.jaredrummler.android.colorpicker.R$attr: int autoSizeMinTextSize -com.google.android.material.R$styleable: int MenuItem_android_titleCondensed -com.google.android.material.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -com.google.android.material.slider.BaseSlider: void setTrackInactiveTintList(android.content.res.ColorStateList) -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_anchor -org.greenrobot.greendao.AbstractDao: AbstractDao(org.greenrobot.greendao.internal.DaoConfig) -androidx.fragment.app.FragmentState: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$dimen: int abc_text_size_body_1_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: java.util.List getValue() -androidx.constraintlayout.widget.R$dimen: int abc_text_size_menu_header_material -com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding QUALITY -cyanogenmod.externalviews.KeyguardExternalView: void onScreenTurnedOff() -com.google.android.material.R$layout: int material_clock_display_divider -wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_icon -com.tencent.bugly.proguard.l: boolean a(java.lang.Object,java.lang.Object) -cyanogenmod.app.ProfileGroup: java.util.UUID getUuid() -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onNext(java.lang.Object) -androidx.appcompat.R$attr: int actionModeCloseDrawable -retrofit2.KotlinExtensions$await$2$2: void onResponse(retrofit2.Call,retrofit2.Response) -com.google.android.material.R$drawable: int abc_tab_indicator_material +com.jaredrummler.android.colorpicker.R$attr: int dialogPreferenceStyle +androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onResume() +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: boolean cancelled +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$string: int material_clock_display_divider +okhttp3.Response$Builder: okhttp3.Protocol protocol +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableLeftCompat +com.google.android.material.imageview.ShapeableImageView: void setStrokeColor(android.content.res.ColorStateList) +androidx.preference.R$attr: int ratingBarStyleIndicator +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +okhttp3.internal.http2.Http2Writer: void writeMedium(okio.BufferedSink,int) +wangdaye.com.geometricweather.R$id: int SHOW_PROGRESS +com.google.android.material.R$id: int action_mode_close_button +okhttp3.internal.annotations.EverythingIsNonNull +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_DropDown +wangdaye.com.geometricweather.R$color: int design_icon_tint +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: java.lang.Object item +james.adaptiveicon.R$styleable: int LinearLayoutCompat_showDividers +okio.Okio: okio.AsyncTimeout timeout(java.net.Socket) +androidx.appcompat.resources.R$id: int text2 +com.xw.repo.bubbleseekbar.R$attr: int initialActivityCount +androidx.preference.R$style: int Theme_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView_Menu +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onAttach() +com.google.android.material.R$attr: int moveWhenScrollAtTop +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void dispose() +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.Map buffers +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DialogWhenLarge +okio.BufferedSource: java.io.InputStream inputStream() +wangdaye.com.geometricweather.R$color: int material_timepicker_clockface +androidx.drawerlayout.R$styleable: int GradientColorItem_android_color +okio.Options: java.lang.Object get(int) +androidx.core.R$id: int action_text +androidx.viewpager2.R$dimen: int compat_button_padding_vertical_material +androidx.constraintlayout.utils.widget.ImageFilterView: float getRound() +wangdaye.com.geometricweather.R$dimen: int widget_aa_text_size +wangdaye.com.geometricweather.R$attr: int backgroundColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX() +com.jaredrummler.android.colorpicker.R$color: int button_material_light +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void drain() +okhttp3.internal.connection.StreamAllocation: StreamAllocation(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.Call,okhttp3.EventListener,java.lang.Object) +okio.Buffer: void write(okio.Buffer,long) +wangdaye.com.geometricweather.R$color: int notification_background_l +wangdaye.com.geometricweather.R$layout: int widget_clock_day_temp +com.jaredrummler.android.colorpicker.R$color: int abc_tint_btn_checkable +com.google.android.material.tabs.TabLayout: int getTabMaxWidth() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display4 +cyanogenmod.weather.util.WeatherUtils: java.lang.String formatTemperature(double,int) +com.google.android.material.R$color: int radiobutton_themeable_attribute_color +io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function,boolean) +com.tencent.bugly.proguard.y$a: boolean a() +androidx.constraintlayout.widget.R$attr: int showPaths +androidx.constraintlayout.widget.R$styleable: int SearchView_android_imeOptions +androidx.recyclerview.widget.RecyclerView: void setRecyclerListener(androidx.recyclerview.widget.RecyclerView$RecyclerListener) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Large_Inverse +androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Time +androidx.constraintlayout.widget.R$attr: int percentWidth +okhttp3.internal.ws.RealWebSocket$PingRunnable: RealWebSocket$PingRunnable(okhttp3.internal.ws.RealWebSocket) +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getEn_US() +wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_title +wangdaye.com.geometricweather.R$string: int material_clock_display_divider +androidx.constraintlayout.widget.R$styleable: int MenuView_android_headerBackground +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler a +androidx.appcompat.R$styleable: int[] CompoundButton +android.didikee.donate.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric() +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorFullWidth +androidx.preference.R$style: int TextAppearance_AppCompat_Medium +cyanogenmod.providers.ThemesContract$MixnMatchColumns: ThemesContract$MixnMatchColumns() +androidx.appcompat.R$id +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf +com.tencent.bugly.crashreport.inner.InnerApi: void postCocos2dxCrashAsync(int,java.lang.String,java.lang.String,java.lang.String) +android.didikee.donate.R$styleable: int MenuItem_android_id +com.tencent.bugly.proguard.ai: ai() +com.google.android.material.R$dimen: int mtrl_textinput_start_icon_margin_end +androidx.constraintlayout.helper.widget.Layer: void setPivotY(float) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onNext(java.lang.Object) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintVertical_weight +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endX +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf +wangdaye.com.geometricweather.R$styleable: int[] MotionHelper +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableRight +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_search +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: boolean isDisposed() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_wrapMode +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: java.lang.String date +androidx.preference.R$attr: int closeIcon +com.amap.api.fence.GeoFence: float getMaxDis2Center() +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded +com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_android_popupAnimationStyle +androidx.appcompat.widget.Toolbar: void setCollapsible(boolean) +androidx.loader.R$id: int line1 +com.google.android.material.R$attr: int chipStrokeWidth +cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_SHOW_BRIGHTNESS_SLIDER +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: boolean setOther(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayHorizontalWidgetConfigActivity +james.adaptiveicon.R$id: int info +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeightLarge +androidx.preference.ListPreference: ListPreference(android.content.Context,android.util.AttributeSet) +androidx.hilt.R$id: int accessibility_custom_action_21 +androidx.lifecycle.ProcessLifecycleOwner: long TIMEOUT_MS +io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer,io.reactivex.functions.Action) +io.reactivex.internal.subscriptions.SubscriptionArbiter: SubscriptionArbiter(boolean) +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getCO() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr Precip1hr +android.didikee.donate.R$attr: int searchIcon +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.internal.operators.observable.ObservableCache$Node node +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getWeatherText() +com.google.android.material.R$id: int listMode +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum +com.amap.api.location.AMapLocationQualityReport: int getGPSSatellites() +com.google.android.material.R$dimen: int mtrl_snackbar_message_margin_horizontal +androidx.constraintlayout.widget.R$style: int Animation_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconTint +androidx.appcompat.widget.Toolbar: void setTitleMarginTop(int) +retrofit2.KotlinExtensions$await$4$2 +androidx.preference.R$styleable: int SwitchPreference_android_disableDependentsState +io.reactivex.internal.observers.BlockingObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int TouchScrollBar_msb_hideDelayInMilliseconds +cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$layout: int abc_search_dropdown_item_icons_2line +androidx.appcompat.R$attr: int windowFixedWidthMinor +okhttp3.internal.http2.Header: java.lang.String TARGET_SCHEME_UTF8 +androidx.appcompat.R$attr: int colorControlNormal +wangdaye.com.geometricweather.R$layout: int abc_screen_content_include +androidx.preference.R$attr: int actionModePopupWindowStyle +com.tencent.bugly.crashreport.crash.a: java.lang.String c +wangdaye.com.geometricweather.R$layout: int preference_category +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onNext(java.lang.Object) +androidx.fragment.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_toggle +wangdaye.com.geometricweather.R$attr: int titleMargin +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode HAZE +androidx.constraintlayout.widget.R$styleable: int Spinner_android_prompt +com.turingtechnologies.materialscrollbar.R$attr: int rippleColor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: int UnitType +androidx.cardview.widget.CardView: android.content.res.ColorStateList getCardBackgroundColor() +androidx.transition.R$id: int notification_main_column +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: androidx.lifecycle.LifecycleRegistry mRegistry +okhttp3.RequestBody: long contentLength() +com.amap.api.location.AMapLocation: void setFixLastLocation(boolean) +androidx.preference.R$drawable: int abc_text_select_handle_right_mtrl_light +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_creator +retrofit2.DefaultCallAdapterFactory: DefaultCallAdapterFactory(java.util.concurrent.Executor) +wangdaye.com.geometricweather.R$anim: int design_bottom_sheet_slide_out +wangdaye.com.geometricweather.R$string: int content_des_m3 +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean checkTerminated(boolean,boolean,io.reactivex.Observer,boolean,io.reactivex.internal.operators.observable.ObservableZip$ZipObserver) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +com.google.android.material.R$layout: int design_text_input_start_icon +com.google.android.material.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +com.google.android.material.R$styleable: int[] State +com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_EditTextPreference +retrofit2.adapter.rxjava2.Result: boolean isError() +androidx.constraintlayout.widget.R$drawable: int abc_seekbar_track_material +androidx.lifecycle.LiveData: LiveData() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindLevel(java.lang.String) +androidx.appcompat.R$attr: int dropDownListViewStyle +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index +com.google.android.material.R$color: int ripple_material_dark +androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +androidx.lifecycle.livedata.R: R() +com.tencent.bugly.proguard.u +androidx.appcompat.R$bool: int abc_allow_stacked_button_bar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric Metric +com.jaredrummler.android.colorpicker.R$style: int Platform_V25_AppCompat_Light +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Time +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_tooltipFrameBackground +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: java.lang.String Unit +com.bumptech.glide.R$dimen: int notification_action_text_size +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_removeProfile +com.google.android.material.transformation.FabTransformationSheetBehavior: FabTransformationSheetBehavior(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$array: int pollen_unit_voices +androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.preference.R$styleable: int MenuItem_android_orderInCategory +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_1 +com.github.rahatarmanahmed.cpv.CircularProgressView$7: CircularProgressView$7(com.github.rahatarmanahmed.cpv.CircularProgressView) +james.adaptiveicon.R$styleable: int AppCompatTextView_android_textAppearance +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark_normal +okio.RealBufferedSink: okio.BufferedSink write(okio.ByteString) +okhttp3.internal.platform.Platform: java.lang.Object readFieldOrNull(java.lang.Object,java.lang.Class,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int[] SlidingItemContainerLayout +com.google.android.material.R$styleable: int[] ImageFilterView +com.xw.repo.bubbleseekbar.R$attr: int listLayout +androidx.lifecycle.AbstractSavedStateViewModelFactory: AbstractSavedStateViewModelFactory(androidx.savedstate.SavedStateRegistryOwner,android.os.Bundle) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.R$style: int Theme_Design_Light_NoActionBar +wangdaye.com.geometricweather.R$styleable: int ActionBar_backgroundStacked +com.github.rahatarmanahmed.cpv.CircularProgressView$3: void onAnimationUpdate(android.animation.ValueAnimator) +cyanogenmod.weather.WeatherInfo: double access$602(cyanogenmod.weather.WeatherInfo,double) +androidx.appcompat.R$dimen: int abc_dialog_min_width_major +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +okio.SegmentedByteString: byte[] internalArray() +wangdaye.com.geometricweather.R$dimen: int abc_disabled_alpha_material_dark +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_alert +androidx.drawerlayout.R$id: int right_side +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String value +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_activated_mtrl_alpha +androidx.lifecycle.extensions.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.R$attr: int customColorDrawableValue +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setZenModeWithDuration +androidx.hilt.work.R$styleable: int Fragment_android_tag +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startY +androidx.appcompat.R$styleable: int GradientColor_android_tileMode +com.github.rahatarmanahmed.cpv.R$dimen: int cpv_default_thickness +com.tencent.bugly.crashreport.common.info.a: java.lang.String M +androidx.recyclerview.R$id: int info +androidx.viewpager.widget.ViewPager +com.google.android.material.R$styleable: int Badge_backgroundColor +wangdaye.com.geometricweather.R$id: int fitToContents +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FAIR_DAY +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: ChineseCityEntityDao(org.greenrobot.greendao.internal.DaoConfig) +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_speed +android.didikee.donate.R$attr: int actionModeCloseDrawable +okhttp3.internal.tls.OkHostnameVerifier: okhttp3.internal.tls.OkHostnameVerifier INSTANCE +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SHOW_ALARM_ICON_VALIDATOR +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeFillColor +james.adaptiveicon.R$drawable: int abc_text_select_handle_left_mtrl_dark +androidx.work.impl.diagnostics.DiagnosticsReceiver: DiagnosticsReceiver() +wangdaye.com.geometricweather.R$id: int disableHome +com.google.android.material.R$styleable: int KeyPosition_percentWidth +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property District +okhttp3.CacheControl: int maxStaleSeconds +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_disabled_material_light +androidx.dynamicanimation.R$drawable: int notification_bg_low_pressed +com.tencent.bugly.proguard.am: am() +okhttp3.Dns +com.amap.api.fence.PoiItem: java.lang.String c +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: KeyguardExternalViewProviderService$Provider$ProviderImpl$4(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: java.lang.Object poll() +com.amap.api.fence.DistrictItem: DistrictItem() +androidx.appcompat.widget.AppCompatRadioButton: void setButtonDrawable(android.graphics.drawable.Drawable) +androidx.appcompat.R$styleable: int ActionBar_progressBarPadding +com.google.android.material.R$styleable: int SearchView_searchHintIcon +androidx.constraintlayout.widget.R$attr: int alpha +cyanogenmod.providers.CMSettings$Global: boolean putLong(android.content.ContentResolver,java.lang.String,long) +androidx.preference.R$style: int Widget_AppCompat_ListPopupWindow +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String dn +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_circle +wangdaye.com.geometricweather.R$layout: int material_timepicker +com.google.android.material.R$attr: int dragDirection +okio.Buffer: long readAll(okio.Sink) +com.tencent.bugly.crashreport.crash.c: void d() +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalBias +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_5 +androidx.hilt.R$id: int line3 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitationDuration() +okhttp3.HttpUrl: java.lang.String FRAGMENT_ENCODE_SET_URI +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_large_material +androidx.swiperefreshlayout.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_92 +androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_toId +androidx.preference.R$dimen: int abc_dialog_fixed_width_minor +cyanogenmod.themes.ThemeManager: ThemeManager(android.content.Context) +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabView +android.support.v4.os.ResultReceiver: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isRain() +com.google.android.material.R$id: int item_touch_helper_previous_elevation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setType(java.lang.String) +androidx.constraintlayout.widget.R$id: int action_context_bar +com.turingtechnologies.materialscrollbar.R$layout: int design_layout_tab_text +androidx.hilt.R$layout: int notification_template_custom_big +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Small +com.google.android.material.button.MaterialButton: void setElevation(float) +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_icon +cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder onBind(android.content.Intent) +androidx.constraintlayout.widget.R$drawable: int abc_list_divider_material +wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity +james.adaptiveicon.R$style: int Base_V23_Theme_AppCompat_Light +androidx.appcompat.R$styleable: int GradientColorItem_android_offset +james.adaptiveicon.R$attr: int windowActionBar +androidx.activity.R$id: int accessibility_custom_action_0 +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +james.adaptiveicon.R$style: int Base_V21_Theme_AppCompat +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endColor +com.tencent.bugly.crashreport.common.info.a: java.lang.Boolean Z +androidx.recyclerview.widget.RecyclerView$LayoutManager$Properties +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintStart_toStartOf +androidx.preference.R$layout: int abc_action_mode_close_item_material +androidx.appcompat.widget.LinearLayoutCompat: int getDividerWidth() +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder protocols(java.util.List) +androidx.fragment.app.FragmentContainerView: void setLayoutTransition(android.animation.LayoutTransition) +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_tileMode +androidx.lifecycle.LifecycleOwner +androidx.hilt.work.R$layout: int notification_action +okhttp3.internal.cache2.Relay: boolean complete +com.google.android.gms.base.R$attr: R$attr() +com.bumptech.glide.integration.okhttp.R$id: int actions +androidx.lifecycle.Lifecycling: androidx.lifecycle.GenericLifecycleObserver getCallback(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_material +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent +com.google.android.material.R$styleable: int Layout_layout_constraintWidth_min +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginBottom +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_message_margin_horizontal +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +com.google.android.material.R$string: int mtrl_picker_confirm +okhttp3.internal.http2.Settings: int ENABLE_PUSH +androidx.core.R$id: int icon_group +wangdaye.com.geometricweather.R$id: int checked +androidx.constraintlayout.widget.R$string: int abc_searchview_description_search +android.didikee.donate.R$color: int abc_btn_colored_borderless_text_material +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_15 +cyanogenmod.app.Profile: java.lang.String TAG +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCardForegroundColor() +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_DarkActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int[] CompoundButton +com.google.android.material.R$attr: int titleMargin +android.didikee.donate.R$styleable: int AppCompatTheme_windowMinWidthMajor +com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_enforceTextAppearance +okio.RealBufferedSink: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) +androidx.viewpager.R$color: int ripple_material_light +com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_disabled +wangdaye.com.geometricweather.remoteviews.config.Hilt_TextWidgetConfigActivity +android.didikee.donate.R$attr: int listPreferredItemPaddingRight +androidx.drawerlayout.R$drawable: int notification_tile_bg +androidx.preference.internal.PreferenceImageView: void setMaxWidth(int) +com.google.android.material.R$attr: int customNavigationLayout +okio.Base64: Base64() +android.didikee.donate.R$styleable: int TextAppearance_android_textColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: java.lang.String Unit +com.google.android.material.textfield.TextInputLayout: void setCounterOverflowTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setValue(java.util.List) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.String Code +okhttp3.internal.Util: java.lang.String inet6AddressToAscii(byte[]) +james.adaptiveicon.R$id: int search_bar +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_creator +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedWidthMinor() +wangdaye.com.geometricweather.R$drawable: int ic_weather +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ButtonBar +okio.ByteString: int lastIndexOf(byte[],int) +okhttp3.internal.ws.WebSocketWriter: boolean activeWriter +wangdaye.com.geometricweather.R$attr: int flow_lastVerticalBias +wangdaye.com.geometricweather.R$string: int briefings +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_thumb +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.lifecycle.SavedStateViewModelFactory: java.lang.Class[] ANDROID_VIEWMODEL_SIGNATURE +android.didikee.donate.R$attr: int icon +wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_xml +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_shapeAppearanceOverlay +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_padding_top_material +androidx.viewpager2.adapter.FragmentStateAdapter$FragmentMaxLifecycleEnforcer$3 +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: ObservableWindow$WindowExactObserver(io.reactivex.Observer,long,int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_8 +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge +android.didikee.donate.R$dimen: int notification_top_pad_large_text +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.R$string: int feedback_get_weather_failed +com.google.android.material.R$id: int unchecked +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +androidx.work.impl.utils.futures.AbstractFuture$Waiter: java.lang.Thread thread +android.didikee.donate.R$attr: int height +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemBackground +androidx.customview.R$attr: int fontProviderFetchStrategy +okio.ForwardingSource +com.google.android.material.R$styleable: int KeyAttribute_transitionPathRotate +okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withWriteTimeout(int,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$animator: int search_container_in +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_MinutelyEntityListQuery +androidx.viewpager.R$styleable: int GradientColor_android_gradientRadius +com.tencent.bugly.crashreport.common.info.a: java.lang.String N() +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder domain(java.lang.String,boolean) +io.reactivex.observers.DisposableObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_EditText +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_indeterminateProgressStyle +androidx.lifecycle.ReportFragment: ReportFragment() +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircleAngle +androidx.appcompat.widget.AppCompatCheckBox: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +okio.Buffer: okio.ByteString digest(java.lang.String) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: java.lang.Object singleItem +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int getPriority() +okio.SegmentPool: okio.Segment take() +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks +com.google.android.material.R$drawable: int abc_btn_radio_material +androidx.preference.R$attr: int buttonCompat +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String y +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayWeekWidgetConfigActivity +com.google.android.material.R$id: int ignore +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_8 +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setBadgeIfNeeded(com.google.android.material.bottomnavigation.BottomNavigationItemView) +okhttp3.OkHttpClient: OkHttpClient() +androidx.drawerlayout.R$layout: int notification_template_part_time +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState MOVING +androidx.appcompat.R$attr: int lineHeight +wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_android_foreground +cyanogenmod.externalviews.ExternalView$1: cyanogenmod.externalviews.ExternalView this$0 +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_22 +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_creator +cyanogenmod.profiles.AirplaneModeSettings$1: AirplaneModeSettings$1() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.util.List getValue() +com.google.android.material.chip.Chip: void setBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_BottomRightCut +com.google.android.material.R$attr: int endIconContentDescription +okhttp3.internal.http.HttpHeaders: okhttp3.Headers varyHeaders(okhttp3.Response) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int OTHER_STATE_HAS_VALUE +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.R$attr: int dotDiameter +wangdaye.com.geometricweather.R$dimen: int preference_icon_minWidth +androidx.preference.R$style: int Theme_AppCompat_CompactMenu +androidx.cardview.R$attr: int cardUseCompatPadding +com.google.android.material.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.R$string: int key_notification_can_be_cleared +android.didikee.donate.R$styleable: int DrawerArrowToggle_color +com.google.android.material.R$drawable: int avd_hide_password +androidx.preference.R$drawable +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar +androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy: ConstraintProxy$BatteryChargingProxy() +wangdaye.com.geometricweather.R$attr: int contentInsetStartWithNavigation +android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog +androidx.viewpager2.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setNo2(java.lang.String) +com.google.android.material.R$dimen: int abc_text_size_subhead_material +wangdaye.com.geometricweather.R$attr: int height +com.google.android.material.R$attr: int titleMarginBottom +wangdaye.com.geometricweather.R$id: int decelerate +com.xw.repo.bubbleseekbar.R$dimen: int abc_alert_dialog_button_dimen +com.google.android.material.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_trackTint +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: java.lang.Object value +wangdaye.com.geometricweather.R$drawable: int ic_router +com.google.android.material.R$styleable: int Chip_checkedIconVisible +okhttp3.Cookie: long parseExpires(java.lang.String,int,int) +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.lang.Object x509TrustManagerExtensions +androidx.lifecycle.ProcessLifecycleOwner: int mResumedCounter +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String getUnit() +wangdaye.com.geometricweather.R$array: int ui_styles +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_SmallComponent +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +androidx.lifecycle.ServiceLifecycleDispatcher +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Body2 +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualObserver[] observers +androidx.appcompat.R$attr: int subtitleTextStyle +android.didikee.donate.R$styleable: int Toolbar_buttonGravity +com.xw.repo.bubbleseekbar.R$attr: int dividerVertical +androidx.coordinatorlayout.R$id: int top +com.tencent.bugly.proguard.k: void a(com.tencent.bugly.proguard.i) +io.reactivex.Observable: io.reactivex.Observable throttleLast(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.util.List Area +androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +android.didikee.donate.R$style: int Widget_AppCompat_TextView_SpinnerItem +androidx.preference.R$styleable: int ListPreference_android_entryValues +cyanogenmod.os.Build: java.lang.String getNameForSDKInt(int) +com.google.android.material.R$attr: int boxBackgroundMode +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_24 +com.turingtechnologies.materialscrollbar.R$attr: int closeIconTint +io.reactivex.internal.observers.DeferredScalarDisposable: int TERMINATED +androidx.hilt.lifecycle.R$id: int line3 +james.adaptiveicon.R$styleable: int MenuItem_android_alphabeticShortcut +com.xw.repo.bubbleseekbar.R$integer: int abc_config_activityShortDur +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_AutoCompleteTextView +okio.GzipSource +androidx.work.R$id: int accessibility_custom_action_3 +com.tencent.bugly.proguard.ar: java.util.Map e +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView_Menu +com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void cancel() +androidx.appcompat.resources.R$id: int text +okhttp3.internal.Util: java.util.List immutableList(java.util.List) +wangdaye.com.geometricweather.R$id: int dragEnd +io.reactivex.Observable: io.reactivex.Observable mergeArray(io.reactivex.ObservableSource[]) +okio.RealBufferedSink: okio.BufferedSink writeLong(long) +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int item_weather_icon_title +com.google.android.material.bottomsheet.BottomSheetBehavior$SavedState: android.os.Parcelable$Creator CREATOR +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void emit() +androidx.appcompat.R$styleable: int MenuGroup_android_enabled +james.adaptiveicon.R$string: int abc_searchview_description_voice +androidx.hilt.lifecycle.R$attr: R$attr() +com.google.android.material.R$dimen: int notification_right_side_padding_top +com.google.android.material.R$attr: int customStringValue +okhttp3.internal.http2.Http2Stream +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_title +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COMPONENT_ID +okhttp3.internal.http.RealResponseBody: java.lang.String contentTypeString +com.google.android.material.textfield.TextInputLayout: void setDefaultHintTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setNightIndicatorRotation(float) +com.google.android.material.R$dimen: int abc_alert_dialog_button_dimen +com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_disabled_material_light +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setLabelVisibilityMode(int) +com.loc.k: java.lang.String b +james.adaptiveicon.R$styleable: int AppCompatTheme_listMenuViewStyle +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconTint +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_listItemLayout +okhttp3.internal.Version: Version() +androidx.preference.PreferenceManager: void setOnNavigateToScreenListener(androidx.preference.PreferenceManager$OnNavigateToScreenListener) +com.jaredrummler.android.colorpicker.R$attr: int controlBackground +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_material_dark +com.google.android.material.R$styleable: int MotionTelltales_telltales_velocityMode +androidx.constraintlayout.widget.R$id: int split_action_bar +com.google.android.material.R$styleable: int ConstraintSet_android_maxHeight +android.didikee.donate.R$styleable: int MenuView_android_verticalDivider +androidx.appcompat.R$styleable: int AppCompatSeekBar_android_thumb +android.didikee.donate.R$drawable: int notification_action_background +okio.RealBufferedSource: int readUtf8CodePoint() +androidx.appcompat.R$styleable: int Toolbar_contentInsetLeft +wangdaye.com.geometricweather.R$drawable: int cpv_btn_background_pressed +androidx.activity.R$style: int TextAppearance_Compat_Notification +androidx.lifecycle.Lifecycling: java.util.Map sClassToAdapters +androidx.viewpager2.R$dimen: int notification_large_icon_height +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +android.didikee.donate.R$attr: int windowMinWidthMinor +com.google.android.gms.common.images.ImageManager$ImageReceiver +james.adaptiveicon.R$color: int switch_thumb_disabled_material_dark +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display3 +androidx.hilt.work.R$id: int action_image +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.lang.String domain +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.util.concurrent.locks.Condition condition +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean set(int,boolean) +wangdaye.com.geometricweather.R$color: int mtrl_textinput_filled_box_default_background_color +com.github.rahatarmanahmed.cpv.CircularProgressView: float startAngle +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerError(java.lang.Throwable) +com.google.android.material.R$styleable: int KeyAttribute_android_transformPivotY +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dropDownListViewStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeWetBulbTemperature() +wangdaye.com.geometricweather.R$attr: int text +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeSplitBackground +com.google.android.material.R$attr: int behavior_autoShrink +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: MfForecastV2Result$ForecastProperties$HourForecast() +cyanogenmod.power.PerformanceManager: boolean getProfileHasAppProfiles(int) +wangdaye.com.geometricweather.R$id: int recyclerView +okhttp3.FormBody: long writeOrCountBytes(okio.BufferedSink,boolean) +androidx.core.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenText(android.content.Context,int) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: MaterialWeatherView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moonContainer +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Time +androidx.vectordrawable.animated.R$color: int notification_icon_bg_color +okhttp3.internal.http2.Http2Connection: long access$100(okhttp3.internal.http2.Http2Connection) +cyanogenmod.profiles.StreamSettings: void setOverride(boolean) +io.reactivex.internal.util.EmptyComponent: void onSuccess(java.lang.Object) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +android.didikee.donate.R$id: int useLogo +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: ILiveLockScreenManagerProvider$Stub() +com.turingtechnologies.materialscrollbar.R$string +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitation +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionViewClass +androidx.lifecycle.ReportFragment: void dispatchStart(androidx.lifecycle.ReportFragment$ActivityInitializationListener) +androidx.preference.R$style: int Preference_SwitchPreferenceCompat_Material +androidx.hilt.R$dimen: int compat_button_padding_horizontal_material +androidx.vectordrawable.animated.R$id: int tag_accessibility_heading +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_PROFILES +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_OVERLAYS +wangdaye.com.geometricweather.R$styleable: int Transform_android_translationZ +okio.SegmentedByteString: int indexOf(byte[],int) +com.jaredrummler.android.colorpicker.R$dimen: int notification_top_pad +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$attr: int dialogMessage +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_menuCategory +com.google.android.material.R$styleable: int[] StateSet +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_icon_size +com.turingtechnologies.materialscrollbar.R$attr: int buttonIconDimen +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String removeNativeKeyValue(java.lang.String) +cyanogenmod.app.Profile$1 +io.reactivex.internal.util.NotificationLite: java.lang.String toString() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments comments +wangdaye.com.geometricweather.R$drawable: int design_password_eye +android.didikee.donate.R$id: int action_bar_spinner +retrofit2.HttpServiceMethod: HttpServiceMethod(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter) +wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean hasKey(java.lang.Object) +com.google.android.material.R$dimen: int mtrl_low_ripple_focused_alpha +cyanogenmod.weather.WeatherInfo: java.util.List getForecasts() +com.amap.api.fence.PoiItem: void setLatitude(double) +androidx.constraintlayout.widget.ConstraintHelper: void setReferencedIds(int[]) +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabText +com.tencent.bugly.crashreport.crash.anr.b: boolean a(java.lang.String,java.lang.String,java.lang.String) +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void run() +com.jaredrummler.android.colorpicker.R$styleable: int Preference_icon +androidx.preference.R$drawable: int abc_cab_background_top_mtrl_alpha +androidx.preference.R$styleable: int PopupWindow_overlapAnchor +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: java.lang.Float value +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShowMotionSpecResource(int) +com.amap.api.location.AMapLocation: void setDistrict(java.lang.String) +io.reactivex.internal.observers.LambdaObserver: void onNext(java.lang.Object) +cyanogenmod.weather.IRequestInfoListener$Stub: android.os.IBinder asBinder() +com.xw.repo.bubbleseekbar.R$attr: int arrowHeadLength +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getPm10() +james.adaptiveicon.R$attr: int selectableItemBackground +com.google.android.material.R$styleable: int AppCompatTheme_editTextStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: double Value +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastVerticalBias +okhttp3.internal.ws.RealWebSocket$Streams: okio.BufferedSink sink +wangdaye.com.geometricweather.R$styleable: int Preference_android_singleLineTitle +com.google.android.material.R$style: int TextAppearance_AppCompat_Title +wangdaye.com.geometricweather.R$id: int smallLabel +androidx.preference.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator +com.tencent.bugly.proguard.y: void a(int) +com.google.android.material.slider.BaseSlider: void setTrackTintList(android.content.res.ColorStateList) +com.google.android.material.R$color: int material_slider_halo_color +retrofit2.RequestFactory$Builder: boolean gotQueryMap +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display1 +cyanogenmod.profiles.ConnectionSettings$BooleanState: int STATE_DISALED +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.Observer downstream +androidx.appcompat.R$styleable: int AppCompatTheme_checkboxStyle +cyanogenmod.app.CustomTileListenerService$1 +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Line2 +com.google.android.material.R$styleable: int ConstraintSet_flow_wrapMode +androidx.recyclerview.R$styleable: int GradientColorItem_android_color +androidx.appcompat.R$layout: int abc_action_bar_up_container +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setCoDesc(java.lang.String) +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State RUNNING +androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_Switch +androidx.appcompat.resources.R$id: int accessibility_custom_action_2 +io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged(io.reactivex.functions.Function) +com.google.android.material.R$attr: int constraintSetEnd +com.google.android.material.R$styleable: int ConstraintSet_flow_verticalBias +android.didikee.donate.R$id: int expanded_menu +wangdaye.com.geometricweather.R$attr: int toolbarNavigationButtonStyle +wangdaye.com.geometricweather.R$font: R$font() +com.google.android.material.R$attr: int layout_goneMarginStart +cyanogenmod.weather.RequestInfo: java.lang.String mCityName +android.didikee.donate.R$styleable: int TextAppearance_fontVariationSettings +androidx.preference.R$color: int abc_secondary_text_material_light +com.google.android.material.R$string: int abc_search_hint +com.jaredrummler.android.colorpicker.R$attr: int listDividerAlertDialog +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +androidx.coordinatorlayout.R$id: int accessibility_custom_action_12 +wangdaye.com.geometricweather.R$attr: int logo +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_DialogWhenLarge +wangdaye.com.geometricweather.R$id: int dialog_location_help_locationIcon +androidx.preference.R$styleable: int[] GradientColorItem +androidx.appcompat.R$id: int action_context_bar +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: double Value +androidx.preference.R$id: int titleDividerNoCustom +wangdaye.com.geometricweather.common.basic.models.Location: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.db.entities.MinutelyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +com.google.android.material.R$id: int content +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteInTxIterable +okhttp3.internal.http.StatusLine: int HTTP_PERM_REDIRECT +androidx.fragment.R$drawable: int notification_bg_low_pressed +androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy: ConstraintProxy$NetworkStateProxy() +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String sourceId +retrofit2.DefaultCallAdapterFactory: java.util.concurrent.Executor callbackExecutor +wangdaye.com.geometricweather.R$drawable: int ic_sunrise +androidx.drawerlayout.R$id: int normal +androidx.work.NetworkType: androidx.work.NetworkType[] values() +android.didikee.donate.R$styleable: int Toolbar_logoDescription +wangdaye.com.geometricweather.R$string: int feedback_select_location_provider +com.turingtechnologies.materialscrollbar.R$attr: int behavior_fitToContents +com.baidu.location.e.m: m(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) +com.google.android.material.bottomappbar.BottomAppBar: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() +androidx.appcompat.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$styleable: int[] MaterialTextView +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks +com.google.android.material.R$attr: int listPreferredItemPaddingRight +com.google.android.material.R$styleable: int AppCompatTheme_dividerVertical +androidx.drawerlayout.R$styleable: int GradientColor_android_startY +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.Integer alti +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceLargePopupMenu +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_disabled_material_light +cyanogenmod.app.StatusBarPanelCustomTile: int getUserId() +androidx.lifecycle.ClassesInfoCache +james.adaptiveicon.R$styleable: int SearchView_android_focusable +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: CNWeatherResult$Alert() +okio.Segment +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void testCrash() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionDropDownStyle +androidx.vectordrawable.R$id: int line1 +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginEnd +okhttp3.internal.Util: int decodeHexDigit(char) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours Past6Hours +com.jaredrummler.android.colorpicker.R$attr: int allowDividerAfterLastItem +androidx.customview.R$layout: int notification_template_icon_group +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_typeface +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder minFresh(int,java.util.concurrent.TimeUnit) +androidx.appcompat.R$dimen: int tooltip_corner_radius +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void dispose() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +androidx.transition.R$style: int TextAppearance_Compat_Notification_Info +cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.ICMStatusBarManager mStatusBarService +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getCardValue() +cyanogenmod.providers.CMSettings: boolean LOCAL_LOGV +okhttp3.HttpUrl: int port +android.didikee.donate.R$layout: int abc_dialog_title_material +android.didikee.donate.R$drawable: int abc_ic_star_half_black_36dp +wangdaye.com.geometricweather.R$drawable: int notif_temp_25 +wangdaye.com.geometricweather.R$attr: int bsb_min +wangdaye.com.geometricweather.R$id: int widget_clock_day_date +cyanogenmod.providers.CMSettings$Secure: java.lang.String BUTTON_BACKLIGHT_TIMEOUT +com.jaredrummler.android.colorpicker.R$attr: R$attr() +com.google.android.material.R$string: int search_menu_title +androidx.lifecycle.LiveData: void postValue(java.lang.Object) +wangdaye.com.geometricweather.R$integer: int bottom_sheet_slide_duration +androidx.hilt.work.R$styleable: int Fragment_android_name +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf +io.reactivex.subjects.PublishSubject$PublishDisposable +com.google.android.material.R$attr: int materialButtonStyle +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder pingInterval(java.time.Duration) +com.google.android.material.R$styleable: int Motion_animate_relativeTo +androidx.hilt.R$anim: int fragment_close_exit +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_APP_SWITCH_ACTION_VALIDATOR +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onError(java.lang.Throwable) +com.google.android.material.R$styleable: int TabLayout_tabIndicatorHeight +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +wangdaye.com.geometricweather.R$styleable: int Chip_android_maxWidth +androidx.appcompat.widget.DialogTitle +androidx.lifecycle.extensions.R$attr: int alpha +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixTextColor +wangdaye.com.geometricweather.R$string: int material_timepicker_hour +okhttp3.internal.http2.Http2Connection$6 +cyanogenmod.weather.WeatherInfo$Builder: double mHumidity +com.xw.repo.bubbleseekbar.R$id: int alertTitle +com.tencent.bugly.proguard.p: com.tencent.bugly.proguard.p a(android.content.Context,java.util.List) +james.adaptiveicon.R$attr: int divider +androidx.work.R$id: int accessibility_custom_action_0 +okio.AsyncTimeout$1: void close() +com.xw.repo.bubbleseekbar.R$attr: int logoDescription +io.reactivex.internal.util.EmptyComponent: void cancel() +okhttp3.Cookie: java.lang.String parseDomain(java.lang.String) +okhttp3.ResponseBody$1: okio.BufferedSource source() +com.tencent.bugly.crashreport.common.info.a: java.lang.String A() +androidx.constraintlayout.widget.R$id: int asConfigured +com.tencent.bugly.proguard.u: int u +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void dispose() +wangdaye.com.geometricweather.R$styleable: int Chip_chipMinTouchTargetSize +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setStatus(int) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarStyle +com.jaredrummler.android.colorpicker.R$dimen: int abc_seekbar_track_progress_height_material +androidx.constraintlayout.widget.R$string: int abc_searchview_description_submit +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_color +com.google.android.material.slider.RangeSlider: java.util.List getValues() +wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_indicator_material +okhttp3.Request: okhttp3.Headers headers +okhttp3.internal.ws.WebSocketProtocol: long PAYLOAD_BYTE_MAX +androidx.drawerlayout.R$styleable: int FontFamilyFont_ttcIndex +androidx.activity.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dividerHorizontal +androidx.preference.R$dimen: int abc_text_size_menu_header_material +cyanogenmod.externalviews.ExternalViewProviderService$1$1: android.os.IBinder call() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$RequestType mRequestType +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$string: int key_hide_lunar +androidx.swiperefreshlayout.R$id: int normal +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter this$0 +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.Observer downstream +android.support.v4.app.INotificationSideChannel$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorAccent +wangdaye.com.geometricweather.R$anim: int abc_popup_exit +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontStyle +com.google.android.material.R$styleable: int RecyclerView_reverseLayout +com.amap.api.location.AMapLocation: java.lang.String getDescription() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_toRightOf +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void subscribeActual() +com.jaredrummler.android.colorpicker.R$id: int src_over +wangdaye.com.geometricweather.R$attr: int switchTextOn +james.adaptiveicon.R$styleable: int Spinner_android_prompt +wangdaye.com.geometricweather.R$drawable: int design_ic_visibility +james.adaptiveicon.R$color: int abc_tint_switch_track +okhttp3.Dispatcher: java.util.concurrent.ExecutorService executorService() +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: io.reactivex.Observer downstream +com.google.android.material.R$id: int circle_center +wangdaye.com.geometricweather.R$array: int pressure_unit_voices wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: java.lang.String type -androidx.appcompat.widget.LinearLayoutCompat: void setBaselineAlignedChildIndex(int) -com.xw.repo.bubbleseekbar.R$attr: int layout -okhttp3.Response: okhttp3.Handshake handshake() -com.jaredrummler.android.colorpicker.R$integer: int cancel_button_image_alpha -androidx.preference.R$id: int line3 -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: IExternalViewProviderFactory$Stub$Proxy(android.os.IBinder) -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteDatabase routeDatabase() -com.google.android.gms.base.R$styleable: int LoadingImageView_imageAspectRatioAdjust -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating Heating -androidx.viewpager.widget.PagerTitleStrip: void setSingleLineAllCaps(android.widget.TextView) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onScreenTurnedOff -wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_width_overflow_material -androidx.vectordrawable.R$styleable: int GradientColor_android_type -androidx.transition.R$dimen: int notification_small_icon_size_as_large -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator LOCKSCREEN_PIN_SCRAMBLE_LAYOUT_VALIDATOR -com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchCompat -com.turingtechnologies.materialscrollbar.R$id: int navigation_header_container -retrofit2.RequestFactory$Builder: okhttp3.MediaType contentType -wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -okhttp3.internal.http.StatusLine: int HTTP_TEMP_REDIRECT -cyanogenmod.hardware.CMHardwareManager: boolean deletePersistentObject(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: void setBrands(java.util.List) -com.turingtechnologies.materialscrollbar.Handle: void setRightToLeft(boolean) -cyanogenmod.os.Build: java.lang.String CYANOGENMOD_DISPLAY_VERSION -wangdaye.com.geometricweather.R$drawable: int abc_btn_colored_material -wangdaye.com.geometricweather.R$attr: int layoutManager -androidx.transition.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.R$styleable: int DrawerLayout_unfold -android.didikee.donate.R$attr: int actionMenuTextColor -wangdaye.com.geometricweather.R$id: int container_main_header_tempTxt -cyanogenmod.os.Concierge$ParcelInfo: int mParcelableSize +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Content +com.jaredrummler.android.colorpicker.R$attr: int dialogIcon +cyanogenmod.weather.CMWeatherManager: int lookupCity(java.lang.String,cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener) +wangdaye.com.geometricweather.R$color: int primary_material_light +com.google.android.material.R$styleable: int[] MaterialAutoCompleteTextView +okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_REENCODE_SET +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial Imperial +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.R$string: int chip_text +com.tencent.bugly.crashreport.CrashReport: int getUserDatasSize(android.content.Context) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_3 +com.google.android.material.R$id: int shortcut +wangdaye.com.geometricweather.R$drawable: int weather_clear_night +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_256_CCM_8_SHA256 +retrofit2.ParameterHandler$QueryName: boolean encoded +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_Switch +com.bumptech.glide.R$id: int action_image +androidx.constraintlayout.widget.R$styleable: int Motion_animate_relativeTo +androidx.vectordrawable.R$id: int accessibility_custom_action_0 +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_0 +android.didikee.donate.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +com.google.android.material.R$style: int Widget_AppCompat_ActionButton +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabStyle +james.adaptiveicon.R$drawable: int abc_cab_background_internal_bg +wangdaye.com.geometricweather.R$attr: int waveVariesBy +androidx.dynamicanimation.R$layout: int notification_template_part_time +james.adaptiveicon.R$drawable: int abc_seekbar_tick_mark_material +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog +okhttp3.internal.connection.RealConnection: okhttp3.internal.ws.RealWebSocket$Streams newWebSocketStreams(okhttp3.internal.connection.StreamAllocation) +org.greenrobot.greendao.AbstractDao: boolean isEntityUpdateable() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature temperature +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: int getStatus() +androidx.work.R$integer +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Time +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_MIN +wangdaye.com.geometricweather.main.dialogs.HourlyWeatherDialog: HourlyWeatherDialog() +androidx.hilt.work.R$dimen: int notification_big_circle_margin +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Headline +com.bumptech.glide.integration.okhttp.R$layout: int notification_template_part_chronometer +james.adaptiveicon.R$styleable: int AppCompatTheme_android_windowAnimationStyle +com.google.android.material.textfield.TextInputLayout: com.google.android.material.internal.CheckableImageButton getEndIconView() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Menu +wangdaye.com.geometricweather.R$layout: int design_navigation_menu +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_2_material +androidx.appcompat.resources.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar +wangdaye.com.geometricweather.R$string: int feedback_text_size +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: void readTraceFile(java.lang.String,com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$b) +android.didikee.donate.R$id: int text2 +androidx.preference.R$id: int message +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$styleable: int[] ActionBar +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,int) +okhttp3.Protocol: okhttp3.Protocol[] $VALUES +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ws +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder value(java.lang.String) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_Primary +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_ListPopupWindow +james.adaptiveicon.R$attr: int tooltipForegroundColor +com.turingtechnologies.materialscrollbar.R$id: int scrollIndicatorUp +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +androidx.appcompat.R$attr: int barLength +com.google.android.material.R$id: int accessibility_custom_action_7 +com.google.android.material.R$id: int TOP_START +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer treeIndex +wangdaye.com.geometricweather.R$animator: int weather_clear_night_1 +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_summaryOn +wangdaye.com.geometricweather.R$attr: int cpv_showDialog +wangdaye.com.geometricweather.R$attr: int homeLayout +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +androidx.cardview.R$style: int CardView_Light +androidx.vectordrawable.animated.R$attr: int alpha +cyanogenmod.hardware.CMHardwareManager: int FEATURE_AUTO_CONTRAST +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getRingtoneThemePackageName() +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: long period +androidx.appcompat.widget.SearchView$SearchAutoComplete: int getSearchViewTextMinWidthDp() +androidx.viewpager.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.R$style: int ThemeOverlayColorAccentRed +androidx.appcompat.R$styleable: int MenuItem_android_enabled +androidx.appcompat.widget.AppCompatImageButton: android.content.res.ColorStateList getSupportImageTintList() +androidx.constraintlayout.widget.R$styleable: int OnSwipe_maxVelocity +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function7) +androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getCollapseIcon() +androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveShape +androidx.lifecycle.LifecycleDispatcher: void init(android.content.Context) +com.google.gson.stream.JsonReader: void close() +com.google.android.material.R$styleable: int ImageFilterView_crossfade +cyanogenmod.themes.ThemeManager$1: void onFinish(boolean) +androidx.hilt.work.R$styleable: int GradientColor_android_centerColor +androidx.appcompat.R$layout: int abc_list_menu_item_checkbox +androidx.lifecycle.MethodCallsLogger: java.util.Map mCalledMethods +com.google.android.material.R$styleable: int CustomAttribute_customIntegerValue +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial Imperial +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: io.reactivex.Observer downstream +android.didikee.donate.R$id: int homeAsUp +james.adaptiveicon.R$color: int foreground_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: AccuCurrentResult$DewPoint$Metric() +androidx.vectordrawable.R$id: int accessibility_custom_action_11 +wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_enforceMaterialTheme +com.amap.api.fence.PoiItem: java.lang.String getPoiId() +wangdaye.com.geometricweather.R$color: int mtrl_chip_text_color +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node findByObject(java.lang.Object) +androidx.preference.EditTextPreference: EditTextPreference(android.content.Context,android.util.AttributeSet) +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ListPopupWindow +com.amap.api.location.UmidtokenInfo: void setLocAble(boolean) +org.greenrobot.greendao.AbstractDao: java.lang.Object readEntity(android.database.Cursor,int) +com.google.android.material.R$integer: int mtrl_card_anim_duration_ms +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_width +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onComplete() +androidx.lifecycle.LifecycleService: void onStart(android.content.Intent,int) +androidx.appcompat.R$style: int Base_V22_Theme_AppCompat_Light +com.tencent.bugly.crashreport.common.info.b: java.lang.String f() +wangdaye.com.geometricweather.R$drawable: int ic_github_light +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +androidx.hilt.work.R$styleable: int[] FontFamilyFont +androidx.hilt.lifecycle.R$id: int tag_accessibility_heading +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context) +io.reactivex.internal.disposables.EmptyDisposable: boolean isDisposed() +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.SingleObserver downstream +com.jaredrummler.android.colorpicker.ColorPanelView: int getColor() +wangdaye.com.geometricweather.R$layout: int notification_base +wangdaye.com.geometricweather.R$attr: int layout_constrainedWidth +androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_max +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollHorizontalTrackDrawable +okhttp3.MultipartBody: okhttp3.MediaType originalType +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: boolean isDisposed() +androidx.activity.R$attr: int fontProviderQuery +okhttp3.Challenge: int hashCode() +com.google.android.material.R$style: int Widget_AppCompat_ActionMode +wangdaye.com.geometricweather.R$string: int real_feel_temperature +cyanogenmod.platform.Manifest$permission: java.lang.String PROTECTED_APP +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_fontFamily +com.tencent.bugly.crashreport.common.info.b: long l() +com.turingtechnologies.materialscrollbar.R$attr: int chipStartPadding +wangdaye.com.geometricweather.R$drawable: int weather_hail_pixel +androidx.work.R$id: int accessibility_custom_action_29 +okhttp3.HttpUrl$Builder: java.util.List encodedPathSegments +androidx.constraintlayout.widget.R$styleable: int MotionLayout_applyMotionScene +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomSheet_Modal +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +cyanogenmod.externalviews.ExternalViewProperties: int mHeight +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendLayoutManager +androidx.hilt.lifecycle.R$id: int icon +androidx.preference.R$styleable: int AppCompatTextView_autoSizePresetSizes +com.xw.repo.bubbleseekbar.R$id: int tabMode +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginLeft +com.google.android.material.R$styleable: int TabLayout_tabGravity +androidx.lifecycle.LiveData: void observe(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Observer) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginRight +androidx.lifecycle.LifecycleRegistry$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$Event +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableStart +androidx.activity.R$dimen: int notification_small_icon_background_padding +okhttp3.Cookie: java.lang.String path() +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: boolean isDisposed() +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: void setOnFitSystemBarListener(wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout$OnFitSystemBarListener) +wangdaye.com.geometricweather.R$attr: int preferenceTheme +com.google.android.material.circularreveal.CircularRevealRelativeLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +retrofit2.RequestFactory$Builder: void validatePathName(int,java.lang.String) +okhttp3.Handshake: java.util.List peerCertificates +androidx.coordinatorlayout.R$id: int accessibility_custom_action_3 +androidx.appcompat.R$color: int abc_tint_edittext +com.google.android.material.R$attr: int duration +com.google.android.material.R$styleable: int CustomAttribute_customFloatValue +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: boolean isDisposed() +com.xw.repo.bubbleseekbar.R$id: int action_menu_divider +androidx.lifecycle.Lifecycling: boolean isLifecycleParent(java.lang.Class) +com.google.android.material.R$style: int Platform_AppCompat_Light +androidx.legacy.coreutils.R$dimen: int compat_control_corner_material +com.google.android.gms.location.ActivityTransitionEvent +okio.RealBufferedSink$1: void flush() +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.R$id: int notification_big +wangdaye.com.geometricweather.db.entities.HistoryEntity: int getNighttimeTemperature() +wangdaye.com.geometricweather.R$dimen: int design_textinput_caption_translate_y +io.reactivex.Observable: io.reactivex.Observable delaySubscription(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +io.reactivex.internal.util.NotificationLite$ErrorNotification: java.lang.String toString() +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator +com.turingtechnologies.materialscrollbar.R$id: int forever +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.lang.Object NEXT_WINDOW +com.tencent.bugly.crashreport.common.info.a: java.util.Map ad +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide +wangdaye.com.geometricweather.R$drawable: int notif_temp_51 +com.google.android.material.snackbar.Snackbar$SnackbarLayout: Snackbar$SnackbarLayout(android.content.Context) +wangdaye.com.geometricweather.R$id: int forever +androidx.vectordrawable.R$id: int icon +wangdaye.com.geometricweather.R$string: int feedback_about_geocoder +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_2 +com.jaredrummler.android.colorpicker.R$styleable: int[] ViewStubCompat +com.google.android.material.R$dimen: int abc_disabled_alpha_material_light +io.reactivex.internal.subscriptions.EmptySubscription: boolean offer(java.lang.Object,java.lang.Object) +okhttp3.internal.http2.Huffman: void buildTree() +okio.RealBufferedSink: okio.BufferedSink writeHexadecimalUnsignedLong(long) +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearStyle +android.didikee.donate.R$drawable: int abc_vector_test +wangdaye.com.geometricweather.R$id: int row_index_key +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float so2 +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_summaryOff +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Title +com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.StrategyBean e +com.xw.repo.bubbleseekbar.R$attr: int popupTheme +androidx.constraintlayout.widget.R$attr: int progressBarStyle +wangdaye.com.geometricweather.R$attr: int updatesContinuously +cyanogenmod.profiles.RingModeSettings: boolean mOverride +androidx.constraintlayout.widget.R$color: int abc_search_url_text_selected +androidx.loader.R$dimen: int compat_button_padding_horizontal_material +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_font +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Title +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: java.lang.Object item +cyanogenmod.themes.ThemeChangeRequest: int describeContents() +com.xw.repo.bubbleseekbar.R$attr: int tooltipForegroundColor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: AccuDailyResult$DailyForecasts() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_constraint_referenced_ids +com.google.android.material.R$attr: int actionModeCutDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind Wind +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: CNWeatherResult() +wangdaye.com.geometricweather.R$attr: int currentPageIndicatorColor +com.google.android.material.R$styleable: int Variant_region_heightLessThan +com.turingtechnologies.materialscrollbar.R$attr: int pressedTranslationZ +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.Scheduler scheduler +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +james.adaptiveicon.R$attr: int actionBarTheme +androidx.constraintlayout.widget.R$color +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar +com.google.android.material.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: cyanogenmod.externalviews.IKeyguardExternalViewProvider asInterface(android.os.IBinder) +com.turingtechnologies.materialscrollbar.R$attr: int spinnerDropDownItemStyle +androidx.hilt.R$id: int action_container +androidx.preference.R$attr: int buttonPanelSideLayout +cyanogenmod.providers.CMSettings$Secure: boolean shouldInterceptSystemProvider(java.lang.String) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTotalPrecipitation(java.lang.Float) +retrofit2.http.HEAD: java.lang.String value() +androidx.constraintlayout.widget.R$attr: int actionBarTheme +com.google.android.material.R$attr: int searchHintIcon +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalGap +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endColor +com.google.android.material.button.MaterialButton: int getInsetBottom() +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean delayErrors +com.amap.api.location.AMapLocation: java.lang.String getCity() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display2 +com.turingtechnologies.materialscrollbar.R$attr: int hintEnabled +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatSeekBar +com.bumptech.glide.R$color: int notification_icon_bg_color +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: ObservableReplay$BoundedReplayBuffer() +androidx.preference.R$styleable: int ListPreference_android_entries +com.google.android.material.R$drawable: int abc_btn_check_material_anim +com.amap.api.fence.GeoFenceClient +androidx.preference.R$id: int accessibility_custom_action_20 +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_Solid +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void cancelOngoingRequests() +com.turingtechnologies.materialscrollbar.R$attr: int queryHint +androidx.work.R$styleable: int ColorStateListItem_android_alpha +androidx.appcompat.R$attr: int autoSizeMaxTextSize +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_grey +com.google.android.material.R$attr: int closeIconSize +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_cancelRequest +okio.GzipSink: okio.Timeout timeout() +androidx.hilt.lifecycle.R$attr: int alpha +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRealFeelShaderTemperature(java.lang.Integer) +androidx.appcompat.R$color: int tooltip_background_dark +cyanogenmod.weatherservice.ServiceRequestResult: java.util.List access$302(cyanogenmod.weatherservice.ServiceRequestResult,java.util.List) +com.google.android.material.R$styleable: int DrawerArrowToggle_arrowShaftLength +com.google.android.material.R$style: int TextAppearance_AppCompat_Tooltip +androidx.preference.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +androidx.constraintlayout.widget.R$drawable: int abc_btn_check_to_on_mtrl_015 +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +okhttp3.internal.http2.Http2: int INITIAL_MAX_FRAME_SIZE +androidx.appcompat.R$drawable: int tooltip_frame_dark +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String Link +androidx.viewpager.R$attr: int fontProviderFetchStrategy +okio.Util: java.nio.charset.Charset UTF_8 +okhttp3.internal.http2.Huffman: Huffman() +cyanogenmod.weather.WeatherInfo$DayForecast: void writeToParcel(android.os.Parcel,int) +androidx.preference.R$styleable: int SwitchPreference_switchTextOn +com.google.android.gms.location.GeofencingRequest: android.os.Parcelable$Creator CREATOR +james.adaptiveicon.R$dimen: int abc_switch_padding +androidx.hilt.lifecycle.R$drawable +wangdaye.com.geometricweather.R$id: int pathRelative +james.adaptiveicon.R$attr: int preserveIconSpacing +retrofit2.Converter: java.lang.Object convert(java.lang.Object) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +wangdaye.com.geometricweather.R$attr: int region_heightMoreThan +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_minHeight +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_textOff +wangdaye.com.geometricweather.R$drawable: int notif_temp_93 +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String V +androidx.vectordrawable.animated.R$integer: int status_bar_notification_info_maxnum +com.jaredrummler.android.colorpicker.R$string +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getId() +android.didikee.donate.R$attr: int voiceIcon +androidx.legacy.coreutils.R$id: int action_container +com.google.android.material.R$dimen: int abc_text_size_button_material +androidx.preference.R$styleable: int[] DialogPreference +com.turingtechnologies.materialscrollbar.R$attr: int tabRippleColor +androidx.appcompat.R$id: int select_dialog_listview +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: org.reactivestreams.Subscriber downstream +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_summaryOn +com.google.android.material.R$style: int Test_Theme_MaterialComponents_MaterialCalendar +androidx.preference.R$styleable: int Spinner_android_entries +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +androidx.constraintlayout.widget.R$attr: int subtitle +androidx.transition.ChangeBounds$7 +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder client(okhttp3.OkHttpClient) +androidx.hilt.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +com.jaredrummler.android.colorpicker.R$styleable: int[] ButtonBarLayout +androidx.viewpager2.R$styleable: int RecyclerView_layoutManager +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit valueOf(java.lang.String) +wangdaye.com.geometricweather.R$id: int textinput_error +android.didikee.donate.R$styleable: int SearchView_android_maxWidth +com.google.android.material.R$layout: int abc_screen_content_include +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_MAX +androidx.viewpager2.R$color +com.google.android.material.R$id: int view_offset_helper +retrofit2.Invocation: java.lang.reflect.Method method +android.didikee.donate.R$styleable: int Toolbar_titleMarginTop +okhttp3.EventListener: void callEnd(okhttp3.Call) +androidx.lifecycle.LiveData: void onActive() +androidx.preference.R$style: int TextAppearance_AppCompat_Title +cyanogenmod.externalviews.ExternalViewProviderService$1$1 +com.tencent.bugly.crashreport.common.info.a: java.lang.String I +okhttp3.ConnectionSpec: java.util.List tlsVersions() +androidx.viewpager.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +james.adaptiveicon.R$drawable: int abc_seekbar_track_material +wangdaye.com.geometricweather.R$drawable: int clock_minute_dark +android.didikee.donate.R$dimen: int abc_dialog_padding_top_material +androidx.lifecycle.extensions.R$id: int info +okhttp3.Headers$Builder: okhttp3.Headers$Builder addUnsafeNonAscii(java.lang.String,java.lang.String) +androidx.hilt.work.R$styleable: int FontFamilyFont_android_font +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarDivider +james.adaptiveicon.R$color: int material_grey_100 +okhttp3.internal.http2.Http2Codec: okhttp3.internal.http2.Http2Connection connection +com.xw.repo.bubbleseekbar.R$attr: int colorError +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: long serialVersionUID +androidx.appcompat.resources.R$dimen: int compat_button_padding_vertical_material +androidx.constraintlayout.widget.R$string: int abc_shareactionprovider_share_with +okio.Buffer$2 +com.google.android.material.R$attr: int actionBarWidgetTheme +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +androidx.constraintlayout.widget.R$color: int abc_color_highlight_material +com.jaredrummler.android.colorpicker.R$dimen: int compat_notification_large_icon_max_height +com.turingtechnologies.materialscrollbar.R$color: int secondary_text_default_material_light +androidx.appcompat.R$styleable: int AppCompatTheme_colorPrimaryDark +cyanogenmod.power.PerformanceManager +cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,android.content.ComponentName) +cyanogenmod.providers.CMSettings$2: CMSettings$2() +androidx.preference.R$styleable: int ActionBar_itemPadding +wangdaye.com.geometricweather.R$id: int action_mode_bar_stub +wangdaye.com.geometricweather.R$layout: int container_alert_display_view +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX +okhttp3.EventListener: void requestHeadersEnd(okhttp3.Call,okhttp3.Request) +retrofit2.Converter +com.turingtechnologies.materialscrollbar.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ChipGroup +androidx.appcompat.R$dimen: int compat_button_inset_vertical_material +com.amap.api.fence.GeoFenceManagerBase: void addRoundGeoFence(com.amap.api.location.DPoint,float,java.lang.String) +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Time +androidx.viewpager2.R$id: int accessibility_custom_action_17 +androidx.appcompat.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$styleable: int[] Insets +androidx.preference.R$styleable: int AppCompatTheme_colorControlActivated +com.tencent.bugly.proguard.y$a: boolean c(com.tencent.bugly.proguard.y$a) +androidx.lifecycle.ClassesInfoCache$CallbackInfo: ClassesInfoCache$CallbackInfo(java.util.Map) +androidx.hilt.work.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setPubTime(java.lang.String) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_selectable +android.didikee.donate.R$attr: int colorControlHighlight +androidx.work.R$id: int accessibility_custom_action_31 +okhttp3.internal.http2.Http2Writer: void synStream(boolean,int,int,java.util.List) +james.adaptiveicon.R$style: int Widget_AppCompat_Button_Small +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_framePosition +retrofit2.ParameterHandler$FieldMap: retrofit2.Converter valueConverter +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_android_windowIsFloating +com.tencent.bugly.crashreport.common.strategy.a: void a(com.tencent.bugly.crashreport.common.strategy.StrategyBean,boolean) +com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Badge +androidx.preference.R$styleable: int AppCompatTheme_borderlessButtonStyle +wangdaye.com.geometricweather.R$color: int design_dark_default_color_error +androidx.swiperefreshlayout.R$dimen +com.google.android.material.R$style: int Theme_AppCompat_Light_Dialog_Alert +com.turingtechnologies.materialscrollbar.R$attr: int chipEndPadding +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSearchResultSubtitle +androidx.viewpager2.R$drawable: int notification_bg_low +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +wangdaye.com.geometricweather.R$styleable: int Chip_android_textSize +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindSpeed +android.support.v4.os.IResultReceiver$Default: android.os.IBinder asBinder() +wangdaye.com.geometricweather.common.basic.GeoActivity +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_saturation +com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_end +wangdaye.com.geometricweather.R$attr: int autoSizePresetSizes +com.tencent.bugly.crashreport.CrashReport: java.lang.String getBuglyVersion(android.content.Context) +wangdaye.com.geometricweather.R$id: int treeIcon +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: DrawerLayout(android.content.Context) +androidx.viewpager2.widget.ViewPager2: void setOffscreenPageLimit(int) +androidx.viewpager.widget.ViewPager: ViewPager(android.content.Context) +james.adaptiveicon.R$attr: int initialActivityCount +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWindLevel() +androidx.customview.R$styleable: int[] FontFamily +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.internal.util.AtomicThrowable error +james.adaptiveicon.R$style: int Theme_AppCompat_NoActionBar +androidx.hilt.lifecycle.R$id: int action_container +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarSize +androidx.viewpager.R$id: int tag_unhandled_key_listeners +retrofit2.HttpException: HttpException(retrofit2.Response) +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_switchTextOff +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void cancelAllBut(int) +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void replay(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) +androidx.appcompat.R$dimen: int abc_dialog_corner_radius_material +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteByKey +androidx.preference.R$attr: int srcCompat +androidx.constraintlayout.widget.R$id: int right +wangdaye.com.geometricweather.R$id: int bidirectional +wangdaye.com.geometricweather.R$drawable: int notif_temp_17 +okhttp3.internal.platform.JdkWithJettyBootPlatform: okhttp3.internal.platform.Platform buildIfSupported() +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getContent() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List timelaps +androidx.lifecycle.HasDefaultViewModelProviderFactory: androidx.lifecycle.ViewModelProvider$Factory getDefaultViewModelProviderFactory() +com.turingtechnologies.materialscrollbar.R$attr: int counterMaxLength +okhttp3.internal.http2.Http2Connection: void pushDataLater(int,okio.BufferedSource,int,boolean) +okhttp3.internal.platform.AndroidPlatform$CloseGuard: AndroidPlatform$CloseGuard(java.lang.reflect.Method,java.lang.reflect.Method,java.lang.reflect.Method) +james.adaptiveicon.R$style: int Theme_AppCompat +androidx.hilt.work.R$bool: int enable_system_alarm_service_default +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_transitionPathRotate +com.google.android.material.R$styleable: int[] KeyTimeCycle +com.google.android.material.R$styleable: int[] RecyclerView +com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentListStyle +com.google.android.material.R$attr: int trackHeight +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTag +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.viewpager2.R$attr: int fontProviderQuery +androidx.work.impl.workers.DiagnosticsWorker: DiagnosticsWorker(android.content.Context,androidx.work.WorkerParameters) +androidx.recyclerview.R$drawable: int notification_bg_normal_pressed +com.turingtechnologies.materialscrollbar.R$attr: int buttonTintMode +androidx.activity.R$dimen: int notification_big_circle_margin +com.google.android.material.R$dimen: int material_font_1_3_box_collapsed_padding_top +com.google.android.material.R$attr: int chipSpacing +okhttp3.internal.ws.WebSocketReader: boolean isFinalFrame +androidx.coordinatorlayout.R$id: int right_side +james.adaptiveicon.R$id: int line3 +com.google.android.material.R$color: int switch_thumb_disabled_material_dark +androidx.appcompat.R$style: int Theme_AppCompat_Dialog_Alert +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_DarkActionBar +wangdaye.com.geometricweather.R$styleable: int Preference_android_shouldDisableView +androidx.lifecycle.ComputableLiveData: ComputableLiveData(java.util.concurrent.Executor) +androidx.legacy.coreutils.R$dimen: int notification_action_text_size +com.xw.repo.bubbleseekbar.R$dimen: int abc_config_prefDialogWidth +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_percent +com.jaredrummler.android.colorpicker.R$layout: int abc_select_dialog_material +com.jaredrummler.android.colorpicker.R$attr: int actionModeCutDrawable +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +com.turingtechnologies.materialscrollbar.R$attr: int itemHorizontalPadding +androidx.hilt.work.R$bool: int enable_system_job_service_default +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: CustomTileListenerService$ICustomTileListenerWrapper(cyanogenmod.app.CustomTileListenerService,cyanogenmod.app.CustomTileListenerService$1) +androidx.appcompat.R$attr: int listPreferredItemPaddingEnd +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: int status +okhttp3.internal.http2.Settings: int set +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_srcCompat +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getPressureVoice(android.content.Context,float) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Small +androidx.lifecycle.livedata.R +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +com.google.android.material.R$attr: int cornerFamilyTopLeft +androidx.core.R$id: int accessibility_custom_action_12 +wangdaye.com.geometricweather.R$id: int month_navigation_bar +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: long serialVersionUID +com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat +james.adaptiveicon.R$attr: int thumbTint androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.Lifecycle mLifecycle -com.google.android.material.R$styleable: int TextInputLayout_counterOverflowTextColor -wangdaye.com.geometricweather.common.basic.models.weather.Weather: Weather(wangdaye.com.geometricweather.common.basic.models.weather.Base,wangdaye.com.geometricweather.common.basic.models.weather.Current,wangdaye.com.geometricweather.common.basic.models.weather.History,java.util.List,java.util.List,java.util.List,java.util.List) -com.turingtechnologies.materialscrollbar.R$attr: int chipIconEnabled -com.turingtechnologies.materialscrollbar.R$attr: int actionMenuTextAppearance -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_title -com.tencent.bugly.proguard.c: java.lang.Object b(java.lang.String,java.lang.Object) -james.adaptiveicon.R$attr: int actionBarTheme -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.util.concurrent.TimeUnit unit -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: int limit -androidx.lifecycle.extensions.R$dimen: R$dimen() -androidx.constraintlayout.widget.R$styleable: int Layout_barrierDirection -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setForecast(java.util.List) -cyanogenmod.profiles.RingModeSettings: java.lang.String mValue -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getDesiredHeight() -cyanogenmod.power.IPerformanceManager: int getNumberOfProfiles() -androidx.vectordrawable.R$dimen: int notification_content_margin_start -org.greenrobot.greendao.database.DatabaseOpenHelper: void onOpen(org.greenrobot.greendao.database.Database) -retrofit2.HttpException: java.lang.String message -wangdaye.com.geometricweather.R$id: int scroll -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircleRadius -com.jaredrummler.android.colorpicker.R$styleable: int[] DrawerArrowToggle -androidx.preference.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -wangdaye.com.geometricweather.R$drawable: int flag_sr -wangdaye.com.geometricweather.R$string: int abc_prepend_shortcut_label -com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSearchResultTitle -wangdaye.com.geometricweather.R$anim: int popup_show_bottom_left -cyanogenmod.providers.CMSettings$Global: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayHorizontalProvider -wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_vertical_setting -com.xw.repo.bubbleseekbar.R$attr: int actionButtonStyle -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endX -okio.GzipSource -com.tencent.bugly.crashreport.biz.b -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotationX -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService -androidx.work.R$attr: int fontProviderFetchStrategy -retrofit2.RequestFactory$Builder: java.util.Set parsePathParameters(java.lang.String) -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onSuccess(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_indicator_material -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.Observer downstream -com.google.android.material.button.MaterialButton: void setOnPressedChangeListenerInternal(com.google.android.material.button.MaterialButton$OnPressedChangeListener) -com.turingtechnologies.materialscrollbar.R$color: int button_material_dark -com.tencent.bugly.proguard.z: void b(android.os.Parcel,java.util.Map) -androidx.fragment.R$id: int chronometer -androidx.appcompat.resources.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_summaryOn -androidx.coordinatorlayout.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List dailyEntityList -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_color -retrofit2.Platform: Platform(boolean) -com.xw.repo.bubbleseekbar.R$id: int action_menu_divider -com.tencent.bugly.proguard.p: void a(java.util.List) -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onComplete() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String getUnit() -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onNegativeCross +com.google.android.material.R$attr: int spinnerStyle +com.jaredrummler.android.colorpicker.R$attr: int entryValues +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getMinutelyForecast() +com.xw.repo.bubbleseekbar.R$attr: int actionBarStyle +android.didikee.donate.R$color: int button_material_dark +wangdaye.com.geometricweather.R$id: int bottomRecyclerView +androidx.constraintlayout.widget.R$color: int abc_tint_btn_checkable +com.amap.api.location.AMapLocationListener: void onLocationChanged(com.amap.api.location.AMapLocation) +androidx.coordinatorlayout.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.R$id: int item_about_translator +com.jaredrummler.android.colorpicker.R$styleable: int[] SeekBarPreference +androidx.hilt.R$drawable: int notification_bg_normal +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeTextType +com.turingtechnologies.materialscrollbar.R$attr: int tooltipForegroundColor +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +okhttp3.internal.http2.Http2Connection: java.lang.String hostname +androidx.dynamicanimation.R$id: int right_side +okhttp3.internal.ws.WebSocketWriter$FrameSink: boolean isFirstFrame +wangdaye.com.geometricweather.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$id: int widget_clock_day_lunar +com.google.android.material.button.MaterialButton: void setBackgroundResource(int) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +okhttp3.internal.http.HttpDate: java.lang.String format(java.util.Date) +wangdaye.com.geometricweather.R$styleable: int Motion_motionPathRotate +wangdaye.com.geometricweather.R$styleable: int Slider_thumbElevation +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_section_text +wangdaye.com.geometricweather.R$attr: int colorBackgroundFloating +com.google.android.material.R$layout: int abc_list_menu_item_layout +com.jaredrummler.android.colorpicker.R$layout: int abc_screen_simple_overlay_action_mode +wangdaye.com.geometricweather.R$drawable: int abc_ic_arrow_drop_right_black_24dp +com.google.gson.stream.JsonReader: int PEEKED_EOF +io.reactivex.internal.observers.BlockingObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginStart +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf +android.didikee.donate.R$styleable: R$styleable() +androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context) +com.google.android.material.slider.BaseSlider: void setValueTo(float) +androidx.preference.R$attr: int elevation +cyanogenmod.weatherservice.ServiceRequestResult: android.os.Parcelable$Creator CREATOR +androidx.customview.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date moonsetTime +wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Dialog +com.google.android.material.R$dimen: int abc_list_item_height_large_material +io.reactivex.Observable: java.lang.Object blockingFirst() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.concurrent.atomic.AtomicInteger active +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver) +wangdaye.com.geometricweather.R$dimen: int abc_seekbar_track_background_height_material +android.didikee.donate.R$id: int ifRoom +james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMark +wangdaye.com.geometricweather.R$style: int PreferenceFragment_Material +cyanogenmod.providers.ThemesContract: java.lang.String AUTHORITY +wangdaye.com.geometricweather.R$dimen: int notification_small_icon_size_as_large +androidx.vectordrawable.animated.R$id: int icon +james.adaptiveicon.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: ObservableRetryBiPredicate$RetryBiObserver(io.reactivex.Observer,io.reactivex.functions.BiPredicate,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) +android.didikee.donate.R$attr: int actionModeWebSearchDrawable +io.reactivex.Observable: java.lang.Object blockingFirst(java.lang.Object) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: int rain +com.jaredrummler.android.colorpicker.R$styleable: int View_theme +androidx.vectordrawable.R$drawable: int notification_template_icon_low_bg +androidx.hilt.R$styleable: int GradientColor_android_endColor +androidx.fragment.app.FragmentTabHost$SavedState: android.os.Parcelable$Creator CREATOR +androidx.coordinatorlayout.R$id: int accessibility_custom_action_22 +com.turingtechnologies.materialscrollbar.R$id: int tabMode +wangdaye.com.geometricweather.R$drawable: int abc_cab_background_top_material +androidx.constraintlayout.widget.R$attr: int tint +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: long dt +androidx.preference.R$attr: int navigationMode +retrofit2.OkHttpCall: okhttp3.Call$Factory callFactory +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitationProbability +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver[] observers +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +androidx.preference.R$dimen: int abc_cascading_menus_min_smallest_width +com.turingtechnologies.materialscrollbar.R$color: int background_floating_material_light +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable +io.reactivex.subjects.PublishSubject$PublishDisposable: boolean isDisposed() +wangdaye.com.geometricweather.R$array: int distance_unit_voices +androidx.preference.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +androidx.constraintlayout.widget.R$id: int reverseSawtooth +com.tencent.bugly.proguard.af: byte[] b(byte[]) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_UnelevatedButton +com.jaredrummler.android.colorpicker.R$id: int textSpacerNoTitle +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float pm10 +com.amap.api.fence.GeoFence: int ERROR_CODE_EXISTS +com.google.android.material.R$color: int material_slider_active_tick_marks_color +com.google.android.material.R$styleable: int ConstraintSet_flow_maxElementsWrap +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_textLocale +androidx.constraintlayout.widget.R$attr: int goIcon +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: ILiveLockScreenManager$Stub$Proxy(android.os.IBinder) +androidx.preference.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +androidx.viewpager2.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.R$layout: int widget_clock_day_symmetry +com.amap.api.location.AMapLocation: boolean o +com.jaredrummler.android.colorpicker.R$style: int Base_V23_Theme_AppCompat_Light +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_borderless_material +wangdaye.com.geometricweather.R$attr: int tooltipForegroundColor +com.bumptech.glide.R$id: int none +okhttp3.Authenticator$1: okhttp3.Request authenticate(okhttp3.Route,okhttp3.Response) +com.turingtechnologies.materialscrollbar.R$id: int text +android.didikee.donate.R$style: int Widget_AppCompat_ListView +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginBottom +com.jaredrummler.android.colorpicker.R$style +com.tencent.bugly.proguard.q: java.util.List d +com.google.android.material.R$color: int mtrl_fab_bg_color_selector +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property No2 +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void subscribe() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: void setBrands(java.util.List) +james.adaptiveicon.R$styleable: int MenuGroup_android_menuCategory +wangdaye.com.geometricweather.R$attr: int actionModePopupWindowStyle +com.google.android.gms.common.api.AvailabilityException: com.google.android.gms.common.ConnectionResult getConnectionResult(com.google.android.gms.common.api.HasApiKey) +com.google.android.material.timepicker.ClockHandView: void addOnRotateListener(com.google.android.material.timepicker.ClockHandView$OnRotateListener) +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceButton +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isIsShow() +retrofit2.HttpServiceMethod$CallAdapted +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitationDuration +androidx.preference.R$dimen: int disabled_alpha_material_dark +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getOpPkg() +retrofit2.Call: boolean isCanceled() +okhttp3.internal.cache.CacheStrategy$Factory +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setOnceLocationLatest(boolean) +android.didikee.donate.R$style: int Theme_AppCompat_DayNight +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_track_mtrl_alpha +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogTitle +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage SOURCE +com.jaredrummler.android.colorpicker.ColorPickerView: int getSliderTrackerColor() +com.google.android.material.R$styleable: int LinearLayoutCompat_dividerPadding +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf +androidx.cardview.widget.CardView: boolean getUseCompatPadding() +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_tileMode +com.google.android.gms.location.ActivityTransition: android.os.Parcelable$Creator CREATOR +androidx.preference.R$style: int Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.R$id: int widget_week_temp_5 +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult +james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +james.adaptiveicon.R$style: int Base_AlertDialog_AppCompat +androidx.constraintlayout.widget.R$id: int activity_chooser_view_content +com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean n +androidx.loader.R$dimen: int compat_button_inset_vertical_material +androidx.preference.R$styleable: int AppCompatTheme_dividerVertical +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu +com.google.android.material.R$styleable: int Constraint_layout_constraintTag +com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler: com.tencent.bugly.crashreport.crash.CrashDetailBean packageCrashDatas(java.lang.String,java.lang.String,long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,byte[],java.util.Map,boolean,boolean) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void disposeInner() +com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_Tooltip +android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$menu +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +cyanogenmod.app.Profile: int getDozeMode() +com.google.android.material.R$dimen: int abc_dialog_padding_material +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_bottom +androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStoreOwner) +androidx.constraintlayout.widget.R$styleable: int[] View +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_framePosition retrofit2.RequestFactory$Builder: RequestFactory$Builder(retrofit2.Retrofit,java.lang.reflect.Method) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String EnglishName -cyanogenmod.hardware.CMHardwareManager: int getVibratorIntensity() -androidx.appcompat.R$style: int Widget_AppCompat_SeekBar -okhttp3.Connection: okhttp3.Handshake handshake() -org.greenrobot.greendao.DaoException: DaoException(java.lang.Throwable) -androidx.fragment.R$dimen: int notification_media_narrow_margin -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -cyanogenmod.app.CustomTile$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: java.lang.String Unit -androidx.viewpager.R$dimen: int compat_control_corner_material -com.tencent.bugly.proguard.y: com.tencent.bugly.proguard.y$a g -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_gapBetweenBars -wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconVisible -androidx.loader.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.R$id: int unchecked -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_checkboxStyle -androidx.constraintlayout.widget.R$attr: int autoSizePresetSizes -com.google.android.material.R$styleable: int CollapsingToolbarLayout_title -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -wangdaye.com.geometricweather.R$array: int duration_unit_values -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderFetchStrategy -io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: io.reactivex.functions.BiFunction combiner -cyanogenmod.externalviews.ExternalView: void access$000(cyanogenmod.externalviews.ExternalView) -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_CompactMenu -androidx.vectordrawable.R$attr: int fontWeight -androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontWeight -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_clear -wangdaye.com.geometricweather.R$drawable: int notif_temp_5 -com.google.android.material.R$attr: int itemHorizontalTranslationEnabled -com.google.android.material.R$color: int ripple_material_dark -androidx.fragment.R$attr: int ttcIndex -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: long serialVersionUID -wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status SUCCESS -wangdaye.com.geometricweather.R$attr: int colorAccent -okio.Buffer: okio.Buffer writeLong(long) -com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.Number) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX temperature -okhttp3.internal.http.HttpCodec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) -cyanogenmod.hardware.CMHardwareManager: int getVibratorMinIntensity() -cyanogenmod.providers.CMSettings$Global: float getFloat(android.content.ContentResolver,java.lang.String) -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: android.os.IBinder asBinder() -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object get(int) -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_saturation -cyanogenmod.app.Profile: int mNameResId -wangdaye.com.geometricweather.search.SearchActivity -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Temperature -androidx.constraintlayout.widget.R$color: int primary_text_disabled_material_light -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String getLanguageName(android.content.Context) -com.google.android.material.R$id: int TOP_START -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean cancelled -com.turingtechnologies.materialscrollbar.R$attr: int actionProviderClass -com.xw.repo.bubbleseekbar.R$dimen: R$dimen() -androidx.lifecycle.ReportFragment: androidx.lifecycle.ReportFragment$ActivityInitializationListener mProcessListener -androidx.appcompat.R$color: int notification_icon_bg_color -androidx.appcompat.R$styleable: int[] ActionMode -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) -com.google.android.material.R$dimen: int design_bottom_navigation_icon_size -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -wangdaye.com.geometricweather.R$drawable: int design_snackbar_background -cyanogenmod.profiles.ConnectionSettings$BooleanState: int STATE_ENABLED -com.jaredrummler.android.colorpicker.R$drawable: int ic_arrow_down_24dp -com.tencent.bugly.crashreport.crash.jni.a: com.tencent.bugly.crashreport.crash.CrashDetailBean packageCrashDatas(java.lang.String,java.lang.String,long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,byte[],java.util.Map,boolean,boolean) -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_xml -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -io.reactivex.exceptions.CompositeException: java.lang.Throwable getRootCause(java.lang.Throwable) -okhttp3.internal.connection.RealConnection: okhttp3.Protocol protocol -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide +wangdaye.com.geometricweather.R$styleable: int[] MaterialCheckBox +com.bumptech.glide.R$color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX() +androidx.preference.R$styleable: int TextAppearance_textAllCaps +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getDisplayGammaCalibration(int) +androidx.activity.R$dimen: int notification_large_icon_height +androidx.activity.R$attr: int font +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_CheckBox +com.turingtechnologies.materialscrollbar.R$dimen: int hint_pressed_alpha_material_light +okhttp3.internal.http2.Http2Connection$Listener$1: Http2Connection$Listener$1() +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$styleable +wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_unselected +okhttp3.internal.http2.Header: boolean equals(java.lang.Object) +retrofit2.HttpServiceMethod$SuspendForResponse: HttpServiceMethod$SuspendForResponse(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter) +retrofit2.Utils$GenericArrayTypeImpl: java.lang.reflect.Type componentType +com.tencent.bugly.crashreport.common.info.AppInfo +io.reactivex.internal.observers.DeferredScalarDisposable: void error(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +cyanogenmod.app.IPartnerInterface: boolean setZenModeWithDuration(int,long) +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_layout +james.adaptiveicon.R$styleable: int ActionBar_progressBarStyle +wangdaye.com.geometricweather.R$id: int widget_day_icon +androidx.hilt.R$layout: R$layout() +com.google.android.material.R$styleable: int StateListDrawable_android_exitFadeDuration +androidx.constraintlayout.widget.R$attr: int triggerReceiver +okio.SegmentedByteString: byte getByte(int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarDivider +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Small +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_Solid +androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnCreate() +wangdaye.com.geometricweather.R$style: int notification_content_text +androidx.appcompat.R$attr: int actionMenuTextColor +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.tencent.bugly.crashreport.biz.UserInfoBean: android.os.Parcelable$Creator CREATOR +android.didikee.donate.R$styleable: int MenuView_android_itemTextAppearance +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display1 +com.jaredrummler.android.colorpicker.R$attr: int tickMark +androidx.appcompat.R$attr: int autoSizeMinTextSize +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +androidx.drawerlayout.R$dimen: int notification_large_icon_width +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.DaoConfig config +com.jaredrummler.android.colorpicker.R$style: int Preference_Category +com.tencent.bugly.crashreport.common.info.a: long t +com.turingtechnologies.materialscrollbar.R$dimen: int abc_disabled_alpha_material_light +androidx.appcompat.widget.FitWindowsViewGroup: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) +androidx.preference.R$color: int dim_foreground_material_light +androidx.core.R$styleable: int[] FontFamily +com.jaredrummler.android.colorpicker.R$id: int search_badge +com.google.android.material.textfield.TextInputLayout: int getHelperTextCurrentTextColor() +androidx.viewpager2.R$id: int action_container +okhttp3.RequestBody$3: long contentLength() +cyanogenmod.externalviews.ExternalView$7: cyanogenmod.externalviews.ExternalView this$0 +com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_small_material +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.database.Database db +android.didikee.donate.R$attr: int textColorAlertDialogListItem +androidx.appcompat.R$drawable: int abc_textfield_search_default_mtrl_alpha +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void startFirstTimeout(io.reactivex.ObservableSource) +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeTextType +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onComplete() +com.github.rahatarmanahmed.cpv.CircularProgressView$5 +androidx.preference.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +androidx.constraintlayout.widget.R$styleable: int[] StateListDrawableItem +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetOnClickPendingIntent(android.app.PendingIntent) +james.adaptiveicon.R$drawable: int abc_list_pressed_holo_light +androidx.customview.R$styleable: int FontFamily_fontProviderFetchStrategy +com.google.android.material.R$style: int AlertDialog_AppCompat_Light +okhttp3.EventListener: void secureConnectEnd(okhttp3.Call,okhttp3.Handshake) +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTextAppearance(int) +wangdaye.com.geometricweather.R$styleable: int RoundCornerTransition_radius_to +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$integer: int cpv_default_progress +com.google.android.material.R$string: int mtrl_picker_toggle_to_calendar_input_mode +cyanogenmod.hardware.DisplayMode: int describeContents() +cyanogenmod.weather.RequestInfo: android.location.Location mLocation +okhttp3.internal.http2.Http2Reader$Handler: void headers(boolean,int,int,java.util.List) +io.reactivex.Observable: io.reactivex.Observable skip(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.jaredrummler.android.colorpicker.R$attr: int cpv_colorPresets +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Toolbar +com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchCompat +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onNext(java.lang.Object) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: com.google.android.material.bottomnavigation.BottomNavigationItemView getNewItem() +androidx.lifecycle.extensions.R$id: int time +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitationProbability(java.lang.Float) +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.R$attr: int tabIndicatorGravity +cyanogenmod.app.IPartnerInterface$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: android.os.IBinder asBinder() +androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_Alert +com.tencent.bugly.crashreport.crash.b: java.util.List a() +androidx.constraintlayout.utils.widget.ImageFilterView: float getBrightness() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.google.android.material.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +com.google.android.material.R$dimen: int abc_dialog_fixed_height_major +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setRotation(float) +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_NoActionBar +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: int count +androidx.preference.SwitchPreference: SwitchPreference(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$styleable: int TextAppearance_android_textSize wangdaye.com.geometricweather.R$layout: int image_frame -okhttp3.MultipartBody: okhttp3.MediaType contentType -com.tencent.bugly.proguard.d: void b(java.lang.String) -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: android.os.IBinder mRemote -androidx.coordinatorlayout.R$dimen: int notification_large_icon_height -cyanogenmod.app.PartnerInterface: boolean setZenMode(int) -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ -com.bumptech.glide.R$layout: int notification_template_part_time -com.amap.api.location.AMapLocation: java.lang.String getCountry() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_MODE_VALIDATOR -androidx.appcompat.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: AccuCurrentResult$Pressure$Metric() -androidx.preference.R$attr: int submitBackground -androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_stroke_size -androidx.appcompat.R$attr: int contentInsetLeft -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Icon -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String uvDescription -com.amap.api.fence.DistrictItem: void setAdcode(java.lang.String) -wangdaye.com.geometricweather.R$color: int colorAccent_light -com.turingtechnologies.materialscrollbar.R$id: int right -com.turingtechnologies.materialscrollbar.R$color: int background_floating_material_dark -com.google.android.material.chip.Chip: float getCloseIconStartPadding() -androidx.activity.R$styleable: int GradientColor_android_centerX -cyanogenmod.app.CustomTileListenerService: void onListenerConnected() -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object) -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicBoolean stopWindows -androidx.appcompat.resources.R$integer -com.jaredrummler.android.colorpicker.R$attr: int orderingFromXml -androidx.appcompat.R$dimen: int abc_disabled_alpha_material_light -okio.Buffer: int selectPrefix(okio.Options,boolean) -okhttp3.internal.http.RealInterceptorChain: okhttp3.Request request -androidx.appcompat.resources.R$styleable: int[] StateListDrawable -androidx.constraintlayout.widget.R$attr: int actionBarTheme -com.amap.api.fence.GeoFence: com.amap.api.location.AMapLocation getCurrentLocation() -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$attr: int listLayout -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_showTitle -wangdaye.com.geometricweather.R$drawable: int ic_alert -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type upperBound -retrofit2.SkipCallbackExecutorImpl: java.lang.Class annotationType() -com.google.android.material.R$id: int ghost_view_holder -androidx.activity.R$id: int accessibility_custom_action_5 -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onStop -android.didikee.donate.R$integer -james.adaptiveicon.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextColor -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_base -okhttp3.Dns$1: Dns$1() -com.xw.repo.bubbleseekbar.R$attr: int subtitleTextAppearance -com.google.android.material.R$attr: int chipMinHeight -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_SECURE -androidx.hilt.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$id: int aligned -cyanogenmod.hardware.CMHardwareManager: int[] getDisplayGammaCalibrationArray(int) -androidx.hilt.R$styleable: int FontFamily_fontProviderFetchStrategy -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_HelperText -com.google.android.material.R$styleable: int Layout_android_orientation -okhttp3.internal.http2.Http2Connection: void start() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -wangdaye.com.geometricweather.R$attr: int buttonStyle -james.adaptiveicon.R$attr: int trackTint -androidx.constraintlayout.widget.R$attr: int layout_goneMarginBottom -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_checkableBehavior -androidx.recyclerview.R$dimen: int compat_button_inset_horizontal_material -androidx.hilt.work.R$drawable: int notification_action_background -okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String servedDateString -cyanogenmod.media.MediaRecorder: java.lang.String ACTION_HOTWORD_INPUT_CHANGED -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteByKey -wangdaye.com.geometricweather.R$attr: int suffixText -wangdaye.com.geometricweather.R$drawable: int notif_temp_140 -retrofit2.ParameterHandler$Body: ParameterHandler$Body(java.lang.reflect.Method,int,retrofit2.Converter) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_search_view_preferred_height -wangdaye.com.geometricweather.R$drawable: int shortcuts_wind_foreground -wangdaye.com.geometricweather.R$string: int feedback_location_failed -okhttp3.internal.http1.Http1Codec$ChunkedSource: boolean hasMoreChunks -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setDaytimeTemperature(int) -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DarkActionBar -cyanogenmod.weather.CMWeatherManager$2 -okhttp3.internal.cache.CacheInterceptor$1: okhttp3.internal.cache.CacheRequest val$cacheRequest -androidx.coordinatorlayout.R$id: int accessibility_custom_action_8 -androidx.core.R$id: int accessibility_custom_action_18 -androidx.drawerlayout.R$layout: int notification_template_part_chronometer -androidx.constraintlayout.utils.widget.MotionTelltales: void setText(java.lang.CharSequence) -android.didikee.donate.R$styleable: int ActionBar_backgroundSplit -wangdaye.com.geometricweather.R$color: int background_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStrokeWidth -cyanogenmod.externalviews.KeyguardExternalView: android.content.Context access$600(cyanogenmod.externalviews.KeyguardExternalView) -androidx.activity.R$id: int time -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onError(java.lang.Throwable) -okhttp3.TlsVersion -com.tencent.bugly.crashreport.common.strategy.a: java.lang.String h -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_LED_ON_VALIDATOR -com.jaredrummler.android.colorpicker.R$integer: int abc_config_activityDefaultDur -com.github.rahatarmanahmed.cpv.CircularProgressView: void addListener(com.github.rahatarmanahmed.cpv.CircularProgressViewListener) +androidx.transition.R$id: int time +com.google.android.material.R$styleable: int ActionBar_progressBarStyle +com.google.android.material.R$dimen: int tooltip_margin +okhttp3.internal.http1.Http1Codec$FixedLengthSource: long bytesRemaining +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: ExternalViewProviderService$Provider$ProviderImpl(cyanogenmod.externalviews.ExternalViewProviderService$Provider,cyanogenmod.externalviews.ExternalViewProviderService$Provider) +okhttp3.internal.http2.Http2Writer: int maxFrameSize +com.google.android.material.R$styleable: int ConstraintSet_android_minWidth +okhttp3.internal.cache2.Relay: long upstreamPos +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_unregisterListener +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void next(java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_65 +wangdaye.com.geometricweather.R$attr +com.xw.repo.bubbleseekbar.R$attr: int titleMargins +androidx.constraintlayout.widget.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +androidx.appcompat.R$styleable: int[] FontFamilyFont +okhttp3.Protocol: Protocol(java.lang.String,int,java.lang.String) +com.google.android.material.R$attr: int paddingRightSystemWindowInsets +james.adaptiveicon.R$attr: int searchHintIcon +androidx.dynamicanimation.R$drawable: int notification_action_background +com.google.android.gms.common.internal.GetServiceRequest +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Body1 +android.didikee.donate.R$attr: int switchTextAppearance +com.amap.api.location.AMapLocation: java.lang.String k +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetRight +org.greenrobot.greendao.AbstractDao: long insertOrReplace(java.lang.Object) +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String a() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation: java.lang.Float cumul24H +androidx.preference.R$drawable: int abc_item_background_holo_light +com.jaredrummler.android.colorpicker.R$attr: int layout_anchorGravity +androidx.work.R$layout: int notification_template_part_time +com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Light +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_OFF +wangdaye.com.geometricweather.R$string: int minutely_overview +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$attr: int multiChoiceItemLayout +james.adaptiveicon.R$layout: int notification_template_part_time +com.amap.api.fence.GeoFenceClient: void resumeGeoFence() +okhttp3.internal.tls.BasicCertificateChainCleaner: int hashCode() +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_addNotificationGroup +androidx.loader.R$integer +com.google.android.material.R$id: int parent +androidx.hilt.lifecycle.R$anim: int fragment_fade_enter +com.turingtechnologies.materialscrollbar.R$attr: int textInputStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit[] values() +androidx.cardview.R$styleable: int CardView_cardBackgroundColor +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.customview.R$dimen: int notification_small_icon_size_as_large +wangdaye.com.geometricweather.R$string: int key_card_alpha +androidx.appcompat.R$attr: int actionButtonStyle +okhttp3.RealCall: okhttp3.internal.http.RetryAndFollowUpInterceptor retryAndFollowUpInterceptor +com.google.android.material.button.MaterialButtonToggleGroup: void setGeneratedIdIfNeeded(com.google.android.material.button.MaterialButton) +com.tencent.bugly.proguard.n: android.content.SharedPreferences f +okio.RealBufferedSource: java.io.InputStream inputStream() +com.turingtechnologies.materialscrollbar.R$attr: int fontWeight +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Switch +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +androidx.appcompat.R$dimen: int abc_dialog_fixed_width_minor +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: long serialVersionUID +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabBar +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getRippleColor() +james.adaptiveicon.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +androidx.preference.R$dimen: int tooltip_corner_radius +wangdaye.com.geometricweather.R$color: int bright_foreground_inverse_material_dark +androidx.preference.R$styleable: int PreferenceTheme_switchPreferenceStyle +okhttp3.Request$Builder: Request$Builder(okhttp3.Request) +cyanogenmod.app.PartnerInterface: void setAirplaneModeEnabled(boolean) +androidx.preference.R$dimen: int abc_list_item_padding_horizontal_material +androidx.coordinatorlayout.R$drawable: int notification_action_background +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: java.lang.Long poll() +io.reactivex.internal.util.VolatileSizeArrayList: boolean addAll(int,java.util.Collection) +androidx.customview.R$styleable: int FontFamilyFont_android_ttcIndex +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: java.lang.String DESCRIPTOR +com.google.android.material.chip.Chip: void setCloseIconEndPaddingResource(int) +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType valueOf(java.lang.String) +androidx.appcompat.R$dimen: int abc_dialog_fixed_width_major +wangdaye.com.geometricweather.R$color: int weather_source_cn +wangdaye.com.geometricweather.R$attr: int boxStrokeColor +androidx.lifecycle.CompositeGeneratedAdaptersObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +cyanogenmod.app.suggest.AppSuggestManager: java.util.List getSuggestions(android.content.Intent) +com.google.android.material.R$attr: int backgroundInsetTop +okhttp3.logging.package-info +androidx.activity.R$dimen: int compat_notification_large_icon_max_height +androidx.activity.R$dimen: int notification_subtext_size +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe() +wangdaye.com.geometricweather.R$drawable: int design_fab_background +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int getSubTextColorResId() +com.google.android.material.R$styleable: int ViewBackgroundHelper_backgroundTint +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_alphabeticShortcut +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String street +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_padding_horizontal +androidx.preference.R$styleable: int MenuView_android_windowAnimationStyle +androidx.transition.R$dimen: int notification_top_pad_large_text +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$attr: int attributeName +com.google.android.material.R$attr: int buttonBarNeutralButtonStyle +cyanogenmod.app.BaseLiveLockManagerService$1: cyanogenmod.app.BaseLiveLockManagerService this$0 +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintEnd_toStartOf +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_titleEnabled +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SUNNY +com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyleIndicator +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display4 +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_icon_vertical_padding_material +androidx.appcompat.R$layout: int abc_screen_content_include +android.support.v4.os.IResultReceiver: void send(int,android.os.Bundle) +com.turingtechnologies.materialscrollbar.R$layout +wangdaye.com.geometricweather.R$attr: int track +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String cityId +io.reactivex.Observable: io.reactivex.Observable retry() +com.tencent.bugly.proguard.ar: ar() +com.google.android.material.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_light +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +com.tencent.bugly.crashreport.crash.CrashDetailBean: void writeToParcel(android.os.Parcel,int) +androidx.preference.R$attr: int homeLayout +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$styleable: int TextInputEditText_textInputLayoutFocusedRectEnabled +wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_subtitle +com.tencent.bugly.CrashModule: int c +com.jaredrummler.android.colorpicker.R$attr: int toolbarStyle +retrofit2.converter.gson.GsonConverterFactory: retrofit2.converter.gson.GsonConverterFactory create(com.google.gson.Gson) +com.turingtechnologies.materialscrollbar.R$layout: int notification_template_part_chronometer +okhttp3.internal.http.RealInterceptorChain: okhttp3.Response proceed(okhttp3.Request,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http.HttpCodec,okhttp3.internal.connection.RealConnection) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9 +com.xw.repo.bubbleseekbar.R$styleable: int[] DrawerArrowToggle +androidx.legacy.coreutils.R$attr: int fontWeight +cyanogenmod.power.IPerformanceManager$Stub: IPerformanceManager$Stub() +cyanogenmod.app.ThemeVersion +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeColor(int) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_orderInCategory +retrofit2.Platform$Android$MainThreadExecutor +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_baselineAligned +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_5 +androidx.constraintlayout.widget.R$color: int material_deep_teal_200 +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_toolbar_default_height +com.bumptech.glide.R$drawable: int notification_template_icon_low_bg +com.google.android.material.R$styleable: int KeyPosition_sizePercent +com.google.android.material.R$styleable: int Constraint_android_id +androidx.activity.R$styleable: int[] GradientColor +com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindowBackgroundState_state_above_anchor +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.functions.Function combiner +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItem +android.didikee.donate.R$styleable: int ActionBar_navigationMode +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCutDrawable +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float no2 +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onNext(java.lang.Object) +androidx.preference.R$color: int abc_btn_colored_borderless_text_material +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_year +com.google.android.material.R$attr: int fontProviderFetchStrategy +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.db.entities.AlertEntityDao: wangdaye.com.geometricweather.db.entities.AlertEntity readEntity(android.database.Cursor,int) +android.support.v4.app.RemoteActionCompatParcelizer: void write(androidx.core.app.RemoteActionCompat,androidx.versionedparcelable.VersionedParcel) +com.loc.k: java.lang.String c() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer snowHazard6h +wangdaye.com.geometricweather.R$styleable: int Constraint_android_minHeight +com.github.rahatarmanahmed.cpv.CircularProgressView$6 +wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +androidx.vectordrawable.R$dimen: int notification_action_text_size +androidx.appcompat.widget.ViewStubCompat: void setInflatedId(int) +com.xw.repo.bubbleseekbar.R$id: int icon_group +wangdaye.com.geometricweather.R$color: int material_on_primary_emphasis_medium +androidx.appcompat.R$style: int Base_Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle valueOf(java.lang.String) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.lang.Throwable error +com.jaredrummler.android.colorpicker.R$style: int Preference_Category_Material +android.didikee.donate.R$styleable: int[] MenuView +androidx.coordinatorlayout.R$dimen: int compat_button_inset_horizontal_material +com.google.android.material.R$id: int SHOW_ALL +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dark +okhttp3.internal.http2.Http2Reader$ContinuationSource: void readContinuationHeader() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_width_major +com.xw.repo.bubbleseekbar.R$id: int scrollView +com.tencent.bugly.proguard.n: java.util.List a(com.tencent.bugly.proguard.n,int) +cyanogenmod.app.ProfileManager: void addNotificationGroup(android.app.NotificationGroup) +com.turingtechnologies.materialscrollbar.R$attr: int alertDialogTheme +com.google.android.material.R$styleable: int Slider_android_valueTo +james.adaptiveicon.R$style: int Widget_AppCompat_Toolbar +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$string: int phase_waning_gibbous +okhttp3.Call: okio.Timeout timeout() +com.google.android.material.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabBarStyle +androidx.fragment.app.SuperNotCalledException +com.bumptech.glide.load.HttpException: int getStatusCode() +com.tencent.bugly.proguard.s: s(android.content.Context) +com.google.android.material.R$styleable: int BottomNavigationView_itemTextAppearanceActive +com.amap.api.location.CoordinateConverter$1 +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$layout: int material_time_chip +androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Light +cyanogenmod.app.IProfileManager$Stub$Proxy: void addNotificationGroup(android.app.NotificationGroup) +wangdaye.com.geometricweather.R$styleable: int PropertySet_android_alpha +com.tencent.bugly.crashreport.crash.jni.a +com.google.android.material.R$style: int Widget_AppCompat_RatingBar_Indicator +wangdaye.com.geometricweather.R$attr: int titleTextStyle +cyanogenmod.app.LiveLockScreenInfo: void cloneInto(cyanogenmod.app.LiveLockScreenInfo) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay day() +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose w +android.didikee.donate.R$drawable: int abc_ic_menu_cut_mtrl_alpha +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: java.lang.String colorId +io.reactivex.internal.functions.Functions$NaturalComparator: io.reactivex.internal.functions.Functions$NaturalComparator[] values() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeight +androidx.appcompat.R$styleable: int TextAppearance_android_shadowColor +android.didikee.donate.R$integer: int cancel_button_image_alpha +com.google.android.material.R$attr: int maxAcceleration +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle +cyanogenmod.app.Profile$ExpandedDesktopMode +androidx.appcompat.R$attr: int borderlessButtonStyle +com.google.android.material.tabs.TabLayout: int getTabMode() +com.google.android.material.R$styleable: int Chip_chipIconEnabled +okhttp3.internal.platform.Platform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotationY +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginBottom +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView_DropDown +cyanogenmod.providers.CMSettings$Secure: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) +com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.StrategyBean c() +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleContentDescription(int) +androidx.appcompat.R$attr: int textAllCaps +androidx.preference.R$style: int Base_Widget_AppCompat_Button_Borderless +androidx.preference.R$styleable: int AppCompatTextView_drawableTopCompat +okhttp3.internal.cache.DiskLruCache$Editor: okio.Sink newSink(int) +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.R$color: int abc_decor_view_status_guard_light +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit MPS +com.tencent.bugly.crashreport.CrashReport: java.lang.String getUserId() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionMode +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Line2 +okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method openMethod +com.xw.repo.bubbleseekbar.R$layout: int abc_action_menu_layout +androidx.appcompat.widget.ActionBarOverlayLayout: void setActionBarVisibilityCallback(androidx.appcompat.widget.ActionBarOverlayLayout$ActionBarVisibilityCallback) +androidx.constraintlayout.widget.R$color: int ripple_material_light +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object readKey(android.database.Cursor,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: java.lang.String Localized +wangdaye.com.geometricweather.db.entities.LocationEntity: float longitude +okhttp3.internal.Internal: okhttp3.internal.connection.StreamAllocation streamAllocation(okhttp3.Call) +com.google.android.material.R$dimen: int notification_right_icon_size +retrofit2.RequestBuilder: RequestBuilder(java.lang.String,okhttp3.HttpUrl,java.lang.String,okhttp3.Headers,okhttp3.MediaType,boolean,boolean,boolean) +com.google.android.material.R$attr: int itemHorizontalPadding +android.didikee.donate.R$color: int background_floating_material_light +androidx.preference.R$styleable: int DialogPreference_dialogMessage +androidx.preference.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light_focused +wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +wangdaye.com.geometricweather.common.basic.models.weather.Alert: void descByTime(java.util.List) +com.google.android.material.R$attr: int dialogTheme +wangdaye.com.geometricweather.R$color: int design_default_color_on_error +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max +com.xw.repo.bubbleseekbar.R$id: int tag_transition_group +okhttp3.internal.connection.RouteException: java.io.IOException lastException +cyanogenmod.app.BaseLiveLockManagerService$1: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_fontFamily +com.google.android.material.R$styleable: int Constraint_android_alpha +com.turingtechnologies.materialscrollbar.R$attr: int arrowHeadLength +com.google.android.material.R$anim: int design_snackbar_in +androidx.preference.DropDownPreference: DropDownPreference(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$attr: int switchTextAppearance +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float thunderstormPrecipitation +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Menu +androidx.swiperefreshlayout.R$id: int notification_main_column_container +cyanogenmod.weatherservice.ServiceRequestResult: java.lang.String mKey +io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicLong missedRequested +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone +com.google.android.material.bottomnavigation.BottomNavigationView$SavedState +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getDate(java.lang.String) +androidx.constraintlayout.widget.R$dimen: int abc_text_size_body_2_material +cyanogenmod.app.PartnerInterface: int ZEN_MODE_IMPORTANT_INTERRUPTIONS +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginEnd +wangdaye.com.geometricweather.R$anim: int design_snackbar_in +com.google.android.material.R$attr: int thumbColor +james.adaptiveicon.R$styleable: int TextAppearance_fontVariationSettings +android.didikee.donate.R$layout: int abc_alert_dialog_button_bar_material +com.google.android.material.R$style: int TextAppearance_Compat_Notification_Info +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +okhttp3.MediaType +androidx.preference.R$styleable: int DialogPreference_android_dialogMessage +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void dispose() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +androidx.core.R$styleable: int FontFamilyFont_font +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Caption +com.google.android.material.R$styleable: int NavigationView_itemTextColor +androidx.fragment.R$id: int tag_accessibility_pane_title +cyanogenmod.externalviews.KeyguardExternalView: android.graphics.Point mDisplaySize +wangdaye.com.geometricweather.R$id: int adjust_height +androidx.preference.R$styleable: int MultiSelectListPreference_android_entryValues +wangdaye.com.geometricweather.R$dimen: int material_emphasis_disabled +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setLogo(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int selectableItemBackground +androidx.appcompat.R$dimen: int compat_button_inset_horizontal_material +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec codec +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type getOwnerType() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RealFeelTemperature +android.didikee.donate.R$attr: int actionButtonStyle +com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_light +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: int hasSeaBulletin +wangdaye.com.geometricweather.R$attr: int endIconCheckable +com.tencent.bugly.proguard.k: void a(com.tencent.bugly.proguard.j) +com.google.android.material.R$id: int mtrl_picker_text_input_range_start +com.google.android.material.R$color: int material_cursor_color +androidx.constraintlayout.helper.widget.Layer: void setTranslationY(float) +androidx.preference.R$attr: int thumbTintMode +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Determinate +com.tencent.bugly.proguard.ag: byte[] b(byte[]) +androidx.preference.R$id: int right_side +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPm25(java.lang.Float) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX temperature +com.google.android.material.R$dimen: int mtrl_progress_circular_inset +retrofit2.ParameterHandler$HeaderMap: java.lang.reflect.Method method +cyanogenmod.app.CustomTile$Builder: java.lang.String mContentDescription +androidx.recyclerview.widget.RecyclerView: void setLayoutFrozen(boolean) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabText +com.turingtechnologies.materialscrollbar.R$bool +com.google.android.material.R$layout: int abc_screen_simple_overlay_action_mode +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_lineHeight +android.didikee.donate.R$attr: int dialogTheme +androidx.appcompat.R$id: int action_bar_root +com.jaredrummler.android.colorpicker.R$id: int spinner +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +okhttp3.Cache$CacheRequestImpl: okio.Sink body() +wangdaye.com.geometricweather.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$drawable: int snackbar_background +androidx.constraintlayout.widget.R$attr: int layout_constraintTop_toBottomOf +com.google.android.material.R$style: int Base_Widget_AppCompat_ListPopupWindow +com.google.android.material.R$styleable: int ScrimInsetsFrameLayout_insetForeground +com.google.android.material.textfield.TextInputLayout: void setPlaceholderTextAppearance(int) +wangdaye.com.geometricweather.R$string: int wind_chill_temperature +androidx.recyclerview.R$attr: int fastScrollHorizontalThumbDrawable +cyanogenmod.profiles.StreamSettings: boolean mDirty +com.amap.api.location.CoordinateConverter: boolean isAMapDataAvailable(double,double) +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: int bufferSize +cyanogenmod.externalviews.ExternalView$3 +androidx.lifecycle.extensions.R$id: int title +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +androidx.appcompat.widget.AppCompatRadioButton: void setButtonDrawable(int) +com.google.android.material.R$attr: int singleLine +cyanogenmod.power.PerformanceManager: int PROFILE_HIGH_PERFORMANCE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: int getStatus() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int no2 +com.google.android.gms.base.R$string: int common_signin_button_text +androidx.constraintlayout.widget.R$attr: int drawableEndCompat +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State CANCELLED +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String grassDescription +com.amap.api.location.AMapLocation: void setRoad(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_inputType +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification_Title +okhttp3.OkHttpClient: okhttp3.Authenticator proxyAuthenticator +androidx.preference.R$string: int abc_activitychooserview_choose_application +wangdaye.com.geometricweather.R$string: int yesterday +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory sInstance +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context,android.util.AttributeSet) +com.github.rahatarmanahmed.cpv.CircularProgressView$4 +com.google.android.material.R$styleable: int ConstraintSet_flow_verticalStyle +wangdaye.com.geometricweather.R$layout: int item_line +androidx.activity.R$id: int accessibility_custom_action_7 +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_alpha +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +androidx.vectordrawable.R$styleable: int GradientColor_android_startColor +android.didikee.donate.R$styleable: int ActionBar_icon +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner +androidx.appcompat.R$styleable: int ActionBar_title +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onError(java.lang.Throwable) +com.bumptech.glide.R$id: int action_divider +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onComplete() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_progress_bar_height_material +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Body_Text +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_103 +androidx.preference.R$color: int material_grey_850 +androidx.constraintlayout.widget.R$styleable: int KeyPosition_framePosition +androidx.appcompat.R$style: int Widget_AppCompat_ListMenuView +cyanogenmod.profiles.ConnectionSettings: android.os.Parcelable$Creator CREATOR +com.google.gson.stream.JsonScope +androidx.appcompat.R$string: int abc_menu_delete_shortcut_label +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_PopupMenu +james.adaptiveicon.R$dimen: int abc_button_inset_horizontal_material +com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_PrimarySurface +com.tencent.bugly.crashreport.common.info.a: java.lang.String y() +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type rawType +com.jaredrummler.android.colorpicker.R$attr: int textColorAlertDialogListItem +android.didikee.donate.R$attr: int textColorSearchUrl +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs indexs +okio.BufferedSource: long indexOf(byte,long) +androidx.preference.R$styleable: int Preference_allowDividerBelow +com.google.android.material.tabs.TabItem androidx.lifecycle.ClassesInfoCache: void verifyAndPutHandler(java.util.Map,androidx.lifecycle.ClassesInfoCache$MethodReference,androidx.lifecycle.Lifecycle$Event,java.lang.Class) -wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.AlertEntity) -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontStyle -com.google.android.material.R$dimen: int mtrl_calendar_day_horizontal_padding -cyanogenmod.profiles.BrightnessSettings: BrightnessSettings() -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: ObservableUsing$UsingObserver(io.reactivex.Observer,java.lang.Object,io.reactivex.functions.Consumer,boolean) -james.adaptiveicon.R$dimen: int tooltip_corner_radius -wangdaye.com.geometricweather.R$id: int widget_day_center -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getDisplayGammaCalibration(int) -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getHourlyForecast() -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getUVDescription() -okio.ByteString: int indexOf(okio.ByteString,int) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListPopupWindow -com.tencent.bugly.crashreport.common.info.b: long i() -androidx.constraintlayout.widget.R$drawable: int notification_bg -com.google.android.material.slider.RangeSlider: int getTrackWidth() -androidx.preference.R$styleable: int RecycleListView_paddingTopNoTitle -androidx.viewpager2.R$string: int status_bar_notification_info_overflow -cyanogenmod.hardware.DisplayMode$1 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -wangdaye.com.geometricweather.background.service.Hilt_CMWeatherProviderService: Hilt_CMWeatherProviderService() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: java.util.List day -com.google.android.material.R$styleable: int AppCompatTheme_windowActionBar -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -androidx.preference.R$styleable: int SeekBarPreference_min -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorTextColor -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_5 -androidx.transition.R$styleable: int GradientColor_android_endColor -io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler,boolean,int) -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_Primary -com.google.android.material.R$color: int material_on_primary_disabled -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionDropDownStyle -retrofit2.converter.gson.GsonResponseBodyConverter: java.lang.Object convert(okhttp3.ResponseBody) -android.didikee.donate.R$style: int Base_V7_Theme_AppCompat -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void drain() -androidx.preference.R$styleable: int[] ViewBackgroundHelper -com.google.android.material.chip.ChipGroup: void setShowDividerHorizontal(int) -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: long serialVersionUID -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_START -androidx.appcompat.R$dimen: int abc_action_bar_overflow_padding_start_material -androidx.loader.R$dimen: int compat_notification_large_icon_max_width -com.google.android.material.textfield.TextInputLayout$SavedState -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindDirection(java.lang.String) -androidx.loader.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_toRightOf -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startY -james.adaptiveicon.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacingHorizontal -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: ILiveLockScreenChangeListener$Stub() -com.google.android.material.R$color: int switch_thumb_disabled_material_dark -com.google.android.material.bottomnavigation.BottomNavigationView: int getItemTextAppearanceActive() -wangdaye.com.geometricweather.R$attr: int cpv_maxProgress -com.turingtechnologies.materialscrollbar.R$attr: int hideOnScroll -com.xw.repo.bubbleseekbar.R$layout: int select_dialog_item_material -cyanogenmod.themes.IThemeService: long getLastThemeChangeTime() -cyanogenmod.weather.RequestInfo: void writeToParcel(android.os.Parcel,int) -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_ANY -com.google.android.material.R$attr: int attributeName -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm25Desc -wangdaye.com.geometricweather.R$id: int dialog_donate_wechat_img -androidx.appcompat.R$dimen: int abc_list_item_height_small_material -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: java.lang.Object singleItem -okhttp3.TlsVersion: okhttp3.TlsVersion valueOf(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int Preference_widgetLayout -wangdaye.com.geometricweather.R$attr: int drawable_res_on -androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationZ -wangdaye.com.geometricweather.R$attr: int tabMode -wangdaye.com.geometricweather.R$string: int feedback_request_location -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: double Value -okio.RealBufferedSource: RealBufferedSource(okio.Source) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarStyle -retrofit2.http.DELETE: java.lang.String value() -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -android.didikee.donate.R$styleable: int Toolbar_contentInsetStartWithNavigation -cyanogenmod.app.ProfileGroup: int mNameResId -cyanogenmod.app.CMContextConstants: java.lang.String CM_HARDWARE_SERVICE -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline6 -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void emit() -wangdaye.com.geometricweather.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum() -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.util.Date DateTime -androidx.lifecycle.LifecycleEventObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -james.adaptiveicon.R$attr: int actionModeBackground -com.google.android.material.R$styleable: int AlertDialog_listLayout -wangdaye.com.geometricweather.R$attr: int maxHeight -androidx.constraintlayout.widget.R$color: int notification_icon_bg_color -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -com.google.android.material.R$color: int mtrl_btn_stroke_color_selector -wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status SUCCESS -com.xw.repo.bubbleseekbar.R$styleable: int[] CoordinatorLayout -androidx.constraintlayout.widget.R$styleable: int[] PropertySet -androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$style: int Widget_AppCompat_Light_ActivityChooserView -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeMinTextSize -androidx.recyclerview.R$layout: int notification_template_custom_big -com.tencent.bugly.crashreport.common.info.b: java.lang.String[] a -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder authenticator(okhttp3.Authenticator) -androidx.transition.R$layout: int notification_action_tombstone -com.tencent.bugly.proguard.d -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: boolean isDisposed() -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Button -androidx.viewpager.R$dimen -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay -androidx.constraintlayout.widget.R$attr: int waveOffset -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: double Value -androidx.vectordrawable.animated.R$style -okhttp3.internal.cache.DiskLruCache$Snapshot: long[] lengths -com.google.gson.FieldNamingPolicy$2 -okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_1 -com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$layout: int abc_alert_dialog_title_material -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String content -wangdaye.com.geometricweather.R$color: int design_default_color_background -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorAccent -com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_radio +com.google.android.material.slider.BaseSlider: void setValueFrom(float) +androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerX +james.adaptiveicon.R$styleable: int DrawerArrowToggle_spinBars +cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder access$200(cyanogenmod.externalviews.KeyguardExternalView) +cyanogenmod.providers.DataUsageContract: java.lang.String DATAUSAGE_AUTHORITY +android.didikee.donate.R$styleable: int DrawerArrowToggle_arrowHeadLength +com.bumptech.glide.integration.okhttp.R$id: int action_container +androidx.constraintlayout.widget.R$styleable: int AlertDialog_showTitle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionBar +androidx.viewpager2.R$id: int accessibility_custom_action_21 +cyanogenmod.app.BaseLiveLockManagerService: android.os.RemoteCallbackList mChangeListeners +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$drawable: int abc_btn_check_to_on_mtrl_015 +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$attr: int stackFromEnd +wangdaye.com.geometricweather.remoteviews.config.Hilt_TextWidgetConfigActivity: Hilt_TextWidgetConfigActivity() +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_ttcIndex +io.reactivex.internal.observers.DeferredScalarDisposable: java.lang.Object value +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SearchView +wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line2_tail_interpolator +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeBackground +com.jaredrummler.android.colorpicker.R$id: int left +com.xw.repo.bubbleseekbar.R$attr: int actionModePopupWindowStyle +retrofit2.OkHttpCall$1 +com.turingtechnologies.materialscrollbar.R$layout: int abc_activity_chooser_view +com.google.android.gms.common.internal.zas: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_shapeAppearance +com.google.android.material.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +cyanogenmod.library.R$styleable +wangdaye.com.geometricweather.R$integer: int design_tab_indicator_anim_duration_ms +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getShortAbbreviation(android.content.Context) +wangdaye.com.geometricweather.R$attr: int isPreferenceVisible +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetLeft +com.tencent.bugly.crashreport.common.info.PlugInBean: android.os.Parcelable$Creator CREATOR +com.google.android.gms.common.api.AvailabilityException: androidx.collection.ArrayMap zaa +io.reactivex.internal.schedulers.RxThreadFactory: java.lang.String toString() +io.reactivex.Observable: io.reactivex.Observable switchMapSingleDelayError(io.reactivex.functions.Function) +okhttp3.Route: int hashCode() +androidx.work.impl.background.systemjob.SystemJobService: SystemJobService() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onScreenTurnedOff() +androidx.core.R$id: int accessibility_custom_action_13 +com.jaredrummler.android.colorpicker.R$attr: int actionBarDivider +okhttp3.Cookie: boolean secure +cyanogenmod.app.ProfileManager +com.google.android.material.R$layout: int abc_activity_chooser_view_list_item +androidx.constraintlayout.widget.R$styleable: int KeyPosition_motionTarget +com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog +com.tencent.bugly.proguard.d: java.util.HashMap f +com.google.android.material.chip.Chip: void setRippleColorResource(int) +com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_creator +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontWeight +com.jaredrummler.android.colorpicker.R$attr: int entries +okhttp3.Cache$CacheRequestImpl: okio.Sink body +androidx.hilt.lifecycle.R$dimen: int notification_right_icon_size +cyanogenmod.app.Profile$ExpandedDesktopMode: Profile$ExpandedDesktopMode() +androidx.constraintlayout.widget.R$attr: int trackTintMode +com.tencent.bugly.crashreport.common.info.b: java.lang.String g(android.content.Context) +com.google.android.material.R$dimen: int abc_list_item_padding_horizontal_material +com.google.android.material.R$styleable: int NavigationView_itemBackground +com.github.rahatarmanahmed.cpv.CircularProgressView$7 +com.tencent.bugly.proguard.d: d() +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: ObservableSwitchMap$SwitchMapInnerObserver(io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver,long,int) +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.MediaType contentType() +wangdaye.com.geometricweather.R$styleable: int Toolbar_buttonGravity +wangdaye.com.geometricweather.db.entities.HourlyEntity: HourlyEntity() +james.adaptiveicon.R$styleable: int AppCompatTextView_lineHeight +com.bumptech.glide.integration.okhttp.R$layout +androidx.preference.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$id: int easeIn +com.jaredrummler.android.colorpicker.R$string: int abc_search_hint +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_primary_mtrl_alpha +wangdaye.com.geometricweather.R$string: int feedback_background_location_title +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontStyle +cyanogenmod.hardware.CMHardwareManager: int getSupportedFeatures() +okio.GzipSource: byte FCOMMENT +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.util.Date date +okhttp3.ResponseBody: ResponseBody() +wangdaye.com.geometricweather.R$string: int precipitation_light +com.google.android.material.R$attr: int navigationContentDescription +com.tencent.bugly.crashreport.common.info.PlugInBean: java.lang.String toString() +okhttp3.OkHttpClient: java.util.List interceptors() +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_SECURE +com.google.android.material.chip.ChipGroup: void setSingleLine(int) +androidx.appcompat.R$style: int Widget_AppCompat_ListView +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_activityChooserViewStyle +okhttp3.internal.ws.WebSocketProtocol: java.lang.String closeCodeExceptionMessage(int) +com.google.android.material.R$styleable: int ActionBar_itemPadding +com.xw.repo.bubbleseekbar.R$anim: int abc_popup_enter +androidx.appcompat.widget.LinearLayoutCompat: void setOrientation(int) +androidx.preference.R$style: int AlertDialog_AppCompat_Light +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onLockscreenSlideOffsetChanged(float) +androidx.appcompat.R$styleable: int Toolbar_subtitleTextAppearance +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_PICKED_UUID +androidx.viewpager2.R$id: int icon +com.tencent.bugly.proguard.p: p(android.content.Context,java.util.List) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String country +com.google.gson.stream.JsonReader: int PEEKED_NULL +androidx.appcompat.R$color: int material_blue_grey_950 +okhttp3.internal.cache.CacheStrategy$Factory: boolean hasConditions(okhttp3.Request) +okio.HashingSource: okio.HashingSource md5(okio.Source) +wangdaye.com.geometricweather.R$styleable: int MotionLayout_motionProgress +okhttp3.Cache: int requestCount +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: java.lang.String toString() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_cascading_menus_min_smallest_width +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setIcon(android.graphics.Bitmap) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult +com.google.android.material.slider.BaseSlider: java.util.List getValues() +com.bumptech.glide.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupMenu +com.google.android.material.datepicker.PickerFragment +wangdaye.com.geometricweather.R$id: int action_bar_root +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: long index +android.didikee.donate.R$style: int Base_Theme_AppCompat +cyanogenmod.app.IProfileManager: void resetAll() +okhttp3.Response: long receivedResponseAtMillis() +com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +com.xw.repo.bubbleseekbar.R$color: int button_material_light +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_id +androidx.appcompat.widget.SearchView: int getSuggestionCommitIconResId() +com.tencent.bugly.proguard.y: void a(java.lang.String,java.lang.String,java.lang.String) +androidx.drawerlayout.R$id: int icon +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored +androidx.appcompat.R$styleable: int SearchView_suggestionRowLayout +org.greenrobot.greendao.AbstractDao: java.lang.Object loadUnique(android.database.Cursor) +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_registerWeatherServiceProviderChangeListener +io.reactivex.internal.disposables.SequentialDisposable: long serialVersionUID +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderLayout +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextTitle +androidx.preference.R$style: int Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.R$color: int colorTextGrey2nd +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyleSmall +com.google.android.material.R$styleable: int MaterialButton_elevation +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_tileMode +cyanogenmod.providers.CMSettings$Secure: java.lang.String __MAGICAL_TEST_PASSING_ENABLER +android.didikee.donate.R$dimen: int abc_dialog_min_width_major +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_gradientRadius +com.google.android.material.R$attr: int shapeAppearanceSmallComponent +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onError(java.lang.Throwable) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_22 +io.reactivex.internal.queue.SpscArrayQueue: void soElement(int,java.lang.Object) +com.google.android.material.R$styleable: int ViewPager2_android_orientation +wangdaye.com.geometricweather.R$styleable: int SearchView_submitBackground +cyanogenmod.hardware.CMHardwareManager: int getDisplayGammaCalibrationMax() +wangdaye.com.geometricweather.R$attr: int colorOnError +androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullException +com.jaredrummler.android.colorpicker.R$attr: int actionModePasteDrawable +android.didikee.donate.R$attr: int spinBars +cyanogenmod.themes.ThemeManager: java.lang.String TAG +com.turingtechnologies.materialscrollbar.R$attr: int iconTint +okio.Pipe: okio.Source source +james.adaptiveicon.R$styleable: int View_paddingEnd +com.amap.api.location.AMapLocationClientOption: boolean isDownloadCoordinateConvertLibrary() +cyanogenmod.weather.CMWeatherManager$1: CMWeatherManager$1(cyanogenmod.weather.CMWeatherManager) +com.turingtechnologies.materialscrollbar.R$attr: int cardUseCompatPadding +com.google.android.material.R$attr: int flow_lastHorizontalBias +wangdaye.com.geometricweather.R$id: int icon_group +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: boolean done +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_26 +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: cyanogenmod.app.suggest.IAppSuggestProvider asInterface(android.os.IBinder) +retrofit2.Utils$GenericArrayTypeImpl: java.lang.reflect.Type getGenericComponentType() +com.xw.repo.bubbleseekbar.R$attr: int colorControlNormal +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableBottom +cyanogenmod.app.IPartnerInterface$Stub$Proxy: void setAirplaneModeEnabled(boolean) +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayColorCalibration +androidx.recyclerview.widget.RecyclerView +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_CompactMenu +com.jaredrummler.android.colorpicker.R$attr: int dialogTheme +androidx.appcompat.resources.R$id: int accessibility_custom_action_13 +androidx.preference.EditTextPreferenceDialogFragmentCompat +androidx.preference.R$attr: int radioButtonStyle +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_scaleX +com.github.rahatarmanahmed.cpv.CircularProgressView: void onDetachedFromWindow() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default +cyanogenmod.externalviews.KeyguardExternalView$5: void run() +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: long serialVersionUID +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.DailyEntity) +wangdaye.com.geometricweather.R$attr: int motionProgress +james.adaptiveicon.R$attr: int trackTintMode +io.reactivex.Observable: io.reactivex.Single isEmpty() +cyanogenmod.providers.ThemesContract$ThemesColumns: android.net.Uri CONTENT_URI +androidx.preference.R$attr: int switchTextOn +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.ICMHardwareService sService +wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitle +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constrainedHeight +wangdaye.com.geometricweather.R$layout: int abc_select_dialog_material +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.R$drawable: int notif_temp_118 +com.jaredrummler.android.colorpicker.R$anim: int abc_grow_fade_in_from_bottom +com.google.android.material.R$attr: int minWidth +io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.ObservableSource,io.reactivex.functions.Function) +com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_CompactMenu +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_unselected +wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_icon +wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_backgroundTint +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: long serialVersionUID +com.google.android.material.R$style: int Widget_AppCompat_PopupWindow +wangdaye.com.geometricweather.R$attr: int telltales_tailColor +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription this$0 +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getAlarmThemePackageName() +com.google.android.material.R$attr: int customDimension +okhttp3.Response: java.lang.String toString() +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_switchTextOff +com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_material_dark +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItemSmall +wangdaye.com.geometricweather.R$styleable: int ActionBar_itemPadding +androidx.appcompat.R$attr: int buttonStyleSmall +wangdaye.com.geometricweather.R$drawable: int ic_collected +com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_ContextMenu +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +androidx.preference.R$style: int Widget_AppCompat_Spinner +org.greenrobot.greendao.AbstractDaoSession: void runInTx(java.lang.Runnable) +android.didikee.donate.R$attr: int colorButtonNormal +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: void close() +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: float getDistance(float) +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat +cyanogenmod.os.Build: Build() +cyanogenmod.weatherservice.IWeatherProviderServiceClient: void setServiceRequestState(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.ServiceRequestResult,int) +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: int unitArrayIndex +com.xw.repo.bubbleseekbar.R$attr: int autoSizeMaxTextSize +com.turingtechnologies.materialscrollbar.R$bool: R$bool() +androidx.activity.ComponentActivity$2 +com.google.android.material.R$color +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void collapseNotificationPanel() +androidx.dynamicanimation.R$attr +androidx.swiperefreshlayout.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List alertList +androidx.preference.R$styleable: int Toolbar_maxButtonHeight +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingLeft +androidx.appcompat.R$styleable: int ActionBar_logo +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_progressBarPadding +wangdaye.com.geometricweather.R$id: int material_clock_hand +james.adaptiveicon.R$id: int action_bar_subtitle +okhttp3.internal.Internal: void apply(okhttp3.ConnectionSpec,javax.net.ssl.SSLSocket,boolean) +wangdaye.com.geometricweather.R$string: int material_timepicker_clock_mode_description +wangdaye.com.geometricweather.R$array: int air_quality_unit_voices +androidx.constraintlayout.widget.R$dimen: int tooltip_precise_anchor_extra_offset +com.tencent.bugly.crashreport.crash.anr.b: com.tencent.bugly.crashreport.common.strategy.a f +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_Switch +com.amap.api.location.AMapLocation: java.lang.String c(com.amap.api.location.AMapLocation,java.lang.String) +com.google.android.material.R$id: int submit_area +androidx.cardview.widget.CardView: int getContentPaddingBottom() +james.adaptiveicon.R$anim: int abc_slide_out_bottom +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Alert_Bridge +androidx.appcompat.resources.R$dimen: int compat_notification_large_icon_max_height +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableItem_android_id +android.support.v4.os.ResultReceiver: ResultReceiver(android.os.Handler) +wangdaye.com.geometricweather.R$string: int aqi_3 +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.reflect.Type responseType +androidx.appcompat.widget.AppCompatSpinner: void setDropDownHorizontalOffset(int) +retrofit2.ParameterHandler$Header +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +androidx.constraintlayout.widget.R$attr: int fontStyle +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void cancelLiveLockScreen(java.lang.String,int,int) +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.google.android.material.R$attr: int checkedIconTint +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_seekBarPreferenceStyle +com.jaredrummler.android.colorpicker.R$drawable: int abc_tab_indicator_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_rippleColor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night +com.autonavi.aps.amapapi.model.AMapLocationServer: void a(long) +android.didikee.donate.R$styleable: int LinearLayoutCompat_measureWithLargestChild +com.google.android.material.R$styleable: int SwitchCompat_switchPadding +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: int UnitType +androidx.preference.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.LocationEntity,int) +com.jaredrummler.android.colorpicker.R$styleable: int[] StateListDrawableItem +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 +android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +androidx.preference.R$id: int customPanel +com.tencent.bugly.proguard.u: long g +com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents +androidx.lifecycle.LifecycleDispatcher: LifecycleDispatcher() +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: android.os.IBinder asBinder() +androidx.appcompat.R$drawable: int notification_template_icon_bg +cyanogenmod.app.CustomTile$ExpandedItem: int describeContents() +cyanogenmod.app.PartnerInterface: boolean setZenModeWithDuration(int,long) +com.xw.repo.bubbleseekbar.R$attr: int windowFixedHeightMinor +wangdaye.com.geometricweather.R$dimen: int mtrl_large_touch_target +com.turingtechnologies.materialscrollbar.R$color: int button_material_dark +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +cyanogenmod.profiles.ConnectionSettings: java.lang.String EXTRA_SUB_ID +cyanogenmod.weatherservice.ServiceRequestResult +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentStyle +com.jaredrummler.android.colorpicker.R$style: int Preference_Material +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_activityChooserViewStyle +androidx.swiperefreshlayout.R$dimen: int notification_action_icon_size +james.adaptiveicon.R$styleable: int AppCompatTheme_panelMenuListWidth +androidx.fragment.R$id: int accessibility_custom_action_15 +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String direction +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String value +retrofit2.converter.gson.GsonConverterFactory: GsonConverterFactory(com.google.gson.Gson) +okhttp3.EventListener: void dnsEnd(okhttp3.Call,java.lang.String,java.util.List) +cyanogenmod.weatherservice.WeatherProviderService: java.util.Set access$100(cyanogenmod.weatherservice.WeatherProviderService) +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +com.github.rahatarmanahmed.cpv.CircularProgressView: android.graphics.RectF bounds +com.tencent.bugly.BuglyStrategy: java.lang.String f +com.tencent.bugly.BuglyStrategy$a: byte[] onCrashHandleStart2GetExtraDatas(int,java.lang.String,java.lang.String,java.lang.String) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA +wangdaye.com.geometricweather.R$id: int item_card_display_title +okhttp3.internal.cache2.Relay: void commit(long) +androidx.preference.R$attr: int backgroundTintMode +okio.Base64: byte[] URL_MAP +androidx.core.R$styleable: int GradientColor_android_type +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textFontWeight +com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_light +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: ExternalViewProviderService$Provider$ProviderImpl$3(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean isDisposed() +com.google.android.material.R$attr: int state_liftable +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_seekBarStyle +cyanogenmod.profiles.ConnectionSettings: void writeToParcel(android.os.Parcel,int) +com.baidu.location.e.h$a: com.baidu.location.e.h$a[] values() +wangdaye.com.geometricweather.R$attr: int editTextColor +androidx.vectordrawable.R$dimen: int compat_notification_large_icon_max_width +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline1 +androidx.work.Worker: Worker(android.content.Context,androidx.work.WorkerParameters) +retrofit2.http.QueryName: boolean encoded() +cyanogenmod.app.ProfileManager: void removeNotificationGroup(android.app.NotificationGroup) +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleMargin +androidx.preference.R$styleable: int[] LinearLayoutCompat_Layout +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: android.os.IBinder mRemote +io.reactivex.internal.observers.LambdaObserver: boolean isDisposed() +com.google.android.material.R$styleable: int ConstraintSet_pivotAnchor +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.Observer downstream +retrofit2.Retrofit$1: Retrofit$1(retrofit2.Retrofit,java.lang.Class) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetMinutelyEntityList() +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog_Alert +androidx.hilt.lifecycle.R$dimen: int notification_small_icon_size_as_large +com.turingtechnologies.materialscrollbar.R$attr: int scrimAnimationDuration +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void lookupCity(cyanogenmod.weather.RequestInfo) +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onSubscribe(io.reactivex.disposables.Disposable) +android.didikee.donate.R$attr: int queryHint +wangdaye.com.geometricweather.R$id: int item_card_display_container +androidx.preference.MultiSelectListPreference +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_DarkActionBar +com.google.android.material.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_color +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +com.bumptech.glide.load.engine.CallbackException: long serialVersionUID +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_widget_height +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay night() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String weatherIcon +wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_colored_ripple_color +wangdaye.com.geometricweather.R$dimen: int material_text_view_test_line_height +com.google.android.material.R$dimen: int mtrl_slider_track_height +androidx.preference.R$string: R$string() +wangdaye.com.geometricweather.R$id: int month_title +androidx.swiperefreshlayout.R$integer: int status_bar_notification_info_maxnum +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onContentChanged() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String aqiText +wangdaye.com.geometricweather.R$attr: int layout_keyline +androidx.constraintlayout.widget.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long readKey(android.database.Cursor,int) +com.amap.api.fence.GeoFence: java.util.List g +androidx.preference.R$styleable: int MenuGroup_android_visible +wangdaye.com.geometricweather.R$drawable: int ic_location +androidx.constraintlayout.widget.R$dimen: int abc_text_size_menu_header_material +androidx.swiperefreshlayout.R$styleable: int[] FontFamilyFont +okio.BufferedSource: long readLongLe() +wangdaye.com.geometricweather.main.fragments.MainFragment: MainFragment() +wangdaye.com.geometricweather.R$dimen: int preference_seekbar_padding_horizontal +wangdaye.com.geometricweather.R$attr: int thumbRadius +com.tencent.bugly.proguard.s: java.net.HttpURLConnection a(java.lang.String,byte[],java.lang.String,java.util.Map) +com.google.android.gms.internal.location.zzbc +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: long serialVersionUID +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_onDetachedFromWindow +cyanogenmod.power.IPerformanceManager$Stub: android.os.IBinder asBinder() +retrofit2.ParameterHandler$PartMap: retrofit2.Converter valueConverter +wangdaye.com.geometricweather.common.basic.models.weather.Weather: Weather(wangdaye.com.geometricweather.common.basic.models.weather.Base,wangdaye.com.geometricweather.common.basic.models.weather.Current,wangdaye.com.geometricweather.common.basic.models.weather.History,java.util.List,java.util.List,java.util.List,java.util.List) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getUvIndex() +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_blackContainer +android.didikee.donate.R$dimen: int abc_dropdownitem_text_padding_right +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Body2 +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void drain() +wangdaye.com.geometricweather.R$attr: int actionOverflowButtonStyle +androidx.viewpager2.R$color: R$color() +androidx.core.R$id: int dialog_button +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer grassLevel +androidx.appcompat.R$layout: int abc_activity_chooser_view_list_item +com.google.android.material.R$attr: int contentScrim +androidx.work.R$drawable +androidx.appcompat.resources.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextContainer +com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: void reportJSException(java.lang.String) +androidx.constraintlayout.widget.R$attr: int layout_goneMarginLeft +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_borderColor +com.google.android.material.R$attr: int thumbElevation +com.google.android.material.R$attr: int itemStrokeWidth +okhttp3.internal.cache.DiskLruCache: long getMaxSize() +com.google.android.material.R$attr: int rippleColor +com.jaredrummler.android.colorpicker.R$id: int top +android.didikee.donate.R$dimen: int hint_alpha_material_light +android.support.v4.os.ResultReceiver: boolean mLocal +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderQuery +com.google.gson.internal.LinkedTreeMap +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration precipitationDuration +wangdaye.com.geometricweather.R$id: int circle +androidx.constraintlayout.widget.R$attr: int overlapAnchor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day +cyanogenmod.externalviews.ExternalView$6: ExternalView$6(cyanogenmod.externalviews.ExternalView) +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetStart +com.google.gson.stream.JsonReader: int NUMBER_CHAR_DIGIT +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setBrandId(java.lang.String) +com.bumptech.glide.integration.okhttp.R$id: R$id() +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_27 +wangdaye.com.geometricweather.R$color: int colorRipple +okhttp3.internal.ws.WebSocketProtocol: int PAYLOAD_SHORT +cyanogenmod.app.suggest.ApplicationSuggestion$1: cyanogenmod.app.suggest.ApplicationSuggestion[] newArray(int) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$styleable: int[] TextAppearance +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int state +com.baidu.location.indoor.mapversion.c.a$d: a$d(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int Preference_key +okhttp3.internal.Util: byte[] EMPTY_BYTE_ARRAY +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: AccuLocationResult$GeoPosition$Elevation$Metric() +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +com.google.android.material.R$styleable: int AlertDialog_buttonIconDimen +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void accept(io.reactivex.disposables.Disposable) +androidx.preference.R$styleable: int SwitchCompat_thumbTextPadding +wangdaye.com.geometricweather.R$id: int design_navigation_view +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_AutoCompleteTextView +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_hideMotionSpec +androidx.preference.R$attr: int buttonBarButtonStyle +androidx.constraintlayout.widget.R$attr: int actionDropDownStyle +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: long serialVersionUID +androidx.appcompat.widget.Toolbar: androidx.appcompat.widget.DecorToolbar getWrapper() +io.reactivex.Observable: io.reactivex.Single collectInto(java.lang.Object,io.reactivex.functions.BiConsumer) +wangdaye.com.geometricweather.R$attr: int materialCalendarStyle +cyanogenmod.profiles.LockSettings$1: cyanogenmod.profiles.LockSettings createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$attr: int animationDuration +androidx.appcompat.R$style: int Theme_AppCompat_Light_NoActionBar +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.functions.Function valueSelector +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetTop +wangdaye.com.geometricweather.R$dimen: int tooltip_y_offset_touch +com.bumptech.glide.integration.okhttp.R$dimen: int notification_large_icon_height +com.google.android.material.R$dimen: int mtrl_calendar_year_vertical_padding +androidx.recyclerview.R$drawable: R$drawable() +com.jaredrummler.android.colorpicker.R$attr: int popupTheme +okhttp3.OkHttpClient$Builder: java.util.List networkInterceptors +androidx.appcompat.widget.LinearLayoutCompat: int getBaselineAlignedChildIndex() +com.google.gson.stream.JsonReader: int PEEKED_SINGLE_QUOTED_NAME +com.google.android.material.R$animator: int mtrl_fab_hide_motion_spec +okhttp3.internal.cache.DiskLruCache$Snapshot: long getLength(int) +com.jaredrummler.android.colorpicker.R$attr: int selectableItemBackground +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_MULTIPLE_LEDS_ENABLE +com.turingtechnologies.materialscrollbar.R$layout: int abc_popup_menu_header_item_layout +com.google.android.material.R$attr: int valueTextColor +com.google.android.material.R$dimen: int design_snackbar_padding_vertical +androidx.transition.R$attr: int fontProviderAuthority +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setRightToLeft(boolean) +com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_weight +androidx.fragment.R$styleable: int GradientColor_android_centerX +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) +wangdaye.com.geometricweather.R$id: int item_card_display_sortButton +okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part create(okhttp3.RequestBody) +androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_4_material +androidx.core.R$styleable: int FontFamily_fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorBackgroundFloating +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_arrowShaftLength +com.turingtechnologies.materialscrollbar.R$styleable: int[] RecycleListView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windDircStart +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_inset +retrofit2.Retrofit: retrofit2.Converter nextResponseBodyConverter(retrofit2.Converter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[]) +wangdaye.com.geometricweather.R$id: int currentLocationButton +com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Theme_AppCompat_Light +james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +com.google.android.material.datepicker.CalendarConstraints: android.os.Parcelable$Creator CREATOR +androidx.appcompat.widget.SearchView: int getImeOptions() +androidx.preference.R$dimen: int abc_alert_dialog_button_dimen +cyanogenmod.weatherservice.WeatherProviderService: void onRequestSubmitted(cyanogenmod.weatherservice.ServiceRequest) +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_item_max_width +androidx.preference.R$attr: int spanCount +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_NoActionBar_Bridge +wangdaye.com.geometricweather.R$layout: int material_textinput_timepicker +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setVisibility(java.lang.Float) +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableBottom +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.R$id: int month_grid +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean,int) +wangdaye.com.geometricweather.R$id: int progress_circular +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: cyanogenmod.weatherservice.IWeatherProviderServiceClient asInterface(android.os.IBinder) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_lineHeight +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit[] values() +com.jaredrummler.android.colorpicker.R$styleable +androidx.dynamicanimation.R$string: int status_bar_notification_info_overflow +okhttp3.internal.connection.RealConnection: java.lang.String NPE_THROW_WITH_NULL +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents +com.google.android.gms.common.internal.BinderWrapper +wangdaye.com.geometricweather.common.basic.models.weather.Astro +com.google.android.material.R$attr: int startIconContentDescription +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: IThemeProcessingListener$Stub$Proxy(android.os.IBinder) +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge +com.tencent.bugly.crashreport.CrashReport: void setUserId(android.content.Context,java.lang.String) +com.jaredrummler.android.colorpicker.R$id: int submit_area +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_disabled_material_dark +androidx.appcompat.R$styleable: int MenuView_subMenuArrow wangdaye.com.geometricweather.R$id: int regular -james.adaptiveicon.R$attr: int actionBarSize -com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatImageView -okhttp3.EventListener: void responseHeadersEnd(okhttp3.Call,okhttp3.Response) -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean disposed -androidx.lifecycle.ReportFragment: java.lang.String REPORT_FRAGMENT_TAG -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: int getRootAlpha() -com.google.android.material.tabs.TabLayout: void setInlineLabel(boolean) -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder tlsVersions(java.lang.String[]) -androidx.preference.R$style: int Base_V28_Theme_AppCompat_Light -james.adaptiveicon.R$attr: int searchIcon -androidx.appcompat.R$attr: int buttonStyle -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getTranslateX() -retrofit2.ParameterHandler$QueryName: void apply(retrofit2.RequestBuilder,java.lang.Object) -com.xw.repo.bubbleseekbar.R$attr: int listItemLayout -androidx.hilt.R$drawable: int notification_bg_low -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub -com.google.android.material.R$color: int design_dark_default_color_primary_dark -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.String TABLENAME -okio.Buffer$2: Buffer$2(okio.Buffer) -io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) -okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_REENCODE_SET -com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_Overflow -com.tencent.bugly.crashreport.common.info.a: java.lang.String x -androidx.constraintlayout.widget.R$color: int abc_search_url_text_normal -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void drainAndDispose() -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_logoDescription -okhttp3.internal.Util: java.nio.charset.Charset ISO_8859_1 -com.turingtechnologies.materialscrollbar.R$attr: int spinnerDropDownItemStyle -com.xw.repo.bubbleseekbar.R$id: int action_mode_bar_stub -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Body_Text -com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_android_popupAnimationStyle -com.jaredrummler.android.colorpicker.R$attr: int tickMarkTint -com.google.android.material.R$integer: int show_password_duration -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotationX -io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean done -wangdaye.com.geometricweather.R$attr: int cpv_showOldColor -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean isEmpty() -com.tencent.bugly.crashreport.crash.anr.b: void a(boolean) -androidx.constraintlayout.widget.R$drawable: int abc_btn_check_to_on_mtrl_000 -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTextView -com.google.android.material.R$style: int Platform_MaterialComponents_Light_Dialog -wangdaye.com.geometricweather.R$font: int product_sans_black -okhttp3.internal.http2.Http2Connection$6: int val$byteCount -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Borderless_Colored -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -androidx.constraintlayout.widget.R$attr: int constraint_referenced_ids -androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_android_background -cyanogenmod.app.ProfileManager: java.util.UUID NO_PROFILE -com.bumptech.glide.load.engine.GlideException: void setOrigin(java.lang.Exception) -androidx.preference.R$id: int accessibility_custom_action_10 -okhttp3.Challenge: java.util.Map authParams -androidx.customview.R$style: int TextAppearance_Compat_Notification_Line2 -com.google.android.material.R$string: int search_menu_title -com.tencent.bugly.proguard.x: boolean b(java.lang.Class,java.lang.String,java.lang.Object[]) -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getUnitId() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_51 -okio.ByteString: boolean endsWith(byte[]) -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History -androidx.appcompat.R$string: int search_menu_title -androidx.constraintlayout.widget.R$styleable: int Toolbar_collapseContentDescription -io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade() -androidx.hilt.lifecycle.R$attr: int ttcIndex -androidx.transition.R$style: int TextAppearance_Compat_Notification_Title -org.greenrobot.greendao.DaoException: DaoException(java.lang.String,java.lang.Throwable) -okhttp3.Cookie$Builder: java.lang.String path -androidx.appcompat.R$drawable: int abc_item_background_holo_light -com.google.android.material.R$style: int Base_CardView -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: java.lang.String English -android.didikee.donate.R$attr: int windowFixedHeightMinor -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$200(com.github.rahatarmanahmed.cpv.CircularProgressView) -wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary_variant -wangdaye.com.geometricweather.R$style: int subtitle_text -androidx.appcompat.resources.R$id: int accessibility_custom_action_5 -cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderService$Stub mBinder -cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(int) -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_buttonIconDimen -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPressure(java.lang.Float) -com.google.android.material.R$styleable: int Chip_chipMinTouchTargetSize -okio.ByteString: boolean rangeEquals(int,byte[],int,int) -okhttp3.ResponseBody$1: long contentLength() -androidx.customview.R$attr: int fontWeight -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onComplete() -androidx.constraintlayout.widget.R$styleable: int[] ActionMode -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: java.lang.String c -androidx.core.R$id: int tag_accessibility_pane_title -okio.ForwardingSink: okio.Sink delegate() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Borderless -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startX -com.google.android.material.R$dimen: int material_clock_period_toggle_width -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior: ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior() -retrofit2.ParameterHandler: retrofit2.ParameterHandler iterable() -cyanogenmod.alarmclock.CyanogenModAlarmClock: android.content.Intent createAlarmIntent(android.content.Context) -wangdaye.com.geometricweather.R$attr: int checked -androidx.constraintlayout.helper.widget.Layer: void setScaleX(float) -androidx.appcompat.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.R$style: int widget_text_clock_analog_Light -androidx.preference.R$string: int abc_menu_sym_shortcut_label -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.Function rightEnd -retrofit2.BuiltInConverters: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_queryHint -james.adaptiveicon.R$id: int progress_circular -okhttp3.internal.ws.WebSocketWriter: java.util.Random random -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void cancel() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfPrecipitation -com.google.android.material.R$styleable: int[] FloatingActionButton -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -wangdaye.com.geometricweather.R$attr: int pageIndicatorColor -androidx.constraintlayout.widget.R$attr: int brightness -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderCerts -com.google.android.material.R$attr: int spinBars -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlNormal -com.google.android.material.R$attr: int textColorSearchUrl -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -james.adaptiveicon.R$dimen: int highlight_alpha_material_light -wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_year_selection -wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragScale -com.amap.api.location.LocationManagerBase: com.amap.api.location.AMapLocation getLastKnownLocation() -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.Map rights -wangdaye.com.geometricweather.R$id: int decelerate -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerY -james.adaptiveicon.R$attr: int fontProviderAuthority -androidx.appcompat.resources.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.R$string: int aqi_4 -cyanogenmod.weather.WeatherInfo$Builder: java.util.List mForecastList -androidx.preference.R$id: int actions -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getRealFeelTemperature() -wangdaye.com.geometricweather.R$attr: int layout_collapseMode -androidx.dynamicanimation.R$drawable: int notification_bg_normal_pressed -androidx.vectordrawable.animated.R$id: int info -com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonTint -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_Alert -androidx.lifecycle.extensions.R$drawable: int notification_template_icon_low_bg -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColorHint -wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status LOADING -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean delayError -james.adaptiveicon.R$color: int bright_foreground_material_dark -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String img -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitationProbability(java.lang.Float) -com.xw.repo.bubbleseekbar.R$attr: int fontFamily -cyanogenmod.weather.WeatherInfo: int hashCode() -com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context,android.util.AttributeSet) -okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeOptionalWithoutCheckedException(java.lang.Object,java.lang.Object[]) -androidx.core.os.CancellationSignal: void setOnCancelListener(androidx.core.os.CancellationSignal$OnCancelListener) -james.adaptiveicon.R$styleable: int Toolbar_popupTheme -cyanogenmod.app.CustomTile$Builder: android.content.Context mContext -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.Integer getCloudCover() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver(io.reactivex.CompletableObserver,io.reactivex.functions.Function,boolean) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupMenu -androidx.preference.R$styleable: int ActionMode_backgroundSplit -com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_anchor -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_9 -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Body_Text -wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_android_max -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode REFUSED_STREAM -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getNighttimeWindDegree() -androidx.appcompat.R$dimen: int abc_search_view_preferred_height -cyanogenmod.externalviews.KeyguardExternalView$8: KeyguardExternalView$8(cyanogenmod.externalviews.KeyguardExternalView,boolean) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: long serialVersionUID -androidx.appcompat.R$attr: int searchViewStyle -com.google.android.material.chip.Chip: void setOnCheckedChangeListenerInternal(android.widget.CompoundButton$OnCheckedChangeListener) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_id -androidx.core.R$id: int accessibility_custom_action_3 -androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -androidx.preference.R$styleable: int LinearLayoutCompat_android_gravity -androidx.core.R$layout: int notification_action_tombstone -okio.Pipe$PipeSource: okio.Pipe this$0 -android.didikee.donate.R$id: R$id() -com.github.rahatarmanahmed.cpv.CircularProgressView$8: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle[] values() -com.google.android.material.R$id: int spacer -wangdaye.com.geometricweather.R$string: int real_feel_shade_temperature -androidx.vectordrawable.R$id: int tag_accessibility_pane_title -androidx.appcompat.R$attr: int collapseIcon -com.xw.repo.bubbleseekbar.R$string: int abc_prepend_shortcut_label -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.internal.fuseable.SimpleQueue queue -com.google.android.material.R$attr: int boxCornerRadiusBottomEnd -io.reactivex.internal.util.ArrayListSupplier: java.util.List call() -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_2 -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dark -androidx.recyclerview.R$dimen: int compat_button_padding_horizontal_material -androidx.constraintlayout.widget.R$attr: int layout_constraintCircleRadius -androidx.constraintlayout.widget.R$attr: int showPaths -com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status WAITING_FOR_SIZE -androidx.appcompat.R$styleable: int DrawerArrowToggle_arrowShaftLength -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MOSTLY_CLOUDY_DAY -androidx.preference.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -okhttp3.internal.http.StatusLine: int HTTP_PERM_REDIRECT -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: java.lang.String Unit -wangdaye.com.geometricweather.R$attr: int itemHorizontalPadding -wangdaye.com.geometricweather.R$attr: int spinnerDropDownItemStyle -cyanogenmod.app.CMStatusBarManager: android.content.Context mContext -androidx.preference.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -cyanogenmod.app.CMContextConstants$Features: java.lang.String TELEPHONY -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabBarStyle -com.jaredrummler.android.colorpicker.R$attr: int selectableItemBackgroundBorderless -com.turingtechnologies.materialscrollbar.R$id: int line3 -androidx.core.R$id: int tag_transition_group -com.google.android.material.R$layout: int notification_action_tombstone -androidx.vectordrawable.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Time -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -com.google.android.gms.common.server.response.FastJsonResponse$Field -androidx.vectordrawable.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.R$dimen: int test_mtrl_calendar_day_cornerSize -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String hexAV() -wangdaye.com.geometricweather.R$string: int bottom_sheet_behavior -wangdaye.com.geometricweather.R$attr: int customPixelDimension -com.xw.repo.bubbleseekbar.R$color: int material_grey_600 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableEndCompat -wangdaye.com.geometricweather.R$transition: int search_activity_enter -okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman$Node root -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void complete(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int Preference_order -cyanogenmod.app.suggest.IAppSuggestManager -cyanogenmod.media.MediaRecorder: java.lang.String CAPTURE_AUDIO_HOTWORD_PERMISSION -wangdaye.com.geometricweather.R$attr: int lastBaselineToBottomHeight -androidx.hilt.work.R$drawable: int notification_bg_normal_pressed -okhttp3.TlsVersion: okhttp3.TlsVersion[] values() -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event[] values() -com.turingtechnologies.materialscrollbar.R$attr: int chipStrokeColor -wangdaye.com.geometricweather.R$id: int fill_vertical -james.adaptiveicon.R$attr: int paddingBottomNoButtons -com.xw.repo.bubbleseekbar.R$attr: int fontProviderCerts -com.jaredrummler.android.colorpicker.R$layout: int abc_dialog_title_material -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -com.google.android.material.R$styleable: int Layout_layout_goneMarginRight -com.google.android.material.R$styleable: int FontFamilyFont_android_fontWeight -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void dispose() -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_holo_dark -android.didikee.donate.R$anim: int abc_slide_out_top -com.google.gson.stream.JsonReader: java.lang.String getPath() -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_divider -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginLeft -androidx.constraintlayout.helper.widget.Flow: void setFirstHorizontalStyle(int) -androidx.appcompat.widget.Toolbar: android.widget.TextView getSubtitleTextView() -com.google.android.gms.base.R$string: int common_google_play_services_update_button -com.google.android.material.floatingactionbutton.FloatingActionButton: void setScaleY(float) -androidx.viewpager2.R$styleable: int RecyclerView_layoutManager -cyanogenmod.app.CustomTile$ExpandedStyle: void internalSetRemoteViews(android.widget.RemoteViews) -com.tencent.bugly.crashreport.crash.h5.a: java.lang.String f -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: FlowableConcatMap$ConcatMapInner(io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapSupport) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorButtonNormal -com.tencent.bugly.crashreport.crash.CrashDetailBean: long C -com.tencent.bugly.crashreport.crash.e: void b() -com.google.android.material.slider.BaseSlider: void setHaloTintList(android.content.res.ColorStateList) -androidx.vectordrawable.animated.R$layout: int notification_template_part_chronometer -com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingEnd -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: org.reactivestreams.Subscription receiver -androidx.preference.R$style: int TextAppearance_AppCompat_Medium -androidx.appcompat.widget.SearchView: void setMaxWidth(int) -okhttp3.Headers: int size() -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: java.util.concurrent.atomic.AtomicLong requested -androidx.preference.R$attr: int buttonBarPositiveButtonStyle -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedLevel(java.lang.Integer) -android.didikee.donate.R$drawable: int abc_cab_background_top_mtrl_alpha -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onError(java.lang.Throwable) +androidx.drawerlayout.R$dimen: int notification_small_icon_size_as_large +okhttp3.Handshake: java.security.Principal peerPrincipal() +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetEndWithActions +androidx.lifecycle.viewmodel.savedstate.R: R() +androidx.viewpager.R$drawable: int notification_icon_background +androidx.preference.R$attr: int goIcon +androidx.core.R$styleable: int FontFamily_fontProviderAuthority +cyanogenmod.externalviews.ExternalViewProviderService: ExternalViewProviderService() +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: int nameId +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_item_max_width +cyanogenmod.themes.ThemeManager$1 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_ON_VALIDATOR +com.google.android.material.R$style: int Widget_AppCompat_Button +androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context) +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamily +james.adaptiveicon.R$style: int Platform_V21_AppCompat_Light +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderPackage +james.adaptiveicon.R$styleable: int MenuView_android_itemTextAppearance +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String logo +okhttp3.OkHttpClient: int pingIntervalMillis() +androidx.cardview.R$color: int cardview_light_background +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginTop +com.tencent.bugly.proguard.b +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableLeft +okhttp3.internal.http1.Http1Codec$ChunkedSink: okio.Timeout timeout() +androidx.appcompat.resources.R$style: R$style() +com.google.android.material.R$attr: int maxVelocity +androidx.work.impl.utils.futures.DirectExecutor +wangdaye.com.geometricweather.R$id: int text_input_end_icon +androidx.preference.R$styleable: int AppCompatTheme_listMenuViewStyle +com.xw.repo.bubbleseekbar.R$id: int topPanel +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit +androidx.preference.R$styleable: int MenuItem_actionLayout +com.google.gson.stream.JsonReader: void skipQuotedValue(char) +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_switchTextOn +okhttp3.internal.http2.Http2Connection: void start() +wangdaye.com.geometricweather.R$styleable: int PopupWindowBackgroundState_state_above_anchor +retrofit2.Platform: int defaultCallAdapterFactoriesSize() +androidx.constraintlayout.widget.R$attr: int dragThreshold +androidx.preference.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitation(java.lang.Float) +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderCerts +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver parent +com.google.android.material.R$styleable: int KeyPosition_percentY +cyanogenmod.profiles.AirplaneModeSettings: void writeToParcel(android.os.Parcel,int) +com.google.android.material.R$color: int dim_foreground_material_light +androidx.preference.R$attr: int switchTextOff +com.google.android.material.R$id: int middle +com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy STRING +com.bumptech.glide.R$dimen: int compat_button_inset_vertical_material +androidx.appcompat.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +retrofit2.Invocation +androidx.fragment.R$styleable: int GradientColor_android_startX +com.tencent.bugly.Bugly: boolean isDev() +androidx.preference.R$styleable: int DrawerArrowToggle_thickness +com.google.android.material.bottomnavigation.BottomNavigationView +androidx.appcompat.widget.ActionBarOverlayLayout: void setLogo(int) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldIndex +okhttp3.internal.ws.WebSocketWriter$FrameSink: WebSocketWriter$FrameSink(okhttp3.internal.ws.WebSocketWriter) +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxy(java.net.Proxy) +wangdaye.com.geometricweather.R$color: int test_mtrl_calendar_day +com.google.android.material.R$attr: int content +wangdaye.com.geometricweather.R$color: int notification_background_m +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationZ +com.google.android.material.R$color: int primary_text_default_material_light +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginTop +com.xw.repo.bubbleseekbar.R$attr: int searchIcon +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_elevation +androidx.appcompat.R$styleable: int TextAppearance_android_shadowRadius +androidx.appcompat.R$dimen: int abc_button_inset_vertical_material +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_Solid +okhttp3.internal.http2.Http2Connection: long access$108(okhttp3.internal.http2.Http2Connection) +io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate,int) +cyanogenmod.hardware.ICMHardwareService: boolean registerThermalListener(cyanogenmod.hardware.IThermalListenerCallback) +io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Consumer onError +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginStart +com.tencent.bugly.crashreport.crash.b: android.content.Context b +com.google.android.material.R$styleable: int AppCompatTheme_radioButtonStyle +wangdaye.com.geometricweather.R$layout: int widget_day_oreo +androidx.appcompat.R$string: int abc_capital_off +androidx.coordinatorlayout.R$id: int action_container +wangdaye.com.geometricweather.R$dimen: int cpv_column_width +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMode +com.tencent.bugly.proguard.v: com.tencent.bugly.proguard.t k +okhttp3.CookieJar: okhttp3.CookieJar NO_COOKIES +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: void run() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: java.lang.String Localized +androidx.work.R$styleable: int GradientColor_android_endX +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_NavigationView +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomAppBar_Colored +com.google.android.material.button.MaterialButton: int getInsetTop() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +wangdaye.com.geometricweather.R$attr: int windowMinWidthMajor +androidx.customview.R$id: int forever +androidx.appcompat.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_get +com.google.android.material.button.MaterialButtonToggleGroup: void removeOnButtonCheckedListener(com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitationProbability +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +com.baidu.location.Poi +wangdaye.com.geometricweather.R$styleable: int[] ColorPickerView +com.google.android.material.R$styleable: int KeyTimeCycle_waveOffset +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ID +android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +android.didikee.donate.R$style: int Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getHourlyEntityList() +okhttp3.internal.http2.Http2Connection: long degradedPingsSent +cyanogenmod.providers.CMSettings$NameValueCache: android.net.Uri mUri +androidx.lifecycle.ServiceLifecycleDispatcher: void postDispatchRunnable(androidx.lifecycle.Lifecycle$Event) +com.turingtechnologies.materialscrollbar.R$attr: int autoSizePresetSizes +androidx.constraintlayout.motion.widget.MotionLayout: int[] getConstraintSetIds() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +com.google.android.material.R$styleable: int AppCompatTheme_searchViewStyle +androidx.constraintlayout.widget.R$attr: int nestedScrollFlags +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String unit +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long readKey(android.database.Cursor,int) +androidx.appcompat.widget.AppCompatTextView: void setBackgroundResource(int) +com.google.android.material.R$styleable: int KeyCycle_android_scaleX +com.google.android.material.R$styleable: int Transform_android_rotationY +wangdaye.com.geometricweather.R$id: int notification_multi_city_text_1 +okhttp3.internal.http2.Http2Writer: void frameHeader(int,int,byte,byte) +com.xw.repo.bubbleseekbar.R$attr: int progressBarStyle +com.jaredrummler.android.colorpicker.R$attr: int switchStyle +androidx.preference.R$id: int action_mode_bar +okhttp3.internal.ws.RealWebSocket: int receivedPingCount +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void headers(boolean,int,int,java.util.List) +androidx.preference.R$dimen: int abc_alert_dialog_button_bar_height +com.turingtechnologies.materialscrollbar.R$styleable: int[] LinearLayoutCompat_Layout +wangdaye.com.geometricweather.R$attr: int listChoiceIndicatorMultipleAnimated +wangdaye.com.geometricweather.R$attr: int cardCornerRadius +okhttp3.OkHttpClient$1: boolean equalsNonHost(okhttp3.Address,okhttp3.Address) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Caption +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer realFeelShaderTemperature +android.didikee.donate.R$attr: int measureWithLargestChild +com.google.android.material.R$animator: int linear_indeterminate_line2_head_interpolator +wangdaye.com.geometricweather.R$dimen: int tooltip_precise_anchor_extra_offset +com.google.android.material.R$styleable: int Toolbar_menu +com.tencent.bugly.proguard.f: java.lang.String d +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String m +androidx.constraintlayout.widget.R$styleable: int ActionBar_popupTheme +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String,java.lang.Throwable) +androidx.work.R$dimen: int notification_small_icon_size_as_large +okhttp3.internal.http2.Http2Connection: int nextStreamId +com.tencent.bugly.proguard.am: void a(com.tencent.bugly.proguard.i) +androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingLeft +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_minHeight +androidx.dynamicanimation.R$attr: int fontProviderAuthority +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Colored +com.google.android.material.R$styleable: int[] TextAppearance +androidx.preference.R$id: int group_divider +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: double Value +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ImageButton +okhttp3.internal.http2.Settings: int[] values +androidx.constraintlayout.widget.R$color: int abc_tint_spinner +okhttp3.Response$Builder: okhttp3.Response$Builder handshake(okhttp3.Handshake) +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver +androidx.vectordrawable.R$dimen: int notification_top_pad +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_CompactMenu +wangdaye.com.geometricweather.R$styleable: int Chip_closeIcon +androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_bias +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstVerticalBias +com.jaredrummler.android.colorpicker.R$dimen: int abc_control_padding_material +io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.Observer) +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void onStrategyChanged(com.tencent.bugly.crashreport.common.strategy.StrategyBean) +wangdaye.com.geometricweather.R$array: int pressure_unit_values +wangdaye.com.geometricweather.background.receiver.widget.WidgetTextProvider +androidx.preference.R$attr: int tintMode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: int status +android.didikee.donate.R$attr: int checkboxStyle +wangdaye.com.geometricweather.R$id: int activity_weather_daily_subtitle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isModifyInHour() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_139 +androidx.work.R$id: int accessibility_custom_action_16 +androidx.preference.R$styleable: int Preference_android_key +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dark +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickInactiveTintList() +androidx.preference.R$dimen: int disabled_alpha_material_light +androidx.preference.R$dimen: int notification_small_icon_size_as_large +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_popupTheme +com.turingtechnologies.materialscrollbar.R$color: int primary_material_light +com.turingtechnologies.materialscrollbar.R$integer: int app_bar_elevation_anim_duration +com.turingtechnologies.materialscrollbar.R$color: int design_snackbar_background_color +androidx.legacy.coreutils.R$dimen: R$dimen() +com.jaredrummler.android.colorpicker.R$attr: int checkboxStyle +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_TEXT +com.google.android.material.R$id: int mtrl_child_content_container +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Long id +androidx.constraintlayout.widget.R$id: int titleDividerNoCustom +androidx.lifecycle.MutableLiveData +androidx.appcompat.resources.R$drawable: R$drawable() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView_Menu +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_PrimarySurface +wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendDailyProvider: WidgetTrendDailyProvider() +androidx.vectordrawable.animated.R$id: int right_side +com.google.gson.LongSerializationPolicy: LongSerializationPolicy(java.lang.String,int,com.google.gson.LongSerializationPolicy$1) +cyanogenmod.app.suggest.IAppSuggestManager: boolean handles(android.content.Intent) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void complete() +androidx.preference.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +androidx.preference.R$layout: int preference +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.DailyEntity,long) +androidx.appcompat.widget.ActionMenuView: ActionMenuView(android.content.Context,android.util.AttributeSet) +com.google.android.material.timepicker.TimePickerView: void setOnDoubleTapListener(com.google.android.material.timepicker.TimePickerView$OnDoubleTapListener) +com.xw.repo.bubbleseekbar.R$attr: int tickMarkTint +wangdaye.com.geometricweather.db.entities.LocationEntity: void setWeatherSource(wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource) +com.amap.api.location.AMapLocationQualityReport: boolean g +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView +com.tencent.bugly.proguard.i: float[] h(int,boolean) +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.floatingactionbutton.FloatingActionButton: int getRippleColor() +okhttp3.ResponseBody: okhttp3.MediaType contentType() +androidx.preference.R$styleable: int AppCompatTheme_alertDialogCenterButtons +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton +com.xw.repo.bubbleseekbar.R$attr: int contentInsetLeft +james.adaptiveicon.R$styleable: int Spinner_android_dropDownWidth +com.jaredrummler.android.colorpicker.R$id: int screen +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_android_elevation +androidx.lifecycle.ProcessLifecycleOwnerInitializer: int delete(android.net.Uri,java.lang.String,java.lang.String[]) +androidx.appcompat.R$drawable: int abc_list_pressed_holo_light +com.tencent.bugly.proguard.x +com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context) +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$attr: int font +wangdaye.com.geometricweather.R$attr: int actionBarTabTextStyle +com.google.android.material.R$styleable: int Layout_android_orientation +com.google.android.material.R$styleable: int FloatingActionButton_elevation +androidx.appcompat.R$styleable: int AppCompatTheme_imageButtonStyle +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_scaleX +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver) +com.turingtechnologies.materialscrollbar.R$attr: int titleMarginTop +okio.BufferedSource: int read(byte[],int,int) +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_APP_SWITCH_ACTION +okhttp3.internal.http2.Http2 +androidx.constraintlayout.widget.R$attr: int motion_triggerOnCollision +okhttp3.RealCall$AsyncCall: void execute() +wangdaye.com.geometricweather.R$attr: int msb_handleOffColor +okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_content_inset_material +okio.Timeout$1: Timeout$1() +android.didikee.donate.R$drawable: int abc_btn_check_to_on_mtrl_000 +android.didikee.donate.R$styleable: int AppCompatTheme_textColorSearchUrl +com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_normal +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_requestDismiss_0 +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat +james.adaptiveicon.R$style: int Widget_AppCompat_ActionMode +androidx.appcompat.resources.R$styleable: int GradientColor_android_endY +androidx.constraintlayout.widget.R$styleable: int[] RecycleListView +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) +com.tencent.bugly.proguard.m: java.lang.String b +wangdaye.com.geometricweather.common.basic.models.weather.Alert: android.os.Parcelable$Creator CREATOR +james.adaptiveicon.R$styleable: int SearchView_suggestionRowLayout +wangdaye.com.geometricweather.R$layout: int activity_settings +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_NULL_SHA +cyanogenmod.externalviews.ExternalView: boolean onPreDraw() +androidx.hilt.R$style +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_NavigationView +cyanogenmod.app.ProfileManager: java.lang.String TAG +androidx.appcompat.R$drawable: int abc_control_background_material +com.turingtechnologies.materialscrollbar.R$attr: int boxBackgroundColor +androidx.work.R$styleable: int FontFamily_fontProviderQuery +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.Class clientProviderClass +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: void enqueue(retrofit2.Callback) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource +okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String key +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: long serialVersionUID +james.adaptiveicon.R$color: R$color() +com.turingtechnologies.materialscrollbar.R$attr: int boxStrokeColor +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_to_on_mtrl_000 +com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector[] values() +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: float getBackgroundOverlayColorAlpha() +com.google.android.material.R$attr: int errorIconTint +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_RAINSTORM +okhttp3.internal.cache2.Relay: okhttp3.internal.cache2.Relay edit(java.io.File,okio.Source,okio.ByteString,long) +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_keyline +okhttp3.OkHttpClient: okhttp3.EventListener$Factory eventListenerFactory() +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void dispose() +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +android.didikee.donate.R$drawable: int abc_switch_track_mtrl_alpha +com.google.android.material.R$styleable: int MotionScene_layoutDuringTransition +com.github.rahatarmanahmed.cpv.CircularProgressView: void addListener(com.github.rahatarmanahmed.cpv.CircularProgressViewListener) +okio.Buffer: okio.ByteString readByteString() +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy[] values() +wangdaye.com.geometricweather.R$id: int outgoing +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: ObservableReplay$SizeAndTimeBoundReplayBuffer(int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() +androidx.work.R$styleable: int FontFamilyFont_android_fontStyle +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getCloseIcon() +com.google.android.material.R$styleable: int[] MotionScene +com.google.gson.stream.JsonWriter: JsonWriter(java.io.Writer) +okhttp3.Response$Builder: okhttp3.Response$Builder cacheResponse(okhttp3.Response) +androidx.constraintlayout.widget.R$attr: int staggered +okhttp3.internal.platform.ConscryptPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +james.adaptiveicon.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: CNWeatherResult$Realtime$Weather() +androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context) +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.LocationEntityDao getLocationEntityDao() +com.jaredrummler.android.colorpicker.R$id: int customPanel +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_progress_in_float +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_2 +com.jaredrummler.android.colorpicker.R$drawable: int tooltip_frame_dark +cyanogenmod.externalviews.ExternalView$3: void run() +com.xw.repo.bubbleseekbar.R$id: int right_icon +okio.BufferedSource: long readDecimalLong() +androidx.appcompat.R$styleable: int TextAppearance_android_shadowDx +okio.BufferedSource: int readUtf8CodePoint() +james.adaptiveicon.R$styleable: int MenuItem_iconTint +androidx.legacy.coreutils.R$id: int notification_main_column_container +androidx.constraintlayout.widget.R$dimen: int abc_floating_window_z +androidx.lifecycle.LifecycleRegistry$ObserverWithState: LifecycleRegistry$ObserverWithState(androidx.lifecycle.LifecycleObserver,androidx.lifecycle.Lifecycle$State) +wangdaye.com.geometricweather.R$styleable: int[] MaterialRadioButton +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dark +com.google.android.material.bottomsheet.BottomSheetBehavior: BottomSheetBehavior() +androidx.lifecycle.LiveData$LifecycleBoundObserver: boolean shouldBeActive() +wangdaye.com.geometricweather.R$drawable: int notif_temp_105 +wangdaye.com.geometricweather.R$attr: int themeLineHeight +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton +wangdaye.com.geometricweather.R$bool: int cpv_default_is_indeterminate +james.adaptiveicon.R$styleable: int AppCompatTheme_homeAsUpIndicator +cyanogenmod.externalviews.KeyguardExternalView$3: boolean val$visible +james.adaptiveicon.R$styleable: int Toolbar_subtitleTextAppearance +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: void cancel(io.reactivex.internal.queue.SpscLinkedArrayQueue,io.reactivex.internal.queue.SpscLinkedArrayQueue) +wangdaye.com.geometricweather.R$dimen: int design_navigation_item_horizontal_padding +com.google.android.material.navigation.NavigationView: void setItemHorizontalPaddingResource(int) +android.didikee.donate.R$styleable: int DrawerArrowToggle_gapBetweenBars +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_DIRECTION +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableLeft +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_percent +cyanogenmod.app.BaseLiveLockManagerService: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +okio.GzipSink: okio.DeflaterSink deflaterSink +wangdaye.com.geometricweather.common.basic.models.weather.Wind: boolean isValidSpeed() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onKeyguardDismissed +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$styleable: int[] TabLayout +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWindLevel() +com.google.android.material.R$id: int topPanel +com.google.android.material.R$color: int mtrl_btn_text_color_selector +cyanogenmod.app.ICMStatusBarManager: void unregisterListener(cyanogenmod.app.ICustomTileListener,int) +androidx.viewpager2.R$id: int actions +com.google.android.material.R$layout: int mtrl_layout_snackbar +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginStart +androidx.appcompat.widget.SearchView$SearchAutoComplete: void setImeVisibility(boolean) +com.google.gson.stream.JsonReader: int NUMBER_CHAR_SIGN +okhttp3.internal.http2.Http2Connection$2: long val$unacknowledgedBytesRead +com.jaredrummler.android.colorpicker.R$string: int expand_button_title +wangdaye.com.geometricweather.R$styleable: int Slider_trackColorInactive +com.tencent.bugly.proguard.ak: com.tencent.bugly.proguard.ai j +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_74 +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: ObservableConcatMap$SourceObserver(io.reactivex.Observer,io.reactivex.functions.Function,int) +com.google.android.material.R$attr: int backgroundTint +james.adaptiveicon.R$drawable: int abc_ic_ab_back_material +androidx.vectordrawable.animated.R$id: int tag_transition_group +io.reactivex.internal.disposables.DisposableHelper: void dispose() +wangdaye.com.geometricweather.R$id: int activity_about_recyclerView +wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +com.xw.repo.bubbleseekbar.R$styleable: int[] SwitchCompat +androidx.appcompat.widget.AppCompatButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$id: int search_close_btn +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: int status +james.adaptiveicon.R$styleable: int[] ViewStubCompat +com.bumptech.glide.integration.okhttp.R$dimen: int notification_top_pad +okio.RealBufferedSource: long indexOf(okio.ByteString,long) +wangdaye.com.geometricweather.R$animator: int weather_fog_2 +android.support.v4.os.IResultReceiver$Stub: int TRANSACTION_send +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean isEmpty() +androidx.vectordrawable.R$id: int tag_accessibility_clickable_spans +okhttp3.internal.ws.WebSocketReader: okhttp3.internal.ws.WebSocketReader$FrameCallback frameCallback android.support.v4.os.ResultReceiver$MyRunnable: int mResultCode -io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setTextColor(int) -cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.ICMWeatherManager sWeatherManagerService -androidx.customview.R$styleable -com.xw.repo.bubbleseekbar.R$attr: int viewInflaterClass -com.google.android.material.R$style: int TestThemeWithLineHeightDisabled -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item -okhttp3.Cookie: java.lang.String domain() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstVerticalBias -com.tencent.bugly.crashreport.CrashReport: java.lang.String getUserId() -androidx.appcompat.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -cyanogenmod.externalviews.KeyguardExternalView$10: void run() -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationY -com.amap.api.location.AMapLocationClientOption: void writeToParcel(android.os.Parcel,int) -androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$styleable: int Chip_chipCornerRadius -okio.BufferedSource: void readFully(okio.Buffer,long) -wangdaye.com.geometricweather.R$attr: int bsb_progress -wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_3 -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA -android.didikee.donate.R$attr: int trackTintMode -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: AccuLocationResult$GeoPosition$Elevation$Metric() -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode AUTO -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: boolean isLeft -wangdaye.com.geometricweather.R$id: int action_image -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog -wangdaye.com.geometricweather.background.polling.work.worker.TomorrowForecastUpdateWorker -wangdaye.com.geometricweather.R$string: int search_menu_title -androidx.hilt.work.R$id: int accessibility_custom_action_9 -androidx.constraintlayout.widget.R$styleable: int ActionBar_subtitle -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_128_GCM_SHA256 -androidx.appcompat.R$styleable: int[] StateListDrawable -okhttp3.HttpUrl: void pathSegmentsToString(java.lang.StringBuilder,java.util.List) -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean setNativeUserId(java.lang.String) -androidx.appcompat.R$color: int button_material_light -com.google.android.gms.common.api.AvailabilityException: com.google.android.gms.common.ConnectionResult getConnectionResult(com.google.android.gms.common.api.GoogleApi) -androidx.constraintlayout.widget.R$color: int abc_secondary_text_material_light -io.reactivex.Observable: void subscribeActual(io.reactivex.Observer) -androidx.legacy.coreutils.R$integer: R$integer() -androidx.preference.R$styleable: int Preference_allowDividerBelow -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: void setGravitySensorEnabled(boolean) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: boolean done -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWeatherPhase -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit MB -androidx.appcompat.resources.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveShape -androidx.preference.R$attr: int fontFamily -com.google.android.material.R$styleable: int Constraint_android_minWidth -androidx.viewpager2.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.R$string: int settings_title_gravity_sensor_switch -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String momentDay -com.google.android.material.R$styleable: int SearchView_suggestionRowLayout -androidx.appcompat.R$styleable: int[] LinearLayoutCompat_Layout -com.google.android.material.R$layout: int mtrl_calendar_day -com.google.android.material.R$id: int mtrl_picker_text_input_range_end -androidx.drawerlayout.R$dimen: int notification_big_circle_margin -androidx.loader.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation -okio.Okio$1: java.lang.String toString() -cyanogenmod.app.StatusBarPanelCustomTile: long postTime -cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.view.View onCreateView() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean -androidx.appcompat.R$color: int material_grey_800 -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: CNWeatherResult$Alert() -androidx.work.R$attr: int fontProviderCerts -com.jaredrummler.android.colorpicker.R$attr: int buttonBarPositiveButtonStyle -okhttp3.WebSocketListener: void onOpen(okhttp3.WebSocket,okhttp3.Response) -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -io.reactivex.Observable: io.reactivex.Observable repeatUntil(io.reactivex.functions.BooleanSupplier) -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getLongitude() -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_toRightOf -android.didikee.donate.R$attr: int alertDialogCenterButtons -okhttp3.internal.http2.Http2Stream$FramingSink: void flush() -james.adaptiveicon.R$color: int material_grey_100 -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onSubscribe(org.reactivestreams.Subscription) -androidx.hilt.R$id: int tag_accessibility_clickable_spans -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeBackground -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_thickness -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_orientation -retrofit2.RequestBuilder: void addTag(java.lang.Class,java.lang.Object) -androidx.coordinatorlayout.R$id: int time -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Body1 -wangdaye.com.geometricweather.R$integer: int cpv_default_anim_sync_duration -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String BOOT_ANIM_URI -android.support.v4.app.INotificationSideChannel$Stub: android.support.v4.app.INotificationSideChannel asInterface(android.os.IBinder) -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.google.android.material.R$styleable: int BottomAppBar_fabCradleMargin -com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context) +androidx.appcompat.resources.R$drawable: int notification_bg_low +com.turingtechnologies.materialscrollbar.R$attr: int msb_lightOnTouch +com.google.android.material.R$drawable: int material_ic_edit_black_24dp +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType BOOLEAN_TYPE +com.google.android.material.R$id: int dragDown +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_editor_absoluteX +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property PublishTime +androidx.preference.R$dimen: int item_touch_helper_swipe_escape_velocity +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_height +androidx.preference.R$attr: int dialogPreferredPadding +androidx.appcompat.R$attr: int titleTextColor +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +cyanogenmod.hardware.CMHardwareManager: int getArrayValue(int[],int,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid TotalLiquid +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String windIcon +com.google.android.material.R$string: int path_password_eye +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastVerticalStyle +com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(com.tencent.bugly.proguard.k,java.lang.String) +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,boolean) +androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Info +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$drawable: int abc_switch_thumb_material +com.google.android.material.R$styleable: int AppCompatSeekBar_tickMarkTintMode +wangdaye.com.geometricweather.R$attr: int behavior_expandedOffset +retrofit2.CallAdapter +androidx.preference.PreferenceFragmentCompat: PreferenceFragmentCompat() +wangdaye.com.geometricweather.R$layout: int dialog_learn_more_about_geocoder +androidx.fragment.R$styleable: int FontFamilyFont_font +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial Imperial +androidx.core.R$attr: int font +retrofit2.OptionalConverterFactory$OptionalConverter: java.lang.Object convert(java.lang.Object) +com.amap.api.location.AMapLocationQualityReport: void setGpsStatus(int) +io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.preference.R$styleable: int MenuView_preserveIconSpacing +androidx.appcompat.widget.AppCompatImageButton: void setBackgroundResource(int) +okhttp3.MultipartBody: long contentLength() +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyTopRight +com.google.android.material.R$attr: int dropdownListPreferredItemHeight +cyanogenmod.profiles.LockSettings: LockSettings(android.os.Parcel) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: void setTo(java.lang.String) +androidx.preference.R$styleable: int StateListDrawable_android_visible +androidx.lifecycle.ReportFragment: void onStart() +androidx.work.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorEnabled +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTotalPrecipitationProbability(java.lang.Float) +wangdaye.com.geometricweather.R$drawable: int notif_temp_131 +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert +cyanogenmod.power.PerformanceManager: cyanogenmod.power.PerformanceManager sInstance +com.google.android.material.R$styleable: int Constraint_motionStagger +com.amap.api.fence.GeoFence: com.amap.api.fence.PoiItem getPoiItem() +retrofit2.OkHttpCall$NoContentResponseBody: OkHttpCall$NoContentResponseBody(okhttp3.MediaType,long) +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onSuccess(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_borderWidth +james.adaptiveicon.R$styleable: int AppCompatTheme_imageButtonStyle +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getTotal() +cyanogenmod.app.Profile$Type: Profile$Type() +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int INTERRUPTED +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: int sourceColor +androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_percent +com.google.android.material.R$attr: int fastScrollVerticalThumbDrawable +com.google.android.material.R$attr: int brightness +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_enterFadeDuration +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedPathSegments(java.lang.String) +com.google.android.material.R$styleable: int ActionBar_contentInsetEnd +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setO3(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWetBulbTemperature(java.lang.Integer) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_toLeftOf +com.google.android.material.R$id: int spline +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorHeight +com.google.android.gms.common.data.BitmapTeleporter: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$id: int outline +com.jaredrummler.android.colorpicker.R$styleable: int BackgroundStyle_selectableItemBackground +androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_percent +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalBias +androidx.constraintlayout.widget.R$attr: int framePosition +cyanogenmod.app.LiveLockScreenInfo: android.os.Parcelable$Creator CREATOR +okhttp3.CacheControl$Builder: CacheControl$Builder() +wangdaye.com.geometricweather.R$styleable: int MockView_mock_label +androidx.appcompat.widget.AppCompatButton: void setSupportCompoundDrawablesTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.settings.dialogs.TimeSetterDialog +okhttp3.internal.http2.Http2Connection$PingRunnable: int payload1 +com.jaredrummler.android.colorpicker.R$attr: int windowFixedHeightMinor +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setProvince(java.lang.String) +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderPackage +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_updateWeather_0 +wangdaye.com.geometricweather.R$drawable: int notif_temp_32 +com.google.android.material.textfield.TextInputLayout: void setErrorIconOnLongClickListener(android.view.View$OnLongClickListener) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Line2 +com.tencent.bugly.crashreport.CrashReport: boolean isLastSessionCrash() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton +com.google.android.material.appbar.CollapsingToolbarLayout: CollapsingToolbarLayout(android.content.Context) +androidx.preference.R$attr: int trackTintMode +androidx.preference.R$attr: int actionOverflowMenuStyle +wangdaye.com.geometricweather.R$color: int design_dark_default_color_secondary_variant +androidx.customview.R$id: int right_icon +okhttp3.internal.http.HttpHeaders: long stringToLong(java.lang.String) +com.google.android.material.R$styleable: int Layout_layout_constraintStart_toEndOf +wangdaye.com.geometricweather.R$drawable: int notif_temp_35 +androidx.recyclerview.R$string: int status_bar_notification_info_overflow +android.didikee.donate.R$layout: int abc_action_menu_layout +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_collapsedSize +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_side_padding +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_DASHES +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Invalid +wangdaye.com.geometricweather.common.basic.models.weather.Base: long getPublishTime() +android.didikee.donate.R$styleable: int[] PopupWindow +androidx.work.BackoffPolicy: androidx.work.BackoffPolicy LINEAR +com.tencent.bugly.proguard.w: com.tencent.bugly.proguard.w a() +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Snackbar +wangdaye.com.geometricweather.db.entities.WeatherEntity: long publishTime +wangdaye.com.geometricweather.R$color: int design_error +com.google.android.material.tabs.TabLayout: void setSelectedTabView(int) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabText +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_orientation +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWeatherText() +okhttp3.internal.http2.Http2Connection: boolean access$302(okhttp3.internal.http2.Http2Connection,boolean) +cyanogenmod.app.IPartnerInterface: void setMobileDataEnabled(boolean) +wangdaye.com.geometricweather.R$color: int abc_search_url_text +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleTintMode(android.graphics.PorterDuff$Mode) +com.google.gson.FieldNamingPolicy: java.lang.String translateName(java.lang.reflect.Field) +wangdaye.com.geometricweather.R$id: int widget_day_subtitle +androidx.preference.R$style: int Preference_SwitchPreferenceCompat +androidx.appcompat.resources.R$layout: int notification_action_tombstone +com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_android_background +android.didikee.donate.R$dimen: int abc_progress_bar_height_material +com.xw.repo.bubbleseekbar.R$dimen: int hint_alpha_material_light +androidx.preference.R$style: int Preference_DialogPreference_Material +james.adaptiveicon.R$attr: int titleMargin +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_SHA +wangdaye.com.geometricweather.R$attr: int cpv_allowPresets +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getWetBulbTemperature() +androidx.loader.R$id: int icon +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor GREY +wangdaye.com.geometricweather.R$drawable: int shortcuts_thunder_foreground +okio.RealBufferedSink: okio.BufferedSink write(byte[],int,int) +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String value +androidx.core.R$drawable: int notification_bg_low_pressed +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: void setRootAlpha(int) +com.google.android.material.R$id: int animateToStart +com.google.android.material.R$style: int Theme_Design_Light_NoActionBar +cyanogenmod.app.ILiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int Minute +okhttp3.Cache$Entry: void writeTo(okhttp3.internal.cache.DiskLruCache$Editor) +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginStart +androidx.preference.R$color: int material_grey_100 +wangdaye.com.geometricweather.R$style: int Theme_Design_BottomSheetDialog +com.google.android.material.R$attr: int dragThreshold +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction androidx.appcompat.R$style: int TextAppearance_AppCompat_Small_Inverse -okhttp3.HttpUrl: java.lang.String topPrivateDomain() -cyanogenmod.externalviews.ExternalView: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) -retrofit2.BuiltInConverters$UnitResponseBodyConverter: retrofit2.BuiltInConverters$UnitResponseBodyConverter INSTANCE -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DialogWhenLarge -com.jaredrummler.android.colorpicker.R$attr: int progressBarStyle -io.reactivex.internal.operators.observable.ObservableGroupBy$State: ObservableGroupBy$State(int,io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver,java.lang.Object,boolean) -io.reactivex.internal.subscriptions.EmptySubscription: void error(java.lang.Throwable,org.reactivestreams.Subscriber) -android.didikee.donate.R$attr: int contentInsetRight -com.tencent.bugly.proguard.l: byte[] a(java.nio.ByteBuffer) -james.adaptiveicon.R$style: int Widget_AppCompat_ProgressBar -cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.CustomTile customTile -androidx.swiperefreshlayout.R$dimen: int notification_subtext_size -wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_height_material -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric() -androidx.lifecycle.SavedStateHandleController$OnRecreation: SavedStateHandleController$OnRecreation() -retrofit2.Utils: java.lang.reflect.Type getParameterLowerBound(int,java.lang.reflect.ParameterizedType) -androidx.dynamicanimation.R$id: int tag_unhandled_key_event_manager +androidx.lifecycle.ViewModelProvider$NewInstanceFactory: ViewModelProvider$NewInstanceFactory() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +com.jaredrummler.android.colorpicker.R$attr: int editTextBackground +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: IExternalViewProviderFactory$Stub() +okhttp3.internal.http.HttpHeaders: okio.ByteString QUOTED_STRING_DELIMITERS +cyanogenmod.app.CustomTile$ExpandedStyle$1: CustomTile$ExpandedStyle$1() +androidx.swiperefreshlayout.R$integer +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void dispose() +james.adaptiveicon.R$attr: int fontWeight +wangdaye.com.geometricweather.db.entities.DailyEntity: void setCityId(java.lang.String) +androidx.viewpager2.R$styleable: int[] GradientColor +androidx.appcompat.R$styleable: int[] AlertDialog +wangdaye.com.geometricweather.R$string: int settings_notification_hide_icon_off +com.google.android.material.R$attr: int chipMinTouchTargetSize +com.google.android.material.R$attr: int trackColorActive +wangdaye.com.geometricweather.R$string: int abc_menu_alt_shortcut_label +okhttp3.internal.connection.ConnectInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +androidx.fragment.R$anim +com.github.rahatarmanahmed.cpv.CircularProgressView$7: void onAnimationUpdate(android.animation.ValueAnimator) +cyanogenmod.weather.CMWeatherManager$1$1: cyanogenmod.weather.CMWeatherManager$1 this$1 +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getRealFeelTemperature() +com.tencent.bugly.crashreport.common.info.a: java.lang.String T() +com.amap.api.location.AMapLocation: void writeToParcel(android.os.Parcel,int) +androidx.preference.R$styleable: int[] ActionMode +androidx.hilt.R$id: int accessibility_custom_action_29 +cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weatherservice.ServiceRequest$Status mStatus +com.tencent.bugly.proguard.ak: java.util.Map r +cyanogenmod.app.ThemeVersion: int getVersion() +retrofit2.RequestBuilder: java.util.regex.Pattern PATH_TRAVERSAL +wangdaye.com.geometricweather.db.entities.WeatherEntity: WeatherEntity() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex +com.google.android.material.R$attr: int actionBarItemBackground +com.google.android.material.textfield.TextInputLayout: void setStartIconOnLongClickListener(android.view.View$OnLongClickListener) +com.tencent.bugly.proguard.ad: byte[] a(byte[]) +wangdaye.com.geometricweather.R$attr: int textAppearanceCaption +okhttp3.internal.http2.Http2Writer: void close() +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: boolean validate(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeWidth +com.google.android.material.R$id: int action_mode_bar +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.WeatherEntity,int) +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox +wangdaye.com.geometricweather.R$string: int v7_preference_on +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_gravity +androidx.appcompat.R$dimen: int abc_text_size_menu_header_material +wangdaye.com.geometricweather.R$attr: int shapeAppearanceLargeComponent +wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_close_circle +wangdaye.com.geometricweather.settings.activities.PreviewIconActivity: PreviewIconActivity() +io.reactivex.observers.DisposableObserver: boolean isDisposed() +com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderVisible(boolean) +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object readKey(android.database.Cursor,int) +androidx.preference.R$attr: int allowStacking +android.didikee.donate.R$drawable: int notify_panel_notification_icon_bg +com.google.android.material.R$attr: int actionBarSplitStyle +androidx.appcompat.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +wangdaye.com.geometricweather.R$styleable: int Chip_chipStrokeColor +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mCallSetCommand +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog_MinWidth +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language valueOf(java.lang.String) +okhttp3.CipherSuite: okhttp3.CipherSuite forJavaName(java.lang.String) +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_MENU_ACTION +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onComplete() +com.google.android.material.R$drawable: int notification_bg +okhttp3.OkHttpClient: javax.net.ssl.SSLSocketFactory sslSocketFactory() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Solid +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: CaiYunMainlyResult$CurrentBean() +androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context,android.util.AttributeSet,int) +com.tencent.bugly.proguard.u: java.lang.String k +com.google.android.material.R$styleable: int TextAppearance_android_textFontWeight +com.turingtechnologies.materialscrollbar.R$id: int search_mag_icon +com.google.android.material.R$attr: int extendMotionSpec +james.adaptiveicon.R$styleable: int TextAppearance_android_shadowDx +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_disableDependentsState +james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintDimensionRatio +okhttp3.OkHttpClient: javax.net.ssl.HostnameVerifier hostnameVerifier +androidx.loader.R$styleable: int GradientColor_android_endColor +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +androidx.hilt.R$drawable +com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_dark +cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$Validator PROTECTED_COMPONENTS_VALIDATOR +wangdaye.com.geometricweather.R$color: int mtrl_btn_text_color_selector +com.tencent.bugly.crashreport.common.info.a: void b(java.lang.String,java.lang.String) +com.google.android.material.chip.Chip: void setCheckedIconResource(int) +androidx.appcompat.widget.Toolbar: void setTitleMarginStart(int) +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_scaleY +com.google.gson.JsonParseException: JsonParseException(java.lang.String) +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setDistanceToTriggerSync(int) +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_Alert +com.google.android.material.R$attr: int hideOnContentScroll com.jaredrummler.android.colorpicker.R$attr: int preferenceInformationStyle -james.adaptiveicon.R$drawable: int abc_ic_star_black_36dp -com.jaredrummler.android.colorpicker.R$attr: int measureWithLargestChild -io.reactivex.internal.observers.LambdaObserver: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarPopupTheme -com.jaredrummler.android.colorpicker.R$attr: int progressBarPadding -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom -com.bumptech.glide.R$id: int bottom -androidx.activity.R$color: int secondary_text_default_material_light -com.tencent.bugly.proguard.ab: byte[] a(byte[]) -com.google.android.gms.common.api.ApiException: int getStatusCode() -androidx.loader.R$id: int icon_group -cyanogenmod.app.suggest.IAppSuggestProvider$Stub: int TRANSACTION_handles_0 -com.google.android.material.R$attr: int materialCalendarStyle -com.google.android.material.datepicker.RangeDateSelector -androidx.coordinatorlayout.R$dimen: int compat_button_padding_vertical_material -okio.Okio$3: okio.Timeout timeout() -com.google.android.material.navigation.NavigationView: void setItemBackgroundResource(int) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_selection_line_height -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dark -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max -androidx.transition.R$id: int line1 -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: boolean isDaylight() -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -com.turingtechnologies.materialscrollbar.AlphabetIndicator -com.google.android.material.progressindicator.ProgressIndicator: void setTrackColor(int) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.subjects.UnicastSubject window -android.didikee.donate.R$drawable: int abc_ratingbar_indicator_material -james.adaptiveicon.R$styleable: int ActionBar_contentInsetEndWithActions -io.reactivex.Observable: io.reactivex.Observable sample(io.reactivex.ObservableSource,boolean) -androidx.appcompat.R$id: int titleDividerNoCustom -androidx.recyclerview.R$styleable: int GradientColor_android_centerColor -com.turingtechnologies.materialscrollbar.R$attr: int actionModeCloseDrawable -com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreference -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_switch_track -wangdaye.com.geometricweather.R$string: int sp_widget_text_setting -okhttp3.Authenticator: okhttp3.Request authenticate(okhttp3.Route,okhttp3.Response) -android.didikee.donate.R$layout: int abc_activity_chooser_view_list_item -wangdaye.com.geometricweather.R$attr: int motionDebug -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterOverflowTextColor -wangdaye.com.geometricweather.R$drawable: int notif_temp_39 -androidx.recyclerview.R$id: int notification_main_column -cyanogenmod.os.Build: Build() -retrofit2.BuiltInConverters$ToStringConverter: java.lang.String convert(java.lang.Object) -androidx.fragment.R$styleable: int FontFamily_fontProviderAuthority -cyanogenmod.weather.WeatherInfo: double mHumidity -com.google.android.material.R$attr: int tabIndicatorHeight -com.google.android.material.R$styleable: int MaterialButtonToggleGroup_selectionRequired -com.tencent.bugly.crashreport.CrashReport: int getUserDatasSize(android.content.Context) -retrofit2.http.QueryMap: boolean encoded() -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onDetach() -androidx.fragment.R$id: int accessibility_custom_action_14 -wangdaye.com.geometricweather.R$attr: int helperText -wangdaye.com.geometricweather.R$color: int abc_decor_view_status_guard -cyanogenmod.weather.WeatherLocation: java.lang.String getCountryId() -cyanogenmod.app.ProfileManager: boolean notificationGroupExists(java.lang.String) -cyanogenmod.externalviews.ExternalViewProviderService: ExternalViewProviderService() -cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long,boolean,int) -androidx.work.R$styleable: int[] GradientColor -androidx.recyclerview.R$styleable: int ColorStateListItem_android_color -okhttp3.internal.ws.WebSocketWriter -okhttp3.OkHttpClient$Builder: boolean retryOnConnectionFailure -wangdaye.com.geometricweather.R$attr: int currentState -okhttp3.ResponseBody: byte[] bytes() -wangdaye.com.geometricweather.R$id: int navigation_header_container -com.jaredrummler.android.colorpicker.R$string: int abc_menu_shift_shortcut_label -com.turingtechnologies.materialscrollbar.R$attr: int actionBarWidgetTheme -androidx.viewpager.R$id: int info -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onScreenTurnedOn -wangdaye.com.geometricweather.R$animator: int weather_snow_3 -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy -androidx.preference.R$style: int Widget_AppCompat_Button_Small -androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_item_min_width -com.turingtechnologies.materialscrollbar.R$style: int Animation_Design_BottomSheetDialog -androidx.transition.R$attr: int fontProviderAuthority -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_subtitle_material_toolbar -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_SNOW_SHOWERS -wangdaye.com.geometricweather.R$layout: int widget_clock_day_symmetry -com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String c(android.content.Context) -com.google.android.material.R$drawable: int abc_btn_borderless_material -androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragThreshold -wangdaye.com.geometricweather.R$id: int textinput_prefix_text -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY -okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part create(okhttp3.Headers,okhttp3.RequestBody) -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display4 -androidx.preference.R$styleable: int ActionBar_divider -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetRight -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getUrl() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String tempMax -james.adaptiveicon.R$string: int abc_toolbar_collapse_description -com.google.android.material.R$string: int character_counter_content_description -androidx.core.R$dimen: int notification_small_icon_size_as_large -okhttp3.OkHttpClient: okhttp3.Dns dns() -com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setRightToLeft(boolean) -androidx.lifecycle.ProcessLifecycleOwner: int mStartedCounter -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -cyanogenmod.profiles.RingModeSettings$1 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabView -wangdaye.com.geometricweather.R$layout: int widget_clock_day_week -wangdaye.com.geometricweather.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_min -okhttp3.OkHttpClient$1: boolean connectionBecameIdle(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: android.app.Application mApplication -com.turingtechnologies.materialscrollbar.R$attr: int color -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_bias -james.adaptiveicon.R$layout: int abc_activity_chooser_view_list_item -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: int Age -com.jaredrummler.android.colorpicker.R$styleable: int[] PopupWindowBackgroundState -io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicLong requested -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitation -cyanogenmod.weather.RequestInfo: java.lang.String mCityName -com.tencent.bugly.proguard.a: java.util.HashMap a -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: java.lang.String level -james.adaptiveicon.R$color: int primary_text_disabled_material_dark -cyanogenmod.alarmclock.ClockContract: ClockContract() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type BOTTOM -com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat PREFER_ARGB_8888 -wangdaye.com.geometricweather.db.entities.AlertEntity: long getTime() -androidx.lifecycle.ClassesInfoCache$MethodReference: ClassesInfoCache$MethodReference(int,java.lang.reflect.Method) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat -okhttp3.Headers: Headers(java.lang.String[]) -android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -io.reactivex.internal.queue.SpscArrayQueue -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_viewInflaterClass -okhttp3.HttpUrl -wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_barLength -androidx.swiperefreshlayout.R$id: int async -wangdaye.com.geometricweather.R$styleable: int Slider_thumbStrokeColor -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setChecked(boolean) -com.google.android.material.R$attr: int autoSizePresetSizes -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast -androidx.lifecycle.FullLifecycleObserverAdapter -android.didikee.donate.R$styleable: int View_paddingEnd -androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat -okhttp3.Cache$CacheRequestImpl: Cache$CacheRequestImpl(okhttp3.Cache,okhttp3.internal.cache.DiskLruCache$Editor) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_elevation -android.didikee.donate.R$attr: int editTextStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getUvDescription() -com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_selectionRequired -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer getDbz() -com.google.android.material.circularreveal.cardview.CircularRevealCardView: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -com.google.android.material.textfield.TextInputLayout: void setSuffixText(java.lang.CharSequence) -com.jaredrummler.android.colorpicker.R$attr: int backgroundTintMode -okhttp3.internal.publicsuffix.PublicSuffixDatabase: PublicSuffixDatabase() -retrofit2.ParameterHandler$Part: okhttp3.Headers headers -com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_android_popupAnimationStyle -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: io.reactivex.Observer observer -com.google.android.material.button.MaterialButtonToggleGroup: void setSingleSelection(int) -com.baidu.location.e.p: p(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_NoActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.util.Date StartTime -androidx.customview.R$styleable: R$styleable() -com.google.android.material.R$color: int mtrl_chip_close_icon_tint -com.google.android.material.R$styleable: int BottomNavigationView_itemIconTint -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: int getAnimationMode() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dark_ActionBar -com.google.gson.stream.JsonWriter: void push(int) -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayVerticalWidgetConfigActivity: Hilt_ClockDayVerticalWidgetConfigActivity() -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableStart -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_16dp -wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_singlechoice -cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_FORWARD_LOOKUP -androidx.preference.R$style: int ThemeOverlay_AppCompat_Light +okhttp3.internal.io.FileSystem$1: okio.Source source(java.io.File) +retrofit2.ParameterHandler$RelativeUrl: void apply(retrofit2.RequestBuilder,java.lang.Object) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getCityId() +okhttp3.internal.http2.Http2Reader$ContinuationSource: byte flags +com.jaredrummler.android.colorpicker.ColorPreferenceCompat +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: long serialVersionUID +cyanogenmod.providers.CMSettings$System: java.lang.String ASSIST_WAKE_SCREEN +cyanogenmod.weather.RequestInfo$1: java.lang.Object[] newArray(int) +okhttp3.Dns: java.util.List lookup(java.lang.String) +com.google.android.material.R$dimen: int abc_action_bar_default_padding_end_material +android.didikee.donate.R$attr: int homeAsUpIndicator +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator +androidx.constraintlayout.widget.R$string: int abc_toolbar_collapse_description +androidx.lifecycle.MediatorLiveData: void onInactive() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_APP_SWITCH_LONG_PRESS_ACTION_VALIDATOR +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: ObservableObserveOn$ObserveOnObserver(io.reactivex.Observer,io.reactivex.Scheduler$Worker,boolean,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setDirection(java.lang.String) +cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService this$0 +com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd +androidx.work.ArrayCreatingInputMerger: ArrayCreatingInputMerger() +com.google.android.material.R$attr: int buttonBarStyle +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification +okhttp3.CacheControl: boolean isPrivate() +com.jaredrummler.android.colorpicker.R$integer: int config_tooltipAnimTime +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer apparentTemperature +androidx.appcompat.widget.AppCompatImageView: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onComplete() +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchTextAppearance +androidx.lifecycle.Lifecycle$State +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: ObservableWindow$WindowSkipObserver(io.reactivex.Observer,long,long,int) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber) +wangdaye.com.geometricweather.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +com.google.android.material.R$dimen: int mtrl_btn_text_btn_padding_left +com.jaredrummler.android.colorpicker.R$attr: int layout_behavior +com.tencent.bugly.proguard.x: boolean b(java.lang.Throwable) +androidx.versionedparcelable.CustomVersionedParcelable: CustomVersionedParcelable() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum() +com.amap.api.location.AMapLocation: java.lang.String getRoad() +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_orderInCategory +androidx.appcompat.R$styleable: int GradientColor_android_endColor +okhttp3.internal.http2.Http2: byte FLAG_ACK +androidx.loader.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: java.lang.String WeatherCode +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light_normal_background +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar_TextView +androidx.preference.R$style: int Theme_AppCompat_Light_DialogWhenLarge +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_titleTextStyle +com.xw.repo.bubbleseekbar.R$dimen: int abc_progress_bar_height_material +io.reactivex.Observable: io.reactivex.Single reduce(java.lang.Object,io.reactivex.functions.BiFunction) +wangdaye.com.geometricweather.R$id: int tag_accessibility_heading +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_SECURE_SETTINGS +androidx.customview.R$styleable: int ColorStateListItem_android_color +com.turingtechnologies.materialscrollbar.R$id: R$id() +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_toBottomOf +androidx.appcompat.R$styleable: int MenuGroup_android_orderInCategory +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onNext(java.lang.Object) +james.adaptiveicon.R$styleable: int TextAppearance_android_shadowRadius +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_normal_material_dark +androidx.room.RoomDatabase$JournalMode +com.bumptech.glide.load.engine.CallbackException +com.tencent.bugly.crashreport.crash.a: boolean e +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: long idx +com.tencent.bugly.Bugly: java.lang.String[] b +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +com.tencent.bugly.crashreport.crash.CrashDetailBean: boolean N +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: boolean done +com.google.android.material.bottomappbar.BottomAppBar: float getFabTranslationX() +wangdaye.com.geometricweather.R$style: int TestStyleWithoutLineHeight +io.reactivex.Observable: io.reactivex.Observable ambWith(io.reactivex.ObservableSource) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_menu_material +android.didikee.donate.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CUSTOM_VALUES_VALIDATOR +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf +androidx.vectordrawable.animated.R$id: int tag_screen_reader_focusable +com.turingtechnologies.materialscrollbar.R$drawable: int notification_tile_bg +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_NoActionBar +okio.RealBufferedSource: boolean exhausted() +wangdaye.com.geometricweather.R$id: int dialog_background_location_setButton +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Temperature +com.google.android.material.chip.Chip: void setIconStartPadding(float) +com.amap.api.fence.PoiItem: java.lang.String getTypeCode() +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_4_30 +androidx.appcompat.R$attr: int paddingTopNoTitle +wangdaye.com.geometricweather.R$id: int widget_remote_drawable +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_title_divider_material +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +com.google.android.material.textfield.TextInputLayout: void setEndIconTintList(android.content.res.ColorStateList) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop +androidx.customview.R$styleable: int FontFamilyFont_fontStyle +android.didikee.donate.R$styleable: int AppCompatTheme_seekBarStyle +retrofit2.OkHttpCall$NoContentResponseBody: okhttp3.MediaType contentType() +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_bias +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +com.tencent.bugly.proguard.ak: java.util.Map s +cyanogenmod.externalviews.KeyguardExternalView: void onDetachedFromWindow() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: java.lang.String textCount +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String windDirection +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: int status +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollEnabled +wangdaye.com.geometricweather.R$id: int item_weather_daily_value_value +okhttp3.internal.platform.AndroidPlatform: javax.net.ssl.SSLContext getSSLContext() +cyanogenmod.weatherservice.IWeatherProviderService$Stub +androidx.hilt.work.R$id: int right_side +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,byte[]) +com.google.android.material.R$dimen: int abc_text_size_display_4_material +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_EditText +androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getCurrentDrawable() +wangdaye.com.geometricweather.R$layout: int dialog_running_in_background +wangdaye.com.geometricweather.R$drawable: int ic_github +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_backgroundTint +androidx.dynamicanimation.R$integer +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean cancelled +androidx.coordinatorlayout.R$id: int accessibility_custom_action_13 +cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_GAMMA_CALIBRATION +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_shrinkMotionSpec +androidx.preference.R$style: int Base_Widget_AppCompat_PopupMenu +androidx.preference.R$drawable: R$drawable() +cyanogenmod.externalviews.KeyguardExternalView$1: void onServiceDisconnected(android.content.ComponentName) +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$attr: int contentPaddingTop +androidx.fragment.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$styleable: int[] ActionMenuView +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_ttcIndex +james.adaptiveicon.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +androidx.preference.R$attr: int switchTextAppearance +retrofit2.adapter.rxjava2.CallExecuteObservable: CallExecuteObservable(retrofit2.Call) +androidx.appcompat.resources.R$id: int icon +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableItem_android_drawable +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_cut_mtrl_alpha +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_31 +androidx.appcompat.R$styleable: int MenuGroup_android_menuCategory +com.xw.repo.bubbleseekbar.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +com.google.android.material.R$id: int fixed +androidx.constraintlayout.widget.R$styleable: int MenuItem_showAsAction +james.adaptiveicon.R$attr: int actionMenuTextColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean getSpeed() +com.google.android.material.R$styleable: int TextInputLayout_startIconTint +com.turingtechnologies.materialscrollbar.R$attr: int thumbTint +androidx.appcompat.resources.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language DUTCH +androidx.preference.R$layout: int image_frame +androidx.constraintlayout.widget.R$attr: int drawableLeftCompat +okhttp3.Response$Builder: okhttp3.Response$Builder body(okhttp3.ResponseBody) +io.reactivex.Observable: io.reactivex.Observable doOnSubscribe(io.reactivex.functions.Consumer) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int COLD +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_DarkActionBar +androidx.lifecycle.LiveData$AlwaysActiveObserver +androidx.appcompat.widget.Toolbar: int getTitleMarginTop() +androidx.appcompat.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.recyclerview.R$styleable: R$styleable() +retrofit2.Converter$Factory: Converter$Factory() +okhttp3.logging.LoggingEventListener: void connectStart(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy) +wangdaye.com.geometricweather.R$string: int key_view_type +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Body2 +androidx.swiperefreshlayout.R$attr: int swipeRefreshLayoutProgressSpinnerBackgroundColor +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.util.concurrent.TimeUnit unit +wangdaye.com.geometricweather.R$string: int feedback_background_location_summary +wangdaye.com.geometricweather.R$attr: int listPreferredItemHeightLarge +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: java.lang.String Unit +com.google.android.material.R$layout: int notification_template_part_time +com.turingtechnologies.materialscrollbar.R$dimen: int abc_panel_menu_list_width +androidx.hilt.work.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$attr: int dropdownListPreferredItemHeight +okhttp3.internal.http2.Header: int hashCode() +com.jaredrummler.android.colorpicker.R$styleable: int Preference_summary +com.google.android.material.R$id: int activity_chooser_view_content +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipEndPadding +androidx.lifecycle.ViewModelProvider$Factory +com.google.android.material.R$attr: int layout_collapseParallaxMultiplier +wangdaye.com.geometricweather.R$style: int Base_Widget_Design_TabLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: void setValue(java.lang.String) +androidx.viewpager.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.util.List value +androidx.constraintlayout.widget.R$styleable: int[] KeyTrigger +com.tencent.bugly.proguard.z: byte[] b(byte[],int,int,java.lang.String) +james.adaptiveicon.R$drawable: int abc_btn_default_mtrl_shape +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWindDirection() +com.turingtechnologies.materialscrollbar.R$id: int pin +okhttp3.Headers: Headers(okhttp3.Headers$Builder) +androidx.vectordrawable.R$styleable: int GradientColor_android_centerX +com.tencent.bugly.BuglyStrategy: java.lang.String e +androidx.appcompat.widget.AppCompatImageView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.R$string: int widget_day_week +androidx.core.R$dimen: int compat_notification_large_icon_max_height +retrofit2.Utils: java.lang.RuntimeException parameterError(java.lang.reflect.Method,int,java.lang.String,java.lang.Object[]) +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean setDisposable(io.reactivex.disposables.Disposable,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: java.util.List value +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +androidx.preference.R$styleable: int StateListDrawableItem_android_drawable +com.google.android.gms.base.R$string: int common_google_play_services_updating_text +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: java.lang.String Unit +com.bumptech.glide.R$style +wangdaye.com.geometricweather.R$styleable: int MaterialTextView_lineHeight +androidx.preference.R$attr: int contentInsetEndWithActions +com.turingtechnologies.materialscrollbar.R$id: int reservedNamedId +com.tencent.bugly.crashreport.biz.b: int h() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) +com.google.android.gms.common.api.UnsupportedApiCallException +com.google.android.material.appbar.CollapsingToolbarLayout: void setVisibility(int) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String iconUrl +com.amap.api.location.AMapLocationClientOption: AMapLocationClientOption() +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_goIcon +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableEndCompat +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogTheme +wangdaye.com.geometricweather.R$id: int source +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_greyIcon +com.jaredrummler.android.colorpicker.R$style: int Preference_CheckBoxPreference_Material androidx.preference.R$styleable: int SwitchPreference_summaryOff -okhttp3.internal.ws.WebSocketWriter: okhttp3.internal.ws.WebSocketWriter$FrameSink frameSink -androidx.appcompat.R$attr: int elevation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX() -androidx.appcompat.R$attr: int thumbTintMode -okio.GzipSource: byte FCOMMENT -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: CompositeException$CompositeExceptionCausalChain() -com.xw.repo.BubbleSeekBar: void setBubbleColor(int) -com.google.android.material.R$styleable: int NavigationView_headerLayout -wangdaye.com.geometricweather.R$bool: int abc_config_actionMenuItemAllCaps -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_height -wangdaye.com.geometricweather.main.layouts.MainLayoutManager -wangdaye.com.geometricweather.R$attr: int circleRadius -wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -androidx.preference.R$style: int Base_Widget_AppCompat_PopupWindow -cyanogenmod.externalviews.ExternalViewProviderService: android.os.Handler access$100(cyanogenmod.externalviews.ExternalViewProviderService) -com.tencent.bugly.proguard.u: boolean a(com.tencent.bugly.proguard.u,boolean) -com.jaredrummler.android.colorpicker.R$style: int Base_V22_Theme_AppCompat_Light -com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu -androidx.coordinatorlayout.R$attr: int layout_keyline -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_brightness -com.turingtechnologies.materialscrollbar.R$string: int abc_capital_off -com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$EntrySet entrySet -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String so2 -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_dividerPadding -androidx.vectordrawable.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotationY -wangdaye.com.geometricweather.R$xml: int widget_day_week -com.jaredrummler.android.colorpicker.R$id: int src_in -android.didikee.donate.R$styleable: int DrawerArrowToggle_arrowShaftLength -androidx.recyclerview.R$styleable: int FontFamily_fontProviderCerts -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableItem_android_id -androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_begin -wangdaye.com.geometricweather.R$styleable: int Constraint_pathMotionArc -com.bumptech.glide.integration.okhttp.R$id: int right_side -cyanogenmod.hardware.CMHardwareManager: int FEATURE_KEY_DISABLE -io.reactivex.internal.util.NotificationLite: boolean isDisposable(java.lang.Object) -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_normal_material_light -android.didikee.donate.R$id: int action_text -com.google.android.material.R$styleable: int Chip_shapeAppearanceOverlay -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric() -com.tencent.bugly.crashreport.common.info.a: void d() -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder followSslRedirects(boolean) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: double lon -com.google.android.material.R$interpolator: int mtrl_fast_out_linear_in -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -com.google.gson.JsonIOException -wangdaye.com.geometricweather.R$styleable: int ActionBar_background -androidx.work.impl.background.systemalarm.SystemAlarmService -wangdaye.com.geometricweather.R$string: int common_google_play_services_wear_update_text -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Small -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_background -com.tencent.bugly.crashreport.biz.UserInfoBean: java.util.Map r -androidx.appcompat.R$color: int switch_thumb_normal_material_dark -androidx.hilt.R$id: int time -wangdaye.com.geometricweather.R$layout: int design_navigation_item -androidx.appcompat.R$styleable: int MenuItem_actionLayout -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -wangdaye.com.geometricweather.R$id: int widget_clock_day_sensibleTemp -androidx.appcompat.R$string: int abc_menu_enter_shortcut_label -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType BAIDU -com.google.android.material.slider.BaseSlider: int getAccessibilityFocusedVirtualViewId() -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_chainStyle -okhttp3.internal.http.StatusLine: okhttp3.Protocol protocol -com.tencent.bugly.crashreport.common.info.a: boolean S() -okhttp3.ConnectionPool$1: okhttp3.ConnectionPool this$0 -wangdaye.com.geometricweather.main.MainActivity: void onSearchBarClicked(android.view.View) -androidx.loader.R$layout: int notification_action_tombstone -okhttp3.Protocol: okhttp3.Protocol[] values() -androidx.appcompat.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog -androidx.cardview.widget.CardView: CardView(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingTop -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_136 -com.amap.api.location.AMapLocation: int D -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_layout -androidx.loader.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.String TABLENAME -retrofit2.RequestBuilder: java.lang.String method -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getThunderstorm() -okio.BufferedSource: int read(byte[]) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Tooltip -retrofit2.BuiltInConverters$StreamingResponseBodyConverter: java.lang.Object convert(java.lang.Object) -cyanogenmod.providers.CMSettings$System: boolean putInt(android.content.ContentResolver,java.lang.String,int) -okhttp3.CertificatePinner$Pin: boolean matches(java.lang.String) -okhttp3.internal.http2.Http2: byte FLAG_END_HEADERS -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginTop -androidx.preference.R$attr: int maxHeight -wangdaye.com.geometricweather.R$drawable: int tooltip_frame_dark -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.util.Date getDate() -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_MediumComponent -com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context) -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_default_mtrl_shape -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Latitude -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_CompactMenu -cyanogenmod.weather.IRequestInfoListener$Stub: cyanogenmod.weather.IRequestInfoListener asInterface(android.os.IBinder) -androidx.appcompat.widget.SearchView: void setSubmitButtonEnabled(boolean) -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_LOW_COLOR -wangdaye.com.geometricweather.R$integer: int cpv_default_anim_swoop_duration -wangdaye.com.geometricweather.R$drawable: int shortcuts_hail_foreground -androidx.appcompat.R$id: int search_badge -androidx.viewpager2.R$id: int action_text -com.turingtechnologies.materialscrollbar.R$style: int Platform_V21_AppCompat -com.tencent.bugly.proguard.s: java.util.Map a(java.net.HttpURLConnection) -androidx.preference.R$attr: int colorAccent -io.reactivex.observers.TestObserver$EmptyObserver: void onError(java.lang.Throwable) -com.google.android.material.R$styleable: int AppCompatTheme_colorPrimary -com.jaredrummler.android.colorpicker.R$color: int abc_tint_default -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat -androidx.work.R$id: int accessibility_custom_action_30 -androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog -cyanogenmod.externalviews.ExternalView$3: cyanogenmod.externalviews.ExternalView this$0 -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.util.List SupplementalAdminAreas -com.google.android.material.R$dimen: int mtrl_btn_elevation -com.tencent.bugly.proguard.y$a: boolean d(com.tencent.bugly.proguard.y$a) -com.google.android.material.R$attr: int editTextBackground -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String[] VALID_KEYS -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -com.google.android.material.slider.BaseSlider: float getValueFrom() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: AccuCurrentResult$TemperatureSummary$Past12HourRange() -android.didikee.donate.R$style: int Base_AlertDialog_AppCompat_Light -okhttp3.Cache$CacheRequestImpl -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onError(java.lang.Throwable) -cyanogenmod.app.PartnerInterface: int ZEN_MODE_NO_INTERRUPTIONS -okhttp3.Cookie: Cookie(java.lang.String,java.lang.String,long,java.lang.String,java.lang.String,boolean,boolean,boolean,boolean) -wangdaye.com.geometricweather.R$layout: int item_weather_daily_wind -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipBackgroundColor -com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_900 -com.tencent.bugly.crashreport.common.info.a: boolean y -com.google.android.gms.common.internal.zaw -com.turingtechnologies.materialscrollbar.R$attr: int trackTint -james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy -com.amap.api.location.AMapLocation$1 -wangdaye.com.geometricweather.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -org.greenrobot.greendao.AbstractDao: java.lang.Object loadUniqueAndCloseCursor(android.database.Cursor) -wangdaye.com.geometricweather.R$dimen: int abc_text_size_title_material_toolbar -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator MENU_WAKE_SCREENN_VALIDATOR -androidx.activity.R$attr: int fontProviderCerts -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListMenuView -android.didikee.donate.R$attr: int paddingTopNoTitle -androidx.appcompat.widget.SwitchCompat: void setTrackTintMode(android.graphics.PorterDuff$Mode) -wangdaye.com.geometricweather.R$styleable: int NavigationView_shapeAppearanceOverlay -androidx.constraintlayout.widget.R$id: int action_menu_presenter -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onResume() -com.bumptech.glide.R$id: int end -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitleTextAppearance -androidx.hilt.work.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: java.lang.String unitAbbreviation -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -androidx.work.impl.background.systemjob.SystemJobService -com.tencent.bugly.proguard.ap: boolean b -androidx.appcompat.R$styleable: int Toolbar_contentInsetEndWithActions -com.jaredrummler.android.colorpicker.R$color: int abc_hint_foreground_material_light -james.adaptiveicon.R$attr: int textAppearanceSearchResultSubtitle -io.reactivex.disposables.RunnableDisposable: long serialVersionUID -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamily -com.google.android.material.R$styleable: int Constraint_layout_constraintTop_toBottomOf -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setAnimationMode(int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTintMode -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias -android.didikee.donate.R$color: int highlighted_text_material_light -com.google.android.material.R$drawable: int abc_list_selector_disabled_holo_light -androidx.appcompat.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.R$id: int notification_base_icon -okhttp3.Dispatcher: int maxRequests -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getGrassLevel() -wangdaye.com.geometricweather.R$styleable: int Constraint_android_transformPivotY -cyanogenmod.app.BaseLiveLockManagerService$1: BaseLiveLockManagerService$1(cyanogenmod.app.BaseLiveLockManagerService) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream newStream(int,java.util.List,boolean) +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) +androidx.appcompat.widget.AppCompatImageButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +james.adaptiveicon.R$style: int Widget_AppCompat_DropDownItem_Spinner +androidx.appcompat.widget.LinearLayoutCompat: void setShowDividers(int) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean done +androidx.preference.R$styleable: int SwitchCompat_android_textOff +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER_X +androidx.constraintlayout.widget.R$attr: int colorError +androidx.fragment.R$anim: R$anim() +james.adaptiveicon.R$string: int abc_searchview_description_search +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitationProbability +wangdaye.com.geometricweather.R$id: int right_side +androidx.swiperefreshlayout.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$attr: int itemMaxLines +androidx.preference.R$styleable: int SwitchPreference_android_switchTextOff +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_default +android.didikee.donate.R$id: int action_image +androidx.legacy.coreutils.R$attr: int fontProviderFetchTimeout +androidx.preference.R$attr: int windowNoTitle +com.google.android.material.R$attr: int saturation +io.reactivex.Observable: io.reactivex.Observable error(java.lang.Throwable) +okhttp3.OkHttpClient: okhttp3.internal.cache.InternalCache internalCache() +com.google.android.material.R$attr: int actionMenuTextColor +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.turingtechnologies.materialscrollbar.R$layout: int notification_action_tombstone +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: int unitArrayIndex +cyanogenmod.app.ProfileManager: android.content.Context mContext +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.disposables.Disposable upstream +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onError(java.lang.Throwable) +androidx.fragment.app.Fragment +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onError(java.lang.Throwable) +androidx.coordinatorlayout.R$string: R$string() +wangdaye.com.geometricweather.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Bridge +okhttp3.MultipartBody: java.lang.StringBuilder appendQuotedString(java.lang.StringBuilder,java.lang.String) +wangdaye.com.geometricweather.R$attr: int suffixText +wangdaye.com.geometricweather.R$drawable: int indicator_ltr +com.bumptech.glide.R$styleable: int FontFamilyFont_fontStyle +cyanogenmod.media.MediaRecorder: java.lang.String EXTRA_HOTWORD_INPUT_STATE +com.bumptech.glide.R$dimen: int notification_small_icon_background_padding +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button +io.reactivex.internal.subscribers.DeferredScalarSubscriber: boolean hasValue +com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.StrategyBean d() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float totalPrecipitationProbability +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +okhttp3.MediaType: java.lang.String QUOTED +com.turingtechnologies.materialscrollbar.R$attr: int popupMenuStyle +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +com.jaredrummler.android.colorpicker.R$attr: int actionBarPopupTheme +james.adaptiveicon.R$drawable: int abc_btn_check_to_on_mtrl_000 +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_visible +com.google.android.material.R$attr: int constraints +androidx.lifecycle.DefaultLifecycleObserver +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String WeatherText +androidx.coordinatorlayout.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_elevation +androidx.constraintlayout.widget.R$color: int background_material_dark +android.didikee.donate.R$dimen: int abc_action_button_min_width_overflow_material +wangdaye.com.geometricweather.R$color: int material_blue_grey_950 +wangdaye.com.geometricweather.R$drawable: int flag_el +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.R$string: int common_google_play_services_update_title +com.jaredrummler.android.colorpicker.R$attr: int viewInflaterClass +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: ObservableConcatMapMaybe$ConcatMapMaybeMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,io.reactivex.internal.util.ErrorMode) +com.google.android.material.R$color: int abc_primary_text_material_dark +wangdaye.com.geometricweather.R$attr: int trackColorActive +com.turingtechnologies.materialscrollbar.R$attr: int defaultQueryHint +com.google.android.material.R$id: int design_navigation_view +androidx.constraintlayout.widget.R$attr: int buttonBarStyle +okhttp3.Cache: int ENTRY_COUNT +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle +com.xw.repo.bubbleseekbar.R$id: R$id() +wangdaye.com.geometricweather.R$string: int feedback_cannot_start_live_wallpaper_activity +retrofit2.OptionalConverterFactory: retrofit2.Converter$Factory INSTANCE +com.google.android.material.R$attr: int motionStagger +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getCollapseContentDescription() +wangdaye.com.geometricweather.R$string: int feedback_black_text +androidx.constraintlayout.widget.R$styleable: int Toolbar_collapseContentDescription +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind +androidx.recyclerview.widget.RecyclerView: void setClipToPadding(boolean) +okhttp3.Response: boolean isSuccessful() +cyanogenmod.externalviews.KeyguardExternalView: android.content.ServiceConnection mServiceConnection +james.adaptiveicon.R$anim: R$anim() +okhttp3.internal.cache.CacheInterceptor$1: okhttp3.internal.cache.CacheInterceptor this$0 +okio.Source +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: int uv +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_elevation +android.didikee.donate.R$drawable: int abc_ratingbar_indicator_material +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.TableStatements statements +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_toId +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotation +androidx.constraintlayout.widget.R$layout: int select_dialog_item_material +okhttp3.MediaType: boolean equals(java.lang.Object) +androidx.lifecycle.extensions.R$id: int forever +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +wangdaye.com.geometricweather.R$styleable: int[] PreferenceImageView +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removeAllQueryParameters(java.lang.String) +com.google.android.material.internal.ParcelableSparseArray: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$id: int linear +okhttp3.Address: okhttp3.Authenticator proxyAuthenticator +androidx.legacy.coreutils.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeTopLeft +com.xw.repo.bubbleseekbar.R$dimen: int notification_top_pad +com.jaredrummler.android.colorpicker.ColorPickerView: int getPreferredWidth() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextEnabled +wangdaye.com.geometricweather.R$id: int left +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter daytimeWindDegreeConverter +com.github.rahatarmanahmed.cpv.CircularProgressView$3 +okio.Buffer: okio.Buffer copyTo(okio.Buffer,long,long) +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setEnableANRCrashMonitor(boolean) +com.jaredrummler.android.colorpicker.R$dimen: int abc_panel_menu_list_width +com.google.android.material.R$styleable: int NavigationView_itemMaxLines +com.google.android.material.R$dimen: int tooltip_horizontal_padding +wangdaye.com.geometricweather.R$attr: int chipSpacingHorizontal +androidx.vectordrawable.R$drawable: int notification_template_icon_bg +androidx.hilt.R$string: int status_bar_notification_info_overflow +com.amap.api.location.AMapLocationClient: void disableBackgroundLocation(boolean) +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constrainedWidth +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_navigationMode +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeMinTextSize +cyanogenmod.providers.CMSettings$System$2 +androidx.core.R$color: int notification_icon_bg_color +androidx.core.app.RemoteActionCompat +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizePresetSizes +com.google.android.material.R$id: int header_title +wangdaye.com.geometricweather.R$id: int widget_clock_day_todayTemp +wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_grey +io.reactivex.internal.observers.DeferredScalarDisposable: void complete() +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_constantSize +android.didikee.donate.R$styleable: int DrawerArrowToggle_drawableSize +android.support.v4.os.IResultReceiver +com.turingtechnologies.materialscrollbar.R$id: int buttonPanel +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Borderless +androidx.preference.R$anim: int fragment_fade_enter +com.google.android.material.R$attr: int maxActionInlineWidth +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeWetBulbTemperature +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTag +androidx.lifecycle.LifecycleRegistry: void sync() +androidx.viewpager2.R$id: int normal +androidx.fragment.R$id: int accessibility_custom_action_13 +cyanogenmod.externalviews.KeyguardExternalView$1 +com.google.android.material.R$style: int TextAppearance_AppCompat_Medium +wangdaye.com.geometricweather.search.SearchActivityViewModel +com.turingtechnologies.materialscrollbar.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaContainer +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: double Value +okio.RealBufferedSink: okio.Buffer buffer() +cyanogenmod.providers.CMSettings$Secure: java.lang.String ADB_PORT +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_headerBackground +okhttp3.Protocol: okhttp3.Protocol H2_PRIOR_KNOWLEDGE +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_LOW +wangdaye.com.geometricweather.R$attr: int contentPaddingRight +james.adaptiveicon.R$dimen: int disabled_alpha_material_dark +com.google.android.material.R$styleable: int DrawerArrowToggle_gapBetweenBars +androidx.constraintlayout.widget.R$integer +wangdaye.com.geometricweather.R$layout: int abc_action_mode_close_item_material +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customBoolean +okhttp3.OkHttpClient: okhttp3.Cache cache() +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: java.lang.Exception $this_suspendAndThrow$inlined +wangdaye.com.geometricweather.R$styleable: int[] KeyPosition +cyanogenmod.weather.RequestInfo$1: cyanogenmod.weather.RequestInfo[] newArray(int) +com.tencent.bugly.proguard.z: byte[] b(byte[],int,java.lang.String) +wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment: void setOnWeatherSourceChangedListener(wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment$OnWeatherSourceChangedListener) +com.turingtechnologies.materialscrollbar.R$id: int textinput_counter +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_Dialog +androidx.appcompat.R$dimen: int abc_action_bar_elevation_material +io.reactivex.Observable: io.reactivex.observers.TestObserver test() +androidx.hilt.R$id: int accessibility_custom_action_28 +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_baselineAligned +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_WIFI +com.xw.repo.bubbleseekbar.R$color: int dim_foreground_material_dark +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +com.google.android.material.R$id: int material_clock_hand +android.didikee.donate.R$styleable: int Toolbar_titleTextAppearance +com.xw.repo.bubbleseekbar.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality() +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onNext(java.lang.Object) +androidx.appcompat.widget.AppCompatImageView: android.content.res.ColorStateList getSupportImageTintList() +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemHorizontalTranslationEnabled(boolean) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_0 +com.bumptech.glide.R$attr: int fontWeight +com.google.android.material.R$dimen: int mtrl_snackbar_background_corner_radius +androidx.loader.R$id: int tag_unhandled_key_listeners +android.didikee.donate.R$color: int bright_foreground_inverse_material_light +com.google.android.material.R$color: int abc_search_url_text_normal +com.tencent.bugly.crashreport.crash.c: void a(com.tencent.bugly.crashreport.crash.CrashDetailBean) +androidx.coordinatorlayout.R$id: int actions +retrofit2.ParameterHandler$QueryMap: boolean encoded +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit valueOf(java.lang.String) +okio.SegmentedByteString: java.lang.String base64Url() +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy +com.tencent.bugly.crashreport.biz.a: void a(int,boolean,long) +com.google.android.material.tabs.TabLayout$TabView: int getContentWidth() +cyanogenmod.weather.util.WeatherUtils: WeatherUtils() +com.turingtechnologies.materialscrollbar.Handle: void setRightToLeft(boolean) +wangdaye.com.geometricweather.R$drawable: int notif_temp_30 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String no2Desc +androidx.cardview.widget.CardView: float getCardElevation() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor +cyanogenmod.alarmclock.ClockContract$InstancesColumns +com.tencent.bugly.proguard.aj: void a(com.tencent.bugly.proguard.i) +androidx.constraintlayout.helper.widget.Layer: void setTranslationX(float) +cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.ICMTelephonyManager sService +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display4 +okio.AsyncTimeout$Watchdog: void run() +wangdaye.com.geometricweather.R$attr: int bottom_text_color +com.google.android.material.R$styleable: int TextInputLayout_hintEnabled +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginStart +com.jaredrummler.android.colorpicker.R$layout: int abc_action_menu_layout +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +cyanogenmod.app.CustomTile$ExpandedStyle: void internalSetExpandedItems(java.util.ArrayList) +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconGravity +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder writeTimeout(java.time.Duration) +androidx.appcompat.resources.R$dimen: int notification_large_icon_width +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLBTN_MUSIC_CONTROLS_VALIDATOR +com.google.android.material.card.MaterialCardView: void setDragged(boolean) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_stacked_max_height +com.google.android.material.R$attr: int listChoiceIndicatorSingleAnimated +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderAuthority +okio.RealBufferedSource: boolean isOpen() +androidx.preference.R$attr: int actionModeCloseDrawable +wangdaye.com.geometricweather.remoteviews.config.Hilt_DailyTrendWidgetConfigActivity +cyanogenmod.weather.util.WeatherUtils: boolean isValidTempUnit(int) +com.baidu.location.e.l$b: java.lang.String h +com.google.android.material.R$color: int mtrl_filled_stroke_color +okhttp3.internal.ws.WebSocketWriter: boolean isClient +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: int size +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status[] values() +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean terminated +wangdaye.com.geometricweather.R$drawable: int abc_cab_background_top_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$attr: int msb_scrollMode +android.didikee.donate.R$style: int Widget_AppCompat_DrawerArrowToggle +com.tencent.bugly.crashreport.crash.b: java.util.List b() +androidx.preference.R$styleable: int AlertDialog_buttonPanelSideLayout +com.turingtechnologies.materialscrollbar.R$color: int mtrl_text_btn_text_color_selector +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_sheet_peek_height_min +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setIndices(java.util.List) +androidx.appcompat.R$drawable: int abc_tab_indicator_mtrl_alpha +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver +com.google.android.material.R$attr: int toolbarId +androidx.constraintlayout.widget.R$attr: int logo +androidx.preference.R$attr: int layout_anchorGravity +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar_Small +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float icePrecipitationProbability +androidx.constraintlayout.helper.widget.Layer: void setPivotX(float) +androidx.appcompat.R$styleable: int SwitchCompat_thumbTint +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String country +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelMenuListWidth +androidx.viewpager.widget.ViewPager: void addOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRealFeelShaderTemperature +okhttp3.OkHttpClient$1 +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +androidx.appcompat.widget.LinearLayoutCompat: float getWeightSum() +androidx.constraintlayout.widget.R$layout: int select_dialog_singlechoice_material +androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: AccuDailyResult$DailyForecasts$Day$Snow() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_toBottomOf +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Title +wangdaye.com.geometricweather.R$styleable: int Transform_android_transformPivotX +androidx.constraintlayout.widget.R$attr: int windowFixedWidthMinor +androidx.constraintlayout.widget.R$attr: int background +cyanogenmod.weather.WeatherInfo$DayForecast: int describeContents() +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +com.google.android.material.R$drawable: int material_ic_keyboard_arrow_right_black_24dp +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle NATIVE +cyanogenmod.externalviews.ExternalView$8 +wangdaye.com.geometricweather.R$id: int search_voice_btn +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +com.google.android.material.R$styleable: int ConstraintSet_flow_firstHorizontalBias +retrofit2.http.POST +com.google.android.material.R$style: int Widget_AppCompat_Button_Borderless_Colored +okhttp3.internal.http2.PushObserver$1: boolean onHeaders(int,java.util.List,boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int ScrimInsetsFrameLayout_insetForeground +cyanogenmod.weatherservice.WeatherProviderService$1: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max +android.didikee.donate.R$color: int material_grey_100 +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String mixNMatchKeyToComponent(java.lang.String) +com.tencent.bugly.crashreport.biz.UserInfoBean: java.lang.String m +com.google.android.material.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +com.jaredrummler.android.colorpicker.R$attr: int listItemLayout +io.reactivex.Observable: io.reactivex.Observable wrap(io.reactivex.ObservableSource) +androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy +androidx.lifecycle.Lifecycling +androidx.preference.R$styleable: int ActionMode_closeItemLayout +wangdaye.com.geometricweather.R$string: int path_password_eye +androidx.vectordrawable.R$id: int icon_group +okio.BufferedSource: java.lang.String readUtf8() +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder mRemote +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: BaseTransientBottomBar$SnackbarBaseLayout(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_alphabeticModifiers +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_background +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets +okhttp3.internal.cache.DiskLruCache$Editor: okhttp3.internal.cache.DiskLruCache this$0 +androidx.appcompat.widget.AppCompatButton: int getAutoSizeTextType() +androidx.loader.R$styleable: int FontFamilyFont_android_fontVariationSettings +android.didikee.donate.R$drawable: int abc_text_cursor_material +androidx.appcompat.R$styleable: int LinearLayoutCompat_measureWithLargestChild +androidx.work.R$layout: int notification_template_icon_group +androidx.constraintlayout.widget.R$drawable: int abc_textfield_default_mtrl_alpha +androidx.hilt.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$id: int mtrl_calendar_frame +okhttp3.internal.ws.RealWebSocket$1 +androidx.recyclerview.R$id: int line3 +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: android.os.IBinder asBinder() +android.didikee.donate.R$styleable: int AppCompatTextView_textLocale +androidx.preference.R$styleable: int AppCompatTheme_textColorSearchUrl +androidx.preference.R$id: int accessibility_custom_action_31 +com.bumptech.glide.R$dimen: int compat_button_inset_horizontal_material +androidx.preference.R$styleable: int TextAppearance_android_textFontWeight +okhttp3.EventListener: void callFailed(okhttp3.Call,java.io.IOException) +retrofit2.Utils: java.lang.reflect.Type resolve(java.lang.reflect.Type,java.lang.Class,java.lang.reflect.Type) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason INITIALIZE +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Medium +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State SUCCEEDED +cyanogenmod.profiles.StreamSettings: void setValue(int) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_21 +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_height +com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context) +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.R$drawable: int ic_launcher +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_timeText +com.google.android.material.R$styleable: int KeyTimeCycle_transitionPathRotate +androidx.constraintlayout.widget.R$id: int animateToStart +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerX +com.bumptech.glide.R$attr: R$attr() +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_statusBarScrim +com.google.android.material.R$attr: int counterTextColor +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getWindDegree() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotation +com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonCompat +wangdaye.com.geometricweather.R$drawable: int abc_switch_thumb_material +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_maxWidth +wangdaye.com.geometricweather.R$attr: int fabCradleRoundedCornerRadius +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog +retrofit2.ParameterHandler$Path: int p +androidx.appcompat.R$styleable: int AppCompatTheme_viewInflaterClass +com.xw.repo.bubbleseekbar.R$attr: int goIcon +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: boolean inMaybe +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setWeekText(java.lang.String) +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.ColorPickerDialog: ColorPickerDialog() +com.google.android.material.R$styleable: int KeyTrigger_framePosition +okhttp3.ConnectionSpec: boolean isTls() +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_left_mtrl_light +com.google.android.material.R$attr: int tickColorInactive +wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_3 +okhttp3.internal.connection.RealConnection$1: void close() +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_iconStartPadding +com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_MODE_SAVING +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.internal.util.AtomicThrowable errors +com.google.android.material.slider.BaseSlider: float getStepSize() +okio.DeflaterSink: boolean closed +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +cyanogenmod.power.IPerformanceManager$Stub$Proxy: int getNumberOfProfiles() +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_seekbar_material +com.google.android.material.R$id: int notification_background +androidx.preference.R$attr: int progressBarStyle +wangdaye.com.geometricweather.R$dimen: int material_clock_hand_stroke_width +com.tencent.bugly.proguard.z: boolean c(java.lang.String) +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplJellybeanMr2 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: org.reactivestreams.Subscriber downstream +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean modifyInHour +wangdaye.com.geometricweather.R$id: int packed +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_colored_material +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getMoonSetDate() +wangdaye.com.geometricweather.R$color: int error_color_material_dark +androidx.hilt.lifecycle.R$dimen +com.turingtechnologies.materialscrollbar.TouchScrollBar: TouchScrollBar(android.content.Context,android.util.AttributeSet,int) +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType PNG_A +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: double Value +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RealFeelShaderTemperature +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +com.google.android.material.bottomappbar.BottomAppBar: float getFabTranslationY() +android.didikee.donate.R$styleable: int MenuGroup_android_visible +wangdaye.com.geometricweather.R$styleable: int ActionBar_hideOnContentScroll +com.jaredrummler.android.colorpicker.R$drawable: R$drawable() +androidx.lifecycle.OnLifecycleEvent +com.turingtechnologies.materialscrollbar.R$attr: int fabSize +androidx.activity.R$id: int accessibility_custom_action_4 +okio.InflaterSource: boolean closed +okhttp3.HttpUrl: java.lang.String encodedPassword() +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorAccent +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction +androidx.fragment.app.BackStackRecord +wangdaye.com.geometricweather.R$id: int item_weather_daily_air_title +com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String a +androidx.recyclerview.widget.RecyclerView: void setNestedScrollingEnabled(boolean) +androidx.preference.R$styleable: int AppCompatTheme_dialogPreferredPadding +wangdaye.com.geometricweather.R$styleable: int ArcProgress_text_color +wangdaye.com.geometricweather.R$attr: int layout_constraintTag +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onNext(java.lang.Object) +com.google.android.material.R$id: int checkbox +wangdaye.com.geometricweather.R$font: int product_sans_regular +androidx.appcompat.widget.AbsActionBarView: void setContentHeight(int) +com.turingtechnologies.materialscrollbar.R$attr: int autoSizeMinTextSize +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +androidx.dynamicanimation.R$dimen: int notification_subtext_size +androidx.dynamicanimation.R$drawable: int notification_bg_low_normal +androidx.dynamicanimation.R$layout: int notification_template_icon_group +androidx.core.R$dimen: int compat_button_inset_vertical_material +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_logo +com.turingtechnologies.materialscrollbar.R$attr: int buttonStyle +io.reactivex.Observable: io.reactivex.Observable startWith(java.lang.Object) +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_iconifiedByDefault +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_textColor +com.tencent.bugly.crashreport.biz.b: long f androidx.recyclerview.R$dimen: int fastscroll_margin -androidx.appcompat.resources.R$id: int accessibility_custom_action_6 -android.didikee.donate.R$styleable: int SearchView_android_maxWidth -wangdaye.com.geometricweather.R$attr: int itemFillColor -androidx.viewpager.R$styleable: int[] GradientColorItem -com.tencent.bugly.proguard.d: void a(byte[]) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -com.google.android.material.R$style: int Platform_Widget_AppCompat_Spinner -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation BOTTOM -com.google.android.material.R$style: int Widget_Design_BottomNavigationView -okio.BufferedSource: long readLongLe() -okio.Buffer: void write(okio.Buffer,long) -james.adaptiveicon.R$attr: int multiChoiceItemLayout -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSize(int) -androidx.swiperefreshlayout.R$dimen: int notification_right_side_padding_top -com.loc.k -retrofit2.RequestFactory$Builder: boolean gotPart -androidx.constraintlayout.widget.R$styleable: int AlertDialog_showTitle -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1 -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: int index -androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Dialog -com.google.android.material.chip.Chip: void setCloseIconSize(float) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LOCK_WALLPAPER_THUMBNAIL -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView -androidx.appcompat.resources.R$drawable: int notification_template_icon_bg -com.turingtechnologies.materialscrollbar.MaterialScrollBar: int getMode() -wangdaye.com.geometricweather.R$drawable: int weather_fog_pixel -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActivityChooserView -com.google.android.material.R$attr: int materialCalendarHeaderConfirmButton -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setStatus(int) -cyanogenmod.externalviews.KeyguardExternalView$7: cyanogenmod.externalviews.KeyguardExternalView this$0 -wangdaye.com.geometricweather.R$string: int cloud_cover -android.support.v4.app.INotificationSideChannel$Stub: java.lang.String DESCRIPTOR -com.google.android.material.button.MaterialButton: void removeOnCheckedChangeListener(com.google.android.material.button.MaterialButton$OnCheckedChangeListener) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: CNWeatherResult$Pm25() -androidx.appcompat.R$drawable: int abc_list_focused_holo -android.didikee.donate.R$styleable: int AppCompatTextView_drawableBottomCompat -com.xw.repo.bubbleseekbar.R$attr: int navigationIcon -wangdaye.com.geometricweather.R$dimen: int notification_main_column_padding_top -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification -okhttp3.internal.ws.WebSocketProtocol: int B1_MASK_LENGTH -com.jaredrummler.android.colorpicker.R$styleable: int[] Toolbar -com.tencent.bugly.proguard.am: java.lang.String n -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextAppearanceInactive(int) -okhttp3.internal.cache2.Relay: long bufferMaxSize -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String brandId -com.google.android.material.R$drawable: int abc_ic_go_search_api_material -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator T9_SEARCH_INPUT_LOCALE_VALIDATOR -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void setFirst(io.reactivex.internal.operators.observable.ObservableReplay$Node) -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.util.Date date -cyanogenmod.externalviews.KeyguardExternalView: android.content.ServiceConnection mServiceConnection -com.google.android.material.R$dimen: int mtrl_textinput_box_corner_radius_small -wangdaye.com.geometricweather.R$anim: int abc_popup_enter -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_256_CCM_8_SHA256 -androidx.appcompat.R$layout: int notification_action -androidx.preference.R$dimen: int fastscroll_margin -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver parent -androidx.drawerlayout.R$id: int notification_background -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_warmth -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogStyle -com.google.android.material.circularreveal.cardview.CircularRevealCardView: CircularRevealCardView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: java.lang.String English -wangdaye.com.geometricweather.R$layout: int mtrl_layout_snackbar -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_with_text_radius +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void complete() +androidx.hilt.R$styleable: int GradientColorItem_android_offset +android.didikee.donate.R$attr: int dialogPreferredPadding +com.google.android.material.appbar.AppBarLayout$Behavior: AppBarLayout$Behavior(android.content.Context,android.util.AttributeSet) +james.adaptiveicon.R$styleable: int FontFamily_fontProviderPackage +org.greenrobot.greendao.AbstractDao: void updateInsideSynchronized(java.lang.Object,android.database.sqlite.SQLiteStatement,boolean) +com.amap.api.location.AMapLocation: java.lang.String getProvider() +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Large +com.bumptech.glide.integration.okhttp.R$attr: int layout_dodgeInsetEdges +com.jaredrummler.android.colorpicker.R$attr: int dividerVertical +com.google.android.material.R$color: int material_deep_teal_500 +com.google.android.material.R$styleable: int TextInputLayout_counterTextAppearance +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvDescription(java.lang.String) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_backgroundColorEnd +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_2 +androidx.hilt.work.R$dimen +androidx.appcompat.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: void dispose() +wangdaye.com.geometricweather.R$id: int labelGroup +com.jaredrummler.android.colorpicker.R$attr: int alertDialogTheme +cyanogenmod.providers.CMSettings$DiscreteValueValidator: CMSettings$DiscreteValueValidator(java.lang.String[]) +wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService +com.bumptech.glide.R$styleable: int FontFamily_fontProviderPackage +com.xw.repo.bubbleseekbar.R$style: int Base_AlertDialog_AppCompat_Light +com.jaredrummler.android.colorpicker.R$attr: int indeterminateProgressStyle +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean +com.google.android.material.R$integer: int mtrl_tab_indicator_anim_duration_ms +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getDegreeDayTemperature() +androidx.appcompat.R$attr: int textColorSearchUrl +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter +androidx.constraintlayout.widget.R$string: int abc_action_mode_done +androidx.preference.R$id +android.didikee.donate.R$attr: int editTextStyle +com.github.rahatarmanahmed.cpv.CircularProgressView$1 +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy UPPER_CAMEL_CASE +com.google.android.material.R$styleable: int[] ActionMode +com.amap.api.location.AMapLocationClientOption: long getInterval() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: AccuMinuteResult() +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: java.util.Date StartDateTime +androidx.fragment.R$id: int accessibility_custom_action_3 +com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_DropDownUp +com.google.android.material.chip.Chip: void setLines(int) +okhttp3.internal.http2.Http2Reader$ContinuationSource: void close() +wangdaye.com.geometricweather.R$dimen: int trend_item_width +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_scaleY +okio.Options: okio.ByteString[] byteStrings +com.google.android.material.R$dimen: int mtrl_calendar_year_width +androidx.coordinatorlayout.R$styleable: int GradientColor_android_startX +androidx.activity.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleEnabled +okhttp3.internal.cache.DiskLruCache: DiskLruCache(okhttp3.internal.io.FileSystem,java.io.File,int,int,long,java.util.concurrent.Executor) +androidx.work.R$dimen: int compat_notification_large_icon_max_height +james.adaptiveicon.R$attr: int dropdownListPreferredItemHeight +androidx.preference.R$attr: int tint +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider NATIVE +androidx.constraintlayout.widget.R$color: int abc_tint_seek_thumb +androidx.recyclerview.R$dimen: int notification_right_side_padding_top +com.google.android.material.R$color: int design_default_color_on_surface +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +androidx.activity.R$styleable: int ColorStateListItem_android_alpha +com.google.gson.internal.LinkedTreeMap: java.util.Set entrySet() +com.google.android.material.slider.BaseSlider: void setThumbElevationResource(int) +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_visible +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorContentDescription +androidx.appcompat.widget.SearchView: void setSearchableInfo(android.app.SearchableInfo) +com.google.android.material.button.MaterialButton: android.graphics.drawable.Drawable getIcon() +android.didikee.donate.R$styleable: int Spinner_android_popupBackground +com.jaredrummler.android.colorpicker.R$layout: int abc_search_view +com.tencent.bugly.proguard.s: java.net.HttpURLConnection a(java.lang.String,java.lang.String) +com.tencent.bugly.crashreport.crash.jni.b: java.util.List a +com.google.android.material.R$id: int dragStart +wangdaye.com.geometricweather.R$attr: int helperTextEnabled +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String getCode() +james.adaptiveicon.R$style: int Widget_AppCompat_ListView_DropDown +androidx.fragment.R$drawable: int notification_bg_low_normal +james.adaptiveicon.R$attr: int actionBarTabBarStyle +james.adaptiveicon.R$dimen: int abc_edit_text_inset_horizontal_material +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWetBulbTemperature(java.lang.Integer) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_16dp +com.google.android.material.R$layout: int mtrl_alert_select_dialog_multichoice +com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_pressed +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicReference upstream +androidx.preference.R$styleable: int[] AnimatedStateListDrawableTransition +com.xw.repo.bubbleseekbar.R$style: int Platform_AppCompat_Light +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.R$id: int header_title +retrofit2.Retrofit: retrofit2.ServiceMethod loadServiceMethod(java.lang.reflect.Method) +com.xw.repo.bubbleseekbar.R$string: int abc_shareactionprovider_share_with +androidx.constraintlayout.widget.R$id: int none +wangdaye.com.geometricweather.db.entities.LocationEntityDao: LocationEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) com.xw.repo.bubbleseekbar.R$id: int action_bar_root -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area -androidx.preference.R$color: int bright_foreground_inverse_material_light -com.google.android.material.chip.Chip: android.graphics.Rect getCloseIconTouchBoundsInt() -androidx.constraintlayout.widget.R$styleable: int ActionBar_displayOptions -okhttp3.internal.http2.Http2Codec: java.lang.String CONNECTION -com.google.android.material.textfield.TextInputLayout: void setStartIconContentDescription(java.lang.CharSequence) -wangdaye.com.geometricweather.R$color: int abc_primary_text_disable_only_material_dark -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Caption -com.tencent.bugly.crashreport.inner.InnerApi: void postCocos2dxCrashAsync(int,java.lang.String,java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$id: int activity_widget_config_viewStyleContainer -okhttp3.internal.ws.RealWebSocket$Message: okio.ByteString data -com.google.android.material.R$drawable: int abc_textfield_search_material -android.didikee.donate.R$drawable: int notification_bg_normal_pressed -androidx.preference.R$styleable: int ActionBar_homeLayout -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_descendantFocusability -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getTempMin() -androidx.preference.R$attr: int spinnerDropDownItemStyle -com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Time -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$dimen: int abc_list_item_height_small_material -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String unitId -wangdaye.com.geometricweather.R$attr: int alpha -com.jaredrummler.android.colorpicker.R$layout: int abc_tooltip -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_textLocale +wangdaye.com.geometricweather.R$layout: int preference_widget_seekbar +com.jaredrummler.android.colorpicker.R$string: int abc_action_bar_home_description +com.google.android.material.R$styleable: int KeyPosition_drawPath +wangdaye.com.geometricweather.R$styleable: int MaterialRadioButton_useMaterialThemeColors +androidx.hilt.work.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: java.lang.String Unit +com.xw.repo.bubbleseekbar.R$styleable: int[] StateListDrawableItem +androidx.activity.R$drawable: int notification_bg_low +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_switchTextOff +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List dailyForecasts +androidx.lifecycle.extensions.R$styleable: int FragmentContainerView_android_tag +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_dependency +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setCo(java.lang.String) +com.google.android.material.R$attr: int maxWidth +androidx.constraintlayout.widget.R$styleable: int ActionMode_height +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getAqiIndex() +wangdaye.com.geometricweather.R$color: int colorRootDark_dark +cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weather.RequestInfo mInfo +com.turingtechnologies.materialscrollbar.R$id: int title_template +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Spinner_Underlined +okio.BufferedSource: long indexOfElement(okio.ByteString,long) +android.support.v4.os.IResultReceiver$Default: void send(int,android.os.Bundle) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf +androidx.loader.R$dimen: int notification_top_pad_large_text +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setFont(java.lang.String) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onNext(java.lang.Object) +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLocationCacheEnable(boolean) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_11 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: CaiYunMainlyResult$CurrentBean$HumidityBean() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd +com.tencent.bugly.proguard.k: java.lang.String toString() +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostStarted(android.app.Activity) +wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_item +wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_bottom_start +androidx.appcompat.resources.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$drawable: int notification_bg_normal +com.xw.repo.bubbleseekbar.R$styleable: int[] RecycleListView +androidx.constraintlayout.helper.widget.Flow: void setHorizontalAlign(int) +wangdaye.com.geometricweather.db.entities.DaoMaster +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection +com.tencent.bugly.crashreport.biz.b: long e +androidx.recyclerview.R$drawable +com.google.android.material.R$attr: int boxCornerRadiusBottomStart +com.tencent.bugly.crashreport.common.strategy.StrategyBean: StrategyBean() +com.google.android.material.R$styleable: int KeyAttribute_android_translationZ +androidx.recyclerview.R$drawable: int notification_tile_bg +androidx.lifecycle.Lifecycle: Lifecycle() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabBar +okhttp3.RequestBody$2: byte[] val$content +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchTouchEvent(android.view.MotionEvent) +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetStart +io.reactivex.internal.util.NotificationLite$SubscriptionNotification +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets +androidx.appcompat.resources.R$drawable: int notification_template_icon_low_bg +okhttp3.TlsVersion +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_MEDIUM_COLOR +wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardTitle +wangdaye.com.geometricweather.R$xml: int widget_week +okhttp3.internal.connection.RouteSelector: void resetNextProxy(okhttp3.HttpUrl,java.net.Proxy) +cyanogenmod.weatherservice.WeatherProviderService$1: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_size +androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat +com.google.android.material.navigation.NavigationView: void setNavigationItemSelectedListener(com.google.android.material.navigation.NavigationView$OnNavigationItemSelectedListener) +androidx.preference.R$styleable: int ActionMode_titleTextStyle +com.google.gson.stream.JsonWriter: boolean htmlSafe +com.tencent.bugly.crashreport.common.info.b: java.lang.String e() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: int UnitType +androidx.hilt.work.R$id: int tag_screen_reader_focusable +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Snackbar +com.google.android.material.R$layout: int abc_cascading_menu_item_layout +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String providerId +com.google.android.material.R$attr: int recyclerViewStyle +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias +io.reactivex.internal.subscriptions.SubscriptionArbiter: long serialVersionUID +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Button +com.turingtechnologies.materialscrollbar.R$id: int spacer +wangdaye.com.geometricweather.R$attr: int collapsedSize +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +androidx.viewpager2.R$dimen: int notification_large_icon_width +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.vectordrawable.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$dimen: int material_helper_text_font_1_3_padding_horizontal +okhttp3.MediaType: java.nio.charset.Charset charset() +io.reactivex.internal.util.NotificationLite$DisposableNotification: NotificationLite$DisposableNotification(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_disableDependentsState +com.google.android.material.R$dimen: int abc_action_bar_elevation_material +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarItemBackground +cyanogenmod.profiles.BrightnessSettings: cyanogenmod.profiles.BrightnessSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +com.google.android.material.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +okio.Buffer: okio.Buffer writeTo(java.io.OutputStream) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constrainedWidth +okhttp3.internal.http1.Http1Codec: int state +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_selectableItemBackground +android.didikee.donate.R$attr: int titleTextStyle +cyanogenmod.profiles.LockSettings: int mValue +com.turingtechnologies.materialscrollbar.R$attr: int itemHorizontalTranslationEnabled +com.bumptech.glide.R$id: int start +androidx.fragment.R$drawable: int notification_action_background +androidx.preference.R$attr: int order +androidx.transition.R$id: int icon_group +james.adaptiveicon.R$dimen: int abc_dialog_title_divider_material +androidx.preference.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer wetBulbTemperature +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +okio.BufferedSource: boolean rangeEquals(long,okio.ByteString) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +cyanogenmod.weather.CMWeatherManager$RequestStatus +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +com.google.android.material.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +wangdaye.com.geometricweather.R$id: int right_icon +wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_1_3_padding_bottom +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTextView io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) -androidx.preference.R$drawable: int abc_ic_clear_material -james.adaptiveicon.R$styleable: int AppCompatTheme_dividerVertical -io.reactivex.Observable: io.reactivex.Completable flatMapCompletable(io.reactivex.functions.Function) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_inset -androidx.preference.R$styleable: int MenuItem_actionViewClass -com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_Overflow -com.xw.repo.bubbleseekbar.R$attr: int spinnerDropDownItemStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeMinTextSize -android.didikee.donate.R$color: int material_grey_800 -cyanogenmod.providers.CMSettings$System: java.lang.String VOLUME_ADJUST_SOUNDS_ENABLED -com.tencent.bugly.crashreport.biz.b: android.app.Application$ActivityLifecycleCallbacks k -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.xw.repo.bubbleseekbar.R$attr: int layout_keyline -androidx.preference.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_scaleY -androidx.work.R$attr: int fontWeight -com.turingtechnologies.materialscrollbar.R$attr: int layout_collapseParallaxMultiplier -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSwoopDuration -com.bumptech.glide.integration.okhttp.R$string -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: void setBrands(java.util.List) -wangdaye.com.geometricweather.R$styleable: int KeyCycle_transitionEasing -wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -androidx.appcompat.R$dimen: int abc_search_view_preferred_width -cyanogenmod.profiles.StreamSettings: StreamSettings(android.os.Parcel) -com.tencent.bugly.crashreport.common.info.a: java.lang.String v -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindContainer -androidx.appcompat.R$dimen: int abc_dropdownitem_icon_width -androidx.viewpager.R$color -wangdaye.com.geometricweather.R$styleable: int Transform_android_rotation -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void close(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver,long) -com.tencent.bugly.proguard.al -com.google.android.material.R$attr: int windowFixedHeightMajor -wangdaye.com.geometricweather.R$attr: int orderingFromXml -com.google.android.material.button.MaterialButtonToggleGroup: void setSelectionRequired(boolean) -com.google.android.material.R$styleable: int Layout_layout_constraintStart_toEndOf -okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: okhttp3.internal.http2.Settings val$settings -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -wangdaye.com.geometricweather.R$string: int key_speed_unit -io.reactivex.internal.util.AtomicThrowable: java.lang.Throwable terminate() -wangdaye.com.geometricweather.R$attr: int fontProviderCerts -wangdaye.com.geometricweather.R$font: int product_sans_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: java.lang.String Unit -wangdaye.com.geometricweather.R$color: int abc_decor_view_status_guard_light -android.support.v4.os.IResultReceiver$Stub: IResultReceiver$Stub() +com.xw.repo.bubbleseekbar.R$id: int action_bar_container +retrofit2.DefaultCallAdapterFactory +android.didikee.donate.R$attr: int actionMenuTextAppearance +cyanogenmod.app.LiveLockScreenManager +com.google.android.material.R$styleable: int TextInputLayout_placeholderTextColor +android.didikee.donate.R$attr: int drawableSize +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_liftOnScroll +androidx.appcompat.R$attr: int panelBackground +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric +wangdaye.com.geometricweather.R$id: int BOTTOM_END +com.google.android.material.textfield.TextInputLayout: void setEndIconContentDescription(int) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType[] values() +com.google.android.material.R$id: int autoCompleteToStart +androidx.constraintlayout.widget.R$attr: int paddingBottomNoButtons +retrofit2.ParameterHandler +wangdaye.com.geometricweather.R$style: int Widget_Compat_NotificationActionContainer +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_CLOSE +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String LongPhrase +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.CMWeatherManager sInstance +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: double Value +com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_Primary +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Button +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: ObservableUnsubscribeOn$UnsubscribeObserver(io.reactivex.Observer,io.reactivex.Scheduler) +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge +androidx.preference.R$dimen: int abc_text_size_medium_material +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ListPopupWindow +com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$id: int image +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem +com.google.android.material.button.MaterialButton: java.lang.String getA11yClassName() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String getUnit() +androidx.transition.R$id: int normal +james.adaptiveicon.R$drawable: int abc_item_background_holo_light +androidx.constraintlayout.widget.R$styleable: int Constraint_motionStagger +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX +wangdaye.com.geometricweather.R$id: int activity_widget_config +wangdaye.com.geometricweather.R$attr: int checkBoxPreferenceStyle +com.xw.repo.bubbleseekbar.R$attr: int buttonTint +okhttp3.Cache$CacheRequestImpl +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle +okhttp3.CertificatePinner$Builder: java.util.List pins +com.google.android.material.R$attr: int listPreferredItemHeightSmall +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_width_material +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light_BottomSheetDialog +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure Pressure +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitleTextColor +com.tencent.bugly.crashreport.crash.CrashDetailBean: long G +wangdaye.com.geometricweather.R$attr: int allowDividerAbove +com.google.android.material.R$dimen: int mtrl_progress_indicator_size +com.xw.repo.bubbleseekbar.R$attr: int actionModeWebSearchDrawable +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_SHOW_WEATHER +wangdaye.com.geometricweather.R$attr: int type +com.google.android.material.R$attr: int alertDialogCenterButtons +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_LOW +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onComplete() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm10 +com.xw.repo.bubbleseekbar.R$style: int AlertDialog_AppCompat +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference upstream +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: long serialVersionUID +james.adaptiveicon.R$attr: int alertDialogTheme +com.google.android.material.R$attr: int materialThemeOverlay +okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String key() +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onError(java.lang.Throwable) +com.google.gson.stream.JsonWriter: void setHtmlSafe(boolean) +androidx.vectordrawable.R$id: int line3 +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable +cyanogenmod.app.CustomTile: boolean collapsePanel +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType PNG +androidx.work.R$attr: int alpha +wangdaye.com.geometricweather.R$styleable: int ActionBar_progressBarPadding +androidx.core.app.RemoteActionCompatParcelizer: void write(androidx.core.app.RemoteActionCompat,androidx.versionedparcelable.VersionedParcel) +com.bumptech.glide.Registry$NoModelLoaderAvailableException +com.google.android.material.bottomappbar.BottomAppBar$Behavior: BottomAppBar$Behavior(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$styleable: int ActionBar_titleTextStyle +com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_OFF +com.tencent.bugly.crashreport.CrashReport$UserStrategy: CrashReport$UserStrategy(android.content.Context) +io.reactivex.Observable: io.reactivex.Observable never() +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_colorShape +android.didikee.donate.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: boolean done +com.turingtechnologies.materialscrollbar.R$attr: int chipIcon +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: CompletableFutureCallAdapterFactory$ResponseCallAdapter(java.lang.reflect.Type) +androidx.preference.R$attr: int showAsAction +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_57 +cyanogenmod.app.CMContextConstants$Features +cyanogenmod.util.ColorUtils: int generateAlertColorFromDrawable(android.graphics.drawable.Drawable) +com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_top_material +cyanogenmod.profiles.RingModeSettings: boolean isDirty() +com.google.android.material.button.MaterialButton: void setCornerRadiusResource(int) +androidx.constraintlayout.widget.R$drawable: int abc_cab_background_top_material +com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableCompat +com.google.android.material.textfield.TextInputLayout: void setErrorTextColor(android.content.res.ColorStateList) +androidx.preference.R$style: int Widget_Compat_NotificationActionContainer +com.google.android.material.R$attr: int font +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: void setHistogramAlpha(float) +androidx.preference.R$style: int TextAppearance_AppCompat_Menu +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Borderless +com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$style: int Base_Animation_AppCompat_Dialog +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode valueOf(java.lang.String) +com.xw.repo.bubbleseekbar.R$anim: int abc_slide_out_bottom +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean getForecastDaily() +androidx.viewpager2.R$style +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getVibratorIntensity +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.concurrent.atomic.AtomicReference error +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyle +org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType valueOf(java.lang.String) +androidx.vectordrawable.R$attr: int fontProviderCerts +io.reactivex.exceptions.ProtocolViolationException: long serialVersionUID +androidx.appcompat.R$drawable: int btn_radio_on_mtrl +james.adaptiveicon.R$styleable: int MenuItem_android_icon +androidx.appcompat.widget.FitWindowsLinearLayout: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) +com.google.android.material.R$styleable: int ConstraintSet_flow_verticalGap +com.google.android.material.R$id: int save_overlay_view +wangdaye.com.geometricweather.R$id: int textSpacerNoButtons +androidx.appcompat.R$style: int Widget_AppCompat_Button +androidx.constraintlayout.widget.R$layout: int notification_template_part_time +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: java.util.ArrayDeque windows +androidx.legacy.coreutils.R$string: int status_bar_notification_info_overflow +androidx.constraintlayout.widget.R$attr: int layout_constraintCircle +androidx.appcompat.R$dimen: int abc_seekbar_track_progress_height_material +retrofit2.HttpServiceMethod$SuspendForResponse: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration getPrecipitationDuration() +wangdaye.com.geometricweather.R$id: int scale +retrofit2.ParameterHandler$Body: ParameterHandler$Body(java.lang.reflect.Method,int,retrofit2.Converter) +androidx.preference.R$styleable: int SwitchCompat_trackTintMode +wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitleTextAppearance +com.xw.repo.bubbleseekbar.R$id: int shortcut +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +com.google.android.material.R$dimen: int design_navigation_item_icon_padding +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean done +cyanogenmod.themes.ThemeChangeRequest: android.os.Parcelable$Creator CREATOR +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: java.util.concurrent.TimeUnit unit +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void dispose() +wangdaye.com.geometricweather.R$attr: int bsb_thumb_text_size +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_to_on_mtrl_015 +com.google.android.material.R$style: int ThemeOverlay_AppCompat_ActionBar +com.jaredrummler.android.colorpicker.R$dimen: int abc_seekbar_track_background_height_material +cyanogenmod.app.ThemeVersion: java.util.List getComponentVersions() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarStyle +wangdaye.com.geometricweather.R$string: int settings_notification_can_be_cleared_off +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_GLOBAL +okhttp3.Route: java.net.Proxy proxy +cyanogenmod.providers.CMSettings$DelimitedListValidator: android.util.ArraySet mValidValueSet +androidx.appcompat.R$attr: int showTitle +androidx.appcompat.widget.AppCompatTextView: void setSupportCompoundDrawablesTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor +cyanogenmod.app.Profile: int mNameResId +com.turingtechnologies.materialscrollbar.R$attr: int layout_keyline +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.disposables.Disposable upstream +io.reactivex.internal.subscriptions.DeferredScalarSubscription: void request(long) +com.xw.repo.bubbleseekbar.R$attr: int colorSwitchThumbNormal +androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context,android.util.AttributeSet) +cyanogenmod.app.CustomTile: android.os.Parcelable$Creator CREATOR +com.google.android.material.tabs.TabLayout: void setTabsFromPagerAdapter(androidx.viewpager.widget.PagerAdapter) +com.google.android.material.internal.ParcelableSparseIntArray: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$animator: int start_shine_1 +com.google.android.material.textfield.TextInputLayout: int getBoxStrokeWidth() +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_off_mtrl_alpha +wangdaye.com.geometricweather.R$integer: int google_play_services_version +androidx.appcompat.R$color: int material_grey_300 +androidx.appcompat.widget.ListPopupWindow: void setOnItemClickListener(android.widget.AdapterView$OnItemClickListener) +androidx.appcompat.R$dimen: int abc_action_bar_content_inset_with_nav +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_16dp +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.functions.Function mapper +android.didikee.donate.R$attr: int colorBackgroundFloating +com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setCircularRevealScrimColor(int) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi: io.reactivex.Observable getLocation(java.lang.String,java.lang.String) +james.adaptiveicon.R$style: int Widget_AppCompat_Button_Colored +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String sunRise +com.google.android.material.R$styleable: int Constraint_layout_constraintTop_toTopOf +com.baidu.location.d.a$a +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setOffset(boolean) +okhttp3.Response$Builder: okhttp3.Response$Builder addHeader(java.lang.String,java.lang.String) +com.google.android.material.textview.MaterialTextView +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelBackground +androidx.transition.R$attr: int font +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather +com.xw.repo.bubbleseekbar.R$attr: int buttonPanelSideLayout +androidx.constraintlayout.widget.R$color: int switch_thumb_material_dark +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_CBC_SHA +cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Object rainSnowLimitRaw +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object getKey(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int attributeName +androidx.preference.R$attr: int switchPreferenceCompatStyle +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +androidx.preference.R$attr: int drawerArrowStyle +androidx.appcompat.resources.R$styleable: int StateListDrawableItem_android_drawable +wangdaye.com.geometricweather.R$id: int ifRoom +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +com.google.android.material.slider.RangeSlider: void setThumbRadius(int) +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.ObservableSource second +androidx.loader.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.background.polling.work.worker.TomorrowForecastUpdateWorker: TomorrowForecastUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) +androidx.preference.R$styleable: int AppCompatTheme_actionModeCloseDrawable +wangdaye.com.geometricweather.R$attr: int layoutDuringTransition +cyanogenmod.app.ThemeVersion$ComponentVersion: int currentVersion +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardBackgroundColor +wangdaye.com.geometricweather.R$string: int settings_title_ui_style +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Entry +androidx.appcompat.R$string: int abc_menu_meta_shortcut_label +com.google.android.material.R$id: int rectangles +wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogLayout +android.didikee.donate.R$style: int Widget_AppCompat_RatingBar_Indicator +com.google.android.material.button.MaterialButton: void setBackground(android.graphics.drawable.Drawable) +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeStyle +cyanogenmod.externalviews.ExternalView: void onActivityStopped(android.app.Activity) +androidx.vectordrawable.animated.R$attr +okhttp3.internal.cache.CacheRequest: okio.Sink body() +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingBottom +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: void run() +wangdaye.com.geometricweather.R$attr: int behavior_autoHide +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String from +com.google.android.material.R$styleable: int ConstraintSet_chainUseRtl +androidx.appcompat.widget.Toolbar: void setNavigationIcon(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_min +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelMenuListTheme +androidx.appcompat.app.AlertController$RecycleListView +com.xw.repo.bubbleseekbar.R$drawable: int abc_control_background_material +wangdaye.com.geometricweather.R$attr: int chipIconVisible +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy$a getCrashHandleCallback() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onResume() +androidx.appcompat.R$dimen: int notification_content_margin_start +androidx.preference.R$attr: int panelBackground +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: float getMax() +james.adaptiveicon.R$attr: int toolbarNavigationButtonStyle +cyanogenmod.weather.RequestInfo: android.location.Location access$502(cyanogenmod.weather.RequestInfo,android.location.Location) +androidx.constraintlayout.widget.R$styleable: int KeyCycle_motionProgress +com.google.android.material.R$style: int Widget_MaterialComponents_Button_OutlinedButton +com.tencent.bugly.proguard.ae: java.lang.String a +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setUrl(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getMoonPhaseDescription() +com.google.android.material.R$styleable: int TabItem_android_icon +androidx.appcompat.R$style: int Base_AlertDialog_AppCompat_Light +com.google.android.material.R$styleable: int FontFamily_fontProviderFetchStrategy +com.google.android.material.R$dimen: int mtrl_btn_padding_top +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +com.xw.repo.bubbleseekbar.R$dimen: int abc_panel_menu_list_width +android.didikee.donate.R$color: int bright_foreground_material_dark +okhttp3.internal.cache2.Relay: okio.Source upstream +okio.Buffer: int write(java.nio.ByteBuffer) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalGap +com.google.android.material.R$styleable: int Constraint_barrierAllowsGoneWidgets +android.didikee.donate.R$id: int search_src_text +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void innerComplete() +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: java.lang.String a(java.io.BufferedReader) +cyanogenmod.app.PartnerInterface: java.lang.String MODIFY_SOUND_SETTINGS_PERMISSION +com.google.android.material.R$styleable: int AppCompatTheme_popupWindowStyle +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State valueOf(java.lang.String) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onSubscribe(io.reactivex.disposables.Disposable) +james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Current getCurrent() +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2(retrofit2.Call) +wangdaye.com.geometricweather.R$string: int widget_text +com.amap.api.location.AMapLocationQualityReport: com.amap.api.location.AMapLocationQualityReport clone() +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: java.util.concurrent.atomic.AtomicBoolean shouldConnect +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetBottom +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler e +wangdaye.com.geometricweather.R$array: int precipitation_units +com.google.android.material.R$color: int design_dark_default_color_on_background +androidx.appcompat.R$attr: int listPreferredItemPaddingStart +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItem +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.DailyEntity) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_RC4_128_MD5 +wangdaye.com.geometricweather.R$id: int material_timepicker_cancel_button +com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_top_mtrl_alpha +com.amap.api.fence.GeoFenceManagerBase: void setGeoFenceListener(com.amap.api.fence.GeoFenceListener) +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerColor +com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_layout +com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String,java.util.List) +com.tencent.bugly.crashreport.crash.jni.a: com.tencent.bugly.crashreport.common.info.a c +cyanogenmod.providers.CMSettings$1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setTempMin(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int Toolbar_navigationIcon +androidx.appcompat.R$attr: int actionBarSize +wangdaye.com.geometricweather.R$color: int colorTextSubtitle_light +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_Test +wangdaye.com.geometricweather.R$id: int tag_transition_group +okhttp3.ResponseBody: long contentLength() +androidx.preference.R$bool: int abc_config_actionMenuItemAllCaps +androidx.viewpager.R$id: int notification_main_column_container +androidx.appcompat.R$attr: int preserveIconSpacing +okhttp3.internal.http2.Http2Connection$5: Http2Connection$5(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,java.util.List,boolean) +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Prefix +wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_percent +com.google.android.material.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_precise_anchor_threshold +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setAnimationProgress(float) +okhttp3.internal.ws.RealWebSocket: void onReadMessage(okio.ByteString) +retrofit2.HttpException: java.lang.String message +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: android.graphics.Matrix getLocalMatrix() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +androidx.coordinatorlayout.R$attr: int alpha +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedHeightMinor +androidx.preference.R$style: int Platform_Widget_AppCompat_Spinner +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: KeyguardExternalViewProviderService$Provider$ProviderImpl$8(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,float) +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: java.lang.Runnable actual +io.reactivex.Observable: io.reactivex.Observable intervalRange(long,long,long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okio.HashingSink: okio.HashingSink sha512(okio.Sink) +android.didikee.donate.R$styleable: int AppCompatTheme_colorBackgroundFloating +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getShortTemperatureText(android.content.Context,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Date +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeightLarge +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_EXPORT_WITH_DES40_CBC_SHA +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +androidx.appcompat.R$styleable: int StateListDrawable_android_variablePadding +com.turingtechnologies.materialscrollbar.R$attr: int expandActivityOverflowButtonDrawable +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult +com.tencent.bugly.BuglyStrategy: java.lang.String b +androidx.fragment.app.FragmentManager +wangdaye.com.geometricweather.R$attr: int showPaths +androidx.constraintlayout.widget.R$styleable: int Constraint_animate_relativeTo +cyanogenmod.app.CustomTile: CustomTile() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu +androidx.preference.R$dimen: int abc_list_item_height_large_material +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_saturation +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +okhttp3.Response: okhttp3.Response cacheResponse() +androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context) +james.adaptiveicon.R$id: int italic +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_grey +wangdaye.com.geometricweather.R$styleable: int[] SwipeRefreshLayout +com.google.android.material.textfield.TextInputLayout: int getHintCurrentCollapsedTextColor() +wangdaye.com.geometricweather.R$color: int mtrl_btn_stroke_color_selector +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean() +io.reactivex.Observable: io.reactivex.Observable amb(java.lang.Iterable) +androidx.activity.R$attr: int fontVariationSettings +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_elevation +cyanogenmod.providers.DataUsageContract: android.net.Uri CONTENT_URI +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: boolean done +wangdaye.com.geometricweather.remoteviews.config.AbstractWidgetConfigActivity +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableDelegateState: int getChangingConfigurations() +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +android.support.v4.os.IResultReceiver$Stub$Proxy +androidx.lifecycle.ComputableLiveData: ComputableLiveData() +cyanogenmod.themes.ThemeManager: void logThemeServiceException(java.lang.Exception) +android.didikee.donate.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA +james.adaptiveicon.R$color: int ripple_material_light +androidx.recyclerview.widget.GridLayoutManager: GridLayoutManager(android.content.Context,android.util.AttributeSet,int,int) +cyanogenmod.externalviews.KeyguardExternalView: java.lang.String CATEGORY_KEYGUARD_GRANT_PERMISSION +james.adaptiveicon.R$anim: int abc_slide_out_top +androidx.preference.R$attr: int queryBackground +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_submitBackground +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer windChillTemperature +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification +android.didikee.donate.R$id: int spacer +retrofit2.Retrofit$1: java.lang.Class val$service +android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyleSmall +wangdaye.com.geometricweather.R$id: int item_touch_helper_previous_elevation +wangdaye.com.geometricweather.db.entities.MinutelyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +androidx.appcompat.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +com.google.android.material.R$styleable: int KeyTimeCycle_android_translationX +com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_small_material +cyanogenmod.app.Profile: java.lang.String mName +com.google.android.material.R$layout: int design_navigation_menu +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Large_Inverse +com.google.android.material.R$styleable: int NavigationView_itemShapeInsetBottom +com.xw.repo.BubbleSeekBar: float getProgressFloat() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.Date getPubTime() +androidx.appcompat.R$attr: int actionViewClass +cyanogenmod.hardware.CMHardwareManager: android.content.Context mContext +androidx.transition.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_halo_radius +okio.BufferedSink: okio.BufferedSink write(okio.Source,long) +com.tencent.bugly.crashreport.biz.a: int c +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String timezone +androidx.appcompat.widget.SwitchCompat: int getThumbScrollRange() +com.google.android.material.R$attr: int windowFixedHeightMinor +com.google.android.material.R$anim: int mtrl_bottom_sheet_slide_in +cyanogenmod.app.ICMTelephonyManager +androidx.customview.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void cancelSubscription() +cyanogenmod.externalviews.KeyguardExternalViewProviderService: int onStartCommand(android.content.Intent,int,int) +com.turingtechnologies.materialscrollbar.R$integer: int mtrl_chip_anim_duration +androidx.preference.R$attr: int singleChoiceItemLayout +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActivityChooserView +androidx.appcompat.R$style: int Widget_AppCompat_ProgressBar +com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableTransition +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_animationMode +androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$id: int progress_circular +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_height_material +com.amap.api.fence.GeoFence: void setActivatesAction(int) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_CBC_SHA256 +androidx.constraintlayout.widget.R$attr: int dropdownListPreferredItemHeight +com.google.android.material.R$styleable: int Layout_layout_goneMarginStart +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA +james.adaptiveicon.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.R$attr: int queryBackground +cyanogenmod.app.CMContextConstants$Features: CMContextConstants$Features() +okhttp3.internal.tls.BasicCertificateChainCleaner +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_keyline +com.google.android.material.R$attr: int spinnerDropDownItemStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: MfForecastResult$ProbabilityForecast() +james.adaptiveicon.R$drawable: int abc_scrubber_control_off_mtrl_alpha +wangdaye.com.geometricweather.R$style: int PreferenceSummaryTextStyle +cyanogenmod.util.ColorUtils$1: int compare(java.lang.Object,java.lang.Object) +androidx.preference.R$id: int seekbar_value +androidx.hilt.work.R$styleable: R$styleable() +com.jaredrummler.android.colorpicker.R$attr: int fontWeight +io.reactivex.internal.subscribers.StrictSubscriber: void onSubscribe(org.reactivestreams.Subscription) +cyanogenmod.profiles.RingModeSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy REPLACE +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_year_abbr +com.google.android.material.R$dimen: int mtrl_alert_dialog_picker_background_inset +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: double Latitude +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver this$0 +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderFetchTimeout +androidx.activity.R$id: int accessibility_custom_action_6 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_checkedTextViewStyle +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setBadgeDrawables(android.util.SparseArray) +com.jaredrummler.android.colorpicker.R$color: int button_material_dark +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog +androidx.preference.R$id: int accessibility_custom_action_1 +androidx.constraintlayout.widget.R$color: int primary_text_disabled_material_dark +com.google.android.material.R$styleable: int Transition_transitionDisable +com.bumptech.glide.integration.okhttp.R$style +com.google.android.material.R$styleable: int AppCompatTextView_autoSizePresetSizes +wangdaye.com.geometricweather.R$color: int design_default_color_primary +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: long produced +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardElevation +com.amap.api.fence.GeoFenceClient: android.app.PendingIntent createPendingIntent(java.lang.String) +androidx.constraintlayout.widget.R$id: int end +androidx.appcompat.R$dimen: int tooltip_y_offset_touch +androidx.coordinatorlayout.widget.CoordinatorLayout: CoordinatorLayout(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.slider.BaseSlider: void setTrackInactiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextInputLayout +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onSuccess(java.lang.Object) +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: FlowableRepeatWhen$WhenSourceSubscriber(org.reactivestreams.Subscriber,io.reactivex.processors.FlowableProcessor,org.reactivestreams.Subscription) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setCloudCover(java.lang.Integer) +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance +com.tencent.bugly.crashreport.crash.CrashDetailBean: byte[] y +okhttp3.EventListener: void requestBodyEnd(okhttp3.Call,long) +androidx.recyclerview.widget.RecyclerView$LayoutManager: RecyclerView$LayoutManager() +androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context) +okhttp3.RequestBody$2: RequestBody$2(okhttp3.MediaType,int,byte[],int) +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_day +com.google.android.material.R$attr: int firstBaselineToTopHeight +wangdaye.com.geometricweather.R$attr: int listPreferredItemHeight +com.google.android.material.circularreveal.CircularRevealLinearLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: long serialVersionUID +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property FormattedId +wangdaye.com.geometricweather.R$drawable: int ic_toolbar_back +androidx.core.R$layout: int notification_action_tombstone +androidx.constraintlayout.widget.R$id: int left +com.tencent.bugly.crashreport.a: boolean setNativeIsAppForeground(boolean) +com.bumptech.glide.R$id: int top +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_orientation +com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context) +androidx.hilt.lifecycle.R$styleable: int GradientColorItem_android_offset +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: long serialVersionUID +androidx.constraintlayout.widget.R$attr: int flow_horizontalStyle +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_seek_step_section +okhttp3.Headers: java.lang.String get(java.lang.String) +com.google.android.material.R$styleable: int AppCompatTheme_checkedTextViewStyle +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display3 +james.adaptiveicon.R$layout: int abc_action_bar_up_container +okhttp3.internal.cache.CacheInterceptor$1: okhttp3.internal.cache.CacheRequest val$cacheRequest +retrofit2.BuiltInConverters$StreamingResponseBodyConverter +cyanogenmod.library.R$id +com.tencent.bugly.proguard.ar: java.util.ArrayList f +org.greenrobot.greendao.AbstractDao: void update(java.lang.Object) +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text +com.turingtechnologies.materialscrollbar.R$attr: int layout_dodgeInsetEdges +io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean offer(java.lang.Object,java.lang.Object) +androidx.core.R$dimen: int notification_content_margin_start +okhttp3.RealCall: java.lang.Object clone() +wangdaye.com.geometricweather.R$attr: int radioButtonStyle +okhttp3.internal.http2.Http2Codec$StreamFinishingSource +com.google.android.material.R$layout: int mtrl_calendar_months +james.adaptiveicon.R$styleable: int MenuItem_android_visible +androidx.preference.R$attr: int widgetLayout +androidx.appcompat.R$anim: int abc_shrink_fade_out_from_bottom +androidx.preference.R$attr: int listPreferredItemPaddingLeft +androidx.appcompat.R$attr: int colorPrimary +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_6 +com.google.android.material.card.MaterialCardView: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +james.adaptiveicon.R$style: int Platform_AppCompat +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_rippleColor +com.tencent.bugly.crashreport.common.info.b: boolean p() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupMenu +wangdaye.com.geometricweather.R$dimen: int abc_text_size_subhead_material +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder pingInterval(long,java.util.concurrent.TimeUnit) +org.greenrobot.greendao.database.DatabaseOpenHelper: void onOpen(org.greenrobot.greendao.database.Database) +com.jaredrummler.android.colorpicker.R$style: int Preference_DropDown_Material +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean appendNativeLog(java.lang.String,java.lang.String,java.lang.String) +james.adaptiveicon.R$id: int uniform +okio.Okio: okio.Source source(java.net.Socket) +android.support.v4.os.ResultReceiver$1 +androidx.core.R$styleable: int[] ColorStateListItem +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarStyle +wangdaye.com.geometricweather.R$anim: int fragment_manange_pop_exit +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar +com.google.android.material.appbar.AppBarLayout: void setElevation(float) +wangdaye.com.geometricweather.R$array: int distance_units +wangdaye.com.geometricweather.R$drawable: int abc_tab_indicator_mtrl_alpha +com.google.android.material.R$string +com.google.android.material.R$attr: int layout +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Long getId() +wangdaye.com.geometricweather.R$dimen: int current_weather_icon_container_size +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupMenu +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAV_BUTTONS_VALIDATOR +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.Observer downstream +james.adaptiveicon.R$styleable: int Toolbar_contentInsetEndWithActions +wangdaye.com.geometricweather.R$attr: int layout_scrollFlags +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +wangdaye.com.geometricweather.R$drawable: int star_2 +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_10 +com.jaredrummler.android.colorpicker.R$id: int square +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String getPubTime() +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean done +androidx.lifecycle.ViewModelStore: androidx.lifecycle.ViewModel get(java.lang.String) +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Light +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleGravity(int) +android.didikee.donate.R$color: int material_blue_grey_800 +androidx.recyclerview.R$dimen: int item_touch_helper_swipe_escape_max_velocity +androidx.preference.R$drawable: int abc_ratingbar_small_material +retrofit2.ParameterHandler$Tag: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.google.android.material.R$styleable: int MaterialCardView_strokeWidth +wangdaye.com.geometricweather.R$color: int colorTextTitle +androidx.constraintlayout.widget.R$attr: int limitBoundsTo +wangdaye.com.geometricweather.R$array: int automatic_refresh_rates +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_Solid +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: int index +android.didikee.donate.R$drawable: int abc_textfield_search_default_mtrl_alpha +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: boolean val$visible +io.reactivex.Observable: java.lang.Object as(io.reactivex.ObservableConverter) +io.reactivex.Observable: io.reactivex.Observable create(io.reactivex.ObservableOnSubscribe) +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onScreenTurnedOff() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintTextColor +androidx.constraintlayout.widget.Barrier: void setMargin(int) +com.google.android.material.R$string: int mtrl_picker_a11y_next_month +com.tencent.bugly.crashreport.R$string +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlNormal +james.adaptiveicon.R$styleable: int SearchView_queryBackground +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +io.reactivex.internal.disposables.EmptyDisposable: boolean offer(java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String value +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixTextColor +androidx.lifecycle.LifecycleService: int onStartCommand(android.content.Intent,int,int) +okhttp3.internal.ws.WebSocketWriter$FrameSink: okhttp3.internal.ws.WebSocketWriter this$0 +androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context,android.util.AttributeSet) +androidx.hilt.work.R$styleable: int[] FontFamily +android.didikee.donate.R$styleable: int Spinner_android_entries +wangdaye.com.geometricweather.R$id: int widget_week_icon_1 +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level valueOf(java.lang.String) +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: int skip +james.adaptiveicon.R$attr: int navigationContentDescription +com.google.android.material.timepicker.ChipTextInputComboView: void setOnClickListener(android.view.View$OnClickListener) +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_PopupMenu_Overflow +com.tencent.bugly.crashreport.crash.e: com.tencent.bugly.crashreport.crash.CrashDetailBean b(java.lang.Thread,java.lang.Throwable,boolean,java.lang.String,byte[]) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String alertId +com.jaredrummler.android.colorpicker.ColorPickerView: int getBorderColor() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogCornerRadius +com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrimResource(int) +androidx.lifecycle.ViewModelStores: ViewModelStores() +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortTemperature(android.content.Context,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber(androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData) +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: java.lang.Object item +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +androidx.appcompat.R$attr: int toolbarStyle +androidx.preference.R$style: int Theme_AppCompat_Light_Dialog_Alert +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +androidx.hilt.work.R$styleable: int FragmentContainerView_android_tag +james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: long serialVersionUID +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: void onReceive(android.content.Context,android.content.Intent) +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: java.util.concurrent.atomic.AtomicReference observers +com.amap.api.location.AMapLocationClientOption: AMapLocationClientOption(android.os.Parcel) +android.didikee.donate.R$color: int abc_search_url_text_selected +com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_begin +androidx.work.R$styleable: int GradientColor_android_gradientRadius +com.google.android.material.R$style: int Theme_AppCompat +com.tencent.bugly.proguard.n: com.tencent.bugly.proguard.n b +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: java.lang.Object poll() +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream removeStream(int) +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeStepGranularity +com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_close_icon_tint +okhttp3.internal.http.HttpDate$1: java.lang.Object initialValue() +james.adaptiveicon.R$drawable: int notification_bg_normal +cyanogenmod.hardware.DisplayMode: DisplayMode(android.os.Parcel) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusBottomStart +androidx.constraintlayout.widget.R$dimen: int tooltip_y_offset_touch +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String toStr() +okhttp3.internal.cache.InternalCache: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) +wangdaye.com.geometricweather.common.ui.activities.AwakeUpdateActivity: AwakeUpdateActivity() +androidx.appcompat.app.AppCompatActivity: void setContentView(android.view.View) +io.reactivex.internal.observers.BlockingObserver: void onNext(java.lang.Object) +com.google.android.material.R$styleable: int BottomNavigationView_itemTextAppearanceInactive +retrofit2.OkHttpCall: OkHttpCall(retrofit2.RequestFactory,java.lang.Object[],okhttp3.Call$Factory,retrofit2.Converter) +james.adaptiveicon.R$dimen: int abc_dialog_list_padding_top_no_title +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginStart +androidx.swiperefreshlayout.R$id: int action_text +com.google.android.material.R$styleable: int MaterialButton_iconTintMode +io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function,boolean,int) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.disposables.Disposable upstream +androidx.work.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$attr: int msb_autoHide +wangdaye.com.geometricweather.R$id: int event +james.adaptiveicon.R$attr: int defaultQueryHint +androidx.preference.R$styleable: int SearchView_iconifiedByDefault +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Blue +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +com.google.android.material.R$drawable: int abc_tab_indicator_material +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance +wangdaye.com.geometricweather.common.ui.widgets.TagView: int getCheckedBackgroundColor() +james.adaptiveicon.R$styleable: int AppCompatTheme_editTextBackground +android.didikee.donate.R$attr: int titleTextColor +wangdaye.com.geometricweather.R$id: int cpv_color_picker_view +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.R$string: int settings_notification_background_off +okio.AsyncTimeout$2: AsyncTimeout$2(okio.AsyncTimeout,okio.Source) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WEATHER_CODE_MAX +com.turingtechnologies.materialscrollbar.R$styleable: int[] FloatingActionButton +androidx.appcompat.R$color: int abc_tint_default +wangdaye.com.geometricweather.R$styleable: int[] ConstraintLayout_Layout +androidx.fragment.app.Fragment: Fragment() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Green +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintDimensionRatio +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textFontWeight +androidx.hilt.work.R$attr: int fontProviderPackage +androidx.appcompat.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_layout +com.google.android.material.R$style: int Widget_AppCompat_ActionBar_Solid +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_DEFAULT_INDEX +com.xw.repo.BubbleSeekBar: com.xw.repo.BubbleSeekBar$OnProgressChangedListener getOnProgressChangedListener() +androidx.preference.R$styleable: int Preference_android_dependency +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onComplete() +wangdaye.com.geometricweather.R$color: int material_on_background_disabled +androidx.recyclerview.R$dimen: int fastscroll_default_thickness +com.tencent.bugly.crashreport.R$string: int app_name +androidx.vectordrawable.R$dimen: int compat_button_padding_vertical_material +org.greenrobot.greendao.AbstractDao: int pkOrdinal +androidx.lifecycle.LifecycleRegistry: java.util.ArrayList mParentStates +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void clear() +androidx.transition.R$attr: int alpha +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Line2 +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver inner +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: boolean isDisposed() +androidx.preference.MultiSelectListPreference: MultiSelectListPreference(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_drawPath +james.adaptiveicon.R$attr: int titleTextAppearance +com.google.android.material.R$style: int Theme_MaterialComponents_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +androidx.constraintlayout.widget.R$id: int icon +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowDx +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: android.os.IBinder mRemote +android.didikee.donate.R$attr: int buttonBarStyle +okhttp3.internal.NamedRunnable: java.lang.String name +wangdaye.com.geometricweather.R$id: int scroll +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Medium +androidx.appcompat.view.menu.ExpandedMenuView +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_horizontal_padding +okhttp3.Cache: int requestCount() +com.tencent.bugly.Bugly: void init(android.content.Context,java.lang.String,boolean,com.tencent.bugly.BuglyStrategy) +com.google.android.material.appbar.AppBarLayout$BaseBehavior +androidx.lifecycle.ProcessLifecycleOwner: void dispatchStopIfNeeded() +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +androidx.preference.R$styleable: int FontFamilyFont_android_fontWeight +androidx.lifecycle.GeneratedAdapter +androidx.constraintlayout.widget.R$attr: int listMenuViewStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +com.google.android.material.R$color: int abc_secondary_text_material_dark +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Subhead +com.google.android.material.R$id: int chip1 +androidx.vectordrawable.animated.R$layout: int notification_template_custom_big +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light com.jaredrummler.android.colorpicker.R$attr: int disableDependentsState -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeCloudCover -com.turingtechnologies.materialscrollbar.R$dimen: int abc_seekbar_track_progress_height_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String getTo() -com.xw.repo.bubbleseekbar.R$attr: int hideOnContentScroll -okhttp3.internal.http.RetryAndFollowUpInterceptor: int MAX_FOLLOW_UPS -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_font -com.turingtechnologies.materialscrollbar.R$dimen: int abc_seekbar_track_background_height_material -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowMinWidthMajor -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_HOME_LONG_PRESS_ACTION_VALIDATOR -wangdaye.com.geometricweather.R$attr: int textAppearanceSmallPopupMenu -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int READY -cyanogenmod.app.CustomTileListenerService: void unregisterAsSystemService() -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analogContainer_light -com.amap.api.location.APSServiceBase: android.os.IBinder onBind(android.content.Intent) -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_text -com.jaredrummler.android.colorpicker.R$attr: int actionLayout -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -androidx.appcompat.R$attr: int titleMarginEnd -com.google.android.material.imageview.ShapeableImageView: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -wangdaye.com.geometricweather.R$id: int item_weather_daily_air_progress -com.google.android.material.R$styleable: int TextInputLayout_hintTextColor -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language getInstance(java.lang.String) -okhttp3.Response: okhttp3.ResponseBody body() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial() +okhttp3.internal.cache.DiskLruCache: boolean $assertionsDisabled +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarButtonStyle +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: boolean delayError +cyanogenmod.externalviews.ExternalViewProperties: boolean mVisible +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void dispose() +wangdaye.com.geometricweather.R$style: int Theme_AppCompat +androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitleTextColor +james.adaptiveicon.R$styleable: int ActionMode_backgroundSplit +androidx.appcompat.R$attr: int backgroundSplit +wangdaye.com.geometricweather.R$styleable: int LiveLockScreen_type +com.google.android.material.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +com.xw.repo.bubbleseekbar.R$attr: int radioButtonStyle +com.turingtechnologies.materialscrollbar.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalStyle +com.tencent.bugly.proguard.j: void a(com.tencent.bugly.proguard.k,int) +com.jaredrummler.android.colorpicker.R$attr: int track +wangdaye.com.geometricweather.R$dimen: int widget_little_weather_icon_size +android.didikee.donate.R$id: int textSpacerNoButtons +com.google.android.material.bottomappbar.BottomAppBar$Behavior +cyanogenmod.profiles.RingModeSettings$1: java.lang.Object[] newArray(int) +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startColor +androidx.constraintlayout.widget.Group: void setElevation(float) +androidx.legacy.coreutils.R$id: int tag_transition_group +wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassLevel(java.lang.Integer) +androidx.constraintlayout.widget.R$styleable: int StateSet_defaultState +androidx.appcompat.resources.R$layout: int notification_action +cyanogenmod.themes.ThemeManager: java.util.Set access$300(cyanogenmod.themes.ThemeManager) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: java.lang.String Unit +androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_caption_material +com.google.android.material.slider.Slider: int getTrackHeight() +com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_disable_only_material_dark +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit[] values() +androidx.constraintlayout.widget.R$id: int position +androidx.appcompat.R$attr: int arrowHeadLength +androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context) +okio.Utf8: Utf8() +androidx.lifecycle.extensions.R$color +com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusTopStart +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +com.jaredrummler.android.colorpicker.R$id: int notification_background +com.amap.api.location.AMapLocationClientOption: boolean isMockEnable() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableStart +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean b() +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_voiceIcon +cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String toString() +androidx.appcompat.R$attr: int closeItemLayout +com.jaredrummler.android.colorpicker.R$id: int actions +androidx.preference.R$string: int abc_shareactionprovider_share_with +wangdaye.com.geometricweather.R$id: int showHome +cyanogenmod.hardware.CMHardwareManager: int FEATURE_COLOR_ENHANCEMENT +cyanogenmod.weatherservice.IWeatherProviderService$Stub: java.lang.String DESCRIPTOR +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_dither +cyanogenmod.externalviews.KeyguardExternalView$6 +com.google.android.gms.common.R$string: int common_google_play_services_unknown_issue +com.google.android.material.textfield.TextInputEditText: com.google.android.material.textfield.TextInputLayout getTextInputLayout() +androidx.viewpager.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.R$id: int activity_widget_config_scrollContainer +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView +androidx.hilt.lifecycle.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.R$dimen: int mtrl_badge_with_text_radius +com.google.android.material.R$drawable: int abc_tab_indicator_mtrl_alpha +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_change_size_collapse_motion_spec +okhttp3.Response: void close() +wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context,android.util.AttributeSet,int) +james.adaptiveicon.R$styleable: int AlertDialog_multiChoiceItemLayout +cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup getNotificationGroup(android.os.ParcelUuid) +cyanogenmod.externalviews.KeyguardExternalView$4: cyanogenmod.externalviews.KeyguardExternalView this$0 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.List defense +androidx.preference.R$style: int Platform_ThemeOverlay_AppCompat_Light +okhttp3.Handshake: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$string: int week_1 +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.db.entities.AlertEntity +wangdaye.com.geometricweather.R$xml: int perference +com.xw.repo.bubbleseekbar.R$styleable: int View_theme +com.google.android.material.R$drawable: int abc_vector_test +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status FAILED +com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onAnimationReset() +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_collapseNotificationPanel_2 +com.tencent.bugly.crashreport.common.info.a: java.lang.Object av +wangdaye.com.geometricweather.R$layout: int item_weather_daily_wind +androidx.vectordrawable.R$styleable: int FontFamilyFont_font +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Subhead_Inverse +okhttp3.Handshake +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetEnd +com.turingtechnologies.materialscrollbar.R$id: int labeled +io.reactivex.Observable: io.reactivex.Observable concatEager(java.lang.Iterable) +androidx.constraintlayout.widget.R$anim: int abc_tooltip_enter +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_ActionBar +wangdaye.com.geometricweather.R$attr: int perpendicularPath_percent +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: java.lang.Object v1 +james.adaptiveicon.R$style: int Base_Theme_AppCompat_CompactMenu +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_max_width +wangdaye.com.geometricweather.R$string: int about_retrofit +androidx.preference.R$dimen: int abc_progress_bar_height_material +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Surface +androidx.core.widget.NestedScrollView: void setFillViewport(boolean) +androidx.recyclerview.R$dimen: int notification_top_pad_large_text +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: long idx +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_showText +cyanogenmod.app.CustomTile$ExpandedStyle: android.widget.RemoteViews contentViews +com.google.android.material.R$styleable: int MenuItem_android_onClick +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date getUpdateDate() +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver otherObserver +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +androidx.appcompat.R$id: int search_go_btn +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActivityChooserView +cyanogenmod.alarmclock.CyanogenModAlarmClock: CyanogenModAlarmClock() +james.adaptiveicon.R$id: int up +androidx.hilt.lifecycle.R$dimen: int notification_main_column_padding_top +cyanogenmod.providers.CMSettings$System: java.lang.String ZEN_ALLOW_LIGHTS +wangdaye.com.geometricweather.R$styleable: int Chip_checkedIcon +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.R$interpolator: int mtrl_linear_out_slow_in +retrofit2.http.FieldMap: boolean encoded() +okhttp3.ResponseBody$BomAwareReader: ResponseBody$BomAwareReader(okio.BufferedSource,java.nio.charset.Charset) +androidx.constraintlayout.widget.R$interpolator: R$interpolator() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: long serialVersionUID +androidx.constraintlayout.widget.R$anim: int abc_popup_enter +okio.BufferedSink: okio.BufferedSink writeLongLe(long) +com.google.android.material.R$styleable: int Constraint_android_translationZ +wangdaye.com.geometricweather.R$attr: int flow_firstVerticalBias +com.tencent.bugly.crashreport.common.info.a: long Q +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: BaiduIPLocationResult() +com.google.android.material.R$attr: int sliderStyle +android.didikee.donate.R$style: int Base_V23_Theme_AppCompat +android.didikee.donate.R$style: int Base_DialogWindowTitle_AppCompat +okhttp3.internal.platform.Android10Platform: okhttp3.internal.platform.Platform buildIfSupported() +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: void execute() +androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context,android.util.AttributeSet,int) +com.amap.api.location.AMapLocation: void setTrustedLevel(int) +okhttp3.EventListener: void requestHeadersStart(okhttp3.Call) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum Minimum +androidx.lifecycle.Lifecycling: int REFLECTIVE_CALLBACK +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_behavior +androidx.constraintlayout.widget.R$dimen: int abc_button_inset_horizontal_material +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory create() +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderAuthority +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_stroke_color_selector +okio.BufferedSink: okio.BufferedSink writeByte(int) +androidx.dynamicanimation.R$style +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +com.google.android.material.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids +androidx.constraintlayout.widget.Constraints: androidx.constraintlayout.widget.ConstraintSet getConstraintSet() +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_collapseContentDescription +wangdaye.com.geometricweather.R$attr: int rippleColor +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean timerFired +wangdaye.com.geometricweather.R$attr: int actionMenuTextAppearance +androidx.constraintlayout.widget.R$attr: int tickMark +com.google.android.material.R$attr: int cornerFamily +wangdaye.com.geometricweather.R$drawable: int ic_temperature_celsius +androidx.appcompat.R$id: int accessibility_action_clickable_span +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_text_size +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: MfLocationResult() +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_negativeButtonText +com.tencent.bugly.proguard.i: short a(short,int,boolean) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.fuseable.SimpleQueue queue +okio.Buffer$2: okio.Buffer this$0 +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableRightCompat +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: io.reactivex.subjects.UnicastSubject window +com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintStart_toEndOf +cyanogenmod.providers.CMSettings$DiscreteValueValidator: java.lang.String[] mValues +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius +com.google.android.material.R$attr: int elevationOverlayEnabled +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getPm10Color(android.content.Context) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_PopupWindow +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_outline_box_expanded_padding +com.tencent.bugly.crashreport.common.info.b: java.lang.String h(android.content.Context) +com.jaredrummler.android.colorpicker.R$dimen: int notification_right_icon_size +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver +james.adaptiveicon.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.R$styleable: int MaterialTextView_android_textAppearance +androidx.preference.R$styleable: int Toolbar_titleTextColor +com.jaredrummler.android.colorpicker.R$attr: int contentInsetLeft +com.turingtechnologies.materialscrollbar.R$attr: int goIcon +com.tencent.bugly.proguard.c: java.util.HashMap e +okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part createFormData(java.lang.String,java.lang.String) +cyanogenmod.app.ProfileGroup: boolean matches(android.app.NotificationGroup,boolean) +androidx.lifecycle.ViewModelProvider$OnRequeryFactory: void onRequery(androidx.lifecycle.ViewModel) +androidx.fragment.R$id: int tag_screen_reader_focusable +com.amap.api.location.AMapLocation: void setOffset(boolean) +wangdaye.com.geometricweather.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +androidx.constraintlayout.widget.R$attr: int selectableItemBackgroundBorderless +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog +wangdaye.com.geometricweather.R$attr: int textAllCaps +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: double Value +com.jaredrummler.android.colorpicker.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +com.tencent.bugly.proguard.f: java.lang.Object clone() +okio.HashingSink: HashingSink(okio.Sink,okio.ByteString,java.lang.String) +wangdaye.com.geometricweather.R$id: int CTRL +com.google.android.material.chip.ChipGroup: void setDividerDrawableVertical(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature temperature +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display4 +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int INTERRUPTING +androidx.constraintlayout.widget.R$attr: int collapseIcon +wangdaye.com.geometricweather.R$id: int triangle +com.google.android.material.R$attr: int layout_constraintStart_toStartOf +cyanogenmod.providers.CMSettings$DelimitedListValidator: boolean mAllowEmptyList +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour +androidx.appcompat.R$styleable: int Toolbar_titleMarginStart +android.didikee.donate.R$styleable: int LinearLayoutCompat_dividerPadding +androidx.appcompat.R$id: int action_bar_container +com.xw.repo.bubbleseekbar.R$attr: int actionBarTabBarStyle +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherSuccess(java.lang.Object) +cyanogenmod.externalviews.KeyguardExternalView: void unregisterKeyguardExternalViewCallback(cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks) +androidx.core.R$attr: int fontProviderCerts +retrofit2.ServiceMethod: ServiceMethod() +james.adaptiveicon.R$attr: int height +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetStart +androidx.preference.R$id: int action_bar +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_maxWidth +androidx.appcompat.widget.Toolbar: void setNavigationIcon(int) +james.adaptiveicon.R$dimen: int abc_action_bar_overflow_padding_end_material +androidx.viewpager.R$style: int Widget_Compat_NotificationActionContainer +com.xw.repo.bubbleseekbar.R$attr: int expandActivityOverflowButtonDrawable +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder socketFactory(javax.net.SocketFactory) +androidx.hilt.lifecycle.R$id: int chronometer +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX wind +android.didikee.donate.R$styleable: int TextAppearance_android_shadowDx +androidx.coordinatorlayout.R$drawable: int notify_panel_notification_icon_bg +okhttp3.OkHttpClient: java.util.List protocols() +com.google.android.material.R$attr: int actionBarTabStyle +com.google.android.material.R$dimen: int abc_text_size_subtitle_material_toolbar +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State min(androidx.lifecycle.Lifecycle$State,androidx.lifecycle.Lifecycle$State) +wangdaye.com.geometricweather.R$drawable: int notif_temp_12 +com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_top +com.turingtechnologies.materialscrollbar.R$attr: int textStartPadding +okio.ByteString: void write(java.io.OutputStream) +wangdaye.com.geometricweather.R$string: int path_password_strike_through +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_inverse_material_dark +retrofit2.http.PATCH +com.jaredrummler.android.colorpicker.R$id: int multiply +com.google.android.material.R$id: int uniform +com.google.android.material.R$attr: int layout_constraintLeft_toRightOf +com.google.android.material.slider.RangeSlider: void setThumbElevation(float) +wangdaye.com.geometricweather.settings.dialogs.MinimalIconDialog +com.bumptech.glide.integration.okhttp.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_ASSIST_ACTION_VALIDATOR +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +com.google.android.material.R$color: int abc_color_highlight_material +cyanogenmod.providers.CMSettings$Secure: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView +androidx.preference.R$style: int Animation_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_material +com.google.android.material.chip.Chip: void setTextEndPaddingResource(int) +com.bumptech.glide.request.RequestCoordinator$RequestState +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index() +com.google.android.material.R$dimen: int mtrl_btn_padding_right +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_popupWindowStyle +com.tencent.bugly.crashreport.common.info.b: java.lang.String d +androidx.appcompat.R$dimen: int abc_text_size_title_material_toolbar +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_3G +androidx.recyclerview.R$attr: int fontProviderFetchStrategy +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_displayOptions +okhttp3.Address: javax.net.ssl.SSLSocketFactory sslSocketFactory() +com.google.android.material.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +com.tencent.bugly.BuglyStrategy: boolean g +androidx.appcompat.R$styleable: int ActionMode_closeItemLayout +cyanogenmod.providers.CMSettings$CMSettingNotFoundException: CMSettings$CMSettingNotFoundException(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float CarbonMonoxide +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.Observer downstream +androidx.hilt.R$drawable: R$drawable() +com.bumptech.glide.R$drawable: int notification_bg_normal_pressed +cyanogenmod.app.ProfileGroup: void getXmlString(java.lang.StringBuilder,android.content.Context) +androidx.hilt.lifecycle.R$anim: int fragment_open_exit +androidx.preference.R$dimen: int abc_text_size_body_2_material +com.turingtechnologies.materialscrollbar.R$anim +okhttp3.internal.http2.Http2Connection$PingRunnable +cyanogenmod.app.suggest.IAppSuggestManager$Stub: int TRANSACTION_handles_0 +com.jaredrummler.android.colorpicker.R$color: int secondary_text_default_material_light +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: android.os.IBinder mRemote +com.baidu.location.indoor.mapversion.c.a$d: java.lang.String h +androidx.preference.R$attr: int shouldDisableView +androidx.appcompat.R$integer +com.google.android.material.card.MaterialCardView: void setBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$styleable: int Transform_android_scaleY +androidx.cardview.widget.CardView: void setMinimumWidth(int) +okhttp3.internal.http2.Http2Connection: boolean $assertionsDisabled +com.jaredrummler.android.colorpicker.R$color: int primary_text_default_material_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX names +com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorFullWidth +com.tencent.bugly.crashreport.CrashReport: java.lang.String getAppVer() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.WeatherEntity) +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getHideMotionSpec() +androidx.constraintlayout.widget.R$attr: int drawerArrowStyle +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constrainedWidth +androidx.viewpager2.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.R$dimen: int design_fab_translation_z_hovered_focused +wangdaye.com.geometricweather.main.layouts.MainLayoutManager: MainLayoutManager() +com.jaredrummler.android.colorpicker.R$id: int line1 +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void run() +wangdaye.com.geometricweather.R$attr: int editTextBackground +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: org.reactivestreams.Subscriber downstream +com.google.android.material.slider.BaseSlider: void setThumbStrokeColor(android.content.res.ColorStateList) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_16 +androidx.lifecycle.Transformations$3: boolean mFirstTime +okhttp3.Dispatcher: java.util.Deque runningAsyncCalls +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver +wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_date +com.google.android.material.R$styleable: int ActionMode_background +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_scrollMode +androidx.customview.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$layout: R$layout() +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: int status +okhttp3.internal.ws.RealWebSocket$Close: RealWebSocket$Close(int,okio.ByteString,long) +androidx.appcompat.R$attr: int actionLayout +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: BasicIntQueueSubscription() +android.didikee.donate.R$style: int Widget_AppCompat_ActionButton_CloseMode +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: int limit +androidx.appcompat.R$drawable: int abc_btn_radio_to_on_mtrl_015 +okio.Buffer: long readHexadecimalUnsignedLong() +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource +androidx.preference.R$styleable: int Toolbar_contentInsetEndWithActions +androidx.cardview.widget.CardView: int getContentPaddingTop() +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getCounterOverflowTextColor() +androidx.recyclerview.R$integer +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light_focused +com.xw.repo.bubbleseekbar.R$attr: int bsb_seek_by_section +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_month_abbr +com.google.android.material.bottomappbar.BottomAppBar: void setFabCradleRoundedCornerRadius(float) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconDrawable +com.google.android.material.R$styleable: int AppCompatTheme_windowNoTitle +cyanogenmod.externalviews.IExternalViewProvider: void onStop() +com.turingtechnologies.materialscrollbar.R$id: int time +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_SearchResult_Title +com.bumptech.glide.manager.SupportRequestManagerFragment +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_homeAsUpIndicator +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_91 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature ApparentTemperature +com.google.android.material.R$attr: int autoSizeTextType +com.bumptech.glide.integration.okhttp.R$id +cyanogenmod.externalviews.KeyguardExternalView: void onBouncerShowing(boolean) +okhttp3.internal.platform.Platform: boolean isConscryptPreferred() +cyanogenmod.profiles.ConnectionSettings: boolean mOverride +cyanogenmod.app.ThemeVersion: java.lang.String MIN_SUPPORTED_THEME_VERSION_FIELD_NAME +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_bottom +android.didikee.donate.R$styleable: int ViewStubCompat_android_inflatedId +wangdaye.com.geometricweather.R$layout: int notification_action +com.google.android.material.R$styleable: int Constraint_android_layout_marginBottom +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_creator +okhttp3.internal.connection.RealConnection: RealConnection(okhttp3.ConnectionPool,okhttp3.Route) +com.jaredrummler.android.colorpicker.R$attr: int actionViewClass +android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +okhttp3.OkHttpClient +okio.Okio$1: okio.Timeout val$timeout +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: long serialVersionUID +androidx.work.R$styleable: int FontFamilyFont_font +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_padding_start_material +com.google.android.material.chip.Chip: void setTextStartPadding(float) +android.didikee.donate.R$styleable: int[] ActionBar +androidx.lifecycle.SavedStateHandle: void set(java.lang.String,java.lang.Object) +com.google.android.material.R$styleable: int[] MaterialButton +wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_icon_tint +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: long serialVersionUID +wangdaye.com.geometricweather.R$id: int widget_day +androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotation +androidx.preference.R$style: int Preference_Category +org.greenrobot.greendao.AbstractDao: void assertSinglePk() +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +james.adaptiveicon.R$styleable: int PopupWindowBackgroundState_state_above_anchor +cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemBitmap(android.graphics.Bitmap) +wangdaye.com.geometricweather.R$color: int primary_text_disabled_material_light +androidx.transition.R$styleable: int FontFamily_fontProviderCerts +androidx.appcompat.widget.AppCompatCheckBox: void setSupportButtonTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String zh_CN +cyanogenmod.weather.WeatherInfo: void writeToParcel(android.os.Parcel,int) +okhttp3.CacheControl: okhttp3.CacheControl FORCE_NETWORK +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_weightSum +com.xw.repo.bubbleseekbar.R$styleable: int[] LinearLayoutCompat +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_ALARMS +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: ObservableThrottleLatest$ThrottleLatestObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker,boolean) +androidx.appcompat.R$style: int Platform_AppCompat_Light +io.reactivex.Observable: io.reactivex.Observable switchIfEmpty(io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$attr: int materialCircleRadius +androidx.transition.R$drawable: int notification_bg_normal +cyanogenmod.providers.CMSettings$Secure: boolean putLong(android.content.ContentResolver,java.lang.String,long) +okio.RealBufferedSource: java.lang.String readUtf8(long) +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +com.jaredrummler.android.colorpicker.R$id: int group_divider +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: int unitArrayIndex +cyanogenmod.weather.ICMWeatherManager: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) +cyanogenmod.platform.R$bool +androidx.fragment.R$id: int accessibility_action_clickable_span +com.google.android.material.R$id: int info +com.bumptech.glide.R$styleable: int[] GradientColorItem +androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_android_alpha +okio.Buffer: okio.BufferedSink writeUtf8(java.lang.String,int,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial +androidx.preference.R$id: int switchWidget +wangdaye.com.geometricweather.R$id: int chains +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String getCaiyun() +com.autonavi.aps.amapapi.model.AMapLocationServer: AMapLocationServer(java.lang.String) +com.jaredrummler.android.colorpicker.R$id: int italic +androidx.constraintlayout.widget.R$attr: int allowStacking +androidx.loader.R$id: R$id() +androidx.preference.R$anim: int abc_fade_out +com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_maximum_default_fullscreen_minor_axis +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_16 com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setHideMotionSpecResource(int) -androidx.lifecycle.Lifecycle$State -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog -androidx.legacy.coreutils.R$attr: int fontProviderFetchStrategy -okhttp3.internal.cache.DiskLruCache$Entry: java.io.File[] dirtyFiles -com.amap.api.fence.GeoFence: com.amap.api.fence.PoiItem f -com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreferenceCompat_Material -com.turingtechnologies.materialscrollbar.R$attr: int radioButtonStyle -androidx.recyclerview.R$id: int tag_screen_reader_focusable -com.tencent.bugly.crashreport.common.info.a: java.lang.String k -com.google.android.gms.signin.internal.zam -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_134 -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: java.lang.String getMessage() -androidx.appcompat.R$styleable: int[] AppCompatTextHelper -androidx.lifecycle.extensions.R$layout: int notification_template_part_chronometer -androidx.fragment.R$id: int tag_unhandled_key_event_manager -cyanogenmod.profiles.ConnectionSettings$1: java.lang.Object createFromParcel(android.os.Parcel) -androidx.lifecycle.extensions.R$color -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixTextAppearance -wangdaye.com.geometricweather.R$attr: int editTextBackground -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setDistanceToTriggerSync(int) -james.adaptiveicon.R$attr: int dividerVertical -androidx.preference.R$dimen: int abc_text_size_display_1_material -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.lang.String getUnit() -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_pressed -wangdaye.com.geometricweather.R$string: int local_time -com.tencent.bugly.crashreport.crash.c: java.lang.String h -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial -okhttp3.OkHttpClient$1: void addLenient(okhttp3.Headers$Builder,java.lang.String,java.lang.String) -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: android.os.IBinder asBinder() -androidx.preference.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -io.reactivex.internal.observers.DeferredScalarDisposable: io.reactivex.Observer downstream -androidx.fragment.R$layout: int notification_template_part_chronometer -androidx.preference.R$dimen: int abc_dialog_min_width_major -androidx.appcompat.R$styleable: int AppCompatTextView_autoSizePresetSizes -okhttp3.internal.ws.WebSocketReader: boolean isClient -cyanogenmod.themes.ThemeManager: java.util.Set mChangeListeners -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WetBulbTemperature -io.reactivex.internal.schedulers.AbstractDirectTask: java.util.concurrent.FutureTask FINISHED -com.jaredrummler.android.colorpicker.R$attr: int actionBarItemBackground -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getAbbreviation(android.content.Context) -james.adaptiveicon.AdaptiveIconView: void setPath(int) -cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(android.os.Parcel) -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float getPrecipitation(float) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_ACTIVE -com.tencent.bugly.crashreport.crash.jni.a: a(android.content.Context,com.tencent.bugly.crashreport.common.info.a,com.tencent.bugly.crashreport.crash.b,com.tencent.bugly.crashreport.common.strategy.a) -android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabView -androidx.hilt.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.R$styleable: int ActionBar_subtitleTextStyle -com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrim(android.graphics.drawable.Drawable) -androidx.customview.R$id: int tag_transition_group -androidx.appcompat.app.ActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) -com.google.android.material.chip.Chip: void setChipStartPaddingResource(int) -james.adaptiveicon.R$color: int dim_foreground_material_dark -wangdaye.com.geometricweather.R$string: int widget_day -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.String Name -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onSuccess(java.lang.Object) -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void dispose() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object getKey(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled -com.jaredrummler.android.colorpicker.R$dimen: int abc_panel_menu_list_width -wangdaye.com.geometricweather.R$id: int container_main_aqi_title -androidx.preference.R$attr: int spanCount -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_customNavigationLayout -wangdaye.com.geometricweather.common.basic.models.weather.Daily: boolean isToday(java.util.TimeZone) -okio.Sink: void write(okio.Buffer,long) -com.jaredrummler.android.colorpicker.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.R$string: int feedback_not_yet_location -androidx.preference.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable -okhttp3.ConnectionPool: void put(okhttp3.internal.connection.RealConnection) -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getExtendMotionSpec() -com.google.android.material.R$dimen: int mtrl_calendar_header_height_fullscreen -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -androidx.viewpager2.R$styleable: int RecyclerView_spanCount -org.greenrobot.greendao.AbstractDaoSession: java.lang.Object load(java.lang.Class,java.lang.Object) -cyanogenmod.hardware.DisplayMode: DisplayMode(android.os.Parcel) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader -io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean isEmpty() +wangdaye.com.geometricweather.R$string: int alipay +cyanogenmod.hardware.ICMHardwareService: boolean get(int) +androidx.hilt.R$dimen: int notification_action_icon_size +androidx.coordinatorlayout.widget.CoordinatorLayout: int getSuggestedMinimumHeight() +wangdaye.com.geometricweather.R$styleable: int[] PropertySet +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle[] values() +com.turingtechnologies.materialscrollbar.R$attr: int popupTheme +androidx.viewpager2.R$drawable +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemTextAppearanceInactive() +androidx.appcompat.R$dimen: int abc_alert_dialog_button_bar_height +cyanogenmod.profiles.ConnectionSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +com.google.android.material.R$attr: int errorTextAppearance +androidx.coordinatorlayout.R$styleable +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_0 +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_fontVariationSettings +retrofit2.RequestFactory$Builder: boolean isKotlinSuspendFunction +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX +wangdaye.com.geometricweather.R$color: int mtrl_tabs_colored_ripple_color +com.google.gson.FieldNamingPolicy: FieldNamingPolicy(java.lang.String,int,com.google.gson.FieldNamingPolicy$1) +com.turingtechnologies.materialscrollbar.R$attr: int actionOverflowButtonStyle +wangdaye.com.geometricweather.R$string: int settings_notification_can_be_cleared_on +androidx.hilt.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Id +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SYSTEM_PROFILES_ENABLED_VALIDATOR +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_enqueueLiveLockScreen +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +androidx.constraintlayout.widget.R$id: int action_menu_divider +androidx.preference.R$style: int Platform_AppCompat_Light +androidx.constraintlayout.widget.R$attr: int actionModeStyle +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode valueOf(java.lang.String) +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setSnowPrecipitation(java.lang.Float) +wangdaye.com.geometricweather.R$string: int content_des_no_precipitation +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: ObservableConcatMap$SourceObserver$InnerObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver) +com.amap.api.fence.PoiItem: android.os.Parcelable$Creator getCreator() +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int color +com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.ProgressIndicatorSpec getSpec() +okhttp3.internal.http2.Http2Connection$4: java.util.List val$requestHeaders +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String HOMESCREEN_URI +com.google.android.gms.common.stats.WakeLockEvent: android.os.Parcelable$Creator CREATOR +android.didikee.donate.R$styleable: int AppCompatTheme_dividerVertical +com.tencent.bugly.crashreport.CrashReport: void initCrashReport(android.content.Context,java.lang.String,boolean,com.tencent.bugly.crashreport.CrashReport$UserStrategy) com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textFontWeight -wangdaye.com.geometricweather.R$attr: int borderWidth -wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.util.Date date -com.turingtechnologies.materialscrollbar.R$style: int Widget_Compat_NotificationActionText -com.google.android.material.R$attr: int numericModifiers -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String getUnit() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf -com.google.android.material.R$styleable: int CardView_cardBackgroundColor -androidx.preference.R$styleable: int SearchView_iconifiedByDefault -com.google.android.material.bottomnavigation.BottomNavigationMenuView: com.google.android.material.bottomnavigation.BottomNavigationItemView getNewItem() -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.internal.util.AtomicThrowable errors -com.google.android.material.R$dimen: int mtrl_calendar_title_baseline_to_top_fullscreen -androidx.appcompat.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_gravity -wangdaye.com.geometricweather.R$drawable: int btn_radio_off_mtrl -retrofit2.OptionalConverterFactory$OptionalConverter: retrofit2.Converter delegate -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: int getStatus() -io.reactivex.internal.util.ArrayListSupplier: java.util.concurrent.Callable asCallable() -androidx.appcompat.R$styleable: int Spinner_android_entries -androidx.appcompat.resources.R$layout: int notification_template_part_chronometer -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_tileMode -com.amap.api.fence.GeoFenceClient: int GEOFENCE_STAYED -okhttp3.internal.cache.DiskLruCache: boolean mostRecentRebuildFailed -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_progress -retrofit2.http.HTTP: java.lang.String path() -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.TableStatements getStatements() -com.google.android.material.R$drawable: int mtrl_ic_arrow_drop_down -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -com.google.android.material.R$styleable: int Constraint_motionStagger -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMark -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lc -io.reactivex.Observable: io.reactivex.Observable window(long) -wangdaye.com.geometricweather.R$string: int key_alert_notification_switch -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_activated_mtrl_alpha -com.google.android.material.R$styleable: int SearchView_submitBackground -com.google.android.material.progressindicator.ProgressIndicator: com.google.android.material.progressindicator.DrawableWithAnimatedVisibilityChange getCurrentDrawable() -com.google.android.material.R$styleable: int ConstraintSet_transitionEasing -android.didikee.donate.R$attr: int actionModePopupWindowStyle -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_translation_z_hovered_focused -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_CONNECTION -wangdaye.com.geometricweather.R$styleable: int RangeSlider_minSeparation -com.amap.api.location.AMapLocationClientOption$GeoLanguage: AMapLocationClientOption$GeoLanguage(java.lang.String,int) -retrofit2.BuiltInConverters$UnitResponseBodyConverter: java.lang.Object convert(java.lang.Object) -com.jaredrummler.android.colorpicker.R$style: int cpv_ColorPickerViewStyle -com.amap.api.fence.GeoFenceManagerBase: void resumeGeoFence() -com.bumptech.glide.integration.okhttp.R$id: R$id() -com.google.android.material.R$layout: int abc_action_mode_bar -com.tencent.bugly.crashreport.common.info.a: long R -com.google.android.material.R$color: int bright_foreground_material_dark -com.google.android.material.tabs.TabLayout: void setSelectedTabIndicator(int) -okio.Pipe$PipeSink: okio.Timeout timeout() -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dark -james.adaptiveicon.R$dimen: int tooltip_y_offset_touch -io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.CompletableObserver) -androidx.coordinatorlayout.R$dimen: int notification_action_icon_size -okhttp3.CipherSuite: java.lang.String javaName -com.google.android.material.R$attr: int colorSwitchThumbNormal -okhttp3.internal.http2.Hpack$Reader: int headerCount -com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeBottomLeft -androidx.appcompat.R$drawable: int abc_ic_star_half_black_16dp -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -androidx.core.R$styleable: int FontFamilyFont_fontVariationSettings -io.reactivex.internal.util.HashMapSupplier: java.lang.Object call() -wangdaye.com.geometricweather.R$layout: int preference_widget_seekbar_material -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void request(long) -androidx.appcompat.R$layout: int abc_popup_menu_header_item_layout -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent valueOf(java.lang.String) -androidx.preference.R$attr: int srcCompat -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: wangdaye.com.geometricweather.db.entities.ChineseCityEntity readEntity(android.database.Cursor,int) -okhttp3.internal.tls.BasicCertificateChainCleaner: boolean verifySignature(java.security.cert.X509Certificate,java.security.cert.X509Certificate) -androidx.hilt.lifecycle.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getDescription() -androidx.preference.R$styleable: int Preference_android_layout -james.adaptiveicon.R$layout -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -androidx.hilt.lifecycle.R$id: int action_container -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onError(java.lang.Throwable) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Switch -cyanogenmod.weather.WeatherLocation: void writeToParcel(android.os.Parcel,int) -james.adaptiveicon.R$styleable: int ActionMode_background -com.google.android.material.R$styleable: int SearchView_android_inputType -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar -com.google.android.material.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -com.tencent.bugly.proguard.z: boolean a(android.content.Context,java.lang.String,long) -com.google.android.material.R$drawable: int navigation_empty_icon -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getTagName(android.content.Context) -james.adaptiveicon.R$styleable: int ActionBar_homeLayout -androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -androidx.appcompat.R$drawable: int abc_ratingbar_material -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getCityId() -com.jaredrummler.android.colorpicker.R$attr: int searchHintIcon -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_transitionPathRotate -androidx.preference.R$attr: int actionOverflowMenuStyle -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.List AirAndPollen -cyanogenmod.app.IProfileManager: boolean profileExistsByName(java.lang.String) -com.google.android.material.R$attr: int maxCharacterCount -cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.WeatherInfo val$weatherInfo -okhttp3.internal.cache2.Relay: okhttp3.internal.cache2.Relay read(java.io.File) -androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotationX -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial() -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_collapsedSize -com.google.android.material.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton_Icon -androidx.appcompat.R$styleable: int AppCompatTextHelper_android_textAppearance -com.turingtechnologies.materialscrollbar.R$id: int view_offset_helper -james.adaptiveicon.R$attr: int buttonTint -com.turingtechnologies.materialscrollbar.R$styleable: int[] CardView -com.tencent.bugly.proguard.p: android.content.ContentValues d(com.tencent.bugly.proguard.r) -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void otherError(java.lang.Throwable) -androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_alpha -okhttp3.internal.Util: Util() -okio.RealBufferedSink: RealBufferedSink(okio.Sink) -androidx.fragment.R$layout: int notification_template_part_time -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_TabLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: void setSpeed(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean) +com.google.android.material.R$attr: int counterOverflowTextAppearance +cyanogenmod.app.IProfileManager: void updateProfile(cyanogenmod.app.Profile) +androidx.appcompat.R$attr: int panelMenuListWidth +com.github.rahatarmanahmed.cpv.R$attr: int cpv_color +androidx.loader.R$styleable +androidx.appcompat.R$styleable: int ActionBar_backgroundSplit +okio.Utf8: long size(java.lang.String) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks asInterface(android.os.IBinder) +wangdaye.com.geometricweather.R$id: int dialog_location_help_locationTitle +com.xw.repo.bubbleseekbar.R$attr: int spinnerStyle +wangdaye.com.geometricweather.R$attr: int toolbarId +com.google.android.material.R$style: int Widget_AppCompat_SeekBar +okhttp3.OkHttpClient: boolean followSslRedirects() +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1(androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber,java.lang.Throwable) +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setBackgroundResource(int) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: void run() +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String unitId +cyanogenmod.weatherservice.ServiceRequestResult: boolean equals(java.lang.Object) +com.xw.repo.bubbleseekbar.R$color: int notification_icon_bg_color +com.google.android.material.R$styleable: int TextInputLayout_helperTextTextAppearance +com.tencent.bugly.proguard.z: boolean b +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onAttach_0 +com.tencent.bugly.a: void init(android.content.Context,boolean,com.tencent.bugly.BuglyStrategy) +com.google.android.material.R$dimen: int mtrl_navigation_item_horizontal_padding +wangdaye.com.geometricweather.R$id: int line3 +androidx.preference.SeekBarPreference: SeekBarPreference(android.content.Context,android.util.AttributeSet) +com.amap.api.fence.PoiItem: void setAddress(java.lang.String) +android.didikee.donate.R$layout: int abc_action_bar_up_container +cyanogenmod.os.Build$CM_VERSION_CODES: int DRAGON_FRUIT +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +com.google.android.material.R$dimen: int mtrl_slider_thumb_elevation +okhttp3.internal.http2.Http2Connection$ReaderRunnable$3 +wangdaye.com.geometricweather.R$styleable: int Constraint_android_alpha +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_overflow_padding_end_material +okhttp3.internal.http2.Http2Reader: void readRstStream(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_logoDescription +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dark +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: ServiceLifecycleDispatcher$DispatchRunnable(androidx.lifecycle.LifecycleRegistry,androidx.lifecycle.Lifecycle$Event) +androidx.preference.R$dimen: int abc_text_size_large_material +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_horizontal_edge_offset +cyanogenmod.externalviews.ExternalView: void onAttachedToWindow() +androidx.preference.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: double Value +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String EXTRA_ALARM_ID +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Medium +androidx.appcompat.widget.ActivityChooserView: androidx.appcompat.widget.ListPopupWindow getListPopupWindow() +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_font +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getSuffixText() +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetEnd +androidx.appcompat.R$styleable: int[] MenuItem +androidx.preference.R$styleable: int FontFamily_fontProviderFetchStrategy +james.adaptiveicon.R$styleable: int ActionBar_contentInsetStart +james.adaptiveicon.R$drawable: int abc_list_selector_disabled_holo_dark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed Speed +androidx.viewpager.R$dimen: int notification_media_narrow_margin +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onCreatePanelMenu(int,android.view.Menu) +androidx.constraintlayout.widget.R$attr: int backgroundTintMode +io.reactivex.Observable: io.reactivex.Observable timeInterval(io.reactivex.Scheduler) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.HalfDay[] halfDays +androidx.core.R$id: int accessibility_custom_action_0 +com.google.android.material.R$styleable: int MaterialCardView_cardForegroundColor +okhttp3.internal.platform.AndroidPlatform: int MAX_LOG_LENGTH +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderCerts +io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean delayError +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: java.lang.String Unit +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String hexAV() +androidx.viewpager.R$id: int line1 +james.adaptiveicon.R$bool: int abc_allow_stacked_button_bar +androidx.viewpager2.R$styleable: int FontFamilyFont_android_ttcIndex +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemTextAppearanceActive() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource +cyanogenmod.hardware.ICMHardwareService: boolean requireAdaptiveBacklightForSunlightEnhancement() +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge +androidx.appcompat.R$dimen: int abc_action_bar_default_padding_end_material +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) +com.xw.repo.bubbleseekbar.R$string: int abc_menu_alt_shortcut_label +com.google.android.material.R$attr: int statusBarForeground +com.tencent.bugly.proguard.f: int h +androidx.loader.R$styleable: int FontFamilyFont_android_fontStyle +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_DrawerArrowToggle +androidx.preference.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +android.didikee.donate.R$color: int abc_tint_switch_track +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeDegreeDayTemperature() +com.google.android.material.R$interpolator: int mtrl_linear_out_slow_in +cyanogenmod.app.IProfileManager$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() +com.jaredrummler.android.colorpicker.R$styleable: int[] FontFamily +androidx.appcompat.widget.Toolbar$SavedState: android.os.Parcelable$Creator CREATOR +okio.RealBufferedSource: RealBufferedSource(okio.Source) +wangdaye.com.geometricweather.R$id: int transparency_layout +com.google.android.material.R$styleable: int KeyAttribute_android_rotationX +james.adaptiveicon.R$attr: int arrowHeadLength +com.google.android.material.R$dimen: int mtrl_btn_text_btn_icon_padding +androidx.constraintlayout.widget.R$styleable: int OnSwipe_onTouchUp +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: void setFrom(java.util.Date) +androidx.core.R$layout: int notification_template_part_time +com.tencent.bugly.crashreport.biz.a: long b(com.tencent.bugly.crashreport.biz.a) +com.jaredrummler.android.colorpicker.R$dimen: int notification_action_icon_size +com.tencent.bugly.proguard.ak: java.util.Map h +cyanogenmod.profiles.LockSettings: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$style: int Widget_Compat_NotificationActionText +james.adaptiveicon.R$styleable: int MenuItem_android_numericShortcut +com.amap.api.location.AMapLocation: java.lang.String toStr() +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setTextColor(int) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.util.AtomicThrowable errors +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontWeight +com.jaredrummler.android.colorpicker.R$attr: int navigationIcon +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconCheckable +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: void execute() +cyanogenmod.providers.CMSettings$System: java.lang.String NAVBAR_LEFT_IN_LANDSCAPE +wangdaye.com.geometricweather.R$styleable: int MaterialButton_shapeAppearance +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitationProbability() +androidx.appcompat.R$styleable: int[] ActivityChooserView +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator +okhttp3.Headers: int hashCode() +james.adaptiveicon.R$color: int notification_action_color_filter +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: android.net.Uri NO_RINGTONE_URI +androidx.hilt.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: java.lang.String Unit +com.google.android.material.R$styleable: int Constraint_flow_verticalBias +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: java.lang.String newX +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_touch_to_seek +androidx.appcompat.R$id: int accessibility_custom_action_25 +android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedWidthMinor +androidx.swiperefreshlayout.R$styleable +com.google.android.material.R$anim: int mtrl_bottom_sheet_slide_out +com.turingtechnologies.materialscrollbar.R$drawable: int design_fab_background +retrofit2.RequestFactory$Builder: retrofit2.Retrofit retrofit +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean isDisposed() +androidx.viewpager2.R$attr: int fontProviderCerts +androidx.hilt.R$color: int secondary_text_default_material_light +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean mainDone +james.adaptiveicon.R$styleable: int DrawerArrowToggle_arrowShaftLength +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button +androidx.appcompat.R$styleable: int ActionBar_titleTextStyle +cyanogenmod.power.PerformanceManager: int getPowerProfile() +com.turingtechnologies.materialscrollbar.R$attr: int colorSwitchThumbNormal +com.jaredrummler.android.colorpicker.R$attr: int iconTint +com.tencent.bugly.crashreport.crash.jni.b: com.tencent.bugly.crashreport.crash.CrashDetailBean a(android.content.Context,java.util.Map,com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler) +com.google.android.material.behavior.HideBottomViewOnScrollBehavior +wangdaye.com.geometricweather.R$string: int key_precipitation_notification_switch +wangdaye.com.geometricweather.R$id: int peekHeight +wangdaye.com.geometricweather.R$style +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemTextAppearanceInactive(int) +android.support.v4.graphics.drawable.IconCompatParcelizer: IconCompatParcelizer() +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_elevation +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String dept +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setPubTime(java.util.Date) +com.amap.api.location.AMapLocation: java.lang.String B +com.tencent.bugly.proguard.y: boolean a +com.google.android.material.R$id: int progress_circular +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_padding_bottom +cyanogenmod.app.CustomTile: cyanogenmod.app.CustomTile clone() +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void setCancellable(io.reactivex.functions.Cancellable) +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: SavedStateHandle$SavingStateLiveData(androidx.lifecycle.SavedStateHandle,java.lang.String) +com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_max_width +com.google.android.material.R$style: int Widget_MaterialComponents_ChipGroup +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircleRadius +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_tooltipText +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_maxElementsWrap +com.tencent.bugly.proguard.q: void onUpgrade(android.database.sqlite.SQLiteDatabase,int,int) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Caption +james.adaptiveicon.R$color: int abc_tint_default +okhttp3.logging.LoggingEventListener$Factory: LoggingEventListener$Factory(okhttp3.logging.HttpLoggingInterceptor$Logger) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Latitude +james.adaptiveicon.R$integer +androidx.appcompat.widget.AppCompatRadioButton: int getCompoundPaddingLeft() +wangdaye.com.geometricweather.R$attr: int tabIconTint +james.adaptiveicon.R$style: int TextAppearance_AppCompat_SearchResult_Title +com.google.android.gms.common.server.FavaDiagnosticsEntity: android.os.Parcelable$Creator CREATOR +com.baidu.location.c.d$a +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: java.util.concurrent.atomic.AtomicReference upstream +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getDate() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedHeightMajor +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_23 +com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context) +cyanogenmod.app.StatusBarPanelCustomTile: void writeToParcel(android.os.Parcel,int) +androidx.hilt.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.R$string: int feedback_interpret_notification_group_title +wangdaye.com.geometricweather.R$attr: int content +wangdaye.com.geometricweather.R$styleable: int[] MaterialAlertDialogTheme +wangdaye.com.geometricweather.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_29 +cyanogenmod.hardware.ICMHardwareService: java.lang.String getSerialNumber() +wangdaye.com.geometricweather.R$attr: int boxCornerRadiusBottomStart +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +androidx.preference.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +com.amap.api.location.AMapLocationClient: android.content.Context a +androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityCreated(android.app.Activity,android.os.Bundle) +androidx.preference.R$styleable: int GradientColor_android_centerColor +androidx.drawerlayout.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_currentPageIndicatorColor +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetLeft +com.amap.api.location.DPoint +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_z +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginRight +androidx.appcompat.R$attr: int editTextColor +com.google.android.material.R$styleable: int TabLayout_tabTextColor +okhttp3.internal.http.RealResponseBody: long contentLength() +com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context) +com.google.android.material.button.MaterialButtonToggleGroup: int getLastVisibleChildIndex() +androidx.appcompat.R$attr: int popupWindowStyle +com.google.android.material.R$style: int TextAppearance_AppCompat_Large_Inverse +com.google.android.material.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary +io.reactivex.internal.queue.SpscArrayQueue: int calcElementOffset(long) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction Direction +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableTop +okio.GzipSource: byte FEXTRA +androidx.appcompat.R$styleable: int AppCompatTheme_colorAccent +androidx.preference.R$dimen: int highlight_alpha_material_colored +androidx.preference.R$attr: int actionBarTabBarStyle +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setEncodedQueryParameter(java.lang.String,java.lang.String) +androidx.preference.R$attr: int homeAsUpIndicator +com.jaredrummler.android.colorpicker.R$attr: int lineHeight +james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +androidx.preference.R$styleable: int[] MenuItem +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetEndWithActions +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_HOME_DOUBLE_TAP_ACTION +com.google.android.material.R$color: int design_fab_stroke_end_outer_color +okio.Base64: java.lang.String encodeUrl(byte[]) +androidx.appcompat.R$dimen: int highlight_alpha_material_colored +androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandleController create(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle,java.lang.String,android.os.Bundle) +io.reactivex.exceptions.CompositeException: CompositeException(java.lang.Iterable) +io.reactivex.internal.observers.DeferredScalarDisposable +okhttp3.internal.tls.BasicTrustRootIndex: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String longitude +com.tencent.bugly.crashreport.common.info.a: void d() +okhttp3.Cookie$Builder: java.lang.String path +com.google.android.material.chip.Chip: void setChipTextResource(int) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer ragweedLevel +org.greenrobot.greendao.AbstractDao: java.lang.String[] getNonPkColumns() +com.turingtechnologies.materialscrollbar.R$drawable: int notification_template_icon_low_bg +androidx.lifecycle.ViewModelStore: ViewModelStore() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeDegreeDayTemperature +com.google.android.material.R$drawable: int abc_ic_menu_overflow_material +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DIALER_OPENCNAM_AUTH_TOKEN_VALIDATOR +com.amap.api.fence.GeoFence: android.app.PendingIntent getPendingIntent() +okhttp3.internal.ws.RealWebSocket: boolean pong(okio.ByteString) +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSize +androidx.core.R$styleable: int FontFamilyFont_android_ttcIndex +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onError(java.lang.Throwable) +cyanogenmod.app.CMContextConstants: java.lang.String CM_PROFILE_SERVICE +android.didikee.donate.R$id: int middle +cyanogenmod.app.Profile: int describeContents() +wangdaye.com.geometricweather.R$id: int item_weather_daily_uv_title +wangdaye.com.geometricweather.R$attr: int endIconTintMode +androidx.constraintlayout.widget.R$id: int NO_DEBUG +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionBar +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getRealFeelTemperature() +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColorSchemeResource(int) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline2 +wangdaye.com.geometricweather.R$array: int widget_style_values +android.didikee.donate.R$styleable: int[] ColorStateListItem +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableBottom +cyanogenmod.app.ProfileManager: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) +androidx.core.R$id: int time +wangdaye.com.geometricweather.R$string: int character_counter_pattern +wangdaye.com.geometricweather.R$id: int TOP_START +com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.drawable.Drawable getContentScrim() +androidx.appcompat.resources.R$id: int accessibility_custom_action_5 +retrofit2.http.FieldMap +cyanogenmod.themes.ThemeChangeRequest$1: java.lang.Object[] newArray(int) +com.tencent.bugly.proguard.aq +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeThunderstormPrecipitation() +com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_icon +androidx.constraintlayout.widget.R$styleable: int MenuView_preserveIconSpacing +okio.Segment: int limit +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean otherDone +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +io.reactivex.Observable: java.lang.Iterable blockingIterable(int) +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer getCloudCover() +androidx.preference.R$dimen: int notification_action_text_size +androidx.work.R$dimen: int compat_notification_large_icon_max_width +okio.RealBufferedSink: okio.BufferedSink emit() +wangdaye.com.geometricweather.R$dimen: int progress_view_size +okio.BufferedSink: long writeAll(okio.Source) +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_switchTextOn +androidx.legacy.coreutils.R$color: int notification_action_color_filter +androidx.preference.R$styleable: int[] PreferenceTheme +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarStyle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_CBC_SHA +cyanogenmod.profiles.ConnectionSettings: void setValue(int) +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode resolve(android.content.Context) +io.reactivex.internal.util.NotificationLite$ErrorNotification: int hashCode() +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1 +com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.externalviews.ExternalViewProviderService +androidx.activity.R$style: int TextAppearance_Compat_Notification_Info wangdaye.com.geometricweather.common.basic.models.weather.History: History(java.util.Date,long,int,int) -wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTemperature -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getError() -cyanogenmod.platform.Manifest$permission: java.lang.String READ_DATAUSAGE -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getUnitId() -androidx.preference.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -android.didikee.donate.R$dimen: int abc_button_padding_vertical_material -wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_grey -androidx.work.R$attr: int alpha -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchMinWidth -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_rangeFillColor -cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.AppSuggestManager getInstance(android.content.Context) -com.tencent.bugly.crashreport.common.strategy.a: android.content.Context g -androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Line2 -com.jaredrummler.android.colorpicker.R$drawable: int tooltip_frame_dark -cyanogenmod.power.IPerformanceManager$Stub -com.google.android.material.R$attr: int subtitle -com.tencent.bugly.proguard.aq: void a(com.tencent.bugly.proguard.j) -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerComplete() -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SUNNY -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ImageButton -okhttp3.Route: java.net.Proxy proxy() -wangdaye.com.geometricweather.R$id: int action_appStore -com.turingtechnologies.materialscrollbar.R$styleable: int[] TabItem -androidx.work.R$attr: int fontVariationSettings -android.didikee.donate.R$attr: int navigationMode -wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_fullscreen -com.google.android.material.textfield.TextInputLayout: void setErrorIconTintMode(android.graphics.PorterDuff$Mode) -com.tencent.bugly.a: java.lang.String moduleName -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void onDetachedFromWindow() -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupMenu -okhttp3.RequestBody: okhttp3.MediaType contentType() -com.google.gson.FieldNamingPolicy$4: java.lang.String translateName(java.lang.reflect.Field) -io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lon -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.R$attr: int boxBackgroundColor +androidx.appcompat.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.R$font +retrofit2.converter.gson.GsonRequestBodyConverter +okhttp3.Cache$Entry +james.adaptiveicon.R$id: int wrap_content +okhttp3.internal.connection.RealConnection: okio.BufferedSink sink +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: java.lang.String getDarkModeName(android.content.Context) +com.turingtechnologies.materialscrollbar.R$attr: int actionModeSplitBackground +com.google.android.material.R$styleable: int Snackbar_snackbarStyle +okhttp3.internal.ws.WebSocketReader: void readControlFrame() +com.google.android.material.R$styleable: int Layout_layout_constraintTop_toBottomOf +androidx.appcompat.R$dimen: int highlight_alpha_material_light +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Subhead +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.common.info.a c +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onComplete() +wangdaye.com.geometricweather.R$attr: int dayStyle +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Headline +androidx.appcompat.R$layout: int select_dialog_singlechoice_material +okhttp3.internal.connection.RouteException: java.io.IOException getLastConnectException() +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_NoActionBar +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +androidx.viewpager2.R$styleable: int ColorStateListItem_android_alpha +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +wangdaye.com.geometricweather.R$attr: int transitionPathRotate +okhttp3.ConnectionSpec: boolean supportsTlsExtensions +androidx.core.view.GestureDetectorCompat: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) +retrofit2.Retrofit$Builder: java.util.List converterFactories +com.tencent.bugly.crashreport.common.info.a: long q +com.baidu.location.indoor.mapversion.c.a$d: void b(java.lang.String) +androidx.hilt.R$integer: int status_bar_notification_info_maxnum +com.google.android.material.appbar.AppBarLayout: void setExpanded(boolean) +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String description +androidx.constraintlayout.widget.R$id: int default_activity_button +androidx.appcompat.R$color: int switch_thumb_material_dark +wangdaye.com.geometricweather.R$color: int material_on_surface_stroke +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getRagweedDescription() +com.google.android.material.internal.NavigationMenuItemView: void setTextAppearance(int) +io.reactivex.internal.observers.InnerQueuedObserver: boolean isDisposed() +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onResume +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings +okhttp3.Challenge: java.nio.charset.Charset charset() +androidx.core.app.JobIntentService +androidx.vectordrawable.animated.R$styleable: int[] GradientColor +com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.R$styleable: int Constraint_transitionEasing +com.google.android.material.R$styleable: int[] AppBarLayoutStates +wangdaye.com.geometricweather.R$attr: int bottomAppBarStyle +wangdaye.com.geometricweather.R$attr: int labelBehavior +com.google.android.material.R$styleable: int MaterialCalendarItem_itemShapeAppearance +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge +wangdaye.com.geometricweather.R$layout: int item_weather_daily_astro +com.jaredrummler.android.colorpicker.R$styleable: int Preference_order +okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String,java.util.Date) +androidx.work.impl.WorkDatabase_Impl +androidx.work.impl.background.systemalarm.SystemAlarmService: SystemAlarmService() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Small +androidx.vectordrawable.animated.R$id: int notification_main_column +cyanogenmod.externalviews.ExternalViewProviderService$Provider: void onResume() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HOME_WAKE_SCREEN_VALIDATOR +androidx.preference.MultiSelectListPreferenceDialogFragmentCompat: MultiSelectListPreferenceDialogFragmentCompat() +androidx.lifecycle.ProcessLifecycleOwnerInitializer: int update(android.net.Uri,android.content.ContentValues,java.lang.String,java.lang.String[]) +wangdaye.com.geometricweather.R$styleable: int[] ColorPanelView +androidx.lifecycle.extensions.R$attr: int fontWeight +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean g +com.tencent.bugly.proguard.i: long a(long,int,boolean) +cyanogenmod.app.Profile: void setExpandedDesktopMode(int) +androidx.appcompat.R$style: int Widget_AppCompat_Spinner +wangdaye.com.geometricweather.R$dimen: int material_cursor_width +com.xw.repo.bubbleseekbar.R$style: int Base_V26_Theme_AppCompat_Light +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_orientation +androidx.preference.R$color: int preference_fallback_accent_color +james.adaptiveicon.R$styleable: int AppCompatImageView_tintMode +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: okhttp3.internal.http2.Settings val$settings +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: ObservableBufferBoundary$BufferBoundaryObserver(io.reactivex.Observer,io.reactivex.ObservableSource,io.reactivex.functions.Function,java.util.concurrent.Callable) +com.turingtechnologies.materialscrollbar.R$attr: int menu +android.didikee.donate.R$styleable: int AppCompatImageView_tintMode +com.google.android.material.R$style: int Theme_Design_Light_BottomSheetDialog +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox +wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableTransition +com.google.gson.internal.LinkedTreeMap: java.util.Set keySet() +androidx.preference.R$id: int checkbox +androidx.recyclerview.R$id: int tag_unhandled_key_listeners +james.adaptiveicon.R$id: int search_edit_frame +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_viewInflaterClass +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getRainPrecipitationProbability() +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder followRedirects(boolean) +com.jaredrummler.android.colorpicker.R$attr: int titleMargin +com.google.android.material.appbar.AppBarLayout$BaseBehavior$SavedState: android.os.Parcelable$Creator CREATOR +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback(retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter,java.util.concurrent.CompletableFuture) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature WetBulbTemperature +androidx.appcompat.R$layout: int abc_select_dialog_material +com.google.android.material.button.MaterialButton: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_android_minHeight +android.didikee.donate.R$dimen: int notification_main_column_padding_top +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +androidx.fragment.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.R$styleable: int Constraint_barrierMargin +com.xw.repo.bubbleseekbar.R$attr: int bsb_second_track_size +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_22 +wangdaye.com.geometricweather.weather.apis.AccuWeatherApi +android.didikee.donate.R$drawable: int abc_text_select_handle_left_mtrl_light +com.google.android.material.R$attr: int actionModeBackground +com.jaredrummler.android.colorpicker.R$dimen: int abc_button_inset_vertical_material +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Caption +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontVariationSettings +cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_ANSWER +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_EditText +com.google.android.material.R$style: int ShapeAppearanceOverlay_TopLeftCut +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerY +android.didikee.donate.R$styleable: int AppCompatTheme_imageButtonStyle +androidx.hilt.R$id: int accessibility_custom_action_22 +androidx.vectordrawable.animated.R$styleable: int GradientColorItem_android_offset +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$dimen: int disabled_alpha_material_dark +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: float getDensity(float) +androidx.constraintlayout.widget.R$attr: int color +com.amap.api.location.AMapLocationClient: com.amap.api.location.AMapLocation getLastKnownLocation() +com.jaredrummler.android.colorpicker.R$styleable: int Preference_enabled +com.google.gson.stream.JsonReader: int nextInt() +okhttp3.internal.publicsuffix.PublicSuffixDatabase: PublicSuffixDatabase() +okio.Okio: okio.Source source(java.nio.file.Path,java.nio.file.OpenOption[]) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 +okhttp3.Response: okhttp3.Response networkResponse() +wangdaye.com.geometricweather.R$styleable: int TabItem_android_layout +wangdaye.com.geometricweather.R$styleable: int Transform_android_rotation +com.bumptech.glide.R$dimen: int notification_content_margin_start +com.google.android.material.R$id: int easeIn +androidx.constraintlayout.widget.R$styleable: int[] FontFamilyFont +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_MENU_LONG_PRESS_ACTION_VALIDATOR com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_content_padding_fullscreen -androidx.swiperefreshlayout.R$drawable: int notification_bg_low_pressed -android.didikee.donate.R$color: int ripple_material_dark -androidx.hilt.work.R$dimen: int notification_big_circle_margin -cyanogenmod.themes.ThemeChangeRequest: void writeToParcel(android.os.Parcel,int) -com.google.android.material.R$id: int edit_query -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_overflow_padding_start_material -com.google.android.material.slider.BaseSlider: void setHaloRadius(int) -com.google.android.material.textfield.TextInputLayout: int getCounterMaxLength() -okhttp3.internal.ws.WebSocketProtocol: int CLOSE_NO_STATUS_CODE +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: ObservableTimer$TimerObserver(io.reactivex.Observer) +com.google.android.material.R$styleable: int Layout_layout_editor_absoluteX +retrofit2.BuiltInConverters$RequestBodyConverter: retrofit2.BuiltInConverters$RequestBodyConverter INSTANCE +wangdaye.com.geometricweather.R$attr: int cpv_startAngle +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline1 +androidx.coordinatorlayout.R$dimen: int notification_small_icon_background_padding +com.xw.repo.bubbleseekbar.R$id: int wrap_content +androidx.appcompat.R$attr: int editTextStyle +com.google.android.material.R$styleable: int Insets_paddingRightSystemWindowInsets +io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Chip_Choice +cyanogenmod.profiles.LockSettings: void processOverride(android.content.Context,com.android.internal.policy.IKeyguardService) +com.tencent.bugly.crashreport.CrashReport: void setIsDevelopmentDevice(android.content.Context,boolean) +androidx.cardview.R$dimen: R$dimen() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String value +androidx.preference.R$integer: R$integer() +com.jaredrummler.android.colorpicker.R$string: int abc_action_menu_overflow_description +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_checkableBehavior +androidx.constraintlayout.widget.R$id: int tag_accessibility_pane_title +com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getHideRatio() +wangdaye.com.geometricweather.R$id: int widget_text_date +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String hourlyForecast +androidx.hilt.work.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_111 +androidx.preference.R$attr: int buttonTintMode +com.turingtechnologies.materialscrollbar.R$drawable +com.google.android.material.R$animator: int design_fab_hide_motion_spec +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setTempMax(java.lang.String) +retrofit2.HttpException: java.lang.String getMessage(retrofit2.Response) +androidx.appcompat.R$attr: int buttonIconDimen +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitationDuration(java.lang.Float) +androidx.recyclerview.widget.RecyclerView: int getBaseline() +com.google.android.material.R$integer: int mtrl_calendar_year_selector_span +wangdaye.com.geometricweather.R$dimen: int widget_time_text_size +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: boolean isDisposed() +cyanogenmod.app.Profile: void setConnectionSettings(cyanogenmod.profiles.ConnectionSettings) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: boolean IsAlias +cyanogenmod.hardware.CMHardwareManager: int getVibratorWarningIntensity() +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String PUBLIC_SUFFIX_RESOURCE +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_editTextPreferenceStyle +james.adaptiveicon.R$drawable: int abc_popup_background_mtrl_mult +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_visible +retrofit2.OkHttpCall: okhttp3.Call getRawCall() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ZEN_PRIORITY_ALLOW_LIGHTS_VALIDATOR +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode getInstance(java.lang.String) +androidx.viewpager.R$dimen: int notification_subtext_size +androidx.hilt.lifecycle.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$style: int Widget_Design_FloatingActionButton +com.turingtechnologies.materialscrollbar.R$style: int Platform_V21_AppCompat +androidx.preference.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +androidx.activity.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: AccuDailyResult$DailyForecasts$Day$WindGust() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setUrl(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_auto_adjust_section_mark +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_top +wangdaye.com.geometricweather.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$dimen: int material_clock_number_text_size +wangdaye.com.geometricweather.R$xml: int icon_provider_sun_moon_filter +com.google.android.material.R$styleable: int MockView_mock_showDiagonals +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogTheme +androidx.drawerlayout.R$id: int text +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX +androidx.cardview.R$styleable +retrofit2.KotlinExtensions$await$4$2: KotlinExtensions$await$4$2(kotlinx.coroutines.CancellableContinuation) +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit K +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_28 +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit[] values() +androidx.hilt.R$styleable: int ColorStateListItem_android_alpha +com.tencent.bugly.proguard.i: void a() +retrofit2.CallAdapter$Factory: CallAdapter$Factory() +androidx.viewpager2.R$attr: int layoutManager +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_TextView_SpinnerItem +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: AccuCurrentResult$TemperatureSummary$Past12HourRange() +com.tencent.bugly.proguard.g +wangdaye.com.geometricweather.R$dimen: int design_fab_size_normal +wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogTitle +cyanogenmod.providers.CMSettings$Secure: java.lang.String BUTTON_BRIGHTNESS +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.R$dimen: int design_bottom_navigation_text_size +androidx.lifecycle.ReflectiveGenericLifecycleObserver: java.lang.Object mWrapped +androidx.appcompat.widget.Toolbar: void setCollapseIcon(int) +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_thumb +com.google.android.material.R$styleable: int CollapsingToolbarLayout_titleEnabled +androidx.constraintlayout.widget.R$dimen: int abc_dialog_min_width_major +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getShortDescription() +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeManager sInstance +androidx.preference.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource[] values() +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getShortDate(android.content.Context) +androidx.viewpager.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SearchView_ActionBar +androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int Priority +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabTextStyle +androidx.hilt.R$id: int fragment_container_view_tag +androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_NoActionBar_Bridge +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ListPopupWindow +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_scrollMode +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitationProbability +com.turingtechnologies.materialscrollbar.R$styleable: int[] ChipGroup +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: int TRANSACTION_setServiceRequestState +cyanogenmod.weather.CMWeatherManager: void cancelRequest(int) +androidx.viewpager2.R$styleable: int GradientColor_android_tileMode +cyanogenmod.app.CMStatusBarManager: void removeTile(java.lang.String,int) +cyanogenmod.app.CustomTile$Builder: CustomTile$Builder(android.content.Context) +androidx.hilt.lifecycle.R$id: int text +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderPackage +cyanogenmod.weather.WeatherInfo$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.preference.PreferenceGroup$SavedState: android.os.Parcelable$Creator CREATOR +androidx.transition.R$id: int parent_matrix +com.google.android.material.R$attr: int layout_constraintRight_toLeftOf +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String HOUR +cyanogenmod.app.Profile$TriggerState: int ON_A2DP_CONNECT +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: boolean isDisposed() +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemHorizontalTranslationEnabled(boolean) +com.baidu.location.e.l$b: l$b(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int,com.baidu.location.e.l$1) +retrofit2.RequestBuilder: void addHeaders(okhttp3.Headers) +cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getProfileByName(java.lang.String) +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context,android.util.AttributeSet) +androidx.preference.R$style: int Widget_AppCompat_ProgressBar +wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemBackground +wangdaye.com.geometricweather.R$color: int material_deep_teal_200 +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +retrofit2.http.HTTP +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_title +androidx.customview.R$styleable: int FontFamilyFont_fontVariationSettings +cyanogenmod.platform.Manifest$permission: java.lang.String PUBLISH_CUSTOM_TILE +androidx.constraintlayout.widget.R$attr: int actionBarSize +okhttp3.Cache +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void dispose() +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog_MinWidth +wangdaye.com.geometricweather.R$attr: int drawPath +androidx.preference.R$attr: int selectableItemBackgroundBorderless +androidx.constraintlayout.widget.R$attr: int menu +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setGeoLanguage(com.amap.api.location.AMapLocationClientOption$GeoLanguage) +androidx.customview.R$color: int ripple_material_light +com.amap.api.fence.GeoFence: java.lang.String a +androidx.appcompat.R$styleable: int MenuGroup_android_id +androidx.core.R$dimen: int notification_right_icon_size +androidx.drawerlayout.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomSheetDialog +wangdaye.com.geometricweather.R$animator: int mtrl_btn_state_list_anim +androidx.constraintlayout.widget.R$styleable: int KeyPosition_pathMotionArc +com.jaredrummler.android.colorpicker.R$style: int Base_V22_Theme_AppCompat +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Small +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionButtonStyle +com.google.android.material.R$attr: int fabCradleRoundedCornerRadius +io.reactivex.internal.observers.DeferredScalarDisposable: boolean tryDispose() +androidx.drawerlayout.R$dimen: int notification_top_pad_large_text +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: KeyguardExternalViewProviderService$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: java.lang.String desc +wangdaye.com.geometricweather.R$string: int settings_title_unit +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Info +cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getActiveProfile() +wangdaye.com.geometricweather.R$drawable: int ic_launcher_foreground +androidx.appcompat.R$id: int list_item +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableTop +io.reactivex.Observable: io.reactivex.Maybe elementAt(long) +com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreferenceCompat_Material +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: ArcProgress(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int[] MaterialCalendarItem +com.google.android.material.R$styleable: int ActionBar_divider +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_prompt +androidx.appcompat.R$attr: int windowActionBar +james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_RadioButton +retrofit2.BuiltInConverters$VoidResponseBodyConverter: java.lang.Object convert(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getLocationKey() +wangdaye.com.geometricweather.R$drawable: int notification_bg_low_normal +com.google.android.material.button.MaterialButton: void setInsetTop(int) +androidx.dynamicanimation.R$dimen: int notification_right_icon_size +com.jaredrummler.android.colorpicker.R$attr: int allowStacking +retrofit2.Invocation: Invocation(java.lang.reflect.Method,java.util.List) +com.tencent.bugly.crashreport.common.info.b: java.lang.String k(android.content.Context) +wangdaye.com.geometricweather.R$attr: int actionModeBackground +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_16dp +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonStyleSmall +androidx.appcompat.R$styleable: int[] View +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.Observer downstream +androidx.appcompat.R$attr: int iconTint +androidx.transition.R$layout: int notification_template_part_chronometer +com.bumptech.glide.R$attr: int fontProviderFetchTimeout +androidx.appcompat.R$styleable: int AppCompatTheme_colorControlNormal +androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context) +com.google.android.material.R$styleable: int AppCompatTheme_dialogPreferredPadding +com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeTopRight +cyanogenmod.app.LiveLockScreenInfo: java.lang.Object clone() +okio.ByteString: long serialVersionUID +androidx.constraintlayout.widget.R$styleable: int MotionLayout_showPaths +androidx.lifecycle.process.R +wangdaye.com.geometricweather.db.entities.HistoryEntity: int daytimeTemperature +androidx.preference.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type[] values() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalStyle +com.google.android.material.R$color: int design_default_color_secondary_variant +androidx.work.R$id: int accessibility_custom_action_5 +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onScreenTurnedOn() +okio.RealBufferedSource: int read(byte[],int,int) +cyanogenmod.app.CustomTile$1: cyanogenmod.app.CustomTile[] newArray(int) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void disposeAll() +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.R$styleable: int Slider_labelBehavior +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber +androidx.hilt.work.R$drawable: int notification_bg_low_normal +cyanogenmod.hardware.ThermalListenerCallback$State: java.lang.String toString(int) +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property City +wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean isEntityUpdateable() +androidx.preference.R$layout: int abc_list_menu_item_checkbox +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleEnabled +androidx.hilt.lifecycle.R$anim: R$anim() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listDividerAlertDialog +com.google.android.material.R$attr: int pressedTranslationZ +com.jaredrummler.android.colorpicker.R$dimen: int cpv_required_padding +com.google.android.material.R$id: int filled +wangdaye.com.geometricweather.R$drawable: int weather_rain_2 +androidx.constraintlayout.widget.R$id: int jumpToEnd +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalBias +okhttp3.Cache: int hitCount +androidx.drawerlayout.widget.DrawerLayout: android.graphics.drawable.Drawable getStatusBarBackgroundDrawable() +com.xw.repo.bubbleseekbar.R$dimen: int notification_action_text_size +com.tencent.bugly.proguard.f: void a(com.tencent.bugly.proguard.j) +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerReceiver +wangdaye.com.geometricweather.R$color: int accent_material_light +wangdaye.com.geometricweather.R$string: int retrofit +com.google.android.material.slider.BaseSlider: void setThumbRadiusResource(int) +androidx.activity.R$styleable: int GradientColor_android_centerX +com.tencent.bugly.crashreport.biz.b: java.lang.Class b() +androidx.constraintlayout.widget.R$attr: int flow_verticalBias +android.didikee.donate.R$attr: int titleMarginEnd +cyanogenmod.app.ThemeComponent +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void drain() +com.google.android.material.R$styleable: int Toolbar_subtitleTextAppearance +androidx.customview.R$id: int action_divider +androidx.vectordrawable.R$id: int info +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date from +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Visibility +androidx.constraintlayout.widget.R$integer: int status_bar_notification_info_maxnum +androidx.recyclerview.widget.RecyclerView: void setEdgeEffectFactory(androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory) +com.xw.repo.bubbleseekbar.R$color: int primary_text_disabled_material_dark +cyanogenmod.app.ProfileManager: int PROFILES_STATE_DISABLED +androidx.hilt.R$dimen: int compat_notification_large_icon_max_width +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_APP_SWITCH_LONG_PRESS_ACTION +wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_weight +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_DropDown +androidx.hilt.work.R$attr: int fontWeight +okio.Buffer$1 +com.baidu.location.e.m +com.google.gson.internal.LinkedTreeMap: java.lang.Object get(java.lang.Object) +com.google.android.material.R$layout: int select_dialog_singlechoice_material +wangdaye.com.geometricweather.R$layout: int dialog_donate_wechat +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: boolean isDisposed() +androidx.vectordrawable.animated.R$drawable: int notify_panel_notification_icon_bg +com.turingtechnologies.materialscrollbar.R$attr: int itemPadding +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitation +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +androidx.vectordrawable.R$layout: int notification_action +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_borderWidth +wangdaye.com.geometricweather.R$layout: int select_dialog_singlechoice_material +com.google.android.material.R$attr: int navigationMode +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_TopRightDifferentCornerSize +james.adaptiveicon.R$styleable: int MenuItem_android_id +io.reactivex.internal.queue.SpscArrayQueue: long producerLookAhead +androidx.vectordrawable.animated.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.R$string: int bottomsheet_action_expand_halfway +androidx.preference.R$id: int search_close_btn +androidx.hilt.R$id: int line1 +androidx.viewpager.R$id: int icon_group +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_focusable +com.google.android.material.R$styleable: int MenuGroup_android_orderInCategory +androidx.lifecycle.extensions.R$id: int icon +com.google.android.material.chip.Chip: void setChipStartPaddingResource(int) +com.amap.api.location.AMapLocationClientOption +wangdaye.com.geometricweather.R$id: int container_main_details_title +cyanogenmod.providers.CMSettings$System: java.lang.String HIGH_TOUCH_SENSITIVITY_ENABLE +androidx.transition.R$drawable: int notification_bg_low_normal +james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +okhttp3.internal.http2.Http2Codec: void cancel() +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void run() +okhttp3.FormBody: okhttp3.MediaType contentType() +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String g +com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_icon +cyanogenmod.externalviews.IExternalViewProvider: void onStart() +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitationDuration(java.lang.Float) +com.google.android.material.slider.RangeSlider: void setLabelBehavior(int) +com.amap.api.fence.GeoFence: java.lang.String b james.adaptiveicon.R$styleable: int Toolbar_titleTextColor -wangdaye.com.geometricweather.R$attr: int flow_lastVerticalStyle -wangdaye.com.geometricweather.R$id: int widget_text_container -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton_Overflow -cyanogenmod.app.suggest.AppSuggestManager: boolean DEBUG -com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException: long serialVersionUID -com.google.android.material.R$styleable: int MenuItem_showAsAction -com.jaredrummler.android.colorpicker.R$bool: int abc_config_actionMenuItemAllCaps -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextInputLayout -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_light -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontWeight -okhttp3.internal.http2.Hpack$Writer: int SETTINGS_HEADER_TABLE_SIZE -com.google.android.material.bottomappbar.BottomAppBar: void setSubtitle(java.lang.CharSequence) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getBrandId() -androidx.viewpager.R$id: int actions -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$id: int activity_widget_config_viewStyleTitle -androidx.preference.R$color: int switch_thumb_normal_material_dark -okio.RealBufferedSource: okio.ByteString readByteString() -com.google.android.material.R$string: int appbar_scrolling_view_behavior -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) -com.xw.repo.bubbleseekbar.R$attr: int dropdownListPreferredItemHeight -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_DropDownItem_Spinner -com.google.android.material.R$dimen: int abc_seekbar_track_background_height_material -com.google.android.material.R$id: int transition_position -com.xw.repo.bubbleseekbar.R$attr: int dialogPreferredPadding -io.reactivex.internal.util.NotificationLite$ErrorNotification -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.R$id: int date_picker_actions -com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalGap -androidx.constraintlayout.widget.R$attr: int buttonTint -okhttp3.internal.cache.DiskLruCache: long nextSequenceNumber -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void drain() -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setDate(java.util.Date) -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setCloudCover(java.lang.Integer) +com.bumptech.glide.load.engine.GlideException +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: int hasRain +com.tencent.bugly.crashreport.common.info.a: java.lang.String ar +androidx.constraintlayout.widget.R$attr: int indeterminateProgressStyle +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_2 +androidx.customview.R$attr: R$attr() +com.google.android.material.R$dimen: int highlight_alpha_material_dark +androidx.preference.R$styleable: int AppCompatSeekBar_android_thumb +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default +cyanogenmod.weatherservice.IWeatherProviderService: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) +wangdaye.com.geometricweather.R$id: int item_icon_provider_clearIcon +james.adaptiveicon.R$styleable: int SwitchCompat_track +android.didikee.donate.R$attr: int goIcon +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: java.lang.Object mLatest +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: void onFailure(retrofit2.Call,java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onError(java.lang.Throwable) +androidx.viewpager.widget.ViewPager: void setPageMarginDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$attr: int switchPreferenceCompatStyle +com.google.android.material.transformation.FabTransformationScrimBehavior: FabTransformationScrimBehavior(android.content.Context,android.util.AttributeSet) +android.support.v4.os.IResultReceiver$Stub$Proxy: IResultReceiver$Stub$Proxy(android.os.IBinder) +androidx.coordinatorlayout.R$id: int accessibility_custom_action_16 +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver otherObserver +androidx.vectordrawable.R$attr: int ttcIndex +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow Snow +com.google.android.material.R$drawable: int ic_mtrl_checked_circle +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +androidx.viewpager.R$id: int text +cyanogenmod.externalviews.KeyguardExternalView$9 +com.turingtechnologies.materialscrollbar.R$attr: int msb_barColor +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean isCancelled() +cyanogenmod.app.CustomTileListenerService: void onCustomTileRemoved(cyanogenmod.app.StatusBarPanelCustomTile) +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: BaiduIPLocationResult$ContentBean$PointBean() +com.xw.repo.bubbleseekbar.R$id: int actions +androidx.vectordrawable.R$id: int normal +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light +okhttp3.WebSocket +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: AccuCurrentResult$PrecipitationSummary$Past18Hours() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display4 +androidx.appcompat.R$id: int progress_horizontal +okio.HashingSource: okio.HashingSource sha256(okio.Source) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonPhaseDescription +com.google.android.material.R$drawable: int btn_radio_off_to_on_mtrl_animation +com.google.android.material.navigation.NavigationView: void setItemIconTintList(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_disabled_color +okhttp3.internal.http2.Http2Reader: void readPing(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +com.google.android.material.R$styleable: int ConstraintLayout_placeholder_content +com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: int UnitType +androidx.coordinatorlayout.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$styleable: int Constraint_barrierAllowsGoneWidgets +wangdaye.com.geometricweather.R$color: int material_grey_100 +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String BriefPhrase +com.turingtechnologies.materialscrollbar.R$attr: int actionModePasteDrawable +androidx.activity.R$id: int action_divider +wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_3_material +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display3 +com.google.android.material.chip.Chip: void setChipBackgroundColorResource(int) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_id +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: io.reactivex.FlowableEmitter serialize() +wangdaye.com.geometricweather.background.receiver.widget.WidgetWeekProvider: WidgetWeekProvider() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_3 +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionMode +wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_text_color +com.turingtechnologies.materialscrollbar.R$style: int CardView_Light +okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,int,int,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: int hasRain +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetRight +androidx.coordinatorlayout.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: AccuCurrentResult$TemperatureSummary() +android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_CheckBox +androidx.preference.R$layout: int abc_action_menu_item_layout +cyanogenmod.app.PartnerInterface: int ZEN_MODE_OFF +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getStrokeAlpha() +androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerY +com.google.android.material.R$color: int abc_btn_colored_text_material +androidx.loader.R$dimen: int notification_content_margin_start +com.xw.repo.bubbleseekbar.R$attr: int activityChooserViewStyle +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light_normal +com.turingtechnologies.materialscrollbar.R$id: int actions +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$attr: int chipIconEnabled +androidx.appcompat.R$attr: int thumbTintMode +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long readKey(android.database.Cursor,int) +androidx.preference.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +com.google.android.material.R$attr: int contentInsetEndWithActions +wangdaye.com.geometricweather.R$styleable: int Transition_constraintSetStart +com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Circular +androidx.work.R$styleable: int[] FontFamilyFont +com.tencent.bugly.crashreport.crash.c: android.content.Context b(com.tencent.bugly.crashreport.crash.c) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlActivated +com.google.android.material.datepicker.RangeDateSelector: android.os.Parcelable$Creator CREATOR +okhttp3.Response: java.lang.String header(java.lang.String,java.lang.String) +com.google.android.gms.common.api.internal.LifecycleCallback +retrofit2.ParameterHandler: retrofit2.ParameterHandler array() +androidx.transition.R$dimen: int notification_right_icon_size +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_chainStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer uvIndex +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onError(java.lang.Throwable) +okhttp3.internal.http2.PushObserver +wangdaye.com.geometricweather.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean isEmpty() +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderAuthority +com.google.android.material.R$attr: int itemShapeAppearanceOverlay +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setMax(float) +androidx.preference.R$attr: int queryHint +com.jaredrummler.android.colorpicker.R$style: int Preference_PreferenceScreen +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragmentCompat_android_dividerHeight +androidx.activity.R$drawable: int notify_panel_notification_icon_bg +com.bumptech.glide.manager.SupportRequestManagerFragment: SupportRequestManagerFragment() +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult +wangdaye.com.geometricweather.R$styleable: int MotionLayout_currentState +com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationY(float) +com.google.android.material.R$styleable: int Chip_ensureMinTouchTargetSize +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_subtitle_top_margin_material +okhttp3.internal.Util: java.lang.reflect.Method addSuppressedExceptionMethod +okhttp3.internal.connection.RouteException: java.io.IOException getFirstConnectException() +androidx.viewpager2.R$styleable: int GradientColor_android_centerY +com.google.android.material.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +androidx.preference.R$styleable: int ActionMode_subtitleTextStyle +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator LOCKSCREEN_PIN_SCRAMBLE_LAYOUT_VALIDATOR +androidx.preference.R$styleable: int Preference_shouldDisableView +com.google.android.material.R$styleable: int MaterialCalendarItem_itemStrokeWidth +androidx.appcompat.R$attr: int alpha +com.google.android.material.R$drawable: int abc_btn_borderless_material +com.bumptech.glide.R$styleable: int FontFamilyFont_fontWeight +okhttp3.internal.Util: okio.ByteString UTF_32_LE_BOM +androidx.lifecycle.extensions.R$color: int notification_icon_bg_color +androidx.work.R$attr: int fontProviderFetchTimeout +okhttp3.RealCall$1: RealCall$1(okhttp3.RealCall) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getPivotY() +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalBias +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.MinutelyEntity) +androidx.appcompat.resources.R$styleable: int FontFamilyFont_font +com.google.android.material.R$attr: int state_dragged +cyanogenmod.providers.CMSettings$System: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_24 +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_checkable +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveOffset +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setDayIconDrawable(android.graphics.drawable.Drawable) +okhttp3.RequestBody$2: int val$offset +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onDetach() +com.google.android.material.R$styleable: int[] MaterialCalendar +okhttp3.internal.connection.RealConnection: okhttp3.Request createTunnel(int,int,okhttp3.Request,okhttp3.HttpUrl) +wangdaye.com.geometricweather.R$styleable: int[] MaterialTextAppearance +androidx.appcompat.R$color: int abc_primary_text_material_light +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectTimeout(long,java.util.concurrent.TimeUnit) +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_orientation +com.amap.api.fence.PoiItem: double getLongitude() +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removeAllEncodedQueryParameters(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind +com.github.rahatarmanahmed.cpv.CircularProgressView$5: boolean wasCancelled +androidx.constraintlayout.widget.R$attr: int textAppearanceLargePopupMenu +com.google.android.material.R$styleable: int[] FlowLayout +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_framePosition +androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableCompat +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_padding +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_48dp +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_margin +io.reactivex.internal.util.VolatileSizeArrayList: boolean add(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_transformPivotY +wangdaye.com.geometricweather.R$dimen: int fastscroll_minimum_range +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +com.tencent.bugly.proguard.u: boolean a(com.tencent.bugly.proguard.u,boolean) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogMessage +androidx.coordinatorlayout.R$layout +okhttp3.internal.http.StatusLine: okhttp3.internal.http.StatusLine get(okhttp3.Response) +androidx.preference.R$color: int abc_btn_colored_text_material +james.adaptiveicon.R$dimen: int tooltip_precise_anchor_threshold +wangdaye.com.geometricweather.R$styleable: int Slider_tickColorActive +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: void setUnit(java.lang.String) +androidx.preference.R$styleable: int CheckBoxPreference_disableDependentsState +okhttp3.Cookie$Builder: okhttp3.Cookie build() +wangdaye.com.geometricweather.R$string: int settings_title_icon_provider +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +android.didikee.donate.R$styleable: int ActionBar_elevation +com.google.android.material.R$layout: int material_radial_view_group +com.google.android.material.R$color: int bright_foreground_disabled_material_dark +androidx.lifecycle.ProcessLifecycleOwner$3$1: ProcessLifecycleOwner$3$1(androidx.lifecycle.ProcessLifecycleOwner$3) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitationProbability() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_137 +com.jaredrummler.android.colorpicker.R$dimen: int cpv_color_preference_large +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.DatabaseOpenHelper$EncryptedHelper checkEncryptedHelper() +androidx.viewpager2.R$id: int accessibility_custom_action_1 +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState[] values() +wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Panel +androidx.lifecycle.extensions.R$integer: R$integer() +okhttp3.Response$Builder: okhttp3.Response$Builder message(java.lang.String) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float icePrecipitation +wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_title +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_fontVariationSettings +android.didikee.donate.R$id: int action_bar_subtitle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogPreferredPadding +androidx.appcompat.R$attr: int showText +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Headline +androidx.hilt.R$id: int accessibility_custom_action_18 +com.google.android.material.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +androidx.preference.R$styleable: int AppCompatTheme_actionBarWidgetTheme +androidx.constraintlayout.widget.Constraints +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: long serialVersionUID +wangdaye.com.geometricweather.R$id: int widget_day_week_icon +wangdaye.com.geometricweather.R$bool: R$bool() +androidx.preference.R$color: int switch_thumb_material_dark +wangdaye.com.geometricweather.R$attr: int layout_editor_absoluteY +androidx.appcompat.R$attr: int windowActionBarOverlay +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.Observer downstream +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_PopupMenu +okhttp3.internal.cache.DiskLruCache: java.lang.String VERSION_1 +androidx.preference.R$styleable: int ActivityChooserView_initialActivityCount +com.tencent.bugly.proguard.ap: boolean a +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonPhaseAngle +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_18 +cyanogenmod.app.IProfileManager: boolean notificationGroupExistsByName(java.lang.String) +retrofit2.RequestFactory$Builder: boolean isFormEncoded +cyanogenmod.themes.IThemeService$Stub$Proxy: android.os.IBinder asBinder() +androidx.appcompat.R$attr: int windowNoTitle +androidx.hilt.R$dimen: int notification_top_pad +androidx.preference.R$attr: int lastBaselineToBottomHeight +cyanogenmod.providers.CMSettings$Secure$1: java.lang.String mDelimiter +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_PULSE +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: java.lang.Object poll() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: AccuCurrentResult$WetBulbTemperature$Metric() +com.jaredrummler.android.colorpicker.R$attr: int thickness +wangdaye.com.geometricweather.R$string: int dew_point +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_android_gravity +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider getInstance(java.lang.String) +androidx.preference.R$dimen: int abc_edit_text_inset_bottom_material +wangdaye.com.geometricweather.R$id: int dialog_resident_location_container +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +androidx.work.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: void onActive() +com.google.android.material.R$styleable: int AppCompatTheme_android_windowAnimationStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizePresetSizes +androidx.activity.R$id: int actions +cyanogenmod.app.CustomTile$ExpandedItem$1: CustomTile$ExpandedItem$1() +com.google.android.material.textfield.TextInputLayout: int getBoxStrokeWidthFocused() +okhttp3.internal.cache2.Relay: int SOURCE_FILE +james.adaptiveicon.R$dimen: int abc_seekbar_track_background_height_material +wangdaye.com.geometricweather.R$id: int experience +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_menuCategory +wangdaye.com.geometricweather.R$id: int home +wangdaye.com.geometricweather.R$color: int colorLevel_1 +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float ParticulateMatter10 +androidx.appcompat.widget.AppCompatButton: android.graphics.PorterDuff$Mode getSupportCompoundDrawablesTintMode() +wangdaye.com.geometricweather.R$style: int Preference_CheckBoxPreference +androidx.appcompat.R$string: int abc_search_hint +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: retrofit2.Call $this_await$inlined +com.google.android.material.R$id: int material_timepicker_view +retrofit2.ParameterHandler$QueryName +android.didikee.donate.R$styleable: int Toolbar_collapseContentDescription +androidx.hilt.R$id: int accessibility_custom_action_23 +okio.ByteString: okio.ByteString hmacSha1(okio.ByteString) +androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$color: int abc_hint_foreground_material_dark +com.google.android.material.slider.Slider: android.content.res.ColorStateList getThumbTintList() +androidx.appcompat.R$dimen: int abc_button_inset_horizontal_material +android.didikee.donate.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarWidgetTheme +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onComplete() +androidx.appcompat.resources.R$id: int accessibility_custom_action_31 +androidx.appcompat.R$attr: int buttonTintMode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: AccuCurrentResult$PrecipitationSummary$Past3Hours() +wangdaye.com.geometricweather.R$attr: int motionTarget +wangdaye.com.geometricweather.R$styleable: int Constraint_android_orientation +com.xw.repo.bubbleseekbar.R$color: int dim_foreground_disabled_material_dark +androidx.appcompat.widget.AppCompatImageView: void setImageDrawable(android.graphics.drawable.Drawable) +cyanogenmod.app.ProfileGroup$2 +com.google.android.material.R$string: int material_minute_suffix +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String name +wangdaye.com.geometricweather.R$layout: int widget_day_rectangle +retrofit2.ParameterHandler$Headers: java.lang.reflect.Method method +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_variablePadding +wangdaye.com.geometricweather.R$color: int primary_dark_material_light +com.jaredrummler.android.colorpicker.R$attr: int buttonStyleSmall +com.google.gson.stream.JsonReader: int PEEKED_DOUBLE_QUOTED_NAME +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean isEntityUpdateable() +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setSize(float) +androidx.preference.R$attr: int alertDialogTheme +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int THUNDERSTORMS +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalGap +androidx.preference.R$styleable: int[] Preference +com.tencent.bugly.crashreport.crash.h5.a: java.lang.String h +androidx.viewpager.widget.PagerTabStrip: int getMinHeight() +okhttp3.Cookie +com.google.android.material.R$attr: int layout_constraintDimensionRatio +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_title_material_toolbar +androidx.preference.R$styleable: int TextAppearance_textLocale +com.turingtechnologies.materialscrollbar.R$attr: int reverseLayout +androidx.appcompat.R$styleable: int CompoundButton_android_button +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean +com.google.android.material.bottomnavigation.BottomNavigationItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() +android.didikee.donate.R$styleable: int[] SearchView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: AccuCurrentResult$ApparentTemperature$Metric() +com.google.android.material.R$attr: int collapsedTitleTextAppearance +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeDegreeDayTemperature +org.greenrobot.greendao.AbstractDaoSession: java.util.List queryRaw(java.lang.Class,java.lang.String,java.lang.String[]) +com.google.android.material.navigation.NavigationView: void setOverScrollMode(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: int UnitType +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_voice_search_api_material +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_maxWidth +com.turingtechnologies.materialscrollbar.R$color: int mtrl_scrim_color +james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_android_orderingFromXml +com.google.android.material.R$drawable: int abc_ratingbar_small_material +james.adaptiveicon.R$attr: int listPreferredItemPaddingRight +androidx.recyclerview.R$id: int chronometer +com.google.android.material.circularreveal.CircularRevealGridLayout: CircularRevealGridLayout(android.content.Context,android.util.AttributeSet) +com.amap.api.location.AMapLocation: void setAddress(java.lang.String) +androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +james.adaptiveicon.R$attr: int actionModeStyle +okhttp3.HttpUrl$Builder: java.lang.String encodedPassword +com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler t +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.ReportFragment$ActivityInitializationListener mInitializationListener +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_defaultQueryHint +cyanogenmod.externalviews.KeyguardExternalView$2: void setInteractivity(boolean) +androidx.viewpager.R$id: int normal +androidx.appcompat.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +androidx.core.R$style: int TextAppearance_Compat_Notification_Time +com.jaredrummler.android.colorpicker.R$attr: int autoSizeStepGranularity +wangdaye.com.geometricweather.R$id: int seekbar_value +james.adaptiveicon.R$id: int screen +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +okhttp3.internal.http2.Huffman$Node +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: ObservableSampleWithObservable$SampleMainObserver(io.reactivex.Observer,io.reactivex.ObservableSource) +com.baidu.location.e.h$b: com.baidu.location.e.h$b valueOf(java.lang.String) +wangdaye.com.geometricweather.R$attr: int headerLayout +com.github.rahatarmanahmed.cpv.R$attr: int cpv_startAngle +androidx.constraintlayout.widget.R$color: int highlighted_text_material_light +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void dispose() +com.jaredrummler.android.colorpicker.R$dimen: int preference_icon_minWidth +wangdaye.com.geometricweather.R$layout: int item_weather_daily_margin +com.turingtechnologies.materialscrollbar.R$attr: int controlBackground +com.google.android.gms.tasks.DuplicateTaskCompletionException: java.lang.IllegalStateException of(com.google.android.gms.tasks.Task) +androidx.appcompat.R$layout: int abc_list_menu_item_layout +okhttp3.Cache$1: okhttp3.Cache this$0 +androidx.vectordrawable.R$id: int action_container +android.didikee.donate.R$id: int alertTitle +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: long time +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitle +androidx.constraintlayout.widget.R$styleable: int Motion_drawPath +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: int UnitType +androidx.constraintlayout.widget.R$styleable: int Constraint_android_minHeight +com.google.android.material.R$styleable: int ConstraintSet_flow_firstVerticalBias +io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,boolean) +wangdaye.com.geometricweather.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm25 +wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_container +com.google.android.material.R$attr: int alertDialogTheme +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindSpeed(java.lang.Float) +wangdaye.com.geometricweather.R$styleable: int Preference_android_persistent +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode valueOf(java.lang.String) +androidx.fragment.app.FragmentTabHost +androidx.appcompat.R$styleable: int AlertDialog_showTitle +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property District +androidx.coordinatorlayout.R$id: int accessibility_custom_action_25 +wangdaye.com.geometricweather.R$id: int checkbox +com.turingtechnologies.materialscrollbar.R$layout: int abc_tooltip +com.google.android.material.R$layout: int abc_screen_simple +com.google.android.material.R$string: int material_hour_suffix +com.google.android.material.R$attr: int textAppearanceLineHeightEnabled +james.adaptiveicon.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$id: int dialog_donate_wechat_img +org.greenrobot.greendao.AbstractDao: AbstractDao(org.greenrobot.greendao.internal.DaoConfig,org.greenrobot.greendao.AbstractDaoSession) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Large +wangdaye.com.geometricweather.R$style: int TestStyleWithThemeLineHeightAttribute +okhttp3.MediaType: java.lang.String toString() +wangdaye.com.geometricweather.R$styleable: int[] LinearLayoutCompat_Layout +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: int bufferSize +androidx.preference.R$style: int Theme_AppCompat_DayNight +wangdaye.com.geometricweather.R$attr: int bsb_thumb_text_color +androidx.appcompat.R$styleable: R$styleable() +androidx.appcompat.app.AlertController$RecycleListView: AlertController$RecycleListView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getUrl() +androidx.constraintlayout.widget.R$attr: int dialogCornerRadius +com.google.android.material.progressindicator.ProgressIndicator: android.graphics.drawable.Drawable getIndeterminateDrawable() +com.tencent.bugly.proguard.ap: boolean b +androidx.preference.R$drawable: int abc_list_selector_disabled_holo_dark +androidx.constraintlayout.widget.R$color: int highlighted_text_material_dark +com.google.android.gms.common.api.AvailabilityException: java.lang.String getMessage() +androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.db.entities.AlertEntity: long time +wangdaye.com.geometricweather.R$attr: int alertDialogButtonGroupStyle +james.adaptiveicon.R$style: int Base_DialogWindowTitleBackground_AppCompat +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder allEnabledCipherSuites() +androidx.constraintlayout.widget.R$id: int pathRelative +okhttp3.HttpUrl: java.lang.String redact() +wangdaye.com.geometricweather.R$attr: int shrinkMotionSpec +okhttp3.internal.http2.Http2Connection$3: okhttp3.internal.http2.Http2Connection this$0 +com.tencent.bugly.proguard.u: com.tencent.bugly.proguard.u b +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.ObservableEmitter serialize() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_53 +com.google.android.material.R$color: int mtrl_textinput_disabled_color +com.tencent.bugly.crashreport.crash.CrashDetailBean: int P +com.jaredrummler.android.colorpicker.R$attr: int orderingFromXml +com.xw.repo.bubbleseekbar.R$id: int notification_main_column_container +com.tencent.bugly.proguard.p: java.util.List c(int) +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShrinkMotionSpec(com.google.android.material.animation.MotionSpec) +androidx.constraintlayout.widget.R$attr: int font +cyanogenmod.weatherservice.WeatherProviderService: void onRequestCancelled(cyanogenmod.weatherservice.ServiceRequest) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMode +com.baidu.location.e.l$b: java.lang.String b(com.baidu.location.e.l$b) +com.google.android.material.internal.ForegroundLinearLayout: int getForegroundGravity() +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_rangeFillColor +okhttp3.ConnectionSpec$Builder: ConnectionSpec$Builder(okhttp3.ConnectionSpec) +com.turingtechnologies.materialscrollbar.R$attr: int dropdownListPreferredItemHeight +com.amap.api.fence.GeoFenceManagerBase: void setActivateAction(int) +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_dark +wangdaye.com.geometricweather.R$string: int publish_at +androidx.appcompat.widget.AppCompatRadioButton: android.content.res.ColorStateList getSupportButtonTintList() +androidx.appcompat.widget.AlertDialogLayout: AlertDialogLayout(android.content.Context) +okhttp3.internal.http2.Http2Stream$FramingSource: okio.Timeout timeout() +androidx.fragment.R$id: int accessibility_custom_action_29 +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function,boolean) +androidx.customview.R$id: int line1 +com.google.android.material.chip.Chip: void setBackgroundTintList(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterTextAppearance +com.jaredrummler.android.colorpicker.R$integer: int status_bar_notification_info_maxnum +androidx.dynamicanimation.R$integer: R$integer() +wangdaye.com.geometricweather.R$string: int tomorrow +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Body2 +androidx.appcompat.R$styleable: int AppCompatTheme_android_windowAnimationStyle +com.google.android.material.R$attr: int mock_label +androidx.appcompat.R$string +cyanogenmod.app.CMTelephonyManager: boolean isDataConnectionEnabled() +androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$id: int hideable +androidx.appcompat.R$drawable: int abc_item_background_holo_dark +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionMenuTextAppearance +androidx.preference.R$color: int dim_foreground_disabled_material_dark +androidx.constraintlayout.widget.R$styleable: int Constraint_android_transformPivotY +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_max +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_NoActionBar +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderAuthority +androidx.constraintlayout.widget.R$attr: int editTextBackground +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_21 +androidx.fragment.R$styleable: int GradientColor_android_endY +androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableItem +com.google.android.material.slider.Slider: void setTickActiveTintList(android.content.res.ColorStateList) +com.google.android.material.R$attr: int cornerSizeBottomRight +androidx.activity.R$styleable: int GradientColor_android_startColor +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Error +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +com.tencent.bugly.proguard.i: java.lang.String b(int,boolean) +androidx.preference.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +cyanogenmod.app.Profile: java.util.Map mTriggers +okhttp3.internal.publicsuffix.PublicSuffixDatabase: void readTheListUninterruptibly() +androidx.preference.R$styleable: int SearchView_queryBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String getTo() +com.google.android.material.R$attr: int colorOnError +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceOverline +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_toId +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar +james.adaptiveicon.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +io.reactivex.internal.subscriptions.DeferredScalarSubscription: java.lang.Object poll() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onBouncerShowing +com.google.android.material.R$styleable: int Toolbar_titleMargin +wangdaye.com.geometricweather.R$attr: int popupMenuStyle +androidx.preference.R$styleable: int SeekBarPreference_min +cyanogenmod.app.ProfileGroup$Mode +androidx.core.R$id: R$id() +com.google.android.material.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +com.amap.api.location.LocationManagerBase: com.amap.api.location.AMapLocation getLastKnownLocation() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonSetDate(java.util.Date) +androidx.appcompat.widget.SearchView: SearchView(android.content.Context) +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastHorizontalStyle +com.google.android.material.R$attr: int autoCompleteTextViewStyle +okhttp3.OkHttpClient: java.util.List connectionSpecs() +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Info +androidx.loader.R$style: int Widget_Compat_NotificationActionContainer +com.google.android.gms.common.util.DynamiteApi +james.adaptiveicon.R$styleable: int MenuItem_android_checked +androidx.preference.R$styleable: int Toolbar_titleMargin +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: void onThermalChanged(int) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW_FLURRIES +com.jaredrummler.android.colorpicker.R$attr: int backgroundStacked +com.google.android.material.R$attr: int behavior_expandedOffset +com.google.gson.stream.JsonReader: java.io.IOException syntaxError(java.lang.String) +wangdaye.com.geometricweather.R$attr: int allowStacking +okio.BufferedSource: boolean exhausted() +androidx.core.R$styleable: int FontFamilyFont_android_font +com.jaredrummler.android.colorpicker.R$id: int transparency_text +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: BaiduIPLocationService$1(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) +com.google.android.material.R$layout: int material_textinput_timepicker +com.tencent.bugly.crashreport.common.strategy.StrategyBean: int describeContents() +androidx.fragment.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getIcePrecipitationProbability() +androidx.appcompat.view.menu.ListMenuItemView: void setIcon(android.graphics.drawable.Drawable) +cyanogenmod.weather.WeatherLocation: WeatherLocation(android.os.Parcel,cyanogenmod.weather.WeatherLocation$1) +okhttp3.logging.HttpLoggingInterceptor: boolean isPlaintext(okio.Buffer) +wangdaye.com.geometricweather.R$attr: int flow_horizontalAlign +wangdaye.com.geometricweather.R$string: int introduce +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemPosition(int) +com.tencent.bugly.proguard.u: void a(com.tencent.bugly.proguard.u,int) +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.io.FileSystem fileSystem +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: int requestFusion(int) +androidx.constraintlayout.widget.R$color: int ripple_material_dark +com.bumptech.glide.integration.okhttp.R$attr: int layout_anchor +wangdaye.com.geometricweather.R$id: int wrap_content +androidx.constraintlayout.widget.R$attr: int listChoiceBackgroundIndicator +androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.google.android.material.R$styleable: int NavigationView_shapeAppearanceOverlay +androidx.preference.R$styleable: int Toolbar_titleMarginEnd +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastVerticalStyle +com.turingtechnologies.materialscrollbar.R$attr: int itemIconSize +cyanogenmod.content.Intent: java.lang.String URI_SCHEME_PACKAGE +com.google.gson.FieldNamingPolicy$2: java.lang.String translateName(java.lang.reflect.Field) +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int prefetch +androidx.preference.R$attr: int actionLayout +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_6_00 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr +androidx.hilt.work.R$styleable: int ColorStateListItem_alpha +com.google.android.material.slider.BaseSlider +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver +com.google.android.material.R$id: int on +androidx.preference.R$dimen: int abc_dialog_title_divider_material +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight +okhttp3.internal.ws.RealWebSocket: int receivedPongCount +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: java.lang.Object[] row +wangdaye.com.geometricweather.R$id: int activity_alert_recyclerView +com.google.android.material.R$attr: int popupMenuStyle +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout +androidx.constraintlayout.widget.R$attr: int dividerHorizontal +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_dark +androidx.appcompat.resources.R$id: int accessibility_custom_action_18 +androidx.viewpager.R$dimen: int compat_button_padding_horizontal_material +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.functions.BiPredicate predicate +wangdaye.com.geometricweather.R$attr: int paddingBottomSystemWindowInsets +androidx.preference.R$drawable: int abc_textfield_search_activated_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$attr: int searchHintIcon +androidx.work.InputMerger: InputMerger() +android.didikee.donate.R$attr: int toolbarNavigationButtonStyle +com.google.android.material.R$attr: int cardCornerRadius +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginEnd +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_TabText +androidx.vectordrawable.R$id: int italic +okhttp3.internal.http.CallServerInterceptor: CallServerInterceptor(boolean) +io.reactivex.internal.disposables.CancellableDisposable: long serialVersionUID +com.google.android.material.R$styleable: int AppCompatTheme_actionDropDownStyle +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleTextAppearance +okhttp3.internal.http2.Http2: byte TYPE_DATA +androidx.appcompat.R$attr: int numericModifiers +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_dither +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String getEffectiveTldPlusOne(java.lang.String) +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver parent +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_icon_color_selector_colored +com.xw.repo.bubbleseekbar.R$anim: int abc_popup_exit +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$202(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +androidx.lifecycle.extensions.R$dimen: int compat_button_inset_horizontal_material +james.adaptiveicon.R$styleable: int Toolbar_android_minHeight +com.google.android.material.R$dimen: int mtrl_calendar_navigation_bottom_padding +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_PONG +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_toBottomOf +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_drawableSize +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconTintMode +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_right_mtrl_dark +androidx.constraintlayout.helper.widget.Flow: void setPadding(int) +wangdaye.com.geometricweather.R$color: int cardview_light_background +androidx.viewpager.R$dimen: int notification_content_margin_start +androidx.legacy.coreutils.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult +wangdaye.com.geometricweather.R$id: int widget_day_week_time +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Caption +com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SeekBar +androidx.customview.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType[] values() +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerY +com.google.android.material.R$attr: int minHeight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float getMilliMeters(float) +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event INITIALIZE +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setAnimationMode(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getO3Desc() +androidx.hilt.R$id: int accessibility_custom_action_15 +androidx.recyclerview.R$id: int item_touch_helper_previous_elevation +androidx.appcompat.widget.AppCompatSpinner: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$layout: int abc_search_view +com.google.android.material.R$layout: int material_clockface_textview +androidx.hilt.R$id: int tag_transition_group +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation +androidx.viewpager.widget.PagerTitleStrip: void setNonPrimaryAlpha(float) +wangdaye.com.geometricweather.R$drawable: int btn_radio_on_mtrl +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableEnd +androidx.activity.R$dimen: int notification_action_text_size +com.tencent.bugly.crashreport.crash.anr.a: java.lang.String a +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeightSmall +com.bumptech.glide.R$styleable: int FontFamilyFont_fontVariationSettings +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowNoTitle +com.amap.api.location.LocationManagerBase: void startAssistantLocation() +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.background.service.Hilt_CMWeatherProviderService: Hilt_CMWeatherProviderService() +androidx.viewpager.widget.ViewPager: ViewPager(android.content.Context,android.util.AttributeSet) +androidx.preference.R$styleable: int AppCompatTheme_popupMenuStyle +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeDegreeDayTemperature +com.google.android.material.card.MaterialCardView: void setOnCheckedChangeListener(com.google.android.material.card.MaterialCardView$OnCheckedChangeListener) +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showDialog +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar +wangdaye.com.geometricweather.db.entities.LocationEntity: void setFormattedId(java.lang.String) +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: ChineseCityEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +androidx.hilt.work.R$layout: R$layout() +okio.RealBufferedSource: long readDecimalLong() +com.google.android.material.R$styleable: int AppCompatTheme_colorBackgroundFloating +androidx.preference.R$styleable: int MenuItem_android_visible +com.google.android.material.R$attr: int barLength +androidx.hilt.R$id: int visible_removing_fragment_view_tag +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextColor(int) +android.didikee.donate.R$attr: int colorPrimaryDark +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_default +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowDy +wangdaye.com.geometricweather.R$xml: int widget_clock_day_vertical +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: ObservableReplay$ReplayObserver(io.reactivex.internal.operators.observable.ObservableReplay$ReplayBuffer) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeCloseDrawable +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterTextColor +com.google.android.material.R$styleable: int ViewStubCompat_android_layout +cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_USE_MAIN_TILES +com.turingtechnologies.materialscrollbar.R$style: int Base_V22_Theme_AppCompat +androidx.constraintlayout.widget.R$drawable: int abc_cab_background_internal_bg +com.turingtechnologies.materialscrollbar.R$integer: int design_tab_indicator_anim_duration_ms +androidx.constraintlayout.widget.R$styleable: int PopupWindow_android_popupAnimationStyle +cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder(java.util.List) +androidx.appcompat.R$styleable: int LinearLayoutCompat_dividerPadding +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCountry() +com.tencent.bugly.proguard.z +com.google.android.material.R$id: int blocking +androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_end +androidx.constraintlayout.widget.R$layout: int abc_action_menu_layout +cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String itemTitle +com.tencent.bugly.crashreport.crash.b: void a(com.tencent.bugly.crashreport.crash.CrashDetailBean,long,boolean) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean done +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemBackground(android.graphics.drawable.Drawable) +androidx.customview.R$id: int tag_transition_group +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event[] values() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeight +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat +cyanogenmod.weather.RequestInfo: int TYPE_LOOKUP_CITY_NAME_REQ +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_scaleX +com.turingtechnologies.materialscrollbar.R$attr: int titleMargin +okhttp3.internal.ws.RealWebSocket: boolean $assertionsDisabled +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +com.turingtechnologies.materialscrollbar.R$animator: int design_appbar_state_list_animator +com.google.android.material.R$styleable: int Constraint_layout_constraintCircleAngle +cyanogenmod.app.suggest.IAppSuggestProvider: boolean handles(android.content.Intent) +androidx.legacy.coreutils.R$styleable: int ColorStateListItem_android_color +james.adaptiveicon.R$styleable: int ActionBar_contentInsetEndWithActions +cyanogenmod.profiles.RingModeSettings$1 +okhttp3.internal.http2.Http2Connection: java.util.Map streams +wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_dark +androidx.constraintlayout.widget.R$styleable: int ActionMenuItemView_android_minWidth +androidx.constraintlayout.widget.R$styleable: int Toolbar_popupTheme +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeWetBulbTemperature +okio.BufferedSink: okio.BufferedSink writeInt(int) +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: boolean noDirection +wangdaye.com.geometricweather.db.entities.DailyEntity: void setSunRiseDate(java.util.Date) +com.xw.repo.bubbleseekbar.R$attr: int colorAccent +com.amap.api.location.APSServiceBase: int onStartCommand(android.content.Intent,int,int) +cyanogenmod.themes.IThemeService: void applyDefaultTheme() +android.didikee.donate.R$styleable: int SwitchCompat_showText +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf +androidx.loader.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.R$styleable: int[] SwitchImageButton +androidx.activity.R$layout: int notification_template_part_chronometer +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.google.android.material.R$attr: int actionBarTheme +androidx.transition.R$string: int status_bar_notification_info_overflow +com.xw.repo.bubbleseekbar.R$attr: int textAllCaps +androidx.appcompat.R$styleable: int[] LinearLayoutCompat_Layout +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_15 +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DialogWhenLarge +james.adaptiveicon.R$styleable: int AppCompatImageView_android_src +com.google.android.material.R$attr: int deltaPolarRadius +androidx.appcompat.R$color: R$color() +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline3 +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: void setOnWeatherIconChangingListener(wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView$OnWeatherIconChangingListener) +com.jaredrummler.android.colorpicker.R$drawable: int abc_dialog_material_background +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setEncodedPathSegment(int,java.lang.String) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: int bufferSize +okhttp3.internal.http2.Http2Connection$3 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction: java.lang.String English +com.google.gson.stream.JsonReader: boolean isLenient() +com.google.android.material.transformation.ExpandableBehavior: ExpandableBehavior() +com.turingtechnologies.materialscrollbar.R$dimen: int design_appbar_elevation +wangdaye.com.geometricweather.db.entities.AlertEntity: void setId(java.lang.Long) +wangdaye.com.geometricweather.R$drawable: int notif_temp_16 +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonSetDate +okhttp3.OkHttpClient: java.net.ProxySelector proxySelector() +androidx.coordinatorlayout.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.R$styleable: int Slider_android_valueFrom +cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_ACCESS +cyanogenmod.app.StatusBarPanelCustomTile: int getId() +androidx.hilt.R$styleable: int[] FontFamilyFont +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: android.os.IBinder mRemote +androidx.appcompat.widget.ActionBarContextView: void setContentHeight(int) +com.bumptech.glide.R$id: int info +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMarkTintMode +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyleSmall +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver +com.google.android.material.R$drawable: int abc_popup_background_mtrl_mult +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd +com.google.android.material.R$style: int Widget_MaterialComponents_Tooltip +com.google.android.gms.dynamite.DynamiteModule$DynamiteLoaderClassLoader: java.lang.ClassLoader sClassLoader +androidx.legacy.coreutils.R$id: int normal +wangdaye.com.geometricweather.R$attr: int dialogTitle +android.didikee.donate.R$layout: int notification_template_part_time +com.google.android.material.R$id: int BOTTOM_START +com.amap.api.location.AMapLocation: int f(com.amap.api.location.AMapLocation,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherPhase +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int state +androidx.constraintlayout.widget.Guideline: void setGuidelinePercent(float) +androidx.appcompat.R$layout: int abc_expanded_menu_layout +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int ON_NEXT +wangdaye.com.geometricweather.R$array: int notification_style_values +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +wangdaye.com.geometricweather.R$color: int material_blue_grey_800 +com.turingtechnologies.materialscrollbar.R$attr: int chipStrokeColor +okhttp3.OkHttpClient$1: okhttp3.Call newWebSocketCall(okhttp3.OkHttpClient,okhttp3.Request) +org.greenrobot.greendao.AbstractDaoSession: void registerDao(java.lang.Class,org.greenrobot.greendao.AbstractDao) +wangdaye.com.geometricweather.R$drawable: int abc_btn_default_mtrl_shape +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme_Dark +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyleSmall +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMarkTintMode +androidx.viewpager2.R$layout: int notification_template_part_chronometer +androidx.appcompat.view.menu.ExpandedMenuView: ExpandedMenuView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Bridge +wangdaye.com.geometricweather.R$string: int tag_aqi +com.google.android.material.R$id: int gone +android.didikee.donate.R$string: int abc_search_hint +androidx.constraintlayout.widget.R$style: int Base_V23_Theme_AppCompat +cyanogenmod.app.CMStatusBarManager: android.content.Context mContext +androidx.vectordrawable.R$id: int accessibility_custom_action_5 +cyanogenmod.weather.WeatherInfo$1 +androidx.appcompat.widget.ListPopupWindow: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +com.autonavi.aps.amapapi.model.AMapLocationServer: void b(org.json.JSONObject) +io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,java.util.concurrent.Callable) +com.google.android.material.R$styleable: int AppCompatTheme_windowActionBarOverlay +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_id +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8 +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onSuccess(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$style: int Platform_AppCompat_Light +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitation() +com.jaredrummler.android.colorpicker.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: java.lang.String WeatherCode +androidx.lifecycle.Transformations$2$1: Transformations$2$1(androidx.lifecycle.Transformations$2) +androidx.constraintlayout.widget.R$attr: int colorButtonNormal +cyanogenmod.app.CustomTile$RemoteExpandedStyle: CustomTile$RemoteExpandedStyle() +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long index +okhttp3.MultipartBody: int size() +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_summaryOn +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_TEMPERATURE +com.google.android.material.R$color: int mtrl_btn_stroke_color_selector +androidx.preference.R$attr: int dropdownPreferenceStyle +androidx.viewpager.widget.ViewPager: int getClientWidth() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_imageButtonStyle +james.adaptiveicon.R$id: int parentPanel +com.google.android.material.R$attr: int displayOptions +com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String APPLICATION_ID +androidx.preference.R$color: int abc_tint_default +androidx.hilt.lifecycle.R$drawable: int notification_template_icon_bg +android.didikee.donate.R$id: int select_dialog_listview +com.tencent.bugly.crashreport.crash.e: java.lang.Object i +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage INITIALIZE +okhttp3.internal.ws.RealWebSocket$Message: int formatOpcode +james.adaptiveicon.R$attr: int ratingBarStyleSmall +wangdaye.com.geometricweather.R$id: int item_about_translator_flag +androidx.transition.R$styleable +james.adaptiveicon.R$layout: int abc_list_menu_item_checkbox +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_right +retrofit2.OkHttpCall: boolean executed +androidx.appcompat.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCityId(java.lang.String) +com.google.android.material.R$animator: int mtrl_extended_fab_change_size_expand_motion_spec +androidx.appcompat.R$integer: int abc_config_activityShortDur +androidx.preference.R$attr: int showSeekBarValue +com.google.android.material.R$string: int material_hour_selection +androidx.appcompat.R$dimen: int notification_top_pad +androidx.lifecycle.ComputableLiveData$2: androidx.lifecycle.ComputableLiveData this$0 +wangdaye.com.geometricweather.R$string: int feedback_collect_succeed +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$color: int colorRootDark +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType LoadAll +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_material_light +wangdaye.com.geometricweather.R$attr: int bsb_section_text_size +retrofit2.OkHttpCall: okio.Timeout timeout() +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void innerError(java.lang.Throwable) +cyanogenmod.power.IPerformanceManager$Stub: java.lang.String DESCRIPTOR +androidx.appcompat.R$styleable: int AppCompatTheme_seekBarStyle +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: ObservableTakeUntil$TakeUntilMainObserver(io.reactivex.Observer) +okio.Buffer: java.lang.String readUtf8() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindDirection +androidx.work.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_toolbar +androidx.appcompat.resources.R$color: int ripple_material_light +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onComplete() +okhttp3.Request: java.util.List headers(java.lang.String) +androidx.cardview.widget.CardView: void setMaxCardElevation(float) +okhttp3.internal.platform.ConscryptPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +io.reactivex.Observable: io.reactivex.Observable concatEager(java.lang.Iterable,int,int) +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.Map rights +com.jaredrummler.android.colorpicker.R$styleable: int[] AlertDialog +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onError(java.lang.Throwable) +android.didikee.donate.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder validateEagerly(boolean) +okhttp3.internal.http.StatusLine: int code +androidx.preference.R$attr: int alphabeticModifiers +com.google.android.material.internal.ForegroundLinearLayout: android.graphics.drawable.Drawable getForeground() +androidx.appcompat.resources.R$id: int icon_group +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetEnd +okio.BufferedSink: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) +cyanogenmod.externalviews.KeyguardExternalView$4 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_checkboxStyle +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit KM +com.xw.repo.bubbleseekbar.R$attr: int bsb_anim_duration +okhttp3.internal.cache2.Relay: java.io.RandomAccessFile file +okhttp3.internal.ws.RealWebSocket: java.lang.Runnable writerRunnable +okhttp3.internal.http1.Http1Codec: int HEADER_LIMIT +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit valueOf(java.lang.String) +james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,long,okio.BufferedSource) +okhttp3.internal.http2.Hpack$Reader: int dynamicTableIndex(int) +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void remove() androidx.appcompat.R$style: int Base_Widget_AppCompat_TextView -retrofit2.Utils: java.lang.RuntimeException parameterError(java.lang.reflect.Method,int,java.lang.String,java.lang.Object[]) -androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context) -com.google.android.material.R$attr: int expandedTitleMarginEnd -com.google.android.material.R$styleable: int TextInputLayout_android_hint -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.util.List textHtml -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -cyanogenmod.weatherservice.WeatherProviderService$1: void processCityNameLookupRequest(cyanogenmod.weather.RequestInfo) +wangdaye.com.geometricweather.R$array: int duration_unit_values +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +android.didikee.donate.R$drawable: int abc_textfield_search_activated_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconEnabled +androidx.constraintlayout.widget.R$attr: int trackTint +android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_cancel +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle +com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$style: int Base_V7_Theme_AppCompat +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRealFeelTemperature(java.lang.Integer) +okhttp3.Route: Route(okhttp3.Address,java.net.Proxy,java.net.InetSocketAddress) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX +android.didikee.donate.R$styleable: int AppCompatSeekBar_android_thumb +com.turingtechnologies.materialscrollbar.R$string: int password_toggle_content_description +okhttp3.internal.connection.RouteDatabase: java.util.Set failedRoutes +okhttp3.internal.Util: boolean verifyAsIpAddress(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motion_triggerOnCollision +com.google.android.material.R$drawable: int abc_ic_star_half_black_36dp +wangdaye.com.geometricweather.R$attr: int errorContentDescription +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_CompactMenu +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_id +okio.BufferedSink: okio.BufferedSink writeLong(long) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: void run() +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void error(java.lang.Throwable) +wangdaye.com.geometricweather.R$color: int cpv_default_color +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: double Value +com.jaredrummler.android.colorpicker.R$dimen: int cpv_dialog_preview_width +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +com.google.android.material.R$attr: int pivotAnchor +androidx.activity.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.viewpager.R$drawable: int notification_bg_normal +com.jaredrummler.android.colorpicker.R$attr: int actionBarTabBarStyle +io.reactivex.Observable: io.reactivex.Observable switchOnNext(io.reactivex.ObservableSource) +com.amap.api.fence.GeoFenceManagerBase: void setGeoFenceAble(java.lang.String,boolean) +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber +android.didikee.donate.R$string: int abc_shareactionprovider_share_with_application +androidx.lifecycle.ViewModel: void closeWithRuntimeException(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_background +androidx.lifecycle.ComputableLiveData$1: androidx.lifecycle.ComputableLiveData this$0 +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_normal_pressed +androidx.preference.R$attr: int iconTintMode +wangdaye.com.geometricweather.R$id: int mtrl_calendar_selection_frame +androidx.vectordrawable.animated.R$id: int forever +com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuItem +wangdaye.com.geometricweather.R$layout: int material_time_chip +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_24 +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_stacked_max_height +com.jaredrummler.android.colorpicker.R$attr: int windowActionBar +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout +com.google.android.material.card.MaterialCardView: float getRadius() +james.adaptiveicon.R$drawable: int abc_list_pressed_holo_dark +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onModeChanged(boolean) +androidx.viewpager.R$id: R$id() +com.google.android.material.R$drawable: int ic_mtrl_chip_close_circle +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableBottom +cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo() +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.preference.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String url +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.AlertEntity) +androidx.fragment.R$attr: int fontProviderQuery +com.turingtechnologies.materialscrollbar.R$id: int italic +okio.Buffer: Buffer() +com.tencent.bugly.crashreport.common.info.b: java.lang.String b() +com.google.android.material.slider.Slider: int getActiveThumbIndex() +wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Light +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_visible +android.didikee.donate.R$attr: int titleMargins +com.google.android.material.R$attr: int deltaPolarAngle +com.tencent.bugly.proguard.ap: boolean c +androidx.constraintlayout.widget.R$styleable: int SearchView_closeIcon +com.amap.api.location.CoordinateConverter: android.content.Context b +com.jaredrummler.android.colorpicker.R$attr: int summaryOff +androidx.core.R$id: int accessibility_custom_action_31 +com.turingtechnologies.materialscrollbar.R$attr: int tooltipFrameBackground +wangdaye.com.geometricweather.R$layout: int widget_clock_day_horizontal +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressViewStartOffset() +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_normal +androidx.preference.R$styleable: int AppCompatTheme_editTextStyle +androidx.cardview.R$attr +androidx.legacy.coreutils.R$attr: int ttcIndex +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_removeUpdates +androidx.constraintlayout.widget.R$attr: int divider +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_radius_on_dragging +androidx.coordinatorlayout.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$attr: int spinBars +wangdaye.com.geometricweather.R$styleable: int[] MotionTelltales +com.jaredrummler.android.colorpicker.R$color: int abc_hint_foreground_material_dark +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarItemBackground +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min +io.reactivex.exceptions.ProtocolViolationException +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Small +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelMenuListWidth +androidx.lifecycle.extensions.R$id: int notification_main_column +cyanogenmod.weather.util.WeatherUtils: double celsiusToFahrenheit(double) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextStyle +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onComplete() +wangdaye.com.geometricweather.daily.DailyWeatherActivity: DailyWeatherActivity() +androidx.preference.R$id: int start +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setDateText(java.lang.String) +androidx.constraintlayout.widget.R$attr: int colorPrimaryDark +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconEnabled +com.google.android.material.R$dimen: int cardview_default_elevation +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_count +wangdaye.com.geometricweather.R$id: int spread_inside +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void clear() +okhttp3.internal.connection.RealConnection$1: okhttp3.internal.connection.RealConnection this$0 +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +android.didikee.donate.R$attr: int buttonBarPositiveButtonStyle +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: int Id +androidx.appcompat.R$dimen: int abc_floating_window_z +com.tencent.bugly.proguard.d +com.turingtechnologies.materialscrollbar.R$attr: int textAllCaps +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +com.google.android.material.R$styleable: int KeyTrigger_onNegativeCross +com.google.android.material.slider.BaseSlider: void setTrackHeight(int) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_7 +okhttp3.internal.http2.Http2Connection: java.net.Socket socket +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_content_inset_material +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayDetailsProvider +retrofit2.Utils$ParameterizedTypeImpl +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: int getSourceColor() +androidx.lifecycle.Transformations$2: void onChanged(java.lang.Object) +wangdaye.com.geometricweather.background.polling.permanent.observer.FakeForegroundService: FakeForegroundService() +wangdaye.com.geometricweather.R$drawable: int notif_temp_64 +okhttp3.internal.Util: java.nio.charset.Charset UTF_16_LE +okhttp3.OkHttpClient: javax.net.ssl.HostnameVerifier hostnameVerifier() +com.github.rahatarmanahmed.cpv.CircularProgressView +wangdaye.com.geometricweather.R$styleable: int Spinner_android_dropDownWidth +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: double Value +com.jaredrummler.android.colorpicker.R$id: int title +com.google.android.material.R$layout: int mtrl_alert_dialog_actions +okhttp3.internal.http2.Hpack$Writer: okio.Buffer out +androidx.drawerlayout.R$styleable: int GradientColorItem_android_offset +okhttp3.MultipartBody$Builder +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_material +com.google.android.material.R$attr: int itemMaxLines +retrofit2.BuiltInConverters$RequestBodyConverter: BuiltInConverters$RequestBodyConverter() +com.google.android.material.R$attr: int colorOnPrimarySurface +com.google.android.material.R$layout: int abc_list_menu_item_checkbox +androidx.fragment.R$styleable: int ColorStateListItem_android_alpha +com.turingtechnologies.materialscrollbar.R$attr: int toolbarNavigationButtonStyle +okhttp3.internal.cache.DiskLruCache: int appVersion +okhttp3.OkHttpClient$Builder: okhttp3.ConnectionPool connectionPool +wangdaye.com.geometricweather.db.entities.LocationEntity: void setCurrentPosition(boolean) +com.jaredrummler.android.colorpicker.R$styleable: int[] DialogPreference +wangdaye.com.geometricweather.R$drawable: int flag_nl +com.google.android.material.appbar.AppBarLayout: void setStatusBarForeground(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: long serialVersionUID +com.google.android.material.R$attr: int textAppearanceHeadline4 +com.google.android.material.R$dimen: int mtrl_progress_circular_radius +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: AccuDailyResult$DailyForecasts$Day$WindGust$Speed() +androidx.recyclerview.widget.RecyclerView: void setItemViewCacheSize(int) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder removePathSegment(int) +com.baidu.location.e.h$b: com.baidu.location.e.h$b a +androidx.customview.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm10Desc() +james.adaptiveicon.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$attr: int actionModeBackground +wangdaye.com.geometricweather.R$attr: int listChoiceBackgroundIndicator +com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +com.turingtechnologies.materialscrollbar.R$style: int Base_AlertDialog_AppCompat_Light +com.google.android.material.R$anim: int btn_radio_to_off_mtrl_dot_group_animation +io.reactivex.Observable: io.reactivex.Single toSortedList(int) +com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: void setInternalAutoHideListener(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) +cyanogenmod.weatherservice.WeatherProviderService$1: void cancelOngoingRequests() +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_36dp +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableEnd +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: io.reactivex.disposables.Disposable upstream +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_normal_material_light +com.google.android.material.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +androidx.activity.R$styleable: int FontFamily_fontProviderQuery +com.tencent.bugly.proguard.k: void a(java.lang.StringBuilder,int) +com.google.android.material.R$styleable: int AppCompatTheme_imageButtonStyle +cyanogenmod.externalviews.ExternalViewProviderService: android.os.Handler mHandler +com.amap.api.fence.PoiItem: void setPoiName(java.lang.String) +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_disabled_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric +wangdaye.com.geometricweather.R$style: int notification_title_text +wangdaye.com.geometricweather.R$styleable: int[] PreferenceFragmentCompat +cyanogenmod.app.Profile: void setRingMode(cyanogenmod.profiles.RingModeSettings) +androidx.constraintlayout.widget.R$styleable: int OnSwipe_maxAcceleration +com.tencent.bugly.proguard.f: int g +cyanogenmod.app.CustomTile$Builder: boolean mSensitiveData +com.google.android.gms.common.api.GoogleApiActivity +androidx.loader.R$integer: R$integer() +com.google.android.material.textfield.TextInputLayout: void setPrefixText(java.lang.CharSequence) +wangdaye.com.geometricweather.R$id: int container_alert_display_view_indicator +wangdaye.com.geometricweather.R$attr: int colorSwitchThumbNormal +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_2_30 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.lang.String unit +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.MinutelyEntity,long) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SeekBar +androidx.drawerlayout.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getTitle() +android.didikee.donate.R$styleable: int MenuGroup_android_enabled +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_singleSelection +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableEnd +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature RealFeelTemperature +wangdaye.com.geometricweather.R$string: int widget_trend_daily +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawableItem_android_drawable +com.google.gson.stream.JsonReader: java.lang.String nextUnquotedValue() +com.google.gson.stream.JsonReader: java.lang.String locationString() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.util.List value +james.adaptiveicon.R$color: int abc_tint_spinner +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastHorizontalBias +io.reactivex.Observable: io.reactivex.Observable concatArrayEager(io.reactivex.ObservableSource[]) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap +com.xw.repo.bubbleseekbar.R$styleable: int View_android_theme +okhttp3.internal.platform.Android10Platform: void enableSessionTickets(javax.net.ssl.SSLSocket) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_2 +androidx.viewpager2.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.jaredrummler.android.colorpicker.R$dimen: int abc_alert_dialog_button_bar_height +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_maxProgress +android.didikee.donate.R$dimen: int abc_action_bar_overflow_padding_end_material +com.tencent.bugly.crashreport.biz.b: int g +com.google.android.material.imageview.ShapeableImageView: void setStrokeWidth(float) +wangdaye.com.geometricweather.R$font: int product_sans_italic +androidx.appcompat.resources.R$string +androidx.appcompat.R$attr: int tickMarkTintMode +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +com.google.android.material.R$id: int chain +wangdaye.com.geometricweather.R$attr: int labelVisibilityMode +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: KeyguardExternalViewProviderService$Provider$ProviderImpl$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf +androidx.lifecycle.extensions.R$styleable: int FragmentContainerView_android_name +com.tencent.bugly.b: java.util.List b +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_128_CCM_SHA256 +androidx.legacy.coreutils.R$id: int forever +com.turingtechnologies.materialscrollbar.R$color: R$color() +cyanogenmod.hardware.IThermalListenerCallback$Stub: int TRANSACTION_onThermalChanged_0 +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findPlatform() +james.adaptiveicon.R$style: int Base_V22_Theme_AppCompat_Light +com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyleIndicator +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_right_mtrl_light +androidx.constraintlayout.widget.R$dimen: int abc_button_padding_vertical_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean brandInfo +com.google.android.material.R$drawable: int ic_mtrl_chip_checked_circle +com.tencent.bugly.proguard.v: com.tencent.bugly.proguard.u i +cyanogenmod.providers.CMSettings$Secure: java.lang.String THEME_PREV_BOOT_API_LEVEL +com.google.android.material.tabs.TabLayout$TabView +com.jaredrummler.android.colorpicker.R$styleable: int[] DrawerArrowToggle +com.xw.repo.bubbleseekbar.R$attr: int numericModifiers +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_imeOptions +wangdaye.com.geometricweather.R$style: int large_title_text +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: ObservableFlatMapCompletable$FlatMapCompletableMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCloseDrawable +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$id: int container_main_header_weatherTxt +com.jaredrummler.android.colorpicker.R$attr: int tint +wangdaye.com.geometricweather.R$dimen: int design_navigation_icon_size +retrofit2.converter.gson.GsonRequestBodyConverter: com.google.gson.Gson gson +io.reactivex.internal.subscriptions.BasicQueueSubscription: void clear() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_RC4_128_MD5 +okhttp3.internal.http2.Http2Writer: boolean client +com.google.android.material.R$styleable: int Transform_android_translationX +retrofit2.Retrofit: java.util.Map serviceMethodCache +com.turingtechnologies.materialscrollbar.R$styleable: int[] RecyclerView +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +androidx.loader.R$attr: int fontStyle +com.tencent.bugly.crashreport.crash.e: boolean a(java.lang.Thread) +retrofit2.Utils: java.lang.RuntimeException methodError(java.lang.reflect.Method,java.lang.String,java.lang.Object[]) +io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.functions.Function,io.reactivex.ObservableSource) +com.google.android.material.R$styleable: int MenuItem_android_orderInCategory +androidx.appcompat.R$drawable: int abc_text_select_handle_middle_mtrl_dark +androidx.vectordrawable.R$styleable: int ColorStateListItem_android_color +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemIconSize() +wangdaye.com.geometricweather.R$attr: int tickColor +android.didikee.donate.R$id: int action_divider +com.google.android.material.R$dimen: int mtrl_fab_translation_z_hovered_focused +james.adaptiveicon.R$styleable: int AppCompatTheme_popupMenuStyle +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Subtitle2 +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_hint +androidx.appcompat.R$dimen: int abc_progress_bar_height_material +wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +com.turingtechnologies.materialscrollbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +com.google.android.material.R$attr: int actionModeCloseDrawable +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_motionProgress +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder query(java.lang.String) +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: int getMarginTop() +androidx.transition.R$drawable: int notification_template_icon_bg +com.bumptech.glide.integration.okhttp.R$styleable: int[] GradientColorItem +androidx.legacy.coreutils.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.R$styleable: int TextInputLayout_helperText +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_3_material +com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_material_light +androidx.constraintlayout.widget.R$styleable: int MotionLayout_layoutDescription +androidx.lifecycle.MediatorLiveData: androidx.arch.core.internal.SafeIterableMap mSources +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ListPopupWindow +com.github.rahatarmanahmed.cpv.CircularProgressView: boolean autostartAnimation +okio.RealBufferedSink: void close() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List probabilityForecast +cyanogenmod.weather.CMWeatherManager: java.util.Map access$300(cyanogenmod.weather.CMWeatherManager) +com.google.android.material.R$attr: int drawableLeftCompat +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onComplete() +okhttp3.internal.cache.CacheRequest: void abort() +com.bumptech.glide.integration.okhttp.R$id: int icon +com.xw.repo.bubbleseekbar.R$id: int notification_main_column +com.turingtechnologies.materialscrollbar.R$styleable: int RecycleListView_paddingBottomNoButtons +wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemTextAppearance +com.google.android.material.R$drawable: int btn_checkbox_unchecked_mtrl +androidx.appcompat.R$styleable: int[] GradientColor +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_20 com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_switchStyle -android.didikee.donate.R$style: int Base_Theme_AppCompat_DialogWhenLarge -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_popupBackground -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String value -james.adaptiveicon.R$color: int switch_thumb_disabled_material_light -com.google.android.material.datepicker.DateSelector -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro[] astros -androidx.vectordrawable.animated.R$color: int ripple_material_light -cyanogenmod.app.Profile$ProfileTrigger: int describeContents() -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startY -com.tencent.bugly.crashreport.crash.CrashDetailBean: boolean j -androidx.coordinatorlayout.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthTextView -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingTop -androidx.preference.R$styleable: int[] AnimatedStateListDrawableTransition -cyanogenmod.providers.CMSettings$System: boolean putLong(android.content.ContentResolver,java.lang.String,long) -io.reactivex.exceptions.CompositeException: CompositeException(java.lang.Iterable) -com.jaredrummler.android.colorpicker.R$color: int ripple_material_light -retrofit2.http.Path -androidx.core.graphics.drawable.IconCompat -androidx.lifecycle.LifecycleRegistry$1 -wangdaye.com.geometricweather.R$string: int key_widget_trend_hourly -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog_Alert -com.jaredrummler.android.colorpicker.R$color: int dim_foreground_disabled_material_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX -com.xw.repo.bubbleseekbar.R$attr: int actionMenuTextColor -okio.AsyncTimeout: java.io.IOException exit(java.io.IOException) -androidx.vectordrawable.R$id: int accessibility_custom_action_30 -androidx.dynamicanimation.R$id: int line1 -wangdaye.com.geometricweather.R$styleable: int ActionBar_titleTextStyle -com.xw.repo.bubbleseekbar.R$attr: int fontStyle -com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getStartIconDrawable() -com.google.android.material.appbar.CollapsingToolbarLayout: int getMaxLines() -androidx.preference.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_106 -okio.ByteString: java.lang.String toString() -androidx.preference.R$styleable: int SwitchPreference_switchTextOn -james.adaptiveicon.R$styleable: int AppCompatTheme_toolbarStyle -com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_bias -okhttp3.internal.cache.DiskLruCache: okio.BufferedSink newJournalWriter() -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginStart -com.google.android.material.R$attr: int chipCornerRadius -com.google.android.material.R$string: int material_slider_range_end -com.google.android.material.R$color: int design_dark_default_color_on_secondary -android.didikee.donate.R$id: int progress_horizontal -androidx.preference.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogStyle -com.xw.repo.bubbleseekbar.R$layout: int abc_search_dropdown_item_icons_2line -androidx.preference.R$styleable: int AppCompatTheme_colorBackgroundFloating -com.google.android.material.R$attr: int boxStrokeWidthFocused -cyanogenmod.app.LiveLockScreenManager: boolean show(int,cyanogenmod.app.LiveLockScreenInfo) -com.xw.repo.bubbleseekbar.R$string: int abc_activitychooserview_choose_application -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State getStateAfter(androidx.lifecycle.Lifecycle$Event) -wangdaye.com.geometricweather.R$array: int week_widget_style_values -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_enterFadeDuration -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize -com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String e(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int Layout_minHeight -androidx.preference.R$color: int background_material_light -james.adaptiveicon.R$styleable: int FontFamily_fontProviderFetchStrategy -okio.RealBufferedSource: okio.Source source -okhttp3.Request: java.lang.String method -com.google.gson.internal.LazilyParsedNumber: java.lang.String toString() -com.turingtechnologies.materialscrollbar.R$attr: int statusBarScrim -com.google.android.material.R$dimen: int mtrl_high_ripple_default_alpha -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String province -io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean cancelled -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayVerticalProvider: WidgetClockDayVerticalProvider() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String unit -com.google.android.material.R$attr: int shrinkMotionSpec -io.reactivex.internal.schedulers.ScheduledRunnable: void setFuture(java.util.concurrent.Future) -wangdaye.com.geometricweather.R$attr: int commitIcon -androidx.preference.R$styleable: int ActionMode_titleTextStyle -okhttp3.CertificatePinner: okhttp3.CertificatePinner withCertificateChainCleaner(okhttp3.internal.tls.CertificateChainCleaner) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRelativeHumidity() -androidx.viewpager2.R$styleable: int GradientColor_android_endX -com.tencent.bugly.proguard.v: com.tencent.bugly.proguard.t l -com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_pressed -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextColor -com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_drawableSize -cyanogenmod.app.ILiveLockScreenManager$Stub: ILiveLockScreenManager$Stub() -android.didikee.donate.R$integer: R$integer() -com.google.android.material.R$styleable: int MenuItem_android_menuCategory -wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_night_foreground -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_second_track_color +wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_EditText +com.google.android.material.R$attr: int trackColorInactive +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_toBottomOf +androidx.coordinatorlayout.R$id: int accessibility_custom_action_15 +android.didikee.donate.R$attr: int contentInsetStartWithNavigation +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getIce() +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_color +com.tencent.bugly.crashreport.biz.b: long k() +com.xw.repo.bubbleseekbar.R$id: int titleDividerNoCustom +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Action +okhttp3.internal.io.FileSystem +androidx.preference.R$string: int v7_preference_on +androidx.preference.R$styleable: int FontFamilyFont_android_fontStyle +androidx.appcompat.R$color: int foreground_material_light +androidx.vectordrawable.R$drawable: int notification_tile_bg +androidx.loader.R$layout: R$layout() +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemPaddingLeft +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +okhttp3.Request$Builder: Request$Builder() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getUvDescription() +android.didikee.donate.R$styleable: int Toolbar_android_minHeight +androidx.preference.R$dimen: int abc_text_size_display_2_material +androidx.constraintlayout.widget.R$attr: int targetId +okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String access$000(okhttp3.internal.cache.DiskLruCache$Snapshot) +wangdaye.com.geometricweather.R$attr: int textColorSearchUrl +androidx.constraintlayout.widget.R$string: int abc_menu_sym_shortcut_label +android.didikee.donate.R$attr: int backgroundTint +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListMenuView +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +androidx.preference.R$anim: int fragment_open_enter +com.google.android.material.R$attr: int closeIconEndPadding +wangdaye.com.geometricweather.R$color: int abc_primary_text_disable_only_material_light +androidx.lifecycle.extensions.R$anim: int fragment_close_exit +cyanogenmod.weatherservice.ServiceRequestResult$Builder: cyanogenmod.weather.WeatherInfo mWeatherInfo +androidx.constraintlayout.widget.R$attr: int maxVelocity +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_menu_material +wangdaye.com.geometricweather.R$drawable: int abc_seekbar_tick_mark_material +james.adaptiveicon.R$attr: int colorControlHighlight +com.amap.api.fence.GeoFence: void setType(int) +io.reactivex.internal.observers.DeferredScalarDisposable: java.lang.Object poll() +androidx.preference.R$dimen: int notification_content_margin_start +com.turingtechnologies.materialscrollbar.R$id: int default_activity_button +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalAlign +okhttp3.internal.cache2.Relay$RelaySource: void close() +wangdaye.com.geometricweather.db.entities.AlertEntity: AlertEntity(java.lang.Long,java.lang.String,java.lang.String,long,java.util.Date,long,java.lang.String,java.lang.String,java.lang.String,int,int) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String threshold +androidx.appcompat.R$styleable: int AnimatedStateListDrawableItem_android_id +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTag +cyanogenmod.power.IPerformanceManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.turingtechnologies.materialscrollbar.R$attr: int actionModeCutDrawable +okio.RealBufferedSink: java.lang.String toString() +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_DOTS +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityDestroyed(android.app.Activity) +com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonTint +android.didikee.donate.R$styleable: int TextAppearance_android_textColorLink +androidx.appcompat.R$dimen: int abc_text_size_body_1_material +androidx.preference.R$styleable: int AppCompatTheme_windowFixedWidthMinor +com.google.android.material.R$color: int design_dark_default_color_surface +com.turingtechnologies.materialscrollbar.R$attr: int panelMenuListWidth +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Bridge +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStartPadding +james.adaptiveicon.R$style +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: int UnitType +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.ObservableSource[],io.reactivex.functions.Function,int) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String time +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedWidthMinor +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Body2 +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String ID +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setCountry(java.lang.String) +android.didikee.donate.R$color: int abc_tint_btn_checkable +cyanogenmod.profiles.BrightnessSettings$1: java.lang.Object[] newArray(int) +cyanogenmod.app.PartnerInterface: cyanogenmod.app.IPartnerInterface sService +wangdaye.com.geometricweather.R$styleable: int ActionBar_logo +okio.Buffer: okio.Buffer writeString(java.lang.String,int,int,java.nio.charset.Charset) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 +wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment: ServiceProviderSettingsFragment() +cyanogenmod.weather.WeatherInfo: int describeContents() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String district +androidx.legacy.coreutils.R$dimen: int compat_notification_large_icon_max_height +androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyle +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginBottom +io.reactivex.Observable: io.reactivex.Single collect(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer) +retrofit2.SkipCallbackExecutorImpl: SkipCallbackExecutorImpl() +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float thunderstorm +okio.ByteString: okio.ByteString md5() +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +wangdaye.com.geometricweather.R$id: int text2 +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_subMenuArrow +androidx.coordinatorlayout.widget.CoordinatorLayout: java.util.List getDependencySortedChildren() +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: void run() +androidx.appcompat.R$attr: int actionModeSplitBackground +okhttp3.internal.connection.RouteSelector$Selection: RouteSelector$Selection(java.util.List) +androidx.vectordrawable.R$attr +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: long serialVersionUID +androidx.loader.R$styleable: int[] FontFamily +androidx.viewpager2.R$id: int accessibility_custom_action_31 +retrofit2.ParameterHandler$Field: boolean encoded +androidx.constraintlayout.widget.R$attr: int flow_lastVerticalBias +com.google.android.material.R$attr: int badgeGravity +okhttp3.internal.cache.FaultHidingSink: void onException(java.io.IOException) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +io.reactivex.Observable: io.reactivex.Single reduceWith(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_COLOR_ADJUSTMENT_VALIDATOR +wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_range_end +com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_toTopOf +androidx.recyclerview.widget.StaggeredGridLayoutManager +com.turingtechnologies.materialscrollbar.R$dimen: int abc_edit_text_inset_bottom_material +wangdaye.com.geometricweather.R$attr: int cardForegroundColor +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicReference upstream +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_menuCategory +androidx.core.R$styleable: R$styleable() +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_dividerPadding +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCountryId +androidx.appcompat.R$attr +cyanogenmod.providers.CMSettings$Secure: java.lang.String VIBRATOR_INTENSITY +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_right_mtrl_light +okio.Util: int reverseBytesInt(int) +com.turingtechnologies.materialscrollbar.R$id: int visible +wangdaye.com.geometricweather.R$string: int live +wangdaye.com.geometricweather.settings.dialogs.MinimalIconDialog: MinimalIconDialog() +io.reactivex.internal.subscriptions.EmptySubscription: boolean isEmpty() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_visibility +wangdaye.com.geometricweather.R$transition: R$transition() +androidx.viewpager2.R$styleable: int GradientColor_android_endY +wangdaye.com.geometricweather.R$styleable: int TouchScrollBar_msb_hideDelayInMilliseconds +androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedWidthMinor +com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_backgroundTint +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableItem_android_drawable +androidx.work.R$id: int accessibility_custom_action_7 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX names +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: void setDirection(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean) +wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationX +androidx.recyclerview.R$id: int accessibility_custom_action_1 +androidx.lifecycle.extensions.R$id: int tag_screen_reader_focusable +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context) +androidx.preference.R$style: int Widget_AppCompat_TextView_SpinnerItem +com.google.android.material.R$drawable: int test_custom_background +okhttp3.internal.http2.Http2Connection$ReaderRunnable: okhttp3.internal.http2.Http2Connection this$0 +okhttp3.OkHttpClient: okhttp3.EventListener$Factory eventListenerFactory +okhttp3.HttpUrl: java.lang.String host +cyanogenmod.app.ThemeVersion$ComponentVersion: int getId() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_38 +okhttp3.internal.http2.Http2Reader$Handler: void windowUpdate(int,long) +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Title +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_text_size +androidx.transition.R$id: int line3 +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_end +androidx.appcompat.R$styleable: int Toolbar_contentInsetRight +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_FULL_COLOR +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_textColor +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotation +com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_HIGH +androidx.activity.R$id: int icon_group +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode getCurrentDisplayMode() +com.tencent.bugly.crashreport.common.info.b: boolean j(android.content.Context) +androidx.constraintlayout.utils.widget.ImageFilterButton: void setContrast(float) +com.google.android.material.R$dimen: int design_snackbar_background_corner_radius +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeight +androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver +cyanogenmod.hardware.DisplayMode$1: cyanogenmod.hardware.DisplayMode[] newArray(int) +wangdaye.com.geometricweather.R$id: int snapMargins +androidx.loader.R$string: R$string() +wangdaye.com.geometricweather.R$style: int Widget_Design_ScrimInsetsFrameLayout +wangdaye.com.geometricweather.R$color: int colorTextLight +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_ScrimInsetsFrameLayout +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String RINGTONE +com.google.android.material.R$id: int test_checkbox_app_button_tint +wangdaye.com.geometricweather.R$color: int design_fab_shadow_mid_color +androidx.lifecycle.extensions.R$layout: int notification_template_part_time +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_WAKE_SCREEN_VALIDATOR +com.bumptech.glide.integration.okhttp.R$dimen: int notification_large_icon_width +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter emitter +android.didikee.donate.R$styleable: int CompoundButton_buttonTintMode +com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.crashreport.common.strategy.a e +okio.Buffer: boolean rangeEquals(okio.Segment,int,okio.ByteString,int,int) +cyanogenmod.providers.CMSettings$System: java.lang.String VOLBTN_MUSIC_CONTROLS +com.google.android.material.R$attr: int spinBars +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: int index +cyanogenmod.app.CustomTile: CustomTile(android.os.Parcel) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getBrandId() +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_constantSize +com.tencent.bugly.crashreport.crash.c: android.content.Context q +wangdaye.com.geometricweather.R$styleable: int LiveLockScreen_settingsActivity +android.didikee.donate.R$attr: int switchPadding +okhttp3.Response: java.util.List headers(java.lang.String) +com.tencent.bugly.proguard.f: java.lang.String c +com.google.android.material.textfield.TextInputLayout: void setStartIconDrawable(int) +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_5 +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void setResource(io.reactivex.disposables.Disposable) +androidx.viewpager2.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_margin +okhttp3.OkHttpClient$Builder: java.util.List connectionSpecs +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_normalContainer +androidx.appcompat.widget.AppCompatSpinner: int getDropDownHorizontalOffset() +wangdaye.com.geometricweather.R$drawable: int notif_temp_13 +wangdaye.com.geometricweather.R$drawable: int weather_sleet_2 +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +com.google.android.material.R$dimen: int material_filled_edittext_font_1_3_padding_bottom +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PRESENT_AS_THEME +android.didikee.donate.R$drawable: int abc_list_selector_disabled_holo_light +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low_pressed +androidx.fragment.R$dimen: int compat_button_padding_vertical_material +android.didikee.donate.R$styleable: int ActionMode_backgroundSplit +com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context,android.util.AttributeSet) +androidx.activity.R$id: int accessibility_custom_action_12 +com.amap.api.location.AMapLocation: double getLatitude() +androidx.constraintlayout.widget.R$attr: int fontFamily +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_LANDSCAPE +android.didikee.donate.R$attr: int titleMarginBottom +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void onDetachedFromWindow() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: AccuCurrentResult$Pressure$Imperial() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingBottom +okhttp3.internal.http2.Http2Codec: java.lang.String TRANSFER_ENCODING +android.didikee.donate.R$attr: int contentInsetEndWithActions +android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog +james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyleSmall +android.didikee.donate.R$attr: int queryBackground +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemTextAppearance +com.tencent.bugly.proguard.ah: void a(com.tencent.bugly.proguard.j) +com.google.android.material.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.lang.String Phase +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.AlertEntity,int) +androidx.fragment.R$dimen: int notification_action_text_size +androidx.appcompat.widget.AppCompatButton: int getAutoSizeMinTextSize() +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object set(int,java.lang.Object) +androidx.core.os.CancellationSignal +cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.os.Parcel) +com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getBackgroundTintMode() +com.google.android.material.R$id: int group_divider +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemIconSize +com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_top_outer_color +androidx.dynamicanimation.R$drawable: int notification_bg_normal +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder host(java.lang.String) +com.baidu.location.e.l$b: int d(com.baidu.location.e.l$b) +com.tencent.bugly.crashreport.inner.InnerApi: void postH5CrashAsync(java.lang.Thread,java.lang.String,java.lang.String,java.lang.String,java.util.Map) +com.tencent.bugly.proguard.f +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getAqi() +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getShrinkMotionSpec() +androidx.appcompat.R$attr: int voiceIcon +okio.Buffer: java.lang.String readUtf8LineStrict() +com.xw.repo.bubbleseekbar.R$id: int bottom +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Subhead +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean isDisposed() +okhttp3.RealCall$1: okhttp3.RealCall this$0 +com.google.android.material.chip.Chip: void setTextStartPaddingResource(int) +androidx.preference.R$dimen: int abc_select_dialog_padding_start_material +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: int getMarginBottom() +com.google.android.material.R$styleable: int FontFamily_fontProviderPackage +androidx.preference.R$styleable: int PreferenceFragment_android_dividerHeight +okio.AsyncTimeout: void enter() +androidx.hilt.R$styleable: int FragmentContainerView_android_name +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink +androidx.loader.R$dimen: int notification_small_icon_background_padding +androidx.lifecycle.ReportFragment: void setProcessListener(androidx.lifecycle.ReportFragment$ActivityInitializationListener) +james.adaptiveicon.R$attr: int windowNoTitle +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_visible +com.google.android.material.R$styleable: int AlertDialog_showTitle +android.didikee.donate.R$styleable: int MenuGroup_android_menuCategory +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_tooltipForegroundColor +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_8 +com.google.android.material.R$id: int material_clock_display +android.didikee.donate.R$attr: int panelBackground +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: IExternalViewProviderFactory$Stub$Proxy(android.os.IBinder) +androidx.appcompat.R$attr: int menu +wangdaye.com.geometricweather.R$drawable: int notif_temp_122 +com.google.android.material.R$style: int Base_V26_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$layout: int design_navigation_item +com.turingtechnologies.materialscrollbar.R$style: int Base_CardView +com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage DEFAULT +androidx.appcompat.R$styleable: int[] ViewBackgroundHelper +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.entities.WeatherEntity readEntity(android.database.Cursor,int) +com.google.android.material.R$attr: int colorOnSurface +com.google.android.material.R$attr: int textAppearanceBody1 +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource[] values() +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: long serialVersionUID +wangdaye.com.geometricweather.R$string: int key_alert_notification_switch +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_rippleColor +androidx.preference.R$drawable: int abc_seekbar_thumb_material +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String momentDay +com.autonavi.aps.amapapi.model.AMapLocationServer: void a(org.json.JSONObject) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.WeatherEntity,long) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius +wangdaye.com.geometricweather.R$id: int standard +androidx.viewpager2.R$string +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_ripple_color +okhttp3.internal.http2.Http2Connection$Listener$1: void onStream(okhttp3.internal.http2.Http2Stream) +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_collapseContentDescription +com.tencent.bugly.proguard.ao: ao() +com.turingtechnologies.materialscrollbar.R$attr: int allowStacking +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +androidx.constraintlayout.widget.R$styleable: int MockView_mock_labelBackgroundColor +androidx.lifecycle.MediatorLiveData$Source: androidx.lifecycle.LiveData mLiveData +androidx.work.impl.utils.futures.AbstractFuture$Failure$1 +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder addCallAdapterFactory(retrofit2.CallAdapter$Factory) +com.google.gson.stream.JsonReader: int peekedNumberLength +androidx.appcompat.R$styleable: int FontFamily_fontProviderFetchStrategy +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: boolean isDisposed() +okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,java.lang.String) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6 +androidx.work.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean setDisposable(io.reactivex.disposables.Disposable,int) +com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context) +org.greenrobot.greendao.database.DatabaseOpenHelper: boolean loadSQLCipherNativeLibs +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_shape_vertical_margin +com.google.android.material.R$style: int Base_Widget_AppCompat_EditText +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_PARSER +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_maxLines +androidx.lifecycle.extensions.R$attr: int fontProviderAuthority +androidx.core.R$styleable: int GradientColorItem_android_color +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawableItem_android_drawable +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Line2 +com.google.gson.stream.JsonReader: long nextLong() +okhttp3.CertificatePinner: okio.ByteString sha256(java.security.cert.X509Certificate) +androidx.recyclerview.R$attr: int fontStyle +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextView +androidx.appcompat.widget.ActivityChooserModel: void setOnChooseActivityListener(androidx.appcompat.widget.ActivityChooserModel$OnChooseActivityListener) +androidx.appcompat.R$styleable: int FontFamily_fontProviderFetchTimeout +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: boolean isDisposed() +androidx.legacy.coreutils.R$styleable: int[] FontFamily +androidx.recyclerview.widget.RecyclerView: void setScrollingTouchSlop(int) +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMenuView +com.google.android.material.R$id: int material_label +wangdaye.com.geometricweather.R$attr: int prefixTextColor +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.appcompat.R$string: int abc_action_menu_overflow_description +wangdaye.com.geometricweather.R$style: int week_weather_week_info +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$attr: int snackbarButtonStyle +wangdaye.com.geometricweather.R$drawable: int ic_grass +com.google.android.material.R$styleable: int ProgressIndicator_indicatorType +wangdaye.com.geometricweather.R$id: int dialog_background_location_title +wangdaye.com.geometricweather.R$color: int colorLevel_3 +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_100 +androidx.customview.R$dimen: int notification_top_pad +androidx.cardview.widget.CardView: CardView(android.content.Context) +wangdaye.com.geometricweather.R$xml: int icon_provider_drawable_filter +com.google.android.material.R$id: int off +okio.ByteString: boolean equals(java.lang.Object) +okhttp3.Connection: java.net.Socket socket() +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low_pressed +okhttp3.HttpUrl: boolean percentEncoded(java.lang.String,int,int) +retrofit2.ParameterHandler$QueryName: ParameterHandler$QueryName(retrofit2.Converter,boolean) +androidx.lifecycle.Transformations: androidx.lifecycle.LiveData distinctUntilChanged(androidx.lifecycle.LiveData) +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable +androidx.appcompat.R$color: int secondary_text_disabled_material_light +androidx.appcompat.R$id: int expanded_menu +okhttp3.internal.http.CallServerInterceptor$CountingSink: long successfulCount +com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_multichoice_material +androidx.appcompat.R$dimen: int notification_large_icon_width +androidx.preference.R$styleable: int Preference_android_title +wangdaye.com.geometricweather.R$dimen: int abc_dialog_list_padding_top_no_title +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedReadableDb(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance +androidx.constraintlayout.widget.R$styleable: int Layout_barrierDirection +com.bumptech.glide.Registry$NoImageHeaderParserException +com.jaredrummler.android.colorpicker.R$styleable: int[] LinearLayoutCompat_Layout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getAlertId() +com.google.android.material.R$style: int TextAppearance_AppCompat_Caption +com.tencent.bugly.proguard.h: void a(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_PRECIPITATION +androidx.core.widget.NestedScrollView: int getNestedScrollAxes() +com.google.android.material.R$id: int search_bar +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +com.google.android.material.R$attr: int materialCalendarDay +james.adaptiveicon.R$id: int right_icon +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Primary -androidx.coordinatorlayout.R$string -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean getLiveLockScreenEnabled() -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Pollen getPollen() -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionMode -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: boolean cancelled -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -james.adaptiveicon.R$dimen: int abc_action_bar_default_padding_start_material -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating() -wangdaye.com.geometricweather.R$dimen: int abc_control_corner_material -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: long dt -androidx.appcompat.widget.ViewStubCompat: void setOnInflateListener(androidx.appcompat.widget.ViewStubCompat$OnInflateListener) -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_contrast -james.adaptiveicon.R$id: int scrollIndicatorDown -com.google.android.material.R$styleable: int AppCompatTheme_popupMenuStyle -androidx.constraintlayout.utils.widget.ImageFilterView: void setRound(float) -com.amap.api.location.LocationManagerBase: void setLocationListener(com.amap.api.location.AMapLocationListener) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitation -androidx.transition.R$style: int TextAppearance_Compat_Notification_Info -androidx.appcompat.R$attr: int paddingBottomNoButtons -androidx.drawerlayout.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.R$style: int Widget_Design_CollapsingToolbar -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long REQUEST_MASK -org.greenrobot.greendao.DaoException: long serialVersionUID -androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -cyanogenmod.profiles.BrightnessSettings: void processOverride(android.content.Context) +androidx.recyclerview.R$id: int accessibility_custom_action_19 +androidx.fragment.app.BackStackState +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: int UnitType +com.google.android.material.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onNegativeCross +wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity: ClockDayWeekWidgetConfigActivity() +wangdaye.com.geometricweather.db.entities.MinutelyEntity: long time +com.google.android.material.R$style: int Widget_AppCompat_Toolbar +android.didikee.donate.R$styleable: int SearchView_android_inputType +androidx.preference.R$attr: int seekBarPreferenceStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +androidx.lifecycle.LiveDataReactiveStreams: androidx.lifecycle.LiveData fromPublisher(org.reactivestreams.Publisher) +androidx.preference.R$id: int multiply +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_marginEnd +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi mApi +wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_xml +androidx.loader.R$dimen: int notification_right_side_padding_top +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_subtitleTextStyle +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastVerticalBias +com.google.android.material.R$styleable: int AppCompatTheme_dialogTheme +wangdaye.com.geometricweather.R$attr: int suffixTextColor +androidx.preference.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.MinutelyEntity) +wangdaye.com.geometricweather.R$attr: int textInputStyle +androidx.constraintlayout.widget.R$attr: int fontWeight +cyanogenmod.themes.IThemeChangeListener$Stub: android.os.IBinder asBinder() +androidx.appcompat.widget.SwitchCompat: java.lang.CharSequence getTextOff() +wangdaye.com.geometricweather.R$id: int chip2 +androidx.hilt.lifecycle.R$anim: int fragment_fade_exit +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_stacked_max_height +androidx.preference.R$attr: int windowFixedHeightMajor +com.xw.repo.bubbleseekbar.R$color: int abc_secondary_text_material_dark +com.turingtechnologies.materialscrollbar.R$attr: int contentPadding +com.tencent.bugly.proguard.p: android.content.ContentValues c(com.tencent.bugly.proguard.r) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setZh_CN(java.lang.String) +okhttp3.Cache: int writeSuccessCount() wangdaye.com.geometricweather.settings.activities.SelectProviderActivity -androidx.appcompat.R$attr: R$attr() -james.adaptiveicon.R$attr: int switchStyle -wangdaye.com.geometricweather.R$dimen: int abc_config_prefDialogWidth -com.turingtechnologies.materialscrollbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -androidx.preference.R$attr: int divider -com.google.android.material.R$attr: int actionModeCloseButtonStyle -wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_title -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar -androidx.preference.R$string: int abc_searchview_description_voice -io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: void truncateFinal() -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.fuseable.SimpleQueue queue -com.loc.k: java.lang.String a -androidx.constraintlayout.widget.R$styleable: int Transition_pathMotionArc -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: android.content.Context b(com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver) -wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogIcon -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -androidx.preference.R$attr: int min -com.google.android.material.R$string: int abc_shareactionprovider_share_with_application -androidx.constraintlayout.widget.R$styleable: R$styleable() -cyanogenmod.profiles.AirplaneModeSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +androidx.recyclerview.R$styleable: int[] RecyclerView +androidx.preference.R$drawable: int abc_scrubber_track_mtrl_alpha +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleContentDescription(java.lang.CharSequence) +androidx.loader.R$id: int notification_main_column_container +com.amap.api.fence.DistrictItem: java.lang.String getAdcode() +retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1 +cyanogenmod.themes.ThemeManager$ThemeProcessingListener +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.R$dimen: int abc_select_dialog_padding_start_material +androidx.preference.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_circularInset +com.google.android.material.R$styleable: int Constraint_flow_horizontalBias +okhttp3.internal.http1.Http1Codec: okio.Source newUnknownLengthSource() +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.functions.Consumer disposer +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyBottomLeft +androidx.transition.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String icon +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.String aqiText +james.adaptiveicon.R$attr: int titleMarginEnd +com.tencent.bugly.Bugly: Bugly() +androidx.appcompat.widget.AppCompatSpinner: void setBackgroundDrawable(android.graphics.drawable.Drawable) +com.google.android.material.R$attr: int backgroundTintMode +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Info +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeWidth(float) +com.tencent.bugly.proguard.i: java.lang.Object a(java.lang.Object,int,boolean) +com.xw.repo.bubbleseekbar.R$attr: int actionModePasteDrawable +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: java.util.List textBlocItems +androidx.viewpager2.R$id: int accessibility_custom_action_28 +wangdaye.com.geometricweather.location.services.LocationService: boolean hasPermissions(android.content.Context) +io.reactivex.internal.subscriptions.BasicIntQueueSubscription +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void dispose() +okhttp3.OkHttpClient: javax.net.SocketFactory socketFactory +androidx.appcompat.resources.R$dimen: int notification_right_side_padding_top +com.google.android.material.R$attr: int itemBackground +cyanogenmod.weather.WeatherLocation: int hashCode() +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void setDisposable(io.reactivex.disposables.Disposable) +androidx.preference.R$id: int action_mode_bar_stub +com.google.android.material.R$drawable: int mtrl_tabs_default_indicator +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderQuery +okhttp3.internal.tls.OkHostnameVerifier: java.util.List getSubjectAltNames(java.security.cert.X509Certificate,int) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextColor +cyanogenmod.hardware.ICMHardwareService: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) +androidx.hilt.lifecycle.R$drawable: int notification_bg_low_normal +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_android_windowAnimationStyle +com.google.android.material.R$style: int Base_Widget_MaterialComponents_CheckedTextView +android.didikee.donate.R$id: int search_edit_frame +androidx.constraintlayout.widget.R$attr: int arrowHeadLength +cyanogenmod.hardware.DisplayMode: DisplayMode(android.os.Parcel,cyanogenmod.hardware.DisplayMode$1) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric +androidx.lifecycle.extensions.R +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours Past12Hours +com.google.android.material.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +androidx.vectordrawable.R$id: int accessibility_custom_action_16 +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCloudCover(java.lang.Integer) +com.tencent.bugly.crashreport.common.info.a: java.lang.String i() +com.google.android.material.slider.RangeSlider: void setMinSeparation(float) +wangdaye.com.geometricweather.R$xml: R$xml() +wangdaye.com.geometricweather.R$styleable: int Layout_chainUseRtl +androidx.appcompat.R$id: int action_bar_activity_content +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +androidx.preference.R$styleable: int[] View +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: android.os.IBinder mRemote +cyanogenmod.themes.ThemeManager$1$2 +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog +cyanogenmod.hardware.CMHardwareManager: int[] getDisplayGammaCalibration(int) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_height +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_ttcIndex +com.turingtechnologies.materialscrollbar.R$attr: int titleMarginEnd +androidx.constraintlayout.widget.R$attr: int actionBarWidgetTheme +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_orderInCategory +retrofit2.RequestFactory$Builder: retrofit2.RequestFactory build() +androidx.preference.R$string: int abc_action_bar_up_description +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String getX() +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_4 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listDividerAlertDialog +okhttp3.logging.HttpLoggingInterceptor +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_radius +com.google.android.material.R$style: int ShapeAppearanceOverlay_DifferentCornerSize +androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet) +okhttp3.internal.cache.DiskLruCache$Snapshot: okio.Source[] sources +wangdaye.com.geometricweather.R$attr: int counterTextColor +cyanogenmod.externalviews.KeyguardExternalView: void onLockscreenSlideOffsetChanged(float) +com.google.android.material.R$attr: int suffixTextAppearance +com.turingtechnologies.materialscrollbar.R$id: int screen +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial +com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_icon_width +wangdaye.com.geometricweather.R$attr: int allowDividerBelow +com.google.android.material.R$attr: int chipIconTint +retrofit2.RequestBuilder: void canonicalizeForPath(okio.Buffer,java.lang.String,int,int,boolean) +androidx.preference.R$id: int accessibility_custom_action_22 +com.jaredrummler.android.colorpicker.R$style: int Base_V28_Theme_AppCompat_Light +androidx.transition.R$drawable +android.support.v4.app.RemoteActionCompatParcelizer: androidx.core.app.RemoteActionCompat read(androidx.versionedparcelable.VersionedParcel) +com.xw.repo.bubbleseekbar.R$id: int expand_activities_button +androidx.constraintlayout.widget.R$id: int textSpacerNoTitle +com.amap.api.location.AMapLocation: int getConScenario() +androidx.preference.R$dimen: int notification_subtext_size +androidx.appcompat.R$styleable: int SwitchCompat_switchMinWidth +com.google.android.material.R$dimen: int mtrl_calendar_action_padding +androidx.core.R$styleable: int GradientColor_android_tileMode +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListMenuView +androidx.appcompat.app.WindowDecorActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +androidx.appcompat.R$style: int Widget_AppCompat_Spinner_Underlined +com.xw.repo.bubbleseekbar.R$attr: int keylines +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Body2 +james.adaptiveicon.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_SHOW_BATTERY_PERCENT +okio.GzipSource: byte SECTION_BODY +com.amap.api.location.AMapLocation: int getErrorCode() +okhttp3.internal.http1.Http1Codec: void finishRequest() +androidx.vectordrawable.animated.R$layout +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTomorrowForecastUpdateService +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: int Degrees +james.adaptiveicon.R$attr: int voiceIcon +wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_id +okhttp3.HttpUrl: java.lang.String encodedFragment() +okhttp3.Cache: java.util.Iterator urls() +cyanogenmod.weather.IWeatherServiceProviderChangeListener: void onWeatherServiceProviderChanged(java.lang.String) +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherText +io.reactivex.internal.observers.DeferredScalarDisposable: boolean isDisposed() +wangdaye.com.geometricweather.common.basic.models.weather.History: java.util.Date date +james.adaptiveicon.R$drawable: int abc_cab_background_top_material +wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_dark +wangdaye.com.geometricweather.R$xml: int perference_notification_color +android.didikee.donate.R$id: int showHome +com.xw.repo.bubbleseekbar.R$attr: int colorPrimary +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: ObservableConcatMapEager$ConcatMapEagerMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,int,io.reactivex.internal.util.ErrorMode) +com.bumptech.glide.R$id: int action_container +androidx.preference.R$dimen: int abc_dialog_corner_radius_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: java.lang.String Unit +com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRealFeelTemperature james.adaptiveicon.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -androidx.coordinatorlayout.R$id: int none -wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_singleSelection -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noStore() -com.xw.repo.bubbleseekbar.R$string -androidx.preference.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -okhttp3.internal.cache.InternalCache -wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_title -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Light -com.amap.api.location.AMapLocation: boolean isOffset() -retrofit2.OkHttpCall: OkHttpCall(retrofit2.RequestFactory,java.lang.Object[],okhttp3.Call$Factory,retrofit2.Converter) -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.util.List Summaries -androidx.preference.R$styleable: int AppCompatTextView_textAllCaps -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeContainer -androidx.customview.R$attr -androidx.appcompat.R$dimen: int abc_action_bar_subtitle_top_margin_material -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: boolean equals(java.lang.Object) -retrofit2.ParameterHandler$QueryName -androidx.constraintlayout.widget.R$attr: int layout_optimizationLevel -io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: java.lang.String MESSAGE -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplBase -wangdaye.com.geometricweather.R$attr: int hideMotionSpec -wangdaye.com.geometricweather.R$array: int widget_card_style_values -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_fromId -okhttp3.Address: java.net.ProxySelector proxySelector() -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void remove(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) -com.google.android.material.transformation.ExpandableBehavior: ExpandableBehavior() -com.google.android.material.R$styleable: int FloatingActionButton_showMotionSpec -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyTopRight -cyanogenmod.externalviews.KeyguardExternalView$2: cyanogenmod.externalviews.KeyguardExternalView this$0 -com.google.android.material.R$color: int material_on_background_emphasis_high_type -wangdaye.com.geometricweather.R$id: int dialog_background_location_setButton -androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderCerts -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitleTextAppearance -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -androidx.transition.R$style: int Widget_Compat_NotificationActionContainer -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier -android.didikee.donate.R$dimen: int abc_control_padding_material -androidx.constraintlayout.widget.R$attr: int tint -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: void onFinish(boolean) -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type RIGHT -android.didikee.donate.R$attr: int customNavigationLayout -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_COLOR_VALIDATOR -com.amap.api.location.AMapLocation: int s -androidx.appcompat.R$style -com.jaredrummler.android.colorpicker.R$styleable: int[] AlertDialog -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_dialogType -com.turingtechnologies.materialscrollbar.R$drawable: int abc_popup_background_mtrl_mult -okio.RealBufferedSink: okio.BufferedSink writeLong(long) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_37 -com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrimResource(int) -androidx.preference.R$styleable: int AppCompatTheme_listPopupWindowStyle -androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_end -androidx.hilt.R$id: int notification_background -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory createWithScheduler(io.reactivex.Scheduler) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_Toolbar -android.didikee.donate.R$style: int Widget_AppCompat_Light_ListPopupWindow -androidx.appcompat.widget.ActivityChooserView: void setExpandActivityOverflowButtonContentDescription(int) -com.turingtechnologies.materialscrollbar.R$color: int cardview_shadow_start_color -com.google.android.material.R$styleable: int MaterialTextAppearance_android_lineHeight -com.google.android.material.R$styleable: int KeyTimeCycle_wavePeriod -com.amap.api.location.AMapLocation: java.lang.String i -wangdaye.com.geometricweather.R$styleable: int Chip_chipStartPadding -com.turingtechnologies.materialscrollbar.R$attr: int msb_scrollMode -com.google.android.material.R$styleable: int MaterialButton_iconTint -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Inverse -retrofit2.CallAdapter$Factory: CallAdapter$Factory() -com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding -com.jaredrummler.android.colorpicker.R$attr: int actionBarSize -com.jaredrummler.android.colorpicker.R$attr: int actionModePasteDrawable -com.github.rahatarmanahmed.cpv.CircularProgressView$2: CircularProgressView$2(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -com.google.android.material.R$styleable: int Constraint_layout_constraintRight_creator -cyanogenmod.weather.WeatherInfo: double access$1202(cyanogenmod.weather.WeatherInfo,double) -okhttp3.internal.http.HttpCodec: int DISCARD_STREAM_TIMEOUT_MILLIS -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: ObservableTimeout$TimeoutObserver(io.reactivex.Observer,io.reactivex.functions.Function) -io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.Observer) -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_left_mtrl_dark -cyanogenmod.externalviews.KeyguardExternalViewProviderService: KeyguardExternalViewProviderService() -james.adaptiveicon.R$bool -com.turingtechnologies.materialscrollbar.R$attr: int titleEnabled -androidx.appcompat.R$anim: int abc_grow_fade_in_from_bottom -wangdaye.com.geometricweather.R$string: int settings_title_precipitation_unit -com.google.android.material.R$drawable: int abc_btn_check_material_anim -androidx.preference.R$attr: int titleTextColor -okio.ByteString: boolean startsWith(okio.ByteString) -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks -androidx.constraintlayout.widget.R$drawable: int abc_ic_arrow_drop_right_black_24dp -okio.RealBufferedSource: byte[] readByteArray(long) -androidx.fragment.R$styleable: int GradientColor_android_endY -androidx.constraintlayout.widget.R$styleable: int ActivityChooserView_initialActivityCount -com.google.android.material.R$attr: int listPreferredItemHeightSmall -com.tencent.bugly.proguard.d: d() -com.google.android.material.textfield.TextInputLayout: void setErrorIconOnClickListener(android.view.View$OnClickListener) -wangdaye.com.geometricweather.R$style: int Base_V28_Theme_AppCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean names -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -okhttp3.internal.http2.Http2Connection$7: okhttp3.internal.http2.Http2Connection this$0 -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMode -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_height -com.google.android.material.R$color: int secondary_text_default_material_light -android.didikee.donate.R$styleable: int MenuGroup_android_id -com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_elevation -wangdaye.com.geometricweather.main.fragments.ManagementFragment -com.turingtechnologies.materialscrollbar.R$attr: int behavior_autoHide -okhttp3.internal.http2.Hpack$Writer: int evictToRecoverBytes(int) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf -io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicReference upstream -com.bumptech.glide.integration.okhttp.R$layout: int notification_action -com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorColor -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult -wangdaye.com.geometricweather.R$styleable: int[] KeyTrigger -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -cyanogenmod.externalviews.ExternalView: android.content.Context mContext -com.google.android.material.R$dimen: int material_clock_display_padding -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_COLOR_ADJUSTMENT_VALIDATOR -androidx.customview.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_primary -cyanogenmod.weatherservice.WeatherProviderService$1: void cancelOngoingRequests() -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_type -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display4 +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_fabCustomSize +androidx.customview.R$style: int TextAppearance_Compat_Notification_Time +com.google.android.material.R$styleable: int CustomAttribute_customBoolean +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_dither +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast build() +androidx.lifecycle.extensions.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.R$attr: int region_heightLessThan +androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnDestroy() +com.xw.repo.bubbleseekbar.R$dimen: int abc_button_padding_vertical_material +com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_indicator_material +androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingEnd +wangdaye.com.geometricweather.R$id: int notification_big_temp_3 +james.adaptiveicon.R$color: int secondary_text_default_material_light +androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context) +retrofit2.Retrofit: retrofit2.Retrofit$Builder newBuilder() +wangdaye.com.geometricweather.R$string: int abc_searchview_description_query +cyanogenmod.weather.RequestInfo: java.lang.String access$802(cyanogenmod.weather.RequestInfo,java.lang.String) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onSearchRequested() +androidx.appcompat.widget.AppCompatSpinner: void setPopupBackgroundResource(int) +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_elevation_material +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabView +androidx.appcompat.widget.SwitchCompat: boolean getSplitTrack() +wangdaye.com.geometricweather.R$integer: int config_tooltipAnimTime +wangdaye.com.geometricweather.common.basic.models.weather.History: int getDaytimeTemperature() +com.jaredrummler.android.colorpicker.R$layout +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport parent +wangdaye.com.geometricweather.R$attr: int colorPrimary +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: java.lang.Object poll() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf +cyanogenmod.app.LiveLockScreenInfo: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$array: int widget_text_colors +com.google.android.material.R$id: int design_menu_item_action_area_stub +com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.c a(int,android.content.Context,boolean,com.tencent.bugly.BuglyStrategy$a,com.tencent.bugly.proguard.o,java.lang.String) +androidx.appcompat.widget.SearchView: void setQueryRefinementEnabled(boolean) +wangdaye.com.geometricweather.common.ui.activities.AlertActivity: AlertActivity() +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintEnd_toStartOf +androidx.preference.PreferenceGroup +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_min_width +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.R$color: int ripple_material_light +android.didikee.donate.R$styleable: int AppCompatTheme_activityChooserViewStyle +okhttp3.MultipartBody: okhttp3.MediaType type() +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$Adapter getAdapter() +com.google.android.material.R$id: int search_edit_frame +com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding QUALITY +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_variablePadding +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgressColor(int) +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_subtitle +androidx.appcompat.R$styleable: int[] Spinner +com.tencent.bugly.proguard.ah: java.lang.String e +retrofit2.BuiltInConverters$ToStringConverter: java.lang.Object convert(java.lang.Object) +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,int) +okhttp3.internal.http2.Http2Connection$Builder: okio.BufferedSink sink +cyanogenmod.power.PerformanceManagerInternal: void cpuBoost(int) +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String weatherText +com.turingtechnologies.materialscrollbar.R$styleable: int View_theme +com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getRippleColorStateList() +androidx.appcompat.R$id: int activity_chooser_view_content +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xms +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.ObservableSource fallback +wangdaye.com.geometricweather.R$attr: int layoutDescription +james.adaptiveicon.R$drawable: int notify_panel_notification_icon_bg +cyanogenmod.profiles.LockSettings: void writeXmlString(java.lang.StringBuilder,android.content.Context) +cyanogenmod.profiles.AirplaneModeSettings$1: cyanogenmod.profiles.AirplaneModeSettings[] newArray(int) +com.amap.api.fence.GeoFence: int k +okhttp3.Response: Response(okhttp3.Response$Builder) +com.xw.repo.bubbleseekbar.R$color: int material_grey_600 +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_light +com.turingtechnologies.materialscrollbar.R$attr: int chipIconTint +wangdaye.com.geometricweather.R$id: int item_weather_icon_image +okio.Buffer: okio.Buffer writeTo(java.io.OutputStream,long) +androidx.appcompat.resources.R$id: int line3 +wangdaye.com.geometricweather.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +com.bumptech.glide.R$id: int blocking +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_enter +androidx.preference.R$style: int PreferenceFragment_Material +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_colorPresets +com.google.android.material.R$color: int primary_material_dark +wangdaye.com.geometricweather.R$bool: int workmanager_test_configuration +com.turingtechnologies.materialscrollbar.R$id: int progress_horizontal +cyanogenmod.app.ICustomTileListener$Stub +okio.AsyncTimeout: long IDLE_TIMEOUT_MILLIS +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: int UnitType +okhttp3.HttpUrl: java.util.List percentDecode(java.util.List,boolean) +okhttp3.internal.http.RealInterceptorChain: int readTimeoutMillis() +androidx.constraintlayout.widget.R$id: int action_menu_presenter +james.adaptiveicon.R$styleable: int AppCompatTheme_panelBackground +androidx.constraintlayout.widget.R$id: int search_bar +com.jaredrummler.android.colorpicker.R$style: int PreferenceFragment_Material +com.google.android.material.R$drawable: int abc_btn_check_material +james.adaptiveicon.R$styleable: int MenuItem_numericModifiers +io.reactivex.internal.observers.DeferredScalarDisposable: int DISPOSED +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +cyanogenmod.app.ICustomTileListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +cyanogenmod.app.ProfileGroup: java.lang.String mName +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_orderInCategory +wangdaye.com.geometricweather.R$attr: int bsb_always_show_bubble_delay +com.google.android.material.R$styleable: int ImageFilterView_contrast +com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.R$styleable: int ActionMode_height +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xmr +cyanogenmod.themes.ThemeChangeRequest +com.google.android.material.R$attr: int chipBackgroundColor +com.google.android.material.R$dimen: int material_cursor_inset_top +android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_cancelAll +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_switchTextOff +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_right_mtrl_light +wangdaye.com.geometricweather.R$array: int duration_units +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider BAIDU +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: long serialVersionUID +androidx.preference.R$attr: int overlapAnchor +com.google.gson.FieldNamingPolicy$3 +androidx.constraintlayout.widget.R$attr: int layout +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Name +wangdaye.com.geometricweather.R$integer: int design_snackbar_text_max_lines +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: int sourceMode +androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_default +okhttp3.internal.cache.CacheInterceptor$1: boolean cacheRequestClosed +androidx.preference.R$dimen: int compat_button_inset_vertical_material +com.tencent.bugly.proguard.u: android.content.Context d +wangdaye.com.geometricweather.R$string: int key_text_size +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets +com.google.android.material.R$styleable: int ShapeableImageView_strokeColor +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_left_mtrl_light +androidx.constraintlayout.widget.R$styleable: int[] ViewStubCompat +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.R$styleable: int ActionBar_subtitleTextStyle +okio.AsyncTimeout +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +androidx.fragment.R$style +androidx.preference.R$attr: int fontProviderPackage +androidx.customview.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float thunderstormPrecipitationProbability +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_divider +androidx.dynamicanimation.R$styleable: int GradientColor_android_tileMode +androidx.appcompat.R$style: int Widget_AppCompat_Light_SearchView +io.reactivex.Observable: io.reactivex.Completable switchMapCompletableDelayError(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$attr: int dividerPadding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setLogo(java.lang.String) +okhttp3.internal.http2.Settings: void clear() +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +com.google.android.material.slider.Slider: void setTrackHeight(int) +wangdaye.com.geometricweather.R$layout: int item_weather_daily_air +com.jaredrummler.android.colorpicker.R$dimen: int abc_disabled_alpha_material_light +wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_top_start +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox +com.turingtechnologies.materialscrollbar.R$attr: int checkboxStyle +com.tencent.bugly.proguard.y$a +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startX +com.amap.api.location.AMapLocation: boolean a(com.amap.api.location.AMapLocation,boolean) +com.google.android.material.R$attr: int minTouchTargetSize +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Tooltip +androidx.core.R$dimen: int compat_button_padding_horizontal_material +okio.DeflaterSink: void close() +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Call delegate +com.google.android.material.chip.Chip: float getChipCornerRadius() +com.google.android.material.R$interpolator: R$interpolator() +com.google.android.material.R$styleable: int KeyPosition_percentX +androidx.appcompat.widget.AppCompatButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +com.turingtechnologies.materialscrollbar.R$id: int action_bar_container +wangdaye.com.geometricweather.R$drawable: int avd_hide_password +androidx.preference.R$attr: int textAllCaps +androidx.preference.R$styleable: int AppCompatTheme_windowMinWidthMinor +wangdaye.com.geometricweather.db.entities.DailyEntity: DailyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.util.Date,java.util.Date,java.util.Date,java.util.Date,java.lang.Integer,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,float) +com.google.android.material.slider.BaseSlider: float getMinSeparation() +androidx.preference.R$styleable: int[] SeekBarPreference +com.turingtechnologies.materialscrollbar.R$style: int Base_V28_Theme_AppCompat_Light +okhttp3.HttpUrl: java.util.List queryNamesAndValues +androidx.preference.R$dimen: int abc_text_size_display_1_material +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$attr: int spanCount +okio.Timeout: long deadlineNanoTime +com.tencent.bugly.proguard.an: long e +wangdaye.com.geometricweather.R$color: int primary_text_disabled_material_dark +com.baidu.location.e.p +androidx.preference.R$color: int background_floating_material_light +wangdaye.com.geometricweather.R$style: int TestStyleWithLineHeightAppearance +androidx.preference.R$dimen: int hint_pressed_alpha_material_light +retrofit2.Retrofit$Builder: Retrofit$Builder(retrofit2.Platform) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: long serialVersionUID +androidx.lifecycle.ComputableLiveData$2: ComputableLiveData$2(androidx.lifecycle.ComputableLiveData) +androidx.work.impl.WorkManagerInitializer: WorkManagerInitializer() +com.github.rahatarmanahmed.cpv.CircularProgressView$4: void onAnimationUpdate(android.animation.ValueAnimator) +androidx.appcompat.app.WindowDecorActionBar +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getWeatherText() +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_insetLeft +com.xw.repo.bubbleseekbar.R$attr: int listMenuViewStyle com.tencent.bugly.crashreport.common.info.a: long r -com.bumptech.glide.integration.okhttp.R$attr: int layout_insetEdge -james.adaptiveicon.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.R$id: int item_details_content -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object readEntity(android.database.Cursor,int) -wangdaye.com.geometricweather.R$dimen: int design_textinput_caption_translate_y -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemTextColor -okhttp3.Cookie: java.lang.String path() -io.reactivex.internal.disposables.DisposableHelper: boolean validate(io.reactivex.disposables.Disposable,io.reactivex.disposables.Disposable) -androidx.viewpager2.R$dimen: int compat_button_padding_vertical_material -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dark -wangdaye.com.geometricweather.R$styleable: int[] PreferenceFragment -retrofit2.Utils: java.lang.String typeToString(java.lang.reflect.Type) -james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_TabBar -androidx.preference.R$styleable: int ActionBar_contentInsetEndWithActions -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getLtoDestination() -io.reactivex.internal.schedulers.RxThreadFactory: java.lang.Thread newThread(java.lang.Runnable) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitationDuration() -androidx.appcompat.R$dimen: int highlight_alpha_material_dark -com.tencent.bugly.crashreport.crash.e -com.tencent.bugly.crashreport.crash.h5.a: java.lang.String d -androidx.constraintlayout.widget.R$styleable: int Constraint_android_alpha -androidx.legacy.coreutils.R$dimen: int notification_big_circle_margin -android.didikee.donate.R$styleable: int MenuView_android_verticalDivider -androidx.preference.R$style: int Base_Theme_AppCompat_CompactMenu -androidx.preference.R$style: int Base_V26_Theme_AppCompat -wangdaye.com.geometricweather.R$attr: int displayOptions -okhttp3.internal.cache.DiskLruCache$Snapshot: okio.Source getSource(int) -com.tencent.bugly.crashreport.common.info.a: java.lang.String h -okhttp3.Cookie: boolean persistent() -wangdaye.com.geometricweather.common.basic.models.weather.UV -androidx.dynamicanimation.R$id: int async -wangdaye.com.geometricweather.R$attr: int tickVisible -androidx.appcompat.R$attr: int closeIcon -com.turingtechnologies.materialscrollbar.R$attr: int layout_scrollFlags -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: AMapLocationClientOption$AMapLocationProtocol(java.lang.String,int,int) -okhttp3.RealCall$AsyncCall: void executeOn(java.util.concurrent.ExecutorService) -wangdaye.com.geometricweather.R$layout: int activity_allergen -wangdaye.com.geometricweather.R$attr: int contentInsetLeft -okhttp3.internal.platform.ConscryptPlatform -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day -androidx.appcompat.R$style: int Widget_AppCompat_TextView -com.tencent.bugly.proguard.u: java.util.concurrent.LinkedBlockingQueue i -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_id -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeRealFeelShaderTemperature -james.adaptiveicon.R$styleable: int Toolbar_contentInsetEnd -wangdaye.com.geometricweather.R$drawable: int notif_temp_33 -androidx.work.R$styleable: int GradientColor_android_tileMode -com.xw.repo.bubbleseekbar.R$attr: int titleTextAppearance -wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_horizontal_material -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Inverse -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_end -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWeatherText(java.lang.String) -james.adaptiveicon.R$attr: int singleChoiceItemLayout -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.crashreport.crash.a b(android.database.Cursor) -wangdaye.com.geometricweather.R$drawable: int weather_snow_pixel -android.didikee.donate.R$attr: int textAppearanceSearchResultSubtitle -com.google.android.material.R$styleable: int KeyCycle_android_translationY -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -wangdaye.com.geometricweather.R$id: int easeInOut -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_off_mtrl_alpha -wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_vertical -wangdaye.com.geometricweather.R$layout: int widget_clock_day_vertical -com.google.android.material.R$styleable: int Constraint_layout_constraintEnd_toEndOf -com.xw.repo.bubbleseekbar.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setCityId(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabTextStyle -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_CBC_SHA256 +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_size +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isSnow() +androidx.constraintlayout.widget.R$attr: int triggerSlack +okhttp3.HttpUrl$Builder: void pop() +android.didikee.donate.R$id: int beginning +okhttp3.CertificatePinner$Builder: okhttp3.CertificatePinner build() +com.turingtechnologies.materialscrollbar.R$layout: int design_bottom_sheet_dialog +wangdaye.com.geometricweather.R$style: int Widget_Compat_NotificationActionText +androidx.constraintlayout.widget.R$attr: int listPreferredItemHeight +androidx.appcompat.widget.MenuPopupWindow +wangdaye.com.geometricweather.db.entities.WeatherEntity: long getTimeStamp() +android.didikee.donate.R$attr: int textAppearanceListItemSmall +wangdaye.com.geometricweather.R$style: int Theme_Design_NoActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd +androidx.constraintlayout.widget.R$attr: int mock_showDiagonals +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitationProbability +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_horizontal_padding +com.autonavi.aps.amapapi.model.AMapLocationServer: void a(java.lang.String) +okhttp3.Cache: int networkCount +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_CompactMenu +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabView +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ButtonBar +com.google.android.material.R$styleable: int AppCompatTheme_borderlessButtonStyle +androidx.constraintlayout.widget.R$styleable: int[] StateListDrawable +cyanogenmod.power.PerformanceManagerInternal: void activityResumed(android.content.Intent) +com.google.android.material.R$style: int Base_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.R$string: int expand_button_title +androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_toBottomOf +okhttp3.Response$Builder: okhttp3.Response$Builder request(okhttp3.Request) +retrofit2.RequestBuilder +wangdaye.com.geometricweather.R$id: int notification_big_week_3 +androidx.appcompat.R$dimen: int tooltip_precise_anchor_extra_offset +wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_hovered_alpha +wangdaye.com.geometricweather.R$drawable: int abc_textfield_default_mtrl_alpha +wangdaye.com.geometricweather.R$attr: int switchMinWidth +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: boolean cancelled +io.reactivex.internal.schedulers.ScheduledRunnable: long serialVersionUID +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onComplete() +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addFormDataPart(java.lang.String,java.lang.String) +cyanogenmod.weather.WeatherInfo$DayForecast$1: cyanogenmod.weather.WeatherInfo$DayForecast[] newArray(int) +com.google.android.material.appbar.HeaderScrollingViewBehavior: HeaderScrollingViewBehavior() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String value +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemBackground(int) +wangdaye.com.geometricweather.R$styleable: int SearchView_queryHint +androidx.transition.R$id: int line1 +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter nighttimeWindDegreeConverter +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabBarStyle +com.google.android.material.circularreveal.CircularRevealFrameLayout: void setCircularRevealScrimColor(int) +com.google.android.material.R$styleable: int ConstraintSet_barrierDirection +okhttp3.internal.http.CallServerInterceptor +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver +com.google.android.material.R$animator: int mtrl_fab_transformation_sheet_expand_spec +wangdaye.com.geometricweather.R$id: int item_about_library +io.reactivex.Observable: io.reactivex.Observable switchOnNextDelayError(io.reactivex.ObservableSource) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display1 +com.tencent.bugly.crashreport.common.info.a: java.util.Map F() +com.xw.repo.bubbleseekbar.R$id: int italic +androidx.constraintlayout.widget.R$string: int abc_capital_off +okhttp3.Interceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +androidx.constraintlayout.widget.R$attr: int backgroundSplit +com.google.android.gms.base.R$drawable: int googleg_standard_color_18 +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_DarkActionBar +com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_900 +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidth(int) +wangdaye.com.geometricweather.db.entities.WeatherEntity: long getUpdateTime() +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder dns(okhttp3.Dns) +com.tencent.bugly.crashreport.crash.c: java.lang.String j +wangdaye.com.geometricweather.R$styleable: int[] ChipGroup +cyanogenmod.app.ProfileGroup: void setLightsMode(cyanogenmod.app.ProfileGroup$Mode) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerX +androidx.constraintlayout.widget.R$attr: int flow_firstHorizontalStyle +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property CityId +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setDeviceModeDistanceFilter(float) +io.reactivex.Observable: io.reactivex.Observable repeat(long) +okio.GzipSink +com.google.android.material.chip.Chip: void setChipStartPadding(float) +com.turingtechnologies.materialscrollbar.R$attr: int showMotionSpec +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_enterFadeDuration +androidx.hilt.R$string: R$string() +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeight +cyanogenmod.providers.CMSettings$3 +retrofit2.Retrofit: retrofit2.CallAdapter callAdapter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) +androidx.preference.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.lang.Object invoke(java.lang.Object,java.lang.reflect.Method,java.lang.Object[]) +com.google.android.material.bottomappbar.BottomAppBar: void setTitle(java.lang.CharSequence) +com.bumptech.glide.integration.okhttp.R$attr: int layout_anchorGravity +com.google.android.material.R$styleable: int[] MenuView +okhttp3.internal.ws.RealWebSocket$Message: RealWebSocket$Message(int,okio.ByteString) +com.google.android.material.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.legacy.coreutils.R$attr: int alpha +androidx.viewpager.R$color +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onSubscribe(org.reactivestreams.Subscription) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: int leftIndex +james.adaptiveicon.R$color: int abc_primary_text_disable_only_material_light +com.google.android.material.navigation.NavigationView: void setCheckedItem(android.view.MenuItem) +androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_android_background +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SeekBar +com.google.android.material.R$drawable: int material_ic_menu_arrow_down_black_24dp +cyanogenmod.providers.CMSettings$Secure: java.lang.String FEATURE_TOUCH_HOVERING +com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getPasswordVisibilityToggleDrawable() +wangdaye.com.geometricweather.R$layout: int fragment_main +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Headline +com.turingtechnologies.materialscrollbar.R$attr: int switchTextAppearance +android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode[] values() +com.google.android.material.R$style: int Base_V22_Theme_AppCompat_Light androidx.vectordrawable.R$drawable: R$drawable() -com.google.android.material.R$styleable: int KeyAttribute_android_rotationY -androidx.preference.R$styleable: int AppCompatTheme_checkedTextViewStyle -com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: H5JavaScriptInterface() -androidx.dynamicanimation.R$dimen: int notification_big_circle_margin -androidx.fragment.R$styleable: int ColorStateListItem_android_alpha -androidx.coordinatorlayout.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit[] values() +com.google.android.material.R$styleable: int LinearLayoutCompat_android_gravity +wangdaye.com.geometricweather.R$string: int key_clock_font +wangdaye.com.geometricweather.R$string: int feedback_running_in_background +androidx.coordinatorlayout.R$string: int status_bar_notification_info_overflow +androidx.preference.R$drawable: int notification_template_icon_low_bg +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getRotation() +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,int) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText +androidx.constraintlayout.widget.R$id: int SHOW_PATH +wangdaye.com.geometricweather.R$layout: int dialog_location_help +com.xw.repo.bubbleseekbar.R$attr: int dropDownListViewStyle +james.adaptiveicon.R$styleable: int AlertDialog_android_layout +com.jaredrummler.android.colorpicker.R$attr: int elevation +com.turingtechnologies.materialscrollbar.R$color: int secondary_text_default_material_dark +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_dividerPadding +cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING +com.tencent.bugly.proguard.x: boolean c(java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.lang.String unit +com.xw.repo.BubbleSeekBar: void setProgress(float) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle +com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableItem +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: boolean equals(java.lang.Object) +com.amap.api.location.AMapLocationClientOption: boolean isOnceLocationLatest() +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_orientation +com.tencent.bugly.crashreport.crash.anr.b: void c(boolean) +androidx.appcompat.R$dimen: int hint_pressed_alpha_material_dark +androidx.preference.R$styleable: int AppCompatTheme_actionMenuTextAppearance +androidx.constraintlayout.widget.R$color: int material_grey_900 +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_layout_margin +androidx.constraintlayout.widget.R$anim: int abc_slide_out_top +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingTop +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacingVertical +okio.GzipSink: java.util.zip.CRC32 crc +retrofit2.HttpServiceMethod$CallAdapted: HttpServiceMethod$CallAdapted(retrofit2.RequestFactory,okhttp3.Call$Factory,retrofit2.Converter,retrofit2.CallAdapter) +androidx.work.R$drawable: int notification_bg_normal_pressed +androidx.appcompat.R$styleable: int AppCompatTheme_checkedTextViewStyle +okhttp3.logging.LoggingEventListener$Factory: okhttp3.logging.HttpLoggingInterceptor$Logger logger +com.google.android.material.R$attr: int onCross +androidx.hilt.lifecycle.R$style +okio.Timeout +wangdaye.com.geometricweather.R$attr: int iconSpaceReserved +wangdaye.com.geometricweather.R$dimen: int mtrl_fab_translation_z_hovered_focused +android.didikee.donate.R$styleable: int AlertDialog_buttonPanelSideLayout +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_label_cutout_padding +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_fontVariationSettings +okhttp3.internal.ws.WebSocketReader +okhttp3.Cache$Entry: java.lang.String message +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void cancel() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherText +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Co +androidx.appcompat.widget.ActivityChooserView: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityStarted(android.app.Activity) +com.turingtechnologies.materialscrollbar.R$styleable: int[] SearchView +androidx.core.R$id: int accessibility_custom_action_25 +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: java.util.concurrent.atomic.AtomicReference inner +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_DOCUMENT +com.google.android.material.R$id: int right +wangdaye.com.geometricweather.R$attr: int fontProviderCerts +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer RIGHT_CLOSE +androidx.constraintlayout.widget.ConstraintLayout: void setConstraintSet(androidx.constraintlayout.widget.ConstraintSet) +androidx.loader.R$integer: int status_bar_notification_info_maxnum +com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_horizontal_material +okhttp3.internal.http2.Http2: byte FLAG_END_PUSH_PROMISE +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$1: java.lang.Object invoke(java.lang.Object) +androidx.activity.R$layout: int custom_dialog +androidx.preference.R$styleable: int[] ListPreference +com.amap.api.location.AMapLocationClientOption$1: AMapLocationClientOption$1() +androidx.preference.R$string: int abc_menu_meta_shortcut_label +android.support.v4.app.INotificationSideChannel$Stub: android.support.v4.app.INotificationSideChannel getDefaultImpl() +retrofit2.Platform: Platform(boolean) +com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.ValueAnimator startAngleRotate +androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +okio.AsyncTimeout$2: okio.Timeout timeout() +androidx.lifecycle.ViewModelStore: java.util.HashMap mMap +com.jaredrummler.android.colorpicker.R$attr: int initialActivityCount +okhttp3.Callback: void onFailure(okhttp3.Call,java.io.IOException) +com.tencent.bugly.BuglyStrategy: boolean isEnableNativeCrashMonitor() +com.google.android.material.R$styleable: int ProgressIndicator_minHideDelay +james.adaptiveicon.R$id: int action_bar_spinner +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_120 +com.tencent.bugly.crashreport.common.info.a: java.lang.String P() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setValue(java.util.List) +cyanogenmod.app.Profile: java.util.Map profileGroups +androidx.hilt.lifecycle.R$attr: int fontStyle +androidx.core.R$id: int tag_accessibility_pane_title +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWindDirection +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index no2 +com.google.android.material.R$attr: int listMenuViewStyle +androidx.fragment.R$id: int right_icon +wangdaye.com.geometricweather.R$styleable: int SignInButton_scopeUris +androidx.constraintlayout.widget.R$style: R$style() +okio.Buffer: okio.Buffer writeUtf8(java.lang.String) +wangdaye.com.geometricweather.R$layout: int preference +com.google.android.material.R$style: int ShapeAppearanceOverlay_Cut +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: void clear() +com.google.android.material.R$dimen: int mtrl_snackbar_margin +com.tencent.bugly.crashreport.crash.c: void c() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +com.jaredrummler.android.colorpicker.R$attr: int autoSizePresetSizes +androidx.appcompat.widget.AppCompatImageButton: void setSupportImageTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text_size +com.google.android.material.datepicker.Month +androidx.coordinatorlayout.R$dimen: int notification_media_narrow_margin +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart +com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationZ(float) +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPreDestroyed(android.app.Activity) +wangdaye.com.geometricweather.R$id: int notification_big_icon_3 +cyanogenmod.weather.CMWeatherManager$2$2 +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitationProbability(java.lang.Float) +com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitationDuration() +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_height +com.tencent.bugly.crashreport.common.info.a: java.util.Map G() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBaseline_creator +okhttp3.internal.http2.Hpack$Reader +cyanogenmod.app.CMTelephonyManager: CMTelephonyManager(android.content.Context) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_DarkActionBar +androidx.hilt.work.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit FTPS +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_11 +com.tencent.bugly.crashreport.CrashReport: void closeCrashReport() +wangdaye.com.geometricweather.R$array: int air_quality_units +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton +cyanogenmod.themes.IThemeService$Stub$Proxy: boolean isThemeBeingProcessed(java.lang.String) +com.google.android.material.R$styleable: int Toolbar_navigationIcon +wangdaye.com.geometricweather.R$attr: int maxVelocity +wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetDailyEntityList() +com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_end_color +androidx.preference.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListPopupWindow +okhttp3.Cookie$Builder: Cookie$Builder() +cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(android.os.Parcel,cyanogenmod.app.CustomTile$1) +wangdaye.com.geometricweather.R$styleable: int Preference_android_iconSpaceReserved +com.google.android.material.R$style: int TextAppearance_AppCompat_Button +com.google.android.material.R$styleable: int Layout_layout_constraintStart_toStartOf +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ITALIAN +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit) +androidx.coordinatorlayout.R$attr: int layout_anchorGravity +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: void run() +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void request(long) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean done +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: java.lang.String textConsequence +cyanogenmod.themes.ThemeChangeRequest$1: java.lang.Object createFromParcel(android.os.Parcel) +com.turingtechnologies.materialscrollbar.R$attr: int showTitle +com.google.android.material.R$style: int Base_Widget_AppCompat_ActivityChooserView +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: CompletableFutureCallAdapterFactory$BodyCallAdapter(java.lang.reflect.Type) +androidx.recyclerview.widget.RecyclerView: void addOnItemTouchListener(androidx.recyclerview.widget.RecyclerView$OnItemTouchListener) +cyanogenmod.weatherservice.ServiceRequestResult$1: cyanogenmod.weatherservice.ServiceRequestResult[] newArray(int) +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontWeight +androidx.recyclerview.R$id: int accessibility_custom_action_9 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: AccuCurrentResult$RealFeelTemperature$Imperial() +androidx.viewpager2.R$id: int text2 +androidx.preference.R$styleable: int ColorStateListItem_alpha +com.xw.repo.bubbleseekbar.R$color: int ripple_material_dark +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveShape +com.google.gson.stream.JsonScope: int DANGLING_NAME +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: io.reactivex.internal.fuseable.SimpleQueue queue +james.adaptiveicon.R$styleable: int ActionBar_logo +james.adaptiveicon.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Small +androidx.preference.R$attr: int allowDividerBelow +wangdaye.com.geometricweather.R$attr: int bsb_bubble_text_color +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Today +wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean isEntityUpdateable() +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DailyForecast +androidx.work.R$id: int accessibility_custom_action_18 +androidx.appcompat.R$styleable: int AppCompatTheme_toolbarStyle +cyanogenmod.content.Intent: java.lang.String ACTION_THEME_REMOVED +com.tencent.bugly.proguard.c: java.util.HashMap d +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabStyle +com.amap.api.location.AMapLocation: int ERROR_CODE_AIRPLANEMODE_WIFIOFF +cyanogenmod.weather.WeatherLocation: java.lang.String access$202(cyanogenmod.weather.WeatherLocation,java.lang.String) +wangdaye.com.geometricweather.R$attr: int layout_collapseMode +james.adaptiveicon.R$anim +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setIcePrecipitationProbability(java.lang.Float) +com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_toId +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeAppearance +wangdaye.com.geometricweather.R$string: int key_background_free +wangdaye.com.geometricweather.db.entities.WeatherEntityDao +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_RINGTONES +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: void writeTo(okio.BufferedSink) +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onNext(retrofit2.Response) +okhttp3.internal.connection.ConnectInterceptor +androidx.constraintlayout.widget.R$attr: int lastBaselineToBottomHeight +com.google.android.material.R$attr: int paddingTopNoTitle +james.adaptiveicon.R$attr: int buttonBarStyle +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_135 +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: boolean isDisposed() +okhttp3.internal.http2.Http2Connection$1: okhttp3.internal.http2.Http2Connection this$0 +androidx.appcompat.R$style: int Widget_AppCompat_RatingBar +com.google.android.material.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogIcon +wangdaye.com.geometricweather.R$attr: int region_widthMoreThan +com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getSupportImageTintMode() +androidx.preference.R$attr: int actionBarSize +androidx.appcompat.widget.ActionBarContainer: void setPrimaryBackground(android.graphics.drawable.Drawable) +androidx.transition.R$attr: R$attr() +com.jaredrummler.android.colorpicker.R$styleable: int View_paddingEnd +com.google.android.material.R$styleable: int[] MaterialTextView +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void drain() +androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility +androidx.dynamicanimation.R$string +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motion_postLayoutCollision +androidx.customview.R$id: int icon_group +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver +androidx.hilt.R$id: int accessibility_custom_action_24 +com.google.android.material.R$attr: int tabMode +okhttp3.internal.http2.Hpack$Writer: void insertIntoDynamicTable(okhttp3.internal.http2.Header) +com.google.android.material.R$drawable: int abc_list_pressed_holo_dark +okio.BufferedSource: int select(okio.Options) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_menu_header_material +wangdaye.com.geometricweather.R$attr: int arc_angle +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: ObservableGroupJoin$GroupJoinDisposable(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_night_foreground +wangdaye.com.geometricweather.R$attr: int backgroundTint +androidx.drawerlayout.R$layout: int notification_action +com.turingtechnologies.materialscrollbar.R$attr: int foregroundInsidePadding +cyanogenmod.profiles.LockSettings: void setValue(int) +io.reactivex.Observable: java.lang.Iterable blockingMostRecent(java.lang.Object) +com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_PrimarySurface +androidx.work.R$color: int notification_action_color_filter +okhttp3.internal.connection.StreamAllocation$StreamAllocationReference +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_pixel +androidx.appcompat.R$styleable: int AppCompatImageView_tint +wangdaye.com.geometricweather.db.entities.LocationEntity: void setLongitude(float) +james.adaptiveicon.R$dimen: int abc_text_size_subtitle_material_toolbar +wangdaye.com.geometricweather.R$string: int feedback_enable_location_information +com.google.android.material.R$styleable: int ButtonBarLayout_allowStacking +okhttp3.Protocol +okhttp3.OkHttpClient: boolean retryOnConnectionFailure +okhttp3.MultipartBody: okhttp3.MediaType DIGEST +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_PopupMenu +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemTextAppearanceInactive +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_end +wangdaye.com.geometricweather.location.utils.LocationException +com.tencent.bugly.proguard.an: java.lang.String d +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_weightSum +cyanogenmod.weather.WeatherInfo: java.util.List mForecastList +wangdaye.com.geometricweather.R$string: int key_click_widget_to_refresh +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierMargin +okhttp3.Dns: okhttp3.Dns SYSTEM +retrofit2.KotlinExtensions: java.lang.Object suspendAndThrow(java.lang.Exception,kotlin.coroutines.Continuation) +org.greenrobot.greendao.AbstractDao: long insert(java.lang.Object) +wangdaye.com.geometricweather.R$id: int position +androidx.constraintlayout.widget.R$id: int checked +androidx.preference.R$style: int Base_Widget_AppCompat_Light_PopupMenu +androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModel get(java.lang.String,java.lang.Class) +androidx.appcompat.R$drawable: int notification_action_background +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_subtitle +okhttp3.RealCall: void cancel() +androidx.lifecycle.extensions.R$id: int action_text +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents +io.reactivex.Observable: io.reactivex.Observable scan(java.lang.Object,io.reactivex.functions.BiFunction) +wangdaye.com.geometricweather.R$attr: int constraintSet +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: AccuCurrentResult$PrecipitationSummary$PastHour$Imperial() +okio.Pipe: okio.Source source() +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_disabled_holo_light +io.reactivex.Observable: io.reactivex.Observable subscribeOn(io.reactivex.Scheduler) +com.bumptech.glide.Priority: com.bumptech.glide.Priority HIGH +com.turingtechnologies.materialscrollbar.R$attr: int alertDialogCenterButtons +wangdaye.com.geometricweather.R$id: int action_appStore +okhttp3.internal.connection.StreamAllocation: void cancel() +com.google.android.material.R$attr: int layout_constraintWidth_max +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: ObservableTimeout$TimeoutFallbackObserver(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.ObservableSource) +okhttp3.CertificatePinner: void check(java.lang.String,java.security.cert.Certificate[]) +wangdaye.com.geometricweather.R$id: int appBar +com.google.android.material.R$drawable: int abc_list_selector_disabled_holo_light +androidx.work.R$id: int accessibility_custom_action_1 +cyanogenmod.app.ProfileGroup$1: ProfileGroup$1() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.xw.repo.bubbleseekbar.R$id: int action_mode_close_button +androidx.appcompat.widget.SwitchCompat: int getSwitchPadding() +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableStartCompat +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getNestedScrollAxes() +com.xw.repo.bubbleseekbar.R$string: int abc_menu_function_shortcut_label +wangdaye.com.geometricweather.R$attr: int msb_scrollMode +james.adaptiveicon.R$drawable: int abc_spinner_mtrl_am_alpha +okhttp3.internal.http.HttpHeaders: java.lang.String readQuotedString(okio.Buffer) +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy APPEND +james.adaptiveicon.R$style: int Widget_AppCompat_Light_SearchView +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstVerticalStyle +com.turingtechnologies.materialscrollbar.R$id: int parallax +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxBackgroundColor +wangdaye.com.geometricweather.R$drawable: int notif_temp_72 +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_to_on_mtrl_015 +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabBackground +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontWeight +androidx.work.R$color: int notification_icon_bg_color +com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context) +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModePasteDrawable +com.tencent.bugly.crashreport.crash.anr.a: java.lang.String e +com.google.android.material.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxBackgroundMode +com.jaredrummler.android.colorpicker.R$attr: int backgroundTint +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircle +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_NoActionBar +james.adaptiveicon.R$styleable: int MenuItem_actionViewClass +com.google.android.material.R$styleable: int TextAppearance_android_shadowDx +okhttp3.HttpUrl: java.lang.String encodedUsername() +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: long index +androidx.recyclerview.R$id: int accessibility_custom_action_12 +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: MfHistoryResult$Position() +androidx.preference.R$styleable: int[] AppCompatTextView +okhttp3.internal.cache.DiskLruCache$2: okhttp3.internal.cache.DiskLruCache this$0 +io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier[] values() +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_switchTextOn +wangdaye.com.geometricweather.R$id: int moldTitle +androidx.dynamicanimation.R$id: int title +androidx.activity.ComponentActivity: ComponentActivity() +wangdaye.com.geometricweather.R$array: int weather_sources +wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_DropDownUp +okhttp3.internal.connection.StreamAllocation: okhttp3.Route route() +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ENABLE +androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context) +com.google.android.material.R$attr: int chipGroupStyle +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$height +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setStreet(java.lang.String) +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_divider_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_transformation_sheet_collapse_spec +okhttp3.Route: java.net.InetSocketAddress inetSocketAddress +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_queryHint +com.google.android.material.R$attr: int textEndPadding +androidx.preference.R$style: int Preference_SwitchPreference_Material +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixText +com.amap.api.location.AMapLocationClientOption: android.os.Parcelable$Creator CREATOR +com.google.android.material.chip.Chip +wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_night +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_shapeAppearanceOverlay +com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_title_material +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_gravity +com.jaredrummler.android.colorpicker.R$attr: int titleMarginBottom +retrofit2.Call: retrofit2.Response execute() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer LEFT_VALUE +com.amap.api.fence.GeoFenceClient: void addGeoFence(java.lang.String,java.lang.String) +com.google.android.material.slider.Slider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) +android.support.v4.graphics.drawable.IconCompatParcelizer +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: java.util.List getSuggestions(android.content.Intent) +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_ignoreBatteryOptBtn +com.xw.repo.bubbleseekbar.R$attr: int bsb_seek_step_section +wangdaye.com.geometricweather.R$style: int material_button +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitationDuration +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTheme +com.google.android.material.floatingactionbutton.FloatingActionButton: android.content.res.ColorStateList getBackgroundTintList() +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionBarLayout +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property Id +com.google.android.material.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_orderInCategory +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_subtitle_material_toolbar +com.google.android.material.R$dimen: int mtrl_navigation_elevation +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream getStream(int) +androidx.constraintlayout.widget.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.R$attr: int percentX +io.reactivex.Observable: void blockingForEach(io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.R$drawable: int material_ic_edit_black_24dp +cyanogenmod.themes.ThemeManager: long getLastThemeChangeTime() +androidx.hilt.work.R$dimen: int compat_notification_large_icon_max_width +okhttp3.internal.platform.ConscryptPlatform: okhttp3.internal.platform.ConscryptPlatform buildIfSupported() com.google.android.material.R$styleable: int[] AppCompatImageView -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -wangdaye.com.geometricweather.R$layout: int abc_cascading_menu_item_layout -androidx.activity.R$styleable: int[] GradientColorItem -com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusTopStart -james.adaptiveicon.R$attr: int title -james.adaptiveicon.R$dimen: int abc_text_size_subhead_material -wangdaye.com.geometricweather.R$anim: int fragment_manange_enter -androidx.preference.R$anim: int fragment_fast_out_extra_slow_in -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: int Rank -com.tencent.bugly.crashreport.inner.InnerApi -androidx.constraintlayout.widget.R$attr: int onCross -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSo2(java.lang.String) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onError(java.lang.Throwable) -androidx.activity.R$id: int notification_background -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_DropDown -io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: int UnitType -androidx.appcompat.R$string: int abc_searchview_description_clear -androidx.vectordrawable.R$id: int accessibility_custom_action_3 -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int OTHER_STATE_HAS_VALUE -androidx.fragment.R$styleable: int GradientColor_android_centerColor -cyanogenmod.weather.WeatherInfo: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$attr: int arcMode -wangdaye.com.geometricweather.common.basic.models.weather.Astro: Astro(java.util.Date,java.util.Date) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ButtonBar -androidx.appcompat.widget.SearchView: void setIconifiedByDefault(boolean) -androidx.dynamicanimation.R$styleable -wangdaye.com.geometricweather.R$layout: int item_about_header -cyanogenmod.weather.WeatherInfo: double getHumidity() -com.xw.repo.bubbleseekbar.R$style: int Base_V28_Theme_AppCompat_Light -android.support.v4.app.INotificationSideChannel: void cancel(java.lang.String,int,java.lang.String) -wangdaye.com.geometricweather.R$string: int of_clock -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerY -androidx.vectordrawable.animated.R$integer: R$integer() -androidx.cardview.R$styleable: int CardView_contentPaddingRight -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String findMostSpecific(java.lang.String) -androidx.recyclerview.widget.RecyclerView$LayoutManager: RecyclerView$LayoutManager() -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_progressBarPadding -androidx.preference.R$attr: int drawerArrowStyle -okhttp3.Cache$CacheRequestImpl$1: Cache$CacheRequestImpl$1(okhttp3.Cache$CacheRequestImpl,okio.Sink,okhttp3.Cache,okhttp3.internal.cache.DiskLruCache$Editor) -androidx.preference.R$style: int Base_V7_Widget_AppCompat_Toolbar -com.xw.repo.bubbleseekbar.R$color: int secondary_text_default_material_light -okhttp3.TlsVersion: java.util.List forJavaNames(java.lang.String[]) -com.google.android.material.R$animator: int design_fab_show_motion_spec -okhttp3.internal.Util$2: boolean val$daemon -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.functions.Function mapper -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf -wangdaye.com.geometricweather.db.entities.HistoryEntity: int getNighttimeTemperature() -cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.AppSuggestManager sInstance -cyanogenmod.weather.WeatherInfo$DayForecast: double mHigh -androidx.constraintlayout.widget.R$color: int switch_thumb_disabled_material_light -com.google.android.material.R$attr: int chipStrokeColor -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$b: boolean a(long,long,java.lang.String) -wangdaye.com.geometricweather.R$array: int notification_text_colors -com.xw.repo.bubbleseekbar.R$drawable: int abc_tab_indicator_mtrl_alpha -com.amap.api.location.AMapLocationClientOption: boolean n -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar -com.google.android.material.R$styleable: int OnSwipe_limitBoundsTo -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotationX -wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_colored_item_tint -androidx.constraintlayout.utils.widget.ImageFilterButton: void setWarmth(float) -com.google.android.material.R$style: int ThemeOverlay_AppCompat_Light -com.jaredrummler.android.colorpicker.R$id: int search_voice_btn -james.adaptiveicon.R$attr: int searchViewStyle -wangdaye.com.geometricweather.R$styleable: int[] ActionMenuItemView -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textSize -com.github.rahatarmanahmed.cpv.CircularProgressView: int animSteps -androidx.recyclerview.R$attr: int fastScrollHorizontalTrackDrawable -wangdaye.com.geometricweather.R$attr: int horizontalOffset -androidx.appcompat.R$styleable: int MenuView_android_itemIconDisabledAlpha -com.google.android.material.R$styleable: int TextInputEditText_textInputLayoutFocusedRectEnabled -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogTheme -okhttp3.internal.http2.Http2Reader: void readData(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setTranslateX(float) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String getTo() -androidx.activity.R$styleable: int[] FontFamily -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: void onFailure(retrofit2.Call,java.lang.Throwable) -com.google.android.material.R$drawable: int abc_scrubber_control_off_mtrl_alpha -com.google.android.material.R$styleable: int ConstraintSet_android_rotationY -wangdaye.com.geometricweather.R$string: int appbar_scrolling_view_behavior -com.google.android.material.R$dimen: int notification_subtext_size -com.google.android.material.R$attr: int flow_wrapMode -androidx.constraintlayout.widget.R$styleable: int Toolbar_title -com.jaredrummler.android.colorpicker.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -wangdaye.com.geometricweather.R$dimen: int widget_grid_4 -com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchPreferenceCompat -androidx.preference.R$attr: int buttonCompat -android.didikee.donate.R$styleable: int AppCompatTheme_dividerVertical -com.google.android.material.R$styleable: int Constraint_barrierDirection -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_3 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: java.util.List brands -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_min -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth -org.greenrobot.greendao.AbstractDao: void detachAll() -androidx.hilt.lifecycle.R$anim: int fragment_fade_exit -wangdaye.com.geometricweather.R$drawable: int ic_clock_black_24dp -androidx.constraintlayout.widget.R$styleable: int[] AlertDialog -io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object set(int,java.lang.Object) -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CITY -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyleSmall -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.Scheduler$Worker worker -androidx.lifecycle.extensions.R$style: int Widget_Compat_NotificationActionText -wangdaye.com.geometricweather.R$styleable: int Motion_motionPathRotate -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: java.lang.String Unit -com.google.android.material.R$style: int ShapeAppearanceOverlay_TopLeftCut -com.google.android.material.R$attr: int singleSelection -androidx.lifecycle.FullLifecycleObserver: void onResume(androidx.lifecycle.LifecycleOwner) -androidx.customview.R$id: int info -android.didikee.donate.R$styleable: int AppCompatTheme_editTextStyle -com.amap.api.location.AMapLocationListener -androidx.preference.R$styleable: int ActionBarLayout_android_layout_gravity -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Connection$ReaderRunnable readerRunnable -okhttp3.internal.http2.Http2Reader$ContinuationSource: long read(okio.Buffer,long) -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String toValue(java.util.List) -com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_android_color -androidx.hilt.lifecycle.R$dimen: int notification_large_icon_height -com.google.android.material.chip.Chip: float getTextStartPadding() -android.didikee.donate.R$style: int Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$styleable: int[] Fragment -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton -cyanogenmod.externalviews.KeyguardExternalView$5: KeyguardExternalView$5(cyanogenmod.externalviews.KeyguardExternalView) -androidx.appcompat.R$id: int title -androidx.fragment.R$id: int accessibility_custom_action_5 -wangdaye.com.geometricweather.R$font: int product_sans_italic -com.google.android.material.R$styleable: int Chip_closeIconTint -cyanogenmod.providers.CMSettings$System: java.lang.String HEADSET_CONNECT_PLAYER -com.google.android.material.R$color: int background_floating_material_light -okhttp3.internal.http2.Hpack$Reader: okhttp3.internal.http2.Header[] dynamicTable -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconDrawable -wangdaye.com.geometricweather.R$style: int Platform_V21_AppCompat -wangdaye.com.geometricweather.db.entities.HourlyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -com.google.android.material.R$color: int material_blue_grey_800 -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents -com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String BUILD_TYPE -com.jaredrummler.android.colorpicker.R$styleable: int Preference_title -wangdaye.com.geometricweather.R$attr: int overlay -com.google.android.material.R$styleable: int Layout_layout_constraintWidth_default -james.adaptiveicon.R$anim: int abc_slide_in_top -androidx.recyclerview.R$attr: int fontWeight -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitle -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconStartPadding -wangdaye.com.geometricweather.R$id: int activity_widget_config_top -james.adaptiveicon.R$attr: int paddingStart -wangdaye.com.geometricweather.R$string: int action_preview -androidx.lifecycle.Lifecycling$1: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -androidx.lifecycle.LiveData$1: void run() -com.tencent.bugly.proguard.ah: java.lang.String e -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: void setDrawable(boolean) -com.tencent.bugly.crashreport.common.info.a: java.lang.String K -okhttp3.Headers: long byteCount() -cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.CMStatusBarManager getInstance(android.content.Context) -androidx.preference.R$styleable: int TextAppearance_android_shadowDx -androidx.drawerlayout.R$attr: int fontProviderFetchStrategy -james.adaptiveicon.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -wangdaye.com.geometricweather.R$drawable: int notification_bg_low_normal -androidx.constraintlayout.widget.ConstraintLayout: int getPaddingWidth() -wangdaye.com.geometricweather.background.receiver.widget.WidgetMultiCityProvider -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: java.lang.Throwable error -com.jaredrummler.android.colorpicker.R$attr: int actionViewClass -com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_MODE_SAVING -com.amap.api.location.AMapLocation: int C -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7 -androidx.transition.R$integer: R$integer() -androidx.lifecycle.SavedStateHandleController$1 -okhttp3.CertificatePinner: okio.ByteString sha1(java.security.cert.X509Certificate) -androidx.preference.R$style: int Widget_AppCompat_ButtonBar -com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_disable_only_material_dark -com.google.android.material.button.MaterialButton: int getStrokeWidth() -okhttp3.internal.Util: java.util.regex.Pattern VERIFY_AS_IP_ADDRESS -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void cancel() -cyanogenmod.app.ICMTelephonyManager$Stub: cyanogenmod.app.ICMTelephonyManager asInterface(android.os.IBinder) -cyanogenmod.app.LiveLockScreenInfo$1: LiveLockScreenInfo$1() -com.google.android.material.R$dimen: int mtrl_calendar_year_width -james.adaptiveicon.R$attr: int colorBackgroundFloating -wangdaye.com.geometricweather.R$dimen: int mtrl_large_touch_target -com.turingtechnologies.materialscrollbar.R$attr: int actionLayout -com.google.android.material.R$styleable: int Constraint_layout_goneMarginBottom -cyanogenmod.providers.CMSettings$Secure: int getIntForUser(android.content.ContentResolver,java.lang.String,int) -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.main.dialogs.LocationPermissionStatementDialog: LocationPermissionStatementDialog() -com.google.android.material.R$styleable: int GradientColor_android_centerX -android.didikee.donate.R$attr: int actionModeCutDrawable -cyanogenmod.profiles.LockSettings -androidx.hilt.R$layout: int notification_action_tombstone -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver parent -wangdaye.com.geometricweather.R$styleable: int[] Transition -androidx.recyclerview.R$dimen: int notification_media_narrow_margin -androidx.preference.R$style: int Theme_AppCompat_DayNight_DarkActionBar -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -androidx.constraintlayout.utils.widget.MockView -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: long produced -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_query -androidx.fragment.app.BackStackRecord -com.google.android.material.R$attr: int expandActivityOverflowButtonDrawable -androidx.swiperefreshlayout.R$id: int actions -com.google.android.material.chip.Chip: void setChipEndPadding(float) -com.google.android.material.R$attr: int materialCalendarHeaderToggleButton -com.tencent.bugly.proguard.i: java.util.Map a(java.util.Map,java.util.Map,int,boolean) -cyanogenmod.app.CustomTile$ListExpandedStyle: CustomTile$ListExpandedStyle() -cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(cyanogenmod.app.ThemeVersion$ComponentVersion) -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_ttcIndex -james.adaptiveicon.R$layout: int notification_template_part_chronometer -wangdaye.com.geometricweather.R$id: int widget_day_symbol -com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_circle -okhttp3.CacheControl: java.lang.String headerValue -androidx.transition.R$styleable: int GradientColor_android_gradientRadius -com.google.android.material.internal.ParcelableSparseArray -androidx.hilt.work.R$styleable: int Fragment_android_tag -cyanogenmod.providers.ThemesContract$MixnMatchColumns: ThemesContract$MixnMatchColumns() -androidx.recyclerview.R$id: int right_icon -androidx.loader.R$styleable: int GradientColorItem_android_color -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void dispose() -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_4 -okio.BufferedSource: boolean rangeEquals(long,okio.ByteString,int,int) -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayWeekProvider: WidgetClockDayWeekProvider() -com.turingtechnologies.materialscrollbar.TouchScrollBar: float getIndicatorOffset() -wangdaye.com.geometricweather.R$attr: int snackbarStyle -okhttp3.internal.ws.WebSocketWriter: okio.Buffer buffer -com.xw.repo.bubbleseekbar.R$dimen: int disabled_alpha_material_dark -androidx.lifecycle.extensions.R$id: int notification_background -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPm25() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorButtonNormal -com.google.android.gms.common.api.internal.zabl -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView_Menu -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: boolean won -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA -wangdaye.com.geometricweather.R$attr: int layout_constrainedHeight -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: long serialVersionUID -com.google.gson.stream.JsonWriter: int[] stack -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_TabView -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getErrorContentDescription() -com.turingtechnologies.materialscrollbar.R$id: int end -androidx.appcompat.R$layout: int abc_select_dialog_material -androidx.transition.R$id: int chronometer -wangdaye.com.geometricweather.R$drawable: int ic_filter_off -androidx.appcompat.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -wangdaye.com.geometricweather.R$styleable: int MotionLayout_applyMotionScene -com.xw.repo.bubbleseekbar.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullResourceIdException -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean setDisposable(io.reactivex.disposables.Disposable,int) -wangdaye.com.geometricweather.R$string: int mtrl_picker_announce_current_selection -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial Imperial -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastHorizontalBias -com.tencent.bugly.crashreport.CrashReport: void closeBugly() -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Bridge -com.google.android.material.slider.RangeSlider: void setThumbTintList(android.content.res.ColorStateList) -okhttp3.Cache: int hitCount() -androidx.appcompat.widget.AppCompatImageView: void setSupportImageTintList(android.content.res.ColorStateList) -androidx.hilt.work.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$id: int mtrl_calendar_text_input_frame -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_UID -androidx.constraintlayout.widget.R$styleable: int[] CustomAttribute -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalStyle -okhttp3.Headers: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen +androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_CBC_SHA +io.reactivex.Observable: io.reactivex.Observable concatMapSingle(io.reactivex.functions.Function,int) +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onNext(java.lang.Object) +com.google.android.material.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +android.didikee.donate.R$attr: int homeLayout +androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMarkTint +cyanogenmod.providers.DataUsageContract: java.lang.String EXTRA +com.amap.api.location.DPoint$1: DPoint$1() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActivityChooserView +wangdaye.com.geometricweather.R$attr: int alpha +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickTintList() +androidx.preference.R$style: int Preference +androidx.appcompat.R$color: int button_material_dark +wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfSnow +com.google.android.material.R$attr: int helperTextEnabled +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.Map lefts +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul6H +cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.view.View onCreateView() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias +androidx.recyclerview.R$id: int forever +wangdaye.com.geometricweather.R$attr: int windowNoTitle +androidx.constraintlayout.widget.R$styleable: int Transition_staggered +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean active +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress +wangdaye.com.geometricweather.R$xml: int icon_provider_animator_filter +okio.Buffer$UnsafeCursor: okio.Segment segment +com.turingtechnologies.materialscrollbar.R$attr: int actionModeBackground +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.ObservableSource source +wangdaye.com.geometricweather.R$id: int notification_big_temp_2 +wangdaye.com.geometricweather.common.ui.widgets.TagView: void setChecked(boolean) +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String TABLENAME +okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method warnIfOpenMethod +com.google.android.material.R$styleable: int OnSwipe_onTouchUp +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_2 +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleTint +com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_minimum_range +com.tencent.bugly.crashreport.common.info.PlugInBean: java.lang.String b +com.jaredrummler.android.colorpicker.R$string: int abc_menu_sym_shortcut_label +wangdaye.com.geometricweather.R$drawable: int notif_temp_91 +com.tencent.bugly.crashreport.crash.CrashDetailBean: int b +androidx.core.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayTodayStyle +androidx.appcompat.R$styleable: int FontFamily_fontProviderPackage +androidx.coordinatorlayout.R$dimen: int notification_large_icon_height +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogCenterButtons +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean isDisposed() +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState RUNNING +okhttp3.Cookie: boolean httpOnly +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.util.concurrent.atomic.AtomicBoolean cancelled +androidx.hilt.lifecycle.R$anim: int fragment_close_enter +com.tencent.bugly.crashreport.CrashReport: void setBuglyDbName(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SeekBar +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource) +com.tencent.bugly.crashreport.biz.b: long j +com.google.android.material.R$styleable: int KeyAttribute_framePosition +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +cyanogenmod.app.ICMStatusBarManager$Stub +androidx.appcompat.R$layout: int support_simple_spinner_dropdown_item +androidx.preference.R$string: int abc_capital_off +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.AlertEntityDao getAlertEntityDao() +wangdaye.com.geometricweather.R$style: int cpv_ColorPickerViewStyle +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceName(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_orientation +wangdaye.com.geometricweather.R$attr: int switchTextAppearance +okhttp3.internal.cache.DiskLruCache: okio.BufferedSink newJournalWriter() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getUrl() +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dark +wangdaye.com.geometricweather.common.basic.models.weather.UV: UV(java.lang.Integer,java.lang.String,java.lang.String) +com.google.android.material.R$color: int bright_foreground_material_light +com.google.android.material.textfield.TextInputLayout: void setErrorIconTintList(android.content.res.ColorStateList) +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_textLocale +wangdaye.com.geometricweather.db.entities.HourlyEntity +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function) +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: WidgetItemView(android.content.Context) +android.didikee.donate.R$id: R$id() +com.google.android.material.chip.Chip: void setCheckedIconEnabledResource(int) +wangdaye.com.geometricweather.R$styleable: int Toolbar_maxButtonHeight +com.google.android.material.R$attr: int keyPositionType +androidx.vectordrawable.animated.R$id: R$id() +androidx.preference.R$attr: int drawableSize +okhttp3.MultipartBody: long contentLength +com.google.android.gms.common.SupportErrorDialogFragment +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int state_liftable +cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$id: int contentPanel +androidx.preference.R$dimen: int abc_action_button_min_height_material +wangdaye.com.geometricweather.R$dimen: int design_navigation_padding_bottom +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean +james.adaptiveicon.R$attr: int barLength +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabView +james.adaptiveicon.R$attr: int textColorSearchUrl +okhttp3.internal.ws.RealWebSocket$Close: okio.ByteString reason +android.didikee.donate.R$dimen: int highlight_alpha_material_light +androidx.lifecycle.LiveData: boolean hasActiveObservers() +okhttp3.Headers: java.util.Map toMultimap() +androidx.transition.R$id: int actions +cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit +com.google.android.gms.common.SignInButton: void setOnClickListener(android.view.View$OnClickListener) +okio.ForwardingSource: okio.Source delegate +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setZh_CN(java.lang.String) +com.google.android.material.R$drawable: int abc_seekbar_track_material +com.google.android.material.bottomnavigation.BottomNavigationView: android.graphics.drawable.Drawable getItemBackground() +com.jaredrummler.android.colorpicker.R$attr: int adjustable +wangdaye.com.geometricweather.R$drawable: int notif_temp_77 +androidx.recyclerview.R$attr: int font +androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.util.List getValue() +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderPackage +io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable NEVER +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +com.google.android.material.R$attr: int layout_constraintHorizontal_bias +wangdaye.com.geometricweather.R$attr: int itemShapeFillColor +james.adaptiveicon.R$color: int abc_search_url_text_normal +cyanogenmod.hardware.ICMHardwareService: boolean setDisplayGammaCalibration(int,int[]) +androidx.constraintlayout.widget.R$attr: int mock_showLabel +android.didikee.donate.R$id: int buttonPanel +androidx.preference.R$styleable: int ActionBar_homeLayout +androidx.preference.R$string: int preference_copied +io.reactivex.internal.disposables.EmptyDisposable +com.jaredrummler.android.colorpicker.R$id: int icon_frame +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingTop +com.google.android.material.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdtd +com.jaredrummler.android.colorpicker.R$attr: int thumbTint +wangdaye.com.geometricweather.R$layout: int mtrl_picker_fullscreen +com.tencent.bugly.crashreport.crash.anr.b: void d() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind Wind +androidx.appcompat.R$anim: int abc_slide_in_bottom +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver inner +androidx.vectordrawable.animated.R$drawable: int notification_bg_normal +com.xw.repo.bubbleseekbar.R$layout: int abc_screen_simple_overlay_action_mode +androidx.appcompat.R$styleable: int[] LinearLayoutCompat +androidx.lifecycle.extensions.R$styleable: int[] FontFamily +okio.DeflaterSink: DeflaterSink(okio.BufferedSink,java.util.zip.Deflater) +com.xw.repo.bubbleseekbar.R$dimen: int notification_main_column_padding_top +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleTextAppearance +okio.Buffer: long indexOf(byte,long) +com.google.android.material.R$id: int dragUp +androidx.appcompat.R$drawable: int abc_list_selector_holo_light +com.google.android.material.R$attr: int materialButtonToggleGroupStyle +cyanogenmod.app.IPartnerInterface$Stub: android.os.IBinder asBinder() +androidx.preference.R$dimen: int fastscroll_margin +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue getOrCreateQueue() +com.jaredrummler.android.colorpicker.R$attr: int buttonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIcon +com.xw.repo.bubbleseekbar.R$drawable: int abc_spinner_mtrl_am_alpha +cyanogenmod.providers.CMSettings$2 +com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String windspeed +androidx.multidex.MultiDexExtractor$ExtractedDex: MultiDexExtractor$ExtractedDex(java.io.File,java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture +wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_dark +androidx.constraintlayout.widget.R$styleable: int[] ColorStateListItem +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearanceActive +androidx.constraintlayout.widget.R$id: int action_bar_title +androidx.hilt.R$id: int right_icon +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvDescription +androidx.preference.R$color: int switch_thumb_material_light +android.didikee.donate.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +androidx.drawerlayout.R$color: int ripple_material_light +androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setThunderstormPrecipitationProbability(java.lang.Float) +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickActiveTintList() +james.adaptiveicon.R$attr: int radioButtonStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +com.google.android.material.R$style: int Widget_AppCompat_Light_ActivityChooserView +wangdaye.com.geometricweather.R$dimen: int mtrl_progress_circular_radius +wangdaye.com.geometricweather.R$attr: int defaultState +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginEnd +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: NativeCrashHandler(android.content.Context,com.tencent.bugly.crashreport.common.info.a,com.tencent.bugly.crashreport.crash.b,com.tencent.bugly.proguard.w,boolean,java.lang.String) +com.tencent.bugly.crashreport.biz.UserInfoBean: long a +com.tencent.bugly.crashreport.biz.b: void b(android.content.Context,com.tencent.bugly.BuglyStrategy) +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +cyanogenmod.app.CMTelephonyManager: void setDefaultPhoneSub(int) +androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context) +wangdaye.com.geometricweather.R$attr: int paddingLeftSystemWindowInsets +wangdaye.com.geometricweather.R$styleable: int ActionBarLayout_android_layout_gravity +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getLongTemperatureText(android.content.Context,int) +androidx.preference.R$drawable: int abc_edit_text_material +androidx.hilt.work.R$id: int italic +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconSize +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER_Y +com.xw.repo.bubbleseekbar.R$id: int chronometer +com.jaredrummler.android.colorpicker.R$attr: int subtitleTextStyle +wangdaye.com.geometricweather.R$id: int mtrl_calendar_year_selector_frame +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: long serialVersionUID +com.google.android.material.R$id: int accessibility_custom_action_15 +androidx.core.R$drawable +com.google.android.material.R$id: int accessibility_custom_action_25 +androidx.appcompat.R$styleable: int TextAppearance_android_shadowDy +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode[] values() +com.tencent.bugly.crashreport.biz.a: boolean d +okhttp3.internal.http.RealInterceptorChain: okhttp3.Call call() +cyanogenmod.app.suggest.IAppSuggestProvider +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_go_search_api_material +cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String TIMEZONE_OFFSET +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setWallpaper(java.lang.String) +james.adaptiveicon.R$id: int src_atop +cyanogenmod.providers.CMSettings$Global: boolean isLegacySetting(java.lang.String) +androidx.drawerlayout.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.R$dimen: int mtrl_card_dragged_z +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void dispose() +wangdaye.com.geometricweather.R$attr: int deltaPolarAngle +wangdaye.com.geometricweather.R$attr: int tabUnboundedRipple +wangdaye.com.geometricweather.R$drawable: int notif_temp_124 +okio.Buffer: short readShort() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_height_major +wangdaye.com.geometricweather.background.receiver.widget.WidgetDayProvider +cyanogenmod.providers.CMSettings$Validator +com.tencent.bugly.proguard.i: void a(byte[]) +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIconTintMode +wangdaye.com.geometricweather.R$attr: int tabMaxWidth +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_3_00 +com.google.android.material.R$style: int TextAppearance_AppCompat_Menu +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_PEOPLE_LOOKUP_VALIDATOR +james.adaptiveicon.R$drawable: int abc_item_background_holo_dark +cyanogenmod.profiles.StreamSettings +okio.BufferedSource: void readFully(byte[]) +com.turingtechnologies.materialscrollbar.R$id: int top +com.amap.api.fence.GeoFence: java.lang.String getPendingIntentAction() +wangdaye.com.geometricweather.R$drawable: int notif_temp_67 +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_enterFadeDuration +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void request(long) +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getIconResEnd() +com.google.android.material.R$attr: int flow_verticalBias +androidx.viewpager2.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +com.google.android.material.R$id: int search_plate +okhttp3.Protocol: okhttp3.Protocol HTTP_1_1 +androidx.core.R$styleable: int GradientColor_android_gradientRadius +androidx.appcompat.R$style: int Widget_AppCompat_TextView_SpinnerItem +androidx.constraintlayout.widget.R$attr: int buttonCompat +wangdaye.com.geometricweather.R$attr: int unfold +android.didikee.donate.R$id: int default_activity_button +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) +androidx.appcompat.R$styleable: int[] TextAppearance +androidx.work.R$styleable: int[] GradientColor +com.google.android.material.R$styleable: int AppBarLayout_liftOnScroll +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.R$styleable: int MaterialButton_rippleColor +androidx.appcompat.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +androidx.appcompat.R$styleable: int TextAppearance_android_fontFamily +wangdaye.com.geometricweather.R$attr: int valueTextColor +com.google.android.material.R$dimen: int abc_text_size_headline_material +androidx.preference.R$styleable: int AlertDialog_listLayout +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_fontVariationSettings +androidx.appcompat.view.menu.StandardMenuPopup +retrofit2.BuiltInConverters$ToStringConverter: retrofit2.BuiltInConverters$ToStringConverter INSTANCE +android.didikee.donate.R$styleable: int AppCompatTheme_radioButtonStyle +androidx.work.R$id: int accessibility_custom_action_2 +retrofit2.http.Query: java.lang.String value() +androidx.activity.R$styleable: int ColorStateListItem_alpha +androidx.appcompat.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.R$drawable: int weather_haze_3 +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +androidx.preference.R$styleable: int MenuItem_android_title +wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundODialog: RunningInBackgroundODialog() +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Subhead_Inverse +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_1_material +com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_disabled +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +com.bumptech.glide.Priority: com.bumptech.glide.Priority valueOf(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_minWidth +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Caption +wangdaye.com.geometricweather.R$attr: int checkedTextViewStyle +com.google.android.material.R$layout: int notification_action +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxDaoPlain +androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context) +okio.Okio: boolean isAndroidGetsocknameError(java.lang.AssertionError) +com.google.android.material.R$attr: int titleMargins +cyanogenmod.app.ILiveLockScreenManager +androidx.drawerlayout.R$styleable: int GradientColor_android_endColor +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceBody1 +okhttp3.ConnectionSpec: void apply(javax.net.ssl.SSLSocket,boolean) +com.google.android.material.internal.CheckableImageButton +wangdaye.com.geometricweather.R$attr: int flow_verticalGap +androidx.preference.R$dimen: int abc_text_size_button_material +androidx.appcompat.R$dimen: int abc_search_view_preferred_width +retrofit2.KotlinExtensions: java.lang.Object awaitNullable(retrofit2.Call,kotlin.coroutines.Continuation) +wangdaye.com.geometricweather.R$id: int textStart +androidx.constraintlayout.widget.R$styleable: int Layout_barrierMargin +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: void run() +androidx.constraintlayout.widget.R$dimen: int notification_main_column_padding_top +io.reactivex.internal.schedulers.ScheduledRunnable: void setFuture(java.util.concurrent.Future) +wangdaye.com.geometricweather.R$integer: int cpv_default_anim_swoop_duration +wangdaye.com.geometricweather.db.entities.MinutelyEntity: long getTime() +com.jaredrummler.android.colorpicker.R$style: int Base_V22_Theme_AppCompat_Light +androidx.coordinatorlayout.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String name +androidx.vectordrawable.R$id: int accessibility_custom_action_13 +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +com.turingtechnologies.materialscrollbar.R$styleable: int[] AlertDialog +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textStyle +wangdaye.com.geometricweather.R$style: int Base_V22_Theme_AppCompat_Light +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +androidx.appcompat.R$styleable: int AppCompatTextView_fontFamily +com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_view +io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier INSTANCE +okhttp3.CipherSuite: okhttp3.CipherSuite init(java.lang.String,int) +androidx.vectordrawable.animated.R$dimen: int notification_small_icon_size_as_large +androidx.recyclerview.R$attr: int fontProviderPackage +io.reactivex.Observable: io.reactivex.Observable throttleFirst(long,java.util.concurrent.TimeUnit) +cyanogenmod.app.CMTelephonyManager: java.util.List getSubInformation() +com.google.android.material.R$dimen: int mtrl_extended_fab_icon_text_spacing +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf +wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWidgetConfigActivity: Hilt_DayWidgetConfigActivity() +cyanogenmod.weather.WeatherInfo: double getWindDirection() +androidx.recyclerview.R$layout: int custom_dialog +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date getFrom() +com.google.android.material.R$dimen: int mtrl_calendar_header_height_fullscreen +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setIndicatorPosition(int) +wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay_v14_Material +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderCerts +com.google.android.material.R$id: int textinput_placeholder +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconPadding +com.google.android.material.R$style: int Widget_MaterialComponents_BottomNavigationView_PrimarySurface +com.tencent.bugly.proguard.ab: byte[] b(byte[]) +wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_list +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_normal_material_light +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_default +wangdaye.com.geometricweather.R$style: int widget_background_card +com.google.gson.internal.LinkedTreeMap: LinkedTreeMap(java.util.Comparator) +okhttp3.HttpUrl: HttpUrl(okhttp3.HttpUrl$Builder) +com.bumptech.glide.integration.okhttp.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: int count +androidx.vectordrawable.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.wallpaper.LiveWallpaperConfigActivity: LiveWallpaperConfigActivity() +com.turingtechnologies.materialscrollbar.R$dimen: int notification_top_pad +com.tencent.bugly.proguard.w: void b() +wangdaye.com.geometricweather.R$attr: int itemStrokeWidth +androidx.constraintlayout.widget.R$id: int dragStart +io.reactivex.exceptions.CompositeException: void printStackTrace() +com.amap.api.location.AMapLocation: void setMock(boolean) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setHideMotionSpecResource(int) +androidx.preference.R$style: int Widget_AppCompat_TextView +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_RAIN_AND_SLEET +okio.BufferedSource: okio.ByteString readByteString(long) +android.didikee.donate.R$string: int abc_shareactionprovider_share_with +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.Observer downstream +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void remove(io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable) +androidx.appcompat.R$color: int switch_thumb_disabled_material_dark +androidx.preference.R$styleable: int MultiSelectListPreference_entries +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_overflow_padding_start_material +com.tencent.bugly.proguard.i$a: byte a +androidx.recyclerview.R$styleable: int FontFamily_fontProviderQuery +androidx.appcompat.R$style: int Base_V26_Theme_AppCompat +com.google.android.material.R$styleable: int BottomNavigationView_backgroundTint +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onSubscribe(org.reactivestreams.Subscription) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorColor +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit[] values() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_checkedTextViewStyle +com.jaredrummler.android.colorpicker.R$anim: int abc_slide_out_top +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetLeft +okhttp3.CacheControl: okhttp3.CacheControl parse(okhttp3.Headers) +com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a e +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult +james.adaptiveicon.R$id: int image +wangdaye.com.geometricweather.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: double Value +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_popupMenuStyle +wangdaye.com.geometricweather.R$attr: int selectorSize +wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundDialog +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_label_padding +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +wangdaye.com.geometricweather.R$dimen: int widget_grid_1 +okhttp3.CertificatePinner$Builder: okhttp3.CertificatePinner$Builder add(java.lang.String,java.lang.String[]) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void close(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver,long) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.List Sources +androidx.loader.R$attr: int fontProviderCerts +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setZenMode +com.tencent.bugly.proguard.u: long a(boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setValue(java.util.List) +androidx.appcompat.widget.AppCompatTextView: int getAutoSizeMaxTextSize() +james.adaptiveicon.R$color: int switch_thumb_normal_material_dark +okhttp3.internal.ws.RealWebSocket$Message +wangdaye.com.geometricweather.R$drawable: int mtrl_ic_arrow_drop_up +androidx.work.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$attr: int spinnerStyle +james.adaptiveicon.R$dimen: int abc_button_padding_horizontal_material +wangdaye.com.geometricweather.R$attr: int onPositiveCross +androidx.drawerlayout.R$drawable: int notification_bg +androidx.hilt.work.R$id: int accessibility_custom_action_30 +android.didikee.donate.R$dimen: int abc_seekbar_track_progress_height_material +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTintMode +com.google.android.material.progressindicator.ProgressIndicator: void setGrowMode(int) +androidx.appcompat.widget.FitWindowsLinearLayout: FitWindowsLinearLayout(android.content.Context,android.util.AttributeSet) +androidx.fragment.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.amap.api.location.AMapLocation: boolean isOffset() +com.tencent.bugly.crashreport.common.info.b: java.lang.String[] b +wangdaye.com.geometricweather.Hilt_GeometricWeather: Hilt_GeometricWeather() +com.tencent.bugly.proguard.n: java.lang.String d +androidx.hilt.work.R$dimen: int notification_top_pad_large_text +okhttp3.internal.Util: java.lang.String[] concat(java.lang.String[],java.lang.String) +com.google.android.material.R$styleable: int ActionBar_homeAsUpIndicator +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_TEMPERATURE_MODE +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_title +com.turingtechnologies.materialscrollbar.R$id: int action_text +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderPackage +androidx.appcompat.R$anim: int abc_tooltip_enter +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_ON_NEW_REQUEST +cyanogenmod.weather.WeatherInfo: int mConditionCode +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: long serialVersionUID +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_1 +com.xw.repo.bubbleseekbar.R$layout: R$layout() +androidx.preference.R$styleable: int SearchView_android_imeOptions +retrofit2.Utils: boolean isAnnotationPresent(java.lang.annotation.Annotation[],java.lang.Class) +com.jaredrummler.android.colorpicker.R$drawable: int notification_template_icon_bg +com.google.android.material.R$attr: int layoutManager +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedPathSegment(java.lang.String) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +cyanogenmod.app.Profile$LockMode: Profile$LockMode() +james.adaptiveicon.R$styleable: int SwitchCompat_android_textOn +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_android_src +android.support.v4.os.IResultReceiver$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.google.android.material.R$styleable: int KeyCycle_wavePeriod +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.disposables.CompositeDisposable set +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onError(java.lang.Throwable) +io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.ObservableSource) +androidx.hilt.work.R$id: int accessibility_custom_action_8 +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: okhttp3.MediaType contentType +com.google.android.material.R$id: int mtrl_view_tag_bottom_padding +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_minWidth +wangdaye.com.geometricweather.R$font: int product_sans_light +io.reactivex.Observable: io.reactivex.Observable throttleWithTimeout(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okhttp3.internal.Util$2: java.lang.Thread newThread(java.lang.Runnable) +com.jaredrummler.android.colorpicker.R$attr: int backgroundTintMode +io.reactivex.Observable: java.lang.Iterable blockingLatest() +wangdaye.com.geometricweather.R$attr: int staggered +okhttp3.internal.ws.WebSocketWriter: void writeMessageFrame(int,long,boolean,boolean) +androidx.appcompat.widget.AppCompatImageButton: android.content.res.ColorStateList getSupportBackgroundTintList() +com.google.android.material.R$string: int mtrl_picker_out_of_range +okhttp3.MediaType: okhttp3.MediaType get(java.lang.String) +android.didikee.donate.R$styleable: int AlertDialog_buttonIconDimen +com.google.android.material.R$styleable: int KeyTrigger_onPositiveCross +androidx.appcompat.resources.R$id: int dialog_button +wangdaye.com.geometricweather.R$menu: int activity_main +com.google.android.material.R$dimen: int mtrl_chip_text_size +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: MfHistoryResult$History() +androidx.hilt.R$id: int accessibility_custom_action_20 +com.xw.repo.bubbleseekbar.R$style: int Platform_AppCompat +com.turingtechnologies.materialscrollbar.R$attr: int iconEndPadding +androidx.hilt.lifecycle.R$color: int notification_icon_bg_color +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver[] EMPTY +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Title +com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundMode(int) +com.jaredrummler.android.colorpicker.R$style: int Preference_SeekBarPreference_Material +wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveShape +okhttp3.CacheControl: boolean noTransform() +android.didikee.donate.R$color: int dim_foreground_material_light +com.google.android.material.R$drawable: int abc_list_selector_background_transition_holo_light +wangdaye.com.geometricweather.R$attr: int switchTextOff +io.reactivex.internal.disposables.ArrayCompositeDisposable: void dispose() +wangdaye.com.geometricweather.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.R$styleable: int Toolbar_collapseIcon +androidx.appcompat.R$id: int off +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation getWeatherLocation() +androidx.work.impl.WorkDatabase: WorkDatabase() +okio.RealBufferedSink$1 +com.amap.api.location.AMapLocationClientOption$1: java.lang.Object createFromParcel(android.os.Parcel) +com.google.android.material.R$drawable: int btn_radio_on_to_off_mtrl_animation +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property So2 +com.xw.repo.bubbleseekbar.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$id: int mtrl_internal_children_alpha_tag +androidx.lifecycle.LifecycleService: androidx.lifecycle.Lifecycle getLifecycle() +androidx.hilt.work.R$id: int accessibility_custom_action_12 +androidx.hilt.work.R$dimen: int notification_action_icon_size +com.tencent.bugly.crashreport.common.info.b: java.lang.String o() +com.tencent.bugly.proguard.ag: byte[] a(byte[]) +okio.BufferedSink: okio.BufferedSink writeUtf8(java.lang.String,int,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedIndex +com.google.android.material.R$styleable: int CompoundButton_buttonCompat +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert +androidx.coordinatorlayout.R$dimen: int notification_right_side_padding_top +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabView +androidx.hilt.work.R$dimen: R$dimen() +androidx.lifecycle.extensions.R$layout +com.turingtechnologies.materialscrollbar.R$id: int shortcut +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getWallpaperThemePackageName() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionBar_Solid +com.turingtechnologies.materialscrollbar.R$drawable: int design_ic_visibility +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void drainFused() +androidx.appcompat.R$color: int material_grey_900 +androidx.activity.R$id: int right_icon +androidx.hilt.work.R$dimen: int compat_button_inset_horizontal_material +com.bumptech.glide.Registry$NoResultEncoderAvailableException: Registry$NoResultEncoderAvailableException(java.lang.Class) +androidx.viewpager2.R$dimen: int notification_main_column_padding_top +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object) +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +androidx.recyclerview.R$id: int action_divider +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceGroup +wangdaye.com.geometricweather.R$drawable: int googleg_standard_color_18 +com.xw.repo.bubbleseekbar.R$id: int action_context_bar +com.tencent.bugly.proguard.aj +android.didikee.donate.R$attr: int colorSwitchThumbNormal +com.tencent.bugly.crashreport.biz.a: long b +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingRight +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +james.adaptiveicon.R$dimen: int disabled_alpha_material_light +androidx.constraintlayout.widget.R$attr: int showTitle +wangdaye.com.geometricweather.R$string: int settings_notification_hide_in_lockScreen_off +androidx.lifecycle.extensions.R$id: int dialog_button +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +okhttp3.internal.http.HttpCodec: void writeRequestHeaders(okhttp3.Request) +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PRIMARY_COLOR +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver[] observers +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: void onError(java.lang.Throwable) +androidx.lifecycle.LifecycleRegistry: void setCurrentState(androidx.lifecycle.Lifecycle$State) +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontStyle +androidx.swiperefreshlayout.R$id: int title +com.google.android.material.R$styleable: int KeyCycle_transitionPathRotate +james.adaptiveicon.R$color: int dim_foreground_material_dark +androidx.recyclerview.R$drawable: int notify_panel_notification_icon_bg +androidx.constraintlayout.widget.R$attr: int actionModePopupWindowStyle +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_padding_end_material +com.bumptech.glide.load.engine.CallbackException: CallbackException(java.lang.Throwable) +androidx.preference.R$attr: int textAppearanceListItemSmall +com.google.android.material.R$attr: int textAppearanceListItemSmall +androidx.viewpager.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.R$layout: int container_snackbar_card +wangdaye.com.geometricweather.R$drawable: int weather_thunder +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintStart_toEndOf +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void dispose() +wangdaye.com.geometricweather.R$id: int cut +cyanogenmod.themes.IThemeService: int getLastThemeChangeRequestType() +wangdaye.com.geometricweather.R$attr: int expandedTitleMarginStart +androidx.hilt.work.R$id: int accessibility_custom_action_10 +com.amap.api.location.AMapLocationClientOption: boolean isWifiActiveScan() +androidx.preference.R$attr: int borderlessButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_selectableItemBackground +retrofit2.http.OPTIONS +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SearchView +wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline6 +com.tencent.bugly.proguard.am: java.lang.String s +okhttp3.internal.http2.Http2Connection: long degradedPongDeadlineNs +androidx.recyclerview.R$id: int accessibility_custom_action_5 +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_creator +com.google.android.material.R$dimen: int mtrl_navigation_item_shape_horizontal_margin +wangdaye.com.geometricweather.R$attr: int tabTextColor +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onFailed() +com.google.android.material.R$styleable: int NavigationView_shapeAppearance +wangdaye.com.geometricweather.R$attr: int layout_constraintRight_creator +com.google.android.material.R$attr: int actionProviderClass +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: int UnitType +androidx.work.R$id: int accessibility_custom_action_4 +android.didikee.donate.R$style: int TextAppearance_AppCompat_Medium +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerY +com.google.android.material.R$dimen: int mtrl_btn_icon_btn_padding_left +com.google.android.material.R$id: int asConfigured +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int FUSED +com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.badge.BadgeDrawable getBadge() +androidx.appcompat.R$id: int title +androidx.lifecycle.extensions.R$anim: R$anim() +androidx.vectordrawable.R$drawable: int notification_bg_low +com.tencent.bugly.proguard.z: android.content.SharedPreferences a(java.lang.String,android.content.Context) +wangdaye.com.geometricweather.R$layout: int design_navigation_item_header +androidx.transition.R$dimen: int compat_button_padding_horizontal_material +com.jaredrummler.android.colorpicker.R$attr: int actionModeCloseButtonStyle +androidx.fragment.R$id: int accessibility_custom_action_23 +com.google.android.material.R$animator: int linear_indeterminate_line1_head_interpolator +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupMenu +cyanogenmod.externalviews.KeyguardExternalView: void registerKeyguardExternalViewCallback(cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks) +androidx.recyclerview.R$id: int actions +wangdaye.com.geometricweather.R$id: int META +com.google.android.material.R$styleable: int AppCompatTheme_actionModeCopyDrawable +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void dispose() +wangdaye.com.geometricweather.R$attr: int listMenuViewStyle +com.google.android.material.slider.RangeSlider: int getActiveThumbIndex() +io.reactivex.internal.util.VolatileSizeArrayList: boolean isEmpty() +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: java.lang.Integer fresh +com.baidu.location.e.l$b: int e +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTotalPrecipitationProbability(java.lang.Float) +android.didikee.donate.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +androidx.preference.R$drawable: int abc_ic_arrow_drop_right_black_24dp +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +com.tencent.bugly.proguard.a +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_ENABLED +wangdaye.com.geometricweather.R$color: int mtrl_on_primary_text_btn_text_color_selector +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_BRIGHTNESS_CONTROL_VALIDATOR +james.adaptiveicon.R$styleable: int FontFamily_fontProviderQuery +androidx.constraintlayout.widget.R$id: int src_atop +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder httpOnly() +com.jaredrummler.android.colorpicker.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +wangdaye.com.geometricweather.R$id: int notification_multi_city_1 +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionMenuItemView +okhttp3.Cache$CacheResponseBody: java.lang.String contentLength +com.xw.repo.bubbleseekbar.R$attr: int colorButtonNormal +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_20 +cyanogenmod.themes.ThemeManager: void requestThemeChange(java.lang.String,java.util.List) +androidx.preference.R$attr: int paddingBottomNoButtons +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogStyle +androidx.hilt.R$anim: int fragment_close_enter +wangdaye.com.geometricweather.R$dimen: int material_cursor_inset_top +com.google.android.material.R$attr: int layout_constraintHeight_min +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.Observer downstream +androidx.viewpager2.R$dimen: int fastscroll_minimum_range +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: long serialVersionUID +com.google.android.material.R$string: int abc_menu_shift_shortcut_label +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder maxStale(int,java.util.concurrent.TimeUnit) +com.google.android.material.R$color: int design_dark_default_color_primary_variant +com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingBottom +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSo2Desc(java.lang.String) +cyanogenmod.weatherservice.ServiceRequestResult: int describeContents() +wangdaye.com.geometricweather.R$attr: int preferenceStyle +com.turingtechnologies.materialscrollbar.R$id: int search_button +com.amap.api.location.AMapLocationClientOption$1 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dropDownListViewStyle +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleContainer +okio.Timeout: boolean hasDeadline() +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language CZECH +androidx.preference.R$styleable: int MenuGroup_android_id +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_item_min_width +com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat +okhttp3.CacheControl: java.lang.String headerValue() +com.github.rahatarmanahmed.cpv.CircularProgressView: int color +james.adaptiveicon.R$styleable: int SwitchCompat_splitTrack +wangdaye.com.geometricweather.R$string: int character_counter_overflowed_content_description +wangdaye.com.geometricweather.R$string: int wind_5 +androidx.hilt.work.R$dimen: int notification_right_side_padding_top +com.tencent.bugly.proguard.y: java.lang.String f() +com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode Hight_Accuracy +wangdaye.com.geometricweather.R$id: int item_weather_daily_title_title +com.xw.repo.bubbleseekbar.R$attr: int actionModeShareDrawable +androidx.fragment.app.DialogFragment +androidx.viewpager.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onNext(java.lang.Object) +okhttp3.internal.connection.RealConnection: void connect(int,int,int,int,boolean,okhttp3.Call,okhttp3.EventListener) +com.google.android.material.R$styleable: int ColorStateListItem_android_color +okhttp3.ConnectionSpec: java.lang.String[] tlsVersions +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemShapeAppearance +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_dialog +android.didikee.donate.R$styleable: int DrawerArrowToggle_arrowShaftLength +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +wangdaye.com.geometricweather.R$id: int jumpToStart +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +wangdaye.com.geometricweather.db.entities.AlertEntity: void setAlertId(long) +androidx.viewpager.R$attr: int fontVariationSettings +androidx.appcompat.R$style: int Widget_AppCompat_TextView +com.tencent.bugly.crashreport.common.info.a: java.util.HashMap A +com.google.android.material.R$dimen: int material_helper_text_font_1_3_padding_top +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary DegreeDaySummary +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_DialogWhenLarge +james.adaptiveicon.R$attr: int tintMode +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextAppearanceActive(int) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long time +com.tencent.bugly.BuglyStrategy: BuglyStrategy() +wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_strokeColor +com.google.android.gms.common.api.AvailabilityException +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +okio.Timeout: long timeoutNanos +androidx.preference.R$styleable: int Preference_isPreferenceVisible +wangdaye.com.geometricweather.R$attr: int borderWidth +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String img +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeIcePrecipitation() +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object call() +androidx.vectordrawable.R$id: int text2 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial Imperial +androidx.appcompat.R$attr: int arrowShaftLength +com.google.android.material.R$color: int mtrl_textinput_hovered_box_stroke_color +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_minWidth +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_hide_bubble +james.adaptiveicon.R$id: int activity_chooser_view_content +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Medium +androidx.recyclerview.R$dimen: int compat_button_inset_vertical_material +androidx.appcompat.view.menu.ListMenuItemView: void setTitle(java.lang.CharSequence) +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_checkableBehavior +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_type +okhttp3.Request: Request(okhttp3.Request$Builder) +com.google.android.material.R$styleable: int ImageFilterView_warmth +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: MfHistoryResult() +com.google.android.material.theme.MaterialComponentsViewInflater: MaterialComponentsViewInflater() okhttp3.Response$Builder: okhttp3.Response$Builder priorResponse(okhttp3.Response) -com.google.android.material.R$attr: int liftOnScrollTargetViewId -okio.Buffer: okio.BufferedSink writeIntLe(int) -io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.Observer) -com.google.android.material.R$styleable: int Tooltip_android_minHeight -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_layout -androidx.cardview.R$attr: int cardUseCompatPadding -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_disabled_holo_dark -androidx.appcompat.widget.SearchView: SearchView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$string: int minutely_overview -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int layout_constraintCircleAngle -com.xw.repo.bubbleseekbar.R$style: int AlertDialog_AppCompat -com.google.android.material.slider.RangeSlider: void setTickVisible(boolean) -androidx.preference.R$anim: int abc_slide_in_bottom -wangdaye.com.geometricweather.R$attr: int msb_handleColor -com.google.android.material.R$dimen: int abc_text_size_large_material -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_bar_title_item -com.xw.repo.bubbleseekbar.R$attr: int colorAccent -androidx.preference.R$styleable: int Toolbar_collapseContentDescription -retrofit2.CompletableFutureCallAdapterFactory -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void cancelTimer() -androidx.constraintlayout.widget.R$attr: int buttonBarNeutralButtonStyle -androidx.activity.R$attr -androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_right_mtrl_light -androidx.constraintlayout.widget.R$color: int abc_tint_edittext -wangdaye.com.geometricweather.R$drawable: int ic_briefing -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void innerError(java.lang.Throwable) -cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,cyanogenmod.app.CustomTile,android.os.UserHandle,long) -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_NFC -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.concurrent.atomic.AtomicReference error -com.baidu.location.indoor.mapversion.c.a$d: void b(java.lang.String) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_RatingBar_Small -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModePasteDrawable -androidx.constraintlayout.widget.R$layout: int abc_screen_toolbar -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer grassLevel -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setShortDescription(java.lang.String) -wangdaye.com.geometricweather.R$style: int PreferenceFragmentList_Material -androidx.fragment.R$string -cyanogenmod.app.Profile$Type: Profile$Type() -wangdaye.com.geometricweather.R$styleable: int TextAppearance_fontVariationSettings -com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Linear -cyanogenmod.providers.CMSettings$Global: boolean putLong(android.content.ContentResolver,java.lang.String,long) -androidx.coordinatorlayout.R$drawable: int notification_bg_normal -okhttp3.RealCall$AsyncCall: RealCall$AsyncCall(okhttp3.RealCall,okhttp3.Callback) -android.didikee.donate.R$style: int Widget_AppCompat_Light_SearchView -wangdaye.com.geometricweather.db.entities.HistoryEntity: java.util.Date getDate() -okhttp3.WebSocket$Factory: okhttp3.WebSocket newWebSocket(okhttp3.Request,okhttp3.WebSocketListener) -wangdaye.com.geometricweather.R$attr: int showMotionSpec -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontWeight -com.tencent.bugly.crashreport.crash.h5.a -wangdaye.com.geometricweather.R$attr: int listChoiceIndicatorMultipleAnimated -com.google.android.material.R$attr: int cornerFamilyBottomRight -okhttp3.internal.tls.DistinguishedNameParser: java.lang.String dn -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: boolean isDisposed() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_91 -io.reactivex.internal.subscriptions.SubscriptionArbiter: org.reactivestreams.Subscription actual -wangdaye.com.geometricweather.R$id: int star_1 -com.tencent.bugly.crashreport.BuglyHintException: BuglyHintException(java.lang.String) -wangdaye.com.geometricweather.R$string: int temperature -com.google.android.material.R$styleable: int SearchView_voiceIcon -androidx.preference.R$layout: int support_simple_spinner_dropdown_item -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customPixelDimension -com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_overlapAnchor -com.google.android.material.R$dimen: int hint_alpha_material_dark -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void replayFinal() -wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_icon -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable -cyanogenmod.profiles.LockSettings: java.lang.String TAG -com.google.android.material.R$dimen: int cardview_default_elevation -android.didikee.donate.R$styleable: int AppCompatTheme_controlBackground -wangdaye.com.geometricweather.db.entities.HourlyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String getType() -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration precipitationDuration -com.xw.repo.bubbleseekbar.R$id: int list_item -okhttp3.Handshake: boolean equals(java.lang.Object) -androidx.viewpager.R$id -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_mode_close_item_material -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void accept(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.util.Locale locale -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean precipitation -com.google.android.material.R$styleable: int Layout_layout_constraintBottom_toBottomOf -james.adaptiveicon.R$styleable: int SearchView_queryHint -wangdaye.com.geometricweather.settings.fragments.UnitSettingsFragment: UnitSettingsFragment() -com.jaredrummler.android.colorpicker.R$dimen: int notification_action_text_size -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean residentPosition -com.amap.api.location.AMapLocation: java.lang.String getCoordType() -wangdaye.com.geometricweather.R$id: int reservedNamedId -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge +androidx.appcompat.widget.Toolbar: void setTitleMarginEnd(int) +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_drawableSize +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableCompatState: int getChangingConfigurations() +com.jaredrummler.android.colorpicker.R$attr: int collapseIcon +androidx.preference.R$attr: int enabled +androidx.transition.R$dimen: int compat_button_inset_horizontal_material +cyanogenmod.app.CustomTileListenerService: CustomTileListenerService() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowMinWidthMinor +james.adaptiveicon.R$id: int normal +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.String getMoonPhase(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_id +com.google.android.material.R$attr: int itemRippleColor +androidx.preference.R$styleable: int Preference_android_enabled +androidx.constraintlayout.widget.R$anim: int abc_slide_in_bottom +wangdaye.com.geometricweather.R$layout: int widget_day_pixel +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer wetBulbTemperature +androidx.appcompat.R$layout: int select_dialog_item_material +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.functions.Function keySelector +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onError(java.lang.Throwable) +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy +com.turingtechnologies.materialscrollbar.R$attr: int windowActionModeOverlay +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric +androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontWeight +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_singleChoiceItemLayout +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function9) +com.google.gson.internal.LazilyParsedNumber: java.lang.String value +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_dither +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_maxWidth +com.google.android.material.R$styleable: int TextInputLayout_endIconDrawable +cyanogenmod.app.LiveLockScreenInfo: cyanogenmod.app.LiveLockScreenInfo clone() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice +io.reactivex.internal.subscriptions.DeferredScalarSubscription +androidx.vectordrawable.R$color: R$color() +androidx.lifecycle.Transformations$2: androidx.lifecycle.MediatorLiveData val$result +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: int getCity_code() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: AccuCurrentResult$Precip1hr$Metric() +wangdaye.com.geometricweather.R$styleable: int AlertDialog_multiChoiceItemLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX: void setBrands(java.util.List) +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceScreenStyle +okhttp3.internal.http2.Http2Stream: okio.Sink getSink() +androidx.appcompat.R$styleable: int PopupWindow_overlapAnchor +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_width_overflow_material +io.reactivex.Observable: io.reactivex.Observable buffer(long,long,java.util.concurrent.TimeUnit) +okhttp3.Headers: java.util.Date getDate(java.lang.String) +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: ThemeVersion$ThemeVersionImpl3() +androidx.vectordrawable.animated.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_backgroundColorStart +okhttp3.internal.http1.Http1Codec: okio.BufferedSink sink +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getNo2Color(android.content.Context) +androidx.vectordrawable.R$styleable: int GradientColor_android_startY +retrofit2.internal.EverythingIsNonNull +com.google.android.material.R$attr: int navigationIcon +com.google.android.gms.common.internal.zag: zag(com.google.android.gms.common.api.internal.OnConnectionFailedListener) +com.google.android.material.R$layout: int abc_action_bar_title_item +androidx.drawerlayout.R$drawable: int notification_template_icon_low_bg +cyanogenmod.profiles.ConnectionSettings$1 +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconCheckable +com.turingtechnologies.materialscrollbar.R$layout: int design_layout_snackbar +com.google.android.material.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +com.amap.api.location.AMapLocationClientOption: boolean k +com.bumptech.glide.R$drawable: int notification_bg_low_pressed +androidx.constraintlayout.widget.R$drawable: int tooltip_frame_light +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okhttp3.ResponseBody delegate +androidx.appcompat.app.ActionBar: void addOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context) +androidx.viewpager.R$attr +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelMenuListWidth +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_Solid +okio.Buffer$1: void write(int) +okhttp3.internal.cache.DiskLruCache: java.io.File directory +okhttp3.internal.http2.Http2Stream$StreamTimeout: okhttp3.internal.http2.Http2Stream this$0 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BLUETOOTH_ACCEPT_ALL_FILES_VALIDATOR +com.xw.repo.bubbleseekbar.R$attr: int collapseIcon +com.turingtechnologies.materialscrollbar.R$style: int CardView +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeStepGranularity +com.google.android.material.R$styleable: int AppCompatTheme_editTextBackground +com.google.android.material.R$attr: int fabCradleVerticalOffset +cyanogenmod.app.LiveLockScreenInfo: java.lang.String toString() +androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +com.google.android.material.R$attr: int titleMarginEnd +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar_Colored +androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context,android.util.AttributeSet) +retrofit2.Utils: java.lang.reflect.Type[] EMPTY_TYPE_ARRAY +wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragThreshold +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabText +com.tencent.bugly.proguard.f: byte[] k +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontWeight +retrofit2.Response: retrofit2.Response error(int,okhttp3.ResponseBody) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void dispose() +com.google.android.material.R$styleable: int StateListDrawableItem_android_drawable +james.adaptiveicon.R$attr: int actionModeWebSearchDrawable +androidx.work.R$styleable: int GradientColorItem_android_color +androidx.work.R$attr: int font +retrofit2.OkHttpCall: void cancel() +com.google.android.material.R$styleable: int MaterialCalendar_daySelectedStyle +cyanogenmod.weather.RequestInfo: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$styleable: int ActionMode_subtitleTextStyle +androidx.preference.R$styleable: int SearchView_suggestionRowLayout +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListPopupWindow +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: void setUnit(java.lang.String) +com.google.gson.JsonIOException: JsonIOException(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.Alert: long getAlertId() +wangdaye.com.geometricweather.db.entities.LocationEntityDao: wangdaye.com.geometricweather.db.entities.LocationEntity readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setOnSwitchListener(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout$OnSwitchListener) +cyanogenmod.profiles.AirplaneModeSettings: void setValue(int) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.R$style: int notification_large_title_text +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setId(java.lang.Long) +com.amap.api.location.DPoint: double getLatitude() +wangdaye.com.geometricweather.R$drawable: int notif_temp_7 +wangdaye.com.geometricweather.R$id: int container_main_aqi +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.util.Date getDate() +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar +com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingTop() +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_track_mtrl_alpha +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton +com.google.android.material.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.R$drawable: int notif_temp_23 +androidx.core.R$dimen: int notification_action_text_size +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.R$styleable: int OnSwipe_moveWhenScrollAtTop +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int SearchView_searchIcon +com.tencent.bugly.crashreport.crash.c: void a(boolean,boolean,boolean) +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: android.graphics.Rect getWindowInsets() +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin +cyanogenmod.app.ProfileGroup: java.util.UUID getUuid() +okio.Okio: okio.BufferedSource buffer(okio.Source) +james.adaptiveicon.R$styleable: int[] FontFamilyFont +androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +com.google.android.material.R$styleable: int Chip_android_textSize +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode OVERRIDE +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIcon +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_elevation +wangdaye.com.geometricweather.R$styleable: int Chip_chipEndPadding +androidx.appcompat.R$attr: int customNavigationLayout +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow snow +com.baidu.location.e.l$b: java.lang.String a(com.baidu.location.e.l$b) +androidx.fragment.app.FragmentManagerState +androidx.lifecycle.LifecycleRegistry: void addObserver(androidx.lifecycle.LifecycleObserver) +com.google.gson.internal.LinkedTreeMap: java.lang.Object remove(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_android_checkable +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign +cyanogenmod.app.ICustomTileListener +io.reactivex.exceptions.MissingBackpressureException: long serialVersionUID +wangdaye.com.geometricweather.R$string: int settings_category_forecast +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_icon +wangdaye.com.geometricweather.R$array: int distance_unit_values +com.google.android.material.R$style: int Theme_Design_NoActionBar +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property MinuteInterval +android.didikee.donate.R$layout: int abc_screen_toolbar +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textColorSearchUrl +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: int UnitType +androidx.constraintlayout.widget.R$styleable: int ImageFilterView_altSrc +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setSwitchView(wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float o3 +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy[] values() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getGrassDescription() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabText +cyanogenmod.providers.CMSettings$System$1: boolean validate(java.lang.String) +com.google.android.gms.location.ActivityRecognitionResult +com.google.android.material.R$color: int design_default_color_on_secondary +androidx.constraintlayout.widget.R$styleable: int ActionBarLayout_android_layout_gravity +androidx.appcompat.R$styleable: int ActionBar_customNavigationLayout +androidx.constraintlayout.widget.R$string: int abc_menu_enter_shortcut_label +com.google.android.material.R$styleable: int CardView_cardPreventCornerOverlap +com.turingtechnologies.materialscrollbar.R$dimen: int notification_big_circle_margin +okhttp3.Cookie: java.lang.String toString(boolean) +wangdaye.com.geometricweather.R$attr: int defaultDuration +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getCheckedIcon() +okhttp3.Dispatcher +cyanogenmod.weather.ICMWeatherManager +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_night_2 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: void setCaiyun(java.lang.String) +wangdaye.com.geometricweather.R$color: int material_blue_grey_900 +com.google.android.material.R$styleable: int AppCompatTheme_windowActionBar +androidx.loader.R$id: int actions +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_allowDividerAfterLastItem +com.google.android.material.R$styleable: int MenuItem_android_alphabeticShortcut +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitationDuration +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_BottomSheet +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int prefetch +james.adaptiveicon.R$color: int foreground_material_light +androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +cyanogenmod.app.Profile$ExpandedDesktopMode: int ENABLE +androidx.work.R$id: int normal +com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean k +androidx.preference.R$attr: int closeItemLayout +io.reactivex.internal.disposables.DisposableHelper: boolean dispose(java.util.concurrent.atomic.AtomicReference) +cyanogenmod.app.ICustomTileListener$Stub: cyanogenmod.app.ICustomTileListener asInterface(android.os.IBinder) +wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_android_color +androidx.preference.R$attr: int textLocale +com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_android_entries +com.google.android.material.R$attr: int endIconCheckable +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_negativeButtonText +androidx.lifecycle.extensions.R$dimen: int notification_action_text_size +com.google.android.material.R$drawable: int material_ic_calendar_black_24dp +wangdaye.com.geometricweather.R$styleable: int[] SwitchPreferenceCompat +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dark +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWeatherPhase() +androidx.appcompat.R$attr: int contentInsetStartWithNavigation +com.jaredrummler.android.colorpicker.R$styleable: int[] LinearLayoutCompat +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,java.util.concurrent.Callable,boolean) +wangdaye.com.geometricweather.R$styleable: int[] Spinner +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Title +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMarkTint +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_dialogTitle +com.turingtechnologies.materialscrollbar.R$attr: int borderWidth +androidx.drawerlayout.R$styleable +com.google.android.material.R$id: int material_hour_text_input +james.adaptiveicon.R$color: int abc_hint_foreground_material_light +androidx.appcompat.R$layout: int abc_tooltip +com.google.gson.stream.JsonScope: int EMPTY_OBJECT +okhttp3.internal.http2.Http2Codec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) +wangdaye.com.geometricweather.R$id: int textinput_suffix_text +androidx.preference.R$styleable: int Preference_layout +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_Light +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: boolean isDisposed() +cyanogenmod.app.Profile: cyanogenmod.profiles.LockSettings getScreenLockMode() +androidx.viewpager.R$styleable: R$styleable() +com.xw.repo.bubbleseekbar.R$attr: int titleMarginEnd +com.google.android.material.R$styleable: int Transition_staggered +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView +com.google.android.material.R$styleable: int Slider_tickColor +james.adaptiveicon.R$style: int AlertDialog_AppCompat_Light +androidx.viewpager.widget.PagerTabStrip: PagerTabStrip(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$id: int action_mode_bar +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_material_light +com.amap.api.location.AMapLocation: java.lang.String getPoiName() +com.google.android.material.R$attr: int materialCalendarYearNavigationButton +okhttp3.Cookie: java.lang.String domain +android.didikee.donate.R$style: int Theme_AppCompat_Light_DarkActionBar +android.didikee.donate.R$dimen: int disabled_alpha_material_dark +retrofit2.ParameterHandler$Part: okhttp3.Headers headers +wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +android.didikee.donate.R$attr: int dividerVertical +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation getPrecipitation() +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetEndWithActions +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox +com.bumptech.glide.R$styleable: int ColorStateListItem_alpha +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat_Dark +android.didikee.donate.R$style: int Base_Widget_AppCompat_SeekBar +com.tencent.bugly.crashreport.common.info.a: boolean u +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat +androidx.appcompat.R$dimen: int abc_text_size_caption_material +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy TRANSFORMED +androidx.appcompat.R$styleable: int FontFamily_fontProviderAuthority +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void cancel(java.lang.Object) +com.google.android.material.textfield.TextInputLayout: void setEndIconDrawable(android.graphics.drawable.Drawable) +com.tencent.bugly.crashreport.common.info.PlugInBean: PlugInBean(android.os.Parcel) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void drainLoop() +wangdaye.com.geometricweather.db.entities.AlertEntity: int getPriority() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitationProbability +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_holo_dark +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_sheet_modal_elevation +com.google.android.material.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Header$Listener headersListener +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: CallExecuteObservable$CallDisposable(retrofit2.Call) +com.google.android.material.R$styleable: int TextInputLayout_startIconDrawable +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer degreeDayTemperature +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: java.util.concurrent.atomic.AtomicReference timer +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String f +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalGap +com.jaredrummler.android.colorpicker.R$style: int Preference_Information_Material +com.amap.api.location.AMapLocation: void setCityCode(java.lang.String) +cyanogenmod.os.Build: java.lang.String getString(java.lang.String) +com.google.android.material.R$color: int abc_search_url_text +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +com.turingtechnologies.materialscrollbar.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.R$drawable: int notif_temp_56 +okhttp3.CertificatePinner: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_disabled_holo_light +androidx.hilt.R$attr: int font +okhttp3.internal.http2.Http2Stream$FramingSink: void write(okio.Buffer,long) +james.adaptiveicon.R$dimen: int abc_text_size_title_material +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int OTHER_STATE_CONSUMED_OR_EMPTY +cyanogenmod.profiles.AirplaneModeSettings: int describeContents() +wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragScale +io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionTitle +androidx.lifecycle.Transformations$2: androidx.arch.core.util.Function val$switchMapFunction +androidx.preference.R$string: int abc_menu_function_shortcut_label +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWeatherStart(java.lang.String) +androidx.viewpager2.R$styleable +com.xw.repo.bubbleseekbar.R$color: int foreground_material_light +androidx.appcompat.R$dimen: int abc_disabled_alpha_material_dark +com.google.android.material.R$attr: int checkedIconEnabled +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_visible +androidx.preference.R$attr: int preferenceTheme +wangdaye.com.geometricweather.R$id: int mtrl_child_content_container +androidx.appcompat.view.menu.ListMenuItemView: ListMenuItemView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTemperature(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_43 +james.adaptiveicon.R$anim: int abc_fade_out +wangdaye.com.geometricweather.R$dimen: int mtrl_chip_pressed_translation_z +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getWeatherKind() +com.tencent.bugly.proguard.y: byte[] a() +com.tencent.bugly.BuglyStrategy: java.lang.String getAppVersion() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: java.lang.String Unit +com.tencent.bugly.proguard.y: int c +android.didikee.donate.R$style: int Base_Widget_AppCompat_ProgressBar +com.github.rahatarmanahmed.cpv.CircularProgressView: void updatePaint() +androidx.constraintlayout.widget.R$id: int tag_screen_reader_focusable +com.google.android.material.R$styleable: int Toolbar_contentInsetEnd +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_INACTIVE +com.bumptech.glide.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$drawable: int widget_trend_daily +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setSunRise(java.lang.String) +androidx.lifecycle.ReportFragment: androidx.lifecycle.ReportFragment$ActivityInitializationListener mProcessListener +wangdaye.com.geometricweather.R$string: int feedback_click_to_get_more +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX() +androidx.constraintlayout.widget.R$attr: int windowActionBar +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.R$styleable: int[] MaterialAlertDialog +androidx.viewpager.widget.PagerTitleStrip: void setGravity(int) +okio.ByteString: okio.ByteString read(java.io.InputStream,int) +androidx.activity.R$id: int accessibility_custom_action_21 +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Bridge +okhttp3.internal.ws.WebSocketReader: void processNextFrame() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: CaiYunMainlyResult$AlertsBean() +com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetBottom +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_pressed_holo_light +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: org.reactivestreams.Subscription upstream +com.google.android.gms.common.server.FavaDiagnosticsEntity +com.google.android.material.R$attr: int subtitle +okhttp3.internal.http2.Http2Reader$ContinuationSource: int length +com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialCardView +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable +okhttp3.internal.http2.Http2Reader: void readPriority(okhttp3.internal.http2.Http2Reader$Handler,int) +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: java.lang.Runnable getWrappedRunnable() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Long getId() +com.turingtechnologies.materialscrollbar.R$id: int action_mode_bar +com.turingtechnologies.materialscrollbar.R$attr: int overlapAnchor +androidx.recyclerview.R$attr: int alpha +com.xw.repo.bubbleseekbar.R$id: int screen +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionProviderClass +android.didikee.donate.R$attr: int selectableItemBackgroundBorderless +com.xw.repo.bubbleseekbar.R$id: int action_mode_bar_stub +okhttp3.internal.http1.Http1Codec$FixedLengthSink: boolean closed +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a: java.util.Map d +com.google.android.material.R$id: int decelerate +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_min_width_major +androidx.appcompat.resources.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.R$dimen: int design_tab_text_size_2line +james.adaptiveicon.R$style: int Widget_Compat_NotificationActionText +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton +androidx.appcompat.R$dimen: int abc_text_size_display_4_material +com.tencent.bugly.proguard.y$a: boolean a(java.lang.String) +android.support.v4.os.ResultReceiver$1: java.lang.Object createFromParcel(android.os.Parcel) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReferenceArray values +james.adaptiveicon.R$styleable: int MenuItem_actionProviderClass +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Year +androidx.constraintlayout.widget.R$integer: R$integer() +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dropDownListViewStyle +wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_shapeAppearance +androidx.viewpager.R$color: int notification_action_color_filter +com.google.android.material.appbar.AppBarLayout: void addOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$BaseOnOffsetChangedListener) +retrofit2.DefaultCallAdapterFactory$1: java.util.concurrent.Executor val$executor +cyanogenmod.externalviews.KeyguardExternalView: void onAttachedToWindow() +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonText +com.jaredrummler.android.colorpicker.R$attr: int cpv_allowPresets +com.google.android.material.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf +com.bumptech.glide.integration.okhttp.R$id: int start +com.google.android.material.internal.ScrimInsetsFrameLayout: void setScrimInsetForeground(android.graphics.drawable.Drawable) +androidx.appcompat.R$dimen: int tooltip_precise_anchor_threshold +androidx.preference.R$styleable: int SwitchPreferenceCompat_switchTextOff +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setBuglyLogUpload(boolean) +androidx.appcompat.widget.SearchView +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter +james.adaptiveicon.R$attr: int goIcon +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_textAllCaps +com.jaredrummler.android.colorpicker.R$dimen: int hint_alpha_material_light +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontWeight +okhttp3.TlsVersion: okhttp3.TlsVersion forJavaName(java.lang.String) +okio.SegmentedByteString: boolean equals(java.lang.Object) +cyanogenmod.providers.DataUsageContract: java.lang.String BYTES +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getRealFeelTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +com.bumptech.glide.R$styleable: int[] GradientColor +androidx.transition.R$styleable: int GradientColor_android_startY +androidx.constraintlayout.widget.R$attr: int brightness +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +okhttp3.internal.ws.WebSocketProtocol: void validateCloseCode(int) +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken valueOf(java.lang.String) +androidx.preference.R$attr: int state_above_anchor +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_entries +com.google.android.material.R$styleable: int MenuItem_tooltipText +androidx.drawerlayout.R$style +okhttp3.internal.http2.Http2Stream: okhttp3.Headers takeHeaders() +com.google.android.gms.location.ActivityRecognitionResult: android.os.Parcelable$Creator CREATOR +android.didikee.donate.R$styleable: int AppCompatTheme_selectableItemBackground +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_android_minHeight +com.jaredrummler.android.colorpicker.R$styleable: int ActionBarLayout_android_layout_gravity +okhttp3.internal.tls.DistinguishedNameParser: int beg +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircleRadius +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPrimary() +com.google.android.material.R$layout: int material_clock_display_divider +androidx.work.R$styleable: int GradientColor_android_endColor +com.google.android.material.R$id: int aligned +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean getWind() +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver parent +com.tencent.bugly.proguard.y: boolean b(boolean) +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: void onLiveLockScreenChanged(cyanogenmod.app.LiveLockScreenInfo) +com.google.android.material.R$dimen: int mtrl_card_spacing +androidx.hilt.R$id: int accessibility_custom_action_2 +com.google.android.material.R$styleable: int ConstraintSet_barrierMargin +com.google.android.material.R$attr: int ratingBarStyle +okhttp3.internal.Util: int skipLeadingAsciiWhitespace(java.lang.String,int,int) +wangdaye.com.geometricweather.R$string: int settings_summary_appearance +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setHttpTimeOut(long) +androidx.preference.R$attr: int dialogPreferenceStyle +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +cyanogenmod.app.Profile$TriggerType: int WIFI +james.adaptiveicon.R$styleable: int RecycleListView_paddingTopNoTitle +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void goAway(int,okhttp3.internal.http2.ErrorCode,okio.ByteString) +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_hideMotionSpec +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int IconCode +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: java.lang.Float value +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSmallPopupMenu +com.google.android.material.R$styleable: int Transition_pathMotionArc +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedPath(java.lang.String) +wangdaye.com.geometricweather.R$id: int fill_horizontal +androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_android_src +wangdaye.com.geometricweather.R$attr: int subtitleTextStyle +com.turingtechnologies.materialscrollbar.R$dimen: int notification_action_text_size +androidx.preference.R$dimen: int abc_action_bar_stacked_tab_max_width +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitleTextAppearance +io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_READY +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +com.turingtechnologies.materialscrollbar.R$attr: int listMenuViewStyle +androidx.preference.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconTintMode +okio.RealBufferedSink: boolean isOpen() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Headline +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: ChineseCityEntityDao$Properties() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_min +cyanogenmod.externalviews.KeyguardExternalView$3: int val$width +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath +wangdaye.com.geometricweather.R$string: int feedback_today_precipitation_alert +james.adaptiveicon.R$drawable: int abc_ic_star_half_black_16dp +com.google.android.material.R$id: int tag_unhandled_key_event_manager +cyanogenmod.hardware.CMHardwareManager: int[] getDisplayGammaCalibrationArray(int) +androidx.dynamicanimation.R$id: int actions +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getLtoSource() +androidx.appcompat.widget.ActionMenuView: android.graphics.drawable.Drawable getOverflowIcon() +retrofit2.CallAdapter: java.lang.Object adapt(retrofit2.Call) +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okhttp3.MediaType contentType() +com.turingtechnologies.materialscrollbar.R$integer: int abc_config_activityShortDur +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder socket(java.net.Socket) +wangdaye.com.geometricweather.R$string: int feedback_readd_location +okhttp3.Address: okhttp3.Authenticator proxyAuthenticator() +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent WALLPAPER +androidx.preference.PreferenceCategory +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: void run() +com.jaredrummler.android.colorpicker.R$color: int foreground_material_dark +com.google.android.material.R$dimen: int compat_button_inset_vertical_material +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +com.google.android.material.R$dimen: int mtrl_calendar_action_confirm_button_min_width +com.google.android.material.R$dimen: int material_cursor_inset_bottom +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_min +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_chainStyle +okhttp3.internal.http.HttpHeaders: void parseChallengeHeader(java.util.List,okio.Buffer) +wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: DaoMaster$OpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory) +androidx.appcompat.R$styleable: int SearchView_queryBackground +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Subhead +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean mShouldShow +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: void setGravitySensorEnabled(boolean) +com.jaredrummler.android.colorpicker.R$styleable: int[] RecycleListView +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_toTopOf +androidx.hilt.work.R$color: int notification_icon_bg_color +androidx.preference.R$style: int Animation_AppCompat_Tooltip +com.bumptech.glide.R$drawable: int notify_panel_notification_icon_bg +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void complete(java.lang.Object) +cyanogenmod.weather.CMWeatherManager$2$2: cyanogenmod.weather.CMWeatherManager$2 this$1 +com.jaredrummler.android.colorpicker.ColorPickerView: void setSliderTrackerColor(int) +com.turingtechnologies.materialscrollbar.CustomIndicator: CustomIndicator(android.content.Context) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Spinner +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder dispatcher(okhttp3.Dispatcher) +androidx.lifecycle.ComputableLiveData$1 +com.xw.repo.bubbleseekbar.R$id: int right_side +cyanogenmod.app.Profile: int mDozeMode +wangdaye.com.geometricweather.R$style: int AndroidThemeColorAccentYellow +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_arrow_drop_right_black_24dp +okhttp3.internal.connection.StreamAllocation: void streamFailed(java.io.IOException) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void drain() +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startY +io.reactivex.Observable: io.reactivex.Observable hide() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlNormal +wangdaye.com.geometricweather.search.SearchActivity: SearchActivity() +androidx.work.R$layout: int notification_template_custom_big +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.http.HttpCodec httpStream() +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onError(java.lang.Throwable) +androidx.activity.R$styleable +com.amap.api.location.AMapLocation: java.lang.String g(com.amap.api.location.AMapLocation,java.lang.String) +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark_normal_background +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +android.didikee.donate.R$attr: int actionMenuTextColor +wangdaye.com.geometricweather.R$layout: int material_timepicker_textinput_display +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: AccuCurrentResult$DewPoint() +androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_Toolbar +cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_APP_SUGGESTIONS +android.didikee.donate.R$attr: int thumbTint +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_popupMenuStyle +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit MGPCUM +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorError +com.amap.api.location.AMapLocation: void setLocationDetail(java.lang.String) +androidx.preference.R$styleable: int Preference_defaultValue +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Title +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceFragment +com.turingtechnologies.materialscrollbar.R$style: int Platform_ThemeOverlay_AppCompat_Light +androidx.appcompat.R$styleable: int MenuItem_android_onClick +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorButtonNormal +okio.ByteString: boolean startsWith(byte[]) +com.google.android.material.R$styleable: int TextInputLayout_errorTextColor +cyanogenmod.hardware.CMHardwareManager: int FEATURE_PERSISTENT_STORAGE +cyanogenmod.providers.CMSettings$Secure: java.lang.String WEATHER_PROVIDER_SERVICE +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$y +okhttp3.internal.http2.Header: java.lang.String TARGET_METHOD_UTF8 +james.adaptiveicon.R$dimen: int abc_control_corner_material +retrofit2.RequestFactory: boolean hasBody +cyanogenmod.externalviews.ExternalViewProviderService$1 +io.reactivex.Observable: io.reactivex.Observable switchMapMaybeDelayError(io.reactivex.functions.Function) +okhttp3.internal.cache.DiskLruCache$Editor: void abort() +android.didikee.donate.R$styleable +okhttp3.internal.http2.Huffman: void addCode(int,int,byte) +androidx.appcompat.widget.AppCompatImageButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +com.google.android.material.R$styleable: int Constraint_flow_verticalAlign +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_popupBackground +com.xw.repo.bubbleseekbar.R$attr: int fontProviderPackage +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_corner_radius_material +cyanogenmod.profiles.BrightnessSettings: boolean mDirty +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation RIGHT +wangdaye.com.geometricweather.R$drawable: int notif_temp_44 +androidx.hilt.lifecycle.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +okhttp3.ConnectionSpec: okhttp3.CipherSuite[] APPROVED_CIPHER_SUITES +com.xw.repo.bubbleseekbar.R$anim: int abc_fade_in +james.adaptiveicon.R$styleable: int Toolbar_titleTextAppearance +com.google.android.material.chip.Chip: void setChecked(boolean) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_android_textAppearance +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_showDelay +androidx.appcompat.R$dimen: int abc_switch_padding +com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat +androidx.appcompat.R$styleable: int[] ButtonBarLayout +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_alpha +wangdaye.com.geometricweather.R$attr: int fontProviderFetchStrategy +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData this$0 +com.google.android.material.R$style: int Base_Widget_Design_TabLayout +wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary_dark +com.xw.repo.bubbleseekbar.R$style: int Widget_Compat_NotificationActionContainer +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.disposables.CompositeDisposable set +androidx.constraintlayout.widget.R$color: int dim_foreground_disabled_material_dark +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: java.lang.String getRelativeHumidityText(float) +com.google.android.material.R$styleable: int Transition_transitionFlags +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getGrassDescription() +com.turingtechnologies.materialscrollbar.R$attr: int maxButtonHeight +james.adaptiveicon.R$color: int primary_dark_material_dark +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: boolean isValid() +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_navigationMode +com.google.android.material.R$styleable: int Layout_layout_constraintBaseline_creator +james.adaptiveicon.R$id: int action_divider +retrofit2.ParameterHandler$HeaderMap: int p +android.didikee.donate.R$drawable: int abc_ic_voice_search_api_material +android.didikee.donate.R$anim: int abc_popup_enter +androidx.recyclerview.R$styleable +wangdaye.com.geometricweather.R$id: int activity_weather_daily_title +cyanogenmod.themes.IThemeService$Stub: cyanogenmod.themes.IThemeService asInterface(android.os.IBinder) +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.http.HttpCodec httpCodec +androidx.preference.ListPreference$SavedState: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$styleable: int MaterialCardView_rippleColor +com.google.android.material.tabs.TabLayout: void setOnTabSelectedListener(com.google.android.material.tabs.TabLayout$BaseOnTabSelectedListener) +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.functions.Function mapper +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_stroke_width_default +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.Observer downstream +androidx.legacy.coreutils.R$styleable: int GradientColor_android_tileMode +android.didikee.donate.R$styleable: int SwitchCompat_track +com.xw.repo.bubbleseekbar.R$style: int Widget_Support_CoordinatorLayout +wangdaye.com.geometricweather.R$styleable: int[] AlertDialog +cyanogenmod.providers.CMSettings$Secure: java.lang.String PROTECTED_COMPONENTS +androidx.appcompat.widget.Toolbar: int getContentInsetEndWithActions() +androidx.work.R$id: int info +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: AccuAlertResult$Area() +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabText +wangdaye.com.geometricweather.R$layout: int cpv_dialog_color_picker +com.google.android.material.R$styleable: int TextAppearance_android_fontFamily +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_CAMELLIA_128_CBC_SHA +com.google.android.material.R$dimen: int abc_dialog_min_width_major +androidx.vectordrawable.animated.R$id: int right_icon +androidx.lifecycle.Lifecycle: void addObserver(androidx.lifecycle.LifecycleObserver) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_textLocale +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float no2 +androidx.constraintlayout.widget.R$styleable: int Toolbar_buttonGravity +io.reactivex.Observable: Observable() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.view.View onCreateView() +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light +androidx.customview.R$style: int TextAppearance_Compat_Notification_Title +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] PREVAILING_RULE com.google.android.material.R$attr: int materialCalendarHeaderSelection -androidx.drawerlayout.R$drawable: int notification_bg_normal_pressed -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float ice -james.adaptiveicon.R$styleable: int Toolbar_contentInsetEndWithActions -androidx.lifecycle.LiveData: void onActive() -wangdaye.com.geometricweather.R$attr: int materialThemeOverlay -okhttp3.internal.tls.DistinguishedNameParser: char getUTF8() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getRainPrecipitationProbability() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Colored -wangdaye.com.geometricweather.R$id: int circular_sky -james.adaptiveicon.R$styleable: int MenuItem_android_onClick -com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator -androidx.appcompat.R$styleable: int AppCompatTheme_tooltipForegroundColor -io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) -wangdaye.com.geometricweather.R$id: int item_card_display_sortButton -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_android_entryValues -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -com.google.android.material.R$style: int Widget_MaterialComponents_ShapeableImageView -com.google.android.material.R$style: int ShapeAppearanceOverlay -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: boolean active -androidx.hilt.lifecycle.R$layout -com.bumptech.glide.R$dimen: int compat_notification_large_icon_max_width -okhttp3.Cache$1: void remove(okhttp3.Request) -okhttp3.Cache$Entry: boolean matches(okhttp3.Request,okhttp3.Response) -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context,android.util.AttributeSet,int) -androidx.lifecycle.extensions.R$attr -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Button -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: int getChartBottom() -okhttp3.Cache$1: void update(okhttp3.Response,okhttp3.Response) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cdp -okio.Buffer: okio.Buffer writeShortLe(int) -wangdaye.com.geometricweather.R$drawable: int notif_temp_81 -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: void enqueue(retrofit2.Callback) -androidx.appcompat.R$attr: int autoCompleteTextViewStyle -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPreDestroyed(android.app.Activity) -android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.os.IBinder mRemote -cyanogenmod.providers.CMSettings$Secure: java.lang.String BUTTON_BRIGHTNESS -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: int getStatus() -com.google.android.material.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List guomin -android.didikee.donate.R$styleable: int View_paddingStart -com.jaredrummler.android.colorpicker.R$attr: int thumbTextPadding -androidx.activity.R$attr: int fontWeight -com.amap.api.location.AMapLocationQualityReport: int c -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean() -androidx.coordinatorlayout.R$id: int action_text -com.jaredrummler.android.colorpicker.R$style: int Platform_V25_AppCompat -wangdaye.com.geometricweather.db.entities.MinutelyEntity: MinutelyEntity() -androidx.fragment.R$id: int forever -okio.ByteString: okio.ByteString hmac(java.lang.String,okio.ByteString) -org.greenrobot.greendao.database.DatabaseOpenHelper: int version -com.google.android.material.R$attr: int checkedIconMargin -cyanogenmod.weatherservice.IWeatherProviderService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -androidx.preference.R$styleable: int MenuItem_android_numericShortcut -com.tencent.bugly.crashreport.common.info.a: byte b -com.jaredrummler.android.colorpicker.R$style: int PreferenceFragment_Material -androidx.appcompat.view.menu.ListMenuItemView: void setGroupDividerEnabled(boolean) -androidx.preference.R$layout -androidx.preference.R$attr: int preferenceScreenStyle -androidx.preference.R$styleable: int[] GradientColor -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_alt_shortcut_label -james.adaptiveicon.R$styleable: int MenuItem_android_checked -wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_minWidth -okhttp3.Response: java.lang.String message() -com.tencent.bugly.proguard.x: boolean d(java.lang.String,java.lang.Object[]) -com.tencent.bugly.crashreport.common.info.a: long S -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginRight -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarButtonStyle -com.tencent.bugly.proguard.x: boolean b(java.lang.String,java.lang.Object[]) -wangdaye.com.geometricweather.R$layout: int item_details +com.xw.repo.bubbleseekbar.R$layout: int notification_template_icon_group +com.tencent.bugly.crashreport.crash.CrashDetailBean: boolean j +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context) +com.turingtechnologies.materialscrollbar.R$attr: int dialogPreferredPadding +com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_checkbox +james.adaptiveicon.R$attr: int panelMenuListTheme +androidx.transition.R$styleable: int FontFamily_fontProviderAuthority +androidx.work.R$id: int text +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour MATCH_CONSTRAINT +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_UK +wangdaye.com.geometricweather.R$layout: int dialog_animatable_icon +androidx.appcompat.view.menu.ActionMenuItemView: void setCheckable(boolean) +androidx.lifecycle.SavedStateHandleController: void attachHandleIfNeeded(androidx.lifecycle.ViewModel,androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) +cyanogenmod.providers.CMSettings$System: java.lang.String HOME_WAKE_SCREEN +wangdaye.com.geometricweather.R$styleable: int PropertySet_layout_constraintTag +wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context,android.util.AttributeSet,int) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_2 +wangdaye.com.geometricweather.db.entities.DaoMaster: void dropAllTables(org.greenrobot.greendao.database.Database,boolean) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.Observer downstream +com.google.android.material.appbar.CollapsingToolbarLayout: int getMaxLines() +com.google.android.gms.common.api.ApiException: ApiException(com.google.android.gms.common.api.Status) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_78 +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_MaterialCalendar_NavigationButton +com.google.android.material.R$style: R$style() +retrofit2.http.QueryMap: boolean encoded() +retrofit2.RequestBuilder: okhttp3.HttpUrl$Builder urlBuilder +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setGpsFirstTimeout(long) +com.amap.api.fence.GeoFence: int STATUS_UNKNOWN +androidx.preference.R$styleable: int CheckBoxPreference_android_summaryOff +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.R$drawable: int mtrl_ic_arrow_drop_down +androidx.recyclerview.widget.RecyclerView: void setScrollState(int) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Counter +com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_text +androidx.appcompat.R$attr: int seekBarStyle +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setNumberString(java.lang.String) +androidx.core.R$drawable: int notification_icon_background +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$color: int material_on_surface_emphasis_high_type +androidx.hilt.work.R$id: int accessibility_custom_action_4 +android.support.v4.os.ResultReceiver: ResultReceiver(android.os.Parcel) +com.tencent.bugly.crashreport.common.info.a: java.lang.String L +androidx.appcompat.R$attr: int controlBackground +james.adaptiveicon.R$styleable: R$styleable() +androidx.preference.R$id: int list_item +wangdaye.com.geometricweather.R$attr: int mock_labelColor +androidx.preference.R$style: int Base_Widget_AppCompat_ListView +androidx.hilt.lifecycle.R$attr: int fontProviderQuery +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: long serialVersionUID +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Menu +com.tencent.bugly.proguard.l: boolean a(long,long) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime realtime +androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context,android.util.AttributeSet,int) +com.bumptech.glide.R$drawable: int notification_template_icon_bg +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog +cyanogenmod.providers.CMSettings$Secure: CMSettings$Secure() +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: java.util.List value +wangdaye.com.geometricweather.R$attr: int defaultValue +androidx.constraintlayout.widget.R$attr: int alertDialogCenterButtons +androidx.appcompat.R$attr: int drawableTintMode +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean done +wangdaye.com.geometricweather.R$styleable: int Transform_android_rotationX +cyanogenmod.profiles.BrightnessSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +com.google.android.material.R$attr: int isLightTheme +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: double Value +androidx.preference.R$styleable: int[] CompoundButton +wangdaye.com.geometricweather.R$drawable: int abc_ic_search_api_material +wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_container +androidx.work.R$dimen +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_Alert +retrofit2.Call: okio.Timeout timeout() +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onComplete() +com.google.android.material.R$attr: int state_above_anchor +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void fail(java.lang.Throwable,io.reactivex.Observer,io.reactivex.internal.queue.SpscLinkedArrayQueue) +com.google.android.material.R$styleable: int[] ButtonBarLayout +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver +com.google.android.material.button.MaterialButton: void addOnCheckedChangeListener(com.google.android.material.button.MaterialButton$OnCheckedChangeListener) +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean removeProfile(cyanogenmod.app.Profile) +cyanogenmod.profiles.RingModeSettings: boolean mDirty +com.google.android.material.R$styleable: int[] ProgressIndicator +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +com.google.android.material.R$attr: int navigationViewStyle +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean isCancelled() +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_text_size +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String PrimaryPostalCode +james.adaptiveicon.R$attr: int dialogTheme +androidx.appcompat.R$attr: int measureWithLargestChild +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +retrofit2.RequestFactory$Builder: void parseMethodAnnotation(java.lang.annotation.Annotation) +cyanogenmod.app.ProfileGroup: boolean mDirty +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_73 +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView +com.amap.api.location.AMapLocation: java.lang.String k(com.amap.api.location.AMapLocation,java.lang.String) +com.google.android.material.R$attr: int region_widthMoreThan +wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_showOldColor +com.xw.repo.bubbleseekbar.R$attr: int panelBackground +androidx.constraintlayout.widget.R$id: int search_src_text +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy LATEST +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_weight +com.tencent.bugly.crashreport.common.info.a: java.lang.String aa +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: float mMin +okhttp3.internal.http.HttpDate: HttpDate() +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Primary +com.tencent.bugly.crashreport.crash.e: void b() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity humidity +retrofit2.Platform: retrofit2.Platform get() +retrofit2.ParameterHandler$Path: boolean encoded +com.tencent.bugly.crashreport.BuglyLog: void e(java.lang.String,java.lang.String,java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextBackground +android.didikee.donate.R$color: int abc_primary_text_material_dark +cyanogenmod.providers.CMSettings$System: java.util.Map VALIDATORS +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_fontFamily +okhttp3.ConnectionPool: void evictAll() +com.turingtechnologies.materialscrollbar.R$attr: int tabTextAppearance +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem +retrofit2.adapter.rxjava2.CallEnqueueObservable: retrofit2.Call originalCall +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDaylight(boolean) +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int maxConcurrency +androidx.appcompat.R$id: int tabMode +wangdaye.com.geometricweather.R$dimen: int tooltip_margin +androidx.viewpager2.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.R$attr: int trackTintMode +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginStart +androidx.transition.R$dimen: int notification_content_margin_start +androidx.constraintlayout.widget.R$attr: int customDimension +androidx.preference.R$styleable: int SwitchPreferenceCompat_summaryOn +com.turingtechnologies.materialscrollbar.R$attr: int collapseContentDescription +androidx.preference.R$drawable: int abc_list_pressed_holo_dark +com.google.android.material.R$styleable: int Constraint_layout_constraintDimensionRatio +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_extra_spacing_horizontal +com.google.gson.internal.LinkedTreeMap: int size() +com.google.android.gms.base.R$color: int common_google_signin_btn_text_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.util.List getValue() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Summary +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial +okhttp3.internal.cache.DiskLruCache: int redundantOpCount +androidx.drawerlayout.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleContentDescription +com.google.gson.stream.JsonReader +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_9 +androidx.appcompat.R$styleable: int MenuItem_actionViewClass +androidx.viewpager.R$drawable: R$drawable() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider +com.turingtechnologies.materialscrollbar.R$attr: int panelBackground +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerColor +cyanogenmod.externalviews.ExternalView$8: ExternalView$8(cyanogenmod.externalviews.ExternalView) +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_middle_mtrl_light +cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup mDefaultGroup +io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean isCancelled() +androidx.constraintlayout.widget.R$styleable: int Constraint_android_scaleX +com.google.android.material.R$attr: int layout_constrainedWidth +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_dotGap +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceTheme +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$color: int primary_text_default_material_light +wangdaye.com.geometricweather.R$styleable: int Chip_shapeAppearanceOverlay +wangdaye.com.geometricweather.R$attr: int errorIconDrawable +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setBadge(com.google.android.material.badge.BadgeDrawable) +androidx.constraintlayout.widget.R$styleable: int SearchView_searchHintIcon +james.adaptiveicon.R$drawable: int abc_btn_check_material +android.didikee.donate.R$style: int TextAppearance_AppCompat_Display1 +androidx.constraintlayout.widget.R$id: int easeOut +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +com.google.android.material.bottomnavigation.BottomNavigationView: void setOnNavigationItemSelectedListener(com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemSelectedListener) +androidx.lifecycle.ProcessLifecycleOwner: int mStartedCounter +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver +wangdaye.com.geometricweather.R$color: int weather_source_caiyun +com.xw.repo.bubbleseekbar.R$attr: int titleMarginStart +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_font +androidx.transition.R$id: int transition_current_scene +com.google.android.material.R$color: int material_slider_thumb_color +androidx.preference.R$style: int Widget_AppCompat_Light_ListPopupWindow +androidx.appcompat.R$id: int accessibility_custom_action_18 +androidx.appcompat.R$id: int accessibility_custom_action_7 +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type SLACK +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +com.google.android.material.R$dimen: int mtrl_calendar_maximum_default_fullscreen_minor_axis +androidx.constraintlayout.widget.R$dimen: int abc_config_prefDialogWidth +cyanogenmod.providers.CMSettings$System: int getInt(android.content.ContentResolver,java.lang.String,int) +androidx.preference.R$attr: int hideOnContentScroll +androidx.constraintlayout.widget.R$styleable: int PropertySet_android_alpha +okhttp3.internal.Util: okio.ByteString UTF_16_LE_BOM +wangdaye.com.geometricweather.R$styleable: int Layout_barrierDirection +android.didikee.donate.R$styleable: int MenuView_android_windowAnimationStyle +androidx.swiperefreshlayout.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$attr: int chipSurfaceColor +androidx.coordinatorlayout.R$dimen: int notification_right_icon_size +androidx.recyclerview.widget.StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem +android.didikee.donate.R$styleable: int DrawerArrowToggle_barLength okio.Options -okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot next() -com.tencent.bugly.proguard.z: boolean a(java.lang.String) -okhttp3.internal.http2.Hpack$Reader: okio.ByteString readByteString() -androidx.appcompat.R$styleable: int[] SearchView -com.google.android.material.R$attr: int actionModePasteDrawable -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getShortRealFeeTemperature(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -cyanogenmod.app.suggest.ApplicationSuggestion: void writeToParcel(android.os.Parcel,int) -okhttp3.internal.Util: okhttp3.Headers toHeaders(java.util.List) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTheme -wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_appStore -org.greenrobot.greendao.AbstractDaoSession: void runInTx(java.lang.Runnable) -com.tencent.bugly.crashreport.BuglyLog: void e(java.lang.String,java.lang.String) -com.google.android.material.R$attr: int textColorAlertDialogListItem -com.xw.repo.bubbleseekbar.R$id: int search_close_btn -com.tencent.bugly.proguard.n: com.tencent.bugly.proguard.n a() -wangdaye.com.geometricweather.R$id: int selected -com.google.gson.stream.JsonWriter: void setHtmlSafe(boolean) -androidx.preference.R$dimen: int abc_action_bar_overflow_padding_start_material -androidx.vectordrawable.R$id: int accessibility_custom_action_11 -retrofit2.ParameterHandler$2: retrofit2.ParameterHandler this$0 -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks mCallback -androidx.constraintlayout.widget.R$attr: int flow_verticalStyle -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_DropDown -io.reactivex.internal.util.NotificationLite: boolean accept(java.lang.Object,org.reactivestreams.Subscriber) -androidx.hilt.work.R$bool: int enable_system_foreground_service_default -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date getPublishDate() -com.google.android.material.R$attr: int alertDialogTheme -androidx.constraintlayout.widget.R$attr: int transitionPathRotate -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_creator -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_SearchResult_Title -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginRight -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatPressedTranslationZResource(int) -androidx.lifecycle.ViewModelProvider$KeyedFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) -com.google.android.gms.location.places.PlaceReport: android.os.Parcelable$Creator CREATOR -com.google.android.material.bottomappbar.BottomAppBar: void setFabAnimationMode(int) -androidx.lifecycle.SavedStateHandleController: boolean isAttached() -androidx.swiperefreshlayout.R$attr: int fontProviderFetchTimeout -io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.MaybeObserver) -wangdaye.com.geometricweather.R$drawable: int ic_tag_plus -com.google.android.material.R$color: int mtrl_btn_transparent_bg_color -androidx.vectordrawable.animated.R$attr: int fontProviderQuery -com.google.android.material.R$attr: int layout_keyline -okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean canceled -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: KeyguardExternalViewProviderService$Provider$ProviderImpl(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider,cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -wangdaye.com.geometricweather.R$id: int mtrl_view_tag_bottom_padding -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onComplete() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWetBulbTemperature -androidx.preference.R$drawable: int abc_btn_radio_material_anim -wangdaye.com.geometricweather.R$attr: int fontStyle -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constrainedWidth -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onError(java.lang.Throwable) -androidx.lifecycle.SavedStateHandle: java.util.Set keys() -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onDetach() -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_29 -androidx.preference.R$layout: int abc_activity_chooser_view -com.jaredrummler.android.colorpicker.R$id: int action_divider -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar -com.jaredrummler.android.colorpicker.R$layout: int abc_screen_simple -com.amap.api.location.AMapLocation: double getAltitude() -androidx.appcompat.R$styleable: int Toolbar_subtitleTextColor -androidx.appcompat.R$attr: int thumbTextPadding -james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyle -androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableItem_android_id -wangdaye.com.geometricweather.R$id: int item_card_display -cyanogenmod.hardware.ThermalListenerCallback: ThermalListenerCallback() -wangdaye.com.geometricweather.R$layout: int container_main_daily_trend_card -io.reactivex.Observable: io.reactivex.Observable concatMapEagerDelayError(io.reactivex.functions.Function,int,int,boolean) -okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.PushObserver pushObserver -androidx.appcompat.R$drawable: int abc_switch_track_mtrl_alpha -okhttp3.internal.connection.RouteSelector: void resetNextInetSocketAddress(java.net.Proxy) -com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchTextAppearance -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: int getMarginTop() -io.reactivex.internal.subscriptions.EmptySubscription: void complete(org.reactivestreams.Subscriber) -androidx.appcompat.R$drawable: R$drawable() -com.google.android.material.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.R$id: int square -james.adaptiveicon.R$styleable: int SearchView_android_inputType -wangdaye.com.geometricweather.R$string: int settings_notification_hide_in_lockScreen_off -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_left_mtrl_dark -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: AccuCurrentResult$PrecipitationSummary$Past12Hours() -cyanogenmod.app.CustomTile: java.lang.String label -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_textColorHint -io.reactivex.internal.observers.DeferredScalarDisposable: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetStart -android.didikee.donate.R$color: int primary_text_default_material_dark -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -cyanogenmod.weather.WeatherLocation: java.lang.String access$302(cyanogenmod.weather.WeatherLocation,java.lang.String) -com.github.rahatarmanahmed.cpv.CircularProgressView$5: CircularProgressView$5(com.github.rahatarmanahmed.cpv.CircularProgressView) -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_RadioButton -com.google.android.material.R$dimen: int action_bar_size -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostCreated(android.app.Activity,android.os.Bundle) -androidx.fragment.R$dimen: int notification_main_column_padding_top -androidx.appcompat.R$styleable: int AppCompatTheme_buttonStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindDirection(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_backgroundTint -okhttp3.Response: okhttp3.Response networkResponse() -cyanogenmod.weatherservice.ServiceRequestResult$1 -cyanogenmod.weatherservice.ServiceRequestResult: void writeToParcel(android.os.Parcel,int) -com.xw.repo.bubbleseekbar.R$attr: int colorPrimary -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: java.lang.Object invoke(java.lang.Object) -wangdaye.com.geometricweather.R$id: int text_input_end_icon -cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit -wangdaye.com.geometricweather.R$drawable: int notif_temp_63 -cyanogenmod.externalviews.KeyguardExternalView$4 -androidx.preference.R$color: int highlighted_text_material_dark -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setPageCount(int) -wangdaye.com.geometricweather.R$id: int item_about_link_text -retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler parseParameterAnnotation(int,java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation) -cyanogenmod.app.CustomTile$1: cyanogenmod.app.CustomTile createFromParcel(android.os.Parcel) -james.adaptiveicon.R$style: int Base_V23_Theme_AppCompat_Light -androidx.coordinatorlayout.R$attr: int layout_anchorGravity -com.google.android.material.R$styleable: int Chip_closeIconVisible -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_padding_start_material -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded -androidx.constraintlayout.utils.widget.ImageFilterView: void setRoundPercent(float) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor -io.reactivex.Observable: io.reactivex.Observable dematerialize(io.reactivex.functions.Function) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getDate() -androidx.lifecycle.ProcessLifecycleOwner$2: void onResume() -android.didikee.donate.R$dimen: int notification_media_narrow_margin -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -james.adaptiveicon.R$attr: int customNavigationLayout -androidx.preference.R$string: int abc_menu_meta_shortcut_label -androidx.appcompat.R$layout: int abc_list_menu_item_checkbox -androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotation -androidx.preference.R$id: int edit_query -com.google.android.material.R$attr: int tabTextAppearance -cyanogenmod.profiles.AirplaneModeSettings$BooleanState -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onNext(java.lang.Object) -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_15 -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.R$color: int design_default_color_secondary_variant -cyanogenmod.app.ProfileGroup: boolean mDefaultGroup -com.baidu.location.indoor.mapversion.c.c$b -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_longpressed_holo -com.google.gson.stream.JsonWriter: java.lang.String indent -okhttp3.internal.connection.StreamAllocation: okhttp3.EventListener eventListener -androidx.constraintlayout.widget.R$attr: int listItemLayout -com.turingtechnologies.materialscrollbar.R$attr: int actionModePasteDrawable -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String MODIFY_ALARMS_PERMISSION -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Small_Inverse -com.tencent.bugly.crashreport.crash.CrashDetailBean: boolean k -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableEnd -okhttp3.CertificatePinner: CertificatePinner(java.util.Set,okhttp3.internal.tls.CertificateChainCleaner) -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder path(java.lang.String) -com.google.android.material.R$styleable: int SearchView_layout -com.bumptech.glide.R$id: int actions -wangdaye.com.geometricweather.R$id: int TOP_END -okio.Buffer: java.lang.String readUtf8LineStrict(long) -androidx.appcompat.R$styleable: int DrawerArrowToggle_barLength -androidx.core.R$layout: int notification_template_icon_group -androidx.constraintlayout.widget.R$attr: int wavePeriod -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstVerticalBias -com.turingtechnologies.materialscrollbar.R$color: int abc_secondary_text_material_dark -androidx.legacy.coreutils.R$color: int notification_action_color_filter -androidx.appcompat.R$string: int abc_menu_meta_shortcut_label -cyanogenmod.providers.CMSettings$Secure: java.lang.String[] LEGACY_SECURE_SETTINGS -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COMPONENT_ID -com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getStartIconContentDescription() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: int UnitType -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherPhase(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_height -androidx.preference.R$styleable: int AppCompatTheme_viewInflaterClass -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge -com.amap.api.location.CoordinateConverter$1: int[] a -com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_indicator_material -androidx.appcompat.R$attr: int dividerVertical -androidx.constraintlayout.widget.R$styleable: int Spinner_android_popupBackground -wangdaye.com.geometricweather.R$styleable: int SearchView_commitIcon -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: double visibility -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_2_material -com.bumptech.glide.integration.okhttp.R$id: int notification_main_column -com.google.android.material.bottomnavigation.BottomNavigationView: void setElevation(float) -cyanogenmod.media.MediaRecorder: MediaRecorder() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_97 -com.google.android.material.R$color: int design_fab_stroke_top_outer_color -com.google.android.material.R$styleable: int SearchView_queryBackground -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onActionModeStarted(android.view.ActionMode) -com.google.android.material.R$dimen: int abc_config_prefDialogWidth -androidx.recyclerview.R$layout: int notification_action_tombstone -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_toBottomOf -com.bumptech.glide.R$attr: int keylines -android.didikee.donate.R$anim: int abc_slide_in_top -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent SOUND -com.amap.api.location.AMapLocation: java.lang.String l -com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_entryValues -com.tencent.bugly.proguard.p: boolean a(int,java.lang.String,com.tencent.bugly.proguard.o) -okhttp3.internal.ws.WebSocketProtocol: int B0_MASK_OPCODE -com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: java.util.concurrent.atomic.AtomicReference upstream -com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text -androidx.lifecycle.extensions.R$drawable: int notification_tile_bg -androidx.coordinatorlayout.R$styleable: int GradientColor_android_endY -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.preference.R$color: int primary_material_light -com.google.android.material.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase getMoonPhase() -androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedWidthMajor() +james.adaptiveicon.R$styleable: int Toolbar_titleMarginStart +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert +androidx.transition.R$integer +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: int Degrees +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night Night +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_multiChoiceItemLayout com.google.android.material.R$styleable: int Transition_autoTransition -wangdaye.com.geometricweather.R$attr: int circleCrop -com.google.android.material.button.MaterialButton: void setStrokeColor(android.content.res.ColorStateList) -com.google.android.material.circularreveal.CircularRevealRelativeLayout: int getCircularRevealScrimColor() -androidx.preference.R$styleable: int SearchView_queryBackground -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void dispose() -com.google.android.material.R$attr: int transitionPathRotate -androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Line2 -com.google.android.material.R$styleable: int ThemeEnforcement_android_textAppearance -androidx.constraintlayout.widget.R$attr: int switchTextAppearance -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String humidity -com.google.android.material.R$styleable: int KeyAttribute_transitionEasing -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean m -android.didikee.donate.R$attr: int contentInsetEndWithActions -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: int getSuggestedMinimumHeight() -com.google.android.material.R$color: int design_default_color_primary -com.amap.api.location.AMapLocation: org.json.JSONObject toJson(int) -com.jaredrummler.android.colorpicker.R$id: int shades_divider -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Longitude -io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: int skip -wangdaye.com.geometricweather.R$font: int product_sans_light_italic -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setIcePrecipitationProbability(java.lang.Float) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Large_Inverse -okhttp3.internal.cache.DiskLruCache$Snapshot: okhttp3.internal.cache.DiskLruCache$Editor edit() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String caiyun -androidx.fragment.R$styleable: int FontFamilyFont_fontStyle -com.turingtechnologies.materialscrollbar.R$styleable: int[] FontFamily -com.jaredrummler.android.colorpicker.R$color: int abc_secondary_text_material_dark -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeDegreeDayTemperature -com.turingtechnologies.materialscrollbar.R$attr: int enforceMaterialTheme -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_to_on_mtrl_015 -androidx.appcompat.R$styleable: int ColorStateListItem_android_color -androidx.constraintlayout.widget.R$drawable: int btn_radio_on_mtrl -com.google.android.material.R$style: int Theme_MaterialComponents_Light_LargeTouch -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String zh_CN -com.google.android.material.slider.Slider: void setStepSize(float) -com.xw.repo.bubbleseekbar.R$attr: int colorError -androidx.appcompat.R$color: int bright_foreground_inverse_material_light -com.google.android.material.R$attr: int behavior_draggable -cyanogenmod.providers.CMSettings$Global: int getIntForUser(android.content.ContentResolver,java.lang.String,int) -cyanogenmod.app.ThemeVersion: int CM11 -okhttp3.internal.platform.Platform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -com.xw.repo.bubbleseekbar.R$color: int ripple_material_dark -com.jaredrummler.android.colorpicker.R$attr: int alertDialogButtonGroupStyle -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year -com.google.android.material.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -cyanogenmod.themes.ThemeChangeRequest: int getNumChangesRequested() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_alert_dialog_button_dimen -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -wangdaye.com.geometricweather.R$attr: int passwordToggleContentDescription -androidx.appcompat.R$attr: int arrowHeadLength -wangdaye.com.geometricweather.R$id: int widget_clock_day_center -androidx.activity.R$dimen: int compat_button_inset_horizontal_material -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_thumb_text -androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveShape -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.appcompat.resources.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date startDate -cyanogenmod.app.Profile$TriggerState: int ON_CONNECT -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_ASSIST_ACTION_VALIDATOR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.util.List value -com.turingtechnologies.materialscrollbar.R$dimen: int abc_disabled_alpha_material_light -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge -io.reactivex.disposables.RunnableDisposable: java.lang.String toString() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.lang.String getUnit() -wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_max -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_to_on_mtrl_000 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_android_textAppearance -io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiFunction,io.reactivex.functions.Consumer) -com.tencent.bugly.crashreport.crash.jni.b: void a(boolean,java.lang.String) -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$id: int async -okio.AsyncTimeout: okio.AsyncTimeout next -wangdaye.com.geometricweather.R$id: int item_card_display_container -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_3DES_EDE_CBC_MD5 -okhttp3.OkHttpClient: okhttp3.Dns dns -cyanogenmod.providers.CMSettings$Secure: java.lang.String STATS_COLLECTION_REPORTED -androidx.work.R$id: int accessibility_custom_action_19 -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit -wangdaye.com.geometricweather.R$xml: int widget_clock_day_week -androidx.constraintlayout.widget.R$id: int expanded_menu -com.turingtechnologies.materialscrollbar.R$dimen: int notification_large_icon_width -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String cityId -com.google.android.gms.base.R$string: int common_signin_button_text_long -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_summaryOff -okhttp3.Dispatcher: java.util.concurrent.ExecutorService executorService -com.bumptech.glide.integration.okhttp.R$id: int icon -com.google.android.gms.common.api.AvailabilityException: com.google.android.gms.common.ConnectionResult getConnectionResult(com.google.android.gms.common.api.HasApiKey) -androidx.appcompat.R$styleable: int ActionBar_navigationMode -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animDuration -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_type -james.adaptiveicon.R$style: int Base_V26_Widget_AppCompat_Toolbar -com.baidu.location.indoor.mapversion.c.a$d: void a(java.lang.String) -wangdaye.com.geometricweather.R$string: int error_icon_content_description -com.tencent.bugly.proguard.am: java.lang.String l -okhttp3.internal.ws.RealWebSocket: java.util.List ONLY_HTTP1 -androidx.preference.R$styleable: int AppCompatTextView_drawableStartCompat -okhttp3.OkHttpClient$Builder: int writeTimeout -com.google.android.material.slider.RangeSlider: java.util.List getValues() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -com.amap.api.fence.GeoFence: void setRadius(float) -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnAttachStateChangeListener(com.google.android.material.snackbar.BaseTransientBottomBar$OnAttachStateChangeListener) -androidx.preference.R$id: int title_template -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String logo -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_rebuildResourceCache -okhttp3.FormBody: FormBody(java.util.List,java.util.List) -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconSize -wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event BACKGROUND_UPDATE -androidx.vectordrawable.animated.R$styleable: int[] FontFamily -com.turingtechnologies.materialscrollbar.R$attr: int buttonGravity -james.adaptiveicon.R$dimen: int abc_text_size_display_4_material -com.tencent.bugly.crashreport.common.info.a: int K() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: AccuCurrentResult$RealFeelTemperature() -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onNext(java.lang.Object) -com.google.android.material.R$color: int mtrl_chip_ripple_color -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RealFeelTemperature -androidx.viewpager2.R$style: R$style() -com.google.android.material.R$id: int bounce -io.reactivex.internal.observers.LambdaObserver: boolean hasCustomOnError() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar -androidx.lifecycle.Transformations$2: androidx.lifecycle.MediatorLiveData val$result -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -cyanogenmod.externalviews.IExternalViewProvider: void onResume() +io.reactivex.internal.disposables.EmptyDisposable: void clear() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: double visibility +com.jaredrummler.android.colorpicker.R$string: int abc_shareactionprovider_share_with_application +com.jaredrummler.android.colorpicker.R$layout: int notification_template_icon_group +james.adaptiveicon.R$attr: int backgroundTintMode +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.google.android.material.R$attr: int drawableTintMode +com.xw.repo.bubbleseekbar.R$style: int Base_V22_Theme_AppCompat +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_visible +androidx.appcompat.R$styleable: int Spinner_android_popupBackground +com.google.android.material.R$dimen: int abc_button_inset_vertical_material +okhttp3.Cache$Entry: okhttp3.Handshake handshake +com.google.android.material.slider.Slider: void setThumbStrokeWidth(float) +com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrimColor(int) +james.adaptiveicon.R$dimen: int abc_floating_window_z +james.adaptiveicon.R$dimen: int tooltip_horizontal_padding +com.turingtechnologies.materialscrollbar.Indicator: void setSizeCustom(int) +retrofit2.OptionalConverterFactory$OptionalConverter: retrofit2.Converter delegate +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTemperature(android.content.Context,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_CBC_SHA +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_48dp +james.adaptiveicon.R$styleable: int MenuItem_android_enabled +com.google.android.material.progressindicator.ProgressIndicator: void setAnimatorDurationScaleProvider(com.google.android.material.progressindicator.AnimatorDurationScaleProvider) +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_3 +androidx.appcompat.R$dimen: int tooltip_horizontal_padding +androidx.preference.R$styleable: int ViewBackgroundHelper_android_background +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit PERCENT +io.reactivex.internal.util.NotificationLite: java.lang.Object getValue(java.lang.Object) +okhttp3.internal.platform.OptionalMethod: java.lang.Class[] methodParams +androidx.appcompat.R$attr: int buttonBarButtonStyle +wangdaye.com.geometricweather.R$attr: int layout_constraintEnd_toStartOf +com.google.android.material.R$interpolator: int mtrl_fast_out_slow_in +androidx.fragment.R$id: int accessibility_custom_action_21 +org.greenrobot.greendao.AbstractDao: java.util.List loadAllAndCloseCursor(android.database.Cursor) +com.google.android.material.R$animator: R$animator() +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$drawable: int notif_temp_130 +com.amap.api.location.AMapLocationClient: AMapLocationClient(android.content.Context) +com.google.android.gms.location.ActivityTransitionEvent: android.os.Parcelable$Creator CREATOR +cyanogenmod.power.PerformanceManager: boolean setPowerProfile(int) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +com.amap.api.location.APSService: APSService() +androidx.preference.R$string: int not_set +wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog_actions +androidx.hilt.work.R$layout +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetRight +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index aggregatedIndex +wangdaye.com.geometricweather.R$string: int key_widget_text +okhttp3.internal.cache.DiskLruCache: void completeEdit(okhttp3.internal.cache.DiskLruCache$Editor,boolean) +androidx.activity.R$integer: int status_bar_notification_info_maxnum +androidx.appcompat.widget.AppCompatTextView: int getLastBaselineToBottomHeight() +android.didikee.donate.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +androidx.vectordrawable.animated.R$styleable: int[] ColorStateListItem +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_closeIcon +com.google.android.material.R$attr: int prefixTextColor +android.didikee.donate.R$id: int decor_content_parent +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_overflow_padding_start_material +com.google.android.material.R$styleable: int ImageFilterView_brightness +android.didikee.donate.R$id: int textSpacerNoTitle +wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_collapsible +androidx.work.impl.WorkDatabase_Impl: WorkDatabase_Impl() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPm10() +androidx.preference.R$style: int TextAppearance_AppCompat_Large +cyanogenmod.themes.IThemeProcessingListener$Stub: java.lang.String DESCRIPTOR +cyanogenmod.app.IPartnerInterface$Stub$Proxy: android.os.IBinder mRemote +androidx.appcompat.R$styleable: int GradientColor_android_centerColor +androidx.work.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$attr: int hideOnScroll +androidx.loader.R$id +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabSelectedTextColor +androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context) +okio.GzipSink: java.util.zip.Deflater deflater +io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Object call() +com.google.android.material.R$styleable: int[] AnimatedStateListDrawableItem +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_normal +com.google.android.material.R$attr: int layout_goneMarginEnd +androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableItem +com.google.android.material.R$attr: int fastScrollHorizontalThumbDrawable +cyanogenmod.weather.WeatherInfo$DayForecast$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$string: int allergen +com.google.android.material.R$color: int mtrl_popupmenu_overlay_color +okhttp3.Connection: okhttp3.Route route() +androidx.preference.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +okhttp3.internal.ws.RealWebSocket$2: okhttp3.internal.ws.RealWebSocket this$0 +io.reactivex.Observable: io.reactivex.Single toList(java.util.concurrent.Callable) +com.jaredrummler.android.colorpicker.R$id: int edit_query +wangdaye.com.geometricweather.R$id: int switchWidget +com.google.gson.stream.JsonToken +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_24 +wangdaye.com.geometricweather.db.entities.AlertEntityDao +androidx.appcompat.R$dimen: int abc_text_size_medium_material +androidx.drawerlayout.R$id +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX indices +cyanogenmod.hardware.IThermalListenerCallback$Stub: java.lang.String DESCRIPTOR +com.google.android.material.R$attr: int autoSizeStepGranularity +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollEnabled +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_commitIcon +com.google.android.material.R$attr: int expandedTitleMarginTop +androidx.preference.R$drawable: int abc_textfield_default_mtrl_alpha com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior -io.reactivex.internal.util.VolatileSizeArrayList: int indexOf(java.lang.Object) -james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -wangdaye.com.geometricweather.R$attr: int showDelay -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: int getTemperature(int) -wangdaye.com.geometricweather.R$attr: int cpv_previewSize -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA -com.google.android.material.R$styleable: int PropertySet_android_alpha -cyanogenmod.themes.ThemeManager -wangdaye.com.geometricweather.R$id: int fixed -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String detail -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean -com.tencent.bugly.proguard.w: java.util.concurrent.atomic.AtomicInteger d() -androidx.appcompat.widget.ScrollingTabContainerView: void setTabSelected(int) -androidx.appcompat.widget.Toolbar: int getCurrentContentInsetLeft() -android.didikee.donate.R$color: int background_floating_material_light -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -com.tencent.bugly.crashreport.common.info.b: java.lang.String n() -androidx.lifecycle.extensions.R$id: int tag_accessibility_pane_title -okhttp3.Authenticator$1 -android.didikee.donate.R$styleable: int AlertDialog_listItemLayout -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_horizontal_padding -james.adaptiveicon.R$string: int abc_searchview_description_clear -io.reactivex.Observable: io.reactivex.Observable buffer(int,int,java.util.concurrent.Callable) -com.tencent.bugly.crashreport.common.info.b: boolean j(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int[] Badge -com.xw.repo.bubbleseekbar.R$dimen: int notification_main_column_padding_top -com.google.android.material.button.MaterialButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$attr: int bsb_max -io.reactivex.Observable: io.reactivex.Observable concatEager(java.lang.Iterable) -okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache this$0 -androidx.constraintlayout.widget.R$attr: int spinnerStyle -androidx.customview.R$styleable: int FontFamilyFont_font -okhttp3.internal.cache.DiskLruCache: boolean removeEntry(okhttp3.internal.cache.DiskLruCache$Entry) -wangdaye.com.geometricweather.R$drawable: int notif_temp_127 -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindDircEnd(java.lang.String) -androidx.appcompat.R$attr: int ratingBarStyleSmall -james.adaptiveicon.R$dimen: int notification_large_icon_height -cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(android.os.Parcel,cyanogenmod.weather.WeatherInfo$1) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -cyanogenmod.app.PartnerInterface: int ZEN_MODE_OFF -androidx.viewpager2.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.R$id: int preset -androidx.appcompat.widget.ViewStubCompat: ViewStubCompat(android.content.Context,android.util.AttributeSet) -androidx.appcompat.widget.SearchView$SavedState -wangdaye.com.geometricweather.R$styleable: int Transform_android_translationZ -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_GLOBAL -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_font -cyanogenmod.profiles.ConnectionSettings: boolean isOverride() -androidx.preference.R$attr: int seekBarPreferenceStyle -cyanogenmod.providers.CMSettings$System: java.lang.String VOLBTN_MUSIC_CONTROLS -com.jaredrummler.android.colorpicker.R$drawable: int cpv_btn_background_pressed -wangdaye.com.geometricweather.R$styleable: int[] Toolbar -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onComplete() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date getTo() -james.adaptiveicon.R$dimen: int abc_text_size_small_material -androidx.activity.R$string: R$string() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl mImpl -com.turingtechnologies.materialscrollbar.Indicator: void setSizeCustom(int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: double Value -com.google.android.material.R$styleable: int Chip_rippleColor -com.jaredrummler.android.colorpicker.R$string: int abc_menu_alt_shortcut_label -com.google.android.gms.common.api.ApiException: com.google.android.gms.common.api.Status mStatus -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindDircStart() -wangdaye.com.geometricweather.R$attr: int switchTextOn -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_orientation -wangdaye.com.geometricweather.R$attr: int closeItemLayout -com.xw.repo.bubbleseekbar.R$string: int abc_search_hint -com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_Tooltip -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.Observer downstream -com.amap.api.fence.GeoFence$1 -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: Temperature(int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer) -com.google.android.material.R$dimen: int item_touch_helper_swipe_escape_max_velocity -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_YearNavigationButton -james.adaptiveicon.R$styleable: int ActivityChooserView_initialActivityCount -androidx.constraintlayout.widget.R$styleable: int Transition_layoutDuringTransition -com.google.android.material.R$styleable: int ChipGroup_checkedChip -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_selectableItemBackground -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -cyanogenmod.util.ColorUtils$1: ColorUtils$1() -com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_middle_mtrl_dark -com.google.android.material.R$attr: int itemIconSize -com.github.rahatarmanahmed.cpv.CircularProgressView: android.animation.AnimatorSet createIndeterminateAnimator(float) -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.AlertEntity) -com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_hovered_focused -io.reactivex.internal.subscriptions.EmptySubscription: java.lang.Object poll() -com.jaredrummler.android.colorpicker.R$dimen: int cpv_dialog_preview_width -james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -wangdaye.com.geometricweather.common.rxjava.BaseObserver: BaseObserver() -com.amap.api.location.AMapLocationQualityReport: com.amap.api.location.AMapLocationClientOption$AMapLocationMode a -androidx.appcompat.resources.R$id: int title -james.adaptiveicon.R$drawable: int abc_cab_background_top_material -com.google.android.material.R$styleable: int Constraint_layout_constrainedHeight -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIconTintMode -androidx.work.R$id: int accessibility_custom_action_16 -androidx.hilt.R$styleable: int[] FragmentContainerView -androidx.recyclerview.R$id: int accessibility_custom_action_28 -retrofit2.ParameterHandler$FieldMap: int p -okio.ByteString: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_orientation -androidx.loader.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.R$dimen: int design_bottom_sheet_elevation -okhttp3.ConnectionPool: okhttp3.internal.connection.RouteDatabase routeDatabase -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) -wangdaye.com.geometricweather.R$attr: int allowStacking -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Light -okhttp3.MultipartBody$Part: okhttp3.Headers headers -androidx.activity.R$style: int Widget_Compat_NotificationActionContainer -androidx.lifecycle.LiveData: boolean hasActiveObservers() -android.didikee.donate.R$attr: int queryBackground -com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_swipe_escape_max_velocity -androidx.viewpager.R$styleable: int FontFamilyFont_fontStyle -android.didikee.donate.R$style: int Theme_AppCompat_Dialog_MinWidth -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRainPrecipitation(java.lang.Float) -wangdaye.com.geometricweather.R$styleable: int[] GradientColor -com.google.android.material.R$id: int accessibility_custom_action_23 -com.turingtechnologies.materialscrollbar.R$drawable: int design_fab_background -io.reactivex.internal.util.VolatileSizeArrayList: boolean containsAll(java.util.Collection) -io.reactivex.Observable: io.reactivex.Observable zipWith(java.lang.Iterable,io.reactivex.functions.BiFunction) -wangdaye.com.geometricweather.R$id: int widget_day_week_center -androidx.appcompat.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -androidx.constraintlayout.widget.R$attr: int actionBarWidgetTheme -wangdaye.com.geometricweather.R$style: int TestStyleWithThemeLineHeightAttribute -okhttp3.OkHttpClient -com.google.android.material.R$id: int selection_type -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtended(boolean) -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetLeft -com.tencent.bugly.proguard.ak: com.tencent.bugly.proguard.ai j -androidx.appcompat.R$id: int notification_main_column_container -androidx.appcompat.R$styleable: int ActionBar_hideOnContentScroll -androidx.preference.R$styleable: int TextAppearance_android_textColorHint -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_4 -androidx.core.app.ComponentActivity: ComponentActivity() -androidx.appcompat.R$id: int accessibility_custom_action_21 -com.google.android.material.R$id: int accessibility_custom_action_24 -cyanogenmod.app.ICMTelephonyManager: java.util.List getSubInformation() -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicInteger windows -wangdaye.com.geometricweather.R$attr: int tooltipText -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents -wangdaye.com.geometricweather.R$anim: int abc_fade_out -cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl access$000(cyanogenmod.externalviews.ExternalViewProviderService$Provider) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain24h -androidx.hilt.lifecycle.R$styleable: int GradientColorItem_android_color -android.didikee.donate.R$styleable: int AppCompatTheme_listDividerAlertDialog -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTopCompat -com.google.android.material.R$layout: int mtrl_picker_header_toggle -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat -android.didikee.donate.R$attr: int backgroundSplit -androidx.lifecycle.LifecycleRegistry: int getObserverCount() -com.google.android.material.R$styleable: int MaterialCalendarItem_itemStrokeWidth -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_rippleColor -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer cloudCover -androidx.work.R$id: int accessibility_custom_action_20 -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean disposed -okhttp3.internal.http2.Http2Writer: boolean client -com.tencent.bugly.proguard.ah: void a(com.tencent.bugly.proguard.i) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textColorAlertDialogListItem -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_THUNDERSTORMS -wangdaye.com.geometricweather.R$id: int dialog_location_help_providerIcon -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_STATUS_BAR -io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: int UnitType -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Insert -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX) -com.xw.repo.bubbleseekbar.R$attr: int actionModePasteDrawable -wangdaye.com.geometricweather.R$id: int icon_frame -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -cyanogenmod.app.suggest.IAppSuggestManager$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$id: int item_about_header_appVersion +okio.SegmentedByteString: java.lang.Object writeReplace() +okhttp3.internal.io.FileSystem$1: void rename(java.io.File,java.io.File) +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoSource +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator +androidx.preference.R$styleable: int AppCompatTextView_autoSizeTextType +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: java.util.ArrayDeque buffers +androidx.constraintlayout.widget.R$anim: int abc_popup_exit +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Base base +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ScheduledExecutorService access$500(okhttp3.internal.http2.Http2Connection) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver,java.lang.Throwable) +com.github.rahatarmanahmed.cpv.CircularProgressView: void updateBounds() +androidx.work.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.R$id: int widget_day_card +okhttp3.Cache$1 +cyanogenmod.hardware.CMHardwareManager: boolean checkService() +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogLayout +wangdaye.com.geometricweather.R$id: int searchContainer +androidx.preference.R$styleable: int Preference_persistent +cyanogenmod.profiles.ConnectionSettings: void processOverride(android.content.Context) +com.tencent.bugly.nativecrashreport.R +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.Function rightEnd +wangdaye.com.geometricweather.R$id: int buttonPanel +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_negativeButtonText +androidx.drawerlayout.R$attr: int alpha +android.didikee.donate.R$styleable: int AppCompatTheme_colorButtonNormal +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_displayOptions +wangdaye.com.geometricweather.R$string: int content_desc_search_filter_on +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onTimeout(long) +james.adaptiveicon.R$styleable: int AppCompatTheme_textColorSearchUrl +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Toolbar +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void setFirst(io.reactivex.internal.operators.observable.ObservableReplay$Node) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: int colorId +com.google.android.material.floatingactionbutton.FloatingActionButton: int getCustomSize() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +androidx.preference.R$id: int screen +io.reactivex.exceptions.CompositeException: void printStackTrace(java.io.PrintWriter) +wangdaye.com.geometricweather.db.entities.DaoMaster: DaoMaster(android.database.sqlite.SQLiteDatabase) +com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_CheckBox +wangdaye.com.geometricweather.R$styleable: int[] AppCompatSeekBar +com.jaredrummler.android.colorpicker.R$dimen: int abc_control_corner_material +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_SCREEN_ON_VALIDATOR +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getHaloTintList() +com.google.android.material.R$animator: int mtrl_chip_state_list_anim +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_dialogPreferenceStyle +wangdaye.com.geometricweather.R$style: int Preference_SwitchPreference_Material +com.google.android.material.R$styleable: int Constraint_motionProgress +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_NoActionBar_Bridge +com.google.android.material.R$styleable: int Layout_android_layout_marginRight +android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.google.android.material.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +androidx.hilt.R$id: int accessibility_custom_action_11 +com.google.android.material.R$id: int mtrl_calendar_main_pane +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Switch +androidx.appcompat.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +wangdaye.com.geometricweather.R$color: int colorTextTitle_dark +com.google.android.material.R$styleable: int ViewStubCompat_android_id +com.google.android.material.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +android.didikee.donate.R$attr: int defaultQueryHint +com.google.android.material.R$styleable: int Toolbar_contentInsetStartWithNavigation +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Spinner +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingTop +com.amap.api.location.DPoint: void setLatitude(double) io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver) -com.google.android.material.R$styleable: int[] MaterialAutoCompleteTextView -org.greenrobot.greendao.AbstractDao: java.lang.Object loadUnique(android.database.Cursor) -com.xw.repo.bubbleseekbar.R$id: int scrollView -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_maxWidth -androidx.lifecycle.SavedStateHandle: SavedStateHandle() -wangdaye.com.geometricweather.R$string: int key_notification_style -wangdaye.com.geometricweather.R$drawable: int ic_sunset -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver) -com.tencent.bugly.nativecrashreport.R: R() -com.google.android.material.R$styleable: int Chip_android_textSize -com.google.android.material.R$styleable: int Constraint_animate_relativeTo -androidx.constraintlayout.widget.R$styleable: int Constraint_android_scaleY -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_begin -okhttp3.internal.cache.CacheInterceptor$1: okio.BufferedSink val$cacheBody -cyanogenmod.externalviews.ExternalView$1: void onServiceConnected(android.content.ComponentName,android.os.IBinder) -com.tencent.bugly.proguard.y -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_icon -com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatHoveredFocusedTranslationZ() -wangdaye.com.geometricweather.R$id: int widget_clock_day_lunar -com.google.android.gms.common.SignInButton: void setScopes(com.google.android.gms.common.api.Scope[]) -okhttp3.internal.http1.Http1Codec$FixedLengthSource: okhttp3.internal.http1.Http1Codec this$0 -com.tencent.bugly.proguard.ao -com.jaredrummler.android.colorpicker.R$color: int primary_dark_material_light -com.bumptech.glide.MemoryCategory: float getMultiplier() -com.tencent.bugly.BuglyStrategy$a: BuglyStrategy$a() -androidx.preference.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Headline -retrofit2.RequestFactory$Builder: java.lang.annotation.Annotation[][] parameterAnnotationsArray -android.didikee.donate.R$attr: int hideOnContentScroll -okhttp3.internal.http.RealResponseBody: okio.BufferedSource source() -com.google.android.gms.location.zzay -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_alterWindow -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -com.google.android.gms.base.R$id: int light -android.didikee.donate.R$styleable: int AlertDialog_buttonIconDimen -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription this$0 -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float ice -com.google.android.material.slider.RangeSlider: void setHaloTintList(android.content.res.ColorStateList) -com.google.android.material.R$dimen: int material_emphasis_disabled -com.github.rahatarmanahmed.cpv.CircularProgressView$7: CircularProgressView$7(com.github.rahatarmanahmed.cpv.CircularProgressView) -androidx.hilt.R$id: int italic -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: int bufferSize -okhttp3.internal.cache.InternalCache: void trackConditionalCacheHit() -wangdaye.com.geometricweather.R$attr: int actionModeSelectAllDrawable -wangdaye.com.geometricweather.R$string: int cpv_transparency -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec codec() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: AccuDailyResult$DailyForecasts$Day$WindGust$Direction() -com.google.android.material.R$color: int dim_foreground_material_light -wangdaye.com.geometricweather.R$attr: int fastScrollHorizontalThumbDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: AccuCurrentResult$PrecipitationSummary$Past3Hours() -com.tencent.bugly.proguard.p: boolean a(com.tencent.bugly.proguard.p,int,java.lang.String,byte[],com.tencent.bugly.proguard.o) -com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_android_color -androidx.loader.app.LoaderManagerImpl$LoaderViewModel -androidx.appcompat.widget.FitWindowsViewGroup -cyanogenmod.app.LiveLockScreenInfo: android.os.Parcelable$Creator CREATOR -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light_normal -com.turingtechnologies.materialscrollbar.R$drawable: int abc_item_background_holo_dark -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: AccuMinuteResult() -androidx.appcompat.R$color: int primary_text_default_material_dark -wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: java.util.List getValue() -com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getLabelVisibilityMode() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert -com.google.android.material.R$dimen: int mtrl_calendar_navigation_height -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_DarkActionBar -okhttp3.internal.http2.Hpack: okhttp3.internal.http2.Header[] STATIC_HEADER_TABLE -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xsr -wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: DaoMaster$DevOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory) -wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: void onCreate(org.greenrobot.greendao.database.Database) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: void run() -com.tencent.bugly.crashreport.CrashReport: java.lang.String removeUserData(android.content.Context,java.lang.String) -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge -okhttp3.internal.http1.Http1Codec$FixedLengthSink: void close() -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase -androidx.vectordrawable.R$dimen: int notification_subtext_size -com.amap.api.location.AMapLocationClientOption: boolean u -cyanogenmod.power.IPerformanceManager$Stub$Proxy: int getPowerProfile() -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -androidx.preference.R$attr: int fontStyle -androidx.preference.R$dimen: int abc_action_bar_content_inset_material -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitleTextColor -com.turingtechnologies.materialscrollbar.R$attr: int showDividers -androidx.constraintlayout.widget.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_multichoice -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float rain -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onSubscribe(org.reactivestreams.Subscription) -androidx.core.R$styleable: int FontFamilyFont_android_font -com.google.android.material.R$drawable: int abc_cab_background_top_mtrl_alpha -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$attr: int passwordToggleDrawable -androidx.constraintlayout.widget.R$color: int material_grey_800 -com.xw.repo.bubbleseekbar.R$attr: int actionModePopupWindowStyle -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight -com.google.android.material.R$layout: int abc_alert_dialog_button_bar_material -com.turingtechnologies.materialscrollbar.R$integer: int mtrl_chip_anim_duration -james.adaptiveicon.R$styleable: int AppCompatImageView_tint -com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_COCOS2DX_LUA -com.tencent.bugly.proguard.m: int compareTo(java.lang.Object) -io.reactivex.Observable: io.reactivex.Observable retryWhen(io.reactivex.functions.Function) -com.turingtechnologies.materialscrollbar.R$attr: int materialButtonStyle -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.WeatherEntity) -wangdaye.com.geometricweather.R$color: int weather_source_caiyun -com.google.android.material.R$style: int Base_Animation_AppCompat_DropDownUp -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: AccuCurrentResult$PrecipitationSummary$PastHour$Imperial() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_shapeAppearanceOverlay -wangdaye.com.geometricweather.R$attr: int behavior_hideable -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarPopupTheme -com.google.android.material.R$dimen: int abc_search_view_preferred_width -com.tencent.bugly.proguard.z: long c(byte[]) -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay -com.turingtechnologies.materialscrollbar.R$attr: int numericModifiers -wangdaye.com.geometricweather.R$attr: int textColorAlertDialogListItem -okio.Timeout -androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModelProvider$NewInstanceFactory sInstance -cyanogenmod.themes.ThemeManager$2$1: ThemeManager$2$1(cyanogenmod.themes.ThemeManager$2,java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setDate(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_129 -androidx.appcompat.R$styleable: int ColorStateListItem_android_alpha -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: float mMax -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.Disposable upstream -com.jaredrummler.android.colorpicker.R$attr: int spinnerStyle -wangdaye.com.geometricweather.R$id: int outgoing -androidx.appcompat.R$id: int action_text -com.google.android.material.R$dimen: int abc_disabled_alpha_material_dark -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayGammaCalibration(int,int[]) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_26 -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getSo2() -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getApparentTemperature() -okhttp3.OkHttpClient$Builder: okhttp3.ConnectionPool connectionPool -androidx.constraintlayout.widget.R$attr: int actionModeSplitBackground -com.google.android.material.R$attr: int indeterminateProgressStyle -androidx.appcompat.widget.AppCompatImageView: void setBackgroundResource(int) -android.didikee.donate.R$styleable: int AppCompatTheme_android_windowAnimationStyle -androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy: ConstraintProxy$BatteryChargingProxy() -james.adaptiveicon.R$string: int abc_searchview_description_query -androidx.appcompat.R$id: int notification_background -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: int UnitType -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_CONTROL_CLOSE -cyanogenmod.hardware.ICMHardwareService -androidx.appcompat.resources.R$dimen: int compat_notification_large_icon_max_width -androidx.appcompat.R$dimen: int abc_button_inset_vertical_material -cyanogenmod.externalviews.KeyguardExternalView: boolean isInteractive() -wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_1 -androidx.dynamicanimation.R$styleable: int FontFamilyFont_font -james.adaptiveicon.R$drawable: int abc_ic_star_half_black_36dp -wangdaye.com.geometricweather.R$id: int appBar -wangdaye.com.geometricweather.R$layout: int item_about_library -com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy valueOf(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int[] KeyPosition -cyanogenmod.os.Concierge$ParcelInfo: int mParcelableVersion -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver this$0 -okio.Buffer$2 -android.didikee.donate.R$dimen: int abc_action_bar_stacked_tab_max_width -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_font -androidx.preference.R$drawable: int notification_bg -james.adaptiveicon.R$attr: int actionBarTabTextStyle -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeStyle -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: android.os.IBinder mRemote -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeDegreeDayTemperature -androidx.preference.R$attr: int arrowHeadLength -com.turingtechnologies.materialscrollbar.R$attr: int backgroundSplit -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingEnd -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isFlowable -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_divider_material -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdw -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelMenuListWidth -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setSize(int) -com.xw.repo.bubbleseekbar.R$attr: int progressBarStyle -androidx.transition.R$dimen: R$dimen() -retrofit2.ParameterHandler$Header: java.lang.String name -androidx.lifecycle.LiveData: void observe(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Observer) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_search_view_preferred_width -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String getValue() -com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackground(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_ripple_color -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: java.lang.String Unit -com.google.android.material.R$drawable: int abc_spinner_mtrl_am_alpha -james.adaptiveicon.R$styleable: int[] SwitchCompat -wangdaye.com.geometricweather.R$attr: int extendMotionSpec -com.amap.api.location.UmidtokenInfo$1: UmidtokenInfo$1() -android.didikee.donate.R$layout: int abc_screen_simple -com.google.gson.stream.JsonReader: boolean hasNext() -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: void handleMessage(android.os.Message) -androidx.appcompat.resources.R$id: int accessibility_custom_action_14 -androidx.constraintlayout.widget.R$attr: int minWidth -com.jaredrummler.android.colorpicker.R$attr: int allowDividerAfterLastItem -okhttp3.internal.http2.Http2: byte TYPE_PING -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.DailyEntity) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Title -wangdaye.com.geometricweather.R$id: int material_clock_hand -com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_visible -wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_alphaChannelVisible -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionMode -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Today -cyanogenmod.externalviews.ExternalView: void executeQueue() -james.adaptiveicon.R$dimen: int abc_action_bar_overflow_padding_start_material -wangdaye.com.geometricweather.R$drawable: int btn_checkbox_unchecked_mtrl -androidx.viewpager.R$color: int notification_icon_bg_color -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalBias -com.google.android.material.R$styleable: int TextAppearance_android_textColorLink -android.didikee.donate.R$layout: int abc_list_menu_item_layout -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierDirection -wangdaye.com.geometricweather.R$string: int settings_title_notification_style -com.google.android.material.imageview.ShapeableImageView: void setStrokeColorResource(int) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getRagweedIndex() -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_switchTextOff -androidx.viewpager2.R$id: int accessibility_custom_action_11 -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_corner_radius -com.google.android.material.R$styleable: int Toolbar_titleTextAppearance -wangdaye.com.geometricweather.R$string: int settings_title_speed_unit -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_NoActionBar -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -com.jaredrummler.android.colorpicker.R$attr: int preferenceStyle -wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndSwitch -androidx.constraintlayout.widget.R$id: int spline -com.google.android.material.R$id: int mtrl_card_checked_layer_id -android.didikee.donate.R$id: int search_src_text -com.bumptech.glide.R$dimen: int notification_right_icon_size -android.didikee.donate.R$drawable: int abc_text_select_handle_middle_mtrl_dark -cyanogenmod.externalviews.ExternalView$8: ExternalView$8(cyanogenmod.externalviews.ExternalView) -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle -com.google.android.material.R$dimen: int mtrl_calendar_year_vertical_padding -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -android.didikee.donate.R$style: int Widget_AppCompat_TextView_SpinnerItem -androidx.cardview.widget.CardView: CardView(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: double Latitude -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int getColor() -com.github.rahatarmanahmed.cpv.CircularProgressView: float getMaxProgress() -androidx.constraintlayout.widget.R$id: int deltaRelative -com.jaredrummler.android.colorpicker.R$layout: int notification_action_tombstone -android.didikee.donate.R$styleable: int TextAppearance_android_shadowRadius -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionBar -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton_Overflow -androidx.constraintlayout.widget.R$attr: int actionBarSplitStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String weatherSource -retrofit2.OkHttpCall: retrofit2.Call clone() -com.tencent.bugly.proguard.ac: byte[] b(byte[]) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_ICONS -com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle +retrofit2.RequestFactory$Builder: void validateResolvableType(int,java.lang.reflect.Type) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver parent +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +wangdaye.com.geometricweather.R$attr: int checkboxStyle +wangdaye.com.geometricweather.R$id: int material_timepicker_view +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontVariationSettings +okhttp3.internal.platform.Platform: int WARN +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator REVERSE_LOOKUP_PROVIDER_VALIDATOR +com.turingtechnologies.materialscrollbar.R$attr: int fontFamily +io.reactivex.exceptions.CompositeException: void printStackTrace(java.io.PrintStream) +androidx.constraintlayout.widget.R$styleable: int Transition_android_id +android.didikee.donate.R$attr: int divider +android.didikee.donate.R$drawable: int abc_text_select_handle_left_mtrl_dark +com.jaredrummler.android.colorpicker.R$attr: int windowMinWidthMinor +com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$style: int Widget_Design_ScrimInsetsFrameLayout +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableEndCompat +com.jaredrummler.android.colorpicker.R$id: int home +androidx.constraintlayout.widget.R$attr: int titleMargins +james.adaptiveicon.R$styleable: int AppCompatTextView_textAllCaps +androidx.fragment.R$drawable: R$drawable() +androidx.viewpager2.widget.ViewPager2$RecyclerViewImpl +androidx.preference.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: MfForecastResult$Forecast() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: double val +com.bumptech.glide.integration.okhttp.R$drawable: int notification_tile_bg +retrofit2.Utils: void checkNotPrimitive(java.lang.reflect.Type) +com.google.android.gms.common.internal.zax +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_ripple_color +okhttp3.Dispatcher: int getMaxRequests() +wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendDailyProvider +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Address createAddress(okhttp3.HttpUrl) +androidx.vectordrawable.R$drawable: int notification_bg_normal +com.tencent.bugly.proguard.aj: byte a +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: android.os.IBinder asBinder() +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onError(java.lang.Throwable) +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void setCancellable(io.reactivex.functions.Cancellable) +androidx.lifecycle.ReportFragment: void dispatch(android.app.Activity,androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_summary +com.google.android.material.R$drawable: int tooltip_frame_dark +android.didikee.donate.R$styleable: int MenuItem_android_visible +okhttp3.internal.connection.RouteSelector: void resetNextInetSocketAddress(java.net.Proxy) +com.google.android.material.card.MaterialCardView: void setStrokeColor(android.content.res.ColorStateList) +android.didikee.donate.R$attr: int windowFixedHeightMinor +com.turingtechnologies.materialscrollbar.R$attr: int tabMinWidth +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean isDisposed() +androidx.coordinatorlayout.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit valueOf(java.lang.String) +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1 +com.google.android.material.card.MaterialCardView: void setProgress(float) +androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy +android.didikee.donate.R$id: int action_container +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableItem_android_id +com.google.android.material.R$attr: int onShow +okhttp3.internal.ws.WebSocketWriter$FrameSink: void write(okio.Buffer,long) +com.google.android.material.R$attr: int minSeparation +androidx.appcompat.app.AppCompatDelegateImpl$ListMenuDecorView +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_RC4_128_SHA +okhttp3.internal.http2.Hpack$Reader: int evictToRecoverBytes(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_20 +androidx.preference.R$color: int abc_background_cache_hint_selector_material_dark +androidx.activity.R$id: int accessibility_custom_action_5 +com.google.android.material.R$attr: int preserveIconSpacing +com.tencent.bugly.proguard.ao: java.lang.String a +com.amap.api.fence.GeoFence: float m +wangdaye.com.geometricweather.R$id: int ALT +com.google.android.material.R$style: int Platform_V25_AppCompat +com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialScrollBar +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_searchViewStyle +com.turingtechnologies.materialscrollbar.R$attr: int layout_collapseMode +androidx.appcompat.R$styleable: int ColorStateListItem_alpha +com.tencent.bugly.crashreport.crash.c: boolean b +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +io.reactivex.internal.util.NotificationLite$SubscriptionNotification: long serialVersionUID +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getDensityVoice(android.content.Context,float) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_imageButtonStyle +cyanogenmod.providers.CMSettings$System: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) +james.adaptiveicon.R$styleable: int AppCompatTheme_windowMinWidthMinor +androidx.constraintlayout.widget.R$color: int abc_btn_colored_text_material +james.adaptiveicon.R$style: int Widget_AppCompat_SeekBar +com.google.android.material.R$styleable: int ConstraintSet_flow_lastVerticalStyle +james.adaptiveicon.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +com.google.android.material.R$dimen: int item_touch_helper_swipe_escape_velocity +android.didikee.donate.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderPackage +wangdaye.com.geometricweather.R$id: int noScroll +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: int getStatus() +com.google.android.material.R$attr: int tabRippleColor +androidx.appcompat.widget.AppCompatSpinner: void setSupportBackgroundTintList(android.content.res.ColorStateList) +androidx.appcompat.widget.FitWindowsFrameLayout +okhttp3.FormBody$Builder: java.util.List names +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.Observer downstream +com.google.android.gms.common.api.ResolvableApiException: android.app.PendingIntent getResolution() +com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_U3D +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setUploadProcess(boolean) +okhttp3.internal.http2.Http2Stream$FramingSink: void close() +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_1 +com.google.android.material.R$attr: int expandedTitleGravity +com.google.android.material.R$attr: int bottomSheetStyle +org.greenrobot.greendao.AbstractDao: void deleteByKeyInsideSynchronized(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement) +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_visible +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: long serialVersionUID +com.google.android.material.R$attr: int layout_constraintWidth_default +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Snow: int UnitType +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed +androidx.vectordrawable.R$string: R$string() +androidx.appcompat.R$styleable: int AppCompatTheme_dropDownListViewStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_Alert +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeRealFeelTemperature() +com.google.android.material.R$styleable: int[] Slider +okhttp3.internal.tls.BasicCertificateChainCleaner: boolean equals(java.lang.Object) +android.didikee.donate.R$color: int notification_icon_bg_color +com.google.android.material.R$styleable: int Layout_layout_constraintBottom_toTopOf +com.google.android.material.R$style: int TextAppearance_Compat_Notification +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeight +androidx.preference.R$styleable: int MenuItem_iconTintMode +cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(int,cyanogenmod.app.ThemeComponent,int) +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource MEMORY_CACHE +com.google.android.material.R$drawable: int abc_switch_thumb_material +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.WeatherEntity) +com.tencent.bugly.proguard.al: al() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: int UnitType +wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_margin_left +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_pivotAnchor +com.google.android.material.R$styleable: int ActionBar_backgroundSplit +androidx.viewpager.R$attr: R$attr() +okio.SegmentedByteString: java.lang.String utf8() +okhttp3.ResponseBody$BomAwareReader: java.io.Reader delegate +androidx.preference.R$id: int progress_horizontal +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Colored +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_CheckBox +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.util.ErrorMode errorMode +androidx.constraintlayout.widget.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.R$id: int direct +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: RxJava2CallAdapterFactory(io.reactivex.Scheduler,boolean) +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityStopped(android.app.Activity) +wangdaye.com.geometricweather.R$attr: int icon +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getChipIcon() +cyanogenmod.themes.ThemeChangeRequest$Builder +com.google.android.material.R$dimen: int mtrl_slider_halo_radius +james.adaptiveicon.R$drawable: int abc_list_selector_background_transition_holo_dark +com.google.android.material.card.MaterialCardView: void setCardElevation(float) +com.xw.repo.bubbleseekbar.R$id: int submenuarrow +com.google.android.material.R$attr: int actionModeCloseButtonStyle +cyanogenmod.hardware.CMHardwareManager: int[] getDisplayColorCalibrationArray() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_thumb_text +com.amap.api.fence.GeoFence: float getRadius() +androidx.constraintlayout.widget.R$attr: int actionBarTabBarStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelBackground +okio.Buffer: okio.Buffer readFrom(java.io.InputStream) +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Empty +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListView +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_CANCEL_REQUEST +com.google.android.gms.location.zzbd +com.google.android.material.R$styleable: int ChipGroup_singleLine +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeShareDrawable +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onComplete() +androidx.hilt.work.R$drawable: int notification_bg_normal_pressed +androidx.core.R$id: int tag_accessibility_heading +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent SOUND +androidx.vectordrawable.R$id: int tag_accessibility_heading +com.xw.repo.bubbleseekbar.R$string +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemShapeAppearanceOverlay +androidx.preference.R$styleable: int View_paddingStart +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HourlyEntityDao getHourlyEntityDao() +androidx.recyclerview.widget.RecyclerView: int getItemDecorationCount() +io.reactivex.internal.util.ArrayListSupplier: java.util.List apply(java.lang.Object) +cyanogenmod.profiles.AirplaneModeSettings$1 +android.didikee.donate.R$styleable: int AppCompatTheme_dialogTheme +androidx.constraintlayout.widget.R$attr: int suggestionRowLayout +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$integer +wangdaye.com.geometricweather.R$string: int feedback_refresh_notification_now +james.adaptiveicon.R$attr: int spinnerStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircleRadius +cyanogenmod.profiles.ConnectionSettings: int describeContents() +cyanogenmod.alarmclock.ClockContract$CitiesColumns +com.amap.api.fence.PoiItem$1: java.lang.Object[] newArray(int) +cyanogenmod.externalviews.KeyguardExternalView$5 +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onNext(java.lang.Object) +androidx.appcompat.resources.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.R$id: int sides +com.google.android.material.R$string: int abc_searchview_description_search +androidx.preference.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +com.jaredrummler.android.colorpicker.R$attr: int positiveButtonText +okhttp3.internal.tls.CertificateChainCleaner: CertificateChainCleaner() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTemperature(int) +androidx.preference.R$attr: int icon +com.google.android.material.textfield.TextInputLayout: void setTypeface(android.graphics.Typeface) +james.adaptiveicon.R$dimen: int abc_dropdownitem_icon_width +androidx.appcompat.widget.SwitchCompat: void setThumbDrawable(android.graphics.drawable.Drawable) +androidx.preference.R$styleable: int[] BackgroundStyle +androidx.appcompat.R$id: int action_divider +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_card_elevation +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onNext(java.lang.Object) +com.amap.api.location.AMapLocation: java.lang.String o(com.amap.api.location.AMapLocation,java.lang.String) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Tooltip +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX +android.didikee.donate.R$styleable: int RecycleListView_paddingBottomNoButtons +com.tencent.bugly.proguard.ar: java.util.ArrayList d +com.google.android.material.R$styleable: int NavigationView_elevation +okhttp3.CacheControl: boolean noStore() +androidx.legacy.coreutils.R$id: int line3 +com.tencent.bugly.crashreport.CrashReport: boolean setJavascriptMonitor(com.tencent.bugly.crashreport.CrashReport$WebViewInterface,boolean,boolean) +com.google.android.material.R$layout: int design_navigation_item_subheader +com.turingtechnologies.materialscrollbar.TouchScrollBar: boolean getHide() +android.didikee.donate.R$styleable: int AppCompatTheme_listDividerAlertDialog +com.tencent.bugly.crashreport.CrashReport: void initCrashReport(android.content.Context) +androidx.preference.R$styleable: int Preference_android_icon +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_height_major +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String info +com.google.android.material.textfield.TextInputLayout: void setErrorIconOnClickListener(android.view.View$OnClickListener) +androidx.appcompat.R$dimen: int notification_media_narrow_margin +com.bumptech.glide.load.resource.bitmap.DefaultImageHeaderParser$Reader$EndOfFileException: long serialVersionUID +wangdaye.com.geometricweather.R$id: int search_plate +androidx.vectordrawable.animated.R$id: int tag_unhandled_key_event_manager okhttp3.HttpUrl: java.lang.String toString() -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -james.adaptiveicon.R$styleable: int[] Toolbar -okhttp3.internal.io.FileSystem$1: void deleteContents(java.io.File) -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_disabled -androidx.viewpager.R$styleable: int FontFamilyFont_android_ttcIndex -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_focusable -com.jaredrummler.android.colorpicker.R$color: int material_grey_850 -okhttp3.internal.http2.Http2Reader$ContinuationSource: int left -androidx.swiperefreshlayout.R$id: int notification_main_column_container -okhttp3.internal.proxy.NullProxySelector -android.didikee.donate.R$color: int abc_tint_seek_thumb -androidx.viewpager.widget.PagerTitleStrip: void setTextColor(int) -androidx.vectordrawable.R$styleable: int GradientColor_android_centerY -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListPopupWindow -com.jaredrummler.android.colorpicker.R$id: int large -com.google.android.material.R$styleable: int[] FlowLayout -wangdaye.com.geometricweather.R$id: int item_weather_icon_title -retrofit2.Response -android.didikee.donate.R$style: int Base_V23_Theme_AppCompat_Light -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getSO2() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: int UnitType -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_EditText -androidx.recyclerview.R$id: int accessibility_custom_action_24 -androidx.appcompat.R$styleable: int GradientColor_android_startColor -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_radioButtonStyle -com.turingtechnologies.materialscrollbar.R$attr: int state_collapsible -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableLeft -androidx.appcompat.R$styleable: int Spinner_android_popupBackground -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBaseline_creator -com.google.android.material.R$drawable: int material_ic_menu_arrow_up_black_24dp -androidx.viewpager2.R$id: int accessibility_custom_action_22 -com.google.android.material.R$style: int Theme_AppCompat_Empty +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getRagweedIndex() +james.adaptiveicon.R$attr: int titleMarginTop +cyanogenmod.weather.IWeatherServiceProviderChangeListener +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_interval +cyanogenmod.platform.R$attr: R$attr() +io.reactivex.internal.operators.observable.ObserverResourceWrapper +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Large +retrofit2.BuiltInConverters$BufferingResponseBodyConverter: retrofit2.BuiltInConverters$BufferingResponseBodyConverter INSTANCE +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Light +com.xw.repo.bubbleseekbar.R$color: int ripple_material_light +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_1_30 +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HOT +com.google.android.material.R$id: int right_icon +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat DEFAULT +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingBottom() +androidx.constraintlayout.widget.R$attr: int motion_postLayoutCollision +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean mShouldShow +wangdaye.com.geometricweather.R$color: int mtrl_fab_bg_color_selector +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton +androidx.preference.R$styleable: int PreferenceFragment_allowDividerAfterLastItem +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTemperature +com.bumptech.glide.integration.okhttp.R$id: int tag_unhandled_key_event_manager +com.turingtechnologies.materialscrollbar.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop +com.turingtechnologies.materialscrollbar.R$string: int path_password_eye_mask_strike_through +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onComplete() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_82 +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorCornerRadius +wangdaye.com.geometricweather.R$drawable: int notif_temp_38 +com.tencent.bugly.b: void a(android.content.Context,com.tencent.bugly.BuglyStrategy) +wangdaye.com.geometricweather.R$color: int abc_color_highlight_material +androidx.loader.R$dimen: int notification_action_text_size +okhttp3.internal.http.RealInterceptorChain: int writeTimeoutMillis() +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_subtitle +com.xw.repo.bubbleseekbar.R$attr: int buttonStyleSmall +com.turingtechnologies.materialscrollbar.R$integer: R$integer() +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleTextColor +androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar_Small +wangdaye.com.geometricweather.R$styleable: int MenuItem_alphabeticModifiers +okhttp3.logging.LoggingEventListener: LoggingEventListener(okhttp3.logging.HttpLoggingInterceptor$Logger) +com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_icon +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult +okhttp3.internal.http2.Http2Connection: long access$608(okhttp3.internal.http2.Http2Connection) +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_NoActionBar androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: int UnitType -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeErrorColor(android.content.res.ColorStateList) -androidx.fragment.app.BackStackState -wangdaye.com.geometricweather.R$dimen: int compat_notification_large_icon_max_width -cyanogenmod.app.ThemeVersion -android.didikee.donate.R$styleable: int SearchView_searchHintIcon -androidx.appcompat.R$attr: int progressBarPadding -com.google.android.material.internal.ParcelableSparseBooleanArray -okhttp3.Call: okhttp3.Call clone() -com.tencent.bugly.proguard.x: boolean a(java.lang.String,java.lang.Object[]) -com.tencent.bugly.proguard.ak: java.util.ArrayList z -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabText -wangdaye.com.geometricweather.R$drawable: int abc_ic_ab_back_material -com.google.android.material.R$attr: int themeLineHeight -android.didikee.donate.R$attr: int panelMenuListTheme -wangdaye.com.geometricweather.R$styleable: int[] StateSet -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderText -wangdaye.com.geometricweather.common.ui.activities.AllergenActivity: AllergenActivity() -androidx.constraintlayout.motion.widget.MotionLayout: void setState(androidx.constraintlayout.motion.widget.MotionLayout$TransitionState) -retrofit2.DefaultCallAdapterFactory$1: java.lang.reflect.Type responseType() -wangdaye.com.geometricweather.R$attr: int growMode -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onNext(java.lang.Object) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_begin -androidx.appcompat.widget.SwitchCompat: void setSwitchTypeface(android.graphics.Typeface) -com.tencent.bugly.proguard.d: byte[] a() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupMenu -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int) -androidx.vectordrawable.animated.R$id: int tag_accessibility_actions -com.jaredrummler.android.colorpicker.R$color: int ripple_material_dark -androidx.constraintlayout.widget.R$id: int dragLeft -com.xw.repo.bubbleseekbar.R$attr: int numericModifiers -com.google.android.material.R$anim: int abc_tooltip_enter -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_48dp -androidx.appcompat.R$attr: int listPreferredItemHeight -com.google.android.material.R$style: int Theme_AppCompat_DayNight_NoActionBar -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: LocationEntityDao$Properties() -androidx.constraintlayout.widget.R$styleable: int SearchView_commitIcon -retrofit2.ParameterHandler$PartMap: java.lang.reflect.Method method -com.google.android.material.R$id: int accelerate -androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.common.basic.models.weather.History: int nighttimeTemperature -androidx.hilt.lifecycle.R$styleable -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mLightsMode -com.google.android.material.R$id: int custom -androidx.work.R$bool: R$bool() -retrofit2.KotlinExtensions$await$4$2 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_text_horizontal_edge_offset -androidx.preference.R$color: int bright_foreground_material_light -android.didikee.donate.R$attr: int barLength -com.google.android.material.textfield.TextInputLayout: void setStartIconContentDescription(int) -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void unregisterListener(cyanogenmod.app.ICustomTileListener,int) +androidx.viewpager2.R$dimen: R$dimen() +okio.Buffer: okio.ByteString snapshot(int) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: long serialVersionUID +androidx.legacy.coreutils.R$id: int tag_unhandled_key_event_manager +com.turingtechnologies.materialscrollbar.R$attr: int msb_recyclerView +com.bumptech.glide.R$style: int Widget_Support_CoordinatorLayout +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Title +com.tencent.bugly.crashreport.CrashReport: void setCrashRegularFilter(java.lang.String) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context,android.util.AttributeSet) +okhttp3.internal.tls.OkHostnameVerifier: boolean verifyHostname(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$drawable: int flag_tr +androidx.hilt.work.R$id: int icon +wangdaye.com.geometricweather.R$drawable: int ic_search +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul24H +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.HourlyEntity) +com.google.android.gms.common.internal.zzc +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Large +androidx.preference.PreferenceFragmentCompat +androidx.appcompat.resources.R$id: int italic +androidx.preference.R$styleable: int[] CoordinatorLayout_Layout +com.google.android.material.R$color: int design_dark_default_color_error +com.google.android.material.R$styleable: int MaterialButton_backgroundTintMode +androidx.constraintlayout.widget.R$color: int abc_tint_edittext +androidx.appcompat.widget.AppCompatRadioButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +com.google.android.material.navigation.NavigationView: int getItemIconPadding() +okio.Buffer: byte[] readByteArray() +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getRagweedDescription() +wangdaye.com.geometricweather.R$attr: int useMaterialThemeColors +com.jaredrummler.android.colorpicker.R$anim: int abc_popup_enter +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: void setWeathercn(java.lang.String) +androidx.preference.R$styleable: int CompoundButton_buttonTintMode +androidx.appcompat.R$styleable: int ActionBar_icon +com.google.android.material.R$styleable: int Chip_chipEndPadding +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int CLOUDY +cyanogenmod.app.ILiveLockScreenManager$Stub: cyanogenmod.app.ILiveLockScreenManager asInterface(android.os.IBinder) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String zh_CN +io.reactivex.internal.subscriptions.DeferredScalarSubscription: java.lang.Object value +com.jaredrummler.android.colorpicker.R$attr: int allowDividerBelow +okio.ByteString: void readObject(java.io.ObjectInputStream) +wangdaye.com.geometricweather.R$attr: int passwordToggleContentDescription +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +com.xw.repo.bubbleseekbar.R$attr: int multiChoiceItemLayout +androidx.core.R$id: int line3 +okhttp3.RealCall: void enqueue(okhttp3.Callback) +androidx.constraintlayout.motion.widget.MotionLayout: void setOnHide(float) +okhttp3.RealCall: boolean isCanceled() +com.google.android.material.R$attr: int layout_constraintBottom_toBottomOf +wangdaye.com.geometricweather.R$array: int pollen_unit_values +androidx.fragment.R$id: int accessibility_custom_action_16 +androidx.swiperefreshlayout.R$drawable: R$drawable() +com.xw.repo.bubbleseekbar.R$id: int parentPanel +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontWeight +okhttp3.ConnectionSpec$Builder: java.lang.String[] tlsVersions +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: android.os.IBinder asBinder() +okio.RealBufferedSink: okio.BufferedSink writeUtf8(java.lang.String) +okhttp3.Request$Builder: okhttp3.Request$Builder put(okhttp3.RequestBody) +com.google.android.material.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +com.baidu.location.e.l$b: java.lang.String a(com.baidu.location.e.l$b,org.json.JSONObject) +androidx.hilt.work.R$bool +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlActivated +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: java.util.concurrent.TimeUnit unit +wangdaye.com.geometricweather.R$drawable: int flag_hu +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_motionProgress +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: void setSpeed(java.lang.String) +okhttp3.internal.Internal: void addLenient(okhttp3.Headers$Builder,java.lang.String,java.lang.String) +com.tencent.bugly.proguard.t +androidx.activity.R$id: int accessibility_custom_action_11 +androidx.constraintlayout.widget.R$dimen: int notification_large_icon_height +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_textAllCaps +androidx.preference.R$attr: int switchStyle +androidx.dynamicanimation.R$layout: R$layout() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onNext(java.lang.Object) +androidx.work.R$styleable: int GradientColor_android_startColor +okhttp3.HttpUrl$Builder: int port +androidx.customview.R$drawable: int notify_panel_notification_icon_bg +androidx.constraintlayout.widget.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$style: int my_switch +com.google.android.material.chip.Chip: float getChipStrokeWidth() +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_disableDependentsState +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context) +com.google.android.material.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets +androidx.constraintlayout.widget.R$styleable: int Variant_region_widthLessThan +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_subhead_material +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_mode_bar +android.didikee.donate.R$attr: int actionDropDownStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +androidx.appcompat.widget.AppCompatTextView: int getFirstBaselineToTopHeight() +androidx.appcompat.R$layout: R$layout() +com.google.android.material.R$string: int mtrl_picker_date_header_title +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation[] values() +androidx.loader.R$dimen: int notification_small_icon_size_as_large +wangdaye.com.geometricweather.R$color: int abc_btn_colored_text_material +androidx.transition.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +com.google.android.material.R$color: int mtrl_chip_ripple_color +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_orientation +okhttp3.RealCall +okhttp3.RealCall$AsyncCall +okhttp3.Cookie: boolean httpOnly() +wangdaye.com.geometricweather.R$attr: int flow_horizontalGap +androidx.coordinatorlayout.R$attr: int keylines +wangdaye.com.geometricweather.R$attr: int actionModeFindDrawable +com.tencent.bugly.proguard.ap: int hashCode() +wangdaye.com.geometricweather.R$attr: int fontProviderAuthority +com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_text_size_2line +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme_Light +android.didikee.donate.R$attr: int spinnerDropDownItemStyle +com.tencent.bugly.proguard.an: byte a +james.adaptiveicon.R$color: int abc_search_url_text +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void otherError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int onHide +androidx.constraintlayout.widget.R$attr: int dialogPreferredPadding +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_35 +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary TemperatureSummary +com.google.android.material.chip.Chip: void setCheckable(boolean) +wangdaye.com.geometricweather.R$color: int material_grey_800 +wangdaye.com.geometricweather.R$id: int dialog_location_help_providerIcon +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_controlView +com.google.android.material.R$attr: int applyMotionScene +com.tencent.bugly.crashreport.BuglyLog: void e(java.lang.String,java.lang.String) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +com.tencent.bugly.proguard.w +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_buttonGravity +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getAlertEntityList() +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info +androidx.loader.R$string +androidx.preference.R$styleable: int Preference_android_selectable +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: AccuDailyResult$DailyForecasts$Night$WindGust() +okhttp3.internal.http2.Http2Connection$6: okio.Buffer val$buffer +org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory,int) +com.jaredrummler.android.colorpicker.R$id: int src_in +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabBarStyle +com.turingtechnologies.materialscrollbar.R$color: int abc_color_highlight_material +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetStart +android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog_Alert +com.google.android.material.navigation.NavigationView: int getItemHorizontalPadding() +androidx.appcompat.widget.ActionBarContextView: void setVisibility(int) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display1 +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_13 +androidx.hilt.lifecycle.R$id: int right_side +okhttp3.CacheControl: boolean immutable() +com.google.android.material.transformation.TransformationChildLayout: TransformationChildLayout(android.content.Context) +com.google.android.material.R$styleable: int CollapsingToolbarLayout_maxLines +androidx.preference.R$attr: int actionModeStyle +wangdaye.com.geometricweather.R$id: int snap +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_percent +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf +android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogStyle +android.didikee.donate.R$color: int bright_foreground_inverse_material_dark +androidx.transition.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitationDuration(java.lang.Float) +androidx.constraintlayout.helper.widget.Flow: void setHorizontalStyle(int) +wangdaye.com.geometricweather.R$id: int bottomBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: CaiYunForecastResult() +android.didikee.donate.R$styleable: int AppCompatTextView_fontFamily +wangdaye.com.geometricweather.R$id: int widget_clock_day_aqiHumidity +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitationProbability +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType WEBP_A +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabText +cyanogenmod.platform.Manifest: Manifest() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getSunRise() +com.google.android.gms.common.server.response.zan +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchTrackballEvent(android.view.MotionEvent) +org.greenrobot.greendao.AbstractDao: boolean hasKey(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: AccuDailyResult$DailyForecasts$Night$Wind$Speed() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitationProbability() +androidx.constraintlayout.widget.R$layout: int abc_action_menu_item_layout +james.adaptiveicon.R$color: int background_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric +androidx.appcompat.widget.ButtonBarLayout: void setAllowStacking(boolean) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf +com.google.android.material.R$styleable: int[] OnSwipe +cyanogenmod.weather.WeatherInfo$DayForecast: double mHigh +com.google.gson.FieldNamingPolicy$4 +com.google.android.material.R$styleable: int ActionBar_homeLayout +android.didikee.donate.R$color: int dim_foreground_material_dark +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_surface +androidx.work.WorkInfo$State: boolean isFinished() +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setThunderstormPrecipitation(java.lang.Float) +androidx.work.R$id: int actions +com.amap.api.location.AMapLocationClient: java.lang.String getDeviceId(android.content.Context) +androidx.activity.R$styleable: int FontFamilyFont_fontVariationSettings +com.jaredrummler.android.colorpicker.R$dimen: int notification_action_text_size +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onKeyguardShowing(boolean) +androidx.constraintlayout.helper.widget.Flow: void setVerticalAlign(int) +com.google.android.material.slider.RangeSlider: void setValues(java.lang.Float[]) +com.google.android.material.R$attr: int cardBackgroundColor +com.google.android.material.R$string: int chip_text +androidx.preference.R$styleable: int[] Spinner +androidx.coordinatorlayout.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setLineColor(int) +com.amap.api.location.CoordUtil: boolean isLoadedSo() +androidx.appcompat.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +androidx.work.R$layout: int notification_action_tombstone +retrofit2.SkipCallbackExecutorImpl: java.lang.annotation.Annotation[] ensurePresent(java.lang.annotation.Annotation[]) +com.google.android.material.R$attr: int editTextColor +okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_0 +com.google.android.gms.common.internal.zaw +com.google.android.material.R$color: int abc_tint_btn_checkable +androidx.appcompat.R$drawable: int abc_list_longpressed_holo +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogTheme +wangdaye.com.geometricweather.R$styleable: int CardView_cardPreventCornerOverlap +androidx.preference.R$color: int abc_search_url_text_normal +androidx.preference.R$styleable: int AppCompatTheme_android_windowIsFloating +androidx.activity.R$styleable: int FontFamily_fontProviderPackage +androidx.constraintlayout.widget.R$styleable: int SearchView_submitBackground +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderSelection +wangdaye.com.geometricweather.R$dimen: int appcompat_dialog_background_inset +wangdaye.com.geometricweather.R$id: int radio +james.adaptiveicon.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.GeometricWeather +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Integer aqiIndex +com.google.android.material.R$color: int cardview_dark_background +androidx.appcompat.widget.AppCompatTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_pivotX +android.didikee.donate.R$attr: int buttonBarButtonStyle +androidx.preference.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onActionModeStarted(android.view.ActionMode) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean isEntityUpdateable() +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Light +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String BOOT_ANIM_URI +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_PopupMenu +wangdaye.com.geometricweather.R$string: int aqi_4 +wangdaye.com.geometricweather.R$attr: int pressedTranslationZ +android.didikee.donate.R$styleable: int AppCompatTheme_windowActionBar +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object PARENT_DISPOSED +com.google.gson.JsonSyntaxException: long serialVersionUID +androidx.preference.EditTextPreference$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth +james.adaptiveicon.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date sunSetDate +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_useCompatPadding +retrofit2.OptionalConverterFactory$OptionalConverter +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: int getWindowType() +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle MATERIAL android.didikee.donate.R$attr: int multiChoiceItemLayout -com.xw.repo.bubbleseekbar.R$attr: int overlapAnchor -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_creator -androidx.constraintlayout.utils.widget.MotionTelltales: MotionTelltales(android.content.Context,android.util.AttributeSet) -android.didikee.donate.R$id: int always -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display4 -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getThermalState -com.jaredrummler.android.colorpicker.R$attr: int colorControlActivated -okhttp3.Cache: okhttp3.internal.cache.DiskLruCache cache -okhttp3.MultipartBody$Builder: MultipartBody$Builder(java.lang.String) -cyanogenmod.weather.WeatherLocation: java.lang.String access$602(cyanogenmod.weather.WeatherLocation,java.lang.String) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6 -com.google.android.material.R$styleable: int CustomAttribute_customBoolean -com.google.android.material.R$id: int cancel_button -cyanogenmod.power.IPerformanceManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.google.android.material.R$styleable: int Layout_layout_constraintBottom_creator -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableLeft -okhttp3.internal.http.RealInterceptorChain: int readTimeout -androidx.lifecycle.LifecycleRegistry: void handleLifecycleEvent(androidx.lifecycle.Lifecycle$Event) -com.xw.repo.bubbleseekbar.R$styleable: int[] SearchView -com.google.android.material.R$attr: int materialThemeOverlay -com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_min_width -androidx.viewpager.widget.PagerTitleStrip: int getTextSpacing() -okhttp3.ConnectionPool: boolean cleanupRunning -james.adaptiveicon.R$dimen: int abc_action_button_min_width_overflow_material -cyanogenmod.externalviews.ExternalView: void performAction(java.lang.Runnable) -androidx.constraintlayout.widget.R$attr: int flow_wrapMode -android.didikee.donate.R$styleable: int Toolbar_menu -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorButtonNormal -wangdaye.com.geometricweather.R$drawable: int notif_temp_14 -android.didikee.donate.R$dimen: int abc_alert_dialog_button_bar_height -com.tencent.bugly.proguard.v: void b(long) -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: retrofit2.Call call -com.google.android.material.R$drawable: int notification_tile_bg -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: java.util.concurrent.atomic.AtomicReference other -android.didikee.donate.R$attr: int preserveIconSpacing -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Button -android.support.v4.app.RemoteActionCompatParcelizer: androidx.core.app.RemoteActionCompat read(androidx.versionedparcelable.VersionedParcel) -com.google.android.material.R$styleable: int Toolbar_menu -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf -androidx.preference.R$id: int expanded_menu -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_MIN_INDEX -com.bumptech.glide.integration.okhttp.R$styleable: int[] FontFamily -com.tencent.bugly.proguard.ao: java.lang.String b -androidx.preference.R$style: int Base_Widget_AppCompat_Button -cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_LOCATION_ADVANCED -androidx.vectordrawable.R$drawable: int notification_bg_low_pressed -androidx.hilt.R$dimen: int notification_media_narrow_margin -retrofit2.ParameterHandler$RawPart -androidx.fragment.app.BackStackRecord: void setOnStartPostponedListener(androidx.fragment.app.Fragment$OnStartEnterTransitionListener) -com.google.android.material.bottomnavigation.BottomNavigationItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() -com.google.android.material.R$styleable: int CardView_contentPaddingRight -androidx.vectordrawable.R$layout: int custom_dialog -okhttp3.internal.ws.RealWebSocket: long pingIntervalMillis -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dividerVertical -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType BOOLEAN_TYPE -com.xw.repo.bubbleseekbar.R$attr: int bsb_track_color -okhttp3.internal.cache.DiskLruCache: void rebuildJournal() -androidx.preference.R$string: int abc_menu_ctrl_shortcut_label -androidx.appcompat.resources.R$id: int accessibility_custom_action_22 -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -com.google.android.material.bottomnavigation.BottomNavigationMenuView: BottomNavigationMenuView(android.content.Context,android.util.AttributeSet) -cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener: void onWeatherRequestCompleted(int,cyanogenmod.weather.WeatherInfo) -com.google.android.material.R$style: int Theme_AppCompat_Dialog -androidx.hilt.lifecycle.R$id: int notification_main_column_container -com.google.android.material.navigation.NavigationView: void setItemTextColor(android.content.res.ColorStateList) -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -androidx.preference.R$id: int normal -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.Observer downstream -com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animSteps -androidx.fragment.R$drawable: int notification_bg_low_pressed -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.preference.R$dimen: int tooltip_horizontal_padding -cyanogenmod.externalviews.ExternalView: cyanogenmod.externalviews.ExternalViewProperties mExternalViewProperties -androidx.viewpager.R$styleable: int GradientColor_android_centerY -androidx.fragment.R$styleable: int FontFamilyFont_android_fontVariationSettings -android.didikee.donate.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setWeatherCondition(int) -androidx.preference.R$styleable: int CoordinatorLayout_statusBarBackground -wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -com.google.android.material.R$styleable: int FloatingActionButton_backgroundTint -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeAppearance -okhttp3.Handshake: okhttp3.Handshake get(okhttp3.TlsVersion,okhttp3.CipherSuite,java.util.List,java.util.List) -okhttp3.internal.Util -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: long EpochDate -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String m -com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -com.bumptech.glide.load.engine.CallbackException -androidx.preference.R$attr: int actionBarWidgetTheme -androidx.swiperefreshlayout.R$styleable: R$styleable() -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitation -androidx.constraintlayout.widget.R$styleable: int MenuItem_iconTintMode -com.google.android.material.floatingactionbutton.FloatingActionButton: int getCustomSize() -com.jaredrummler.android.colorpicker.R$attr: int fontWeight -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense -wangdaye.com.geometricweather.R$attr: int colorOnPrimarySurface -wangdaye.com.geometricweather.R$color: int switch_thumb_normal_material_light -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -wangdaye.com.geometricweather.R$attr: int gapBetweenBars -wangdaye.com.geometricweather.R$styleable: int AnimatableIconView_inner_margins -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationMode i -androidx.recyclerview.R$id -com.amap.api.fence.GeoFenceManagerBase: void setActivateAction(int) -cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_BLUE_INDEX -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property AqiIndex -androidx.hilt.lifecycle.R$styleable: int[] GradientColor -androidx.appcompat.R$attr: int listPopupWindowStyle -com.google.android.material.R$color: int material_timepicker_button_background -okhttp3.internal.platform.Platform: java.util.logging.Logger logger -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +androidx.preference.R$id: int custom +androidx.appcompat.widget.AppCompatButton: android.content.res.ColorStateList getSupportBackgroundTintList() +androidx.appcompat.widget.AppCompatTextView: int getAutoSizeStepGranularity() +androidx.viewpager2.R$id: int time +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind wind +wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +okhttp3.internal.http2.Hpack$Reader: Hpack$Reader(int,okio.Source) +androidx.constraintlayout.widget.R$styleable: int ActionBar_homeLayout +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRealFeelShaderTemperature(java.lang.Integer) +androidx.appcompat.widget.ActionMenuView +cyanogenmod.providers.CMSettings$Validator: boolean validate(java.lang.String) +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_2 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean getPrecipitationProbability() +com.google.android.material.R$anim: int design_snackbar_out +com.turingtechnologies.materialscrollbar.R$styleable: int[] CardView +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge +wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_xml +com.tencent.bugly.crashreport.crash.c: boolean k() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCopyDrawable +com.google.android.material.floatingactionbutton.FloatingActionButton: int getSizeDimension() +wangdaye.com.geometricweather.R$attr: int passwordToggleEnabled +com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String u +io.reactivex.internal.util.NotificationLite: org.reactivestreams.Subscription getSubscription(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onComplete() +okio.Sink: okio.Timeout timeout() +james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier valueOf(java.lang.String) +okhttp3.internal.Internal: void initializeInstanceForTests() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_88 +wangdaye.com.geometricweather.R$styleable: int MenuView_android_horizontalDivider +okio.RealBufferedSource$1: okio.RealBufferedSource this$0 +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundTintMode +android.didikee.donate.R$color: int abc_background_cache_hint_selector_material_dark +cyanogenmod.hardware.CMHardwareManager: java.lang.String readPersistentString(java.lang.String) +androidx.appcompat.R$drawable: int abc_btn_check_to_on_mtrl_000 +com.google.android.material.R$styleable: int Motion_pathMotionArc +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.String toString() +okhttp3.OkHttpClient$Builder: boolean retryOnConnectionFailure +com.google.android.material.appbar.CollapsingToolbarLayout +androidx.appcompat.resources.R$attr: int fontVariationSettings +io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit) +androidx.appcompat.R$attr: int thumbTint +james.adaptiveicon.R$color: int abc_background_cache_hint_selector_material_dark +com.amap.api.location.AMapLocation: java.lang.String getCoordType() +com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context) +wangdaye.com.geometricweather.R$id: int item_details_content +okio.RealBufferedSource$1: int read() +com.google.android.material.R$dimen: int mtrl_extended_fab_start_padding_icon +com.jaredrummler.android.colorpicker.R$styleable: int View_android_focusable +com.google.android.material.R$dimen: int mtrl_extended_fab_min_width +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_DarkActionBar +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_5_30 +okhttp3.ResponseBody$BomAwareReader: int read(char[],int,int) +wangdaye.com.geometricweather.background.receiver.widget.WidgetMultiCityProvider: WidgetMultiCityProvider() +wangdaye.com.geometricweather.R$styleable: int Chip_hideMotionSpec +wangdaye.com.geometricweather.R$id: int activity_about_container +cyanogenmod.providers.CMSettings$DelimitedListValidator: CMSettings$DelimitedListValidator(java.lang.String[],java.lang.String,boolean) +com.tencent.bugly.crashreport.R: R() +wangdaye.com.geometricweather.R$attr: int cardPreventCornerOverlap +androidx.preference.R$styleable: int ListPreference_entryValues +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dividerVertical +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_titleTextStyle com.github.rahatarmanahmed.cpv.CircularProgressView: void onDraw(android.graphics.Canvas) -androidx.loader.R$styleable: int[] FontFamilyFont -cyanogenmod.hardware.CMHardwareManager: boolean setDisplayColorCalibration(int[]) -okhttp3.Cache$1: okhttp3.internal.cache.CacheRequest put(okhttp3.Response) -com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String value -com.google.android.material.R$dimen: int hint_pressed_alpha_material_light -retrofit2.RequestFactory$Builder: void parseMethodAnnotation(java.lang.annotation.Annotation) -okhttp3.FormBody: okhttp3.MediaType CONTENT_TYPE -wangdaye.com.geometricweather.R$drawable: int notif_temp_21 -androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode -wangdaye.com.geometricweather.R$styleable: int ActionBar_displayOptions -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setBadgeIfNeeded(com.google.android.material.bottomnavigation.BottomNavigationItemView) -com.bumptech.glide.integration.okhttp.R$id: int start -com.xw.repo.bubbleseekbar.R$attr: int titleMarginStart -com.bumptech.glide.request.RequestCoordinator$RequestState: boolean isComplete() -com.google.android.material.chip.ChipGroup: void setChipSpacingVerticalResource(int) -wangdaye.com.geometricweather.R$attr: int titleMarginTop -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX -com.baidu.location.g.a -androidx.lifecycle.LifecycleRegistry: boolean isSynced() -androidx.lifecycle.extensions.R$id: int right_icon -androidx.preference.R$attr: int titleTextAppearance -androidx.fragment.R$style: int TextAppearance_Compat_Notification_Info -com.jaredrummler.android.colorpicker.R$layout: int abc_activity_chooser_view -wangdaye.com.geometricweather.R$drawable: int ic_search -cyanogenmod.weather.RequestInfo$Builder: boolean isValidTempUnit(int) -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ProgressBar -okhttp3.logging.LoggingEventListener: LoggingEventListener(okhttp3.logging.HttpLoggingInterceptor$Logger,okhttp3.logging.LoggingEventListener$1) -com.google.android.material.R$id: int actions -com.tencent.bugly.proguard.u: java.lang.Object r -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_min -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage INITIALIZE -androidx.constraintlayout.motion.widget.MotionLayout: int[] getConstraintSetIds() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: long dt -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.String TABLENAME -james.adaptiveicon.R$dimen: int abc_text_size_caption_material -androidx.preference.R$attr: int allowDividerBelow -com.google.android.material.R$attr: int shapeAppearanceOverlay -androidx.lifecycle.SavedStateHandleController -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer getCloudCover() -androidx.appcompat.app.AppCompatDelegateImpl$ListMenuDecorView -com.turingtechnologies.materialscrollbar.R$color: int primary_text_default_material_light -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getAbbreviation(android.content.Context) -androidx.appcompat.R$styleable: int MenuGroup_android_menuCategory -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.util.List value -androidx.preference.R$styleable: int FontFamilyFont_fontStyle -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: HalfDay(java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration,wangdaye.com.geometricweather.common.basic.models.weather.Wind,java.lang.Integer) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: java.lang.String type -com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderText(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int View_theme -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog -com.google.android.material.R$styleable: int SearchView_queryHint -com.baidu.location.indoor.mapversion.c.a$d -wangdaye.com.geometricweather.R$attr: R$attr() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_strokeWidth -cyanogenmod.providers.DataUsageContract: java.lang.String DATAUSAGE_AUTHORITY -androidx.swiperefreshlayout.R$dimen: R$dimen() -com.tencent.bugly.b: com.tencent.bugly.proguard.p d -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String PROFILE -android.didikee.donate.R$styleable: int[] Toolbar -okhttp3.internal.connection.StreamAllocation: void noNewStreams() -androidx.recyclerview.widget.RecyclerView: void setEdgeEffectFactory(androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.disposables.Disposable upstream -androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_srcCompat -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_trackTintMode -com.amap.api.location.CoordinateConverter: boolean isAMapDataAvailable(double,double) -com.tencent.bugly.proguard.am: java.lang.String x -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage valueOf(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTint -com.amap.api.location.AMapLocation: float getBearing() -androidx.appcompat.R$anim: R$anim() -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: int Version -com.google.android.material.R$attr: int materialAlertDialogBodyTextStyle -wangdaye.com.geometricweather.R$attr: int materialButtonOutlinedStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -com.google.android.material.R$attr: int thickness -james.adaptiveicon.R$bool: R$bool() -com.google.android.material.R$styleable: int[] BottomSheetBehavior_Layout -com.bumptech.glide.integration.okhttp.R$integer -io.reactivex.internal.subscriptions.DeferredScalarSubscription: boolean tryCancel() -com.google.android.material.card.MaterialCardView: void setCheckable(boolean) -androidx.recyclerview.R$id: int accessibility_custom_action_17 -androidx.constraintlayout.widget.R$attr: int onTouchUp -com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_elevation -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_titleEnabled -android.didikee.donate.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -android.didikee.donate.R$styleable: int AppCompatTextView_fontVariationSettings -androidx.preference.R$styleable: int[] BackgroundStyle -android.didikee.donate.R$style: int Base_V22_Theme_AppCompat -android.didikee.donate.R$style: int Widget_AppCompat_Button -wangdaye.com.geometricweather.R$layout: int preference_information_material -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.lang.String accuracy -androidx.preference.R$attr: int alphabeticModifiers -okhttp3.Cache$2: okhttp3.Cache this$0 -com.turingtechnologies.materialscrollbar.R$layout: int notification_template_icon_group -okhttp3.RealCall$1: okhttp3.RealCall this$0 -retrofit2.converter.gson.GsonRequestBodyConverter: java.nio.charset.Charset UTF_8 -com.google.android.material.R$styleable: int Layout_layout_constraintBottom_toTopOf -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: void setTo(java.util.Date) -com.turingtechnologies.materialscrollbar.R$attr: int titleMarginBottom -com.tencent.bugly.crashreport.crash.c: void a(boolean,boolean,boolean) -okhttp3.Response$Builder: okhttp3.Response build() -androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_text_padding_left -wangdaye.com.geometricweather.R$string: int settings_title_alert_notification_switch -okhttp3.MediaType: java.util.regex.Pattern TYPE_SUBTYPE -androidx.constraintlayout.widget.R$id: int accelerate -cyanogenmod.providers.CMSettings$DiscreteValueValidator: CMSettings$DiscreteValueValidator(java.lang.String[]) -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayVerticalProvider -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelMenuListWidth -androidx.appcompat.R$attr: int queryBackground -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction Direction -androidx.constraintlayout.widget.R$string: int abc_menu_delete_shortcut_label -com.tencent.bugly.proguard.j: void a(com.tencent.bugly.proguard.k,int) -com.google.android.material.timepicker.TimeModel -com.amap.api.location.AMapLocation: void setCity(java.lang.String) -com.google.android.material.R$color: int design_default_color_secondary -com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.animation.MotionSpec getShowMotionSpec() -androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetLeft -wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_xml -cyanogenmod.hardware.CMHardwareManager: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) -retrofit2.Retrofit$1: java.lang.Class val$service -com.google.android.material.R$styleable: int[] Constraint -com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector valueOf(java.lang.String) -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status CANCELLED -com.google.android.material.R$styleable: int Chip_closeIconSize -androidx.hilt.work.R$string: int status_bar_notification_info_overflow -androidx.activity.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.R$id: int ALT -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Longitude -okio.Buffer: java.lang.String readUtf8(long) -androidx.work.impl.background.systemjob.SystemJobService: SystemJobService() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind -com.google.gson.stream.JsonScope: int NONEMPTY_DOCUMENT -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: boolean noDirection -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_fontFamily -wangdaye.com.geometricweather.R$attr: int cpv_showDialog -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_52 -cyanogenmod.hardware.CMHardwareManager: int getVibratorMaxIntensity() -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String YEAR -com.tencent.bugly.crashreport.CrashReport: android.content.Context a -androidx.vectordrawable.R$layout: int notification_template_part_chronometer -retrofit2.ParameterHandler$Query: java.lang.String name -okhttp3.Cache$Entry: java.lang.String RECEIVED_MILLIS -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerColor -android.didikee.donate.R$drawable: int notification_bg -com.turingtechnologies.materialscrollbar.R$attr: int toolbarId -wangdaye.com.geometricweather.R$style: int material_card -androidx.appcompat.R$styleable: int AppCompatTheme_listPopupWindowStyle -androidx.preference.R$styleable: int FontFamilyFont_ttcIndex -androidx.drawerlayout.R$drawable: int notification_icon_background -cyanogenmod.hardware.CMHardwareManager: int getSupportedFeatures() -cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.ILiveLockScreenManager sService -wangdaye.com.geometricweather.settings.dialogs.WechatDonateDialog: WechatDonateDialog() -androidx.hilt.lifecycle.R$id: int time -okhttp3.internal.http1.Http1Codec: void finishRequest() -com.google.android.material.R$color: int switch_thumb_normal_material_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_137 -cyanogenmod.app.ProfileManager: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) -com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_multichoice_material -com.google.android.material.R$style: int TextAppearance_AppCompat_Menu -androidx.vectordrawable.animated.R$styleable: int[] ColorStateListItem -okhttp3.MultipartBody$Builder -com.tencent.bugly.crashreport.crash.h5.b: java.lang.String a() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_switchStyle -james.adaptiveicon.R$attr: int spinnerStyle -android.didikee.donate.R$id: int title_template -androidx.constraintlayout.widget.R$styleable: int KeyCycle_transitionEasing -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onPause() -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: boolean done -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf -com.turingtechnologies.materialscrollbar.R$style: int Base_V23_Theme_AppCompat -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -okhttp3.internal.ws.RealWebSocket$2: void onFailure(okhttp3.Call,java.io.IOException) -wangdaye.com.geometricweather.R$id: int textinput_counter -com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_ANR -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm10Desc() -io.reactivex.internal.subscriptions.BasicQueueSubscription: BasicQueueSubscription() -androidx.constraintlayout.widget.R$attr: int fontFamily -android.didikee.donate.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.imageview.ShapeableImageView: float getStrokeWidth() -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy -com.turingtechnologies.materialscrollbar.R$style: int Platform_Widget_AppCompat_Spinner -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void registerListener(cyanogenmod.app.ICustomTileListener,android.content.ComponentName,int) -james.adaptiveicon.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setSnowPrecipitationProbability(java.lang.Float) -com.tencent.bugly.crashreport.crash.e: java.lang.Object i -com.tencent.bugly.proguard.v: byte[] e -cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CURRENT_WEATHER_URI -com.google.android.material.R$attr: int region_heightMoreThan -com.google.android.material.chip.Chip: void setEllipsize(android.text.TextUtils$TruncateAt) -com.jaredrummler.android.colorpicker.R$attr: int fastScrollVerticalTrackDrawable -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_expanded -cyanogenmod.providers.CMSettings$Global: float getFloat(android.content.ContentResolver,java.lang.String,float) -androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackground(int) -wangdaye.com.geometricweather.R$drawable: int ic_close -com.google.android.material.R$id: int reverseSawtooth -cyanogenmod.weather.WeatherInfo: double getTodaysLow() -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_rippleColor -okhttp3.Call -com.xw.repo.bubbleseekbar.R$id: int search_go_btn -io.reactivex.Observable: io.reactivex.Observable concatEager(java.lang.Iterable,int,int) -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date getUpdateDate() -com.google.android.material.R$drawable: int material_cursor_drawable -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem -wangdaye.com.geometricweather.R$attr: int chipSpacingVertical -com.google.android.material.slider.RangeSlider$RangeSliderState -okhttp3.HttpUrl: java.util.List pathSegments -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: int colorId -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport parent -com.turingtechnologies.materialscrollbar.R$attr: int popupMenuStyle -com.google.android.material.R$string: int mtrl_picker_range_header_only_start_selected -io.reactivex.Observable: java.lang.Iterable blockingLatest() -okhttp3.internal.Util: java.util.Map immutableMap(java.util.Map) -android.support.v4.app.RemoteActionCompatParcelizer: void write(androidx.core.app.RemoteActionCompat,androidx.versionedparcelable.VersionedParcel) -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.AbstractDaoSession session -com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_borderColor -androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_percent -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year -wangdaye.com.geometricweather.R$drawable: int abc_ic_go_search_api_material -androidx.preference.R$styleable: int StateListDrawableItem_android_drawable -wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary PrecipitationSummary -androidx.fragment.R$styleable: int FontFamilyFont_fontVariationSettings -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_default -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day -androidx.vectordrawable.R$id: int accessibility_custom_action_6 -io.reactivex.Observable: io.reactivex.Observable distinct(io.reactivex.functions.Function,java.util.concurrent.Callable) -okhttp3.internal.http2.Hpack$Reader: void readIndexedHeader(int) -wangdaye.com.geometricweather.R$styleable: int[] SwipeRefreshLayout -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicBoolean stopWindows -com.google.android.material.R$attr: int clickAction -androidx.constraintlayout.widget.R$styleable: int Spinner_popupTheme -androidx.constraintlayout.widget.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarButtonStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber -wangdaye.com.geometricweather.R$string: int key_service_provider -androidx.vectordrawable.R$drawable: int notify_panel_notification_icon_bg -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onError(java.lang.Throwable) -com.google.android.material.bottomsheet.BottomSheetBehavior: BottomSheetBehavior(android.content.Context,android.util.AttributeSet) -com.google.android.material.chip.ChipGroup: void setCheckedId(int) -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$color: int notification_background_m -cyanogenmod.providers.CMSettings$Global: java.lang.String ZEN_DISABLE_DUCKING_DURING_MEDIA_PLAYBACK -cyanogenmod.externalviews.ExternalView: void onActivityStarted(android.app.Activity) -androidx.appcompat.R$dimen: int abc_text_size_body_2_material -androidx.viewpager2.R$id: int notification_main_column_container -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_end -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max +retrofit2.Retrofit$Builder: okhttp3.HttpUrl baseUrl +androidx.vectordrawable.R$styleable: int GradientColor_android_type +androidx.customview.R$color: int notification_action_color_filter +okhttp3.Dns$1: Dns$1() +okhttp3.internal.cache.DiskLruCache$Editor$1: DiskLruCache$Editor$1(okhttp3.internal.cache.DiskLruCache$Editor,okio.Sink) +androidx.appcompat.resources.R$id: int accessibility_custom_action_8 +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_toTopOf +cyanogenmod.power.IPerformanceManager: boolean setPowerProfile(int) +com.google.android.material.button.MaterialButton: int getTextHeight() +com.google.android.material.appbar.CollapsingToolbarLayout: int getScrimVisibleHeightTrigger() +com.google.android.material.R$dimen: int abc_progress_bar_height_material +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_36dp +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_android_entryValues +com.tencent.bugly.proguard.x: boolean a(java.lang.Class,java.lang.String,java.lang.Object[]) +com.google.gson.stream.JsonReader: int stackSize +okhttp3.internal.http2.Http2Stream$FramingSink: okio.Timeout timeout() +androidx.appcompat.R$styleable: int[] SwitchCompat +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ProgressBar_Horizontal +androidx.appcompat.widget.ActivityChooserView: void setInitialActivityCount(int) +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectTimeout(java.time.Duration) +wangdaye.com.geometricweather.R$id: int dialog_time_setter_time_picker +wangdaye.com.geometricweather.db.entities.DailyEntity: int daytimeTemperature +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf +cyanogenmod.hardware.CMHardwareManager: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontVariationSettings +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_BYTES +com.google.android.material.textfield.TextInputLayout: void setErrorIconDrawable(android.graphics.drawable.Drawable) +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState valueOf(java.lang.String) +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: ObservableConcatWithSingle$ConcatWithObserver(io.reactivex.Observer,io.reactivex.SingleSource) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_max +com.turingtechnologies.materialscrollbar.R$attr: int textColorSearchUrl +androidx.preference.R$styleable: int[] PreferenceGroup +wangdaye.com.geometricweather.db.entities.LocationEntity: float getLongitude() +com.bumptech.glide.integration.okhttp.R$attr: int fontProviderFetchTimeout +com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_padding_horizontal_material +android.didikee.donate.R$attr: int showAsAction +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_RESUME +wangdaye.com.geometricweather.R$string: int phase_full +androidx.appcompat.R$style: int Widget_Compat_NotificationActionText +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver,java.lang.Throwable) +androidx.constraintlayout.widget.R$id: int alertTitle +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_ICONS +com.google.android.material.R$attr: int showPaths +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: java.lang.String English +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator T9_SEARCH_INPUT_LOCALE_VALIDATOR +com.google.android.material.R$styleable: int ConstraintSet_android_transformPivotY +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +io.reactivex.internal.util.NotificationLite$SubscriptionNotification: NotificationLite$SubscriptionNotification(org.reactivestreams.Subscription) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabView +androidx.work.impl.utils.futures.AbstractFuture: java.lang.Object value +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: java.lang.String unit +wangdaye.com.geometricweather.R$styleable: int Preference_title +com.google.android.material.R$styleable: int View_theme +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_android_descendantFocusability +okhttp3.Response: okhttp3.Response networkResponse +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: int getChartBottom() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow24h +androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMark +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: boolean isDisposed() +wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line1_tail_interpolator +androidx.constraintlayout.widget.R$attr: int barrierMargin +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_steps +wangdaye.com.geometricweather.R$styleable: int[] PopupWindow +com.tencent.bugly.crashreport.common.info.a: android.content.Context F +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.QueryBuilder queryBuilder() +android.support.v4.os.ResultReceiver$MyRunnable: android.support.v4.os.ResultReceiver this$0 +androidx.viewpager.R$id: int action_image +com.jaredrummler.android.colorpicker.R$attr: int lastBaselineToBottomHeight +cyanogenmod.app.Profile: boolean getStatusBarIndicator() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onScreenTurnedOff +androidx.constraintlayout.widget.Barrier +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_menu_item +com.tencent.bugly.proguard.d: void c(java.lang.String) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout_PrimarySurface +androidx.constraintlayout.widget.R$style: int Platform_V21_AppCompat_Light +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void clear() +com.google.android.material.textfield.TextInputLayout: void setEndIconTintMode(android.graphics.PorterDuff$Mode) +com.google.android.material.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.xw.repo.bubbleseekbar.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float ice +androidx.viewpager.R$styleable: int GradientColor_android_endY +android.didikee.donate.R$styleable: int Spinner_android_dropDownWidth +com.xw.repo.bubbleseekbar.R$bool: int abc_action_bar_embed_tabs +io.reactivex.internal.subscribers.StrictSubscriber: boolean done +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setDetail(java.lang.String) +com.google.android.material.R$styleable: int[] ThemeEnforcement +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(long,java.util.concurrent.TimeUnit) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: java.lang.String getAddress() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +androidx.appcompat.R$color: int dim_foreground_material_light +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +james.adaptiveicon.R$dimen: int abc_text_size_large_material +androidx.loader.R$drawable: int notification_icon_background +io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable) +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_colorShape +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_134 +androidx.appcompat.R$drawable: int abc_ratingbar_indicator_material +wangdaye.com.geometricweather.R$id: int startHorizontal +okhttp3.internal.ws.WebSocketWriter$FrameSink +wangdaye.com.geometricweather.R$attr: int isLightTheme +okhttp3.MediaType: java.lang.String mediaType +androidx.lifecycle.SingleGeneratedAdapterObserver: androidx.lifecycle.GeneratedAdapter mGeneratedAdapter +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: java.lang.String getDurationVoice(android.content.Context,float) +james.adaptiveicon.R$drawable: int abc_scrubber_track_mtrl_alpha com.tencent.bugly.crashreport.crash.jni.b: java.lang.String a(java.lang.String,int,java.lang.String,boolean) -com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long readKey(android.database.Cursor,int) -cyanogenmod.providers.CMSettings$System$3: CMSettings$System$3() -com.turingtechnologies.materialscrollbar.R$drawable: int notify_panel_notification_icon_bg -io.reactivex.Observable: io.reactivex.Observable cache() -com.google.android.material.R$drawable: int abc_seekbar_tick_mark_material -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItem -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_font -retrofit2.KotlinExtensions$await$2$2 -wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogTitle -com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -androidx.preference.R$dimen: int abc_action_bar_content_inset_with_nav -androidx.vectordrawable.animated.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.R$attr: int actionViewClass -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean isDisposed() -com.google.android.material.R$style: int TextAppearance_AppCompat_Display4 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: AccuDailyResult$DailyForecasts$RealFeelTemperature() -james.adaptiveicon.R$styleable: int Toolbar_android_gravity -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf -androidx.hilt.R$styleable: int[] FontFamilyFont -androidx.preference.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: java.util.concurrent.Callable bufferSupplier -wangdaye.com.geometricweather.R$attr: int autoSizeMaxTextSize -com.baidu.location.e.l$b: com.baidu.location.e.l$b valueOf(java.lang.String) -androidx.preference.R$attr: int switchMinWidth -cyanogenmod.hardware.ICMHardwareService: long getLtoDownloadInterval() -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceScreenStyle -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_precise_anchor_threshold -androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingLeft -james.adaptiveicon.R$color: int primary_dark_material_light -com.google.android.material.slider.Slider: Slider(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$string: int abc_menu_function_shortcut_label -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign -wangdaye.com.geometricweather.R$attr: int pressedTranslationZ -androidx.viewpager2.R$id: int blocking -cyanogenmod.weather.WeatherLocation$Builder -wangdaye.com.geometricweather.R$id: int material_timepicker_edit_text -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Indeterminate -androidx.viewpager.R$styleable: int ColorStateListItem_alpha -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonRiseDate(java.util.Date) -androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_dot_group_animation -com.google.android.gms.common.internal.zzv: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$drawable: int tooltip_frame_dark -androidx.core.widget.NestedScrollView: int getMaxScrollAmount() -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit KGFPSQCM -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isCompletable -io.reactivex.Observable: io.reactivex.Observable timer(long,java.util.concurrent.TimeUnit) -okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_2 -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_alphabeticModifiers -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_popupBackground -wangdaye.com.geometricweather.R$styleable -com.turingtechnologies.materialscrollbar.R$styleable: int[] PopupWindow -com.google.android.material.R$styleable: int[] MaterialCalendar -com.xw.repo.bubbleseekbar.R$anim: int abc_popup_exit -com.google.android.material.R$attr: int titleTextColor -james.adaptiveicon.R$id: int action_mode_close_button -androidx.drawerlayout.widget.DrawerLayout -androidx.vectordrawable.animated.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$id: int unlabeled -wangdaye.com.geometricweather.R$drawable: int notif_temp_85 -okhttp3.internal.platform.Platform: javax.net.ssl.SSLContext getSSLContext() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeSplitBackground -wangdaye.com.geometricweather.R$styleable: int Slider_tickColorInactive -androidx.preference.R$style: int Theme_AppCompat_Dialog -wangdaye.com.geometricweather.R$layout: int select_dialog_multichoice_material -wangdaye.com.geometricweather.common.basic.models.weather.Daily: long time -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -com.google.android.material.R$styleable: int KeyTimeCycle_android_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -wangdaye.com.geometricweather.R$style: int activity_create_widget_done_button -okhttp3.internal.tls.BasicCertificateChainCleaner: boolean equals(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsModify(boolean) -cyanogenmod.externalviews.ExternalView$2: int val$height -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display2 -cyanogenmod.hardware.IThermalListenerCallback$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary -wangdaye.com.geometricweather.R$drawable: int abc_list_longpressed_holo -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitationProbability -androidx.preference.R$drawable: int abc_ic_star_half_black_16dp -androidx.appcompat.widget.AppCompatImageButton: void setImageBitmap(android.graphics.Bitmap) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int AlertID -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterTextAppearance -androidx.constraintlayout.widget.R$id: int decelerate -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -io.reactivex.internal.util.ArrayListSupplier -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderQuery -okhttp3.EventListener: void connectionReleased(okhttp3.Call,okhttp3.Connection) -wangdaye.com.geometricweather.main.MainActivity -com.google.gson.stream.JsonReader: boolean lenient -androidx.preference.R$id: int off -james.adaptiveicon.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetRight -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_122 -androidx.constraintlayout.widget.R$attr: int actionMenuTextAppearance -androidx.core.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.preference.R$styleable: int ActionBar_backgroundStacked -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_numericShortcut -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_tintMode -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedIndex -androidx.dynamicanimation.R$drawable: int notification_icon_background -com.google.android.material.R$styleable: int Chip_textStartPadding -okio.ByteString: void writeObject(java.io.ObjectOutputStream) -com.google.android.material.R$styleable -com.google.android.material.R$styleable: int ActionMenuItemView_android_minWidth -androidx.appcompat.widget.ActionBarContainer: void setTabContainer(androidx.appcompat.widget.ScrollingTabContainerView) -wangdaye.com.geometricweather.R$string: int key_notification -okhttp3.internal.http2.Http2Reader$Handler: void settings(boolean,okhttp3.internal.http2.Settings) -androidx.preference.R$attr: int actionBarTabBarStyle -androidx.loader.R$integer -io.reactivex.internal.observers.ForEachWhileObserver: long serialVersionUID -com.bumptech.glide.manager.SupportRequestManagerFragment -androidx.hilt.lifecycle.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.R$attr: int cardElevation -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_ACTIVE -wangdaye.com.geometricweather.R$layout: int item_weather_daily_air -com.google.android.material.R$string: int material_timepicker_am -androidx.fragment.R$id: int accessibility_custom_action_24 -com.baidu.location.e.n: n(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) -com.xw.repo.bubbleseekbar.R$styleable: int ButtonBarLayout_allowStacking -wangdaye.com.geometricweather.R$styleable: int TextAppearance_textAllCaps -cyanogenmod.themes.ThemeManager$1: void onFinish(boolean) -androidx.preference.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -okio.RealBufferedSink -okhttp3.Response$Builder: okhttp3.Response$Builder handshake(okhttp3.Handshake) -com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeErrorColor -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Title_Inverse -okio.Buffer: okio.Buffer write(byte[]) -androidx.constraintlayout.widget.R$layout: int notification_action_tombstone -okhttp3.Credentials: java.lang.String basic(java.lang.String,java.lang.String) -com.tencent.bugly.BuglyStrategy -com.google.android.material.R$attr: int maxAcceleration -com.google.android.material.R$style: int ThemeOverlay_AppCompat_ActionBar -okhttp3.internal.ws.WebSocketProtocol: int B1_FLAG_MASK -androidx.swiperefreshlayout.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.db.entities.DailyEntity: int nighttimeTemperature -com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior -com.xw.repo.bubbleseekbar.R$attr: int listChoiceBackgroundIndicator -androidx.work.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNo2(java.lang.Float) -wangdaye.com.geometricweather.R$styleable: int PopupWindow_android_popupAnimationStyle -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moonContainer -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlNormal -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse -androidx.constraintlayout.widget.R$id: int search_bar -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_default_mtrl_shape -wangdaye.com.geometricweather.R$attr: int windowActionModeOverlay -androidx.hilt.lifecycle.R$dimen: int compat_button_inset_horizontal_material -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_textAllCaps -android.didikee.donate.R$attr: int actionBarDivider -io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit) -com.turingtechnologies.materialscrollbar.R$attr: int enforceTextAppearance -wangdaye.com.geometricweather.R$styleable: int OnSwipe_maxAcceleration -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_font -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconVisible -com.turingtechnologies.materialscrollbar.R$attr: int editTextBackground -com.google.android.material.R$styleable: int ConstraintSet_android_maxWidth -okio.ByteString: okio.ByteString of(byte[],int,int) -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton -androidx.viewpager2.R$dimen: int compat_button_padding_horizontal_material -androidx.vectordrawable.animated.R$dimen: int notification_small_icon_size_as_large -com.google.android.material.stateful.ExtendableSavedState: android.os.Parcelable$Creator CREATOR -androidx.preference.R$styleable: int PopupWindowBackgroundState_state_above_anchor -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder domain(java.lang.String,boolean) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float no2 -androidx.work.WorkerParameters -wangdaye.com.geometricweather.R$layout: int widget_day_temp -wangdaye.com.geometricweather.R$integer: int mtrl_btn_anim_delay_ms -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getGrassDescription() -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification -androidx.preference.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPrimary(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int cardPreventCornerOverlap -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onError(java.lang.Throwable) -com.google.android.material.R$attr: int navigationIconColor -wangdaye.com.geometricweather.R$id: int dialog_location_help_manageIcon -james.adaptiveicon.R$dimen: int abc_dialog_padding_material -androidx.vectordrawable.animated.R$dimen: int compat_notification_large_icon_max_height -androidx.appcompat.widget.AppCompatRatingBar: AppCompatRatingBar(android.content.Context,android.util.AttributeSet,int) -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_alpha -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onComplete() -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: boolean mCanceled -okhttp3.internal.ws.RealWebSocket$1 -cyanogenmod.app.IPartnerInterface$Stub: android.os.IBinder asBinder() +james.adaptiveicon.R$dimen: int highlight_alpha_material_dark +cyanogenmod.content.Intent: java.lang.String ACTION_THEME_UPDATED +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableRight +com.google.android.material.R$attr: int buttonTintMode +androidx.vectordrawable.animated.R$id: int italic +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onSuccess(java.lang.Object) +com.google.android.material.tabs.TabLayout: void setUnboundedRippleResource(int) +com.google.android.material.chip.Chip: android.graphics.Rect getCloseIconTouchBoundsInt() +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Menu +androidx.appcompat.resources.R$dimen: int compat_button_inset_vertical_material +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout +wangdaye.com.geometricweather.R$attr: int activityChooserViewStyle +com.google.android.material.tabs.TabLayout: int getSelectedTabPosition() +james.adaptiveicon.R$drawable: int abc_ic_menu_cut_mtrl_alpha +james.adaptiveicon.R$dimen: int abc_dialog_padding_top_material +james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionBar +com.google.android.material.R$style: int Widget_AppCompat_ListView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String headDescription +android.didikee.donate.R$styleable: int AppCompatTheme_panelMenuListTheme +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +wangdaye.com.geometricweather.R$string: int path_password_eye_mask_strike_through +com.google.android.material.R$string: int mtrl_picker_announce_current_selection +androidx.appcompat.R$styleable: int MenuView_android_headerBackground +com.google.android.material.R$attr: int textAppearanceButton +androidx.vectordrawable.R$drawable: int notification_action_background +okhttp3.internal.http1.Http1Codec: int STATE_OPEN_REQUEST_BODY +com.google.android.material.card.MaterialCardView: void setRadius(float) +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_USER_KEY +com.google.android.material.slider.Slider: float getStepSize() +com.google.android.material.textfield.TextInputLayout: void setHint(java.lang.CharSequence) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicatorAnimationDuration +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_bias +androidx.preference.R$color: int highlighted_text_material_dark +okhttp3.Headers: java.util.Set names() +io.reactivex.internal.queue.SpscArrayQueue: int mask +cyanogenmod.content.Intent: java.lang.String ACTION_APP_FAILURE +okhttp3.internal.http2.Http2Stream: void writeHeaders(java.util.List,boolean) +androidx.appcompat.R$styleable: int MenuView_android_windowAnimationStyle +cyanogenmod.profiles.StreamSettings$1: java.lang.Object[] newArray(int) +androidx.core.app.RemoteActionCompatParcelizer +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language FRENCH +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: AccuCurrentResult$Visibility$Metric() +androidx.appcompat.R$styleable: int AppCompatTheme_tooltipForegroundColor +james.adaptiveicon.R$dimen: int abc_text_size_body_2_material +wangdaye.com.geometricweather.R$string: int abc_prepend_shortcut_label +com.google.android.material.chip.Chip: android.content.res.ColorStateList getRippleColor() +androidx.appcompat.view.menu.ExpandedMenuView: int getWindowAnimations() +com.amap.api.location.UmidtokenInfo: boolean c +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_visibility +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onComplete() +com.tencent.bugly.crashreport.biz.b: long l() +cyanogenmod.app.LiveLockScreenInfo$1: java.lang.Object[] newArray(int) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver +com.google.android.material.R$styleable: int Constraint_flow_firstHorizontalBias +wangdaye.com.geometricweather.R$attr: int deriveConstraintsFrom +androidx.appcompat.R$color: int material_grey_50 +androidx.lifecycle.viewmodel.R +com.google.android.material.R$string: int fab_transformation_scrim_behavior +james.adaptiveicon.R$attr: int windowActionModeOverlay +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String zh_TW +wangdaye.com.geometricweather.R$drawable: int design_snackbar_background +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: double Value +okhttp3.internal.http1.Http1Codec$AbstractSource: Http1Codec$AbstractSource(okhttp3.internal.http1.Http1Codec,okhttp3.internal.http1.Http1Codec$1) +androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +cyanogenmod.themes.IThemeProcessingListener$Stub: android.os.IBinder asBinder() +okhttp3.MediaType: java.util.regex.Pattern PARAMETER +io.reactivex.Observable: io.reactivex.Observable onErrorReturn(io.reactivex.functions.Function) +androidx.activity.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.R$attr: int helperTextTextColor +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startColor +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Small +com.google.android.material.R$attr: int counterMaxLength +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTheme +org.greenrobot.greendao.database.DatabaseOpenHelper: void onUpgrade(org.greenrobot.greendao.database.Database,int,int) +james.adaptiveicon.R$color: int primary_text_default_material_dark +androidx.preference.R$styleable: int Toolbar_contentInsetLeft +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder cipherSuites(okhttp3.CipherSuite[]) +androidx.hilt.R$attr: int fontStyle +wangdaye.com.geometricweather.R$id: int fragment +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_max +android.didikee.donate.R$drawable: int abc_textfield_default_mtrl_alpha +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getUVDescription() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +androidx.constraintlayout.widget.R$color: int abc_primary_text_disable_only_material_light +com.google.android.gms.signin.internal.zak +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_search_material +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_BottomSheetDialog +androidx.constraintlayout.widget.R$styleable: int Constraint_constraint_referenced_ids +com.google.android.material.R$drawable: int abc_item_background_holo_dark +wangdaye.com.geometricweather.R$styleable: int MotionHelper_onHide +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: long serialVersionUID +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_bottom +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean delayErrors +wangdaye.com.geometricweather.R$id: int container_alert_display_view_container +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_pressed_z +androidx.appcompat.R$attr: int tintMode +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLocationMode(com.amap.api.location.AMapLocationClientOption$AMapLocationMode) +okio.Okio: okio.BufferedSink buffer(okio.Sink) +com.google.android.material.R$styleable: int Layout_layout_constrainedWidth +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onComplete() +androidx.lifecycle.LifecycleRegistry: LifecycleRegistry(androidx.lifecycle.LifecycleOwner) +wangdaye.com.geometricweather.R$styleable: int ArcProgress_text_size +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +cyanogenmod.providers.CMSettings$Secure: java.lang.String CM_SETUP_WIZARD_COMPLETED +android.didikee.donate.R$attr: int actionModeCutDrawable +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List hourlyEntityList +com.google.android.material.appbar.CollapsingToolbarLayout: long getScrimAnimationDuration() +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_transformPivotX +androidx.hilt.work.R$id: int accessibility_custom_action_18 +com.tencent.bugly.crashreport.CrashReport$UserStrategy: com.tencent.bugly.crashreport.CrashReport$CrashHandleCallback getCrashHandleCallback() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Body1 +android.didikee.donate.R$styleable: int Toolbar_popupTheme +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Small +cyanogenmod.profiles.LockSettings: boolean isDirty() +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_15 +androidx.constraintlayout.widget.R$attr: int elevation +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +androidx.appcompat.resources.R$id: int notification_background +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setWeatherSource(java.lang.String) +androidx.constraintlayout.widget.Barrier: void setType(int) +androidx.appcompat.R$drawable: int abc_btn_check_material_anim +com.google.android.material.slider.BaseSlider: int getAccessibilityFocusedVirtualViewId() +androidx.preference.R$styleable: int AppCompatTheme_dividerHorizontal +okhttp3.Request$Builder: okhttp3.Request$Builder head() +wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_dividerHeight +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void truncateFinal() +cyanogenmod.app.suggest.IAppSuggestManager$Stub: cyanogenmod.app.suggest.IAppSuggestManager asInterface(android.os.IBinder) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: AccuCurrentResult$LocalSource() +androidx.drawerlayout.R$styleable: int GradientColor_android_endX +com.google.android.material.R$attr: int backgroundOverlayColorAlpha +androidx.appcompat.widget.SwitchCompat: void setThumbTintList(android.content.res.ColorStateList) +com.tencent.bugly.crashreport.crash.a: long a +androidx.preference.R$color: R$color() +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +com.google.android.material.chip.Chip: void setLayoutDirection(int) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: MfWarningsResult$WarningAdvice() +androidx.work.NetworkType: androidx.work.NetworkType METERED +com.google.android.material.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +wangdaye.com.geometricweather.R$attr: int customNavigationLayout +retrofit2.ParameterHandler$Field +io.reactivex.internal.util.AtomicThrowable: boolean isTerminated() +com.google.android.material.datepicker.MaterialTextInputPicker +com.google.android.material.R$attr: int materialAlertDialogTitlePanelStyle +androidx.constraintlayout.widget.R$styleable: int[] ActionMenuItemView +james.adaptiveicon.R$attr: int iconTintMode +wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_HIGH +com.google.android.material.textfield.TextInputLayout: void setEditText(android.widget.EditText) +com.turingtechnologies.materialscrollbar.R$attr: int collapsedTitleGravity +androidx.preference.R$style: int Base_V23_Theme_AppCompat +cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: int KPH +com.google.android.material.bottomnavigation.BottomNavigationView: int getItemTextAppearanceActive() +androidx.preference.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +retrofit2.converter.gson.GsonRequestBodyConverter: GsonRequestBodyConverter(com.google.gson.Gson,com.google.gson.TypeAdapter) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitationProbability +io.reactivex.internal.observers.InnerQueuedObserver: int fusionMode +com.google.android.material.R$attr: int colorOnBackground +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setCityId(java.lang.String) +wangdaye.com.geometricweather.R$string: int cpv_select +com.google.android.material.appbar.CollapsingToolbarLayout: int getCollapsedTitleGravity() +james.adaptiveicon.R$drawable: int abc_text_cursor_material +okhttp3.internal.http2.Http2Connection$4 +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +james.adaptiveicon.R$styleable: int SwitchCompat_android_textOff +wangdaye.com.geometricweather.R$string: int settings_title_notification_color +androidx.appcompat.R$style: int Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: CNWeatherResult$WeatherX$InfoX() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoldLevel() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeStyle +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int) +wangdaye.com.geometricweather.db.entities.HourlyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +com.google.android.material.R$style: int Widget_Design_TextInputLayout +cyanogenmod.providers.CMSettings$Secure: float getFloat(android.content.ContentResolver,java.lang.String) +androidx.preference.R$id: int icon_frame +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain Rain +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: int hashCode() +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginTop +com.google.android.material.R$styleable: int[] MaterialShape +okhttp3.internal.http2.Settings: int getHeaderTableSize() +androidx.lifecycle.DefaultLifecycleObserver: void onCreate(androidx.lifecycle.LifecycleOwner) +wangdaye.com.geometricweather.R$drawable: int ic_flower +androidx.preference.R$attr: int editTextColor +retrofit2.ParameterHandler$FieldMap: void apply(retrofit2.RequestBuilder,java.util.Map) +com.turingtechnologies.materialscrollbar.R$id: int auto +com.jaredrummler.android.colorpicker.R$attr: int actionModeCopyDrawable +com.tencent.bugly.crashreport.common.strategy.StrategyBean +com.xw.repo.bubbleseekbar.R$attr: int contentInsetRight +androidx.vectordrawable.R$id: int accessibility_custom_action_14 +james.adaptiveicon.R$styleable: int Spinner_popupTheme +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: android.os.IBinder asBinder() +com.google.android.material.R$styleable: int Constraint_layout_constraintLeft_toRightOf +androidx.preference.R$id: int tag_accessibility_pane_title +com.google.android.material.R$styleable: int Chip_android_maxWidth +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_translationZ +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: double Value +com.amap.api.fence.GeoFenceManagerBase: void addKeywordGeoFence(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.google.android.material.R$color: int mtrl_chip_close_icon_tint +androidx.appcompat.widget.ActionBarOverlayLayout: void setHasNonEmbeddedTabs(boolean) +androidx.appcompat.R$styleable: int AppCompatTextView_textAllCaps +okhttp3.internal.platform.Platform: boolean isCleartextTrafficPermitted(java.lang.String) +com.google.android.material.imageview.ShapeableImageView: float getStrokeWidth() +com.turingtechnologies.materialscrollbar.R$dimen: int hint_pressed_alpha_material_dark +org.greenrobot.greendao.AbstractDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +com.amap.api.location.AMapLocationClientOption: void setLocationProtocol(com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol) +androidx.swiperefreshlayout.R$attr: int font +android.didikee.donate.R$attr: int contentInsetStart +wangdaye.com.geometricweather.R$styleable: int Chip_textEndPadding +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +android.didikee.donate.R$color: int material_grey_50 +cyanogenmod.app.Profile: void validateRingtones(android.content.Context) +com.google.android.material.bottomnavigation.BottomNavigationView: void setElevation(float) +wangdaye.com.geometricweather.R$attr: int dialogPreferenceStyle +androidx.preference.R$layout: int support_simple_spinner_dropdown_item +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.Scheduler$Worker worker +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityDestroyed(android.app.Activity) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_fontVariationSettings +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CUSTOM_VALUES +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: int skip +com.jaredrummler.android.colorpicker.R$string: int abc_action_mode_done +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void setUserOpened(boolean) +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_16dp +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ButtonBar +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierMargin +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintVertical_bias +androidx.recyclerview.R$layout: int notification_action_tombstone +androidx.hilt.R$styleable: int GradientColor_android_endY +androidx.drawerlayout.R$id: int tag_unhandled_key_event_manager +com.jaredrummler.android.colorpicker.R$styleable: int[] Spinner +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.ObservableEmitter emitter +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_logo +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: java.lang.String getUIStyleName(android.content.Context) +cyanogenmod.externalviews.KeyguardExternalView$11: void run() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: void setValue(java.util.List) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean cancelled +com.tencent.bugly.crashreport.common.info.a: void a(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int MaterialCheckBox_useMaterialThemeColors +james.adaptiveicon.R$style: int Widget_AppCompat_ImageButton +wangdaye.com.geometricweather.R$array: int duration_unit_voices +com.google.android.material.R$styleable: int ActionBar_contentInsetRight +wangdaye.com.geometricweather.R$layout: int item_card_display +com.turingtechnologies.materialscrollbar.R$attr: int cardCornerRadius +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableLeft +androidx.customview.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit[] values() +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setPostalCode(java.lang.String) +wangdaye.com.geometricweather.R$string: int feedback_location_help_title +com.xw.repo.bubbleseekbar.R$attr: int navigationIcon +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_EditText +androidx.legacy.coreutils.R$layout: int notification_action +com.google.android.gms.base.R$id: int light +com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Dialog +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial +okio.RealBufferedSource: short readShort() +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_text_size +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Time +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_checkable +com.google.android.material.textfield.TextInputLayout: int getBoxStrokeColor() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: CNWeatherResult$Life() +james.adaptiveicon.R$attr: int textAppearanceListItemSmall +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Caption +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: boolean terminated +com.google.android.material.R$attr: int itemTextColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setDate(java.lang.String) +com.google.android.material.R$styleable: int PopupWindow_android_popupAnimationStyle +androidx.customview.R$dimen: int compat_button_inset_vertical_material +com.tencent.bugly.crashreport.common.info.a: java.lang.String ac +io.reactivex.Observable: io.reactivex.Observable concatMapIterable(io.reactivex.functions.Function,int) +androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerColor +com.jaredrummler.android.colorpicker.R$dimen: int abc_control_inset_material +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_default +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_mode_close_item_material +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: int phenomenonId +okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] publicSuffixListBytes +okhttp3.internal.http.RealInterceptorChain +cyanogenmod.app.CMStatusBarManager: void publishTile(int,cyanogenmod.app.CustomTile) +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_expanded +android.didikee.donate.R$id: int activity_chooser_view_content +androidx.viewpager2.widget.ViewPager2: void setUserInputEnabled(boolean) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_al +com.google.android.material.R$attr: int hintAnimationEnabled +androidx.viewpager.R$dimen: int notification_small_icon_size_as_large +com.jaredrummler.android.colorpicker.R$dimen: int abc_alert_dialog_button_dimen +androidx.appcompat.resources.R$styleable +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu +cyanogenmod.providers.CMSettings$System: java.lang.String RECENTS_SHOW_SEARCH_BAR +okhttp3.HttpUrl: java.util.List encodedPathSegments() +okhttp3.CacheControl$Builder: boolean immutable +androidx.activity.ImmLeaksCleaner +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_statusBarForeground +androidx.viewpager2.R$styleable: int GradientColor_android_endColor +android.didikee.donate.R$dimen: int abc_dropdownitem_icon_width +com.google.android.material.R$styleable: int AlertDialog_multiChoiceItemLayout +androidx.preference.R$drawable: int abc_cab_background_top_material +com.google.android.material.R$styleable: int GradientColor_android_endY +okio.ByteString: java.lang.String toString() +androidx.loader.R$attr: int fontVariationSettings +androidx.lifecycle.LiveData: void assertMainThread(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_behavior +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isIce() +androidx.core.R$styleable: int FontFamily_fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_visible +wangdaye.com.geometricweather.R$drawable: int weather_fog_pixel +okhttp3.internal.http1.Http1Codec: int STATE_IDLE +okhttp3.Cache$Entry: java.lang.String SENT_MILLIS +james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedHeightMajor +james.adaptiveicon.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: java.lang.String Unit +android.didikee.donate.R$style: int Widget_AppCompat_SearchView +com.tencent.bugly.proguard.p: boolean a(int,java.lang.String,byte[],com.tencent.bugly.proguard.o) +com.xw.repo.bubbleseekbar.R$id: int up +cyanogenmod.app.IProfileManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2 +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabText +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_contentDescription +androidx.preference.R$styleable: int Toolbar_titleMarginBottom +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource CAIYUN +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_showMotionSpec +retrofit2.OkHttpCall: retrofit2.OkHttpCall clone() +com.tencent.bugly.crashreport.common.info.b: java.lang.String n() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: double Value +com.google.android.material.R$styleable: int Layout_chainUseRtl +wangdaye.com.geometricweather.R$string: int local_time +com.google.android.material.R$attr: R$attr() +okio.Pipe$PipeSource: long read(okio.Buffer,long) +wangdaye.com.geometricweather.R$layout: int abc_tooltip +androidx.constraintlayout.widget.R$color: int switch_thumb_normal_material_dark com.google.android.material.switchmaterial.SwitchMaterial: android.content.res.ColorStateList getMaterialThemeColorsTrackTintList() -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean g -com.xw.repo.bubbleseekbar.R$id: int buttonPanel -androidx.core.R$dimen: int notification_media_narrow_margin -com.bumptech.glide.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.R$array: int air_quality_units -com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.String,java.lang.Throwable) -com.google.android.material.R$attr: int badgeStyle -io.reactivex.internal.disposables.DisposableHelper: boolean replace(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$styleable: int[] ChipGroup -okhttp3.Response: void close() -android.didikee.donate.R$style: int Widget_AppCompat_AutoCompleteTextView -com.google.android.material.R$styleable: int TextInputLayout_startIconTintMode -com.xw.repo.bubbleseekbar.R$attr: int thickness -wangdaye.com.geometricweather.R$id: int lastElement -com.google.android.material.R$attr: int horizontalOffset -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: long serialVersionUID -androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_android_color -com.google.android.material.R$layout: int design_layout_snackbar_include -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginStart -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: int WeatherIcon -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean done -com.xw.repo.bubbleseekbar.R$layout: int abc_action_mode_bar -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String languageId -androidx.preference.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -wangdaye.com.geometricweather.R$drawable: int ic_back -okhttp3.package-info -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int sourceMode -com.google.android.material.appbar.AppBarLayout: void setStatusBarForegroundColor(int) -com.google.android.material.R$styleable: int LinearLayoutCompat_android_orientation -wangdaye.com.geometricweather.R$string: int feels_like -com.google.android.material.R$dimen: int highlight_alpha_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_backgroundTint -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_expanded -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setPubTime(java.lang.String) -androidx.viewpager2.R$color: R$color() -com.tencent.bugly.proguard.i$a: byte a -james.adaptiveicon.R$attr: int textAllCaps -com.google.android.material.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets -androidx.appcompat.R$styleable: int ActionBar_subtitleTextStyle -wangdaye.com.geometricweather.R$string: int week_1 -androidx.lifecycle.ReportFragment: void setProcessListener(androidx.lifecycle.ReportFragment$ActivityInitializationListener) -androidx.hilt.R$id: int accessibility_custom_action_10 -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_scaleY -okhttp3.RealCall -androidx.preference.R$dimen: int compat_notification_large_icon_max_width -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView -androidx.vectordrawable.animated.R$dimen: int notification_media_narrow_margin -androidx.viewpager2.R$id: int time -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int state -androidx.appcompat.R$style: int Widget_AppCompat_PopupWindow -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents -androidx.constraintlayout.widget.R$color: int highlighted_text_material_light -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String pubTime -androidx.core.widget.NestedScrollView: void setSmoothScrollingEnabled(boolean) -com.google.android.material.chip.Chip: void setIconStartPadding(float) -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onScreenTurnedOff() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconContentDescription -wangdaye.com.geometricweather.R$color: int notification_background_rootDark -androidx.preference.R$color: int background_material_dark -androidx.constraintlayout.widget.R$styleable: int Toolbar_maxButtonHeight -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode NIGHT -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date updateDate -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setStatus(int) -com.amap.api.location.AMapLocationClient -androidx.preference.R$id: int accessibility_custom_action_5 -androidx.preference.R$layout: int abc_list_menu_item_checkbox -okhttp3.Address: java.lang.String toString() -androidx.preference.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -androidx.preference.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.R$string: int alipay -androidx.constraintlayout.widget.R$attr: int ratingBarStyle -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_notificationGroupExistsByName -com.google.android.material.R$drawable: int notification_bg -android.didikee.donate.R$attr: int actionModeCloseButtonStyle -com.google.android.material.R$attr: int materialCalendarMonthNavigationButton -com.baidu.location.indoor.mapversion.c.a$d: java.lang.String a -com.google.android.material.R$drawable: int abc_seekbar_track_material -androidx.recyclerview.R$id: int tag_accessibility_actions -okhttp3.internal.http2.Http2Connection$4: Http2Connection$4(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,java.util.List) -com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_anchor -okhttp3.internal.http2.Http2Reader: java.util.logging.Logger logger +okhttp3.CacheControl: boolean isPrivate +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_15 +androidx.appcompat.resources.R$dimen: int notification_top_pad_large_text +android.didikee.donate.R$styleable: int[] ActionBarLayout +androidx.appcompat.view.menu.ActionMenuItemView: void setItemInvoker(androidx.appcompat.view.menu.MenuBuilder$ItemInvoker) +wangdaye.com.geometricweather.R$string: int material_minute_suffix +com.google.android.material.R$styleable: int Constraint_flow_firstHorizontalStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String weather +androidx.preference.R$id: int edit_query +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Bridge +com.google.android.material.R$attr: int fastScrollEnabled +androidx.lifecycle.SavedStateHandle: java.util.Map mLiveDatas +com.amap.api.location.AMapLocation: java.lang.String h +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_21 +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_OutlinedButton +okhttp3.internal.http2.Hpack$Reader: Hpack$Reader(int,int,okio.Source) +james.adaptiveicon.R$dimen: int notification_action_icon_size +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicBoolean cancelled +androidx.fragment.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +com.tencent.bugly.proguard.aa +wangdaye.com.geometricweather.R$string: int week +okhttp3.internal.Util$1 +androidx.preference.R$attr: int actionModeWebSearchDrawable +com.tencent.bugly.proguard.aj: byte[] d +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void setDisposable(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean() +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_cut_mtrl_alpha +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: kotlin.coroutines.Continuation $continuation +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.String dailyWeatherDescription +androidx.appcompat.view.menu.ActionMenuItemView: void setTitle(java.lang.CharSequence) +com.google.android.material.R$attr: int expanded +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_writePersistentBytes +androidx.dynamicanimation.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int o3 +okio.SegmentedByteString: okio.ByteString toAsciiUppercase() +com.xw.repo.bubbleseekbar.R$layout: int abc_dialog_title_material +androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_button_bar_material +com.google.android.material.internal.BaselineLayout +com.google.android.material.R$color: int design_fab_stroke_end_inner_color +androidx.preference.R$styleable: int Spinner_android_popupBackground +androidx.hilt.R$anim +android.didikee.donate.R$styleable: int MenuView_android_itemBackground +androidx.legacy.coreutils.R$string +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: java.lang.Object v2 +androidx.appcompat.R$styleable: int ColorStateListItem_android_alpha +cyanogenmod.providers.CMSettings$Global: float getFloat(android.content.ContentResolver,java.lang.String,float) +androidx.viewpager2.R$attr: int fastScrollHorizontalTrackDrawable +wangdaye.com.geometricweather.R$layout: int design_bottom_sheet_dialog +com.google.android.material.R$dimen: int mtrl_btn_pressed_z +wangdaye.com.geometricweather.background.service.TileService: TileService() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: AccuCurrentResult$Past24HourTemperatureDeparture$Imperial() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow6h +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +androidx.core.R$id: int chronometer +com.google.android.gms.base.R$id: int auto +wangdaye.com.geometricweather.R$array: int subtitle_data_values +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_AUTH +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_ENABLED_VALIDATOR +com.google.android.material.R$attr: int textAppearanceSearchResultTitle +okhttp3.internal.http2.Http2Reader$Handler +com.google.android.material.R$styleable: int Constraint_android_visibility +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy +com.google.android.material.R$styleable: int MenuItem_android_titleCondensed +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String tempMin +okhttp3.internal.cache2.Relay: int sourceCount +io.reactivex.internal.observers.ForEachWhileObserver: void onNext(java.lang.Object) +cyanogenmod.app.ProfileGroup: java.util.UUID mUuid +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality() +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_ActionBar +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void innerSuccess(java.lang.Object) +com.xw.repo.bubbleseekbar.R$dimen: int abc_control_padding_material +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_2 +com.google.android.material.R$styleable: int Layout_layout_constraintWidth_default +androidx.preference.R$style: int Base_V26_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime +cyanogenmod.externalviews.KeyguardExternalView$7: cyanogenmod.externalviews.KeyguardExternalView this$0 +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_padding_top_material +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: void invoke(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_top_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: java.lang.String Unit +androidx.legacy.coreutils.R$styleable: int GradientColor_android_endX +androidx.preference.R$drawable: int abc_list_divider_mtrl_alpha +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +androidx.hilt.lifecycle.R$dimen: int compat_button_inset_vertical_material +android.didikee.donate.R$attr: int textAppearanceLargePopupMenu +androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMarkTint +androidx.constraintlayout.widget.R$color: int material_blue_grey_950 +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String getLevel() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitation +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: long serialVersionUID +retrofit2.RequestFactory$Builder: java.lang.String httpMethod +com.xw.repo.bubbleseekbar.R$attr: int dialogPreferredPadding +androidx.constraintlayout.widget.R$color: int bright_foreground_inverse_material_light +okhttp3.internal.http2.ErrorCode: ErrorCode(java.lang.String,int,int) +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: boolean requestDismissAndStartActivity(android.content.Intent) +io.reactivex.internal.observers.InnerQueuedObserver: void onError(java.lang.Throwable) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FREEZING_DRIZZLE +androidx.constraintlayout.widget.R$drawable: int notification_action_background +com.turingtechnologies.materialscrollbar.R$styleable: int View_paddingEnd +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingStart +androidx.appcompat.resources.R$dimen: int notification_small_icon_background_padding +cyanogenmod.util.ColorUtils: float[] temperatureToRGB(int) +wangdaye.com.geometricweather.R$dimen: int material_clock_number_text_size +org.greenrobot.greendao.database.DatabaseOpenHelper: android.content.Context context +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String parent +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_BINARY +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: ObservableRange$RangeDisposable(io.reactivex.Observer,long,long) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List probabilityForecast +okhttp3.Headers: void checkName(java.lang.String) +androidx.constraintlayout.widget.R$id: int path +android.didikee.donate.R$styleable: int AppCompatTextView_drawableStartCompat +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf +androidx.lifecycle.ProcessLifecycleOwner$2: void onCreate() +androidx.preference.R$attr: int windowMinWidthMinor +wangdaye.com.geometricweather.R$attr: int cpv_thickness +okhttp3.WebSocket: okhttp3.Request request() +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTint +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$attr: int singleChoiceItemLayout +james.adaptiveicon.R$drawable: int abc_seekbar_thumb_material +com.xw.repo.bubbleseekbar.R$attr: int title +james.adaptiveicon.R$styleable: int AppCompatTheme_editTextStyle +wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_xml +com.google.android.material.R$string: int mtrl_picker_invalid_range +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_z +wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_grey +androidx.coordinatorlayout.R$layout: int custom_dialog +androidx.constraintlayout.widget.R$styleable: int AlertDialog_singleChoiceItemLayout +okhttp3.internal.tls.BasicTrustRootIndex: BasicTrustRootIndex(java.security.cert.X509Certificate[]) +androidx.constraintlayout.widget.R$id: int text +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float Lead +com.jaredrummler.android.colorpicker.R$attr: int seekBarIncrement +com.google.android.material.R$styleable: int ProgressIndicator_circularInset +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Date +cyanogenmod.weather.WeatherInfo: int getConditionCode() +androidx.cardview.R$styleable: int CardView_cardElevation +com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_sliderColor +androidx.constraintlayout.widget.R$styleable: int State_constraints +android.didikee.donate.R$styleable: int AppCompatTheme_searchViewStyle +james.adaptiveicon.R$attr: int actionModeCloseDrawable +okio.Util: void checkOffsetAndCount(long,long,long) wangdaye.com.geometricweather.R$attr: int drawableEndCompat -androidx.recyclerview.widget.RecyclerView: void setLayoutFrozen(boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial Imperial -com.google.android.material.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 -androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getOverflowIcon() -com.google.android.material.R$attr: int customPixelDimension -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer -io.reactivex.Observable: io.reactivex.Observable concatDelayError(io.reactivex.ObservableSource,int,boolean) -androidx.preference.R$attr: int menu -androidx.loader.R$attr: R$attr() -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: long serialVersionUID -cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setTemperatureUnit(int) -androidx.constraintlayout.widget.R$styleable: int OnSwipe_maxVelocity -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW_FLURRIES -androidx.dynamicanimation.R$styleable: int GradientColorItem_android_offset -androidx.preference.R$styleable: int RecyclerView_fastScrollEnabled -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf -com.jaredrummler.android.colorpicker.R$attr: int autoSizePresetSizes -androidx.swiperefreshlayout.R$styleable: int[] FontFamily -james.adaptiveicon.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_PROVIDER -androidx.hilt.work.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode DAY -com.google.android.material.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -com.tencent.bugly.crashreport.biz.b: long l() -wangdaye.com.geometricweather.R$id: int easeIn -com.amap.api.fence.GeoFenceClient: void addGeoFence(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String) -androidx.preference.R$styleable: int Toolbar_titleTextColor -androidx.viewpager.R$id: int chronometer -android.didikee.donate.R$attr: int srcCompat -com.google.android.material.R$attr: int boxStrokeErrorColor -androidx.appcompat.R$dimen: int abc_action_button_min_width_overflow_material -androidx.appcompat.resources.R$id: int accessibility_custom_action_3 -com.google.android.material.R$id: int incoming -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_5_30 -com.jaredrummler.android.colorpicker.R$drawable: int notification_action_background -androidx.preference.R$attr: int preferenceCategoryStyle -okio.RealBufferedSource: long indexOfElement(okio.ByteString,long) -com.google.android.material.R$styleable: int KeyCycle_transitionEasing -androidx.viewpager2.R$styleable: int GradientColor_android_startX -com.baidu.location.d.a$a -androidx.preference.R$styleable: int ActionBar_title -com.tencent.bugly.crashreport.CrashReport: boolean setJavascriptMonitor(android.webkit.WebView,boolean,boolean) -com.tencent.bugly.crashreport.common.info.a: java.lang.String h() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox -com.google.android.material.R$dimen: int design_tab_scrollable_min_width -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer -androidx.constraintlayout.widget.R$styleable: int[] SwitchCompat -androidx.preference.R$style: int TextAppearance_AppCompat_SearchResult_Title -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.R$id: int scrollIndicatorUp -com.google.android.material.R$styleable: int MenuView_android_verticalDivider -james.adaptiveicon.R$drawable: int abc_btn_switch_to_on_mtrl_00001 -com.google.android.material.R$attr: int titleMarginBottom -cyanogenmod.app.Profile$ProfileTrigger$1: cyanogenmod.app.Profile$ProfileTrigger[] newArray(int) -com.google.android.material.R$string: int material_timepicker_pm -androidx.constraintlayout.widget.R$styleable: int Motion_motionStagger -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Subhead -com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_U3D -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol getLocationProtocol() -cyanogenmod.weather.CMWeatherManager$2$2: int val$status -androidx.coordinatorlayout.R$layout: int notification_template_icon_group -okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte EXCEPTION_MARKER -okhttp3.Request$Builder: okhttp3.Request$Builder patch(okhttp3.RequestBody) -cyanogenmod.power.IPerformanceManager: void cpuBoost(int) -androidx.appcompat.widget.SearchView: void setQuery(java.lang.CharSequence) -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_trackTintMode -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial Imperial -androidx.swiperefreshlayout.R$dimen: int notification_content_margin_start -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Caption -wangdaye.com.geometricweather.db.entities.HistoryEntityDao -androidx.preference.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -androidx.viewpager.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_icon_size -wangdaye.com.geometricweather.R$string: int widget_clock_day_vertical -com.tencent.bugly.crashreport.crash.CrashDetailBean: long M -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_textOff -androidx.dynamicanimation.R$dimen: R$dimen() -wangdaye.com.geometricweather.R$attr: int msb_handleOffColor -androidx.preference.R$style: int Widget_AppCompat_ProgressBar -com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: void printLog(java.lang.String) -wangdaye.com.geometricweather.R$string: int settings_title_notification_color -com.google.android.material.R$attr: int dialogCornerRadius -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionOverflowButtonStyle -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetLeft -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setBadgeDrawables(android.util.SparseArray) -wangdaye.com.geometricweather.R$string: int key_notification_hide_in_lockScreen -androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_height -androidx.legacy.coreutils.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: java.lang.Long set -androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy APPEND_OR_REPLACE -androidx.preference.R$styleable: int Toolbar_titleMargins -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: int UnitType -okhttp3.internal.http1.Http1Codec: okio.Sink createRequestBody(okhttp3.Request,long) -james.adaptiveicon.R$integer: int abc_config_activityDefaultDur -androidx.preference.R$style: int Widget_AppCompat_TextView -wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_secondary -androidx.preference.R$styleable: int AppCompatTheme_android_windowAnimationStyle -com.google.android.material.R$dimen: int mtrl_extended_fab_icon_size -okhttp3.internal.cache.DiskLruCache$Editor: okio.Source newSource(int) -androidx.recyclerview.R$styleable: int FontFamilyFont_ttcIndex -james.adaptiveicon.R$styleable: int View_paddingEnd -com.xw.repo.bubbleseekbar.R$attr: int state_above_anchor -androidx.preference.R$styleable: int AppCompatTheme_dialogPreferredPadding -androidx.preference.R$styleable: int SwitchCompat_android_thumb -com.turingtechnologies.materialscrollbar.R$styleable: int[] View -okhttp3.internal.http2.Http2Stream$FramingSink: void write(okio.Buffer,long) -android.didikee.donate.R$styleable: int SwitchCompat_switchPadding -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPaused(android.app.Activity) -android.didikee.donate.R$dimen: int abc_edit_text_inset_top_material -androidx.preference.R$style: int Widget_AppCompat_Button -cyanogenmod.app.CustomTile$ExpandedStyle$1: java.lang.Object createFromParcel(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$drawable: int abc_tab_indicator_material -cyanogenmod.profiles.StreamSettings: boolean mDirty -wangdaye.com.geometricweather.R$attr: int preferenceCategoryStyle -com.turingtechnologies.materialscrollbar.R$attr: int closeIconEndPadding -android.didikee.donate.R$color: int abc_tint_switch_track -okhttp3.Request$Builder: okhttp3.Request$Builder head() -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: DailyEntityDao$Properties() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_borderlessButtonStyle -okhttp3.CookieJar: void saveFromResponse(okhttp3.HttpUrl,java.util.List) -com.google.android.material.bottomnavigation.BottomNavigationView: int getItemTextAppearanceInactive() -androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Light -com.github.rahatarmanahmed.cpv.CircularProgressView$4: void onAnimationUpdate(android.animation.ValueAnimator) -wangdaye.com.geometricweather.R$anim: int fragment_manange_pop_exit -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setBadge(com.google.android.material.badge.BadgeDrawable) -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setAlarm(java.lang.String) -okhttp3.internal.cache.DiskLruCache: DiskLruCache(okhttp3.internal.io.FileSystem,java.io.File,int,int,long,java.util.concurrent.Executor) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: java.lang.String date -androidx.constraintlayout.widget.R$styleable: int[] FontFamilyFont -com.google.android.material.R$color: int material_timepicker_modebutton_tint -androidx.preference.R$styleable: int Preference_key -androidx.preference.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat_Dark -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: java.lang.String timezone -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetRight -com.google.android.material.R$id: int textinput_helper_text -com.amap.api.location.AMapLocationClient: void setLocationListener(com.amap.api.location.AMapLocationListener) -com.google.android.material.R$attr: int maxButtonHeight -com.google.android.material.R$attr: int shapeAppearance -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) -com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context,android.util.AttributeSet,int) -androidx.preference.TwoStatePreference$SavedState -androidx.constraintlayout.widget.R$attr: int layout_constraintEnd_toEndOf -okhttp3.Cache: int requestCount -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_min_width -android.didikee.donate.R$attr: int closeItemLayout -wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_toBottomOf +com.google.android.material.chip.Chip: float getChipIconSize() +androidx.work.R$id: int tag_unhandled_key_event_manager +okhttp3.Headers$Builder: okhttp3.Headers$Builder addLenient(java.lang.String) +wangdaye.com.geometricweather.R$id: int widget_remote_card +androidx.appcompat.R$styleable: int AppCompatTextView_drawableTopCompat +james.adaptiveicon.R$styleable: int ActionMenuItemView_android_minWidth +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_off_mtrl_alpha +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.constraintlayout.widget.R$styleable: int Constraint_barrierDirection +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Small +androidx.constraintlayout.widget.R$styleable: int MotionLayout_motionDebug +wangdaye.com.geometricweather.remoteviews.config.TextWidgetConfigActivity: TextWidgetConfigActivity() +okhttp3.internal.http.BridgeInterceptor: okhttp3.CookieJar cookieJar +com.bumptech.glide.integration.okhttp.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel +com.google.android.material.R$attr: int warmth +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_RED_INDEX +androidx.swiperefreshlayout.R$id: int text2 +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_numericShortcut +com.tencent.bugly.CrashModule: CrashModule() +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getWeatherText() +androidx.legacy.coreutils.R$layout: int notification_template_part_chronometer +com.google.android.material.R$id: int masked +androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor valueOf(java.lang.String) +com.github.rahatarmanahmed.cpv.CircularProgressView$2: float val$currentProgress +androidx.viewpager2.R$dimen: int item_touch_helper_swipe_escape_max_velocity +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_toolbarId +androidx.cardview.R$attr: int contentPadding +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitationProbability(java.lang.Float) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean temperature +androidx.constraintlayout.widget.R$styleable: int Toolbar_logo +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$x +com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context,android.util.AttributeSet) +okhttp3.internal.tls.CertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) +wangdaye.com.geometricweather.R$attr: int preserveIconSpacing +androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModelProvider$NewInstanceFactory getInstance() +cyanogenmod.profiles.LockSettings$1 +com.bumptech.glide.R$color: int notification_action_color_filter +androidx.core.R$id: int tag_accessibility_actions +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken END_OBJECT +com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_COCOS2DX_JS +androidx.appcompat.R$attr: int actionModeCloseDrawable +androidx.preference.R$drawable: int btn_checkbox_unchecked_mtrl +com.google.android.material.R$style: int Widget_MaterialComponents_CheckedTextView +androidx.viewpager.R$styleable: int[] FontFamilyFont +okhttp3.internal.Util: boolean nonEmptyIntersection(java.util.Comparator,java.lang.String[],java.lang.String[]) +com.google.android.material.R$id: int action_bar_spinner +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric() +okio.Buffer$1: okio.Buffer this$0 +androidx.preference.R$styleable: int SwitchCompat_switchMinWidth +androidx.preference.R$styleable: int[] FragmentContainerView cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(android.os.Parcel,cyanogenmod.app.suggest.ApplicationSuggestion$1) -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setDropDownBackgroundResource(int) -android.didikee.donate.R$id: int top -com.google.android.gms.auth.api.signin.internal.GoogleSignInOptionsExtensionParcelable -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontStyle -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerNext(int,java.lang.Object) -com.autonavi.aps.amapapi.model.AMapLocationServer: void a(java.lang.String) -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_background_transition_holo_light -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onNext(java.lang.Object) -com.jaredrummler.android.colorpicker.R$attr: R$attr() -androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -com.google.android.material.R$styleable: int[] Snackbar -android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.os.IBinder asBinder() -okio.InflaterSource: okio.BufferedSource source -cyanogenmod.app.ICMTelephonyManager: void setDefaultPhoneSub(int) -androidx.preference.R$id: int checked -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_left -wangdaye.com.geometricweather.R$id: int scrollable -wangdaye.com.geometricweather.R$attr: int ratingBarStyle -com.google.android.material.R$attr: int scrimAnimationDuration -com.turingtechnologies.materialscrollbar.R$id: int src_over -james.adaptiveicon.R$id: int select_dialog_listview -androidx.core.R$attr: int fontProviderCerts -androidx.appcompat.R$attr: int drawableStartCompat -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_25 -com.google.android.gms.common.images.WebImage -com.google.android.material.R$attr: int dividerVertical -com.google.android.material.R$attr: int tabIndicatorGravity -androidx.constraintlayout.widget.R$styleable: int MotionLayout_motionProgress -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Flush -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onNext(java.lang.Object) -androidx.lifecycle.LiveData$LifecycleBoundObserver: androidx.lifecycle.LiveData this$0 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getWeather() -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type getOwnerType() -com.turingtechnologies.materialscrollbar.R$layout: int support_simple_spinner_dropdown_item -com.google.android.material.R$id: int stretch -com.jaredrummler.android.colorpicker.R$color: int abc_tint_btn_checkable -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -okhttp3.internal.ws.RealWebSocket: boolean close(int,java.lang.String,long) -io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Action onComplete -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_3 -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_NAVIGATION_BAR -androidx.viewpager.R$style: int Widget_Compat_NotificationActionText -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPreStopped(android.app.Activity) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -androidx.activity.R$color: int notification_action_color_filter -androidx.viewpager2.R$style -wangdaye.com.geometricweather.R$string: int help -androidx.preference.R$style: int Base_Widget_AppCompat_Button_Small -com.turingtechnologies.materialscrollbar.R$dimen: int abc_config_prefDialogWidth -androidx.constraintlayout.helper.widget.Flow: void setPaddingBottom(int) -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_startColor -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid -wangdaye.com.geometricweather.R$attr: int rv_side -james.adaptiveicon.R$dimen: int notification_main_column_padding_top -androidx.appcompat.widget.SearchView: androidx.cursoradapter.widget.CursorAdapter getSuggestionsAdapter() -com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_text -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.Observer downstream -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Time -com.google.android.material.R$attr: int suffixTextAppearance -androidx.hilt.work.R$bool: R$bool() -okhttp3.internal.ws.RealWebSocket$Streams: boolean client -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date time -androidx.constraintlayout.widget.R$color: int dim_foreground_material_light -com.turingtechnologies.materialscrollbar.R$attr: int iconEndPadding -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onComplete() -androidx.core.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getDistrict() -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy BUFFER -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon -androidx.constraintlayout.widget.R$drawable: int abc_cab_background_top_material -androidx.hilt.work.R$id: int accessibility_custom_action_18 -androidx.appcompat.resources.R$dimen -wangdaye.com.geometricweather.R$attr: int cpv_allowCustom -com.google.android.material.progressindicator.ProgressIndicator: void setProgressDrawable(android.graphics.drawable.Drawable) -com.google.android.material.R$dimen: int mtrl_badge_text_horizontal_edge_offset -androidx.drawerlayout.widget.DrawerLayout: void setDrawerListener(androidx.drawerlayout.widget.DrawerLayout$DrawerListener) -com.amap.api.location.CoordUtil: boolean a -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Bridge -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.preference.R$styleable: int AppCompatTheme_controlBackground -wangdaye.com.geometricweather.background.polling.basic.AwakeForegroundUpdateService -androidx.recyclerview.widget.RecyclerView: void setLayoutTransition(android.animation.LayoutTransition) -androidx.swiperefreshlayout.R$drawable: int notify_panel_notification_icon_bg -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4 -wangdaye.com.geometricweather.R$attr: int selectorSize -com.tencent.bugly.Bugly: void init(android.content.Context,java.lang.String,boolean,com.tencent.bugly.BuglyStrategy) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginBottom -wangdaye.com.geometricweather.R$attr: int entryValues -androidx.appcompat.app.AppCompatActivity: void setContentView(android.view.View) -wangdaye.com.geometricweather.location.services.LocationService: LocationService() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitation -cyanogenmod.app.ProfileGroup: java.lang.String mName -androidx.core.R$attr: R$attr() -com.google.android.material.R$style: int Base_Theme_AppCompat_CompactMenu -android.didikee.donate.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.bumptech.glide.R$dimen: int notification_large_icon_width -com.amap.api.fence.GeoFence: int ERROR_CODE_EXISTS -android.didikee.donate.R$string: int abc_searchview_description_clear -com.google.android.material.R$id: int middle -androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endX -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: AccuDailyResult$DailyForecasts$Day$Ice() -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Wind getWind() -com.google.android.material.R$attr: int state_liftable -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float pm25 -com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_android_button -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void dispose() -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.String toString() -com.xw.repo.bubbleseekbar.R$attr -com.google.android.material.R$attr: int popupTheme +io.reactivex.internal.queue.SpscArrayQueue: void soConsumerIndex(long) +androidx.core.R$id: int accessibility_custom_action_2 +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: java.util.concurrent.atomic.AtomicInteger wip +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.util.Date EndTime +wangdaye.com.geometricweather.R$attr: int backgroundStacked +cyanogenmod.providers.CMSettings$System$2: CMSettings$System$2() +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetEnd +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$attr: int colorOnSecondary +androidx.swiperefreshlayout.R$id: int tag_unhandled_key_event_manager +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textSize +com.turingtechnologies.materialscrollbar.R$dimen: int abc_search_view_preferred_width +okhttp3.internal.tls.CertificateChainCleaner: okhttp3.internal.tls.CertificateChainCleaner get(java.security.cert.X509Certificate[]) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean feelsLike +androidx.appcompat.R$id: int content +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportImageTintList(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_Tooltip +com.google.android.material.R$color: int design_default_color_on_error +okhttp3.internal.platform.Jdk9Platform: okhttp3.internal.platform.Jdk9Platform buildIfSupported() +okhttp3.internal.http2.Hpack$Writer +androidx.preference.R$attr: int selectableItemBackground +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +okhttp3.internal.ws.RealWebSocket: int receivedCloseCode +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: boolean isDisposed() +androidx.preference.R$id: int accessibility_custom_action_13 +retrofit2.http.Streaming +com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.badge.BadgeDrawable getOrCreateBadge() +com.google.android.material.R$attr: int itemIconTint +com.turingtechnologies.materialscrollbar.R$attr: int counterEnabled +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode REFUSED_STREAM +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconSize +androidx.preference.R$interpolator: int fast_out_slow_in +com.turingtechnologies.materialscrollbar.R$styleable: int[] StateListDrawable +okhttp3.internal.ws.WebSocketWriter$FrameSink: boolean closed +wangdaye.com.geometricweather.R$layout: int dialog_minimal_icon +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: void setDrawable(boolean) +androidx.preference.R$drawable: int abc_ic_clear_material +wangdaye.com.geometricweather.R$color: int mtrl_btn_ripple_color +androidx.hilt.work.R$styleable: int[] FragmentContainerView +james.adaptiveicon.R$styleable: int ActionMode_titleTextStyle +wangdaye.com.geometricweather.R$styleable: int[] KeyAttribute +wangdaye.com.geometricweather.R$string: int mtrl_picker_a11y_next_month +androidx.transition.R$layout: int notification_template_custom_big +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_divider +okhttp3.internal.ws.WebSocketReader: WebSocketReader(boolean,okio.BufferedSource,okhttp3.internal.ws.WebSocketReader$FrameCallback) +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Bridge +com.amap.api.location.AMapLocationClientOption$1: java.lang.Object[] newArray(int) +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile build() +androidx.preference.R$styleable: int Preference_android_defaultValue +james.adaptiveicon.R$id: int multiply +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionBar +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_LargeComponent +androidx.lifecycle.extensions.R$string: int status_bar_notification_info_overflow +okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date servedDate +com.amap.api.location.AMapLocationClientOption: boolean m +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String IS_LEGACY_ICONPACK +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: boolean val$visible +com.google.android.gms.signin.internal.zab: android.os.Parcelable$Creator CREATOR +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: void run() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlHighlight +wangdaye.com.geometricweather.R$drawable: int abc_list_longpressed_holo +cyanogenmod.profiles.RingModeSettings: RingModeSettings() +wangdaye.com.geometricweather.common.basic.models.weather.Wind: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree degree +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver +com.google.android.material.R$id: int withinBounds +okhttp3.Response: okhttp3.CacheControl cacheControl +retrofit2.ParameterHandler$PartMap: void apply(retrofit2.RequestBuilder,java.util.Map) +cyanogenmod.platform.Manifest$permission: java.lang.String MANAGE_ALARMS +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_alterWindow +cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String getName() +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.util.AtomicThrowable errors +com.turingtechnologies.materialscrollbar.R$attr: int tabPadding +androidx.customview.R$styleable: int FontFamilyFont_font +com.google.android.material.R$color: int material_on_background_emphasis_high_type +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean error(java.lang.Throwable) +com.google.android.material.circularreveal.cardview.CircularRevealCardView: int getCircularRevealScrimColor() +wangdaye.com.geometricweather.R$attr: int searchViewStyle +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircleAngle +com.google.android.material.R$id: int action_menu_divider +com.turingtechnologies.materialscrollbar.R$dimen: int hint_alpha_material_light +com.jaredrummler.android.colorpicker.R$attr: int cpv_previewSize +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.util.concurrent.locks.Lock lock +androidx.appcompat.R$drawable: R$drawable() +com.google.android.gms.common.api.internal.LifecycleCallback: com.google.android.gms.common.api.internal.LifecycleFragment getChimeraLifecycleFragmentImpl(com.google.android.gms.common.api.internal.LifecycleActivity) +wangdaye.com.geometricweather.R$layout: int material_timepicker_dialog +android.didikee.donate.R$styleable: int SearchView_android_focusable +james.adaptiveicon.R$string: int abc_activitychooserview_choose_application +com.google.android.material.R$style: int Platform_MaterialComponents_Light_Dialog +cyanogenmod.externalviews.KeyguardExternalView: void executeQueue() +io.reactivex.subjects.PublishSubject$PublishDisposable: io.reactivex.Observer downstream +android.didikee.donate.R$id: int search_voice_btn +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupWindow +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +cyanogenmod.externalviews.KeyguardExternalView$2: boolean requestDismissAndStartActivity(android.content.Intent) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver +wangdaye.com.geometricweather.db.entities.DailyEntity: void setAqiIndex(java.lang.Integer) +android.didikee.donate.R$attr: int actionBarTabBarStyle +androidx.vectordrawable.R$styleable: int GradientColor_android_centerColor +com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_alphaChannelVisible +androidx.constraintlayout.widget.R$attr: int layout_constraintEnd_toEndOf +com.google.android.material.slider.RangeSlider: void setStepSize(float) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Body2 +com.google.android.material.behavior.SwipeDismissBehavior +com.tencent.bugly.proguard.w: java.util.concurrent.ScheduledExecutorService c +okio.AsyncTimeout$1: okio.AsyncTimeout this$0 +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_spinner +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void clear() +androidx.appcompat.R$dimen: int abc_disabled_alpha_material_light +com.google.android.material.R$attr: int chipSurfaceColor +androidx.lifecycle.MediatorLiveData$Source: void plug() +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchPadding +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getTranslateY() wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: void setStatus(int) -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_creator -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabTextColor -com.google.android.material.appbar.AppBarLayout: void setTargetElevation(float) -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) -androidx.appcompat.resources.R$id: int chronometer -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: int PrecipitationProbability -okhttp3.logging.LoggingEventListener -com.google.android.material.R$color: int foreground_material_dark -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isIsShow() -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text -james.adaptiveicon.R$id: int uniform -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -retrofit2.KotlinExtensions$await$4$2: KotlinExtensions$await$4$2(kotlinx.coroutines.CancellableContinuation) -wangdaye.com.geometricweather.R$id: int collapseActionView -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: java.lang.String Unit -com.google.android.material.R$attr: int fastScrollHorizontalThumbDrawable -androidx.constraintlayout.widget.R$dimen: int notification_top_pad -com.jaredrummler.android.colorpicker.R$id: int switchWidget -androidx.lifecycle.DefaultLifecycleObserver: void onDestroy(androidx.lifecycle.LifecycleOwner) -androidx.constraintlayout.widget.R$styleable: int Layout_barrierMargin -okhttp3.Cache$CacheRequestImpl: void abort() -cyanogenmod.externalviews.IExternalViewProviderFactory: android.os.IBinder createExternalView(android.os.Bundle) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean addInner(io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) -okhttp3.internal.http2.Http2Connection$Builder: boolean client -retrofit2.HttpException: int code -com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableItem -androidx.legacy.coreutils.R$styleable: int[] GradientColorItem -androidx.appcompat.resources.R$attr: int fontStyle -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -androidx.viewpager2.R$id: int accessibility_custom_action_14 -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_corner_radius_medium -wangdaye.com.geometricweather.common.ui.activities.AlertActivity -androidx.constraintlayout.widget.R$attr: int drawableTopCompat -com.google.android.material.R$styleable: int CollapsingToolbarLayout_titleEnabled -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: void setSpeed(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX) -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4 -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void error(java.lang.Throwable) -androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_divider -androidx.lifecycle.extensions.R$anim: R$anim() -com.google.android.material.slider.Slider: void setThumbRadius(int) -android.didikee.donate.R$layout -retrofit2.adapter.rxjava2.CallEnqueueObservable -okhttp3.internal.http2.Hpack$Reader: java.util.List headerList -com.google.gson.stream.JsonWriter: JsonWriter(java.io.Writer) -androidx.hilt.R$styleable: int GradientColor_android_centerX -androidx.fragment.R$id: int accessibility_custom_action_0 -okhttp3.internal.cache2.Relay: okio.Buffer upstreamBuffer -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWindDirection() -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_precise_anchor_threshold -androidx.preference.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -android.didikee.donate.R$style: int TextAppearance_AppCompat_Display1 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalStyle -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline6 -com.amap.api.location.UmidtokenInfo: void setUmidtoken(android.content.Context,java.lang.String) -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup -androidx.appcompat.R$style: int TextAppearance_AppCompat_Display4 -wangdaye.com.geometricweather.R$attr: int actionModePasteDrawable -wangdaye.com.geometricweather.R$styleable: int ActionBar_height -cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache -org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Object[]) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: java.util.List forecasts -androidx.preference.R$attr: int buttonStyleSmall -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder cookieJar(okhttp3.CookieJar) -james.adaptiveicon.R$color: int switch_thumb_normal_material_light -androidx.hilt.R$id: int tag_transition_group -okhttp3.Cookie$Builder: Cookie$Builder() -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_overflow_padding_end_material -com.jaredrummler.android.colorpicker.R$style: int PreferenceFragment -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.lang.Object poll() -androidx.fragment.R$id: int accessibility_custom_action_10 -okhttp3.internal.http2.Http2Stream$FramingSource: Http2Stream$FramingSource(okhttp3.internal.http2.Http2Stream,long) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onScreenTurnedOn() -androidx.appcompat.R$styleable: int Toolbar_collapseContentDescription -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_5 -com.google.android.material.R$color: int notification_action_color_filter -androidx.constraintlayout.widget.R$attr: int region_heightMoreThan -james.adaptiveicon.R$drawable: int abc_btn_borderless_material -android.didikee.donate.R$color: int primary_material_dark -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: boolean isDisposed() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial -com.tencent.bugly.proguard.z: byte[] a(byte[],int,java.lang.String) -retrofit2.Retrofit: java.lang.Object create(java.lang.Class) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: AccuCurrentResult$Precip1hr$Metric() -androidx.cardview.R$style: int CardView_Dark -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void setNativeInfo(int,java.lang.String) -com.turingtechnologies.materialscrollbar.R$dimen: int notification_small_icon_background_padding -okhttp3.CacheControl: boolean onlyIfCached() -androidx.viewpager.R$drawable: int notification_bg_low -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean mainDone -james.adaptiveicon.R$id: int actions -wangdaye.com.geometricweather.R$id: int activity_widget_config_blackTextContainer -androidx.viewpager.R$dimen: int compat_button_inset_horizontal_material -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemIconDisabledAlpha -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_persistent -com.jaredrummler.android.colorpicker.R$attr: int tooltipForegroundColor -androidx.appcompat.R$styleable: int AppCompatTheme_actionBarDivider -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog -com.github.rahatarmanahmed.cpv.BuildConfig: boolean DEBUG -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: int getStatus() -wangdaye.com.geometricweather.R$id: int forever -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_searchIcon -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: boolean isDisposed() -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void dispose() -com.autonavi.aps.amapapi.model.AMapLocationServer: void h(java.lang.String) -com.turingtechnologies.materialscrollbar.R$id: int snackbar_action -androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableTransition -androidx.hilt.work.R$id: int action_divider -androidx.hilt.lifecycle.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String date -com.turingtechnologies.materialscrollbar.R$attr: int alertDialogCenterButtons -androidx.appcompat.R$id: int split_action_bar -wangdaye.com.geometricweather.R$attr: int titleMarginEnd -wangdaye.com.geometricweather.R$attr: int drawableStartCompat -com.turingtechnologies.materialscrollbar.TouchScrollBar: float getHandleOffset() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi mApi -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getShrinkMotionSpec() -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type getRawType() -retrofit2.ParameterHandler$Field: retrofit2.Converter valueConverter -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyle -androidx.appcompat.R$id: int normal -androidx.constraintlayout.widget.R$attr: int buttonPanelSideLayout -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void removeFirst() -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.common.basic.models.weather.Alert: int getPriority() -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getMoldDescription() -androidx.appcompat.R$dimen: int abc_edit_text_inset_top_material -cyanogenmod.app.Profile: void setSecondaryUuids(java.util.List) -cyanogenmod.app.CustomTile$Builder: boolean mSensitiveData -androidx.hilt.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_1 -com.google.android.material.R$styleable: int[] ScrollingViewBehavior_Layout -retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback: void onResponse(retrofit2.Call,retrofit2.Response) -androidx.core.app.RemoteActionCompatParcelizer: RemoteActionCompatParcelizer() -cyanogenmod.util.ColorUtils: float[] convertRGBtoLAB(int) -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayout -androidx.constraintlayout.widget.R$attr: int listPreferredItemHeight -androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Time -androidx.constraintlayout.widget.R$styleable: int ActionBar_progressBarPadding -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontVariationSettings -okhttp3.internal.tls.BasicCertificateChainCleaner: BasicCertificateChainCleaner(okhttp3.internal.tls.TrustRootIndex) -androidx.preference.R$color: int abc_tint_edittext -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onError(java.lang.Throwable) -com.github.rahatarmanahmed.cpv.CircularProgressView$4: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -okhttp3.RequestBody: long contentLength() -com.xw.repo.bubbleseekbar.R$styleable: int View_android_theme -wangdaye.com.geometricweather.R$id: int mtrl_internal_children_alpha_tag -com.google.android.material.internal.NavigationMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() -com.google.gson.stream.JsonReader: int PEEKED_DOUBLE_QUOTED -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: io.reactivex.Observer child -androidx.appcompat.widget.AppCompatButton -com.turingtechnologies.materialscrollbar.R$attr: int listChoiceBackgroundIndicator -cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,int,int) -android.didikee.donate.R$id: int tabMode -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onComplete() -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_BarSize -wangdaye.com.geometricweather.R$array: int week_icon_modes -cyanogenmod.platform.Manifest$permission: java.lang.String PERFORMANCE_ACCESS -androidx.lifecycle.ClassesInfoCache$CallbackInfo: void invokeCallbacks(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) -wangdaye.com.geometricweather.R$string: int settings_title_widget_config -com.google.android.gms.location.ActivityTransition -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text -com.xw.repo.bubbleseekbar.R$style: R$style() -com.google.android.material.R$color: int abc_decor_view_status_guard_light -android.didikee.donate.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -androidx.constraintlayout.widget.R$attr: int actionLayout -com.turingtechnologies.materialscrollbar.R$integer: int abc_config_activityShortDur -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: BodyObservable$BodyObserver(io.reactivex.Observer) -io.reactivex.Observable: io.reactivex.Observable delay(io.reactivex.functions.Function) -com.github.rahatarmanahmed.cpv.CircularProgressView$9: void onAnimationUpdate(android.animation.ValueAnimator) -io.reactivex.Observable: int bufferSize() -com.xw.repo.bubbleseekbar.R$attr: int actionOverflowMenuStyle -wangdaye.com.geometricweather.R$string: int hide_bottom_view_on_scroll_behavior -androidx.activity.R$styleable -com.google.android.material.R$attr: int indicatorType -com.turingtechnologies.materialscrollbar.R$attr: int tickMarkTint -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_horizontal_padding -wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_checkbox -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder callbackExecutor(java.util.concurrent.Executor) -com.tencent.bugly.crashreport.common.info.b: java.lang.String a(android.content.Context,boolean) -androidx.preference.R$styleable: int[] PreferenceFragmentCompat -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: ObservableWithLatestFromMany$WithLatestInnerObserver(io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver,int) -okhttp3.MediaType: java.util.regex.Pattern PARAMETER -androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$id: int snackbar_text -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth -com.turingtechnologies.materialscrollbar.R$attr: int backgroundStacked -cyanogenmod.providers.CMSettings$3 -wangdaye.com.geometricweather.R$styleable: int[] Transform -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onError(java.lang.Throwable) -com.google.android.material.R$id: int line1 -androidx.appcompat.R$color: int abc_tint_default -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -cyanogenmod.profiles.ConnectionSettings: void writeToParcel(android.os.Parcel,int) -io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler,boolean) -androidx.constraintlayout.widget.R$attr: int buttonStyleSmall -androidx.appcompat.R$dimen: int abc_action_bar_default_height_material -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconTint -androidx.lifecycle.LiveData$AlwaysActiveObserver: boolean shouldBeActive() -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_itemPadding -okio.Buffer: long readHexadecimalUnsignedLong() -com.github.rahatarmanahmed.cpv.CircularProgressView: boolean isIndeterminate -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: ObservableGroupBy$GroupByObserver(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,int,boolean) -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -com.xw.repo.bubbleseekbar.R$bool: int abc_config_actionMenuItemAllCaps -com.turingtechnologies.materialscrollbar.R$attr: int hintTextAppearance -com.google.android.material.R$styleable: int[] ShapeAppearance -androidx.appcompat.R$layout: int abc_action_mode_bar -okio.Okio$4: Okio$4(java.net.Socket) -wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_dark -cyanogenmod.profiles.AirplaneModeSettings: boolean mDirty -androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context,android.util.AttributeSet) -androidx.fragment.R$id: int accessibility_custom_action_20 -com.tencent.bugly.crashreport.biz.b: int h() -com.google.android.material.R$styleable: int AppCompatTheme_radioButtonStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial() -androidx.vectordrawable.R$attr: int fontVariationSettings -androidx.fragment.R$id: int accessibility_action_clickable_span -okhttp3.internal.http1.Http1Codec: okhttp3.Headers readHeaders() -androidx.preference.R$layout: int abc_action_mode_close_item_material -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.tencent.bugly.proguard.z: java.util.Map a(android.os.Parcel) -android.didikee.donate.R$id: int homeAsUp -android.didikee.donate.R$styleable: int ActionBar_contentInsetStart -androidx.customview.R$id: int title -com.amap.api.location.AMapLocation: java.lang.String a -wangdaye.com.geometricweather.R$attr: int paddingRightSystemWindowInsets -org.greenrobot.greendao.AbstractDaoSession: java.util.Map entityToDao -com.turingtechnologies.materialscrollbar.R$drawable -okhttp3.internal.ws.WebSocketReader: okhttp3.internal.ws.WebSocketReader$FrameCallback frameCallback -cyanogenmod.profiles.RingModeSettings: boolean isOverride() -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void run() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List daisan +androidx.viewpager2.R$styleable: int RecyclerView_android_orientation +androidx.drawerlayout.R$dimen +androidx.appcompat.R$attr: int panelMenuListTheme +androidx.preference.R$attr: int fragment +com.xw.repo.bubbleseekbar.R$id: int action_bar +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_visible +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_6 +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +com.google.android.material.R$style: int Base_AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.R$drawable: int flag_br +com.google.android.material.button.MaterialButtonToggleGroup: int getFirstVisibleChildIndex() +cyanogenmod.util.ColorUtils: double[] sColorTable +com.google.android.material.R$styleable: int BottomNavigationView_labelVisibilityMode +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderQuery +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontVariationSettings +james.adaptiveicon.R$attr: int colorPrimaryDark +androidx.work.R$styleable: int FontFamilyFont_fontVariationSettings +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf +com.google.android.material.R$dimen: int material_clock_hand_center_dot_radius +james.adaptiveicon.R$style: int Base_AlertDialog_AppCompat_Light +com.google.android.material.R$styleable: int[] Transform +com.google.android.material.R$color: int material_grey_600 +androidx.preference.R$attr: int colorControlNormal +james.adaptiveicon.R$styleable: int ButtonBarLayout_allowStacking +com.jaredrummler.android.colorpicker.R$color: int background_material_light +retrofit2.ParameterHandler$Tag: java.lang.Class cls +androidx.fragment.R$styleable: int GradientColor_android_tileMode +com.baidu.location.indoor.mapversion.c.a$d: double d(double) +androidx.recyclerview.R$id: int normal +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max +wangdaye.com.geometricweather.R$attr: int cpv_showAlphaSlider +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String district +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight +wangdaye.com.geometricweather.R$id: int dialog_location_help_providerContainer +androidx.preference.R$dimen: int abc_action_bar_overflow_padding_start_material +wangdaye.com.geometricweather.R$attr: int chipBackgroundColor +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: long contentLength() +wangdaye.com.geometricweather.R$attr: int bsb_auto_adjust_section_mark +androidx.lifecycle.SavedStateHandle: java.util.Set keys() +okhttp3.internal.cache2.Relay$RelaySource: okhttp3.internal.cache2.Relay this$0 +cyanogenmod.providers.WeatherContract: java.lang.String AUTHORITY +wangdaye.com.geometricweather.db.entities.LocationEntity: LocationEntity() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_SearchView +wangdaye.com.geometricweather.R$layout: int custom_dialog +io.reactivex.internal.subscriptions.DeferredScalarSubscription: org.reactivestreams.Subscriber downstream +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onCross +com.google.android.material.R$anim: int design_bottom_sheet_slide_in +androidx.swiperefreshlayout.R$attr: R$attr() +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_title_material +com.google.gson.stream.JsonReader: JsonReader(java.io.Reader) +okio.Buffer$2: int available() +androidx.fragment.app.Fragment: void setOnStartEnterTransitionListener(androidx.fragment.app.Fragment$OnStartEnterTransitionListener) +okio.DeflaterSink: void deflate(boolean) +okhttp3.internal.Util: void closeQuietly(java.net.ServerSocket) +cyanogenmod.weather.WeatherInfo: double mTodaysLowTemp +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.google.android.material.R$style: int Base_Theme_AppCompat_CompactMenu +com.google.android.material.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +androidx.viewpager.widget.ViewPager: androidx.viewpager.widget.PagerAdapter getAdapter() +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String access$300(cyanogenmod.app.Profile$ProfileTrigger) +androidx.hilt.work.R$id: int accessibility_custom_action_5 +com.xw.repo.bubbleseekbar.R$color: int highlighted_text_material_dark +com.google.android.material.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +retrofit2.ParameterHandler$RelativeUrl: int p +com.google.android.material.timepicker.ClockHandView +cyanogenmod.externalviews.KeyguardExternalView$6: KeyguardExternalView$6(cyanogenmod.externalviews.KeyguardExternalView,boolean) +james.adaptiveicon.R$dimen: int abc_dropdownitem_text_padding_left +androidx.viewpager.R$styleable: int FontFamily_fontProviderFetchStrategy +retrofit2.ParameterHandler$Tag: ParameterHandler$Tag(java.lang.Class) +com.xw.repo.bubbleseekbar.R$id: int action_image +android.didikee.donate.R$style: int Platform_Widget_AppCompat_Spinner +okhttp3.internal.http2.Http2Reader: void readConnectionPreface(okhttp3.internal.http2.Http2Reader$Handler) +com.bumptech.glide.load.ImageHeaderParser$ImageType: boolean hasAlpha() +io.reactivex.internal.util.ArrayListSupplier +com.google.android.material.R$styleable: int OnSwipe_maxVelocity +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView_Menu +android.didikee.donate.R$styleable: int ViewStubCompat_android_id +io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent[] values() +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_shapeAppearance +com.google.android.material.R$id: int mtrl_calendar_months +android.didikee.donate.R$id: int action_mode_bar_stub +cyanogenmod.app.CMTelephonyManager: boolean localLOGD +androidx.preference.R$style: int Widget_AppCompat_RatingBar_Small +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: long serialVersionUID +androidx.work.WorkerParameters +android.didikee.donate.R$dimen: int disabled_alpha_material_light +io.reactivex.internal.subscribers.StrictSubscriber: StrictSubscriber(org.reactivestreams.Subscriber) +androidx.recyclerview.R$integer: R$integer() +okhttp3.Interceptor$Chain: okhttp3.Response proceed(okhttp3.Request) +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingTop +com.turingtechnologies.materialscrollbar.R$color: int background_floating_material_dark +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf +cyanogenmod.os.Concierge: Concierge() +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean isDisposed() +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityResumed(android.app.Activity) +cyanogenmod.weatherservice.ServiceRequest +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderText +com.google.android.material.R$styleable: int Toolbar_popupTheme +com.google.android.material.R$styleable: int Layout_layout_constrainedHeight +james.adaptiveicon.R$styleable: int[] FontFamily +com.bumptech.glide.integration.okhttp.R$dimen: int notification_big_circle_margin +james.adaptiveicon.R$style: int Platform_Widget_AppCompat_Spinner +androidx.drawerlayout.R$attr: int fontProviderFetchTimeout +com.google.android.material.tabs.TabLayout: int getDefaultHeight() +androidx.hilt.work.R$id: int accessibility_custom_action_22 +androidx.recyclerview.R$styleable: int GradientColor_android_endY +com.google.android.material.R$string: int path_password_eye_mask_visible +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void drain() +retrofit2.http.Field +okhttp3.internal.http.StatusLine: int HTTP_TEMP_REDIRECT +androidx.viewpager2.R$style: int Widget_Compat_NotificationActionText +cyanogenmod.app.CustomTile$Builder: android.content.Context mContext +androidx.preference.R$attr: int seekBarIncrement +okhttp3.internal.ws.WebSocketProtocol: java.lang.String ACCEPT_MAGIC +com.google.android.material.R$styleable: int AnimatedStateListDrawableItem_android_drawable +wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_material +androidx.hilt.lifecycle.R$styleable: int Fragment_android_tag +james.adaptiveicon.R$styleable: int[] MenuItem +androidx.coordinatorlayout.R$id: int accessibility_custom_action_23 +com.jaredrummler.android.colorpicker.R$dimen: int abc_floating_window_z +okhttp3.OkHttpClient$Builder: okhttp3.EventListener$Factory eventListenerFactory +cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup getProfileGroup(java.util.UUID) +androidx.fragment.R$color: R$color() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeWindSpeed() +okhttp3.internal.http2.Http2Stream: okio.Source getSource() +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onComplete() +com.google.android.material.R$style: int Widget_AppCompat_ListPopupWindow +com.google.android.material.R$id: int labeled +okhttp3.internal.http.HttpDate$1: HttpDate$1() +com.jaredrummler.android.colorpicker.R$attr: int fontStyle +androidx.preference.R$dimen: int abc_text_size_display_3_material +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_default_mtrl_alpha +com.baidu.location.e.h$b: com.baidu.location.e.h$b b +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: CNWeatherResult$Life$Info() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_pivotAnchor +com.google.android.material.R$style: int Widget_AppCompat_AutoCompleteTextView +androidx.recyclerview.R$id: int accessibility_custom_action_31 +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed +wangdaye.com.geometricweather.R$attr: int cornerSizeBottomRight +com.google.android.material.R$styleable: int TabLayout_tabBackground +androidx.preference.ExpandButton +com.google.android.gms.common.SignInButton: SignInButton(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String weatherSource +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleGravity +retrofit2.BuiltInConverters: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +okhttp3.internal.http2.Http2: byte FLAG_COMPRESSED +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedLevel +androidx.appcompat.R$attr: int titleTextAppearance +com.google.android.material.R$attr: int startIconTint +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void cancel() +com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_selected +androidx.legacy.coreutils.R$dimen: int notification_small_icon_background_padding +androidx.preference.R$attr: int background +com.bumptech.glide.GeneratedAppGlideModule +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.appcompat.widget.SwitchCompat: java.lang.CharSequence getTextOn() +androidx.transition.R$id: int text +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_title +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_toRightOf +okio.Buffer: void readFully(okio.Buffer,long) +okhttp3.internal.cache.InternalCache: void trackResponse(okhttp3.internal.cache.CacheStrategy) +android.didikee.donate.R$styleable: int ActionBar_popupTheme +okhttp3.TlsVersion: java.lang.String javaName +org.greenrobot.greendao.AbstractDao: void saveInTx(java.lang.Object[]) +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: long produced +android.didikee.donate.R$styleable: int AppCompatTheme_android_windowIsFloating +androidx.preference.R$styleable: int AppCompatTheme_actionModeBackground +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder(cyanogenmod.weather.WeatherInfo) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void otherSuccess(java.lang.Object) +androidx.appcompat.R$drawable: int btn_checkbox_unchecked_mtrl +okhttp3.MultipartBody: okhttp3.MediaType MIXED +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_second_track_color +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String wind_speed +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +androidx.preference.R$style: int Widget_AppCompat_Light_ActivityChooserView +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom +com.jaredrummler.android.colorpicker.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +okhttp3.internal.http2.Http2Connection$2: Http2Connection$2(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,long) +com.tencent.bugly.proguard.q: boolean a(android.database.sqlite.SQLiteDatabase) +androidx.vectordrawable.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +androidx.preference.R$color: int material_grey_600 +androidx.lifecycle.Lifecycling$1: androidx.lifecycle.LifecycleEventObserver val$observer +com.google.android.material.navigation.NavigationView: void setItemTextColor(android.content.res.ColorStateList) +com.google.android.material.timepicker.ChipTextInputComboView +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_disabled_holo_dark +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitationProbability(java.lang.Float) +androidx.recyclerview.R$dimen: int notification_small_icon_size_as_large +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder sslSocketFactory(javax.net.ssl.SSLSocketFactory,javax.net.ssl.X509TrustManager) +androidx.coordinatorlayout.R$id: int action_image +com.google.android.material.R$attr: int rangeFillColor +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedWidthMinor +androidx.activity.R$styleable: int FontFamilyFont_ttcIndex +com.bumptech.glide.request.RequestCoordinator$RequestState: boolean isComplete +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: FlowableOnBackpressureError$BackpressureErrorSubscriber(org.reactivestreams.Subscriber) +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.R$styleable: int Transform_android_translationX +wangdaye.com.geometricweather.R$integer: int mtrl_card_anim_delay_ms +io.reactivex.exceptions.CompositeException: int size() +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Description +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.widget.LinearLayoutCompat: void setDividerDrawable(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$id: int textinput_error +com.google.android.material.R$styleable: int StateListDrawable_android_enterFadeDuration +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_verticalDivider +androidx.lifecycle.extensions.R$id: int accessibility_action_clickable_span +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_holo_dark +okhttp3.internal.publicsuffix.PublicSuffixDatabase: okhttp3.internal.publicsuffix.PublicSuffixDatabase instance +com.jaredrummler.android.colorpicker.R$id: int regular +wangdaye.com.geometricweather.settings.dialogs.AnimatableIconDialog +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +androidx.hilt.lifecycle.R$attr: int fontProviderCerts +com.xw.repo.bubbleseekbar.R$attr: int windowActionBarOverlay +com.jaredrummler.android.colorpicker.R$attr: int maxButtonHeight +james.adaptiveicon.R$styleable: int Toolbar_titleMargin +wangdaye.com.geometricweather.R$dimen: int widget_title_text_size +wangdaye.com.geometricweather.settings.fragments.AbstractSettingsFragment: AbstractSettingsFragment() +wangdaye.com.geometricweather.R$attr: int itemFillColor +wangdaye.com.geometricweather.R$drawable: int design_ic_visibility_off +okio.Buffer$2: Buffer$2(okio.Buffer) +okhttp3.internal.http2.Http2Reader: Http2Reader(okio.BufferedSource,boolean) +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.R$string: int abc_menu_ctrl_shortcut_label +androidx.constraintlayout.utils.widget.MotionTelltales: void setText(java.lang.CharSequence) +com.google.android.material.R$dimen: int mtrl_extended_fab_top_padding +james.adaptiveicon.R$attr: int alpha +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +androidx.activity.R$id: int line3 +com.turingtechnologies.materialscrollbar.R$style: int Widget_Compat_NotificationActionContainer +android.didikee.donate.R$styleable: int AppCompatTheme_controlBackground +wangdaye.com.geometricweather.R$attr: int textInputLayoutFocusedRectEnabled +okhttp3.OkHttpClient: okhttp3.Dispatcher dispatcher +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_ut androidx.preference.R$styleable: int[] StateListDrawableItem -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setIcon(int) -com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextAppearance(int) -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleMargin -androidx.constraintlayout.widget.R$styleable: int KeyCycle_transitionPathRotate -cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeChangeListener mThemeChangeListener -io.reactivex.internal.observers.BasicIntQueueDisposable: java.lang.Object poll() -androidx.lifecycle.ProcessLifecycleOwner: void activityResumed() -androidx.constraintlayout.utils.widget.ImageFilterView: float getContrast() -wangdaye.com.geometricweather.R$array: int live_wallpaper_weather_kinds -androidx.legacy.coreutils.R$styleable: int GradientColor_android_startX -androidx.preference.R$style: int Animation_AppCompat_Dialog -com.tencent.bugly.proguard.ak: ak() -com.google.android.gms.common.zzj -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetEnd -androidx.constraintlayout.widget.R$color: int switch_thumb_normal_material_light -com.turingtechnologies.materialscrollbar.R$style: int AlertDialog_AppCompat -retrofit2.http.PATCH -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorPrimary -androidx.preference.R$integer -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_ttcIndex -androidx.preference.R$styleable: int ActionBar_contentInsetStart -cyanogenmod.app.ProfileGroup$2: int[] $SwitchMap$cyanogenmod$app$ProfileGroup$Mode -androidx.lifecycle.extensions.R$id -wangdaye.com.geometricweather.R$attr: int dialogIcon -androidx.appcompat.widget.AppCompatRadioButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -cyanogenmod.library.R$attr: R$attr() -androidx.preference.R$attr: int listChoiceIndicatorSingleAnimated -wangdaye.com.geometricweather.common.basic.models.weather.History: long getTime() -androidx.appcompat.view.menu.MenuPopupHelper: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -wangdaye.com.geometricweather.R$id: int switch_layout -okio.InflaterSource: void releaseInflatedBytes() -cyanogenmod.hardware.IThermalListenerCallback -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressViewEndOffset() -cyanogenmod.profiles.ConnectionSettings: java.lang.String EXTRA_NETWORK_MODE -androidx.legacy.coreutils.R$id: int right_side -com.google.android.material.R$styleable: int Constraint_android_translationZ -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeShareDrawable -com.google.android.material.R$styleable: int AppCompatTheme_windowFixedWidthMinor -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth -com.google.android.material.R$dimen: int notification_top_pad_large_text -org.greenrobot.greendao.AbstractDaoMaster: void registerDaoClass(java.lang.Class) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_GCM_SHA384 -io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$drawable: int notif_temp_66 -retrofit2.package-info -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_tileMode -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -androidx.appcompat.R$color: int accent_material_dark -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_Underlined -com.google.android.material.R$attr: int backgroundStacked -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.Long getId() -james.adaptiveicon.R$styleable: int TextAppearance_android_textColor -com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.xw.repo.bubbleseekbar.R$dimen: int notification_media_narrow_margin -com.google.android.material.R$style: int Base_Widget_AppCompat_SearchView -wangdaye.com.geometricweather.R$xml: int network_security_config -okhttp3.logging.HttpLoggingInterceptor -com.google.android.material.R$id: int rectangles -androidx.activity.R$layout -com.turingtechnologies.materialscrollbar.R$styleable: int[] SearchView -wangdaye.com.geometricweather.common.basic.models.weather.Pollen -androidx.appcompat.R$styleable: int[] AppCompatImageView -androidx.preference.CheckBoxPreference -androidx.hilt.lifecycle.R$styleable: int[] FragmentContainerView -james.adaptiveicon.R$styleable: int SearchView_android_focusable -com.turingtechnologies.materialscrollbar.R$id: int parentPanel -androidx.lifecycle.LiveData$ObserverWrapper: androidx.lifecycle.Observer mObserver -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_count -com.google.android.material.button.MaterialButton: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -androidx.constraintlayout.widget.Constraints: Constraints(android.content.Context) -com.google.android.material.R$id: int view_offset_helper -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_summaryOff -okhttp3.HttpUrl: int querySize() -android.didikee.donate.R$attr: int actionBarPopupTheme -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_90 -james.adaptiveicon.R$styleable: int MenuView_android_itemTextAppearance -wangdaye.com.geometricweather.R$id: int item_alert_content -androidx.appcompat.R$drawable: int abc_textfield_default_mtrl_alpha -androidx.lifecycle.DefaultLifecycleObserver: void onStart(androidx.lifecycle.LifecycleOwner) -com.google.android.material.R$attr: int itemShapeInsetTop -retrofit2.http.GET -wangdaye.com.geometricweather.R$id: int submit_area -com.xw.repo.bubbleseekbar.R$dimen: int abc_panel_menu_list_width -com.google.gson.stream.MalformedJsonException -com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: $Gson$Types$GenericArrayTypeImpl(java.lang.reflect.Type) -com.amap.api.fence.PoiItem: void setLongitude(double) -com.google.android.material.textfield.TextInputLayout: void setEndIconOnLongClickListener(android.view.View$OnLongClickListener) -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void run() -androidx.hilt.work.R$bool: int enable_system_alarm_service_default -okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.http.HttpCodec httpStream() -wangdaye.com.geometricweather.R$attr: int itemShapeFillColor +com.google.android.material.R$styleable: int Layout_layout_constraintWidth_max +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTintMode +wangdaye.com.geometricweather.R$id: int item_weather_daily_pollen +androidx.preference.R$styleable: int SearchView_submitBackground +wangdaye.com.geometricweather.R$id: int both +okio.Segment: okio.Segment sharedCopy() +io.reactivex.Observable: io.reactivex.Observable flatMapIterable(io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_min_width_major +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: int getWindowFlags() +androidx.coordinatorlayout.R$id: int tag_accessibility_pane_title +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode[] values() +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type CONSTANT +androidx.core.R$layout: R$layout() +com.turingtechnologies.materialscrollbar.R$styleable: int[] Snackbar +wangdaye.com.geometricweather.R$attr: int subtitleTextAppearance +wangdaye.com.geometricweather.db.entities.WeatherEntity +com.xw.repo.bubbleseekbar.R$attr: int alertDialogCenterButtons +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_27 +androidx.constraintlayout.widget.R$bool +androidx.constraintlayout.widget.R$styleable: int OnSwipe_limitBoundsTo +okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache this$0 +cyanogenmod.providers.CMSettings$NameValueCache +androidx.preference.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float rainPrecipitationProbability +okhttp3.Handshake: Handshake(okhttp3.TlsVersion,okhttp3.CipherSuite,java.util.List,java.util.List) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton_CloseMode +wangdaye.com.geometricweather.R$anim: int abc_shrink_fade_out_from_bottom +androidx.appcompat.R$styleable: int AppCompatTextView_lineHeight +wangdaye.com.geometricweather.R$dimen: int preference_seekbar_padding_vertical +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: AccuCurrentResult$PrecipitationSummary$Precipitation$Metric() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Link +androidx.appcompat.widget.SearchView: void setQueryHint(java.lang.CharSequence) +io.reactivex.internal.schedulers.RxThreadFactory: long serialVersionUID +wangdaye.com.geometricweather.R$style: int widget_text_clock_analog_Dark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: int UnitType +androidx.recyclerview.R$attr: int fastScrollHorizontalTrackDrawable +androidx.appcompat.R$styleable: int ActionMode_subtitleTextStyle +wangdaye.com.geometricweather.R$color: int mtrl_popupmenu_overlay_color +cyanogenmod.app.suggest.ApplicationSuggestion$1: java.lang.Object createFromParcel(android.os.Parcel) +com.amap.api.fence.GeoFenceClient: boolean removeGeoFence(com.amap.api.fence.GeoFence) +james.adaptiveicon.R$drawable: int abc_ratingbar_small_material +androidx.appcompat.R$style: int Widget_AppCompat_ListPopupWindow +com.tencent.bugly.crashreport.CrashReport: int getUserSceneTagId(android.content.Context) +james.adaptiveicon.R$attr: int tickMarkTint +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Caption +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabInlineLabel +androidx.appcompat.R$style: int Base_Widget_AppCompat_SearchView +cyanogenmod.externalviews.KeyguardExternalView: java.lang.String access$400() +androidx.appcompat.R$color: int abc_color_highlight_material +androidx.appcompat.R$styleable: int TextAppearance_android_textStyle +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior: ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior(android.content.Context,android.util.AttributeSet) +androidx.preference.internal.PreferenceImageView +wangdaye.com.geometricweather.R$drawable: int notif_temp_107 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionBar +okhttp3.Address +wangdaye.com.geometricweather.R$attr: int listItemLayout +james.adaptiveicon.R$dimen: int abc_config_prefDialogWidth +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabBar +com.google.android.material.R$attr: int fabCustomSize +okhttp3.ConnectionSpec: okhttp3.CipherSuite[] RESTRICTED_CIPHER_SUITES +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitationProbability(java.lang.Float) +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setIconSize(int) +com.google.android.material.R$styleable: int ActionBar_progressBarPadding +cyanogenmod.weather.WeatherLocation: WeatherLocation(android.os.Parcel) +androidx.hilt.R$id: int accessibility_custom_action_17 +com.google.android.material.R$dimen: int abc_edit_text_inset_bottom_material +androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context,android.util.AttributeSet) +androidx.preference.R$id: int src_in +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Borderless +wangdaye.com.geometricweather.R$attr: int extendedFloatingActionButtonStyle +com.tencent.bugly.crashreport.common.info.a: java.util.List o +wangdaye.com.geometricweather.R$attr: int ratingBarStyleSmall +com.tencent.bugly.proguard.y: boolean f +cyanogenmod.externalviews.KeyguardExternalViewProviderService: void onCreate() +com.turingtechnologies.materialscrollbar.R$anim: int abc_fade_out +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +androidx.hilt.R$integer: R$integer() +androidx.appcompat.widget.SwitchCompat: void setThumbTextPadding(int) +androidx.appcompat.R$styleable: int AlertDialog_buttonIconDimen +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: AccuCurrentResult$Ceiling$Metric() +com.google.android.material.R$id: int accessibility_custom_action_22 +androidx.hilt.lifecycle.R$attr: int fontProviderAuthority +androidx.constraintlayout.widget.R$dimen: int tooltip_y_offset_non_touch +wangdaye.com.geometricweather.R$attr: int preferenceInformationStyle +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void slideLockscreenIn() +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogLayout +wangdaye.com.geometricweather.R$attr: int paddingTopNoTitle +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus +com.google.android.material.R$attr: int layout_constraintBaseline_creator +androidx.fragment.R$id: int accessibility_custom_action_25 +io.reactivex.Observable: io.reactivex.Observable repeatWhen(io.reactivex.functions.Function) +androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontVariationSettings +org.greenrobot.greendao.AbstractDao: void updateInTx(java.lang.Object[]) +com.google.android.material.R$dimen: int tooltip_precise_anchor_extra_offset +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Button +androidx.constraintlayout.widget.R$attr: int actionBarPopupTheme +com.google.android.material.R$attr: int tabPaddingTop +com.xw.repo.bubbleseekbar.R$color: int abc_color_highlight_material +androidx.constraintlayout.widget.R$styleable: int Variant_region_widthMoreThan +james.adaptiveicon.R$attr: int subtitle +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_always_show_bubble +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_top +okhttp3.internal.Util: java.nio.charset.Charset UTF_32_LE +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_dither +james.adaptiveicon.R$styleable: int ActionBar_homeAsUpIndicator +androidx.constraintlayout.widget.R$attr: int titleMarginBottom +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTotalPrecipitation(java.lang.Float) +androidx.viewpager2.R$id: int accessibility_custom_action_23 +io.reactivex.internal.observers.InnerQueuedObserver: int fusionMode() wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.UV getUV() -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_NoActionBar -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Body1 -android.didikee.donate.R$dimen: int abc_action_bar_default_padding_start_material -retrofit2.converter.gson.GsonRequestBodyConverter -com.tencent.bugly.crashreport.crash.c: boolean b -androidx.appcompat.R$drawable: int abc_item_background_holo_dark -androidx.preference.R$id: int tabMode -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void updateVisibility() -androidx.appcompat.R$attr: int iconTintMode -androidx.constraintlayout.widget.R$attr: int crossfade -cyanogenmod.app.CMTelephonyManager: boolean isDataConnectionSelectedOnSub(int) -com.turingtechnologies.materialscrollbar.R$attr: int checkedIconEnabled -com.xw.repo.bubbleseekbar.R$bool: int abc_action_bar_embed_tabs -cyanogenmod.themes.IThemeChangeListener$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$id: int peekHeight -androidx.appcompat.R$styleable: int StateListDrawable_android_exitFadeDuration -james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -cyanogenmod.hardware.ThermalListenerCallback$State: java.lang.String toString(int) -cyanogenmod.themes.IThemeProcessingListener$Stub: android.os.IBinder asBinder() -com.google.android.material.R$animator: int mtrl_fab_transformation_sheet_collapse_spec -androidx.preference.R$id: int search_src_text -com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionBarLayout -com.xw.repo.bubbleseekbar.R$dimen: int notification_large_icon_height -com.google.android.material.R$attr: int circleRadius -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalGap -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupMenu -com.turingtechnologies.materialscrollbar.R$attr: int windowActionBar -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.async.AsyncSession startAsyncSession() -wangdaye.com.geometricweather.R$drawable: int notif_temp_79 -james.adaptiveicon.R$dimen: int abc_edit_text_inset_top_material -androidx.viewpager2.R$styleable: int FontFamilyFont_ttcIndex -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabBarStyle -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_normal -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver[] EMPTY -android.didikee.donate.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable -com.tencent.bugly.proguard.f: void a(com.tencent.bugly.proguard.i) -wangdaye.com.geometricweather.R$id: int notification_multi_city -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_menu -wangdaye.com.geometricweather.R$attr: int backgroundOverlayColorAlpha -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconEnabled -com.turingtechnologies.materialscrollbar.R$attr: int checkedChip -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: ObservableFlatMap$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver,long) -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void dispose() -wangdaye.com.geometricweather.R$string: int refresh_at -androidx.viewpager.R$id: int notification_background -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure measure -androidx.constraintlayout.widget.R$color: int abc_hint_foreground_material_dark -okhttp3.RequestBody$2: void writeTo(okio.BufferedSink) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index pm10 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderAuthority -cyanogenmod.themes.IThemeService: int getProgress() -okhttp3.internal.http2.Settings -com.turingtechnologies.materialscrollbar.R$styleable: int[] Spinner -androidx.coordinatorlayout.R$id: int info -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty3H -wangdaye.com.geometricweather.R$attr: int spinnerStyle -androidx.constraintlayout.widget.R$id: int message -com.google.android.material.R$dimen: int mtrl_calendar_maximum_default_fullscreen_minor_axis -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_LED_OFF -io.reactivex.internal.observers.LambdaObserver: void onNext(java.lang.Object) -com.amap.api.location.LocationManagerBase -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Load -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: int maxColor -wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontSpinner -okhttp3.RealCall: okhttp3.RealCall clone() -com.google.android.material.R$style: int TestStyleWithLineHeightAppearance -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable -com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableItem -com.xw.repo.bubbleseekbar.R$attr: int actionBarTabTextStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: java.lang.String Unit -com.turingtechnologies.materialscrollbar.R$attr: int buttonTintMode -com.tencent.bugly.proguard.af -com.amap.api.location.AMapLocation: java.lang.String COORD_TYPE_WGS84 -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableEnd -androidx.fragment.app.FragmentTabHost$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$layout: int item_weather_daily_title -com.google.android.material.R$drawable: int abc_ratingbar_small_material -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleContentDescription -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableTop -com.google.android.material.R$styleable: int TextInputLayout_helperTextTextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric() -com.turingtechnologies.materialscrollbar.R$styleable: int CompoundButton_buttonTintMode -androidx.appcompat.R$attr: int buttonBarNeutralButtonStyle -androidx.preference.R$style: int Base_Widget_AppCompat_ListView_DropDown -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_toTopOf +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer cloudCover +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_switchStyle +com.amap.api.location.AMapLocationClient: void onDestroy() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SeekBar +androidx.constraintlayout.widget.R$drawable: int abc_item_background_holo_dark +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: int UnitType +james.adaptiveicon.R$attr: int showAsAction +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: ILiveLockScreenChangeListener$Stub() +wangdaye.com.geometricweather.R$styleable: int NavigationView_shapeAppearanceOverlay +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dark +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Spinner_Underlined +androidx.vectordrawable.animated.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$attr +androidx.appcompat.R$attr: int subtitleTextColor +wangdaye.com.geometricweather.R$drawable: int notif_temp_76 +retrofit2.Retrofit$1: java.lang.Object[] emptyArgs +retrofit2.Response: okhttp3.ResponseBody errorBody +wangdaye.com.geometricweather.db.entities.HistoryEntity: HistoryEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,int,int) +com.google.android.material.R$dimen: int mtrl_tooltip_cornerSize +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String moonPhaseDescription +androidx.viewpager2.R$dimen: int notification_action_text_size +com.bumptech.glide.load.engine.GlideException: void setLoggingDetails(com.bumptech.glide.load.Key,com.bumptech.glide.load.DataSource) +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.Integer getCloudCover() +wangdaye.com.geometricweather.R$styleable: int[] CoordinatorLayout +com.google.android.material.R$styleable: int ActionBar_backgroundStacked +androidx.lifecycle.MutableLiveData: void postValue(java.lang.Object) +com.tencent.bugly.crashreport.CrashReport: void testNativeCrash(boolean,boolean,boolean) +io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +androidx.appcompat.R$attr: int autoSizePresetSizes +androidx.viewpager2.R$styleable: int GradientColorItem_android_color +okio.Buffer: okio.BufferedSink emit() +io.reactivex.Observable: io.reactivex.Observable startWith(io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean disposed +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getCeiling() +okhttp3.internal.http2.PushObserver: boolean onRequest(int,java.util.List) +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String unitId +okhttp3.internal.http2.Http2Writer: okhttp3.internal.http2.Hpack$Writer hpackWriter +com.google.gson.stream.JsonReader: int NUMBER_CHAR_FRACTION_DIGIT +okhttp3.RealCall: void captureCallStackTrace() +cyanogenmod.app.IPartnerInterface: void setAirplaneModeEnabled(boolean) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button +com.google.android.material.navigation.NavigationView: android.view.MenuInflater getMenuInflater() +okio.SegmentedByteString: int size() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeStepGranularity +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setSnowPrecipitationProbability(java.lang.Float) +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +okhttp3.internal.http2.Hpack$Writer: void adjustDynamicTableByteCount() +com.turingtechnologies.materialscrollbar.R$attr: int textEndPadding +wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_gitHub +wangdaye.com.geometricweather.R$styleable: int SearchView_layout +android.support.v4.app.RemoteActionCompatParcelizer: RemoteActionCompatParcelizer() +okhttp3.internal.http2.Http2: byte TYPE_GOAWAY +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable +com.jaredrummler.android.colorpicker.R$styleable: int Preference_selectable +wangdaye.com.geometricweather.R$attr: int barrierDirection +okhttp3.FormBody: java.lang.String encodedName(int) +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemOnClickIntent(android.app.PendingIntent) +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderQuery +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TabLayout_Colored +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int reverseLayout +androidx.core.R$id: int accessibility_custom_action_24 +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_lightContainer +wangdaye.com.geometricweather.R$string: int gitHub +com.google.android.material.R$attr: int checkedIconVisible +com.google.android.material.button.MaterialButton: int getStrokeWidth() +android.didikee.donate.R$attr: int subMenuArrow +okhttp3.internal.ws.WebSocketReader: void readHeader() +com.google.android.material.R$color: int primary_dark_material_dark +com.amap.api.location.AMapLocation: void setLocationType(int) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle +androidx.appcompat.R$style: int TextAppearance_AppCompat_Medium +retrofit2.http.PATCH: java.lang.String value() +androidx.core.R$styleable: int FontFamilyFont_ttcIndex +com.google.android.material.R$id: int startVertical +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration +androidx.preference.R$attr: int switchMinWidth +wangdaye.com.geometricweather.R$attr: int endIconMode +com.google.android.material.R$attr: int startIconCheckable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean forecastHourly +com.google.android.material.R$styleable: int AppCompatTheme_actionBarSize +androidx.appcompat.widget.ActionBarContainer: android.view.View getTabContainer() +com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatHoveredFocusedTranslationZ() +com.xw.repo.bubbleseekbar.R$drawable: int notification_tile_bg +androidx.recyclerview.R$styleable: int GradientColor_android_gradientRadius +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter jsonValue(java.lang.String) +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level NONE +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircleAngle +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_second_track_size +com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemRippleColor() +androidx.appcompat.R$drawable: int abc_list_selector_background_transition_holo_dark +com.amap.api.location.DPoint: boolean equals(java.lang.Object) +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.OkHttpClient client +com.turingtechnologies.materialscrollbar.R$dimen: int hint_alpha_material_dark +okio.Okio: okio.Source source(java.io.File) +android.didikee.donate.R$attr: int showText +com.amap.api.fence.GeoFence: com.amap.api.location.DPoint n +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: AtmoAuraQAResult$Measure() +okhttp3.internal.http2.Http2Connection: boolean isHealthy(long) +com.google.android.material.R$id: int barrier +androidx.lifecycle.extensions.R$layout: int custom_dialog +okhttp3.internal.http2.Huffman$Node: int symbol +com.google.android.material.R$color: int mtrl_fab_icon_text_color_selector +james.adaptiveicon.R$attr: int autoSizeTextType +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: long serialVersionUID +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.internal.util.AtomicThrowable errors +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: WeatherProviderService$ServiceHandler(cyanogenmod.weatherservice.WeatherProviderService,android.os.Looper) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float snowPrecipitationProbability +androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context,android.util.AttributeSet) +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode NO_ERROR +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: ObservableRepeatWhen$RepeatWhenObserver(io.reactivex.Observer,io.reactivex.subjects.Subject,io.reactivex.ObservableSource) +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +androidx.preference.R$styleable: int RecycleListView_paddingTopNoTitle +okhttp3.internal.http.CallServerInterceptor$CountingSink +androidx.preference.R$layout: int abc_activity_chooser_view_list_item +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias +cyanogenmod.app.CustomTile$ExpandedStyle: int describeContents() +okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.RealWebSocket$Streams streams +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf +com.tencent.bugly.proguard.am: java.lang.String i +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth +androidx.constraintlayout.widget.R$dimen +com.tencent.bugly.crashreport.inner.InnerApi +androidx.vectordrawable.R$id: int action_text +com.google.android.material.R$layout: int test_toolbar_elevation +retrofit2.Response: retrofit2.Response success(java.lang.Object,okhttp3.Headers) +okhttp3.internal.cache.CacheStrategy$Factory: CacheStrategy$Factory(long,okhttp3.Request,okhttp3.Response) +wangdaye.com.geometricweather.common.rxjava.BaseObserver: BaseObserver() +cyanogenmod.profiles.StreamSettings: android.os.Parcelable$Creator CREATOR +okhttp3.OkHttpClient: okhttp3.ConnectionPool connectionPool +androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +androidx.preference.R$attr: int fastScrollEnabled +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: WeatherEntityDao(org.greenrobot.greendao.internal.DaoConfig) +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Colored +androidx.appcompat.R$style: int Platform_V25_AppCompat_Light +james.adaptiveicon.R$id: int radio +androidx.appcompat.R$id: int accessibility_custom_action_16 +james.adaptiveicon.R$attr: int spinBars +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingBottom +wangdaye.com.geometricweather.db.entities.DailyEntity: int nighttimeTemperature +com.turingtechnologies.materialscrollbar.R$drawable: int abc_action_bar_item_background_material +androidx.appcompat.R$style: int Platform_AppCompat +androidx.appcompat.R$styleable: int[] AppCompatTextHelper +com.jaredrummler.android.colorpicker.R$styleable: int[] FontFamilyFont +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert +okio.Buffer: java.lang.String readString(long,java.nio.charset.Charset) +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_scaleY +com.jaredrummler.android.colorpicker.R$attr: int iconifiedByDefault +wangdaye.com.geometricweather.R$string: int tag_temperature +cyanogenmod.platform.R$bool: R$bool() +okhttp3.internal.cache.DiskLruCache$Editor: void abortUnlessCommitted() +com.jaredrummler.android.colorpicker.ColorPickerView: void setColor(int) +androidx.vectordrawable.R$id: int accessibility_custom_action_1 +retrofit2.Platform$Android$MainThreadExecutor: void execute(java.lang.Runnable) +com.google.android.material.R$attr: int thickness +cyanogenmod.providers.CMSettings$Global: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) +com.turingtechnologies.materialscrollbar.R$integer: int cancel_button_image_alpha +com.google.android.material.R$attr: int transitionDisable +androidx.preference.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient mClient +wangdaye.com.geometricweather.R$string: int circular_progress_view +com.jaredrummler.android.colorpicker.R$attr: int ttcIndex +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial: AccuCurrentResult$Temperature$Imperial() +android.didikee.donate.R$drawable: int abc_btn_default_mtrl_shape +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPadding +cyanogenmod.themes.IThemeService$Stub$Proxy: IThemeService$Stub$Proxy(android.os.IBinder) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: ObservableBufferBoundary$BufferCloseObserver(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver,long) +okhttp3.internal.http2.Http2Writer: Http2Writer(okio.BufferedSink,boolean) +okhttp3.WebSocket: boolean send(java.lang.String) +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: IWeatherProviderServiceClient$Stub() +okhttp3.internal.http2.Header: java.lang.String TARGET_AUTHORITY_UTF8 +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: java.lang.Runnable run +androidx.coordinatorlayout.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.R$attr: int layout_scrollInterpolator +com.google.android.material.R$styleable: int CardView_android_minWidth +androidx.fragment.app.FragmentManager: void removeOnBackStackChangedListener(androidx.fragment.app.FragmentManager$OnBackStackChangedListener) +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat +okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.Object createAndOpen(java.lang.String) +androidx.vectordrawable.R$id: int accessibility_custom_action_12 +androidx.preference.R$attr: int preserveIconSpacing +com.google.android.material.R$styleable: int Constraint_flow_firstVerticalStyle +org.greenrobot.greendao.AbstractDaoSession: long insertOrReplace(java.lang.Object) +androidx.hilt.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$string: int key_precipitation_unit +com.google.android.gms.auth.api.signin.internal.GoogleSignInOptionsExtensionParcelable +james.adaptiveicon.R$drawable: int abc_edit_text_material +androidx.appcompat.R$styleable: int AppCompatTheme_colorControlHighlight +james.adaptiveicon.R$attr: int isLightTheme +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet,int) +okio.Buffer: boolean equals(java.lang.Object) androidx.work.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_PSK_WITH_CHACHA20_POLY1305_SHA256 -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action) -com.google.gson.stream.JsonReader: int PEEKED_BEGIN_ARRAY -androidx.preference.R$color: int accent_material_light -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String weatherText -androidx.appcompat.widget.ActionBarOverlayLayout: void setHasNonEmbeddedTabs(boolean) -wangdaye.com.geometricweather.R$id: int split_action_bar -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night -wangdaye.com.geometricweather.R$styleable: int[] CollapsingToolbarLayout_Layout -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_android_thumb -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryInnerObserver boundaryObserver -androidx.lifecycle.extensions.R$dimen: int compat_button_inset_vertical_material -androidx.fragment.R$dimen: int notification_small_icon_background_padding -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_collapseContentDescription -androidx.lifecycle.LifecycleRegistry: void markState(androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMode -cyanogenmod.externalviews.ExternalViewProviderService$Provider: int getWindowFlags() -james.adaptiveicon.R$id: int parentPanel -androidx.appcompat.R$styleable: int AppCompatTheme_popupMenuStyle -okhttp3.internal.http2.Http2Connection$Builder: okio.BufferedSource source -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean cancelled -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_holo_light -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_anchor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: int getStatus() -androidx.appcompat.R$styleable: int ActionBar_contentInsetStart -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit[] values() -retrofit2.adapter.rxjava2.RxJava2CallAdapter: io.reactivex.Scheduler scheduler -com.google.gson.FieldNamingPolicy$4 -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetEnd -wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_switchTextOn -okhttp3.Cache$1: void trackResponse(okhttp3.internal.cache.CacheStrategy) -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol[] b -okhttp3.internal.http2.Http2Connection: java.util.Map streams -androidx.viewpager2.R$attr: int fastScrollVerticalTrackDrawable -cyanogenmod.externalviews.KeyguardExternalViewProviderService: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider createExternalView(android.os.Bundle) -com.google.android.gms.common.api.Scope -wangdaye.com.geometricweather.R$string: int key_dark_mode -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_middle_mtrl_dark -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar_Indicator -okhttp3.Cache$1: Cache$1(okhttp3.Cache) -wangdaye.com.geometricweather.R$style: int widget_text_clock -wangdaye.com.geometricweather.R$id: int BOTTOM_END -wangdaye.com.geometricweather.R$drawable: int widget_card_dark_80 -com.bumptech.glide.R$integer -com.google.android.material.R$attr: int endIconContentDescription -androidx.preference.R$drawable: int notification_bg_low -com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Light -androidx.vectordrawable.animated.R$attr: int fontProviderFetchStrategy -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: boolean isDisposed() -com.turingtechnologies.materialscrollbar.R$id: int largeLabel -com.turingtechnologies.materialscrollbar.R$attr: int subtitle -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_NavigationView -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabBarStyle -androidx.hilt.work.R$bool: int enable_system_job_service_default -com.tencent.bugly.proguard.am: java.lang.String f -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long skip -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: ObservableRepeat$RepeatObserver(io.reactivex.Observer,long,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_2 -okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date expires -androidx.constraintlayout.widget.R$attr: int actionViewClass -androidx.appcompat.R$attr: int fontProviderPackage -com.xw.repo.bubbleseekbar.R$attr: int bsb_show_section_mark -com.google.gson.LongSerializationPolicy$1: com.google.gson.JsonElement serialize(java.lang.Long) -androidx.lifecycle.ComputableLiveData: java.lang.Runnable mRefreshRunnable -james.adaptiveicon.R$styleable: int[] ActionMenuItemView -okhttp3.internal.http2.Http2Codec$StreamFinishingSource: okhttp3.internal.http2.Http2Codec this$0 -androidx.viewpager.widget.ViewPager: void setPageMargin(int) -androidx.preference.R$style: int Widget_AppCompat_ActionButton -okhttp3.Handshake: java.security.Principal localPrincipal() -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setZh_CN(java.lang.String) -androidx.swiperefreshlayout.R$id: int tag_unhandled_key_listeners -wangdaye.com.geometricweather.R$drawable: int notif_temp_129 -cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(android.os.Parcel) +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm10() +com.bumptech.glide.load.ImageHeaderParser$ImageType +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.Observer downstream +com.google.android.material.R$anim: int abc_slide_out_top +androidx.preference.R$style: int Base_TextAppearance_AppCompat_SearchResult +okhttp3.Challenge: java.lang.String scheme +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void run() +androidx.preference.R$attr: int min +wangdaye.com.geometricweather.R$string: int sp_widget_daily_trend_setting +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTopCompat +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_SearchView +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String getDescription() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginRight +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogStyle +androidx.appcompat.R$drawable: int abc_text_cursor_material +com.turingtechnologies.materialscrollbar.R$attr: int suggestionRowLayout +androidx.recyclerview.R$id: int accessibility_custom_action_3 +androidx.lifecycle.MediatorLiveData$Source: androidx.lifecycle.Observer mObserver +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_textOn +cyanogenmod.weather.WeatherInfo$DayForecast: int hashCode() +androidx.appcompat.resources.R$id: int accessibility_custom_action_16 +com.google.android.gms.base.R$id: int adjust_height +com.turingtechnologies.materialscrollbar.R$attr: int windowFixedHeightMinor +okhttp3.internal.tls.DistinguishedNameParser: int pos +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$style: int AlertDialog_AppCompat +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder readTimeout(java.time.Duration) +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: ViewModelProvider$AndroidViewModelFactory(android.app.Application) +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPasswordVisibilityToggleContentDescription() +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_maxWidth +androidx.preference.R$styleable: int SeekBarPreference_android_max +com.jaredrummler.android.colorpicker.R$integer: int abc_config_activityShortDur +com.tencent.bugly.crashreport.biz.UserInfoBean: long h +androidx.preference.R$attr: int dialogCornerRadius +com.tencent.bugly.BuglyStrategy: java.lang.String getDeviceID() +wangdaye.com.geometricweather.R$attr: int alertDialogStyle +io.reactivex.Observable: io.reactivex.Observable ambArray(io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.R$attr: int checked +cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo mWeatherInfo +androidx.hilt.lifecycle.R$id: int tag_unhandled_key_event_manager +android.didikee.donate.R$attr: int subtitleTextColor +com.google.android.material.R$styleable: int TextInputLayout_shapeAppearanceOverlay +com.amap.api.location.APSService: com.amap.api.location.APSServiceBase a +androidx.constraintlayout.widget.R$layout: int abc_activity_chooser_view_list_item +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_DIALOG_THEME +androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_radio +cyanogenmod.os.Concierge: cyanogenmod.os.Concierge$ParcelInfo prepareParcel(android.os.Parcel) +okhttp3.CacheControl: int minFreshSeconds() +okio.GzipSource: java.util.zip.Inflater inflater +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +com.jaredrummler.android.colorpicker.R$id: int transparency_seekbar +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +com.google.android.material.R$styleable: int ActionMenuItemView_android_minWidth +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_27 +com.google.android.material.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.R$attr: int preferenceCategoryTitleTextAppearance +androidx.dynamicanimation.R$dimen: int compat_button_inset_horizontal_material +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +okhttp3.HttpUrl: java.lang.String PATH_SEGMENT_ENCODE_SET_URI +androidx.constraintlayout.widget.R$styleable: int View_theme +androidx.fragment.R$id: int chronometer +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +androidx.constraintlayout.widget.R$attr: int layout_constraintGuide_begin +wangdaye.com.geometricweather.R$style: int TestThemeWithLineHeight +wangdaye.com.geometricweather.R$styleable: int[] CheckBoxPreference +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarDivider +com.google.android.material.R$style: int Base_Widget_AppCompat_ListView_DropDown +com.bumptech.glide.R$styleable: int FontFamily_fontProviderQuery +com.google.android.material.slider.Slider: int getTrackWidth() +com.google.android.material.R$styleable: int Chip_showMotionSpec +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +androidx.hilt.lifecycle.R$id: int right_icon +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: AccuDailyResult$DailyForecasts$RealFeelTemperature() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_CheckBox +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowMinWidthMajor +okhttp3.Address: javax.net.SocketFactory socketFactory +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String logo +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderToggleButton +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: cyanogenmod.app.ThemeVersion$ComponentVersion fwCompVersionToSdkVersion(android.content.ThemeVersion$ComponentVersion) +com.google.android.material.R$attr: int pathMotionArc +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.R$string: int settings_title_weather_source +com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_pressed +com.google.android.material.R$styleable: int Tooltip_android_minHeight +okhttp3.internal.ws.RealWebSocket: void onReadClose(int,java.lang.String) +androidx.recyclerview.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean hasKey(java.lang.Object) +androidx.recyclerview.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$attr: int progress_width +androidx.appcompat.resources.R$styleable: int[] GradientColor +androidx.hilt.work.R$styleable: int GradientColor_android_startX +cyanogenmod.app.Profile$DozeMode: int DISABLE +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.HistoryEntity,long) +cyanogenmod.os.Concierge$ParcelInfo: Concierge$ParcelInfo(android.os.Parcel,int) +com.tencent.bugly.crashreport.CrashReport: void postException(java.lang.Thread,int,java.lang.String,java.lang.String,java.lang.String,java.util.Map) +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollHorizontalThumbDrawable +androidx.constraintlayout.widget.R$styleable: int KeyPosition_sizePercent +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_125 +okio.Timeout: okio.Timeout clearDeadline() +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_android_minHeight +cyanogenmod.alarmclock.CyanogenModAlarmClock: android.content.Intent createAlarmIntent(android.content.Context) +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSyncDuration +androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context,android.util.AttributeSet) +androidx.preference.R$attr: int listPreferredItemHeight +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_97 +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: HalfDay(java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration,wangdaye.com.geometricweather.common.basic.models.weather.Wind,java.lang.Integer) +wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newSession(org.greenrobot.greendao.identityscope.IdentityScopeType) +io.reactivex.internal.util.VolatileSizeArrayList: java.util.ListIterator listIterator(int) +androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMarkTintMode +androidx.preference.R$id: int action_mode_close_button +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_disabled_material_light +com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context) +com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_checked_black +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver +io.reactivex.Observable: io.reactivex.Observable interval(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int NO_REQUEST_NO_VALUE +androidx.activity.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +com.bumptech.glide.integration.okhttp.R$attr: int coordinatorLayoutStyle +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_checkable +wangdaye.com.geometricweather.R$id: int material_clock_display +com.tencent.bugly.proguard.v: int d +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay valueOf(java.lang.String) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: java.util.Queue sources +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_disabled_material_dark +android.didikee.donate.R$style: int Platform_AppCompat_Light +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: int Level +okhttp3.Headers$Builder: okhttp3.Headers$Builder addLenient(java.lang.String,java.lang.String) +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onNext(java.lang.Object) +james.adaptiveicon.R$style: int Base_Animation_AppCompat_Tooltip +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_pixel +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_summary +cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.ICMStatusBarManager getStatusBarInterface() +okhttp3.Response$Builder: okhttp3.Response$Builder code(int) +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: long remaining +cyanogenmod.platform.Manifest$permission: java.lang.String THIRD_PARTY_KEYGUARD +androidx.appcompat.R$attr: int actionBarDivider +androidx.appcompat.widget.ActionBarOverlayLayout: int getNestedScrollAxes() +androidx.cardview.R$attr: int cardMaxElevation +com.tencent.bugly.proguard.u: int b(com.tencent.bugly.proguard.u) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource LocalSource +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.IRequestInfoListener mRequestInfoListener +com.tencent.bugly.crashreport.crash.b: android.content.ContentValues e(com.tencent.bugly.crashreport.crash.CrashDetailBean) +okhttp3.internal.http2.Huffman: byte[] CODE_LENGTHS +com.google.android.material.R$color: int primary_material_light +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onComplete() +androidx.vectordrawable.animated.R$styleable: int[] FontFamilyFont +androidx.constraintlayout.widget.R$layout: int select_dialog_multichoice_material +cyanogenmod.weather.CMWeatherManager: int requestWeatherUpdate(cyanogenmod.weather.WeatherLocation,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener) +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay +okio.Buffer$2: int read() +okhttp3.internal.http2.Http2Connection: void start(boolean) +wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_bias +cyanogenmod.app.ThemeComponent: ThemeComponent(java.lang.String,int,int) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onError(java.lang.Throwable) +com.amap.api.fence.GeoFence: int ADDGEOFENCE_SUCCESS +com.turingtechnologies.materialscrollbar.R$styleable: int ViewStubCompat_android_inflatedId +androidx.appcompat.R$id: int group_divider +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: AccuCurrentResult$WetBulbTemperature$Imperial() +wangdaye.com.geometricweather.R$attr: int goIcon +com.google.android.material.R$id: int container +androidx.constraintlayout.widget.R$styleable: int Transform_android_translationY +androidx.work.BackoffPolicy: androidx.work.BackoffPolicy EXPONENTIAL +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_arrowShaftLength +androidx.appcompat.R$drawable: int abc_btn_default_mtrl_shape +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.loader.R$drawable +com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_Dialog +com.jaredrummler.android.colorpicker.R$id: int uniform +androidx.appcompat.resources.R$id: R$id() +androidx.constraintlayout.widget.R$drawable: int abc_ic_voice_search_api_material +com.autonavi.aps.amapapi.model.AMapLocationServer +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableRightCompat +okio.RealBufferedSource: long readLongLe() +androidx.activity.R$integer +cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(cyanogenmod.app.ThemeVersion$ComponentVersion) +com.google.android.material.R$integer: int abc_config_activityShortDur +androidx.preference.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceCategoryStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +com.google.android.material.R$styleable: int Constraint_layout_goneMarginBottom +com.google.android.material.R$style: int CardView_Dark +okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_1 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA +com.google.android.material.slider.Slider: void setHaloRadius(int) +wangdaye.com.geometricweather.R$color: int material_slider_inactive_tick_marks_color +com.bumptech.glide.integration.okhttp.R$dimen +wangdaye.com.geometricweather.R$color: int mtrl_error +com.google.android.material.R$attr: int customBoolean +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_inputType +androidx.legacy.coreutils.R$dimen: int notification_large_icon_width +james.adaptiveicon.R$layout: int abc_select_dialog_material +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property CloudCover +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_crossfade +retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: retrofit2.OkHttpCall$ExceptionCatchingResponseBody this$0 +android.didikee.donate.R$styleable: int LinearLayoutCompat_showDividers +androidx.hilt.work.R$id: int accessibility_custom_action_7 +retrofit2.http.Tag +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_android_src +com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_DropDownUp +androidx.preference.Preference +com.bumptech.glide.integration.okhttp.R$id: int notification_background +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_NoActionBar +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_toBottomOf +io.reactivex.Observable: io.reactivex.Observable concatMapMaybe(io.reactivex.functions.Function) +cyanogenmod.weather.WeatherInfo: double mWindSpeed +cyanogenmod.app.ProfileManager: void updateNotificationGroup(android.app.NotificationGroup) +james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat +com.jaredrummler.android.colorpicker.R$attr: int displayOptions +wangdaye.com.geometricweather.R$attr: int haloColor +com.google.android.material.R$styleable: int[] AppCompatTextHelper +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_background_transition_holo_light +com.google.android.material.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ +wangdaye.com.geometricweather.R$string: int abc_searchview_description_clear +okio.Buffer: long readLong() +androidx.work.R$string +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +wangdaye.com.geometricweather.R$layout: int item_details +com.google.android.material.R$dimen: int design_bottom_sheet_elevation +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_orderInCategory +james.adaptiveicon.R$dimen: int abc_seekbar_track_progress_height_material +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_default_height_material +androidx.fragment.R$id: int tag_unhandled_key_listeners +androidx.coordinatorlayout.R$id: int action_text +com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_circle_large +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_progressBarPadding +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: long serialVersionUID +cyanogenmod.themes.ThemeManager: void requestThemeChange(java.util.Map) +androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.R$drawable: int material_ic_clear_black_24dp +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline5 +okhttp3.OkHttpClient$Builder: boolean followRedirects +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterOverflowTextAppearance +androidx.preference.R$style: int Base_Widget_AppCompat_ActionButton +androidx.appcompat.R$styleable: int[] AppCompatTextView +okhttp3.Cache: Cache(java.io.File,long,okhttp3.internal.io.FileSystem) +androidx.work.R$dimen: int notification_content_margin_start +androidx.preference.R$style: int Widget_AppCompat_Spinner_Underlined +wangdaye.com.geometricweather.R$drawable: int notif_temp_84 +com.turingtechnologies.materialscrollbar.R$style: int Platform_Widget_AppCompat_Spinner +cyanogenmod.app.Profile$Type: int TOGGLE +wangdaye.com.geometricweather.R$styleable: int Preference_android_widgetLayout +androidx.hilt.work.R$dimen: int notification_main_column_padding_top +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_progressBarPadding +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_toId +okhttp3.internal.platform.OptionalMethod: boolean isSupported(java.lang.Object) +com.google.android.material.chip.Chip: void setCheckedIconTintResource(int) +androidx.appcompat.R$string: int abc_shareactionprovider_share_with_application +wangdaye.com.geometricweather.main.fragments.ManagementFragment +okhttp3.logging.LoggingEventListener: long startNs +com.tencent.bugly.crashreport.common.info.a: a(android.content.Context) +cyanogenmod.providers.CMSettings$Secure: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) +com.google.android.material.R$attr: int tabTextAppearance +androidx.appcompat.R$color: int abc_tint_seek_thumb +com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int barLength +io.reactivex.Observable: io.reactivex.Observable flatMapSingle(io.reactivex.functions.Function) +androidx.swiperefreshlayout.R$layout: R$layout() +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleEnabled +wangdaye.com.geometricweather.R$styleable: int CardView_android_minWidth +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_SearchResult +androidx.hilt.lifecycle.R$dimen: int notification_big_circle_margin +com.tencent.bugly.BuglyStrategy: boolean m +com.tencent.bugly.proguard.am: java.lang.String n +androidx.swiperefreshlayout.R$id: int accessibility_action_clickable_span +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind wind +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_max_progress +com.google.gson.FieldNamingPolicy$6 +androidx.preference.R$attr: int trackTint +android.didikee.donate.R$attr: int colorControlNormal +androidx.core.R$id: int actions +com.xw.repo.bubbleseekbar.R$attr: int iconTint +com.jaredrummler.android.colorpicker.R$attr: int closeIcon +wangdaye.com.geometricweather.R$id: int visible +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonStyle +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontWeight +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void ping(boolean,int,int) +com.turingtechnologies.materialscrollbar.R$attr: int editTextStyle +androidx.constraintlayout.widget.R$styleable: int KeyCycle_motionTarget +james.adaptiveicon.R$drawable: int abc_vector_test +androidx.appcompat.R$attr: int buttonGravity +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_icon +com.google.android.material.R$styleable: int[] ViewPager2 +androidx.constraintlayout.widget.R$string: int abc_searchview_description_clear +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: void run() +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country Country +com.tencent.bugly.proguard.q: android.database.sqlite.SQLiteDatabase getReadableDatabase() +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver) +com.google.gson.internal.LazilyParsedNumber: java.lang.String toString() +androidx.swiperefreshlayout.R$id: int async +com.google.android.material.R$attr: int counterEnabled +cyanogenmod.providers.DataUsageContract +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetStart +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setScaleY(float) +androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView +wangdaye.com.geometricweather.R$styleable: int Chip_chipSurfaceColor +wangdaye.com.geometricweather.R$id: int dragStart +androidx.constraintlayout.widget.R$id: int sin +android.didikee.donate.R$dimen: int notification_small_icon_background_padding +okhttp3.internal.http2.Http2Connection$6: int val$streamId +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial Imperial +wangdaye.com.geometricweather.R$drawable: int ic_mold +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context) +androidx.preference.R$attr: int customNavigationLayout +com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dividerHorizontal +cyanogenmod.app.ICMTelephonyManager$Stub: ICMTelephonyManager$Stub() +cyanogenmod.hardware.CMHardwareManager: java.lang.String getLtoDestination() +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.ThemeChangeRequest$RequestType getLastThemeChangeRequestType() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListMenuView +wangdaye.com.geometricweather.R$string: int wet_bulb_temperature +io.reactivex.internal.schedulers.RxThreadFactory: java.lang.String prefix +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$id: int tag_unhandled_key_listeners +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation mWeatherLocation +wangdaye.com.geometricweather.R$layout: int abc_activity_chooser_view_list_item +androidx.appcompat.R$attr: int textAppearanceSmallPopupMenu +cyanogenmod.app.ProfileGroup: ProfileGroup(android.os.Parcel,cyanogenmod.app.ProfileGroup$1) +androidx.lifecycle.LiveData$ObserverWrapper +wangdaye.com.geometricweather.settings.fragments.AbstractSettingsFragment +com.google.android.material.R$style: int Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$styleable: int View_android_theme +okhttp3.internal.connection.RouteSelector: int nextProxyIndex +com.jaredrummler.android.colorpicker.R$drawable: int cpv_preset_checked +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitationDuration() +com.google.android.material.R$color: int test_mtrl_calendar_day_selected +androidx.core.R$id: int notification_background +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_visible +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_liftOnScrollTargetViewId +com.google.android.material.slider.RangeSlider: void setTickActiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextTextAppearance +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +com.google.android.material.R$layout: int material_clockface_view +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setShifting(boolean) +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleColor(int) +com.google.android.material.R$styleable: int AppCompatTheme_actionModeShareDrawable +com.tencent.bugly.proguard.m +androidx.preference.R$id: int submit_area +androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.Fragment,androidx.lifecycle.ViewModelProvider$Factory) +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_NoActionBar +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchMinWidth +com.tencent.bugly.crashreport.crash.anr.b: com.tencent.bugly.crashreport.crash.CrashDetailBean a(com.tencent.bugly.crashreport.crash.anr.a) +com.google.android.material.R$attr: int tickMarkTintMode +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: ObservableSampleTimed$SampleTimedNoLast(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode[] values() +android.support.v4.app.INotificationSideChannel$Stub: java.lang.String DESCRIPTOR +com.amap.api.location.AMapLocation: int LOCATION_TYPE_FIX_CACHE +com.google.android.material.button.MaterialButtonToggleGroup: void addOnButtonCheckedListener(com.google.android.material.button.MaterialButtonToggleGroup$OnButtonCheckedListener) +com.google.android.material.R$id: int start +androidx.constraintlayout.widget.R$attr: int dialogTheme +com.tencent.bugly.crashreport.biz.b: long i +androidx.activity.R$id: int tag_unhandled_key_event_manager +androidx.preference.R$dimen +com.turingtechnologies.materialscrollbar.R$attr: int scrimVisibleHeightTrigger +okhttp3.internal.platform.ConscryptPlatform: ConscryptPlatform() +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: boolean isDisposed() +com.jaredrummler.android.colorpicker.R$layout: int abc_cascading_menu_item_layout +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginStart +wangdaye.com.geometricweather.db.entities.DailyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_DailyEntityListQuery +com.turingtechnologies.materialscrollbar.R$color +okhttp3.internal.http1.Http1Codec$FixedLengthSource: Http1Codec$FixedLengthSource(okhttp3.internal.http1.Http1Codec,long) +wangdaye.com.geometricweather.R$styleable: int Toolbar_popupTheme +wangdaye.com.geometricweather.db.entities.DailyEntity: void setTime(long) +androidx.preference.R$styleable: int[] ColorStateListItem +io.reactivex.internal.disposables.ArrayCompositeDisposable +com.jaredrummler.android.colorpicker.R$attr: int actionLayout +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun sun +wangdaye.com.geometricweather.R$styleable: int ActionMode_height +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderTextAppearance +cyanogenmod.weatherservice.WeatherProviderService$1: void cancelRequest(int) +androidx.constraintlayout.helper.widget.Layer: void setElevation(float) +wangdaye.com.geometricweather.R$layout: int container_main_footer +okhttp3.internal.ws.RealWebSocket: void tearDown() +io.reactivex.internal.util.VolatileSizeArrayList: long serialVersionUID +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontWeight +androidx.appcompat.R$string: int abc_capital_on +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.lifecycle.ReflectiveGenericLifecycleObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed +com.google.android.material.R$drawable: int abc_btn_colored_material +com.jaredrummler.android.colorpicker.R$dimen: int compat_button_inset_horizontal_material +androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver: ForceStopRunnable$BroadcastReceiver() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: java.lang.String Unit +com.tencent.bugly.crashreport.common.info.a: long p() +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: io.reactivex.functions.BiFunction combiner +com.google.android.material.textfield.TextInputLayout: float getHintCollapsedTextHeight() +wangdaye.com.geometricweather.R$string: int widget_clock_day_details +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dialog +com.google.android.material.R$styleable: int[] AnimatedStateListDrawableTransition +james.adaptiveicon.R$styleable: int ActionMode_background +wangdaye.com.geometricweather.R$styleable: int RecycleListView_paddingTopNoTitle +com.xw.repo.bubbleseekbar.R$drawable: int abc_seekbar_tick_mark_material +androidx.appcompat.R$id: int action_menu_divider +okhttp3.internal.http2.Settings: int DEFAULT_INITIAL_WINDOW_SIZE +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: android.content.IntentFilter a cyanogenmod.power.PerformanceManager: java.lang.String POWER_PROFILE_CHANGED -androidx.appcompat.R$attr: int actionModeFindDrawable -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.query.QueryBuilder queryBuilder(java.lang.Class) -wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: void setUnfold(boolean) -androidx.coordinatorlayout.R$string: int status_bar_notification_info_overflow -androidx.constraintlayout.widget.R$attr: int transitionFlags -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean isEntityUpdateable() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Surface -androidx.constraintlayout.widget.R$styleable: int Constraint_pathMotionArc -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_focusable -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void drain() -okhttp3.internal.cache2.Relay: okio.ByteString metadata -com.google.android.material.R$attr: int tabUnboundedRipple -org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxPlain -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: ObservableSampleTimed$SampleTimedEmitLast(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerNext(io.reactivex.internal.observers.InnerQueuedObserver,java.lang.Object) -com.google.android.gms.common.Feature: android.os.Parcelable$Creator CREATOR -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_material_dark -com.google.android.material.R$attr: int yearTodayStyle -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Small -wangdaye.com.geometricweather.R$styleable: int NavigationView_shapeAppearance -james.adaptiveicon.R$styleable: int DrawerArrowToggle_color -com.xw.repo.bubbleseekbar.R$id: int none -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onError(java.lang.Throwable) -okhttp3.WebSocketListener: void onFailure(okhttp3.WebSocket,java.lang.Throwable,okhttp3.Response) -androidx.appcompat.R$attr: int subtitleTextColor -wangdaye.com.geometricweather.R$attr: int actionBarItemBackground -retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1(retrofit2.Call) -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio -wangdaye.com.geometricweather.db.entities.AlertEntityDao: boolean hasKey(java.lang.Object) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String src -androidx.viewpager2.R$id: int accessibility_custom_action_28 -wangdaye.com.geometricweather.R$string: int key_precipitation_notification_switch -io.reactivex.internal.util.AtomicThrowable: boolean isTerminated() -wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: void onUpgrade(org.greenrobot.greendao.database.Database,int,int) -androidx.appcompat.widget.LinearLayoutCompat -wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_pressed -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotationY -android.didikee.donate.R$styleable: int AppCompatTheme_actionMenuTextColor -com.google.android.gms.common.api.internal.LifecycleCallback -wangdaye.com.geometricweather.R$id: int item_about_translator -androidx.transition.R$styleable: int FontFamily_fontProviderPackage -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_touch_to_seek -cyanogenmod.app.suggest.IAppSuggestManager: java.util.List getSuggestions(android.content.Intent) -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode[] values() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitationProbability(java.lang.Float) -com.tencent.bugly.crashreport.crash.CrashDetailBean: CrashDetailBean() -androidx.constraintlayout.widget.R$attr: int tintMode -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitation(java.lang.Float) -com.google.android.material.R$attr: int materialAlertDialogTitlePanelStyle -androidx.lifecycle.ProcessLifecycleOwner$2: void onCreate() -com.github.rahatarmanahmed.cpv.CircularProgressView: float indeterminateSweep -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionOverflowMenuStyle -io.reactivex.Observable: io.reactivex.Observable scan(io.reactivex.functions.BiFunction) -james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeMinTextSize -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_cut_mtrl_alpha -okhttp3.internal.http2.Http2Connection: void writePing() -com.tencent.bugly.proguard.u: java.util.concurrent.LinkedBlockingQueue h -android.didikee.donate.R$styleable: int AppCompatTheme_colorError -com.xw.repo.bubbleseekbar.R$attr: int actionBarItemBackground -wangdaye.com.geometricweather.R$id: int item_icon_provider_container -com.github.rahatarmanahmed.cpv.CircularProgressView$1: void onAnimationUpdate(android.animation.ValueAnimator) -androidx.fragment.R$styleable: int GradientColor_android_tileMode -androidx.constraintlayout.widget.R$attr: int actionModeStyle -com.google.android.material.R$style: int Platform_AppCompat_Light -androidx.preference.R$id: int wrap_content -okhttp3.internal.connection.RealConnection: void connect(int,int,int,int,boolean,okhttp3.Call,okhttp3.EventListener) -com.jaredrummler.android.colorpicker.R$attr: int toolbarStyle -com.tencent.bugly.proguard.j: void a(short,int) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Medium_Inverse -wangdaye.com.geometricweather.R$id: int multiply -cyanogenmod.app.CustomTile$Builder: android.content.Intent mOnSettingsClick -androidx.hilt.work.R$styleable: int GradientColor_android_centerY -io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: ScheduledDirectPeriodicTask(java.lang.Runnable) -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_26 -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: io.reactivex.Scheduler$Worker worker -androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_android_alpha -com.jaredrummler.android.colorpicker.R$id: int line3 -okio.GzipSource: okio.Timeout timeout() -com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: java.util.Map e -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void dispose() -androidx.preference.R$styleable: int GradientColor_android_centerColor -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void a() -com.github.rahatarmanahmed.cpv.R$integer -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.functions.Function mapper -com.google.android.material.floatingactionbutton.FloatingActionButton: void setRippleColor(int) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String city +androidx.preference.R$style: int TextAppearance_AppCompat_Large_Inverse +okhttp3.internal.http1.Http1Codec$UnknownLengthSource +retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.Object adapt(retrofit2.Call) +androidx.appcompat.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +androidx.appcompat.widget.AppCompatTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_top +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BACK_WAKE_SCREEN_VALIDATOR +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_width_minor +androidx.transition.R$id: int save_non_transition_alpha +androidx.constraintlayout.widget.R$id: int search_edit_frame +androidx.dynamicanimation.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +androidx.preference.R$dimen: int abc_action_bar_default_height_material +wangdaye.com.geometricweather.R$attr: int voiceIcon +androidx.constraintlayout.widget.R$id: int dragDown +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Body1 +androidx.core.R$id: int action_divider +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_dither +com.turingtechnologies.materialscrollbar.R$attr: int colorSecondary +io.reactivex.internal.observers.BlockingObserver: void onComplete() +android.didikee.donate.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_Tooltip +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.google.android.material.R$styleable: int CustomAttribute_customColorDrawableValue +com.tencent.bugly.crashreport.crash.anr.b: boolean j +cyanogenmod.app.CustomTile$Builder: android.net.Uri mOnClickUri +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherSource(java.lang.String) +androidx.preference.R$color: int ripple_material_light +cyanogenmod.power.PerformanceManager: int mNumberOfProfiles +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index o3 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date getPublishDate() +com.google.android.material.card.MaterialCardView: void setCardForegroundColor(android.content.res.ColorStateList) +okhttp3.internal.http2.Http2Connection$6: boolean val$inFinished +okhttp3.Response$Builder: okhttp3.Response$Builder header(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Alert_Bridge +io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer,io.reactivex.functions.Consumer) +james.adaptiveicon.R$attr: int contentInsetRight +androidx.hilt.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$attr: int passwordToggleDrawable +androidx.viewpager2.R$id: int icon_group +okhttp3.internal.connection.StreamAllocation: okhttp3.ConnectionPool connectionPool +wangdaye.com.geometricweather.R$string: int settings_summary_live_wallpaper +androidx.constraintlayout.widget.R$attr: int navigationMode +io.reactivex.disposables.ReferenceDisposable: ReferenceDisposable(java.lang.Object) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_checkboxStyle +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_GREEN_INDEX +androidx.activity.R$styleable: int FontFamilyFont_font +okhttp3.internal.Util: java.util.List immutableList(java.lang.Object[]) +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode valueOf(java.lang.String) +androidx.work.R$styleable: int GradientColor_android_type +cyanogenmod.profiles.AirplaneModeSettings: boolean isOverride() +com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_thumb_material +okhttp3.HttpUrl: okhttp3.HttpUrl get(java.lang.String) +android.didikee.donate.R$id: int split_action_bar +com.tencent.bugly.proguard.z: byte[] a(byte[],int,java.lang.String) +com.tencent.bugly.crashreport.common.info.a: java.lang.String r() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int StartMinute +wangdaye.com.geometricweather.R$drawable: int notif_temp_1 +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onComplete() +com.google.android.material.R$attr: int behavior_hideable +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class,androidx.lifecycle.SavedStateHandle) +com.tencent.bugly.crashreport.crash.jni.a: void handleNativeException2(int,int,long,long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,int,java.lang.String,java.lang.String,java.lang.String[]) +cyanogenmod.externalviews.ExternalView$2: int val$y +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_scrollContainer +com.google.android.material.R$attr: int startIconDrawable +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_1 +wangdaye.com.geometricweather.R$id: int none +james.adaptiveicon.R$id: int icon +com.google.android.material.R$styleable: int Tooltip_android_layout_margin +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +com.amap.api.fence.PoiItem: java.lang.String d +com.google.android.material.R$dimen: int disabled_alpha_material_light +okhttp3.CertificatePinner +retrofit2.Utils$GenericArrayTypeImpl +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setPrecipitation(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean) +androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior: CoordinatorLayout$Behavior(android.content.Context,android.util.AttributeSet) +okio.Okio +com.xw.repo.bubbleseekbar.R$attr: int actionModeSplitBackground +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial Imperial +wangdaye.com.geometricweather.R$attr: int counterOverflowTextAppearance +james.adaptiveicon.R$attr: int indeterminateProgressStyle +okhttp3.OkHttpClient: java.util.List interceptors +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_tintMode +androidx.constraintlayout.widget.R$dimen: int abc_button_padding_horizontal_material +com.jaredrummler.android.colorpicker.R$attr: int titleMarginTop +wangdaye.com.geometricweather.R$attr: int itemIconSize +androidx.coordinatorlayout.R$id: int accessibility_custom_action_11 +okhttp3.internal.ws.WebSocketReader: boolean isClient +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: double Value +cyanogenmod.profiles.RingModeSettings: boolean isOverride() +android.didikee.donate.R$attr: int borderlessButtonStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getNighttimeWeatherCode() +wangdaye.com.geometricweather.R$color: int secondary_text_default_material_light +androidx.work.R$dimen: R$dimen() +androidx.coordinatorlayout.R$id: int end +com.turingtechnologies.materialscrollbar.R$layout: R$layout() +androidx.appcompat.view.menu.ActionMenuItemView: void setIcon(android.graphics.drawable.Drawable) +androidx.preference.R$styleable: int[] MenuGroup +androidx.hilt.work.R$id: int tag_transition_group +com.jaredrummler.android.colorpicker.R$attr: int thumbTintMode +com.turingtechnologies.materialscrollbar.R$id: int touch_outside +wangdaye.com.geometricweather.R$drawable: int ic_ragweed +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int BLOWING_SNOW +com.google.android.material.R$attr: int textAppearanceHeadline2 +com.google.android.material.R$styleable: int CardView_contentPaddingTop +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: java.lang.String Unit +androidx.lifecycle.extensions.R$dimen: int compat_notification_large_icon_max_width +androidx.appcompat.R$id: int message +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: void run() +com.bumptech.glide.integration.okhttp.R$drawable: int notification_template_icon_low_bg +com.google.android.material.R$attr: int homeAsUpIndicator +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_NavigationView +okio.Okio$2: void close() +androidx.hilt.work.R$drawable: int notification_tile_bg +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String ALARM_STATE +androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$id: int action_image +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Slider +com.jaredrummler.android.colorpicker.R$color: int tooltip_background_dark +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Caption +android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Light +com.tencent.bugly.crashreport.CrashReport: void setContext(android.content.Context) +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void run() +com.google.android.material.chip.Chip: void setOnCheckedChangeListenerInternal(android.widget.CompoundButton$OnCheckedChangeListener) +okhttp3.internal.http1.Http1Codec: int STATE_READING_RESPONSE_BODY +okio.BufferedSink +android.didikee.donate.R$styleable: int ColorStateListItem_alpha +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +com.google.android.material.R$id: int ghost_view_holder +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_drawableLeft +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent OVERLAY +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_2G +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_singleChoiceItemLayout +com.google.android.material.R$drawable: int abc_btn_default_mtrl_shape +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedWidthMinor +androidx.preference.R$styleable: int ActionBar_background +androidx.preference.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +james.adaptiveicon.R$attr: int actionModePopupWindowStyle +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void trySchedule() +androidx.customview.R$styleable: int ColorStateListItem_android_alpha +com.google.android.material.R$styleable: int TextInputLayout_endIconTint +androidx.appcompat.R$id: int radio +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getCurrentPosition() +okio.Buffer: java.lang.String toString() +com.google.android.material.button.MaterialButton +okhttp3.internal.cache2.Relay: java.lang.Thread upstreamReader +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Id +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +io.reactivex.internal.util.ExceptionHelper$Termination: ExceptionHelper$Termination() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String brandId +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickTintList() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView_Menu +com.bumptech.glide.integration.okhttp.R$color: R$color() +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_ActionBar +androidx.preference.R$styleable: int Preference_android_widgetLayout +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Subhead +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Tooltip +android.didikee.donate.R$styleable: int AppCompatTheme_dropDownListViewStyle +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void dispose() +com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context,android.util.AttributeSet,int) +com.tencent.bugly.crashreport.common.info.a: boolean z +androidx.constraintlayout.widget.R$styleable: int[] CustomAttribute +com.tencent.bugly.proguard.y: java.lang.String k +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$layout: int widget_week_3 +wangdaye.com.geometricweather.R$color: int colorPrimaryDark +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarStyle +retrofit2.RequestFactory$Builder: java.util.regex.Pattern PARAM_NAME_REGEX +com.bumptech.glide.integration.okhttp.R$id: int title +james.adaptiveicon.R$attr: int actionModePasteDrawable +com.google.android.material.R$styleable: int SwitchCompat_android_textOff +james.adaptiveicon.R$style: int Animation_AppCompat_Tooltip +cyanogenmod.app.StatusBarPanelCustomTile: int describeContents() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.internal.disposables.SequentialDisposable task +androidx.legacy.coreutils.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingTop +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: java.lang.String getUnit() +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: int getPosition() +com.google.android.material.R$styleable: int Constraint_layout_constraintBaseline_creator +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_disabled_holo_dark +wangdaye.com.geometricweather.daily.DailyWeatherActivity +com.google.android.material.R$attr: int ratingBarStyleIndicator +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: double Value +androidx.work.R$dimen: int notification_right_side_padding_top +androidx.hilt.work.R$anim: int fragment_open_enter +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +com.google.android.material.slider.BaseSlider$SliderState +com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$drawable: int abc_ratingbar_indicator_material +cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_ACCESS_PRIVATE +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_EditText +android.didikee.donate.R$styleable: int ActionBar_progressBarPadding +com.autonavi.aps.amapapi.model.AMapLocationServer: void d(java.lang.String) +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type TEMPERATURE +io.reactivex.Observable: io.reactivex.Observable sorted(java.util.Comparator) +okhttp3.HttpUrl: int querySize() +cyanogenmod.platform.R$array +androidx.lifecycle.LifecycleService: void onDestroy() +com.google.android.material.R$styleable: int AppCompatTheme_actionBarItemBackground +com.google.android.material.R$dimen: int mtrl_tooltip_padding +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderDivider +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 +androidx.appcompat.R$attr: int drawableTint +okio.Options: int[] trie +androidx.hilt.work.R$id: int text2 +okio.GzipSource: long read(okio.Buffer,long) +wangdaye.com.geometricweather.R$id: int SHOW_PATH +cyanogenmod.hardware.ICMHardwareService$Stub: ICMHardwareService$Stub() +androidx.preference.R$style: int Base_V21_Theme_AppCompat_Dialog +androidx.vectordrawable.animated.R$attr: int fontStyle +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_alpha +okhttp3.Cache$CacheResponseBody$1: void close() +wangdaye.com.geometricweather.R$attr: int gestureInsetBottomIgnored +wangdaye.com.geometricweather.R$id: int SHOW_ALL +androidx.drawerlayout.R$attr: int fontProviderPackage +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: void slideLockscreenIn() +com.turingtechnologies.materialscrollbar.R$styleable: int[] FontFamilyFont +com.amap.api.fence.PoiItem: void setAdname(java.lang.String) +wangdaye.com.geometricweather.R$layout: int preference_dialog_edittext +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +okhttp3.Authenticator$1 +okhttp3.Headers: long byteCount() +com.jaredrummler.android.colorpicker.R$id: int search_edit_frame +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintCircleRadius +okio.Buffer: okio.Buffer writeHexadecimalUnsignedLong(long) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +androidx.appcompat.R$attr: int colorError +androidx.constraintlayout.utils.widget.ImageFilterButton: float getContrast() +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: io.reactivex.internal.disposables.DisposableContainer tasks +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +james.adaptiveicon.R$attr: int actionLayout +cyanogenmod.profiles.StreamSettings: int getStreamId() +com.google.android.gms.base.R$attr: int imageAspectRatioAdjust +androidx.hilt.work.R$drawable: int notification_bg +okio.ByteString: byte[] toByteArray() +com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_top_material +com.google.android.material.R$attr: int layout_constraintBottom_creator +com.github.rahatarmanahmed.cpv.CircularProgressView$6: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void run() +wangdaye.com.geometricweather.R$styleable: int MaterialButton_icon +androidx.preference.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.util.Locale locale +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Light_ActionBar_Solid +androidx.preference.R$id: int progress_circular +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property SunSetDate +androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache$CallbackInfo getInfo(java.lang.Class) +wangdaye.com.geometricweather.R$styleable: int ArcProgress_background_color +io.reactivex.Observable: java.util.concurrent.Future toFuture() +com.google.android.material.R$style: int Widget_AppCompat_ListView_Menu +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Toolbar +james.adaptiveicon.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +com.google.android.gms.dynamite.DynamiteModule$DynamiteLoaderClassLoader +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionLayout +com.turingtechnologies.materialscrollbar.R$attr: int indeterminateProgressStyle +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMargin +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CUSTOM_ENABLE_VALIDATOR +com.tencent.bugly.crashreport.CrashReport: java.lang.String removeUserData(android.content.Context,java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Base_Animation_AppCompat_Tooltip +com.google.android.material.internal.ForegroundLinearLayout: void setForeground(android.graphics.drawable.Drawable) +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy[] values() +wangdaye.com.geometricweather.settings.activities.PreviewIconActivity +androidx.appcompat.R$color: int abc_hint_foreground_material_dark +androidx.preference.R$styleable: int MenuItem_android_titleCondensed +io.reactivex.internal.disposables.ArrayCompositeDisposable: boolean isDisposed() +com.google.android.material.R$styleable: int Transform_android_scaleY +com.tencent.bugly.crashreport.common.info.a: java.lang.String O +com.google.android.material.R$styleable: int NavigationView_itemShapeAppearanceOverlay +androidx.appcompat.R$dimen: int notification_right_side_padding_top +com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.util.Map v +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$ReplayBuffer buffer +com.xw.repo.bubbleseekbar.R$styleable: int[] FontFamily +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_ACTIVE +androidx.appcompat.resources.R$id: int normal +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +okhttp3.Call: void cancel() +wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_min +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabTextColor +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelMenuListTheme +com.jaredrummler.android.colorpicker.R$layout: int preference_dropdown_material +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_textAppearance +androidx.legacy.coreutils.R$styleable: int ColorStateListItem_android_alpha +androidx.preference.R$id: int top +com.google.android.material.R$styleable: int Chip_chipStrokeColor +wangdaye.com.geometricweather.R$layout: int abc_dialog_title_material +cyanogenmod.app.PartnerInterface +com.google.android.material.R$styleable: int CustomAttribute_customColorValue +wangdaye.com.geometricweather.R$styleable: int PreferenceGroup_initialExpandedChildrenCount +androidx.constraintlayout.widget.R$dimen: int compat_button_inset_vertical_material +androidx.recyclerview.R$id: int accessibility_custom_action_28 +androidx.hilt.R$id: int icon +com.amap.api.location.CoordUtil: void setLoadedSo(boolean) +cyanogenmod.hardware.CMHardwareManager: int FEATURE_LONG_TERM_ORBITS +wangdaye.com.geometricweather.common.basic.models.weather.Alert: void deduplication(java.util.List) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: int getStatus() +androidx.appcompat.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +com.bumptech.glide.R$color: int secondary_text_default_material_light +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_creator +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_caption_material +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder eventListenerFactory(okhttp3.EventListener$Factory) +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder setType(okhttp3.MediaType) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$string: int phase_third +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String weatherText +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getTotalPrecipitationProbability() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial +wangdaye.com.geometricweather.R$string: int key_refresh_rate +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_UPDATED +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: MfForecastResult$Position() +io.reactivex.Observable: io.reactivex.Observable delay(io.reactivex.ObservableSource,io.reactivex.functions.Function) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial() +com.google.android.material.R$color: int button_material_light +okhttp3.internal.cache.DiskLruCache: java.lang.String CLEAN +android.support.v4.app.INotificationSideChannel$Default: INotificationSideChannel$Default() +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_statusBarBackground +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SearchView +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String co +wangdaye.com.geometricweather.R$attr: int progress_color +com.jaredrummler.android.colorpicker.R$layout: R$layout() +com.tencent.bugly.proguard.p +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_3 +androidx.vectordrawable.animated.R$id: int async +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitationDuration() +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_Toolbar +com.google.android.material.R$styleable: int[] MaterialCardView +com.google.android.gms.common.server.response.FastJsonResponse$Field: com.google.android.gms.common.server.response.zaj CREATOR +okhttp3.internal.ws.RealWebSocket: void onReadPong(okio.ByteString) +wangdaye.com.geometricweather.R$attr: int msb_recyclerView +okio.ForwardingTimeout: void throwIfReached() +okhttp3.internal.cache.DiskLruCache$3 com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_spinBars -cyanogenmod.externalviews.KeyguardExternalView$6 -james.adaptiveicon.R$styleable: int[] CompoundButton -com.google.android.material.R$attr: int hintEnabled -okio.ByteString: okio.ByteString hmacSha256(okio.ByteString) -okhttp3.internal.http2.Header: Header(okio.ByteString,okio.ByteString) -androidx.constraintlayout.widget.R$attr: int searchIcon -wangdaye.com.geometricweather.R$dimen: int abc_text_size_small_material +io.reactivex.Observable: io.reactivex.Observable defaultIfEmpty(java.lang.Object) +com.tencent.bugly.proguard.ak: java.lang.String d +androidx.core.app.CoreComponentFactory: CoreComponentFactory() +androidx.drawerlayout.R$attr: int fontProviderAuthority +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Time +com.jaredrummler.android.colorpicker.R$attr: int font +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Type +wangdaye.com.geometricweather.R$id: int SHIFT +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform PLATFORM +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderAuthority +androidx.coordinatorlayout.R$styleable: int GradientColor_android_endY +com.xw.repo.bubbleseekbar.R$layout: int notification_template_part_chronometer +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onComplete() +androidx.constraintlayout.widget.R$dimen: int notification_large_icon_width +james.adaptiveicon.R$styleable: int ActionBar_homeLayout +okhttp3.internal.Util: java.nio.charset.Charset ISO_8859_1 +androidx.constraintlayout.widget.R$attr: int activityChooserViewStyle +okhttp3.internal.http1.Http1Codec: okio.Sink createRequestBody(okhttp3.Request,long) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int HAS_REQUEST_HAS_VALUE +com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.drawable.Drawable getStatusBarScrim() +okio.BufferedSink: okio.BufferedSink write(byte[],int,int) +com.google.android.material.R$id: int line1 +androidx.appcompat.R$drawable: int abc_list_selector_disabled_holo_light +io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Consumer onError +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_position +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.util.List _queryWeatherEntity_HourlyEntityList(java.lang.String,java.lang.String) +android.didikee.donate.R$dimen: int hint_pressed_alpha_material_dark +com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(int,java.lang.String) +wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay_v14 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonStyle +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_SNOW_AND_SLEET androidx.fragment.R$styleable: int GradientColorItem_android_offset -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -androidx.appcompat.widget.ViewStubCompat: void setLayoutResource(int) -okhttp3.internal.http2.Settings: int getMaxConcurrentStreams(int) -androidx.lifecycle.ReflectiveGenericLifecycleObserver: ReflectiveGenericLifecycleObserver(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$attr: int itemSpacing -wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_default -wangdaye.com.geometricweather.R$id: int tag_accessibility_clickable_spans -okhttp3.internal.http1.Http1Codec$FixedLengthSink: long bytesRemaining -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_homeLayout -okio.ByteString: int codePointIndexToCharIndex(java.lang.String,int) -wangdaye.com.geometricweather.R$color: int mtrl_tabs_ripple_color -com.google.android.material.textfield.TextInputLayout: float getHintCollapsedTextHeight() -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String getEffectiveTldPlusOne(java.lang.String) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onSubscribe(org.reactivestreams.Subscription) -wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Top_Right -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) -com.turingtechnologies.materialscrollbar.R$attr: int tabIconTint -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability -com.google.android.material.R$drawable: int abc_cab_background_top_material -androidx.lifecycle.LiveData$ObserverWrapper: void activeStateChanged(boolean) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator __MAGICAL_TEST_PASSING_ENABLER_VALIDATOR -cyanogenmod.os.Build$CM_VERSION: Build$CM_VERSION() -cyanogenmod.hardware.CMHardwareManager: int FEATURE_DISPLAY_MODES -com.google.android.material.R$attr: int itemIconTint -com.github.rahatarmanahmed.cpv.R$color: R$color() -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.MultipartBody$Part) -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: android.content.IntentFilter a(com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver) -wangdaye.com.geometricweather.R$attr: int progressBarStyle -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircleRadius -androidx.constraintlayout.widget.R$id: int sawtooth -wangdaye.com.geometricweather.R$string: int key_view_type -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_DarkActionBar -androidx.fragment.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$attr: int fabSize -com.turingtechnologies.materialscrollbar.R$dimen -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: long getTime() -androidx.appcompat.widget.AppCompatSpinner -androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontWeight -androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontStyle -androidx.drawerlayout.R$styleable: int GradientColorItem_android_color -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_card_spacing -com.turingtechnologies.materialscrollbar.R$styleable: int[] TextAppearance -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getRingerMode() -com.google.android.material.R$styleable: int Chip_iconEndPadding -wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowColor -com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_new -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: java.util.List getSuggestions(android.content.Intent) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.ObservableSource bufferOpen -androidx.core.R$id: int accessibility_custom_action_0 -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date -com.jaredrummler.android.colorpicker.R$layout -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setPrecipitationColor(int) -android.didikee.donate.R$styleable: int[] AlertDialog -com.google.android.material.R$id: int top -androidx.core.R$drawable: int notification_template_icon_low_bg -okhttp3.internal.http2.Header: Header(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_EditTextPreference -okhttp3.internal.http1.Http1Codec$UnknownLengthSource -android.didikee.donate.R$style: int TextAppearance_AppCompat_Body2 -wangdaye.com.geometricweather.R$layout: int activity_weather_daily -com.tencent.bugly.proguard.ar: java.util.ArrayList f -cyanogenmod.weatherservice.ServiceRequestResult: java.util.List access$302(cyanogenmod.weatherservice.ServiceRequestResult,java.util.List) -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2 -android.didikee.donate.R$dimen: int abc_action_button_min_width_material -androidx.coordinatorlayout.R$id: int tag_accessibility_clickable_spans -com.google.android.material.R$styleable: int Layout_layout_constraintVertical_weight -com.google.android.material.R$attr: int layout_constraintVertical_weight -cyanogenmod.externalviews.ExternalView: void onDetachedFromWindow() -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setSubState -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void innerError(java.lang.Throwable) -retrofit2.HttpServiceMethod: retrofit2.RequestFactory requestFactory -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String getWeathercn() -androidx.core.R$dimen: int notification_main_column_padding_top -cyanogenmod.providers.CMSettings$Validator: boolean validate(java.lang.String) -com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_FixedSize_Bridge -androidx.preference.R$styleable: int AppCompatTextView_drawableEndCompat -com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog -androidx.constraintlayout.widget.R$attr: int tickMarkTintMode -wangdaye.com.geometricweather.R$dimen: int compat_button_padding_vertical_material -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColorSchemeResource(int) -com.jaredrummler.android.colorpicker.R$anim -cyanogenmod.app.Profile$ProfileTrigger: java.lang.String access$300(cyanogenmod.app.Profile$ProfileTrigger) -wangdaye.com.geometricweather.R$drawable: int weather_clear_night -com.tencent.bugly.proguard.z: byte[] b(byte[],int,java.lang.String) -android.didikee.donate.R$drawable: int abc_list_pressed_holo_light -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light_focused -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents -com.google.android.material.R$dimen: int material_cursor_inset_bottom -okhttp3.CacheControl: boolean onlyIfCached -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog -androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentListStyle -com.google.android.material.appbar.AppBarLayout: int getDownNestedPreScrollRange() -james.adaptiveicon.R$color: int accent_material_light -androidx.constraintlayout.widget.R$id: int center -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX brandInfo -james.adaptiveicon.R$styleable: int SearchView_android_maxWidth -androidx.work.R$color: int secondary_text_default_material_light -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: long serialVersionUID -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose[] a -androidx.preference.R$styleable: int SearchView_suggestionRowLayout -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_8 -androidx.preference.R$dimen: int abc_dropdownitem_text_padding_right -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconTint -androidx.loader.R$style -wangdaye.com.geometricweather.R$string: int daily_overview -com.google.android.material.R$attr: int behavior_expandedOffset -com.google.android.material.R$styleable: int KeyCycle_waveOffset -com.google.android.material.R$layout: int mtrl_alert_select_dialog_multichoice -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource ACCU -cyanogenmod.providers.CMSettings$Secure: java.lang.String PRIVACY_GUARD_DEFAULT -com.google.android.material.R$styleable: int KeyTimeCycle_motionProgress -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: java.lang.String modeId -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_body_1_material -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_primary_mtrl_alpha -com.tencent.bugly.crashreport.crash.anr.b: boolean e() -wangdaye.com.geometricweather.R$drawable: int flag_ru -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderLayout -okhttp3.Dispatcher: int runningCallsCount() -androidx.constraintlayout.widget.R$styleable: int View_theme -com.turingtechnologies.materialscrollbar.R$attr: int windowFixedHeightMinor -androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogStyle -james.adaptiveicon.R$attr: int actionModeCopyDrawable -com.google.android.material.R$styleable: int AppCompatTextView_drawableTint -com.google.android.material.R$layout: int mtrl_picker_actions -wangdaye.com.geometricweather.R$string: int feedback_interpret_notification_group_content -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$drawable: int abc_action_bar_item_background_material -androidx.hilt.R$drawable: int notification_bg -androidx.constraintlayout.widget.R$styleable: int Layout_maxWidth -retrofit2.adapter.rxjava2.HttpException -androidx.appcompat.R$styleable: int Toolbar_titleMargin -cyanogenmod.app.suggest.AppSuggestManager: boolean handles(android.content.Intent) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: int UnitType -android.didikee.donate.R$styleable: int AppCompatTextView_drawableTopCompat -androidx.fragment.R$attr: int fontProviderQuery -com.bumptech.glide.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry geometry -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf -com.xw.repo.bubbleseekbar.R$style: int Base_AlertDialog_AppCompat -androidx.appcompat.R$style: int TextAppearance_AppCompat_Subhead -wangdaye.com.geometricweather.R$id: int item_about_translator_title -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getSupportedFeatures_0 -com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner -com.amap.api.fence.DistrictItem: android.os.Parcelable$Creator getCreator() -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_38 -androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.FragmentActivity) -james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton -androidx.vectordrawable.R$id: int accessibility_custom_action_4 -com.google.android.material.R$styleable: int DrawerArrowToggle_arrowHeadLength -com.turingtechnologies.materialscrollbar.R$attr: int expanded -wangdaye.com.geometricweather.R$styleable: int Toolbar_popupTheme -okio.RealBufferedSource: long readLong() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onKeyguardShowing(boolean) -com.xw.repo.bubbleseekbar.R$integer: int config_tooltipAnimTime -androidx.preference.R$attr: int shouldDisableView -com.google.android.material.button.MaterialButton: void setCornerRadius(int) -james.adaptiveicon.R$drawable: int abc_list_pressed_holo_light -james.adaptiveicon.R$styleable: int AppCompatTheme_actionModePasteDrawable -com.turingtechnologies.materialscrollbar.R$color: int accent_material_light -android.didikee.donate.R$dimen: int abc_switch_padding -wangdaye.com.geometricweather.R$id: int dialog_location_help_providerTitle -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_deriveConstraintsFrom -okhttp3.Cache$Entry: okhttp3.Protocol protocol -cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_MIGRATE_SETTINGS -androidx.recyclerview.widget.RecyclerView: int getMaxFlingVelocity() -wangdaye.com.geometricweather.R$id: int app_bar -wangdaye.com.geometricweather.R$id: int mtrl_picker_title_text -com.baidu.location.e.l$b: com.baidu.location.e.l$b d -androidx.constraintlayout.widget.R$styleable: int AlertDialog_singleChoiceItemLayout -com.google.android.gms.common.data.DataHolder: android.os.Parcelable$Creator CREATOR -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetTop -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void disposeInner() -org.greenrobot.greendao.AbstractDao: boolean hasKey(java.lang.Object) -cyanogenmod.providers.CMSettings$System: java.lang.String APP_SWITCH_WAKE_SCREEN -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeightSmall -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_5 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_wrapMode -com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow -wangdaye.com.geometricweather.R$drawable: int notif_temp_136 -androidx.swiperefreshlayout.R$styleable: int GradientColorItem_android_color -androidx.lifecycle.Lifecycling: java.util.Map sCallbackCache -androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type UNRESTRICTED -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgressColor(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature -com.github.rahatarmanahmed.cpv.R: R() -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void cancelSources() -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_material_dark -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Title -com.google.android.material.button.MaterialButton: void setStrokeWidth(int) -cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: IThemeProcessingListener$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.R$styleable: int[] ConstraintLayout_placeholder -androidx.preference.R$styleable: int AppCompatTheme_dividerVertical -cyanogenmod.app.Profile$Type -com.google.android.material.R$attr: int switchStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_44 -androidx.coordinatorlayout.R$id: int action_image -io.reactivex.internal.disposables.DisposableHelper: boolean dispose(java.util.concurrent.atomic.AtomicReference) -com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.Typeface getExpandedTitleTypeface() -okhttp3.RequestBody$1: okhttp3.MediaType contentType() -cyanogenmod.profiles.StreamSettings$1: cyanogenmod.profiles.StreamSettings[] newArray(int) -com.google.android.material.R$styleable: int Layout_layout_editor_absoluteY -androidx.constraintlayout.widget.R$attr: int listMenuViewStyle -retrofit2.ParameterHandler$Field: boolean encoded -com.google.android.material.R$styleable: int TextInputLayout_hintAnimationEnabled -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitation() -androidx.appcompat.widget.SwitchCompat: android.graphics.drawable.Drawable getThumbDrawable() -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -androidx.preference.R$id: int parentPanel -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_23 -wangdaye.com.geometricweather.R$attr: int colorOnPrimary -androidx.appcompat.widget.ActionBarOverlayLayout: void setActionBarVisibilityCallback(androidx.appcompat.widget.ActionBarOverlayLayout$ActionBarVisibilityCallback) -androidx.transition.R$styleable: int FontFamily_fontProviderFetchTimeout -wangdaye.com.geometricweather.R$string: int item_view_role_description -androidx.appcompat.R$style: int Base_V21_Theme_AppCompat -androidx.hilt.R$id: int action_divider -com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context) -com.google.android.material.R$styleable: int AppCompatTheme_checkedTextViewStyle -androidx.appcompat.R$style: int Widget_AppCompat_Light_ListPopupWindow -james.adaptiveicon.R$style: int Base_DialogWindowTitle_AppCompat -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: ObservableWindow$WindowSkipObserver(io.reactivex.Observer,long,long,int) -androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class,androidx.lifecycle.SavedStateHandle) -wangdaye.com.geometricweather.R$id: int off -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: KeyguardExternalViewProviderService$Provider$ProviderImpl$2(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -androidx.appcompat.R$attr: int subtitleTextAppearance -androidx.constraintlayout.widget.R$anim: R$anim() -okhttp3.Handshake -androidx.customview.R$layout: int notification_action -cyanogenmod.weather.WeatherLocation: java.lang.String getPostalCode() -androidx.appcompat.widget.Toolbar -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_18 -wangdaye.com.geometricweather.R$color: int dim_foreground_material_dark -wangdaye.com.geometricweather.R$string: int settings_title_distance_unit -androidx.work.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.turingtechnologies.materialscrollbar.DragScrollBar: DragScrollBar(android.content.Context,android.util.AttributeSet,int) -com.amap.api.fence.GeoFence: com.amap.api.fence.PoiItem getPoiItem() -com.google.android.material.R$styleable: int AppCompatTheme_actionDropDownStyle -wangdaye.com.geometricweather.R$id: int floating -androidx.constraintlayout.widget.R$attr: int actionBarPopupTheme -okio.Sink -wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -androidx.preference.TwoStatePreference -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date updateDate -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric() -wangdaye.com.geometricweather.R$attr: int curveFit -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: CompletableFutureCallAdapterFactory$ResponseCallAdapter(java.lang.reflect.Type) -io.reactivex.internal.util.NotificationLite$ErrorNotification: int hashCode() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dialog -androidx.recyclerview.R$styleable: int FontFamilyFont_fontVariationSettings -james.adaptiveicon.R$dimen: int abc_config_prefDialogWidth -com.google.android.material.textfield.TextInputLayout: void setPrefixText(java.lang.CharSequence) -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotationY -wangdaye.com.geometricweather.R$layout: int abc_action_menu_item_layout -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: java.lang.Object singleItem -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection findHealthyConnection(int,int,int,int,boolean,boolean) -com.amap.api.location.AMapLocation: boolean y -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_RadioButton -cyanogenmod.hardware.CMHardwareManager: java.lang.String getLtoSource() -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_normal_material_dark -cyanogenmod.profiles.ConnectionSettings: java.lang.String EXTRA_SUB_ID -wangdaye.com.geometricweather.R$drawable: int btn_radio_on_to_off_mtrl_animation -com.google.android.material.R$attr: int textAppearanceListItem -com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context,android.util.AttributeSet) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -wangdaye.com.geometricweather.R$drawable: int widget_text -com.google.android.gms.location.zzbe: android.os.Parcelable$Creator CREATOR -androidx.constraintlayout.widget.R$layout: int notification_template_part_chronometer -com.google.android.material.R$attr: int listChoiceIndicatorMultipleAnimated -com.google.android.material.R$styleable: int MockView_mock_showLabel -androidx.preference.R$styleable: int Toolbar_contentInsetRight -com.tencent.bugly.crashreport.crash.c: void d() -androidx.preference.R$id: int search_button -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_top -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_toId -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showColorShades -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ZEN_ALLOW_LIGHTS_VALIDATOR -androidx.loader.R$attr: int fontProviderFetchTimeout -wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.WeatherIconControlView: WeatherIconControlView(android.content.Context,android.util.AttributeSet,int) -okhttp3.Challenge: java.lang.String scheme() -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerX -com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabBar -androidx.constraintlayout.widget.R$dimen: int notification_right_icon_size -androidx.appcompat.widget.FitWindowsFrameLayout: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) -com.google.android.gms.common.R$integer -wangdaye.com.geometricweather.R$string: int abc_activitychooserview_choose_application -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Line2 -com.xw.repo.bubbleseekbar.R$style: int AlertDialog_AppCompat_Light -com.google.android.material.R$attr: int buttonGravity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean getYesterday() -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String temperature -com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_focused -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_middle_mtrl_dark -wangdaye.com.geometricweather.R$attr: int haloColor -androidx.lifecycle.SavedStateViewModelFactory -wangdaye.com.geometricweather.R$attr: int bsb_track_size -androidx.constraintlayout.widget.R$attr: int motionInterpolator -wangdaye.com.geometricweather.R$string: int settings_title_permanent_service -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onTimeout(long) -androidx.legacy.coreutils.R$id: int action_image -com.google.android.gms.common.api.ApiException: com.google.android.gms.common.api.Status getStatus() -com.google.android.material.bottomnavigation.BottomNavigationItemView -androidx.constraintlayout.utils.widget.ImageFilterButton: void setRoundPercent(float) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_69 -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder cache(okhttp3.Cache) -wangdaye.com.geometricweather.R$attr: int switchPreferenceStyle -wangdaye.com.geometricweather.R$styleable: int MaterialButton_shapeAppearance -androidx.constraintlayout.widget.R$styleable: int[] Variant -okhttp3.internal.http1.Http1Codec$AbstractSource: Http1Codec$AbstractSource(okhttp3.internal.http1.Http1Codec) -androidx.core.R$style -com.amap.api.location.CoordinateConverter$CoordType -okio.Buffer: long indexOf(byte,long,long) -okhttp3.internal.tls.BasicCertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) -androidx.viewpager2.R$integer -com.google.android.gms.location.zzbe -androidx.fragment.R$id: int accessibility_custom_action_29 -okio.GzipSink: okio.DeflaterSink deflaterSink -org.greenrobot.greendao.AbstractDaoSession: java.lang.Object callInTxNoException(java.util.concurrent.Callable) -retrofit2.http.FormUrlEncoded -okhttp3.internal.http2.Http2Connection$6: okhttp3.internal.http2.Http2Connection this$0 -okhttp3.Headers: int hashCode() -wangdaye.com.geometricweather.R$drawable: int ic_water -androidx.vectordrawable.R$styleable: int GradientColor_android_endX -androidx.preference.R$styleable: int PopupWindow_overlapAnchor -com.google.android.material.R$styleable: int MaterialCalendar_android_windowFullscreen -okhttp3.internal.http2.Http2Connection: boolean client -androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontWeight -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dark -com.google.android.material.R$style: int Theme_MaterialComponents_BottomSheetDialog -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Subhead -com.google.android.gms.base.R$string -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String unitId -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Medium -com.google.android.material.R$attr: int suffixTextColor -androidx.preference.R$attr: int fastScrollEnabled -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver otherObserver -com.google.android.material.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -wangdaye.com.geometricweather.R$string: int wind_3 -com.google.android.gms.location.LocationResult -wangdaye.com.geometricweather.R$id: int textEnd -androidx.hilt.R$id: int accessibility_custom_action_25 -okhttp3.EventListener: void secureConnectStart(okhttp3.Call) -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer ragweedIndex -androidx.constraintlayout.widget.R$color: int primary_material_dark -com.tencent.bugly.crashreport.common.info.a: java.lang.String r() -retrofit2.Response: java.lang.String message() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul6H -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Small -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ListView_DropDown -okhttp3.internal.connection.StreamAllocation: int refusedStreamCount -androidx.constraintlayout.widget.R$styleable: int Transition_constraintSetStart -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: long time -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String windspeed -com.google.android.material.R$styleable: int Chip_showMotionSpec -com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_android_entries -androidx.constraintlayout.widget.R$attr: int subtitleTextStyle -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_FixedSize -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: CallExecuteObservable$CallDisposable(retrofit2.Call) -androidx.legacy.coreutils.R$styleable: int GradientColor_android_startColor -okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] findMatchingRule(java.lang.String[]) -androidx.preference.R$drawable: int abc_ic_menu_share_mtrl_alpha -androidx.loader.content.Loader: void unregisterOnLoadCanceledListener(androidx.loader.content.Loader$OnLoadCanceledListener) -com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipStrokeColor() -com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_overflow_material -okhttp3.internal.http2.Http2Reader$Handler: void goAway(int,okhttp3.internal.http2.ErrorCode,okio.ByteString) -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onComplete() -james.adaptiveicon.R$attr: int hideOnContentScroll -com.turingtechnologies.materialscrollbar.R$attr: int panelBackground -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse -androidx.appcompat.R$attr: int navigationMode -cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(android.os.Parcel) -wangdaye.com.geometricweather.R$string: int rain -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind: java.lang.String direct -androidx.legacy.coreutils.R$drawable: R$drawable() -android.didikee.donate.R$style: int TextAppearance_AppCompat_Body1 -wangdaye.com.geometricweather.R$string: int settings_title_weather_source -com.xw.repo.bubbleseekbar.R$attr: int buttonTint -wangdaye.com.geometricweather.R$id: int switchWidget -james.adaptiveicon.R$styleable: int AppCompatTextView_fontVariationSettings -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float icePrecipitationProbability -androidx.dynamicanimation.R$styleable: int GradientColor_android_endY -james.adaptiveicon.R$string: int abc_search_hint +com.baidu.location.indoor.mapversion.c.a$d: java.lang.String b +wangdaye.com.geometricweather.R$styleable: int ShapeableImageView_shapeAppearanceOverlay +wangdaye.com.geometricweather.R$layout: int material_clock_display_divider +android.didikee.donate.R$drawable: int notification_tile_bg +retrofit2.ParameterHandler$PartMap: java.lang.reflect.Method method +cyanogenmod.app.IPartnerInterface$Stub$Proxy: java.lang.String getCurrentHotwordPackageName() +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.util.Date date +okio.BufferedSource: short readShortLe() +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: double lat +com.google.android.material.R$attr: int textStartPadding +androidx.viewpager2.R$id: int dialog_button +androidx.constraintlayout.widget.R$layout: int notification_action_tombstone +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +cyanogenmod.weather.WeatherLocation: void writeToParcel(android.os.Parcel,int) +com.turingtechnologies.materialscrollbar.R$color: int design_default_color_primary_dark +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionBarLayout +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorTextAppearance +com.google.android.material.R$styleable: int ProgressIndicator_indicatorSize +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: int UnitType +com.google.android.material.R$color: int mtrl_outlined_stroke_color +retrofit2.Retrofit: retrofit2.Converter nextRequestBodyConverter(retrofit2.Converter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[]) +com.google.android.material.R$attr: int scrimVisibleHeightTrigger +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_enabled +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getAqiColor(android.content.Context) +okhttp3.internal.ws.WebSocketWriter$FrameSink: int formatOpcode +com.google.android.material.R$attr: int buttonCompat +cyanogenmod.app.Profile$DozeMode: Profile$DozeMode() +com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_colored +androidx.constraintlayout.widget.R$dimen: int compat_button_inset_horizontal_material +okio.Buffer$UnsafeCursor: Buffer$UnsafeCursor() +com.amap.api.location.CoordinateConverter: com.amap.api.location.DPoint a +com.google.android.material.R$string: int mtrl_exceed_max_badge_number_suffix +wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_min +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +wangdaye.com.geometricweather.R$dimen: int material_clock_display_padding +com.tencent.bugly.proguard.ac: ac() +android.didikee.donate.R$styleable: int AppCompatTheme_spinnerStyle +okhttp3.RequestBody: okhttp3.MediaType contentType() +wangdaye.com.geometricweather.R$id: int grassTitle +com.google.android.material.R$styleable: int Constraint_barrierMargin +com.jaredrummler.android.colorpicker.R$attr: int showAsAction +androidx.appcompat.resources.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float thunderstormPrecipitation +com.google.android.material.R$attr: int layout_constraintLeft_creator +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String suggest +com.tencent.bugly.proguard.y: void a(java.lang.String,java.lang.String,java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int Insets_paddingRightSystemWindowInsets +com.tencent.bugly.proguard.ak: void a(com.tencent.bugly.proguard.i) +okhttp3.internal.http2.Http2Connection$3: Http2Connection$3(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_light +io.reactivex.Observable: io.reactivex.Observable switchMapMaybe(io.reactivex.functions.Function) +androidx.appcompat.R$style: int Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_pivotX +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_RESULT_VALUE +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +wangdaye.com.geometricweather.R$attr: int layout_goneMarginTop +com.google.android.material.R$id: int navigation_header_container +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void collapseNotificationPanel() +androidx.vectordrawable.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$layout: int dialog_weather_hourly +wangdaye.com.geometricweather.R$anim: int fragment_open_enter +okio.RealBufferedSource: boolean rangeEquals(long,okio.ByteString,int,int) +androidx.appcompat.R$string: int abc_toolbar_collapse_description +androidx.appcompat.R$attr: int overlapAnchor +wangdaye.com.geometricweather.R$string: int feedback_live_wallpaper_weather_kind +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_disabled_elevation +androidx.preference.R$styleable: int ActionBar_backgroundStacked +wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndTitle +wangdaye.com.geometricweather.common.basic.models.weather.Base: Base(java.lang.String,long,java.util.Date,long,java.util.Date,long) +cyanogenmod.externalviews.ExternalViewProviderService: cyanogenmod.externalviews.ExternalViewProviderService$Provider createExternalView(android.os.Bundle) +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop +androidx.hilt.lifecycle.R$id: int fragment_container_view_tag +com.google.android.material.R$styleable: int NavigationView_itemShapeInsetTop +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onError(java.lang.Throwable) +okio.Buffer$UnsafeCursor: okio.Buffer buffer +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: boolean access$502(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure: AccuCurrentResult$Pressure() +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getSoundMode() +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemHeight +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_FloatingActionButton +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode DEFAULT +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicInteger windows +androidx.preference.R$drawable: int abc_text_select_handle_middle_mtrl_light +okhttp3.internal.platform.AndroidPlatform: java.lang.Object getStackTraceForCloseable(java.lang.String) +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$color: int primary_text_default_material_light +cyanogenmod.providers.CMSettings$Secure: boolean putFloat(android.content.ContentResolver,java.lang.String,float) +wangdaye.com.geometricweather.R$layout: int cpv_color_item_circle +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +wangdaye.com.geometricweather.R$attr: int ratingBarStyle +wangdaye.com.geometricweather.R$string: int feedback_add_location_manually +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_navigation_bottom_padding +androidx.work.R$layout +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: ObservableConcatWithCompletable$ConcatWithObserver(io.reactivex.Observer,io.reactivex.CompletableSource) +com.xw.repo.bubbleseekbar.R$attr: int windowFixedWidthMinor +james.adaptiveicon.R$styleable: int MenuView_preserveIconSpacing +com.turingtechnologies.materialscrollbar.R$dimen: int abc_alert_dialog_button_dimen +com.google.android.material.R$styleable: int AppCompatTheme_toolbarStyle +james.adaptiveicon.R$color: int secondary_text_disabled_material_dark +cyanogenmod.app.PartnerInterface: java.lang.String TAG +androidx.constraintlayout.widget.R$attr: int contentInsetStartWithNavigation +com.google.gson.stream.JsonReader: long MIN_INCOMPLETE_INTEGER +com.bumptech.glide.Priority: com.bumptech.glide.Priority IMMEDIATE +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +okhttp3.RealCall$AsyncCall: boolean $assertionsDisabled +wangdaye.com.geometricweather.R$styleable: int ChipGroup_chipSpacing +com.google.android.gms.base.R$string: int common_google_play_services_update_title +wangdaye.com.geometricweather.R$string: int key_unit +okhttp3.HttpUrl: int hashCode() +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void dispose() +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_4G +okio.ByteString: int indexOf(okio.ByteString) +okio.AsyncTimeout$2: java.lang.String toString() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizePresetSizes +androidx.fragment.R$id: int accessibility_custom_action_18 +androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar_Small +wangdaye.com.geometricweather.R$attr: int tickMarkTint +androidx.preference.R$style: int Widget_AppCompat_ActionButton_CloseMode +androidx.appcompat.widget.SwitchCompat: android.graphics.PorterDuff$Mode getThumbTintMode() +com.google.android.material.R$string: int item_view_role_description +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +androidx.preference.R$attr: int showText +cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String access$200() +com.xw.repo.bubbleseekbar.R$attr: int track androidx.constraintlayout.widget.R$attr: int layout_goneMarginEnd -okhttp3.internal.http.HttpMethod -androidx.preference.R$string: int abc_capital_on -wangdaye.com.geometricweather.R$id: int drawerLayout -androidx.appcompat.R$style: int TextAppearance_AppCompat_Headline -com.google.android.material.R$styleable: int TextInputLayout_errorIconTintMode -wangdaye.com.geometricweather.R$drawable: int notif_temp_26 -com.bumptech.glide.R$styleable: int FontFamily_fontProviderQuery -com.turingtechnologies.materialscrollbar.R$layout: int design_layout_tab_text -wangdaye.com.geometricweather.R$id: int activity_widget_config_hideSubtitleContainer -androidx.lifecycle.CompositeGeneratedAdaptersObserver: androidx.lifecycle.GeneratedAdapter[] mGeneratedAdapters -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconTint -com.bumptech.glide.R$attr: int font -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: int hasRain -okio.RealBufferedSink: okio.BufferedSink emit() -okhttp3.RequestBody$2: okhttp3.MediaType val$contentType -androidx.appcompat.resources.R$attr: int fontVariationSettings -androidx.preference.R$styleable: int SearchView_goIcon -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Small -androidx.transition.R$styleable: int GradientColor_android_type -androidx.hilt.R$styleable: int FontFamilyFont_android_fontVariationSettings -androidx.appcompat.R$styleable: int ActionBar_divider -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationY -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.List getDefense() -androidx.lifecycle.extensions.R$dimen: int notification_action_icon_size -androidx.work.R$dimen: int compat_button_padding_vertical_material -androidx.legacy.coreutils.R$layout: int notification_template_part_chronometer -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Colored -cyanogenmod.weather.WeatherInfo: java.lang.String mKey -wangdaye.com.geometricweather.R$style: int Preference_SwitchPreference -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void dispose() -androidx.preference.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context) -cyanogenmod.app.CustomTile: int PSEUDO_GRID_ITEM_MAX_COUNT -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Toolbar -cyanogenmod.weather.WeatherInfo: double access$1302(cyanogenmod.weather.WeatherInfo,double) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchKeyEvent(android.view.KeyEvent) -okio.RealBufferedSource: long readAll(okio.Sink) -org.greenrobot.greendao.AbstractDao: void updateKeyAfterInsertAndAttach(java.lang.Object,long,boolean) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void open(java.lang.Object) -androidx.appcompat.resources.R$drawable: int notification_bg_normal -com.google.android.material.R$string: int mtrl_picker_date_header_title -retrofit2.http.PUT: java.lang.String value() -androidx.appcompat.R$attr: int alertDialogButtonGroupStyle -com.xw.repo.bubbleseekbar.R$style: int Animation_AppCompat_Tooltip -androidx.hilt.lifecycle.R$id: int tag_transition_group -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_18 -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_body_2_material -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$100() -io.reactivex.Observable: io.reactivex.Observable mergeArrayDelayError(io.reactivex.ObservableSource[]) -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: void onResponse(retrofit2.Call,retrofit2.Response) -wangdaye.com.geometricweather.R$attr: int itemShapeInsetEnd -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textSize -wangdaye.com.geometricweather.main.layouts.TrendHorizontalLinearLayoutManager -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_height -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_duration -io.reactivex.internal.disposables.SequentialDisposable: SequentialDisposable(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setWeatherSource(java.lang.String) -cyanogenmod.app.ProfileGroup: void applyOverridesToNotification(android.app.Notification) -okio.Okio$2: Okio$2(okio.Timeout,java.io.InputStream) -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State calculateTargetState(androidx.lifecycle.LifecycleObserver) -com.turingtechnologies.materialscrollbar.R$attr: int contentPadding -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPubTime() -androidx.lifecycle.ReportFragment$ActivityInitializationListener -androidx.cardview.R$styleable: int CardView_android_minWidth -com.google.android.material.textfield.TextInputLayout: void setSuffixTextAppearance(int) -androidx.legacy.coreutils.R$string -wangdaye.com.geometricweather.R$attr: int telltales_tailColor -okhttp3.Cache$CacheRequestImpl: okio.Sink body -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeTotalPrecipitationDuration() -wangdaye.com.geometricweather.db.entities.HistoryEntity: long time -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.ObservableSource source -wangdaye.com.geometricweather.R$id: int dialog_location_help_title -com.tencent.bugly.proguard.aq: void a(com.tencent.bugly.proguard.i) -com.google.android.material.R$id: int save_non_transition_alpha -com.google.android.material.R$styleable: int ConstraintSet_android_rotationX -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_shrinkMotionSpec -com.google.android.material.R$styleable: int AppCompatTextView_drawableEndCompat -androidx.coordinatorlayout.widget.CoordinatorLayout: void setOnHierarchyChangeListener(android.view.ViewGroup$OnHierarchyChangeListener) -com.jaredrummler.android.colorpicker.R$color: int notification_action_color_filter -com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.StrategyBean d() -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox -wangdaye.com.geometricweather.R$styleable: int[] ConstraintLayout_Layout -com.tencent.bugly.proguard.i: float[] h(int,boolean) -cyanogenmod.weather.RequestInfo$1: java.lang.Object createFromParcel(android.os.Parcel) -com.google.android.material.R$styleable: int Chip_android_checkable -com.xw.repo.bubbleseekbar.R$attr: int titleMarginTop -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert -cyanogenmod.app.CustomTile$1 -com.turingtechnologies.materialscrollbar.R$attr: int buttonIconDimen -wangdaye.com.geometricweather.R$layout: int abc_action_bar_title_item -androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_elevation -cyanogenmod.app.CMStatusBarManager: void publishTile(int,cyanogenmod.app.CustomTile) -com.jaredrummler.android.colorpicker.R$attr: int subtitle -com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_900 -androidx.vectordrawable.R$dimen: int notification_top_pad_large_text -androidx.preference.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation -androidx.appcompat.R$attr: int buttonBarButtonStyle -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Large_Inverse -androidx.appcompat.R$style: int TextAppearance_AppCompat_Subhead_Inverse -okio.Buffer: Buffer() -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: ICMTelephonyManager$Stub$Proxy(android.os.IBinder) -com.jaredrummler.android.colorpicker.R$attr: int tickMark -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -wangdaye.com.geometricweather.R$attr: int allowDividerAfterLastItem -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_icon_size -com.turingtechnologies.materialscrollbar.R$string: int abc_action_menu_overflow_description -okhttp3.ConnectionPool: java.lang.Runnable cleanupRunnable -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -io.reactivex.disposables.RunnableDisposable: RunnableDisposable(java.lang.Runnable) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListMenuView -retrofit2.ParameterHandler$Field -com.google.android.material.R$attr: int motionProgress -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabStyle -wangdaye.com.geometricweather.R$array: int notification_style_values -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float pm10 -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: java.util.concurrent.atomic.AtomicInteger active -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconTint -cyanogenmod.app.Profile: java.util.UUID[] getSecondaryUuids() -com.google.android.material.R$color: int mtrl_btn_text_btn_ripple_color -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_isThemeBeingProcessed -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderCancelButton -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: boolean isDisposed() -android.didikee.donate.R$attr: int drawerArrowStyle -androidx.transition.R$id: int action_text -okhttp3.Credentials: java.lang.String basic(java.lang.String,java.lang.String,java.nio.charset.Charset) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean active -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -wangdaye.com.geometricweather.R$layout: int widget_day_mini -cyanogenmod.app.IProfileManager: boolean setActiveProfileByName(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int weather_cloudy -androidx.preference.R$color: int dim_foreground_disabled_material_light -androidx.preference.R$drawable: int notification_tile_bg -com.tencent.bugly.crashreport.common.info.a: java.lang.String L() -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_keyline -androidx.loader.R$layout -com.google.android.material.R$id: int multiply -androidx.appcompat.resources.R$styleable: int ColorStateListItem_alpha -com.google.android.material.R$color: int design_dark_default_color_primary -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginStart -androidx.fragment.R$drawable: int notification_tile_bg -com.tencent.bugly.crashreport.common.info.a: java.lang.String X -wangdaye.com.geometricweather.common.basic.models.weather.WindDegree -io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: long serialVersionUID -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: int type -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableTop -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Inverse -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display1 -okhttp3.FormBody: long contentLength() -wangdaye.com.geometricweather.R$attr: int tabPadding -wangdaye.com.geometricweather.R$attr: int navigationContentDescription -androidx.work.R$dimen: int notification_small_icon_size_as_large -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date moonriseTime -android.didikee.donate.R$styleable: int AppCompatTheme_dialogTheme -okhttp3.internal.ws.RealWebSocket: boolean send(okio.ByteString) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button -cyanogenmod.profiles.AirplaneModeSettings$BooleanState: int STATE_DISALED -androidx.appcompat.resources.R$drawable: int notification_bg_low_pressed -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_constantSize -com.google.android.material.R$id: int row_index_key -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: io.reactivex.Observer downstream -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_disabled_holo_light -wangdaye.com.geometricweather.R$styleable: int[] ScrimInsetsFrameLayout -com.google.android.material.R$style: int Theme_AppCompat -com.xw.repo.bubbleseekbar.R$attr: int panelMenuListWidth -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okhttp3.MediaType contentType() -okhttp3.Address: javax.net.ssl.HostnameVerifier hostnameVerifier -androidx.hilt.R$drawable -com.jaredrummler.android.colorpicker.R$id: int message -com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean point +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastHorizontalBias +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder password(java.lang.String) +androidx.constraintlayout.widget.R$id: int cos +androidx.core.R$id: int line1 +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date +android.support.v4.os.IResultReceiver$Default: IResultReceiver$Default() +wangdaye.com.geometricweather.R$attr: int moveWhenScrollAtTop +com.google.android.material.R$styleable: int Constraint_drawPath +okhttp3.Request$Builder: okhttp3.Request$Builder headers(okhttp3.Headers) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_13 +wangdaye.com.geometricweather.R$styleable: int ActionBar_subtitle +androidx.activity.R$styleable: int GradientColor_android_endY +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerId +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: io.reactivex.functions.Function zipper +com.jaredrummler.android.colorpicker.R$drawable: int notify_panel_notification_icon_bg +com.google.android.material.R$dimen: int material_filled_edittext_font_2_0_padding_bottom +com.tencent.bugly.proguard.y: com.tencent.bugly.proguard.y$a a(com.tencent.bugly.proguard.y$a) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$attr: int actionProviderClass +com.google.android.material.circularreveal.CircularRevealGridLayout +com.amap.api.location.AMapLocation: java.lang.String e +com.xw.repo.bubbleseekbar.R$color: int abc_background_cache_hint_selector_material_light +okhttp3.internal.http2.Http2Codec: java.lang.String TE com.google.android.material.R$attr: int layout_constraintHorizontal_weight -okio.ByteString: int compareTo(okio.ByteString) -okhttp3.MediaType: java.lang.String QUOTED -okhttp3.Headers -com.turingtechnologies.materialscrollbar.R$attr: int msb_handleOffColor -androidx.preference.R$attr: int textColorAlertDialogListItem -io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Runnable getWrappedRunnable() -okhttp3.internal.http2.Http2Stream$FramingSource: okio.Buffer readBuffer -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickTintList() -io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper DISPOSED -com.google.android.material.R$layout: int design_layout_tab_icon -androidx.preference.R$bool -io.reactivex.internal.disposables.SequentialDisposable -androidx.appcompat.R$attr: int switchMinWidth -wangdaye.com.geometricweather.db.entities.HistoryEntity: int daytimeTemperature -okio.ForwardingTimeout: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getUnitId() -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.internal.disposables.ArrayCompositeDisposable resources -androidx.preference.R$styleable: int ActionBar_progressBarStyle -io.reactivex.observers.TestObserver$EmptyObserver -com.tencent.bugly.crashreport.CrashReport: void closeCrashReport() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onComplete() -androidx.hilt.R$style: int TextAppearance_Compat_Notification_Info -com.google.android.material.slider.RangeSlider: void setThumbStrokeColorResource(int) -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_UV_INDEX -com.turingtechnologies.materialscrollbar.R$attr: int fastScrollVerticalThumbDrawable -androidx.recyclerview.widget.StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem -com.turingtechnologies.materialscrollbar.R$styleable: int[] Snackbar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String locationKey -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRainPrecipitationProbability() -android.didikee.donate.R$attr: int switchPadding +james.adaptiveicon.R$id: int text +com.google.android.material.R$attr: int statusBarBackground +com.google.gson.stream.JsonWriter: void flush() +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_numericModifiers +com.turingtechnologies.materialscrollbar.R$attr: int tooltipText +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void onFailure(retrofit2.Call,java.lang.Throwable) +androidx.transition.R$styleable: int FontFamilyFont_android_fontStyle +androidx.lifecycle.LiveData$AlwaysActiveObserver: LiveData$AlwaysActiveObserver(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) +com.turingtechnologies.materialscrollbar.R$id: int snackbar_text +com.amap.api.location.AMapLocation: int s +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_spinBars +com.google.android.material.R$attr: int selectionRequired +androidx.appcompat.widget.SwitchCompat: android.graphics.PorterDuff$Mode getTrackTintMode() +androidx.appcompat.R$layout: int abc_alert_dialog_title_material +com.xw.repo.bubbleseekbar.R$layout: int abc_select_dialog_material +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_closeIcon +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonStyleSmall +com.jaredrummler.android.colorpicker.R$styleable: int[] GradientColor +cyanogenmod.app.Profile: Profile(java.lang.String,int,java.util.UUID) +com.google.android.material.R$styleable: int GradientColor_android_tileMode +androidx.work.R$id: int tag_unhandled_key_listeners +com.google.android.material.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +android.didikee.donate.R$drawable: int abc_ic_menu_share_mtrl_alpha +okhttp3.OkHttpClient$1: okhttp3.internal.connection.RealConnection get(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256 +com.turingtechnologies.materialscrollbar.R$id: int scrollable +android.didikee.donate.R$layout: int abc_list_menu_item_icon +james.adaptiveicon.R$styleable: int ActionBar_customNavigationLayout +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_width_material +com.google.android.material.button.MaterialButtonToggleGroup: java.lang.CharSequence getAccessibilityClassName() +androidx.core.widget.NestedScrollView: void setSmoothScrollingEnabled(boolean) +com.google.android.material.R$attr: int motionInterpolator +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +androidx.dynamicanimation.R$styleable: int GradientColor_android_startX +io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.Observer) +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_body_1_material +androidx.constraintlayout.widget.R$attr: int alertDialogStyle +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setAqiIndex(java.lang.Integer) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constrainedHeight +androidx.constraintlayout.widget.R$styleable: int Toolbar_android_gravity +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColorHint +com.jaredrummler.android.colorpicker.R$id: int expanded_menu +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter this$0 +com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Linear +androidx.customview.R$color: int secondary_text_default_material_light +androidx.appcompat.R$style: int Base_V26_Theme_AppCompat_Light +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float NitrogenMonoxide +wangdaye.com.geometricweather.R$integer: int cpv_default_anim_sync_duration +com.xw.repo.bubbleseekbar.R$attr: int spinBars +com.google.android.gms.base.R$styleable: int LoadingImageView_imageAspectRatio +okhttp3.Response: okhttp3.Handshake handshake +wangdaye.com.geometricweather.R$styleable: int SearchView_goIcon +androidx.work.R$dimen: int notification_small_icon_background_padding +androidx.constraintlayout.widget.R$drawable: int abc_btn_colored_material +wangdaye.com.geometricweather.R$attr: int unchecked_background_color +wangdaye.com.geometricweather.R$id: int split_action_bar +androidx.preference.R$id: int search_mag_icon +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String DAY +io.reactivex.Observable: io.reactivex.Observable timestamp(io.reactivex.Scheduler) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +android.didikee.donate.R$dimen: int abc_disabled_alpha_material_light +androidx.recyclerview.R$integer: int status_bar_notification_info_maxnum +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_clear_material +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +com.google.android.material.R$dimen: int design_bottom_navigation_shadow_height +android.didikee.donate.R$color: int background_floating_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int[] StateListDrawableItem +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Caption +cyanogenmod.app.Profile: void addProfileGroup(cyanogenmod.app.ProfileGroup) +retrofit2.DefaultCallAdapterFactory$1: java.lang.reflect.Type responseType() +androidx.constraintlayout.widget.R$attr: int fontProviderFetchTimeout +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$LayoutManager getLayoutManager() +androidx.constraintlayout.widget.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +com.google.android.material.R$style: int Widget_MaterialComponents_Snackbar_TextView +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onSubscribe(org.reactivestreams.Subscription) +com.tencent.bugly.a: void onDbDowngrade(android.database.sqlite.SQLiteDatabase,int,int) +com.google.android.material.R$styleable: int[] AnimatedStateListDrawableCompat +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.AlertEntityDao alertEntityDao +wangdaye.com.geometricweather.R$id: int activity_widget_config_container +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: MfForecastV2Result$ForecastProperties$ForecastV2() +androidx.preference.R$attr: int panelMenuListWidth +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWeatherText() +okhttp3.Response: okhttp3.ResponseBody body() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: double Value +wangdaye.com.geometricweather.R$string: int material_hour_suffix +cyanogenmod.weather.WeatherLocation: java.lang.String mKey +android.didikee.donate.R$id: int action_text +com.turingtechnologies.materialscrollbar.R$id: int listMode +androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_checked +okio.Buffer: java.lang.String readString(java.nio.charset.Charset) +com.google.android.gms.internal.location.zzbc: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$attr: int layout_constraintTop_toTopOf +androidx.preference.R$dimen: int abc_dialog_list_padding_top_no_title +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.fuseable.SimpleQueue queue +androidx.constraintlayout.widget.R$attr: int layout_goneMarginStart +wangdaye.com.geometricweather.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_small_component +com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int KeyAttribute_android_alpha +okio.Buffer: okio.BufferedSink writeIntLe(int) +androidx.core.R$styleable: int FontFamilyFont_fontStyle +androidx.swiperefreshlayout.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_title_baseline_to_top_fullscreen +com.google.android.material.R$dimen: int mtrl_calendar_month_horizontal_padding +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_11 +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_unregisterThemeProcessingListener +android.didikee.donate.R$dimen: int abc_text_size_large_material +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void innerComplete() +com.google.android.material.R$style: int Theme_AppCompat_Dialog_MinWidth +cyanogenmod.weather.WeatherLocation: java.lang.String mPostal +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: java.util.List brands +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeight +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_3 +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode[] $VALUES +androidx.vectordrawable.R$styleable +androidx.appcompat.resources.R$styleable: int GradientColorItem_android_color +com.google.android.material.R$color: int design_default_color_primary +android.didikee.donate.R$styleable: int TextAppearance_android_shadowRadius +wangdaye.com.geometricweather.R$drawable: int widget_clock_day_horizontal +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX +com.amap.api.location.AMapLocation: java.lang.String e(com.amap.api.location.AMapLocation,java.lang.String) +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Body_Text +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: android.os.IBinder asBinder() +com.jaredrummler.android.colorpicker.R$drawable: int abc_spinner_textfield_background_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: void setUnit(java.lang.String) +androidx.preference.R$styleable: int PreferenceImageView_android_maxWidth +androidx.recyclerview.R$styleable: int GradientColor_android_startX +androidx.appcompat.R$id: int accessibility_custom_action_22 +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String _ID +androidx.appcompat.R$drawable: int abc_btn_radio_material_anim +androidx.constraintlayout.widget.R$styleable: int[] State +okhttp3.internal.http2.Settings: int INITIAL_WINDOW_SIZE +androidx.lifecycle.ComputableLiveData: java.lang.Object compute() +androidx.appcompat.widget.SearchView: androidx.cursoradapter.widget.CursorAdapter getSuggestionsAdapter() +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_BottomSheet +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom +wangdaye.com.geometricweather.R$style: int Animation_AppCompat_Dialog +com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIconTint +okhttp3.Address: java.util.List connectionSpecs() +okhttp3.internal.Util: boolean isAndroidGetsocknameError(java.lang.AssertionError) +com.tencent.bugly.crashreport.crash.h5.b: java.lang.String a() +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionBar_TabText +androidx.drawerlayout.widget.DrawerLayout: void setDrawerListener(androidx.drawerlayout.widget.DrawerLayout$DrawerListener) +wangdaye.com.geometricweather.R$array: int week_widget_style_values +android.didikee.donate.R$styleable: int SearchView_queryBackground +james.adaptiveicon.R$styleable: int DrawerArrowToggle_arrowHeadLength +wangdaye.com.geometricweather.R$id: int save_overlay_view +com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Light +com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_top +wangdaye.com.geometricweather.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +com.google.android.material.R$styleable: int MaterialButton_iconSize +androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_light +wangdaye.com.geometricweather.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +wangdaye.com.geometricweather.R$id: int widget_day_time +okio.AsyncTimeout$1: okio.Timeout timeout() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintRight_creator +cyanogenmod.os.Build: java.lang.String UNKNOWN +okio.ByteString: okio.ByteString encodeUtf8(java.lang.String) +androidx.activity.R$style +androidx.preference.R$id: int tabMode +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource source +com.google.android.material.slider.BaseSlider: void setTickVisible(boolean) +androidx.constraintlayout.helper.widget.Flow: void setOrientation(int) +cyanogenmod.providers.CMSettings$DelimitedListValidator: boolean validate(java.lang.String) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.util.AtomicThrowable errors +androidx.appcompat.R$styleable: int StateListDrawable_android_constantSize +androidx.customview.R$id: int notification_main_column +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: ObservableSampleTimed$SampleTimedEmitLast(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.fragment.R$styleable: int[] GradientColorItem +androidx.constraintlayout.widget.R$color: int dim_foreground_material_light +androidx.constraintlayout.widget.R$string: int abc_action_bar_up_description +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalGap +androidx.appcompat.view.menu.CascadingMenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_menuCategory +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setUseSessionTickets +io.reactivex.internal.util.VolatileSizeArrayList: boolean retainAll(java.util.Collection) +wangdaye.com.geometricweather.R$color: int design_box_stroke_color +androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: boolean setOther(io.reactivex.disposables.Disposable) +cyanogenmod.os.Concierge: cyanogenmod.os.Concierge$ParcelInfo receiveParcel(android.os.Parcel) +com.tencent.bugly.crashreport.CrashReport: void setAuditEnable(android.content.Context,boolean) +com.amap.api.location.DPoint: DPoint(android.os.Parcel) +com.jaredrummler.android.colorpicker.R$attr: int defaultQueryHint +okhttp3.internal.cache.CacheStrategy$Factory: boolean isFreshnessLifetimeHeuristic() +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +android.didikee.donate.R$styleable: int MenuItem_android_icon +androidx.work.impl.utils.futures.AbstractFuture$Waiter: androidx.work.impl.utils.futures.AbstractFuture$Waiter next +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_size +okhttp3.Dispatcher: void finished(okhttp3.RealCall) +cyanogenmod.providers.CMSettings$Global: float getFloat(android.content.ContentResolver,java.lang.String) +com.google.android.material.R$styleable: int MenuView_android_verticalDivider +com.tencent.bugly.crashreport.common.info.a: void b(int) +androidx.appcompat.R$drawable: int abc_ratingbar_small_material +androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_dialog_btn_min_width +androidx.preference.R$attr: int arrowHeadLength +com.tencent.bugly.proguard.aq: java.lang.String g +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating Heating +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.constraintlayout.widget.R$styleable: int AlertDialog_listItemLayout +com.google.android.material.R$styleable: int[] ForegroundLinearLayout +com.tencent.bugly.crashreport.common.info.a: java.lang.String m() +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) +retrofit2.OptionalConverterFactory: OptionalConverterFactory() +wangdaye.com.geometricweather.R$id: int transition_current_scene +com.google.android.material.R$string: int mtrl_picker_range_header_only_end_selected +james.adaptiveicon.R$styleable: int AppCompatTheme_windowNoTitle +androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_indicator_material +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean done +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level HEADERS +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button +io.reactivex.exceptions.CompositeException: java.util.List getExceptions() +com.jaredrummler.android.colorpicker.R$drawable: int abc_item_background_holo_dark +com.amap.api.fence.GeoFence: int TYPE_ROUND +okhttp3.internal.http1.Http1Codec$ChunkedSink: void write(okio.Buffer,long) +com.tencent.bugly.proguard.o: byte[] a() +wangdaye.com.geometricweather.R$attr: int placeholderText +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_default +com.google.android.material.R$xml: int standalone_badge_offset +androidx.fragment.R$styleable: int FragmentContainerView_android_name +androidx.appcompat.R$attr: int textAppearanceListItemSmall +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +androidx.preference.R$attr: int buttonTint +com.google.android.gms.base.R$string: int common_google_play_services_install_button +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfiles +okhttp3.internal.tls.CertificateChainCleaner +io.reactivex.Observable: io.reactivex.Single count() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchPopulateAccessibilityEvent(android.view.accessibility.AccessibilityEvent) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_12 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_item_background_holo_light +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_search_api_material +androidx.viewpager2.R$id: int italic +androidx.preference.R$attr: int textAppearanceSmallPopupMenu +wangdaye.com.geometricweather.R$attr: int recyclerViewStyle +androidx.core.R$integer: R$integer() +com.google.android.material.R$attr: int title +com.amap.api.location.AMapLocationQualityReport: boolean isWifiAble() +okio.AsyncTimeout$Watchdog: AsyncTimeout$Watchdog() +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getSummary(android.content.Context,java.util.List) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX +cyanogenmod.app.ThemeVersion$ComponentVersion: int getMinVersion() +james.adaptiveicon.R$styleable: int ViewStubCompat_android_layout +com.turingtechnologies.materialscrollbar.R$id: int mtrl_internal_children_alpha_tag +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: ObservableSwitchMap$SwitchMapObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) +okio.GzipSink: boolean closed +cyanogenmod.weather.RequestInfo: int mTempUnit +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: AccuAlertResult$Area$LastAction() +cyanogenmod.weather.WeatherInfo$DayForecast$1 +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_light +com.google.android.material.appbar.AppBarLayout: int getDownNestedScrollRange() +okhttp3.Challenge: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moldIndex +cyanogenmod.externalviews.ExternalView$2: void run() +wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean getFeelsLike() +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_radio_to_on_mtrl_000 +android.didikee.donate.R$styleable: int RecycleListView_paddingTopNoTitle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: double Value +wangdaye.com.geometricweather.R$attr: int entries +com.turingtechnologies.materialscrollbar.R$attr: int layout +androidx.coordinatorlayout.R$attr: int layout_anchor +androidx.constraintlayout.widget.R$styleable: int[] AppCompatTextHelper +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String title +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_light +androidx.swiperefreshlayout.widget.SwipeRefreshLayout +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +androidx.hilt.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$string: int wind_7 +androidx.hilt.R$id: int tag_accessibility_pane_title +cyanogenmod.app.Profile$TriggerState: int ON_DISCONNECT +com.tencent.bugly.crashreport.common.info.b: java.lang.String d() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginLeft +com.amap.api.location.AMapLocation: java.lang.String h(com.amap.api.location.AMapLocation,java.lang.String) +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: java.util.concurrent.TimeUnit unit +cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener: void onAttachedToWindow() +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onNext(java.lang.Object) +com.google.android.material.R$styleable: int Constraint_layout_constraintTop_creator +cyanogenmod.app.ICustomTileListener$Stub$Proxy: ICustomTileListener$Stub$Proxy(android.os.IBinder) +james.adaptiveicon.R$dimen: int notification_large_icon_width +com.google.android.material.R$string: int character_counter_pattern +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState SETUP +james.adaptiveicon.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +com.google.android.material.bottomappbar.BottomAppBar$Behavior: BottomAppBar$Behavior() +android.didikee.donate.R$attr: int showDividers +io.reactivex.Observable: io.reactivex.Observable doOnError(io.reactivex.functions.Consumer) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconTint +io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription valueOf(java.lang.String) +androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +androidx.constraintlayout.widget.R$id: int action_bar_container +com.tencent.bugly.crashreport.CrashReport: void setSessionIntervalMills(long) +com.amap.api.fence.PoiItem: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$styleable: int AppCompatTextView_textLocale +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String name +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstVerticalStyle +com.google.android.material.slider.BaseSlider: float getThumbElevation() +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DarkActionBar +cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_MSIM_PHONE_STATE +com.google.android.material.R$attr: int borderlessButtonStyle +okhttp3.internal.Util: java.lang.String[] intersect(java.util.Comparator,java.lang.String[],java.lang.String[]) +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder shouldCollapsePanel(boolean) +wangdaye.com.geometricweather.R$id: int widget_remote +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: boolean tryOnError(java.lang.Throwable) +okhttp3.internal.cache.DiskLruCache: int valueCount +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +wangdaye.com.geometricweather.common.ui.widgets.DonateImageView: DonateImageView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$attr: int cornerFamilyTopRight +okio.ByteString: okio.ByteString decodeBase64(java.lang.String) +android.didikee.donate.R$attr: int srcCompat +wangdaye.com.geometricweather.R$attr: int srcCompat +androidx.constraintlayout.utils.widget.ImageFilterView +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setNavBar(java.lang.String) +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.ObservableSource second +com.google.android.material.button.MaterialButton: void setIconTintResource(int) +androidx.dynamicanimation.R$layout: int notification_template_part_chronometer +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder cookieJar(okhttp3.CookieJar) +okio.ByteString: boolean endsWith(okio.ByteString) +androidx.lifecycle.extensions.R$dimen: int compat_control_corner_material +androidx.customview.R$attr: int fontProviderPackage +com.amap.api.fence.GeoFence: GeoFence(android.os.Parcel) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_imageButtonStyle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String level +androidx.appcompat.R$attr: int listItemLayout +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setIconTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$drawable: int ic_launcher_background +androidx.cardview.R$dimen: int cardview_default_elevation +androidx.preference.R$attr: int displayOptions +androidx.appcompat.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.appcompat.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String aqi +com.amap.api.location.AMapLocation: int GPS_ACCURACY_GOOD +com.google.android.material.bottomnavigation.BottomNavigationItemView: int getItemVisiblePosition() +com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_backgroundTintMode +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton +com.google.android.material.R$attr: int textAppearanceOverline com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_popupWindowStyle -androidx.appcompat.app.AlertController$RecycleListView: AlertController$RecycleListView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$drawable: int shortcuts_cloudy -androidx.constraintlayout.widget.R$styleable: int ActionBar_backgroundStacked -retrofit2.RequestFactory: okhttp3.HttpUrl baseUrl -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: int getChartTop() -com.bumptech.glide.R$dimen: int compat_button_padding_horizontal_material -androidx.hilt.work.R$styleable: int[] ColorStateListItem -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_icon_text_spacing -com.turingtechnologies.materialscrollbar.R$layout: int abc_activity_chooser_view_list_item -wangdaye.com.geometricweather.R$anim: int fragment_fast_out_extra_slow_in -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: java.util.List getDeviceComponentVersions() -wangdaye.com.geometricweather.R$drawable: int weather_clear_day -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_23 -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetEndWithActions -com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_NOGPSPERMISSION -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String getX() -com.tencent.bugly.proguard.w: java.util.concurrent.ScheduledExecutorService c -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: boolean disposed -androidx.preference.R$string: int abc_search_hint -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_FULL_COLOR -wangdaye.com.geometricweather.R$attr: int subtitleTextColor -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BLUETOOTH_ACCEPT_ALL_FILES_VALIDATOR -androidx.core.R$styleable: int[] ColorStateListItem -androidx.appcompat.R$attr: int actionDropDownStyle -androidx.lifecycle.SavedStateHandleController: boolean mIsAttached -wangdaye.com.geometricweather.R$integer: R$integer() -okhttp3.internal.ws.RealWebSocket: boolean processNextFrame() -wangdaye.com.geometricweather.R$attr: int circularRadius -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver this$0 -james.adaptiveicon.R$attr: int windowActionBar -androidx.lifecycle.ReportFragment: void onResume() -wangdaye.com.geometricweather.R$id: int widget_week_temp_5 -androidx.constraintlayout.widget.R$string: R$string() -androidx.preference.R$id: int right_icon -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getNotificationThemePackageName() -com.google.android.material.R$style: int TextAppearance_Compat_Notification_Title -androidx.drawerlayout.R$integer -cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_IME_SWITCHER -wangdaye.com.geometricweather.R$string: int feedback_get_weather_failed -androidx.hilt.lifecycle.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: void setFrom(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_negativeButtonText -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onComplete() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setSunSet(java.lang.String) -com.google.android.material.R$styleable: int Layout_layout_goneMarginStart -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: long EpochRise -okhttp3.internal.http2.Http2Reader$ContinuationSource -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_3 -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingRight -com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_button_bar_material -androidx.coordinatorlayout.widget.CoordinatorLayout -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_HEAVY -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixText -okio.ByteString: java.lang.String utf8 -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxy(java.net.Proxy) -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: boolean isDisposed() -androidx.constraintlayout.widget.R$styleable: int KeyCycle_wavePeriod -wangdaye.com.geometricweather.settings.fragments.AbstractSettingsFragment: AbstractSettingsFragment() -wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() -androidx.lifecycle.Lifecycling: androidx.lifecycle.LifecycleEventObserver lifecycleEventObserver(java.lang.Object) -androidx.coordinatorlayout.R$styleable: int GradientColor_android_startY -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollEnabled -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setStatus(int) -com.google.android.material.R$style: int Base_V23_Theme_AppCompat -androidx.appcompat.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date servedDate -com.turingtechnologies.materialscrollbar.R$attr: int chipSpacingHorizontal -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetStart -com.turingtechnologies.materialscrollbar.R$id: int title_template -com.jaredrummler.android.colorpicker.R$color: int material_grey_800 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Medium -io.reactivex.internal.subscriptions.SubscriptionArbiter: SubscriptionArbiter(boolean) -com.google.android.material.R$attr: int actionModeFindDrawable -com.google.android.material.tabs.TabLayout: void setSelectedTabView(int) -androidx.appcompat.resources.R$dimen: int notification_content_margin_start -androidx.fragment.R$layout: int notification_template_custom_big -androidx.lifecycle.ClassesInfoCache$MethodReference: boolean equals(java.lang.Object) -james.adaptiveicon.R$style: int Widget_AppCompat_Button_Borderless -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework -com.tencent.bugly.proguard.ak: java.lang.String m -com.google.gson.FieldNamingPolicy: java.lang.String separateCamelCase(java.lang.String,java.lang.String) -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_altSrc -retrofit2.OkHttpCall: boolean isExecuted() -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isMaybe -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton_Overflow -androidx.lifecycle.SavedStateHandleController: void attachToLifecycle(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) -wangdaye.com.geometricweather.R$style: int Base_V23_Theme_AppCompat -com.google.android.material.button.MaterialButton: void setElevation(float) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetAlertEntityList() -androidx.appcompat.resources.R$attr: R$attr() -wangdaye.com.geometricweather.R$layout: int support_simple_spinner_dropdown_item -androidx.preference.R$dimen: int hint_pressed_alpha_material_dark -com.google.android.material.circularreveal.CircularRevealFrameLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf -com.google.android.material.slider.Slider: int getTrackWidth() -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_closeIcon -com.tencent.bugly.proguard.z: java.lang.Object a(java.lang.String,java.lang.String,java.lang.Object,java.lang.Class[],java.lang.Object[]) -androidx.preference.R$styleable: int TextAppearance_android_shadowColor -androidx.preference.R$attr: int textAppearanceSearchResultSubtitle -androidx.constraintlayout.widget.R$layout: int abc_action_bar_title_item -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_content_inset_material -okio.GzipSource: byte SECTION_BODY -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windSpeed -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display2 -okio.BufferedSink: long writeAll(okio.Source) -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIcon -com.google.android.material.timepicker.ClockHandView: void setOnActionUpListener(com.google.android.material.timepicker.ClockHandView$OnActionUpListener) -com.xw.repo.bubbleseekbar.R$color: int foreground_material_dark -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void startFirstTimeout(io.reactivex.ObservableSource) -androidx.work.R$dimen: int notification_top_pad -androidx.lifecycle.ComputableLiveData$2: androidx.lifecycle.ComputableLiveData this$0 -james.adaptiveicon.R$color: int primary_material_light -james.adaptiveicon.R$attr: int tint -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: android.os.IBinder asBinder() -androidx.constraintlayout.widget.R$styleable: int Constraint_android_transformPivotX -io.reactivex.internal.disposables.CancellableDisposable: CancellableDisposable(io.reactivex.functions.Cancellable) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float pm10 -androidx.constraintlayout.widget.R$string: int abc_shareactionprovider_share_with_application -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_2G3G4G -com.bumptech.glide.integration.okhttp.R$dimen -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onComplete() -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: MfHistoryResult$History$Precipitation() -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.tls.TrustRootIndex buildTrustRootIndex(javax.net.ssl.X509TrustManager) -wangdaye.com.geometricweather.R$dimen: int abc_select_dialog_padding_start_material -com.turingtechnologies.materialscrollbar.R$attr: int subMenuArrow -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalGap -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginLeft -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitationDuration() -wangdaye.com.geometricweather.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -wangdaye.com.geometricweather.R$id: int mtrl_calendar_months -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer treeLevel -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean -androidx.loader.R$dimen -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl build() -com.google.android.material.R$drawable: int btn_checkbox_checked_mtrl -com.google.android.material.R$dimen: int mtrl_btn_icon_btn_padding_left -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature RealFeelTemperature +com.tencent.bugly.proguard.z: android.content.Context a(android.content.Context) +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy +com.autonavi.aps.amapapi.model.AMapLocationServer: org.json.JSONObject f() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean speed +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontStyle +android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +com.xw.repo.bubbleseekbar.R$id: int default_activity_button +org.greenrobot.greendao.AbstractDao: void insertOrReplaceInTx(java.lang.Iterable) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int Icon +com.xw.repo.bubbleseekbar.R$attr: int contentInsetStartWithNavigation +android.didikee.donate.R$style: int Widget_AppCompat_Button_Colored +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer direction +androidx.lifecycle.ClassesInfoCache$MethodReference: void invokeCallback(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int star_1 +androidx.appcompat.R$color: int abc_primary_text_disable_only_material_light +okhttp3.internal.connection.RealConnection: void cancel() +james.adaptiveicon.R$styleable: int Toolbar_titleMarginTop +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void dispose() +androidx.appcompat.resources.R$styleable: int GradientColor_android_gradientRadius +androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Dialog +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: android.content.Context b +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColor +com.google.android.material.R$dimen: int mtrl_slider_widget_height +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +wangdaye.com.geometricweather.R$id: int ragweedIcon +androidx.constraintlayout.widget.R$attr: int barrierDirection +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextBackground +com.google.android.material.R$styleable: int Layout_layout_constraintEnd_toStartOf +com.google.gson.internal.JsonReaderInternalAccess: void promoteNameToValue(com.google.gson.stream.JsonReader) +com.tencent.bugly.proguard.w: w() +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: int getPrecipitationColor(android.content.Context) +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getDensityVoice(android.content.Context,float) +james.adaptiveicon.AdaptiveIconView: void setPath(int) +com.tencent.bugly.crashreport.common.info.a: java.lang.String h() +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Subhead +com.google.android.material.R$id: int dragLeft +androidx.preference.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_dot_group_animation +androidx.recyclerview.widget.RecyclerView: void suppressLayout(boolean) +androidx.core.R$attr: int ttcIndex +androidx.appcompat.widget.AbsActionBarView: AbsActionBarView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int[] StateSet +com.tencent.bugly.proguard.u: boolean a(java.util.Map) +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +okio.ForwardingSink: okio.Sink delegate +cyanogenmod.providers.CMSettings$Secure$2: boolean validate(java.lang.String) +okhttp3.internal.http.HttpCodec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) +io.reactivex.internal.util.VolatileSizeArrayList: java.util.ArrayList list +io.reactivex.internal.subscriptions.SubscriptionArbiter: void produced(long) +retrofit2.BuiltInConverters: boolean checkForKotlinUnit +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: AccuDailyResult$DailyForecasts$Moon() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeShareDrawable +com.google.android.material.R$attr: int fontProviderCerts +cyanogenmod.app.CustomTile$ExpandedItem$1: cyanogenmod.app.CustomTile$ExpandedItem createFromParcel(android.os.Parcel) +android.didikee.donate.R$dimen: int abc_dialog_fixed_height_minor +okhttp3.Headers: okhttp3.Headers of(java.lang.String[]) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarPopupTheme +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: java.lang.String Name +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind Wind +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: void setValue(java.lang.String) +androidx.constraintlayout.widget.R$attr: int toolbarNavigationButtonStyle +com.bumptech.glide.load.engine.GlideException: java.lang.Exception exception +com.google.android.material.R$dimen: int mtrl_min_touch_target_size +androidx.preference.R$attr: int listLayout +cyanogenmod.weather.RequestInfo: int hashCode() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingBottom +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: double lat +androidx.appcompat.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +okhttp3.OkHttpClient: int pingInterval +com.turingtechnologies.materialscrollbar.R$color: int highlighted_text_material_dark +wangdaye.com.geometricweather.R$attr: int layout_constraintBaseline_toBaselineOf +com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_dark +wangdaye.com.geometricweather.R$array: int clock_font +org.greenrobot.greendao.AbstractDao: void updateKeyAfterInsertAndAttach(java.lang.Object,long,boolean) +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: MfEphemerisResult() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Subhead_Inverse +androidx.hilt.work.R$id: int accessibility_action_clickable_span +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginTop() +james.adaptiveicon.R$styleable: int ActionBar_subtitle +okhttp3.OkHttpClient: javax.net.SocketFactory socketFactory() +wangdaye.com.geometricweather.R$styleable: int Slider_android_enabled +retrofit2.ParameterHandler$Path: java.lang.reflect.Method method +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +com.google.android.material.R$attr: int defaultDuration +androidx.lifecycle.extensions.R$drawable: R$drawable() +android.didikee.donate.R$style: int Base_Animation_AppCompat_Dialog +retrofit2.Platform$Android: java.lang.Object invokeDefaultMethod(java.lang.reflect.Method,java.lang.Class,java.lang.Object,java.lang.Object[]) +com.bumptech.glide.load.engine.GlideException: com.bumptech.glide.load.Key key +androidx.vectordrawable.R$dimen: int compat_button_inset_horizontal_material +cyanogenmod.app.ILiveLockScreenManager: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +androidx.lifecycle.extensions.R$drawable: int notification_action_background +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.R$attr: int navigationIcon +wangdaye.com.geometricweather.R$color: int material_slider_active_tick_marks_color +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_124 +com.amap.api.location.AMapLocation: java.lang.String getDistrict() +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_THEMES +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_width +com.bumptech.glide.integration.okhttp.R$dimen: int notification_subtext_size +com.jaredrummler.android.colorpicker.R$id: int action_bar_activity_content +james.adaptiveicon.R$attr: int tooltipText +wangdaye.com.geometricweather.R$attr: int actionBarDivider +com.turingtechnologies.materialscrollbar.R$attr: int boxCollapsedPaddingTop +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_start_angle +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onUnsubscribed() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: java.lang.String Unit +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.R$string: int key_language +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_months +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String opPkg +okhttp3.logging.HttpLoggingInterceptor: java.util.Set headersToRedact +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge +com.amap.api.fence.PoiItem: java.lang.String getAddress() +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_borderColor +androidx.constraintlayout.widget.R$drawable: int notify_panel_notification_icon_bg +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: org.reactivestreams.Publisher mPublisher +com.jaredrummler.android.colorpicker.R$styleable: int[] RecyclerView +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +androidx.constraintlayout.widget.R$id: int rectangles +wangdaye.com.geometricweather.R$bool: int config_materialPreferenceIconSpaceReserved +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable +androidx.preference.R$color: int primary_text_disabled_material_dark +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_transitionPathRotate +androidx.preference.R$drawable: int preference_list_divider_material +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance +com.jaredrummler.android.colorpicker.R$attr: int paddingTopNoTitle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: AccuDailyResult$DailyForecasts$Night$WindGust$Direction() +androidx.appcompat.R$styleable: int AppCompatTheme_dialogCornerRadius +androidx.appcompat.R$styleable: int TextAppearance_fontFamily +okio.ByteString: okio.ByteString decodeHex(java.lang.String) +cyanogenmod.app.suggest.ApplicationSuggestion: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: java.lang.String Unit +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onBouncerShowing(boolean) +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onError(java.lang.Throwable) +androidx.preference.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: ObservableFlatMap$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver,long) +androidx.activity.R$id: int tag_accessibility_clickable_spans +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Alert okio.Buffer$UnsafeCursor: int start -com.google.android.material.R$style: int Widget_AppCompat_RatingBar -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean delayError -org.greenrobot.greendao.AbstractDao: android.database.CursorWindow moveToNextUnlocked(android.database.Cursor) -cyanogenmod.app.ICMStatusBarManager$Stub: java.lang.String DESCRIPTOR -com.amap.api.location.UmidtokenInfo: com.amap.api.location.AMapLocationClient a() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeApparentTemperature() -wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_text_input_mode -okio.Pipe$PipeSink: void flush() -androidx.work.R$drawable: int notification_bg_low_normal -com.bumptech.glide.R$style: R$style() -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: long serialVersionUID -androidx.activity.R$id: int accessibility_custom_action_29 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarStyle -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_collapseIcon -androidx.appcompat.R$styleable: int SearchView_queryBackground -com.google.android.material.R$id: int action_bar_container -com.google.android.material.R$attr: int telltales_tailScale -com.bumptech.glide.Registry$NoResultEncoderAvailableException: Registry$NoResultEncoderAvailableException(java.lang.Class) -androidx.preference.R$attr: int paddingTopNoTitle -wangdaye.com.geometricweather.R$id: int dialog_location_help_manageTitle +androidx.constraintlayout.widget.R$styleable: int ActionBar_itemPadding +com.jaredrummler.android.colorpicker.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setDistrict(java.lang.String) +androidx.work.R$styleable: int ColorStateListItem_android_color +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_curveFit +androidx.constraintlayout.widget.R$styleable: int SearchView_goIcon +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterTextAppearance +com.google.android.material.R$layout: int abc_list_menu_item_icon +retrofit2.Invocation: java.lang.String toString() +com.tencent.bugly.proguard.p: long a(com.tencent.bugly.proguard.p,java.lang.String,android.content.ContentValues,com.tencent.bugly.proguard.o) +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void dispose() +com.tencent.bugly.proguard.ae +androidx.activity.R$drawable: int notification_template_icon_low_bg +okhttp3.internal.cache2.Relay$RelaySource +androidx.dynamicanimation.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.R$string: int about_gson +androidx.savedstate.SavedStateRegistry$1 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_QUICK_QS_PULLDOWN_VALIDATOR +okio.Pipe$PipeSource: okio.Pipe this$0 +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit MM +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_maxButtonHeight +cyanogenmod.app.IProfileManager: boolean profileExists(android.os.ParcelUuid) +okhttp3.HttpUrl: java.lang.String encodedQuery() +com.turingtechnologies.materialscrollbar.R$attr: int actionBarPopupTheme +com.google.android.material.slider.Slider: void setHaloRadiusResource(int) +wangdaye.com.geometricweather.R$id: int item_weather_daily_uv_icon +com.google.android.material.R$dimen: int mtrl_badge_text_size +androidx.preference.R$attr: int drawableBottomCompat +wangdaye.com.geometricweather.R$styleable: int StateListDrawableItem_android_drawable +com.google.android.material.R$drawable: int abc_list_selector_background_transition_holo_dark +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean validate(long) +okhttp3.internal.cache.DiskLruCache: void close() +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: float unitFactor +james.adaptiveicon.R$drawable: int abc_list_selector_holo_light +androidx.viewpager2.R$dimen: int fastscroll_margin +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.tencent.bugly.crashreport.crash.CrashDetailBean: android.os.Parcelable$Creator CREATOR +androidx.preference.R$attr: int tooltipFrameBackground +androidx.fragment.R$styleable: int FontFamily_fontProviderQuery +androidx.appcompat.R$styleable: int ActionBar_popupTheme +android.didikee.donate.R$styleable: int AppCompatTheme_panelBackground +com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean g +james.adaptiveicon.R$attr: int selectableItemBackgroundBorderless +androidx.loader.R$attr: int alpha +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_toRightOf +james.adaptiveicon.R$styleable: int MenuItem_actionLayout +com.google.android.material.chip.Chip: float getCloseIconSize() +android.didikee.donate.R$drawable: int abc_text_select_handle_right_mtrl_light +com.google.android.gms.base.R$string: int common_google_play_services_notification_ticker +com.tencent.bugly.crashreport.common.strategy.a: int a +androidx.hilt.lifecycle.R$integer: R$integer() +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$string: int settings_summary_background_free_on +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textFontWeight +com.google.android.material.transformation.FabTransformationBehavior +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleRadius +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type UV_INDEX +com.turingtechnologies.materialscrollbar.R$attr: int borderlessButtonStyle +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status REJECTED +com.jaredrummler.android.colorpicker.R$color: int primary_text_disabled_material_light +wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_android_thumb +retrofit2.CallAdapter$Factory: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String getUnitId() +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animAutostart +okhttp3.CertificatePinner: java.util.List findMatchingPins(java.lang.String) +com.google.android.material.R$style: int TextAppearance_Design_Error +android.didikee.donate.R$attr: int arrowHeadLength +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_SPEED_UNIT +androidx.dynamicanimation.R$layout: int notification_action_tombstone +cyanogenmod.weather.RequestInfo$Builder: java.lang.String mCityName +okio.RealBufferedSource: long indexOfElement(okio.ByteString) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyleSmall +androidx.vectordrawable.R$id: int notification_main_column +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +com.bumptech.glide.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.vectordrawable.R$styleable: int FontFamilyFont_fontStyle +androidx.activity.ComponentActivity +com.google.android.gms.location.ActivityTransitionRequest: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: void setChartItemView(wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView) +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: void setAlpha(float) +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Object getKey(java.lang.Object) +com.google.android.material.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +wangdaye.com.geometricweather.R$dimen: int notification_main_column_padding_top +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour FIXED +com.google.android.material.R$layout: int design_layout_tab_text +com.google.android.material.R$styleable: int Toolbar_navigationContentDescription +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA +androidx.constraintlayout.widget.R$color: int secondary_text_default_material_light +androidx.customview.R$drawable: int notification_bg_low_pressed +okhttp3.ResponseBody$1: okhttp3.MediaType contentType() +com.google.android.material.R$styleable: int Slider_trackColor +wangdaye.com.geometricweather.R$attr: int cpv_alphaChannelText +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.settings.fragments.SettingsFragment +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +com.google.android.material.R$styleable: int Layout_layout_constraintRight_creator +com.google.android.material.bottomnavigation.BottomNavigationItemView +wangdaye.com.geometricweather.R$attr: int startIconTint +androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +com.google.android.material.R$styleable: int Motion_motionStagger +com.google.android.material.R$attr: int paddingLeftSystemWindowInsets +com.google.android.material.R$styleable: int Chip_closeIconEnabled +android.didikee.donate.R$styleable: int SwitchCompat_switchMinWidth +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.concurrent.atomic.AtomicReference error +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setUpdateTime(long) +com.google.android.material.R$id: int custom +androidx.preference.R$attr: int firstBaselineToTopHeight +androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +com.xw.repo.bubbleseekbar.R$styleable: int[] CompoundButton +com.google.android.material.R$style: int Base_V26_Theme_AppCompat +com.jaredrummler.android.colorpicker.R$attr: int subtitleTextAppearance +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Small +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +androidx.activity.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$attr: int yearTodayStyle +com.tencent.bugly.proguard.aj: aj() +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark_normal +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast$Builder setHigh(double) +androidx.appcompat.widget.ActionBarContainer +com.google.android.material.R$styleable: int Chip_chipStartPadding +com.jaredrummler.android.colorpicker.R$id: int select_dialog_listview +wangdaye.com.geometricweather.R$styleable: int Preference_order +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +com.tencent.bugly.proguard.p: com.tencent.bugly.proguard.p a() +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_123 +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$styleable: int[] TabLayout +cyanogenmod.app.StatusBarPanelCustomTile +com.jaredrummler.android.colorpicker.R$attr: int progressBarStyle +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_default_mtrl_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String Key +androidx.constraintlayout.widget.R$attr: int flow_lastHorizontalStyle +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_primary +okhttp3.internal.http2.ErrorCode +com.google.android.material.R$attr: int titleTextAppearance +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode[] values() +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener mListener +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain rain +android.didikee.donate.R$styleable: int ActionBar_backgroundSplit +androidx.work.R$id: int accessibility_custom_action_12 +androidx.hilt.lifecycle.R$styleable: int[] Fragment +wangdaye.com.geometricweather.R$string: int date_format_long +wangdaye.com.geometricweather.R$string: int real_feel_shade_temperature +com.google.android.material.R$color: int background_floating_material_light +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Dialog +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Surface +com.tencent.bugly.proguard.u: long q +cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CURRENT_WEATHER_URI +androidx.appcompat.R$styleable: int AppCompatTheme_spinnerStyle +cyanogenmod.weatherservice.WeatherProviderService$1: cyanogenmod.weatherservice.WeatherProviderService this$0 +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardUseCompatPadding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: java.util.List brands +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeWindSpeed +com.google.android.material.R$styleable: int KeyTrigger_onCross +wangdaye.com.geometricweather.R$string: int abc_toolbar_collapse_description +com.autonavi.aps.amapapi.model.AMapLocationServer: void e(java.lang.String) +androidx.loader.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode +wangdaye.com.geometricweather.R$attr: int strokeColor +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids +cyanogenmod.power.PerformanceManager: int PROFILE_BALANCED +com.tencent.bugly.proguard.f: short a +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: java.lang.String getPubTime() com.google.android.material.chip.Chip: void setCloseIconEnabled(boolean) -androidx.hilt.R$styleable: int Fragment_android_tag -androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_36dp -okio.ByteString: void write(java.io.OutputStream) -wangdaye.com.geometricweather.R$layout: int spinner_text -james.adaptiveicon.R$drawable: int abc_ic_ab_back_material -com.google.android.material.R$attr: int cornerRadius -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource[],io.reactivex.functions.Function) -com.tencent.bugly.proguard.u: byte[] n -com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding[] values() -wangdaye.com.geometricweather.db.entities.DailyEntity: int getDaytimeTemperature() -androidx.coordinatorlayout.R$id: int accessibility_action_clickable_span -james.adaptiveicon.R$attr: int actionMenuTextAppearance -androidx.transition.R$style: R$style() -cyanogenmod.app.IProfileManager: boolean removeProfile(cyanogenmod.app.Profile) -com.tencent.bugly.crashreport.common.info.a: void C() -wangdaye.com.geometricweather.R$attr: int bsb_section_text_size -com.xw.repo.bubbleseekbar.R$color: int accent_material_light -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getRain() -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree windDegree -android.didikee.donate.R$drawable: int notify_panel_notification_icon_bg -com.google.android.material.R$attr: int checkedChip -james.adaptiveicon.R$style: int Base_Theme_AppCompat_DialogWhenLarge -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult -androidx.hilt.work.R$drawable: int notify_panel_notification_icon_bg -com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatHoveredFocusedTranslationZ(float) -androidx.preference.R$styleable: int MenuGroup_android_enabled -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String d() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: java.lang.String icon -com.google.android.material.R$drawable: int btn_radio_on_mtrl -com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.animation.MotionSpec getHideMotionSpec() -wangdaye.com.geometricweather.R$id: int action_bar_subtitle +com.jaredrummler.android.colorpicker.R$dimen: int notification_large_icon_width +com.google.android.material.R$styleable: int Layout_android_layout_width +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.concurrent.atomic.AtomicInteger active +wangdaye.com.geometricweather.R$drawable: int shortcuts_refresh +com.google.android.material.R$color: int mtrl_btn_transparent_bg_color +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +androidx.activity.R$drawable: int notification_bg_normal +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService listenerExecutor +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: boolean isDisposed() +androidx.constraintlayout.widget.R$id: int dialog_button +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_maxLines +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.functions.Function itemTimeoutIndicator +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: io.reactivex.Observer downstream +com.jaredrummler.android.colorpicker.R$id: int parentPanel +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRealFeelTemperature(java.lang.Integer) +wangdaye.com.geometricweather.R$id: int progress +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_DEFAULT +com.google.android.material.R$styleable: int NavigationView_itemTextAppearance +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: ObservableSubscribeOn$SubscribeOnObserver(io.reactivex.Observer) +androidx.hilt.R$dimen: int compat_control_corner_material +androidx.recyclerview.R$id: int accessibility_custom_action_27 +com.tencent.bugly.proguard.y$a: long d +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_max +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActivityChooserView +androidx.legacy.coreutils.R$attr: int fontProviderAuthority +com.google.android.material.slider.RangeSlider: void setValueTo(float) +androidx.constraintlayout.widget.R$attr: int contentInsetEndWithActions +androidx.viewpager2.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerY +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_trackTint +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeThunderstormPrecipitationDuration +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setO3Desc(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction Direction +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.preference.R$dimen: int abc_text_size_small_material +androidx.preference.R$styleable: int Toolbar_contentInsetStart +wangdaye.com.geometricweather.R$drawable: int widget_clock_day_week +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange +androidx.preference.R$styleable: int SwitchPreferenceCompat_summaryOff +okio.ByteString: int codePointIndexToCharIndex(java.lang.String,int) +wangdaye.com.geometricweather.R$attr: int bsb_max +com.xw.repo.bubbleseekbar.R$dimen +okhttp3.internal.http2.Header: okio.ByteString value +cyanogenmod.themes.ThemeManager: boolean isThemeBeingProcessed(java.lang.String) +androidx.appcompat.R$id: int submenuarrow +wangdaye.com.geometricweather.R$attr: int materialCalendarMonthNavigationButton +android.didikee.donate.R$attr: int dividerHorizontal +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton_Overflow wangdaye.com.geometricweather.R$color: int abc_hint_foreground_material_light -androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_Alert -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework -androidx.drawerlayout.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_visible -cyanogenmod.providers.CMSettings$System: java.lang.String T9_SEARCH_INPUT_LOCALE -com.jaredrummler.android.colorpicker.R$id: int action_text -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customColorValue -androidx.core.R$integer: R$integer() -cyanogenmod.externalviews.KeyguardExternalView$2: void onAttachedToWindow() -com.amap.api.location.APSService: com.amap.api.location.APSServiceBase a -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getSnowPrecipitationProbability() -com.google.android.gms.common.server.converter.StringToIntConverter$zaa -okhttp3.OkHttpClient: java.util.List protocols() -okhttp3.RealCall: java.io.IOException timeoutExit(java.io.IOException) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_minHeight -com.tencent.bugly.proguard.ah: java.lang.String c -wangdaye.com.geometricweather.R$string: int settings_title_card_order -wangdaye.com.geometricweather.R$color: int mtrl_card_view_foreground -android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -androidx.preference.R$styleable: int LinearLayoutCompat_android_orientation -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -okhttp3.RealCall: okhttp3.Request originalRequest -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_registerThermalListener -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int OTHER_STATE_CONSUMED_OR_EMPTY -com.google.android.material.R$attr: int counterOverflowTextAppearance -okhttp3.internal.http.CallServerInterceptor: CallServerInterceptor(boolean) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBaseline_creator -cyanogenmod.providers.CMSettings$System: android.net.Uri CONTENT_URI -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_layout -com.google.android.material.R$style: int TextAppearance_AppCompat_SearchResult_Title -okhttp3.RealCall$AsyncCall: okhttp3.Callback responseCallback -wangdaye.com.geometricweather.R$styleable: int View_theme -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: java.lang.Object value -androidx.constraintlayout.widget.R$drawable: R$drawable() -com.turingtechnologies.materialscrollbar.R$color: int secondary_text_disabled_material_dark -james.adaptiveicon.R$style: int Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List probabilityForecast -android.didikee.donate.R$style: int Base_Animation_AppCompat_DropDownUp -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit C -com.turingtechnologies.materialscrollbar.R$color: int material_deep_teal_500 -wangdaye.com.geometricweather.R$styleable: int Layout_layout_editor_absoluteY -androidx.constraintlayout.widget.R$id: int action_context_bar -retrofit2.ParameterHandler$Tag: java.lang.Class cls -okio.SegmentedByteString: java.lang.String utf8() -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_stacked_tab_max_width -androidx.work.R$attr: int fontStyle -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_listItemLayout -cyanogenmod.profiles.StreamSettings: StreamSettings(int) -okio.Okio$2: java.lang.String toString() -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionMode -androidx.hilt.lifecycle.R$id: int right_icon -com.bumptech.glide.R$id: int italic -androidx.preference.R$style: int TextAppearance_AppCompat_Tooltip -com.github.rahatarmanahmed.cpv.CircularProgressView$4 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_small_material -cyanogenmod.themes.ThemeManager$2$1: java.lang.String val$pkgName -androidx.appcompat.R$styleable: int MenuItem_android_id -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setValue(java.util.List) -wangdaye.com.geometricweather.R$color: int accent_material_dark -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -com.tencent.bugly.proguard.aq: java.lang.String d -wangdaye.com.geometricweather.R$id: int coordinator -androidx.fragment.R$anim -androidx.appcompat.R$styleable: int Toolbar_titleMargins -james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_EditText -com.bumptech.glide.R$styleable: int[] GradientColorItem -androidx.recyclerview.R$id: int tag_unhandled_key_listeners -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onError(java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onComplete() -androidx.appcompat.R$attr: int firstBaselineToTopHeight -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource[] values() -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Body1 -wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newSession() -com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat -android.didikee.donate.R$attr: int toolbarNavigationButtonStyle -com.jaredrummler.android.colorpicker.ColorPickerView: int getColor() -androidx.appcompat.R$styleable: int AppCompatTheme_windowActionBar -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean isDisposed() -okhttp3.internal.http2.Http2Reader$Handler: void priority(int,int,int,boolean) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SNOW_SHOWERS -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec codec -com.amap.api.location.AMapLocation: java.lang.String getAdCode() -com.google.android.gms.internal.common.zzq: java.lang.Object zza() -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat -androidx.viewpager2.R$id: int accessibility_custom_action_1 -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Borderless -okio.RealBufferedSource$1: okio.RealBufferedSource this$0 -cyanogenmod.app.IPartnerInterface$Stub$Proxy: java.lang.String getCurrentHotwordPackageName() -com.google.android.material.R$styleable: int Motion_motionPathRotate -james.adaptiveicon.R$attr: int overlapAnchor -androidx.preference.R$anim: int abc_slide_out_top -androidx.preference.R$color: int tooltip_background_dark -com.google.android.material.textfield.TextInputLayout: void setHintEnabled(boolean) -androidx.preference.R$styleable: int MultiSelectListPreference_entryValues -com.google.android.material.R$style: int Widget_AppCompat_Spinner_DropDown -wangdaye.com.geometricweather.R$dimen: int notification_right_icon_size -com.google.android.material.R$styleable: int[] DrawerArrowToggle -com.amap.api.location.AMapLocationQualityReport: java.lang.String getNetworkType() -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: long index -androidx.appcompat.R$dimen: R$dimen() -com.google.android.material.slider.RangeSlider: void setValues(java.lang.Float[]) -androidx.appcompat.widget.ActionBarOverlayLayout -androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginEnd -com.bumptech.glide.integration.okhttp.R$id: int forever -io.reactivex.internal.queue.SpscArrayQueue: int lookAheadStep -com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: AMapLocationClientOption$AMapLocationPurpose(java.lang.String,int) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property So2 -cyanogenmod.hardware.ICMHardwareService: java.lang.String getLtoDestination() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String weatherEnd -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.internal.connection.StreamAllocation streamAllocation() -androidx.customview.R$dimen: int compat_notification_large_icon_max_width -com.turingtechnologies.materialscrollbar.R$styleable: int[] LinearLayoutCompat -com.turingtechnologies.materialscrollbar.R$attr: int searchIcon -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback,int) -androidx.fragment.R$id: int tag_screen_reader_focusable -androidx.hilt.work.R$bool: int workmanager_test_configuration -james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -james.adaptiveicon.R$anim: int abc_grow_fade_in_from_bottom -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onError(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$id: int actions -androidx.vectordrawable.animated.R$drawable: int notification_bg_low_pressed -okhttp3.internal.Util: javax.net.ssl.X509TrustManager platformTrustManager() -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver) -androidx.recyclerview.R$layout: int notification_template_part_chronometer -cyanogenmod.app.Profile: cyanogenmod.profiles.RingModeSettings mRingMode -com.google.gson.stream.JsonScope: int NONEMPTY_OBJECT -androidx.constraintlayout.widget.R$styleable: int SearchView_android_maxWidth -androidx.recyclerview.widget.RecyclerView: void setNestedScrollingEnabled(boolean) -wangdaye.com.geometricweather.R$color: int material_grey_50 -androidx.drawerlayout.R$color: R$color() -com.google.android.material.R$color: int material_slider_active_tick_marks_color -wangdaye.com.geometricweather.R$styleable: int MotionLayout_motionProgress -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: int getStatus() -okhttp3.internal.ws.RealWebSocket: long queueSize() -com.jaredrummler.android.colorpicker.R$styleable: int View_android_theme -androidx.viewpager2.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconCheckable -com.google.android.material.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -cyanogenmod.weatherservice.WeatherProviderService -androidx.appcompat.resources.R$style: int Widget_Compat_NotificationActionText -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -com.google.android.material.R$style: int TextAppearance_AppCompat_Small -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_anim_duration -com.google.android.material.R$attr: int flow_lastVerticalBias -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: AccuCurrentResult$RealFeelTemperatureShade$Metric() -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_toLeftOf -wangdaye.com.geometricweather.R$styleable: int ActivityChooserView_initialActivityCount -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_behavior -androidx.activity.R$layout: int notification_template_part_time -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isSingle -com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Dialog -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getRingtoneThemePackageName() -androidx.lifecycle.SavedStateHandle$1: androidx.lifecycle.SavedStateHandle this$0 -wangdaye.com.geometricweather.R$styleable: int Constraint_android_minWidth -androidx.activity.R$layout: int notification_action_tombstone +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_state_dragged +androidx.preference.R$attr: int popupTheme +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_DropDownItem_Spinner +com.google.android.material.R$attr: int windowNoTitle +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +wangdaye.com.geometricweather.R$layout: int design_navigation_menu_item +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +james.adaptiveicon.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +wangdaye.com.geometricweather.R$layout: int item_weather_daily_pollen +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginStart +android.didikee.donate.R$dimen: int abc_control_corner_material +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: long getTime() +androidx.appcompat.widget.AppCompatImageButton: void setSupportImageTintMode(android.graphics.PorterDuff$Mode) com.google.android.material.R$string: int abc_activity_chooser_view_see_all -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.util.Date getDate() -cyanogenmod.providers.CMSettings$3: boolean validate(java.lang.String) -com.tencent.bugly.proguard.ak: void a(com.tencent.bugly.proguard.j) -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button -wangdaye.com.geometricweather.R$animator: int search_container_in -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int CANCELLED -com.google.android.material.R$styleable: int ThemeEnforcement_enforceTextAppearance -wangdaye.com.geometricweather.R$attr: int boxStrokeWidth -wangdaye.com.geometricweather.R$attr: int actionBarDivider -com.turingtechnologies.materialscrollbar.R$color: int abc_tint_spinner -okhttp3.RealCall: okio.AsyncTimeout timeout -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.b d(com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler) -wangdaye.com.geometricweather.R$layout: int notification_base -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_verticalBias -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startX -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: float getDensity(float) -com.tencent.bugly.nativecrashreport.R$string: R$string() -com.jaredrummler.android.colorpicker.R$attr: int ttcIndex -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getCityId() -androidx.transition.R$dimen: int notification_top_pad -androidx.preference.R$color: int primary_text_default_material_light -com.google.android.material.R$styleable: int MaterialButton_android_insetLeft -com.bumptech.glide.R$attr: int layout_insetEdge -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation -androidx.hilt.work.R$drawable -okhttp3.HttpUrl: okhttp3.HttpUrl get(java.net.URI) -com.tencent.bugly.crashreport.common.strategy.a: boolean b() -james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat -androidx.core.R$dimen: int notification_right_side_padding_top -androidx.transition.R$attr: int fontProviderQuery -com.turingtechnologies.materialscrollbar.R$styleable: int TabItem_android_layout -com.jaredrummler.android.colorpicker.R$string: int abc_menu_meta_shortcut_label -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_button_material -androidx.constraintlayout.widget.R$styleable: int Toolbar_android_minHeight -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -androidx.lifecycle.ClassesInfoCache$CallbackInfo: void invokeMethodsForEvent(java.util.List,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) -io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.ObservableSource second -wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_1_3_padding_top -com.xw.repo.bubbleseekbar.R$string: int abc_shareactionprovider_share_with -cyanogenmod.app.ProfileGroup: boolean isDirty() -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void subscribeNext() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: java.lang.String Name -androidx.preference.R$anim: int fragment_fade_exit -androidx.core.R$id: int right_side -okio.Timeout: void waitUntilNotified(java.lang.Object) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSo2(java.lang.Float) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: org.reactivestreams.Subscription upstream -androidx.coordinatorlayout.R$drawable: int notification_bg_normal_pressed -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -cyanogenmod.app.CustomTile$ExpandedStyle: void internalStyleId(int) -androidx.constraintlayout.widget.R$styleable: int Transition_transitionFlags -android.didikee.donate.R$styleable: int AppCompatTheme_switchStyle -com.google.android.material.R$styleable: int State_android_id -cyanogenmod.app.IPartnerInterface$Stub$Proxy: boolean setZenMode(int) -android.didikee.donate.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -okhttp3.internal.cache.DiskLruCache$Snapshot: java.lang.String key -wangdaye.com.geometricweather.R$string: int content_desc_app_store -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton -okhttp3.internal.http2.Http2Connection: void setSettings(okhttp3.internal.http2.Settings) -wangdaye.com.geometricweather.R$styleable: int Spinner_android_prompt -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial -androidx.dynamicanimation.R$dimen: int notification_right_icon_size -com.tencent.bugly.crashreport.CrashReport: void enableBugly(boolean) -androidx.constraintlayout.widget.ConstraintHelper: int[] getReferencedIds() -okio.BufferedSource: okio.ByteString readByteString(long) -com.turingtechnologies.materialscrollbar.R$attr: int tabUnboundedRipple -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end -androidx.loader.R$styleable: int FontFamily_fontProviderCerts -okhttp3.internal.Util: int indexOf(java.util.Comparator,java.lang.String[],java.lang.String) -androidx.lifecycle.ProcessLifecycleOwnerInitializer: java.lang.String getType(android.net.Uri) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_landscape_header_width -wangdaye.com.geometricweather.R$styleable: int[] ClockHandView -com.google.android.material.R$styleable: int[] CollapsingToolbarLayout -wangdaye.com.geometricweather.R$attr: int searchIcon -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getMoonRiseDate() -androidx.appcompat.widget.Toolbar: android.view.Menu getMenu() -wangdaye.com.geometricweather.db.entities.DailyEntity: int daytimeTemperature -androidx.appcompat.view.menu.ExpandedMenuView: int getWindowAnimations() -cyanogenmod.app.CustomTile$GridExpandedStyle: CustomTile$GridExpandedStyle() -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_submitBackground -androidx.viewpager2.R$style: int Widget_Compat_NotificationActionContainer -cyanogenmod.externalviews.KeyguardExternalView: void access$300(cyanogenmod.externalviews.KeyguardExternalView) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void cancelAll() -com.jaredrummler.android.colorpicker.R$id: int list_item -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onUnsubscribed() -io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.SingleSource) -okio.Okio$3: Okio$3() -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_min_width_minor -com.google.android.material.textfield.TextInputLayout: void setEditText(android.widget.EditText) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer clouds -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMarkTint -okhttp3.internal.http2.Http2Connection$Listener -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_ActionBar -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_radioButtonStyle -okio.Buffer: okio.ByteString readByteString() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer treeIndex -com.bumptech.glide.integration.okhttp.R$id: int line1 -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: ViewModelProvider$AndroidViewModelFactory(android.app.Application) -wangdaye.com.geometricweather.R$drawable: int weather_rain_3 -androidx.preference.R$id: int tag_transition_group -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean() -android.didikee.donate.R$drawable: int abc_list_focused_holo -wangdaye.com.geometricweather.common.basic.models.weather.Minutely: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode -com.google.android.material.R$attr: int passwordToggleContentDescription -com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierMargin -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: CaiYunMainlyResult$ForecastHourlyBean() -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.functions.Function mapper -androidx.activity.R$styleable: int GradientColor_android_endY -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getCeiling() -androidx.fragment.R$styleable: int[] FontFamilyFont -james.adaptiveicon.R$attr: int activityChooserViewStyle -com.google.android.material.R$dimen: int notification_big_circle_margin -androidx.vectordrawable.R$dimen: int notification_media_narrow_margin -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer cloudCover -com.google.android.material.R$style: int Platform_MaterialComponents_Dialog -androidx.viewpager.widget.PagerTabStrip: void setDrawFullUnderline(boolean) -okhttp3.internal.cache.DiskLruCache: java.io.File journalFileBackup -androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarStyle -james.adaptiveicon.R$dimen: int abc_dialog_min_width_minor -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Medium_Inverse -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_pressed_holo_light -com.google.gson.JsonParseException: JsonParseException(java.lang.String,java.lang.Throwable) -androidx.appcompat.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperText -wangdaye.com.geometricweather.R$layout: int abc_select_dialog_material -cyanogenmod.weather.WeatherInfo$DayForecast$Builder: double mLow +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: long updateTime +okio.AsyncTimeout: java.io.IOException exit(java.io.IOException) +james.adaptiveicon.R$drawable: int abc_ic_menu_overflow_material +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial +androidx.drawerlayout.R$drawable: int notification_bg_normal +com.google.android.material.R$dimen: int material_helper_text_font_1_3_padding_horizontal +androidx.work.R$id: int accessibility_custom_action_19 +androidx.hilt.lifecycle.R$dimen: int compat_control_corner_material +com.google.android.material.R$attr: int colorControlHighlight +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void setNativeInfo(int,java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean current +com.xw.repo.bubbleseekbar.R$color: int tooltip_background_dark +cyanogenmod.app.suggest.IAppSuggestManager$Stub: java.lang.String DESCRIPTOR +androidx.drawerlayout.R$drawable: int notification_bg_low +androidx.appcompat.R$id: int customPanel +androidx.activity.R$string +com.google.android.material.R$styleable: int CardView_contentPaddingRight +androidx.drawerlayout.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$id: int star_container +com.turingtechnologies.materialscrollbar.R$attr: int helperText +androidx.appcompat.R$attr: int alertDialogButtonGroupStyle +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenManager sInstance +androidx.appcompat.R$styleable: int AppCompatTheme_android_windowIsFloating +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void setShouldHandleInJava(boolean) +com.tencent.bugly.b: void a(android.content.Context,java.lang.String,boolean,com.tencent.bugly.BuglyStrategy) +wangdaye.com.geometricweather.background.polling.basic.UpdateService: UpdateService() +androidx.constraintlayout.widget.R$styleable: int ActionMode_subtitleTextStyle +com.google.android.material.R$xml: int standalone_badge +com.jaredrummler.android.colorpicker.R$attr: int logoDescription +com.turingtechnologies.materialscrollbar.R$id: int progress_circular +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_3 +androidx.preference.R$attr: int colorAccent +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean fused +com.xw.repo.bubbleseekbar.R$attr: int bsb_max +com.jaredrummler.android.colorpicker.R$style: int Base_V26_Theme_AppCompat_Light +cyanogenmod.weather.WeatherInfo$Builder: int mTempUnit +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setUrl(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int CloudCover +com.jaredrummler.android.colorpicker.R$attr: int listPopupWindowStyle +wangdaye.com.geometricweather.R$layout: int material_clock_display +androidx.vectordrawable.R$id: int accessibility_custom_action_23 +com.baidu.location.indoor.c: void clear() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: void setTo(java.lang.String) +androidx.preference.R$attr: int drawableEndCompat +com.google.android.material.R$styleable: int Chip_shapeAppearanceOverlay +androidx.swiperefreshlayout.R$dimen: int compat_control_corner_material +android.didikee.donate.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.google.android.material.R$id: int parentPanel +okhttp3.internal.Util: java.lang.AssertionError assertionError(java.lang.String,java.lang.Exception) +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setProgress(float) +androidx.preference.R$dimen: int hint_pressed_alpha_material_dark +okio.Buffer: long readDecimalLong() +wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationY +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: AccuCurrentResult$PrecipitationSummary$PastHour() +androidx.lifecycle.ViewModel: ViewModel() +com.google.android.material.bottomnavigation.BottomNavigationView: void setLabelVisibilityMode(int) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver parent +com.google.android.material.R$attr: int flow_verticalGap +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.lang.String accuracy +com.google.android.material.R$styleable: int MockView_mock_label +androidx.viewpager2.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$id: int transparency_text +wangdaye.com.geometricweather.R$id: int transition_layout_save +androidx.appcompat.widget.Toolbar: android.widget.TextView getSubtitleTextView() +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_4 +androidx.vectordrawable.animated.R$color: R$color() +androidx.fragment.R$dimen +okhttp3.internal.http2.Http2Reader$Handler: void alternateService(int,java.lang.String,okio.ByteString,java.lang.String,int,long) +retrofit2.ParameterHandler$HeaderMap: retrofit2.Converter valueConverter +retrofit2.Platform: java.util.List defaultCallAdapterFactories(java.util.concurrent.Executor) +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState FAILED +com.google.android.material.R$styleable: int ProgressIndicator_indicatorColor +wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_checkedButton +androidx.constraintlayout.widget.R$id: int right_side +com.amap.api.fence.GeoFence: java.util.List getDistrictItemList() +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_WIFI_ICON +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +okhttp3.internal.http1.Http1Codec$FixedLengthSink: okio.ForwardingTimeout timeout +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: java.lang.String Unit +com.google.android.material.R$styleable: int Layout_constraint_referenced_ids +androidx.preference.R$styleable: int SwitchPreference_switchTextOff +com.google.android.material.slider.Slider: void setThumbElevation(float) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +io.reactivex.internal.schedulers.RxThreadFactory +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge +androidx.core.R$style: int Widget_Compat_NotificationActionText +androidx.preference.R$style: int TextAppearance_AppCompat_Display1 +com.google.android.material.R$attr: int arcMode +com.google.gson.FieldNamingPolicy$5: FieldNamingPolicy$5(java.lang.String,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindSpeedStart() +com.tencent.bugly.proguard.c: byte[] a() +wangdaye.com.geometricweather.R$styleable: int ActionMenuItemView_android_minWidth +androidx.constraintlayout.widget.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$drawable: int abc_ab_share_pack_mtrl_alpha +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver +com.google.android.material.R$style: int Base_Widget_AppCompat_Spinner_Underlined +com.xw.repo.bubbleseekbar.R$attr: int colorBackgroundFloating +androidx.viewpager2.R$styleable: int[] RecyclerView +com.google.android.material.progressindicator.ProgressIndicator: int getCircularInset() +com.google.android.material.chip.Chip: void setChipIcon(android.graphics.drawable.Drawable) +androidx.swiperefreshlayout.R$id: int tag_transition_group +com.turingtechnologies.materialscrollbar.R$color: int button_material_light +androidx.cardview.R$dimen +androidx.recyclerview.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_hovered_z +cyanogenmod.app.BaseLiveLockManagerService$1: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +io.reactivex.Observable: io.reactivex.Observable unsubscribeOn(io.reactivex.Scheduler) +retrofit2.converter.gson.GsonConverterFactory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_black +com.google.android.material.R$id: int accessibility_custom_action_1 +androidx.preference.R$id: int right +wangdaye.com.geometricweather.R$styleable: int Spinner_android_popupBackground +com.jaredrummler.android.colorpicker.R$attr: int key +okhttp3.internal.http2.Http2Reader$Handler: void settings(boolean,okhttp3.internal.http2.Settings) +androidx.fragment.R$id: int tag_accessibility_heading +androidx.preference.R$attr: int tickMarkTintMode +androidx.appcompat.R$drawable: int abc_ic_star_black_36dp +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_curveFit +wangdaye.com.geometricweather.R$styleable: int Motion_transitionEasing +com.google.android.gms.base.R$styleable: int SignInButton_scopeUris +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.preference.R$style: int Widget_AppCompat_SeekBar_Discrete +okio.Buffer: okio.Buffer$UnsafeCursor readUnsafe() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_height +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void setCancellable(io.reactivex.functions.Cancellable) +androidx.constraintlayout.widget.R$attr: int customFloatValue +com.google.android.material.datepicker.Month: android.os.Parcelable$Creator CREATOR +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$drawable: int shortcuts_snow_foreground +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default +com.turingtechnologies.materialscrollbar.R$attr: int insetForeground +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintRight_toRightOf +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabUnboundedRipple +wangdaye.com.geometricweather.R$layout: int item_icon_provider +okhttp3.internal.connection.RouteSelector$Selection +retrofit2.converter.gson.GsonConverterFactory +wangdaye.com.geometricweather.R$layout: int container_main_aqi +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_ON +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_menu_item_layout +com.tencent.bugly.proguard.b: b(java.lang.String) +james.adaptiveicon.R$drawable: int abc_textfield_search_material +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setMobileDataEnabled_1 +com.google.android.material.R$styleable: int[] MockView +com.xw.repo.bubbleseekbar.R$attr: int buttonBarStyle +android.didikee.donate.R$id: int progress_circular +androidx.viewpager.R$styleable: int FontFamilyFont_ttcIndex +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max +james.adaptiveicon.R$dimen: int abc_text_size_title_material_toolbar +com.google.android.material.R$attr: int listDividerAlertDialog +com.google.android.material.R$styleable: int TextInputLayout_prefixTextColor +retrofit2.RequestFactory$Builder: boolean gotField +cyanogenmod.profiles.StreamSettings: int mStreamId +wangdaye.com.geometricweather.R$style: int Platform_ThemeOverlay_AppCompat +androidx.transition.R$layout: int notification_action_tombstone +com.google.android.material.R$style: int Widget_AppCompat_ImageButton +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMode +wangdaye.com.geometricweather.R$styleable: int Chip_showMotionSpec +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) +com.xw.repo.BubbleSeekBar: void setThumbColor(int) +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline2 +wangdaye.com.geometricweather.R$dimen: int abc_config_prefDialogWidth +cyanogenmod.providers.CMSettings +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotationX +cyanogenmod.providers.DataUsageContract: java.lang.String _ID +com.google.android.material.R$styleable: int ConstraintSet_motionProgress +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: int getStatus() +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat +androidx.preference.R$anim: int fragment_fast_out_extra_slow_in +cyanogenmod.externalviews.ExternalView$7: ExternalView$7(cyanogenmod.externalviews.ExternalView) +com.tencent.bugly.crashreport.crash.anr.b: void b() +androidx.constraintlayout.widget.R$dimen: int abc_progress_bar_height_material +okhttp3.TlsVersion: okhttp3.TlsVersion TLS_1_2 +androidx.appcompat.R$drawable: int notification_bg_low_pressed +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicLong index +androidx.hilt.R$id: int accessibility_custom_action_5 +androidx.appcompat.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.google.android.material.R$color: int material_on_primary_emphasis_medium +wangdaye.com.geometricweather.R$attr: int iconTintMode +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast +io.reactivex.exceptions.MissingBackpressureException: MissingBackpressureException(java.lang.String) +androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_EditText +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: int UnitType +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX) +okhttp3.RequestBody$1: RequestBody$1(okhttp3.MediaType,okio.ByteString) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onNext(java.lang.Object) +com.google.android.gms.base.R$styleable: int SignInButton_buttonSize +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Caption +androidx.preference.R$id: int accessibility_custom_action_16 +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void removeCustomTileFromListener(cyanogenmod.app.ICustomTileListener,java.lang.String,java.lang.String,int) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipBackgroundColor +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean isDisposed() +com.tencent.bugly.BuglyStrategy: boolean isBuglyLogUpload() +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_shapeAppearance +com.xw.repo.bubbleseekbar.R$color: R$color() +androidx.appcompat.R$style: int Theme_AppCompat_Light_DarkActionBar +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.b n +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRealFeelTemperature +com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_android_entryValues +com.google.android.material.R$styleable: int MenuItem_contentDescription +androidx.constraintlayout.widget.R$attr: int actionModePasteDrawable +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_light +com.google.android.material.R$styleable: int StateSet_defaultState +androidx.hilt.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_chainUseRtl +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_type +android.didikee.donate.R$anim: int abc_fade_in +com.google.android.material.R$drawable: int abc_action_bar_item_background_material +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListPopupWindow +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory create(javax.inject.Provider,javax.inject.Provider) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: double speed +com.turingtechnologies.materialscrollbar.R$styleable: int View_paddingStart +okhttp3.internal.http2.Header: okio.ByteString RESPONSE_STATUS +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_arrowShaftLength +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$StreamTimeout writeTimeout +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String name +androidx.constraintlayout.widget.R$style: int Base_V23_Theme_AppCompat_Light +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedWidthMinor +androidx.appcompat.widget.Toolbar: int getPopupTheme() +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain6h +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +wangdaye.com.geometricweather.R$string: int key_trend_horizontal_line_switch +wangdaye.com.geometricweather.R$id: int action_bar_spinner +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_android_layout +cyanogenmod.weather.IRequestInfoListener$Stub: int TRANSACTION_onLookupCityRequestCompleted +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setWind(double,double,int) +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayWeekWidgetConfigActivity: Hilt_ClockDayWeekWidgetConfigActivity() +com.google.android.material.internal.VisibilityAwareImageButton +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontStyle +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListView_Menu +wangdaye.com.geometricweather.R$id: int deltaRelative +androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context,android.util.AttributeSet) +androidx.preference.R$styleable: int StateListDrawable_android_enterFadeDuration +androidx.hilt.work.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_thumb +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean isDisposed() +com.google.android.material.chip.Chip: void setCloseIconVisible(int) +wangdaye.com.geometricweather.R$styleable: int[] TagView +com.google.android.material.R$dimen: int material_cursor_width +androidx.appcompat.R$drawable: int abc_list_selector_background_transition_holo_light +androidx.preference.R$style: int Widget_AppCompat_Light_ListView_DropDown +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void onAttachedToWindow() +androidx.loader.R$drawable: int notification_action_background +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderCerts +androidx.appcompat.R$styleable: int[] RecycleListView +androidx.core.app.NotificationCompatSideChannelService: NotificationCompatSideChannelService() +wangdaye.com.geometricweather.main.dialogs.BackgroundLocationDialog: BackgroundLocationDialog() +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_weightSum +androidx.constraintlayout.motion.widget.MotionLayout: void setOnShow(float) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void delete() +androidx.core.R$dimen: int notification_media_narrow_margin +io.reactivex.internal.subscriptions.BasicQueueSubscription: int requestFusion(int) +com.google.android.material.bottomnavigation.BottomNavigationItemView: com.google.android.material.badge.BadgeDrawable getBadge() +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents +androidx.fragment.R$id: int time +cyanogenmod.profiles.BrightnessSettings$1: cyanogenmod.profiles.BrightnessSettings createFromParcel(android.os.Parcel) +cyanogenmod.providers.CMSettings$System: java.lang.String LIVE_DISPLAY_HINTED +com.tencent.bugly.crashreport.common.info.b: long i() +androidx.preference.R$styleable: int FragmentContainerView_android_name +james.adaptiveicon.R$layout: int abc_screen_toolbar +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property HoursOfSun +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarSize +com.google.android.material.slider.BaseSlider: float getValueOfTouchPositionAbsolute() +com.google.android.material.chip.Chip: void setCloseIconResource(int) +james.adaptiveicon.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +okio.RealBufferedSource: int readInt() +com.turingtechnologies.materialscrollbar.R$anim: int design_bottom_sheet_slide_out +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit MPH +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String quality +com.google.android.material.R$id: int src_atop +androidx.work.R$color: int ripple_material_light +okio.Timeout: long timeoutNanos() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_activityChooserViewStyle +com.tencent.bugly.proguard.ar: void a(com.tencent.bugly.proguard.i) +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType COLOR_DRAWABLE_TYPE +com.google.android.material.R$attr: int chipSpacingHorizontal +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionModeOverlay +androidx.hilt.R$id: int accessibility_custom_action_6 +cyanogenmod.app.Profile$LockMode: int DEFAULT +com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipIconTint() +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_commitIcon +com.github.rahatarmanahmed.cpv.R$color: int cpv_default_color +wangdaye.com.geometricweather.R$attr: int layout_behavior +com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.StrategyBean a(com.tencent.bugly.crashreport.common.strategy.a,com.tencent.bugly.crashreport.common.strategy.StrategyBean) +android.didikee.donate.R$styleable: int Toolbar_titleMargins +com.google.android.material.internal.FlowLayout: void setItemSpacing(int) +wangdaye.com.geometricweather.R$styleable: int Constraint_android_transformPivotX +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_chainUseRtl +androidx.hilt.lifecycle.R$id: int italic +org.greenrobot.greendao.AbstractDaoSession: void refresh(java.lang.Object) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_dialogPreferenceStyle +com.tencent.bugly.crashreport.common.info.a: java.lang.String h +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_18 +okhttp3.CertificatePinner$Pin: java.lang.String toString() +wangdaye.com.geometricweather.R$styleable: int MenuView_android_itemIconDisabledAlpha +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: double Value +cyanogenmod.hardware.CMHardwareManager: int getThermalState() +androidx.vectordrawable.R$dimen: int notification_right_side_padding_top +cyanogenmod.util.ColorUtils: int[] SOLID_COLORS +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String advice +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_256_GCM_SHA384 +cyanogenmod.hardware.DisplayMode: java.lang.String name +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum +com.google.android.material.R$styleable: int MaterialButton_android_insetTop +androidx.appcompat.widget.ActionMenuView: void setPresenter(androidx.appcompat.widget.ActionMenuPresenter) +wangdaye.com.geometricweather.R$styleable: int Preference_allowDividerAbove +wangdaye.com.geometricweather.R$drawable: int abc_spinner_textfield_background_material +james.adaptiveicon.R$dimen: int abc_button_inset_vertical_material +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_corner +androidx.dynamicanimation.R$styleable: int GradientColor_android_centerY +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderPackage +androidx.preference.UnPressableLinearLayout: UnPressableLinearLayout(android.content.Context) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_isPreferenceVisible +com.google.android.material.R$attr: int textAppearanceSubtitle2 +com.google.android.material.R$attr: int layout_constraintBottom_toTopOf +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationY +okhttp3.internal.connection.RealConnection: java.util.List allocations +cyanogenmod.providers.CMSettings$NameValueCache: android.content.IContentProvider lazyGetProvider(android.content.ContentResolver) +com.google.android.gms.internal.common.zzq: zzq(com.google.android.gms.internal.common.zzo) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_checkboxStyle +com.turingtechnologies.materialscrollbar.R$layout: int design_menu_item_action_area +com.tencent.bugly.crashreport.crash.d: com.tencent.bugly.crashreport.crash.d a +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light +com.google.android.material.behavior.HideBottomViewOnScrollBehavior: HideBottomViewOnScrollBehavior() +com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode[] values() +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean setActiveProfileByName(java.lang.String) +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getBackgroundDrawable() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial: double Value +androidx.hilt.R$id: int accessibility_custom_action_26 +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_28 +okio.SegmentedByteString: void write(java.io.OutputStream) +com.tencent.bugly.b: void a(com.tencent.bugly.a) +com.google.gson.stream.JsonReader: int PEEKED_BEGIN_OBJECT +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_18 +androidx.appcompat.R$attr: R$attr() +androidx.coordinatorlayout.R$dimen: int notification_small_icon_size_as_large +androidx.constraintlayout.widget.R$styleable: int PopupWindow_android_popupBackground +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorColor +wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWeekWidgetConfigActivity: Hilt_DayWeekWidgetConfigActivity() +com.xw.repo.bubbleseekbar.R$attr: int itemPadding +androidx.fragment.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_2_00 +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: int getCollapsedSize() +com.amap.api.fence.PoiItem: void writeToParcel(android.os.Parcel,int) +androidx.activity.R$styleable: int GradientColorItem_android_color +androidx.hilt.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_tooltipForegroundColor +okio.GzipSource: void close() +com.google.android.material.R$id: int test_checkbox_android_button_tint +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableTintMode +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: java.lang.String modeId +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_alpha +com.jaredrummler.android.colorpicker.R$id: int tag_unhandled_key_event_manager +okhttp3.Cache$CacheResponseBody$1: Cache$CacheResponseBody$1(okhttp3.Cache$CacheResponseBody,okio.Source,okhttp3.internal.cache.DiskLruCache$Snapshot) +wangdaye.com.geometricweather.R$dimen: int daily_trend_item_height +androidx.preference.R$attr: int actionBarDivider +androidx.appcompat.widget.Toolbar: int getCurrentContentInsetRight() +android.didikee.donate.R$styleable: int View_paddingEnd +androidx.preference.R$string: int abc_toolbar_collapse_description +androidx.preference.R$id: int action_bar_title +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_95 +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.LifecycleOwner get() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List weather +com.google.android.material.progressindicator.ProgressIndicator: void setProgressDrawable(android.graphics.drawable.Drawable) +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error +okhttp3.FormBody$Builder: okhttp3.FormBody build() +com.google.android.material.R$styleable: int FontFamilyFont_android_fontStyle +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +wangdaye.com.geometricweather.R$string: int wind_2 +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_subtitle_top_margin_material +wangdaye.com.geometricweather.R$styleable: int Badge_badgeGravity +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setUrl(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotationX +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_HIGH +androidx.preference.R$dimen: int abc_dialog_padding_top_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: java.lang.String getDesc() +wangdaye.com.geometricweather.R$attr: int tabPaddingEnd +com.google.android.material.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: java.lang.String Unit +com.google.android.gms.signin.internal.zag: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog_Alert +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_placeholder_placeholder_emptyVisibility +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int ISOLATED_THUNDERSHOWERS +androidx.constraintlayout.widget.R$id: R$id() +com.google.android.material.R$dimen: int notification_top_pad +androidx.lifecycle.MethodCallsLogger: boolean approveCall(java.lang.String,int) +james.adaptiveicon.R$layout: int abc_action_bar_title_item +retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: OkHttpCall$ExceptionCatchingResponseBody$1(retrofit2.OkHttpCall$ExceptionCatchingResponseBody,okio.Source) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) +wangdaye.com.geometricweather.R$id: int cpv_color_panel_new +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_btn_unelevated_state_list_anim +com.google.android.material.R$styleable: int ConstraintLayout_Layout_chainUseRtl +android.didikee.donate.R$drawable: int notification_bg_normal_pressed +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +com.google.android.material.R$styleable: int MotionScene_defaultDuration +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer grassLevel +androidx.appcompat.R$style: int AlertDialog_AppCompat +wangdaye.com.geometricweather.R$style: int PreferenceFragmentList_Material +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionMenuTextAppearance +androidx.customview.R$id: int text +wangdaye.com.geometricweather.R$styleable: int[] CompoundButton +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String so2Desc +androidx.preference.R$styleable: int PreferenceTheme_preferenceInformationStyle +com.google.android.material.chip.Chip: void setMaxLines(int) +com.xw.repo.bubbleseekbar.R$attr: int firstBaselineToTopHeight +cyanogenmod.profiles.RingModeSettings: android.os.Parcelable$Creator CREATOR +android.didikee.donate.R$styleable: int AppCompatTheme_colorControlNormal +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_minWidth +android.didikee.donate.R$dimen: int abc_dropdownitem_text_padding_left +androidx.work.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$drawable: int notification_icon_background +io.reactivex.internal.util.VolatileSizeArrayList: boolean addAll(java.util.Collection) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Small +androidx.constraintlayout.widget.R$drawable +okio.ByteString: char[] HEX_DIGITS +okhttp3.Protocol: okhttp3.Protocol get(java.lang.String) +okhttp3.Request$Builder: okhttp3.Request$Builder post(okhttp3.RequestBody) +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +androidx.preference.R$layout: int abc_action_bar_title_item +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getDailyForecast() +wangdaye.com.geometricweather.R$xml: int live_wallpaper +okhttp3.internal.cache.DiskLruCache: long size() +io.reactivex.internal.schedulers.ScheduledRunnable: ScheduledRunnable(java.lang.Runnable,io.reactivex.internal.disposables.DisposableContainer) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceInformationStyle +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconContentDescription +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCutDrawable +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level BODY +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarSplitStyle +cyanogenmod.providers.CMSettings$System: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) +androidx.constraintlayout.widget.R$styleable: int ActivityChooserView_initialActivityCount +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetStart +androidx.appcompat.R$attr: int singleChoiceItemLayout +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dropDownListViewStyle +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,io.reactivex.Scheduler) +android.didikee.donate.R$dimen: int highlight_alpha_material_dark +wangdaye.com.geometricweather.R$color: int mtrl_btn_bg_color_selector +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherComplete() +okio.Base64: java.lang.String encode(byte[]) +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayWeekProvider: WidgetClockDayWeekProvider() +wangdaye.com.geometricweather.R$animator: int weather_haze_2 +okio.Buffer: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial +androidx.appcompat.R$drawable: int abc_seekbar_tick_mark_material +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Bridge +android.didikee.donate.R$id: int time +wangdaye.com.geometricweather.R$styleable: int StateSet_defaultState +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_3 +wangdaye.com.geometricweather.R$string: int feedback_not_yet_location +com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getIconTintMode() +wangdaye.com.geometricweather.R$styleable: int Layout_minHeight +com.google.android.material.R$id: int checked +androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_width_overflow_material +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver$InnerObserver: long serialVersionUID +okhttp3.internal.http2.Http2Reader$ContinuationSource: long read(okio.Buffer,long) +com.google.android.material.R$styleable: int AppCompatTheme_activityChooserViewStyle +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_baselineAligned +okio.Buffer: okio.Buffer writeLong(long) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String getUnit() +okio.BufferedSink: okio.BufferedSink writeShort(int) +com.amap.api.location.CoordinateConverter: float calculateLineDistance(com.amap.api.location.DPoint,com.amap.api.location.DPoint) +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status WAITING_FOR_SIZE +cyanogenmod.themes.ThemeChangeRequest$Builder: void buildChangeRequestFromThemeConfig(android.content.res.ThemeConfig) +com.xw.repo.bubbleseekbar.R$drawable: int notification_icon_background +androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_to_on_mtrl_000 +wangdaye.com.geometricweather.R$drawable: int widget_multi_city +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_trackTintMode +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_Test +com.google.android.material.chip.Chip: void setCloseIconStartPaddingResource(int) +android.didikee.donate.R$styleable: int AppCompatTheme_tooltipFrameBackground +cyanogenmod.app.IPartnerInterface$Stub: IPartnerInterface$Stub() +com.baidu.location.indoor.c: int a +okhttp3.internal.http2.Hpack: int PREFIX_6_BITS +androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_text_padding_left +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_labelVisibilityMode +com.google.android.material.R$styleable: int AppCompatTextView_drawableLeftCompat +wangdaye.com.geometricweather.R$color: int material_slider_thumb_color +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontVariationSettings +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec newStream(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,boolean) +com.turingtechnologies.materialscrollbar.R$attr: int actionBarItemBackground +com.bumptech.glide.integration.okhttp.R$styleable: int[] ColorStateListItem +androidx.appcompat.resources.R$id: int blocking +com.bumptech.glide.R$styleable: int[] CoordinatorLayout +org.greenrobot.greendao.AbstractDao: java.util.List queryRaw(java.lang.String,java.lang.String[]) +androidx.vectordrawable.R$id: int title +wangdaye.com.geometricweather.R$style: int Preference_CheckBoxPreference_Material +wangdaye.com.geometricweather.R$id: int auto +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircleRadius +wangdaye.com.geometricweather.R$color: int material_cursor_color +wangdaye.com.geometricweather.R$attr: R$attr() +wangdaye.com.geometricweather.main.dialogs.LocationHelpDialog +com.google.android.material.R$id: int selection_type +wangdaye.com.geometricweather.R$font: int product_sans_black_italic +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: long EffectiveEpochDate +androidx.preference.R$styleable: int Toolbar_title +wangdaye.com.geometricweather.db.entities.AlertEntity: long getTime() +androidx.hilt.lifecycle.R$integer +androidx.hilt.work.R$string: R$string() +androidx.hilt.work.R$styleable: int[] ColorStateListItem +androidx.core.R$id: int async +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_BottomSheetDialog +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar com.github.rahatarmanahmed.cpv.CircularProgressView: void removeListener(com.github.rahatarmanahmed.cpv.CircularProgressViewListener) -okio.Buffer: java.lang.String readString(java.nio.charset.Charset) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_constraint_referenced_ids -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.internal.util.AtomicThrowable error -com.autonavi.aps.amapapi.model.AMapLocationServer: void a(long) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -cyanogenmod.externalviews.KeyguardExternalViewProviderService: boolean DEBUG -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xmp -okhttp3.CacheControl: int maxAgeSeconds() -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int sourceMode -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display4 -cyanogenmod.app.CustomTile$ExpandedStyle$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.R$attr: int waveVariesBy -androidx.constraintlayout.widget.R$attr: int titleMarginBottom -okio.Pipe: boolean sinkClosed -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: KeyguardExternalViewProviderService$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService) -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_voice_search_api_material -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabAlignmentMode -com.amap.api.location.AMapLocationClient: void setLocationOption(com.amap.api.location.AMapLocationClientOption) -okio.Buffer: okio.ByteString sha1() -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: long serialVersionUID -wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_1 -com.xw.repo.bubbleseekbar.R$attr: int coordinatorLayoutStyle -androidx.constraintlayout.widget.R$attr: int tickMark -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() -androidx.preference.R$styleable: int View_paddingStart -com.google.android.material.R$styleable: int DrawerArrowToggle_arrowShaftLength +cyanogenmod.externalviews.KeyguardExternalView$2: boolean requestDismiss() +androidx.drawerlayout.R$id: int tag_transition_group +androidx.preference.R$layout: int abc_alert_dialog_button_bar_material +android.didikee.donate.R$id: int src_in +okhttp3.MultipartBody$Builder: MultipartBody$Builder(java.lang.String) +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_BLUE_INDEX +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_android_layout +com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_duration +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.constraintlayout.widget.R$styleable: int ActionBar_background +androidx.lifecycle.livedata.core.R: R() +wangdaye.com.geometricweather.common.basic.models.weather.History: int nighttimeTemperature +retrofit2.KotlinExtensions: java.lang.Object awaitResponse(retrofit2.Call,kotlin.coroutines.Continuation) +com.google.android.material.R$dimen: int mtrl_textinput_end_icon_margin_start +android.didikee.donate.R$attr: int windowFixedWidthMinor +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken[] $VALUES +androidx.preference.R$id: int scrollIndicatorUp +androidx.dynamicanimation.R$styleable: int[] FontFamily +androidx.preference.R$attr: int navigationContentDescription +wangdaye.com.geometricweather.R$id: int fragment_drawer +com.google.android.material.bottomsheet.BottomSheetBehavior +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindLevel +okhttp3.Cache$CacheRequestImpl: boolean done +wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeTitle +com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableItem +cyanogenmod.util.ColorUtils +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +com.xw.repo.bubbleseekbar.R$color: int material_grey_900 +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_cancelRequest +androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStore,androidx.lifecycle.ViewModelProvider$Factory) +com.bumptech.glide.R$dimen +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_titleTextStyle +okhttp3.FormBody: java.lang.String encodedValue(int) +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean filterSigabrtSysLog() +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +com.jaredrummler.android.colorpicker.R$attr: int titleMarginStart +androidx.lifecycle.extensions.R$styleable: int[] FontFamilyFont +james.adaptiveicon.R$color: int abc_primary_text_disable_only_material_dark +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedWidthMajor() +wangdaye.com.geometricweather.R$xml: int icon_provider_shortcut_filter +wangdaye.com.geometricweather.R$attr: int errorEnabled +wangdaye.com.geometricweather.R$attr: int cpv_progress +retrofit2.Invocation: retrofit2.Invocation of(java.lang.reflect.Method,java.util.List) +com.xw.repo.bubbleseekbar.R$attr: int thumbTint +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType GIF +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: IAppSuggestManager$Stub$Proxy(android.os.IBinder) +okhttp3.internal.ws.WebSocketWriter: okhttp3.internal.ws.WebSocketWriter$FrameSink frameSink +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean cancelled +com.google.android.material.R$styleable: int[] Layout +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode CANCEL +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setForecastDaily(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean) +okhttp3.Address: java.net.Proxy proxy() +com.turingtechnologies.materialscrollbar.R$attr: int paddingEnd +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf +cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.IAppSuggestManager sImpl +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: java.lang.Integer freezing +com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_icon +okhttp3.logging.HttpLoggingInterceptor$Logger: okhttp3.logging.HttpLoggingInterceptor$Logger DEFAULT +wangdaye.com.geometricweather.R$attr: int actionButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +androidx.recyclerview.R$id: int accessibility_custom_action_15 +com.google.android.material.chip.Chip: void setChipStrokeColorResource(int) +wangdaye.com.geometricweather.R$attr: int sizePercent +androidx.preference.R$styleable: int[] CheckBoxPreference +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_spinBars +com.turingtechnologies.materialscrollbar.R$attr: int layout_collapseParallaxMultiplier +cyanogenmod.providers.CMSettings$System: java.lang.String DIALER_OPENCNAM_ACCOUNT_SID +com.google.android.material.R$id: int tag_accessibility_heading +com.google.android.material.R$attr: int layout_constraintHorizontal_chainStyle +androidx.hilt.work.R$dimen: int compat_button_inset_vertical_material +androidx.preference.R$attr: int actionMenuTextColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX() +androidx.swiperefreshlayout.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.common.ui.widgets.DonateImageView +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startY +com.bumptech.glide.R$integer: R$integer() +com.google.android.material.R$attr: int trackColor +com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context) +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_gravity +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: int Index +io.reactivex.internal.subscribers.StrictSubscriber: org.reactivestreams.Subscriber downstream +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String LAST_UPDATE_TIME +cyanogenmod.app.IProfileManager: android.app.NotificationGroup getNotificationGroup(android.os.ParcelUuid) +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_queryHint +com.google.android.material.R$attr: int activityChooserViewStyle +androidx.legacy.content.WakefulBroadcastReceiver +okhttp3.ResponseBody$1: long contentLength() +androidx.preference.R$styleable: int DialogPreference_android_positiveButtonText +androidx.preference.R$styleable: int GradientColor_android_endY +androidx.loader.R$drawable: int notification_template_icon_low_bg +com.turingtechnologies.materialscrollbar.R$attr: int coordinatorLayoutStyle +com.google.android.material.chip.Chip: void setCheckedIconEnabled(boolean) +wangdaye.com.geometricweather.R$string: int key_widget_config +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$styleable: int ActionBar_hideOnContentScroll +androidx.constraintlayout.widget.R$id: int spline +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +cyanogenmod.themes.IThemeService$Stub +com.google.android.material.R$attr: int itemShapeInsetStart +okhttp3.internal.ws.WebSocketWriter: okio.Sink newMessageSink(int,long) +james.adaptiveicon.R$styleable: int AppCompatSeekBar_tickMarkTintMode +androidx.hilt.R$id: int accessibility_custom_action_4 +com.xw.repo.bubbleseekbar.R$integer +androidx.core.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$style: int TestStyleWithLineHeight +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_begin +io.reactivex.internal.subscribers.StrictSubscriber: void cancel() +com.turingtechnologies.materialscrollbar.R$attr: int editTextColor +androidx.recyclerview.R$id: int accessibility_custom_action_11 +io.reactivex.internal.util.VolatileSizeArrayList: boolean contains(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric Metric +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_subMenuArrow +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: ExecutorScheduler$ExecutorWorker$BooleanRunnable(java.lang.Runnable) +okhttp3.internal.platform.AndroidPlatform: java.lang.Class sslParametersClass +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: AccuDailyResult$DailyForecasts$Day() +androidx.preference.R$attr: int searchIcon +com.xw.repo.bubbleseekbar.R$id: int split_action_bar +cyanogenmod.providers.CMSettings$Secure: java.lang.String POWER_MENU_ACTIONS +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Caption +com.autonavi.aps.amapapi.model.AMapLocationServer: void g(java.lang.String) +okio.BufferedSource: long readAll(okio.Sink) +org.greenrobot.greendao.DaoException: DaoException(java.lang.Throwable) +com.google.android.material.bottomappbar.BottomAppBar: float getCradleVerticalOffset() +com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColorResource(int) +androidx.constraintlayout.widget.R$attr: int editTextColor +com.google.android.material.R$layout: int material_timepicker +com.turingtechnologies.materialscrollbar.R$anim: int abc_grow_fade_in_from_bottom +com.tencent.bugly.crashreport.common.strategy.a: a(android.content.Context,java.util.List) +com.google.android.material.R$styleable: int Constraint_android_layout_marginLeft +androidx.appcompat.R$attr: int popupMenuStyle +com.amap.api.location.DPoint: void setLongitude(double) +com.tencent.bugly.proguard.f: void a(java.lang.StringBuilder,int) +cyanogenmod.power.IPerformanceManager$Stub$Proxy: android.os.IBinder mRemote +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: int UnitType +wangdaye.com.geometricweather.R$color: int weather_source_accu +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WetBulbTemperature +wangdaye.com.geometricweather.R$string: int wind_4 +io.reactivex.Observable: io.reactivex.Observable delay(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$attr: int popupTheme +wangdaye.com.geometricweather.R$attr: int strokeWidth +androidx.preference.R$attr: int numericModifiers +io.reactivex.internal.util.NotificationLite: boolean isError(java.lang.Object) +james.adaptiveicon.R$drawable: int notification_action_background +androidx.appcompat.R$style: int TextAppearance_AppCompat_Headline +androidx.recyclerview.R$attr: int ttcIndex +okhttp3.internal.http2.Huffman$Node: Huffman$Node(int,int) +wangdaye.com.geometricweather.R$id: int item_about_translator_title +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.os.Build$CM_VERSION_CODES: int BOYSENBERRY +androidx.legacy.coreutils.R$styleable: int GradientColor_android_type +androidx.preference.R$styleable: int AppCompatTheme_checkedTextViewStyle +androidx.preference.R$styleable: int PreferenceTheme_editTextPreferenceStyle +okhttp3.ConnectionPool +android.didikee.donate.R$attr: int panelMenuListTheme +com.bumptech.glide.integration.okhttp.R$string +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: java.lang.String getActiveWeatherServiceProviderLabel() +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX() +com.google.android.material.R$layout: int test_design_radiobutton +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status valueOf(java.lang.String) +wangdaye.com.geometricweather.R$color: int abc_secondary_text_material_light +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: MfForecastResult$DailyForecast$Weather() +androidx.appcompat.widget.DropDownListView: void setSelectorEnabled(boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX() +com.jaredrummler.android.colorpicker.R$id: int large +androidx.constraintlayout.widget.R$styleable: int Spinner_android_popupBackground +androidx.lifecycle.Lifecycling: int GENERATED_CALLBACK +androidx.lifecycle.SavedStateViewModelFactory: android.os.Bundle mDefaultArgs +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_5 +okhttp3.internal.cache.DiskLruCache$Entry: java.io.File[] cleanFiles +cyanogenmod.app.CustomTile$GridExpandedStyle +com.google.android.material.R$styleable: int Spinner_android_entries +com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_RadioButton +cyanogenmod.weather.CMWeatherManager$1$1: CMWeatherManager$1$1(cyanogenmod.weather.CMWeatherManager$1,java.lang.String) +retrofit2.HttpServiceMethod: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) +androidx.appcompat.widget.AppCompatSpinner: int getDropDownWidth() +com.tencent.bugly.proguard.z: java.lang.String b(java.lang.String,java.lang.String) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ProgressBar +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +androidx.preference.R$layout: int preference_dialog_edittext +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleTextColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: int UnitType +com.google.android.material.snackbar.SnackbarContentLayout: void setMaxInlineActionWidth(int) +androidx.lifecycle.ComputableLiveData$3: ComputableLiveData$3(androidx.lifecycle.ComputableLiveData) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_weight +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onNext(java.lang.Object) +androidx.appcompat.R$drawable: int abc_ic_voice_search_api_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int RainProbability +com.turingtechnologies.materialscrollbar.R$attr: int buttonGravity +james.adaptiveicon.R$string: int abc_capital_on +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_icon +com.jaredrummler.android.colorpicker.R$color: int accent_material_dark +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setTranslateY(float) +cyanogenmod.externalviews.KeyguardExternalView$11: cyanogenmod.externalviews.KeyguardExternalView this$0 +androidx.appcompat.R$styleable: int TextAppearance_textLocale +com.turingtechnologies.materialscrollbar.R$integer: int mtrl_btn_anim_duration_ms +com.xw.repo.bubbleseekbar.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitation() +com.google.android.gms.internal.common.zzq: java.lang.Object zza() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: java.lang.Integer proba6H +io.reactivex.internal.util.ExceptionHelper$Termination: long serialVersionUID +wangdaye.com.geometricweather.db.entities.LocationEntity: void setLatitude(float) +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +com.xw.repo.bubbleseekbar.R$attr: int arrowShaftLength +com.tencent.bugly.proguard.ak: java.lang.String a +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: java.lang.Object resource +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHeight_percent +wangdaye.com.geometricweather.R$drawable: int ic_wind +com.google.android.material.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteX +com.jaredrummler.android.colorpicker.R$color: int abc_secondary_text_material_light +cyanogenmod.weather.WeatherInfo: java.lang.String mCity +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.lang.Throwable error +androidx.appcompat.R$attr: int fontStyle +wangdaye.com.geometricweather.R$id: int FUNCTION +android.didikee.donate.R$styleable: int MenuItem_contentDescription +wangdaye.com.geometricweather.R$attr: int dotGap +okio.InflaterSource: okio.BufferedSource source +james.adaptiveicon.R$style: int Platform_V25_AppCompat_Light +james.adaptiveicon.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain +com.google.android.material.R$styleable: int Toolbar_titleMargins +org.greenrobot.greendao.AbstractDao: void refresh(java.lang.Object) +androidx.preference.R$color: int button_material_dark +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$style: int Base_V26_Theme_AppCompat +com.turingtechnologies.materialscrollbar.R$attr: int subMenuArrow +com.google.android.material.R$styleable: int Constraint_layout_goneMarginRight +wangdaye.com.geometricweather.R$attr: int arrowHeadLength +cyanogenmod.app.LiveLockScreenInfo: int PRIORITY_HIGH +androidx.vectordrawable.animated.R$id: int info +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDefaultSmsSub +wangdaye.com.geometricweather.R$drawable: int weather_haze_1 +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_overflow_padding_end_material +com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_DropDownUp +androidx.drawerlayout.R$id: int tag_unhandled_key_listeners +com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetStart +android.didikee.donate.R$color: R$color() +com.google.android.material.R$dimen: int design_navigation_separator_vertical_padding +androidx.drawerlayout.R$string +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_caption_material +com.google.android.material.R$styleable: int Constraint_android_rotation +wangdaye.com.geometricweather.R$styleable: int Badge_horizontalOffset +okhttp3.HttpUrl: java.util.List queryStringToNamesAndValues(java.lang.String) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_SHOW_BATTERY_PERCENT_VALIDATOR +com.baidu.location.indoor.mapversion.c.c$b: java.lang.String g +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type[] getActualTypeArguments() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display2 +cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_SOUND_SETTINGS +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams mParams +wangdaye.com.geometricweather.R$layout: int design_layout_snackbar_include +com.google.android.material.button.MaterialButton: void setIconTintMode(android.graphics.PorterDuff$Mode) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CAMERA_WAKE_SCREEN_VALIDATOR +com.google.android.material.R$layout: int mtrl_calendar_day +androidx.appcompat.widget.AbsActionBarView: int getContentHeight() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +cyanogenmod.profiles.ConnectionSettings: void setOverride(boolean) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setRippleColor(int) +androidx.appcompat.resources.R$color: int notification_icon_bg_color +androidx.appcompat.R$attr: int windowMinWidthMajor +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickActiveTintList() +james.adaptiveicon.R$id: int action_bar_title +androidx.vectordrawable.R$id: int blocking +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast: long serialVersionUID +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver parent +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_strokeColor +com.google.gson.FieldNamingPolicy$2: FieldNamingPolicy$2(java.lang.String,int) +wangdaye.com.geometricweather.R$integer: int abc_config_activityDefaultDur +cyanogenmod.app.PartnerInterface: void rebootDevice() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_margin +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String latitude +okio.ByteString: void writeObject(java.io.ObjectOutputStream) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ProgressBar_Horizontal +james.adaptiveicon.R$attr: int thumbTintMode +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_color +com.google.android.material.R$attr: int contentInsetStart +androidx.appcompat.R$attr: int fontProviderFetchStrategy +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection findHealthyConnection(int,int,int,int,boolean,boolean) +androidx.hilt.R$id: int tag_unhandled_key_event_manager +cyanogenmod.app.suggest.IAppSuggestManager$Stub: IAppSuggestManager$Stub() +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +androidx.preference.R$attr: int actionModePasteDrawable +androidx.preference.R$style: int Base_V23_Theme_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_barColor +wangdaye.com.geometricweather.R$attr: int dialogMessage +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 +wangdaye.com.geometricweather.settings.activities.SelectProviderActivity: SelectProviderActivity() +androidx.appcompat.R$color: int accent_material_light +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getDailyEntityList() +wangdaye.com.geometricweather.R$drawable: int abc_list_divider_mtrl_alpha +okhttp3.internal.ws.WebSocketWriter: void writePong(okio.ByteString) +wangdaye.com.geometricweather.R$string: int key_speed_unit +androidx.viewpager2.R$style: R$style() +androidx.swiperefreshlayout.R$color: int notification_icon_bg_color +okhttp3.internal.http2.Http2Stream: void addBytesToWriteWindow(long) +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: boolean done +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String quotedAV() +wangdaye.com.geometricweather.R$id: int autoComplete +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Subtitle1 +androidx.constraintlayout.widget.R$styleable: int MotionScene_defaultDuration +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: androidx.lifecycle.LiveData mLiveData +com.google.android.material.R$attr: int layout_constraintWidth_min +androidx.core.content.FileProvider: FileProvider() +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: androidx.lifecycle.LifecycleOwner mLifecycle +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_height +android.didikee.donate.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String TODAYS_LOW_TEMPERATURE +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: IWeatherProviderService$Stub$Proxy(android.os.IBinder) +com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemIconTintList() +com.google.android.material.R$attr: int actionBarSize +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Calendar +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_contrast +com.google.android.gms.internal.common.zzq: java.lang.String toString() +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_CompactMenu +james.adaptiveicon.R$dimen: int abc_action_bar_default_height_material +retrofit2.adapter.rxjava2.Result: retrofit2.Response response() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean +wangdaye.com.geometricweather.R$attr: int itemShapeInsetEnd +james.adaptiveicon.R$color: int button_material_dark +androidx.hilt.R$color: int ripple_material_light +com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_normal +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintDimensionRatio +com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabIconTint() +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingLeft +wangdaye.com.geometricweather.R$string: int wind_12 +com.tencent.bugly.proguard.ah: java.lang.String a +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderQuery +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: java.lang.String Unit +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.util.List Intervals +androidx.lifecycle.extensions.R$anim +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionMenuTextColor +androidx.constraintlayout.widget.R$styleable: int Layout_layout_editor_absoluteY +cyanogenmod.media.MediaRecorder: MediaRecorder() +cyanogenmod.externalviews.KeyguardExternalView$3: KeyguardExternalView$3(cyanogenmod.externalviews.KeyguardExternalView,int,int,int,int,boolean,android.graphics.Rect) +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onNext(java.lang.Object) +androidx.viewpager2.R$dimen: int notification_small_icon_background_padding +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_title +com.tencent.bugly.crashreport.crash.d +cyanogenmod.library.R$attr: int settingsActivity +com.tencent.bugly.proguard.g: g(java.lang.String) +com.jaredrummler.android.colorpicker.R$color: int abc_secondary_text_material_dark +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.R$attr: int maxActionInlineWidth +wangdaye.com.geometricweather.R$string: int key_appearance +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onComplete() +android.didikee.donate.R$dimen: int abc_action_button_min_height_material +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: void slideLockscreenIn() +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Body2 +org.greenrobot.greendao.AbstractDao: java.lang.String[] getAllColumns() +wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_icon_width +okhttp3.internal.http2.Http2Connection: void writeSynReset(int,okhttp3.internal.http2.ErrorCode) +com.tencent.bugly.proguard.j: void a(int,int) +com.tencent.bugly.crashreport.biz.a: void a(java.util.List) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: AccuDailyResult$DailyForecasts$Temperature() +retrofit2.CallAdapter$Factory retrofit2.Retrofit -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light -androidx.vectordrawable.animated.R$dimen: int notification_action_text_size -androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_switchTextOn -com.jaredrummler.android.colorpicker.R$attr: int colorButtonNormal -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mCallSetCommand -com.tencent.bugly.crashreport.CrashReport$WebViewInterface -com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.crashreport.crash.CrashDetailBean a(java.util.List,com.tencent.bugly.crashreport.crash.CrashDetailBean) -androidx.recyclerview.R$attr: int fastScrollEnabled -com.bumptech.glide.R$attr -com.google.android.material.R$styleable: int TabLayout_tabIndicatorAnimationDuration -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -wangdaye.com.geometricweather.R$attr: int defaultValue -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getSunSet() -cyanogenmod.app.Profile: java.util.Map connections -androidx.hilt.work.R$dimen: int notification_media_narrow_margin -com.google.android.material.R$styleable: int MenuView_android_itemIconDisabledAlpha +com.xw.repo.bubbleseekbar.R$drawable: int abc_ab_share_pack_mtrl_alpha +okio.SegmentedByteString: okio.ByteString md5() +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetRight +com.amap.api.fence.PoiItem: void setPoiId(java.lang.String) +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +james.adaptiveicon.R$styleable: int ActionBarLayout_android_layout_gravity +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Wind getWind() +okhttp3.internal.Internal: boolean connectionBecameIdle(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) +com.bumptech.glide.R$dimen: int compat_button_padding_vertical_material +androidx.transition.R$id: int action_image +androidx.appcompat.R$styleable: int AppCompatTheme_actionDropDownStyle +okhttp3.EventListener: void callStart(okhttp3.Call) +com.tencent.bugly.crashreport.crash.anr.b: com.tencent.bugly.crashreport.crash.b h +androidx.preference.R$attr: int subtitleTextAppearance +com.google.android.material.R$id: int material_timepicker_edit_text +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Count +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_toId +androidx.swiperefreshlayout.R$id: int action_image +com.turingtechnologies.materialscrollbar.R$string: int character_counter_pattern +com.turingtechnologies.materialscrollbar.R$id: int decor_content_parent +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +com.google.android.material.R$styleable: int[] Spinner +okio.Buffer: okio.BufferedSink writeUtf8(java.lang.String) +com.xw.repo.bubbleseekbar.R$drawable: int abc_tab_indicator_material +com.google.android.material.R$styleable: int TabLayout_tabIndicatorGravity +com.turingtechnologies.materialscrollbar.R$attr: int layout_scrollInterpolator +com.turingtechnologies.materialscrollbar.R$attr: int tickMark +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_summaryOff +androidx.appcompat.R$attr: int trackTintMode +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_text_size +com.tencent.bugly.crashreport.crash.anr.b: android.content.Context c +com.turingtechnologies.materialscrollbar.R$anim: int abc_tooltip_enter +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: java.lang.String getMessage() +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getFixedHeightMajor() +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered +retrofit2.Utils$WildcardTypeImpl: int hashCode() +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_FENCEID +cyanogenmod.providers.ThemesContract$MixnMatchColumns +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void drainLoop() +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean forWebSocket +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Menu +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_49 +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_font +androidx.constraintlayout.utils.widget.ImageFilterButton: float getCrossfade() +com.google.android.material.R$styleable: int MaterialRadioButton_useMaterialThemeColors +wangdaye.com.geometricweather.R$attr: int horizontalOffset +androidx.preference.R$id: int text2 +wangdaye.com.geometricweather.R$styleable: int[] ShapeAppearance +retrofit2.Platform$Android$MainThreadExecutor: Platform$Android$MainThreadExecutor() +androidx.constraintlayout.helper.widget.Flow: void setFirstHorizontalBias(float) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: int UnitType +wangdaye.com.geometricweather.R$string: int week_6 +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginBottom +wangdaye.com.geometricweather.R$drawable: int weather_snow +androidx.constraintlayout.helper.widget.Flow: void setFirstVerticalStyle(int) +retrofit2.converter.gson.GsonResponseBodyConverter: java.lang.Object convert(java.lang.Object) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: java.lang.Integer proba6H +androidx.lifecycle.extensions.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.internal.FlowLayout: void setLineSpacing(int) +com.google.android.material.slider.RangeSlider: void setThumbStrokeColorResource(int) +cyanogenmod.providers.CMSettings$Secure: long getLong(android.content.ContentResolver,java.lang.String) +com.google.android.material.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.R$styleable: int MenuItem_iconTintMode +androidx.constraintlayout.widget.R$styleable: int AlertDialog_android_layout +com.google.android.material.R$string: int mtrl_picker_invalid_format +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +androidx.constraintlayout.widget.R$anim +com.amap.api.location.AMapLocationClient: AMapLocationClient(android.content.Context,android.content.Intent) +com.turingtechnologies.materialscrollbar.R$id: int action_divider +wangdaye.com.geometricweather.R$id: int container +james.adaptiveicon.R$style: int Widget_AppCompat_ListView_Menu +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$id: int wrap_content +androidx.activity.R$id: int accessibility_custom_action_23 +okhttp3.Response: long sentRequestAtMillis +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onError(java.lang.Throwable) +io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.fuseable.SimpleQueue queue() +androidx.appcompat.R$styleable: int Toolbar_contentInsetEndWithActions +androidx.appcompat.app.ToolbarActionBar +cyanogenmod.app.CustomTile$ListExpandedStyle +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void dispose() +wangdaye.com.geometricweather.R$styleable: int OnClick_clickAction +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_elevation +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_NoActionBar +com.google.android.material.R$id: int month_grid +com.jaredrummler.android.colorpicker.R$attr: int buttonGravity +com.jaredrummler.android.colorpicker.R$id: int topPanel +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_singleChoiceItemLayout +james.adaptiveicon.R$attr: int actionBarTabTextStyle +okhttp3.OkHttpClient: int readTimeout +com.bumptech.glide.load.resource.gif.GifFrameLoader: void setOnEveryFrameReadyListener(com.bumptech.glide.load.resource.gif.GifFrameLoader$OnEveryFrameListener) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice: int UnitType +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.db.entities.DailyEntity: int getDaytimeTemperature() +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +com.jaredrummler.android.colorpicker.R$attr: int autoCompleteTextViewStyle +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void dispose() +androidx.lifecycle.ViewModelProvider$NewInstanceFactory: androidx.lifecycle.ViewModelProvider$NewInstanceFactory sInstance +androidx.preference.R$layout: int preference_category +com.amap.api.location.UmidtokenInfo$1: void run() +androidx.appcompat.R$styleable: int DrawerArrowToggle_color +androidx.activity.R$id: int accessibility_custom_action_18 +com.google.android.material.R$style: int Theme_AppCompat_Light_DarkActionBar +android.didikee.donate.R$attr: int alpha +james.adaptiveicon.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +android.didikee.donate.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_rippleColor +okio.Buffer: void readFully(byte[]) +cyanogenmod.weather.WeatherLocation: java.lang.String access$402(cyanogenmod.weather.WeatherLocation,java.lang.String) +retrofit2.Response: retrofit2.Response success(java.lang.Object) +cyanogenmod.app.suggest.ApplicationSuggestion: java.lang.String mPackage +com.turingtechnologies.materialscrollbar.R$attr: int bottomNavigationStyle +com.google.android.material.R$attr: int behavior_fitToContents +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_transitionEasing +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Medium +com.google.android.material.R$attr: int materialAlertDialogTheme +androidx.preference.R$styleable: int Toolbar_subtitleTextAppearance +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: int sourceMode +com.google.android.material.R$drawable: int abc_switch_track_mtrl_alpha +wangdaye.com.geometricweather.R$drawable: int ic_chronus +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onComplete() +okhttp3.ConnectionPool: okhttp3.internal.connection.RealConnection get(okhttp3.Address,okhttp3.internal.connection.StreamAllocation,okhttp3.Route) +android.didikee.donate.R$id: int action_context_bar +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder proxyAuthenticator(okhttp3.Authenticator) +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: java.util.List getSubInformation() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_132 +com.google.android.material.R$attr: int iconEndPadding +androidx.preference.R$id: int actions +androidx.constraintlayout.widget.R$id: int customPanel +com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_colored +androidx.preference.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +com.google.android.material.R$styleable: int ViewStubCompat_android_inflatedId +androidx.constraintlayout.widget.R$string: int abc_menu_space_shortcut_label +cyanogenmod.hardware.ICMHardwareService: boolean setVibratorIntensity(int) +com.google.android.material.R$attr: int backgroundColor +androidx.appcompat.R$styleable: int MenuView_preserveIconSpacing +com.google.android.material.chip.Chip: void setTextAppearanceResource(int) +com.google.android.material.R$color: int material_deep_teal_200 +com.google.android.material.R$styleable: int MenuItem_iconTintMode +android.didikee.donate.R$string: int abc_capital_on +androidx.hilt.work.R$anim: int fragment_fade_exit +wangdaye.com.geometricweather.R$string: int key_widget_multi_city +com.google.android.material.R$string: int abc_menu_ctrl_shortcut_label +com.google.android.material.R$id: int transition_current_scene +androidx.preference.R$styleable: int SearchView_queryHint +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.String level +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: void truncateFinal() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +com.google.android.material.circularreveal.cardview.CircularRevealCardView +androidx.constraintlayout.widget.R$attr: int commitIcon +com.bumptech.glide.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_barLength +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_height +com.google.android.material.R$dimen: int notification_content_margin_start +com.google.android.material.R$styleable: int ConstraintSet_android_pivotX +com.amap.api.location.AMapLocationClientOption: long SCAN_WIFI_INTERVAL +cyanogenmod.app.ILiveLockScreenManagerProvider: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +com.tencent.bugly.proguard.ap: java.lang.String j +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabBarStyle +androidx.work.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.constraintlayout.widget.R$id: int search_button +androidx.swiperefreshlayout.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.R$styleable: int Slider_haloRadius +okhttp3.internal.cache2.Relay: int SOURCE_UPSTREAM +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String admin2 +androidx.recyclerview.R$styleable: int FontFamily_fontProviderCerts +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_elevation +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplaceInTxArray +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setIconResStart(int) +wangdaye.com.geometricweather.R$animator: int design_appbar_state_list_animator +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_creator +okhttp3.internal.http1.Http1Codec$FixedLengthSink: void write(okio.Buffer,long) +androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragScale +com.google.gson.internal.LinkedTreeMap: void removeInternal(com.google.gson.internal.LinkedTreeMap$Node,boolean) +androidx.hilt.lifecycle.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.R$drawable: int mtrl_tabs_default_indicator +wangdaye.com.geometricweather.R$id: int percent +com.jaredrummler.android.colorpicker.R$string: int cpv_custom +com.xw.repo.bubbleseekbar.R$attr: int showDividers +androidx.viewpager.R$styleable: int GradientColor_android_centerX +okhttp3.internal.http.StatusLine: java.lang.String message +androidx.core.app.ComponentActivity +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: MfRainResult() +androidx.preference.R$anim: int abc_fade_in +androidx.constraintlayout.widget.R$dimen: int abc_action_button_min_height_material +androidx.transition.R$id +com.bumptech.glide.R$id: int chronometer +okhttp3.internal.platform.Android10Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +androidx.lifecycle.LifecycleDispatcher +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_padding_material +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.fuseable.SimpleQueue queue +com.turingtechnologies.materialscrollbar.R$styleable: int ActivityChooserView_initialActivityCount +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource) +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: long count +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_checkableBehavior +wangdaye.com.geometricweather.R$attr: int flow_firstHorizontalStyle +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: android.os.IBinder asBinder() +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addQueryParameter(java.lang.String,java.lang.String) +android.didikee.donate.R$dimen: int abc_action_bar_elevation_material +androidx.appcompat.widget.AppCompatEditText: void setTextClassifier(android.view.textclassifier.TextClassifier) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.BiFunction resultSelector +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +wangdaye.com.geometricweather.db.entities.WeatherEntity: int temperature +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintDimensionRatio +wangdaye.com.geometricweather.R$id: int item_about_header_appName +android.support.v4.os.IResultReceiver$Stub$Proxy: void send(int,android.os.Bundle) +cyanogenmod.hardware.CMHardwareManager: int FEATURE_SERIAL_NUMBER +com.amap.api.location.AMapLocation: com.amap.api.location.AMapLocation clone() +com.google.android.material.chip.Chip: Chip(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int TextAppearance_textAllCaps +wangdaye.com.geometricweather.R$id: int notification_big_week_2 +com.google.android.material.R$styleable: int Layout_maxWidth +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Inverse +androidx.preference.R$attr: int backgroundTint +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: io.reactivex.CompletableSource other +cyanogenmod.providers.CMSettings$DiscreteValueValidator: boolean validate(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle +androidx.constraintlayout.widget.R$attr: int isLightTheme +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: Hourly(java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability) +androidx.cardview.R$styleable: int CardView_cardCornerRadius +android.didikee.donate.R$color: int material_grey_850 androidx.constraintlayout.widget.R$attr: int thumbTint -com.google.android.material.R$styleable: int ImageFilterView_contrast -androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedHeightMajor -wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_padding -android.didikee.donate.R$attr: int thumbTint -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerNext(io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryInnerObserver) -wangdaye.com.geometricweather.R$drawable: int notif_temp_98 -androidx.appcompat.R$id: int home -androidx.core.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUpdateTime(long) -okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache this$0 -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetStart -okio.Buffer: okio.ByteString hmacSha256(okio.ByteString) -com.google.android.material.R$attr: int panelMenuListTheme -androidx.viewpager2.R$integer: int status_bar_notification_info_maxnum -cyanogenmod.app.suggest.AppSuggestManager -wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_1 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: java.lang.String Unit -okhttp3.Headers: java.lang.String name(int) -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ListView_Menu -wangdaye.com.geometricweather.R$attr: int scrimAnimationDuration -androidx.constraintlayout.widget.R$id: int titleDividerNoCustom -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarButtonStyle -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: java.lang.String getAddress() -com.google.android.material.R$attr: int listPreferredItemPaddingEnd -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setEnableAnim(boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: int UnitType -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX -com.google.android.gms.location.ActivityTransition: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int Icon -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDataConnectionState -androidx.drawerlayout.R$id: int async -okhttp3.Response: okhttp3.Headers headers -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored -retrofit2.ParameterHandler$Part: ParameterHandler$Part(java.lang.reflect.Method,int,okhttp3.Headers,retrofit2.Converter) -wangdaye.com.geometricweather.R$styleable: int[] KeyFrame -com.google.gson.stream.JsonReader: int PEEKED_EOF -androidx.dynamicanimation.R$styleable: int GradientColor_android_tileMode -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -com.baidu.location.c.d$a -wangdaye.com.geometricweather.R$attr: int elevationOverlayEnabled -com.google.android.material.R$styleable: int TextInputLayout_counterOverflowTextAppearance -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: int requestFusion(int) -com.turingtechnologies.materialscrollbar.R$attr: int fontProviderAuthority -androidx.preference.R$attr: int dialogCornerRadius -okhttp3.internal.http1.Http1Codec -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel -wangdaye.com.geometricweather.R$string: int phase_waning_gibbous -androidx.lifecycle.MutableLiveData: MutableLiveData(java.lang.Object) -cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_MWI_NOTIFICATION -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary DegreeDaySummary -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelMenuListTheme -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar -com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_pressed -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerNext() -com.github.rahatarmanahmed.cpv.R$dimen: R$dimen() -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_LAST_PROFILE_NAME -okhttp3.RealCall: okhttp3.EventListener access$000(okhttp3.RealCall) -androidx.hilt.lifecycle.R$dimen: int notification_small_icon_background_padding -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_AUTH -androidx.transition.R$styleable: int[] ColorStateListItem -cyanogenmod.weatherservice.ServiceRequestResult$1: cyanogenmod.weatherservice.ServiceRequestResult[] newArray(int) -james.adaptiveicon.R$attr: int fontProviderCerts -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_AM_PM_VALIDATOR -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -cyanogenmod.weather.WeatherInfo$Builder: double mTodaysHighTemp -okhttp3.internal.ws.RealWebSocket: long queueSize -com.tencent.bugly.crashreport.crash.e: void uncaughtException(java.lang.Thread,java.lang.Throwable) -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintDimensionRatio -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_icon_vertical_padding_material -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: KeyguardExternalViewProviderService$1$1(cyanogenmod.externalviews.KeyguardExternalViewProviderService$1,android.os.Bundle) -okhttp3.internal.cache.DiskLruCache$Editor: void abort() -androidx.preference.R$color: int switch_thumb_disabled_material_light -cyanogenmod.providers.CMSettings$System$3: boolean validate(java.lang.String) -androidx.constraintlayout.widget.R$attr: int telltales_tailScale -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize -cyanogenmod.externalviews.ExternalViewProperties: boolean hasChanged() -wangdaye.com.geometricweather.R$id: int autoCompleteToStart -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float thunderstormPrecipitation -androidx.fragment.R$id: int action_divider -com.google.android.material.R$styleable: int NavigationView_itemIconPadding -wangdaye.com.geometricweather.R$array: int automatic_refresh_rates -cyanogenmod.app.CMTelephonyManager: boolean isDataConnectionEnabled() -wangdaye.com.geometricweather.R$attr: int showText -james.adaptiveicon.R$styleable: int ActionMode_backgroundSplit -androidx.preference.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$string: int sp_widget_daily_trend_setting -androidx.constraintlayout.widget.R$dimen: int abc_cascading_menus_min_smallest_width -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_setActiveProfileByName -com.jaredrummler.android.colorpicker.R$drawable: int abc_switch_track_mtrl_alpha -io.reactivex.internal.util.VolatileSizeArrayList: boolean remove(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int SwitchMaterial_useMaterialThemeColors -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_1_00 -wangdaye.com.geometricweather.R$array: int pressure_unit_voices -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Bridge -com.google.android.material.chip.Chip: void setChipStrokeColorResource(int) -androidx.dynamicanimation.R$id: int notification_main_column -wangdaye.com.geometricweather.R$color: int tooltip_background_light -androidx.lifecycle.ComputableLiveData: java.util.concurrent.Executor mExecutor -okhttp3.internal.http2.Http2Connection: void flush() -androidx.hilt.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$string: int common_google_play_services_update_title -androidx.appcompat.R$styleable: int AppCompatTheme_dialogCornerRadius -wangdaye.com.geometricweather.R$attr: int dayInvalidStyle -com.google.android.material.R$styleable: int MenuItem_android_numericShortcut -com.turingtechnologies.materialscrollbar.R$style: int CardView_Dark -cyanogenmod.themes.ThemeManager$ThemeChangeListener: void onProgress(int) -com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low -io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit,boolean) -okhttp3.internal.http1.Http1Codec: okio.BufferedSink sink -androidx.appcompat.R$styleable: int AppCompatTheme_panelMenuListWidth -wangdaye.com.geometricweather.R$id: int widget_day_week -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float relativeHumidity -james.adaptiveicon.R$style: int Platform_AppCompat -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX) -android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorBackgroundFloating -com.google.android.material.R$id: int sawtooth -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_circularRadius -io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setRefreshing(boolean) -james.adaptiveicon.R$dimen: int abc_panel_menu_list_width -wangdaye.com.geometricweather.R$dimen: int abc_button_padding_horizontal_material -com.google.android.material.R$attr: int prefixText -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String city -com.google.android.material.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -com.google.android.material.internal.CheckableImageButton: void setChecked(boolean) -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemHorizontalPadding -androidx.customview.R$integer: int status_bar_notification_info_maxnum -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeBackground -okhttp3.HttpUrl: java.lang.String redact() -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: long remaining -androidx.appcompat.widget.AbsActionBarView: void setContentHeight(int) -android.didikee.donate.R$color: int ripple_material_light -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getNumGammaControls() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingStart -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline Headline -androidx.lifecycle.ProcessLifecycleOwner: boolean mPauseSent -android.didikee.donate.R$id: int search_button -com.google.android.material.R$color: int dim_foreground_material_dark -okhttp3.Route: boolean equals(java.lang.Object) -io.reactivex.Observable: io.reactivex.disposables.Disposable forEach(io.reactivex.functions.Consumer) -androidx.lifecycle.Transformations$2: void onChanged(java.lang.Object) -okhttp3.internal.platform.OptionalMethod: java.lang.Object invoke(java.lang.Object,java.lang.Object[]) -wangdaye.com.geometricweather.R$style: int Preference_DialogPreference_Material -james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setCurrentIndicatorColor(int) -com.turingtechnologies.materialscrollbar.R$styleable: int[] AnimatedStateListDrawableCompat -androidx.preference.R$attr: int windowActionModeOverlay -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall -com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler: com.tencent.bugly.crashreport.crash.CrashDetailBean packageCrashDatas(java.lang.String,java.lang.String,long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,byte[],java.util.Map,boolean,boolean) -android.didikee.donate.R$styleable: int ActionMode_closeItemLayout -okhttp3.internal.connection.RouteException: java.io.IOException getFirstConnectException() -com.tencent.bugly.proguard.ac: byte[] a(byte[]) -com.google.android.material.slider.Slider: void setTickVisible(boolean) -wangdaye.com.geometricweather.R$array: int distance_unit_values -cyanogenmod.externalviews.ExternalViewProperties: android.graphics.Rect getHitRect() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_homeAsUpIndicator -com.bumptech.glide.integration.okhttp.R$attr: int coordinatorLayoutStyle -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_NavigationView -wangdaye.com.geometricweather.R$styleable: int[] SignInButton -wangdaye.com.geometricweather.R$styleable: int TouchScrollBar_msb_hideDelayInMilliseconds -wangdaye.com.geometricweather.R$id: int both -cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getProfileByName(java.lang.String) -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean offer(java.lang.Object,java.lang.Object) -wangdaye.com.geometricweather.R$color: int abc_tint_edittext -wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment: void setOnWeatherSourceChangedListener(wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment$OnWeatherSourceChangedListener) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VClipPath -wangdaye.com.geometricweather.R$styleable: int[] MaterialCheckBox -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabRippleColor -androidx.drawerlayout.R$string -wangdaye.com.geometricweather.R$styleable: int LoadingImageView_imageAspectRatio -wangdaye.com.geometricweather.R$drawable: int notif_temp_24 -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchPadding -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric -com.google.android.gms.common.server.FavaDiagnosticsEntity -androidx.constraintlayout.widget.R$id: int expand_activities_button -okhttp3.internal.http.HttpHeaders: okhttp3.Headers varyHeaders(okhttp3.Response) -com.turingtechnologies.materialscrollbar.R$drawable: int design_password_eye -androidx.constraintlayout.widget.R$layout: int abc_search_dropdown_item_icons_2line -okhttp3.FormBody$Builder: java.nio.charset.Charset charset -wangdaye.com.geometricweather.R$id: int item_weather_icon -com.google.android.material.R$styleable: int AppCompatTheme_dialogPreferredPadding -com.google.android.material.R$attr: int splitTrack -okhttp3.internal.http2.Http2Stream: okio.Timeout writeTimeout() -com.tencent.bugly.b: void a(android.content.Context,com.tencent.bugly.BuglyStrategy) -androidx.appcompat.R$styleable: int ActionBarLayout_android_layout_gravity -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -okhttp3.internal.connection.RouteException: java.io.IOException lastException -androidx.appcompat.R$drawable: int abc_scrubber_primary_mtrl_alpha -james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableTop -wangdaye.com.geometricweather.common.basic.models.weather.Astro -com.xw.repo.bubbleseekbar.R$attr: int actionModeCutDrawable -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver parent -cyanogenmod.app.CMStatusBarManager: void publishTile(java.lang.String,int,cyanogenmod.app.CustomTile) -androidx.appcompat.R$color: int background_material_light -com.turingtechnologies.materialscrollbar.R$attr: int homeAsUpIndicator -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State BLOCKED -androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Time -okhttp3.internal.http.RequestLine: java.lang.String requestPath(okhttp3.HttpUrl) -com.turingtechnologies.materialscrollbar.R$id: int listMode -cyanogenmod.hardware.ICMHardwareService: boolean isSunlightEnhancementSelfManaged() -cyanogenmod.weather.RequestInfo: java.lang.String mKey -com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginEnd -androidx.preference.R$layout: int abc_list_menu_item_layout -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String LongPhrase -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver this$0 -androidx.constraintlayout.widget.R$styleable: int Transform_android_rotation -android.didikee.donate.R$attr: int maxButtonHeight -android.didikee.donate.R$color: int abc_primary_text_material_light -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerNext(int,java.lang.Object) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul1H -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_height_major -com.turingtechnologies.materialscrollbar.R$id: int scrollIndicatorDown -com.xw.repo.bubbleseekbar.R$attr: int listLayout -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: MfForecastResult$Forecast$Weather() -wangdaye.com.geometricweather.db.entities.LocationEntity: void setCity(java.lang.String) -com.jaredrummler.android.colorpicker.R$style: int Preference_DropDown -androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type TOP -james.adaptiveicon.R$id: int progress_horizontal -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.disposables.Disposable upstream -james.adaptiveicon.R$styleable: int SearchView_closeIcon -james.adaptiveicon.R$attr: int colorControlActivated -okhttp3.internal.http2.Http2Connection: long intervalPongsReceived -com.google.android.material.circularreveal.CircularRevealFrameLayout: CircularRevealFrameLayout(android.content.Context,android.util.AttributeSet) +androidx.viewpager2.R$id: R$id() +androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context) +wangdaye.com.geometricweather.R$string: int precipitation_rainstorm +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: java.lang.String Unit +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean addProfile(cyanogenmod.app.Profile) +com.amap.api.location.AMapLocation: boolean isFixLastLocation() +cyanogenmod.profiles.StreamSettings$1: cyanogenmod.profiles.StreamSettings createFromParcel(android.os.Parcel) +androidx.preference.R$dimen: int abc_floating_window_z +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier +wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_width_overflow_material +retrofit2.Response: int code() +wangdaye.com.geometricweather.R$string: int key_widget_clock_day_horizontal +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Subhead +okio.Buffer: okio.BufferedSink write(byte[]) +androidx.appcompat.R$attr: int maxButtonHeight +com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarStyle +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +com.tencent.bugly.proguard.ap: ap() +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetBottom +wangdaye.com.geometricweather.main.layouts.TrendHorizontalLinearLayoutManager +wangdaye.com.geometricweather.R$attr: int displayOptions +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +androidx.appcompat.R$styleable: int AppCompatTheme_colorButtonNormal +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain Rain +okhttp3.internal.http2.Http2Codec: void writeRequestHeaders(okhttp3.Request) +com.tencent.bugly.proguard.w: boolean a(java.lang.Runnable) +com.jaredrummler.android.colorpicker.R$id: int alertTitle +androidx.swiperefreshlayout.R$dimen: int notification_right_icon_size +androidx.dynamicanimation.R$layout: int notification_template_custom_big +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$dimen: int material_icon_size +com.tencent.bugly.proguard.ar: byte a +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_allowPresets +wangdaye.com.geometricweather.R$attr: int snackbarTextViewStyle +com.google.android.material.R$styleable: int ActionBar_logo +androidx.preference.R$attr: int titleTextAppearance +com.google.android.material.R$attr: int sizePercent +io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBaseline_creator +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType INT_TYPE +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +androidx.preference.R$attr: int alertDialogStyle +androidx.vectordrawable.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvDescription +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String insee +com.jaredrummler.android.colorpicker.R$styleable: int[] CoordinatorLayout_Layout +com.jaredrummler.android.colorpicker.R$attr: int contentInsetEndWithActions +okhttp3.internal.http2.Http2Connection$Builder: Http2Connection$Builder(boolean) +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String FONT_URI +com.google.android.material.R$styleable: int AppCompatTheme_windowActionModeOverlay +cyanogenmod.profiles.AirplaneModeSettings$1: cyanogenmod.profiles.AirplaneModeSettings createFromParcel(android.os.Parcel) +androidx.preference.R$attr: int listPreferredItemPaddingEnd +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling() +wangdaye.com.geometricweather.R$styleable: int MaterialTextView_android_lineHeight +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Inverse +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_Borderless +com.tencent.bugly.proguard.i: int[] f(int,boolean) +androidx.loader.app.LoaderManagerImpl$LoaderViewModel: LoaderManagerImpl$LoaderViewModel() +com.turingtechnologies.materialscrollbar.R$id: int notification_main_column_container +androidx.vectordrawable.R$dimen: int compat_notification_large_icon_max_height +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: boolean e +android.didikee.donate.R$styleable: int SearchView_android_imeOptions +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +james.adaptiveicon.R$styleable: int MenuItem_android_orderInCategory +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay +com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Headline6 +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_keyline +androidx.appcompat.resources.R$dimen: int notification_main_column_padding_top +com.jaredrummler.android.colorpicker.R$attr: int cpv_showColorShades +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_corner_radius +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy +com.xw.repo.bubbleseekbar.R$color: int material_deep_teal_500 +cyanogenmod.providers.CMSettings$Secure: boolean putIntForUser(android.content.ContentResolver,java.lang.String,int,int) +com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_backgroundTintMode +io.reactivex.Observable: io.reactivex.Observable generate(io.reactivex.functions.Consumer) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_3DES_EDE_CBC_MD5 +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackActiveTintList() +com.google.android.material.R$layout: int mtrl_calendar_vertical +james.adaptiveicon.R$attr: int listPreferredItemHeightSmall +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dividerVertical +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getCounterTextColor() +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_showSeekBarValue +com.google.android.material.R$dimen: int mtrl_extended_fab_icon_size +com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_CheckBox +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +okhttp3.internal.platform.Android10Platform +com.amap.api.fence.PoiItem: java.lang.String e +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver,java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_1 +com.google.android.material.R$dimen: R$dimen() +com.turingtechnologies.materialscrollbar.R$color: int primary_material_dark +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_textAllCaps +com.bumptech.glide.R$color: R$color() +com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.graphics.drawable.Drawable getItemBackground() +androidx.preference.R$attr: int thumbTint +androidx.fragment.R$styleable: int[] Fragment +com.xw.repo.bubbleseekbar.R$dimen: int abc_select_dialog_padding_start_material +androidx.work.R$drawable: int notification_template_icon_low_bg +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_AUTO_OUTDOOR_MODE_VALIDATOR +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarStyle +com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.a b +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog +com.xw.repo.bubbleseekbar.R$attr: int listDividerAlertDialog +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_CBC_SHA +com.turingtechnologies.materialscrollbar.R$attr: int fastScrollEnabled +com.loc.k: k(java.lang.String,java.lang.String) +androidx.constraintlayout.widget.R$styleable: int[] MenuView +com.google.android.gms.base.R$string: int common_google_play_services_wear_update_text +com.google.android.material.R$styleable: int AppCompatTextHelper_android_textAppearance +com.google.gson.stream.JsonWriter: void close() +okhttp3.internal.Util: java.lang.String format(java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.R$string: int content_desc_check_details +com.google.android.material.R$styleable: int FloatingActionButton_maxImageSize +androidx.core.R$styleable: int[] GradientColor +androidx.cardview.R$style: R$style() +com.jaredrummler.android.colorpicker.R$color: R$color() +com.bumptech.glide.R$styleable: int FontFamily_fontProviderAuthority +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight +wangdaye.com.geometricweather.db.entities.LocationEntity: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource getWeatherSource() +com.tencent.bugly.BuglyStrategy: long getAppReportDelay() +cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$attr: int iconifiedByDefault +com.amap.api.fence.GeoFence: java.lang.String c +wangdaye.com.geometricweather.R$styleable: int Variant_constraints +wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_material +com.google.android.material.R$style: int Base_Theme_AppCompat_DialogWhenLarge +com.xw.repo.bubbleseekbar.R$attr: int spinnerDropDownItemStyle +androidx.preference.R$styleable: int AppCompatTheme_actionModeStyle +com.tencent.bugly.crashreport.common.info.a: android.content.SharedPreferences E +androidx.vectordrawable.R$id: int accessibility_custom_action_30 +com.turingtechnologies.materialscrollbar.R$attr: int autoCompleteTextViewStyle +androidx.preference.R$style: int Theme_AppCompat_Dialog_Alert +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_FAST_AVG +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval getInstance(java.lang.String) +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean +com.google.android.material.R$id: int mini +androidx.appcompat.R$id: int action_bar_title +com.google.android.material.R$layout: int material_chip_input_combo +com.google.android.material.slider.RangeSlider: int getHaloRadius() +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String cityId +androidx.customview.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_39 +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$y +androidx.constraintlayout.widget.R$styleable: int StateListDrawableItem_android_drawable +cyanogenmod.themes.IThemeChangeListener$Stub +com.turingtechnologies.materialscrollbar.R$attr: int msb_rightToLeft +androidx.constraintlayout.widget.R$style: int Base_V22_Theme_AppCompat_Light +androidx.preference.R$dimen: int compat_button_inset_horizontal_material +androidx.constraintlayout.widget.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMargins +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: boolean isDisposed() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +androidx.appcompat.R$attr: int switchTextAppearance +com.google.android.material.R$styleable: int[] KeyPosition +wangdaye.com.geometricweather.R$styleable: int Slider_trackHeight +androidx.constraintlayout.widget.R$attr: int actionViewClass +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +com.google.android.material.R$integer: int mtrl_card_anim_delay_ms +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_1 +wangdaye.com.geometricweather.R$drawable: int notif_temp_98 +okhttp3.HttpUrl: java.lang.String QUERY_ENCODE_SET +com.tencent.bugly.proguard.z: java.lang.Thread a(java.lang.Runnable,java.lang.String) +androidx.preference.R$styleable: int RecyclerView_layoutManager +androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +com.autonavi.aps.amapapi.model.AMapLocationServer: void h(java.lang.String) +androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_selectableItemBackground +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric: int UnitType +androidx.hilt.lifecycle.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$attr: int overlay +wangdaye.com.geometricweather.R$dimen: int cardview_default_radius +okio.Okio: okio.Sink blackhole() +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long,boolean,int) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver this$0 +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleTint +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_alphabeticShortcut +wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_orientation +wangdaye.com.geometricweather.R$attr: int disableDependentsState +com.xw.repo.bubbleseekbar.R$attr: int actionBarTabTextStyle +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void drainLoop() +wangdaye.com.geometricweather.R$id: int stretch +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: float unitFactor +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onRequested() +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: androidx.lifecycle.LifecycleOwner mLifecycle +androidx.customview.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_Surface +com.xw.repo.bubbleseekbar.R$dimen: int abc_button_padding_horizontal_material +wangdaye.com.geometricweather.R$attr: int chipSpacing +androidx.preference.R$id: int search_bar +james.adaptiveicon.R$attr: int titleTextColor +okhttp3.internal.http2.Http2Stream$FramingSource: boolean finished +com.google.android.material.R$dimen: int mtrl_slider_label_square_side +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void innerComplete() +wangdaye.com.geometricweather.R$styleable: int TextAppearance_textLocale +wangdaye.com.geometricweather.R$styleable: int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor +androidx.lifecycle.SavedStateHandle: java.util.Map mRegular +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorButtonNormal +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog +com.google.android.material.slider.Slider: void setHaloTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$string: int abc_activity_chooser_view_see_all +com.google.android.material.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: int UnitType +androidx.preference.R$id: int accessibility_custom_action_27 +wangdaye.com.geometricweather.R$attr: int closeIconEndPadding +androidx.coordinatorlayout.R$dimen: R$dimen() +com.jaredrummler.android.colorpicker.R$id: int cpv_preference_preview_color_panel +wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_checkable +okhttp3.logging.LoggingEventListener: void callStart(okhttp3.Call) +okhttp3.MultipartBody: void writeTo(okio.BufferedSink) +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void subscribe(io.reactivex.Observer) +com.amap.api.location.APSService: int onStartCommand(android.content.Intent,int,int) +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize +androidx.recyclerview.R$styleable: int GradientColor_android_centerColor +com.google.android.material.R$attr: int background +wangdaye.com.geometricweather.db.entities.DailyEntity: float getHoursOfSun() +wangdaye.com.geometricweather.R$id: int normal +androidx.recyclerview.R$styleable: int GradientColor_android_type +okhttp3.logging.LoggingEventListener$Factory: LoggingEventListener$Factory() +wangdaye.com.geometricweather.R$attr: int cpv_showOldColor +com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$attr: int titleTextColor +androidx.viewpager.R$id: int actions +androidx.vectordrawable.R$styleable: int[] FontFamilyFont +okhttp3.RealCall: okhttp3.EventListener eventListener +com.google.android.material.R$styleable: int Slider_thumbElevation +wangdaye.com.geometricweather.R$string: int phase_waxing_gibbous +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_showMotionSpec +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver(io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver) +com.google.android.material.R$integer: int mtrl_calendar_header_orientation +androidx.constraintlayout.widget.R$id: int dragLeft +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +com.google.android.material.R$styleable: int TextAppearance_android_textColorLink +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: ICMWeatherManager$Stub$Proxy(android.os.IBinder) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain1h +okhttp3.internal.http2.Http2Stream$FramingSource: okhttp3.internal.http2.Http2Stream this$0 +wangdaye.com.geometricweather.R$string: int phase_first +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial Imperial +com.google.android.material.internal.ParcelableSparseBooleanArray +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String getUnit() +cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.content.ComponentName,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String unit +james.adaptiveicon.R$styleable: int ColorStateListItem_android_color +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle +okhttp3.internal.cache.DiskLruCache: void processJournal() +com.google.android.material.R$attr: int backgroundInsetBottom +androidx.preference.R$anim: int abc_shrink_fade_out_from_bottom +com.turingtechnologies.materialscrollbar.R$id: int wrap_content +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalAlign +androidx.constraintlayout.widget.R$id: int action_mode_close_button +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_xml +cyanogenmod.profiles.StreamSettings: boolean isOverride() +androidx.constraintlayout.widget.R$integer: int config_tooltipAnimTime +androidx.core.R$dimen +androidx.preference.R$drawable: int notification_action_background +androidx.constraintlayout.widget.R$attr: int waveOffset +com.google.android.material.R$style: int Widget_MaterialComponents_BottomAppBar_PrimarySurface +com.tencent.bugly.proguard.a: java.util.HashMap d +wangdaye.com.geometricweather.R$drawable: int ic_gauge +com.xw.repo.bubbleseekbar.R$attr: int alertDialogButtonGroupStyle +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.profiles.StreamSettings: int getValue() +io.reactivex.internal.subscriptions.SubscriptionArbiter: void drainLoop() +wangdaye.com.geometricweather.R$id: int BOTTOM_START +okhttp3.internal.ws.RealWebSocket$2 +com.tencent.bugly.crashreport.common.info.a: java.lang.String Y +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: AccuAlertResult$Description() +okhttp3.ConnectionPool: java.lang.Runnable cleanupRunnable +com.google.android.material.R$styleable: int TextInputLayout_endIconCheckable +androidx.appcompat.R$styleable: int MenuItem_android_id +androidx.viewpager2.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onCross +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Level level +cyanogenmod.themes.ThemeManager: void unregisterThemeChangeListener(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.functions.Function combiner +androidx.viewpager2.R$id: int right_side +androidx.fragment.R$dimen: int compat_button_padding_horizontal_material +com.turingtechnologies.materialscrollbar.Handle: void setBackgroundColor(int) +androidx.hilt.work.R$drawable: int notification_action_background +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: int getStatus() +androidx.lifecycle.ProcessLifecycleOwnerInitializer: android.database.Cursor query(android.net.Uri,java.lang.String[],java.lang.String,java.lang.String[],java.lang.String) +com.turingtechnologies.materialscrollbar.R$id: int submenuarrow +com.google.android.material.behavior.HideBottomViewOnScrollBehavior: HideBottomViewOnScrollBehavior(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int CloudCover +androidx.hilt.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$id: int notification_big_week_4 +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_isSunlightEnhancementSelfManaged +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +okhttp3.Cache$2: boolean hasNext() +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DialogWhenLarge +androidx.core.R$styleable: int ColorStateListItem_android_color +androidx.preference.R$styleable: int AppCompatTextView_fontFamily +wangdaye.com.geometricweather.R$attr: int itemTextAppearance +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.google.android.material.R$styleable: int[] CoordinatorLayout +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_fontVariationSettings +okhttp3.Cookie: java.lang.String toString() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_default +android.didikee.donate.R$layout: int abc_list_menu_item_radio +androidx.preference.R$attr: int color +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_keylines +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_body_2_material +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginBottom +androidx.transition.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.R$drawable: int notif_temp_89 +com.google.android.material.R$dimen: int abc_text_size_caption_material +retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(okhttp3.HttpUrl) +androidx.appcompat.R$styleable: int ActionBar_contentInsetStartWithNavigation +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver(io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver) +wangdaye.com.geometricweather.R$styleable: int ListPreference_useSimpleSummaryProvider +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_blackContainer +com.jaredrummler.android.colorpicker.R$id: int tag_transition_group +androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_height_minor +com.turingtechnologies.materialscrollbar.R$id: int expand_activities_button +androidx.constraintlayout.helper.widget.Flow: void setPaddingRight(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX getWind() +androidx.preference.R$attr: int controlBackground +com.google.android.material.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Body2 +androidx.appcompat.R$id: int image +okhttp3.internal.connection.StreamAllocation: void noNewStreams() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeDegreeDayTemperature(java.lang.Integer) +wangdaye.com.geometricweather.R$layout: int widget_week +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description +james.adaptiveicon.R$styleable: int SearchView_layout +androidx.customview.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.R$xml: int widget_trend_hourly +androidx.lifecycle.Transformations$3: Transformations$3(androidx.lifecycle.MediatorLiveData) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline5 +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_extendMotionSpec +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_BottomSheetDialog +wangdaye.com.geometricweather.R$color: int darkPrimary_2 +com.amap.api.fence.GeoFenceClient: void addGeoFence(java.util.List,java.lang.String) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabStyle +com.google.android.material.timepicker.RadialViewGroup: RadialViewGroup(android.content.Context,android.util.AttributeSet) +com.google.android.material.tabs.TabLayout: void setUnboundedRipple(boolean) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextBackground +com.google.android.material.R$attr: int itemShapeInsetEnd +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_NoActionBar +androidx.core.R$styleable: int FontFamily_fontProviderCerts +cyanogenmod.app.ProfileGroup: ProfileGroup(android.os.Parcel) +cyanogenmod.platform.R: R() +android.didikee.donate.R$attr: int actionModeStyle +io.reactivex.Observable: io.reactivex.Observable concatMapDelayError(io.reactivex.functions.Function,int,boolean) +wangdaye.com.geometricweather.R$styleable: int[] MenuGroup +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIconTintMode +androidx.preference.R$attr: int fontProviderFetchTimeout +com.amap.api.location.CoordinateConverter$CoordType +retrofit2.OkHttpCall: okhttp3.Request request() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +androidx.lifecycle.ReportFragment: void dispatchCreate(androidx.lifecycle.ReportFragment$ActivityInitializationListener) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum Minimum +android.didikee.donate.R$attr: int textAppearancePopupMenuHeader +wangdaye.com.geometricweather.R$id: int group_divider +com.bumptech.glide.integration.okhttp.R$id: int text +wangdaye.com.geometricweather.R$id: int scrollIndicatorDown +androidx.core.R$dimen: int notification_top_pad_large_text +androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyleSmall +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontStyle +com.google.android.material.R$styleable: int AlertDialog_listItemLayout +androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat_Light +cyanogenmod.externalviews.ExternalViewProviderService$1$1: android.os.Bundle val$options +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_transformPivotY +com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_text_color +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_outline_box_expanded_padding +androidx.viewpager2.R$styleable: int ViewPager2_android_orientation +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver[] CANCELLED +com.google.android.material.R$attr: int listPopupWindowStyle +cyanogenmod.themes.ThemeChangeRequest$1: cyanogenmod.themes.ThemeChangeRequest createFromParcel(android.os.Parcel) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_maxHeight +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +androidx.lifecycle.ReportFragment +androidx.preference.R$layout +com.xw.repo.bubbleseekbar.R$id: int action_bar_subtitle +com.google.android.material.R$styleable: int DrawerArrowToggle_drawableSize +androidx.appcompat.R$drawable: int abc_text_select_handle_left_mtrl_dark +cyanogenmod.externalviews.ExternalView$4 +com.github.rahatarmanahmed.cpv.CircularProgressView: void startAnimation() +cyanogenmod.platform.R$xml +com.jaredrummler.android.colorpicker.R$id: int search_bar +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.internal.fuseable.QueueDisposable qd +james.adaptiveicon.R$styleable: int[] Spinner +androidx.preference.R$attr: int paddingEnd +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_1 +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode FLOW_CONTROL_ERROR +com.tencent.bugly.proguard.j: java.lang.String b +wangdaye.com.geometricweather.common.basic.models.weather.Current: Current(java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability,wangdaye.com.geometricweather.common.basic.models.weather.Wind,wangdaye.com.geometricweather.common.basic.models.weather.UV,wangdaye.com.geometricweather.common.basic.models.weather.AirQuality,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.String,java.lang.String) +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void dispose() +androidx.preference.ListPreferenceDialogFragmentCompat: ListPreferenceDialogFragmentCompat() +okhttp3.MultipartBody: java.util.List parts +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_11 +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: wangdaye.com.geometricweather.db.entities.MinutelyEntity readEntity(android.database.Cursor,int) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderLayout +com.google.android.material.R$styleable: int TabLayout_tabSelectedTextColor +androidx.preference.R$styleable: int FontFamilyFont_android_font +okio.ByteString: int decodeHexDigit(char) +com.google.android.material.R$attr: int helperText +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_1 +com.amap.api.fence.GeoFence: void setFenceId(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int SearchView_android_maxWidth +cyanogenmod.themes.IThemeService$Stub$Proxy: void applyDefaultTheme() +io.reactivex.internal.util.EmptyComponent: void onNext(java.lang.Object) +james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedHeightMinor +com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_android_popupAnimationStyle +androidx.lifecycle.LifecycleRegistry +com.google.android.material.R$attr: int waveVariesBy +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItemSmall +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SLOVENIAN +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float pSea +com.google.android.material.textfield.TextInputLayout: void setPlaceholderText(java.lang.CharSequence) +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_bottom_margin +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_elevation +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.internal.disposables.ArrayCompositeDisposable resources +wangdaye.com.geometricweather.R$attr: int layout_constraintStart_toEndOf +androidx.constraintlayout.widget.R$id: int start +retrofit2.ParameterHandler$RelativeUrl: java.lang.reflect.Method method +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours +androidx.appcompat.R$layout: int abc_screen_simple_overlay_action_mode +androidx.constraintlayout.widget.R$drawable: int abc_action_bar_item_background_material +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: long serialVersionUID +okhttp3.Credentials +retrofit2.RequestFactory$Builder: boolean gotUrl +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_material +com.google.android.material.button.MaterialButton: int getCornerRadius() +androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context) +wangdaye.com.geometricweather.R$attr: int buttonBarNeutralButtonStyle +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabText +com.jaredrummler.android.colorpicker.R$attr: int listChoiceBackgroundIndicator +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayHorizontalWidgetConfigActivity: Hilt_ClockDayHorizontalWidgetConfigActivity() +wangdaye.com.geometricweather.R$string: int feedback_click_toggle +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderQuery +retrofit2.Utils$GenericArrayTypeImpl: Utils$GenericArrayTypeImpl(java.lang.reflect.Type) +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_lookupCity +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_percent +okhttp3.internal.http2.Http2: byte TYPE_WINDOW_UPDATE +wangdaye.com.geometricweather.R$string: int feedback_hide_lunar +com.google.android.material.R$styleable: int[] CollapsingToolbarLayout +com.xw.repo.bubbleseekbar.R$id: int search_bar +android.didikee.donate.R$dimen: int abc_text_size_small_material +wangdaye.com.geometricweather.R$id: int accelerate +androidx.legacy.coreutils.R$attr: int fontProviderPackage +com.google.android.material.slider.Slider: android.content.res.ColorStateList getHaloTintList() +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.appcompat.resources.R$id: int action_container +okhttp3.CipherSuite: java.util.Comparator ORDER_BY_NAME +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarPopupTheme +retrofit2.RequestBuilder: void setBody(okhttp3.RequestBody) +androidx.coordinatorlayout.R$id: int info +androidx.constraintlayout.widget.R$attr: int tintMode +com.google.android.material.R$attr: int switchPadding +androidx.legacy.coreutils.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.db.entities.LocationEntity: void setResidentPosition(boolean) +okio.ByteString: okio.ByteString substring(int,int) +androidx.hilt.work.R$id: int accessibility_custom_action_16 +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator +com.google.android.material.R$color: int material_on_background_emphasis_medium +androidx.transition.R$id: int italic +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean isUnbounded() +io.reactivex.Observable: io.reactivex.Observable skipLast(int) +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.lang.Object NULL_KEY +com.turingtechnologies.materialscrollbar.R$color: int abc_background_cache_hint_selector_material_light +okio.BufferedSink: okio.Buffer buffer() +cyanogenmod.weather.WeatherInfo: int getWindSpeedUnit() +cyanogenmod.app.PartnerInterface: java.lang.String getCurrentHotwordPackageName() +wangdaye.com.geometricweather.R$id: int widget_week_week_1 +com.google.android.material.R$drawable: int abc_text_select_handle_right_mtrl_light +wangdaye.com.geometricweather.R$string: int get_more_github +okhttp3.logging.HttpLoggingInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +androidx.preference.R$styleable: int TextAppearance_android_shadowRadius +okhttp3.internal.http2.ErrorCode: int httpCode +androidx.lifecycle.Transformations$1 +com.tencent.bugly.BuglyStrategy: boolean l +cyanogenmod.weather.ICMWeatherManager$Stub: ICMWeatherManager$Stub() +androidx.preference.R$color: int secondary_text_default_material_dark +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean isEmpty() +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float pm25 +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_min +cyanogenmod.os.Concierge +com.google.android.material.R$color: int abc_decor_view_status_guard_light +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: long serialVersionUID +com.bumptech.glide.integration.okhttp.R$dimen: int notification_main_column_padding_top +com.google.android.material.R$styleable: int KeyTimeCycle_framePosition +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light_focused +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setExpandedStyle(cyanogenmod.app.CustomTile$ExpandedStyle) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.http.HttpCodec codec() +com.tencent.bugly.crashreport.common.info.a: long a +androidx.activity.R$id: int chronometer +com.turingtechnologies.materialscrollbar.R$style: int Platform_V25_AppCompat_Light +cyanogenmod.themes.ThemeManager$2: void onFinishedProcessing(java.lang.String) +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type BOTTOM +androidx.constraintlayout.widget.R$attr: int tooltipFrameBackground +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType valueOf(java.lang.String) +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent LOCKSCREEN +android.didikee.donate.R$styleable: int MenuItem_android_checkable +com.tencent.bugly.proguard.y: com.tencent.bugly.proguard.y$a g +com.google.android.material.R$string: int abc_shareactionprovider_share_with +okhttp3.internal.http2.Http2Connection: int lastGoodStreamId +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ROMANIAN +androidx.appcompat.R$dimen: int hint_alpha_material_dark +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: java.util.List getSuggestions(android.content.Intent) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableBottomCompat +com.baidu.location.e.l$b: com.baidu.location.e.l$b valueOf(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String url +androidx.preference.R$styleable: int SearchView_searchHintIcon +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +androidx.fragment.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer relativeHumidity +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitationDuration() +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState FINISHED +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotationY +wangdaye.com.geometricweather.R$attr: int waveShape +okhttp3.internal.cache.CacheInterceptor$1: void close() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +com.xw.repo.bubbleseekbar.R$attr: int imageButtonStyle +com.google.android.material.R$styleable: int ClockFaceView_valueTextColor +com.tencent.bugly.crashreport.common.info.a: void a(int) +androidx.viewpager2.R$id: int accessibility_custom_action_26 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendHourlyProvider +com.amap.api.location.AMapLocation: AMapLocation(java.lang.String) +androidx.constraintlayout.widget.R$attr: int perpendicularPath_percent +james.adaptiveicon.R$color: int material_grey_800 +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType MAPABC +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_btn_state_list_anim +retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler parseParameterAnnotation(int,java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation) +com.tencent.bugly.crashreport.crash.anr.b: void b(boolean) +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Subhead +cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_LOCATION_ADVANCED +androidx.appcompat.R$attr: int searchViewStyle +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int requestFusion(int) +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_framePosition +androidx.hilt.work.R$id: int notification_main_column_container +io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function) +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCheckedIconTint() +cyanogenmod.weather.util.WeatherUtils: double fahrenheitToCelsius(double) +androidx.viewpager2.R$styleable: int FontFamilyFont_android_font +cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_INTERNALLY_ENABLED +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial Imperial +james.adaptiveicon.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +okhttp3.internal.http.StatusLine: okhttp3.Protocol protocol +wangdaye.com.geometricweather.R$attr: int boxStrokeErrorColor +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$layout: int preference_widget_checkbox +com.google.android.gms.base.R$string: int common_signin_button_text_long +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWeatherEnd(java.lang.String) +com.google.android.material.R$styleable: int MaterialTextAppearance_lineHeight +com.tencent.bugly.crashreport.common.info.a: java.lang.String X +android.didikee.donate.R$styleable: int AlertDialog_android_layout +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTextView +okio.ForwardingTimeout: okio.Timeout deadlineNanoTime(long) +androidx.appcompat.widget.ScrollingTabContainerView +com.turingtechnologies.materialscrollbar.TouchScrollBar: float getIndicatorOffset() +com.jaredrummler.android.colorpicker.R$color: int abc_tint_switch_track +wangdaye.com.geometricweather.R$attr: int circularRadius +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: Http2Connection$ReaderRunnable$1(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[],okhttp3.internal.http2.Http2Stream) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_toolbarStyle +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_summaryOff +androidx.activity.R$styleable: int[] FontFamily +retrofit2.OkHttpCall: retrofit2.Converter responseConverter +com.google.android.material.R$styleable: int SwitchCompat_android_thumb +wangdaye.com.geometricweather.main.MainActivityViewModel +androidx.constraintlayout.widget.R$color: int bright_foreground_disabled_material_light +androidx.customview.R$integer: R$integer() +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnp +okhttp3.Route +com.google.android.material.R$styleable: int Toolbar_collapseContentDescription +androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonTint +cyanogenmod.providers.CMSettings$Global: int getIntForUser(android.content.ContentResolver,java.lang.String,int) +wangdaye.com.geometricweather.R$attr: int cardViewStyle +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onNext(java.lang.Object) +okio.RealBufferedSink: okio.BufferedSink writeLongLe(long) +com.tencent.bugly.proguard.p: boolean a(com.tencent.bugly.proguard.p,int,java.lang.String,byte[],com.tencent.bugly.proguard.o) +com.google.android.gms.signin.internal.zag +io.reactivex.internal.observers.InnerQueuedObserver: void setDone() +android.didikee.donate.R$layout: int notification_action +io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void dispose() +androidx.viewpager2.R$string: R$string() +james.adaptiveicon.R$styleable: int[] AppCompatTextHelper +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark_normal_background +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TimeStamp +com.google.android.gms.internal.location.zzj: android.os.Parcelable$Creator CREATOR +com.google.android.gms.location.ActivityTransition +com.google.android.material.R$styleable: int MotionLayout_applyMotionScene +com.tencent.bugly.Bugly: java.lang.String getAppChannel() +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: ThemesContract$ThemesColumns$InstallState() +wangdaye.com.geometricweather.R$attr: int progressBarStyle +com.amap.api.location.APSService: void onCreate() +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_android_textOn +james.adaptiveicon.R$attr: int paddingStart +wangdaye.com.geometricweather.R$styleable: int ActionBar_titleTextStyle +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintStart_toStartOf +androidx.appcompat.R$style: int Widget_AppCompat_Button_Colored +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: boolean done +okhttp3.internal.Version +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogCornerRadius +com.bumptech.glide.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$string: int sensible_temp +com.jaredrummler.android.colorpicker.R$attr: int colorControlNormal +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_material +wangdaye.com.geometricweather.R$layout: int abc_action_bar_title_item +okhttp3.OkHttpClient: java.util.List protocols +androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context,android.util.AttributeSet) +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: int requestFusion(int) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Date +android.didikee.donate.R$style: int TextAppearance_AppCompat_Medium_Inverse +androidx.constraintlayout.widget.R$id: int invisible +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_toBottomOf +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean mAskedShow +wangdaye.com.geometricweather.R$animator: int weather_snow_2 +com.tencent.bugly.proguard.y: int n +androidx.appcompat.R$color: int primary_material_dark +androidx.constraintlayout.widget.R$color: int primary_material_dark +androidx.core.widget.NestedScrollView: float getBottomFadingEdgeStrength() +com.baidu.location.e.l$b: void a(java.lang.StringBuffer,java.lang.String,java.lang.String,int) +wangdaye.com.geometricweather.R$id: int fill_vertical +com.turingtechnologies.materialscrollbar.R$styleable: int[] TabItem +androidx.loader.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_android_foregroundGravity +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService this$0 +androidx.appcompat.R$styleable: int AppCompatTheme_listMenuViewStyle +wangdaye.com.geometricweather.R$string: int feedback_show_widget_card_alpha +com.google.gson.stream.JsonReader: void beginObject() +wangdaye.com.geometricweather.R$string: int abc_menu_function_shortcut_label +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: int UnitType +com.google.android.material.chip.Chip: android.content.res.ColorStateList getCheckedIconTint() +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_delete_shortcut_label +com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context) +com.google.android.material.R$attr: int yearStyle +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onComplete() +androidx.vectordrawable.animated.R$integer: R$integer() +com.turingtechnologies.materialscrollbar.R$attr: int boxBackgroundMode +cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationDefault() +com.amap.api.fence.GeoFence: int e +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver +com.xw.repo.bubbleseekbar.R$id: int search_src_text +retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object invokeSuspend(java.lang.Object) +okhttp3.CookieJar: void saveFromResponse(okhttp3.HttpUrl,java.util.List) +wangdaye.com.geometricweather.R$attr: int bsb_section_text_interval +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void disposeInner() +okhttp3.Cookie: java.lang.String domain() +james.adaptiveicon.R$styleable: int AppCompatTheme_panelMenuListTheme +android.didikee.donate.R$style: int Widget_AppCompat_Button +androidx.appcompat.widget.Toolbar: void setSubtitle(int) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver) +com.google.android.material.R$styleable: int ColorStateListItem_android_alpha +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: int mConditionCode +androidx.constraintlayout.widget.R$styleable: int Toolbar_android_minHeight +androidx.constraintlayout.widget.R$styleable: int[] ActionBar +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String cityId +io.reactivex.internal.subscriptions.SubscriptionArbiter: void setSubscription(org.reactivestreams.Subscription) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult: java.util.List Summaries +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.preference.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +androidx.appcompat.R$id: int search_mag_icon +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.HourlyEntity) +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void dispose() +james.adaptiveicon.R$style: int Widget_AppCompat_ProgressBar +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPopupWindowStyle +com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_close_circle +androidx.fragment.R$drawable: int notify_panel_notification_icon_bg +androidx.preference.R$drawable: int abc_textfield_search_material +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_stacked_tab_max_width +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean setActiveProfile(android.os.ParcelUuid) +com.turingtechnologies.materialscrollbar.R$styleable: int[] CollapsingToolbarLayout +android.didikee.donate.R$drawable +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text_Day +androidx.preference.PreferenceDialogFragmentCompat +okhttp3.internal.http2.Http2Connection: void close() +androidx.preference.R$id: int item_touch_helper_previous_elevation +com.google.gson.stream.JsonReader: int PEEKED_END_ARRAY +wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonCompat +com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginRight +android.didikee.donate.R$dimen: int abc_control_padding_material +com.google.android.material.R$layout: int abc_expanded_menu_layout +com.google.android.material.internal.NavigationMenuItemView +androidx.work.R$id: int accessibility_custom_action_22 +androidx.preference.R$styleable: int AnimatedStateListDrawableItem_android_id +okhttp3.HttpUrl: java.lang.String username() +okhttp3.internal.platform.Platform: void log(int,java.lang.String,java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String province +james.adaptiveicon.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getDegreeDayTemperature() +com.github.rahatarmanahmed.cpv.BuildConfig: java.lang.String FLAVOR +cyanogenmod.app.CustomTile$ExpandedListItem: void setExpandedListItemBitmap(android.graphics.Bitmap) +wangdaye.com.geometricweather.R$xml: int widget_clock_day_horizontal +androidx.appcompat.resources.R$id: int chronometer +androidx.viewpager.R$layout +wangdaye.com.geometricweather.settings.dialogs.AdaptiveIconDialog: AdaptiveIconDialog() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_min +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.HistoryEntity) +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_track_mtrl_alpha +wangdaye.com.geometricweather.R$string: int feedback_clock_font +com.tencent.bugly.proguard.ak: java.util.ArrayList q +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Surface +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +androidx.hilt.work.R$drawable: int notification_icon_background +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$style: int ThemeOverlay_Design_TextInputEditText +androidx.preference.R$styleable: int CompoundButton_android_button +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_displayOptions +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginLeft +com.turingtechnologies.materialscrollbar.R$id: int action_mode_bar_stub +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_1 +com.google.android.material.R$styleable: int[] MenuItem +wangdaye.com.geometricweather.R$string: int feedback_refresh_ui_after_refresh +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.viewpager2.R$id: int blocking +android.didikee.donate.R$string: int abc_searchview_description_query +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Small +androidx.appcompat.R$styleable: int Toolbar_contentInsetStartWithNavigation +androidx.lifecycle.ProcessLifecycleOwner: void init(android.content.Context) +com.google.android.material.R$dimen: int mtrl_transition_shared_axis_slide_distance +com.google.android.material.R$styleable: int AppCompatTheme_listDividerAlertDialog +android.didikee.donate.R$style: int Theme_AppCompat_CompactMenu +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position position +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_OutlinedButton +androidx.lifecycle.ProcessLifecycleOwner: void dispatchPauseIfNeeded() +com.google.android.material.R$dimen: int highlight_alpha_material_colored +james.adaptiveicon.R$attr: int switchStyle +com.google.android.material.R$dimen: int mtrl_badge_radius +androidx.swiperefreshlayout.R$styleable: int[] ColorStateListItem +com.turingtechnologies.materialscrollbar.R$attr: int actionBarWidgetTheme +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitation() +androidx.constraintlayout.widget.R$attr: int listPopupWindowStyle androidx.lifecycle.extensions.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_liftOnScrollTargetViewId -androidx.legacy.coreutils.R$styleable: int GradientColorItem_android_color -androidx.lifecycle.Transformations$1: androidx.arch.core.util.Function val$mapFunction -cyanogenmod.hardware.DisplayMode$1: java.lang.Object[] newArray(int) -com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_internal_bg -com.turingtechnologies.materialscrollbar.R$attr: int titleMarginEnd -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark_focused -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: java.lang.String getY() -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_5 -com.google.android.material.R$dimen: int mtrl_btn_padding_bottom -wangdaye.com.geometricweather.R$styleable: int MaterialButton_rippleColor -com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_layout -wangdaye.com.geometricweather.R$drawable: int weather_thunder_mini_xml -androidx.legacy.coreutils.R$id: int tag_transition_group -com.google.android.material.R$attr: int colorError -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: ObservableObserveOn$ObserveOnObserver(io.reactivex.Observer,io.reactivex.Scheduler$Worker,boolean,int) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRealFeelTemperature(java.lang.Integer) -cyanogenmod.app.CustomTile$ExpandedItem: android.os.Parcelable$Creator CREATOR -androidx.preference.R$drawable: int abc_btn_colored_material -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle -androidx.appcompat.R$drawable: int abc_textfield_search_material -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_moonrise_moonset -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeFillColor -androidx.preference.R$styleable: int DrawerArrowToggle_barLength -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$attr: int scrimBackground -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date getSetDate() +wangdaye.com.geometricweather.R$attr: int motion_postLayoutCollision +com.jaredrummler.android.colorpicker.R$dimen: int hint_pressed_alpha_material_light +okio.Buffer$UnsafeCursor: int end +okhttp3.internal.http1.Http1Codec: void flushRequest() +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_checkable +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderTitle +androidx.preference.R$styleable: int PreferenceFragment_android_divider +com.jaredrummler.android.colorpicker.R$layout: int select_dialog_item_material +com.google.android.material.R$styleable: int AppCompatTheme_actionModeCloseDrawable +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_borderlessButtonStyle +androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context,android.util.AttributeSet) +com.google.android.material.textfield.TextInputLayout: void setHelperText(java.lang.CharSequence) +wangdaye.com.geometricweather.R$attr: int showAsAction +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollHorizontalTrackDrawable +okhttp3.internal.cache2.Relay$RelaySource: long read(okio.Buffer,long) +okhttp3.Protocol: okhttp3.Protocol HTTP_2 +androidx.preference.R$attr: int thickness +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: boolean validate(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonStyle +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderFetchStrategy +cyanogenmod.weather.WeatherLocation$1: cyanogenmod.weather.WeatherLocation createFromParcel(android.os.Parcel) +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_title +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar +com.google.android.material.R$styleable: int Layout_layout_goneMarginEnd +wangdaye.com.geometricweather.R$array: int widget_text_color_values +wangdaye.com.geometricweather.R$styleable: int MaterialButton_backgroundTint +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_entries +wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderCancelButton +com.xw.repo.bubbleseekbar.R$attr: int lineHeight +wangdaye.com.geometricweather.R$attr: int minTouchTargetSize +android.didikee.donate.R$id: int parentPanel +wangdaye.com.geometricweather.R$styleable: int MaterialButton_strokeWidth +androidx.preference.R$styleable: int Preference_summary +wangdaye.com.geometricweather.R$string: int material_timepicker_select_time +androidx.hilt.work.R$style: int TextAppearance_Compat_Notification +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_orientation +androidx.preference.R$styleable: int GradientColorItem_android_color +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity +androidx.constraintlayout.widget.R$attr: int motionStagger +androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory mFactory +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_track_mtrl_alpha +com.google.android.material.R$attr: int progressBarPadding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: void setValue(java.util.List) +cyanogenmod.weather.CMWeatherManager$RequestStatus: int SUBMITTED_TOO_SOON +androidx.transition.R$id: int ghost_view_holder +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarSplitStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String zh_CN +wangdaye.com.geometricweather.R$styleable: int Transition_constraintSetEnd +androidx.constraintlayout.helper.widget.Flow: void setHorizontalGap(int) +wangdaye.com.geometricweather.R$attr: int windowActionBarOverlay +okhttp3.internal.cache.DiskLruCache: java.lang.String MAGIC +androidx.preference.R$drawable: int abc_vector_test +com.google.android.material.textfield.TextInputLayout: void addOnEndIconChangedListener(com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener) +androidx.fragment.R$id: int tag_accessibility_actions +okhttp3.internal.http2.Http2Connection$7: Http2Connection$7(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okhttp3.internal.http2.ErrorCode) +okhttp3.Cookie: java.util.regex.Pattern DAY_OF_MONTH_PATTERN +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_type +com.turingtechnologies.materialscrollbar.R$drawable: int avd_hide_password +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getUrl() +james.adaptiveicon.R$styleable: int TextAppearance_android_textColorHint +com.google.android.material.R$dimen: int notification_media_narrow_margin androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setTargetOffsetTopAndBottom(int) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_min -androidx.constraintlayout.widget.R$styleable: int[] GradientColorItem -androidx.swiperefreshlayout.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: android.graphics.Path getRetreatingJoinPath() -okio.SegmentedByteString: boolean rangeEquals(int,okio.ByteString,int,int) -io.reactivex.internal.subscriptions.SubscriptionHelper: void cancel() -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_subtitle_material_toolbar -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: java.lang.String Unit -androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor[] values() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: double Value -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getBackgroundColor() -wangdaye.com.geometricweather.background.polling.work.worker.AsyncWorker -androidx.constraintlayout.motion.widget.MotionLayout: float getTargetPosition() -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd -androidx.preference.R$id: int expand_activities_button -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long count -com.amap.api.location.AMapLocationClientOption: boolean isGpsFirst() -com.turingtechnologies.materialscrollbar.R$attr: int chipStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_24 -cyanogenmod.weatherservice.ServiceRequestResult: int hashCode() -com.tencent.bugly.crashreport.common.info.a: java.util.List o -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void dispose() -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: int index -com.google.android.gms.signin.internal.zak -com.xw.repo.bubbleseekbar.R$color: int primary_text_default_material_dark -androidx.appcompat.widget.AbsActionBarView: int getAnimatedVisibility() -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: java.lang.Integer direction -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_cut_mtrl_alpha -cyanogenmod.app.ThemeVersion$ComponentVersion: java.lang.String name -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight -androidx.loader.R$id: int normal -com.tencent.bugly.proguard.w: boolean a(java.lang.Runnable,long) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button -org.greenrobot.greendao.AbstractDao: void deleteByKeyInsideSynchronized(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement) -wangdaye.com.geometricweather.R$drawable: int notif_temp_72 -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xms -com.google.android.material.R$attr: int materialCalendarHeaderCancelButton -cyanogenmod.providers.CMSettings$Global: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) -okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: boolean unsupported -wangdaye.com.geometricweather.R$drawable: int clock_hour_dark -wangdaye.com.geometricweather.R$drawable: int design_ic_visibility -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min -androidx.preference.R$attr: int popupWindowStyle -com.google.android.material.R$dimen: int abc_text_size_body_2_material -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_large_material -com.turingtechnologies.materialscrollbar.R$id: int action_menu_divider -androidx.appcompat.resources.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.db.entities.DailyEntity: void setTreeLevel(java.lang.Integer) -okhttp3.EventListener: void responseBodyStart(okhttp3.Call) -cyanogenmod.providers.CMSettings$Secure: android.net.Uri CONTENT_URI -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver parent -wangdaye.com.geometricweather.R$dimen: int widget_standard_weather_icon_size -com.google.android.material.R$style: int Widget_Design_AppBarLayout -cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String TIMEZONE_NAME -androidx.lifecycle.FullLifecycleObserverAdapter: androidx.lifecycle.LifecycleEventObserver mLifecycleEventObserver -androidx.constraintlayout.widget.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -okio.Buffer$UnsafeCursor: okio.Segment segment -com.google.android.material.R$styleable: int TextAppearance_fontFamily -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalBias -wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode[] values() -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,int) -com.turingtechnologies.materialscrollbar.R$attr: int tooltipForegroundColor -com.google.android.material.R$attr: int layout_constraintHeight_percent -androidx.viewpager.R$dimen: int notification_subtext_size -cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_OFF -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) -androidx.transition.R$styleable: int FontFamilyFont_fontStyle -androidx.lifecycle.LiveData$ObserverWrapper: boolean isAttachedTo(androidx.lifecycle.LifecycleOwner) -com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float ParticulateMatter10 -wangdaye.com.geometricweather.R$styleable: int State_android_id -android.didikee.donate.R$styleable: int AppCompatTheme_colorControlNormal -androidx.constraintlayout.widget.R$styleable: int Constraint_android_minWidth -androidx.preference.R$attr: int textAppearanceLargePopupMenu -cyanogenmod.profiles.StreamSettings: android.os.Parcelable$Creator CREATOR -com.baidu.location.e.l$b: int e -com.turingtechnologies.materialscrollbar.CustomIndicator -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCopyDrawable -wangdaye.com.geometricweather.R$color: int colorLine -james.adaptiveicon.R$styleable: int ActionBar_progressBarStyle -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.internal.util.AtomicThrowable errors -cyanogenmod.providers.CMSettings: java.lang.String AUTHORITY -okhttp3.internal.http.HttpHeaders: java.util.Set varyFields(okhttp3.Headers) -cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder access$200(cyanogenmod.externalviews.KeyguardExternalView) -okio.RealBufferedSink: okio.BufferedSink writeShort(int) -com.google.android.material.bottomappbar.BottomAppBar: float getFabCradleMargin() -io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onNext(java.lang.Object) -androidx.appcompat.resources.R$id: int line1 -james.adaptiveicon.R$styleable: int TextAppearance_android_shadowRadius -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() -com.jaredrummler.android.colorpicker.R$attr: int homeAsUpIndicator -com.turingtechnologies.materialscrollbar.R$dimen: int cardview_compat_inset_shadow -okhttp3.internal.cache.DiskLruCache$Editor: void detach() -com.google.android.material.chip.Chip: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) -androidx.drawerlayout.R$styleable: int FontFamilyFont_android_font -androidx.preference.R$styleable: int TextAppearance_android_textFontWeight -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: java.util.concurrent.TimeUnit unit -androidx.appcompat.widget.AppCompatCheckBox: android.graphics.PorterDuff$Mode getSupportButtonTintMode() -com.amap.api.location.AMapLocationClientOption: boolean OPEN_ALWAYS_SCAN_WIFI -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline5 +com.bumptech.glide.integration.okhttp.R$id: int forever +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.String icon +com.google.android.material.R$color: int mtrl_text_btn_text_color_selector +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Body2 +com.baidu.location.e.h$c: com.baidu.location.e.h$c a +wangdaye.com.geometricweather.R$id: int material_timepicker_ok_button +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge +okhttp3.internal.Util +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: boolean isDisposed() +okio.AsyncTimeout$Watchdog +com.xw.repo.bubbleseekbar.R$attr: int maxButtonHeight +androidx.constraintlayout.widget.R$attr: int actionModeCloseButtonStyle +androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context) +okhttp3.internal.http2.Http2Stream: long bytesLeftInWriteWindow +retrofit2.KotlinExtensions$awaitResponse$2$2: void onResponse(retrofit2.Call,retrofit2.Response) +wangdaye.com.geometricweather.R$anim: int mtrl_bottom_sheet_slide_in +com.tencent.bugly.proguard.ak: java.lang.String l +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State ENQUEUED +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Filter +androidx.viewpager2.widget.ViewPager2: int getOffscreenPageLimit() +wangdaye.com.geometricweather.R$id: int exitUntilCollapsed +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean done +com.google.android.material.R$id: int mtrl_calendar_days_of_week +com.google.android.material.R$id: int mtrl_picker_text_input_range_end +com.google.android.material.R$attr: int materialAlertDialogTitleTextStyle +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setGpsFirst(boolean) +com.google.android.material.textfield.TextInputLayout: void setTextInputAccessibilityDelegate(com.google.android.material.textfield.TextInputLayout$AccessibilityDelegate) +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerX +androidx.preference.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_PAUSE +com.tencent.bugly.crashreport.common.info.PlugInBean: PlugInBean(java.lang.String,java.lang.String,java.lang.String) +androidx.appcompat.R$drawable: int abc_seekbar_thumb_material +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitationDuration +androidx.viewpager.R$attr: int alpha +androidx.loader.R$layout: int notification_action +cyanogenmod.media.MediaRecorder: java.lang.String CAPTURE_AUDIO_HOTWORD_PERMISSION +androidx.viewpager.widget.ViewPager: int getCurrentItem() +androidx.core.R$id: int forever +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.HistoryEntity) +androidx.constraintlayout.utils.widget.ImageFilterView: float getRoundPercent() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_tooltipForegroundColor +okhttp3.internal.http2.Http2: byte FLAG_PRIORITY +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: int getIconResStart() +wangdaye.com.geometricweather.R$id: int container_main_pollen +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +androidx.appcompat.widget.DropDownListView: void setSelector(android.graphics.drawable.Drawable) +com.xw.repo.bubbleseekbar.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$id: int notification_base_weather +androidx.lifecycle.ComputableLiveData: androidx.lifecycle.LiveData getLiveData() +androidx.hilt.work.R$id: int action_container +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getLunar() +wangdaye.com.geometricweather.R$integer: int cpv_default_max_progress +android.didikee.donate.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +androidx.preference.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +com.turingtechnologies.materialscrollbar.R$attr: int selectableItemBackgroundBorderless +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_letter_spacing +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: double Value +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeSplitBackground +com.google.android.material.slider.BaseSlider: void setTickTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon +com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatElevation() +cyanogenmod.weather.WeatherInfo: int mTempUnit +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarTheme_Light +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_homeLayout +com.google.android.material.R$animator: int design_fab_show_motion_spec +androidx.preference.R$id: int accessibility_custom_action_9 +androidx.preference.R$id: int spinner +androidx.activity.R$id: int right_side +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int TROPICAL_STORM +android.didikee.donate.R$id: int line3 +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$200(com.github.rahatarmanahmed.cpv.CircularProgressView) +com.google.android.material.R$styleable: int MaterialShape_shapeAppearance +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_16dp +com.google.android.material.R$attr: int endIconMode +com.google.android.material.R$id: int customPanel +wangdaye.com.geometricweather.R$attr: int msb_lightOnTouch +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +com.amap.api.location.AMapLocation: int LOCATION_TYPE_LAST_LOCATION_CACHE +com.google.android.material.R$attr: int itemStrokeColor +com.google.android.material.R$drawable: int abc_btn_radio_to_on_mtrl_000 +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +com.amap.api.location.AMapLocationClientOption$AMapLocationMode +com.bumptech.glide.integration.okhttp.R$id: int italic +cyanogenmod.themes.IThemeService: long getLastThemeChangeTime() +androidx.constraintlayout.widget.R$id: int shortcut +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String dataUptime +com.google.android.material.R$attr: int fontStyle +wangdaye.com.geometricweather.weather.apis.CNWeatherApi +androidx.appcompat.R$anim: int btn_checkbox_to_checked_icon_null_animation +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_12 +androidx.transition.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.R$id: int notification_big_temp_1 +wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_iconResStart +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int EndMinute +androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context,android.util.AttributeSet) +cyanogenmod.weather.CMWeatherManager$2 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionBarOverlay +androidx.fragment.R$id: int action_container +androidx.preference.R$id: int src_atop +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getSnowPrecipitation() +com.google.android.material.R$styleable: int Constraint_layout_constrainedWidth +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: AccuHourlyResult() +com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_layout +wangdaye.com.geometricweather.common.basic.models.weather.History: long time +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_CAMELLIA_256_CBC_SHA +androidx.preference.SeekBarPreference$SavedState +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner inner +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean +wangdaye.com.geometricweather.R$attr: int motion_triggerOnCollision +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy MISSING +james.adaptiveicon.R$attr: int colorButtonNormal +androidx.viewpager.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.constraintlayout.widget.R$attr: int content +okhttp3.internal.ws.RealWebSocket: int sentPingCount() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onError(java.lang.Throwable) +androidx.appcompat.R$color: int material_grey_600 +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_enterFadeDuration +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status INITIALIZING +com.bumptech.glide.load.HttpException +com.google.android.material.chip.Chip: void setCloseIconHovered(boolean) +androidx.appcompat.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.transition.R$drawable: int notification_template_icon_low_bg +androidx.preference.R$attr: int updatesContinuously +androidx.appcompat.resources.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: double Value +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours: AccuCurrentResult$PrecipitationSummary$Past6Hours() +james.adaptiveicon.R$dimen: int abc_text_size_display_3_material +com.turingtechnologies.materialscrollbar.R$color: int material_grey_900 +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: java.lang.reflect.Method findByIssuerAndSignatureMethod +okhttp3.OkHttpClient: int writeTimeout +com.google.android.gms.common.api.internal.zaab +androidx.preference.R$styleable: int MenuItem_iconTint +com.google.android.gms.common.images.WebImage +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight +androidx.activity.R$dimen: R$dimen() +androidx.preference.R$drawable: int abc_switch_thumb_material +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error +com.google.android.material.R$styleable: int AppCompatTextView_drawableStartCompat +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean hasKey(java.lang.Object) +wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_width +com.xw.repo.bubbleseekbar.R$anim: int abc_slide_in_top +androidx.viewpager2.R$id: int accessibility_custom_action_5 +com.google.android.material.R$styleable: int[] MotionHelper +com.google.android.material.R$layout: int design_text_input_end_icon +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String formattedId +james.adaptiveicon.R$dimen: int abc_disabled_alpha_material_light +com.google.android.material.R$styleable: int SwitchCompat_track +cyanogenmod.weather.CMWeatherManager$1$1: void run() +wangdaye.com.geometricweather.R$string: int mtrl_picker_cancel +okhttp3.internal.http2.Huffman: int[] CODES +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +com.google.android.material.R$styleable: int MaterialCheckBox_useMaterialThemeColors +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog +com.jaredrummler.android.colorpicker.R$attr: int checkBoxPreferenceStyle +cyanogenmod.externalviews.KeyguardExternalView: void onKeyguardShowing(boolean) +com.turingtechnologies.materialscrollbar.DragScrollBar: boolean getHide() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult +androidx.coordinatorlayout.R$id: int notification_background +james.adaptiveicon.R$color: int dim_foreground_material_light +okhttp3.internal.ws.RealWebSocket: java.util.concurrent.ScheduledExecutorService executor +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String READ_ALARMS_PERMISSION +retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: CompletableFutureCallAdapterFactory$CallCancelCompletableFuture(retrofit2.Call) +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void dispose() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: double Value +androidx.viewpager2.R$drawable: int notification_tile_bg +com.turingtechnologies.materialscrollbar.R$string: int abc_shareactionprovider_share_with +com.tencent.bugly.crashreport.common.info.a: java.util.Map v() +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: ICMStatusBarManager$Stub$Proxy(android.os.IBinder) +androidx.coordinatorlayout.R$integer +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeFindDrawable +com.google.android.material.R$styleable: int NavigationView_itemIconTint +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintStart_toEndOf +okhttp3.ResponseBody: java.io.Reader charStream() +okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot removeSnapshot +wangdaye.com.geometricweather.R$attr: int tabPaddingStart +com.xw.repo.bubbleseekbar.R$attr: int srcCompat +com.google.android.material.textfield.TextInputLayout: android.graphics.drawable.Drawable getErrorIconDrawable() +cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getProfile(java.lang.String) +androidx.appcompat.widget.AppCompatCheckBox: void setButtonDrawable(int) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets +androidx.drawerlayout.R$styleable: int[] GradientColor +com.jaredrummler.android.colorpicker.R$style: int PreferenceFragmentList +androidx.constraintlayout.widget.R$styleable: int Transition_transitionDisable +com.google.android.material.R$style: int TextAppearance_AppCompat_Subhead +com.xw.repo.bubbleseekbar.R$string: int abc_menu_shift_shortcut_label +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_numericShortcut +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalAlign +wangdaye.com.geometricweather.R$attr: int fontFamily +androidx.preference.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setValue(java.util.List) +wangdaye.com.geometricweather.R$drawable: int notif_temp_47 +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_barLength +com.amap.api.fence.GeoFenceManagerBase: boolean removeGeoFence(com.amap.api.fence.GeoFence) +androidx.appcompat.R$color: int primary_dark_material_dark +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Text +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_normal +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setCurrentIndicatorColor(int) +com.google.android.gms.common.server.response.zal +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerY +com.jaredrummler.android.colorpicker.R$style: int Preference_SeekBarPreference +androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitle +james.adaptiveicon.R$bool: int abc_action_bar_embed_tabs +okhttp3.logging.HttpLoggingInterceptor$Level +com.google.gson.internal.LazilyParsedNumber: boolean equals(java.lang.Object) +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_primary_mtrl_alpha +com.google.android.material.R$string: int mtrl_picker_invalid_format_use +androidx.preference.R$styleable: int PreferenceFragmentCompat_android_dividerHeight +com.google.android.material.R$styleable: int TextInputLayout_boxBackgroundColor +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA +wangdaye.com.geometricweather.search.SearchActivity +androidx.constraintlayout.widget.ConstraintLayout: void setOnConstraintsChanged(androidx.constraintlayout.widget.ConstraintsChangedListener) +retrofit2.KotlinExtensions$suspendAndThrow$1: int label +okhttp3.internal.platform.AndroidPlatform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Line2 +cyanogenmod.hardware.ICMHardwareService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Subhead +com.tencent.bugly.proguard.am: java.util.Map k +androidx.appcompat.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: void execute() +androidx.appcompat.R$styleable: int CompoundButton_buttonCompat +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_10 +com.google.android.material.R$dimen: int material_filled_edittext_font_2_0_padding_top +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource LOCAL +com.tencent.bugly.proguard.j: void a(java.util.Collection,int) +retrofit2.ServiceMethod +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void otherError(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean delayError +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationX +wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_checked_circle +com.google.android.material.R$styleable: int AppCompatTheme_colorButtonNormal +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: android.os.IBinder asBinder() +androidx.appcompat.R$styleable: int AppCompatTheme_dividerHorizontal +android.didikee.donate.R$styleable: int SwitchCompat_android_textOn +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_pre_l_text_clip_padding +com.google.android.material.R$styleable: int[] SwitchMaterial +cyanogenmod.app.suggest.IAppSuggestManager$Stub +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingLeftSystemWindowInsets +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function9) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.String dailyWeatherIcon +androidx.vectordrawable.R$layout: int custom_dialog +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder sslSocketFactory(javax.net.ssl.SSLSocketFactory) +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_title_divider_material +androidx.appcompat.R$styleable: int[] AnimatedStateListDrawableTransition +android.support.v4.os.ResultReceiver$MyRunnable: android.os.Bundle mResultData +androidx.transition.R$color: int notification_icon_bg_color +james.adaptiveicon.R$styleable: int MenuGroup_android_id +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: MfCurrentResult$Position() androidx.preference.R$string: int abc_searchview_description_clear -androidx.preference.R$styleable: int CompoundButton_buttonCompat -androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_material -io.reactivex.subjects.PublishSubject$PublishDisposable: io.reactivex.subjects.PublishSubject parent -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent[] $VALUES -com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Entry -com.amap.api.location.AMapLocationClient: void enableBackgroundLocation(int,android.app.Notification) -android.didikee.donate.R$styleable: int MenuGroup_android_enabled -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_13 -okhttp3.internal.http2.Http2Connection: void pushExecutorExecute(okhttp3.internal.NamedRunnable) -cyanogenmod.app.ThemeComponent -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Large_Inverse -io.reactivex.internal.queue.SpscArrayQueue: java.util.concurrent.atomic.AtomicLong producerIndex -androidx.constraintlayout.widget.R$color: int dim_foreground_material_dark -com.tencent.bugly.crashreport.CrashReport: java.lang.String getAppChannel() -androidx.appcompat.resources.R$color: int notification_action_color_filter -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_percent -cyanogenmod.profiles.BrightnessSettings: BrightnessSettings(int,boolean) -cyanogenmod.app.ILiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -androidx.preference.R$style: int Widget_AppCompat_ImageButton -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_constraintSet -okhttp3.ConnectionSpec: int hashCode() +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: long serialVersionUID +com.google.android.material.R$attr: int fabCradleMargin +cyanogenmod.providers.CMSettings$Global: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) +okio.GzipSource: byte SECTION_DONE +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: java.lang.String DESCRIPTOR +androidx.lifecycle.SavedStateHandle$SavingStateLiveData +androidx.core.R$styleable: int ColorStateListItem_alpha +androidx.work.R$attr: int fontProviderPackage +androidx.preference.R$style: int Base_AlertDialog_AppCompat +com.google.android.material.tabs.TabLayout: void setupWithViewPager(androidx.viewpager.widget.ViewPager) +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +wangdaye.com.geometricweather.R$id: int notification_multi_city_text_2 +okhttp3.internal.http2.Http2Stream$FramingSink: long EMIT_BUFFER_SIZE +com.google.android.material.R$styleable: int MotionLayout_motionDebug +com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String t +com.turingtechnologies.materialscrollbar.R$color: int material_grey_100 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_wrapMode +com.turingtechnologies.materialscrollbar.R$id: int parentPanel +com.bumptech.glide.load.engine.GlideException: java.util.List getRootCauses() +okhttp3.internal.cache.CacheStrategy: boolean isCacheable(okhttp3.Response,okhttp3.Request) +okhttp3.internal.http2.Header: int hpackSize +androidx.lifecycle.ReportFragment: void injectIfNeededIn(android.app.Activity) +androidx.vectordrawable.R$styleable: int GradientColor_android_centerY +android.didikee.donate.R$style: int Widget_AppCompat_Button_Borderless +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableItem_android_id +androidx.constraintlayout.widget.R$drawable: int abc_ab_share_pack_mtrl_alpha com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_background_transition_holo_dark -com.google.android.material.R$drawable: int notification_bg_normal -androidx.preference.R$styleable: int AppCompatTextView_android_textAppearance -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabBar -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.MinutelyEntityDao minutelyEntityDao -wangdaye.com.geometricweather.R$id: int adjust_height -com.jaredrummler.android.colorpicker.R$attr: int dropDownListViewStyle -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar -com.xw.repo.bubbleseekbar.R$color: int primary_material_light -androidx.drawerlayout.R$attr: int fontProviderCerts -cyanogenmod.themes.ThemeManager$ThemeProcessingListener -okio.GzipSource: void checkEqual(java.lang.String,int,int) -com.github.rahatarmanahmed.cpv.CircularProgressView$5: void onAnimationCancel(android.animation.Animator) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onKeyguardDismissed() -com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getAqiText() -androidx.appcompat.R$dimen: int notification_large_icon_height -com.google.android.material.R$styleable: int TabLayout_tabPaddingEnd -androidx.vectordrawable.R$id: int dialog_button -wangdaye.com.geometricweather.R$layout: int preference_dropdown -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy -wangdaye.com.geometricweather.R$style: int Widget_Design_BottomNavigationView -androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorError -cyanogenmod.providers.CMSettings -com.google.android.material.R$dimen: int mtrl_snackbar_background_corner_radius -cyanogenmod.providers.ThemesContract$ThemesColumns: android.net.Uri CONTENT_URI -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitationProbability -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarSize -okhttp3.RequestBody$2: byte[] val$content -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator RECENTS_SHOW_SEARCH_BAR_VALIDATOR -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int NO_REQUEST_HAS_VALUE -com.google.android.material.R$style: int Widget_MaterialComponents_Button_Icon -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean) -com.google.android.material.R$attr: int paddingBottomNoButtons -androidx.hilt.work.R$id: int accessibility_custom_action_26 -androidx.constraintlayout.widget.R$anim: int abc_slide_out_top -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontVariationSettings -james.adaptiveicon.R$styleable: int Toolbar_logoDescription -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColor -androidx.constraintlayout.widget.R$attr: int selectableItemBackgroundBorderless -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onError(java.lang.Throwable) -android.didikee.donate.R$drawable: int abc_control_background_material -androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMarkTint -com.google.android.material.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance -okhttp3.internal.http2.Http2Reader: int readMedium(okio.BufferedSource) +androidx.preference.R$styleable: int MenuView_android_verticalDivider +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial +com.bumptech.glide.R$layout: int notification_template_custom_big +androidx.appcompat.R$styleable: int GradientColor_android_startX +cyanogenmod.app.Profile: void setBrightness(cyanogenmod.profiles.BrightnessSettings) +wangdaye.com.geometricweather.R$layout: int cpv_preference_circle +androidx.hilt.R$drawable: int notification_template_icon_low_bg +androidx.activity.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.R$array: int notification_styles +com.google.android.material.R$style: int Widget_MaterialComponents_Light_ActionBar_Solid wangdaye.com.geometricweather.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.R$attr: int hideOnScroll -com.jaredrummler.android.colorpicker.R$attr: int fastScrollVerticalThumbDrawable -com.tencent.bugly.crashreport.common.info.a: void a(boolean) -com.google.android.material.card.MaterialCardView: int getStrokeWidth() -com.google.android.material.R$drawable: int mtrl_popupmenu_background -com.jaredrummler.android.colorpicker.R$attr: int layout_keyline -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintVertical_bias -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer direction -androidx.lifecycle.ProcessLifecycleOwner$2 -wangdaye.com.geometricweather.R$attr: int windowNoTitle +com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.animation.MotionSpec getShowMotionSpec() +okhttp3.internal.io.FileSystem: void deleteContents(java.io.File) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endY +com.google.android.material.R$dimen: int mtrl_calendar_day_height +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constrainedHeight +com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: void setFrom(java.lang.String) +androidx.loader.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$color: int colorLevel_2 +cyanogenmod.profiles.AirplaneModeSettings: void readFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitationProbability +io.reactivex.internal.util.ArrayListSupplier: java.util.concurrent.Callable asCallable() +androidx.transition.R$drawable: int notification_action_background +com.jaredrummler.android.colorpicker.R$id: int search_src_text +com.bumptech.glide.integration.okhttp.R$dimen: int compat_notification_large_icon_max_width +com.google.android.material.R$id: int search_close_btn +com.google.android.material.card.MaterialCardView: void setRippleColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$attr: int cardBackgroundColor +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ImageButton +com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetLeft +com.jaredrummler.android.colorpicker.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$color: int mtrl_btn_ripple_color +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_content_inset_with_nav +wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_iconResEnd +wangdaye.com.geometricweather.R$dimen: int fastscroll_default_thickness +wangdaye.com.geometricweather.R$drawable: int ic_star_outline +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cwd +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer rainProductAvailable +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: IThermalListenerCallback$Stub$Proxy(android.os.IBinder) +okio.Source: long read(okio.Buffer,long) +com.google.android.material.transformation.FabTransformationBehavior: FabTransformationBehavior() +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float snow +androidx.customview.R$id: int action_image +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationZ +wangdaye.com.geometricweather.R$layout: int test_toolbar +com.jaredrummler.android.colorpicker.R$layout: int cpv_preference_square +com.google.android.material.R$id: int action_container +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_thickness +androidx.preference.ListPreferenceDialogFragmentCompat +androidx.fragment.R$attr: int font +androidx.hilt.work.R$color: R$color() +james.adaptiveicon.R$attr: R$attr() +wangdaye.com.geometricweather.R$drawable: int cpv_alpha +wangdaye.com.geometricweather.R$id: int search_badge +okhttp3.internal.Util: boolean containsInvalidHostnameAsciiCodes(java.lang.String) +cyanogenmod.app.ICMTelephonyManager: void setDefaultSmsSub(int) +com.tencent.bugly.crashreport.common.info.a: int D() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWetBulbTemperature +wangdaye.com.geometricweather.db.entities.WeatherEntity: long timeStamp +androidx.core.R$id: int accessibility_custom_action_7 +androidx.preference.R$styleable: int AppCompatTheme_alertDialogTheme +wangdaye.com.geometricweather.R$id: int title +com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_950 +com.jaredrummler.android.colorpicker.R$anim: int abc_tooltip_enter +androidx.appcompat.R$drawable: int abc_textfield_default_mtrl_alpha +com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset +wangdaye.com.geometricweather.R$string: int v7_preference_off +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupMenu_Overflow +io.reactivex.internal.util.NotificationLite: java.lang.Object disposable(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginStart +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4 +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream newStream(java.util.List,boolean) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Menu +android.didikee.donate.R$style: int Widget_AppCompat_Spinner_Underlined +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark +wangdaye.com.geometricweather.common.ui.activities.AlertActivity +androidx.customview.R$id: int right_side +androidx.constraintlayout.widget.R$styleable: int[] ListPopupWindow +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +okhttp3.internal.tls.DistinguishedNameParser: char getEscaped() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Subtitle1 +androidx.constraintlayout.widget.R$styleable: int Transition_constraintSetEnd +com.tencent.bugly.crashreport.common.info.b: java.lang.String a(android.content.Context,boolean) +androidx.appcompat.widget.AppCompatCheckedTextView +androidx.constraintlayout.widget.R$color: int abc_btn_colored_borderless_text_material +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_CompactMenu +com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout_Colored +okhttp3.Headers: int size() +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void drain() +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_progress +wangdaye.com.geometricweather.R$string: int action_appStore +wangdaye.com.geometricweather.R$string: int settings_title_forecast_today_time +com.tencent.bugly.crashreport.crash.CrashDetailBean: long F +com.google.android.material.R$styleable: int AppCompatTheme_buttonStyleSmall +com.bumptech.glide.integration.okhttp.R$id: int right_icon +com.xw.repo.bubbleseekbar.R$attr: int allowStacking +com.jaredrummler.android.colorpicker.R$id: int search_voice_btn +cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getActiveProfile() +androidx.loader.R$id: int normal +com.jaredrummler.android.colorpicker.R$color: int dim_foreground_material_dark +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver,java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int decelerateAndComplete +wangdaye.com.geometricweather.R$dimen: int cpv_default_thickness +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerCloseError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_key +wangdaye.com.geometricweather.R$layout: int item_about_line +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerViewAccessibilityDelegate getCompatAccessibilityDelegate() +android.didikee.donate.R$styleable: int Toolbar_contentInsetEndWithActions +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial() +androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotationY +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +com.google.android.material.R$styleable: int Chip_closeIconStartPadding +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayColorCalibration(int[]) +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +com.xw.repo.bubbleseekbar.R$styleable: int GradientColorItem_android_color +retrofit2.adapter.rxjava2.package-info +wangdaye.com.geometricweather.R$drawable: int mtrl_dropdown_arrow +androidx.lifecycle.extensions.R$layout: int notification_template_part_chronometer +com.google.android.material.R$styleable: int TextInputLayout_startIconTintMode +androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.R$id: int widget_week_icon_3 +androidx.constraintlayout.widget.R$attr: int colorControlNormal +okio.ByteString: void write(okio.Buffer) +cyanogenmod.app.Profile: Profile(android.os.Parcel) +james.adaptiveicon.R$drawable: int abc_text_select_handle_right_mtrl_dark +androidx.work.Worker +com.xw.repo.bubbleseekbar.R$id: int search_close_btn +androidx.constraintlayout.utils.widget.ImageFilterButton: void setWarmth(float) +com.amap.api.location.AMapLocation: int getLocationType() +com.tencent.bugly.b: boolean c +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX() +androidx.preference.R$attr: int fontVariationSettings +com.tencent.bugly.proguard.r: java.lang.String d +cyanogenmod.providers.WeatherContract +com.google.android.material.R$layout: int notification_template_part_chronometer +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_elevation_material +com.tencent.bugly.crashreport.CrashReport: void postCatchedException(java.lang.Throwable,java.lang.Thread,boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String from +com.google.android.material.R$id: int material_hour_tv +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void clear() +wangdaye.com.geometricweather.R$attr: int titleMarginStart +androidx.legacy.coreutils.R$id: int info +com.google.android.material.R$attr: int tabMaxWidth +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getApparentTemperature() +androidx.appcompat.R$styleable: int MenuItem_iconTint +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SEVERE_THUNDERSTORMS +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_17 +com.google.android.material.R$attr: int layout_constraintGuide_end +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String getPackage() +com.google.android.material.R$animator: int linear_indeterminate_line1_tail_interpolator +wangdaye.com.geometricweather.R$dimen: int abc_list_item_height_large_material +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableStart +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetTop +androidx.appcompat.R$styleable: int Toolbar_titleMarginBottom +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: java.lang.String date +com.tencent.bugly.crashreport.crash.anr.b: java.util.concurrent.atomic.AtomicInteger a +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_rightToLeft +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String MobileLink +androidx.legacy.coreutils.R$drawable: int notification_bg_normal +androidx.constraintlayout.widget.R$attr: int layout_editor_absoluteY +wangdaye.com.geometricweather.R$style: int TestThemeWithLineHeightDisabled +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerError(java.lang.Throwable) +com.tencent.bugly.proguard.j: void a(byte,int) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_medium_material +androidx.constraintlayout.widget.R$attr: int windowMinWidthMinor +wangdaye.com.geometricweather.R$string: int cloud_cover +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onStop() +com.jaredrummler.android.colorpicker.ColorPickerView: void setBorderColor(int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: int Value wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitationDuration -cyanogenmod.library.R$id -androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_tailColor -okhttp3.Address: boolean equalsNonHost(okhttp3.Address) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA -com.tencent.bugly.proguard.ap: boolean o -com.google.android.material.R$styleable: int TextInputLayout_boxCollapsedPaddingTop -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy$a getCrashHandleCallback() -android.didikee.donate.R$attr: int listPreferredItemHeightLarge -cyanogenmod.app.CMTelephonyManager: boolean isSubActive(int) -androidx.appcompat.widget.AppCompatSpinner: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -com.turingtechnologies.materialscrollbar.R$color: int accent_material_dark -com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyleIndicator -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getScaleX() -com.tencent.bugly.proguard.am: byte[] h +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date sunRiseDate +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy +androidx.lifecycle.extensions.R$id: int visible_removing_fragment_view_tag +okhttp3.internal.http2.Http2Stream$StreamTimeout: void exitAndThrowIfTimedOut() +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +com.turingtechnologies.materialscrollbar.R$attr: int theme +wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents +wangdaye.com.geometricweather.R$id: int tag_icon_night +androidx.activity.R$attr +okhttp3.internal.http2.Http2Reader$Handler: void data(boolean,int,okio.BufferedSource,int) +androidx.recyclerview.R$id: int notification_background +okhttp3.internal.http2.Http2Connection$Listener: void onSettings(okhttp3.internal.http2.Http2Connection) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setCo(java.lang.Float) +io.reactivex.internal.subscriptions.EmptySubscription: void error(java.lang.Throwable,org.reactivestreams.Subscriber) +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Light +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.google.android.material.R$id: int material_minute_tv +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer realFeelTemperature +com.xw.repo.bubbleseekbar.R$attr: int drawerArrowStyle +androidx.recyclerview.R$drawable: int notification_template_icon_bg +cyanogenmod.weather.CMWeatherManager$RequestStatus: int FAILED +retrofit2.RequestBuilder: char[] HEX_DIGITS +com.bumptech.glide.load.HttpException: int statusCode +okio.Buffer: long size +cyanogenmod.weather.CMWeatherManager$2: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) +com.tencent.bugly.proguard.a: byte[] a(java.lang.Object) +com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.proguard.p d +androidx.appcompat.R$styleable: int TextAppearance_android_textFontWeight +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: void setUnfold(boolean) +com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTimeStamp(long) +com.turingtechnologies.materialscrollbar.R$attr: int bottomAppBarStyle +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_width +com.google.android.gms.common.SignInButton: SignInButton(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$attr: int isLightTheme +androidx.lifecycle.ViewModelStore: void clear() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin +okhttp3.Request: java.lang.String toString() +wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_48dp +androidx.appcompat.R$styleable: int ActionBar_backgroundStacked +androidx.appcompat.R$styleable: int SearchView_defaultQueryHint +com.jaredrummler.android.colorpicker.R$attr: int buttonIconDimen +com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode valueOf(java.lang.String) +androidx.vectordrawable.R$id: int right_side +com.google.android.gms.common.stats.StatsEvent +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_content_inset_with_nav +wangdaye.com.geometricweather.R$attr: int alertDialogCenterButtons +com.amap.api.location.AMapLocationClient: void stopAssistantLocation() +wangdaye.com.geometricweather.R$string: int daytime +com.amap.api.fence.GeoFence: int TYPE_POLYGON +org.greenrobot.greendao.AbstractDao: void saveInTx(java.lang.Iterable) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_toggle_margin_top +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float snowPrecipitation +okio.Buffer: okio.BufferedSink writeLongLe(long) +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String ENABLED +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric() +com.bumptech.glide.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency PressureTendency +android.didikee.donate.R$color: int switch_thumb_normal_material_dark +wangdaye.com.geometricweather.R$styleable: int[] View +com.google.android.material.R$attr: int windowFixedHeightMajor +androidx.hilt.R$id: int accessibility_custom_action_3 +okhttp3.internal.cache.DiskLruCache$Editor: DiskLruCache$Editor(okhttp3.internal.cache.DiskLruCache,okhttp3.internal.cache.DiskLruCache$Entry) +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_PopupMenu +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder pingIntervalMillis(int) +okio.Util: void sneakyThrow2(java.lang.Throwable) +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer ragweedLevel +androidx.room.MultiInstanceInvalidationService +androidx.constraintlayout.motion.widget.MotionLayout: int getEndState() +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_popupTheme +com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: java.lang.String d +androidx.appcompat.resources.R$color: int notification_action_color_filter +com.google.android.material.R$string: int material_timepicker_minute +com.google.android.material.R$styleable: int Transform_android_transformPivotX +com.xw.repo.bubbleseekbar.R$attr: int autoSizeMinTextSize +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_share_mtrl_alpha +wangdaye.com.geometricweather.R$drawable: int notif_temp_29 +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: java.lang.String icon +androidx.transition.R$id: int blocking +com.google.android.material.R$styleable: int AppCompatTheme_checkboxStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstVerticalBias +wangdaye.com.geometricweather.R$attr: int seekBarPreferenceStyle +wangdaye.com.geometricweather.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode PARTLY_CLOUDY +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItem +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon +james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_CheckBox +com.google.android.material.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_activityChooserViewStyle +okhttp3.Call: boolean isExecuted() +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_MIDDLE +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetRight +com.turingtechnologies.materialscrollbar.R$layout: int abc_search_dropdown_item_icons_2line +okio.SegmentedByteString: okio.ByteString toByteString() +io.reactivex.internal.observers.LambdaObserver: io.reactivex.functions.Action onComplete +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: long count +com.google.android.gms.common.api.ApiException: com.google.android.gms.common.api.Status getStatus() +com.bumptech.glide.load.engine.GlideException: GlideException(java.lang.String) +androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$attr: int multiChoiceItemLayout +androidx.transition.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String pollutant +com.google.android.material.R$styleable: int Slider_android_valueFrom +com.bumptech.glide.R$attr: int font +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: double Value +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_34 +android.didikee.donate.R$drawable: int abc_action_bar_item_background_material +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginRight +okio.AsyncTimeout$2: okio.AsyncTimeout this$0 +cyanogenmod.util.ColorUtils: float[] convertRGBtoLAB(int) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitationProbability(java.lang.Float) +androidx.preference.R$styleable: int AppCompatTextView_drawableTint +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_31 +com.google.android.material.R$styleable: int MaterialCalendarItem_itemShapeAppearanceOverlay +androidx.recyclerview.R$dimen: int notification_media_narrow_margin +com.xw.repo.bubbleseekbar.R$attr: int buttonBarNegativeButtonStyle +com.turingtechnologies.materialscrollbar.R$attr: int numericModifiers +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1 +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_backgroundSplit +com.tencent.bugly.proguard.v: android.content.Context c +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$styleable: int TabLayout_tabPaddingBottom +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_minHideDelay +okhttp3.internal.connection.RouteDatabase: boolean shouldPostpone(okhttp3.Route) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitation(java.lang.Float) +okhttp3.OkHttpClient$Builder: java.util.List interceptors() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Category +androidx.transition.R$dimen: int notification_right_side_padding_top +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mPostal +androidx.appcompat.R$style: int Widget_AppCompat_SearchView +com.xw.repo.bubbleseekbar.R$attr: R$attr() +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver INNER_DISPOSED +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Bridge +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice +retrofit2.KotlinExtensions$await$2$2: KotlinExtensions$await$2$2(kotlinx.coroutines.CancellableContinuation) +com.google.android.material.R$id: int time +okhttp3.internal.http1.Http1Codec$ChunkedSource: void close() +androidx.viewpager2.R$dimen: int notification_content_margin_start +androidx.swiperefreshlayout.R$string +androidx.fragment.R$styleable: int GradientColor_android_centerY +com.tencent.bugly.crashreport.common.info.a: int ah +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: java.lang.String Name +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_waveShape +androidx.preference.R$style: int TextAppearance_AppCompat_Display3 +androidx.appcompat.R$color: int switch_thumb_normal_material_light +cyanogenmod.weather.WeatherInfo: double access$1202(cyanogenmod.weather.WeatherInfo,double) +androidx.preference.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +wangdaye.com.geometricweather.R$layout: int preference_widget_switch +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation RIGHT +androidx.appcompat.R$color: int abc_primary_text_material_dark +cyanogenmod.app.ICustomTileListener$Stub: java.lang.String DESCRIPTOR +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastVerticalStyle +androidx.preference.R$layout: int abc_list_menu_item_icon +androidx.work.R$id: int title +androidx.preference.R$style: int Preference_Information_Material +androidx.constraintlayout.motion.widget.MotionHelper: float getProgress() +androidx.appcompat.widget.SwitchCompat: boolean getShowText() +wangdaye.com.geometricweather.settings.dialogs.ProvidersPreviewerDialog: ProvidersPreviewerDialog() +com.google.android.material.R$id: int circular +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: int UnitType +cyanogenmod.hardware.CMHardwareManager: int FEATURE_ADAPTIVE_BACKLIGHT +okio.Pipe$PipeSink: okio.Timeout timeout +com.jaredrummler.android.colorpicker.R$styleable: int MultiSelectListPreference_entryValues +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetEndWithActions +androidx.core.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitation(java.lang.Float) +cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast() +com.tencent.bugly.proguard.n: android.content.SharedPreferences c(com.tencent.bugly.proguard.n) +wangdaye.com.geometricweather.R$attr: int tabIndicatorHeight +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.jaredrummler.android.colorpicker.R$dimen: int cpv_item_size +retrofit2.HttpServiceMethod$SuspendForBody: retrofit2.CallAdapter callAdapter +io.reactivex.internal.subscriptions.BasicQueueSubscription: java.lang.Object poll() +wangdaye.com.geometricweather.R$styleable: int Chip_android_text +androidx.coordinatorlayout.widget.CoordinatorLayout: int getNestedScrollAxes() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeApparentTemperature +okhttp3.internal.ws.WebSocketWriter: okio.Buffer buffer +cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mDeleteIntent +wangdaye.com.geometricweather.R$id: int search_close_btn +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf +okhttp3.internal.connection.RouteSelector: java.lang.String getHostString(java.net.InetSocketAddress) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton_CloseMode +cyanogenmod.externalviews.KeyguardExternalView: java.lang.String TAG +androidx.recyclerview.R$id: int accessibility_custom_action_23 +com.google.android.material.R$styleable: int AppBarLayoutStates_state_collapsed +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_background_corner_radius +okio.HashingSink: okio.HashingSink hmacSha1(okio.Sink,okio.ByteString) +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +cyanogenmod.app.ProfileManager: android.app.NotificationGroup getNotificationGroup(java.util.UUID) +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: long serialVersionUID +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String nextAT() +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +james.adaptiveicon.R$styleable: int SearchView_android_inputType +androidx.appcompat.R$color: int primary_text_default_material_dark +androidx.appcompat.widget.ViewStubCompat: void setOnInflateListener(androidx.appcompat.widget.ViewStubCompat$OnInflateListener) +com.google.android.material.R$style: int TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.R$attr: int boxBackgroundMode +wangdaye.com.geometricweather.R$styleable: int View_android_focusable +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_weatherContainer +wangdaye.com.geometricweather.R$anim: int fragment_open_exit +androidx.appcompat.R$layout: int abc_action_mode_close_item_material +com.google.android.material.textfield.TextInputLayout: void setHelperTextEnabled(boolean) +cyanogenmod.app.IProfileManager: android.app.NotificationGroup getNotificationGroupForPackage(java.lang.String) +com.google.android.material.R$id: int list_item +androidx.constraintlayout.widget.R$styleable: int[] PopupWindow +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String weatherSource +androidx.recyclerview.R$styleable: int GradientColor_android_centerX +androidx.appcompat.R$id: int accessibility_custom_action_9 +okhttp3.internal.cache.CacheInterceptor: boolean isContentSpecificHeader(java.lang.String) +okio.Options: Options(okio.ByteString[],int[]) +wangdaye.com.geometricweather.R$bool: int mtrl_btn_textappearance_all_caps +cyanogenmod.app.BaseLiveLockManagerService$1: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +com.google.android.material.R$attr: int expandedTitleTextAppearance +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toBottomOf +androidx.activity.R$dimen +wangdaye.com.geometricweather.R$attr: int order +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onComplete() +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: ObservableSequenceEqual$EqualCoordinator(io.reactivex.Observer,int,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) +androidx.preference.R$style: int Widget_AppCompat_SeekBar +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_preserveIconSpacing +androidx.constraintlayout.widget.R$drawable: int abc_text_cursor_material +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: int getFillColor() +androidx.lifecycle.MediatorLiveData: void removeSource(androidx.lifecycle.LiveData) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_toRightOf +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: java.util.List getBrands() +com.google.android.material.R$styleable: int TextInputLayout_placeholderTextAppearance +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle +androidx.preference.R$dimen: int abc_text_size_display_4_material +androidx.constraintlayout.widget.R$attr: int iconifiedByDefault +wangdaye.com.geometricweather.R$array: int live_wallpaper_weather_kinds +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date moonSetDate +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_max +com.google.android.material.R$attr: int passwordToggleTintMode +cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo$Builder setPriority(int) +androidx.constraintlayout.widget.R$dimen: int abc_control_padding_material +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void testNativeCrash(boolean,boolean,boolean) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_TextView +androidx.appcompat.R$id: int accessibility_custom_action_0 +androidx.lifecycle.LifecycleRegistry: java.lang.ref.WeakReference mLifecycleOwner +james.adaptiveicon.R$attr: int textAppearanceSearchResultTitle +com.google.android.material.R$styleable: int View_paddingEnd +com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_disable_only_material_light +androidx.coordinatorlayout.R$attr: int coordinatorLayoutStyle +okhttp3.internal.http2.Http2: byte FLAG_PADDED +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_trackTint +androidx.fragment.R$styleable: int Fragment_android_id +com.turingtechnologies.materialscrollbar.R$attr: int state_above_anchor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed Speed +com.google.android.material.R$styleable: int[] Badge +androidx.work.impl.background.systemalarm.RescheduleReceiver +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogTheme +androidx.lifecycle.ClassesInfoCache$CallbackInfo: java.util.Map mEventToHandlers +com.bumptech.glide.R$styleable: int[] CoordinatorLayout_Layout +io.reactivex.Observable: io.reactivex.Single all(io.reactivex.functions.Predicate) +okhttp3.internal.cache.DiskLruCache$Snapshot: okio.Source getSource(int) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void complete() +com.turingtechnologies.materialscrollbar.R$attr: int chipMinHeight +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset +androidx.preference.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +wangdaye.com.geometricweather.R$string: int settings_title_refresh_rate +androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_layout +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setChecked(boolean) +wangdaye.com.geometricweather.R$color: int material_on_surface_emphasis_medium +wangdaye.com.geometricweather.R$attr: int telltales_tailScale +androidx.appcompat.widget.AppCompatTextView: void setPrecomputedText(androidx.core.text.PrecomputedTextCompat) +com.turingtechnologies.materialscrollbar.R$anim: int design_snackbar_out +okhttp3.OkHttpClient$Builder: okhttp3.Cache cache +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_android_elevation +androidx.constraintlayout.widget.R$attr: int popupMenuStyle +okio.ByteString: byte[] data +wangdaye.com.geometricweather.R$attr: int backgroundColorStart +com.tencent.bugly.crashreport.crash.jni.a: android.content.Context a +wangdaye.com.geometricweather.R$array: int air_quality_co_unit_values +wangdaye.com.geometricweather.R$id: int fade +androidx.constraintlayout.widget.R$string: int abc_search_hint +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: java.util.List DailyForecasts +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner +androidx.transition.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_43 +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$attr: int motionInterpolator +androidx.drawerlayout.R$dimen: int compat_notification_large_icon_max_height +wangdaye.com.geometricweather.R$styleable +androidx.appcompat.R$styleable: int ActionBar_displayOptions +com.jaredrummler.android.colorpicker.ColorPanelView: void setColor(int) +androidx.viewpager2.R$dimen: int item_touch_helper_swipe_escape_velocity +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: java.util.concurrent.TimeUnit unit +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1(retrofit2.Call) +james.adaptiveicon.R$attr: int multiChoiceItemLayout +androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_android_color +cyanogenmod.profiles.LockSettings: void readFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeRealFeelTemperature +james.adaptiveicon.R$attr: int colorSwitchThumbNormal +com.amap.api.fence.PoiItem: java.lang.String h +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: long serialVersionUID +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light_normal +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_motionTarget +com.google.android.material.R$color: int design_fab_stroke_top_outer_color +wangdaye.com.geometricweather.R$styleable: int Toolbar_android_gravity +androidx.preference.R$string: int abc_shareactionprovider_share_with_application +androidx.recyclerview.R$attr: int fastScrollEnabled +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_RC4_128_SHA +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setAddress(java.lang.String) +wangdaye.com.geometricweather.R$attr: int mock_showLabel +wangdaye.com.geometricweather.R$styleable: int MotionLayout_applyMotionScene +okhttp3.Response: java.lang.String header(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: float getIntervalInHour() +com.tencent.bugly.proguard.ak: java.lang.String m +com.google.android.material.R$styleable: int[] PopupWindowBackgroundState +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item +androidx.constraintlayout.widget.R$attr: int backgroundStacked +okhttp3.internal.http2.Http2Connection$4: int val$streamId +android.didikee.donate.R$layout: int abc_screen_simple +wangdaye.com.geometricweather.R$string: int abc_search_hint +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onNext(retrofit2.Response) +com.google.android.material.R$id: int action_text +androidx.recyclerview.R$styleable: int FontFamilyFont_android_font +android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$drawable: int widget_week +androidx.lifecycle.Lifecycle$State: Lifecycle$State(java.lang.String,int) +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_visible +androidx.lifecycle.FullLifecycleObserver +androidx.loader.R$dimen: int notification_top_pad +cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(android.os.Parcel) +retrofit2.OkHttpCall$1: OkHttpCall$1(retrofit2.OkHttpCall,retrofit2.Callback) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX getTemperature() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.util.List indices +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property AqiIndex +cyanogenmod.hardware.ICMHardwareService$Stub: android.os.IBinder asBinder() +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_subtitleTextStyle +com.turingtechnologies.materialscrollbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property CityId +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_shadowDx +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_131 +cyanogenmod.app.CustomTile$ExpandedStyle: cyanogenmod.app.CustomTile$ExpandedItem[] expandedItems +wangdaye.com.geometricweather.R$layout: int widget_day_mini +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView_DropDown +androidx.appcompat.R$id: int titleDividerNoCustom +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type CENTER +cyanogenmod.app.ProfileGroup: boolean validateOverrideUri(android.content.Context,android.net.Uri) +androidx.core.R$attr: int fontProviderFetchTimeout +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method getMethod +com.google.android.material.R$styleable: int BottomNavigationView_itemIconSize +androidx.lifecycle.LifecycleRegistry: void handleLifecycleEvent(androidx.lifecycle.Lifecycle$Event) +com.google.android.material.R$attr: int layout_goneMarginRight +androidx.work.impl.background.systemjob.SystemJobService +james.adaptiveicon.R$attr: int windowFixedHeightMinor +androidx.coordinatorlayout.R$id: int accessibility_custom_action_20 +com.tencent.bugly.crashreport.common.info.a: java.lang.Object aw +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_slideLockscreenIn +wangdaye.com.geometricweather.R$styleable: int Transition_duration +wangdaye.com.geometricweather.R$attr: int flow_verticalBias +wangdaye.com.geometricweather.R$attr: int values +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.util.Date EndDate +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.Observer downstream +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context) +com.tencent.bugly.crashreport.common.info.b: long s() +wangdaye.com.geometricweather.R$string: int feedback_no_data +wangdaye.com.geometricweather.R$styleable: int[] FontFamilyFont +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Response execute() +com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: java.lang.String Unit +com.xw.repo.bubbleseekbar.R$dimen: int abc_dropdownitem_text_padding_right +wangdaye.com.geometricweather.R$styleable: int Chip_iconEndPadding +androidx.appcompat.widget.Toolbar: void setNavigationOnClickListener(android.view.View$OnClickListener) +com.google.android.material.R$styleable: int ConstraintSet_layout_constrainedWidth +wangdaye.com.geometricweather.R$id: int reservedNamedId +androidx.appcompat.resources.R$color +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getO3() +androidx.loader.R$styleable: int FontFamilyFont_android_fontWeight +okhttp3.Cache$Entry: java.lang.String url +androidx.hilt.R$id: int action_text +com.google.android.material.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.fragment.R$style: int TextAppearance_Compat_Notification_Info +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean setOnce(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription,long) +androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_2 +androidx.appcompat.widget.AppCompatRadioButton: android.content.res.ColorStateList getSupportBackgroundTintList() +wangdaye.com.geometricweather.R$styleable: int MockView_mock_showLabel +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setCity(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: ChineseCityEntity(java.lang.Long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String) +com.bumptech.glide.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$attr: int materialButtonOutlinedStyle +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter open(int,java.lang.String) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +androidx.lifecycle.SavedStateHandleController: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +com.google.android.material.R$color: int tooltip_background_dark +wangdaye.com.geometricweather.R$attr: int title +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit getInstance(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial Imperial +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: java.util.concurrent.atomic.AtomicReference other +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableItem_android_id +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_Switch +okhttp3.internal.ws.WebSocketWriter: java.util.Random random +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnSettingsClickIntent(android.content.Intent) +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ListView_DropDown +com.turingtechnologies.materialscrollbar.R$attr: int actionModeCopyDrawable +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_elevation_material +wangdaye.com.geometricweather.R$layout: int design_navigation_item_subheader +okhttp3.internal.http1.Http1Codec$ChunkedSource: long read(okio.Buffer,long) +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_visible +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function8) +wangdaye.com.geometricweather.R$string: int grass +okhttp3.Cache$Entry: void writeCertList(okio.BufferedSink,java.util.List) +com.google.gson.stream.JsonReader: char readEscapeCharacter() +com.google.android.material.R$styleable: int Layout_layout_constraintRight_toLeftOf +wangdaye.com.geometricweather.R$attr: int contentPaddingBottom +androidx.preference.R$drawable: int btn_radio_off_mtrl +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_MediumComponent +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_checkedTextViewStyle +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_DayNight_BottomSheetDialog +androidx.preference.R$styleable: int[] PopupWindow +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_android_entries +com.google.android.material.R$attr: int telltales_tailScale +okhttp3.internal.connection.ConnectionSpecSelector: boolean isFallback +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String EnglishName +james.adaptiveicon.R$styleable: int Toolbar_maxButtonHeight +com.google.android.material.R$styleable: int SearchView_searchIcon +cyanogenmod.weather.WeatherInfo$DayForecast: double mLow +okhttp3.Dispatcher: void executed(okhttp3.RealCall) +androidx.hilt.R$styleable: int Fragment_android_id +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_MinWidth +wangdaye.com.geometricweather.R$drawable: int notif_temp_75 +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentListStyle +com.google.android.material.R$dimen: int mtrl_calendar_day_vertical_padding +androidx.hilt.work.R$styleable: int GradientColor_android_endY +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_19 +androidx.appcompat.R$attr: int actionBarTabStyle +android.didikee.donate.R$drawable: int abc_seekbar_thumb_material +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String MODIFY_ALARMS_PERMISSION +androidx.constraintlayout.widget.R$id: int textSpacerNoButtons +wangdaye.com.geometricweather.R$attr: int percentHeight +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_switch_track +wangdaye.com.geometricweather.R$id: int ignoreRequest +androidx.recyclerview.R$id: int action_container +com.google.android.material.slider.RangeSlider: float getStepSize() +androidx.recyclerview.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moldLevel +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] findMatchingRule(java.lang.String[]) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: MfWarningsResult() +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstVerticalStyle +com.amap.api.location.AMapLocation: java.lang.String d +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.google.android.material.radiobutton.MaterialRadioButton: void setUseMaterialThemeColors(boolean) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_98 +androidx.lifecycle.SavedStateHandle: java.lang.String VALUES +com.xw.repo.bubbleseekbar.R$attr: int divider +com.google.android.material.R$attr: int thumbStrokeColor +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_textOn +org.greenrobot.greendao.AbstractDao: void deleteInTx(java.lang.Object[]) +android.didikee.donate.R$string: int abc_capital_off +com.amap.api.fence.PoiItem: java.lang.String k +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitation +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onSucceed(java.lang.Object) +okhttp3.internal.platform.OptionalMethod: java.lang.reflect.Method getMethod(java.lang.Class) +wangdaye.com.geometricweather.R$drawable: int weather_clear_day +wangdaye.com.geometricweather.background.polling.basic.Hilt_AwakeForegroundUpdateService: Hilt_AwakeForegroundUpdateService() +androidx.core.widget.NestedScrollView: float getTopFadingEdgeStrength() +android.didikee.donate.R$color: int dim_foreground_disabled_material_light +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_padding +androidx.appcompat.R$attr: int contentInsetStart +wangdaye.com.geometricweather.R$layout: int widget_clock_day_vertical +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$animator: int weather_snow_1 +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemBackgroundResource(int) +androidx.preference.R$id: int action_menu_divider +io.reactivex.exceptions.CompositeException: java.lang.Throwable getCause() +com.google.android.material.transformation.FabTransformationScrimBehavior: FabTransformationScrimBehavior() +com.google.android.material.R$styleable: int MenuView_android_itemIconDisabledAlpha +com.turingtechnologies.materialscrollbar.R$id: int title +io.reactivex.internal.subscriptions.SubscriptionHelper: void reportMoreProduced(long) +retrofit2.Utils$WildcardTypeImpl: java.lang.String toString() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: double Value +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +androidx.appcompat.R$style: int Base_Widget_AppCompat_ImageButton +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onComplete() +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void dispose() +com.google.android.material.R$string: int material_timepicker_clock_mode_description +com.bumptech.glide.module.LibraryGlideModule: LibraryGlideModule() +androidx.core.R$styleable: int FontFamily_fontProviderQuery +com.google.android.material.R$styleable: int[] MaterialRadioButton +android.didikee.donate.R$styleable: int AppCompatTheme_windowActionBarOverlay +androidx.constraintlayout.widget.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Bridge +wangdaye.com.geometricweather.R$dimen: int widget_mini_weather_icon_size +androidx.preference.R$styleable: int CoordinatorLayout_statusBarBackground +wangdaye.com.geometricweather.R$styleable: int MenuItem_actionProviderClass +androidx.appcompat.R$id: int none +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onBouncerShowing(boolean) +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_header +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +com.google.android.material.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon +androidx.constraintlayout.widget.R$attr: int tickMarkTintMode +io.reactivex.internal.util.EmptyComponent: void request(long) +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_fabSize +wangdaye.com.geometricweather.R$array: int temperature_units_long +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Source +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: ObservableDebounceTimed$DebounceEmitter(java.lang.Object,long,io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceTimedObserver) +androidx.drawerlayout.R$styleable: int FontFamilyFont_font +androidx.preference.PreferenceCategory: PreferenceCategory(android.content.Context,android.util.AttributeSet) +okhttp3.RequestBody$1: long contentLength() +wangdaye.com.geometricweather.R$string: int key_daily_trend_display +android.didikee.donate.R$layout: int abc_activity_chooser_view +androidx.appcompat.R$attr: int elevation +androidx.appcompat.widget.Toolbar: int getContentInsetStartWithNavigation() +com.google.android.material.slider.Slider +com.google.android.material.button.MaterialButton: void setOnPressedChangeListenerInternal(com.google.android.material.button.MaterialButton$OnPressedChangeListener) +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorGravity(int) +com.turingtechnologies.materialscrollbar.R$style: int AlertDialog_AppCompat_Light +okio.Okio$1: void close() +androidx.constraintlayout.widget.R$attr: int region_widthMoreThan +com.google.android.material.R$styleable: int[] ScrollingViewBehavior_Layout +androidx.preference.R$style: int Platform_V21_AppCompat +wangdaye.com.geometricweather.common.basic.models.weather.History: long getTime() +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: float getProgress() +androidx.appcompat.widget.ActionBarContainer: void setStackedBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRainPrecipitation(java.lang.Float) +james.adaptiveicon.R$layout: int abc_activity_chooser_view +james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogTheme +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingTop +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListPopupWindow +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginTop +androidx.preference.R$style: int Widget_AppCompat_Button_Borderless +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void addLast(io.reactivex.internal.operators.observable.ObservableReplay$Node) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX() +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_PrimarySurface +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_material_light +androidx.preference.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Button +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +cyanogenmod.externalviews.KeyguardExternalView$10: void run() +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setEnableNativeCrashMonitor(boolean) +okhttp3.internal.http2.Http2Stream$FramingSink: void emitFrame(boolean) +cyanogenmod.app.ThemeVersion: int CM11 +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_separator +wangdaye.com.geometricweather.R$id: int material_minute_tv +okhttp3.internal.cache2.Relay: void writeMetadata(long) +androidx.vectordrawable.R$styleable: int FontFamilyFont_fontVariationSettings +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getLabelVisibilityMode() +cyanogenmod.profiles.AirplaneModeSettings: void processOverride(android.content.Context) +cyanogenmod.app.CustomTile: java.lang.String label +cyanogenmod.app.CustomTile$ExpandedGridItem: void setExpandedGridItemTitle(java.lang.String) +androidx.appcompat.R$color: int secondary_text_default_material_light +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_focused_holo +androidx.appcompat.R$styleable: int SearchView_android_maxWidth +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_BATTERY_STYLE +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void onComplete() +android.didikee.donate.R$color: int dim_foreground_disabled_material_dark +com.google.android.material.R$attr: int numericModifiers +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_TextInputLayout_FilledBox +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMargins +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder retryOnConnectionFailure(boolean) +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline4 +com.xw.repo.bubbleseekbar.R$id: int info +wangdaye.com.geometricweather.R$color: int foreground_material_dark +androidx.lifecycle.ViewModelProvider: ViewModelProvider(androidx.lifecycle.ViewModelStoreOwner,androidx.lifecycle.ViewModelProvider$Factory) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer uvIndex +okhttp3.Cache$CacheResponseBody: okhttp3.MediaType contentType() +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +cyanogenmod.hardware.CMHardwareManager: boolean setVibratorIntensity(int) +wangdaye.com.geometricweather.R$attr: int transitionDisable +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_numericModifiers +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List minutelyForecast +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_1 +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Info +okhttp3.internal.ws.RealWebSocket: void checkResponse(okhttp3.Response) +android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.turingtechnologies.materialscrollbar.R$attr: int colorButtonNormal +androidx.constraintlayout.widget.R$id: int list_item +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.google.android.material.switchmaterial.SwitchMaterial: android.content.res.ColorStateList getMaterialThemeColorsThumbTintList() +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_TextInputLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX getBrandInfo() +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_default_mtrl_shape +wangdaye.com.geometricweather.R$layout: int container_main_sun_moon +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String admin +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getLastThemeChangeTime +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline5 +androidx.preference.R$styleable: int[] ActionBar +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startColor +okio.Okio: okio.Source source(java.io.InputStream) +io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.jaredrummler.android.colorpicker.ColorPanelView +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Info +com.jaredrummler.android.colorpicker.R$attr: int stackFromEnd +okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.Request followUpRequest(okhttp3.Response,okhttp3.Route) +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getLightsMode() +androidx.appcompat.R$dimen: int abc_text_size_subhead_material +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: long serialVersionUID +cyanogenmod.app.IPartnerInterface$Stub +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date sunriseTime +androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getLogo() +com.google.android.material.slider.Slider: void setThumbRadius(int) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTx() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Large +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: ObservableConcatWithMaybe$ConcatWithObserver(io.reactivex.Observer,io.reactivex.MaybeSource) +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDisplayGammaCalibration +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float total +wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveVariesBy +james.adaptiveicon.R$attr: int trackTint +wangdaye.com.geometricweather.R$attr: int shouldDisableView +androidx.constraintlayout.widget.R$attr +com.xw.repo.bubbleseekbar.R$id: int tag_unhandled_key_listeners +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_textAllCaps +androidx.constraintlayout.motion.widget.MotionLayout: MotionLayout(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$attr: int hideOnScroll +retrofit2.HttpServiceMethod: retrofit2.CallAdapter createCallAdapter(retrofit2.Retrofit,java.lang.reflect.Method,java.lang.reflect.Type,java.lang.annotation.Annotation[]) +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void otherComplete() +androidx.lifecycle.SavedStateHandleController$1: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +androidx.core.R$id: int notification_main_column +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Switch +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_disabled_holo_dark +wangdaye.com.geometricweather.R$styleable: int ActionBar_icon +com.google.gson.stream.JsonReader$1 +com.google.android.material.R$styleable: int Layout_layout_constraintGuide_end +com.google.android.material.R$styleable: int AppCompatImageView_tintMode +com.xw.repo.bubbleseekbar.R$attr: int layout_anchorGravity +wangdaye.com.geometricweather.db.entities.DaoMaster: DaoMaster(org.greenrobot.greendao.database.Database) +cyanogenmod.app.ILiveLockScreenChangeListener$Stub +com.google.android.material.R$styleable: int Spinner_popupTheme +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: MfForecastResult$Forecast$Snow() +com.turingtechnologies.materialscrollbar.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +androidx.preference.R$styleable: int MenuItem_numericModifiers +com.google.android.material.chip.ChipGroup: java.util.List getCheckedChipIds() +com.google.android.material.R$styleable: int ThemeEnforcement_enforceTextAppearance +androidx.vectordrawable.R$id: int accessibility_custom_action_21 +james.adaptiveicon.R$attr: int colorBackgroundFloating +okhttp3.internal.cache2.Relay: okio.ByteString metadata() +androidx.appcompat.R$id: int search_close_btn +androidx.preference.R$drawable: int notification_template_icon_bg +com.google.android.material.R$id: int actions +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator PROXIMITY_ON_WAKE_VALIDATOR +androidx.coordinatorlayout.R$id: int bottom +androidx.preference.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance +okhttp3.internal.http.BridgeInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.Platform buildIfSupported() +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setCityId(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int ViewBackgroundHelper_android_background +androidx.constraintlayout.widget.R$attr: int expandActivityOverflowButtonDrawable +androidx.preference.R$attr: int preferenceFragmentListStyle +james.adaptiveicon.R$id: int search_button +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer grassIndex +androidx.constraintlayout.widget.R$id: int multiply +james.adaptiveicon.R$dimen: int abc_text_size_headline_material +okhttp3.internal.connection.RealConnection +wangdaye.com.geometricweather.R$color: int design_default_color_primary_variant +androidx.constraintlayout.widget.R$attr: int searchIcon +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dark +androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar +wangdaye.com.geometricweather.R$styleable: int ActionMode_subtitleTextStyle +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_focused_holo +com.google.android.material.R$dimen: int tooltip_y_offset_touch +androidx.hilt.R$id: int accessibility_custom_action_12 +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_pressed_holo_light +com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_button_bar_material +okio.Okio$2: java.lang.String toString() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabStyle +androidx.fragment.R$anim: int fragment_fade_enter +com.google.android.gms.location.LocationSettingsResult +okhttp3.internal.cache.InternalCache: void trackConditionalCacheHit() +james.adaptiveicon.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +androidx.vectordrawable.animated.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +androidx.activity.R$color: R$color() +com.google.android.gms.common.api.Scope: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_auto_adjust_section_mark +com.turingtechnologies.materialscrollbar.R$drawable: int mtrl_tabs_default_indicator +com.tencent.bugly.crashreport.common.info.a: java.lang.String k() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems +com.google.android.material.R$dimen: int tooltip_vertical_padding +wangdaye.com.geometricweather.R$attr: int actionModeSplitBackground +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setId(java.lang.Long) +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String AUTHOR +io.reactivex.internal.observers.BlockingObserver +androidx.core.R$string: R$string() +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImpl: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setAirplaneModeEnabled_0 +wangdaye.com.geometricweather.remoteviews.config.Hilt_HourlyTrendWidgetConfigActivity +androidx.lifecycle.LifecycleRegistry: androidx.arch.core.internal.FastSafeIterableMap mObserverMap +androidx.core.R$styleable: int GradientColor_android_endColor +androidx.appcompat.R$layout: int notification_action +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$id: int notification_big_icon_4 +androidx.appcompat.R$color: int background_floating_material_light +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +androidx.dynamicanimation.R$id: int notification_background +io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite valueOf(java.lang.String) +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: ObservablePublishSelector$TargetObserver(io.reactivex.Observer) +androidx.preference.R$attr: int multiChoiceItemLayout +wangdaye.com.geometricweather.R$font: int product_sans_bold +okio.BufferedSink: java.io.OutputStream outputStream() +com.xw.repo.bubbleseekbar.R$color: int dim_foreground_disabled_material_light +wangdaye.com.geometricweather.R$attr: int mock_labelBackgroundColor +cyanogenmod.app.suggest.IAppSuggestManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.R$id: int widget_day_week_week_5 +androidx.drawerlayout.R$attr: int fontStyle +okhttp3.HttpUrl: java.lang.String PASSWORD_ENCODE_SET +wangdaye.com.geometricweather.R$attr: int bsb_bubble_color +com.xw.repo.bubbleseekbar.R$id: int content +androidx.hilt.R$drawable: int notification_template_icon_bg +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void dispose() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeApparentTemperature() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean getAqi() +okhttp3.Cookie$Builder: boolean httpOnly +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: double Value +wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_layout +wangdaye.com.geometricweather.R$styleable: int ActionBar_homeAsUpIndicator +androidx.constraintlayout.widget.R$styleable: int ActionBar_indeterminateProgressStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItem +androidx.recyclerview.R$dimen: int notification_large_icon_height +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign +com.google.android.material.R$dimen: int mtrl_btn_inset +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Caption +com.amap.api.location.AMapLocationQualityReport: void setWifiAble(boolean) +com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_horizontal_material +okhttp3.Response: okhttp3.Headers headers() +com.google.android.material.R$styleable: int Constraint_pivotAnchor +com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: com.tencent.bugly.crashreport.crash.h5.a a(java.lang.String) +cyanogenmod.app.ProfileGroup: void writeToParcel(android.os.Parcel,int) +cyanogenmod.weather.WeatherInfo: java.util.List access$1102(cyanogenmod.weather.WeatherInfo,java.util.List) +james.adaptiveicon.R$styleable: int ActionBar_backgroundSplit +com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonTintMode +androidx.preference.R$layout: int abc_alert_dialog_title_material +androidx.vectordrawable.R$id: int accessibility_custom_action_24 +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: io.reactivex.Scheduler$Worker worker +wangdaye.com.geometricweather.R$string: int content_desc_app_store +cyanogenmod.weather.WeatherLocation$Builder: WeatherLocation$Builder(java.lang.String,java.lang.String) +okhttp3.Cache$2 +androidx.lifecycle.Lifecycling: java.util.Map sCallbackCache +wangdaye.com.geometricweather.R$attr: int inverse +android.didikee.donate.R$styleable: int MenuItem_android_alphabeticShortcut +com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_height +com.tencent.bugly.proguard.i: double[] i(int,boolean) +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: int fusionMode +androidx.vectordrawable.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String TypeID +androidx.hilt.lifecycle.R$drawable: R$drawable() +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$id: int textinput_counter +com.google.android.material.R$dimen: int design_navigation_elevation +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode NIGHT +wangdaye.com.geometricweather.R$attr: int summary +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float tWindchill +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setPubTime(java.util.Date) +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol[] values() +retrofit2.RequestBuilder: okhttp3.MultipartBody$Builder multipartBuilder +wangdaye.com.geometricweather.R$styleable: int[] GradientColorItem +cyanogenmod.providers.DataUsageContract: java.lang.String SLOW_AVG +androidx.core.R$id: int tag_unhandled_key_event_manager +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_backgroundTint +androidx.constraintlayout.widget.R$color: int material_grey_850 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: int UnitType +retrofit2.HttpException: int code() +cyanogenmod.hardware.ICMHardwareService$Stub: java.lang.String DESCRIPTOR +com.google.android.material.R$style: int Widget_AppCompat_ListMenuView +james.adaptiveicon.R$styleable: int MenuItem_android_titleCondensed +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display2 +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_STATUS_BAR +androidx.appcompat.resources.R$id: int tag_unhandled_key_listeners +com.bumptech.glide.integration.okhttp.R$styleable: int[] FontFamily +okhttp3.internal.http2.Http2Connection: void access$000(okhttp3.internal.http2.Http2Connection) +okhttp3.internal.http2.Http2Stream$FramingSource: okio.Buffer readBuffer +androidx.preference.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_android_maxWidth +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: void setOnApplyWindowInsetsListener(android.view.View$OnApplyWindowInsetsListener) +androidx.lifecycle.Lifecycle$Event: Lifecycle$Event(java.lang.String,int) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_holo_dark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int PrecipitationProbability +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode getInstance(java.lang.String) +androidx.lifecycle.LiveData: boolean mDispatchInvalidated +com.google.android.material.R$attr: int tabUnboundedRipple +androidx.hilt.lifecycle.R$drawable: int notification_bg +androidx.preference.R$id: int accessibility_custom_action_3 +com.google.android.material.R$dimen: int mtrl_extended_fab_corner_radius +androidx.constraintlayout.widget.R$dimen: int hint_pressed_alpha_material_dark +com.xw.repo.bubbleseekbar.R$styleable: int View_paddingEnd +androidx.lifecycle.extensions.R$style: int Widget_Compat_NotificationActionContainer +cyanogenmod.app.CustomTile$ExpandedStyle$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String getDensityText(android.content.Context,float) +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState PAUSED +com.google.android.material.bottomappbar.BottomAppBar: float getFabCradleRoundedCornerRadius() +com.google.android.material.chip.Chip: android.graphics.drawable.Drawable getChipDrawable() +cyanogenmod.weather.WeatherInfo$DayForecast: boolean equals(java.lang.Object) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_end +com.bumptech.glide.R$id: int icon_group +cyanogenmod.app.CustomTile: java.lang.String getResourcesPackageName() +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: void setAdaptiveWidthEnabled(boolean) +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_constantSize +com.amap.api.location.AMapLocationClientOption: boolean p +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight +androidx.work.R$id: int accessibility_custom_action_8 +com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimVisibleHeightTrigger(int) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintStart_toStartOf +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_android_windowAnimationStyle +androidx.fragment.R$layout: int notification_template_custom_big +androidx.viewpager2.R$id: int accessibility_custom_action_29 +com.jaredrummler.android.colorpicker.R$id +com.google.android.gms.base.R$string: int common_google_play_services_enable_button +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getCardName(android.content.Context) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusTopEnd +james.adaptiveicon.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +androidx.preference.R$style: int Widget_AppCompat_RatingBar_Indicator +com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_text_size +androidx.customview.R$dimen: int compat_button_padding_vertical_material +wangdaye.com.geometricweather.R$string: int key_widget_day_week +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: int UnitType +james.adaptiveicon.R$drawable: int abc_list_focused_holo +wangdaye.com.geometricweather.R$string: int phase_new +okio.GzipSource: okio.Timeout timeout() +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit valueOf(java.lang.String) +androidx.preference.R$anim: int abc_popup_enter +androidx.appcompat.R$dimen: int abc_edit_text_inset_bottom_material +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String CountryID +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String cityId +com.amap.api.location.DPoint: android.os.Parcelable$Creator CREATOR +com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage[] a +wangdaye.com.geometricweather.R$id: int action_image +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPm25() +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Medium +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: CNWeatherResult$WeatherX() +cyanogenmod.weather.CMWeatherManager$2$1: int val$status +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary PrecipitationSummary +androidx.preference.R$anim: int abc_slide_in_bottom +wangdaye.com.geometricweather.R$string: int feedback_click_again_to_exit +com.google.android.material.R$attr: int altSrc +wangdaye.com.geometricweather.R$styleable: int Chip_shapeAppearance james.adaptiveicon.R$id: int expand_activities_button -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FREEZING_DRIZZLE -androidx.preference.R$attr: int dialogIcon -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onComplete() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Surface -androidx.constraintlayout.widget.R$drawable: int abc_spinner_textfield_background_material -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_creator -org.greenrobot.greendao.AbstractDao: long insertInsideTx(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement) -com.tencent.bugly.proguard.u: com.tencent.bugly.proguard.u a(android.content.Context) -com.baidu.location.indoor.mapversion.c.a$d: double c(double) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric Metric -io.reactivex.Observable: io.reactivex.Observable startWith(io.reactivex.ObservableSource) -io.reactivex.Observable: io.reactivex.Observable retry(io.reactivex.functions.Predicate) -wangdaye.com.geometricweather.R$styleable: int[] ActionBarLayout -cyanogenmod.profiles.RingModeSettings: int describeContents() -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String description -com.google.android.material.R$styleable: int Constraint_flow_lastHorizontalBias -com.google.android.material.R$styleable: int View_paddingStart -io.reactivex.exceptions.MissingBackpressureException: MissingBackpressureException(java.lang.String) -wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundODialog -wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_SmallComponent -wangdaye.com.geometricweather.R$style: int AlertDialog_AppCompat -androidx.preference.UnPressableLinearLayout: UnPressableLinearLayout(android.content.Context,android.util.AttributeSet) -androidx.core.app.NotificationCompatSideChannelService -wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_end -androidx.core.R$drawable: int notification_bg_normal_pressed -okhttp3.EventListener: void callEnd(okhttp3.Call) -okhttp3.Response$Builder: long receivedResponseAtMillis -androidx.appcompat.widget.AppCompatButton: int getAutoSizeMinTextSize() -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderSelection -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabBar -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_padding_right -wangdaye.com.geometricweather.R$styleable: int[] Chip -com.xw.repo.bubbleseekbar.R$string: int abc_capital_on -com.google.android.material.R$attr: int textAppearanceSmallPopupMenu -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_arrow_drop_right_black_24dp -androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_min_width_minor -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int level -wangdaye.com.geometricweather.settings.activities.CardDisplayManageActivity -com.turingtechnologies.materialscrollbar.R$drawable: int notification_tile_bg -okhttp3.internal.connection.RouteSelector: java.net.Proxy nextProxy() -cyanogenmod.externalviews.ExternalView$2: void run() -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao -cyanogenmod.profiles.ConnectionSettings: int CM_MODE_4G -cyanogenmod.weather.IRequestInfoListener$Stub -cyanogenmod.providers.CMSettings$System$1: boolean validate(java.lang.String) -com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Subtitle2 -cyanogenmod.weatherservice.WeatherProviderService: void onDisconnected() -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout -androidx.vectordrawable.animated.R$dimen: int notification_big_circle_margin -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.turingtechnologies.materialscrollbar.R$id: int auto -okhttp3.RealCall: java.lang.String redactedUrl() -io.reactivex.internal.subscriptions.EmptySubscription: int requestFusion(int) -com.xw.repo.bubbleseekbar.R$attr: int actionBarWidgetTheme -wangdaye.com.geometricweather.R$string: int key_notification_hide_big_view -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRelativeHumidity(java.lang.Float) -james.adaptiveicon.R$integer: int status_bar_notification_info_maxnum -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowActionBar -androidx.appcompat.R$styleable: int Toolbar_subtitle -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.MinutelyEntityDao getMinutelyEntityDao() -com.google.android.material.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -androidx.appcompat.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -com.turingtechnologies.materialscrollbar.R$attr: int tabGravity -com.jaredrummler.android.colorpicker.R$color: int bright_foreground_inverse_material_light -wangdaye.com.geometricweather.R$styleable: int[] AppCompatTheme -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void disposeInner() -wangdaye.com.geometricweather.R$integer: int cpv_default_anim_steps -wangdaye.com.geometricweather.R$attr: int navigationViewStyle -androidx.appcompat.widget.Toolbar: void setSubtitleTextColor(int) -cyanogenmod.weather.RequestInfo$Builder: int mTempUnit -com.xw.repo.bubbleseekbar.R$id: int edit_query -androidx.preference.R$drawable: int abc_ic_star_black_16dp -cyanogenmod.app.CustomTileListenerService: CustomTileListenerService() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_iconStartPadding -okio.Options: Options(okio.ByteString[],int[]) -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okio.BufferedSource delegateSource -com.google.android.material.R$layout: int abc_alert_dialog_material -com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.BuglyStrategy$a g -wangdaye.com.geometricweather.R$attr: int layout_editor_absoluteY -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_radius -androidx.preference.R$styleable: int View_android_focusable -okhttp3.internal.connection.RealConnection: java.net.Socket rawSocket -com.tencent.bugly.BuglyStrategy: boolean isUploadProcess() -wangdaye.com.geometricweather.R$id: int checkbox -com.xw.repo.bubbleseekbar.R$attr: int autoSizeTextType -androidx.cardview.R$attr: int cardCornerRadius -wangdaye.com.geometricweather.main.utils.MainPalette -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_numericShortcut -okio.Okio$4: java.net.Socket val$socket -wangdaye.com.geometricweather.R$dimen: int design_navigation_icon_padding -wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_radio -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_BOOT_ANIM -cyanogenmod.themes.ThemeManager: void requestThemeChange(java.lang.String,java.util.List) -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Subtitle2 -com.amap.api.location.AMapLocationListener: void onLocationChanged(com.amap.api.location.AMapLocation) -com.google.android.material.R$attr: int motion_triggerOnCollision -com.turingtechnologies.materialscrollbar.R$style: int Base_AlertDialog_AppCompat_Light -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textStyle -com.google.android.material.floatingactionbutton.FloatingActionButton: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display2 -com.xw.repo.bubbleseekbar.R$attr: int lineHeight -com.xw.repo.bubbleseekbar.R$dimen: int notification_top_pad_large_text -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackActiveTintList() -okio.SegmentedByteString: java.lang.Object writeReplace() -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: boolean isEntityUpdateable() -james.adaptiveicon.R$dimen: int abc_edit_text_inset_horizontal_material -androidx.preference.R$attr: int layout_anchorGravity -wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabStyle -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setDeleteIntent(android.app.PendingIntent) -wangdaye.com.geometricweather.R$drawable: int ic_aqi -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Action -androidx.preference.R$attr: int alpha -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_light -okhttp3.ConnectionSpec: java.lang.String[] cipherSuites -androidx.constraintlayout.widget.R$dimen: int abc_text_size_subhead_material -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onComplete() -com.tencent.bugly.crashreport.common.info.a: java.lang.String z() -wangdaye.com.geometricweather.R$attr: int cardPreventCornerOverlap -retrofit2.KotlinExtensions$await$2$2: KotlinExtensions$await$2$2(kotlinx.coroutines.CancellableContinuation) -com.google.android.material.R$styleable: int TextInputLayout_placeholderTextColor -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -com.google.android.material.R$color: int design_dark_default_color_on_background -androidx.constraintlayout.widget.R$attr: int layout_constraintEnd_toStartOf -androidx.lifecycle.reactivestreams.R -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_scaleX -com.google.android.material.R$styleable: int[] AppBarLayoutStates -com.turingtechnologies.materialscrollbar.R$id: int pin -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.Observer downstream -android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedHeightMinor -com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_default_thickness -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -cyanogenmod.hardware.DisplayMode: int id -com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextAppearance -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle -android.didikee.donate.R$color: int accent_material_dark -okio.SegmentedByteString: void write(okio.Buffer) -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ListPopupWindow -wangdaye.com.geometricweather.R$style: int widget_progress -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: ObservableSubscribeOn$SubscribeOnObserver(io.reactivex.Observer) -androidx.preference.R$attr: int actionModePasteDrawable -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sColorValidator -com.xw.repo.bubbleseekbar.R$anim: int abc_grow_fade_in_from_bottom -android.didikee.donate.R$color: int switch_thumb_normal_material_light -wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.AirQuality getAirQuality() -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_pressed -androidx.hilt.work.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: double gust -androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onResume() -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver INNER_DISPOSED -android.didikee.donate.R$drawable: int abc_btn_check_material -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onSuccess(java.lang.Object) -okhttp3.internal.io.FileSystem: boolean exists(java.io.File) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizePresetSizes -com.tencent.bugly.crashreport.CrashReport: boolean setJavascriptMonitor(android.webkit.WebView,boolean) -com.google.android.material.circularreveal.CircularRevealFrameLayout: CircularRevealFrameLayout(android.content.Context) -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_dropDownWidth -com.amap.api.location.AMapLocation: void setNumber(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_light -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SHOWERS -androidx.legacy.coreutils.R$id: int notification_main_column -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: void run() -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: long serialVersionUID -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setAqiText(java.lang.String) -androidx.vectordrawable.R$styleable: int FontFamilyFont_ttcIndex -com.xw.repo.bubbleseekbar.R$attr: int thumbTint -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_caption_material -cyanogenmod.providers.CMSettings$System: java.lang.String KEY_APP_SWITCH_LONG_PRESS_ACTION -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Info -okhttp3.Headers$Builder -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: boolean equals(java.lang.Object) -androidx.activity.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.R$color: int colorPrimaryDark -androidx.lifecycle.LifecycleRegistry$ObserverWithState: androidx.lifecycle.LifecycleEventObserver mLifecycleObserver -okhttp3.Cookie$Builder -org.greenrobot.greendao.AbstractDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_elevation -com.google.android.material.R$style: int TextAppearance_Compat_Notification -androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_bias -cyanogenmod.app.CMTelephonyManager: void setDataConnectionSelectedOnSub(int) -com.jaredrummler.android.colorpicker.R$drawable: int abc_spinner_mtrl_am_alpha -com.tencent.bugly.crashreport.common.info.b: int c() -wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert -androidx.constraintlayout.utils.widget.ImageFilterView: float getRound() -com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemIconTintList() -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage SOURCE -wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit valueOf(java.lang.String) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRealFeelShaderTemperature -retrofit2.ParameterHandler$Body: int p -androidx.recyclerview.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: double lat -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: boolean disposed -com.jaredrummler.android.colorpicker.R$style: int Base_V26_Theme_AppCompat_Light -androidx.lifecycle.SingleGeneratedAdapterObserver -androidx.appcompat.R$dimen -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm10() -com.google.android.material.R$color: int mtrl_btn_bg_color_selector -cyanogenmod.app.IProfileManager: void addNotificationGroup(android.app.NotificationGroup) -androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_bias -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_KEYS_CONTROL_RING_STREAM_VALIDATOR -cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy -wangdaye.com.geometricweather.R$id: int below_section_mark -androidx.constraintlayout.widget.R$attr: int listPopupWindowStyle +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconMargin +retrofit2.Converter$Factory: java.lang.Class getRawType(java.lang.reflect.Type) +androidx.coordinatorlayout.widget.CoordinatorLayout$SavedState: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$dimen: int notification_small_icon_size_as_large +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) +cyanogenmod.profiles.LockSettings: java.lang.String TAG +androidx.constraintlayout.widget.R$styleable: int ActionBar_hideOnContentScroll +com.turingtechnologies.materialscrollbar.R$dimen: int notification_large_icon_width +com.tencent.bugly.proguard.x: boolean a(java.lang.Throwable) +com.google.android.material.R$dimen: int design_fab_elevation +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_firstVerticalBias +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer +com.google.android.material.R$layout: int mtrl_picker_header_dialog +retrofit2.Response: retrofit2.Response error(okhttp3.ResponseBody,okhttp3.Response) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void __setDaoSession(wangdaye.com.geometricweather.db.entities.DaoSession) +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderPackage +com.turingtechnologies.materialscrollbar.R$attr: int listLayout +com.turingtechnologies.materialscrollbar.R$attr: int hideOnContentScroll +com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyle +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_stacked_max_height +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.lang.String pubTime +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_creator +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setPostfixString(java.lang.String) +androidx.preference.R$styleable: R$styleable() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +okhttp3.OkHttpClient$1: void put(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) +okhttp3.internal.http2.Hpack$Reader: java.util.List getAndResetHeaderList() +androidx.lifecycle.extensions.R$id: int line3 +com.google.android.material.R$styleable: int Constraint_layout_editor_absoluteY +wangdaye.com.geometricweather.R$color: int lightPrimary_2 +com.google.android.material.R$styleable: int PropertySet_motionProgress +com.tencent.bugly.crashreport.common.info.b: java.lang.String e(android.content.Context) +okhttp3.internal.io.FileSystem: void rename(java.io.File,java.io.File) +retrofit2.OptionalConverterFactory$OptionalConverter: java.util.Optional convert(okhttp3.ResponseBody) +com.google.android.material.R$id: int progress_horizontal +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_arrowHeadLength +wangdaye.com.geometricweather.R$string: int cpv_custom +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean setNativeIsAppForeground(boolean) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeIcePrecipitation() +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$attr: int tooltipForegroundColor +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderCerts +com.tencent.bugly.proguard.v: void a(com.tencent.bugly.proguard.an,boolean,int,java.lang.String,int) +androidx.vectordrawable.animated.R$dimen: int notification_large_icon_height +com.github.rahatarmanahmed.cpv.CircularProgressView$8: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: java.lang.String Unit +android.didikee.donate.R$styleable: int MenuItem_actionViewClass +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindLevel(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isModify +wangdaye.com.geometricweather.R$attr: int subtitle +androidx.appcompat.resources.R$dimen +retrofit2.ParameterHandler$1: ParameterHandler$1(retrofit2.ParameterHandler) +androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_android_thumb +com.google.android.gms.common.server.response.zak: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$drawable: int shortcuts_wind +com.jaredrummler.android.colorpicker.R$dimen: int abc_search_view_preferred_width +io.reactivex.disposables.RunnableDisposable: java.lang.String toString() +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property AlertId +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_android_textOn +com.tencent.bugly.proguard.am: int g +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontVariationSettings +android.didikee.donate.R$attr: int layout +wangdaye.com.geometricweather.R$string: int mtrl_chip_close_icon_content_description +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setBottomIconDrawable(android.graphics.drawable.Drawable) +androidx.constraintlayout.widget.R$color: int abc_decor_view_status_guard_light +com.turingtechnologies.materialscrollbar.R$attr: int cornerRadius +androidx.appcompat.R$styleable: int MenuView_android_itemTextAppearance +androidx.appcompat.widget.AppCompatTextView: int getAutoSizeTextType() +wangdaye.com.geometricweather.R$styleable: int Chip_android_checkable +wangdaye.com.geometricweather.R$string: int abc_searchview_description_voice +wangdaye.com.geometricweather.R$attr: int colorButtonNormal +com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_MaterialAlertDialog +com.google.android.material.R$styleable: int[] ViewBackgroundHelper +androidx.preference.R$styleable: int MenuItem_android_icon +com.xw.repo.bubbleseekbar.R$dimen: int notification_small_icon_background_padding +com.tencent.bugly.proguard.z: void b(android.os.Parcel,java.util.Map) +wangdaye.com.geometricweather.R$styleable: int Preference_android_fragment +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Light +okio.Buffer: okio.Buffer writeUtf8(java.lang.String,int,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeApparentTemperature +com.google.android.material.R$id: int chip +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onComplete() +okio.BufferedSource: okio.ByteString readByteString() +okhttp3.internal.ws.WebSocketWriter: void writeControlFrame(int,okio.ByteString) +wangdaye.com.geometricweather.R$styleable: int[] Variant +io.reactivex.exceptions.MissingBackpressureException: MissingBackpressureException() +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_fixed_width_major +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean get(int) +okhttp3.internal.proxy.NullProxySelector: java.util.List select(java.net.URI) +com.tencent.bugly.proguard.f: java.util.Map i +android.didikee.donate.R$id: int right_icon +wangdaye.com.geometricweather.R$styleable: int Preference_singleLineTitle +wangdaye.com.geometricweather.R$drawable: int ic_drag +androidx.viewpager2.widget.ViewPager2: androidx.recyclerview.widget.RecyclerView$Adapter getAdapter() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_title_material +androidx.lifecycle.ViewModel: java.util.Map mBagOfTags +wangdaye.com.geometricweather.R$layout: int item_tag +com.xw.repo.bubbleseekbar.R$attr: int fontVariationSettings +androidx.appcompat.R$id: int tag_screen_reader_focusable +okhttp3.internal.http2.Http2Connection$Listener$1 +com.google.android.gms.common.internal.GetServiceRequest: android.os.Parcelable$Creator CREATOR +com.amap.api.location.LocationManagerBase: void unRegisterLocationListener(com.amap.api.location.AMapLocationListener) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: java.util.concurrent.atomic.AtomicReference mainDisposable +com.google.gson.stream.JsonReader: int lineStart +androidx.appcompat.R$id: int accessibility_custom_action_12 +androidx.appcompat.resources.R$id: int accessibility_custom_action_6 +androidx.appcompat.R$styleable: int AppCompatTheme_windowMinWidthMajor +wangdaye.com.geometricweather.R$animator: int mtrl_fab_transformation_sheet_collapse_spec +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_fabCustomSize +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.Long getId() +com.google.android.material.transformation.ExpandableTransformationBehavior: ExpandableTransformationBehavior() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: java.lang.String address +james.adaptiveicon.R$drawable: int abc_control_background_material +cyanogenmod.app.ICMStatusBarManager$Stub: ICMStatusBarManager$Stub() +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.MinutelyEntity) +okhttp3.WebSocket$Factory +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_min +okhttp3.internal.platform.ConscryptPlatform +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Inverse +com.jaredrummler.android.colorpicker.R$drawable: int abc_switch_thumb_material +com.turingtechnologies.materialscrollbar.R$drawable: int tooltip_frame_dark +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void cancelLiveLockScreen(java.lang.String,int,int) +androidx.viewpager2.R$attr: int recyclerViewStyle +androidx.hilt.lifecycle.R$attr +wangdaye.com.geometricweather.db.entities.DaoMaster: void createAllTables(org.greenrobot.greendao.database.Database,boolean) +com.google.android.material.R$styleable: int DrawerArrowToggle_color +wangdaye.com.geometricweather.R$color: int mtrl_calendar_selected_range +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void dispose() +com.amap.api.fence.GeoFence: int STATUS_OUT +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String defenseIcon +wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_grey +androidx.appcompat.widget.Toolbar: void setSubtitle(java.lang.CharSequence) +com.google.android.material.R$attr: int behavior_draggable +wangdaye.com.geometricweather.R$string: int date_format_widget_long +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +okhttp3.HttpUrl$Builder: boolean isDotDot(java.lang.String) +james.adaptiveicon.R$drawable: int abc_spinner_textfield_background_material +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.Scheduler scheduler +wangdaye.com.geometricweather.R$styleable: int RadialViewGroup_materialCircleRadius +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_7 +cyanogenmod.app.ICMStatusBarManager: void createCustomTileWithTag(java.lang.String,java.lang.String,java.lang.String,int,cyanogenmod.app.CustomTile,int[],int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String url +james.adaptiveicon.R$styleable: int AppCompatTheme_controlBackground +wangdaye.com.geometricweather.common.basic.models.weather.Daily: float hoursOfSun +wangdaye.com.geometricweather.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: java.util.Date Date +androidx.preference.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +cyanogenmod.app.ProfileGroup: android.net.Uri getSoundOverride() +wangdaye.com.geometricweather.R$attr: int thumbTextPadding +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: AccuMinuteResult$SummaryBean() +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_title +org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType None +androidx.preference.R$styleable: int SwitchCompat_showText +com.google.android.material.internal.CheckableImageButton: void setPressed(boolean) +androidx.appcompat.resources.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTopCompat +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstVerticalStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric Metric +androidx.hilt.work.R$id: int actions +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_dropDownWidth +com.tencent.bugly.crashreport.inner.InnerApi: InnerApi() +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_4 +android.didikee.donate.R$layout: int notification_template_custom_big +okhttp3.internal.NamedRunnable +androidx.appcompat.R$styleable: int TextAppearance_textAllCaps +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: java.lang.String Unit +okhttp3.internal.http1.Http1Codec$AbstractSource: Http1Codec$AbstractSource(okhttp3.internal.http1.Http1Codec) +wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_title +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Province +androidx.appcompat.widget.AppCompatCheckBox: void setSupportBackgroundTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$layout: int dialog_background_location +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_layout +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBottom_creator +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_orderInCategory +james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_DropDown +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActivityChooserView +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_backgroundStacked +com.jaredrummler.android.colorpicker.R$dimen: int abc_search_view_preferred_height cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.os.Parcel,cyanogenmod.app.LiveLockScreenInfo$1) -james.adaptiveicon.R$styleable: int AlertDialog_buttonPanelSideLayout -okhttp3.internal.cache.DiskLruCache: java.util.regex.Pattern LEGAL_KEY_PATTERN -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_256_GCM_SHA384 -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: MfForecastResult$Forecast$Snow() -cyanogenmod.app.ProfileManager: int PROFILES_STATE_ENABLED -androidx.appcompat.widget.AppCompatSpinner: int getDropDownWidth() -androidx.drawerlayout.R$integer: int status_bar_notification_info_maxnum -androidx.appcompat.R$anim: int abc_tooltip_enter -androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImpl -com.jaredrummler.android.colorpicker.R$attr: int selectable -com.github.rahatarmanahmed.cpv.CircularProgressView: float actualProgress -com.google.android.material.R$attr: int closeIconTint -okio.Okio$4: java.io.IOException newTimeoutException(java.io.IOException) -androidx.viewpager2.R$attr: int fontProviderAuthority -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginStart -androidx.legacy.coreutils.R$styleable: int GradientColor_android_startY -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_logo -cyanogenmod.providers.CMSettings$Secure: long getLong(android.content.ContentResolver,java.lang.String) -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.util.List toDailyTrendDisplayList(java.lang.String) -retrofit2.ParameterHandler: retrofit2.ParameterHandler array() -cyanogenmod.app.ICMTelephonyManager$Stub: android.os.IBinder asBinder() -androidx.viewpager2.R$dimen: int fastscroll_minimum_range -com.github.rahatarmanahmed.cpv.CircularProgressView$7: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -androidx.appcompat.R$string: int status_bar_notification_info_overflow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric() -okhttp3.OkHttpClient$Builder: boolean followRedirects -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: AccuDailyResult$DailyForecasts$Night$WindGust() -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -androidx.constraintlayout.widget.R$styleable: int Transition_duration -com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String i(android.content.Context) -androidx.preference.R$styleable: int[] ListPopupWindow -androidx.constraintlayout.widget.R$attr: int iconTintMode -wangdaye.com.geometricweather.R$attr: int tabIconTint -androidx.constraintlayout.widget.R$bool -james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_chainUseRtl -com.xw.repo.bubbleseekbar.R$id: int right_side -wangdaye.com.geometricweather.R$id: int skipCollapsed -com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemPaddingRight -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_registerListener -com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_stackFromEnd -com.tencent.bugly.proguard.i: java.nio.ByteBuffer a -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.R$drawable: int mtrl_ic_arrow_drop_up -com.turingtechnologies.materialscrollbar.R$style: int AlertDialog_AppCompat_Light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getZh_TW() -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setTextColor(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$dimen: int abc_search_view_preferred_height -okhttp3.OkHttpClient$Builder: javax.net.ssl.HostnameVerifier hostnameVerifier -okhttp3.internal.http2.Http2Reader: okhttp3.internal.http2.Http2Reader$ContinuationSource continuation -android.didikee.donate.R$styleable: int MenuView_android_horizontalDivider -com.google.android.material.R$attr: int layout_constraintBaseline_creator -androidx.preference.R$styleable: int GradientColorItem_android_offset -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_28 -okhttp3.internal.cache.InternalCache: okhttp3.Response get(okhttp3.Request) -james.adaptiveicon.R$color: int abc_btn_colored_borderless_text_material -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endY -okhttp3.internal.http1.Http1Codec: Http1Codec(okhttp3.OkHttpClient,okhttp3.internal.connection.StreamAllocation,okio.BufferedSource,okio.BufferedSink) -com.google.android.material.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motion_postLayoutCollision -cyanogenmod.weather.RequestInfo$Builder: java.lang.String mCityName -com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceImageView -com.google.android.material.R$styleable: int Badge_badgeTextColor -com.google.android.material.R$drawable: int ic_keyboard_black_24dp -io.reactivex.Observable: io.reactivex.Observable buffer(int,int) -com.tencent.bugly.BuglyStrategy: java.lang.String getLibBuglySOFilePath() -com.google.android.material.R$styleable: int Chip_chipIcon -com.google.android.material.R$id: int month_navigation_next -androidx.work.R$id: int time -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date moonRiseDate -androidx.preference.R$string: int abc_action_bar_up_description -androidx.preference.R$styleable: int AppCompatTheme_activityChooserViewStyle -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_firstBaselineToTopHeight -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -com.google.android.material.R$id: int gone -cyanogenmod.providers.CMSettings$NameValueCache: java.util.HashMap mValues -wangdaye.com.geometricweather.R$string: int abc_action_mode_done -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorControlActivated -com.turingtechnologies.materialscrollbar.R$attr: int collapsedTitleTextAppearance -cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(android.os.Parcel,cyanogenmod.app.Profile$1) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintStart_toEndOf -wangdaye.com.geometricweather.R$drawable: int common_full_open_on_phone -androidx.preference.R$styleable: int AppCompatTheme_actionMenuTextColor -androidx.appcompat.R$styleable: int SearchView_android_imeOptions -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_cancelRequest -androidx.lifecycle.ReflectiveGenericLifecycleObserver -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments text -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: void setPathData(androidx.core.graphics.PathParser$PathDataNode[]) -org.greenrobot.greendao.AbstractDaoMaster: int schemaVersion -androidx.customview.R$string: R$string() -com.google.android.material.R$attr: int colorSurface -android.didikee.donate.R$attr: int windowFixedHeightMajor -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Borderless -androidx.appcompat.R$id: int search_edit_frame -io.reactivex.internal.subscriptions.SubscriptionArbiter: void setSubscription(org.reactivestreams.Subscription) -androidx.appcompat.R$attr: int windowMinWidthMajor -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog -androidx.appcompat.R$id: int tag_unhandled_key_event_manager -cyanogenmod.app.LiveLockScreenManager: void logServiceException(java.lang.Exception) -androidx.viewpager2.widget.ViewPager2: int getItemDecorationCount() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric Metric -wangdaye.com.geometricweather.R$styleable: int CardView_cardMaxElevation -android.didikee.donate.R$styleable: int ActionBar_elevation -james.adaptiveicon.R$id: int chronometer -androidx.activity.R$id: int accessibility_custom_action_20 -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_barLength -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -retrofit2.ParameterHandler$Body: void apply(retrofit2.RequestBuilder,java.lang.Object) -wangdaye.com.geometricweather.R$layout: int item_alert -androidx.viewpager2.R$styleable: int FontFamilyFont_android_font -com.google.android.material.R$style: int Animation_MaterialComponents_BottomSheetDialog -retrofit2.HttpServiceMethod: retrofit2.Converter responseConverter -androidx.appcompat.R$drawable: int abc_btn_check_material -okhttp3.internal.platform.Platform: void configureSslSocketFactory(javax.net.ssl.SSLSocketFactory) -wangdaye.com.geometricweather.R$layout: int test_chip_zero_corner_radius -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -com.xw.repo.bubbleseekbar.R$color: int secondary_text_default_material_dark -io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: long serialVersionUID -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: java.lang.String getNotificationTextColorName(android.content.Context) -com.google.android.material.R$dimen: int tooltip_precise_anchor_threshold -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float no2 -wangdaye.com.geometricweather.R$attr: int thumbElevation -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontWeight -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_ttcIndex -cyanogenmod.themes.ThemeManager: java.lang.String access$100() -com.xw.repo.bubbleseekbar.R$styleable: int[] View -com.google.android.material.R$attr: int switchTextAppearance -okhttp3.Dispatcher: void cancelAll() -okhttp3.RequestBody -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_RC4_128_SHA -androidx.preference.R$style: int PreferenceFragmentList -androidx.loader.R$drawable: int notify_panel_notification_icon_bg -okhttp3.RealCall$AsyncCall -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean cancelled -androidx.appcompat.R$dimen: int abc_control_corner_material -androidx.fragment.R$style: int Widget_Compat_NotificationActionText -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onComplete() -androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionState(android.os.Bundle) -com.google.android.material.R$attr: int expandedTitleMarginTop -cyanogenmod.app.ICustomTileListener$Stub: cyanogenmod.app.ICustomTileListener asInterface(android.os.IBinder) -androidx.activity.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$attr: int bsb_always_show_bubble -okhttp3.ConnectionPool -okhttp3.Cache -androidx.customview.R$id: int right_icon -com.google.android.material.R$style: int Widget_AppCompat_EditText -wangdaye.com.geometricweather.wallpaper.LiveWallpaperConfigActivity: LiveWallpaperConfigActivity() -cyanogenmod.weather.WeatherInfo$Builder: double mHumidity -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitation(java.lang.Float) -androidx.preference.R$color: int abc_background_cache_hint_selector_material_dark -com.google.android.material.button.MaterialButton: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: ObservableReplay$BoundedReplayBuffer() -com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light_normal_background -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: AccuCurrentResult$Past24HourTemperatureDeparture$Metric() -android.didikee.donate.R$id: int chronometer -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: boolean eager -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode NO_ERROR -androidx.constraintlayout.widget.R$styleable: int ImageFilterView_round -com.tencent.bugly.crashreport.biz.b: long e -wangdaye.com.geometricweather.R$transition: int search_activity_shared_enter -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_title -com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableEnd -wangdaye.com.geometricweather.R$drawable: int abc_btn_check_to_on_mtrl_000 -wangdaye.com.geometricweather.R$attr: int mock_showLabel -wangdaye.com.geometricweather.R$attr: int actionDropDownStyle -wangdaye.com.geometricweather.R$styleable: int NavigationView_android_background -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: AccuDailyResult$Headline() -com.tencent.bugly.crashreport.biz.UserInfoBean: long h -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight -com.jaredrummler.android.colorpicker.ColorPanelView: void setOriginalColor(int) -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onNext(java.lang.Object) -com.google.android.material.R$styleable: int ActionBar_indeterminateProgressStyle -james.adaptiveicon.R$dimen: int hint_alpha_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int[] RecycleListView -cyanogenmod.externalviews.ExternalViewProperties: android.view.View mDecorView -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.work.R$styleable: int FontFamily_fontProviderPackage -wangdaye.com.geometricweather.R$attr: int textAppearanceBody1 -com.github.rahatarmanahmed.cpv.CircularProgressView: float access$402(com.github.rahatarmanahmed.cpv.CircularProgressView,float) -com.xw.repo.bubbleseekbar.R$drawable: int abc_ab_share_pack_mtrl_alpha -com.github.rahatarmanahmed.cpv.CircularProgressView$1: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -wangdaye.com.geometricweather.R$drawable: int abc_btn_check_material -androidx.appcompat.R$color: int primary_text_disabled_material_dark -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken[] values() -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void dispose() -com.google.android.material.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -com.xw.repo.bubbleseekbar.R$attr: int dropDownListViewStyle -com.google.android.material.R$bool: int abc_action_bar_embed_tabs -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerColor -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dropDownListViewStyle -com.google.android.gms.auth.api.signin.GoogleSignInOptions: android.os.Parcelable$Creator CREATOR -cyanogenmod.weather.WeatherInfo$DayForecast: double mLow -wangdaye.com.geometricweather.db.entities.DaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession() -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void registerWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) -androidx.appcompat.view.menu.CascadingMenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) -okio.BufferedSink: okio.BufferedSink writeDecimalLong(long) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitationProbability -com.amap.api.location.AMapLocation: com.amap.api.location.AMapLocationQualityReport getLocationQualityReport() -okhttp3.internal.ws.RealWebSocket: int receivedPongCount() -io.reactivex.Observable: io.reactivex.Observable cast(java.lang.Class) -cyanogenmod.profiles.RingModeSettings$1: RingModeSettings$1() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: HourlyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -com.tencent.bugly.crashreport.crash.e: com.tencent.bugly.crashreport.crash.b b -cyanogenmod.app.ILiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() -com.google.android.material.R$styleable: int AppCompatTheme_dividerVertical -com.google.android.material.bottomnavigation.BottomNavigationPresenter$SavedState: android.os.Parcelable$Creator CREATOR -cyanogenmod.themes.IThemeChangeListener$Stub: int TRANSACTION_onFinish_1 -com.tencent.bugly.proguard.k: void a(com.tencent.bugly.proguard.j) -com.google.android.material.R$id: int tag_unhandled_key_event_manager -wangdaye.com.geometricweather.R$interpolator -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: android.os.IBinder asBinder() -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: long index -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findPlatform() -com.google.android.material.internal.NavigationMenuView -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startColor -androidx.preference.R$attr: int fontProviderFetchTimeout -androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Line2 -com.google.android.material.textfield.TextInputLayout: void setErrorContentDescription(java.lang.CharSequence) -com.google.android.material.R$animator: int mtrl_fab_transformation_sheet_expand_spec -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_singleChoiceItemLayout -com.google.android.material.R$attr: int tickMarkTint -com.google.android.material.R$styleable: int AppCompatTheme_tooltipForegroundColor -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_text_color -androidx.lifecycle.ClassesInfoCache$MethodReference: void invokeCallback(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event,java.lang.Object) -androidx.appcompat.widget.ActionBarOverlayLayout: ActionBarOverlayLayout(android.content.Context) -androidx.constraintlayout.widget.R$dimen: R$dimen() -wangdaye.com.geometricweather.R$id: int material_hour_text_input -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_width +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit +androidx.lifecycle.ProcessLifecycleOwner$3$1: void onActivityPostStarted(android.app.Activity) +com.google.android.material.R$styleable: int TextInputLayout_shapeAppearance +androidx.hilt.lifecycle.R$dimen: int compat_notification_large_icon_max_width +com.google.android.material.R$id: int normal +android.didikee.donate.R$style: int Base_V22_Theme_AppCompat_Light +james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_font +com.google.android.material.R$animator: int linear_indeterminate_line2_tail_interpolator +wangdaye.com.geometricweather.R$styleable: int Slider_thumbColor +com.jaredrummler.android.colorpicker.R$id: int checkbox +com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeBottomRight +androidx.lifecycle.service.R: R() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: int UnitType +android.didikee.donate.R$styleable: int View_theme +com.google.android.material.R$id: int month_title +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom +okhttp3.logging.HttpLoggingInterceptor: boolean bodyHasUnknownEncoding(okhttp3.Headers) +com.google.android.material.R$integer: int bottom_sheet_slide_duration +wangdaye.com.geometricweather.R$styleable: int Constraint_chainUseRtl +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_motionProgress +com.xw.repo.bubbleseekbar.R$layout: int abc_popup_menu_item_layout +com.jaredrummler.android.colorpicker.R$id: int cpv_hex +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_query +android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +androidx.hilt.R$layout +com.google.android.material.R$id: int outgoing +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.entities.DailyEntity readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.R$layout: int item_about_header +okhttp3.internal.http.RealInterceptorChain: int readTimeout +com.tencent.bugly.proguard.ak: java.util.Map B +com.google.android.material.R$drawable: int abc_ic_clear_material +com.tencent.bugly.crashreport.crash.anr.a: java.lang.String f +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode END +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer grassIndex +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeAppearanceOverlay +wangdaye.com.geometricweather.R$id: int snackbar_action +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_disabled +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTheme +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_end_padding_icon +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_visible +com.tencent.bugly.proguard.u: long m +cyanogenmod.app.Profile: cyanogenmod.profiles.ConnectionSettings getSettingsForConnection(int) +com.google.android.material.R$dimen: int compat_button_inset_horizontal_material +cyanogenmod.app.Profile$NotificationLightMode: int DEFAULT +com.turingtechnologies.materialscrollbar.R$id: int search_edit_frame +androidx.lifecycle.process.R: R() +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String x +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: long serialVersionUID +androidx.lifecycle.extensions.R$dimen: int notification_large_icon_height +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean tryEmitScalar(java.util.concurrent.Callable) +james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +com.google.android.material.R$styleable: int[] StateListDrawableItem +okhttp3.ResponseBody: java.lang.String string() +androidx.constraintlayout.widget.R$color: int background_floating_material_light +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long uniqueId +android.didikee.donate.R$attr: int hideOnContentScroll +org.greenrobot.greendao.AbstractDao: void executeInsertInTx(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Iterable,boolean) +androidx.appcompat.R$styleable: int[] ActionMenuView +wangdaye.com.geometricweather.R$xml: int network_security_config +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_black +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +okhttp3.internal.platform.OptionalMethod: java.lang.Object invokeOptionalWithoutCheckedException(java.lang.Object,java.lang.Object[]) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getSnow() +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +android.didikee.donate.R$dimen: int abc_text_size_headline_material +com.xw.repo.bubbleseekbar.R$color: int secondary_text_disabled_material_light +wangdaye.com.geometricweather.R$styleable: int SearchView_commitIcon +com.jaredrummler.android.colorpicker.R$attr: int dialogTitle +com.turingtechnologies.materialscrollbar.R$attr: int tabStyle +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date getPublishDate() +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_android_enabled +com.google.android.material.R$styleable: int NavigationView_itemHorizontalPadding +androidx.constraintlayout.widget.R$styleable: int Layout_layout_editor_absoluteX +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Primary +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_unRegisterThermalListener +cyanogenmod.app.Profile$ProfileTrigger: int describeContents() +com.tencent.bugly.crashreport.biz.b: long b(long) +androidx.customview.R$drawable +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RelativeHumidity +androidx.appcompat.resources.R$attr: int fontStyle +android.didikee.donate.R$dimen: int abc_button_padding_vertical_material +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void onError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +retrofit2.ParameterHandler$Query: boolean encoded +com.tencent.bugly.crashreport.common.info.a: java.lang.String c() +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Time +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_begin +io.reactivex.internal.subscriptions.SubscriptionArbiter: long requested +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.util.Date pubTime +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.util.AtomicThrowable error +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getEn_US() +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource MF +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_minWidth +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_14 +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: long requested() +androidx.lifecycle.ProcessLifecycleOwner$2: void onStart() +com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_disable_only_material_light +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_material_light +com.github.rahatarmanahmed.cpv.CircularProgressView$8: void onAnimationUpdate(android.animation.ValueAnimator) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: CaiYunMainlyResult$CurrentBean$FeelsLikeBean() com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler getInstance(android.content.Context,com.tencent.bugly.crashreport.common.info.a,com.tencent.bugly.crashreport.crash.b,com.tencent.bugly.crashreport.common.strategy.a,com.tencent.bugly.proguard.w,boolean,java.lang.String) -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: ObservableRange$RangeDisposable(io.reactivex.Observer,long,long) -com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Button -wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String IconPhrase -androidx.appcompat.widget.ActionMenuView: void setPresenter(androidx.appcompat.widget.ActionMenuPresenter) -com.google.android.material.R$styleable: int Constraint_layout_constraintTag -androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy KEEP -wangdaye.com.geometricweather.settings.dialogs.ProvidersPreviewerDialog -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getDensityVoice(android.content.Context,float) -com.xw.repo.bubbleseekbar.R$layout: R$layout() -androidx.lifecycle.ServiceLifecycleDispatcher: android.os.Handler mHandler -androidx.preference.R$style: int Base_V7_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$drawable: int shortcuts_rain -androidx.legacy.coreutils.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$string: int settings_summary_live_wallpaper -james.adaptiveicon.R$styleable: int[] ButtonBarLayout -com.xw.repo.bubbleseekbar.R$dimen: int hint_alpha_material_dark -androidx.lifecycle.extensions.R$styleable: R$styleable() -com.xw.repo.bubbleseekbar.R$attr: int tickMarkTint -wangdaye.com.geometricweather.R$id: int fill -james.adaptiveicon.R$styleable: int MenuItem_tooltipText -wangdaye.com.geometricweather.R$styleable: int Slider_trackColor -androidx.appcompat.R$styleable: int[] AlertDialog -androidx.constraintlayout.widget.R$anim: int abc_slide_in_bottom -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_DES_CBC_40_SHA -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int state -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean,int) -wangdaye.com.geometricweather.R$dimen: int main_title_text_size -com.google.android.material.chip.Chip: void setCloseIcon(android.graphics.drawable.Drawable) -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteAll -androidx.constraintlayout.widget.R$styleable: int[] AppCompatTextHelper -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25 pm25 -androidx.appcompat.R$attr: int autoSizeTextType -okio.RealBufferedSource: boolean rangeEquals(long,okio.ByteString,int,int) -james.adaptiveicon.R$styleable: int FontFamilyFont_fontStyle -okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Logger logger -android.support.v4.os.ResultReceiver$MyRunnable -cyanogenmod.weather.WeatherInfo$Builder -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WINDY -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegments(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintEnd_toEndOf -james.adaptiveicon.R$attr: int arrowShaftLength -retrofit2.BuiltInConverters$RequestBodyConverter: okhttp3.RequestBody convert(okhttp3.RequestBody) -io.reactivex.subjects.PublishSubject$PublishDisposable: long serialVersionUID -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_month_horizontal_padding -androidx.legacy.coreutils.R$id: int time -android.didikee.donate.R$styleable: int Toolbar_subtitle -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginTop -james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -androidx.appcompat.widget.SwitchCompat -io.reactivex.internal.subscriptions.SubscriptionHelper: boolean deferredSetOnce(java.util.concurrent.atomic.AtomicReference,java.util.concurrent.atomic.AtomicLong,org.reactivestreams.Subscription) -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_previewSize -com.google.android.material.R$style: int Base_Widget_AppCompat_PopupMenu -com.amap.api.fence.GeoFence: java.lang.String getCustomId() -retrofit2.Retrofit: retrofit2.CallAdapter callAdapter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -okhttp3.internal.http2.Hpack$Reader: int readByte() -com.baidu.location.f: f() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_arrowHeadLength -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_3 -com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemTextAppearance -wangdaye.com.geometricweather.R$dimen: int design_navigation_elevation -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: long timeout -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: android.graphics.Rect getWindowInsets() -androidx.viewpager.R$id: int icon_group -com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_height -james.adaptiveicon.R$styleable: int MenuItem_actionLayout -android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_3_00 -com.google.android.material.R$styleable: int OnSwipe_onTouchUp -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListMenuView -cyanogenmod.hardware.CMHardwareManager: long getLtoDownloadInterval() -wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_dayStyle -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias -okio.Buffer$UnsafeCursor: long expandBuffer(int) -androidx.appcompat.R$color: int abc_primary_text_disable_only_material_light -androidx.preference.R$styleable: int Preference_fragment -android.didikee.donate.R$attr: int thumbTextPadding -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableStartCompat -wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_Light -com.tencent.bugly.crashreport.common.info.a: java.lang.String c -com.google.android.material.R$color: int material_deep_teal_200 -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -james.adaptiveicon.R$attr: int autoSizeMinTextSize -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_colorShape -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver -com.amap.api.location.AMapLocation: void setDistrict(java.lang.String) -com.amap.api.location.AMapLocation: com.amap.api.location.AMapLocation clone() -wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getHourlyForecast() -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: FlowableObserveOn$BaseObserveOnSubscriber(io.reactivex.Scheduler$Worker,boolean,int) -com.google.android.material.R$id: int material_timepicker_container -com.tencent.bugly.proguard.p: long a(java.lang.String,android.content.ContentValues,com.tencent.bugly.proguard.o,boolean) -com.tencent.bugly.crashreport.crash.e: com.tencent.bugly.crashreport.common.info.a d -androidx.preference.R$layout: int notification_action_tombstone -com.google.android.material.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary -wangdaye.com.geometricweather.R$id: int honorRequest -com.tencent.bugly.crashreport.common.info.b: java.lang.String c(android.content.Context) -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -okio.RealBufferedSink: okio.BufferedSink writeByte(int) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -com.tencent.bugly.crashreport.common.info.a: long t -wangdaye.com.geometricweather.common.basic.models.weather.Alert: void writeToParcel(android.os.Parcel,int) -com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(short,java.lang.String) -androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar -com.tencent.bugly.proguard.x: boolean a(int,java.lang.String,java.lang.Object[]) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_inset_horizontal_material -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Today -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_LED_OFF_VALIDATOR -okio.HashingSink: okio.HashingSink sha256(okio.Sink) -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintRight_toLeftOf -wangdaye.com.geometricweather.R$attr: int elevationOverlayColor -androidx.core.R$id: int accessibility_custom_action_21 -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -io.reactivex.internal.observers.BasicIntQueueDisposable: void clear() -androidx.customview.R$styleable: int GradientColor_android_centerX -androidx.hilt.work.R$style: int Widget_Compat_NotificationActionText +io.reactivex.Observable: io.reactivex.Single first(java.lang.Object) +androidx.viewpager.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial Imperial +cyanogenmod.app.ProfileGroup$1: cyanogenmod.app.ProfileGroup createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfPrecipitation +com.bumptech.glide.Priority: com.bumptech.glide.Priority LOW +android.didikee.donate.R$styleable: int MenuView_preserveIconSpacing +io.reactivex.internal.observers.InnerQueuedObserver: long serialVersionUID +androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Title +com.google.android.material.R$attr: int drawPath +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setPoint(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_11 +androidx.constraintlayout.widget.R$styleable: int ActionBar_backgroundSplit +com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_top_mtrl_alpha +com.google.android.material.R$string: int mtrl_picker_range_header_unselected +androidx.coordinatorlayout.R$dimen: int compat_notification_large_icon_max_width +androidx.appcompat.R$color: int switch_thumb_normal_material_dark +okhttp3.Response$Builder: void checkSupportResponse(java.lang.String,okhttp3.Response) +cyanogenmod.externalviews.KeyguardExternalView$6: void run() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: int colorId +androidx.preference.R$color: int tooltip_background_dark +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogPreferredPadding +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX) +androidx.vectordrawable.R$dimen: int notification_big_circle_margin +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void dispose() +com.google.android.material.progressindicator.ProgressIndicator: int getTrackColor() +wangdaye.com.geometricweather.R$transition: int search_activity_shared_return +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStrokeWidth +androidx.activity.R$styleable: int FontFamilyFont_fontStyle +cyanogenmod.power.PerformanceManager: java.lang.String TAG +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean putNativeKeyValue(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_light +com.tencent.bugly.proguard.l: byte[] a(java.nio.ByteBuffer) +android.support.v4.app.INotificationSideChannel$Default: android.os.IBinder asBinder() +androidx.viewpager2.R$id: int accessibility_custom_action_7 +com.google.android.material.textfield.TextInputLayout$SavedState: android.os.Parcelable$Creator CREATOR +androidx.vectordrawable.R$dimen +com.turingtechnologies.materialscrollbar.R$attr: int tabGravity +com.google.gson.stream.JsonReader: int PEEKED_UNQUOTED +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void applyAndAckSettings(boolean,okhttp3.internal.http2.Settings) +androidx.appcompat.R$style: int Theme_AppCompat_Dialog_MinWidth +androidx.drawerlayout.R$styleable: int FontFamilyFont_fontWeight +com.google.android.material.R$styleable: int Constraint_android_scaleX +wangdaye.com.geometricweather.R$id: int homeAsUp +okhttp3.Response$Builder: Response$Builder(okhttp3.Response) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: long serialVersionUID +com.google.android.material.R$styleable: int[] Variant +androidx.vectordrawable.animated.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$color: int mtrl_tabs_legacy_text_color_selector +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowNoTitle +com.jaredrummler.android.colorpicker.R$attr: int buttonBarNegativeButtonStyle +cyanogenmod.profiles.BrightnessSettings: void processOverride(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: int status +wangdaye.com.geometricweather.R$styleable: int ChipGroup_checkedChip +org.greenrobot.greendao.AbstractDao: boolean isStandardSQLite +wangdaye.com.geometricweather.R$layout: int item_aqi +okhttp3.internal.ws.WebSocketReader: byte[] maskKey +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_corner_radius +com.google.android.material.snackbar.SnackbarContentLayout: android.widget.TextView getMessageView() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.String TABLENAME +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer realFeelShaderTemperature +wangdaye.com.geometricweather.R$attr: int round +com.jaredrummler.android.colorpicker.R$styleable: int Preference_layout +okhttp3.internal.ws.WebSocketReader: boolean isControlFrame +wangdaye.com.geometricweather.R$drawable: int weather_wind_pixel +com.google.android.material.R$attr: int itemFillColor +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_CLOCK_TEXT_COLOR +com.tencent.bugly.crashreport.crash.c: java.lang.String n +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Large +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getUnitId() +com.bumptech.glide.load.HttpException: int UNKNOWN +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: android.graphics.Rect getWindowInsets() +androidx.constraintlayout.utils.widget.MotionTelltales +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_letter_spacing +androidx.activity.R$id: int tag_unhandled_key_listeners +com.google.android.material.R$dimen: int mtrl_extended_fab_disabled_translation_z +com.tencent.bugly.crashreport.common.info.a: boolean a() +com.xw.repo.bubbleseekbar.R$attr: int state_above_anchor +androidx.core.R$styleable: int GradientColor_android_centerColor +androidx.hilt.work.R$attr: int fontProviderQuery +cyanogenmod.weather.ICMWeatherManager: java.lang.String getActiveWeatherServiceProviderLabel() +androidx.appcompat.R$attr: int actionModeStyle +wangdaye.com.geometricweather.R$styleable: int Transform_android_translationY +wangdaye.com.geometricweather.R$interpolator: int mtrl_fast_out_slow_in +androidx.legacy.coreutils.R$layout: R$layout() +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: long serialVersionUID +james.adaptiveicon.R$styleable: int ActionBar_elevation +wangdaye.com.geometricweather.R$styleable: int[] ScrimInsetsFrameLayout +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_passwordToggleTintMode +com.google.android.material.R$attr: int lineHeight +okio.ByteString: int compareTo(java.lang.Object) +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +okhttp3.internal.http2.Http2Connection: void close(okhttp3.internal.http2.ErrorCode,okhttp3.internal.http2.ErrorCode) +okhttp3.internal.http1.Http1Codec$FixedLengthSource: void close() +okhttp3.internal.cache.DiskLruCache$Entry +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetRight +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_content_inset_material +androidx.lifecycle.OnLifecycleEvent: androidx.lifecycle.Lifecycle$Event value() +com.google.android.material.appbar.AppBarLayout$Behavior: AppBarLayout$Behavior() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: long getUpdateTime() +com.google.android.material.R$layout: int abc_action_bar_up_container +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Subtitle2 +android.didikee.donate.R$layout: int abc_screen_content_include +cyanogenmod.providers.CMSettings$Secure: android.net.Uri getUriFor(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.String getWeatherText() +com.turingtechnologies.materialscrollbar.R$dimen: int notification_small_icon_size_as_large +androidx.constraintlayout.widget.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Flush +androidx.swiperefreshlayout.R$attr: int ttcIndex +androidx.appcompat.R$style: int Theme_AppCompat_NoActionBar +com.turingtechnologies.materialscrollbar.R$string: int abc_capital_off +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemPaddingRight +wangdaye.com.geometricweather.R$attr: int colorControlActivated +androidx.swiperefreshlayout.R$styleable: int[] SwipeRefreshLayout +wangdaye.com.geometricweather.R$id: int item_weather_daily_air_content +okhttp3.internal.proxy.NullProxySelector: NullProxySelector() +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: java.lang.Object[] a(java.io.BufferedReader,java.util.regex.Pattern[]) +androidx.constraintlayout.widget.R$id: int submit_area +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_wrapMode +com.tencent.bugly.crashreport.crash.CrashDetailBean: int Q +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer RIGHT_VALUE +com.xw.repo.bubbleseekbar.R$color: int material_grey_300 +okhttp3.internal.platform.Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +retrofit2.ParameterHandler$FieldMap: void apply(retrofit2.RequestBuilder,java.lang.Object) +androidx.preference.R$style: int Widget_AppCompat_CompoundButton_Switch +androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context,android.util.AttributeSet,int) +com.tencent.bugly.crashreport.crash.b: boolean a(com.tencent.bugly.crashreport.crash.CrashDetailBean) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingBottom +wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_bias +com.google.gson.stream.JsonReader: void nextNull() +okhttp3.internal.cache.DiskLruCache: boolean removeEntry(okhttp3.internal.cache.DiskLruCache$Entry) +com.google.android.material.R$styleable: int Constraint_layout_constraintRight_toLeftOf +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +okhttp3.internal.http.HttpDate$1 +com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.StrategyBean f +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int dark +com.google.android.material.R$color: int androidx_core_ripple_material_light +wangdaye.com.geometricweather.db.entities.MinutelyEntity +androidx.constraintlayout.widget.R$drawable: int abc_btn_borderless_material +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property GrassIndex +androidx.recyclerview.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setTranslateX(float) +com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_with_text_radius +androidx.preference.R$style: int Base_Widget_AppCompat_ListView_DropDown +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_icon_padding +okhttp3.internal.http2.Http2Writer: void goAway(int,okhttp3.internal.http2.ErrorCode,byte[]) +androidx.preference.R$id: int visible_removing_fragment_view_tag +wangdaye.com.geometricweather.R$drawable: int notif_temp_115 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow Snow +com.tencent.bugly.crashreport.crash.anr.b: void a(java.lang.String) +androidx.preference.R$styleable: int SearchView_layout +wangdaye.com.geometricweather.R$id: int activity_widget_config_viewStyleTitle +androidx.preference.R$styleable: int PreferenceTheme_dialogPreferenceStyle +wangdaye.com.geometricweather.R$dimen: int widget_grid_2 +james.adaptiveicon.R$attr: int buttonPanelSideLayout +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int ISOLATED_THUNDERSTORMS +androidx.preference.R$id: int textSpacerNoButtons +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: io.reactivex.disposables.Disposable upstream +androidx.vectordrawable.R$id: int right_icon +android.didikee.donate.R$id: int action_bar_container +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_container +com.tencent.bugly.proguard.an: void a(com.tencent.bugly.proguard.i) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean weather +com.google.android.material.R$attr: int transitionPathRotate +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Title_Inverse +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float windSpeed +androidx.swiperefreshlayout.R$dimen: int compat_button_padding_vertical_material +cyanogenmod.weather.RequestInfo: int TYPE_WEATHER_BY_WEATHER_LOCATION_REQ +androidx.preference.R$styleable: int[] ActivityChooserView +androidx.constraintlayout.widget.R$color: int tooltip_background_light +androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_percent +com.google.android.material.R$styleable: int Slider_android_stepSize +com.xw.repo.bubbleseekbar.R$layout: int abc_action_bar_title_item +com.tencent.bugly.proguard.u: void c(int) +com.amap.api.location.AMapLocation: boolean isMock() +androidx.appcompat.R$id: int action_bar +android.didikee.donate.R$style: int Theme_AppCompat_Light_DialogWhenLarge +com.tencent.bugly.proguard.x: boolean a(java.lang.String,java.lang.Object[]) +com.google.android.material.R$id: int pathRelative +okhttp3.OkHttpClient$1: void setCache(okhttp3.OkHttpClient$Builder,okhttp3.internal.cache.InternalCache) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_iconTintMode +okhttp3.internal.tls.DistinguishedNameParser: DistinguishedNameParser(javax.security.auth.x500.X500Principal) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: int getWindColor(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getLatitude() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar_Small +androidx.viewpager2.R$id: int tag_unhandled_key_event_manager +james.adaptiveicon.R$styleable: int AppCompatTextView_fontVariationSettings +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_right_mtrl_light +okhttp3.CacheControl: int maxStaleSeconds() +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_trendRecyclerView +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_ttcIndex +cyanogenmod.externalviews.KeyguardExternalView$3: android.graphics.Rect val$clipRect +com.google.android.material.R$id: int alertTitle +androidx.viewpager2.R$styleable: int RecyclerView_android_clipToPadding +wangdaye.com.geometricweather.R$attr: int seekBarIncrement +com.google.android.material.R$id: int line3 +androidx.constraintlayout.widget.R$dimen: int notification_action_icon_size +android.didikee.donate.R$styleable: int AppCompatTextView_drawableTopCompat +com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrimColor(int) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_DES_CBC_SHA +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_transformPivotY +androidx.viewpager.R$styleable: int[] GradientColorItem +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onSearchRequested(android.view.SearchEvent) +okhttp3.HttpUrl: java.lang.String percentDecode(java.lang.String,boolean) +androidx.appcompat.widget.SwitchCompat: void setTextOff(java.lang.CharSequence) +com.amap.api.location.DPoint: void writeToParcel(android.os.Parcel,int) +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_legacy_text_color_selector +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_buttonGravity +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: void unregister(android.content.Context) +androidx.loader.R$drawable: R$drawable() +com.tencent.bugly.proguard.y$a: long b(com.tencent.bugly.proguard.y$a) +com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.BuglyStrategy$a g +androidx.appcompat.widget.ActivityChooserView: void setProvider(androidx.core.view.ActionProvider) +james.adaptiveicon.R$style: int Theme_AppCompat_Light_NoActionBar +wangdaye.com.geometricweather.R$color: int colorTextLight2nd +androidx.preference.R$styleable: int ViewBackgroundHelper_backgroundTint +wangdaye.com.geometricweather.R$color: int checkbox_themeable_attribute_color +com.google.android.material.textfield.TextInputLayout: com.google.android.material.shape.MaterialShapeDrawable getBoxBackground() +com.jaredrummler.android.colorpicker.R$attr: int title +com.tencent.bugly.crashreport.crash.h5.a: java.lang.String a +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation TOP +com.google.android.material.R$dimen: int mtrl_snackbar_padding_horizontal +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object[] toArray() +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_splitTrack +cyanogenmod.externalviews.ExternalViewProviderService$1$1: cyanogenmod.externalviews.ExternalViewProviderService$1 this$1 +cyanogenmod.content.Intent: java.lang.String ACTION_PROTECTED_CHANGED +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_divider +androidx.transition.R$dimen: int notification_big_circle_margin +com.bumptech.glide.integration.okhttp.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String insee +okhttp3.CertificatePinner: java.lang.String pin(java.security.cert.Certificate) +com.google.android.material.snackbar.BaseTransientBottomBar$Behavior +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Dialog_Bridge +android.didikee.donate.R$style: int Widget_AppCompat_ListMenuView +com.google.android.material.R$styleable: int ActivityChooserView_initialActivityCount +wangdaye.com.geometricweather.R$id: int item_alert_title +android.didikee.donate.R$id: int titleDividerNoCustom +com.google.android.material.R$styleable: int MenuItem_actionProviderClass +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_progressBarStyle +retrofit2.ParameterHandler$Path: java.lang.String name +okio.RealBufferedSource$1 +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCountry +androidx.work.BackoffPolicy: androidx.work.BackoffPolicy[] values() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial Imperial +okhttp3.WebSocketListener +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void removeEmptyNativeRecordFiles() +wangdaye.com.geometricweather.R$drawable: int abc_ic_go_search_api_material +james.adaptiveicon.R$id: int add +cyanogenmod.externalviews.ExternalView$4: ExternalView$4(cyanogenmod.externalviews.ExternalView) +james.adaptiveicon.R$styleable: int ActionBar_background +androidx.multidex.MultiDexExtractor$ExtractedDex: long crc +com.jaredrummler.android.colorpicker.R$id: int search_mag_icon +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearancePopupMenuHeader +com.tencent.bugly.crashreport.CrashReport$UserStrategy: com.tencent.bugly.crashreport.CrashReport$CrashHandleCallback a +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean getPressure() +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int getO3Color(android.content.Context) +androidx.lifecycle.ProcessLifecycleOwnerInitializer: android.net.Uri insert(android.net.Uri,android.content.ContentValues) +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +wangdaye.com.geometricweather.R$attr: int drawableRightCompat +wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_in_lockScreen +wangdaye.com.geometricweather.R$style: int Preference_SwitchPreference +com.google.android.material.R$styleable: int[] TextInputEditText +okio.Buffer$2: java.lang.String toString() +androidx.activity.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_normal +com.google.android.material.navigation.NavigationView: void setItemMaxLines(int) +wangdaye.com.geometricweather.R$drawable: int ic_tag_plus +cyanogenmod.weather.CMWeatherManager: int requestWeatherUpdate(android.location.Location,cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener) +androidx.vectordrawable.R$color: int notification_icon_bg_color +androidx.fragment.R$id: int accessibility_custom_action_24 +androidx.recyclerview.R$styleable: int FontFamilyFont_fontWeight +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintDimensionRatio +androidx.preference.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +com.bumptech.glide.R$dimen: int notification_large_icon_width +cyanogenmod.app.CustomTile$ExpandedItem$1: java.lang.Object createFromParcel(android.os.Parcel) +com.xw.repo.bubbleseekbar.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.R$layout: int abc_screen_toolbar +retrofit2.converter.gson.GsonConverterFactory: com.google.gson.Gson gson +okhttp3.internal.cache.DiskLruCache: void readJournal() +retrofit2.ParameterHandler$Path: retrofit2.Converter valueConverter +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setNestedScrollingEnabled(boolean) +com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +android.didikee.donate.R$color: int foreground_material_dark +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startX +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getCityId() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toLeftOf +androidx.constraintlayout.widget.R$attr: int drawPath +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_checkbox +wangdaye.com.geometricweather.R$dimen: int material_clock_hand_center_dot_radius +io.reactivex.exceptions.ProtocolViolationException: ProtocolViolationException(java.lang.String) +okhttp3.internal.http2.Http2Connection$4: void execute() +androidx.constraintlayout.widget.R$layout: int custom_dialog +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSo2() +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State CREATED +okhttp3.internal.http2.Http2: okio.ByteString CONNECTION_PREFACE +wangdaye.com.geometricweather.R$dimen: int widget_content_text_size +wangdaye.com.geometricweather.R$attr: int layout_constraintCircle +okhttp3.internal.http1.Http1Codec$ChunkedSink: void close() +com.google.android.material.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_seekBarStyle +androidx.preference.R$color: int button_material_light +okio.ForwardingSink: okio.Sink delegate() +cyanogenmod.hardware.CMHardwareManager: boolean setDisplayColorCalibration(int[]) +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +cyanogenmod.app.Profile$Type: int CONDITIONAL +com.xw.repo.bubbleseekbar.R$attr: int logo +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_2G3G +cyanogenmod.externalviews.ExternalView$1: void onServiceConnected(android.content.ComponentName,android.os.IBinder) +com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_Primary +com.jaredrummler.android.colorpicker.R$attr: int numericModifiers +com.xw.repo.bubbleseekbar.R$attr: int homeAsUpIndicator +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onComplete() +okhttp3.ResponseBody: java.io.Reader reader +wangdaye.com.geometricweather.R$id: int uniform +com.google.android.material.R$styleable: int[] BottomNavigationView +wangdaye.com.geometricweather.R$styleable: int KeyPosition_curveFit +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgress(float) +com.tencent.bugly.proguard.u: com.tencent.bugly.proguard.u a(android.content.Context) +com.tencent.bugly.proguard.i: java.lang.Object[] a(java.lang.Object[],int,boolean) wangdaye.com.geometricweather.R$attr: int queryHint -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -okhttp3.internal.http2.ErrorCode: ErrorCode(java.lang.String,int,int) -androidx.constraintlayout.widget.R$string -wangdaye.com.geometricweather.R$xml: int icon_provider_animator_filter -james.adaptiveicon.R$attr: int paddingEnd -okhttp3.internal.connection.StreamAllocation: java.net.Socket releaseAndAcquire(okhttp3.internal.connection.RealConnection) -com.google.android.material.R$layout: int abc_alert_dialog_title_material -com.tencent.bugly.crashreport.crash.anr.b: android.content.Context c -androidx.cardview.R$styleable: int CardView_cardCornerRadius -com.tencent.bugly.proguard.d: void c(java.lang.String) -androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Info -wangdaye.com.geometricweather.R$style: int Base_V22_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay -wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_allowPresets -androidx.constraintlayout.widget.R$attr: int contentInsetLeft -cyanogenmod.app.ICMTelephonyManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -wangdaye.com.geometricweather.R$drawable: int abc_tab_indicator_mtrl_alpha -com.tencent.bugly.proguard.ap: java.util.Map n -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: void setUnit(java.lang.String) -androidx.preference.R$drawable: int abc_tab_indicator_material -com.google.android.material.R$styleable: int RangeSlider_values -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_button_material -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_checked -wangdaye.com.geometricweather.R$id: int progress_horizontal -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode[] $VALUES -android.didikee.donate.R$attr: int title -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit valueOf(java.lang.String) -androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$id: int container_main_header_weatherTxt -androidx.lifecycle.extensions.R$id: int tag_accessibility_heading -com.tencent.bugly.proguard.al: java.util.ArrayList b -com.google.android.material.R$styleable: int OnSwipe_dragDirection -androidx.fragment.app.FragmentContainerView: void setLayoutTransition(android.animation.LayoutTransition) -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_item_header -androidx.preference.R$dimen: int notification_big_circle_margin -com.bumptech.glide.Priority: com.bumptech.glide.Priority[] values() -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconTint -com.xw.repo.bubbleseekbar.R$styleable: int[] PopupWindow -com.google.android.material.R$styleable: int MaterialCardView_strokeWidth -okio.Utf8: long size(java.lang.String,int,int) -okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder immutable() -okhttp3.OkHttpClient$Builder: okhttp3.CookieJar cookieJar -android.didikee.donate.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -androidx.preference.R$styleable: int[] PopupWindowBackgroundState -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_PORTRAIT -wangdaye.com.geometricweather.R$styleable: int SlidingItemContainerLayout_backgroundColorEnd -wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_bias -com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_small_material -androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -com.bumptech.glide.integration.okhttp.R$color -wangdaye.com.geometricweather.common.ui.widgets.DonateImageView -androidx.preference.R$attr: int switchTextAppearance -android.didikee.donate.R$attr: int alertDialogButtonGroupStyle -wangdaye.com.geometricweather.R$dimen: int hint_alpha_material_light -androidx.core.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_TabLayoutTheme -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_percent -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_toBottomOf -androidx.swiperefreshlayout.R$id: int line3 -androidx.work.InputMerger: InputMerger() -androidx.appcompat.app.AppCompatActivity: AppCompatActivity() -com.turingtechnologies.materialscrollbar.R$attr: int listItemLayout -androidx.preference.R$id: int chronometer -com.google.android.material.R$drawable: int test_custom_background -com.jaredrummler.android.colorpicker.R$styleable: R$styleable() -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: int TRANSACTION_setServiceRequestState -androidx.appcompat.R$styleable: int AppCompatTheme_windowActionBarOverlay -wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_android_thumb -com.baidu.location.e.h$c: com.baidu.location.e.h$c c -androidx.hilt.lifecycle.R$id: int text -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Dbz -wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_corner_radius_small -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: void run() -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_color +wangdaye.com.geometricweather.R$color: int dim_foreground_material_light +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Title +okhttp3.ConnectionSpec: ConnectionSpec(okhttp3.ConnectionSpec$Builder) +com.google.android.material.R$attr: int listChoiceIndicatorMultipleAnimated +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: java.lang.String[] population +wangdaye.com.geometricweather.R$string: int content_des_so2 +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.util.concurrent.Callable other +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float ice +com.amap.api.location.AMapLocation: java.lang.String toStr(int) +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +androidx.preference.R$drawable: int abc_item_background_holo_dark +cyanogenmod.app.Profile$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.preference.R$styleable: int AppCompatTheme_actionBarTabTextStyle +com.tencent.bugly.proguard.am: java.lang.String b +androidx.cardview.R$style: int CardView_Dark +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: IRequestInfoListener$Stub$Proxy(android.os.IBinder) +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_horizontalDivider +okio.ByteString: java.nio.ByteBuffer asByteBuffer() +com.google.android.material.R$styleable: int MenuView_subMenuArrow +android.didikee.donate.R$layout: int abc_alert_dialog_material +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol valueOf(java.lang.String) +com.google.android.material.R$styleable: int SnackbarLayout_backgroundTint +wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_container +io.reactivex.internal.util.VolatileSizeArrayList: int hashCode() +okhttp3.internal.http2.Http2Codec: java.lang.String KEEP_ALIVE +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_DropDown +wangdaye.com.geometricweather.weather.apis.CaiYunApi +retrofit2.adapter.rxjava2.CallExecuteObservable +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_animationMode +okhttp3.FormBody: void writeTo(okio.BufferedSink) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setAlertId(java.lang.String) +cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mOnClick +com.bumptech.glide.R$dimen: int compat_control_corner_material +com.google.android.gms.base.R$id: int icon_only +androidx.coordinatorlayout.R$id: int text +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxBackgroundColor +com.google.android.material.R$attr: int actionModePasteDrawable +okhttp3.internal.http1.Http1Codec: int STATE_WRITING_REQUEST_BODY +com.google.android.gms.common.internal.ReflectedParcelable +james.adaptiveicon.R$styleable: int SearchView_voiceIcon +androidx.appcompat.R$styleable: int Toolbar_collapseIcon +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogTitle +james.adaptiveicon.R$style: int Widget_AppCompat_ListMenuView +androidx.work.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.R$styleable: int Transform_android_elevation +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +androidx.customview.R$drawable: int notification_template_icon_low_bg +cyanogenmod.app.Profile: cyanogenmod.profiles.RingModeSettings getRingMode() +wangdaye.com.geometricweather.R$attr: int listChoiceIndicatorSingleAnimated +wangdaye.com.geometricweather.R$styleable: int ActionBar_popupTheme +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber +wangdaye.com.geometricweather.R$attr: int viewInflaterClass +james.adaptiveicon.R$styleable: int SwitchCompat_android_thumb +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_ttcIndex +android.didikee.donate.R$dimen: int abc_action_bar_default_height_material +androidx.constraintlayout.widget.R$attr: int constraintSet +wangdaye.com.geometricweather.R$attr: int flow_verticalAlign +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List getMinutelyEntityList() +okhttp3.CacheControl$Builder: boolean noCache +androidx.constraintlayout.widget.R$id: int unchecked +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String NAME_EQ_PLACEHOLDER +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_max_width +cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getProfile(java.util.UUID) +cyanogenmod.externalviews.IExternalViewProvider +wangdaye.com.geometricweather.R$styleable: int Chip_chipIcon +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderPackage +com.jaredrummler.android.colorpicker.R$attr: int arrowShaftLength +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setShrinkMotionSpecResource(int) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex inTwoDays +android.didikee.donate.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_Alert +androidx.appcompat.widget.SwitchCompat: void setSplitTrack(boolean) +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: boolean inputExhausted +okhttp3.internal.http2.Http2Connection: Http2Connection(okhttp3.internal.http2.Http2Connection$Builder) +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +androidx.preference.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +androidx.appcompat.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setStatus(int) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: android.os.IBinder asBinder() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Tooltip +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: int UnitType +androidx.coordinatorlayout.R$attr: int fontProviderCerts +android.didikee.donate.R$styleable: int TextAppearance_android_shadowColor +cyanogenmod.app.CustomTile$ExpandedStyle$1: java.lang.Object createFromParcel(android.os.Parcel) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean done +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconTint +retrofit2.ServiceMethod: retrofit2.ServiceMethod parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method) +androidx.appcompat.R$styleable: int AppCompatTheme_selectableItemBackground +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation +wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_2 +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_LABEL +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed: AccuCurrentResult$WindGust$Speed() +wangdaye.com.geometricweather.R$attr: int dialogCornerRadius +okhttp3.internal.ws.WebSocketProtocol: int CLOSE_NO_STATUS_CODE +okio.Buffer: long completeSegmentByteCount() +androidx.preference.R$styleable: int Preference_order +androidx.constraintlayout.widget.R$style: int Widget_Compat_NotificationActionContainer +com.google.android.material.R$styleable: int Constraint_android_layout_marginEnd +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_elevation +wangdaye.com.geometricweather.R$id: int container_main_header_tempTxt +cyanogenmod.themes.IThemeChangeListener$Stub: java.lang.String DESCRIPTOR +cyanogenmod.os.Build$CM_VERSION: Build$CM_VERSION() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +androidx.appcompat.widget.ActionBarContextView: void setTitle(java.lang.CharSequence) +com.turingtechnologies.materialscrollbar.R$attr: int fontProviderPackage +androidx.coordinatorlayout.R$layout: int notification_action +wangdaye.com.geometricweather.R$layout: int container_main_first_card_header +androidx.appcompat.R$color: int button_material_light +androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchAnchorId +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void dispose() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer windDirection +io.reactivex.internal.util.EmptyComponent: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_android_enabled +com.google.android.material.R$attr: int fontVariationSettings +androidx.preference.R$id: int tag_screen_reader_focusable +androidx.recyclerview.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_weather +com.xw.repo.bubbleseekbar.R$attr: int autoSizeStepGranularity +com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_overlapAnchor +com.google.android.material.button.MaterialButton: void setShouldDrawSurfaceColorStroke(boolean) +wangdaye.com.geometricweather.R$drawable: int notif_temp_96 +cyanogenmod.providers.CMSettings$Global: CMSettings$Global() +androidx.appcompat.view.menu.ListMenuItemView: void setGroupDividerEnabled(boolean) +wangdaye.com.geometricweather.R$attr: int showMotionSpec +okhttp3.Address: javax.net.ssl.HostnameVerifier hostnameVerifier +androidx.preference.R$styleable: int SearchView_searchIcon +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cpb +androidx.appcompat.R$id: int search_button +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_CBC_SHA256 +io.reactivex.Observable: io.reactivex.Observable window(long,long) +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode CLOUDY +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: int requestFusion(int) +androidx.constraintlayout.widget.R$dimen: int abc_dialog_corner_radius_material +wangdaye.com.geometricweather.R$drawable: int notif_temp_104 +androidx.preference.R$id: int accessibility_action_clickable_span +okhttp3.HttpUrl: java.lang.String query() +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason[] values() +cyanogenmod.weatherservice.IWeatherProviderService$Stub: IWeatherProviderService$Stub() +com.turingtechnologies.materialscrollbar.R$attr: int checkedIconEnabled +com.bumptech.glide.R$id: int left +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getChina() +wangdaye.com.geometricweather.R$attr: int indicatorColor +com.google.android.material.R$id: int textSpacerNoTitle +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TabLayout +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat +androidx.lifecycle.SavedStateHandle: SavedStateHandle(java.util.Map) +androidx.constraintlayout.widget.R$style: int Base_V28_Theme_AppCompat_Light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: CaiYunMainlyResult$AlertsBean$ImagesBean() +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: long serialVersionUID +com.google.android.material.R$dimen: int mtrl_shape_corner_size_medium_component +com.xw.repo.bubbleseekbar.R$id: int edit_query +james.adaptiveicon.R$style: int Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.R$attr: int tabMinWidth +com.google.android.material.R$dimen: int abc_edit_text_inset_top_material +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_8 +androidx.appcompat.resources.R$id: int action_divider +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor getInstance(java.lang.String) +androidx.recyclerview.R$style: int Widget_Compat_NotificationActionContainer +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +cyanogenmod.providers.CMSettings$System: java.lang.String APP_SWITCH_WAKE_SCREEN +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date to +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +okhttp3.internal.connection.RouteSelector: java.util.List postponedRoutes +okhttp3.Challenge: java.util.Map authParams +androidx.appcompat.R$attr: int splitTrack +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTint +okhttp3.Response: java.util.List challenges() +io.reactivex.Observable: io.reactivex.Observable doOnTerminate(io.reactivex.functions.Action) +wangdaye.com.geometricweather.R$attr: int customStringValue +okhttp3.FormBody$Builder +okhttp3.TlsVersion: okhttp3.TlsVersion[] values() +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent UNKNOWN +cyanogenmod.app.ThemeVersion$ComponentVersion: int minVersion +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit KPH +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getUvLevel() +com.google.android.material.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets +com.google.android.material.R$styleable: int TextInputLayout_boxStrokeWidth +wangdaye.com.geometricweather.R$string: int feedback_search_nothing +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService pushExecutor +com.google.android.material.R$styleable: int TabLayout_tabIconTint +com.google.android.material.R$styleable: int AppCompatTextView_drawableRightCompat +com.google.android.material.R$styleable: int Layout_barrierMargin +android.didikee.donate.R$color: int foreground_material_light +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetStart +androidx.appcompat.R$styleable: int[] ActionBarLayout +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColorHint +wangdaye.com.geometricweather.R$font: int product_sans_black +cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet,int,int) +com.google.android.material.chip.Chip: void setCloseIconTint(android.content.res.ColorStateList) +com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorType() +okhttp3.RequestBody$2: int val$byteCount +androidx.preference.R$style: int Widget_AppCompat_ActionButton_Overflow +androidx.coordinatorlayout.R$styleable: int[] CoordinatorLayout +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_commitIcon +com.google.android.material.R$dimen: int design_bottom_navigation_elevation +wangdaye.com.geometricweather.R$layout: int dialog_providers_previewer +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: boolean isEmpty() +androidx.constraintlayout.widget.R$attr: int layout_constraintStart_toEndOf +androidx.lifecycle.extensions.R$styleable: int[] Fragment +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: int rightIndex +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWeatherSource() +com.tencent.bugly.proguard.am: long q +androidx.preference.R$styleable: int AppCompatTheme_panelMenuListTheme +androidx.appcompat.widget.ActionBarOverlayLayout: void setActionBarHideOffset(int) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconVisible +wangdaye.com.geometricweather.R$string: int feedback_resident_location_description +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerError(io.reactivex.internal.observers.InnerQueuedObserver,java.lang.Throwable) +androidx.appcompat.resources.R$id: int accessibility_custom_action_3 +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintDimensionRatio +androidx.constraintlayout.widget.R$styleable: int KeyPosition_transitionEasing +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: java.lang.String ShortPhrase +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String insee +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_9 +james.adaptiveicon.R$attr: int windowFixedWidthMinor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial() +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_expanded +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: float unitFactor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintGuide_end +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String TARGET_API +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) +wangdaye.com.geometricweather.R$attr: int negativeButtonText +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.tencent.bugly.proguard.h +androidx.viewpager2.R$attr: int fontProviderPackage +androidx.preference.R$id: int normal +androidx.appcompat.R$attr: int contentInsetLeft +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutely +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Line2 +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type getRawType() +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_android_thumb +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat +com.google.android.material.R$id: int NO_DEBUG +androidx.recyclerview.R$dimen: int notification_large_icon_width +cyanogenmod.externalviews.KeyguardExternalView +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.Long getId() +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +cyanogenmod.providers.CMSettings$InclusiveIntegerRangeValidator: int mMin +retrofit2.RequestFactory$Builder: boolean gotBody +android.didikee.donate.R$styleable: int MenuItem_android_titleCondensed +com.tencent.bugly.crashreport.common.info.b: boolean t() +com.google.android.material.textfield.TextInputLayout: void setError(java.lang.CharSequence) +cyanogenmod.profiles.LockSettings$1: LockSettings$1() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao +com.google.android.material.R$attr: int singleChoiceItemLayout +com.google.android.gms.common.api.UnsupportedApiCallException: UnsupportedApiCallException(com.google.android.gms.common.Feature) +wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundODialog +com.google.android.material.chip.Chip: void setCloseIconTintResource(int) +io.reactivex.exceptions.CompositeException: java.lang.String message +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.disposables.Disposable upstream +androidx.transition.R$attr: int fontProviderFetchTimeout +androidx.preference.R$attr: int actionBarTabStyle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarPopupTheme +androidx.hilt.lifecycle.R$anim: int fragment_open_enter +wangdaye.com.geometricweather.R$styleable: int Layout_barrierAllowsGoneWidgets +io.reactivex.internal.operators.observable.ObservableReplay$Node +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void a(boolean) +com.google.android.material.R$dimen: int design_fab_image_size +okio.Base64: byte[] MAP +androidx.appcompat.R$styleable: int SearchView_closeIcon +okhttp3.WebSocketListener: void onClosing(okhttp3.WebSocket,int,java.lang.String) +androidx.appcompat.widget.AppCompatEditText: android.content.res.ColorStateList getSupportBackgroundTintList() +wangdaye.com.geometricweather.R$attr: int indicatorCornerRadius +androidx.loader.R$id: int action_container +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: java.lang.String English +androidx.appcompat.R$id: int title_template +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display1 +androidx.preference.R$style: int Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_atd +androidx.fragment.R$styleable: int[] FragmentContainerView +james.adaptiveicon.R$dimen: int abc_text_size_caption_material +com.turingtechnologies.materialscrollbar.R$color: int abc_background_cache_hint_selector_material_dark +androidx.loader.R$dimen: int notification_subtext_size +androidx.appcompat.widget.AppCompatCheckBox: AppCompatCheckBox(android.content.Context,android.util.AttributeSet,int) +io.reactivex.Observable: io.reactivex.Observable cast(java.lang.Class) +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_queryBackground +io.reactivex.internal.disposables.CancellableDisposable: boolean isDisposed() +cyanogenmod.app.StatusBarPanelCustomTile$1 +io.reactivex.internal.subscriptions.SubscriptionArbiter: void cancel() +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: java.lang.String unitId +wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_colored_item_tint +okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV3 +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean delayErrors +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level[] $VALUES +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean getHumidity() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String getUpdateIntervalName(android.content.Context) +wangdaye.com.geometricweather.R$id: int widget_day_title +wangdaye.com.geometricweather.R$drawable: int btn_radio_on_to_off_mtrl_animation +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastHorizontalBias +cyanogenmod.os.Build$CM_VERSION_CODES: int ELDERBERRY +com.xw.repo.bubbleseekbar.R$attr: int bsb_show_progress_in_float +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_ALLERGEN +androidx.viewpager.widget.ViewPager: void setOffscreenPageLimit(int) +androidx.appcompat.R$styleable: int SwitchCompat_thumbTintMode +io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +android.didikee.donate.R$styleable: int MenuItem_android_orderInCategory +wangdaye.com.geometricweather.R$layout: int design_text_input_start_icon +io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource) +androidx.preference.ListPreference$SavedState +androidx.preference.R$layout: int select_dialog_multichoice_material +cyanogenmod.providers.CMSettings$Global: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) +com.bumptech.glide.integration.okhttp.R$id: int icon_group +com.jaredrummler.android.colorpicker.R$string: int abc_menu_space_shortcut_label +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours +wangdaye.com.geometricweather.R$attr: int hintEnabled +com.google.android.material.R$styleable: int FlowLayout_itemSpacing +androidx.viewpager2.R$attr: int alpha +androidx.viewpager2.R$dimen: int compat_button_inset_horizontal_material +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode fromHttp2(int) +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSteps +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionButton +james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_EditText +androidx.preference.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +com.google.android.material.R$styleable: int AppCompatTheme_actionBarPopupTheme +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_optimizationLevel +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_windowAnimationStyle +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_shapeAppearanceOverlay +wangdaye.com.geometricweather.R$dimen: int normal_margin +wangdaye.com.geometricweather.R$styleable: int DrawerLayout_unfold +wangdaye.com.geometricweather.R$drawable: int notif_temp_120 +james.adaptiveicon.R$id: int text2 +androidx.appcompat.resources.R$dimen: int compat_button_padding_horizontal_material +androidx.preference.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyTitle +androidx.recyclerview.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$string: int content_desc_search_filter_off +androidx.vectordrawable.R$layout: int notification_template_icon_group +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowRadius +okhttp3.internal.http2.Huffman$Node: Huffman$Node() +androidx.recyclerview.R$layout: int notification_template_custom_big +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ProgressBar +androidx.constraintlayout.widget.R$styleable: int[] ActionBarLayout +androidx.appcompat.widget.SwitchCompat: int getThumbOffset() +wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_ripple_color +android.didikee.donate.R$style: int Widget_AppCompat_ActionBar_TabBar +androidx.customview.R$attr: int fontStyle +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_meta_shortcut_label +androidx.constraintlayout.widget.R$attr: int transitionEasing +com.tencent.bugly.Bugly: java.lang.String SDK_IS_DEV +io.reactivex.internal.schedulers.ScheduledDirectTask: ScheduledDirectTask(java.lang.Runnable) +androidx.constraintlayout.widget.R$styleable: int Transition_transitionFlags +com.google.android.material.slider.RangeSlider: int getLabelBehavior() +com.google.android.material.R$dimen: int mtrl_slider_label_padding +androidx.lifecycle.ProcessLifecycleOwner$3: androidx.lifecycle.ProcessLifecycleOwner this$0 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer aqiIndex +wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitleIconStyle +androidx.fragment.R$id: int accessibility_custom_action_8 +androidx.preference.R$styleable: int[] CoordinatorLayout +okhttp3.internal.http2.Http2Stream: okio.Timeout readTimeout() +android.didikee.donate.R$styleable: int DrawerArrowToggle_spinBars +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginRight +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult +retrofit2.CallAdapter: java.lang.reflect.Type responseType() +cyanogenmod.weatherservice.IWeatherProviderService: void cancelRequest(int) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_lineHeight +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutSelectorSupport parent +wangdaye.com.geometricweather.R$styleable: int[] KeyFramesVelocity +androidx.appcompat.widget.ViewStubCompat: void setLayoutInflater(android.view.LayoutInflater) +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String d +wangdaye.com.geometricweather.R$string: int common_google_play_services_install_button +com.xw.repo.bubbleseekbar.R$attr: int titleTextColor +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarTitle +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver observer +androidx.transition.R$string +androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +androidx.constraintlayout.widget.R$styleable: int Constraint_drawPath +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDataConnectionSelectedOnSub(int) +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: okhttp3.internal.http2.Http2Stream val$newStream +james.adaptiveicon.R$drawable: int abc_btn_check_to_on_mtrl_015 +okhttp3.Cache: int hitCount() +cyanogenmod.util.ColorUtils: com.android.internal.util.cm.palette.Palette$Swatch getDominantSwatch(com.android.internal.util.cm.palette.Palette) +com.google.android.material.circularreveal.CircularRevealFrameLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +androidx.appcompat.R$style: int Widget_AppCompat_Button_Borderless +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_creator +com.google.android.material.R$styleable: int Toolbar_titleTextAppearance +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree +wangdaye.com.geometricweather.R$string: int common_google_play_services_enable_text +cyanogenmod.weather.WeatherLocation$1: java.lang.Object[] newArray(int) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription +androidx.appcompat.R$styleable: int Toolbar_titleTextAppearance +androidx.lifecycle.MutableLiveData: MutableLiveData() +james.adaptiveicon.R$bool: int abc_config_actionMenuItemAllCaps +wangdaye.com.geometricweather.R$dimen: int notification_action_text_size +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_4_material +io.reactivex.exceptions.CompositeException: java.lang.Throwable getRootCause(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String to +androidx.appcompat.R$anim: int abc_tooltip_exit +com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String h(android.content.Context) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Wind +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_getCurrentLiveLockScreen +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionBar +androidx.hilt.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRainPrecipitation() +androidx.work.R$id: int accessibility_custom_action_28 +androidx.preference.R$styleable: int SeekBarPreference_showSeekBarValue +cyanogenmod.app.Profile: void setProfileType(int) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixText +com.google.android.material.R$attr: int colorSwitchThumbNormal +androidx.lifecycle.MediatorLiveData: MediatorLiveData() +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.Integer index +androidx.appcompat.resources.R$id: int time +okhttp3.internal.http2.Settings +androidx.appcompat.R$attr: int actionModeFindDrawable +androidx.preference.R$id: int end +androidx.appcompat.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +androidx.appcompat.resources.R$dimen: int notification_subtext_size +com.google.android.material.R$attr: int selectableItemBackground +com.google.android.material.R$style: int Theme_Design +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +wangdaye.com.geometricweather.R$id: int src_in +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection connection +com.google.gson.FieldNamingPolicy$3: FieldNamingPolicy$3(java.lang.String,int) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.internal.util.AtomicThrowable errors +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +androidx.coordinatorlayout.R$styleable: int[] GradientColorItem +com.tencent.bugly.crashreport.crash.CrashDetailBean: int t +com.google.android.material.R$style: int Base_V28_Theme_AppCompat_Light +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.util.concurrent.atomic.AtomicReference current +androidx.viewpager.R$layout: int notification_action +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String VIBRATE +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnLayoutChangeListener(com.google.android.material.snackbar.BaseTransientBottomBar$OnLayoutChangeListener) +com.tencent.bugly.crashreport.CrashReport$WebViewInterface +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_AUTO_OUTDOOR_MODE +wangdaye.com.geometricweather.R$id: int notification_background +androidx.preference.R$attr: int isPreferenceVisible +com.jaredrummler.android.colorpicker.R$dimen: R$dimen() +cyanogenmod.providers.CMSettings$System: java.lang.String REVERSE_LOOKUP_PROVIDER +io.reactivex.internal.observers.InnerQueuedObserver +android.support.v4.app.INotificationSideChannel$Default: void cancel(java.lang.String,int,java.lang.String) +com.xw.repo.bubbleseekbar.R$attr: int fontWeight +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.viewpager2.R$styleable: int FontFamily_fontProviderFetchStrategy +com.jaredrummler.android.colorpicker.R$attr: int autoSizeTextType +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String MINUTES +androidx.preference.R$styleable: int TextAppearance_android_textColorLink +wangdaye.com.geometricweather.R$styleable: int Variant_region_heightLessThan +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: HistoryEntityDao(org.greenrobot.greendao.internal.DaoConfig) +wangdaye.com.geometricweather.R$layout: int mtrl_picker_text_input_date +okhttp3.HttpUrl: java.lang.String queryParameterName(int) +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.R$attr: int useCompatPadding +androidx.fragment.R$dimen: int compat_notification_large_icon_max_width +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline2 +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_large_material +com.google.android.material.R$styleable: int Chip_android_text +okhttp3.internal.cache.DiskLruCache$Editor$1 +androidx.appcompat.R$id: int accessibility_custom_action_4 +okhttp3.HttpUrl: java.lang.String url +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: void run() +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable +android.didikee.donate.R$attr: int actionBarSplitStyle +cyanogenmod.app.BaseLiveLockManagerService: void enforcePrivateAccessPermission() +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_unregisterWeatherServiceProviderChangeListener +wangdaye.com.geometricweather.R$id: int ignore +androidx.fragment.app.BackStackState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_corner_radius_medium +okio.Buffer: okio.Buffer readFrom(java.io.InputStream,long) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX speed +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_overflow_material +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_LED_ON +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Alert +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource ACCU +wangdaye.com.geometricweather.R$attr: int preferenceFragmentListStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: int UnitType +wangdaye.com.geometricweather.R$color: int test_mtrl_calendar_day_selected +androidx.preference.R$dimen: int abc_text_size_title_material_toolbar +okhttp3.internal.ws.RealWebSocket: boolean enqueuedClose +android.didikee.donate.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +com.google.android.gms.location.LocationAvailability: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setLatitude(java.lang.String) +com.xw.repo.bubbleseekbar.R$id: int uniform +com.google.android.material.R$id: int mtrl_picker_title_text +androidx.hilt.lifecycle.R$id: int notification_main_column +com.turingtechnologies.materialscrollbar.R$attr: int tintMode +okio.RealBufferedSink: okio.BufferedSink writeDecimalLong(long) +okio.AsyncTimeout: long IDLE_TIMEOUT_NANOS +androidx.constraintlayout.widget.R$styleable: int MenuView_android_horizontalDivider +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_PopupWindow +com.jaredrummler.android.colorpicker.R$string: int summary_collapsed_preference_list +com.google.android.material.R$layout: int test_action_chip +wangdaye.com.geometricweather.R$layout: int notification_template_part_chronometer +com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean i +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: AccuCurrentResult$Wind$Direction() +com.google.android.material.R$attr: int materialCircleRadius +androidx.constraintlayout.widget.R$styleable: int[] ConstraintLayout_placeholder +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec MODERN_TLS +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Type +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPressure() +androidx.constraintlayout.widget.R$color: int switch_thumb_disabled_material_dark +io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.observers.InnerQueuedObserverSupport parent +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtendMotionSpec(com.google.android.material.animation.MotionSpec) +com.tencent.bugly.crashreport.crash.c: void j() +androidx.coordinatorlayout.R$id: int accessibility_custom_action_21 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarPopupTheme +com.tencent.bugly.proguard.v: v(android.content.Context,int,int,byte[],java.lang.String,java.lang.String,com.tencent.bugly.proguard.t,boolean,int,int,boolean,java.util.Map) +com.google.android.material.R$attr: int actionModeSplitBackground +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean point +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitation +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node root +wangdaye.com.geometricweather.R$id: int activity_weather_daily_indicator +androidx.work.NetworkType: androidx.work.NetworkType valueOf(java.lang.String) +com.google.android.material.R$id: int clear_text +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean delayError +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: MfForecastV2Result$ForecastProperties() +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder setQueryParameter(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitation +androidx.appcompat.R$attr: int ratingBarStyleSmall +wangdaye.com.geometricweather.R$styleable: int MaterialButton_elevation +wangdaye.com.geometricweather.R$styleable: int MenuView_android_verticalDivider +io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function,boolean,int) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void subscribe(io.reactivex.ObservableSource[],int) +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: ObservableSequenceEqualSingle$EqualCoordinator(io.reactivex.SingleObserver,int,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackInactiveTintList() +okhttp3.RealCall: okhttp3.OkHttpClient client +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void attachEntity(wangdaye.com.geometricweather.db.entities.WeatherEntity) +androidx.preference.R$attr: int imageButtonStyle +androidx.core.R$drawable: int notification_action_background +cyanogenmod.providers.CMSettings$System: boolean shouldInterceptSystemProvider(java.lang.String) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$string: int email +androidx.swiperefreshlayout.R$id: int right_side +androidx.preference.R$attr: int ratingBarStyleSmall +com.bumptech.glide.integration.okhttp.R$drawable: int notification_template_icon_bg +com.google.android.material.R$color: int abc_secondary_text_material_light +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setNo2(java.lang.Float) +androidx.appcompat.widget.AppCompatImageView: void setImageURI(android.net.Uri) +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_id +wangdaye.com.geometricweather.R$string: int help +com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context,android.util.AttributeSet,int) +android.didikee.donate.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_inset_horizontal_material +io.reactivex.Observable: java.lang.Object blockingLast() +okhttp3.internal.http2.Http2Connection: int INTERVAL_PING +androidx.recyclerview.R$layout: int notification_template_icon_group +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Small +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object[] toArray(java.lang.Object[]) +com.jaredrummler.android.colorpicker.R$attr: int showDividers +okhttp3.internal.http2.PushObserver: boolean onHeaders(int,java.util.List,boolean) +retrofit2.http.PUT +androidx.viewpager.R$string: R$string() +androidx.preference.R$styleable: int Toolbar_navigationIcon +okhttp3.CertificatePinner$Pin: java.lang.String canonicalHostname +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.Date pubTime +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox +androidx.lifecycle.ComputableLiveData$2 +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: AccuCurrentResult$WindChillTemperature() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMarkTintMode +io.reactivex.Observable: io.reactivex.Observable throttleFirst(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.google.android.material.R$attr: int controlBackground +cyanogenmod.app.ThemeVersion: java.lang.String THEME_VERSION_CLASS_NAME +androidx.cardview.R$color +cyanogenmod.weather.WeatherLocation: java.lang.String mState +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: long time +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline2 +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_y_offset_touch +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd +com.google.android.material.R$layout: int design_navigation_item +androidx.core.R$id: int icon +retrofit2.RequestFactory: retrofit2.ParameterHandler[] parameterHandlers +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCity() +androidx.work.R$dimen: int compat_button_inset_vertical_material +com.google.android.material.R$drawable: int abc_list_pressed_holo_light +wangdaye.com.geometricweather.R$drawable: int clock_hour_light +androidx.appcompat.R$string: int abc_action_bar_home_description +okio.ByteString: int lastIndexOf(okio.ByteString) +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnLongClickIntent(android.app.PendingIntent) +android.didikee.donate.R$attr: int submitBackground +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_count +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onPositiveCross +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: boolean isDisposed() +com.google.android.material.R$attr: int indicatorSize +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event valueOf(java.lang.String) +okhttp3.internal.Util: okio.ByteString UTF_16_BE_BOM +com.google.android.material.R$styleable: int Layout_android_layout_marginStart +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark_normal +android.didikee.donate.R$attr: int actionBarSize +androidx.core.R$id: int accessibility_custom_action_3 +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_fontFamily +com.google.android.gms.common.annotation.KeepName +okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String etag +okhttp3.internal.http2.Http2Stream: int id +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar +wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_item_tint +android.didikee.donate.R$color: int primary_material_light +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_LOCATION_PERMISSION +wangdaye.com.geometricweather.R$id: int container_main_pollen_title +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_32 +com.turingtechnologies.materialscrollbar.R$style: int Animation_AppCompat_Tooltip +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_endColor +androidx.constraintlayout.utils.widget.ImageFilterButton: float getRound() +androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.Observer downstream +androidx.fragment.R$id: int normal +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: AccuCurrentResult$PrecipitationSummary$Past9Hours() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: java.lang.Object get() +android.didikee.donate.R$id: int progress_horizontal +wangdaye.com.geometricweather.R$attr: int backgroundSplit +androidx.appcompat.resources.R$id: int title +wangdaye.com.geometricweather.R$string: int day +io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiFunction,io.reactivex.functions.Consumer) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_stroke_width_focused +james.adaptiveicon.R$styleable: int AppCompatTheme_colorBackgroundFloating +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog_Bridge +com.google.android.material.R$attr: int color +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_NoActionBar +com.google.android.material.snackbar.BaseTransientBottomBar$Behavior: BaseTransientBottomBar$Behavior() +android.didikee.donate.R$string: int abc_searchview_description_submit +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean currentPosition +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeight +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgressBackgroundColor(int) +com.google.android.material.R$string: int error_icon_content_description +androidx.appcompat.R$style: int TextAppearance_AppCompat_Small +com.google.android.material.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance +com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_padding_vertical_material +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +androidx.legacy.coreutils.R$dimen: int notification_media_narrow_margin +okhttp3.internal.platform.ConscryptPlatform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) +com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector YEAR +androidx.work.R$attr: int fontProviderFetchStrategy +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Bridge +com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +androidx.constraintlayout.widget.R$id: int normal +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setSuggest(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_2 +com.turingtechnologies.materialscrollbar.R$attr: int homeAsUpIndicator +com.google.android.gms.location.ActivityTransitionResult: android.os.Parcelable$Creator CREATOR +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getSupportedFeatures() +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +com.turingtechnologies.materialscrollbar.R$attr: int titleTextColor +androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX) +com.google.android.material.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context,android.util.AttributeSet) +com.tencent.bugly.crashreport.BuglyLog +com.google.android.material.R$style: int ThemeOverlay_AppCompat_DayNight +com.google.android.material.R$attr: int textAppearanceHeadline1 +com.google.android.material.R$style: int Platform_V25_AppCompat_Light +com.jaredrummler.android.colorpicker.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.R$layout: int dialog_adaptive_icon +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: void setDefenseIcon(java.lang.String) +wangdaye.com.geometricweather.R$string: int cpv_transparency +com.google.android.material.R$styleable: int View_android_theme +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar_Surface +wangdaye.com.geometricweather.R$string: int content_des_no2 +io.reactivex.internal.observers.BlockingObserver: java.lang.Object TERMINATED +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type lowerBound +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String EnglishName +androidx.dynamicanimation.R$id: int right_icon +com.google.android.material.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide +wangdaye.com.geometricweather.R$styleable: int MaterialButtonToggleGroup_singleSelection +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_removeCustomTileWithTag +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getRealFeelShaderTemperature() +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_backgroundSplit +wangdaye.com.geometricweather.R$attr: int showSeekBarValue +okhttp3.internal.http2.Header: java.lang.String toString() +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SPANISH +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +androidx.hilt.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.R$styleable: int TagView_unchecked_background_color +androidx.constraintlayout.widget.R$styleable: int RecycleListView_paddingBottomNoButtons +com.google.android.material.card.MaterialCardView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.preference.R$style: int Widget_AppCompat_Button_Borderless_Colored +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_strokeWidth +james.adaptiveicon.R$color: int abc_secondary_text_material_light +androidx.constraintlayout.widget.R$attr: int iconTint +com.turingtechnologies.materialscrollbar.R$attr: int elevation +okhttp3.logging.LoggingEventListener: void secureConnectEnd(okhttp3.Call,okhttp3.Handshake) +io.reactivex.Observable: io.reactivex.Single toSortedList(java.util.Comparator) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator +wangdaye.com.geometricweather.R$string: int abc_searchview_description_search +okhttp3.internal.http1.Http1Codec$FixedLengthSink: okio.Timeout timeout() +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetEnd +com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_Dialog +com.google.android.material.chip.Chip: void setRippleColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_summaryOff +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_25 +io.reactivex.internal.observers.BasicIntQueueDisposable: boolean isDisposed() +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: ObservableReplay$SizeBoundReplayBuffer(int) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: org.greenrobot.greendao.query.Query weatherEntity_HourlyEntityListQuery +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_alpha +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorColors +com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimAlpha(int) +com.amap.api.fence.GeoFence: android.app.PendingIntent d +com.google.android.material.textfield.TextInputLayout: android.widget.TextView getSuffixTextView() +wangdaye.com.geometricweather.R$string: int settings_title_pressure_unit +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_COLOR_AUTO +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginBottom +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String Type +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getThumbTintList() +com.google.android.material.R$styleable: int Chip_closeIconSize +retrofit2.ParameterHandler$FieldMap: ParameterHandler$FieldMap(java.lang.reflect.Method,int,retrofit2.Converter,boolean) +okhttp3.internal.cache.DiskLruCache: java.io.File journalFile +org.greenrobot.greendao.AbstractDao: java.lang.Object loadByRowId(long) +com.google.android.material.transformation.ExpandableTransformationBehavior: ExpandableTransformationBehavior(android.content.Context,android.util.AttributeSet) +james.adaptiveicon.R$style: int Widget_AppCompat_PopupWindow +androidx.coordinatorlayout.R$drawable: int notification_icon_background +android.didikee.donate.R$styleable: int AppCompatTheme_actionDropDownStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_percent +androidx.appcompat.resources.R$id: int tag_accessibility_clickable_spans +cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_processWeatherUpdateRequest_0 +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Tooltip +androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotationX +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +androidx.appcompat.widget.SearchView: int getMaxWidth() +com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_Dialog +wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_2_0_padding_top +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_android_maxWidth +okio.Pipe$PipeSink: okio.Timeout timeout() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: void run() +com.google.android.material.R$color: int highlighted_text_material_light +okhttp3.Interceptor +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_top +androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy valueOf(java.lang.String) +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$dimen: int abc_button_inset_horizontal_material +com.xw.repo.bubbleseekbar.R$attr: int alpha +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetRight +wangdaye.com.geometricweather.R$layout: int activity_allergen +cyanogenmod.themes.ThemeChangeRequest$1: cyanogenmod.themes.ThemeChangeRequest[] newArray(int) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getVisibility() +wangdaye.com.geometricweather.R$animator: int weather_clear_day_2 +wangdaye.com.geometricweather.R$attr: int dropdownPreferenceStyle +com.amap.api.location.AMapLocation: void setPoiName(java.lang.String) +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_padding_start_material +cyanogenmod.app.CMContextConstants +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean active +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer apparentTemperature +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button +androidx.appcompat.R$layout: int abc_action_menu_layout +cyanogenmod.providers.CMSettings$Secure$2: CMSettings$Secure$2() +com.jaredrummler.android.colorpicker.R$layout: int abc_action_bar_title_item +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean isShouldHandleInJava() +okio.Timeout$1: okio.Timeout deadlineNanoTime(long) +wangdaye.com.geometricweather.background.polling.work.worker.AsyncWorker: AsyncWorker(android.content.Context,androidx.work.WorkerParameters) +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_variablePadding com.loc.h -wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_range_end -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode valueOf(java.lang.String) -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_PICKED_UUID -james.adaptiveicon.R$dimen: int abc_control_corner_material -okhttp3.internal.Util: boolean verifyAsIpAddress(java.lang.String) -okhttp3.internal.connection.ConnectInterceptor: okhttp3.OkHttpClient client -cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onListenerConnected() -com.google.android.material.R$attr: int actionModeStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDewPoint(java.lang.Integer) -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cp -androidx.lifecycle.LifecycleService: androidx.lifecycle.Lifecycle getLifecycle() -androidx.appcompat.widget.AppCompatCheckBox: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) -com.google.android.material.R$dimen: int abc_button_padding_vertical_material -androidx.preference.R$dimen: int abc_select_dialog_padding_start_material -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_borderlessButtonStyle -wangdaye.com.geometricweather.R$dimen: int widget_grid_2 -android.didikee.donate.R$attr: int buttonTintMode -wangdaye.com.geometricweather.R$string: int about_gson -wangdaye.com.geometricweather.R$attr: int drawableLeftCompat -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_EditText -cyanogenmod.hardware.CMHardwareManager: int FEATURE_PERSISTENT_STORAGE -james.adaptiveicon.R$id: int search_button -androidx.constraintlayout.widget.R$attr: int windowActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Maximum: java.lang.String Unit -androidx.appcompat.resources.R$id: int time -com.xw.repo.bubbleseekbar.R$styleable: int[] GradientColor -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder dns(okhttp3.Dns) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_MENU_ACTION_VALIDATOR -com.tencent.bugly.crashreport.CrashReport: void setContext(android.content.Context) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: java.lang.String Unit -android.didikee.donate.R$string: int abc_action_bar_up_description -okhttp3.Request: okhttp3.RequestBody body() -retrofit2.HttpServiceMethod$CallAdapted: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) -okhttp3.internal.ws.RealWebSocket: boolean failed +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconEnabled +wangdaye.com.geometricweather.R$id: R$id() +io.reactivex.internal.observers.LambdaObserver: boolean hasCustomOnError() +androidx.constraintlayout.widget.R$layout: int abc_activity_chooser_view +wangdaye.com.geometricweather.R$drawable: int notif_temp_63 +com.google.android.material.R$style: int Base_V21_Theme_AppCompat +com.xw.repo.bubbleseekbar.R$color +androidx.work.R$id: int line1 +com.xw.repo.bubbleseekbar.R$style: int Base_DialogWindowTitleBackground_AppCompat +androidx.vectordrawable.R$id: int tag_unhandled_key_listeners +android.didikee.donate.R$styleable: int AppCompatImageView_android_src +retrofit2.Call +com.google.android.material.R$styleable: int Constraint_flow_verticalStyle +androidx.preference.R$id: int chronometer +wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_default_alpha +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: void setZh_TW(java.lang.String) +okhttp3.MediaType: java.lang.String TOKEN +cyanogenmod.app.Profile$ProfileTrigger: int access$200(cyanogenmod.app.Profile$ProfileTrigger) +androidx.activity.R$styleable: int GradientColor_android_centerY +james.adaptiveicon.R$styleable: int AppCompatTheme_ratingBarStyle +james.adaptiveicon.R$dimen: int abc_action_bar_default_padding_end_material +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatImageView +com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int AppCompatTheme_ratingBarStyle +wangdaye.com.geometricweather.R$style: int Base_AlertDialog_AppCompat +com.google.android.gms.dynamic.RemoteCreator$RemoteCreatorException: RemoteCreator$RemoteCreatorException(java.lang.String) +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: android.os.IBinder asBinder() +androidx.appcompat.R$styleable: int View_android_focusable +androidx.preference.R$styleable: int CoordinatorLayout_keylines +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_small_material +okhttp3.internal.http1.Http1Codec: void detachTimeout(okio.ForwardingTimeout) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String a(byte[]) +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu +okio.ForwardingSink: okio.Timeout timeout() +com.amap.api.location.AMapLocationClient: void startLocation() +com.xw.repo.bubbleseekbar.R$id: int spacer +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeSplitBackground +com.jaredrummler.android.colorpicker.R$string: int abc_action_bar_up_description +wangdaye.com.geometricweather.db.entities.HistoryEntity: int nighttimeTemperature +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_inverse +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: long dt +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf +okhttp3.MultipartBody$Part: okhttp3.Headers headers +wangdaye.com.geometricweather.R$styleable: int AlertDialog_singleChoiceItemLayout +cyanogenmod.platform.R$string: R$string() +com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_indicator_material +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.String toString() +androidx.appcompat.R$styleable: int AppCompatTextView_drawableLeftCompat +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light_Dialog +com.google.android.material.R$attr: int staggered +androidx.constraintlayout.widget.R$styleable: int ActionBar_subtitle +wangdaye.com.geometricweather.R$style: int Preference_Information +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float icePrecipitation +android.didikee.donate.R$drawable: int abc_cab_background_top_material +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalGap +james.adaptiveicon.R$attr: int colorError +androidx.preference.R$attr: int backgroundSplit +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: int getStatus() +androidx.hilt.R$attr: R$attr() +wangdaye.com.geometricweather.R$layout: int cpv_preference_circle_large +com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreference +wangdaye.com.geometricweather.R$attr: int chipStrokeColor +wangdaye.com.geometricweather.R$attr: int materialThemeOverlay +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_viewInflaterClass +okhttp3.internal.cache.DiskLruCache: void checkNotClosed() +androidx.hilt.R$layout: int notification_template_part_time +cyanogenmod.weather.WeatherInfo: double getWindSpeed() +androidx.recyclerview.R$attr +okhttp3.internal.platform.Jdk9Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +androidx.preference.R$bool +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_percent +com.google.android.material.appbar.AppBarLayout: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetStartWithNavigation +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowColor +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_spanCount +wangdaye.com.geometricweather.R$string: int gson +androidx.viewpager2.R$layout: R$layout() +wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.loader.R$styleable: int FontFamilyFont_android_ttcIndex +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_CIRCLE +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +androidx.preference.R$styleable: int AppCompatTheme_activityChooserViewStyle +cyanogenmod.themes.IThemeProcessingListener: void onFinishedProcessing(java.lang.String) +com.google.android.material.R$style: int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize +com.amap.api.fence.PoiItem$1 +cyanogenmod.app.ProfileGroup: void setSoundMode(cyanogenmod.app.ProfileGroup$Mode) +androidx.preference.R$anim: int abc_grow_fade_in_from_bottom +okio.BufferedSink: okio.BufferedSink write(okio.ByteString) +wangdaye.com.geometricweather.db.entities.WeatherEntity: int getTemperature() +com.google.android.material.R$attr: int materialAlertDialogBodyTextStyle +io.reactivex.internal.observers.InnerQueuedObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$integer: int mtrl_btn_anim_delay_ms +wangdaye.com.geometricweather.R$string: int key_notification_text_color +com.turingtechnologies.materialscrollbar.R$attr: int itemBackground +androidx.hilt.lifecycle.R$styleable +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_20 +androidx.constraintlayout.widget.R$styleable: int Motion_motionStagger +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: AccuCurrentResult$ApparentTemperature() +cyanogenmod.providers.CMSettings$Global: float getFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +io.reactivex.observers.TestObserver$EmptyObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$style: int Widget_AppCompat_ProgressBar +wangdaye.com.geometricweather.R$string: int apparent_temperature +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_padding_left +com.google.android.material.R$styleable: int AppCompatTheme_listMenuViewStyle +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_Chip +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog +com.tencent.bugly.crashreport.biz.b: long c() +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: java.lang.String modeId +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setCityName(java.lang.String) +androidx.preference.R$drawable: int abc_btn_radio_to_on_mtrl_015 +com.baidu.location.e.p: java.util.List a(org.json.JSONObject,java.lang.String,int) +com.amap.api.location.AMapLocation: void setErrorCode(int) +androidx.preference.R$style: int Base_Widget_AppCompat_ListMenuView +androidx.appcompat.R$bool: R$bool() +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_height_major +wangdaye.com.geometricweather.R$id: int scrollIndicatorUp +james.adaptiveicon.R$styleable: int MenuView_android_itemBackground +androidx.preference.R$style: int Base_Widget_AppCompat_TextView +wangdaye.com.geometricweather.R$string: int error_icon_content_description +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_go_search_api_material +wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_medium_component +okhttp3.CipherSuite: java.lang.String toString() +wangdaye.com.geometricweather.R$styleable: int[] ViewBackgroundHelper +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_creator +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setDescription(java.lang.String) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.util.AtomicThrowable error +okhttp3.internal.Util: void closeQuietly(java.net.Socket) +androidx.preference.R$styleable: int AppCompatTheme_imageButtonStyle +james.adaptiveicon.R$attr: int dropDownListViewStyle +androidx.legacy.coreutils.R$id: int actions +androidx.vectordrawable.animated.R$id: int notification_background +io.reactivex.internal.operators.observable.ObserverResourceWrapper: ObserverResourceWrapper(io.reactivex.Observer) +androidx.fragment.R$attr: int alpha +androidx.viewpager.widget.ViewPager: void setCurrentItem(int) +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCopyDrawable +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline4 +androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_android_alpha +android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedWidthMajor +com.xw.repo.bubbleseekbar.R$attr: int tintMode +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_disabled_translation_z +com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +com.amap.api.location.AMapLocation: com.amap.api.location.AMapLocationQualityReport getLocationQualityReport() +okhttp3.internal.Util: int delimiterOffset(java.lang.String,int,int,char) +com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +okhttp3.WebSocketListener: void onMessage(okhttp3.WebSocket,okio.ByteString) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: cyanogenmod.externalviews.ExternalViewProviderService$Provider this$1 +james.adaptiveicon.R$attr: int tint +wangdaye.com.geometricweather.R$layout: int notification_base_big +androidx.legacy.coreutils.R$color: R$color() +com.xw.repo.bubbleseekbar.R$string: int abc_menu_ctrl_shortcut_label +com.google.android.material.R$attr: int motion_triggerOnCollision +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: long serialVersionUID +androidx.constraintlayout.widget.R$attr: int closeItemLayout +com.google.android.material.R$dimen: int mtrl_calendar_header_divider_thickness com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: int hashCode() +wangdaye.com.geometricweather.R$color: int mtrl_outlined_stroke_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: CaiYunMainlyResult$CurrentBean$WindBean() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMarkTintMode +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleTintMode +androidx.constraintlayout.motion.widget.MotionLayout: void setInteractionEnabled(boolean) +androidx.hilt.R$dimen: int notification_large_icon_width +okhttp3.OkHttpClient$Builder: boolean followSslRedirects +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_barrierDirection +wangdaye.com.geometricweather.R$string: int wind_11 +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String getDumpFilePath() +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_normal +androidx.fragment.R$id: int icon +androidx.appcompat.R$styleable: int MenuItem_numericModifiers +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicReference upstream +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTrackTintList() +okhttp3.internal.ws.RealWebSocket: long queueSize() +com.google.android.material.checkbox.MaterialCheckBox +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.android.material.R$attr: int telltales_velocityMode +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeErrorColor(android.content.res.ColorStateList) +androidx.appcompat.R$color: int material_deep_teal_500 +androidx.preference.R$styleable: int StateListDrawable_android_dither +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarStyle +androidx.hilt.lifecycle.R$id: int title +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowDx +wangdaye.com.geometricweather.R$drawable: int dialog_background +okio.HashingSink: java.security.MessageDigest messageDigest +androidx.viewpager.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.db.entities.WeatherEntity: WeatherEntity(java.lang.Long,java.lang.String,java.lang.String,long,java.util.Date,long,java.util.Date,long,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String,java.lang.Integer,java.lang.String,java.lang.String,java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.String,java.lang.String) +androidx.lifecycle.LifecycleRegistry: void backwardPass(androidx.lifecycle.LifecycleOwner) +androidx.lifecycle.ProcessLifecycleOwner$1: ProcessLifecycleOwner$1(androidx.lifecycle.ProcessLifecycleOwner) +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog +androidx.preference.R$styleable: int ActionBar_backgroundSplit +androidx.constraintlayout.widget.R$styleable: int MotionLayout_motionProgress +wangdaye.com.geometricweather.R$color: int colorRoot +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_orderInCategory +com.turingtechnologies.materialscrollbar.R$string: int mtrl_chip_close_icon_content_description +okhttp3.HttpUrl: java.lang.String username +com.jaredrummler.android.colorpicker.R$styleable: int[] SwitchPreference +okhttp3.internal.cache.DiskLruCache: boolean hasJournalErrors +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitationDuration(java.lang.Float) +com.turingtechnologies.materialscrollbar.R$styleable: int ButtonBarLayout_allowStacking +androidx.loader.R$styleable: int FontFamilyFont_android_font +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchPadding +wangdaye.com.geometricweather.R$attr: int actionModeCutDrawable +io.reactivex.internal.queue.SpscArrayQueue: void soProducerIndex(long) +com.google.android.material.circularreveal.CircularRevealGridLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +androidx.constraintlayout.widget.R$dimen: int abc_text_size_button_material +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setPageCount(int) +androidx.preference.R$attr: int barLength +wangdaye.com.geometricweather.background.polling.basic.ForegroundUpdateService: ForegroundUpdateService() +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +wangdaye.com.geometricweather.R$drawable: int weather_snow_3 +androidx.vectordrawable.R$styleable: int GradientColor_android_endY +cyanogenmod.externalviews.KeyguardExternalView$9: KeyguardExternalView$9(cyanogenmod.externalviews.KeyguardExternalView) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton_CloseMode +androidx.preference.R$styleable: int AppCompatTheme_android_windowAnimationStyle +android.didikee.donate.R$attr: int alertDialogCenterButtons +james.adaptiveicon.R$style: int Widget_AppCompat_Button +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: double Value +androidx.hilt.R$id: int forever +cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup[] getProfileGroups() +james.adaptiveicon.R$styleable: int AppCompatSeekBar_android_thumb +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_wrapMode +androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderCerts +james.adaptiveicon.R$dimen: int abc_text_size_button_material +com.tencent.bugly.BuglyStrategy$a +com.google.android.material.R$styleable: int KeyCycle_android_translationY +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_fontFamily +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Widget_AppCompat_Toolbar +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: KeyguardExternalViewProviderService$Provider$ProviderImpl$2(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +com.xw.repo.bubbleseekbar.R$attr: int actionBarSplitStyle +androidx.constraintlayout.widget.R$anim: int abc_slide_in_top +wangdaye.com.geometricweather.R$layout: int abc_popup_menu_header_item_layout +wangdaye.com.geometricweather.R$dimen: int abc_text_size_caption_material +androidx.constraintlayout.widget.R$style: int Base_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: int status +androidx.constraintlayout.widget.R$id: int parentRelative +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean getTemperature() +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listMenuViewStyle +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: java.lang.Integer depth +cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: WeatherContract$WeatherColumns$WindSpeedUnit() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindDegree +wangdaye.com.geometricweather.R$attr: int commitIcon +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +com.google.android.material.R$attr: int logo +wangdaye.com.geometricweather.R$string: int mtrl_exceed_max_badge_number_suffix +wangdaye.com.geometricweather.R$id: int material_textinput_timepicker +com.amap.api.location.CoordUtil: boolean a +androidx.appcompat.R$color: int primary_material_light +okhttp3.internal.connection.StreamAllocation: java.lang.String toString() +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_navigationContentDescription +com.tencent.bugly.proguard.q: android.database.sqlite.SQLiteDatabase getWritableDatabase() +io.reactivex.Observable: io.reactivex.Observable concatArray(io.reactivex.ObservableSource[]) +androidx.constraintlayout.widget.R$id: int title +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable,int,int) +android.didikee.donate.R$styleable: int ColorStateListItem_android_alpha +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float thunderstorm +com.xw.repo.bubbleseekbar.R$color: int material_grey_850 +wangdaye.com.geometricweather.R$styleable: int[] FragmentContainerView +wangdaye.com.geometricweather.R$string: int settings_title_item_animation_switch +com.google.android.material.R$drawable: int mtrl_ic_error +com.google.android.material.R$styleable: int AppCompatTheme_windowFixedHeightMajor +com.xw.repo.bubbleseekbar.R$styleable: int[] SearchView +org.greenrobot.greendao.AbstractDao: java.lang.Object loadUniqueAndCloseCursor(android.database.Cursor) +android.didikee.donate.R$attr: int state_above_anchor +com.google.android.material.R$styleable: int AppCompatTheme_colorControlNormal +com.google.android.gms.common.api.ResolvableApiException: ResolvableApiException(com.google.android.gms.common.api.Status) +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_ActionBar +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_1_material +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_editor_absoluteX +androidx.recyclerview.R$styleable: int FontFamilyFont_android_ttcIndex +android.didikee.donate.R$style: int TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_1_material +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: void close() +wangdaye.com.geometricweather.R$attr: int layout_constraintTop_toBottomOf +android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_Switch +cyanogenmod.externalviews.ExternalView$6: cyanogenmod.externalviews.ExternalView this$0 +com.google.android.material.R$id: int labelGroup +wangdaye.com.geometricweather.R$id: int item_icon_provider_previewButton +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light +retrofit2.Utils: java.lang.String typeToString(java.lang.reflect.Type) +wangdaye.com.geometricweather.R$drawable: int widget_card_light_60 +com.xw.repo.bubbleseekbar.R$attr: int actionLayout +androidx.dynamicanimation.R$id: int italic +com.google.android.material.R$styleable: int[] ConstraintSet +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property AqiText +com.tencent.bugly.proguard.j: void b(byte,int) +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_2 +androidx.work.R$layout: int custom_dialog +wangdaye.com.geometricweather.R$attr: int expandedTitleMargin +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody build() +cyanogenmod.hardware.ICMHardwareService: boolean writePersistentBytes(java.lang.String,byte[]) +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeDegreeDayTemperature(java.lang.Integer) +androidx.appcompat.widget.AppCompatSpinner: void setPrompt(java.lang.CharSequence) +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +androidx.appcompat.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +androidx.lifecycle.ViewModelProviders +com.google.android.material.R$attr: int defaultState +androidx.appcompat.widget.AlertDialogLayout +com.google.android.material.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator +com.turingtechnologies.materialscrollbar.R$id: int selected +cyanogenmod.profiles.ConnectionSettings: int CM_MODE_ALL +james.adaptiveicon.R$attr: int autoCompleteTextViewStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial() +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: boolean isDisposed() +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Large +com.google.android.material.R$integer: int abc_config_activityDefaultDur +james.adaptiveicon.R$styleable: int Toolbar_contentInsetEnd +com.tencent.bugly.crashreport.biz.UserInfoBean: int p +androidx.appcompat.widget.AppCompatRadioButton: void setSupportButtonTintMode(android.graphics.PorterDuff$Mode) +com.tencent.bugly.proguard.j: java.nio.ByteBuffer a() +wangdaye.com.geometricweather.R$string: int mtrl_exceed_max_badge_number_content_description +okhttp3.Request$Builder: okhttp3.HttpUrl url +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.preference.R$dimen: int preference_seekbar_value_minWidth +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_container +androidx.fragment.R$id: int fragment_container_view_tag +com.tencent.bugly.proguard.ae: byte[] a(byte[]) +com.tencent.bugly.Bugly: void init(android.content.Context,java.lang.String,boolean) +com.google.android.material.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void removeSome(int) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.internal.util.AtomicThrowable errors +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setIconDrawable(android.graphics.drawable.Drawable) +com.google.android.material.R$attr: int barrierDirection +wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentY +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_titleTextStyle +com.google.android.material.R$attr: int percentWidth +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +com.google.android.material.R$anim: int abc_fade_in +com.tencent.bugly.proguard.z: boolean a(java.lang.Runnable) +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationY +wangdaye.com.geometricweather.R$attr: int listDividerAlertDialog +com.turingtechnologies.materialscrollbar.R$attr: int chipSpacingVertical +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String u +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region Region +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ProgressBar +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_CheckBox +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDataConnectionSelectedOnSub +android.didikee.donate.R$attr: int suggestionRowLayout +com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: java.util.Map e +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int HIGH_NOTIFICATION_STATE +okhttp3.internal.cache.DiskLruCache: boolean closed +androidx.hilt.lifecycle.R$attr: int fontProviderFetchTimeout +androidx.recyclerview.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.R$id: int titleDividerNoCustom +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_disabled_material_light +androidx.constraintlayout.widget.R$attr: int warmth +cyanogenmod.weather.WeatherLocation$Builder +com.google.android.material.R$layout: int test_design_checkbox +com.google.android.material.chip.Chip: com.google.android.material.resources.TextAppearance getTextAppearance() +com.xw.repo.bubbleseekbar.R$styleable: int ActionMenuItemView_android_minWidth +com.jaredrummler.android.colorpicker.R$attr: int spinnerStyle +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration +com.google.android.material.R$styleable: int TabLayout_tabRippleColor +com.google.android.material.R$xml: R$xml() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$PhenomenonMaxColor: int phenomenonId +wangdaye.com.geometricweather.R$styleable: int Chip_chipMinHeight +com.bumptech.glide.integration.okhttp.R$layout: R$layout() +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: ObservableTimeoutTimed$TimeoutObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker) +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.R$attr: int warmth +com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.c r +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean getYesterday() +androidx.preference.R$layout: int preference_information +wangdaye.com.geometricweather.R$styleable: int NavigationView_elevation +com.google.android.material.R$styleable: int Layout_layout_constraintHeight_max +okio.Buffer: boolean rangeEquals(long,okio.ByteString,int,int) +com.google.android.material.transformation.TransformationChildLayout +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area$LastAction: java.lang.String English +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Indeterminate +androidx.constraintlayout.widget.R$attr: int borderlessButtonStyle +wangdaye.com.geometricweather.R$drawable: int ic_check_circle_green +cyanogenmod.library.R: R() +androidx.recyclerview.widget.RecyclerView: int getMinFlingVelocity() +android.didikee.donate.R$attr: int thumbTextPadding +androidx.swiperefreshlayout.R$attr +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_UNKNOWN +com.google.android.material.chip.Chip: Chip(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonStyleSmall +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: java.lang.Integer humidity +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_tileMode +androidx.preference.R$styleable: int PreferenceGroup_android_orderingFromXml +com.tencent.bugly.crashreport.crash.a: int f +com.amap.api.fence.GeoFence: int getType() +androidx.preference.PreferenceScreen: PreferenceScreen(android.content.Context,android.util.AttributeSet) +retrofit2.adapter.rxjava2.ResultObservable: void subscribeActual(io.reactivex.Observer) +cyanogenmod.app.ThemeVersion: ThemeVersion() +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getPlaceholderTextColor() +okio.HashingSink: okio.ByteString hash() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +androidx.activity.R$attr: int fontStyle +com.google.android.material.R$id: int autoCompleteToEnd +androidx.preference.MultiSelectListPreference$SavedState +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeColorStateList(android.content.res.ColorStateList) +androidx.preference.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_textAppearance +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean addInner(io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.ErrorCode errorCode +com.google.gson.stream.JsonReader: int doPeek() +com.google.android.material.R$id: int end +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleTextColor(android.content.res.ColorStateList) +com.google.android.material.slider.RangeSlider: void setHaloRadiusResource(int) +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +okhttp3.internal.http2.Http2Stream$StreamTimeout +wangdaye.com.geometricweather.R$dimen: int main_title_text_size +androidx.appcompat.R$style: int TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.R$attr: int clickAction +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_bias +okhttp3.internal.http.RealInterceptorChain: okhttp3.Call call +com.google.android.material.appbar.AppBarLayout: void setOrientation(int) +okhttp3.internal.http.RealInterceptorChain: int writeTimeout +androidx.preference.R$styleable: int SeekBarPreference_seekBarIncrement +com.google.android.material.R$styleable: int Layout_minHeight +com.google.android.material.R$styleable: int MenuItem_showAsAction +com.jaredrummler.android.colorpicker.R$attr: int isLightTheme +androidx.work.ExistingWorkPolicy: androidx.work.ExistingWorkPolicy APPEND_OR_REPLACE +wangdaye.com.geometricweather.R$id: int rectangles +com.google.android.material.R$dimen: int abc_action_bar_default_padding_start_material +com.loc.k: java.lang.String d +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: PrecipitationDuration(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +com.google.android.material.tabs.TabLayout: void setTabIconTint(android.content.res.ColorStateList) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setRagweedDescription(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableEndCompat +androidx.appcompat.R$id: int tag_accessibility_clickable_spans +cyanogenmod.app.ProfileGroup: ProfileGroup(java.util.UUID,boolean) +android.didikee.donate.R$styleable: int[] MenuGroup +android.didikee.donate.R$dimen: int notification_action_icon_size +androidx.preference.R$dimen: int abc_edit_text_inset_top_material +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties properties +com.google.android.material.transformation.ExpandableBehavior +wangdaye.com.geometricweather.R$attr: int cornerSizeBottomLeft +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_color +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +cyanogenmod.app.ProfileManager: void updateProfile(cyanogenmod.app.Profile) +com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +cyanogenmod.app.ProfileGroup: boolean mDefaultGroup +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.util.List textHtml +com.google.android.material.timepicker.TimeModel: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.Indicator: void setScroll(float) +wangdaye.com.geometricweather.R$attr: int tabRippleColor +cyanogenmod.externalviews.ExternalView: void onActivityCreated(android.app.Activity,android.os.Bundle) +cyanogenmod.os.Build: android.util.SparseArray sdkMap +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPopupWindowStyle +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: boolean connected +com.google.android.material.R$drawable: int abc_cab_background_top_material +okhttp3.internal.connection.RealConnection: boolean supportsUrl(okhttp3.HttpUrl) +androidx.dynamicanimation.animation.DynamicAnimation: void removeUpdateListener(androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationUpdateListener) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_button_min_width_overflow_material +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginTop +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_MinWidth +wangdaye.com.geometricweather.R$drawable: int weather_hail_1 +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: io.reactivex.disposables.Disposable timer +wangdaye.com.geometricweather.R$id: int material_minute_text_input +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String n +androidx.constraintlayout.widget.Barrier: void setDpMargin(int) +androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context) +com.google.android.material.R$styleable: int TextInputLayout_expandedHintEnabled +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorBackgroundFloating +android.didikee.donate.R$styleable: int ActionBar_itemPadding +wangdaye.com.geometricweather.background.receiver.MainReceiver +com.google.android.material.tabs.TabLayout: void setTabIconTintResource(int) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +james.adaptiveicon.R$dimen: int abc_control_padding_material +okhttp3.internal.http2.Http2Reader: java.util.List readHeaderBlock(int,short,byte,int) +james.adaptiveicon.R$attr: int expandActivityOverflowButtonDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipMinHeight +wangdaye.com.geometricweather.R$id: int cpv_color_panel_old +wangdaye.com.geometricweather.R$styleable: int Preference_android_enabled +com.google.android.material.R$styleable: int MaterialCalendar_android_windowFullscreen +com.google.android.material.R$style: int TextAppearance_Compat_Notification_Title +com.google.android.material.card.MaterialCardView: int getContentPaddingTop() +androidx.preference.R$style: int TextAppearance_AppCompat_Headline +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableBottomCompat +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_background +androidx.constraintlayout.widget.R$id: int actions +com.google.android.material.R$styleable: int KeyCycle_waveOffset +com.google.android.material.R$styleable: int AppCompatTextView_textLocale +com.google.android.material.imageview.ShapeableImageView: void setShapeAppearanceModel(com.google.android.material.shape.ShapeAppearanceModel) +cyanogenmod.profiles.ConnectionSettings: ConnectionSettings(int,int,boolean) +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Alert +okhttp3.Response: long receivedResponseAtMillis +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.functions.Function mapper +com.xw.repo.bubbleseekbar.R$attr: int autoCompleteTextViewStyle +androidx.constraintlayout.widget.R$attr: int fontProviderCerts +androidx.lifecycle.ViewModelStores: androidx.lifecycle.ViewModelStore of(androidx.fragment.app.FragmentActivity) +androidx.fragment.R$id: int italic +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light +wangdaye.com.geometricweather.R$color: int notification_background_o +com.turingtechnologies.materialscrollbar.R$attr: int dividerHorizontal +cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator +com.baidu.location.BDLocation +androidx.appcompat.widget.ActionBarOverlayLayout: ActionBarOverlayLayout(android.content.Context) +wangdaye.com.geometricweather.R$string: int week_7 +com.google.android.material.R$dimen: int notification_subtext_size +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getLogo() +androidx.work.R$id: int tag_accessibility_pane_title +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_bias +com.amap.api.fence.DistrictItem: java.lang.String a +com.google.android.material.R$attr: int actionModeCopyDrawable +com.tencent.bugly.crashreport.crash.e: void a(com.tencent.bugly.crashreport.common.strategy.StrategyBean) +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int ActionMode_closeItemLayout +com.amap.api.fence.GeoFence: void setPendingIntentAction(java.lang.String) +cyanogenmod.providers.CMSettings$Secure: java.lang.String STATS_COLLECTION +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light_normal_background +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Medium_Inverse +james.adaptiveicon.R$styleable: int LinearLayoutCompat_dividerPadding +com.bumptech.glide.R$styleable: int GradientColor_android_startColor +com.turingtechnologies.materialscrollbar.R$styleable: int[] ThemeEnforcement +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean +wangdaye.com.geometricweather.R$layout: int mtrl_alert_select_dialog_multichoice +androidx.appcompat.R$color: int androidx_core_ripple_material_light +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.internal.TableStatements getStatements() +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean residentPosition +james.adaptiveicon.R$attr: int contentInsetStart +android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar +com.google.android.material.R$dimen: int abc_text_size_display_1_material +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeStyle +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_ttcIndex +retrofit2.OkHttpCall$1: void callFailure(java.lang.Throwable) +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_CONDITION_CODE +com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context) +com.tencent.bugly.crashreport.common.info.b: long m() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getNighttimeWindDirection() +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean cancelled +cyanogenmod.externalviews.KeyguardExternalView$2: void onAttachedToWindow() +cyanogenmod.providers.CMSettings$System: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) +com.tencent.bugly.crashreport.CrashReport: java.lang.String getAppChannel() +com.google.android.material.textfield.TextInputLayout: void setErrorIconTintMode(android.graphics.PorterDuff$Mode) +androidx.preference.R$style: int Platform_V25_AppCompat +com.google.android.material.R$color: int switch_thumb_material_light +androidx.appcompat.R$styleable: int ActionBar_homeLayout +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: java.lang.Thread thread +androidx.preference.R$styleable: int MenuItem_android_checkable +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_cut_mtrl_alpha +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxPlain() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindDegree +com.google.android.material.R$styleable: int Layout_layout_constraintGuide_begin +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setBrandId(java.lang.String) +androidx.fragment.R$anim: int fragment_open_enter +com.turingtechnologies.materialscrollbar.R$id: int transition_position +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String g() +androidx.constraintlayout.widget.R$styleable: int Transform_android_translationX +com.google.android.material.tabs.TabLayout: void setTabMode(int) +com.xw.repo.bubbleseekbar.R$id: int expanded_menu +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float getPrecipitation(float) +com.google.android.gms.common.internal.safeparcel.SafeParcelReader$ParseException: SafeParcelReader$ParseException(java.lang.String,android.os.Parcel) +androidx.lifecycle.SavedStateHandleController: java.lang.String mKey +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Button +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_body_1_material +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button +androidx.viewpager2.R$dimen: int compat_notification_large_icon_max_width +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void dispose() +james.adaptiveicon.R$style: int Theme_AppCompat_Dialog_MinWidth +com.google.android.material.R$styleable: int CollapsingToolbarLayout_contentScrim +androidx.preference.R$attr: int colorPrimaryDark +androidx.preference.R$attr: int showDividers +androidx.preference.R$styleable: int View_paddingEnd +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode DARK +androidx.appcompat.R$color: int abc_tint_btn_checkable +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: void onFailure(retrofit2.Call,java.lang.Throwable) +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackgroundTintList(android.content.res.ColorStateList) +androidx.appcompat.R$styleable: int ActionBar_indeterminateProgressStyle +androidx.activity.R$styleable: int FontFamily_fontProviderAuthority +io.reactivex.Observable: io.reactivex.Observable concatMapEager(io.reactivex.functions.Function,int,int) +androidx.viewpager2.R$styleable: int GradientColor_android_centerX +androidx.work.R$bool: R$bool() +io.reactivex.internal.operators.observable.ObserverResourceWrapper: java.util.concurrent.atomic.AtomicReference upstream +androidx.appcompat.R$color: int bright_foreground_inverse_material_dark +com.turingtechnologies.materialscrollbar.R$attr: int chipSpacing +androidx.preference.R$attr: int initialExpandedChildrenCount +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object DONE +com.google.android.material.appbar.HeaderScrollingViewBehavior: HeaderScrollingViewBehavior(android.content.Context,android.util.AttributeSet) +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: java.io.IOException thrownException +androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy KEEP +androidx.constraintlayout.widget.R$attr: int listChoiceIndicatorSingleAnimated +james.adaptiveicon.R$string: int abc_action_mode_done +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: boolean isDisposed() +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,int) +com.tencent.bugly.crashreport.common.strategy.a: java.lang.String e() +com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusBottomEnd() +androidx.preference.R$string: int abc_action_menu_overflow_description +androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_android_alpha +com.google.android.material.imageview.ShapeableImageView: android.content.res.ColorStateList getStrokeColor() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalGap +com.github.rahatarmanahmed.cpv.CircularProgressView$1: CircularProgressView$1(com.github.rahatarmanahmed.cpv.CircularProgressView) wangdaye.com.geometricweather.common.basic.models.weather.UV: int getUVColor(android.content.Context) -cyanogenmod.providers.CMSettings$System: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) -james.adaptiveicon.R$styleable: int Toolbar_titleMargin -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_ttcIndex -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar_Small -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.google.android.material.R$dimen: int abc_action_bar_subtitle_top_margin_material -wangdaye.com.geometricweather.R$attr: int subMenuArrow -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitationProbability -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -com.amap.api.location.AMapLocationClientOption: boolean isWifiScan() -cyanogenmod.providers.CMSettings$Global: long getLongForUser(android.content.ContentResolver,java.lang.String,int) -okhttp3.EventListener$Factory: okhttp3.EventListener create(okhttp3.Call) -james.adaptiveicon.R$styleable: int MenuView_android_verticalDivider -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_CLOCK_TEXT_COLOR -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean getContent() -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource valueOf(java.lang.String) -androidx.preference.ListPreference$SavedState -cyanogenmod.weatherservice.WeatherProviderService: android.os.Handler mHandler -io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable,int) -androidx.constraintlayout.helper.widget.Flow: void setHorizontalAlign(int) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -com.amap.api.fence.GeoFence$1: GeoFence$1() -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1 -androidx.fragment.R$styleable: int[] ColorStateListItem -com.google.android.material.R$xml: int standalone_badge_gravity_bottom_start -okhttp3.internal.http1.Http1Codec$AbstractSource: okio.ForwardingTimeout timeout -androidx.constraintlayout.widget.R$id: int text2 -androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode[] values() -androidx.appcompat.R$bool: int abc_action_bar_embed_tabs -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_39 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_motionStagger -wangdaye.com.geometricweather.R$styleable: int MenuItem_actionLayout -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_2 -com.turingtechnologies.materialscrollbar.R$id: int text2 -com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -com.google.android.material.R$attr: int drawerArrowStyle -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String HOMESCREEN_URI -wangdaye.com.geometricweather.R$animator: int weather_hail_2 -androidx.preference.R$style: int Widget_Support_CoordinatorLayout -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onDetach() -com.xw.repo.bubbleseekbar.R$styleable: int[] GradientColorItem -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit valueOf(java.lang.String) -android.didikee.donate.R$attr: int tickMarkTint -james.adaptiveicon.R$styleable: int ActionBar_itemPadding -androidx.appcompat.R$attr: int colorPrimary -androidx.activity.R$id: int accessibility_custom_action_22 -wangdaye.com.geometricweather.R$id: int animateToEnd -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int maxConcurrency -com.xw.repo.bubbleseekbar.R$attr: int arrowShaftLength -com.google.android.material.circularreveal.CircularRevealGridLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -com.google.android.gms.common.server.converter.zaa -androidx.vectordrawable.R$id: int accessibility_custom_action_12 -wangdaye.com.geometricweather.R$styleable: int PreferenceFragment_android_divider -androidx.legacy.coreutils.R$dimen: int compat_control_corner_material -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: int getValue() -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_logo -androidx.constraintlayout.widget.Placeholder -james.adaptiveicon.R$string: int abc_shareactionprovider_share_with -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float CarbonMonoxide -org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession() -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STYLE_THUMBNAIL -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$width -com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$styleable: int AlertDialog_listLayout -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.bottomnavigation.BottomNavigationItemView: com.google.android.material.badge.BadgeDrawable getBadge() -com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Light -retrofit2.Utils$GenericArrayTypeImpl: java.lang.reflect.Type getGenericComponentType() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long readKey(android.database.Cursor,int) -com.tencent.bugly.proguard.ap: boolean equals(java.lang.Object) -androidx.appcompat.R$styleable: int AppCompatTheme_viewInflaterClass -okhttp3.internal.http2.Hpack$Writer: void writeHeaders(java.util.List) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default -com.google.android.material.card.MaterialCardView: void setCheckedIconMarginResource(int) -com.turingtechnologies.materialscrollbar.R$id: int text -com.jaredrummler.android.colorpicker.R$attr: int splitTrack -okhttp3.internal.connection.RouteException: void addConnectException(java.io.IOException) -androidx.work.R$id: int accessibility_custom_action_2 -cyanogenmod.hardware.CMHardwareManager: java.lang.String getLtoDestination() -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: android.os.IBinder mRemote -androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontStyle -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeFillColor -com.google.android.material.R$dimen: int mtrl_calendar_header_content_padding_fullscreen -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Linear -com.google.android.material.R$attr: int appBarLayoutStyle -com.tencent.bugly.crashreport.crash.a -wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_month_abbr -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupWindow -com.google.android.material.R$attr: int snackbarTextViewStyle -james.adaptiveicon.R$dimen: int abc_text_size_headline_material -com.google.android.material.R$drawable: int btn_radio_off_to_on_mtrl_animation -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String dept -com.xw.repo.bubbleseekbar.R$drawable: int abc_spinner_textfield_background_material -com.tencent.bugly.a: int id -androidx.constraintlayout.widget.R$attr: int seekBarStyle -okhttp3.internal.tls.BasicTrustRootIndex: boolean equals(java.lang.Object) -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Subhead_Inverse -com.google.android.material.R$styleable: int Chip_android_maxWidth -androidx.dynamicanimation.R$styleable: int GradientColor_android_centerY -com.jaredrummler.android.colorpicker.R$id: int search_bar -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: java.lang.String Unit -cyanogenmod.providers.CMSettings$Secure: java.lang.String getString(android.content.ContentResolver,java.lang.String) -com.google.android.material.R$dimen: int design_navigation_icon_size -com.tencent.bugly.BuglyStrategy: boolean i -okhttp3.EventListener$2: okhttp3.EventListener create(okhttp3.Call) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar -androidx.hilt.R$drawable: int notify_panel_notification_icon_bg -androidx.lifecycle.extensions.R$anim -cyanogenmod.weatherservice.IWeatherProviderServiceClient: void setServiceRequestState(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.ServiceRequestResult,int) -com.google.android.gms.location.GeofencingRequest: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginTop -com.google.android.material.R$attr: int trackTint -android.didikee.donate.R$styleable: int[] ViewBackgroundHelper -androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -io.reactivex.Observable: io.reactivex.Observable publish(io.reactivex.functions.Function) -retrofit2.Platform -wangdaye.com.geometricweather.R$id: int item_weather_icon_image -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginBottom -wangdaye.com.geometricweather.R$string: int wind_level -com.google.android.material.R$layout: int mtrl_calendar_year -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowNoTitle -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Menu -androidx.constraintlayout.widget.R$layout: int support_simple_spinner_dropdown_item -androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -androidx.constraintlayout.widget.R$styleable: int Constraint_pivotAnchor -okio.Buffer: okio.Buffer writeUtf8CodePoint(int) -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorSchemeColors(int[]) -com.google.android.material.R$id: int test_checkbox_android_button_tint -androidx.appcompat.R$id: int scrollView -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: AccuCurrentResult$ApparentTemperature$Metric() -androidx.recyclerview.R$styleable: int GradientColor_android_startColor -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_21 -okhttp3.internal.ws.RealWebSocket$2: void onResponse(okhttp3.Call,okhttp3.Response) -com.google.android.material.R$attr: int queryBackground -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -cyanogenmod.themes.ThemeManager: int getProgress() -com.baidu.location.e.o: o(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) -androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Title -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeStepGranularity -androidx.recyclerview.R$id: int accessibility_custom_action_29 -cyanogenmod.app.ProfileGroup: void setRingerOverride(android.net.Uri) -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_logo -com.google.android.material.R$id: int async -androidx.preference.R$id: int content -wangdaye.com.geometricweather.R$layout: int activity_card_display_manage -wangdaye.com.geometricweather.R$drawable: int notif_temp_67 -com.turingtechnologies.materialscrollbar.R$attr: int materialCardViewStyle -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getUvLevel() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String weather -androidx.core.R$id: int accessibility_custom_action_13 -wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: DaoMaster$OpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory) -com.google.android.material.R$layout: int notification_template_part_time -com.google.android.material.R$styleable: int Spinner_android_entries -retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1 -okio.ForwardingSink: void close() -com.google.android.material.R$style: int Widget_AppCompat_Button_Small -androidx.preference.R$id: int image -com.google.android.material.R$layout -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button -okio.RealBufferedSink$1: void close() -com.google.android.material.R$attr: int minSeparation -com.bumptech.glide.Registry$NoImageHeaderParserException: Registry$NoImageHeaderParserException() -wangdaye.com.geometricweather.R$string: int mtrl_picker_out_of_range -androidx.appcompat.R$dimen: int abc_cascading_menus_min_smallest_width -com.google.android.material.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -cyanogenmod.providers.CMSettings$Secure: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA -androidx.lifecycle.ViewModelProvider: java.lang.String DEFAULT_KEY -cyanogenmod.weather.WeatherInfo$DayForecast: double getHigh() -wangdaye.com.geometricweather.R$drawable: int weather_hail -cyanogenmod.app.ICustomTileListener$Stub$Proxy -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_checked -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String zh_TW -wangdaye.com.geometricweather.R$id: int right_side -com.google.android.material.R$drawable: int abc_btn_colored_material -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String tag -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial -james.adaptiveicon.R$bool: int abc_config_actionMenuItemAllCaps -android.didikee.donate.R$drawable: int abc_ic_voice_search_api_material -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: boolean a(android.content.Context,android.content.Intent) -cyanogenmod.profiles.RingModeSettings$1: cyanogenmod.profiles.RingModeSettings createFromParcel(android.os.Parcel) -com.amap.api.fence.PoiItem: java.lang.String a -com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_start_color -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void request(long) -androidx.appcompat.widget.AppCompatButton: void setSupportAllCaps(boolean) -okhttp3.Cookie: int dateCharacterOffset(java.lang.String,int,int,boolean) -androidx.appcompat.R$id: int accessibility_custom_action_5 -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_card -wangdaye.com.geometricweather.R$id: int password_toggle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial Imperial -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: void run() -androidx.vectordrawable.animated.R$styleable: int GradientColor_android_gradientRadius -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode -android.didikee.donate.R$dimen: int highlight_alpha_material_colored -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogPreferredPadding +androidx.customview.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_fontFamily +com.google.android.material.R$dimen: int abc_dialog_fixed_width_minor +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_horizontal_padding +com.amap.api.location.AMapLocationClientOption: long s +cyanogenmod.app.ThemeVersion$ComponentVersion: java.lang.String getName() +androidx.preference.R$attr: int paddingTopNoTitle +androidx.transition.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$attr: int navigationContentDescription +androidx.preference.R$color: int material_blue_grey_800 +okhttp3.internal.http2.Http2Reader$ContinuationSource: okio.BufferedSource source +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object readKey(android.database.Cursor,int) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Menu +androidx.preference.R$attr: int fontWeight +okhttp3.internal.Util: java.lang.String hostHeader(okhttp3.HttpUrl,boolean) +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver getInstance() +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getProvince() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: org.reactivestreams.Subscription upstream +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType GPS +com.xw.repo.bubbleseekbar.R$attr: int bsb_hide_bubble +com.turingtechnologies.materialscrollbar.R$attr: R$attr() +androidx.preference.R$styleable: int AppCompatTextView_drawableTintMode +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 +androidx.loader.R$id: int notification_main_column +com.google.android.material.R$id: int position +james.adaptiveicon.R$drawable: int abc_switch_track_mtrl_alpha +okio.AsyncTimeout: okio.Source source(okio.Source) +androidx.constraintlayout.widget.R$attr: int autoSizePresetSizes +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCopyDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: double HoursOfSun +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderTextColor +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_GCM_SHA384 +androidx.drawerlayout.R$id: int line1 +androidx.lifecycle.LiveData$LifecycleBoundObserver: androidx.lifecycle.LiveData this$0 +android.didikee.donate.R$styleable: int AppCompatTheme_windowActionModeOverlay +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum() +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton +cyanogenmod.weather.RequestInfo$Builder +com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_enforceMaterialTheme +okhttp3.internal.ws.WebSocketProtocol: void toggleMask(okio.Buffer$UnsafeCursor,byte[]) +androidx.preference.R$styleable: int DrawerArrowToggle_arrowHeadLength +okio.RealBufferedSource +androidx.vectordrawable.R$id: int actions +com.amap.api.location.AMapLocationQualityReport: boolean b +com.google.android.material.R$attr: int textInputStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeShareDrawable +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WetBulbTemperature +androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_Alert +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +com.bumptech.glide.R$layout: int notification_template_part_chronometer +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogCenterButtons +com.google.android.material.R$attr: int dropDownListViewStyle +wangdaye.com.geometricweather.R$color: int material_timepicker_button_background +wangdaye.com.geometricweather.R$id: int fragment_main +androidx.constraintlayout.widget.R$string: int abc_activity_chooser_view_see_all +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_NULL_SHA +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Borderless +androidx.appcompat.R$attr: int toolbarNavigationButtonStyle +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver +androidx.drawerlayout.R$id: int async +com.tencent.bugly.crashreport.common.info.a: boolean W +androidx.constraintlayout.widget.R$attr: int firstBaselineToTopHeight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean getSunRiseSet() +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: MfCurrentResult$Observation$Wind() +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_ellipsize +wangdaye.com.geometricweather.R$layout: int mtrl_picker_header_selection_text +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPopupWindowStyle +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Title +okhttp3.internal.ws.RealWebSocket$Message: okio.ByteString data +androidx.preference.R$attr: int titleMarginEnd +cyanogenmod.app.ICMTelephonyManager: void setSubState(int,boolean) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int BLUSTERY +androidx.constraintlayout.widget.R$attr: int layoutDuringTransition +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int WeatherIcon +cyanogenmod.app.ProfileGroup$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.cardview.widget.CardView: void setRadius(float) +androidx.appcompat.R$anim: int abc_popup_enter +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Chip +androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +androidx.constraintlayout.widget.R$attr: int listItemLayout +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: java.util.concurrent.atomic.AtomicLong index +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SearchView +com.jaredrummler.android.colorpicker.R$attr: int maxHeight +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginEnd +com.xw.repo.bubbleseekbar.R$attr: int icon +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTabStyle +okhttp3.internal.http.HttpHeaders: java.util.List parseChallenges(okhttp3.Headers,java.lang.String) +retrofit2.RequestBuilder: okhttp3.Request$Builder get() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setStatus(int) +com.google.android.material.R$style: int Platform_Widget_AppCompat_Spinner +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: void onFailure(retrofit2.Call,java.lang.Throwable) +wangdaye.com.geometricweather.R$string: int key_dark_mode +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type WIND +wangdaye.com.geometricweather.R$styleable: int KeyCycle_waveOffset +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.util.Date getDate() +com.google.android.material.R$styleable: int TextInputLayout_android_enabled +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_ALARMS +com.google.android.material.R$color: int design_box_stroke_color +okhttp3.internal.cache.CacheInterceptor$1: okio.BufferedSink val$cacheBody +androidx.activity.R$id: int accessibility_custom_action_19 +androidx.constraintlayout.utils.widget.ImageFilterButton: float getRoundPercent() +androidx.appcompat.widget.LinearLayoutCompat: void setWeightSum(float) +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_pixel +android.didikee.donate.R$styleable: int AppCompatTheme_colorControlActivated +wangdaye.com.geometricweather.R$dimen: int tooltip_y_offset_non_touch +androidx.lifecycle.LiveData$LifecycleBoundObserver: void detachObserver() +androidx.appcompat.R$string: int abc_searchview_description_voice +com.amap.api.fence.GeoFence: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeThunderstormPrecipitationProbability(java.lang.Float) +androidx.appcompat.R$styleable: int MenuItem_alphabeticModifiers +io.reactivex.internal.util.NotificationLite$ErrorNotification: long serialVersionUID +android.didikee.donate.R$styleable: int ActionBar_logo +okhttp3.internal.connection.RealConnection: java.net.Socket socket +retrofit2.Retrofit$Builder: java.util.List callAdapterFactories() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5 +androidx.preference.R$anim: int fragment_close_exit +cyanogenmod.weather.ICMWeatherManager: void unregisterWeatherServiceProviderChangeListener(cyanogenmod.weather.IWeatherServiceProviderChangeListener) +com.turingtechnologies.materialscrollbar.R$integer: int hide_password_duration +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_max +wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context) +okhttp3.EventListener$1: EventListener$1() james.adaptiveicon.R$attr: int tickMarkTintMode -androidx.dynamicanimation.R$style: R$style() -wangdaye.com.geometricweather.R$drawable: int abc_btn_default_mtrl_shape -okio.HashingSink: void write(okio.Buffer,long) -com.google.android.material.R$styleable: int GradientColor_android_type -androidx.appcompat.widget.Toolbar: void setTitle(int) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintTextColor -androidx.viewpager.R$id: int time -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String admin -androidx.constraintlayout.widget.R$attr: int defaultQueryHint -okio.Buffer: okio.Buffer writeString(java.lang.String,int,int,java.nio.charset.Charset) -androidx.core.R$style: R$style() -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_backgroundTint -androidx.work.R$layout: int notification_action -okio.GzipSink: void close() -okhttp3.logging.LoggingEventListener$Factory: okhttp3.logging.HttpLoggingInterceptor$Logger logger -com.google.android.material.appbar.CollapsingToolbarLayout: java.lang.CharSequence getTitle() -com.tencent.bugly.proguard.u: byte[] a(com.tencent.bugly.proguard.u,byte[]) -com.tencent.bugly.proguard.y$a: boolean a(java.lang.String) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getScaleY() -wangdaye.com.geometricweather.R$layout: int dialog_adaptive_icon -io.reactivex.disposables.ReferenceDisposable: ReferenceDisposable(java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int TextAppearance_fontFamily -androidx.coordinatorlayout.R$id: int accessibility_custom_action_30 -com.baidu.location.e.h$b: com.baidu.location.e.h$b b -com.jaredrummler.android.colorpicker.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: java.lang.String ShortPhrase -okhttp3.Cache$2 -com.google.android.material.R$id: int material_timepicker_edit_text -com.google.android.material.R$attr: int showDelay -com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.turingtechnologies.materialscrollbar.R$color: int primary_dark_material_light -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_CAMELLIA_128_CBC_SHA -okio.GzipSink: java.util.zip.Deflater deflater() -com.jaredrummler.android.colorpicker.R$style: int Base_V22_Theme_AppCompat -com.tencent.bugly.CrashModule: CrashModule() -com.tencent.bugly.proguard.u: void a(int,com.tencent.bugly.proguard.am,java.lang.String,java.lang.String,com.tencent.bugly.proguard.t,boolean) -cyanogenmod.app.IProfileManager: boolean notificationGroupExistsByName(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop -wangdaye.com.geometricweather.R$drawable: int navigation_empty_icon -okhttp3.ConnectionSpec: boolean isTls() -androidx.preference.R$styleable: int PreferenceTheme_editTextPreferenceStyle -com.google.android.material.chip.Chip: Chip(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State INITIALIZED -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context) -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean writePersistentBytes(java.lang.String,byte[]) -com.google.android.material.R$id: int month_title -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_half_black_48dp -androidx.appcompat.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -okhttp3.internal.http.StatusLine: StatusLine(okhttp3.Protocol,int,java.lang.String) -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_4 -com.google.gson.JsonIOException: JsonIOException(java.lang.String,java.lang.Throwable) -cyanogenmod.app.ThemeVersion$ComponentVersion: int getMinVersion() -com.google.android.material.R$id: int italic -wangdaye.com.geometricweather.R$string: int settings_title_daily_trend_display -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dialog -com.google.android.material.R$styleable: int[] Transition -com.tencent.bugly.proguard.aj: void a(com.tencent.bugly.proguard.i) -wangdaye.com.geometricweather.R$drawable: int star_1 -androidx.constraintlayout.widget.R$string: int search_menu_title -com.turingtechnologies.materialscrollbar.R$color: int background_material_light -okhttp3.HttpUrl: java.lang.String encodedPath() -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_track -com.google.android.material.timepicker.ClockHandView: ClockHandView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.WeatherEntity,long) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onComplete() -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_enabled -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_voice -androidx.constraintlayout.widget.ConstraintLayout: void setMinHeight(int) -com.jaredrummler.android.colorpicker.R$dimen: int hint_alpha_material_light -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider AMAP -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed -androidx.hilt.work.R$id: int notification_background -wangdaye.com.geometricweather.R$attr: int layout_constraintRight_toLeftOf -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small -androidx.lifecycle.extensions.R$id: int line3 -androidx.constraintlayout.widget.R$styleable: int Motion_animate_relativeTo -com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_Tooltip -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: ObservableConcatWithSingle$ConcatWithObserver(io.reactivex.Observer,io.reactivex.SingleSource) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String country -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -com.google.android.material.R$styleable: int FontFamilyFont_fontVariationSettings -android.didikee.donate.R$attr: int subtitleTextColor -retrofit2.RequestBuilder: okhttp3.FormBody$Builder formBuilder -androidx.appcompat.R$attr: int popupTheme -androidx.hilt.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.R$styleable: int Toolbar_collapseContentDescription -wangdaye.com.geometricweather.R$color: int mtrl_popupmenu_overlay_color -com.xw.repo.bubbleseekbar.R$attr: int dividerPadding -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_inverse_material_light -com.google.android.material.R$styleable: int LinearLayoutCompat_Layout_android_layout_width -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_font -cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(android.os.Parcel) -okio.ForwardingSource: ForwardingSource(okio.Source) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX() -okhttp3.OkHttpClient$1: java.io.IOException timeoutExit(okhttp3.Call,java.io.IOException) -wangdaye.com.geometricweather.R$styleable: int Chip_android_maxWidth -androidx.recyclerview.R$style -androidx.transition.R$drawable: int notification_bg_low_normal -okhttp3.internal.Util: int skipLeadingAsciiWhitespace(java.lang.String,int,int) -com.google.android.material.R$style: int Theme_Design_Light -androidx.appcompat.widget.AppCompatEditText: void setSupportBackgroundTintList(android.content.res.ColorStateList) -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_ASSIST_LONG_PRESS_ACTION_VALIDATOR -cyanogenmod.hardware.CMHardwareManager: boolean setDisplayGammaCalibration(int,int[]) -com.jaredrummler.android.colorpicker.R$styleable: int View_android_focusable -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_CompactMenu -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_lineHeight -androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabView -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Wind getWind() -com.google.android.material.R$layout: int material_time_chip -okhttp3.internal.Util: java.util.concurrent.ThreadFactory threadFactory(java.lang.String,boolean) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -com.google.android.material.chip.Chip: android.content.res.ColorStateList getCloseIconTint() -com.google.android.material.navigation.NavigationView: void setItemMaxLines(int) -androidx.preference.R$styleable: int SearchView_closeIcon -androidx.vectordrawable.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeWindChillTemperature() -com.google.android.material.R$attr: int goIcon -okhttp3.internal.ws.RealWebSocket$2 -com.google.gson.internal.$Gson$Types$WildcardTypeImpl: boolean equals(java.lang.Object) -io.reactivex.internal.util.EmptyComponent: void cancel() -com.google.android.material.appbar.AppBarLayout$BaseBehavior$SavedState -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void attachEntity(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableItem_android_id -james.adaptiveicon.R$dimen: int abc_dialog_fixed_height_minor -com.tencent.bugly.crashreport.crash.anr.a: a() -androidx.appcompat.R$attr: int initialActivityCount -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintLeft_toRightOf -androidx.legacy.coreutils.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: FitSystemBarNestedScrollView(android.content.Context) -com.google.android.material.R$dimen: int mtrl_high_ripple_pressed_alpha -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_3 -wangdaye.com.geometricweather.main.dialogs.LearnMoreAboutResidentLocationDialog -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SearchView -androidx.legacy.coreutils.R$style -cyanogenmod.app.CustomTile$ExpandedStyle: int LIST_STYLE -wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_nextButton -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MIXED_SNOW_AND_SLEET -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String toStr() -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_keyline -androidx.constraintlayout.motion.widget.MotionLayout: void setOnShow(float) -wangdaye.com.geometricweather.R$bool: int abc_allow_stacked_button_bar -androidx.hilt.work.R$id: int dialog_button -androidx.preference.R$layout: int abc_search_dropdown_item_icons_2line -com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetTop -androidx.appcompat.resources.R$color: int notification_icon_bg_color -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontStyle -com.tencent.bugly.crashreport.common.info.PlugInBean: java.lang.String b -androidx.appcompat.R$attr: int tooltipForegroundColor -cyanogenmod.externalviews.KeyguardExternalViewProviderService$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService this$0 -okio.Buffer: okio.BufferedSink writeHexadecimalUnsignedLong(long) -retrofit2.RequestFactory: java.lang.reflect.Method method -wangdaye.com.geometricweather.background.polling.work.worker.TodayForecastUpdateWorker -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoonPhaseAngle() -com.tencent.bugly.crashreport.biz.UserInfoBean: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.tencent.bugly.proguard.ag -io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicBoolean once -androidx.preference.R$attr: int checkBoxPreferenceStyle -cyanogenmod.profiles.BrightnessSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -wangdaye.com.geometricweather.common.ui.widgets.TagView: void setUncheckedBackgroundColor(int) -james.adaptiveicon.R$style: int Widget_AppCompat_Button_Small -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder tlsVersions(okhttp3.TlsVersion[]) -androidx.activity.R$id: int accessibility_custom_action_3 -androidx.legacy.coreutils.R$drawable -com.google.android.material.R$dimen: int mtrl_btn_stroke_size +com.tencent.bugly.proguard.z: java.util.Map a(android.os.Parcel) +com.google.android.material.imageview.ShapeableImageView: void setStrokeColorResource(int) +com.tencent.bugly.crashreport.common.info.a: java.lang.String f +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: ScheduledDirectPeriodicTask(java.lang.Runnable) +com.google.android.material.R$layout: int notification_action_tombstone +okhttp3.internal.cache.DiskLruCache: void flush() +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.disposables.Disposable upstream +okhttp3.Cache: void initialize() +cyanogenmod.profiles.ConnectionSettings: int getValue() +com.xw.repo.bubbleseekbar.R$styleable: int[] StateListDrawable +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2 +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogIcon +wangdaye.com.geometricweather.R$style: int material_icon +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceSearchResultTitle +androidx.appcompat.widget.Toolbar: void setTitleMarginBottom(int) +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.google.android.material.R$styleable: int Layout_layout_constraintBottom_toBottomOf +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMargin +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_focused_holo +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$302(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_collapsedSize +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_alphabeticModifiers +androidx.legacy.coreutils.R$id: int right_icon +wangdaye.com.geometricweather.R$styleable: int Layout_layout_editor_absoluteY +com.google.android.material.R$attr: int tabPaddingBottom +james.adaptiveicon.R$color: int material_grey_300 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindSpeedStart(java.lang.String) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_Primary +androidx.constraintlayout.widget.R$attr: int dropDownListViewStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +com.google.android.material.R$styleable: int Layout_minWidth +com.google.android.material.R$styleable: int Constraint_flow_wrapMode +androidx.vectordrawable.animated.R$attr: int fontWeight +retrofit2.OptionalConverterFactory +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: io.reactivex.disposables.Disposable upstream +androidx.constraintlayout.widget.R$dimen: int abc_text_size_menu_material +com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.aq a(com.tencent.bugly.crashreport.biz.UserInfoBean) +androidx.coordinatorlayout.R$attr: int layout_insetEdge +com.xw.repo.bubbleseekbar.R$id: int list_item +com.google.android.material.slider.BaseSlider: float getValueTo() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry: java.util.List coordinates +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: java.lang.String Unit +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position: java.lang.String timezone +com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_buttonCompat +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_summaryOff +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: retrofit2.Call $this_awaitResponse$inlined +com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: void setInternalAutoHideListener(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: long serialVersionUID +androidx.lifecycle.extensions.R$id: int actions +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_iconEndPadding +okhttp3.Cache: void trackResponse(okhttp3.internal.cache.CacheStrategy) +com.google.android.material.R$dimen: int mtrl_low_ripple_pressed_alpha +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_trackTintMode +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String[] VALID_KEYS +com.turingtechnologies.materialscrollbar.R$color: int tooltip_background_light +com.jaredrummler.android.colorpicker.R$layout: int notification_action +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar +james.adaptiveicon.R$dimen: int tooltip_corner_radius androidx.preference.R$drawable: int abc_ab_share_pack_mtrl_alpha -wangdaye.com.geometricweather.R$id: int screen -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List xiche -com.xw.repo.bubbleseekbar.R$styleable: int ActionMenuItemView_android_minWidth -com.xw.repo.bubbleseekbar.R$id: int tag_unhandled_key_event_manager -cyanogenmod.hardware.ICMHardwareService: boolean setDisplayColorCalibration(int[]) -com.amap.api.fence.DistrictItem: java.lang.String getCitycode() -com.google.android.material.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Info -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_positiveButtonText -com.baidu.location.indoor.mapversion.c.c$b: double e -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable[] EMPTY -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_scaleX -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context) -com.google.android.material.R$styleable: int AppCompatTheme_actionModePasteDrawable -com.turingtechnologies.materialscrollbar.R$id: int submit_area -okio.Buffer: java.lang.String readUtf8Line() -wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date getPublishDate() -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_keylines -com.google.android.material.R$attr: int hideOnContentScroll -com.google.android.material.R$style: int TextAppearance_Design_Error -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 -james.adaptiveicon.R$layout: int abc_action_bar_up_container -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontWeight -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: android.os.IBinder asBinder() -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_imeOptions -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_PopupMenu -okhttp3.internal.http2.Http2Reader: void readRstStream(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -com.google.android.material.R$styleable: int Layout_layout_constraintEnd_toStartOf -androidx.hilt.work.R$attr: int ttcIndex -androidx.preference.R$style: int Preference_DropDown -com.bumptech.glide.R$id: int icon_group -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String q -com.google.gson.stream.JsonReader: java.lang.String locationString() -android.didikee.donate.R$styleable: int[] AppCompatTextHelper -wangdaye.com.geometricweather.R$styleable: int[] CardView -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: boolean isDisposed() -com.google.android.material.bottomappbar.BottomAppBar: androidx.appcompat.widget.ActionMenuView getActionMenuView() -androidx.appcompat.R$styleable: int AppCompatTheme_tooltipFrameBackground -androidx.appcompat.R$style: int Platform_V21_AppCompat -com.turingtechnologies.materialscrollbar.R$attr: int contentInsetEndWithActions +androidx.constraintlayout.widget.R$attr: int showDividers +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void error(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum +androidx.preference.R$attr: int windowFixedWidthMajor +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_WARM_FALLING +com.google.android.material.R$attr: int itemPadding +androidx.preference.R$dimen: R$dimen() +james.adaptiveicon.R$attr: int singleChoiceItemLayout +com.amap.api.location.AMapLocationClient: com.amap.api.location.LocationManagerBase a(android.content.Context,android.content.Intent) +com.google.android.material.R$style: int Platform_V21_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$attr: int materialCardViewStyle +com.google.android.material.R$color: int abc_tint_seek_thumb +com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Light +androidx.appcompat.R$drawable: int abc_edit_text_material +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginEnd +androidx.legacy.coreutils.R$drawable: int notify_panel_notification_icon_bg +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,int) +io.reactivex.internal.queue.SpscArrayQueue: java.lang.Object poll() +androidx.vectordrawable.R$id: int accessibility_custom_action_25 +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_checkBoxPreferenceStyle +android.didikee.donate.R$styleable: int AlertDialog_listItemLayout +cyanogenmod.app.ThemeVersion: int CM12_PRE_VERSIONING +wangdaye.com.geometricweather.R$attr: int checkedIcon +androidx.core.R$style +okio.ByteString: okio.ByteString digest(java.lang.String) +com.google.android.material.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_toTopOf +androidx.constraintlayout.widget.R$attr: int homeLayout +com.turingtechnologies.materialscrollbar.R$id: int blocking +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerSlack +com.turingtechnologies.materialscrollbar.R$attr: int bottomSheetStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: java.lang.String English +com.google.android.material.R$dimen: int material_emphasis_disabled +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition ABOVE_LINE +cyanogenmod.themes.ThemeManager +com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNo2() +com.google.android.material.R$style: int Widget_Design_BottomNavigationView +com.google.android.material.bottomnavigation.BottomNavigationView: int getMaxItemCount() +com.google.android.material.slider.Slider: float getValueTo() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Button +androidx.appcompat.R$string: int abc_action_bar_up_description +com.tencent.bugly.proguard.i: byte a(byte,int,boolean) +androidx.coordinatorlayout.R$dimen +androidx.appcompat.R$dimen: int abc_dialog_fixed_height_minor +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_1 +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder tlsVersions(java.lang.String[]) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: wangdaye.com.geometricweather.db.entities.HourlyEntity readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_useCompatPadding +okhttp3.OkHttpClient$1: void addLenient(okhttp3.Headers$Builder,java.lang.String,java.lang.String) +androidx.preference.R$id: int seekbar +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: MfForecastResult$ProbabilityForecast$ProbabilityRain() +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderFetchStrategy +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void setDisposable(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver this$0 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List dailyEntityList +androidx.appcompat.R$layout: int abc_list_menu_item_icon +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Editor edit(java.lang.String,long) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_suffixTextAppearance +com.google.android.material.textfield.TextInputEditText: void setTextInputLayoutFocusedRectEnabled(boolean) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long readKey(android.database.Cursor,int) +io.reactivex.internal.subscriptions.EmptySubscription +wangdaye.com.geometricweather.db.entities.DailyEntity +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathStart(float) +com.google.android.material.R$styleable: int Toolbar_contentInsetStart +com.xw.repo.bubbleseekbar.R$style: int Base_V23_Theme_AppCompat +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean isDisposed() +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_19 +wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_EXCESSIVE +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.String getTrendTemperature(android.content.Context,java.lang.Integer,java.lang.Integer,wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit) +wangdaye.com.geometricweather.R$attr: int lineSpacing +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_5 +com.jaredrummler.android.colorpicker.R$style: int Preference_DropDown +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeStyle +io.reactivex.subjects.PublishSubject$PublishDisposable: void onNext(java.lang.Object) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: java.lang.String[] getPermissions() +androidx.appcompat.widget.Toolbar: void setSubtitleTextColor(int) +com.tencent.bugly.crashreport.crash.c: int e +android.didikee.donate.R$bool: int abc_allow_stacked_button_bar +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_deriveConstraintsFrom +wangdaye.com.geometricweather.R$drawable: int notif_temp_69 +androidx.appcompat.R$id: int accessibility_custom_action_6 +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontWeight +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean outputFused +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection findConnection(int,int,int,int,boolean) +cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.AppSuggestManager sInstance +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String l() +wangdaye.com.geometricweather.R$attr: int key +okio.Buffer: okio.ByteString snapshot() +androidx.preference.R$string: int abc_searchview_description_submit +okhttp3.internal.http.HttpMethod: boolean invalidatesCache(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_android_foreground +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setRingtone(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int RecycleListView_paddingBottomNoButtons +com.xw.repo.bubbleseekbar.R$attr: int buttonIconDimen +com.google.android.material.R$id: int mtrl_picker_fullscreen +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: java.util.concurrent.TimeUnit unit +android.didikee.donate.R$style: int Widget_AppCompat_PopupWindow +com.google.android.material.R$dimen: int compat_notification_large_icon_max_width +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontVariationSettings +com.amap.api.location.AMapLocation: int LOCATION_TYPE_FAST +io.reactivex.internal.observers.BasicIntQueueDisposable: void dispose() +com.google.android.material.R$id: int action_bar_container +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String IconPhrase +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onLockscreenSlideOffsetChanged(float) +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: void setStatus(int) +wangdaye.com.geometricweather.R$attr: int fontProviderFetchTimeout +wangdaye.com.geometricweather.R$array: int temperature_unit_values +androidx.preference.R$styleable: int Fragment_android_id +cyanogenmod.profiles.LockSettings: LockSettings(int) +androidx.activity.R$color +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: long serialVersionUID +wangdaye.com.geometricweather.R$attr: int cardElevation +androidx.appcompat.R$dimen: int abc_dropdownitem_text_padding_right +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long COMPLETE_MASK +androidx.preference.R$attr: int contentInsetRight +okhttp3.Request$Builder: okhttp3.Request$Builder header(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int level +com.amap.api.fence.GeoFenceClient: android.content.Context a +cyanogenmod.profiles.ConnectionSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$styleable: int Toolbar_android_minHeight +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setStatus(int) +james.adaptiveicon.R$styleable: int Toolbar_subtitleTextColor +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_DarkActionBar +androidx.lifecycle.SavedStateHandleController$OnRecreation +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Tooltip +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListMenuView +james.adaptiveicon.R$color: int primary_material_dark +retrofit2.converter.gson.GsonResponseBodyConverter: java.lang.Object convert(okhttp3.ResponseBody) +androidx.preference.R$style: int Preference_DialogPreference_EditTextPreference_Material +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_94 +androidx.transition.R$dimen: int notification_large_icon_height +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.ObservableSource sampler +androidx.appcompat.view.menu.ListMenuItemView: ListMenuItemView(android.content.Context,android.util.AttributeSet,int) +androidx.work.impl.foreground.SystemForegroundService +androidx.recyclerview.widget.RecyclerView: void setRecycledViewPool(androidx.recyclerview.widget.RecyclerView$RecycledViewPool) +cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener: void onDetachedFromWindow() +androidx.appcompat.R$id: int parentPanel +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_left +com.github.rahatarmanahmed.cpv.R$string: int app_name +androidx.constraintlayout.widget.R$styleable: int ActionMode_backgroundSplit +androidx.constraintlayout.widget.R$styleable: int MockView_mock_diagonalsColor +com.google.android.material.R$id: int multiply +androidx.hilt.lifecycle.R$dimen: int compat_notification_large_icon_max_height +retrofit2.converter.gson.GsonRequestBodyConverter: java.nio.charset.Charset UTF_8 +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource CAIYUN +com.google.android.material.datepicker.MaterialCalendarGridView +com.jaredrummler.android.colorpicker.R$style: int Base_AlertDialog_AppCompat +wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +com.google.android.material.R$string: int material_slider_range_start +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_54 +com.google.android.material.R$styleable: int Chip_checkedIcon +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_PopupMenu +wangdaye.com.geometricweather.R$id: int design_menu_item_text +androidx.vectordrawable.R$id: int tag_accessibility_pane_title +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeService getService() +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void drain() +androidx.appcompat.widget.ActionBarOverlayLayout: void setWindowCallback(android.view.Window$Callback) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_CAMELLIA_128_CBC_SHA +com.google.android.material.chip.ChipGroup: void setSingleLine(boolean) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Borderless +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low +com.amap.api.location.AMapLocation: java.lang.String getAdCode() +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_ttcIndex +androidx.appcompat.widget.Toolbar: int getTitleMarginEnd() +wangdaye.com.geometricweather.R$drawable: int avd_show_password +james.adaptiveicon.R$styleable: int[] LinearLayoutCompat +androidx.appcompat.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +androidx.constraintlayout.widget.R$styleable: int[] KeyAttribute +com.google.android.material.bottomnavigation.BottomNavigationView: int getSelectedItemId() +androidx.appcompat.R$attr: int drawableTopCompat +io.reactivex.internal.functions.Functions$HashSetCallable: java.lang.Object call() +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: io.reactivex.Observer observer +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_MIN_INDEX +com.google.android.material.R$attr: int customIntegerValue +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: long serialVersionUID +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActivityChooserView +com.xw.repo.bubbleseekbar.R$attr: int subMenuArrow +okhttp3.internal.ws.RealWebSocket$1: RealWebSocket$1(okhttp3.internal.ws.RealWebSocket) +com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_bottom_material +james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +com.google.android.material.R$styleable: int MaterialCardView_checkedIcon +retrofit2.SkipCallbackExecutorImpl: java.lang.Class annotationType() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String getValue() +okio.GzipSource: GzipSource(okio.Source) +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type upperBound +wangdaye.com.geometricweather.main.dialogs.LocationHelpDialog: LocationHelpDialog() +com.google.android.material.R$attr: int actionBarStyle +com.google.android.material.appbar.HeaderBehavior: HeaderBehavior() +com.tencent.bugly.proguard.r: long a +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderCerts +androidx.appcompat.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +com.google.android.material.R$styleable: int MotionLayout_layoutDescription +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String dailyForecast +wangdaye.com.geometricweather.R$dimen: int preference_dropdown_padding_start +androidx.preference.R$attr: int expandActivityOverflowButtonDrawable +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_26 +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.constraintlayout.widget.R$styleable: int Toolbar_maxButtonHeight +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams access$400(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +com.google.android.material.R$color: int mtrl_tabs_ripple_color +androidx.preference.R$styleable: int AppCompatTheme_actionBarStyle +wangdaye.com.geometricweather.R$id: int baseline +wangdaye.com.geometricweather.R$string: int aqi_1 +androidx.activity.R$id: int accessibility_custom_action_13 +com.bumptech.glide.R$attr: int fontProviderCerts +okhttp3.internal.http.HttpHeaders: boolean hasVaryAll(okhttp3.Response) +okhttp3.internal.connection.RealConnection: okhttp3.Protocol protocol() +cyanogenmod.themes.ThemeChangeRequest: cyanogenmod.themes.ThemeChangeRequest$RequestType mRequestType +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display4 +wangdaye.com.geometricweather.R$styleable: int Slider_android_valueTo +androidx.viewpager2.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: int getSuggestedMinimumWidth() +com.google.android.material.R$styleable: int FloatingActionButton_hideMotionSpec +androidx.preference.R$dimen: int abc_disabled_alpha_material_dark +androidx.constraintlayout.widget.R$attr: int contentInsetRight +com.xw.repo.bubbleseekbar.R$layout: int notification_action +androidx.hilt.work.R$id: int accessibility_custom_action_25 +androidx.appcompat.R$layout: int abc_cascading_menu_item_layout +android.didikee.donate.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_controlBackground +androidx.appcompat.R$styleable: int FontFamilyFont_fontWeight +androidx.appcompat.widget.Toolbar: void setCollapseContentDescription(java.lang.CharSequence) +androidx.hilt.lifecycle.R$styleable: int Fragment_android_name +com.google.android.material.snackbar.Snackbar$SnackbarLayout: Snackbar$SnackbarLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String city +androidx.work.R$attr: R$attr() +james.adaptiveicon.R$styleable: int AppCompatTheme_spinnerStyle +androidx.preference.R$style: int Theme_AppCompat +androidx.appcompat.R$styleable: int MenuItem_tooltipText +androidx.hilt.lifecycle.R$id: int actions +androidx.appcompat.R$attr: int textAppearanceSearchResultSubtitle +androidx.work.impl.background.systemalarm.RescheduleReceiver: RescheduleReceiver() +retrofit2.Platform$Android: Platform$Android() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object readKey(android.database.Cursor,int) +james.adaptiveicon.R$attr: int actionOverflowMenuStyle +com.tencent.bugly.proguard.an: java.util.Map j +com.google.android.material.textfield.TextInputLayout: void removeOnEndIconChangedListener(com.google.android.material.textfield.TextInputLayout$OnEndIconChangedListener) +com.turingtechnologies.materialscrollbar.R$attr: int progressBarPadding +com.jaredrummler.android.colorpicker.R$id: int action_mode_bar_stub +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableCompatState +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String cityId +androidx.preference.R$attr: int subtitleTextStyle +androidx.lifecycle.ProcessLifecycleOwner$3$1: void onActivityPostResumed(android.app.Activity) +okio.Buffer$UnsafeCursor: int seek(long) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_28 +android.didikee.donate.R$styleable: int AppCompatTheme_editTextColor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: long updateTime +io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit) +com.google.android.material.R$id: int accessibility_custom_action_2 +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_NFC +okio.AsyncTimeout$1: void flush() +retrofit2.ParameterHandler$Query: retrofit2.Converter valueConverter +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onSuccess(java.lang.Object) +com.google.android.material.R$styleable: int KeyAttribute_curveFit +cyanogenmod.platform.R$string +androidx.appcompat.R$styleable: int AppCompatTheme_windowActionBarOverlay +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getTotalPrecipitation() +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderPackage +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_gradientRadius +james.adaptiveicon.R$attr: int textAppearancePopupMenuHeader +com.amap.api.location.AMapLocationClientOption: boolean g +com.turingtechnologies.materialscrollbar.R$styleable: int[] MaterialButton +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: CaiYunMainlyResult$CurrentBean$VisibilityBean() +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleTextAppearance +com.google.android.material.R$styleable: int KeyPosition_transitionEasing +com.google.android.material.R$dimen: int mtrl_calendar_days_of_week_height +wangdaye.com.geometricweather.R$drawable: int shortcuts_rain +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: androidx.core.graphics.PathParser$PathDataNode[] getPathData() +wangdaye.com.geometricweather.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$attr: int fragment +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomSheetDialog +io.reactivex.Observable: io.reactivex.Observable switchMap(io.reactivex.functions.Function) +androidx.legacy.coreutils.R$integer: int status_bar_notification_info_maxnum +androidx.constraintlayout.widget.R$color: int abc_hint_foreground_material_light +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat +okio.Sink: void close() +okio.Okio$2: long read(okio.Buffer,long) +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: void onError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_progress_in_float +com.google.android.material.R$color: int design_default_color_surface +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String key() +androidx.preference.R$id: int accessibility_custom_action_21 +android.didikee.donate.R$dimen: int abc_dialog_min_width_minor +com.google.android.material.R$styleable: int CustomAttribute_customPixelDimension +com.turingtechnologies.materialscrollbar.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$color: int abc_secondary_text_material_dark +com.google.android.material.R$id: int tag_accessibility_actions +com.amap.api.location.AMapLocationClientOption: boolean f +androidx.hilt.lifecycle.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analogContainer_light +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_36 +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit MMHG +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ButtonBar +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onSubscribe(org.reactivestreams.Subscription) +com.xw.repo.bubbleseekbar.R$style: int Base_DialogWindowTitle_AppCompat +androidx.preference.R$drawable: int abc_list_selector_background_transition_holo_dark +androidx.constraintlayout.utils.widget.ImageFilterView: void setBrightness(float) +retrofit2.ParameterHandler$FieldMap +android.didikee.donate.R$drawable: int abc_btn_radio_to_on_mtrl_015 +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode CLEAR +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange Past24HourRange +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int RainProbability +com.jaredrummler.android.colorpicker.R$drawable: int notification_tile_bg +com.google.android.material.R$dimen: int mtrl_tooltip_arrowSize +com.jaredrummler.android.colorpicker.R$attr: int actionBarTabTextStyle +com.jaredrummler.android.colorpicker.R$attr: int switchTextOff +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +com.google.android.material.R$styleable: int ConstraintSet_drawPath +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_ratingBarStyle +android.didikee.donate.R$drawable: int abc_list_selector_disabled_holo_dark +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List ziwaixian +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Geometry +okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman INSTANCE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean() +androidx.constraintlayout.widget.R$attr: int currentState +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.Observer downstream +androidx.appcompat.R$layout: int abc_alert_dialog_button_bar_material +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_shapeAppearanceOverlay +androidx.preference.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +android.didikee.donate.R$dimen: int abc_dialog_fixed_height_major +okhttp3.Cookie$Builder: boolean hostOnly +cyanogenmod.themes.IThemeService: void rebuildResourceCache() +androidx.appcompat.widget.AppCompatSpinner: void setDropDownVerticalOffset(int) +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation observation +androidx.fragment.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.R$styleable: int Preference_fragment +wangdaye.com.geometricweather.R$id: int item_icon_provider_title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getO3() +com.google.android.material.R$attr: int placeholderTextColor +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver(io.reactivex.CompletableObserver,io.reactivex.functions.Function,boolean) +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarItemBackground +wangdaye.com.geometricweather.R$animator: int weather_rain_3 +androidx.recyclerview.R$id: int action_image +com.tencent.bugly.crashreport.crash.d: void a(com.tencent.bugly.crashreport.crash.d) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_top_material +androidx.preference.R$attr: int reverseLayout +retrofit2.RequestFactory$Builder: java.util.Set relativeUrlParamNames +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_AM_PM_VALIDATOR +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog +androidx.constraintlayout.widget.R$attr: int textAppearancePopupMenuHeader +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabView +androidx.coordinatorlayout.widget.CoordinatorLayout: androidx.core.view.WindowInsetsCompat getLastWindowInsets() +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onError(java.lang.Throwable) +cyanogenmod.util.ColorUtils$1 +com.jaredrummler.android.colorpicker.R$styleable: int[] AnimatedStateListDrawableItem +wangdaye.com.geometricweather.R$attr: int cpv_animDuration +com.google.android.material.timepicker.TimeModel +androidx.constraintlayout.widget.R$styleable: int TextAppearance_textLocale +android.didikee.donate.R$dimen: int abc_disabled_alpha_material_dark +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display4 +com.google.android.material.R$styleable: int OnSwipe_touchRegionId +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +androidx.preference.R$styleable: int CheckBoxPreference_android_disableDependentsState +cyanogenmod.providers.CMSettings$DelimitedListValidator: java.lang.String mDelimiter +io.reactivex.internal.util.EmptyComponent: org.reactivestreams.Subscriber asSubscriber() +wangdaye.com.geometricweather.R$color: int colorTextDark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean aqi +com.google.android.material.button.MaterialButton: void setStrokeColorResource(int) +androidx.legacy.coreutils.R$dimen: int notification_top_pad +androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedHeightMinor +wangdaye.com.geometricweather.R$attr: int errorTextColor +wangdaye.com.geometricweather.R$styleable: int Preference_icon +james.adaptiveicon.R$attr: int buttonBarPositiveButtonStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer confidence +androidx.preference.R$styleable: int DialogPreference_dialogTitle +androidx.drawerlayout.R$styleable: int ColorStateListItem_android_alpha +com.jaredrummler.android.colorpicker.R$attr: int voiceIcon +androidx.appcompat.R$styleable: int AnimatedStateListDrawableItem_android_drawable +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedPassword(java.lang.String) +androidx.viewpager.widget.PagerTitleStrip: void setTextSpacing(int) +com.google.android.material.R$color: int design_dark_default_color_on_surface +okhttp3.Cookie: int hashCode() +james.adaptiveicon.R$styleable +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.R$string: int key_notification_background_color +com.google.android.material.R$style: int Widget_Design_BottomSheet_Modal +wangdaye.com.geometricweather.R$attr: int cpv_alphaChannelVisible +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_12 +com.google.android.material.slider.RangeSlider: float getValueFrom() +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_translation_z_hovered_focused +retrofit2.OkHttpCall: okhttp3.Call createRawCall() +com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy valueOf(java.lang.String) +okhttp3.Dispatcher: Dispatcher(java.util.concurrent.ExecutorService) +okio.Buffer: okio.ByteString sha256() +androidx.preference.R$styleable: int AppCompatImageView_tintMode retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: io.reactivex.Observer observer -com.google.android.material.R$attr: int closeIcon -com.google.android.material.bottomappbar.BottomAppBar$Behavior -com.turingtechnologies.materialscrollbar.R$anim: int abc_popup_enter -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.ObservableSource source -com.xw.repo.bubbleseekbar.R$id: int sides -com.xw.repo.bubbleseekbar.R$attr: int spinBars -com.jaredrummler.android.colorpicker.R$styleable: int Preference_shouldDisableView -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: void providerDied() -james.adaptiveicon.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -okhttp3.CipherSuite$1: int compare(java.lang.String,java.lang.String) -androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_radio -com.xw.repo.bubbleseekbar.R$attr: int popupMenuStyle -androidx.preference.R$styleable: int CheckBoxPreference_android_summaryOff -android.didikee.donate.R$attr: int listPreferredItemPaddingLeft -androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupMenu -androidx.preference.R$style: int Base_V23_Theme_AppCompat -androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -com.tencent.bugly.Bugly: boolean enable -wangdaye.com.geometricweather.R$style: int Base_V22_Theme_AppCompat -com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Text -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display4 -androidx.appcompat.R$color: int tooltip_background_dark -androidx.constraintlayout.widget.R$styleable: int AlertDialog_buttonIconDimen -james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_weightSum -androidx.preference.R$styleable: int SwitchPreferenceCompat_disableDependentsState -com.google.android.material.button.MaterialButton: MaterialButton(android.content.Context,android.util.AttributeSet) -androidx.swiperefreshlayout.R$dimen: int compat_notification_large_icon_max_height -retrofit2.http.Header -androidx.constraintlayout.widget.R$anim -androidx.appcompat.widget.DropDownListView: void setSelectorEnabled(boolean) -wangdaye.com.geometricweather.R$attr: int buttonTintMode -james.adaptiveicon.R$styleable: int Toolbar_contentInsetRight -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common -com.google.android.material.R$layout: int mtrl_picker_header_dialog -androidx.appcompat.R$attr: int showTitle -androidx.lifecycle.SavedStateViewModelFactory: java.lang.reflect.Constructor findMatchingConstructor(java.lang.Class,java.lang.Class[]) -james.adaptiveicon.R$attr: int popupMenuStyle -androidx.preference.R$style: int TextAppearance_Compat_Notification -com.xw.repo.bubbleseekbar.R$dimen: int compat_button_padding_vertical_material -wangdaye.com.geometricweather.R$id: int CTRL -androidx.transition.R$dimen -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Switch -com.google.android.material.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex -james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlNormal -com.tencent.bugly.crashreport.common.info.a: void a(int) -androidx.preference.R$color: int primary_text_disabled_material_dark -androidx.preference.R$styleable: int ActionBar_contentInsetStartWithNavigation -androidx.hilt.R$styleable: int[] GradientColorItem -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_navigationIcon -retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: java.lang.Exception $this_suspendAndThrow$inlined -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onNext(java.lang.Object) -android.didikee.donate.R$attr: int backgroundTintMode -androidx.appcompat.R$attr: int indeterminateProgressStyle -android.didikee.donate.R$color: int secondary_text_disabled_material_light -com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportImageTintList(android.content.res.ColorStateList) -com.google.android.material.card.MaterialCardView: float getCardViewRadius() -androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context) -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_ttcIndex -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemHeight -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_3 -com.google.android.gms.common.internal.zas -androidx.work.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.R$styleable: int Toolbar_titleTextColor -com.google.gson.internal.LinkedTreeMap: java.util.Set keySet() -com.baidu.location.Poi: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$color: int design_fab_stroke_top_outer_color -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: java.util.List alerts -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat -androidx.drawerlayout.R$dimen: int compat_button_inset_vertical_material -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Subhead -okhttp3.internal.http2.Http2Connection$1: Http2Connection$1(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okhttp3.internal.http2.ErrorCode) -wangdaye.com.geometricweather.R$drawable: int shortcuts_rain_foreground -com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -androidx.appcompat.R$drawable: int abc_ratingbar_indicator_material -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$id: int NO_DEBUG -com.google.android.material.tabs.TabLayout: void setScrollAnimatorListener(android.animation.Animator$AnimatorListener) -com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_bias -com.tencent.bugly.crashreport.crash.c: java.lang.String o -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_progress -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: java.lang.String getValue() -androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Info -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_track -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum Maximum -james.adaptiveicon.R$styleable: int ActionBar_indeterminateProgressStyle -androidx.transition.R$styleable: int GradientColorItem_android_color -com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_enabled -retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler parseParameter(int,java.lang.reflect.Type,java.lang.annotation.Annotation[],boolean) -wangdaye.com.geometricweather.R$color: int striking_red -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title -androidx.appcompat.widget.AppCompatSpinner: void setAdapter(android.widget.SpinnerAdapter) -android.didikee.donate.R$id: int wrap_content -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Large -cyanogenmod.weather.RequestInfo$Builder: RequestInfo$Builder(cyanogenmod.weather.IRequestInfoListener) -okhttp3.CacheControl$Builder: CacheControl$Builder() -androidx.constraintlayout.widget.R$dimen: int notification_main_column_padding_top -wangdaye.com.geometricweather.R$color: int lightPrimary_5 -com.xw.repo.bubbleseekbar.R$dimen: int notification_action_text_size -androidx.preference.R$attr: int listMenuViewStyle -wangdaye.com.geometricweather.R$id: int textTop -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Button -com.google.android.material.R$id: int expand_activities_button -cyanogenmod.app.ThemeVersion: cyanogenmod.app.ThemeVersion$ComponentVersion getComponentVersion(cyanogenmod.app.ThemeComponent) -cyanogenmod.app.ICustomTileListener$Stub$Proxy: android.os.IBinder mRemote -android.didikee.donate.R$style: int Base_V7_Widget_AppCompat_EditText -com.jaredrummler.android.colorpicker.R$styleable: int Preference_enabled -androidx.customview.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -wangdaye.com.geometricweather.common.basic.models.weather.History: java.util.Date date -wangdaye.com.geometricweather.R$drawable: int abc_dialog_material_background -wangdaye.com.geometricweather.R$styleable: int Slider_android_valueFrom -androidx.constraintlayout.widget.R$id: int startHorizontal -wangdaye.com.geometricweather.R$id: int search_plate -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listDividerAlertDialog -okhttp3.internal.http2.Hpack: java.util.Map NAME_TO_FIRST_INDEX -com.jaredrummler.android.colorpicker.R$id: int action_bar_subtitle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String co -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial -androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache$CallbackInfo createInfo(java.lang.Class,java.lang.reflect.Method[]) -cyanogenmod.app.IPartnerInterface$Stub$Proxy -okhttp3.internal.ws.RealWebSocket$Close -wangdaye.com.geometricweather.R$style: int Widget_Design_AppBarLayout -androidx.preference.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -james.adaptiveicon.R$drawable: int abc_menu_hardkey_panel_mtrl_mult -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Button -com.google.android.material.R$styleable: int Constraint_flow_lastVerticalStyle -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Today -james.adaptiveicon.R$styleable: int AppCompatTheme_radioButtonStyle -com.bumptech.glide.integration.okhttp.R$attr: int fontProviderPackage -okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor$Level level -android.didikee.donate.R$color: int material_grey_50 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial -wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light_focused -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String DATE_CREATED -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.preference.R$style: int Base_Widget_AppCompat_ButtonBar -androidx.work.R$styleable: int GradientColor_android_type -androidx.viewpager.R$styleable: int[] FontFamilyFont +androidx.appcompat.widget.FitWindowsFrameLayout: FitWindowsFrameLayout(android.content.Context,android.util.AttributeSet) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Bridge +com.turingtechnologies.materialscrollbar.R$drawable: int abc_item_background_holo_dark +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(double) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +androidx.work.R$dimen: int notification_large_icon_width +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonBarStyle +okhttp3.internal.http1.Http1Codec$FixedLengthSink: Http1Codec$FixedLengthSink(okhttp3.internal.http1.Http1Codec,long) +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +com.google.android.material.R$styleable: int ConstraintSet_layout_constrainedHeight +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_requireAdaptiveBacklightForSunlightEnhancement +wangdaye.com.geometricweather.R$string: int transition_activity_search_txt +wangdaye.com.geometricweather.R$dimen: int abc_dialog_padding_material +com.tencent.bugly.proguard.y: boolean l +com.jaredrummler.android.colorpicker.R$attr: int tickMarkTint +com.google.android.material.R$id: int scrollable +androidx.swiperefreshlayout.R$id: R$id() +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_always_show_bubble_delay +androidx.activity.R$id: int accessibility_custom_action_14 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelMenuListWidth +cyanogenmod.weather.RequestInfo: RequestInfo(android.os.Parcel,cyanogenmod.weather.RequestInfo$1) +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void dispose() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer windChillTemperature +com.xw.repo.bubbleseekbar.R$id: int search_go_btn +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$id +com.amap.api.location.AMapLocation: java.lang.String getLocationDetail() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX getAqi() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust WindGust +androidx.preference.R$attr: int editTextStyle +androidx.activity.R$layout +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onScreenTurnedOff() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setCo(java.lang.Float) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionButton_CloseMode +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: MfForecastResult$Forecast$Weather() +okhttp3.Response$Builder: okhttp3.Request request +com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_chainStyle +cyanogenmod.profiles.RingModeSettings: cyanogenmod.profiles.RingModeSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean getLiveLockScreenEnabled() +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: AirQuality(java.lang.String,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +okhttp3.internal.io.FileSystem$1: void deleteContents(java.io.File) +wangdaye.com.geometricweather.R$id: int scrollBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.lang.String getUnit() +com.xw.repo.bubbleseekbar.R$attr: int subtitle +cyanogenmod.providers.CMSettings$System: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit valueOf(java.lang.String) +com.google.android.material.button.MaterialButton: void setIconPadding(int) +com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_focused +com.google.android.material.R$attr: int useCompatPadding +wangdaye.com.geometricweather.R$animator: int touch_raise +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabView +com.turingtechnologies.materialscrollbar.R$id: int action_bar_spinner +androidx.fragment.R$dimen: int notification_large_icon_height +androidx.preference.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontSpinner +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSearchResultSubtitle +androidx.constraintlayout.widget.R$attr: int percentHeight +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks access$700(cyanogenmod.externalviews.KeyguardExternalView) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindDirection(java.lang.String) +com.amap.api.fence.GeoFence: void setStatus(int) +com.amap.api.fence.PoiItem: java.lang.String getPoiType() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Large +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconCheckable +androidx.legacy.coreutils.R$integer: R$integer() +com.jaredrummler.android.colorpicker.R$color: int foreground_material_light +wangdaye.com.geometricweather.R$styleable: int Transition_autoTransition +com.xw.repo.bubbleseekbar.R$attr: int tickMarkTintMode +wangdaye.com.geometricweather.R$string: int settings_category_widget +androidx.viewpager2.R$id: int notification_main_column +james.adaptiveicon.R$styleable: int[] TextAppearance +com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetRight +wangdaye.com.geometricweather.R$drawable: int ic_about +wangdaye.com.geometricweather.common.basic.models.weather.Alert: Alert(android.os.Parcel) +com.google.android.gms.common.R$string: R$string() +com.jaredrummler.android.colorpicker.R$attr: int cpv_alphaChannelText +wangdaye.com.geometricweather.R$array: int widget_card_style_values +com.amap.api.location.AMapLocation: int ERROR_CODE_SERVICE_FAIL +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Dialog_Alert +androidx.hilt.R$string +androidx.preference.R$attr: int actionModeFindDrawable +androidx.preference.R$attr: int dividerPadding +androidx.viewpager2.R$style: int Widget_Compat_NotificationActionContainer +cyanogenmod.externalviews.ExternalView$2: ExternalView$2(cyanogenmod.externalviews.ExternalView,int,int,int,int,boolean,android.graphics.Rect) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String country +com.google.android.material.R$styleable: int ActionBar_titleTextStyle +retrofit2.BuiltInConverters$UnitResponseBodyConverter: BuiltInConverters$UnitResponseBodyConverter() +wangdaye.com.geometricweather.R$styleable: int OnSwipe_dragDirection +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow +com.google.android.material.R$attr: int layout_scrollFlags +androidx.lifecycle.MediatorLiveData$Source +wangdaye.com.geometricweather.R$attr: int behavior_saveFlags +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pm25 +androidx.appcompat.widget.AppCompatCheckBox: android.content.res.ColorStateList getSupportButtonTintList() +james.adaptiveicon.R$styleable: int MenuView_android_itemIconDisabledAlpha +androidx.constraintlayout.widget.R$styleable: int SearchView_layout +com.google.android.material.card.MaterialCardView: android.graphics.drawable.Drawable getCheckedIcon() +com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.content.res.ColorStateList getIconTintList() +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_textLocale +androidx.lifecycle.SavedStateViewModelFactory: SavedStateViewModelFactory(android.app.Application,androidx.savedstate.SavedStateRegistryOwner) +james.adaptiveicon.AdaptiveIconView: android.graphics.Path getPath() +okhttp3.internal.ws.RealWebSocket$Streams: boolean client +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorHeight(int) +com.turingtechnologies.materialscrollbar.R$id: int transition_current_scene +okhttp3.Cache$CacheResponseBody: okhttp3.internal.cache.DiskLruCache$Snapshot snapshot +com.xw.repo.bubbleseekbar.R$integer: int abc_config_activityDefaultDur +androidx.work.R$id: int icon_group +com.tencent.bugly.crashreport.common.info.a: void b(java.lang.String) +com.google.android.material.R$styleable: int Constraint_flow_firstVerticalBias +com.google.gson.stream.JsonReader: void beginArray() +cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper mWrapper +androidx.constraintlayout.widget.R$id: int decelerate +okhttp3.OkHttpClient: okhttp3.Dispatcher dispatcher() +com.google.android.material.floatingactionbutton.FloatingActionButton: void show(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) +androidx.preference.R$string: int status_bar_notification_info_overflow +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListMenuView +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.util.Date Set +com.google.android.material.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +okio.HashingSource: HashingSource(okio.Source,okio.ByteString,java.lang.String) +com.google.android.material.R$attr: int hintEnabled +androidx.preference.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +androidx.drawerlayout.R$attr: int fontWeight +androidx.appcompat.R$styleable: int AppCompatTheme_textColorSearchUrl +okhttp3.internal.cache.DiskLruCache$1: okhttp3.internal.cache.DiskLruCache this$0 +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: long serialVersionUID +com.jaredrummler.android.colorpicker.R$attr: int listLayout +com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableTransition +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: java.lang.Object poll() +android.support.v4.app.INotificationSideChannel$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.google.android.material.R$drawable: int abc_btn_check_to_on_mtrl_015 +wangdaye.com.geometricweather.common.ui.activities.AllergenActivity +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean() +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Dialog +androidx.preference.R$styleable: int AppCompatTheme_windowMinWidthMajor +com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.ar a(java.util.List,int) +com.google.gson.FieldNamingPolicy$5 +wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$attr: int scrimBackground +okio.Buffer$1: void flush() +com.tencent.bugly.crashreport.crash.anr.a: long c +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_customNavigationLayout +com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableCompat +wangdaye.com.geometricweather.background.polling.basic.UpdateService +okio.AsyncTimeout: long timeoutAt +okio.GzipSink: void flush() +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderQuery +androidx.lifecycle.LiveData$LifecycleBoundObserver +wangdaye.com.geometricweather.R$styleable: int MaterialButton_strokeColor +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Switch +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_elevation +james.adaptiveicon.R$style: int Widget_AppCompat_AutoCompleteTextView +androidx.preference.R$drawable: int abc_spinner_mtrl_am_alpha +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1 +com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarButtonStyle +wangdaye.com.geometricweather.R$string: int key_service_provider +androidx.appcompat.widget.LinearLayoutCompat +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type valueOf(java.lang.String) +com.google.android.material.R$dimen: int mtrl_card_checked_icon_size +james.adaptiveicon.R$styleable: int MenuItem_android_checkable +wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary_variant +okhttp3.internal.ws.RealWebSocket: void loopReader() +wangdaye.com.geometricweather.R$attr: int flow_lastVerticalStyle +com.tencent.bugly.proguard.p: android.database.Cursor a(java.lang.String,java.lang.String[],java.lang.String,java.lang.String[],com.tencent.bugly.proguard.o,boolean) +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderPackage +androidx.constraintlayout.widget.R$layout: int abc_action_bar_title_item +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void innerError(io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver,java.lang.Throwable) +androidx.preference.R$attr: int actionDropDownStyle +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_checked +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer windChillTemperature +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display1 +okio.ByteString: okio.ByteString EMPTY +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onError(java.lang.Throwable) +okhttp3.internal.cache2.FileOperator: void write(long,okio.Buffer,long) +wangdaye.com.geometricweather.R$id: int widget_day_week_week_4 +cyanogenmod.weatherservice.WeatherProviderService: WeatherProviderService() +okio.HashingSink: okio.HashingSink hmacSha512(okio.Sink,okio.ByteString) +com.turingtechnologies.materialscrollbar.R$attr: int layout_scrollFlags +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderFetchStrategy +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: HourlyEntityDao$Properties() +io.reactivex.Observable: io.reactivex.Observable mergeArrayDelayError(io.reactivex.ObservableSource[]) +cyanogenmod.app.CustomTile$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit +com.tencent.bugly.proguard.v: java.lang.String n +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HistoryEntityDao getHistoryEntityDao() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getPm25() +wangdaye.com.geometricweather.R$style: int title_text +com.google.android.material.navigation.NavigationView$SavedState: android.os.Parcelable$Creator CREATOR +okhttp3.internal.http.HttpHeaders: java.lang.String readToken(okio.Buffer) +androidx.hilt.work.R$attr: int fontProviderAuthority +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Consumer) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Colored +com.google.gson.stream.JsonWriter: java.io.Writer out +okhttp3.internal.cache.DiskLruCache: boolean isClosed() +wangdaye.com.geometricweather.R$id: int info +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.functions.Function mapper +com.amap.api.location.DPoint$1: java.lang.Object[] newArray(int) androidx.coordinatorlayout.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int CloudCover -androidx.preference.R$dimen: int abc_text_size_small_material -okhttp3.Cache: okhttp3.internal.cache.InternalCache internalCache -io.reactivex.Observable: io.reactivex.Completable switchMapCompletable(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_85 -androidx.constraintlayout.widget.R$styleable: int SearchView_android_imeOptions -com.tencent.bugly.proguard.l: boolean a(int,int) -okhttp3.internal.cache.CacheInterceptor: CacheInterceptor(okhttp3.internal.cache.InternalCache) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastVerticalBias -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_thickness -androidx.lifecycle.extensions.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String date -com.google.android.material.R$styleable: int ChipGroup_chipSpacingHorizontal -androidx.appcompat.R$styleable: int Toolbar_titleMarginStart -androidx.preference.R$attr: int drawableEndCompat -cyanogenmod.profiles.LockSettings: LockSettings(int) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionButtonStyle -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_NOENOUGHSATELLITES -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean h -com.tencent.bugly.crashreport.CrashReport: java.util.Set getAllUserDataKeys(android.content.Context) -android.didikee.donate.R$style: int Widget_AppCompat_PopupMenu -androidx.preference.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem -com.google.android.material.chip.Chip: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() -io.reactivex.internal.schedulers.AbstractDirectTask: long serialVersionUID -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig hourlyEntityDaoConfig -wangdaye.com.geometricweather.db.entities.DailyEntity: void setSunSetDate(java.util.Date) -androidx.appcompat.R$string: R$string() -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: float getActionTextColorAlpha() -com.google.android.material.R$styleable: int ConstraintSet_barrierMargin -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display3 -wangdaye.com.geometricweather.R$layout: int design_text_input_end_icon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setFeelsLike(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean) -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onError(java.lang.Throwable) -james.adaptiveicon.R$dimen: int abc_text_size_body_2_material -com.amap.api.location.DPoint: double b -com.google.android.material.R$styleable: int BottomAppBar_paddingBottomSystemWindowInsets -wangdaye.com.geometricweather.R$dimen: int tooltip_margin -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setEn_US(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String zh_CN -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isModifyInHour() -androidx.vectordrawable.R$styleable: int[] ColorStateListItem -okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.RequestBody) -com.amap.api.fence.GeoFence$1: java.lang.Object[] newArray(int) -wangdaye.com.geometricweather.R$bool: int enable_system_alarm_service_default -com.google.android.material.R$attr: int thumbTextPadding -james.adaptiveicon.R$styleable: int Spinner_android_dropDownWidth -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeShareDrawable -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float Ozone -cyanogenmod.weather.CMWeatherManager: java.util.Map access$300(cyanogenmod.weather.CMWeatherManager) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String hourlyForecast -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_textLocale -androidx.recyclerview.R$styleable: int GradientColor_android_tileMode -androidx.constraintlayout.widget.R$attr: int chainUseRtl -androidx.viewpager2.R$id: int accessibility_custom_action_31 -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_showDividers -wangdaye.com.geometricweather.R$id: int design_menu_item_action_area_stub -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_AutoCompleteTextView -androidx.constraintlayout.widget.R$dimen: int compat_control_corner_material -cyanogenmod.weather.RequestInfo: boolean mIsQueryOnly -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_TEXT -com.turingtechnologies.materialscrollbar.R$id: int add -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void dispose() -com.google.android.material.R$attr: R$attr() -james.adaptiveicon.R$attr: int srcCompat -androidx.swiperefreshlayout.R$attr: int fontProviderPackage -androidx.preference.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation -com.google.android.material.R$styleable: int Layout_layout_constraintVertical_bias -androidx.recyclerview.R$dimen: int item_touch_helper_max_drag_scroll_per_frame -io.reactivex.internal.util.EmptyComponent: void onSuccess(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int Toolbar_subtitle -androidx.constraintlayout.widget.R$attr: int waveVariesBy -com.google.android.material.R$anim: int abc_fade_in -com.jaredrummler.android.colorpicker.R$string: int summary_collapsed_preference_list -com.google.android.material.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop -io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.ObservableSource) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver -james.adaptiveicon.R$styleable: int[] View -androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_visible -com.jaredrummler.android.colorpicker.ColorPanelView: int getColor() -cyanogenmod.app.Profile: int mNotificationLightMode -androidx.preference.R$integer: int cancel_button_image_alpha -wangdaye.com.geometricweather.R$drawable: int notif_temp_116 -okhttp3.CipherSuite: java.util.List forJavaNames(java.lang.String[]) -okhttp3.internal.http2.Http2Connection: void writeData(int,boolean,okio.Buffer,long) -wangdaye.com.geometricweather.R$string: int night -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation BOTTOM -androidx.recyclerview.R$styleable: int FontFamily_fontProviderPackage -androidx.preference.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -androidx.appcompat.R$drawable: int abc_cab_background_top_mtrl_alpha -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar_Indicator -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Headline -com.google.android.material.R$styleable: int MotionLayout_currentState -com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_material_light -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language TURKISH -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_radius -retrofit2.OptionalConverterFactory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -androidx.hilt.R$drawable: int notification_template_icon_bg -androidx.lifecycle.ComputableLiveData: java.lang.Object compute() -com.google.android.material.R$attr: int cornerSizeBottomLeft -androidx.hilt.R$id: int accessibility_custom_action_16 -okhttp3.TlsVersion: okhttp3.TlsVersion SSL_3_0 -wangdaye.com.geometricweather.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_width -com.xw.repo.bubbleseekbar.R$anim: int abc_popup_enter -com.turingtechnologies.materialscrollbar.R$attr: int boxBackgroundMode -androidx.work.BackoffPolicy: androidx.work.BackoffPolicy LINEAR -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_submit -wangdaye.com.geometricweather.R$styleable: int Chip_closeIconVisible -com.google.android.material.R$color: int mtrl_popupmenu_overlay_color -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void drain() -com.xw.repo.bubbleseekbar.R$id: int src_atop -androidx.appcompat.widget.SearchView$SearchAutoComplete: int getSearchViewTextMinWidthDp() -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_Search -cyanogenmod.app.ILiveLockScreenManager: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -retrofit2.OkHttpCall$1: OkHttpCall$1(retrofit2.OkHttpCall,retrofit2.Callback) -wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date riseDate -androidx.appcompat.widget.LinearLayoutCompat: int getDividerPadding() -wangdaye.com.geometricweather.R$attr: int state_liftable -james.adaptiveicon.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -com.google.android.material.chip.Chip: void setBackground(android.graphics.drawable.Drawable) -androidx.constraintlayout.widget.R$attr: int windowFixedWidthMinor -cyanogenmod.app.BaseLiveLockManagerService: void enforceSamePackageOrSystem(java.lang.String,cyanogenmod.app.LiveLockScreenInfo) -androidx.preference.R$styleable: int Preference_android_selectable -wangdaye.com.geometricweather.R$dimen: int mtrl_toolbar_default_height -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_speedValue -com.xw.repo.bubbleseekbar.R$attr: int fontProviderQuery -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_visible -com.google.android.material.R$color: int mtrl_error -com.autonavi.aps.amapapi.model.AMapLocationServer: void b(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_115 -io.reactivex.disposables.RunnableDisposable: void onDisposed(java.lang.Object) -com.google.android.material.R$layout: int design_navigation_item_header -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -james.adaptiveicon.R$attr: int divider -com.google.android.material.R$styleable: int AppCompatTheme_alertDialogTheme -com.tencent.bugly.proguard.l -io.reactivex.internal.observers.DeferredScalarDisposable: void clear() -androidx.lifecycle.extensions.R$attr: int fontProviderFetchTimeout -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode HTTP_1_1_REQUIRED -retrofit2.converter.gson.GsonConverterFactory: retrofit2.Converter responseBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginStart() -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getPM10() -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: $Gson$Types$ParameterizedTypeImpl(java.lang.reflect.Type,java.lang.reflect.Type,java.lang.reflect.Type[]) -androidx.vectordrawable.R$id: int accessibility_custom_action_8 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalBias -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_9 -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHorizontal_weight -androidx.viewpager2.R$styleable: int[] ViewPager2 -androidx.constraintlayout.helper.widget.Flow: void setPaddingLeft(int) -james.adaptiveicon.R$id: int search_bar +androidx.appcompat.R$style: int TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.R$attr: int pathMotionArc +retrofit2.KotlinExtensions: java.lang.Object create(retrofit2.Retrofit) +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: org.reactivestreams.Subscription upstream +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar_Small +androidx.fragment.R$id: int blocking +androidx.activity.R$drawable: R$drawable() +okhttp3.internal.platform.OptionalMethod +io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setOnClickListener(android.view.View$OnClickListener) -com.xw.repo.bubbleseekbar.R$attr: int drawableSize -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_20 -androidx.appcompat.R$id: int edit_query -androidx.work.WorkInfo$State: androidx.work.WorkInfo$State FAILED -wangdaye.com.geometricweather.R$id: int searchContainer -androidx.preference.R$drawable: int abc_tab_indicator_mtrl_alpha -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getPowerProfile -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog -okhttp3.internal.http1.Http1Codec: okhttp3.ResponseBody openResponseBody(okhttp3.Response) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar_Indicator -cyanogenmod.power.PerformanceManager: boolean checkService() -android.didikee.donate.R$style: int Base_Theme_AppCompat_CompactMenu -com.amap.api.location.APSService: int onStartCommand(android.content.Intent,int,int) -io.reactivex.internal.subscribers.DeferredScalarSubscriber: DeferredScalarSubscriber(org.reactivestreams.Subscriber) -androidx.preference.R$dimen: int abc_button_inset_vertical_material -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_overflow_material -androidx.appcompat.widget.LinearLayoutCompat: float getWeightSum() -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.ErrorCode getErrorCode() -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_28 -okhttp3.internal.cache.DiskLruCache: void readJournalLine(java.lang.String) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: int getWindowFlags() -com.google.android.material.R$styleable: int MaterialTextAppearance_android_letterSpacing -com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String a -okhttp3.internal.platform.Platform -androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -okio.ByteString: okio.ByteString hmacSha1(okio.ByteString) -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode CONNECT_ERROR -wangdaye.com.geometricweather.R$styleable: int Slider_android_enabled -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void drain() -retrofit2.http.HEAD -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed Speed -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_layout -james.adaptiveicon.R$id: int spacer -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getIcePrecipitation() -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_maxWidth -com.turingtechnologies.materialscrollbar.R$id: int tabMode -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.R$string: int wind_7 -cyanogenmod.providers.CMSettings$Secure: java.lang.String PERFORMANCE_PROFILE -android.didikee.donate.R$styleable: int DrawerArrowToggle_color -androidx.swiperefreshlayout.R$dimen: int notification_top_pad -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -androidx.viewpager.R$style: R$style() -wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_chainStyle -wangdaye.com.geometricweather.R$color: int androidx_core_secondary_text_default_material_light -com.google.android.material.R$id: int asConfigured -com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark_focused -com.google.android.material.R$styleable: int MockView_mock_labelBackgroundColor -com.xw.repo.bubbleseekbar.R$attr: int actionBarTabStyle -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BACK_WAKE_SCREEN_VALIDATOR -androidx.fragment.app.Fragment$2 -okhttp3.internal.http2.Huffman: void buildTree() -io.reactivex.internal.util.ArrayListSupplier: io.reactivex.functions.Function asFunction() -com.github.rahatarmanahmed.cpv.CircularProgressView$2: float val$currentProgress -android.didikee.donate.R$styleable: int SwitchCompat_switchMinWidth -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_btn_state_list_anim -androidx.lifecycle.LiveData: void observeForever(androidx.lifecycle.Observer) -wangdaye.com.geometricweather.R$attr: int alertDialogCenterButtons -com.tencent.bugly.crashreport.biz.b: long d -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_1_material -androidx.preference.SwitchPreferenceCompat: SwitchPreferenceCompat(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$id: int textSpacerNoButtons -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardElevation -wangdaye.com.geometricweather.R$id: int BOTTOM_START -com.bumptech.glide.R$styleable: int GradientColor_android_endX -android.didikee.donate.R$styleable: int AppCompatTextView_fontFamily -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_inverse_material_light -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: MfForecastResult$Forecast$Rain() -androidx.preference.R$drawable: int abc_action_bar_item_background_material -androidx.constraintlayout.widget.R$id: int contentPanel -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -androidx.appcompat.R$styleable: int Toolbar_navigationIcon -okio.Buffer: okio.Buffer writeUtf8(java.lang.String) -okhttp3.OkHttpClient: OkHttpClient(okhttp3.OkHttpClient$Builder) -androidx.appcompat.R$styleable: int SearchView_suggestionRowLayout -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_rippleColor -com.tencent.bugly.proguard.am: java.lang.String j -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String parent -androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -wangdaye.com.geometricweather.R$color: int design_dark_default_color_primary -com.bumptech.glide.R$dimen: int compat_notification_large_icon_max_height -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onNext(java.lang.Object) -androidx.swiperefreshlayout.R$layout: int notification_action -com.google.android.material.R$dimen: int mtrl_calendar_header_text_padding -com.tencent.bugly.proguard.ac: ac() -cyanogenmod.app.ILiveLockScreenManager$Stub: java.lang.String DESCRIPTOR -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_elevation -okhttp3.internal.http2.Http2Connection$Listener$1 -androidx.constraintlayout.widget.R$color: int switch_thumb_disabled_material_dark -wangdaye.com.geometricweather.R$id: int material_minute_tv -james.adaptiveicon.R$styleable: int AppCompatTheme_tooltipForegroundColor -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListMenuView -androidx.appcompat.widget.Toolbar: android.content.Context getPopupContext() -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetEndWithActions -wangdaye.com.geometricweather.R$attr: int contentScrim -androidx.constraintlayout.widget.Group: void setVisibility(int) -com.tencent.bugly.proguard.r: r() -com.turingtechnologies.materialscrollbar.R$attr: int fabAlignmentMode -com.turingtechnologies.materialscrollbar.R$attr: int panelMenuListTheme -androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_inflatedId -androidx.preference.R$string: int abc_menu_alt_shortcut_label -com.tencent.bugly.crashreport.common.info.b: long k() +cyanogenmod.app.ICMTelephonyManager$Stub: android.os.IBinder asBinder() +com.google.android.material.textfield.TextInputLayout: void setErrorEnabled(boolean) +wangdaye.com.geometricweather.R$id: int activity_widget_config_doneButton +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: KeyguardExternalViewProviderService$Provider(cyanogenmod.externalviews.KeyguardExternalViewProviderService,android.os.Bundle) +androidx.preference.R$color: int primary_text_default_material_light +android.didikee.donate.R$styleable: int TextAppearance_android_textColorHint +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum Maximum +androidx.preference.R$style: int Base_Theme_AppCompat_CompactMenu +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Long id +android.didikee.donate.R$id: int custom +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context,android.util.AttributeSet) +androidx.recyclerview.widget.RecyclerView: void removeOnChildAttachStateChangeListener(androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setZh_CN(java.lang.String) +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource REMOTE +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: void run() +wangdaye.com.geometricweather.R$string: int sp_widget_week_setting +com.bumptech.glide.integration.okhttp.R$id: int text2 +androidx.appcompat.R$drawable: int abc_vector_test +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.Scheduler$Worker worker +retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type[] getUpperBounds() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +com.google.android.material.R$style: int ShapeAppearanceOverlay +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: BuglyBroadcastReceiver() +androidx.recyclerview.R$id: int accessibility_custom_action_25 +cyanogenmod.themes.IThemeProcessingListener$Stub: cyanogenmod.themes.IThemeProcessingListener asInterface(android.os.IBinder) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.lang.String type +com.google.android.material.R$attr: int seekBarStyle +okhttp3.MultipartBody$Builder: okhttp3.MediaType type +io.reactivex.internal.queue.SpscArrayQueue: java.util.concurrent.atomic.AtomicLong producerIndex +com.jaredrummler.android.colorpicker.R$style: int Base_V28_Theme_AppCompat +wangdaye.com.geometricweather.R$id: int startVertical +com.xw.repo.bubbleseekbar.R$dimen: int abc_switch_padding +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void c() +retrofit2.ParameterHandler$2 +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: WeatherEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +com.jaredrummler.android.colorpicker.R$attr: int editTextPreferenceStyle +com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context) +okhttp3.internal.http2.Huffman$Node: int terminalBits +com.google.android.material.R$drawable: int abc_list_selector_holo_dark +android.didikee.donate.R$style: int Base_Widget_AppCompat_Spinner +androidx.fragment.R$attr: int ttcIndex +androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_to_on_mtrl_015 +androidx.swiperefreshlayout.R$drawable: int notification_bg_low_pressed +io.reactivex.exceptions.CompositeException: java.lang.String getMessage() +wangdaye.com.geometricweather.R$attr: int bottomSheetStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_136 +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_colored_material +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onComplete() +androidx.coordinatorlayout.R$id: int tag_transition_group +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitationProbability() +com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_shapeAppearance +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int THUNDERSHOWER +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String defenseText +androidx.preference.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade RealFeelTemperatureShade +wangdaye.com.geometricweather.R$id: int widget_week +androidx.customview.R$styleable: int GradientColor_android_tileMode +androidx.preference.R$attr: int height +androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UpdateTime +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.R$id: int design_menu_item_action_area_stub +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_toLeftOf +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String chief +androidx.hilt.lifecycle.R$drawable: int notification_action_background +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_23 +androidx.fragment.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$plurals: int mtrl_badge_content_description +com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_top_mtrl_alpha +com.google.android.material.R$anim: int btn_checkbox_to_checked_icon_null_animation +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_horizontalBias +wangdaye.com.geometricweather.R$styleable: int NavigationView_android_fitsSystemWindows +androidx.loader.R$id: int tag_transition_group +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric Metric +androidx.appcompat.R$color: int abc_search_url_text_pressed +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode SUPPRESS +james.adaptiveicon.R$styleable: int[] ListPopupWindow +com.xw.repo.bubbleseekbar.R$attr: int alertDialogTheme +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_inset +androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean syncFused +wangdaye.com.geometricweather.main.utils.MainPalette: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: AccuCurrentResult$RealFeelTemperatureShade() +com.google.android.material.R$color: int mtrl_choice_chip_ripple_color +com.google.android.material.R$styleable: int Constraint_layout_goneMarginLeft +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_contentPaddingBottom +wangdaye.com.geometricweather.R$dimen: int abc_progress_bar_height_material +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerComplete(int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao: DailyEntityDao(org.greenrobot.greendao.internal.DaoConfig) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_min +com.amap.api.location.DPoint: double a +com.google.android.material.R$attr: int lineSpacing +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_87 +wangdaye.com.geometricweather.R$dimen: int notification_small_icon_background_padding +com.google.android.material.R$attr: int stackFromEnd +retrofit2.ParameterHandler$Query: java.lang.String name +androidx.appcompat.resources.R$id: int accessibility_custom_action_15 +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListPopupWindow +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void settings(boolean,okhttp3.internal.http2.Settings) +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: boolean isDisposed() +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory[] values() +com.google.android.material.R$styleable: int ActionBar_popupTheme +cyanogenmod.hardware.DisplayMode: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$style: int Base_V26_Widget_AppCompat_Toolbar +com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean j +com.baidu.location.e.l$b: java.lang.String a(com.baidu.location.e.l$b,int,double,double) +androidx.appcompat.R$drawable: int abc_text_select_handle_right_mtrl_dark +androidx.transition.R$dimen: int notification_small_icon_background_padding +androidx.preference.R$styleable: int LinearLayoutCompat_divider +okhttp3.internal.platform.OptionalMethod: java.lang.Object invoke(java.lang.Object,java.lang.Object[]) +wangdaye.com.geometricweather.R$drawable: int notif_temp_28 +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.util.Date date +androidx.preference.R$drawable: int abc_btn_colored_material +cyanogenmod.externalviews.ExternalViewProviderService$Provider: int DEFAULT_WINDOW_FLAGS +com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace valueOf(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int[] GradientColorItem +androidx.coordinatorlayout.R$color: int ripple_material_light +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: long beginTime +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_pressedTranslationZ +androidx.constraintlayout.widget.R$styleable: int PopupWindow_overlapAnchor +cyanogenmod.providers.CMSettings$Global: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) +com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.e a(com.tencent.bugly.crashreport.crash.c) +com.xw.repo.bubbleseekbar.R$string: int abc_action_menu_overflow_description +androidx.viewpager.R$styleable: int FontFamilyFont_fontWeight +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_holo_dark +androidx.loader.R$dimen: int notification_action_icon_size +com.bumptech.glide.R$id: int bottom +androidx.vectordrawable.R$dimen: int notification_large_icon_height +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Line2 +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_weightSum +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_9 +androidx.core.R$id: int accessibility_custom_action_18 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2$1: ThemeVersion$ThemeVersionImpl2$1() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: CaiYunMainlyResult$ForecastDailyBean$WeatherBean() +james.adaptiveicon.R$drawable: int notification_bg_low_pressed +androidx.hilt.lifecycle.R$dimen: int notification_top_pad +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +james.adaptiveicon.R$attr: int checkboxStyle +androidx.preference.PreferenceGroup: void setOnExpandButtonClickListener(androidx.preference.PreferenceGroup$OnExpandButtonClickListener) +james.adaptiveicon.R$attr: int drawableSize +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +retrofit2.Utils +wangdaye.com.geometricweather.R$attr: int windowFixedWidthMajor +wangdaye.com.geometricweather.R$drawable: int widget_card_light_100 +wangdaye.com.geometricweather.R$attr: int bsb_thumb_radius +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$anim: int popup_hide +okhttp3.internal.ws.RealWebSocket: boolean failed +wangdaye.com.geometricweather.R$drawable: int widget_text +wangdaye.com.geometricweather.R$id: int dialog_donate_wechat +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_4 +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode[] values() +cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(android.os.Parcel,cyanogenmod.app.Profile$1) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3 +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startX +androidx.drawerlayout.R$id: int action_text +cyanogenmod.providers.CMSettings$System$3: boolean validate(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: AccuCurrentResult$Temperature() +androidx.fragment.app.Fragment$InstantiationException +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String I +com.google.android.material.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format +androidx.constraintlayout.widget.R$color: int background_floating_material_dark +android.didikee.donate.R$styleable: int SearchView_submitBackground +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constrainedWidth +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_CompactMenu +androidx.vectordrawable.animated.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer freezingHazard +okhttp3.internal.http2.Header: Header(okio.ByteString,java.lang.String) +james.adaptiveicon.R$drawable: int abc_ic_star_half_black_48dp +wangdaye.com.geometricweather.R$array: int widget_styles +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: void requestLocation(android.content.Context,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) +com.tencent.bugly.proguard.an: void a(com.tencent.bugly.proguard.j) +cyanogenmod.weather.RequestInfo: boolean equals(java.lang.Object) +androidx.appcompat.resources.R$styleable: int GradientColor_android_startColor +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_measureWithLargestChild +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.HourlyEntity,long) +cyanogenmod.app.ProfileGroup$Mode: cyanogenmod.app.ProfileGroup$Mode valueOf(java.lang.String) +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: int limit +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition valueOf(java.lang.String) +okio.SegmentedByteString: byte[][] segments +androidx.appcompat.R$dimen: int abc_text_size_small_material +james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +wangdaye.com.geometricweather.R$style: int Base_V26_Theme_AppCompat +james.adaptiveicon.R$id: int edit_query +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_applyDefaultTheme +com.google.android.material.R$style: int Base_Widget_AppCompat_PopupWindow +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_arrow_drop_right_black_24dp +androidx.preference.R$styleable: int ActionBar_contentInsetEnd +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +okhttp3.OkHttpClient$1: boolean isInvalidHttpUrlHost(java.lang.IllegalArgumentException) +android.didikee.donate.R$styleable: int ActionMode_height +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String J +com.google.android.material.R$styleable: int TextInputLayout_hintTextColor +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List maxCountItems +okio.Buffer: okio.BufferedSink writeDecimalLong(long) +io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int) +okio.Segment: byte[] data +okhttp3.internal.http1.Http1Codec$ChunkedSink: boolean closed +wangdaye.com.geometricweather.R$dimen: int large_title_text_size +com.google.android.material.slider.BaseSlider: void setLabelBehavior(int) +androidx.constraintlayout.widget.R$styleable: int Transform_android_rotationY +wangdaye.com.geometricweather.location.services.LocationService: void requestLocation(android.content.Context,wangdaye.com.geometricweather.location.services.LocationService$LocationCallback) +okhttp3.internal.http2.Http2Connection: void writePing() +com.turingtechnologies.materialscrollbar.R$styleable: int[] NavigationView +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginTop +wangdaye.com.geometricweather.R$id: int material_timepicker_container +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableLeftCompat +com.google.android.material.R$layout: int material_clock_display +androidx.constraintlayout.helper.widget.Layer: void setRotation(float) +androidx.appcompat.R$id: int tag_transition_group +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: MfForecastResult$Forecast$Temperature() +io.reactivex.Observable: io.reactivex.Observable timeInterval(java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.jaredrummler.android.colorpicker.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$animator: int design_fab_hide_motion_spec +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +androidx.appcompat.R$style: int Base_Animation_AppCompat_Tooltip +com.turingtechnologies.materialscrollbar.R$bool: int abc_allow_stacked_button_bar +com.jaredrummler.android.colorpicker.R$attr: int switchPreferenceStyle +okhttp3.internal.http2.Http2Stream$FramingSource: void receive(okio.BufferedSource,long) +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean isUserOpened() +okhttp3.internal.http1.Http1Codec: java.lang.String readHeaderLine() +androidx.hilt.work.R$anim: R$anim() +okhttp3.internal.cache.DiskLruCache$Snapshot: DiskLruCache$Snapshot(okhttp3.internal.cache.DiskLruCache,java.lang.String,long,okio.Source[],long[]) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String MobileLink +androidx.constraintlayout.widget.R$styleable: int OnSwipe_moveWhenScrollAtTop +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void complete() +okio.AsyncTimeout: void exit(boolean) +androidx.appcompat.R$drawable: int abc_switch_thumb_material +androidx.lifecycle.Transformations +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight +com.google.android.material.R$styleable: int Chip_iconStartPadding +cyanogenmod.weatherservice.ServiceRequestResult$Builder: java.util.List mLocationLookupList +james.adaptiveicon.R$drawable: int abc_list_selector_holo_dark +james.adaptiveicon.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +android.didikee.donate.R$attr: int closeIcon +com.github.rahatarmanahmed.cpv.CircularProgressView: void onMeasure(int,int) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int otherState +wangdaye.com.geometricweather.R$attr: int errorIconTint +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Headline3 +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +com.google.android.material.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearTodayStyle +com.tencent.bugly.crashreport.common.info.b: java.lang.String g() +com.turingtechnologies.materialscrollbar.R$attr: int imageButtonStyle +okhttp3.internal.connection.StreamAllocation: java.net.Socket releaseIfNoNewStreams() +androidx.constraintlayout.widget.R$attr: int mock_labelBackgroundColor +com.tencent.bugly.proguard.al: java.util.ArrayList b +com.xw.repo.bubbleseekbar.R$attr: int commitIcon +wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_Tooltip +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionMenuTextAppearance +wangdaye.com.geometricweather.R$id: int item_pollen_daily +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_divider_material +androidx.appcompat.resources.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: int nameId +androidx.constraintlayout.widget.R$styleable: int[] OnClick +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3: cyanogenmod.app.ThemeVersion$ComponentVersion getDeviceComponentVersion(cyanogenmod.app.ThemeComponent) +wangdaye.com.geometricweather.R$drawable: int notif_temp_103 +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthTextView +wangdaye.com.geometricweather.R$styleable: int FitSystemBarNestedScrollView_sv_side +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_126 +okhttp3.internal.connection.ConnectInterceptor: ConnectInterceptor(okhttp3.OkHttpClient) +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType[] values() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherPhase(java.lang.String) +androidx.preference.R$attr: int colorControlHighlight +wangdaye.com.geometricweather.R$string: int today +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_MULTIPLE_LEDS_ENABLE_VALIDATOR +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +com.turingtechnologies.materialscrollbar.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_90 +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemIconDisabledAlpha +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree nighttimeWindDegree +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_PopupMenu +com.google.android.gms.internal.location.zzbe: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$styleable: int AppCompatTheme_dividerHorizontal +okhttp3.internal.Util: void closeQuietly(java.io.Closeable) +com.github.rahatarmanahmed.cpv.R +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_85 +com.google.android.material.R$styleable: int Variant_region_heightMoreThan +com.google.android.gms.common.server.response.zak +wangdaye.com.geometricweather.R$string: int bottom_sheet_behavior +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewCallbacks access$100(cyanogenmod.externalviews.KeyguardExternalView) +wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_height_minor +com.google.android.material.R$attr: int passwordToggleContentDescription +com.xw.repo.bubbleseekbar.R$attr: int layout_dodgeInsetEdges +androidx.appcompat.widget.AppCompatCheckBox +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchTextAppearance +com.google.android.material.R$styleable: int MenuItem_actionLayout +io.reactivex.internal.util.NotificationLite: io.reactivex.disposables.Disposable getDisposable(java.lang.Object) +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$string: int feedback_live_wallpaper_day_night_type +com.google.android.material.R$attr: int autoTransition +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderFetchTimeout +james.adaptiveicon.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Metric +androidx.appcompat.widget.ActionMenuView: void setExpandedActionViewsExclusive(boolean) +wangdaye.com.geometricweather.R$style: int Preference_SeekBarPreference +androidx.appcompat.R$styleable: int AppCompatTheme_windowMinWidthMinor +okhttp3.internal.platform.JdkWithJettyBootPlatform: void afterHandshake(javax.net.ssl.SSLSocket) +androidx.fragment.R$styleable: int GradientColorItem_android_color +com.google.android.material.R$id: int material_timepicker_mode_button +wangdaye.com.geometricweather.R$attr: int layout_constraintHorizontal_chainStyle +androidx.work.R$id: int time +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.R$styleable: int ButtonBarLayout_allowStacking +com.bumptech.glide.R$dimen: int notification_top_pad +androidx.vectordrawable.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getSO2() +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setWeatherLocation(cyanogenmod.weather.WeatherLocation) +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode Battery_Saving +cyanogenmod.app.ProfileGroup: ProfileGroup(java.lang.String,java.util.UUID,boolean) +com.tencent.bugly.proguard.p: com.tencent.bugly.proguard.r b(android.database.Cursor) +com.google.android.material.R$styleable: int MotionTelltales_telltales_tailColor +wangdaye.com.geometricweather.R$animator: int mtrl_extended_fab_show_motion_spec +cyanogenmod.power.PerformanceManager: int PROFILE_BIAS_POWER_SAVE +com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_Surface +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +wangdaye.com.geometricweather.R$styleable: int KeyCycle_transitionEasing +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property CityId +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial Imperial +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_allowCustom +com.tencent.bugly.BuglyStrategy +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: android.os.IBinder asBinder() +okhttp3.Dispatcher: int maxRequests +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX getTemperature() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int so2 +com.turingtechnologies.materialscrollbar.R$attr: int msb_autoHide +okio.Buffer: int read(byte[]) +androidx.preference.R$drawable: int abc_tab_indicator_material +androidx.appcompat.R$attr: int switchPadding +androidx.preference.R$color: int foreground_material_dark +android.didikee.donate.R$id: int radio +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: boolean daylight +androidx.coordinatorlayout.R$dimen: int notification_subtext_size +androidx.appcompat.R$attr: int actionModeWebSearchDrawable +cyanogenmod.providers.CMSettings$Secure: int RING_HOME_BUTTON_BEHAVIOR_DEFAULT +android.didikee.donate.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$string: int widget_trend_hourly +androidx.drawerlayout.R$styleable: int GradientColor_android_centerX +androidx.appcompat.R$styleable: int StateListDrawable_android_enterFadeDuration +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_DES_CBC_SHA +com.google.android.material.R$attr: int autoSizeMinTextSize +androidx.preference.R$style: int Platform_V21_AppCompat_Light +okhttp3.Cookie: okhttp3.Cookie parse(long,okhttp3.HttpUrl,java.lang.String) +androidx.constraintlayout.widget.R$id: int tabMode +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_days_of_week_height +com.amap.api.fence.GeoFence: java.util.List h +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeSnowPrecipitation +com.xw.repo.bubbleseekbar.R$color: int foreground_material_dark +com.autonavi.aps.amapapi.model.AMapLocationServer: long o +com.amap.api.location.AMapLocationQualityReport: void setNetworkType(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWindDirection +com.google.android.material.R$attr: int flow_horizontalStyle +com.tencent.bugly.proguard.n +com.turingtechnologies.materialscrollbar.R$attr: int lineSpacing +okhttp3.internal.ws.RealWebSocket: boolean send(okio.ByteString) +androidx.preference.R$attr: int actionModeCutDrawable +james.adaptiveicon.R$drawable: int tooltip_frame_light +james.adaptiveicon.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$style: int Widget_Design_TextInputLayout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String primary +androidx.constraintlayout.widget.R$attr: int checkboxStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorPrimary +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getWindChillTemperature() +androidx.preference.R$attr: int textAppearanceSearchResultTitle +com.bumptech.glide.integration.okhttp.R$layout: int notification_template_custom_big +wangdaye.com.geometricweather.R$attr: int checkedIconMargin +com.tencent.bugly.proguard.ap: void a(java.lang.StringBuilder,int) +com.google.gson.stream.JsonWriter: void newline() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_2 +cyanogenmod.power.IPerformanceManager$Stub$Proxy: android.os.IBinder asBinder() +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat PREFER_RGB_565 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric Metric +com.turingtechnologies.materialscrollbar.R$color: int mtrl_chip_ripple_color +com.google.android.material.tabs.TabItem: TabItem(android.content.Context) +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter endArray() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_bias +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +com.jaredrummler.android.colorpicker.R$style: int Preference_PreferenceScreen_Material +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalAlign +wangdaye.com.geometricweather.R$dimen: int design_navigation_max_width +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List hourly_forecast +io.reactivex.exceptions.OnErrorNotImplementedException: OnErrorNotImplementedException(java.lang.String,java.lang.Throwable) +retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type lowerBound +com.google.android.material.R$string: int character_counter_overflowed_content_description +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_popupTheme +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionDropDownStyle +androidx.viewpager.R$styleable: int GradientColor_android_centerColor +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +com.google.android.material.R$dimen: int mtrl_navigation_item_shape_vertical_margin +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_editTextBackground +com.turingtechnologies.materialscrollbar.R$attr: int cardElevation +androidx.loader.R$id: int action_image +androidx.appcompat.R$dimen: int hint_alpha_material_light +com.loc.k: k(java.lang.String) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: boolean won +james.adaptiveicon.R$dimen: int hint_alpha_material_light +io.reactivex.Observable: io.reactivex.Observable share() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_COLOR_VALIDATOR +okhttp3.FormBody: long contentLength() +wangdaye.com.geometricweather.common.basic.models.weather.Wind: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getDegree() +wangdaye.com.geometricweather.R$styleable: int Chip_checkedIconEnabled +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$layout: int support_simple_spinner_dropdown_item +cyanogenmod.weatherservice.IWeatherProviderService: void processWeatherUpdateRequest(cyanogenmod.weather.RequestInfo) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeAlpha(float) +androidx.constraintlayout.widget.R$id: int animateToEnd +okio.RealBufferedSink: okio.Timeout timeout() +androidx.loader.R$styleable: int FontFamily_fontProviderCerts +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.R$id: int zero_corner_chip +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintCircle +androidx.viewpager.R$dimen: int notification_action_text_size +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_textAppearance +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_viewInflaterClass +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationMode i +com.google.android.gms.base.R$color: R$color() +okhttp3.RequestBody$2: okhttp3.MediaType contentType() +com.google.gson.FieldNamingPolicy$6: java.lang.String translateName(java.lang.reflect.Field) +wangdaye.com.geometricweather.R$drawable: int ic_back +androidx.viewpager2.R$id: int accessibility_custom_action_8 +androidx.work.R$id +androidx.constraintlayout.widget.R$drawable: int abc_list_pressed_holo_dark +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver +james.adaptiveicon.R$color: int bright_foreground_inverse_material_light +androidx.vectordrawable.R$layout +wangdaye.com.geometricweather.R$dimen: int design_fab_size_mini +androidx.constraintlayout.widget.R$drawable: int abc_tab_indicator_material +okio.ForwardingSink: void close() +com.xw.repo.bubbleseekbar.R$id: int start +com.google.android.material.R$styleable: int ShapeAppearance_cornerSize +james.adaptiveicon.R$styleable: int MenuGroup_android_enabled +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +retrofit2.Retrofit: retrofit2.Converter stringConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[]) +wangdaye.com.geometricweather.R$string: int common_google_play_services_enable_button +com.google.gson.stream.JsonWriter: boolean serializeNulls +okhttp3.Cookie$Builder: boolean secure +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float so2 +okhttp3.internal.http.RealInterceptorChain: okhttp3.Connection connection() +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_menu +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_NoActionBar +com.jaredrummler.android.colorpicker.R$attr: int background +androidx.transition.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.R$interpolator: int mtrl_fast_out_linear_in +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextStyle +wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_button_bar_material +com.google.android.material.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +androidx.appcompat.R$id: int right_side +okhttp3.internal.http2.Http2Reader: void readSettings(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +wangdaye.com.geometricweather.R$dimen: int mtrl_switch_thumb_elevation +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar_PrimarySurface +com.google.android.material.R$attr: int contentInsetLeft +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: AccuDailyResult$DailyForecasts$Night$Wind$Direction() +androidx.lifecycle.extensions.R$dimen: int notification_media_narrow_margin +android.didikee.donate.R$styleable: int AppCompatTheme_buttonStyleSmall +wangdaye.com.geometricweather.R$drawable: int notif_temp_81 +com.google.android.material.R$styleable: int MenuItem_actionViewClass +okhttp3.Dispatcher: java.util.Deque runningSyncCalls +com.google.android.material.datepicker.RangeDateSelector +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_CRITICAL +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.Query queryRawCreate(java.lang.String,java.lang.Object[]) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTabTextStyle +com.google.android.material.R$dimen: int compat_button_padding_vertical_material +androidx.preference.R$id: int tag_accessibility_heading +com.google.android.material.slider.Slider: int getThumbRadius() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Spinner_Underlined +okio.HashingSource: java.security.MessageDigest messageDigest +android.support.v4.os.ResultReceiver$1: java.lang.Object[] newArray(int) +james.adaptiveicon.R$styleable: int[] MenuView +androidx.transition.R$attr +wangdaye.com.geometricweather.R$id: int editText +james.adaptiveicon.R$attr: int textColorAlertDialogListItem +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getSuffixTextColor() +wangdaye.com.geometricweather.common.basic.models.weather.WindDegree: float getDegree() +androidx.appcompat.R$styleable: int TextAppearance_android_textColor +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void request(long) +com.google.android.material.R$styleable: int MaterialButton_android_insetRight +wangdaye.com.geometricweather.remoteviews.config.DailyTrendWidgetConfigActivity +com.amap.api.location.AMapLocationQualityReport: AMapLocationQualityReport() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String zh_TW +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_showText +androidx.appcompat.R$styleable: int FontFamilyFont_android_fontStyle +james.adaptiveicon.R$anim: int abc_slide_in_bottom +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String componentToImageColName(java.lang.String) +com.google.android.material.R$styleable: int Chip_closeIconEndPadding +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: void dispose() +wangdaye.com.geometricweather.R$styleable: int RecyclerView_spanCount +androidx.constraintlayout.widget.R$styleable: int KeyPosition_keyPositionType +androidx.core.R$color: R$color() +com.google.android.material.R$layout: int mtrl_calendar_days_of_week +androidx.dynamicanimation.R$attr: int fontWeight +wangdaye.com.geometricweather.R$attr: int textAppearanceBody1 +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthResource(int) +wangdaye.com.geometricweather.R$dimen: int compat_control_corner_material +com.google.android.material.R$attr: int hideOnScroll +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_FONTS +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_fontWeight +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getNumGammaControls +androidx.lifecycle.ComputableLiveData +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onNext(java.lang.Object) +cyanogenmod.providers.CMSettings$Secure$1 +com.google.android.gms.common.api.ResolvableApiException +androidx.swiperefreshlayout.R$id: int dialog_button +wangdaye.com.geometricweather.R$styleable: int[] Constraint +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SeekBar_Discrete +androidx.appcompat.resources.R$dimen: int notification_big_circle_margin +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean offer(java.lang.Object,java.lang.Object) +okhttp3.internal.ws.RealWebSocket$CancelRunnable +androidx.appcompat.widget.AppCompatImageButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.activity.R$drawable: int notification_bg_low_pressed +okio.ByteString: okio.ByteString sha512() +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex today +com.google.android.material.R$drawable: int notification_icon_background +com.google.android.material.textfield.TextInputEditText: TextInputEditText(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$attr: int percentWidth +androidx.preference.R$id: int expand_activities_button +com.google.android.material.R$styleable: int Constraint_animate_relativeTo +com.turingtechnologies.materialscrollbar.R$attr: int navigationViewStyle +android.didikee.donate.R$layout: int abc_action_mode_bar +com.google.android.material.R$attr: int triggerReceiver +androidx.preference.R$attr: int showTitle +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: ObservableFlatMapSingle$FlatMapSingleObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +android.didikee.donate.R$dimen: int abc_text_size_body_2_material +cyanogenmod.app.CustomTile$ExpandedItem: android.app.PendingIntent onClickPendingIntent +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_y_offset_non_touch +com.amap.api.location.AMapLocationQualityReport: com.amap.api.location.AMapLocationClientOption$AMapLocationMode a +androidx.hilt.work.R$id: int time +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ +androidx.dynamicanimation.R$color: int ripple_material_light +androidx.appcompat.widget.SearchView$SavedState +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: int bufferSize +com.jaredrummler.android.colorpicker.R$anim: int abc_slide_in_top +androidx.appcompat.R$dimen: int abc_action_bar_stacked_tab_max_width +androidx.core.R$id: int accessibility_custom_action_26 +com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.i c +androidx.lifecycle.ReportFragment: void onActivityCreated(android.os.Bundle) +androidx.preference.R$color: int abc_color_highlight_material +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_Layout_layout_scrollInterpolator +okhttp3.Cache: long size() +com.google.android.material.R$color: int androidx_core_secondary_text_default_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_shapeAppearance +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: IWeatherServiceProviderChangeListener$Stub$Proxy(android.os.IBinder) +androidx.legacy.coreutils.R$integer +androidx.preference.R$styleable: int RecyclerView_reverseLayout +okhttp3.internal.tls.OkHostnameVerifier: int ALT_DNS_NAME +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onComplete() +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: void completion() +androidx.appcompat.R$id: int on +okio.RealBufferedSink: RealBufferedSink(okio.Sink) +com.tencent.bugly.proguard.m: m() +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_section_text_size +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_homeAsUpIndicator +androidx.lifecycle.extensions.R$color: int secondary_text_default_material_light +com.google.android.material.R$string: int abc_action_bar_home_description +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.util.Map O +com.google.android.material.R$attr: int triggerId +androidx.constraintlayout.widget.R$styleable: int ActionBar_elevation +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display2 +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_PUT_SYSTEM +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setDeviceID(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_track +androidx.appcompat.R$attr: int collapseIcon +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionMode +android.didikee.donate.R$drawable: int abc_btn_check_material +com.tencent.bugly.proguard.ak: java.lang.String t +com.google.android.material.R$dimen: int design_tab_max_width +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: CaiYunMainlyResult$CurrentBean$TemperatureBean() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setUnit(java.lang.String) +okhttp3.internal.platform.AndroidPlatform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +cyanogenmod.app.Profile: cyanogenmod.profiles.BrightnessSettings mBrightness +wangdaye.com.geometricweather.R$styleable: int Chip_iconStartPadding +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date endDate +io.reactivex.internal.disposables.EmptyDisposable: void complete(io.reactivex.MaybeObserver) +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: int offset +com.google.android.material.checkbox.MaterialCheckBox: MaterialCheckBox(android.content.Context,android.util.AttributeSet) +cyanogenmod.app.BaseLiveLockManagerService$1: boolean getLiveLockScreenEnabled() +com.turingtechnologies.materialscrollbar.R$color: int abc_tint_btn_checkable +android.didikee.donate.R$style: int TextAppearance_AppCompat_Title_Inverse +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent ICON +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder pushObserver(okhttp3.internal.http2.PushObserver) +android.didikee.donate.R$attr: int backgroundSplit +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void startTimeout(long) +androidx.appcompat.R$id: int chronometer +com.github.rahatarmanahmed.cpv.R$string: R$string() +com.jaredrummler.android.colorpicker.R$layout: int cpv_color_item_square +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTextPadding +androidx.swiperefreshlayout.R$dimen: R$dimen() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust +wangdaye.com.geometricweather.R$attr: int itemIconTint +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_1 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum +com.tencent.bugly.proguard.j +androidx.constraintlayout.widget.R$attr: int deltaPolarAngle +wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_android_letterSpacing +james.adaptiveicon.R$attr: int collapseContentDescription +androidx.constraintlayout.widget.R$color: int accent_material_dark +okio.ByteString: okio.ByteString hmac(java.lang.String,okio.ByteString) +com.xw.repo.bubbleseekbar.R$styleable: int[] MenuView +com.google.android.material.floatingactionbutton.FloatingActionButton: int getSize() +androidx.preference.R$id: int accessibility_custom_action_10 +com.xw.repo.bubbleseekbar.R$dimen: int notification_small_icon_size_as_large +androidx.preference.R$styleable: int MenuGroup_android_menuCategory +androidx.appcompat.R$style: int Widget_AppCompat_ListView_Menu +androidx.lifecycle.SavedStateHandle$1 +wangdaye.com.geometricweather.R$attr: int linearSeamless +androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat +androidx.lifecycle.LiveData: void considerNotify(androidx.lifecycle.LiveData$ObserverWrapper) +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_light +cyanogenmod.providers.CMSettings$System: java.lang.String __MAGICAL_TEST_PASSING_ENABLER +com.amap.api.location.DPoint$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.recyclerview.R$id: int italic +androidx.constraintlayout.widget.R$id: int deltaRelative +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_12 +androidx.appcompat.R$style: int TextAppearance_AppCompat_Display2 +com.google.android.material.slider.RangeSlider: void setTrackActiveTintList(android.content.res.ColorStateList) +com.amap.api.location.LocationManagerBase: void enableBackgroundLocation(int,android.app.Notification) +com.jaredrummler.android.colorpicker.R$color: int primary_dark_material_light +okhttp3.OkHttpClient$1: int code(okhttp3.Response$Builder) +wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_creator +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle CIRCULAR +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeRealFeelShaderTemperature() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +com.amap.api.location.AMapLocation$1 +james.adaptiveicon.R$styleable: int PopupWindow_android_popupBackground +james.adaptiveicon.R$id: int blocking +okhttp3.RequestBody$3 +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle DAILY +com.tencent.bugly.proguard.aj: void a(com.tencent.bugly.proguard.j) +androidx.preference.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String W +wangdaye.com.geometricweather.R$drawable: int ic_exercise +okhttp3.internal.ws.WebSocketWriter$FrameSink: void flush() +wangdaye.com.geometricweather.R$styleable: int Badge_badgeTextColor +wangdaye.com.geometricweather.R$array: int ui_style_values +androidx.appcompat.R$id: int tag_accessibility_actions +okio.Segment: int pos +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_resetAll +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: int UnitType +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setTextColor(int) +androidx.hilt.work.R$id: int right_icon +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String getName() +androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_tailScale +androidx.hilt.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupWindow +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver parent +android.didikee.donate.R$style: int Platform_V25_AppCompat_Light +wangdaye.com.geometricweather.R$dimen: int widget_standard_weather_icon_size +com.tencent.bugly.proguard.am: java.lang.String e +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_typeface +wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper +wangdaye.com.geometricweather.R$drawable: int abc_btn_colored_material +wangdaye.com.geometricweather.R$color: int mtrl_navigation_item_text_color +com.amap.api.location.LocationManagerBase: void startAssistantLocation(android.webkit.WebView) +androidx.lifecycle.LiveData: androidx.arch.core.internal.SafeIterableMap mObservers +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableBottomCompat +com.google.android.material.R$style: int Widget_AppCompat_Light_ListView_DropDown +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX() +okhttp3.internal.http1.Http1Codec: okhttp3.internal.connection.StreamAllocation streamAllocation +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getRainPrecipitation() +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +okhttp3.internal.http2.Http2Connection$Listener: void onStream(okhttp3.internal.http2.Http2Stream) +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean isDisposed() +com.google.gson.stream.JsonReader: int PEEKED_DOUBLE_QUOTED +com.google.gson.stream.JsonReader: char[] buffer +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_switchMinWidth +androidx.core.R$integer: int status_bar_notification_info_maxnum +android.didikee.donate.R$attr: int paddingEnd +com.google.android.material.R$styleable: int Transform_android_translationZ +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void onSubscribe(io.reactivex.disposables.Disposable) +james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +okhttp3.internal.http2.Http2Reader: int lengthWithoutPadding(int,byte,short) +com.github.rahatarmanahmed.cpv.CircularProgressView: void setColor(int) +cyanogenmod.profiles.BrightnessSettings$1: BrightnessSettings$1() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric Metric +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: ObservableWithLatestFromMany$WithLatestInnerObserver(io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver,int) +okio.InflaterSource: void releaseInflatedBytes() +com.jaredrummler.android.colorpicker.R$drawable: int abc_cab_background_internal_bg +io.reactivex.Observable: io.reactivex.Single sequenceEqual(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiPredicate) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf +cyanogenmod.externalviews.ExternalView$2: int val$height +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTickTintList() +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayDetailsWidgetConfigActivity +com.google.android.material.appbar.MaterialToolbar: void setElevation(float) +okhttp3.internal.http.HttpHeaders: java.util.Set varyFields(okhttp3.Headers) +cyanogenmod.power.PerformanceManager: int PROFILE_POWER_SAVE +com.google.android.material.R$id: int icon +android.support.v4.os.IResultReceiver$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: java.util.List timelapsItems +androidx.viewpager2.R$id: int line1 +com.bumptech.glide.load.HttpException: long serialVersionUID +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial +androidx.dynamicanimation.R$attr: int fontProviderQuery +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperText +com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_action_area +okhttp3.internal.Util$2 +androidx.hilt.lifecycle.R$id: int async +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.AndroidPlatform$CloseGuard closeGuard +android.didikee.donate.R$attr: int tickMark +androidx.appcompat.R$style: int Base_V23_Theme_AppCompat +wangdaye.com.geometricweather.R$drawable: int ic_pm +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_size +com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyle +android.didikee.donate.R$drawable: int abc_btn_colored_material +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: void innerNext(int,java.lang.Object) +wangdaye.com.geometricweather.R$id: int indicator +com.turingtechnologies.materialscrollbar.R$layout: int notification_action +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_background_overlay_color_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableStartCompat +androidx.viewpager.R$styleable: int FontFamilyFont_android_font +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +okhttp3.Request$Builder: okhttp3.RequestBody body +com.jaredrummler.android.colorpicker.R$color: int error_color_material_dark +androidx.appcompat.R$style: int TextAppearance_AppCompat_Title_Inverse +com.jaredrummler.android.colorpicker.R$color +com.tencent.bugly.proguard.v: com.tencent.bugly.proguard.s h +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_0 +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean emitLast +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge +com.jaredrummler.android.colorpicker.ColorPreferenceCompat: void setOnShowDialogListener(com.jaredrummler.android.colorpicker.ColorPreferenceCompat$OnShowDialogListener) +androidx.legacy.coreutils.R$dimen: int notification_right_icon_size +wangdaye.com.geometricweather.R$string: int settings_title_exchange_day_night_temp_switch +androidx.appcompat.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_HelperText +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: ObservableBuffer$BufferSkipObserver(io.reactivex.Observer,int,int,java.util.concurrent.Callable) +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type valueOf(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int SearchView_queryBackground +com.jaredrummler.android.colorpicker.R$attr: int state_above_anchor +androidx.core.R$attr: int fontStyle +com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior +wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: DaoMaster$DevOpenHelper(android.content.Context,java.lang.String) +okhttp3.internal.connection.RealConnection: void onSettings(okhttp3.internal.http2.Http2Connection) +com.google.android.material.bottomappbar.BottomAppBar: int getFabAnimationMode() +com.tencent.bugly.crashreport.biz.a: java.util.List a(java.lang.String) +com.amap.api.location.AMapLocationClient +androidx.lifecycle.ViewModelStore +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int CLEAR_NIGHT +androidx.preference.R$styleable: int ActionMode_background +wangdaye.com.geometricweather.R$string: int abc_action_mode_done +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_45 +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +cyanogenmod.providers.CMSettings$Global: void putListAsDelimitedString(android.content.ContentResolver,java.lang.String,java.lang.String,java.util.List) +com.google.android.material.R$styleable: int[] StateListDrawable +cyanogenmod.app.IProfileManager: void addNotificationGroup(android.app.NotificationGroup) +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Counter_Overflow +james.adaptiveicon.R$styleable: int FontFamilyFont_android_ttcIndex +androidx.work.R$attr: int fontVariationSettings +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_subtitle +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_interval +com.google.android.material.R$styleable: int StateListDrawable_android_constantSize +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_popupTheme +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_separator_vertical_padding +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotation +com.google.android.material.slider.BaseSlider: void setLabelFormatter(com.google.android.material.slider.LabelFormatter) +androidx.constraintlayout.widget.R$attr: int layout_constrainedWidth +okhttp3.internal.http.RealResponseBody: okhttp3.MediaType contentType() +androidx.appcompat.R$color: int abc_background_cache_hint_selector_material_light +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_max +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeMinTextSize +com.google.android.material.R$attr: int homeLayout +androidx.loader.R$dimen: int notification_media_narrow_margin +androidx.appcompat.R$styleable: int Toolbar_titleTextColor +androidx.preference.R$style: int Base_Widget_AppCompat_ActionMode +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherText(java.lang.String) +com.google.android.gms.location.places.PlaceReport: android.os.Parcelable$Creator CREATOR +org.greenrobot.greendao.AbstractDao: void detachAll() androidx.vectordrawable.animated.R$dimen: int notification_action_icon_size -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_iconifiedByDefault -okhttp3.internal.http2.Http2: byte TYPE_HEADERS -androidx.preference.R$layout: int preference_category_material -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Time -james.adaptiveicon.R$styleable: int[] ColorStateListItem -androidx.core.R$id: int action_container -wangdaye.com.geometricweather.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle -wangdaye.com.geometricweather.R$bool: R$bool() -com.amap.api.fence.PoiItem: void setProvince(java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabAlignmentMode -cyanogenmod.weather.WeatherInfo: int access$502(cyanogenmod.weather.WeatherInfo,int) -com.turingtechnologies.materialscrollbar.R$attr: int tooltipText -cyanogenmod.app.Profile: int getDozeMode() -wangdaye.com.geometricweather.R$styleable: int Preference_android_iconSpaceReserved -androidx.appcompat.R$color: int abc_hint_foreground_material_light -com.jaredrummler.android.colorpicker.R$layout: int support_simple_spinner_dropdown_item -androidx.appcompat.widget.AppCompatButton: void setSupportCompoundDrawablesTintMode(android.graphics.PorterDuff$Mode) -com.google.android.material.R$style: int Base_Theme_AppCompat_DialogWhenLarge -okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findJvmPlatform() -okhttp3.internal.connection.StreamAllocation: okhttp3.Address address -androidx.preference.R$styleable: int SwitchPreference_android_disableDependentsState -com.google.android.material.textfield.TextInputLayout: void setExpandedHintEnabled(boolean) -io.reactivex.internal.observers.BasicIntQueueDisposable: boolean isEmpty() -okhttp3.internal.http.HttpDate$1: java.text.DateFormat initialValue() -com.google.android.material.R$styleable: int Constraint_layout_goneMarginStart -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_transformPivotX -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -androidx.lifecycle.SavedStateHandle: androidx.savedstate.SavedStateRegistry$SavedStateProvider mSavedStateProvider -retrofit2.ParameterHandler$PartMap: int p -com.google.android.material.R$attr: int actionModeShareDrawable -wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonTint -androidx.drawerlayout.R$id: int action_divider -com.google.android.material.R$dimen: int mtrl_high_ripple_hovered_alpha -wangdaye.com.geometricweather.db.entities.LocationEntity: void setDistrict(java.lang.String) -androidx.preference.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_width_major -okhttp3.internal.http2.Http2Reader$Handler: void rstStream(int,okhttp3.internal.http2.ErrorCode) -retrofit2.Callback -androidx.constraintlayout.widget.R$id: int progress_circular -wangdaye.com.geometricweather.R$id: int outline -com.tencent.bugly.crashreport.common.info.a: java.util.List C -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitation -com.google.android.material.R$styleable: int Toolbar_titleTextColor -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int THUNDERSHOWER -cyanogenmod.externalviews.ExternalView$5: cyanogenmod.externalviews.ExternalView this$0 -com.bumptech.glide.integration.okhttp.R$attr: int layout_keyline -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX weather -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView_PrimarySurface -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog -io.reactivex.Observable: io.reactivex.Observer subscribeWith(io.reactivex.Observer) -wangdaye.com.geometricweather.R$xml: int standalone_badge_offset -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void setInteractivity(boolean) -androidx.appcompat.widget.AppCompatTextView -androidx.appcompat.R$attr: int textLocale -androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType CENTER -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property AqiText -androidx.coordinatorlayout.R$id: int top -retrofit2.Utils: java.lang.reflect.Type resolve(java.lang.reflect.Type,java.lang.Class,java.lang.reflect.Type) -android.didikee.donate.R$style: int Base_Widget_AppCompat_ListPopupWindow -okio.Buffer: okio.Buffer writeInt(int) -androidx.lifecycle.extensions.R$id: int forever -androidx.appcompat.widget.ActionBarContainer -androidx.lifecycle.AbstractSavedStateViewModelFactory -com.google.android.material.R$styleable: int Chip_chipIconTint -com.xw.repo.bubbleseekbar.R$styleable: int PopupWindowBackgroundState_state_above_anchor -okhttp3.ConnectionSpec: okhttp3.CipherSuite[] APPROVED_CIPHER_SUITES -retrofit2.Retrofit: retrofit2.Converter nextResponseBodyConverter(retrofit2.Converter$Factory,java.lang.reflect.Type,java.lang.annotation.Annotation[]) -com.google.android.material.R$styleable: int KeyAttribute_curveFit -android.didikee.donate.R$drawable -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: java.util.concurrent.atomic.AtomicReference upstream -androidx.appcompat.R$attr: int layout -com.bumptech.glide.R$styleable: int CoordinatorLayout_statusBarBackground -wangdaye.com.geometricweather.R$attr: int bsb_second_track_size -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Light -okio.Buffer: void skip(long) -okio.RealBufferedSink: boolean isOpen() -com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.content.res.ColorStateList getIconTintList() -okio.SegmentedByteString: SegmentedByteString(okio.Buffer,int) -io.reactivex.internal.disposables.DisposableHelper -cyanogenmod.themes.IThemeProcessingListener$Stub: cyanogenmod.themes.IThemeProcessingListener asInterface(android.os.IBinder) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_background -androidx.constraintlayout.widget.R$styleable: int[] OnClick -com.google.android.material.R$dimen: int material_clock_hand_center_dot_radius -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: WeatherEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -cyanogenmod.platform.R$integer: R$integer() -okhttp3.Dispatcher: int maxRequestsPerHost -androidx.preference.R$dimen: int abc_action_bar_default_padding_start_material -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_levelValue -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_55 -okhttp3.Handshake: okhttp3.CipherSuite cipherSuite() -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SearchView -androidx.recyclerview.R$styleable: int RecyclerView_reverseLayout -com.turingtechnologies.materialscrollbar.R$attr: int chipEndPadding -com.google.android.material.R$color: int material_grey_50 -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintTag -androidx.preference.R$styleable: int Toolbar_contentInsetEnd -com.google.android.material.slider.Slider: void setTrackActiveTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int so2 -androidx.lifecycle.SingleGeneratedAdapterObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) -androidx.appcompat.R$id: int accessibility_custom_action_6 -okhttp3.Challenge: boolean equals(java.lang.Object) -io.reactivex.internal.disposables.EmptyDisposable: void clear() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int getStatus() -com.google.android.material.internal.NavigationMenuItemView: void setTextAppearance(int) -wangdaye.com.geometricweather.R$styleable: int Constraint_android_maxHeight -com.google.android.material.R$drawable: int abc_ic_voice_search_api_material -androidx.fragment.R$id: int async -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalGap -com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar_Small -cyanogenmod.app.IPartnerInterface$Stub: IPartnerInterface$Stub() -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_LABEL -android.didikee.donate.R$dimen: int abc_text_size_subhead_material -com.amap.api.location.DPoint: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$layout: int material_clock_display_divider -androidx.vectordrawable.R$styleable: int FontFamilyFont_fontVariationSettings -android.didikee.donate.R$drawable: int abc_seekbar_thumb_material -com.jaredrummler.android.colorpicker.R$id: int square -androidx.transition.R$dimen: int compat_control_corner_material -com.google.android.material.floatingactionbutton.FloatingActionButton: void setShadowPaddingEnabled(boolean) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitationProbability -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetBottom -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_elevation -wangdaye.com.geometricweather.R$style: int Widget_Compat_NotificationActionContainer -android.didikee.donate.R$attr: int ratingBarStyle -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial Imperial -com.google.android.material.R$styleable: int OnSwipe_touchRegionId -com.amap.api.location.APSServiceBase: int onStartCommand(android.content.Intent,int,int) -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_FAST_SAMPLES -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: float unitFactor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX getWind() -androidx.preference.R$attr: int switchTextOn -com.google.android.material.R$drawable: int abc_tab_indicator_mtrl_alpha -com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_title_material_toolbar -wangdaye.com.geometricweather.R$styleable: int Chip_android_textColor -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerComplete() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: void setCaiyun(java.lang.String) -okhttp3.internal.ws.WebSocketProtocol: int CLOSE_CLIENT_GOING_AWAY -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: java.lang.String Unit -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitationProbability -okhttp3.OkHttpClient: okhttp3.CookieJar cookieJar -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout -com.tencent.bugly.crashreport.crash.a: boolean e -com.google.android.material.chip.Chip: void setChipIconEnabledResource(int) -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean mainDone -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.android.material.R$styleable: int SwitchCompat_android_thumb -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 -androidx.constraintlayout.widget.R$id: int flip -com.google.android.material.R$attr: int collapsedSize -com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setCircularRevealScrimColor(int) -wangdaye.com.geometricweather.R$color: int primary_material_light -androidx.swiperefreshlayout.R$layout -com.google.android.material.transformation.FabTransformationSheetBehavior: FabTransformationSheetBehavior(android.content.Context,android.util.AttributeSet) -androidx.appcompat.resources.R$id: int line3 -androidx.viewpager2.R$styleable: int RecyclerView_android_clipToPadding -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_NoActionBar -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: ObservableConcatMapSingle$ConcatMapSingleMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,io.reactivex.internal.util.ErrorMode) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView_DropDown -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_minWidth -androidx.transition.R$id: int tag_unhandled_key_listeners -com.google.android.material.timepicker.ClockHandView: void addOnRotateListener(com.google.android.material.timepicker.ClockHandView$OnRotateListener) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart -android.didikee.donate.R$color: int abc_btn_colored_text_material -okio.AsyncTimeout: void enter() -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int StartMinute -androidx.preference.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.R$string: int feedback_view_style -com.google.android.material.R$string: int material_hour_selection -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.Map lefts -androidx.appcompat.R$color: int primary_text_default_material_light -androidx.preference.R$id: int accessibility_action_clickable_span -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_activityChooserViewStyle -io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable[] values() -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_subtitle_bottom_margin_material -cyanogenmod.app.ProfileGroup: void getXmlString(java.lang.StringBuilder,android.content.Context) -com.amap.api.location.AMapLocationClient: com.amap.api.location.LocationManagerBase a(android.content.Context,android.content.Intent) -james.adaptiveicon.R$styleable: int AppCompatTextView_lineHeight -com.google.android.material.R$id: int parent -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayoutStates -wangdaye.com.geometricweather.common.ui.widgets.TagView: int getUncheckedBackgroundColor() -androidx.preference.R$id: int accessibility_custom_action_14 -com.xw.repo.bubbleseekbar.R$attr: int contentInsetStart -com.turingtechnologies.materialscrollbar.Indicator: void setTextColor(int) -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown -okio.BufferedSource: int readInt() -com.google.android.material.R$attr: int textAppearanceLineHeightEnabled -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX brandInfo -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom -james.adaptiveicon.R$layout: int abc_dialog_title_material -com.google.android.material.textfield.TextInputLayout: void setCounterTextAppearance(int) -androidx.appcompat.resources.R$styleable: int FontFamilyFont_font -cyanogenmod.app.CMStatusBarManager: void removeTile(int) -io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -com.google.android.material.R$styleable: int Slider_labelBehavior -okhttp3.Headers$Builder: okhttp3.Headers$Builder removeAll(java.lang.String) -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State valueOf(java.lang.String) -io.reactivex.internal.disposables.EmptyDisposable: boolean offer(java.lang.Object) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: ChineseCityEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) -androidx.constraintlayout.widget.R$attr: int drawableLeftCompat -androidx.appcompat.R$styleable: int TextAppearance_textLocale -androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Line2 -androidx.appcompat.R$layout: int abc_action_menu_layout -io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.lang.Throwable error -com.google.android.material.R$styleable: int Toolbar_titleMargin -okhttp3.Cache$CacheRequestImpl$1: okhttp3.Cache val$this$0 -wangdaye.com.geometricweather.R$attr: int colorPrimaryDark -com.google.android.material.R$styleable: int DrawerArrowToggle_gapBetweenBars -cyanogenmod.profiles.RingModeSettings: boolean mDirty -androidx.constraintlayout.widget.R$styleable: int SearchView_suggestionRowLayout -androidx.preference.R$attr: int preferenceCategoryTitleTextAppearance -com.google.android.material.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -com.google.android.material.R$attr: int materialCalendarMonth -wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_2_material -androidx.preference.R$styleable: int MenuItem_android_id -com.tencent.bugly.crashreport.crash.a: a() -androidx.constraintlayout.widget.R$styleable: int[] CompoundButton -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -androidx.preference.internal.PreferenceImageView: PreferenceImageView(android.content.Context,android.util.AttributeSet) -androidx.viewpager.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText -com.google.android.material.R$styleable: int Chip_chipStartPadding -okhttp3.internal.cache.CacheInterceptor$1: okio.Timeout timeout() -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvIndex(java.lang.Integer) -james.adaptiveicon.R$dimen: int tooltip_precise_anchor_threshold -com.xw.repo.bubbleseekbar.R$style: int Base_V28_Theme_AppCompat -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void tryEmit(java.lang.Object,io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) -androidx.appcompat.R$drawable: int abc_btn_radio_material_anim -androidx.hilt.R$styleable: int GradientColorItem_android_offset -androidx.lifecycle.extensions.R$attr: int fontProviderAuthority -wangdaye.com.geometricweather.R$attr: int altSrc -com.google.android.material.R$style: int Widget_AppCompat_PopupMenu -com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_DIGIT -wangdaye.com.geometricweather.R$attr: int tabStyle -com.loc.k: k(java.lang.String,java.lang.String) -android.didikee.donate.R$color: int bright_foreground_disabled_material_light -androidx.preference.R$attr: int elevation -android.didikee.donate.R$attr: int tickMarkTintMode -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterTextColor -com.amap.api.fence.GeoFenceClient: void addGeoFence(java.util.List,java.lang.String) -wangdaye.com.geometricweather.R$string: int phase_waxing_crescent -wangdaye.com.geometricweather.R$string: int key_widget_clock_day_horizontal -wangdaye.com.geometricweather.R$string: int cancel -android.didikee.donate.R$attr: int listDividerAlertDialog -androidx.viewpager.R$styleable: int[] GradientColor -com.google.android.material.R$styleable: int TabLayout_tabRippleColor -wangdaye.com.geometricweather.R$attr: int textAppearanceListItemSmall -com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu_ListPopupWindow -androidx.customview.R$attr: int fontProviderFetchStrategy -com.google.android.material.R$styleable: int[] MaterialCardView -androidx.preference.R$styleable: int[] LinearLayoutCompat_Layout -wangdaye.com.geometricweather.R$id: int customPanel -james.adaptiveicon.R$drawable: int abc_dialog_material_background -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: long serialVersionUID -com.google.android.material.R$styleable: int Slider_tickVisible -wangdaye.com.geometricweather.db.entities.WeatherEntity: long timeStamp -androidx.vectordrawable.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: double Value -wangdaye.com.geometricweather.R$styleable: int Chip_chipStrokeWidth -com.google.android.material.R$id: int animateToEnd -androidx.constraintlayout.widget.R$styleable: int Toolbar_buttonGravity -retrofit2.ParameterHandler$Tag: void apply(retrofit2.RequestBuilder,java.lang.Object) -androidx.recyclerview.R$id: int action_divider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String from -cyanogenmod.weather.WeatherInfo: int describeContents() -androidx.preference.R$styleable: int AppCompatTheme_checkboxStyle -com.google.android.material.R$styleable: int ConstraintSet_flow_lastHorizontalStyle -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetStartWithNavigation -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetEndWithActions -androidx.viewpager2.R$drawable: int notify_panel_notification_icon_bg -wangdaye.com.geometricweather.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop -androidx.loader.R$styleable: int FontFamilyFont_android_fontStyle -androidx.constraintlayout.widget.R$attr: int selectableItemBackground -androidx.viewpager2.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$id: int notification_multi_city_icon_1 -com.baidu.location.e.p -androidx.transition.R$id: int blocking -androidx.hilt.work.R$styleable: int GradientColor_android_endColor -androidx.viewpager2.R$drawable: int notification_bg_low_normal -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SEVERE_THUNDERSTORMS -com.google.gson.stream.JsonReader: java.io.Reader in -okio.RealBufferedSource: int read(byte[],int,int) -com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPickerView -androidx.constraintlayout.widget.R$id: int tag_unhandled_key_event_manager -androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: java.lang.String Unit -io.reactivex.Observable: io.reactivex.Observable amb(java.lang.Iterable) -okhttp3.internal.http.RealResponseBody: java.lang.String contentTypeString -okhttp3.internal.http2.Http2Writer: void synStream(boolean,int,int,java.util.List) -com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_visible -wangdaye.com.geometricweather.R$styleable: int AppBarLayout_elevation -androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabView -androidx.appcompat.R$integer: int abc_config_activityShortDur -james.adaptiveicon.R$styleable: int Spinner_popupTheme -androidx.appcompat.R$style: int Theme_AppCompat_DayNight -com.jaredrummler.android.colorpicker.R$dimen: int compat_button_padding_horizontal_material -wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_dark -wangdaye.com.geometricweather.R$id: int sides -wangdaye.com.geometricweather.R$drawable: int abc_item_background_holo_dark -okhttp3.OkHttpClient: okhttp3.ConnectionPool connectionPool() -androidx.vectordrawable.animated.R$id: int text -wangdaye.com.geometricweather.R$string: int settings_title_notification_text_color -androidx.appcompat.R$styleable: int AnimatedStateListDrawableTransition_android_toId -wangdaye.com.geometricweather.R$styleable: int MaterialRadioButton_useMaterialThemeColors -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_showMotionSpec -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_EXPORT_WITH_RC4_40_MD5 -com.xw.repo.bubbleseekbar.R$attr: int textColorAlertDialogListItem -com.google.android.material.R$attr: int pivotAnchor -androidx.viewpager2.R$id: int accessibility_custom_action_16 -com.jaredrummler.android.colorpicker.R$id: int multiply -wangdaye.com.geometricweather.R$id: int mtrl_calendar_day_selector_frame -wangdaye.com.geometricweather.db.entities.HistoryEntity: void setWeatherSource(java.lang.String) -androidx.lifecycle.Lifecycling$1 -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_transitionEasing -io.reactivex.Observable: io.reactivex.Observable timeInterval(java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.google.android.gms.common.stats.WakeLockEvent: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$attr: int iconStartPadding -androidx.preference.R$id: int spacer -com.jaredrummler.android.colorpicker.R$attr: int listDividerAlertDialog -com.google.android.material.R$styleable: int KeyTimeCycle_android_rotation -com.google.android.material.R$styleable: int MaterialCardView_android_checkable -androidx.activity.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.R$string: int settings_title_refresh_rate -androidx.constraintlayout.widget.R$styleable: int CompoundButton_android_button -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer -com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_content_include -okhttp3.internal.http.RealInterceptorChain: java.util.List interceptors -okhttp3.internal.Util: java.lang.AssertionError assertionError(java.lang.String,java.lang.Exception) -androidx.preference.R$style: int PreferenceThemeOverlay_v14 -com.google.android.material.navigation.NavigationView: void setCheckedItem(int) -io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onSubscribe(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_title -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startX -com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackTintList() -wangdaye.com.geometricweather.R$string: R$string() -androidx.constraintlayout.widget.R$attr: int closeItemLayout -okhttp3.Request$Builder -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeDescription -io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay() -wangdaye.com.geometricweather.background.polling.permanent.observer.TimeObserverService -androidx.constraintlayout.widget.R$attr: int autoSizeMinTextSize -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_titleMarginBottom -wangdaye.com.geometricweather.R$id: int widget_clock_day_weather -wangdaye.com.geometricweather.R$style: int Widget_Support_CoordinatorLayout -com.amap.api.fence.GeoFence: int STATUS_IN -com.turingtechnologies.materialscrollbar.R$styleable: int[] AppCompatTheme -wangdaye.com.geometricweather.R$id: int dialog_donate_wechat -androidx.hilt.work.R$styleable: int GradientColor_android_centerColor -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -com.google.android.material.R$styleable: int MenuItem_android_checked -com.google.android.material.R$attr: int materialCalendarDay -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_itemTextAppearance -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_pressed_holo_dark -android.didikee.donate.R$integer: int status_bar_notification_info_maxnum -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.ObservableSource source -com.jaredrummler.android.colorpicker.R$id: int action_bar_root -androidx.hilt.R$id: int accessibility_custom_action_2 -com.google.android.material.R$styleable: int[] AppBarLayout_Layout -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: int unitArrayIndex -android.didikee.donate.R$style: int Base_Widget_AppCompat_DrawerArrowToggle -io.reactivex.Observable: io.reactivex.Observable groupJoin(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) -okhttp3.internal.http2.Http2Connection: java.lang.String hostname -okhttp3.Protocol: java.lang.String protocol -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean brandInfo -com.google.android.material.R$dimen: int abc_action_bar_stacked_max_height -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar_Small -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver this$0 -androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context) -androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dialog_Alert -androidx.preference.R$styleable: int MenuView_android_headerBackground -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorHeight -wangdaye.com.geometricweather.R$string: int done -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -com.google.android.material.R$attr: int listDividerAlertDialog -androidx.lifecycle.SingleGeneratedAdapterObserver: androidx.lifecycle.GeneratedAdapter mGeneratedAdapter -androidx.recyclerview.R$styleable: int GradientColor_android_endX -androidx.viewpager2.R$id: int actions -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric: int UnitType -androidx.lifecycle.SavedStateHandle: java.lang.String VALUES -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Headline -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean isDisposed() -androidx.appcompat.widget.SwitchCompat: android.content.res.ColorStateList getThumbTintList() -androidx.drawerlayout.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.R$layout: int widget_clock_day_rectangle -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void onComplete() -com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode Device_Sensors -androidx.hilt.work.R$attr: int fontProviderCerts -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintTextColor -com.google.android.material.appbar.AppBarLayout: void addOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$BaseOnOffsetChangedListener) -androidx.preference.R$dimen: int fastscroll_minimum_range -androidx.viewpager.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ROMANIAN -okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService access$400() -com.jaredrummler.android.colorpicker.R$drawable: int abc_seekbar_track_material -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: java.lang.String date -com.turingtechnologies.materialscrollbar.R$attr: int chipGroupStyle -com.google.android.material.slider.RangeSlider: float getThumbStrokeWidth() -wangdaye.com.geometricweather.R$id: int widget_day_week_temp_3 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyleIndicator -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -androidx.cardview.R$styleable: int CardView_cardElevation -james.adaptiveicon.R$attr: int fontProviderPackage -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onError(java.lang.Throwable) -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -wangdaye.com.geometricweather.R$string: int feedback_collect_failed -androidx.loader.R$styleable: int GradientColor_android_startColor -cyanogenmod.app.IProfileManager$Stub$Proxy: android.os.IBinder mRemote -android.didikee.donate.R$id: int scrollView -androidx.appcompat.R$dimen: int tooltip_y_offset_non_touch -cyanogenmod.app.BaseLiveLockManagerService: android.os.RemoteCallbackList mChangeListeners -androidx.preference.R$styleable: int[] AppCompatSeekBar -io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void clear() -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void priority(int,int,int,boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX getIndices() -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_BottomSheet -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg -wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getShortDate(android.content.Context) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial Imperial -com.google.gson.stream.JsonReader: int PEEKED_END_ARRAY -androidx.lifecycle.extensions.R$attr: int fontVariationSettings -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_listLayout -com.google.android.material.R$styleable: int NavigationView_itemIconTint -wangdaye.com.geometricweather.R$styleable: int Layout_maxWidth -android.didikee.donate.R$styleable: int SwitchCompat_thumbTextPadding -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean isDisposed() +com.tencent.bugly.crashreport.biz.b: boolean j() +wangdaye.com.geometricweather.R$id: int search_edit_frame +wangdaye.com.geometricweather.R$styleable: int ColorStateListItem_android_alpha +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_spinnerStyle +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber this$1 +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryInnerObserver boundaryObserver +androidx.coordinatorlayout.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$styleable: int RecyclerView_android_clipToPadding +okhttp3.internal.Util: void addSuppressedIfPossible(java.lang.Throwable,java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void refresh() +retrofit2.OkHttpCall$NoContentResponseBody: long contentLength() +androidx.preference.R$styleable: int AppCompatTheme_actionBarItemBackground +androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_android_color +okhttp3.internal.http2.Header +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onNext(java.lang.Object) +okhttp3.internal.cache.DiskLruCache: boolean initialized +androidx.customview.R$layout: int notification_action_tombstone +com.xw.repo.bubbleseekbar.R$attr: int contentDescription +com.google.android.material.R$attr: int colorControlNormal +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: java.lang.String Unit +com.amap.api.fence.PoiItem: void setTel(java.lang.String) +androidx.appcompat.R$integer: int config_tooltipAnimTime +androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_precise_anchor_extra_offset +androidx.constraintlayout.widget.R$attr: int ratingBarStyleSmall +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +com.tencent.bugly.proguard.m: long c +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: io.reactivex.Observer downstream +androidx.viewpager2.R$layout: int notification_template_icon_group +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void drain() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_end +androidx.vectordrawable.R$attr: int alpha +android.didikee.donate.R$styleable: int AppCompatTextView_drawableBottomCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: double Value +com.google.android.material.R$style: int Widget_AppCompat_Light_PopupMenu +com.google.android.material.R$styleable: int AppCompatTheme_actionModeCutDrawable wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int SnowProbability -com.tencent.bugly.proguard.z: byte[] a(java.io.File,java.lang.String,java.lang.String) -android.support.v4.os.ResultReceiver$MyResultReceiver +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: int unitArrayIndex +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Small +androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context) +com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace SRGB +androidx.lifecycle.LiveData$ObserverWrapper: boolean mActive +wangdaye.com.geometricweather.R$id: int container_main_aqi_progress +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +okhttp3.internal.cache.DiskLruCache$3: java.util.Iterator delegate +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onComplete() +okhttp3.CookieJar: java.util.List loadForRequest(okhttp3.HttpUrl) +androidx.appcompat.app.ActionBar +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: boolean isDisposed() +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabGravity +com.baidu.location.e.l$b: java.lang.String g +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onError(java.lang.Throwable) +okhttp3.EventListener$Factory +okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,okio.ByteString) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +cyanogenmod.app.Profile$ProfileTrigger: int access$202(cyanogenmod.app.Profile$ProfileTrigger,int) +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int MISSED_STATE +android.didikee.donate.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +wangdaye.com.geometricweather.R$layout: int widget_day_nano +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_ActionBar +wangdaye.com.geometricweather.R$xml: int widget_trend_daily +androidx.preference.R$dimen: int notification_top_pad_large_text +com.tencent.bugly.proguard.ak: com.tencent.bugly.proguard.ai w +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabGravity +androidx.viewpager2.widget.ViewPager2: void setLayoutDirection(int) +okhttp3.internal.cache.DiskLruCache$Snapshot: long sequenceNumber +wangdaye.com.geometricweather.R$attr: int chipMinTouchTargetSize +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_arrowShaftLength +com.google.android.material.floatingactionbutton.FloatingActionButton: void setShowMotionSpecResource(int) +com.google.android.material.slider.BaseSlider: void addOnSliderTouchListener(com.google.android.material.slider.BaseOnSliderTouchListener) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void schedule() +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String r +androidx.transition.R$id: int action_divider +com.google.gson.stream.JsonReader$1: JsonReader$1() +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat +android.didikee.donate.R$dimen: int abc_dialog_padding_material +androidx.recyclerview.R$style +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onAnimationReset() +okhttp3.logging.LoggingEventListener$1 +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_NoActionBar +cyanogenmod.app.CustomTile: android.app.PendingIntent onClick +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode[] getDisplayModes() +androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData +com.google.android.material.R$dimen: int abc_select_dialog_padding_start_material +androidx.constraintlayout.widget.Barrier: int getType() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getResidentPosition() +com.google.android.material.R$styleable: int AppBarLayout_liftOnScrollTargetViewId +android.support.v4.app.INotificationSideChannel: void notify(java.lang.String,int,java.lang.String,android.app.Notification) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +com.google.android.material.R$dimen: int mtrl_tooltip_minHeight +wangdaye.com.geometricweather.R$layout: int test_toolbar_custom_background +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid: AccuDailyResult$DailyForecasts$Day$TotalLiquid() +androidx.appcompat.view.menu.ListMenuItemView: android.view.LayoutInflater getInflater() +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconDrawable +wangdaye.com.geometricweather.R$color: R$color() +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHeight_max +com.google.android.material.R$attr: int behavior_halfExpandedRatio +androidx.constraintlayout.widget.R$styleable: int Toolbar_menu +com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_in_top +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean url +wangdaye.com.geometricweather.db.entities.LocationEntity: float latitude +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_defaultValue +wangdaye.com.geometricweather.R$drawable: int ic_menu_up +android.didikee.donate.R$attr: int backgroundTintMode +androidx.constraintlayout.widget.R$attr: int pathMotionArc +com.jaredrummler.android.colorpicker.R$dimen: int abc_edit_text_inset_bottom_material +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type getRawType() +androidx.customview.R$id: int italic +androidx.loader.R$id: int time +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textColorLink +androidx.drawerlayout.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String WidgetPhrase +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert +wangdaye.com.geometricweather.R$attr: int colorOnBackground +androidx.preference.R$style: int Theme_AppCompat_NoActionBar +io.reactivex.internal.observers.DeferredScalarDisposable: boolean isEmpty() +io.reactivex.internal.util.EmptyComponent: void onComplete() +wangdaye.com.geometricweather.R$id: int item_card_display +com.google.android.material.R$id: int transition_layout_save +com.tencent.bugly.crashreport.crash.c: void m() +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +com.xw.repo.bubbleseekbar.R$dimen: int abc_alert_dialog_button_bar_height +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_12 +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom +com.bumptech.glide.R$layout +com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: FloatingActionButton$BaseBehavior(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$layout: int mtrl_picker_fullscreen +com.google.android.material.chip.ChipGroup: void setChipSpacingVertical(int) +androidx.appcompat.R$attr: int buttonCompat +androidx.preference.R$styleable: int[] RecyclerView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm10Desc(java.lang.String) com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_middle_mtrl_light -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_12 -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory HIGH -androidx.preference.R$styleable: int AppCompatTextView_drawableTint -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabContentStart -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void subscribeActual() -cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_DATAUSAGE -androidx.swiperefreshlayout.R$id: int action_text -okhttp3.EventListener: void dnsStart(okhttp3.Call,java.lang.String) -android.didikee.donate.R$styleable: int Toolbar_titleTextAppearance -com.google.android.material.R$attr: int tabMode -androidx.preference.R$color: int material_grey_300 -com.google.android.material.R$styleable: int KeyTimeCycle_framePosition -com.google.android.material.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.appcompat.R$attr: int expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.R$integer: int hide_password_duration +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_130 +com.google.android.material.R$style: int Theme_AppCompat_DayNight +androidx.transition.R$styleable: int FontFamilyFont_fontWeight +androidx.constraintlayout.widget.R$styleable: int[] MotionTelltales +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +wangdaye.com.geometricweather.R$attr: int contentScrim +wangdaye.com.geometricweather.R$attr: int logoDescription +com.google.android.material.R$styleable: int SwitchCompat_switchTextAppearance +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getPressure() +androidx.constraintlayout.widget.R$attr: int buttonTint +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +cyanogenmod.app.BaseLiveLockManagerService: boolean hasPrivatePermissions() +androidx.appcompat.R$styleable: int AppCompatTheme_popupWindowStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean precipitation +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_body_2_material +okhttp3.internal.http2.Http2Connection$6: void execute() +com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getIndicatorWidth() +james.adaptiveicon.R$styleable: int RecycleListView_paddingBottomNoButtons +androidx.cardview.widget.CardView: int getContentPaddingLeft() +com.google.android.material.R$styleable: int AppCompatImageView_tint +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1: retrofit2.Callback val$callback +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void createCustomTileWithTag(java.lang.String,java.lang.String,java.lang.String,int,cyanogenmod.app.CustomTile,int[],int) +cyanogenmod.providers.CMSettings$System: java.lang.String FORWARD_LOOKUP_PROVIDER +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +androidx.drawerlayout.R$dimen: int compat_button_inset_vertical_material +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customPixelDimension +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ImageButton +com.google.android.material.R$id: int transition_scene_layoutid_cache +androidx.viewpager2.R$styleable: int ColorStateListItem_alpha +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean: void setValue(java.lang.String) +androidx.appcompat.R$dimen: int abc_list_item_height_material +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getAbbreviation(android.content.Context) +com.jaredrummler.android.colorpicker.R$id: int action_container +wangdaye.com.geometricweather.db.entities.DailyEntity: void setGrassIndex(java.lang.Integer) +okhttp3.internal.http2.Settings: int get(int) +cyanogenmod.hardware.ICMHardwareService: boolean setDisplayColorCalibration(int[]) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String timezone +com.bumptech.glide.integration.okhttp.R$id: int time +androidx.lifecycle.LiveData: int mVersion +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_19 +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose +androidx.hilt.work.R$anim: int fragment_close_exit +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +androidx.preference.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +androidx.recyclerview.R$dimen: int notification_top_pad +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetRight +wangdaye.com.geometricweather.R$id: int design_menu_item_action_area +wangdaye.com.geometricweather.R$string: int mold +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle +wangdaye.com.geometricweather.R$style: int Base_V26_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_textAppearance +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +androidx.preference.R$string: int abc_action_mode_done +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabStyle +androidx.vectordrawable.animated.R$id +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long serialVersionUID +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void cancel() +com.jaredrummler.android.colorpicker.R$dimen: int notification_media_narrow_margin +com.google.android.material.slider.BaseSlider: void setTrackActiveTintList(android.content.res.ColorStateList) +james.adaptiveicon.R$styleable: int[] LinearLayoutCompat_Layout +android.didikee.donate.R$attr: int editTextBackground +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_landscape_header_width +androidx.activity.R$id: int accessibility_custom_action_8 +okhttp3.Connection: okhttp3.Protocol protocol() +okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithoutIndexingIndexedName(int) +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setNighttimeTemperature(int) +androidx.coordinatorlayout.widget.CoordinatorLayout: void setOnHierarchyChangeListener(android.view.ViewGroup$OnHierarchyChangeListener) +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setSelectedPage(int) +androidx.constraintlayout.widget.R$attr: int spinnerDropDownItemStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_padding_left +com.google.android.material.slider.BaseSlider: void setThumbRadius(int) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarDivider +cyanogenmod.app.IPartnerInterface$Stub: cyanogenmod.app.IPartnerInterface asInterface(android.os.IBinder) +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: IKeyguardExternalViewProvider$Stub() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +cyanogenmod.externalviews.ExternalView: android.content.ServiceConnection mServiceConnection +androidx.activity.R$id: int action_image +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_default_mtrl_shape +androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableCompat +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light_normal +androidx.appcompat.app.AppCompatDelegateImpl$PanelFeatureState$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$id: int dialog_location_help_title +com.google.android.material.R$attr: int tabInlineLabel +com.tencent.bugly.BuglyStrategy: boolean i +androidx.preference.R$styleable: int MenuGroup_android_enabled +android.didikee.donate.R$styleable: int ActionBar_contentInsetStartWithNavigation +retrofit2.OkHttpCall$NoContentResponseBody: long contentLength +androidx.constraintlayout.widget.R$color: int material_deep_teal_500 +wangdaye.com.geometricweather.R$attr: int badgeTextColor +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +com.google.android.material.R$styleable: int[] MaterialCalendarItem +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat +james.adaptiveicon.R$styleable: int Toolbar_contentInsetStartWithNavigation +android.didikee.donate.R$id: int home +okhttp3.Cookie: boolean hostOnly() +okhttp3.internal.http2.Hpack$Reader: void clearDynamicTable() +androidx.appcompat.widget.AppCompatEditText: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +cyanogenmod.profiles.BrightnessSettings: int getValue() +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_gapBetweenBars +androidx.core.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +androidx.legacy.coreutils.R$id: int line1 +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable[] TERMINATED +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_creator +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_subtitle +cyanogenmod.themes.IThemeService$Stub$Proxy: void requestThemeChangeUpdates(cyanogenmod.themes.IThemeChangeListener) +com.google.android.material.R$styleable: int GradientColor_android_endX +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_switchTextOn +okhttp3.internal.cache.CacheInterceptor: boolean isEndToEnd(java.lang.String) +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_LIVE_LOCK_SCREEN_COMPONENT +com.google.android.material.R$string: int material_timepicker_text_input_mode_description +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarWidgetTheme +james.adaptiveicon.R$styleable: int Toolbar_title +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarTheme +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Body1 +cyanogenmod.providers.CMSettings$System: java.lang.String SYS_PROP_CM_SETTING_VERSION +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItem +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Tab +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: io.reactivex.disposables.Disposable upstream +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent +com.google.gson.stream.JsonScope: int EMPTY_ARRAY +com.google.android.material.R$dimen: int mtrl_calendar_text_input_padding_top +cyanogenmod.providers.DataUsageContract: DataUsageContract() +androidx.preference.R$styleable: int[] PreferenceFragmentCompat +android.didikee.donate.R$styleable: int Toolbar_titleMargin +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: int UnitType +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource[],io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_arrowSize +com.tencent.bugly.CrashModule: long a +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onNext(java.lang.Object) +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type UNRESTRICTED +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeTotalPrecipitationDuration +wangdaye.com.geometricweather.R$attr: int layout_constraintRight_toRightOf +com.google.android.material.slider.BaseSlider: float getThumbStrokeWidth() +com.bumptech.glide.integration.okhttp.R$style: int Widget_Support_CoordinatorLayout +androidx.lifecycle.Lifecycle$Event +org.greenrobot.greendao.AbstractDaoMaster: int schemaVersion +androidx.constraintlayout.widget.R$string: int abc_action_menu_overflow_description +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.util.Map R +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_dialog_btn_min_width +cyanogenmod.providers.CMSettings$Secure$1: CMSettings$Secure$1() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$id: int notification_multi_city_3 +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_indeterminate +cyanogenmod.hardware.DisplayMode$1: java.lang.Object[] newArray(int) +androidx.preference.PreferenceManager: void setOnPreferenceTreeClickListener(androidx.preference.PreferenceManager$OnPreferenceTreeClickListener) +wangdaye.com.geometricweather.R$styleable: int Chip_chipIconVisible +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: long serialVersionUID +retrofit2.Response: okhttp3.Response raw() +okhttp3.internal.http2.Http2Connection: long bytesLeftInWriteWindow +com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_800 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Item +androidx.constraintlayout.widget.R$styleable: int SearchView_queryBackground +okhttp3.CacheControl$Builder: int minFreshSeconds +androidx.preference.R$dimen: int abc_button_inset_horizontal_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: java.lang.String Unit +com.tencent.bugly.crashreport.common.info.a: java.lang.String n +android.didikee.donate.R$styleable: int Toolbar_android_gravity +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getType() +com.google.android.material.appbar.AppBarLayout: AppBarLayout(android.content.Context,android.util.AttributeSet) +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderCerts +androidx.appcompat.widget.AppCompatToggleButton: AppCompatToggleButton(android.content.Context) +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String postCode +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Display3 +com.google.android.material.appbar.MaterialToolbar: void setNavigationIcon(android.graphics.drawable.Drawable) +androidx.hilt.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric +okhttp3.Headers: java.lang.String toString() +com.google.android.material.R$styleable: int SearchView_defaultQueryHint +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onComplete() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListMenuView +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification +com.google.android.material.R$style: int Widget_AppCompat_SearchView +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_scaleX +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver +com.google.android.material.R$layout: int design_layout_tab_icon +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: CaiYunMainlyResult$IndicesBeanX() +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setDuration(long) +androidx.constraintlayout.widget.R$id: int tag_transition_group +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onError(java.lang.Throwable) +androidx.preference.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +androidx.activity.R$styleable: int GradientColor_android_startX +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_height_material +com.google.android.material.R$styleable: int[] MaterialButtonToggleGroup +com.google.android.material.R$styleable: int CardView_cardBackgroundColor +okhttp3.internal.http2.Hpack$Writer: Hpack$Writer(int,boolean,okio.Buffer) +com.tencent.bugly.proguard.i: boolean a(int) +androidx.constraintlayout.motion.widget.MotionLayout$TransitionState: androidx.constraintlayout.motion.widget.MotionLayout$TransitionState[] values() +wangdaye.com.geometricweather.settings.fragments.UnitSettingsFragment +com.google.android.material.R$id: int textinput_suffix_text +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +com.google.android.material.R$dimen: int abc_action_bar_icon_vertical_padding_material +androidx.preference.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +cyanogenmod.platform.R$integer: R$integer() +wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarButtonStyle +com.google.android.material.R$style: int Base_TextAppearance_MaterialComponents_Button +androidx.preference.R$styleable: int AppCompatTextView_drawableLeftCompat +com.google.android.material.R$attr: int boxCollapsedPaddingTop +androidx.coordinatorlayout.widget.CoordinatorLayout: int getSuggestedMinimumWidth() +com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextInputEditText +androidx.preference.R$styleable: int CheckBoxPreference_summaryOn +com.google.android.material.R$attr: int actionBarTabTextStyle +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: java.lang.Object index() +com.amap.api.location.AMapLocation: int LOCATION_TYPE_OFFLINE +com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemTextColor() +com.google.android.material.R$id: int mtrl_calendar_day_selector_frame +androidx.appcompat.R$style: int Theme_AppCompat_Light_DialogWhenLarge +cyanogenmod.externalviews.ExternalViewProperties: int mWidth +com.xw.repo.bubbleseekbar.R$style: int Base_V22_Theme_AppCompat_Light +wangdaye.com.geometricweather.background.polling.PollingUpdateHelper +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LOCKSCREEN +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIcon +io.reactivex.Observable: io.reactivex.Observable scan(io.reactivex.functions.BiFunction) +wangdaye.com.geometricweather.R$attr: int progressBarPadding +com.google.android.material.R$styleable: int TextInputLayout_startIconCheckable +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedFragment(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationZ +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long serialVersionUID +okhttp3.RequestBody$2: okhttp3.MediaType val$contentType +wangdaye.com.geometricweather.R$attr: int layout_goneMarginBottom +com.google.android.material.card.MaterialCardView: void setCardBackgroundColor(android.content.res.ColorStateList) +james.adaptiveicon.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +wangdaye.com.geometricweather.R$drawable: int ic_temperature_kelvin +com.turingtechnologies.materialscrollbar.R$string: int abc_activitychooserview_choose_application +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter$BodyCallback +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +com.google.android.material.chip.Chip: void setCloseIconEndPadding(float) +retrofit2.ParameterHandler$RawPart: void apply(retrofit2.RequestBuilder,okhttp3.MultipartBody$Part) +androidx.activity.R$id: int async +com.google.android.material.switchmaterial.SwitchMaterial: void setUseMaterialThemeColors(boolean) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton +com.jaredrummler.android.colorpicker.R$id: int seekbar_value +wangdaye.com.geometricweather.R$layout: int text_view_without_line_height +android.didikee.donate.R$drawable: int abc_scrubber_track_mtrl_alpha +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: void setDefenseText(java.lang.String) +wangdaye.com.geometricweather.R$layout: int support_simple_spinner_dropdown_item +okio.Pipe: okio.Buffer buffer +io.reactivex.Observable: io.reactivex.Observable lift(io.reactivex.ObservableOperator) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowMinWidthMajor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: int UnitType +okhttp3.Call: okhttp3.Response execute() +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$id: int widget_week_weather +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler getNativeExceptionHandler() +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderLayout +androidx.hilt.R$id: int accessibility_custom_action_16 +com.github.rahatarmanahmed.cpv.CircularProgressView$9 +cyanogenmod.providers.CMSettings$Secure: java.util.Map VALIDATORS +james.adaptiveicon.R$attr: int fontFamily +com.amap.api.fence.GeoFenceManagerBase: void addNearbyGeoFence(java.lang.String,java.lang.String,com.amap.api.location.DPoint,float,int,java.lang.String) +androidx.work.impl.foreground.SystemForegroundService: SystemForegroundService() +androidx.constraintlayout.widget.R$dimen: int tooltip_vertical_padding +androidx.constraintlayout.widget.R$anim: R$anim() +androidx.coordinatorlayout.R$layout: int notification_action_tombstone +com.turingtechnologies.materialscrollbar.R$id: int action_container +okio.RealBufferedSink: okio.Buffer buffer +androidx.work.WorkInfo$State: androidx.work.WorkInfo$State BLOCKED +wangdaye.com.geometricweather.R$layout: int design_text_input_end_icon +androidx.lifecycle.extensions.R$drawable: int notification_tile_bg +okhttp3.internal.http2.Http2Writer: okio.Buffer hpackBuffer +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: java.lang.Object enterTransform(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue +com.tencent.bugly.crashreport.crash.jni.a: void handleNativeException(int,int,long,long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,int,java.lang.String,java.lang.String) +cyanogenmod.hardware.CMHardwareManager: boolean isSunlightEnhancementSelfManaged() +wangdaye.com.geometricweather.R$color: int secondary_text_disabled_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: void setUnit(java.lang.String) +com.google.android.material.R$attr: int customColorValue +com.turingtechnologies.materialscrollbar.R$attr: int itemTextColor +androidx.coordinatorlayout.widget.CoordinatorLayout +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animDuration +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_navigationIcon +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$EdgeEffectFactory getEdgeEffectFactory() +com.tencent.bugly.proguard.d: byte[] a() +com.google.android.material.R$dimen: int material_clock_hand_padding +okhttp3.internal.ws.WebSocketWriter: okio.BufferedSink sink +com.google.android.material.R$styleable: int Chip_closeIcon +androidx.constraintlayout.widget.R$attr: int path_percent +io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) +androidx.preference.R$id: int on +james.adaptiveicon.R$dimen: int tooltip_y_offset_non_touch +wangdaye.com.geometricweather.R$attr: int touchAnchorId +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +androidx.appcompat.R$styleable: int Toolbar_contentInsetEnd +androidx.core.R$attr: int fontProviderPackage +com.google.android.material.R$styleable: int Layout_layout_constraintGuide_percent +com.xw.repo.bubbleseekbar.R$attr: int bsb_is_float_type +androidx.appcompat.widget.ActionMenuView: void setOverflowIcon(android.graphics.drawable.Drawable) +com.google.android.material.chip.Chip: void setChipCornerRadiusResource(int) +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int FIRED_STATE +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_divider +retrofit2.OkHttpCall: java.lang.Object clone() +androidx.appcompat.widget.AppCompatImageButton +okhttp3.internal.ws.WebSocketWriter$FrameSink: long contentLength +com.amap.api.fence.DistrictItem: java.util.List d +okio.InflaterSource: int bufferBytesHeldByInflater +androidx.vectordrawable.animated.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CheckedTextView +retrofit2.KotlinExtensions$await$2$2: kotlinx.coroutines.CancellableContinuation $continuation +io.reactivex.internal.observers.DeferredScalarObserver: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_toTopOf +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDate(java.util.Date) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitationDuration +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeApparentTemperature +wangdaye.com.geometricweather.R$attr: int layout_goneMarginRight +com.google.android.material.R$layout: int abc_alert_dialog_material +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitationDuration() +androidx.coordinatorlayout.R$dimen: int compat_button_padding_vertical_material +com.jaredrummler.android.colorpicker.R$anim: int abc_tooltip_exit +com.turingtechnologies.materialscrollbar.R$id: int search_badge +android.didikee.donate.R$layout: int abc_alert_dialog_title_material +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: KeyguardExternalViewProviderService$Provider$ProviderImpl$7(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +androidx.preference.R$styleable: int BackgroundStyle_android_selectableItemBackground +com.jaredrummler.android.colorpicker.R$attr: int colorError +androidx.work.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$id: int item_trend_daily +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation valueOf(java.lang.String) +androidx.preference.R$id: int title +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node getHead() +james.adaptiveicon.R$attr: int borderlessButtonStyle +androidx.constraintlayout.widget.R$styleable: int AlertDialog_buttonPanelSideLayout +wangdaye.com.geometricweather.R$styleable: int[] KeyTrigger +wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_material +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +androidx.appcompat.R$styleable: int SearchView_commitIcon +com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy DEFAULT +androidx.preference.R$styleable: int AppCompatImageView_tint +androidx.work.R$styleable: int FontFamilyFont_android_ttcIndex +cyanogenmod.os.Build +wangdaye.com.geometricweather.R$id: int visible_removing_fragment_view_tag +com.google.android.material.chip.Chip: float getCloseIconEndPadding() +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_translation_z_base +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: boolean requestDismiss() +com.google.android.material.button.MaterialButtonToggleGroup: java.util.List getCheckedButtonIds() +com.tencent.bugly.proguard.z: long b() +androidx.constraintlayout.widget.R$attr: int subtitleTextAppearance +okhttp3.CertificatePinner$Builder: CertificatePinner$Builder() +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: boolean isDisposed() +com.google.android.material.bottomappbar.BottomAppBar: int getRightInset() +okio.GzipSource: byte FHCRC +androidx.fragment.R$dimen: int compat_control_corner_material +cyanogenmod.app.CustomTile$ExpandedStyle: int GRID_STYLE +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeSplitBackground +androidx.constraintlayout.widget.R$attr: int customPixelDimension +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListView +okio.Buffer: byte[] DIGITS +com.amap.api.location.AMapLocationQualityReport: int getGPSStatus() +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_textAllCaps +com.google.android.material.R$attr: int drawableBottomCompat +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconCheckable +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleDrawable(android.graphics.drawable.Drawable) +okhttp3.internal.connection.RealConnection: okio.BufferedSource source +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_48dp +james.adaptiveicon.R$attr: int queryHint +wangdaye.com.geometricweather.R$id: int tag_accessibility_clickable_spans +com.tencent.bugly.crashreport.common.info.a: int K() +james.adaptiveicon.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_positiveButtonText +wangdaye.com.geometricweather.R$anim: int abc_tooltip_exit +android.didikee.donate.R$attr: int title +androidx.loader.R$dimen: int notification_big_circle_margin +okio.SegmentedByteString: int[] directory +cyanogenmod.app.ProfileGroup$1: cyanogenmod.app.ProfileGroup[] newArray(int) +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void dispose() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeWetBulbTemperature() +androidx.preference.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +android.didikee.donate.R$styleable: int[] LinearLayoutCompat +androidx.preference.R$style: int Widget_AppCompat_Light_PopupMenu +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: void onError(java.lang.Throwable) +com.google.android.material.R$styleable: int TabLayout_tabPaddingTop +cyanogenmod.app.Profile$ProfileTrigger$1: java.lang.Object[] newArray(int) +androidx.preference.R$styleable: int Preference_allowDividerAbove +com.google.android.material.R$color: int switch_thumb_normal_material_light +com.google.android.material.R$dimen: int mtrl_switch_thumb_elevation +androidx.appcompat.R$attr: int queryBackground +androidx.work.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.R$string: int material_hour_selection +androidx.fragment.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List hourlyForecast +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_gravity +android.didikee.donate.R$color: int primary_dark_material_light +cyanogenmod.themes.IThemeChangeListener: void onFinish(boolean) +com.google.android.material.R$attr: int backgroundInsetEnd +okhttp3.Request: okhttp3.CacheControl cacheControl() +okio.Buffer: int selectPrefix(okio.Options,boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setRealFeelShaderTemperature(java.lang.Integer) +com.amap.api.location.AMapLocation: double u +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ProgressBar +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastHorizontalStyle +androidx.preference.R$style: int Widget_AppCompat_ActionButton +okio.ByteString: java.lang.String base64() +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_keyline +com.google.android.material.R$style: int Widget_MaterialComponents_CollapsingToolbar +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: java.lang.String Unit +com.jaredrummler.android.colorpicker.R$id: int cpv_arrow_right +com.jaredrummler.android.colorpicker.R$styleable: int RecycleListView_paddingTopNoTitle +com.google.android.material.chip.Chip: void setCloseIconSizeResource(int) +wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchAnchorId +com.google.android.material.R$dimen: int mtrl_calendar_day_width +cyanogenmod.providers.ThemesContract$MixnMatchColumns: android.net.Uri CONTENT_URI +wangdaye.com.geometricweather.remoteviews.config.MultiCityWidgetConfigActivity: MultiCityWidgetConfigActivity() +androidx.fragment.R$dimen: R$dimen() +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_hideMotionSpec +com.amap.api.location.AMapLocation: java.lang.String n +com.tencent.bugly.crashreport.crash.anr.a +okhttp3.logging.LoggingEventListener: void connectEnd(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol) +io.reactivex.Observable: io.reactivex.Observable repeatUntil(io.reactivex.functions.BooleanSupplier) +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.R$attr: int hintTextAppearance +wangdaye.com.geometricweather.R$id: int chain +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColor +io.reactivex.Observable: io.reactivex.Observable doOnComplete(io.reactivex.functions.Action) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SeekBar_Discrete +androidx.hilt.R$id: int icon_group +wangdaye.com.geometricweather.settings.dialogs.TimeSetterDialog: TimeSetterDialog() +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_dialogType +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_Colored +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_variablePadding +okio.HashingSource: okio.HashingSource hmacSha1(okio.Source,okio.ByteString) +androidx.hilt.work.R$styleable: int GradientColor_android_gradientRadius +cyanogenmod.weather.WeatherInfo: android.os.Parcelable$Creator CREATOR +androidx.activity.R$id: int accessibility_custom_action_29 +com.tencent.bugly.crashreport.biz.UserInfoBean: java.lang.String n +com.tencent.bugly.crashreport.crash.d: android.content.Context e +james.adaptiveicon.R$id: int search_mag_icon +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeTextType +com.google.android.material.R$styleable: int[] FloatingActionButton_Behavior_Layout +cyanogenmod.power.IPerformanceManager$Stub$Proxy: boolean getProfileHasAppProfiles(int) +com.google.android.material.R$attr: int hideMotionSpec +com.jaredrummler.android.colorpicker.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_day_abbr +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +wangdaye.com.geometricweather.R$styleable: int[] RecyclerView +androidx.appcompat.R$id: int info +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionButton +androidx.constraintlayout.widget.R$attr: int closeIcon +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_fontStyle +com.xw.repo.bubbleseekbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String windLevel +com.jaredrummler.android.colorpicker.R$id: int image +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_statusBarBackground +cyanogenmod.themes.ThemeChangeRequest$Builder: java.util.Map mPerAppOverlays +com.loc.h: void stopLocation() +androidx.appcompat.R$styleable: int AppCompatImageView_srcCompat +cyanogenmod.platform.R$integer +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility: AccuCurrentResult$Visibility() +com.tencent.bugly.crashreport.biz.b: java.lang.Class l +com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding: com.bumptech.glide.load.resource.bitmap.DownsampleStrategy$SampleSizeRounding valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderText(int) +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_requestThemeChange +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: int getStatus() +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void unregisterCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +com.google.android.material.R$styleable: int MaterialTextAppearance_android_lineHeight +wangdaye.com.geometricweather.R$string: int nighttime +android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +james.adaptiveicon.R$drawable: int abc_list_selector_background_transition_holo_light +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_popupBackground +cyanogenmod.externalviews.ExternalViewProviderService$1$1: ExternalViewProviderService$1$1(cyanogenmod.externalviews.ExternalViewProviderService$1,android.os.Bundle) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Medium +com.google.gson.stream.JsonReader: void setLenient(boolean) +retrofit2.HttpException: java.lang.String message() +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: boolean isValid() +wangdaye.com.geometricweather.R$bool: int abc_config_actionMenuItemAllCaps +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String f +androidx.transition.R$dimen: int notification_subtext_size +android.didikee.donate.R$attr: int titleMarginStart +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float totalPrecipitation24h +com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_margin +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleTint +androidx.transition.R$dimen: int notification_action_icon_size +james.adaptiveicon.R$id: int none +okio.SegmentedByteString: okio.ByteString substring(int,int) +com.google.android.material.R$styleable: int AppBarLayout_elevation +com.google.android.material.R$style: int Widget_AppCompat_ProgressBar_Horizontal +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial +okhttp3.internal.platform.Jdk9Platform: java.lang.reflect.Method setProtocolMethod +wangdaye.com.geometricweather.R$styleable: int Preference_widgetLayout +com.jaredrummler.android.colorpicker.R$color: int bright_foreground_material_dark +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Choice +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours Past9Hours +wangdaye.com.geometricweather.R$attr: int autoTransition +com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTextPadding +com.github.rahatarmanahmed.cpv.CircularProgressView: float indeterminateSweep +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String v +wangdaye.com.geometricweather.background.receiver.widget.WidgetWeekProvider +com.amap.api.location.AMapLocationClient: void startAssistantLocation(android.webkit.WebView) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlHighlight +com.google.android.material.R$dimen: int design_bottom_navigation_item_min_width +com.google.android.material.R$styleable: int Chip_textStartPadding +cyanogenmod.os.Concierge$ParcelInfo: void complete() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierDirection +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintLeft_creator +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric +io.reactivex.Observable: io.reactivex.Completable flatMapCompletable(io.reactivex.functions.Function) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean outputFused +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.android.material.button.MaterialButton: void setInsetBottom(int) +android.didikee.donate.R$styleable: int AppCompatTextView_drawableRightCompat +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_background_transition_holo_light +okio.Pipe$PipeSink +okhttp3.OkHttpClient: okhttp3.CertificatePinner certificatePinner +androidx.appcompat.R$styleable: int DrawerArrowToggle_gapBetweenBars io.reactivex.Observable: io.reactivex.Observable mergeDelayError(java.lang.Iterable) -com.google.android.material.R$styleable: int KeyPosition_drawPath -com.google.android.material.R$attr: int counterEnabled -com.google.android.material.R$styleable: int[] LinearLayoutCompat_Layout -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay valueOf(java.lang.String) -wangdaye.com.geometricweather.R$id: int list_item -wangdaye.com.geometricweather.R$dimen: int fastscroll_minimum_range -com.google.android.material.R$attr: int flow_firstVerticalStyle -okhttp3.internal.cache.DiskLruCache: java.util.concurrent.Executor executor -androidx.appcompat.R$id: int alertTitle -wangdaye.com.geometricweather.R$string: int tree -com.amap.api.location.AMapLocationClientOption: boolean o -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getUnitId() -james.adaptiveicon.R$dimen: int tooltip_horizontal_padding -wangdaye.com.geometricweather.R$attr: int menu -com.google.android.material.R$style: int Base_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$styleable: int[] ViewStubCompat -cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String INCREASING_VOLUME -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: long serialVersionUID -wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayDetailsProvider -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle -androidx.appcompat.R$styleable: int FontFamilyFont_android_fontWeight -wangdaye.com.geometricweather.R$attr: int roundPercent -androidx.coordinatorlayout.R$drawable: int notification_template_icon_bg -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ImageButton -wangdaye.com.geometricweather.R$attr: int applyMotionScene -wangdaye.com.geometricweather.R$attr: int elevation -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetLeft -okhttp3.internal.cache.CacheStrategy$Factory: long sentRequestMillis -okhttp3.internal.ws.RealWebSocket: RealWebSocket(okhttp3.Request,okhttp3.WebSocketListener,java.util.Random,long) -io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onComplete() -io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: io.reactivex.disposables.Disposable upstream -androidx.appcompat.R$styleable: int GradientColor_android_endX -com.tencent.bugly.crashreport.CrashReport: java.lang.String getUserData(android.content.Context,java.lang.String) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ITALIAN -androidx.lifecycle.CompositeGeneratedAdaptersObserver: CompositeGeneratedAdaptersObserver(androidx.lifecycle.GeneratedAdapter[]) -com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl -wangdaye.com.geometricweather.R$attr: int nestedScrollFlags -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum() -com.google.android.material.slider.BaseSlider: float getMinSeparation() -org.greenrobot.greendao.AbstractDaoMaster: org.greenrobot.greendao.database.Database db -com.github.rahatarmanahmed.cpv.CircularProgressView: int getThickness() -androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivityCreated(android.app.Activity,android.os.Bundle) -androidx.appcompat.R$id: int icon_group -androidx.constraintlayout.widget.R$attr: int buttonTintMode -com.google.android.material.R$attr: int deltaPolarRadius -wangdaye.com.geometricweather.R$drawable: int widget_card_light_40 -com.bumptech.glide.R$attr: int fontStyle -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_25 -com.amap.api.location.CoordUtil: int convertToGcj(double[],double[]) -io.reactivex.Observable: io.reactivex.Observable concatDelayError(io.reactivex.ObservableSource) -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Toolbar -androidx.preference.R$color: int abc_primary_text_material_dark -com.tencent.bugly.b: void a(android.content.Context) -cyanogenmod.weather.WeatherLocation$Builder: WeatherLocation$Builder(java.lang.String) -androidx.core.R$string: int status_bar_notification_info_overflow -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: long serialVersionUID -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours: AccuCurrentResult$PrecipitationSummary$Past18Hours() -com.google.android.material.R$styleable: int Toolbar_popupTheme -com.turingtechnologies.materialscrollbar.R$color: int mtrl_bottom_nav_item_tint -com.tencent.bugly.proguard.ap: java.lang.String j -androidx.appcompat.widget.Toolbar: void setNavigationIcon(int) -okhttp3.internal.http2.Http2Connection: long bytesLeftInWriteWindow -com.turingtechnologies.materialscrollbar.R$drawable: int design_ic_visibility -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_motionTarget -com.xw.repo.bubbleseekbar.R$attr: int buttonStyleSmall -cyanogenmod.library.R$attr -androidx.constraintlayout.widget.R$id: int tag_accessibility_clickable_spans -com.xw.repo.bubbleseekbar.R$dimen: int tooltip_precise_anchor_extra_offset -cyanogenmod.hardware.CMHardwareManager: boolean writePersistentBytes(java.lang.String,byte[]) -androidx.coordinatorlayout.R$dimen: int notification_top_pad_large_text -io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: long serialVersionUID -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Bridge -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: boolean hasKey(java.lang.Object) -cyanogenmod.app.ProfileManager: void updateNotificationGroup(android.app.NotificationGroup) -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerCloseError(java.lang.Throwable) -wangdaye.com.geometricweather.R$drawable: int design_fab_background -androidx.constraintlayout.widget.R$color: int abc_search_url_text_selected -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets -wangdaye.com.geometricweather.db.entities.HourlyEntity: void setTemperature(int) -james.adaptiveicon.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_56 -retrofit2.ParameterHandler$RawPart: ParameterHandler$RawPart() -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_weight -androidx.appcompat.R$styleable: int SearchView_goIcon -com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_multiChoiceItemLayout -io.reactivex.internal.subscribers.StrictSubscriber: void request(long) -androidx.loader.R$styleable: int FontFamilyFont_android_fontVariationSettings -okhttp3.internal.http1.Http1Codec$FixedLengthSink: boolean closed -com.google.android.material.R$styleable: int Toolbar_titleMarginTop -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.Date Date -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_maxLines -io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onComplete() -com.google.android.material.R$attr: int linearSeamless -com.google.android.material.R$attr: int paddingBottomSystemWindowInsets -androidx.appcompat.R$dimen: int abc_action_bar_default_padding_end_material -com.google.android.material.R$style: int Widget_AppCompat_ListPopupWindow -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Caption -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_content_padding -android.didikee.donate.R$bool: int abc_allow_stacked_button_bar -com.jaredrummler.android.colorpicker.R$attr: int actionModeSplitBackground -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -android.didikee.donate.R$color: int material_grey_850 +com.tencent.bugly.crashreport.common.info.b: long k() +okhttp3.internal.io.FileSystem$1: okio.Sink appendingSink(java.io.File) +androidx.appcompat.widget.AppCompatRadioButton: void setBackgroundResource(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial() +wangdaye.com.geometricweather.R$array: int air_quality_unit_values +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedTextWithoutUnit(float) +androidx.lifecycle.LiveData$ObserverWrapper: LiveData$ObserverWrapper(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) +com.tencent.bugly.proguard.j: j() +androidx.legacy.coreutils.R$drawable: R$drawable() +androidx.constraintlayout.widget.R$id: int group_divider +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void cancel() +com.turingtechnologies.materialscrollbar.R$attr: int state_collapsible +android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: AccuDailyResult$DailyForecasts$Day$Rain() +james.adaptiveicon.R$attr: int titleTextStyle +androidx.preference.R$layout: int abc_alert_dialog_material +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String img +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_vertical_padding +androidx.lifecycle.extensions.R$id: int chronometer +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analogContainer_dark +wangdaye.com.geometricweather.R$dimen: int abc_floating_window_z +androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationX +androidx.preference.R$styleable: int Toolbar_titleMargins +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: java.util.List protocols +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +com.google.android.material.R$styleable: int TextAppearance_android_textColorHint +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_persistent +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean cancel(java.util.concurrent.atomic.AtomicReference) +io.reactivex.Observable: void safeSubscribe(io.reactivex.Observer) +com.jaredrummler.android.colorpicker.R$color: int highlighted_text_material_dark +wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingRight +wangdaye.com.geometricweather.R$color: int colorTextContent +androidx.preference.R$style: int TextAppearance_Compat_Notification_Time +james.adaptiveicon.R$styleable: int AppCompatImageView_tint +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_clear +com.google.android.material.R$dimen: int mtrl_calendar_bottom_padding +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_isEnabled +wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonTint +okhttp3.Cookie$Builder +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Longitude +wangdaye.com.geometricweather.R$styleable: int Constraint_motionProgress +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitation +androidx.recyclerview.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_scaleX +androidx.preference.R$drawable: int abc_text_select_handle_right_mtrl_dark +james.adaptiveicon.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +io.reactivex.internal.functions.Functions$NaturalComparator: int compare(java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.R$attr: int actionBarTabBarStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: AccuDailyResult$DailyForecasts$DegreeDaySummary() +androidx.recyclerview.widget.RecyclerView: RecyclerView(android.content.Context) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_15 +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenVoice(android.content.Context,int) +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_behavior +okio.ByteString: java.lang.String string(java.nio.charset.Charset) +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol getLocationProtocol() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat +okhttp3.Handshake: okhttp3.Handshake get(okhttp3.TlsVersion,okhttp3.CipherSuite,java.util.List,java.util.List) +james.adaptiveicon.R$attr: int thumbTextPadding +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: ExternalViewProviderService$Provider$ProviderImpl$6(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +androidx.hilt.R$attr: int fontProviderQuery +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onError(java.lang.Throwable) +cyanogenmod.app.CustomTileListenerService: void onListenerConnected() +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_closeItemLayout +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: io.reactivex.Observer child +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onNext(java.lang.Object) +com.jaredrummler.android.colorpicker.R$styleable: int[] PopupWindowBackgroundState +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +androidx.hilt.work.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents +com.tencent.bugly.crashreport.common.strategy.StrategyBean: int w +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver +wangdaye.com.geometricweather.R$attr: int checkedIconTint +androidx.recyclerview.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +androidx.appcompat.R$drawable: int abc_seekbar_track_material +com.google.android.material.R$styleable: int Constraint_constraint_referenced_ids +wangdaye.com.geometricweather.R$dimen: int little_weather_icon_container_size +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getCity() +okhttp3.Cookie$Builder: java.lang.String value +retrofit2.BuiltInConverters +androidx.customview.R$dimen: int compat_button_padding_horizontal_material +com.turingtechnologies.materialscrollbar.R$drawable: int design_ic_visibility_off +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm25Desc(java.lang.String) +com.google.android.material.R$styleable: int Layout_android_layout_marginTop +androidx.appcompat.widget.MenuPopupWindow$MenuDropDownListView: void setHoverListener(androidx.appcompat.widget.MenuItemHoverListener) +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: android.os.IBinder createExternalView(android.os.Bundle) +com.google.android.material.chip.Chip: float getChipMinHeight() +androidx.appcompat.widget.DialogTitle: DialogTitle(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$styleable: int[] ActionMenuView +com.jaredrummler.android.colorpicker.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.R$string: int cpv_presets +androidx.vectordrawable.R$dimen: int notification_small_icon_size_as_large +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +androidx.transition.R$attr: int ttcIndex +okhttp3.internal.http.RetryAndFollowUpInterceptor: RetryAndFollowUpInterceptor(okhttp3.OkHttpClient,boolean) +com.tencent.bugly.proguard.a: void a(java.lang.String) +wangdaye.com.geometricweather.R$string: int settings_title_click_widget_to_refresh +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +androidx.constraintlayout.widget.R$attr: int constraintSetEnd +androidx.appcompat.R$styleable: int MenuItem_android_numericShortcut +androidx.viewpager2.R$id: int accessibility_custom_action_20 +okhttp3.internal.Internal: Internal() +com.jaredrummler.android.colorpicker.R$attr: int cpv_showDialog +cyanogenmod.app.LiveLockScreenManager: boolean show(int,cyanogenmod.app.LiveLockScreenInfo) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonPhaseAngle(java.lang.Integer) +com.google.android.gms.common.SignInButton: void setScopes(com.google.android.gms.common.api.Scope[]) +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_tagView +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +io.reactivex.internal.disposables.DisposableHelper: boolean replace(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) +androidx.loader.R$drawable: int notification_bg_low +retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler[] parameterHandlers +cyanogenmod.app.IPartnerInterface: boolean setZenMode(int) +cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_VIBRATE +androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveData(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeSplitBackground +okhttp3.internal.http2.Http2Reader: void close() +wangdaye.com.geometricweather.R$id: int chip3 +androidx.work.R$id: int tag_accessibility_heading +androidx.preference.R$styleable: int AppCompatTheme_actionMenuTextColor +wangdaye.com.geometricweather.R$layout: int widget_remote +com.google.android.material.slider.Slider: Slider(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$dimen: int notification_content_margin_start +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_thickness +retrofit2.ParameterHandler$Body: int p +androidx.lifecycle.SavedStateHandleController$1: androidx.savedstate.SavedStateRegistry val$registry +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline4 +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int sourceMode +com.xw.repo.bubbleseekbar.R$id: int top +com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context) +james.adaptiveicon.R$dimen: int notification_right_side_padding_top +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_stacked_tab_max_width +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type LEFT +wangdaye.com.geometricweather.R$attr: int tabIndicatorFullWidth +androidx.preference.R$layout: int abc_list_menu_item_radio +com.google.gson.stream.JsonReader: int PEEKED_NUMBER +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin +io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription INSTANCE +james.adaptiveicon.R$drawable: int notification_template_icon_low_bg +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: io.reactivex.internal.disposables.SequentialDisposable upstream +androidx.constraintlayout.widget.R$attr: int showAsAction +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display3 +james.adaptiveicon.R$styleable: int TextAppearance_textAllCaps +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +androidx.lifecycle.SavedStateHandleController: androidx.lifecycle.SavedStateHandle mHandle +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setPresenter(com.google.android.material.bottomnavigation.BottomNavigationPresenter) +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_holo_light +androidx.preference.R$styleable: int Preference_android_summary +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_shift_shortcut_label +cyanogenmod.power.PerformanceManager: cyanogenmod.power.IPerformanceManager sService +com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String a(android.content.Context) +com.xw.repo.bubbleseekbar.R$attr: int popupMenuStyle +android.didikee.donate.R$id: int action_mode_close_button +com.google.android.material.R$styleable: int MockView_mock_labelBackgroundColor +com.google.android.material.R$styleable: int MotionHelper_onShow +wangdaye.com.geometricweather.R$attr: int splitTrack +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_left_mtrl_light +android.didikee.donate.R$styleable: int ViewBackgroundHelper_backgroundTintMode +wangdaye.com.geometricweather.R$dimen: int title_text_size +com.google.android.material.R$attr: int actionOverflowMenuStyle +okhttp3.internal.http2.Http2Connection$1: Http2Connection$1(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okhttp3.internal.http2.ErrorCode) +okhttp3.HttpUrl$Builder +okhttp3.internal.http2.Hpack$Writer: void writeInt(int,int,int) +com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.am a(android.content.Context,int,byte[]) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display3 +androidx.activity.R$attr: int fontProviderPackage +androidx.customview.R$attr +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver +android.didikee.donate.R$id: int notification_background +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_summaryOff +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat +io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.SingleSource) +okhttp3.Request: okhttp3.RequestBody body +com.google.android.material.R$dimen: int mtrl_card_checked_icon_margin +androidx.preference.R$styleable: int ActionBar_hideOnContentScroll +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon +androidx.vectordrawable.animated.R$id: int line3 +com.jaredrummler.android.colorpicker.R$id: int text2 +cyanogenmod.app.IPartnerInterface$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_motionProgress +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.disposables.Disposable upstream +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabTextAppearance +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_horizontal +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.DailyEntityDao dailyEntityDao +androidx.constraintlayout.widget.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.R$dimen: int material_timepicker_dialog_buttons_margin_top +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_creator +okhttp3.Address: okhttp3.HttpUrl url +com.google.android.material.appbar.HeaderBehavior: HeaderBehavior(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_Switch +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelMenuListTheme +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling Ceiling +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_progress +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$KeySet keySet +androidx.coordinatorlayout.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric Metric +wangdaye.com.geometricweather.R$color: int darkPrimary_1 +cyanogenmod.os.Concierge$ParcelInfo: int mParcelableVersion +com.google.android.material.R$styleable: int Layout_layout_goneMarginTop +androidx.lifecycle.LiveData$ObserverWrapper: androidx.lifecycle.Observer mObserver +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.Class serverProviderClass +okhttp3.internal.ws.RealWebSocket$Streams: RealWebSocket$Streams(boolean,okio.BufferedSource,okio.BufferedSink) +com.bumptech.glide.load.HttpException: HttpException(java.lang.String,int) +com.jaredrummler.android.colorpicker.R$color: int dim_foreground_disabled_material_dark +androidx.lifecycle.LifecycleService: void onCreate() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void cancel() +james.adaptiveicon.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setDesc(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX +okhttp3.internal.io.FileSystem: okio.Sink sink(java.io.File) +android.didikee.donate.R$string: int abc_action_mode_done +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: java.lang.String Code +io.reactivex.Observable: io.reactivex.Single toList(int) +androidx.appcompat.R$id: int topPanel +wangdaye.com.geometricweather.R$layout: int container_main_daily_trend_card +com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_selected +androidx.constraintlayout.widget.R$attr: int drawableTopCompat +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +okhttp3.WebSocketListener: void onOpen(okhttp3.WebSocket,okhttp3.Response) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: void clear() +james.adaptiveicon.R$id: int search_voice_btn +io.reactivex.internal.util.NotificationLite$SubscriptionNotification: org.reactivestreams.Subscription upstream +wangdaye.com.geometricweather.R$dimen: int mtrl_card_checked_icon_margin +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Button +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ExecutorService access$400() +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean done +com.xw.repo.bubbleseekbar.R$color: int abc_tint_btn_checkable +com.github.rahatarmanahmed.cpv.CircularProgressView: float getProgress() +com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.AlertEntity: void setDate(java.util.Date) +com.google.android.material.R$styleable: int KeyTimeCycle_wavePeriod +com.amap.api.fence.DistrictItem: void setAdcode(java.lang.String) +cyanogenmod.weatherservice.WeatherProviderService: java.lang.String SERVICE_INTERFACE +wangdaye.com.geometricweather.R$styleable: int Preference_isPreferenceVisible +com.tencent.bugly.crashreport.common.strategy.a: com.tencent.bugly.crashreport.common.strategy.a a(android.content.Context,java.util.List) +com.xw.repo.bubbleseekbar.R$dimen: int abc_seekbar_track_progress_height_material +com.turingtechnologies.materialscrollbar.DragScrollBar: float getIndicatorOffset() +com.tencent.bugly.proguard.m: java.lang.String e +androidx.constraintlayout.widget.R$styleable: int[] ViewBackgroundHelper +androidx.drawerlayout.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeApparentTemperature +com.xw.repo.bubbleseekbar.R$attr: int showTitle +androidx.viewpager2.R$attr +androidx.constraintlayout.widget.R$styleable: int Layout_maxWidth +androidx.hilt.work.R$id: int accessibility_custom_action_2 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_disabled_holo_dark +com.google.android.material.R$id: int SHOW_PATH +wangdaye.com.geometricweather.R$id: int container_alert_display_view_title +okhttp3.internal.http2.Huffman: int encodedLength(okio.ByteString) +androidx.appcompat.R$style: int Widget_AppCompat_EditText +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String mId +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: java.lang.Object invoke(java.lang.Object) +okhttp3.EventListener +james.adaptiveicon.R$id: int scrollIndicatorDown +cyanogenmod.themes.ThemeManager$1$1: ThemeManager$1$1(cyanogenmod.themes.ThemeManager$1,int) +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedWritableDb(java.lang.String) +cyanogenmod.externalviews.ExternalView$4: cyanogenmod.externalviews.ExternalView this$0 +wangdaye.com.geometricweather.R$id: int container_main_footer_title +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float t +com.tencent.bugly.crashreport.common.info.b: int c() +com.google.android.material.R$style: int Theme_MaterialComponents_NoActionBar +androidx.appcompat.R$attr: int icon +com.google.android.material.circularreveal.CircularRevealRelativeLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +androidx.constraintlayout.widget.R$attr: int ttcIndex +androidx.preference.R$id: int scrollView +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BOOLEAN +okio.Buffer: okio.BufferedSink write(okio.ByteString) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_text +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode[] values() +cyanogenmod.themes.IThemeService$Stub$Proxy: boolean processThemeResources(java.lang.String) +retrofit2.OkHttpCall: boolean isExecuted() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun Sun +okio.HashingSink: okio.HashingSink sha256(okio.Sink) +com.xw.repo.bubbleseekbar.R$anim: int abc_tooltip_exit +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +androidx.constraintlayout.widget.R$drawable: int abc_ic_go_search_api_material +androidx.appcompat.widget.SwitchCompat: void setSwitchPadding(int) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner_Underlined +android.didikee.donate.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.R$id: int snackbar_text +com.tencent.bugly.crashreport.biz.a: android.content.ContentValues a(com.tencent.bugly.crashreport.biz.UserInfoBean) +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode[] values() +com.google.android.material.R$styleable: int FloatingActionButton_fabCustomSize +androidx.constraintlayout.widget.R$attr: int flow_horizontalGap +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String k +androidx.preference.R$styleable: int Toolbar_collapseContentDescription +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyBottomLeft +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.R$drawable: int widget_card_light_40 +androidx.preference.R$id: int decor_content_parent +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: void throwIfCaught() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean +com.google.android.material.R$styleable: int TextInputLayout_errorTextAppearance +wangdaye.com.geometricweather.R$layout: int abc_action_menu_layout +com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_Solid +com.bumptech.glide.R$id: int text +james.adaptiveicon.R$style: int Widget_AppCompat_PopupMenu +retrofit2.converter.gson.GsonResponseBodyConverter: GsonResponseBodyConverter(com.google.gson.Gson,com.google.gson.TypeAdapter) +okhttp3.CacheControl +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource valueOf(java.lang.String) +com.google.android.material.R$color: int mtrl_chip_surface_color +androidx.lifecycle.ComputableLiveData: java.lang.Runnable mRefreshRunnable +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 +com.google.android.material.R$styleable: int[] MotionLayout +okhttp3.internal.http2.Http2Reader$Handler: void ping(boolean,int,int) +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTopCompat +cyanogenmod.app.LiveLockScreenInfo$Builder: LiveLockScreenInfo$Builder() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ProgressBar +com.bumptech.glide.integration.okhttp.R$dimen: int notification_media_narrow_margin +androidx.appcompat.R$dimen: int abc_dialog_min_width_minor +wangdaye.com.geometricweather.R$drawable: int ic_wechat_pay +wangdaye.com.geometricweather.R$styleable: int Badge_maxCharacterCount +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_hovered_z +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$attr: int actionLayout +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_android_elevation +cyanogenmod.app.CMTelephonyManager +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial: int UnitType +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +androidx.transition.R$dimen: int compat_notification_large_icon_max_height +okhttp3.internal.platform.Platform +com.turingtechnologies.materialscrollbar.R$attr: int activityChooserViewStyle +com.google.android.material.R$styleable: int MenuItem_alphabeticModifiers +okhttp3.internal.http2.Hpack$Reader: java.util.List headerList +io.reactivex.internal.observers.InnerQueuedObserver: boolean isDone() +com.google.android.material.tabs.TabLayout: void setTabTextColors(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$string: int widget_clock_day_horizontal +com.baidu.location.indoor.mapversion.c.c$b: double d +androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat_Light +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_ActionBar +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.util.Date getDate() com.google.android.material.R$integer: int mtrl_badge_max_character_count -com.google.android.material.R$styleable: int MenuItem_android_visible -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroupForPackage -androidx.core.R$styleable: int FontFamily_fontProviderPackage -cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_WARM_FALLING -androidx.preference.R$drawable: int notification_icon_background -androidx.preference.R$style: int Platform_V21_AppCompat -retrofit2.SkipCallbackExecutorImpl: boolean equals(java.lang.Object) -android.didikee.donate.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String unitId -com.jaredrummler.android.colorpicker.R$string: int abc_capital_on -okhttp3.internal.cache.DiskLruCache: boolean mostRecentTrimFailed -com.google.android.material.R$styleable: int Constraint_android_visibility -androidx.preference.R$style: int Widget_AppCompat_SeekBar_Discrete -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_Design_TabLayout -com.tencent.bugly.proguard.y: java.lang.String i -com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_padding_material -androidx.appcompat.R$styleable: int[] ActionMenuItemView -wangdaye.com.geometricweather.R$attr: int chipIcon -androidx.appcompat.R$color: int abc_search_url_text -wangdaye.com.geometricweather.R$styleable: int MockView_mock_labelColor -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum() -androidx.vectordrawable.animated.R$attr: int fontProviderCerts -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: io.reactivex.Observer downstream -com.jaredrummler.android.colorpicker.R$id: int italic -com.google.android.material.R$styleable: int AppCompatTheme_colorControlActivated -com.google.android.material.R$styleable: int[] FloatingActionButton_Behavior_Layout -androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_max -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String getValue() -androidx.drawerlayout.R$attr: int font -com.google.android.material.R$attr: int checkboxStyle -cyanogenmod.hardware.DisplayMode: android.os.Parcelable$Creator CREATOR -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType QueryUnique -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias -com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardUseCompatPadding -wangdaye.com.geometricweather.R$attr: int chainUseRtl -io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.functions.Function) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: long period -com.google.android.material.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge -wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getSunRiseDate() -com.google.android.material.R$drawable: int mtrl_ic_arrow_drop_up -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_normal_material_light -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Inverse -wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_dark -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.ExternalViewProperties mExternalViewProperties -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_percent -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner -androidx.customview.R$dimen: int notification_large_icon_height -cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_unregisterListener -com.amap.api.fence.GeoFence: com.amap.api.location.DPoint getCenter() -com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_reversible -james.adaptiveicon.R$drawable: int notification_template_icon_low_bg -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterEnabled -androidx.preference.R$style: int Preference_DialogPreference_EditTextPreference -androidx.legacy.coreutils.R$id: int icon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setTemperature(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_android_src -wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_grey -androidx.appcompat.R$style: int Widget_AppCompat_ListView_Menu -android.didikee.donate.R$style: int Widget_AppCompat_Spinner_DropDown -android.didikee.donate.R$attr: int subtitleTextStyle -com.google.android.material.R$attr: int actionBarDivider -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintRight_creator -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.google.android.material.bottomappbar.BottomAppBar: com.google.android.material.bottomappbar.BottomAppBar$Behavior getBehavior() -okio.ForwardingSink -com.google.gson.FieldNamingPolicy -androidx.legacy.coreutils.R$attr: R$attr() -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchTextAppearance -androidx.vectordrawable.R$dimen: int notification_action_icon_size -wangdaye.com.geometricweather.R$attr: int tabIconTintMode -com.google.android.material.R$color: int mtrl_scrim_color -okhttp3.internal.http2.Http2Connection: int nextStreamId -com.google.android.gms.internal.common.zzq: java.lang.String toString() -io.reactivex.internal.queue.SpscArrayQueue: boolean isEmpty() -androidx.appcompat.widget.AppCompatButton: int getAutoSizeStepGranularity() -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void onNext(java.lang.Object) -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItem -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_backgroundSplit -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Bridge -wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: void setProgressBackgroundColor(int) -com.google.android.material.R$attr: int titleEnabled -wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitleTextStyle -android.support.v4.os.IResultReceiver$Stub: android.os.IBinder asBinder() -androidx.core.widget.NestedScrollView: int getScrollRange() -com.jaredrummler.android.colorpicker.R$styleable: int BackgroundStyle_android_selectableItemBackground -androidx.fragment.R$id: int tag_accessibility_clickable_spans -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_removeUpdates -wangdaye.com.geometricweather.R$array: int notification_background_colors -okhttp3.internal.http.HttpMethod: boolean requiresRequestBody(java.lang.String) -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar -com.tencent.bugly.b: void a(com.tencent.bugly.a) -cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_APP_SUGGESTIONS -cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: void cancelRequest(int) -androidx.cardview.widget.CardView: void setPreventCornerOverlap(boolean) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$dimen: int mtrl_progress_circular_inset -okhttp3.HttpUrl: java.lang.String encodedFragment() -wangdaye.com.geometricweather.R$styleable: int KeyCycle_curveFit -okhttp3.internal.http2.Http2Connection$Listener$1: void onStream(okhttp3.internal.http2.Http2Stream) -cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setComponent(java.lang.String,java.lang.String) -com.google.android.material.bottomnavigation.BottomNavigationView: int getItemBackgroundResource() -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setProvince(java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int queryBackground -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Menu -com.jaredrummler.android.colorpicker.R$drawable: int abc_list_divider_mtrl_alpha -wangdaye.com.geometricweather.R$layout: int item_tag -com.google.android.material.R$styleable: int ConstraintSet_android_maxHeight -cyanogenmod.themes.ThemeManager: void requestThemeChange(java.lang.String,java.util.List,boolean) -okio.Pipe$PipeSink: okio.Pipe this$0 -cyanogenmod.app.Profile: void readTriggersFromXml(org.xmlpull.v1.XmlPullParser,android.content.Context,cyanogenmod.app.Profile) -james.adaptiveicon.R$attr: int maxButtonHeight -retrofit2.Platform: int defaultConverterFactoriesSize() -com.jaredrummler.android.colorpicker.R$color: int notification_icon_bg_color -androidx.constraintlayout.widget.R$dimen: int abc_alert_dialog_button_dimen -okhttp3.Cache: boolean isClosed() -androidx.vectordrawable.R$id: int time -com.google.android.material.navigation.NavigationView: int getHeaderCount() -androidx.preference.R$attr: int listLayout -com.google.android.gms.common.api.ResolvableApiException: void startResolutionForResult(android.app.Activity,int) -wangdaye.com.geometricweather.R$styleable: int Preference_android_title -okhttp3.TlsVersion: TlsVersion(java.lang.String,int,java.lang.String) -com.google.android.gms.base.R$id: int adjust_width -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.lang.String title -retrofit2.BuiltInConverters$StreamingResponseBodyConverter -james.adaptiveicon.R$styleable: int SwitchCompat_android_textOn -android.support.v4.app.INotificationSideChannel$Stub$Proxy: void cancel(java.lang.String,int,java.lang.String) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Headline -com.turingtechnologies.materialscrollbar.R$attr: int theme -okio.Buffer: okio.BufferedSink writeUtf8(java.lang.String,int,int) -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void drain() -io.reactivex.internal.schedulers.RxThreadFactory: java.lang.String toString() -com.google.android.material.appbar.CollapsingToolbarLayout: void setScrimAnimationDuration(long) -androidx.appcompat.R$styleable: int AppCompatTheme_borderlessButtonStyle -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean l -androidx.core.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.preference.R$drawable: int abc_switch_track_mtrl_alpha -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_corner_radius -wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setIconResEnd(int) -androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ID -androidx.loader.R$id: int icon -james.adaptiveicon.R$id: int listMode -com.google.android.material.datepicker.RangeDateSelector: android.os.Parcelable$Creator CREATOR -com.google.android.material.R$anim: int abc_popup_enter -okhttp3.internal.io.FileSystem: void rename(java.io.File,java.io.File) -androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetEnd -androidx.lifecycle.Transformations$1: void onChanged(java.lang.Object) -androidx.work.R$layout: int notification_template_part_time -com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context,android.util.AttributeSet,int) -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState SUCCESS -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textAppearanceListItem -com.google.android.material.R$string: int material_timepicker_text_input_mode_description -wangdaye.com.geometricweather.R$id: int material_clock_face -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.google.android.material.bottomnavigation.BottomNavigationView: void setLabelVisibilityMode(int) -io.reactivex.internal.subscriptions.EmptySubscription: void request(long) -com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: void cancelSubscription() -com.google.android.material.R$styleable: int[] SnackbarLayout -com.google.android.material.button.MaterialButton: void setIconTint(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$drawable: int notif_temp_32 -okhttp3.ConnectionSpec: boolean supportsTlsExtensions -com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeBottomRight -com.turingtechnologies.materialscrollbar.R$drawable: int indicator -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.util.List getValue() -androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_android_thumb -com.google.android.material.R$styleable: int AlertDialog_android_layout -androidx.appcompat.R$styleable: int AppCompatTextView_drawableLeftCompat -androidx.constraintlayout.widget.R$styleable: int Toolbar_logo -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView -retrofit2.Utils$ParameterizedTypeImpl: boolean equals(java.lang.Object) -com.google.android.material.R$id: int accessibility_custom_action_17 -androidx.hilt.R$styleable: int FontFamilyFont_android_fontWeight -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void run() -wangdaye.com.geometricweather.R$string: int key_notification_minimal_icon -androidx.dynamicanimation.R$styleable: int GradientColor_android_gradientRadius -androidx.preference.R$attr: int autoSizeStepGranularity -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse -com.xw.repo.bubbleseekbar.R$dimen: int abc_select_dialog_padding_start_material -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_131 -androidx.preference.R$id: int async -androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemTextAppearance -wangdaye.com.geometricweather.R$string: int get_more_store -com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom -okhttp3.internal.http2.Http2Reader$ContinuationSource: int streamId -com.xw.repo.bubbleseekbar.R$color: int primary_text_disabled_material_light -okhttp3.internal.http1.Http1Codec$ChunkedSource: long read(okio.Buffer,long) +wangdaye.com.geometricweather.R$dimen: int widget_large_title_text_size +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Title +androidx.drawerlayout.R$styleable: int FontFamily_fontProviderFetchTimeout +com.google.android.material.R$dimen: int design_fab_translation_z_hovered_focused +androidx.lifecycle.FullLifecycleObserver: void onStop(androidx.lifecycle.LifecycleOwner) +cyanogenmod.hardware.DisplayMode$1: cyanogenmod.hardware.DisplayMode createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$id: int dialog_learn_more_about_geocoder_container +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeSnowPrecipitation +com.tencent.bugly.crashreport.common.info.a: java.util.Map J() +com.google.android.material.R$attr: int shapeAppearance +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer LEFT_CLOSE +androidx.appcompat.R$style: int Widget_AppCompat_Light_ListPopupWindow +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder supportsTlsExtensions(boolean) +com.google.android.material.R$styleable: int TextInputLayout_passwordToggleContentDescription +okhttp3.internal.http1.Http1Codec$1 +com.xw.repo.bubbleseekbar.R$attr: int actionBarSize +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onError(java.lang.Throwable) +okhttp3.Cache$CacheResponseBody$1 +androidx.work.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarStyle +androidx.appcompat.widget.ActionBarOverlayLayout +androidx.constraintlayout.widget.R$id: int staticLayout +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_action_inline_max_width +androidx.viewpager.R$attr: int fontProviderQuery +com.google.android.material.R$dimen: int design_tab_scrollable_min_width +cyanogenmod.externalviews.KeyguardExternalView: android.content.ServiceConnection access$500(cyanogenmod.externalviews.KeyguardExternalView) +androidx.loader.R$styleable: int FontFamily_fontProviderQuery +androidx.viewpager.R$dimen: int notification_big_circle_margin +androidx.appcompat.widget.AbsActionBarView: void setVisibility(int) +okhttp3.internal.platform.Platform: byte[] concatLengthPrefixed(java.util.List) +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamily +com.jaredrummler.android.colorpicker.R$attr: int layout_insetEdge +androidx.preference.R$attr: int actionModeCloseButtonStyle +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_height +androidx.preference.R$dimen: int abc_dialog_min_width_minor +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Title_Inverse +com.turingtechnologies.materialscrollbar.R$attr: int voiceIcon +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_ActionBar +androidx.hilt.lifecycle.R$id: R$id() +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableBottom +androidx.constraintlayout.widget.R$color: int androidx_core_secondary_text_default_material_light +androidx.appcompat.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +androidx.appcompat.R$style: R$style() +com.google.android.material.R$styleable: int Constraint_android_transformPivotY +okhttp3.OkHttpClient$Builder: javax.net.SocketFactory socketFactory +james.adaptiveicon.R$id: int chronometer +androidx.constraintlayout.widget.R$id: int search_badge +androidx.core.R$id: int accessibility_custom_action_28 +cyanogenmod.weatherservice.ServiceRequestResult: java.util.List getLocationLookupList() +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_right_mtrl_dark +androidx.constraintlayout.widget.R$attr: int pivotAnchor +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$layout: int item_about_translator +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionBar +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void dispose() +wangdaye.com.geometricweather.R$drawable: int ic_filter +retrofit2.Utils: java.lang.RuntimeException methodError(java.lang.reflect.Method,java.lang.Throwable,java.lang.String,java.lang.Object[]) +okhttp3.internal.http2.Http2Stream$FramingSink: okio.Buffer sendBuffer +wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_height +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_18 +androidx.constraintlayout.widget.R$styleable: int MenuItem_numericModifiers +androidx.legacy.coreutils.R$color +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: java.lang.Float min +androidx.appcompat.resources.R$id: int tag_screen_reader_focusable +wangdaye.com.geometricweather.R$attr: int behavior_overlapTop +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart +com.google.android.material.R$attr: int srcCompat +wangdaye.com.geometricweather.R$styleable: int ActionBar_progressBarStyle +androidx.appcompat.R$drawable: int abc_ic_ab_back_material +com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_item_material +com.turingtechnologies.materialscrollbar.R$id: int action_bar_root +androidx.constraintlayout.widget.R$styleable: int View_paddingEnd +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_4_00 +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int MOSTLY_CLOUDY_NIGHT +androidx.constraintlayout.widget.R$color: int background_material_light +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: android.os.IBinder asBinder() +com.google.android.gms.internal.base.zai +okhttp3.internal.http1.Http1Codec: okio.Source newChunkedSource(okhttp3.HttpUrl) +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_focused_alpha +com.tencent.bugly.BuglyStrategy: boolean k +androidx.work.R$bool: int enable_system_alarm_service_default +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner +androidx.preference.R$dimen: int abc_action_bar_content_inset_material +com.tencent.bugly.crashreport.crash.CrashDetailBean: long C +okhttp3.ResponseBody: void close() +androidx.recyclerview.R$id: int accessibility_custom_action_21 +androidx.customview.R$id: int normal +com.jaredrummler.android.colorpicker.ColorPanelView: int getShape() +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: boolean cancelled +okhttp3.internal.ws.WebSocketProtocol: int PAYLOAD_LONG +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_top_padding +androidx.core.R$id: int accessibility_custom_action_14 +androidx.coordinatorlayout.R$attr: int fontStyle +wangdaye.com.geometricweather.R$id: int activity_settings +androidx.preference.R$attr: int textAppearanceSearchResultSubtitle +androidx.recyclerview.widget.RecyclerView: boolean isLayoutSuppressed() +androidx.viewpager2.R$styleable: int ColorStateListItem_android_color +androidx.vectordrawable.R$style +androidx.constraintlayout.widget.R$drawable: int abc_ic_clear_material +androidx.appcompat.R$styleable: int ViewStubCompat_android_inflatedId +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: void setLogo(java.lang.String) +wangdaye.com.geometricweather.R$attr: int dividerVertical cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_THUMBNAIL -cyanogenmod.app.IPartnerInterface$Stub$Proxy: boolean setZenModeWithDuration(int,long) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginEnd -com.google.android.material.R$styleable: int Slider_android_stepSize -androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton -com.jaredrummler.android.colorpicker.R$attr: int activityChooserViewStyle -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -com.google.android.material.R$styleable: int CardView_contentPaddingBottom -androidx.hilt.work.R$styleable: int FragmentContainerView_android_name -cyanogenmod.os.Build: java.lang.String UNKNOWN -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum -wangdaye.com.geometricweather.R$drawable: int weather_thunder_2 -com.google.android.material.R$id: int action_bar_root -okhttp3.Address: javax.net.ssl.HostnameVerifier hostnameVerifier() -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogTheme -okhttp3.ConnectionSpec: java.util.List cipherSuites() -com.google.android.material.R$styleable: int PropertySet_motionProgress -james.adaptiveicon.R$styleable: int MenuItem_alphabeticModifiers -cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService this$0 -okhttp3.internal.ws.RealWebSocket: boolean send(java.lang.String) -okio.HashingSink: HashingSink(okio.Sink,okio.ByteString,java.lang.String) -androidx.hilt.lifecycle.R$styleable: int[] Fragment -wangdaye.com.geometricweather.db.entities.DaoSession: DaoSession(org.greenrobot.greendao.database.Database,org.greenrobot.greendao.identityscope.IdentityScopeType,java.util.Map) -androidx.preference.R$styleable: int ActionBar_contentInsetLeft -androidx.appcompat.widget.AppCompatSpinner: void setDropDownWidth(int) -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_thumbTextPadding -okio.ByteString -com.github.rahatarmanahmed.cpv.CircularProgressView$3: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Pm25 -androidx.appcompat.R$dimen: int abc_button_inset_horizontal_material -androidx.preference.R$id: int search_mag_icon -wangdaye.com.geometricweather.R$dimen: int design_appbar_elevation -wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_borderColor -com.bumptech.glide.integration.okhttp.R$id: int text2 -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintDimensionRatio -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Body2 -okhttp3.internal.connection.RouteSelector: okhttp3.internal.connection.RouteDatabase routeDatabase -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.util.List indices -androidx.customview.R$styleable: int GradientColor_android_type -com.google.android.material.progressindicator.ProgressIndicator -wangdaye.com.geometricweather.R$color: int cardview_light_background -cyanogenmod.themes.IThemeChangeListener$Stub -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$id: int widget_day -wangdaye.com.geometricweather.R$attr: int chipStandaloneStyle -androidx.recyclerview.R$id: int text -android.didikee.donate.R$styleable: int LinearLayoutCompat_divider -androidx.hilt.R$id: int accessibility_custom_action_29 -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void innerError(io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver,java.lang.Throwable) -cyanogenmod.app.ILiveLockScreenManager: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) -com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_android_gravity -io.reactivex.internal.util.NotificationLite$ErrorNotification: java.lang.Throwable e -com.google.android.material.R$styleable: int Constraint_layout_constraintStart_toStartOf -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize -james.adaptiveicon.R$color: int switch_thumb_normal_material_dark -androidx.preference.R$layout: int abc_popup_menu_item_layout -com.google.android.material.R$id: int slide -com.baidu.location.indoor.c: int a -androidx.preference.R$anim: int abc_shrink_fade_out_from_bottom -com.google.android.material.R$layout: int abc_screen_simple_overlay_action_mode -com.jaredrummler.android.colorpicker.R$string: R$string() -androidx.legacy.coreutils.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setStatus(int) -androidx.loader.R$styleable: int GradientColor_android_centerColor -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight -androidx.preference.R$style: int TextAppearance_AppCompat_Caption -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getPm10() -android.didikee.donate.R$dimen: int abc_text_size_body_2_material -com.google.android.material.transformation.FabTransformationBehavior: FabTransformationBehavior(android.content.Context,android.util.AttributeSet) -james.adaptiveicon.R$id: int message -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionDropDownStyle -com.jaredrummler.android.colorpicker.R$attr: int expandActivityOverflowButtonDrawable -okio.AsyncTimeout: boolean inQueue -okhttp3.internal.http2.Hpack$Writer: Hpack$Writer(int,boolean,okio.Buffer) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSnowPrecipitation(java.lang.Float) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.util.AtomicThrowable errors +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial +androidx.constraintlayout.utils.widget.ImageFilterButton: void setCrossfade(float) +wangdaye.com.geometricweather.R$anim: int mtrl_card_lowers_interpolator +james.adaptiveicon.R$styleable: int SwitchCompat_switchPadding +wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_2_0_padding_bottom +cyanogenmod.app.CMStatusBarManager: void removeTileAsUser(java.lang.String,int,android.os.UserHandle) +android.didikee.donate.R$attr: int colorControlActivated +androidx.lifecycle.ViewModelStoreOwner +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setHumidity(double) +androidx.hilt.work.R$dimen: int notification_subtext_size +androidx.constraintlayout.widget.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource +com.google.android.material.R$styleable: int Constraint_layout_constraintCircleRadius +com.tencent.bugly.proguard.am: long m +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitationDuration +com.google.android.material.R$styleable: int Constraint_layout_constraintEnd_toEndOf +androidx.hilt.work.R$id: int line3 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum +cyanogenmod.providers.CMSettings$System: float getFloat(android.content.ContentResolver,java.lang.String,float) +com.google.android.material.R$styleable: int AppCompatTheme_actionModePasteDrawable +wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotationY +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_EMPTY +com.google.android.material.R$styleable: int MenuView_android_itemBackground +com.google.android.material.datepicker.MaterialCalendarGridView: MaterialCalendarGridView(android.content.Context,android.util.AttributeSet) +androidx.coordinatorlayout.R$id: int tag_accessibility_clickable_spans +androidx.preference.R$dimen: int abc_seekbar_track_background_height_material +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_AES_128_CBC_SHA +com.tencent.bugly.proguard.ad: ad() +com.google.android.gms.base.R$styleable +cyanogenmod.themes.IThemeService: boolean processThemeResources(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String getHourlyForecast() +com.google.android.material.R$attr: int iconGravity +wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_title_material +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String toValue(java.util.List) +com.google.android.material.R$dimen: int mtrl_calendar_header_height +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$attr: int switchStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getLevel() +com.tencent.bugly.proguard.ai: void a(com.tencent.bugly.proguard.i) +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onSubscribe(org.reactivestreams.Subscription) +androidx.constraintlayout.helper.widget.Flow: void setMaxElementsWrap(int) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableEndCompat +cyanogenmod.app.PartnerInterface: PartnerInterface(android.content.Context) +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarSplitStyle +com.google.android.material.R$styleable: int Tooltip_android_minWidth +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_SHOWERS +cyanogenmod.os.Concierge$ParcelInfo: int mParcelableSize +com.google.android.material.R$attr: int allowStacking +okhttp3.OkHttpClient: boolean followRedirects() +com.google.android.material.R$styleable: int MaterialCardView_state_dragged +com.google.gson.stream.JsonReader: int peekKeyword() +cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile[] getProfiles() +androidx.preference.R$styleable: int SearchView_closeIcon +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_DES_CBC_MD5 +com.tencent.bugly.BuglyStrategy: java.lang.Class getUserInfoActivity() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTheme +retrofit2.RequestFactory: RequestFactory(retrofit2.RequestFactory$Builder) +com.amap.api.location.AMapLocation: java.lang.String l +cyanogenmod.content.Intent: java.lang.String ACTION_INITIALIZE_CM_HARDWARE +com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusTopStart() +androidx.appcompat.resources.R$id: int accessibility_custom_action_22 +wangdaye.com.geometricweather.R$styleable: int[] Snackbar +okhttp3.Request$Builder: okhttp3.Request$Builder url(java.net.URL) +okhttp3.internal.Util$2: java.lang.String val$name +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean cancelled +okhttp3.internal.http1.Http1Codec: okio.BufferedSource source +androidx.preference.R$layout: int preference_widget_seekbar +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_visible +cyanogenmod.externalviews.KeyguardExternalView$9: cyanogenmod.externalviews.KeyguardExternalView this$0 +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvLevel +wangdaye.com.geometricweather.R$styleable: int ActionBar_customNavigationLayout +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontWeight +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void onError(java.lang.Throwable) +com.google.android.material.button.MaterialButton: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.preference.R$color: int error_color_material_dark +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setFitSide(int) +cyanogenmod.app.IProfileManager: boolean isEnabled() +com.tencent.bugly.proguard.z: byte[] b(byte[],int) +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: int a +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: void dispose() +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.PushObserver pushObserver +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_trackColor +wangdaye.com.geometricweather.R$id: int action_mode_close_button +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_logoDescription +com.google.android.material.R$style: int Widget_AppCompat_ListView_DropDown +androidx.loader.R$id: int text2 +okhttp3.internal.cache.DiskLruCache$Snapshot: long[] lengths +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +wangdaye.com.geometricweather.R$attr: int allowDividerAfterLastItem +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizePresetSizes +com.tencent.bugly.crashreport.crash.CrashDetailBean: CrashDetailBean(android.os.Parcel) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_READY +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindSpeedEnd(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int PreferenceFragmentList_Material +wangdaye.com.geometricweather.R$dimen: int cpv_dialog_preview_height +io.reactivex.Observable: io.reactivex.Observable empty() +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_actionTextColorAlpha +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.util.List value +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconTint +com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_Switch +com.google.android.material.R$attr: int textAppearanceHeadline6 +android.didikee.donate.R$dimen: int abc_search_view_preferred_width +wangdaye.com.geometricweather.common.ui.widgets.RoundProgress: RoundProgress(android.content.Context,android.util.AttributeSet) +cyanogenmod.app.Profile: boolean isDirty() +wangdaye.com.geometricweather.R$font: int google_sans +android.didikee.donate.R$styleable: int MenuView_subMenuArrow +androidx.customview.R$styleable +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +okio.RealBufferedSource$1: int available() +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property Province +wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_default +com.xw.repo.bubbleseekbar.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.R$string: int mini_temp +com.google.android.material.R$dimen: int mtrl_textinput_box_corner_radius_medium +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Display4 +android.didikee.donate.R$id: int text +com.google.android.material.R$attr: int customColorDrawableValue +com.bumptech.glide.integration.okhttp.R$id: int top +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: long EpochDate +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String en_US +androidx.appcompat.resources.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.R$attr: int fastScrollVerticalTrackDrawable +okio.AsyncTimeout$2: okio.Source val$source +okhttp3.internal.Internal: okhttp3.Call newWebSocketCall(okhttp3.OkHttpClient,okhttp3.Request) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onComplete() +androidx.appcompat.R$attr: int actionBarItemBackground +com.bumptech.glide.integration.okhttp.R$attr +androidx.swiperefreshlayout.R$dimen: int notification_small_icon_background_padding +androidx.appcompat.R$dimen: int tooltip_vertical_padding +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +com.github.rahatarmanahmed.cpv.CircularProgressView$1: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +com.google.android.material.R$styleable: int Toolbar_subtitleTextColor +com.tencent.bugly.proguard.z: java.io.BufferedReader a(java.lang.String,java.lang.String) +com.google.android.material.bottomappbar.BottomAppBar +com.turingtechnologies.materialscrollbar.R$dimen: int abc_alert_dialog_button_bar_height +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.Observer downstream +androidx.appcompat.app.AppCompatActivity: AppCompatActivity() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_Chip +androidx.constraintlayout.widget.R$attr: int layout_constraintRight_toRightOf +com.turingtechnologies.materialscrollbar.R$id: int left +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_showDividers +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginLeft +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchKeyEvent(android.view.KeyEvent) +com.google.android.material.R$styleable: int KeyAttribute_android_scaleX +wangdaye.com.geometricweather.R$drawable: int weather_rain_1 +com.xw.repo.bubbleseekbar.R$dimen: int abc_cascading_menus_min_smallest_width +wangdaye.com.geometricweather.R$dimen: int notification_right_side_padding_top +com.jaredrummler.android.colorpicker.R$styleable: int[] BackgroundStyle +com.tencent.bugly.proguard.a: void a(byte[]) +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +wangdaye.com.geometricweather.R$id: int blocking +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: io.reactivex.internal.fuseable.SimpleQueue queue +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setLongitude(java.lang.String) +com.turingtechnologies.materialscrollbar.R$anim: int abc_popup_enter +com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_default_box_stroke_color +james.adaptiveicon.R$layout: int select_dialog_singlechoice_material +androidx.appcompat.R$id: int accessibility_custom_action_21 +okhttp3.Cache$1: void trackConditionalCacheHit() +cyanogenmod.hardware.CMHardwareManager: int getVibratorMinIntensity() +io.reactivex.internal.disposables.SequentialDisposable: SequentialDisposable() +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(java.lang.Iterable,io.reactivex.functions.Function,int) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ratingbar_small_material +wangdaye.com.geometricweather.R$id: int notification_main_column_container +androidx.viewpager.R$layout: R$layout() +cyanogenmod.hardware.CMHardwareManager: byte[] readPersistentBytes(java.lang.String) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_RC4_128_MD5 +io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer) +androidx.fragment.R$id: int accessibility_custom_action_22 +com.google.android.material.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +wangdaye.com.geometricweather.R$interpolator +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_checkable +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Weather: java.lang.String icon +com.google.android.material.R$color: int material_on_surface_stroke +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_tickMark +cyanogenmod.weather.RequestInfo: java.lang.String toString() +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.util.AtomicThrowable errors +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_padding +com.turingtechnologies.materialscrollbar.R$attr: int tabIndicator +com.google.android.material.R$attr: int actionMenuTextAppearance +com.turingtechnologies.materialscrollbar.R$style: int Platform_AppCompat +okhttp3.Handshake: java.util.List peerCertificates() +wangdaye.com.geometricweather.R$attr: int prefixText +androidx.fragment.app.FragmentManagerImpl +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer rainHazard6h +com.google.android.material.tabs.TabLayout: void addOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) +com.tencent.bugly.proguard.z: java.lang.String a(byte[]) +com.tencent.bugly.proguard.o: boolean c() +com.google.android.material.R$styleable: int SwitchMaterial_useMaterialThemeColors +com.google.android.material.R$styleable: int TextInputLayout_endIconMode +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth_Bridge +io.reactivex.internal.observers.ForEachWhileObserver: ForEachWhileObserver(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer,io.reactivex.functions.Action) +com.amap.api.fence.PoiItem: void setLongitude(double) +io.reactivex.internal.observers.BlockingObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$id: int submenuarrow +okhttp3.HttpUrl$Builder: java.lang.String INVALID_HOST +androidx.appcompat.R$id: int notification_background +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_128 +cyanogenmod.library.R$id: int experience +okhttp3.internal.platform.AndroidPlatform$CloseGuard: boolean warnIfOpen(java.lang.Object) +com.tencent.bugly.crashreport.crash.anr.b: android.os.FileObserver i +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_elevation_material +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.ExternalViewProperties mExternalViewProperties +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level BASIC +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_transitionPathRotate +com.google.android.material.R$layout: int mtrl_calendar_day_of_week +com.google.android.material.R$styleable: int CardView_cardMaxElevation +com.google.android.material.R$color: int mtrl_bottom_nav_ripple_color +com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker +com.jaredrummler.android.colorpicker.R$color: int primary_material_dark +com.google.android.material.R$attr: int customFloatValue +io.reactivex.Observable: io.reactivex.Observable ofType(java.lang.Class) +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +james.adaptiveicon.R$styleable: int MenuItem_showAsAction +wangdaye.com.geometricweather.R$id: int confirm_button +androidx.work.R$id: int line3 +androidx.constraintlayout.widget.R$styleable: int Constraint_android_maxWidth +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_spinnerStyle +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int RUNNING +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3 +okhttp3.internal.http2.Http2Connection: boolean access$300(okhttp3.internal.http2.Http2Connection) +androidx.appcompat.R$string: int abc_menu_enter_shortcut_label +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_BarSize +cyanogenmod.app.Profile$NotificationLightMode: int DISABLE +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_7 +james.adaptiveicon.R$drawable: int abc_list_divider_mtrl_alpha +androidx.constraintlayout.widget.R$style: int Base_V28_Theme_AppCompat +com.tencent.bugly.BuglyStrategy$a: BuglyStrategy$a() +com.google.android.material.R$styleable: int Tooltip_android_padding +androidx.appcompat.R$id: int search_bar +com.google.android.material.R$id: int action_mode_bar_stub +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_tooltipFrameBackground +wangdaye.com.geometricweather.R$id: int ratio +androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getNavigationIcon() +com.google.android.material.R$style: int TestStyleWithoutLineHeight +com.amap.api.location.AMapLocation: void setCity(java.lang.String) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List phenomenonsItems +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActivityChooserView +androidx.preference.R$id: int default_activity_button +com.google.android.material.timepicker.ClockHandView: ClockHandView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$color: int design_fab_shadow_end_color +com.google.android.material.R$attr: int lastBaselineToBottomHeight +okhttp3.EventListener: okhttp3.EventListener NONE +wangdaye.com.geometricweather.R$dimen: int design_snackbar_extra_spacing_horizontal +androidx.lifecycle.ProcessLifecycleOwner$2: androidx.lifecycle.ProcessLifecycleOwner this$0 +androidx.preference.R$string: int summary_collapsed_preference_list +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconMargin +okhttp3.internal.cache2.Relay: Relay(java.io.RandomAccessFile,okio.Source,long,okio.ByteString,long) +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: void dispose() +okhttp3.Dispatcher: int runningCallsCount() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String getUnit() +androidx.fragment.R$id: int accessibility_custom_action_1 +io.reactivex.internal.util.HashMapSupplier: io.reactivex.internal.util.HashMapSupplier INSTANCE +androidx.hilt.work.R$id: int accessibility_custom_action_13 +com.google.android.material.R$styleable: int[] AppBarLayout_Layout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: int status +androidx.hilt.work.R$attr: int fontStyle +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: BodyObservable$BodyObserver(io.reactivex.Observer) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: boolean done +androidx.preference.R$attr: int windowFixedHeightMinor +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PKG_NAME +androidx.preference.R$color: int abc_primary_text_disable_only_material_light +wangdaye.com.geometricweather.R$xml: int widget_clock_day_week +androidx.constraintlayout.widget.R$styleable: int RecycleListView_paddingTopNoTitle +retrofit2.KotlinExtensions$suspendAndThrow$1: java.lang.Object result +com.turingtechnologies.materialscrollbar.R$attr: int track +james.adaptiveicon.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +wangdaye.com.geometricweather.R$id: int mtrl_calendar_days_of_week +androidx.lifecycle.Transformations$3 +com.google.android.material.R$styleable: int[] MaterialTextAppearance +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitation +okhttp3.logging.LoggingEventListener: void requestBodyStart(okhttp3.Call) +okhttp3.internal.cache.DiskLruCache: void evictAll() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$id: int bidirectional +androidx.preference.R$style: int Widget_AppCompat_SearchView_ActionBar +com.tencent.bugly.crashreport.CrashReport: CrashReport() +wangdaye.com.geometricweather.R$color: int lightPrimary_4 +android.didikee.donate.R$styleable: int AppCompatTheme_panelMenuListWidth +cyanogenmod.power.IPerformanceManager: int getPowerProfile() +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean deferredSetOnce(java.util.concurrent.atomic.AtomicReference,java.util.concurrent.atomic.AtomicLong,org.reactivestreams.Subscription) +com.google.android.material.R$dimen: int abc_action_button_min_width_overflow_material +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +wangdaye.com.geometricweather.R$drawable: int notif_temp_80 +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_OVERLAYS +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onNext(java.lang.Object) +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean recover(java.io.IOException,okhttp3.internal.connection.StreamAllocation,boolean,okhttp3.Request) +android.didikee.donate.R$id: int src_over +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_holo_dark +com.google.android.material.R$styleable: int Slider_labelStyle +wangdaye.com.geometricweather.R$id: int tag_screen_reader_focusable +james.adaptiveicon.R$color: int bright_foreground_disabled_material_light +wangdaye.com.geometricweather.R$mipmap: R$mipmap() +com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPanelView +com.xw.repo.bubbleseekbar.R$styleable: int ActionBarLayout_android_layout_gravity +com.tencent.bugly.crashreport.common.info.a: int I() +james.adaptiveicon.R$styleable: int PopupWindow_android_popupAnimationStyle +androidx.swiperefreshlayout.R$id +james.adaptiveicon.R$drawable: int tooltip_frame_dark +okhttp3.logging.HttpLoggingInterceptor$Logger$1: void log(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date startDate +com.google.android.material.R$style: int Platform_MaterialComponents +com.google.android.material.progressindicator.ProgressIndicator: int getIndicatorSize() +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationX +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_centerX +androidx.preference.R$style: int Widget_AppCompat_Light_SearchView +com.google.android.material.R$attr: int titleMarginStart +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation precipitation +wangdaye.com.geometricweather.R$styleable: int[] MultiSelectListPreference +com.turingtechnologies.materialscrollbar.R$id: int transition_scene_layoutid_cache +androidx.preference.R$layout: int preference_dropdown +com.bumptech.glide.R$attr: int ttcIndex +cyanogenmod.app.Profile$ExpandedDesktopMode: int DEFAULT +androidx.constraintlayout.widget.R$styleable: int Constraint_motionProgress +com.amap.api.location.DPoint: int describeContents() +androidx.recyclerview.R$id: int accessibility_custom_action_14 +com.google.android.material.card.MaterialCardView: void setCheckedIconMargin(int) +androidx.preference.R$style: int Widget_AppCompat_ListView +androidx.constraintlayout.widget.R$styleable: int[] ActivityChooserView +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setLabel(int) +com.google.android.material.R$styleable: int KeyAttribute_motionProgress +com.tencent.bugly.crashreport.crash.jni.b: java.lang.String b(java.lang.String) +wangdaye.com.geometricweather.R$string: int settings_title_speed_unit +james.adaptiveicon.R$drawable: int abc_textfield_search_default_mtrl_alpha +androidx.appcompat.R$drawable: int abc_popup_background_mtrl_mult +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +com.github.rahatarmanahmed.cpv.CircularProgressView: java.util.List access$100(com.github.rahatarmanahmed.cpv.CircularProgressView) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HURRICANE +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void request(long) +wangdaye.com.geometricweather.R$id: int italic +wangdaye.com.geometricweather.R$drawable: int notif_temp_39 +okhttp3.internal.connection.StreamAllocation: void release(okhttp3.internal.connection.RealConnection) +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ButtonBar +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_spanCount +androidx.appcompat.widget.Toolbar: void setSubtitleTextColor(android.content.res.ColorStateList) +androidx.coordinatorlayout.R$id: int title +androidx.customview.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.R$id: int item_alert_content +com.tencent.bugly.crashreport.crash.anr.b: b(android.content.Context,com.tencent.bugly.crashreport.common.strategy.a,com.tencent.bugly.crashreport.common.info.a,com.tencent.bugly.proguard.w,com.tencent.bugly.crashreport.crash.b) +com.google.android.material.R$styleable: int ConstraintSet_transitionEasing +com.tencent.bugly.crashreport.BuglyLog: void w(java.lang.String,java.lang.String) +androidx.hilt.R$drawable: int notification_icon_background +james.adaptiveicon.R$styleable: int AppCompatTheme_colorButtonNormal +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_centerX +cyanogenmod.hardware.CMHardwareManager: int[] getDisplayColorCalibration() +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void dispose() +android.didikee.donate.R$styleable: int ActionBar_hideOnContentScroll +retrofit2.adapter.rxjava2.Result: retrofit2.adapter.rxjava2.Result error(java.lang.Throwable) +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressViewEndOffset() +okio.Utf8: long size(java.lang.String,int,int) +android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar_Small +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String f +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean humidity +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService this$0 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_radioButtonStyle +okhttp3.internal.http2.Http2Connection$Listener +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_precise_anchor_extra_offset +cyanogenmod.app.ILiveLockScreenChangeListener$Stub: int TRANSACTION_onLiveLockScreenChanged_0 +androidx.fragment.R$anim: int fragment_close_exit +com.tencent.bugly.proguard.e: java.lang.String a(byte[]) +android.didikee.donate.R$styleable: int MenuItem_numericModifiers +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowRadius +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_checkedTextViewStyle +androidx.appcompat.resources.R$styleable: int[] FontFamily +com.xw.repo.bubbleseekbar.R$attr: int overlapAnchor +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_default +com.baidu.location.indoor.mapversion.c.c$b: java.lang.String a +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_3 +okio.Okio$4: java.net.Socket val$socket +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +androidx.core.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setLocationKey(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int abc_control_inset_material +android.didikee.donate.R$styleable: int ColorStateListItem_android_color +cyanogenmod.weatherservice.WeatherProviderService$1: WeatherProviderService$1(cyanogenmod.weatherservice.WeatherProviderService) +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.Property[] getProperties() +cyanogenmod.weatherservice.ServiceRequestResult$1: ServiceRequestResult$1() +com.xw.repo.bubbleseekbar.R$attr: int thumbTintMode +com.google.android.material.slider.RangeSlider: void setThumbTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property TimeZone +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_cursor_material +com.google.android.material.R$style: int Base_Animation_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$string: int night +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean getNames() +androidx.constraintlayout.widget.Group androidx.appcompat.widget.ActionBarContextView: java.lang.CharSequence getTitle() -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: java.util.Date date -cyanogenmod.externalviews.ExternalView: void onActivityStopped(android.app.Activity) -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean done -androidx.appcompat.R$id: int checkbox -cyanogenmod.providers.CMSettings$System: java.lang.String MENU_WAKE_SCREEN -okhttp3.internal.ws.WebSocketProtocol: void toggleMask(okio.Buffer$UnsafeCursor,byte[]) -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_HOME_BUTTON -androidx.appcompat.widget.SwitchCompat: void setThumbTextPadding(int) -james.adaptiveicon.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -okhttp3.internal.http1.Http1Codec$ChunkedSource: Http1Codec$ChunkedSource(okhttp3.internal.http1.Http1Codec,okhttp3.HttpUrl) -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource access$000(wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource) -androidx.preference.R$attr: int actionModeShareDrawable -wangdaye.com.geometricweather.R$styleable: int[] ActivityChooserView -androidx.loader.R$style: int TextAppearance_Compat_Notification_Info -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabText -io.reactivex.Observable: io.reactivex.Observable fromArray(java.lang.Object[]) -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: MfForecastResult$Forecast$Temperature() -com.turingtechnologies.materialscrollbar.R$style: int Base_Animation_AppCompat_DropDownUp -com.baidu.location.indoor.mapversion.c.a$d: double a(double) -androidx.appcompat.R$string: int abc_capital_on -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_NavigationView -com.google.android.material.behavior.SwipeDismissBehavior -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: java.lang.String Unit -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SearchView -androidx.viewpager2.R$attr: int fontVariationSettings -com.amap.api.fence.GeoFence: int ERROR_NO_VALIDFENCE -androidx.preference.R$attr: int persistent -androidx.coordinatorlayout.R$drawable -wangdaye.com.geometricweather.R$attr: int flow_firstHorizontalBias -androidx.core.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.R$styleable: int[] RoundCornerTransition -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_pixel -com.google.android.material.R$dimen: int mtrl_card_corner_radius -com.google.android.material.slider.RangeSlider: float getValueTo() -wangdaye.com.geometricweather.R$styleable: int Transform_android_elevation -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onNext(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int notif_temp_6 -cyanogenmod.externalviews.KeyguardExternalView$11: void run() -com.github.rahatarmanahmed.cpv.R$styleable: R$styleable() -okhttp3.internal.http.RealInterceptorChain: int calls -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_ExposedDropdownMenu -com.google.android.material.R$integer: int mtrl_tab_indicator_anim_duration_ms -com.turingtechnologies.materialscrollbar.R$color: int material_blue_grey_800 -androidx.fragment.R$styleable: int[] Fragment -james.adaptiveicon.R$styleable: int MenuView_android_horizontalDivider -android.didikee.donate.R$style: int Theme_AppCompat_Light_DialogWhenLarge -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginRight -com.jaredrummler.android.colorpicker.R$attr: int thumbTintMode -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_Chip -androidx.vectordrawable.R$dimen: int compat_notification_large_icon_max_width -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header -okhttp3.internal.http.HttpHeaders: void receiveHeaders(okhttp3.CookieJar,okhttp3.HttpUrl,okhttp3.Headers) -wangdaye.com.geometricweather.common.basic.models.weather.Base: long publishTime -androidx.constraintlayout.widget.R$attr: int constraintSet -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomAppBar -com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetTop -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature -com.google.android.material.R$styleable: int KeyTrigger_framePosition -com.google.android.material.timepicker.ChipTextInputComboView: ChipTextInputComboView(android.content.Context,android.util.AttributeSet) -com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_FilledBox -com.google.android.material.R$attr: int layout_constraintHeight_min -androidx.preference.R$style: int Base_Animation_AppCompat_Tooltip -androidx.viewpager.widget.ViewPager: int getCurrentItem() -okio.Buffer$1: void close() -wangdaye.com.geometricweather.R$attr: int counterMaxLength -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setImages(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean) -com.turingtechnologies.materialscrollbar.R$attr: int textInputStyle +okhttp3.internal.http2.Http2Stream$FramingSink: boolean finished +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_longpressed_holo +androidx.preference.EditTextPreference$SavedState +okhttp3.internal.http.HttpHeaders: java.lang.String repeat(char,int) +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setWifiScan(boolean) +com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_BLOCK +androidx.core.R$id: int accessibility_custom_action_29 +androidx.preference.R$color: int abc_search_url_text_selected +com.github.rahatarmanahmed.cpv.BuildConfig +cyanogenmod.weather.CMWeatherManager$WeatherUpdateRequestListener +cyanogenmod.app.Profile$ProfileTrigger +androidx.constraintlayout.widget.R$styleable: int Transition_pathMotionArc +wangdaye.com.geometricweather.R$dimen: int abc_panel_menu_list_width +okio.Base64 +retrofit2.Call: okhttp3.Request request() +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean isDisposed() +androidx.appcompat.view.menu.ListMenuItemView: void setChecked(boolean) +androidx.appcompat.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +cyanogenmod.weather.CMWeatherManager$2: cyanogenmod.weather.CMWeatherManager this$0 +okio.ByteString: java.lang.String base64Url() +com.google.android.material.R$plurals +com.turingtechnologies.materialscrollbar.R$attr: int srcCompat +com.google.android.material.R$styleable: int Slider_thumbStrokeColor +androidx.fragment.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit getInstance(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.History +wangdaye.com.geometricweather.common.basic.models.weather.Daily: long time +com.google.android.material.R$attr: int checkedTextViewStyle +com.turingtechnologies.materialscrollbar.R$layout: int abc_select_dialog_material +android.didikee.donate.R$style: int TextAppearance_AppCompat_Subhead +wangdaye.com.geometricweather.R$layout: int expand_button +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeContainer +wangdaye.com.geometricweather.R$id: int chip_group +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationX +com.google.android.material.R$layout: int mtrl_picker_header_title_text +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver this$0 +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: void onWeatherServiceProviderChanged(java.lang.String) +androidx.fragment.app.FragmentTabHost: FragmentTabHost(android.content.Context,android.util.AttributeSet) +com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_android_color +androidx.hilt.R$id: int right_side +com.google.android.material.R$attr: int fabSize +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endColor +androidx.preference.R$dimen: int compat_notification_large_icon_max_width +androidx.constraintlayout.widget.R$styleable: int MenuItem_iconTint +okhttp3.MultipartBody: okhttp3.MediaType FORM +androidx.fragment.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$string: int key_widget_trend_hourly +cyanogenmod.app.StatusBarPanelCustomTile: cyanogenmod.app.CustomTile customTile +androidx.appcompat.widget.AppCompatSpinner$DropdownPopup +com.tencent.bugly.crashreport.common.info.a: java.lang.String g(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_itemPadding +androidx.appcompat.resources.R$id: int accessibility_custom_action_0 +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_line +androidx.appcompat.R$layout: int abc_search_view +wangdaye.com.geometricweather.R$attr: int searchIcon +com.amap.api.location.AMapLocationClientOption: long getScanWifiInterval() +wangdaye.com.geometricweather.R$styleable: int[] ShapeableImageView +com.google.android.material.R$drawable: int abc_ic_star_black_16dp +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_icon +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_elevation +james.adaptiveicon.R$styleable: int[] ActionBar +retrofit2.RequestFactory$Builder: java.util.Set parsePathParameters(java.lang.String) +com.amap.api.fence.GeoFenceManagerBase: void addDistrictGeoFence(java.lang.String,java.lang.String) +androidx.multidex.MultiDexExtractor$ExtractedDex +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Dialog +com.turingtechnologies.materialscrollbar.R$attr: int listDividerAlertDialog +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_behavior +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableBottom +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_widgetLayout +com.jaredrummler.android.colorpicker.R$styleable: int ActivityChooserView_initialActivityCount +cyanogenmod.themes.IThemeService: int getProgress() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow +com.turingtechnologies.materialscrollbar.R$id: int line1 +okhttp3.Dispatcher: java.util.List runningCalls() +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dark +cyanogenmod.app.Profile: int compareTo(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleMarginTop +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_shapeAppearanceOverlay +androidx.appcompat.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +com.turingtechnologies.materialscrollbar.R$color: int tooltip_background_dark +cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(java.util.Map,java.util.Map,cyanogenmod.themes.ThemeChangeRequest$RequestType,long,cyanogenmod.themes.ThemeChangeRequest$1) +james.adaptiveicon.R$styleable: int SwitchCompat_switchMinWidth +com.google.android.material.chip.Chip: float getIconStartPadding() +com.google.android.material.R$color: int material_blue_grey_900 +com.turingtechnologies.materialscrollbar.R$color: int material_deep_teal_500 +com.turingtechnologies.materialscrollbar.R$attr: int dividerPadding +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean isEmpty() +okhttp3.Cache: void update(okhttp3.Response,okhttp3.Response) +cyanogenmod.app.BaseLiveLockManagerService: void notifyChangeListeners(cyanogenmod.app.LiveLockScreenInfo) +com.google.android.material.R$styleable: int[] ViewStubCompat +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setInterval(long) +com.turingtechnologies.materialscrollbar.R$styleable: int[] FontFamily +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerError(java.lang.Throwable) +android.didikee.donate.R$attr: int actionViewClass +androidx.constraintlayout.widget.R$styleable: int Transform_android_scaleX +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context) +wangdaye.com.geometricweather.R$dimen: int cpv_item_horizontal_padding +wangdaye.com.geometricweather.R$style: int Base_V23_Theme_AppCompat +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty3H +wangdaye.com.geometricweather.R$attr: int pageIndicatorColor +com.google.android.material.R$style: int CardView +wangdaye.com.geometricweather.R$dimen: int material_clock_face_margin_top +cyanogenmod.app.Profile: int getExpandedDesktopMode() +com.google.android.material.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge +wangdaye.com.geometricweather.R$dimen: int cpv_required_padding +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_splitTrack +androidx.lifecycle.LifecycleOwner: androidx.lifecycle.Lifecycle getLifecycle() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +androidx.coordinatorlayout.R$id: int accessibility_custom_action_7 +androidx.vectordrawable.animated.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$color +wangdaye.com.geometricweather.R$attr: int useSimpleSummaryProvider +com.tencent.bugly.CrashModule: boolean hasInitialized() +wangdaye.com.geometricweather.R$styleable: int Slider_labelStyle +org.greenrobot.greendao.DaoException: void safeInitCause(java.lang.Throwable) +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$b +androidx.constraintlayout.widget.R$color: int abc_search_url_text_pressed +androidx.appcompat.widget.LinearLayoutCompat: int getShowDividers() +okio.Buffer: okio.BufferedSink write(byte[],int,int) +com.amap.api.fence.GeoFence: void setAble(boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean getWeather() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +retrofit2.adapter.rxjava2.CallEnqueueObservable: CallEnqueueObservable(retrofit2.Call) +androidx.constraintlayout.widget.R$attr: int controlBackground +cyanogenmod.weather.WeatherInfo$1: cyanogenmod.weather.WeatherInfo createFromParcel(android.os.Parcel) +androidx.fragment.R$attr: int fontProviderPackage +com.amap.api.location.AMapLocation: int LOCATION_TYPE_SAME_REQ +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +james.adaptiveicon.R$color: int abc_secondary_text_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource LocalSource +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather weather +androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$styleable: int Constraint_android_maxWidth +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableRight +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: long updatedOn +com.turingtechnologies.materialscrollbar.R$attr: int actionLayout +android.didikee.donate.R$attr: int contentInsetRight +com.google.android.material.R$styleable: int BottomNavigationView_elevation +cyanogenmod.os.Build$CM_VERSION_CODES +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_FORWARD_LOOKUP +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean() +androidx.customview.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$string: int about_page_indicator +androidx.appcompat.resources.R$attr: int ttcIndex +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: java.util.ArrayDeque observers +androidx.coordinatorlayout.R$attr: int fontProviderFetchStrategy +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void dispose() +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: ObservableTakeLast$TakeLastObserver(io.reactivex.Observer,int) +wangdaye.com.geometricweather.R$id: int easeInOut +androidx.appcompat.R$styleable: int ViewStubCompat_android_id +androidx.legacy.coreutils.R$drawable: int notification_template_icon_low_bg +io.reactivex.internal.disposables.CancellableDisposable: void dispose() +retrofit2.HttpServiceMethod$SuspendForBody +com.google.android.material.R$color: int material_timepicker_button_background +wangdaye.com.geometricweather.R$string: int precipitation_heavy +androidx.hilt.R$color: int notification_icon_bg_color +okhttp3.logging.HttpLoggingInterceptor: okhttp3.logging.HttpLoggingInterceptor setLevel(okhttp3.logging.HttpLoggingInterceptor$Level) +io.reactivex.internal.util.EmptyComponent: void dispose() +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_visible +androidx.constraintlayout.widget.R$id: int home +cyanogenmod.providers.CMSettings$NameValueCache: android.content.IContentProvider mContentProvider +com.jaredrummler.android.colorpicker.R$color: int highlighted_text_material_light androidx.legacy.coreutils.R$dimen: int notification_subtext_size -cyanogenmod.providers.CMSettings$3: CMSettings$3() -android.didikee.donate.R$attr: int measureWithLargestChild -cyanogenmod.hardware.CMHardwareManager: java.lang.String getSerialNumber() -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdwd -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: java.lang.Integer proba6H -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: AccuCurrentResult$Past24HourTemperatureDeparture$Imperial() -androidx.appcompat.R$styleable: int[] ActionMenuView -com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPreference -james.adaptiveicon.R$dimen: int notification_top_pad -androidx.appcompat.resources.R$styleable: int[] StateListDrawableItem -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getStreet_number() -okhttp3.Dispatcher: void setMaxRequestsPerHost(int) -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_wrapMode -wangdaye.com.geometricweather.R$styleable: int MockView_mock_label -com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$attr: int backgroundTint -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: MfCurrentResult$Observation() -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: void setRootAlpha(int) -wangdaye.com.geometricweather.R$attr: int thumbTintMode -com.turingtechnologies.materialscrollbar.R$styleable: int[] TouchScrollBar -okhttp3.Cache: int networkCount -okhttp3.internal.ws.RealWebSocket$CancelRunnable -okhttp3.internal.http.HttpMethod: HttpMethod() -androidx.appcompat.R$attr: int windowNoTitle -com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCardForegroundColor() -wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_arrow -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceCategoryStyle -io.reactivex.internal.subscriptions.SubscriptionArbiter: void drainLoop() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Button -wangdaye.com.geometricweather.R$layout: int container_snackbar_card -com.google.android.material.R$styleable: int MaterialRadioButton_buttonTint -com.bumptech.glide.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: AccuCurrentResult$TemperatureSummary() -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemBackground(int) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom -okhttp3.Handshake: okhttp3.Handshake get(javax.net.ssl.SSLSession) -okhttp3.HttpUrl: java.lang.String percentDecode(java.lang.String,boolean) -io.reactivex.Observable: java.lang.Object blockingSingle(java.lang.Object) -com.google.android.material.R$styleable: int[] Toolbar -androidx.activity.R$dimen: R$dimen() -androidx.constraintlayout.widget.R$id: int notification_background -okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithoutIndexingIndexedName(int) -androidx.appcompat.resources.R$dimen: int notification_subtext_size -androidx.viewpager.R$attr: int fontProviderFetchTimeout -retrofit2.http.Path: boolean encoded() -androidx.constraintlayout.widget.Barrier: void setAllowsGoneWidget(boolean) -androidx.preference.R$attr: int customNavigationLayout -james.adaptiveicon.R$drawable: int abc_ic_voice_search_api_material -io.reactivex.Observable: io.reactivex.Observable fromIterable(java.lang.Iterable) -wangdaye.com.geometricweather.R$drawable: int shortcuts_thunderstorm_foreground -okio.Okio: okio.Source source(java.net.Socket) -androidx.appcompat.R$id: int italic -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void cancel() -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Dialog -com.tencent.bugly.crashreport.common.info.a: java.lang.String T -androidx.core.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.R$drawable: int notif_temp_13 -cyanogenmod.themes.ThemeManager$1$1: ThemeManager$1$1(cyanogenmod.themes.ThemeManager$1,int) -com.turingtechnologies.materialscrollbar.R$string: R$string() -com.google.gson.stream.JsonReader: void nextNull() -androidx.viewpager2.R$attr: int recyclerViewStyle -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetStartWithNavigation -com.tencent.bugly.crashreport.common.info.a: java.lang.String m() -androidx.preference.R$style: int Theme_AppCompat_Light_DialogWhenLarge -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Headline -android.didikee.donate.R$attr: int ratingBarStyleIndicator -androidx.transition.R$style: int TextAppearance_Compat_Notification_Time -retrofit2.CallAdapter: java.lang.reflect.Type responseType() -wangdaye.com.geometricweather.R$attr: int region_widthMoreThan -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog_Alert -androidx.preference.R$styleable: int AppCompatTextView_drawableLeftCompat -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWindDirection() -androidx.appcompat.R$style: int Base_Widget_AppCompat_ListPopupWindow -james.adaptiveicon.R$attr: int height -com.amap.api.location.AMapLocationClientOption: java.lang.String toString() -com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior: ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior(android.content.Context,android.util.AttributeSet) -androidx.loader.R$string: R$string() -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_mini_xml -com.jaredrummler.android.colorpicker.R$drawable: int abc_ratingbar_small_material -wangdaye.com.geometricweather.R$drawable: int shortcuts_thunder -com.turingtechnologies.materialscrollbar.R$string: int abc_shareactionprovider_share_with_application -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_bottom_padding -okhttp3.Dns$1: java.util.List lookup(java.lang.String) -cyanogenmod.profiles.LockSettings: LockSettings(android.os.Parcel) -okio.BufferedSource: long indexOfElement(okio.ByteString) -androidx.preference.R$styleable: int TextAppearance_android_shadowDy -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -androidx.recyclerview.widget.RecyclerView: void addOnChildAttachStateChangeListener(androidx.recyclerview.widget.RecyclerView$OnChildAttachStateChangeListener) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: io.reactivex.Scheduler scheduler -com.tencent.bugly.crashreport.crash.c: boolean b() -android.didikee.donate.R$dimen: int abc_panel_menu_list_width -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_FixedSize_Bridge -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents -cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.content.ComponentName,int) -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer getDewPoint() -com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark_disabled -wangdaye.com.geometricweather.R$styleable: int Constraint_android_visibility -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean active -wangdaye.com.geometricweather.common.ui.widgets.AnimatableIconView: AnimatableIconView(android.content.Context) +androidx.lifecycle.extensions.R$styleable: int Fragment_android_id +androidx.preference.R$styleable: int FontFamily_fontProviderQuery +android.didikee.donate.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTintMode +com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_margin +com.google.android.material.R$attr: int layout_constraintTop_toBottomOf +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +com.google.android.material.appbar.AppBarLayout +androidx.appcompat.R$styleable: int LinearLayoutCompat_showDividers +androidx.preference.R$style: int Base_V28_Theme_AppCompat +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void dispose() +wangdaye.com.geometricweather.R$attr: int region_widthLessThan +cyanogenmod.profiles.RingModeSettings$1: RingModeSettings$1() +wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchRegionId +retrofit2.adapter.rxjava2.BodyObservable: io.reactivex.Observable upstream +okhttp3.RealCall$AsyncCall: okhttp3.RealCall this$0 +com.jaredrummler.android.colorpicker.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$drawable: int weather_rain_pixel +wangdaye.com.geometricweather.R$string: int mtrl_picker_save +com.google.android.material.R$attr: int tabIndicatorColor +androidx.appcompat.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +com.google.android.material.R$attr: int popupMenuBackground +wangdaye.com.geometricweather.settings.fragments.AppearanceSettingsFragment +com.google.android.material.R$dimen: int abc_text_size_title_material_toolbar +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_paddingEnd +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_grey +com.google.android.material.R$styleable: int MenuView_android_headerBackground +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_month_vertical_padding +james.adaptiveicon.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +androidx.vectordrawable.animated.R$id: int normal +com.github.rahatarmanahmed.cpv.CircularProgressView$5: void onAnimationCancel(android.animation.Animator) +com.google.android.material.R$attr: int layoutDescription +android.support.v4.os.IResultReceiver$Stub: android.os.IBinder asBinder() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.activity.R$drawable: int notification_template_icon_bg +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +com.google.android.material.R$dimen: int design_navigation_icon_padding +com.tencent.bugly.crashreport.crash.h5.a: java.lang.String g +okio.RealBufferedSource: java.lang.String toString() +androidx.activity.R$id: int accessibility_custom_action_22 +james.adaptiveicon.R$styleable: int SearchView_iconifiedByDefault +androidx.hilt.lifecycle.R$id: int action_image +okio.RealBufferedSource: boolean request(long) +androidx.constraintlayout.widget.R$id: int add +james.adaptiveicon.R$attr: int listChoiceBackgroundIndicator +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowFixedWidthMajor +james.adaptiveicon.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void innerError(io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver,java.lang.Throwable) +com.google.android.material.R$attr: int height +com.tencent.bugly.a: java.lang.String[] getTables() +androidx.coordinatorlayout.R$color: int notification_icon_bg_color +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: org.reactivestreams.Subscription upstream +com.google.android.gms.common.SignInButton: void setSize(int) +androidx.vectordrawable.R$id: int accessibility_action_clickable_span +androidx.appcompat.R$styleable: int Toolbar_android_gravity +androidx.constraintlayout.widget.R$attr: int actionMenuTextAppearance +androidx.appcompat.R$drawable: int abc_btn_borderless_material +wangdaye.com.geometricweather.R$layout: int material_clockface_view +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int IceProbability +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_Alert +cyanogenmod.weather.CMWeatherManager: android.os.Handler mHandler +com.google.android.material.R$styleable: int ConstraintSet_android_id +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode AUTO +androidx.coordinatorlayout.R$id: int right +cyanogenmod.hardware.DisplayMode$1: java.lang.Object createFromParcel(android.os.Parcel) +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.preference.R$style: int Base_Widget_AppCompat_ActivityChooserView +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao +okhttp3.internal.http2.Http2Stream: boolean hasResponseHeaders +wangdaye.com.geometricweather.R$id: int custom +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog +androidx.core.R$id: int normal +androidx.constraintlayout.widget.VirtualLayout +io.reactivex.internal.observers.BlockingObserver: java.util.Queue queue +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DarkActionBar +wangdaye.com.geometricweather.R$attr: int sliderStyle +com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getTextSize() +com.tencent.bugly.crashreport.common.info.a: java.lang.String K +android.didikee.donate.R$attr: int spinnerStyle +com.google.android.material.R$styleable: int ConstraintSet_android_alpha +android.didikee.donate.R$attr: int collapseIcon +wangdaye.com.geometricweather.R$styleable: int[] ActionBarLayout +okio.Buffer: long indexOfElement(okio.ByteString) +retrofit2.Utils$ParameterizedTypeImpl: int hashCode() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setPubTime(java.lang.String) +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode[] $VALUES +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_dither +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_lightOnTouch +androidx.lifecycle.MediatorLiveData +okhttp3.internal.http.RetryAndFollowUpInterceptor: int retryAfter(okhttp3.Response,int) +wangdaye.com.geometricweather.R$attr: int nestedScrollFlags +androidx.lifecycle.extensions.R$color: R$color() +android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +wangdaye.com.geometricweather.R$drawable: int btn_checkbox_unchecked_mtrl +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetRight +com.google.android.material.R$drawable: int notification_template_icon_low_bg +androidx.constraintlayout.widget.R$layout: R$layout() +okhttp3.CacheControl: boolean mustRevalidate() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierMargin +cyanogenmod.weather.WeatherInfo: long access$1002(cyanogenmod.weather.WeatherInfo,long) +wangdaye.com.geometricweather.R$attr: int titleTextColor +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_horizontal_padding +com.xw.repo.bubbleseekbar.R$color: int accent_material_dark +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getGrassLevel() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Overline +wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_day_foreground +androidx.transition.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: java.lang.Integer direction +com.jaredrummler.android.colorpicker.R$attr: int barLength +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +com.google.android.material.R$styleable: int TabLayout_tabPaddingEnd +androidx.constraintlayout.widget.R$id: int tag_accessibility_clickable_spans +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox_Dense +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_horizontal_padding +com.tencent.bugly.crashreport.common.info.a: java.lang.String c +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean cancelled +android.didikee.donate.R$attr: int arrowShaftLength +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean getForecastHourly() +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_entries +wangdaye.com.geometricweather.R$id: int dragRight +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric Metric +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontWeight +cyanogenmod.providers.CMSettings$System: java.lang.String MENU_WAKE_SCREEN +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver(io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver) +wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_padding +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_creator +com.google.android.material.R$style: int Widget_AppCompat_Button_Colored +io.reactivex.Observable: io.reactivex.Observable filter(io.reactivex.functions.Predicate) +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a readTargetDumpInfo(java.lang.String,java.lang.String,boolean) +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_day_2 +cyanogenmod.weatherservice.WeatherProviderService$1: void setServiceClient(cyanogenmod.weatherservice.IWeatherProviderServiceClient) +okhttp3.internal.http2.Http2Codec: java.util.List http2HeadersList(okhttp3.Request) +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: float intervalInHour +androidx.appcompat.R$attr: int suggestionRowLayout +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_60 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial: AccuCurrentResult$DewPoint$Imperial() +com.tencent.bugly.crashreport.crash.b: boolean a(com.tencent.bugly.crashreport.crash.CrashDetailBean,int) +androidx.appcompat.resources.R$styleable: int FontFamilyFont_fontWeight +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void dispose() +androidx.preference.R$style: int Widget_AppCompat_DropDownItem_Spinner +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabText +com.google.gson.stream.JsonReader: int[] pathIndices +com.xw.repo.bubbleseekbar.R$attr: int tooltipText +wangdaye.com.geometricweather.R$id: int dragLeft +com.amap.api.location.AMapLocation: int LOCATION_TYPE_AMAP +james.adaptiveicon.R$dimen: R$dimen() +wangdaye.com.geometricweather.R$styleable: int ColorPanelView_cpv_colorShape +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWindChillTemperature(java.lang.Integer) +com.tencent.bugly.crashreport.crash.anr.b: boolean f() +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginTop +com.amap.api.fence.GeoFence: long getExpiration() +androidx.hilt.R$dimen: int notification_small_icon_background_padding +androidx.preference.R$layout: int preference_recyclerview +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf +com.turingtechnologies.materialscrollbar.R$attr: int helperTextEnabled +com.google.android.material.R$color: int dim_foreground_disabled_material_dark +com.google.android.material.R$string: R$string() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void collapseNotificationPanel() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback) +wangdaye.com.geometricweather.R$string: int feedback_initializing +com.xw.repo.bubbleseekbar.R$attr: int layout_anchor +com.google.android.material.R$styleable: int Constraint_layout_goneMarginEnd +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onAttach(android.os.IBinder) +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_exitFadeDuration +androidx.appcompat.R$dimen: int abc_text_size_headline_material +androidx.lifecycle.extensions.R$drawable: int notification_bg +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.R$dimen: int mtrl_exposed_dropdown_menu_popup_vertical_offset +androidx.hilt.lifecycle.R$id: int info +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getLevel() +com.google.android.material.R$dimen: int notification_small_icon_background_padding +com.jaredrummler.android.colorpicker.R$style: int Platform_Widget_AppCompat_Spinner +android.didikee.donate.R$style: int Base_V21_Theme_AppCompat +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Medium_Inverse +com.tencent.bugly.proguard.s: java.util.Map a(java.net.HttpURLConnection) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalAlign +com.google.android.material.R$attr: int dividerHorizontal +com.turingtechnologies.materialscrollbar.R$color: int error_color_material_light +com.xw.repo.bubbleseekbar.R$style: int Platform_V25_AppCompat_Light +com.amap.api.fence.DistrictItem: int describeContents() +androidx.constraintlayout.widget.R$dimen: int notification_top_pad_large_text +okhttp3.RealCall: boolean isExecuted() +okhttp3.Response$Builder +androidx.appcompat.R$drawable: int abc_cab_background_top_mtrl_alpha +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textStyle com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_toolbar -okhttp3.Call: okhttp3.Response execute() -com.google.android.material.chip.Chip: void setChipStrokeWidth(float) -androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getNavigationIcon() -wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_xml -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_Solid -okhttp3.ResponseBody: long contentLength() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_DEFAULT_LED_OFF_VALIDATOR -wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_toTopOf -com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_clear -wangdaye.com.geometricweather.R$attr: int adjustable -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ThunderstormPrecipitationProbability -com.turingtechnologies.materialscrollbar.R$layout: int abc_search_view -james.adaptiveicon.R$string: int abc_shareactionprovider_share_with_application -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_disabled_elevation -okhttp3.internal.ws.WebSocketWriter$FrameSink: boolean isFirstFrame -okhttp3.internal.cache.DiskLruCache$Snapshot: DiskLruCache$Snapshot(okhttp3.internal.cache.DiskLruCache,java.lang.String,long,okio.Source[],long[]) +androidx.appcompat.R$styleable: int AppCompatTextView_drawableEndCompat +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: long serialVersionUID +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SearchView_ActionBar +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_middle_mtrl_dark +com.google.android.material.R$styleable: int TextInputLayout_errorEnabled +androidx.viewpager.widget.PagerTitleStrip: PagerTitleStrip(android.content.Context) +com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.crashreport.crash.CrashDetailBean a(android.database.Cursor) +wangdaye.com.geometricweather.R$string: int precipitation_overview +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_pressed +com.google.android.material.R$styleable: int Slider_thumbColor +com.xw.repo.bubbleseekbar.R$attr: int collapseContentDescription +cyanogenmod.app.ProfileGroup: android.net.Uri getRingerOverride() +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_track +androidx.hilt.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$attr: int checked_background_color +com.bumptech.glide.R$attr: int fontStyle +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_right_mtrl_light +wangdaye.com.geometricweather.R$integer: int cpv_default_start_angle +cyanogenmod.externalviews.ExternalView$2: int val$width +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean profileExistsByName(java.lang.String) +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String DAYS_OF_WEEK +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text +cyanogenmod.platform.Manifest$permission: java.lang.String READ_ALARMS +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableLeftCompat +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer realFeelTemperature +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +com.google.android.material.slider.Slider: void setValueFrom(float) +androidx.hilt.R$id: int notification_main_column +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function6) +com.google.gson.internal.LazilyParsedNumber +cyanogenmod.app.suggest.AppSuggestManager: android.graphics.drawable.Drawable loadIcon(cyanogenmod.app.suggest.ApplicationSuggestion) +com.google.android.material.datepicker.CalendarConstraints +androidx.appcompat.R$styleable: int DrawerArrowToggle_arrowHeadLength +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: long serialVersionUID +com.google.android.material.R$id: int linear +androidx.dynamicanimation.R$id: int notification_main_column_container +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getZh_CN() +okhttp3.internal.http2.Hpack$Writer: int SETTINGS_HEADER_TABLE_SIZE_LIMIT +okhttp3.internal.http2.Hpack$Reader: void insertIntoDynamicTable(int,okhttp3.internal.http2.Header) +com.tencent.bugly.proguard.ap: java.lang.String k +com.google.android.material.R$styleable: int KeyAttribute_android_elevation +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: double Value +wangdaye.com.geometricweather.R$layout: int mtrl_picker_dialog +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: io.reactivex.Scheduler$Worker worker +androidx.appcompat.widget.SearchView$SearchAutoComplete: void setThreshold(int) +com.google.android.material.bottomappbar.BottomAppBar: float getFabCradleMargin() +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize +okio.Buffer: boolean request(long) +com.turingtechnologies.materialscrollbar.R$attr: int actionModeSelectAllDrawable +androidx.appcompat.widget.SearchView: void setOnCloseListener(androidx.appcompat.widget.SearchView$OnCloseListener) +androidx.hilt.R$id: int tag_accessibility_clickable_spans +com.google.android.material.R$dimen: int hint_pressed_alpha_material_light +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String resPkg +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onAttachedToWindow() +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar +com.xw.repo.bubbleseekbar.R$id: int textSpacerNoTitle +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: android.graphics.Rect val$clipRect +cyanogenmod.providers.CMSettings$Secure: int getInt(android.content.ContentResolver,java.lang.String) +com.google.android.material.R$styleable: int CustomAttribute_customStringValue +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator +wangdaye.com.geometricweather.R$id: int widget_day_week_week_1 +androidx.drawerlayout.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_SearchView_ActionBar +okhttp3.internal.cache.DiskLruCache: long maxSize +okhttp3.Cookie: long expiresAt() +okhttp3.Response: okhttp3.Headers headers +okhttp3.Authenticator: okhttp3.Request authenticate(okhttp3.Route,okhttp3.Response) +androidx.constraintlayout.widget.R$attr: int editTextStyle +okhttp3.Request: java.lang.Object tag() +androidx.loader.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$attr: int chipCornerRadius +androidx.vectordrawable.R$styleable: int FontFamilyFont_android_font +com.google.android.material.R$id: int mtrl_calendar_selection_frame +com.turingtechnologies.materialscrollbar.R$dimen: int abc_disabled_alpha_material_dark +wangdaye.com.geometricweather.R$id: int cpv_preference_preview_color_panel +retrofit2.OkHttpCall$1: retrofit2.OkHttpCall this$0 +androidx.hilt.R$id: int text2 +com.tencent.bugly.proguard.am: java.lang.String r +wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_NoActionBar +androidx.preference.R$attr: int suggestionRowLayout +wangdaye.com.geometricweather.R$id: int moldValue +wangdaye.com.geometricweather.R$id: int ragweedValue +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_showDividers +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endY +androidx.constraintlayout.widget.R$attr: int titleMarginStart +androidx.constraintlayout.helper.widget.Flow +wangdaye.com.geometricweather.R$attr: int bsb_is_float_type +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableWithLatestFrom$WithLatestFromObserver: ObservableWithLatestFrom$WithLatestFromObserver(io.reactivex.Observer,io.reactivex.functions.BiFunction) +androidx.constraintlayout.widget.R$attr: int actionBarSplitStyle +james.adaptiveicon.R$color: int background_floating_material_light +james.adaptiveicon.R$attr: int actionBarDivider +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: void addFilter(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_editor_absoluteX +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_material_light +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_title_material_toolbar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX +android.didikee.donate.R$string: int abc_action_bar_up_description +cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() +androidx.vectordrawable.R$dimen: int notification_content_margin_start +com.google.android.material.R$color: int mtrl_tabs_icon_color_selector_colored +com.amap.api.fence.DistrictItem$1: java.lang.Object createFromParcel(android.os.Parcel) +com.xw.repo.bubbleseekbar.R$attr: int titleMarginTop +com.google.android.material.R$attr: int behavior_autoHide +wangdaye.com.geometricweather.R$styleable: int CardView_android_minHeight +okhttp3.Credentials: Credentials() +com.jaredrummler.android.colorpicker.ColorPanelView: void setShape(int) +androidx.viewpager.R$id: int tag_unhandled_key_event_manager +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void slideLockscreenIn() +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_23 +androidx.preference.R$styleable: int AppCompatTheme_buttonBarStyle +androidx.constraintlayout.widget.R$bool: int abc_allow_stacked_button_bar +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_content_inset_material +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar +com.google.android.material.R$id: int submenuarrow +okhttp3.internal.http1.Http1Codec$ChunkedSink: Http1Codec$ChunkedSink(okhttp3.internal.http1.Http1Codec) +com.turingtechnologies.materialscrollbar.R$id: int start +com.tencent.bugly.crashreport.common.info.a: java.lang.String w +com.google.android.material.chip.ChipGroup: int getCheckedChipId() +com.xw.repo.bubbleseekbar.R$integer: int config_tooltipAnimTime +com.google.android.material.chip.Chip: void setEnsureMinTouchTargetSize(boolean) +com.google.android.material.R$styleable: int Chip_shapeAppearance +com.xw.repo.bubbleseekbar.R$color: int abc_btn_colored_borderless_text_material +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceStyle +com.bumptech.glide.integration.okhttp.R$color +androidx.preference.R$style: int Base_Widget_AppCompat_Toolbar +com.google.android.material.chip.Chip: void setBackgroundResource(int) +androidx.customview.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: MfCurrentResult() +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setOnceLocation(boolean) +com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart +com.google.android.material.R$styleable: int Constraint_barrierDirection +cyanogenmod.themes.IThemeService$Stub$Proxy: boolean isThemeApplying() +cyanogenmod.platform.Manifest$permission: java.lang.String BIND_WEATHER_PROVIDER_SERVICE +androidx.constraintlayout.widget.R$attr: int buttonStyleSmall +cyanogenmod.app.IProfileManager$Stub: cyanogenmod.app.IProfileManager asInterface(android.os.IBinder) +com.github.rahatarmanahmed.cpv.CircularProgressView: void setProgress(float) +com.google.android.material.R$attr: int enforceTextAppearance +wangdaye.com.geometricweather.R$color: int abc_decor_view_status_guard +androidx.viewpager.widget.ViewPager: void setScrollingCacheEnabled(boolean) +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon +cyanogenmod.weather.CMWeatherManager$RequestStatus: int COMPLETED +okhttp3.internal.http2.Hpack$Writer: Hpack$Writer(okio.Buffer) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String getFrom() +wangdaye.com.geometricweather.R$styleable: int[] RecycleListView +wangdaye.com.geometricweather.R$attr: int bsb_progress +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: java.lang.reflect.Type[] getLowerBounds() +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +james.adaptiveicon.R$styleable: int AppCompatTheme_dialogCornerRadius +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitationDuration +com.turingtechnologies.materialscrollbar.R$attr: int displayOptions +com.tencent.bugly.proguard.u: java.lang.String p +androidx.lifecycle.ProcessLifecycleOwner: void activityResumed() +com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_NoActionBar +cyanogenmod.externalviews.IExternalViewProvider$Stub: java.lang.String DESCRIPTOR +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: boolean requestDismiss() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTopCompat +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: okhttp3.Request request() +com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Object,java.util.List) +io.reactivex.Observable: io.reactivex.disposables.Disposable forEach(io.reactivex.functions.Consumer) +com.tencent.bugly.proguard.v: com.tencent.bugly.crashreport.common.strategy.a g +retrofit2.adapter.rxjava2.RxJava2CallAdapter +androidx.preference.R$attr: int layout_anchor +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info info +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onComplete() +io.reactivex.Observable: java.lang.Iterable blockingNext() +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: long serialVersionUID +com.amap.api.fence.GeoFenceManagerBase: void removeGeoFence() +retrofit2.ParameterHandler$Part: void apply(retrofit2.RequestBuilder,java.lang.Object) +okhttp3.internal.http2.Hpack$Reader: okio.ByteString readByteString() +androidx.appcompat.resources.R$styleable: int GradientColor_android_centerY +cyanogenmod.providers.CMSettings$Secure$2 +android.support.v4.os.ResultReceiver$MyResultReceiver: ResultReceiver$MyResultReceiver(android.support.v4.os.ResultReceiver) +androidx.lifecycle.extensions.R$color: int notification_action_color_filter +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dividerVertical +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display2 +com.google.android.material.R$string: int abc_menu_function_shortcut_label +retrofit2.RequestFactory$Builder: okhttp3.Headers parseHeaders(java.lang.String[]) +retrofit2.adapter.rxjava2.CallEnqueueObservable +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_thickness +wangdaye.com.geometricweather.R$attr: int endIconTint +com.xw.repo.bubbleseekbar.R$id +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onComplete() +james.adaptiveicon.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Country +android.didikee.donate.R$style: int Theme_AppCompat_Dialog +cyanogenmod.externalviews.KeyguardExternalView$8 +okhttp3.HttpUrl: java.lang.String fragment +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setBrandId(java.lang.String) +okio.Okio$3: void flush() +wangdaye.com.geometricweather.R$drawable: int notif_temp_126 +okio.Segment: boolean owner +com.google.android.gms.base.R$styleable: int[] LoadingImageView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: AccuCurrentResult$PrecipitationSummary$Past12Hours() +cyanogenmod.profiles.LockSettings: int getValue() +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String getSourceId() +wangdaye.com.geometricweather.R$string: int settings_category_basic +android.didikee.donate.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onComplete() +com.google.android.gms.internal.common.zzq: com.google.android.gms.internal.common.zzo zza +okio.Util: void sneakyRethrow(java.lang.Throwable) +wangdaye.com.geometricweather.remoteviews.config.AbstractWidgetConfigActivity: AbstractWidgetConfigActivity() +androidx.activity.R$attr: int ttcIndex +wangdaye.com.geometricweather.R$dimen: int abc_list_item_padding_horizontal_material +com.google.android.material.R$dimen: int mtrl_calendar_day_today_stroke +cyanogenmod.externalviews.KeyguardExternalView$3 +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1: void invoke(java.lang.Throwable) +androidx.preference.R$integer: int abc_config_activityShortDur +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat +com.xw.repo.bubbleseekbar.R$layout: int select_dialog_multichoice_material +android.didikee.donate.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +com.google.android.material.R$drawable: int mtrl_popupmenu_background_dark +androidx.appcompat.widget.ActionMenuView: ActionMenuView(android.content.Context) +androidx.appcompat.resources.R$layout: int notification_template_part_time +androidx.hilt.lifecycle.R$attr: int fontProviderFetchStrategy +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void openComplete(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver) +com.google.android.material.R$id: int slide +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout +androidx.constraintlayout.widget.R$drawable: int btn_radio_on_mtrl +android.didikee.donate.R$integer: R$integer() +com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a c +androidx.appcompat.widget.AppCompatImageView: void setSupportImageTintList(android.content.res.ColorStateList) +io.reactivex.internal.subscriptions.SubscriptionArbiter +okhttp3.internal.ws.WebSocketReader: void readMessage() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String getZh_TW() +wangdaye.com.geometricweather.R$id: int month_navigation_fragment_toggle +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.ObservableSource bufferOpen +okhttp3.internal.platform.OptionalMethod: OptionalMethod(java.lang.Class,java.lang.String,java.lang.Class[]) +androidx.appcompat.R$styleable: int SwitchCompat_splitTrack +retrofit2.RequestFactory: java.lang.reflect.Method method +james.adaptiveicon.R$styleable: int Toolbar_contentInsetRight +com.google.android.material.chip.Chip: float getTextStartPadding() +androidx.lifecycle.extensions.R$dimen: int notification_subtext_size +com.google.android.material.R$drawable: int avd_show_password +okhttp3.CertificatePinner$Pin: CertificatePinner$Pin(java.lang.String,java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_navigationMode +okhttp3.MediaType: java.nio.charset.Charset charset(java.nio.charset.Charset) +cyanogenmod.app.Profile$NotificationLightMode: Profile$NotificationLightMode() +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeErrorColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial: java.lang.String Unit +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int OTHER_STATE_HAS_VALUE +androidx.activity.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext +wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +androidx.appcompat.widget.SearchView: void setQuery(java.lang.CharSequence) +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +okio.RealBufferedSink: long writeAll(okio.Source) +com.google.android.material.R$dimen: int mtrl_snackbar_action_text_color_alpha +com.google.android.material.R$styleable: int TextInputLayout_counterEnabled +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: long timeout +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getPrecipitationText(android.content.Context,float) +wangdaye.com.geometricweather.R$attr: int brightness +androidx.hilt.work.R$id: R$id() +androidx.preference.R$interpolator: R$interpolator() +android.didikee.donate.R$anim: int abc_slide_in_bottom +android.didikee.donate.R$id: int wrap_content +com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_android_popupBackground +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_tagView +com.bumptech.glide.R$attr: int layout_anchor +wangdaye.com.geometricweather.R$style: int CardView +androidx.appcompat.resources.R$style +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_warmth +io.reactivex.internal.util.EmptyComponent: io.reactivex.internal.util.EmptyComponent INSTANCE +wangdaye.com.geometricweather.R$id: int jumpToEnd +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Menu +androidx.coordinatorlayout.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_selected +com.google.android.material.R$color: int tooltip_background_light +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder followSslRedirects(boolean) +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Dialog_Bridge +com.xw.repo.bubbleseekbar.R$dimen: int disabled_alpha_material_light +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed Speed +androidx.customview.view.AbsSavedState$1 +retrofit2.KotlinExtensions$await$4$2: kotlinx.coroutines.CancellableContinuation $continuation +androidx.constraintlayout.widget.R$attr: int radioButtonStyle +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button +okhttp3.MultipartBody: okhttp3.MediaType contentType +androidx.loader.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.R$string: int settings_title_notification_can_be_cleared +org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType Session +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_14 +com.turingtechnologies.materialscrollbar.R$attr: int tabMaxWidth +cyanogenmod.weatherservice.ServiceRequestResult$Builder +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric +androidx.appcompat.R$style: int Widget_AppCompat_ListView_DropDown +android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +androidx.preference.R$drawable: int abc_btn_check_to_on_mtrl_000 +com.google.android.material.progressindicator.ProgressIndicator: void setCircularRadius(int) +okio.ByteString: okio.ByteString of(byte[],int,int) +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox +wangdaye.com.geometricweather.R$drawable: int shortcuts_rain_foreground +wangdaye.com.geometricweather.R$attr: int bsb_second_track_size +cyanogenmod.weather.WeatherInfo$Builder: double mWindDirection +cyanogenmod.hardware.CMHardwareManager: int FEATURE_UNIQUE_DEVICE_ID +com.tencent.bugly.crashreport.crash.anr.a: java.lang.String d +androidx.hilt.R$styleable: int GradientColor_android_startX +com.google.android.material.R$dimen: int mtrl_textinput_counter_margin_start +okhttp3.internal.cache.DiskLruCache: java.io.File journalFileTmp +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_SEED_CBC_SHA +androidx.preference.R$attr: int tickMarkTint +androidx.lifecycle.LiveData$1: void run() +androidx.preference.R$attr: int fontStyle +james.adaptiveicon.R$id: int customPanel +androidx.constraintlayout.widget.R$attr: int dividerPadding +io.reactivex.internal.subscriptions.SubscriptionArbiter: void drain() +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.String TABLENAME +androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +wangdaye.com.geometricweather.R$attr: int textAppearanceSearchResultTitle +wangdaye.com.geometricweather.R$attr: int msb_barColor +com.google.android.material.R$styleable: int TextInputLayout_boxStrokeColor +wangdaye.com.geometricweather.R$attr: int colorSecondaryVariant +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_enabled +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +androidx.appcompat.widget.ActionBarContainer: void setSplitBackground(android.graphics.drawable.Drawable) +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_summaryOff +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Temperature: java.lang.Float windChill +androidx.preference.R$attr: int listPopupWindowStyle +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth +wangdaye.com.geometricweather.R$dimen: int abc_text_size_headline_material +com.google.android.material.R$styleable: int Layout_barrierDirection +androidx.preference.R$style: int PreferenceFragmentList_Material +cyanogenmod.externalviews.ExternalViewProviderService$1: cyanogenmod.externalviews.ExternalViewProviderService this$0 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean +james.adaptiveicon.R$layout: int abc_popup_menu_header_item_layout +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +retrofit2.OkHttpCall$NoContentResponseBody +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarNegativeButtonStyle +com.github.rahatarmanahmed.cpv.CircularProgressView$5: void onAnimationEnd(android.animation.Animator) +com.turingtechnologies.materialscrollbar.Indicator: int getTextSize() +com.turingtechnologies.materialscrollbar.R$id: int info +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getThunderstormPrecipitationProbability() +com.jaredrummler.android.colorpicker.R$string: int abc_menu_meta_shortcut_label +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.constraintlayout.widget.R$attr: int textLocale +cyanogenmod.app.LiveLockScreenInfo$1: LiveLockScreenInfo$1() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature +okhttp3.internal.cache.CacheInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_3 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +androidx.preference.R$styleable: int ActionBar_subtitleTextStyle +androidx.preference.R$styleable: int SwitchCompat_switchPadding +com.xw.repo.bubbleseekbar.R$dimen: int hint_pressed_alpha_material_light +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginRight +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_deriveConstraintsFrom +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.Observer downstream +androidx.preference.R$attr: int fastScrollHorizontalTrackDrawable +wangdaye.com.geometricweather.R$layout: int design_bottom_navigation_item +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxPlain() +com.google.android.material.R$style: int TextAppearance_AppCompat_Display1 +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_show_thumb_text +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_toolbarStyle +androidx.constraintlayout.widget.R$attr: int minWidth +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type UNKNOWN +androidx.appcompat.R$style: int Widget_AppCompat_Button_Borderless_Colored +androidx.appcompat.R$style: int Widget_AppCompat_CompoundButton_RadioButton +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: void clear() +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +okhttp3.OkHttpClient: int readTimeoutMillis() +okhttp3.internal.http2.Http2Connection: void setSettings(okhttp3.internal.http2.Settings) +com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_pressed +org.greenrobot.greendao.AbstractDaoSession: java.util.Collection getAllDaos() +androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$dimen: int notification_action_text_size +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyle +okhttp3.Dispatcher: boolean promoteAndExecute() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric +wangdaye.com.geometricweather.R$drawable: int weather_sleet_1 +com.github.rahatarmanahmed.cpv.CircularProgressView: int animSyncDuration +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.util.concurrent.atomic.AtomicLong requested +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_body_2_material +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ListView_DropDown +wangdaye.com.geometricweather.R$color: int mtrl_bottom_nav_ripple_color +wangdaye.com.geometricweather.db.entities.LocationEntityDao: LocationEntityDao(org.greenrobot.greendao.internal.DaoConfig) +androidx.swiperefreshlayout.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$attr: int paddingStart +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +okhttp3.Request: java.lang.String method +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +com.google.android.material.R$attr: int limitBoundsTo +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void slideLockscreenIn() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTheme +androidx.constraintlayout.widget.R$integer: int abc_config_activityShortDur +androidx.preference.R$styleable: int AppCompatTheme_homeAsUpIndicator +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: java.lang.String toString() +androidx.appcompat.R$style: int TextAppearance_AppCompat_Button +androidx.constraintlayout.widget.R$attr: int actionModeShareDrawable +cyanogenmod.themes.IThemeService +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: java.lang.String Unit +io.reactivex.internal.disposables.DisposableHelper: boolean trySet(java.util.concurrent.atomic.AtomicReference,io.reactivex.disposables.Disposable) +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory valueOf(java.lang.String) +androidx.appcompat.resources.R$drawable: int notification_bg_low_normal +com.turingtechnologies.materialscrollbar.CustomIndicator: int getIndicatorHeight() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric: int UnitType +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean a(int,java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitationProbability() +com.turingtechnologies.materialscrollbar.R$attr: int toolbarStyle +android.didikee.donate.R$styleable: int AppCompatTheme_colorControlHighlight +com.xw.repo.bubbleseekbar.R$anim: int abc_shrink_fade_out_from_bottom +androidx.constraintlayout.widget.R$style: int Base_AlertDialog_AppCompat +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +retrofit2.RequestFactory$Builder: void parseHttpMethodAndPath(java.lang.String,java.lang.String,boolean) +okhttp3.Cache$CacheResponseBody: Cache$CacheResponseBody(okhttp3.internal.cache.DiskLruCache$Snapshot,java.lang.String,java.lang.String) +cyanogenmod.profiles.LockSettings: boolean mDirty +com.tencent.bugly.proguard.ah: java.lang.String b +com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a a() +androidx.preference.R$color: int switch_thumb_normal_material_light +androidx.vectordrawable.animated.R$id: int action_container +cyanogenmod.weather.WeatherLocation: java.lang.String access$602(cyanogenmod.weather.WeatherLocation,java.lang.String) +cyanogenmod.weatherservice.IWeatherProviderService: void cancelOngoingRequests() +com.turingtechnologies.materialscrollbar.R$attr: int keylines +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags +com.jaredrummler.android.colorpicker.R$attr: int fontFamily +okhttp3.Interceptor$Chain: okhttp3.Connection connection() +retrofit2.Utils: java.lang.Class getRawType(java.lang.reflect.Type) +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runBackfused() +wangdaye.com.geometricweather.R$string: int thunderstorm +androidx.appcompat.R$dimen: int abc_action_bar_stacked_max_height +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleVerticalOffset +com.google.android.material.R$styleable: int Chip_closeIconTint +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analog_dark +android.didikee.donate.R$drawable: int abc_ic_star_black_48dp +com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_swipe_escape_velocity +androidx.constraintlayout.widget.R$id: int title_template +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: java.lang.String LocalizedText +androidx.constraintlayout.widget.R$id: int text2 +io.reactivex.internal.observers.DeferredScalarDisposable: void dispose() +wangdaye.com.geometricweather.R$attr: int shapeAppearanceSmallComponent +wangdaye.com.geometricweather.R$array: int notification_text_color_values +io.reactivex.internal.util.VolatileSizeArrayList: int lastIndexOf(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +com.google.android.material.R$animator: int mtrl_extended_fab_state_list_animator +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$id: int transitionToStart +cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.ICMStatusBarManager sService +okhttp3.internal.http2.Http2Stream$FramingSource: Http2Stream$FramingSource(okhttp3.internal.http2.Http2Stream,long) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String moonPhaseDescription +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActivityChooserView +com.google.android.material.R$styleable: int KeyCycle_android_rotationX +okhttp3.internal.http2.Http2Connection: void pushResetLater(int,okhttp3.internal.http2.ErrorCode) +com.bumptech.glide.integration.okhttp.R$styleable: int[] GradientColor +com.bumptech.glide.integration.okhttp.R$drawable: int notification_icon_background +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_shapeAppearance +androidx.appcompat.R$attr: int imageButtonStyle +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_IME_SWITCHER_VALIDATOR +wangdaye.com.geometricweather.R$string: int translator +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView getTrendItemView() +androidx.preference.R$id: int notification_main_column_container +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed Speed +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int PREDISMISSED_STATE +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light +okhttp3.FormBody$Builder: java.nio.charset.Charset charset +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_iconTintMode +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean,int) +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: AndroidPlatform$AndroidCertificateChainCleaner(java.lang.Object,java.lang.reflect.Method) +androidx.appcompat.R$dimen: int compat_control_corner_material +com.google.android.material.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge +com.turingtechnologies.materialscrollbar.R$styleable: int[] ScrimInsetsFrameLayout +com.turingtechnologies.materialscrollbar.R$integer: int status_bar_notification_info_maxnum +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_vertical_padding +androidx.constraintlayout.widget.R$attr: int colorSwitchThumbNormal +com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_RadioButton +androidx.preference.R$attr: int preferenceScreenStyle +okhttp3.EventListener: void requestBodyStart(okhttp3.Call) +com.google.android.material.R$anim: int abc_tooltip_enter +james.adaptiveicon.R$styleable: int ActivityChooserView_initialActivityCount +okio.BufferedSource: boolean rangeEquals(long,okio.ByteString,int,int) +wangdaye.com.geometricweather.R$style: int Base_DialogWindowTitle_AppCompat +com.google.gson.internal.JsonReaderInternalAccess: com.google.gson.internal.JsonReaderInternalAccess INSTANCE +com.google.android.gms.common.api.Status: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$styleable: int Toolbar_android_minHeight +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder fragment(java.lang.String) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SCATTERED_SNOW_SHOWERS +io.reactivex.Observable: io.reactivex.Observer subscribeWith(io.reactivex.Observer) +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$attr: int listPopupWindowStyle +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTextAppearance(int) +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTimestamp(long) +com.google.android.material.R$styleable: int Chip_chipStrokeWidth +wangdaye.com.geometricweather.R$attr: int materialAlertDialogBodyTextStyle +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_item_min_width +wangdaye.com.geometricweather.R$drawable: int weather_fog +cyanogenmod.externalviews.KeyguardExternalView: android.os.IBinder mService +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle +wangdaye.com.geometricweather.R$id: int expand_activities_button +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$color: int design_fab_stroke_end_outer_color +cyanogenmod.providers.WeatherContract$WeatherColumns: android.net.Uri CURRENT_AND_FORECAST_WEATHER_URI +com.google.android.material.R$drawable: int abc_textfield_default_mtrl_alpha +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_lunar +wangdaye.com.geometricweather.R$color: int foreground_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorAccent +com.google.android.material.chip.ChipGroup: void setOnHierarchyChangeListener(android.view.ViewGroup$OnHierarchyChangeListener) +androidx.core.graphics.drawable.IconCompatParcelizer: androidx.core.graphics.drawable.IconCompat read(androidx.versionedparcelable.VersionedParcel) +com.xw.repo.bubbleseekbar.R$dimen: R$dimen() +com.amap.api.location.AMapLocation: void setNumber(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeWidthFocused +wangdaye.com.geometricweather.R$string: int on +com.jaredrummler.android.colorpicker.R$attr: int switchMinWidth +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_adjustable +cyanogenmod.profiles.RingModeSettings: RingModeSettings(android.os.Parcel) +com.google.android.material.card.MaterialCardView: int getCheckedIconMargin() +androidx.hilt.work.R$styleable: int[] GradientColor +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver INNER_DISPOSED +okhttp3.Cookie: boolean persistent() +wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card +androidx.appcompat.R$attr: int actionOverflowMenuStyle +android.support.v4.os.ResultReceiver: void onReceiveResult(int,android.os.Bundle) +androidx.recyclerview.R$attr: int stackFromEnd +com.google.android.material.textfield.TextInputLayout: com.google.android.material.internal.CheckableImageButton getEndIconToUpdateDummyDrawable() +wangdaye.com.geometricweather.R$styleable: int ListPreference_entryValues +wangdaye.com.geometricweather.R$attr: int autoSizeMinTextSize +com.google.android.material.R$styleable: int ConstraintSet_flow_firstVerticalStyle +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getUnitId() +wangdaye.com.geometricweather.R$dimen: int material_clock_hand_padding +com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_inset_material +androidx.legacy.coreutils.R$dimen: int notification_right_side_padding_top +com.google.android.material.R$attr: int collapsedSize +android.didikee.donate.R$anim: int abc_slide_out_top +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Colored +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemRippleColor(android.content.res.ColorStateList) +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +com.turingtechnologies.materialscrollbar.R$attr: int stackFromEnd +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_image_size +com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyleSmall +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LIVE_LOCK_SCREEN_PREVIEW +androidx.preference.R$styleable: int PreferenceTheme_preferenceTheme +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature Temperature +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_android_switchTextOff +androidx.preference.R$style: int Base_V7_Widget_AppCompat_Toolbar +com.google.android.material.R$dimen: int abc_dialog_padding_top_material +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge +androidx.constraintlayout.widget.R$attr: int drawableTintMode +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Light +james.adaptiveicon.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +com.amap.api.location.AMapLocation: boolean c(com.amap.api.location.AMapLocation,boolean) +james.adaptiveicon.R$id: int action_container +io.reactivex.Observable: io.reactivex.Observable concatMapEagerDelayError(io.reactivex.functions.Function,int,int,boolean) +com.google.android.material.R$drawable: int abc_textfield_search_activated_mtrl_alpha +androidx.appcompat.R$bool +androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_PROVIDER +com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_900 +androidx.customview.R$dimen: int notification_right_icon_size +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: int leftIndex +okhttp3.Call: okhttp3.Call clone() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_verticalAlign +com.google.android.material.slider.RangeSlider: int getFocusedThumbIndex() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: FlowableOnBackpressureLatest$BackpressureLatestSubscriber(org.reactivestreams.Subscriber) +com.google.android.material.R$id: int async +cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationMax() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pressure +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean +androidx.dynamicanimation.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_weightSum +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_CheckedTextView +cyanogenmod.app.CustomTile$ExpandedListItem +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Title_Inverse +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.hilt.work.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.R$id: int dialog_location_help_manageContainer +android.didikee.donate.R$attr: int listPreferredItemPaddingLeft +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$layout: int test_toolbar_surface +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: CircularRevealCoordinatorLayout(android.content.Context,android.util.AttributeSet) +androidx.hilt.work.R$id: int accessibility_custom_action_9 +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat +com.google.android.material.R$styleable: int FloatingActionButton_ensureMinTouchTargetSize +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_weight +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_title +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: boolean isAsync +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableTop +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_TITLE +wangdaye.com.geometricweather.db.entities.AlertEntity: void setCityId(java.lang.String) +wangdaye.com.geometricweather.R$string: int refresh +androidx.core.R$id: int tag_transition_group +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeMinTextSize +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_FixedSize +wangdaye.com.geometricweather.R$id: int item_aqi +okhttp3.internal.ws.RealWebSocket$CancelRunnable: void run() +com.jaredrummler.android.colorpicker.R$dimen: int notification_small_icon_background_padding +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void dispose() +androidx.constraintlayout.widget.R$styleable: int[] Transform +io.reactivex.internal.operators.observable.ObservableReplay$SizeBoundReplayBuffer: void truncate() +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_selectableItemBackground +com.jaredrummler.android.colorpicker.R$styleable: int Preference_enableCopying +okhttp3.internal.ws.RealWebSocket$1: void run() +androidx.hilt.work.R$layout: int custom_dialog +wangdaye.com.geometricweather.R$string: int content_desc_weather_icon_dark +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle +androidx.hilt.R$dimen: int notification_large_icon_height +androidx.lifecycle.extensions.R$id: int async +androidx.preference.R$attr: int indeterminateProgressStyle +androidx.recyclerview.R$styleable: int GradientColorItem_android_offset +androidx.work.R$dimen: int notification_media_narrow_margin +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar +wangdaye.com.geometricweather.R$drawable: int ic_circle_medium +androidx.loader.R$attr: int fontProviderFetchTimeout +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_RatingBar_Indicator +okhttp3.OkHttpClient: java.util.List networkInterceptors() +com.google.android.material.R$styleable: int AppCompatTheme_actionModeBackground +com.tencent.bugly.proguard.am: java.lang.String o +james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogStyle +com.tencent.bugly.crashreport.common.strategy.StrategyBean: long p +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) +android.didikee.donate.R$attr: int paddingBottomNoButtons +androidx.constraintlayout.widget.R$attr: int panelMenuListWidth +com.turingtechnologies.materialscrollbar.R$attr: int backgroundTintMode +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer RIGHT_VALUE +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_android_windowFullscreen +com.xw.repo.bubbleseekbar.R$id: int line3 +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig dailyEntityDaoConfig +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setNo2Desc(java.lang.String) +com.google.android.material.R$color: int material_grey_300 +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingRight +com.google.android.material.R$dimen: int material_timepicker_dialog_buttons_margin_top +com.turingtechnologies.materialscrollbar.R$styleable: int PopupWindow_android_popupAnimationStyle +com.baidu.location.e.h$c: com.baidu.location.e.h$c c +com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior +wangdaye.com.geometricweather.R$string: int icon_content_description +androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context,android.util.AttributeSet) +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: boolean mainDone +com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarTextViewStyle +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind +wangdaye.com.geometricweather.R$layout: int abc_expanded_menu_layout +okhttp3.internal.ws.WebSocketReader: long frameLength +com.google.android.material.R$dimen: int design_snackbar_action_inline_max_width +androidx.lifecycle.SavedStateViewModelFactory: android.app.Application mApplication +androidx.appcompat.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_Underlined +androidx.appcompat.R$attr: int theme +androidx.customview.R$styleable: int GradientColorItem_android_offset +com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: java.util.HashSet a +androidx.appcompat.widget.AppCompatTextView: void setTextClassifier(android.view.textclassifier.TextClassifier) +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_font +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: java.lang.String DESCRIPTOR +com.google.android.material.R$drawable: int abc_item_background_holo_light +androidx.swiperefreshlayout.R$drawable +wangdaye.com.geometricweather.R$array: int live_wallpaper_weather_kind_values +io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable,int) +androidx.preference.R$string: int abc_menu_alt_shortcut_label +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windSpeedStart +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: java.lang.String getValue() +com.tencent.bugly.crashreport.biz.UserInfoBean: java.util.Map s +io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable) +com.tencent.bugly.crashreport.crash.e: java.lang.String b(java.lang.Throwable,int) +androidx.appcompat.R$integer: int status_bar_notification_info_maxnum +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int POWER_OFF_ALARM_STATE +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerComplete() +com.baidu.location.e.m: java.util.List a(org.json.JSONObject,java.lang.String,int) +com.google.android.material.R$style: int Theme_AppCompat_Light_DialogWhenLarge +com.google.android.material.R$attr: int collapsingToolbarLayoutStyle +androidx.lifecycle.ComputableLiveData: void invalidate() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionButton_Overflow +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState +cyanogenmod.app.Profile: cyanogenmod.profiles.RingModeSettings mRingMode +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_ActionBar +cyanogenmod.weather.WeatherInfo: double getHumidity() +wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayDetailsWidgetConfigActivity: Hilt_ClockDayDetailsWidgetConfigActivity() +com.turingtechnologies.materialscrollbar.R$attr: int lastBaselineToBottomHeight +androidx.preference.R$styleable: int AppCompatTheme_buttonStyleSmall +okhttp3.internal.connection.RouteSelector: java.util.List proxies +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +wangdaye.com.geometricweather.R$string: int feedback_resident_location +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionBarOverlay +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_max +androidx.viewpager.R$id: int action_divider +androidx.preference.R$attr: int disableDependentsState +okio.Pipe: Pipe(long) +com.bumptech.glide.integration.okhttp.R$layout: int notification_template_part_time +androidx.preference.R$color: int bright_foreground_inverse_material_light +okhttp3.Cache$CacheRequestImpl: okio.Sink cacheOut +wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String type +wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundNormalUpdateService: ForegroundNormalUpdateService() +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetEnd +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_switchTextOff +com.github.rahatarmanahmed.cpv.R$integer: R$integer() +com.xw.repo.bubbleseekbar.R$drawable +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline4 +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeSpinner +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator PEOPLE_LOOKUP_PROVIDER_VALIDATOR +com.google.gson.stream.JsonScope: int NONEMPTY_OBJECT +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void cleanup() +wangdaye.com.geometricweather.R$layout: int abc_action_mode_bar +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderPackage +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +okhttp3.Cache$Entry: okhttp3.Response response(okhttp3.internal.cache.DiskLruCache$Snapshot) +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg +androidx.appcompat.widget.Toolbar: void setCollapseIcon(android.graphics.drawable.Drawable) +okhttp3.CacheControl: boolean onlyIfCached() +com.google.android.material.R$dimen: int abc_edit_text_inset_horizontal_material +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean,int,int) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: boolean mObserving +cyanogenmod.app.PartnerInterface: cyanogenmod.app.PartnerInterface getInstance(android.content.Context) +android.didikee.donate.R$style: int Widget_AppCompat_CompoundButton_RadioButton +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_CollapsingToolbar +com.google.android.material.R$style: int Widget_Design_NavigationView +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_srcCompat +androidx.appcompat.R$string: int abc_searchview_description_clear +androidx.appcompat.R$styleable: int ActionBar_progressBarStyle +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SeekBar +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_58 +com.bumptech.glide.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.R$dimen: int hint_pressed_alpha_material_light +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback +retrofit2.Utils: java.lang.RuntimeException parameterError(java.lang.reflect.Method,java.lang.Throwable,int,java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cuv +androidx.core.R$style: int TextAppearance_Compat_Notification_Info +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Info +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean outputFused +com.google.gson.stream.JsonReader: int NUMBER_CHAR_NONE +com.amap.api.location.UmidtokenInfo: java.lang.String b +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonStyleSmall +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: int requestFusion(int) +com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_Dialog +android.didikee.donate.R$color: int abc_primary_text_material_light +androidx.swiperefreshlayout.R$dimen: int notification_large_icon_height +com.google.gson.FieldNamingPolicy$1: java.lang.String translateName(java.lang.reflect.Field) +androidx.activity.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior: AppBarLayout$ScrollingViewBehavior(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: AtmoAuraQAResult$Advice() +james.adaptiveicon.R$attr: int alphabeticModifiers +androidx.preference.R$styleable: int PreferenceTheme_preferenceStyle +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_enabled +androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_PROVIDER_WITH_EVENT +cyanogenmod.externalviews.KeyguardExternalView$11: float val$swipeProgress +com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(java.lang.Object,java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ProgressBar +okhttp3.ConnectionSpec: java.lang.String toString() +james.adaptiveicon.R$bool: R$bool() +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean done +com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.tabs.TabLayout$Tab getTab() +com.google.android.material.R$layout: int mtrl_picker_actions +wangdaye.com.geometricweather.R$id: int material_hour_text_input +wangdaye.com.geometricweather.R$color: int design_fab_stroke_top_outer_color +wangdaye.com.geometricweather.R$string: int wind +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endColor +androidx.appcompat.R$attr: int dividerHorizontal +androidx.preference.R$styleable: int[] ActionBarLayout +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_enterFadeDuration +wangdaye.com.geometricweather.R$style: int Widget_Design_NavigationView +android.didikee.donate.R$styleable: int ViewBackgroundHelper_android_background +androidx.appcompat.R$style: int Base_V28_Theme_AppCompat_Light +cyanogenmod.app.CMTelephonyManager: void setDefaultSmsSub(int) +com.google.android.material.R$dimen: int fastscroll_margin +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetRight +androidx.appcompat.R$attr: int tickMarkTint +com.google.android.material.R$attr: int colorOnPrimary +cyanogenmod.weatherservice.WeatherProviderService: android.os.Handler access$000(cyanogenmod.weatherservice.WeatherProviderService) +okhttp3.Protocol: okhttp3.Protocol HTTP_1_0 +androidx.appcompat.widget.Toolbar: int getCurrentContentInsetStart() +com.google.android.material.chip.ChipGroup: void setSingleSelection(int) +retrofit2.Platform$Android +wangdaye.com.geometricweather.db.entities.LocationEntityDao +wangdaye.com.geometricweather.R$drawable: int notif_temp_110 +wangdaye.com.geometricweather.R$style: int Theme_Design +android.didikee.donate.R$styleable: int AppCompatTheme_actionMenuTextColor +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onPanelClosed(int,android.view.Menu) +androidx.preference.R$styleable: int Preference_iconSpaceReserved +androidx.appcompat.widget.ActionBarOverlayLayout: void setUiOptions(int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Metric +androidx.appcompat.widget.SwitchCompat: void setThumbPosition(float) +wangdaye.com.geometricweather.R$attr: int navigationViewStyle +wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_dark +com.google.android.material.R$attr: int gapBetweenBars +com.google.android.material.internal.ParcelableSparseIntArray +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowDx +wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotation +com.google.android.material.R$styleable: int AppCompatTheme_alertDialogStyle +com.google.android.material.R$color: int design_dark_default_color_secondary +com.xw.repo.bubbleseekbar.R$id: int home +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType TransactionCallable +com.google.android.material.textfield.TextInputLayout: void setStartIconContentDescription(java.lang.CharSequence) +android.didikee.donate.R$styleable: int ActionBar_backgroundStacked +james.adaptiveicon.R$drawable: int abc_btn_radio_material +androidx.preference.R$id: int dialog_button +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias +com.jaredrummler.android.colorpicker.R$attr: int hideOnContentScroll +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: void run() +androidx.activity.R$layout: int notification_action +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.Window mWindow +androidx.work.R$drawable: R$drawable() +okio.ByteString: okio.ByteString encodeString(java.lang.String,java.nio.charset.Charset) +com.turingtechnologies.materialscrollbar.R$attr: int expanded +wangdaye.com.geometricweather.R$drawable: int notif_temp_86 +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo build() +com.google.android.material.R$attr: int paddingBottomSystemWindowInsets +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_longpressed_holo +com.bumptech.glide.integration.okhttp.R$style: R$style() +com.google.android.material.R$styleable: int Variant_constraints +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Text +com.google.android.material.R$drawable: int abc_text_select_handle_middle_mtrl_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.lang.String pubTime +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline Headline +com.google.android.material.slider.Slider: void setTickVisible(boolean) +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionButtonStyle +androidx.swiperefreshlayout.R$styleable: int[] GradientColorItem +androidx.hilt.R$id: int normal +com.tencent.bugly.proguard.z: byte[] a(int) +androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +com.google.android.material.R$id: int dialog_button +com.turingtechnologies.materialscrollbar.R$string: int hide_bottom_view_on_scroll_behavior +okio.Segment: okio.Segment unsharedCopy() +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean checkTerminated(boolean,boolean,org.reactivestreams.Subscriber) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Title +okio.Okio: okio.Sink sink(java.net.Socket) +com.google.android.gms.auth.api.signin.GoogleSignInAccount +wangdaye.com.geometricweather.R$id: int decor_content_parent +wangdaye.com.geometricweather.R$id: int activity_widget_config_cardAlphaSeekBar +androidx.work.OverwritingInputMerger: OverwritingInputMerger() +com.google.android.material.R$drawable: int abc_ic_star_black_36dp +okhttp3.internal.Util: okio.ByteString UTF_32_BE_BOM +io.reactivex.internal.observers.ForEachWhileObserver: long serialVersionUID +androidx.hilt.R$id: int actions +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: AccuDailyResult$DailyForecasts$Temperature$Minimum() +okhttp3.internal.connection.RealConnection$1: RealConnection$1(okhttp3.internal.connection.RealConnection,boolean,okio.BufferedSource,okio.BufferedSink,okhttp3.internal.connection.StreamAllocation) +cyanogenmod.externalviews.KeyguardExternalView: void binderDied() +androidx.viewpager.R$dimen: int notification_top_pad +androidx.constraintlayout.widget.R$attr: int dragDirection +com.tencent.bugly.proguard.j: void a(byte[],int) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintGuide_begin +androidx.preference.R$dimen: int abc_list_item_height_small_material +wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_MaterialAlertDialog +cyanogenmod.profiles.LockSettings: int describeContents() +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: AccuLocationResult$GeoPosition$Elevation$Imperial() +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_menuCategory +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: java.lang.String getNewX() +androidx.appcompat.R$styleable: int FontFamilyFont_android_ttcIndex +android.support.v4.app.INotificationSideChannel$Default: void cancelAll(java.lang.String) +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_NoActionBar +cyanogenmod.weather.RequestInfo: java.lang.String access$302(cyanogenmod.weather.RequestInfo,java.lang.String) +wangdaye.com.geometricweather.R$id: int graph +wangdaye.com.geometricweather.R$attr: int bottomNavigationStyle +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onComplete() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindChillTemperature(java.lang.Integer) +androidx.appcompat.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +androidx.appcompat.R$attr: int titleMarginEnd +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.util.Date getDate() +androidx.constraintlayout.widget.R$attr: int contentDescription +cyanogenmod.app.IPartnerInterface$Stub$Proxy: void reboot() +com.jaredrummler.android.colorpicker.R$color: int material_grey_600 +com.xw.repo.bubbleseekbar.R$color: int material_deep_teal_200 +androidx.constraintlayout.widget.R$styleable: int[] TextAppearance +com.turingtechnologies.materialscrollbar.DragScrollBar: DragScrollBar(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$attr: int actionBarStyle +com.tencent.bugly.proguard.ak: com.tencent.bugly.proguard.ah x +com.tencent.bugly.proguard.ak: java.lang.String e +com.amap.api.location.AMapLocation: int TRUSTED_LEVEL_BAD +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_summaryOff +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_Snackbar +androidx.appcompat.R$id: int line3 +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_dropDownWidth +androidx.constraintlayout.widget.R$attr: int actionMenuTextColor +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_day_of_week +com.google.android.material.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$id: int action_context_bar +androidx.constraintlayout.widget.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintEnabled +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Runnable actual +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_setBtn +okhttp3.HttpUrl: java.net.URL url() +androidx.fragment.R$id: int title +androidx.preference.R$styleable: int ActionBar_elevation +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleDrawable +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_barLength +com.jaredrummler.android.colorpicker.R$color: int material_grey_100 +androidx.preference.R$styleable: int Preference_icon +cyanogenmod.hardware.ThermalListenerCallback$State: int STATE_WARM_RISING +com.google.android.material.R$styleable: int LinearLayoutCompat_showDividers +androidx.appcompat.R$style: int Widget_AppCompat_Light_PopupMenu +com.tencent.bugly.proguard.r: r() +com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.shape.ShapeAppearanceModel getShapeAppearanceModel() +com.turingtechnologies.materialscrollbar.R$attr: int chipIconSize +okio.Buffer: void skip(long) +cyanogenmod.weatherservice.ServiceRequestResult$1: java.lang.Object createFromParcel(android.os.Parcel) +com.google.android.material.internal.FlowLayout +james.adaptiveicon.R$attr: int actionBarPopupTheme +cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_SLEEP_ON_RELEASE +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver +com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_fast_out_linear_in +okhttp3.internal.cache.DiskLruCache: java.lang.String JOURNAL_FILE_BACKUP +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_TEMPERATURE_MODE_VALIDATOR +retrofit2.http.Headers +com.xw.repo.bubbleseekbar.R$attr: int buttonStyle +androidx.recyclerview.R$attr: int fastScrollVerticalThumbDrawable +com.tencent.bugly.crashreport.crash.e: int j +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int DialogPreference_negativeButtonText +wangdaye.com.geometricweather.R$id: int dialog_adaptive_icon_icon +com.google.android.material.R$attr: int boxCornerRadiusTopStart +com.google.android.material.R$attr: int shapeAppearanceMediumComponent +james.adaptiveicon.R$styleable: int AppCompatTheme_editTextColor +com.google.android.material.R$styleable: int NavigationView_headerLayout +io.reactivex.internal.util.VolatileSizeArrayList: java.util.Iterator iterator() +android.didikee.donate.R$dimen: int abc_dialog_list_padding_top_no_title +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State INITIALIZED +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_26 +okhttp3.internal.Util: java.nio.charset.Charset UTF_8 +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType[] a +androidx.preference.R$anim: int abc_slide_out_bottom +com.tencent.bugly.proguard.p: void a(java.util.List) +androidx.preference.R$style: int Widget_AppCompat_CompoundButton_CheckBox +okhttp3.HttpUrl: void percentDecode(okio.Buffer,java.lang.String,int,int,boolean) com.xw.repo.bubbleseekbar.R$id: int action_container -com.google.android.gms.location.LocationAvailability -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onAttachedToWindow() -androidx.recyclerview.R$dimen: int notification_right_icon_size -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorHeight -cyanogenmod.app.LiveLockScreenInfo$Builder: android.content.ComponentName mComponent -cyanogenmod.providers.CMSettings$Secure: java.lang.String ADVANCED_MODE -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void setShouldHandleInJava(boolean) -androidx.appcompat.resources.R$id: int action_image -com.amap.api.location.AMapLocation: java.lang.String p(com.amap.api.location.AMapLocation,java.lang.String) -com.turingtechnologies.materialscrollbar.R$string: int abc_activitychooserview_choose_application -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationY -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void drain() -com.jaredrummler.android.colorpicker.R$style: int Platform_V21_AppCompat -wangdaye.com.geometricweather.R$id: int activity_weather_daily_toolbar -com.google.android.material.R$color: int design_default_color_primary_dark -wangdaye.com.geometricweather.R$styleable: int Preference_android_dependency -android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -androidx.fragment.R$dimen: int notification_action_icon_size -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy valueOf(java.lang.String) -com.google.android.material.snackbar.SnackbarContentLayout: void setMaxInlineActionWidth(int) -cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.os.Bundle mOptions -io.reactivex.internal.observers.BlockingObserver: BlockingObserver(java.util.Queue) -androidx.constraintlayout.widget.R$styleable: int Constraint_android_rotationY -com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_swipe_escape_velocity -androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_weight -androidx.preference.R$layout: int abc_screen_toolbar -com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_alphaChannelText -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetLeft -com.xw.repo.bubbleseekbar.R$attr: int defaultQueryHint -androidx.viewpager2.R$id: int tag_transition_group -okio.RealBufferedSink: okio.BufferedSink writeIntLe(int) -com.turingtechnologies.materialscrollbar.R$attr: int state_lifted -io.reactivex.Observable: Observable() -com.xw.repo.bubbleseekbar.R$color: int button_material_dark -android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -james.adaptiveicon.R$style: int TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_prompt -com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Indeterminate -com.turingtechnologies.materialscrollbar.R$attr: int colorControlNormal -com.amap.api.location.AMapLocation: int f(com.amap.api.location.AMapLocation,int) -wangdaye.com.geometricweather.R$id: int mtrl_picker_header_title_and_selection -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy IDENTITY -io.reactivex.Observable: io.reactivex.Single count() -androidx.constraintlayout.widget.R$styleable: int MenuItem_android_titleCondensed -io.reactivex.exceptions.CompositeException: void printStackTrace(java.io.PrintStream) -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dialog -com.google.android.material.transformation.ExpandableBehavior -com.google.android.material.R$drawable: int abc_list_selector_background_transition_holo_light -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_corner -androidx.constraintlayout.widget.R$attr: int flow_horizontalBias -androidx.preference.R$styleable: int MenuItem_android_icon -androidx.appcompat.R$attr: int titleTextAppearance -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Id -androidx.constraintlayout.widget.R$id: int easeIn -wangdaye.com.geometricweather.R$attr: int colorSurface -androidx.preference.R$style: int Base_V22_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$animator: int weather_rain_1 -androidx.fragment.R$dimen: int notification_action_text_size -com.jaredrummler.android.colorpicker.R$attr: int controlBackground -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX -wangdaye.com.geometricweather.R$color: int mtrl_chip_text_color -androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat -retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isResult -james.adaptiveicon.R$style: int Widget_AppCompat_DrawerArrowToggle -androidx.preference.R$attr: int arrowShaftLength -androidx.appcompat.widget.SearchView: void setInputType(int) -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setFillColor(int) -androidx.customview.R$styleable: int FontFamily_fontProviderFetchTimeout -com.google.android.material.R$styleable: int Constraint_android_layout_marginLeft -androidx.work.impl.workers.CombineContinuationsWorker: CombineContinuationsWorker(android.content.Context,androidx.work.WorkerParameters) -android.didikee.donate.R$dimen: int notification_action_text_size -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getLastThemeChangeTime -com.xw.repo.BubbleSeekBar -androidx.core.R$id: int accessibility_custom_action_27 -androidx.recyclerview.R$id: int action_container -com.google.android.material.R$color: int mtrl_btn_ripple_color -wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_collapsed -com.google.android.material.R$drawable: int ic_mtrl_chip_checked_black -com.google.gson.LongSerializationPolicy: com.google.gson.JsonElement serialize(java.lang.Long) -com.turingtechnologies.materialscrollbar.R$attr: int alertDialogStyle -android.didikee.donate.R$color: int abc_primary_text_material_dark -androidx.preference.PreferenceFragmentCompat: PreferenceFragmentCompat() -androidx.legacy.coreutils.R$styleable: int[] FontFamily -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String MinutesText -com.bumptech.glide.R$id: int text2 -wangdaye.com.geometricweather.R$styleable: int MotionLayout_currentState -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_scaleY -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherText -com.tencent.bugly.proguard.y$a: boolean a() -okio.Base64: byte[] decode(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customStringValue -okhttp3.internal.http2.Header: okio.ByteString name -com.google.android.material.R$color: int primary_material_dark -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_126 -okhttp3.OkHttpClient: okhttp3.OkHttpClient$Builder newBuilder() -androidx.coordinatorlayout.R$id: int forever -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Time -androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontVariationSettings -com.google.android.material.R$id: int right -androidx.appcompat.R$attr: int actionLayout -androidx.hilt.work.R$id: int action_container -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_saveFlags -cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_cpuBoost_0 -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView_DropDown -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider valueOf(java.lang.String) -androidx.appcompat.widget.ActionBarOverlayLayout: void setHideOnContentScrollEnabled(boolean) -androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModelStore mViewModelStore -wangdaye.com.geometricweather.R$string: int wind_5 -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_checkedTextViewStyle -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: InkPageIndicator(android.content.Context,android.util.AttributeSet) -com.google.android.material.textfield.TextInputLayout: void setBoxStrokeColorStateList(android.content.res.ColorStateList) -okio.ForwardingTimeout: okio.Timeout clearDeadline() -androidx.lifecycle.ProcessLifecycleOwner: ProcessLifecycleOwner() -androidx.constraintlayout.widget.R$attr: int customPixelDimension -wangdaye.com.geometricweather.R$attr: int checkBoxPreferenceStyle -androidx.appcompat.R$layout: int abc_activity_chooser_view -androidx.constraintlayout.widget.R$styleable: int Layout_chainUseRtl -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String getCardName(android.content.Context) -androidx.activity.R$styleable: int FontFamily_fontProviderFetchStrategy -com.google.android.material.R$styleable: int CompoundButton_android_button -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalStyle -androidx.hilt.work.R$styleable: int GradientColorItem_android_offset -com.google.android.material.slider.BaseSlider: void setValues(java.lang.Float[]) -androidx.hilt.work.R$styleable: int GradientColor_android_endY -cyanogenmod.externalviews.ExternalViewProperties: int mWidth -wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation RIGHT -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice -okhttp3.internal.ws.WebSocketWriter$FrameSink: void flush() -wangdaye.com.geometricweather.R$styleable: int[] CoordinatorLayout -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.github.rahatarmanahmed.cpv.R$dimen -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String defenseIcon -wangdaye.com.geometricweather.R$id: int snackbar_action -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -com.google.android.material.R$interpolator: int mtrl_fast_out_slow_in -com.google.android.material.R$styleable: int RecyclerView_android_orientation -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_popupTheme -wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format -okhttp3.Route -com.google.android.material.textfield.MaterialAutoCompleteTextView: void setAdapter(android.widget.ListAdapter) -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen -androidx.constraintlayout.utils.widget.ImageFilterButton: void setOverlay(boolean) -android.didikee.donate.R$attr: int textAppearanceLargePopupMenu -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: java.util.concurrent.atomic.AtomicReference upstream -androidx.preference.R$styleable: int Preference_enabled -android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_Solid -okhttp3.internal.cache.CacheStrategy$Factory: long nowMillis -android.didikee.donate.R$styleable: int[] Spinner -io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void setCancellable(io.reactivex.functions.Cancellable) -wangdaye.com.geometricweather.R$attr: int layout_optimizationLevel -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date sunriseTime -androidx.appcompat.R$attr: int colorControlHighlight -okhttp3.internal.ws.RealWebSocket: void writePingFrame() -androidx.preference.R$attr: int contentDescription -okhttp3.internal.connection.RealConnection: void establishProtocol(okhttp3.internal.connection.ConnectionSpecSelector,int,okhttp3.Call,okhttp3.EventListener) -okhttp3.Dispatcher: Dispatcher() -androidx.transition.R$dimen: int compat_notification_large_icon_max_height -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_width -james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarStyle -wangdaye.com.geometricweather.R$id: int activity_widget_config_doneButton -com.google.android.material.R$string: int mtrl_chip_close_icon_content_description -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_GPS -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_unRegisterThermalListener -com.google.android.material.slider.BaseSlider -cyanogenmod.externalviews.KeyguardExternalView$5: cyanogenmod.externalviews.KeyguardExternalView this$0 -wangdaye.com.geometricweather.R$anim: int design_snackbar_out -wangdaye.com.geometricweather.R$attr: int expandedTitleMarginTop -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setWeather(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Metric Metric -io.reactivex.internal.subscribers.StrictSubscriber: void cancel() -androidx.appcompat.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 -com.google.gson.stream.JsonWriter: void flush() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onComplete() -wangdaye.com.geometricweather.R$string: int key_forecast_tomorrow_time -wangdaye.com.geometricweather.R$dimen: int abc_control_padding_material -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao -retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onComplete() -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toEndOf -androidx.constraintlayout.widget.R$attr: int firstBaselineToTopHeight -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$Event downEvent(androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CardView -cyanogenmod.providers.CMSettings$Global: java.lang.String WIFI_AUTO_PRIORITIES_CONFIGURATION -io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.fuseable.SimpleQueue queue() -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDefaultPhoneSub -okhttp3.RequestBody$2 -com.google.android.material.R$drawable: int design_snackbar_background -com.turingtechnologies.materialscrollbar.R$color: int abc_search_url_text_selected -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long readKey(android.database.Cursor,int) -com.amap.api.location.APSService: boolean c -wangdaye.com.geometricweather.R$attr: int reverseLayout -androidx.constraintlayout.widget.Guideline -wangdaye.com.geometricweather.R$layout: int abc_alert_dialog_button_bar_material -wangdaye.com.geometricweather.R$id: int month_navigation_fragment_toggle -wangdaye.com.geometricweather.R$id: int always -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void cancelAll() -com.turingtechnologies.materialscrollbar.R$attr: int itemTextColor -wangdaye.com.geometricweather.R$string: int tag_uv -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3 -com.google.android.material.R$dimen: int mtrl_btn_padding_top -androidx.appcompat.R$styleable: int AlertDialog_buttonPanelSideLayout -androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut -androidx.lifecycle.extensions.R$layout: R$layout() -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_1 -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analog_dark -androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityPreCreated(android.app.Activity,android.os.Bundle) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_homeAsUpIndicator -androidx.constraintlayout.widget.R$styleable: int MotionLayout_currentState -com.google.android.material.datepicker.SingleDateSelector -retrofit2.adapter.rxjava2.CallEnqueueObservable: CallEnqueueObservable(retrofit2.Call) -com.google.android.material.R$id: int staticPostLayout -com.google.android.material.R$id: int linear -wangdaye.com.geometricweather.R$attr: int itemSpacing -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getNo2Desc() -wangdaye.com.geometricweather.R$xml: int widget_trend_daily -com.turingtechnologies.materialscrollbar.R$attr: int collapsedTitleGravity -com.google.android.material.card.MaterialCardView: void setCardElevation(float) -wangdaye.com.geometricweather.R$string: int common_open_on_phone -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int PrecipitationProbability -com.turingtechnologies.materialscrollbar.R$attr: int hintEnabled -androidx.vectordrawable.R$styleable: int ColorStateListItem_alpha -com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_constantSize -okhttp3.MultipartBody$Part: okhttp3.Headers headers() -com.bumptech.glide.integration.okhttp.R$styleable: int GradientColorItem_android_offset -okhttp3.OkHttpClient: javax.net.SocketFactory socketFactory -com.google.android.material.R$color: int cardview_shadow_end_color -wangdaye.com.geometricweather.R$attr: int flow_verticalAlign -com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context,android.util.AttributeSet) -com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_SIGN -okhttp3.internal.http2.Http2Reader: void readPing(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory getInstance(android.app.Application) -retrofit2.ParameterHandler$HeaderMap: void apply(retrofit2.RequestBuilder,java.util.Map) -androidx.loader.R$styleable: int FontFamily_fontProviderFetchStrategy -io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_Icon -james.adaptiveicon.R$styleable: int SearchView_searchHintIcon -wangdaye.com.geometricweather.R$string: int key_notification_color -com.tencent.bugly.crashreport.CrashReport: void putUserData(android.content.Context,java.lang.String,java.lang.String) -androidx.appcompat.R$styleable: int AppCompatTextView_drawableRightCompat -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Dialog_MinWidth -androidx.viewpager2.R$styleable: int GradientColor_android_type -com.amap.api.location.AMapLocation: double u -cyanogenmod.externalviews.ExternalViewProperties: android.view.View mView -com.google.android.material.R$styleable: int MaterialCardView_cardForegroundColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() -androidx.hilt.R$id: int tag_accessibility_actions -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Badge -com.xw.repo.bubbleseekbar.R$attr: int font -okhttp3.Cache$2: void remove() -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_elevation -com.google.android.material.R$attr: int actionButtonStyle +com.google.android.material.R$dimen: int mtrl_shape_corner_size_small_component +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_w +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: MoonPhase(java.lang.Integer,java.lang.String) +okhttp3.internal.Util: int skipTrailingAsciiWhitespace(java.lang.String,int,int) +wangdaye.com.geometricweather.R$style: int Preference_PreferenceScreen_Material +okio.BufferedSink: okio.BufferedSink writeShortLe(int) +io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String,int) +androidx.lifecycle.SavedStateViewModelFactory: java.lang.reflect.Constructor findMatchingConstructor(java.lang.Class,java.lang.Class[]) +com.google.android.material.R$style: int Animation_Design_BottomSheetDialog +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property CurrentPosition +androidx.viewpager2.R$dimen: int notification_subtext_size +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +io.reactivex.Observable: io.reactivex.Observable switchOnNext(io.reactivex.ObservableSource,int) +com.xw.repo.bubbleseekbar.R$layout: int abc_action_mode_close_item_material +wangdaye.com.geometricweather.R$string: int wind_1 +com.github.rahatarmanahmed.cpv.CircularProgressView$2: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +com.tencent.bugly.proguard.ad: byte[] b(byte[]) +okhttp3.internal.http2.Huffman: byte[] decode(byte[]) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService get() +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_8 +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: boolean isDisposed() +okhttp3.internal.Version: java.lang.String userAgent() +com.google.android.material.R$styleable: int Toolbar_collapseIcon +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.R$drawable: int abc_action_bar_item_background_material +cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings() +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerY +wangdaye.com.geometricweather.R$dimen: int spinner_drop_width +cyanogenmod.themes.ThemeManager: void removeClient(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +androidx.preference.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +com.google.android.material.R$drawable: int design_fab_background +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$200() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_checkedTextViewStyle +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onError(java.lang.Throwable) +androidx.preference.R$style: int Theme_AppCompat_DialogWhenLarge +org.greenrobot.greendao.AbstractDao: java.lang.Object getKeyVerified(java.lang.Object) +androidx.loader.R$id: int text +cyanogenmod.providers.ThemesContract$PreviewColumns: android.net.Uri COMPONENTS_URI +com.amap.api.fence.GeoFenceManagerBase +wangdaye.com.geometricweather.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.R$id: int autoCompleteToEnd +androidx.viewpager.R$id: int blocking +androidx.constraintlayout.widget.R$attr: int autoSizeMinTextSize +androidx.recyclerview.R$id: int icon_group +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.appcompat.widget.AppCompatRadioButton +androidx.legacy.coreutils.R$dimen: int compat_button_inset_horizontal_material +androidx.lifecycle.ProcessLifecycleOwner: void activityPaused() +com.jaredrummler.android.colorpicker.R$attr: int windowMinWidthMajor +androidx.constraintlayout.widget.R$attr: int titleTextStyle +okhttp3.internal.ws.RealWebSocket$PingRunnable: void run() +wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_light +android.didikee.donate.R$styleable: int AppCompatTheme_popupMenuStyle +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void onComplete() +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long REQUEST_MASK +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody: RequestBuilder$ContentTypeOverridingRequestBody(okhttp3.RequestBody,okhttp3.MediaType) +wangdaye.com.geometricweather.R$attr: int initialActivityCount +androidx.constraintlayout.motion.widget.MotionLayout: float getTargetPosition() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: long EpochSet +androidx.appcompat.R$id: int up +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.bumptech.glide.R$id: int tag_transition_group +okhttp3.internal.http2.Header$Listener +com.google.android.material.R$attr: int windowFixedWidthMajor +okhttp3.HttpUrl: java.net.URI uri() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6 +com.jaredrummler.android.colorpicker.R$layout: int cpv_dialog_color_picker +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.ChineseCityEntity,long) +com.xw.repo.bubbleseekbar.R$attr: int listChoiceBackgroundIndicator +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +wangdaye.com.geometricweather.R$styleable: int ArcProgress_max +androidx.constraintlayout.widget.R$dimen: int abc_seekbar_track_background_height_material +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: boolean cancelled +wangdaye.com.geometricweather.R$string: int next +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean isDisposed() +android.didikee.donate.R$dimen: int abc_cascading_menus_min_smallest_width +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_arrowShaftLength +androidx.preference.R$bool: int abc_action_bar_embed_tabs +android.didikee.donate.R$attr: int showTitle +com.jaredrummler.android.colorpicker.R$bool: int abc_action_bar_embed_tabs +cyanogenmod.app.Profile$1: Profile$1() +androidx.work.R$style: int TextAppearance_Compat_Notification +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_color +retrofit2.OkHttpCall$ExceptionCatchingResponseBody$1: long read(okio.Buffer,long) +cyanogenmod.providers.CMSettings$Global: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) +android.didikee.donate.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setIndices(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX) +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableItem_android_drawable +wangdaye.com.geometricweather.R$dimen: int design_snackbar_action_text_color_alpha +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String zh_TW +com.google.android.material.R$style: int Base_V26_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_range_start +okhttp3.Connection +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: Pollen(java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String,java.lang.Integer,java.lang.Integer,java.lang.String) +com.xw.repo.bubbleseekbar.R$string: int abc_activity_chooser_view_see_all +okhttp3.logging.LoggingEventListener: LoggingEventListener(okhttp3.logging.HttpLoggingInterceptor$Logger,okhttp3.logging.LoggingEventListener$1) +androidx.preference.R$attr: int selectable +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintBaseline_creator +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_Bridge +com.bumptech.glide.R$style: int Widget_Compat_NotificationActionContainer +com.jaredrummler.android.colorpicker.R$string: int abc_menu_function_shortcut_label +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_alpha +cyanogenmod.providers.CMSettings$System: java.lang.String PEOPLE_LOOKUP_PROVIDER +androidx.lifecycle.LifecycleRegistry: void pushParentState(androidx.lifecycle.Lifecycle$State) +androidx.preference.R$styleable: int SwitchCompat_thumbTint +android.didikee.donate.R$style: int TextAppearance_AppCompat_Small +okhttp3.CipherSuite: java.util.Map INSTANCES +wangdaye.com.geometricweather.R$attr: int tabSelectedTextColor +com.turingtechnologies.materialscrollbar.R$attr: int title +okhttp3.RealCall: okio.AsyncTimeout timeout +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: java.lang.String Unit +okhttp3.Request: okhttp3.Request$Builder newBuilder() +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: ObservableMergeWithCompletable$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver) +androidx.viewpager2.R$id: int notification_background +wangdaye.com.geometricweather.R$id: int transition_scene_layoutid_cache +com.github.rahatarmanahmed.cpv.CircularProgressView: int thickness +androidx.lifecycle.ViewModel: java.lang.Object getTag(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_title +io.reactivex.Observable: io.reactivex.Observable skipLast(long,java.util.concurrent.TimeUnit) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: boolean done +okio.Buffer: okio.ByteString hmacSha512(okio.ByteString) +cyanogenmod.app.Profile$LockMode: int DISABLE +com.tencent.bugly.proguard.i +com.turingtechnologies.materialscrollbar.R$integer: int show_password_duration +wangdaye.com.geometricweather.R$id: int listMode +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum Minimum +wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundTodayForecastUpdateService: Hilt_ForegroundTodayForecastUpdateService() +cyanogenmod.app.LiveLockScreenInfo$Builder +cyanogenmod.externalviews.KeyguardExternalView: boolean onPreDraw() +com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Title +androidx.preference.R$styleable: int CheckBoxPreference_summaryOff +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_toRightOf +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableEndCompat +androidx.appcompat.R$attr: int listChoiceIndicatorSingleAnimated +com.tencent.bugly.crashreport.crash.d: com.tencent.bugly.crashreport.common.info.a c +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void request(long) +okhttp3.internal.http1.Http1Codec$AbstractSource: okio.Timeout timeout() +com.tencent.bugly.crashreport.CrashReport: void closeNativeReport() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_113 +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: int getMarginTop() +androidx.preference.R$attr: int popupWindowStyle +com.google.android.material.R$drawable: int abc_ic_menu_cut_mtrl_alpha +retrofit2.OkHttpCall +wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean hasKey(java.lang.Object) +okhttp3.internal.ws.RealWebSocket: long queueSize +com.amap.api.location.AMapLocation: java.lang.String getErrorInfo() +wangdaye.com.geometricweather.R$attr: int bsb_rtl +com.amap.api.fence.GeoFence: boolean isAble() +com.amap.api.location.AMapLocation: void setAdCode(java.lang.String) +wangdaye.com.geometricweather.R$id: int action_mode_bar +okhttp3.EventListener: void connectEnd(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol) +com.xw.repo.bubbleseekbar.R$attr: int searchViewStyle +androidx.appcompat.R$id: int action_mode_bar_stub +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void drain() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getCeiling() +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context) +com.google.android.material.R$attr: int materialCalendarHeaderToggleButton +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +androidx.preference.R$drawable: int abc_ratingbar_indicator_material +com.google.android.material.R$styleable: int TabLayout_tabIconTintMode +androidx.appcompat.widget.AppCompatTextView: void setTextMetricsParamsCompat(androidx.core.text.PrecomputedTextCompat$Params) +com.google.android.material.R$styleable: int Constraint_layout_constraintBaseline_toBaselineOf +okhttp3.Request: okhttp3.HttpUrl url() +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Centered +com.bumptech.glide.integration.okhttp.R$attr: int alpha +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_percent +wangdaye.com.geometricweather.R$styleable: int ArcProgress_progress_width +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onSuccess(java.lang.Object) +androidx.constraintlayout.widget.VirtualLayout: VirtualLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX aqi +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.Observer downstream +retrofit2.BuiltInConverters$StreamingResponseBodyConverter: BuiltInConverters$StreamingResponseBodyConverter() +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.R$string: int settings_title_daily_trend_display +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long readKey(android.database.Cursor,int) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_singleLine +androidx.viewpager.R$dimen: int compat_notification_large_icon_max_width +androidx.appcompat.R$attr: int hideOnContentScroll +com.google.android.material.R$dimen: int mtrl_calendar_day_corner +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_begin +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderCerts +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Menu +com.jaredrummler.android.colorpicker.R$attr +james.adaptiveicon.R$styleable: int ViewStubCompat_android_inflatedId +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: void onNext(java.lang.Object) +androidx.hilt.lifecycle.R$layout: int notification_action_tombstone +okio.Source: okio.Timeout timeout() +com.google.android.material.R$id: int titleDividerNoCustom +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: int UnitType +com.google.android.material.R$id: int action_bar_root +wangdaye.com.geometricweather.R$attr: int suggestionRowLayout +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_10 +com.google.gson.JsonSyntaxException +james.adaptiveicon.R$styleable: int AppCompatTheme_actionOverflowButtonStyle +androidx.core.R$id: int text +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ProgressBar +com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_COCOS2DX_LUA +androidx.swiperefreshlayout.R$id: int actions +androidx.lifecycle.extensions.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getBackgroundColor() +com.google.android.material.R$attr: int constraint_referenced_ids +com.xw.repo.bubbleseekbar.R$color: int material_grey_100 +okhttp3.internal.http.RealResponseBody: RealResponseBody(java.lang.String,long,okio.BufferedSource) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle +com.xw.repo.bubbleseekbar.R$color: int primary_material_light +wangdaye.com.geometricweather.R$attr: int behavior_halfExpandedRatio +wangdaye.com.geometricweather.R$string: int feedback_interpret_notification_group_content +com.google.android.material.R$styleable: int Transform_android_rotationX +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_count +com.xw.repo.bubbleseekbar.R$attr: int dropdownListPreferredItemHeight +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: int requestFusion(int) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.preference.R$id: int accessibility_custom_action_18 +com.google.android.material.bottomnavigation.BottomNavigationView: int getItemBackgroundResource() +androidx.viewpager.widget.ViewPager: void setPageMarginDrawable(int) +okhttp3.internal.http2.Settings: int MAX_FRAME_SIZE +androidx.dynamicanimation.R$dimen: int notification_large_icon_width +com.bumptech.glide.R$id: int time +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Pollen getPollen() +com.google.android.material.chip.Chip: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundResource(int) +com.google.android.material.R$styleable: int FontFamilyFont_android_font +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean putKeyValueToNative(java.lang.String,java.lang.String) +cyanogenmod.externalviews.ExternalView$8: cyanogenmod.externalviews.ExternalView this$0 +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_bar_title_item +cyanogenmod.app.IProfileManager: cyanogenmod.app.Profile getActiveProfile() +com.google.android.material.R$styleable: int TextInputLayout_counterTextColor +cyanogenmod.providers.CMSettings$2: boolean validate(java.lang.String) +cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(android.os.Parcel,cyanogenmod.weatherservice.ServiceRequestResult$1) +wangdaye.com.geometricweather.R$attr: int panelMenuListTheme +wangdaye.com.geometricweather.R$id: int disableScroll +wangdaye.com.geometricweather.settings.dialogs.AdaptiveIconDialog +androidx.transition.R$style: int TextAppearance_Compat_Notification_Time +androidx.hilt.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.db.entities.HistoryEntityDao +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.ProcessLifecycleOwner sInstance +androidx.constraintlayout.helper.widget.Flow: void setPaddingTop(int) +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdt +com.tencent.bugly.crashreport.crash.a: long b +androidx.work.R$bool: int enable_system_job_service_default +wangdaye.com.geometricweather.R$color: int mtrl_indicator_text_color +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Switch +com.jaredrummler.android.colorpicker.R$attr: int panelMenuListTheme +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a: long a +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void error(java.lang.Throwable) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Small +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_3DES_EDE_CBC_SHA +com.google.android.material.R$attr: int endIconDrawable +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: ObservableUsing$UsingObserver(io.reactivex.Observer,java.lang.Object,io.reactivex.functions.Consumer,boolean) +com.jaredrummler.android.colorpicker.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +androidx.appcompat.R$color: int bright_foreground_material_dark +com.google.gson.FieldNamingPolicy: java.lang.String separateCamelCase(java.lang.String,java.lang.String) +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar_Solid +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_transformPivotX +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_clear_material +okhttp3.internal.http.HttpDate: java.lang.String[] BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS +com.jaredrummler.android.colorpicker.R$style: int Platform_V21_AppCompat_Light +androidx.viewpager2.R$dimen: int notification_top_pad +okhttp3.logging.LoggingEventListener: void requestHeadersStart(okhttp3.Call) +com.tencent.bugly.proguard.aq: aq() +cyanogenmod.weather.WeatherLocation$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Title +com.xw.repo.bubbleseekbar.R$dimen: int compat_notification_large_icon_max_height +androidx.constraintlayout.widget.R$styleable: int Toolbar_navigationContentDescription +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: KeyguardExternalViewProviderService$Provider$ProviderImpl$3(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: AccuCurrentResult$PrecipitationSummary() +android.didikee.donate.R$styleable: int AppCompatTheme_viewInflaterClass +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_elevation +cyanogenmod.weatherservice.ServiceRequestResult: int hashCode() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi +com.tencent.bugly.proguard.z: boolean a(android.content.Context,java.lang.String,long) +androidx.appcompat.R$color: int switch_thumb_material_light +androidx.legacy.coreutils.R$id: int text2 +androidx.hilt.lifecycle.R$styleable: int GradientColorItem_android_color +com.google.android.material.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +androidx.preference.R$style: int Base_V7_Theme_AppCompat +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_anchor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getLogo() +okhttp3.internal.ws.WebSocketReader: okio.Buffer messageFrameBuffer +okhttp3.internal.http1.Http1Codec: int STATE_READ_RESPONSE_HEADERS +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean) +androidx.lifecycle.extensions.R$anim: int fragment_open_enter +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_half_black_16dp +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_toRightOf +okhttp3.internal.http1.Http1Codec$ChunkedSink +com.google.android.material.appbar.CollapsingToolbarLayout: void setContentScrim(android.graphics.drawable.Drawable) +androidx.appcompat.resources.R$drawable: int notification_bg_low_pressed +okio.SegmentedByteString: boolean rangeEquals(int,byte[],int,int) +retrofit2.ParameterHandler$FieldMap: boolean encoded +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void innerNext(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int MockView_mock_showDiagonals +androidx.preference.R$styleable: int AlertDialog_android_layout +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_ActionBar +com.xw.repo.bubbleseekbar.R$attr: int statusBarBackground +com.jaredrummler.android.colorpicker.R$attr: int drawableSize +com.google.android.material.R$id: int motion_base +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property DegreeDayTemperature +wangdaye.com.geometricweather.R$attr: int singleLine +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_elevation +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableRight +okhttp3.internal.cache.DiskLruCache$1: DiskLruCache$1(okhttp3.internal.cache.DiskLruCache) +com.google.android.material.navigation.NavigationView$SavedState +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarNestedScrollView: void setAdaptiveWidthEnabled(boolean) +org.greenrobot.greendao.AbstractDao: boolean detach(java.lang.Object) +wangdaye.com.geometricweather.R$string: int feedback_check_location_permission +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setLabelVisibilityMode(int) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getPM10() +wangdaye.com.geometricweather.R$string: int edit +okhttp3.internal.http.UnrepeatableRequestBody +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Medium +androidx.lifecycle.ProcessLifecycleOwner: void activityStarted() +io.reactivex.internal.observers.DeferredScalarObserver: DeferredScalarObserver(io.reactivex.Observer) +androidx.preference.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +james.adaptiveicon.R$attr: int autoSizeMinTextSize +wangdaye.com.geometricweather.R$attr: int textAppearanceSmallPopupMenu +com.google.android.material.textfield.TextInputLayout: void setEndIconMode(int) +com.amap.api.location.AMapLocationClient: void setLocationListener(com.amap.api.location.AMapLocationListener) +androidx.constraintlayout.widget.R$color: int abc_primary_text_material_dark +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_FloatingActionButton +com.amap.api.location.AMapLocation: int GPS_ACCURACY_BAD +wangdaye.com.geometricweather.R$id: int dialog_location_help_permissionIcon +wangdaye.com.geometricweather.R$dimen: int disabled_alpha_material_dark +wangdaye.com.geometricweather.R$interpolator: R$interpolator() +james.adaptiveicon.R$id: int action_mode_close_button +androidx.loader.R$layout +com.turingtechnologies.materialscrollbar.R$attr: int colorBackgroundFloating +android.didikee.donate.R$attr: int subtitle +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemTextColor +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_showAlphaSlider +androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyle +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: long serialVersionUID +androidx.drawerlayout.R$integer: R$integer() +wangdaye.com.geometricweather.R$styleable: int KeyPosition_percentX +androidx.appcompat.widget.AppCompatButton: int getAutoSizeMaxTextSize() +androidx.viewpager2.R$id: int tag_accessibility_pane_title +com.google.android.material.R$styleable: int ImageFilterView_round +wangdaye.com.geometricweather.background.polling.permanent.observer.TimeObserverService +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: int complete +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextColor(android.content.res.ColorStateList) +androidx.preference.R$drawable: int abc_list_selector_disabled_holo_light +com.jaredrummler.android.colorpicker.R$anim: int abc_popup_exit +retrofit2.ParameterHandler$RawPart: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.tencent.bugly.proguard.z: java.lang.Object a(java.lang.String,java.lang.String,java.lang.Object,java.lang.Class[],java.lang.Object[]) +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode weatherCode +com.google.android.material.R$styleable: int MaterialTextView_lineHeight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX getWeather() +wangdaye.com.geometricweather.db.entities.HistoryEntity: long getTime() +wangdaye.com.geometricweather.R$id: int flip +com.github.rahatarmanahmed.cpv.CircularProgressViewListener +retrofit2.http.Query +cyanogenmod.externalviews.ExternalViewProviderService$1$1: java.lang.Object call() +androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnBind() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: BaiduIPLocationService(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi,io.reactivex.disposables.CompositeDisposable) +androidx.fragment.R$id: int tag_transition_group +wangdaye.com.geometricweather.R$dimen: int abc_cascading_menus_min_smallest_width +com.jaredrummler.android.colorpicker.R$layout: int abc_search_dropdown_item_icons_2line +okhttp3.internal.http.RealResponseBody +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +cyanogenmod.externalviews.ExternalView: cyanogenmod.externalviews.IExternalViewProvider mExternalViewProvider +okhttp3.internal.connection.RouteSelector$Selection: int nextRouteIndex +androidx.appcompat.R$id: int accessibility_custom_action_17 +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.identityscope.IdentityScopeLong identityScopeLong +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer treeIndex +cyanogenmod.app.CMContextConstants$Features: java.lang.String PROFILES +com.google.android.material.tabs.TabLayout: void setOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) +com.jaredrummler.android.colorpicker.R$attr: int persistent +okio.Okio: okio.Sink sink(java.io.File) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindDirection(java.lang.String) +io.reactivex.internal.observers.DeferredScalarObserver: void onNext(java.lang.Object) +androidx.preference.R$string: int abc_menu_delete_shortcut_label +wangdaye.com.geometricweather.R$styleable: int Motion_motionStagger +okhttp3.internal.ws.RealWebSocket: okhttp3.internal.ws.WebSocketWriter writer +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.lang.Object enterTransform(java.lang.Object) +okhttp3.internal.http2.Hpack$Reader: okio.ByteString getName(int) +james.adaptiveicon.R$attr: int maxButtonHeight +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constrainedHeight +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_63 +com.bumptech.glide.integration.okhttp.R$layout: int notification_action +com.google.android.material.R$dimen: int mtrl_extended_fab_min_height +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingEnd +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_dark_normal_background +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +com.bumptech.glide.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderCancelButton +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$attr: int borderlessButtonStyle +androidx.preference.R$id: int italic +com.google.android.material.R$styleable: int KeyCycle_android_translationX +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getThunderstorm() +android.didikee.donate.R$attr: int buttonTint +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_percent +okhttp3.internal.http.HttpDate: long MAX_DATE +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Minimum: double Value +androidx.appcompat.R$attr: int actionBarWidgetTheme +com.google.android.material.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +com.google.android.material.R$styleable: int MenuGroup_android_visible +com.google.android.material.R$dimen: int design_navigation_max_width +wangdaye.com.geometricweather.R$animator: int weather_cloudy_1 +com.xw.repo.bubbleseekbar.R$attr: int titleMargin +io.reactivex.Observable: io.reactivex.Observable doOnNext(io.reactivex.functions.Consumer) +androidx.preference.R$drawable: int abc_btn_radio_material_anim +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,io.reactivex.Scheduler) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer gust +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int SLEET +okhttp3.internal.connection.RealConnection: int MAX_TUNNEL_ATTEMPTS +androidx.viewpager2.R$styleable: int RecyclerView_stackFromEnd +androidx.preference.R$string: int abc_capital_on +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constrainedHeight +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_icon_vertical_padding_material +com.google.android.material.R$styleable: int ConstraintSet_android_translationX +james.adaptiveicon.R$color: int material_grey_850 +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() +com.amap.api.fence.GeoFence: boolean q +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_item_min_width +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_TopLeftCut +android.didikee.donate.R$dimen: int abc_text_size_title_material +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_homeAsUpIndicator +androidx.core.R$styleable: int[] GradientColorItem +androidx.constraintlayout.widget.R$bool: int abc_action_bar_embed_tabs +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias +wangdaye.com.geometricweather.R$animator: int weather_thunder_1 +okio.GzipSource: java.util.zip.CRC32 crc +com.google.android.material.tabs.TabLayout: void removeOnTabSelectedListener(com.google.android.material.tabs.TabLayout$OnTabSelectedListener) +cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_LAUNCH +com.amap.api.fence.GeoFence: int o +io.reactivex.Observable: io.reactivex.Observable combineLatest(java.lang.Iterable,io.reactivex.functions.Function,int) +androidx.preference.R$attr: int dialogMessage +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_unregisterChangeListener +okhttp3.internal.http2.Hpack: Hpack() +androidx.appcompat.R$dimen: int notification_small_icon_background_padding +androidx.appcompat.R$id: int tag_accessibility_heading +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollEnabled +james.adaptiveicon.R$attr: int autoSizeStepGranularity +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadPong(okio.ByteString) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_minHeight +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1 +com.google.android.material.R$styleable: int Constraint_layout_constraintTop_toBottomOf +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_disabled_material_light +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableRight +androidx.viewpager2.widget.ViewPager2: java.lang.CharSequence getAccessibilityClassName() +cyanogenmod.providers.CMSettings$Secure: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date getRiseDate() +androidx.preference.R$layout: int notification_action_tombstone +androidx.transition.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_pressed_z +com.bumptech.glide.integration.okhttp.R$id: int normal +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onNext(java.lang.Object) +androidx.appcompat.R$attr: int actionOverflowButtonStyle +com.amap.api.location.CoordinateConverter$1: int[] a +wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_material_anim +androidx.loader.R$style: int TextAppearance_Compat_Notification_Line2 +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: android.os.Bundle getOptions() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum: double Value +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView: int getHeaderHeight() +androidx.fragment.R$layout: int notification_template_part_chronometer +okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RouteDatabase routeDatabase() +com.tencent.bugly.proguard.s: java.util.Map a +android.didikee.donate.R$style: int Widget_AppCompat_Light_ListView_DropDown +androidx.constraintlayout.widget.R$attr: int layout_constraintRight_toLeftOf +com.google.android.material.R$attr: int flow_lastHorizontalStyle +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_iconTint +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ImageButton +okhttp3.Request +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: void spValue(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_horizontalDivider +com.xw.repo.bubbleseekbar.R$styleable: int GradientColorItem_android_offset +com.google.android.material.R$attr: int waveOffset +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String getTo() +com.github.rahatarmanahmed.cpv.CircularProgressView: void resetAnimation() +james.adaptiveicon.R$attr: int actionModeCloseButtonStyle +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Borderless +com.google.android.material.R$color: int material_grey_900 +okhttp3.CertificatePinner$Pin: okio.ByteString hash +com.google.android.material.R$styleable: int KeyTrigger_motion_postLayoutCollision +wangdaye.com.geometricweather.R$array: int weather_source_voices +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: long serialVersionUID +okio.ByteString: okio.ByteString sha1() +okhttp3.internal.http.RealInterceptorChain: okhttp3.internal.connection.StreamAllocation streamAllocation() +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Primary +wangdaye.com.geometricweather.R$dimen: int abc_text_size_title_material +okhttp3.ConnectionSpec$Builder: ConnectionSpec$Builder(boolean) +wangdaye.com.geometricweather.R$color: int switch_thumb_normal_material_dark +androidx.lifecycle.LiveData$1: LiveData$1(androidx.lifecycle.LiveData) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration +wangdaye.com.geometricweather.R$drawable: int abc_list_divider_material +cyanogenmod.weather.WeatherInfo$Builder: boolean isValidTempUnit(int) +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTintMode +com.google.android.material.R$styleable: int ActionBar_hideOnContentScroll +wangdaye.com.geometricweather.R$styleable: int[] ColorPreference +com.google.android.material.R$attr: int actionModeSelectAllDrawable +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: java.lang.String desc +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Tooltip +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedWidthMajor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: void setTo(java.lang.String) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.CompositeDisposable set +com.jaredrummler.android.colorpicker.R$drawable: int abc_edit_text_material +wangdaye.com.geometricweather.R$attr: int behavior_hideable +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Info +okhttp3.internal.cache.CacheStrategy$Factory: long cacheResponseAge() +com.google.android.material.R$attr: int crossfade +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties properties +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.R$dimen: int abc_text_size_menu_header_material +okhttp3.HttpUrl: java.lang.String QUERY_COMPONENT_ENCODE_SET +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: void dispose() +okhttp3.internal.http2.Http2Connection$3: void execute() +androidx.constraintlayout.widget.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +james.adaptiveicon.R$attr: int popupWindowStyle +com.jaredrummler.android.colorpicker.R$dimen: int notification_top_pad_large_text +com.tencent.bugly.proguard.i: boolean a(int,boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean pressure +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.google.android.material.chip.Chip: void setCheckedIconVisible(int) +james.adaptiveicon.R$style: int Theme_AppCompat_Light_DialogWhenLarge +androidx.vectordrawable.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.R$styleable: int Preference_shouldDisableView +retrofit2.RequestBuilder: void addHeader(java.lang.String,java.lang.String) +androidx.transition.R$id: int transition_position +wangdaye.com.geometricweather.R$drawable: int weather_rain_mini_light +cyanogenmod.weather.IRequestInfoListener: void onWeatherRequestCompleted(cyanogenmod.weather.RequestInfo,int,cyanogenmod.weather.WeatherInfo) +androidx.appcompat.R$drawable: int btn_radio_on_to_off_mtrl_animation +androidx.hilt.lifecycle.R$dimen: int notification_action_text_size +androidx.preference.R$styleable: int AppCompatTheme_panelMenuListWidth +androidx.preference.R$styleable: int Toolbar_contentInsetRight +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: ObservableSkipLast$SkipLastObserver(io.reactivex.Observer,int) +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup +wangdaye.com.geometricweather.R$attr: int chipSpacingVertical +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position position +androidx.coordinatorlayout.R$styleable: int GradientColor_android_startColor +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_icon_1 +androidx.preference.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +james.adaptiveicon.R$attr: int customNavigationLayout +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_toolbarStyle +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithIncrementalIndexingIndexedName(int) +wangdaye.com.geometricweather.R$drawable: int ic_filter_off +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeStyle +com.google.android.material.R$styleable: int Toolbar_titleMarginBottom +androidx.lifecycle.LiveDataReactiveStreams +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_android_windowIsFloating +io.reactivex.Observable: java.lang.Object to(io.reactivex.functions.Function) +com.google.android.material.R$attr: int materialCalendarHeaderDivider +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.String toString() +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.functions.Predicate predicate +androidx.legacy.coreutils.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.Date updateDate +james.adaptiveicon.R$id: int custom +androidx.coordinatorlayout.R$drawable: int notification_bg_low +okhttp3.OkHttpClient$Builder: okhttp3.Authenticator authenticator +okhttp3.internal.tls.BasicCertificateChainCleaner: BasicCertificateChainCleaner(okhttp3.internal.tls.TrustRootIndex) +cyanogenmod.weather.WeatherInfo$DayForecast$1: WeatherInfo$DayForecast$1() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +cyanogenmod.app.Profile$TriggerType: Profile$TriggerType() +com.google.android.material.R$attr: int tooltipStyle +androidx.constraintlayout.widget.R$dimen: int abc_text_size_body_1_material +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_SmallComponent +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_19 +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType USER_REQUEST +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeFindDrawable +androidx.fragment.R$styleable: int GradientColor_android_startY +androidx.appcompat.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +com.google.android.material.R$styleable: int[] ClockHandView +androidx.hilt.work.R$id: int action_text +wangdaye.com.geometricweather.R$string: int settings_notification_hide_icon_on +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.lang.Object poll() +com.tencent.bugly.BuglyStrategy: boolean isReplaceOldChannel() +com.google.android.material.R$styleable: int CollapsingToolbarLayout_title +androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentX +androidx.viewpager2.R$integer: int status_bar_notification_info_maxnum +androidx.appcompat.R$style: int Theme_AppCompat_Light +com.jaredrummler.android.colorpicker.R$attr: int min +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String getFrom() +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +android.didikee.donate.R$color: int material_deep_teal_500 +androidx.preference.R$color: int background_material_dark +com.turingtechnologies.materialscrollbar.R$attr: int buttonBarNeutralButtonStyle +io.reactivex.Observable: io.reactivex.Observable concatMapEager(io.reactivex.functions.Function) +com.google.android.material.R$attr: int textInputLayoutFocusedRectEnabled +okhttp3.internal.connection.RealConnection: okhttp3.Protocol protocol +androidx.preference.R$attr: int entries +com.google.android.material.R$attr: int tickVisible +io.reactivex.internal.operators.observable.ObservableGroupBy$State: long serialVersionUID +androidx.swiperefreshlayout.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.R$string: int material_slider_range_start +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource CN +androidx.fragment.R$styleable +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.IWeatherServiceProviderChangeListener mProviderChangeListener +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: boolean isLeft +android.didikee.donate.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +wangdaye.com.geometricweather.R$id: int pin +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_panelMenuListTheme +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: int UnitType +androidx.appcompat.widget.Toolbar: int getTitleMarginStart() +androidx.appcompat.R$styleable: int AppCompatTheme_actionMenuTextColor +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: KeyguardExternalViewProviderService$Provider$ProviderImpl(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider,cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider) +androidx.hilt.work.R$id: int tag_accessibility_heading +com.amap.api.location.AMapLocationQualityReport: boolean isInstalledHighDangerMockApp() +androidx.drawerlayout.R$dimen: int compat_button_inset_horizontal_material +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Body2 +com.turingtechnologies.materialscrollbar.R$dimen: R$dimen() +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_start_icon_margin_end +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getEn_US() +com.google.android.material.R$dimen: int abc_action_bar_subtitle_top_margin_material +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_dividerPadding +wangdaye.com.geometricweather.R$attr: int textAppearanceSubtitle2 +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginRight +com.tencent.bugly.proguard.ab +wangdaye.com.geometricweather.R$styleable: int Layout_barrierMargin +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_cornerRadius +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.LocationEntity,long) +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorSize +androidx.appcompat.widget.AppCompatSpinner: android.content.Context getPopupContext() +wangdaye.com.geometricweather.R$id: int activity_allergen_toolbar +wangdaye.com.geometricweather.R$id: int widget_week_card +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$000() +wangdaye.com.geometricweather.R$attr: int liftOnScrollTargetViewId +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton_Overflow +androidx.activity.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$styleable: int ViewStubCompat_android_inflatedId +com.jaredrummler.android.colorpicker.R$attr: int editTextStyle +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeMinTextSize +com.google.android.material.textfield.TextInputEditText: java.lang.CharSequence getHint() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +com.jaredrummler.android.colorpicker.R$color: int error_color_material_light +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getBoxStrokeErrorColor() +okhttp3.internal.http.HttpHeaders: int skipUntil(java.lang.String,int,java.lang.String) +okio.RealBufferedSource: okio.ByteString readByteString() +wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_collapsed +androidx.fragment.R$id: int accessibility_custom_action_2 +com.google.gson.stream.JsonReader: int[] stack +retrofit2.HttpServiceMethod: java.lang.Object invoke(java.lang.Object[]) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_fragment +android.didikee.donate.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +com.turingtechnologies.materialscrollbar.R$id: int async +androidx.preference.R$attr: int contentInsetEnd +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$layout: int mtrl_calendar_year +wangdaye.com.geometricweather.R$styleable: int Preference_summary +cyanogenmod.app.ICMTelephonyManager: void setDataConnectionState(boolean) +james.adaptiveicon.R$layout: int abc_expanded_menu_layout +androidx.preference.R$style: int Widget_AppCompat_PopupMenu +com.jaredrummler.android.colorpicker.R$styleable: int[] PopupWindow +com.tencent.bugly.crashreport.crash.c: void f() +com.jaredrummler.android.colorpicker.R$color: int primary_dark_material_dark +cyanogenmod.weather.CMWeatherManager$RequestStatus: int NO_MATCH_FOUND +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String OVERLAYS_URI +okio.Buffer: okio.Buffer emitCompleteSegments() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_icon_padding +okhttp3.Protocol: java.lang.String protocol +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetLeft +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onNext(java.lang.Object) +com.google.android.material.slider.Slider: void setTickInactiveTintList(android.content.res.ColorStateList) +androidx.preference.R$dimen: int tooltip_margin +com.google.android.material.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +androidx.preference.R$attr: int negativeButtonText +androidx.activity.R$styleable: int GradientColor_android_tileMode +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableRightCompat +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textAppearance +io.reactivex.Observable: io.reactivex.Observable flatMapMaybe(io.reactivex.functions.Function) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments +android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupMenu +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customFloatValue +com.google.android.material.chip.ChipGroup: ChipGroup(android.content.Context,android.util.AttributeSet,int) +com.google.android.material.R$attr: int boxCornerRadiusTopEnd +com.amap.api.location.AMapLocation: java.lang.String getFloor() wangdaye.com.geometricweather.R$drawable: int notif_temp_113 -okhttp3.Challenge -android.didikee.donate.R$attr: int colorAccent -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: long serialVersionUID -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: float PRECIPITATION_MIDDLE -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents_Light -android.didikee.donate.R$id: int disableHome -androidx.activity.R$attr: R$attr() -wangdaye.com.geometricweather.db.entities.AlertEntity: void setDate(java.util.Date) -wangdaye.com.geometricweather.R$styleable: int[] EditTextPreference -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_activated_mtrl_alpha -okhttp3.Cache$Entry: Cache$Entry(okhttp3.Response) -okhttp3.MultipartBody: okhttp3.MediaType MIXED -com.google.android.material.R$style: int Base_Widget_MaterialComponents_Chip -wangdaye.com.geometricweather.R$drawable: int live_wallpaper_thumbnail -james.adaptiveicon.R$attr: int ratingBarStyleSmall -okhttp3.internal.http2.Http2Connection$Listener$1: Http2Connection$Listener$1() -io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: ObservableInterval$IntervalObserver(io.reactivex.Observer) -wangdaye.com.geometricweather.R$styleable: int Constraint_motionProgress -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getPm10() -com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleTextAppearance -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void dispose() -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_3 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_to_on_mtrl_000 -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_android_textOff -com.google.android.material.R$drawable: int abc_ic_star_half_black_36dp -com.bumptech.glide.R$layout -com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textColorLink -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_strokeWidth -okhttp3.HttpUrl$Builder: java.lang.String canonicalizeHost(java.lang.String,int,int) -com.google.android.material.R$attr: int actionViewClass -com.turingtechnologies.materialscrollbar.R$attr: R$attr() -androidx.appcompat.widget.Toolbar: void setSubtitle(java.lang.CharSequence) -androidx.fragment.R$id: int accessibility_custom_action_11 -androidx.constraintlayout.helper.widget.Flow: void setVerticalStyle(int) -com.google.android.material.R$dimen: int design_tab_text_size_2line -android.didikee.donate.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense -retrofit2.adapter.rxjava2.Result -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer ragweedLevel -cyanogenmod.content.Intent: java.lang.String EXTRA_PROTECTED_COMPONENTS -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_ACTIVE -com.xw.repo.bubbleseekbar.R$styleable: int[] ColorStateListItem -wangdaye.com.geometricweather.R$anim: int mtrl_card_lowers_interpolator -android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Light -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_maxHeight -androidx.lifecycle.LifecycleRegistry: LifecycleRegistry(androidx.lifecycle.LifecycleOwner) -com.google.android.material.R$styleable: int Toolbar_navigationIcon -com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_position -io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.ObservableSource source -androidx.lifecycle.extensions.R$id: int italic -com.google.android.material.card.MaterialCardView: void setChecked(boolean) -com.bumptech.glide.load.engine.GlideException: com.bumptech.glide.load.Key key -cyanogenmod.hardware.CMHardwareManager: boolean set(int,boolean) -androidx.preference.R$attr: int actionMenuTextAppearance -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: int status -com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$styleable: int Variant_constraints -androidx.constraintlayout.widget.R$layout: int abc_popup_menu_header_item_layout -cyanogenmod.themes.ThemeManager$1$1: void run() -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle -com.amap.api.fence.GeoFence: long getExpiration() -androidx.lifecycle.Lifecycle: void addObserver(androidx.lifecycle.LifecycleObserver) -okio.RealBufferedSource: long indexOf(okio.ByteString,long) -cyanogenmod.providers.CMSettings$System: java.lang.String BLUETOOTH_ACCEPT_ALL_FILES -com.tencent.bugly.proguard.p: com.tencent.bugly.proguard.q b -androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveData(java.lang.String,java.lang.Object) -androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_toTopOf -com.google.android.material.R$dimen: int material_helper_text_font_1_3_padding_horizontal -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabAnimationMode -com.xw.repo.bubbleseekbar.R$attr: int titleMargin -okhttp3.internal.cache.DiskLruCache: java.lang.String MAGIC -cyanogenmod.app.BaseLiveLockManagerService: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -com.google.android.material.slider.BaseSlider: void setThumbStrokeWidthResource(int) -wangdaye.com.geometricweather.R$attr: int boxCornerRadiusTopEnd -okhttp3.internal.publicsuffix.PublicSuffixDatabase -com.tencent.bugly.proguard.i: short a(short,int,boolean) -okio.GzipSink: boolean closed -james.adaptiveicon.R$color: int material_blue_grey_900 -com.turingtechnologies.materialscrollbar.R$style: int Base_V22_Theme_AppCompat -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent ICON -okhttp3.logging.LoggingEventListener: void callStart(okhttp3.Call) -okio.SegmentedByteString: okio.ByteString toByteString() -com.tencent.bugly.crashreport.biz.b: void a(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_dialogPreferredPadding -androidx.preference.R$attr: int actionDropDownStyle -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: javax.inject.Provider apiProvider -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean: void setStatus(int) -androidx.recyclerview.R$dimen: int notification_large_icon_width -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_menu -androidx.swiperefreshlayout.R$id: int right_icon -com.tencent.bugly.crashreport.CrashReport: void testJavaCrash() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Counter -wangdaye.com.geometricweather.R$integer: int mtrl_chip_anim_duration -wangdaye.com.geometricweather.common.basic.models.weather.Alert: long alertId -androidx.appcompat.R$id: int line3 -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: boolean mainDone -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_item_horizontal_padding -com.google.android.material.R$styleable: int Layout_layout_constraintRight_creator -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_al -androidx.constraintlayout.widget.R$attr: int customColorDrawableValue -wangdaye.com.geometricweather.R$style: int Preference_Category -androidx.constraintlayout.widget.R$attr: int colorSwitchThumbNormal -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableStart -com.google.android.material.R$styleable: int KeyTimeCycle_curveFit -androidx.preference.R$id: int tag_accessibility_clickable_spans -android.didikee.donate.R$styleable: int LinearLayoutCompat_dividerPadding -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Direction: java.lang.String Localized -androidx.lifecycle.SavedStateHandle$SavingStateLiveData: androidx.lifecycle.SavedStateHandle mHandle -wangdaye.com.geometricweather.R$styleable: int TabItem_android_text -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: AccuCurrentResult$WetBulbTemperature$Imperial() -wangdaye.com.geometricweather.R$drawable: int notif_temp_25 -wangdaye.com.geometricweather.R$drawable: int shortcuts_haze_foreground -androidx.constraintlayout.widget.R$styleable: int PropertySet_visibilityMode -wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Light -androidx.hilt.lifecycle.R$anim: int fragment_fade_enter -androidx.work.R$string -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setLogo(java.lang.String) -com.google.android.material.R$attr: int windowFixedHeightMinor -cyanogenmod.app.suggest.AppSuggestManager: java.util.List getSuggestions(android.content.Intent) -androidx.appcompat.widget.Toolbar$SavedState -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_framePosition -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: AccuDailyResult$DailyForecasts$Day$Rain() -com.google.android.material.R$id: int action_menu_divider -retrofit2.Retrofit$Builder: retrofit2.Retrofit$Builder baseUrl(java.lang.String) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_SearchView -com.google.android.material.R$styleable: int Chip_chipIconSize -okhttp3.internal.ws.RealWebSocket: java.lang.String key -com.jaredrummler.android.colorpicker.R$id: int transparency_seekbar -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_scaleY -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -androidx.appcompat.R$attr: int buttonTintMode -com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Surface -com.google.android.material.floatingactionbutton.FloatingActionButton: void setHideMotionSpecResource(int) -wangdaye.com.geometricweather.R$id: int dialog_time_setter_cancel -com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemRippleColor() -wangdaye.com.geometricweather.R$id: int notification_background -wangdaye.com.geometricweather.R$drawable: int flag_fr -androidx.preference.R$attr: int actionModeCloseButtonStyle -cyanogenmod.profiles.StreamSettings: void readFromParcel(android.os.Parcel) -androidx.preference.R$style: int Base_Widget_AppCompat_Light_PopupMenu -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_id +okhttp3.internal.http2.Header: java.lang.String TARGET_PATH_UTF8 +com.xw.repo.bubbleseekbar.R$color: int background_material_dark +retrofit2.RequestBuilder: java.lang.String relativeUrl +com.google.android.material.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy +androidx.lifecycle.SavedStateHandleController$1: androidx.lifecycle.Lifecycle val$lifecycle +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyleSmall +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlNormal +com.jaredrummler.android.colorpicker.R$dimen: int abc_button_padding_horizontal_material +androidx.appcompat.R$layout: int notification_template_part_time +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense_ExposedDropdownMenu +com.google.android.material.R$string: int mtrl_badge_numberless_content_description +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: java.lang.String Unit +androidx.hilt.work.R$style: int Widget_Compat_NotificationActionContainer +wangdaye.com.geometricweather.remoteviews.config.DayWidgetConfigActivity +com.xw.repo.bubbleseekbar.R$attr: int fontProviderFetchTimeout +androidx.constraintlayout.widget.R$id: int scrollView +wangdaye.com.geometricweather.R$array: int location_service_values +com.google.android.material.button.MaterialButton: void setIconTint(android.content.res.ColorStateList) +okhttp3.internal.cache.DiskLruCache$Entry: void writeLengths(okio.BufferedSink) +androidx.work.R$style: int Widget_Compat_NotificationActionText +okhttp3.internal.http2.Http2Connection: long awaitPingsSent +androidx.preference.R$attr: int editTextPreferenceStyle +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: io.reactivex.internal.disposables.SequentialDisposable direct +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isDataConnectionSelectedOnSub(int) +wangdaye.com.geometricweather.R$attr: int state_liftable +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startColor +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_verticalDivider +android.didikee.donate.R$id: int title_template +androidx.appcompat.R$styleable: int CompoundButton_buttonTintMode +retrofit2.converter.gson.GsonConverterFactory: retrofit2.converter.gson.GsonConverterFactory create() +wangdaye.com.geometricweather.main.dialogs.LocationPermissionStatementDialog +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy NONE +com.google.android.material.R$styleable: int SwitchCompat_android_textOn +okhttp3.internal.http2.Hpack$Writer: int SETTINGS_HEADER_TABLE_SIZE +wangdaye.com.geometricweather.R$layout: int item_about_title +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int UPDATING +okhttp3.internal.tls.OkHostnameVerifier: OkHostnameVerifier() +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onSubscribe(io.reactivex.disposables.Disposable) +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarItemBackground +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,io.reactivex.Scheduler) +cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDataConnectionState +com.google.android.material.R$style: int Base_Widget_MaterialComponents_AutoCompleteTextView +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit CM +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_rtl +com.turingtechnologies.materialscrollbar.R$color: int foreground_material_light +io.reactivex.Observable: io.reactivex.Observable dematerialize(io.reactivex.functions.Function) +okhttp3.internal.http1.Http1Codec$FixedLengthSink: void close() +com.google.android.material.R$attr: int yearSelectedStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: void setFrom(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_barThickness +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMenuItemView_android_minWidth +androidx.fragment.R$styleable: int FontFamily_fontProviderPackage +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabText +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_creator +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplBase +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_viewInflaterClass +androidx.preference.R$id: int accessibility_custom_action_2 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Snackbar +okhttp3.internal.http2.StreamResetException +android.didikee.donate.R$drawable: int abc_cab_background_top_mtrl_alpha +wangdaye.com.geometricweather.R$drawable: int ic_tree +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +androidx.vectordrawable.R$styleable: int FontFamily_fontProviderFetchStrategy +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getDefaultLiveLockScreen() +android.didikee.donate.R$color: int background_material_dark +okio.Pipe$PipeSink: void close() +com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_colorShape +com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context) +com.google.android.material.chip.Chip: java.lang.CharSequence getCloseIconContentDescription() +okhttp3.EventListener$Factory: okhttp3.EventListener create(okhttp3.Call) +androidx.appcompat.resources.R$id: int async +io.reactivex.Observable: io.reactivex.Observable doOnEach(io.reactivex.functions.Consumer) +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(int,long,java.util.concurrent.TimeUnit) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: androidx.lifecycle.LiveData mLiveData +androidx.preference.R$style: int Widget_AppCompat_AutoCompleteTextView +com.turingtechnologies.materialscrollbar.R$id: int icon +retrofit2.adapter.rxjava2.BodyObservable +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int pm25 +com.google.android.gms.common.ConnectionResult: android.os.Parcelable$Creator CREATOR +androidx.swiperefreshlayout.R$dimen: int compat_button_inset_horizontal_material +com.google.android.material.R$id: int image +androidx.dynamicanimation.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconPadding +wangdaye.com.geometricweather.R$drawable: int weather_hail_2 +retrofit2.http.GET: java.lang.String value() +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onNext(java.lang.Object) +androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +cyanogenmod.providers.CMSettings$Secure: boolean isLegacySetting(java.lang.String) +james.adaptiveicon.R$attr: int submitBackground +androidx.loader.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.R$attr: int textEndPadding +wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_lifted +com.amap.api.location.AMapLocation: float getAccuracy() +io.reactivex.internal.schedulers.AbstractDirectTask: void setFuture(java.util.concurrent.Future) +wangdaye.com.geometricweather.R$styleable: int[] MaterialAutoCompleteTextView +wangdaye.com.geometricweather.R$color: int design_fab_shadow_end_color +com.google.android.material.R$id: int confirm_button +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +wangdaye.com.geometricweather.R$attr: int cardUseCompatPadding +james.adaptiveicon.R$style: int Widget_AppCompat_Light_PopupMenu +androidx.constraintlayout.widget.R$id: int time +androidx.constraintlayout.widget.R$interpolator +androidx.viewpager2.R$attr: int stackFromEnd +android.didikee.donate.R$style: int Base_Widget_AppCompat_ListPopupWindow +androidx.constraintlayout.widget.R$string: int abc_menu_shift_shortcut_label +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: long bytesRead +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position position +cyanogenmod.app.ICustomTileListener$Stub$Proxy: void onListenerConnected() +okhttp3.Callback: void onResponse(okhttp3.Call,okhttp3.Response) +androidx.preference.R$color: int material_grey_800 +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_showTitle +okhttp3.HttpUrl$Builder: java.util.List encodedQueryNamesAndValues +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: double Longitude +okhttp3.Request: boolean isHttps() +retrofit2.ParameterHandler$Body: java.lang.reflect.Method method +com.github.rahatarmanahmed.cpv.CircularProgressView: CircularProgressView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterMaxLength +androidx.lifecycle.SavedStateHandleController: boolean mIsAttached +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Small_Inverse +cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_WAKE_SCREEN +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: void innerError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$attr: int submitBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getAqi() +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_android_enabled +androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_toLeftOf +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_active_item_max_width +com.google.android.material.R$dimen: int disabled_alpha_material_dark +cyanogenmod.externalviews.IExternalViewProvider$Stub: IExternalViewProvider$Stub() +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int START +androidx.appcompat.view.menu.MenuPopup +android.support.v4.os.ResultReceiver: void send(int,android.os.Bundle) +com.google.android.gms.location.LocationRequest: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +com.google.gson.stream.JsonReader: int limit +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_toolbarId +wangdaye.com.geometricweather.R$drawable: int weather_snow_1 +com.turingtechnologies.materialscrollbar.R$attr: int chipStandaloneStyle +okhttp3.internal.http.RealInterceptorChain: int connectTimeout +com.google.android.material.R$styleable: int NavigationView_itemIconSize +android.didikee.donate.R$drawable: int abc_seekbar_tick_mark_material +cyanogenmod.app.IProfileManager: boolean profileExistsByName(java.lang.String) +androidx.preference.R$dimen: int compat_control_corner_material +androidx.constraintlayout.widget.R$id: int tag_accessibility_heading +androidx.drawerlayout.R$dimen: R$dimen() +androidx.appcompat.R$layout: int abc_screen_simple +com.google.android.gms.base.R$id: R$id() +wangdaye.com.geometricweather.common.ui.widgets.TagView: TagView(android.content.Context) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_always_show_bubble_delay +cyanogenmod.app.ProfileManager: java.util.UUID NO_PROFILE androidx.constraintlayout.widget.R$attr: int layout_constraintWidth_min -cyanogenmod.providers.CMSettings$System$2: boolean validate(java.lang.String) -android.didikee.donate.R$styleable: int MenuItem_android_checkable -okhttp3.internal.http.RetryAndFollowUpInterceptor: RetryAndFollowUpInterceptor(okhttp3.OkHttpClient,boolean) -com.jaredrummler.android.colorpicker.R$drawable: int abc_popup_background_mtrl_mult -wangdaye.com.geometricweather.R$styleable: int ImageFilterView_roundPercent -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeTotalPrecipitationProbability -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: long EffectiveEpochDate +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getWetBulbTemperature() +okio.RealBufferedSink: okio.Sink sink +retrofit2.Utils: int indexOf(java.lang.Object[],java.lang.Object) +com.google.android.material.textfield.TextInputLayout: void setStartIconDrawable(android.graphics.drawable.Drawable) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +androidx.loader.R$drawable: int notification_bg_low_normal +com.google.android.material.R$attr: int state_collapsed +com.jaredrummler.android.colorpicker.R$id: int blocking +james.adaptiveicon.R$drawable: int notification_bg_low_normal +androidx.preference.R$styleable: int AppCompatTheme_actionModeShareDrawable +cyanogenmod.app.ILiveLockScreenManager: boolean getLiveLockScreenEnabled() +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionMode +androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior: CoordinatorLayout$Behavior() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setWeather(java.lang.String) +androidx.preference.R$styleable: int[] AlertDialog +wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +androidx.appcompat.resources.R$styleable: int[] StateListDrawableItem +com.tencent.bugly.crashreport.biz.UserInfoBean: long i +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_size_mini +androidx.swiperefreshlayout.R$drawable: int notification_icon_background +androidx.hilt.work.R$dimen: int notification_large_icon_width +okhttp3.internal.ws.RealWebSocket: boolean close(int,java.lang.String,long) +androidx.loader.R$id: int async +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial +androidx.customview.view.AbsSavedState: android.os.Parcelable$Creator CREATOR +com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundColor(int) +wangdaye.com.geometricweather.R$attr: int materialCalendarTheme +android.didikee.donate.R$id: int action_bar_title +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +android.didikee.donate.R$attr: int listPopupWindowStyle +james.adaptiveicon.R$styleable: int[] ViewBackgroundHelper +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.util.Locale getLocale() +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintBottom_toTopOf +com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_DropDownUp +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_8 +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getCurrentLiveLockScreen +com.google.android.material.R$dimen: int mtrl_calendar_header_content_padding_fullscreen +wangdaye.com.geometricweather.R$attr: int actionModeCopyDrawable +okhttp3.internal.http.HttpMethod: boolean redirectsToGet(java.lang.String) +android.didikee.donate.R$attr: int drawerArrowStyle +androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableItem +androidx.coordinatorlayout.R$id: int async +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String weathercn +androidx.fragment.R$dimen: int notification_large_icon_width +com.google.android.material.internal.ForegroundLinearLayout +com.tencent.bugly.crashreport.biz.b: boolean b +com.jaredrummler.android.colorpicker.R$id: int cpv_color_picker_view +androidx.fragment.R$string: int status_bar_notification_info_overflow +android.didikee.donate.R$id: int topPanel +cyanogenmod.profiles.StreamSettings: void writeToParcel(android.os.Parcel,int) +com.google.android.material.R$id: int material_value_index +wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_3 +com.jaredrummler.android.colorpicker.R$attr: int progressBarPadding +androidx.appcompat.R$styleable: int MenuItem_android_orderInCategory +com.google.android.material.R$styleable: int AppCompatTheme_colorPrimaryDark +james.adaptiveicon.R$styleable: int MenuGroup_android_visible +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginEnd +wangdaye.com.geometricweather.R$string: int exposed_dropdown_menu_content_description +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Body2 +androidx.appcompat.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +cyanogenmod.themes.IThemeService$Stub$Proxy: android.os.IBinder mRemote +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner +cyanogenmod.weather.WeatherLocation: java.lang.String mCityId +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: int OTHER_STATE_CONSUMED_OR_EMPTY +com.jaredrummler.android.colorpicker.R$id: int action_image +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean done +okio.Buffer: java.lang.String readUtf8LineStrict(long) +wangdaye.com.geometricweather.R$drawable: int notif_temp_117 +androidx.constraintlayout.widget.R$styleable: int Constraint_chainUseRtl +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: MfForecastResult() +com.tencent.bugly.proguard.i: byte[] c(int,boolean) +com.autonavi.aps.amapapi.model.AMapLocationServer: void f(java.lang.String) +com.google.android.material.R$style: int TestStyleWithThemeLineHeightAttribute +android.didikee.donate.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade() +wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_tint +wangdaye.com.geometricweather.R$id: int widget_day_symbol +com.jaredrummler.android.colorpicker.R$dimen: int hint_pressed_alpha_material_dark +android.didikee.donate.R$drawable: int abc_ratingbar_material +okhttp3.CipherSuite +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: boolean tryOnError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_margin +com.amap.api.location.AMapLocationQualityReport: java.lang.String getAdviseMessage() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX +james.adaptiveicon.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircleRadius +androidx.hilt.R$attr: int fontVariationSettings +com.xw.repo.bubbleseekbar.R$color: int abc_tint_spinner +android.didikee.donate.R$style: int ThemeOverlay_AppCompat +okhttp3.internal.http2.Http2Stream: Http2Stream(int,okhttp3.internal.http2.Http2Connection,boolean,boolean,okhttp3.Headers) +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getIce() +wangdaye.com.geometricweather.R$attr: int closeIconSize +okhttp3.Response: okhttp3.ResponseBody body +wangdaye.com.geometricweather.R$dimen: int abc_action_bar_default_padding_end_material +com.jaredrummler.android.colorpicker.R$layout: int preference_dialog_edittext +androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +cyanogenmod.themes.ThemeChangeRequest: java.util.Map mPerAppOverlays +androidx.preference.R$attr: int itemPadding +wangdaye.com.geometricweather.R$attr: int cpv_previewSize +androidx.preference.R$id: int accessibility_custom_action_23 +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstVerticalBias +androidx.recyclerview.R$styleable: int FontFamilyFont_ttcIndex +io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource) +android.didikee.donate.R$styleable: int Toolbar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat +com.turingtechnologies.materialscrollbar.R$style: int Base_V22_Theme_AppCompat_Light +com.jaredrummler.android.colorpicker.R$attr: int actionMenuTextAppearance +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_19 +com.google.android.material.R$styleable: int Badge_maxCharacterCount +com.google.android.material.behavior.SwipeDismissBehavior: void setListener(com.google.android.material.behavior.SwipeDismissBehavior$OnDismissListener) +com.google.android.material.slider.Slider: void setFocusedThumbIndex(int) +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dialog +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long size +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: java.util.List value +androidx.preference.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +wangdaye.com.geometricweather.R$styleable: int[] AppCompatImageView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Imperial Imperial +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +android.didikee.donate.R$styleable: int[] AppCompatTextHelper +wangdaye.com.geometricweather.R$drawable: int abc_list_focused_holo +androidx.preference.R$id: int parentPanel +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener mWindowAttachmentListener +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_subtitleTextStyle +com.google.android.material.R$id: int accessibility_custom_action_16 +wangdaye.com.geometricweather.R$styleable: int Chip_android_textColor +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: double Value +androidx.appcompat.widget.SearchView: void setIconified(boolean) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: ObservableIntervalRange$IntervalRangeObserver(io.reactivex.Observer,long,long) +com.google.android.material.tabs.TabLayout: void setScrollAnimatorListener(android.animation.Animator$AnimatorListener) +androidx.work.R$layout: R$layout() +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.HourlyEntity,int) +com.bumptech.glide.integration.okhttp.R$attr: int fontWeight +okhttp3.RealCall: okhttp3.Request request() +androidx.appcompat.R$styleable: int AppCompatTheme_editTextColor +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitationProbability() +androidx.constraintlayout.widget.R$attr: int motionInterpolator +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemPaddingLeft +androidx.appcompat.R$attr: int commitIcon +cyanogenmod.themes.ThemeChangeRequest: cyanogenmod.themes.ThemeChangeRequest$RequestType getReqeustType() +com.turingtechnologies.materialscrollbar.R$anim: int abc_shrink_fade_out_from_bottom +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableItem_android_drawable +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ImageButton +androidx.recyclerview.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status LOADING +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_fontFamily +com.google.android.material.R$attr: int textAppearancePopupMenuHeader +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +retrofit2.ParameterHandler$QueryMap: void apply(retrofit2.RequestBuilder,java.util.Map) +com.turingtechnologies.materialscrollbar.R$attr: int materialButtonStyle +androidx.viewpager.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$style: int Preference +okhttp3.Cache$CacheResponseBody +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +retrofit2.RequestFactory +com.google.android.material.R$id: int action_menu_presenter +com.jaredrummler.android.colorpicker.R$color: int abc_tint_seek_thumb +com.google.android.material.R$color: int mtrl_bottom_nav_colored_ripple_color +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderFetchStrategy +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_top +androidx.appcompat.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setEn_US(java.lang.String) +cyanogenmod.weatherservice.ServiceRequest: void cancel() +androidx.hilt.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties: wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris ephemeris +okio.Timeout: Timeout() +okhttp3.OkHttpClient: okhttp3.Authenticator authenticator +androidx.appcompat.R$dimen: int compat_button_padding_horizontal_material +cyanogenmod.os.Concierge$ParcelInfo: int getParcelVersion() +com.google.android.material.R$attr: int textColorSearchUrl +androidx.hilt.R$styleable: int Fragment_android_name +wangdaye.com.geometricweather.R$string: int go_to_set +james.adaptiveicon.R$attr: int contentInsetLeft +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_dither +androidx.recyclerview.R$id: int time +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.Observer downstream +com.xw.repo.bubbleseekbar.R$styleable: int ActionMode_height +wangdaye.com.geometricweather.R$string: int wind_10 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView_PrimarySurface +com.tencent.bugly.proguard.ao +com.jaredrummler.android.colorpicker.R$attr: int windowFixedWidthMinor +com.turingtechnologies.materialscrollbar.R$id: int textSpacerNoTitle +james.adaptiveicon.R$styleable: int[] CompoundButton +com.xw.repo.bubbleseekbar.R$color: int primary_text_default_material_dark +okhttp3.WebSocket: void cancel() +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties: org.greenrobot.greendao.Property CityId +com.autonavi.aps.amapapi.model.AMapLocationServer: org.json.JSONObject toJson(int) +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.identityscope.IdentityScope identityScope +com.google.android.material.R$color: int primary_text_default_material_dark +android.didikee.donate.R$style: int Base_Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: int UnitType +com.jaredrummler.android.colorpicker.R$attr: int fontProviderAuthority +android.didikee.donate.R$styleable: int TextAppearance_android_typeface +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: io.reactivex.functions.Action onOverflow +okhttp3.internal.cache.CacheStrategy$Factory: java.lang.String servedDateString +james.adaptiveicon.R$attr: int buttonBarButtonStyle +okhttp3.Address: javax.net.ssl.SSLSocketFactory sslSocketFactory +com.amap.api.fence.DistrictItem: java.lang.String b +android.support.v4.app.INotificationSideChannel: void cancel(java.lang.String,int,java.lang.String) +cyanogenmod.profiles.StreamSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +james.adaptiveicon.R$styleable: int AppCompatTheme_windowMinWidthMajor +wangdaye.com.geometricweather.R$attr: int arcMode +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type[] typeArguments +com.google.android.material.circularreveal.cardview.CircularRevealCardView: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +cyanogenmod.weather.CMWeatherManager: java.lang.String getActiveWeatherServiceProviderLabel() +cyanogenmod.weather.CMWeatherManager +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.Object clone() +androidx.vectordrawable.animated.R$dimen: int compat_notification_large_icon_max_width +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_padding_right +cyanogenmod.app.StatusBarPanelCustomTile: int getInitialPid() +io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,io.reactivex.functions.Function,int) +com.google.android.material.R$styleable: int CollapsingToolbarLayout_statusBarScrim +android.didikee.donate.R$color: int abc_search_url_text_normal +androidx.appcompat.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +androidx.constraintlayout.widget.R$styleable: int ActionBar_height +com.google.android.material.R$styleable: int ConstraintSet_android_layout_width +com.xw.repo.bubbleseekbar.R$styleable: int MenuGroup_android_visible +android.didikee.donate.R$styleable: int MenuItem_android_checked +androidx.drawerlayout.R$dimen: int notification_content_margin_start +androidx.activity.R$color: int notification_action_color_filter +android.didikee.donate.R$id: int action_menu_presenter +com.bumptech.glide.R$attr: int layout_keyline +androidx.appcompat.widget.ActionBarContextView: void setSubtitle(java.lang.CharSequence) +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleMarginEnd +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_SYSTEM +james.adaptiveicon.R$styleable: int AlertDialog_listLayout +com.tencent.bugly.proguard.x: boolean a(int,java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum Maximum +wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndSwitch +wangdaye.com.geometricweather.R$id: int path +com.jaredrummler.android.colorpicker.R$attr: int switchPadding +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents +wangdaye.com.geometricweather.R$drawable: int notif_temp_135 +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_creator +androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice$AdviceContext: AtmoAuraQAResult$Advice$AdviceContext() +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String findMostSpecific(java.lang.String) +androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +androidx.preference.R$drawable: int abc_popup_background_mtrl_mult +com.google.android.material.R$id: int rounded +com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_top_material +androidx.viewpager2.R$drawable: int notify_panel_notification_icon_bg +cyanogenmod.app.suggest.AppSuggestManager: boolean DEBUG +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout +androidx.preference.R$drawable: int abc_ratingbar_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX() +wangdaye.com.geometricweather.R$styleable: int Slider_haloColor +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetEndWithActions +com.amap.api.location.AMapLocation: int LOCATION_SUCCESS +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setLocation(android.location.Location) +cyanogenmod.weather.WeatherInfo$1: cyanogenmod.weather.WeatherInfo[] newArray(int) +james.adaptiveicon.R$drawable: int abc_tab_indicator_mtrl_alpha +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_2 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_106 +wangdaye.com.geometricweather.R$attr: int tabStyle +androidx.constraintlayout.widget.R$id: int off +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_thumbTint +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String getProviderId() +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String getWeatherSource() +androidx.recyclerview.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String date +okio.Buffer: int read(java.nio.ByteBuffer) +com.xw.repo.bubbleseekbar.R$color: int bright_foreground_material_dark +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String HOUR +androidx.hilt.R$integer +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int limit +okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: Http2Connection$IntervalPingRunnable(okhttp3.internal.http2.Http2Connection) +com.google.android.material.R$styleable: int Tooltip_android_textAppearance +james.adaptiveicon.R$layout: int abc_list_menu_item_radio +okhttp3.TlsVersion: TlsVersion(java.lang.String,int,java.lang.String) +com.google.android.material.R$attr: int drawableStartCompat +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onNext(java.lang.Object) +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_title +com.google.android.material.R$attr: int showAsAction +com.xw.repo.bubbleseekbar.R$id: int line1 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_middle_mtrl_dark +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean gate +androidx.lifecycle.Lifecycle +androidx.appcompat.widget.SwitchCompat: void setShowText(boolean) +wangdaye.com.geometricweather.R$id: int widget_week_temp_4 +androidx.constraintlayout.widget.R$attr: int contentInsetStart +cyanogenmod.weather.WeatherInfo: boolean isValidWeatherCode(int) +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.R$id: int default_activity_button +okio.RealBufferedSink: okio.BufferedSink writeShortLe(int) +cyanogenmod.providers.CMSettings$System$3 +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Body2 +androidx.recyclerview.R$dimen: int notification_content_margin_start +okhttp3.internal.http2.Http2Writer: void headers(boolean,int,java.util.List) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_percent +james.adaptiveicon.R$styleable: int TextAppearance_android_textSize +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_subtitleTextStyle +androidx.appcompat.widget.ContentFrameLayout: ContentFrameLayout(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$attr: int fontProviderQuery +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_seek_step_section +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.lang.reflect.Method checkServerTrusted +com.google.android.material.navigation.NavigationView: android.graphics.drawable.Drawable getItemBackground() +androidx.transition.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow1h +james.adaptiveicon.R$styleable: int Toolbar_android_gravity +com.jaredrummler.android.colorpicker.R$attr: int cpv_borderColor +com.jaredrummler.android.colorpicker.R$attr: int cpv_dialogType +androidx.loader.R$styleable: int FontFamilyFont_fontStyle +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onComplete() +james.adaptiveicon.R$drawable: int abc_list_selector_disabled_holo_light +com.amap.api.location.AMapLocationClient: java.lang.String getVersion() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: java.util.List alerts +wangdaye.com.geometricweather.R$string: int feedback_request_location +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String getIcon() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setWeather(java.lang.String) +com.google.android.material.R$dimen: int hint_alpha_material_light +androidx.constraintlayout.widget.Placeholder: Placeholder(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$color: int preference_fallback_accent_color +okhttp3.RealCall$1: void timedOut() +wangdaye.com.geometricweather.R$attr: int iconEndPadding +com.google.android.material.R$color: int material_slider_inactive_track_color +wangdaye.com.geometricweather.R$attr: int titleMarginBottom +cyanogenmod.providers.CMSettings$Secure: java.lang.String PRIVACY_GUARD_NOTIFICATION +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_3_material +com.turingtechnologies.materialscrollbar.R$color: int abc_hint_foreground_material_light +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Name +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_progress +cyanogenmod.hardware.CMHardwareManager: boolean registerThermalListener(cyanogenmod.hardware.ThermalListenerCallback) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.lang.String getPubTime() +androidx.preference.R$dimen: int abc_dropdownitem_text_padding_left +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.R$attr: int drawableBottomCompat +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontStyle +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_DropDownItem_Spinner +wangdaye.com.geometricweather.R$id: int material_clock_period_toggle +cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: int CELSIUS +com.google.android.material.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableLeftCompat +com.tencent.bugly.proguard.f: byte f +wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity: ClockDayDetailsWidgetConfigActivity() +androidx.lifecycle.DefaultLifecycleObserver: void onStop(androidx.lifecycle.LifecycleOwner) +com.github.rahatarmanahmed.cpv.CircularProgressView: void onAttachedToWindow() +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_shapeAppearance +wangdaye.com.geometricweather.R$attr: int cpv_dialogTitle +com.google.android.material.R$id: int title_template +androidx.fragment.R$attr: int fontProviderCerts +com.tencent.bugly.crashreport.crash.jni.b: void c(java.lang.String) +androidx.core.R$drawable: int notification_tile_bg +com.xw.repo.bubbleseekbar.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_light_focused +androidx.customview.R$attr: int fontProviderCerts +com.tencent.bugly.crashreport.crash.jni.b: java.lang.String b(java.lang.String,java.lang.String) +cyanogenmod.weather.CMWeatherManager$1: void onWeatherServiceProviderChanged(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: void setValue(java.util.List) +com.google.android.material.R$style: int Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: long StartEpochDateTime +wangdaye.com.geometricweather.R$styleable: int Preference_android_title +androidx.constraintlayout.widget.R$attr: int maxButtonHeight +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.xw.repo.bubbleseekbar.R$color: int background_floating_material_light +io.reactivex.internal.schedulers.RxThreadFactory: int priority +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_20 +wangdaye.com.geometricweather.R$color: int error_color_material_light +cyanogenmod.media.MediaRecorder$AudioSource: MediaRecorder$AudioSource() +cyanogenmod.app.Profile$ProfileTrigger: int getType() +com.google.android.material.textfield.TextInputLayout: void setStartIconOnClickListener(android.view.View$OnClickListener) +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setBackgroundResource(int) +james.adaptiveicon.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetTop +androidx.appcompat.R$color: int androidx_core_secondary_text_default_material_light +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorPrimary +androidx.constraintlayout.widget.R$attr: int mock_label +com.tencent.bugly.crashreport.common.info.a: java.lang.String n() +com.google.android.material.R$attr: int elevationOverlayColor +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeRainPrecipitationDuration(java.lang.Float) +okhttp3.Cache$CacheRequestImpl: okhttp3.Cache this$0 +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +com.google.android.material.R$dimen: int abc_dropdownitem_icon_width +wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_dark +wangdaye.com.geometricweather.R$id: int mtrl_picker_header +androidx.appcompat.R$color: int foreground_material_dark +okhttp3.internal.http2.Http2: byte FLAG_NONE +io.reactivex.Observable: io.reactivex.Observable window(java.util.concurrent.Callable) +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHorizontal_bias +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog_Alert +androidx.customview.R$id: int info +androidx.constraintlayout.widget.R$string: R$string() +com.jaredrummler.android.colorpicker.R$attr: int tooltipText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX getIndices() +okio.ForwardingTimeout: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) +android.didikee.donate.R$style: int Base_Widget_AppCompat_ButtonBar +com.google.android.material.textfield.TextInputLayout: void setSuffixTextAppearance(int) +com.jaredrummler.android.colorpicker.R$attr: int switchTextAppearance +cyanogenmod.app.Profile$DozeMode: int DEFAULT +com.tencent.bugly.crashreport.CrashReport +com.turingtechnologies.materialscrollbar.R$attr: int tabUnboundedRipple +okio.SegmentedByteString: okio.ByteString substring(int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindChillTemperature +com.google.android.material.bottomappbar.BottomAppBar: androidx.appcompat.widget.ActionMenuView getActionMenuView() +cyanogenmod.app.IPartnerInterface$Stub$Proxy: boolean setZenMode(int) +androidx.vectordrawable.R$id: int accessibility_custom_action_15 +com.tencent.bugly.crashreport.CrashReport: void enableBugly(boolean) +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_pressed +com.google.android.material.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: void setUnit(java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Light_Dialog +androidx.preference.R$styleable: int SearchView_android_maxWidth +androidx.appcompat.R$anim: int abc_slide_out_bottom +com.tencent.bugly.proguard.y +wangdaye.com.geometricweather.R$styleable: int TouchScrollBar_msb_autoHide +androidx.drawerlayout.R$dimen: int notification_top_pad +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification_Time +androidx.viewpager.widget.PagerTabStrip: void setBackgroundResource(int) +okhttp3.internal.http2.Hpack: java.util.Map nameToFirstIndex() +androidx.loader.R$attr: int ttcIndex +james.adaptiveicon.R$color: int accent_material_light +com.google.android.material.R$styleable: int SwitchCompat_showText +com.google.android.material.R$string: int material_timepicker_select_time +androidx.recyclerview.R$id: int accessibility_custom_action_10 +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status COMPLETE +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator SWAP_VOLUME_KEYS_ON_ROTATION_VALIDATOR +okio.HashingSink: void write(okio.Buffer,long) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Caption +com.amap.api.location.LocationManagerBase: void disableBackgroundLocation(boolean) +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_pressed +androidx.preference.R$style: int Widget_AppCompat_RatingBar +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +com.bumptech.glide.integration.okhttp.R$dimen: int notification_top_pad_large_text +com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearanceInactive +androidx.preference.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemTitle(java.lang.String) +androidx.hilt.R$attr: int fontProviderCerts +cyanogenmod.content.Intent: java.lang.String ACTION_PROTECTED +com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_dropDownWidth +com.tencent.bugly.BuglyStrategy: boolean n +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: java.util.concurrent.atomic.AtomicReference upstream +wangdaye.com.geometricweather.R$attr: int expandActivityOverflowButtonDrawable +androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: java.lang.String pubTime +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_size_normal +com.jaredrummler.android.colorpicker.R$layout: int preference_category_material +wangdaye.com.geometricweather.R$attr: int bsb_show_progress_in_float +androidx.viewpager.widget.ViewPager: int getOffscreenPageLimit() +android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMarkTintMode +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec supportedSpec(javax.net.ssl.SSLSocket,boolean) +wangdaye.com.geometricweather.R$style: int Base_V23_Theme_AppCompat_Light +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getWritableDb() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial: java.lang.String Unit +wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_day +com.google.android.material.button.MaterialButton: int getIconSize() +com.google.android.material.R$bool: int abc_config_actionMenuItemAllCaps +wangdaye.com.geometricweather.R$drawable: int notif_temp_74 +com.google.android.material.bottomappbar.BottomAppBar: void setSubtitle(java.lang.CharSequence) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric() +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTheme +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: java.lang.String Unit +okio.Pipe$PipeSink: okio.Pipe this$0 +wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Bottom_Left +com.xw.repo.bubbleseekbar.R$layout: int abc_activity_chooser_view_list_item +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_TextView_SpinnerItem +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customDimension +com.jaredrummler.android.colorpicker.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.background.receiver.widget.WidgetDayWeekProvider +android.didikee.donate.R$id: int action_mode_bar +cyanogenmod.app.IProfileManager$Stub$Proxy: cyanogenmod.app.Profile getProfileByName(java.lang.String) +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_font +okhttp3.internal.http2.Http2Connection$Builder: boolean client +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollEnabled +com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_borderColor +com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_layout +androidx.transition.R$drawable: int notification_bg_low_pressed +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemIconSize +com.jaredrummler.android.colorpicker.R$attr: int dialogLayout +com.google.android.material.R$styleable: int KeyCycle_curveFit +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: io.reactivex.Observer observer +com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Dialog +androidx.preference.R$id: int scrollIndicatorDown +io.reactivex.internal.observers.BasicIntQueueDisposable: java.lang.Object poll() +cyanogenmod.app.Profile$1: java.lang.Object[] newArray(int) +com.jaredrummler.android.colorpicker.R$styleable: int ActionMode_height +com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_icon_color_selector +com.amap.api.fence.GeoFence: void setCustomId(java.lang.String) +com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_y_offset_touch +android.didikee.donate.R$string: int abc_searchview_description_search +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_UnelevatedButton_Icon +androidx.appcompat.R$styleable: int AlertDialog_singleChoiceItemLayout +wangdaye.com.geometricweather.R$id: int widget_day_week_subtitle +androidx.vectordrawable.animated.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_maxHeight +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoDownloadInterval +androidx.preference.R$dimen: int notification_main_column_padding_top +com.tencent.bugly.proguard.f: int b +com.google.android.material.R$style: int Widget_MaterialComponents_Button +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setId(java.lang.Long) +com.google.android.material.R$attr: int expandedTitleMarginEnd +androidx.activity.R$styleable: R$styleable() +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetRight +wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper +com.tencent.bugly.crashreport.crash.e: e(android.content.Context,com.tencent.bugly.crashreport.crash.b,com.tencent.bugly.crashreport.common.strategy.a,com.tencent.bugly.crashreport.common.info.a) +androidx.lifecycle.AbstractSavedStateViewModelFactory: java.lang.String TAG_SAVED_STATE_HANDLE_CONTROLLER +wangdaye.com.geometricweather.R$styleable: int MenuGroup_android_enabled +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onNext(java.lang.Object) +okhttp3.internal.http2.Http2Connection: void pushRequestLater(int,java.util.List) +okhttp3.RealCall: java.lang.String toLoggableString() +com.google.android.material.slider.RangeSlider: void setValues(java.util.List) +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.WeatherEntityDao getWeatherEntityDao() +androidx.constraintlayout.widget.R$attr: int mock_labelColor +androidx.transition.R$dimen: int compat_notification_large_icon_max_width +androidx.constraintlayout.widget.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeStyle +com.google.android.material.R$style: int Base_Widget_MaterialComponents_TextView +com.google.android.material.button.MaterialButton$SavedState: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$styleable: int ConstraintSet_android_orientation +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_animate_relativeTo +androidx.coordinatorlayout.R$id: int normal +com.google.android.material.R$style: int Base_Widget_AppCompat_SearchView +okhttp3.CertificatePinner$Pin +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onAttach(android.os.IBinder) +androidx.lifecycle.ProcessLifecycleOwnerInitializer: boolean onCreate() +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_showMotionSpec +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: void setPosition(int) +com.google.android.material.R$styleable: int AppCompatTheme_actionButtonStyle +com.google.android.material.R$styleable: int FloatingActionButton_useCompatPadding +wangdaye.com.geometricweather.R$styleable: int ActionBar_title +okhttp3.internal.platform.Platform: okhttp3.internal.tls.TrustRootIndex buildTrustRootIndex(javax.net.ssl.X509TrustManager) +wangdaye.com.geometricweather.R$attr: int layout_constraintCircleAngle +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_font +androidx.hilt.lifecycle.R$layout: int notification_template_part_time +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onNext(java.lang.Object) +androidx.appcompat.R$styleable: int Spinner_popupTheme +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton +wangdaye.com.geometricweather.R$array: int languages +com.xw.repo.bubbleseekbar.R$attr: int actionModeCutDrawable +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$attr: int trackColor +android.didikee.donate.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +androidx.preference.R$attr: int iconSpaceReserved +com.tencent.bugly.crashreport.crash.d: void a(com.tencent.bugly.crashreport.crash.d,java.lang.Thread,int,java.lang.String,java.lang.String,java.lang.String,java.util.Map) +androidx.loader.R$dimen: int compat_notification_large_icon_max_height +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableEnd +com.google.android.material.R$attr: int colorPrimaryDark +wangdaye.com.geometricweather.R$transition: int search_activity_shared_enter +com.xw.repo.bubbleseekbar.R$style: int AlertDialog_AppCompat_Light +retrofit2.Retrofit$1: retrofit2.Retrofit this$0 +james.adaptiveicon.R$styleable: int ViewBackgroundHelper_backgroundTint +wangdaye.com.geometricweather.R$styleable: int SignInButton_colorScheme +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircleView: CircleView(android.content.Context,android.util.AttributeSet) +androidx.viewpager.widget.ViewPager$SavedState: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.lifecycle.LiveData: void removeObservers(androidx.lifecycle.LifecycleOwner) +androidx.recyclerview.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NULL +okhttp3.internal.Util: int delimiterOffset(java.lang.String,int,int,java.lang.String) +androidx.vectordrawable.animated.R$id: int tag_accessibility_actions +com.turingtechnologies.materialscrollbar.R$attr: int itemSpacing +wangdaye.com.geometricweather.R$string: int key_icon_provider +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator MENU_WAKE_SCREENN_VALIDATOR +com.amap.api.location.UmidtokenInfo$1: UmidtokenInfo$1() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_COLOR_AUTO_VALIDATOR +com.google.android.material.R$styleable: int MaterialCheckBox_buttonTint +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_range_end_hint +wangdaye.com.geometricweather.R$id: int accessibility_action_clickable_span +cyanogenmod.app.Profile +androidx.legacy.coreutils.R$style: R$style() +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_radius_on_dragging +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int ON_COMPLETE +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_registerThemeProcessingListener +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart +com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getIndicatorHeight() +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_corner_radius_material +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean isCanceled() +android.didikee.donate.R$styleable: int AppCompatImageView_srcCompat +com.turingtechnologies.materialscrollbar.R$attr: int queryBackground +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startY +androidx.appcompat.R$dimen: int abc_button_padding_horizontal_material +androidx.constraintlayout.widget.R$attr: int windowFixedHeightMajor +wangdaye.com.geometricweather.R$layout: int design_layout_tab_text +com.google.gson.JsonSyntaxException: JsonSyntaxException(java.lang.String,java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconStartPadding +okio.Pipe$PipeSink: void write(okio.Buffer,long) +androidx.activity.R$id: int forever +com.jaredrummler.android.colorpicker.R$attr: int imageButtonStyle +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconContentDescription +androidx.preference.R$id: int accessibility_custom_action_30 +androidx.preference.R$styleable: int GradientColor_android_type +com.google.gson.stream.JsonWriter: void beforeValue() +androidx.transition.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.appcompat.R$drawable: int abc_ic_arrow_drop_right_black_24dp +androidx.activity.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$attr: int textAppearanceBody2 +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory NORMAL +com.google.android.material.R$layout: int test_reflow_chipgroup +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabView +okhttp3.Cookie$Builder: boolean persistent +com.google.android.gms.common.api.AvailabilityException: AvailabilityException(androidx.collection.ArrayMap) +com.amap.api.location.UmidtokenInfo: void setUmidtoken(android.content.Context,java.lang.String) +com.jaredrummler.android.colorpicker.R$attr: int paddingEnd +okhttp3.internal.http.RealInterceptorChain: okhttp3.EventListener eventListener +okhttp3.internal.Util: void checkOffsetAndCount(long,long,long) +okio.GzipSource: int section +com.amap.api.location.AMapLocation: int ERROR_CODE_NOCGI_WIFIOFF +cyanogenmod.themes.ThemeChangeRequest: java.util.Map getPerAppOverlays() +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_toggle_margin_bottom +retrofit2.Invocation: java.lang.reflect.Method method() +wangdaye.com.geometricweather.R$color: int design_dark_default_color_surface +com.tencent.bugly.proguard.u: java.util.concurrent.LinkedBlockingQueue i +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPopupWindowStyle +androidx.swiperefreshlayout.R$id: int notification_main_column +cyanogenmod.weather.WeatherInfo: double mHumidity +cyanogenmod.app.CMStatusBarManager: void removeTile(int) +androidx.preference.R$style: int TextAppearance_AppCompat_Tooltip +retrofit2.Response: Response(okhttp3.Response,java.lang.Object,okhttp3.ResponseBody) +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onTimeoutError(long,java.lang.Throwable) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UpdateTime -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_tooltipForegroundColor -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_searchViewStyle -wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: MoonPhase(java.lang.Integer,java.lang.String) -io.reactivex.Observable: io.reactivex.Observable onErrorReturn(io.reactivex.functions.Function) -androidx.loader.R$id: int tag_unhandled_key_event_manager -com.turingtechnologies.materialscrollbar.CustomIndicator: CustomIndicator(android.content.Context) -com.google.android.material.slider.Slider: void setThumbElevation(float) -com.google.android.material.card.MaterialCardView: void setPreventCornerOverlap(boolean) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HAZE -wangdaye.com.geometricweather.R$string: int cpv_custom -com.tencent.bugly.proguard.c: void a(java.lang.String) -com.google.android.material.R$style: int Widget_AppCompat_DrawerArrowToggle -com.jaredrummler.android.colorpicker.R$styleable: int[] MultiSelectListPreference -com.google.android.material.R$styleable: int ShapeAppearance_cornerSize -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_imeOptions -wangdaye.com.geometricweather.R$dimen: int mtrl_shape_corner_size_small_component -com.google.android.material.R$attr: int seekBarStyle -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindDirection -com.google.android.material.R$styleable: int MaterialCheckBox_useMaterialThemeColors -com.tencent.bugly.crashreport.common.info.a: java.lang.String U -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windSpeedStart -androidx.constraintlayout.widget.R$drawable: int btn_radio_off_mtrl -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_13 -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_verticalDivider -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: ObservableReplay$UnboundedReplayBuffer(int) -com.google.android.gms.auth.api.signin.GoogleSignInAccount -androidx.customview.R$color: int secondary_text_default_material_light -com.google.android.material.R$id: int title -com.google.android.material.R$styleable: int ScrimInsetsFrameLayout_insetForeground -wangdaye.com.geometricweather.settings.activities.DailyTrendDisplayManageActivity: DailyTrendDisplayManageActivity() -com.turingtechnologies.materialscrollbar.R$layout: int notification_action_tombstone -retrofit2.HttpServiceMethod: java.lang.Object adapt(retrofit2.Call,java.lang.Object[]) -androidx.hilt.work.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_16dp -androidx.appcompat.resources.R$styleable: int FontFamilyFont_ttcIndex -com.amap.api.location.AMapLocationClientOption$2: int[] a -com.google.gson.stream.JsonWriter: boolean getSerializeNulls() -com.bumptech.glide.R$drawable: int notify_panel_notification_icon_bg -cyanogenmod.app.ILiveLockScreenManagerProvider: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) -androidx.core.view.GestureDetectorCompat: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetStartWithNavigation -cyanogenmod.app.ICMTelephonyManager$Stub: ICMTelephonyManager$Stub() -com.google.android.material.R$color: int cardview_shadow_start_color -wangdaye.com.geometricweather.R$attr: int textAppearanceLineHeightEnabled -com.xw.repo.bubbleseekbar.R$id: int search_plate +com.google.android.material.R$styleable: int Constraint_layout_constraintVertical_bias +com.google.android.material.R$attr: int drawableEndCompat +com.google.android.material.navigation.NavigationView: android.content.res.ColorStateList getItemTextColor() +androidx.recyclerview.R$id: int accessibility_custom_action_20 +androidx.appcompat.app.AppCompatViewInflater: AppCompatViewInflater() +cyanogenmod.weather.WeatherLocation$Builder: WeatherLocation$Builder(java.lang.String) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onPreparePanel(int,android.view.View,android.view.Menu) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +androidx.work.OverwritingInputMerger +wangdaye.com.geometricweather.R$color: int bright_foreground_inverse_material_light +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerComplete(io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver) +androidx.preference.R$styleable: int PreferenceTheme_preferenceCategoryStyle +cyanogenmod.profiles.AirplaneModeSettings: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.R$attr: int progressBarStyle +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: org.reactivestreams.Subscription upstream +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setNightIconDrawable(android.graphics.drawable.Drawable) +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.helper.widget.Layer: Layer(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_thumb_material +androidx.preference.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +com.google.android.material.R$id: int postLayout +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_voice +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarWidgetTheme +cyanogenmod.app.ProfileGroup$2: int[] $SwitchMap$cyanogenmod$app$ProfileGroup$Mode +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_minWidth +androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context) +com.bumptech.glide.integration.okhttp.R$id: int info +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.internal.disposables.SequentialDisposable sd +cyanogenmod.weather.WeatherInfo$DayForecast$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean +com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.drawable.Drawable getContentBackground() +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed +com.tencent.bugly.crashreport.common.strategy.StrategyBean: long e +androidx.fragment.R$style: int Widget_Compat_NotificationActionContainer +androidx.recyclerview.R$id: int accessibility_custom_action_30 +com.google.android.material.R$dimen: int compat_control_corner_material +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_button_material +retrofit2.RequestFactory$Builder: java.lang.reflect.Method method +androidx.preference.R$styleable: int AppCompatTextView_textLocale +com.jaredrummler.android.colorpicker.R$attr: int tickMarkTintMode +com.google.android.material.R$attr: int textAppearanceBody2 +james.adaptiveicon.R$styleable: int AppCompatImageView_srcCompat +com.google.android.material.R$attr: int layout_constraintHeight_default +com.google.android.material.R$string: int mtrl_picker_toggle_to_day_selection +com.amap.api.fence.DistrictItem: DistrictItem(android.os.Parcel) +androidx.appcompat.R$attr: int paddingBottomNoButtons +androidx.viewpager.widget.ViewPager: void removeOnPageChangeListener(androidx.viewpager.widget.ViewPager$OnPageChangeListener) +androidx.preference.R$styleable: int AppCompatTheme_selectableItemBackground +com.tencent.bugly.proguard.q: q(android.content.Context,java.util.List) +androidx.preference.R$styleable: int ActionMenuItemView_android_minWidth +androidx.legacy.coreutils.R$drawable +com.turingtechnologies.materialscrollbar.R$id: int search_src_text +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingStart +wangdaye.com.geometricweather.R$attr: int maxButtonHeight +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +androidx.constraintlayout.widget.R$attr: int windowMinWidthMajor +wangdaye.com.geometricweather.R$font: int product_sans_thin_italic +com.google.android.material.tabs.TabLayout: void setSelectedTabIndicatorColor(int) +com.turingtechnologies.materialscrollbar.R$id: int select_dialog_listview +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginLeft +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: void setSunDrawable(android.graphics.drawable.Drawable) +com.jaredrummler.android.colorpicker.R$attr: int dialogCornerRadius +androidx.appcompat.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_1 +androidx.appcompat.R$style: int TextAppearance_Compat_Notification +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_space_shortcut_label +wangdaye.com.geometricweather.R$animator: int weather_thunderstorm_1 +com.google.android.material.R$styleable: int Layout_layout_constraintWidth_percent +com.google.android.material.R$attr: int buttonBarNegativeButtonStyle +cyanogenmod.providers.CMSettings$Secure: java.util.List getDelimitedStringAsList(android.content.ContentResolver,java.lang.String,java.lang.String) +androidx.viewpager2.widget.ViewPager2: int getPageSize() +okhttp3.HttpUrl: okhttp3.HttpUrl resolve(java.lang.String) +wangdaye.com.geometricweather.R$id: int multiply +wangdaye.com.geometricweather.R$styleable: int Tooltip_backgroundTint +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +com.google.android.material.internal.NavigationMenuItemView: void setTitle(java.lang.CharSequence) +com.tencent.bugly.proguard.z: java.lang.String a(android.content.Context,java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox +com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_next_black_24dp +androidx.constraintlayout.widget.R$attr: int fontProviderFetchStrategy +okhttp3.internal.cache.DiskLruCache: void trimToSize() +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_4 +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List dailyForecast +wangdaye.com.geometricweather.R$dimen: int abc_seekbar_track_progress_height_material +wangdaye.com.geometricweather.R$dimen: int mtrl_fab_min_touch_target +com.google.android.material.R$id: int mtrl_calendar_text_input_frame +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_typeface +androidx.constraintlayout.widget.R$styleable: int Constraint_android_transformPivotX +wangdaye.com.geometricweather.R$attr: int switchStyle +androidx.constraintlayout.widget.R$attr: int seekBarStyle +androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModelProvider$Factory mFactory +com.tencent.bugly.proguard.y: java.lang.String i +io.reactivex.exceptions.CompositeException +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean set(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) +com.google.android.material.R$attr: int textAllCaps +okio.SegmentPool: SegmentPool() +com.amap.api.location.AMapLocationClient: void unRegisterLocationListener(com.amap.api.location.AMapLocationListener) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabTextStyle +androidx.constraintlayout.widget.R$styleable: int Constraint_android_minWidth +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +androidx.preference.R$styleable: int ActionBar_titleTextStyle +com.jaredrummler.android.colorpicker.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.R$string: int phase_waxing_crescent +okhttp3.internal.platform.Platform: javax.net.ssl.SSLContext getSSLContext() +com.turingtechnologies.materialscrollbar.R$attr: int contentPaddingLeft +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onDetach() +com.google.android.material.R$styleable: int AppCompatTheme_colorPrimary +okhttp3.RealCall$AsyncCall: void executeOn(java.util.concurrent.ExecutorService) +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: java.lang.Throwable error +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListMenuView +io.reactivex.internal.operators.observable.ObservableGroupBy$State: boolean checkTerminated(boolean,boolean,io.reactivex.Observer,boolean) +wangdaye.com.geometricweather.R$id: int widget_clock_day_week +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: long serialVersionUID +okhttp3.internal.Internal: void addLenient(okhttp3.Headers$Builder,java.lang.String) +okhttp3.HttpUrl: java.util.List pathSegments +androidx.lifecycle.ReflectiveGenericLifecycleObserver +com.google.android.material.slider.BaseSlider: java.lang.CharSequence getAccessibilityClassName() +com.google.android.material.slider.Slider: int getFocusedThumbIndex() +androidx.vectordrawable.R$styleable: int FontFamilyFont_android_ttcIndex +com.google.android.material.R$id: int material_clock_period_toggle +androidx.appcompat.R$drawable: int abc_ic_star_half_black_36dp +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_WIFI_COMBO_MARGIN_END +com.turingtechnologies.materialscrollbar.Indicator: int getIndicatorHeight() +wangdaye.com.geometricweather.R$drawable: int widget_card_dark_40 +com.google.android.material.floatingactionbutton.FloatingActionButton: void setUseCompatPadding(boolean) +com.github.rahatarmanahmed.cpv.CircularProgressView: boolean isIndeterminate() +androidx.swiperefreshlayout.R$layout: int notification_action +com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException: RecyclableBufferedInputStream$InvalidMarkException(java.lang.String) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection_Fullscreen +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_black +com.xw.repo.bubbleseekbar.R$id: int notification_background +wangdaye.com.geometricweather.R$attr: int maxHeight +wangdaye.com.geometricweather.R$layout: int item_weather_icon +androidx.vectordrawable.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer getDewPoint() +com.google.android.material.textfield.TextInputLayout: void setHintTextAppearance(int) +androidx.work.impl.utils.futures.AbstractFuture: androidx.work.impl.utils.futures.AbstractFuture$Listener listeners +com.google.gson.stream.JsonReader: int PEEKED_LONG +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBaseline_toBaselineOf +wangdaye.com.geometricweather.R$attr: int indicatorColors +com.jaredrummler.android.colorpicker.R$drawable: int cpv_btn_background +cyanogenmod.app.ILiveLockScreenManager$Stub +androidx.viewpager.R$styleable: int GradientColorItem_android_color +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActivityChooserView +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +androidx.preference.R$styleable: int[] EditTextPreference +wangdaye.com.geometricweather.R$attr: int buttonSize +com.turingtechnologies.materialscrollbar.R$attr +androidx.appcompat.R$styleable: int ActionBar_divider +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Medium_Inverse +wangdaye.com.geometricweather.R$id: int cpv_arrow_right +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void drainNormal() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toEndOf +com.google.android.material.R$styleable: int LinearLayoutCompat_android_baselineAligned +com.tencent.bugly.crashreport.common.info.b: int u() +androidx.activity.R$attr: int fontProviderFetchStrategy +androidx.lifecycle.Transformations: Transformations() +com.tencent.bugly.proguard.u: void a(int,long) +androidx.appcompat.R$color: int material_blue_grey_900 +androidx.constraintlayout.widget.R$attr: int flow_firstVerticalBias +com.google.android.gms.location.LocationResult +androidx.preference.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +com.xw.repo.bubbleseekbar.R$styleable: int ViewStubCompat_android_layout +wangdaye.com.geometricweather.R$attr: int flow_lastHorizontalStyle +androidx.constraintlayout.widget.Placeholder: int getEmptyVisibility() +wangdaye.com.geometricweather.R$drawable: int notif_temp_133 +wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_LOW +androidx.appcompat.widget.ViewStubCompat +androidx.constraintlayout.widget.R$attr: int placeholder_emptyVisibility +james.adaptiveicon.R$styleable: int Spinner_android_entries +okio.SegmentPool: long MAX_SIZE +com.tencent.bugly.crashreport.common.info.b: int v() +okhttp3.Address: java.net.ProxySelector proxySelector +wangdaye.com.geometricweather.R$drawable: int weather_snow_pixel +androidx.dynamicanimation.R$color: int notification_icon_bg_color +androidx.viewpager.widget.PagerTabStrip: void setBackgroundColor(int) +com.jaredrummler.android.colorpicker.R$attr: int allowDividerAbove +cyanogenmod.app.CMStatusBarManager: CMStatusBarManager(android.content.Context) +wangdaye.com.geometricweather.R$drawable: int weather_snow_mini_dark +wangdaye.com.geometricweather.R$id: int dropdown_menu +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_listItemLayout +com.google.android.material.R$attr: int closeIconEnabled +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceListItemSecondary +io.reactivex.disposables.RunnableDisposable: void onDisposed(java.lang.Runnable) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end +com.tencent.bugly.proguard.a: java.lang.String a(java.util.ArrayList) +androidx.viewpager.R$styleable: int[] FontFamily +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: float unitFactor +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_stackFromEnd +androidx.appcompat.R$id: int textSpacerNoButtons +wangdaye.com.geometricweather.R$attr: int scopeUris +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_thickness +wangdaye.com.geometricweather.R$dimen: int abc_dialog_min_width_minor +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.Lifecycle getLifecycle() +com.google.android.material.R$attr: int tabTextColor +wangdaye.com.geometricweather.R$styleable: int[] PopupWindowBackgroundState +com.google.android.material.R$dimen: int mtrl_card_elevation +retrofit2.ParameterHandler$Headers +com.xw.repo.bubbleseekbar.R$drawable: int abc_item_background_holo_light +okio.Pipe$PipeSource: okio.Timeout timeout() +wangdaye.com.geometricweather.R$id: int layout +com.tencent.bugly.proguard.ab: byte[] a(byte[]) +com.google.android.material.chip.Chip: void setChipText(java.lang.CharSequence) +androidx.appcompat.resources.R$attr: int fontProviderCerts +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customColorValue +com.google.android.material.slider.Slider: java.lang.CharSequence getAccessibilityClassName() +androidx.core.widget.NestedScrollView +wangdaye.com.geometricweather.R$styleable: int Constraint_android_scaleY +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setId(java.lang.Long) +androidx.appcompat.R$style: int TextAppearance_AppCompat_Medium_Inverse +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_10 +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_margin +androidx.lifecycle.FullLifecycleObserver: void onDestroy(androidx.lifecycle.LifecycleOwner) +com.google.android.gms.common.api.GoogleApiClient +androidx.preference.R$styleable: int LinearLayoutCompat_showDividers +androidx.viewpager2.R$id: int accessibility_custom_action_2 +androidx.appcompat.R$attr: int actionBarTheme +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.tencent.bugly.proguard.aq: java.util.Map i +androidx.preference.R$attr: int drawableTint +cyanogenmod.themes.IThemeChangeListener$Stub: cyanogenmod.themes.IThemeChangeListener asInterface(android.os.IBinder) +cyanogenmod.weather.WeatherInfo$Builder: double mTodaysLowTemp +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber +wangdaye.com.geometricweather.R$string: int abc_searchview_description_submit +okio.AsyncTimeout: java.io.IOException newTimeoutException(java.io.IOException) +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_tileMode +okio.Buffer: void require(long) +androidx.appcompat.app.AppCompatActivity +cyanogenmod.app.CustomTile: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$id: int ghost_view +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getProfile +androidx.preference.R$style: int Base_Widget_AppCompat_Button_Small com.jaredrummler.android.colorpicker.R$drawable: int abc_control_background_material -io.reactivex.internal.queue.SpscArrayQueue: java.util.concurrent.atomic.AtomicLong consumerIndex -com.jaredrummler.android.colorpicker.R$id: int icon -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(java.lang.Iterable,io.reactivex.functions.Function,int) -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: IWeatherServiceProviderChangeListener$Stub() -okhttp3.Cache: int hitCount -okio.Options: okio.Options of(okio.ByteString[]) -wangdaye.com.geometricweather.R$style: int PreferenceThemeOverlay_v14_Material -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status[] values() -wangdaye.com.geometricweather.R$layout: int expand_button -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabView -cyanogenmod.weather.RequestInfo: int access$202(cyanogenmod.weather.RequestInfo,int) -wangdaye.com.geometricweather.R$id: int notification_multi_city_text_1 -cyanogenmod.providers.CMSettings$Global: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) -wangdaye.com.geometricweather.R$layout: int mtrl_layout_snackbar_include -androidx.preference.R$styleable: int[] AnimatedStateListDrawableCompat -io.reactivex.internal.operators.observable.ObserverResourceWrapper: io.reactivex.Observer downstream -androidx.vectordrawable.animated.R$id: int tag_unhandled_key_listeners -com.google.android.material.R$attr: int maxActionInlineWidth -wangdaye.com.geometricweather.R$id: int container_main_first_daily_card_container -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 -androidx.preference.R$color: int ripple_material_light -com.google.android.material.slider.RangeSlider: void setThumbElevation(float) -com.google.android.gms.common.internal.GetServiceRequest: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title -androidx.constraintlayout.widget.R$attr: int keyPositionType -okio.ByteString: byte[] toByteArray() -androidx.constraintlayout.widget.R$styleable: int State_constraints -com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setCrashHandleCallback(com.tencent.bugly.BuglyStrategy$a) -androidx.constraintlayout.widget.R$dimen: int notification_right_side_padding_top -androidx.appcompat.R$drawable: int abc_btn_check_to_on_mtrl_015 -io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void onComplete() -com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_collapsible -wangdaye.com.geometricweather.R$id: int action_menu_presenter -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_title_material_toolbar -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitation -cyanogenmod.providers.CMSettings$System: java.lang.String NAVBAR_LEFT_IN_LANDSCAPE -com.turingtechnologies.materialscrollbar.R$color: int notification_icon_bg_color -com.jaredrummler.android.colorpicker.R$attr: int switchTextOn -wangdaye.com.geometricweather.R$attr: int arcMode -androidx.appcompat.R$attr: int dialogCornerRadius -androidx.hilt.R$styleable: int FontFamily_fontProviderPackage -io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onComplete() -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_chainStyle -androidx.appcompat.widget.ViewStubCompat: void setLayoutInflater(android.view.LayoutInflater) -wangdaye.com.geometricweather.R$string: int action_search -androidx.customview.R$styleable: int FontFamily_fontProviderCerts -wangdaye.com.geometricweather.R$attr: int useMaterialThemeColors -com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_w -okhttp3.internal.cache.CacheInterceptor$1: okio.BufferedSource val$source -android.didikee.donate.R$drawable: int abc_textfield_search_material -com.google.android.material.chip.Chip: void setChipEndPaddingResource(int) -okio.Segment: void writeTo(okio.Segment,int) -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode[] values() -androidx.lifecycle.extensions.R$color: R$color() -androidx.constraintlayout.widget.R$attr: int autoSizeMaxTextSize -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: cyanogenmod.externalviews.ExternalViewProviderService$Provider this$1 -androidx.lifecycle.ComputableLiveData$1: void onActive() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: AccuDailyResult$DailyForecasts$Day$WindGust$Speed() -androidx.hilt.work.R$id: int title -androidx.appcompat.R$styleable: int MenuItem_android_alphabeticShortcut -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: MfForecastResult$DailyForecast$DailyTemperature() -androidx.preference.R$color: int material_blue_grey_800 -wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.Integer index +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +wangdaye.com.geometricweather.R$styleable: int FlowLayout_itemSpacing +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableLeft +james.adaptiveicon.R$attr: int textAppearanceLargePopupMenu +cyanogenmod.profiles.RingModeSettings: void setValue(java.lang.String) +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DialogWhenLarge +com.tencent.bugly.proguard.p: void b(int) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer getDbz() +androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_Dialog +com.google.android.material.R$styleable: int ActionBar_elevation +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customDimension +okhttp3.Headers$Builder: okhttp3.Headers$Builder addAll(okhttp3.Headers) +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy IDENTITY +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LAUNCHER +com.turingtechnologies.materialscrollbar.R$styleable: int[] AppBarLayout +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_animationDuration +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float pm10 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +android.didikee.donate.R$styleable: int AppCompatTheme_switchStyle +androidx.constraintlayout.widget.R$attr: int titleTextAppearance +androidx.coordinatorlayout.R$id: int accessibility_custom_action_28 +com.google.android.material.R$attr: int layout_editor_absoluteX +com.google.android.material.R$attr: int layout_constraintTop_creator +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents +com.google.android.material.datepicker.MaterialTextInputPicker: MaterialTextInputPicker() +james.adaptiveicon.R$attr: int toolbarStyle +androidx.dynamicanimation.R$attr: int font +com.google.android.material.R$styleable: int KeyTimeCycle_android_elevation +com.google.android.material.R$styleable: int BottomNavigationView_itemBackground +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription(org.reactivestreams.Subscriber,androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_4_material +com.google.gson.stream.JsonReader: java.lang.String nextQuotedValue(char) +androidx.constraintlayout.widget.R$styleable: int Transform_android_transformPivotY +cyanogenmod.externalviews.ExternalView: android.content.Context mContext +com.google.android.material.textfield.TextInputLayout: void setStartIconTintMode(android.graphics.PorterDuff$Mode) +androidx.vectordrawable.R$id: int accessibility_custom_action_22 +androidx.appcompat.resources.R$styleable: int GradientColor_android_tileMode +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionBar_Solid +wangdaye.com.geometricweather.R$styleable: int Preference_defaultValue +com.amap.api.location.AMapLocationClient: void stopLocation() +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_initialExpandedChildrenCount +androidx.appcompat.R$styleable: int ViewBackgroundHelper_backgroundTint +com.google.android.material.R$styleable: int ChipGroup_singleSelection +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertInTxIterable +com.tencent.bugly.proguard.ap +com.jaredrummler.android.colorpicker.R$attr: int seekBarStyle +okhttp3.internal.cache.InternalCache +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_track +cyanogenmod.app.CMTelephonyManager: void setDataConnectionSelectedOnSub(int) +androidx.lifecycle.ClassesInfoCache: int CALL_TYPE_NO_ARG +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX() +okhttp3.internal.connection.RealConnection: okhttp3.internal.connection.RealConnection testConnection(okhttp3.ConnectionPool,okhttp3.Route,java.net.Socket,long) +james.adaptiveicon.R$layout: int select_dialog_item_material +androidx.coordinatorlayout.R$id: int accessibility_custom_action_14 +androidx.preference.R$styleable: int SwitchCompat_splitTrack +com.tencent.bugly.crashreport.crash.e: com.tencent.bugly.crashreport.common.strategy.a c +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onComplete() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_subhead_material +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float getVisibility() +androidx.appcompat.R$dimen: int abc_dialog_title_divider_material +com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Indeterminate +com.amap.api.location.AMapLocationClientOption: boolean l +androidx.preference.R$style: int Preference_DialogPreference_EditTextPreference +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_chip_state_list_anim +com.google.android.material.R$color: int error_color_material_light +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.tencent.bugly.crashreport.common.info.b: java.lang.String c(android.content.Context) +cyanogenmod.themes.IThemeProcessingListener$Stub: IThemeProcessingListener$Stub() +com.xw.repo.bubbleseekbar.R$attr: int showText +wangdaye.com.geometricweather.R$styleable: int SearchView_defaultQueryHint +wangdaye.com.geometricweather.R$drawable: int shortcuts_sleet_foreground +com.jaredrummler.android.colorpicker.R$attr: int fragment +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256 +com.bumptech.glide.integration.okhttp.R$id: int bottom +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getMoonPhaseAngle() +okhttp3.logging.HttpLoggingInterceptor$Logger: void log(java.lang.String) +wangdaye.com.geometricweather.R$attr: int boxCornerRadiusBottomEnd +com.google.android.material.R$styleable: int Toolbar_android_gravity +wangdaye.com.geometricweather.R$drawable: int notif_temp_99 +androidx.preference.R$styleable: int MultiSelectListPreference_android_entries +wangdaye.com.geometricweather.R$string: int action_alert +com.turingtechnologies.materialscrollbar.R$attr: int navigationIcon +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_ChipGroup +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSize(int) +androidx.constraintlayout.widget.R$id: int progress_circular +okhttp3.internal.publicsuffix.PublicSuffixDatabase: java.lang.String[] EMPTY_RULE +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void removeInner(io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver) +com.google.android.material.bottomappbar.BottomAppBar: void setCradleVerticalOffset(float) +androidx.lifecycle.ReportFragment: androidx.lifecycle.ReportFragment get(android.app.Activity) +cyanogenmod.app.suggest.IAppSuggestManager$Stub: int TRANSACTION_getSuggestions +androidx.preference.R$styleable: int[] FontFamily +okio.Buffer: okio.ByteString hmac(java.lang.String,okio.ByteString) +com.amap.api.location.AMapLocation: void setDescription(java.lang.String) +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder callTimeout(java.time.Duration) +androidx.appcompat.resources.R$attr: int fontProviderQuery +androidx.activity.R$drawable: int notification_bg_normal_pressed +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Info +com.tencent.bugly.proguard.an: an() +james.adaptiveicon.R$drawable: int abc_ic_arrow_drop_right_black_24dp +com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getIndicatorWidth() +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Small +okio.Buffer: okio.Buffer writeByte(int) +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeCloseDrawable +james.adaptiveicon.R$styleable: int AppCompatTheme_seekBarStyle +okhttp3.logging.LoggingEventListener: void logWithTime(java.lang.String) +cyanogenmod.app.CMContextConstants$Features: java.lang.String LIVE_LOCK_SCREEN +com.google.android.material.datepicker.MaterialDatePicker +okhttp3.internal.Util: java.util.Map immutableMap(java.util.Map) +com.bumptech.glide.R$attr: int keylines +androidx.transition.R$id: int async +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeightLarge +androidx.appcompat.R$styleable: int MenuGroup_android_visible +com.tencent.bugly.crashreport.common.info.b: int l(android.content.Context) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List dailyForecast +androidx.work.R$id: int action_image +okhttp3.internal.cache.DiskLruCache$Snapshot +com.xw.repo.bubbleseekbar.R$attr: int bsb_section_text_interval +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorControlHighlight +com.google.android.material.R$styleable: int Toolbar_contentInsetRight +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_16 +androidx.loader.content.Loader: void registerOnLoadCanceledListener(androidx.loader.content.Loader$OnLoadCanceledListener) +androidx.preference.R$drawable: int abc_scrubber_primary_mtrl_alpha +android.didikee.donate.R$styleable: int[] AppCompatTheme +com.jaredrummler.android.colorpicker.R$drawable: int abc_popup_background_mtrl_mult +com.google.android.material.R$styleable: int PropertySet_layout_constraintTag +com.baidu.location.e.h$a: com.baidu.location.e.h$a a +androidx.core.R$attr +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean images +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getSo2() +androidx.appcompat.widget.AppCompatRadioButton: void setSupportButtonTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Button +androidx.appcompat.R$styleable: int[] FontFamily +com.google.android.material.textfield.TextInputLayout: int getBaseline() +wangdaye.com.geometricweather.R$string: int feedback_request_permission +wangdaye.com.geometricweather.common.basic.models.weather.Alert: int priority +io.reactivex.internal.queue.SpscArrayQueue +androidx.appcompat.R$styleable: int FontFamilyFont_font +androidx.lifecycle.LiveData: LiveData(java.lang.Object) +androidx.appcompat.R$attr: int dialogCornerRadius +wangdaye.com.geometricweather.R$string: int key_notification +androidx.appcompat.R$attr: int textColorAlertDialogListItem +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property No2 +androidx.preference.R$styleable: int AppCompatTextView_drawableRightCompat +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarButtonStyle +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,long,java.util.concurrent.TimeUnit) +androidx.vectordrawable.animated.R$dimen: R$dimen() +com.google.android.material.R$string: int abc_menu_space_shortcut_label +cyanogenmod.app.StatusBarPanelCustomTile: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$id: int accessibility_custom_action_26 +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_DrawerArrowToggle +okhttp3.internal.tls.OkHostnameVerifier: java.util.List allSubjectAltNames(java.security.cert.X509Certificate) +cyanogenmod.providers.CMSettings$Secure: java.lang.String RING_HOME_BUTTON_BEHAVIOR +com.google.android.material.slider.BaseSlider: float getValueOfTouchPosition() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getSunSet() +androidx.constraintlayout.widget.R$drawable: int abc_ic_ab_back_material +androidx.constraintlayout.utils.widget.ImageFilterView: float getContrast() +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.CompositeDisposable set +retrofit2.DefaultCallAdapterFactory$1 +com.jaredrummler.android.colorpicker.R$styleable: int[] MenuGroup +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.bumptech.glide.load.engine.GlideException: void logRootCauses(java.lang.String) +androidx.coordinatorlayout.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: double Value +androidx.cardview.widget.CardView: void setCardBackgroundColor(int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: java.lang.String uvIndex +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.R$attr: int layout_constraintBottom_toTopOf +com.google.android.material.R$styleable: int GradientColor_android_centerY +androidx.preference.R$styleable: int ViewStubCompat_android_inflatedId +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.tencent.bugly.proguard.y: boolean b(java.lang.String,java.lang.String,java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_ttcIndex +androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentStyle +com.xw.repo.bubbleseekbar.R$attr: int actionModeSelectAllDrawable +wangdaye.com.geometricweather.R$attr: int materialCardViewStyle +com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_default +okhttp3.internal.tls.DistinguishedNameParser: char getUTF8() +io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean offer(java.lang.Object) +androidx.appcompat.widget.ActionBarOverlayLayout: void setOverlayMode(boolean) +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_DarkActionBar +retrofit2.KotlinExtensions$suspendAndThrow$1: KotlinExtensions$suspendAndThrow$1(kotlin.coroutines.Continuation) +com.xw.repo.bubbleseekbar.R$attr: int thickness +com.google.android.material.R$styleable: int StateListDrawable_android_variablePadding +androidx.preference.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +androidx.appcompat.resources.R$drawable: int notification_tile_bg +androidx.work.ListenableWorker +android.didikee.donate.R$drawable: int abc_list_focused_holo +okhttp3.internal.http1.Http1Codec$FixedLengthSource: long read(okio.Buffer,long) +okhttp3.internal.connection.RealConnection: void startHttp2(int) +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemDrawable(int) +james.adaptiveicon.R$attr: int listPreferredItemHeight +james.adaptiveicon.R$dimen: int compat_button_inset_horizontal_material +okhttp3.internal.http2.Http2Reader +com.jaredrummler.android.colorpicker.R$layout: int preference_recyclerview +android.didikee.donate.R$style +androidx.appcompat.R$style: int Base_Theme_AppCompat_DialogWhenLarge +cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_MWI_NOTIFICATION +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$attr: int prefixTextAppearance +okhttp3.internal.http2.Http2Stream: void waitForIo() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_CBC_SHA +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_dark_focused +androidx.preference.R$id: int action_text +com.jaredrummler.android.colorpicker.R$drawable: int cpv_btn_background_pressed +androidx.lifecycle.ProcessLifecycleOwner$1: void run() +androidx.constraintlayout.widget.R$attr: int customColorDrawableValue +com.turingtechnologies.materialscrollbar.R$layout: int abc_cascading_menu_item_layout +androidx.lifecycle.ProcessLifecycleOwner: boolean mStopSent +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String STYLE_URI +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout +com.google.android.material.R$style: int Widget_Design_Snackbar +cyanogenmod.app.CustomTile$ExpandedStyle: int NO_STYLE +com.google.android.gms.base.R$drawable: int common_full_open_on_phone +androidx.hilt.work.R$dimen: int compat_button_padding_vertical_material +com.github.rahatarmanahmed.cpv.CircularProgressView: int getColor() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupWindow +androidx.constraintlayout.widget.R$id: int checkbox +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color Color +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +okhttp3.ConnectionPool: long keepAliveDurationNs +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeWindSpeed() +james.adaptiveicon.R$integer: int config_tooltipAnimTime +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int DRIZZLE +okhttp3.internal.connection.ConnectionSpecSelector: java.util.List connectionSpecs +androidx.preference.R$attr: int preferenceCategoryTitleTextAppearance +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) +okhttp3.ConnectionSpec +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean l +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: PrecipitationProbability(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +okhttp3.RealCall: okhttp3.Response execute() +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setLiveLockScreen(java.lang.String) +androidx.appcompat.resources.R$styleable: int FontFamilyFont_android_font +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_layout +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DewPoint +androidx.recyclerview.R$dimen: int notification_action_icon_size +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +com.google.android.material.R$attr: int dragScale +okhttp3.Cookie: Cookie(okhttp3.Cookie$Builder) +androidx.constraintlayout.widget.R$attr: int mock_diagonalsColor +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric: int UnitType +androidx.viewpager.R$drawable: int notification_action_background +androidx.appcompat.R$attr: int fontProviderAuthority +cyanogenmod.profiles.StreamSettings: StreamSettings(int,int,boolean) +androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_min +androidx.constraintlayout.utils.widget.ImageFilterView: ImageFilterView(android.content.Context,android.util.AttributeSet,int) +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.functions.Function) +com.turingtechnologies.materialscrollbar.R$attr: int scrimBackground +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_radioButtonStyle +com.google.android.material.R$id: int test_radiobutton_app_button_tint +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Subtitle2 +androidx.preference.R$layout: int abc_screen_simple_overlay_action_mode +io.reactivex.Observable: io.reactivex.Observable throttleLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.jaredrummler.android.colorpicker.R$anim: R$anim() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedWidthMajor +androidx.preference.R$color: int background_material_light +com.xw.repo.bubbleseekbar.R$attr: int actionButtonStyle +wangdaye.com.geometricweather.R$color: int primary_dark_material_dark +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.String toString() +androidx.recyclerview.widget.RecyclerView: void setHasFixedSize(boolean) +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +james.adaptiveicon.R$styleable: int[] AppCompatSeekBar +com.jaredrummler.android.colorpicker.R$id: int listMode +com.google.android.material.R$styleable: int AppCompatTheme_tooltipForegroundColor +com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_corner_radius_small +androidx.appcompat.widget.AppCompatButton: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +android.didikee.donate.R$styleable: int[] AppCompatSeekBar +wangdaye.com.geometricweather.R$dimen: int action_bar_size +cyanogenmod.app.IPartnerInterface: java.lang.String getCurrentHotwordPackageName() +androidx.appcompat.R$id: int accessibility_custom_action_29 +com.turingtechnologies.materialscrollbar.R$drawable: int abc_edit_text_material +james.adaptiveicon.R$attr +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_textStartPadding +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int NO_REQUEST_HAS_VALUE +com.google.android.material.R$style: int Base_V7_Widget_AppCompat_Toolbar +com.turingtechnologies.materialscrollbar.R$attr: int closeIconEnabled +android.didikee.donate.R$layout: int abc_action_bar_title_item +com.google.android.material.R$color: int test_mtrl_calendar_day +wangdaye.com.geometricweather.R$attr: int minWidth +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Small +com.google.android.material.slider.RangeSlider: void setMinSeparationValue(float) +wangdaye.com.geometricweather.R$dimen: int material_filled_edittext_font_1_3_padding_top +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a +androidx.dynamicanimation.R$id: int tag_unhandled_key_event_manager +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +com.xw.repo.bubbleseekbar.R$styleable: int View_android_focusable +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int ThunderstormProbability +com.bumptech.glide.R$attr +com.xw.repo.bubbleseekbar.R$attr: int switchStyle +okhttp3.internal.platform.Platform: int INFO +com.xw.repo.bubbleseekbar.R$layout: int abc_list_menu_item_radio +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node find(java.lang.Object,boolean) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DOUBLE_TAP_SLEEP_GESTURE_VALIDATOR +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_navigationIcon +cyanogenmod.weather.RequestInfo$1: java.lang.Object createFromParcel(android.os.Parcel) +io.reactivex.internal.observers.ForEachWhileObserver: boolean done +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow3h +okio.RealBufferedSource: okio.ByteString readByteString(long) +io.reactivex.Observable: io.reactivex.Observable takeLast(int) +android.didikee.donate.R$id: int actions +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_TextView_SpinnerItem +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +wangdaye.com.geometricweather.R$string: int settings_title_temperature_unit +androidx.constraintlayout.motion.widget.MotionLayout +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getRagweedIndex() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathStart() +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCustomSize(int) +androidx.activity.R$id: int italic +com.google.android.material.R$id: int month_navigation_previous +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener getRequestListener() +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec COMPATIBLE_TLS +com.google.android.material.R$attr: int haloColor +io.reactivex.exceptions.OnErrorNotImplementedException: OnErrorNotImplementedException(java.lang.Throwable) +androidx.constraintlayout.widget.R$attr: int customNavigationLayout +androidx.constraintlayout.widget.R$attr: int sizePercent +okhttp3.Protocol: okhttp3.Protocol valueOf(java.lang.String) +androidx.appcompat.R$styleable: int AppCompatTheme_colorPrimary +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizePresetSizes +android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +androidx.swiperefreshlayout.R$styleable: int[] FontFamily +androidx.activity.R$styleable: int GradientColor_android_centerColor +com.google.android.material.R$attr: int iconifiedByDefault +com.baidu.location.indoor.mapversion.c.a$d: void a(java.lang.String) +com.google.android.material.slider.RangeSlider: void setThumbStrokeColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: double lon +james.adaptiveicon.R$integer: R$integer() +wangdaye.com.geometricweather.R$id: int title_template +james.adaptiveicon.R$id: int notification_main_column +androidx.preference.R$drawable: int notification_bg_low_normal +com.google.android.material.chip.Chip: com.google.android.material.animation.MotionSpec getHideMotionSpec() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +androidx.legacy.coreutils.R$id: int right_side +androidx.preference.R$style: int ThemeOverlay_AppCompat_ActionBar +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconTint +androidx.constraintlayout.widget.R$color: int material_grey_800 +james.adaptiveicon.R$styleable: int TextAppearance_android_textFontWeight +android.didikee.donate.R$style: int Widget_AppCompat_ProgressBar_Horizontal +com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(long,java.lang.String) +cyanogenmod.providers.CMSettings$1: boolean validate(java.lang.String) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListView_DropDown +androidx.constraintlayout.widget.R$styleable: int SearchView_suggestionRowLayout +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +com.bumptech.glide.MemoryCategory: float multiplier +wangdaye.com.geometricweather.R$drawable: int notif_temp_21 +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: LocationEntityDao$Properties() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Medium_Inverse +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.savedstate.SavedStateRegistry mSavedStateRegistry +com.google.android.gms.internal.location.zzbg +james.adaptiveicon.R$styleable: int AppCompatTheme_searchViewStyle +wangdaye.com.geometricweather.R$styleable: int Preference_android_layout +okhttp3.internal.http2.Http2Stream: java.util.Deque access$000(okhttp3.internal.http2.Http2Stream) +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.amap.api.location.AMapLocationClientOption: boolean isOffset() +com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getTemperatureText(android.content.Context,int) +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_elevation +cyanogenmod.providers.CMSettings$Global: boolean putFloat(android.content.ContentResolver,java.lang.String,float) +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: int capacityHint +cyanogenmod.providers.CMSettings$Secure: java.lang.String DISPLAY_GAMMA_CALIBRATION_PREFIX +androidx.preference.R$styleable: int AppCompatTheme_dialogTheme +wangdaye.com.geometricweather.R$styleable: int[] RangeSlider +wangdaye.com.geometricweather.db.entities.DailyEntity: void setPm10(java.lang.Float) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedHeightMinor +androidx.constraintlayout.widget.R$styleable: int MenuItem_contentDescription +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge +com.google.gson.stream.JsonWriter: void string(java.lang.String) +cyanogenmod.weather.WeatherInfo: int access$902(cyanogenmod.weather.WeatherInfo,int) +com.google.android.material.R$layout: int text_view_with_line_height_from_layout +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_typeface +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_COLOR_VALIDATOR +wangdaye.com.geometricweather.db.entities.MinutelyEntity: int getMinuteInterval() +com.amap.api.location.AMapLocation: void setAoiName(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int tooltip_frame_light +com.google.android.material.R$style: int Base_Widget_AppCompat_Spinner +com.tencent.bugly.crashreport.CrashReport: java.lang.String getAppID() +com.tencent.bugly.proguard.d: void b() +wangdaye.com.geometricweather.R$id: int guideline +com.google.android.material.R$drawable: int abc_list_focused_holo +io.reactivex.exceptions.UndeliverableException: long serialVersionUID +androidx.core.R$dimen: int compat_notification_large_icon_max_width +cyanogenmod.app.suggest.AppSuggestManager: java.lang.String TAG +androidx.constraintlayout.widget.R$attr: int layout_constraintHeight_default +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_material_dark +com.amap.api.location.LocationManagerBase: void stopAssistantLocation() +com.google.android.material.R$id: int text_input_end_icon +okhttp3.internal.http1.Http1Codec: Http1Codec(okhttp3.OkHttpClient,okhttp3.internal.connection.StreamAllocation,okio.BufferedSource,okio.BufferedSink) +okio.Buffer$UnsafeCursor: long resizeBuffer(long) +androidx.appcompat.widget.AppCompatButton: void setSupportCompoundDrawablesTintList(android.content.res.ColorStateList) +com.google.android.material.R$layout: int design_bottom_sheet_dialog +com.google.android.material.R$color: int design_dark_default_color_background +androidx.constraintlayout.widget.R$id: int custom +androidx.appcompat.R$layout: int notification_template_custom_big +okhttp3.OkHttpClient: okhttp3.Dns dns() +okhttp3.internal.http2.Http2Connection$5: void execute() +androidx.hilt.lifecycle.R$anim: int fragment_close_exit +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_colored_material +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void replayFinal() +com.google.android.material.R$interpolator: int fast_out_slow_in +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerNext(io.reactivex.internal.observers.InnerQueuedObserver,java.lang.Object) +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.functions.BiPredicate comparer +wangdaye.com.geometricweather.R$color: int material_grey_50 +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitationProbability +com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_material_dark +wangdaye.com.geometricweather.R$dimen: int material_clock_period_toggle_height +com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_ttcIndex +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low_normal +wangdaye.com.geometricweather.R$id: int preset +com.jaredrummler.android.colorpicker.R$id: int activity_chooser_view_content +com.google.android.material.R$styleable: int MenuView_preserveIconSpacing +cyanogenmod.app.CustomTileListenerService: int mCurrentUser +james.adaptiveicon.R$styleable: int View_paddingStart +cyanogenmod.weatherservice.WeatherProviderService: void attachBaseContext(android.content.Context) +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableTop +okio.RealBufferedSource: byte[] readByteArray(long) +cyanogenmod.themes.ThemeManager$2 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.util.Date getPubTime() +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked +androidx.drawerlayout.R$id: int notification_main_column +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setBottomTextColor(int) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String weatherSource +com.google.android.material.R$styleable: int MenuItem_android_enabled +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldDescription(java.lang.String) +androidx.fragment.R$styleable: int GradientColor_android_endX +com.tencent.bugly.proguard.z: boolean a(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int Transition_layoutDuringTransition +okhttp3.OkHttpClient: okhttp3.OkHttpClient$Builder newBuilder() +io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged() +android.didikee.donate.R$styleable: int MenuItem_android_numericShortcut +com.jaredrummler.android.colorpicker.R$drawable: int notification_bg +okhttp3.internal.http1.Http1Codec$FixedLengthSink +androidx.fragment.R$id: int right_side +okio.RealBufferedSource: byte[] readByteArray() +cyanogenmod.app.CustomTile$ExpandedStyle: android.widget.RemoteViews getContentViews() +androidx.preference.R$styleable: int[] ViewBackgroundHelper +androidx.work.R$id: int notification_main_column_container +com.google.android.material.textfield.TextInputLayout: void setStartIconCheckable(boolean) +androidx.preference.R$styleable: int ColorStateListItem_android_alpha +com.amap.api.location.AMapLocationClientOption: boolean OPEN_ALWAYS_SCAN_WIFI +com.tencent.bugly.crashreport.CrashReport: void postException(int,java.lang.String,java.lang.String,java.lang.String,java.util.Map) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dropDownListViewStyle +wangdaye.com.geometricweather.R$string: int settings_title_notification_background +wangdaye.com.geometricweather.R$dimen: int mtrl_card_checked_icon_size +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: int requestFusion(int) +com.google.android.gms.base.R$id: int standard +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_toLeftOf +androidx.appcompat.R$anim: int abc_slide_out_top +androidx.drawerlayout.R$styleable: int GradientColor_android_startColor +androidx.preference.R$drawable: int abc_ic_menu_share_mtrl_alpha +androidx.hilt.lifecycle.R$style: int TextAppearance_Compat_Notification_Title +androidx.constraintlayout.widget.R$color: int abc_search_url_text_normal +com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_Tooltip +com.google.android.material.R$styleable: int Constraint_android_rotationY +wangdaye.com.geometricweather.R$string: int ceiling +cyanogenmod.externalviews.KeyguardExternalView$4: void run() +cyanogenmod.providers.CMSettings$System: android.net.Uri CONTENT_URI +com.google.android.material.R$string: int abc_action_mode_done +androidx.coordinatorlayout.R$layout: int notification_template_custom_big +androidx.viewpager.widget.PagerTabStrip: PagerTabStrip(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: java.lang.String Unit +james.adaptiveicon.R$attr: int showText +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int sourceMode +okhttp3.OkHttpClient: int connectTimeout +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_HelperText +com.google.android.material.floatingactionbutton.FloatingActionButton$BaseBehavior: FloatingActionButton$BaseBehavior() +james.adaptiveicon.R$attr: int listPreferredItemPaddingLeft +com.jaredrummler.android.colorpicker.R$dimen: int notification_big_circle_margin +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_ICONS +com.tencent.bugly.proguard.z: z() +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: java.util.List rainForecasts +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_title +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_3_30 +com.jaredrummler.android.colorpicker.R$attr: int dividerHorizontal +com.google.android.material.R$attr: int contrast +com.google.android.material.R$styleable: int[] KeyAttribute +com.google.android.material.R$styleable: int[] ExtendedFloatingActionButton +com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableLeftCompat +androidx.dynamicanimation.R$id: int notification_main_column +androidx.preference.R$dimen: int abc_control_padding_material +androidx.vectordrawable.R$id: int accessibility_custom_action_10 +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification +com.google.android.material.navigation.NavigationView: void setItemIconPaddingResource(int) +okhttp3.ConnectionPool: long cleanup(long) +wangdaye.com.geometricweather.R$styleable: int Layout_constraint_referenced_ids +androidx.viewpager.R$styleable: int[] ColorStateListItem +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableEndCompat +com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar_Day_Selected +androidx.constraintlayout.widget.R$attr: int ratingBarStyle +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getWeatherKind() +androidx.appcompat.resources.R$layout: int notification_template_icon_group +android.didikee.donate.R$id: int scrollIndicatorDown +androidx.appcompat.R$color: int highlighted_text_material_dark +wangdaye.com.geometricweather.R$styleable: int View_paddingEnd +okio.Segment: int SHARE_MINIMUM +com.bumptech.glide.R$integer: int status_bar_notification_info_maxnum +androidx.constraintlayout.widget.R$attr: int constraintSetStart +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeStepGranularity +androidx.vectordrawable.R$layout: int notification_action_tombstone +com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorCornerRadius(int) +com.xw.repo.bubbleseekbar.R$attr: int backgroundSplit +com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_percent +com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_ttcIndex +androidx.preference.R$attr: int thumbTextPadding +wangdaye.com.geometricweather.R$color: int background_floating_material_dark +com.google.android.material.R$style: int Base_Theme_AppCompat_Light +com.google.android.material.slider.Slider: void setThumbStrokeColor(android.content.res.ColorStateList) +james.adaptiveicon.R$drawable: int abc_switch_thumb_material +androidx.preference.R$styleable: int BackgroundStyle_selectableItemBackground +androidx.preference.R$style: int Widget_AppCompat_PopupMenu_Overflow +com.google.android.material.textfield.TextInputLayout: void setCounterTextColor(android.content.res.ColorStateList) +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +androidx.vectordrawable.animated.R$dimen: int notification_content_margin_start +androidx.preference.R$styleable: int[] SearchView +cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: int FAHRENHEIT +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog +androidx.legacy.coreutils.R$drawable: int notification_action_background +com.tencent.bugly.crashreport.common.info.a: java.lang.Boolean am +com.turingtechnologies.materialscrollbar.R$id: int save_non_transition_alpha +io.reactivex.internal.subscribers.StrictSubscriber: void onError(java.lang.Throwable) +cyanogenmod.providers.CMSettings$System +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_toTopOf +io.reactivex.internal.util.EmptyComponent: boolean isDisposed() +io.reactivex.internal.util.NotificationLite: boolean acceptFull(java.lang.Object,io.reactivex.Observer) +androidx.appcompat.resources.R$dimen: int notification_content_margin_start +androidx.preference.R$layout: int expand_button +androidx.appcompat.R$style: int Base_V23_Theme_AppCompat_Light +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void dispose() +androidx.appcompat.R$color: int material_grey_800 +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatTextHelper +com.tencent.bugly.crashreport.crash.b: void a(java.util.List,long,boolean,boolean,boolean) +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveDecay +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitationDuration +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean validate(org.reactivestreams.Subscription,org.reactivestreams.Subscription) +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginTop(int) +wangdaye.com.geometricweather.R$drawable: int mtrl_popupmenu_background_dark +io.reactivex.internal.disposables.ArrayCompositeDisposable: ArrayCompositeDisposable(int) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_minHeight +wangdaye.com.geometricweather.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_6 +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void cancel() +androidx.constraintlayout.widget.R$styleable: int ColorStateListItem_alpha +cyanogenmod.profiles.RingModeSettings: void processOverride(android.content.Context) +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() +com.tencent.bugly.CrashModule: com.tencent.bugly.CrashModule getInstance() +com.xw.repo.bubbleseekbar.R$color: int background_floating_material_dark +com.google.android.material.floatingactionbutton.FloatingActionButton: void setShadowPaddingEnabled(boolean) +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_ttcIndex +okio.Buffer: int readIntLe() +com.google.android.material.circularreveal.CircularRevealRelativeLayout: CircularRevealRelativeLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +androidx.vectordrawable.R$id: int accessibility_custom_action_8 +androidx.appcompat.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_min +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$State getStateAfter(androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.R$dimen: int design_navigation_separator_vertical_padding +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String ICON_PREVIEW_3 +cyanogenmod.providers.CMSettings$Secure: long getLongForUser(android.content.ContentResolver,java.lang.String,int) +androidx.activity.R$id: int time +com.xw.repo.bubbleseekbar.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +io.reactivex.internal.subscriptions.SubscriptionHelper: void cancel() +james.adaptiveicon.R$styleable: int AppCompatTheme_alertDialogCenterButtons +okhttp3.Cache: int readInt(okio.BufferedSource) +wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_layout +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Settings peerSettings +androidx.appcompat.resources.R$id: int accessibility_custom_action_20 +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +com.google.android.material.R$style: int Theme_MaterialComponents_CompactMenu +cyanogenmod.weather.RequestInfo: RequestInfo() +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +androidx.vectordrawable.R$id: int dialog_button +com.google.android.material.R$id: int text2 +com.amap.api.fence.PoiItem: java.lang.String a +cyanogenmod.profiles.LockSettings +android.didikee.donate.R$attr: int buttonBarNegativeButtonStyle +okhttp3.Headers$Builder +okhttp3.internal.http1.Http1Codec: okio.Sink newFixedLengthSink(long) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$3: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +com.tencent.bugly.crashreport.biz.b: int g() +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void trimHead() +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.String) +androidx.appcompat.R$drawable: int abc_ic_star_black_16dp +com.tencent.bugly.proguard.v: boolean a(com.tencent.bugly.proguard.an,com.tencent.bugly.crashreport.common.info.a,com.tencent.bugly.crashreport.common.strategy.a) +com.jaredrummler.android.colorpicker.R$dimen: int fastscroll_margin +wangdaye.com.geometricweather.settings.dialogs.AnimatableIconDialog: AnimatableIconDialog() +com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context,android.util.AttributeSet) +okhttp3.OkHttpClient$1: okhttp3.internal.connection.StreamAllocation streamAllocation(okhttp3.Call) +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_elevation +android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +com.turingtechnologies.materialscrollbar.R$id: int checkbox +com.tencent.bugly.crashreport.biz.UserInfoBean: UserInfoBean(android.os.Parcel) +com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableCompat_android_visible +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_3DES_EDE_CBC_SHA +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackTintList() +com.baidu.location.e.l$b: com.baidu.location.e.l$b[] values() +wangdaye.com.geometricweather.R$drawable: int widget_card_light_20 +wangdaye.com.geometricweather.R$attr: int triggerSlack +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTint +com.turingtechnologies.materialscrollbar.R$dimen: int compat_notification_large_icon_max_height +retrofit2.OkHttpCall: boolean canceled +wangdaye.com.geometricweather.db.entities.AlertEntity: int getColor() +cyanogenmod.externalviews.KeyguardExternalView$3: void run() +wangdaye.com.geometricweather.R$styleable: int[] DialogPreference +okio.RealBufferedSource: byte readByte() +androidx.appcompat.widget.SwitchCompat: void setTrackResource(int) +androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.R$styleable: int DrawerArrowToggle_thickness +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric: java.lang.String Unit +androidx.constraintlayout.widget.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +james.adaptiveicon.R$string: int abc_capital_off +retrofit2.Utils$WildcardTypeImpl: boolean equals(java.lang.Object) +androidx.constraintlayout.widget.R$drawable: int tooltip_frame_dark +okhttp3.EventListener: void responseHeadersEnd(okhttp3.Call,okhttp3.Response) +com.google.android.material.slider.BaseSlider: void addOnChangeListener(com.google.android.material.slider.BaseOnChangeListener) +com.google.android.material.R$styleable: int NavigationView_itemIconPadding +androidx.lifecycle.MutableLiveData: MutableLiveData(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_checkboxStyle +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okio.BufferedSource delegateSource +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerFamilyTopLeft +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.functions.Function mapper +androidx.preference.R$styleable: int PreferenceFragmentCompat_android_layout +okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.Response cacheResponse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setPressure(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$id: int staticPostLayout +okio.Timeout: void waitUntilNotified(java.lang.Object) +androidx.preference.R$drawable: int notification_bg_low +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitleTextAppearance +androidx.coordinatorlayout.R$attr: int fontProviderPackage +okio.RealBufferedSink$1: void write(byte[],int,int) +wangdaye.com.geometricweather.R$style: int PreferenceFragmentList +io.reactivex.Observable: io.reactivex.Observable mergeDelayError(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +androidx.customview.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$styleable: int[] RadialViewGroup +androidx.constraintlayout.widget.R$styleable: int SearchView_android_inputType +james.adaptiveicon.R$attr: int windowFixedWidthMajor +com.google.android.material.R$string: int material_clock_toggle_content_description +io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: ObservableReplay$UnboundedReplayBuffer(int) +com.google.android.material.R$styleable: int TextInputLayout_helperTextTextColor +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias +io.reactivex.Observable: io.reactivex.Observable switchMap(io.reactivex.functions.Function,int) +com.google.android.material.circularreveal.CircularRevealFrameLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +retrofit2.package-info +androidx.lifecycle.ReflectiveGenericLifecycleObserver: androidx.lifecycle.ClassesInfoCache$CallbackInfo mInfo +androidx.appcompat.R$style: int Platform_V21_AppCompat +com.amap.api.location.AMapLocation: java.lang.String getAddress() +androidx.drawerlayout.R$id: int title +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +com.jaredrummler.android.colorpicker.R$attr: int dividerPadding +androidx.constraintlayout.widget.R$styleable: int SearchView_android_maxWidth +com.google.android.material.R$styleable: int BottomNavigationView_itemIconTint +androidx.preference.R$style: int Widget_AppCompat_Spinner_DropDown +androidx.appcompat.R$style: int TextAppearance_AppCompat_Subhead +com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_24 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_CALL_COLOR_VALIDATOR +wangdaye.com.geometricweather.R$layout: int item_location +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Imperial Imperial +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.util.List getValue() +com.google.android.material.R$dimen: int notification_large_icon_width +io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier valueOf(java.lang.String) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TabLayout_Colored +com.google.android.material.R$anim: int abc_slide_in_bottom +androidx.preference.R$attr: int orderingFromXml +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean cancelOnReplace +com.github.rahatarmanahmed.cpv.CircularProgressView$2: CircularProgressView$2(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +retrofit2.RequestFactory$Builder: java.lang.String PARAM +io.reactivex.internal.schedulers.ScheduledRunnable: void run() +io.reactivex.Observable: io.reactivex.Observable dematerialize() +james.adaptiveicon.R$dimen: int notification_big_circle_margin +androidx.cardview.R$attr: int contentPaddingLeft +androidx.hilt.work.R$styleable: int ColorStateListItem_android_alpha +com.google.android.material.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom +org.greenrobot.greendao.DaoException: DaoException(java.lang.String,java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int ColorPickerView_cpv_alphaChannelVisible +com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierMargin +com.google.android.material.R$color: int mtrl_btn_text_btn_ripple_color +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginTop +okio.ByteString: okio.ByteString substring(int) +com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Surface +android.didikee.donate.R$style: int Base_V7_Widget_AppCompat_EditText +androidx.transition.R$style +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickActiveTintList() +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: javax.net.ssl.X509TrustManager trustManager +com.google.android.gms.common.api.UnsupportedApiCallException: java.lang.String getMessage() +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_7 +wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_srcCompat +androidx.appcompat.widget.AppCompatButton: AppCompatButton(android.content.Context) +android.didikee.donate.R$attr: int radioButtonStyle +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSteps +okhttp3.internal.http2.Http2Connection: void writeData(int,boolean,okio.Buffer,long) +androidx.appcompat.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_singleLineTitle +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getIconsThemePackageName() +androidx.constraintlayout.widget.R$anim: int abc_shrink_fade_out_from_bottom +okio.ByteString: byte getByte(int) +androidx.core.app.JobIntentService: JobIntentService() +com.amap.api.location.AMapLocationClient: com.amap.api.location.LocationManagerBase b +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: void onFinishedProcessing(java.lang.String) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: int hasSeaBulletin +okio.AsyncTimeout: okio.AsyncTimeout awaitTimeout() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_127 +com.tencent.bugly.crashreport.crash.c: void e() +androidx.lifecycle.extensions.R$dimen: int compat_notification_large_icon_max_height +androidx.preference.R$styleable: int DrawerArrowToggle_drawableSize +okhttp3.Response$Builder: okhttp3.Response$Builder headers(okhttp3.Headers) +androidx.vectordrawable.animated.R$drawable: int notification_template_icon_low_bg +com.tencent.bugly.crashreport.common.info.b: java.lang.String[] c +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +wangdaye.com.geometricweather.R$attr: int bsb_show_section_mark +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabRippleColor +androidx.lifecycle.Transformations$3: androidx.lifecycle.MediatorLiveData val$outputLiveData +androidx.constraintlayout.widget.R$dimen: int abc_search_view_preferred_width +androidx.constraintlayout.widget.R$styleable: int TextAppearance_fontVariationSettings +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: java.lang.String color +androidx.lifecycle.AbstractSavedStateViewModelFactory +com.google.android.material.R$style: int Widget_AppCompat_RatingBar +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_Button +com.google.android.material.R$attr: int roundPercent +androidx.constraintlayout.widget.R$drawable: int abc_scrubber_control_off_mtrl_alpha +androidx.hilt.work.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$string: int wind_speed +androidx.constraintlayout.widget.R$attr: int defaultDuration +androidx.lifecycle.LiveData$ObserverWrapper: boolean isAttachedTo(androidx.lifecycle.LifecycleOwner) +com.google.android.material.R$styleable: int[] ActionBar +androidx.appcompat.R$styleable: int ActionBar_contentInsetRight +androidx.constraintlayout.widget.R$attr: int layout_goneMarginRight +androidx.recyclerview.widget.RecyclerView$SavedState +wangdaye.com.geometricweather.R$bool: int enable_system_alarm_service_default +okhttp3.internal.connection.RouteDatabase: void connected(okhttp3.Route) +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String A +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +androidx.lifecycle.AbstractSavedStateViewModelFactory: androidx.lifecycle.Lifecycle mLifecycle +okhttp3.internal.cache.DiskLruCache$3: void remove() +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval +com.google.android.material.R$attr: int materialCalendarMonthNavigationButton +cyanogenmod.app.LiveLockScreenInfo$Builder: android.content.ComponentName mComponent +com.google.android.material.R$styleable: int KeyTimeCycle_android_translationY +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderPackage +io.reactivex.Observable: io.reactivex.observers.TestObserver test(boolean) +okhttp3.internal.http2.Http2Codec: java.util.List HTTP_2_SKIPPED_RESPONSE_HEADERS +com.google.android.material.internal.ScrimInsetsFrameLayout: void setDrawBottomInsetForeground(boolean) +james.adaptiveicon.R$styleable: int[] RecycleListView +james.adaptiveicon.R$attr: int progressBarPadding +okhttp3.internal.http2.Settings: int COUNT +com.tencent.bugly.proguard.v: com.tencent.bugly.proguard.t l +io.reactivex.Observable: io.reactivex.Observable onExceptionResumeNext(io.reactivex.ObservableSource) +com.google.android.material.R$style: int Base_Widget_MaterialComponents_ProgressIndicator +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_end +cyanogenmod.externalviews.KeyguardExternalViewProviderService: KeyguardExternalViewProviderService() +androidx.appcompat.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +android.didikee.donate.R$drawable: int abc_ic_go_search_api_material +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +com.tencent.bugly.crashreport.common.info.a: java.lang.String x +retrofit2.Utils: boolean equals(java.lang.reflect.Type,java.lang.reflect.Type) +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$style: int Theme_AppCompat_Dialog +com.google.android.material.R$attr: int tabPaddingStart +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconTint +androidx.preference.R$dimen: int preference_icon_minWidth +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun +com.xw.repo.bubbleseekbar.R$attr: int elevation +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listMenuViewStyle +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: BaiduIPLocationResult$ContentBean$AddressDetailBean() +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,io.reactivex.functions.Function) +io.reactivex.Observable: io.reactivex.Observable distinct() +cyanogenmod.themes.ThemeManager$2$1: cyanogenmod.themes.ThemeManager$2 this$1 +com.github.rahatarmanahmed.cpv.BuildConfig: BuildConfig() +cyanogenmod.profiles.ConnectionSettings: boolean isDirty() +androidx.preference.R$styleable: int GradientColor_android_tileMode +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_fitToContents +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void onComplete() +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver +androidx.work.R$attr: int fontStyle +androidx.appcompat.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature +com.google.android.gms.common.SupportErrorDialogFragment: SupportErrorDialogFragment() +wangdaye.com.geometricweather.R$styleable: int CompoundButton_buttonTintMode +androidx.customview.R$attr: int font +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Light_Dialog +androidx.loader.R$attr: R$attr() +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode +androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +androidx.dynamicanimation.R$color: R$color() +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.Object NextOffsetChange +androidx.customview.R$drawable: int notification_tile_bg +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +androidx.preference.R$id: int accessibility_custom_action_6 +com.turingtechnologies.materialscrollbar.R$attr: int preserveIconSpacing +james.adaptiveicon.R$styleable: int MenuView_android_headerBackground +com.turingtechnologies.materialscrollbar.R$color: int secondary_text_disabled_material_light +com.baidu.location.indoor.c: c(int) +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver: void onComplete() +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void onComplete() +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_fontFamily +androidx.hilt.lifecycle.R$id: int normal +androidx.appcompat.R$styleable: int[] Toolbar +com.turingtechnologies.materialscrollbar.R$attr: int listPreferredItemHeight +cyanogenmod.externalviews.ExternalView: void onActivityPaused(android.app.Activity) +androidx.constraintlayout.widget.R$attr: int touchAnchorSide +com.google.android.material.progressindicator.ProgressIndicator: int getGrowMode() +androidx.appcompat.R$attr: int textAppearanceListItemSecondary +androidx.core.R$attr: int alpha +com.google.android.material.R$attr: int singleSelection +androidx.appcompat.R$string: int abc_menu_sym_shortcut_label +com.google.android.material.R$attr: int borderWidth +okhttp3.OkHttpClient$1: void addLenient(okhttp3.Headers$Builder,java.lang.String) +io.reactivex.internal.subscribers.StrictSubscriber: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int text_color +androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +androidx.appcompat.R$styleable: int AlertDialog_multiChoiceItemLayout +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float so2 +androidx.viewpager2.R$styleable: int RecyclerView_spanCount +com.google.android.material.R$styleable: int[] RecycleListView +com.google.android.material.R$color: int primary_text_disabled_material_light +com.amap.api.location.UmidtokenInfo$a +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date riseDate +androidx.core.R$string +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_cursor_material +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: javax.inject.Provider disposableProvider +com.google.android.material.appbar.AppBarLayout: void removeOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener) +wangdaye.com.geometricweather.background.receiver.widget.WidgetDayProvider: WidgetDayProvider() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginStart +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric Metric +wangdaye.com.geometricweather.R$styleable: int[] LiveLockScreen +cyanogenmod.app.Profile: void doSelect(android.content.Context,com.android.internal.policy.IKeyguardService) +retrofit2.ParameterHandler$PartMap: int p +com.google.android.material.R$styleable: int CustomAttribute_customDimension +androidx.dynamicanimation.R$id: int icon_group +androidx.constraintlayout.widget.R$attr: int switchMinWidth +com.google.android.material.slider.Slider: void setEnabled(boolean) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: FitSystemBarViewPager(android.content.Context) +androidx.loader.R$styleable: int ColorStateListItem_android_color +androidx.constraintlayout.widget.R$styleable: int[] Spinner +com.google.android.material.R$color: int mtrl_fab_ripple_color +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Level +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: cyanogenmod.app.ThemeVersion$ComponentVersion getDeviceComponentVersion(cyanogenmod.app.ThemeComponent) +com.xw.repo.bubbleseekbar.R$drawable: int abc_ratingbar_material +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabBarStyle +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2 +cyanogenmod.profiles.BrightnessSettings: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +androidx.viewpager2.R$layout +androidx.vectordrawable.animated.R$attr: R$attr() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_default +io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer) +androidx.appcompat.R$id: int buttonPanel +android.didikee.donate.R$color: int bright_foreground_material_light +wangdaye.com.geometricweather.R$drawable +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintEnd_toStartOf +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontStyle +androidx.lifecycle.SavedStateViewModelFactory +androidx.lifecycle.viewmodel.R: R() +androidx.coordinatorlayout.R$attr: int fontProviderFetchTimeout +okhttp3.internal.cache.CacheInterceptor: CacheInterceptor(okhttp3.internal.cache.InternalCache) +cyanogenmod.weather.WeatherInfo$DayForecast: android.os.Parcelable$Creator CREATOR +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_CREATE +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: org.greenrobot.greendao.Property CityId +com.jaredrummler.android.colorpicker.R$id: int notification_main_column +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_end +okhttp3.internal.http1.Http1Codec: int STATE_CLOSED +com.google.gson.stream.JsonReader: int PEEKED_BUFFERED +com.google.android.material.chip.Chip: void setChipIconTintResource(int) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogTheme +com.google.gson.internal.$Gson$Types$WildcardTypeImpl +wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_dark +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_dark_focused +wangdaye.com.geometricweather.R$attr: int panelBackground +okhttp3.internal.http.HttpHeaders: long contentLength(okhttp3.Headers) +com.google.android.material.R$attr: int closeIconTint +com.xw.repo.bubbleseekbar.R$color: int tooltip_background_light +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_21 +wangdaye.com.geometricweather.R$string: int mtrl_picker_a11y_prev_month +wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_to_on_mtrl_000 +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginRight +android.didikee.donate.R$styleable: int AppCompatTheme_popupWindowStyle +com.turingtechnologies.materialscrollbar.R$color: int ripple_material_light +com.google.android.material.floatingactionbutton.FloatingActionButton: void setScaleX(float) +com.autonavi.aps.amapapi.model.AMapLocationServer: long k() +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +okhttp3.Dispatcher: void setIdleCallback(java.lang.Runnable) +wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status SUCCESS +androidx.constraintlayout.utils.widget.ImageFilterView: void setSaturation(float) +cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder asBinder() +com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$id: int subtitle +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_orientation +androidx.preference.R$styleable: int AppCompatTextView_fontVariationSettings +androidx.constraintlayout.widget.R$styleable: int Toolbar_collapseIcon +io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Imperial Imperial +wangdaye.com.geometricweather.R$style: int Platform_V25_AppCompat +com.google.android.material.chip.Chip: void setOnCloseIconClickListener(android.view.View$OnClickListener) +com.xw.repo.bubbleseekbar.R$attr: int singleChoiceItemLayout +com.turingtechnologies.materialscrollbar.R$styleable: int[] TextInputLayout +wangdaye.com.geometricweather.R$id: int action_divider +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: boolean isDisposed() +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTag +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure measure +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long serialVersionUID +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_133 +com.bumptech.glide.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getEn_US() +androidx.lifecycle.livedata.core.R +com.turingtechnologies.materialscrollbar.R$attr: int alpha +com.turingtechnologies.materialscrollbar.R$attr: int statusBarBackground +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_switchTextOn +wangdaye.com.geometricweather.R$style: int activity_create_widget_done_button +wangdaye.com.geometricweather.R$attr: int expandedTitleTextAppearance +androidx.appcompat.R$attr: int alertDialogStyle +androidx.appcompat.widget.SearchView$SearchAutoComplete +okio.SegmentedByteString: okio.ByteString sha256() +wangdaye.com.geometricweather.R$styleable: int[] SignInButton +wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status valueOf(java.lang.String) +wangdaye.com.geometricweather.R$id: int action_bar +okhttp3.Address: java.lang.String toString() +com.google.android.material.R$attr: int suffixTextColor com.google.android.material.R$styleable: int AppCompatTextView_textAllCaps -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_function_shortcut_label -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: int size -androidx.activity.R$id: int accessibility_custom_action_0 -androidx.appcompat.widget.MenuPopupWindow -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DIALER_OPENCNAM_AUTH_TOKEN_VALIDATOR -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: boolean done -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabGravity -androidx.constraintlayout.widget.R$attr: int windowMinWidthMajor -androidx.appcompat.R$layout: int abc_list_menu_item_radio -wangdaye.com.geometricweather.R$styleable: int ScrimInsetsFrameLayout_insetForeground -androidx.appcompat.R$styleable: int StateListDrawable_android_visible -okhttp3.CacheControl: boolean isPrivate -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onComplete() -com.google.android.material.R$attr: int yearSelectedStyle -io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.functions.Function) -androidx.constraintlayout.widget.Barrier: int getMargin() -android.didikee.donate.R$attr: int contentInsetLeft -android.didikee.donate.R$styleable: int[] ActionMenuItemView -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Caption -android.didikee.donate.R$attr: int backgroundTint -com.turingtechnologies.materialscrollbar.R$id: int default_activity_button -okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: void execute() -androidx.constraintlayout.widget.R$attr: int flow_maxElementsWrap -io.reactivex.internal.disposables.EmptyDisposable: java.lang.Object poll() -io.reactivex.Observable: io.reactivex.Observable retry() -androidx.vectordrawable.animated.R$id: int accessibility_action_clickable_span -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getSerialNumber -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Fullscreen -androidx.appcompat.R$string: int abc_action_bar_up_description -androidx.constraintlayout.widget.R$dimen: int tooltip_precise_anchor_threshold -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode Hight_Accuracy -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_toBottomOf -androidx.preference.R$attr: int gapBetweenBars -androidx.appcompat.R$styleable: int SearchView_searchHintIcon -com.amap.api.location.AMapLocationQualityReport: boolean b -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_buttonGravity -wangdaye.com.geometricweather.R$drawable: int weather_wind -wangdaye.com.geometricweather.R$attr: int stackFromEnd -androidx.constraintlayout.widget.R$styleable: int KeyCycle_curveFit -com.google.android.material.R$dimen: int abc_text_size_title_material -androidx.preference.R$style: int Widget_AppCompat_RatingBar_Indicator -io.reactivex.internal.observers.InnerQueuedObserver: void dispose() -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String iconUrl -io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,io.reactivex.Scheduler) -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer -android.didikee.donate.R$styleable: int MenuItem_android_onClick -okhttp3.internal.http.RealResponseBody: RealResponseBody(java.lang.String,long,okio.BufferedSource) -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Title -androidx.customview.R$layout: R$layout() -androidx.preference.R$style: int Base_TextAppearance_AppCompat -androidx.coordinatorlayout.R$id: int accessibility_custom_action_29 -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroup -androidx.appcompat.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getUrl() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_android_checkable -io.reactivex.exceptions.ProtocolViolationException: long serialVersionUID -androidx.customview.R$style: int Widget_Compat_NotificationActionText -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListView_DropDown -androidx.preference.R$attr: int dialogTitle -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Borderless_Colored -wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode getInstance(java.lang.String) -wangdaye.com.geometricweather.R$string: int on -wangdaye.com.geometricweather.R$attr: int colorError -androidx.fragment.R$dimen: int compat_button_padding_horizontal_material -android.didikee.donate.R$id: int home -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getZh_TW() -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconMargin -wangdaye.com.geometricweather.R$string: int common_google_play_services_updating_text -wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_appearance -com.amap.api.fence.GeoFence: java.util.List g -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon -android.didikee.donate.R$drawable: int abc_seekbar_tick_mark_material -androidx.hilt.R$attr: int alpha -com.google.android.material.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled -com.bumptech.glide.R$styleable: int[] FontFamily -androidx.constraintlayout.utils.widget.ImageFilterButton -com.google.android.material.snackbar.Snackbar$SnackbarLayout: Snackbar$SnackbarLayout(android.content.Context,android.util.AttributeSet) +cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_reboot +com.jaredrummler.android.colorpicker.R$color: int background_material_dark +androidx.appcompat.R$attr: int switchMinWidth +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_statusBarScrim +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type[] getActualTypeArguments() +cyanogenmod.app.Profile: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$attr: int appBarLayoutStyle +retrofit2.OkHttpCall$1: retrofit2.Callback val$callback +retrofit2.KotlinExtensions$await$2$2 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: AccuCurrentResult$WindChillTemperature$Metric() +com.amap.api.location.UmidtokenInfo: UmidtokenInfo() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_panelBackground +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_color +android.didikee.donate.R$drawable: int abc_scrubber_control_off_mtrl_alpha +androidx.constraintlayout.widget.R$attr: int visibilityMode +okhttp3.internal.http2.Http2Reader$Handler: void ackSettings() +androidx.constraintlayout.widget.R$style: int Platform_V25_AppCompat_Light +james.adaptiveicon.R$attr: int dividerHorizontal +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_SearchResult +com.google.android.material.R$attr: int trackTint +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_min_width_minor +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +cyanogenmod.app.Profile$ProfileTrigger: int getState() +com.tencent.bugly.crashreport.biz.a: void c() +com.xw.repo.bubbleseekbar.R$color: int primary_dark_material_light +com.google.android.material.R$styleable: int LinearLayoutCompat_android_orientation +com.tencent.bugly.crashreport.crash.CrashDetailBean: long M +com.tencent.bugly.proguard.am: java.lang.String x +wangdaye.com.geometricweather.db.entities.HourlyEntity: long time +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: int UnitType +androidx.recyclerview.widget.RecyclerView: void setViewCacheExtension(androidx.recyclerview.widget.RecyclerView$ViewCacheExtension) +wangdaye.com.geometricweather.R$drawable: int mtrl_dialog_background +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_COLOR_ENHANCE +com.google.android.material.internal.BaselineLayout: BaselineLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintCircle +androidx.appcompat.widget.AppCompatTextView: android.content.res.ColorStateList getSupportCompoundDrawablesTintList() +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: boolean isDisposed() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.functions.Function leftEnd +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationX +retrofit2.Retrofit: boolean validateEagerly +com.amap.api.fence.PoiItem: PoiItem() +com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.anr.b w +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_percent +androidx.preference.R$styleable: int AppCompatTheme_searchViewStyle +androidx.appcompat.R$string: int abc_menu_space_shortcut_label +okhttp3.Cache: okhttp3.Response get(okhttp3.Request) +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onError(java.lang.Throwable) +retrofit2.KotlinExtensions$awaitResponse$2$2: KotlinExtensions$awaitResponse$2$2(kotlinx.coroutines.CancellableContinuation) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalAlign +com.tencent.bugly.crashreport.crash.c: int a +okhttp3.Route: java.net.Proxy proxy() +androidx.constraintlayout.widget.R$style: int Base_V26_Widget_AppCompat_Toolbar +okio.Okio: Okio() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Inverse +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeFindDrawable +com.turingtechnologies.materialscrollbar.R$attr: int actionModeCloseButtonStyle +okhttp3.OkHttpClient$Builder: java.net.ProxySelector proxySelector +com.jaredrummler.android.colorpicker.R$layout: int abc_action_mode_close_item_material +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_BottomSheet_Modal +androidx.constraintlayout.widget.R$attr: int switchPadding +android.didikee.donate.R$id: int multiply +com.google.android.material.chip.Chip: void setCheckedIcon(android.graphics.drawable.Drawable) +com.google.android.material.R$styleable: int AppCompatTheme_textColorSearchUrl +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$OnWindowAttachmentChangedListener access$900(cyanogenmod.externalviews.KeyguardExternalView) +okhttp3.internal.http2.Http2Writer +com.google.android.material.R$dimen: int mtrl_btn_snackbar_margin_horizontal +androidx.preference.R$styleable: int AppCompatTheme_alertDialogStyle +androidx.appcompat.R$drawable: int abc_ratingbar_material +okio.ByteString: byte[] internalArray() +com.tencent.bugly.crashreport.crash.CrashDetailBean: boolean d +com.google.android.material.R$attr: int windowActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void access$700(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +retrofit2.RequestFactory$Builder: retrofit2.ParameterHandler parseParameter(int,java.lang.reflect.Type,java.lang.annotation.Annotation[],boolean) +com.google.android.material.R$attr: int contentInsetEnd +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_reverseLayout +james.adaptiveicon.R$color: int dim_foreground_disabled_material_dark +com.jaredrummler.android.colorpicker.R$id: int right_icon +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps: MfWarningsResult$WarningTimelaps() +android.support.v4.os.ResultReceiver$MyRunnable +androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +com.tencent.bugly.crashreport.CrashReport: java.util.Map getSdkExtraData(android.content.Context) +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Delete +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: void setValue(java.lang.Object) +androidx.preference.R$color: int bright_foreground_material_light +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver this$0 +com.google.android.material.R$styleable: int KeyCycle_android_rotation +androidx.vectordrawable.R$id: int accessibility_custom_action_6 +com.google.android.material.R$styleable: int KeyCycle_framePosition +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_icon +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_registerChangeListener +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Small +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: int getDesiredHeight() +androidx.appcompat.R$attr: int ratingBarStyle +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void onChanged(java.lang.Object) +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: ILiveLockScreenManagerProvider$Stub$Proxy(android.os.IBinder) +cyanogenmod.profiles.StreamSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: AccuDailyResult$Headline() +com.xw.repo.bubbleseekbar.R$string: int abc_menu_sym_shortcut_label +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_dither +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: int quality +com.google.android.material.R$dimen: int material_clock_face_margin_top +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchTextAppearance +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object getKey(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$style: int Base_V28_Theme_AppCompat +cyanogenmod.power.IPerformanceManager: boolean getProfileHasAppProfiles(int) +okhttp3.Headers$Builder: Headers$Builder() +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float ParticulateMatter2_5 +com.amap.api.location.AMapLocation: float getBearing() +androidx.preference.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +com.tencent.bugly.proguard.y$a: y$a(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int KeyCycle_wavePeriod +androidx.work.R$id: int tag_transition_group +okhttp3.CertificatePinner$Pin: boolean matches(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature RealFeelTemperature +com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_android_verticalDivider +androidx.drawerlayout.R$dimen: int compat_button_padding_vertical_material +androidx.activity.R$id: int notification_main_column_container +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getUnitId() +cyanogenmod.app.Profile: void setName(java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeWindChillTemperature() +androidx.appcompat.R$drawable: int abc_ic_search_api_material +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float getRain() +androidx.constraintlayout.widget.Placeholder: void setEmptyVisibility(int) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorGravity +androidx.lifecycle.LiveDataReactiveStreams: org.reactivestreams.Publisher toPublisher(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.LiveData) +androidx.appcompat.widget.AppCompatTextView: void setTextFuture(java.util.concurrent.Future) +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +james.adaptiveicon.R$id: int search_src_text +io.reactivex.internal.observers.BasicIntQueueDisposable: void clear() +com.google.android.gms.common.server.converter.zaa: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginStart +androidx.constraintlayout.widget.R$attr: int fontProviderAuthority +cyanogenmod.themes.IThemeService: void unregisterThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) +androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.Lifecycle getLifecycle() +org.greenrobot.greendao.AbstractDaoMaster: AbstractDaoMaster(org.greenrobot.greendao.database.Database,int) +wangdaye.com.geometricweather.R$attr: int orderingFromXml +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xsr +androidx.work.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$string: int total +com.google.android.material.button.MaterialButton: void setInternalBackground(android.graphics.drawable.Drawable) +com.jaredrummler.android.colorpicker.R$layout: int abc_popup_menu_header_item_layout +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert +com.google.android.material.snackbar.SnackbarContentLayout: android.widget.Button getActionView() +wangdaye.com.geometricweather.R$string: int settings_title_card_order +retrofit2.KotlinExtensions$awaitResponse$2$2 +com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomAppBar +com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context) +android.didikee.donate.R$drawable: int abc_edit_text_material +wangdaye.com.geometricweather.R$styleable: int PopupWindow_overlapAnchor +com.amap.api.location.AMapLocationClientOption$2 +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorTextAppearance +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void windowUpdate(int,long) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.List AirAndPollen +androidx.appcompat.R$attr: int firstBaselineToTopHeight +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month_labeled +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_padding_start_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange Past6HourRange +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSearchResultTitle +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void complete() +androidx.vectordrawable.R$layout: int notification_template_part_time +com.bumptech.glide.R$styleable: int GradientColor_android_type +com.google.android.material.navigation.NavigationView: android.view.MenuItem getCheckedItem() +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xntd +com.google.android.material.R$styleable: int SnackbarLayout_actionTextColorAlpha +wangdaye.com.geometricweather.R$drawable: int abc_seekbar_thumb_material +androidx.viewpager2.R$dimen: int notification_top_pad_large_text +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator +com.amap.api.location.AMapLocation: int getSatellites() +com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox_Dense +com.autonavi.aps.amapapi.model.AMapLocationServer: int i +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dialogPreferredPadding +androidx.appcompat.widget.LinearLayoutCompat: int getGravity() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +androidx.preference.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +wangdaye.com.geometricweather.R$string: int sp_widget_clock_day_details_setting +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_centerX +androidx.appcompat.R$styleable: int SearchView_voiceIcon +io.reactivex.Observable: io.reactivex.Observable concatWith(io.reactivex.MaybeSource) +cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_LOW_COLOR +com.google.android.material.R$attr: int contentInsetStartWithNavigation +com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: long timeout +android.didikee.donate.R$layout: int abc_popup_menu_header_item_layout +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setWetBulbTemperature(java.lang.Integer) +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.reflect.Type responseType() +com.tencent.bugly.proguard.e +wangdaye.com.geometricweather.R$id: int notification_big_icon_5 +com.tencent.bugly.proguard.b: b(java.lang.Exception) +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.Function rightEnd +androidx.lifecycle.MediatorLiveData: void addSource(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) +android.didikee.donate.R$attr: int actionModeBackground +wangdaye.com.geometricweather.R$dimen: int design_fab_border_width +androidx.appcompat.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat_Dark +com.amap.api.fence.GeoFenceClient: int GEOFENCE_IN +androidx.appcompat.resources.R$drawable: int notification_template_icon_bg +okhttp3.internal.cache.CacheInterceptor$1: okio.Timeout timeout() +com.turingtechnologies.materialscrollbar.R$id: int search_plate +wangdaye.com.geometricweather.R$string: int pressure +androidx.constraintlayout.widget.R$attr: int voiceIcon +com.google.android.material.R$attr: int layout_anchor +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endY +com.tencent.bugly.crashreport.crash.CrashDetailBean: long E +com.jaredrummler.android.colorpicker.R$color: int background_floating_material_light +androidx.dynamicanimation.R$id: int action_image +wangdaye.com.geometricweather.R$id: int activity_widget_config_widgetContainer +com.tencent.bugly.crashreport.CrashReport: void startCrashReport() +com.google.android.material.R$style: int Platform_MaterialComponents_Light +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_HOME_LONG_PRESS_ACTION +com.google.android.material.internal.ForegroundLinearLayout: ForegroundLinearLayout(android.content.Context,android.util.AttributeSet,int) +io.reactivex.exceptions.MissingBackpressureException +androidx.viewpager.R$dimen: R$dimen() +androidx.hilt.work.R$attr: int font +com.tencent.bugly.crashreport.common.info.a: java.lang.String ap +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_switchTextOff +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void drain() +retrofit2.RequestBuilder$ContentTypeOverridingRequestBody +com.jaredrummler.android.colorpicker.R$style: int Platform_AppCompat +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance +okhttp3.internal.tls.OkHostnameVerifier: int ALT_IPA_NAME +androidx.core.R$styleable: int ColorStateListItem_android_alpha +com.google.android.material.R$id: int selected +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_5 +androidx.constraintlayout.utils.widget.ImageFilterView: float getWarmth() +com.amap.api.location.AMapLocationClientOption: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Tooltip +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ImageButton +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult: java.util.List alert +com.tencent.bugly.proguard.f: java.util.Map l +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: void onNext(java.lang.Object) +okhttp3.Dispatcher: void finished(java.util.Deque,java.lang.Object) +com.tencent.bugly.crashreport.common.strategy.StrategyBean: long y +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setIcePrecipitationProbability(java.lang.Float) +com.google.android.material.R$id: int accessibility_custom_action_3 +okhttp3.internal.platform.Jdk9Platform: javax.net.ssl.X509TrustManager trustManager(javax.net.ssl.SSLSocketFactory) +cyanogenmod.app.suggest.ApplicationSuggestion: ApplicationSuggestion(java.lang.String,java.lang.String,android.net.Uri,android.net.Uri) +okhttp3.internal.http2.Http2Stream$FramingSource: void updateConnectionFlowControl(long) +wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_max +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult +androidx.transition.R$styleable: int FontFamilyFont_android_fontWeight +okhttp3.Cache: java.io.File directory() +wangdaye.com.geometricweather.R$string: int material_clock_toggle_content_description +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_text_input_padding_top +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCopyDrawable +androidx.appcompat.resources.R$styleable: R$styleable() +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_bias +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf +androidx.preference.R$attr: int preferenceFragmentCompatStyle +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs +cyanogenmod.app.CustomTile$1 +androidx.constraintlayout.widget.R$dimen: int abc_list_item_height_small_material +com.jaredrummler.android.colorpicker.R$id: int shortcut +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_begin +com.turingtechnologies.materialscrollbar.R$color: int cardview_shadow_end_color +okio.GzipSource: byte SECTION_TRAILER +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: double gust +com.google.gson.stream.JsonWriter: int peek() +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_3DES_EDE_CBC_SHA +com.jaredrummler.android.colorpicker.ColorPreferenceCompat: ColorPreferenceCompat(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$attr: int measureWithLargestChild +cyanogenmod.app.ICustomTileListener: void onCustomTileRemoved(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +wangdaye.com.geometricweather.R$id: int rounded +okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot next() +cyanogenmod.weather.CMWeatherManager$2$2: cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener val$listener +wangdaye.com.geometricweather.R$attr: int layout_constraintTop_toTopOf +wangdaye.com.geometricweather.R$style: int widget_text_clock_aa +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_endX +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getCardBackgroundColor() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +androidx.appcompat.R$dimen: int notification_subtext_size +james.adaptiveicon.R$styleable: int MenuView_android_horizontalDivider +androidx.appcompat.R$attr: int listLayout +com.turingtechnologies.materialscrollbar.R$styleable: int[] MenuGroup +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +cyanogenmod.externalviews.KeyguardExternalView$7 +androidx.appcompat.R$style: int TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindDirection +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_motionProgress +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean setNativeLaunchTime(long) +okhttp3.internal.http2.Http2: byte TYPE_PRIORITY +com.jaredrummler.android.colorpicker.R$style: int Preference +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean: void setY(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: java.lang.Object call() +com.tencent.bugly.crashreport.crash.e: void a() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +cyanogenmod.providers.CMSettings$System: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) +android.didikee.donate.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +androidx.customview.R$styleable: int FontFamily_fontProviderAuthority +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceLargePopupMenu +com.google.android.material.R$styleable: int CardView_cardElevation +okhttp3.internal.cache2.Relay: okio.ByteString PREFIX_DIRTY +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Small +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog +io.reactivex.Observable: io.reactivex.Observable concatMapDelayError(io.reactivex.functions.Function) +okhttp3.internal.http2.Http2Stream: void receiveData(okio.BufferedSource,int) +androidx.appcompat.R$attr: int alertDialogTheme +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_framePosition +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_buttonIconDimen +androidx.vectordrawable.animated.R$attr: int font +androidx.preference.R$attr: int colorSwitchThumbNormal +james.adaptiveicon.R$layout: int abc_alert_dialog_material +androidx.preference.R$styleable: int AppCompatTheme_windowFixedHeightMinor +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +wangdaye.com.geometricweather.R$attr: int tooltipFrameBackground +android.didikee.donate.R$bool +io.reactivex.Observable: io.reactivex.Single lastOrError() +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void dispose() +androidx.appcompat.R$styleable: int Toolbar_titleMargins +okhttp3.Headers$Builder: okhttp3.Headers$Builder set(java.lang.String,java.util.Date) +cyanogenmod.os.Build$CM_VERSION_CODES: int CANTALOUPE +androidx.coordinatorlayout.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_seekBarIncrement +androidx.constraintlayout.widget.R$attr: int flow_verticalGap +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_tooltipFrameBackground +james.adaptiveicon.R$attr: int numericModifiers +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_NULL_SHA +cyanogenmod.themes.ThemeChangeRequest: long mWallpaperId +com.tencent.bugly.crashreport.CrashReport$UserStrategy: void setCrashHandleCallback(com.tencent.bugly.crashreport.CrashReport$CrashHandleCallback) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase getMoonPhase() +com.turingtechnologies.materialscrollbar.R$color: int abc_secondary_text_material_dark +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListMenuView +com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusBottomStart() +androidx.appcompat.R$color: int background_material_light +okhttp3.internal.http.RetryAndFollowUpInterceptor: void cancel() +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit valueOf(java.lang.String) +androidx.fragment.R$styleable: int[] GradientColor +wangdaye.com.geometricweather.R$attr: int homeAsUpIndicator +cyanogenmod.weatherservice.ServiceRequestResult: cyanogenmod.weather.WeatherInfo getWeatherInfo() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarWidgetTheme +retrofit2.OkHttpCall: retrofit2.Response execute() +com.xw.repo.bubbleseekbar.R$id: int custom +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String no2 +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintRight_toLeftOf +androidx.preference.R$attr: int summary +androidx.constraintlayout.widget.R$layout: int abc_popup_menu_header_item_layout +androidx.activity.R$id: int accessibility_custom_action_10 +androidx.fragment.R$drawable: int notification_bg_normal_pressed +com.google.android.material.R$style: int Test_Widget_MaterialComponents_MaterialCalendar +wangdaye.com.geometricweather.R$color: int abc_primary_text_material_light +com.google.android.material.circularreveal.cardview.CircularRevealCardView: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.WeatherEntity) +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_fixed_height_minor +com.bumptech.glide.Registry$NoModelLoaderAvailableException: Registry$NoModelLoaderAvailableException(java.lang.Class,java.lang.Class) +com.google.android.material.R$styleable: int Motion_transitionEasing +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getRealFeelShaderTemperature() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dropdownitem_text_padding_left +james.adaptiveicon.R$dimen: int abc_text_size_display_4_material +com.turingtechnologies.materialscrollbar.R$id: int snackbar_action +wangdaye.com.geometricweather.R$menu: int activity_settings +androidx.constraintlayout.widget.R$styleable: int[] MotionLayout +com.google.android.material.R$dimen: int mtrl_extended_fab_elevation +okhttp3.Handshake: java.util.List localCertificates +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String DELETE_AFTER_USE +androidx.dynamicanimation.R$attr: int fontProviderCerts +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VectorDrawableDelegateState +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String B +com.google.android.material.textfield.TextInputLayout: int getCounterMaxLength() +com.google.android.material.R$drawable: int abc_ic_search_api_material +com.amap.api.location.AMapLocationQualityReport: java.lang.String e +com.tencent.bugly.crashreport.crash.b +com.jaredrummler.android.colorpicker.R$styleable: int Preference_defaultValue +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum() +com.jaredrummler.android.colorpicker.R$attr: int fastScrollHorizontalTrackDrawable +androidx.lifecycle.LifecycleRegistry$ObserverWithState: androidx.lifecycle.Lifecycle$State mState +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_translationY +wangdaye.com.geometricweather.R$attr: int boxBackgroundColor +androidx.swiperefreshlayout.R$dimen: int notification_action_text_size +androidx.preference.R$styleable: int AppCompatTextView_android_textAppearance +com.google.android.material.R$styleable: int TextInputLayout_boxCollapsedPaddingTop +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource +androidx.preference.R$dimen: int abc_dropdownitem_icon_width +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_4 +androidx.preference.R$styleable: int FontFamilyFont_fontStyle +com.google.android.gms.common.server.response.SafeParcelResponse: android.os.Parcelable$Creator CREATOR +androidx.preference.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +androidx.constraintlayout.widget.R$styleable: int ActionBar_progressBarStyle +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_Tooltip +com.turingtechnologies.materialscrollbar.R$id: int home +com.turingtechnologies.materialscrollbar.R$attr: int fabCustomSize +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: java.util.Date Set +com.google.android.material.R$attr: int mock_labelBackgroundColor +com.google.gson.internal.LazilyParsedNumber: float floatValue() +com.google.android.material.R$styleable: int Motion_motionPathRotate +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_body_1_material +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedHeightMajor +androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_dither +com.tencent.bugly.proguard.v: int b +wangdaye.com.geometricweather.R$id: int mtrl_calendar_text_input_frame +com.turingtechnologies.materialscrollbar.R$id: int search_bar +com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_material +android.didikee.donate.R$layout: int notification_template_icon_group +com.jaredrummler.android.colorpicker.R$integer: int abc_config_activityDefaultDur +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$402(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +com.turingtechnologies.materialscrollbar.R$style: int Widget_Support_CoordinatorLayout +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.functions.Function mapper +com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_out_bottom +androidx.preference.R$styleable: int FragmentContainerView_android_tag +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: int getIconSize() +com.tencent.bugly.crashreport.common.info.b: java.lang.String q() +androidx.drawerlayout.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification +android.didikee.donate.R$styleable: int SwitchCompat_trackTint +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +androidx.lifecycle.extensions.R$layout: R$layout() +io.reactivex.Observable: io.reactivex.Observable concat(java.lang.Iterable) +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize +com.google.android.material.R$styleable: int CollapsingToolbarLayout_scrimAnimationDuration +androidx.core.R$dimen: int compat_control_corner_material +com.google.android.material.R$dimen: int design_bottom_navigation_active_item_min_width +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: void dispose() +com.tencent.bugly.proguard.u: void a(java.lang.Runnable,long) +wangdaye.com.geometricweather.R$animator: int weather_hail_3 +android.didikee.donate.R$style: int Widget_AppCompat_AutoCompleteTextView +com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipStrokeColor() +com.jaredrummler.android.colorpicker.R$attr: int borderlessButtonStyle +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose SignIn +com.bumptech.glide.integration.okhttp3.OkHttpGlideModule +androidx.vectordrawable.animated.R$styleable: int[] FontFamily +okhttp3.internal.http2.Http2Connection: void updateConnectionFlowControl(long) +androidx.lifecycle.LiveData +james.adaptiveicon.R$layout: int abc_action_menu_item_layout +com.google.android.material.R$styleable: int OnSwipe_moveWhenScrollAtTop +androidx.preference.R$attr: int submitBackground +wangdaye.com.geometricweather.R$color: int button_material_dark +retrofit2.BuiltInConverters$StreamingResponseBodyConverter: retrofit2.BuiltInConverters$StreamingResponseBodyConverter INSTANCE +okhttp3.Cache$CacheResponseBody: okio.BufferedSource bodySource +com.baidu.location.indoor.mapversion.c.a$d +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: float getActionTextColorAlpha() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalBias +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderCerts +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.R$styleable: int[] ButtonBarLayout +com.xw.repo.bubbleseekbar.R$attr: int thumbTextPadding +wangdaye.com.geometricweather.R$styleable: int[] ProgressIndicator +wangdaye.com.geometricweather.R$attr: int itemShapeAppearance +androidx.constraintlayout.widget.R$attr: int titleTextColor +io.reactivex.Observable: io.reactivex.Observable zip(java.lang.Iterable,io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$attr: int buttonTint +android.support.v4.os.ResultReceiver$1: android.support.v4.os.ResultReceiver createFromParcel(android.os.Parcel) +com.google.android.material.R$styleable: int TextAppearance_android_textColor +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ListPopupWindow +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: double Value +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.constraintlayout.widget.R$dimen: int abc_disabled_alpha_material_light +com.google.android.material.R$styleable: int MaterialCalendar_dayStyle +wangdaye.com.geometricweather.R$color: int tooltip_background_dark +androidx.preference.R$style: int PreferenceSummaryTextStyle +com.tencent.bugly.proguard.ap: java.lang.String e +com.turingtechnologies.materialscrollbar.CustomIndicator +com.bumptech.glide.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.R$style: int Theme_AppCompat_NoActionBar +okhttp3.OkHttpClient: okhttp3.WebSocket newWebSocket(okhttp3.Request,okhttp3.WebSocketListener) +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: long serialVersionUID +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_fontFamily +androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Title +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerCloseError(java.lang.Throwable) +android.didikee.donate.R$styleable: int AppCompatTextView_android_textAppearance +com.google.android.material.button.MaterialButton$SavedState +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +androidx.preference.R$attr: int backgroundStacked +wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_default_mtrl_alpha +androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +com.amap.api.fence.GeoFenceClient: void pauseGeoFence() +com.google.android.material.R$layout: int abc_alert_dialog_title_material +wangdaye.com.geometricweather.R$drawable: int shortcuts_refresh_foreground +okhttp3.internal.ws.RealWebSocket$CancelRunnable: RealWebSocket$CancelRunnable(okhttp3.internal.ws.RealWebSocket) +io.reactivex.internal.observers.LambdaObserver: void onComplete() +androidx.activity.R$style: R$style() +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onNext(java.lang.Object) +wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation: wangdaye.com.geometricweather.common.ui.widgets.weatherView.materialWeatherView.MaterialWeatherView$DeviceOrientation LEFT +wangdaye.com.geometricweather.R$color: int design_snackbar_background_color +okhttp3.Cache$Entry: long sentRequestMillis +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial: double Value +wangdaye.com.geometricweather.R$attr: int animate_relativeTo +wangdaye.com.geometricweather.R$attr: int chipStartPadding +retrofit2.DefaultCallAdapterFactory$1: java.lang.Object adapt(retrofit2.Call) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_translationY +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTop_toBottomOf +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +com.xw.repo.bubbleseekbar.R$attr: int dividerHorizontal +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_disableDependentsState +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter beginObject() +wangdaye.com.geometricweather.weather.json.mf.MfRainResult: wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position position +com.github.rahatarmanahmed.cpv.R$attr: int cpv_maxProgress +androidx.drawerlayout.R$id: int blocking +cyanogenmod.profiles.RingModeSettings: java.lang.String RING_MODE_MUTE +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: int WeatherIcon +okhttp3.internal.connection.RealConnection: okhttp3.Handshake handshake +androidx.lifecycle.ProcessLifecycleOwner: boolean mPauseSent +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isDataConnectionEnabled() +androidx.constraintlayout.widget.R$styleable: int Constraint_android_scaleY +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WeatherCode +com.google.android.material.datepicker.CompositeDateValidator: android.os.Parcelable$Creator CREATOR +okhttp3.Cookie: java.lang.String value() +com.google.android.material.navigation.NavigationView: void setItemIconPadding(int) +com.jaredrummler.android.colorpicker.R$styleable: int ViewBackgroundHelper_backgroundTint +androidx.constraintlayout.widget.R$styleable: int Toolbar_contentInsetStartWithNavigation +james.adaptiveicon.R$anim: int abc_popup_enter +com.amap.api.location.CoordUtil: int convertToGcj(double[],double[]) +androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.background.polling.work.worker.NormalUpdateWorker: NormalUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) +com.xw.repo.bubbleseekbar.R$attr: int tooltipFrameBackground +okhttp3.internal.http2.Hpack$Reader: int dynamicTableByteCount +wangdaye.com.geometricweather.db.entities.AlertEntity: AlertEntity() +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_switchTextOn +com.google.android.material.R$style: int Test_ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Day +com.amap.api.fence.GeoFenceManagerBase: boolean isPause() +android.didikee.donate.R$dimen: int abc_action_bar_overflow_padding_start_material +james.adaptiveicon.R$attr: int ratingBarStyleIndicator +androidx.coordinatorlayout.R$id: int accessibility_custom_action_8 +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String LOCKSCREEN_URI +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +wangdaye.com.geometricweather.R$attr: int targetId +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ButtonBar +androidx.viewpager.R$dimen: int compat_button_inset_vertical_material +okhttp3.internal.http2.Http2Connection$Builder: java.net.Socket socket +cyanogenmod.hardware.ICMHardwareService: int getThermalState() +com.tencent.bugly.crashreport.CrashReport: void setHandleNativeCrashInJava(boolean) +james.adaptiveicon.R$attr: int contentInsetEndWithActions +androidx.appcompat.R$attr: int actionBarStyle +wangdaye.com.geometricweather.R$attr: int panelMenuListWidth +okio.Buffer: okio.ByteString sha512() +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Medium +wangdaye.com.geometricweather.R$color: int switch_thumb_normal_material_light +wangdaye.com.geometricweather.R$styleable: int SwitchPreference_android_disableDependentsState +androidx.constraintlayout.widget.R$attr: int layout_constraintRight_creator +james.adaptiveicon.R$color: int abc_tint_seek_thumb +com.xw.repo.bubbleseekbar.R$style: int Platform_ThemeOverlay_AppCompat +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Metric: int UnitType +james.adaptiveicon.R$color: int material_grey_600 +okio.Buffer: okio.ByteString sha1() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilityRain: java.lang.Integer proba3H +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport parent +com.jaredrummler.android.colorpicker.R$attr: int fontProviderQuery +com.google.android.material.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_arrowHeadLength +androidx.preference.R$dimen: int fastscroll_minimum_range +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$GeoLanguage t +cyanogenmod.app.CustomTileListenerService: android.os.IBinder onBind(android.content.Intent) +androidx.appcompat.widget.AppCompatRadioButton: AppCompatRadioButton(android.content.Context,android.util.AttributeSet,int) +okio.BufferedSource: byte readByte() +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder secure() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: java.lang.String Unit +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostResumed(android.app.Activity) +okio.Okio$4: java.io.IOException newTimeoutException(java.io.IOException) +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType UpdateInTxIterable +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.disposables.Disposable upstream +cyanogenmod.profiles.ConnectionSettings: cyanogenmod.profiles.ConnectionSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) +james.adaptiveicon.R$id +wangdaye.com.geometricweather.R$array: int weather_source_values +com.google.android.material.R$string: int mtrl_picker_cancel +cyanogenmod.app.CustomTile$ExpandedStyle$1 +androidx.appcompat.widget.AppCompatRatingBar +wangdaye.com.geometricweather.R$drawable: int notification_bg_low +io.reactivex.internal.subscriptions.EmptySubscription: void request(long) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: int UnitType +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRainPrecipitationProbability(java.lang.Float) +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: FitSystemBarAppBarLayout(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text +wangdaye.com.geometricweather.R$styleable: int Variant_region_widthMoreThan +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Inverse +androidx.drawerlayout.R$drawable +com.google.android.gms.base.R$string: int common_google_play_services_notification_channel_name +wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_maxWidth +wangdaye.com.geometricweather.R$attr: int materialCalendarMonth +com.loc.k: java.lang.String a() +james.adaptiveicon.R$styleable: int ActionBar_icon +com.google.android.material.R$styleable: int TextInputLayout_suffixTextColor +com.turingtechnologies.materialscrollbar.R$attr: int buttonPanelSideLayout +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context) +wangdaye.com.geometricweather.R$color: int lightPrimary_3 +cyanogenmod.app.ProfileGroup: int describeContents() +androidx.preference.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.R$drawable: int shortcuts_fog_foreground +androidx.hilt.R$drawable: int notification_bg_normal_pressed +androidx.recyclerview.R$attr: int layoutManager +org.greenrobot.greendao.AbstractDao: void save(java.lang.Object) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getIcePrecipitationProbability() +com.google.android.material.R$id: int ignoreRequest +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: java.lang.Object value +wangdaye.com.geometricweather.R$styleable: int[] ActionMenuItemView +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +com.turingtechnologies.materialscrollbar.R$attr: int paddingStart +androidx.loader.R$id: int right_icon +io.reactivex.internal.subscriptions.SubscriptionArbiter: boolean unbounded +com.jaredrummler.android.colorpicker.R$layout: int cpv_dialog_presets +wangdaye.com.geometricweather.R$attr: int bsb_thumb_color +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List kongtiao +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_editTextColor +com.jaredrummler.android.colorpicker.R$color: int abc_background_cache_hint_selector_material_dark +androidx.viewpager.R$id: int right_side +androidx.lifecycle.LiveData$LifecycleBoundObserver: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_108 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarDivider +androidx.constraintlayout.widget.R$styleable: int Constraint_visibilityMode +androidx.vectordrawable.R$id: int accessibility_custom_action_20 +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: IKeyguardExternalViewProvider$Stub$Proxy(android.os.IBinder) +com.tencent.bugly.CrashModule: com.tencent.bugly.CrashModule e +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setContentDescription(java.lang.String) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionMode +wangdaye.com.geometricweather.R$styleable: int Preference_persistent +com.turingtechnologies.materialscrollbar.R$style: int Base_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast$ProbabilitySnow: MfForecastResult$ProbabilityForecast$ProbabilitySnow() +androidx.preference.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Wind getWind() +com.google.android.material.R$attr: int chipIconSize +com.turingtechnologies.materialscrollbar.R$id: int text2 +androidx.appcompat.R$attr: int actionMenuTextAppearance +com.google.android.material.R$style: int Widget_Design_AppBarLayout +okio.Buffer: int readUtf8CodePoint() +cyanogenmod.app.CustomTile: int icon +androidx.lifecycle.LifecycleRegistry: boolean isSynced() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar_Small +com.turingtechnologies.materialscrollbar.R$string: int bottom_sheet_behavior +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_CAMELLIA_256_CBC_SHA +com.autonavi.aps.amapapi.model.AMapLocationServer: boolean i() +wangdaye.com.geometricweather.R$color: int mtrl_textinput_default_box_stroke_color +androidx.lifecycle.extensions.R$anim: int fragment_fast_out_extra_slow_in +com.google.android.material.R$dimen: int design_snackbar_extra_spacing_horizontal +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric Metric +wangdaye.com.geometricweather.R$animator +com.google.android.material.slider.BaseSlider: void setEnabled(boolean) +androidx.preference.R$id: int left +androidx.dynamicanimation.R$style: int Widget_Compat_NotificationActionContainer +com.google.android.material.R$attr: int textAppearanceListItemSecondary +wangdaye.com.geometricweather.R$drawable: int ic_github_dark +okhttp3.internal.http2.Http2Connection$2 +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: android.os.IBinder asBinder() +cyanogenmod.hardware.ICMHardwareService: boolean set(int,boolean) +androidx.preference.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_corner_radius +com.google.android.material.R$layout: int support_simple_spinner_dropdown_item +com.google.android.gms.common.SignInButton: SignInButton(android.content.Context) +com.tencent.bugly.crashreport.CrashReport: void setUserId(java.lang.String) +com.google.android.material.R$dimen: int mtrl_calendar_day_horizontal_padding +cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationMin() +cyanogenmod.providers.CMSettings$Secure: java.lang.String LIVE_DISPLAY_COLOR_MATRIX +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_padding +wangdaye.com.geometricweather.R$drawable: int abc_spinner_mtrl_am_alpha +com.google.android.material.R$dimen: int abc_text_size_medium_material +com.turingtechnologies.materialscrollbar.R$string: int abc_prepend_shortcut_label +wangdaye.com.geometricweather.R$styleable: int[] CircularProgressView +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintEnd_toStartOf +androidx.recyclerview.R$layout: int notification_template_part_chronometer +com.github.rahatarmanahmed.cpv.CircularProgressView: int animSteps +cyanogenmod.providers.CMSettings$Secure: java.lang.String ENABLED_EVENT_LIVE_LOCKS_KEY +androidx.loader.content.Loader: void unregisterListener(androidx.loader.content.Loader$OnLoadCompleteListener) +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory createWithScheduler(io.reactivex.Scheduler) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_PopupMenu +com.amap.api.fence.GeoFence: void writeToParcel(android.os.Parcel,int) +com.jaredrummler.android.colorpicker.R$color: int ripple_material_light +androidx.preference.R$styleable: int AppCompatTheme_windowActionBar +android.support.v4.app.INotificationSideChannel$Stub +wangdaye.com.geometricweather.R$attr: int iconResStart +androidx.preference.R$styleable: int SwitchPreference_summaryOn +androidx.preference.R$styleable: int CompoundButton_buttonTint +com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_android_alpha +androidx.viewpager2.R$layout: int custom_dialog +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.String getAqiText() +wangdaye.com.geometricweather.R$styleable: int MaterialButton_backgroundTintMode +com.google.android.material.slider.Slider: void setLabelBehavior(int) +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_measureWithLargestChild +androidx.appcompat.R$styleable: int[] StateListDrawableItem +cyanogenmod.content.Intent: Intent() +com.jaredrummler.android.colorpicker.R$id: int time +com.xw.repo.bubbleseekbar.R$attr: int height +androidx.recyclerview.R$id: int accessibility_custom_action_16 +com.google.android.material.R$styleable: int Chip_chipMinTouchTargetSize +com.google.android.material.R$styleable: int PropertySet_visibilityMode +wangdaye.com.geometricweather.R$attr: int onCross +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() +cyanogenmod.app.CustomTile$ExpandedStyle: void internalStyleId(int) +com.google.android.material.R$attr: int paddingEnd +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getTotalPrecipitationProbability() +com.bumptech.glide.R$styleable: int FontFamilyFont_android_font +androidx.lifecycle.LifecycleRegistry: void removeObserver(androidx.lifecycle.LifecycleObserver) +com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind wind +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_icon_light_normal +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: BaiduIPLocationService_Factory(javax.inject.Provider,javax.inject.Provider) +com.bumptech.glide.R$styleable: int GradientColor_android_endY +okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: void execute() +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_subtitle_material_toolbar +com.tencent.bugly.proguard.m: long g +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_bottomRecyclerView +wangdaye.com.geometricweather.R$id: int tag_unhandled_key_event_manager +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: int rightIndex +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.disposables.Disposable upstream +com.google.android.material.R$styleable: int ChipGroup_checkedChip +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionDropDownStyle +android.didikee.donate.R$style: int AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Dialog_Alert +okhttp3.HttpUrl: java.lang.String scheme() +wangdaye.com.geometricweather.main.fragments.MainFragment +james.adaptiveicon.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +okhttp3.internal.connection.RealConnection: okhttp3.internal.http.HttpCodec newCodec(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,okhttp3.internal.connection.StreamAllocation) +james.adaptiveicon.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.google.android.material.R$styleable: int ConstraintSet_flow_firstHorizontalStyle +com.turingtechnologies.materialscrollbar.R$id: int icon_group +wangdaye.com.geometricweather.R$id: int bottom_sides +androidx.preference.R$styleable: int AlertDialog_listItemLayout +androidx.preference.R$styleable: int AnimatedStateListDrawableItem_android_drawable +okio.InflaterSource: boolean refill() +io.reactivex.Observable: io.reactivex.Observable timer(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_vertical +com.jaredrummler.android.colorpicker.R$dimen: int abc_select_dialog_padding_start_material +wangdaye.com.geometricweather.common.basic.models.weather.Pollen +com.turingtechnologies.materialscrollbar.R$attr: int actionOverflowMenuStyle +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_contentInsetEndWithActions +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_maxProgress +okhttp3.FormBody: java.lang.String value(int) +okhttp3.Cache$Entry: Cache$Entry(okhttp3.Response) +androidx.vectordrawable.R$attr: R$attr() +okhttp3.internal.ws.WebSocketProtocol: long PAYLOAD_SHORT_MAX +wangdaye.com.geometricweather.R$attr: int fabAnimationMode +com.google.android.material.R$styleable: int AppCompatTextView_drawableTintMode +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroups +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String season +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +com.google.android.material.R$styleable: int Constraint_layout_constraintRight_creator +com.google.android.material.R$styleable: int Slider_haloColor +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: long count +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean offer(java.lang.Object) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_MinWidth_Bridge +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconContentDescription +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.Scheduler scheduler +android.didikee.donate.R$attr: int actionOverflowMenuStyle +androidx.appcompat.R$styleable: int Toolbar_titleMarginEnd +wangdaye.com.geometricweather.R$attr: int layout_constraintWidth_percent +james.adaptiveicon.R$styleable: int SwitchCompat_trackTintMode +com.google.android.material.button.MaterialButton: android.content.res.ColorStateList getSupportBackgroundTintList() +okhttp3.RequestBody$1 +androidx.lifecycle.LiveData$ObserverWrapper: void activeStateChanged(boolean) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_BATTERY_PORTRAIT +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.Handler mHandler +androidx.cardview.R$dimen: int cardview_default_radius +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_tooltipFrameBackground +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +androidx.recyclerview.R$id: int text2 +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconDrawable +com.google.android.material.R$id: int search_badge +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: java.lang.String MINUTES +wangdaye.com.geometricweather.R$styleable: int Constraint_android_maxHeight +io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: java.util.concurrent.Callable bufferSupplier +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_min +com.google.android.material.appbar.AppBarLayout: void setStatusBarForegroundColor(int) +androidx.preference.R$attr: int layout_insetEdge +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String STATUSBAR_URI +androidx.hilt.lifecycle.R$drawable: int notification_tile_bg +wangdaye.com.geometricweather.R$string: int common_google_play_services_install_title +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: long updatedOn +androidx.appcompat.R$attr: int spinnerDropDownItemStyle +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar +androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +cyanogenmod.externalviews.KeyguardExternalView$9: void run() +cyanogenmod.app.ThemeVersion$ComponentVersion +androidx.work.R$layout: int notification_template_part_chronometer +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleGravity(int) +androidx.vectordrawable.R$dimen: int notification_large_icon_width +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +okhttp3.internal.http2.Http2Reader$ContinuationSource: short padding +androidx.constraintlayout.widget.R$id: int packed +androidx.hilt.lifecycle.R$id: int text2 +androidx.customview.R$id: R$id() +android.didikee.donate.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +androidx.viewpager2.R$id: int accessibility_custom_action_22 +retrofit2.Retrofit: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[]) +androidx.preference.R$anim: int abc_tooltip_exit +okio.BufferedSink: okio.BufferedSink write(byte[]) +cyanogenmod.providers.CMSettings$System$3: CMSettings$System$3() +wangdaye.com.geometricweather.R$id: int activity_widget_config_wall +com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintTop_creator +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX) +wangdaye.com.geometricweather.R$id: int password_toggle +androidx.lifecycle.ServiceLifecycleDispatcher: androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable mLastDispatchRunnable +com.jaredrummler.android.colorpicker.R$color: int material_deep_teal_200 +com.google.android.material.R$styleable: int MaterialToolbar_navigationIconColor +io.reactivex.internal.disposables.EmptyDisposable: io.reactivex.internal.disposables.EmptyDisposable[] values() +com.google.android.material.R$styleable: int AppCompatTheme_dialogCornerRadius +com.amap.api.location.AMapLocation: void setCoordType(java.lang.String) +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: void run() +androidx.lifecycle.GenericLifecycleObserver +androidx.preference.R$styleable: int SwitchPreference_android_summaryOn +wangdaye.com.geometricweather.R$id: int wrap +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String type +androidx.constraintlayout.widget.R$attr: int buttonPanelSideLayout +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.DailyEntity,int) +james.adaptiveicon.R$layout: int abc_screen_simple +com.tencent.bugly.crashreport.crash.e +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Metric: java.lang.String Unit +com.google.android.material.R$attr: int buttonStyleSmall +com.turingtechnologies.materialscrollbar.R$attr: int paddingBottomNoButtons +com.google.android.material.R$styleable: int KeyTimeCycle_android_rotationY +androidx.constraintlayout.widget.R$attr: int motionTarget +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX getDirection() +okhttp3.internal.platform.AndroidPlatform$CloseGuard +wangdaye.com.geometricweather.R$dimen: int design_navigation_elevation +okio.Okio$2: okio.Timeout timeout() +okhttp3.internal.connection.RealConnection$1 +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +wangdaye.com.geometricweather.R$id: int dialog_location_help_locationContainer +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: java.lang.Object NEXT_WINDOW +wangdaye.com.geometricweather.R$font: int product_sans_thin +wangdaye.com.geometricweather.R$styleable: int Chip_chipIconEnabled +com.google.android.material.R$dimen: int abc_control_corner_material +com.google.android.material.R$bool: int mtrl_btn_textappearance_all_caps +androidx.work.R$drawable: int notification_bg_low_normal +com.google.android.material.snackbar.SnackbarContentLayout: SnackbarContentLayout(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar +androidx.recyclerview.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat +wangdaye.com.geometricweather.R$string: int key_widget_clock_day_details +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextHelper_android_textAppearance +androidx.appcompat.R$styleable: int AlertDialog_buttonPanelSideLayout +androidx.viewpager2.R$styleable: int FontFamily_fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$id: int alertTitle +cyanogenmod.providers.CMSettings$System: java.lang.String ZEN_PRIORITY_ALLOW_LIGHTS +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_creator +wangdaye.com.geometricweather.R$id: int scrollView +androidx.legacy.coreutils.R$styleable: int[] ColorStateListItem +okhttp3.OkHttpClient$Builder: okhttp3.Dispatcher dispatcher +com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusTopEnd +retrofit2.ParameterHandler$QueryMap: java.lang.reflect.Method method wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_75 -androidx.core.R$dimen: int compat_notification_large_icon_max_width -androidx.appcompat.R$dimen: int notification_big_circle_margin -io.reactivex.internal.observers.DeferredScalarDisposable: int TERMINATED -androidx.work.impl.diagnostics.DiagnosticsReceiver: DiagnosticsReceiver() -com.tencent.bugly.proguard.y: boolean a -com.jaredrummler.android.colorpicker.R$attr: int paddingStart -com.jaredrummler.android.colorpicker.R$color: int background_floating_material_light -com.amap.api.location.LocationManagerBase: void enableBackgroundLocation(int,android.app.Notification) -androidx.preference.R$styleable: int AppCompatTheme_alertDialogCenterButtons -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: org.reactivestreams.Subscriber mSubscriber -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_AES_128_CBC_SHA -androidx.preference.R$layout: int abc_alert_dialog_button_bar_material -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult -wangdaye.com.geometricweather.R$id: int action_divider -com.turingtechnologies.materialscrollbar.R$color: int mtrl_tabs_colored_ripple_color -com.amap.api.location.AMapLocation: java.lang.String c(com.amap.api.location.AMapLocation,java.lang.String) -com.amap.api.location.CoordinateConverter: com.amap.api.location.CoordinateConverter coord(com.amap.api.location.DPoint) -cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_SHOW_NONE -com.turingtechnologies.materialscrollbar.R$attr: int homeLayout -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void addLast(io.reactivex.internal.operators.observable.ObservableReplay$Node) -com.google.android.material.chip.Chip: android.content.res.ColorStateList getRippleColor() -cyanogenmod.hardware.CMHardwareManager: int getDisplayGammaCalibrationMin() -androidx.preference.R$attr: int closeItemLayout -androidx.fragment.R$anim: int fragment_close_enter -wangdaye.com.geometricweather.R$attr: int motionInterpolator -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getTreeDescription() -james.adaptiveicon.R$color: int bright_foreground_disabled_material_light -cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: android.os.IBinder mRemote -androidx.constraintlayout.widget.R$color: int bright_foreground_inverse_material_dark -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SeekBar_Discrete -androidx.vectordrawable.R$layout: int notification_action_tombstone -com.amap.api.fence.PoiItem: void writeToParcel(android.os.Parcel,int) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void drain() -android.didikee.donate.R$drawable: int abc_scrubber_track_mtrl_alpha -com.google.android.material.circularreveal.CircularRevealLinearLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -com.google.android.material.R$color: int material_on_surface_emphasis_high_type -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: java.lang.String DESCRIPTOR -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_21 -wangdaye.com.geometricweather.R$styleable: int[] Snackbar -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTextPadding -androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginLeft -okhttp3.WebSocketListener -com.google.android.material.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: io.reactivex.internal.queue.MpscLinkedQueue queue -com.turingtechnologies.materialscrollbar.R$attr: int textEndPadding -com.google.android.material.progressindicator.ProgressIndicator: void setIndicatorColors(int[]) -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2$1 -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler c(com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvIndex(java.lang.Integer) -io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: void clear() -androidx.appcompat.R$styleable: int StateListDrawable_android_variablePadding -okhttp3.internal.tls.OkHostnameVerifier: int ALT_IPA_NAME -androidx.constraintlayout.widget.R$attr: int switchPadding -androidx.core.R$attr: int alpha -com.google.android.material.R$styleable: int FloatingActionButton_maxImageSize -cyanogenmod.app.CustomTile: java.lang.String getResourcesPackageName() -okhttp3.Address: javax.net.ssl.SSLSocketFactory sslSocketFactory -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: void run() -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver -wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: double lon -com.jaredrummler.android.colorpicker.R$color: int secondary_text_default_material_dark -com.xw.repo.bubbleseekbar.R$dimen: int hint_pressed_alpha_material_dark -retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture -com.google.android.material.R$dimen: int highlight_alpha_material_light -retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type upperBound -wangdaye.com.geometricweather.R$styleable: int SearchView_android_maxWidth -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_fontVariationSettings -okio.Buffer: short readShort() -io.reactivex.Observable: io.reactivex.Observable switchOnNext(io.reactivex.ObservableSource) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider -com.tencent.bugly.BuglyStrategy: BuglyStrategy() -com.google.android.material.R$attr: int contentInsetStartWithNavigation -androidx.constraintlayout.widget.R$drawable: int abc_ratingbar_small_material -cyanogenmod.themes.IThemeService: void requestThemeChangeUpdates(cyanogenmod.themes.IThemeChangeListener) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_max -okhttp3.internal.http2.Http2Connection$5: boolean val$inFinished +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemHorizontalTranslationEnabled +androidx.constraintlayout.widget.R$styleable: int[] AnimatedStateListDrawableTransition +com.google.android.material.R$drawable: int abc_btn_radio_material_anim +com.tencent.bugly.proguard.an: java.lang.String h +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index pm10 +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_CONDITION_CODE +com.tencent.bugly.crashreport.crash.e: java.lang.Thread$UncaughtExceptionHandler f +cyanogenmod.providers.CMSettings$Secure: java.lang.String PROTECTED_COMPONENT_MANAGERS okhttp3.internal.connection.StreamAllocation: java.lang.Object callStackTrace -cyanogenmod.app.Profile$TriggerType: int BLUETOOTH -com.turingtechnologies.materialscrollbar.R$attr: int lineSpacing -androidx.preference.R$styleable: int AppCompatTheme_actionModeStyle -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onComplete() -androidx.preference.R$id: int decor_content_parent -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult: long updatedOn -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display1 -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.fuseable.SimplePlainQueue queue -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -wangdaye.com.geometricweather.R$dimen: int material_clock_display_padding -wangdaye.com.geometricweather.R$style: int notification_title_text -androidx.appcompat.R$styleable: int ActionMode_backgroundSplit -androidx.constraintlayout.widget.R$id: int up -com.turingtechnologies.materialscrollbar.R$color: int tooltip_background_dark -androidx.preference.R$styleable: int TextAppearance_fontVariationSettings -okio.AsyncTimeout$2: okio.Timeout timeout() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.util.List value -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.HourlyEntity) -androidx.preference.R$styleable: int PreferenceTheme_switchPreferenceCompatStyle -android.didikee.donate.R$color: int abc_tint_btn_checkable -android.didikee.donate.R$attr: int actionButtonStyle -com.turingtechnologies.materialscrollbar.R$color: int abc_btn_colored_text_material -androidx.appcompat.widget.Toolbar: Toolbar(android.content.Context) -cyanogenmod.providers.CMSettings$System: float getFloatForUser(android.content.ContentResolver,java.lang.String,int) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: java.lang.String Unit -com.google.android.material.slider.BaseSlider: void setActiveThumbIndex(int) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabText -cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_MIN_INDEX -androidx.preference.R$style: int TextAppearance_AppCompat -androidx.hilt.lifecycle.R$drawable: R$drawable() -retrofit2.Retrofit: java.util.List converterFactories() -androidx.preference.R$style: int Base_AlertDialog_AppCompat_Light -androidx.appcompat.resources.R$id: int accessibility_custom_action_9 -cyanogenmod.weatherservice.IWeatherProviderService$Stub: int TRANSACTION_processWeatherUpdateRequest_0 -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.lang.Integer freezingHazard -com.google.android.material.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation -androidx.appcompat.R$styleable: int FontFamilyFont_font -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeBottomLeft -okhttp3.internal.http2.Http2Stream$FramingSink: long EMIT_BUFFER_SIZE -com.google.android.material.R$styleable: int TabLayout_tabPaddingTop -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: ObservableMergeWithSingle$MergeWithObserver(io.reactivex.Observer) -com.xw.repo.bubbleseekbar.R$id: int radio -com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTintMode -com.google.android.material.R$styleable: int AppCompatTheme_windowFixedHeightMinor -okio.RealBufferedSource: boolean isOpen() -com.google.android.gms.location.LocationRequest: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$id: int edit_query -com.google.android.material.bottomappbar.BottomAppBar$Behavior: BottomAppBar$Behavior() -cyanogenmod.providers.CMSettings$System: java.lang.String CAMERA_SLEEP_ON_RELEASE -io.reactivex.internal.disposables.SequentialDisposable: boolean isDisposed() -com.jaredrummler.android.colorpicker.R$id: int screen -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String insee -wangdaye.com.geometricweather.settings.dialogs.AdaptiveIconDialog: AdaptiveIconDialog() -wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_in_lockScreen -androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -androidx.preference.R$styleable: int AppCompatTheme_editTextBackground -androidx.constraintlayout.widget.R$attr: int region_heightLessThan -okhttp3.Cache$2: Cache$2(okhttp3.Cache) -androidx.viewpager2.R$drawable: int notification_bg_normal -com.google.android.material.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge -com.google.android.material.R$attr: int checkedIconTint -androidx.recyclerview.R$color: R$color() -com.google.android.material.R$id: int default_activity_button -androidx.coordinatorlayout.R$color: int notification_action_color_filter -wangdaye.com.geometricweather.R$styleable: int Constraint_android_maxWidth -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: MfWarningsResult$WarningComments() -androidx.constraintlayout.widget.R$styleable: int StateListDrawable_android_visible -com.tencent.bugly.BuglyStrategy: java.lang.String getAppVersion() -androidx.constraintlayout.widget.R$attr: int layout_goneMarginStart -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarPopupTheme -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_fragment -james.adaptiveicon.R$attr: int titleTextStyle -okhttp3.internal.http2.Hpack$Reader: okio.BufferedSource source -androidx.viewpager2.R$string: R$string() -androidx.vectordrawable.R$dimen: int compat_button_inset_horizontal_material -com.tencent.bugly.crashreport.common.info.a: java.lang.String M -com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusBottomStart +android.didikee.donate.R$styleable: int AppCompatSeekBar_tickMarkTint +androidx.appcompat.R$attr: int textAppearanceSearchResultTitle +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_startX +okhttp3.logging.HttpLoggingInterceptor: void redactHeader(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_81 +james.adaptiveicon.R$styleable: int ActionBar_contentInsetEnd +android.didikee.donate.R$attr: int itemPadding +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: void onError(java.lang.Throwable) +androidx.core.R$dimen: R$dimen() +androidx.preference.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$attr: int indeterminateProgressStyle +androidx.activity.R$id: int accessibility_custom_action_9 +io.reactivex.internal.util.VolatileSizeArrayList +androidx.preference.R$attr: int buttonIconDimen +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: java.lang.String LongPhrase +cyanogenmod.app.ICustomTileListener$Stub: int TRANSACTION_onListenerConnected_0 +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_summaryOn +androidx.constraintlayout.widget.R$style: int Base_V26_Theme_AppCompat +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_pathMotionArc +com.google.android.material.textfield.TextInputLayout: void setHelperTextColor(android.content.res.ColorStateList) +com.tencent.bugly.crashreport.crash.jni.b: java.lang.String a(java.io.BufferedInputStream) +androidx.lifecycle.ReportFragment: void dispatch(androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.R$drawable: int material_ic_menu_arrow_down_black_24dp +com.jaredrummler.android.colorpicker.R$dimen: int notification_subtext_size +androidx.hilt.R$dimen: int notification_big_circle_margin +android.didikee.donate.R$styleable: int ViewBackgroundHelper_backgroundTint +androidx.activity.R$drawable +wangdaye.com.geometricweather.R$anim: int abc_grow_fade_in_from_bottom +com.google.android.material.R$id: int search_button +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconContentDescription +com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_RadioButton +androidx.transition.R$integer: R$integer() +androidx.appcompat.R$id: int expand_activities_button +androidx.lifecycle.SavedStateHandleController: void tryToAddRecreator(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String componentToMixNMatchKey(java.lang.String) +okhttp3.internal.http2.Http2Connection$5: java.util.List val$requestHeaders +androidx.appcompat.widget.FitWindowsFrameLayout: void setOnFitSystemWindowsListener(androidx.appcompat.widget.FitWindowsViewGroup$OnFitSystemWindowsListener) +com.google.android.material.R$layout: int material_clock_period_toggle +wangdaye.com.geometricweather.R$id: int widget_week_week_4 +wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_width_minor +com.google.android.material.R$color: int abc_tint_spinner +com.google.android.material.R$styleable: int TextAppearance_textLocale +com.turingtechnologies.materialscrollbar.R$style: int AlertDialog_AppCompat +io.reactivex.internal.observers.LambdaObserver: void onError(java.lang.Throwable) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int lastIndex +okhttp3.Cache$Entry: okhttp3.Headers varyHeaders +com.jaredrummler.android.colorpicker.R$attr: int divider +androidx.recyclerview.R$id: int accessibility_action_clickable_span +androidx.core.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_disable_only_material_dark +com.google.android.material.R$styleable: int FontFamily_fontProviderAuthority +wangdaye.com.geometricweather.R$attr: int flow_lastHorizontalBias +androidx.legacy.coreutils.R$styleable: int GradientColor_android_endY +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Time +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int Spinner_android_entries +com.amap.api.fence.GeoFenceClient: int GEOFENCE_OUT +com.google.android.material.R$attr: int clickAction +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_track_size +com.tencent.bugly.proguard.y$a: java.lang.String c +cyanogenmod.app.Profile: java.util.UUID getUuid() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +androidx.preference.R$style: int Base_Widget_AppCompat_SearchView +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeTextType +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HEADSET_CONNECT_PLAYER_VALIDATOR +com.google.android.material.R$attr: int actionOverflowButtonStyle +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType COLOR_TYPE +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmTp2 +android.didikee.donate.R$color: int abc_color_highlight_material +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float totalPrecipitation +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability getPrecipitationProbability() +android.didikee.donate.R$attr: int textAppearanceSearchResultSubtitle +com.google.android.material.R$styleable: int NavigationView_menu +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintStart_toEndOf +com.google.android.material.R$styleable: int NavigationView_itemShapeAppearance +cyanogenmod.app.ICMStatusBarManager$Stub: int TRANSACTION_removeCustomTileFromListener +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Settings okHttpSettings +james.adaptiveicon.R$dimen: int abc_text_size_subhead_material +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_popupMenuStyle +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEVICE_HOSTNAME +androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motion_postLayoutCollision +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.google.android.material.R$attr: int tickMark +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_NAVIGATION_BAR +androidx.appcompat.R$id: int accessibility_custom_action_1 +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Spinner_Underlined +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_EMPTY_RENEGOTIATION_INFO_SCSV +com.turingtechnologies.materialscrollbar.R$style: int CardView_Dark +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: MfHistoryResult$History$Wind() +com.google.android.material.button.MaterialButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_min_width +androidx.work.impl.workers.ConstraintTrackingWorker: ConstraintTrackingWorker(android.content.Context,androidx.work.WorkerParameters) +wangdaye.com.geometricweather.R$animator: int design_fab_show_motion_spec +androidx.appcompat.R$id: int action_mode_bar +com.jaredrummler.android.colorpicker.R$attr: int autoSizeMaxTextSize +cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri mThumbnailUri +com.google.android.material.R$styleable: int TextInputLayout_boxBackgroundMode +wangdaye.com.geometricweather.R$styleable: int[] FlowLayout +androidx.preference.R$layout: int abc_screen_simple +android.didikee.donate.R$color: int notification_action_color_filter +androidx.preference.R$styleable: int AppCompatTextView_autoSizeStepGranularity +androidx.appcompat.view.menu.ListMenuItemView: void setForceShowIcon(boolean) +retrofit2.Retrofit$Builder +androidx.lifecycle.SavedStateHandleController$OnRecreation: void onRecreated(androidx.savedstate.SavedStateRegistryOwner) +com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$id: int visible +io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate) +com.tencent.bugly.proguard.u: void a(com.tencent.bugly.proguard.u,java.lang.Runnable,long) +james.adaptiveicon.R$id: int topPanel +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_MWI_NOTIFICATION_VALIDATOR +okio.ByteString: boolean rangeEquals(int,byte[],int,int) +io.reactivex.internal.util.ExceptionHelper$Termination: java.lang.Throwable fillInStackTrace() +com.turingtechnologies.materialscrollbar.R$attr: int switchStyle +androidx.preference.R$dimen: int highlight_alpha_material_light +okhttp3.internal.cache.DiskLruCache: java.util.regex.Pattern LEGAL_KEY_PATTERN +okhttp3.CacheControl: boolean onlyIfCached +com.google.android.material.R$id: R$id() +android.support.v4.app.INotificationSideChannel$Stub$Proxy +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.lifecycle.ReportFragment$LifecycleCallbacks: ReportFragment$LifecycleCallbacks() +com.google.android.material.R$dimen: int clock_face_margin_start +james.adaptiveicon.R$attr: int textAppearanceSmallPopupMenu +com.tencent.bugly.proguard.u: boolean b(int) +io.reactivex.internal.queue.SpscArrayQueue: int calcElementOffset(long,int) +com.jaredrummler.android.colorpicker.R$styleable: int CompoundButton_android_button +com.google.gson.JsonParseException: JsonParseException(java.lang.String,java.lang.Throwable) +androidx.preference.R$styleable: int ActionBar_icon +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float snow12h +com.google.android.material.R$styleable: int[] Tooltip +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_50 +androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationY +com.google.android.material.R$attr: int showMotionSpec +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language JAPANESE +wangdaye.com.geometricweather.R$styleable: int Badge_number +wangdaye.com.geometricweather.R$attr: int backgroundInsetTop +androidx.lifecycle.extensions.R$dimen: int notification_top_pad +okhttp3.internal.http.HttpDate +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$string: int content_des_pm10 +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_trackTint +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_hide_motion_spec +io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_EMPTY +com.jaredrummler.android.colorpicker.R$attr: int fastScrollVerticalThumbDrawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: java.util.List getIndices() +androidx.legacy.coreutils.R$styleable +wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_max +cyanogenmod.themes.ThemeManager$1$2: ThemeManager$1$2(cyanogenmod.themes.ThemeManager$1,boolean) +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Display2 +retrofit2.ParameterHandler$Part: retrofit2.Converter converter +wangdaye.com.geometricweather.common.basic.models.weather.Wind +androidx.constraintlayout.widget.R$attr: int triggerId +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +com.google.android.material.R$styleable: int Slider_thumbRadius +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_color +com.bumptech.glide.integration.okhttp.R$styleable: R$styleable() +androidx.constraintlayout.widget.R$styleable: int ActionBar_divider +retrofit2.BuiltInConverters$VoidResponseBodyConverter: java.lang.Void convert(okhttp3.ResponseBody) +io.reactivex.internal.util.HashMapSupplier +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: void clear() +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DIALER_OPENCNAM_ACCOUNT_SID_VALIDATOR +wangdaye.com.geometricweather.R$styleable: int EditTextPreference_useSimpleSummaryProvider +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: AccuAlertResult$Color() +androidx.appcompat.view.menu.ListMenuItemView: void setSubMenuArrowVisible(boolean) +androidx.appcompat.widget.LinearLayoutCompat: int getBaseline() +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.dynamicanimation.R$string: R$string() +androidx.swiperefreshlayout.R$id: int tag_accessibility_pane_title +androidx.preference.R$attr: int actionModeSplitBackground +james.adaptiveicon.R$attr: int seekBarStyle +wangdaye.com.geometricweather.R$string: int material_timepicker_text_input_mode_description +com.google.android.material.R$id: int accessibility_custom_action_27 +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_Alert_Bridge +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWeatherPhase(java.lang.String) +wangdaye.com.geometricweather.R$string: int settings_title_distance_unit +com.google.android.material.R$styleable: int PopupWindowBackgroundState_state_above_anchor +com.google.android.material.R$dimen: int highlight_alpha_material_light +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableBottomCompat +io.reactivex.internal.util.VolatileSizeArrayList: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_android_textAppearance +okhttp3.internal.http2.Http2Reader: int readMedium(okio.BufferedSource) +androidx.preference.R$drawable: int abc_list_selector_holo_dark +james.adaptiveicon.R$styleable: int Toolbar_titleMarginBottom +com.google.android.material.slider.RangeSlider: int getTrackWidth() +cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCK_PASS_TO_SECURITY_VIEW +androidx.cardview.R$dimen: int cardview_compat_inset_shadow +wangdaye.com.geometricweather.R$array +okio.RealBufferedSource: long read(okio.Buffer,long) +com.google.android.material.R$attr: int percentHeight +com.turingtechnologies.materialscrollbar.R$drawable: int abc_popup_background_mtrl_mult +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +com.tencent.bugly.proguard.ak: java.util.ArrayList y +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_min +com.google.android.material.R$styleable: int KeyCycle_android_elevation +wangdaye.com.geometricweather.R$id: int item_icon_provider_container +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +androidx.preference.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +com.google.android.material.R$attr: int switchStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_visibility +okhttp3.Cache: void evictAll() +androidx.constraintlayout.widget.R$id: int right_icon +okhttp3.internal.cache.InternalCache: okhttp3.Response get(okhttp3.Request) +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STYLE_PREVIEW +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabText +com.bumptech.glide.R$attr: int alpha +com.google.android.material.textfield.TextInputEditText: java.lang.CharSequence getHintFromLayout() +wangdaye.com.geometricweather.R$attr: int msb_barThickness +okhttp3.internal.platform.AndroidPlatform: boolean supportsAlpn() +com.google.android.material.chip.Chip: void setChipIconTint(android.content.res.ColorStateList) +com.xw.repo.bubbleseekbar.R$dimen: int tooltip_corner_radius +com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabView +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider: JdkWithJettyBootPlatform$JettyNegoProvider(java.util.List) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.google.android.material.R$styleable: int ActionBar_indeterminateProgressStyle +okhttp3.internal.connection.RouteException +com.tencent.bugly.proguard.p: android.database.Cursor a(com.tencent.bugly.proguard.p,boolean,java.lang.String,java.lang.String[],java.lang.String,java.lang.String[],java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.tencent.bugly.proguard.o) +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: ObservableDoFinally$DoFinallyObserver(io.reactivex.Observer,io.reactivex.functions.Action) +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Chip +io.reactivex.internal.observers.InnerQueuedObserver: InnerQueuedObserver(io.reactivex.internal.observers.InnerQueuedObserverSupport,int) +androidx.core.R$id: int accessibility_custom_action_19 +androidx.legacy.coreutils.R$styleable: R$styleable() +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: java.lang.Throwable error +okhttp3.internal.http2.Huffman +wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status: wangdaye.com.geometricweather.common.basic.models.resources.Resource$Status LOADING +wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarTextViewStyle +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_padding +androidx.preference.R$attr: int divider +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType MAPBAR +wangdaye.com.geometricweather.R$font: int product_sans_bold_italic +android.didikee.donate.R$attr: int alertDialogStyle +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_to_on_mtrl_000 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String logo +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_menu +wangdaye.com.geometricweather.R$attr: int statusBarScrim +com.google.android.material.R$xml: int standalone_badge_gravity_bottom_start +com.google.android.material.R$styleable: int State_android_id +wangdaye.com.geometricweather.R$string: int wind_3 +cyanogenmod.hardware.CMHardwareManager: boolean writePersistentInt(java.lang.String,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitationDuration +android.didikee.donate.R$id: int action_bar +okhttp3.internal.http2.Http2Writer: void applyAndAckSettings(okhttp3.internal.http2.Settings) +androidx.core.R$id: int blocking +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingBottom +okio.Timeout: okio.Timeout clearTimeout() +james.adaptiveicon.R$id: int title +androidx.constraintlayout.widget.R$color: int bright_foreground_disabled_material_dark +james.adaptiveicon.R$style: int Theme_AppCompat_CompactMenu +com.google.android.material.R$styleable: int[] FloatingActionButton +retrofit2.OkHttpCall$1: void onResponse(okhttp3.Call,okhttp3.Response) +com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String s +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher: void subscribe(org.reactivestreams.Subscriber) +androidx.recyclerview.widget.RecyclerView: void setPreserveFocusAfterLayout(boolean) +androidx.constraintlayout.widget.R$attr: int motionDebug +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setPubTime(java.lang.String) +okhttp3.Dispatcher: Dispatcher() +cyanogenmod.app.Profile: java.lang.String getName() +com.google.android.material.R$styleable: int CompoundButton_android_button +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +androidx.constraintlayout.widget.R$styleable: int MenuItem_iconTintMode +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarSwitch +androidx.appcompat.R$color: int secondary_text_disabled_material_dark +com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_android_popupBackground +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +io.reactivex.Observable: io.reactivex.Observable timeout(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.util.List forecast +io.reactivex.internal.schedulers.RxThreadFactory: RxThreadFactory(java.lang.String) +wangdaye.com.geometricweather.R$string: int wait_refresh +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX names +okhttp3.CertificatePinner: java.util.Set pins +androidx.constraintlayout.widget.R$attr: int drawableStartCompat +androidx.appcompat.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton_Overflow +retrofit2.http.DELETE: java.lang.String value() +androidx.loader.R$color: int notification_icon_bg_color +com.google.android.material.R$drawable: int abc_cab_background_internal_bg +cyanogenmod.themes.IThemeService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +androidx.vectordrawable.R$id: int chronometer +com.google.android.material.chip.ChipGroup: void setShowDividerVertical(int) +com.google.android.material.R$styleable: int Spinner_android_prompt +androidx.viewpager.R$layout: int notification_template_custom_big +com.jaredrummler.android.colorpicker.R$color: int abc_tint_default +androidx.lifecycle.ViewModelProvider$NewInstanceFactory +wangdaye.com.geometricweather.R$drawable: int abc_control_background_material +cyanogenmod.weather.WeatherInfo$DayForecast: WeatherInfo$DayForecast(android.os.Parcel,cyanogenmod.weather.WeatherInfo$1) +okhttp3.internal.http2.Http2Connection: boolean client +wangdaye.com.geometricweather.R$dimen: int material_clock_size +androidx.preference.R$attr: int actionBarPopupTheme +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void onComplete() +okio.RealBufferedSink: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) +cyanogenmod.app.CMContextConstants: java.lang.String CM_PARTNER_INTERFACE +wangdaye.com.geometricweather.R$drawable: int ic_close +com.jaredrummler.android.colorpicker.R$attr: int actionProviderClass +androidx.hilt.R$id: int blocking +com.google.android.material.R$drawable: int abc_seekbar_thumb_material +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: void setStatus(int) +com.google.android.material.R$drawable: int abc_text_cursor_material +androidx.viewpager.R$color: R$color() +wangdaye.com.geometricweather.R$drawable: int notif_temp_106 +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: int UnitType +com.tencent.bugly.crashreport.crash.e: void a(java.lang.Thread,java.lang.Throwable,boolean,java.lang.String,byte[]) +androidx.dynamicanimation.R$styleable: int ColorStateListItem_alpha +androidx.constraintlayout.widget.R$dimen: int abc_text_size_subhead_material +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_creator +com.jaredrummler.android.colorpicker.R$attr: int customNavigationLayout +okhttp3.internal.cache.CacheStrategy$Factory: long nowMillis +retrofit2.ParameterHandler$FieldMap: int p +com.google.android.material.slider.RangeSlider: void setTickVisible(boolean) +wangdaye.com.geometricweather.R$attr: int bsb_section_text_color +androidx.appcompat.widget.AppCompatTextView: void setLastBaselineToBottomHeight(int) +androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +wangdaye.com.geometricweather.R$styleable: int Layout_android_orientation +com.xw.repo.bubbleseekbar.R$id: int search_plate +cyanogenmod.app.suggest.AppSuggestManager: cyanogenmod.app.suggest.IAppSuggestManager getService() +james.adaptiveicon.R$attr: int ratingBarStyle +com.jaredrummler.android.colorpicker.ColorPanelView: void setBorderColor(int) +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_RESET +wangdaye.com.geometricweather.R$dimen: int mtrl_textinput_box_stroke_width_focused +com.google.android.material.R$styleable: int Chip_textEndPadding +com.google.android.material.R$id: int action_bar_title +wangdaye.com.geometricweather.R$attr: int enforceTextAppearance +com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusTopStart +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: double lon +androidx.constraintlayout.widget.R$dimen: int abc_seekbar_track_progress_height_material +okhttp3.Protocol: java.lang.String toString() +cyanogenmod.app.CustomTile$ExpandedStyle: int REMOTE_STYLE +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: double Value +androidx.preference.R$id: int search_plate +okhttp3.CipherSuite: java.util.List forJavaNames(java.lang.String[]) +androidx.preference.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +wangdaye.com.geometricweather.R$attr: int trackTint +com.bumptech.glide.integration.okhttp.R$id: int action_image +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_searchViewStyle +okio.RealBufferedSink: okio.BufferedSink writeUtf8(java.lang.String,int,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial Imperial +androidx.preference.R$attr: int fastScrollVerticalTrackDrawable +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: boolean done +james.adaptiveicon.R$attr: int srcCompat +wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_dividerHeight +android.didikee.donate.R$dimen: int abc_action_bar_stacked_tab_max_width +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean getCurrent() +androidx.appcompat.R$dimen: int compat_notification_large_icon_max_height +androidx.appcompat.R$attr: int closeIcon +cyanogenmod.app.Profile: java.util.Map streams +com.google.android.material.R$color: int material_timepicker_modebutton_tint +com.google.android.material.textfield.TextInputLayout: void setBoxStrokeWidthFocused(int) +com.google.android.material.R$layout: int design_navigation_item_header +androidx.swiperefreshlayout.R$layout: int notification_action_tombstone +androidx.appcompat.R$layout: int abc_screen_toolbar +wangdaye.com.geometricweather.R$attr: int boxCollapsedPaddingTop +android.didikee.donate.R$attr: int gapBetweenBars +android.didikee.donate.R$color: int abc_secondary_text_material_dark +wangdaye.com.geometricweather.R$menu: R$menu() +com.google.android.material.R$dimen: int abc_alert_dialog_button_bar_height +androidx.appcompat.widget.Toolbar: android.widget.TextView getTitleTextView() +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver d +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType FLOAT_TYPE +androidx.preference.R$drawable: int tooltip_frame_light +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: AccuLocationResult$Country() +james.adaptiveicon.R$attr: int dialogPreferredPadding +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property SnowPrecipitationProbability +androidx.viewpager2.R$id: int accessibility_custom_action_27 +okhttp3.internal.http2.Http2Reader$Handler: void rstStream(int,okhttp3.internal.http2.ErrorCode) +androidx.lifecycle.extensions.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_maxElementsWrap +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Tooltip +com.google.android.material.R$attr: int itemShapeAppearance +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: int hashCode() +io.reactivex.internal.util.HashMapSupplier: java.util.Map call() +androidx.recyclerview.R$styleable: int GradientColor_android_startColor +com.jaredrummler.android.colorpicker.R$attr: int preferenceScreenStyle +com.google.android.material.R$attr: int switchMinWidth +wangdaye.com.geometricweather.R$attr: int overlapAnchor +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: IExternalViewProvider$Stub$Proxy(android.os.IBinder) +cyanogenmod.app.ProfileManager: java.lang.String PROFILES_STATE_CHANGED_ACTION +androidx.appcompat.widget.AppCompatButton: android.content.res.ColorStateList getSupportCompoundDrawablesTintList() +com.google.android.material.card.MaterialCardView: void setClickable(boolean) +wangdaye.com.geometricweather.R$styleable: int[] Preference +wangdaye.com.geometricweather.R$color: int mtrl_card_view_foreground +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FAIR_NIGHT +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_divider +androidx.work.R$style +wangdaye.com.geometricweather.R$string: int common_google_play_services_notification_ticker +android.didikee.donate.R$style: int Widget_AppCompat_Light_AutoCompleteTextView +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_constraintSet +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean: void setValue(java.lang.String) +com.google.android.material.floatingactionbutton.FloatingActionButton: int getExpandedComponentIdHint() +com.google.android.material.R$styleable: int MaterialShape_shapeAppearanceOverlay +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.AbstractDao getDao(java.lang.Class) +io.reactivex.internal.util.NotificationLite: boolean accept(java.lang.Object,org.reactivestreams.Subscriber) +wangdaye.com.geometricweather.R$id: int gone +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Inverse +com.jaredrummler.android.colorpicker.R$layout: int abc_screen_toolbar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorError androidx.viewpager.R$layout: int notification_action_tombstone -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontStyle -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onKeyguardShowing(boolean) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: java.util.Queue sources -wangdaye.com.geometricweather.R$styleable: int MaterialCardView_cardForegroundColor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean() -wangdaye.com.geometricweather.R$string: int character_counter_content_description -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemTextAppearance -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification -com.google.android.material.R$styleable: int RecyclerView_fastScrollEnabled -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int requestFusion(int) -com.google.android.material.R$styleable: int Tooltip_android_minWidth -wangdaye.com.geometricweather.settings.fragments.NotificationColorSettingsFragment -androidx.preference.R$attr: int actionModeCopyDrawable -com.google.android.material.R$xml -com.google.android.material.R$styleable: int[] ScrimInsetsFrameLayout -com.google.android.material.R$dimen: int mtrl_slider_track_side_padding -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_31 -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_Switch -androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableLeft -com.google.android.material.R$dimen: int design_navigation_max_width -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver -wangdaye.com.geometricweather.R$styleable: int LoadingImageView_circleCrop -androidx.constraintlayout.widget.R$attr: int arrowHeadLength -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon -com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.i c -wangdaye.com.geometricweather.R$attr: int valueTextColor -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -com.google.android.material.R$dimen: int design_fab_elevation -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property O3 -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getApparentTemperature() -android.didikee.donate.R$attr: int colorButtonNormal -com.xw.repo.bubbleseekbar.R$attr: int lastBaselineToBottomHeight -androidx.constraintlayout.widget.ConstraintHelper: void setIds(java.lang.String) -wangdaye.com.geometricweather.R$attr: int dialogPreferredPadding -androidx.fragment.app.BackStackState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$id: int fill_horizontal -com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol HTTP -james.adaptiveicon.R$layout: int abc_select_dialog_material -okhttp3.internal.http2.Http2Stream$StreamTimeout -com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage ENCODE -androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory -com.xw.repo.bubbleseekbar.R$attr: int bsb_rtl -androidx.vectordrawable.R$styleable: int GradientColor_android_startY -androidx.constraintlayout.widget.R$anim: int abc_grow_fade_in_from_bottom -com.xw.repo.bubbleseekbar.R$attr: int goIcon -com.google.android.material.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator -wangdaye.com.geometricweather.R$id: int activity_allergen_container -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle -cyanogenmod.profiles.ConnectionSettings: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$dimen: int item_touch_helper_swipe_escape_velocity -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title -wangdaye.com.geometricweather.R$attr: int colorScheme -com.tencent.bugly.proguard.m: java.lang.String f -wangdaye.com.geometricweather.R$dimen: int material_icon_size -io.reactivex.Observable: io.reactivex.Single collectInto(java.lang.Object,io.reactivex.functions.BiConsumer) -android.didikee.donate.R$attr: int buttonTint -androidx.activity.R$color: R$color() -androidx.appcompat.resources.R$styleable: int ColorStateListItem_android_color -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onScreenTurnedOn() -cyanogenmod.app.ThemeVersion$ComponentVersion: ThemeVersion$ComponentVersion(int,cyanogenmod.app.ThemeComponent,java.lang.String,int,int) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerSuccess(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver,java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconContentDescription -androidx.swiperefreshlayout.R$integer: int status_bar_notification_info_maxnum -androidx.constraintlayout.widget.R$attr: int displayOptions -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Primary -com.turingtechnologies.materialscrollbar.R$attr: int dropdownListPreferredItemHeight -com.google.android.gms.base.R$string: int common_open_on_phone -androidx.hilt.R$id: int accessibility_custom_action_24 -androidx.hilt.work.R$id: int italic -androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -androidx.preference.R$dimen: int abc_cascading_menus_min_smallest_width -androidx.work.impl.background.systemalarm.RescheduleReceiver -wangdaye.com.geometricweather.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding -androidx.core.content.FileProvider -james.adaptiveicon.R$style: int Animation_AppCompat_Tooltip -com.google.android.material.R$color: int highlighted_text_material_dark -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse -com.turingtechnologies.materialscrollbar.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_pivotX -com.google.android.material.R$layout: int mtrl_layout_snackbar -com.turingtechnologies.materialscrollbar.R$id: int action_bar_root -wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_shapeAppearance -wangdaye.com.geometricweather.R$styleable: int Chip_hideMotionSpec -com.xw.repo.bubbleseekbar.R$color: int material_deep_teal_500 -androidx.swiperefreshlayout.R$id: int chronometer -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String V -cyanogenmod.app.CMContextConstants: CMContextConstants() -com.tencent.bugly.crashreport.crash.b: void a(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,com.tencent.bugly.crashreport.crash.CrashDetailBean) +androidx.hilt.work.R$styleable: int GradientColor_android_type +james.adaptiveicon.R$dimen: int notification_content_margin_start +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_SHA256 +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.db.entities.WeatherEntityDao myDao +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String BOOTANIMATION_THUMBNAIL +androidx.appcompat.widget.ActionBarOverlayLayout: java.lang.CharSequence getTitle() +androidx.hilt.R$style: int TextAppearance_Compat_Notification_Info +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +wangdaye.com.geometricweather.R$anim: int mtrl_bottom_sheet_slide_out +okhttp3.internal.http2.Http2: java.lang.String frameLog(boolean,int,int,byte,byte) +io.reactivex.internal.schedulers.ExecutorScheduler$DelayedRunnable: ExecutorScheduler$DelayedRunnable(java.lang.Runnable) +androidx.constraintlayout.widget.R$attr: int roundPercent +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String messageShort +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listDividerAlertDialog +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) +com.turingtechnologies.materialscrollbar.R$attr: int thumbTintMode +androidx.constraintlayout.widget.R$id: int notification_main_column +androidx.preference.R$styleable: int AppCompatSeekBar_tickMark +android.didikee.donate.R$styleable: int AlertDialog_showTitle +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_windowAnimationStyle +okhttp3.internal.http.HttpMethod: HttpMethod() +okhttp3.internal.ws.WebSocketProtocol +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: int maxColor +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabBarStyle +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_0 +james.adaptiveicon.R$attr: int alertDialogButtonGroupStyle +com.google.android.material.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTheme +androidx.preference.R$id: int notification_background +com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_max +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setZh_CN(java.lang.String) +com.google.android.material.R$attr: int dialogPreferredPadding +okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] WILDCARD_LABEL +com.google.android.material.R$layout: int abc_action_menu_layout +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitationDuration(java.lang.Float) +android.didikee.donate.R$attr: int tickMarkTint +com.google.android.material.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +cyanogenmod.profiles.ConnectionSettings +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex yesterday +androidx.constraintlayout.utils.widget.ImageFilterButton: float getSaturation() +com.google.android.material.R$styleable: int ActionBar_subtitle +androidx.constraintlayout.widget.ConstraintLayout: void setOptimizationLevel(int) +okhttp3.Call: void enqueue(okhttp3.Callback) +okhttp3.internal.cache.FaultHidingSink: void flush() +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: boolean isDisposed() +wangdaye.com.geometricweather.R$attr: int thumbElevation +androidx.constraintlayout.widget.R$integer: int cancel_button_image_alpha +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_CBC_SHA256 +wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_day_selection +androidx.appcompat.R$color: int primary_dark_material_light +retrofit2.http.HTTP: java.lang.String path() +wangdaye.com.geometricweather.R$attr: int placeholder_emptyVisibility +androidx.recyclerview.widget.RecyclerView: java.lang.CharSequence getAccessibilityClassName() +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_1 +android.didikee.donate.R$styleable: int AppCompatTheme_editTextBackground +com.google.android.material.R$styleable: int SearchView_android_maxWidth +androidx.transition.R$style: int TextAppearance_Compat_Notification +okhttp3.Cache$CacheRequestImpl: Cache$CacheRequestImpl(okhttp3.Cache,okhttp3.internal.cache.DiskLruCache$Editor) +androidx.hilt.R$id: int accessibility_custom_action_0 +cyanogenmod.platform.Manifest$permission: java.lang.String LIVE_LOCK_SCREEN_MANAGER_PROVIDER +cyanogenmod.app.ICMStatusBarManager$Stub: android.os.IBinder asBinder() +cyanogenmod.power.PerformanceManager: cyanogenmod.power.IPerformanceManager getService() +androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Time +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_constantSize +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionBar_Solid_Inverse +wangdaye.com.geometricweather.R$styleable: int[] KeyTimeCycle +com.bumptech.glide.R$dimen: int notification_right_icon_size +com.google.android.material.R$attr: int passwordToggleDrawable +androidx.appcompat.R$style: int Base_V22_Theme_AppCompat +okhttp3.ConnectionPool$1 +com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_JAVA_CRASH +wangdaye.com.geometricweather.R$color: int colorAccent_light +cyanogenmod.profiles.RingModeSettings: void readFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getMoldDescription() +io.reactivex.internal.observers.BasicIntQueueDisposable +androidx.constraintlayout.widget.R$attr: int round +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_editTextStyle +cyanogenmod.weatherservice.ServiceRequest: void complete(cyanogenmod.weatherservice.ServiceRequestResult) +com.google.android.material.R$id: int animateToEnd +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Title +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2 +androidx.vectordrawable.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.R$color: int primary_text_default_material_light +androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchRegionId +com.google.android.material.R$attr: int tooltipText +com.google.android.material.textfield.TextInputLayout: void setEndIconCheckable(boolean) +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getRealFeelShaderTemperature() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setUnit(java.lang.String) +androidx.coordinatorlayout.R$drawable: int notification_bg +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy: android.os.IBinder asBinder() +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_processThemeResources +com.turingtechnologies.materialscrollbar.R$color: int abc_btn_colored_text_material +okhttp3.internal.http.RetryAndFollowUpInterceptor: java.lang.Object callStackTrace +okhttp3.internal.Util$2: boolean val$daemon +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner_Underlined +wangdaye.com.geometricweather.R$attr: int triggerReceiver +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig weatherEntityDaoConfig +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: $Gson$Types$WildcardTypeImpl(java.lang.reflect.Type[],java.lang.reflect.Type[]) +cyanogenmod.providers.CMSettings$System: java.lang.String QS_SHOW_BRIGHTNESS_SLIDER +android.didikee.donate.R$id: int checkbox +com.google.android.material.R$id: int split_action_bar +wangdaye.com.geometricweather.R$transition +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setCityId(java.lang.String) +okhttp3.internal.http.RealInterceptorChain: okhttp3.Request request() +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetStart +com.google.android.material.R$styleable: int OnSwipe_dragThreshold +wangdaye.com.geometricweather.R$id: int dialog_button +com.google.android.material.appbar.MaterialToolbar: void setNavigationIconColor(int) +com.amap.api.fence.DistrictItem$1 +androidx.preference.R$style: int Theme_AppCompat_DayNight_DarkActionBar +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.util.ErrorMode errorMode +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconSize +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_homeLayout +okhttp3.Headers$Builder: okhttp3.Headers$Builder add(java.lang.String,java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light +com.google.android.material.R$attr: int tabPadding +androidx.coordinatorlayout.R$id: int icon +com.tencent.bugly.crashreport.common.info.a: java.lang.String M() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_spinner_textfield_background_material +com.google.android.material.R$styleable: int View_paddingStart +okio.Buffer: void clear() +wangdaye.com.geometricweather.R$drawable: int shortcuts_partly_cloudy_day_foreground +com.bumptech.glide.R$attr: int fontProviderAuthority +com.google.android.material.R$dimen: int mtrl_calendar_navigation_top_padding +androidx.appcompat.widget.ActivityChooserView: void setActivityChooserModel(androidx.appcompat.widget.ActivityChooserModel) +com.google.android.material.R$style: int Theme_MaterialComponents_Light +com.amap.api.fence.DistrictItem: void setCitycode(java.lang.String) +androidx.viewpager.R$string: int status_bar_notification_info_overflow +com.google.android.material.circularreveal.CircularRevealLinearLayout +io.reactivex.internal.queue.MpscLinkedQueue$LinkedQueueNode: MpscLinkedQueue$LinkedQueueNode() +james.adaptiveicon.R$style: int TextAppearance_AppCompat +okhttp3.CertificatePinner$Pin: int hashCode() +com.google.android.material.appbar.AppBarLayout: int getLiftOnScrollTargetViewId() +retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.reflect.Type responseType() +io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$anim: int abc_slide_in_bottom +androidx.constraintlayout.widget.ConstraintLayout: ConstraintLayout(android.content.Context,android.util.AttributeSet) +android.didikee.donate.R$drawable: int abc_text_select_handle_middle_mtrl_dark +wangdaye.com.geometricweather.R$id: int alertTitle +retrofit2.SkipCallbackExecutorImpl: java.lang.String toString() +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +wangdaye.com.geometricweather.R$id: int notification_base_aqiAndWind +androidx.hilt.R$styleable: int[] FragmentContainerView +wangdaye.com.geometricweather.R$styleable: int MaterialCalendar_yearSelectedStyle +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_is_float_type +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +com.google.android.material.R$style: int Widget_AppCompat_RatingBar_Small +cyanogenmod.app.ICMTelephonyManager: boolean isDataConnectionSelectedOnSub(int) +androidx.constraintlayout.utils.widget.MockView: MockView(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.externalviews.KeyguardExternalView$1: KeyguardExternalView$1(cyanogenmod.externalviews.KeyguardExternalView) +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: boolean timerRunning +androidx.coordinatorlayout.R$drawable: int notification_bg_low_normal +com.jaredrummler.android.colorpicker.R$color: int preference_fallback_accent_color +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +android.didikee.donate.R$attr: int windowActionBarOverlay +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +okhttp3.CacheControl: boolean isPublic() +cyanogenmod.hardware.CMHardwareManager: boolean requireAdaptiveBacklightForSunlightEnhancement() +okhttp3.HttpUrl: java.lang.String scheme +com.google.android.material.R$attr: int errorIconDrawable +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul24H +com.jaredrummler.android.colorpicker.R$style: int Platform_V21_AppCompat +okhttp3.internal.http1.Http1Codec: long headerLimit +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastHorizontalBias +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_longpressed_holo +cyanogenmod.app.StatusBarPanelCustomTile: StatusBarPanelCustomTile(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,cyanogenmod.app.CustomTile,android.os.UserHandle,long) +com.tencent.bugly.proguard.k: k() +okhttp3.logging.HttpLoggingInterceptor$Logger +com.amap.api.location.AMapLocation: double getAltitude() +wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_hovered_alpha +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialButtonToggleGroup +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: ObservableConcatMapSingle$ConcatMapSingleMainObserver(io.reactivex.Observer,io.reactivex.functions.Function,int,io.reactivex.internal.util.ErrorMode) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_PopupMenu +androidx.hilt.lifecycle.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$attr: int onHide +com.google.android.material.R$id: int src_over +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_normal +cyanogenmod.weather.WeatherInfo: WeatherInfo(cyanogenmod.weather.WeatherInfo$1) +androidx.preference.R$color: int abc_secondary_text_material_dark +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Long id +com.google.android.material.R$styleable: int Layout_layout_constraintLeft_toLeftOf +com.jaredrummler.android.colorpicker.R$styleable: int GradientColorItem_android_color +okhttp3.ResponseBody: okio.BufferedSource source() +androidx.appcompat.R$dimen: int notification_action_icon_size +androidx.appcompat.widget.LinearLayoutCompat: int getDividerPadding() +com.google.android.material.bottomappbar.BottomAppBar: int getFabAlignmentMode() +androidx.constraintlayout.widget.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialButtonToggleGroup +androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_vertical_padding +wangdaye.com.geometricweather.R$styleable: int Slider_thumbStrokeWidth +androidx.hilt.work.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_scaleY +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) +com.turingtechnologies.materialscrollbar.R$id: int src_atop +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +android.didikee.donate.R$attr: int textAppearanceSearchResultTitle +com.google.android.material.R$styleable: int ConstraintSet_android_visibility +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMaxWidth +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_to_on_mtrl_015 +com.github.rahatarmanahmed.cpv.R$dimen: R$dimen() +wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_material +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setExtended(boolean) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_popupMenuStyle +androidx.hilt.work.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Light +androidx.appcompat.R$attr: int viewInflaterClass +io.reactivex.internal.util.ErrorMode: io.reactivex.internal.util.ErrorMode valueOf(java.lang.String) +com.google.android.material.badge.BadgeDrawable$SavedState +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: void onComplete() +io.reactivex.internal.queue.SpscArrayQueue: SpscArrayQueue(int) +okio.GzipSink: java.util.zip.Deflater deflater() +com.xw.repo.bubbleseekbar.R$attr: int subtitleTextColor +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabMinWidth +com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.proguard.w v +androidx.lifecycle.LiveData$LifecycleBoundObserver: androidx.lifecycle.LifecycleOwner mOwner +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +cyanogenmod.app.CustomTile$ListExpandedStyle: void setListItems(java.util.ArrayList) +cyanogenmod.profiles.ConnectionSettings: boolean isOverride() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintGuide_begin +com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_in_bottom +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_30 +cyanogenmod.weather.IRequestInfoListener$Stub$Proxy +okhttp3.internal.ws.WebSocketWriter: void writePing(okio.ByteString) +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconVisible +com.jaredrummler.android.colorpicker.R$attr: int actionOverflowMenuStyle +androidx.viewpager2.R$drawable: R$drawable() +com.tencent.bugly.crashreport.CrashReport: void setAppVersion(android.content.Context,java.lang.String) +androidx.constraintlayout.widget.R$dimen: int notification_media_narrow_margin +com.turingtechnologies.materialscrollbar.R$attr: int drawableSize +wangdaye.com.geometricweather.R$attr: int contentInsetEnd +android.didikee.donate.R$style: int Widget_AppCompat_Light_PopupMenu +androidx.appcompat.R$attr: int switchStyle +com.google.android.material.R$integer: int cancel_button_image_alpha +wangdaye.com.geometricweather.R$attr: int triggerId +androidx.core.R$string: int status_bar_notification_info_overflow +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_MinWidth_Bridge +com.jaredrummler.android.colorpicker.R$attr: int actionBarItemBackground +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(boolean) +cyanogenmod.externalviews.ExternalView: cyanogenmod.externalviews.ExternalViewProperties mExternalViewProperties +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_10 +cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_DEFAULT_INDEX +cyanogenmod.externalviews.KeyguardExternalView$7: void run() +androidx.recyclerview.R$id: int title +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +com.bumptech.glide.integration.okhttp.R$id: int none +com.google.android.material.button.MaterialButton: void setBackgroundTintList(android.content.res.ColorStateList) +com.amap.api.location.AMapLocation: java.lang.String getCityCode() +com.tencent.bugly.crashreport.crash.b: void b(com.tencent.bugly.crashreport.crash.CrashDetailBean) +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_summaryOn +wangdaye.com.geometricweather.R$id: int adjust_width +wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_checkbox +androidx.hilt.lifecycle.R$dimen: int notification_large_icon_height +cyanogenmod.app.LiveLockScreenManager: android.content.Context mContext +androidx.activity.R$id: int action_container +com.google.android.gms.common.internal.BinderWrapper: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_CompactMenu +com.google.android.material.R$attr: int drawableTopCompat +cyanogenmod.hardware.IThermalListenerCallback +com.tencent.bugly.proguard.p: long a(java.lang.String,android.content.ContentValues,com.tencent.bugly.proguard.o,boolean) +cyanogenmod.externalviews.KeyguardExternalViewProviderService: boolean DEBUG +androidx.appcompat.R$style: int Widget_AppCompat_Spinner_DropDown +androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_3_material +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert_Framework +wangdaye.com.geometricweather.R$string: int abc_action_menu_overflow_description +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_7 +androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_weight +okhttp3.internal.platform.AndroidPlatform: void log(int,java.lang.String,java.lang.Throwable) +com.bumptech.glide.R$id: int normal +com.xw.repo.bubbleseekbar.R$layout: int abc_expanded_menu_layout +com.google.android.material.R$attr: int cardElevation +cyanogenmod.app.StatusBarPanelCustomTile: android.os.UserHandle getUser() +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String cityId +wangdaye.com.geometricweather.R$attr: int placeholderTextAppearance +io.reactivex.Observable: io.reactivex.Observable groupJoin(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_NoActionBar +androidx.constraintlayout.widget.R$attr: int navigationIcon +androidx.constraintlayout.widget.R$styleable: int[] DrawerArrowToggle +wangdaye.com.geometricweather.db.entities.AlertEntity: int priority +wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMarkTint +com.google.android.material.R$attr: int closeItemLayout +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode daytimeWeatherCode +io.reactivex.Observable: io.reactivex.Single toSortedList(java.util.Comparator,int) +james.adaptiveicon.R$id: int submenuarrow +com.tencent.bugly.crashreport.common.info.a: void a(boolean) +androidx.appcompat.R$styleable: int DrawerArrowToggle_spinBars +org.greenrobot.greendao.AbstractDaoSession: java.lang.Object callInTxNoException(java.util.concurrent.Callable) +wangdaye.com.geometricweather.R$attr: int rv_side +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: long EpochSet +com.baidu.location.e.h$c: com.baidu.location.e.h$c d +wangdaye.com.geometricweather.R$id: int SYM +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button +com.jaredrummler.android.colorpicker.R$attr: int buttonBarNeutralButtonStyle +org.greenrobot.greendao.AbstractDaoSession: void deleteAll(java.lang.Class) +androidx.constraintlayout.widget.R$styleable: int Toolbar_subtitleTextAppearance +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle HOURLY +wangdaye.com.geometricweather.R$attr: int buttonPanelSideLayout +androidx.lifecycle.LifecycleService: android.os.IBinder onBind(android.content.Intent) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_tickMarkTint +com.jaredrummler.android.colorpicker.NestedGridView: NestedGridView(android.content.Context,android.util.AttributeSet) +com.google.android.material.bottomnavigation.BottomNavigationMenuView: BottomNavigationMenuView(android.content.Context,android.util.AttributeSet) +com.tencent.bugly.proguard.ar: java.lang.String c +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.bumptech.glide.load.engine.GlideException: long serialVersionUID +james.adaptiveicon.R$attr: int actionBarSize +cyanogenmod.providers.DataUsageContract: java.lang.String CONTENT_TYPE +okhttp3.internal.http2.Http2Connection$PingRunnable: okhttp3.internal.http2.Http2Connection this$0 +androidx.lifecycle.extensions.R$id: int text2 +com.turingtechnologies.materialscrollbar.R$attr: int behavior_overlapTop +cyanogenmod.weather.WeatherLocation: java.lang.String access$502(cyanogenmod.weather.WeatherLocation,java.lang.String) +okhttp3.CertificatePinner$Pin: java.lang.String pattern +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason DECODE_DATA +james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +androidx.appcompat.R$dimen: int tooltip_margin +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getHintTextColor() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button +androidx.constraintlayout.widget.R$layout: int abc_search_dropdown_item_icons_2line +cyanogenmod.weather.WeatherInfo$Builder +wangdaye.com.geometricweather.R$attr: int flow_padding +androidx.preference.R$style: int Base_V22_Theme_AppCompat_Light +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_width +retrofit2.http.PartMap +wangdaye.com.geometricweather.db.entities.LocationEntity: boolean china +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void setDumpFilePath(java.lang.String) +org.greenrobot.greendao.AbstractDaoSession: AbstractDaoSession(org.greenrobot.greendao.database.Database) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionBarOverlay +androidx.work.R$dimen: int notification_right_icon_size +com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Display_TextInputEditText +wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_default +okhttp3.internal.http2.PushObserver$1: boolean onRequest(int,java.util.List) +james.adaptiveicon.R$styleable: int ActionBar_contentInsetStartWithNavigation +wangdaye.com.geometricweather.R$styleable: int Layout_minWidth +com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_layout +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_buttonPanelSideLayout +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean done +com.google.android.material.R$id: int material_clock_period_pm_button +androidx.loader.R$styleable: int GradientColor_android_centerY +android.didikee.donate.R$styleable: int[] RecycleListView +androidx.lifecycle.ComputableLiveData$2: void run() +okio.RealBufferedSink$1: void close() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours Past3Hours +com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog_Alert +james.adaptiveicon.R$color: int material_blue_grey_800 +wangdaye.com.geometricweather.R$drawable: int ic_dress +androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_creator +androidx.preference.R$styleable: int LinearLayoutCompat_android_orientation +com.turingtechnologies.materialscrollbar.R$dimen: int notification_action_icon_size +cyanogenmod.profiles.AirplaneModeSettings$BooleanState: int STATE_DISALED +androidx.dynamicanimation.R$id: int action_text +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ButtonBar +androidx.appcompat.resources.R$layout: int custom_dialog +com.xw.repo.bubbleseekbar.R$bool: int abc_config_actionMenuItemAllCaps +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +cyanogenmod.app.CustomTileListenerService: void unregisterAsSystemService() +android.didikee.donate.R$drawable: int abc_ic_menu_overflow_material +okhttp3.internal.http.HttpHeaders: java.util.Set varyFields(okhttp3.Response) +androidx.hilt.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_65 +androidx.drawerlayout.widget.DrawerLayout$SavedState: android.os.Parcelable$Creator CREATOR +com.turingtechnologies.materialscrollbar.R$attr: int counterOverflowTextAppearance +com.github.rahatarmanahmed.cpv.CircularProgressView: void stopAnimation() +wangdaye.com.geometricweather.R$attr: int actionBarWidgetTheme +android.didikee.donate.R$id: int src_atop +androidx.viewpager.R$drawable: int notification_bg_normal_pressed +androidx.appcompat.R$id: int action_bar_subtitle +androidx.preference.R$styleable: int ListPreference_entries +android.support.v4.graphics.drawable.IconCompatParcelizer: void write(androidx.core.graphics.drawable.IconCompat,androidx.versionedparcelable.VersionedParcel) +androidx.constraintlayout.widget.R$attr: int buttonBarNeutralButtonStyle +com.tencent.bugly.crashreport.common.info.a: void C() +com.xw.repo.bubbleseekbar.R$style: int Platform_V21_AppCompat +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitation(java.lang.Float) +androidx.loader.R$styleable: int GradientColor_android_tileMode +com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException: long serialVersionUID +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider this$1 +androidx.preference.R$style: int Theme_AppCompat_Light_DarkActionBar +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul6H +retrofit2.http.Query: boolean encoded() +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: long serialVersionUID +com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex com.jaredrummler.android.colorpicker.R$color: int background_floating_material_dark -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_collapseIcon -androidx.preference.R$styleable: int GradientColor_android_centerY -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindDegree -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonRiseDate -com.xw.repo.bubbleseekbar.R$drawable: R$drawable() -androidx.constraintlayout.widget.R$color: int primary_dark_material_light -androidx.preference.R$style: int Base_DialogWindowTitle_AppCompat -androidx.appcompat.R$layout: int notification_action_tombstone -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_ensureMinTouchTargetSize -android.didikee.donate.R$id: int line3 -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemHorizontalPadding -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_multiChoiceItemLayout -wangdaye.com.geometricweather.R$dimen: int mtrl_badge_horizontal_edge_offset -wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_variablePadding -cyanogenmod.weather.CMWeatherManager$2$2 -androidx.preference.R$styleable: int DialogPreference_android_dialogLayout -com.google.android.material.R$attr: int ttcIndex -wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context,android.util.AttributeSet,int) -okhttp3.internal.cache.CacheInterceptor$1: boolean cacheRequestClosed -com.jaredrummler.android.colorpicker.R$anim: int abc_slide_in_top -wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_negativeButtonText -androidx.constraintlayout.widget.R$attr: int layout_constraintRight_creator -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: void updateDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -okhttp3.internal.http2.Http2Connection$PingRunnable: int payload2 -com.google.android.material.R$styleable: int KeyAttribute_android_transformPivotX -com.google.android.material.R$style: int Widget_AppCompat_SearchView_ActionBar -com.jaredrummler.android.colorpicker.R$style: int Base_V26_Theme_AppCompat -androidx.appcompat.R$anim: int btn_checkbox_to_checked_icon_null_animation -cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mCountry -android.didikee.donate.R$styleable: int MenuGroup_android_visible -com.xw.repo.bubbleseekbar.R$color: int highlighted_text_material_light -wangdaye.com.geometricweather.R$drawable: int notif_temp_54 -androidx.viewpager.widget.ViewPager -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: void run() -androidx.appcompat.R$dimen: int abc_text_size_menu_material -androidx.appcompat.R$attr: int itemPadding -wangdaye.com.geometricweather.R$attr: int shapeAppearanceSmallComponent -wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_grey -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Toolbar -android.didikee.donate.R$styleable: int AlertDialog_multiChoiceItemLayout -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_als -com.google.android.material.R$dimen: int abc_dropdownitem_icon_width -androidx.work.NetworkType: androidx.work.NetworkType UNMETERED -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: ExternalViewProviderService$Provider$ProviderImpl$7(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,int,int,int,int,boolean,android.graphics.Rect) -androidx.lifecycle.LiveData: int START_VERSION -com.google.android.material.textfield.MaterialAutoCompleteTextView: java.lang.CharSequence getHint() -androidx.constraintlayout.widget.R$attr: int flow_verticalAlign -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean isEmpty() -androidx.viewpager2.R$dimen: int notification_top_pad_large_text -com.tencent.bugly.proguard.ar: java.util.Map e -com.turingtechnologies.materialscrollbar.R$id: int textSpacerNoButtons -wangdaye.com.geometricweather.R$dimen: int standard_weather_icon_size -com.google.android.material.R$attr: int fontProviderPackage -wangdaye.com.geometricweather.R$styleable: int EditTextPreference_useSimpleSummaryProvider -com.google.android.material.R$string: int mtrl_picker_range_header_selected -com.tencent.bugly.crashreport.crash.anr.b: long b -com.tencent.bugly.crashreport.biz.b: int i() -wangdaye.com.geometricweather.R$color: int colorTextGrey2nd -com.google.android.material.R$styleable: int AppCompatTheme_actionBarStyle -wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getDistanceText(android.content.Context,float) -com.google.android.material.bottomappbar.BottomAppBar: float getCradleVerticalOffset() -wangdaye.com.geometricweather.R$color: int darkPrimary_4 -androidx.appcompat.R$styleable: int Toolbar_titleMarginBottom -androidx.hilt.work.R$id: int chronometer -com.github.rahatarmanahmed.cpv.R$integer: int cpv_default_anim_swoop_duration -com.google.android.material.R$dimen: int mtrl_calendar_header_content_padding -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner -com.google.android.material.R$dimen: int design_navigation_item_icon_padding -okhttp3.internal.http2.Header: okio.ByteString PSEUDO_PREFIX -androidx.constraintlayout.widget.R$styleable: int Spinner_android_dropDownWidth -okhttp3.OkHttpClient: java.net.ProxySelector proxySelector -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -com.turingtechnologies.materialscrollbar.R$attr: int menu -androidx.preference.R$styleable: int MenuItem_android_onClick -wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_peekHeight -com.bumptech.glide.integration.okhttp.R$id: int end -com.tencent.bugly.crashreport.CrashReport: void setUserId(java.lang.String) -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: void run() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String to -androidx.appcompat.R$attr: int alphabeticModifiers -androidx.vectordrawable.animated.R$dimen: int notification_large_icon_height -androidx.drawerlayout.R$layout: int notification_action -wangdaye.com.geometricweather.R$layout: int widget_day_symmetry -wangdaye.com.geometricweather.R$styleable: int State_constraints -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_3 -io.reactivex.internal.operators.observable.ObservableReplay$UnboundedReplayBuffer: void complete() -wangdaye.com.geometricweather.R$styleable: int MaterialToolbar_navigationIconColor -androidx.viewpager2.R$drawable: int notification_action_background -com.jaredrummler.android.colorpicker.R$attr: int background -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_AES_256_CBC_SHA -androidx.constraintlayout.widget.R$id: int content -androidx.appcompat.R$styleable: int View_theme -androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_android_alpha -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingEnd -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_EXTRA -okio.Buffer: long size() -wangdaye.com.geometricweather.R$id: int tag_icon_day -com.google.android.material.R$animator: int design_fab_hide_motion_spec -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange -com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColorStateList(android.content.res.ColorStateList) -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: ObservableSampleWithObservable$SampleMainEmitLast(io.reactivex.Observer,io.reactivex.ObservableSource) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTintMode -wangdaye.com.geometricweather.R$attr: int behavior_halfExpandedRatio -cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: boolean isDataConnectionEnabled() -wangdaye.com.geometricweather.R$string: int mtrl_picker_confirm -com.google.android.material.R$styleable: int MaterialButton_elevation -okhttp3.internal.http.RealInterceptorChain: RealInterceptorChain(java.util.List,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http.HttpCodec,okhttp3.internal.connection.RealConnection,int,okhttp3.Request,okhttp3.Call,okhttp3.EventListener,int,int,int) -wangdaye.com.geometricweather.R$layout -okhttp3.Headers: okhttp3.Headers$Builder newBuilder() -wangdaye.com.geometricweather.R$attr: int actionBarPopupTheme -okio.Buffer: long readLongLe() -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() -wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_divider -androidx.constraintlayout.widget.R$drawable: int btn_checkbox_unchecked_mtrl -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.lang.Integer LEFT_CLOSE -com.jaredrummler.android.colorpicker.R$string: int abc_search_hint -androidx.recyclerview.widget.RecyclerView: void setOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) -com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_ExtendedFloatingActionButton -androidx.core.app.ComponentActivity -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_icon_padding -retrofit2.SkipCallbackExecutorImpl: int hashCode() -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_black -androidx.viewpager2.R$dimen: int compat_control_corner_material -com.amap.api.location.AMapLocationClientOption: boolean k -com.jaredrummler.android.colorpicker.R$attr: int lastBaselineToBottomHeight -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Title_Inverse -androidx.preference.R$color: int notification_action_color_filter -androidx.hilt.R$styleable: int FragmentContainerView_android_name -cyanogenmod.externalviews.KeyguardExternalView$3: void run() -cyanogenmod.app.Profile$TriggerState: int ON_DISCONNECT -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver this$0 -com.turingtechnologies.materialscrollbar.R$color: int material_grey_300 -androidx.appcompat.R$layout: int abc_action_bar_title_item -okhttp3.CacheControl$Builder: int minFreshSeconds -com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.crashreport.crash.CrashDetailBean a(android.database.Cursor) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorControlNormal -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean onCreatePanelMenu(int,android.view.Menu) -wangdaye.com.geometricweather.R$bool: int cpv_default_anim_autostart -com.tencent.bugly.crashreport.crash.CrashDetailBean: long H -androidx.loader.R$attr: int fontStyle -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: DailyTrendItemView(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int MaterialButton_android_background -androidx.transition.R$id: int right_side -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_BottomSheetDialog -wangdaye.com.geometricweather.R$dimen: int design_snackbar_extra_spacing_horizontal -wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource: wangdaye.com.geometricweather.common.basic.models.ChineseCity$CNWeatherSource valueOf(java.lang.String) -android.didikee.donate.R$styleable: int ViewBackgroundHelper_android_background -com.google.android.material.R$attr: int mock_label -androidx.appcompat.widget.AppCompatTextView: int getAutoSizeStepGranularity() -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge -cyanogenmod.hardware.CMHardwareManager: int getDisplayColorCalibrationMin() -androidx.constraintlayout.widget.R$string: int abc_menu_function_shortcut_label -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button_Colored -com.google.android.material.R$style: int Widget_MaterialComponents_Badge -retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: boolean terminated -com.google.android.material.card.MaterialCardView: void setOnCheckedChangeListener(com.google.android.material.card.MaterialCardView$OnCheckedChangeListener) -retrofit2.Call: void cancel() +androidx.work.R$styleable: int FontFamilyFont_fontStyle +com.google.android.material.R$styleable: int AppCompatTheme_colorError +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: int capacityHint +cyanogenmod.app.CustomTile$Builder: android.app.PendingIntent mOnLongClick +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 +androidx.appcompat.R$attr: int dialogTheme +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPadding +wangdaye.com.geometricweather.R$attr: int cpv_animSyncDuration +wangdaye.com.geometricweather.R$attr: int materialButtonStyle +com.google.android.material.tabs.TabLayout: int getTabCount() +com.google.android.material.R$styleable: int MaterialButton_iconPadding +cyanogenmod.themes.IThemeService: void removeUpdates(cyanogenmod.themes.IThemeChangeListener) +cyanogenmod.themes.ThemeManager$ThemeChangeListener +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_backgroundTintMode +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setWeather(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean) +com.google.android.material.R$dimen: int mtrl_extended_fab_disabled_elevation +okhttp3.MultipartBody$Part: okhttp3.RequestBody body() +com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context,android.util.AttributeSet,int) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +android.didikee.donate.R$attr: int buttonPanelSideLayout +androidx.appcompat.R$attr: int progressBarStyle +android.didikee.donate.R$attr: int subtitleTextStyle +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void dispose() +com.github.rahatarmanahmed.cpv.CircularProgressView$3: CircularProgressView$3(com.github.rahatarmanahmed.cpv.CircularProgressView) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getWindDescription(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit) +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Dbz +james.adaptiveicon.R$style: int Theme_AppCompat_Dialog +com.xw.repo.bubbleseekbar.R$attr: int customNavigationLayout +james.adaptiveicon.R$dimen: int abc_dialog_fixed_height_major +com.google.android.material.R$dimen: int mtrl_alert_dialog_background_inset_start +com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeCloudCover +com.google.android.material.R$attr: int backgroundSplit +com.google.android.material.R$styleable: int KeyCycle_motionProgress +androidx.constraintlayout.widget.R$style: int Base_AlertDialog_AppCompat_Light +androidx.preference.R$styleable: int AppCompatTheme_actionDropDownStyle +com.google.android.material.R$layout: int design_layout_snackbar +androidx.core.R$attr: int fontProviderAuthority +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalStyle +com.google.android.material.R$styleable: int[] AppCompatTextView +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_backgroundStacked +androidx.appcompat.R$attr: int actionModeSelectAllDrawable +retrofit2.RequestBuilder: void addTag(java.lang.Class,java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentListStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_18 +androidx.preference.R$style: int PreferenceThemeOverlay +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.AbstractDaoSession session +androidx.preference.R$style: int TextAppearance_AppCompat_Caption +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX: java.lang.String getUnit() +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemBackground +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemStrokeWidth +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_3_material +com.google.android.material.internal.ForegroundLinearLayout: void setForegroundGravity(int) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_strokeColor +androidx.hilt.work.R$layout: int notification_template_icon_group +androidx.legacy.coreutils.R$attr +okhttp3.internal.platform.ConscryptPlatform: javax.net.ssl.SSLContext getSSLContext() +androidx.hilt.lifecycle.R$styleable: int FontFamily_fontProviderCerts +com.jaredrummler.android.colorpicker.R$styleable: int[] AppCompatImageView +cyanogenmod.app.ILiveLockScreenManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WeatherText +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_MEDIUM_COLOR_VALIDATOR +androidx.appcompat.R$styleable: int MenuView_android_itemIconDisabledAlpha +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit KGFPSQCM +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogPreferredPadding +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver +com.google.android.material.R$drawable: int btn_checkbox_checked_mtrl +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Light +androidx.hilt.lifecycle.R$integer: int status_bar_notification_info_maxnum +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Subhead +com.google.android.material.chip.ChipGroup: void setSingleSelection(boolean) +okhttp3.internal.tls.BasicCertificateChainCleaner: java.util.List clean(java.util.List,java.lang.String) +androidx.appcompat.widget.ActionBarOverlayLayout: void setIcon(android.graphics.drawable.Drawable) +androidx.preference.R$styleable: int Toolbar_subtitle +cyanogenmod.app.IPartnerInterface$Stub$Proxy +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul3H +retrofit2.ParameterHandler$Part: ParameterHandler$Part(java.lang.reflect.Method,int,okhttp3.Headers,retrofit2.Converter) +io.reactivex.internal.util.VolatileSizeArrayList: boolean remove(java.lang.Object) +com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context,android.util.AttributeSet,int) +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long produced +com.xw.repo.bubbleseekbar.R$styleable: int[] LinearLayoutCompat_Layout +androidx.constraintlayout.widget.R$color: int error_color_material_light +okhttp3.Challenge: java.util.Map authParams() +androidx.appcompat.R$attr: int colorAccent +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadClose(int,java.lang.String) +com.google.android.material.button.MaterialButton: void setIconResource(int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating: AccuDailyResult$DailyForecasts$DegreeDaySummary$Heating() +androidx.preference.R$drawable: int abc_ic_star_black_36dp +com.google.android.material.R$animator: int mtrl_card_state_list_anim +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light_DialogWhenLarge +androidx.viewpager2.R$attr: int fontProviderFetchTimeout +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toBottomOf +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeRealFeelShaderTemperature +com.xw.repo.bubbleseekbar.R$dimen: int compat_button_inset_vertical_material +com.turingtechnologies.materialscrollbar.R$attr: int actionDropDownStyle +wangdaye.com.geometricweather.R$string: int sp_widget_hourly_trend_setting +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec build() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: android.graphics.Rect val$clipRect +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +androidx.fragment.R$styleable: int GradientColor_android_startColor +androidx.coordinatorlayout.widget.CoordinatorLayout: android.graphics.drawable.Drawable getStatusBarBackground() +androidx.vectordrawable.animated.R$attr: int fontProviderPackage +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_overflow_material +com.google.android.material.R$attr: int contentPaddingBottom +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.Float speed +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: int getStatus() +okio.GzipSource: okio.InflaterSource inflaterSource +wangdaye.com.geometricweather.R$attr: int colorPrimaryDark +androidx.customview.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial() +androidx.lifecycle.ViewModelProvider$KeyedFactory: ViewModelProvider$KeyedFactory() +wangdaye.com.geometricweather.R$layout: int material_time_input +wangdaye.com.geometricweather.R$string: int feels_like +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_backgroundTint +com.jaredrummler.android.colorpicker.R$style: int AlertDialog_AppCompat +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents_Light_Dialog +com.google.android.material.R$attr: int titleTextColor +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_pressed_holo_dark +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String detail +androidx.constraintlayout.widget.R$style: int Platform_V21_AppCompat +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Dialog +android.didikee.donate.R$id: int scrollIndicatorUp +cyanogenmod.themes.IThemeService$Stub$Proxy: void unregisterThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) +androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onStart() +com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleEnabled +okhttp3.ResponseBody$BomAwareReader: okio.BufferedSource source +wangdaye.com.geometricweather.R$string: int settings_title_precipitation_notification_switch +com.google.android.material.R$string: int material_timepicker_hour +wangdaye.com.geometricweather.R$string: int common_google_play_services_unknown_issue +wangdaye.com.geometricweather.R$attr: int curveFit +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_MonthNavigationButton +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_48dp +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: HourlyEntityDao(org.greenrobot.greendao.internal.DaoConfig) +wangdaye.com.geometricweather.R$dimen: int mtrl_fab_translation_z_pressed +androidx.preference.R$styleable: int ActionBar_contentInsetStartWithNavigation +androidx.constraintlayout.widget.R$dimen: int abc_panel_menu_list_width +androidx.viewpager.R$style: int Widget_Compat_NotificationActionText +okio.ForwardingSink: java.lang.String toString() +androidx.appcompat.widget.Toolbar: void setLogoDescription(int) +androidx.lifecycle.ClassesInfoCache$MethodReference: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int ScrimInsetsFrameLayout_insetForeground +androidx.appcompat.resources.R$string: R$string() +com.turingtechnologies.materialscrollbar.R$color: int design_fab_shadow_start_color +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_GET_SECURE +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: boolean tillTheEnd +com.tencent.bugly.a: void onServerStrategyChanged(com.tencent.bugly.crashreport.common.strategy.StrategyBean) +com.google.android.material.datepicker.DateValidatorPointBackward: android.os.Parcelable$Creator CREATOR +androidx.preference.R$drawable: int notification_bg +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low_normal +cyanogenmod.app.ThemeVersion$ComponentVersion: int id +com.turingtechnologies.materialscrollbar.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_PopupWindow +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory +androidx.preference.R$attr: int positiveButtonText +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEVELOPMENT_SHORTCUT +com.tencent.bugly.proguard.a: java.util.HashMap a +androidx.dynamicanimation.R$dimen: int compat_notification_large_icon_max_width +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatSeekBar_tickMarkTint +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int getNumGammaControls() +androidx.hilt.lifecycle.R$dimen: int notification_right_side_padding_top +androidx.preference.R$id: int accessibility_custom_action_14 +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String weatherPhase +android.didikee.donate.R$styleable: int SwitchCompat_thumbTint +androidx.transition.R$styleable: int GradientColor_android_startColor +james.adaptiveicon.R$styleable: int AppCompatTheme_dialogTheme +com.amap.api.location.AMapLocation: void setFloor(java.lang.String) +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onStart_1 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange +wangdaye.com.geometricweather.R$attr: int actionBarStyle +android.didikee.donate.R$drawable: int abc_ic_search_api_material +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Light +com.google.android.material.R$drawable: int abc_text_select_handle_middle_mtrl_dark +androidx.preference.R$drawable: int abc_text_select_handle_left_mtrl_dark +com.google.android.material.R$dimen: int tooltip_y_offset_non_touch +wangdaye.com.geometricweather.db.entities.AlertEntity: void setType(java.lang.String) +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo build() +okhttp3.internal.http1.Http1Codec$FixedLengthSink: long bytesRemaining +wangdaye.com.geometricweather.R$layout: int preference_material +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: boolean isValid() +wangdaye.com.geometricweather.R$styleable: int Constraint_android_scaleX +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Snackbar_FullWidth +wangdaye.com.geometricweather.R$attr: int flow_verticalStyle +androidx.constraintlayout.widget.R$styleable: int PropertySet_visibilityMode +com.tencent.bugly.crashreport.crash.c: void a(long) +androidx.vectordrawable.R$drawable: int notification_bg_low_pressed +androidx.viewpager.R$style +android.didikee.donate.R$attr: int logo +com.google.android.material.floatingactionbutton.FloatingActionButton: void hide(com.google.android.material.floatingactionbutton.FloatingActionButton$OnVisibilityChangedListener) +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_2 +android.didikee.donate.R$attr: int backgroundStacked +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeThunderstormPrecipitationDuration +wangdaye.com.geometricweather.R$attr: int percentY +cyanogenmod.profiles.BrightnessSettings: void setValue(int) +com.bumptech.glide.R$id +retrofit2.Retrofit$Builder: java.util.List callAdapterFactories +wangdaye.com.geometricweather.R$string: int tag_uv +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: float val$swipeProgress +androidx.swiperefreshlayout.R$id: int tag_accessibility_heading +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property O3 +androidx.drawerlayout.R$id: int actions +androidx.activity.ComponentActivity$3 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_REVERSE_LOOKUP_VALIDATOR +com.xw.repo.bubbleseekbar.R$styleable: int RecycleListView_paddingTopNoTitle +com.google.android.material.R$attr: int layout_collapseMode +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense_ExposedDropdownMenu +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: double Value +androidx.lifecycle.ClassesInfoCache$CallbackInfo: java.util.Map mHandlerToEvent +androidx.appcompat.R$attr: int multiChoiceItemLayout +com.turingtechnologies.materialscrollbar.R$color: int abc_btn_colored_borderless_text_material +com.google.gson.stream.JsonReader: int lineNumber +james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +androidx.preference.R$styleable: int MenuItem_android_id +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_statusBarBackground +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getSunRiseDate() +com.google.android.material.chip.Chip: void setChipCornerRadius(float) +wangdaye.com.geometricweather.db.entities.HourlyEntity: int temperature james.adaptiveicon.R$id: int search_plate -wangdaye.com.geometricweather.R$animator: int mtrl_btn_unelevated_state_list_anim -wangdaye.com.geometricweather.R$attr: int closeIconStartPadding -okio.Buffer: okio.ByteString hmac(java.lang.String,okio.ByteString) -com.turingtechnologies.materialscrollbar.R$id: int contentPanel -okhttp3.HttpUrl: java.lang.String password() -com.jaredrummler.android.colorpicker.R$id: int uniform -com.google.android.material.textfield.TextInputLayout: void setEndIconTintList(android.content.res.ColorStateList) -com.turingtechnologies.materialscrollbar.R$attr: int msb_barThickness -androidx.preference.R$styleable: int TextAppearance_textLocale -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: int getTemperature() -androidx.constraintlayout.widget.R$attr: int path_percent -com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_ExposedDropdownMenu -com.xw.repo.bubbleseekbar.R$attr: int paddingBottomNoButtons -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Bridge -android.support.v4.app.INotificationSideChannel: void notify(java.lang.String,int,java.lang.String,android.app.Notification) -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog -wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_previous_black_24dp -okhttp3.internal.http.HttpMethod: boolean redirectsToGet(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_entries -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String EnglishName -wangdaye.com.geometricweather.db.entities.HistoryEntity: int getDaytimeTemperature() -androidx.preference.R$styleable: int[] ActionMenuView -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.String getAqiText() -com.jaredrummler.android.colorpicker.R$styleable: int Preference_layout -wangdaye.com.geometricweather.R$color: int abc_primary_text_material_dark -cyanogenmod.platform.R$drawable: R$drawable() -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: java.lang.Throwable error -com.google.android.material.R$styleable: int Layout_layout_goneMarginBottom -com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_check_to_on_mtrl_000 -com.google.android.material.R$styleable: int KeyTimeCycle_transitionEasing -wangdaye.com.geometricweather.R$drawable: int notif_temp_65 -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_41 -cyanogenmod.providers.CMSettings$System: int getInt(android.content.ContentResolver,java.lang.String) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored -com.google.android.material.internal.VisibilityAwareImageButton: void setVisibility(int) -com.google.android.material.internal.NavigationMenuItemView: void setIcon(android.graphics.drawable.Drawable) -androidx.appcompat.R$color: int notification_action_color_filter -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: KeyguardExternalViewProviderService$Provider$ProviderImpl$5(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) -com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_FENCEID -okio.Segment: okio.Segment push(okio.Segment) -androidx.preference.R$style: int Base_Widget_AppCompat_ListView -com.google.android.material.R$color: int accent_material_dark -wangdaye.com.geometricweather.R$attr: int animate_relativeTo -com.bumptech.glide.R$string: int status_bar_notification_info_overflow -cyanogenmod.hardware.ICMHardwareService: boolean setDisplayGammaCalibration(int,int[]) -com.xw.repo.bubbleseekbar.R$attr: int windowActionBar -androidx.lifecycle.extensions.R$id: int accessibility_custom_action_14 -com.google.android.gms.common.SignInButton: SignInButton(android.content.Context) -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: java.lang.Runnable run -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionMode -wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Subtitle1 -okio.RealBufferedSink: okio.BufferedSink writeString(java.lang.String,java.nio.charset.Charset) -cyanogenmod.power.PerformanceManager: cyanogenmod.power.PerformanceManager sInstance -com.xw.repo.bubbleseekbar.R$color: int error_color_material_light -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_setInteractivity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: void setDirection(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean) -james.adaptiveicon.R$drawable: int abc_ic_search_api_material -com.jaredrummler.android.colorpicker.R$color: int material_blue_grey_950 -androidx.appcompat.R$attr: int fontWeight -com.google.android.material.R$integer: int mtrl_card_anim_delay_ms -com.google.android.material.R$dimen: int abc_dropdownitem_text_padding_right -okhttp3.Cache: void trackResponse(okhttp3.internal.cache.CacheStrategy) -com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_fast_out_slow_in -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginTop -io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function,boolean,int) -androidx.cardview.widget.CardView: boolean getPreventCornerOverlap() -okhttp3.logging.LoggingEventListener: okhttp3.logging.HttpLoggingInterceptor$Logger logger -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String TODAYS_LOW_TEMPERATURE -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property AlertId -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_1 -com.google.android.material.R$styleable: int AppCompatTheme_windowActionModeOverlay -wangdaye.com.geometricweather.R$id: int item_weather_daily_title_icon -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_text_btn_icon_padding -okhttp3.ConnectionPool: java.util.concurrent.Executor executor -io.reactivex.internal.observers.InnerQueuedObserver: io.reactivex.internal.fuseable.SimpleQueue queue -com.turingtechnologies.materialscrollbar.R$drawable: int tooltip_frame_dark -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCloseDrawable -com.jaredrummler.android.colorpicker.R$dimen: int tooltip_y_offset_non_touch -androidx.preference.ListPreference -com.google.android.material.R$styleable: int TextInputLayout_endIconTint -com.google.android.material.slider.BaseSlider: void setValueFrom(float) -androidx.hilt.work.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.R$attr: int materialCalendarHeaderTitle -james.adaptiveicon.R$attr: int ratingBarStyleIndicator -androidx.constraintlayout.motion.widget.MotionLayout: void setProgress(float) -james.adaptiveicon.R$styleable: int[] PopupWindow -androidx.hilt.lifecycle.R$id: int title -androidx.appcompat.R$attr: int divider -com.google.android.material.R$attr: int shapeAppearanceMediumComponent -wangdaye.com.geometricweather.R$attr: int colorPrimarySurface -androidx.swiperefreshlayout.R$integer: R$integer() -com.tencent.bugly.crashreport.biz.b: boolean m -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner -androidx.vectordrawable.R$integer -james.adaptiveicon.R$color: int switch_thumb_material_light -okhttp3.Handshake: java.util.List peerCertificates() -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingBottom -android.didikee.donate.R$drawable: int abc_text_cursor_material -com.google.android.gms.common.data.DataHolder -androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context,android.util.AttributeSet) -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button -wangdaye.com.geometricweather.background.receiver.widget.WidgetWeekProvider: WidgetWeekProvider() -androidx.appcompat.R$styleable: int SwitchCompat_switchPadding -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_velocityMode -com.google.android.material.R$layout: int test_chip_zero_corner_radius -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_MOBILEDATA -wangdaye.com.geometricweather.common.ui.widgets.trend.TrendLayoutManager -com.google.android.material.R$styleable: int ConstraintSet_android_transformPivotX -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animDuration -com.baidu.location.f -james.adaptiveicon.R$color: int abc_search_url_text_pressed -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth -androidx.recyclerview.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: java.util.List night -wangdaye.com.geometricweather.R$color: int design_default_color_on_background -androidx.customview.R$dimen: int notification_large_icon_width -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_profileExists -cyanogenmod.app.IProfileManager: boolean profileExists(android.os.ParcelUuid) -okhttp3.internal.publicsuffix.PublicSuffixDatabase: void setListBytes(byte[],byte[]) -wangdaye.com.geometricweather.R$styleable: int[] BottomAppBar -okhttp3.internal.ws.WebSocketWriter: boolean activeWriter -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: boolean done -wangdaye.com.geometricweather.R$attr: int buttonBarStyle -com.google.android.material.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar -com.google.android.material.R$styleable: int[] TextAppearance -androidx.hilt.work.R$styleable: int FontFamily_fontProviderAuthority -com.amap.api.location.UmidtokenInfo: java.lang.String getUmidtoken() -androidx.appcompat.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: io.reactivex.Observer downstream -io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void cancel() -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_default -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_118 -okhttp3.internal.platform.ConscryptPlatform: void configureSslSocketFactory(javax.net.ssl.SSLSocketFactory) -android.didikee.donate.R$styleable: int SwitchCompat_trackTint -androidx.lifecycle.Transformations -wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat -cyanogenmod.app.CustomTile$ExpandedItem: void writeToParcel(android.os.Parcel,int) -androidx.hilt.R$dimen: int notification_top_pad_large_text -com.autonavi.aps.amapapi.model.AMapLocationServer: int i -androidx.preference.R$styleable: int ActionMode_height -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Headline6 -okhttp3.internal.http2.Http2Codec: void flushRequest() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getBrandId() -james.adaptiveicon.R$id: int info -okhttp3.internal.http2.Http2Reader$Handler: void alternateService(int,java.lang.String,okio.ByteString,java.lang.String,int,long) -wangdaye.com.geometricweather.R$id: int mtrl_motion_snapshot_view -wangdaye.com.geometricweather.R$styleable: int ViewBackgroundHelper_android_background -io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,io.reactivex.Scheduler) -androidx.appcompat.R$dimen: int compat_button_inset_vertical_material -okhttp3.logging.LoggingEventListener: void secureConnectStart(okhttp3.Call) -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_20 +com.turingtechnologies.materialscrollbar.R$id: int bottom +com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_light +androidx.lifecycle.extensions.R$dimen: int notification_small_icon_size_as_large +okhttp3.Cookie: java.util.regex.Pattern TIME_PATTERN +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_disabled_elevation +com.google.android.material.R$style: int TextAppearance_AppCompat_Headline +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: android.os.IBinder mRemote +com.xw.repo.bubbleseekbar.R$attr: int drawableSize +cyanogenmod.providers.CMSettings$Global +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Title +com.turingtechnologies.materialscrollbar.R$bool: int abc_action_bar_embed_tabs +androidx.appcompat.resources.R$id: int info +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean +com.turingtechnologies.materialscrollbar.R$dimen: int item_touch_helper_swipe_escape_velocity +com.tencent.bugly.proguard.p: java.util.Map a(int,com.tencent.bugly.proguard.o) +okhttp3.RealCall$AsyncCall: okhttp3.RealCall get() +androidx.constraintlayout.widget.R$styleable: int Transform_android_rotation +com.tencent.bugly.proguard.x: boolean d(java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.R$attr: int preferenceScreenStyle +com.tencent.bugly.crashreport.CrashReport$WebViewInterface: java.lang.CharSequence getContentDescription() +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: long serialVersionUID +wangdaye.com.geometricweather.R$drawable: int abc_list_pressed_holo_dark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: AccuDailyResult$DailyForecasts$Day$WindGust$Direction() +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: void dispose() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Spinner_Underlined +wangdaye.com.geometricweather.R$animator: int weather_sleet_2 +james.adaptiveicon.R$drawable: int abc_ratingbar_material +com.google.android.gms.common.R$integer: int google_play_services_version +wangdaye.com.geometricweather.R$color: int material_timepicker_button_stroke +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox_Dense +androidx.appcompat.R$styleable: int SwitchCompat_android_thumb +cyanogenmod.providers.CMSettings$DiscreteValueValidator +com.tencent.bugly.proguard.aa: com.tencent.bugly.proguard.ab a(int) +okio.ByteString: okio.ByteString of(byte[]) +androidx.appcompat.R$style: int Widget_AppCompat_ButtonBar +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_snackbar_margin +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton$ExtendedFloatingActionButtonBehavior +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +okhttp3.internal.http.RetryAndFollowUpInterceptor: boolean isRecoverable(java.io.IOException,boolean) +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: java.lang.String styleId +wangdaye.com.geometricweather.R$id: int scrollable +androidx.appcompat.widget.ActionBarOverlayLayout: void setHideOnContentScrollEnabled(boolean) +james.adaptiveicon.R$layout: int abc_list_menu_item_layout +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float snow +com.google.android.material.slider.BaseSlider: void setValues(java.lang.Float[]) +wangdaye.com.geometricweather.R$styleable: int TextAppearance_textAllCaps +com.google.android.material.R$attr: int actionBarDivider +com.xw.repo.bubbleseekbar.R$layout: int abc_screen_content_include +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: java.lang.String Localized +androidx.preference.R$id: int action_bar_activity_content +retrofit2.KotlinExtensions$suspendAndThrow$1 +androidx.recyclerview.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindDegree(wangdaye.com.geometricweather.common.basic.models.weather.WindDegree) +androidx.appcompat.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +androidx.viewpager2.R$attr: int fastScrollEnabled +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginRight +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: io.reactivex.Observer downstream +okhttp3.ConnectionPool: boolean connectionBecameIdle(okhttp3.internal.connection.RealConnection) +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: int val$width +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getTrimPathEnd() +com.xw.repo.bubbleseekbar.R$id: int action_bar_title com.turingtechnologies.materialscrollbar.R$styleable: int Snackbar_snackbarButtonStyle -com.google.android.material.R$styleable: int TabLayout_tabTextColor -okhttp3.Challenge: Challenge(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index no2 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: boolean isEntityUpdateable() -wangdaye.com.geometricweather.R$attr: int itemBackground -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: AccuLocationResult$TimeZone() -wangdaye.com.geometricweather.R$color: int colorTextLight2nd -androidx.appcompat.R$styleable: int AppCompatTheme_homeAsUpIndicator -com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason valueOf(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX: CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX() -wangdaye.com.geometricweather.R$attr: int dragThreshold -android.didikee.donate.R$id: int action_mode_bar -cyanogenmod.weather.WeatherInfo: boolean isValidWeatherCode(int) -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_0 -io.reactivex.Observable: io.reactivex.Observable using(java.util.concurrent.Callable,io.reactivex.functions.Function,io.reactivex.functions.Consumer,boolean) -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_maxProgress -androidx.swiperefreshlayout.R$layout: int custom_dialog -okio.ForwardingSink: void write(okio.Buffer,long) -wangdaye.com.geometricweather.db.entities.AlertEntity: AlertEntity(java.lang.Long,java.lang.String,java.lang.String,long,java.util.Date,long,java.lang.String,java.lang.String,java.lang.String,int,int) -com.google.android.material.chip.Chip: void setCheckedIconVisible(int) -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: java.lang.String toString() -wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_colored -okhttp3.MultipartBody$Part: MultipartBody$Part(okhttp3.Headers,okhttp3.RequestBody) -okhttp3.internal.http2.Http2Connection$ReaderRunnable: okhttp3.internal.http2.Http2Reader reader -androidx.appcompat.R$attr: int actionBarSize -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: MfForecastResult$Forecast() -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Calendar -com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) -okhttp3.internal.connection.StreamAllocation: okhttp3.Route route -androidx.preference.R$attr: int layout_keyline -androidx.loader.R$integer: R$integer() -retrofit2.ParameterHandler$RelativeUrl: int p -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial -james.adaptiveicon.R$styleable: int AppCompatTheme_editTextBackground -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_height -androidx.preference.R$styleable: int AppCompatTheme_editTextStyle -androidx.hilt.R$drawable: int notification_bg_normal_pressed -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit KPH -okhttp3.HttpUrl$Builder: void push(java.lang.String,int,int,boolean,boolean) -com.jaredrummler.android.colorpicker.R$color: int abc_btn_colored_text_material -androidx.core.R$id: int accessibility_custom_action_5 -okhttp3.internal.ws.WebSocketProtocol: long CLOSE_MESSAGE_MAX -okhttp3.internal.Util$1: Util$1() -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber: LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber(androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData) -androidx.lifecycle.SavedStateViewModelFactory: void onRequery(androidx.lifecycle.ViewModel) -androidx.constraintlayout.widget.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemPaddingRight -androidx.hilt.R$id: int notification_main_column_container -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void innerError(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver,java.lang.Throwable) -okhttp3.internal.io.FileSystem$1: FileSystem$1() -wangdaye.com.geometricweather.R$drawable: int notif_temp_8 -com.google.android.material.R$styleable: int ProgressIndicator_inverse -com.google.android.material.R$styleable: int Transform_android_translationY -androidx.constraintlayout.widget.R$attr: int titleTextAppearance -com.google.android.material.R$style: int Widget_AppCompat_PopupMenu_Overflow -com.turingtechnologies.materialscrollbar.R$attr: int iconSize -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_motion_triggerOnCollision -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String f -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_weight -james.adaptiveicon.R$style: int TextAppearance_Compat_Notification -james.adaptiveicon.R$dimen: int abc_action_bar_default_padding_end_material -cyanogenmod.weather.WeatherLocation: java.lang.String mCity -com.google.android.material.R$attr: int drawableTint -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_imageButtonStyle -androidx.coordinatorlayout.R$dimen: int compat_button_inset_vertical_material -wangdaye.com.geometricweather.R$color: int cardview_shadow_end_color -androidx.work.R$styleable: int GradientColor_android_endY -com.jaredrummler.android.colorpicker.R$styleable: int Preference_dependency -retrofit2.OptionalConverterFactory: retrofit2.Converter$Factory INSTANCE -wangdaye.com.geometricweather.R$id: int material_clock_period_toggle -com.tencent.bugly.crashreport.crash.d: d(android.content.Context) -android.didikee.donate.R$drawable: int abc_dialog_material_background -androidx.recyclerview.widget.RecyclerView: void setClipToPadding(boolean) -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float thunderstorm -com.google.android.material.R$styleable: int ImageFilterView_warmth -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ListView_DropDown -com.amap.api.fence.GeoFence: int getStatus() -cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder onBind(android.content.Intent) -androidx.constraintlayout.widget.R$attr: int waveDecay -com.google.android.material.R$attr: int constraintSet -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActivityChooserView -com.google.android.gms.location.LocationSettingsRequest -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_height -okhttp3.HttpUrl: java.lang.String FORM_ENCODE_SET -io.reactivex.Observable: io.reactivex.Observable withLatestFrom(java.lang.Iterable,io.reactivex.functions.Function) -io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite valueOf(java.lang.String) -com.google.android.material.R$styleable: int Toolbar_titleMarginStart -wangdaye.com.geometricweather.R$string: int today -androidx.preference.R$id: int accessibility_custom_action_1 -io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: void setResource(io.reactivex.disposables.Disposable) -wangdaye.com.geometricweather.R$color: int darkPrimary_2 -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_get -androidx.preference.R$color: int abc_hint_foreground_material_dark -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int limit -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle -androidx.preference.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -retrofit2.RequestBuilder: void addPart(okhttp3.Headers,okhttp3.RequestBody) -androidx.preference.R$attr: int actionBarDivider -android.didikee.donate.R$styleable: int View_theme -androidx.preference.R$style: int Base_Widget_AppCompat_Toolbar -okhttp3.internal.http2.Http2Writer: void headers(boolean,int,java.util.List) -cyanogenmod.providers.DataUsageContract: java.lang.String SLOW_AVG -com.google.android.material.R$attr: int textInputStyle -com.google.android.material.R$style: int Base_Widget_MaterialComponents_AutoCompleteTextView -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getCo() -cyanogenmod.weather.CMWeatherManager$2$1: void run() -androidx.constraintlayout.widget.Constraints: androidx.constraintlayout.widget.ConstraintSet getConstraintSet() -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onComplete() -wangdaye.com.geometricweather.R$string: int uv_index -com.google.android.material.R$animator -wangdaye.com.geometricweather.R$id: int graph_wrap -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getRagweedDescription() -cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String key() -androidx.drawerlayout.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: java.util.concurrent.atomic.AtomicInteger active -androidx.lifecycle.ViewModelProvider$Factory: androidx.lifecycle.ViewModel create(java.lang.Class) -com.tencent.bugly.proguard.z: boolean b(android.content.Context,java.lang.String) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ApparentTemperature -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void onNext(java.lang.Object) -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog -androidx.hilt.lifecycle.R$layout: int notification_template_icon_group -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -com.turingtechnologies.materialscrollbar.R$id: int progress_circular -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_MinWidth -androidx.constraintlayout.widget.R$color: int dim_foreground_disabled_material_light -com.jaredrummler.android.colorpicker.R$drawable: int abc_item_background_holo_dark -androidx.lifecycle.SavedStateViewModelFactory: androidx.savedstate.SavedStateRegistry mSavedStateRegistry -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -com.google.android.material.R$styleable: int Transition_duration -androidx.appcompat.R$dimen: int compat_button_padding_horizontal_material -com.google.android.material.R$dimen: int mtrl_snackbar_margin -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float visibility -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String type -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_onPositiveCross -wangdaye.com.geometricweather.R$attr: int drawableTopCompat -com.google.android.material.internal.ScrimInsetsFrameLayout: ScrimInsetsFrameLayout(android.content.Context) -com.google.android.gms.base.R$id -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_iconEndPadding -android.support.v4.app.INotificationSideChannel$Stub: android.os.IBinder asBinder() -com.google.android.material.textfield.TextInputLayout: int getBoxStrokeColor() -cyanogenmod.weatherservice.ServiceRequest: cyanogenmod.weather.RequestInfo mInfo -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitleTextAppearance -io.reactivex.Observable: io.reactivex.Observable take(long) -com.google.android.material.textfield.TextInputLayout: int getErrorCurrentTextColors() -androidx.preference.R$attr: int key -com.google.android.material.R$styleable: int MaterialButton_cornerRadius -wangdaye.com.geometricweather.R$id: int container_main_sun_moon_sun_icon +androidx.appcompat.R$attr: int tooltipForegroundColor +com.tencent.bugly.proguard.ah: void a(java.lang.StringBuilder,int) +okhttp3.internal.http2.Http2Connection$IntervalPingRunnable: okhttp3.internal.http2.Http2Connection this$0 +okhttp3.Cache$Entry: boolean matches(okhttp3.Request,okhttp3.Response) +androidx.hilt.work.R$styleable: int FontFamilyFont_ttcIndex +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean appendLogToNative(java.lang.String,java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$id: int item_weather_daily_value_title +com.google.android.material.R$string: int abc_menu_delete_shortcut_label +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.lang.String title +androidx.hilt.work.R$integer: R$integer() +android.didikee.donate.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +com.google.gson.FieldNamingPolicy$4: FieldNamingPolicy$4(java.lang.String,int) +wangdaye.com.geometricweather.R$drawable: int abc_btn_radio_material +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: void dropTable(org.greenrobot.greendao.database.Database,boolean) +com.google.android.material.chip.ChipGroup: void setChipSpacing(int) +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_maxElementsWrap +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_55 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +com.google.android.material.R$dimen: int abc_text_size_title_material +cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri mDownloadUri +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_18 +com.xw.repo.bubbleseekbar.R$attr: int actionViewClass +android.didikee.donate.R$layout: int abc_search_view +androidx.core.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_PopupMenu_Overflow +androidx.transition.R$styleable: int GradientColor_android_type +androidx.appcompat.R$styleable: int Toolbar_logoDescription +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_normal_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio +com.turingtechnologies.materialscrollbar.R$attr: int alertDialogButtonGroupStyle +com.github.rahatarmanahmed.cpv.R$bool: int cpv_default_is_indeterminate +androidx.lifecycle.LiveData$1 +com.google.android.material.R$styleable: int Badge_badgeTextColor +com.google.android.material.R$styleable: int RangeSlider_values +com.jaredrummler.android.colorpicker.R$id: int up +androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX +com.turingtechnologies.materialscrollbar.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Subhead +cyanogenmod.weather.WeatherInfo: double mTemperature +com.google.android.material.R$string: int abc_action_bar_up_description +com.google.android.material.R$attr: int layout_constraintEnd_toEndOf +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +cyanogenmod.app.Profile: void setScreenLockMode(cyanogenmod.profiles.LockSettings) +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator: void setIndicatorColor(int) +androidx.vectordrawable.R$attr: int fontProviderFetchTimeout +androidx.appcompat.R$styleable: int LinearLayoutCompat_divider +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType QueryList +androidx.appcompat.R$attr: int collapseContentDescription +wangdaye.com.geometricweather.R$drawable: int notif_temp_61 +io.reactivex.internal.util.NotificationLite: java.lang.Object error(java.lang.Throwable) +androidx.preference.R$styleable: int AppCompatTheme_windowActionModeOverlay +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitationProbability +com.bumptech.glide.R$drawable: int notification_bg_normal +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String cityId +com.tencent.bugly.proguard.y: java.lang.Object o +wangdaye.com.geometricweather.R$string: int settings_title_notification +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: org.reactivestreams.Subscriber downstream +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintEnd_toEndOf +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onNext(java.lang.Object) +com.amap.api.location.AMapLocation: java.lang.String f(com.amap.api.location.AMapLocation,java.lang.String) +com.tencent.bugly.proguard.n: java.lang.String a(com.tencent.bugly.proguard.n) +com.google.android.material.datepicker.SingleDateSelector: android.os.Parcelable$Creator CREATOR +cyanogenmod.profiles.ConnectionSettings: int mConnectionId +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +androidx.appcompat.R$attr: int autoSizeTextType +androidx.preference.R$styleable: int MenuItem_contentDescription +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerError(java.lang.Throwable) +com.github.rahatarmanahmed.cpv.CircularProgressView: float initialStartAngle +com.google.android.material.R$style: int Widget_AppCompat_Spinner +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_5 +androidx.hilt.work.R$styleable: int Fragment_android_id +com.amap.api.location.AMapLocationClientOption: boolean isLocationCacheEnable() +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: long serialVersionUID +com.google.android.material.R$attr: int alphabeticModifiers +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_voiceIcon +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_menu_share_mtrl_alpha +com.google.android.material.R$styleable: int[] TextInputLayout +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_translationX +cyanogenmod.app.CMContextConstants: CMContextConstants() +androidx.constraintlayout.widget.R$id: int action_mode_bar_stub +james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedWidthMinor +cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String TIMEZONE_NAME +com.tencent.bugly.proguard.v: long q +com.tencent.bugly.crashreport.common.strategy.StrategyBean: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$string: int search_menu_title +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void cancelAll() +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.lang.String getSetTime(android.content.Context) +io.reactivex.internal.disposables.CancellableDisposable +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver parent +cyanogenmod.app.CustomTileListenerService: java.lang.String TAG +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: boolean isDisposed() +okhttp3.OkHttpClient: java.util.List networkInterceptors +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setText(java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_startX +cyanogenmod.app.suggest.IAppSuggestManager$Stub: android.os.IBinder asBinder() +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_backgroundTint +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode COMPRESSION_ERROR +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX() +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getNotificationThemePackageName() +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_middle_mtrl_dark +wangdaye.com.geometricweather.R$attr: int layout_constraintStart_toStartOf +okhttp3.internal.ws.RealWebSocket: long MAX_QUEUE_SIZE +androidx.preference.R$styleable: int TextAppearance_fontFamily +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_firstVerticalBias +androidx.appcompat.R$attr: int font +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.lang.String LocalizedName +androidx.viewpager2.R$dimen: int fastscroll_default_thickness +com.xw.repo.bubbleseekbar.R$drawable: int notify_panel_notification_icon_bg +androidx.constraintlayout.widget.R$dimen: int abc_text_size_small_material +io.reactivex.Observable: void subscribe(io.reactivex.Observer) +android.didikee.donate.R$style: int Widget_AppCompat_PopupMenu +okhttp3.internal.http2.Http2Connection: java.util.Set currentPushRequests +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$5: boolean val$showing +androidx.hilt.work.R$styleable: int GradientColor_android_startColor +com.bumptech.glide.R$styleable: int CoordinatorLayout_keylines +com.turingtechnologies.materialscrollbar.R$id: int action_menu_divider +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarSize +androidx.viewpager2.R$attr: int fastScrollVerticalTrackDrawable +androidx.appcompat.R$attr: int searchHintIcon +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_25 +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textSize +wangdaye.com.geometricweather.db.entities.HourlyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Time -androidx.appcompat.R$attr: int actionModeBackground -com.google.android.material.R$color: int bright_foreground_disabled_material_dark -com.google.android.material.R$style: int Widget_Compat_NotificationActionText -wangdaye.com.geometricweather.R$attr: int round -wangdaye.com.geometricweather.R$styleable: int MenuItem_android_checkable -io.reactivex.Observable: io.reactivex.Observable doOnNext(io.reactivex.functions.Consumer) -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_getLiveLockScreenEnabled -androidx.constraintlayout.widget.R$id: int staticLayout -com.google.android.material.R$styleable: int[] SwitchCompat -cyanogenmod.power.PerformanceManagerInternal -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ProgressBar -com.turingtechnologies.materialscrollbar.R$string: int abc_menu_enter_shortcut_label -android.didikee.donate.R$dimen: int notification_action_icon_size -cyanogenmod.weather.WeatherInfo: double getTodaysHigh() -wangdaye.com.geometricweather.R$style: int Widget_Design_TextInputEditText -com.xw.repo.bubbleseekbar.R$layout: int notification_action_tombstone -wangdaye.com.geometricweather.R$styleable: int Layout_barrierDirection -androidx.drawerlayout.widget.DrawerLayout: DrawerLayout(android.content.Context,android.util.AttributeSet,int) -okio.RealBufferedSource$1: int read(byte[],int,int) -wangdaye.com.geometricweather.R$anim: int fragment_main_pop_enter -okhttp3.ConnectionSpec: boolean isCompatible(javax.net.ssl.SSLSocket) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Description: AccuAlertResult$Description() -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getGrassIndex() -androidx.dynamicanimation.R$drawable: int notification_bg_normal -wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_android_textAppearance -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Small -androidx.lifecycle.SavedStateHandleController$OnRecreation: void onRecreated(androidx.savedstate.SavedStateRegistryOwner) -androidx.hilt.work.R$styleable: int GradientColor_android_type -james.adaptiveicon.R$styleable: int ActionBar_subtitle -okio.Buffer: boolean rangeEquals(long,okio.ByteString) -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer uvIndex -wangdaye.com.geometricweather.R$styleable: int KeyCycle_motionTarget -com.turingtechnologies.materialscrollbar.R$color: int material_deep_teal_200 -com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState FAILED -cyanogenmod.app.StatusBarPanelCustomTile: void writeToParcel(android.os.Parcel,int) -wangdaye.com.geometricweather.R$attr: int cpv_alphaChannelText -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceInformationStyle -wangdaye.com.geometricweather.R$id: int info -james.adaptiveicon.R$attr: int allowStacking -wangdaye.com.geometricweather.common.basic.models.weather.Base: long getTimeStamp() -com.google.android.material.floatingactionbutton.FloatingActionButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) -james.adaptiveicon.R$attr: int titleMarginBottom -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getUrl() -wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_toolbar -james.adaptiveicon.R$id: int contentPanel -wangdaye.com.geometricweather.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -androidx.coordinatorlayout.R$id: int dialog_button -com.google.android.material.chip.Chip: android.content.res.ColorStateList getCheckedIconTint() -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableBottom -androidx.constraintlayout.widget.R$attr: int windowNoTitle -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -com.google.android.material.R$string: int mtrl_badge_numberless_content_description -com.turingtechnologies.materialscrollbar.R$attr: int lineHeight -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWindDirection -androidx.appcompat.R$color: int bright_foreground_inverse_material_dark -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String EXTRA_ENABLED -wangdaye.com.geometricweather.R$bool: int cpv_default_is_indeterminate -androidx.viewpager2.R$id: int accessibility_custom_action_6 -cyanogenmod.weatherservice.IWeatherProviderService$Stub: IWeatherProviderService$Stub() -james.adaptiveicon.R$string -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int DRIZZLE -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_PopupWindow -okio.GzipSource: byte SECTION_HEADER -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton -okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod getAlpnSelectedProtocol -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: AccuDailyResult$DailyForecasts$Day$LocalSource() -wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_6 -androidx.constraintlayout.widget.R$attr: int circleRadius -wangdaye.com.geometricweather.settings.activities.SettingsActivity: SettingsActivity() -com.tencent.bugly.crashreport.crash.CrashDetailBean: int P -com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_spinBars -com.xw.repo.bubbleseekbar.R$attr: int actionBarSize -android.didikee.donate.R$styleable: int[] ListPopupWindow -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours Past6Hours -james.adaptiveicon.R$attr: int colorAccent -androidx.hilt.lifecycle.R$id: int accessibility_custom_action_30 -wangdaye.com.geometricweather.db.entities.DaoMaster: DaoMaster(org.greenrobot.greendao.database.Database) -wangdaye.com.geometricweather.settings.dialogs.AnimatableIconDialog -io.reactivex.Observable: io.reactivex.Single toSortedList() -com.jaredrummler.android.colorpicker.R$attr: int actionBarStyle -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: io.reactivex.functions.Function combiner -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial -com.google.android.material.R$dimen: int mtrl_slider_widget_height -com.google.android.material.R$styleable: int Constraint_layout_constraintTop_toTopOf -com.google.android.material.R$dimen: int mtrl_calendar_action_height -androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context) -com.turingtechnologies.materialscrollbar.R$id: int firstVisible -com.jaredrummler.android.colorpicker.R$attr: int contentInsetEnd -android.didikee.donate.R$id -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitation(java.lang.Float) -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_NoActionBar -androidx.appcompat.resources.R$dimen: int notification_right_side_padding_top -wangdaye.com.geometricweather.R$style: int notification_subtitle_text +androidx.appcompat.widget.AppCompatButton: void setAutoSizeTextTypeWithDefaults(int) +androidx.preference.R$style: int TextAppearance_AppCompat_Body1 +com.google.gson.stream.JsonReader: java.io.Reader in +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_divider +wangdaye.com.geometricweather.R$id: int notification_big_icon_1 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display4 +com.tencent.bugly.crashreport.common.info.a: java.lang.String u() +com.tencent.bugly.proguard.f: boolean equals(java.lang.Object) +androidx.constraintlayout.widget.R$style: int Base_V7_Theme_AppCompat +com.amap.api.location.AMapLocationClientOption: long r +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_small_material +androidx.preference.R$styleable: int AppCompatSeekBar_tickMarkTintMode +wangdaye.com.geometricweather.R$styleable: int RecyclerView_stackFromEnd +wangdaye.com.geometricweather.R$attr: int showDelay +androidx.appcompat.resources.R$dimen: int notification_action_icon_size +com.turingtechnologies.materialscrollbar.R$attr: int msb_hideDelayInMilliseconds +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean j +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_86 +james.adaptiveicon.R$id: int tabMode +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemMaxLines +com.tencent.bugly.crashreport.common.info.a: java.lang.Object ay +io.reactivex.Observable: io.reactivex.Observable join(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setTextColor(int) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float pm25 +wangdaye.com.geometricweather.R$id: int textinput_helper_text +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedVoice(android.content.Context,float) +io.reactivex.Observable: io.reactivex.Observable interval(long,long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customStringValue +wangdaye.com.geometricweather.R$styleable: int Constraint_pivotAnchor +androidx.appcompat.R$id: int action_mode_close_button +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Bridge +retrofit2.Retrofit: okhttp3.Call$Factory callFactory() +com.google.android.material.R$styleable: int SearchView_commitIcon +wangdaye.com.geometricweather.db.entities.DailyEntityDao: DailyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +androidx.constraintlayout.widget.R$attr: int flow_verticalAlign +io.reactivex.internal.disposables.SequentialDisposable +cyanogenmod.themes.IThemeService: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) +com.jaredrummler.android.colorpicker.R$attr: int negativeButtonText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: CaiYunMainlyResult$AqiBeanXX() +com.tencent.bugly.crashreport.common.info.a: java.lang.String l +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: long serialVersionUID +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: boolean handles(android.content.Intent) +com.jaredrummler.android.colorpicker.R$color: int notification_action_color_filter +androidx.customview.R$dimen +com.amap.api.location.UmidtokenInfo: long e +com.google.android.material.R$styleable: int Transition_duration +retrofit2.KotlinExtensions +com.google.android.material.R$styleable: int SwitchCompat_switchMinWidth +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric: int UnitType +com.jaredrummler.android.colorpicker.R$string: int abc_menu_shift_shortcut_label +cyanogenmod.externalviews.ExternalViewProviderService$Provider: android.os.Bundle mOptions +androidx.preference.R$drawable: int abc_control_background_material +com.google.android.material.R$styleable: int AppCompatTextView_autoSizeMinTextSize +android.didikee.donate.R$styleable: int SearchView_defaultQueryHint +com.xw.repo.bubbleseekbar.R$attr: int buttonBarButtonStyle +okhttp3.internal.cache.CacheInterceptor: okhttp3.internal.cache.InternalCache cache +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void onError(java.lang.Throwable) +android.didikee.donate.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +androidx.appcompat.view.menu.ActionMenuItemView: void setPopupCallback(androidx.appcompat.view.menu.ActionMenuItemView$PopupCallback) +com.google.gson.stream.JsonWriter: boolean lenient +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingTop +com.github.rahatarmanahmed.cpv.R$attr: int cpv_indeterminate +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_text_color +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String getLanguageName(android.content.Context) +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_toId +com.google.android.material.R$style: int ThemeOverlayColorAccentRed +com.google.android.gms.base.R$styleable: int LoadingImageView_circleCrop +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver +okhttp3.Cache$CacheResponseBody$1: okhttp3.Cache$CacheResponseBody this$0 +com.google.gson.stream.JsonWriter: java.lang.String deferredName +com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabBarStyle +wangdaye.com.geometricweather.R$styleable: int Badge_backgroundColor +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer realFeelTemperature +okhttp3.internal.tls.DistinguishedNameParser: int getByte(int) +cyanogenmod.app.IProfileManager: void removeNotificationGroup(android.app.NotificationGroup) +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +wangdaye.com.geometricweather.R$drawable: int clock_minute_light +com.jaredrummler.android.colorpicker.R$string: int abc_menu_alt_shortcut_label +cyanogenmod.hardware.CMHardwareManager: int FEATURE_THERMAL_MONITOR +com.tencent.bugly.proguard.c: java.lang.Object b(java.lang.String,java.lang.Object) +com.tencent.bugly.crashreport.common.strategy.StrategyBean: long f +com.turingtechnologies.materialscrollbar.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_l +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean writePersistentBytes(java.lang.String,byte[]) +androidx.appcompat.R$color: int ripple_material_light +james.adaptiveicon.R$attr: int searchViewStyle +androidx.appcompat.widget.ScrollingTabContainerView: void setAllowCollapse(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String ID +retrofit2.ParameterHandler: retrofit2.ParameterHandler iterable() +wangdaye.com.geometricweather.R$attr: int preferenceCategoryStyle +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_android_fontStyle +androidx.constraintlayout.widget.Barrier: Barrier(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.profiles.AirplaneModeSettings$1: java.lang.Object[] newArray(int) +wangdaye.com.geometricweather.R$string: int widget_day +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +androidx.lifecycle.Lifecycle: java.util.concurrent.atomic.AtomicReference mInternalScopeRef +com.google.android.material.R$attr: int boxStrokeWidth +com.jaredrummler.android.colorpicker.R$color: int primary_text_default_material_light +com.google.android.material.R$attr: int snackbarButtonStyle +io.reactivex.internal.util.ArrayListSupplier: io.reactivex.internal.util.ArrayListSupplier[] values() +cyanogenmod.media.MediaRecorder: java.lang.String ACTION_HOTWORD_INPUT_CHANGED +org.greenrobot.greendao.DaoException: DaoException() +androidx.dynamicanimation.R$styleable: int GradientColor_android_endColor +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_subtitleTextColor +com.google.android.material.R$drawable: int mtrl_ic_arrow_drop_up +com.xw.repo.bubbleseekbar.R$styleable: int[] FontFamilyFont +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toLeftOf +com.github.rahatarmanahmed.cpv.BuildConfig: boolean DEBUG +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textColorLink +com.google.android.material.card.MaterialCardView: float getProgress() +androidx.constraintlayout.widget.R$attr: int layout_constraintTop_creator +androidx.preference.R$string: int abc_searchview_description_query +com.tencent.bugly.proguard.l: boolean a(java.lang.Object,java.lang.Object) +androidx.preference.R$styleable: int PreferenceFragment_android_layout +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ListPopupWindow +cyanogenmod.providers.CMSettings$Secure: java.lang.String STATS_COLLECTION_REPORTED +androidx.appcompat.R$style: int Base_Widget_AppCompat_Spinner +com.google.android.material.R$styleable: int TextAppearance_android_shadowColor +wangdaye.com.geometricweather.R$dimen: int fastscroll_margin +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableRight +androidx.constraintlayout.widget.R$attr: int drawableTint +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_alphabeticModifiers +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarStyle +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_motionTarget +androidx.constraintlayout.widget.R$styleable: int Motion_transitionEasing +okhttp3.Cache$2: boolean canRemove +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: okio.BufferedSource source() +android.didikee.donate.R$attr: int paddingTopNoTitle +com.google.android.material.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +androidx.legacy.coreutils.R$attr: int fontProviderFetchStrategy +androidx.appcompat.widget.ActionBarContextView +wangdaye.com.geometricweather.R$layout: int container_main_details +com.google.android.material.bottomappbar.BottomAppBar: int getLeftInset() +com.bumptech.glide.R$styleable: int GradientColor_android_tileMode +com.google.android.material.R$styleable: int ActionBar_subtitleTextStyle +com.jaredrummler.android.colorpicker.R$id: R$id() +wangdaye.com.geometricweather.R$drawable: int notif_temp_53 +androidx.appcompat.R$style: int Widget_AppCompat_ProgressBar_Horizontal +android.support.v4.os.ResultReceiver$1: android.support.v4.os.ResultReceiver[] newArray(int) +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: boolean cancelled +wangdaye.com.geometricweather.R$string: int settings_title_forecast_today +androidx.cardview.R$attr: int cardPreventCornerOverlap +io.reactivex.internal.schedulers.AbstractDirectTask: java.lang.Runnable runnable +androidx.appcompat.R$attr: int actionModeCloseButtonStyle +com.google.gson.stream.JsonReader: java.lang.String nextName() +androidx.activity.R$id: int accessibility_custom_action_1 +cyanogenmod.themes.ThemeManager: cyanogenmod.themes.IThemeProcessingListener mThemeProcessingListener +io.reactivex.Observable: io.reactivex.Observable zipWith(io.reactivex.ObservableSource,io.reactivex.functions.BiFunction,boolean,int) +androidx.preference.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$id: int action_menu_presenter +androidx.core.R$id: int accessibility_custom_action_20 +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: long serialVersionUID +com.jaredrummler.android.colorpicker.R$styleable: int ViewStubCompat_android_inflatedId +com.google.android.material.R$styleable: int MaterialButton_icon +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: java.util.List getValue() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintBaseline_creator +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$id: int container_main_details_recyclerView +androidx.preference.R$attr: int actionBarWidgetTheme +com.google.android.material.datepicker.MaterialCalendar +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void again(java.lang.Object) +androidx.preference.R$styleable: int DrawerArrowToggle_arrowShaftLength +com.amap.api.fence.GeoFence: int TYPE_DISTRICT +androidx.preference.R$color: int abc_tint_switch_track +android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.appcompat.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +okio.Buffer: okio.Timeout timeout() +androidx.hilt.lifecycle.R$drawable: int notification_bg_normal_pressed +james.adaptiveicon.R$string: int abc_shareactionprovider_share_with_application +com.google.android.gms.location.zzbe +com.jaredrummler.android.colorpicker.R$id: int progress_horizontal +wangdaye.com.geometricweather.R$color: int material_slider_halo_color +io.reactivex.Observable: io.reactivex.Observable skip(long,java.util.concurrent.TimeUnit) +cyanogenmod.providers.CMSettings$System$1: CMSettings$System$1() +com.google.android.material.R$color: int design_dark_default_color_primary_dark +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.preference.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +com.google.android.material.R$attr: int alertDialogButtonGroupStyle +androidx.constraintlayout.widget.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +com.google.android.material.R$color: int abc_primary_text_material_light +wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String readKey(android.database.Cursor,int) +androidx.constraintlayout.widget.R$style: int Base_V26_Theme_AppCompat_Light +com.tencent.bugly.proguard.am: java.lang.String d +com.amap.api.fence.GeoFence: android.os.Parcelable$Creator CREATOR +androidx.appcompat.widget.Toolbar: int getCurrentContentInsetEnd() +okhttp3.OkHttpClient$Builder: okhttp3.CookieJar cookieJar +com.jaredrummler.android.colorpicker.R$layout: int abc_activity_chooser_view_list_item +okhttp3.Response$Builder: okhttp3.ResponseBody body +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.String weatherDescription +com.tencent.bugly.proguard.ap: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator +androidx.constraintlayout.widget.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton +com.google.gson.internal.LinkedTreeMap: boolean $assertionsDisabled +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabBackground +cyanogenmod.providers.DataUsageContract: java.lang.String LABEL +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type TOP +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeRealFeelShaderTemperature() +james.adaptiveicon.R$attr: int listDividerAlertDialog +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String weatherEnd +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyBottomRight +com.google.android.material.R$attr: int badgeStyle +okhttp3.HttpUrl +com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabAlignmentMode +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotationY +okhttp3.internal.cache.DiskLruCache: java.lang.String DIRTY +james.adaptiveicon.R$id: int forever +wangdaye.com.geometricweather.R$attr: int radius_to +com.google.gson.stream.JsonReader: void skipUnquotedValue() +com.google.gson.LongSerializationPolicy$1: com.google.gson.JsonElement serialize(java.lang.Long) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric Metric +androidx.fragment.R$styleable: R$styleable() +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_divider +wangdaye.com.geometricweather.R$style: int widget_text_clock +androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context,android.util.AttributeSet,int) +androidx.vectordrawable.animated.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property ApparentTemperature +androidx.viewpager.R$drawable: int notify_panel_notification_icon_bg +com.jaredrummler.android.colorpicker.R$drawable: int cpv_ic_arrow_right_black_24dp +wangdaye.com.geometricweather.R$styleable: int MenuItem_iconTint +wangdaye.com.geometricweather.R$attr: int applyMotionScene +com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintWidth_default +com.jaredrummler.android.colorpicker.R$id: int search_plate +com.google.android.material.R$styleable: int[] CoordinatorLayout_Layout +cyanogenmod.app.ProfileManager: boolean isProfilesEnabled() +com.tencent.bugly.proguard.ah: java.lang.String c +androidx.preference.R$attr: int summaryOff +james.adaptiveicon.R$color: int abc_tint_btn_checkable +wangdaye.com.geometricweather.R$id: int mtrl_picker_header_title_and_selection +okio.BufferedSource: void skip(long) +wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_right_mtrl_dark +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit C +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindDirection +android.didikee.donate.R$styleable: int View_paddingStart +okhttp3.internal.Util: java.lang.String trimSubstring(java.lang.String,int,int) +androidx.appcompat.R$drawable: int abc_textfield_activated_mtrl_alpha +com.jaredrummler.android.colorpicker.R$id: int action_context_bar +wangdaye.com.geometricweather.R$id: int dialog_weather_hourly_text +wangdaye.com.geometricweather.R$string: int action_search +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_xmlIcon +com.turingtechnologies.materialscrollbar.R$attr: int popupWindowStyle +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver inner +android.didikee.donate.R$layout: int abc_action_menu_item_layout +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float Ozone +james.adaptiveicon.R$id: int icon_group +james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupWindow +com.tencent.bugly.proguard.ak: long b +wangdaye.com.geometricweather.R$id: int widget_week_temp_3 +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: void close() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_ActionBar +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +androidx.appcompat.R$dimen: int abc_select_dialog_padding_start_material +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_onAttachedToWindow +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvIndex +com.google.android.material.R$styleable: int TabItem_android_text +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getMoonRiseDate() +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.lang.Object adapt(retrofit2.Call) +android.didikee.donate.R$styleable: int DrawerArrowToggle_thickness +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Spinner +com.google.android.material.R$attr: int thumbTintMode +androidx.work.R$id: R$id() +com.google.android.material.R$attr: int transitionEasing +com.google.android.material.R$attr: int chipStrokeColor +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_overlay +cyanogenmod.app.ProfileGroup: int mNameResId +okio.Buffer$2: void close() +com.google.android.material.R$layout: int abc_action_mode_close_item_material +james.adaptiveicon.R$style: int Widget_AppCompat_SearchView_ActionBar +wangdaye.com.geometricweather.background.receiver.widget.WidgetMultiCityProvider +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setNewX(java.lang.String) +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: float getPressure(float) +wangdaye.com.geometricweather.R$string: int feedback_request_location_permission_success +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_black_36dp +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.appcompat.R$styleable: int ActionBar_contentInsetLeft +com.google.gson.LongSerializationPolicy: com.google.gson.JsonElement serialize(java.lang.Long) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void run() +androidx.preference.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +android.didikee.donate.R$styleable: int AppCompatTheme_actionMenuTextAppearance +com.google.android.material.R$styleable: int Layout_barrierAllowsGoneWidgets +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotationY +com.xw.repo.bubbleseekbar.R$attr: int textAppearanceSmallPopupMenu +com.jaredrummler.android.colorpicker.R$attr: int trackTintMode +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType valueOf(java.lang.String) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: int getStrokeColor() +wangdaye.com.geometricweather.R$attr: int layout_editor_absoluteX +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatImageView_tint +androidx.lifecycle.ComputableLiveData$3 +com.turingtechnologies.materialscrollbar.R$id: int normal +androidx.recyclerview.R$id: int dialog_button +com.google.android.material.R$drawable: int abc_list_selector_holo_light +android.didikee.donate.R$styleable: int AppCompatTheme_actionModePasteDrawable +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeIcePrecipitation +androidx.preference.R$dimen: int tooltip_horizontal_padding +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_max +com.turingtechnologies.materialscrollbar.R$drawable: int notification_action_background +okhttp3.Cookie: boolean domainMatch(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.common.basic.models.weather.Minutely +wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_left_black_24dp +wangdaye.com.geometricweather.R$drawable: int notif_temp_121 +wangdaye.com.geometricweather.R$layout: int design_layout_tab_icon +androidx.appcompat.R$styleable: int ColorStateListItem_android_color +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean delayErrors +androidx.lifecycle.LifecycleRegistry$1 +androidx.recyclerview.widget.LinearLayoutManager$SavedState +okhttp3.internal.http2.Http2Reader: okio.BufferedSource source +wangdaye.com.geometricweather.db.entities.DailyEntity: void setWeatherSource(java.lang.String) +com.google.android.material.R$styleable: int FloatingActionButton_backgroundTintMode +androidx.constraintlayout.helper.widget.Flow: void setVerticalGap(int) +androidx.constraintlayout.widget.R$attr: int lineHeight +wangdaye.com.geometricweather.R$drawable: int flag_pl +com.google.android.material.R$id: int accessibility_custom_action_28 +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontStyle +com.tencent.bugly.crashreport.crash.c: void i() +androidx.appcompat.R$styleable: int ActionMode_backgroundSplit +androidx.appcompat.resources.R$integer: R$integer() +okio.ByteString: int size() +androidx.work.R$attr: int fontProviderCerts +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_android_orderingFromXml +androidx.lifecycle.LifecycleEventObserver +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX +wangdaye.com.geometricweather.R$string: int abc_action_bar_home_description +androidx.appcompat.R$id: int tag_accessibility_pane_title +io.reactivex.internal.subscriptions.SubscriptionHelper: void deferredRequest(java.util.concurrent.atomic.AtomicReference,java.util.concurrent.atomic.AtomicLong,long) +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_phaseView +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitleTextColor +androidx.appcompat.R$style: int Base_V7_Theme_AppCompat_Light +androidx.constraintlayout.widget.R$attr: int actionOverflowMenuStyle +androidx.preference.R$styleable: int SwitchPreference_android_switchTextOn +com.google.android.material.R$styleable: int AppBarLayout_android_keyboardNavigationCluster +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Badge +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String ID +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String key +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_radius +okio.Pipe +androidx.hilt.work.R$id: int icon_group +wangdaye.com.geometricweather.R$styleable: int ListPreference_android_entryValues +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: long end +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarSize +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +cyanogenmod.app.CustomTile$ExpandedStyle: int getStyle() +androidx.transition.ChangeBounds$7: androidx.transition.ChangeBounds$ViewBounds mViewBounds +wangdaye.com.geometricweather.R$styleable: int[] Chip +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_transitionEasing +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_light +okio.RealBufferedSource: long indexOfElement(okio.ByteString,long) +android.didikee.donate.R$styleable: int MenuGroup_android_checkableBehavior +james.adaptiveicon.R$color: int material_grey_900 +okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache$Snapshot snapshot() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String getWeathercn() +okhttp3.ConnectionPool: ConnectionPool(int,long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$drawable: int notif_temp_48 +com.jaredrummler.android.colorpicker.R$color: int abc_btn_colored_borderless_text_material +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_AppbarPopupTheme +androidx.hilt.lifecycle.R$styleable: int[] FontFamilyFont +androidx.constraintlayout.widget.R$styleable: int MockView_mock_labelColor +androidx.core.R$id: int italic +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_RC4_40_MD5 +androidx.core.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float thunderstormPrecipitationProbability +wangdaye.com.geometricweather.R$drawable: int selectable_ripple +com.google.android.material.R$styleable: int FloatingActionButton_backgroundTint +androidx.constraintlayout.widget.R$id: int scrollIndicatorDown +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2$1 +cyanogenmod.externalviews.KeyguardExternalView$7: KeyguardExternalView$7(cyanogenmod.externalviews.KeyguardExternalView) +com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingRight() +cyanogenmod.app.BaseLiveLockManagerService: void cancelLiveLockScreen(java.lang.String,int,int) +androidx.preference.R$attr: int toolbarNavigationButtonStyle +android.didikee.donate.R$color: int switch_thumb_material_dark +androidx.appcompat.resources.R$drawable: int notification_bg_normal_pressed +com.autonavi.aps.amapapi.model.AMapLocationServer: int c() +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language POLISH +okhttp3.Cookie: java.util.regex.Pattern MONTH_PATTERN +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_rounded_corner_radius com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_headline_material -com.bumptech.glide.integration.okhttp.R$drawable: int notification_template_icon_low_bg -androidx.constraintlayout.widget.R$styleable: int Constraint_android_translationX -james.adaptiveicon.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_padding_horizontal_material -james.adaptiveicon.R$style: int Theme_AppCompat_Light_DarkActionBar -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor DARK -okio.Buffer: okio.Buffer copyTo(okio.Buffer,long,long) -com.google.android.material.R$styleable: int Transition_motionInterpolator -androidx.constraintlayout.widget.R$styleable: int AlertDialog_buttonPanelSideLayout -wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -okhttp3.internal.cache.DiskLruCache: java.util.Iterator snapshots() -okhttp3.internal.http2.Http2Connection$PingRunnable: boolean reply -com.xw.repo.bubbleseekbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -wangdaye.com.geometricweather.R$color: int colorTextContent_light -cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: android.os.IBinder asBinder() -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: org.reactivestreams.Subscriber downstream -androidx.constraintlayout.widget.R$id: int decelerateAndComplete -wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationZ -androidx.appcompat.widget.AppCompatSpinner: androidx.appcompat.widget.AppCompatSpinner$SpinnerPopup getInternalPopup() -com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_linear_out_slow_in -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_low -org.greenrobot.greendao.AbstractDao: boolean detach(java.lang.Object) -wangdaye.com.geometricweather.db.entities.ChineseCityEntity -wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig dailyEntityDaoConfig -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String ALARM_STATE -wangdaye.com.geometricweather.R$array: int languages -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Subhead -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dividerVertical -com.tencent.bugly.proguard.ao: void a(com.tencent.bugly.proguard.j) -wangdaye.com.geometricweather.R$attr: int checkedIconEnabled -wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String value -com.google.android.material.R$drawable: int notification_bg_normal_pressed -com.turingtechnologies.materialscrollbar.R$styleable: int[] ScrollingViewBehavior_Layout -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedPath(java.lang.String) -androidx.appcompat.R$style: int Base_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Time -androidx.constraintlayout.widget.R$attr: int windowActionModeOverlay -androidx.appcompat.R$styleable: int AppCompatTheme_panelMenuListTheme -androidx.hilt.R$style: int TextAppearance_Compat_Notification -androidx.core.R$id: int notification_main_column_container -com.bumptech.glide.R$dimen: int notification_top_pad -com.google.android.material.textfield.TextInputLayout: void setHintTextAppearance(int) -androidx.coordinatorlayout.R$id: int accessibility_custom_action_28 -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowFixedHeightMajor -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar -okhttp3.Authenticator -androidx.vectordrawable.animated.R$dimen: int notification_small_icon_background_padding -wangdaye.com.geometricweather.R$id: int item_aqi_title -androidx.appcompat.R$drawable: int abc_list_selector_disabled_holo_dark -androidx.activity.R$integer -androidx.work.R$dimen: int notification_subtext_size -androidx.preference.R$styleable: int[] SearchView -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String ragweedDescription -wangdaye.com.geometricweather.R$string: int character_counter_pattern -wangdaye.com.geometricweather.R$drawable: int abc_ratingbar_material -androidx.appcompat.R$dimen: int abc_seekbar_track_background_height_material -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: void runFinally() -androidx.preference.R$id: int item_touch_helper_previous_elevation -wangdaye.com.geometricweather.R$attr: int prefixTextColor -androidx.constraintlayout.widget.R$attr: int colorPrimary -com.tencent.bugly.crashreport.CrashReport: void setIsDevelopmentDevice(android.content.Context,boolean) -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.turingtechnologies.materialscrollbar.R$attr: int titleMarginStart -androidx.hilt.lifecycle.R$id: int accessibility_action_clickable_span -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter emitter -wangdaye.com.geometricweather.R$styleable: int Constraint_android_elevation -com.xw.repo.bubbleseekbar.R$attr: int colorControlHighlight -cyanogenmod.profiles.AirplaneModeSettings: void setValue(int) -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy UPPER_CAMEL_CASE -wangdaye.com.geometricweather.R$id: int ghost_view_holder -cyanogenmod.app.ProfileGroup: void setRingerMode(cyanogenmod.app.ProfileGroup$Mode) -io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,boolean) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_79 -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Menu -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.internal.util.AtomicThrowable error -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level[] values() -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function5) -wangdaye.com.geometricweather.R$styleable: int Preference_allowDividerAbove -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Body2 -com.xw.repo.bubbleseekbar.R$string: int abc_menu_function_shortcut_label -com.google.android.material.R$drawable: int abc_list_selector_disabled_holo_dark -androidx.appcompat.R$color: int material_grey_100 -androidx.preference.R$styleable: int RecycleListView_paddingBottomNoButtons -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult -com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_disabled_color -wangdaye.com.geometricweather.R$animator: int mtrl_card_state_list_anim -okhttp3.internal.http2.Http2Stream: void addBytesToWriteWindow(long) -com.google.android.material.R$style: int ShapeAppearanceOverlay_BottomLeftDifferentCornerSize +androidx.preference.R$color: int material_deep_teal_500 +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +com.turingtechnologies.materialscrollbar.R$anim: int abc_fade_in +com.amap.api.location.APSService: boolean c +retrofit2.ParameterHandler$HeaderMap +com.google.android.material.chip.Chip: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_12 +com.google.android.material.R$attr: int circleRadius +androidx.preference.R$styleable: int GradientColor_android_endX +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$color: int design_dark_default_color_background +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.os.RemoteCallbackList mCallbacks +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListPopupWindow +androidx.coordinatorlayout.R$drawable: int notification_bg_low_pressed +wangdaye.com.geometricweather.R$drawable: int ic_toolbar_close +com.google.android.material.R$styleable: int MenuView_android_itemTextAppearance +androidx.vectordrawable.R$styleable: int GradientColor_android_startX +retrofit2.adapter.rxjava2.ResultObservable: ResultObservable(io.reactivex.Observable) +okhttp3.internal.cache2.Relay: okio.Buffer upstreamBuffer +okhttp3.MultipartBody$Part: okhttp3.MultipartBody$Part createFormData(java.lang.String,java.lang.String,okhttp3.RequestBody) +androidx.constraintlayout.widget.R$id: int ignoreRequest +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void disposeInner() +com.google.android.material.R$style: int Widget_Compat_NotificationActionContainer +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sAlwaysTrueValidator +androidx.hilt.R$layout: int notification_action_tombstone +com.google.android.material.R$attr: int inverse +com.tencent.bugly.proguard.ai: java.lang.String a +com.google.android.material.R$color: int secondary_text_default_material_dark +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnt +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: CaiYunMainlyResult() +com.google.android.material.R$color: int mtrl_textinput_default_box_stroke_color +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SeekBar +com.tencent.bugly.crashreport.common.info.a: boolean y +com.amap.api.location.AMapLocation com.google.android.material.R$attr: int barrierMargin -com.xw.repo.bubbleseekbar.R$color: int bright_foreground_material_light -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_MEDIUM_COLOR -okhttp3.Response$Builder: okhttp3.Response priorResponse -wangdaye.com.geometricweather.R$animator: int weather_haze_3 -io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: long serialVersionUID -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1 -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Dialog -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_DarkActionBar_Bridge -com.turingtechnologies.materialscrollbar.Indicator: int getTextSize() -cyanogenmod.providers.CMSettings$System: java.lang.String BATTERY_LIGHT_ENABLED -androidx.preference.R$color: int highlighted_text_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_toolbarStyle -androidx.drawerlayout.R$styleable: int FontFamily_fontProviderAuthority -com.bumptech.glide.integration.okhttp.R$id: int chronometer -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginTop -retrofit2.ParameterHandler$FieldMap: ParameterHandler$FieldMap(java.lang.reflect.Method,int,retrofit2.Converter,boolean) -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.DoubleHistogramView: DoubleHistogramView(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean dispatchKeyShortcutEvent(android.view.KeyEvent) -wangdaye.com.geometricweather.R$attr: int contentInsetStart -com.google.android.material.R$styleable: int MaterialTextView_android_lineHeight -androidx.constraintlayout.widget.R$id: int none -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_startIconTint -retrofit2.ParameterHandler$Tag: ParameterHandler$Tag(java.lang.Class) -android.didikee.donate.R$style: int Widget_AppCompat_ActionButton_Overflow -androidx.hilt.work.R$styleable: int GradientColorItem_android_color -com.xw.repo.bubbleseekbar.R$anim: int abc_slide_in_bottom -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX getBrandInfo() -com.jaredrummler.android.colorpicker.R$attr: int dividerPadding -cyanogenmod.app.LiveLockScreenInfo: cyanogenmod.app.LiveLockScreenInfo clone() -cyanogenmod.providers.CMSettings$System: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) -wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_LOW -android.didikee.donate.R$styleable: int SearchView_iconifiedByDefault -okhttp3.internal.http2.Http2Writer: okio.BufferedSink sink -io.reactivex.internal.subscribers.DeferredScalarSubscriber: void onError(java.lang.Throwable) -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat -com.turingtechnologies.materialscrollbar.R$drawable: int abc_tab_indicator_mtrl_alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: void setValue(java.lang.String) -androidx.legacy.coreutils.R$color: int secondary_text_default_material_light -wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_enforceTextAppearance -com.google.android.material.R$attr: int fabCradleRoundedCornerRadius -wangdaye.com.geometricweather.R$style: int spinner_item -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.lang.String domain -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: long EpochEndTime -james.adaptiveicon.R$dimen: int abc_dialog_fixed_height_major -com.google.android.material.tabs.TabLayout$TabView: com.google.android.material.tabs.TabLayout$Tab getTab() -com.tencent.bugly.proguard.u: void a(int,com.tencent.bugly.proguard.an) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_switch_track_mtrl_alpha -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RainPrecipitationProbability -com.xw.repo.bubbleseekbar.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 -com.turingtechnologies.materialscrollbar.R$styleable: int[] StateListDrawableItem -com.turingtechnologies.materialscrollbar.R$attr: int layout_anchorGravity -james.adaptiveicon.R$styleable: int AlertDialog_listLayout -androidx.vectordrawable.R$id: int accessibility_custom_action_27 -com.amap.api.location.LocationManagerBase: void startLocation() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust -com.amap.api.location.DPoint: double getLongitude() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain: int UnitType -androidx.preference.R$styleable: int View_android_theme -cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem() -androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_android_color -com.google.android.material.R$styleable: int[] State -androidx.lifecycle.Transformations$2: androidx.lifecycle.LiveData mSource -cyanogenmod.weatherservice.WeatherProviderService: android.os.IBinder onBind(android.content.Intent) -james.adaptiveicon.R$styleable: int SwitchCompat_trackTintMode -wangdaye.com.geometricweather.R$string: int week_7 -retrofit2.ServiceMethod: retrofit2.ServiceMethod parseAnnotations(retrofit2.Retrofit,java.lang.reflect.Method) -android.didikee.donate.R$attr: int textAppearancePopupMenuHeader -androidx.appcompat.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -android.didikee.donate.R$styleable: int AppCompatTheme_ratingBarStyleSmall -okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level[] $VALUES -androidx.preference.R$attr: int navigationContentDescription -wangdaye.com.geometricweather.R$attr: int collapsingToolbarLayoutStyle -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_fontVariationSettings -com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_color -okhttp3.HttpUrl: java.lang.String username() -androidx.preference.R$attr: int drawableSize -com.google.android.material.R$styleable: int[] MaterialToolbar -androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_id -okhttp3.internal.cache.DiskLruCache: java.lang.Runnable cleanupRunnable -wangdaye.com.geometricweather.R$color: int tooltip_background_dark -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: float unitFactor -wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_1 -androidx.hilt.R$drawable: int notification_bg_normal -androidx.constraintlayout.widget.R$drawable: int notification_template_icon_low_bg -com.turingtechnologies.materialscrollbar.R$style: int Theme_Design_BottomSheetDialog -wangdaye.com.geometricweather.R$drawable: int design_ic_visibility_off -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_FloatingActionButton -com.google.android.material.R$attr: int materialCalendarFullscreenTheme -android.didikee.donate.R$styleable: int Spinner_popupTheme -androidx.preference.R$styleable: int PreferenceImageView_android_maxWidth -com.google.android.material.R$string: int fab_transformation_scrim_behavior -com.turingtechnologies.materialscrollbar.R$attr: int strokeWidth -androidx.appcompat.R$styleable: int AppCompatTheme_checkboxStyle -androidx.legacy.coreutils.R$styleable: int GradientColor_android_centerY -androidx.appcompat.R$styleable: int AppCompatSeekBar_tickMarkTintMode -androidx.preference.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset -james.adaptiveicon.R$attr: int windowFixedHeightMinor -androidx.appcompat.R$attr: int actionProviderClass -android.didikee.donate.R$attr: int splitTrack -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textColorSearchUrl -androidx.appcompat.R$styleable: int AppCompatTheme_actionModeBackground -androidx.preference.R$attr: int singleChoiceItemLayout -androidx.viewpager2.R$attr: int ttcIndex -wangdaye.com.geometricweather.R$attr: int layout_constraintHeight_min -com.tencent.bugly.crashreport.crash.c: void f() -androidx.preference.R$integer: R$integer() -com.tencent.bugly.crashreport.biz.b: long i -wangdaye.com.geometricweather.R$dimen: int design_snackbar_action_text_color_alpha -com.jaredrummler.android.colorpicker.R$string: int abc_action_menu_overflow_description -io.reactivex.exceptions.CompositeException: CompositeException(java.lang.Throwable[]) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_subtitle_top_margin_material -com.google.android.material.R$attr: int ratingBarStyle -com.google.android.material.R$dimen: int mtrl_extended_fab_top_padding -androidx.appcompat.R$attr: int tintMode -wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_itemBackground -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_behavior -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceCaption -com.google.android.material.R$styleable: int ClockFaceView_valueTextColor -james.adaptiveicon.R$color: int bright_foreground_disabled_material_dark -com.tencent.bugly.proguard.z: java.lang.String a(long) -wangdaye.com.geometricweather.R$drawable: int cpv_ic_arrow_right_black_24dp -androidx.core.R$styleable: int GradientColor_android_gradientRadius -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_radius -okhttp3.internal.http.BridgeInterceptor: okhttp3.Response intercept(okhttp3.Interceptor$Chain) -okhttp3.internal.http2.Hpack: int PREFIX_6_BITS -okhttp3.internal.http.RetryAndFollowUpInterceptor: okhttp3.internal.connection.StreamAllocation streamAllocation -androidx.appcompat.R$attr: int windowFixedWidthMinor -androidx.hilt.lifecycle.R$styleable: int ColorStateListItem_android_color -cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper access$100(cyanogenmod.app.CustomTileListenerService) -androidx.transition.R$id: int tag_unhandled_key_event_manager -androidx.dynamicanimation.R$layout: int notification_template_part_time -androidx.preference.R$styleable: int MenuView_preserveIconSpacing -okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: java.lang.Object x509TrustManagerExtensions -com.google.android.material.R$id: int blocking -androidx.constraintlayout.widget.R$styleable: int SearchView_closeIcon -com.amap.api.fence.PoiItem$1: java.lang.Object[] newArray(int) -com.google.android.material.R$color: int material_timepicker_clockface -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_searchViewStyle -wangdaye.com.geometricweather.R$styleable: int Preference_android_layout -androidx.constraintlayout.helper.widget.Flow: void setHorizontalStyle(int) -androidx.viewpager2.R$styleable: int FontFamilyFont_fontWeight -com.google.android.material.R$attr: int altSrc -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder port(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsShow(boolean) -com.tencent.bugly.crashreport.a: boolean setNativeIsAppForeground(boolean) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setO3(java.lang.Float) -androidx.activity.R$style -androidx.preference.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -io.reactivex.internal.schedulers.RxThreadFactory: java.lang.String prefix -retrofit2.Retrofit: Retrofit(okhttp3.Call$Factory,okhttp3.HttpUrl,java.util.List,java.util.List,java.util.concurrent.Executor,boolean) -wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle valueOf(java.lang.String) -com.jaredrummler.android.colorpicker.R$styleable: int Preference_iconSpaceReserved -com.google.android.material.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -androidx.dynamicanimation.R$dimen: int notification_large_icon_width -androidx.activity.R$layout: int notification_template_custom_big -wangdaye.com.geometricweather.db.entities.WeatherEntity: int getTemperature() -james.adaptiveicon.R$attr: int navigationContentDescription -androidx.preference.R$styleable: int[] Spinner -androidx.constraintlayout.widget.R$styleable: int Layout_layout_editor_absoluteY -com.google.gson.internal.LinkedTreeMap: java.util.Set entrySet() -androidx.hilt.lifecycle.R$attr: int fontStyle -wangdaye.com.geometricweather.common.basic.models.weather.Alert: long getTime() -wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService: MaterialLiveWallpaperService() -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult -android.didikee.donate.R$color: int background_material_dark -cyanogenmod.profiles.AirplaneModeSettings: void setOverride(boolean) -wangdaye.com.geometricweather.R$styleable: int AlertDialog_listItemLayout -androidx.appcompat.widget.AppCompatTextView: void setLineHeight(int) -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: ExternalViewProviderService$Provider$ProviderImpl$4(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -cyanogenmod.externalviews.KeyguardExternalView$3 -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableRightCompat -com.google.android.material.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle -retrofit2.ParameterHandler$QueryName: retrofit2.Converter nameConverter -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy LATEST -androidx.preference.R$color: int material_blue_grey_950 -androidx.appcompat.R$styleable: int[] MenuItem +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_startAngle +com.google.android.material.R$id: int accessibility_custom_action_5 +cyanogenmod.profiles.AirplaneModeSettings$BooleanState: int STATE_ENABLED +com.xw.repo.bubbleseekbar.R$id: int group_divider +com.google.android.material.R$styleable: int CustomAttribute_attributeName +okhttp3.internal.Util: javax.net.ssl.X509TrustManager platformTrustManager() +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_registerChangeListener +android.didikee.donate.R$styleable: int SearchView_searchIcon +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_horizontalStyle +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getRain() +com.tencent.bugly.crashreport.common.info.a: java.lang.String P +androidx.activity.R$dimen: int compat_button_padding_horizontal_material +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_iconTint +cyanogenmod.content.Intent: java.lang.String EXTRA_PROTECTED_COMPONENTS +retrofit2.Utils$WildcardTypeImpl: Utils$WildcardTypeImpl(java.lang.reflect.Type[],java.lang.reflect.Type[]) +james.adaptiveicon.R$attr: int displayOptions +io.reactivex.subjects.PublishSubject$PublishDisposable: void dispose() +androidx.lifecycle.R: R() +androidx.constraintlayout.widget.R$id: int parentPanel +com.google.android.material.R$dimen: int design_snackbar_max_width +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarTheme +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean forecastDaily +wangdaye.com.geometricweather.R$styleable: int MotionLayout_showPaths +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void drain() +com.google.android.material.R$attr: int constraintSet +okhttp3.logging.LoggingEventListener: void responseBodyEnd(okhttp3.Call,long) +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$styleable: int Transform_android_transformPivotY +io.reactivex.Observable: io.reactivex.Observable onErrorResumeNext(io.reactivex.ObservableSource) +okio.RealBufferedSource: void close() +wangdaye.com.geometricweather.R$string: int page_indicator +androidx.constraintlayout.widget.R$attr: int textAppearanceSmallPopupMenu +com.jaredrummler.android.colorpicker.R$color: int tooltip_background_light +com.turingtechnologies.materialscrollbar.R$attr: int checkedIcon +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_11 +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_material_light +com.tencent.bugly.proguard.a: void a(java.lang.String,java.lang.Object) +io.reactivex.internal.observers.BasicIntQueueDisposable: long serialVersionUID +okio.Options: int size() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText +okhttp3.internal.http.RetryAndFollowUpInterceptor: int MAX_FOLLOW_UPS +androidx.activity.R$dimen: int notification_top_pad_large_text +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_search_api_material +okhttp3.internal.http2.Http2Connection$6: Http2Connection$6(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[],int,okio.Buffer,int,boolean) +retrofit2.DefaultCallAdapterFactory$1: DefaultCallAdapterFactory$1(retrofit2.DefaultCallAdapterFactory,java.lang.reflect.Type,java.util.concurrent.Executor) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintTop_toTopOf +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +android.didikee.donate.R$styleable: int ActionBar_contentInsetEnd +cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener: void onWeatherServiceProviderChanged(java.lang.String) +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: int fusionMode +androidx.viewpager2.R$styleable: int FontFamilyFont_android_fontStyle com.google.android.material.R$dimen: int mtrl_calendar_month_vertical_padding -wangdaye.com.geometricweather.R$id: int chip -androidx.preference.R$styleable: int Preference_persistent -androidx.recyclerview.widget.RecyclerView: int getItemDecorationCount() -cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks -cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getSoundMode() -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -wangdaye.com.geometricweather.R$animator: int mtrl_fab_hide_motion_spec -com.google.android.material.R$dimen: int design_snackbar_padding_horizontal -wangdaye.com.geometricweather.R$attr: int chipEndPadding -cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String getStringForUser(android.content.ContentResolver,java.lang.String,int) -androidx.appcompat.R$styleable -com.bumptech.glide.R$dimen: int compat_control_corner_material -wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line1_tail_interpolator -com.turingtechnologies.materialscrollbar.R$attr: int selectableItemBackground -androidx.constraintlayout.widget.R$drawable: int notification_bg_normal_pressed -androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackgroundResource(int) -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: long serialVersionUID -androidx.appcompat.widget.ActionBarContextView -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemIconSize -androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context,android.util.AttributeSet,int) -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String getDumpFilePath() -wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView: void setDayIconDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$TemperatureBean temperature -com.google.android.material.slider.RangeSlider: void setTickTintList(android.content.res.ColorStateList) -androidx.recyclerview.widget.GridLayoutManager: GridLayoutManager(android.content.Context,android.util.AttributeSet,int,int) -com.turingtechnologies.materialscrollbar.R$attr: int thumbTextPadding -androidx.constraintlayout.widget.R$layout: int abc_popup_menu_item_layout -com.google.android.gms.common.internal.ReflectedParcelable -androidx.work.R$styleable: int FontFamilyFont_android_font -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getDistrict() -androidx.lifecycle.extensions.R$id: int title -cyanogenmod.hardware.CMHardwareManager: int COLOR_CALIBRATION_BLUE_INDEX -com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.proguard.ak a(android.content.Context,com.tencent.bugly.crashreport.crash.CrashDetailBean,com.tencent.bugly.crashreport.common.info.a) -com.tencent.bugly.proguard.s: s(android.content.Context) -wangdaye.com.geometricweather.R$styleable: int FitSystemBarNestedScrollView_sv_side -com.google.android.material.R$id: int accessibility_custom_action_20 -com.xw.repo.bubbleseekbar.R$dimen: int notification_action_icon_size -androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_top_material -okio.ForwardingSink: java.lang.String toString() -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_FixedSize -com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_small_material -okio.Timeout$1: okio.Timeout deadlineNanoTime(long) -okhttp3.MediaType: MediaType(java.lang.String,java.lang.String,java.lang.String,java.lang.String) -wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_min_height -androidx.vectordrawable.R$dimen: int notification_large_icon_height -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Menu -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setBackgroundColor(int) -androidx.core.R$id: int actions -androidx.appcompat.R$id: int accessibility_custom_action_25 -android.didikee.donate.R$drawable: int abc_textfield_activated_mtrl_alpha -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar_Small -com.github.rahatarmanahmed.cpv.CircularProgressView$5: void onAnimationEnd(android.animation.Animator) -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: boolean isDisposed() -com.google.android.material.R$drawable: int abc_btn_radio_to_on_mtrl_015 -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -okhttp3.internal.http2.Http2Writer: void pushPromise(int,int,java.util.List) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.String Code -androidx.appcompat.R$attr: int lineHeight -okhttp3.Cookie$Builder: okhttp3.Cookie$Builder httpOnly() -io.reactivex.Observable: io.reactivex.Observable doOnTerminate(io.reactivex.functions.Action) -android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item -retrofit2.converter.gson.GsonResponseBodyConverter: java.lang.Object convert(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: int index -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getUvIndex() -wangdaye.com.geometricweather.remoteviews.config.HourlyTrendWidgetConfigActivity: HourlyTrendWidgetConfigActivity() -cyanogenmod.app.CustomTile$ExpandedStyle: android.widget.RemoteViews contentViews -com.turingtechnologies.materialscrollbar.R$id: int transition_scene_layoutid_cache -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_stroke_size -wangdaye.com.geometricweather.db.entities.AlertEntity: void setColor(int) -cyanogenmod.providers.CMSettings$2: CMSettings$2() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setApparentTemperature(java.lang.Integer) +com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$attr: int actionBarTheme +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange: AccuCurrentResult$TemperatureSummary$Past6HourRange() +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.ErrorCode getErrorCode() +androidx.preference.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +androidx.preference.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +james.adaptiveicon.R$styleable: int TextAppearance_android_typeface +com.bumptech.glide.integration.okhttp.R$attr: int layout_insetEdge +com.google.android.material.R$styleable: int Layout_layout_constraintCircleAngle +com.amap.api.location.AMapLocation$1: AMapLocation$1() +retrofit2.HttpException: retrofit2.Response response +com.xw.repo.bubbleseekbar.R$id: int scrollIndicatorDown +com.google.android.material.circularreveal.cardview.CircularRevealCardView: CircularRevealCardView(android.content.Context,android.util.AttributeSet) +androidx.lifecycle.extensions.R$attr: int fontProviderPackage +com.google.android.material.R$drawable: int material_ic_menu_arrow_up_black_24dp +com.google.android.material.R$attr: int useMaterialThemeColors +androidx.transition.R$id: int save_overlay_view +com.bumptech.glide.integration.okhttp.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$drawable: int abc_seekbar_track_material +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +okhttp3.Cache$1: void trackResponse(okhttp3.internal.cache.CacheStrategy) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +androidx.vectordrawable.R$drawable +com.google.android.material.R$dimen: int design_snackbar_elevation +com.tencent.bugly.crashreport.CrashReport$WebViewInterface: java.lang.String getUrl() +androidx.preference.R$dimen: int abc_list_item_height_material +com.tencent.bugly.crashreport.CrashReport: void initCrashReport(android.content.Context,com.tencent.bugly.crashreport.CrashReport$UserStrategy) +androidx.appcompat.R$drawable: int abc_dialog_material_background +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarPopupTheme +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_typeface +com.google.android.material.R$attr: int dividerPadding +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Metric Metric +androidx.constraintlayout.widget.R$dimen: int notification_small_icon_background_padding +com.tencent.bugly.proguard.c: void a(java.lang.String,java.lang.Object) +com.amap.api.location.CoordinateConverter$CoordType: CoordinateConverter$CoordType(java.lang.String,int) +wangdaye.com.geometricweather.R$id: int activity_widget_config_showCardContainer +com.jaredrummler.android.colorpicker.R$string: int cpv_default_title +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +androidx.preference.R$styleable: int DrawerArrowToggle_spinBars +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX aqi +com.google.android.material.R$dimen: int abc_text_size_body_1_material +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_DialogTitle_Icon +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: void innerError(int,java.lang.Throwable) +wangdaye.com.geometricweather.R$drawable: int notif_temp_36 +com.google.android.material.R$dimen: int abc_text_size_menu_material +james.adaptiveicon.R$style: int Base_V7_Widget_AppCompat_Toolbar +cyanogenmod.hardware.CMHardwareManager: int getVibratorIntensity() +androidx.preference.R$attr: int contentInsetStartWithNavigation +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable,int) +com.google.android.material.R$dimen: int mtrl_textinput_box_stroke_width_focused +com.tencent.bugly.crashreport.common.info.a: long i +androidx.cardview.R$color: int cardview_dark_background +com.tencent.bugly.proguard.p: java.util.List a(int) +androidx.preference.R$color: int error_color_material_light +com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$attr: int statusBarScrim +wangdaye.com.geometricweather.R$array: int widget_card_styles +androidx.appcompat.R$interpolator: int btn_radio_to_on_mtrl_animation_interpolator_0 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_115 +androidx.appcompat.R$id: int textSpacerNoTitle +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_onClick +com.google.android.material.chip.Chip: void setIconStartPaddingResource(int) +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_hideMotionSpec +android.didikee.donate.R$attr: int actionBarTabTextStyle +okhttp3.internal.cache.DiskLruCache: java.io.File journalFileBackup +com.google.android.material.slider.BaseSlider: int getThumbRadius() +android.didikee.donate.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.crashreport.crash.CrashDetailBean a(java.util.List,com.tencent.bugly.crashreport.crash.CrashDetailBean) +androidx.legacy.coreutils.R$styleable: int GradientColor_android_startY +okhttp3.internal.http2.Http2Connection: long access$208(okhttp3.internal.http2.Http2Connection) +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamily_fontProviderCerts +cyanogenmod.app.ILiveLockScreenManagerProvider: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +com.google.gson.stream.JsonWriter: boolean isHtmlSafe() +com.tencent.bugly.proguard.ak: java.util.ArrayList o +com.google.android.material.R$layout: int select_dialog_multichoice_material +okio.RealBufferedSink: void write(okio.Buffer,long) +okio.Buffer$1: void write(byte[],int,int) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_6 +cyanogenmod.weather.WeatherInfo: java.lang.String access$1402(cyanogenmod.weather.WeatherInfo,java.lang.String) +com.google.android.material.chip.Chip: void setTextAppearance(int) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow: java.lang.Float cumul1H +com.google.android.material.R$styleable: int AppCompatTheme_android_windowIsFloating +androidx.constraintlayout.widget.ConstraintHelper: ConstraintHelper(android.content.Context) +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginLeft +androidx.preference.R$dimen: int hint_alpha_material_light +com.google.android.material.R$styleable: int[] NavigationView +com.turingtechnologies.materialscrollbar.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDefaultPhoneSub(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_112 +wangdaye.com.geometricweather.R$color: int androidx_core_secondary_text_default_material_light +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onWindowAttributesChanged(android.view.WindowManager$LayoutParams) +james.adaptiveicon.R$styleable: int MenuItem_tooltipText +okhttp3.MultipartBody: MultipartBody(okio.ByteString,okhttp3.MediaType,java.util.List) +com.tencent.bugly.crashreport.common.info.a: java.lang.String t() +cyanogenmod.profiles.LockSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +cyanogenmod.app.Profile$Type +android.didikee.donate.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.R$id: int mtrl_picker_fullscreen +androidx.constraintlayout.widget.R$id: int top +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircle +wangdaye.com.geometricweather.R$color: int switch_thumb_disabled_material_dark +androidx.appcompat.resources.R$dimen: int notification_large_icon_height +james.adaptiveicon.R$styleable: int ActionBar_height +cyanogenmod.app.IProfileManager: boolean setActiveProfile(android.os.ParcelUuid) +com.jaredrummler.android.colorpicker.R$attr: int fastScrollEnabled +androidx.recyclerview.R$id: R$id() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +wangdaye.com.geometricweather.R$style: int PreferenceCategoryTitleTextStyle +com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalBias +com.google.android.material.R$dimen: int abc_dialog_list_padding_top_no_title +com.tencent.bugly.proguard.ac +androidx.appcompat.R$id: int async +android.didikee.donate.R$color: int material_blue_grey_900 +wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWidgetConfigActivity +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_37 +io.reactivex.internal.schedulers.ScheduledDirectTask: java.lang.Void call() +android.didikee.donate.R$styleable: int AppCompatTheme_colorPrimaryDark +com.google.android.material.R$attr: int commitIcon +cyanogenmod.app.IProfileManager$Stub +androidx.preference.R$layout: int abc_cascading_menu_item_layout +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String o +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.WeatherEntityDao weatherEntityDao +androidx.preference.UnPressableLinearLayout +com.google.android.material.R$styleable: int Tooltip_android_text +com.bumptech.glide.R$styleable: int GradientColor_android_startY +android.didikee.donate.R$id: int shortcut +com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_Layout_layout_keyline +androidx.hilt.R$id: int title com.bumptech.glide.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability -androidx.activity.R$id: int accessibility_custom_action_8 -androidx.preference.R$id: int add -androidx.appcompat.widget.AppCompatImageButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) -com.xw.repo.bubbleseekbar.R$string: int abc_menu_shift_shortcut_label -com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType[] a -androidx.constraintlayout.widget.R$attr: int homeLayout -cyanogenmod.externalviews.IExternalViewProvider$Stub: cyanogenmod.externalviews.IExternalViewProvider asInterface(android.os.IBinder) -io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.lang.Object poll() -wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_5_00 -cyanogenmod.app.CustomTile$ExpandedItem: android.graphics.Bitmap itemBitmapResource -wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_trendRecyclerView -com.tencent.bugly.proguard.v: int a -com.turingtechnologies.materialscrollbar.R$dimen: int tooltip_y_offset_non_touch -wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.util.List toCardDisplayList(java.lang.String) -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void cancel() -com.google.android.material.R$styleable: int[] RadialViewGroup -wangdaye.com.geometricweather.R$id: int shortcut -androidx.constraintlayout.widget.R$attr: int navigationMode -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.util.Map S -com.google.android.material.R$attr: int tickMark -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: long timeout -androidx.appcompat.widget.LinearLayoutCompat: LinearLayoutCompat(android.content.Context) -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_requireAdaptiveBacklightForSunlightEnhancement -androidx.appcompat.R$attr: int contentInsetStartWithNavigation -android.didikee.donate.R$styleable: int ActionBar_hideOnContentScroll -wangdaye.com.geometricweather.R$id: int bottom_sides -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void access$600(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -androidx.hilt.R$color: int ripple_material_light -android.didikee.donate.R$styleable: int DrawerArrowToggle_gapBetweenBars -okhttp3.HttpUrl: java.lang.String queryParameterName(int) -com.jaredrummler.android.colorpicker.R$attr: int singleLineTitle -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: io.reactivex.functions.Consumer onDrop -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Switch -androidx.appcompat.app.AppCompatDelegateImpl$PanelFeatureState$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$styleable: int[] CircularProgressView -com.xw.repo.bubbleseekbar.R$attr: int titleTextColor +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionButton_Overflow +com.jaredrummler.android.colorpicker.R$attr: int subMenuArrow +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1 +com.tencent.bugly.crashreport.common.info.a: java.lang.Object au +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean notificationGroupExistsByName(java.lang.String) +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: MinutelyEntityDao(org.greenrobot.greendao.internal.DaoConfig) +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: io.reactivex.internal.queue.SpscArrayQueue queue +androidx.dynamicanimation.R$attr: R$attr() +com.turingtechnologies.materialscrollbar.R$attr: int colorPrimaryDark +androidx.appcompat.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +wangdaye.com.geometricweather.R$styleable: int KeyPosition_framePosition +androidx.work.R$attr: int fontProviderQuery +okhttp3.internal.http2.Http2Stream$StreamTimeout: void timedOut() +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: int getTotalCount() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onScreenTurnedOn() +com.tencent.bugly.proguard.y: java.lang.String h +com.bumptech.glide.R$attr: int layout_dodgeInsetEdges +james.adaptiveicon.R$color: int background_floating_material_dark +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldLevel(java.lang.Integer) +androidx.appcompat.R$id: R$id() +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter endObject() +wangdaye.com.geometricweather.db.entities.AlertEntity: void setDescription(java.lang.String) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layoutDescription +androidx.constraintlayout.widget.R$styleable: int KeyPosition_drawPath +androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedWidthMajor +com.google.android.material.slider.BaseSlider: void setTickInactiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DarkActionBar_Bridge +james.adaptiveicon.R$attr: int background +com.tencent.bugly.crashreport.crash.h5.a: java.lang.String e +androidx.hilt.lifecycle.R$id: int time +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_collapseIcon +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow +wangdaye.com.geometricweather.R$styleable: int MenuItem_tooltipText +retrofit2.BuiltInConverters$UnitResponseBodyConverter: retrofit2.BuiltInConverters$UnitResponseBodyConverter INSTANCE +androidx.preference.R$style: int Widget_AppCompat_ListView_DropDown +com.tencent.bugly.proguard.am: java.lang.String v +android.didikee.donate.R$dimen: int abc_text_size_subhead_material +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_LIVE_LOCK_SCREEN +cyanogenmod.app.ProfileManager: java.lang.String INTENT_ACTION_PROFILE_UPDATED +com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabStyle +com.bumptech.glide.R$styleable: int GradientColor_android_centerX +androidx.transition.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice Ice +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float totalPrecipitationProbability +androidx.activity.R$dimen: int notification_action_icon_size +androidx.lifecycle.ClassesInfoCache$MethodReference: ClassesInfoCache$MethodReference(int,java.lang.reflect.Method) +wangdaye.com.geometricweather.R$string: int wind_9 +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: int PrecipitationProbability +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.Class) +com.turingtechnologies.materialscrollbar.MaterialScrollBar: float getHandleOffset() +wangdaye.com.geometricweather.R$attr: int behavior_draggable +androidx.appcompat.R$id: int text +androidx.viewpager.R$styleable: int GradientColor_android_endX +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_setDisplayGammaCalibration +okhttp3.internal.http.HttpHeaders: boolean hasVaryAll(okhttp3.Headers) +androidx.dynamicanimation.R$drawable: int notify_panel_notification_icon_bg +com.google.android.material.R$style: int Widget_AppCompat_Button_Borderless +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startX +io.reactivex.internal.schedulers.RxThreadFactory: java.lang.Thread newThread(java.lang.Runnable) +androidx.constraintlayout.widget.R$color: int primary_text_default_material_dark +okio.DeflaterSink: DeflaterSink(okio.Sink,java.util.zip.Deflater) +com.google.gson.internal.LazilyParsedNumber: java.lang.Object writeReplace() +com.bumptech.glide.load.engine.GlideException: java.lang.Class dataClass +androidx.legacy.coreutils.R$styleable: int[] FontFamilyFont +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.preference.R$styleable: int Spinner_popupTheme +com.google.android.material.R$styleable: int TabLayout_tabMinWidth +okio.GzipSink: void close() +com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_low_pressed +com.tencent.bugly.proguard.ar: void a(com.tencent.bugly.proguard.j) +james.adaptiveicon.R$id: int scrollView +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String en_US +com.google.android.material.R$styleable: int Layout_layout_constraintCircle +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void dispose() +androidx.lifecycle.ComputableLiveData$1: void onActive() +com.turingtechnologies.materialscrollbar.R$attr: int closeIconEndPadding +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setBackgroundColor(int) +com.amap.api.location.AMapLocation: void setProvince(java.lang.String) +wangdaye.com.geometricweather.R$id: int item_about_library_content +com.google.android.gms.location.GeofencingRequest +cyanogenmod.hardware.ICMHardwareService: int[] getDisplayColorCalibration() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeThunderstormPrecipitation +androidx.preference.R$styleable: int PreferenceGroup_orderingFromXml +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: java.lang.String unitId +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit[] values() +okhttp3.ConnectionPool$1: ConnectionPool$1(okhttp3.ConnectionPool) +com.tencent.bugly.proguard.y: java.lang.StringBuilder d +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_DayNight_DarkActionBar +wangdaye.com.geometricweather.R$id: int switch_layout +cyanogenmod.weather.RequestInfo: java.lang.String getCityName() +androidx.appcompat.widget.AppCompatEditText: AppCompatEditText(android.content.Context,android.util.AttributeSet,int) +androidx.preference.R$style: int Preference_DialogPreference +androidx.preference.R$dimen: int abc_text_size_subtitle_material_toolbar +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +com.turingtechnologies.materialscrollbar.R$attr: int layout_insetEdge +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Title +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_1 +androidx.dynamicanimation.R$attr: int fontProviderFetchStrategy +wangdaye.com.geometricweather.R$color: int abc_search_url_text_selected +androidx.legacy.coreutils.R$drawable: int notification_bg_low +androidx.vectordrawable.R$color +com.google.android.material.internal.FlowLayout: FlowLayout(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$attr: int splitTrack +io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean,int) +cyanogenmod.app.CustomTile$ExpandedItem$1: cyanogenmod.app.CustomTile$ExpandedItem[] newArray(int) +androidx.preference.R$styleable: int DialogPreference_android_dialogIcon +wangdaye.com.geometricweather.R$attr: int preferenceFragmentStyle +androidx.constraintlayout.widget.R$attr: int windowActionModeOverlay +wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingBottom +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_select_handle_left_mtrl_dark +com.google.android.material.R$dimen: int mtrl_slider_track_side_padding +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onError(java.lang.Throwable) +com.jaredrummler.android.colorpicker.R$drawable: int abc_vector_test +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer getCloudCover() +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: long serialVersionUID +android.support.v4.os.ResultReceiver$MyResultReceiver: void send(int,android.os.Bundle) +com.tencent.bugly.proguard.ae: byte[] b(byte[]) +cyanogenmod.app.ProfileGroup: android.net.Uri mRingerOverride +com.tencent.bugly.BuglyStrategy: boolean h +androidx.activity.R$styleable: int GradientColor_android_type +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ListPopupWindow +android.didikee.donate.R$dimen: int notification_large_icon_height +com.google.android.material.R$style: int Theme_MaterialComponents_Light_BarSize +com.google.android.material.R$styleable: int[] FontFamily +androidx.appcompat.R$style: int TextAppearance_AppCompat +wangdaye.com.geometricweather.R$attr: int statusBarForeground +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_track_color okio.AsyncTimeout$1 -androidx.constraintlayout.widget.R$styleable: int GradientColor_android_gradientRadius -com.github.rahatarmanahmed.cpv.R$bool: int cpv_default_anim_autostart -wangdaye.com.geometricweather.R$id: int pin -androidx.loader.R$styleable: int ColorStateListItem_alpha -androidx.constraintlayout.widget.R$drawable: int abc_spinner_mtrl_am_alpha -cyanogenmod.themes.ThemeManager: void applyDefaultTheme() -com.turingtechnologies.materialscrollbar.R$string: int abc_action_bar_up_description -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_lineHeight -wangdaye.com.geometricweather.common.ui.widgets.TagView: void setChecked(boolean) -com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_display_2_material -com.google.android.material.R$dimen: int mtrl_shape_corner_size_small_component -androidx.preference.R$styleable: int ViewStubCompat_android_id -com.tencent.bugly.proguard.z: boolean c(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_goneMarginLeft -com.xw.repo.bubbleseekbar.R$anim: int abc_fade_in -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Runnable actual -com.google.gson.stream.JsonWriter: void beforeName() -androidx.drawerlayout.widget.DrawerLayout: void setDrawerLockMode(int) -wangdaye.com.geometricweather.R$integer: int mtrl_tab_indicator_anim_duration_ms -okio.Source -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night Night -androidx.appcompat.R$styleable: int ColorStateListItem_alpha -androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setDropDownBackgroundResource(int) -wangdaye.com.geometricweather.R$id: int topPanel -retrofit2.BuiltInConverters$RequestBodyConverter -androidx.viewpager2.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$id: int notification_multi_city_text_2 -okio.Buffer$1: void write(byte[],int,int) -com.google.android.material.R$color: int mtrl_fab_icon_text_color_selector -okhttp3.internal.cache.CacheStrategy: okhttp3.Request networkRequest -retrofit2.ServiceMethod: java.lang.Object invoke(java.lang.Object[]) -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long readKey(android.database.Cursor,int) -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextAppearanceActive -wangdaye.com.geometricweather.R$id: int seekbar_value -androidx.core.R$id: int accessibility_custom_action_22 -okio.AsyncTimeout$Watchdog -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.internal.fuseable.SimplePlainQueue queue -io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: void onSubscribe(org.reactivestreams.Subscription) -android.didikee.donate.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -com.tencent.bugly.proguard.u -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarSplitStyle -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView -com.turingtechnologies.materialscrollbar.R$color: int notification_action_color_filter -androidx.constraintlayout.widget.R$id: int on -com.tencent.bugly.proguard.p: com.tencent.bugly.proguard.r b(android.database.Cursor) -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Toolbar_Button_Navigation -com.google.android.material.R$id: int action_mode_close_button -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedEmitLast -io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: long serialVersionUID -androidx.recyclerview.widget.RecyclerView: boolean getPreserveFocusAfterLayout() -com.tencent.bugly.proguard.ae: ae() -wangdaye.com.geometricweather.R$attr: int windowFixedHeightMajor -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextView -com.jaredrummler.android.colorpicker.R$attr: int buttonTint -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: void throwIfCaught() -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator USE_EDGE_SERVICE_FOR_GESTURES_VALIDATOR -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_Tooltip -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_buttonStyleSmall -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetTop -okhttp3.Response$Builder: okhttp3.Headers$Builder headers -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_OutlinedBox -androidx.appcompat.R$attr: int activityChooserViewStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: void setUvIndex(java.lang.String) -wangdaye.com.geometricweather.R$attr: int behavior_saveFlags -androidx.appcompat.widget.ActionBarContextView: void setTitle(java.lang.CharSequence) -retrofit2.adapter.rxjava2.ResultObservable: ResultObservable(io.reactivex.Observable) -cyanogenmod.app.LiveLockScreenInfo$1: java.lang.Object createFromParcel(android.os.Parcel) -com.jaredrummler.android.colorpicker.R$style: int Widget_Compat_NotificationActionText -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityStopped(android.app.Activity) -wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: int getChartBottom() -com.jaredrummler.android.colorpicker.R$attr: int min -androidx.appcompat.R$attr: int dropDownListViewStyle -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_max -com.tencent.bugly.crashreport.crash.c: boolean i -cyanogenmod.app.ProfileManager: cyanogenmod.app.Profile getProfile(java.lang.String) -wangdaye.com.geometricweather.R$id: int scrollBar -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean -androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_curveFit -com.google.android.material.R$styleable: int AppCompatTextView_fontVariationSettings -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.ChineseCityEntity,long) -org.greenrobot.greendao.AbstractDaoSession: AbstractDaoSession(org.greenrobot.greendao.database.Database) -com.google.android.material.R$styleable: int Slider_trackColorInactive -wangdaye.com.geometricweather.R$dimen: int design_snackbar_action_inline_max_width -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfRain -com.google.android.gms.base.R$styleable: int SignInButton_scopeUris -androidx.appcompat.R$drawable: int abc_ic_ab_back_material -com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_android_alpha -com.google.android.material.R$styleable: int View_android_focusable -androidx.viewpager.R$attr: int fontProviderQuery -com.google.android.material.R$style: int Animation_Design_BottomSheetDialog -retrofit2.http.Streaming -cyanogenmod.app.ProfileManager: java.lang.String INTENT_ACTION_PROFILE_SELECTED -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getFillAlpha() -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_Button_Colored -androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy -okhttp3.internal.connection.RealConnection: java.lang.String NPE_THROW_WITH_NULL -androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Time -com.github.rahatarmanahmed.cpv.CircularProgressView$8: float val$start -androidx.coordinatorlayout.R$attr -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String sourceId -androidx.hilt.work.R$id: int accessibility_custom_action_28 -com.google.android.material.R$dimen: int abc_dialog_corner_radius_material -wangdaye.com.geometricweather.R$attr: int motion_postLayoutCollision -com.google.android.material.R$string: int mtrl_picker_text_input_month_abbr -com.amap.api.fence.PoiItem$1 -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_numericModifiers -wangdaye.com.geometricweather.location.services.LocationService: android.app.Notification getLocationNotification(android.content.Context) -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int WEATHER_CODE_MAX -wangdaye.com.geometricweather.R$font: int product_sans_thin_italic -wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullResourceIdException: ResourceUtils$NullResourceIdException() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: CaiYunMainlyResult$CurrentBean$VisibilityBean() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$attr: int cpv_showAlphaSlider -com.turingtechnologies.materialscrollbar.R$id: int icon_group -androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontWeight -com.tencent.bugly.crashreport.crash.b: java.util.List a() -com.bumptech.glide.R$attr: int fontWeight -io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: long serialVersionUID -androidx.customview.R$layout: int notification_action_tombstone -okio.RealBufferedSource$1 -retrofit2.Retrofit$Builder: okhttp3.HttpUrl baseUrl -wangdaye.com.geometricweather.R$styleable: int Constraint_android_layout_height -androidx.appcompat.R$color: int abc_tint_switch_track -com.turingtechnologies.materialscrollbar.R$attr: int windowActionModeOverlay -okhttp3.internal.http2.Http2Stream$FramingSource: void close() -io.reactivex.internal.util.NotificationLite$ErrorNotification: java.lang.String toString() -androidx.core.R$styleable: int FontFamilyFont_ttcIndex -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Small_Inverse -android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_Alert -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult: wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation observation -com.google.gson.stream.JsonWriter: boolean lenient -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityStarted(android.app.Activity) -com.tencent.bugly.proguard.ak: java.lang.String i -wangdaye.com.geometricweather.R$transition: int search_activity_return -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String getValue() -com.google.android.material.tabs.TabLayout -retrofit2.BuiltInConverters$UnitResponseBodyConverter: kotlin.Unit convert(okhttp3.ResponseBody) -androidx.appcompat.widget.AppCompatImageButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() -androidx.appcompat.R$dimen: int abc_action_bar_elevation_material -com.jaredrummler.android.colorpicker.R$attr: int homeLayout +okio.Buffer: okio.Buffer clone() +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient build() +james.adaptiveicon.R$drawable: int abc_btn_radio_to_on_mtrl_000 +com.tencent.bugly.proguard.p: java.util.Map a(int,com.tencent.bugly.proguard.o,boolean) +android.didikee.donate.R$id: int list_item +com.xw.repo.bubbleseekbar.R$attr: int fontProviderAuthority +okhttp3.Cache$Entry: okhttp3.Protocol protocol +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status CLEARED +io.reactivex.internal.disposables.SequentialDisposable: void dispose() +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: int requestFusion(int) +com.google.android.material.R$layout: int test_toolbar +com.jaredrummler.android.colorpicker.R$id: int forever +wangdaye.com.geometricweather.R$layout: int activity_about +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox +androidx.lifecycle.reactivestreams.R: R() +com.tencent.bugly.crashreport.crash.anr.a: java.lang.String g +cyanogenmod.themes.ThemeManager: void onClientResumed(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +com.xw.repo.bubbleseekbar.R$attr: int fontProviderCerts +okhttp3.internal.connection.RouteSelector$Selection: java.util.List routes +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalAlign +androidx.customview.R$dimen: int notification_large_icon_width +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean +com.turingtechnologies.materialscrollbar.R$id: int action_image +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String value +com.jaredrummler.android.colorpicker.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableStart +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.query.QueryBuilder queryBuilder(java.lang.Class) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_CheckBox +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_gapBetweenBars +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.R$dimen: int abc_edit_text_inset_horizontal_material +wangdaye.com.geometricweather.R$id: int item_details_icon +com.amap.api.fence.DistrictItem: java.util.List getPolyline() +wangdaye.com.geometricweather.R$attr: int text_size +com.google.android.material.R$styleable: int[] LinearLayoutCompat +com.google.gson.stream.JsonReader: int PEEKED_FALSE +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableEnd +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_elevation +com.tencent.bugly.proguard.p: com.tencent.bugly.proguard.p a +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getLongDate(android.content.Context) +com.google.android.material.R$style: int TextAppearance_AppCompat_Small_Inverse +com.google.android.material.R$attr: int hintTextColor +com.google.android.material.R$style: int Base_Widget_AppCompat_ProgressBar +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onActionModeFinished(android.view.ActionMode) +com.google.android.material.slider.RangeSlider: void setTrackHeight(int) +com.google.android.material.R$attr: int layout_keyline +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Snackbar +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_tooltipFrameBackground +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getStartIconContentDescription() +wangdaye.com.geometricweather.R$id: int dialog_animatable_icon_title +androidx.activity.R$styleable: int FontFamilyFont_android_fontWeight +androidx.constraintlayout.widget.R$style: int Platform_ThemeOverlay_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$attr: int tabContentStart +androidx.fragment.app.FragmentTabHost: FragmentTabHost(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Metric: java.lang.String Unit +android.didikee.donate.R$drawable: int abc_ic_star_black_16dp +androidx.preference.R$style: int Preference_PreferenceScreen_Material +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getThunderstormPrecipitation() +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object getKey(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int thumbColor +com.google.android.material.R$style: int Base_Widget_MaterialComponents_Chip +wangdaye.com.geometricweather.R$styleable: int KeyPosition_drawPath +com.xw.repo.bubbleseekbar.R$attr: int bsb_bubble_color +io.reactivex.Observable: io.reactivex.Observable concatEager(io.reactivex.ObservableSource) +com.google.android.material.chip.Chip: void setChipMinHeightResource(int) +android.didikee.donate.R$dimen: int abc_control_inset_material +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +com.google.android.material.R$styleable: int AppCompatTheme_actionBarTabStyle +wangdaye.com.geometricweather.R$attr: int titleEnabled +androidx.legacy.coreutils.R$styleable: int[] GradientColor +androidx.hilt.R$id: int accessibility_custom_action_27 +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert +okhttp3.internal.connection.StreamAllocation: okhttp3.Address address +com.jaredrummler.android.colorpicker.ColorPreferenceCompat: ColorPreferenceCompat(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$attr: int dayTodayStyle +james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric Metric +androidx.drawerlayout.R$styleable: int[] FontFamily +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: void cancel() +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: void setLineColor(int) +android.didikee.donate.R$styleable: int[] ListPopupWindow +wangdaye.com.geometricweather.R$styleable: int ActionBar_navigationMode +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void dispose() +androidx.lifecycle.LiveData: boolean hasObservers() +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver parent +wangdaye.com.geometricweather.R$drawable: int notif_temp_19 +androidx.fragment.R$styleable: int Fragment_android_tag +com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_ListPopupWindow +android.didikee.donate.R$dimen: int abc_dialog_fixed_width_major +com.turingtechnologies.materialscrollbar.R$id: int search_close_btn +com.jaredrummler.android.colorpicker.R$attr: int dialogPreferredPadding +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningConsequence: int phenomenoMaxColorId +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_DEFAULT_COLOR +com.google.gson.stream.JsonReader: boolean lenient +com.tencent.bugly.proguard.n: void a(com.tencent.bugly.proguard.n,int,java.util.List) +com.jaredrummler.android.colorpicker.R$attr: int radioButtonStyle +androidx.constraintlayout.widget.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.R$drawable: int weather_wind_mini_xml +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: int getMarginBottom() +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dark +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: long serialVersionUID +wangdaye.com.geometricweather.R$styleable: int MotionTelltales_telltales_tailScale +wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_big_view +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void drainLoop() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSearchResultSubtitle +james.adaptiveicon.R$styleable: int LinearLayoutCompat_measureWithLargestChild +androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontVariationSettings +com.google.android.material.R$string: int clear_text_end_icon_content_description +wangdaye.com.geometricweather.R$attr: int yearStyle +androidx.vectordrawable.R$integer: R$integer() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: int getStatus() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Toolbar +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +com.jaredrummler.android.colorpicker.R$layout: int preference_list_fragment +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircle +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable +cyanogenmod.power.PerformanceManager: PerformanceManager(android.content.Context) +androidx.preference.R$style: int TextAppearance_AppCompat_Inverse +james.adaptiveicon.R$id: int action_mode_bar_stub +androidx.preference.R$styleable: int AppCompatTextView_autoSizeMinTextSize +cyanogenmod.providers.DataUsageContract: java.lang.String UID +android.didikee.donate.R$styleable: int ViewStubCompat_android_layout +android.didikee.donate.R$styleable: int ActionBar_height +wangdaye.com.geometricweather.R$drawable: int ic_arrow_down_24dp +wangdaye.com.geometricweather.R$drawable: int notif_temp_119 +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Subhead_Inverse +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_color_disabled +wangdaye.com.geometricweather.common.basic.models.weather.Alert: long time +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.String dailyForecast +retrofit2.http.FormUrlEncoded +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator parent +okhttp3.ResponseBody$BomAwareReader: java.nio.charset.Charset charset +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: long serialVersionUID +com.amap.api.location.AMapLocation: int LOCATION_TYPE_WIFI +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: org.reactivestreams.Subscriber downstream +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +androidx.hilt.work.R$dimen: int notification_top_pad +com.google.android.material.R$dimen: int design_navigation_item_horizontal_padding +wangdaye.com.geometricweather.R$id: int activity_widget_config_custom_scrollView +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void onComplete() +com.google.android.material.R$styleable: int TextInputLayout_placeholderText +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit getInstance(java.lang.String) +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_EXPORT_WITH_DES40_CBC_SHA +com.turingtechnologies.materialscrollbar.R$attr: int showAsAction +wangdaye.com.geometricweather.R$id: int test_checkbox_android_button_tint +io.reactivex.Observable: io.reactivex.Single toMap(io.reactivex.functions.Function) +cyanogenmod.app.IPartnerInterface$Stub$Proxy: void shutdown() +io.reactivex.Observable: io.reactivex.Observable timestamp(java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_3 +com.jaredrummler.android.colorpicker.R$drawable +androidx.activity.R$dimen: int notification_large_icon_width +com.google.android.material.R$dimen: int material_clock_period_toggle_width +com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeRainPrecipitationProbability() +androidx.cardview.widget.CardView: float getRadius() +androidx.constraintlayout.widget.R$styleable: int ActionBar_navigationMode +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeRealFeelShaderTemperature +com.xw.repo.bubbleseekbar.R$dimen: int compat_notification_large_icon_max_width +com.jaredrummler.android.colorpicker.R$attr: int singleChoiceItemLayout +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder domain(java.lang.String) +com.xw.repo.bubbleseekbar.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.R$id: int dialog_running_in_background_o_setNotificationGroupBtn +com.google.android.material.R$dimen: int abc_dialog_min_width_minor +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit FT +com.google.android.material.datepicker.CalendarConstraints$DateValidator +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_VMAIL_LED_OFF +androidx.constraintlayout.widget.R$attr: int textAppearanceListItemSecondary +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: long serialVersionUID +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: Http2Connection$ReaderRunnable$2(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[],boolean,okhttp3.internal.http2.Settings) +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onError(java.lang.Throwable) +com.google.android.material.R$dimen: int mtrl_calendar_pre_l_text_clip_padding +com.amap.api.fence.GeoFence: void setCurrentLocation(com.amap.api.location.AMapLocation) +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int textAppearanceSubtitle1 +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorBackgroundFloating +okhttp3.FormBody: okhttp3.MediaType CONTENT_TYPE +cyanogenmod.providers.ThemesContract: android.net.Uri AUTHORITY_URI +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +cyanogenmod.weather.WeatherInfo: java.lang.String access$202(cyanogenmod.weather.WeatherInfo,java.lang.String) +com.turingtechnologies.materialscrollbar.R$layout: int abc_action_bar_up_container +androidx.recyclerview.R$styleable: int[] ColorStateListItem +androidx.recyclerview.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.R$integer: int show_password_duration +james.adaptiveicon.R$id: int search_badge +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.Observer downstream +okhttp3.HttpUrl: java.lang.String topPrivateDomain() +androidx.core.R$id: int accessibility_custom_action_27 +androidx.core.R$id: int accessibility_custom_action_5 +james.adaptiveicon.R$styleable: int AppCompatTheme_buttonStyle +com.xw.repo.bubbleseekbar.R$id: int contentPanel +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_centerColor +com.google.android.material.R$style: int TextAppearance_Design_Snackbar_Message +cyanogenmod.app.CMContextConstants: java.lang.String CM_STATUS_BAR_SERVICE +androidx.appcompat.widget.AppCompatCheckBox: void setBackgroundResource(int) +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: io.reactivex.internal.disposables.SequentialDisposable task +com.google.android.material.internal.NavigationMenuItemView: void setIconSize(int) +com.jaredrummler.android.colorpicker.R$color: int material_grey_850 +james.adaptiveicon.R$style: int Widget_AppCompat_Button_Borderless +androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_baseline_to_top_fullscreen +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvIndex(java.lang.Integer) +okhttp3.WebSocketListener: void onClosed(okhttp3.WebSocket,int,java.lang.String) +com.google.android.material.bottomnavigation.BottomNavigationView: void setOnNavigationItemReselectedListener(com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemReselectedListener) +okio.Pipe$PipeSource: okio.Timeout timeout +androidx.transition.R$styleable: int GradientColor_android_gradientRadius +com.xw.repo.bubbleseekbar.R$attr: int backgroundTint +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date moonRiseDate +androidx.appcompat.view.menu.StandardMenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +cyanogenmod.power.PerformanceManager: int[] POSSIBLE_POWER_PROFILES +com.google.android.material.floatingactionbutton.FloatingActionButton$Behavior: FloatingActionButton$Behavior(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: IKeyguardExternalViewCallbacks$Stub() +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: java.util.concurrent.atomic.AtomicInteger wip +james.adaptiveicon.R$styleable: int CompoundButton_android_button +androidx.hilt.work.R$drawable: int notification_template_icon_bg +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_keyline +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +com.xw.repo.bubbleseekbar.R$attr: int bsb_show_section_mark +com.tencent.bugly.proguard.z: void a(java.lang.Class,java.lang.String,java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.db.entities.LocationEntity: void setDistrict(java.lang.String) +io.reactivex.Observable: io.reactivex.Observable timeout(io.reactivex.ObservableSource,io.reactivex.functions.Function,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$id: int container_main_first_card_header +wangdaye.com.geometricweather.R$id: int widget_day_weather +com.jaredrummler.android.colorpicker.R$dimen: int cpv_item_horizontal_padding +androidx.preference.R$drawable: int notification_bg_normal_pressed +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: ObservableFlatMapMaybe$FlatMapMaybeObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) +com.amap.api.location.AMapLocationClientOption: long getHttpTimeOut() +wangdaye.com.geometricweather.R$drawable: int flag_it +com.xw.repo.bubbleseekbar.R$dimen: int abc_disabled_alpha_material_dark +io.reactivex.internal.disposables.SequentialDisposable: boolean replace(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: long serialVersionUID +wangdaye.com.geometricweather.R$color: int colorTextAlert +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTextPadding +com.google.android.material.R$styleable: int Layout_maxHeight +com.turingtechnologies.materialscrollbar.R$attr: int fabCradleRoundedCornerRadius +com.google.android.material.R$styleable: int AppCompatTextView_autoSizeStepGranularity +com.jaredrummler.android.colorpicker.R$attr: int homeAsUpIndicator +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_wrapMode +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.CMTelephonyManager getInstance(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String brandId +androidx.drawerlayout.R$styleable: int GradientColor_android_centerColor +androidx.lifecycle.Transformations$2 +com.google.android.material.R$dimen: int abc_dropdownitem_text_padding_left +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +retrofit2.RequestBuilder: okhttp3.Headers$Builder headersBuilder +cyanogenmod.themes.ThemeManager$ThemeChangeListener: void onFinish(boolean) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void drainLoop() +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents +wangdaye.com.geometricweather.R$drawable: int notif_temp_11 +com.google.android.material.R$styleable: int Layout_layout_constraintHeight_default +okio.RealBufferedSource: okio.Buffer buffer() +com.google.android.material.R$styleable: int MaterialCalendar_yearStyle +androidx.viewpager.widget.PagerTabStrip: void setBackgroundDrawable(android.graphics.drawable.Drawable) +okhttp3.internal.platform.AndroidPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +androidx.legacy.coreutils.R$styleable: int GradientColor_android_startX +androidx.viewpager2.R$attr: int spanCount +androidx.vectordrawable.R$id: int accessibility_custom_action_2 +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_shapeAppearance +androidx.core.widget.NestedScrollView: int getMaxScrollAmount() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Small +com.tencent.bugly.nativecrashreport.R: R() +com.tencent.bugly.proguard.al: java.util.ArrayList a +io.reactivex.internal.observers.DeferredScalarObserver: void onComplete() +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: void innerComplete(io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver) +com.google.android.material.R$styleable: int ActionBar_height +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: retrofit2.Call call +androidx.preference.R$dimen: int abc_action_bar_overflow_padding_end_material +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: void onNext(java.lang.Object) +okhttp3.internal.ws.RealWebSocket$PingRunnable: okhttp3.internal.ws.RealWebSocket this$0 +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getMilliMetersTextWithoutUnit(float) +androidx.appcompat.R$attr: int popupTheme +wangdaye.com.geometricweather.R$id: int mtrl_calendar_main_pane +retrofit2.ParameterHandler$2: void apply(retrofit2.RequestBuilder,java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.weather.Hourly +androidx.constraintlayout.widget.R$styleable: int[] GradientColorItem +okhttp3.internal.http.HttpDate: java.text.DateFormat[] BROWSER_COMPATIBLE_DATE_FORMATS +wangdaye.com.geometricweather.R$styleable: int RangeSlider_values +com.google.android.gms.common.data.BitmapTeleporter +com.google.android.material.slider.RangeSlider: void setThumbRadiusResource(int) +cyanogenmod.weatherservice.ServiceRequestResult: java.lang.String access$402(cyanogenmod.weatherservice.ServiceRequestResult,java.lang.String) +com.xw.repo.bubbleseekbar.R$id: int radio +androidx.core.R$integer +com.amap.api.fence.PoiItem: java.lang.String getTel() +com.bumptech.glide.Registry$NoSourceEncoderAvailableException +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: void setDisposable(io.reactivex.disposables.Disposable) +okhttp3.internal.connection.RouteSelector: RouteSelector(okhttp3.Address,okhttp3.internal.connection.RouteDatabase,okhttp3.Call,okhttp3.EventListener) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvDescription(java.lang.String) +androidx.recyclerview.widget.LinearLayoutManager +com.google.android.material.R$attr: int layout_constrainedHeight +androidx.appcompat.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String direction +wangdaye.com.geometricweather.R$attr: int subMenuArrow +okhttp3.EventListener$2: EventListener$2(okhttp3.EventListener) +wangdaye.com.geometricweather.R$attr: int hintAnimationEnabled +androidx.appcompat.resources.R$id: int action_text +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalBias +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: int UnitType +okhttp3.internal.http1.Http1Codec: void writeRequest(okhttp3.Headers,java.lang.String) +io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: long serialVersionUID +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +cyanogenmod.app.ICMTelephonyManager$Stub +cyanogenmod.profiles.ConnectionSettings$BooleanState: ConnectionSettings$BooleanState() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_corner_radius_material +okhttp3.internal.http1.Http1Codec$ChunkedSource: Http1Codec$ChunkedSource(okhttp3.internal.http1.Http1Codec,okhttp3.HttpUrl) +com.google.android.material.R$styleable: int Transform_android_translationY +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display3 +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tSea +androidx.appcompat.widget.Toolbar: void setNavigationContentDescription(java.lang.CharSequence) +androidx.preference.R$layout: int abc_popup_menu_item_layout +com.turingtechnologies.materialscrollbar.R$attr: int singleLine +wangdaye.com.geometricweather.R$attr: int fontStyle +com.tencent.bugly.crashreport.BuglyLog: void i(java.lang.String,java.lang.String) +com.xw.repo.bubbleseekbar.R$id: int src_atop +wangdaye.com.geometricweather.R$styleable: int[] InkPageIndicator +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Overline +wangdaye.com.geometricweather.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +com.google.android.material.R$dimen: int notification_top_pad_large_text +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderSelection +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) +okio.BufferedSource: java.lang.String readUtf8Line() +androidx.customview.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: ObservableTimeoutTimed$TimeoutFallbackObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler$Worker,io.reactivex.ObservableSource) +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: java.util.concurrent.atomic.AtomicLong requested +com.jaredrummler.android.colorpicker.R$attr: int enabled +okhttp3.Challenge: Challenge(java.lang.String,java.lang.String) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$2: void run() +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_disabled_holo_dark +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDegreeDayTemperature(java.lang.Integer) +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: int getMinuteInterval() +androidx.hilt.R$attr: int alpha com.google.android.material.R$dimen: int abc_dialog_fixed_height_minor -wangdaye.com.geometricweather.R$attr: int expandedHintEnabled -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_iconifiedByDefault -androidx.lifecycle.Lifecycling$1: Lifecycling$1(androidx.lifecycle.LifecycleEventObserver) -androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowRadius -android.didikee.donate.R$styleable: int AppCompatTextView_autoSizePresetSizes -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Body2 -com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Primary -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert -james.adaptiveicon.R$style: int Base_Widget_AppCompat_Spinner -androidx.preference.R$id: int accessibility_custom_action_26 -com.xw.repo.bubbleseekbar.R$drawable: int notification_bg_normal_pressed -okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder writeTimeout(java.time.Duration) -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub: IWeatherProviderServiceClient$Stub() -androidx.viewpager2.R$color: int notification_icon_bg_color -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean aqi -com.tencent.bugly.crashreport.CrashReport: boolean setJavascriptMonitor(com.tencent.bugly.crashreport.CrashReport$WebViewInterface,boolean,boolean) -androidx.hilt.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Top_Left -androidx.appcompat.resources.R$styleable: int GradientColorItem_android_offset -okhttp3.HttpUrl: java.util.List encodedPathSegments() -com.google.android.material.R$id: int tag_transition_group -androidx.appcompat.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: boolean requestDismissAndStartActivity(android.content.Intent) -com.bumptech.glide.R$dimen: int notification_main_column_padding_top -okhttp3.internal.http2.Http2Connection$Builder: java.lang.String hostname -com.amap.api.location.AMapLocationClient: void stopAssistantLocation() -com.google.android.gms.common.SignInButton: void setEnabled(boolean) -cyanogenmod.hardware.DisplayMode -com.xw.repo.bubbleseekbar.R$color: int background_floating_material_light -cyanogenmod.externalviews.ExternalViewProperties: int getWidth() -com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_text_size -wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_barThickness -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: io.reactivex.internal.operators.observable.ObservableRefCount parent -com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu -com.xw.repo.bubbleseekbar.R$attr: int alertDialogStyle -wangdaye.com.geometricweather.R$integer: int google_play_services_version -androidx.preference.R$attr: int adjustable -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_action_height -com.jaredrummler.android.colorpicker.R$dimen: int cpv_item_size -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.weather.ICMWeatherManager$Stub: java.lang.String DESCRIPTOR -io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void onComplete() -androidx.constraintlayout.widget.R$dimen: int abc_dialog_fixed_width_minor -okio.Buffer: boolean equals(java.lang.Object) -okhttp3.Cache: void remove(okhttp3.Request) -com.xw.repo.bubbleseekbar.R$attr: int singleChoiceItemLayout -androidx.appcompat.R$color: int material_blue_grey_800 -androidx.lifecycle.SavedStateHandle: androidx.savedstate.SavedStateRegistry$SavedStateProvider savedStateProvider() -com.google.android.material.R$attr: int layout_constraintCircle -okhttp3.internal.http2.Http2Codec: Http2Codec(okhttp3.OkHttpClient,okhttp3.Interceptor$Chain,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http2.Http2Connection) -android.didikee.donate.R$style: int TextAppearance_AppCompat -wangdaye.com.geometricweather.R$string: int settings_title_pressure_unit -androidx.constraintlayout.widget.R$id: int aligned -com.google.android.material.tabs.TabLayout: TabLayout(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetEnd -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.Date pubTime -com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge -wangdaye.com.geometricweather.R$attr: int layout_goneMarginEnd -androidx.preference.R$id: int scrollIndicatorUp -io.reactivex.Observable: io.reactivex.Observable buffer(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -retrofit2.adapter.rxjava2.Result: retrofit2.adapter.rxjava2.Result error(java.lang.Throwable) -wangdaye.com.geometricweather.R$layout: int item_weather_daily_margin -com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_EditTextPreference -com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_disabled_material_light -androidx.lifecycle.LiveData$ObserverWrapper: androidx.lifecycle.LiveData this$0 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String getType() -wangdaye.com.geometricweather.R$attr: int flow_lastHorizontalStyle -com.google.android.material.R$style: int Base_Widget_AppCompat_ActionBar_TabView -com.google.android.material.R$dimen: int mtrl_bottomappbar_fab_cradle_vertical_offset -cyanogenmod.app.CustomTile$ExpandedStyle$1: CustomTile$ExpandedStyle$1() -com.google.android.material.chip.Chip: void setGravity(int) -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean isDisposed() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric -com.xw.repo.bubbleseekbar.R$id: R$id() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitationProbability(java.lang.Float) -com.google.android.material.R$styleable: int TextAppearance_android_textSize -com.google.android.material.R$attr: int cardBackgroundColor -com.google.android.material.R$styleable: int AppCompatTheme_buttonStyleSmall -androidx.hilt.work.R$id: int accessibility_custom_action_20 -cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onResume -wangdaye.com.geometricweather.R$styleable: int[] OnClick -cyanogenmod.app.ICMTelephonyManager$Stub: int TRANSACTION_setDefaultSmsSub -com.jaredrummler.android.colorpicker.R$layout: int notification_action -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onNext(java.lang.Object) -androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontVariationSettings -com.google.android.material.R$anim: int abc_shrink_fade_out_from_bottom -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarButtonStyle -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton_Overflow -james.adaptiveicon.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow -com.jaredrummler.android.colorpicker.R$styleable: int[] CompoundButton -okhttp3.internal.ws.WebSocketWriter: void writeControlFrame(int,okio.ByteString) -okhttp3.RequestBody$2: okhttp3.MediaType contentType() -wangdaye.com.geometricweather.R$dimen: int abc_button_padding_vertical_material -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_Button -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: io.reactivex.internal.disposables.SequentialDisposable serial -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language JAPANESE -wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingEnd -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_borderlessButtonStyle -androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModel get(java.lang.Class) -androidx.preference.R$id: int text2 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dropDownListViewStyle -cyanogenmod.app.ProfileGroup: void writeToParcel(android.os.Parcel,int) -androidx.appcompat.R$styleable: int SwitchCompat_trackTint -androidx.preference.R$attr: int actionBarSize -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: double Value -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWindLevel -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Caption -androidx.work.R$drawable: int notification_template_icon_low_bg -com.xw.repo.bubbleseekbar.R$drawable: int abc_cab_background_top_material -wangdaye.com.geometricweather.R$attr: int layout_anchorGravity -com.turingtechnologies.materialscrollbar.R$integer: int abc_config_activityDefaultDur -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: java.util.List getAlerts() -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelBackground -androidx.appcompat.R$styleable: int AppCompatTheme_actionDropDownStyle -androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour FIXED -james.adaptiveicon.R$dimen: int abc_text_size_title_material_toolbar -android.didikee.donate.R$dimen: int abc_list_item_padding_horizontal_material -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_checkable -okhttp3.internal.ws.WebSocketWriter$FrameSink: okhttp3.internal.ws.WebSocketWriter this$0 -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin -androidx.appcompat.R$id: int spacer -com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context) -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: java.util.concurrent.atomic.AtomicReference mSubscriber -com.google.android.material.R$styleable: int BottomNavigationView_itemIconSize -wangdaye.com.geometricweather.R$id: int notification_big_icon_4 -com.xw.repo.bubbleseekbar.R$id: int actions -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated -wangdaye.com.geometricweather.R$drawable: int star_2 -android.didikee.donate.R$attr: int panelBackground -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_checkboxStyle -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_text_size -com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_CompactMenu -androidx.appcompat.R$id: int customPanel -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialog_backgroundInsetTop -retrofit2.CallAdapter: java.lang.Object adapt(retrofit2.Call) -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String _ID -androidx.constraintlayout.widget.R$id: int submenuarrow +io.reactivex.subjects.PublishSubject$PublishDisposable: PublishSubject$PublishDisposable(io.reactivex.Observer,io.reactivex.subjects.PublishSubject) +wangdaye.com.geometricweather.R$layout: int test_design_checkbox +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionMenuTextAppearance +com.google.android.material.R$color: int notification_icon_bg_color +cyanogenmod.providers.WeatherContract$WeatherColumns$TempUnit: WeatherContract$WeatherColumns$TempUnit() +cyanogenmod.app.IPartnerInterface$Stub$Proxy: android.os.IBinder asBinder() +androidx.vectordrawable.R$id: int tag_screen_reader_focusable +cyanogenmod.app.Profile: java.util.Collection getStreamSettings() +wangdaye.com.geometricweather.R$string: int feedback_collect_failed +com.turingtechnologies.materialscrollbar.R$attr: int dialogTheme +wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableCompat +androidx.fragment.app.Fragment$InstantiationException: Fragment$InstantiationException(java.lang.String,java.lang.Exception) +com.bumptech.glide.integration.okhttp.R$attr: R$attr() +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PressureTendency: AccuCurrentResult$PressureTendency() +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit MI +androidx.appcompat.R$styleable: int TextAppearance_fontVariationSettings +android.didikee.donate.R$attr: int titleMarginTop +com.amap.api.fence.PoiItem: java.lang.String getAdname() +com.google.android.material.R$attr: int logoDescription +wangdaye.com.geometricweather.R$string: int preference_copied +wangdaye.com.geometricweather.R$dimen: int design_snackbar_elevation +androidx.appcompat.widget.AppCompatCheckBox: void setButtonDrawable(android.graphics.drawable.Drawable) +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_navigationContentDescription +cyanogenmod.weather.WeatherInfo: double access$702(cyanogenmod.weather.WeatherInfo,double) +com.tencent.bugly.proguard.ak: com.tencent.bugly.proguard.ah n +androidx.appcompat.R$attr: int navigationMode +android.didikee.donate.R$styleable: int SwitchCompat_thumbTintMode +com.google.android.material.R$styleable: int ConstraintSet_android_rotationX +okio.DeflaterSink +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias +androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_DialogWindowTitle_AppCompat +com.google.android.material.progressindicator.ProgressIndicator +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_scaleX +androidx.constraintlayout.widget.R$styleable: int PopupWindowBackgroundState_state_above_anchor +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onScreenTurnedOn() +androidx.transition.R$layout +wangdaye.com.geometricweather.R$attr: int state_collapsed +cyanogenmod.profiles.AirplaneModeSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +com.amap.api.location.AMapLocation: int getGpsAccuracyStatus() +com.google.android.gms.common.server.response.FastJsonResponse$Field +okio.GzipSource: byte FNAME +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_showDividers +com.google.android.material.floatingactionbutton.FloatingActionButton: void setRippleColor(android.content.res.ColorStateList) +cyanogenmod.weather.RequestInfo: void writeToParcel(android.os.Parcel,int) +android.didikee.donate.R$id: int withText +wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvIndex(java.lang.Integer) +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Button +com.google.android.material.card.MaterialCardView: android.content.res.ColorStateList getStrokeColorStateList() +androidx.preference.R$attr: int titleMarginTop +wangdaye.com.geometricweather.R$dimen: int mtrl_card_elevation +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Time +com.tencent.bugly.proguard.q: java.lang.String a +wangdaye.com.geometricweather.R$color: int colorTextTitle_light +wangdaye.com.geometricweather.R$attr: int verticalOffset +androidx.constraintlayout.widget.R$attr: int textAppearanceListItemSmall +com.jaredrummler.android.colorpicker.R$styleable: int[] MenuView +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +cyanogenmod.app.Profile: void setStreamSettings(cyanogenmod.profiles.StreamSettings) +wangdaye.com.geometricweather.R$attr: int expandedTitleMarginTop +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: cyanogenmod.externalviews.IExternalViewProviderFactory asInterface(android.os.IBinder) +androidx.appcompat.widget.Toolbar: void setOverflowIcon(android.graphics.drawable.Drawable) +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImpl +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_android_insetBottom +com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage ZH +okhttp3.internal.ws.WebSocketProtocol: long CLOSE_MESSAGE_MAX +com.google.android.material.R$styleable: int MaterialCardView_strokeColor +wangdaye.com.geometricweather.R$string: int key_notification_temp_icon +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver$SwitchMapSingleObserver: void onError(java.lang.Throwable) +androidx.cardview.widget.CardView: void setCardElevation(float) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_spinnerStyle +androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context,android.util.AttributeSet,int) +com.jaredrummler.android.colorpicker.R$id: int circle +com.turingtechnologies.materialscrollbar.R$integer: int mtrl_tab_indicator_anim_duration_ms +com.amap.api.location.UmidtokenInfo$a: void onLocationChanged(com.amap.api.location.AMapLocation) +wangdaye.com.geometricweather.R$drawable: int common_google_signin_btn_text_light_normal_background +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +androidx.preference.R$attr: int colorPrimary +com.turingtechnologies.materialscrollbar.R$dimen: int notification_subtext_size +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_Alert_Bridge +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void dispose() +androidx.preference.R$styleable: int FontFamily_fontProviderPackage +james.adaptiveicon.R$attr: int logoDescription +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: io.reactivex.Observer downstream +james.adaptiveicon.R$id: int src_in +android.didikee.donate.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +wangdaye.com.geometricweather.R$attr: int positiveButtonText +androidx.preference.R$styleable: int SwitchCompat_android_textOn +com.google.android.material.tabs.TabLayout: int getTabIndicatorGravity() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton_CloseMode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX getBrandInfo() +androidx.constraintlayout.widget.R$id: int jumpToStart +com.google.android.material.R$attr: int itemIconPadding +wangdaye.com.geometricweather.R$layout: int item_about_library +com.google.android.material.R$styleable: int ClockHandView_selectorSize +wangdaye.com.geometricweather.R$dimen: int abc_disabled_alpha_material_light +okio.ForwardingSink +wangdaye.com.geometricweather.R$id: int widget_week_icon_4 +com.google.android.material.R$styleable: int Layout_layout_constraintHeight_percent +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_keyline +androidx.appcompat.widget.ContentFrameLayout: android.util.TypedValue getMinWidthMajor() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCloseButtonStyle +androidx.appcompat.R$styleable: int Toolbar_buttonGravity +com.google.android.material.R$style: int Widget_AppCompat_Spinner_Underlined +androidx.dynamicanimation.R$styleable: int[] GradientColor +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +com.google.android.gms.base.R$color: int common_google_signin_btn_text_light_default +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.RequestInfo$Builder setTemperatureUnit(int) +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit LPSQM +androidx.hilt.work.R$style +androidx.hilt.R$style: R$style() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +wangdaye.com.geometricweather.R$styleable: int LoadingImageView_imageAspectRatioAdjust +io.reactivex.Observable: io.reactivex.Observable repeat() +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,long,boolean) +james.adaptiveicon.R$color: int material_deep_teal_500 +com.google.android.material.R$id: int row_index_key +wangdaye.com.geometricweather.R$styleable: int View_paddingStart +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String unitId +okhttp3.internal.cache.DiskLruCache: boolean mostRecentTrimFailed +com.turingtechnologies.materialscrollbar.R$color: int accent_material_light +androidx.appcompat.R$string: int abc_menu_ctrl_shortcut_label +io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable valueOf(java.lang.String) +com.google.android.material.R$styleable: int ProgressIndicator_indicatorCornerRadius +com.google.android.material.R$attr: int fastScrollVerticalTrackDrawable +androidx.preference.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +androidx.constraintlayout.widget.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.R$id: int activity_settings_toolbar +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 +james.adaptiveicon.R$styleable: int AppCompatTheme_colorError +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver +androidx.fragment.R$id: int accessibility_custom_action_11 +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Large +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: android.os.IBinder asBinder() +androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_Toolbar +com.google.android.material.R$style: int TestStyleWithLineHeight +androidx.constraintlayout.widget.R$attr: int singleChoiceItemLayout +com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_AppCompat_Dark +com.xw.repo.bubbleseekbar.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$layout: int select_dialog_multichoice_material +com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context,android.util.AttributeSet) +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: java.lang.String DESCRIPTOR +wangdaye.com.geometricweather.R$id: int container_main_first_daily_card_container +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogCornerRadius +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$anim: int design_snackbar_out +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getUnitId() +com.amap.api.location.AMapLocationClientOption: long b +wangdaye.com.geometricweather.R$dimen +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Wind wind +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getPivotX() +androidx.customview.R$drawable: R$drawable() +com.tencent.bugly.crashreport.CrashReport: void initCrashReport(android.content.Context,java.lang.String,boolean) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float o3 +androidx.transition.R$styleable: int[] GradientColor +androidx.core.widget.NestedScrollView: int getScrollRange() +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +cyanogenmod.themes.ThemeChangeRequest: java.util.Map mThemeComponents +com.tencent.bugly.proguard.c: void a(java.lang.String) +com.google.android.material.snackbar.Snackbar$SnackbarLayout +com.tencent.bugly.proguard.aq: long a +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_unregisterChangeListener +com.jaredrummler.android.colorpicker.R$attr: int buttonBarPositiveButtonStyle +okhttp3.RealCall$AsyncCall: java.lang.String host() +wangdaye.com.geometricweather.R$attr: int iconifiedByDefault +com.turingtechnologies.materialscrollbar.R$styleable: int ThemeEnforcement_android_textAppearance +com.tencent.bugly.proguard.s: android.content.Context c +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_ActionBar_TitleItem +okhttp3.CacheControl$Builder: boolean noTransform +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.lang.String weatherText +wangdaye.com.geometricweather.R$color: int material_slider_inactive_track_color +okhttp3.Connection: okhttp3.Handshake handshake() +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm +wangdaye.com.geometricweather.R$style: int ShapeAppearance_MaterialComponents_MediumComponent +wangdaye.com.geometricweather.R$dimen: int design_navigation_item_icon_padding +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +james.adaptiveicon.R$styleable: int PopupWindow_overlapAnchor +androidx.viewpager.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$attr: int actionModeCloseButtonStyle +com.google.android.material.R$dimen: int mtrl_textinput_box_label_cutout_padding +okhttp3.Response$Builder: okhttp3.Response build() +com.baidu.location.indoor.mapversion.c.a$d: java.lang.String a +cyanogenmod.app.IProfileManager$Stub$Proxy: IProfileManager$Stub$Proxy(android.os.IBinder) +androidx.customview.R$dimen: int compat_button_inset_horizontal_material +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +androidx.constraintlayout.widget.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.R$drawable: int weather_haze +james.adaptiveicon.R$styleable: int View_android_theme +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Imperial +com.google.android.material.R$dimen: int abc_action_bar_overflow_padding_end_material +androidx.swiperefreshlayout.R$styleable: R$styleable() +cyanogenmod.hardware.CMHardwareManager: int getDisplayGammaCalibrationMin() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_label_cutout_padding +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Metric +androidx.preference.R$attr: int drawableStartCompat +androidx.appcompat.widget.AppCompatImageButton: void setImageResource(int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextHelper_android_drawableBottom +james.adaptiveicon.R$styleable: int[] PopupWindowBackgroundState +androidx.preference.R$style: int Base_Widget_AppCompat_ProgressBar +okhttp3.internal.http.HttpHeaders: okio.ByteString TOKEN_DELIMITERS +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: retrofit2.Call $this_await$inlined +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: double Value +com.tencent.bugly.crashreport.common.strategy.a: void a(com.tencent.bugly.proguard.ap) +james.adaptiveicon.R$drawable: int abc_text_select_handle_middle_mtrl_dark +wangdaye.com.geometricweather.R$attr: int foregroundInsidePadding +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setId(java.lang.Long) +android.didikee.donate.R$styleable: int[] PopupWindowBackgroundState +james.adaptiveicon.R$attr: int actionModeSplitBackground +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: AccuDailyResult$DailyForecasts$Day$Wind$Speed() +androidx.appcompat.R$dimen: int abc_control_corner_material +androidx.preference.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.R$xml: int standalone_badge_offset +wangdaye.com.geometricweather.R$attr: int colorScheme +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getWeek(android.content.Context) +com.tencent.bugly.proguard.af: byte[] a(byte[]) +com.baidu.location.Poi: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$id: int item_about_link +wangdaye.com.geometricweather.R$color: int notification_icon_bg_color +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_helperTextTextColor +androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy: ConstraintProxy$BatteryNotLowProxy() +com.google.android.material.R$styleable: int KeyAttribute_android_translationX +androidx.preference.R$styleable: int SwitchPreference_disableDependentsState +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_anchor +androidx.appcompat.widget.Toolbar: android.content.Context getPopupContext() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$string: int content_desc_weather_alert_button +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX brandInfo +com.google.android.material.R$dimen: int abc_dialog_corner_radius_material +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback +androidx.preference.R$styleable: int AppCompatTheme_seekBarStyle +androidx.hilt.work.R$styleable: int GradientColor_android_endColor +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeSnowPrecipitationProbability() +androidx.viewpager.R$styleable: int GradientColor_android_startColor +androidx.appcompat.R$style: int AlertDialog_AppCompat_Light +okhttp3.CookieJar$1 +io.reactivex.Observable: io.reactivex.Observable switchMapSingle(io.reactivex.functions.Function) +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_icon_vertical_padding_material +androidx.customview.R$drawable: int notification_icon_background +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setPivotX(float) +androidx.customview.R$id: int tag_unhandled_key_listeners +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_font +androidx.activity.R$id: int accessibility_custom_action_31 +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: AtmoAuraQAResult() +wangdaye.com.geometricweather.R$attr: int backgroundColorEnd +androidx.drawerlayout.R$drawable: int notification_template_icon_bg +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.internal.disposables.SequentialDisposable upstream +com.google.android.material.R$dimen: int mtrl_btn_padding_bottom +com.tencent.bugly.proguard.aj: aj(byte,java.lang.String,byte[]) +com.google.android.material.appbar.AppBarLayout: int getUpNestedPreScrollRange() +androidx.hilt.lifecycle.R$styleable: int FragmentContainerView_android_tag +androidx.fragment.R$anim: int fragment_fast_out_extra_slow_in +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomSheet_Modal +androidx.constraintlayout.widget.R$styleable: int MenuItem_alphabeticModifiers +androidx.vectordrawable.animated.R$styleable: int GradientColorItem_android_color +androidx.constraintlayout.widget.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +com.xw.repo.bubbleseekbar.R$attr: int gapBetweenBars +com.google.android.material.R$attr: int theme +androidx.appcompat.R$attr: int textAppearanceLargePopupMenu +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String e() +okhttp3.OkHttpClient: int writeTimeoutMillis() +cyanogenmod.weather.WeatherLocation: java.lang.String access$702(cyanogenmod.weather.WeatherLocation,java.lang.String) +wangdaye.com.geometricweather.R$drawable: int notif_temp_9 +com.turingtechnologies.materialscrollbar.R$attr: int searchIcon +com.google.android.material.R$attr: int expandedTitleMarginStart +james.adaptiveicon.R$color: int switch_thumb_normal_material_light +com.google.android.material.appbar.AppBarLayout: void setTargetElevation(float) +androidx.lifecycle.LifecycleRegistry: void forwardPass(androidx.lifecycle.LifecycleOwner) +wangdaye.com.geometricweather.R$styleable: int[] SnackbarLayout +wangdaye.com.geometricweather.R$id: int mtrl_calendar_months +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_startColor +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: void onSubscribe(org.reactivestreams.Subscription) +com.jaredrummler.android.colorpicker.R$id: int preset +io.reactivex.internal.disposables.DisposableHelper: boolean isDisposed() +wangdaye.com.geometricweather.R$dimen: int abc_button_inset_horizontal_material +androidx.recyclerview.R$id: int accessibility_custom_action_7 +okio.Buffer: okio.BufferedSink writeLong(long) +retrofit2.Callback: void onFailure(retrofit2.Call,java.lang.Throwable) +cyanogenmod.hardware.CMHardwareManager: int getVibratorMaxIntensity() +android.didikee.donate.R$anim: int abc_slide_in_top +com.google.android.material.R$style: int Platform_ThemeOverlay_AppCompat_Light +androidx.constraintlayout.widget.R$drawable: int abc_btn_check_material_anim +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.converters.WindDegreeConverter windDegreeConverter +wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_android_divider +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_normalContainer +com.google.android.material.R$attr: int strokeColor +wangdaye.com.geometricweather.R$id: int notification_base +androidx.preference.R$attr: int listDividerAlertDialog +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_CompactMenu +com.jaredrummler.android.colorpicker.R$attr: int statusBarBackground +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_altSrc +com.bumptech.glide.R$id: R$id() +com.turingtechnologies.materialscrollbar.R$color: int accent_material_dark +com.tencent.bugly.proguard.n: android.content.Context c +com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_dark +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_xml +com.google.android.material.R$string: int exposed_dropdown_menu_content_description +okhttp3.Dispatcher: void setMaxRequests(int) +retrofit2.HttpServiceMethod$CallAdapted: retrofit2.CallAdapter callAdapter +androidx.appcompat.R$id: int accessibility_custom_action_2 +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_light +okhttp3.internal.cache.CacheInterceptor: okhttp3.Response stripBody(okhttp3.Response) +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_pressedTranslationZ +com.google.android.material.R$styleable: int Insets_paddingLeftSystemWindowInsets +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.xw.repo.bubbleseekbar.R$color: int dim_foreground_material_light +androidx.preference.R$drawable: int abc_cab_background_internal_bg +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: void setFrom(java.lang.String) +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_FloatingActionButton +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Large +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String d() +androidx.preference.R$styleable: int AppCompatTheme_actionBarTabBarStyle +cyanogenmod.platform.Manifest$permission: java.lang.String READ_MSIM_PHONE_STATE +com.tencent.bugly.proguard.ak: java.util.Map C +com.google.android.material.chip.Chip: void setShowMotionSpec(com.google.android.material.animation.MotionSpec) +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_dayNightTypeTitle +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float rain +com.xw.repo.bubbleseekbar.R$bool: int abc_allow_stacked_button_bar +androidx.appcompat.R$id: int actions +androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.Fragment) +com.bumptech.glide.R$drawable: int notification_tile_bg +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low +io.reactivex.Observable: io.reactivex.Observable defer(java.util.concurrent.Callable) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder port(int) +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_backgroundSplit +com.turingtechnologies.materialscrollbar.R$dimen: int design_fab_border_width +androidx.recyclerview.R$styleable: int RecyclerView_android_orientation +wangdaye.com.geometricweather.R$styleable: int ListPreference_entries androidx.legacy.coreutils.R$attr: int fontProviderCerts -com.google.android.material.R$attr: int colorOnSurface -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: CircularRevealCoordinatorLayout(android.content.Context,android.util.AttributeSet) -okio.ByteString: okio.ByteString read(java.io.InputStream,int) -com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_left_mtrl_light -cyanogenmod.hardware.ICMHardwareService: boolean unRegisterThermalListener(cyanogenmod.hardware.IThermalListenerCallback) -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_5 -android.didikee.donate.R$string: int abc_activity_chooser_view_see_all -cyanogenmod.weather.WeatherLocation: WeatherLocation() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -com.jaredrummler.android.colorpicker.R$string: int abc_activitychooserview_choose_application -wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: void setText(java.lang.String) -androidx.preference.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -androidx.appcompat.R$styleable: int AlertDialog_showTitle -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent FONT -com.google.android.material.R$dimen: int material_text_view_test_line_height -cyanogenmod.app.LiveLockScreenManager: LiveLockScreenManager(android.content.Context) -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String L -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeRealFeelShaderTemperature() -wangdaye.com.geometricweather.R$color: int material_on_surface_disabled -com.google.android.material.R$styleable: int[] Variant -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowActionBarOverlay -cyanogenmod.profiles.AirplaneModeSettings$1: java.lang.Object[] newArray(int) -com.google.android.material.R$attr: int errorIconTintMode -androidx.preference.R$dimen: int tooltip_precise_anchor_extra_offset -com.google.android.material.R$styleable: int MenuGroup_android_visible -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Title -com.google.android.gms.base.R$styleable: int LoadingImageView_circleCrop -androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderFetchTimeout -okhttp3.internal.http2.Http2Stream$FramingSink: okhttp3.internal.http2.Http2Stream this$0 -com.jaredrummler.android.colorpicker.R$id: int cpv_arrow_right -com.amap.api.fence.GeoFenceClient: android.app.PendingIntent createPendingIntent(java.lang.String) -androidx.viewpager2.R$dimen: int notification_large_icon_width -android.didikee.donate.R$dimen: int notification_small_icon_background_padding +com.google.android.gms.base.R$styleable: R$styleable() +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button +com.google.android.material.button.MaterialButtonToggleGroup: void setSelectionRequired(boolean) +androidx.preference.R$style: int Preference_Information +wangdaye.com.geometricweather.R$id: int widget_day_center +cyanogenmod.providers.CMSettings$System: float getFloat(android.content.ContentResolver,java.lang.String) +okio.RealBufferedSource: int read(java.nio.ByteBuffer) +androidx.constraintlayout.widget.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +android.didikee.donate.R$color: int secondary_text_default_material_dark +com.google.android.material.R$dimen: int mtrl_fab_translation_z_pressed +com.turingtechnologies.materialscrollbar.R$animator: int mtrl_fab_show_motion_spec +com.google.android.material.R$styleable: int ActionMode_titleTextStyle +com.turingtechnologies.materialscrollbar.R$id: int edit_query +androidx.vectordrawable.animated.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_switchPreferenceStyle +com.bumptech.glide.integration.okhttp.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfRain +wangdaye.com.geometricweather.R$string: int key_forecast_today_time +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void innerComplete(io.reactivex.internal.observers.InnerQueuedObserver) +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_halfExpandedRatio +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition: AccuLocationResult$GeoPosition() +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$id: int chronometer +org.greenrobot.greendao.AbstractDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean +wangdaye.com.geometricweather.R$dimen: int notification_top_pad_large_text +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation build() +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String j() +com.google.android.material.R$styleable: int NavigationView_android_fitsSystemWindows +wangdaye.com.geometricweather.R$string: int sunrise_sunset +com.tencent.bugly.proguard.z: java.lang.Object a(byte[],android.os.Parcelable$Creator) +com.google.android.material.slider.RangeSlider: void setTickTintList(android.content.res.ColorStateList) +com.xw.repo.bubbleseekbar.R$id: int buttonPanel +androidx.hilt.lifecycle.R$drawable: int notification_template_icon_low_bg +cyanogenmod.externalviews.ExternalView$3: ExternalView$3(cyanogenmod.externalviews.ExternalView) +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation[] values() +androidx.appcompat.R$attr: int goIcon +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_chainUseRtl +cyanogenmod.weather.CMWeatherManager: android.os.Handler access$100(cyanogenmod.weather.CMWeatherManager) +com.google.android.material.R$styleable: int Chip_iconEndPadding +okhttp3.internal.http2.Hpack: int PREFIX_4_BITS +com.google.android.material.R$styleable: int ActionMode_closeItemLayout +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode getDefaultDisplayMode() +com.bumptech.glide.integration.okhttp.R$styleable: int[] CoordinatorLayout +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void testNativeCrash() +com.google.android.material.R$layout: R$layout() +io.reactivex.Observable: io.reactivex.Observable generate(java.util.concurrent.Callable,io.reactivex.functions.BiFunction) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_FALLBACK_SCSV +cyanogenmod.hardware.ICMHardwareService: int getSupportedFeatures() +com.google.android.material.R$id: int spread +wangdaye.com.geometricweather.R$id: int NO_DEBUG +com.google.android.material.R$style: int Widget_Design_TextInputEditText +okhttp3.internal.platform.AndroidPlatform$AndroidCertificateChainCleaner: boolean equals(java.lang.Object) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String getBrandId() +okhttp3.ConnectionSpec: okhttp3.ConnectionSpec RESTRICTED_TLS +org.greenrobot.greendao.AbstractDaoSession: java.util.Map entityToDao +androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: AccuCurrentResult$PrecipitationSummary$Past24Hours() +androidx.lifecycle.ProcessLifecycleOwner +retrofit2.OkHttpCall: java.lang.Throwable creationFailure +com.google.android.material.chip.Chip: android.content.res.ColorStateList getCloseIconTint() +androidx.appcompat.R$attr: int contentDescription +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_anchor +wangdaye.com.geometricweather.R$dimen: int abc_dialog_fixed_height_major +okhttp3.internal.http2.Http2Connection: void writeSynReply(int,boolean,java.util.List) +com.google.android.material.R$styleable: int ForegroundLinearLayout_foregroundInsidePadding +okhttp3.internal.cache.CacheInterceptor$1: long read(okio.Buffer,long) +com.google.android.material.R$style: int Widget_AppCompat_ActionBar_TabBar +cyanogenmod.app.CustomTile$ExpandedStyle: int styleId +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind: AccuCurrentResult$Wind() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: AccuCurrentResult$WindGust$Speed$Metric() +okhttp3.internal.ws.WebSocketWriter$FrameSink: okio.Timeout timeout() +com.google.android.gms.common.Feature: android.os.Parcelable$Creator CREATOR +androidx.recyclerview.widget.StaggeredGridLayoutManager: StaggeredGridLayoutManager(android.content.Context,android.util.AttributeSet,int,int) +com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol[] b +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.String TABLENAME +com.github.rahatarmanahmed.cpv.CircularProgressView: int animSwoopDuration +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void startFirstTimeout(io.reactivex.ObservableSource) +com.google.gson.stream.JsonReader: boolean fillBuffer(int) +wangdaye.com.geometricweather.R$styleable: int MotionHelper_onShow +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView +wangdaye.com.geometricweather.R$id: int filterBtn +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceFragment_android_dividerHeight +wangdaye.com.geometricweather.R$styleable: int[] ThemeEnforcement +cyanogenmod.externalviews.ExternalViewProperties: android.graphics.Rect mHitRect +androidx.lifecycle.Lifecycling: java.lang.reflect.Constructor generatedConstructor(java.lang.Class) +cyanogenmod.providers.CMSettings$System: java.lang.String ENABLE_PEOPLE_LOOKUP +com.google.android.material.R$dimen: int mtrl_card_dragged_z +androidx.lifecycle.ViewModel: boolean mCleared +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: int consumed +com.tencent.bugly.proguard.d: void a(byte[]) +androidx.lifecycle.extensions.R$layout: int notification_template_custom_big +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_spinnerStyle +androidx.appcompat.R$drawable: int abc_btn_switch_to_on_mtrl_00001 +cyanogenmod.app.LiveLockScreenInfo$Builder: cyanogenmod.app.LiveLockScreenInfo build() +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ListPopupWindow +com.google.android.material.chip.ChipGroup: void setDividerDrawableHorizontal(android.graphics.drawable.Drawable) +james.adaptiveicon.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset androidx.core.widget.ContentLoadingProgressBar: ContentLoadingProgressBar(android.content.Context,android.util.AttributeSet) -okhttp3.internal.http1.Http1Codec$ChunkedSink: okhttp3.internal.http1.Http1Codec this$0 -okhttp3.RequestBody$1: RequestBody$1(okhttp3.MediaType,okio.ByteString) -okio.ForwardingTimeout: long deadlineNanoTime() -androidx.lifecycle.process.R: R() -wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: int getPosition() -androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display3 -androidx.activity.R$attr: int font -androidx.fragment.R$id: int accessibility_custom_action_21 -james.adaptiveicon.R$styleable: int AppCompatTheme_android_windowIsFloating -com.turingtechnologies.materialscrollbar.R$styleable: int[] ViewBackgroundHelper -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String LanguageCode -com.google.android.material.card.MaterialCardView: void setCheckedIconSizeResource(int) -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogLayout -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_minHeight -james.adaptiveicon.R$styleable: int AppCompatTheme_colorBackgroundFloating -com.amap.api.fence.GeoFenceManagerBase: boolean isPause() -android.didikee.donate.R$drawable: int abc_ic_star_half_black_16dp -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconContentDescription -retrofit2.Call: void enqueue(retrofit2.Callback) -androidx.preference.R$style: int Base_V21_Theme_AppCompat_Light -androidx.appcompat.widget.AlertDialogLayout -androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary -cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_SYNC -androidx.loader.R$dimen: int notification_top_pad_large_text -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: wangdaye.com.geometricweather.db.entities.HourlyEntity readEntity(android.database.Cursor,int) -android.didikee.donate.R$styleable: int[] AppCompatImageView -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_ttcIndex -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_TextInputEditText -james.adaptiveicon.R$id: int action_text -james.adaptiveicon.R$anim: int abc_popup_enter -com.xw.repo.bubbleseekbar.R$dimen: int abc_search_view_preferred_width -james.adaptiveicon.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_dialog_background_inset -okhttp3.internal.http.HttpHeaders -com.google.android.material.R$dimen -androidx.preference.R$attr: int allowDividerAbove -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LIVE_LOCK_SCREEN_THUMBNAIL -io.reactivex.internal.util.NotificationLite: boolean isSubscription(java.lang.Object) -wangdaye.com.geometricweather.R$anim: int design_bottom_sheet_slide_in -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Colored -cyanogenmod.app.Profile: void setConnectionSettings(cyanogenmod.profiles.ConnectionSettings) -com.turingtechnologies.materialscrollbar.R$attr: int firstBaselineToTopHeight -com.xw.repo.bubbleseekbar.R$attr: int barLength -android.didikee.donate.R$attr: int buttonBarPositiveButtonStyle -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial Imperial -cyanogenmod.app.ProfileGroup: android.net.Uri mRingerOverride -com.bumptech.glide.load.resource.bitmap.RecyclableBufferedInputStream$InvalidMarkException -com.bumptech.glide.R$drawable: int notification_template_icon_bg -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: int getMarginTop() -com.xw.repo.bubbleseekbar.R$attr: int subtitleTextColor -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: ExternalViewProviderService$Provider$ProviderImpl(cyanogenmod.externalviews.ExternalViewProviderService$Provider,cyanogenmod.externalviews.ExternalViewProviderService$Provider) -com.google.android.material.R$styleable: int ProgressIndicator_indicatorSize -wangdaye.com.geometricweather.R$drawable: int ic_running_in_background -wangdaye.com.geometricweather.R$attr: int arrowHeadLength -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_textAllCaps -com.google.android.material.R$dimen: int mtrl_toolbar_default_height -com.tencent.bugly.proguard.i: double[] i(int,boolean) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingRight -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -com.turingtechnologies.materialscrollbar.R$attr: int font -androidx.appcompat.R$styleable: int ActionBar_height -cyanogenmod.app.IPartnerInterface: boolean setZenModeWithDuration(int,long) -com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginBottom() -com.amap.api.fence.GeoFenceManagerBase: boolean removeGeoFence(com.amap.api.fence.GeoFence) -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderPackage -okhttp3.internal.http.HttpHeaders: int skipAll(okio.Buffer,byte) -com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton -wangdaye.com.geometricweather.R$styleable: int GradientColor_android_tileMode -wangdaye.com.geometricweather.R$string: int snow -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String s -cyanogenmod.app.Profile$1 -android.didikee.donate.R$style: int ThemeOverlay_AppCompat -okhttp3.internal.ws.RealWebSocket: void tearDown() -androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.externalviews.ExternalView$4: void run() -com.xw.repo.bubbleseekbar.R$id: int scrollIndicatorUp -com.google.android.material.R$drawable: int abc_text_select_handle_left_mtrl_light -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onKeyguardDismissed() -io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.Observer) -io.reactivex.internal.disposables.SequentialDisposable: SequentialDisposable() -com.xw.repo.bubbleseekbar.R$color: int ripple_material_light -wangdaye.com.geometricweather.db.entities.AlertEntity: java.lang.String weatherSource -com.google.android.material.R$styleable: int ConstraintSet_chainUseRtl -androidx.appcompat.R$color: int highlighted_text_material_light -com.google.android.material.R$attr: int extendedFloatingActionButtonStyle -cyanogenmod.weather.WeatherInfo$Builder: int mWindSpeedUnit -com.google.android.material.button.MaterialButton: int getInsetBottom() -com.google.android.material.R$attr: int alpha -androidx.appcompat.widget.Toolbar: int getTitleMarginEnd() -com.amap.api.fence.GeoFence: void setAble(boolean) -com.jaredrummler.android.colorpicker.R$styleable: int AnimatedStateListDrawableItem_android_id -com.google.android.material.card.MaterialCardView -cyanogenmod.themes.IThemeService$Stub$Proxy: long getLastThemeChangeTime() -okhttp3.Cookie: java.lang.String parseDomain(java.lang.String) -com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a: java.lang.String b -com.tencent.bugly.proguard.ak: java.lang.String l -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView_Menu -wangdaye.com.geometricweather.R$color: int mtrl_card_view_ripple -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionModeOverlay -retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory -com.tencent.bugly.proguard.z: java.lang.Thread a(java.lang.Runnable,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_suffixTextColor +androidx.appcompat.R$styleable: int PopupWindow_android_popupAnimationStyle +androidx.lifecycle.ProcessLifecycleOwner: ProcessLifecycleOwner() +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy DROP +james.adaptiveicon.R$attr: int allowStacking +androidx.coordinatorlayout.R$integer: int status_bar_notification_info_maxnum +com.turingtechnologies.materialscrollbar.R$id: int view_offset_helper +androidx.viewpager2.R$drawable: int notification_bg_normal_pressed +androidx.constraintlayout.motion.widget.MotionLayout: android.os.Bundle getTransitionState() +cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING_RAMP_UP_TIME +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_pixel +com.tencent.bugly.crashreport.common.info.b: java.lang.String d(android.content.Context) +com.google.android.material.R$styleable: int RecyclerView_android_descendantFocusability +wangdaye.com.geometricweather.R$id: int test_radiobutton_app_button_tint +androidx.preference.R$attr: int adjustable +androidx.coordinatorlayout.R$id: int accessibility_custom_action_0 +androidx.appcompat.R$styleable: int AppCompatTheme_textAppearanceListItem +androidx.appcompat.R$attr: int actionModeShareDrawable +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: boolean daylight +androidx.appcompat.R$styleable: int RecycleListView_paddingTopNoTitle +wangdaye.com.geometricweather.R$style: int TextAppearance_Compat_Notification_Time +androidx.constraintlayout.widget.Placeholder +okhttp3.ResponseBody$1 +retrofit2.ParameterHandler$Query: ParameterHandler$Query(java.lang.String,retrofit2.Converter,boolean) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias +androidx.viewpager2.R$dimen: int notification_big_circle_margin +com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_minimum_range +com.jaredrummler.android.colorpicker.R$dimen: int abc_list_item_padding_horizontal_material +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind wind +com.google.android.material.datepicker.SingleDateSelector +androidx.appcompat.R$attr: int logoDescription +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeStepGranularity +com.turingtechnologies.materialscrollbar.R$color: int design_bottom_navigation_shadow_color +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: void setEn_US(java.lang.String) +wangdaye.com.geometricweather.R$array: int air_quality_co_units +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getHeadIconType() +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_3 +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Menu +james.adaptiveicon.R$drawable: int abc_list_longpressed_holo +androidx.appcompat.R$attr: int queryHint +com.google.android.material.R$styleable: int MenuItem_android_menuCategory +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void truncate() +cyanogenmod.app.Profile: java.util.UUID mUuid +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableStart +wangdaye.com.geometricweather.R$styleable: int AlertDialog_listLayout +com.jaredrummler.android.colorpicker.R$attr: int suggestionRowLayout +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ImageButton +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +retrofit2.Retrofit: java.util.List callAdapterFactories +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit$Calculator unitCalculator +com.google.android.material.button.MaterialButton: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: io.reactivex.functions.Consumer onDrop +com.google.android.material.R$id: int notification_main_column +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Icon +com.google.android.material.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +okhttp3.internal.http2.Header: okio.ByteString PSEUDO_PREFIX +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_bias +com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String e(android.content.Context) +okhttp3.internal.http2.Http2Connection$1: okhttp3.internal.http2.ErrorCode val$errorCode +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_type +androidx.preference.R$attr: int titleMargins +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemTextAppearance +androidx.preference.R$drawable: int abc_ic_star_half_black_16dp +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_NOTIF_COUNT_VALIDATOR +com.google.android.material.R$style: int Theme_AppCompat_DayNight_DarkActionBar +wangdaye.com.geometricweather.R$styleable: int CardView_contentPaddingLeft +com.google.android.material.circularreveal.CircularRevealLinearLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +com.google.android.gms.location.ActivityTransitionRequest +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_2 +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +android.didikee.donate.R$style: int Theme_AppCompat_Light_NoActionBar +androidx.swiperefreshlayout.R$attr: int fontProviderFetchStrategy +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onNext(java.lang.Object) +androidx.lifecycle.ProcessLifecycleOwner: void activityStopped() +okio.Buffer: okio.Buffer writeUtf8CodePoint(int) +wangdaye.com.geometricweather.R$styleable: int AlertDialog_android_layout +james.adaptiveicon.R$dimen: int notification_top_pad +androidx.appcompat.widget.AppCompatCheckedTextView: AppCompatCheckedTextView(android.content.Context,android.util.AttributeSet) +com.amap.api.location.AMapLocation: java.lang.String COORD_TYPE_GCJ02 +wangdaye.com.geometricweather.R$styleable: int State_android_id +cyanogenmod.externalviews.ExternalViewProviderService$Provider: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl access$000(cyanogenmod.externalviews.ExternalViewProviderService$Provider) +cyanogenmod.app.LiveLockScreenInfo: int describeContents() +cyanogenmod.power.PerformanceManagerInternal +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_MAX_INDEX +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemHorizontalPadding +com.turingtechnologies.materialscrollbar.R$styleable: int[] DrawerArrowToggle +androidx.appcompat.widget.SearchView: SearchView(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_titleCondensed +com.google.android.material.R$attr: int state_collapsible +com.google.android.material.R$id: int percent +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_width_material +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_textAllCaps +wangdaye.com.geometricweather.R$id: int transition_position +okhttp3.Request$Builder: okhttp3.Request$Builder patch(okhttp3.RequestBody) +androidx.recyclerview.R$id: int right_icon +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onComplete() +wangdaye.com.geometricweather.R$color: int mtrl_calendar_item_stroke_color +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_BACK_BUTTON +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_item_icon_padding +okhttp3.internal.connection.StreamAllocation: okhttp3.Call call +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: long serialVersionUID +wangdaye.com.geometricweather.R$dimen: int abc_dialog_padding_top_material +wangdaye.com.geometricweather.R$attr: int showDividers +com.google.android.material.R$styleable: int[] SnackbarLayout +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_updateProfile +com.google.android.gms.base.R$id: int adjust_width +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String treeDescription +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: int status +com.google.android.material.R$drawable: int material_ic_keyboard_arrow_left_black_24dp +androidx.preference.R$attr: int switchPreferenceStyle +wangdaye.com.geometricweather.R$layout: int item_weather_daily_title_large +org.greenrobot.greendao.AbstractDao: void loadAllUnlockOnWindowBounds(android.database.Cursor,android.database.CursorWindow,java.util.List) +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endX +androidx.appcompat.R$styleable: int Spinner_android_prompt +androidx.appcompat.widget.SearchView: void setOnQueryTextFocusChangeListener(android.view.View$OnFocusChangeListener) +androidx.appcompat.R$style: int Base_Widget_AppCompat_SeekBar +com.turingtechnologies.materialscrollbar.R$animator: int design_fab_show_motion_spec +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: int minuteInterval +com.google.android.material.R$color: int material_slider_inactive_tick_marks_color +androidx.preference.R$attr: int checkedTextViewStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_radioButtonStyle +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.disposables.Disposable upstream +cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String SERVICE_INTERFACE +com.google.android.material.R$animator: int mtrl_fab_transformation_sheet_collapse_spec +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean: CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean() +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +wangdaye.com.geometricweather.R$styleable: int[] Transform +androidx.coordinatorlayout.R$styleable: int[] CoordinatorLayout_Layout +com.turingtechnologies.materialscrollbar.R$attr: int actionBarStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldIndex(java.lang.Integer) +android.didikee.donate.R$dimen: int abc_button_inset_vertical_material +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: boolean isDisposed() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain24h +retrofit2.http.Path +okhttp3.internal.http.HttpCodec: int DISCARD_STREAM_TIMEOUT_MILLIS +androidx.constraintlayout.widget.R$styleable: int Layout_chainUseRtl +okio.Buffer: okio.Buffer writeIntLe(int) +androidx.viewpager2.adapter.FragmentStateAdapter$2 +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: io.reactivex.SingleSource other +com.tencent.bugly.proguard.a: java.lang.String b +androidx.appcompat.R$dimen: int notification_right_icon_size +com.jaredrummler.android.colorpicker.R$string: int abc_menu_enter_shortcut_label +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: java.lang.String getAddress() +androidx.preference.R$styleable: int ViewStubCompat_android_layout +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_25 +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_variablePadding +james.adaptiveicon.R$layout: int abc_screen_content_include +com.tencent.bugly.crashreport.CrashReport: void setAppPackage(android.content.Context,java.lang.String) +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_multiChoiceItemLayout +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showColorShades +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: int Version +android.didikee.donate.R$styleable: int SwitchCompat_thumbTextPadding +androidx.swiperefreshlayout.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float totalPrecipitation wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast -com.google.android.material.R$id: int textinput_placeholder -com.google.android.material.R$styleable: int Layout_layout_constraintHorizontal_weight -cyanogenmod.app.IProfileManager$Stub$Proxy: android.app.NotificationGroup getNotificationGroup(android.os.ParcelUuid) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: java.lang.String getDefenseText() -wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_sunText -com.google.android.material.R$styleable: int TextInputLayout_placeholderTextAppearance -androidx.constraintlayout.widget.R$attr: int onPositiveCross -android.didikee.donate.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getZh_TW() -androidx.lifecycle.extensions.R$styleable: int[] GradientColorItem -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.util.Map lefts -com.xw.repo.bubbleseekbar.R$layout: int abc_select_dialog_material -wangdaye.com.geometricweather.R$drawable: int design_password_eye -io.reactivex.exceptions.MissingBackpressureException -androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderAuthority -wangdaye.com.geometricweather.R$drawable: int indicator -androidx.preference.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String brandId -androidx.viewpager.R$styleable: int GradientColor_android_endX -okhttp3.OkHttpClient: java.util.List DEFAULT_CONNECTION_SPECS -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$HumidityBean humidity -android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight -com.turingtechnologies.materialscrollbar.R$id: int transition_position -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$height -androidx.appcompat.resources.R$id: int accessibility_custom_action_2 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle -james.adaptiveicon.R$style: int Base_DialogWindowTitleBackground_AppCompat -com.google.android.material.R$styleable: int[] PropertySet -androidx.preference.R$styleable: int SwitchPreferenceCompat_switchTextOn -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) -cyanogenmod.externalviews.KeyguardExternalView$9: void run() -com.google.android.material.R$attr: int tickColor -com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context) -androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse -james.adaptiveicon.R$styleable: int ViewStubCompat_android_layout -io.reactivex.internal.subscriptions.BasicIntQueueSubscription: java.lang.Object poll() -wangdaye.com.geometricweather.R$attr: int searchHintIcon -android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -wangdaye.com.geometricweather.R$styleable: int MaterialTextView_android_textAppearance -androidx.vectordrawable.R$drawable: int notification_bg_low -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconTint -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginStart -okio.AsyncTimeout -com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_out_top -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingEnd -wangdaye.com.geometricweather.R$styleable: int AlertDialog_showTitle -androidx.fragment.R$dimen: int compat_button_padding_vertical_material -com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: ChineseCityEntityDao(org.greenrobot.greendao.internal.DaoConfig) -com.xw.repo.bubbleseekbar.R$attr: int windowActionBarOverlay -wangdaye.com.geometricweather.R$dimen: int material_clock_face_margin_top -wangdaye.com.geometricweather.R$styleable: int[] NavigationView -wangdaye.com.geometricweather.R$id: int transitionToStart -com.jaredrummler.android.colorpicker.R$styleable: int MenuView_subMenuArrow -com.turingtechnologies.materialscrollbar.R$layout: int abc_action_mode_bar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String zh_CN -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX$ValueBeanX: java.lang.String getFrom() -com.google.android.material.R$attr: int expandedTitleMargin -android.didikee.donate.R$layout: int notification_template_part_time -wangdaye.com.geometricweather.R$styleable: int Layout_minWidth -io.reactivex.internal.observers.ForEachWhileObserver: ForEachWhileObserver(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer,io.reactivex.functions.Action) -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Compat_Notification -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: java.util.concurrent.atomic.AtomicReference queue -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: android.os.IBinder asBinder() -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintRight_toLeftOf -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar -com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -com.google.android.material.R$styleable: int TextInputLayout_helperTextTextColor -com.google.android.material.R$style: int Widget_MaterialComponents_NavigationView -androidx.constraintlayout.widget.R$id: int baseline -james.adaptiveicon.R$styleable: int AppCompatTheme_windowMinWidthMajor -com.google.android.material.R$attr: int waveShape -com.google.android.material.R$styleable: int GradientColor_android_startX -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void execute() -okhttp3.CacheControl$Builder: boolean noStore -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_RadioButton -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconEnabled -androidx.work.impl.foreground.SystemForegroundService: SystemForegroundService() -org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.Property getPkProperty() -wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setId(java.lang.Long) -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layoutDescription -androidx.appcompat.R$attr: int popupMenuStyle -cyanogenmod.weatherservice.ServiceRequestResult: ServiceRequestResult(cyanogenmod.weatherservice.ServiceRequestResult$1) -james.adaptiveicon.R$styleable: int AppCompatTextView_drawableEndCompat -androidx.legacy.coreutils.R$styleable: int[] ColorStateListItem -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver -androidx.recyclerview.R$dimen: int notification_small_icon_size_as_large -com.xw.repo.bubbleseekbar.R$styleable: int CoordinatorLayout_statusBarBackground -androidx.preference.R$styleable: int Preference_android_shouldDisableView -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -com.tencent.bugly.crashreport.crash.e: void a() -com.google.android.material.slider.Slider: float getThumbElevation() -androidx.preference.R$style: int Animation_AppCompat_Tooltip -james.adaptiveicon.R$color: int abc_tint_seek_thumb -okhttp3.internal.cache.FaultHidingSink -wangdaye.com.geometricweather.R$attr: int cpv_allowPresets -okhttp3.internal.connection.RouteSelector: void connectFailed(okhttp3.Route,java.io.IOException) -wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getTranslateY() -retrofit2.Retrofit$Builder: okhttp3.Call$Factory callFactory -androidx.preference.R$styleable: int StateListDrawable_android_constantSize -androidx.preference.R$styleable: int Preference_allowDividerAbove -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void collapseNotificationPanel() -androidx.cardview.R$color -com.google.android.material.R$color: int abc_search_url_text_normal -com.google.android.material.R$id: int barrier -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: java.lang.String desc -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$7 -androidx.vectordrawable.animated.R$id: int text2 -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: long serialVersionUID -io.reactivex.internal.observers.DeferredScalarDisposable: int FUSED_CONSUMED -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar_Indicator -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: CaiYunMainlyResult$ForecastDailyBean$WindBeanX() -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setKillProcess(boolean) -com.tencent.bugly.proguard.n: boolean b(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Temperature$Maximum -android.support.v4.os.IResultReceiver$Stub: int TRANSACTION_send -androidx.preference.R$id: int none -okio.Util: short reverseBytesShort(short) -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityCreated(android.app.Activity,android.os.Bundle) -wangdaye.com.geometricweather.R$drawable: int abc_seekbar_track_material -retrofit2.ParameterHandler$2: ParameterHandler$2(retrofit2.ParameterHandler) -cyanogenmod.providers.CMSettings$System$2 -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -com.google.android.material.R$styleable: int KeyTimeCycle_android_scaleX -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: ObservableFlatMapSingle$FlatMapSingleObserver(io.reactivex.Observer,io.reactivex.functions.Function,boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: void setUrl(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerReceiver -com.google.android.material.behavior.SwipeDismissBehavior: SwipeDismissBehavior() -com.google.android.gms.common.server.response.zan -android.didikee.donate.R$style: int Theme_AppCompat_Light_Dialog_MinWidth -wangdaye.com.geometricweather.R$string: int content_des_no2 -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: int STATE_RESULT_VALUE -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator APP_SWITCH_WAKE_SCREEN_VALIDATOR -androidx.dynamicanimation.R$id: int notification_main_column_container -com.google.android.material.R$color: int mtrl_tabs_icon_color_selector_colored -okhttp3.internal.http2.Header: okio.ByteString TARGET_METHOD -androidx.customview.R$styleable: int FontFamilyFont_fontWeight -com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_CompactMenu -com.google.android.material.R$styleable: int SwitchCompat_trackTint -com.jaredrummler.android.colorpicker.R$styleable: int RecycleListView_paddingBottomNoButtons -okhttp3.internal.connection.StreamAllocation: boolean released -wangdaye.com.geometricweather.R$id: int fragment_main -wangdaye.com.geometricweather.db.entities.HistoryEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.HistoryEntity) -com.turingtechnologies.materialscrollbar.R$string: int fab_transformation_scrim_behavior -androidx.vectordrawable.R$id: int accessibility_custom_action_24 -wangdaye.com.geometricweather.R$dimen: int abc_button_inset_vertical_material -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetEndWithActions -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: int UnitType -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ImageButton -okhttp3.internal.http.HttpHeaders: HttpHeaders() -androidx.constraintlayout.widget.R$string: int abc_capital_on -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_placeholder_content -androidx.viewpager.widget.ViewPager: androidx.viewpager.widget.PagerAdapter getAdapter() -okhttp3.ConnectionPool$1: void run() -cyanogenmod.providers.CMSettings$Global: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) -com.google.android.material.R$string: int path_password_eye_mask_strike_through -io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,int) -androidx.dynamicanimation.R$dimen: int compat_control_corner_material -com.jaredrummler.android.colorpicker.R$id: int add -com.turingtechnologies.materialscrollbar.R$id: int transition_transform -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_motionProgress -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_hovered_z -androidx.appcompat.R$attr: int alpha -okhttp3.internal.http.HttpDate: java.lang.ThreadLocal STANDARD_DATE_FORMAT -okhttp3.Response$Builder: void checkSupportResponse(java.lang.String,okhttp3.Response) -cyanogenmod.weather.RequestInfo: java.lang.String access$302(cyanogenmod.weather.RequestInfo,java.lang.String) -com.google.android.material.R$color: int material_blue_grey_900 -androidx.constraintlayout.widget.R$id: int select_dialog_listview -androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedWidthMinor -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$1: long val$n -com.google.android.material.R$styleable: int AppCompatTheme_toolbarStyle -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void complete() -com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_alphabeticShortcut -com.xw.repo.bubbleseekbar.R$attr: int bsb_anim_duration -okhttp3.HttpUrl: java.lang.String encodedPassword() -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedUsername(java.lang.String) -wangdaye.com.geometricweather.R$attr: int cpv_animDuration -android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarStyle -androidx.core.R$id: int accessibility_custom_action_14 -io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onError(java.lang.Throwable) -james.adaptiveicon.R$drawable: int abc_textfield_search_activated_mtrl_alpha -androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse -androidx.preference.R$styleable: int AppCompatTheme_actionModeCloseDrawable -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -com.jaredrummler.android.colorpicker.R$attr: int radioButtonStyle -cyanogenmod.app.StatusBarPanelCustomTile: int getInitialPid() -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy -androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context,android.util.AttributeSet) -androidx.lifecycle.LifecycleRegistry: void addObserver(androidx.lifecycle.LifecycleObserver) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_lastVerticalStyle -androidx.preference.R$drawable: int btn_radio_on_to_off_mtrl_animation -androidx.preference.R$id: int action_bar_activity_content -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.util.Date LocalObservationDateTime -androidx.lifecycle.ViewModelProvider$OnRequeryFactory: ViewModelProvider$OnRequeryFactory() -androidx.viewpager2.R$id: int right_side -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setStrokeColor(int) -androidx.transition.R$styleable: int[] GradientColor -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintCircle -wangdaye.com.geometricweather.R$dimen: int mtrl_switch_thumb_elevation -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_visible -wangdaye.com.geometricweather.R$styleable: int Slider_thumbRadius -androidx.dynamicanimation.R$styleable: R$styleable() -androidx.preference.R$id: int tag_screen_reader_focusable -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager -com.google.android.material.R$id: int easeIn -androidx.constraintlayout.widget.R$attr: int trackTint -cyanogenmod.weather.CMWeatherManager$RequestStatus -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner inner -androidx.appcompat.R$styleable: int ActionBar_contentInsetStartWithNavigation -androidx.core.widget.NestedScrollView: void setFillViewport(boolean) -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_active_item_max_width -com.turingtechnologies.materialscrollbar.R$styleable: int MenuView_preserveIconSpacing -cyanogenmod.hardware.ICMHardwareService: boolean writePersistentBytes(java.lang.String,byte[]) -androidx.viewpager.R$id: int text -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionBar -com.turingtechnologies.materialscrollbar.R$attr: int passwordToggleDrawable -retrofit2.adapter.rxjava2.Result: java.lang.Throwable error -com.turingtechnologies.materialscrollbar.R$id: int lastElement -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean getForecastDaily() -cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.CMTelephonyManager getInstance(android.content.Context) -androidx.appcompat.R$styleable: int Toolbar_android_gravity -okhttp3.Request$Builder: Request$Builder() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindDircEnd() -com.xw.repo.bubbleseekbar.R$attr: int srcCompat -com.jaredrummler.android.colorpicker.R$styleable: int[] ActivityChooserView -androidx.work.R$styleable: int GradientColor_android_centerX -androidx.appcompat.R$styleable: int ActionBar_contentInsetRight -androidx.appcompat.R$style: int Theme_AppCompat_Light_Dialog_Alert -okhttp3.internal.http2.Http2Writer: void dataFrame(int,byte,okio.Buffer,int) -com.google.android.material.R$id: int textinput_suffix_text -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getNumGammaControls -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.DragScrollBar: boolean getHide() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_windowActionBarOverlay -com.google.android.material.R$styleable: int MaterialAutoCompleteTextView_android_inputType -okhttp3.Interceptor$Chain: okhttp3.Request request() -james.adaptiveicon.R$attr: int logo -androidx.dynamicanimation.R$styleable: int[] GradientColor -james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_NoActionBar -com.jaredrummler.android.colorpicker.R$attr: int negativeButtonText -com.google.android.material.R$attr: int windowNoTitle -com.jaredrummler.android.colorpicker.R$attr: int contentDescription -com.tencent.bugly.BuglyStrategy: java.lang.Class j -androidx.vectordrawable.animated.R$id: int accessibility_custom_action_13 -androidx.lifecycle.SavedStateHandle: void validateValue(java.lang.Object) -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowNoTitle -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService get() -androidx.appcompat.widget.Toolbar: java.lang.CharSequence getTitle() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setId(java.lang.Long) -androidx.hilt.R$dimen -androidx.transition.R$styleable: int FontFamily_fontProviderQuery -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.subjects.UnicastSubject window -cyanogenmod.weather.CMWeatherManager: java.lang.String getActiveWeatherServiceProviderLabel() -com.google.android.material.chip.Chip: void setCheckedIconResource(int) -androidx.work.R$dimen: int notification_action_icon_size -com.turingtechnologies.materialscrollbar.R$id: int action_mode_close_button -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_ttcIndex -com.tencent.bugly.crashreport.crash.e: e(android.content.Context,com.tencent.bugly.crashreport.crash.b,com.tencent.bugly.crashreport.common.strategy.a,com.tencent.bugly.crashreport.common.info.a) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_80 -wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: double Dbz -james.adaptiveicon.R$styleable: int AlertDialog_buttonIconDimen -cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: java.lang.String getInterfaceDescriptor() -wangdaye.com.geometricweather.R$id: int beginning -androidx.preference.R$styleable: int AppCompatTheme_spinnerStyle -androidx.preference.R$integer: int status_bar_notification_info_maxnum -wangdaye.com.geometricweather.R$color: int darkPrimary_3 -androidx.preference.R$color: int ripple_material_dark -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog -com.jaredrummler.android.colorpicker.R$attr: int editTextStyle -okhttp3.internal.connection.StreamAllocation: okhttp3.internal.connection.RealConnection connection -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.CMHardwareManager sCMHardwareManagerInstance -com.autonavi.aps.amapapi.model.AMapLocationServer: org.json.JSONObject f() -okhttp3.internal.platform.AndroidPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) -com.turingtechnologies.materialscrollbar.R$attr: int titleTextColor -android.didikee.donate.R$styleable: int ButtonBarLayout_allowStacking -wangdaye.com.geometricweather.R$string: int feedback_add_location_manually -wangdaye.com.geometricweather.R$integer: int cpv_default_max_progress -io.reactivex.internal.operators.observable.ObservableBuffer$BufferSkipObserver: java.util.concurrent.Callable bufferSupplier -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_left_mtrl_light -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_title -androidx.preference.R$style: int Base_V7_Theme_AppCompat -android.didikee.donate.R$id: int search_voice_btn -okhttp3.internal.http2.Http2Codec: okhttp3.internal.connection.StreamAllocation streamAllocation -androidx.preference.R$style: int Widget_AppCompat_ListPopupWindow -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$DefenseBean: void setDefenseIcon(java.lang.String) -cyanogenmod.weather.WeatherInfo: double mTodaysHighTemp -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Bridge -com.tencent.bugly.crashreport.common.info.b: java.lang.String[] b -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric -wangdaye.com.geometricweather.R$attr: int staggered -androidx.appcompat.widget.AppCompatSpinner: java.lang.CharSequence getPrompt() -androidx.appcompat.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -com.turingtechnologies.materialscrollbar.R$layout: int abc_popup_menu_header_item_layout -wangdaye.com.geometricweather.R$attr: int bottom_text_color -com.google.android.gms.internal.location.zzbg -androidx.lifecycle.LiveData -androidx.appcompat.R$styleable: int AppCompatTheme_editTextColor -wangdaye.com.geometricweather.R$drawable: int abc_ic_star_black_48dp -com.jaredrummler.android.colorpicker.R$id: int search_src_text -com.google.android.material.R$attr: int colorOnPrimary -com.google.android.gms.base.R$string: R$string() -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabTextAppearance -androidx.preference.R$attr: int actionBarTabStyle -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.ObservableSource first -androidx.appcompat.R$styleable: int[] TextAppearance -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: java.lang.String getDesc() -okhttp3.internal.platform.OptionalMethod: java.lang.Class returnType -cyanogenmod.app.Profile$ProfileTrigger$1: java.lang.Object createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$id: int ragweedTitle -androidx.constraintlayout.widget.R$bool: int abc_config_actionMenuItemAllCaps -androidx.lifecycle.ProcessLifecycleOwner: void dispatchStopIfNeeded() -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_activityChooserViewStyle -io.reactivex.Observable: io.reactivex.Observable switchOnNextDelayError(io.reactivex.ObservableSource,int) -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layoutDescription -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_ActionBar -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String en_US -wangdaye.com.geometricweather.R$attr: int progress_color -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixTextAppearance -wangdaye.com.geometricweather.R$string: int character_counter_overflowed_content_description -wangdaye.com.geometricweather.R$dimen: int material_cursor_width -retrofit2.Utils: boolean isAnnotationPresent(java.lang.annotation.Annotation[],java.lang.Class) -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setVisibility(java.lang.Float) -com.google.android.material.R$id: int dragUp -androidx.appcompat.R$styleable: int AppCompatTheme_actionModePasteDrawable -com.bumptech.glide.integration.okhttp.R$attr: int alpha -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_title_divider_material -okhttp3.internal.http.RealInterceptorChain: okhttp3.Connection connection() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric: java.lang.String Unit -com.github.rahatarmanahmed.cpv.CircularProgressView$8: CircularProgressView$8(com.github.rahatarmanahmed.cpv.CircularProgressView,float,float) -wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator$SavedState -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain: java.lang.Float cumul24H -androidx.constraintlayout.widget.R$id: int action_mode_bar -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_maxHeight -io.reactivex.internal.util.VolatileSizeArrayList: java.util.Iterator iterator() -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: void setLatitude(java.lang.String) -com.turingtechnologies.materialscrollbar.R$dimen: int highlight_alpha_material_dark -com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleTintMode(android.graphics.PorterDuff$Mode) -androidx.work.R$id: int blocking -cyanogenmod.weather.WeatherInfo$DayForecast$Builder -com.tencent.bugly.crashreport.common.info.b: int u() -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: io.reactivex.Scheduler$Worker worker -androidx.customview.R$styleable: int GradientColorItem_android_color -wangdaye.com.geometricweather.R$attr: int fastScrollVerticalThumbDrawable -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemHeightLarge -com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy valueOf(java.lang.String) -com.jaredrummler.android.colorpicker.R$color: int highlighted_text_material_dark -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -android.didikee.donate.R$color: int material_deep_teal_500 +cyanogenmod.externalviews.KeyguardExternalView$1: void onServiceConnected(android.content.ComponentName,android.os.IBinder) +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void subscribeNext() +wangdaye.com.geometricweather.background.polling.permanent.observer.FakeForegroundService +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator VOLUME_KEYS_CONTROL_RING_STREAM_VALIDATOR +com.google.android.gms.common.SignInButton: void setColorScheme(int) +androidx.hilt.R$style: int TextAppearance_Compat_Notification_Time +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean checkTerminate() +io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +androidx.activity.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.R$styleable: int RoundCornerTransition_radius_from +wangdaye.com.geometricweather.R$id: int glide_custom_view_target_tag +com.google.android.material.R$color: int design_dark_default_color_on_primary +wangdaye.com.geometricweather.R$attr: int materialCalendarDay +wangdaye.com.geometricweather.R$string: int feedback_ignore_battery_optimizations_title +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_rotationY +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void onError(java.lang.Throwable) +androidx.appcompat.R$attr: int indeterminateProgressStyle +retrofit2.Response: java.lang.Object body +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_second_track_size +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void drain() +wangdaye.com.geometricweather.R$layout: int widget_clock_day_tile +com.google.android.material.R$styleable: int TextAppearance_android_typeface +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_marginBottom +androidx.appcompat.R$attr: int spinBars +androidx.preference.R$id: int action_menu_presenter +com.jaredrummler.android.colorpicker.R$style: int Base_V26_Theme_AppCompat +cyanogenmod.app.ThemeVersion$ComponentVersion: java.lang.String name +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_voice_search_api_material +wangdaye.com.geometricweather.R$attr: int msb_handleColor +cyanogenmod.externalviews.IExternalViewProvider: void onResume() +wangdaye.com.geometricweather.search.Hilt_SearchActivity: Hilt_SearchActivity() +androidx.dynamicanimation.R$attr: int fontStyle +okhttp3.Cache: void flush() +cyanogenmod.providers.CMSettings$System: int getInt(android.content.ContentResolver,java.lang.String) +androidx.constraintlayout.widget.R$styleable: int MotionLayout_currentState +cyanogenmod.themes.ThemeManager$1$1 +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: void dispose() +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_rotation +wangdaye.com.geometricweather.R$animator: int mtrl_fab_show_motion_spec +com.google.android.material.R$styleable: int Layout_layout_constraintLeft_creator +androidx.customview.R$dimen: int compat_notification_large_icon_max_height +com.google.android.material.chip.Chip: void setChipDrawable(com.google.android.material.chip.ChipDrawable) +android.didikee.donate.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.google.android.material.R$styleable: int SnackbarLayout_backgroundTintMode +retrofit2.Retrofit: okhttp3.HttpUrl baseUrl +cyanogenmod.themes.ThemeManager$2$1: java.lang.String val$pkgName +com.tencent.bugly.crashreport.biz.UserInfoBean: int o +okio.Okio$3: void write(okio.Buffer,long) +james.adaptiveicon.R$color: int abc_color_highlight_material +okhttp3.internal.ws.RealWebSocket$2: void onFailure(okhttp3.Call,java.io.IOException) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean getImages() +com.xw.repo.bubbleseekbar.R$layout: int select_dialog_singlechoice_material +cyanogenmod.app.CustomTileListenerService: boolean isBound() +androidx.appcompat.widget.Toolbar: android.graphics.drawable.Drawable getOverflowIcon() +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintGuide_begin +com.tencent.bugly.CrashModule: void onServerStrategyChanged(com.tencent.bugly.crashreport.common.strategy.StrategyBean) +androidx.viewpager2.R$id: int accessibility_action_clickable_span +cyanogenmod.app.ProfileManager: cyanogenmod.app.ProfileGroup getActiveProfileGroup(java.lang.String) +com.tencent.bugly.crashreport.BuglyHintException: BuglyHintException(java.lang.String) +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_corner_radius +com.tencent.bugly.proguard.j: void a(short,int) +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_menu_header_material +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language PORTUGUESE_BR +androidx.appcompat.R$color: int dim_foreground_disabled_material_light +com.google.android.material.R$color: int mtrl_choice_chip_text_color +androidx.preference.R$styleable: int[] ViewStubCompat +com.google.android.material.R$dimen: int mtrl_large_touch_target +com.bumptech.glide.integration.okhttp.R$id: int chronometer +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceListItemSmall +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_19 +androidx.appcompat.R$dimen: int compat_notification_large_icon_max_width +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_CLOCK_VALIDATOR +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat +cyanogenmod.app.BaseLiveLockManagerService$1: BaseLiveLockManagerService$1(cyanogenmod.app.BaseLiveLockManagerService) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDaylight(boolean) +androidx.viewpager2.widget.ViewPager2: void setPageTransformer(androidx.viewpager2.widget.ViewPager2$PageTransformer) +wangdaye.com.geometricweather.R$styleable: int[] ImageFilterView +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +com.amap.api.fence.GeoFence: int ERROR_NO_VALIDFENCE +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeMaxTextSize +okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.internal.cache.CacheStrategy getCandidate() +androidx.constraintlayout.widget.R$id: int topPanel +james.adaptiveicon.R$color: int material_blue_grey_950 +com.amap.api.fence.DistrictItem$1: java.lang.Object[] newArray(int) +androidx.work.impl.utils.futures.DirectExecutor: androidx.work.impl.utils.futures.DirectExecutor INSTANCE +wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_focused_alpha +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_fontVariationSettings +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Bridge +com.jaredrummler.android.colorpicker.R$attr: int splitTrack +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_ratingBarStyleIndicator +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_left_mtrl_dark +com.google.android.material.R$styleable: int MaterialAlertDialog_backgroundInsetTop +androidx.constraintlayout.widget.R$styleable: int Variant_region_heightLessThan +cyanogenmod.externalviews.ExternalView: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) +androidx.preference.R$styleable: int AppCompatTextView_drawableBottomCompat +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getDailyForecast() +com.google.android.material.R$id: int scrollView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String MobileLink +wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context,android.util.AttributeSet) +androidx.viewpager.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.R$id: int mini +com.tencent.bugly.proguard.am: java.lang.String t +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_MaterialCalendar_Year +com.amap.api.location.AMapLocationClientOption: java.lang.String toString() +com.jaredrummler.android.colorpicker.R$style: int PreferenceThemeOverlay_v14_Material +wangdaye.com.geometricweather.R$color: int mtrl_card_view_ripple +androidx.appcompat.R$attr: int color +androidx.preference.R$styleable: int DialogPreference_positiveButtonText +androidx.lifecycle.extensions.R$style: int Widget_Compat_NotificationActionText +okhttp3.Response: okhttp3.CacheControl cacheControl() +io.reactivex.subjects.PublishSubject$PublishDisposable: io.reactivex.subjects.PublishSubject parent +androidx.lifecycle.extensions.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial() +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber: void request(long) +com.google.android.material.R$id: int accessibility_action_clickable_span +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Display2 +cyanogenmod.themes.IThemeProcessingListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: AccuDailyResult$DailyForecasts$Night$WindGust$Speed() +android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceBackgroundIndicator +cyanogenmod.weather.RequestInfo: boolean mIsQueryOnly +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: java.lang.String Name +androidx.preference.R$color: int tooltip_background_light +androidx.vectordrawable.R$id: int action_image +io.reactivex.internal.schedulers.AbstractDirectTask: java.util.concurrent.FutureTask DISPOSED +com.jaredrummler.android.colorpicker.R$layout: int notification_template_part_chronometer +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_android_textAppearance +wangdaye.com.geometricweather.R$styleable: int KeyCycle_transitionPathRotate +android.didikee.donate.R$layout: int abc_screen_simple_overlay_action_mode +com.jaredrummler.android.colorpicker.ColorPickerView: int getPaddingLeft() +androidx.transition.R$color: R$color() +cyanogenmod.profiles.LockSettings$1: java.lang.Object[] newArray(int) +androidx.preference.R$style: int Theme_AppCompat_DayNight_Dialog +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: double HoursOfSnow +androidx.lifecycle.R +androidx.preference.R$style: int ThemeOverlay_AppCompat_Light +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$attr: int constraint_referenced_ids +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum +com.tencent.bugly.crashreport.common.info.a: long Q() +com.google.android.material.R$style: int Widget_AppCompat_Light_SearchView +okhttp3.internal.ws.WebSocketProtocol: int OPCODE_FLAG_CONTROL +com.google.android.material.R$dimen: int mtrl_btn_disabled_z +retrofit2.Utils$ParameterizedTypeImpl: Utils$ParameterizedTypeImpl(java.lang.reflect.Type,java.lang.reflect.Type,java.lang.reflect.Type[]) +retrofit2.RequestFactory: java.lang.String relativeUrl +com.google.android.material.R$styleable: int OnSwipe_maxAcceleration +androidx.preference.R$styleable: int SearchView_voiceIcon +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast +androidx.preference.R$id: int select_dialog_listview +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: androidx.coordinatorlayout.widget.CoordinatorLayout$Behavior getBehavior() +com.google.android.material.R$string: int material_timepicker_pm +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +androidx.constraintlayout.widget.R$attr: int queryBackground +cyanogenmod.power.PerformanceManager: void cpuBoost(int) +okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_FIN +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +okio.ByteString: boolean rangeEquals(int,okio.ByteString,int,int) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getNo2() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonRiseDate(java.util.Date) +com.google.android.material.navigation.NavigationView: android.content.res.ColorStateList getItemIconTintList() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Today +okhttp3.internal.cache2.Relay: boolean isClosed() +retrofit2.adapter.rxjava2.CallEnqueueObservable$CallCallback: void dispose() +com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.ag a(int) +wangdaye.com.geometricweather.R$attr: int textAppearanceButton +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_AES_128_CBC_SHA io.reactivex.internal.observers.DeferredScalarObserver: void onError(java.lang.Throwable) -wangdaye.com.geometricweather.R$string: int week_4 -james.adaptiveicon.R$attr: int textAppearanceSmallPopupMenu -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintBottom_creator -androidx.constraintlayout.widget.R$styleable: int ButtonBarLayout_allowStacking -cyanogenmod.providers.CMSettings$Secure: java.lang.String RECENTS_LONG_PRESS_ACTIVITY -androidx.preference.R$attr: int colorControlActivated -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dialog -cyanogenmod.app.IProfileManager: boolean setActiveProfile(android.os.ParcelUuid) -com.google.android.gms.common.server.response.zal -com.tencent.bugly.proguard.an: void a(com.tencent.bugly.proguard.i) -com.jaredrummler.android.colorpicker.R$id: int action_bar -io.reactivex.Observable: io.reactivex.Single all(io.reactivex.functions.Predicate) -james.adaptiveicon.R$attr: int elevation -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: Hourly(java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,wangdaye.com.geometricweather.common.basic.models.weather.Temperature,wangdaye.com.geometricweather.common.basic.models.weather.Precipitation,wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setLogo(java.lang.String) -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -com.jaredrummler.android.colorpicker.R$styleable: int FontFamilyFont_ttcIndex -wangdaye.com.geometricweather.db.entities.LocationEntity: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource weatherSource -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_viewInflaterClass -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -wangdaye.com.geometricweather.db.entities.LocationEntity -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar_PrimarySurface -cyanogenmod.externalviews.KeyguardExternalView$11: float val$swipeProgress -com.google.android.material.R$style: int Base_Theme_MaterialComponents_Dialog_Bridge -androidx.preference.R$styleable: int Toolbar_android_gravity -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningMaxCountItems: java.lang.String textCount -wangdaye.com.geometricweather.R$styleable: int PopupWindow_overlapAnchor -androidx.lifecycle.ComputableLiveData$2: void run() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizeStepGranularity -okhttp3.Call: void cancel() -wangdaye.com.geometricweather.R$string: int get_more -wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWeekWidgetConfigActivity -okhttp3.internal.ws.RealWebSocket$2: okhttp3.internal.ws.RealWebSocket this$0 -wangdaye.com.geometricweather.R$styleable: int KeyAttribute_framePosition -com.google.android.material.textfield.TextInputLayout: void setCounterOverflowTextColor(android.content.res.ColorStateList) -android.didikee.donate.R$attr: int suggestionRowLayout -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -wangdaye.com.geometricweather.R$bool -androidx.appcompat.resources.R$styleable: int[] FontFamily -okhttp3.EventListener: void requestBodyEnd(okhttp3.Call,long) -androidx.preference.R$styleable: int FontFamily_fontProviderCerts -okhttp3.MultipartBody: okhttp3.MediaType ALTERNATIVE -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnwd -com.amap.api.location.AMapLocation: java.lang.String i(com.amap.api.location.AMapLocation,java.lang.String) -com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_normal -androidx.constraintlayout.motion.widget.MotionHelper: MotionHelper(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$styleable: int ActionBar_contentInsetLeft -com.google.android.material.R$styleable: int AnimatedStateListDrawableItem_android_id -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setBrandInfo(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX) -retrofit2.Platform: java.lang.reflect.Constructor lookupConstructor -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Snow snow -okhttp3.HttpUrl: int defaultPort(java.lang.String) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem -wangdaye.com.geometricweather.R$styleable: int Chip_shapeAppearanceOverlay -retrofit2.RequestFactory$Builder: java.lang.String httpMethod -androidx.dynamicanimation.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$styleable: int[] BottomNavigationView -com.xw.repo.bubbleseekbar.R$dimen: int highlight_alpha_material_dark -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator ENABLE_FORWARD_LOOKUP_VALIDATOR -com.google.android.material.internal.NavigationMenuView: NavigationMenuView(android.content.Context) -retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.util.concurrent.CompletableFuture adapt(retrofit2.Call) -androidx.constraintlayout.widget.R$id: int square -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterEnabled -androidx.preference.R$styleable: int Preference_layout -androidx.preference.R$dimen: int abc_text_size_display_4_material -androidx.constraintlayout.widget.R$id: int right -com.google.android.material.R$id: int test_checkbox_app_button_tint -com.jaredrummler.android.colorpicker.R$styleable: int RecycleListView_paddingTopNoTitle -androidx.core.R$id: int italic -retrofit2.HttpException: java.lang.String getMessage(retrofit2.Response) -com.github.rahatarmanahmed.cpv.CircularProgressView: void onMeasure(int,int) -com.google.android.material.tabs.TabLayout: int getTabGravity() -com.xw.repo.bubbleseekbar.R$color: int button_material_light -okhttp3.logging.HttpLoggingInterceptor: HttpLoggingInterceptor() -com.turingtechnologies.materialscrollbar.MaterialScrollBar: MaterialScrollBar(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric Metric -androidx.constraintlayout.helper.widget.Layer: void setTranslationY(float) -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void dispose() -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxStrokeWidthFocused -com.turingtechnologies.materialscrollbar.R$attr: int ttcIndex -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean appendNativeLog(java.lang.String,java.lang.String,java.lang.String) -com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_singleChoiceItemLayout -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_autoSizePresetSizes -com.google.android.material.slider.RangeSlider: void setValueFrom(float) -androidx.dynamicanimation.R$attr: int fontProviderFetchTimeout -com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textFontWeight -wangdaye.com.geometricweather.R$color: int colorRoot_light -com.turingtechnologies.materialscrollbar.MaterialScrollBar: boolean getHide() -com.amap.api.fence.DistrictItem$1: java.lang.Object createFromParcel(android.os.Parcel) -cyanogenmod.app.ProfileManager: void setActiveProfile(java.util.UUID) -cyanogenmod.externalviews.KeyguardExternalView$3: int val$height -wangdaye.com.geometricweather.R$attr: int coordinatorLayoutStyle -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int bufferSize -androidx.customview.R$style: int TextAppearance_Compat_Notification_Title -james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Light -androidx.appcompat.R$attr: int drawerArrowStyle -com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_disable_only_material_dark -retrofit2.ParameterHandler$Header: ParameterHandler$Header(java.lang.String,retrofit2.Converter) -com.amap.api.location.UmidtokenInfo: boolean c -james.adaptiveicon.R$styleable: int Toolbar_buttonGravity -wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setPostfixString(java.lang.String) -com.google.android.material.R$styleable: int Chip_closeIconStartPadding -wangdaye.com.geometricweather.R$id: int activity_card_display_manage_bottomBar -com.xw.repo.bubbleseekbar.R$attr: int buttonIconDimen -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeMaxTextSize -com.tencent.bugly.proguard.ap: int i -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ButtonBar -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_1 -wangdaye.com.geometricweather.R$id: int touch_outside -wangdaye.com.geometricweather.R$id: int action_about -io.reactivex.Observable: io.reactivex.Maybe firstElement() -wangdaye.com.geometricweather.R$layout: int container_main_pollen -androidx.fragment.R$id: int action_container -androidx.core.R$id: int accessibility_custom_action_11 -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitationDuration(java.lang.Float) -com.google.android.material.timepicker.TimePickerView: void setOnActionUpListener(com.google.android.material.timepicker.ClockHandView$OnActionUpListener) -io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver -androidx.lifecycle.SavedStateHandleController$OnRecreation -retrofit2.RequestFactory: boolean isFormEncoded -com.tencent.bugly.crashreport.crash.jni.b: java.lang.String c(java.lang.String,java.lang.String) -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: io.reactivex.internal.queue.SpscLinkedArrayQueue getOrCreateQueue() -com.google.android.material.R$attr: int textAppearanceButton -wangdaye.com.geometricweather.R$attr: int layout_constraintStart_toStartOf -cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_cancelRequest -com.jaredrummler.android.colorpicker.R$styleable: int[] MenuView -cyanogenmod.externalviews.ExternalView$6 +androidx.customview.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$styleable: int ActionBar_height +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +androidx.vectordrawable.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.R$drawable: int weather_sleet_pixel +com.google.android.material.R$styleable: int[] Motion +wangdaye.com.geometricweather.common.basic.models.weather.History: int daytimeTemperature +androidx.appcompat.resources.R$drawable: int notify_panel_notification_icon_bg +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_display_2_material +io.reactivex.Observable: io.reactivex.Observable fromIterable(java.lang.Iterable) +retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_numericShortcut +androidx.preference.DialogPreference +androidx.transition.R$id: int text2 +com.baidu.location.indoor.mapversion.c.c$b: double c +cyanogenmod.providers.ThemesContract$ThemesColumns +wangdaye.com.geometricweather.R$styleable: int Chip_ensureMinTouchTargetSize +cyanogenmod.app.Profile$ProfileTrigger$1: cyanogenmod.app.Profile$ProfileTrigger createFromParcel(android.os.Parcel) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Headline +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int itemIconPadding +com.google.android.material.R$attr: int textLocale +okhttp3.internal.cache.DiskLruCache$Editor: boolean done +cyanogenmod.platform.Manifest$permission: java.lang.String OBSERVE_AUDIO_SESSIONS +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder name(java.lang.String) +androidx.transition.R$attr: int fontVariationSettings +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Medium_Inverse +wangdaye.com.geometricweather.R$id: int reverseSawtooth +wangdaye.com.geometricweather.R$layout: int container_snackbar +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getScaleY() +androidx.appcompat.R$drawable: int abc_ab_share_pack_mtrl_alpha +com.google.android.material.theme.MaterialComponentsViewInflater +com.google.android.material.R$styleable: int Toolbar_android_minHeight +androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_backgroundTint +wangdaye.com.geometricweather.R$dimen: int mtrl_high_ripple_pressed_alpha +okhttp3.Handshake: okhttp3.CipherSuite cipherSuite() +james.adaptiveicon.R$dimen: int abc_cascading_menus_min_smallest_width +com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_dialogTitle +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY +com.tencent.bugly.crashreport.crash.e: boolean g +com.google.android.material.R$layout: int mtrl_layout_snackbar_include +okio.ByteString: java.lang.String utf8 +com.google.android.gms.location.LocationSettingsRequest +io.reactivex.internal.observers.DeferredScalarObserver: void dispose() +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_bubble_text_size +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_buttonGravity com.google.android.material.circularreveal.CircularRevealLinearLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() -android.didikee.donate.R$color: int abc_search_url_text_normal -androidx.swiperefreshlayout.R$dimen: int notification_large_icon_width -com.google.android.material.R$styleable: int MenuItem_android_alphabeticShortcut -androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle -androidx.constraintlayout.widget.R$styleable: int AppCompatImageView_android_src -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_64 -okhttp3.internal.http1.Http1Codec$ChunkedSink: void close() -wangdaye.com.geometricweather.R$drawable: int abc_scrubber_track_mtrl_alpha +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getDate() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRealFeelShaderTemperature(java.lang.Integer) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActivityChooserView +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: int hashCode() +com.google.android.material.circularreveal.cardview.CircularRevealCardView: com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo getRevealInfo() +org.greenrobot.greendao.AbstractDaoMaster: void registerDaoClass(java.lang.Class) +android.didikee.donate.R$id: int search_mag_icon +com.turingtechnologies.materialscrollbar.R$attr: int liftOnScroll +com.google.android.material.R$styleable: int ActionMode_height +com.turingtechnologies.materialscrollbar.R$styleable: int[] ColorStateListItem +com.google.android.material.R$layout: int mtrl_picker_text_input_date +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol j +com.google.android.material.R$style: int Base_Theme_MaterialComponents_DialogWhenLarge +io.reactivex.Observable: io.reactivex.Observable concatDelayError(io.reactivex.ObservableSource) +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarButtonStyle +wangdaye.com.geometricweather.R$interpolator: int fast_out_slow_in +androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_top_material +com.google.android.material.R$id: int textinput_helper_text +james.adaptiveicon.R$styleable: int MenuItem_iconTintMode +androidx.appcompat.view.menu.MenuPopup: void setOnDismissListener(android.widget.PopupWindow$OnDismissListener) +androidx.appcompat.resources.R$attr: int alpha +androidx.recyclerview.R$styleable: int RecyclerView_android_clipToPadding +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintVertical_chainStyle +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection$Builder socket(java.net.Socket,java.lang.String,okio.BufferedSource,okio.BufferedSink) +cyanogenmod.profiles.LockSettings: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$anim: int fragment_main_pop_enter +cyanogenmod.app.ILiveLockScreenManagerProvider: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +com.tencent.bugly.proguard.ah: ah() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onLockscreenSlideOffsetChanged +androidx.lifecycle.LifecycleRegistry: boolean mHandlingEvent +okhttp3.internal.tls.DistinguishedNameParser +okhttp3.HttpUrl$Builder: int portColonOffset(java.lang.String,int,int) +wangdaye.com.geometricweather.remoteviews.config.DayWeekWidgetConfigActivity +com.google.android.material.navigation.NavigationView: void setElevation(float) +androidx.constraintlayout.widget.R$id: int action_bar_spinner +cyanogenmod.app.suggest.IAppSuggestManager$Stub$Proxy: boolean handles(android.content.Intent) +com.turingtechnologies.materialscrollbar.R$attr: int paddingTopNoTitle +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getDewPoint() +okhttp3.internal.http2.Http2Reader$ContinuationSource: int streamId +com.jaredrummler.android.colorpicker.R$style: int Platform_AppCompat_Light +androidx.constraintlayout.widget.R$styleable: int MotionHelper_onHide +androidx.constraintlayout.widget.R$attr: int touchAnchorId +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseMode +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,okio.ByteString) +androidx.vectordrawable.animated.R$id: int action_divider +com.bumptech.glide.R$attr: int fontProviderPackage +cyanogenmod.app.suggest.AppSuggestManager +okhttp3.internal.http2.Http2Stream$FramingSink +com.google.android.material.appbar.CollapsingToolbarLayout: void setCollapsedTitleTypeface(android.graphics.Typeface) +androidx.preference.Preference: void setOnPreferenceChangeInternalListener(androidx.preference.Preference$OnPreferenceChangeInternalListener) +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.transition.R$drawable: int notification_bg_normal_pressed +androidx.legacy.coreutils.R$layout: int notification_template_icon_group +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: android.content.Context b(com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat +androidx.activity.OnBackPressedDispatcher$LifecycleOnBackPressedCancellable +androidx.appcompat.R$style: int ThemeOverlay_AppCompat +cyanogenmod.alarmclock.CyanogenModAlarmClock: java.lang.String WRITE_ALARMS_PERMISSION +wangdaye.com.geometricweather.R$attr: int cpv_borderColor +com.amap.api.location.AMapLocationQualityReport: int c +wangdaye.com.geometricweather.R$drawable: int ic_play_store +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float co +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_id +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActivityChooserView +com.google.android.material.R$style: int Platform_MaterialComponents_Dialog +androidx.dynamicanimation.R$styleable: int GradientColorItem_android_offset +james.adaptiveicon.R$dimen: int abc_text_size_menu_material +android.didikee.donate.R$dimen: int abc_action_bar_default_padding_start_material +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_android_textColor +androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowColor +wangdaye.com.geometricweather.R$id: int beginOnFirstDraw +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getNavBarThemePackageName() +com.amap.api.fence.PoiItem +com.jaredrummler.android.colorpicker.R$anim: int abc_slide_in_bottom +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPrimary(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customFloatValue +androidx.preference.R$drawable: int abc_dialog_material_background +io.reactivex.subjects.UnicastSubject$UnicastQueueDisposable: io.reactivex.subjects.UnicastSubject this$0 +com.jaredrummler.android.colorpicker.R$dimen +wangdaye.com.geometricweather.R$string: int material_timepicker_pm +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_CompoundButton_RadioButton +com.google.android.material.R$styleable: int Constraint_android_orientation +okhttp3.ResponseBody$1: long val$contentLength +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarStyle +com.google.android.material.R$style: int Base_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setPubTime(java.lang.String) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: long serialVersionUID +androidx.appcompat.R$styleable: int SearchView_goIcon +androidx.coordinatorlayout.R$styleable: int ColorStateListItem_android_alpha +com.jaredrummler.android.colorpicker.R$attr: int paddingBottomNoButtons +com.tencent.bugly.crashreport.CrashReport: void setUserSceneTag(android.content.Context,int) +com.xw.repo.bubbleseekbar.R$attr: int bsb_min +com.tencent.bugly.proguard.m: int compareTo(java.lang.Object) +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder encodedUsername(java.lang.String) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_PopupMenu +androidx.loader.R$drawable: int notification_bg_low_pressed +com.tencent.bugly.crashreport.biz.UserInfoBean: int describeContents() +androidx.appcompat.R$dimen: int notification_main_column_padding_top +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxStrokeWidthFocused +com.tencent.bugly.proguard.u: boolean d() +androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$attr: int scrimAnimationDuration +com.google.android.material.R$styleable: int AppCompatTextView_lineHeight +com.google.android.material.R$dimen: int mtrl_badge_horizontal_edge_offset +okio.RealBufferedSink$1: void write(int) +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType UpdateInTxArray +com.amap.api.location.AMapLocationClientOption: boolean isOpenAlwaysScanWifi() +androidx.lifecycle.extensions.R$id: int line1 +android.didikee.donate.R$dimen: int abc_text_size_display_4_material +wangdaye.com.geometricweather.R$string: int precipitation_probability +com.xw.repo.bubbleseekbar.R$styleable: int CompoundButton_buttonTintMode +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: MfHistoryResult$History$Temperature() +androidx.preference.R$style: int AlertDialog_AppCompat +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListView_DropDown +com.tencent.bugly.proguard.d: void b(java.lang.String) +androidx.appcompat.R$drawable: int abc_text_select_handle_middle_mtrl_light +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_tileMode +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItemSecondary +androidx.lifecycle.extensions.R$style +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property HourlyForecast +android.didikee.donate.R$attr: int customNavigationLayout +androidx.coordinatorlayout.R$dimen: int compat_notification_large_icon_max_height +com.turingtechnologies.materialscrollbar.R$dimen: int compat_notification_large_icon_max_width +android.didikee.donate.R$styleable: int TextAppearance_android_textStyle +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Time +androidx.drawerlayout.R$color: int notification_icon_bg_color +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Small_Inverse +com.google.android.material.R$attr: int mock_labelColor +cyanogenmod.app.ProfileManager: void resetAll() +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String zone +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cdp +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: java.lang.String toString() +android.didikee.donate.R$attr: int preserveIconSpacing +cyanogenmod.weather.WeatherInfo: boolean equals(java.lang.Object) +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: SingleToObservable$SingleToObservableObserver(io.reactivex.Observer) +androidx.appcompat.resources.R$dimen: int notification_right_icon_size +com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_title_material +androidx.constraintlayout.widget.R$id: int triangle +wangdaye.com.geometricweather.R$layout: int abc_search_dropdown_item_icons_2line +io.reactivex.internal.util.AtomicThrowable: long serialVersionUID +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.RequestBody) +com.turingtechnologies.materialscrollbar.R$attr: int dropDownListViewStyle +com.google.android.material.button.MaterialButton: void setRippleColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitation +okhttp3.CipherSuite$1: int compare(java.lang.Object,java.lang.Object) +com.google.android.material.R$attr: int indeterminateProgressStyle +com.bumptech.glide.load.engine.GlideException: java.util.List getCauses() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onKeyguardDismissed() +com.tencent.bugly.nativecrashreport.R$string: R$string() +com.tencent.bugly.crashreport.BuglyLog: void setCache(int) +com.turingtechnologies.materialscrollbar.R$attr: int errorTextAppearance +com.google.android.material.R$styleable: int AppCompatTheme_colorControlHighlight +androidx.preference.DialogPreference: DialogPreference(android.content.Context,android.util.AttributeSet) +okio.Buffer: okio.Buffer writeLongLe(long) +com.turingtechnologies.materialscrollbar.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_icon_padding +com.google.android.material.R$layout: int abc_activity_chooser_view +okhttp3.internal.connection.RouteSelector: okhttp3.Call call +wangdaye.com.geometricweather.R$attr: int iconResEnd +com.google.android.material.R$string: int mtrl_picker_range_header_selected +com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.proguard.aj a(java.lang.String,android.content.Context,java.lang.String) +android.didikee.donate.R$attr: int elevation +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Snow: AccuDailyResult$DailyForecasts$Night$Snow() +wangdaye.com.geometricweather.R$attr: int appBarLayoutStyle +androidx.preference.R$drawable: int abc_btn_check_material +com.bumptech.glide.integration.okhttp.R$dimen: R$dimen() +cyanogenmod.alarmclock.ClockContract$AlarmsColumns: android.net.Uri CONTENT_URI +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWeatherText +androidx.appcompat.resources.R$id: int action_image +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int CloudCover +android.didikee.donate.R$color: int abc_tint_edittext +wangdaye.com.geometricweather.R$style: int Animation_Design_BottomSheetDialog +com.turingtechnologies.materialscrollbar.R$attr: int navigationMode +com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.b p +com.turingtechnologies.materialscrollbar.R$attr: int contentDescription +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_256_CBC_SHA +com.google.android.gms.common.internal.zaw: android.os.Parcelable$Creator CREATOR +james.adaptiveicon.R$attr: int actionModeShareDrawable +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean requestDismiss() +io.reactivex.internal.observers.BasicIntQueueDisposable: boolean offer(java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setStreet_number(java.lang.String) +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void clear() +wangdaye.com.geometricweather.R$attr: int contentInsetLeft +android.didikee.donate.R$drawable: int abc_list_pressed_holo_light +android.didikee.donate.R$style: int Widget_AppCompat_ProgressBar +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Large +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_show_section_mark +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.Function leftEnd +com.google.android.material.R$drawable: int mtrl_dropdown_arrow +com.tencent.bugly.proguard.u: boolean c(com.tencent.bugly.proguard.u) +com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_radio +james.adaptiveicon.R$dimen: int abc_alert_dialog_button_bar_height +io.reactivex.exceptions.CompositeException$CompositeExceptionCausalChain: java.lang.String MESSAGE +androidx.appcompat.R$attr: int colorSwitchThumbNormal +androidx.preference.R$id: int tag_accessibility_clickable_spans +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Body1 +james.adaptiveicon.R$attr: int controlBackground +com.tencent.bugly.proguard.ah +okhttp3.internal.ws.WebSocketReader: void readMessageFrame() +androidx.core.R$drawable: int notification_bg_low_normal +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_clear +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeSelectAllDrawable +androidx.preference.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +com.tencent.bugly.proguard.u: void a(int,com.tencent.bugly.proguard.an) +com.turingtechnologies.materialscrollbar.MaterialScrollBar: MaterialScrollBar(android.content.Context,android.util.AttributeSet) +james.adaptiveicon.R$string: int search_menu_title +wangdaye.com.geometricweather.R$layout: int abc_screen_simple_overlay_action_mode +wangdaye.com.geometricweather.R$style: int Widget_Design_CollapsingToolbar +com.google.gson.stream.JsonReader: int PEEKED_NONE +com.jaredrummler.android.colorpicker.R$layout: int preference_information +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintEnd_toStartOf +androidx.fragment.R$anim: int fragment_open_exit +com.google.android.material.R$id: int stretch +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: MfForecastResult$Forecast$Wind() +wangdaye.com.geometricweather.R$color: int design_default_color_secondary_variant +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +com.jaredrummler.android.colorpicker.R$dimen: int abc_dialog_min_width_minor +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void disposeBoundary() +com.google.android.material.R$id: int snackbar_action +androidx.core.R$id: int text2 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getNighttimeRainPrecipitation() +com.google.android.material.chip.Chip: void setChipBackgroundColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$id: int container_main_hourly_trend_card_minutelyEndText +com.bumptech.glide.integration.okhttp.R$drawable +androidx.lifecycle.reactivestreams.R +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sBooleanValidator +com.turingtechnologies.materialscrollbar.R$string: int appbar_scrolling_view_behavior +cyanogenmod.externalviews.KeyguardExternalView$1: cyanogenmod.externalviews.KeyguardExternalView this$0 +com.google.android.material.datepicker.DateValidatorPointForward +androidx.customview.R$attr: int alpha +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void clear() +com.amap.api.location.AMapLocation: int C +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +james.adaptiveicon.R$attr: int colorControlActivated +androidx.preference.R$id: int line3 +androidx.appcompat.widget.ActivityChooserView: androidx.appcompat.widget.ActivityChooserModel getDataModel() +com.jaredrummler.android.colorpicker.R$drawable: int abc_text_cursor_material +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +com.google.android.material.button.MaterialButton: void setIconGravity(int) +wangdaye.com.geometricweather.R$integer: int cancel_button_image_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange Past12HourRange +com.jaredrummler.android.colorpicker.R$id: int action_mode_close_button +com.tencent.bugly.crashreport.a: boolean appendLogToNative(java.lang.String,java.lang.String,java.lang.String) +com.google.android.material.slider.BaseSlider: void setSeparationUnit(int) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoonPhaseDescription(java.lang.String) +okio.ForwardingTimeout: okio.Timeout clearDeadline() +okio.ByteString +com.google.android.material.R$id: int center +com.jaredrummler.android.colorpicker.R$attr: int fontProviderPackage +cyanogenmod.app.ThemeVersion$ThemeVersionImpl3 +androidx.lifecycle.LiveData$ObserverWrapper: void detachObserver() +com.google.android.material.R$styleable: int AppCompatTheme_selectableItemBackground +com.google.android.material.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +androidx.preference.R$style: int Base_Widget_AppCompat_ListView_Menu +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.db.entities.MinutelyEntity: MinutelyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer) +androidx.recyclerview.widget.StaggeredGridLayoutManager$LazySpanLookup$FullSpanItem: android.os.Parcelable$Creator CREATOR +okhttp3.internal.cache2.Relay$RelaySource: okhttp3.internal.cache2.FileOperator fileOperator +androidx.preference.R$styleable: int SwitchCompat_switchTextAppearance +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_normal +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setLastLocationLifeCycle(long) +androidx.lifecycle.SingleGeneratedAdapterObserver +cyanogenmod.app.CMContextConstants: java.lang.String CM_LIVE_LOCK_SCREEN_SERVICE +cyanogenmod.app.CustomTile$ExpandedListItem: CustomTile$ExpandedListItem() +com.turingtechnologies.materialscrollbar.R$interpolator: R$interpolator() +james.adaptiveicon.R$styleable: int SearchView_commitIcon +retrofit2.converter.gson.GsonConverterFactory: retrofit2.Converter requestBodyConverter(java.lang.reflect.Type,java.lang.annotation.Annotation[],java.lang.annotation.Annotation[],retrofit2.Retrofit) +com.turingtechnologies.materialscrollbar.CustomIndicator: int getTextSize() +io.reactivex.Observable: io.reactivex.Observable retry(long,io.reactivex.functions.Predicate) +wangdaye.com.geometricweather.R$drawable: int notif_temp_42 +androidx.viewpager.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$styleable: int View_theme +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: io.reactivex.Observer downstream +com.google.android.material.snackbar.SnackbarContentLayout +com.google.android.material.R$styleable: int Chip_checkedIconTint +wangdaye.com.geometricweather.R$attr: int chipGroupStyle +android.didikee.donate.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +okhttp3.CipherSuite: java.lang.String secondaryName(java.lang.String) +com.jaredrummler.android.colorpicker.R$id: int title_template +wangdaye.com.geometricweather.R$id: int item_weather_daily_astro_moonPhaseIcon +wangdaye.com.geometricweather.R$string: R$string() +cyanogenmod.themes.ThemeManager: void requestThemeChange(java.util.Map,boolean) +cyanogenmod.weather.IRequestInfoListener +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +androidx.lifecycle.extensions.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_only_start_selected +okhttp3.OkHttpClient: OkHttpClient(okhttp3.OkHttpClient$Builder) +okhttp3.Call: boolean isCanceled() +com.turingtechnologies.materialscrollbar.Handle +androidx.core.R$id: int tag_screen_reader_focusable +cyanogenmod.hardware.CMHardwareManager: boolean get(int) +com.amap.api.location.LocationManagerBase: void stopLocation() +com.google.android.material.slider.Slider: void setThumbElevationResource(int) +wangdaye.com.geometricweather.R$attr: int helperTextTextAppearance +wangdaye.com.geometricweather.R$id: int widget_clock_day_time +wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintWidth_default +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: void setZh_TW(java.lang.String) +wangdaye.com.geometricweather.background.polling.PollingUpdateHelper: void setOnPollingUpdateListener(wangdaye.com.geometricweather.background.polling.PollingUpdateHelper$OnPollingUpdateListener) +wangdaye.com.geometricweather.common.basic.models.weather.MoonPhase: java.lang.Integer angle +android.didikee.donate.R$color: int accent_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconTint +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum() +androidx.preference.R$styleable: int ActionBar_subtitle +com.jaredrummler.android.colorpicker.R$id: int action_text +com.google.android.gms.common.internal.ClientIdentity: android.os.Parcelable$Creator CREATOR +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_goIcon +okhttp3.internal.http2.Http2Connection$5: okhttp3.internal.http2.Http2Connection this$0 +retrofit2.converter.gson.GsonResponseBodyConverter: com.google.gson.TypeAdapter adapter +com.google.android.material.datepicker.CompositeDateValidator +cyanogenmod.themes.IThemeService$Stub$Proxy: long getLastThemeChangeTime() +cyanogenmod.hardware.ThermalListenerCallback +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean delayErrors +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: boolean hasValue +com.google.android.material.tabs.TabLayout: void setInlineLabel(boolean) +okhttp3.OkHttpClient$1: OkHttpClient$1() +com.amap.api.location.CoordinateConverter +androidx.constraintlayout.widget.R$id: int forever +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Long getId() +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: int phenomenonId +com.turingtechnologies.materialscrollbar.R$id: int mtrl_child_content_container +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min +com.tencent.bugly.crashreport.biz.b: long d() +james.adaptiveicon.R$attr: int listItemLayout +com.google.android.material.R$attr: int flow_wrapMode +androidx.constraintlayout.widget.R$drawable: int abc_ic_arrow_drop_right_black_24dp +com.tencent.bugly.proguard.v: java.lang.String m +androidx.appcompat.R$style: int Widget_AppCompat_SeekBar +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType NONE +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.legacy.coreutils.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_constraintSet +com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean m +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconSize +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: java.util.List night +com.tencent.bugly.crashreport.common.info.a: java.lang.String U +androidx.preference.Preference: void setOnPreferenceClickListener(androidx.preference.Preference$OnPreferenceClickListener) +android.didikee.donate.R$color: int abc_hint_foreground_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_passwordToggleTintMode +androidx.preference.R$styleable: int[] ButtonBarLayout +com.tencent.bugly.crashreport.crash.jni.b: java.lang.String a(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int PopupWindow_android_popupAnimationStyle +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_shadow_height +wangdaye.com.geometricweather.R$attr: int layout_constraintCircleRadius +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_DialogWhenLarge +retrofit2.RequestFactory$Builder: okhttp3.MediaType contentType +androidx.work.BackoffPolicy: androidx.work.BackoffPolicy valueOf(java.lang.String) +cyanogenmod.externalviews.ExternalViewProperties: android.view.View mView +wangdaye.com.geometricweather.R$attr: int fontWeight +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onBouncerShowing(boolean) +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_android_checkable +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: io.reactivex.MaybeSource other +com.xw.repo.bubbleseekbar.R$id: int text2 +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments: MfWarningsResult$WarningComments() +androidx.swiperefreshlayout.R$id: int notification_background +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +com.google.android.material.R$style: int Theme_MaterialComponents_Light_NoActionBar +io.reactivex.Observable: io.reactivex.Observable buffer(int,int) +cyanogenmod.providers.CMSettings$System$1 +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$ExpandedStyle mExpandedStyle +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +com.google.android.material.R$styleable: int TextInputLayout_startIconContentDescription +androidx.appcompat.widget.AppCompatSpinner: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1 +androidx.constraintlayout.widget.R$color: int secondary_text_disabled_material_light +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_als +androidx.preference.R$style: R$style() +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty6H +com.google.gson.stream.JsonScope: int EMPTY_DOCUMENT +android.didikee.donate.R$drawable: int abc_dialog_material_background +androidx.constraintlayout.widget.R$attr: int autoSizeMaxTextSize +androidx.loader.R$style: int TextAppearance_Compat_Notification_Time +wangdaye.com.geometricweather.R$attr: int searchHintIcon +androidx.viewpager2.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.R$drawable: int abc_textfield_activated_mtrl_alpha +wangdaye.com.geometricweather.R$attr: int materialAlertDialogTheme +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motion_triggerOnCollision +androidx.preference.R$styleable: int MenuItem_android_numericShortcut +com.google.android.material.R$dimen: int abc_disabled_alpha_material_dark +com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context) +android.didikee.donate.R$styleable: int ActionBar_contentInsetRight +com.xw.repo.bubbleseekbar.R$attr: int titleTextStyle +wangdaye.com.geometricweather.R$styleable: int GradientColor_android_endColor +james.adaptiveicon.R$attr: int layout +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$IntervalsBean: int IconCode +com.turingtechnologies.materialscrollbar.R$attr: int colorError +com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentStyle +wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.db.entities.DaoSession daoSession +okhttp3.Protocol: okhttp3.Protocol SPDY_3 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_selectableItemBackground +androidx.appcompat.R$dimen: int compat_button_padding_vertical_material +com.google.android.material.R$dimen: int abc_dialog_title_divider_material +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeWindChillTemperature +androidx.vectordrawable.R$string +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListPopupWindow +wangdaye.com.geometricweather.R$string: int settings_title_widget_config +cyanogenmod.app.Profile$TriggerType +okhttp3.internal.http2.Http2Writer: boolean closed +james.adaptiveicon.R$styleable: int AppCompatTheme_selectableItemBackground +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline5 +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: void removeCustomTileWithTag(java.lang.String,java.lang.String,int,int) +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int LOW_NOTIFICATION_STATE +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_WARNING_INDEX +android.didikee.donate.R$styleable: int MenuView_android_horizontalDivider +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date time +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog +androidx.appcompat.R$dimen: int notification_top_pad_large_text +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver +com.amap.api.location.AMapLocation: int D +androidx.appcompat.R$style: int Base_Widget_AppCompat_Spinner_Underlined +okhttp3.internal.connection.StreamAllocation: boolean released +james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +wangdaye.com.geometricweather.R$attr: int drawable_res_off +com.google.android.material.R$dimen: int design_bottom_sheet_modal_elevation +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void dispose() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature +wangdaye.com.geometricweather.common.basic.models.weather.Weather: void setYesterday(wangdaye.com.geometricweather.common.basic.models.weather.History) +org.greenrobot.greendao.AbstractDaoSession: java.lang.Object callInTx(java.util.concurrent.Callable) +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.HistoryEntityDao historyEntityDao +retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type upperBound +wangdaye.com.geometricweather.R$drawable: int notif_temp_40 +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.legacy.coreutils.R$drawable: int notification_bg +android.didikee.donate.R$styleable: int ActionBar_indeterminateProgressStyle +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language RUSSIAN +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator __MAGICAL_TEST_PASSING_ENABLER_VALIDATOR +retrofit2.BuiltInConverters$ToStringConverter: BuiltInConverters$ToStringConverter() +com.xw.repo.bubbleseekbar.R$string: int abc_action_bar_up_description +com.google.android.material.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +androidx.vectordrawable.animated.R$id: int actions +retrofit2.ParameterHandler$Part: int p +com.tencent.bugly.crashreport.biz.b: int c +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String from +com.google.android.material.R$styleable: int KeyAttribute_android_rotation +androidx.preference.Preference: void setOnPreferenceChangeListener(androidx.preference.Preference$OnPreferenceChangeListener) +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_3 +wangdaye.com.geometricweather.R$drawable: int shortcuts_wind_foreground +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float getNO2() +cyanogenmod.app.IPartnerInterface$Stub$Proxy: IPartnerInterface$Stub$Proxy(android.os.IBinder) +androidx.fragment.R$layout: int custom_dialog +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getCurrentDisplayMode +okhttp3.internal.platform.ConscryptPlatform: void configureSslSocketFactory(javax.net.ssl.SSLSocketFactory) +androidx.lifecycle.extensions.R: R() +com.google.android.material.R$styleable: int CollapsingToolbarLayout_toolbarId +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_android_summaryOn +cyanogenmod.providers.CMSettings$System: java.lang.String DISPLAY_COLOR_ADJUSTMENT +androidx.appcompat.R$attr: int textLocale +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummaryBean: java.lang.String ShortPhrase +com.baidu.location.e.l$b: com.baidu.location.e.l$b d +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconTintMode +wangdaye.com.geometricweather.R$drawable: int notification_bg_low_pressed +com.google.android.material.R$attr: int splitTrack +com.google.android.material.R$attr: int tabStyle +okhttp3.internal.http2.Settings: Settings() +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: long index +wangdaye.com.geometricweather.R$attr: int yearSelectedStyle +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_homeAsUpIndicator +okhttp3.internal.http2.Http2Connection$5 +james.adaptiveicon.R$styleable: int DrawerArrowToggle_color +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_baselineAlignedChildIndex +com.tencent.bugly.proguard.j: int a(java.lang.String) +okio.Buffer$1: void close() +androidx.activity.R$styleable: int FontFamilyFont_android_font +okhttp3.internal.http.HttpHeaders: int parseSeconds(java.lang.String,int) +com.jaredrummler.android.colorpicker.R$attr: int actionModeSplitBackground +cyanogenmod.externalviews.KeyguardExternalView: java.lang.String EXTRA_PERMISSION_LIST +androidx.lifecycle.extensions.R$styleable: int Fragment_android_name +com.tencent.bugly.crashreport.inner.InnerApi: void postU3dCrashAsync(java.lang.String,java.lang.String,java.lang.String) +cyanogenmod.externalviews.ExternalViewProviderService: android.view.WindowManager mWindowManager +okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.reflect.Method getMethod +okhttp3.RealCall: boolean executed +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_setLiveLockScreenEnabled +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_Dialog +wangdaye.com.geometricweather.R$string: int feedback_readd_location_after_changing_source +com.google.android.material.bottomappbar.BottomAppBar: BottomAppBar(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int Chip_android_checkable +cyanogenmod.app.ILiveLockScreenChangeListener$Stub$Proxy: android.os.IBinder mRemote +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void drain() +androidx.constraintlayout.widget.R$id: int action_bar +wangdaye.com.geometricweather.R$string: int item_view_role_description +androidx.vectordrawable.animated.R$drawable: R$drawable() +com.jaredrummler.android.colorpicker.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_wrapMode +james.adaptiveicon.R$styleable: int View_android_focusable +okhttp3.package-info +wangdaye.com.geometricweather.R$layout: int cpv_preference_square_large +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode RAIN +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX brandInfo +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getTickInactiveTintList() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindSpeed +androidx.appcompat.R$string: int abc_menu_shift_shortcut_label +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.ICMWeatherManager getService() +com.turingtechnologies.materialscrollbar.R$drawable: int navigation_empty_icon +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setAddress(java.lang.String) +com.amap.api.location.AMapLocation: void setStreet(java.lang.String) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_28 +wangdaye.com.geometricweather.R$dimen: int widget_current_weather_icon_size +okio.InflaterSource +retrofit2.RequestFactory$Builder: java.lang.String relativeUrl +wangdaye.com.geometricweather.R$string: int content_desc_back +io.reactivex.Observable: io.reactivex.Observable debounce(io.reactivex.functions.Function) +androidx.activity.R$color: int secondary_text_default_material_light +com.tencent.bugly.crashreport.crash.CrashDetailBean: long D +com.amap.api.fence.PoiItem$1: PoiItem$1() +com.tencent.bugly.Bugly: android.content.Context applicationContext +com.google.android.material.bottomappbar.BottomAppBar: void setFabAnimationMode(int) +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_fontWeight +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Inverse +wangdaye.com.geometricweather.R$drawable: int notif_temp_2 +wangdaye.com.geometricweather.R$attr: int chipStandaloneStyle +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.reflect.Type getGenericComponentType() +androidx.preference.R$styleable: int AppCompatImageView_srcCompat +wangdaye.com.geometricweather.R$drawable: int material_ic_keyboard_arrow_right_black_24dp +james.adaptiveicon.R$string: int abc_action_bar_up_description +androidx.preference.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.google.android.material.R$styleable: int CompoundButton_buttonTint +androidx.lifecycle.ClassesInfoCache$MethodReference: int hashCode() +android.didikee.donate.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +androidx.appcompat.R$drawable: int abc_ic_menu_cut_mtrl_alpha +com.tencent.bugly.proguard.y: com.tencent.bugly.proguard.y$a c() +cyanogenmod.app.CustomTile: java.lang.String contentDescription +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: long index +com.google.android.material.card.MaterialCardView: void setChecked(boolean) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getProvince() +wangdaye.com.geometricweather.R$styleable: int Toolbar_titleTextColor +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_indeterminate +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.UV uv +james.adaptiveicon.R$attr: int buttonTintMode +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Integer relativeHumidityMin +com.xw.repo.BubbleSeekBar: float getMax() +cyanogenmod.externalviews.KeyguardExternalView: java.util.LinkedList mQueue +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Ceiling +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_titleEnabled +androidx.dynamicanimation.R$drawable: int notification_bg_low +com.google.android.material.R$style: int Widget_Design_FloatingActionButton +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dialog +okhttp3.logging.LoggingEventListener: void callEnd(okhttp3.Call) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: ObservableRepeat$RepeatObserver(io.reactivex.Observer,long,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) +androidx.cardview.R$attr: int cardViewStyle +com.jaredrummler.android.colorpicker.R$styleable: int ColorStateListItem_android_color +com.turingtechnologies.materialscrollbar.R$drawable: int abc_seekbar_tick_mark_material +com.google.android.material.R$id: int password_toggle +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_constraint_referenced_ids +com.amap.api.location.AMapLocationQualityReport: void setInstallHighDangerMockApp(boolean) +com.google.android.material.R$dimen: int mtrl_calendar_year_horizontal_padding +okhttp3.Cache: void abortQuietly(okhttp3.internal.cache.DiskLruCache$Editor) +com.tencent.bugly.crashreport.crash.a +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_progress +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.disposables.Disposable upstream +retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: boolean cancel(boolean) +androidx.hilt.lifecycle.R$id: int action_text +wangdaye.com.geometricweather.common.basic.models.weather.UV +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.util.Date DateTime +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Menu +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_icon_padding +com.google.android.material.R$attr: int errorIconTintMode +androidx.lifecycle.extensions.R$dimen: int notification_main_column_padding_top +com.google.android.material.slider.RangeSlider: void setHaloRadius(int) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.internal.disposables.SequentialDisposable task +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +android.didikee.donate.R$color: int accent_material_light +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: io.reactivex.disposables.Disposable upstream +com.jaredrummler.android.colorpicker.ColorPickerView: int getColor() +androidx.preference.R$style: int Widget_AppCompat_ActionMode +wangdaye.com.geometricweather.R$string: int abc_menu_sym_shortcut_label +com.tencent.bugly.proguard.aq: void a(com.tencent.bugly.proguard.i) +wangdaye.com.geometricweather.R$style: int Base_V14_ThemeOverlay_MaterialComponents_Dialog_Alert +androidx.viewpager.widget.ViewPager: void removeOnAdapterChangeListener(androidx.viewpager.widget.ViewPager$OnAdapterChangeListener) +cyanogenmod.app.IProfileManager$Stub$Proxy: boolean profileExists(android.os.ParcelUuid) +com.google.android.material.R$styleable: int KeyCycle_android_scaleY +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +androidx.transition.R$styleable: int FontFamilyFont_android_fontVariationSettings +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_RC4_40_SHA +com.google.android.material.R$styleable: int MaterialCardView_checkedIconSize +wangdaye.com.geometricweather.R$drawable: int cpv_ic_arrow_right_black_24dp +com.jaredrummler.android.colorpicker.R$attr: int homeLayout +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type NONE +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: long id +retrofit2.CallAdapter$Factory: retrofit2.CallAdapter get(java.lang.reflect.Type,java.lang.annotation.Annotation[],retrofit2.Retrofit) +james.adaptiveicon.R$id: int action_bar_root +wangdaye.com.geometricweather.R$styleable: int SearchView_android_imeOptions +androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type[] values() +wangdaye.com.geometricweather.R$id: int gridView +cyanogenmod.app.ICMStatusBarManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.google.android.material.R$styleable: int ConstraintSet_android_translationZ +cyanogenmod.app.CustomTile$Builder: java.lang.String mLabel +com.xw.repo.bubbleseekbar.R$attr: int windowActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_backgroundTint +wangdaye.com.geometricweather.R$drawable: int notif_temp_73 +androidx.preference.R$styleable: int MenuItem_alphabeticModifiers +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Integer totalCloudCover +james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar +androidx.appcompat.R$dimen: int abc_list_item_height_large_material +okhttp3.internal.http2.Http2Writer: void pushPromise(int,int,java.util.List) +wangdaye.com.geometricweather.R$attr: int maxLines +io.reactivex.internal.functions.Functions$HashSetCallable: io.reactivex.internal.functions.Functions$HashSetCallable[] values() +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayGammaCalibration(int,int[]) +androidx.constraintlayout.widget.R$id: int edit_query +io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: void dispose() +com.tencent.bugly.proguard.ad +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_width_minor +com.google.android.material.R$style: int Widget_AppCompat_ActivityChooserView +androidx.preference.R$style: int TextAppearance_Compat_Notification_Line2 +com.google.android.material.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorIconTint +wangdaye.com.geometricweather.db.entities.WeatherEntity: void update() +okio.Segment: void compact() +androidx.appcompat.resources.R$styleable: int[] ColorStateListItem +androidx.appcompat.widget.SearchView$SavedState: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float rainPrecipitation +androidx.core.R$id: int notification_main_column_container +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2 +wangdaye.com.geometricweather.R$string: int ice +io.reactivex.internal.util.EmptyComponent: io.reactivex.Observer asObserver() +wangdaye.com.geometricweather.R$attr: int boxStrokeWidth +okhttp3.CipherSuite$1: int compare(java.lang.String,java.lang.String) +wangdaye.com.geometricweather.R$id: int tag_icon_day +wangdaye.com.geometricweather.R$styleable: int PreferenceFragmentCompat_allowDividerAfterLastItem +androidx.appcompat.R$styleable: int MenuItem_android_icon +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: io.reactivex.internal.util.AtomicThrowable error +okio.Buffer: okio.BufferedSink writeShortLe(int) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1: void onSucceed(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult) +james.adaptiveicon.R$drawable: int notification_template_icon_bg +androidx.appcompat.R$string: int abc_searchview_description_submit +com.tencent.bugly.proguard.r: byte[] g +androidx.customview.R$id: int action_text +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_progressBarStyle +com.bumptech.glide.R$attr: int layout_anchorGravity +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getAbbreviation(android.content.Context) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setSunSet(java.lang.String) +com.google.gson.stream.JsonReader: com.google.gson.stream.JsonToken peek() +com.xw.repo.bubbleseekbar.R$attr: int titleMarginBottom +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPrePaused(android.app.Activity) +androidx.recyclerview.R$id: int tag_accessibility_actions +androidx.vectordrawable.animated.R$drawable: int notification_bg_low_normal +com.google.android.material.R$attr: int state_lifted +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: double lat +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizeTextType +com.tencent.bugly.BuglyStrategy: boolean isEnableANRCrashMonitor() +androidx.transition.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$styleable: int SwitchCompat_android_textOff +com.google.android.material.R$color: int background_material_dark +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification_Info +androidx.lifecycle.ComputableLiveData: java.util.concurrent.atomic.AtomicBoolean mComputing +com.google.android.material.R$styleable: int ChipGroup_chipSpacingVertical +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogCenterButtons +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +com.google.android.material.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum: java.lang.String Unit +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_liftOnScroll +retrofit2.Callback +androidx.appcompat.R$color: int error_color_material_light +okhttp3.internal.platform.Platform: java.lang.String toString() +cyanogenmod.providers.CMSettings$System: android.net.Uri getUriFor(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +io.reactivex.Observable: io.reactivex.Observable distinctUntilChanged(io.reactivex.functions.BiPredicate) +wangdaye.com.geometricweather.R$style: int Base_V7_Theme_AppCompat_Light +com.google.android.material.R$styleable: int[] CustomAttribute +james.adaptiveicon.R$color: int bright_foreground_inverse_material_dark +wangdaye.com.geometricweather.R$attr: int shapeAppearanceOverlay +androidx.preference.R$drawable: int abc_ic_go_search_api_material +wangdaye.com.geometricweather.db.entities.HistoryEntityDao: wangdaye.com.geometricweather.db.entities.HistoryEntity readEntity(android.database.Cursor,int) +com.turingtechnologies.materialscrollbar.R$id: int firstVisible +com.google.android.material.textfield.TextInputLayout: void addOnEditTextAttachedListener(com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener) +com.google.gson.stream.JsonReader: int PEEKED_BEGIN_ARRAY +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: boolean delayError +com.google.android.material.R$styleable: int MenuGroup_android_menuCategory +com.turingtechnologies.materialscrollbar.R$style: int Base_V23_Theme_AppCompat +com.jaredrummler.android.colorpicker.R$id: int none +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_Dark +androidx.activity.R$dimen: int compat_notification_large_icon_max_width +androidx.preference.R$dimen: int abc_action_button_min_width_overflow_material +okhttp3.Handshake: okhttp3.CipherSuite cipherSuite +wangdaye.com.geometricweather.R$styleable: int Toolbar_collapseContentDescription +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorSchemeResources(int[]) +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_lightOnTouch +wangdaye.com.geometricweather.R$array: int week_icon_modes +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_ANY +wangdaye.com.geometricweather.R$id: int center_horizontal +wangdaye.com.geometricweather.R$id: int tag_icon_top +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_end +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: ThemeVersion$ThemeVersionImpl2() +cyanogenmod.app.CMStatusBarManager: boolean localLOGV +com.jaredrummler.android.colorpicker.R$attr: int layout_keyline +retrofit2.Callback: void onResponse(retrofit2.Call,retrofit2.Response) +androidx.preference.R$attr: int splitTrack +wangdaye.com.geometricweather.R$id: int widget_clock_day_title +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: int getAnimationMode() +androidx.preference.R$styleable: int TextAppearance_android_textStyle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_EXPORT_WITH_RC4_40_MD5 +com.google.android.material.textfield.TextInputLayout: void setErrorIconDrawable(int) +com.google.android.material.R$styleable: int PopupWindow_android_popupBackground +wangdaye.com.geometricweather.R$attr: int colorSurface +android.didikee.donate.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_fontVariationSettings +wangdaye.com.geometricweather.R$attr: int seekBarStyle +androidx.work.R$id: int accessibility_custom_action_27 +com.google.android.material.R$styleable: int KeyTimeCycle_waveShape +wangdaye.com.geometricweather.R$id: int lastElement +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +androidx.constraintlayout.widget.R$drawable: int abc_list_longpressed_holo +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: java.lang.String getWidgetWeekIconModeName(android.content.Context) +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +james.adaptiveicon.R$dimen: int abc_select_dialog_padding_start_material +com.xw.repo.bubbleseekbar.R$attr: int isLightTheme +okhttp3.MultipartBody$Builder: okhttp3.MultipartBody$Builder addPart(okhttp3.Headers,okhttp3.RequestBody) +cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: android.os.IBinder mRemote +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorPrimaryDark +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_rightToLeft +wangdaye.com.geometricweather.R$layout: int activity_preview_icon +androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_bias +androidx.loader.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$id: int unlabeled +androidx.constraintlayout.widget.R$dimen: int notification_right_side_padding_top +okhttp3.internal.platform.AndroidPlatform: AndroidPlatform(java.lang.Class,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod,okhttp3.internal.platform.OptionalMethod) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +okio.Segment: int SIZE +com.google.android.material.R$styleable: int BottomAppBar_elevation +com.bumptech.glide.R$styleable: int FontFamilyFont_font +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: ExecutorScheduler$ExecutorWorker$InterruptibleRunnable(java.lang.Runnable,io.reactivex.internal.disposables.DisposableContainer) +com.google.android.material.R$dimen: int mtrl_calendar_header_selection_line_height +com.google.android.material.R$styleable: int TabLayout_tabPaddingStart +com.tencent.bugly.crashreport.biz.b: android.app.Application$ActivityLifecycleCallbacks k +wangdaye.com.geometricweather.R$id: int enterAlwaysCollapsed +androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogStyle +androidx.appcompat.R$id: int accessibility_custom_action_13 +androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderAuthority +androidx.recyclerview.R$dimen: R$dimen() +org.greenrobot.greendao.AbstractDao: AbstractDao(org.greenrobot.greendao.internal.DaoConfig) +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_track_color +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable: boolean isDisposed() +androidx.appcompat.widget.Toolbar: int getContentInsetStart() +com.google.android.material.R$styleable: int DrawerArrowToggle_spinBars +androidx.preference.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRainPrecipitation(java.lang.Float) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Speed: double Value +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_divider_material +androidx.appcompat.R$id: int accessibility_custom_action_31 +com.google.android.material.R$attr: int flow_maxElementsWrap +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_drawPath +okhttp3.internal.http.RealInterceptorChain: okhttp3.Response proceed(okhttp3.Request) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean delayErrors +androidx.appcompat.R$drawable: int abc_btn_check_to_on_mtrl_015 +wangdaye.com.geometricweather.R$id: int activity_widget_config_textSizeSeekBar +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation +io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite COMPLETE +android.didikee.donate.R$style: int Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.R$layout: int item_trend_daily +cyanogenmod.profiles.StreamSettings: void readFromParcel(android.os.Parcel) +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemIconPadding +com.google.android.material.R$styleable: int[] View +androidx.appcompat.R$styleable: int AppCompatTheme_alertDialogCenterButtons +wangdaye.com.geometricweather.R$style: int Preference_SeekBarPreference_Material +androidx.preference.R$attr: int windowActionModeOverlay +com.tencent.bugly.crashreport.crash.e: java.lang.String h +androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory: androidx.lifecycle.ViewModelProvider$AndroidViewModelFactory getInstance(android.app.Application) +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_17 +com.google.android.material.R$styleable: int KeyTrigger_triggerId +io.reactivex.Observable: io.reactivex.Observable zip(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function3) +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getTreeLevel() +android.didikee.donate.R$attr: int searchViewStyle +com.google.android.material.R$drawable: int abc_list_divider_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int Chip_chipCornerRadius +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator BATTERY_LIGHT_FULL_COLOR_VALIDATOR +com.google.android.material.R$color: int primary_text_disabled_material_dark +androidx.preference.R$styleable: int AppCompatTheme_colorBackgroundFloating +androidx.constraintlayout.widget.R$styleable: int ViewStubCompat_android_inflatedId +okhttp3.EventListener: void connectionReleased(okhttp3.Call,okhttp3.Connection) +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setCountryId(java.lang.String) +android.didikee.donate.R$attr: int theme +com.amap.api.fence.DistrictItem: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Imperial: double Value +androidx.preference.R$styleable: int[] Toolbar +wangdaye.com.geometricweather.R$string: int appbar_scrolling_view_behavior +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Determinate +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: float unitFactor +com.google.android.material.switchmaterial.SwitchMaterial +com.google.android.material.R$attr: int suffixText +androidx.appcompat.widget.AppCompatAutoCompleteTextView: AppCompatAutoCompleteTextView(android.content.Context,android.util.AttributeSet) +com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.Typeface getExpandedTitleTypeface() +wangdaye.com.geometricweather.R$dimen: int cardview_compat_inset_shadow +com.turingtechnologies.materialscrollbar.R$color: int abc_secondary_text_material_light +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getAqiText() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CardView +wangdaye.com.geometricweather.R$drawable: int weather_thunder_2 +androidx.transition.R$dimen: int notification_large_icon_width +androidx.preference.R$id: int action_divider +okio.Buffer: boolean exhausted() +com.google.gson.stream.JsonReader: int pos +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_alt_shortcut_label +io.reactivex.internal.observers.DeferredScalarObserver +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_shapeAppearanceOverlay +wangdaye.com.geometricweather.R$id: int never +androidx.swiperefreshlayout.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_DayTextView +wangdaye.com.geometricweather.R$id: int collapseActionView +com.turingtechnologies.materialscrollbar.R$attr: int tint +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeInsetTop +com.google.android.material.R$styleable: int MaterialCalendarItem_itemTextColor +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constrainedHeight +wangdaye.com.geometricweather.R$id: int notification_big_icon_2 +com.google.android.material.R$id: int mtrl_calendar_frame +okhttp3.ResponseBody +okhttp3.internal.http2.Http2Connection$5: boolean val$inFinished +okhttp3.Response$Builder: int code +wangdaye.com.geometricweather.R$styleable: int ActionBar_elevation +wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_horizontal +wangdaye.com.geometricweather.R$styleable: int[] DrawerLayout +james.adaptiveicon.R$styleable: int Toolbar_collapseIcon +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_AutoCompleteTextView +com.tencent.bugly.proguard.ap: long h +com.google.android.material.chip.Chip: void setSingleLine(boolean) +androidx.appcompat.widget.ScrollingTabContainerView: void setTabSelected(int) +wangdaye.com.geometricweather.R$styleable: int SwitchMaterial_useMaterialThemeColors +wangdaye.com.geometricweather.R$color: int colorAccent_dark +com.tencent.bugly.crashreport.biz.b: void a() +com.jaredrummler.android.colorpicker.R$drawable: int abc_item_background_holo_light +james.adaptiveicon.R$dimen: int abc_action_button_min_width_material +cyanogenmod.weather.WeatherInfo$Builder: double mWindSpeed +okio.RealBufferedSource: boolean rangeEquals(long,okio.ByteString) +com.tencent.bugly.proguard.v +retrofit2.ParameterHandler$FieldMap: java.lang.reflect.Method method +cyanogenmod.app.ILiveLockScreenChangeListener: void onLiveLockScreenChanged(cyanogenmod.app.LiveLockScreenInfo) +com.github.rahatarmanahmed.cpv.CircularProgressView$4: CircularProgressView$4(com.github.rahatarmanahmed.cpv.CircularProgressView) +androidx.lifecycle.MediatorLiveData$Source: MediatorLiveData$Source(androidx.lifecycle.LiveData,androidx.lifecycle.Observer) +okio.Buffer: void close() +com.xw.repo.bubbleseekbar.R$color: int abc_hint_foreground_material_light +androidx.preference.R$drawable: int abc_btn_radio_material +com.tencent.bugly.proguard.i: long[] g(int,boolean) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getUvLevel() +androidx.core.R$color: int androidx_core_secondary_text_default_material_light +james.adaptiveicon.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.R$dimen: int compat_notification_large_icon_max_width +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setAppOverlay(java.lang.String,java.lang.String) +io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper[] values() +cyanogenmod.providers.CMSettings$System: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) +com.google.android.material.R$styleable: int TextInputLayout_counterOverflowTextColor +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Toolbar +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_cardForegroundColor +wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog_title +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSearchResultTitle +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType ALIYUN +com.jaredrummler.android.colorpicker.R$dimen: int abc_cascading_menus_min_smallest_width +androidx.lifecycle.ComputableLiveData: java.util.concurrent.Executor mExecutor +androidx.activity.R$id: int line1 +com.google.android.material.chip.ChipGroup: void setChipSpacingResource(int) +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: AccuMinuteResult$SummariesBean() +com.xw.repo.bubbleseekbar.R$string: int abc_menu_enter_shortcut_label +androidx.constraintlayout.widget.R$dimen: int abc_dropdownitem_icon_width +okhttp3.internal.http2.Http2Codec: okhttp3.internal.connection.StreamAllocation streamAllocation +cyanogenmod.os.Concierge$ParcelInfo: boolean mCreation +retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory: io.reactivex.Scheduler scheduler +james.adaptiveicon.R$styleable: int ActionBar_title +com.google.android.material.R$styleable: R$styleable() +androidx.drawerlayout.R$styleable: int GradientColor_android_centerY +cyanogenmod.power.PerformanceManagerInternal: void launchBoost() +androidx.viewpager2.widget.ViewPager2 +com.jaredrummler.android.colorpicker.R$attr: int navigationMode +cyanogenmod.app.CustomTileListenerService: java.lang.String SERVICE_INTERFACE +android.didikee.donate.R$drawable: int abc_list_pressed_holo_dark +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_percent +retrofit2.adapter.rxjava2.BodyObservable: BodyObservable(io.reactivex.Observable) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +androidx.constraintlayout.widget.R$attr: int overlay +com.tencent.bugly.proguard.ap: void a(com.tencent.bugly.proguard.i) +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_BLUETOOTH +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintGuide_begin +androidx.viewpager.R$id: int text2 +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String FORECAST_CONDITION +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIconTint +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getShortWindDescription() +wangdaye.com.geometricweather.R$layout: int dialog_location_permission_statement +wangdaye.com.geometricweather.R$drawable: int notif_temp_31 +com.jaredrummler.android.colorpicker.R$color: int material_grey_900 +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Dialog_Alert +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_material +com.google.android.material.textfield.TextInputLayout: void setEndIconActivated(boolean) james.adaptiveicon.R$color: int abc_search_url_text_selected -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.util.Date sunsetTime -james.adaptiveicon.R$style: int Widget_AppCompat_ActionMode -com.tencent.bugly.crashreport.common.info.a: java.lang.String f() -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: io.reactivex.internal.operators.observable.ObservableReplay$Node getHead() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float t -wangdaye.com.geometricweather.R$drawable: int notif_temp_27 -okhttp3.Cookie: long parseMaxAge(java.lang.String) -wangdaye.com.geometricweather.R$drawable: int notif_temp_93 -wangdaye.com.geometricweather.db.entities.WeatherEntity: int temperature -androidx.lifecycle.SavedStateViewModelFactory: java.lang.Class[] VIEWMODEL_SIGNATURE -androidx.legacy.coreutils.R$styleable: int GradientColor_android_endY -okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte[] publicSuffixListBytes -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_reverseLayout -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorPrimary -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day -wangdaye.com.geometricweather.R$id: int widget_day_week_icon_4 -wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_bottom_margin -com.tencent.bugly.proguard.m: int d -okhttp3.internal.cache.DiskLruCache: java.io.File journalFile -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String info -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_windowFixedHeightMinor -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Rain -com.turingtechnologies.materialscrollbar.R$attr: int maxImageSize -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Menu -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: void setBrandId(java.lang.String) -com.xw.repo.bubbleseekbar.R$attr: int buttonPanelSideLayout -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DialogWhenLarge -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onNext(java.lang.Object) -androidx.appcompat.widget.LinearLayoutCompat: void setVerticalGravity(int) -okio.Buffer$2: int available() -io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: boolean done -com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar -com.google.android.material.R$color: int abc_tint_edittext -okhttp3.Response: long receivedResponseAtMillis -androidx.appcompat.widget.AppCompatSpinner: int getDropDownHorizontalOffset() -wangdaye.com.geometricweather.R$id: int design_menu_item_action_area -wangdaye.com.geometricweather.R$styleable: int SearchView_android_focusable -cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.ICMTelephonyManager sService -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_Solid -androidx.lifecycle.LifecycleRegistryOwner: androidx.lifecycle.LifecycleRegistry getLifecycle() -okhttp3.internal.http1.Http1Codec$ChunkedSource: long bytesRemainingInChunk -com.tencent.bugly.proguard.q: q(android.content.Context,java.util.List) -okhttp3.internal.Util: int decodeHexDigit(char) -com.google.android.material.R$integer: int status_bar_notification_info_maxnum -androidx.constraintlayout.widget.R$attr: int dividerHorizontal -cyanogenmod.providers.CMSettings$Secure: boolean shouldInterceptSystemProvider(java.lang.String) -androidx.constraintlayout.widget.R$styleable: int KeyTrigger_triggerReceiver -james.adaptiveicon.R$drawable: int abc_ic_menu_share_mtrl_alpha -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onBouncerShowing -com.amap.api.fence.GeoFenceClient: android.content.Context a -okhttp3.logging.LoggingEventListener: void requestBodyEnd(okhttp3.Call,long) -androidx.hilt.R$styleable: int GradientColor_android_tileMode -androidx.recyclerview.R$drawable: int notification_bg_normal -androidx.constraintlayout.widget.R$attr: int onNegativeCross -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String INSTALL_STATE -com.turingtechnologies.materialscrollbar.R$styleable: int[] RecyclerView -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: java.lang.String getLogo() -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_DES_CBC_SHA -androidx.preference.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean gate -com.google.android.material.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog_Alert -com.google.android.material.R$styleable: int ProgressIndicator_circularInset -com.amap.api.location.AMapLocation: java.lang.String getAoiName() -com.xw.repo.bubbleseekbar.R$id: int below_section_mark -androidx.fragment.R$styleable: int FontFamilyFont_android_ttcIndex -com.google.android.material.R$styleable: int CardView_cardCornerRadius -james.adaptiveicon.R$attr: int switchMinWidth -cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: IThermalListenerCallback$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeApparentTemperature(java.lang.Integer) -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: io.reactivex.Observer downstream -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_AutoCompleteTextView -okhttp3.internal.http2.Http2: java.lang.IllegalArgumentException illegalArgument(java.lang.String,java.lang.Object[]) -android.support.v4.os.IResultReceiver$Stub: android.support.v4.os.IResultReceiver getDefaultImpl() -androidx.preference.R$anim: int fragment_open_exit -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int FUSED -cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status[] $VALUES -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: int UnitType -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_menuCategory -androidx.lifecycle.SavedStateHandleController$1: androidx.lifecycle.Lifecycle val$lifecycle -com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_wrapMode -com.google.android.material.R$style: int TextAppearance_AppCompat_Subhead_Inverse -cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator CALL_RECORDING_FORMAT_VALIDATOR -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_20 -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_logoDescription -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_textLocale -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_elevation_material -okhttp3.Address: okhttp3.HttpUrl url() -cyanogenmod.weather.WeatherInfo$DayForecast$1: cyanogenmod.weather.WeatherInfo$DayForecast[] newArray(int) -com.xw.repo.bubbleseekbar.R$attr: int bsb_always_show_bubble_delay -androidx.legacy.coreutils.R$styleable: int ColorStateListItem_android_color -wangdaye.com.geometricweather.R$id: int mtrl_picker_text_input_range_start -james.adaptiveicon.R$styleable: int Toolbar_logo -okhttp3.Cache$Entry: java.lang.String SENT_MILLIS -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_horizontal_padding -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) -androidx.appcompat.widget.ButtonBarLayout: void setStacked(boolean) -androidx.preference.R$attr: int actionModeBackground -wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: int subTextColorResId -com.xw.repo.bubbleseekbar.R$integer: int abc_config_activityDefaultDur -androidx.recyclerview.R$string: int status_bar_notification_info_overflow -io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver: boolean isDisposed() -androidx.appcompat.widget.SearchView: void setSuggestionsAdapter(androidx.cursoradapter.widget.CursorAdapter) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$drawable: int abc_text_select_handle_right_mtrl_light -io.reactivex.Observable: io.reactivex.Observable throttleWithTimeout(long,java.util.concurrent.TimeUnit) -com.xw.repo.bubbleseekbar.R$color: int abc_tint_switch_track -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_disableDependentsState -james.adaptiveicon.R$dimen: int notification_big_circle_margin -okhttp3.internal.cache.DiskLruCache: boolean isClosed() -androidx.hilt.lifecycle.R$attr: int fontProviderCerts -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_chip_pressed_translation_z -com.google.android.material.R$attr: int pathMotionArc -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_voiceIcon -androidx.appcompat.widget.Toolbar: void setTitleTextColor(android.content.res.ColorStateList) -okhttp3.Cookie: boolean matches(okhttp3.HttpUrl) -androidx.appcompat.widget.SwitchCompat: boolean getSplitTrack() -android.didikee.donate.R$color: int background_material_light -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$styleable: int[] SlidingItemContainerLayout -androidx.constraintlayout.widget.R$attr: int isLightTheme -androidx.appcompat.R$attr: int icon -cyanogenmod.providers.CMSettings$InclusiveFloatRangeValidator: CMSettings$InclusiveFloatRangeValidator(float,float) -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintTop_creator -com.turingtechnologies.materialscrollbar.R$attr: int itemTextAppearance -androidx.legacy.coreutils.R$dimen: int notification_large_icon_height -com.google.android.material.slider.RangeSlider: void setValueTo(float) -okhttp3.internal.http2.Http2Stream$FramingSource: okhttp3.internal.http2.Http2Stream this$0 -com.google.android.material.R$dimen: int compat_button_inset_vertical_material -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItemSmall -com.tencent.bugly.proguard.an: java.lang.String d -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_seek_step_section -wangdaye.com.geometricweather.R$styleable: int[] SwitchImageButton -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_checkable -io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onError(java.lang.Throwable) -androidx.appcompat.R$attr: int listPreferredItemPaddingLeft -wangdaye.com.geometricweather.R$attr: int counterOverflowTextAppearance -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: AccuCurrentResult$Pressure$Imperial() -wangdaye.com.geometricweather.common.basic.models.weather.Wind: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree degree -wangdaye.com.geometricweather.R$string: int sensible_temp -com.google.android.material.R$styleable: int ConstraintSet_layout_constrainedHeight -okhttp3.internal.http2.Http2Connection$3: Http2Connection$3(okhttp3.internal.http2.Http2Connection,java.lang.String,java.lang.Object[]) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintHeight_max -androidx.preference.R$styleable: int AppCompatTheme_actionBarTabTextStyle -wangdaye.com.geometricweather.R$color: int colorTextTitle -cyanogenmod.platform.Manifest$permission: java.lang.String HARDWARE_ABSTRACTION_ACCESS -wangdaye.com.geometricweather.R$drawable: int test_custom_background -com.xw.repo.BubbleSeekBar: com.xw.repo.BubbleSeekBar$OnProgressChangedListener getOnProgressChangedListener() -com.amap.api.location.AMapLocationClient: void stopLocation() -com.google.android.material.R$styleable: int Toolbar_buttonGravity -wangdaye.com.geometricweather.R$dimen: int abc_text_size_subhead_material -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance -com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense -com.google.android.material.textfield.TextInputLayout: void setCounterMaxLength(int) -androidx.preference.R$attr: int listPreferredItemPaddingStart -wangdaye.com.geometricweather.R$attr: int keylines -com.xw.repo.bubbleseekbar.R$id: int normal -wangdaye.com.geometricweather.R$attr: int hintTextColor -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_AES_128_CCM_SHA256 -okhttp3.internal.tls.DistinguishedNameParser: char getEscaped() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setAqiIndex(java.lang.Integer) -okhttp3.internal.Internal: boolean equalsNonHost(okhttp3.Address,okhttp3.Address) -androidx.drawerlayout.R$style: int Widget_Compat_NotificationActionContainer -wangdaye.com.geometricweather.background.receiver.MainReceiver: MainReceiver() -android.didikee.donate.R$styleable: int ActionBar_title -com.google.android.material.textfield.TextInputLayout: TextInputLayout(android.content.Context,android.util.AttributeSet,int) -com.jaredrummler.android.colorpicker.R$attr: int allowDividerAbove -com.google.android.material.slider.Slider: void setTrackTintList(android.content.res.ColorStateList) -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated -cyanogenmod.themes.IThemeChangeListener$Stub$Proxy: IThemeChangeListener$Stub$Proxy(android.os.IBinder) -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderToggleButton -okhttp3.internal.http2.Header: java.lang.String toString() -androidx.preference.R$string: int expand_button_title -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Count -com.amap.api.fence.GeoFence: float getMinDis2Center() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid TotalLiquid -wangdaye.com.geometricweather.R$attr: int statusBarScrim -okhttp3.HttpUrl: java.lang.String PATH_SEGMENT_ENCODE_SET -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void alterWindow(int,int,int,int,boolean,android.graphics.Rect) -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeWetBulbTemperature -io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) -androidx.constraintlayout.widget.R$drawable: int abc_scrubber_track_mtrl_alpha -okhttp3.internal.http1.Http1Codec: int STATE_IDLE -com.google.android.material.textfield.TextInputLayout: int getBaseline() -androidx.preference.R$attr: int subtitleTextStyle -wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay -androidx.constraintlayout.widget.R$attr: int alpha -com.google.android.material.tabs.TabLayout: void setUnboundedRipple(boolean) -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Inverse -androidx.hilt.R$id: int accessibility_custom_action_9 -wangdaye.com.geometricweather.R$id: int subtitle -androidx.vectordrawable.R$styleable: int[] FontFamily -androidx.preference.R$styleable: int[] PreferenceGroup -com.google.android.material.R$attr: int submitBackground -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: boolean e -com.jaredrummler.android.colorpicker.R$attr: int actionModeSelectAllDrawable -androidx.constraintlayout.widget.R$attr: int initialActivityCount -androidx.constraintlayout.widget.R$attr: int showTitle -okio.ByteString: okio.ByteString EMPTY -androidx.drawerlayout.R$id: int forever -com.google.android.material.R$attr: int maxLines -cyanogenmod.themes.IThemeService$Stub$Proxy: void applyDefaultTheme() -com.tencent.bugly.proguard.aj -com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem -androidx.lifecycle.ClassesInfoCache$CallbackInfo -androidx.viewpager2.R$styleable: int RecyclerView_reverseLayout -androidx.appcompat.R$dimen: int tooltip_precise_anchor_extra_offset -okhttp3.internal.http.HttpCodec: void writeRequestHeaders(okhttp3.Request) -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean removeProfile(cyanogenmod.app.Profile) -com.google.android.material.R$styleable: int SwitchCompat_android_textOff -com.google.android.material.R$color: int mtrl_filled_icon_tint -androidx.appcompat.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -cyanogenmod.providers.DataUsageContract: int COLUMN_OF_FAST_AVG -com.google.android.material.R$style: int Platform_MaterialComponents_Light -com.jaredrummler.android.colorpicker.R$color: int material_grey_100 +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Toolbar_Surface +android.didikee.donate.R$id: int customPanel +com.google.android.material.tabs.TabLayout: android.graphics.drawable.Drawable getTabSelectedIndicator() +androidx.core.R$styleable: int GradientColorItem_android_offset +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_3 +androidx.preference.R$id: int search_badge +androidx.viewpager2.R$id: int accessibility_custom_action_30 +wangdaye.com.geometricweather.R$attr: int tabContentStart +retrofit2.KotlinExtensions$await$2$2: void onFailure(retrofit2.Call,java.lang.Throwable) +com.amap.api.fence.GeoFenceClient: void addGeoFence(java.lang.String,java.lang.String,com.amap.api.location.DPoint,float,int,java.lang.String) +androidx.appcompat.R$styleable: int AppCompatTextHelper_android_drawableLeft +wangdaye.com.geometricweather.R$styleable: int AlertDialog_buttonIconDimen +androidx.transition.R$id: int tag_unhandled_key_event_manager +com.google.android.material.R$styleable: int MenuItem_android_checked +com.google.android.gms.base.R$attr +cyanogenmod.library.R +okhttp3.internal.http.StatusLine +io.reactivex.Observable: io.reactivex.Observable mergeArray(int,int,io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getMoldDescription() +james.adaptiveicon.R$attr: int progressBarStyle +com.jaredrummler.android.colorpicker.R$style: int Theme_AppCompat_Light +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceListItemSmall +okio.Pipe: long maxBufferSize +james.adaptiveicon.R$integer: int status_bar_notification_info_maxnum +androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_ring_outer_path_animation +androidx.appcompat.R$styleable: int AppCompatTextView_fontVariationSettings +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstHorizontalBias +androidx.appcompat.widget.AppCompatImageView: android.graphics.PorterDuff$Mode getSupportImageTintMode() +androidx.appcompat.widget.ButtonBarLayout: ButtonBarLayout(android.content.Context,android.util.AttributeSet) +okhttp3.internal.tls.BasicTrustRootIndex +com.google.android.material.R$drawable: int abc_scrubber_control_to_pressed_mtrl_005 +com.google.android.material.R$style: int TextAppearance_AppCompat_Body1 +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_container +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox_Dense +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTodaysLow(double) +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken[] values() +com.google.android.material.R$styleable: int KeyTrigger_motionTarget +okhttp3.EventListener: void connectStart(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy) +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer wetBulbTemperature +androidx.preference.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_textAllCaps +wangdaye.com.geometricweather.R$id: int dialog_background_location_container +com.xw.repo.BubbleSeekBar: void setSecondTrackColor(int) +androidx.appcompat.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +cyanogenmod.providers.CMSettings$Global: android.net.Uri CONTENT_URI +androidx.appcompat.app.ToolbarActionBar: void removeOnMenuVisibilityListener(androidx.appcompat.app.ActionBar$OnMenuVisibilityListener) +androidx.appcompat.R$style: int Base_Widget_AppCompat_ProgressBar +retrofit2.HttpServiceMethod$SuspendForResponse +androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context,android.util.AttributeSet,int) +james.adaptiveicon.R$dimen: int notification_top_pad_large_text +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getEndIconContentDescription() +cyanogenmod.weather.RequestInfo$Builder: int mRequestType +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIconSize +com.google.android.gms.common.data.DataHolder: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$styleable: int[] PopupWindow +cyanogenmod.profiles.AirplaneModeSettings +com.google.android.material.R$attr: int behavior_saveFlags +androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache sInstance +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String ragweedDescription +androidx.hilt.work.R$drawable +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textSize +wangdaye.com.geometricweather.R$transition: int search_activity_enter +wangdaye.com.geometricweather.db.entities.DaoMaster: org.greenrobot.greendao.AbstractDaoSession newSession() +cyanogenmod.hardware.CMHardwareManager: java.lang.String TAG +com.turingtechnologies.materialscrollbar.R$attr: int tabIconTintMode +androidx.appcompat.R$id: int checked +androidx.constraintlayout.widget.R$styleable: int[] Variant +com.google.android.material.R$styleable: int AppCompatTheme_listChoiceIndicatorSingleAnimated +android.didikee.donate.R$styleable: int SwitchCompat_android_thumb +com.tencent.bugly.proguard.p: com.tencent.bugly.proguard.q b +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsModify(boolean) +android.didikee.donate.R$styleable: int TextAppearance_android_shadowDy +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +androidx.preference.R$style: int PreferenceFragment +com.google.android.material.R$styleable: int Toolbar_contentInsetEndWithActions +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizeTextType +com.tencent.bugly.proguard.y: java.lang.StringBuilder e +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory LOW +android.didikee.donate.R$attr: int progressBarStyle +androidx.hilt.work.R$drawable: int notification_bg_low +com.xw.repo.bubbleseekbar.R$id: int none +androidx.appcompat.R$layout: int abc_action_menu_item_layout +androidx.lifecycle.extensions.R$attr: int fontStyle +androidx.hilt.R$styleable: int GradientColor_android_endX +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy +cyanogenmod.app.IProfileManager$Stub$Proxy: void resetAll() +androidx.appcompat.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.fragment.R$dimen: int notification_main_column_padding_top +com.google.android.material.R$styleable: int TextInputLayout_hintAnimationEnabled +wangdaye.com.geometricweather.R$style: int Platform_V21_AppCompat +okhttp3.internal.http1.Http1Codec: okio.Sink newChunkedSink() +cyanogenmod.providers.CMSettings$Global: java.lang.String getString(android.content.ContentResolver,java.lang.String) +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: java.lang.Integer poll() +androidx.appcompat.R$styleable: int AppCompatTheme_buttonStyle +wangdaye.com.geometricweather.R$dimen: int design_snackbar_background_corner_radius +androidx.constraintlayout.widget.ConstraintLayout: void setMaxHeight(int) +androidx.viewpager.widget.PagerTabStrip +wangdaye.com.geometricweather.R$id: int tag_accessibility_pane_title +android.didikee.donate.R$attr: int switchStyle +wangdaye.com.geometricweather.db.entities.DaoMaster: int SCHEMA_VERSION +androidx.constraintlayout.widget.R$id: int baseline +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getThermalState +okhttp3.internal.cache.DiskLruCache$Entry: void setLengths(java.lang.String[]) +io.reactivex.internal.observers.ForEachWhileObserver: io.reactivex.functions.Predicate onNext +androidx.preference.R$styleable: int AppCompatTheme_actionModeFindDrawable +com.turingtechnologies.materialscrollbar.AlphabetIndicator: int getIndicatorHeight() +com.jaredrummler.android.colorpicker.R$style: int Platform_ThemeOverlay_AppCompat +androidx.appcompat.widget.ActionBarContainer: void setTransitioning(boolean) +com.google.android.material.R$attr: int framePosition +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event[] $VALUES +cyanogenmod.app.Profile$ProfileTrigger$1: java.lang.Object createFromParcel(android.os.Parcel) +com.turingtechnologies.materialscrollbar.R$id: int custom +android.didikee.donate.R$dimen: int notification_right_icon_size +james.adaptiveicon.R$drawable: int abc_action_bar_item_background_material +cyanogenmod.hardware.ICMHardwareService: java.lang.String getUniqueDeviceId() +com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_percent +com.jaredrummler.android.colorpicker.R$attr: int icon +androidx.vectordrawable.animated.R$layout: R$layout() +cyanogenmod.power.IPerformanceManager: int getNumberOfProfiles() +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DialogWhenLarge +androidx.constraintlayout.widget.R$styleable: int[] MenuItem +com.google.android.material.internal.CheckableImageButton: void setPressable(boolean) +androidx.lifecycle.extensions.R$drawable: int notification_icon_background +com.google.android.material.slider.BaseSlider: int getLabelBehavior() +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro[] astros +com.google.android.material.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +com.bumptech.glide.R$id: int glide_custom_view_target_tag +com.tencent.bugly.proguard.v: boolean s +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_31 +com.google.android.material.R$id: int design_menu_item_text +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +android.didikee.donate.R$attr: int colorAccent +com.google.android.material.R$styleable: int SearchView_goIcon +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_hideOnScroll +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_MaterialComponents_Light_Dialog_Alert_Framework +com.jaredrummler.android.colorpicker.R$attr: int buttonTintMode +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display4 +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_SET_CLIENT +androidx.constraintlayout.widget.R$color: int button_material_light +wangdaye.com.geometricweather.R$id: int resident_icon +androidx.appcompat.R$attr: int buttonTint +com.google.android.material.R$styleable: int FontFamilyFont_fontWeight +wangdaye.com.geometricweather.R$drawable: int widget_card_light_0 +androidx.coordinatorlayout.R$styleable: int[] ColorStateListItem +com.google.android.material.R$dimen: int action_bar_size +com.google.android.material.tabs.TabLayout: void setTabRippleColorResource(int) +wangdaye.com.geometricweather.R$styleable: int MaterialShape_shapeAppearance +com.google.android.material.R$styleable: int AppCompatImageView_srcCompat +android.didikee.donate.R$styleable: int TextAppearance_textLocale +com.tencent.bugly.proguard.y: java.lang.Object b() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: AccuCurrentResult$Wind$Speed$Imperial() +androidx.preference.R$styleable: int PreferenceTheme_preferenceFragmentListStyle +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Menu +james.adaptiveicon.R$dimen: int hint_pressed_alpha_material_light +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_precise_anchor_extra_offset +androidx.preference.R$id: int action_image +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onComplete() +wangdaye.com.geometricweather.R$attr: int customColorValue +com.jaredrummler.android.colorpicker.R$id: int info +okhttp3.internal.http1.Http1Codec +androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context) +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitle_inputter +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_3 +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver +okhttp3.internal.cache.CacheInterceptor +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: void onNext(java.lang.Object) +androidx.fragment.app.Fragment$SavedState: android.os.Parcelable$Creator CREATOR +com.google.gson.LongSerializationPolicy$1 +com.google.android.material.R$drawable: int mtrl_ic_cancel +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: float getDensity(float) +com.google.android.material.R$color: int cardview_shadow_start_color +com.tencent.bugly.crashreport.crash.b: java.util.List b(java.util.List) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogTheme +okhttp3.internal.connection.StreamAllocation: void acquire(okhttp3.internal.connection.RealConnection,boolean) +retrofit2.ParameterHandler$QueryMap: retrofit2.Converter valueConverter +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_BottomAppBar_Surface +com.google.android.material.R$attr: int expandedTitleMargin +com.google.android.material.R$styleable: int Motion_drawPath +com.jaredrummler.android.colorpicker.R$layout: int preference_information_material +com.google.android.material.navigation.NavigationView: void setItemTextAppearance(int) +wangdaye.com.geometricweather.R$dimen: int abc_button_inset_vertical_material +androidx.hilt.R$id: int accessibility_action_clickable_span +okhttp3.internal.connection.RouteSelector$Selection: java.util.List getAll() +io.reactivex.Observable: io.reactivex.Observable window(java.util.concurrent.Callable,int) +cyanogenmod.externalviews.IExternalViewProvider: void onPause() +wangdaye.com.geometricweather.R$attr: int editTextPreferenceStyle +com.google.android.material.R$id: int fill +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setDropDownBackgroundResource(int) +com.google.android.material.R$styleable: int AppCompatTheme_actionBarWidgetTheme +com.jaredrummler.android.colorpicker.R$color: int ripple_material_dark +wangdaye.com.geometricweather.R$drawable: int shortcuts_cloudy +android.didikee.donate.R$attr: int buttonStyle +wangdaye.com.geometricweather.R$styleable: int[] ListPopupWindow +androidx.core.R$id: int accessibility_custom_action_6 +com.google.android.material.R$styleable: int AppBarLayout_Layout_layout_scrollFlags +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setBootanimation(java.lang.String) +com.google.android.material.R$styleable: int TabLayout_tabMode +okhttp3.internal.ws.WebSocketReader: okio.BufferedSource source +com.xw.repo.bubbleseekbar.R$color: int colorPrimaryDark +cyanogenmod.app.ProfileGroup: void setRingerMode(cyanogenmod.app.ProfileGroup$Mode) +androidx.constraintlayout.widget.ConstraintLayout +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context,android.util.AttributeSet) +androidx.lifecycle.SavedStateHandle: boolean contains(java.lang.String) +com.google.android.material.R$layout: int mtrl_picker_header_selection_text +okhttp3.Cache: boolean isClosed() +cyanogenmod.profiles.LockSettings: LockSettings() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatSeekBar_android_thumb +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean +okio.ByteString: int lastIndexOf(okio.ByteString,int) +com.tencent.bugly.crashreport.common.info.AppInfo: android.app.ActivityManager a +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark_focused +io.reactivex.Observable: io.reactivex.Single single(java.lang.Object) +android.didikee.donate.R$string +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: void onError(java.lang.Throwable) +com.tencent.bugly.proguard.ac: byte[] b(byte[]) +androidx.lifecycle.ViewModel: java.lang.Object setTagIfAbsent(java.lang.String,java.lang.Object) +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType WEBP +com.tencent.bugly.crashreport.common.info.PlugInBean: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_height_fullscreen +wangdaye.com.geometricweather.R$dimen: int design_snackbar_padding_vertical_2lines +wangdaye.com.geometricweather.R$id: int up +com.xw.repo.bubbleseekbar.R$attr: int windowNoTitle +okio.HashingSink +okhttp3.internal.cache.CacheInterceptor$1: okio.BufferedSource val$source +android.didikee.donate.R$styleable: int AppCompatTheme_colorPrimary +wangdaye.com.geometricweather.R$string: int widget_multi_city +androidx.lifecycle.extensions.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: SlidingItemContainerLayout(android.content.Context,android.util.AttributeSet,int) +okhttp3.Route: java.net.InetSocketAddress socketAddress() +androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.DragScrollBar: float getHandleOffset() +okhttp3.internal.connection.RouteException: void addConnectException(java.io.IOException) +androidx.appcompat.R$color: int notification_icon_bg_color +okhttp3.OkHttpClient$Builder: OkHttpClient$Builder() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_colorAccent +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: CaiYunMainlyResult$IndicesBeanX$IndicesBean() androidx.appcompat.view.menu.ActionMenuItemView: void setChecked(boolean) -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult -cyanogenmod.app.ICustomTileListener$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.preference.R$attr: int navigationMode -androidx.preference.R$id: int submit_area -okhttp3.internal.http2.Http2Connection: long access$108(okhttp3.internal.http2.Http2Connection) -wangdaye.com.geometricweather.R$id: int container_alert_display_view_title -androidx.constraintlayout.widget.R$id: int spread_inside -io.reactivex.Observable: io.reactivex.disposables.Disposable forEachWhile(io.reactivex.functions.Predicate,io.reactivex.functions.Consumer,io.reactivex.functions.Action) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: void setWeathercn(java.lang.String) -androidx.preference.R$drawable: int abc_btn_radio_to_on_mtrl_000 -com.jaredrummler.android.colorpicker.R$integer -androidx.loader.R$style: int TextAppearance_Compat_Notification_Line2 -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem -com.xw.repo.bubbleseekbar.R$id: int search_src_text -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Daylight -androidx.constraintlayout.widget.R$color: int secondary_text_disabled_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorTextAppearance -android.didikee.donate.R$style: int Base_Widget_AppCompat_CompoundButton_Switch -androidx.hilt.lifecycle.R$drawable: int notification_bg_normal_pressed -okio.Buffer: long readDecimalLong() -com.turingtechnologies.materialscrollbar.R$styleable: int ForegroundLinearLayout_android_foregroundGravity -wangdaye.com.geometricweather.R$id: int snackbar_text -okhttp3.Route: int hashCode() -com.turingtechnologies.materialscrollbar.R$style: int Base_CardView -androidx.drawerlayout.R$dimen: int notification_right_icon_size -com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context,android.util.AttributeSet,int) -androidx.appcompat.R$styleable: int View_paddingStart -com.github.rahatarmanahmed.cpv.CircularProgressView: void setColor(int) -wangdaye.com.geometricweather.R$attr: int msb_barThickness -wangdaye.com.geometricweather.R$drawable: int notify_panel_notification_icon_bg -androidx.hilt.R$id: int accessibility_custom_action_17 -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayHorizontalWidgetConfigActivity: Hilt_ClockDayHorizontalWidgetConfigActivity() -okio.BufferedSource: void readFully(byte[]) -okhttp3.TlsVersion: okhttp3.TlsVersion forJavaName(java.lang.String) -com.amap.api.location.AMapLocation: java.lang.String h(com.amap.api.location.AMapLocation,java.lang.String) -okhttp3.MultipartBody: long writeOrCountBytes(okio.BufferedSink,boolean) -androidx.constraintlayout.widget.R$color: int material_grey_600 -okhttp3.Handshake: Handshake(okhttp3.TlsVersion,okhttp3.CipherSuite,java.util.List,java.util.List) -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_tooltipText -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Country: java.lang.String EnglishName -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 -androidx.preference.R$style: int ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTimeStamp(long) -androidx.hilt.R$styleable: int GradientColor_android_startColor -androidx.appcompat.R$attr: int drawableTintMode -androidx.swiperefreshlayout.R$styleable: int FontFamily_fontProviderQuery -wangdaye.com.geometricweather.R$id: int dialog_providers_previewer_container -com.tencent.bugly.proguard.g: g(java.lang.String) -com.google.android.material.datepicker.CalendarConstraints -com.google.android.material.navigation.NavigationView: void setItemHorizontalPadding(int) -androidx.preference.R$attr: int actionModeSplitBackground -okhttp3.WebSocket$Factory -wangdaye.com.geometricweather.search.Hilt_SearchActivity -androidx.constraintlayout.widget.R$attr: int fontProviderAuthority -androidx.work.impl.utils.futures.AbstractFuture$Failure$1 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSuggest() -com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_max -wangdaye.com.geometricweather.R$color: int bright_foreground_disabled_material_dark -wangdaye.com.geometricweather.R$styleable: int FitSystemBarRecyclerView_rv_side -androidx.preference.R$color: int abc_background_cache_hint_selector_material_light -androidx.vectordrawable.R$styleable: int FontFamilyFont_android_fontStyle -com.google.android.material.R$style: int Widget_MaterialComponents_CompoundButton_RadioButton -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: java.lang.Throwable error -com.bumptech.glide.R$styleable: int GradientColor_android_endColor -cyanogenmod.externalviews.ExternalView$2 -com.google.android.material.appbar.CollapsingToolbarLayout: android.graphics.drawable.Drawable getContentScrim() -androidx.preference.R$attr: int buttonBarNegativeButtonStyle -androidx.preference.R$styleable: int GradientColor_android_startY -com.google.android.material.R$style: int Widget_AppCompat_Light_SearchView -cyanogenmod.app.ICMStatusBarManager -wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: java.lang.String sourceUrl -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver this$0 -androidx.viewpager2.R$styleable: int[] ColorStateListItem -androidx.appcompat.R$attr: int actionBarTabBarStyle -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: FitSystemBarViewPager(android.content.Context) -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle -com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -androidx.preference.R$drawable: int abc_switch_thumb_material -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWindChillTemperature(java.lang.Integer) -androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart -androidx.appcompat.resources.R$id: int notification_background -io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onSuccess(java.lang.Object) -com.tencent.bugly.crashreport.crash.c: void h() -okhttp3.CertificatePinner$Pin: boolean equals(java.lang.Object) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -cyanogenmod.providers.DataUsageContract: java.lang.String BYTES -com.jaredrummler.android.colorpicker.R$styleable: int Preference_persistent -wangdaye.com.geometricweather.R$attr: int colorOnSurface -okio.Okio: okio.BufferedSink buffer(okio.Sink) -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_stroke_width_focused -androidx.drawerlayout.R$drawable: int notification_bg_low -com.turingtechnologies.materialscrollbar.R$id: int progress_horizontal -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_at -okio.Utf8: Utf8() -wangdaye.com.geometricweather.R$bool: int enable_system_job_service_default -okhttp3.Cache: void update(okhttp3.Response,okhttp3.Response) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -com.turingtechnologies.materialscrollbar.R$attr: int tintMode -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_Solid -wangdaye.com.geometricweather.R$attr: int colorButtonNormal -cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: int KPH -com.google.android.material.R$attr: int showAsAction -com.google.android.material.R$dimen: int mtrl_calendar_year_height -wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_unselected -androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar -androidx.preference.R$attr: int imageButtonStyle -cyanogenmod.themes.IThemeService$Stub -androidx.preference.R$styleable: int GradientColor_android_endColor -com.google.android.material.textfield.TextInputLayout: int getEndIconMode() -androidx.recyclerview.R$styleable: int GradientColor_android_type -com.tencent.bugly.proguard.ap: boolean c -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontWeight -androidx.constraintlayout.widget.R$attr: int alphabeticModifiers -james.adaptiveicon.R$drawable: int abc_spinner_mtrl_am_alpha -okhttp3.Protocol: okhttp3.Protocol[] $VALUES -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_enabled -cyanogenmod.weather.WeatherLocation: int hashCode() -androidx.coordinatorlayout.R$id: int left -cyanogenmod.app.CustomTile: java.lang.String access$302(cyanogenmod.app.CustomTile,java.lang.String) -com.turingtechnologies.materialscrollbar.R$layout: int select_dialog_item_material -androidx.appcompat.widget.ActivityChooserView: ActivityChooserView(android.content.Context,android.util.AttributeSet,int) -cyanogenmod.externalviews.ExternalViewProviderService$1: cyanogenmod.externalviews.ExternalViewProviderService this$0 -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: void completion() -com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_background -com.google.android.material.button.MaterialButton: void setChecked(boolean) -com.google.android.material.R$styleable: int AppCompatImageView_tint -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large -retrofit2.ParameterHandler$Path -okhttp3.internal.Internal: void initializeInstanceForTests() -io.reactivex.Observable: io.reactivex.Single collect(java.util.concurrent.Callable,io.reactivex.functions.BiConsumer) -io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long serialVersionUID -com.google.android.material.R$id: int action_mode_bar_stub -androidx.fragment.R$id: int accessibility_custom_action_9 -androidx.appcompat.widget.AppCompatCheckBox: android.content.res.ColorStateList getSupportBackgroundTintList() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getLogo() -androidx.hilt.lifecycle.R$styleable: R$styleable() -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Determinate -okhttp3.internal.http2.Http2Connection: int INTERVAL_PING -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService$1 -com.xw.repo.bubbleseekbar.R$layout: int abc_activity_chooser_view_list_item -okhttp3.Cache$CacheResponseBody$1 -com.tencent.bugly.crashreport.common.info.a: java.lang.String g() -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large -wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_grey -androidx.appcompat.R$dimen: int abc_edit_text_inset_bottom_material -androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTotalPrecipitation(java.lang.Float) -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -com.google.android.material.R$styleable: int FloatingActionButton_hoveredFocusedTranslationZ -cyanogenmod.weather.IRequestInfoListener: void onLookupCityRequestCompleted(cyanogenmod.weather.RequestInfo,int,java.util.List) -wangdaye.com.geometricweather.R$id: int activity_widget_config_wall -okio.SegmentedByteString: okio.ByteString hmacSha256(okio.ByteString) -okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode COMPRESSION_ERROR -cyanogenmod.os.Concierge$ParcelInfo: android.os.Parcel mParcel -androidx.coordinatorlayout.R$id: int tag_accessibility_pane_title -com.jaredrummler.android.colorpicker.R$attr: int navigationContentDescription -androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackground(android.graphics.drawable.Drawable) -com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_listLayout -androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_padding_start_material -io.reactivex.internal.util.NotificationLite$ErrorNotification: NotificationLite$ErrorNotification(java.lang.Throwable) -wangdaye.com.geometricweather.R$attr: int listMenuViewStyle -com.google.android.material.R$string: int mtrl_picker_a11y_prev_month +wangdaye.com.geometricweather.R$styleable: int NavigationView_headerLayout +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String COL_KEY +okio.SegmentedByteString: java.lang.String string(java.nio.charset.Charset) +wangdaye.com.geometricweather.R$string: int key_distance_unit +com.jaredrummler.android.colorpicker.R$color: int secondary_text_default_material_dark +androidx.lifecycle.ProcessLifecycleOwnerInitializer +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ActionBar_TabView +retrofit2.Retrofit: Retrofit(okhttp3.Call$Factory,okhttp3.HttpUrl,java.util.List,java.util.List,java.util.concurrent.Executor,boolean) +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_disabled_elevation +io.reactivex.observers.DisposableObserver: java.util.concurrent.atomic.AtomicReference upstream +com.turingtechnologies.materialscrollbar.R$styleable: int MenuGroup_android_menuCategory +androidx.vectordrawable.animated.R$styleable: int ColorStateListItem_alpha +com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace[] values() +cyanogenmod.content.Intent: java.lang.String EXTRA_PROTECTED_STATE +com.bumptech.glide.integration.okhttp.R$attr: int fontVariationSettings +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_LOCATION +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: boolean cancelled +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_holo_light +cyanogenmod.weather.WeatherInfo$Builder: boolean isValidWindSpeedUnit(int) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotationX +androidx.viewpager.widget.ViewPager: void setAdapter(androidx.viewpager.widget.PagerAdapter) +androidx.fragment.R$drawable +androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_ttcIndex +androidx.preference.R$attr: int textAppearanceLargePopupMenu +com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_type +com.google.android.material.navigation.NavigationView +com.xw.repo.bubbleseekbar.R$attr: int paddingStart +wangdaye.com.geometricweather.R$string: int content_des_pm25 +com.turingtechnologies.materialscrollbar.R$id: int topPanel +androidx.work.R$id: int action_divider +cyanogenmod.app.suggest.IAppSuggestManager: java.util.List getSuggestions(android.content.Intent) +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBaseline_creator +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void innerComplete(io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver$InnerObserver) +cyanogenmod.externalviews.ExternalView: void onActivityDestroyed(android.app.Activity) +com.google.android.material.R$integer: R$integer() +android.didikee.donate.R$id: int image +androidx.legacy.coreutils.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_maxActionInlineWidth +io.reactivex.Observable: io.reactivex.Observable doAfterTerminate(io.reactivex.functions.Action) +com.tencent.bugly.b +com.google.android.material.slider.Slider: void setThumbStrokeWidthResource(int) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ButtonBar +com.google.android.material.R$color: int mtrl_filled_icon_tint +com.tencent.bugly.crashreport.common.info.AppInfo: java.lang.String i(android.content.Context) +androidx.lifecycle.SavedStateHandle: java.lang.Class[] ACCEPTABLE_CLASSES +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: cyanogenmod.hardware.DisplayMode[] getDisplayModes() +androidx.constraintlayout.widget.R$dimen: int compat_notification_large_icon_max_width +androidx.preference.R$layout: int abc_action_mode_bar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric() +androidx.preference.R$styleable: int FontFamily_fontProviderCerts +androidx.constraintlayout.widget.R$styleable: int MenuView_android_verticalDivider +cyanogenmod.profiles.ConnectionSettings: int PROFILE_CONNECTION_GPS +com.turingtechnologies.materialscrollbar.R$attr: int hintTextAppearance +androidx.constraintlayout.widget.R$styleable: int MenuItem_android_onClick +cyanogenmod.weather.CMWeatherManager$1$1: java.lang.String val$providerName +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: boolean isValid() +com.google.android.material.R$styleable: int FlowLayout_lineSpacing +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_56 +com.jaredrummler.android.colorpicker.R$drawable: int abc_spinner_mtrl_am_alpha +wangdaye.com.geometricweather.R$dimen: int design_bottom_navigation_item_min_width +okio.AsyncTimeout: okio.AsyncTimeout next +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer degreeDayTemperature +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Position: java.lang.String timezone +androidx.constraintlayout.widget.R$styleable: int Transition_autoTransition +com.google.android.material.R$id: int tag_accessibility_clickable_spans +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_end_padding +okio.Buffer$1: Buffer$1(okio.Buffer) +androidx.legacy.coreutils.R$dimen: int notification_big_circle_margin +com.google.gson.stream.JsonWriter: boolean isLenient() +okhttp3.internal.http.HttpDate: java.util.Date parse(java.lang.String) +retrofit2.Platform: int defaultConverterFactoriesSize() +com.amap.api.location.AMapLocationQualityReport: void setNetUseTime(long) +wangdaye.com.geometricweather.R$attr: int checkedButton +okio.DeflaterSink: void write(okio.Buffer,long) +wangdaye.com.geometricweather.R$attr: int autoSizeMaxTextSize +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textColorAlertDialogListItem +okhttp3.internal.http2.Settings: int getMaxConcurrentStreams(int) +com.amap.api.location.APSServiceBase: android.os.IBinder onBind(android.content.Intent) +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetStartWithNavigation +android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableRight +com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu_Overflow +com.google.android.material.R$id: int unlabeled +androidx.appcompat.widget.AppCompatCheckedTextView: void setCheckMarkDrawable(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_69 +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Borderless +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +androidx.fragment.R$string +com.google.android.gms.internal.location.zzl +wangdaye.com.geometricweather.R$styleable: int[] TextInputEditText +androidx.constraintlayout.widget.R$styleable: int[] SearchView +com.google.gson.stream.JsonWriter: int[] stack +okhttp3.internal.ws.RealWebSocket: java.util.Random random +retrofit2.Retrofit$Builder: boolean validateEagerly +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: boolean isDisposed() +androidx.appcompat.resources.R$id: int accessibility_custom_action_25 +wangdaye.com.geometricweather.R$dimen: int abc_button_padding_vertical_material +wangdaye.com.geometricweather.R$styleable: int KeyCycle_android_rotationX +cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle() +androidx.appcompat.R$attr: int actionModeBackground +com.tencent.bugly.b: boolean a(com.tencent.bugly.crashreport.common.info.a) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableBottomCompat +com.google.android.material.R$color: int mtrl_btn_text_btn_bg_color_selector +com.google.android.material.bottomappbar.BottomAppBar: com.google.android.material.bottomappbar.BottomAppBarTopEdgeTreatment getTopEdgeTreatment() +retrofit2.converter.gson.package-info +io.reactivex.Observable: io.reactivex.Observable skip(long) +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_dither +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode +androidx.loader.R$id: int right_side +android.didikee.donate.R$attr: int titleTextAppearance +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardMaxElevation +androidx.activity.R$id: int notification_main_column +androidx.vectordrawable.R$drawable: int notification_bg +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: long serialVersionUID +androidx.appcompat.R$attr: int drawableRightCompat +androidx.appcompat.R$dimen: int abc_edit_text_inset_top_material +com.google.android.material.R$styleable: int[] ClockFaceView +androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_barLength +com.tencent.bugly.proguard.af +okio.SegmentedByteString: void write(okio.Buffer) +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_selection_text_baseline_to_bottom_fullscreen +wangdaye.com.geometricweather.R$styleable: int[] SwitchMaterial +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_seekBarStyle +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_showDividers +wangdaye.com.geometricweather.R$attr: int itemShapeInsetStart +james.adaptiveicon.R$attr: int fontProviderFetchTimeout +androidx.core.R$drawable: int notification_template_icon_low_bg +androidx.appcompat.R$attr: int dropdownListPreferredItemHeight +androidx.core.R$color: int androidx_core_ripple_material_light +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +com.google.android.material.R$attr: int counterTextAppearance +retrofit2.BuiltInConverters$RequestBodyConverter: java.lang.Object convert(java.lang.Object) +androidx.dynamicanimation.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_xml +wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line1_head_interpolator +com.google.android.material.R$attr: int layoutDuringTransition +okhttp3.OkHttpClient: java.net.Proxy proxy +okhttp3.logging.LoggingEventListener: void dnsEnd(okhttp3.Call,java.lang.String,java.util.List) +com.google.android.material.R$styleable: int StateListDrawable_android_visible +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setUrl(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_motionProgress +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: java.util.concurrent.atomic.AtomicReference latest +com.google.android.material.chip.Chip: void setCloseIconSize(float) +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$attr: int keylines +android.didikee.donate.R$styleable: int SearchView_queryHint +cyanogenmod.externalviews.KeyguardExternalView$6: boolean val$screenOn +okhttp3.Request$Builder +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Light +james.adaptiveicon.R$dimen: int highlight_alpha_material_colored +com.google.android.material.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks mCallback +james.adaptiveicon.R$dimen: int abc_dialog_min_width_major +okhttp3.Address: boolean equals(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetLeft +wangdaye.com.geometricweather.R$color: int background_material_dark +androidx.constraintlayout.widget.R$attr: int circleRadius +wangdaye.com.geometricweather.R$drawable: int shortcuts_thunderstorm +androidx.transition.R$dimen: int notification_small_icon_size_as_large +io.reactivex.Observable: io.reactivex.Observable concatMap(io.reactivex.functions.Function) +com.tencent.bugly.proguard.f: void a(com.tencent.bugly.proguard.i) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: java.lang.Integer direction +okhttp3.internal.platform.Platform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.X509TrustManager) +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Light +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: MfForecastV2Result() +androidx.appcompat.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation: wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService$DeviceOrientation BOTTOM +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicInteger windows +wangdaye.com.geometricweather.R$id: int action_container +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_panelBackground +wangdaye.com.geometricweather.R$string: int fab_transformation_scrim_behavior +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_range_start_hint +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: void setNotice(java.lang.String) +retrofit2.adapter.rxjava2.ResultObservable$ResultObserver: void onComplete() +com.bumptech.glide.integration.okhttp.R$style: int TextAppearance_Compat_Notification_Title +androidx.hilt.work.R$styleable: int FontFamily_fontProviderQuery +com.bumptech.glide.R$style: int Widget_Compat_NotificationActionText +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a: TraceFileHelper$a() +cyanogenmod.content.Intent +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: void onError(java.lang.Throwable) +com.google.android.material.R$styleable: int AppBarLayoutStates_state_collapsible +com.turingtechnologies.materialscrollbar.R$id: int textSpacerNoButtons +james.adaptiveicon.R$style: int Base_Widget_AppCompat_PopupMenu +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String[] ROWS +wangdaye.com.geometricweather.R$style: int Platform_MaterialComponents_Light_Dialog +androidx.preference.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +io.reactivex.Observable: io.reactivex.Observable materialize() +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_5 +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Bridge +wangdaye.com.geometricweather.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeRainPrecipitationDuration(java.lang.Float) +com.jaredrummler.android.colorpicker.R$attr: int actionModeStyle +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void onNext(java.lang.Object) +android.didikee.donate.R$attr: int isLightTheme +android.didikee.donate.R$color: int switch_thumb_disabled_material_light +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getBootanimationThemePackageName() +androidx.viewpager2.R$id: int accessibility_custom_action_24 +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_RC4_128_SHA +cyanogenmod.hardware.ThermalListenerCallback$State +cyanogenmod.content.Intent: java.lang.String ACTION_OPEN_LIVE_LOCKSCREEN_SETTINGS +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date date +okhttp3.internal.http2.Http2Connection +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_textAppearance +wangdaye.com.geometricweather.R$string: int not_set +com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_linear +okio.RealBufferedSource: int readIntLe() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: double Value +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias +com.jaredrummler.android.colorpicker.R$id: int list_item +wangdaye.com.geometricweather.R$drawable: int ic_building com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Display4 -okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$StreamTimeout readTimeout -androidx.appcompat.resources.R$styleable: int[] GradientColor -wangdaye.com.geometricweather.R$color: int darkPrimary_5 -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoldIndex -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.HourlyEntity) -androidx.fragment.app.FragmentState -androidx.preference.R$styleable: int Preference_android_widgetLayout -wangdaye.com.geometricweather.R$id: int buttonPanel -wangdaye.com.geometricweather.R$styleable: int KeyPosition_keyPositionType -androidx.hilt.work.R$id: int accessibility_custom_action_22 -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_max -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String getProviderId() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: int status -wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: int getMarginBottom() -androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_2_material -com.amap.api.location.AMapLocation: java.lang.String getLocationDetail() +okhttp3.OkHttpClient$Builder: java.util.List interceptors +james.adaptiveicon.R$styleable: int Toolbar_buttonGravity +wangdaye.com.geometricweather.R$id: int animateToStart +com.turingtechnologies.materialscrollbar.R$attr: int tabIconTint +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setStatus(int) +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitle_inputLayout +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionButton +com.google.android.material.textfield.TextInputLayout: void setSuffixText(java.lang.CharSequence) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_alphabeticShortcut +com.google.android.material.appbar.AppBarLayout$Behavior +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_textColorHint +com.google.android.material.R$dimen: int abc_text_size_menu_header_material +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Large +com.google.android.material.R$dimen: int abc_text_size_display_2_material +wangdaye.com.geometricweather.R$styleable: int DrawerArrowToggle_spinBars +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog_Alert +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_LED_OFF +okio.RealBufferedSource: okio.Buffer buffer +okhttp3.Cache$1: void remove(okhttp3.Request) +androidx.drawerlayout.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language GREEK +okhttp3.Response: int code() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +com.google.android.material.R$dimen: int mtrl_calendar_header_text_padding +androidx.preference.R$attr: int listPreferredItemPaddingRight +com.google.android.material.R$string: int material_timepicker_am +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: java.lang.Object v1 +wangdaye.com.geometricweather.R$id: int icon_only +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintVertical_chainStyle +com.bumptech.glide.R$id: int icon +com.xw.repo.bubbleseekbar.R$attr: int ratingBarStyleSmall +com.bumptech.glide.load.engine.GlideException: void printStackTrace(java.io.PrintWriter) +androidx.lifecycle.ViewModelProvider$KeyedFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) +androidx.lifecycle.extensions.R$style: R$style() +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.google.android.material.transformation.FabTransformationSheetBehavior: FabTransformationSheetBehavior() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_Button_Borderless +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: com.google.android.material.animation.MotionSpec getExtendMotionSpec() +androidx.preference.R$attr: int actionModeBackground +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver: long serialVersionUID +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.ActionMode onWindowStartingActionMode(android.view.ActionMode$Callback,int) +wangdaye.com.geometricweather.R$xml +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarButtonStyle +com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_content_include +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver parent +androidx.preference.R$attr: int popupMenuStyle +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textSize +wangdaye.com.geometricweather.R$drawable: int weather_snow_2 +james.adaptiveicon.R$dimen: int abc_text_size_menu_header_material +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerNext() +okhttp3.Request$Builder: okhttp3.Request$Builder tag(java.lang.Class,java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: boolean daylight +okhttp3.OkHttpClient: okhttp3.CookieJar cookieJar() +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void startTimeout(long) +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void dispose() +wangdaye.com.geometricweather.R$attr: int closeIconStartPadding +com.google.gson.JsonParseException +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Dialog +wangdaye.com.geometricweather.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_NoActionBar +com.jaredrummler.android.colorpicker.R$anim: int abc_fade_in +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.appcompat.resources.R$id: int notification_main_column +com.jaredrummler.android.colorpicker.R$id: int text +com.bumptech.glide.R$id: int right_icon +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: java.lang.String getZh_CN() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse +com.google.android.material.R$styleable: int AppCompatTextView_autoSizeTextType +wangdaye.com.geometricweather.R$id: int grassIcon +androidx.constraintlayout.widget.R$attr: int textAppearanceSearchResultTitle +com.tencent.bugly.crashreport.common.info.a: java.lang.String d +androidx.appcompat.resources.R$attr: int fontProviderFetchTimeout +androidx.work.R$id: int notification_main_column +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabPaddingTop +android.didikee.donate.R$id: int notification_main_column_container +wangdaye.com.geometricweather.R$color: int mtrl_tabs_ripple_color +wangdaye.com.geometricweather.R$drawable: int notif_temp_52 +androidx.customview.R$attr: int fontProviderAuthority +wangdaye.com.geometricweather.R$id: int text_input_start_icon +androidx.viewpager.R$attr: int fontStyle +androidx.vectordrawable.R$styleable: int GradientColorItem_android_color +com.google.android.material.R$style: int TextAppearance_AppCompat_Inverse +com.google.android.material.slider.BaseSlider: int getActiveThumbIndex() +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isSingle +androidx.constraintlayout.widget.R$styleable: int Layout_minHeight +com.google.android.material.textfield.TextInputLayout: void setPasswordVisibilityToggleDrawable(int) +androidx.appcompat.R$drawable: int notification_bg +wangdaye.com.geometricweather.R$attr: int colorOnSurface +androidx.preference.R$styleable: int PreferenceImageView_android_maxHeight +cyanogenmod.providers.CMSettings$System: java.lang.String INCREASING_RING_START_VOLUME +android.didikee.donate.R$attr: int thumbTintMode +androidx.dynamicanimation.R$drawable: int notification_icon_background +wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_elevation +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler +io.reactivex.internal.subscribers.DeferredScalarSubscriber: void cancel() +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_month_horizontal_padding +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView_Menu +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_box_inner_merged_animation +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type ERROR +androidx.constraintlayout.widget.R$layout: int abc_select_dialog_material +androidx.lifecycle.ViewModelProviders: androidx.lifecycle.ViewModelProvider of(androidx.fragment.app.FragmentActivity) +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties +androidx.work.R$dimen: int notification_action_text_size +james.adaptiveicon.R$attr: int actionButtonStyle +com.google.android.material.R$styleable: int AppBarLayout_statusBarForeground +com.jaredrummler.android.colorpicker.R$attr: int colorButtonNormal +wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Top_Right +wangdaye.com.geometricweather.R$attr: int cornerFamily +com.google.android.material.R$styleable: int AppCompatTheme_windowFixedWidthMinor +androidx.preference.R$styleable: int SearchView_android_inputType +cyanogenmod.externalviews.ExternalView$1: void onServiceDisconnected(android.content.ComponentName) +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setAlarm(java.lang.String) +androidx.loader.R$id: int info +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: java.lang.String Unit +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderConfirmButton +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float pressure +androidx.preference.R$layout: int abc_action_bar_up_container +androidx.preference.R$style: int Widget_AppCompat_EditText +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String mCallGetCommand +com.amap.api.location.LocationManagerBase: void startLocation() +com.bumptech.glide.R$id: int actions +com.google.android.material.R$id: int transition_transform +com.tencent.bugly.crashreport.biz.a: void a() +com.google.android.material.R$color: int design_dark_default_color_primary +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_SearchResult_Title +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_256_GCM_SHA384 +cyanogenmod.app.CustomTile: java.lang.String resourcesPackageName +wangdaye.com.geometricweather.R$dimen: R$dimen() +com.google.android.material.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight +com.google.android.material.R$dimen: int mtrl_textinput_box_stroke_width_default +androidx.appcompat.widget.AppCompatRadioButton: void setSupportBackgroundTintList(android.content.res.ColorStateList) +cyanogenmod.providers.CMSettings: java.lang.String TAG +okhttp3.Cache: void delete() +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_half_black_48dp +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_flow_lastVerticalBias +androidx.appcompat.R$styleable: int[] MenuView +okhttp3.internal.cache.CacheStrategy$Factory: long computeFreshnessLifetime() +okhttp3.MultipartBody$Part: okhttp3.RequestBody body +wangdaye.com.geometricweather.R$dimen: int mtrl_fab_elevation +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowActionBarOverlay +com.xw.repo.bubbleseekbar.R$integer: int status_bar_notification_info_maxnum +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnClickListener(android.view.View$OnClickListener) +cyanogenmod.hardware.CMHardwareManager: int getVibratorDefaultIntensity() +com.tencent.bugly.CrashModule: void a(android.content.Context,com.tencent.bugly.BuglyStrategy) +androidx.transition.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.remoteviews.config.Hilt_WeekWidgetConfigActivity +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: int getPollenColor(android.content.Context,java.lang.Integer) +com.jaredrummler.android.colorpicker.R$attr: int defaultValue +androidx.legacy.coreutils.R$styleable: int GradientColor_android_startColor +androidx.hilt.R$id +androidx.transition.R$id: int tag_unhandled_key_listeners +androidx.preference.R$attr: int contentInsetLeft +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight +androidx.preference.R$drawable: int abc_ic_star_half_black_36dp +android.didikee.donate.R$color: int abc_primary_text_disable_only_material_dark +android.didikee.donate.R$color: int material_deep_teal_200 +androidx.appcompat.R$dimen: int abc_text_size_body_2_material +retrofit2.Response: java.lang.Object body() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String treeDescription +wangdaye.com.geometricweather.R$string: int content_des_swipe_left_to_delete +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) +cyanogenmod.app.CMStatusBarManager: void publishTile(java.lang.String,int,cyanogenmod.app.CustomTile) +wangdaye.com.geometricweather.R$styleable: int Constraint_transitionPathRotate +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String locationKey +androidx.appcompat.R$anim: int btn_checkbox_to_unchecked_check_path_merged_animation +androidx.appcompat.widget.AppCompatSpinner: androidx.appcompat.widget.AppCompatSpinner$SpinnerPopup getInternalPopup() +androidx.cardview.R$styleable: int CardView_contentPaddingLeft +com.jaredrummler.android.colorpicker.R$styleable: int[] ViewBackgroundHelper +okhttp3.OkHttpClient: java.util.List connectionSpecs +androidx.appcompat.widget.AppCompatEditText: void setBackgroundResource(int) +com.google.android.material.R$id: int sawtooth +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Snackbar_Message +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTheme +androidx.work.R$bool +cyanogenmod.media.MediaRecorder: java.lang.String EXTRA_CURRENT_PACKAGE_NAME +androidx.appcompat.R$dimen: int notification_action_text_size +androidx.preference.R$style: int Preference_DropDown +com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: MfRainResult$RainForecast() +wangdaye.com.geometricweather.R$string: int copy +cyanogenmod.hardware.CMHardwareManager: int FEATURE_TOUCH_HOVERING +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceTimedObserver parent +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric +com.baidu.location.indoor.mapversion.c.c$b: double f +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Subhead +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +wangdaye.com.geometricweather.db.entities.DaoSession: org.greenrobot.greendao.internal.DaoConfig hourlyEntityDaoConfig +com.google.android.material.R$style: int Widget_AppCompat_Light_PopupMenu_Overflow +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +androidx.lifecycle.extensions.R$dimen: int notification_right_icon_size +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.transition.R$dimen: int notification_main_column_padding_top +james.adaptiveicon.R$attr: int textAppearanceSearchResultSubtitle +wangdaye.com.geometricweather.R$styleable: int[] ViewPager2 +androidx.appcompat.widget.LinearLayoutCompat: int getOrientation() +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Overline +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature Temperature +okhttp3.HttpUrl: java.lang.String USERNAME_ENCODE_SET +okhttp3.Headers: java.util.List values(java.lang.String) +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: boolean isLeft +okhttp3.Cookie: boolean equals(java.lang.Object) +com.google.android.material.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +androidx.appcompat.R$style: int Base_AlertDialog_AppCompat +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_min +wangdaye.com.geometricweather.R$drawable: int ic_top +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Minimum Minimum +androidx.appcompat.R$anim: int abc_fade_out +retrofit2.KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1: KotlinExtensions$suspendAndThrow$$inlined$suspendCoroutineUninterceptedOrReturn$lambda$1(kotlin.coroutines.Continuation,java.lang.Exception) +androidx.constraintlayout.widget.R$attr: int dragScale +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setOnChildScrollUpCallback(androidx.swiperefreshlayout.widget.SwipeRefreshLayout$OnChildScrollUpCallback) +com.bumptech.glide.R$styleable: int ColorStateListItem_android_color +androidx.viewpager.R$dimen: int compat_button_padding_vertical_material +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_primary_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemHorizontalPadding +com.google.android.material.R$string: int abc_searchview_description_submit +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator DISPLAY_COLOR_ENHANCE_VALIDATOR +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitation +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Subhead +cyanogenmod.app.CustomTile +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$EntrySet entrySet +com.google.gson.internal.LazilyParsedNumber: double doubleValue() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getSupportedFeatures_0 +com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_corner_material +androidx.recyclerview.R$styleable: int RecyclerView_stackFromEnd +androidx.customview.R$id: int blocking +androidx.dynamicanimation.R$dimen: R$dimen() +androidx.appcompat.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: FitHorizontalSystemBarRootLayout(android.content.Context) +android.didikee.donate.R$style: int AlertDialog_AppCompat +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setAqi(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean) +androidx.appcompat.R$attr: int paddingStart +io.reactivex.internal.operators.flowable.FlowableOnBackpressureError$BackpressureErrorSubscriber +james.adaptiveicon.R$dimen: int abc_action_button_min_height_material +wangdaye.com.geometricweather.R$styleable: int[] ArcProgress +com.google.android.material.R$styleable: int NavigationView_android_background +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint DewPoint +com.google.android.material.R$layout: int notification_template_icon_group +com.google.android.material.R$color: int material_blue_grey_800 +wangdaye.com.geometricweather.R$dimen: int design_snackbar_text_size +wangdaye.com.geometricweather.settings.activities.AboutActivity +com.jaredrummler.android.colorpicker.R$id: int scrollView +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_android_elevation +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit NMI +com.google.android.material.bottomnavigation.BottomNavigationView$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$id: int below_section_mark +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: java.lang.String Localized +okhttp3.internal.http2.Http2Connection$ReaderRunnable: void execute() +androidx.recyclerview.R$drawable: int notification_action_background +androidx.appcompat.R$anim +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionMenuTextColor +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode +cyanogenmod.app.CustomTile$ExpandedItem +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: okio.Timeout timeout() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void setInteractivity(boolean) +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode HAIL +androidx.preference.R$attr: int textColorAlertDialogListItem +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getTitle() +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +com.google.android.material.R$integer: int mtrl_btn_anim_duration_ms +com.google.android.material.R$color: int material_on_surface_emphasis_medium +android.didikee.donate.R$id: int edit_query +com.tencent.bugly.crashreport.a +androidx.preference.R$styleable: int[] TextAppearance +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: java.lang.String Unit +androidx.dynamicanimation.R$color: int notification_action_color_filter +com.jaredrummler.android.colorpicker.R$attr: int srcCompat +cyanogenmod.weather.WeatherInfo$Builder: WeatherInfo$Builder(java.lang.String,double,int) +com.google.android.material.R$dimen: int design_bottom_navigation_icon_size +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer treeLevel +okhttp3.CipherSuite: java.lang.String javaName +com.xw.repo.bubbleseekbar.R$id: int add +androidx.vectordrawable.animated.R$layout: int notification_action_tombstone +com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_entries +wangdaye.com.geometricweather.R$attr: int cpv_animSteps +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder allEnabledTlsVersions() +io.reactivex.internal.operators.observable.ObserverResourceWrapper: boolean isDisposed() +cyanogenmod.externalviews.KeyguardExternalView$6: cyanogenmod.externalviews.KeyguardExternalView this$0 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String MobileLink +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: void request(long) +okio.Buffer: okio.Buffer copyTo(java.io.OutputStream,long,long) +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setAppPackageName(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_checked +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_EXPORT_WITH_RC4_40_MD5 +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_day_width +com.jaredrummler.android.colorpicker.R$attr: int coordinatorLayoutStyle +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintVertical_chainStyle +com.xw.repo.bubbleseekbar.R$attr: int switchMinWidth +androidx.appcompat.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$color: int design_default_color_error +androidx.appcompat.R$style: int Base_Theme_AppCompat +com.google.android.material.R$attr: int editTextStyle +com.google.android.material.R$attr: int insetForeground +androidx.appcompat.R$dimen: int abc_text_size_display_3_material +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float snowPrecipitation +com.google.android.material.R$attr: int itemTextAppearance +com.google.android.material.R$color: int design_default_color_on_background +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$color: int mtrl_textinput_hovered_box_stroke_color +okhttp3.Response: okhttp3.Response priorResponse() +com.tencent.bugly.a: void onDbCreate(android.database.sqlite.SQLiteDatabase) +james.adaptiveicon.R$color: int primary_text_disabled_material_dark +androidx.appcompat.R$dimen: int abc_text_size_display_1_material +wangdaye.com.geometricweather.R$dimen: int abc_dialog_corner_radius_material +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterEnabled cyanogenmod.weather.CMWeatherManager: java.util.Set mProviderChangedListeners -io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit) -com.amap.api.location.AMapLocation: java.lang.Object clone() -androidx.hilt.work.R$drawable: int notification_tile_bg -android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse -okhttp3.internal.http.RealInterceptorChain: okhttp3.EventListener eventListener -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.util.ErrorMode errorMode -androidx.preference.PreferenceGroup$SavedState: android.os.Parcelable$Creator CREATOR -android.didikee.donate.R$anim: int abc_fade_in -com.google.android.material.imageview.ShapeableImageView -com.amap.api.location.AMapLocation: java.lang.String B -wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_textAppearance -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: void dispose() -androidx.constraintlayout.widget.R$attr: int layout_constraintBaseline_toBaselineOf -androidx.lifecycle.extensions.R$styleable: int FontFamilyFont_android_font -com.google.android.gms.common.internal.GetServiceRequest -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_title -androidx.lifecycle.extensions.R$id: int visible_removing_fragment_view_tag -com.google.android.material.R$styleable: int NavigationView_itemShapeInsetBottom -james.adaptiveicon.R$styleable: int PopupWindow_android_popupBackground -com.jaredrummler.android.colorpicker.R$styleable: int[] Spinner -okio.ByteString: int decodeHexDigit(char) -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setSubtitleText(java.lang.String) -okhttp3.internal.connection.RouteSelector: okhttp3.Address address -james.adaptiveicon.R$style: int Theme_AppCompat_Dialog_MinWidth -com.google.android.material.R$id: int design_menu_item_action_area_stub -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnClickIntent(android.app.PendingIntent) -androidx.viewpager2.R$attr: int fastScrollHorizontalThumbDrawable -com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse -wangdaye.com.geometricweather.R$attr: int maxActionInlineWidth -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense -com.bumptech.glide.R$id: int action_image -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintCircle -cyanogenmod.power.IPerformanceManager$Stub: IPerformanceManager$Stub() -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float ParticulateMatter2_5 -com.google.android.material.R$drawable: int abc_btn_radio_material -androidx.preference.R$id: int accessibility_custom_action_13 -cyanogenmod.library.R$id: R$id() -wangdaye.com.geometricweather.R$attr: int itemRippleColor -cyanogenmod.profiles.ConnectionSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) -wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_width -androidx.preference.R$id: int time -com.jaredrummler.android.colorpicker.R$layout: int preference_dropdown -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather -wangdaye.com.geometricweather.R$attr: int hintTextAppearance -androidx.lifecycle.extensions.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetLeft -androidx.viewpager2.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.google.android.material.R$style: int Base_Widget_AppCompat_EditText -org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedWritableDb(java.lang.String) -android.didikee.donate.R$id: int expanded_menu -okio.HashingSource: java.security.MessageDigest messageDigest -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_keylines -okhttp3.internal.http2.Huffman: okhttp3.internal.http2.Huffman get() -com.jaredrummler.android.colorpicker.R$bool: R$bool() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property IcePrecipitationProbability -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Display3 -retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2 -com.google.gson.internal.LinkedTreeMap: java.lang.Object writeReplace() -androidx.constraintlayout.widget.R$id: int postLayout -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabView -wangdaye.com.geometricweather.R$styleable: int SwitchCompat_switchPadding -com.turingtechnologies.materialscrollbar.R$attr: int trackTintMode -com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_enabled -wangdaye.com.geometricweather.R$drawable: int tooltip_frame_light -com.tencent.bugly.proguard.q -androidx.appcompat.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog -android.didikee.donate.R$style: int Base_Widget_AppCompat_ButtonBar -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_elevation -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Body2 -androidx.constraintlayout.widget.R$layout: int custom_dialog -wangdaye.com.geometricweather.R$drawable: int ic_check_circle_green -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: int requestFusion(int) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int PrecipitationProbability -wangdaye.com.geometricweather.R$string: int abc_menu_meta_shortcut_label -androidx.appcompat.R$color: int ripple_material_light -com.amap.api.location.AMapLocationClientOption$2 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotationY -androidx.loader.R$dimen: R$dimen() +com.google.android.material.R$dimen: int abc_action_bar_content_inset_material +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: void onResponse(retrofit2.Call,retrofit2.Response) +androidx.appcompat.R$drawable: int abc_list_focused_holo +com.turingtechnologies.materialscrollbar.R$attr: int backgroundTint +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void onComplete() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_windowFixedHeightMajor +wangdaye.com.geometricweather.R$attr: int drawableTint +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: void onSubscribe(org.reactivestreams.Subscription) +okhttp3.internal.connection.RouteSelector: okhttp3.internal.connection.RouteSelector$Selection next() +cyanogenmod.app.BaseLiveLockManagerService: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$ItemAnimator getItemAnimator() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintGuide_percent +wangdaye.com.geometricweather.R$color: int design_fab_stroke_end_inner_color +cyanogenmod.hardware.IThermalListenerCallback$Stub: IThermalListenerCallback$Stub() +com.tencent.bugly.proguard.v: boolean t +cyanogenmod.app.CustomTile: cyanogenmod.app.CustomTile$ExpandedStyle expandedStyle +retrofit2.http.Part: java.lang.String value() +com.google.android.material.R$attr: int searchIcon +androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_chainStyle +wangdaye.com.geometricweather.R$dimen: int content_text_size +com.google.android.material.slider.Slider: int getHaloRadius() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_PopupMenu +okio.Okio$3 +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource) +cyanogenmod.providers.CMSettings$Global: java.lang.String WEATHER_TEMPERATURE_UNIT +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_getPowerProfile +com.google.android.material.R$color: int design_default_color_secondary +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_67 +androidx.appcompat.R$styleable: int SwitchCompat_trackTint +com.turingtechnologies.materialscrollbar.R$attr: int closeIconVisible +wangdaye.com.geometricweather.R$layout: int notification_template_part_time +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_DES_CBC_SHA +com.google.android.material.R$id: int select_dialog_listview +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_CompactMenu +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String unit +cyanogenmod.app.suggest.AppSuggestManager: AppSuggestManager(android.content.Context) +wangdaye.com.geometricweather.R$drawable: int abc_item_background_holo_dark +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView: TrendRecyclerView(android.content.Context,android.util.AttributeSet) +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_summaryOff +androidx.recyclerview.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$string: int summary_collapsed_preference_list +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionMode +com.google.android.material.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreferenceCompat +androidx.hilt.work.R$styleable: int GradientColor_android_endX +com.google.android.material.progressindicator.ProgressIndicator: void setVisibilityAfterHide(int) +io.reactivex.disposables.RunnableDisposable: void onDisposed(java.lang.Object) +okhttp3.MediaType: java.lang.String type +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken BEGIN_OBJECT +wangdaye.com.geometricweather.settings.dialogs.RunningInBackgroundDialog: RunningInBackgroundDialog() +androidx.preference.R$styleable: int Toolbar_titleMarginTop +io.reactivex.Observable: io.reactivex.Observable throttleWithTimeout(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$color: int design_bottom_navigation_shadow_color +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: java.lang.reflect.Type componentType +wangdaye.com.geometricweather.R$id: int circular +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +android.didikee.donate.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$string: int aqi_5 +retrofit2.ParameterHandler$Header: java.lang.String name +com.jaredrummler.android.colorpicker.R$dimen: int notification_small_icon_size_as_large +com.tencent.bugly.crashreport.CrashReport$CrashHandleCallback +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +com.google.android.material.R$dimen: int mtrl_high_ripple_default_alpha +wangdaye.com.geometricweather.settings.fragments.NotificationColorSettingsFragment +okhttp3.internal.connection.StreamAllocation: void streamFinished(boolean,okhttp3.internal.http.HttpCodec,long,java.io.IOException) +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: okhttp3.internal.http1.Http1Codec this$0 +androidx.constraintlayout.widget.R$color: int dim_foreground_material_dark +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +androidx.constraintlayout.widget.R$id: int flip +androidx.hilt.lifecycle.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$drawable: int weather_clear_night_mini_xml +com.google.android.material.R$attr: int tabPaddingEnd +com.tencent.bugly.proguard.v: byte[] e +com.google.android.material.R$styleable: int[] AlertDialog +com.google.gson.stream.JsonScope: int NONEMPTY_DOCUMENT +wangdaye.com.geometricweather.R$styleable: int[] ScrollingViewBehavior_Layout +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_autoSizeMinTextSize +wangdaye.com.geometricweather.R$color: int material_on_primary_disabled +com.google.android.material.circularreveal.CircularRevealGridLayout: android.graphics.drawable.Drawable getCircularRevealOverlayDrawable() +wangdaye.com.geometricweather.R$layout: int mtrl_picker_actions +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_0 +james.adaptiveicon.R$drawable: int abc_text_select_handle_left_mtrl_light +io.reactivex.Observable: void blockingSubscribe() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_srcCompat +cyanogenmod.themes.ThemeManager: int getProgress() +androidx.lifecycle.ReportFragment$ActivityInitializationListener: void onCreate() +com.google.android.material.R$styleable: int Constraint_android_scaleY +com.amap.api.location.AMapLocation: java.lang.String z +androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_Solid +androidx.recyclerview.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.R$styleable: int Transition_android_id +androidx.loader.app.LoaderManagerImpl$LoaderViewModel +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2 +com.google.android.material.R$attr: int layout_constraintStart_toEndOf +com.xw.repo.bubbleseekbar.R$layout: int notification_template_part_time +cyanogenmod.externalviews.ExternalViewProviderService$Provider +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LIVE_LOCK_SCREEN_THUMBNAIL +com.google.android.material.R$color: int secondary_text_default_material_light +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTextHelper +cyanogenmod.hardware.DisplayMode: void writeToParcel(android.os.Parcel,int) +androidx.fragment.app.FragmentTabHost: void setOnTabChangedListener(android.widget.TabHost$OnTabChangeListener) +androidx.recyclerview.R$color: int notification_icon_bg_color +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.database.Database getDatabase() +androidx.constraintlayout.widget.R$styleable: int Spinner_popupTheme +wangdaye.com.geometricweather.R$string: int about_glide +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeTotalPrecipitationProbability +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_title_material +androidx.hilt.work.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$drawable: int ic_settings +io.reactivex.Observable: io.reactivex.Observable timestamp(java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipMinTouchTargetSize +com.google.android.material.R$drawable: int design_bottom_navigation_item_background +com.xw.repo.bubbleseekbar.R$anim +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Body2 +androidx.constraintlayout.widget.R$styleable: int Transform_android_rotationX +cyanogenmod.weather.WeatherInfo: WeatherInfo() +androidx.loader.R$styleable: int GradientColor_android_startX +okhttp3.internal.platform.Platform: okhttp3.internal.tls.CertificateChainCleaner buildCertificateChainCleaner(javax.net.ssl.SSLSocketFactory) +wangdaye.com.geometricweather.R$id: int item_trend_hourly +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getTempMin() +com.google.android.material.R$attr: int layout_constraintHeight_percent +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCutDrawable +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree getNighttimeWindDegree() +wangdaye.com.geometricweather.R$style: int subtitle_text +androidx.appcompat.widget.LinearLayoutCompat: void setMeasureWithLargestChildEnabled(boolean) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeSplitBackground +com.xw.repo.bubbleseekbar.R$string: int abc_search_hint +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: int[] getVibratorIntensity() +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_bias +com.google.android.material.R$attr: int materialCalendarHeaderTitle +wangdaye.com.geometricweather.R$string: int key_location_service +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: long serialVersionUID +androidx.fragment.R$attr +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualObserver[] observers +androidx.legacy.coreutils.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_menuCategory +com.turingtechnologies.materialscrollbar.R$id: int design_navigation_view +cyanogenmod.weather.RequestInfo: java.lang.String mKey +com.google.android.material.R$id: int none +cyanogenmod.app.ThemeVersion$ComponentVersion: cyanogenmod.app.ThemeComponent component +com.jaredrummler.android.colorpicker.R$color: int secondary_text_disabled_material_dark +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.tencent.bugly.crashreport.biz.b: void a(com.tencent.bugly.crashreport.common.strategy.StrategyBean,boolean) +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMargin +cyanogenmod.app.suggest.AppSuggestManager: boolean handles(android.content.Intent) +com.google.android.gms.common.R$integer +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +retrofit2.Call: void enqueue(retrofit2.Callback) +com.google.android.gms.dynamic.RemoteCreator$RemoteCreatorException +wangdaye.com.geometricweather.R$attr: int cpv_allowCustom +androidx.preference.R$style: int TextAppearance_AppCompat_Body2 +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noTransform() +androidx.preference.R$attr: int track +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_y_offset_non_touch +wangdaye.com.geometricweather.background.polling.work.worker.TomorrowForecastUpdateWorker +androidx.appcompat.widget.ActionMenuView: android.view.Menu getMenu() +androidx.appcompat.R$color: int switch_thumb_disabled_material_light +androidx.fragment.R$style: int TextAppearance_Compat_Notification +com.turingtechnologies.materialscrollbar.R$drawable: int abc_cab_background_internal_bg +com.google.gson.stream.JsonScope: JsonScope() +androidx.appcompat.R$style: int Widget_Compat_NotificationActionContainer +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorSwitchThumbNormal +com.turingtechnologies.materialscrollbar.R$attr: int tabPaddingEnd +io.reactivex.internal.operators.observable.ObservableDebounceTimed$DebounceEmitter: boolean isDisposed() +com.google.android.material.R$styleable: int FloatingActionButton_showMotionSpec +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_CBC_SHA +com.google.android.material.R$drawable: int notification_bg_normal +com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String c +cyanogenmod.util.ColorUtils: int findPerceptuallyNearestSolidColor(int) +androidx.coordinatorlayout.R$id: int line1 +com.google.android.material.datepicker.DateValidatorPointBackward +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeCutDrawable +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_headline_material +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: java.lang.Object next() +com.google.android.material.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: void setTrimPathEnd(float) +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +androidx.appcompat.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +io.reactivex.internal.operators.observable.ObservableCreate$CreateEmitter: boolean tryOnError(java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$dimen: int notification_media_narrow_margin +cyanogenmod.weather.CMWeatherManager$2$2: java.util.List val$weatherLocations +wangdaye.com.geometricweather.R$id: int transparency_seekbar +androidx.viewpager2.widget.ViewPager2: int getScrollState() +androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$styleable: int TextInputLayout_endIconTintMode +com.google.android.material.button.MaterialButtonToggleGroup: int getVisibleButtonCount() +cyanogenmod.app.CustomTile: java.lang.String toString() +androidx.lifecycle.FullLifecycleObserverAdapter: FullLifecycleObserverAdapter(androidx.lifecycle.FullLifecycleObserver,androidx.lifecycle.LifecycleEventObserver) +cyanogenmod.profiles.RingModeSettings +cyanogenmod.app.ProfileGroup: void readFromParcel(android.os.Parcel) +com.google.android.material.progressindicator.ProgressIndicator: int[] getIndicatorColors() +com.google.android.gms.common.api.internal.zabi +okhttp3.internal.tls.DistinguishedNameParser: int length +james.adaptiveicon.R$drawable: int abc_tab_indicator_material +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_levelValue +wangdaye.com.geometricweather.R$attr: int buttonIconDimen +androidx.appcompat.widget.AppCompatSpinner: android.graphics.drawable.Drawable getPopupBackground() +wangdaye.com.geometricweather.R$anim: int abc_slide_out_top +com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +io.reactivex.internal.queue.SpscArrayQueue: boolean offer(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: java.util.List DataSets +androidx.appcompat.resources.R$attr: R$attr() +android.didikee.donate.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +com.google.android.material.R$styleable: int Slider_thumbStrokeWidth +retrofit2.ParameterHandler$Header: retrofit2.Converter valueConverter +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String o3Desc +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_appearance +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams access$300(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +okhttp3.MediaType: java.lang.String type() +com.google.android.material.R$animator: int design_appbar_state_list_animator +androidx.viewpager2.R$id: int accessibility_custom_action_12 +cyanogenmod.app.Profile: void writeToParcel(android.os.Parcel,int) +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onKeyguardDismissed() +com.google.android.material.R$styleable: int OnSwipe_dragDirection +com.google.android.material.R$attr: int actionModeShareDrawable +com.tencent.bugly.proguard.z: byte[] a(android.os.Parcelable) +androidx.lifecycle.extensions.R$dimen: int compat_button_padding_horizontal_material +com.google.android.material.textfield.MaterialAutoCompleteTextView: void setAdapter(android.widget.ListAdapter) +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.util.Date date +com.tencent.bugly.crashreport.crash.c: void h() +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_setActiveProfileByName +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: java.lang.String icon +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_Dialog_MinWidth +androidx.constraintlayout.utils.widget.MockView +androidx.recyclerview.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable +androidx.preference.PreferenceGroup: PreferenceGroup(android.content.Context,android.util.AttributeSet) +androidx.lifecycle.AndroidViewModel +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_chip_pressed_translation_z +com.turingtechnologies.materialscrollbar.R$attr: int tabBackground +com.tencent.bugly.Bugly: java.lang.String[] c +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay TAG_UV_INDEX +com.tencent.bugly.proguard.z: byte[] a(int,byte[],byte[]) +com.google.gson.JsonParseException: long serialVersionUID +okhttp3.HttpUrl: int defaultPort(java.lang.String) +androidx.preference.R$dimen: int abc_dialog_padding_material +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onError(java.lang.Throwable) +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_anchor +wangdaye.com.geometricweather.R$layout: int abc_screen_simple +okhttp3.internal.http2.Hpack$Reader: int readInt(int,int) +cyanogenmod.app.LiveLockScreenManager: void cancel(int) +androidx.constraintlayout.widget.R$styleable: int PropertySet_motionProgress +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRainPrecipitation +okhttp3.internal.platform.AndroidPlatform: boolean api24IsCleartextTrafficPermitted(java.lang.String,java.lang.Class,java.lang.Object) +okhttp3.OkHttpClient$1: java.net.Socket deduplicate(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: java.lang.Object poll() +wangdaye.com.geometricweather.settings.activities.DailyTrendDisplayManageActivity +androidx.constraintlayout.widget.R$styleable: int Variant_region_heightMoreThan +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void onSuccess(java.lang.Object) +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarDivider +androidx.preference.R$attr: int colorBackgroundFloating +androidx.constraintlayout.widget.R$attr: int preserveIconSpacing +okhttp3.internal.http2.Http2Connection$7 +okhttp3.internal.http2.Http2Stream$StreamTimeout: Http2Stream$StreamTimeout(okhttp3.internal.http2.Http2Stream) +wangdaye.com.geometricweather.R$styleable: int Insets_paddingLeftSystemWindowInsets +androidx.constraintlayout.widget.R$attr: int autoTransition +io.reactivex.internal.operators.observable.ObservableThrottleLatest$ThrottleLatestObserver: void onComplete() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Pm10 +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar +com.google.android.material.R$attr: int actionModePopupWindowStyle +androidx.vectordrawable.animated.R$attr: int fontProviderCerts +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceTheme +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure +com.google.android.material.R$attr: int collapseContentDescription +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_dropdownPreferenceStyle +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: java.util.Date updateTime +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver +okhttp3.internal.connection.StreamAllocation: void release() +androidx.appcompat.R$dimen: int tooltip_y_offset_non_touch +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_36dp +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_behavior +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Header +cyanogenmod.app.Profile: int mExpandedDesktopMode +androidx.viewpager2.widget.ViewPager2: void setOrientation(int) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ListPopupWindow +androidx.preference.R$attr: int commitIcon +androidx.appcompat.view.menu.ListMenuItemView +okhttp3.Route: okhttp3.Address address() +okhttp3.internal.http.RealInterceptorChain: RealInterceptorChain(java.util.List,okhttp3.internal.connection.StreamAllocation,okhttp3.internal.http.HttpCodec,okhttp3.internal.connection.RealConnection,int,okhttp3.Request,okhttp3.Call,okhttp3.EventListener,int,int,int) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar +com.google.android.material.R$color: int design_default_color_error +com.google.android.material.R$dimen: int mtrl_btn_icon_padding +cyanogenmod.app.ILiveLockScreenManager: void enqueueLiveLockScreen(java.lang.String,int,cyanogenmod.app.LiveLockScreenInfo,int[],int) +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemHeight +androidx.lifecycle.extensions.R$styleable: int ColorStateListItem_alpha +androidx.lifecycle.CompositeGeneratedAdaptersObserver: androidx.lifecycle.GeneratedAdapter[] mGeneratedAdapters +wangdaye.com.geometricweather.R$id: int action_bar_container +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dialogTheme +androidx.appcompat.R$color: int ripple_material_dark +wangdaye.com.geometricweather.R$color: int design_default_color_surface +com.google.android.material.R$styleable: int[] AppCompatSeekBar +androidx.appcompat.widget.SearchView: java.lang.CharSequence getQuery() +com.google.android.material.tabs.TabLayout: int getTabScrollRange() +wangdaye.com.geometricweather.R$attr: int endIconContentDescription +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Body1 +okhttp3.ConnectionPool: boolean $assertionsDisabled +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_52 androidx.hilt.work.R$dimen: int notification_large_icon_height -wangdaye.com.geometricweather.R$styleable: int NavigationView_itemIconSize -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver$InnerRepeatObserver inner -androidx.fragment.app.FragmentContainerView -wangdaye.com.geometricweather.R$layout: int abc_screen_toolbar -com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_height_minor -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: void setValue(java.util.List) -wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_rtl -com.google.android.material.R$attr: int fabSize -com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemIconSize(int) -wangdaye.com.geometricweather.R$dimen: int material_cursor_inset_bottom -com.tencent.bugly.crashreport.common.info.a: java.util.Map G() -com.google.android.material.R$drawable: int design_password_eye -com.tencent.bugly.proguard.ak: java.util.Map v -androidx.constraintlayout.widget.R$attr: int actionModeShareDrawable -com.google.android.material.R$color: int design_default_color_on_primary -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum() -androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_android_alpha -com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipIconTint() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitationProbability(java.lang.Float) -com.google.android.material.R$styleable: int AnimatedStateListDrawableTransition_android_drawable -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModePopupWindowStyle -io.reactivex.Observable: io.reactivex.Observable onTerminateDetach() -com.tencent.bugly.crashreport.common.info.a: java.lang.String P -okhttp3.OkHttpClient: okhttp3.internal.cache.InternalCache internalCache() -androidx.hilt.R$id: int accessibility_custom_action_31 -retrofit2.HttpException: HttpException(retrofit2.Response) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle -com.google.android.material.R$layout: int text_view_without_line_height -james.adaptiveicon.R$style: int Platform_V25_AppCompat -james.adaptiveicon.R$dimen: int abc_control_padding_material -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: cyanogenmod.weatherservice.WeatherProviderService this$0 -com.xw.repo.bubbleseekbar.R$styleable: int[] MenuGroup -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityDestroyed(android.app.Activity) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 -io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: void dispose() -io.reactivex.internal.util.VolatileSizeArrayList: boolean equals(java.lang.Object) -com.tencent.bugly.proguard.y: java.text.SimpleDateFormat b -com.amap.api.location.LocationManagerBase: void startAssistantLocation(android.webkit.WebView) -james.adaptiveicon.R$id: int tabMode -okhttp3.internal.http.HttpDate$1 -com.amap.api.location.AMapLocationClientOption: java.lang.Object clone() -com.google.android.material.R$attr: int itemShapeAppearance -com.bumptech.glide.R$styleable: int FontFamily_fontProviderFetchTimeout -com.tencent.bugly.crashreport.common.info.a: void c(java.lang.String,java.lang.String) -androidx.appcompat.resources.R$id: int accessibility_custom_action_16 -okhttp3.internal.platform.Platform: int WARN -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_horizontalAlign -wangdaye.com.geometricweather.R$attr: int trackHeight -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_default -james.adaptiveicon.R$styleable: int SearchView_goIcon -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_Solid -okhttp3.internal.connection.RealConnection: okhttp3.Request createTunnelRequest() -androidx.preference.R$styleable: int FragmentContainerView_android_name -androidx.preference.R$attr: int showAsAction -wangdaye.com.geometricweather.R$color: int mtrl_textinput_disabled_color -androidx.preference.R$styleable: int ListPreference_android_entryValues -com.tencent.bugly.crashreport.crash.h5.a: java.lang.String c -com.turingtechnologies.materialscrollbar.R$color: int abc_background_cache_hint_selector_material_light -androidx.drawerlayout.widget.DrawerLayout: float getDrawerElevation() -okhttp3.Cookie: okhttp3.Cookie parse(long,okhttp3.HttpUrl,java.lang.String) -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: java.lang.Object poll() -androidx.core.view.ViewCompat$1 -androidx.preference.R$id: int progress_horizontal -com.xw.repo.bubbleseekbar.R$dimen: int notification_top_pad -com.google.android.material.R$id: int material_timepicker_mode_button -io.reactivex.internal.observers.BlockingObserver: long serialVersionUID -com.turingtechnologies.materialscrollbar.R$attr: int colorAccent -io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onError(java.lang.Throwable) -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog -wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) -wangdaye.com.geometricweather.R$style: int PopupWindowAnimation_Bottom_Left -io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: io.reactivex.functions.Function mapper -okhttp3.internal.http2.Http2Stream: okio.Source getSource() -com.xw.repo.bubbleseekbar.R$string: int abc_menu_alt_shortcut_label -wangdaye.com.geometricweather.R$styleable: int Constraint_transitionPathRotate -wangdaye.com.geometricweather.weather.apis.AccuWeatherApi -james.adaptiveicon.R$dimen: int abc_button_padding_horizontal_material -androidx.appcompat.view.menu.ActionMenuItemView -com.google.android.material.slider.Slider -com.turingtechnologies.materialscrollbar.R$id: int selected -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_radioButtonStyle -wangdaye.com.geometricweather.R$styleable: int SearchView_searchHintIcon -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_42 -com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Body2 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_overflow_padding_start_material -com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_Dialog -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeSnowPrecipitation(java.lang.Float) -okhttp3.logging.HttpLoggingInterceptor: void logHeader(okhttp3.Headers,int) -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language SLOVENIAN -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption setOffset(boolean) -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title -wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger -androidx.work.R$styleable: R$styleable() -com.google.android.material.R$dimen: int design_textinput_caption_translate_y -io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void dispose() -com.amap.api.location.AMapLocation: int d(com.amap.api.location.AMapLocation,int) -wangdaye.com.geometricweather.R$attr: int itemTextAppearance -wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemStrokeWidth -okio.Okio: okio.BufferedSource buffer(okio.Source) -com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title -com.google.android.material.R$attr: int tabInlineLabel -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display2 -cyanogenmod.profiles.StreamSettings: void setOverride(boolean) -wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -wangdaye.com.geometricweather.R$color: int abc_btn_colored_borderless_text_material -com.tencent.bugly.proguard.y: boolean b(java.lang.String,java.lang.String,java.lang.String) -com.tencent.bugly.proguard.p: boolean a(int,java.lang.String,byte[],com.tencent.bugly.proguard.o,boolean) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: java.lang.Integer clouds -okhttp3.OkHttpClient$Builder: java.util.List interceptors() -androidx.constraintlayout.widget.R$styleable: int OnSwipe_maxAcceleration -androidx.constraintlayout.widget.R$attr: int font -io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: int leftIndex -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getCity() -wangdaye.com.geometricweather.R$attr: int thumbStrokeColor -cyanogenmod.app.Profile: void setConditionalType() -com.google.android.material.R$styleable: int TextAppearance_android_textStyle -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean requestDismiss() -android.didikee.donate.R$styleable: int SearchView_voiceIcon -com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode[] a -wangdaye.com.geometricweather.R$color: int colorTextContent_dark -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceOverline -com.google.android.material.R$dimen: int mtrl_badge_horizontal_edge_offset -io.reactivex.internal.util.NotificationLite$DisposableNotification: NotificationLite$DisposableNotification(io.reactivex.disposables.Disposable) -androidx.hilt.lifecycle.R$dimen -wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetLeft -androidx.preference.R$style: int Base_Widget_AppCompat_RatingBar_Small -androidx.hilt.work.R$id: int accessibility_custom_action_10 -androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dialog -androidx.work.R$styleable: int FontFamilyFont_fontStyle -cyanogenmod.app.ProfileGroup: ProfileGroup(android.os.Parcel,cyanogenmod.app.ProfileGroup$1) -io.reactivex.Observable: io.reactivex.Maybe reduce(io.reactivex.functions.BiFunction) -androidx.appcompat.R$styleable: int Toolbar_titleTextAppearance -wangdaye.com.geometricweather.R$color: int design_dark_default_color_error -com.autonavi.aps.amapapi.model.AMapLocationServer: void c(java.lang.String) -androidx.constraintlayout.widget.R$id: int edit_query -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean current -com.turingtechnologies.materialscrollbar.R$styleable: int TouchScrollBar_msb_hideDelayInMilliseconds -androidx.lifecycle.SavedStateHandle: java.lang.String KEYS -com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintGuide_begin -androidx.appcompat.R$styleable: int Toolbar_collapseIcon -androidx.appcompat.R$attr: int panelBackground -com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onProgressUpdateEnd(float) -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_editTextPreferenceStyle -androidx.appcompat.widget.ActionMenuPresenter$SavedState -androidx.appcompat.resources.R$id: int tag_transition_group -wangdaye.com.geometricweather.R$menu: R$menu() -okio.Timeout: okio.Timeout NONE -cyanogenmod.app.IPartnerInterface$Stub$Proxy: IPartnerInterface$Stub$Proxy(android.os.IBinder) -androidx.appcompat.R$styleable: int Toolbar_maxButtonHeight -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitation -com.google.android.material.R$attr: int statusBarForeground -okhttp3.OkHttpClient$Builder: OkHttpClient$Builder(okhttp3.OkHttpClient) -okhttp3.internal.http2.Http2Connection: void awaitPong() -cyanogenmod.themes.IThemeService$Stub$Proxy: android.os.IBinder mRemote -cyanogenmod.themes.IThemeService$Stub$Proxy: boolean processThemeResources(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int Toolbar_menu -androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType STRING_TYPE -androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_weight -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String getWeatherText() -androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setLegacyRequestDisallowInterceptTouchEventEnabled(boolean) -androidx.preference.R$styleable: int CheckBoxPreference_summaryOff -wangdaye.com.geometricweather.R$color: int material_timepicker_modebutton_tint -io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber -okhttp3.ResponseBody: java.io.Reader charStream() -wangdaye.com.geometricweather.R$string: int translator -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float relativeHumidity -james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontStyle -androidx.appcompat.view.menu.ListMenuItemView: void setForceShowIcon(boolean) -android.didikee.donate.R$styleable: int Toolbar_collapseContentDescription -com.jaredrummler.android.colorpicker.R$color: int abc_background_cache_hint_selector_material_light -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small -com.google.android.material.card.MaterialCardView: void setCheckedIconTint(android.content.res.ColorStateList) -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerSlack -james.adaptiveicon.R$id: int search_close_btn -com.baidu.location.Poi -android.didikee.donate.R$styleable: int AppCompatTextHelper_android_drawableRight -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX: CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX() -com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace valueOf(java.lang.String) -androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Title -io.reactivex.internal.util.NotificationLite: java.lang.Object error(java.lang.Throwable) -com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_sliderColor -androidx.constraintlayout.widget.R$styleable: int[] LinearLayoutCompat -com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.proguard.w v -androidx.coordinatorlayout.R$dimen: int notification_media_narrow_margin -com.amap.api.location.UmidtokenInfo: long e -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial: double Value -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ActionButton_CloseMode -com.google.android.material.R$attr: int listMenuViewStyle +com.turingtechnologies.materialscrollbar.R$color: int abc_primary_text_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: int status +com.jaredrummler.android.colorpicker.R$id: int message +androidx.appcompat.resources.R$integer: int status_bar_notification_info_maxnum +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_49 +com.xw.repo.bubbleseekbar.R$anim: int abc_fade_out +com.jaredrummler.android.colorpicker.R$dimen: int compat_button_padding_vertical_material +androidx.appcompat.R$drawable: int btn_checkbox_checked_mtrl +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarSplitStyle +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: boolean delayErrors +wangdaye.com.geometricweather.R$attr: int titleTextAppearance +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int NOT_AVAILABLE +com.tencent.bugly.b: void a(android.content.Context) +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_profileExists +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_button_min_height_material +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_lastHorizontalBias +james.adaptiveicon.R$attr: int fontProviderQuery +cyanogenmod.app.ICustomTileListener$Stub: android.os.IBinder asBinder() +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_4 +com.jaredrummler.android.colorpicker.R$attr: int actionModeWebSearchDrawable +wangdaye.com.geometricweather.R$drawable: int btn_checkbox_checked_to_unchecked_mtrl_animation +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +androidx.appcompat.widget.ActionMenuView: int getPopupTheme() +androidx.hilt.work.R$attr: R$attr() +com.turingtechnologies.materialscrollbar.R$attr: int trackTintMode +wangdaye.com.geometricweather.R$layout: int dialog_time_setter +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Metric: java.lang.String Unit +okio.SegmentedByteString: int hashCode() +okhttp3.internal.tls.TrustRootIndex +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.R$drawable: int ic_briefing +androidx.preference.R$dimen: int abc_action_bar_content_inset_with_nav +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getLtoDestination +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_focused +okhttp3.RealCall: RealCall(okhttp3.OkHttpClient,okhttp3.Request,boolean) +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_fixed_width_major +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.functions.Function,int,io.reactivex.ObservableSource[]) +androidx.drawerlayout.R$attr: int fontProviderCerts +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customBoolean +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void subscribe() +cyanogenmod.weather.ICMWeatherManager$Stub: android.os.IBinder asBinder() +com.google.android.material.R$style: int Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.R$attr: int number +wangdaye.com.geometricweather.R$string: int content_des_minutely_precipitation +cyanogenmod.weather.WeatherInfo: double mWindDirection +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_5 +wangdaye.com.geometricweather.R$dimen: int default_dimension +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_shapeAppearance +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: long serialVersionUID +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_endY +com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context,android.util.AttributeSet) +androidx.work.R$styleable: int ColorStateListItem_alpha +androidx.cardview.R$styleable: int CardView_contentPaddingTop +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +com.google.android.material.R$attr: int submitBackground +androidx.preference.R$layout: int abc_action_menu_layout +wangdaye.com.geometricweather.R$string: int precipitation_middle +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +com.xw.repo.bubbleseekbar.R$drawable: int abc_btn_default_mtrl_shape +com.jaredrummler.android.colorpicker.R$layout: int abc_popup_menu_item_layout +wangdaye.com.geometricweather.R$attr: int startIconTintMode +androidx.appcompat.R$styleable: int TextAppearance_android_typeface +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onComplete() +io.reactivex.Observable: io.reactivex.Single elementAt(long,java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_startY +androidx.preference.R$style: int Theme_AppCompat_DayNight_NoActionBar +okhttp3.internal.http.BridgeInterceptor: BridgeInterceptor(okhttp3.CookieJar) +com.google.android.material.bottomnavigation.BottomNavigationView: int getLabelVisibilityMode() +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView +wangdaye.com.geometricweather.R$attr: int navigationMode +wangdaye.com.geometricweather.R$id: int textEnd +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties +android.didikee.donate.R$attr: int actionOverflowButtonStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float daytimeRainPrecipitationDuration +com.google.android.material.R$styleable: int AppCompatTheme_popupMenuStyle +androidx.lifecycle.ClassesInfoCache$MethodReference: int mCallType +androidx.coordinatorlayout.R$color: int notification_action_color_filter +androidx.hilt.work.R$id: int tag_unhandled_key_event_manager +okhttp3.internal.io.FileSystem$1: FileSystem$1() +cyanogenmod.weather.RequestInfo: RequestInfo(android.os.Parcel) +com.jaredrummler.android.colorpicker.R$attr: int alpha +cyanogenmod.app.ProfileGroup: boolean isDefaultGroup() +androidx.transition.R$id: int icon +androidx.recyclerview.R$id: int blocking +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginLeft +io.reactivex.Observable: io.reactivex.Observable window(long,long,int) +com.tencent.bugly.Bugly +okhttp3.Cache: okhttp3.internal.cache.DiskLruCache cache +cyanogenmod.providers.CMSettings$Secure: android.net.Uri CONTENT_URI +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.functions.Function mapper +androidx.preference.R$styleable: int AlertDialog_showTitle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +com.tencent.bugly.proguard.am: java.lang.String c +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: io.reactivex.ObservableSource first +android.didikee.donate.R$style: int Widget_AppCompat_SeekBar +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: ObservableTimeout$TimeoutObserver(io.reactivex.Observer,io.reactivex.functions.Function) +wangdaye.com.geometricweather.R$dimen: int material_emphasis_high_type +wangdaye.com.geometricweather.R$id: int dialog_minimal_icon_lightIcon +com.google.android.material.R$attr: int dayStyle +androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionListener(androidx.constraintlayout.motion.widget.MotionLayout$TransitionListener) +okhttp3.Cache: int ENTRY_METADATA +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: java.util.Date Rise +com.google.android.material.progressindicator.ProgressIndicator: void setProgress(int) +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer getMoldIndex() +wangdaye.com.geometricweather.db.entities.HistoryEntity: HistoryEntity() +com.google.android.material.R$style: int TestThemeWithLineHeightDisabled +com.google.android.material.R$styleable: int ExtendedFloatingActionButton_shrinkMotionSpec +androidx.preference.PreferenceManager: void setOnDisplayPreferenceDialogListener(androidx.preference.PreferenceManager$OnDisplayPreferenceDialogListener) +com.google.android.material.slider.RangeSlider: void setThumbStrokeWidth(float) +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: double speed +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_30 +io.reactivex.internal.util.AtomicThrowable: java.lang.Throwable terminate() +org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Object[]) +com.google.android.material.R$styleable: int ProgressIndicator_showDelay +retrofit2.ParameterHandler$Header: ParameterHandler$Header(java.lang.String,retrofit2.Converter) +wangdaye.com.geometricweather.R$drawable: int weather_sleet_3 +com.turingtechnologies.materialscrollbar.R$id: int masked +androidx.swiperefreshlayout.R$id: int line1 +androidx.preference.R$color: int dim_foreground_material_dark +io.reactivex.exceptions.CompositeException: java.lang.Throwable cause +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startColor +okhttp3.internal.ws.RealWebSocket: boolean writeOneFrame() +wangdaye.com.geometricweather.R$id: int grassValue +com.turingtechnologies.materialscrollbar.R$attr: int thickness +androidx.fragment.R$attr: R$attr() +com.jaredrummler.android.colorpicker.R$attr: int tooltipFrameBackground +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder addInterceptor(okhttp3.Interceptor) +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit[] values() +com.tencent.bugly.crashreport.crash.e: com.tencent.bugly.crashreport.crash.b b +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: long EpochStartTime +com.turingtechnologies.materialscrollbar.R$anim: int abc_slide_out_top +wangdaye.com.geometricweather.R$attr: int buttonStyle +androidx.constraintlayout.widget.R$attr: int layout_constraintBaseline_toBaselineOf +okhttp3.internal.http2.Hpack$Writer: boolean emitDynamicTableSizeUpdate +androidx.constraintlayout.widget.R$attr: int layout_constraintCircleRadius +androidx.vectordrawable.R$attr: int fontWeight +androidx.appcompat.R$styleable: int FontFamilyFont_android_fontWeight +okhttp3.CipherSuite$1 +james.adaptiveicon.R$styleable: int AlertDialog_buttonPanelSideLayout +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_72 +androidx.appcompat.R$styleable: int AppCompatTheme_windowFixedHeightMajor +com.jaredrummler.android.colorpicker.R$anim +io.reactivex.Observable: void blockingSubscribe(io.reactivex.Observer) +io.reactivex.observers.TestObserver$EmptyObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.main.adapters.main.MainTag$Type: wangdaye.com.geometricweather.main.adapters.main.MainTag$Type AIR_QUALITY +okhttp3.FormBody$Builder: java.util.List values +com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(java.util.Map,java.lang.String) +cyanogenmod.externalviews.KeyguardExternalViewProviderService: java.lang.String META_DATA +androidx.hilt.work.R$string +okhttp3.logging.HttpLoggingInterceptor$Logger$1 +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: void run() +okhttp3.internal.http2.Http2Connection: void flush() +retrofit2.Retrofit$Builder: java.util.concurrent.Executor callbackExecutor +com.google.android.material.internal.NavigationMenuItemView: void setIcon(android.graphics.drawable.Drawable) +cyanogenmod.app.CMTelephonyManager: android.content.Context mContext +james.adaptiveicon.R$style: int Widget_AppCompat_CompoundButton_Switch +com.bumptech.glide.integration.okhttp.R$attr: int fontStyle +cyanogenmod.providers.CMSettings$Secure: cyanogenmod.providers.CMSettings$Validator PROTECTED_COMPONENTS_MANAGER_VALIDATOR +androidx.lifecycle.FullLifecycleObserverAdapter: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +wangdaye.com.geometricweather.R$string: int widget_clock_day_week +android.didikee.donate.R$styleable: int AppCompatTextView_drawableLeftCompat +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogTheme +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_EXTRA +james.adaptiveicon.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean: java.lang.String caiyun +com.google.gson.LongSerializationPolicy$2: LongSerializationPolicy$2(java.lang.String,int) +androidx.lifecycle.LifecycleService: LifecycleService() +com.google.android.material.internal.NavigationMenuView: int getWindowAnimations() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction +okhttp3.CacheControl: boolean isPublic +com.xw.repo.bubbleseekbar.R$styleable: int[] PopupWindowBackgroundState +james.adaptiveicon.R$styleable: int AppCompatTheme_actionButtonStyle +com.xw.repo.bubbleseekbar.R$color: int abc_background_cache_hint_selector_material_dark +cyanogenmod.library.R$id: int event +com.bumptech.glide.R$dimen: int notification_right_side_padding_top +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String pubTime +cyanogenmod.providers.CMSettings$Secure: java.lang.String KEYBOARD_BRIGHTNESS +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +okhttp3.internal.ws.WebSocketReader$FrameCallback: void onReadMessage(java.lang.String) +okio.InflaterSource: okio.Timeout timeout() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: double Value +james.adaptiveicon.R$drawable: int abc_btn_radio_to_on_mtrl_015 +com.google.android.material.R$styleable: int OnSwipe_touchAnchorSide +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getIcePrecipitation() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Small +androidx.appcompat.R$drawable: int abc_spinner_mtrl_am_alpha +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayHorizontalProvider +com.google.android.material.R$attr: int constraintSetStart +androidx.fragment.R$id: int accessibility_custom_action_31 +com.google.android.material.R$styleable: int ConstraintSet_android_transformPivotX +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Metric: java.lang.String Unit +com.google.android.material.textfield.TextInputLayout: void setStartIconContentDescription(int) +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_subtitleTextStyle +cyanogenmod.platform.Manifest$permission: Manifest$permission() +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: FlowableConcatMap$BaseConcatMapSubscriber(io.reactivex.functions.Function,int) +androidx.appcompat.R$style: int Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.R$attr: int bsb_show_section_text +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: long requested() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_bias +android.didikee.donate.R$attr: int navigationIcon +androidx.constraintlayout.widget.R$attr: int altSrc +com.turingtechnologies.materialscrollbar.R$attr: int drawerArrowStyle +cyanogenmod.themes.ThemeChangeRequest$Builder: long mWallpaperId +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_disableDependentsState +com.jaredrummler.android.colorpicker.R$attr: int commitIcon +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Weather: MfCurrentResult$Observation$Weather() +wangdaye.com.geometricweather.db.entities.AlertEntityDao: AlertEntityDao(org.greenrobot.greendao.internal.DaoConfig) +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.util.AtomicThrowable error +com.google.android.material.R$bool: int abc_action_bar_embed_tabs +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String en_US +cyanogenmod.app.Profile$ProfileTrigger$1: cyanogenmod.app.Profile$ProfileTrigger[] newArray(int) +androidx.appcompat.R$style: int Base_Widget_AppCompat_ButtonBar +com.jaredrummler.android.colorpicker.R$attr: int windowFixedHeightMajor +androidx.drawerlayout.R$layout: int notification_action_tombstone cyanogenmod.app.CustomTile: android.app.PendingIntent onLongClick -wangdaye.com.geometricweather.R$styleable: int Constraint_flow_verticalAlign -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int no2 -com.google.android.material.R$styleable: int Transition_constraintSetStart -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getDaytimeWeatherCode() -androidx.work.R$id -james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat_Dark -androidx.preference.R$styleable: int PreferenceFragmentCompat_android_layout -com.google.android.material.progressindicator.ProgressIndicator: ProgressIndicator(android.content.Context,android.util.AttributeSet,int) -com.amap.api.location.DPoint: double getLatitude() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogCornerRadius -androidx.preference.R$attr: int dividerHorizontal -androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SearchView_ActionBar -androidx.transition.R$attr: int fontWeight -cyanogenmod.externalviews.KeyguardExternalView: android.content.ServiceConnection access$500(cyanogenmod.externalviews.KeyguardExternalView) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_67 -androidx.customview.R$drawable: int notification_bg_low_normal -com.google.android.material.R$dimen: int mtrl_extended_fab_end_padding_icon -com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_ab_back_material -androidx.drawerlayout.R$id: int text2 -androidx.preference.R$id: int fragment_container_view_tag -com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemIconTint -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_60 +com.xw.repo.bubbleseekbar.R$styleable: int StateListDrawable_android_exitFadeDuration +android.didikee.donate.R$attr: int actionProviderClass +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_71 +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_spinnerDropDownItemStyle +com.xw.repo.bubbleseekbar.R$id: int below_section_mark +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pm10 +cyanogenmod.app.CMContextConstants$Features: java.lang.String PERFORMANCE +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State DESTROYED +com.jaredrummler.android.colorpicker.R$styleable: int Preference_allowDividerBelow +androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy[] values() +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: int requestFusion(int) +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onComplete() +io.reactivex.internal.queue.SpscArrayQueue: long serialVersionUID +wangdaye.com.geometricweather.R$attr: int actionViewClass +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.util.Date date +com.google.android.material.R$styleable: int TextInputLayout_helperTextEnabled +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixTextAppearance +androidx.viewpager2.R$id: int chronometer +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_trackTintMode +androidx.constraintlayout.widget.R$drawable: int abc_switch_track_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int Fragment_android_tag +androidx.preference.R$attr: int enableCopying +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog +com.tencent.bugly.proguard.ak: java.lang.String i +com.google.android.material.R$id: int action_divider +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackTintList() +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_android_imeOptions +androidx.core.R$id: int accessibility_custom_action_17 +androidx.appcompat.widget.AppCompatSpinner: AppCompatSpinner(android.content.Context) +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeThunderstormPrecipitationDuration +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_title +cyanogenmod.externalviews.ExternalView$5: cyanogenmod.externalviews.ExternalView this$0 +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_elevation +androidx.recyclerview.R$id: int accessibility_custom_action_29 +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_paddingLeft +com.loc.k: int e() +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: ObservableScalarXMap$ScalarDisposable(io.reactivex.Observer,java.lang.Object) +cyanogenmod.app.LiveLockScreenInfo$1: java.lang.Object createFromParcel(android.os.Parcel) +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: boolean cancelled +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Imperial: double Value +wangdaye.com.geometricweather.R$string: int current_location +androidx.loader.R$dimen +io.reactivex.Observable: io.reactivex.Observable take(long) +wangdaye.com.geometricweather.R$styleable: int SearchView_android_focusable +androidx.fragment.app.Fragment$SavedState +com.turingtechnologies.materialscrollbar.R$string: int abc_action_bar_up_description +androidx.appcompat.widget.AppCompatTextView: AppCompatTextView(android.content.Context) +androidx.preference.R$dimen: int abc_control_inset_material +androidx.appcompat.R$style: int Base_Widget_AppCompat_ActionButton_Overflow +com.google.android.material.textfield.TextInputLayout: int getErrorTextCurrentColor() +wangdaye.com.geometricweather.R$dimen: int abc_text_size_display_1_material +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.platform.OptionalMethod setAlpnProtocols +androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet,int,int) +cyanogenmod.providers.WeatherContract: WeatherContract() +androidx.customview.R$layout: int notification_template_part_chronometer +cyanogenmod.weather.CMWeatherManager$2$1: cyanogenmod.weather.WeatherInfo val$weatherInfo +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_toRightOf +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_centerX +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: ObservableCreate$SerializedEmitter(io.reactivex.ObservableEmitter) +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String n +androidx.loader.R$dimen: int notification_right_icon_size +com.google.android.material.R$style: int Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property Longitude +okhttp3.internal.ws.WebSocketWriter +com.turingtechnologies.materialscrollbar.R$dimen: int compat_control_corner_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial() +androidx.constraintlayout.widget.R$layout: int abc_popup_menu_item_layout +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: void setZh_TW(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Imperial: java.lang.String Unit +androidx.preference.R$styleable: int GradientColor_android_gradientRadius +cyanogenmod.platform.Manifest$permission +wangdaye.com.geometricweather.R$dimen: int large_margin +okhttp3.internal.ws.RealWebSocket: long pingIntervalMillis +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit F +cyanogenmod.themes.IThemeChangeListener$Stub: int TRANSACTION_onProgress_0 +androidx.transition.R$styleable: int[] ColorStateListItem +androidx.preference.R$styleable: int Toolbar_menu +androidx.constraintlayout.helper.widget.Layer: void setScaleY(float) +com.xw.repo.bubbleseekbar.R$string: int search_menu_title +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeRealFeelTemperature() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_AutoCompleteTextView +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetEnd +androidx.constraintlayout.widget.R$attr: int fontVariationSettings +androidx.constraintlayout.widget.R$attr: int selectableItemBackground +androidx.appcompat.R$attr: int thumbTextPadding +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String info +com.google.android.material.R$styleable: int Tooltip_backgroundTint +wangdaye.com.geometricweather.R$dimen: int mtrl_progress_indicator_full_rounded_corner_radius +com.bumptech.glide.request.RequestCoordinator$RequestState: com.bumptech.glide.request.RequestCoordinator$RequestState SUCCESS +androidx.vectordrawable.R$id +okhttp3.internal.http2.Hpack$Reader: int nextHeaderIndex +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void setCancellable(io.reactivex.functions.Cancellable) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: CaiYunMainlyResult$CurrentBean$PressureBean() +james.adaptiveicon.R$attr: int elevation +android.didikee.donate.R$dimen: int abc_action_bar_content_inset_material +wangdaye.com.geometricweather.R$drawable: int ic_state_uncheck +androidx.work.R$id: int right_icon +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableCompat_android_visible +com.turingtechnologies.materialscrollbar.R$id: int design_bottom_sheet +androidx.preference.R$attr: int ratingBarStyle +wangdaye.com.geometricweather.R$string: int common_google_play_services_updating_text +cyanogenmod.app.Profile$DozeMode: int ENABLE +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogMessage +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Body1 +androidx.fragment.R$integer: R$integer() +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_actionLayout +com.tencent.bugly.proguard.ao: void a(com.tencent.bugly.proguard.j) +com.google.android.material.R$attr: int tickMarkTint +androidx.appcompat.R$styleable: int AppCompatTheme_dividerVertical +cyanogenmod.externalviews.KeyguardExternalView$10: cyanogenmod.externalviews.KeyguardExternalView this$0 +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: java.lang.String MinutesText +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_SCREEN_ON +com.turingtechnologies.materialscrollbar.R$drawable: int abc_spinner_mtrl_am_alpha +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode mLightsMode +com.google.android.material.floatingactionbutton.FloatingActionButton: float getCompatPressedTranslationZ() +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionBar_Solid -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDate(java.util.Date) -com.google.android.material.R$styleable: int Constraint_layout_constraintEnd_toStartOf -okio.Okio -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_progressBarStyle -androidx.appcompat.R$styleable: int ActionMode_subtitleTextStyle -androidx.lifecycle.extensions.R$id: int info -androidx.core.R$id: int accessibility_custom_action_16 -com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -com.tencent.bugly.crashreport.common.info.a: java.lang.String u() -androidx.vectordrawable.animated.R$id: int chronometer -cyanogenmod.app.CustomTile$ExpandedStyle: void writeToParcel(android.os.Parcel,int) -androidx.constraintlayout.widget.R$attr: int contentDescription -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_addProfile -androidx.recyclerview.R$id: int accessibility_custom_action_26 -cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_processThemeResources -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: void setPubTime(java.lang.String) -cyanogenmod.weather.ICMWeatherManager: void lookupCity(cyanogenmod.weather.RequestInfo) -com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_fontWeight -cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$200() -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_verticalBias -org.greenrobot.greendao.database.DatabaseOpenHelper: void onOpen(android.database.sqlite.SQLiteDatabase) -wangdaye.com.geometricweather.R$dimen: int abc_switch_padding -androidx.constraintlayout.widget.R$styleable: int[] KeyCycle -androidx.constraintlayout.widget.R$attr: int drawableTint -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource: java.lang.String Name -com.turingtechnologies.materialscrollbar.R$integer: int mtrl_tab_indicator_anim_duration_ms -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDegreeDayTemperature(java.lang.Integer) -wangdaye.com.geometricweather.R$styleable: int[] ColorPreference -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath -io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy[] values() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: java.lang.String getIcon() -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: BaiduIPLocationService(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationApi,io.reactivex.disposables.CompositeDisposable) -com.tencent.bugly.nativecrashreport.R$string: int app_name -io.reactivex.internal.operators.observable.ObservableRefCount$RefCountObserver: ObservableRefCount$RefCountObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableRefCount,io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection) -wangdaye.com.geometricweather.db.entities.HourlyEntity: java.util.Date getDate() -com.google.android.material.R$animator: int mtrl_extended_fab_show_motion_spec -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeBackground -okhttp3.WebSocket +com.tencent.bugly.crashreport.crash.c: int f +james.adaptiveicon.R$styleable: int[] PopupWindow +io.reactivex.Observable: io.reactivex.Observable combineLatest(java.lang.Iterable,io.reactivex.functions.Function) +com.turingtechnologies.materialscrollbar.R$attr: int state_collapsed +com.jaredrummler.android.colorpicker.R$dimen: int tooltip_y_offset_touch +okio.Util: short reverseBytesShort(short) +wangdaye.com.geometricweather.R$attr: int windowFixedWidthMinor +androidx.appcompat.widget.AppCompatAutoCompleteTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +com.google.android.material.R$dimen: int mtrl_extended_fab_end_padding +com.google.android.gms.signin.internal.zab +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int isRainOrSnow +com.google.android.material.R$attr: int colorSurface +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_enabled +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse +androidx.drawerlayout.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_android_elevation +androidx.constraintlayout.widget.R$attr: int alertDialogButtonGroupStyle +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_fontWeight +androidx.hilt.lifecycle.R$layout: int custom_dialog +androidx.preference.R$id: int forever +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$dimen: int highlight_alpha_material_colored +okhttp3.ResponseBody: byte[] bytes() +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Temperature temperature +com.google.android.material.R$dimen: int abc_action_button_min_width_material +androidx.constraintlayout.widget.R$color: int material_grey_100 +wangdaye.com.geometricweather.R$drawable: int weather_haze_mini_dark +wangdaye.com.geometricweather.R$id: int textSpacerNoTitle +android.didikee.donate.R$styleable: int ActionBar_contentInsetEndWithActions +androidx.preference.R$style: int Preference_CheckBoxPreference_Material +androidx.hilt.R$drawable: int notification_bg_low_pressed +cyanogenmod.app.IProfileManager$Stub$Proxy: void removeNotificationGroup(android.app.NotificationGroup) +wangdaye.com.geometricweather.R$dimen: int abc_control_padding_material +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property MoonRiseDate +wangdaye.com.geometricweather.R$attr: int checkedChip +james.adaptiveicon.R$attr: int itemPadding +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_1 +okhttp3.Cache$2: okhttp3.Cache this$0 +androidx.appcompat.R$attr: int checkboxStyle +cyanogenmod.weather.IRequestInfoListener$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeSnowPrecipitation +android.didikee.donate.R$dimen: int abc_panel_menu_list_width +androidx.swiperefreshlayout.widget.SwipeRefreshLayout$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$drawable: int flag_si +okio.GzipSource: void consumeTrailer() +com.tencent.bugly.proguard.al: void a(com.tencent.bugly.proguard.i) +cyanogenmod.app.ILiveLockScreenManager: void cancelLiveLockScreen(java.lang.String,int,int) +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetEndWithActions +com.google.android.material.R$color: int design_default_color_primary_variant +androidx.preference.R$styleable: int Toolbar_contentInsetStartWithNavigation +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void subscribeNext() +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.WeatherLocation mWeatherLocation +wangdaye.com.geometricweather.R$dimen: int standard_weather_icon_container_size +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Tooltip +okhttp3.HttpUrl: void pathSegmentsToString(java.lang.StringBuilder,java.util.List) +androidx.appcompat.R$drawable: int abc_list_selector_disabled_holo_dark +com.google.android.material.R$styleable: int AppCompatTheme_windowMinWidthMajor +androidx.cardview.R$styleable: int CardView_contentPadding +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Chip +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryInnerObserver BOUNDARY_DISPOSED +io.reactivex.internal.observers.DeferredScalarDisposable: void complete(java.lang.Object) +cyanogenmod.os.Build$CM_VERSION: int SDK_INT +androidx.lifecycle.LiveData: java.lang.Object mData +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constrainedWidth +wangdaye.com.geometricweather.R$attr: int passwordToggleTint +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius +androidx.viewpager2.R$dimen: int notification_action_icon_size +okhttp3.Dispatcher: boolean $assertionsDisabled +com.amap.api.location.APSServiceBase +com.google.android.material.R$dimen: int mtrl_btn_padding_left +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: ObservableRefCount$RefConnection(io.reactivex.internal.operators.observable.ObservableRefCount) +io.reactivex.Observable: io.reactivex.Single toMultimap(io.reactivex.functions.Function,io.reactivex.functions.Function,java.util.concurrent.Callable,io.reactivex.functions.Function) +com.tencent.bugly.proguard.i: void a(byte) +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: java.util.concurrent.atomic.AtomicBoolean stopWindows +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_tint +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context) +androidx.vectordrawable.animated.R$dimen: int notification_media_narrow_margin +com.turingtechnologies.materialscrollbar.R$dimen: int abc_control_padding_material +com.xw.repo.bubbleseekbar.R$styleable: int[] AlertDialog +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String dept +com.turingtechnologies.materialscrollbar.R$id: int transition_layout_save +wangdaye.com.geometricweather.R$id: int bottom +androidx.transition.R$id: int chronometer +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: boolean isDisposed() +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_spinBars +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property WindChillTemperature +wangdaye.com.geometricweather.R$layout: int activity_live_wallpaper_config +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleTextAppearance +cyanogenmod.weather.WeatherInfo$DayForecast$Builder: double mLow +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String c +cyanogenmod.themes.ThemeManager: void registerProcessingListener(cyanogenmod.themes.ThemeManager$ThemeProcessingListener) +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusTopStart +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer ragweedIndex +okhttp3.ConnectionPool: java.net.Socket deduplicate(okhttp3.Address,okhttp3.internal.connection.StreamAllocation) +wangdaye.com.geometricweather.R$id: int dimensions +okhttp3.logging.HttpLoggingInterceptor$Logger$1: HttpLoggingInterceptor$Logger$1() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_text_select_handle_left_mtrl_dark +android.didikee.donate.R$styleable: int[] MenuItem cyanogenmod.weather.WeatherInfo$DayForecast$Builder: cyanogenmod.weather.WeatherInfo$DayForecast$Builder setLow(double) -androidx.fragment.R$id: int right_icon -com.bumptech.glide.R$style: int Widget_Compat_NotificationActionText -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox -androidx.constraintlayout.widget.R$drawable: int abc_popup_background_mtrl_mult -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherPhase(java.lang.String) -androidx.lifecycle.SavedStateViewModelFactory: androidx.lifecycle.ViewModel create(java.lang.String,java.lang.Class) -com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeightLarge -androidx.activity.R$styleable: int FontFamily_fontProviderAuthority -com.google.android.gms.common.internal.safeparcel.SafeParcelable: java.lang.String NULL -androidx.preference.R$attr: int layoutManager -androidx.lifecycle.extensions.R$drawable: int notification_bg_normal_pressed -com.bumptech.glide.integration.okhttp.R$dimen: int notification_action_icon_size -androidx.hilt.work.R$styleable: int ColorStateListItem_android_color -android.didikee.donate.R$styleable: int AppCompatTheme_toolbarStyle -androidx.constraintlayout.widget.R$style: int AlertDialog_AppCompat_Light -com.google.android.material.R$id: int icon_group -androidx.hilt.R$id: int accessibility_custom_action_11 -james.adaptiveicon.R$dimen: int highlight_alpha_material_colored -android.didikee.donate.R$dimen: int abc_action_bar_elevation_material -android.didikee.donate.R$id: int split_action_bar -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_editor_absoluteX -com.google.android.material.R$layout: int test_design_radiobutton -com.amap.api.fence.GeoFence: int getActivatesAction() -com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_summaryOn -wangdaye.com.geometricweather.R$attr: int trackColorActive -wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_pre_l_text_clip_padding -cyanogenmod.app.CustomTileListenerService: java.lang.String SERVICE_INTERFACE -okio.Buffer: okio.BufferedSink emit() -okhttp3.Request$Builder: okhttp3.Request$Builder cacheControl(okhttp3.CacheControl) -androidx.appcompat.app.ActionBar -com.github.rahatarmanahmed.cpv.CircularProgressView: int animDuration -com.google.android.material.R$style: int Widget_AppCompat_ProgressBar -androidx.constraintlayout.widget.R$style: int Theme_AppCompat -james.adaptiveicon.R$style: int Theme_AppCompat_NoActionBar -james.adaptiveicon.R$attr: int windowMinWidthMinor -androidx.appcompat.R$style: int Base_Widget_AppCompat_Button_Small -com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_min -com.google.android.material.progressindicator.ProgressIndicator: void setGrowMode(int) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setPubTime(java.lang.String) -com.google.android.material.textfield.TextInputLayout: void setStartIconOnLongClickListener(android.view.View$OnLongClickListener) -androidx.appcompat.R$styleable: int DrawerArrowToggle_gapBetweenBars -com.turingtechnologies.materialscrollbar.R$attr: int errorTextAppearance -com.xw.repo.bubbleseekbar.R$styleable: int GradientColorItem_android_offset -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerViewAccessibilityDelegate getCompatAccessibilityDelegate() -okhttp3.internal.tls.DistinguishedNameParser: int pos -androidx.swiperefreshlayout.R$styleable: int[] FontFamilyFont -com.google.android.material.R$styleable: int[] MaterialRadioButton -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Large -com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text -wangdaye.com.geometricweather.R$layout: int mtrl_alert_dialog_actions -com.tencent.bugly.crashreport.common.info.b: boolean i(android.content.Context) -com.tencent.bugly.proguard.p: android.database.Cursor a(java.lang.String,java.lang.String[],java.lang.String,java.lang.String[],com.tencent.bugly.proguard.o,boolean) -wangdaye.com.geometricweather.R$drawable: int ic_state_uncheck -androidx.appcompat.R$attr: int subMenuArrow -wangdaye.com.geometricweather.R$dimen: int mtrl_chip_pressed_translation_z -com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide -cyanogenmod.themes.IThemeService: void rebuildResourceCache() -cyanogenmod.power.IPerformanceManager$Stub$Proxy: int getNumberOfProfiles() -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light -android.didikee.donate.R$styleable: int Toolbar_logoDescription -cyanogenmod.profiles.StreamSettings -okhttp3.internal.http2.Http2Connection$6 -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintGuide_end -wangdaye.com.geometricweather.R$id: int fragment -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Switch -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_elevation -com.google.android.material.R$styleable: int TextInputLayout_endIconContentDescription -android.didikee.donate.R$dimen: int abc_action_bar_default_height_material -com.google.android.material.R$attr: int fabCradleVerticalOffset -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean: void setIcon(java.lang.String) -io.reactivex.internal.subscriptions.BasicQueueSubscription: long serialVersionUID -wangdaye.com.geometricweather.R$attr: int animationDuration -com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endY -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight_DarkActionBar -okhttp3.RealCall$1: RealCall$1(okhttp3.RealCall) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past6Hours$Imperial -okhttp3.internal.ws.RealWebSocket: void onReadClose(int,java.lang.String) -io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.ObservableSource[],io.reactivex.functions.Function) -com.turingtechnologies.materialscrollbar.R$attr: int closeItemLayout -com.tencent.bugly.crashreport.crash.CrashDetailBean: int l -retrofit2.ParameterHandler$HeaderMap: java.lang.reflect.Method method -com.turingtechnologies.materialscrollbar.R$styleable: int[] CoordinatorLayout_Layout -com.google.android.material.R$id: int off -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.DisplayMode[] getDisplayModes() -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.lang.String pubTime -wangdaye.com.geometricweather.R$string: int abc_toolbar_collapse_description -com.tencent.bugly.crashreport.biz.b: long c(long) -wangdaye.com.geometricweather.R$id: int all -wangdaye.com.geometricweather.R$array: int widget_style_values -com.jaredrummler.android.colorpicker.R$id: int search_button -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum -james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar_Small -retrofit2.HttpServiceMethod$SuspendForBody -retrofit2.http.Url -androidx.appcompat.R$style: int TextAppearance_AppCompat_Title_Inverse -androidx.preference.EditTextPreference$SavedState: android.os.Parcelable$Creator CREATOR -wangdaye.com.geometricweather.R$plurals: int mtrl_badge_content_description -com.google.android.material.R$id: int textinput_error +cyanogenmod.externalviews.ExternalViewProviderService: android.view.WindowManager access$400(cyanogenmod.externalviews.ExternalViewProviderService) +com.jaredrummler.android.colorpicker.R$attr: int dropdownListPreferredItemHeight +wangdaye.com.geometricweather.R$color: int cardview_dark_background +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Spinner +androidx.constraintlayout.motion.widget.MotionLayout: long getTransitionTimeMs() +androidx.viewpager2.R$id: int forever +wangdaye.com.geometricweather.R$string: int get_more +android.didikee.donate.R$styleable: int SearchView_closeIcon +james.adaptiveicon.R$id: R$id() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_chainStyle +wangdaye.com.geometricweather.R$color: int colorLine_light +androidx.recyclerview.R$styleable: int GradientColor_android_endX +androidx.hilt.R$anim: int fragment_fade_exit +androidx.constraintlayout.widget.R$drawable: int notification_bg_low_normal +com.google.android.material.appbar.ViewOffsetBehavior: ViewOffsetBehavior() +wangdaye.com.geometricweather.R$color: int highlighted_text_material_light +com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context,android.util.AttributeSet) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int PARTLY_CLOUDY_NIGHT +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabView +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setApparentTemperature(java.lang.Integer) +com.amap.api.location.AMapLocation: java.lang.String a +androidx.preference.R$id: int line1 +cyanogenmod.profiles.BrightnessSettings$1 +com.turingtechnologies.materialscrollbar.R$attr: int hintAnimationEnabled +com.turingtechnologies.materialscrollbar.R$id: int container +com.turingtechnologies.materialscrollbar.R$styleable: int ListPopupWindow_android_dropDownHorizontalOffset +androidx.swiperefreshlayout.R$id: int action_divider +androidx.preference.R$dimen: int preference_dropdown_padding_start +james.adaptiveicon.R$styleable: int[] ActivityChooserView +androidx.coordinatorlayout.R$attr: int ttcIndex +okhttp3.EventListener: void connectionAcquired(okhttp3.Call,okhttp3.Connection) +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy +cyanogenmod.app.Profile: java.util.ArrayList mSecondaryUuids +com.google.android.material.R$attr: int initialActivityCount +com.google.android.material.R$color: int button_material_dark +com.bumptech.glide.integration.okhttp.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableTint +com.google.android.material.R$styleable: int ShapeableImageView_strokeWidth +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Metric: double Value +com.google.android.material.R$styleable: int ConstraintSet_layout_editor_absoluteX +wangdaye.com.geometricweather.R$animator: R$animator() +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.Property getPkProperty() +androidx.dynamicanimation.R$drawable +androidx.preference.R$attr: int contentInsetStart +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String DATE_CREATED +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 +wangdaye.com.geometricweather.R$styleable: int Chip_chipStartPadding +cyanogenmod.weather.CMWeatherManager: java.lang.String TAG +com.google.android.material.R$dimen: int notification_large_icon_height +androidx.preference.R$drawable: int tooltip_frame_dark +android.didikee.donate.R$color: int abc_tint_spinner +com.xw.repo.bubbleseekbar.R$styleable: int AlertDialog_listLayout +wangdaye.com.geometricweather.main.MainActivity: MainActivity() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.lang.String MobileLink +wangdaye.com.geometricweather.R$id: int dialog_location_permission_statement_nextButton +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_thumb_radius_on_dragging +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_contentDescription +com.google.android.material.R$attr: int layout_goneMarginLeft +cyanogenmod.themes.ThemeChangeRequest: ThemeChangeRequest(android.os.Parcel) +okio.Buffer: okio.BufferedSink writeString(java.lang.String,int,int,java.nio.charset.Charset) +com.google.android.material.R$style: int Base_Widget_MaterialComponents_Slider +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage ENCODE +androidx.viewpager.widget.PagerTitleStrip: int getTextSpacing() +android.didikee.donate.R$style: int TextAppearance_AppCompat_Subhead_Inverse +com.google.android.material.R$styleable: int[] CompoundButton +com.google.android.material.R$drawable: int abc_text_select_handle_right_mtrl_dark +androidx.preference.R$attr: int tickMark +com.turingtechnologies.materialscrollbar.R$attr: int windowMinWidthMajor +androidx.constraintlayout.widget.R$layout: int abc_screen_toolbar +wangdaye.com.geometricweather.R$layout: int widget_day_tile +androidx.constraintlayout.motion.widget.MotionLayout: long getNanoTime() +androidx.constraintlayout.widget.R$id: int dragUp +wangdaye.com.geometricweather.R$anim: int popup_show_bottom_right +com.amap.api.location.AMapLocation$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider: java.lang.String getProviderName(android.content.Context) +com.tencent.bugly.crashreport.common.info.a: long s +wangdaye.com.geometricweather.R$attr: int paddingRightSystemWindowInsets +com.baidu.location.f: f() +com.turingtechnologies.materialscrollbar.MaterialScrollBar +androidx.appcompat.R$dimen: int abc_dialog_padding_material +com.google.android.material.R$style: int Base_Widget_AppCompat_ListView +android.didikee.donate.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: float getSpeed(float) +androidx.appcompat.resources.R$id +androidx.appcompat.R$anim: R$anim() +james.adaptiveicon.R$styleable: int[] Toolbar +com.bumptech.glide.R$id: int notification_background +wangdaye.com.geometricweather.R$styleable: int SearchView_iconifiedByDefault +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_gradientRadius +com.google.android.gms.common.zzj: android.os.Parcelable$Creator CREATOR +androidx.appcompat.widget.ActionMenuView: void setOnMenuItemClickListener(androidx.appcompat.widget.ActionMenuView$OnMenuItemClickListener) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setO3(java.lang.Float) +wangdaye.com.geometricweather.GeometricWeather: GeometricWeather() +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Body1 +com.google.android.material.R$attr: int contentInsetRight +okhttp3.internal.cache.DiskLruCache$Editor: boolean[] written +okhttp3.internal.http.HttpMethod: boolean redirectsWithBody(java.lang.String) +wangdaye.com.geometricweather.R$style: int Preference_Category_Material +androidx.fragment.app.FragmentActivity: FragmentActivity() +james.adaptiveicon.R$color: int abc_search_url_text_pressed +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIcon +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: java.lang.String getProbabilityText(android.content.Context,float) +wangdaye.com.geometricweather.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State STARTED +androidx.preference.R$string: int abc_search_hint +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox_Dense +okhttp3.internal.cache.DiskLruCache$3: okhttp3.internal.cache.DiskLruCache$Snapshot nextSnapshot +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainNoLast: void completion() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_weight +com.google.android.material.R$styleable: int MenuItem_android_numericShortcut +com.github.rahatarmanahmed.cpv.R$attr: int cpv_progress +androidx.hilt.lifecycle.R$id: int dialog_button +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Body1 +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationZ +wangdaye.com.geometricweather.R$id: int container_main_pollen_indicator +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_clear_material +wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status valueOf(java.lang.String) +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_bottom_padding +androidx.preference.R$style: int Base_Theme_AppCompat_DialogWhenLarge +com.google.android.gms.internal.location.zzac: android.os.Parcelable$Creator CREATOR +com.jaredrummler.android.colorpicker.R$layout: int preference_widget_switch_compat +wangdaye.com.geometricweather.R$styleable: int Layout_layout_goneMarginTop +androidx.appcompat.R$attr: int actionModeCutDrawable +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Ice +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_editTextColor +androidx.dynamicanimation.R$dimen: int notification_top_pad +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeStyle +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Picker_Date_Spinner +androidx.preference.R$styleable: int AlertDialog_buttonIconDimen +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_CardView +io.reactivex.internal.observers.LambdaObserver +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours +androidx.appcompat.R$styleable: int[] ListPopupWindow +com.google.android.material.R$string: int password_toggle_content_description +com.google.android.material.R$attr: int flow_verticalAlign +androidx.coordinatorlayout.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getWindSpeed() +androidx.preference.R$integer: int cancel_button_image_alpha +com.google.android.material.R$styleable: int SearchView_queryHint +com.tencent.bugly.crashreport.biz.b: void a(long) +com.google.android.material.R$styleable: int KeyPosition_keyPositionType +android.didikee.donate.R$attr: int listMenuViewStyle +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_low_pressed +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.BiFunction) +com.xw.repo.bubbleseekbar.R$dimen: int abc_button_inset_horizontal_material +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType[] values() +james.adaptiveicon.R$attr: int actionModeCutDrawable +androidx.hilt.lifecycle.R$style: R$style() +io.reactivex.Observable: io.reactivex.Observable timeInterval() +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_transparent_bg_color +com.google.android.material.slider.BaseSlider: void setThumbElevation(float) +com.google.android.material.R$styleable: int AlertDialog_singleChoiceItemLayout +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer dewPoint +wangdaye.com.geometricweather.R$color: int colorLine_dark +androidx.preference.R$id: int accessibility_custom_action_24 +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter weatherCodeConverter +androidx.preference.R$dimen: int tooltip_y_offset_non_touch +wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getLongitude() +com.google.android.material.R$drawable: int design_ic_visibility_off +wangdaye.com.geometricweather.R$id: int widget_day_week_icon_1 +android.didikee.donate.R$attr: int iconifiedByDefault +com.google.android.material.datepicker.DateValidatorPointForward: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$styleable: int Constraint_android_translationZ +com.google.android.material.slider.Slider: void setTrackInactiveTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String messageLong +androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +com.xw.repo.bubbleseekbar.R$attr: int actionModeCloseButtonStyle +wangdaye.com.geometricweather.R$attr: int flow_firstVerticalStyle +androidx.constraintlayout.widget.R$id: int gone +com.turingtechnologies.materialscrollbar.R$color: int material_grey_850 +androidx.legacy.coreutils.R$dimen: int notification_top_pad_large_text +androidx.appcompat.R$styleable: int AppCompatTextView_drawableRightCompat +com.google.android.material.R$style: int TextAppearance_AppCompat_Display3 +androidx.appcompat.resources.R$styleable: int ColorStateListItem_alpha +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setTemperature(int) +com.google.android.material.R$dimen: int material_text_view_test_line_height +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionButton +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource[],io.reactivex.functions.Function,int) +androidx.preference.R$dimen: int abc_dropdownitem_text_padding_right +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_stroke_width_default +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_icon_btn_padding_left +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Metric Metric +com.google.android.material.R$styleable: int AppCompatTheme_panelMenuListTheme +com.google.android.material.R$styleable: int Chip_chipIconTint +androidx.transition.R$styleable: int GradientColor_android_centerColor android.didikee.donate.R$styleable: int AppCompatTheme_checkboxStyle -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_anchor -androidx.appcompat.R$drawable: int notification_tile_bg -wangdaye.com.geometricweather.R$id: int notification_main_column_container -com.tencent.bugly.crashreport.crash.c: void a(com.tencent.bugly.crashreport.common.strategy.StrategyBean) -com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_default_height_material -androidx.constraintlayout.widget.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_0 -retrofit2.KotlinExtensions: java.lang.Object awaitNullable(retrofit2.Call,kotlin.coroutines.Continuation) -wangdaye.com.geometricweather.R$dimen: int mtrl_slider_track_top -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCornerRadiusTopStart -cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: byte[] readPersistentBytes(java.lang.String) -wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit ATM -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_imageButtonStyle -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean a(int,java.lang.String) -wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceFragmentCompatStyle -androidx.preference.R$color: int bright_foreground_disabled_material_dark -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) -wangdaye.com.geometricweather.R$style: int large_title_text -androidx.drawerlayout.R$id: R$id() -james.adaptiveicon.R$styleable: int SwitchCompat_showText -cyanogenmod.app.Profile: cyanogenmod.profiles.LockSettings mScreenLockMode -wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundTintMode -com.turingtechnologies.materialscrollbar.R$id: int right_icon -okhttp3.Callback: void onFailure(okhttp3.Call,java.io.IOException) -androidx.appcompat.widget.LinearLayoutCompat: int getBaseline() -james.adaptiveicon.R$dimen: int abc_text_size_menu_header_material -wangdaye.com.geometricweather.R$attr: int constraintSet -james.adaptiveicon.R$styleable: int[] TextAppearance -androidx.vectordrawable.animated.R$drawable: int notification_bg_low_normal -com.xw.repo.bubbleseekbar.R$id: int scrollIndicatorDown -com.google.android.material.R$attr: int fontProviderCerts -com.google.android.material.R$dimen: int design_bottom_navigation_elevation -okhttp3.internal.ws.WebSocketWriter$FrameSink: long contentLength -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_DropDownItem -androidx.cardview.widget.CardView: int getContentPaddingBottom() -okhttp3.Request: boolean isHttps() -androidx.viewpager2.R$drawable: int notification_bg -androidx.hilt.lifecycle.R$drawable: int notification_action_background -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierDirection -retrofit2.CallAdapter -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Small_Inverse -wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetHourlyEntityList() +retrofit2.Invocation: java.util.List arguments +wangdaye.com.geometricweather.R$id: int container_main_first_card_header_localTimeText +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: boolean delayError +com.google.android.material.R$color: int material_grey_800 +com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_search +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.lang.String weatherSource +androidx.swiperefreshlayout.R$id: int icon +androidx.appcompat.R$color: int primary_text_disabled_material_light +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_font +androidx.loader.R$styleable: int GradientColor_android_gradientRadius +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onTimeout(long) +com.jaredrummler.android.colorpicker.R$styleable: int GradientColorItem_android_offset +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: void run() +androidx.work.impl.diagnostics.DiagnosticsReceiver +androidx.hilt.R$dimen: int notification_right_icon_size +com.jaredrummler.android.colorpicker.R$id: int scrollIndicatorUp +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_6 +okhttp3.internal.cache.DiskLruCache: void rebuildJournal() +wangdaye.com.geometricweather.R$layout: int item_alert +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature: java.lang.String Unit +okio.SegmentedByteString: byte[] toByteArray() +io.reactivex.internal.observers.ForEachWhileObserver: void onComplete() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: double Value +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle +com.tencent.bugly.crashreport.common.info.a: java.lang.String j() +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_disabled +wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor: wangdaye.com.geometricweather.common.basic.models.options.NotificationTextColor valueOf(java.lang.String) +okhttp3.Cookie: boolean matches(okhttp3.HttpUrl) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.util.Date getSunSetDate() +wangdaye.com.geometricweather.R$dimen: int design_bottom_sheet_modal_elevation +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabView +androidx.recyclerview.widget.RecyclerView: void removeOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +androidx.loader.R$styleable: int[] GradientColor +com.bumptech.glide.R$dimen: int notification_top_pad_large_text +androidx.fragment.R$id: int accessibility_custom_action_5 +androidx.appcompat.widget.SwitchCompat: void setSwitchTypeface(android.graphics.Typeface) +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: boolean equals(java.lang.Object) +androidx.multidex.MultiDexApplication: MultiDexApplication() +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onDetach() +com.bumptech.glide.integration.okhttp.R$string: int status_bar_notification_info_overflow +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setLockWallpaper(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_marginLeft +com.tencent.bugly.crashreport.biz.a: void a(com.tencent.bugly.crashreport.biz.a) +androidx.appcompat.R$color: int bright_foreground_disabled_material_light +com.google.gson.internal.LinkedTreeMap: int size +androidx.coordinatorlayout.R$id: int icon_group +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void onError(java.lang.Throwable) +retrofit2.ParameterHandler$Header: void apply(retrofit2.RequestBuilder,java.lang.Object) +com.tencent.bugly.crashreport.a: java.lang.String getLogFromNative() +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_medium_material +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Button +com.google.android.material.R$dimen: int mtrl_calendar_landscape_header_width +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource,int) +io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver[] values() +androidx.hilt.lifecycle.R$color: R$color() +com.google.android.material.R$id: int mtrl_picker_header +androidx.fragment.R$drawable: int notification_template_icon_low_bg +com.google.android.material.R$style: int TextAppearance_Design_Counter +android.didikee.donate.R$attr: int thickness +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SeekBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean: java.lang.String zh_TW +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: void setStatus(int) +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_android_maxWidth +james.adaptiveicon.R$attr: int contentDescription +wangdaye.com.geometricweather.R$id: int chip1 +androidx.viewpager2.widget.ViewPager2: int getOrientation() +android.didikee.donate.R$style: int Base_Widget_AppCompat_SearchView +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_allowPresets +wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_maxHeight +androidx.core.R$drawable: int notification_bg_normal_pressed +okio.Buffer: okio.Segment head +wangdaye.com.geometricweather.db.entities.LocationEntityDao: boolean hasKey(wangdaye.com.geometricweather.db.entities.LocationEntity) +androidx.constraintlayout.widget.R$attr: int autoSizeStepGranularity +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: void setUnit(java.lang.String) +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeSplitBackground +androidx.vectordrawable.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$id: int src_over +androidx.hilt.R$id: int accessibility_custom_action_25 +androidx.constraintlayout.widget.R$attr: int searchHintIcon +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_panelMenuListTheme +wangdaye.com.geometricweather.R$string: int settings_title_week_icon_mode +android.didikee.donate.R$dimen: int abc_seekbar_track_background_height_material +com.google.android.material.R$styleable: int MenuItem_android_title +com.turingtechnologies.materialscrollbar.R$dimen: int notification_right_side_padding_top +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_TextInputLayout +android.didikee.donate.R$styleable: int AppCompatTheme_actionButtonStyle +wangdaye.com.geometricweather.R$dimen: int mtrl_tooltip_cornerSize +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_wavePeriod +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintTag +okio.BufferedSink: okio.BufferedSink writeIntLe(int) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginStart +com.google.android.material.R$attr: int fontProviderFetchTimeout +james.adaptiveicon.R$drawable: int abc_btn_colored_material +androidx.constraintlayout.widget.R$id: int expanded_menu +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_checkedIconTint +com.tencent.bugly.crashreport.common.info.a: java.lang.String J +retrofit2.ParameterHandler$Part: java.lang.reflect.Method method +wangdaye.com.geometricweather.R$attr: int touchRegionId +androidx.appcompat.R$anim: int abc_grow_fade_in_from_bottom +com.turingtechnologies.materialscrollbar.R$attr: int fabCradleVerticalOffset +wangdaye.com.geometricweather.R$attr: int summaryOff +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: boolean cancelled +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_backgroundTintMode +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBottom_toBottomOf +androidx.constraintlayout.widget.R$attr: int flow_firstVerticalStyle +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String U +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: int limit +androidx.preference.R$styleable: int AppCompatTextView_drawableStartCompat +io.reactivex.Observable: io.reactivex.Observable fromFuture(java.util.concurrent.Future,long,java.util.concurrent.TimeUnit) +androidx.appcompat.R$attr: int logo +okhttp3.TlsVersion: java.util.List forJavaNames(java.lang.String[]) +wangdaye.com.geometricweather.R$attr: int enforceMaterialTheme +com.tencent.bugly.proguard.d: void b(int) +com.google.android.material.R$dimen: int abc_config_prefDialogWidth +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Wind: double gust +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: void setHideMotionSpec(com.google.android.material.animation.MotionSpec) +com.xw.repo.bubbleseekbar.R$id: int action_menu_presenter +androidx.appcompat.R$id: int normal +com.tencent.bugly.proguard.am: byte[] y +com.jaredrummler.android.colorpicker.R$styleable: int View_paddingStart +com.google.android.material.R$layout: int abc_search_dropdown_item_icons_2line +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_icon +com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +androidx.constraintlayout.widget.R$styleable: int[] PropertySet +okio.Buffer: okio.BufferedSink writeInt(int) +okhttp3.Cache$2: java.util.Iterator delegate +retrofit2.adapter.rxjava2.CallEnqueueObservable: void subscribeActual(io.reactivex.Observer) +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_RESULT_VALUE +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontVariationSettings +retrofit2.BuiltInConverters$VoidResponseBodyConverter: BuiltInConverters$VoidResponseBodyConverter() +io.reactivex.Observable: io.reactivex.Observable combineLatestDelayError(io.reactivex.ObservableSource[],io.reactivex.functions.Function) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver: io.reactivex.internal.fuseable.SimpleQueue queue +android.didikee.donate.R$attr: int buttonBarNeutralButtonStyle +wangdaye.com.geometricweather.R$color: int mtrl_btn_text_btn_bg_color_selector +android.didikee.donate.R$styleable: int AppCompatTheme_windowNoTitle +androidx.customview.R$style: R$style() +com.google.android.material.R$styleable: int KeyPosition_motionTarget +com.jaredrummler.android.colorpicker.R$integer: R$integer() +com.tencent.bugly.crashreport.common.info.a: void c(java.lang.String) +wangdaye.com.geometricweather.R$integer: int mtrl_btn_anim_duration_ms +androidx.appcompat.R$color: int abc_hint_foreground_material_light +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display1 +com.github.rahatarmanahmed.cpv.R$styleable: R$styleable() +com.jaredrummler.android.colorpicker.R$attr: int titleTextAppearance +androidx.appcompat.R$styleable: int SwitchCompat_track +cyanogenmod.app.CustomTile$1: CustomTile$1() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextView +okhttp3.internal.connection.StreamAllocation: java.net.Socket releaseAndAcquire(okhttp3.internal.connection.RealConnection) +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle +okhttp3.internal.http2.Header$Listener: void onHeaders(okhttp3.Headers) +com.turingtechnologies.materialscrollbar.R$id: int right +com.tencent.bugly.crashreport.common.strategy.a: android.content.Context a(com.tencent.bugly.crashreport.common.strategy.a) +wangdaye.com.geometricweather.R$styleable: int Slider_android_stepSize +androidx.core.graphics.drawable.IconCompatParcelizer: IconCompatParcelizer() +io.reactivex.Observable: io.reactivex.Observable takeLast(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String getHeadDescription() +android.didikee.donate.R$attr: int controlBackground +wangdaye.com.geometricweather.R$drawable: int notif_temp_114 +com.google.android.material.R$styleable: int TextInputLayout_boxStrokeWidthFocused +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_FAST_SAMPLES +com.tencent.bugly.proguard.m: int d +com.xw.repo.bubbleseekbar.R$drawable: int abc_text_select_handle_left_mtrl_light +android.didikee.donate.R$color: int abc_secondary_text_material_light +okhttp3.internal.http2.Http2: java.lang.IllegalArgumentException illegalArgument(java.lang.String,java.lang.Object[]) +okhttp3.logging.LoggingEventListener: void connectFailed(okhttp3.Call,java.net.InetSocketAddress,java.net.Proxy,okhttp3.Protocol,java.io.IOException) +cyanogenmod.app.StatusBarPanelCustomTile$1: java.lang.Object createFromParcel(android.os.Parcel) +wangdaye.com.geometricweather.R$styleable: int Constraint_android_maxWidth +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +com.amap.api.location.AMapLocation: org.json.JSONObject toJson(int) +cyanogenmod.app.Profile: int getTriggerState(int,java.lang.String) +io.reactivex.internal.util.NotificationLite +wangdaye.com.geometricweather.R$styleable: int[] Badge +james.adaptiveicon.R$id: int spacer +androidx.preference.R$id: int accessibility_custom_action_25 +androidx.lifecycle.SavedStateHandleController +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.R$layout: int activity_widget_config +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_id +wangdaye.com.geometricweather.R$styleable: int MockView_mock_diagonalsColor +androidx.constraintlayout.widget.R$style: int Platform_AppCompat_Light +com.tencent.bugly.crashreport.biz.b: void c(android.content.Context,com.tencent.bugly.BuglyStrategy) +androidx.fragment.R$dimen: int notification_top_pad +com.google.android.material.R$style: int Base_Widget_MaterialComponents_PopupMenu +james.adaptiveicon.R$style: int Widget_AppCompat_RatingBar_Indicator +cyanogenmod.platform.Manifest$permission: java.lang.String WRITE_WEATHER +wangdaye.com.geometricweather.common.basic.models.options.unit.DurationUnit: float unitFactor +androidx.appcompat.widget.AppCompatImageButton: AppCompatImageButton(android.content.Context,android.util.AttributeSet,int) +androidx.lifecycle.SavedStateHandle$SavingStateLiveData: androidx.lifecycle.SavedStateHandle mHandle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWeatherStart() +cyanogenmod.weather.RequestInfo$1 +android.didikee.donate.R$drawable: int abc_control_background_material +android.support.v4.app.INotificationSideChannel$Default: void notify(java.lang.String,int,java.lang.String,android.app.Notification) +androidx.appcompat.widget.Toolbar$SavedState +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitation() +retrofit2.HttpServiceMethod$SuspendForBody: boolean isNullable +wangdaye.com.geometricweather.common.basic.models.weather.Alert: void writeToParcel(android.os.Parcel,int) +wangdaye.com.geometricweather.R$layout: int item_weather_daily_uv +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +com.tencent.bugly.proguard.u: boolean e() +androidx.constraintlayout.widget.R$id: int wrap +wangdaye.com.geometricweather.R$id: int mtrl_picker_title_text +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String value +okhttp3.internal.cache.FaultHidingSink: FaultHidingSink(okio.Sink) +com.google.android.material.R$styleable: int Constraint_layout_constraintBottom_toBottomOf +com.amap.api.fence.PoiItem: void setPoiType(java.lang.String) +androidx.constraintlayout.widget.R$attr: int maxAcceleration +wangdaye.com.geometricweather.R$attr: int buttonBarPositiveButtonStyle +okhttp3.internal.http2.Http2Connection$6: okhttp3.internal.http2.Http2Connection this$0 +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_title_3 +androidx.swiperefreshlayout.R$color +com.google.android.material.textfield.TextInputLayout: void setEnabled(boolean) +wangdaye.com.geometricweather.R$string: int date_format_widget_short +androidx.preference.R$styleable: int[] AnimatedStateListDrawableItem +androidx.work.R$id: int accessibility_custom_action_9 +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: boolean disposed +cyanogenmod.weather.WeatherLocation: java.lang.String mCountry +cyanogenmod.platform.R$drawable +androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabText +androidx.viewpager.R$drawable: int notification_template_icon_bg +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String daytimeWindLevel +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getOverlayThemePackageName() +com.xw.repo.bubbleseekbar.R$drawable: int abc_textfield_default_mtrl_alpha +com.google.android.material.R$color: int foreground_material_dark +com.google.android.material.circularreveal.CircularRevealFrameLayout: CircularRevealFrameLayout(android.content.Context) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialCalendar_Fullscreen +androidx.preference.R$layout: int notification_action +cyanogenmod.providers.CMSettings$Global: int getInt(android.content.ContentResolver,java.lang.String) +com.google.android.material.R$attr: int cornerFamilyBottomRight +retrofit2.RequestFactory: okhttp3.MediaType contentType +james.adaptiveicon.R$attr: int titleMarginStart +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$1: ExternalViewProviderService$Provider$ProviderImpl$1(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +okhttp3.OkHttpClient$Builder: java.net.Proxy proxy +android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_DarkActionBar +io.reactivex.Observable: io.reactivex.Observable takeWhile(io.reactivex.functions.Predicate) +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_1_black +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: BaiduIPLocationResult$ContentBean() +androidx.hilt.R$dimen: int notification_main_column_padding_top +io.reactivex.internal.observers.DeferredScalarDisposable: long serialVersionUID +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_search_api_material +okhttp3.internal.http2.Hpack$Writer: void writeByteString(okio.ByteString) +james.adaptiveicon.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +com.google.android.material.R$styleable: int Constraint_android_translationX +wangdaye.com.geometricweather.R$mipmap: int ic_launcher_round +androidx.appcompat.R$color: int primary_text_disabled_material_dark +androidx.hilt.lifecycle.R$id: int line1 +cyanogenmod.profiles.AirplaneModeSettings: boolean mOverride +com.google.android.material.R$color: int secondary_text_disabled_material_light +androidx.constraintlayout.widget.R$styleable: int Spinner_android_entries +wangdaye.com.geometricweather.R$string: int learn_more +androidx.lifecycle.AndroidViewModel: android.app.Application mApplication +androidx.appcompat.resources.R$styleable: int[] GradientColorItem +com.google.android.material.appbar.AppBarLayout: int getTopInset() +com.google.android.material.R$dimen: int design_fab_size_mini +com.tencent.bugly.BuglyStrategy$a: java.util.Map onCrashHandleStart(int,java.lang.String,java.lang.String,java.lang.String) +wangdaye.com.geometricweather.db.entities.HistoryEntity: void setDaytimeTemperature(int) +cyanogenmod.app.Profile: void setStatusBarIndicator(boolean) +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FOGGY +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeDegreeDayTemperature +okhttp3.internal.NamedRunnable: void run() +androidx.constraintlayout.widget.VirtualLayout: void setVisibility(int) +com.google.android.material.R$id: int action_bar_activity_content +androidx.appcompat.R$color: int bright_foreground_disabled_material_dark +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_cardPreventCornerOverlap +com.jaredrummler.android.colorpicker.R$color: int abc_hint_foreground_material_light +androidx.constraintlayout.widget.R$styleable: int[] GradientColor +okhttp3.internal.http2.Hpack$Writer: int smallestHeaderTableSizeSetting +com.google.android.material.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Icon +com.google.android.material.R$styleable: int NavigationView_itemShapeFillColor +okhttp3.internal.ws.WebSocketReader$FrameCallback +cyanogenmod.app.CustomTile: void cloneInto(cyanogenmod.app.CustomTile) +wangdaye.com.geometricweather.R$dimen: int abc_search_view_preferred_height +okhttp3.internal.http.StatusLine: okhttp3.internal.http.StatusLine parse(java.lang.String) +com.amap.api.location.AMapLocationClientOption: java.lang.Object clone() +cyanogenmod.weather.WeatherInfo: double getTodaysHigh() +com.jaredrummler.android.colorpicker.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginEnd +com.tencent.bugly.crashreport.crash.jni.NativeExceptionHandler: void handleNativeException2(int,int,long,long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,int,java.lang.String,int,int,int,java.lang.String,java.lang.String,java.lang.String[]) +wangdaye.com.geometricweather.R$string: int settings_title_list_animation_switch +com.google.android.material.R$attr: int passwordToggleEnabled +com.google.android.material.R$attr: int actionDropDownStyle +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification_Line2 +com.bumptech.glide.integration.okhttp.R$id: int left +com.tencent.bugly.proguard.i: float a(float,int,boolean) +okio.Buffer: okio.Buffer writeShort(int) +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setDegreeDayTemperature(java.lang.Integer) +james.adaptiveicon.R$dimen: int abc_action_bar_content_inset_with_nav +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_actionTextColorAlpha +androidx.appcompat.R$styleable: int SearchView_iconifiedByDefault +com.xw.repo.bubbleseekbar.R$styleable: int PopupWindow_overlapAnchor +com.google.android.material.R$color: int mtrl_tabs_colored_ripple_color +okhttp3.MultipartBody: byte[] CRLF +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String ALARM_ID +com.turingtechnologies.materialscrollbar.R$style +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder hostOnlyDomain(java.lang.String) +androidx.customview.R$id: int notification_background +com.amap.api.location.AMapLocation: java.lang.String l(com.amap.api.location.AMapLocation,java.lang.String) +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property CityId +com.turingtechnologies.materialscrollbar.R$color: int bright_foreground_disabled_material_dark +androidx.customview.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$styleable: int NavigationView_android_maxWidth +com.google.android.material.R$attr: int buttonPanelSideLayout +okhttp3.RequestBody +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_SearchView_ActionBar +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex$Index: java.lang.String quali +com.google.android.material.R$attr: int expandActivityOverflowButtonDrawable +okio.Buffer: okio.Buffer buffer() +okio.RealBufferedSource: void skip(long) +com.turingtechnologies.materialscrollbar.R$id: int scrollView +com.google.android.material.R$color: int primary_dark_material_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String to +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Large +com.google.android.material.R$styleable: int MotionLayout_currentState +com.google.android.material.appbar.CollapsingToolbarLayout: void setMaxLines(int) +cyanogenmod.weather.WeatherLocation: java.lang.String getState() +cyanogenmod.content.Intent: java.lang.String ACTION_THEME_INSTALLED +wangdaye.com.geometricweather.R$string: int content_desc_wechat_payment_code +cyanogenmod.hardware.DisplayMode: DisplayMode(int,java.lang.String) +com.google.android.material.R$color: int bright_foreground_inverse_material_light +wangdaye.com.geometricweather.R$attr: int passwordToggleTintMode +okhttp3.OkHttpClient: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner +io.reactivex.Observable: io.reactivex.Observable concatMapMaybeDelayError(io.reactivex.functions.Function) +cyanogenmod.weather.WeatherLocation$1: cyanogenmod.weather.WeatherLocation[] newArray(int) +androidx.loader.R$id: int title +wangdaye.com.geometricweather.R$attr: int fabCradleMargin +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +com.jaredrummler.android.colorpicker.R$style: int Base_V23_Theme_AppCompat +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: java.lang.String Category +cyanogenmod.util.ColorUtils: float interp(int,float) +androidx.appcompat.R$styleable: int View_theme +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability +wangdaye.com.geometricweather.R$id: int textTop +io.reactivex.internal.util.NotificationLite: boolean isSubscription(java.lang.Object) +wangdaye.com.geometricweather.R$anim: int popup_show_bottom_left +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarSwipeRefreshLayout: FitSystemBarSwipeRefreshLayout(android.content.Context,android.util.AttributeSet) +com.google.android.material.textfield.TextInputLayout: void setSuffixTextColor(android.content.res.ColorStateList) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSrc() +james.adaptiveicon.R$styleable: int AppCompatTheme_actionModeFindDrawable +android.didikee.donate.R$layout: int abc_popup_menu_item_layout +com.tencent.bugly.proguard.p: boolean c +androidx.constraintlayout.widget.R$styleable: int[] CompoundButton +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String getTo() +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: IWeatherServiceProviderChangeListener$Stub() +androidx.lifecycle.extensions.R$id: int right_side +wangdaye.com.geometricweather.R$id: int item_alert_subtitle +retrofit2.CompletableFutureCallAdapterFactory$CallCancelCompletableFuture: retrofit2.Call call +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onError(java.lang.Throwable) +com.google.android.material.R$integer: int mtrl_chip_anim_duration +wangdaye.com.geometricweather.R$styleable: int PropertySet_android_visibility +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setValue(java.util.List) +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: MfForecastV2Result$ForecastProperties$ProbabilityForecastV2() +com.google.android.material.R$color: int mtrl_calendar_item_stroke_color +androidx.constraintlayout.widget.R$dimen: int abc_text_size_display_1_material +com.amap.api.location.AMapLocation: void setErrorInfo(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: void setStatus(int) +wangdaye.com.geometricweather.db.entities.LocationEntity: void setTimeZone(java.util.TimeZone) +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Stream$StreamTimeout readTimeout +androidx.appcompat.R$style: int Platform_V25_AppCompat +cyanogenmod.providers.CMSettings$System: java.lang.String T9_SEARCH_INPUT_LOCALE +com.google.android.material.R$style: int Base_V14_Theme_MaterialComponents_Light +okhttp3.internal.http.HttpCodec: void flushRequest() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setSunRiseSet(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean) +wangdaye.com.geometricweather.R$styleable: int ActionMode_background +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dialogPreferredPadding +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getCity() +com.google.android.material.R$attr: int flow_horizontalGap +androidx.transition.R$id: int transition_scene_layoutid_cache +androidx.lifecycle.Transformations$1: androidx.lifecycle.MediatorLiveData val$result +androidx.hilt.lifecycle.R$drawable: int notification_icon_background +com.jaredrummler.android.colorpicker.R$style: int ThemeOverlay_AppCompat_Dark +com.jaredrummler.android.colorpicker.R$attr: int layout +wangdaye.com.geometricweather.common.basic.GeoViewModel: GeoViewModel(android.app.Application) +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_2 +androidx.lifecycle.ClassesInfoCache: java.util.Map mCallbackMap +androidx.constraintlayout.widget.R$drawable: int abc_item_background_holo_light +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle +com.google.android.material.R$style: int Widget_MaterialComponents_TimePicker_Display +androidx.appcompat.resources.R$id: int accessibility_custom_action_7 +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +okhttp3.Handshake: okhttp3.TlsVersion tlsVersion() +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintStart_toEndOf +wangdaye.com.geometricweather.R$style: int AlertDialog_AppCompat_Light +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult +wangdaye.com.geometricweather.background.polling.work.worker.NormalUpdateWorker +io.reactivex.internal.util.HashMapSupplier: java.util.concurrent.Callable asCallable() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_DropDownItem +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleGravity() +wangdaye.com.geometricweather.R$string: int widget_clock_day_vertical +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +androidx.constraintlayout.widget.R$attr: int alphabeticModifiers +okhttp3.internal.platform.Platform: boolean isAndroid() +retrofit2.BuiltInConverters$ToStringConverter +cyanogenmod.themes.ThemeManager: java.util.Set mChangeListeners +android.didikee.donate.R$styleable: int Toolbar_contentInsetStart +androidx.constraintlayout.widget.R$styleable: int CompoundButton_buttonCompat +wangdaye.com.geometricweather.R$integer: int abc_config_activityShortDur +androidx.constraintlayout.widget.R$styleable: int State_android_id +com.google.android.gms.common.api.ApiException: com.google.android.gms.common.api.Status mStatus +androidx.viewpager2.R$styleable: int[] FontFamily +androidx.appcompat.resources.R$id: int actions +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: int FINISHED +io.reactivex.internal.util.VolatileSizeArrayList: java.lang.Object remove(int) +com.jaredrummler.android.colorpicker.R$id: int scrollIndicatorDown +wangdaye.com.geometricweather.R$attr: int cpv_maxProgress +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getUniqueDeviceId() +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onDetach +androidx.preference.EditTextPreferenceDialogFragmentCompat: EditTextPreferenceDialogFragmentCompat() +androidx.preference.R$attr: int defaultQueryHint +com.tencent.bugly.BuglyStrategy: boolean isUploadProcess() +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onListenerConnected() +android.support.v4.os.IResultReceiver$Stub: java.lang.String DESCRIPTOR +com.jaredrummler.android.colorpicker.R$attr: int gapBetweenBars +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_subtitle_bottom_margin_material +io.reactivex.internal.util.VolatileSizeArrayList: void add(int,java.lang.Object) +androidx.appcompat.R$styleable: int AppCompatTheme_tooltipFrameBackground +com.baidu.location.e.l$b: int c(com.baidu.location.e.l$b) +okhttp3.internal.cache.InternalCache: void remove(okhttp3.Request) +androidx.constraintlayout.widget.R$attr: int layout_constraintBottom_toTopOf +com.google.android.material.R$attr: int layout_editor_absoluteY +androidx.appcompat.R$styleable: int AppCompatTheme_listPopupWindowStyle +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_AutoCompleteTextView +wangdaye.com.geometricweather.R$id: int transparency_title +androidx.appcompat.R$layout: int abc_action_bar_title_item +okhttp3.Cache: java.lang.String key(okhttp3.HttpUrl) +com.google.android.material.R$styleable: int BottomAppBar_fabCradleRoundedCornerRadius +com.google.android.material.R$styleable: int MenuItem_android_id +okhttp3.EventListener: void responseHeadersStart(okhttp3.Call) +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_voice +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub$Proxy: boolean requestDismiss() +androidx.preference.R$styleable: int AppCompatTheme_colorAccent +wangdaye.com.geometricweather.R$integer: int mtrl_calendar_header_orientation +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial: AccuCurrentResult$PrecipitationSummary$Past3Hours$Imperial() +androidx.preference.R$attr: int dialogTitle +com.bumptech.glide.R$attr: int fontProviderQuery +wangdaye.com.geometricweather.db.entities.DailyEntityDao: boolean hasKey(java.lang.Object) +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Header_Text +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose valueOf(java.lang.String) +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_scaleX +wangdaye.com.geometricweather.R$styleable: int GradientColorItem_android_offset +com.google.android.material.chip.Chip: android.content.res.ColorStateList getChipBackgroundColor() +okio.Buffer: long writeAll(okio.Source) +com.google.android.material.R$style: int TextAppearance_Design_Hint +com.google.android.material.R$dimen: int mtrl_low_ripple_default_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: java.util.Date Date +androidx.constraintlayout.widget.R$interpolator: int fast_out_slow_in +io.reactivex.Observable: void subscribeActual(io.reactivex.Observer) +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_MIGRATE_SETTINGS +com.google.android.material.R$style: int Widget_MaterialComponents_Toolbar_PrimarySurface +androidx.appcompat.R$id: int alertTitle +retrofit2.Retrofit: java.util.concurrent.Executor callbackExecutor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Category +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterOverflowTextAppearance +androidx.preference.R$styleable: int MenuItem_android_enabled +androidx.appcompat.R$id: int multiply +wangdaye.com.geometricweather.R$array: int dark_mode_values +cyanogenmod.weather.WeatherLocation: java.lang.String toString() +james.adaptiveicon.R$id: int time +com.google.android.material.R$id: int right_side +androidx.core.R$id: int accessibility_custom_action_21 +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Button +cyanogenmod.app.BaseLiveLockManagerService: boolean unregisterChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +okhttp3.internal.http2.Http2Connection: void pushExecutorExecute(okhttp3.internal.NamedRunnable) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float pressure +androidx.preference.R$string: int expand_button_title +androidx.appcompat.R$id: int spacer +com.jaredrummler.android.colorpicker.R$drawable: int abc_action_bar_item_background_material +androidx.appcompat.R$style +androidx.constraintlayout.widget.R$attr: int thumbTintMode +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: java.lang.String languageId +com.amap.api.location.AMapLocation: int p +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_logo +com.turingtechnologies.materialscrollbar.R$styleable: int ChipGroup_chipSpacingHorizontal okhttp3.internal.http.CallServerInterceptor: boolean forWebSocket -com.tencent.bugly.proguard.h: void a(java.lang.String) -androidx.appcompat.widget.AppCompatTextView: void setTextClassifier(android.view.textclassifier.TextClassifier) -wangdaye.com.geometricweather.R$dimen: int design_navigation_icon_size -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipIcon -cyanogenmod.app.ThemeVersion$ThemeVersionImpl2$1: ThemeVersion$ThemeVersionImpl2$1() -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatImageView_tint -io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource[],io.reactivex.functions.Function,int) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitation -com.google.android.material.R$attr: int telltales_velocityMode -androidx.preference.R$styleable: int AppCompatImageView_srcCompat -com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_elevation -com.jaredrummler.android.colorpicker.R$string: int abc_toolbar_collapse_description -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_share_mtrl_alpha -androidx.viewpager2.R$id: int action_divider -com.turingtechnologies.materialscrollbar.R$animator -com.tencent.bugly.proguard.z: android.content.Context a(android.content.Context) -com.google.android.material.R$styleable: int ActionMode_closeItemLayout -com.turingtechnologies.materialscrollbar.R$styleable: int[] TextInputLayout -com.google.android.material.R$styleable: int ChipGroup_chipSpacing -com.google.android.material.R$dimen: int mtrl_calendar_header_toggle_margin_top -com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_36dp -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_DSS_WITH_AES_128_CBC_SHA256 -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Spinner -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_l -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: void collect(java.util.Collection) -com.jaredrummler.android.colorpicker.R$bool: int abc_allow_stacked_button_bar -james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedWidthMajor -wangdaye.com.geometricweather.R$styleable: int[] Spinner -com.google.android.material.R$style: int Widget_AppCompat_ActionBar +wangdaye.com.geometricweather.R$id: int seekbar +okhttp3.Headers: okhttp3.Headers of(java.util.Map) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language TURKISH +wangdaye.com.geometricweather.common.basic.models.options.unit.ProbabilityUnit: java.lang.String unitAbbreviation +android.support.v4.app.INotificationSideChannel$Stub$Proxy: INotificationSideChannel$Stub$Proxy(android.os.IBinder) +com.baidu.location.BDLocation: android.os.Parcelable$Creator CREATOR +android.didikee.donate.R$styleable: int ActionBarLayout_android_layout_gravity +okio.HashingSink: HashingSink(okio.Sink,java.lang.String) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: boolean access$602(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,boolean) +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_android_gravity +com.tencent.bugly.crashreport.crash.jni.b: java.lang.String c(java.lang.String,java.lang.String) +io.reactivex.internal.util.NotificationLite: java.lang.Object subscription(org.reactivestreams.Subscription) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_android_maxHeight +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: int bufferSize +wangdaye.com.geometricweather.common.basic.models.options.unit.CloudCoverUnit: java.lang.String getCloudCoverText(int) +androidx.lifecycle.FullLifecycleObserverAdapter: androidx.lifecycle.LifecycleEventObserver mLifecycleEventObserver +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored +com.tencent.bugly.proguard.v: int j +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_height +com.bumptech.glide.integration.okhttp.R$color: int notification_action_color_filter +androidx.appcompat.widget.ActionMenuPresenter$SavedState +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours Past24Hours +cyanogenmod.app.suggest.ApplicationSuggestion$1 +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_HOME_DOUBLE_TAP_ACTION_VALIDATOR +com.tencent.bugly.proguard.m: java.lang.String f +io.reactivex.internal.subscriptions.SubscriptionHelper: void reportSubscriptionSet() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$UrlBean getUrl() +androidx.activity.R$id: int accessibility_custom_action_24 +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupMenu +james.adaptiveicon.AdaptiveIconView +android.didikee.donate.R$string: int abc_activity_chooser_view_see_all +com.google.android.material.R$color: int mtrl_navigation_item_text_color +com.google.android.material.R$styleable: int ConstraintSet_animate_relativeTo +cyanogenmod.weather.IRequestInfoListener$Stub: cyanogenmod.weather.IRequestInfoListener asInterface(android.os.IBinder) +wangdaye.com.geometricweather.R$style: int Preference_DropDown +com.baidu.location.e.l$b: com.baidu.location.e.l$b a +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeThunderstormPrecipitation(java.lang.Float) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.Integer alti +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Subhead +retrofit2.Retrofit$1: retrofit2.Platform platform +wangdaye.com.geometricweather.R$style: int Preference_Category +com.google.android.material.R$id: int tabMode +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_item_horizontal_padding +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline3 +retrofit2.RequestFactory$Builder: boolean gotPart +wangdaye.com.geometricweather.R$color: int mtrl_choice_chip_background_color +com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_DropDownUp +androidx.lifecycle.extensions.R$id: int icon_group +com.tencent.bugly.CrashModule: java.lang.String[] getTables() +wangdaye.com.geometricweather.common.basic.models.weather.Wind: Wind(java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WindDegree,java.lang.Float,java.lang.String) +cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: cyanogenmod.weatherservice.WeatherProviderService this$0 +androidx.appcompat.R$drawable: int notification_template_icon_low_bg +cyanogenmod.externalviews.IKeyguardExternalViewProvider: void onKeyguardShowing(boolean) +androidx.lifecycle.FullLifecycleObserverAdapter: androidx.lifecycle.FullLifecycleObserver mFullLifecycleObserver +io.reactivex.internal.observers.DeferredScalarDisposable: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$id: int parentPanel +androidx.viewpager2.R$styleable: int[] ViewPager2 +androidx.appcompat.R$style: int Widget_AppCompat_RatingBar_Small +androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_colored +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_COMPONENT_ID +com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableTransition_android_reversible +wangdaye.com.geometricweather.R$styleable: int MaterialScrollBar_msb_recyclerView +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconTintMode +com.google.android.material.R$styleable: int ScrollingViewBehavior_Layout_behavior_overlapTop +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_16 +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_measureWithLargestChild +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.tencent.bugly.crashreport.crash.b: java.util.List a(java.util.List) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NOTIFICATION_LIGHT_PULSE_VMAIL_LED_OFF_VALIDATOR +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_updateDefaultLiveLockScreen +androidx.appcompat.widget.AppCompatCheckBox: android.content.res.ColorStateList getSupportBackgroundTintList() +okio.Buffer: int select(okio.Options) +androidx.core.app.RemoteActionCompatParcelizer: androidx.core.app.RemoteActionCompat read(androidx.versionedparcelable.VersionedParcel) +androidx.room.MultiInstanceInvalidationService: MultiInstanceInvalidationService() +wangdaye.com.geometricweather.R$id: int search_src_text +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: int ThunderstormProbability +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: void setDataConnectionState(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: AccuLocationResult$TimeZone() +androidx.preference.R$styleable: int AppCompatTheme_actionBarTheme +com.google.android.material.R$styleable: int SearchView_android_focusable +androidx.preference.R$id: int accessibility_custom_action_12 +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX$NamesBeanXX getNames() +androidx.fragment.app.FragmentContainerView: FragmentContainerView(android.content.Context) +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction: java.lang.String English +com.google.android.material.progressindicator.ProgressIndicator: void setCircularInset(int) +okhttp3.internal.http1.Http1Codec$ChunkedSource: long bytesRemainingInChunk +androidx.hilt.work.R$styleable: int FontFamilyFont_fontVariationSettings +com.turingtechnologies.materialscrollbar.R$attr: int alertDialogStyle +com.google.android.material.R$styleable: int Toolbar_titleMarginEnd +com.turingtechnologies.materialscrollbar.R$drawable: int ic_mtrl_chip_checked_circle +com.bumptech.glide.integration.okhttp.R$styleable +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: double Value +androidx.preference.R$id: int recycler_view +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyTopRight +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_android_windowIsFloating +com.google.android.material.R$styleable: int MaterialCalendarItem_itemStrokeColor +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +androidx.lifecycle.ComputableLiveData$3: void run() +androidx.preference.R$attr: int dropdownListPreferredItemHeight +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundTintList(android.content.res.ColorStateList) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: io.reactivex.ObservableSource fallback +james.adaptiveicon.R$styleable: int TextAppearance_android_textStyle +com.turingtechnologies.materialscrollbar.R$attr: int iconSize +com.tencent.bugly.proguard.z: boolean b(android.content.Context,java.lang.String) +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: ObservableWindowBoundary$WindowBoundaryMainObserver(io.reactivex.Observer,int) +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_exitFadeDuration +io.reactivex.Observable: io.reactivex.Observable doOnDispose(io.reactivex.functions.Action) +com.jaredrummler.android.colorpicker.R$id: int icon_group +com.google.android.material.R$styleable: int AppCompatTheme_viewInflaterClass +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +cyanogenmod.app.ProfileGroup$1 +james.adaptiveicon.R$style: int Widget_AppCompat_Button_ButtonBar_AlertDialog +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$Region: java.lang.String EnglishName +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_START +com.turingtechnologies.materialscrollbar.R$attr: int maxImageSize +androidx.preference.R$styleable: int AppCompatTheme_windowFixedWidthMajor +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_itemShapeAppearanceOverlay +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindSpeedEnd() +com.google.android.material.circularreveal.CircularRevealRelativeLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +androidx.work.R$id: int tag_screen_reader_focusable +wangdaye.com.geometricweather.R$drawable: int widget_trend_hourly +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_fontVariationSettings +com.google.android.material.R$attr: int checkedIconMargin +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String ObstructionsToVisibility +androidx.preference.R$id: int spacer +okhttp3.Address: java.util.List protocols() +com.amap.api.location.AMapLocation: java.lang.String f +com.google.android.material.chip.Chip: void setIconEndPadding(float) +androidx.viewpager.R$dimen +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_US +io.reactivex.internal.subscriptions.EmptySubscription: void cancel() +com.turingtechnologies.materialscrollbar.R$attr: int searchViewStyle +com.xw.repo.bubbleseekbar.R$dimen: int abc_action_bar_overflow_padding_end_material +cyanogenmod.power.IPerformanceManager$Stub$Proxy: IPerformanceManager$Stub$Proxy(android.os.IBinder) +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: boolean cancelled +wangdaye.com.geometricweather.db.entities.DailyEntity: void setUvLevel(java.lang.String) +io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler,boolean,int) +androidx.swiperefreshlayout.R$layout +androidx.preference.R$dimen: int notification_top_pad +android.didikee.donate.R$drawable: int abc_tab_indicator_material +io.reactivex.internal.subscriptions.SubscriptionArbiter: java.util.concurrent.atomic.AtomicLong missedProduced +wangdaye.com.geometricweather.R$id: int activity_preview_icon_recyclerView +android.didikee.donate.R$styleable: int PopupWindow_android_popupBackground +androidx.constraintlayout.widget.R$id: int spacer +com.amap.api.fence.GeoFenceClient: void removeGeoFence() +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_MaterialComponents +cyanogenmod.providers.CMSettings$System: java.lang.String TOUCHSCREEN_GESTURE_HAPTIC_FEEDBACK +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property UvLevel +androidx.vectordrawable.animated.R$string +okhttp3.internal.http2.Http2Stream: boolean isLocallyInitiated() +androidx.appcompat.widget.Toolbar: androidx.appcompat.widget.ActionMenuPresenter getOuterActionMenuPresenter() +androidx.lifecycle.DefaultLifecycleObserver: void onDestroy(androidx.lifecycle.LifecycleOwner) +okhttp3.internal.cache.DiskLruCache: okio.BufferedSink journalWriter +wangdaye.com.geometricweather.R$styleable: int MotionLayout_motionDebug +androidx.constraintlayout.widget.R$attr: int iconTintMode +com.bumptech.glide.request.SingleRequest$Status: com.bumptech.glide.request.SingleRequest$Status valueOf(java.lang.String) +wangdaye.com.geometricweather.R$id: int activity_widget_config_viewStyleContainer +james.adaptiveicon.R$style: int Widget_AppCompat_ListView +com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_backgroundTint +androidx.constraintlayout.widget.R$dimen: int abc_alert_dialog_button_dimen +androidx.constraintlayout.widget.R$drawable: int abc_btn_check_material +androidx.lifecycle.MediatorLiveData$Source: void unplug() +androidx.appcompat.R$dimen: int abc_search_view_preferred_height +com.google.android.material.R$styleable: int ConstraintSet_pathMotionArc +com.google.android.material.R$id: int accessibility_custom_action_26 +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_speedValue +com.google.android.material.R$styleable: int MenuItem_android_checkable +com.amap.api.fence.GeoFence: int hashCode() +wangdaye.com.geometricweather.R$dimen: int notification_big_circle_margin +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_menu +wangdaye.com.geometricweather.R$attr: int drawerArrowStyle +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: void onCustomTilePosted(org.cyanogenmod.internal.statusbar.IStatusBarCustomTileHolder) +androidx.preference.R$style: int Widget_AppCompat_ActivityChooserView +androidx.preference.R$string: int abc_searchview_description_voice +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableCompat_android_variablePadding +cyanogenmod.weather.WeatherInfo: WeatherInfo(android.os.Parcel) +com.google.android.material.R$id: int guideline +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setCheckable(boolean) +cyanogenmod.app.Profile$NotificationLightMode: int ENABLE +wangdaye.com.geometricweather.common.ui.widgets.SquareFrameLayout: SquareFrameLayout(android.content.Context) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Badge +com.google.android.material.R$styleable: int Layout_layout_constraintDimensionRatio +okhttp3.internal.ws.RealWebSocket$Close: long cancelAfterCloseMillis +okio.RealBufferedSink: okio.BufferedSink write(byte[]) +cyanogenmod.power.IPerformanceManager: void cpuBoost(int) +androidx.appcompat.widget.AppCompatTextView: void setSupportCompoundDrawablesTintList(android.content.res.ColorStateList) +androidx.preference.R$color: int material_grey_50 +cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit: int MPH +cyanogenmod.providers.CMSettings$Secure +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderCerts +com.turingtechnologies.materialscrollbar.R$style: int Platform_MaterialComponents_Light +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean o +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event valueOf(java.lang.String) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 +androidx.preference.R$dimen: int highlight_alpha_material_dark +androidx.viewpager.widget.PagerTabStrip: void setTabIndicatorColorResource(int) +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_showAsAction +androidx.hilt.lifecycle.R$dimen: R$dimen() +androidx.lifecycle.ProcessLifecycleOwner: java.lang.Runnable mDelayedPauseRunnable +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getPrefixText() +androidx.constraintlayout.widget.R$attr: int listLayout +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBarLayout_android_layout_gravity +com.google.android.material.R$attr: int onNegativeCross +wangdaye.com.geometricweather.R$drawable: int notif_temp_101 +cyanogenmod.weatherservice.ServiceRequestResult$1: cyanogenmod.weatherservice.ServiceRequestResult createFromParcel(android.os.Parcel) +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_imeOptions +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_10 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature +androidx.vectordrawable.animated.R$id: int icon_group +io.reactivex.internal.schedulers.ScheduledDirectPeriodicTask: java.lang.Runnable getWrappedRunnable() +com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginStart +wangdaye.com.geometricweather.R$dimen: int mtrl_transition_shared_axis_slide_distance +com.tencent.bugly.proguard.z: java.lang.String a(android.content.Context,int,java.lang.String) +com.tencent.bugly.proguard.c: void a(byte[]) +androidx.constraintlayout.widget.R$dimen: int compat_button_padding_horizontal_material +androidx.fragment.R$drawable: int notification_bg +cyanogenmod.weather.ICMWeatherManager: void updateWeather(cyanogenmod.weather.RequestInfo) +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: java.lang.Object index +com.amap.api.location.AMapLocationClientOption: int describeContents() +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String description +wangdaye.com.geometricweather.main.dialogs.HourlyWeatherDialog +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Bridge +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintLeft_creator +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_touch_to_seek +androidx.recyclerview.R$id: int accessibility_custom_action_6 +androidx.preference.R$id: int search_button +androidx.preference.R$color: int primary_dark_material_dark +james.adaptiveicon.R$styleable: int SwitchCompat_thumbTintMode +androidx.appcompat.R$attr: int textAppearancePopupMenuHeader +wangdaye.com.geometricweather.R$styleable: int AppCompatSeekBar_tickMark +androidx.work.R$id: int accessibility_custom_action_10 +androidx.swiperefreshlayout.R$id: int blocking +com.tencent.bugly.crashreport.BuglyLog: void d(java.lang.String,java.lang.String) +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_QUICK_QS_PULLDOWN +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.appcompat.widget.ContentFrameLayout: void setAttachListener(androidx.appcompat.widget.ContentFrameLayout$OnAttachListener) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA +com.google.android.material.R$styleable: int Constraint_layout_constraintStart_toEndOf +wangdaye.com.geometricweather.db.entities.HistoryEntity: java.util.Date getDate() +wangdaye.com.geometricweather.R$styleable: int Layout_maxHeight +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeBackground +okhttp3.internal.connection.RouteSelector: java.net.Proxy nextProxy() +com.google.android.material.bottomappbar.BottomAppBar: boolean getHideOnScroll() +com.jaredrummler.android.colorpicker.R$bool: int config_materialPreferenceIconSpaceReserved +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +androidx.appcompat.R$style: int Widget_AppCompat_SearchView_ActionBar +okhttp3.HttpUrl: java.lang.String queryParameter(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int[] FitSystemBarNestedScrollView +com.github.rahatarmanahmed.cpv.CircularProgressView: float access$002(com.github.rahatarmanahmed.cpv.CircularProgressView,float) +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: boolean cancelled +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void onDrop(java.lang.Object) +androidx.hilt.work.R$dimen: int compat_notification_large_icon_max_height +cyanogenmod.providers.ThemesContract: ThemesContract() +androidx.constraintlayout.helper.widget.Flow: Flow(android.content.Context) +androidx.fragment.R$drawable: int notification_template_icon_bg +androidx.dynamicanimation.R$styleable: int GradientColor_android_centerColor +android.didikee.donate.R$styleable: int AppCompatTheme_tooltipForegroundColor +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.ObservableSource source +com.jaredrummler.android.colorpicker.R$attr: int spinnerDropDownItemStyle +wangdaye.com.geometricweather.R$layout: int widget_day_vertical +androidx.preference.R$style: int TextAppearance_AppCompat_Title_Inverse +com.google.android.material.chip.Chip: float getCloseIconStartPadding() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeDescription +com.turingtechnologies.materialscrollbar.R$attr: int chipGroupStyle +com.jaredrummler.android.colorpicker.R$styleable: int[] GradientColorItem +cyanogenmod.externalviews.ExternalView$7 +cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String MONTH +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String NO_RINGTONE +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Direction +com.jaredrummler.android.colorpicker.R$attr: int reverseLayout +wangdaye.com.geometricweather.R$layout: int test_reflow_chipgroup +com.turingtechnologies.materialscrollbar.R$attr: int contentInsetStartWithNavigation +androidx.coordinatorlayout.R$id: int action_divider +com.google.android.material.textfield.TextInputLayout: void setHintEnabled(boolean) +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: io.reactivex.Observer downstream +com.google.android.material.R$style: int TestStyleWithLineHeightAppearance +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Query +androidx.customview.R$integer +wangdaye.com.geometricweather.R$styleable: int[] BubbleSeekBar +wangdaye.com.geometricweather.R$style: int TextAppearance_MaterialComponents_Headline3 +com.google.android.material.R$styleable: int AppBarLayout_expanded +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_1 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean$ValueBeanXX: java.lang.String from +com.jaredrummler.android.colorpicker.R$color: int abc_background_cache_hint_selector_material_light +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: java.lang.String headIconType +james.adaptiveicon.R$style: int Base_Widget_AppCompat_RatingBar +androidx.constraintlayout.utils.widget.ImageFilterButton: void setRound(float) +cyanogenmod.externalviews.ExternalView$2: cyanogenmod.externalviews.ExternalView this$0 +androidx.constraintlayout.widget.R$attr: int windowFixedWidthMajor +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling Cooling +com.google.android.material.R$color: int abc_background_cache_hint_selector_material_light +androidx.preference.R$color: int accent_material_dark +androidx.hilt.work.R$styleable: int GradientColorItem_android_offset +okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_title +androidx.constraintlayout.widget.R$styleable: int[] OnSwipe +android.didikee.donate.R$style: int Widget_AppCompat_ActionMode +androidx.activity.R$drawable: int notification_action_background +com.google.android.material.R$attr: int extendedFloatingActionButtonStyle +androidx.viewpager.R$id: int tag_transition_group +androidx.hilt.R$styleable: int GradientColor_android_tileMode +wangdaye.com.geometricweather.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceInformationStyle +james.adaptiveicon.R$attr: int contentInsetEnd +androidx.loader.R$styleable: int GradientColor_android_centerColor +wangdaye.com.geometricweather.R$styleable: int[] PreferenceGroup +androidx.core.R$drawable: int notification_template_icon_bg +okhttp3.internal.cache.CacheStrategy$Factory: okhttp3.internal.cache.CacheStrategy get() +androidx.recyclerview.R$style: int TextAppearance_Compat_Notification +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_collapsedTitleTextAppearance +retrofit2.http.OPTIONS: java.lang.String value() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$Geometry geometry +androidx.preference.R$style: int Base_Widget_AppCompat_EditText +androidx.appcompat.resources.R$styleable: int StateListDrawable_android_dither +cyanogenmod.app.ICMStatusBarManager: void removeCustomTileFromListener(cyanogenmod.app.ICustomTileListener,java.lang.String,java.lang.String,int) +cyanogenmod.themes.ThemeManager: void requestThemeChange(java.lang.String,java.util.List,boolean) +com.google.android.material.internal.NavigationMenuItemView: void setMaxLines(int) +androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$attr: int singleSelection +androidx.preference.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small +android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.os.IBinder mRemote +androidx.preference.R$style: int Base_Widget_AppCompat_CompoundButton_Switch +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_AES_256_CBC_SHA +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +wangdaye.com.geometricweather.R$anim: int abc_popup_enter +james.adaptiveicon.R$color: int bright_foreground_disabled_material_dark +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration +okhttp3.Handshake: okhttp3.TlsVersion tlsVersion +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: ObservableRepeatUntil$RepeatUntilObserver(io.reactivex.Observer,io.reactivex.functions.BooleanSupplier,io.reactivex.internal.disposables.SequentialDisposable,io.reactivex.ObservableSource) +wangdaye.com.geometricweather.location.services.LocationService: java.lang.String[] getPermissions() +wangdaye.com.geometricweather.R$color: int material_on_background_emphasis_medium +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_14 +androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$layout: int widget_clock_day_rectangle +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceBody2 +com.google.android.material.R$styleable: int[] GradientColor +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_icon_padding +wangdaye.com.geometricweather.R$attr: int expandedTitleGravity +com.bumptech.glide.load.EncodeStrategy: com.bumptech.glide.load.EncodeStrategy valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$attr: int contentInsetStart +com.google.android.material.R$attr: int thumbTextPadding +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode Device_Sensors +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night_mini_dark +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setPivotY(float) +okhttp3.internal.http.RealResponseBody: long contentLength +com.tencent.bugly.proguard.x: java.lang.String c +android.didikee.donate.R$dimen: int abc_text_size_display_1_material +com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: H5JavaScriptInterface() +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void drain() +androidx.vectordrawable.animated.R$style +io.reactivex.Observable: io.reactivex.Observable concatArrayEagerDelayError(int,int,io.reactivex.ObservableSource[]) +cyanogenmod.themes.IThemeService: boolean isThemeApplying() +com.google.android.material.R$styleable: int FloatingActionButton_pressedTranslationZ +androidx.work.R$dimen: int compat_button_padding_horizontal_material +wangdaye.com.geometricweather.R$id: int skipCollapsed +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: int index +androidx.appcompat.widget.SwitchCompat: int getThumbTextPadding() +james.adaptiveicon.R$style: int Widget_AppCompat_EditText +wangdaye.com.geometricweather.R$attr: int closeIconTint +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_Dialog +androidx.appcompat.resources.R$drawable +com.tencent.bugly.crashreport.crash.jni.a: com.tencent.bugly.crashreport.crash.CrashDetailBean packageCrashDatas(java.lang.String,java.lang.String,long,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String,byte[],java.util.Map,boolean,boolean) +androidx.recyclerview.R$dimen: int compat_notification_large_icon_max_height +okhttp3.internal.http2.Header: Header(java.lang.String,java.lang.String) +androidx.cardview.widget.CardView: CardView(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$color: int switch_thumb_disabled_material_dark +com.amap.api.fence.DistrictItem: java.lang.String c +org.greenrobot.greendao.AbstractDao: void attachEntity(java.lang.Object,java.lang.Object,boolean) +androidx.preference.R$styleable: int GradientColor_android_centerX +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_android_focusable +com.google.android.material.R$attr: int isMaterialTheme +androidx.constraintlayout.widget.R$styleable: int KeyCycle_waveVariesBy +androidx.recyclerview.R$layout: int notification_action +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function,int,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +cyanogenmod.app.CustomTileListenerService: java.lang.String access$200(cyanogenmod.app.CustomTileListenerService) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_59 +com.jaredrummler.android.colorpicker.R$styleable: int ColorPickerView_cpv_alphaChannelText +io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeThunderstormPrecipitationDuration() +androidx.hilt.R$dimen: int notification_small_icon_size_as_large +androidx.work.R$id: int accessibility_custom_action_11 +android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +androidx.constraintlayout.widget.R$styleable: int MotionScene_layoutDuringTransition +com.google.android.material.R$id: int auto +androidx.preference.R$attr: int listItemLayout +com.google.android.material.R$dimen: int material_text_view_test_line_height_override +retrofit2.Converter$Factory: java.lang.reflect.Type getParameterUpperBound(int,java.lang.reflect.ParameterizedType) +james.adaptiveicon.R$attr: int actionModeFindDrawable +androidx.coordinatorlayout.R$style: int Widget_Support_CoordinatorLayout +androidx.preference.R$styleable: int Toolbar_android_minHeight +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_goneMarginBottom +androidx.hilt.lifecycle.R$id: int notification_background +com.google.android.gms.common.internal.ClientIdentity +androidx.constraintlayout.widget.R$attr: int itemPadding +com.google.android.material.R$styleable: int OnSwipe_touchAnchorId +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_label_square_side +androidx.legacy.coreutils.R$dimen: int compat_notification_large_icon_max_width +android.didikee.donate.R$style: int Base_V23_Theme_AppCompat_Light +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType GOOGLE +wangdaye.com.geometricweather.db.entities.DailyEntityDao: wangdaye.com.geometricweather.db.converters.WeatherCodeConverter daytimeWeatherCodeConverter +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +retrofit2.BuiltInConverters$BufferingResponseBodyConverter: BuiltInConverters$BufferingResponseBodyConverter() +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +android.didikee.donate.R$id: int none +com.xw.repo.bubbleseekbar.R$color: int switch_thumb_disabled_material_dark +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: io.reactivex.internal.util.ErrorMode errorMode +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Error +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_padding_right +com.amap.api.fence.GeoFence: int TYPE_AMAPPOI +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int HAS_REQUEST_NO_VALUE +wangdaye.com.geometricweather.background.receiver.widget.WidgetClockDayVerticalProvider: WidgetClockDayVerticalProvider() +cyanogenmod.app.Profile: cyanogenmod.profiles.ConnectionSettings getConnectionSettingWithSubId(int) +com.google.android.material.R$styleable: int LinearLayoutCompat_measureWithLargestChild +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_verticalStyle +wangdaye.com.geometricweather.weather.apis.MfWeatherApi +wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity +com.google.gson.stream.JsonWriter: java.lang.String[] REPLACEMENT_CHARS +okhttp3.internal.platform.Platform: java.util.logging.Logger logger +wangdaye.com.geometricweather.R$attr: int sv_side +androidx.preference.R$styleable: int MenuView_android_itemTextAppearance +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_DarkActionBar_Bridge +wangdaye.com.geometricweather.R$color: int androidx_core_ripple_material_light +com.tencent.bugly.crashreport.common.info.a: java.util.Map ai +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String getCityId() +com.tencent.bugly.proguard.z: void b(java.lang.String) +com.turingtechnologies.materialscrollbar.R$drawable: int indicator_ltr +androidx.appcompat.resources.R$id: int forever +wangdaye.com.geometricweather.R$styleable: int Chip_android_ellipsize +androidx.preference.R$attr: int textAppearanceListItem +androidx.preference.SwitchPreferenceCompat: SwitchPreferenceCompat(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$drawable: int material_ic_clear_black_24dp +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ListView_DropDown +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: long serialVersionUID +com.tencent.bugly.proguard.n: com.tencent.bugly.proguard.n a() +com.google.android.material.R$styleable: int[] Toolbar +com.amap.api.fence.GeoFence: float getMinDis2Center() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListPopupWindow +androidx.constraintlayout.widget.R$attr: int moveWhenScrollAtTop +com.google.android.material.R$id: int flip +com.google.android.material.R$attr: int cornerSizeTopRight +wangdaye.com.geometricweather.R$style: int Animation_AppCompat_Tooltip +com.tencent.bugly.proguard.r: int b +com.turingtechnologies.materialscrollbar.R$drawable: int abc_switch_track_mtrl_alpha +james.adaptiveicon.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Large_Inverse +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: void innerSuccess(java.lang.Object) +androidx.constraintlayout.widget.R$styleable: int[] SwitchCompat +androidx.preference.R$styleable: int GradientColorItem_android_offset +androidx.constraintlayout.motion.widget.MotionHelper +wangdaye.com.geometricweather.R$color: int material_grey_600 +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_statusBarForeground +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_17 +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List diaoyu +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat +com.jaredrummler.android.colorpicker.R$style: int Animation_AppCompat_Tooltip +com.xw.repo.bubbleseekbar.R$color: int abc_hint_foreground_material_dark +androidx.preference.R$styleable: int ActionBar_displayOptions +androidx.appcompat.R$styleable: int SearchView_layout +com.turingtechnologies.materialscrollbar.R$id: int multiply +androidx.loader.R$dimen: int notification_large_icon_width +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetEndWithActions +retrofit2.http.Field: java.lang.String value() +okhttp3.OkHttpClient: okhttp3.Dns dns +wangdaye.com.geometricweather.R$drawable: int tooltip_frame_dark +okhttp3.internal.http2.Http2Reader$Handler: void priority(int,int,int,boolean) +cyanogenmod.app.CMContextConstants$Features: java.lang.String THEMES +com.xw.repo.bubbleseekbar.R$attr: int progressBarPadding +androidx.appcompat.R$style: int Platform_ThemeOverlay_AppCompat_Dark +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result: java.lang.String type +com.xw.repo.bubbleseekbar.R$drawable: int abc_spinner_textfield_background_material +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean +okhttp3.OkHttpClient$Builder: okhttp3.Dns dns +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindDircStart(java.lang.String) +okhttp3.internal.ws.RealWebSocket$Streams: okio.BufferedSource source +wangdaye.com.geometricweather.R$string: int settings_title_notification_hide_icon +wangdaye.com.geometricweather.R$layout: int activity_card_display_manage +androidx.hilt.lifecycle.R$dimen: int notification_small_icon_background_padding +com.turingtechnologies.materialscrollbar.R$attr: int spinnerStyle +com.google.android.material.R$dimen: int notification_action_icon_size +androidx.lifecycle.ReportFragment: void dispatchResume(androidx.lifecycle.ReportFragment$ActivityInitializationListener) +com.turingtechnologies.materialscrollbar.R$id: int design_menu_item_text +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: AccuDailyResult$DailyForecasts$Night() +android.didikee.donate.R$dimen: int abc_text_size_body_1_material +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectionPool(okhttp3.ConnectionPool) +com.amap.api.fence.GeoFence: int ERROR_CODE_FAILURE_PARSER +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_iconTint +okhttp3.HttpUrl: java.lang.String encodedPath() +wangdaye.com.geometricweather.R$dimen: int mtrl_edittext_rectangle_top_offset +okhttp3.internal.http2.Http2Connection: void writePing(boolean,int,int) +wangdaye.com.geometricweather.R$attr: int layout_constraintRight_toLeftOf +retrofit2.adapter.rxjava2.HttpException +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_colorControlActivated +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat PREFER_ARGB_8888 +okhttp3.MultipartBody$Part +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void errorAll(io.reactivex.Observer) +okhttp3.Response$Builder: void checkPriorResponse(okhttp3.Response) +com.xw.repo.bubbleseekbar.R$dimen: int abc_seekbar_track_background_height_material +android.didikee.donate.R$attr: int selectableItemBackground +okhttp3.Cache$1: void update(okhttp3.Response,okhttp3.Response) +wangdaye.com.geometricweather.R$drawable: int notif_temp_109 +com.tencent.bugly.proguard.a: void a(java.util.ArrayList,java.lang.Object) +androidx.dynamicanimation.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService +com.turingtechnologies.materialscrollbar.R$string: int abc_action_menu_overflow_description +com.google.android.material.R$attr: int colorError +com.turingtechnologies.materialscrollbar.R$attr: int dialogCornerRadius +okhttp3.internal.http2.Http2Connection: long intervalPongsReceived +retrofit2.OkHttpCall$ExceptionCatchingResponseBody +com.amap.api.location.AMapLocation: java.lang.String COORD_TYPE_WGS84 +wangdaye.com.geometricweather.R$attr: int widgetLayout +james.adaptiveicon.R$dimen: int abc_action_bar_stacked_max_height +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean +io.reactivex.exceptions.OnErrorNotImplementedException +androidx.lifecycle.extensions.R$dimen: int compat_button_inset_vertical_material +com.turingtechnologies.materialscrollbar.R$attr: int logo +okio.HashingSource: okio.HashingSource sha1(okio.Source) +okio.ForwardingTimeout: okio.Timeout delegate() +wangdaye.com.geometricweather.background.receiver.MainReceiver: MainReceiver() +androidx.constraintlayout.widget.R$layout: int abc_alert_dialog_title_material +okhttp3.TlsVersion: java.lang.String javaName() +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTickInactiveTintList() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: int TRANSACTION_cancelLiveLockScreen +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_20 +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_fontVariationSettings +retrofit2.adapter.rxjava2.Result: Result(retrofit2.Response,java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_firstHorizontalStyle +com.tencent.bugly.proguard.i: i() +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_lineHeight +com.google.android.material.R$styleable: int TextAppearance_fontVariationSettings +androidx.preference.R$styleable: int GradientColor_android_startY +okhttp3.logging.HttpLoggingInterceptor: java.nio.charset.Charset UTF8 +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_backgroundTint +com.google.android.material.internal.CheckableImageButton: void setCheckable(boolean) +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_android_switchTextOff +android.didikee.donate.R$id: int up +wangdaye.com.geometricweather.R$dimen: int mtrl_slider_thumb_elevation +com.google.gson.stream.JsonReader: void checkLenient() +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: boolean disposed +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar_Small +com.xw.repo.BubbleSeekBar: void setBubbleColor(int) +okhttp3.internal.tls.BasicTrustRootIndex: int hashCode() +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onComplete() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeIcePrecipitationProbability +cyanogenmod.weather.WeatherInfo$DayForecast: java.lang.String toString() +io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: ObservableCombineLatest$LatestCoordinator(io.reactivex.Observer,io.reactivex.functions.Function,int,int,boolean) +com.xw.repo.bubbleseekbar.R$id: int src_over +com.jaredrummler.android.colorpicker.R$color: int abc_tint_spinner +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) +androidx.appcompat.view.menu.ListMenuItemView: androidx.appcompat.view.menu.MenuItemImpl getItemData() +com.google.android.material.slider.RangeSlider: int getTrackSidePadding() +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,io.reactivex.functions.BiFunction,boolean,int) +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: Precipitation(java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +androidx.appcompat.R$styleable: int MenuItem_contentDescription +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_transformPivotX +androidx.viewpager.R$styleable: int[] GradientColor +okio.RealBufferedSource: java.lang.String readUtf8() +wangdaye.com.geometricweather.R$dimen: int mtrl_navigation_item_horizontal_padding +com.google.android.gms.common.server.converter.StringToIntConverter +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +android.didikee.donate.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +androidx.preference.R$layout: int preference_widget_seekbar_material +com.tencent.bugly.proguard.j: void a(java.lang.Object,int) +com.tencent.bugly.crashreport.crash.anr.b: void c() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setSnowPrecipitationProbability(java.lang.Float) +cyanogenmod.app.Profile: void removeProfileGroup(java.util.UUID) +androidx.drawerlayout.R$styleable: int[] FontFamilyFont +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +cyanogenmod.providers.DataUsageContract: java.lang.String FAST_AVG +androidx.customview.R$dimen: R$dimen() +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_fontStyle +androidx.lifecycle.extensions.R$integer +cyanogenmod.externalviews.KeyguardExternalView: void onKeyguardDismissed() +androidx.preference.R$styleable: int ActionMode_height +androidx.appcompat.widget.Toolbar: void setCollapseContentDescription(int) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_28 +androidx.activity.R$layout: int notification_template_custom_big +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_android_rotationX james.adaptiveicon.R$attr: int thickness -wangdaye.com.geometricweather.R$drawable: int widget_card_light_20 -androidx.loader.R$drawable: int notification_bg_low_normal -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getMoonPhaseDescription() -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData: void onInactive() -com.google.android.material.R$styleable: int MaterialCalendarItem_android_insetRight -cyanogenmod.providers.CMSettings$Secure: int getInt(android.content.ContentResolver,java.lang.String) -io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void drain() -com.google.android.material.R$styleable: int MaterialCardView_state_dragged -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_barThickness -com.jaredrummler.android.colorpicker.R$color: int abc_primary_text_material_dark -androidx.constraintlayout.widget.R$drawable: int abc_action_bar_item_background_material -androidx.preference.R$attr: int subtitle -cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_DIRECTION -androidx.constraintlayout.widget.R$styleable: int DrawerArrowToggle_thickness -androidx.viewpager2.R$id: int accessibility_custom_action_4 -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: AccuCurrentResult$Ceiling() -cyanogenmod.themes.IThemeChangeListener$Stub: cyanogenmod.themes.IThemeChangeListener asInterface(android.os.IBinder) -androidx.customview.R$color: int notification_action_color_filter -com.google.android.material.R$style: int Widget_AppCompat_ActionButton -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast: wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity humidity -com.google.android.material.slider.RangeSlider: void setTickInactiveTintList(android.content.res.ColorStateList) -okio.RealBufferedSink: okio.BufferedSink writeShortLe(int) -androidx.drawerlayout.R$attr: int fontVariationSettings -com.google.android.gms.common.internal.zas: android.os.Parcelable$Creator CREATOR -androidx.core.R$id: int time -android.didikee.donate.R$style: int TextAppearance_AppCompat_Display2 -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherError(java.lang.Throwable) -com.tencent.bugly.proguard.u: byte[] l -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setO3Desc(java.lang.String) -wangdaye.com.geometricweather.R$string: int key_text_color -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_8 -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -cyanogenmod.themes.ThemeManager: void requestThemeChange(java.util.Map) -androidx.preference.R$drawable: int abc_vector_test -androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation -james.adaptiveicon.R$styleable: int AppCompatTheme_listPopupWindowStyle -com.google.android.material.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft -androidx.lifecycle.MutableLiveData: void setValue(java.lang.Object) -okio.RealBufferedSource: okio.Buffer buffer() -com.google.android.material.R$id: int uniform -androidx.constraintlayout.widget.R$id: int action_bar_title -androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -androidx.preference.R$style: int Base_Widget_AppCompat_SeekBar_Discrete -androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Body1 -com.google.android.material.R$styleable: int MenuItem_numericModifiers -androidx.activity.R$id: int dialog_button -androidx.preference.R$integer: int abc_config_activityDefaultDur -androidx.swiperefreshlayout.R$id: int tag_screen_reader_focusable -androidx.preference.R$attr: int queryBackground -com.jaredrummler.android.colorpicker.R$dimen: int abc_button_padding_vertical_material -com.google.android.material.R$string: int abc_menu_alt_shortcut_label -james.adaptiveicon.R$attr: int dropDownListViewStyle -com.tencent.bugly.proguard.am -androidx.coordinatorlayout.R$attr: int fontProviderQuery -okhttp3.internal.ws.RealWebSocket: int sentPingCount() -cyanogenmod.profiles.BrightnessSettings: cyanogenmod.profiles.BrightnessSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -com.turingtechnologies.materialscrollbar.R$attr: int borderWidth -com.google.android.material.R$animator: int mtrl_chip_state_list_anim -com.google.android.material.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink -com.jaredrummler.android.colorpicker.R$attr: int thumbTint -androidx.activity.R$styleable: int[] FontFamilyFont -cyanogenmod.themes.ThemeManager$ThemeProcessingListener: void onFinishedProcessing(java.lang.String) -androidx.dynamicanimation.R$drawable: R$drawable() -com.tencent.bugly.proguard.n: com.tencent.bugly.proguard.n b -androidx.appcompat.R$styleable: int FontFamily_fontProviderCerts -com.google.android.material.R$dimen: int hint_alpha_material_light -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintEnabled -wangdaye.com.geometricweather.R$styleable: int[] ExtendedFloatingActionButton -com.google.android.material.chip.ChipGroup: int getChipSpacingHorizontal() -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_maxWidth -org.greenrobot.greendao.AbstractDao: long count() -wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableItem -androidx.appcompat.R$style: int Base_Widget_AppCompat_RatingBar_Indicator -com.google.android.material.R$styleable: int ViewPager2_android_orientation -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_textAppearanceSearchResultTitle -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_default +androidx.appcompat.R$attr: int subMenuArrow +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_11 +androidx.vectordrawable.R$id: int tag_accessibility_actions +androidx.appcompat.widget.SearchView: void setMaxWidth(int) +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_preferenceCategoryStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeCloudCover +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_LOCATION_PARAMETER +com.google.android.material.internal.VisibilityAwareImageButton: int getUserSetVisibility() +androidx.constraintlayout.widget.R$attr: int layout_constrainedHeight +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling: double Value +wangdaye.com.geometricweather.R$styleable: int DialogPreference_dialogIcon +com.google.android.material.R$drawable: int abc_ic_ab_back_material +okhttp3.Cache$Entry: java.lang.String requestMethod +cyanogenmod.util.ColorUtils: double calculateDeltaE(double,double,double,double,double,double) +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: int getChartBottom() +androidx.vectordrawable.R$id: int forever +wangdaye.com.geometricweather.R$attr: int expanded +com.jaredrummler.android.colorpicker.R$color: int dim_foreground_disabled_material_light +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: long serialVersionUID +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Colored +com.amap.api.location.AMapLocationClientOption$GeoLanguage: AMapLocationClientOption$GeoLanguage(java.lang.String,int) +james.adaptiveicon.R$style: int Platform_V25_AppCompat +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.lang.Float rain12h +androidx.activity.R$id: int accessibility_custom_action_3 +okhttp3.internal.cache.CacheStrategy$Factory: java.util.Date expires +okhttp3.OkHttpClient: int connectTimeoutMillis() +io.reactivex.Observable: io.reactivex.Completable concatMapCompletableDelayError(io.reactivex.functions.Function,boolean) +android.didikee.donate.R$dimen: int abc_text_size_display_3_material +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_cpuBoost_0 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String getWindDircEnd() +android.didikee.donate.R$layout: int abc_select_dialog_material +com.bumptech.glide.R$drawable: int notification_bg_low +io.reactivex.internal.subscriptions.EmptySubscription: io.reactivex.internal.subscriptions.EmptySubscription[] values() +wangdaye.com.geometricweather.R$dimen: int hint_alpha_material_dark +cyanogenmod.app.StatusBarPanelCustomTile: java.lang.String pkg +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: int humidity +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getSo2Desc() +com.google.android.material.R$attr: int itemHorizontalTranslationEnabled +com.google.android.material.textfield.TextInputLayout$SavedState +com.tencent.bugly.proguard.h: h(java.lang.StringBuilder,int) +cyanogenmod.weather.WeatherInfo$Builder: long mTimestamp +com.google.android.material.R$attr: int scrimAnimationDuration +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List wuran +com.google.android.material.R$id: int decelerateAndComplete +com.google.android.material.R$drawable: int abc_textfield_search_material +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +androidx.appcompat.R$styleable: int AppCompatTheme_colorControlActivated +androidx.appcompat.R$styleable: int LinearLayoutCompat_android_baselineAligned +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_switchTextOff +okhttp3.Protocol: okhttp3.Protocol QUIC +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarPopupTheme +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_margin +androidx.preference.R$id: int action_context_bar +com.google.gson.LongSerializationPolicy$1: LongSerializationPolicy$1(java.lang.String,int) +com.google.android.material.appbar.AppBarLayout: float getTargetElevation() +android.didikee.donate.R$styleable: int View_android_theme +com.bumptech.glide.integration.okhttp3.OkHttpGlideModule: OkHttpGlideModule() +androidx.lifecycle.Lifecycle: androidx.lifecycle.Lifecycle$State getCurrentState() +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Button_Colored +androidx.constraintlayout.widget.R$attr: int buttonBarPositiveButtonStyle +okio.Buffer: okio.Buffer writeShortLe(int) +james.adaptiveicon.R$attr: int actionBarSplitStyle +androidx.preference.R$attr: int titleTextColor +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Bridge +wangdaye.com.geometricweather.R$color: int colorRoot_dark +android.didikee.donate.R$styleable: int SwitchCompat_splitTrack +wangdaye.com.geometricweather.R$string: int about_circular_progress_view +okhttp3.ResponseBody$BomAwareReader: void close() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionMenuTextColor +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeBackground +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabTextStyle +com.jaredrummler.android.colorpicker.R$attr: int dropdownPreferenceStyle +james.adaptiveicon.R$id: int message +james.adaptiveicon.R$attr: int titleMarginBottom +androidx.preference.R$styleable: int AppCompatTheme_switchStyle +okhttp3.CacheControl: int sMaxAgeSeconds() +androidx.vectordrawable.R$dimen: int notification_right_icon_size +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow +com.google.android.material.R$attr: int counterOverflowTextColor +wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_default_alpha +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rxDao +androidx.preference.R$attr: int paddingStart +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_height +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks: void onAttachedToWindow() +com.baidu.location.e.o: java.util.List a(org.json.JSONObject,java.lang.String,int) +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setOverlay(java.lang.String) +cyanogenmod.app.CustomTileListenerService: cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper access$100(cyanogenmod.app.CustomTileListenerService) +com.tencent.bugly.crashreport.crash.h5.a: a() +wangdaye.com.geometricweather.R$attr: int layoutManager com.google.android.material.R$styleable: int Constraint_layout_constraintHeight_min -androidx.appcompat.R$styleable: int TextAppearance_android_fontFamily -wangdaye.com.geometricweather.R$styleable: int[] State -android.didikee.donate.R$drawable: int abc_item_background_holo_light -com.xw.repo.bubbleseekbar.R$color: int switch_thumb_disabled_material_light -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutConsumer: ObservableTimeout$TimeoutConsumer(long,io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutSelectorSupport) -wangdaye.com.geometricweather.R$id: int notification_base_time -wangdaye.com.geometricweather.R$color: int design_snackbar_background_color -com.google.android.gms.base.R$id: R$id() -com.xw.repo.bubbleseekbar.R$styleable: int[] AnimatedStateListDrawableTransition -com.google.android.material.R$attr: int expandedTitleMarginBottom -okhttp3.internal.http2.Http2Stream$FramingSource: long read(okio.Buffer,long) -com.tencent.bugly.crashreport.biz.UserInfoBean: java.lang.String j -androidx.appcompat.R$dimen: int abc_text_size_subtitle_material_toolbar -cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.ICMHardwareService sService -com.google.android.material.R$attr: int actionBarSplitStyle -androidx.preference.R$id: int textSpacerNoButtons -io.reactivex.internal.observers.InnerQueuedObserver: boolean done -com.google.android.gms.common.internal.ClientIdentity -retrofit2.HttpServiceMethod: java.lang.Object invoke(java.lang.Object[]) -com.xw.repo.bubbleseekbar.R$layout: int abc_action_bar_up_container -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeWindChillTemperature -com.google.android.material.R$styleable: int Tooltip_backgroundTint -wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_android_entryValues -androidx.constraintlayout.widget.R$styleable: int MockView_mock_diagonalsColor -okhttp3.internal.platform.Platform: boolean isConscryptPreferred() -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String MODIFIES_LAUNCHER -com.bumptech.glide.Registry$NoResultEncoderAvailableException -james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog -androidx.vectordrawable.R$id -androidx.preference.Preference: Preference(android.content.Context,android.util.AttributeSet) -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: void dispose() -cyanogenmod.app.StatusBarPanelCustomTile: android.os.UserHandle getUser() -wangdaye.com.geometricweather.R$style: int CardView -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: java.util.concurrent.atomic.AtomicReference inner -androidx.constraintlayout.widget.R$drawable: int abc_btn_switch_to_on_mtrl_00012 -com.google.android.material.R$styleable: int MaterialCardView_shapeAppearanceOverlay -androidx.swiperefreshlayout.R$styleable: int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor -com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_showDividers -cyanogenmod.app.ThemeVersion$ComponentVersion: int getCurrentVersion() -androidx.appcompat.R$id: int accessibility_custom_action_27 -wangdaye.com.geometricweather.R$attr: int dotGap -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextStyle -com.xw.repo.bubbleseekbar.R$id: int search_button -com.amap.api.fence.GeoFence: void setMinDis2Center(float) -wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout: void setRootColor(int) -com.bumptech.glide.R$styleable: int[] CoordinatorLayout -com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_content_inset_with_nav -com.google.android.material.R$styleable: int Layout_maxHeight -wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Position -wangdaye.com.geometricweather.R$string: int feedback_interpret_notification_group_title -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_Alert_Bridge -android.didikee.donate.R$layout: int select_dialog_singlechoice_material -okhttp3.internal.http2.Http2Connection$IntervalPingRunnable -androidx.vectordrawable.R$layout: R$layout() -com.google.android.material.R$id: int cos -com.tencent.bugly.crashreport.common.strategy.StrategyBean: boolean h -com.google.android.material.R$drawable: int mtrl_dropdown_arrow -io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer,io.reactivex.functions.Action,io.reactivex.functions.Consumer) -james.adaptiveicon.R$attr: int fontProviderFetchStrategy -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_aa_black -androidx.appcompat.R$color: int secondary_text_disabled_material_light -okio.ByteString: void write(okio.Buffer) -com.google.android.material.navigation.NavigationView: void setItemIconSize(int) -okhttp3.EventListener: void dnsEnd(okhttp3.Call,java.lang.String,java.util.List) -com.baidu.location.indoor.mapversion.c.c$b: double f -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String getProvince() -okhttp3.logging.LoggingEventListener$Factory: LoggingEventListener$Factory(okhttp3.logging.HttpLoggingInterceptor$Logger) -androidx.constraintlayout.widget.R$id: int position -com.tencent.bugly.proguard.y: int n -okio.DeflaterSink: okio.BufferedSink sink -wangdaye.com.geometricweather.R$id: int jumpToEnd -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality -androidx.work.R$styleable: int ColorStateListItem_android_alpha -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.Window mWindow -wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_dd -androidx.hilt.R$layout: R$layout() -com.bumptech.glide.R$style: int TextAppearance_Compat_Notification_Time -androidx.recyclerview.R$id: int accessibility_action_clickable_span -wangdaye.com.geometricweather.R$styleable: int PreferenceImageView_maxWidth -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ButtonBar_AlertDialog -james.adaptiveicon.R$dimen: int abc_dialog_list_padding_top_no_title -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_PopupMenu_Overflow -com.turingtechnologies.materialscrollbar.R$attr: int measureWithLargestChild -com.xw.repo.BubbleSeekBar: int getProgress() -com.google.android.material.R$attr: int itemTextColor -wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -james.adaptiveicon.R$id: int notification_background -com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity -androidx.fragment.R$styleable: int GradientColor_android_startX -cyanogenmod.externalviews.ExternalView -org.greenrobot.greendao.AbstractDao: void deleteInTx(java.lang.Object[]) +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_scaleY +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.preference.R$id: R$id() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeShareDrawable +com.google.android.material.R$dimen: int mtrl_high_ripple_pressed_alpha +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionProviderClass +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String getLogo() +com.google.android.material.appbar.AppBarLayout: void setVisibility(int) +androidx.dynamicanimation.R$drawable: int notification_bg_normal_pressed +android.didikee.donate.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +androidx.preference.R$attr: int viewInflaterClass +androidx.appcompat.R$attr: int buttonStyle +wangdaye.com.geometricweather.R$id: int stop +com.turingtechnologies.materialscrollbar.R$styleable: int[] ButtonBarLayout +com.turingtechnologies.materialscrollbar.R$styleable: int[] PopupWindow +androidx.appcompat.R$styleable: int AppCompatTheme_buttonStyleSmall +cyanogenmod.app.LiveLockScreenManager: void logServiceException(java.lang.Exception) +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event BACKGROUND_UPDATE +androidx.preference.R$styleable: int AppCompatTheme_windowFixedHeightMajor +androidx.appcompat.R$styleable: int SearchView_android_inputType +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintWidth_max +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: AccuCurrentResult() +androidx.appcompat.R$attr: int autoSizeStepGranularity +com.xw.repo.bubbleseekbar.R$id: int activity_chooser_view_content +com.google.android.material.R$style: int Widget_AppCompat_ButtonBar +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: HourlyTrendItemView(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$color: int abc_decor_view_status_guard +android.didikee.donate.R$style: int Theme_AppCompat_Light +okio.ForwardingSink: ForwardingSink(okio.Sink) +okhttp3.internal.http.CallServerInterceptor$CountingSink: void write(okio.Buffer,long) +com.google.android.material.internal.NavigationMenuItemView: NavigationMenuItemView(android.content.Context,android.util.AttributeSet,int) +okhttp3.internal.http1.Http1Codec$AbstractSource: long read(okio.Buffer,long) +androidx.appcompat.R$id: int accessibility_custom_action_3 +wangdaye.com.geometricweather.R$styleable: int SearchView_searchHintIcon +com.google.android.material.R$style: int ThemeOverlay_AppCompat_Dialog +com.google.android.material.transformation.FabTransformationSheetBehavior +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: AccuCurrentResult$Temperature$Metric() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitationProbability(java.lang.Float) +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void drain() +cyanogenmod.themes.ThemeManager$1$2: boolean val$isSuccess +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_Bridge +com.baidu.location.indoor.mapversion.c.a$d: com.baidu.location.indoor.mapversion.c.a$a f +wangdaye.com.geometricweather.R$styleable: int TagView_checked +com.google.android.material.imageview.ShapeableImageView +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_unregisterCallback +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.lifecycle.extensions.R$attr: int ttcIndex +com.tencent.bugly.crashreport.CrashReport: void enableObtainId(android.content.Context,boolean) +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.R$attr: int actionModeShareDrawable +com.google.android.material.textfield.TextInputLayout: android.widget.EditText getEditText() +cyanogenmod.app.Profile: cyanogenmod.profiles.BrightnessSettings getBrightness() +androidx.work.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.R$dimen: int highlight_alpha_material_light +wangdaye.com.geometricweather.R$color: int design_dark_default_color_secondary +com.tencent.bugly.crashreport.common.info.a: java.lang.String aq +com.google.android.material.R$style: int Widget_MaterialComponents_TextView +com.bumptech.glide.integration.okhttp.R$id: int tag_transition_group +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean getAddress_detail() +wangdaye.com.geometricweather.R$attr: int toolbarStyle +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionProviderClass +androidx.fragment.R$styleable: int Fragment_android_name +cyanogenmod.profiles.ConnectionSettings$BooleanState: int STATE_ENABLED +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer apparentTemperature +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime$Weather: java.lang.String humidity +com.baidu.location.e.l$b: com.baidu.location.e.l$b b +wangdaye.com.geometricweather.R$string: int feedback_ignore_battery_optimizations_content +androidx.constraintlayout.widget.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Subtitle +okhttp3.internal.http2.Http2Connection$7: int val$streamId +androidx.core.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.R$attr: int tint +com.xw.repo.bubbleseekbar.R$attr: int navigationContentDescription +androidx.appcompat.R$dimen: int abc_alert_dialog_button_dimen +cyanogenmod.app.CustomTile$ExpandedItem: int itemDrawableResourceId +com.google.android.material.R$id: int textinput_prefix_text +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ProgressBar_Horizontal +androidx.appcompat.widget.SwitchCompat: void setTrackTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$attr: int radius_from +com.amap.api.fence.GeoFence: int describeContents() +com.turingtechnologies.materialscrollbar.R$dimen: int disabled_alpha_material_light +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_ctrl_shortcut_label +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar_Indicator +androidx.hilt.lifecycle.R$id: int accessibility_action_clickable_span +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_8 +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTint +com.tencent.bugly.crashreport.crash.CrashDetailBean: long r +androidx.appcompat.R$attr: int colorBackgroundFloating +android.didikee.donate.R$color: int abc_primary_text_disable_only_material_light +androidx.constraintlayout.widget.R$id: int spread +james.adaptiveicon.R$styleable: int MenuView_android_verticalDivider +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Wind wind +cyanogenmod.themes.ThemeManager$2: cyanogenmod.themes.ThemeManager this$0 +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_android_hint +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String NAVBAR_BACKGROUND +androidx.constraintlayout.widget.R$id: int select_dialog_listview +com.xw.repo.bubbleseekbar.R$style: int Base_ThemeOverlay_AppCompat +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: io.reactivex.internal.operators.observable.ObservableCache parent +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listMenuViewStyle +com.google.android.material.internal.ParcelableSparseArray +wangdaye.com.geometricweather.R$id: int activity_widget_config_subtitleDataTitle +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Snackbar_Message +james.adaptiveicon.R$styleable: int ViewStubCompat_android_id +androidx.appcompat.resources.R$id: int accessibility_custom_action_26 +androidx.constraintlayout.widget.R$dimen: int abc_cascading_menus_min_smallest_width +wangdaye.com.geometricweather.R$string: int settings_language +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_editor_absoluteY +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView +io.reactivex.internal.observers.BasicIntQueueDisposable: BasicIntQueueDisposable() +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy: void setServiceRequestState(cyanogenmod.weather.RequestInfo,cyanogenmod.weatherservice.ServiceRequestResult,int) +com.turingtechnologies.materialscrollbar.R$styleable: int View_android_focusable +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_orderInCategory +com.google.android.material.R$dimen: int mtrl_btn_stroke_size +android.didikee.donate.R$attr: int expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.lang.String getPubTime() +androidx.constraintlayout.widget.R$attr: int curveFit +com.turingtechnologies.materialscrollbar.R$color: int error_color_material_dark +androidx.constraintlayout.widget.R$styleable: int MenuView_android_itemIconDisabledAlpha +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_tileMode +cyanogenmod.app.ILiveLockScreenManagerProvider: boolean getLiveLockScreenEnabled() +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: int getHeaderHeight() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.google.android.gms.common.internal.zzc: android.os.Parcelable$Creator CREATOR +okhttp3.internal.http2.Http2Stream$FramingSource +cyanogenmod.externalviews.KeyguardExternalViewProviderService: android.os.Handler access$100(cyanogenmod.externalviews.KeyguardExternalViewProviderService) +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long index +android.didikee.donate.R$style: int Base_Widget_AppCompat_Toolbar +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType THEME_REMOVED +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: java.lang.String LongPhrase +com.google.gson.internal.$Gson$Types$WildcardTypeImpl: long serialVersionUID +com.jaredrummler.android.colorpicker.R$attr: int iconSpaceReserved +androidx.viewpager.R$dimen: int notification_right_side_padding_top +androidx.dynamicanimation.R$layout +com.google.android.material.R$id: int reverseSawtooth +androidx.activity.R$styleable: int FontFamilyFont_android_ttcIndex +wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode: wangdaye.com.geometricweather.common.basic.models.options.WidgetWeekIconMode valueOf(java.lang.String) +androidx.constraintlayout.widget.R$attr: int actionLayout +okhttp3.internal.tls.DistinguishedNameParser: java.lang.String escapedAV() +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_elevation +wangdaye.com.geometricweather.R$drawable: int abc_scrubber_control_off_mtrl_alpha +wangdaye.com.geometricweather.R$color: int mtrl_chip_background_color +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeIcePrecipitationDuration(java.lang.Float) +okio.Util: Util() +androidx.dynamicanimation.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String EnglishType +androidx.appcompat.R$attr: int showAsAction +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Title_Inverse +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +androidx.appcompat.R$style: int Widget_AppCompat_Button_Small +com.jaredrummler.android.colorpicker.R$styleable: int Preference_iconSpaceReserved +com.jaredrummler.android.colorpicker.R$dimen: int abc_button_padding_vertical_material +okio.ByteString: int lastIndexOf(byte[]) +com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_NOGPSPERMISSION +com.google.android.material.R$styleable: int Toolbar_titleMarginStart +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_20 +androidx.constraintlayout.widget.R$color: int abc_background_cache_hint_selector_material_light +androidx.drawerlayout.R$style: R$style() +okio.Buffer: byte getByte(long) +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float co +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertInTxArray +androidx.recyclerview.widget.LinearLayoutManager$SavedState: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$layout: int abc_screen_simple_overlay_action_mode +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: SwipeRefreshLayout(android.content.Context) +com.google.android.material.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +android.didikee.donate.R$styleable: int AppCompatTheme_dividerHorizontal +okhttp3.ConnectionSpec: java.lang.String[] cipherSuites +com.github.rahatarmanahmed.cpv.R$attr: int cpv_animSwoopDuration +androidx.preference.R$id: int off +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.util.List getDefense() +okhttp3.internal.http.RequestLine: RequestLine() +com.google.android.material.chip.ChipGroup: void setChipSpacingVerticalResource(int) +com.google.android.material.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_121 +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_HOMESCREEN +wangdaye.com.geometricweather.R$color: int abc_primary_text_disable_only_material_dark +wangdaye.com.geometricweather.background.receiver.widget.AbstractWidgetProvider: AbstractWidgetProvider() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification +wangdaye.com.geometricweather.R$drawable: int ic_precipitation +androidx.vectordrawable.R$id: int action_divider +androidx.appcompat.R$color: int highlighted_text_material_light +cyanogenmod.profiles.ConnectionSettings: java.lang.String EXTRA_NETWORK_MODE +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_counterMaxLength +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date getUpdateDate() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_radio_to_on_mtrl_000 +okio.AsyncTimeout: boolean exit() +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.util.List toCardDisplayList(java.lang.String) +androidx.customview.R$styleable: int GradientColor_android_endColor +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_android_gravity +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts: long EpochDate +android.didikee.donate.R$style: int Theme_AppCompat_Dialog_MinWidth +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: long serialVersionUID +wangdaye.com.geometricweather.common.ui.activities.AwakeUpdateActivity +android.didikee.donate.R$attr: int paddingStart +com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_linear_out_slow_in +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +james.adaptiveicon.R$attr: int collapseIcon +wangdaye.com.geometricweather.R$styleable: int OnSwipe_maxAcceleration +james.adaptiveicon.R$attr: int theme +okhttp3.internal.Internal: okhttp3.internal.Internal instance +androidx.constraintlayout.widget.R$styleable: int KeyAttribute_transitionEasing +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +james.adaptiveicon.R$attr: int actionOverflowButtonStyle +wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle: wangdaye.com.geometricweather.common.basic.models.options.NotificationStyle CITIES +android.didikee.donate.R$styleable: int Spinner_popupTheme +com.google.android.material.R$styleable: int AppCompatTextView_drawableTint +com.jaredrummler.android.colorpicker.R$styleable: int ListPreference_useSimpleSummaryProvider +okio.ForwardingTimeout: ForwardingTimeout(okio.Timeout) +androidx.constraintlayout.widget.R$id: int honorRequest +com.google.android.material.R$attr: int boxCornerRadiusBottomEnd +wangdaye.com.geometricweather.R$styleable: int AppCompatTextHelper_android_drawableEnd +cyanogenmod.app.ICMTelephonyManager$Stub: java.lang.String DESCRIPTOR +com.google.android.material.R$attr: int paddingBottomNoButtons +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String content +androidx.constraintlayout.helper.widget.Flow: void setVerticalStyle(int) +james.adaptiveicon.R$attr: int windowFixedHeightMajor +android.didikee.donate.R$style: int RtlUnderlay_Widget_AppCompat_ActionButton com.turingtechnologies.materialscrollbar.R$id: int notification_background -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: void setStatus(int) -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_endIconDrawable -wangdaye.com.geometricweather.R$string: int key_precipitation_unit -androidx.appcompat.R$styleable: int AppCompatImageView_tintMode -androidx.appcompat.R$layout: int abc_list_menu_item_layout -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onScreenTurnedOff() -wangdaye.com.geometricweather.R$string: int phase_waning_crescent -androidx.dynamicanimation.R$color: int notification_icon_bg_color -io.reactivex.internal.subscriptions.DeferredScalarSubscription: void clear() -androidx.activity.R$layout: int notification_template_part_chronometer -androidx.appcompat.R$style: int Platform_V21_AppCompat_Light -androidx.viewpager.R$dimen: R$dimen() -com.turingtechnologies.materialscrollbar.R$styleable: int Spinner_android_entries -cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent LOCKSCREEN -io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver) -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintWidth_min -android.didikee.donate.R$attr: int layout -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub: ILiveLockScreenManagerProvider$Stub() -james.adaptiveicon.R$anim: int abc_popup_exit -io.reactivex.subjects.PublishSubject$PublishDisposable: void onComplete() -cyanogenmod.profiles.LockSettings: boolean isDirty() -wangdaye.com.geometricweather.db.entities.LocationEntityDao: java.lang.String TABLENAME -james.adaptiveicon.R$dimen: int abc_text_size_subtitle_material_toolbar -com.google.android.material.R$style: int ShapeAppearance_MaterialComponents -wangdaye.com.geometricweather.R$styleable: int ActionBar_subtitle -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPostStarted(android.app.Activity) -okhttp3.internal.Internal: int code(okhttp3.Response$Builder) -androidx.constraintlayout.widget.R$drawable: int abc_list_selector_background_transition_holo_light -androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivityPaused(android.app.Activity) -org.greenrobot.greendao.database.DatabaseOpenHelper: java.lang.String name -androidx.hilt.R$style: int TextAppearance_Compat_Notification_Time -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit KN -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String getValue() -wangdaye.com.geometricweather.background.polling.permanent.update.ForegroundTodayForecastUpdateService -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_MaterialComponents_Subtitle2 -com.google.android.material.R$id: int screen -com.bumptech.glide.R$layout: int notification_template_part_chronometer -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean delayErrors -com.jaredrummler.android.colorpicker.R$attr: int keylines -com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationProtocol j -wangdaye.com.geometricweather.R$id: int listMode -androidx.customview.R$layout: int notification_template_custom_big -io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: boolean isDisposed() -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarSplitStyle -wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_grey -io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver: void onComplete() -android.didikee.donate.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_item_max_width -androidx.constraintlayout.widget.R$styleable: int MenuView_android_windowAnimationStyle -androidx.appcompat.widget.Toolbar$SavedState: android.os.Parcelable$Creator CREATOR -androidx.lifecycle.Lifecycling: java.lang.String getAdapterName(java.lang.String) -wangdaye.com.geometricweather.R$id: int jumpToStart -com.jaredrummler.android.colorpicker.R$styleable: int Preference_fragment -com.amap.api.fence.GeoFenceClient: void resumeGeoFence() -cyanogenmod.weatherservice.WeatherProviderService$ServiceHandler: int MSG_ON_NEW_REQUEST -cyanogenmod.content.Intent: java.lang.String ACTION_OPEN_LIVE_LOCKSCREEN_SETTINGS -com.tencent.bugly.proguard.n -androidx.lifecycle.ViewModelStore -com.google.android.material.R$id: int mtrl_child_content_container -com.bumptech.glide.integration.okhttp.R$layout: int notification_template_part_time -com.turingtechnologies.materialscrollbar.R$drawable: int abc_tab_indicator_material -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.util.List Area -cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: cyanogenmod.app.LiveLockScreenInfo getCurrentLiveLockScreen() -okhttp3.OkHttpClient$1: java.net.Socket deduplicate(okhttp3.ConnectionPool,okhttp3.Address,okhttp3.internal.connection.StreamAllocation) -com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_NOWIFIANDAP -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button -com.google.gson.stream.JsonWriter: void setLenient(boolean) -androidx.lifecycle.extensions.R$styleable: int[] ColorStateListItem -androidx.recyclerview.R$id: int chronometer -com.google.android.material.R$styleable: int ConstraintSet_android_layout_marginRight -okhttp3.RealCall$1 -androidx.preference.R$style: int Preference_SeekBarPreference -androidx.preference.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView -wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: int Index -com.baidu.location.e.o -androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customFloatValue -androidx.preference.R$drawable: int abc_list_focused_holo -com.google.android.material.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -com.tencent.bugly.crashreport.BuglyHintException -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_EditText -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_chainStyle -androidx.appcompat.R$dimen: int abc_text_size_title_material -wangdaye.com.geometricweather.R$dimen: int abc_action_button_min_height_material -wangdaye.com.geometricweather.R$dimen: int default_dimension -androidx.appcompat.widget.AppCompatTextView: int[] getAutoSizeTextAvailableSizes() -androidx.activity.R$layout: int notification_action -android.didikee.donate.R$style: int Base_Theme_AppCompat_Dialog_MinWidth -androidx.constraintlayout.widget.R$styleable: int MotionTelltales_telltales_tailScale -cyanogenmod.weatherservice.ServiceRequestResult: java.lang.String access$402(cyanogenmod.weatherservice.ServiceRequestResult,java.lang.String) -wangdaye.com.geometricweather.R$id: int item_icon_provider_clearIcon -cyanogenmod.app.suggest.IAppSuggestProvider -com.google.android.material.R$dimen: int mtrl_calendar_pre_l_text_clip_padding -wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_weather_1 -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: java.lang.String getRelativeHumidityText(float) -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property UvDescription -com.google.android.material.R$animator: int linear_indeterminate_line1_tail_interpolator -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintHeight_max +com.google.android.material.textfield.TextInputLayout: void setHint(int) +retrofit2.RequestBuilder: void addQueryParam(java.lang.String,java.lang.String,boolean) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu +okhttp3.ConnectionPool: int pruneAndGetAllocationCount(okhttp3.internal.connection.RealConnection,long) +androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentWidth +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX: java.lang.String aqi +wangdaye.com.geometricweather.R$styleable: int CompoundButton_android_button +com.xw.repo.bubbleseekbar.R$attr: int fontStyle +androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragDirection wangdaye.com.geometricweather.search.LoadableLocationList$Status: wangdaye.com.geometricweather.search.LoadableLocationList$Status ERROR -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.String aqiText -james.adaptiveicon.R$styleable: int DrawerArrowToggle_arrowShaftLength -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_searchHintIcon -com.google.android.material.textfield.TextInputLayout: void setCounterOverflowTextAppearance(int) -io.reactivex.internal.operators.parallel.ParallelRunOn$BaseRunOnSubscriber: boolean done -androidx.appcompat.widget.LinearLayoutCompat: void setMeasureWithLargestChildEnabled(boolean) -androidx.core.R$styleable: int[] FontFamilyFont -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade -com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_switchTextOff -androidx.vectordrawable.R$dimen: int notification_big_circle_margin -com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getTrackInactiveTintList() -androidx.fragment.R$styleable: int FontFamily_fontProviderCerts -cyanogenmod.themes.IThemeService$Stub$Proxy: boolean isThemeApplying() -wangdaye.com.geometricweather.R$attr: int flow_verticalBias -com.amap.api.fence.GeoFence: int TYPE_AMAPPOI -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_popupMenuStyle -com.xw.repo.bubbleseekbar.R$color: int foreground_material_light -okio.Pipe$PipeSource -com.google.android.material.R$attr: int defaultState -com.xw.repo.bubbleseekbar.R$dimen: int abc_edit_text_inset_top_material -wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Long getId() -com.google.android.gms.internal.location.zzj -com.xw.repo.bubbleseekbar.R$drawable: int abc_spinner_mtrl_am_alpha -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_framePosition -com.google.android.material.internal.VisibilityAwareImageButton -androidx.appcompat.resources.R$attr: int ttcIndex -androidx.preference.R$attr: int isPreferenceVisible -androidx.transition.R$drawable: int notification_bg_normal_pressed -androidx.constraintlayout.widget.R$attr: int limitBoundsTo -androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification_Line2 -okhttp3.internal.ws.RealWebSocket$2: okhttp3.Request val$request -okhttp3.HttpUrl: int hashCode() -wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit LPSQM -okhttp3.Dispatcher: java.util.List queuedCalls() -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float so2 -com.tencent.bugly.crashreport.common.info.a: void b(int) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: MfHistoryResult$History() -androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$string: int key_pressure_unit -androidx.preference.R$id: int contentPanel -com.xw.repo.bubbleseekbar.R$styleable: int[] ActionBar -cyanogenmod.providers.CMSettings$System: java.lang.String FORWARD_LOOKUP_PROVIDER -retrofit2.Utils$WildcardTypeImpl: java.lang.reflect.Type lowerBound -okhttp3.Dispatcher: void executed(okhttp3.RealCall) -com.amap.api.fence.PoiItem: int describeContents() -androidx.preference.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle -wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String moldDescription -wangdaye.com.geometricweather.R$color: int colorTextContent -androidx.drawerlayout.widget.DrawerLayout$SavedState: android.os.Parcelable$Creator CREATOR -com.google.android.material.navigation.NavigationView: android.content.res.ColorStateList getItemIconTintList() -com.google.android.material.textfield.TextInputLayout: int getHelperTextCurrentTextColor() -com.google.android.material.R$layout: int mtrl_alert_select_dialog_singlechoice -cyanogenmod.hardware.CMHardwareManager: int FEATURE_HIGH_TOUCH_SENSITIVITY -com.google.android.material.R$style: int Base_V26_Theme_AppCompat_Light -wangdaye.com.geometricweather.R$dimen: int abc_seekbar_track_progress_height_material -androidx.swiperefreshlayout.R$id: int accessibility_custom_action_31 -james.adaptiveicon.R$id: int expanded_menu -androidx.appcompat.R$style: int Widget_AppCompat_AutoCompleteTextView -androidx.appcompat.R$attr: int tickMarkTintMode -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean: CaiYunMainlyResult$CurrentBean$WindBean() -com.google.android.material.R$attr: int endIconMode -com.google.android.material.R$layout: int abc_screen_toolbar -wangdaye.com.geometricweather.R$dimen: int abc_text_size_headline_material -cyanogenmod.app.ICMTelephonyManager$Stub -wangdaye.com.geometricweather.R$attr: int bsb_rtl -androidx.lifecycle.LifecycleService: void onCreate() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: int CategoryValue -wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: PrecipitationBar(android.content.Context,android.util.AttributeSet) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_selectableItemBackground -androidx.preference.R$styleable: int Toolbar_title -androidx.fragment.R$id: int text2 -com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_padding_top_material -wangdaye.com.geometricweather.R$style: int PreferenceFragment_Material -com.google.android.material.button.MaterialButton: void setInsetBottom(int) -io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean cancelled -wangdaye.com.geometricweather.R$attr: int iconPadding -wangdaye.com.geometricweather.R$styleable: int Chip_ensureMinTouchTargetSize -com.google.android.material.slider.RangeSlider: void setThumbStrokeWidth(float) -androidx.viewpager2.R$id: int accessibility_custom_action_18 -wangdaye.com.geometricweather.R$styleable: int[] MaterialButton -androidx.coordinatorlayout.R$color: int notification_icon_bg_color -androidx.constraintlayout.widget.R$id: int easeOut -com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_Alert -androidx.lifecycle.Transformations$2$1: void onChanged(java.lang.Object) -com.bumptech.glide.R$color: int notification_action_color_filter -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_scrimVisibleHeightTrigger -com.google.android.material.R$attr: int textAppearanceListItemSecondary -androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderFetchTimeout -androidx.work.R$integer: int status_bar_notification_info_maxnum -androidx.appcompat.widget.ActionBarOverlayLayout: void setUiOptions(int) -okhttp3.internal.http.BridgeInterceptor: java.lang.String cookieHeader(java.util.List) -cyanogenmod.app.ProfileManager: void removeProfile(cyanogenmod.app.Profile) +wangdaye.com.geometricweather.R$id: int cos +android.didikee.donate.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +com.google.android.material.radiobutton.MaterialRadioButton: MaterialRadioButton(android.content.Context) +okhttp3.internal.http2.Http2Stream$FramingSource: okio.Buffer receiveBuffer +io.reactivex.Observable: io.reactivex.Observable delaySubscription(long,java.util.concurrent.TimeUnit) +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +io.reactivex.internal.util.NotificationLite: java.lang.Object next(java.lang.Object) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: wangdaye.com.geometricweather.common.basic.models.weather.Astro sun() +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_getLiveLockScreenEnabled +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_CLOCK +cyanogenmod.externalviews.KeyguardExternalView: void performAction(java.lang.Runnable) +com.google.android.material.circularreveal.CircularRevealLinearLayout: void setCircularRevealScrimColor(int) +wangdaye.com.geometricweather.R$styleable: int RecyclerView_layoutManager +com.turingtechnologies.materialscrollbar.R$style: int Base_V23_Theme_AppCompat_Light +com.jaredrummler.android.colorpicker.R$styleable: int[] StateListDrawable +androidx.appcompat.R$drawable: int abc_textfield_search_material +james.adaptiveicon.R$styleable: int AppCompatTextView_firstBaselineToTopHeight +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge +okhttp3.CipherSuite: CipherSuite(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModePasteDrawable +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILES_STATE +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void dispose() +com.google.android.material.R$styleable: int MenuView_android_windowAnimationStyle +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +com.google.android.material.R$interpolator: int btn_checkbox_unchecked_mtrl_animation_interpolator_1 +androidx.vectordrawable.R$integer: int status_bar_notification_info_maxnum +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +okio.AsyncTimeout$1: java.lang.String toString() +com.google.android.material.button.MaterialButtonToggleGroup: void setSingleSelection(boolean) +androidx.appcompat.resources.R$id: int accessibility_custom_action_28 +com.google.android.material.R$style: int Base_V21_Theme_AppCompat_Light +com.amap.api.fence.PoiItem: java.lang.String i +androidx.hilt.work.R$attr: int fontProviderFetchTimeout +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_ActionBar +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar +androidx.appcompat.R$style: int Base_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$dimen: int abc_alert_dialog_button_bar_height +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_ttcIndex +okio.GzipSource: byte SECTION_HEADER +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getSummary(android.content.Context,java.util.List) +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: ObservableWithLatestFromMany$WithLatestFromObserver(io.reactivex.Observer,io.reactivex.functions.Function,int) +android.support.v4.app.INotificationSideChannel: void cancelAll(java.lang.String) +androidx.lifecycle.ProcessLifecycleOwner$1: androidx.lifecycle.ProcessLifecycleOwner this$0 +okhttp3.internal.connection.RouteSelector: boolean hasNextProxy() +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +androidx.preference.R$color: int abc_hint_foreground_material_light +com.google.android.material.R$dimen: int mtrl_btn_hovered_z +james.adaptiveicon.R$attr: int switchMinWidth +androidx.preference.R$attr: int colorError +com.google.android.material.bottomappbar.BottomAppBar$SavedState +wangdaye.com.geometricweather.R$attr: int dragThreshold +com.xw.repo.bubbleseekbar.R$attr: int theme +com.turingtechnologies.materialscrollbar.R$id: int item_touch_helper_previous_elevation +okhttp3.internal.http2.Huffman$Node: okhttp3.internal.http2.Huffman$Node[] children +com.tencent.bugly.proguard.ao: void a(java.lang.StringBuilder,int) +androidx.appcompat.R$styleable: int Toolbar_navigationContentDescription +cyanogenmod.themes.ThemeManager$1$1: int val$progress +androidx.preference.R$color: int abc_primary_text_material_dark +androidx.constraintlayout.widget.R$dimen: int notification_top_pad +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver +okhttp3.OkHttpClient: okhttp3.Authenticator authenticator() +wangdaye.com.geometricweather.R$id: int notification_multi_city +com.google.android.material.R$styleable: int AnimatedStateListDrawableItem_android_id +androidx.appcompat.R$string: int abc_searchview_description_query +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_Cut +androidx.appcompat.widget.AppCompatTextView: void setSupportBackgroundTintList(android.content.res.ColorStateList) +androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionDuration(int) +retrofit2.ParameterHandler$Body: retrofit2.Converter converter +android.didikee.donate.R$attr: int buttonStyleSmall +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator sNonNegativeIntegerValidator +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: long serialVersionUID +io.reactivex.internal.util.AtomicThrowable: AtomicThrowable() +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_Alert +wangdaye.com.geometricweather.R$string: int aqi_2 +com.amap.api.location.AMapLocation: int LOCATION_TYPE_CELL +wangdaye.com.geometricweather.R$string: int key_notification_minimal_icon +okhttp3.internal.Util: boolean skipAll(okio.Source,int,java.util.concurrent.TimeUnit) +cyanogenmod.externalviews.ExternalView$1: ExternalView$1(cyanogenmod.externalviews.ExternalView) +androidx.preference.R$style: int Platform_V25_AppCompat_Light +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_android_focusable +com.google.gson.stream.JsonReader: long peekedLong +androidx.preference.internal.PreferenceImageView: int getMaxWidth() +com.tencent.bugly.proguard.i: boolean[] d(int,boolean) +com.google.android.material.R$styleable: int Insets_paddingBottomSystemWindowInsets +androidx.activity.R$style: int TextAppearance_Compat_Notification_Line2 +wangdaye.com.geometricweather.R$styleable: int ChipGroup_singleSelection +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onStart() +io.reactivex.internal.functions.Functions$HashSetCallable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX$ValueBeanXXX: java.lang.String getTo() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours$Imperial: double Value +wangdaye.com.geometricweather.R$styleable: int Preference_selectable +wangdaye.com.geometricweather.R$string: int key_notification_hide_icon +com.tencent.bugly.crashreport.crash.c: void a(com.tencent.bugly.crashreport.common.strategy.StrategyBean) +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingStart +wangdaye.com.geometricweather.R$string: int mtrl_picker_invalid_format_use +androidx.fragment.R$id: int forever +com.google.android.material.R$id: int zero_corner_chip +androidx.core.R$id: int tag_accessibility_clickable_spans +android.didikee.donate.R$attr: int overlapAnchor +androidx.appcompat.R$styleable: int DrawerArrowToggle_barLength +wangdaye.com.geometricweather.R$string: int wind_0 +wangdaye.com.geometricweather.R$id: int on +androidx.hilt.work.R$id: int accessibility_custom_action_11 +com.google.android.material.R$styleable: int AppCompatTheme_alertDialogCenterButtons +cyanogenmod.themes.ThemeManager$ThemeChangeListener: void onProgress(int) +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Subtitle +androidx.customview.R$styleable: int GradientColor_android_centerY +io.reactivex.internal.operators.observable.ObservableUnsubscribeOn$UnsubscribeObserver: long serialVersionUID +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeLevel +androidx.transition.R$attr: int fontWeight +com.tencent.bugly.proguard.aq: boolean h +android.didikee.donate.R$styleable: int AppCompatTextView_textAllCaps +wangdaye.com.geometricweather.common.ui.widgets.DrawerLayout: void setProgress(float) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_divider_mtrl_alpha +com.google.android.material.R$styleable: int MenuItem_iconTint +androidx.appcompat.resources.R$styleable: int FontFamilyFont_ttcIndex +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property Id +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_content_inset_material +androidx.drawerlayout.R$styleable: int FontFamilyFont_fontVariationSettings +com.google.android.material.R$styleable: int TabLayout_tabIndicatorColor +okhttp3.internal.http2.Http2Connection: int OKHTTP_CLIENT_WINDOW_SIZE +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightEndObserver: ObservableGroupJoin$LeftRightEndObserver(io.reactivex.internal.operators.observable.ObservableGroupJoin$JoinSupport,boolean,int) +androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event ON_DESTROY +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object,java.lang.Object) +androidx.lifecycle.Lifecycle$State: boolean isAtLeast(androidx.lifecycle.Lifecycle$State) +androidx.customview.R$styleable: int FontFamily_fontProviderCerts +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_elevation +wangdaye.com.geometricweather.R$style: int Preference_DropDown_Material +androidx.appcompat.widget.Toolbar: void setContentInsetEndWithActions(int) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_SHOW_WEATHER_VALIDATOR +com.jaredrummler.android.colorpicker.R$attr: int measureWithLargestChild +wangdaye.com.geometricweather.remoteviews.trend.TrendLinearLayout: TrendLinearLayout(android.content.Context) +androidx.recyclerview.R$attr: int fontProviderQuery +android.support.v4.os.ResultReceiver: void writeToParcel(android.os.Parcel,int) +cyanogenmod.app.CustomTile$ExpandedItem: java.lang.String itemSummary +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: double lon +wangdaye.com.geometricweather.R$string: int key_widget_clock_day_week +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackInactiveTintList() +com.google.android.gms.common.server.response.zan: android.os.Parcelable$Creator CREATOR +androidx.constraintlayout.widget.R$layout: int abc_screen_content_include +com.xw.repo.bubbleseekbar.R$id: int submit_area +wangdaye.com.geometricweather.main.models.LocationResource$Event: wangdaye.com.geometricweather.main.models.LocationResource$Event UPDATE +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: android.os.IBinder asBinder() +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_overflow_material +com.jaredrummler.android.colorpicker.R$attr: int multiChoiceItemLayout +okhttp3.ConnectionPool$1: void run() +com.tencent.bugly.proguard.h: java.lang.StringBuilder a +com.google.android.material.R$styleable: int AppCompatTheme_actionModeStyle +com.turingtechnologies.materialscrollbar.R$dimen: int notification_content_margin_start +wangdaye.com.geometricweather.R$styleable: int RecycleListView_paddingBottomNoButtons +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_CompoundButton_RadioButton +androidx.constraintlayout.widget.R$styleable: int Layout_barrierAllowsGoneWidgets +androidx.appcompat.R$id: int contentPanel +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onComplete() +com.google.android.material.bottomappbar.BottomAppBar: void setBackgroundTint(android.content.res.ColorStateList) +android.didikee.donate.R$styleable: int ActionBar_homeLayout +cyanogenmod.weather.WeatherInfo: java.lang.String mKey +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub +androidx.appcompat.R$style: int Base_Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.R$attr: int fabSize +com.amap.api.location.AMapLocationClientOption: boolean h +okhttp3.internal.platform.JdkWithJettyBootPlatform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +com.github.rahatarmanahmed.cpv.CircularProgressView: float actualProgress +androidx.core.widget.NestedScrollView: NestedScrollView(android.content.Context,android.util.AttributeSet,int) +android.didikee.donate.R$styleable: int MenuView_android_itemIconDisabledAlpha +wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_selected +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info: java.util.List guomin +cyanogenmod.app.Profile$ProfileTrigger: java.lang.String mName +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_numericShortcut +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_RatingBar +com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_startY +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$BooleanRunnable: long serialVersionUID +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.Integer altitude +com.jaredrummler.android.colorpicker.R$attr: int popupMenuStyle +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: org.reactivestreams.Subscriber downstream +androidx.hilt.lifecycle.R$id: int action_divider +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: void setSpeed(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX) +androidx.hilt.R$dimen: int compat_button_inset_horizontal_material +wangdaye.com.geometricweather.R$id: int text +com.turingtechnologies.materialscrollbar.R$style: int Widget_Compat_NotificationActionText +cyanogenmod.themes.ThemeManager$2: ThemeManager$2(cyanogenmod.themes.ThemeManager) +wangdaye.com.geometricweather.R$styleable: int[] ExtendedFloatingActionButton +wangdaye.com.geometricweather.db.entities.DailyEntityDao +james.adaptiveicon.R$style: int Widget_AppCompat_ActionBar +com.xw.repo.bubbleseekbar.R$style: int Base_V26_Theme_AppCompat +com.google.android.material.R$attr: int indicatorType +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao getChineseCityEntityDao() +io.reactivex.Observable: io.reactivex.Observable sample(io.reactivex.ObservableSource) +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.Integer speed +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Body1 +wangdaye.com.geometricweather.R$dimen: int material_helper_text_font_1_3_padding_top +com.google.android.material.R$attr: int tintMode +retrofit2.BuiltInConverters$UnitResponseBodyConverter: java.lang.Object convert(java.lang.Object) +com.google.android.material.R$styleable: int PopupWindow_overlapAnchor +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao$Properties +okio.RealBufferedSource: java.lang.String readUtf8LineStrict() +wangdaye.com.geometricweather.R$layout: int container_main_header +com.turingtechnologies.materialscrollbar.R$attr: int fontVariationSettings +com.google.android.material.R$dimen: int appcompat_dialog_background_inset +androidx.appcompat.widget.ActivityChooserView: void setDefaultActionButtonContentDescription(int) +okio.SegmentedByteString: int segment(int) +com.google.android.material.R$dimen: int mtrl_btn_elevation +cyanogenmod.app.CustomTileListenerService: void onCustomTilePosted(cyanogenmod.app.StatusBarPanelCustomTile) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: boolean isValid() +okhttp3.internal.cache2.FileOperator: java.nio.channels.FileChannel fileChannel +wangdaye.com.geometricweather.db.entities.HistoryEntity: long time +androidx.appcompat.R$color: int material_grey_850 +com.google.android.material.R$styleable: int DrawerArrowToggle_barLength +androidx.viewpager2.R$styleable: int RecyclerView_reverseLayout +com.google.android.material.R$layout: int material_timepicker_textinput_display +okhttp3.internal.http2.Http2Stream$StreamTimeout: java.io.IOException newTimeoutException(java.io.IOException) +wangdaye.com.geometricweather.R$color: int colorRoot_light +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_height com.turingtechnologies.materialscrollbar.R$attr: int windowMinWidthMinor -com.google.android.material.bottomnavigation.BottomNavigationView: void setItemBackground(android.graphics.drawable.Drawable) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_Solid -com.google.android.material.R$styleable: int Constraint_drawPath -androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableRight -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String moldDescription -androidx.preference.R$dimen: int abc_alert_dialog_button_dimen -com.bumptech.glide.integration.okhttp.R$dimen: int notification_main_column_padding_top -androidx.appcompat.R$styleable: int FontFamily_fontProviderAuthority -okhttp3.internal.cache.DiskLruCache$Entry: boolean readable -wangdaye.com.geometricweather.R$drawable: int notif_temp_0 -wangdaye.com.geometricweather.R$attr: int type -james.adaptiveicon.R$attr: int actionDropDownStyle -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_blackContainer -wangdaye.com.geometricweather.R$attr: int tabTextAppearance -com.xw.repo.bubbleseekbar.R$attr: int textAppearancePopupMenuHeader -wangdaye.com.geometricweather.R$transition -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String Summary -cyanogenmod.externalviews.KeyguardExternalView: KeyguardExternalView(android.content.Context,android.util.AttributeSet,int) -com.google.android.material.R$style: int Widget_MaterialComponents_CardView -wangdaye.com.geometricweather.R$color: int abc_secondary_text_material_dark -okhttp3.Dns -androidx.loader.R$attr -wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintStart_toEndOf -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fab_cradle_margin -androidx.vectordrawable.animated.R$layout -com.xw.repo.bubbleseekbar.R$id: int text2 -androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription -io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: boolean done -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_tooltipForegroundColor -wangdaye.com.geometricweather.R$styleable: int[] StateListDrawable -cyanogenmod.app.Profile: void setBrightness(cyanogenmod.profiles.BrightnessSettings) -org.greenrobot.greendao.AbstractDao: void updateInsideSynchronized(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement,boolean) -com.bumptech.glide.load.HttpException: HttpException(int) -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 -com.xw.repo.bubbleseekbar.R$attr: int queryHint -okio.AsyncTimeout$2: okio.Source val$source -androidx.fragment.app.Fragment$InstantiationException: Fragment$InstantiationException(java.lang.String,java.lang.Exception) -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea: java.lang.String EnglishType -okhttp3.Headers: java.lang.String value(int) -cyanogenmod.weather.util.WeatherUtils: java.lang.String formatTemperature(double,int) -wangdaye.com.geometricweather.R$attr: int itemIconTint -androidx.vectordrawable.animated.R$id: int tag_screen_reader_focusable -androidx.preference.R$attr: int titleMarginStart -cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks access$700(cyanogenmod.externalviews.KeyguardExternalView) -com.turingtechnologies.materialscrollbar.R$attr: int toolbarNavigationButtonStyle -androidx.preference.R$attr: int numericModifiers -wangdaye.com.geometricweather.R$styleable: int[] SnackbarLayout -cyanogenmod.themes.ThemeManager: void addClient(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_shouldDisableView -com.google.android.material.R$anim -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Moon: java.util.Date Rise -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility$Imperial: double Value -androidx.fragment.R$color -com.turingtechnologies.materialscrollbar.R$id: int action_image -cyanogenmod.app.CMTelephonyManager: boolean localLOGD -androidx.appcompat.widget.AppCompatSpinner: int getDropDownVerticalOffset() -wangdaye.com.geometricweather.R$id: int searchIcon -okhttp3.HttpUrl: okhttp3.HttpUrl$Builder newBuilder(java.lang.String) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Metric -com.amap.api.fence.PoiItem: double getLatitude() -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.MinutelyEntity) -androidx.preference.R$styleable: int FontFamily_fontProviderFetchStrategy -androidx.activity.R$id: int accessibility_custom_action_31 -androidx.preference.R$dimen: int abc_text_size_menu_material -com.google.android.material.R$id: int list_item -androidx.appcompat.R$style: int Base_Widget_AppCompat_Toolbar -com.google.android.material.R$dimen: int mtrl_bottomappbar_height -androidx.hilt.R$style: int TextAppearance_Compat_Notification_Line2 -android.didikee.donate.R$styleable: int TextAppearance_fontFamily -wangdaye.com.geometricweather.common.basic.models.options.provider.LocationProvider -com.jaredrummler.android.colorpicker.R$styleable: int PopupWindow_android_popupBackground -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_getCurrentHotwordPackageName -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_TextInputLayout -com.google.android.material.slider.BaseSlider: void setTrackTintList(android.content.res.ColorStateList) -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed: java.lang.String Unit -okhttp3.internal.http1.Http1Codec: int STATE_CLOSED -com.google.android.material.R$styleable: int MenuItem_iconTintMode -androidx.constraintlayout.widget.R$attr: int colorControlHighlight -androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type: androidx.constraintlayout.solver.widgets.ConstraintAnchor$Type valueOf(java.lang.String) -com.google.android.material.circularreveal.CircularRevealGridLayout -retrofit2.adapter.rxjava2.BodyObservable$BodyObserver -wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: boolean IsDaylightSaving -io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onSubscribe(io.reactivex.disposables.Disposable) -androidx.constraintlayout.widget.R$styleable: int ActionMode_height -com.jaredrummler.android.colorpicker.R$attr: int height -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: int unitArrayIndex -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) -io.reactivex.internal.operators.observable.ObservableCombineLatest$LatestCoordinator: boolean isDisposed() -com.google.android.material.R$styleable: int ActionBar_logo -com.google.gson.stream.JsonWriter: boolean isLenient() -okhttp3.internal.ws.WebSocketProtocol: int OPCODE_BINARY -wangdaye.com.geometricweather.db.entities.WeatherEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() -com.jaredrummler.android.colorpicker.R$attr: int panelMenuListTheme -android.didikee.donate.R$styleable: int[] PopupWindow -com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_menuCategory -androidx.dynamicanimation.R$color: int notification_action_color_filter -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: long serialVersionUID -wangdaye.com.geometricweather.common.basic.models.weather.Hourly: java.lang.String getDate(java.lang.String) -com.tencent.bugly.crashreport.crash.h5.a: a() -androidx.work.R$dimen: R$dimen() -androidx.appcompat.R$color: int abc_decor_view_status_guard_light -androidx.recyclerview.R$styleable: int GradientColorItem_android_offset -wangdaye.com.geometricweather.R$style: int Base_V7_ThemeOverlay_AppCompat_Dialog -wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String getSpeedText(android.content.Context,float) -wangdaye.com.geometricweather.R$string: int abc_menu_alt_shortcut_label -com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Determinate -androidx.preference.R$styleable: int SearchView_android_maxWidth -retrofit2.adapter.rxjava2.RxJava2CallAdapter: RxJava2CallAdapter(java.lang.reflect.Type,io.reactivex.Scheduler,boolean,boolean,boolean,boolean,boolean,boolean,boolean) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean() -androidx.preference.R$attr: int paddingStart -com.jaredrummler.android.colorpicker.R$string: int abc_prepend_shortcut_label -com.google.android.material.internal.CheckableImageButton: void setPressed(boolean) -okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec build() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_fab_translation_z_pressed -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$ProbabilityForecast: MfForecastResult$ProbabilityForecast() -com.amap.api.fence.GeoFenceManagerBase: void addDistrictGeoFence(java.lang.String,java.lang.String) -com.google.android.material.R$id: int test_radiobutton_app_button_tint -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: void onNext(java.lang.Object) -androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_icon -cyanogenmod.platform.Manifest$permission -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Large -cyanogenmod.profiles.ConnectionSettings: boolean mOverride -androidx.coordinatorlayout.R$color: R$color() -androidx.preference.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle -androidx.vectordrawable.R$id: R$id() -okhttp3.internal.connection.RouteSelector$Selection: RouteSelector$Selection(java.util.List) -androidx.constraintlayout.widget.Group: Group(android.content.Context,android.util.AttributeSet) -com.amap.api.location.AMapLocation: int getErrorCode() +androidx.coordinatorlayout.R$id: int right_icon +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginBottom(int) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicatorFullWidth +com.jaredrummler.android.colorpicker.R$styleable: int StateListDrawable_android_constantSize +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorButtonNormal +com.google.android.material.R$styleable: int[] AppCompatTheme +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String getTreeDescription() +okio.RealBufferedSink: okio.BufferedSink writeInt(int) +cyanogenmod.weather.WeatherInfo$1: java.lang.Object[] newArray(int) +android.didikee.donate.R$drawable: int abc_item_background_holo_light +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isShow +androidx.appcompat.widget.ActionMenuView: void setPopupTheme(int) +wangdaye.com.geometricweather.R$drawable: int ic_eye +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: void onNext(java.lang.Object) com.google.android.material.R$attr: int hoveredFocusedTranslationZ -androidx.lifecycle.extensions.R$drawable: int notification_icon_background -com.google.android.material.R$id: int dragEnd -com.jaredrummler.android.colorpicker.R$string: int abc_action_bar_up_description -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language[] values() -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getWindDescription(android.content.Context,wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit) -androidx.appcompat.widget.ViewStubCompat -okio.RealBufferedSource: void require(long) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Imperial: double Value -wangdaye.com.geometricweather.R$dimen: int material_clock_hand_center_dot_radius -com.google.android.material.appbar.AppBarLayout: int getPendingAction() -androidx.constraintlayout.widget.R$styleable: int ActionBar_progressBarStyle -okio.GzipSource: byte FNAME -wangdaye.com.geometricweather.db.entities.MinutelyEntity: int minuteInterval -com.jaredrummler.android.colorpicker.R$color: int switch_thumb_disabled_material_dark -com.google.android.material.R$attr: int onHide -cyanogenmod.providers.CMSettings$System: java.lang.String PEOPLE_LOOKUP_PROVIDER -com.amap.api.location.AMapLocation: float getSpeed() -androidx.constraintlayout.widget.R$styleable: int Constraint_flow_lastVerticalBias -androidx.core.R$styleable: int GradientColor_android_centerX -wangdaye.com.geometricweather.R$styleable: int Badge_horizontalOffset -retrofit2.OkHttpCall$ExceptionCatchingResponseBody: void close() -androidx.appcompat.R$attr: int panelMenuListTheme -com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setRevealInfo(com.google.android.material.circularreveal.CircularRevealWidget$RevealInfo) -androidx.vectordrawable.R$attr: int fontProviderQuery -com.tencent.bugly.proguard.an: java.util.Map j -androidx.constraintlayout.widget.R$attr: int windowActionBarOverlay -com.tencent.bugly.crashreport.CrashReport: void initCrashReport(android.content.Context,com.tencent.bugly.crashreport.CrashReport$UserStrategy) -com.google.android.material.R$style: int TextAppearance_MaterialComponents_Headline1 -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_horizontalGap -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: FitSystemBarViewPager(android.content.Context,android.util.AttributeSet) -androidx.appcompat.widget.AppCompatAutoCompleteTextView -androidx.viewpager2.widget.ViewPager2: java.lang.CharSequence getAccessibilityClassName() +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode THUNDER +androidx.constraintlayout.widget.R$styleable: int SearchView_voiceIcon +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property Priority +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_barrierMargin +androidx.preference.R$styleable: int TextAppearance_android_fontFamily +androidx.preference.R$styleable: int ActionBar_height +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_centerColor +james.adaptiveicon.R$drawable +com.google.android.material.timepicker.TimePickerView +android.didikee.donate.R$styleable: int MenuItem_iconTintMode +androidx.drawerlayout.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: java.lang.String Unit +com.amap.api.location.AMapLocation: void setLocationQualityReport(com.amap.api.location.AMapLocationQualityReport) +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_ActionBar +com.tencent.bugly.proguard.u: void b(boolean) +cyanogenmod.app.suggest.ApplicationSuggestion: android.net.Uri getThumbailUri() +wangdaye.com.geometricweather.R$drawable: int ic_navigation +wangdaye.com.geometricweather.db.entities.LocationEntity: void setCountry(java.lang.String) +com.turingtechnologies.materialscrollbar.R$attr: int counterTextAppearance +androidx.legacy.coreutils.R$dimen: int notification_small_icon_size_as_large +wangdaye.com.geometricweather.R$attr: int tabIconTintMode +android.didikee.donate.R$styleable: int Toolbar_navigationContentDescription +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.util.Map S +com.turingtechnologies.materialscrollbar.R$attr: int ratingBarStyleIndicator +cyanogenmod.app.suggest.IAppSuggestProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() +androidx.constraintlayout.helper.widget.Layer +androidx.work.R$drawable: int notification_bg_low_pressed +com.google.android.material.R$dimen: int design_fab_translation_z_pressed +wangdaye.com.geometricweather.R$id: int widget_trend_daily_item_1 +com.google.android.material.R$styleable: int ConstraintSet_android_maxWidth +okhttp3.internal.Util: java.util.Comparator NATURAL_ORDER +androidx.constraintlayout.widget.R$attr: int layout_goneMarginTop +com.google.android.material.R$attr: int checkedButton +androidx.appcompat.R$attr: int windowFixedWidthMajor +io.reactivex.Observable: io.reactivex.Observable merge(java.lang.Iterable,int,int) +cyanogenmod.weather.WeatherInfo: double access$1302(cyanogenmod.weather.WeatherInfo,double) +com.tencent.bugly.BuglyStrategy$a: int MAX_USERDATA_KEY_LENGTH +okhttp3.Headers: java.lang.String value(int) +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_RadioButton +androidx.lifecycle.SavedStateViewModelFactory: java.lang.Class[] VIEWMODEL_SIGNATURE +com.github.rahatarmanahmed.cpv.CircularProgressView$2: void onAnimationEnd(android.animation.Animator) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility Visibility +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean done +okhttp3.CertificatePinner: void check(java.lang.String,java.util.List) +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode[] values() androidx.transition.R$id: int notification_main_column_container -androidx.core.R$id: int accessibility_custom_action_1 -com.jaredrummler.android.colorpicker.R$layout: int abc_action_menu_layout -com.turingtechnologies.materialscrollbar.R$id: int src_atop -com.autonavi.aps.amapapi.model.AMapLocationServer: void f(java.lang.String) -james.adaptiveicon.R$styleable: int TextAppearance_android_fontFamily -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar -wangdaye.com.geometricweather.R$attr: int cpv_dialogType -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ImageButton -androidx.appcompat.R$dimen: int abc_alert_dialog_button_bar_height -com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(byte[],java.lang.String) -com.turingtechnologies.materialscrollbar.R$attr: int tabStyle -wangdaye.com.geometricweather.R$attr: int entries -wangdaye.com.geometricweather.R$id: int widget_remote_card -wangdaye.com.geometricweather.R$drawable: int ic_time -androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat -androidx.appcompat.R$styleable: int AppCompatTheme_checkedTextViewStyle -com.amap.api.location.UmidtokenInfo$1: void run() -androidx.swiperefreshlayout.R$attr: int fontStyle -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningTimelaps$WarningTimelapsItem: long beginTime -wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout: void setOnFitSystemBarListener(wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarAppBarLayout$OnFitSystemBarListener) -com.amap.api.fence.GeoFence: boolean equals(java.lang.Object) -com.github.rahatarmanahmed.cpv.CircularProgressView: java.util.List access$100(com.github.rahatarmanahmed.cpv.CircularProgressView) -wangdaye.com.geometricweather.R$attr: int switchPreferenceCompatStyle -wangdaye.com.geometricweather.R$styleable: int BottomAppBar_backgroundTint -com.google.android.material.R$style: int Base_Widget_MaterialComponents_Snackbar -com.turingtechnologies.materialscrollbar.R$attr: int cardUseCompatPadding -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTheme -cyanogenmod.themes.ThemeManager: void removeClient(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -androidx.appcompat.R$style: int Base_Widget_AppCompat_Light_PopupMenu -androidx.constraintlayout.widget.R$style: int Widget_AppCompat_SeekBar -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.ObservableSource fallback -com.google.android.material.R$layout: int text_view_with_theme_line_height -wangdaye.com.geometricweather.R$attr: int state_collapsed -com.google.android.material.R$attr: int editTextColor -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ButtonBar -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer wetBulbTemperature -wangdaye.com.geometricweather.R$layout: int mtrl_picker_text_input_date -com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display4 -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STATUSBAR_WIFI_ICON -com.google.android.material.R$attr: int customColorValue -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu -androidx.lifecycle.OnLifecycleEvent: androidx.lifecycle.Lifecycle$Event value() -io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: io.reactivex.internal.disposables.SequentialDisposable sd -com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_overflow_padding_start_material -com.google.android.material.navigation.NavigationView: void setItemTextAppearance(int) -com.google.android.material.R$attr: int expandedTitleMarginStart -androidx.preference.R$styleable: int Preference_android_defaultValue -com.turingtechnologies.materialscrollbar.R$styleable: int MaterialScrollBar_msb_barColor -com.turingtechnologies.materialscrollbar.Indicator: int getIndicatorWidth() -okhttp3.internal.connection.StreamAllocation: java.net.Socket releaseIfNoNewStreams() -com.bumptech.glide.R$drawable: int notification_tile_bg -com.jaredrummler.android.colorpicker.R$attr: int cpv_dialogTitle -io.reactivex.internal.subscribers.StrictSubscriber: java.util.concurrent.atomic.AtomicBoolean once -androidx.recyclerview.R$dimen: int fastscroll_default_thickness -wangdaye.com.geometricweather.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -androidx.preference.R$style: int Widget_AppCompat_Button_Borderless_Colored -com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: java.lang.String d -james.adaptiveicon.R$id: int title_template -com.google.android.material.R$id: int selected -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintCircleAngle -androidx.appcompat.R$id: int accessibility_custom_action_16 -androidx.vectordrawable.R$layout: int notification_template_icon_group -androidx.swiperefreshlayout.R$id: int blocking -okhttp3.internal.http.CallServerInterceptor$CountingSink -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onComplete() -com.jaredrummler.android.colorpicker.R$id: int search_plate -cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_writePersistentBytes -wangdaye.com.geometricweather.R$color: int abc_search_url_text -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.proguard.w d -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_submitBackground -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSearchResultTitle -okio.ByteString: boolean rangeEquals(int,okio.ByteString,int,int) -com.amap.api.fence.DistrictItem: DistrictItem(android.os.Parcel) -wangdaye.com.geometricweather.R$styleable: int RecycleListView_paddingBottomNoButtons -com.turingtechnologies.materialscrollbar.R$animator: int mtrl_chip_state_list_anim -com.google.android.material.card.MaterialCardView: int getContentPaddingLeft() -androidx.appcompat.R$id: int accessibility_custom_action_30 -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void innerError(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver,java.lang.Throwable) -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) -james.adaptiveicon.R$styleable: int FontFamilyFont_fontWeight -james.adaptiveicon.R$dimen: int hint_pressed_alpha_material_dark -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setBackgroundResource(int) -wangdaye.com.geometricweather.R$attr: int flow_firstVerticalStyle -androidx.core.R$id: int line1 -com.tencent.bugly.crashreport.crash.CrashDetailBean: int compareTo(java.lang.Object) -androidx.hilt.work.R$id: int accessibility_custom_action_31 -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context) -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getCity() -wangdaye.com.geometricweather.R$id: int icon_group -androidx.constraintlayout.helper.widget.Flow: void setVerticalGap(int) -cyanogenmod.app.IPartnerInterface$Stub: int TRANSACTION_setMobileDataEnabled_1 -wangdaye.com.geometricweather.R$styleable: int Slider_thumbElevation -com.jaredrummler.android.colorpicker.R$styleable: int Spinner_android_entries -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_SEED_CBC_SHA -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitationDuration -com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setBackgroundTintMode(android.graphics.PorterDuff$Mode) -io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: void innerSuccess(java.lang.Object) -com.turingtechnologies.materialscrollbar.R$styleable: int SwitchCompat_switchMinWidth -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: long serialVersionUID -wangdaye.com.geometricweather.R$dimen: int cpv_item_horizontal_padding -wangdaye.com.geometricweather.R$attr: int prefixText -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource -cyanogenmod.app.IProfileManager$Stub$Proxy: boolean setActiveProfile(android.os.ParcelUuid) +androidx.lifecycle.Lifecycling$1 +com.tencent.bugly.proguard.ai: java.util.ArrayList c +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past12Hours com.google.android.material.R$color: int material_on_primary_emphasis_high_type -androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintBaseline_toBaselineOf -androidx.constraintlayout.widget.R$color: int material_grey_300 +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +androidx.constraintlayout.widget.R$styleable: int[] MockView +okhttp3.CacheControl: int sMaxAgeSeconds +com.google.android.material.tabs.TabLayout: void setElevation(float) +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_startY +com.xw.repo.bubbleseekbar.R$drawable: int abc_item_background_holo_dark +wangdaye.com.geometricweather.R$dimen: int default_drawer_width +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$b: boolean a(java.lang.String,int,java.lang.String,java.lang.String) +cyanogenmod.app.Profile: void setNotificationLightMode(int) +wangdaye.com.geometricweather.common.basic.models.weather.Alert: long getTime() +com.google.android.material.R$style: int TextAppearance_MaterialComponents_Caption +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.lang.Object poll() +james.adaptiveicon.R$attr: int measureWithLargestChild +com.google.android.material.R$string: int mtrl_picker_text_input_date_range_end_hint +androidx.appcompat.R$bool: int abc_action_bar_embed_tabs +cyanogenmod.providers.CMSettings$Global: boolean putFloatForUser(android.content.ContentResolver,java.lang.String,float,int) +androidx.viewpager2.R$layout: int notification_action_tombstone +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose Sport +wangdaye.com.geometricweather.R$drawable: int shortcuts_fog +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_skipCollapsed +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +androidx.preference.R$style: int Base_Widget_AppCompat_SeekBar +io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver +okhttp3.internal.http2.Settings: int getInitialWindowSize() +androidx.preference.R$styleable: int AppCompatTheme_colorPrimary +androidx.constraintlayout.widget.R$styleable: int ButtonBarLayout_allowStacking +wangdaye.com.geometricweather.common.ui.transitions.RoundCornerTransition +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: java.util.List value +cyanogenmod.app.Profile$LockMode +com.google.android.material.appbar.AppBarLayout: void setLiftOnScrollTargetViewId(int) +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float visibility +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_padding_end_material +com.tencent.bugly.a: java.lang.String versionKey +wangdaye.com.geometricweather.R$string: int mtrl_picker_range_header_only_end_selected +cyanogenmod.profiles.BrightnessSettings$1: cyanogenmod.profiles.BrightnessSettings[] newArray(int) +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void onSubscribe(io.reactivex.disposables.Disposable) +james.adaptiveicon.R$styleable: int ViewBackgroundHelper_android_background +androidx.preference.R$attr: int actionOverflowButtonStyle +io.reactivex.Observable: io.reactivex.Observable range(int,int) +com.google.android.material.R$attr: int showDividers +androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabBar +okhttp3.internal.ws.RealWebSocket$2: okhttp3.Request val$request +androidx.core.R$styleable: int FontFamilyFont_android_fontWeight +androidx.preference.R$id: int activity_chooser_view_content +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginRight +wangdaye.com.geometricweather.R$string: int feedback_unusable_geocoder +com.tencent.bugly.b: boolean e +androidx.appcompat.R$styleable: int AppCompatTheme_windowActionModeOverlay +androidx.core.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean wind +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Medium +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_dark_normal_background +cyanogenmod.app.Profile: void setTrigger(cyanogenmod.app.Profile$ProfileTrigger) +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWeatherText +androidx.appcompat.widget.SearchView: void setAppSearchData(android.os.Bundle) +com.tencent.bugly.proguard.ai +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean isDisposed() +androidx.activity.R$attr: int fontProviderFetchTimeout +io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer) +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Button_Inverse +androidx.preference.R$attr: int arrowShaftLength +androidx.appcompat.R$styleable: int Toolbar_contentInsetStart +com.google.android.gms.common.internal.zzv +com.google.android.material.R$styleable: int AppCompatTextView_drawableEndCompat +wangdaye.com.geometricweather.R$styleable: int Constraint_android_id +wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean hasKey(java.lang.Object) +androidx.fragment.R$color: int notification_action_color_filter +com.tencent.bugly.crashreport.crash.jni.b +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_dropdownPreferenceStyle +cyanogenmod.weather.RequestInfo: int getTemperatureUnit() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum: AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum() +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_height_material +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_drawableTintMode +okhttp3.Protocol: okhttp3.Protocol[] values() +com.turingtechnologies.materialscrollbar.R$dimen +wangdaye.com.geometricweather.R$id: int searchBar +james.adaptiveicon.R$id: int action_image +android.didikee.donate.R$style: int TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$a readFirstDumpInfo(java.lang.String,boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: void setNames(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean$NamesBean) +wangdaye.com.geometricweather.R$styleable: R$styleable() +androidx.appcompat.widget.Toolbar: void setTitleTextColor(android.content.res.ColorStateList) +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: void dispose() +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: boolean isPrecipitation() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String value +wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties: org.greenrobot.greendao.Property RealFeelShaderTemperature +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_bubble_text_color +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: java.lang.Throwable error +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_LAST_PROFILE_UUID +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: java.lang.Object poll() +com.google.android.material.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_switchStyle +androidx.appcompat.R$attr: int editTextBackground +wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_linearSeamless +com.turingtechnologies.materialscrollbar.R$styleable: int[] Chip +com.google.android.material.R$dimen: int abc_button_inset_horizontal_material +okhttp3.internal.tls.OkHostnameVerifier: boolean verify(java.lang.String,javax.net.ssl.SSLSession) +retrofit2.ParameterHandler$QueryName: retrofit2.Converter nameConverter +androidx.preference.R$id: int split_action_bar +io.reactivex.internal.operators.observable.ObservableAmb$AmbInnerObserver: io.reactivex.internal.operators.observable.ObservableAmb$AmbCoordinator parent +io.reactivex.Observable: io.reactivex.Observable concatMapMaybe(io.reactivex.functions.Function,int) +wangdaye.com.geometricweather.R$string: int mtrl_picker_date_header_title +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +okio.Pipe: boolean sourceClosed +com.google.android.material.R$attr: int toolbarNavigationButtonStyle +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$5: ExternalViewProviderService$Provider$ProviderImpl$5(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: java.util.List consequences +androidx.customview.R$styleable: int FontFamily_fontProviderQuery +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty12H +com.google.android.material.R$attr: int contentPaddingRight +com.google.android.material.R$styleable: int ShapeAppearance_cornerSizeBottomLeft +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_title +androidx.appcompat.R$styleable: int DrawerArrowToggle_arrowShaftLength +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter close(int,int,java.lang.String) +wangdaye.com.geometricweather.R$animator: int weather_partly_cloudy_night_1 +com.turingtechnologies.materialscrollbar.R$id: int up +com.google.android.material.R$styleable: int AppCompatTheme_panelMenuListWidth +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_RC4_128_SHA +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: java.lang.String toValue(java.util.List) +com.jaredrummler.android.colorpicker.R$id: int async +androidx.constraintlayout.widget.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +okhttp3.internal.ws.WebSocketProtocol: int B0_MASK_OPCODE +wangdaye.com.geometricweather.R$drawable: int cpv_preset_checked +retrofit2.HttpServiceMethod$SuspendForResponse: retrofit2.CallAdapter callAdapter +com.google.android.material.floatingactionbutton.FloatingActionButton: com.google.android.material.floatingactionbutton.FloatingActionButtonImpl getImpl() +androidx.preference.PreferenceGroup$SavedState +james.adaptiveicon.R$drawable: int abc_ic_star_black_16dp +androidx.viewpager2.R$style: int TextAppearance_Compat_Notification +com.tencent.bugly.proguard.ak: java.util.ArrayList A +androidx.legacy.coreutils.R$layout: int notification_template_part_time +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +okhttp3.Cookie$Builder: okhttp3.Cookie$Builder expiresAt(long) +wangdaye.com.geometricweather.R$attr: int motionPathRotate +com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getDefaultHintTextColor() +wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullException: ResourceUtils$NullException() +cyanogenmod.externalviews.KeyguardExternalView$KeyguardExternalViewCallbacks: boolean requestDismiss() +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Widget_Switch +io.reactivex.Observable: io.reactivex.Observable replay(io.reactivex.functions.Function) +androidx.lifecycle.LiveData: java.lang.Object mPendingData +androidx.recyclerview.widget.StaggeredGridLayoutManager$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String getDirection() +io.reactivex.internal.schedulers.AbstractDirectTask: boolean isDisposed() +io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: void request(long) +wangdaye.com.geometricweather.R$styleable: int StateListDrawable_android_exitFadeDuration +wangdaye.com.geometricweather.R$attr: int labelStyle +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setWallpaperId(long) +wangdaye.com.geometricweather.R$attr: int msb_textColor +android.didikee.donate.R$styleable: int[] CompoundButton +androidx.preference.R$id: int image +android.didikee.donate.R$id: int search_button +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Realtime: java.lang.String feelslike_c +okio.BufferedSource: long indexOf(byte) +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: java.lang.Object value +androidx.appcompat.R$dimen: int abc_text_size_large_material +com.turingtechnologies.materialscrollbar.R$attr: int closeIconSize +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void a() +wangdaye.com.geometricweather.common.ui.widgets.DonateImageView: DonateImageView(android.content.Context) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean delayErrors +io.reactivex.internal.operators.observable.ObservableGroupBy$State: ObservableGroupBy$State(int,io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver,java.lang.Object,boolean) +android.didikee.donate.R$styleable: int TextAppearance_fontFamily +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_84 +james.adaptiveicon.R$anim: int abc_fade_in +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_BottomNavigationView +retrofit2.Utils$WildcardTypeImpl +androidx.preference.R$styleable: int AppCompatTheme_colorControlNormal +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_hintAnimationEnabled +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: java.lang.String Unit +wangdaye.com.geometricweather.R$color: int mtrl_scrim_color +androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyleSmall +androidx.constraintlayout.widget.R$string: int abc_shareactionprovider_share_with_application +androidx.appcompat.R$color: int abc_decor_view_status_guard_light +okhttp3.internal.platform.AndroidPlatform: okhttp3.internal.tls.TrustRootIndex buildTrustRootIndex(javax.net.ssl.X509TrustManager) +android.didikee.donate.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +androidx.preference.R$styleable: int ViewBackgroundHelper_backgroundTintMode +com.amap.api.location.AMapLocation: java.lang.String p(com.amap.api.location.AMapLocation,java.lang.String) +wangdaye.com.geometricweather.R$string: int aqi_6 +com.google.android.material.chip.ChipGroup: int getChipSpacingVertical() +james.adaptiveicon.R$styleable: int Toolbar_titleMarginEnd +wangdaye.com.geometricweather.R$drawable: int notif_temp_132 +com.google.android.material.R$styleable: int CardView_contentPaddingLeft +cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_ENABLED +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: int TRANSACTION_handles_0 +com.github.rahatarmanahmed.cpv.CircularProgressView: void setMaxProgress(float) +james.adaptiveicon.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TextInputLayout_FilledBox +wangdaye.com.geometricweather.R$string: int mtrl_picker_text_input_date_hint +com.google.android.material.R$layout: int design_bottom_navigation_item +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: long date +androidx.preference.R$attr: int windowActionBarOverlay +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle +wangdaye.com.geometricweather.R$layout: int dialog_running_in_background_o +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: ExtendedFloatingActionButton(android.content.Context,android.util.AttributeSet) +androidx.appcompat.R$style: int TextAppearance_AppCompat_Large +com.google.android.material.R$dimen: int abc_action_bar_default_height_material +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float co +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: void setPubTime(java.lang.String) +wangdaye.com.geometricweather.R$id: int cpv_color_panel_view +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_Day +com.google.android.material.R$attr: int menu +retrofit2.DefaultCallAdapterFactory$1: retrofit2.DefaultCallAdapterFactory this$0 +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean getContent() +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: int status +okhttp3.internal.cache2.Relay +androidx.appcompat.resources.R$attr: int fontWeight +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Light +wangdaye.com.geometricweather.R$attr: int layout_constraintTop_creator +wangdaye.com.geometricweather.R$attr: int cornerFamilyBottomLeft +com.google.android.material.R$dimen: int design_snackbar_min_width +com.turingtechnologies.materialscrollbar.R$id: int lastElement +android.didikee.donate.R$id: int top +androidx.hilt.lifecycle.R$styleable: int[] FragmentContainerView +androidx.swiperefreshlayout.R$drawable: int notify_panel_notification_icon_bg +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintWidth_max +androidx.preference.R$attr: int dialogIcon +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModePasteDrawable +james.adaptiveicon.R$styleable: int TextAppearance_android_fontFamily +com.google.android.material.floatingactionbutton.FloatingActionButton: boolean getUseCompatPadding() +com.google.android.material.R$styleable: int AppCompatTheme_seekBarStyle +androidx.appcompat.widget.LinearLayoutCompat: int getVirtualChildCount() +com.google.android.material.R$attr: int errorTextColor +wangdaye.com.geometricweather.R$styleable: int ColorPreference_cpv_previewSize +com.google.android.material.R$string: int icon_content_description +wangdaye.com.geometricweather.R$animator: int linear_indeterminate_line2_head_interpolator +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature$Imperial: double Value +retrofit2.ParameterHandler$Field: java.lang.String name +wangdaye.com.geometricweather.R$attr: int tickColorInactive +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_searchHintIcon +okhttp3.internal.Internal: java.io.IOException timeoutExit(okhttp3.Call,java.io.IOException) +com.google.android.material.R$style: int Widget_MaterialComponents_Chip_Choice +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_textColorLink +android.didikee.donate.R$style: int Base_V22_Theme_AppCompat +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void onError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_panelBackground +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginTop +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver +androidx.appcompat.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.turingtechnologies.materialscrollbar.DragScrollBar: float getHideRatio() +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getHint() +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +com.google.android.material.R$anim: R$anim() +android.didikee.donate.R$anim: int abc_shrink_fade_out_from_bottom +com.tencent.bugly.crashreport.crash.c: void a(java.lang.Thread,java.lang.Throwable,boolean,java.lang.String,byte[],boolean) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +androidx.hilt.R$styleable: int GradientColor_android_centerY +androidx.constraintlayout.widget.R$attr: int chainUseRtl +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: KeyguardExternalViewProviderService$Provider$ProviderImpl$9(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl,int,int,int,int,boolean,android.graphics.Rect) +cyanogenmod.app.ProfileManager: void removeProfile(cyanogenmod.app.Profile) +okhttp3.Dispatcher: int getMaxRequestsPerHost() +androidx.fragment.R$dimen: int notification_right_icon_size +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder callTimeout(long,java.util.concurrent.TimeUnit) +android.didikee.donate.R$style: int Widget_AppCompat_Spinner_DropDown +wangdaye.com.geometricweather.common.basic.models.weather.Base +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceSmallPopupMenu +com.xw.repo.bubbleseekbar.R$color: int material_grey_800 +androidx.appcompat.R$drawable: int notification_bg_low_normal +okhttp3.FormBody$Builder: okhttp3.FormBody$Builder addEncoded(java.lang.String,java.lang.String) +com.google.android.material.R$styleable: int Constraint_chainUseRtl +okhttp3.internal.cache2.Relay: okio.ByteString PREFIX_CLEAN +com.amap.api.fence.GeoFenceManagerBase: void addPolygonGeoFence(java.util.List,java.lang.String) +okhttp3.Address: java.util.List protocols +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: void setPrecipitationProbability(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean) +wangdaye.com.geometricweather.R$string: int action_preview +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeBottomLeft +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: io.reactivex.subjects.Subject signaller +com.google.android.material.R$id: int cut +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_expandedOffset +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.tencent.bugly.crashreport.biz.UserInfoBean: java.lang.String j +cyanogenmod.profiles.ConnectionSettings: int mSubId +wangdaye.com.geometricweather.R$styleable: int KeyPosition_motionTarget +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit MUGPCUM +androidx.constraintlayout.widget.R$styleable: int[] Layout +io.reactivex.disposables.RunnableDisposable: long serialVersionUID +wangdaye.com.geometricweather.R$attr: int barrierMargin +android.didikee.donate.R$attr: int splitTrack +wangdaye.com.geometricweather.R$id: int activity_widget_config_hideLunarContainer +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: void setDistrict(java.lang.String) +io.reactivex.internal.operators.observable.ObservableConcatWithMaybe$ConcatWithObserver: io.reactivex.Observer downstream +com.jaredrummler.android.colorpicker.R$id: int recycler_view +androidx.transition.R$styleable: int GradientColor_android_centerY +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onNext(java.lang.Object) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.util.Date modificationDate +com.jaredrummler.android.colorpicker.R$id: int bottom +androidx.preference.R$drawable: int abc_list_selector_background_transition_holo_light +cyanogenmod.externalviews.KeyguardExternalView$3: int val$x +wangdaye.com.geometricweather.R$drawable: int ic_plus +androidx.preference.R$styleable: int SwitchCompat_thumbTintMode +cyanogenmod.app.CMContextConstants: java.lang.String CM_WEATHER_SERVICE +wangdaye.com.geometricweather.R$id: int item_weather_daily_overview_icon +com.google.android.material.R$attr: int textAppearanceListItem +wangdaye.com.geometricweather.db.entities.DaoSession: void clear() +wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetLeft +com.bumptech.glide.integration.okhttp.R$attr: int keylines +wangdaye.com.geometricweather.R$drawable: int abc_list_selector_holo_light +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: wangdaye.com.geometricweather.db.entities.ChineseCityEntity readEntity(android.database.Cursor,int) +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_strokeWidth +cyanogenmod.themes.ThemeChangeRequest: int getNumChangesRequested() +wangdaye.com.geometricweather.common.basic.models.weather.Minutely: java.util.Date date +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial Imperial +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ActionBar_Surface +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_titleCondensed +cyanogenmod.app.IPartnerInterface +io.reactivex.internal.operators.maybe.MaybeToObservable$MaybeToObservableObserver: MaybeToObservable$MaybeToObservableObserver(io.reactivex.Observer) +com.google.android.material.R$styleable: int[] KeyTrigger +wangdaye.com.geometricweather.R$xml: int widget_clock_day_details +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_26 +com.amap.api.fence.PoiItem: void setTypeCode(java.lang.String) +com.tencent.bugly.crashreport.crash.h5.b +android.didikee.donate.R$styleable: int[] ActionMode +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.FlowableEmitter serialize() +androidx.preference.R$drawable: int abc_list_divider_material +wangdaye.com.geometricweather.R$color: int colorLevel_5 +wangdaye.com.geometricweather.R$color: int common_google_signin_btn_text_dark_disabled +com.tencent.bugly.proguard.q: android.content.Context c +androidx.lifecycle.FullLifecycleObserver: void onPause(androidx.lifecycle.LifecycleOwner) +okhttp3.internal.http2.Hpack$Writer: int dynamicTableByteCount +com.google.android.material.card.MaterialCardView: int getStrokeWidth() +com.jaredrummler.android.colorpicker.R$dimen: int cpv_dialog_preview_height +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: void run() +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_set +com.jaredrummler.android.colorpicker.R$styleable: int PreferenceTheme_seekBarPreferenceStyle +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Weather: MfHistoryResult$History$Weather() +androidx.hilt.R$styleable: int GradientColor_android_gradientRadius +wangdaye.com.geometricweather.R$color: int mtrl_fab_icon_text_color_selector +com.google.android.material.R$style: int Widget_AppCompat_ActionButton_Overflow +okhttp3.internal.http2.Http2Connection$5: int val$streamId +com.tencent.bugly.proguard.u: java.lang.Object a(com.tencent.bugly.proguard.u) +androidx.recyclerview.R$id: int tag_transition_group +com.turingtechnologies.materialscrollbar.R$styleable: int RecyclerView_layoutManager +org.greenrobot.greendao.AbstractDao: java.util.List loadAll() +james.adaptiveicon.R$dimen: int abc_action_bar_default_padding_start_material +wangdaye.com.geometricweather.R$attr: int haloRadius +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: long serialVersionUID +androidx.preference.R$styleable: int AppCompatTextHelper_android_drawableBottom +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeTotalPrecipitationDuration(java.lang.Float) +com.google.android.material.R$styleable: int GradientColor_android_endColor +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox_Dense +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.rx.RxDao rx() +com.google.android.material.timepicker.TimePickerView: void setOnActionUpListener(com.google.android.material.timepicker.ClockHandView$OnActionUpListener) +wangdaye.com.geometricweather.R$style: int Test_Theme_MaterialComponents_MaterialCalendar +android.didikee.donate.R$attr: int navigationContentDescription +androidx.constraintlayout.widget.R$attr: int layout_constraintCircleAngle +okio.Buffer$2: int read(byte[],int,int) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: java.lang.String getValue() +androidx.constraintlayout.widget.R$attr: int dividerVertical +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarWidgetTheme +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_Layout_layout_insetEdge +com.bumptech.glide.integration.okhttp.R$dimen: int notification_right_side_padding_top +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void onNext(java.lang.Object) +com.google.android.material.textfield.TextInputLayout: void setEndIconDrawable(int) +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +com.tencent.bugly.proguard.w: java.util.concurrent.atomic.AtomicInteger d() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_editTextColor +androidx.preference.R$dimen: int hint_alpha_material_dark +com.tencent.bugly.crashreport.biz.UserInfoBean: boolean l +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionButton +com.tencent.bugly.proguard.m: long a +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_startIconDrawable +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_centerX +cyanogenmod.providers.CMSettings$System: java.lang.String[] LEGACY_SYSTEM_SETTINGS +wangdaye.com.geometricweather.R$styleable: int Preference_android_key +com.jaredrummler.android.colorpicker.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.remoteviews.config.ClockDayHorizontalWidgetConfigActivity: ClockDayHorizontalWidgetConfigActivity() +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Title_Inverse +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_18 +wangdaye.com.geometricweather.R$style: int Platform_V21_AppCompat_Light +androidx.constraintlayout.widget.R$attr: int buttonGravity +androidx.appcompat.R$attr: int backgroundTintMode +wangdaye.com.geometricweather.db.entities.LocationEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,java.lang.Object) +androidx.viewpager2.R$id: int tag_accessibility_clickable_spans +com.google.android.material.R$attr: int maxImageSize +androidx.appcompat.widget.AppCompatRadioButton: android.graphics.PorterDuff$Mode getSupportButtonTintMode() +cyanogenmod.profiles.BrightnessSettings: void readFromParcel(android.os.Parcel) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void dispose() +wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableTransition_android_drawable +io.reactivex.Observable: io.reactivex.Observable switchMapDelayError(io.reactivex.functions.Function,int) +androidx.drawerlayout.R$id: int right_icon +androidx.constraintlayout.widget.R$styleable: int[] StateSet +com.google.android.gms.common.ConnectionResult +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String saint +androidx.appcompat.widget.AppCompatImageView: void setImageBitmap(android.graphics.Bitmap) +wangdaye.com.geometricweather.R$styleable: int MultiSelectListPreference_android_entries +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_subtitle +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_drawableTintMode +android.didikee.donate.R$drawable: int notification_template_icon_low_bg +wangdaye.com.geometricweather.R$attr: int alphabeticModifiers +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginEnd +wangdaye.com.geometricweather.R$attr: int imageButtonStyle +okio.HashingSink: okio.HashingSink md5(okio.Sink) +androidx.appcompat.R$attr: int alertDialogCenterButtons +com.turingtechnologies.materialscrollbar.R$attr: int expandedTitleMarginTop +james.adaptiveicon.R$attr: int track +com.google.android.material.R$layout: int abc_popup_menu_item_layout +com.tencent.bugly.crashreport.crash.h5.a: long k +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tMin +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_1 +com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.proguard.o f +androidx.appcompat.R$styleable: int AppCompatTheme_actionModePasteDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemIconTint +androidx.appcompat.R$dimen: int abc_control_padding_material +okhttp3.CertificatePinner: okhttp3.CertificatePinner DEFAULT +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeTotalPrecipitationProbability() +com.xw.repo.bubbleseekbar.R$style: int Base_V28_Theme_AppCompat_Light +james.adaptiveicon.R$styleable: int[] SwitchCompat +androidx.transition.R$styleable: int GradientColor_android_centerX +androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentHeight +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixText +android.didikee.donate.R$anim: int abc_fade_out +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableRightCompat +wangdaye.com.geometricweather.R$color: int material_deep_teal_500 +androidx.appcompat.widget.AppCompatRadioButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$color: int bright_foreground_disabled_material_dark +cyanogenmod.themes.ThemeManager: boolean isThemeApplying() +com.turingtechnologies.materialscrollbar.R$attr: int iconPadding +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: boolean isValidIndex() +com.google.android.material.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabBar_Inverse +androidx.appcompat.R$styleable: int FontFamilyFont_android_font +com.google.android.material.R$string: int material_slider_range_end +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginBottom +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver +wangdaye.com.geometricweather.wallpaper.LiveWallpaperConfigActivity +androidx.constraintlayout.utils.widget.ImageFilterView: void setOverlay(boolean) +wangdaye.com.geometricweather.R$layout: int mtrl_layout_snackbar_include +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_focused_z +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.Precipitation precipitation +android.didikee.donate.R$styleable: int View_android_focusable +com.amap.api.location.AMapLocation: java.lang.String j(com.amap.api.location.AMapLocation,java.lang.String) +androidx.preference.R$layout: int select_dialog_singlechoice_material +james.adaptiveicon.R$id: int contentPanel +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date publishDate +wangdaye.com.geometricweather.db.entities.HistoryEntity: int getDaytimeTemperature() +okhttp3.internal.ws.RealWebSocket: boolean processNextFrame() +cyanogenmod.os.Concierge$ParcelInfo +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Light +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_behavior +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_textFontWeight +io.reactivex.Observable: io.reactivex.Completable concatMapCompletable(io.reactivex.functions.Function,int) +androidx.vectordrawable.animated.R$id: int dialog_button +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area: java.lang.String LanguageCode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust: AccuCurrentResult$WindGust() +cyanogenmod.weather.WeatherInfo: long mTimestamp +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage DATA_CACHE +wangdaye.com.geometricweather.R$dimen: int abc_alert_dialog_button_dimen +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Display2 +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: java.lang.String getAbbreviation(android.content.Context) +wangdaye.com.geometricweather.R$attr: int actionModeStyle +androidx.preference.R$color: int abc_tint_seek_thumb +wangdaye.com.geometricweather.R$drawable: int notification_template_icon_bg +cyanogenmod.providers.CMSettings$System: java.lang.String SYSTEM_PROFILES_ENABLED +wangdaye.com.geometricweather.R$attr: int tickMarkTintMode +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getAqiText() +com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +androidx.viewpager.R$styleable: int GradientColor_android_type +androidx.core.R$styleable: int FontFamily_fontProviderPackage +androidx.hilt.lifecycle.R$layout: R$layout() +androidx.constraintlayout.helper.widget.Flow: void setWrapMode(int) +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_NoActionBar +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_EXPORT_WITH_DES_CBC_40_MD5 +wangdaye.com.geometricweather.R$attr: int startIconContentDescription +android.didikee.donate.R$styleable: int AppCompatTheme_windowFixedHeightMinor +androidx.appcompat.R$attr: int dialogPreferredPadding +com.google.android.material.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox +james.adaptiveicon.R$color: int abc_hint_foreground_material_dark +com.turingtechnologies.materialscrollbar.CustomIndicator: int getIndicatorWidth() +wangdaye.com.geometricweather.R$id: int container_main_sun_moon_phaseText +cyanogenmod.app.CMTelephonyManager: int ASK_FOR_SUBSCRIPTION_ID +com.amap.api.location.AMapLocation: void setConScenario(int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter$ResponseCallback: java.util.concurrent.CompletableFuture future +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: boolean IsDaylight +okhttp3.internal.http2.Http2Stream: void setHeadersListener(okhttp3.internal.http2.Header$Listener) +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean appendWholeNativeLog(java.lang.String) +androidx.transition.R$string: R$string() +wangdaye.com.geometricweather.R$id: int progress_horizontal +androidx.constraintlayout.widget.R$styleable: int[] AppCompatSeekBar +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String windDircEnd +cyanogenmod.app.CustomTile$ExpandedStyle: int LIST_STYLE +com.bumptech.glide.R$styleable: int FontFamily_fontProviderCerts +okhttp3.internal.ws.WebSocketWriter: WebSocketWriter(boolean,okio.BufferedSink,java.util.Random) +cyanogenmod.app.IPartnerInterface$Stub$Proxy: boolean setZenModeWithDuration(int,long) +cyanogenmod.hardware.DisplayMode$1: DisplayMode$1() +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Borderless_Colored +androidx.appcompat.R$attr: int tooltipText +com.google.android.material.R$style: int Base_V28_Theme_AppCompat +wangdaye.com.geometricweather.R$drawable: int material_ic_calendar_black_24dp +com.google.android.material.R$dimen: int mtrl_card_corner_radius +wangdaye.com.geometricweather.R$style: int Base_V21_Theme_AppCompat_Light +okhttp3.internal.http2.Http2Codec: java.lang.String CONNECTION +android.didikee.donate.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +com.jaredrummler.android.colorpicker.ColorPanelView: ColorPanelView(android.content.Context) +com.google.android.material.R$styleable: int ActionBar_contentInsetEndWithActions +com.google.android.material.R$styleable: int Toolbar_title +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontStyle +james.adaptiveicon.R$drawable: int abc_textfield_default_mtrl_alpha +androidx.hilt.lifecycle.R$layout: int notification_template_icon_group +wangdaye.com.geometricweather.R$styleable: int[] LoadingImageView +cyanogenmod.weather.ICMWeatherManager$Stub: java.lang.String DESCRIPTOR +androidx.customview.R$styleable: int FontFamilyFont_android_fontStyle +com.xw.repo.bubbleseekbar.R$styleable: int ColorStateListItem_android_alpha +io.reactivex.Observable: io.reactivex.Observable window(long,long,java.util.concurrent.TimeUnit) +com.jaredrummler.android.colorpicker.R$styleable: int Preference_key +okhttp3.ConnectionSpec$Builder: okhttp3.ConnectionSpec$Builder cipherSuites(java.lang.String[]) +retrofit2.http.Url +android.didikee.donate.R$attr: int subtitleTextAppearance +androidx.transition.R$styleable: int FontFamilyFont_font +james.adaptiveicon.R$id: int action_text +androidx.constraintlayout.widget.R$drawable: int abc_text_select_handle_middle_mtrl_light +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarRecyclerView: FitSystemBarRecyclerView(android.content.Context,android.util.AttributeSet) +retrofit2.converter.gson.GsonResponseBodyConverter +io.reactivex.Observable: io.reactivex.Observable sample(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$TemperatureBeanX: java.util.List value +com.bumptech.glide.R$styleable +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.R$attr: int actionBarPopupTheme +retrofit2.ParameterHandler$1: retrofit2.ParameterHandler this$0 +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: AMapLocationClientOption$AMapLocationMode(java.lang.String,int) +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: boolean isDisposed() +okhttp3.Cookie: long expiresAt +com.google.android.material.R$attr: int radioButtonStyle +okhttp3.internal.cache.CacheInterceptor$1 +wangdaye.com.geometricweather.R$string: int common_google_play_services_wear_update_text +androidx.appcompat.R$attr: int initialActivityCount +android.didikee.donate.R$attr: int actionModeCloseButtonStyle +james.adaptiveicon.R$styleable: int AppCompatTextHelper_android_drawableTop +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ButtonBar +wangdaye.com.geometricweather.R$dimen: int notification_action_icon_size +android.didikee.donate.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.R$styleable: int MaterialCardView_checkedIconSize +org.greenrobot.greendao.identityscope.IdentityScopeType: org.greenrobot.greendao.identityscope.IdentityScopeType[] values() +io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: boolean cancelled +android.didikee.donate.R$color: int primary_text_disabled_material_dark +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_percent +androidx.constraintlayout.widget.R$color: int switch_thumb_normal_material_light +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableEnd +wangdaye.com.geometricweather.db.entities.HourlyEntity: int getTemperature() +androidx.appcompat.R$attr: int gapBetweenBars +androidx.appcompat.R$id: int src_in +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Inverse +okio.Buffer: okio.BufferedSink writeUtf8CodePoint(int) +androidx.appcompat.R$attr: int actionBarTabBarStyle +com.xw.repo.bubbleseekbar.R$attr: int seekBarStyle +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getRainPrecipitationProbability() +android.support.v4.os.ResultReceiver$MyRunnable: void run() +com.google.android.material.internal.CheckableImageButton$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setDate(java.util.Date) +androidx.constraintlayout.widget.R$id: int notification_main_column_container +com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetLeft +wangdaye.com.geometricweather.R$layout: int activity_weather_daily +cyanogenmod.app.Profile$ProfileTrigger: int mState +com.tencent.bugly.crashreport.crash.d: com.tencent.bugly.crashreport.common.strategy.a b +wangdaye.com.geometricweather.R$xml: int standalone_badge_gravity_bottom_end +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_translationX +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String getCo() +retrofit2.OkHttpCall: boolean isCanceled() +cyanogenmod.profiles.StreamSettings: int mValue +james.adaptiveicon.R$drawable: int abc_ic_star_half_black_36dp +com.google.android.material.R$attr: int percentY +wangdaye.com.geometricweather.R$drawable: int donate_wechat +com.amap.api.location.AMapLocation: int c(com.amap.api.location.AMapLocation,int) +androidx.coordinatorlayout.R$drawable +com.xw.repo.bubbleseekbar.R$id: int decor_content_parent +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherSource(java.lang.String) +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableStart +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_17 +com.xw.repo.bubbleseekbar.R$string: int abc_searchview_description_submit +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Large_Inverse +androidx.vectordrawable.R$styleable: int[] ColorStateListItem +com.google.android.material.R$styleable: int[] LinearLayoutCompat_Layout +androidx.preference.TwoStatePreference +wangdaye.com.geometricweather.R$style: int Preference_Information_Material +com.google.android.material.R$attr: int behavior_peekHeight +okhttp3.internal.cache.InternalCache: void update(okhttp3.Response,okhttp3.Response) +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_gapBetweenBars +com.google.android.material.R$styleable: int MaterialButton_strokeColor +wangdaye.com.geometricweather.R$style: int Widget_Design_AppBarLayout +wangdaye.com.geometricweather.R$id: int customPanel +com.google.android.material.slider.BaseSlider: int getTrackSidePadding() +androidx.customview.R$attr: int fontVariationSettings +android.didikee.donate.R$styleable: int Toolbar_maxButtonHeight +androidx.constraintlayout.widget.R$styleable: int[] ButtonBarLayout +com.google.android.material.chip.Chip: float getTextEndPadding() +io.reactivex.Observable: io.reactivex.Observable throttleLatest(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,boolean) +cyanogenmod.weather.RequestInfo$Builder: cyanogenmod.weather.IRequestInfoListener mListener +com.tencent.bugly.crashreport.crash.h5.a: java.lang.String b +com.google.android.material.snackbar.Snackbar$SnackbarLayout: void setBackground(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.location.services.LocationService: LocationService() +androidx.lifecycle.SavedStateHandleController: SavedStateHandleController(java.lang.String,androidx.lifecycle.SavedStateHandle) +okhttp3.internal.ws.RealWebSocket$Close +com.turingtechnologies.materialscrollbar.R$attr: int fontStyle +androidx.lifecycle.ProcessLifecycleOwner: androidx.lifecycle.LifecycleRegistry mRegistry +androidx.preference.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +com.tencent.bugly.CrashModule +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Imperial: int UnitType +com.google.android.material.R$styleable: int AppCompatTheme_windowFixedWidthMajor +androidx.preference.R$styleable: int AppCompatTheme_listPreferredItemPaddingStart +wangdaye.com.geometricweather.common.basic.models.weather.UV: java.lang.Integer getIndex() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.lang.String UVIndexText +com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context) +androidx.lifecycle.ViewModelProvider$OnRequeryFactory: ViewModelProvider$OnRequeryFactory() +james.adaptiveicon.R$attr: int fontStyle +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_visible +androidx.preference.R$styleable: int DialogPreference_negativeButtonText +androidx.appcompat.R$style: int Widget_AppCompat_ActivityChooserView +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: long serialVersionUID +com.tencent.bugly.crashreport.biz.b: long c(long) +okhttp3.logging.HttpLoggingInterceptor$Level: okhttp3.logging.HttpLoggingInterceptor$Level[] values() +androidx.appcompat.R$attr: int windowActionModeOverlay +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_pressed_holo_light +androidx.recyclerview.R$dimen: int item_touch_helper_swipe_escape_velocity +androidx.hilt.work.R$styleable: int FontFamily_fontProviderAuthority +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_toLeftOf +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_CompoundButton_CheckBox +io.reactivex.Observable: io.reactivex.Observable groupBy(io.reactivex.functions.Function) +android.didikee.donate.R$id: int showTitle +androidx.appcompat.R$attr: int homeLayout +com.turingtechnologies.materialscrollbar.R$attr: int viewInflaterClass +com.google.android.material.R$id: int contentPanel +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.baidu.location.e.l$b: com.baidu.location.e.l$b c +com.turingtechnologies.materialscrollbar.R$attr: int actionBarSplitStyle +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Today +com.google.android.material.navigation.NavigationView: NavigationView(android.content.Context) +wangdaye.com.geometricweather.R$attr: int switchPreferenceStyle +androidx.appcompat.R$styleable: int AppCompatTextView_android_textAppearance +wangdaye.com.geometricweather.R$layout: int container_main_hourly_trend_card +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCopyDrawable +com.tencent.bugly.crashreport.biz.UserInfoBean: int q +james.adaptiveicon.R$attr: int iconifiedByDefault +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder connectionSpecs(java.util.List) +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_CompactMenu +james.adaptiveicon.R$drawable: int notification_icon_background +james.adaptiveicon.R$style: int TextAppearance_Compat_Notification_Line2 +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType DeleteAll +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: ObservableTakeLastTimed$TakeLastTimedObserver(io.reactivex.Observer,long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,boolean) +androidx.appcompat.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +com.xw.repo.bubbleseekbar.R$color: int abc_tint_default +com.jaredrummler.android.colorpicker.R$attr: int ratingBarStyle +android.didikee.donate.R$styleable: int AppCompatTextView_autoSizeStepGranularity +wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getThunderstorm() +wangdaye.com.geometricweather.R$styleable: int Snackbar_snackbarStyle +wangdaye.com.geometricweather.R$layout: int container_main_pollen +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_visible +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge +com.tencent.bugly.crashreport.common.info.a: long R +androidx.drawerlayout.widget.DrawerLayout: void setScrimColor(int) +androidx.constraintlayout.widget.R$styleable: int Transform_android_elevation +android.didikee.donate.R$styleable: int MenuGroup_android_orderInCategory +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintRight_toRightOf +wangdaye.com.geometricweather.R$attr: int contentInsetEndWithActions +android.didikee.donate.R$id: int bottom +com.turingtechnologies.materialscrollbar.R$style: int Base_V21_Theme_AppCompat_Dialog +com.jaredrummler.android.colorpicker.R$style: int AlertDialog_AppCompat_Light +androidx.constraintlayout.widget.R$style: int ThemeOverlay_AppCompat_ActionBar +androidx.hilt.lifecycle.R$styleable: int[] FontFamily +androidx.appcompat.R$style: int TextAppearance_AppCompat_Caption +cyanogenmod.providers.CMSettings$Secure: java.lang.String QS_TILES +com.google.android.material.R$string: int mtrl_picker_navigate_to_year_description +io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: boolean isDisposed() +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_layout_width +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource) +androidx.appcompat.R$styleable: int ActionBar_itemPadding +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_NULL_MD5 +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs$MultiIndex: AtmoAuraQAResult$MultiDaysIndexs$MultiIndex() +wangdaye.com.geometricweather.common.ui.widgets.SwipeSwitchLayout: SwipeSwitchLayout(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.R$attr: int keyPositionType +androidx.constraintlayout.widget.R$id: int action_text +wangdaye.com.geometricweather.R$xml: int perference_unit +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getDatetime() +androidx.recyclerview.R$id: int notification_main_column +io.reactivex.Observable: java.lang.Object blockingLast(java.lang.Object) +wangdaye.com.geometricweather.R$id: int widget_day_week_temp_4 +androidx.lifecycle.LiveDataReactiveStreams: LiveDataReactiveStreams() +io.reactivex.internal.operators.observable.ObservableGroupBy$State: java.util.concurrent.atomic.AtomicBoolean once +androidx.fragment.R$layout: int notification_action wangdaye.com.geometricweather.R$string: int mtrl_picker_navigate_to_year_description -wangdaye.com.geometricweather.R$dimen: int notification_top_pad -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed: AccuDailyResult$DailyForecasts$Night$WindGust$Speed() -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceGroup_initialExpandedChildrenCount -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String j -androidx.appcompat.resources.R$attr: int alpha -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_119 -wangdaye.com.geometricweather.R$drawable: int notif_temp_36 -com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_divider_mtrl_alpha -okhttp3.logging.LoggingEventListener$Factory: okhttp3.EventListener create(okhttp3.Call) -com.google.android.material.transformation.ExpandableBehavior: ExpandableBehavior(android.content.Context,android.util.AttributeSet) -androidx.preference.R$styleable: int MenuGroup_android_menuCategory -androidx.appcompat.R$attr: int actionMenuTextColor -androidx.appcompat.R$style: int Widget_AppCompat_ActionBar_TabText -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean$ValueBean: java.util.Date from -androidx.lifecycle.EmptyActivityLifecycleCallbacks: EmptyActivityLifecycleCallbacks() -com.google.android.material.R$id: int header_title -com.google.android.material.R$attr: int textAppearanceHeadline4 -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance -androidx.constraintlayout.widget.R$styleable: int ActionBar_subtitleTextStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String value -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherSuccess(java.lang.Object) -wangdaye.com.geometricweather.R$attr: int actionBarTabStyle -android.didikee.donate.R$style: int Base_Widget_AppCompat_Spinner_Underlined -wangdaye.com.geometricweather.R$id: int dialog_time_setter_time_picker -io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: io.reactivex.Scheduler$Worker worker -androidx.lifecycle.extensions.R$styleable: int GradientColor_android_type -wangdaye.com.geometricweather.R$dimen: int widget_grid_1 -io.reactivex.Observable: io.reactivex.Observable debounce(io.reactivex.functions.Function) -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_rotation -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: void setIndices(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX) -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_DialogWhenLarge -cyanogenmod.externalviews.ExternalView: void onActivityResumed(android.app.Activity) -com.google.android.material.R$id: int design_menu_item_action_area -com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ListView_DropDown -wangdaye.com.geometricweather.R$layout: int activity_settings -com.google.android.material.circularreveal.CircularRevealGridLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) -wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large -com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow -androidx.preference.R$style: int Preference_DialogPreference -io.reactivex.internal.operators.observable.ObservableGroupBy$GroupByObserver: java.util.Map groups -james.adaptiveicon.R$styleable: int SearchView_queryBackground -cyanogenmod.app.CMContextConstants: java.lang.String CM_TELEPHONY_MANAGER_SERVICE -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float nighttimeIcePrecipitationProbability -androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyle -androidx.appcompat.R$attr: int theme -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSyncDuration -io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.SingleObserver) -androidx.lifecycle.extensions.R$id: int fragment_container_view_tag -io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: long serialVersionUID -cyanogenmod.providers.CMSettings$Secure: java.lang.String BUTTON_BACKLIGHT_TIMEOUT -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Widget_Button_Colored -okhttp3.internal.http2.Http2Writer: int maxDataLength() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past9Hours$Metric Metric -androidx.constraintlayout.motion.widget.MotionLayout: int getCurrentState() -okhttp3.OkHttpClient$1: okhttp3.internal.connection.StreamAllocation streamAllocation(okhttp3.Call) -androidx.legacy.coreutils.R$id: int actions -androidx.appcompat.R$attr: int trackTint -okio.GzipSource: java.util.zip.CRC32 crc -okhttp3.Cache$CacheRequestImpl: boolean done -io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onComplete() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice Ice +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String STYLE_THUMBNAIL +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void b(boolean) +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: void onSubscribe(io.reactivex.disposables.Disposable) +io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: org.reactivestreams.Subscription receiver +androidx.appcompat.widget.SearchView: int getInputType() +androidx.constraintlayout.widget.R$id: int up +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_arrow +android.didikee.donate.R$anim: R$anim() +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: FlowableOnBackpressureDrop$BackpressureDropSubscriber(org.reactivestreams.Subscriber,io.reactivex.functions.Consumer) +okhttp3.Dispatcher: void setMaxRequestsPerHost(int) +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_startColor +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_android_orientation +com.google.android.material.R$attr: int itemTextAppearanceActive +cyanogenmod.power.PerformanceManager: int PROFILE_BIAS_PERFORMANCE +com.google.android.material.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +com.turingtechnologies.materialscrollbar.R$id: int unlabeled +retrofit2.RequestBuilder: okhttp3.RequestBody body +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_WIND_SPEED +androidx.hilt.R$dimen: int notification_media_narrow_margin +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setSlingshotDistance(int) +androidx.fragment.R$id: int icon_group +io.reactivex.Observable: io.reactivex.Observable timeout0(long,java.util.concurrent.TimeUnit,io.reactivex.ObservableSource,io.reactivex.Scheduler) +androidx.appcompat.R$drawable: int btn_radio_off_mtrl +okhttp3.internal.http2.Http2Stream: int getId() +androidx.drawerlayout.R$layout +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Hint +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year +cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String ICON_URI +com.jaredrummler.android.colorpicker.ColorPreference: void setOnShowDialogListener(com.jaredrummler.android.colorpicker.ColorPreference$OnShowDialogListener) +com.turingtechnologies.materialscrollbar.R$layout: int mtrl_layout_snackbar +com.google.android.material.R$styleable: int MockView_mock_showLabel +com.google.android.material.R$string: int mtrl_exceed_max_badge_number_content_description +com.google.android.material.R$dimen: int mtrl_calendar_title_baseline_to_top +okhttp3.Response: java.lang.String message() +wangdaye.com.geometricweather.R$id: int item_weather_daily_overview_text +com.jaredrummler.android.colorpicker.R$attr: int goIcon +com.google.android.material.R$styleable: int Constraint_flow_maxElementsWrap +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionButtonStyle +androidx.appcompat.R$attr: int colorButtonNormal +com.xw.repo.bubbleseekbar.R$attr: int submitBackground +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintTop_toTopOf +com.google.android.material.floatingactionbutton.FloatingActionButton: void setVisibility(int) +com.google.android.material.R$dimen: int design_bottom_navigation_item_max_width +android.didikee.donate.R$drawable: int abc_btn_borderless_material +androidx.fragment.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$color: int mtrl_chip_close_icon_tint +com.github.rahatarmanahmed.cpv.R$attr: R$attr() +androidx.work.R$style: R$style() +wangdaye.com.geometricweather.R$id: int container_main_footer_editButton +wangdaye.com.geometricweather.R$animator: int weather_hail_1 +cyanogenmod.themes.IThemeService$Stub: int TRANSACTION_getLastThemeChangeRequestType +androidx.preference.R$anim: int abc_slide_in_top +wangdaye.com.geometricweather.R$attr: int minHeight +androidx.dynamicanimation.R$styleable: int[] FontFamilyFont +wangdaye.com.geometricweather.R$styleable: int Constraint_android_elevation +androidx.preference.R$dimen: int abc_search_view_preferred_height +androidx.work.R$dimen: int notification_action_icon_size +cyanogenmod.profiles.StreamSettings: StreamSettings(android.os.Parcel) +cyanogenmod.app.ICMStatusBarManager: void removeCustomTileWithTag(java.lang.String,java.lang.String,int,int) +com.bumptech.glide.integration.okhttp.R$style: int Widget_Compat_NotificationActionText +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Dialog_MinWidth +androidx.swiperefreshlayout.R$attr: int alpha +wangdaye.com.geometricweather.db.entities.WeatherEntity: void resetAlertEntityList() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl mImpl +okhttp3.internal.http1.Http1Codec$FixedLengthSource: okhttp3.internal.http1.Http1Codec this$0 +wangdaye.com.geometricweather.R$styleable: int[] SeekBarPreference +wangdaye.com.geometricweather.R$attr: int layout_anchor +wangdaye.com.geometricweather.R$drawable: int notif_temp_97 +okhttp3.RealCall: okhttp3.Response getResponseWithInterceptorChain() +cyanogenmod.weather.CMWeatherManager$1$1 +com.google.android.material.R$id: int left +okhttp3.internal.cache.DiskLruCache: void delete() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircle +com.jaredrummler.android.colorpicker.R$styleable: int Preference_dependency +android.didikee.donate.R$attr: int actionBarDivider +com.turingtechnologies.materialscrollbar.R$attr: int helperTextTextAppearance +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_gradientRadius +io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: java.lang.Object poll() +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemTextAppearanceActive(int) +wangdaye.com.geometricweather.R$plurals: R$plurals() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String Link +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String TODAYS_HIGH_TEMPERATURE +okhttp3.internal.Util: java.util.concurrent.ThreadFactory threadFactory(java.lang.String,boolean) +androidx.hilt.work.R$layout: int notification_template_part_chronometer +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1 +com.google.android.material.internal.CheckableImageButton$SavedState +okhttp3.internal.http1.Http1Codec$UnknownLengthSource: long read(okio.Buffer,long) +com.google.android.material.R$id: int material_clock_period_am_button +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$MultiDaysIndexs: AtmoAuraQAResult$MultiDaysIndexs() +wangdaye.com.geometricweather.R$drawable: int abc_textfield_search_activated_mtrl_alpha +okhttp3.internal.tls.DistinguishedNameParser: char[] chars +androidx.constraintlayout.widget.R$styleable: int CustomAttribute_customStringValue +io.reactivex.Observable: io.reactivex.Maybe reduce(io.reactivex.functions.BiFunction) +retrofit2.BuiltInConverters: BuiltInConverters() +androidx.constraintlayout.widget.R$attr: int transitionPathRotate +androidx.constraintlayout.widget.R$attr: int saturation +com.jaredrummler.android.colorpicker.R$attr: int textAppearanceListItemSecondary +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderCerts +cyanogenmod.externalviews.IExternalViewProviderFactory: android.os.IBinder createExternalView(android.os.Bundle) +com.jaredrummler.android.colorpicker.R$attr: int fontProviderFetchTimeout +james.adaptiveicon.R$styleable: int ActionMode_closeItemLayout +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.lang.String getTagName(android.content.Context) +com.google.android.material.appbar.AppBarLayout: android.graphics.drawable.Drawable getStatusBarForeground() +com.tencent.bugly.BuglyStrategy$a: int CRASHTYPE_JAVA_CATCH +wangdaye.com.geometricweather.R$string: int week_4 +com.tencent.bugly.proguard.ai: void a(com.tencent.bugly.proguard.j) +retrofit2.RequestBuilder: void addPart(okhttp3.MultipartBody$Part) +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_SearchView +cyanogenmod.themes.ThemeChangeRequest$RequestType: cyanogenmod.themes.ThemeChangeRequest$RequestType[] $VALUES +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial: java.lang.String Unit +cyanogenmod.weather.CMWeatherManager$RequestStatus: CMWeatherManager$RequestStatus() +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipSurfaceColor +androidx.constraintlayout.widget.R$attr: int colorAccent +android.didikee.donate.R$style: int Theme_AppCompat_DayNight_DarkActionBar +com.tencent.bugly.proguard.am: int a +okio.RealBufferedSource: okio.Timeout timeout() +androidx.appcompat.resources.R$styleable: int GradientColor_android_centerX +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: void onComplete() +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable +okhttp3.internal.cache.DiskLruCache$Entry: okhttp3.internal.cache.DiskLruCache$Editor currentEditor +com.bumptech.glide.integration.okhttp.R$dimen: int notification_content_margin_start +okhttp3.internal.http2.Http2Codec: okhttp3.Protocol protocol +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: ObservableMergeWithMaybe$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver) +com.google.android.material.R$xml: int standalone_badge_gravity_bottom_end +cyanogenmod.alarmclock.ClockContract$AlarmsColumns +com.bumptech.glide.integration.okhttp.R$integer +wangdaye.com.geometricweather.R$string: int feedback_location_list_cannot_be_null +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$DewPoint$Metric +com.google.android.material.circularreveal.CircularRevealLinearLayout: CircularRevealLinearLayout(android.content.Context) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_searchViewStyle +androidx.appcompat.R$style: int TextAppearance_AppCompat_Large_Inverse +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_logo +com.google.android.material.R$style: int Base_V22_Theme_AppCompat +com.google.android.material.R$styleable: int SnackbarLayout_elevation +com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface +com.google.android.material.appbar.CollapsingToolbarLayout: int getExpandedTitleMarginBottom() +james.adaptiveicon.R$styleable: int AppCompatTheme_borderlessButtonStyle +com.google.android.material.textfield.MaterialAutoCompleteTextView +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night: double HoursOfRain +androidx.activity.R$id: int title +com.tencent.bugly.proguard.v: void b(long) +com.google.android.material.R$styleable: int MaterialButton_android_insetLeft +wangdaye.com.geometricweather.R$color: int lightPrimary_5 +wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_pressed_alpha +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: long serialVersionUID +androidx.transition.R$id: int ghost_view +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit MB +com.github.rahatarmanahmed.cpv.R: R() +com.google.android.material.R$attr: int scrimBackground +androidx.fragment.R$id: int notification_background +wangdaye.com.geometricweather.R$attr: int textAppearanceSearchResultSubtitle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Temperature$Metric: int UnitType +retrofit2.Retrofit: java.util.List callAdapterFactories() +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_prefixTextAppearance +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$4 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: CaiYunMainlyResult$ForecastDailyBean() +androidx.coordinatorlayout.R$id: int accessibility_custom_action_6 +com.turingtechnologies.materialscrollbar.R$dimen: int disabled_alpha_material_dark +cyanogenmod.app.Profile$NotificationLightMode +com.jaredrummler.android.colorpicker.R$styleable: int ButtonBarLayout_allowStacking +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language UNSIMPLIFIED_CHINESE +com.jaredrummler.android.colorpicker.R$attr: int tintMode +androidx.activity.R$id: int tag_accessibility_actions +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void drain() +com.turingtechnologies.materialscrollbar.R$string: int abc_action_bar_home_description +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: wangdaye.com.geometricweather.db.entities.DaoSession daoSession +wangdaye.com.geometricweather.R$string: int abc_menu_delete_shortcut_label +cyanogenmod.app.Profile: int mProfileType +okhttp3.HttpUrl$Builder: boolean isDot(java.lang.String) +com.bumptech.glide.R$styleable: int FontFamilyFont_android_fontStyle +androidx.constraintlayout.widget.R$color: int button_material_dark +androidx.lifecycle.ProcessLifecycleOwnerInitializer: ProcessLifecycleOwnerInitializer() +wangdaye.com.geometricweather.R$animator: int weather_wind_1 +androidx.viewpager.R$dimen: int notification_main_column_padding_top +james.adaptiveicon.R$attr: int actionBarWidgetTheme +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_checkable +androidx.appcompat.resources.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.work.R$id: int text2 +androidx.appcompat.widget.AppCompatSpinner$SavedState: android.os.Parcelable$Creator CREATOR +com.google.android.material.R$style: int Base_TextAppearance_AppCompat +androidx.loader.R$dimen: R$dimen() +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Spinner +com.google.android.material.slider.BaseSlider: void setFocusedThumbIndex(int) +com.jaredrummler.android.colorpicker.R$styleable: int[] SearchView +io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: long serialVersionUID +androidx.preference.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +androidx.constraintlayout.widget.R$id: int chronometer +retrofit2.RequestBuilder: okhttp3.Request$Builder requestBuilder +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.rx.RxTransaction rxTxPlain +com.github.rahatarmanahmed.cpv.CircularProgressView$1: void onAnimationUpdate(android.animation.ValueAnimator) +wangdaye.com.geometricweather.R$id: int activity_widget_config_clockFontTitle +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object readEntity(android.database.Cursor,int) +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_alterWindow +com.jaredrummler.android.colorpicker.R$style: int cpv_ColorPickerViewStyle +androidx.appcompat.R$dimen: int hint_pressed_alpha_material_light +androidx.coordinatorlayout.R$id: int accessibility_custom_action_4 +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_text_size +okio.Buffer: okio.Buffer$UnsafeCursor readAndWriteUnsafe() +com.google.android.material.R$attr: int ratingBarStyleSmall +com.google.android.material.R$color: int dim_foreground_material_dark +com.xw.repo.bubbleseekbar.R$attr: int background +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: AccuCurrentResult$Past24HourTemperatureDeparture() +com.google.android.material.R$attr: int listChoiceBackgroundIndicator +com.bumptech.glide.integration.okhttp.R$drawable: int notify_panel_notification_icon_bg +com.jaredrummler.android.colorpicker.R$drawable: int cpv_alpha +wangdaye.com.geometricweather.R$drawable: int notif_temp_58 +androidx.transition.R$dimen: int compat_button_inset_vertical_material +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum Minimum +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun: java.lang.Long rise +com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +androidx.constraintlayout.widget.R$style: int AlertDialog_AppCompat +com.tencent.bugly.crashreport.BuglyLog: BuglyLog() +com.google.android.material.R$style: int Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: java.lang.String color +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindSpeed +androidx.work.ArrayCreatingInputMerger +com.google.android.material.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.R$dimen: int abc_search_view_preferred_width +okhttp3.Cache$1: Cache$1(okhttp3.Cache) +cyanogenmod.app.ThemeComponent: cyanogenmod.app.ThemeComponent FONT +com.tencent.bugly.proguard.i: double a(double,int,boolean) +io.reactivex.internal.disposables.DisposableHelper: boolean isDisposed(io.reactivex.disposables.Disposable) +retrofit2.Utils$ParameterizedTypeImpl: java.lang.reflect.Type ownerType +androidx.preference.R$styleable: int TextAppearance_android_typeface +com.google.android.material.R$color: int mtrl_textinput_focused_box_stroke_color +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult: AccuDailyResult() +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginLeft +com.google.android.material.R$attr: int layout_constraintGuide_begin +okhttp3.internal.http.HttpHeaders +com.google.gson.stream.JsonScope: int CLOSED +okhttp3.internal.http2.Hpack: int PREFIX_7_BITS +wangdaye.com.geometricweather.R$dimen: int abc_text_size_menu_material +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_scaleY +cyanogenmod.providers.CMSettings$System: java.lang.String CALL_RECORDING_FORMAT +wangdaye.com.geometricweather.R$dimen: int share_view_height +okhttp3.internal.tls.OkHostnameVerifier +okhttp3.internal.http2.Http2Stream$FramingSink: boolean $assertionsDisabled +wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingEnd +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit HPA +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer uvIndex +james.adaptiveicon.R$attr: int textAppearanceListItem +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: android.content.Context a(com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler) +androidx.hilt.work.R$attr +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose[] a +wangdaye.com.geometricweather.R$dimen: int abc_dialog_min_width_major +cyanogenmod.themes.IThemeService$Stub$Proxy: void registerThemeProcessingListener(cyanogenmod.themes.IThemeProcessingListener) +androidx.work.impl.WorkDatabase +android.didikee.donate.R$style: int TextAppearance_AppCompat_Body2 +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegment(java.lang.String) +james.adaptiveicon.R$styleable: int ActionBar_itemPadding +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX getSpeed() +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_padding_top_material +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.amap.api.location.CoordinateConverter$CoordType: com.amap.api.location.CoordinateConverter$CoordType SOSOMAP +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ENGLISH_AU +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +wangdaye.com.geometricweather.R$id: int light +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA +androidx.preference.R$layout: int preference_widget_switch +androidx.constraintlayout.widget.R$id: int parent +wangdaye.com.geometricweather.R$string: int key_widget_clock_day_vertical +androidx.preference.R$style: int Widget_AppCompat_ActionBar_TabView +retrofit2.ParameterHandler$RelativeUrl: ParameterHandler$RelativeUrl(java.lang.reflect.Method,int) +io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.vectordrawable.R$styleable: int GradientColor_android_endX +androidx.appcompat.R$anim: int btn_checkbox_to_checked_box_inner_merged_animation +com.google.android.material.R$dimen: int abc_floating_window_z +okhttp3.internal.tls.BasicTrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) +android.didikee.donate.R$attr: int trackTint +wangdaye.com.geometricweather.R$attr: int drawableLeftCompat +cyanogenmod.hardware.ICMHardwareService +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_firstHorizontalStyle +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getRealFeelTemperature() +androidx.appcompat.R$id: int accessibility_custom_action_28 +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: org.reactivestreams.Subscriber downstream +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView +androidx.hilt.lifecycle.R$layout: int notification_template_custom_big +androidx.constraintlayout.widget.R$attr: int defaultState +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: void onComplete() +androidx.constraintlayout.widget.R$string: int abc_capital_on +com.tencent.bugly.crashreport.crash.a: boolean d +okhttp3.OkHttpClient$1: boolean connectionBecameIdle(okhttp3.ConnectionPool,okhttp3.internal.connection.RealConnection) +androidx.coordinatorlayout.R$styleable: int FontFamilyFont_android_ttcIndex +okhttp3.internal.http2.Http2Reader$ContinuationSource: Http2Reader$ContinuationSource(okio.BufferedSource) +okio.Segment: okio.Segment prev +androidx.preference.R$style: int Widget_AppCompat_Light_ActionButton +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void createTable(org.greenrobot.greendao.database.Database,boolean) +com.google.android.material.chip.Chip: Chip(android.content.Context) +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_padding_vertical +com.turingtechnologies.materialscrollbar.R$attr: int windowFixedWidthMajor +androidx.lifecycle.AbstractSavedStateViewModelFactory: void onRequery(androidx.lifecycle.ViewModel) +com.jaredrummler.android.colorpicker.R$attr: int summary +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: int bufferSize +androidx.appcompat.R$style: int Base_Widget_AppCompat_PopupMenu +androidx.preference.R$attr: int checkBoxPreferenceStyle +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver: int STATE_INACTIVE +com.google.android.material.R$layout: int abc_alert_dialog_button_bar_material +wangdaye.com.geometricweather.remoteviews.config.WeekWidgetConfigActivity: WeekWidgetConfigActivity() +androidx.cardview.widget.CardView: float getMaxCardElevation() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatSeekBar_android_thumb +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: void setContent(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean) +com.google.android.material.R$attr: int tabIndicatorFullWidth +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean a(java.lang.String,boolean) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String getBrandId() +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_overflow_padding_end_material +io.reactivex.internal.operators.observable.ObservableConcatWithSingle$ConcatWithObserver: void onSuccess(java.lang.Object) +james.adaptiveicon.R$attr: int listPreferredItemHeightLarge +wangdaye.com.geometricweather.R$string: int settings_title_permanent_service +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_Dialog_MinWidth +androidx.preference.R$anim: int abc_slide_out_top +com.google.android.material.R$styleable: int AppCompatTheme_listPopupWindowStyle +wangdaye.com.geometricweather.R$string: int humidity +androidx.preference.R$styleable: int[] PopupWindowBackgroundState +okhttp3.Request: okhttp3.HttpUrl url +retrofit2.ParameterHandler$QueryMap +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial Imperial +androidx.lifecycle.ViewModelProviders$DefaultFactory: ViewModelProviders$DefaultFactory(android.app.Application) +androidx.lifecycle.extensions.R$layout: int notification_action_tombstone +androidx.appcompat.widget.ActionBarContextView: java.lang.CharSequence getSubtitle() +androidx.vectordrawable.animated.R$id: int accessibility_action_clickable_span +com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_color +com.jaredrummler.android.colorpicker.R$attr: int preferenceStyle +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.vectordrawable.R$styleable: int GradientColor_android_endColor +androidx.transition.R$drawable: R$drawable() +com.google.android.material.R$attr: int chipEndPadding +androidx.lifecycle.ComputableLiveData: java.lang.Runnable mInvalidationRunnable +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setAqi(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontStyle +androidx.appcompat.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +okio.Options: void buildTrieRecursive(long,okio.Buffer,int,java.util.List,int,int,java.util.List) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Metric Metric +android.didikee.donate.R$styleable: int SwitchCompat_trackTintMode +com.google.android.gms.common.Feature +com.jaredrummler.android.colorpicker.R$color: int material_grey_800 +okio.Okio$3: void close() +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void registerCallback(cyanogenmod.externalviews.IKeyguardExternalViewCallbacks) +androidx.core.graphics.drawable.IconCompat: IconCompat() +com.jaredrummler.android.colorpicker.R$attr: int buttonTint +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayout_android_keyboardNavigationCluster +androidx.preference.R$styleable: int AppCompatTheme_editTextBackground +androidx.work.R$style: int TextAppearance_Compat_Notification_Info +james.adaptiveicon.R$styleable: int FontFamily_fontProviderFetchTimeout +wangdaye.com.geometricweather.R$string: int resident_location +androidx.vectordrawable.animated.R$id: int tag_accessibility_pane_title +wangdaye.com.geometricweather.common.basic.models.weather.Base: long timeStamp +com.xw.repo.bubbleseekbar.R$attr: int actionModeCloseDrawable +okhttp3.internal.tls.BasicCertificateChainCleaner: boolean verifySignature(java.security.cert.X509Certificate,java.security.cert.X509Certificate) +com.tencent.bugly.crashreport.R +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_indeterminateProgressStyle +com.google.android.material.R$styleable: int FloatingActionButton_fabSize +com.google.android.material.R$string: int appbar_scrolling_view_behavior +com.xw.repo.bubbleseekbar.R$dimen: int abc_text_size_menu_header_material +com.amap.api.location.APSService: void onCreate(android.content.Context) +android.didikee.donate.R$styleable: int[] Spinner +cyanogenmod.weatherservice.IWeatherProviderService$Stub: android.os.IBinder asBinder() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_text_size_subtitle_material_toolbar +wangdaye.com.geometricweather.remoteviews.config.Hilt_MultiCityWidgetConfigActivity: Hilt_MultiCityWidgetConfigActivity() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: float getAlpha() +wangdaye.com.geometricweather.R$styleable: int Toolbar_logo +com.google.android.material.R$attr: int number +okhttp3.TlsVersion: okhttp3.TlsVersion valueOf(java.lang.String) +androidx.hilt.R$style: int Widget_Compat_NotificationActionContainer +com.xw.repo.bubbleseekbar.R$styleable +androidx.appcompat.R$layout: int notification_template_part_chronometer +james.adaptiveicon.R$drawable: int abc_dialog_material_background +okhttp3.HttpUrl: java.lang.String canonicalize(java.lang.String,java.lang.String,boolean,boolean,boolean,boolean) +com.jaredrummler.android.colorpicker.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.R$attr: int buttonCompat +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Shortcut +androidx.swiperefreshlayout.R$layout: int notification_template_custom_big +james.adaptiveicon.R$attr: int popupTheme +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_prefixTextColor +com.tencent.bugly.crashreport.common.strategy.a: boolean b() +androidx.fragment.app.BackStackRecord: void setOnStartPostponedListener(androidx.fragment.app.Fragment$OnStartEnterTransitionListener) +com.jaredrummler.android.colorpicker.R$layout: int abc_tooltip +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_temp_4 +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_NoActionBar_Bridge +androidx.constraintlayout.widget.R$attr: int backgroundTint +com.jaredrummler.android.colorpicker.R$string: int abc_activitychooserview_choose_application +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_seek_by_section +androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_autoSizeTextType +androidx.appcompat.R$attr: int track +androidx.preference.R$layout: int select_dialog_item_material +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_contentInsetEndWithActions +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Time +com.google.android.material.R$id: int add +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_icon_text_spacing +androidx.fragment.R$layout +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum Maximum +androidx.preference.R$styleable: int AppCompatTheme_actionModeCutDrawable +androidx.appcompat.widget.ActionBarContainer: ActionBarContainer(android.content.Context,android.util.AttributeSet) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_listMenuViewStyle +androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_rotationX +com.google.android.gms.base.R$drawable: int common_google_signin_btn_icon_light +wangdaye.com.geometricweather.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void dispose() +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_CompoundButton_RadioButton +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: long getLtoDownloadInterval() +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_titleMarginBottom +wangdaye.com.geometricweather.background.service.CMWeatherProviderService +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_backgroundTint +com.xw.repo.bubbleseekbar.R$dimen: int abc_search_view_preferred_width +com.google.android.material.textfield.TextInputEditText +io.reactivex.internal.observers.ForEachWhileObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_RatingBar_Indicator +androidx.appcompat.widget.ActivityChooserModel +com.google.android.material.R$interpolator: int mtrl_linear +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme +cyanogenmod.externalviews.ExternalViewProperties +io.reactivex.Observable: io.reactivex.Observable concatMapIterable(io.reactivex.functions.Function) +com.turingtechnologies.materialscrollbar.R$attr: int colorControlNormal +com.xw.repo.bubbleseekbar.R$attr: int switchPadding +cyanogenmod.providers.CMSettings$Secure: int getInt(android.content.ContentResolver,java.lang.String,int) +com.jaredrummler.android.colorpicker.R$attr: int colorAccent +okhttp3.CacheControl: java.lang.String toString() +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: void dispose() +okio.InflaterSource: void close() +james.adaptiveicon.R$anim: int abc_slide_in_top +okhttp3.MultipartBody: byte[] COLONSPACE +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setDefense(java.util.List) +wangdaye.com.geometricweather.R$styleable: int ListPreference_android_entries +okhttp3.Request$Builder: okhttp3.Request$Builder delete(okhttp3.RequestBody) +okhttp3.FormBody +androidx.activity.R$id: int info +retrofit2.ParameterHandler$Field: retrofit2.Converter valueConverter +com.google.gson.internal.LinkedTreeMap: void clear() +androidx.preference.R$id: int buttonPanel +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeFindDrawable +wangdaye.com.geometricweather.R$styleable: int Toolbar_contentInsetEndWithActions +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay valueOf(java.lang.String) +wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: AlertEntityDao$Properties() +androidx.swiperefreshlayout.R$style: R$style() +androidx.fragment.R$id: int text2 +wangdaye.com.geometricweather.common.basic.models.weather.UV: int UV_INDEX_MIDDLE +wangdaye.com.geometricweather.R$dimen: int touch_rise_z +androidx.appcompat.R$attr: int thickness +androidx.constraintlayout.widget.R$dimen: int abc_dialog_padding_material +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: float SulfurDioxide +com.google.android.material.R$styleable: int ActionBarLayout_android_layout_gravity +androidx.constraintlayout.widget.Guideline: void setGuidelineBegin(int) +androidx.appcompat.widget.AppCompatCheckBox: void setSupportButtonTintList(android.content.res.ColorStateList) +androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat_Light +androidx.appcompat.R$attr: int checkedTextViewStyle +wangdaye.com.geometricweather.R$styleable: int SwitchImageButton_drawable_res_off +james.adaptiveicon.R$styleable: int FontFamilyFont_android_fontVariationSettings +androidx.constraintlayout.widget.R$attr: int waveVariesBy +wangdaye.com.geometricweather.R$dimen: int abc_dialog_list_padding_bottom_no_buttons +wangdaye.com.geometricweather.R$drawable: int shortcuts_thunder +cyanogenmod.content.Intent: java.lang.String CATEGORY_THEME_PACKAGE_INSTALLED_STATE_CHANGE +wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String country +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide +wangdaye.com.geometricweather.R$drawable: int notif_temp_55 +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth +androidx.hilt.work.R$id: int chronometer +androidx.preference.R$styleable: int PreferenceTheme_seekBarPreferenceStyle +cyanogenmod.util.ColorUtils$1: ColorUtils$1() +okio.ByteString: int compareTo(okio.ByteString) +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_NoActionBar +android.support.v4.app.INotificationSideChannel$Stub: android.os.IBinder asBinder() +com.tencent.bugly.proguard.u: boolean a(java.lang.Runnable,boolean) +androidx.recyclerview.R$attr: int recyclerViewStyle +androidx.appcompat.R$attr: int defaultQueryHint +com.google.android.material.textfield.TextInputLayout: void setPrefixTextColor(android.content.res.ColorStateList) +androidx.preference.R$styleable: int MenuView_android_horizontalDivider +androidx.appcompat.R$id: int accessibility_custom_action_27 +io.reactivex.internal.operators.observable.ObservableGroupBy$State +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dark +okhttp3.internal.http.RealInterceptorChain: java.util.List interceptors +androidx.hilt.R$anim: R$anim() +com.tencent.bugly.proguard.q: int b +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getScaleX() +james.adaptiveicon.R$attr: int actionModeBackground +androidx.swiperefreshlayout.R$id: int tag_accessibility_actions +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int HIDE_NOTIFICATION_STATE +wangdaye.com.geometricweather.common.basic.models.weather.Daily: boolean isToday(java.util.TimeZone) +com.turingtechnologies.materialscrollbar.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +wangdaye.com.geometricweather.R$styleable: int ThemeEnforcement_enforceTextAppearance +com.google.android.material.R$bool: int abc_allow_stacked_button_bar +androidx.constraintlayout.widget.R$layout: int notification_action +androidx.constraintlayout.widget.R$styleable: int SearchView_iconifiedByDefault +okio.RealBufferedSource: okio.Source source +james.adaptiveicon.R$style: int Base_Widget_AppCompat_SearchView +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_attributeName +wangdaye.com.geometricweather.R$string: int common_google_play_services_install_text +com.turingtechnologies.materialscrollbar.R$styleable: int View_android_theme +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar +com.turingtechnologies.materialscrollbar.R$styleable: int[] CoordinatorLayout +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_updatesContinuously +androidx.appcompat.widget.AppCompatSeekBar: AppCompatSeekBar(android.content.Context,android.util.AttributeSet,int) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintLeft_toLeftOf +com.xw.repo.bubbleseekbar.R$style: int ThemeOverlay_AppCompat_Dark_ActionBar +com.google.android.material.R$attr: int haloRadius +com.google.android.material.R$dimen: int material_emphasis_medium +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean content +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_default_padding_end_material +okhttp3.internal.http2.Http2Codec: okhttp3.Response$Builder readHttp2HeadersList(okhttp3.Headers,okhttp3.Protocol) +wangdaye.com.geometricweather.R$drawable: int notif_temp_20 +okhttp3.Response$Builder: okhttp3.Response$Builder networkResponse(okhttp3.Response) +androidx.appcompat.R$drawable: int abc_list_divider_material +androidx.coordinatorlayout.R$id: int tag_unhandled_key_event_manager +androidx.lifecycle.extensions.R$attr: int fontVariationSettings +androidx.dynamicanimation.R$styleable: int GradientColorItem_android_color +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property Pm10 +com.google.android.material.bottomnavigation.BottomNavigationView: void setItemIconTintList(android.content.res.ColorStateList) +android.didikee.donate.R$id: int right_side +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_behavior +androidx.loader.R$id: int action_divider +cyanogenmod.externalviews.KeyguardExternalView$8: void run() +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_transformPivotY +androidx.appcompat.R$id: int submit_area +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.lang.String getPubTime() +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView: AbsChartItemView(android.content.Context) +androidx.preference.R$styleable: int GradientColor_android_startColor +androidx.appcompat.R$interpolator: R$interpolator() +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_android_layout +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Editor edit(java.lang.String) +cyanogenmod.app.LiveLockScreenManager: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +androidx.constraintlayout.motion.widget.MotionLayout: java.util.ArrayList getDefinedTransitions() +androidx.constraintlayout.widget.R$layout: int abc_cascading_menu_item_layout +androidx.constraintlayout.widget.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +androidx.preference.R$styleable: int[] RecycleListView +cyanogenmod.weather.CMWeatherManager: java.util.Map mLookupNameRequestListeners +com.google.android.material.circularreveal.CircularRevealFrameLayout com.google.android.material.R$attr: int cardPreventCornerOverlap -androidx.fragment.app.FragmentTabHost: FragmentTabHost(android.content.Context,android.util.AttributeSet) -androidx.appcompat.R$style: int RtlOverlay_DialogWindowTitle_AppCompat -com.turingtechnologies.materialscrollbar.R$anim: int abc_fade_out -wangdaye.com.geometricweather.R$layout: int widget_day_vertical -androidx.legacy.coreutils.R$color: R$color() -com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_FloatingActionButton -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_rotationX -okhttp3.Interceptor$Chain: int writeTimeoutMillis() -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust: AccuDailyResult$DailyForecasts$Day$WindGust() -cyanogenmod.externalviews.IExternalViewProvider -com.amap.api.fence.PoiItem: PoiItem(android.os.Parcel) -wangdaye.com.geometricweather.remoteviews.config.Hilt_ClockDayHorizontalWidgetConfigActivity -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult_Subtitle -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedNoLast: void complete() -wangdaye.com.geometricweather.db.entities.LocationEntity: boolean getCurrentPosition() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +retrofit2.OkHttpCall: retrofit2.RequestFactory requestFactory +com.google.android.material.R$style: int TextAppearance_Design_CollapsingToolbar_Expanded +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_firstHorizontalStyle +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindTitle +androidx.coordinatorlayout.R$id: int accessibility_action_clickable_span +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Display4 +androidx.constraintlayout.widget.R$id: int notification_background +com.jaredrummler.android.colorpicker.R$styleable: int[] ActionMode +androidx.appcompat.resources.R$dimen: int notification_small_icon_size_as_large +com.jaredrummler.android.colorpicker.R$id: int shades_layout +wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle +androidx.constraintlayout.widget.R$attr: int subtitleTextStyle +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String _ID +com.google.android.material.R$styleable: int TextInputLayout_boxCornerRadiusBottomEnd +com.tencent.bugly.proguard.w: boolean c() +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getNighttimeWindChillTemperature() +com.google.android.material.R$dimen: int mtrl_badge_text_horizontal_edge_offset +retrofit2.ParameterHandler$HeaderMap: void apply(retrofit2.RequestBuilder,java.util.Map) +wangdaye.com.geometricweather.R$color: int colorTextContent_dark +androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int RecyclerView_fastScrollHorizontalThumbDrawable +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: int size +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: boolean isDisposed() +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_NOTIF_COUNT +androidx.swiperefreshlayout.R$drawable: int notification_bg_normal_pressed +com.google.android.material.R$id: int text +wangdaye.com.geometricweather.R$styleable: int Transition_pathMotionArc +james.adaptiveicon.R$color: int abc_btn_colored_borderless_text_material +android.didikee.donate.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title +androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setDropDownBackgroundResource(int) +com.google.android.material.R$styleable: int TextInputLayout_endIconContentDescription +okhttp3.internal.http2.Hpack$Reader: void readLiteralHeaderWithoutIndexingNewName() +androidx.constraintlayout.widget.R$dimen: int notification_content_margin_start +cyanogenmod.weather.ICMWeatherManager$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionMode +com.amap.api.fence.GeoFenceClient: void addGeoFence(java.lang.String,java.lang.String,java.lang.String,int,java.lang.String) +com.tencent.bugly.proguard.x: boolean b +androidx.preference.R$style: int Base_Widget_AppCompat_ImageButton +com.google.android.material.behavior.SwipeDismissBehavior: SwipeDismissBehavior() +wangdaye.com.geometricweather.R$drawable: int shortcuts_clear_night_foreground +okhttp3.internal.http2.Http2Codec: okio.Sink createRequestBody(okhttp3.Request,long) +androidx.coordinatorlayout.R$id: int blocking +cyanogenmod.app.Profile: java.util.Map connections +com.google.android.material.card.MaterialCardView: void setCheckedIconSizeResource(int) +wangdaye.com.geometricweather.common.basic.models.options.appearance.UIStyle: java.lang.String styleId +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_TabBar +com.tencent.bugly.crashreport.CrashReport: boolean setJavascriptMonitor(android.webkit.WebView,boolean,boolean) +com.google.android.material.R$styleable: int View_android_focusable +wangdaye.com.geometricweather.R$color: int colorRootDark_light +wangdaye.com.geometricweather.R$styleable: int ImageFilterView_round +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_3 +wangdaye.com.geometricweather.R$id: int controller +okio.Buffer: okio.Buffer$UnsafeCursor readAndWriteUnsafe(okio.Buffer$UnsafeCursor) +androidx.cardview.R$attr: int cardCornerRadius +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String s +okhttp3.OkHttpClient$Builder: okhttp3.OkHttpClient$Builder addNetworkInterceptor(okhttp3.Interceptor) +com.tencent.bugly.proguard.ak: int k +androidx.coordinatorlayout.R$id: int tag_accessibility_heading +androidx.constraintlayout.widget.R$id: int easeIn +android.didikee.donate.R$style: int Widget_AppCompat_Light_SearchView +wangdaye.com.geometricweather.R$dimen: int mtrl_extended_fab_start_padding +com.google.android.material.R$attr: int queryBackground +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: int getStatus() +okhttp3.internal.http1.Http1Codec$ChunkedSource +com.google.android.material.R$styleable: int Constraint_transitionEasing +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture$Imperial Imperial +com.google.android.material.R$style: int Widget_Support_CoordinatorLayout +androidx.customview.R$color +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintVertical_chainStyle +com.google.android.material.R$attr: int collapseIcon +io.reactivex.internal.schedulers.ScheduledRunnable +androidx.activity.R$layout: int notification_action_tombstone +io.reactivex.BackpressureStrategy: io.reactivex.BackpressureStrategy valueOf(java.lang.String) +okhttp3.Cache: void trackConditionalCacheHit() +okhttp3.internal.http2.Http2Stream: boolean closeInternal(okhttp3.internal.http2.ErrorCode) +androidx.lifecycle.LiveData$LifecycleBoundObserver: boolean isAttachedTo(androidx.lifecycle.LifecycleOwner) +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Light +androidx.coordinatorlayout.R$style: int TextAppearance_Compat_Notification_Info +android.didikee.donate.R$styleable: int MenuItem_alphabeticModifiers +okhttp3.FormBody: int size() +com.bumptech.glide.R$id: int action_text +com.amap.api.location.AMapLocationClientOption: void setOpenAlwaysScanWifi(boolean) +okio.Segment: okio.Segment split(int) +androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityPaused(android.app.Activity) +androidx.preference.R$style: int TextAppearance_AppCompat_Widget_TextView_SpinnerItem +com.baidu.location.indoor.mapversion.c.c$b +wangdaye.com.geometricweather.R$id: int center_vertical +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_switchMinWidth +com.google.android.material.R$attr: int motionDebug +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit +com.jaredrummler.android.colorpicker.R$id: int add +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_switchMinWidth +androidx.constraintlayout.helper.widget.Flow: void setPaddingLeft(int) +cyanogenmod.app.IPartnerInterface$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +com.jaredrummler.android.colorpicker.R$attr: int activityChooserViewStyle +cyanogenmod.providers.CMSettings$NameValueCache: java.lang.String[] SELECT_VALUE +com.bumptech.glide.load.engine.DecodeJob$RunReason: com.bumptech.glide.load.engine.DecodeJob$RunReason valueOf(java.lang.String) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableTop +wangdaye.com.geometricweather.R$attr: int materialTimePickerTheme +com.google.android.material.R$attr: int startIconTintMode +com.turingtechnologies.materialscrollbar.R$styleable: int GradientColor_android_endX +androidx.constraintlayout.widget.R$id: int dragEnd +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_textColorSearchUrl +androidx.preference.R$style: int Base_Widget_AppCompat_Button_Colored +com.google.android.material.R$styleable: int Chip_chipCornerRadius +com.turingtechnologies.materialscrollbar.R$styleable: int MenuItem_android_checked +wangdaye.com.geometricweather.R$styleable: int PreferenceTheme_preferenceTheme +okhttp3.internal.http2.Http2Connection: java.util.concurrent.ScheduledExecutorService writerExecutor +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: java.lang.String sunSet +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.ChineseCityEntity,int) +androidx.core.R$styleable: int GradientColor_android_endY +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_23 +com.google.android.material.slider.RangeSlider: int getTrackHeight() +androidx.appcompat.R$styleable: int AppCompatTheme_panelMenuListTheme +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +com.google.android.material.R$styleable: int Constraint_android_transformPivotX +androidx.drawerlayout.R$id: int action_container +com.bumptech.glide.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial Imperial +wangdaye.com.geometricweather.R$id: int activity_widget_config_alignEndContainer +androidx.preference.R$dimen: int abc_dialog_min_width_major +com.jaredrummler.android.colorpicker.R$attr: int cpv_showAlphaSlider +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatImageView_android_src +androidx.activity.R$drawable: int notification_icon_background +com.google.android.material.R$string: int abc_toolbar_collapse_description +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_horizontal +androidx.hilt.work.R$id: int accessibility_custom_action_3 +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_listDividerAlertDialog +android.support.v4.graphics.drawable.IconCompatParcelizer: androidx.core.graphics.drawable.IconCompat read(androidx.versionedparcelable.VersionedParcel) +cyanogenmod.weather.WeatherInfo: WeatherInfo(android.os.Parcel,cyanogenmod.weather.WeatherInfo$1) +cyanogenmod.weather.CMWeatherManager: java.util.Map access$200(cyanogenmod.weather.CMWeatherManager) +wangdaye.com.geometricweather.R$dimen: int mtrl_alert_dialog_background_inset_end +com.google.android.material.R$styleable: int ActionBar_background +androidx.dynamicanimation.R$dimen: int compat_control_corner_material +androidx.constraintlayout.widget.R$dimen: int highlight_alpha_material_dark +androidx.transition.R$styleable: int FontFamily_fontProviderFetchStrategy +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamily_fontProviderFetchTimeout +okhttp3.Cache$CacheRequestImpl$1 +androidx.dynamicanimation.R$id: int info +wangdaye.com.geometricweather.R$attr: int waveDecay +okhttp3.internal.connection.RouteSelector: okhttp3.EventListener eventListener +android.didikee.donate.R$anim: int abc_grow_fade_in_from_bottom +androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_Switch +com.google.android.material.R$attr: int elevation +cyanogenmod.hardware.CMHardwareManager: cyanogenmod.hardware.CMHardwareManager sCMHardwareManagerInstance +com.amap.api.fence.GeoFence$1: GeoFence$1() +wangdaye.com.geometricweather.R$layout: int notification_action_tombstone +com.xw.repo.bubbleseekbar.R$attr: int actionBarDivider +wangdaye.com.geometricweather.R$id: int widget_week_week_3 +android.didikee.donate.R$styleable: int[] ViewStubCompat +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_errorIconTintMode +androidx.appcompat.resources.R$styleable: int[] AnimatedStateListDrawableTransition +androidx.viewpager.R$styleable +com.xw.repo.bubbleseekbar.R$styleable: int SwitchCompat_thumbTextPadding +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActivityChooserView +androidx.constraintlayout.widget.R$dimen: R$dimen() +com.xw.repo.bubbleseekbar.R$string: int abc_capital_off +com.google.android.material.R$attr: int checkboxStyle +wangdaye.com.geometricweather.R$color: int abc_background_cache_hint_selector_material_light +android.support.v4.app.INotificationSideChannel$Stub: android.support.v4.app.INotificationSideChannel asInterface(android.os.IBinder) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setShortDescription(java.lang.String) +androidx.lifecycle.ServiceLifecycleDispatcher: android.os.Handler mHandler +wangdaye.com.geometricweather.R$attr: int colorOnPrimarySurface +androidx.appcompat.widget.AppCompatTextView: android.content.res.ColorStateList getSupportBackgroundTintList() androidx.viewpager2.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.vectordrawable.R$style: R$style() -wangdaye.com.geometricweather.R$styleable: int MaterialAlertDialogTheme_materialAlertDialogTheme -okhttp3.OkHttpClient: okhttp3.CertificatePinner certificatePinner -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String pm25 -androidx.appcompat.R$id: int accessibility_custom_action_22 -androidx.constraintlayout.widget.R$attr: int allowStacking -androidx.lifecycle.extensions.R$attr: int fontProviderPackage -android.support.v4.app.INotificationSideChannel$Default: INotificationSideChannel$Default() -wangdaye.com.geometricweather.R$color: int mtrl_btn_text_btn_ripple_color -com.jaredrummler.android.colorpicker.R$string: int cpv_presets -wangdaye.com.geometricweather.R$attr: int behavior_expandedOffset -androidx.vectordrawable.R$style: int TextAppearance_Compat_Notification_Info -okhttp3.Address: okhttp3.Authenticator proxyAuthenticator -androidx.preference.R$attr: int textAllCaps -com.google.android.material.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Id -wangdaye.com.geometricweather.R$styleable: int ProgressIndicator_indicatorColor -android.support.v4.app.INotificationSideChannel$Stub: int TRANSACTION_notify -com.jaredrummler.android.colorpicker.R$id: int line1 -com.xw.repo.bubbleseekbar.R$styleable: int GradientColor_android_endY -com.turingtechnologies.materialscrollbar.R$color: int abc_secondary_text_material_light -io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onNext(java.lang.Object) -androidx.viewpager2.R$id: int normal -com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIcon -cyanogenmod.externalviews.ExternalViewProviderService: android.os.Handler mHandler -okhttp3.internal.http2.Http2Writer: java.util.logging.Logger logger -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindSpeed -wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize_Bridge -com.tencent.bugly.crashreport.common.info.a: java.lang.String J -androidx.constraintlayout.widget.R$color: int abc_search_url_text_pressed -android.didikee.donate.R$styleable: int[] ActionBarLayout -androidx.constraintlayout.widget.R$drawable: int btn_checkbox_unchecked_to_checked_mtrl_animation -wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: double speed -androidx.core.R$dimen: int notification_subtext_size -androidx.lifecycle.extensions.R$id: int icon_group -cyanogenmod.app.ILiveLockScreenChangeListener: void onLiveLockScreenChanged(cyanogenmod.app.LiveLockScreenInfo) -androidx.preference.R$attr: int height -com.amap.api.location.AMapLocation: java.lang.String COORD_TYPE_GCJ02 -james.adaptiveicon.R$styleable: int SearchView_defaultQueryHint -com.google.android.gms.base.R$styleable: int SignInButton_colorScheme -com.turingtechnologies.materialscrollbar.R$attr: int thumbTintMode -com.google.android.material.R$attr: int trackColor -androidx.constraintlayout.widget.R$id: int accessibility_custom_action_19 -retrofit2.http.Query: boolean encoded() -androidx.hilt.work.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.db.entities.LocationEntity: java.lang.String getCountry() -wangdaye.com.geometricweather.R$drawable: int weather_hail_mini_xml -com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_Primary -android.didikee.donate.R$styleable: int ListPopupWindow_android_dropDownVerticalOffset -com.tencent.bugly.proguard.y: java.lang.StringBuilder d -com.tencent.bugly.proguard.u: boolean a -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Medium -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean getCurrent() -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_hovered_z -wangdaye.com.geometricweather.R$styleable: int[] FitSystemBarRecyclerView -wangdaye.com.geometricweather.R$styleable: int Tooltip_android_minWidth -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar_TabView -com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_placeholderTextColor -wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_color -com.bumptech.glide.Registry$MissingComponentException: Registry$MissingComponentException(java.lang.String) -com.google.android.material.R$attr: int buttonBarButtonStyle -com.jaredrummler.android.colorpicker.ColorPickerView: int getBorderColor() -com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_default_mtrl_shape -com.google.android.material.R$id: int textSpacerNoButtons +cyanogenmod.providers.CMSettings$Global: long getLongForUser(android.content.ContentResolver,java.lang.String,long,int) +cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_VIBRATE +com.google.android.material.R$attr: int gestureInsetBottomIgnored +retrofit2.SkipCallbackExecutorImpl: int hashCode() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.appcompat.R$dimen: int abc_dropdownitem_icon_width +io.reactivex.internal.util.HashMapSupplier: java.lang.Object call() +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: void dispose() +io.reactivex.internal.operators.observable.ObservableInterval$IntervalObserver: ObservableInterval$IntervalObserver(io.reactivex.Observer) +androidx.appcompat.widget.AppCompatAutoCompleteTextView: android.content.res.ColorStateList getSupportBackgroundTintList() +com.xw.repo.bubbleseekbar.R$color: int abc_primary_text_disable_only_material_dark +com.jaredrummler.android.colorpicker.R$color: int primary_material_light +james.adaptiveicon.R$anim: int abc_popup_exit +androidx.legacy.coreutils.R$style: int TextAppearance_Compat_Notification +com.google.android.material.R$attr: int layout_constraintCircleAngle +okhttp3.CertificatePinner: okio.ByteString sha1(java.security.cert.X509Certificate) +okio.GzipSink: GzipSink(okio.Sink) +com.google.android.material.R$attr: int cardUseCompatPadding +android.didikee.donate.R$style: int Base_Widget_AppCompat_PopupWindow +androidx.appcompat.R$attr: int listMenuViewStyle +androidx.hilt.R$id: int accessibility_custom_action_8 +wangdaye.com.geometricweather.R$id: int action_text +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_SearchResult_Title +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void innerError(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver,java.lang.Throwable) +com.xw.repo.bubbleseekbar.R$styleable: int[] Toolbar +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$TimeZone: double GmtOffset +androidx.constraintlayout.widget.R$attr: int listDividerAlertDialog +androidx.hilt.work.R$style: R$style() +okio.Buffer: byte[] readByteArray(long) +wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PrecipitationUnit IN +okhttp3.Credentials: java.lang.String basic(java.lang.String,java.lang.String,java.nio.charset.Charset) +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_RatingBar_Small +com.google.android.material.R$attr: int fabAlignmentMode +androidx.appcompat.R$string: int abc_menu_function_shortcut_label +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: long serialVersionUID +com.google.android.material.R$styleable: int Constraint_transitionPathRotate +wangdaye.com.geometricweather.R$string: int tree +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.functions.Function,int,io.reactivex.ObservableSource[]) +okio.Pipe$PipeSource: void close() +androidx.recyclerview.widget.RecyclerView: void setLayoutManager(androidx.recyclerview.widget.RecyclerView$LayoutManager) +androidx.preference.R$style: int Base_Theme_AppCompat_Light +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionBar_TabText +androidx.appcompat.resources.R$id: int accessibility_custom_action_1 +androidx.constraintlayout.widget.R$styleable: int ActionMode_background +androidx.viewpager2.R$styleable: int GradientColor_android_startY +retrofit2.Platform: java.lang.reflect.Constructor lookupConstructor +com.jaredrummler.android.colorpicker.ColorPickerView: void setOnColorChangedListener(com.jaredrummler.android.colorpicker.ColorPickerView$OnColorChangedListener) +io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: ObservableRangeLong$RangeDisposable(io.reactivex.Observer,long,long) +james.adaptiveicon.R$styleable: int SwitchCompat_thumbTextPadding +androidx.activity.R$id: int normal +okhttp3.Cookie: java.lang.String name() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean visibility +okhttp3.internal.http2.Http2Connection: int maxConcurrentStreams() +com.tencent.bugly.proguard.v: v(android.content.Context,int,int,byte[],java.lang.String,java.lang.String,com.tencent.bugly.proguard.t,boolean,boolean) +com.turingtechnologies.materialscrollbar.R$string: int status_bar_notification_info_overflow +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_icon_4 +com.google.gson.stream.JsonWriter: void push(int) +okhttp3.CacheControl: CacheControl(okhttp3.CacheControl$Builder) +wangdaye.com.geometricweather.R$drawable: int abc_btn_check_material_anim +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.viewpager.R$attr: int fontProviderPackage +androidx.preference.R$styleable: int[] ActionMenuItemView +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) +com.google.android.material.R$styleable: int ConstraintSet_flow_horizontalAlign +com.google.android.material.R$styleable: int ProgressIndicator_linearSeamless +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ActionBar_TabView +wangdaye.com.geometricweather.R$attr: int transitionShapeAppearance +com.google.android.material.R$style: int Widget_MaterialComponents_Button_Icon +wangdaye.com.geometricweather.R$string: int wind_level +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_splitTrack +okio.SegmentPool: okio.Segment next +com.google.android.material.R$attr: int measureWithLargestChild +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: void setPm10(java.lang.String) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_chipStrokeColor +com.bumptech.glide.load.engine.GlideException: java.lang.String detailMessage +cyanogenmod.app.ICMTelephonyManager$Stub$Proxy: ICMTelephonyManager$Stub$Proxy(android.os.IBinder) +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutObserver: void onError(java.lang.Throwable) +androidx.preference.R$styleable: int[] SwitchPreference +wangdaye.com.geometricweather.R$dimen: int little_margin +com.google.android.gms.base.R$string: int common_google_play_services_install_text +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_autoSizeMinTextSize +com.xw.repo.bubbleseekbar.R$attr: int colorControlHighlight +wangdaye.com.geometricweather.R$string: int daily_overview +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status[] values() +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: java.lang.String getSerialNumber() +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_Solid +com.google.android.material.R$color: int mtrl_card_view_foreground +wangdaye.com.geometricweather.R$drawable: int notif_temp_139 +io.reactivex.Observable: io.reactivex.Observable serialize() +okio.Timeout: okio.Timeout deadlineNanoTime(long) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_ActionButton_CloseMode +androidx.hilt.work.R$anim: int fragment_fast_out_extra_slow_in +okhttp3.internal.cache.DiskLruCache$Snapshot: okhttp3.internal.cache.DiskLruCache$Editor edit() +cyanogenmod.providers.CMSettings$System: java.lang.String STATUS_BAR_BRIGHTNESS_CONTROL +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_list_padding_top_no_title +wangdaye.com.geometricweather.R$drawable: int notif_temp_102 +com.jaredrummler.android.colorpicker.R$id: int src_atop +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_android_textColorHint +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_UUID +okio.SegmentPool: void recycle(okio.Segment) +okhttp3.Response: java.lang.String message +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.internal.queue.SpscLinkedArrayQueue queue +com.google.android.material.bottomnavigation.BottomNavigationPresenter$SavedState +io.reactivex.Observable: io.reactivex.Observable retry(io.reactivex.functions.BiPredicate) +androidx.lifecycle.SavedStateHandle: java.lang.String KEYS +com.google.android.material.R$attr: int liftOnScroll +okio.HashingSource: javax.crypto.Mac mac +com.xw.repo.bubbleseekbar.R$drawable: int abc_ic_star_black_36dp +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getStatusBarThemePackageName() +cyanogenmod.providers.CMSettings$Secure: boolean putString(android.content.ContentResolver,java.lang.String,java.lang.String) +androidx.lifecycle.viewmodel.savedstate.R +com.google.android.material.R$styleable: int ActionBar_contentInsetStart +cyanogenmod.alarmclock.ClockContract$InstancesColumns: android.net.Uri CONTENT_URI +com.google.android.material.R$color: int material_timepicker_button_stroke +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onWindowFocusChanged(boolean) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitation +cyanogenmod.app.ICustomTileListener$Stub: ICustomTileListener$Stub() +james.adaptiveicon.R$integer: int abc_config_activityShortDur +androidx.preference.R$id: int blocking +com.google.android.material.R$color: int material_grey_850 +retrofit2.adapter.rxjava2.Result: retrofit2.Response response +cyanogenmod.app.ILiveLockScreenManager: void setLiveLockScreenEnabled(boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemTextAppearanceActive +wangdaye.com.geometricweather.R$styleable: int OnSwipe_nestedScrollFlags +wangdaye.com.geometricweather.R$color: int abc_search_url_text_pressed +com.tencent.bugly.crashreport.crash.e: com.tencent.bugly.crashreport.common.info.a d +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability: java.lang.Float total +james.adaptiveicon.R$attr: int closeIcon +cyanogenmod.profiles.StreamSettings: int describeContents() +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void runAsync() +androidx.legacy.coreutils.R$id: int tag_unhandled_key_listeners +wangdaye.com.geometricweather.R$attr: int roundPercent +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer realFeelShaderTemperature +com.google.android.material.tabs.TabLayout: void setTabRippleColor(android.content.res.ColorStateList) +james.adaptiveicon.R$id: int buttonPanel +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemTextAppearance +androidx.constraintlayout.widget.R$dimen: int hint_alpha_material_light +okhttp3.Handshake: java.util.List localCertificates() +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar_Small +androidx.preference.R$style: int TextAppearance_AppCompat_Subhead +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_Dialog_Alert +androidx.constraintlayout.widget.R$styleable: int Constraint_transitionPathRotate +okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withConnectTimeout(int,java.util.concurrent.TimeUnit) +androidx.appcompat.R$drawable: int notification_icon_background +com.turingtechnologies.materialscrollbar.R$string: int abc_capital_on +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: TraceFileHelper() +com.github.rahatarmanahmed.cpv.R$bool +retrofit2.Utils$ParameterizedTypeImpl: java.lang.String toString() +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat +androidx.core.R$id: int accessibility_custom_action_16 +com.turingtechnologies.materialscrollbar.MaterialScrollBar: boolean getHide() +androidx.constraintlayout.widget.R$attr: int listPreferredItemPaddingStart +com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +com.tencent.bugly.crashreport.common.info.a: java.lang.String g +wangdaye.com.geometricweather.common.basic.models.options.unit.SpeedUnit: java.lang.String unitId +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties +androidx.appcompat.R$id: int search_src_text +wangdaye.com.geometricweather.R$drawable: int weather_fog_mini_grey +cyanogenmod.weather.WeatherInfo$DayForecast$Builder +androidx.constraintlayout.widget.R$styleable: int SwitchCompat_thumbTintMode +androidx.preference.R$styleable: int MenuView_android_headerBackground +com.bumptech.glide.R$layout: int notification_action +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight_Dialog_MinWidth +com.google.android.material.R$attr: int textAppearanceSubtitle1 +com.baidu.location.e.l$b +com.google.android.material.R$dimen: int mtrl_progress_indicator_full_rounded_corner_radius +wangdaye.com.geometricweather.R$attr: int thickness +androidx.preference.R$styleable: int Spinner_android_dropDownWidth +okhttp3.ResponseBody$1: okio.BufferedSource val$content +androidx.customview.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.R$string: int settings_summary_background_free_off +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_helperText +com.google.android.material.R$integer: int design_snackbar_text_max_lines +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_anim_duration +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +wangdaye.com.geometricweather.R$color: int dim_foreground_disabled_material_dark +wangdaye.com.geometricweather.R$drawable: int notif_temp_14 +com.xw.repo.bubbleseekbar.R$styleable: int[] AppCompatTheme +androidx.hilt.work.R$anim: int fragment_open_exit +james.adaptiveicon.R$attr: int windowMinWidthMinor +com.tencent.bugly.crashreport.crash.CrashDetailBean: CrashDetailBean() +james.adaptiveicon.R$styleable: int ActionMode_height +androidx.constraintlayout.widget.R$attr: int colorBackgroundFloating +androidx.appcompat.widget.FitWindowsViewGroup +com.google.android.material.R$style: int Base_Theme_MaterialComponents_CompactMenu +wangdaye.com.geometricweather.common.ui.widgets.PrecipitationBar: void setMinutelyList(java.util.List) +dagger.hilt.android.internal.managers.ActivityRetainedComponentManager$ActivityRetainedComponentViewModel +okhttp3.internal.http2.Http2Connection$PingRunnable: void execute() +androidx.appcompat.widget.ScrollingTabContainerView: void setContentHeight(int) +james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_Underlined +cyanogenmod.externalviews.KeyguardExternalView: android.content.Context access$600(cyanogenmod.externalviews.KeyguardExternalView) +okhttp3.MediaType: java.lang.String charset +cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: int TRANSACTION_requestDismissAndStartActivity_1 +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_icon_btn_padding_left +com.turingtechnologies.materialscrollbar.R$attr: int msb_handleOffColor +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWindLevel(java.lang.String) +com.google.android.material.R$color: int mtrl_filled_background_color +android.didikee.donate.R$drawable: int abc_list_selector_holo_dark +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$4: ExternalViewProviderService$Provider$ProviderImpl$4(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.common.basic.models.weather.Alert: java.lang.String content +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_hd +okhttp3.Call: okhttp3.Request request() +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_0 +androidx.constraintlayout.widget.R$styleable: int[] MenuGroup +com.amap.api.fence.GeoFence: GeoFence() +com.google.android.material.R$styleable: int GradientColor_android_startX +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle +com.turingtechnologies.materialscrollbar.R$attr: int windowFixedHeightMajor +androidx.swiperefreshlayout.R$id: int tag_accessibility_clickable_spans +okhttp3.internal.http.CallServerInterceptor$CountingSink: CallServerInterceptor$CountingSink(okio.Sink) +androidx.fragment.R$id: int accessibility_custom_action_9 +com.amap.api.location.AMapLocation: java.lang.String getStreetNum() +wangdaye.com.geometricweather.R$id: int activity_weather_daily_container +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean disposed +com.turingtechnologies.materialscrollbar.R$color: int design_fab_stroke_top_inner_color +org.greenrobot.greendao.AbstractDao: java.lang.Object loadCurrentOther(org.greenrobot.greendao.AbstractDao,android.database.Cursor,int) +com.jaredrummler.android.colorpicker.R$styleable: int ActivityChooserView_expandActivityOverflowButtonDrawable +wangdaye.com.geometricweather.R$attr: int popupMenuBackground +com.google.android.material.R$anim: int abc_tooltip_exit +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_motionTarget +retrofit2.ParameterHandler$PartMap: ParameterHandler$PartMap(java.lang.reflect.Method,int,retrofit2.Converter,java.lang.String) +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onResume() +com.google.android.material.R$styleable: int Constraint_pathMotionArc +androidx.hilt.work.R$styleable: int GradientColor_android_centerX +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource CN +okhttp3.internal.http2.Http2: byte FLAG_END_HEADERS +retrofit2.OkHttpCall$ExceptionCatchingResponseBody: OkHttpCall$ExceptionCatchingResponseBody(okhttp3.ResponseBody) +com.google.android.material.card.MaterialCardView: int getCheckedIconSize() +android.didikee.donate.R$attr: int actionBarWidgetTheme +androidx.appcompat.R$attr: int navigationIcon +com.turingtechnologies.materialscrollbar.R$attr: int chipStrokeWidth +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_android_shadowDy +com.google.android.material.card.MaterialCardView: void setCheckedIconResource(int) +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onComplete() +androidx.lifecycle.ProcessLifecycleOwner$2: void onResume() +james.adaptiveicon.R$style: int Base_Widget_AppCompat_ActionMode +retrofit2.ParameterHandler$PartMap +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon_CenterStacked +wangdaye.com.geometricweather.R$attr: int maxAcceleration +com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource RESOURCE_DISK_CACHE +io.reactivex.Observable: io.reactivex.Observable delay(long,java.util.concurrent.TimeUnit,boolean) +wangdaye.com.geometricweather.background.polling.work.worker.TodayForecastUpdateWorker +android.didikee.donate.R$style: int TextAppearance_AppCompat_Large +okhttp3.internal.cache.DiskLruCache: java.util.Iterator snapshots() +okhttp3.internal.io.FileSystem$1: void delete(java.io.File) +androidx.constraintlayout.widget.R$styleable: int View_android_focusable +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult: java.lang.String type +james.adaptiveicon.R$color: int button_material_light +com.jaredrummler.android.colorpicker.R$style: int Preference_SwitchPreference_Material +okhttp3.internal.http.HttpHeaders: void receiveHeaders(okhttp3.CookieJar,okhttp3.HttpUrl,okhttp3.Headers) +com.google.android.material.appbar.AppBarLayout: void removeOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$BaseOnOffsetChangedListener) +android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItemSecondary +androidx.appcompat.R$id: int wrap_content +androidx.preference.R$layout: int notification_template_part_chronometer +okio.AsyncTimeout: void timedOut() +okhttp3.internal.connection.RealConnection: java.net.Socket socket() +com.google.android.material.textfield.TextInputLayout: int getPlaceholderTextAppearance() +androidx.swiperefreshlayout.R$integer: R$integer() +wangdaye.com.geometricweather.settings.activities.SettingsActivity: SettingsActivity() +android.didikee.donate.R$color: int switch_thumb_disabled_material_dark +androidx.appcompat.resources.R$id: int accessibility_custom_action_21 +com.google.android.material.R$style: int Theme_MaterialComponents_Dialog_MinWidth_Bridge +com.jaredrummler.android.colorpicker.R$attr: int titleMargins +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_titleTextAppearance +james.adaptiveicon.R$styleable: int TextAppearance_android_textColorLink +wangdaye.com.geometricweather.R$attr: int flow_firstHorizontalBias +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer treeLevel +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose[] values() +wangdaye.com.geometricweather.R$styleable: int KeyCycle_wavePeriod +com.google.android.material.transformation.FabTransformationScrimBehavior +james.adaptiveicon.R$style: int Theme_AppCompat_DayNight +androidx.appcompat.R$attr: int subtitleTextAppearance +com.turingtechnologies.materialscrollbar.R$string: int abc_shareactionprovider_share_with_application +okhttp3.internal.http2.Http2Codec: okhttp3.Response$Builder readResponseHeaders(boolean) +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.lang.String getTime(android.content.Context,java.util.Date) +com.google.android.material.textfield.TextInputLayout: void setErrorContentDescription(java.lang.CharSequence) +androidx.appcompat.R$attr: int contentInsetEndWithActions +androidx.constraintlayout.widget.R$color: int abc_secondary_text_material_dark +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_checked_box_outer_merged_animation +wangdaye.com.geometricweather.R$attr: int textAppearanceOverline +androidx.preference.R$styleable: int RecyclerView_stackFromEnd +com.google.android.material.chip.Chip: void setChipEndPadding(float) +androidx.core.R$attr: int fontVariationSettings +androidx.legacy.coreutils.R$style +cyanogenmod.providers.CMSettings$Global: long getLong(android.content.ContentResolver,java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX temperature +androidx.coordinatorlayout.widget.CoordinatorLayout: void setStatusBarBackgroundColor(int) +com.google.android.material.R$styleable: int Constraint_android_rotationX +androidx.vectordrawable.animated.R$id: int action_text +wangdaye.com.geometricweather.R$string: int key_temperature_unit +com.google.android.material.R$styleable: int Constraint_flow_lastHorizontalBias +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setWeatherCode(wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode) +io.reactivex.internal.observers.BasicIntQueueDisposable: boolean offer(java.lang.Object) +com.google.android.material.R$style: int Widget_AppCompat_Light_ListPopupWindow +com.amap.api.location.AMapLocation: java.lang.String m +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_draggable +com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_FENCE +wangdaye.com.geometricweather.R$attr: int hideMotionSpec +cyanogenmod.profiles.ConnectionSettings: void readFromParcel(android.os.Parcel) +androidx.appcompat.R$styleable: int AppCompatTheme_actionBarTabTextStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: boolean isIsModify() +androidx.lifecycle.MethodCallsLogger +androidx.appcompat.R$attr: int buttonBarNegativeButtonStyle +androidx.preference.R$string: int copy +james.adaptiveicon.R$styleable: int AppCompatTheme_windowFixedWidthMajor +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.R$attr: int popupWindowStyle +wangdaye.com.geometricweather.R$integer: int cpv_default_anim_duration +androidx.preference.R$layout: int abc_screen_toolbar +io.reactivex.Observable: io.reactivex.Observable concat(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource) +cyanogenmod.app.PartnerInterface: java.lang.String MODIFY_NETWORK_SETTINGS_PERMISSION +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_0_30 +androidx.hilt.R$styleable: int FontFamilyFont_android_fontVariationSettings +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onComplete() +com.google.android.material.R$style: int TextAppearance_AppCompat_Medium_Inverse +com.google.android.material.R$styleable: int GradientColor_android_startColor +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_searchIcon +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Menu +androidx.preference.R$id: int search_go_btn +wangdaye.com.geometricweather.R$styleable: int FloatingActionButton_fabSize +androidx.constraintlayout.widget.R$styleable: int ActionBar_titleTextStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric +com.google.android.material.R$color: int mtrl_btn_bg_color_selector +wangdaye.com.geometricweather.R$attr: int iconStartPadding +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xnwd +androidx.constraintlayout.utils.widget.ImageFilterView: void setWarmth(float) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$8: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +androidx.preference.CheckBoxPreference: CheckBoxPreference(android.content.Context,android.util.AttributeSet) +androidx.transition.R$color: int ripple_material_light +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_cw +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void readEntity(android.database.Cursor,wangdaye.com.geometricweather.db.entities.MinutelyEntity,int) +cyanogenmod.externalviews.KeyguardExternalView$2: cyanogenmod.externalviews.KeyguardExternalView this$0 +okhttp3.CacheControl: okhttp3.CacheControl FORCE_CACHE +james.adaptiveicon.R$attr: int textAppearanceListItemSecondary +androidx.appcompat.widget.SwitchCompat: int getCompoundPaddingRight() +androidx.drawerlayout.R$id: int time +wangdaye.com.geometricweather.R$layout: int text_view_with_line_height_from_style +androidx.appcompat.resources.R$styleable: int GradientColor_android_type +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +androidx.swiperefreshlayout.R$drawable: int notification_template_icon_bg +com.xw.repo.bubbleseekbar.R$id: int forever +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_NoActionBar +androidx.appcompat.R$drawable: int abc_list_divider_mtrl_alpha +cyanogenmod.weather.RequestInfo$Builder: boolean mIsQueryOnly +com.turingtechnologies.materialscrollbar.R$attr: int behavior_peekHeight +io.reactivex.internal.util.ArrayListSupplier: io.reactivex.functions.Function asFunction() +wangdaye.com.geometricweather.db.entities.LocationEntity +wangdaye.com.geometricweather.background.polling.work.worker.AsyncUpdateWorker: AsyncUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) +wangdaye.com.geometricweather.common.ui.widgets.InkPageIndicator$SavedState +com.amap.api.location.AMapLocation: java.lang.String getStreet() +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_menu_cut_mtrl_alpha +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintLeft_toRightOf +wangdaye.com.geometricweather.R$styleable: int[] KeyFramesAcceleration +androidx.coordinatorlayout.R$id: int chronometer +io.reactivex.internal.observers.DeferredScalarObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.turingtechnologies.materialscrollbar.R$dimen: int design_tab_scrollable_min_width +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: io.reactivex.Observer downstream +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_endIconMode +androidx.constraintlayout.widget.R$styleable: int[] Transition +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionMode_Inverse +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperature$Maximum: double Value +com.baidu.location.indoor.mapversion.c.a$d: short[][] g +androidx.preference.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.R$attr: int errorIconTintMode +androidx.viewpager.R$drawable: int notification_bg +com.google.android.material.R$style: int Widget_MaterialComponents_ActionBar_Solid +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling: AccuCurrentResult$Ceiling() +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorPrimary +wangdaye.com.geometricweather.R$layout: int preference_information_material +okhttp3.Cache: Cache(java.io.File,long) +retrofit2.adapter.rxjava2.RxJava2CallAdapter: boolean isAsync +androidx.preference.R$attr: int spinnerDropDownItemStyle +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int UVIndex +androidx.constraintlayout.widget.R$attr: int maxWidth +androidx.appcompat.widget.ViewStubCompat: ViewStubCompat(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeWindDirection(java.lang.String) +wangdaye.com.geometricweather.R$attr: int thumbTint +com.google.android.material.R$attr: int trackTintMode +wangdaye.com.geometricweather.R$drawable: int btn_radio_off_to_on_mtrl_animation +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicInteger wip +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ListView_DropDown +okhttp3.internal.http2.Http2Connection$ReaderRunnable$1: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 +okhttp3.internal.http2.Http2Reader$ContinuationSource +androidx.fragment.R$id +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableItem_android_id +androidx.constraintlayout.widget.R$styleable: int Layout_layout_constraintLeft_toLeftOf +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_ImageButton +androidx.hilt.R$styleable: int FontFamilyFont_font +com.google.android.material.R$attr: int paddingStart +wangdaye.com.geometricweather.R$styleable: int GradientColorItem_android_color +com.google.android.material.R$styleable: int RecyclerView_fastScrollEnabled +com.jaredrummler.android.colorpicker.R$styleable: int[] ColorPreference +james.adaptiveicon.R$attr: int homeAsUpIndicator +androidx.preference.R$attr: int keylines +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_showText +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Rain +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: io.reactivex.internal.observers.InnerQueuedObserver current +androidx.loader.R$style: R$style() +wangdaye.com.geometricweather.db.entities.LocationEntity: java.util.TimeZone getTimeZone() +androidx.constraintlayout.widget.R$styleable: int[] LinearLayoutCompat +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int aqi +androidx.appcompat.R$layout: int custom_dialog +com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_max +cyanogenmod.providers.CMSettings: java.lang.String ACTION_DATA_USAGE +wangdaye.com.geometricweather.R$styleable: int ClockFaceView_valueTextColor +androidx.constraintlayout.widget.R$attr: int waveShape +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Integer getWindChillTemperature() +wangdaye.com.geometricweather.R$color: int darkPrimary_3 +cyanogenmod.app.PartnerInterface: cyanogenmod.app.IPartnerInterface getService() +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customPixelDimension +com.amap.api.location.AMapLocationQualityReport: int GPS_STATUS_OK +okhttp3.Request: java.util.Map tags +androidx.hilt.R$color: R$color() +androidx.recyclerview.widget.RecyclerView: boolean getPreserveFocusAfterLayout() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableLeftCompat +androidx.work.R$drawable: int notification_tile_bg +androidx.preference.R$attr: int drawableTopCompat +wangdaye.com.geometricweather.R$attr: int paddingBottomNoButtons +james.adaptiveicon.R$dimen: int abc_dialog_fixed_width_major +wangdaye.com.geometricweather.R$id: int unchecked +com.google.android.material.badge.BadgeDrawable$SavedState: android.os.Parcelable$Creator CREATOR +cyanogenmod.app.IProfileManager +cyanogenmod.weatherservice.ServiceRequest$Status: cyanogenmod.weatherservice.ServiceRequest$Status CANCELLED +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_padding_material +com.tencent.bugly.proguard.y$a: long e +com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(java.lang.Object[],java.lang.String) +okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache create(okhttp3.internal.io.FileSystem,java.io.File,int,int,long) +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator INCREASING_RING_START_VOLUME_VALIDATOR +androidx.dynamicanimation.R$styleable: int FontFamily_fontProviderFetchTimeout +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeSnowPrecipitation +androidx.hilt.lifecycle.R$id: int blocking +androidx.recyclerview.widget.RecyclerView: void setAdapter(androidx.recyclerview.widget.RecyclerView$Adapter) +com.google.android.material.R$id: int edit_query +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeCloseDrawable +androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingLeft +james.adaptiveicon.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +wangdaye.com.geometricweather.R$string: int snow +wangdaye.com.geometricweather.R$id: int save_non_transition_alpha +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config +androidx.preference.R$attr: int buttonBarStyle +androidx.swiperefreshlayout.R$attr: int fontWeight +wangdaye.com.geometricweather.R$attr: int boxCornerRadiusTopStart +android.didikee.donate.R$dimen: int abc_action_bar_content_inset_with_nav +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constrainedWidth +cyanogenmod.providers.ThemesContract$PreviewColumns +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.R$styleable: int Constraint_flow_lastVerticalBias +android.didikee.donate.R$styleable: int ActionBar_progressBarStyle +com.google.android.material.R$style: int Widget_Design_TabLayout +com.github.rahatarmanahmed.cpv.R$bool: R$bool() +io.reactivex.internal.subscriptions.SubscriptionHelper: io.reactivex.internal.subscriptions.SubscriptionHelper[] values() +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,boolean) +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float visibility +com.tencent.bugly.proguard.f: byte[] e +com.google.android.material.R$style: int EmptyTheme +com.jaredrummler.android.colorpicker.R$color: int secondary_text_disabled_material_light +cyanogenmod.app.CustomTile$GridExpandedStyle: CustomTile$GridExpandedStyle() +com.google.android.material.R$styleable: int Constraint_flow_lastHorizontalStyle +androidx.hilt.R$id: int chronometer +cyanogenmod.profiles.AirplaneModeSettings$1: java.lang.Object createFromParcel(android.os.Parcel) +cyanogenmod.profiles.StreamSettings: StreamSettings(int) +wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +com.google.android.material.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.preference.R$id: int listMode +okhttp3.internal.http2.Http2Connection$2: okhttp3.internal.http2.Http2Connection this$0 +androidx.dynamicanimation.R$color +wangdaye.com.geometricweather.R$styleable: int MaterialTextAppearance_android_lineHeight +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_4 +okio.Util +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void onComplete() +com.google.android.material.R$styleable: int Chip_chipIcon +wangdaye.com.geometricweather.R$styleable: int[] MotionScene +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_min +wangdaye.com.geometricweather.R$styleable: int InkPageIndicator_dotDiameter +wangdaye.com.geometricweather.R$attr: int bottomSheetDialogTheme +androidx.lifecycle.extensions.R$drawable: int notification_bg_normal_pressed +wangdaye.com.geometricweather.R$drawable: int notification_action_background +wangdaye.com.geometricweather.R$color: int abc_btn_colored_borderless_text_material +com.google.android.material.slider.RangeSlider: void setFocusedThumbIndex(int) +androidx.customview.R$styleable: int[] GradientColor +androidx.appcompat.R$attr: int state_above_anchor +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_Chip +androidx.appcompat.R$styleable: int SwitchCompat_android_textOff +cyanogenmod.weather.RequestInfo: int describeContents() +androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$Event upEvent(androidx.lifecycle.Lifecycle$State) +androidx.constraintlayout.widget.R$attr: int contrast +androidx.appcompat.R$drawable: int abc_ic_star_black_48dp +androidx.constraintlayout.motion.widget.MotionLayout: void setScene(androidx.constraintlayout.motion.widget.MotionScene) +com.autonavi.aps.amapapi.model.AMapLocationServer: boolean e +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void readEntity(android.database.Cursor,java.lang.Object,int) +com.jaredrummler.android.colorpicker.R$layout: int preference +james.adaptiveicon.R$dimen: int compat_control_corner_material +com.google.android.material.textfield.TextInputLayout: float getBoxCornerRadiusTopEnd() +com.jaredrummler.android.colorpicker.R$attr: int textAppearancePopupMenuHeader +com.google.android.material.R$styleable: int BottomSheetBehavior_Layout_shapeAppearanceOverlay +cyanogenmod.app.ILiveLockScreenManager$Stub: int TRANSACTION_cancelLiveLockScreen +com.xw.repo.bubbleseekbar.R$string: int status_bar_notification_info_overflow +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.subjects.Subject signaller +com.google.android.material.R$styleable: int KeyPosition_curveFit +cyanogenmod.app.suggest.IAppSuggestProvider$Stub: IAppSuggestProvider$Stub() +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property RagweedDescription +wangdaye.com.geometricweather.R$styleable: int SeekBarPreference_android_max +androidx.preference.R$style: int ThemeOverlay_AppCompat_Dialog +androidx.appcompat.R$styleable: int SwitchCompat_thumbTextPadding +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: boolean requestDismissAndStartActivity(android.content.Intent) +androidx.drawerlayout.R$attr: R$attr() +com.turingtechnologies.materialscrollbar.R$id: int expanded_menu +com.google.android.material.chip.Chip: void setHideMotionSpecResource(int) +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver$InnerRepeatObserver: void onError(java.lang.Throwable) +com.amap.api.fence.GeoFenceManagerBase: void pauseGeoFence() +wangdaye.com.geometricweather.R$dimen: int abc_text_size_medium_material +com.google.android.material.R$attr: int contentPadding +com.google.android.material.textfield.TextInputLayout: void setHintInternal(java.lang.CharSequence) +com.tencent.bugly.crashreport.common.info.a: java.util.Map ak +com.google.android.material.button.MaterialButton: void setBackgroundDrawable(android.graphics.drawable.Drawable) +cyanogenmod.hardware.CMHardwareManager: boolean isSupported(int) +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarStyle +androidx.lifecycle.extensions.R$dimen: int notification_content_margin_start +androidx.work.NetworkType: androidx.work.NetworkType CONNECTED +com.google.android.material.R$id: int text_input_error_icon +com.jaredrummler.android.colorpicker.R$styleable: int MenuGroup_android_enabled +okhttp3.internal.connection.RealConnection$1: okhttp3.internal.connection.StreamAllocation val$streamAllocation +com.tencent.bugly.crashreport.crash.anr.b: boolean e() +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25: int pm10 +cyanogenmod.themes.ThemeChangeRequest: int DEFAULT_WALLPAPER_ID +androidx.appcompat.resources.R$string: int status_bar_notification_info_overflow +androidx.vectordrawable.animated.R$dimen: int compat_control_corner_material +cyanogenmod.app.CustomTile$ExpandedItem: void internalSetItemBitmap(android.graphics.Bitmap) +com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog +wangdaye.com.geometricweather.R$attr: int scrimVisibleHeightTrigger +android.didikee.donate.R$attr: int navigationMode +androidx.vectordrawable.R$styleable: int ColorStateListItem_android_alpha +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper: java.lang.String b(java.io.BufferedReader) +androidx.preference.R$styleable: int LinearLayoutCompat_android_weightSum +com.google.android.material.bottomappbar.BottomAppBar: void setElevation(float) +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +com.google.android.gms.location.ActivityTransitionResult +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_hintEnabled +retrofit2.BuiltInConverters$BufferingResponseBodyConverter +wangdaye.com.geometricweather.R$layout: int preference_information +cyanogenmod.weatherservice.WeatherProviderService: cyanogenmod.weatherservice.IWeatherProviderServiceClient access$200(cyanogenmod.weatherservice.WeatherProviderService) +androidx.appcompat.widget.SearchView: void setOnSuggestionListener(androidx.appcompat.widget.SearchView$OnSuggestionListener) +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_23 +androidx.appcompat.R$styleable: int FontFamilyFont_fontVariationSettings +androidx.work.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.common.ui.widgets.trend.item.DailyTrendItemView +androidx.constraintlayout.widget.R$styleable: int[] KeyCycle +com.google.android.material.R$attr: int selectorSize +androidx.work.R$dimen: int notification_main_column_padding_top +androidx.lifecycle.LifecycleDispatcher$DispatcherActivityCallback: void onActivityStopped(android.app.Activity) +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.String ragweedDescription +androidx.constraintlayout.widget.R$styleable: int KeyPosition_curveFit +cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(android.os.Parcel) +androidx.constraintlayout.widget.R$styleable: int MenuView_subMenuArrow +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_elevation +wangdaye.com.geometricweather.R$styleable: int DialogPreference_android_dialogIcon +wangdaye.com.geometricweather.weather.json.accu.AccuMinuteResult$SummariesBean: int CountMinute +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView +com.xw.repo.BubbleSeekBar: void setOnProgressChangedListener(com.xw.repo.BubbleSeekBar$OnProgressChangedListener) +com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextAppearance +androidx.lifecycle.ServiceLifecycleDispatcher$DispatchRunnable: androidx.lifecycle.Lifecycle$Event mEvent +com.tencent.bugly.proguard.v: com.tencent.bugly.crashreport.common.info.a f +io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: void replay() +androidx.viewpager.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.dynamicanimation.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.db.entities.AlertEntity: void setTime(long) +com.google.android.material.slider.BaseSlider: void setThumbStrokeWidthResource(int) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_elevation +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_homeAsUpIndicator +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX: java.util.List value +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: double lon +com.google.android.material.R$attr: int viewInflaterClass +com.jaredrummler.android.colorpicker.R$styleable: int AlertDialog_multiChoiceItemLayout +wangdaye.com.geometricweather.common.ui.widgets.weatherView.circularSkyView.CircularSkyWeatherView: void setGravitySensorEnabled(boolean) +com.tencent.bugly.crashreport.common.info.a: java.util.Map B() +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionBar_Solid +androidx.appcompat.widget.SwitchCompat: android.graphics.drawable.Drawable getTrackDrawable() +wangdaye.com.geometricweather.R$attr: int contentDescription +androidx.appcompat.R$style: int Base_V26_Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.lang.Float tMax +cyanogenmod.providers.CMSettings$Secure: java.lang.String[] LEGACY_SECURE_SETTINGS +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_showAsAction +androidx.appcompat.R$styleable: int MenuView_android_verticalDivider +androidx.constraintlayout.widget.R$styleable: int OnSwipe_nestedScrollFlags +com.xw.repo.bubbleseekbar.R$attr: int bsb_auto_adjust_section_mark +okhttp3.CacheControl: boolean mustRevalidate +okhttp3.internal.publicsuffix.PublicSuffixDatabase: byte EXCEPTION_MARKER +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_editor_absoluteY +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_searchViewStyle +androidx.constraintlayout.widget.R$style: int Platform_AppCompat +androidx.lifecycle.LifecycleRegistry: void moveToState(androidx.lifecycle.Lifecycle$State) +android.didikee.donate.R$attr: int popupMenuStyle +okio.BufferedSink: okio.BufferedSink writeDecimalLong(long) +com.google.android.material.R$styleable: int AppCompatTheme_windowFixedHeightMinor +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleGravity +com.google.android.material.R$styleable: int KeyTrigger_triggerReceiver +androidx.viewpager.widget.PagerTitleStrip: void setSingleLineAllCaps(android.widget.TextView) +okhttp3.internal.cache.DiskLruCache: java.lang.Runnable cleanupRunnable +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onComplete() +com.jaredrummler.android.colorpicker.R$attr: int buttonBarButtonStyle +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarPositiveButtonStyle +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_placeholder_content +wangdaye.com.geometricweather.db.entities.LocationEntity: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource weatherSource +com.google.android.material.R$anim: int abc_shrink_fade_out_from_bottom +androidx.hilt.work.R$id: int tag_accessibility_clickable_spans +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 +okio.ByteString: int hashCode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource: int Id +androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerX +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ProgressBar +com.google.android.material.R$attr: int colorOnSecondary +com.google.android.material.R$style: int Base_Widget_AppCompat_CompoundButton_CheckBox +androidx.constraintlayout.widget.R$attr: int actionModeCopyDrawable +androidx.dynamicanimation.R$style: int TextAppearance_Compat_Notification_Line2 +androidx.work.R$id: int action_text +com.github.rahatarmanahmed.cpv.CircularProgressView: void initAttributes(android.util.AttributeSet,int) +android.didikee.donate.R$string: int status_bar_notification_info_overflow +james.adaptiveicon.R$dimen: int abc_action_bar_elevation_material +com.google.android.material.R$attr: int showText +com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_popupBackground +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: boolean disconnectedEarly +androidx.preference.R$styleable: int AppCompatTheme_windowNoTitle +wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode SLEET +com.tencent.bugly.proguard.ap: java.lang.String d +androidx.lifecycle.extensions.R$anim: int fragment_fade_exit +wangdaye.com.geometricweather.R$attr: int showText +com.google.android.material.R$id: int accessibility_custom_action_24 +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display4 +okhttp3.internal.ws.WebSocketWriter$FrameSink: void close() +okhttp3.Headers: java.lang.String get(java.lang.String[],java.lang.String) +com.tencent.bugly.proguard.j: void a(boolean,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Visibility +androidx.appcompat.R$string: int search_menu_title +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour MATCH_PARENT +wangdaye.com.geometricweather.R$layout: int test_toolbar_elevation +androidx.appcompat.R$styleable: int SwitchCompat_showText +androidx.appcompat.widget.AppCompatAutoCompleteTextView +androidx.appcompat.R$dimen: int abc_action_button_min_height_material +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: io.reactivex.Observer downstream +james.adaptiveicon.R$styleable: int AppCompatTheme_autoCompleteTextViewStyle +androidx.preference.R$attr: int alertDialogButtonGroupStyle +wangdaye.com.geometricweather.R$dimen: int compat_button_inset_vertical_material +okhttp3.internal.connection.RouteDatabase: void failed(okhttp3.Route) +okhttp3.EventListener$2: okhttp3.EventListener create(okhttp3.Call) +james.adaptiveicon.R$style: int Base_Widget_AppCompat_SeekBar_Discrete +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_DayNight_ActionBar +androidx.appcompat.widget.SearchView: void setSubmitButtonEnabled(boolean) +androidx.preference.R$layout: int abc_screen_content_include +wangdaye.com.geometricweather.R$drawable: int abc_btn_check_material +wangdaye.com.geometricweather.R$drawable: int btn_checkbox_checked_mtrl +androidx.appcompat.widget.AppCompatAutoCompleteTextView: android.graphics.PorterDuff$Mode getSupportBackgroundTintMode() +wangdaye.com.geometricweather.R$attr: int insetForeground +androidx.legacy.coreutils.R$id: int text +wangdaye.com.geometricweather.R$string: int settings_title_dark_mode +com.turingtechnologies.materialscrollbar.R$attr: int contentScrim +james.adaptiveicon.R$styleable: int[] AppCompatTextView +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed$Imperial: double Value +retrofit2.adapter.rxjava2.CallExecuteObservable$CallDisposable: retrofit2.Call call +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: boolean isDisposed() +android.didikee.donate.R$attr: int activityChooserViewStyle +io.reactivex.Observable: io.reactivex.Observable using(java.util.concurrent.Callable,io.reactivex.functions.Function,io.reactivex.functions.Consumer) +com.google.android.material.R$styleable: int AppCompatSeekBar_tickMark +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String type +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_navigationIcon +com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_UNDERSCORES +com.bumptech.glide.integration.okhttp.R$attr: int layout_keyline +wangdaye.com.geometricweather.R$attr: int autoCompleteTextViewStyle +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: io.reactivex.disposables.Disposable upstream +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputLayout_OutlinedBox_Dense +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless +androidx.swiperefreshlayout.R$styleable: int ColorStateListItem_android_alpha +cyanogenmod.themes.ThemeManager$1: ThemeManager$1(cyanogenmod.themes.ThemeManager) +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_dividerPadding +cyanogenmod.externalviews.ExternalViewProviderService: android.os.Handler access$100(cyanogenmod.externalviews.ExternalViewProviderService) +wangdaye.com.geometricweather.R$string: int widget_week +androidx.appcompat.widget.ActionBarContextView: ActionBarContextView(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ImageButton +android.didikee.donate.R$attr: int dropDownListViewStyle +cyanogenmod.app.ILiveLockScreenManager$Stub: java.lang.String DESCRIPTOR +com.google.android.material.chip.Chip: void setChipStrokeWidth(float) +androidx.preference.R$drawable: int abc_ic_menu_overflow_material +android.didikee.donate.R$dimen: int abc_select_dialog_padding_start_material +androidx.constraintlayout.widget.R$dimen: int notification_right_icon_size +com.google.android.material.R$color: int design_snackbar_background_color +com.google.android.material.R$attr: int actionModeStyle +cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_NETWORK_SETTINGS +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DHE_RSA_WITH_AES_128_CBC_SHA +wangdaye.com.geometricweather.R$integer: int mtrl_calendar_year_selector_span +androidx.activity.R$styleable: int[] GradientColorItem +cyanogenmod.weather.CMWeatherManager: cyanogenmod.weather.ICMWeatherManager sWeatherManagerService +wangdaye.com.geometricweather.R$styleable: int[] TouchScrollBar +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Precipitation: MfForecastResult$DailyForecast$Precipitation() +com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_shapeAppearance +com.google.android.material.R$animator: int mtrl_fab_show_motion_spec +com.tencent.bugly.proguard.ai: void a(java.lang.StringBuilder,int) +com.google.android.material.R$dimen: int abc_panel_menu_list_width +okhttp3.OkHttpClient: boolean retryOnConnectionFailure() +com.xw.repo.bubbleseekbar.R$id: int action_bar_spinner +androidx.appcompat.R$attr: int buttonPanelSideLayout +james.adaptiveicon.R$string: int abc_searchview_description_clear +com.tencent.bugly.BuglyStrategy: boolean isEnableUserInfo() +androidx.customview.R$layout: int notification_template_part_time +com.google.gson.stream.JsonReader: int NUMBER_CHAR_DECIMAL +com.google.android.material.R$styleable: int KeyTrigger_triggerSlack +androidx.activity.R$color: int notification_icon_bg_color +androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontWeight +com.google.android.material.R$attr: int listLayout +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_Layout_android_layout_width +okhttp3.Response: okhttp3.Request request wangdaye.com.geometricweather.R$dimen: int widget_grid_3 -cyanogenmod.providers.ThemesContract$ThemesColumns: java.lang.String PRESENT_AS_THEME -okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream newStream(int,java.util.List,boolean) -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: long serialVersionUID -androidx.activity.R$styleable: int GradientColor_android_type -androidx.recyclerview.R$id: int action_image -androidx.loader.R$id: int italic -wangdaye.com.geometricweather.common.ui.widgets.astro.SunMoonView: SunMoonView(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$ApparentTemperature: AccuCurrentResult$ApparentTemperature() -androidx.legacy.coreutils.R$drawable: int notification_tile_bg -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse -androidx.legacy.coreutils.R$dimen: int notification_large_icon_width -okio.Timeout: okio.Timeout deadlineNanoTime(long) -okhttp3.internal.http2.Http2Connection$6: int val$streamId -com.google.android.material.bottomnavigation.BottomNavigationView: android.content.res.ColorStateList getItemTextColor() -com.turingtechnologies.materialscrollbar.R$styleable: int[] CoordinatorLayout -wangdaye.com.geometricweather.R$id: int widget_clock_day_week -androidx.preference.R$interpolator: int btn_checkbox_checked_mtrl_animation_interpolator_0 -io.reactivex.Observable: io.reactivex.Single any(io.reactivex.functions.Predicate) -okhttp3.MultipartBody: okhttp3.MultipartBody$Part part(int) -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String MINUTES -cyanogenmod.externalviews.IKeyguardExternalViewCallbacks$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) -com.turingtechnologies.materialscrollbar.R$styleable: int ActionBarLayout_android_layout_gravity -androidx.lifecycle.LiveDataReactiveStreams$PublisherLiveData$LiveDataSubscriber$1: java.lang.Throwable val$ex -wangdaye.com.geometricweather.R$attr: int deltaPolarAngle -androidx.constraintlayout.widget.R$attr: int dialogPreferredPadding -androidx.preference.R$styleable: int AppCompatImageView_tintMode -retrofit2.Retrofit: okhttp3.Call$Factory callFactory -com.bumptech.glide.R$layout: int notification_action_tombstone -com.bumptech.glide.integration.okhttp.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$RealFeelTemperatureShade$Minimum: int UnitType -com.google.android.material.R$styleable: int Transform_android_rotation -com.amap.api.location.AMapLocation: java.lang.String a(com.amap.api.location.AMapLocation,java.lang.String) -androidx.vectordrawable.R$integer: int status_bar_notification_info_maxnum -cyanogenmod.providers.CMSettings$Global: cyanogenmod.providers.CMSettings$NameValueCache sNameValueCache -io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: java.lang.Throwable error -androidx.work.R$styleable: int[] ColorStateListItem -androidx.customview.R$dimen: int notification_top_pad_large_text -androidx.constraintlayout.widget.R$drawable: int abc_cab_background_internal_bg -androidx.constraintlayout.widget.R$styleable: int AppCompatTextView_android_textAppearance -cyanogenmod.content.Intent: java.lang.String URI_SCHEME_PACKAGE -com.amap.api.fence.GeoFenceClient: void addGeoFence(java.lang.String,java.lang.String,com.amap.api.location.DPoint,float,int,java.lang.String) -cyanogenmod.alarmclock.ClockContract$InstancesColumns: java.lang.String MONTH -cyanogenmod.app.CustomTile: void writeToParcel(android.os.Parcel,int) -androidx.work.R$attr: int font -com.google.android.material.R$drawable: int abc_popup_background_mtrl_mult -androidx.viewpager2.R$style: int Widget_Compat_NotificationActionText -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Float getDaytimeSnowPrecipitationProbability() -com.tencent.bugly.proguard.n: java.lang.String d -com.amap.api.location.AMapLocationQualityReport: long f -wangdaye.com.geometricweather.R$attr: int preferenceCategoryTitleTextAppearance -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: java.lang.String getInterfaceDescriptor() -io.reactivex.internal.operators.observable.ObservableFlatMap$InnerObserver: long id -com.turingtechnologies.materialscrollbar.R$id: int alertTitle -wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit -androidx.preference.R$style: int TextAppearance_AppCompat_Headline -wangdaye.com.geometricweather.R$styleable: int Toolbar_android_gravity -wangdaye.com.geometricweather.R$id: int search_mag_icon -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderLayout -androidx.preference.R$styleable: int FontFamily_fontProviderAuthority -androidx.constraintlayout.widget.R$styleable: int SwitchCompat_splitTrack -com.google.android.material.R$id: int withinBounds -com.turingtechnologies.materialscrollbar.R$attr: int autoSizePresetSizes -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256 -james.adaptiveicon.R$dimen: int notification_small_icon_background_padding -com.turingtechnologies.materialscrollbar.R$color: int primary_material_light -cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onAttach(android.os.IBinder) -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric Metric -com.google.android.gms.common.R$integer: R$integer() -androidx.constraintlayout.widget.R$attr: int elevation -com.google.android.material.R$styleable: int MotionTelltales_telltales_tailColor -wangdaye.com.geometricweather.R$style: int widget_text_clock_aa -okhttp3.internal.http.RealResponseBody: okio.BufferedSource source -okhttp3.internal.http2.ErrorCode -androidx.appcompat.R$attr: int preserveIconSpacing -com.google.android.material.R$styleable: int KeyCycle_android_translationZ -com.google.android.material.timepicker.TimePickerView: void addOnRotateListener(com.google.android.material.timepicker.ClockHandView$OnRotateListener) -androidx.viewpager.R$id: int action_divider -wangdaye.com.geometricweather.R$array: int speed_unit_voices -com.google.android.material.R$dimen: int abc_text_size_medium_material -okhttp3.Cache$Entry: Cache$Entry(okio.Source) -androidx.viewpager2.R$dimen: int notification_big_circle_margin -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.ObservableSource source -james.adaptiveicon.R$attr: int windowFixedHeightMajor -androidx.coordinatorlayout.R$styleable: int FontFamily_fontProviderPackage -android.didikee.donate.R$drawable: int notification_icon_background -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 -cyanogenmod.app.CustomTile: boolean collapsePanel -io.reactivex.internal.operators.flowable.FlowableConcatMap$BaseConcatMapSubscriber: org.reactivestreams.Subscription upstream -wangdaye.com.geometricweather.R$attr: int enabled -io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: boolean cancelled -com.google.android.material.R$dimen: int design_fab_border_width -wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String timezone -com.xw.repo.bubbleseekbar.R$attr: int buttonBarPositiveButtonStyle -androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_Dialog -cyanogenmod.app.StatusBarPanelCustomTile$1 -wangdaye.com.geometricweather.R$dimen: int mtrl_fab_translation_z_pressed -wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: java.lang.Float co -okio.BufferedSink: okio.BufferedSink writeUtf8(java.lang.String,int,int) -androidx.lifecycle.Lifecycling: java.util.Map sClassToAdapters -androidx.appcompat.R$dimen: int compat_control_corner_material -okio.Source: long read(okio.Buffer,long) -wangdaye.com.geometricweather.R$attr: int dialogCornerRadius -wangdaye.com.geometricweather.R$string: int key_background_free -com.google.android.material.textfield.TextInputLayout: android.content.res.ColorStateList getDefaultHintTextColor() +io.reactivex.internal.schedulers.RxThreadFactory: boolean nonBlocking +okhttp3.internal.connection.RealConnection: void onStream(okhttp3.internal.http2.Http2Stream) +wangdaye.com.geometricweather.R$attr: int rangeFillColor +wangdaye.com.geometricweather.R$attr: int persistent +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_tooltipForegroundColor +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String q +cyanogenmod.providers.CMSettings$System: java.lang.String BACK_WAKE_SCREEN +com.google.android.material.R$attr: int shapeAppearanceOverlay +com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_simple_overlay_action_mode +androidx.appcompat.widget.AppCompatTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure: java.lang.String comment +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy$a o +wangdaye.com.geometricweather.R$attr: int tabPadding +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation$Wind: java.lang.String icon +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: int UnitType +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: int getTemperature() +androidx.preference.R$styleable: int AppCompatTheme_radioButtonStyle +james.adaptiveicon.R$attr: int commitIcon +wangdaye.com.geometricweather.R$string: int content_des_delete_flag +okhttp3.OkHttpClient$Builder: okhttp3.internal.tls.CertificateChainCleaner certificateChainCleaner +com.google.android.material.R$styleable: int KeyTimeCycle_android_rotation +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: java.lang.Integer max +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Metric: AccuCurrentResult$Pressure$Metric() +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver: ObservableFlatMapSingle$FlatMapSingleObserver$InnerObserver(io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTabTextStyle +org.greenrobot.greendao.AbstractDao: org.greenrobot.greendao.query.Query queryRawCreateListArgs(java.lang.String,java.util.Collection) +okhttp3.internal.http2.Http2Connection$1 +com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColor(int) +okio.Buffer: int readInt() +retrofit2.http.Header +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_percent +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider: void onLockscreenSlideOffsetChanged(float) +com.jaredrummler.android.colorpicker.R$drawable: int abc_scrubber_control_to_pressed_mtrl_000 +okio.RealBufferedSink: okio.BufferedSink writeByte(int) +okhttp3.internal.http.BridgeInterceptor: java.lang.String cookieHeader(java.util.List) +androidx.appcompat.R$attr: int spinnerStyle +android.didikee.donate.R$styleable: int ActivityChooserView_initialActivityCount +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getTotalPrecipitation() +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Humidity: MfForecastResult$DailyForecast$Humidity() +okhttp3.internal.cache.CacheStrategy$Factory: long receivedResponseMillis +okio.Pipe: okio.Sink sink() +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: java.lang.Object leaveTransform(java.lang.Object) +com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog +androidx.preference.R$attr: int progressBarPadding +com.bumptech.glide.load.engine.DecodeJob$Stage: com.bumptech.glide.load.engine.DecodeJob$Stage valueOf(java.lang.String) +androidx.vectordrawable.animated.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.weather.json.mf.MfCurrentResult$Observation: MfCurrentResult$Observation() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: int getStatus() +com.google.android.material.internal.ParcelableSparseBooleanArray: android.os.Parcelable$Creator CREATOR +android.didikee.donate.R$styleable: int Toolbar_titleMarginEnd +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: AndroidPlatform$AndroidTrustRootIndex(javax.net.ssl.X509TrustManager,java.lang.reflect.Method) +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: void startNativeMonitor() +com.amap.api.location.AMapLocation: double a(com.amap.api.location.AMapLocation,double) +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher +wangdaye.com.geometricweather.R$layout: int widget_multi_city_horizontal +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_popupWindowStyle +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginStart +com.google.android.material.button.MaterialButton: int getIconPadding() +com.amap.api.fence.GeoFence: long p +okhttp3.CookieJar +james.adaptiveicon.R$style: int Theme_AppCompat_Light +com.google.android.material.R$attr: int layout_constraintEnd_toStartOf +wangdaye.com.geometricweather.db.entities.DaoMaster: wangdaye.com.geometricweather.db.entities.DaoSession newSession() +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawableItem_android_drawable +wangdaye.com.geometricweather.db.entities.DaoMaster$OpenHelper: DaoMaster$OpenHelper(android.content.Context,java.lang.String) +androidx.appcompat.R$dimen: int abc_dialog_list_padding_top_no_title +okio.DeflaterSink: java.lang.String toString() +org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Iterable) +androidx.constraintlayout.widget.R$styleable: int ActionBar_icon +androidx.preference.R$drawable: int abc_btn_default_mtrl_shape +wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_light +com.google.android.material.R$styleable: int AppCompatSeekBar_tickMarkTint +androidx.preference.R$attr: int useSimpleSummaryProvider +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginRight +com.google.android.material.R$style: int ShapeAppearanceOverlay_MaterialComponents_FloatingActionButton +android.support.v4.os.ResultReceiver: android.support.v4.os.IResultReceiver mReceiver +com.google.android.material.R$color: int design_default_color_primary_dark +com.github.rahatarmanahmed.cpv.R$bool: int cpv_default_anim_autostart +com.bumptech.glide.R$attr: int fontVariationSettings +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_toRightOf +retrofit2.http.Field: boolean encoded() +androidx.preference.R$attr: int editTextBackground +wangdaye.com.geometricweather.remoteviews.config.Hilt_DayWeekWidgetConfigActivity +com.google.android.gms.signin.internal.zam +androidx.hilt.work.R$id: int accessibility_custom_action_15 +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit ATM +io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutFallbackObserver: void onTimeoutError(long,java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult +wangdaye.com.geometricweather.R$drawable: int widget_day +android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_PopupMenu +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: void setWindDircEnd(java.lang.String) +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +androidx.constraintlayout.widget.R$attr: int navigationContentDescription +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getTreeLevel() +android.didikee.donate.R$integer: int abc_config_activityShortDur +okio.RealBufferedSource: int select(okio.Options) +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Light_ActionBar_Solid +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMarginEnd +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setForecast(java.util.List) +retrofit2.adapter.rxjava2.RxJava2CallAdapter: java.lang.reflect.Type responseType +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: void setCircularRevealScrimColor(int) +androidx.dynamicanimation.R$id: int chronometer +com.tencent.bugly.crashreport.CrashReport$WebViewInterface: void addJavascriptInterface(com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface,java.lang.String) +okio.Buffer: long indexOf(byte,long,long) +androidx.preference.R$attr: int alpha +com.turingtechnologies.materialscrollbar.R$attr: int layout_anchorGravity +wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) +androidx.core.widget.NestedScrollView$SavedState: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$string: int background_information +android.didikee.donate.R$drawable: int abc_list_selector_holo_light +wangdaye.com.geometricweather.R$string: int character_counter_content_description +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem +androidx.constraintlayout.widget.R$dimen: int abc_text_size_subtitle_material_toolbar +androidx.preference.R$dimen: int notification_media_narrow_margin +com.google.android.material.R$attr: int defaultQueryHint +androidx.preference.R$drawable: int btn_radio_off_to_on_mtrl_animation +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onPositiveCross +okhttp3.logging.HttpLoggingInterceptor: void logHeader(okhttp3.Headers,int) +cyanogenmod.themes.IThemeProcessingListener$Stub$Proxy: android.os.IBinder mRemote +okhttp3.internal.http1.Http1Codec: boolean isClosed() +com.tencent.bugly.crashreport.CrashReport: void postCatchedException(java.lang.Throwable,java.lang.Thread) +io.reactivex.internal.subscriptions.SubscriptionHelper +wangdaye.com.geometricweather.db.entities.DailyEntity: long getTime() +okhttp3.RequestBody: okhttp3.RequestBody create(okhttp3.MediaType,java.lang.String) +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Dialog_FixedSize +androidx.appcompat.widget.LinearLayoutCompat: void setDividerPadding(int) +android.didikee.donate.R$attr: int actionBarTheme +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_numericModifiers +okhttp3.RequestBody$3: okhttp3.MediaType val$contentType +okhttp3.internal.platform.Android10Platform: Android10Platform(java.lang.Class) +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setUvLevel(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX: java.lang.String getDirection() +android.didikee.donate.R$dimen: int abc_config_prefDialogWidth +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric: int UnitType +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_barrierAllowsGoneWidgets +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Wind$Speed: AccuCurrentResult$Wind$Speed() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPathRenderer: int getRootAlpha() +james.adaptiveicon.R$color: int material_deep_teal_200 +androidx.recyclerview.widget.RecyclerView: void setOnScrollListener(androidx.recyclerview.widget.RecyclerView$OnScrollListener) +androidx.viewpager2.widget.ViewPager2: ViewPager2(android.content.Context) +com.google.android.material.R$attr: int drawableSize +androidx.appcompat.widget.AppCompatCheckBox: android.graphics.PorterDuff$Mode getSupportButtonTintMode() +com.google.android.material.R$attr: int snackbarTextViewStyle +wangdaye.com.geometricweather.R$id: int spread +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: int AQI_INDEX_2 +wangdaye.com.geometricweather.R$string: int date_format_widget_oreo_style +wangdaye.com.geometricweather.R$string: int time +okhttp3.internal.http2.Http2Stream: okhttp3.internal.http2.Http2Connection getConnection() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$LocalSource LocalSource +wangdaye.com.geometricweather.R$color: int design_default_color_secondary +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setDisplayMode(cyanogenmod.hardware.DisplayMode,boolean) +androidx.appcompat.R$color: int accent_material_dark +wangdaye.com.geometricweather.R$id: int activity_preview_icon_container +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: AbsTrendItemView(android.content.Context,android.util.AttributeSet) +cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.CMStatusBarManager getInstance(android.content.Context) +com.google.android.material.R$color: int error_color_material_dark +com.google.android.gms.base.R$color: int common_google_signin_btn_text_dark +androidx.lifecycle.extensions.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit: java.lang.String unitAbbreviation +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String o3 +okhttp3.HttpUrl: java.lang.String percentDecode(java.lang.String,int,int,boolean) +cyanogenmod.hardware.ThermalListenerCallback$State: ThermalListenerCallback$State() +androidx.fragment.R$integer: int status_bar_notification_info_maxnum +androidx.appcompat.R$string: int abc_menu_alt_shortcut_label +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property DegreeDayTemperature +androidx.appcompat.R$styleable: int PopupWindowBackgroundState_state_above_anchor +com.tencent.bugly.crashreport.common.info.a: long S +com.tencent.bugly.proguard.h: int b +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Past24HourTemperatureDeparture Past24HourTemperatureDeparture +okhttp3.EventListener: okhttp3.EventListener$Factory factory(okhttp3.EventListener) +androidx.recyclerview.R$drawable: int notification_bg +cyanogenmod.hardware.ICMHardwareService$Stub: int TRANSACTION_getDefaultDisplayMode +cyanogenmod.os.Build$CM_VERSION_CODES: Build$CM_VERSION_CODES() +retrofit2.RequestFactory: java.lang.String httpMethod +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_Button_Borderless_Colored +com.xw.repo.bubbleseekbar.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 +androidx.viewpager.R$styleable: int FontFamilyFont_fontStyle +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_DropDown_ActionBar +androidx.appcompat.R$styleable: int ActionBarLayout_android_layout_gravity +wangdaye.com.geometricweather.R$dimen: int cpv_color_preference_large +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts +com.google.android.material.R$style: int Base_Widget_AppCompat_ProgressBar_Horizontal +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator HIGH_TOUCH_SENSITIVITY_ENABLE_VALIDATOR +com.bumptech.glide.R$id: int line3 +com.bumptech.glide.R$styleable: int FontFamily_fontProviderFetchTimeout +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_editor_absoluteY +wangdaye.com.geometricweather.R$id: int container_main_details +james.adaptiveicon.R$layout: int support_simple_spinner_dropdown_item +okhttp3.Response$Builder: okhttp3.Response networkResponse +wangdaye.com.geometricweather.R$drawable: int notif_temp_6 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_89 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setTitle(java.lang.String) +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Text +io.reactivex.Observable: io.reactivex.Observable mergeWith(io.reactivex.MaybeSource) +com.jaredrummler.android.colorpicker.R$color: int material_grey_50 +com.jaredrummler.android.colorpicker.R$id: int right_side +io.reactivex.internal.operators.observable.ObservableTakeLast$TakeLastObserver: boolean cancelled +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_SearchView +com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Determinate +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_drawableStartCompat +androidx.legacy.coreutils.R$styleable: int GradientColor_android_gradientRadius +cyanogenmod.providers.CMSettings$System: java.lang.String KEY_ASSIST_ACTION +com.google.android.material.R$attr: int layout_constraintCircleRadius +androidx.constraintlayout.widget.R$layout: int abc_list_menu_item_icon +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: void attachEntity(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Area +com.google.android.material.R$styleable: int[] ShapeableImageView +com.jaredrummler.android.colorpicker.R$styleable: int[] TextAppearance +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay: java.util.List toDailyTrendDisplayList(java.lang.String) +android.didikee.donate.R$attr: int collapseContentDescription +androidx.preference.R$style: int Preference_SeekBarPreference +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +wangdaye.com.geometricweather.R$styleable: int[] AnimatedStateListDrawableItem +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeRealFeelShaderTemperature +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_corner_radius +com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.crashreport.crash.a b(android.database.Cursor) +android.didikee.donate.R$drawable: int abc_list_selector_background_transition_holo_light +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_activated_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$attr: int dividerVertical +cyanogenmod.hardware.ICMHardwareService: int[] getVibratorIntensity() +androidx.constraintlayout.widget.R$styleable: int Toolbar_title +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver CANCELLED +cyanogenmod.app.ProfileGroup: cyanogenmod.app.ProfileGroup$Mode getVibrateMode() +com.google.android.material.floatingactionbutton.FloatingActionButton: void setCompatPressedTranslationZ(float) +cyanogenmod.app.CustomTile$ListExpandedStyle: CustomTile$ListExpandedStyle() +androidx.hilt.lifecycle.R$dimen: int notification_top_pad_large_text +okhttp3.internal.ws.RealWebSocket: long CANCEL_AFTER_CLOSE_MILLIS +wangdaye.com.geometricweather.common.ui.behaviors.InkPageIndicatorBehavior +io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_CONSUMED +retrofit2.SkipCallbackExecutorImpl: boolean equals(java.lang.Object) +com.google.android.material.R$attr: int thumbTint +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String originUrl +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginLeft +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layoutDescription +wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.AlertEntity) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: io.reactivex.CompletableObserver downstream +james.adaptiveicon.R$styleable: int AppCompatTheme_radioButtonStyle +wangdaye.com.geometricweather.R$drawable: int notif_temp_111 +wangdaye.com.geometricweather.R$drawable: int notif_temp_128 +android.didikee.donate.R$styleable: int ActionMenuItemView_android_minWidth +wangdaye.com.geometricweather.R$dimen: int design_snackbar_min_width +androidx.appcompat.R$styleable: int SearchView_queryHint +androidx.swiperefreshlayout.R$attr: int fontVariationSettings +androidx.lifecycle.Lifecycling$1: void onStateChanged(androidx.lifecycle.LifecycleOwner,androidx.lifecycle.Lifecycle$Event) +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findJvmPlatform() +wangdaye.com.geometricweather.common.basic.models.weather.Base: java.util.Date updateDate +com.google.android.gms.base.R$string: int common_open_on_phone +james.adaptiveicon.R$dimen: int abc_action_bar_icon_vertical_padding_material +com.xw.repo.bubbleseekbar.R$dimen: int notification_subtext_size +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Title +retrofit2.KotlinExtensions$awaitResponse$$inlined$suspendCancellableCoroutine$lambda$1 +cyanogenmod.app.LiveLockScreenInfo: android.content.ComponentName component +io.reactivex.internal.subscriptions.SubscriptionHelper: boolean replace(java.util.concurrent.atomic.AtomicReference,org.reactivestreams.Subscription) +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabInlineLabel +androidx.constraintlayout.widget.R$styleable: int Transform_android_transformPivotX +wangdaye.com.geometricweather.R$attr: int elevation +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_Dialog_FixedSize +io.reactivex.Observable: io.reactivex.Observable takeLast(long,long,java.util.concurrent.TimeUnit) +io.reactivex.internal.operators.observable.ObservableWindowBoundarySupplier$WindowBoundaryMainObserver: void dispose() +com.turingtechnologies.materialscrollbar.R$attr: int maxActionInlineWidth +com.google.android.material.R$anim: int btn_radio_to_off_mtrl_ring_outer_path_animation +androidx.core.app.CoreComponentFactory +wangdaye.com.geometricweather.R$string: int wind_8 +androidx.constraintlayout.widget.R$styleable: int AppCompatTextHelper_android_drawableRight +com.google.android.material.R$attr: int layout_constraintRight_toRightOf +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: float getStrokeWidth() +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderTitle +cyanogenmod.library.R$attr: R$attr() +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabContentStart +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void onSubscribe(io.reactivex.disposables.Disposable) +cyanogenmod.providers.DataUsageContract: int COLUMN_OF_UID +com.amap.api.location.AMapLocationClientOption: boolean q +com.google.android.material.R$styleable: int Chip_chipBackgroundColor +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getDistrict() +com.google.android.material.R$attr: int actionBarTabBarStyle +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeIcePrecipitation(java.lang.Float) +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_height +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getStreet_number() +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Headline +okhttp3.Cookie: Cookie(java.lang.String,java.lang.String,long,java.lang.String,java.lang.String,boolean,boolean,boolean,boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionBarStyle +com.bumptech.glide.R$styleable: R$styleable() +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Large +com.google.android.material.textfield.TextInputLayout: void setBoxBackgroundColorStateList(android.content.res.ColorStateList) +com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable +androidx.preference.R$id: int text +james.adaptiveicon.R$color: int notification_icon_bg_color +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Sun: long EpochRise +androidx.constraintlayout.widget.R$styleable: int KeyTimeCycle_motionTarget +com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode: com.turingtechnologies.materialscrollbar.MaterialScrollBar$ScrollMode LAST_ELEMENT +android.didikee.donate.R$string: int search_menu_title +cyanogenmod.externalviews.KeyguardExternalView$2: KeyguardExternalView$2(cyanogenmod.externalviews.KeyguardExternalView) +androidx.preference.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +wangdaye.com.geometricweather.R$attr: int indicatorSize +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_horizontalDivider +io.reactivex.internal.operators.observable.ObservableWindow$WindowExactObserver: long count +com.jaredrummler.android.colorpicker.R$id: int decor_content_parent +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_closeIcon +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog +androidx.constraintlayout.widget.R$styleable: int KeyPosition_percentY +james.adaptiveicon.R$attr: int autoSizeMaxTextSize +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setNotification(java.lang.String) +com.turingtechnologies.materialscrollbar.R$layout: int abc_screen_simple +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int AlertID +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX: void setStatus(int) +com.google.android.gms.location.LocationAvailability +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: java.lang.String Unit +com.google.android.material.R$styleable: int FontFamilyFont_android_ttcIndex +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Update +wangdaye.com.geometricweather.R$color: int design_default_color_background +okhttp3.internal.proxy.NullProxySelector +com.google.android.material.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +io.reactivex.internal.functions.Functions$HashSetCallable: java.util.Set call() +okhttp3.internal.Util$1: Util$1() +com.tencent.bugly.crashreport.crash.jni.b: void a(boolean,java.lang.String) +androidx.appcompat.R$styleable: int MenuItem_android_checkable +okhttp3.HttpUrl: void canonicalize(okio.Buffer,java.lang.String,int,int,java.lang.String,boolean,boolean,boolean,boolean,java.nio.charset.Charset) +com.amap.api.fence.GeoFence: java.lang.String getCustomId() +cyanogenmod.hardware.CMHardwareManager: int[] getVibratorIntensityArray() +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: java.lang.String getDensityText(android.content.Context,float) +wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: void drain() +wangdaye.com.geometricweather.R$id: int aligned +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_errorTextColor +androidx.work.R$styleable: int FontFamilyFont_android_fontWeight +com.google.android.material.R$attr: int cornerFamilyBottomLeft +com.google.android.material.R$attr: int tabIconTint +androidx.recyclerview.R$id: int tag_accessibility_clickable_spans +androidx.constraintlayout.motion.widget.MotionLayout: void setTransitionState(android.os.Bundle) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureBuffer$BackpressureBufferSubscriber: boolean delayError +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionButton_Overflow +okhttp3.internal.http2.Http2Stream: java.util.Deque headersQueue +wangdaye.com.geometricweather.R$styleable: int ArcProgress_bottom_text +cyanogenmod.os.Build: java.lang.String CYANOGENMOD_DISPLAY_VERSION +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Inverse +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarTabStyle +wangdaye.com.geometricweather.R$id: int activity_about_toolbar +androidx.appcompat.widget.ActionBarOverlayLayout: void setIcon(int) +androidx.vectordrawable.R$style: R$style() +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_getNotificationGroup +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper$b: boolean a(long,long,java.lang.String) +androidx.constraintlayout.widget.R$drawable: int abc_list_selector_holo_light +androidx.constraintlayout.widget.R$attr: int barLength +wangdaye.com.geometricweather.R$id: int notification_big_temp_5 +io.reactivex.internal.operators.observable.ObservableTimer$TimerObserver: long serialVersionUID +com.google.android.material.R$attr: int liftOnScrollTargetViewId +androidx.constraintlayout.widget.R$dimen: int abc_text_size_title_material +okhttp3.Dispatcher: java.util.List queuedCalls() +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: void onError(java.lang.Throwable) +androidx.preference.R$attr: int subtitleTextColor +androidx.hilt.R$styleable: int FragmentContainerView_android_tag +wangdaye.com.geometricweather.R$attr: int layout_goneMarginLeft +com.amap.api.fence.GeoFence +androidx.lifecycle.extensions.R$id: int tag_transition_group +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_icon_size +wangdaye.com.geometricweather.R$string: int degree_day_temperature +androidx.appcompat.view.menu.ExpandedMenuView: ExpandedMenuView(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$attr: int viewInflaterClass +retrofit2.CompletableFutureCallAdapterFactory$BodyCallAdapter: java.lang.Object adapt(retrofit2.Call) +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments$WarningTextBlocItem: java.lang.String titleHtml +com.jaredrummler.android.colorpicker.R$styleable: int Preference_android_enabled +wangdaye.com.geometricweather.R$styleable: int MenuItem_showAsAction +wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource: wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource getInstance(java.lang.String) +okhttp3.internal.ws.RealWebSocket: java.util.concurrent.ScheduledFuture cancelFuture +retrofit2.adapter.rxjava2.BodyObservable$BodyObserver: void onSubscribe(io.reactivex.disposables.Disposable) +com.jaredrummler.android.colorpicker.R$attr: int buttonBarStyle +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType QueryUnique +wangdaye.com.geometricweather.resource.utils.ResourceUtils$NullResourceIdException: ResourceUtils$NullResourceIdException() +com.amap.api.location.AMapLocation: int ERROR_CODE_UNKNOWN +androidx.activity.R$id: int accessibility_custom_action_28 +com.google.android.material.R$string: int abc_searchview_description_voice +androidx.vectordrawable.animated.R$dimen: int notification_big_circle_margin +androidx.preference.R$styleable: int MenuItem_showAsAction +androidx.lifecycle.Transformations$1: androidx.arch.core.util.Function val$mapFunction +wangdaye.com.geometricweather.R$string: int done +androidx.coordinatorlayout.R$id: int accessibility_custom_action_2 +okhttp3.Address: java.util.List connectionSpecs +androidx.hilt.work.R$styleable: int GradientColor_android_centerY +androidx.appcompat.R$style: int Platform_V21_AppCompat_Light +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: void drain() +androidx.hilt.work.R$attr: int fontProviderFetchStrategy +com.jaredrummler.android.colorpicker.R$dimen: int abc_action_bar_stacked_max_height +cyanogenmod.providers.CMSettings$Global: java.lang.String ZEN_DISABLE_DUCKING_DURING_MEDIA_PLAYBACK +com.google.android.material.R$drawable: int abc_ic_star_half_black_48dp +okhttp3.internal.http2.Http2Connection$7: okhttp3.internal.http2.Http2Connection this$0 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX: java.lang.String getZh_CN() +android.didikee.donate.R$style: int Base_Widget_AppCompat_ButtonBar_AlertDialog +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$AdministrativeArea AdministrativeArea +wangdaye.com.geometricweather.R$attr: int selectionRequired +com.google.android.gms.common.internal.safeparcel.AbstractSafeParcelable +androidx.constraintlayout.widget.R$style: int Base_Theme_AppCompat_Dialog_FixedSize +cyanogenmod.weatherservice.WeatherProviderService: android.os.IBinder onBind(android.content.Intent) +androidx.constraintlayout.widget.R$dimen: int abc_search_view_preferred_height android.didikee.donate.R$layout: R$layout() -androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_fontWeight -cyanogenmod.externalviews.KeyguardExternalView$2: void onDetachedFromWindow() -androidx.vectordrawable.R$id: int blocking -com.google.gson.stream.JsonReader: JsonReader(java.io.Reader) -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event valueOf(java.lang.String) -wangdaye.com.geometricweather.R$styleable: int[] FitSystemBarNestedScrollView -io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber: void cancel() -com.google.android.material.bottomnavigation.BottomNavigationMenuView -wangdaye.com.geometricweather.R$layout: int mtrl_picker_fullscreen -com.google.android.material.R$dimen: int abc_edit_text_inset_bottom_material -io.reactivex.internal.operators.flowable.FlowableRepeatWhen$WhenSourceSubscriber: void cancel() -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: java.lang.Integer RIGHT_VALUE -androidx.appcompat.R$id: int action_menu_divider -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation$Imperial: java.lang.String Unit -wangdaye.com.geometricweather.R$string: int key_notification_background_color -com.google.android.material.R$styleable: int Layout_barrierDirection -okhttp3.internal.ws.RealWebSocket: int sentPingCount -com.google.android.material.R$styleable: int RecyclerView_spanCount -com.xw.repo.bubbleseekbar.R$dimen: int notification_large_icon_width -androidx.constraintlayout.widget.R$styleable: int[] AppCompatSeekBar -retrofit2.HttpServiceMethod$CallAdapted -wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float getThunderstorm() -android.didikee.donate.R$drawable: int abc_list_pressed_holo_dark -io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.Observer downstream -wangdaye.com.geometricweather.R$layout: int abc_dialog_title_material -androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginEnd -cyanogenmod.profiles.ConnectionSettings: cyanogenmod.profiles.ConnectionSettings fromXml(org.xmlpull.v1.XmlPullParser,android.content.Context) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: CaiYunMainlyResult$ForecastDailyBean$WeatherBean() -com.google.android.material.R$styleable: int ConstraintSet_android_alpha -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitationDuration(java.lang.Float) -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_15 -wangdaye.com.geometricweather.R$style: int AndroidThemeColorAccentYellow -androidx.preference.R$styleable: int AppCompatTheme_actionBarWidgetTheme -okhttp3.internal.http2.Hpack: int PREFIX_7_BITS -wangdaye.com.geometricweather.R$dimen: int material_emphasis_high_type -wangdaye.com.geometricweather.R$styleable: int SearchView_iconifiedByDefault -com.tencent.bugly.proguard.z: java.lang.String a(java.lang.Throwable) -androidx.constraintlayout.widget.R$attr: int windowMinWidthMinor -retrofit2.ParameterHandler$QueryMap: boolean encoded -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetEnd -io.reactivex.Observable: io.reactivex.Observable takeUntil(io.reactivex.ObservableSource) -androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_keylines -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse -com.amap.api.location.AMapLocationClientOption: boolean isOffset() -androidx.lifecycle.LifecycleRegistry: androidx.lifecycle.Lifecycle$Event upEvent(androidx.lifecycle.Lifecycle$State) -wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningAdvice: java.lang.String textAdvice -com.google.android.material.internal.ForegroundLinearLayout: android.graphics.drawable.Drawable getForeground() -com.jaredrummler.android.colorpicker.R$id: int seekbar_value -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getDaytimeRealFeelTemperature() -cyanogenmod.app.IPartnerInterface: void shutdown() -com.google.android.material.R$style: int Widget_MaterialComponents_ProgressIndicator_Linear_Determinate -wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Long id -wangdaye.com.geometricweather.db.entities.HourlyEntityDao: boolean isEntityUpdateable() -com.google.android.material.R$styleable: int AppCompatTheme_actionButtonStyle -androidx.constraintlayout.widget.R$color: R$color() -com.google.android.material.R$id: int chronometer -com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIconTintMode -android.didikee.donate.R$style: int Widget_AppCompat_DropDownItem_Spinner -androidx.recyclerview.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -androidx.constraintlayout.widget.R$styleable: int OnSwipe_moveWhenScrollAtTop -androidx.preference.R$style: int Preference_DialogPreference_Material -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_textAppearanceListItem -androidx.preference.R$attr: int tintMode +com.amap.api.location.AMapLocationClientOption: float v +com.google.android.material.R$id: int jumpToEnd +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_imageButtonStyle +com.jaredrummler.android.colorpicker.R$color: int abc_color_highlight_material +wangdaye.com.geometricweather.R$attr: int cpv_colorPresets +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: android.os.IBinder asBinder() +androidx.preference.R$attr: int actionModeCopyDrawable +cyanogenmod.externalviews.KeyguardExternalViewProviderService$1$1: android.os.IBinder call() +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ListView_DropDown +com.google.android.material.R$dimen: int design_fab_border_width +androidx.work.impl.background.systemalarm.ConstraintProxy: ConstraintProxy() +com.turingtechnologies.materialscrollbar.R$attr: int tabMode +wangdaye.com.geometricweather.R$integer: int mtrl_badge_max_character_count +com.google.android.material.bottomnavigation.BottomNavigationMenuView: void setItemBackgroundRes(int) +com.turingtechnologies.materialscrollbar.R$styleable: int BottomNavigationView_itemRippleColor +com.google.android.material.datepicker.MaterialCalendar: MaterialCalendar() +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$DegreeDaySummary$Cooling +com.google.android.material.R$attr: int indicatorCornerRadius +androidx.preference.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature +androidx.legacy.coreutils.R$string: R$string() +wangdaye.com.geometricweather.R$styleable: int Constraint_android_rotationX +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month +androidx.fragment.R$style: R$style() +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.String getWeatherPhase() +com.google.android.gms.common.internal.zag +wangdaye.com.geometricweather.db.entities.WeatherEntity: long updateTime +com.amap.api.fence.DistrictItem: android.os.Parcelable$Creator getCreator() +com.tencent.bugly.crashreport.crash.c: java.lang.Boolean x +wangdaye.com.geometricweather.background.receiver.widget.WidgetTrendHourlyProvider: WidgetTrendHourlyProvider() +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub: int TRANSACTION_createExternalView_0 +androidx.viewpager2.R$id: int accessibility_custom_action_18 +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable publish() +androidx.appcompat.R$attr: int displayOptions +com.google.android.material.R$dimen: int mtrl_calendar_year_height +com.amap.api.fence.GeoFence: void setEnterTime(long) +james.adaptiveicon.R$attr: int actionDropDownStyle +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_ButtonBar_AlertDialog +androidx.preference.R$style: int Widget_AppCompat_Light_ActionBar_TabText_Inverse +okhttp3.internal.cache.CacheInterceptor$1: CacheInterceptor$1(okhttp3.internal.cache.CacheInterceptor,okio.BufferedSource,okhttp3.internal.cache.CacheRequest,okio.BufferedSink) +okhttp3.EventListener$2: okhttp3.EventListener val$listener +androidx.appcompat.R$styleable: int MenuItem_actionLayout +com.google.android.material.R$styleable: int ActionMode_backgroundSplit +androidx.work.NetworkType: androidx.work.NetworkType UNMETERED +androidx.work.ExistingPeriodicWorkPolicy: androidx.work.ExistingPeriodicWorkPolicy REPLACE +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Title +com.google.gson.internal.$Gson$Types$GenericArrayTypeImpl: long serialVersionUID +okhttp3.internal.ws.WebSocketProtocol: int B0_FLAG_RSV2 +james.adaptiveicon.R$styleable: int MenuItem_android_title +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_homeAsUpIndicator +com.tencent.bugly.crashreport.CrashReport: void testNativeCrash() +com.google.android.material.appbar.AppBarLayout: void addOnOffsetChangedListener(com.google.android.material.appbar.AppBarLayout$OnOffsetChangedListener) +wangdaye.com.geometricweather.R$styleable: int CustomAttribute_customIntegerValue +okio.Okio$4: Okio$4(java.net.Socket) +cyanogenmod.hardware.DisplayMode +com.google.android.material.datepicker.MaterialDatePicker: MaterialDatePicker() +com.turingtechnologies.materialscrollbar.R$dimen: int abc_seekbar_track_background_height_material +androidx.swiperefreshlayout.R$styleable: int SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor +com.xw.repo.bubbleseekbar.R$attr: int defaultQueryHint +androidx.constraintlayout.widget.R$id: int icon_group +androidx.constraintlayout.widget.R$styleable: int[] MotionHelper +com.google.android.material.R$styleable: int Toolbar_contentInsetLeft +android.didikee.donate.R$id: int search_bar +wangdaye.com.geometricweather.R$id: int item_weather_daily_air_progress +cyanogenmod.themes.IThemeService$Stub: IThemeService$Stub() +wangdaye.com.geometricweather.R$styleable: int State_constraints +io.reactivex.internal.operators.single.SingleToObservable$SingleToObservableObserver: void dispose() +okhttp3.RealCall: okhttp3.Request originalRequest +com.jaredrummler.android.colorpicker.R$id: int custom +androidx.constraintlayout.widget.R$styleable: int[] AlertDialog +androidx.hilt.R$styleable: int Fragment_android_tag +com.jaredrummler.android.colorpicker.R$styleable: int SwitchCompat_thumbTextPadding +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_recyclerView +okio.Buffer: java.io.OutputStream outputStream() +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addPathSegments(java.lang.String) +cyanogenmod.app.ThemeVersion$ComponentVersion: cyanogenmod.app.ThemeComponent getComponent() +com.turingtechnologies.materialscrollbar.R$drawable: int abc_tab_indicator_mtrl_alpha +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Button +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPm10(java.lang.Float) +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_content_3 +cyanogenmod.hardware.CMHardwareManager: boolean set(int,boolean) +cyanogenmod.app.ICMTelephonyManager: void setDataConnectionSelectedOnSub(int) +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_itemBackground +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_activated_mtrl_alpha +retrofit2.RequestBuilder: void addFormField(java.lang.String,java.lang.String,boolean) +androidx.appcompat.R$styleable: int SearchView_android_imeOptions +james.adaptiveicon.R$style: int Widget_AppCompat_ActionButton +android.didikee.donate.R$style: int TextAppearance_AppCompat_Small_Inverse +wangdaye.com.geometricweather.R$color: int secondary_text_disabled_material_dark +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void run() +com.google.android.material.slider.Slider: void setTrackActiveTintList(android.content.res.ColorStateList) +com.amap.api.location.AMapLocation: void setCountry(java.lang.String) +com.amap.api.fence.GeoFence: java.util.List getPointList() +androidx.dynamicanimation.R$styleable: int FontFamilyFont_font +androidx.work.R$dimen: int notification_large_icon_height +com.google.android.gms.common.SignInButton: void setEnabled(boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_popupMenuStyle +cyanogenmod.app.LiveLockScreenManager: boolean getLiveLockScreenEnabled() +android.didikee.donate.R$styleable: int ActionBar_divider +androidx.preference.R$drawable: int abc_text_cursor_material +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestInnerObserver: void onError(java.lang.Throwable) +androidx.appcompat.R$style: int Base_Widget_AppCompat_Button +wangdaye.com.geometricweather.R$attr: int textAppearanceHeadline6 +androidx.constraintlayout.widget.R$styleable: int Transition_constraintSetStart +wangdaye.com.geometricweather.R$anim: int abc_slide_out_bottom +com.bumptech.glide.load.engine.GlideException: java.lang.String getMessage() +androidx.savedstate.Recreator +com.google.android.material.R$id: int cancel_button +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,wangdaye.com.geometricweather.db.entities.MinutelyEntity) +wangdaye.com.geometricweather.R$styleable: int MenuItem_contentDescription +androidx.constraintlayout.widget.R$attr: int motionPathRotate +androidx.vectordrawable.animated.R$styleable: R$styleable() +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: java.lang.String pubTime +james.adaptiveicon.R$id: int notification_main_column_container +cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener: void onLookupCityRequestCompleted(int,java.util.List) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_alertDialogStyle +cyanogenmod.externalviews.ExternalViewProperties: int getWidth() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX$IndicesBean: void setValue(java.lang.String) +com.google.android.material.R$styleable: int SearchView_submitBackground +com.google.android.material.bottomnavigation.BottomNavigationItemView: BottomNavigationItemView(android.content.Context,android.util.AttributeSet) +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.DatabaseOpenHelper$EncryptedHelper encryptedHelper +com.turingtechnologies.materialscrollbar.R$drawable: int avd_show_password +io.reactivex.internal.subscribers.StrictSubscriber: void onComplete() +android.didikee.donate.R$attr: int alertDialogTheme +com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context,android.util.AttributeSet,int) +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeCutDrawable +okhttp3.Cookie: long parseMaxAge(java.lang.String) +wangdaye.com.geometricweather.R$attr: int tabIndicatorAnimationDuration +wangdaye.com.geometricweather.common.basic.models.options.unit.DistanceUnit: java.lang.String getDistanceText(android.content.Context,float) +com.jaredrummler.android.colorpicker.R$string: int abc_menu_delete_shortcut_label +cyanogenmod.app.ICMStatusBarManager$Stub$Proxy: android.os.IBinder mRemote +com.turingtechnologies.materialscrollbar.R$layout: int design_layout_tab_icon +com.google.android.material.R$id: int design_bottom_sheet +androidx.preference.R$attr: int windowActionBar +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: AccuDailyResult$DailyForecasts$Day$Ice() +androidx.preference.R$styleable: int AppCompatTheme_colorButtonNormal +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityUnit[] values() +androidx.appcompat.R$styleable: int Toolbar_maxButtonHeight +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX$NamesBeanXXX: java.lang.String getZh_TW() +com.google.android.gms.common.api.internal.zabl +okio.Timeout: okio.Timeout timeout(long,java.util.concurrent.TimeUnit) +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_contentInsetStartWithNavigation +com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_subtitle +androidx.core.R$styleable: int GradientColor_android_startColor +cyanogenmod.alarmclock.ClockContract$InstancesColumns: int DISMISSED_STATE +com.google.android.material.R$attr: int contentPaddingLeft +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: void otherError(java.lang.Throwable) +wangdaye.com.geometricweather.R$styleable: int BottomAppBar_fabAnimationMode +james.adaptiveicon.R$styleable: int AppCompatTheme_actionMenuTextAppearance +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd +androidx.activity.R$styleable: int FontFamilyFont_android_fontVariationSettings +com.google.android.material.R$drawable: int notify_panel_notification_icon_bg +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_ListMenuView +com.google.android.material.R$style: int Theme_MaterialComponents_Light_Dialog_FixedSize_Bridge +james.adaptiveicon.R$attr: int colorControlNormal +androidx.constraintlayout.widget.R$style: int Base_ThemeOverlay_AppCompat_ActionBar com.amap.api.location.AMapLocationClientOption: java.lang.String getAPIKEY() -com.jaredrummler.android.colorpicker.R$id: int circle -io.reactivex.Observable: io.reactivex.Observable concatEager(io.reactivex.ObservableSource) -wangdaye.com.geometricweather.R$id: int dragRight -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_actionTextColorAlpha -cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onStart() -com.google.android.material.R$styleable: int ConstraintSet_layout_constraintCircle -cyanogenmod.themes.ThemeChangeRequest$1 -wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.lang.String season -com.google.android.material.button.MaterialButtonToggleGroup: int getFirstVisibleChildIndex() -io.reactivex.internal.subscriptions.EmptySubscription: boolean offer(java.lang.Object) -androidx.preference.R$styleable: int[] AlertDialog -com.google.android.material.R$attr: int colorSecondaryVariant -cyanogenmod.themes.ThemeManager: void onClientPaused(cyanogenmod.themes.ThemeManager$ThemeChangeListener) -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle -james.adaptiveicon.R$style: int Base_V7_Theme_AppCompat_Light_Dialog -com.google.android.material.R$styleable: int Constraint_layout_constraintWidth_default -androidx.appcompat.resources.R$style: int TextAppearance_Compat_Notification_Line2 -wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Light_ActionMode_Inverse -wangdaye.com.geometricweather.R$attr: int layout_constraintVertical_bias -com.tencent.bugly.crashreport.BuglyLog: void d(java.lang.String,java.lang.String) -com.google.android.material.R$color: int mtrl_navigation_item_icon_tint -androidx.hilt.R$attr: R$attr() -androidx.dynamicanimation.animation.DynamicAnimation: void removeEndListener(androidx.dynamicanimation.animation.DynamicAnimation$OnAnimationEndListener) -androidx.lifecycle.extensions.R$id: int line1 -cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_KEY -okio.GzipSource: void updateCrc(okio.Buffer,long,long) -com.turingtechnologies.materialscrollbar.R$style: int Base_ThemeOverlay_MaterialComponents_Dialog -cyanogenmod.app.ICMTelephonyManager: void setDefaultSmsSub(int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorPrimaryDark -wangdaye.com.geometricweather.R$dimen: int mtrl_low_ripple_default_alpha -com.turingtechnologies.materialscrollbar.R$attr: int elevation -wangdaye.com.geometricweather.R$string: int feedback_check_location_permission -com.google.android.material.R$styleable: int AppCompatTheme_actionMenuTextColor -androidx.appcompat.widget.LinearLayoutCompat: void setGravity(int) -com.turingtechnologies.materialscrollbar.R$style: int Widget_Support_CoordinatorLayout -com.google.android.material.R$styleable: int ActionBar_backgroundStacked -com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableCompat_android_constantSize -wangdaye.com.geometricweather.settings.fragments.ServiceProviderSettingsFragment -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dividerHorizontal -cyanogenmod.externalviews.ExternalViewProviderService$Provider: int DEFAULT_WINDOW_FLAGS -io.reactivex.internal.operators.observable.ObservableScalarXMap$ScalarDisposable: int requestFusion(int) -wangdaye.com.geometricweather.R$attr: int bottomAppBarStyle -com.google.android.material.R$color: int design_dark_default_color_on_surface -com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: void unregister(android.content.Context) -androidx.appcompat.widget.AppCompatButton: int[] getAutoSizeTextAvailableSizes() -io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable -com.bumptech.glide.R$layout: int notification_template_icon_group -wangdaye.com.geometricweather.R$attr: int msb_lightOnTouch -com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_dither -com.tencent.bugly.BuglyStrategy$a: int MAX_USERDATA_VALUE_LENGTH -com.google.gson.stream.JsonReader$1: JsonReader$1() -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl this$2 -wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSize -com.tencent.bugly.proguard.r: long e -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionModeShareDrawable -wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life: wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Life$Info info -okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.Class clientProviderClass -com.xw.repo.bubbleseekbar.R$id: int icon_group -androidx.appcompat.R$attr: int actionMenuTextAppearance -cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String WALLPAPER_PREVIEW -androidx.preference.R$styleable: int DialogPreference_android_positiveButtonText -com.turingtechnologies.materialscrollbar.R$string: int abc_searchview_description_search -androidx.viewpager.widget.ViewPager: ViewPager(android.content.Context) -james.adaptiveicon.R$styleable: int Toolbar_titleMarginBottom -wangdaye.com.geometricweather.R$styleable: int AnimatedStateListDrawableCompat_android_enterFadeDuration -androidx.appcompat.R$styleable: int AppCompatTextView_lastBaselineToBottomHeight -wangdaye.com.geometricweather.db.entities.DailyEntity: void setMoldDescription(java.lang.String) -okhttp3.RealCall: void enqueue(okhttp3.Callback) -com.google.android.material.R$dimen: int mtrl_calendar_header_toggle_margin_bottom -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_fontWeight -io.reactivex.internal.operators.observable.ObservableRangeLong$RangeDisposable: long end -com.google.android.material.navigation.NavigationView: int getItemIconPadding() -com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String c -android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat_Light -io.reactivex.Observable: io.reactivex.Flowable toFlowable(io.reactivex.BackpressureStrategy) -androidx.appcompat.R$drawable: int abc_ic_menu_paste_mtrl_am_alpha -cyanogenmod.hardware.CMHardwareManager: int getThermalState() -cyanogenmod.weatherservice.ServiceRequestResult: android.os.Parcelable$Creator CREATOR -io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_navigation_item_horizontal_padding -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: ObservableMergeWithCompletable$MergeWithObserver(io.reactivex.Observer) -james.adaptiveicon.R$id: int action_bar_activity_content -wangdaye.com.geometricweather.R$layout: int widget_day_week_tile -com.bumptech.glide.integration.okhttp.R$id: int action_divider -com.baidu.location.e.h$c: com.baidu.location.e.h$c b -wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String moonPhaseDescription -com.google.android.material.R$styleable: int MaterialButton_icon -com.tencent.bugly.crashreport.biz.UserInfoBean: UserInfoBean(android.os.Parcel) -androidx.appcompat.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Menu -okhttp3.Request: java.lang.Object tag() -androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize -androidx.appcompat.R$styleable: int[] RecycleListView -com.bumptech.glide.integration.okhttp.R$styleable: int ColorStateListItem_android_alpha -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$DirectionBeanX -androidx.lifecycle.extensions.R$drawable: int notification_bg -wangdaye.com.geometricweather.R$color: int bright_foreground_material_light -okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder parse(okhttp3.HttpUrl,java.lang.String) -com.google.android.material.bottomappbar.BottomAppBar: void setFabCradleMargin(float) -com.google.android.material.R$style: int Widget_MaterialComponents_AppBarLayout_PrimarySurface -okhttp3.internal.platform.AndroidPlatform$CloseGuard: java.lang.Object createAndOpen(java.lang.String) -io.reactivex.Observable: io.reactivex.Observable window(io.reactivex.ObservableSource,io.reactivex.functions.Function,int) -com.google.android.material.R$styleable: int AppCompatSeekBar_tickMarkTint -com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_dodgeInsetEdges -androidx.appcompat.R$style: int Platform_V25_AppCompat_Light -androidx.appcompat.widget.AppCompatImageButton: void setImageURI(android.net.Uri) -okhttp3.internal.cache.DiskLruCache: okhttp3.internal.cache.DiskLruCache$Editor edit(java.lang.String) -wangdaye.com.geometricweather.R$id: int material_timepicker_mode_button -wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator -androidx.recyclerview.R$attr: int fontProviderFetchTimeout -androidx.appcompat.R$style: int Base_Theme_AppCompat_Light -cyanogenmod.providers.CMSettings$Global: boolean putFloat(android.content.ContentResolver,java.lang.String,float) -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getStatusBarThemePackageName() -cyanogenmod.providers.DataUsageContract: java.lang.String ACTIVE -io.reactivex.Observable: io.reactivex.Observable skip(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -com.amap.api.location.AMapLocation: void setOffset(boolean) -androidx.preference.R$attr: int actionBarSplitStyle -wangdaye.com.geometricweather.R$attr: int indicatorType -androidx.preference.R$id: int search_go_btn -com.google.gson.FieldNamingPolicy: com.google.gson.FieldNamingPolicy LOWER_CASE_WITH_DOTS -com.bumptech.glide.load.PreferredColorSpace: com.bumptech.glide.load.PreferredColorSpace DISPLAY_P3 -cyanogenmod.externalviews.ExternalViewProperties -com.jaredrummler.android.colorpicker.R$id: int expanded_menu -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void onSubscribe(io.reactivex.disposables.Disposable) -com.jaredrummler.android.colorpicker.R$styleable: int RecyclerView_fastScrollVerticalThumbDrawable -com.tencent.bugly.crashreport.biz.a: long b -com.google.android.material.R$attr: int errorTextColor -com.tencent.bugly.proguard.n: boolean a(int) -wangdaye.com.geometricweather.R$attr: int tabPaddingEnd -wangdaye.com.geometricweather.R$integer: int cpv_default_progress -wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents_Title_Panel_CenterStacked -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_to_on_mtrl_000 -androidx.hilt.R$attr: int fontProviderQuery -wangdaye.com.geometricweather.R$id: int FUNCTION -androidx.constraintlayout.widget.R$attr: int actionDropDownStyle -okhttp3.internal.http2.Http2Writer: void data(boolean,int,okio.Buffer,int) -com.google.android.material.R$dimen: int material_clock_hand_padding -okhttp3.CipherSuite: okhttp3.CipherSuite TLS_PSK_WITH_RC4_128_SHA -androidx.lifecycle.Lifecycle$Event: androidx.lifecycle.Lifecycle$Event[] values() -cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnLongClickIntent(android.app.PendingIntent) -androidx.preference.R$styleable: int PreferenceTheme_preferenceCategoryTitleTextAppearance -com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_RatingBar -android.didikee.donate.R$style: int Base_ThemeOverlay_AppCompat_Light -wangdaye.com.geometricweather.db.entities.ChineseCityEntity: java.lang.String longitude -okio.ByteString: java.lang.String utf8() -com.turingtechnologies.materialscrollbar.R$attr: int boxCornerRadiusBottomEnd -com.google.android.material.R$attr: int chipStartPadding -okio.Buffer: okio.Buffer buffer() -com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NAME -com.turingtechnologies.materialscrollbar.R$attr: int snackbarStyle -androidx.appcompat.R$style: int TextAppearance_AppCompat_SearchResult_Subtitle -wangdaye.com.geometricweather.R$styleable: int Fragment_android_name -com.google.android.material.R$styleable: int RecyclerView_fastScrollVerticalTrackDrawable -androidx.hilt.R$id: int accessibility_custom_action_6 -io.reactivex.internal.util.NotificationLite$SubscriptionNotification: NotificationLite$SubscriptionNotification(org.reactivestreams.Subscription) -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property So2 -cyanogenmod.app.Profile: boolean isDirty() -com.turingtechnologies.materialscrollbar.R$styleable: int SnackbarLayout_animationMode -wangdaye.com.geometricweather.db.entities.DailyEntityDao: void bindValues(android.database.sqlite.SQLiteStatement,wangdaye.com.geometricweather.db.entities.DailyEntity) -com.xw.repo.bubbleseekbar.R$styleable: int Spinner_android_popupBackground -wangdaye.com.geometricweather.R$attr: int customIntegerValue -androidx.appcompat.R$styleable: int Toolbar_buttonGravity -com.jaredrummler.android.colorpicker.ColorPickerView: void setAlphaSliderVisible(boolean) -androidx.appcompat.R$styleable: int ActionBar_contentInsetEndWithActions -com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_ActionMode -okhttp3.internal.http.HttpHeaders: java.lang.String readQuotedString(okio.Buffer) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_buttonBarStyle -wangdaye.com.geometricweather.R$drawable: int ic_launcher_background -android.didikee.donate.R$styleable: int SwitchCompat_thumbTint -com.google.android.material.R$styleable: int KeyCycle_waveShape -com.google.android.gms.location.zzbd: android.os.Parcelable$Creator CREATOR -cyanogenmod.providers.CMSettings$NameValueCache: CMSettings$NameValueCache(java.lang.String,android.net.Uri,java.lang.String,java.lang.String) -com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context,android.util.AttributeSet) -wangdaye.com.geometricweather.R$styleable: int Layout_layout_constraintVertical_bias -androidx.preference.R$drawable: int abc_list_selector_background_transition_holo_dark -com.google.android.material.R$layout: int abc_list_menu_item_checkbox -com.google.android.material.button.MaterialButton: void setIconResource(int) -android.support.v4.os.ResultReceiver$MyResultReceiver: android.support.v4.os.ResultReceiver this$0 -cyanogenmod.os.Build$CM_VERSION_CODES: int DRAGON_FRUIT -com.turingtechnologies.materialscrollbar.R$attr: int contentScrim -com.tencent.bugly.CrashModule -androidx.lifecycle.MediatorLiveData$Source: void onChanged(java.lang.Object) -com.google.gson.internal.$Gson$Types$WildcardTypeImpl -com.google.android.material.R$attr: int font -retrofit2.Utils$WildcardTypeImpl -james.adaptiveicon.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle -james.adaptiveicon.R$styleable: int Spinner_android_prompt -com.google.android.material.R$dimen: int mtrl_fab_elevation -okhttp3.ResponseBody: okhttp3.ResponseBody create(okhttp3.MediaType,java.lang.String) -android.didikee.donate.R$drawable: int abc_scrubber_primary_mtrl_alpha -androidx.preference.R$styleable: int SearchView_layout -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String unit -androidx.appcompat.widget.AppCompatButton: int getAutoSizeMaxTextSize() -com.jaredrummler.android.colorpicker.R$style: int PreferenceFragmentList -android.didikee.donate.R$color: int bright_foreground_disabled_material_dark -james.adaptiveicon.R$dimen: int abc_text_size_medium_material +wangdaye.com.geometricweather.common.basic.models.weather.Base: long getUpdateTime() +android.didikee.donate.R$layout: int select_dialog_singlechoice_material +wangdaye.com.geometricweather.R$color: int design_dark_default_color_on_error +androidx.core.R$style: R$style() +androidx.appcompat.widget.AppCompatTextView: void setFirstBaselineToTopHeight(int) +io.reactivex.Observable: io.reactivex.Observable flatMap(io.reactivex.functions.Function,int) +androidx.preference.R$styleable: int RecyclerView_android_clipToPadding +cyanogenmod.weather.WeatherInfo: int access$502(cyanogenmod.weather.WeatherInfo,int) +androidx.transition.R$drawable: int notification_icon_background +androidx.fragment.R$id: int accessibility_custom_action_28 +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setTime(long) +wangdaye.com.geometricweather.R$attr: int buttonTintMode +com.jaredrummler.android.colorpicker.R$styleable: int[] ListPreference +wangdaye.com.geometricweather.R$styleable: int Preference_layout +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableItem_android_drawable +cyanogenmod.app.CustomTile$ExpandedStyle: CustomTile$ExpandedStyle(android.os.Parcel) +io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver INSTANCE +androidx.recyclerview.R$dimen: int notification_big_circle_margin +com.google.android.material.R$styleable: int AppBarLayout_android_touchscreenBlocksFocus +com.xw.repo.bubbleseekbar.R$styleable: int[] ActionMenuView +okhttp3.FormBody$Builder: okhttp3.FormBody$Builder add(java.lang.String,java.lang.String) +okhttp3.internal.http2.Hpack$Reader: int maxDynamicTableByteCount +wangdaye.com.geometricweather.common.basic.models.weather.Pollen: java.lang.Integer moldIndex +okio.Okio: okio.Sink sink(java.nio.file.Path,java.nio.file.OpenOption[]) +io.reactivex.internal.util.ArrayListSupplier: java.util.List call() +wangdaye.com.geometricweather.R$styleable: int Preference_android_defaultValue +androidx.coordinatorlayout.R$layout: R$layout() +org.greenrobot.greendao.AbstractDao: long executeInsert(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement,boolean) +androidx.recyclerview.widget.RecyclerView: int getMaxFlingVelocity() +com.tencent.bugly.crashreport.common.strategy.StrategyBean: android.os.Parcelable$Creator CREATOR +com.xw.repo.bubbleseekbar.R$dimen: int compat_button_inset_horizontal_material +com.bumptech.glide.module.AppGlideModule: AppGlideModule() +com.jaredrummler.android.colorpicker.R$styleable: int MenuView_android_headerBackground +cyanogenmod.app.CMTelephonyManager: cyanogenmod.app.CMTelephonyManager sCMTelephonyManagerInstance +wangdaye.com.geometricweather.R$styleable: int FontFamily_fontProviderCerts +cyanogenmod.app.ProfileManager: void setActiveProfile(java.util.UUID) +androidx.preference.R$drawable: int abc_ic_voice_search_api_material +com.google.android.material.R$style: int Animation_AppCompat_DropDownUp +wangdaye.com.geometricweather.R$array: int live_wallpaper_day_night_types +android.didikee.donate.R$attr: int actionModePopupWindowStyle +androidx.lifecycle.LifecycleRegistry: void markState(androidx.lifecycle.Lifecycle$State) +retrofit2.RequestFactory$Builder +cyanogenmod.weather.RequestInfo: cyanogenmod.weather.IRequestInfoListener access$102(cyanogenmod.weather.RequestInfo,cyanogenmod.weather.IRequestInfoListener) +androidx.appcompat.R$attr: int fontProviderCerts +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_stacked_tab_max_width +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_textinput_box_corner_radius_medium +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionLayout +wangdaye.com.geometricweather.R$id: int widget_clock_day_card +com.google.android.material.R$attr: int track +androidx.legacy.coreutils.R$dimen: int compat_button_padding_vertical_material +androidx.recyclerview.R$dimen: int notification_subtext_size +com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton: int getCollapsedPadding() +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.String getWeatherSource() +cyanogenmod.weatherservice.IWeatherProviderService$Stub$Proxy: java.lang.String getInterfaceDescriptor() +android.didikee.donate.R$layout: int select_dialog_multichoice_material +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: boolean val$screenOn +wangdaye.com.geometricweather.R$dimen: int item_touch_helper_swipe_escape_max_velocity +james.adaptiveicon.R$styleable: int MenuItem_contentDescription +com.google.android.material.R$styleable: int ConstraintSet_layout_editor_absoluteY +wangdaye.com.geometricweather.common.ui.widgets.insets.FitSystemBarViewPager: FitSystemBarViewPager(android.content.Context,android.util.AttributeSet) +com.xw.repo.bubbleseekbar.R$drawable: int abc_action_bar_item_background_material +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialCardView_checkedIconTint +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Display4 +androidx.fragment.R$id: int accessibility_custom_action_19 +cyanogenmod.app.CMContextConstants$Features: java.lang.String PARTNER +com.tencent.bugly.crashreport.crash.h5.H5JavaScriptInterface: java.lang.String b +com.jaredrummler.android.colorpicker.R$styleable: int CoordinatorLayout_Layout_layout_anchorGravity +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_lineHeight +okhttp3.Response: okhttp3.Request request() +cyanogenmod.themes.IThemeService$Stub$Proxy: int getProgress() +okhttp3.OkHttpClient: java.net.Proxy proxy() +androidx.preference.R$styleable: int CoordinatorLayout_Layout_android_layout_gravity +com.xw.repo.bubbleseekbar.R$color: int material_grey_50 +androidx.drawerlayout.R$color: R$color() +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setThunderstormPrecipitation(java.lang.Float) +androidx.core.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.R$font: int product_sans_medium +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: boolean cancelled +cyanogenmod.externalviews.IExternalViewProvider$Stub: int TRANSACTION_onStop +wangdaye.com.geometricweather.R$drawable: int material_cursor_drawable +com.google.android.material.R$attr: int layout_constraintVertical_chainStyle +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long skip +wangdaye.com.geometricweather.R$dimen: int mtrl_btn_snackbar_margin_horizontal +retrofit2.BuiltInConverters$StreamingResponseBodyConverter: okhttp3.ResponseBody convert(okhttp3.ResponseBody) +com.turingtechnologies.materialscrollbar.R$integer: int abc_config_activityDefaultDur +wangdaye.com.geometricweather.R$attr: int materialAlertDialogTitlePanelStyle +org.greenrobot.greendao.AbstractDao: void deleteAll() +androidx.preference.R$drawable: int abc_btn_radio_to_on_mtrl_000 +com.tencent.bugly.crashreport.common.info.a: java.lang.Object at +androidx.fragment.R$styleable: int FontFamilyFont_android_fontStyle +com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_goneMarginStart +com.turingtechnologies.materialscrollbar.R$id: int outline +com.xw.repo.bubbleseekbar.R$anim: int abc_slide_in_bottom +com.google.android.material.slider.BaseSlider: void removeOnChangeListener(com.google.android.material.slider.BaseOnChangeListener) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeIcePrecipitationProbability +androidx.preference.R$styleable: int ActionBar_popupTheme +wangdaye.com.geometricweather.R$layout: int cpv_dialog_presets +io.reactivex.Observable: io.reactivex.Observable take(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +okio.Buffer: long indexOf(okio.ByteString) +okhttp3.internal.ws.WebSocketReader: okio.Buffer$UnsafeCursor maskCursor +com.tencent.bugly.crashreport.CrashReport$CrashHandleCallback: CrashReport$CrashHandleCallback() +androidx.appcompat.widget.ActionBarContextView: void setCustomView(android.view.View) +androidx.appcompat.R$id: int action_container +androidx.recyclerview.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.R$string: int tag_precipitation +com.xw.repo.bubbleseekbar.R$dimen: int abc_disabled_alpha_material_light +androidx.hilt.work.R$layout: int notification_action_tombstone +cyanogenmod.weather.CMWeatherManager$2$2: CMWeatherManager$2$2(cyanogenmod.weather.CMWeatherManager$2,cyanogenmod.weather.CMWeatherManager$LookupCityRequestListener,int,java.util.List) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_font +wangdaye.com.geometricweather.R$anim: int fragment_fade_enter +androidx.preference.R$dimen: int abc_control_corner_material +com.google.android.material.R$attr: int windowActionModeOverlay +cyanogenmod.themes.ThemeChangeRequest: long getWallpaperId() +io.reactivex.internal.subscribers.DeferredScalarSubscriber +wangdaye.com.geometricweather.R$layout: int spinner_text +com.turingtechnologies.materialscrollbar.R$attr: int collapseIcon +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingLeft +androidx.preference.R$attr: int layout_dodgeInsetEdges +androidx.appcompat.resources.R$styleable: int AnimatedStateListDrawableTransition_android_fromId +com.google.android.material.R$dimen: int mtrl_extended_fab_translation_z_pressed +james.adaptiveicon.R$attr: int buttonBarNeutralButtonStyle +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String COL_VALUE +io.reactivex.internal.operators.observable.ObservableConcatMapEager$ConcatMapEagerMainObserver: boolean isDisposed() +com.turingtechnologies.materialscrollbar.R$attr: int actionBarTabTextStyle +james.adaptiveicon.R$id: int default_activity_button +androidx.constraintlayout.widget.R$drawable: int abc_seekbar_thumb_material +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListMenuView +com.xw.repo.bubbleseekbar.R$attr: int dialogTheme +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void updateVisibility() +cyanogenmod.profiles.BrightnessSettings: int mValue +wangdaye.com.geometricweather.R$attr: int cornerSizeTopLeft +com.google.android.gms.tasks.RuntimeExecutionException: RuntimeExecutionException(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$integer: int design_snackbar_text_max_lines +cyanogenmod.app.CMContextConstants: java.lang.String CM_HARDWARE_SERVICE androidx.activity.R$id: int accessibility_custom_action_2 -okhttp3.internal.cache.DiskLruCache: void readJournal() -com.google.android.material.R$attr: int passwordToggleEnabled -wangdaye.com.geometricweather.R$style: int PreferenceCategoryTitleTextStyle -androidx.constraintlayout.widget.R$styleable: int ActionBar_titleTextStyle -okio.Buffer: okio.Buffer clone() -wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitationDuration(java.lang.Float) -wangdaye.com.geometricweather.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.R$styleable: int TextInputLayout_counterMaxLength -com.xw.repo.bubbleseekbar.R$styleable: int SearchView_queryBackground -com.google.gson.internal.LinkedTreeMap: void clear() -com.google.android.material.R$styleable: int ColorStateListItem_alpha -com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_textLocale -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle -androidx.appcompat.R$styleable: int AppCompatTheme_ratingBarStyleSmall -okio.AsyncTimeout: AsyncTimeout() -wangdaye.com.geometricweather.R$drawable: int weather_cloudy_mini_light -com.google.android.material.R$attr: int singleChoiceItemLayout -wangdaye.com.geometricweather.R$id: int row_index_key -androidx.constraintlayout.widget.R$attr: int buttonBarNegativeButtonStyle -wangdaye.com.geometricweather.R$dimen: int mtrl_card_checked_icon_size -okhttp3.OkHttpClient$Builder: okhttp3.Dns dns -androidx.preference.R$layout: R$layout() -wangdaye.com.geometricweather.db.entities.HourlyEntityDao$Properties +okhttp3.Headers$Builder: okhttp3.Headers$Builder set(java.lang.String,java.lang.String) +com.tencent.bugly.proguard.r +com.jaredrummler.android.colorpicker.R$attr: int layoutManager +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle +wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_grey +androidx.core.R$drawable: int notify_panel_notification_icon_bg +androidx.hilt.R$id: int accessibility_custom_action_1 +okhttp3.Authenticator: okhttp3.Authenticator NONE +android.didikee.donate.R$styleable: int ActionBar_subtitle +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getDaytimeWeatherText() +okhttp3.internal.http2.Http2Connection$ReaderRunnable$2: okhttp3.internal.http2.Http2Connection$ReaderRunnable this$1 +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder noCache() +androidx.viewpager2.R$styleable: int FontFamily_fontProviderPackage +androidx.constraintlayout.widget.R$id: int progress_horizontal +io.reactivex.Observable: io.reactivex.observables.ConnectableObservable replay(io.reactivex.Scheduler) +okhttp3.internal.http2.Hpack: okio.ByteString checkLowercase(okio.ByteString) +retrofit2.Call: retrofit2.Call clone() +cyanogenmod.themes.ThemeManager: void applyDefaultTheme() +okhttp3.OkHttpClient$Builder: okhttp3.CertificatePinner certificatePinner +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Toolbar_Button_Navigation +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_9 +androidx.appcompat.R$style: int TextAppearance_Compat_Notification_Title +okhttp3.CertificatePinner$Builder +androidx.transition.R$dimen: int compat_button_padding_vertical_material +okhttp3.HttpUrl: okhttp3.HttpUrl$Builder newBuilder() +okhttp3.internal.platform.Platform: Platform() +androidx.viewpager.R$styleable: int FontFamilyFont_android_fontStyle +com.github.rahatarmanahmed.cpv.CircularProgressView: float maxProgress +retrofit2.http.Part: java.lang.String encoding() +androidx.preference.R$drawable: int abc_switch_track_mtrl_alpha +androidx.preference.R$style: int PreferenceCategoryTitleTextStyle +androidx.appcompat.R$attr: int height +androidx.hilt.work.R$dimen: int notification_small_icon_background_padding +com.google.android.material.R$styleable: int SwitchCompat_splitTrack +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric() +cyanogenmod.app.StatusBarPanelCustomTile: int getUid() +androidx.preference.R$styleable: int AppCompatTheme_popupWindowStyle +com.amap.api.fence.GeoFence: java.lang.String getFenceId() +com.turingtechnologies.materialscrollbar.R$color: int primary_dark_material_dark +androidx.appcompat.R$drawable: int abc_ic_menu_selectall_mtrl_alpha +com.google.android.material.R$anim +okhttp3.internal.http.HttpMethod: boolean requiresRequestBody(java.lang.String) +wangdaye.com.geometricweather.db.entities.MinutelyEntity: void setWeatherText(java.lang.String) +androidx.work.R$dimen: int notification_subtext_size +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver parent +cyanogenmod.power.PerformanceManager: boolean checkService() +androidx.constraintlayout.widget.R$dimen: int compat_button_padding_vertical_material +com.tencent.bugly.crashreport.crash.c: int k +android.didikee.donate.R$styleable: int AppCompatTheme_actionBarSize +wangdaye.com.geometricweather.R$attr: int helperText +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$SunRiseSetBean sunRiseSet +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setWind(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX) +androidx.appcompat.widget.SearchView: void setSuggestionsAdapter(androidx.cursoradapter.widget.CursorAdapter) +io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: FlowableObserveOn$BaseObserveOnSubscriber(io.reactivex.Scheduler$Worker,boolean,int) +androidx.appcompat.widget.AppCompatSpinner: android.content.res.ColorStateList getSupportBackgroundTintList() +org.greenrobot.greendao.database.DatabaseOpenHelper: org.greenrobot.greendao.database.Database getEncryptedWritableDb(char[]) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_actionModeCloseDrawable +okhttp3.internal.cache.DiskLruCache$Editor: void detach() +okio.BufferedSource: boolean request(long) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onComplete() +com.bumptech.glide.R$styleable: int CoordinatorLayout_Layout_layout_behavior +wangdaye.com.geometricweather.R$string: int common_signin_button_text +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_FilledBox +com.turingtechnologies.materialscrollbar.R$color: int primary_text_default_material_dark +wangdaye.com.geometricweather.R$string: int settings_title_background_free +cyanogenmod.providers.CMSettings: java.lang.String CALL_METHOD_MIGRATE_SETTINGS_FOR_USER +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_colorPrimaryDark +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: void drain() +com.tencent.bugly.crashreport.common.info.a: java.util.Set E() +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabIndicator +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_TextView_SpinnerItem +wangdaye.com.geometricweather.R$drawable: int ic_temperature_fahrenheit +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Chip_Entry +okhttp3.internal.connection.RealConnection: boolean isMultiplexed() +io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object SYNC_DISPOSED +cyanogenmod.hardware.ICMHardwareService: cyanogenmod.hardware.DisplayMode[] getDisplayModes() +wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_toRightOf +com.turingtechnologies.materialscrollbar.R$attr: int msb_barThickness +com.jaredrummler.android.colorpicker.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_liftable +androidx.viewpager.widget.PagerTabStrip: void setTabIndicatorColor(int) +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.R$id: int parallax +com.bumptech.glide.R$id: int title +cyanogenmod.app.Profile$ProfileTrigger: android.os.Parcelable$Creator CREATOR +com.tencent.bugly.crashreport.biz.b: int i() +androidx.appcompat.R$styleable: int[] MenuGroup +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.String getWeatherSource() +androidx.preference.R$attr: int buttonStyle +wangdaye.com.geometricweather.R$styleable: int Transition_android_id +cyanogenmod.themes.ThemeManager$1$2: cyanogenmod.themes.ThemeManager$1 this$1 +com.google.android.material.bottomnavigation.BottomNavigationMenuView: int getItemBackgroundRes() +cyanogenmod.weather.WeatherLocation$Builder: java.lang.String mState +cyanogenmod.weather.ICMWeatherManager$Stub: int TRANSACTION_getActiveWeatherServiceProviderLabel +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationProbability precipitationProbability +android.support.v4.os.IResultReceiver$Stub: boolean setDefaultImpl(android.support.v4.os.IResultReceiver) +androidx.appcompat.R$color: int secondary_text_default_material_dark +androidx.preference.R$dimen: int abc_button_padding_vertical_material +wangdaye.com.geometricweather.db.entities.HourlyEntity: HourlyEntity(java.lang.Long,java.lang.String,java.lang.String,java.util.Date,long,boolean,java.lang.String,wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode,int,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Integer,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float,java.lang.Float) +james.adaptiveicon.R$style: int Platform_ThemeOverlay_AppCompat_Dark +okhttp3.internal.http.RealInterceptorChain: okhttp3.Interceptor$Chain withReadTimeout(int,java.util.concurrent.TimeUnit) +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_dropdownListPreferredItemHeight +android.didikee.donate.R$style: int Base_Widget_AppCompat_Toolbar_Button_Navigation +okio.ByteString: okio.ByteString toAsciiLowercase() +com.google.android.material.R$drawable: int notification_bg_low +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Imperial Imperial +cyanogenmod.app.Profile: void getXmlString(java.lang.StringBuilder,android.content.Context) +wangdaye.com.geometricweather.R$styleable: int[] ListPreference +okhttp3.internal.ws.WebSocketProtocol: int CLOSE_CLIENT_GOING_AWAY +io.reactivex.internal.observers.ForEachWhileObserver: void dispose() +androidx.coordinatorlayout.R$attr: int fontProviderQuery +io.reactivex.Observable: io.reactivex.Observable combineLatest(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function8) +cyanogenmod.alarmclock.ClockContract +com.turingtechnologies.materialscrollbar.R$styleable: int AnimatedStateListDrawableTransition_android_toId +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform get() +androidx.preference.R$drawable: int abc_action_bar_item_background_material +com.tencent.bugly.crashreport.CrashReport$WebViewInterface: void loadUrl(java.lang.String) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Precipitation Precipitation +com.turingtechnologies.materialscrollbar.R$id: int titleDividerNoCustom +androidx.constraintlayout.motion.widget.MotionLayout: void setProgress(float) +com.google.android.material.chip.Chip: void setCheckedIconVisible(boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorControlNormal +okhttp3.Dispatcher: java.lang.Runnable idleCallback +androidx.fragment.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$id: int notification_base_realtimeTemp +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode +com.turingtechnologies.materialscrollbar.R$styleable: int TextAppearance_android_textStyle +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreference_disableDependentsState +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionMenuTextColor +com.google.gson.stream.JsonToken: com.google.gson.stream.JsonToken NUMBER +androidx.transition.R$id: R$id() +com.turingtechnologies.materialscrollbar.R$styleable: int LinearLayoutCompat_measureWithLargestChild +wangdaye.com.geometricweather.db.entities.HistoryEntityDao$Properties: HistoryEntityDao$Properties() +wangdaye.com.geometricweather.common.basic.models.weather.Wind: float WIND_SPEED_6 +androidx.hilt.lifecycle.R$styleable: int FragmentContainerView_android_name +wangdaye.com.geometricweather.R$styleable: int BottomSheetBehavior_Layout_behavior_hideable +androidx.preference.R$attr: int titleMarginBottom +com.google.android.material.R$styleable: int OnClick_targetId +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_lc +wangdaye.com.geometricweather.R$dimen: int cpv_dialog_preview_width +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintWidth_min +com.amap.api.location.AMapLocation: void setLatitude(double) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed Speed +com.tencent.bugly.proguard.o +com.google.android.material.textfield.TextInputLayout: void setCounterEnabled(boolean) +com.google.android.material.R$attr: int helperTextTextColor +cyanogenmod.profiles.RingModeSettings: void setOverride(boolean) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$HourlyForecast: java.lang.String wind_direct +wangdaye.com.geometricweather.db.entities.AlertEntityDao: AlertEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +androidx.customview.R$dimen: int notification_subtext_size +wangdaye.com.geometricweather.R$id: int notification_multi_city_text_3 +cyanogenmod.power.IPerformanceManager$Stub$Proxy +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition GeoPosition +com.google.android.material.R$style: int Base_Widget_AppCompat_PopupMenu +com.google.android.material.R$string: int path_password_eye_mask_strike_through +androidx.work.NetworkType: androidx.work.NetworkType NOT_REQUIRED +wangdaye.com.geometricweather.remoteviews.config.ClockDayWeekWidgetConfigActivity +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setItemBackground(android.graphics.drawable.Drawable) +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintHeight_min +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeSnowPrecipitation(java.lang.Float) +wangdaye.com.geometricweather.R$attr: int layout_constrainedHeight +wangdaye.com.geometricweather.R$attr: int tickMark +okhttp3.internal.publicsuffix.PublicSuffixDatabase: void readTheList() +com.bumptech.glide.load.HttpException: HttpException(java.lang.String) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +androidx.lifecycle.extensions.R$drawable +wangdaye.com.geometricweather.weather.json.accu.AccuAqiResult: AccuAqiResult() +cyanogenmod.app.LiveLockScreenManager: cyanogenmod.app.ILiveLockScreenManager getService() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_alertDialogButtonGroupStyle +cyanogenmod.app.CustomTile$RemoteExpandedStyle +retrofit2.Utils: void throwIfFatal(java.lang.Throwable) +com.google.android.material.textfield.TextInputLayout: android.widget.TextView getPrefixTextView() +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_33 +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintTag +wangdaye.com.geometricweather.R$string: int key_pressure_unit +com.xw.repo.bubbleseekbar.R$styleable: int FontFamily_fontProviderFetchStrategy +androidx.constraintlayout.widget.R$attr: int buttonBarButtonStyle +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay_MaterialComponents_Chip +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: io.reactivex.functions.BiFunction resultSelector +james.adaptiveicon.R$id: int scrollIndicatorUp +androidx.core.app.RemoteActionCompat: RemoteActionCompat() +com.google.android.material.appbar.AppBarLayout: int getTotalScrollRange() +wangdaye.com.geometricweather.R$color: int primary_text_default_material_dark +androidx.drawerlayout.R$id: int line3 +androidx.swiperefreshlayout.R$drawable: int notification_action_background +okhttp3.OkHttpClient$Builder: javax.net.ssl.HostnameVerifier hostnameVerifier +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$RainForecast: java.lang.String desc +wangdaye.com.geometricweather.common.basic.models.weather.Weather: java.util.List getDailyForecast() +wangdaye.com.geometricweather.R$color: int bright_foreground_material_dark com.google.android.material.R$styleable: int TabLayout_tabIndicator -retrofit2.BuiltInConverters$ToStringConverter: java.lang.Object convert(java.lang.Object) -wangdaye.com.geometricweather.R$drawable: int abc_ic_commit_search_api_mtrl_alpha -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -androidx.activity.R$id: int accessibility_custom_action_30 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Large_Inverse -wangdaye.com.geometricweather.R$array: int precipitation_unit_voices -wangdaye.com.geometricweather.db.entities.AlertEntityDao: void bindValues(org.greenrobot.greendao.database.DatabaseStatement,java.lang.Object) -org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType UpdateInTxArray -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid -retrofit2.KotlinExtensions$awaitResponse$2$2: KotlinExtensions$awaitResponse$2$2(kotlinx.coroutines.CancellableContinuation) -io.reactivex.internal.subscriptions.DeferredScalarSubscription: int FUSED_CONSUMED -com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -com.turingtechnologies.materialscrollbar.R$style: int Platform_AppCompat -android.didikee.donate.R$id: int title -androidx.preference.R$id: int action_image -wangdaye.com.geometricweather.R$id: int container_main_first_card_header_alert -cyanogenmod.themes.IThemeChangeListener$Stub: java.lang.String DESCRIPTOR -cyanogenmod.app.LiveLockScreenInfo: LiveLockScreenInfo(android.os.Parcel) -retrofit2.SkipCallbackExecutorImpl: java.lang.String toString() -androidx.work.R$styleable: int FontFamilyFont_fontVariationSettings -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_textFontWeight -wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: java.lang.String getLongAbbreviation(android.content.Context) -androidx.preference.R$drawable: int abc_btn_check_to_on_mtrl_015 -wangdaye.com.geometricweather.R$dimen: int material_clock_number_text_size -androidx.preference.R$color: int abc_primary_text_disable_only_material_dark -com.google.android.material.R$style: int TextAppearance_AppCompat_Light_SearchResult_Subtitle -wangdaye.com.geometricweather.background.polling.permanent.update.Hilt_ForegroundTomorrowForecastUpdateService: Hilt_ForegroundTomorrowForecastUpdateService() -androidx.appcompat.R$string: int abc_action_mode_done -android.didikee.donate.R$styleable: int CompoundButton_buttonTintMode -com.bumptech.glide.integration.okhttp.R$styleable: int[] GradientColor -androidx.lifecycle.ProcessLifecycleOwner: void activityStopped() -io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver: void onNext(java.lang.Object) -com.google.android.material.R$plurals: int mtrl_badge_content_description -com.google.android.material.R$attr: int motionTarget -com.turingtechnologies.materialscrollbar.R$drawable: int abc_btn_check_material -wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer realFeelShaderTemperature -com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar -com.jaredrummler.android.colorpicker.ColorPickerView: ColorPickerView(android.content.Context,android.util.AttributeSet) -io.reactivex.Observable: io.reactivex.Observable onErrorResumeNext(io.reactivex.ObservableSource) -com.google.android.material.R$attr: int tabIndicatorFullWidth -io.reactivex.internal.operators.observable.ObservableGroupJoin$LeftRightObserver: void dispose() -androidx.swiperefreshlayout.R$dimen -com.jaredrummler.android.colorpicker.R$drawable: int notification_bg_normal_pressed -io.reactivex.Observable: io.reactivex.Observable ambWith(io.reactivex.ObservableSource) -com.tencent.bugly.proguard.y: boolean b(boolean) -okhttp3.logging.LoggingEventListener: void requestHeadersEnd(okhttp3.Call,okhttp3.Request) -androidx.hilt.lifecycle.R$styleable: int GradientColor_android_gradientRadius -android.didikee.donate.R$style: int Platform_ThemeOverlay_AppCompat -com.bumptech.glide.load.engine.GlideException: java.lang.String getMessage() -androidx.viewpager2.R$id: R$id() -com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_BottomSheetDialog -com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DayNight -com.tencent.bugly.proguard.s: android.content.Context c -com.jaredrummler.android.colorpicker.R$style: int Preference_Material -androidx.appcompat.widget.SwitchCompat: void setThumbPosition(float) -wangdaye.com.geometricweather.R$dimen: int widget_large_title_text_size -androidx.preference.R$styleable: int ActionMode_subtitleTextStyle -androidx.lifecycle.Transformations: androidx.lifecycle.LiveData map(androidx.lifecycle.LiveData,androidx.arch.core.util.Function) -com.bumptech.glide.integration.okhttp.R$dimen: int notification_right_side_padding_top -james.adaptiveicon.R$drawable: int abc_list_selector_disabled_holo_dark -com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String p -androidx.constraintlayout.widget.R$styleable: int KeyCycle_android_elevation -androidx.viewpager2.R$style: int TextAppearance_Compat_Notification_Title -com.google.android.material.appbar.CollapsingToolbarLayout: int getCollapsedTitleGravity() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Pressure$Imperial: java.lang.String Unit -james.adaptiveicon.R$attr: int background -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Title -com.tencent.bugly.crashreport.common.strategy.a: void a(com.tencent.bugly.proguard.ap) -androidx.coordinatorlayout.R$id: int tag_transition_group -wangdaye.com.geometricweather.main.MainActivityViewModel$Status: wangdaye.com.geometricweather.main.MainActivityViewModel$Status INITIALIZING -wangdaye.com.geometricweather.common.basic.models.weather.Wind: java.lang.String level -wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language ARABIC -wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindDegree -com.amap.api.location.CoordinateConverter$1 -androidx.appcompat.widget.Toolbar: void setTitleMarginStart(int) -androidx.lifecycle.extensions.R$attr: int fontStyle -com.google.android.material.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth -io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver: io.reactivex.internal.operators.observable.ObservableReplay$ReplayBuffer buffer -com.github.rahatarmanahmed.cpv.CircularProgressView$5: boolean wasCancelled -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabMaxWidth -okhttp3.internal.http2.Http2Stream$FramingSink: okio.Buffer sendBuffer -com.google.android.material.bottomnavigation.BottomNavigationView: void setOnNavigationItemReselectedListener(com.google.android.material.bottomnavigation.BottomNavigationView$OnNavigationItemReselectedListener) -james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle -wangdaye.com.geometricweather.R$string: int settings_title_location_service -androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property WeatherSource -wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.WeatherEntityDao getWeatherEntityDao() -com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_disabled_holo_dark -androidx.constraintlayout.widget.R$styleable: int[] FontFamily -cyanogenmod.themes.ThemeManager$2$1: void run() -retrofit2.CallAdapter$Factory -wangdaye.com.geometricweather.R$id: int container_main_daily_trend_card_tagView -wangdaye.com.geometricweather.R$id: int widget_week_week_1 -com.google.android.material.R$attr: int arrowShaftLength -com.tencent.bugly.crashreport.crash.b: void d(com.tencent.bugly.crashreport.crash.CrashDetailBean) -james.adaptiveicon.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2 -com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_indeterminateProgressStyle -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_113 -androidx.viewpager.R$dimen: int notification_media_narrow_margin -com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline5 -androidx.preference.R$styleable: int SwitchCompat_showText -androidx.appcompat.view.menu.ExpandedMenuView: ExpandedMenuView(android.content.Context,android.util.AttributeSet,int) -io.reactivex.internal.operators.observable.ObservableReplay$BoundedReplayBuffer: java.lang.Object enterTransform(java.lang.Object) -okhttp3.Handshake: java.util.List localCertificates() -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric: java.lang.String Unit -com.google.android.material.internal.CheckableImageButton: CheckableImageButton(android.content.Context,android.util.AttributeSet,int) -androidx.hilt.R$anim: int fragment_fast_out_extra_slow_in -wangdaye.com.geometricweather.R$id: int hideable -android.didikee.donate.R$drawable: int abc_ic_search_api_material -okhttp3.Cache$CacheResponseBody$1: Cache$CacheResponseBody$1(okhttp3.Cache$CacheResponseBody,okio.Source,okhttp3.internal.cache.DiskLruCache$Snapshot) -com.google.android.material.R$id: int search_edit_frame -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Imperial: double Value -wangdaye.com.geometricweather.R$dimen: int mtrl_btn_dialog_btn_min_width -androidx.activity.R$id: int accessibility_custom_action_7 -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_week_4 -androidx.lifecycle.FullLifecycleObserver -androidx.appcompat.R$styleable: int LinearLayoutCompat_android_gravity -okhttp3.internal.http.CallServerInterceptor$CountingSink: long successfulCount -james.adaptiveicon.R$styleable: int TextAppearance_textLocale -com.google.android.material.slider.BaseSlider: java.lang.CharSequence getAccessibilityClassName() -androidx.constraintlayout.widget.R$attr: int layout_constraintHorizontal_chainStyle -androidx.lifecycle.extensions.R$anim: int fragment_open_enter -wangdaye.com.geometricweather.common.basic.models.weather.Base: long timeStamp -okio.Utf8 -io.reactivex.internal.schedulers.ScheduledRunnable: java.lang.Object call() -com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_menu -wangdaye.com.geometricweather.R$attr: int defaultState -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature$Metric: int UnitType -com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_fontVariationSettings -com.tencent.bugly.BuglyStrategy: java.lang.String e -com.xw.repo.bubbleseekbar.R$styleable: int AnimatedStateListDrawableCompat_android_exitFadeDuration -com.google.android.material.R$styleable: int[] ThemeEnforcement -com.turingtechnologies.materialscrollbar.R$attr: int alpha -com.jaredrummler.android.colorpicker.R$styleable: int PreferenceImageView_maxWidth -androidx.hilt.work.R$integer -androidx.appcompat.R$id -okhttp3.ResponseBody: okhttp3.MediaType contentType() -com.tencent.bugly.crashreport.common.strategy.a: java.util.List c -wangdaye.com.geometricweather.R$string: int week_2 -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX$ValueBeanXXXX: java.lang.String getFrom() -wangdaye.com.geometricweather.db.entities.DailyEntityDao: java.lang.Long updateKeyAfterInsert(wangdaye.com.geometricweather.db.entities.DailyEntity,long) -androidx.transition.R$id: int transition_current_scene -androidx.viewpager2.widget.ViewPager2: void setPageTransformer(androidx.viewpager2.widget.ViewPager2$PageTransformer) -cyanogenmod.themes.ThemeChangeRequest: java.lang.String getIconsThemePackageName() -wangdaye.com.geometricweather.R$styleable: int[] FragmentContainerView -retrofit2.Utils$GenericArrayTypeImpl -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Wind$Direction: java.lang.String Localized -wangdaye.com.geometricweather.R$attr: int materialCalendarTheme -androidx.appcompat.R$styleable: int AnimatedStateListDrawableItem_android_drawable -com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_Dialog_Alert -wangdaye.com.geometricweather.R$attr: int motionProgress -com.xw.repo.BubbleSeekBar: void setTrackColor(int) -cyanogenmod.app.Profile$TriggerType: int WIFI -androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_flow_horizontalBias -okhttp3.ConnectionPool: boolean $assertionsDisabled -androidx.appcompat.widget.ActionBarOverlayLayout: void setShowingForActionMode(boolean) -wangdaye.com.geometricweather.R$styleable: int Preference_enabled -com.google.android.material.chip.Chip: java.lang.CharSequence getChipText() -com.turingtechnologies.materialscrollbar.DateAndTimeIndicator: int getIndicatorHeight() -com.google.android.material.R$styleable: int[] ActionMenuView -com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_seek_by_section -wangdaye.com.geometricweather.db.entities.AlertEntity: void setAlertId(long) -okhttp3.internal.platform.AndroidPlatform: void logCloseableLeak(java.lang.String,java.lang.Object) -com.turingtechnologies.materialscrollbar.R$attr: int subtitleTextStyle -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: java.util.concurrent.atomic.AtomicInteger wip -androidx.lifecycle.LiveData: LiveData() -android.didikee.donate.R$style: int Widget_AppCompat_Button_Colored -androidx.preference.R$styleable: int AppCompatTextView_drawableRightCompat +wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$string: int feedback_updated_in_background +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowRadius +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall$1 +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_backgroundStacked +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.R$dimen: int design_navigation_icon_padding +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_25 +james.adaptiveicon.R$color: int secondary_text_disabled_material_light +androidx.lifecycle.ViewModelStores: androidx.lifecycle.ViewModelStore of(androidx.fragment.app.Fragment) +wangdaye.com.geometricweather.common.ui.widgets.slidingItem.SlidingItemContainerLayout: void setBackgroundColorStart(int) +cyanogenmod.alarmclock.ClockContract$CitiesColumns: java.lang.String CITY_NAME +cyanogenmod.app.BaseLiveLockManagerService: android.os.IBinder mService +cyanogenmod.weatherservice.IWeatherProviderServiceClient +okio.InflaterSource: long read(okio.Buffer,long) +androidx.hilt.lifecycle.R$anim: int fragment_fast_out_extra_slow_in +com.bumptech.glide.integration.okhttp.R$attr: int font +com.turingtechnologies.materialscrollbar.R$id: int ghost_view +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_Design_Counter_Overflow +androidx.dynamicanimation.R$color: int secondary_text_default_material_light +androidx.appcompat.R$attr: int titleMargins +cyanogenmod.themes.IThemeProcessingListener$Stub +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarStyle +androidx.constraintlayout.widget.R$attr: int paddingTopNoTitle +okio.Segment: Segment(byte[],int,int,boolean,boolean) +wangdaye.com.geometricweather.R$string: int key_card_display +okhttp3.internal.connection.StreamAllocation: okhttp3.Route route +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeRainPrecipitation +okhttp3.internal.http2.Http2Stream$FramingSource: boolean closed +com.xw.repo.bubbleseekbar.R$dimen: int notification_large_icon_height +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: java.lang.String Hex +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_Layout_layout_anchor +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int SourceId +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getWetBulbTemperature() +androidx.appcompat.widget.AppCompatSpinner +wangdaye.com.geometricweather.R$xml: int standalone_badge +androidx.constraintlayout.widget.R$color: int bright_foreground_material_light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperature$Metric +wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Bridge +androidx.viewpager2.R$layout: int notification_action +androidx.work.R$drawable: int notification_icon_background +com.jaredrummler.android.colorpicker.R$attr: int autoSizeMinTextSize +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_tileMode +cyanogenmod.app.suggest.AppSuggestManager: android.content.Context mContext +com.google.android.material.internal.FlowLayout: int getItemSpacing() +androidx.lifecycle.extensions.R$id: int tag_accessibility_heading +androidx.vectordrawable.animated.R$style: int TextAppearance_Compat_Notification +androidx.recyclerview.widget.RecyclerView: void setAccessibilityDelegateCompat(androidx.recyclerview.widget.RecyclerViewAccessibilityDelegate) +cyanogenmod.externalviews.ExternalView: void onActivityResumed(android.app.Activity) +cyanogenmod.app.suggest.ApplicationSuggestion$1: ApplicationSuggestion$1() +wangdaye.com.geometricweather.R$styleable: int AlertDialog_listItemLayout +android.didikee.donate.R$styleable: int AppCompatTheme_editTextStyle +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +androidx.vectordrawable.R$id: int accessibility_custom_action_3 +wangdaye.com.geometricweather.R$dimen: int mtrl_badge_text_horizontal_edge_offset +io.reactivex.Observable: io.reactivex.Observable mergeArrayDelayError(int,int,io.reactivex.ObservableSource[]) +wangdaye.com.geometricweather.settings.activities.CardDisplayManageActivity: CardDisplayManageActivity() +androidx.preference.R$color: int abc_background_cache_hint_selector_material_light +androidx.appcompat.R$drawable: int abc_btn_radio_to_on_mtrl_000 +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_NAVIGATION_BAR +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowDy +okhttp3.ConnectionPool: int idleConnectionCount() +cyanogenmod.profiles.LockSettings$1: cyanogenmod.profiles.LockSettings[] newArray(int) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_DrawerArrowToggle +wangdaye.com.geometricweather.R$id: int activity_widget_config_top +androidx.hilt.R$id: int accessibility_custom_action_7 +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_RatingBar_Indicator +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Precip1hr$Imperial +wangdaye.com.geometricweather.R$drawable: int weather_sleet_mini_light +okio.SegmentedByteString: okio.ByteString hmacSha1(okio.ByteString) +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean disposeAll() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: void setScaleX(float) +com.google.android.material.R$layout: int text_view_with_theme_line_height +android.didikee.donate.R$style: int Platform_AppCompat +androidx.appcompat.R$style: int TextAppearance_AppCompat_Subhead_Inverse +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$IndicesBeanX: int getStatus() +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType UNKNOWN +androidx.preference.R$styleable: int PreferenceFragmentCompat_android_divider +androidx.activity.R$id: int accessibility_custom_action_27 +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_padding +io.reactivex.internal.operators.observable.ObservableSequenceEqual$EqualCoordinator: io.reactivex.Observer downstream +wangdaye.com.geometricweather.R$drawable: int notif_temp_92 +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_21 +com.jaredrummler.android.colorpicker.R$drawable: int abc_textfield_search_material +androidx.constraintlayout.utils.widget.ImageFilterButton: void setSaturation(float) +androidx.cardview.R$styleable: int[] CardView +androidx.appcompat.R$attr: int ratingBarStyleIndicator +com.bumptech.glide.R$attr: int coordinatorLayoutStyle +com.google.android.material.appbar.CollapsingToolbarLayout: void setExpandedTitleMarginStart(int) +com.google.android.material.R$style: int Widget_MaterialComponents_AutoCompleteTextView_OutlinedBox +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner_DropDown +cyanogenmod.providers.CMSettings$Secure: java.lang.String RECENTS_LONG_PRESS_ACTIVITY +com.google.android.material.R$styleable: int Badge_verticalOffset +james.adaptiveicon.R$styleable: int AppCompatTextView_autoSizePresetSizes +androidx.preference.SwitchPreference +com.turingtechnologies.materialscrollbar.R$attr: int actionModePopupWindowStyle +james.adaptiveicon.R$attr: int homeLayout +com.xw.repo.bubbleseekbar.R$attr: int trackTint +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeWebSearchDrawable +com.turingtechnologies.materialscrollbar.R$id: int contentPanel +com.google.android.material.R$style: int Base_V21_Theme_MaterialComponents +androidx.constraintlayout.widget.R$dimen: int abc_switch_padding +android.support.v4.app.INotificationSideChannel$Stub$Proxy: void cancel(java.lang.String,int,java.lang.String) +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginBottom +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xdwd +okhttp3.internal.http2.Http2Stream: void cancelStreamIfNecessary() +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintHeight_percent +androidx.lifecycle.SavedStateViewModelFactory: SavedStateViewModelFactory(android.app.Application,androidx.savedstate.SavedStateRegistryOwner,android.os.Bundle) +android.didikee.donate.R$styleable: int SearchView_suggestionRowLayout +androidx.customview.R$dimen: int compat_notification_large_icon_max_width +com.google.android.material.R$styleable: int AppCompatTheme_buttonBarNeutralButtonStyle +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionModeShareDrawable +com.turingtechnologies.materialscrollbar.R$color: int mtrl_btn_text_btn_ripple_color +cyanogenmod.app.ProfileGroup: void setVibrateMode(cyanogenmod.app.ProfileGroup$Mode) +android.didikee.donate.R$styleable: int AppCompatTheme_alertDialogTheme +james.adaptiveicon.R$style: int Base_Theme_AppCompat_Light_Dialog_MinWidth +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintWidth_min +androidx.viewpager2.R$id: int accessibility_custom_action_0 +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_defaultQueryHint +com.google.android.material.R$style: int Base_Widget_AppCompat_SeekBar +wangdaye.com.geometricweather.R$layout: int design_navigation_item_separator +com.google.android.material.R$color: int design_bottom_navigation_shadow_color +androidx.viewpager2.R$id: int tag_accessibility_actions +androidx.preference.R$styleable: int[] SwitchCompat +cyanogenmod.providers.WeatherContract$WeatherColumns: java.lang.String CURRENT_HUMIDITY +wangdaye.com.geometricweather.R$attr: int enabled +com.turingtechnologies.materialscrollbar.R$interpolator +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Speed +io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler,boolean) +cyanogenmod.profiles.BrightnessSettings: void setOverride(boolean) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Metric: double Value +com.google.gson.internal.LinkedTreeMap: com.google.gson.internal.LinkedTreeMap$Node removeInternalByKey(java.lang.Object) +androidx.preference.R$style: int TextAppearance_AppCompat_Subhead_Inverse +com.google.android.material.button.MaterialButton: int getIconGravity() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSnowPrecipitation() +com.tencent.bugly.proguard.ar +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType InsertOrReplace +cyanogenmod.app.Profile: Profile(java.lang.String) +com.google.android.material.floatingactionbutton.FloatingActionButton: void setElevation(float) +wangdaye.com.geometricweather.R$attr: int drawableBottomCompat +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeWeatherCode +com.google.android.material.R$styleable: int[] SwitchCompat +wangdaye.com.geometricweather.R$color: int colorSearchBarBackground +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit INHG +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: java.lang.Integer cloudCover +androidx.fragment.R$id: int actions +com.jaredrummler.android.colorpicker.R$attr: int maxWidth +androidx.constraintlayout.widget.R$attr: int toolbarStyle +cyanogenmod.weather.WeatherInfo: boolean access$000(int) +androidx.work.R$styleable: int[] ColorStateListItem +com.google.android.material.R$styleable: int KeyAttribute_android_rotationY +com.turingtechnologies.materialscrollbar.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property TreeIndex +wangdaye.com.geometricweather.R$attr: int circularInset +androidx.appcompat.widget.Toolbar: int getContentInsetRight() +androidx.legacy.coreutils.R$attr: int fontStyle +com.google.android.material.R$color: int mtrl_card_view_ripple +cyanogenmod.app.Profile$ExpandedDesktopMode: int DISABLE +com.google.android.material.R$animator +cyanogenmod.weather.WeatherInfo$Builder: cyanogenmod.weather.WeatherInfo$Builder setTodaysHigh(double) +com.jaredrummler.android.colorpicker.R$styleable: R$styleable() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$BrandInfoBeanXX$BrandsBeanXX: java.lang.String url +com.xw.repo.bubbleseekbar.R$bool: R$bool() +wangdaye.com.geometricweather.R$styleable: int KeyCycle_motionTarget +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_level +wangdaye.com.geometricweather.R$style: int Base_ThemeOverlay_AppCompat_Dialog +okhttp3.internal.http2.Http2: Http2() +wangdaye.com.geometricweather.common.basic.models.weather.AirQuality: boolean isValid() +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator STATUS_BAR_BATTERY_STYLE_VALIDATOR +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float total +com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior: AppBarLayout$ScrollingViewBehavior() +com.xw.repo.bubbleseekbar.R$attr: int queryBackground cyanogenmod.profiles.ConnectionSettings$1: java.lang.Object[] newArray(int) -androidx.appcompat.R$id: int search_button -com.amap.api.location.AMapLocationClientOption: boolean m -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: java.lang.String desc -androidx.constraintlayout.widget.R$drawable: int notify_panel_notification_icon_bg -com.tencent.bugly.proguard.ap: ap() -com.jaredrummler.android.colorpicker.R$attr: int tooltipText -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeDegreeDayTemperature(java.lang.Integer) -android.didikee.donate.R$drawable: int abc_list_selector_holo_light -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void slideLockscreenIn() -com.turingtechnologies.materialscrollbar.R$dimen: int disabled_alpha_material_dark -cyanogenmod.weather.CMWeatherManager: android.os.Handler mHandler -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_Switch -wangdaye.com.geometricweather.R$attr: int onCross -com.google.android.material.R$styleable: int Constraint_layout_constraintGuide_percent -wangdaye.com.geometricweather.R$attr: int selectableItemBackgroundBorderless -io.reactivex.Observable: void blockingSubscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer) -wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onFailed() -com.google.android.material.R$styleable: int SnackbarLayout_android_maxWidth -com.turingtechnologies.materialscrollbar.R$styleable: int BottomAppBar_fabCradleVerticalOffset -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_colorSwitchThumbNormal -androidx.core.R$id: int accessibility_custom_action_23 -androidx.appcompat.R$style: int Widget_AppCompat_Button_Small -androidx.appcompat.R$styleable: int Toolbar_contentInsetStartWithNavigation -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetStart -io.reactivex.internal.operators.observable.ObservableTimeout$TimeoutObserver: io.reactivex.functions.Function itemTimeoutIndicator -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust: AccuCurrentResult$WindGust() -com.amap.api.location.AMapLocationClient: void startLocation() -androidx.constraintlayout.widget.R$style: int AlertDialog_AppCompat -okhttp3.ConnectionPool: int pruneAndGetAllocationCount(okhttp3.internal.connection.RealConnection,long) -wangdaye.com.geometricweather.R$attr: int negativeButtonText -com.tencent.bugly.proguard.y: void a(android.content.Context) -wangdaye.com.geometricweather.R$style: int Base_V14_Theme_MaterialComponents_Light_Bridge +wangdaye.com.geometricweather.R$styleable: int KeyAttribute_android_translationZ +cyanogenmod.hardware.CMHardwareManager: int GAMMA_CALIBRATION_GREEN_INDEX +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub: cyanogenmod.weather.IWeatherServiceProviderChangeListener asInterface(android.os.IBinder) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_imageButtonStyle +androidx.fragment.R$dimen: int compat_button_inset_vertical_material +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_Button_Borderless_Colored +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintCircleRadius +androidx.appcompat.R$styleable: int MenuItem_android_menuCategory +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris: java.lang.String moonPhase +androidx.work.impl.workers.DiagnosticsWorker +androidx.dynamicanimation.R$style: int Widget_Compat_NotificationActionText +com.turingtechnologies.materialscrollbar.R$attr: int labelVisibilityMode +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onPause() +androidx.fragment.app.FragmentManagerViewModel +com.xw.repo.bubbleseekbar.R$styleable: int RecycleListView_paddingBottomNoButtons +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicator +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator NAVIGATION_BAR_MENU_ARROW_KEYS_VALIDATOR +androidx.constraintlayout.widget.R$styleable: int[] PopupWindowBackgroundState +cyanogenmod.externalviews.ExternalView$2 +com.google.android.material.R$style: int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large +androidx.appcompat.R$styleable: int AppCompatTextView_autoSizePresetSizes +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListView +com.google.android.material.R$attr: int materialButtonOutlinedStyle +cyanogenmod.app.ILiveLockScreenManager: void setDefaultLiveLockScreen(cyanogenmod.app.LiveLockScreenInfo) +io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.Observer) +okhttp3.internal.http2.Http2: byte TYPE_PING +okhttp3.internal.http.HttpHeaders: boolean skipWhitespaceAndCommas(okio.Buffer) +com.google.android.material.R$styleable: int[] ExtendedFloatingActionButton_Behavior_Layout +wangdaye.com.geometricweather.R$layout: int test_action_chip +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer moonPhaseAngle +com.google.android.material.R$styleable: int KeyPosition_pathMotionArc +androidx.lifecycle.extensions.R$drawable: int notification_bg_normal +androidx.preference.R$style: int Widget_AppCompat_CompoundButton_RadioButton +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: void setAddress_detail(wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean) +com.google.android.material.R$styleable: int GradientColor_android_type +wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_black +wangdaye.com.geometricweather.R$drawable: int material_ic_menu_arrow_up_black_24dp +wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_ListView +com.google.android.material.R$dimen: int compat_notification_large_icon_max_height +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Widget_ActionBar_Title +com.tencent.bugly.crashreport.crash.anr.TraceFileHelper +wangdaye.com.geometricweather.main.dialogs.BackgroundLocationDialog +androidx.transition.R$id: int transition_layout_save +com.jaredrummler.android.colorpicker.R$layout: int abc_list_menu_item_checkbox +wangdaye.com.geometricweather.R$attr: int lineHeight +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_CompoundButton_CheckBox +androidx.constraintlayout.widget.R$style: int Base_V7_Widget_AppCompat_AutoCompleteTextView +com.tencent.bugly.proguard.z: byte[] c(long) +androidx.preference.R$attr: int drawableLeftCompat +androidx.hilt.lifecycle.R$layout +wangdaye.com.geometricweather.R$id: int activity_allergen_recyclerView +james.adaptiveicon.R$styleable: int AppCompatTheme_toolbarNavigationButtonStyle +androidx.appcompat.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +james.adaptiveicon.R$id: int progress_circular +androidx.viewpager.R$styleable: int FontFamilyFont_android_fontWeight +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_expandedHintEnabled +androidx.preference.R$style: int Preference_PreferenceScreen +androidx.appcompat.R$layout: int abc_popup_menu_header_item_layout +wangdaye.com.geometricweather.R$styleable: int AppBarLayout_android_keyboardNavigationCluster com.jaredrummler.android.colorpicker.R$drawable: int abc_list_selector_disabled_holo_light -androidx.recyclerview.R$id: int accessibility_custom_action_19 -com.tencent.bugly.crashreport.crash.e: boolean a(java.lang.Thread$UncaughtExceptionHandler) -wangdaye.com.geometricweather.R$drawable: int abc_list_selector_background_transition_holo_light -com.google.gson.stream.JsonWriter: boolean serializeNulls -androidx.preference.R$color: int switch_thumb_normal_material_light -androidx.vectordrawable.animated.R$attr: R$attr() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: int otherState -com.google.android.material.R$styleable: int[] ActionBarLayout -com.tencent.bugly.proguard.ak: java.util.ArrayList o +androidx.appcompat.R$id: int accessibility_custom_action_20 +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_SearchResult +com.google.android.material.R$attr: int animationMode +james.adaptiveicon.R$attr: int icon +wangdaye.com.geometricweather.R$id: int right +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_translationY +io.reactivex.internal.operators.observable.ObservableCache$CacheDisposable: ObservableCache$CacheDisposable(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableCache) +com.bumptech.glide.integration.okhttp.R$drawable: int notification_bg_normal_pressed +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginTop +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_TimePicker_Display +com.google.android.material.R$style: int Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle +wangdaye.com.geometricweather.R$styleable: int[] ExtendedFloatingActionButton_Behavior_Layout +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: ExternalViewProviderService$Provider$ProviderImpl$2(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) +cyanogenmod.app.ProfileManager: void setActiveProfile(java.lang.String) +wangdaye.com.geometricweather.R$id: int parent_matrix +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_AppBarLayout_PrimarySurface +wangdaye.com.geometricweather.R$id: int activity_allergen_container +james.adaptiveicon.R$style: int Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item +com.google.android.material.R$attr: int minHideDelay +com.amap.api.location.AMapLocation: int a(com.amap.api.location.AMapLocation,int) +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation: double qty24H +okio.AsyncTimeout$1: AsyncTimeout$1(okio.AsyncTimeout,okio.Sink) +cyanogenmod.app.Profile: cyanogenmod.app.ProfileGroup getDefaultGroup() +com.turingtechnologies.materialscrollbar.R$attr: int snackbarStyle +com.tencent.bugly.crashreport.crash.c: boolean b() +com.xw.repo.bubbleseekbar.R$attr: int autoSizePresetSizes +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver: void dispose() +androidx.constraintlayout.widget.ConstraintLayout: int getMaxWidth() +okhttp3.internal.http1.Http1Codec$ChunkedSource: okhttp3.HttpUrl url +com.xw.repo.bubbleseekbar.R$color: int material_blue_grey_950 +androidx.core.view.GestureDetectorCompat$GestureDetectorCompatImplBase: void setOnDoubleTapListener(android.view.GestureDetector$OnDoubleTapListener) +com.xw.repo.bubbleseekbar.R$style: int Base_V21_Theme_AppCompat_Dialog +androidx.constraintlayout.widget.R$string: int abc_menu_delete_shortcut_label +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Button +retrofit2.OkHttpCall: retrofit2.Response parseResponse(okhttp3.Response) +wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property TotalPrecipitationProbability +cyanogenmod.themes.ThemeChangeRequest$Builder: java.util.Map mThemeComponents +org.greenrobot.greendao.AbstractDaoSession: org.greenrobot.greendao.async.AsyncSession startAsyncSession() +androidx.constraintlayout.widget.R$layout: int abc_action_mode_close_item_material +cyanogenmod.themes.ThemeManager$1: void onProgress(int) +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_Button +wangdaye.com.geometricweather.R$attr: int iconGravity +com.google.gson.stream.JsonWriter: com.google.gson.stream.JsonWriter value(java.lang.Boolean) +androidx.appcompat.R$styleable: int[] SearchView +okio.Buffer: okio.BufferedSink emitCompleteSegments() +android.didikee.donate.R$attr: int windowMinWidthMajor +androidx.appcompat.R$attr: int title +okhttp3.Authenticator +cyanogenmod.profiles.AirplaneModeSettings: int mValue +com.google.android.material.chip.Chip: void setBackgroundColor(int) +wangdaye.com.geometricweather.R$string: int settings_notification_hide_big_view_on +james.adaptiveicon.R$attr: int iconTint +androidx.preference.R$id: int uniform +org.greenrobot.greendao.database.DatabaseOpenHelper: DatabaseOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory,int,android.database.DatabaseErrorHandler) +wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Icon +wangdaye.com.geometricweather.R$id: int fragment_container_view_tag +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription: void cancel() +com.jaredrummler.android.colorpicker.R$dimen: int abc_text_size_display_4_material +androidx.lifecycle.EmptyActivityLifecycleCallbacks: void onActivitySaveInstanceState(android.app.Activity,android.os.Bundle) +androidx.preference.R$styleable: int ActionBar_divider +androidx.recyclerview.R$attr: int fontProviderAuthority +androidx.vectordrawable.R$id: int accessibility_custom_action_27 +androidx.preference.TwoStatePreference: TwoStatePreference(android.content.Context,android.util.AttributeSet) +androidx.recyclerview.R$style: int Widget_Compat_NotificationActionText +wangdaye.com.geometricweather.R$string: int key_notification_color +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getSubtitle() +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String INCREASING_VOLUME +wangdaye.com.geometricweather.R$id: int activity_weather_daily_pager +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Button_Borderless_Colored +com.google.android.material.R$dimen: int abc_action_bar_stacked_tab_max_width +cyanogenmod.externalviews.KeyguardExternalView: boolean access$802(cyanogenmod.externalviews.KeyguardExternalView,boolean) +wangdaye.com.geometricweather.R$color: int accent_material_dark +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$9: int val$height +io.reactivex.internal.observers.BasicIntQueueDisposable: int requestFusion(int) +androidx.appcompat.R$color: int background_floating_material_dark +okio.Sink: void write(okio.Buffer,long) +retrofit2.http.HEAD +com.google.android.gms.location.LocationSettingsStates: android.os.Parcelable$Creator CREATOR +com.jaredrummler.android.colorpicker.R$dimen: int disabled_alpha_material_light +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSmallPopupMenu +com.google.android.material.R$styleable: int Layout_layout_constraintEnd_toEndOf +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: java.util.Date LocalObservationDateTime +retrofit2.Retrofit$Builder: java.util.List converterFactories() +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onComplete() +wangdaye.com.geometricweather.db.entities.LocationEntity: LocationEntity(java.lang.String,java.lang.String,float,float,java.util.TimeZone,java.lang.String,java.lang.String,java.lang.String,java.lang.String,wangdaye.com.geometricweather.common.basic.models.options.provider.WeatherSource,boolean,boolean,boolean) +androidx.constraintlayout.widget.R$id: int tag_unhandled_key_event_manager +com.google.gson.internal.LinkedTreeMap: int modCount +com.google.android.material.slider.Slider: android.content.res.ColorStateList getTrackActiveTintList() +androidx.swiperefreshlayout.R$attr: int fontProviderFetchTimeout +android.didikee.donate.R$id: int action_bar_activity_content +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_android_numericShortcut +com.google.android.material.button.MaterialButton: int getTextWidth() +com.tencent.bugly.proguard.i: short[] e(int,boolean) +androidx.constraintlayout.widget.R$styleable: int GradientColorItem_android_offset +androidx.preference.R$color: int primary_text_disabled_material_light +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Menu +james.adaptiveicon.R$style: int ThemeOverlay_AppCompat_Dialog +com.google.android.material.R$styleable: int MaterialCardView_shapeAppearance +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_barrierAllowsGoneWidgets +com.google.android.material.R$attr: int layout_dodgeInsetEdges +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableRight +com.google.android.material.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +androidx.recyclerview.R$id: int accessibility_custom_action_26 +james.adaptiveicon.R$dimen: int abc_list_item_padding_horizontal_material +androidx.constraintlayout.widget.R$styleable: int AlertDialog_buttonIconDimen +com.google.android.material.slider.RangeSlider +io.reactivex.Observable: io.reactivex.Observable merge(io.reactivex.ObservableSource) +android.didikee.donate.R$styleable: int MenuItem_android_enabled +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$FeelsLikeBean: void setValue(java.lang.String) +com.turingtechnologies.materialscrollbar.R$id: int action_mode_close_button +wangdaye.com.geometricweather.R$styleable: int KeyPosition_sizePercent +com.tencent.bugly.crashreport.common.info.a: java.lang.String N +wangdaye.com.geometricweather.R$style: int Preference_Material +wangdaye.com.geometricweather.R$attr: int listPreferredItemHeightSmall +james.adaptiveicon.R$attr: int editTextStyle +james.adaptiveicon.AdaptiveIconView: AdaptiveIconView(android.content.Context,android.util.AttributeSet,int) +com.amap.api.location.UmidtokenInfo +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_NOWIFIANDAP +cyanogenmod.app.BaseLiveLockManagerService: void enforceSamePackageOrSystem(java.lang.String,cyanogenmod.app.LiveLockScreenInfo) +retrofit2.BuiltInConverters$BufferingResponseBodyConverter: java.lang.Object convert(java.lang.Object) +cyanogenmod.weather.ICMWeatherManager$Stub +androidx.preference.R$styleable: int SwitchPreferenceCompat_android_switchTextOn +wangdaye.com.geometricweather.R$string: int content_desc_powered_by +androidx.lifecycle.ClassesInfoCache: androidx.lifecycle.ClassesInfoCache$CallbackInfo createInfo(java.lang.Class,java.lang.reflect.Method[]) com.bumptech.glide.integration.okhttp.R$styleable: int GradientColor_android_endColor -wangdaye.com.geometricweather.R$style: int Base_Theme_AppCompat_Light_Dialog -androidx.activity.R$drawable: int notification_bg_low -androidx.appcompat.R$id: int action_bar_spinner -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTheme -io.reactivex.internal.util.VolatileSizeArrayList -com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory[] values() -io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: ObservableMergeWithMaybe$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver) -androidx.preference.R$styleable: int AppCompatTheme_toolbarStyle -androidx.viewpager.R$dimen: int notification_big_circle_margin -wangdaye.com.geometricweather.R$attr: int contentInsetStartWithNavigation -com.tencent.bugly.crashreport.biz.a: void a(com.tencent.bugly.crashreport.biz.a,com.tencent.bugly.crashreport.biz.UserInfoBean,boolean) -james.adaptiveicon.R$styleable: int TextAppearance_fontVariationSettings +com.xw.repo.bubbleseekbar.R$attr: int actionOverflowMenuStyle +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: void onNext(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableRetryBiPredicate$RetryBiObserver: io.reactivex.internal.disposables.SequentialDisposable upstream +androidx.preference.R$id: int topPanel +james.adaptiveicon.R$styleable: int AppCompatTheme_actionBarSplitStyle +androidx.vectordrawable.R$dimen: int notification_small_icon_background_padding +wangdaye.com.geometricweather.common.ui.widgets.insets.FitHorizontalSystemBarRootLayout +com.github.rahatarmanahmed.cpv.CircularProgressView: android.graphics.Paint paint +com.jaredrummler.android.colorpicker.R$id: int line3 +wangdaye.com.geometricweather.R$styleable: int[] AppBarLayout +com.google.android.material.slider.BaseSlider: int getHaloRadius() +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_check_to_on_mtrl_015 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$TotalLiquid +androidx.constraintlayout.widget.R$styleable: int MenuGroup_android_visible +androidx.appcompat.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowColor +okhttp3.internal.http2.Http2Connection$7: okhttp3.internal.http2.ErrorCode val$errorCode +wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition: wangdaye.com.geometricweather.common.ui.widgets.trend.TrendRecyclerView$KeyLine$ContentPosition[] values() +james.adaptiveicon.R$style: int Theme_AppCompat_Light_Dialog_Alert +wangdaye.com.geometricweather.db.entities.DaoMaster$DevOpenHelper: DaoMaster$DevOpenHelper(android.content.Context,java.lang.String,android.database.sqlite.SQLiteDatabase$CursorFactory) +com.turingtechnologies.materialscrollbar.MaterialScrollBar: void setDraggableFromAnywhere(boolean) +cyanogenmod.os.Concierge$ParcelInfo: Concierge$ParcelInfo(android.os.Parcel) +james.adaptiveicon.R$style: int Widget_AppCompat_PopupMenu_Overflow +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_gravity +com.google.android.material.R$animator: int mtrl_btn_unelevated_state_list_anim +androidx.preference.R$id: int accessibility_custom_action_11 +io.reactivex.Observable: io.reactivex.Completable ignoreElements() +com.tencent.bugly.proguard.f: boolean m +androidx.appcompat.widget.AppCompatTextView: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_iconifiedByDefault +androidx.appcompat.R$drawable: int abc_btn_radio_material +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_textLocale +wangdaye.com.geometricweather.R$color: int material_timepicker_modebutton_tint +okhttp3.internal.platform.AndroidPlatform$AndroidTrustRootIndex: java.security.cert.X509Certificate findByIssuerAndSignature(java.security.cert.X509Certificate) +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceSubtitle2 +com.google.android.material.R$style: int Widget_AppCompat_Light_ActionBar +com.google.android.material.R$dimen: int mtrl_high_ripple_hovered_alpha +okhttp3.Headers: java.lang.String[] namesAndValues +com.google.android.material.R$attr: int layout_constraintVertical_weight +wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setTopIconDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.common.basic.models.weather.Hourly: boolean isDaylight() +okhttp3.Dispatcher: int runningCallsForHost(okhttp3.RealCall$AsyncCall) +com.google.android.material.R$style: int Widget_MaterialComponents_PopupMenu +androidx.preference.R$styleable: int AnimatedStateListDrawableCompat_android_dither +com.bumptech.glide.R$drawable: R$drawable() +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_radioButtonStyle +cyanogenmod.app.BaseLiveLockManagerService$1: void cancelLiveLockScreen(java.lang.String,int,int) +cyanogenmod.profiles.BrightnessSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +wangdaye.com.geometricweather.R$styleable: int MenuItem_android_onClick +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarItemBackground +io.reactivex.internal.util.NotificationLite: io.reactivex.internal.util.NotificationLite[] values() +com.google.android.material.R$drawable: R$drawable() +androidx.constraintlayout.widget.R$attr: int imageButtonStyle +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_SearchView +com.xw.repo.bubbleseekbar.R$style: int Base_Theme_AppCompat_Dialog_Alert +androidx.lifecycle.ProcessLifecycleOwner$3: ProcessLifecycleOwner$3(androidx.lifecycle.ProcessLifecycleOwner) +cyanogenmod.providers.CMSettings: CMSettings() +com.google.android.material.appbar.CollapsingToolbarLayout: void setStatusBarScrim(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.R$id: int notification_big_temp_4 +wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult: wangdaye.com.geometricweather.weather.json.mf.MfWarningsResult$WarningComments textAvalanche +com.google.android.material.R$id: int chip3 +wangdaye.com.geometricweather.R$drawable: int notif_temp_78 +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableTopCompat +android.didikee.donate.R$styleable: int LinearLayoutCompat_android_weightSum +okhttp3.Cache$2: void remove() +okio.Util: long reverseBytesLong(long) +cyanogenmod.externalviews.ExternalView$4: void run() +james.adaptiveicon.R$styleable: int AppCompatTheme_checkedTextViewStyle +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_contentInsetEndWithActions +okhttp3.internal.ws.WebSocketReader: void readUntilNonControlFrame() +com.google.android.material.slider.RangeSlider: void setTrackTintList(android.content.res.ColorStateList) +com.turingtechnologies.materialscrollbar.R$styleable: int Chip_closeIconVisible +io.reactivex.internal.operators.observable.ObservableThrottleFirstTimed$DebounceTimedObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCutDrawable +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextAppearanceInactive(int) +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_29 +wangdaye.com.geometricweather.R$id: int edit_query +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_Dialog +com.tencent.bugly.proguard.i: i(byte[]) +androidx.appcompat.R$dimen: int abc_action_bar_default_height_material +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_minHeight +androidx.constraintlayout.widget.R$id: int aligned +com.tencent.bugly.proguard.v: java.lang.String a(java.lang.String) +com.tencent.bugly.proguard.n: n(android.content.Context) +com.google.android.material.R$dimen: int fastscroll_default_thickness +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabIndicatorAnimationDuration +wangdaye.com.geometricweather.R$styleable: int Tooltip_android_text +wangdaye.com.geometricweather.wallpaper.MaterialLiveWallpaperService: MaterialLiveWallpaperService() +androidx.hilt.work.R$id: int info +james.adaptiveicon.R$layout: int abc_activity_chooser_view_list_item +io.reactivex.internal.operators.observable.ObservableWithLatestFromMany$WithLatestFromObserver: java.util.concurrent.atomic.AtomicReference upstream +io.reactivex.internal.operators.observable.ObservableZip$ZipCoordinator: ObservableZip$ZipCoordinator(io.reactivex.Observer,io.reactivex.functions.Function,int,boolean) +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean i +wangdaye.com.geometricweather.R$styleable: int Toolbar_title +androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour: androidx.constraintlayout.solver.widgets.ConstraintWidget$DimensionBehaviour[] values() +com.google.android.material.slider.RangeSlider$RangeSliderState: android.os.Parcelable$Creator CREATOR +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onNext(java.lang.Object) +com.xw.repo.bubbleseekbar.R$attr: int actionMenuTextColor +androidx.fragment.R$anim: int fragment_close_enter +androidx.constraintlayout.widget.R$color: int abc_tint_default +wangdaye.com.geometricweather.db.entities.DaoSession: wangdaye.com.geometricweather.db.entities.DailyEntityDao getDailyEntityDao() +com.xw.repo.bubbleseekbar.R$styleable: int[] MenuItem +androidx.constraintlayout.widget.R$string: int abc_menu_alt_shortcut_label +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_onAttach_0 +androidx.constraintlayout.widget.R$style: int Widget_AppCompat_Button_Colored +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.lang.String w +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult$Temperature Temperature +io.reactivex.internal.operators.observable.ObservableRefCount$RefConnection: io.reactivex.internal.operators.observable.ObservableRefCount parent +com.xw.repo.bubbleseekbar.R$color: int primary_material_dark +android.didikee.donate.R$dimen: int notification_top_pad +okhttp3.HttpUrl$Builder: okhttp3.HttpUrl$Builder addEncodedQueryParameter(java.lang.String,java.lang.String) +androidx.appcompat.widget.AppCompatTextView: void setLineHeight(int) +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_BottomSheetDialog +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setPublishDate(java.util.Date) +com.google.android.material.slider.RangeSlider: void setValueFrom(float) +wangdaye.com.geometricweather.R$attr: int fabAlignmentMode +wangdaye.com.geometricweather.R$attr: int swipeRefreshLayoutProgressSpinnerBackgroundColor +wangdaye.com.geometricweather.R$string: int material_timepicker_am +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintLeft_creator +com.xw.repo.bubbleseekbar.R$styleable: int[] BubbleSeekBar +androidx.appcompat.resources.R$id: int right_side +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintLeft_creator +okhttp3.internal.cache2.FileOperator: void read(long,okio.Buffer,long) +com.google.android.material.slider.RangeSlider: android.content.res.ColorStateList getThumbTintList() +com.turingtechnologies.materialscrollbar.R$layout: int abc_alert_dialog_button_bar_material +com.amap.api.location.AMapLocationQualityReport +okhttp3.internal.http2.Http2Writer: void connectionPreface() +okhttp3.logging.LoggingEventListener: okhttp3.logging.HttpLoggingInterceptor$Logger logger +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: java.lang.String level +com.google.android.material.R$id: int touch_outside +androidx.hilt.lifecycle.R$id: int tag_screen_reader_focusable +wangdaye.com.geometricweather.R$id: int beginning +androidx.appcompat.widget.SearchView: void setInputType(int) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_AES_256_CBC_SHA +androidx.activity.R$id: int accessibility_custom_action_16 +okio.BufferedSource +androidx.appcompat.R$attr: int fontFamily +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer getAqiIndex() +androidx.viewpager.R$id +com.jaredrummler.android.colorpicker.R$attr: int collapseContentDescription +androidx.constraintlayout.widget.R$styleable: int[] KeyPosition +com.jaredrummler.android.colorpicker.R$id: int chronometer +io.reactivex.Observable: io.reactivex.Observable observeOn(io.reactivex.Scheduler) +wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_analog_light +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionBarTabBarStyle +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Small +androidx.appcompat.widget.ActivityChooserView: void setExpandActivityOverflowButtonContentDescription(int) +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_SearchView_MagIcon +wangdaye.com.geometricweather.R$attr: int actionBarTabStyle +androidx.constraintlayout.widget.R$drawable: int notification_bg_low_pressed +james.adaptiveicon.R$string +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type VERTICAL_DIMENSION +com.google.android.material.R$styleable: int AppCompatTextView_fontVariationSettings +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property DaytimeCloudCover +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_13 +com.jaredrummler.android.colorpicker.R$styleable: int ActionBar_customNavigationLayout +cyanogenmod.hardware.ICMHardwareService$Stub$Proxy: boolean setVibratorIntensity(int) +com.turingtechnologies.materialscrollbar.R$dimen: int design_navigation_item_horizontal_padding +com.tencent.bugly.crashreport.common.info.a: java.lang.String w() +android.support.v4.os.IResultReceiver$Stub: android.support.v4.os.IResultReceiver asInterface(android.os.IBinder) +android.didikee.donate.R$attr: int trackTintMode +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService: io.reactivex.disposables.CompositeDisposable compositeDisposable +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void onComplete() +com.tencent.bugly.proguard.ak +io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper valueOf(java.lang.String) +wangdaye.com.geometricweather.settings.activities.CardDisplayManageActivity +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintBottom_toBottomOf +com.google.android.material.R$attr: int colorButtonNormal +io.reactivex.internal.observers.DeferredScalarObserver: io.reactivex.disposables.Disposable upstream +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_FilledBox +androidx.dynamicanimation.R$styleable: int GradientColor_android_endX +com.google.android.material.floatingactionbutton.FloatingActionButton: void setExpandedComponentIdHint(int) +okhttp3.CertificatePinner: int hashCode() +androidx.recyclerview.R$string +com.github.rahatarmanahmed.cpv.R$styleable: int[] CircularProgressView +okhttp3.RealCall$AsyncCall: RealCall$AsyncCall(okhttp3.RealCall,okhttp3.Callback) +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_DH_anon_WITH_AES_128_CBC_SHA256 +androidx.loader.R$id: int line3 +wangdaye.com.geometricweather.R$styleable: int[] FloatingActionButton +retrofit2.SkipCallbackExecutorImpl +androidx.constraintlayout.widget.R$anim: int abc_fade_out +com.google.android.material.R$styleable: int AppCompatTheme_actionModeFindDrawable +androidx.preference.R$attr: int subtitle +wangdaye.com.geometricweather.R$styleable: int Insets_paddingBottomSystemWindowInsets +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_SearchView +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void dispose() +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_31 +com.google.android.material.R$attr: int iconSize +wangdaye.com.geometricweather.R$id: int sin +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_weatherKindSpinner +wangdaye.com.geometricweather.R$drawable: int ic_keyboard_black_24dp +james.adaptiveicon.R$styleable: int ActionBar_contentInsetRight +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource[],io.reactivex.functions.Function) +cyanogenmod.hardware.CMHardwareManager: int FEATURE_SUNLIGHT_ENHANCEMENT +com.xw.repo.bubbleseekbar.R$layout: int select_dialog_item_material +android.didikee.donate.R$styleable: int LinearLayoutCompat_Layout_android_layout_weight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past3Hours$Metric: int UnitType +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_goneMarginLeft +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: void innerSuccess(io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver$InnerObserver,java.lang.Object) +com.google.android.material.R$attr: int boxBackgroundColor +com.google.android.material.R$attr: int colorPrimary +androidx.preference.TwoStatePreference$SavedState +androidx.appcompat.R$styleable: int GradientColorItem_android_color +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +androidx.constraintlayout.widget.R$styleable: int ActionMode_closeItemLayout +cyanogenmod.power.IPerformanceManager$Stub$Proxy: void cpuBoost(int) +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceFragmentCompat +com.google.gson.stream.JsonReader: java.lang.String getPath() +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setProgressBackgroundColorSchemeColor(int) +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_waveOffset +com.turingtechnologies.materialscrollbar.R$dimen: int abc_action_bar_icon_vertical_padding_material +com.google.android.gms.common.internal.zau +com.turingtechnologies.materialscrollbar.R$styleable: int MaterialButton_android_insetRight +wangdaye.com.geometricweather.R$attr: int fastScrollEnabled +com.turingtechnologies.materialscrollbar.R$id: int search_go_btn +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_EditText +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_android_fitsSystemWindows +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ExtendedFloatingActionButton +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_windowMinWidthMinor +cyanogenmod.externalviews.IExternalViewProvider$Stub$Proxy: void onStop() +androidx.fragment.R$color: int notification_icon_bg_color +com.google.android.material.bottomappbar.BottomAppBar: int getBottomInset() +com.tencent.bugly.crashreport.crash.CrashDetailBean: java.util.Map i +wangdaye.com.geometricweather.R$id: int item_icon_provider_get_more_chronus +androidx.preference.MultiSelectListPreference$SavedState: android.os.Parcelable$Creator CREATOR +cyanogenmod.hardware.CMHardwareManager: java.lang.String getSerialNumber() +androidx.recyclerview.R$dimen: int item_touch_helper_max_drag_scroll_per_frame +okhttp3.internal.http2.Hpack$Writer: int maxDynamicTableByteCount +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHeight_default +com.amap.api.location.AMapLocationClientOption$GeoLanguage: com.amap.api.location.AMapLocationClientOption$GeoLanguage EN +okhttp3.internal.http2.Http2Connection$ReaderRunnable: Http2Connection$ReaderRunnable(okhttp3.internal.http2.Http2Connection,okhttp3.internal.http2.Http2Reader) +com.tencent.bugly.proguard.u: boolean a +androidx.work.R$style: int TextAppearance_Compat_Notification_Time +io.reactivex.Observable: io.reactivex.Observable concatMapSingleDelayError(io.reactivex.functions.Function,boolean) +okio.RealBufferedSink$1: RealBufferedSink$1(okio.RealBufferedSink) +com.turingtechnologies.materialscrollbar.R$string: int path_password_strike_through +wangdaye.com.geometricweather.R$style: int Base_V22_Theme_AppCompat +wangdaye.com.geometricweather.R$attr: int actionModeSelectAllDrawable +wangdaye.com.geometricweather.R$layout: int text_view_with_theme_line_height +androidx.constraintlayout.widget.R$attr: int actionModeFindDrawable +okhttp3.internal.connection.RealConnection: okhttp3.Handshake handshake() +com.tencent.bugly.crashreport.crash.CrashDetailBean: long a +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean: void setImages(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AlertsBean$ImagesBean) +com.google.android.material.checkbox.MaterialCheckBox: void setUseMaterialThemeColors(boolean) +com.google.android.material.slider.Slider: void setThumbRadiusResource(int) +com.jaredrummler.android.colorpicker.R$drawable: int ic_arrow_down_24dp +com.tencent.bugly.proguard.i: java.util.HashMap a(java.util.Map,int,boolean) +james.adaptiveicon.R$styleable: int ColorStateListItem_alpha +com.google.android.material.R$drawable: int notification_action_background +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past24Hours$Metric: java.lang.String Unit +wangdaye.com.geometricweather.R$id: int tabMode +com.turingtechnologies.materialscrollbar.R$style: int Theme_MaterialComponents_Light_NoActionBar_Bridge +okhttp3.ConnectionSpec: boolean isCompatible(javax.net.ssl.SSLSocket) +com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.an a(byte[],boolean) +com.turingtechnologies.materialscrollbar.R$styleable: int StateListDrawable_android_exitFadeDuration +wangdaye.com.geometricweather.R$attr: int state_dragged +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver: ObservableConcatMap$ConcatMapDelayErrorObserver$DelayErrorInnerObserver(io.reactivex.Observer,io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver) +cyanogenmod.providers.CMSettings$Global: java.lang.String POWER_NOTIFICATIONS_RINGTONE +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property AqiText android.didikee.donate.R$dimen: int abc_text_size_display_2_material -okhttp3.internal.http1.Http1Codec$AbstractSource: long read(okio.Buffer,long) -com.tencent.bugly.crashreport.crash.b: void a(boolean,java.util.List) -com.google.android.material.bottomnavigation.BottomNavigationItemView: void setLabelVisibilityMode(int) -com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_MaterialComponents_TextInputEditText_OutlinedBox -com.google.android.material.button.MaterialButton: java.lang.String getA11yClassName() -io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: java.util.concurrent.atomic.AtomicInteger wip -wangdaye.com.geometricweather.R$font: int product_sans_medium -com.google.android.material.R$styleable: int CardView_android_minWidth -okhttp3.FormBody$Builder: FormBody$Builder(java.nio.charset.Charset) -com.bumptech.glide.load.DataSource: com.bumptech.glide.load.DataSource DATA_DISK_CACHE -androidx.appcompat.widget.SwitchCompat: SwitchCompat(android.content.Context,android.util.AttributeSet,int) -androidx.vectordrawable.R$id: int accessibility_custom_action_31 -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Display4 -wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object updateKeyAfterInsert(java.lang.Object,long) -com.google.android.material.R$styleable: int TextInputLayout_errorTextAppearance -okhttp3.internal.cache.CacheInterceptor: okhttp3.internal.cache.InternalCache cache -cyanogenmod.weather.CMWeatherManager$1$1: void run() -com.google.android.material.R$styleable: int ConstraintSet_android_layout_width -com.google.android.material.R$styleable: int FloatingActionButton_hideMotionSpec -com.turingtechnologies.materialscrollbar.R$attr: int actionViewClass -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl -okhttp3.Response: java.lang.String toString() -com.google.android.material.R$styleable: int CustomAttribute_attributeName -androidx.preference.R$layout: int select_dialog_item_material -androidx.preference.R$attr: int preferenceFragmentStyle -wangdaye.com.geometricweather.R$style: int AlertDialog_AppCompat_Light -okhttp3.internal.cache.DiskLruCache$Snapshot: okhttp3.internal.cache.DiskLruCache this$0 -androidx.customview.R$styleable: int FontFamily_fontProviderFetchStrategy -wangdaye.com.geometricweather.R$id: int dialog_location_help_providerContainer -okhttp3.internal.http2.Http2Writer: void rstStream(int,okhttp3.internal.http2.ErrorCode) -cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: android.os.IBinder asBinder() -wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties -wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_62 -wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog -androidx.constraintlayout.widget.R$styleable: int TextAppearance_android_shadowColor -androidx.fragment.app.Fragment$InstantiationException -androidx.dynamicanimation.R$id: int action_image -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_actionBarTabStyle -androidx.drawerlayout.R$styleable: int[] GradientColor -io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void onComplete() -androidx.constraintlayout.widget.R$color: int material_grey_900 -androidx.preference.R$styleable: int MenuItem_tooltipText -com.google.android.material.R$styleable: int[] ConstraintLayout_placeholder -cyanogenmod.providers.CMSettings$Secure: java.lang.String ADVANCED_REBOOT -wangdaye.com.geometricweather.location.utils.LocationException -androidx.preference.R$layout: int abc_expanded_menu_layout -com.loc.k: java.lang.String c +androidx.appcompat.R$color: int error_color_material_dark +androidx.preference.R$dimen: int abc_text_size_subhead_material +com.google.android.gms.base.R$color +androidx.constraintlayout.widget.R$styleable: int ViewBackgroundHelper_backgroundTintMode +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Large +wangdaye.com.geometricweather.R$drawable: int clock_dial_dark +com.google.gson.internal.LinkedTreeMap: LinkedTreeMap() +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_half_black_16dp +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean getPoint() +androidx.lifecycle.LiveData: void onInactive() +androidx.lifecycle.MethodCallsLogger: MethodCallsLogger() +com.google.android.material.R$id: int expanded_menu +okhttp3.internal.http2.Http2Connection: okhttp3.Protocol getProtocol() +com.xw.repo.bubbleseekbar.R$attr: int actionBarTabStyle +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_summaryOff +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.Window access$300(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +androidx.core.R$dimen: int notification_big_circle_margin +wangdaye.com.geometricweather.R$id: int dialog_background_location_summary +com.google.android.material.R$styleable: int TabLayout_tabIndicatorFullWidth +cyanogenmod.app.PartnerInterface: int ZEN_MODE_NO_INTERRUPTIONS +cyanogenmod.app.IProfileManager$Stub$Proxy: void updateProfile(cyanogenmod.app.Profile) +wangdaye.com.geometricweather.R$id: int test_checkbox_app_button_tint +androidx.preference.R$attr: int tooltipForegroundColor +com.google.android.material.R$styleable: int[] ConstraintLayout_Layout +io.reactivex.Observable: io.reactivex.disposables.Disposable subscribe(io.reactivex.functions.Consumer,io.reactivex.functions.Consumer) +wangdaye.com.geometricweather.R$animator: int weather_fog_1 +com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_actionViewClass +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerNext() +com.google.android.material.datepicker.MaterialCalendar$CalendarSelector: com.google.android.material.datepicker.MaterialCalendar$CalendarSelector valueOf(java.lang.String) +okhttp3.internal.ws.RealWebSocket: java.util.ArrayDeque pongQueue +androidx.appcompat.R$id: int checkbox +com.tencent.bugly.crashreport.common.info.a: java.lang.String T +androidx.lifecycle.ProcessLifecycleOwner$2 +cyanogenmod.providers.CMSettings$System: java.lang.String SHOW_ALARM_ICON +okhttp3.internal.platform.Android10Platform: java.lang.String getSelectedProtocol(javax.net.ssl.SSLSocket) +com.turingtechnologies.materialscrollbar.R$attr: int color +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_search +retrofit2.OkHttpCall: okhttp3.Call rawCall +com.xw.repo.bubbleseekbar.R$dimen: int abc_search_view_preferred_height +androidx.constraintlayout.widget.R$attr: int autoCompleteTextViewStyle +cyanogenmod.app.ProfileGroup: boolean isDirty() +com.google.gson.FieldNamingPolicy$3: java.lang.String translateName(java.lang.reflect.Field) +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.disposables.Disposable upstream +wangdaye.com.geometricweather.R$drawable: int weather_sleet +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeTotalPrecipitationDuration +io.reactivex.internal.operators.flowable.FlowableCreate$BaseEmitter: void setDisposable(io.reactivex.disposables.Disposable) +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleMargins +io.reactivex.Observable: io.reactivex.Observable retry(long) +okhttp3.internal.cache.DiskLruCache: long nextSequenceNumber +com.google.android.material.slider.Slider: void setTrackTintList(android.content.res.ColorStateList) +retrofit2.ParameterHandler$Path: void apply(retrofit2.RequestBuilder,java.lang.Object) +wangdaye.com.geometricweather.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha +io.reactivex.subjects.PublishSubject$PublishDisposable: void onError(java.lang.Throwable) +androidx.preference.R$layout: int preference_list_fragment +com.jaredrummler.android.colorpicker.R$bool +io.reactivex.internal.operators.observable.ObservableIntervalRange$IntervalRangeObserver +android.didikee.donate.R$id: int search_badge +androidx.lifecycle.Transformations: androidx.lifecycle.LiveData map(androidx.lifecycle.LiveData,androidx.arch.core.util.Function) +okhttp3.MultipartBody: okhttp3.MediaType ALTERNATIVE +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActivityChooserView +cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int INSTALLING +okhttp3.internal.http2.Settings: int getMaxHeaderListSize(int) +androidx.constraintlayout.widget.R$styleable: int MockView_mock_showDiagonals +com.tencent.bugly.proguard.j: void a(int) +androidx.appcompat.widget.Toolbar: java.lang.CharSequence getLogoDescription() +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: float getTranslateX() +androidx.hilt.R$attr: int ttcIndex +com.google.android.material.R$id: int accessibility_custom_action_14 +androidx.dynamicanimation.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$attr: int contentPadding +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_Widget_AppCompat_Toolbar_Title +androidx.appcompat.R$id: int accessibility_custom_action_14 +james.adaptiveicon.R$dimen: int tooltip_margin +wangdaye.com.geometricweather.R$attr: int chipIconEnabled +android.didikee.donate.R$style: int Widget_AppCompat_ActivityChooserView +com.google.android.material.textfield.TextInputLayout: java.lang.CharSequence getError() +com.xw.repo.bubbleseekbar.R$drawable: int abc_list_selector_background_transition_holo_dark +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Tooltip +androidx.appcompat.widget.ScrollingTabContainerView: ScrollingTabContainerView(android.content.Context) +android.didikee.donate.R$id: int search_go_btn +androidx.constraintlayout.widget.R$attr: int layout_editor_absoluteX +cyanogenmod.os.Build: java.lang.String CYANOGENMOD_VERSION +wangdaye.com.geometricweather.R$attr: int listPreferredItemPaddingLeft +androidx.preference.R$style: int Widget_Compat_NotificationActionText +com.google.android.material.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +androidx.appcompat.widget.ActivityChooserView +com.turingtechnologies.materialscrollbar.R$dimen: int abc_dialog_title_divider_material +com.google.android.material.R$id: int up +com.google.android.material.R$attr: int alertDialogStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: void setWeather(wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX) +androidx.coordinatorlayout.R$styleable: int CoordinatorLayout_keylines +com.google.android.material.R$styleable: int KeyPosition_percentHeight +com.turingtechnologies.materialscrollbar.R$attr: int cardViewStyle +com.xw.repo.bubbleseekbar.R$attr: int actionModeCopyDrawable +wangdaye.com.geometricweather.R$styleable: int MenuItem_actionLayout +com.google.android.material.R$styleable: int KeyTimeCycle_android_translationZ +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.AlertEntity) +androidx.constraintlayout.widget.R$attr: int wavePeriod +androidx.appcompat.widget.Toolbar: int getTitleMarginBottom() +wangdaye.com.geometricweather.db.entities.MinutelyEntity: java.lang.Integer dbz +com.google.android.material.R$styleable: int ConstraintLayout_Layout_flow_horizontalStyle +okhttp3.Response$Builder: okhttp3.Response$Builder sentRequestAtMillis(long) +android.support.v4.os.ResultReceiver$MyResultReceiver: android.support.v4.os.ResultReceiver this$0 +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_dialogTitle +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: io.reactivex.disposables.Disposable upstream +com.google.android.material.R$attr: int itemIconSize +androidx.constraintlayout.widget.R$attr: int layout_optimizationLevel +wangdaye.com.geometricweather.R$styleable: int Layout_android_layout_marginRight +androidx.transition.R$layout: int notification_action +android.didikee.donate.R$dimen: int abc_action_bar_default_padding_end_material +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_textLocale +wangdaye.com.geometricweather.common.basic.models.weather.HalfDay: wangdaye.com.geometricweather.common.basic.models.weather.Temperature getTemperature() +androidx.constraintlayout.widget.R$attr: int layout_constraintLeft_creator +com.jaredrummler.android.colorpicker.R$string: int search_menu_title +wangdaye.com.geometricweather.R$styleable: int RecyclerView_reverseLayout +com.baidu.location.LocationClientOption$LocationMode: com.baidu.location.LocationClientOption$LocationMode Battery_Saving +org.greenrobot.greendao.AbstractDao: void insertInTx(java.lang.Iterable,boolean) +wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: int getChartTop() +androidx.preference.R$style: int Preference_Material +com.google.android.material.R$styleable: int[] ShapeAppearance +james.adaptiveicon.R$attr: int title +androidx.preference.R$styleable: int DialogPreference_dialogIcon +androidx.constraintlayout.widget.R$styleable: int Layout_android_layout_marginTop +james.adaptiveicon.R$style: int Platform_AppCompat_Light +cyanogenmod.profiles.ConnectionSettings: int mValue +wangdaye.com.geometricweather.R$id: int end +com.google.android.material.R$styleable: int ConstraintSet_flow_lastHorizontalStyle +com.google.android.material.R$attr: int thumbRadius +com.xw.repo.bubbleseekbar.R$styleable: int[] MenuGroup +wangdaye.com.geometricweather.db.entities.DailyEntity: void setAqiText(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_dark +cyanogenmod.weather.WeatherLocation: WeatherLocation(cyanogenmod.weather.WeatherLocation$1) +com.turingtechnologies.materialscrollbar.R$id: int scrollIndicatorDown +androidx.drawerlayout.R$id: int chronometer +androidx.preference.R$layout: int abc_activity_chooser_view +cyanogenmod.externalviews.ExternalViewProviderService$1: ExternalViewProviderService$1(cyanogenmod.externalviews.ExternalViewProviderService) +androidx.preference.R$style: int Base_Widget_AppCompat_TextView_SpinnerItem +okio.GzipSink: void write(okio.Buffer,long) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean: java.util.List value +androidx.recyclerview.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.PressureUnit KPA +com.turingtechnologies.materialscrollbar.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +retrofit2.Response: retrofit2.Response success(java.lang.Object,okhttp3.Response) +wangdaye.com.geometricweather.R$color: int mtrl_btn_text_color_disabled +cyanogenmod.app.ILiveLockScreenManagerProvider$Stub$Proxy: boolean registerChangeListener(cyanogenmod.app.ILiveLockScreenChangeListener) +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getStreet() +cyanogenmod.providers.CMSettings$Secure: java.lang.String LOCKSCREEN_TARGETS +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: io.reactivex.internal.util.AtomicThrowable error +androidx.appcompat.R$dimen: int abc_text_size_subtitle_material_toolbar +com.google.android.material.R$color: int material_grey_100 +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_138 +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_TabLayout +cyanogenmod.externalviews.ExternalViewProperties: android.view.View mDecorView +androidx.preference.R$dimen: int abc_seekbar_track_progress_height_material +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemHeightSmall +androidx.preference.R$styleable: int LinearLayoutCompat_dividerPadding +okhttp3.internal.platform.Jdk9Platform: void configureTlsExtensions(javax.net.ssl.SSLSocket,java.lang.String,java.util.List) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Year_Selected +wangdaye.com.geometricweather.db.entities.DailyEntity: void setDaytimeTotalPrecipitationDuration(java.lang.Float) +com.turingtechnologies.materialscrollbar.R$color: int material_grey_50 +com.xw.repo.bubbleseekbar.R$layout: int abc_action_menu_item_layout +androidx.coordinatorlayout.R$layout: int notification_template_part_time +com.google.android.material.R$dimen: int notification_main_column_padding_top +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void onComplete() +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties +okhttp3.internal.http2.Http2Reader: void readHeaders(okhttp3.internal.http2.Http2Reader$Handler,int,byte,int) +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_MaterialAlertDialog_Picker_Date_Spinner +cyanogenmod.profiles.ConnectionSettings$1: ConnectionSettings$1() +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver: io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver otherObserver +androidx.preference.R$style: int ThemeOverlay_AppCompat_Dark +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_divider +com.jaredrummler.android.colorpicker.R$styleable: int DrawerArrowToggle_color +androidx.vectordrawable.animated.R$dimen: int notification_main_column_padding_top +android.didikee.donate.R$style: int Widget_AppCompat_ImageButton +okhttp3.internal.Internal: boolean isInvalidHttpUrlHost(java.lang.IllegalArgumentException) +androidx.constraintlayout.widget.R$id: int action_image +androidx.preference.R$styleable: int AppCompatTheme_actionBarDivider +com.turingtechnologies.materialscrollbar.R$dimen: int design_bottom_navigation_shadow_height +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_anon_WITH_RC4_128_SHA +androidx.drawerlayout.R$dimen: int notification_big_circle_margin +com.google.android.material.slider.Slider: Slider(android.content.Context) +com.google.android.material.R$styleable: int CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier +io.reactivex.internal.queue.SpscArrayQueue: boolean isEmpty() +androidx.customview.R$id: int text2 +wangdaye.com.geometricweather.R$drawable: int weather_thunderstorm_pixel +com.jaredrummler.android.colorpicker.R$drawable: int tooltip_frame_light +com.google.android.material.R$string: int mtrl_picker_day_of_week_column_header +wangdaye.com.geometricweather.R$styleable: int SearchView_searchIcon +androidx.viewpager2.R$styleable: int RecyclerView_android_descendantFocusability +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Large +wangdaye.com.geometricweather.R$attr: int titleMarginTop +wangdaye.com.geometricweather.R$id: int activity_live_wallpaper_config_scrollView +com.bumptech.glide.integration.okhttp.R$id: int action_text +com.bumptech.glide.R$dimen: int notification_main_column_padding_top +androidx.hilt.lifecycle.R$styleable: int GradientColor_android_endY +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onProgressUpdate(float) +com.jaredrummler.android.colorpicker.R$string: int abc_prepend_shortcut_label +wangdaye.com.geometricweather.R$drawable: int ic_aqi +okhttp3.internal.connection.RouteSelector: boolean hasNext() +com.tencent.bugly.crashreport.common.info.AppInfo: java.util.List a(java.util.Map) +com.bumptech.glide.Priority: com.bumptech.glide.Priority[] values() +com.xw.repo.bubbleseekbar.R$styleable: int BubbleSeekBar_bsb_section_text_position +com.google.android.material.R$dimen: int mtrl_navigation_item_icon_padding +cyanogenmod.app.CMTelephonyManager: boolean isSubActive(int) +retrofit2.RequestFactory$Builder: java.util.regex.Pattern PARAM_URL_REGEX +com.turingtechnologies.materialscrollbar.R$styleable: int CardView_android_minWidth +wangdaye.com.geometricweather.common.basic.models.options.unit.PollenUnit: java.lang.String getPollenVoice(android.content.Context,java.lang.Integer) +cyanogenmod.externalviews.IExternalViewProviderFactory$Stub +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: long serialVersionUID +james.adaptiveicon.R$style: int Base_V26_Theme_AppCompat +androidx.viewpager2.R$color: int secondary_text_default_material_light +okhttp3.HttpUrl$Builder: int parsePort(java.lang.String,int,int) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: java.lang.String Unit +com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_android_gravity +android.didikee.donate.R$style: int Widget_AppCompat_DropDownItem_Spinner +wangdaye.com.geometricweather.R$drawable: int ic_mtrl_checked_circle +com.google.android.material.R$styleable: int AppCompatTheme_actionBarDivider +com.google.android.material.R$attr: int labelBehavior +cyanogenmod.app.CustomTileListenerService$ICustomTileListenerWrapper: cyanogenmod.app.CustomTileListenerService this$0 +androidx.customview.R$id: int action_container +com.google.android.material.R$styleable: int Toolbar_logoDescription +com.xw.repo.bubbleseekbar.R$attr: int buttonBarPositiveButtonStyle +cyanogenmod.app.ICMTelephonyManager: boolean isDataConnectionEnabled() +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String getLogFromNative() +cyanogenmod.hardware.ICMHardwareService$Stub: cyanogenmod.hardware.ICMHardwareService asInterface(android.os.IBinder) +io.reactivex.internal.operators.observable.ObservableWindowBoundary$WindowBoundaryMainObserver: void innerError(java.lang.Throwable) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_2 +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_ActionBar_Solid +android.didikee.donate.R$id: int icon_group +androidx.viewpager2.R$id: int tag_unhandled_key_listeners +org.greenrobot.greendao.DaoException: long serialVersionUID +com.google.android.material.R$styleable: int ChipGroup_chipSpacingHorizontal +wangdaye.com.geometricweather.R$xml: int widget_text +com.jaredrummler.android.colorpicker.R$attr: int searchViewStyle +com.tencent.bugly.proguard.y: java.lang.String d() +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.lang.String TABLENAME +com.google.android.material.R$style: int MaterialAlertDialog_MaterialComponents_Title_Icon +com.google.android.material.R$style: int Base_Animation_AppCompat_Tooltip +com.google.android.material.R$styleable: int Transition_motionInterpolator +androidx.constraintlayout.widget.R$drawable: int btn_radio_off_mtrl +wangdaye.com.geometricweather.R$styleable: int[] BottomNavigationView +io.reactivex.internal.operators.observable.ObservableRepeatUntil$RepeatUntilObserver: void onError(java.lang.Throwable) +androidx.constraintlayout.widget.R$style: int Animation_AppCompat_Tooltip +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetEnd +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_container +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: java.util.List getValue() +com.tencent.bugly.crashreport.crash.c: com.tencent.bugly.crashreport.crash.e s +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat_Medium +androidx.coordinatorlayout.R$id: int tag_accessibility_actions +wangdaye.com.geometricweather.R$styleable: int TabItem_android_icon +com.jaredrummler.android.colorpicker.R$styleable: int TextAppearance_android_shadowColor +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver$ConcatMapInnerObserver inner +com.google.android.material.R$color: int design_dark_default_color_on_error +com.google.android.material.R$attr: int listPreferredItemHeightLarge +com.google.android.material.R$style: int Theme_AppCompat_DayNight_Dialog +cyanogenmod.externalviews.KeyguardExternalView: cyanogenmod.externalviews.IKeyguardExternalViewProvider access$000(cyanogenmod.externalviews.KeyguardExternalView) +com.tencent.bugly.proguard.e: char[] a +wangdaye.com.geometricweather.R$id: int invisible +com.google.android.material.chip.ChipGroup: void setSelectionRequired(boolean) +io.reactivex.internal.operators.observable.ObservableConcatWithCompletable$ConcatWithObserver +wangdaye.com.geometricweather.R$dimen: int notification_media_narrow_margin +com.google.android.gms.common.server.response.SafeParcelResponse +androidx.swiperefreshlayout.R$dimen: int notification_large_icon_width +androidx.appcompat.R$id: int notification_main_column_container +okhttp3.Cache$2: java.lang.Object next() +wangdaye.com.geometricweather.R$string: int content_des_moonrise +io.reactivex.internal.operators.observable.ObservablePublishSelector$TargetObserver: io.reactivex.Observer downstream +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Measure +okio.Okio$3: Okio$3() +okhttp3.internal.http2.Http2Stream: void close(okhttp3.internal.http2.ErrorCode) +androidx.preference.R$color: int switch_thumb_disabled_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_contentInsetStart +com.turingtechnologies.materialscrollbar.R$styleable: int[] ActionBar +okhttp3.WebSocket$Factory: okhttp3.WebSocket newWebSocket(okhttp3.Request,okhttp3.WebSocketListener) +com.google.android.material.button.MaterialButtonToggleGroup: MaterialButtonToggleGroup(android.content.Context,android.util.AttributeSet,int) +cyanogenmod.weather.WeatherInfo$Builder: int mWindSpeedUnit +cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings(android.os.Parcel) +android.didikee.donate.R$styleable: int AppCompatTheme_buttonBarNegativeButtonStyle +com.turingtechnologies.materialscrollbar.R$attr: int actionModeWebSearchDrawable +wangdaye.com.geometricweather.R$color: int notification_background_rootLight +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_collapsedTitleGravity +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_KRB5_WITH_3DES_EDE_CBC_SHA +com.google.android.material.R$attr: int helperTextTextAppearance +com.google.android.material.R$style: int Widget_MaterialComponents_FloatingActionButton +wangdaye.com.geometricweather.R$attr: int cornerFamilyTopLeft +androidx.transition.R$styleable: int FontFamilyFont_fontStyle +com.amap.api.location.AMapLocationClientOption: boolean u +com.tencent.bugly.proguard.w: boolean a(java.lang.Runnable,long) +cyanogenmod.externalviews.IExternalViewProvider: void onAttach(android.os.IBinder) +com.google.android.material.button.MaterialButton: void setStrokeWidth(int) +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_SeekBar_Discrete +androidx.vectordrawable.R$id: int time +wangdaye.com.geometricweather.R$attr: int motionStagger +com.google.android.material.R$styleable: int GradientColor_android_startY +androidx.appcompat.R$attr: int iconTintMode +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_motionStagger +android.didikee.donate.R$styleable: int AppCompatTheme_listPopupWindowStyle +androidx.preference.R$styleable: int SeekBarPreference_adjustable +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSyncDuration +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTextView_drawableStartCompat +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +com.google.android.material.R$styleable: int SearchView_iconifiedByDefault +okio.Timeout: long deadlineNanoTime() +cyanogenmod.providers.CMSettings$System: java.lang.String DOUBLE_TAP_SLEEP_GESTURE +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean isDisposed() +androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type: androidx.constraintlayout.solver.widgets.analyzer.DependencyNode$Type RIGHT +wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_calendar_input_mode +okhttp3.internal.http2.Hpack$Writer: int evictToRecoverBytes(int) +com.jaredrummler.android.colorpicker.R$attr: int fastScrollVerticalTrackDrawable +okhttp3.internal.cache2.Relay: okio.Source newSource() +wangdaye.com.geometricweather.R$drawable: int abc_ic_ab_back_material +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: void setEnableAnim(boolean) +cyanogenmod.weather.WeatherInfo: long getTimestamp() +wangdaye.com.geometricweather.db.entities.LocationEntity: void setChina(boolean) +com.turingtechnologies.materialscrollbar.R$color: int dim_foreground_disabled_material_dark +com.turingtechnologies.materialscrollbar.R$attr: int itemIconTint +io.reactivex.internal.observers.LambdaObserver: void dispose() +okhttp3.internal.cache2.Relay: okio.Buffer buffer +android.didikee.donate.R$styleable: int ActionBar_title +com.jaredrummler.android.colorpicker.R$styleable: int[] MenuItem +androidx.viewpager.R$id: int notification_main_column +wangdaye.com.geometricweather.R$styleable: int BottomNavigationView_labelVisibilityMode +okhttp3.logging.LoggingEventListener: void connectionAcquired(okhttp3.Call,okhttp3.Connection) +wangdaye.com.geometricweather.db.entities.WeatherEntity: long getPublishTime() +okhttp3.internal.proxy.NullProxySelector: void connectFailed(java.net.URI,java.net.SocketAddress,java.io.IOException) +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: int getProgressCircleDiameter() +io.reactivex.internal.operators.observable.ObservableTakeUntil$TakeUntilMainObserver$OtherObserver: long serialVersionUID +androidx.constraintlayout.widget.R$attr: int popupTheme +androidx.fragment.R$styleable: int FontFamilyFont_fontVariationSettings +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_Light +androidx.lifecycle.extensions.R$style: int TextAppearance_Compat_Notification_Info +wangdaye.com.geometricweather.common.basic.models.weather.Daily: long getTime() +androidx.preference.R$attr: int maxHeight +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ListMenuView +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_maxWidth +wangdaye.com.geometricweather.R$string: int feedback_custom_subtitle_keyword_xmp +androidx.appcompat.R$styleable: int AppCompatTheme_actionModeSplitBackground +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean offer(java.lang.Object,java.lang.Object) +cyanogenmod.alarmclock.ClockContract$CitiesColumns: android.net.Uri CONTENT_URI +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: long lastId +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: long unique +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ProbabilityForecastV2: java.util.Date time +androidx.coordinatorlayout.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$attr: int checkedIconVisible +wangdaye.com.geometricweather.R$styleable: int Preference_dependency +com.google.android.material.R$color: int design_fab_shadow_mid_color +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult$GeoPosition$Elevation$Metric +com.google.android.material.button.MaterialButton: void removeOnCheckedChangeListener(com.google.android.material.button.MaterialButton$OnCheckedChangeListener) +androidx.lifecycle.ViewModel: void onCleared() +android.didikee.donate.R$style: int ThemeOverlay_AppCompat_Dialog +androidx.appcompat.R$drawable: int abc_switch_track_mtrl_alpha +com.turingtechnologies.materialscrollbar.R$styleable: int NavigationView_menu +io.reactivex.internal.operators.observable.ObservableTakeLastTimed$TakeLastTimedObserver: void onComplete() +cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: void cancelRequest(int) +wangdaye.com.geometricweather.R$attr: int materialCalendarYearNavigationButton +wangdaye.com.geometricweather.R$color: int mtrl_btn_transparent_bg_color +io.reactivex.Observable: io.reactivex.Observable doAfterNext(io.reactivex.functions.Consumer) +com.baidu.location.indoor.mapversion.c.a$d: double c(double) +wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_toLeftOf +androidx.preference.R$id: int wrap_content +wangdaye.com.geometricweather.common.ui.widgets.trend.item.HourlyTrendItemView: void setHourText(java.lang.String) +com.turingtechnologies.materialscrollbar.Indicator: void setText(int) +androidx.hilt.R$styleable +androidx.vectordrawable.animated.R$style: int Widget_Compat_NotificationActionContainer +androidx.appcompat.R$dimen: int abc_text_size_button_material +com.amap.api.location.DPoint: int hashCode() +android.didikee.donate.R$layout: int abc_list_menu_item_layout +wangdaye.com.geometricweather.R$styleable: int PropertySet_motionProgress +android.support.v4.os.ResultReceiver: android.os.Handler mHandler +androidx.preference.R$styleable: int AppCompatTheme_textAppearanceListItem +io.reactivex.internal.subscriptions.BasicIntQueueSubscription: boolean isEmpty() +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionBar_TabBar +cyanogenmod.externalviews.ExternalView: ExternalView(android.content.Context,android.util.AttributeSet) +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Selected +androidx.core.R$id: int right_side +wangdaye.com.geometricweather.R$styleable: int MaterialCalendarItem_itemFillColor +wangdaye.com.geometricweather.R$dimen: int design_fab_translation_z_pressed +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_ratingBarStyle +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Speed Speed +wangdaye.com.geometricweather.R$drawable: int notif_temp_123 +com.google.android.material.slider.Slider: android.content.res.ColorStateList getThumbStrokeColor() +androidx.constraintlayout.widget.R$id: int radio +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemIconDisabledAlpha +com.xw.repo.bubbleseekbar.R$dimen: int notification_top_pad_large_text +wangdaye.com.geometricweather.R$attr: int trackHeight +com.tencent.bugly.proguard.j: void a(java.lang.String,int) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: void innerComplete(io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver$SwitchMapMaybeObserver) +com.google.android.material.R$styleable: int[] MaterialCheckBox +androidx.viewpager2.R$id: int accessibility_custom_action_6 +androidx.preference.R$styleable: int AppCompatTextHelper_android_textAppearance +androidx.constraintlayout.widget.R$styleable: int TextAppearance_textAllCaps +androidx.lifecycle.extensions.R$id: int notification_main_column_container +com.google.android.material.R$styleable: int AppCompatTheme_actionBarSplitStyle +wangdaye.com.geometricweather.R$styleable: int[] AppCompatTheme +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: boolean isExecuted() +cyanogenmod.util.ColorUtils: ColorUtils() +com.google.gson.stream.JsonWriter: void setIndent(java.lang.String) +androidx.annotation.Keep +com.jaredrummler.android.colorpicker.R$id: int cpv_color_panel_new +com.jaredrummler.android.colorpicker.R$styleable: int SeekBarPreference_showSeekBarValue +androidx.lifecycle.DefaultLifecycleObserver: void onResume(androidx.lifecycle.LifecycleOwner) +org.greenrobot.greendao.AbstractDao: long insertWithoutSettingPk(java.lang.Object) +androidx.lifecycle.ViewModelProvider$Factory: androidx.lifecycle.ViewModel create(java.lang.Class) +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_collapsible +com.tencent.bugly.crashreport.common.info.a: void e(java.lang.String) +com.turingtechnologies.materialscrollbar.R$color: int mtrl_bottom_nav_item_tint +wangdaye.com.geometricweather.db.entities.WeatherEntityDao: java.lang.Object getKey(java.lang.Object) +androidx.appcompat.R$id: int time +androidx.work.R$string: R$string() +com.bumptech.glide.load.DecodeFormat: com.bumptech.glide.load.DecodeFormat[] values() +androidx.customview.R$layout: int notification_action +wangdaye.com.geometricweather.R$dimen: int hint_alpha_material_light +okhttp3.internal.http2.Http2Connection: long access$708(okhttp3.internal.http2.Http2Connection) +com.tencent.bugly.crashreport.biz.a: android.content.Context a +cyanogenmod.weather.CMWeatherManager$2: CMWeatherManager$2(cyanogenmod.weather.CMWeatherManager) +androidx.vectordrawable.R$id: int tag_unhandled_key_event_manager +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$WindGust$Direction: java.lang.String Localized +com.turingtechnologies.materialscrollbar.R$attr: int snackbarButtonStyle +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult: int status +androidx.hilt.work.R$attr: int alpha +com.google.android.material.R$styleable: int CollapsingToolbarLayout_expandedTitleMargin +cyanogenmod.providers.CMSettings$Secure: java.lang.String DEFAULT_THEME_COMPONENTS +androidx.preference.R$attr: int autoSizeMaxTextSize +androidx.constraintlayout.widget.R$styleable: int Constraint_android_alpha +com.google.android.material.R$style: int ShapeAppearanceOverlay_BottomRightCut +androidx.lifecycle.SavedStateHandle +okhttp3.internal.http1.Http1Codec$AbstractSource +cyanogenmod.themes.IThemeService$Stub$Proxy: void requestThemeChange(cyanogenmod.themes.ThemeChangeRequest,boolean) +com.tencent.bugly.proguard.aj: byte[] c +androidx.work.R$styleable: int FontFamily_fontProviderPackage +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_star_black_16dp +com.google.android.material.R$anim: int mtrl_card_lowers_interpolator +com.google.android.material.R$style: int Animation_MaterialComponents_BottomSheetDialog +com.jaredrummler.android.colorpicker.R$attr: int selectable +james.adaptiveicon.R$styleable: int CompoundButton_buttonTint +com.xw.repo.BubbleSeekBar: BubbleSeekBar(android.content.Context) +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight +androidx.constraintlayout.widget.R$dimen: int abc_dialog_padding_top_material +androidx.preference.R$dimen: int preference_seekbar_padding_vertical +android.didikee.donate.R$styleable: int ActionBar_customNavigationLayout +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +androidx.preference.R$attr: int colorButtonNormal +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Integer getWindChillTemperature() +com.turingtechnologies.materialscrollbar.R$interpolator: int mtrl_fast_out_slow_in +cyanogenmod.app.Profile$TriggerState: int ON_A2DP_DISCONNECT +wangdaye.com.geometricweather.R$animator: int weather_cloudy_2 +androidx.constraintlayout.widget.R$drawable: int abc_list_focused_holo +com.google.android.material.R$attr: int closeIconVisible +cyanogenmod.app.ThemeVersion$ThemeVersionImpl2: java.util.List getDeviceComponentVersions() +okhttp3.Interceptor$Chain: okhttp3.Interceptor$Chain withConnectTimeout(int,java.util.concurrent.TimeUnit) +androidx.appcompat.R$anim: int btn_radio_to_on_mtrl_ring_outer_animation +androidx.hilt.work.R$styleable: int GradientColor_android_startY +james.adaptiveicon.R$color: int abc_tint_edittext +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_ActionMode_Title +com.google.android.material.R$drawable: int design_snackbar_background +wangdaye.com.geometricweather.common.ui.widgets.astro.MoonPhaseView: MoonPhaseView(android.content.Context,android.util.AttributeSet,int) +androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VPath: java.lang.String getPathName() +com.turingtechnologies.materialscrollbar.R$color: int cardview_shadow_start_color +androidx.hilt.R$dimen +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub +io.reactivex.Observable: io.reactivex.Observable window(long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,long) +com.jaredrummler.android.colorpicker.R$attr: int actionMenuTextColor +wangdaye.com.geometricweather.R$style: int ThemeOverlay_AppCompat_DayNight +com.google.android.material.R$styleable: int AppCompatTheme_actionBarTheme +com.github.rahatarmanahmed.cpv.CircularProgressViewAdapter: void onProgressUpdateEnd(float) +wangdaye.com.geometricweather.R$styleable: int Toolbar_logoDescription +retrofit2.http.HTTP: boolean hasBody() +io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver: void otherComplete() +com.jaredrummler.android.colorpicker.R$color: int abc_search_url_text_normal +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_addProfile +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_5 +wangdaye.com.geometricweather.R$layout: int item_weather_daily_line +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties: java.lang.String insee +androidx.customview.R$id: int time +androidx.drawerlayout.R$integer: int status_bar_notification_info_maxnum +okhttp3.internal.http1.Http1Codec: void cancel() +okhttp3.logging.LoggingEventListener: void requestBodyEnd(okhttp3.Call,long) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_buttonBarButtonStyle +com.turingtechnologies.materialscrollbar.R$id: int navigation_header_container +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Precipitation +androidx.constraintlayout.widget.R$id: int info +androidx.constraintlayout.widget.R$dimen: int abc_dialog_list_padding_top_no_title +okio.Buffer$UnsafeCursor +okhttp3.logging.HttpLoggingInterceptor: HttpLoggingInterceptor() +okio.Okio: okio.Sink sink(java.io.OutputStream) +com.tencent.bugly.crashreport.crash.CrashDetailBean: byte[] T +io.reactivex.internal.operators.observable.ObservableTimeoutTimed$TimeoutFallbackObserver: boolean isDisposed() +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver +wangdaye.com.geometricweather.R$attr: int materialCalendarFullscreenTheme +com.google.android.material.R$attr: int actionModeWebSearchDrawable +cyanogenmod.weather.WeatherInfo$DayForecast: double getLow() +androidx.preference.R$drawable: int abc_scrubber_control_off_mtrl_alpha +com.google.android.material.R$drawable: int abc_spinner_mtrl_am_alpha +android.didikee.donate.R$attr: int windowActionBar +okhttp3.internal.http2.Http2Codec: okhttp3.Interceptor$Chain chain +io.reactivex.internal.operators.observable.ObservableReplay$SizeAndTimeBoundReplayBuffer: long maxAge +wangdaye.com.geometricweather.R$id: int toolbar +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabTextColor +com.tencent.bugly.Bugly: boolean enable +androidx.constraintlayout.widget.R$styleable: int GradientColor_android_endX +io.reactivex.internal.operators.flowable.FlowableCreate$SerializedEmitter: io.reactivex.internal.fuseable.SimplePlainQueue queue +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Object readKey(android.database.Cursor,int) +androidx.lifecycle.Transformations$2: androidx.lifecycle.LiveData mSource +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +androidx.appcompat.widget.Toolbar: void setLogo(int) +wangdaye.com.geometricweather.R$dimen: int mtrl_snackbar_action_text_color_alpha +cyanogenmod.providers.WeatherContract$WeatherColumns$WindSpeedUnit +wangdaye.com.geometricweather.R$styleable: int TagView_checked_background_color +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_Compat_Notification_Line2 +com.jaredrummler.android.colorpicker.R$id: int action_divider +androidx.viewpager2.R$dimen: int notification_right_side_padding_top +cyanogenmod.weather.WeatherInfo: double getTodaysLow() +wangdaye.com.geometricweather.R$style: int Base_Widget_MaterialComponents_ProgressIndicator_Linear +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_RatingBar_Indicator +androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_DropDownUp +okhttp3.internal.http2.PushObserver$1 +androidx.viewpager.widget.PagerTitleStrip: int getMinHeight() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Minimum$Metric: java.lang.String Unit +io.reactivex.internal.observers.InnerQueuedObserver: void onComplete() +okhttp3.TlsVersion: okhttp3.TlsVersion SSL_3_0 +james.adaptiveicon.R$styleable: int ActionMode_subtitleTextStyle +androidx.preference.R$styleable: int Fragment_android_tag +androidx.constraintlayout.widget.R$styleable: int AnimatedStateListDrawableTransition_android_reversible androidx.coordinatorlayout.R$attr: int layout_dodgeInsetEdges -android.didikee.donate.R$styleable: int AppCompatTheme_selectableItemBackgroundBorderless -androidx.customview.R$id -wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$HourForecast: java.util.Date time -androidx.appcompat.R$attr: int popupWindowStyle -androidx.constraintlayout.widget.R$attr: int transitionDisable -android.didikee.donate.R$styleable: int ColorStateListItem_android_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int[] BottomNavigationView -com.google.android.material.R$style: int Theme_MaterialComponents_Light_DarkActionBar -io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.disposables.Disposable upstream -androidx.preference.ListPreferenceDialogFragmentCompat -james.adaptiveicon.R$attr: int tintMode -com.google.android.material.R$attr: int elevationOverlayEnabled -androidx.work.R$dimen: int notification_content_margin_start -cyanogenmod.themes.ThemeManager: java.util.Set access$000(cyanogenmod.themes.ThemeManager) -cyanogenmod.weather.WeatherInfo$DayForecast: java.lang.String mKey -okhttp3.HttpUrl$Builder: int parsePort(java.lang.String,int,int) -com.turingtechnologies.materialscrollbar.R$styleable: int RecycleListView_paddingBottomNoButtons -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$Sun -androidx.lifecycle.extensions.R$drawable: R$drawable() -com.jaredrummler.android.colorpicker.R$style: int Base_Theme_AppCompat_Dialog_Alert -com.google.android.material.R$styleable: int AppCompatSeekBar_tickMarkTintMode -cyanogenmod.weather.RequestInfo: boolean access$702(cyanogenmod.weather.RequestInfo,boolean) -androidx.constraintlayout.widget.R$attr: int actionButtonStyle -com.google.android.material.R$attr: int elevationOverlayColor -com.google.android.material.R$styleable: int ConstraintLayout_Layout_layout_constraintBottom_toTopOf -wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionModeOverlay -androidx.constraintlayout.widget.R$styleable: int Transition_constraintSetEnd -com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_colorPresets -cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int FOGGY -com.jaredrummler.android.colorpicker.R$style: int Base_Animation_AppCompat_Dialog -com.google.gson.stream.JsonReader: com.google.gson.stream.JsonToken peek() -com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_MaterialComponents_Overline -androidx.constraintlayout.widget.R$attr: int controlBackground -io.reactivex.internal.util.VolatileSizeArrayList: java.util.ListIterator listIterator(int) -androidx.swiperefreshlayout.R$id: int tag_accessibility_pane_title -wangdaye.com.geometricweather.R$attr: int cpv_color -com.google.android.material.bottomnavigation.BottomNavigationView: BottomNavigationView(android.content.Context) +io.reactivex.internal.operators.observable.ObservableFlatMapMaybe$FlatMapMaybeObserver: boolean cancelled +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: void setIsShow(boolean) +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_thumb_text_size +cyanogenmod.app.Profile$TriggerState: int DISABLED +com.google.android.material.R$attr: int endIconTintMode +wangdaye.com.geometricweather.R$layout: int widget_day_oreo_google_sans +android.didikee.donate.R$style: int Widget_AppCompat_Light_ActionButton +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: ObservableSkipLastTimed$SkipLastTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler,int,boolean) +com.jaredrummler.android.colorpicker.R$string: int abc_capital_off +okhttp3.internal.ws.WebSocketProtocol: java.lang.String acceptHeader(java.lang.String) +com.google.android.material.R$styleable: int MaterialButton_iconTint +androidx.constraintlayout.widget.R$styleable: int Toolbar_titleTextColor +cyanogenmod.app.ProfileManager: java.lang.String EXTRA_PROFILE_SHOW_NONE +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_fontFamily +androidx.appcompat.widget.AlertDialogLayout: AlertDialogLayout(android.content.Context,android.util.AttributeSet) +com.turingtechnologies.materialscrollbar.R$attr: int windowActionBar +androidx.appcompat.R$drawable: int abc_cab_background_internal_bg +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property SunRiseDate +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setOnClickIntent(android.app.PendingIntent) +com.google.android.material.R$styleable: int KeyTimeCycle_android_alpha +com.xw.repo.bubbleseekbar.R$dimen: int abc_dialog_min_width_major +com.google.android.material.R$styleable: int Constraint_visibilityMode +wangdaye.com.geometricweather.db.entities.HourlyEntity: void setThunderstormPrecipitationProbability(java.lang.Float) +com.turingtechnologies.materialscrollbar.R$styleable: int Toolbar_contentInsetStartWithNavigation +com.turingtechnologies.materialscrollbar.R$id: int search_voice_btn +androidx.hilt.R$styleable: int FontFamilyFont_fontWeight +androidx.hilt.work.R$styleable: int FragmentContainerView_android_name +androidx.preference.R$styleable: int LinearLayoutCompat_measureWithLargestChild +com.jaredrummler.android.colorpicker.R$styleable: int ColorPreference_cpv_showAlphaSlider +retrofit2.Platform: java.lang.Object invokeDefaultMethod(java.lang.reflect.Method,java.lang.Class,java.lang.Object,java.lang.Object[]) +androidx.appcompat.R$attr: int selectableItemBackgroundBorderless +androidx.preference.R$drawable: int abc_list_focused_holo +cyanogenmod.alarmclock.CyanogenModAlarmClock +androidx.constraintlayout.widget.R$styleable: int ActionBar_contentInsetEnd +com.google.android.material.R$string: int abc_searchview_description_query +io.reactivex.Observable: io.reactivex.Observable switchOnNextDelayError(io.reactivex.ObservableSource,int) +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_minWidth +androidx.constraintlayout.widget.R$attr: int state_above_anchor +okhttp3.Cache$Entry: java.lang.String RECEIVED_MILLIS +james.adaptiveicon.R$styleable: int AppCompatTheme_actionDropDownStyle +androidx.lifecycle.SavedStateHandle$1: androidx.lifecycle.SavedStateHandle this$0 +androidx.preference.R$styleable: int Toolbar_buttonGravity +com.jaredrummler.android.colorpicker.R$attr: int layout_dodgeInsetEdges +cyanogenmod.app.CMContextConstants: java.lang.String CM_THEME_SERVICE +wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_begin +com.google.android.material.R$styleable: int AppCompatTheme_actionModeSplitBackground +cyanogenmod.providers.CMSettings$Secure: java.lang.String APP_PERFORMANCE_PROFILES_ENABLED +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_MaterialComponents_TextInputEditText +android.didikee.donate.R$dimen: int abc_action_bar_icon_vertical_padding_material +androidx.dynamicanimation.R$styleable: int ColorStateListItem_android_color +io.reactivex.internal.disposables.EmptyDisposable: void error(java.lang.Throwable,io.reactivex.SingleObserver) +com.amap.api.location.UmidtokenInfo: java.lang.String getUmidtoken() +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult$Color: int Red +com.google.gson.stream.MalformedJsonException: long serialVersionUID +james.adaptiveicon.R$style: int Base_Widget_AppCompat_SeekBar +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver: ObservableBufferBoundary$BufferBoundaryObserver$BufferOpenObserver(io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX: java.lang.String coDesc +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int DUST com.google.android.material.R$string: int abc_capital_on -wangdaye.com.geometricweather.R$drawable: int shortcuts_thunder_foreground -wangdaye.com.geometricweather.R$dimen: int preference_dropdown_padding_start -wangdaye.com.geometricweather.R$attr: int contentInsetEndWithActions -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource LocalSource -wangdaye.com.geometricweather.R$attr: int windowMinWidthMajor -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_MaterialCalendar_Day_Selected -com.google.android.material.R$styleable: int Toolbar_navigationContentDescription -com.google.android.material.R$string: int bottom_sheet_behavior -okhttp3.internal.http2.Http2Connection: long access$208(okhttp3.internal.http2.Http2Connection) -com.tencent.bugly.crashreport.crash.c: java.lang.Boolean x -io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: boolean isDisposed() -okhttp3.MultipartBody$Part -android.support.v4.app.INotificationSideChannel$Stub: boolean setDefaultImpl(android.support.v4.app.INotificationSideChannel) -james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_Solid -com.google.android.material.R$styleable: int AlertDialog_singleChoiceItemLayout -wangdaye.com.geometricweather.R$drawable: int notif_temp_120 -android.didikee.donate.R$style: int TextAppearance_AppCompat_Display4 -androidx.appcompat.R$styleable: int SearchView_voiceIcon -com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_maxWidth -wangdaye.com.geometricweather.remoteviews.config.ClockDayDetailsWidgetConfigActivity: ClockDayDetailsWidgetConfigActivity() -androidx.constraintlayout.widget.R$style: int Base_V22_Theme_AppCompat_Light -androidx.core.R$styleable: int GradientColorItem_android_color -androidx.preference.R$style: int TextAppearance_AppCompat_Large_Inverse -com.google.android.material.R$dimen: int abc_text_size_display_1_material -io.reactivex.internal.operators.observable.ObservableDoFinally$DoFinallyObserver: boolean syncFused -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VFullPath: int getFillColor() -wangdaye.com.geometricweather.settings.fragments.AppearanceSettingsFragment: AppearanceSettingsFragment() -com.xw.repo.bubbleseekbar.R$attr: int measureWithLargestChild -okhttp3.internal.cache2.Relay$RelaySource: okio.Timeout timeout -com.tencent.bugly.crashreport.crash.jni.b: java.util.Map d(java.lang.String) -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$AqiBean$BrandInfoBean$BrandsBean: java.lang.String url -com.jaredrummler.android.colorpicker.R$styleable: int SearchView_searchHintIcon -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WindBeanX$SpeedBeanX speed -androidx.appcompat.R$styleable: int TextAppearance_android_textColorLink -com.google.android.material.R$id: int accessibility_custom_action_28 -io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: io.reactivex.disposables.Disposable upstream -com.turingtechnologies.materialscrollbar.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow -okio.SegmentedByteString: okio.ByteString sha256() -wangdaye.com.geometricweather.R$string: int gson -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: int Id -cyanogenmod.app.Profile$1: cyanogenmod.app.Profile createFromParcel(android.os.Parcel) -cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener -wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$LocalSource: java.lang.String Name -com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_star_black_36dp -com.turingtechnologies.materialscrollbar.R$id: int start -android.didikee.donate.R$styleable: int ActionBar_navigationMode -androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dark -com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextView_android_textAppearance -com.xw.repo.bubbleseekbar.R$attr: int switchTextAppearance -androidx.lifecycle.Lifecycle: Lifecycle() -james.adaptiveicon.R$attr: int dividerHorizontal -wangdaye.com.geometricweather.R$id: int widget_clock_day_clock_2_light -okhttp3.Request$Builder: okhttp3.Request$Builder tag(java.lang.Class,java.lang.Object) -androidx.viewpager.R$styleable: int GradientColor_android_gradientRadius -wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WindDegree daytimeWindDegree -cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_isEnabled -okhttp3.internal.http1.Http1Codec$FixedLengthSource: Http1Codec$FixedLengthSource(okhttp3.internal.http1.Http1Codec,long) -com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.drawable.Drawable getContentBackground() -com.jaredrummler.android.colorpicker.R$styleable: int Toolbar_menu -cyanogenmod.weather.ICMWeatherManager$Stub$Proxy: java.lang.String getInterfaceDescriptor() -androidx.appcompat.R$styleable: int AnimatedStateListDrawableCompat_android_dither -okhttp3.Headers: void checkName(java.lang.String) -com.google.gson.LongSerializationPolicy: com.google.gson.LongSerializationPolicy DEFAULT -okhttp3.internal.ws.RealWebSocket: void cancel() -wangdaye.com.geometricweather.R$id: int text -androidx.lifecycle.ComputableLiveData: java.util.concurrent.atomic.AtomicBoolean mComputing -cyanogenmod.platform.Manifest$permission: java.lang.String READ_MSIM_PHONE_STATE -cyanogenmod.app.CustomTile$RemoteExpandedStyle: CustomTile$RemoteExpandedStyle() -com.amap.api.location.AMapLocation: double b(com.amap.api.location.AMapLocation,double) -wangdaye.com.geometricweather.db.entities.AlertEntityDao$Properties: org.greenrobot.greendao.Property CityId -io.reactivex.internal.operators.observable.ObserverResourceWrapper: void onNext(java.lang.Object) -com.github.rahatarmanahmed.cpv.R$attr: int cpv_animAutostart -retrofit2.RequestFactory: RequestFactory(retrofit2.RequestFactory$Builder) -com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ListPopupWindow -com.xw.repo.bubbleseekbar.R$styleable: int RecycleListView_paddingTopNoTitle -wangdaye.com.geometricweather.common.basic.models.weather.Precipitation: java.lang.Float getTotal() -okhttp3.RealCall: boolean forWebSocket +androidx.constraintlayout.widget.R$styleable: int[] Motion +com.turingtechnologies.materialscrollbar.R$attr: int background +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult +wangdaye.com.geometricweather.R$id: int textinput_placeholder +wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationService_Factory +androidx.appcompat.R$drawable: int abc_scrubber_track_mtrl_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$RealFeelTemperatureShade$Metric Metric +wangdaye.com.geometricweather.R$dimen: int material_text_view_test_line_height_override +com.jaredrummler.android.colorpicker.R$id: int search_close_btn +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Weather: java.lang.String desc +com.xw.repo.bubbleseekbar.R$drawable: R$drawable() +android.didikee.donate.R$styleable: int SwitchCompat_android_textOff +com.turingtechnologies.materialscrollbar.R$styleable: int TabLayout_tabRippleColor +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getSnowPrecipitationProbability() +androidx.appcompat.R$color: int material_deep_teal_200 +com.google.android.material.slider.BaseSlider: BaseSlider(android.content.Context,android.util.AttributeSet,int) +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCollapsedPaddingTop +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX$ValueBeanXXXXX +cyanogenmod.externalviews.KeyguardExternalView$8: KeyguardExternalView$8(cyanogenmod.externalviews.KeyguardExternalView,boolean) +androidx.fragment.R$styleable: int GradientColor_android_endColor +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintHeight_percent +com.google.android.material.R$color: int abc_background_cache_hint_selector_material_dark +wangdaye.com.geometricweather.R$id: int widget_text_temperature +com.turingtechnologies.materialscrollbar.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +com.google.android.gms.common.server.converter.zaa +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_23 +androidx.coordinatorlayout.R$id: int left +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: SinglePostCompleteSubscriber(org.reactivestreams.Subscriber) +com.jaredrummler.android.colorpicker.R$drawable: int abc_btn_radio_to_on_mtrl_000 +wangdaye.com.geometricweather.R$styleable: int NavigationView_itemShapeInsetStart +androidx.customview.widget.ExploreByTouchHelper: int mHoveredVirtualViewId +android.didikee.donate.R$color: int secondary_text_default_material_light +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_customNavigationLayout +cyanogenmod.hardware.IThermalListenerCallback$Stub$Proxy: java.lang.String getInterfaceDescriptor() +wangdaye.com.geometricweather.R$attr: int layout_constraintLeft_creator +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property NighttimeWindDegree +wangdaye.com.geometricweather.R$attr: int layout_constraintGuide_percent +com.tencent.bugly.proguard.ae: void a(java.lang.String) +wangdaye.com.geometricweather.R$attr: int actionOverflowMenuStyle +okhttp3.HttpUrl$Builder: java.lang.String encodedFragment +androidx.preference.R$drawable: int abc_textfield_search_default_mtrl_alpha +cyanogenmod.weatherservice.IWeatherProviderServiceClient$Stub$Proxy +com.tencent.bugly.crashreport.common.strategy.a: void a(long) +androidx.lifecycle.extensions.R$id: int accessibility_custom_action_27 +cyanogenmod.weatherservice.ServiceRequestResult$Builder: ServiceRequestResult$Builder() +androidx.transition.R$style: int Widget_Compat_NotificationActionContainer +androidx.constraintlayout.widget.R$dimen: int abc_control_corner_material +androidx.constraintlayout.widget.R$id: int accessibility_custom_action_28 +wangdaye.com.geometricweather.R$attr: int colorPrimarySurface +android.didikee.donate.R$attr: int titleMargin +com.google.android.material.snackbar.BaseTransientBottomBar$SnackbarBaseLayout: void setOnAttachStateChangeListener(com.google.android.material.snackbar.BaseTransientBottomBar$OnAttachStateChangeListener) +okhttp3.Cache$CacheRequestImpl$1: void close() +wangdaye.com.geometricweather.R$layout: int preference_dropdown_material +com.amap.api.fence.PoiItem$1: java.lang.Object createFromParcel(android.os.Parcel) +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_controlBackground +com.google.android.material.R$id: int scale +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float getIcePrecipitation() +cyanogenmod.app.ICMStatusBarManager +androidx.constraintlayout.widget.R$styleable: int Constraint_android_id +okhttp3.internal.http2.Http2Connection: okhttp3.internal.http2.Http2Stream pushStream(int,java.util.List,boolean) +androidx.appcompat.R$attr: int dividerVertical +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowActionModeOverlay +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver: io.reactivex.disposables.Disposable upstream +android.didikee.donate.R$drawable: int abc_popup_background_mtrl_mult +com.bumptech.glide.MemoryCategory: float getMultiplier() +com.google.android.material.R$style: int Widget_MaterialComponents_TabLayout +cyanogenmod.app.CMStatusBarManager: cyanogenmod.app.ICMStatusBarManager getService() +androidx.activity.R$attr: int fontProviderAuthority +androidx.constraintlayout.widget.R$color: int primary_material_light +com.google.android.material.R$styleable: int ShapeAppearance_cornerFamilyTopLeft +com.jaredrummler.android.colorpicker.R$attr: int titleTextStyle +wangdaye.com.geometricweather.common.ui.widgets.trend.chart.PolylineAndHistogramView: PolylineAndHistogramView(android.content.Context) +wangdaye.com.geometricweather.R$string: int mtrl_picker_out_of_range +com.tencent.bugly.proguard.i: com.tencent.bugly.proguard.k a(com.tencent.bugly.proguard.k,int,boolean) +wangdaye.com.geometricweather.R$styleable: int ShapeAppearance_cornerSizeBottomRight +wangdaye.com.geometricweather.R$color: int bright_foreground_material_light +androidx.transition.R$id: int title +okhttp3.OkHttpClient$Builder: OkHttpClient$Builder(okhttp3.OkHttpClient) +cyanogenmod.profiles.StreamSettings$1: cyanogenmod.profiles.StreamSettings[] newArray(int) +io.reactivex.internal.operators.flowable.FlowableOnBackpressureLatest$BackpressureLatestSubscriber: java.util.concurrent.atomic.AtomicLong requested +retrofit2.http.Multipart +androidx.loader.R$styleable: int GradientColorItem_android_offset +wangdaye.com.geometricweather.R$drawable: int weather_clear_day_mini_dark +wangdaye.com.geometricweather.weather.json.mf.MfLocationResult: java.lang.String name +com.jaredrummler.android.colorpicker.R$style: int Base_Widget_AppCompat_ActionButton +androidx.preference.R$layout: int abc_tooltip +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal +com.jaredrummler.android.colorpicker.R$attr: int searchHintIcon +cyanogenmod.themes.ThemeChangeRequest$Builder: cyanogenmod.themes.ThemeChangeRequest$Builder setIcons(java.lang.String) +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice: java.util.List contextList +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Wind$Speed: double Value +com.bumptech.glide.R$styleable: int GradientColor_android_endColor +cyanogenmod.weatherservice.IWeatherProviderService$Stub: boolean onTransact(int,android.os.Parcel,android.os.Parcel,int) +cyanogenmod.weather.CMWeatherManager$2$1: void run() +androidx.vectordrawable.animated.R$styleable: int FontFamilyFont_ttcIndex +com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Light_SearchResult_Title +androidx.appcompat.R$attr: int homeAsUpIndicator +com.turingtechnologies.materialscrollbar.R$layout: int design_navigation_menu +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Pm25 +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Button_Borderless +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_MENU_ACTION_VALIDATOR +androidx.appcompat.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_startX +androidx.vectordrawable.R$attr: int fontStyle +androidx.preference.R$styleable: int AppCompatTheme_actionModePasteDrawable +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_editor_absoluteY +androidx.appcompat.R$dimen: int abc_text_size_menu_material +androidx.appcompat.widget.SwitchCompat: void setCustomSelectionActionModeCallback(android.view.ActionMode$Callback) +com.google.gson.stream.MalformedJsonException: MalformedJsonException(java.lang.String,java.lang.Throwable) +androidx.preference.R$styleable: int MenuItem_android_checked +com.amap.api.fence.PoiItem: double getLatitude() +com.google.gson.stream.JsonReader: java.lang.String toString() +android.didikee.donate.R$style: int Widget_AppCompat_Toolbar +androidx.vectordrawable.animated.R$attr: int fontVariationSettings +androidx.fragment.R$id: R$id() +wangdaye.com.geometricweather.R$string: int mtrl_picker_toggle_to_text_input_mode +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: void setUnit(java.lang.String) +androidx.appcompat.R$styleable: int ActionMode_titleTextStyle +io.reactivex.Observable: io.reactivex.Observable fromCallable(java.util.concurrent.Callable) +james.adaptiveicon.R$attr: int hideOnContentScroll +com.xw.repo.bubbleseekbar.R$attr: int bsb_rtl +james.adaptiveicon.R$attr: int buttonStyle +com.turingtechnologies.materialscrollbar.R$style: int Widget_Design_BottomNavigationView +androidx.constraintlayout.widget.R$id: int src_in +com.xw.repo.bubbleseekbar.R$attr: int listPreferredItemHeightSmall +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_5 +com.turingtechnologies.materialscrollbar.R$styleable: int[] View +androidx.fragment.app.FragmentTabHost$SavedState +android.didikee.donate.R$style: int TextAppearance_AppCompat_Inverse +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub: int TRANSACTION_registerCallback +com.google.android.material.R$id: int ghost_view +com.xw.repo.bubbleseekbar.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$attr: int thumbStrokeColor +androidx.appcompat.R$style: int Base_V21_Theme_AppCompat_Light_Dialog +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_submit +cyanogenmod.profiles.BrightnessSettings: BrightnessSettings(int,boolean) +cyanogenmod.hardware.CMHardwareManager: long getLtoDownloadInterval() +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$2: void run() +com.google.android.material.R$drawable: int mtrl_popupmenu_background +androidx.constraintlayout.widget.R$id: int message +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_Button_Colored +androidx.preference.R$styleable: int[] PreferenceImageView +okhttp3.internal.ws.WebSocketWriter: boolean writerClosed +wangdaye.com.geometricweather.R$layout: int widget_day_temp +com.google.android.material.R$attr: int endIconTint +okio.BufferedSource: byte[] readByteArray(long) +androidx.constraintlayout.widget.R$id +wangdaye.com.geometricweather.R$animator: int weather_sleet_3 +com.google.android.material.R$string: int mtrl_chip_close_icon_content_description +android.didikee.donate.R$attr: int actionModePasteDrawable +okio.Buffer$UnsafeCursor: int next() +wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Float ceiling +james.adaptiveicon.R$styleable: int CompoundButton_buttonCompat +android.didikee.donate.R$color: int abc_hint_foreground_material_dark +okhttp3.internal.cache.CacheStrategy$Factory: long sentRequestMillis +com.tencent.bugly.proguard.z: java.lang.String b(byte[]) +wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit: wangdaye.com.geometricweather.common.basic.models.options.unit.AirQualityCOUnit[] values() +wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWetBulbTemperature(java.lang.Integer) +androidx.appcompat.resources.R$styleable: int GradientColor_android_endX +com.google.android.material.button.MaterialButtonToggleGroup: void setupButtonChild(com.google.android.material.button.MaterialButton) +retrofit2.RequestFactory$Builder: java.lang.annotation.Annotation[] methodAnnotations +com.xw.repo.bubbleseekbar.R$styleable: int ActionBar_hideOnContentScroll +androidx.preference.R$style: int Base_V7_Widget_AppCompat_EditText +com.google.android.material.R$style: int ThemeOverlay_MaterialComponents_Light_BottomSheetDialog +wangdaye.com.geometricweather.R$layout: int preference_dropdown +cyanogenmod.providers.DataUsageContract: android.net.Uri BASE_CONTENT_URI +androidx.appcompat.R$styleable: int[] AppCompatSeekBar +wangdaye.com.geometricweather.R$styleable: int CollapsingToolbarLayout_contentScrim +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: int Severity +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_goneMarginTop +com.google.android.material.R$styleable: int ConstraintSet_layout_goneMarginStart +androidx.appcompat.R$id: int accessibility_custom_action_24 +android.didikee.donate.R$style: int Widget_AppCompat_ButtonBar_AlertDialog +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$6: void run() +com.jaredrummler.android.colorpicker.R$styleable: int GradientColor_android_endX +android.didikee.donate.R$styleable: int MenuItem_android_menuCategory +io.reactivex.internal.operators.flowable.FlowableOnBackpressureDrop$BackpressureDropSubscriber +wangdaye.com.geometricweather.R$styleable: int[] ConstraintSet +wangdaye.com.geometricweather.R$styleable: int SnackbarLayout_backgroundOverlayColorAlpha +com.google.android.material.R$attr: int backgroundInsetStart +cyanogenmod.externalviews.ExternalViewProperties: int[] mScreenCoords +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$TotalLiquid: AccuDailyResult$DailyForecasts$Night$TotalLiquid() +androidx.viewpager.widget.PagerTitleStrip +wangdaye.com.geometricweather.R$id: int alerts +com.google.android.material.R$attr: int boxStrokeColor +okio.SegmentedByteString: java.lang.String base64() +cyanogenmod.hardware.ICMHardwareService: long getLtoDownloadInterval() +okhttp3.internal.http2.Http2Connection$PingRunnable: boolean reply +okhttp3.internal.http2.ErrorCode: okhttp3.internal.http2.ErrorCode PROTOCOL_ERROR +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_lastVerticalBias +okhttp3.internal.http2.Http2Connection$ReaderRunnable$3: Http2Connection$ReaderRunnable$3(okhttp3.internal.http2.Http2Connection$ReaderRunnable,java.lang.String,java.lang.Object[]) +wangdaye.com.geometricweather.R$attr: int background +com.google.android.gms.common.api.AvailabilityException: com.google.android.gms.common.ConnectionResult getConnectionResult(com.google.android.gms.common.api.GoogleApi) +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Light_ActionBar_Solid +androidx.lifecycle.ProcessLifecycleOwner$3: void onActivityPaused(android.app.Activity) +james.adaptiveicon.R$attr: int paddingBottomNoButtons +androidx.constraintlayout.widget.ConstraintLayout: int getPaddingWidth() +androidx.viewpager.R$string +okhttp3.internal.connection.RouteDatabase: RouteDatabase() +retrofit2.CompletableFutureCallAdapterFactory$ResponseCallAdapter: java.util.concurrent.CompletableFuture adapt(retrofit2.Call) +org.greenrobot.greendao.AbstractDao: void updateInsideSynchronized(java.lang.Object,org.greenrobot.greendao.database.DatabaseStatement,boolean) +androidx.preference.R$styleable: int RecyclerView_android_descendantFocusability +androidx.viewpager2.R$id: int title +wangdaye.com.geometricweather.R$styleable: int AppBarLayoutStates_state_liftable +wangdaye.com.geometricweather.db.entities.AlertEntity: java.util.Date date +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX$BrandInfoBeanX$BrandsBeanX$NamesBeanX getNames() +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$Position: java.lang.String name +wangdaye.com.geometricweather.common.basic.models.options.unit.TemperatureUnit: int getTemperature(int) +io.reactivex.internal.observers.BasicIntQueueDisposable: boolean isEmpty() +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +com.google.android.material.R$color: int background_floating_material_dark +wangdaye.com.geometricweather.R$attr: int counterEnabled +com.google.android.material.R$style: int Widget_AppCompat_SearchView_ActionBar +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionButton +com.google.android.material.R$styleable: int TextInputLayout_boxStrokeErrorColor +com.google.android.material.card.MaterialCardView: void setCheckedIconSize(int) +wangdaye.com.geometricweather.R$string: int uv_index +android.didikee.donate.R$attr: int allowStacking +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_Button_OutlinedButton_Icon +cyanogenmod.app.ILiveLockScreenChangeListener +androidx.work.R$styleable +com.google.android.material.R$styleable: int ProgressIndicator_circularRadius +okhttp3.internal.http2.Http2Connection$1: int val$streamId +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_android_translationY +wangdaye.com.geometricweather.R$dimen: int material_font_1_3_box_collapsed_padding_top +wangdaye.com.geometricweather.location.utils.LocationException: LocationException(int,java.lang.String) +com.google.android.material.R$id: int pin +androidx.preference.R$style: int Base_DialogWindowTitle_AppCompat +wangdaye.com.geometricweather.common.basic.models.weather.Astro: java.util.Date getSetDate() +wangdaye.com.geometricweather.R$string: int content_des_co +androidx.preference.R$drawable: int abc_list_pressed_holo_light +androidx.appcompat.R$styleable: int Toolbar_menu +androidx.recyclerview.R$color +com.github.rahatarmanahmed.cpv.CircularProgressView$3: com.github.rahatarmanahmed.cpv.CircularProgressView this$0 +com.tencent.bugly.crashreport.biz.UserInfoBean: long e +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferBoundaryObserver: io.reactivex.disposables.CompositeDisposable observers +cyanogenmod.providers.CMSettings$System: cyanogenmod.providers.CMSettings$Validator KEY_HOME_LONG_PRESS_ACTION_VALIDATOR +com.turingtechnologies.materialscrollbar.Indicator: int getIndicatorWidth() +wangdaye.com.geometricweather.db.entities.ChineseCityEntityDao: java.lang.Long getKey(wangdaye.com.geometricweather.db.entities.ChineseCityEntity) +wangdaye.com.geometricweather.R$styleable: int ClockHandView_materialCircleRadius +com.github.rahatarmanahmed.cpv.CircularProgressViewListener: void onProgressUpdate(float) +androidx.constraintlayout.widget.R$style: int TextAppearance_Compat_Notification_Title +wangdaye.com.geometricweather.R$animator: int weather_fog_3 +androidx.preference.R$style: int Widget_AppCompat_Light_Spinner_DropDown_ActionBar +com.google.android.material.R$style: int ShapeAppearanceOverlay_TopRightDifferentCornerSize +com.google.android.material.R$attr: int windowMinWidthMajor +okhttp3.internal.http1.Http1Codec$ChunkedSink: okhttp3.internal.http1.Http1Codec this$0 +okhttp3.internal.platform.JdkWithJettyBootPlatform: java.lang.reflect.Method removeMethod +androidx.appcompat.R$styleable +com.turingtechnologies.materialscrollbar.R$drawable: int abc_textfield_search_material +com.google.android.material.R$dimen: int mtrl_extended_fab_start_padding +androidx.lifecycle.ViewModelProvider: androidx.lifecycle.ViewModel get(java.lang.Class) +wangdaye.com.geometricweather.background.polling.work.worker.TodayForecastUpdateWorker: TodayForecastUpdateWorker(android.content.Context,androidx.work.WorkerParameters,wangdaye.com.geometricweather.location.LocationHelper,wangdaye.com.geometricweather.weather.WeatherHelper) +okio.BufferedSink: okio.BufferedSink writeHexadecimalUnsignedLong(long) +okhttp3.CipherSuite$1: CipherSuite$1() +retrofit2.ParameterHandler$PartMap: java.lang.String transferEncoding +com.google.android.material.slider.Slider: void setValue(float) +james.adaptiveicon.R$layout: int select_dialog_multichoice_material +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setIcePrecipitation(java.lang.Float) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_3 +com.google.android.material.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_SubmenuArrow +androidx.preference.R$styleable: int[] MenuView +androidx.appcompat.R$style: int Widget_AppCompat_Light_ActionBar_TabText +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: int UnitType +wangdaye.com.geometricweather.R$attr: int titleMarginEnd +androidx.activity.R$integer: R$integer() +com.google.android.material.R$attr: int iconTintMode +androidx.constraintlayout.widget.R$id: int center +wangdaye.com.geometricweather.R$layout: int item_weather_daily_overview +com.tencent.bugly.crashreport.crash.b: com.tencent.bugly.proguard.ak a(android.content.Context,com.tencent.bugly.crashreport.crash.CrashDetailBean,com.tencent.bugly.crashreport.common.info.a) +com.google.android.material.circularreveal.coordinatorlayout.CircularRevealCoordinatorLayout: int getCircularRevealScrimColor() +retrofit2.ParameterHandler$HeaderMap: void apply(retrofit2.RequestBuilder,java.lang.Object) +cyanogenmod.hardware.CMHardwareManager: int FEATURE_VIBRATOR +cyanogenmod.weatherservice.WeatherProviderService: void onConnected() +wangdaye.com.geometricweather.common.basic.models.weather.Base: long publishTime +io.reactivex.internal.subscribers.SinglePostCompleteSubscriber: void cancel() +cyanogenmod.app.CustomTile$Builder: int mIcon +com.turingtechnologies.materialscrollbar.R$dimen: int abc_switch_padding +androidx.appcompat.R$drawable +james.adaptiveicon.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd +com.tencent.bugly.crashreport.common.info.a: java.lang.String as +com.google.android.material.progressindicator.ProgressIndicator: void setInverse(boolean) +com.google.android.material.R$styleable: int MaterialRadioButton_buttonTint +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle +androidx.appcompat.widget.SearchView: void setOnQueryTextListener(androidx.appcompat.widget.SearchView$OnQueryTextListener) +com.google.android.material.R$color: R$color() +com.google.android.material.R$anim: int btn_radio_to_off_mtrl_ring_outer_animation +com.google.android.material.R$attr: int fontFamily +okio.Buffer: okio.ByteString readByteString(long) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX: java.util.List brands +com.xw.repo.bubbleseekbar.R$color: int secondary_text_disabled_material_dark +wangdaye.com.geometricweather.R$string: int settings_title_card_display +androidx.activity.R$styleable: int GradientColor_android_startY +wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History: java.lang.Integer clouds +android.didikee.donate.R$dimen: int abc_list_item_padding_horizontal_material +com.google.android.material.R$styleable: int FloatingActionButton_shapeAppearance +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionModeCloseDrawable +com.turingtechnologies.materialscrollbar.R$styleable: int[] ViewBackgroundHelper +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver: java.lang.Object item +androidx.fragment.R$id: int accessibility_custom_action_26 +okio.RealBufferedSink: okio.BufferedSink writeShort(int) +cyanogenmod.app.IProfileManager: boolean setActiveProfileByName(java.lang.String) +com.amap.api.location.AMapLocationClientOption: boolean e +androidx.viewpager.R$integer +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Display3 +com.google.android.material.bottomnavigation.BottomNavigationMenuView: android.content.res.ColorStateList getItemTextColor() +androidx.vectordrawable.R$id: int notification_background +io.reactivex.internal.operators.observable.ObservableRepeat$RepeatObserver: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$attr: int tabTextColor +androidx.cardview.widget.CardView: boolean getPreventCornerOverlap() +androidx.lifecycle.ServiceLifecycleDispatcher: void onServicePreSuperOnStart() +com.amap.api.location.AMapLocation: android.os.Parcelable$Creator CREATOR +wangdaye.com.geometricweather.R$layout: int widget_day_symmetry +cyanogenmod.providers.CMSettings$Secure: int getIntForUser(android.content.ContentResolver,java.lang.String,int,int) +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_CompoundButton_Switch +wangdaye.com.geometricweather.R$drawable: int navigation_empty_icon +com.google.android.material.card.MaterialCardView: void setPreventCornerOverlap(boolean) +androidx.constraintlayout.widget.R$attr: int fontProviderPackage +wangdaye.com.geometricweather.common.basic.GeoActivity: GeoActivity() +com.amap.api.location.AMapLocation: java.lang.String i(com.amap.api.location.AMapLocation,java.lang.String) com.google.android.material.internal.NavigationMenuItemView: void setCheckable(boolean) -com.google.android.material.R$attr: int layout_constraintVertical_chainStyle -com.google.android.material.slider.RangeSlider: int getActiveThumbIndex() -okhttp3.CipherSuite: okhttp3.CipherSuite forJavaName(java.lang.String) -com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_actionBarDivider -wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past12HourRange$Maximum$Imperial: int UnitType -wangdaye.com.geometricweather.R$layout: int notification_template_part_chronometer -cyanogenmod.providers.CMSettings$Secure: boolean putStringForUser(android.content.ContentResolver,java.lang.String,java.lang.String,int) -androidx.viewpager.R$drawable: int notification_action_background -androidx.vectordrawable.R$id: int normal -com.google.android.material.textview.MaterialTextView: MaterialTextView(android.content.Context) -cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: android.view.Window access$300(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) -androidx.constraintlayout.widget.R$styleable: int FontFamilyFont_android_fontWeight -androidx.preference.R$styleable: int[] AnimatedStateListDrawableItem -wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintStart_toStartOf -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$SpeedBean: java.lang.String value -com.google.android.material.internal.FlowLayout: void setSingleLine(boolean) -android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemPaddingEnd -com.turingtechnologies.materialscrollbar.R$drawable: int notification_icon_background -cyanogenmod.profiles.RingModeSettings: boolean mOverride -androidx.coordinatorlayout.widget.CoordinatorLayout$SavedState -androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constrainedHeight -com.jaredrummler.android.colorpicker.ColorPickerView: void setBorderColor(int) -wangdaye.com.geometricweather.R$id: int widget_clock_day_week_clock_aa_light -wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_ProgressIndicator_Circular_Indeterminate -androidx.preference.R$styleable: int SwitchPreferenceCompat_switchTextOff +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,io.reactivex.functions.Function,java.util.concurrent.Callable) +retrofit2.BuiltInConverters$VoidResponseBodyConverter +okhttp3.Request: okhttp3.Headers headers() +okhttp3.internal.platform.Platform: okhttp3.internal.platform.Platform findAndroidPlatform() +okhttp3.internal.ws.RealWebSocket: boolean send(java.lang.String) +james.adaptiveicon.R$styleable: int AppCompatTextView_drawableTopCompat +androidx.coordinatorlayout.R$style: int Widget_Compat_NotificationActionText +com.google.gson.JsonIOException +androidx.appcompat.widget.SwitchCompat +wangdaye.com.geometricweather.R$attr: int chipIconSize +okhttp3.internal.Util: java.nio.charset.Charset bomAwareCharset(okio.BufferedSource,java.nio.charset.Charset) +com.jaredrummler.android.colorpicker.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao: MinutelyEntityDao(org.greenrobot.greendao.internal.DaoConfig,wangdaye.com.geometricweather.db.entities.DaoSession) +com.google.android.material.R$style: int Base_Theme_MaterialComponents_Light_Dialog_MinWidth +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.internal.fuseable.SimpleQueue queue +wangdaye.com.geometricweather.db.entities.AlertEntityDao: java.util.List _queryWeatherEntity_AlertEntityList(java.lang.String,java.lang.String) +io.reactivex.internal.subscriptions.EmptySubscription: boolean offer(java.lang.Object) +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_setActiveProfile_0 +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: void subscribeNext() +wangdaye.com.geometricweather.R$styleable: int CircularProgressView_cpv_animSwoopDuration +wangdaye.com.geometricweather.R$attr: int defaultQueryHint +android.didikee.donate.R$attr: int switchMinWidth +androidx.constraintlayout.utils.widget.ImageFilterButton +androidx.vectordrawable.R$id: int accessibility_custom_action_29 +com.google.android.material.floatingactionbutton.FloatingActionButton: void setEnsureMinTouchTargetSize(boolean) +wangdaye.com.geometricweather.R$color: int button_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int ActionBar_backgroundSplit +androidx.recyclerview.R$dimen: int compat_notification_large_icon_max_width +wangdaye.com.geometricweather.R$styleable: int Preference_allowDividerBelow +com.jaredrummler.android.colorpicker.R$id: int action_bar_spinner +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust: wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$WindGust$Direction Direction +androidx.preference.R$attr: int layoutManager +com.google.android.material.R$attr: int tooltipFrameBackground +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_night +android.didikee.donate.R$styleable: int Toolbar_logo +wangdaye.com.geometricweather.R$styleable: int[] OnSwipe +wangdaye.com.geometricweather.R$id: int floating +james.adaptiveicon.R$styleable: int ActionBar_titleTextStyle +androidx.activity.R$styleable: int GradientColor_android_endX +wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: java.lang.String CountryCode +androidx.hilt.lifecycle.R$styleable: int FontFamilyFont_fontVariationSettings +james.adaptiveicon.R$drawable: int abc_ic_menu_share_mtrl_alpha +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Night$Rain: AccuDailyResult$DailyForecasts$Night$Rain() +com.google.android.material.R$styleable: int CoordinatorLayout_Layout_layout_anchor +com.google.android.material.R$id: int action_bar_subtitle +wangdaye.com.geometricweather.R$style: int Base_MaterialAlertDialog_MaterialComponents_Title_Text +wangdaye.com.geometricweather.common.basic.models.options.appearance.DailyTrendDisplay +androidx.constraintlayout.widget.R$id: int postLayout +cyanogenmod.app.ILiveLockScreenManager$Stub$Proxy: void setLiveLockScreenEnabled(boolean) +android.didikee.donate.R$attr: int searchHintIcon +com.google.android.material.R$dimen: int mtrl_extended_fab_end_padding_icon +okhttp3.Interceptor$Chain: okhttp3.Request request() +com.xw.repo.bubbleseekbar.R$color: int abc_search_url_text_selected +com.google.android.material.R$style: int Widget_AppCompat_TextView +com.turingtechnologies.materialscrollbar.R$drawable: int abc_list_selector_disabled_holo_light +androidx.appcompat.R$id: int accessibility_custom_action_8 +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: MinutelyEntityDao$Properties() +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: void subscribeInner(io.reactivex.ObservableSource) +androidx.vectordrawable.R$drawable: int notification_bg_normal_pressed +okio.Okio$2: java.io.InputStream val$in +com.jaredrummler.android.colorpicker.R$attr: int showSeekBarValue +wangdaye.com.geometricweather.R$color: int background_floating_material_light +androidx.fragment.app.FragmentManager: void addOnBackStackChangedListener(androidx.fragment.app.FragmentManager$OnBackStackChangedListener) +com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabTextColors() +androidx.activity.R$id: int accessibility_custom_action_25 +wangdaye.com.geometricweather.R$drawable: int notif_temp_34 +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer nighttimeCloudCover +okhttp3.RequestBody$3: RequestBody$3(okhttp3.MediaType,java.io.File) +androidx.constraintlayout.widget.R$dimen: int abc_edit_text_inset_horizontal_material +com.jaredrummler.android.colorpicker.R$styleable: int CheckBoxPreference_android_summaryOn +okhttp3.internal.cache.DiskLruCache$Editor +com.xw.repo.bubbleseekbar.R$attr: int contentInsetStart +wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_checked_black +com.google.android.material.R$styleable: int CardView_cardUseCompatPadding +com.google.android.material.R$styleable: int AppCompatTheme_tooltipFrameBackground +com.amap.api.location.CoordinateConverter: com.amap.api.location.CoordinateConverter coord(com.amap.api.location.DPoint) +cyanogenmod.externalviews.KeyguardExternalView$2: void collapseNotificationPanel() +okhttp3.internal.cache.CacheStrategy: okhttp3.Response cacheResponse +cyanogenmod.platform.Manifest$permission: java.lang.String PERFORMANCE_ACCESS +okhttp3.internal.cache.DiskLruCache$Snapshot: void close() +com.amap.api.fence.GeoFenceClient: com.amap.api.fence.GeoFenceManagerBase b +androidx.constraintlayout.widget.R$styleable: int AppCompatSeekBar_tickMark +com.google.android.material.R$styleable: int TextInputLayout_suffixText +com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +androidx.preference.R$styleable: int Toolbar_titleTextAppearance +androidx.vectordrawable.animated.R$color: int secondary_text_default_material_light +wangdaye.com.geometricweather.R$id: int parentRelative +wangdaye.com.geometricweather.common.basic.models.weather.Weather: boolean isValid(float) +com.google.android.material.R$styleable: int Chip_android_ellipsize +com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(byte,java.lang.String) +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler getInstance() +wangdaye.com.geometricweather.db.entities.WeatherEntity: java.lang.Float no2 +com.google.android.material.R$styleable: int AppCompatTextHelper_android_drawableRight +cyanogenmod.app.Profile: boolean mStatusBarIndicator +io.reactivex.internal.operators.observable.ObservableRange$RangeDisposable: boolean isEmpty() +androidx.lifecycle.ClassesInfoCache: java.lang.reflect.Method[] getDeclaredMethods(java.lang.Class) +com.google.android.material.R$color: int bright_foreground_inverse_material_dark +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Maximum$Metric: int UnitType +com.google.android.material.R$layout: int design_navigation_item_separator +retrofit2.KotlinExtensions$await$$inlined$suspendCancellableCoroutine$lambda$2: java.lang.Object invoke(java.lang.Object) +wangdaye.com.geometricweather.R$attr: int bsb_bubble_text_size +com.google.android.material.slider.BaseSlider: void setHaloTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.History yesterday +com.google.gson.stream.JsonReader: boolean skipTo(java.lang.String) +com.google.android.material.R$styleable: int MaterialCardView_shapeAppearanceOverlay +androidx.constraintlayout.widget.R$dimen: int abc_action_bar_default_padding_start_material +androidx.appcompat.R$styleable: int[] StateListDrawable +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.R$drawable: int shortcuts_cloudy_foreground +cyanogenmod.weather.WeatherInfo: int access$302(cyanogenmod.weather.WeatherInfo,int) +james.adaptiveicon.R$styleable: int DrawerArrowToggle_thickness +androidx.fragment.R$layout: int notification_template_part_time +com.github.rahatarmanahmed.cpv.R$styleable: int CircularProgressView_cpv_animDuration +androidx.vectordrawable.animated.R$styleable: int GradientColor_android_centerX +okio.ByteString: java.lang.String utf8() +io.reactivex.internal.disposables.SequentialDisposable: SequentialDisposable(io.reactivex.disposables.Disposable) +com.bumptech.glide.load.engine.GlideException: com.bumptech.glide.load.DataSource dataSource +james.adaptiveicon.R$color +wangdaye.com.geometricweather.R$id: int item_weather_daily_title_icon +com.google.android.gms.common.zzj +com.google.android.material.R$styleable: int AppCompatTheme_actionModePopupWindowStyle +okio.AsyncTimeout: okio.Sink sink(okio.Sink) +wangdaye.com.geometricweather.R$attr: int dragScale +james.adaptiveicon.R$styleable: int[] ActionMenuItemView +james.adaptiveicon.R$dimen: int abc_edit_text_inset_top_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past24HourRange$Minimum$Imperial +cyanogenmod.app.IProfileManager$Stub: int TRANSACTION_updateNotificationGroup +wangdaye.com.geometricweather.R$id: int bounce +com.jaredrummler.android.colorpicker.R$drawable: int abc_list_pressed_holo_dark +android.didikee.donate.R$dimen: int notification_content_margin_start +androidx.constraintlayout.widget.R$dimen: int notification_action_text_size +cyanogenmod.profiles.StreamSettings$1: StreamSettings$1() +android.didikee.donate.R$color: int ripple_material_dark +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_17 +androidx.appcompat.R$styleable: int AppCompatTextView_drawableTint +com.google.android.material.card.MaterialCardView: int getContentPaddingBottom() +wangdaye.com.geometricweather.R$styleable: int MaterialButton_iconPadding +com.xw.repo.bubbleseekbar.R$styleable: int TextAppearance_textLocale +cyanogenmod.providers.CMSettings$Global: boolean putLongForUser(android.content.ContentResolver,java.lang.String,long,int) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +com.google.android.material.R$layout: int abc_select_dialog_material +cyanogenmod.app.IProfileManager$Stub: IProfileManager$Stub() +com.google.android.material.floatingactionbutton.FloatingActionButton: android.graphics.PorterDuff$Mode getBackgroundTintMode() +wangdaye.com.geometricweather.R$style: int MaterialAlertDialog_MaterialComponents +io.reactivex.internal.operators.observable.ObservableSubscribeOn$SubscribeOnObserver: void onNext(java.lang.Object) +com.turingtechnologies.materialscrollbar.R$id +wangdaye.com.geometricweather.R$id: int widget_clock_day_sensibleTemp +okhttp3.internal.http2.Http2Connection$Builder: okhttp3.internal.http2.Http2Connection build() +io.reactivex.internal.operators.observable.ObservableRetryWhen$RepeatWhenObserver: io.reactivex.internal.util.AtomicThrowable error +androidx.preference.R$styleable: int Toolbar_popupTheme +androidx.hilt.lifecycle.R$dimen: int compat_button_padding_horizontal_material +com.xw.repo.bubbleseekbar.R$color: int button_material_dark +io.reactivex.internal.operators.observable.ObservableFlatMap$MergeObserver: boolean done +androidx.constraintlayout.widget.R$style: int Base_TextAppearance_AppCompat_Subhead_Inverse +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_textAppearanceListItem +okhttp3.CacheControl$Builder: okhttp3.CacheControl$Builder onlyIfCached() +com.jaredrummler.android.colorpicker.R$attr: int listPreferredItemPaddingRight +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Display1 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$AirAndPollen: AccuDailyResult$DailyForecasts$AirAndPollen() +com.google.android.material.floatingactionbutton.FloatingActionButton +androidx.appcompat.R$styleable: int Toolbar_popupTheme +com.jaredrummler.android.colorpicker.R$styleable: int SwitchPreferenceCompat_android_summaryOn +wangdaye.com.geometricweather.db.entities.AlertEntity: void setContent(java.lang.String) +wangdaye.com.geometricweather.R$drawable: int abc_dialog_material_background +com.jaredrummler.android.colorpicker.R$attr: int colorPrimary +wangdaye.com.geometricweather.R$styleable: int Layout_maxWidth +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_constraintCircleAngle +androidx.work.R$id: int accessibility_custom_action_24 +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_CompoundButton_RadioButton +androidx.appcompat.resources.R$id: int accessibility_action_clickable_span +wangdaye.com.geometricweather.R$styleable: int SwitchPreferenceCompat_summaryOff +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl: void onDetachedFromWindow() +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_Light_DialogWhenLarge +androidx.cardview.R$style: int CardView +androidx.viewpager2.R$id: int accessibility_custom_action_15 +com.google.android.material.R$attr: int textAppearanceLargePopupMenu +androidx.constraintlayout.widget.R$attr: int tickMarkTint +james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionModeOverlay +okhttp3.Challenge: java.lang.String realm() +io.reactivex.internal.operators.observable.ObservableWindow$WindowSkipObserver: long firstEmission +com.google.android.material.circularreveal.CircularRevealGridLayout: void setCircularRevealOverlayDrawable(android.graphics.drawable.Drawable) +androidx.legacy.coreutils.R$dimen: int notification_large_icon_height +androidx.loader.R$dimen: int compat_control_corner_material +cyanogenmod.externalviews.KeyguardExternalView$5: cyanogenmod.externalviews.KeyguardExternalView this$0 +androidx.loader.R$layout: int notification_template_custom_big +james.adaptiveicon.R$styleable: int SearchView_submitBackground +wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$DailyForecast$DailyTemperature: MfForecastResult$DailyForecast$DailyTemperature() +com.google.android.material.slider.RangeSlider: float getValueTo() +com.tencent.bugly.Bugly: java.lang.Boolean isDev +com.google.android.material.textfield.TextInputLayout: void removeOnEditTextAttachedListener(com.google.android.material.textfield.TextInputLayout$OnEditTextAttachedListener) +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: java.util.concurrent.TimeUnit unit +androidx.lifecycle.ViewModelProvider: java.lang.String DEFAULT_KEY +androidx.vectordrawable.R$id: int accessibility_custom_action_19 +james.adaptiveicon.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.R$drawable: int flag_ko +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver: void onError(java.lang.Throwable) +wangdaye.com.geometricweather.R$id: int container_main_header_aqiOrWindTxt +okio.Segment: okio.Segment push(okio.Segment) +androidx.constraintlayout.widget.R$string: int abc_menu_function_shortcut_label +com.turingtechnologies.materialscrollbar.R$dimen: int design_snackbar_elevation +wangdaye.com.geometricweather.R$styleable: int CheckBoxPreference_summaryOn +com.turingtechnologies.materialscrollbar.R$color: int switch_thumb_material_dark +cyanogenmod.externalviews.ExternalViewProviderService$Provider: int getWindowFlags() +com.xw.repo.bubbleseekbar.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +androidx.vectordrawable.R$attr: int fontVariationSettings +cyanogenmod.weather.WeatherInfo$Builder: java.lang.String mCity +cyanogenmod.app.StatusBarPanelCustomTile: int initialPid +com.google.android.material.R$drawable: int abc_ic_go_search_api_material +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$WeatherX$InfoX: java.util.List day +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WindBeanXX: java.util.List getValue() +com.xw.repo.bubbleseekbar.R$dimen: int disabled_alpha_material_dark +com.amap.api.location.LocationManagerBase: void setLocationListener(com.amap.api.location.AMapLocationListener) +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ActionBar_TabBar +okio.Buffer: okio.Buffer writeInt(int) +androidx.constraintlayout.widget.R$styleable: int Constraint_layout_constraintTop_creator +com.jaredrummler.android.colorpicker.R$dimen: int abc_dropdownitem_text_padding_right +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String unregist() +androidx.preference.R$styleable: int AppCompatTheme_actionOverflowMenuStyle +androidx.hilt.lifecycle.R$id: int forever +james.adaptiveicon.R$styleable: int LinearLayoutCompat_Layout_android_layout_gravity +com.turingtechnologies.materialscrollbar.R$styleable: int[] FlowLayout +com.google.android.material.R$styleable: int[] BottomAppBar +wangdaye.com.geometricweather.R$attr: int deltaPolarRadius +com.baidu.location.e.h$a: com.baidu.location.e.h$a valueOf(java.lang.String) +cyanogenmod.app.ProfileManager: cyanogenmod.app.IProfileManager getService() +io.reactivex.internal.disposables.DisposableHelper: io.reactivex.internal.disposables.DisposableHelper DISPOSED +androidx.coordinatorlayout.R$layout: int notification_template_icon_group +com.google.android.material.R$styleable: int[] TabLayout +okio.Buffer: long indexOf(byte) +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$6: KeyguardExternalViewProviderService$Provider$ProviderImpl$6(cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl) +wangdaye.com.geometricweather.R$color: int material_on_surface_disabled +androidx.hilt.lifecycle.R$styleable: int[] GradientColorItem +com.google.android.material.R$id: int buttonPanel +com.google.android.material.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String getTreeDescription() +wangdaye.com.geometricweather.R$style: int Base_AlertDialog_AppCompat_Light +androidx.appcompat.resources.R$id: int accessibility_custom_action_10 +com.turingtechnologies.materialscrollbar.R$attr: int actionMenuTextColor +com.google.android.material.R$id: int mtrl_motion_snapshot_view +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_TextInputEditText_OutlinedBox +wangdaye.com.geometricweather.R$styleable: int CardView_cardElevation +com.google.android.material.R$styleable: int GradientColorItem_android_color +androidx.preference.R$dimen: int abc_text_size_headline_material +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Small +wangdaye.com.geometricweather.R$id: int staticLayout +com.google.android.material.R$attr: int tabIndicator +com.google.android.material.R$id: int accessibility_custom_action_9 +com.amap.api.fence.GeoFence: int ERROR_CODE_FAILURE_AUTH +cyanogenmod.weather.WeatherLocation$Builder: cyanogenmod.weather.WeatherLocation$Builder setState(java.lang.String) +io.reactivex.internal.util.NotificationLite$ErrorNotification: java.lang.Throwable e +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: java.lang.Object clone() +com.amap.api.location.AMapLocation: int d(com.amap.api.location.AMapLocation,int) +com.jaredrummler.android.colorpicker.R$attr: int cpv_sliderColor +androidx.preference.R$style: int Base_Widget_AppCompat_Spinner_Underlined +com.turingtechnologies.materialscrollbar.R$style: int Base_V14_Theme_MaterialComponents_Light_DarkActionBar_Bridge +cyanogenmod.power.IPerformanceManager$Stub: int TRANSACTION_setPowerProfile +com.turingtechnologies.materialscrollbar.R$attr: int closeItemLayout +androidx.constraintlayout.solver.SolverVariable$Type: androidx.constraintlayout.solver.SolverVariable$Type[] values() +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintTop_creator +okhttp3.CacheControl: java.lang.String headerValue +com.tencent.bugly.proguard.p: java.util.Map a(com.tencent.bugly.proguard.p,int,com.tencent.bugly.proguard.o) +androidx.viewpager.R$id: int action_container +wangdaye.com.geometricweather.R$styleable: int Chip_closeIconEndPadding +com.jaredrummler.android.colorpicker.R$attr: int actionBarSplitStyle +james.adaptiveicon.R$attr: int editTextBackground +com.tencent.bugly.crashreport.common.info.a: java.util.Map ae +wangdaye.com.geometricweather.R$styleable: int KeyTimeCycle_motionTarget +com.baidu.location.e.h$a: com.baidu.location.e.h$a b +com.turingtechnologies.materialscrollbar.R$styleable: int AppBarLayoutStates_state_lifted +com.google.android.material.R$style: int Base_TextAppearance_AppCompat_Medium +com.bumptech.glide.integration.okhttp.R$styleable: int[] FontFamilyFont +androidx.recyclerview.widget.RecyclerView: void setOnFlingListener(androidx.recyclerview.widget.RecyclerView$OnFlingListener) +com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context,android.util.AttributeSet) +okhttp3.MultipartBody: okhttp3.MediaType contentType() +com.tencent.bugly.proguard.u: long a(int) +androidx.appcompat.R$interpolator: int btn_radio_to_off_mtrl_animation_interpolator_0 +androidx.hilt.lifecycle.R$color: int secondary_text_default_material_light +okio.HashingSource: long read(okio.Buffer,long) +com.jaredrummler.android.colorpicker.R$id: int content +org.greenrobot.greendao.AbstractDao: void deleteByKeyInTx(java.lang.Iterable) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Widget_DropDownItem +james.adaptiveicon.R$style: int Widget_AppCompat_SearchView +com.google.android.material.R$attr: int maxCharacterCount +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_Light_ActionBar_TabView +cyanogenmod.hardware.CMHardwareManager: int VIBRATOR_INTENSITY_INDEX +com.amap.api.location.AMapLocationClientOption: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose getLocationPurpose() +androidx.appcompat.widget.SwitchCompat: android.graphics.drawable.Drawable getThumbDrawable() +android.support.v4.os.ResultReceiver$1: ResultReceiver$1() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean: wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$AqiBeanX getAqi() +androidx.constraintlayout.widget.R$id: int SHOW_PROGRESS +com.tencent.bugly.proguard.n: java.util.Map b(com.tencent.bugly.proguard.n) +com.turingtechnologies.materialscrollbar.R$attr: int actionViewClass +com.google.android.material.circularreveal.CircularRevealFrameLayout: int getCircularRevealScrimColor() +androidx.vectordrawable.animated.R$styleable: int FontFamily_fontProviderQuery +wangdaye.com.geometricweather.R$styleable: int ActionMode_titleTextStyle +androidx.preference.R$styleable: int TextAppearance_android_shadowDy +wangdaye.com.geometricweather.R$dimen: int compat_notification_large_icon_max_height +io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver: ObservableSwitchMapCompletable$SwitchMapCompletableObserver$SwitchMapInnerObserver(io.reactivex.internal.operators.mixed.ObservableSwitchMapCompletable$SwitchMapCompletableObserver) +okio.ByteString: int indexOf(byte[],int) +okhttp3.internal.platform.AndroidPlatform: void connectSocket(java.net.Socket,java.net.InetSocketAddress,int) +androidx.appcompat.resources.R$styleable: int[] StateListDrawable +okhttp3.internal.io.FileSystem: boolean exists(java.io.File) +retrofit2.Response: java.lang.String message() +androidx.customview.view.AbsSavedState +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_windowFixedHeightMajor +james.adaptiveicon.R$styleable: int FontFamilyFont_android_font +wangdaye.com.geometricweather.R$style: int Theme_MaterialComponents_Light_DialogWhenLarge +com.xw.repo.bubbleseekbar.R$styleable: int MenuView_android_itemBackground +cyanogenmod.providers.ThemesContract$PreviewColumns: java.lang.String LOCK_WALLPAPER_PREVIEW +com.google.android.material.R$dimen: int mtrl_edittext_rectangle_top_offset +androidx.constraintlayout.widget.R$styleable: int OnSwipe_touchAnchorSide +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindChillTemperature +com.google.android.material.R$drawable: int abc_scrubber_control_off_mtrl_alpha +wangdaye.com.geometricweather.R$style: int ShapeAppearanceOverlay +androidx.hilt.lifecycle.R$styleable: int[] GradientColor +androidx.hilt.R$dimen: int notification_action_text_size +wangdaye.com.geometricweather.common.basic.models.weather.Current: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode getWeatherCode() +androidx.viewpager.widget.PagerTitleStrip: void setTextColor(int) +com.turingtechnologies.materialscrollbar.R$style: int ThemeOverlay_AppCompat_Dialog +wangdaye.com.geometricweather.R$id: int screen +com.bumptech.glide.load.ImageHeaderParser$ImageType: com.bumptech.glide.load.ImageHeaderParser$ImageType[] $VALUES +com.google.android.material.R$dimen: int abc_switch_padding +cyanogenmod.externalviews.ExternalView$5 +androidx.appcompat.resources.R$drawable: int notification_bg +androidx.constraintlayout.utils.widget.ImageFilterButton: ImageFilterButton(android.content.Context) +wangdaye.com.geometricweather.R$drawable: int shortcuts_haze_foreground +com.tencent.bugly.proguard.q +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Time +androidx.cardview.R$styleable: int CardView_android_minHeight +cyanogenmod.weather.WeatherInfo$DayForecast +wangdaye.com.geometricweather.R$styleable: int AppCompatTextView_drawableStartCompat +androidx.constraintlayout.widget.R$drawable: int abc_ic_search_api_material +wangdaye.com.geometricweather.weather.json.accu.AccuLocationResult: int Rank +androidx.drawerlayout.R$integer +androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_Alert +androidx.preference.R$styleable: int Preference_android_order +cyanogenmod.app.StatusBarPanelCustomTile$1: cyanogenmod.app.StatusBarPanelCustomTile createFromParcel(android.os.Parcel) +com.google.android.material.R$attr: int backgroundStacked +androidx.loader.R$layout: int notification_template_part_chronometer +wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Base getBase() +androidx.lifecycle.FullLifecycleObserverAdapter$1: int[] $SwitchMap$androidx$lifecycle$Lifecycle$Event +wangdaye.com.geometricweather.R$style: int ThemeOverlay_MaterialComponents_AutoCompleteTextView_FilledBox_Dense +com.xw.repo.bubbleseekbar.R$styleable: int[] ViewBackgroundHelper +androidx.constraintlayout.widget.R$styleable: int Layout_layout_goneMarginEnd +wangdaye.com.geometricweather.R$id: int widget_week_container +wangdaye.com.geometricweather.R$style: int widget_progress +com.xw.repo.bubbleseekbar.R$styleable: int[] ColorStateListItem +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_year_corner +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void onError(java.lang.Throwable) +okhttp3.Request$Builder: okhttp3.Headers$Builder headers +io.reactivex.internal.operators.observable.ObservableBufferBoundary$BufferCloseObserver: long serialVersionUID +wangdaye.com.geometricweather.R$style: int GeometricWeatherTheme_TabLayoutTheme +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_Spinner +wangdaye.com.geometricweather.R$id: int accessibility_custom_action_4 +wangdaye.com.geometricweather.R$styleable: int[] ActivityChooserView +com.jaredrummler.android.colorpicker.R$style: int Preference_DialogPreference_Material +okhttp3.internal.http2.Http2Writer: void settings(okhttp3.internal.http2.Settings) +io.reactivex.internal.subscriptions.BasicQueueSubscription: boolean isEmpty() +okhttp3.internal.io.FileSystem: long size(java.io.File) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunForecastResult$PrecipitationBean: int getStatus() +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapObserver +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.String nighttimeWeatherPhase +com.bumptech.glide.load.HttpException: HttpException(int) +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_min +com.tencent.bugly.crashreport.common.strategy.StrategyBean: java.lang.String d +wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Widget_Switch +androidx.constraintlayout.widget.R$attr: int subtitleTextColor +com.google.android.material.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +okhttp3.internal.http1.Http1Codec: okhttp3.Response$Builder readResponseHeaders(boolean) +com.turingtechnologies.materialscrollbar.R$attr: int buttonStyleSmall +androidx.constraintlayout.widget.R$color: int error_color_material_dark +androidx.loader.R$dimen: int notification_main_column_padding_top +com.google.android.material.bottomnavigation.BottomNavigationItemView: void setTextColor(android.content.res.ColorStateList) +com.google.android.material.button.MaterialButtonToggleGroup: int getCheckedButtonId() +androidx.vectordrawable.animated.R$attr: int fontProviderFetchTimeout +okhttp3.internal.http2.Http2Stream: okio.Timeout writeTimeout() +wangdaye.com.geometricweather.R$id: int widget_week_week_2 +okhttp3.internal.cache.CacheStrategy +com.turingtechnologies.materialscrollbar.R$drawable: int abc_ic_voice_search_api_material +com.google.android.material.timepicker.ClockHandView: void setOnActionUpListener(com.google.android.material.timepicker.ClockHandView$OnActionUpListener) +wangdaye.com.geometricweather.common.rxjava.BaseObserver: void onComplete() +androidx.swiperefreshlayout.widget.SwipeRefreshLayout: void setColorScheme(int[]) +com.google.android.material.R$style: int Theme_AppCompat_Light +com.xw.repo.bubbleseekbar.R$styleable: int DrawerArrowToggle_arrowHeadLength +androidx.lifecycle.ReportFragment$ActivityInitializationListener +androidx.drawerlayout.R$styleable: int ColorStateListItem_android_color +wangdaye.com.geometricweather.R$id: int item_weather_daily_wind_directionValue +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_110 +com.turingtechnologies.materialscrollbar.R$attr: int font +wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult: wangdaye.com.geometricweather.weather.json.atmoaura.AtmoAuraQAResult$Advice advice +com.xw.repo.bubbleseekbar.R$style: int Theme_AppCompat_DialogWhenLarge +com.google.android.gms.base.R$drawable: int common_google_signin_btn_text_light_normal_background +wangdaye.com.geometricweather.common.basic.models.weather.History: int getNighttimeTemperature() +androidx.constraintlayout.widget.R$id: int dragRight +io.reactivex.internal.operators.observable.ObservableObserveOn$ObserveOnObserver: io.reactivex.disposables.Disposable upstream +io.reactivex.internal.operators.observable.ObservableRepeatWhen$RepeatWhenObserver: void innerComplete() +androidx.room.RoomDatabase$JournalMode: androidx.room.RoomDatabase$JournalMode TRUNCATE +androidx.appcompat.R$styleable: int AppCompatImageView_android_src +androidx.appcompat.widget.AppCompatButton: void setSupportBackgroundTintMode(android.graphics.PorterDuff$Mode) +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_Search_DropDown +com.xw.repo.bubbleseekbar.R$id: int search_button +james.adaptiveicon.R$attr: int navigationIcon +com.xw.repo.bubbleseekbar.R$style: int Base_V7_Theme_AppCompat_Light +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Minimum$Imperial: int UnitType +com.google.android.material.R$color: int design_fab_shadow_start_color +androidx.lifecycle.extensions.R$anim: int fragment_close_enter +android.support.v4.app.INotificationSideChannel$Stub$Proxy: android.support.v4.app.INotificationSideChannel sDefaultImpl +wangdaye.com.geometricweather.R$id: int material_label +com.google.android.material.R$styleable: int Badge_number +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_64 +james.adaptiveicon.R$dimen: int abc_dropdownitem_text_padding_right +wangdaye.com.geometricweather.R$style: int Theme_AppCompat_DialogWhenLarge +com.jaredrummler.android.colorpicker.R$attr: int closeItemLayout +com.turingtechnologies.materialscrollbar.R$styleable: int ActionMode_background +wangdaye.com.geometricweather.R$id: int weather_icon +androidx.preference.R$style: int Base_ThemeOverlay_AppCompat_Dialog +james.adaptiveicon.R$attr: int paddingEnd +wangdaye.com.geometricweather.R$attr: int windowFixedHeightMajor +androidx.lifecycle.ClassesInfoCache: java.util.Map mHasLifecycleMethods +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_alertDialogCenterButtons +androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_dividerHorizontal +com.google.android.gms.internal.location.zzl: android.os.Parcelable$Creator CREATOR +androidx.swiperefreshlayout.R$id: int tag_screen_reader_focusable +com.google.android.material.R$style: int Widget_MaterialComponents_Button_TextButton_Dialog_Flush +wangdaye.com.geometricweather.R$id: int default_activity_button +com.google.android.material.R$attr: int listPreferredItemPaddingStart +com.jaredrummler.android.colorpicker.R$style: int Widget_AppCompat_Light_ListView_DropDown +androidx.constraintlayout.widget.R$color: int switch_thumb_disabled_material_light +wangdaye.com.geometricweather.R$layout: int dialog_resident_location +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean: CaiYunMainlyResult$ForecastDailyBean$PrecipitationProbabilityBean() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$PressureBean: java.lang.String getValue() +com.google.android.material.R$styleable: int AppCompatTextView_drawableTopCompat +com.xw.repo.bubbleseekbar.R$attr: int voiceIcon +com.jaredrummler.android.colorpicker.R$attr: int overlapAnchor +com.turingtechnologies.materialscrollbar.R$integer: int config_tooltipAnimTime +androidx.constraintlayout.widget.R$styleable: int OnSwipe_dragThreshold +android.didikee.donate.R$dimen: int abc_text_size_medium_material +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: ObservableJoin$JoinDisposable(io.reactivex.Observer,io.reactivex.functions.Function,io.reactivex.functions.Function,io.reactivex.functions.BiFunction) +com.xw.repo.bubbleseekbar.R$id: int message +androidx.preference.R$style: int Base_TextAppearance_AppCompat_Title +com.jaredrummler.android.colorpicker.R$styleable: int ColorPanelView_cpv_showOldColor +com.turingtechnologies.materialscrollbar.R$attr: int icon +wangdaye.com.geometricweather.R$style: int Widget_Support_CoordinatorLayout +com.google.android.material.R$styleable: int OnSwipe_limitBoundsTo +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property Id +wangdaye.com.geometricweather.R$dimen: int abc_text_size_large_material +androidx.constraintlayout.widget.ConstraintAttribute$AttributeType: androidx.constraintlayout.widget.ConstraintAttribute$AttributeType DIMENSION_TYPE +androidx.preference.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Title +io.reactivex.internal.operators.observable.ObservableConcatMap$ConcatMapDelayErrorObserver: void onError(java.lang.Throwable) +com.tencent.bugly.crashreport.common.info.a: java.lang.String l() +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_weightSum +androidx.constraintlayout.widget.R$attr: int layout_constraintVertical_chainStyle +io.reactivex.Observable: io.reactivex.Observable buffer(int,java.util.concurrent.Callable) +com.turingtechnologies.materialscrollbar.R$attr: int textAppearanceHeadline1 +io.reactivex.internal.util.VolatileSizeArrayList: int indexOf(java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuHourlyResult: java.lang.String IconPhrase +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_SearchView_ActionBar +androidx.appcompat.resources.R$id: int accessibility_custom_action_11 +androidx.hilt.work.R$id: int tag_accessibility_pane_title +androidx.swiperefreshlayout.R$styleable: int GradientColor_android_startY +androidx.constraintlayout.widget.Group: Group(android.content.Context,android.util.AttributeSet) +androidx.constraintlayout.widget.R$style: int Theme_AppCompat_DayNight_Dialog +com.google.android.gms.base.R$id: int dark +wangdaye.com.geometricweather.db.entities.DailyEntity: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode nighttimeWeatherCode +androidx.loader.R$style +androidx.fragment.R$styleable: int FontFamily_fontProviderAuthority +com.autonavi.aps.amapapi.model.AMapLocationServer: java.lang.String toStr(int) +androidx.preference.R$style: int Theme_AppCompat_Dialog_MinWidth +androidx.legacy.coreutils.R$id: int notification_main_column +androidx.vectordrawable.animated.R$id: int accessibility_custom_action_29 +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$Ceiling$Imperial: AccuCurrentResult$Ceiling$Imperial() +com.tencent.bugly.crashreport.common.info.a: java.lang.String m +androidx.drawerlayout.R$styleable: int FontFamilyFont_android_fontVariationSettings +wangdaye.com.geometricweather.R$string: int key_widget_trend_daily +com.jaredrummler.android.colorpicker.R$layout: int abc_action_mode_bar +wangdaye.com.geometricweather.R$attr: int fastScrollVerticalThumbDrawable +okhttp3.Request: java.lang.String header(java.lang.String) +com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose: com.amap.api.location.AMapLocationClientOption$AMapLocationPurpose Transport +okhttp3.internal.http2.Http2Codec$StreamFinishingSource: okhttp3.internal.http2.Http2Codec this$0 +cyanogenmod.themes.ThemeManager: java.util.Set mProcessingListeners +androidx.appcompat.R$color: int bright_foreground_material_light +com.turingtechnologies.materialscrollbar.R$styleable: int AlertDialog_showTitle +com.google.android.material.R$dimen: int mtrl_extended_fab_bottom_padding +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_layout_goneMarginEnd +okhttp3.OkHttpClient$Builder: int callTimeout +okhttp3.Request$Builder: okhttp3.Request build() +wangdaye.com.geometricweather.R$styleable: int FragmentContainerView_android_name +com.google.android.material.R$dimen: int mtrl_bottomappbar_fabOffsetEndMode +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$Past18Hours$Imperial: double Value +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDH_ECDSA_WITH_RC4_128_SHA +wangdaye.com.geometricweather.R$drawable: int weather_partly_cloudy_day_mini_xml +com.bumptech.glide.MemoryCategory: com.bumptech.glide.MemoryCategory HIGH +cyanogenmod.providers.CMSettings$System: boolean putInt(android.content.ContentResolver,java.lang.String,int) +androidx.coordinatorlayout.R$dimen: int notification_large_icon_width +james.adaptiveicon.R$attr: int actionProviderClass +androidx.constraintlayout.widget.R$attr: int transitionFlags +com.tencent.bugly.BuglyStrategy: com.tencent.bugly.BuglyStrategy setUserInfoActivity(java.lang.Class) +okio.SegmentPool: long byteCount +androidx.vectordrawable.animated.R$color: int ripple_material_light +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns: java.lang.String PROFILE +cyanogenmod.app.ProfileGroup$Mode: ProfileGroup$Mode(java.lang.String,int) +androidx.viewpager.widget.ViewPager: int getPageMargin() +cyanogenmod.library.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$attr: int max +androidx.vectordrawable.R$dimen: int compat_button_inset_vertical_material +com.google.android.material.textfield.TextInputLayout: void setCounterOverflowTextAppearance(int) +com.google.android.material.R$attr: int headerLayout +androidx.preference.R$style: int Widget_Support_CoordinatorLayout +androidx.activity.R$styleable: int GradientColor_android_gradientRadius +com.tencent.bugly.crashreport.CrashReport: java.util.Map getSdkExtraData() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Metric +okio.RealBufferedSink: boolean closed +wangdaye.com.geometricweather.weather.json.mf.MfRainResult$Position: java.lang.String timezone +androidx.appcompat.resources.R$layout: R$layout() +com.google.android.material.floatingactionbutton.FloatingActionButton: void setImageDrawable(android.graphics.drawable.Drawable) +wangdaye.com.geometricweather.db.entities.DailyEntityDao$Properties: org.greenrobot.greendao.Property Pm25 +okio.RealBufferedSink$1: okio.RealBufferedSink this$0 +android.didikee.donate.R$styleable: int AppCompatTextView_fontVariationSettings +androidx.preference.R$styleable: int AlertDialog_multiChoiceItemLayout +android.didikee.donate.R$layout: int abc_action_mode_close_item_material +android.didikee.donate.R$style: int Base_Widget_AppCompat_ActionBar_TabText +com.google.android.material.floatingactionbutton.FloatingActionButton: void setTranslationX(float) +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void dispose() +androidx.appcompat.widget.Toolbar: void setNavigationContentDescription(int) +io.reactivex.internal.operators.observable.ObservableGroupBy$State: void onNext(java.lang.Object) +com.jaredrummler.android.colorpicker.R$string: int abc_searchview_description_query +androidx.constraintlayout.widget.R$styleable: int GradientColorItem_android_color +io.reactivex.internal.operators.observable.ObservableSkipLast$SkipLastObserver: void onError(java.lang.Throwable) +com.google.android.material.R$attr: int iconTint +com.amap.api.location.AMapLocation: java.lang.String g +io.reactivex.internal.disposables.EmptyDisposable: int requestFusion(int) +androidx.recyclerview.R$id +cyanogenmod.themes.IThemeService$Stub: android.os.IBinder asBinder() +com.xw.repo.bubbleseekbar.R$styleable: int AppCompatTheme_colorPrimaryDark +androidx.preference.R$id: int tag_accessibility_actions +com.turingtechnologies.materialscrollbar.R$attr: int divider +androidx.preference.R$style: int Widget_AppCompat_DrawerArrowToggle +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_AppCompat_Dialog_MinWidth +androidx.hilt.R$styleable: int GradientColor_android_type +androidx.appcompat.view.menu.ListMenuItemView: void setCheckable(boolean) +androidx.preference.R$attr: int actionBarStyle +androidx.preference.R$dimen: int abc_edit_text_inset_horizontal_material +androidx.appcompat.R$style: int Base_V21_Theme_AppCompat +com.tencent.bugly.crashreport.crash.c: int c +com.amap.api.location.APSServiceBase: void onCreate() +okhttp3.internal.connection.ConnectionSpecSelector: ConnectionSpecSelector(java.util.List) +com.turingtechnologies.materialscrollbar.R$attr: int toolbarId +okhttp3.internal.http2.Hpack$Writer: void clearDynamicTable() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$PrecipitationSummary$PastHour$Imperial: java.lang.String Unit +androidx.work.R$id: int accessibility_custom_action_23 +com.google.android.material.R$style: int Widget_AppCompat_Button_Small +androidx.lifecycle.LiveData: void removeObserver(androidx.lifecycle.Observer) +androidx.appcompat.R$style: int Theme_AppCompat_DayNight_DialogWhenLarge +com.google.android.material.R$attr: int drawerArrowStyle +wangdaye.com.geometricweather.db.entities.AlertEntity: java.util.Date getDate() +wangdaye.com.geometricweather.R$animator: int start_shine_2 +com.google.android.material.R$id: int accessibility_custom_action_31 +com.google.android.material.textfield.TextInputLayout: void setStartIconTintList(android.content.res.ColorStateList) +wangdaye.com.geometricweather.R$id: int widget_trend_hourly_item_5 +com.amap.api.location.AMapLocation: int ERROR_CODE_FAILURE_INIT +wangdaye.com.geometricweather.R$styleable: int TextAppearance_android_shadowDx +wangdaye.com.geometricweather.R$id: int activity_card_display_manage_appBar +com.jaredrummler.android.colorpicker.R$layout: int preference_dropdown +androidx.constraintlayout.widget.R$styleable: int ActionBar_customNavigationLayout +cyanogenmod.themes.ThemeManager: void registerThemeChangeListener(cyanogenmod.themes.ThemeManager$ThemeChangeListener) +com.turingtechnologies.materialscrollbar.R$layout: int abc_list_menu_item_radio +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver: java.lang.Object singleItem +okhttp3.Response$Builder: long sentRequestAtMillis +com.google.android.material.tabs.TabLayout: android.content.res.ColorStateList getTabRippleColor() +okio.Okio: okio.Sink sink(java.io.OutputStream,okio.Timeout) +okhttp3.Cache$Entry: Cache$Entry(okio.Source) +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_commit_search_api_mtrl_alpha +cyanogenmod.themes.ThemeChangeRequest: java.lang.String getFontThemePackageName() +com.xw.repo.bubbleseekbar.R$attr: int bsb_thumb_text_color +com.turingtechnologies.materialscrollbar.R$string: int abc_menu_enter_shortcut_label +androidx.drawerlayout.R$id: int info +com.jaredrummler.android.colorpicker.R$style: int TextAppearance_AppCompat_Display3 +cyanogenmod.externalviews.IKeyguardExternalViewProvider$Stub$Proxy: void onScreenTurnedOff() +com.tencent.bugly.proguard.an: byte[] c +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Medium_Inverse +androidx.appcompat.R$styleable: int MenuView_android_horizontalDivider +androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2: LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription$2(androidx.lifecycle.LiveDataReactiveStreams$LiveDataPublisher$LiveDataSubscription) +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: io.reactivex.disposables.CompositeDisposable disposables +wangdaye.com.geometricweather.R$style: int Base_DialogWindowTitleBackground_AppCompat +com.google.android.material.slider.BaseSlider: void setStepSize(float) +com.turingtechnologies.materialscrollbar.R$color: int cardview_dark_background +wangdaye.com.geometricweather.R$attr: int cornerRadius +androidx.preference.R$styleable: int[] Fragment +james.adaptiveicon.R$attr: int searchIcon +okhttp3.HttpUrl: java.util.List queryParameterValues(java.lang.String) +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$AqiBeanXX$BrandInfoBeanXXX$BrandsBeanXXX: java.lang.String brandId +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_android_elevation +com.google.android.material.R$dimen: int design_fab_size_normal +com.google.android.material.R$style: int Base_Widget_AppCompat_Toolbar +android.didikee.donate.R$style: int Widget_AppCompat_ListPopupWindow +wangdaye.com.geometricweather.R$drawable: int notif_temp_50 +io.reactivex.internal.operators.observable.ObservableCombineLatest$CombinerObserver: void onSubscribe(io.reactivex.disposables.Disposable) +androidx.appcompat.R$layout: int abc_alert_dialog_material +com.google.android.material.R$attr: int currentState +com.amap.api.location.AMapLocationClientOption$AMapLocationMode: com.amap.api.location.AMapLocationClientOption$AMapLocationMode Hight_Accuracy +androidx.appcompat.R$styleable: int AppCompatTheme_colorError +cyanogenmod.app.CustomTile$ExpandedStyle: java.lang.String toString() +james.adaptiveicon.R$attr: int windowActionBarOverlay +com.google.android.material.R$styleable: int TextInputLayout_errorIconTintMode +com.tencent.bugly.crashreport.common.info.a: java.lang.String L() +androidx.preference.R$attr: int searchHintIcon +androidx.activity.R$id: int action_text +com.google.android.material.R$attr: int textAppearanceCaption +com.google.gson.stream.JsonWriter: int stackSize +androidx.loader.R$string: int status_bar_notification_info_overflow +android.didikee.donate.R$drawable: int abc_list_selector_background_transition_holo_dark +com.google.android.material.R$dimen: int mtrl_btn_text_size +androidx.preference.UnPressableLinearLayout: UnPressableLinearLayout(android.content.Context,android.util.AttributeSet) +cyanogenmod.power.IPerformanceManager +okhttp3.internal.http.StatusLine: int HTTP_CONTINUE +androidx.preference.R$styleable: int AppCompatTheme_actionBarSize +com.amap.api.location.AMapLocationQualityReport: void setLocationMode(com.amap.api.location.AMapLocationClientOption$AMapLocationMode) +okhttp3.Request$Builder: okhttp3.Request$Builder tag(java.lang.Object) +androidx.appcompat.widget.SwitchCompat: void setThumbResource(int) +androidx.constraintlayout.widget.R$styleable: int LinearLayoutCompat_android_baselineAligned +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WindGust$Speed$Metric: double Value +androidx.lifecycle.extensions.R$dimen: int notification_small_icon_background_padding +com.google.android.material.R$style: int Widget_MaterialComponents_MaterialCalendar_HeaderTitle +com.google.android.material.R$style: int ShapeAppearance_MaterialComponents_Tooltip +com.google.gson.LongSerializationPolicy$2 +cyanogenmod.alarmclock.ClockContract$AlarmSettingColumns +okhttp3.HttpUrl$Builder: int slashCount(java.lang.String,int,int) +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: wangdaye.com.geometricweather.common.basic.models.options.appearance.Language PORTUGUESE +androidx.viewpager.R$integer: int status_bar_notification_info_maxnum +androidx.hilt.work.R$layout: int notification_template_part_time +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Inverse +com.google.gson.internal.$Gson$Types$ParameterizedTypeImpl: java.lang.reflect.Type[] typeArguments +androidx.constraintlayout.widget.R$drawable: int abc_ic_star_half_black_36dp +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_99 +androidx.lifecycle.SavedStateHandle: androidx.lifecycle.MutableLiveData getLiveData(java.lang.String,java.lang.Object) +com.google.android.material.card.MaterialCardView: void setCheckedIconMarginResource(int) +okhttp3.CacheControl: int maxAgeSeconds() +wangdaye.com.geometricweather.R$styleable: int AppCompatTheme_android_windowAnimationStyle +io.reactivex.internal.operators.observable.ObservableFlatMapSingle$FlatMapSingleObserver: void drainLoop() +io.reactivex.internal.operators.mixed.ObservableConcatMapSingle$ConcatMapSingleMainObserver$ConcatMapSingleObserver: void dispose() +androidx.appcompat.R$dimen: int abc_action_bar_icon_vertical_padding_material +io.reactivex.internal.operators.observable.ObservableJoin$JoinDisposable: void innerValue(boolean,java.lang.Object) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$LocalSource +james.adaptiveicon.R$styleable: int AppCompatTheme_colorControlActivated +wangdaye.com.geometricweather.R$layout: int fragment_management +wangdaye.com.geometricweather.db.entities.WeatherEntity: void setDailyForecast(java.lang.String) +wangdaye.com.geometricweather.common.ui.widgets.ArcProgress: float getProgress() +androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType: androidx.constraintlayout.solver.widgets.analyzer.WidgetRun$RunType CENTER +androidx.hilt.work.R$styleable: int FontFamilyFont_android_fontStyle +okhttp3.internal.connection.RealConnection: okhttp3.Request createTunnelRequest() +com.turingtechnologies.materialscrollbar.R$id: int group_divider +wangdaye.com.geometricweather.R$styleable: int OnSwipe_onTouchUp +cyanogenmod.profiles.AirplaneModeSettings: int getValue() com.google.android.material.R$attr: int growMode -cyanogenmod.weather.RequestInfo: int getTemperatureUnit() -com.turingtechnologies.materialscrollbar.R$styleable: int SearchView_queryHint -androidx.constraintlayout.widget.R$styleable: int Toolbar_android_gravity -androidx.appcompat.R$color: int dim_foreground_disabled_material_light -wangdaye.com.geometricweather.remoteviews.trend.WidgetItemView: void setBottomIconDrawable(android.graphics.drawable.Drawable) -com.github.rahatarmanahmed.cpv.R$integer: R$integer() -wangdaye.com.geometricweather.R$attr: int chipMinTouchTargetSize -androidx.appcompat.widget.AppCompatImageView: AppCompatImageView(android.content.Context,android.util.AttributeSet,int) -james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_DropDown -com.google.android.material.R$attr: int titleMarginTop -okhttp3.Cache$1 -com.turingtechnologies.materialscrollbar.R$styleable: int BottomSheetBehavior_Layout_gestureInsetBottomIgnored -androidx.constraintlayout.widget.R$dimen: int abc_control_corner_material -android.didikee.donate.R$styleable: int AppCompatTheme_panelMenuListTheme -com.xw.repo.bubbleseekbar.R$styleable: int FontFamilyFont_android_fontVariationSettings -wangdaye.com.geometricweather.R$color: int error_color_material_dark -wangdaye.com.geometricweather.weather.json.accu.AccuAlertResult: int SourceId -android.didikee.donate.R$style: int Base_V21_Theme_AppCompat_Light_Dialog -wangdaye.com.geometricweather.R$attr: int sv_side -wangdaye.com.geometricweather.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabView -io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver$OtherObserver: ObservableMergeWithCompletable$MergeWithObserver$OtherObserver(io.reactivex.internal.operators.observable.ObservableMergeWithCompletable$MergeWithObserver) -com.tencent.bugly.proguard.u: u(android.content.Context) -cyanogenmod.power.PerformanceManager: cyanogenmod.power.IPerformanceManager sService -retrofit2.http.Query -androidx.constraintlayout.widget.R$attr: int collapseContentDescription -androidx.appcompat.R$style: int Base_AlertDialog_AppCompat_Light -cyanogenmod.power.PerformanceManager: boolean setPowerProfile(int) -wangdaye.com.geometricweather.R$attr: int widgetLayout -com.google.android.material.R$styleable: int Slider_android_valueTo -io.reactivex.internal.disposables.ArrayCompositeDisposable: boolean setResource(int,io.reactivex.disposables.Disposable) -android.didikee.donate.R$style: int Base_Widget_AppCompat_Button_Small -wangdaye.com.geometricweather.R$styleable: int ActionBar_contentInsetRight -androidx.appcompat.R$attr: int expandActivityOverflowButtonDrawable -com.turingtechnologies.materialscrollbar.R$attr: int textColorSearchUrl -android.didikee.donate.R$dimen: int abc_dialog_list_padding_bottom_no_buttons -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$AddressDetailBean: java.lang.String getProvince() -androidx.appcompat.R$styleable: int SearchView_submitBackground -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Snow: java.lang.Integer fresh -androidx.appcompat.R$drawable: int notification_bg_low_pressed -wangdaye.com.geometricweather.R$color: int mtrl_text_btn_text_color_selector -io.reactivex.Observable: io.reactivex.Observable map(io.reactivex.functions.Function) -androidx.drawerlayout.R$dimen: int notification_content_margin_start -wangdaye.com.geometricweather.R$string: int bottomsheet_action_expand_halfway -androidx.constraintlayout.widget.R$style: int Base_Animation_AppCompat_Tooltip -com.tencent.bugly.crashreport.crash.anr.b: void c(boolean) -com.google.android.material.R$dimen: int mtrl_calendar_day_corner -cyanogenmod.os.Build$CM_VERSION_CODES: int BOYSENBERRY -wangdaye.com.geometricweather.db.entities.WeatherEntity: java.util.List hourlyEntityList -androidx.constraintlayout.widget.R$attr: int theme -wangdaye.com.geometricweather.db.entities.WeatherEntityDao$Properties: org.greenrobot.greendao.Property WindSpeed -cyanogenmod.app.CustomTile: cyanogenmod.app.CustomTile$ExpandedStyle expandedStyle -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$TemperatureBeanXX: int getStatus() -androidx.preference.R$dimen: int notification_large_icon_width -android.support.v4.os.ResultReceiver$1: android.support.v4.os.ResultReceiver createFromParcel(android.os.Parcel) -wangdaye.com.geometricweather.R$drawable: int notif_temp_41 -android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_Widget_PopupMenu_Header -wangdaye.com.geometricweather.R$styleable: int ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide -cyanogenmod.os.Build$CM_VERSION_CODES: Build$CM_VERSION_CODES() -com.jaredrummler.android.colorpicker.ColorPreferenceCompat: ColorPreferenceCompat(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.R$styleable: int ActionBar_divider -com.amap.api.location.AMapLocation: int v -androidx.preference.R$styleable: int AlertDialog_listItemLayout -wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean: wangdaye.com.geometricweather.location.services.ip.BaiduIPLocationResult$ContentBean$PointBean getPoint() -com.google.android.material.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar -okio.Okio$1: void close() -wangdaye.com.geometricweather.R$styleable: int Preference_enableCopying -android.didikee.donate.R$styleable: int DrawerArrowToggle_thickness -android.didikee.donate.R$styleable: int[] ActionBar -wangdaye.com.geometricweather.R$string: int feedback_background_location_title -androidx.appcompat.R$layout: int select_dialog_multichoice_material -android.didikee.donate.R$attr: int titleMarginBottom -androidx.lifecycle.LiveData: boolean hasObservers() -androidx.appcompat.R$styleable: int ButtonBarLayout_allowStacking -com.turingtechnologies.materialscrollbar.R$styleable: int DrawerArrowToggle_spinBars -androidx.preference.R$id: int accessibility_custom_action_8 -com.tencent.bugly.proguard.c: java.util.HashMap d -wangdaye.com.geometricweather.R$drawable: int ic_mold -androidx.constraintlayout.widget.R$attr: int triggerSlack -okhttp3.internal.http2.Http2Connection: long DEGRADED_PONG_TIMEOUT_NS -cyanogenmod.externalviews.KeyguardExternalView$8: boolean val$showing -com.tencent.bugly.crashreport.common.info.b: long l() -androidx.lifecycle.MediatorLiveData -com.google.android.material.R$drawable: int abc_item_background_holo_light -com.google.android.material.R$attr: int foregroundInsidePadding -androidx.vectordrawable.R$attr: int font -android.didikee.donate.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabText -okhttp3.internal.http1.Http1Codec$ChunkedSource: void close() -com.google.android.material.R$layout: int support_simple_spinner_dropdown_item -com.jaredrummler.android.colorpicker.R$style: int Base_TextAppearance_AppCompat_SearchResult -okhttp3.internal.cache.CacheStrategy$Factory: long cacheResponseAge() -cyanogenmod.themes.IThemeService$Stub$Proxy: void requestThemeChangeUpdates(cyanogenmod.themes.IThemeChangeListener) -androidx.constraintlayout.widget.R$styleable: int KeyPosition_motionTarget -wangdaye.com.geometricweather.R$drawable: int ic_github -androidx.appcompat.widget.AppCompatImageView: void setImageResource(int) -okhttp3.OkHttpClient$Builder: okhttp3.Authenticator authenticator -wangdaye.com.geometricweather.R$layout: int dialog_minimal_icon -androidx.appcompat.widget.AppCompatMultiAutoCompleteTextView: void setBackgroundDrawable(android.graphics.drawable.Drawable) -androidx.constraintlayout.widget.R$id: int easeInOut -cyanogenmod.app.ILiveLockScreenChangeListener$Stub: cyanogenmod.app.ILiveLockScreenChangeListener asInterface(android.os.IBinder) -com.baidu.location.indoor.c: boolean add(java.lang.Object) -com.google.android.material.slider.BaseSlider: void addOnChangeListener(com.google.android.material.slider.BaseOnChangeListener) -androidx.lifecycle.ReportFragment$LifecycleCallbacks: void onActivityStarted(android.app.Activity) -com.google.android.material.appbar.MaterialToolbar: MaterialToolbar(android.content.Context,android.util.AttributeSet,int) -wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode: wangdaye.com.geometricweather.common.basic.models.weather.WeatherCode[] values() -com.google.android.material.R$styleable: int ColorStateListItem_android_alpha -com.turingtechnologies.materialscrollbar.R$styleable: int CollapsingToolbarLayout_expandedTitleMarginStart -wangdaye.com.geometricweather.common.ui.widgets.trend.item.AbsTrendItemView: wangdaye.com.geometricweather.common.ui.widgets.trend.chart.AbsChartItemView getChartItemView() -com.google.android.material.slider.RangeSlider: RangeSlider(android.content.Context,android.util.AttributeSet,int) -com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_android_windowIsFloating -android.didikee.donate.R$style: int Theme_AppCompat_DayNight_Dialog_Alert -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_copy_mtrl_am_alpha -androidx.appcompat.widget.DropDownListView: void setSelector(android.graphics.drawable.Drawable) -androidx.appcompat.R$layout: int abc_action_menu_item_layout -james.adaptiveicon.R$style: int Widget_AppCompat_Spinner_Underlined -androidx.preference.R$attr: int preferenceInformationStyle -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.Current current -androidx.vectordrawable.graphics.drawable.VectorDrawableCompat$VGroup: java.lang.String getGroupName() -com.google.android.material.tabs.TabLayout: void setTabRippleColorResource(int) -androidx.activity.R$drawable: int notification_tile_bg -cyanogenmod.weather.RequestInfo: cyanogenmod.weather.WeatherLocation access$402(cyanogenmod.weather.RequestInfo,cyanogenmod.weather.WeatherLocation) -com.jaredrummler.android.colorpicker.R$layout: int abc_alert_dialog_title_material -retrofit2.HttpServiceMethod$SuspendForBody: boolean isNullable -cyanogenmod.providers.ThemesContract$ThemesColumns$InstallState: int INSTALLING -wangdaye.com.geometricweather.R$drawable: int ic_mtrl_chip_checked_black -wangdaye.com.geometricweather.db.entities.DailyEntity: void setNighttimeWeatherText(java.lang.String) -wangdaye.com.geometricweather.R$dimen: int abc_dropdownitem_icon_width -okio.RealBufferedSource$1: int read() -com.turingtechnologies.materialscrollbar.R$attr: int closeIconEnabled -androidx.constraintlayout.widget.R$styleable: int[] ImageFilterView -androidx.preference.R$drawable: int abc_ic_star_half_black_48dp -wangdaye.com.geometricweather.db.entities.WeatherEntity: void setRainPrecipitation(java.lang.Float) -wangdaye.com.geometricweather.weather.json.mf.MfHistoryResult$History$Temperature: java.lang.Float windChill -wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastDailyBean$WeatherBean: int status -wangdaye.com.geometricweather.R$dimen: int current_weather_icon_size -com.google.android.material.progressindicator.ProgressIndicator: void setProgress(int) -cyanogenmod.weather.WeatherInfo$Builder: double mWindDirection -androidx.vectordrawable.R$attr: int ttcIndex -wangdaye.com.geometricweather.R$drawable: int cpv_alpha -com.amap.api.location.AMapLocationClientOption: long SCAN_WIFI_INTERVAL -io.reactivex.internal.operators.observable.ObservableReplay$InnerDisposable: io.reactivex.internal.operators.observable.ObservableReplay$ReplayObserver parent -androidx.recyclerview.widget.RecyclerView: androidx.recyclerview.widget.RecyclerView$RecycledViewPool getRecycledViewPool() -cyanogenmod.platform.Manifest$permission: java.lang.String MODIFY_SOUND_SETTINGS +androidx.constraintlayout.motion.widget.MotionLayout: void setDebugMode(int) +okhttp3.CertificatePinner: boolean equals(java.lang.Object) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletable$FlatMapCompletableMainObserver: io.reactivex.disposables.Disposable upstream +androidx.cardview.widget.CardView +okhttp3.internal.cache.DiskLruCache: java.lang.String READ +com.xw.repo.bubbleseekbar.R$attr: int subtitleTextAppearance +wangdaye.com.geometricweather.R$string: int key_card_style +androidx.viewpager.R$id: int action_text +com.google.android.material.R$styleable: int BottomAppBar_paddingRightSystemWindowInsets +com.tencent.bugly.proguard.h: com.tencent.bugly.proguard.h a(boolean,java.lang.String) +com.google.android.material.chip.Chip: void setChipStrokeWidthResource(int) +androidx.constraintlayout.widget.R$attr: int duration +io.reactivex.Observable: io.reactivex.Observable withLatestFrom(io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.ObservableSource,io.reactivex.functions.Function4) +android.didikee.donate.R$style: int Base_Widget_AppCompat_DropDownItem_Spinner +androidx.coordinatorlayout.R$id: int notification_main_column +wangdaye.com.geometricweather.R$attr: int dayInvalidStyle +io.reactivex.Observable: io.reactivex.Observable interval(long,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +cyanogenmod.weather.CMWeatherManager$WeatherServiceProviderChangeListener +androidx.preference.R$color: int material_grey_300 +com.xw.repo.bubbleseekbar.R$attr: int actionOverflowButtonStyle +com.xw.repo.bubbleseekbar.R$style +com.bumptech.glide.R$id: int notification_main_column_container +com.google.android.material.R$styleable: int BottomNavigationView_itemTextColor +androidx.constraintlayout.widget.R$style: int TextAppearance_AppCompat_Menu +com.amap.api.location.AMapLocation: java.lang.String b(com.amap.api.location.AMapLocation,java.lang.String) +androidx.constraintlayout.widget.R$attr: int flow_wrapMode +androidx.appcompat.R$style: int ThemeOverlay_AppCompat_Dialog_Alert +com.xw.repo.bubbleseekbar.R$attr: int navigationMode +okhttp3.Cache: void close() +retrofit2.HttpServiceMethod: retrofit2.RequestFactory requestFactory +androidx.constraintlayout.motion.widget.MotionLayout: int getCurrentState() +com.turingtechnologies.materialscrollbar.DragScrollBar: DragScrollBar(android.content.Context,android.util.AttributeSet) +androidx.hilt.work.R$dimen: int notification_content_margin_start +com.turingtechnologies.materialscrollbar.R$style: int Base_Theme_MaterialComponents_Light_DialogWhenLarge +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_actionModeBackground +wangdaye.com.geometricweather.R$dimen: int mtrl_calendar_header_text_padding +com.turingtechnologies.materialscrollbar.R$style: R$style() +wangdaye.com.geometricweather.R$attr: int layout +com.jaredrummler.android.colorpicker.R$drawable: int abc_ic_go_search_api_material +com.turingtechnologies.materialscrollbar.R$styleable: int TextInputLayout_boxCornerRadiusTopStart +wangdaye.com.geometricweather.R$string: int tag_wind +com.jaredrummler.android.colorpicker.R$dimen: int notification_content_margin_start +androidx.constraintlayout.widget.R$style: int Base_V21_Theme_AppCompat +io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: boolean hasNext() +com.tencent.bugly.proguard.n: java.util.List c(int) +io.reactivex.internal.operators.mixed.ObservableSwitchMapMaybe$SwitchMapMaybeMainObserver: io.reactivex.functions.Function mapper +androidx.hilt.lifecycle.R$anim +james.adaptiveicon.R$dimen: int abc_action_bar_subtitle_top_margin_material +com.xw.repo.bubbleseekbar.R$color: int notification_action_color_filter +wangdaye.com.geometricweather.common.basic.models.options.appearance.Language: boolean isChinese() +androidx.appcompat.R$id: int edit_query +com.google.android.material.button.MaterialButton: void setPressed(boolean) +com.google.android.material.R$styleable: int FontFamily_fontProviderCerts +wangdaye.com.geometricweather.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title +androidx.viewpager2.R$integer +io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainEmitLast: ObservableSampleWithObservable$SampleMainEmitLast(io.reactivex.Observer,io.reactivex.ObservableSource) +com.google.android.material.R$attr: int layout_constraintHeight_max +com.turingtechnologies.materialscrollbar.R$style: int Widget_AppCompat_ActionBar +com.tencent.bugly.crashreport.biz.a: a(android.content.Context,boolean) +androidx.constraintlayout.widget.R$style: int Base_Widget_AppCompat_Light_PopupMenu_Overflow +okhttp3.internal.ws.RealWebSocket: void awaitTermination(int,java.util.concurrent.TimeUnit) +wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay: wangdaye.com.geometricweather.common.basic.models.options.appearance.CardDisplay CARD_SUNRISE_SUNSET +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA +androidx.lifecycle.LiveData$ObserverWrapper: boolean shouldBeActive() +wangdaye.com.geometricweather.R$drawable: int ic_launcher_round +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl$7: ExternalViewProviderService$Provider$ProviderImpl$7(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl,int,int,int,int,boolean,android.graphics.Rect) +james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Body2 +com.jaredrummler.android.colorpicker.R$styleable: int MenuItem_actionViewClass +wangdaye.com.geometricweather.R$layout: int mtrl_calendar_month_navigation +io.reactivex.internal.operators.observable.ObservableGroupJoin$GroupJoinDisposable: long serialVersionUID +james.adaptiveicon.R$layout: int abc_search_view +com.tencent.bugly.proguard.j: j(int) +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTextView_autoSizePresetSizes +cyanogenmod.providers.ThemesContract$MixnMatchColumns: java.lang.String KEY_ALARM +androidx.constraintlayout.widget.R$id: int on +androidx.appcompat.widget.Toolbar: void setOnMenuItemClickListener(androidx.appcompat.widget.Toolbar$OnMenuItemClickListener) +cyanogenmod.profiles.AirplaneModeSettings: AirplaneModeSettings(int,boolean) +com.google.android.material.R$styleable: int Layout_layout_constraintTop_creator +androidx.viewpager2.R$drawable: int notification_template_icon_low_bg +com.google.android.material.R$attr: int buttonGravity +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day$Ice: int UnitType +io.reactivex.internal.operators.flowable.FlowableConcatMap$ConcatMapInner: long produced +com.bumptech.glide.integration.okhttp.R$styleable: int FontFamilyFont_android_font +cyanogenmod.providers.CMSettings$System: long getLongForUser(android.content.ContentResolver,java.lang.String,int) +com.google.android.material.imageview.ShapeableImageView: ShapeableImageView(android.content.Context,android.util.AttributeSet) +com.google.android.material.R$attr: int chipIconVisible +androidx.appcompat.widget.AppCompatEditText: void setSupportBackgroundTintList(android.content.res.ColorStateList) +android.didikee.donate.R$attr: int indeterminateProgressStyle +androidx.constraintlayout.widget.R$drawable: R$drawable() +com.xw.repo.bubbleseekbar.R$attr: int font +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getLongDate(android.content.Context) +com.google.android.material.R$styleable: int KeyAttribute_transitionEasing +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_boxCollapsedPaddingTop cyanogenmod.app.BaseLiveLockManagerService: java.lang.String TAG -wangdaye.com.geometricweather.common.basic.models.options.unit.RelativeHumidityUnit -cyanogenmod.profiles.StreamSettings: boolean isOverride() -androidx.constraintlayout.widget.Guideline: Guideline(android.content.Context) -wangdaye.com.geometricweather.common.basic.models.weather.Weather: wangdaye.com.geometricweather.common.basic.models.weather.History getYesterday() -okhttp3.internal.http1.Http1Codec$ChunkedSink -cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy -androidx.appcompat.widget.ContentFrameLayout: void setAttachListener(androidx.appcompat.widget.ContentFrameLayout$OnAttachListener) -wangdaye.com.geometricweather.R$styleable: int TabLayout_tabPaddingStart -com.xw.repo.bubbleseekbar.R$style: int TextAppearance_AppCompat_Headline -com.google.android.material.textfield.TextInputLayout: void setTypeface(android.graphics.Typeface) -wangdaye.com.geometricweather.R$style: int Base_TextAppearance_AppCompat_Title -androidx.viewpager.R$drawable: int notification_template_icon_bg -com.google.android.material.R$styleable: int KeyTimeCycle_waveDecay -com.google.android.gms.common.server.converter.StringToIntConverter -wangdaye.com.geometricweather.R$styleable: int CoordinatorLayout_statusBarBackground -wangdaye.com.geometricweather.R$id: int accessibility_custom_action_31 -com.xw.repo.bubbleseekbar.R$layout: int abc_popup_menu_item_layout -wangdaye.com.geometricweather.R$drawable: int ic_email -cyanogenmod.weather.WeatherInfo$Builder: int mConditionCode -wangdaye.com.geometricweather.R$styleable: int ConstraintSet_layout_constraintHorizontal_bias -com.xw.repo.bubbleseekbar.R$styleable: int Toolbar_android_minHeight -android.didikee.donate.R$style: int Widget_AppCompat_SeekBar -james.adaptiveicon.R$attr: int fontWeight -com.xw.repo.bubbleseekbar.R$attr: int actionModeBackground -wangdaye.com.geometricweather.R$id: int enterAlways -androidx.preference.R$styleable: int MenuView_android_itemBackground -androidx.activity.R$styleable: R$styleable() -com.jaredrummler.android.colorpicker.R$styleable: int DialogPreference_android_dialogLayout -androidx.constraintlayout.widget.R$attr: int layout_goneMarginTop -james.adaptiveicon.R$dimen: int abc_action_bar_content_inset_material -androidx.appcompat.R$styleable: int[] StateListDrawableItem -com.jaredrummler.android.colorpicker.R$attr: int icon -com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: boolean putNativeKeyValue(java.lang.String,java.lang.String) -wangdaye.com.geometricweather.common.basic.models.weather.Current: java.lang.Integer dewPoint -android.didikee.donate.R$drawable: int abc_spinner_mtrl_am_alpha -okhttp3.internal.tls.OkHostnameVerifier: boolean verifyIpAddress(java.lang.String,java.security.cert.X509Certificate) -androidx.lifecycle.Lifecycle$State: androidx.lifecycle.Lifecycle$State CREATED -io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: ObservableSampleTimed$SampleTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) -android.didikee.donate.R$integer: int cancel_button_image_alpha -androidx.constraintlayout.widget.R$color: int abc_btn_colored_borderless_text_material -wangdaye.com.geometricweather.R$drawable: int notification_action_background -androidx.constraintlayout.widget.R$drawable: int abc_ic_menu_selectall_mtrl_alpha -wangdaye.com.geometricweather.R$styleable: int KeyTrigger_onPositiveCross -okio.RealBufferedSink$1: java.lang.String toString() -io.reactivex.internal.operators.observable.ObservableSampleWithObservable$SampleMainObserver: io.reactivex.ObservableSource sampler -androidx.transition.R$id: int info -com.xw.repo.bubbleseekbar.R$styleable: int MenuItem_android_alphabeticShortcut -cyanogenmod.providers.CMSettings$Secure: long getLong(android.content.ContentResolver,java.lang.String,long) -com.google.android.material.internal.VisibilityAwareImageButton: VisibilityAwareImageButton(android.content.Context) -android.didikee.donate.R$style: int Base_Theme_AppCompat_Light_Dialog -io.reactivex.observers.TestObserver$EmptyObserver: io.reactivex.observers.TestObserver$EmptyObserver[] values() +androidx.swiperefreshlayout.R$id: int accessibility_custom_action_16 +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$YesterdayBean: CaiYunMainlyResult$YesterdayBean() +okhttp3.internal.http2.Hpack$Writer: int headerTableSizeSetting +cyanogenmod.app.CustomTile$Builder: cyanogenmod.app.CustomTile$Builder setLabel(java.lang.String) +wangdaye.com.geometricweather.R$styleable: int NavigationView_android_background +androidx.fragment.app.FragmentState +com.tencent.bugly.crashreport.crash.c +androidx.appcompat.R$style: int Base_TextAppearance_AppCompat +android.support.v4.os.ResultReceiver +cyanogenmod.providers.WeatherContract$WeatherColumns$WeatherCode: int HAIL +androidx.preference.R$style: int Base_Widget_AppCompat_Light_ActionBar_TabBar +okhttp3.OkHttpClient: okhttp3.CookieJar cookieJar +android.support.v4.os.IResultReceiver$Default +androidx.drawerlayout.R$color +okhttp3.internal.ws.RealWebSocket: boolean close(int,java.lang.String) +com.turingtechnologies.materialscrollbar.R$dimen: int fastscroll_default_thickness +com.google.android.gms.location.zzbd: android.os.Parcelable$Creator CREATOR +androidx.viewpager2.R$styleable: int[] GradientColorItem +wangdaye.com.geometricweather.R$styleable: int Constraint_layout_constraintHorizontal_weight +cyanogenmod.externalviews.KeyguardExternalView$3: int val$height +com.jaredrummler.android.colorpicker.R$styleable: int[] PreferenceImageView +wangdaye.com.geometricweather.R$attr: int maxWidth +com.xw.repo.bubbleseekbar.R$string: int abc_prepend_shortcut_label +cyanogenmod.app.CustomTile: android.app.PendingIntent deleteIntent +wangdaye.com.geometricweather.R$attr: int crossfade +okhttp3.internal.Util: java.nio.charset.Charset UTF_32_BE +cyanogenmod.providers.CMSettings: cyanogenmod.providers.CMSettings$Validator access$300() +com.google.android.material.R$styleable: int Slider_trackHeight +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$WetBulbTemperature$Imperial: double Value +androidx.preference.R$style: int Widget_AppCompat_Toolbar +wangdaye.com.geometricweather.R$styleable: int BubbleSeekBar_bsb_hide_bubble +com.turingtechnologies.materialscrollbar.R$attr: int closeIcon +androidx.preference.R$style: int TextAppearance_AppCompat_SearchResult_Title +io.reactivex.internal.operators.observable.ObservableUsing$UsingObserver +com.jaredrummler.android.colorpicker.R$id: int cpv_color_image_view +io.reactivex.internal.operators.observable.ObservableSequenceEqualSingle$EqualCoordinator: void cancel(io.reactivex.internal.queue.SpscLinkedArrayQueue,io.reactivex.internal.queue.SpscLinkedArrayQueue) +com.google.android.material.R$id: int floating +wangdaye.com.geometricweather.R$attr: int textAppearancePopupMenuHeader +com.google.android.material.R$attr: int transitionShapeAppearance +com.google.android.gms.common.api.internal.zaab: void unregisterConnectionFailedListener(com.google.android.gms.common.api.GoogleApiClient$OnConnectionFailedListener) +com.xw.repo.bubbleseekbar.R$attr: int showAsAction +com.google.android.material.R$layout: int abc_popup_menu_header_item_layout +androidx.preference.R$attr: int colorControlActivated +cyanogenmod.externalviews.KeyguardExternalView: void access$300(cyanogenmod.externalviews.KeyguardExternalView) +com.google.android.material.R$attr: int navigationIconColor +io.reactivex.internal.queue.SpscArrayQueue: boolean offer(java.lang.Object,java.lang.Object) +wangdaye.com.geometricweather.weather.json.mf.MfEphemerisResult$Properties$Ephemeris +com.google.android.material.R$attr: int materialCalendarTheme +com.tencent.bugly.proguard.i$a: int b +androidx.lifecycle.extensions.R$id: R$id() +androidx.coordinatorlayout.R$styleable: int GradientColor_android_centerColor +androidx.appcompat.R$dimen: int abc_panel_menu_list_width +wangdaye.com.geometricweather.common.basic.models.options.DarkMode: wangdaye.com.geometricweather.common.basic.models.options.DarkMode LIGHT +wangdaye.com.geometricweather.R$string: int wind_direction +androidx.appcompat.R$dimen: int abc_action_bar_overflow_padding_end_material +com.google.android.material.R$styleable: int ConstraintLayout_Layout_constraintSet +wangdaye.com.geometricweather.R$dimen: int mtrl_bottomappbar_fab_cradle_margin +com.amap.api.location.AMapLocationClientOption$GeoLanguage +androidx.preference.R$style: int Base_Animation_AppCompat_Dialog +okhttp3.CipherSuite: okhttp3.CipherSuite TLS_RSA_WITH_RC4_128_SHA +androidx.core.R$style: int TextAppearance_Compat_Notification_Title +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_fontStyle +com.google.gson.stream.JsonReader: int NUMBER_CHAR_EXP_E +wangdaye.com.geometricweather.db.entities.HourlyEntity: java.lang.Float getSnowPrecipitationProbability() +com.xw.repo.bubbleseekbar.R$style: int Widget_AppCompat_ListView_DropDown +wangdaye.com.geometricweather.R$styleable: int TabLayout_tabContentStart +com.jaredrummler.android.colorpicker.R$id: int split_action_bar +com.google.android.material.R$styleable: int Layout_android_layout_marginEnd +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Light_Dialog +com.jaredrummler.android.colorpicker.R$style: int Base_ThemeOverlay_AppCompat_Dark_ActionBar +cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: void onPause() +com.google.android.material.R$styleable: int Toolbar_subtitle +io.reactivex.Observable: io.reactivex.Observable just(java.lang.Object,java.lang.Object,java.lang.Object) +com.bumptech.glide.R$id: int right_side +io.reactivex.internal.operators.observable.ObservablePublish$InnerDisposable +wangdaye.com.geometricweather.R$layout: int mtrl_layout_snackbar +cyanogenmod.providers.CMSettings$System: long getLong(android.content.ContentResolver,java.lang.String) +com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_stroke_size +wangdaye.com.geometricweather.db.entities.DailyEntity: java.lang.Integer daytimeWindChillTemperature +androidx.constraintlayout.widget.R$styleable: int Constraint_android_orientation +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintWidth_min +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_android_layout_width +wangdaye.com.geometricweather.common.ui.widgets.NumberAnimTextView: NumberAnimTextView(android.content.Context,android.util.AttributeSet) androidx.coordinatorlayout.R$styleable: int FontFamilyFont_fontVariationSettings -james.adaptiveicon.R$attr: int actionModePopupWindowStyle -androidx.appcompat.widget.SearchView$SearchAutoComplete: SearchView$SearchAutoComplete(android.content.Context) -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarTheme -okhttp3.Address: java.util.List protocols() -wangdaye.com.geometricweather.weather.json.mf.MfForecastResult$Forecast$Wind: java.lang.String icon -androidx.appcompat.R$attr: int contentDescription -com.google.android.material.R$styleable: int ActionBar_popupTheme -androidx.transition.R$dimen: int notification_right_icon_size -wangdaye.com.geometricweather.R$styleable: int LinearLayoutCompat_measureWithLargestChild -com.turingtechnologies.materialscrollbar.R$dimen: int mtrl_btn_text_btn_icon_padding -androidx.constraintlayout.widget.R$attr: int textAppearanceSearchResultTitle -wangdaye.com.geometricweather.R$dimen: int widget_aa_text_size -okhttp3.internal.ws.WebSocketWriter: void writeMessageFrame(int,long,boolean,boolean) -android.didikee.donate.R$styleable: int AppCompatTheme_textAppearanceListItem -androidx.appcompat.R$styleable: int AppCompatTheme_listPreferredItemPaddingRight -android.didikee.donate.R$styleable: int AppCompatTheme_actionBarTabBarStyle -wangdaye.com.geometricweather.R$dimen: int widget_subtitle_text_size -com.google.gson.stream.JsonToken -com.google.android.material.R$styleable: int Badge_badgeGravity -androidx.constraintlayout.widget.R$styleable: int Layout_maxHeight -io.reactivex.internal.schedulers.ExecutorScheduler$ExecutorWorker$InterruptibleRunnable: java.lang.Thread thread -androidx.cardview.R$attr: int contentPaddingLeft -androidx.constraintlayout.widget.R$styleable: int AppCompatTheme_actionBarSplitStyle -androidx.viewpager2.R$id: int dialog_button -okhttp3.internal.http2.Http2Connection$ReaderRunnable: void alternateService(int,java.lang.String,okio.ByteString,java.lang.String,int,long) -com.bumptech.glide.R$id: int async -okhttp3.internal.cache.DiskLruCache$Editor: void commit() -com.google.android.material.R$color: int secondary_text_default_material_dark -cyanogenmod.app.BaseLiveLockManagerService$1: cyanogenmod.app.BaseLiveLockManagerService this$0 -io.reactivex.internal.operators.observable.BlockingObservableIterable$BlockingObservableIterator: io.reactivex.internal.queue.SpscLinkedArrayQueue queue -android.didikee.donate.R$attr: int actionModeSelectAllDrawable -james.adaptiveicon.R$style: int Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small -cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl: android.view.WindowManager$LayoutParams access$300(cyanogenmod.externalviews.ExternalViewProviderService$Provider$ProviderImpl) -com.google.android.material.button.MaterialButton: void setIcon(android.graphics.drawable.Drawable) -androidx.appcompat.R$styleable: int Toolbar_contentInsetRight +wangdaye.com.geometricweather.R$drawable: int notif_temp_neg_70 +androidx.activity.R$styleable: int GradientColorItem_android_offset +androidx.lifecycle.SavedStateHandleController: void attachToLifecycle(androidx.savedstate.SavedStateRegistry,androidx.lifecycle.Lifecycle) +androidx.customview.R$styleable: int GradientColorItem_android_color +com.google.android.material.slider.Slider: void setThumbStrokeColorResource(int) +okhttp3.Callback +com.jaredrummler.android.colorpicker.R$attr: int spinBars +androidx.fragment.R$id: int accessibility_custom_action_14 +io.reactivex.Observable: io.reactivex.Observable startWithArray(java.lang.Object[]) +androidx.coordinatorlayout.R$id: int accessibility_custom_action_1 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$DailyForecasts$Day: int PrecipitationProbability +androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver: ConstraintProxyUpdateReceiver() +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$3: void run() +wangdaye.com.geometricweather.R$attr: int tabPaddingTop +com.amap.api.fence.GeoFenceListener: void onGeoFenceCreateFinished(java.util.List,int,java.lang.String) +androidx.appcompat.R$layout: int notification_action_tombstone +androidx.dynamicanimation.R$attr: int fontProviderFetchTimeout +okhttp3.internal.ws.RealWebSocket$2: RealWebSocket$2(okhttp3.internal.ws.RealWebSocket,okhttp3.Request) +wangdaye.com.geometricweather.R$string: int restart +com.google.android.material.switchmaterial.SwitchMaterial: SwitchMaterial(android.content.Context,android.util.AttributeSet,int) +wangdaye.com.geometricweather.db.entities.HistoryEntity +androidx.swiperefreshlayout.R$styleable: int FontFamilyFont_android_fontStyle +wangdaye.com.geometricweather.R$attr: int bsb_always_show_bubble +com.bumptech.glide.R$styleable: int GradientColorItem_android_color +com.turingtechnologies.materialscrollbar.R$styleable: int FloatingActionButton_Behavior_Layout_behavior_autoHide +io.reactivex.internal.operators.mixed.ObservableSwitchMapSingle$SwitchMapSingleMainObserver: void drain() +com.google.android.material.card.MaterialCardView: MaterialCardView(android.content.Context) +androidx.appcompat.R$styleable: int[] ActionMenuItemView +retrofit2.DefaultCallAdapterFactory$ExecutorCallbackCall: retrofit2.Call clone() +com.tencent.bugly.proguard.ar: java.lang.String b +androidx.appcompat.R$id: int src_over +androidx.constraintlayout.widget.R$drawable: int abc_btn_switch_to_on_mtrl_00012 +wangdaye.com.geometricweather.R$styleable: int TextAppearance_fontVariationSettings +org.greenrobot.greendao.async.AsyncOperation$OperationType: org.greenrobot.greendao.async.AsyncOperation$OperationType Insert +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Counter +com.bumptech.glide.Registry$MissingComponentException: Registry$MissingComponentException(java.lang.String) +wangdaye.com.geometricweather.db.entities.LocationEntityDao$Properties: org.greenrobot.greendao.Property ResidentPosition +androidx.preference.R$dimen: int abc_action_bar_default_padding_start_material +com.amap.api.fence.GeoFence: java.lang.String BUNDLE_KEY_FENCESTATUS +wangdaye.com.geometricweather.R$styleable: int ConstraintLayout_Layout_layout_constraintRight_creator +cyanogenmod.platform.Manifest$permission: java.lang.String ACCESS_WEATHER_MANAGER +okhttp3.internal.cache.CacheInterceptor: okhttp3.Response cacheWritingResponse(okhttp3.internal.cache.CacheRequest,okhttp3.Response) +com.tencent.bugly.crashreport.CrashReport: void putUserData(android.content.Context,java.lang.String,java.lang.String) +com.google.android.material.R$animator: int mtrl_extended_fab_show_motion_spec +com.google.android.material.R$attr: int tabIndicatorGravity +okhttp3.internal.http2.Settings: okhttp3.internal.http2.Settings set(int,int) +com.google.android.gms.base.R$string: int common_google_play_services_unsupported_text +com.google.android.material.slider.BaseSlider: android.content.res.ColorStateList getThumbStrokeColor() +okhttp3.RealCall: okhttp3.EventListener access$000(okhttp3.RealCall) +wangdaye.com.geometricweather.R$layout: int abc_cascading_menu_item_layout +wangdaye.com.geometricweather.R$styleable: int AppCompatImageView_tintMode +com.tencent.bugly.b: boolean a +wangdaye.com.geometricweather.R$id: int widget_day_sign +androidx.appcompat.R$id: int listMode +wangdaye.com.geometricweather.R$style: int Widget_AppCompat_ActionButton +okio.SegmentPool +androidx.constraintlayout.widget.R$string: int abc_menu_ctrl_shortcut_label +wangdaye.com.geometricweather.R$style: int TextAppearance_Design_Suffix +io.reactivex.internal.subscriptions.EmptySubscription: java.lang.String toString() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum: wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial Imperial +okhttp3.internal.http2.Hpack: java.util.Map NAME_TO_FIRST_INDEX +wangdaye.com.geometricweather.R$id: int recycler_view +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$VisibilityBean: java.lang.String unit +com.google.android.material.R$attr: int textColorAlertDialogListItem +cyanogenmod.weather.IWeatherServiceProviderChangeListener$Stub$Proxy: android.os.IBinder asBinder() +io.reactivex.internal.operators.observable.ObservableRetryPredicate$RepeatObserver: io.reactivex.ObservableSource source +androidx.coordinatorlayout.R$drawable: int notification_bg_normal +androidx.hilt.lifecycle.R$style: int Widget_Compat_NotificationActionContainer +james.adaptiveicon.R$styleable: int AppCompatTheme_windowActionBarOverlay +com.jaredrummler.android.colorpicker.R$style: int Base_V21_Theme_AppCompat_Light +wangdaye.com.geometricweather.R$string: int default_location +com.tencent.bugly.proguard.l +com.jaredrummler.android.colorpicker.R$attr: int preferenceFragmentCompatStyle +org.greenrobot.greendao.database.DatabaseOpenHelper: void setLoadSQLCipherNativeLibs(boolean) +androidx.appcompat.R$style: int RtlOverlay_Widget_AppCompat_PopupMenuItem_Text +com.jaredrummler.android.colorpicker.R$styleable: int[] View +com.xw.repo.bubbleseekbar.R$styleable: int[] ActivityChooserView +wangdaye.com.geometricweather.R$styleable: int TextInputLayout_placeholderTextColor +androidx.constraintlayout.widget.R$styleable: int ConstraintLayout_Layout_android_paddingEnd +android.didikee.donate.R$styleable: int AppCompatTheme_listChoiceIndicatorMultipleAnimated +com.baidu.location.e.p: p(java.lang.String,int,java.lang.String,java.lang.String,java.lang.String,int,int) +com.google.android.material.R$id: int accessibility_custom_action_17 +okio.Base64: byte[] decode(java.lang.String) +com.google.android.material.R$dimen: int material_clock_hand_stroke_width +okhttp3.internal.ws.RealWebSocket$Streams +okhttp3.internal.platform.JdkWithJettyBootPlatform$JettyNegoProvider +androidx.legacy.coreutils.R$styleable: int FontFamilyFont_android_ttcIndex +android.didikee.donate.R$integer: int status_bar_notification_info_maxnum +com.turingtechnologies.materialscrollbar.R$drawable: int notification_template_icon_bg +com.xw.repo.bubbleseekbar.R$style: int Base_Widget_AppCompat_Button_Colored +wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval: wangdaye.com.geometricweather.common.basic.models.options.UpdateInterval INTERVAL_5_00 +androidx.constraintlayout.widget.R$dimen: int abc_list_item_padding_horizontal_material +wangdaye.com.geometricweather.R$dimen: int disabled_alpha_material_light +androidx.appcompat.R$drawable: int notification_tile_bg +retrofit2.http.Path: java.lang.String value() +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult$TemperatureSummary$Past6HourRange$Maximum$Imperial +okhttp3.internal.cache.DiskLruCache: java.lang.String REMOVE +androidx.drawerlayout.widget.DrawerLayout: void setStatusBarBackgroundColor(int) +io.reactivex.internal.operators.observable.ObservableFlatMapCompletableCompletable$FlatMapCompletableMainObserver: boolean isDisposed() +retrofit2.Response: retrofit2.Response success(int,java.lang.Object) +wangdaye.com.geometricweather.R$styleable: int[] AppBarLayoutStates +wangdaye.com.geometricweather.R$styleable: int KeyTrigger_triggerReceiver +cyanogenmod.providers.CMSettings$NameValueCache: java.util.HashMap mValues +androidx.appcompat.R$drawable: int abc_action_bar_item_background_material +androidx.vectordrawable.R$attr: int font +wangdaye.com.geometricweather.R$style: int Theme_Design_Light +com.tencent.bugly.proguard.f: f() +androidx.hilt.lifecycle.R$layout: int notification_action +wangdaye.com.geometricweather.R$style: int Base_Animation_AppCompat_Dialog +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse +cyanogenmod.providers.CMSettings$System: java.lang.String NOTIFICATION_LIGHT_PULSE_CALL_COLOR +androidx.customview.R$styleable: int GradientColor_android_type +androidx.viewpager2.R$dimen: int notification_small_icon_size_as_large +androidx.work.R$styleable: R$styleable() +wangdaye.com.geometricweather.R$attr: int shapeAppearance +com.bumptech.glide.integration.okhttp.R$dimen: int notification_action_icon_size +wangdaye.com.geometricweather.R$layout: int abc_list_menu_item_icon +com.tencent.bugly.crashreport.crash.e: android.content.Context a +com.tencent.bugly.crashreport.crash.BuglyBroadcastReceiver: void register(android.content.Context) +androidx.constraintlayout.widget.R$styleable: int[] AppCompatTextView +cyanogenmod.app.CustomTile$ExpandedItem: CustomTile$ExpandedItem(cyanogenmod.app.CustomTile$1) +com.xw.repo.bubbleseekbar.R$drawable: int abc_menu_hardkey_panel_mtrl_mult +wangdaye.com.geometricweather.R$styleable: int Slider_trackColor +androidx.constraintlayout.widget.R$styleable: int Constraint_android_layout_marginEnd +androidx.viewpager.R$attr: int fontProviderAuthority +com.google.android.material.R$dimen: int abc_dropdownitem_text_padding_right +androidx.constraintlayout.widget.R$styleable: int MenuItem_actionProviderClass +androidx.recyclerview.R$id: int tag_accessibility_pane_title +io.reactivex.internal.operators.observable.ObservableCreate$SerializedEmitter: boolean tryOnError(java.lang.Throwable) +com.turingtechnologies.materialscrollbar.R$styleable: int[] FloatingActionButton_Behavior_Layout +com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler: java.lang.String b(com.tencent.bugly.crashreport.crash.jni.NativeCrashHandler) +com.google.android.material.R$styleable: int KeyCycle_motionTarget +com.google.gson.stream.JsonWriter: void setSerializeNulls(boolean) +com.google.android.material.R$styleable: int KeyCycle_waveVariesBy +io.reactivex.internal.util.NotificationLite: boolean accept(java.lang.Object,io.reactivex.Observer) +io.reactivex.internal.operators.mixed.ObservableConcatMapCompletable$ConcatMapCompletableObserver: io.reactivex.CompletableObserver downstream +androidx.preference.R$styleable: int SwitchCompat_trackTint +io.reactivex.internal.operators.observable.ObservableMergeWithMaybe$MergeWithObserver$OtherObserver: void onError(java.lang.Throwable) +androidx.coordinatorlayout.R$style +com.turingtechnologies.materialscrollbar.R$style: int Base_Widget_AppCompat_DrawerArrowToggle_Common +wangdaye.com.geometricweather.R$array: int temperature_units_short +com.amap.api.location.AMapLocation: int LOCATION_TYPE_GPS +com.jaredrummler.android.colorpicker.R$styleable: int SearchView_iconifiedByDefault +com.google.android.material.R$attr: int horizontalOffset +io.reactivex.internal.operators.mixed.ObservableConcatMapMaybe$ConcatMapMaybeMainObserver$ConcatMapMaybeObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.common.basic.models.weather.Daily: java.lang.String getDate(java.lang.String) +com.google.gson.stream.JsonReader: java.lang.String peekedString +androidx.constraintlayout.widget.R$drawable: int abc_btn_radio_material +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_layout_constraintEnd_toStartOf +com.turingtechnologies.materialscrollbar.R$style: int Base_V7_Theme_AppCompat_Dialog +wangdaye.com.geometricweather.R$styleable: int ConstraintSet_flow_verticalStyle +com.tencent.bugly.proguard.x: boolean b(java.lang.String,java.lang.Object[]) +androidx.preference.R$attr: int contentDescription +okhttp3.internal.http1.Http1Codec$ChunkedSource: void readChunkSize() +wangdaye.com.geometricweather.R$attr: int subtitleTextColor +com.google.android.material.R$styleable: int Layout_android_layout_marginBottom +io.reactivex.internal.operators.flowable.FlowableObserveOn$BaseObserveOnSubscriber: void run() +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$ForecastHourlyBean$WeatherBeanX: int status +james.adaptiveicon.R$style: int Widget_AppCompat_Light_ActionBar_TabView_Inverse +android.didikee.donate.R$style: int Base_TextAppearance_AppCompat_SearchResult_Title +androidx.dynamicanimation.R$styleable: int GradientColor_android_centerX +james.adaptiveicon.R$color: int abc_btn_colored_text_material +androidx.recyclerview.R$styleable: int RecyclerView_reverseLayout +io.reactivex.internal.operators.observable.ObservableSampleTimed$SampleTimedObserver: ObservableSampleTimed$SampleTimedObserver(io.reactivex.Observer,long,java.util.concurrent.TimeUnit,io.reactivex.Scheduler) +okhttp3.internal.connection.RealConnection: okhttp3.internal.http2.Http2Connection http2Connection +androidx.lifecycle.ProcessLifecycleOwner: void attach(android.content.Context) +wangdaye.com.geometricweather.common.ui.widgets.TagView: void setCheckedBackgroundColor(int) +androidx.dynamicanimation.R$integer: int status_bar_notification_info_maxnum +com.amap.api.fence.GeoFence: int STATUS_STAYED +retrofit2.adapter.rxjava2.RxJava2CallAdapter: io.reactivex.Scheduler scheduler +com.tencent.bugly.crashreport.biz.b: long d +wangdaye.com.geometricweather.weather.json.caiyun.CaiYunMainlyResult$CurrentBean$WindBean$DirectionBean: java.lang.String getValue() +com.tencent.bugly.crashreport.crash.jni.b: java.util.Map d(java.lang.String) +wangdaye.com.geometricweather.R$attr: int tickVisible +cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl$1: cyanogenmod.externalviews.KeyguardExternalViewProviderService$Provider$ProviderImpl this$2 +com.tencent.bugly.proguard.y: boolean m +james.adaptiveicon.R$attr: int spinnerDropDownItemStyle +com.turingtechnologies.materialscrollbar.R$style: int Widget_MaterialComponents_Button_TextButton +com.google.android.material.R$drawable: int abc_control_background_material +wangdaye.com.geometricweather.R$style: int Base_Theme_MaterialComponents_Light_Dialog_FixedSize +androidx.preference.R$styleable: int Preference_singleLineTitle +androidx.constraintlayout.widget.R$anim: int btn_checkbox_to_unchecked_icon_null_animation +androidx.appcompat.widget.Toolbar: void setLogo(android.graphics.drawable.Drawable) +androidx.preference.R$id: int search_edit_frame +okhttp3.internal.ws.WebSocketReader: okio.Buffer controlFrameBuffer +okhttp3.internal.http2.PushObserver$1: PushObserver$1() +wangdaye.com.geometricweather.db.entities.MinutelyEntityDao$Properties: org.greenrobot.greendao.Property CloudCover +com.turingtechnologies.materialscrollbar.R$attr: int logoDescription +android.didikee.donate.R$style: int Widget_AppCompat_PopupMenu_Overflow +com.tencent.bugly.proguard.a: com.tencent.bugly.proguard.k a(byte[],java.lang.Class) +com.google.gson.internal.LinkedTreeMap: java.lang.Object writeReplace() +wangdaye.com.geometricweather.R$id: int item_about_link_icon +com.google.android.gms.common.server.converter.StringToIntConverter$zaa: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$attr: int actionModePasteDrawable +wangdaye.com.geometricweather.R$styleable: int OnSwipe_touchAnchorSide +com.google.android.material.R$layout: int design_layout_snackbar_include +androidx.constraintlayout.widget.R$drawable: int abc_vector_test +cyanogenmod.profiles.RingModeSettings: void getXmlString(java.lang.StringBuilder,android.content.Context) +androidx.constraintlayout.widget.R$attr: int percentY +wangdaye.com.geometricweather.R$styleable: int Constraint_barrierDirection +com.jaredrummler.android.colorpicker.R$attr: int keylines +wangdaye.com.geometricweather.R$attr: int colorControlHighlight +androidx.loader.R$styleable: int FontFamily_fontProviderFetchStrategy +com.turingtechnologies.materialscrollbar.R$attr: int behavior_autoHide +cyanogenmod.app.Profile$ProfileTrigger: Profile$ProfileTrigger(int,java.lang.String,int,java.lang.String) +wangdaye.com.geometricweather.weather.json.cn.CNWeatherResult$Alert: java.lang.String alarmPic1 +androidx.appcompat.R$drawable: int abc_ic_go_search_api_material +com.turingtechnologies.materialscrollbar.R$style: int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse +com.google.android.material.textfield.MaterialAutoCompleteTextView: MaterialAutoCompleteTextView(android.content.Context,android.util.AttributeSet,int) +androidx.appcompat.R$attr: int searchIcon +androidx.preference.R$dimen: int abc_action_bar_stacked_max_height +cyanogenmod.app.CustomTile$ExpandedStyle: android.os.Parcelable$Creator CREATOR +androidx.appcompat.R$dimen: int abc_dialog_fixed_height_major +com.xw.repo.bubbleseekbar.R$styleable: int SearchView_submitBackground +wangdaye.com.geometricweather.R$styleable: int ActionBar_homeLayout +okhttp3.internal.http.HttpDate$1: java.text.DateFormat initialValue() +com.google.android.material.R$styleable: int[] PopupWindow +com.turingtechnologies.materialscrollbar.R$attr: int enforceMaterialTheme +androidx.preference.R$style: int Base_Theme_AppCompat_Light_Dialog_FixedSize +wangdaye.com.geometricweather.R$styleable: int MenuView_android_headerBackground +wangdaye.com.geometricweather.R$drawable: int abc_text_cursor_material +androidx.lifecycle.SavedStateHandle: void validateValue(java.lang.Object) +com.google.android.material.R$attr: int listPreferredItemPaddingEnd +org.greenrobot.greendao.AbstractDao: android.database.CursorWindow moveToNextUnlocked(android.database.Cursor) +androidx.constraintlayout.widget.R$styleable: int KeyCycle_curveFit +com.xw.repo.bubbleseekbar.R$attr +com.google.android.material.R$styleable: int ConstraintSet_layout_constraintEnd_toEndOf +android.didikee.donate.R$styleable: int MenuItem_actionProviderClass +okhttp3.Challenge: okhttp3.Challenge withCharset(java.nio.charset.Charset) +io.reactivex.internal.operators.observable.ObservableSwitchMap$SwitchMapInnerObserver +androidx.appcompat.R$dimen: int notification_small_icon_size_as_large +james.adaptiveicon.R$style: int TextAppearance_AppCompat_Widget_PopupMenu_Small +com.google.android.material.R$style: int Theme_MaterialComponents_DayNight_BottomSheetDialog +james.adaptiveicon.R$id: int expanded_menu +io.reactivex.internal.operators.observable.ObservableMergeWithSingle$MergeWithObserver$OtherObserver: void onSubscribe(io.reactivex.disposables.Disposable) +okhttp3.HttpUrl: okhttp3.HttpUrl parse(java.lang.String) +com.google.android.material.R$styleable: int ConstraintLayout_Layout_android_maxWidth +cyanogenmod.externalviews.ExternalView: void performAction(java.lang.Runnable) +com.google.android.material.button.MaterialButton: void setBackgroundColor(int) +androidx.constraintlayout.widget.R$color: int secondary_text_default_material_dark +com.google.android.material.R$styleable: int Layout_layout_constraintTop_toTopOf +androidx.constraintlayout.widget.R$attr: int submitBackground +com.google.android.material.R$styleable: int PropertySet_android_alpha +androidx.viewpager.R$drawable +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTextHelper_android_drawableBottom +james.adaptiveicon.R$styleable: int[] AppCompatTheme +cyanogenmod.themes.ThemeManager$2$1: void run() +android.didikee.donate.R$style: int Base_V21_ThemeOverlay_AppCompat_Dialog +com.google.android.gms.base.R$string: int common_google_play_services_enable_title +androidx.coordinatorlayout.R$layout: int notification_template_part_chronometer +okhttp3.ConnectionSpec: int hashCode() +io.reactivex.Observable: io.reactivex.Observable buffer(io.reactivex.ObservableSource,java.util.concurrent.Callable) +androidx.constraintlayout.widget.R$drawable: int abc_btn_check_to_on_mtrl_000 +android.didikee.donate.R$styleable: int AppCompatTheme_listPreferredItemHeight +com.turingtechnologies.materialscrollbar.R$styleable: int AppCompatTheme_alertDialogTheme +io.reactivex.internal.operators.observable.ObservableSkipLastTimed$SkipLastTimedObserver: void onNext(java.lang.Object) +androidx.activity.R$string: R$string() +wangdaye.com.geometricweather.weather.json.mf.MfForecastV2Result$ForecastProperties$ForecastV2: java.util.Date sunsetTime +wangdaye.com.geometricweather.R$id: int widget_multi_city_horizontal_card +wangdaye.com.geometricweather.common.basic.models.weather.Temperature: java.lang.Integer getApparentTemperature() +com.jaredrummler.android.colorpicker.R$styleable: int AppCompatTheme_dialogCornerRadius +androidx.constraintlayout.widget.R$styleable: int Constraint_flow_firstHorizontalStyle +androidx.appcompat.view.menu.ActionMenuItemView: ActionMenuItemView(android.content.Context,android.util.AttributeSet) +androidx.hilt.lifecycle.R$id: int accessibility_custom_action_25 +okhttp3.ConnectionPool: okhttp3.internal.connection.RouteDatabase routeDatabase +com.google.android.material.R$id: int top +cyanogenmod.hardware.CMHardwareManager: boolean writePersistentBytes(java.lang.String,byte[]) +wangdaye.com.geometricweather.weather.json.accu.AccuCurrentResult: int RelativeHumidity +wangdaye.com.geometricweather.R$drawable: int notif_temp_83 +wangdaye.com.geometricweather.R$style: int Widget_MaterialComponents_BottomNavigationView_Colored +androidx.constraintlayout.widget.R$styleable: int ConstraintSet_flow_verticalBias +com.google.android.material.R$styleable: int Constraint_android_elevation +io.reactivex.internal.operators.observable.ObservableConcatMap$SourceObserver: void onSubscribe(io.reactivex.disposables.Disposable) +wangdaye.com.geometricweather.common.basic.models.weather.PrecipitationDuration: java.lang.Float thunderstorm +androidx.activity.R$attr: int fontProviderCerts +androidx.constraintlayout.widget.R$id: int startVertical +androidx.fragment.R$id: int tag_accessibility_clickable_spans +androidx.appcompat.R$styleable: int[] ActionMode +wangdaye.com.geometricweather.R$id: int widget_week_week_5 +wangdaye.com.geometricweather.weather.json.accu.AccuDailyResult$Headline: java.lang.String Text diff --git a/release/3.001/mapping/pubRelease/usage.txt b/release/3.002/mapping/pubRelease/usage.txt similarity index 100% rename from release/3.001/mapping/pubRelease/usage.txt rename to release/3.002/mapping/pubRelease/usage.txt diff --git a/release/3.001/pub/release/GeometricWeather 3.001_pub.apk b/release/3.002/pub/release/GeometricWeather 3.002_pub.apk similarity index 76% rename from release/3.001/pub/release/GeometricWeather 3.001_pub.apk rename to release/3.002/pub/release/GeometricWeather 3.002_pub.apk index b6c59eea1..ebea4578d 100644 Binary files a/release/3.001/pub/release/GeometricWeather 3.001_pub.apk and b/release/3.002/pub/release/GeometricWeather 3.002_pub.apk differ diff --git a/release/3.001/pub/release/output-metadata.json b/release/3.002/pub/release/output-metadata.json similarity index 69% rename from release/3.001/pub/release/output-metadata.json rename to release/3.002/pub/release/output-metadata.json index 2ef51eb1c..96487db2a 100644 --- a/release/3.001/pub/release/output-metadata.json +++ b/release/3.002/pub/release/output-metadata.json @@ -10,9 +10,9 @@ { "type": "SINGLE", "filters": [], - "versionCode": 30001, - "versionName": "3.001_pub", - "outputFile": "GeometricWeather 3.001_pub.apk" + "versionCode": 30002, + "versionName": "3.002_pub", + "outputFile": "GeometricWeather 3.002_pub.apk" } ] } \ No newline at end of file